diff --git a/.github/workflows/windows-qt.yml b/.github/workflows/windows-qt.yml index 12722cd5..0bf2da9f 100644 --- a/.github/workflows/windows-qt.yml +++ b/.github/workflows/windows-qt.yml @@ -45,7 +45,6 @@ jobs: mkdir upload move build/Release/shadps4.exe upload move build/Release/zlib-ng2.dll upload - move build/Release/libwinpthread-1.dll upload windeployqt --dir upload upload/shadps4.exe - name: Upload executable diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index fba4626a..6aaa3750 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -37,5 +37,4 @@ jobs: # A file, directory or wildcard pattern that describes what to upload path: | ${{github.workspace}}/build/Release/shadps4.exe - ${{github.workspace}}/build/Release/SDL3.dll - ${{github.workspace}}/build/Release/libwinpthread-1.dll \ No newline at end of file + ${{github.workspace}}/build/Release/SDL3.dll \ No newline at end of file diff --git a/.gitmodules b/.gitmodules index ff226e83..52fa9c05 100644 --- a/.gitmodules +++ b/.gitmodules @@ -6,10 +6,6 @@ path = third-party/zydis url = https://github.com/zyantific/zydis.git shallow = true -[submodule "third-party/winpthread"] - path = third-party/winpthread - url = https://github.com/shadps4/winpthread.git - branch = main [submodule "third-party/toml11"] path = third-party/toml11 url = https://github.com/ToruNiina/toml11 @@ -18,9 +14,6 @@ path = third-party/xxHash url = https://github.com/Cyan4973/xxHash.git branch = dev -[submodule "third-party/vulkan"] - path = third-party/vulkan - url = https://github.com/GPUCode/vulkan [submodule "externals/discord-rpc"] path = externals/discord-rpc url = https://github.com/shadps4-emu/ext-discord-rpc.git @@ -64,3 +57,6 @@ [submodule "externals/xbyak"] path = externals/xbyak url = https://github.com/herumi/xbyak +[submodule "externals/winpthreads"] + path = externals/winpthreads + url = https://github.com/shadps4-emu/winpthreads.git diff --git a/CMakeLists.txt b/CMakeLists.txt index d64c6b81..c1a9e29a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -403,7 +403,7 @@ if (ENABLE_QT_GUI) endif() if (WIN32) - target_link_libraries(shadps4 PRIVATE mincore winpthread clang_rt.builtins-x86_64.lib) + target_link_libraries(shadps4 PRIVATE mincore winpthreads clang_rt.builtins-x86_64.lib) add_definitions(-D_CRT_SECURE_NO_WARNINGS -D_CRT_NONSTDC_NO_DEPRECATE -D_SCL_SECURE_NO_WARNINGS) add_definitions(-DNOMINMAX -DWIN32_LEAN_AND_MEAN) if (MSVC) @@ -438,9 +438,3 @@ add_custom_command(TARGET shadps4 POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy_if_different $ $) - -if (WIN32) - add_custom_command(TARGET shadps4 POST_BUILD - COMMAND ${CMAKE_COMMAND} -E copy_if_different - "${PROJECT_SOURCE_DIR}/third-party/winpthread/bin/libwinpthread-1.dll" $) -endif() diff --git a/externals/CMakeLists.txt b/externals/CMakeLists.txt index f59aa645..bf8eaf89 100644 --- a/externals/CMakeLists.txt +++ b/externals/CMakeLists.txt @@ -66,3 +66,9 @@ add_subdirectory(robin-map EXCLUDE_FROM_ALL) # Xbyak add_subdirectory(xbyak EXCLUDE_FROM_ALL) + +# Winpthreads +if (WIN32) + add_subdirectory(winpthreads EXCLUDE_FROM_ALL) + target_include_directories(winpthreads INTERFACE winpthreads/include) +endif() diff --git a/externals/fmt b/externals/fmt index aa52eb76..d2473b7b 160000 --- a/externals/fmt +++ b/externals/fmt @@ -1 +1 @@ -Subproject commit aa52eb765dec0eb67fab4b035a4a05b82346c8f5 +Subproject commit d2473b7b73c0af2a3ed34c99e50ace0a1040581a diff --git a/externals/glslang b/externals/glslang index 2db79056..effcbf78 160000 --- a/externals/glslang +++ b/externals/glslang @@ -1 +1 @@ -Subproject commit 2db79056b418587e61122a8a820cd832b2abdf83 +Subproject commit effcbf7893a177b756bc80bf74009a950c3073a1 diff --git a/externals/robin-map b/externals/robin-map index 048eb144..1115dad3 160000 --- a/externals/robin-map +++ b/externals/robin-map @@ -1 +1 @@ -Subproject commit 048eb1442a76ab81ecb3c4ab0495f15a68e54a6d +Subproject commit 1115dad3ffa0994e3f43b693d9b9cc99944c64c1 diff --git a/externals/sdl3 b/externals/sdl3 index cbb3c69c..bcbf09ac 160000 --- a/externals/sdl3 +++ b/externals/sdl3 @@ -1 +1 @@ -Subproject commit cbb3c69cb0d771cdd221339aa1a064c55ec6e67d +Subproject commit bcbf09acdef71b550e837c8aaca67b08b6a38f0f diff --git a/externals/vma b/externals/vma index 5677097b..eaf8fc27 160000 --- a/externals/vma +++ b/externals/vma @@ -1 +1 @@ -Subproject commit 5677097bafb8477097c6e3354ce68b7a44fd01a4 +Subproject commit eaf8fc27eeadf6f21b11183651b829e897f01957 diff --git a/externals/vulkan-headers b/externals/vulkan-headers index cfebfc96..4bc77c26 160000 --- a/externals/vulkan-headers +++ b/externals/vulkan-headers @@ -1 +1 @@ -Subproject commit cfebfc96b2b0bce93da7d12f2c14cc01793ae25c +Subproject commit 4bc77c26ff9ce89cf4a4f79e1c24a44604132d53 diff --git a/externals/winpthreads b/externals/winpthreads new file mode 160000 index 00000000..d937b600 --- /dev/null +++ b/externals/winpthreads @@ -0,0 +1 @@ +Subproject commit d937b60055aaea313422672ebd5cc8bfa87a1682 diff --git a/externals/zlib-ng b/externals/zlib-ng index 3f35bfcc..1007e7a9 160000 --- a/externals/zlib-ng +++ b/externals/zlib-ng @@ -1 +1 @@ -Subproject commit 3f35bfccff2d1dacdfe9844712be1e042d028700 +Subproject commit 1007e7a9c74148fe915384d7cc44921559500241 diff --git a/scripts/aerolib.inl b/scripts/aerolib.inl new file mode 100644 index 00000000..a87c3cc4 --- /dev/null +++ b/scripts/aerolib.inl @@ -0,0 +1,171520 @@ +// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later +// generated using ps4_names2stubs.py + +STUB("++-URPJNZ18", _ZN9Inspector17ScriptDebugServer23removeBreakpointActionsEm) +STUB("++67uYkhqBU", _ZN7WebCore28InspectorFrontendClientLocal8Settings11getPropertyERKN3WTF6StringE) +STUB("++8RYr2gjrw", _ZN9Inspector21InjectedScriptManagerdaEPv) +STUB( + "++BntMcao1o", + _ZN9Inspector8Protocol13BindingTraitsINS0_8Timeline13TimelineEventEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE) +STUB("++DO8Y1JaYU", sceAvSettingDebugSetProcessAttribute) +STUB("++DyHhMUeQA", sceApplicationRaiseExceptionToLocalPid) +STUB("++In3PHBZfw", _Atomic_fetch_or_8) +STUB("++JZUk1c0dY", mono_aot_Sce_Vsh_Webbrowser_XdbWrapperplt_end) +STUB("++LHBqoQ1cQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEEC2Ev) +STUB("++R8IXi10PI", _ZN3JSC6JSLock12DropAllLocksC2ERNS_2VME) +STUB( + "++TYnF-cbqE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEptEv) +STUB("++YZ7P9e87U", sceNgs2RackUnlock) +STUB("++bp9REBkfM", handleSocketError) +STUB("++eqYdzB8Go", sceNpLwCondInit) +STUB("++ge3jYlHW8", _ZNKSt11logic_error4whatEv) +STUB( + "++hhahDTg7k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEixEm) +STUB("++j2h+QO22w", _ZN3WTF15BinarySemaphore6signalEv) +STUB("++lgV9pRsO4", FT_Outline_Decompose) +STUB("++qSDotsHuE", _ZN3sce2np4Time7AddDaysEl) +STUB( + "++v6m1cDvuc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB( + "++whtjtTHu4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEE3getEv) +STUB("++wjWXvvUsQ", _ZN7WebCore9HTMLNames15exportpartsAttrE) +STUB( + "++yM9A1U7mo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE7popBackEv) +STUB("+-+7XwmYLnI", _ZN7WebCore28InspectorFrontendClientLocal11isUnderTestEv) +STUB( + "+-5UWEYs90E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "+-70YraJw0w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEED1Ev) +STUB("+-CQzDf6kOc", _ZN3sce6Canvas9releaseIdEh) +STUB("+-OmuFJCLxY", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container8getMediaEv) +STUB( + "+-Tx7ylVWNU", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12string3IsSetEv) +STUB("+-du9tWgE9s", sceCompanionHttpdTerminate) +STUB("+-epm9bJq84", GCC_except_table12) +STUB( + "+-g1zrRoVdI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEmmEi) +STUB("+-n4S512l+M", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEneERKS9_) +STUB("+-wmVyLhgm0", WKPreferencesSetStandardFontFamily) +STUB( + "+0-fVVJsugg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEE5resetEPS6_) +STUB("+02q4zuIP2E", _ZN3sce7Toolkit2NP20CreateSessionRequestC2Ev) +STUB( + "+06Sh0kbwc8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEneERKS9_) +STUB("+0E0dyw8phY", sceFaceIdentifyExSimilarity) +STUB("+0EDo7YzcoU", futimes) +STUB("+0GVFQ76KHo", _ZNK7WebCore3URL18fragmentIdentifierEv) +STUB("+0Gl8y4tkuM", + _ZNK3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayer6toJsonERNS_4Json5ValueEb) +STUB("+0QEt8ZQWgg", _ZN7WebCore15JSDOMWindowBaseD1Ev) +STUB("+0U0tMljl0I", _ZN4IPMI7Session6Config25estimateSessionMemorySizeEv) +STUB("+0X7oLDImeY", _ZN7WebCore8Document27setFullscreenControlsHiddenEb) +STUB("+0YNxcA-duk", _ZN9Inspector22InspectorDebuggerAgent24continueUntilNextRunLoopERN3WTF6StringE) +STUB( + "+0ZUjMSVjY8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEE11get_deleterEv) +STUB("+0ZZzGYxx+I", _ZN7WebCore8Settings27setLoadsImagesAutomaticallyEb) +STUB("+0geDEimyvE", curl_pushheader_bynum) +STUB( + "+0hc5QmACig", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEC2EPS8_) +STUB("+0jo0J7h4CM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEED1Ev) +STUB( + "+0leBje2YeU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEE11get_deleterEv) +STUB("+0qGCrVTCcs", _ZN3JSC7JSProxy13visitChildrenEPNS_6JSCellERNS_11SlotVisitorE) +STUB("+0rdnkSicqk", WKPreferencesGetApplicationChromeModeEnabled) +STUB("+0rj9KhmYb0", sceNpUtilXmlUnescape) +STUB("+0w37v4-Xlc", mono_aot_Sce_Vsh_LncUtilWrapperunbox_trampolines_end) +STUB( + "+0xECQcI0KY", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB("+0yi9NZ4+fw", u_sscanf_u_67) +STUB("+14hrhyqXkw", _ZN3JSC25JSSegmentedVariableObject11analyzeHeapEPNS_6JSCellERNS_12HeapAnalyzerE) +STUB( + "+1AZ25-Dqbc", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody30getComparedLastUpdatedDateTimeEv) +STUB("+1CXrIROzIg", rgctx_fetch_trampoline_rgctx_111_p) +STUB("+1Ex5GCP8Xs", _ZN7WebCore18JSHTMLInputElementC2ERKS0_) +STUB("+1FfZ+0sxvQ", _ZN9Inspector21InspectorConsoleAgent5resetEv) +STUB( + "+1ObAtzCrYE", + _ZN7WebCore4Node16addEventListenerERKN3WTF10AtomStringEONS1_3RefINS_13EventListenerENS1_13DumbPtrTraitsIS6_EEEERKNS_11EventTarget23AddEventListenerOptionsE) +STUB( + "+1P2tV4dbPc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("+1QH-0LyAVo", _ZN7WebCore3URL32removeQueryAndFragmentIdentifierEv) +STUB( + "+1TgCo67I-k", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "+1V5OtXKL9Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEixEm) +STUB( + "+1aHk5791Ms", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEC1ERKS8_) +STUB("+1bHLOuow28", sceVshAvcapDeleteSyncer) +STUB( + "+1ck6lGIk-o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE7popBackEv) +STUB("+1ctlV5HdkE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEEC1EPS6_) +STUB( + "+1jackZ6cZg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("+1n+h4FUu9E", WKPreferencesSetAutostartOriginPlugInSnapshottingEnabled) +STUB("+1omO5tOmr0", izrule_open_67) +STUB( + "+1q6WlAf0kY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEC1Ev) +STUB("+1qj-S-k6m0", sceUserServiceGetPbtcSaturdayHoursStart) +STUB("+1rqC1b3Jw0", sceAvSettingSetHdcpStatus) +STUB("+1zuII0sYyU", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V110AvatarSizeEEmmEv) +STUB("+2+4vTfagBE", _ZN3WTF11dtoaRoundDPEPcdiRbRiRj) +STUB( + "+20LIJsRPjE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("+235EcrmaJc", scePktMgrRecvDeciPacket) +STUB( + "+24vPqGItRk", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi47ParameterWithBinaryRequestBodyToRecordLargeData9terminateEv) +STUB( + "+25sIPn4I4c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEC2EPKS8_) +STUB("+26aZpK535w", + _ZN7WebCore18TextureMapperLayer14paintRecursiveERKNS_25TextureMapperPaintOptionsE) +STUB("+28jc0bl0ao", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE3endEv) +STUB("+29DSndZ9Oc", sceUserServiceGetGlsFloatingMessage) +STUB("+2BM9gBawwQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEEixEm) +STUB("+2Ed65+55ZI", sceVideoCoreInterfaceDestroyFrameBufferContext) +STUB("+2GFBvON4Sk", sceCesUtf8ToEucCn) +STUB("+2GKXkOLMa4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEEC1Ev) +STUB("+2HAuc7yVbc", chown) +STUB("+2MxdALg5JE", _ZN3sce7Toolkit2NP6TicketC1Ev) +STUB( + "+2S3WokwWd8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("+2Tem-5chMc", _ZN3sce3pss4core8graphics10WaitVBlankEv) +STUB("+2XHbrClCfQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEdeEv) +STUB("+2XuBaAXb+4", _ZN7WebCore9GLContextnwEm) +STUB("+2bYveDZRzU", sceDtcpIpPollAsync) +STUB("+2d45L3hxh4", rgctx_fetch_trampoline_mrgctx_40) +STUB( + "+2iVb5Lkdg8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("+2jZj-j3Si4", mono_reflection_parse_type) +STUB( + "+2l+BakVSg0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "+2ls4vgvmKw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEptEv) +STUB("+2oRpJalFQ0", mono_aot_ClassLibrary1jit_got) +STUB("+2paAsKqXOQ", sceShellCoreUtilRequestRebootApp) +STUB("+2rTX2KM7Ms", _ZN7WebCore18HTMLMarqueeElement14setScrollDelayEj) +STUB("+2thxYZ4syk", environ) +STUB( + "+2uH+wbvMi4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEC2Ev) +STUB("+2uXfrrQCyk", sceSystemServiceActivateHevc) +STUB( + "+2vVF0TpuzY", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V122LastUpdatedUserFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_15LastUpdatedUserEEE) +STUB("+31dbB3S-6Y", WKPreferencesResetTestRunnerOverrides) +STUB("+352WTlGCQI", sceTextToSpeech2GetSystemStatus) +STUB("+3BWlXyIPVM", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_12PresenceInfoEEC1Ev) +STUB("+3JWTVP4NUc", _ZN3sce2np12NpTitleTokenC2Ev) +STUB("+3KMyS93TOs", sceNetConfigWlanDiagGetDeviceInfo) +STUB("+3KiBw-4CQY", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry7getPcIdEv) +STUB("+3MiDyKGrtI", FTC_Image_Cache_New) +STUB("+3PtYiUxl-U", wctype) +STUB( + "+3Q3hFQld3A", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12getBoolean10Ev) +STUB("+3RMc76ya-E", mono_aot_Sce_Vsh_SessionInvitationplt) +STUB("+3YRcBQM3uk", _ZN3sce7Toolkit2NP2V27Ranking17GetGameDataResultC1Ev) +STUB( + "+3ZAeAjnhDk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEC2EPS8_) +STUB( + "+3ZMqb8qTHA", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyD2Ev) +STUB( + "+3gN3rPfBTw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEmmEi) +STUB( + "+3jAVQxPMOc", + _ZN9Inspector20DOMBackendDispatcher29setBreakpointForEventListenerElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("+3jUWY-Vgs4", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEEcvbEv) +STUB( + "+3o0QkRVdDY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("+3p6wRzzzlQ", WKContextConfigurationSetAlwaysKeepAndReuseSwappedProcesses) +STUB("+3sny7aNq9U", mono_aot_Sce_Vsh_VrEnvironmentunbox_trampolines_end) +STUB("+3y41BZ7Bg8", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11ProductInfoEE8allocateEmPKv) +STUB("+3ySpB1buMs", _ZThn16_N3sce2np9LocalFile5WriteEPNS0_6HandleEPKvmPm) +STUB("+4-GNOUIBt0", + _ZN3JSC9Structure40addPropertyTransitionToExistingStructureEPS0_NS_12PropertyNameEjRi) +STUB("+43fvWoSpqU", _ZN3sce2Np9CppWebApi15ProfanityFilter2V224TestForProfanityResponseD1Ev) +STUB("+44Ddangz0g", + _ZNSt9_FacetptrISt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEE6_PsaveE) +STUB("+45BiDnCTxw", _ZN7WebCore9GLContextD0Ev) +STUB("+4BG7Dz95pI", _ZN3JSC7Symbols31asyncGeneratorRejectPrivateNameE) +STUB("+4BWgo8i668", _ZN3WTF12nullAtomDataE) +STUB("+4DegjBqV1g", sceNpGetAccountAge) +STUB("+4IeH+Ly56c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEE5resetEPS6_) +STUB( + "+4JCP+VNNwc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("+4JKB5YW3Bk", wpe_pasteboard_get_types) +STUB( + "+4MffyM0Gro", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEmmEi) +STUB("+4PMEfzft-U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEaSERKS7_) +STUB("+4RO4q-4SGs", + _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody8fromJsonERKNS_4Json5ValueE) +STUB( + "+4SPvd7YlPs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEneERKS9_) +STUB( + "+4WxtBCTplY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEdeEv) +STUB( + "+4a+iY5cxMU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("+4c9xRLmiXQ", scePadResetLightBarAll) +STUB( + "+4d5NmpZp6w", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEdeEv) +STUB( + "+4d9qghuMnk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEC1EPS8_) +STUB( + "+4eRM6Vq084", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEED2Ev) +STUB( + "+4fw-ZEF75E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB("+4kWCKoS01E", _ZN3sce7Toolkit2NP2V26Trophy7Request6Unlock17INVALID_TROPHY_IDE) +STUB("+4lVmXsIwqM", _ZN7WebCore7Element26scrollIntoViewIfNotVisibleEb) +STUB( + "+4lgBq7Fu0k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("+4nVrsxOp0s", _ZNSt9basic_iosIcSt11char_traitsIcEE3tieEPSo) +STUB("+4oF73a0ouQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEED2Ev) +STUB("+4sIFoRT198", _ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequest13setActivityIdEPKc) +STUB( + "+56R6TP-nXY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEEC2ERS9_) +STUB( + "+5AtwMTL-SQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE21intrusive_ptr_add_refEPS9_) +STUB("+5D7++3n9SA", WKBundleFrameDisableThrottlingByTileCount) +STUB("+5E2JwpsKcY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge10ChallengesEED1Ev) +STUB("+5E2YZZIstM", WKPreferencesSetContentChangeObserverEnabled) +STUB("+5ID5YbnNjM", _ZN15AbstractStorage12LocalContent6RemoveEv) +STUB("+5IOQncui3c", _ZNKSt18bad_variant_access4whatEv) +STUB( + "+5JQd-6WeQg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE8capacityEv) +STUB( + "+5Nkn628xwk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "+5OCQrWQ2VQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE21intrusive_ptr_add_refEPS9_) +STUB("+5OuLYpRB28", _Dclass) +STUB("+5V-UOk8zS4", _ZNK3JSC18PropertyDescriptor12configurableEv) +STUB("+5VJ8NrAwAU", + _ZN3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayer16unsetCustomData1Ev) +STUB("+5Yqj5ZOT4U", ubidi_getVisualRun_67) +STUB( + "+5ZkrP3atbI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEEptEv) +STUB("+5b0qY+Kfgk", _ZNK3sce2Np9CppWebApi11UserProfile2V113BasicPresence6toJsonERNS_4Json5ValueEb) +STUB( + "+5ckzCM9yjM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEC1Ev) +STUB("+5ghrR5Vc9I", BIO_up_ref) +STUB( + "+5iTkwxW158", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("+5p2gObV-wE", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEEC1EPS6_) +STUB("+5quUGo72ds", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEE11release_refEv) +STUB( + "+5reQwQ+E4Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEC1EPS8_) +STUB("+5sCd799eg4", _ZNK3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer6toJsonERNS_4Json5ValueEb) +STUB( + "+5uphMKe1Jk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEC2EPNS2_10LibContextE) +STUB( + "+5xMqRsZgfE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEppEv) +STUB("+631th1Z4DU", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry8getScoreEv) +STUB("+63IB3UdMOY", _ZN3JSC30int52AwareSpeculationFromValueENS_7JSValueE) +STUB("+6CNB3ib5dM", _ZN12video_parser13cVideoMetaMP4C2EPNS_18cMp4FFLHndlManagerE) +STUB( + "+6KUpu94voQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEEC1ERKSA_) +STUB("+6KZ11SI7go", mono_aot_Sce_Vsh_AutoMounterWrapperunbox_trampolines) +STUB("+6LwzlBtQZU", mono_aot_ReactNative_Vsh_Commonplt) +STUB("+6Phj3kVNFI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE5beginEv) +STUB("+6WhDHlktyg", _ZTv0_n48_N13MsvMetaEditor8openFileEPKc) +STUB( + "+6Xo+7GdUGM", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponse13getRestrictedEv) +STUB("+6aV1q-CAIg", FcLangSetDestroy) +STUB("+6boXsT6XFA", _ZN9Inspector18InjectedScriptHost7subtypeEPN3JSC14JSGlobalObjectENS1_7JSValueE) +STUB("+6h47p15FxM", mono_array_clone) +STUB("+6hsgukv-aE", _ZN4Manx11MediaPlayerD1Ev) +STUB("+6lwWlBncM8", Java_java_io_UnixFileSystem_delete0) +STUB("+6o8lgVYNRM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEEC2EPKS6_) +STUB("+6qvkZDoTms", _ZN3sce2Np9CppWebApi7Matches2V119AdditionalStatisticD2Ev) +STUB("+6r5RPIVkx8", mono_aot_Sce_Vsh_Orbis_Bgftunbox_trampolines) +STUB( + "+6ru7Z3mFC0", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationProperties8fromJsonERKNS_4Json5ValueE) +STUB( + "+6s6BPCscaM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEptEv) +STUB( + "+6v-+dskwg4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEmmEv) +STUB("+6wXHxR7laM", sceSaveDataCheckBackupDataLight) +STUB( + "+7+ZbKm6HJ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEC1ERKS7_) +STUB( + "+708wejfnO4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "+70DV488-hg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE10setContextEPNS2_10LibContextE) +STUB( + "+73ujcZ+ar0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEC2EPNS2_10LibContextE) +STUB("+74TJbH8S8w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEE11release_refEv) +STUB("+79nk0KPcOg", _ZNK3sce2Np9CppWebApi11UserProfile2V16Avatar6getUrlEv) +STUB("+79w68212vg", _ZNK7WebCore24MatrixTransformOperation6matrixEv) +STUB("+7B2AEKKns8", scePthreadAttrGetscope) +STUB("+7G3BcPM9WM", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge13ChallengeDataEE19setCustomReturnCodeEi) +STUB("+7HpqmfJz48", _ZN7WebCore13HTTPHeaderMap3addERKN3WTF6StringES4_) +STUB( + "+7Hsun7shz8", + _ZN3sce2Np9CppWebApi14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBody8fromJsonERKNS_4Json5ValueE) +STUB( + "+7KbeAX2-no", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE10setContextEPNS2_10LibContextE) +STUB( + "+7RwyZF4bb8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEED1Ev) +STUB("+7U4658EmuY", _ZN3JSC17hasIteratorMethodERNS_9ExecStateENS_7JSValueE) +STUB("+7U74Zy7gKg", CERT_getSignatureItem) +STUB( + "+7fmt-RxtKo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE3endEv) +STUB( + "+7jUnDsasKs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "+7pe0CCr8YY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE5beginEv) +STUB("+7qLP7HjL+4", sceApplicationContinue) +STUB("+7t0gI-8Wxg", _ZTVN7WebCore11DisplayList25DrawDotsForDocumentMarkerE) +STUB("+8+OXsxd-EU", + _ZN3sce2Np9CppWebApi14ConnectAccount2V215AccountLinksApi28ParameterToDeleteAccountLinkC2Ev) +STUB( + "+8ANi0g4YZk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "+8CQKp-kv0E", + _ZN3sce2Np9CppWebApi14SessionManager2V130MemberWithMultiPlatformFactory6createEPNS1_6Common10LibContextERKmPKcPNS5_12IntrusivePtrINS3_23MemberWithMultiPlatformEEE) +STUB( + "+8D1URmpEoQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE8copyFromERKS9_) +STUB("+8GCeq43o7c", sceKernelQueryTraceMemory) +STUB("+8If+ixKxuU", + _ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_28ActivityFeedSharedVideoStoryEE8max_sizeEv) +STUB("+8Jgx9E0bkA", Java_sun_reflect_Reflection_getCallerClass) +STUB("+8LJld9LIt4", sceLncUtilNotifyCoredumpRequestEnd) +STUB("+8M7+xoeeaE", sceHttpCacheRevalidateWithMemoryPool) +STUB( + "+8OohLHXbkQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEaSERS7_) +STUB( + "+8QJ9b+FzHw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEneERKS9_) +STUB("+8Rx3Ny7w+w", _ZN7WebCore11MathMLNames10mpaddedTagE) +STUB("+8T1y8Y-lgQ", _ZNK3WTF3URL10protocolIsEPKc) +STUB("+8TSUSVTx7k", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEED1Ev) +STUB( + "+8TZqe+VZQo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("+8Tc-+RugoI", uenum_unextDefault_67) +STUB( + "+8TdsN+0res", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayer52getpostGameSessionsSessionIdMemberPlayersRequestBodyEv) +STUB( + "+8VuTEFp13s", + _ZN7WebCore28InspectorFrontendClientLocalC2EPNS_19InspectorControllerEPNS_4PageESt10unique_ptrINS0_8SettingsESt14default_deleteIS6_EE) +STUB("+8e7wXLmjds", sceNpMatching2SetDefaultRequestOptParam) +STUB("+8eHxy1PQaM", ucol_setReorderCodes_67) +STUB("+8jItptyeQQ", _ZTVSi) +STUB( + "+8ktYe7QaBo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEixEm) +STUB("+8nk7HpiVZc", _ZN12video_parser5vpcom18LwMutexAttrNameSetEPcPKc) +STUB("+8oodhFUuas", sceCesGbToUtf16be) +STUB("+8vcurPhbEY", sceFiosOpIsCancelled) +STUB( + "+9+ALhHBJ74", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("+9+kKMY9YIw", sceNpAtomicCas32) +STUB( + "+917cnGh480", + _ZNK3sce2Np9CppWebApi14SessionManager2V141GetUsersAccountIdGameSessionsResponseBody6toJsonERNS_4Json5ValueEb) +STUB( + "+923WonObD4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEmmEi) +STUB("+988B0Zsk5E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEE11get_deleterEv) +STUB( + "+9Avp3-LnkM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("+9DBgs-d2GA", ures_open_67) +STUB( + "+9H3a5Nutoc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEED2Ev) +STUB( + "+9PFwdcnkFg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEixEm) +STUB("+9TKACifR2g", _ZN7WebCore23ScaleTransformOperation5blendEPKNS_18TransformOperationEdb) +STUB( + "+9USGUHOQ8g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEC1EPS8_) +STUB("+9VxAwiRwpo", _ZN3sce7Toolkit2NP2V29Messaging16GameDataMessagesD1Ev) +STUB( + "+9Z6v-0qPUw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEED1Ev) +STUB("+9ZBRWNf4og", _ZN7WebCore14XMLHttpRequestD1Ev) +STUB( + "+9bfW8AYWRg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEE21intrusive_ptr_add_refEPS7_) +STUB( + "+9dI6LTyy18", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE21intrusive_ptr_add_refEPSA_) +STUB( + "+9gOEhGw9LI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEED1Ev) +STUB("+9j+VbOE+xQ", + _ZN3sce7Toolkit2NP2V23TUS7getDataERKNS3_7Request7GetDataEPNS2_4Core8ResponseINS3_7TusDataEEE) +STUB( + "+9lfPXLJmhs", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB( + "+9sI6TPtsRY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEED1Ev) +STUB("+9snhlBsYqs", sceNpRemotePlaySessionSignalingJoinSession) +STUB("+9us0nrDaCU", _ZN3JSC20TypedArrayControllerC2Ev) +STUB("+9ypoH8eJko", _Times) +STUB("+9zPSQtHiuE", Java_com_sony_bdjstack_ti_Database_getStream) +STUB("+A0+F3ASPXQ", _ZN15AbstractStorage12LocalContent4ReadEPvlPl) +STUB("+A20uE3spLQ", sceVorbisDecReadFloat) +STUB("+A2tRLT4Abo", _ZN7WebCore8SVGNames14feSpotLightTagE) +STUB("+A3LWaxK2P0", monoeg_g_slist_foreach) +STUB( + "+A8q0KTO9mM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEeqERKS9_) +STUB( + "+A8x5HXuR9E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEE7add_refEv) +STUB("+ADiO6FQvEA", sceAgcDriverGetGpuPrintfWorkArea) +STUB( + "+AEFbLRH4xA", + _ZN9Inspector22InspectorDebuggerAgent20didScheduleAsyncCallEPN3JSC9ExecStateENS0_13AsyncCallTypeEib) +STUB("+AFvOEXrKJk", sceGnmSetEmbeddedVsShader) +STUB("+AGLl-l-WVE", sceFiosGetDefaultOpAttr) +STUB("+AGtNVLAXUI", getErrorString) +STUB("+AHd7krkfM0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEC2ERS7_) +STUB("+AIEKk6K05M", _ZN7WebCore14StaticNodeListnaEmPv) +STUB( + "+AJp3AINsPo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "+AScJATx-OA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE3endEv) +STUB("+AX8QoImHeQ", scePerfTraceIoControllerEnable) +STUB("+Abk7CfTivU", _ZN3WTF21RefCountedLeakCounter16suppressMessagesEPKc) +STUB("+AnsPWo12m8", _ZN9Inspector26LayerTreeBackendDispatcherD0Ev) +STUB( + "+Awu-PLh3R0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "+AxfaXJSM9I", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeaders7destroyEPS5_) +STUB("+B-xlbiWDJ4", sceFontStringGetTerminateOrder) +STUB( + "+B2jsBdGc84", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("+B32SVIn2Ug", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE5emptyEv) +STUB( + "+B4DtCdEawY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEC1Ev) +STUB( + "+B6kAe1eaQc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEC1EPS8_) +STUB( + "+B8KF5okOw8", + _ZN3sce7Toolkit2NP8Commerce9Interface22getDetailedProductInfoEPNS1_9Utilities6FutureINS1_19ProductInfoDetailedEEERKNS1_30DetailedProductInfoInputParamsEb) +STUB( + "+BDqCDede1o", + _ZN3JSC49throwConstructorCannotBeCalledAsFunctionTypeErrorEPNS_14JSGlobalObjectERNS_10ThrowScopeEPKc) +STUB("+BJ9svDmjYs", sceRudpNetFlush) +STUB("+BL3-h8zGDo", cairo_scaled_font_get_font_face) +STUB( + "+BLUiS9X8Ts", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE8pushBackERKS8_) +STUB("+BOK0QQUJsU", _ZN3sce7Toolkit2NP2V29Challenge13ChallengeData13MAX_SIZE_DATAE) +STUB( + "+BQ4Pctd0qA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEED2Ev) +STUB("+BSUP6XSeAw", WKNotificationManagerProviderDidUpdateNotificationPolicy) +STUB("+BStZPQtqpQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEdeEv) +STUB("+BV61XdoQUw", _ZN7WebCore9HTMLNames24onlostpointercaptureAttrE) +STUB( + "+BVxBXIPhto", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEC1Ev) +STUB("+BWNWjvPqzw", _ZN3sce2Np9CppWebApi7Matches2V124RequestCompetitiveResultD2Ev) +STUB("+BZCJi3OIiQ", _ZN7WebCore29isCharacterSmartReplaceExemptEib) +STUB( + "+BZIrqrtTzA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEC1EPS8_) +STUB("+BZiiFue-H0", __tsan_external_register_tag) +STUB("+BascJHoFB4", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEE3getEv) +STUB("+BddkAn6GgI", _ZN3sce2Np9CppWebApi14SessionManager2V16Friend11setOnlineIdERK13SceNpOnlineId) +STUB( + "+BezugFP1uk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEC1ERKS7_) +STUB( + "+Bga0DjO7TI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEC2Ev) +STUB( + "+Bh7KXKnu8o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEmmEi) +STUB("+ByVxWl1pW8", _ZN7WebCore26Matrix3DTransformOperationC2ERKNS_20TransformationMatrixE) +STUB("+BzXYkqYeLE", scePthreadSetspecific) +STUB( + "+C+6ZVOXfUo", + _ZN3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyD2Ev) +STUB( + "+C46qLq3-KM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE5beginEv) +STUB("+CBIltBADcU", _Z38sceGpuDebuggerGetEnabledExceptionsMaskPKN3sce3Gnm16HsStageRegistersEPj) +STUB( + "+CNIG-KRqwc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEaSERS7_) +STUB("+CSUx-budSk", sceOpusDecDecode) +STUB( + "+CU3YCqA2cQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("+CUrIMpVuaM", stderr) +STUB("+CbwGRMnlfU", sceLibcMspaceSetMallocCallback) +STUB( + "+CemcGpxrfY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEEaSERKSA_) +STUB("+CgSI-4D534", _ZNK7WebCore11MediaPlayer9userAgentEv) +STUB("+Ck0P+3Uw2A", scePatchCheckerSetCache) +STUB("+CnX+ZDO8qg", _ZNSt12placeholders2_1E) +STUB("+CpPA9+CKUA", _ZNK7WebCore8Document7fgColorEv) +STUB( + "+D0KZVL37IE", + _ZThn24_N9Inspector22InspectorDebuggerAgent13setBreakpointERN3WTF6StringERKNS1_8JSONImpl6ObjectEPS6_PS2_RNS1_6RefPtrINS_8Protocol8Debugger8LocationENS1_13DumbPtrTraitsISD_EEEE) +STUB( + "+D5fxMlk9-U", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB("+DAkoxB+QvU", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle11unsetGlobalEv) +STUB("+DCLUa7lUR8", sceSlimglServerSetPolicy) +STUB( + "+DCxAiCU9To", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEppEi) +STUB( + "+DHQAK+V114", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEppEv) +STUB("+DHdNBJvpcI", WKGrammarDetailCopyUserDescription) +STUB("+DJaAKgUPFU", rgctx_fetch_trampoline_mrgctx_125) +STUB("+DSNphhYdd4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEC1ERS7_) +STUB("+DUXnnaJses", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEED2Ev) +STUB("+DVcq4YF6Xg", sceKernelSwitchToNeoMode) +STUB("+DY07NwJb0s", sceAudioInOpenEx) +STUB( + "+DaYTn2hmiQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody24disableSystemUiMenuIsSetEv) +STUB("+DcT35QV3WA", JVM_Read) +STUB("+DcUw5YwkSY", _ZN7WebCore28InspectorFrontendClientLocal23stopProfilingJavaScriptEv) +STUB( + "+De76KhuKEs", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetBoolean5Ev) +STUB("+DmQkPGqVLw", _ZN3sce2Np9CppWebApi13InGameCatalog2V511ErrorEntity10unsetErrorEv) +STUB("+DpDBrSZWUc", WKWheelEventMake) +STUB("+DxbJ1PJtSo", _ZN3WTF13MetaAllocator17currentStatisticsEv) +STUB( + "+DyYZsT2QAg", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessions30getpostGameSessionsRequestBodyEv) +STUB("+DzXseDVkeI", sceSslFreeCaList) +STUB("+DzlquDbwbg", mono_threads_enter_gc_safe_region) +STUB( + "+E1B-LNkZ94", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEC1Ev) +STUB("+E3D-W4kpl8", _ZNK7WebCore11WindowProxy6windowEv) +STUB("+EN6MgNmVv4", _ZN3WTF19addProcessPrivilegeENS_16ProcessPrivilegeE) +STUB( + "+EOPccX5adQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEaSERKS9_) +STUB("+EQNga+wsPc", _ZN3sce2np3ipc10IpmiClient4ctorEv) +STUB("+ET0vrobH9Y", _ZN3sce7Toolkit2NP2V23TUS7Request16TusVariableInputD2Ev) +STUB( + "+Eam+g1+OIQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "+EbTQGKauo4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE5clearEv) +STUB( + "+Eep2qpYhNw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEaSERKS9_) +STUB("+EfQjqmR7VY", _ZN3sce2Np9CppWebApi11Matchmaking2V18Location8fromJsonERKNS_4Json5ValueE) +STUB( + "+EhLRoR6iBM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEE5resetEPS9_) +STUB("+EhVBDfw6ts", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEC1Ev) +STUB( + "+Ejwyp4jjYI", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi16getPublicProfileEiRKNS4_27ParameterToGetPublicProfileERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_24GetPublicProfileResponseEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("+El+RMJGOLw", pio2_lo) +STUB("+ElJcxQBhPM", GCC_except_table47) +STUB("+ErgockOJwc", WKPageLoadFile) +STUB( + "+EwJIlQwzAE", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody37unsetComparedLastUpdatedUserAccountIdEv) +STUB("+ExR8wgG5XU", _ZN7WebCore9HTMLNames13onplayingAttrE) +STUB("+EzrDsM6Mas", rgctx_fetch_trampoline_mrgctx_124_p) +STUB( + "+EzuVMzBgOE", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_18SessionInformationENS1_15AppSTLAllocatorIS5_EEEED2Ev) +STUB("+F+9hhi6k9Q", _longjmp) +STUB("+F-Ssz0kEX4", + _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse22unsetMatchEndTimestampEv) +STUB("+F0NXKWH8YU", Java_java_net_NetworkInterface_getAll) +STUB("+F6NAzieFBQ", mono_aot_Mono_CSharpunbox_trampolines) +STUB("+F7C-hdk7+E", sigemptyset) +STUB( + "+F7y8kaANvQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEdeEv) +STUB("+FBfKK6l1HE", mono_aot_Sce_Vsh_Registryplt) +STUB("+FFEXddc7mg", _ItL_qS4) +STUB( + "+FFIDnU9GSM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEeqERKS9_) +STUB("+FKudG3uS8A", _ZN3JSC13JSSetIterator14finishCreationERNS_2VMEPNS_5JSSetENS_13IterationKindE) +STUB("+FRvKknUj1I", sceFiosOpGetActualCount) +STUB("+FWUl-T8yG8", _ZN3JSC21MarkedJSValueRefArrayC1EP15OpaqueJSContextj) +STUB( + "+FXAHSDuiV0", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToSendGameSessionMessageD2Ev) +STUB("+FYcYefsVX0", sceFontWritingLineRefersRenderStep) +STUB( + "+Fca5Eyr4BU", + _ZN3WTF14FileSystemImpl15openAndLockFileERKNS_6StringENS0_12FileOpenModeENS_9OptionSetINS0_12FileLockModeEEE) +STUB("+FcvpbbdrZM", _ZNK7WebCore4Page14renderTreeSizeEv) +STUB( + "+Fd5wl1l75U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEE21intrusive_ptr_add_refEPS7_) +STUB( + "+FeOrl8y-DI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEmmEi) +STUB( + "+Fk1sIJmfpc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEEaSERS9_) +STUB( + "+FkVVtT+OKM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEC2EPNS2_10LibContextE) +STUB( + "+FpKISoi8iQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEixEm) +STUB("+FuxYqnmUds", _ZTVN9Inspector25DatabaseBackendDispatcherE) +STUB("+FvUhrQaiJQ", WKPreferencesSetCanvasUsesAcceleratedDrawing) +STUB("+Fz7ERd-kYI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEEmmEi) +STUB("+G+UsJpeXPc", sceHttpGetCookie) +STUB("+G1NKeowYHc", _ZN7bmalloc29StaticPerProcessStorageTraitsINS_11AllIsoHeapsEE7Storage8s_objectE) +STUB("+G4FSZtWmhY", mono_aot_System_Net_Httpunbox_trampolines_end) +STUB( + "+G6aU1yz2ds", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEneERKS7_) +STUB("+G9vZcqBAfY", FT_Face_CheckTrueTypePatents) +STUB("+GG9O5nkoLg", ShareInitialize) +STUB( + "+GGcAu0urlE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEC1EPNS2_10LibContextE) +STUB("+GJHl0WFS4k", _ZN3JSC22createOutOfMemoryErrorEPNS_9ExecStateERKN3WTF6StringE) +STUB( + "+GNZDy9hA3k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEC1EPKS8_) +STUB("+GOwQvxqztE", _ZN9Inspector22HeapFrontendDispatcher13trackingStartEdRKN3WTF6StringE) +STUB("+GXA7mPiX+Q", mono_aot_Sce_Vsh_SyscallWrapperunbox_trampoline_addresses) +STUB("+GYqID5YVVg", getaddrinfo) +STUB("+GgghUuOV50", g_ptr_array_sort) +STUB( + "+Ghi4BNapbo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("+Gj0bGErptI", rgctx_fetch_trampoline_rgctx_37_p) +STUB( + "+GnKJPnyz34", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEptEv) +STUB("+Gp0M0sPj9I", _ZN7WebCore11JSDOMWindow9setOpenerERN3JSC14JSGlobalObjectENS1_7JSValueE) +STUB("+GrnY8Ssf70", _ZN7WebCore8SVGNames9symbolTagE) +STUB("+Gv+a9iLWPU", _ZTVN3JSC22EdenGCActivityCallbackE) +STUB( + "+GvxwXoKnP0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEC1Ev) +STUB("+GxvfSLhoAo", _Litob) +STUB("+H-bnpXdWtk", _ZN7WebCore17NowPlayingManagernaEm) +STUB("+H5PTMieXNE", WKContextSetProcessModel) +STUB( + "+HE3J9MZ+xg", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB("+HFFvnlHfGc", il2cpp_array_new_specific) +STUB( + "+HGaF53MDZQ", + _ZN15AbstractStorage18DailymotionService23create_storage_instanceERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("+HOHgm1f0nk", utrans_open_67) +STUB( + "+HPQLcioxMk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEcvbEv) +STUB("+HQb03dI+ko", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi21ParameterToLeaveMatchC2Ev) +STUB("+HWmt-AJocg", + _ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends9setfilterENS5_6FilterE) +STUB( + "+HX+Qn98ydg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE3endEv) +STUB("+HXN6DnhN34", mono_aot_Sce_Vsh_Passcodeunbox_trampolines_end) +STUB( + "+HYH3m08QE8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEmmEi) +STUB("+HcmS7UiTTM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEEC2ERKS6_) +STUB("+HdSZEVvE1c", _ZN15AbstractStorage14DailymotionAPIC1Ev) +STUB("+HnIZdZWPQI", allocateSystem) +STUB("+HuPyGuX+jY", _ZN9Inspector15InspectorTargetD0Ev) +STUB( + "+HvPeIOmIfk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB("+I0mMwbiYEs", _ZN3NTF18URLResponseMessageD1Ev) +STUB("+I3iaqvZ-RU", mono_aot_ReactNative_Debug_DevSupportplt) +STUB("+I4K03i3EL0", sceVideoOutInitializeOutputOptions) +STUB( + "+I9g6XWtaeM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEEC2Ev) +STUB( + "+IKebLO+bOU", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("+IMGO+dXHis", _ZN7WebCore6Editor16pasteAsPlainTextENS0_20FromMenuOrKeyBindingE) +STUB("+IPktZAvm18", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody19unsetNpServiceLabelEv) +STUB("+IQ63BGhOjc", _ZN12video_parser5vpcom8datetime8DateTime3NowEv) +STUB("+IUysSYM3z0", mono_aot_System_Reactive_Corejit_code_end) +STUB( + "+IVPnXIXwkI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE5clearEv) +STUB("+IVbcCSdtTE", ucase_toFullLower_67) +STUB("+IYZC9lzWGA", _ZN3sce7Toolkit2NP2V210Tournament5EventaSERKS4_) +STUB("+IaN0m1WK1E", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_6NpUserEE17getAdditionalInfoEv) +STUB("+IagDajB6AQ", sceNpManagerIntSubmitUserCode) +STUB("+Ib-MHNUf80", sceUsbStorageUnregisterCallback) +STUB( + "+IdJBJ+BNRE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("+ImJ026-DAw", _ZNK7WebCore6Quirks47shouldAvoidScrollingWhenFocusedContentIsVisibleEv) +STUB( + "+InRAxr21AE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEE7get_refEv) +STUB("+IoqHgIw0PM", _ZN7WebCore11DisplayList10DrawGlyphsD0Ev) +STUB( + "+It9P-+AB+k", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearch36setpostGameSessionsSearchRequestBodyENS1_6Common12IntrusivePtrINS3_33PostGameSessionsSearchRequestBodyEEE) +STUB("+IzYTiwKX6Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE3endEv) +STUB( + "+J1k6HdCTgA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEC1ERKS7_) +STUB( + "+J9dKVwE5SY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEneERKS9_) +STUB("+JCs2IrB7Lc", _ZN3sce2Np9CppWebApi11Matchmaking2V15CauseC1EPNS1_6Common10LibContextE) +STUB( + "+JG9xZM5aS0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEaSERKS7_) +STUB( + "+JJtgAjVwF8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V129SetDataInfoRequestBodyFactory6createEPNS1_6Common10LibContextEPvmPNS5_12IntrusivePtrINS3_22SetDataInfoRequestBodyEEE) +STUB("+JLp7hADt2s", cpp_demangle_data_init) +STUB("+JLtJmPAMgE", _ZN4Manx5MutexD0Ev) +STUB("+JQyH57+l4k", sceBluetoothHidGetFeatureReport) +STUB( + "+JUunQ07U1o", + _ZN3sce2Np9CppWebApi7Matches2V120ResponseInGameRoster8setTeamsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_17ResponseMatchTeamEEEEE) +STUB("+JbDSpw6fX4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend7FriendsEE3setEv) +STUB("+JbWLjsVmK8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEEC1Ev) +STUB( + "+Jca1W0QHQQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEC2EPNS2_10LibContextE) +STUB("+JhexuCjuLU", + _ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBodyD2Ev) +STUB( + "+JjwsMKhIy0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEC2Ev) +STUB("+JnngM7WyHI", + _ZNK7WebCore22EmptyFrameLoaderClient29generatedMIMETypeForURLSchemeERKN3WTF6StringE) +STUB("+JpQsX8mMEw", mono_aot_Mono_CSharpplt) +STUB( + "+K2lnt-sExY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE7reserveEi) +STUB( + "+K5k9fF+aMU", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V131BandwidthUpstreamMetricsFactory6createEPNS1_6Common10LibContextEiiiPNS5_12IntrusivePtrINS3_24BandwidthUpstreamMetricsEEE) +STUB("+KAZu7rJreE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEEmmEv) +STUB("+KDChyBmSQw", _ZN3JSC7Symbols21homeObjectPrivateNameE) +STUB("+KDWny9Y-6k", sceContentExportTerm) +STUB("+KIicT+q2Cc", __libunwind_Unwind_GetIP) +STUB( + "+KJ2ZSLv9C4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEE11release_refEv) +STUB("+KLe+1qx374", sceFsUfsStopOperation) +STUB( + "+KP+tvccdVY", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V113RatingFactory6createEPNS1_6Common10LibContextEPKcRKjiPNS5_12IntrusivePtrINS3_6RatingEEE) +STUB("+KRiqc9d8EQ", _ZN3sce2Np9CppWebApi6Common13ParameterBaseD1Ev) +STUB("+KSnjvZ0NMc", srand48) +STUB( + "+KTj+tJpNCk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEC1EPS6_PNS2_10LibContextE) +STUB("+KUOTXQKt+Q", _ZN7WebCore9HTMLNames25onaccessibledecrementAttrE) +STUB("+KXfR7nTyNs", GCC_except_table423) +STUB("+Kb7j57jDzs", _ZN3WTF6Thread5yieldEv) +STUB( + "+KbqqHVIYo4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEneERKS9_) +STUB( + "+KdJtrDCipI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEEdeEv) +STUB("+Ki1Z8YwlXs", _ZN3JSC12JSLockHolderC2EPNS_9ExecStateE) +STUB( + "+KlWNWfAd3M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEE3getEv) +STUB( + "+KokNPL8ycs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEC2ERKS7_) +STUB("+KpfCt2RTTQ", _ZN3WTF12starAtomDataE) +STUB("+Ktgu0jok0Y", getNumOfRegisteredCommInfoList) +STUB("+Kx-IV+21hk", WKPreferencesGetCaptureVideoInUIProcessEnabled) +STUB( + "+KxeCsdK75A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "+KzLVrQIEPY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEEcvbEv) +STUB("+L+nJNrn2V4", mono_get_exception_invalid_operation) +STUB("+L01lTUdzPw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEED1Ev) +STUB("+L1K53Ku3mE", u_isalnum) +STUB("+L22kkFiXok", _sendmsg) +STUB("+L5ArV1tPGA", sceVdecswCreateDecoder) +STUB( + "+L5LYM05sY4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEmmEi) +STUB("+L5b-e1RBn8", __sanitizer_get_report_path) +STUB("+L708YrKGbg", _ZN3sce7Toolkit2NP2V27Session16FixedSessionDataD2Ev) +STUB("+L98PIbGttk", scePthreadRwlockUnlock) +STUB( + "+LE9Oc3+JbU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE3endEv) +STUB("+LGw19eIktE", _ZN3JSC7Symbols18forEachPrivateNameE) +STUB("+LOr6suGvNk", _ZN3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer11setPlatformEPKc) +STUB( + "+LUabdo811U", + _ZN7WebCore24DocumentMarkerController9addMarkerERKNS_11SimpleRangeENS_14DocumentMarker10MarkerTypeERKN3WTF7VariantIJNS6_6StringENS4_13DictationDataENS6_6RefPtrINS_4NodeENS6_13DumbPtrTraitsISB_EEEEEEE) +STUB("+LVSE3Fjofw", _ZN3sce7Toolkit2NP2V211UserProfile9NpProfileD1Ev) +STUB("+LVolU3eUDE", ubidi_invertMap_67) +STUB( + "+LZBd+5DZHE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEE3getEv) +STUB( + "+LcUXGrXVLI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("+Le0VsFb9mE", _ZTISt23_Generic_error_category) +STUB( + "+LhbgVKo+Fw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEE7get_refEv) +STUB("+LiOmqon2ZI", WTFSetLogChannelLevel) +STUB( + "+LjGcGDPJPw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEcvbEv) +STUB("+LjPW03VdFg", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatusD2Ev) +STUB("+LoAenYdWlM", _ZN7WebCore20SVGPathStringBuilderC1Ev) +STUB( + "+LoSSub-phc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE21intrusive_ptr_add_refEPS9_) +STUB("+LrmM3KN3N8", _ZN7WebCore11DisplayList10StrokePathD0Ev) +STUB( + "+Lxl5KTbZX4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEED1Ev) +STUB("+Ly9G7OxvE8", _ZN3sce2Np9CppWebApi13InGameCatalog2V55Error7setCodeERKi) +STUB( + "+M05GT3tzJg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEE7add_refEv) +STUB("+M1lGFTMSzA", sceMusicCoreServerSetTitleId) +STUB("+M5RIA4WqMo", JNU_NewStringPlatform) +STUB("+MBimetTs2c", + _ZN12video_parser16cVideoContentMp423releaseProfilerInstanceEPNS_14iVideoProfilerE) +STUB("+MCXJlWdi+s", sceSharePlayGetCurrentConnectionInfoA) +STUB( + "+MGjE3Q8asU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("+MIiJe86DmQ", mono_aot_Newtonsoft_Json_PlayStationunwind_info) +STUB( + "+MR0p5ffg4w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEE11get_deleterEv) +STUB( + "+MSaOJXzzm4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("+MW-sNgWp20", _ZNK3sce2Np9CppWebApi11Matchmaking2V15Cause6toJsonERNS_4Json5ValueEb) +STUB( + "+MZ0CYp0XsY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEEC2ERKSA_) +STUB("+MdgHI0TYOw", sceM4aacEncFlush) +STUB("+Mtt2MKltuQ", sceKernelDeleteSblock) +STUB("+Mu7bP5WvzQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEptEv) +STUB( + "+Mu9H5-Ao7Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEED2Ev) +STUB("+MuYdJPypkE", ASN1_TIME_print) +STUB("+MzGFuNN348", _ZN7WebCore17PageConfigurationD2Ev) +STUB("+N+wrSYBLIw", sceGnmPaDisableFlipCallbacks) +STUB("+N-GwpCV4yk", _ZN7WebCore12DOMTokenList6toggleERKN3WTF10AtomStringENS1_8OptionalIbEE) +STUB( + "+N-NNwLVTMU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "+N-u9KkKv6s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE6resizeEj) +STUB("+N0S0HtBitA", _ZNSt15basic_streambufIwSt11char_traitsIwEED0Ev) +STUB( + "+N5BdmbkYrE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEEC2ERKSA_) +STUB("+N6UhRaLrJE", _ZN3JSC4Heap20edenActivityCallbackEv) +STUB("+N7MjQuH5r0", _ZN7WebCore8SVGNames17vector_effectAttrE) +STUB( + "+NBC6kmpO9I", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEneERKS9_) +STUB("+NCOiMN+Ngg", utrace_exit_67) +STUB("+NCteOHLUd4", _ZN25MmsFileUpdaterFsOperation11openTmpFileEv) +STUB("+NGrXdCa0q8", WKWebsitePoliciesSetAllowedAutoplayQuirks) +STUB( + "+NJ3DuqPaKg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEC1EPS8_) +STUB( + "+NPHPP5Qfzs", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V113ErrorResponse8fromJsonERKNS_4Json5ValueE) +STUB("+NVJMeISrM4", sceUserServiceGetGlsTtsFlags) +STUB( + "+NVsnvq6gp4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEppEv) +STUB("+NXjg-1KWPc", _ZN3sce2Np9CppWebApi11Matchmaking2V19SubmitterC1EPNS1_6Common10LibContextE) +STUB("+Nc8JGdVLQs", _ZNSt9exceptionD0Ev) +STUB( + "+NciRKDxGpk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEixEm) +STUB("+Nd4bYkEgRc", ubrk_getAvailable) +STUB("+NiG+102wlw", + _ZN3sce2Np9CppWebApi14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyD1Ev) +STUB("+NiLTGGKF+E", _ZNK7WebCore6Editor8canPasteEv) +STUB("+Nqfy8HVG84", _ZN7WebCore15DatabaseManager9singletonEv) +STUB( + "+Nto+MJRxto", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB( + "+NuOgg6Hep8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("+NuhuZH75ak", _ZN7WebCore18TextureMapperLayer18setFixedToViewportEb) +STUB( + "+O3vPILNV94", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE10setContextEPNS2_10LibContextE) +STUB( + "+O7B7VXpaSE", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Runtime15SyntaxErrorTypeEEESt8optionalIT_ERKN3WTF6StringE) +STUB("+OCxbaKiBUo", _ZN3WTF5equalEPKNS_10StringImplES2_) +STUB( + "+OHZINP9VYU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("+OOjOkuWL6g", WKBundleBackForwardListGetForwardListCount) +STUB( + "+OWRwyFiafI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEED2Ev) +STUB( + "+OXobrj7RqM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE8copyFromERKS9_) +STUB( + "+OY9mjnbjgc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEdeEv) +STUB("+OYjjaRc8Xs", sceShareFactoryUtilGetLaunchStatusOfShareFactory) +STUB("+OavZyS-eMI", sceCesUhcUcsProfileSetSbcs) +STUB("+Oc7AcmN3h4", _ZN3sce7Toolkit2NP23DownloadListInputParamsC1Ev) +STUB( + "+Oeu4K-dJ-c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEE5resetEPS9_) +STUB("+OgbxjQ3QTw", udat_getLocaleByType_67) +STUB( + "+OjfYXZk0Ik", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEEC2ERS9_) +STUB( + "+OkTn3+PBxM", + _ZN7WebCore28collectVaryingRequestHeadersEPNS_21NetworkStorageSessionERKNS_15ResourceRequestERKNS_16ResourceResponseE) +STUB("+OlXCu8qxUk", sceAppContentAppParamGetString) +STUB( + "+OlkSeIKOFY", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setInteger6ERKi) +STUB("+OmKePlbzEo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEE3getEv) +STUB("+OyQtTUb6yY", _ZN3WTF16AtomicStringImpl6lookUpEPKDsj) +STUB( + "+Oz8oaFT-bw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEC1Ev) +STUB("+P5TDFU2-fc", u_isdefined) +STUB("+P6FRGH4LfA", memmove) +STUB("+P6FRnQJc1E", sem_open) +STUB("+PDSI6WgPRc", sceNpTrophy2GetGroupInfoArray) +STUB("+PDx3sfB-l4", _ZN7WebCore19approximateAsRegionERKNS_11RoundedRectEj) +STUB("+PDyXnclP5w", sceHmdInternalGetPUVersion) +STUB("+PEo5Z7DOlY", cairo_paint) +STUB( + "+PNB7JBmW6Q", + _ZN7WebCore8Document8evaluateERKN3WTF6StringEPNS_4NodeEONS1_6RefPtrINS_15XPathNSResolverENS1_13DumbPtrTraitsIS8_EEEEtPNS_11XPathResultE) +STUB("+PNgG+eviNw", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V113SubtaskStatusEEC1Ev) +STUB("+POsWAWjXo8", _ZN7WebCore11HistoryItem8formDataEv) +STUB("+PQM6EVgMT4", _ZTVN3JSC12HeapAnalyzerE) +STUB( + "+PU7P07Lyjo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEdeEv) +STUB( + "+PaiSioUlH8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEEdeEv) +STUB("+PchhCH55ig", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request14PostPlayedWith9MAX_USERSE) +STUB("+PeIrQMgYpw", _ZN3WTF9URLParser23maybeCanonicalizeSchemeERKNS_6StringE) +STUB("+Pg2UsX0JOk", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEE3getEv) +STUB("+PjH28yxG7c", mono_aot_JSC_Netjit_got) +STUB("+Pqub9HZCPo", pthread_barrier_destroy) +STUB("+Prbx5iagl0", sceUserServiceGetGlsCameraEliminationLevel) +STUB("+Pxwa79wvyA", _Z25sceLibcForceTlsDestructori) +STUB("+Q++Q49a9z8", sceNpSessionSignalingGetConnectionStatistics) +STUB( + "+Q1xnclNAMQ", + _ZN3sce2Np9CppWebApi13InGameCatalog2V514ProductFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_7ProductEEE) +STUB("+Q7xLvpc0PA", _ZN3WTF21MemoryPressureHandler15setProcessStateENS_18WebsamProcessStateE) +STUB( + "+QFRTQrICgQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEE7get_refEv) +STUB("+QHq+jlZBDo", _ZN7WebCore24CoordinatedGraphicsLayer13addChildBelowEPNS_13GraphicsLayerES2_) +STUB("+QL3zQ6ZNy4", _ZThn16_N9Inspector21InspectorConsoleAgent6enableERN3WTF6StringE) +STUB("+QMFuN0mi5o", sceDebugGetFileInfoForCoredump) +STUB( + "+QO1XHAZ0OI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEE7get_refEv) +STUB( + "+QQbgGsD72U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEE7add_refEv) +STUB( + "+QVeGxy6q78", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEaSERS7_) +STUB("+QZRPht6+lU", sys_alloc) +STUB( + "+Qd+qbtGMTQ", + _ZN7WebCore21SerializedScriptValue6createERN3JSC9ExecStateENS1_7JSValueENS_22SerializationErrorModeE) +STUB("+QgCQGeexPI", mono_aot_I18N_Rarejit_got) +STUB("+QjD9JmVT10", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEEC1Ev) +STUB("+Qmj7fkB+-M", _ZN7WebCore18JSHTMLVideoElement11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("+QofO2b3Gh8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEdeEv) +STUB( + "+QpTqlAdiH0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEE11release_refEv) +STUB("+QqY4yvfTFI", ucnv_loadSharedData_67) +STUB( + "+QqhGt7MK24", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB( + "+QqzEnc5c80", + _ZN7WebCore27TranslateTransformOperationC1ERKNS_6LengthES3_S3_NS_18TransformOperation13OperationTypeE) +STUB( + "+Qrz-NT0Hu4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("+R0GXLrsPM0", _ZN3WTF13StringBuilder12appendNumberEf) +STUB( + "+R2eXISeSvw", + _ZN7WebCore22EmptyFrameLoaderClient35dispatchDidClearWindowObjectInWorldERNS_15DOMWrapperWorldE) +STUB("+R7zobv9S3E", _ZN3sce10CanvasUtil11bindTextureEhPNS_13CanvasTextureE) +STUB( + "+RCPb5icHV4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEC2EPS8_) +STUB( + "+RD9IF7ia-E", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("+RGTdP3AnK0", uprv_decNumberToUInt32_67) +STUB( + "+RLN3aaekHs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEED2Ev) +STUB("+RLa-6fbshA", FT_Stroker_Done) +STUB( + "+RQ5bmR6OFc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("+RVBvYdYfVA", _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebErrorD2Ev) +STUB("+RVCwHtA5kU", sceNpManagerIntGetAccountAge) +STUB( + "+RWkxNHEVYM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEE11get_deleterEv) +STUB("+RY11rLSzEo", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE5beginEv) +STUB("+RZFlwV4k3I", sceSysUtilSendSystemNotificationWithAppNameRelatedToUser) +STUB( + "+RcTNad85I0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEixEm) +STUB("+RfBdn+ODPU", cairo_mask_surface) +STUB( + "+RfP2hJ7IpA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "+RgmqLQ98x0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEED1Ev) +STUB("+RhzSuuXwxo", sceNpTusSetDataVUser) +STUB("+RkwSDm5kGU", WKDownloadCancel) +STUB( + "+Rn7rLKZuU0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEcvbEv) +STUB("+RnrFA7EwuQ", _ZN3sce7Toolkit2NP2V28Commerce19ServiceEntitlementsC1Ev) +STUB( + "+RpuXWm1Mqw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("+RtBREW92M0", _ZNK7WebCore14SecurityOrigin20isSameSchemeHostPortERKS0_) +STUB( + "+RuThw5axA4", + _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tmcc) +STUB("+S-2-jlpaBo", sceNetGetNameToIndex) +STUB( + "+S-M6RpQ-Ko", + _ZN3sce2Np9CppWebApi7Matches2V128ResponsePlayerResultsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_21ResponsePlayerResultsEEE) +STUB("+S3egnFljTg", _ZN3sce7Toolkit2NP2V26Friend7Friends8deepCopyERKS4_) +STUB("+S3wbdDshgw", mono_aot_I18N_Westunbox_trampolines_end) +STUB( + "+S5uolgNXXA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEeqERKS9_) +STUB("+S6HacqRIBo", Java_com_sony_bdjstack_javax_media_controls_SoundManager_getGainLevel) +STUB("+S72K+fa2-8", WKErrorCopyLocalizedDescription) +STUB("+S7ftAAWhoQ", _ZNK7WebCore11MessagePort5derefEv) +STUB("+S7wr6H9Puo", _ZN7WebCore8SVGNames20requiredFeaturesAttrE) +STUB("+SHzgUiuQDE", _ZNK7WebCore17MouseRelatedEvent1yEv) +STUB("+SJV7U08g9E", allocateVideo) +STUB( + "+SLNCwLXghs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("+SMBrTixsiA", _ZNK15AbstractStorage14YoutubeContent7GetStatEPNS_4StatE) +STUB( + "+SPy37ZS69U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEED2Ev) +STUB( + "+SVn1VwOIiw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEE5resetEPS9_) +STUB("+SeQg8c1WC0", _Flt) +STUB("+Sgy63JgEgQ", _ZN7WebCore9FloatRectC2ERKNS_7IntRectE) +STUB("+SjcGg0vjiw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEC1Ev) +STUB("+Sozphy1Wa8", _ZN7WebCore15AffineTransform9translateERKNS_9FloatSizeE) +STUB("+Sswi4eZxvM", _ZN7WebCore11JSDOMWindow11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB( + "+SvaL6iOMM8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE8pushBackERKS8_) +STUB( + "+T-vi8xeg6c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEmmEv) +STUB("+T1qp2oAECs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEEC1Ev) +STUB("+T5iwpOl2oY", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE8pushBackERKS6_) +STUB("+T6s7lG6CIs", _ZN12video_parser5vpcom4InitEPNS0_10_VP_FILEIOEPNS0_13_VP_MEMACCESSE) +STUB("+T8Xo6LtFJI", sceAgcDriverAgrSubmitMultiDcbs) +STUB("+TAYtLoToXs", _ZN3sce7Toolkit2NP2V28Commerce12SubContainer8deepCopyERKS4_) +STUB("+TF60FmY-hk", png_free_default) +STUB("+TFxCLoE0JA", _ZN7WebCore22externalRepresentationEPNS_7ElementEj) +STUB( + "+THW47hfTjk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE3endEv) +STUB("+TJLm+3UBQ4", _ZN3sce7Toolkit2NP15PresenceRequestC1Ev) +STUB("+TJY5KIu4IY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEEC1Ev) +STUB("+TMB5dZmYk4", il2cpp_class_from_type) +STUB("+TMeXxuhF8A", _ZN7WebCore9HTMLNames20onwebkitkeyerrorAttrE) +STUB("+TN0oRTBxJQ", sceAgcDriverIsTraceInProgress) +STUB("+TPG7zQdn6Y", _ZN3sce2Np9CppWebApi7Matches2V14Task8fromJsonERKNS_4Json5ValueE) +STUB("+TPntL1OK80", _ZNK3JSC18PropertyDescriptor6setterEv) +STUB( + "+TSS9zVYI54", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("+TT+AplhQWA", WKContextSetDownloadClient) +STUB( + "+TThaJVtU1Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE8copyFromERKS9_) +STUB("+TU4zK4D7KA", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10setString7EPKc) +STUB( + "+TXH8e7vyoQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEE7get_refEv) +STUB( + "+TXUKN8jz6A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE7popBackEv) +STUB("+TZJT3fRFOI", _ZN3sce2Np9CppWebApi6Common8IteratorIfEmmEv) +STUB("+TculRjEilg", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12string4IsSetEv) +STUB( + "+TdrexD9g-I", + _ZNK3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody16customData1IsSetEv) +STUB( + "+TjNmuhxdBQ", + _ZN9Inspector23CanvasBackendDispatcher6createERNS_17BackendDispatcherEPNS_30CanvasBackendDispatcherHandlerE) +STUB("+TktRPDfw0Y", cairo_font_options_set_hint_metrics) +STUB( + "+TmGZ8DFBuo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEE11get_deleterEv) +STUB("+TpjDh86I7s", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE7popBackEv) +STUB("+Ts4tkJjqS8", _ZNK3sce2Np9CppWebApi11UserProfile2V112BasicProfile19personalDetailIsSetEv) +STUB("+TtUFzALoDc", _ZTISt7codecvtIDic9_MbstatetE) +STUB( + "+TtgY6TfFuE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEplEm) +STUB( + "+U-nxwdrnDY", + _ZN7WebCore15DeferredPromise12callFunctionERN3JSC14JSGlobalObjectENS0_11ResolveModeENS1_7JSValueE) +STUB("+U1R4WtXvoc", pthread_detach) +STUB( + "+U1dkR3eSMM", + _ZN3sce7Toolkit2NP8Sessions9Interface25setInvitationDataUsedFlagEPKNS1_21InvitationDataRequestEPNS1_9Utilities6FutureIiEEb) +STUB("+UBcVRydxu4", + _ZNK3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayer17pushContextsIsSetEv) +STUB("+UFW4Fvxx1E", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V127ConnectionQualityPropertiesD2Ev) +STUB("+UKI-MUuiCU", + _ZN7WebCore21PlatformKeyboardEvent24disambiguateKeyDownEventENS_13PlatformEvent4TypeEb) +STUB("+UQIOUMc7e8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEEC1Ev) +STUB( + "+UTa75Pu3Zo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEppEv) +STUB("+UTitEAfFqg", _ZN3NTF5Mutex7tryLockEv) +STUB( + "+UZcyLdAFOI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEED1Ev) +STUB("+UgGUWPkGQk", mono_property_hash_remove_object) +STUB( + "+Ui3mgWJ6sg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEdeEv) +STUB("+UmSejQaFOc", mono_aot_Sce_Vsh_VideoFramework_Platformplt_end) +STUB("+UmoBB-Kur0", GetAccountCountryA) +STUB("+Uuj++A+I14", _ZTv0_n24_NSiD1Ev) +STUB("+UvjudVMiac", _ZN3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error8unsetTidEv) +STUB( + "+Uw-PejdYik", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEEC1ERSA_) +STUB("+UyKxWAnqIU", _ZN3sce16CommonDialogUtil6ClientD2Ev) +STUB( + "+UyRDMNEiEM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE5emptyEv) +STUB("+UzzSnc0z9A", sceHmdInternalEventInitialize) +STUB( + "+V-zPW9shIU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEC2ERKS7_) +STUB( + "+V5A0luRx+A", + _ZN7WebCore22EmptyFrameLoaderClient39dispatchDecidePolicyForNavigationActionERKNS_16NavigationActionERKNS_15ResourceRequestERKNS_16ResourceResponseEPNS_9FormStateENS_18PolicyDecisionModeEON3WTF8FunctionIFvNS_12PolicyActionEEEE) +STUB( + "+V5blyCSzVQ", + _ZN9Inspector14ConsoleMessageC1EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelERKN3WTF6StringES8_jjPNS1_9ExecStateEm) +STUB( + "+V8bB+MtN-E", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEneERKS9_) +STUB("+VC2a8sNzhc", _ZN3sce7Toolkit2NP15AppSTLAllocatorIiE10deallocateEPim) +STUB("+VFypyIHA0Y", mono_aot_Sce_Vsh_MimeTypeunbox_trampolines_end) +STUB("+VG-R77LB4M", WKContextConfigurationSetStorageProcessPath) +STUB("+VL0i6txBE8", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getSubtitleType) +STUB( + "+VQZboVviRg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEC2EPNS2_10LibContextE) +STUB( + "+VSr6sEORl8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEaSERS7_) +STUB( + "+VTpp5afoFA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "+VVguoJWXgQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "+VYC0pbfrxM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("+VcXKROlmjY", _ZN3sce7Toolkit2NP2V26Friend16FriendsOfFriendsD2Ev) +STUB( + "+Vi9ckVPfxM", + _ZN3JSC12RegExpObject23getGenericPropertyNamesEPNS_8JSObjectEPNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB( + "+Vs59TZMiaI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEE11release_refEv) +STUB( + "+VvULKa2tjs", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats18setFrequentlyMutedERKNS1_6Common12IntrusivePtrINS3_15FrequentlyMutedEEE) +STUB("+VvktcfIouQ", _ZN7WebCore9JSElementD2Ev) +STUB("+VwnOe5+8kU", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE8capacityEv) +STUB( + "+VxoqmAijjQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("+W-Nx4D7Up8", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17SetGameDataResultEE3setEv) +STUB( + "+W77CCE4Q6M", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetBoolean7Ev) +STUB( + "+W7fL6PWOhw", + _ZN3sce2Np9CppWebApi14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBody14setInvitationsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_30RequestPlayerSessionInvitationEEEEE) +STUB( + "+W9HuUSauTc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("+WI+fapCx44", _ZN3sce7Toolkit2NP9Utilities10FutureImplC1Ev) +STUB("+WLgzxv5xYA", __sync_fetch_and_add_16) +STUB("+WNjSGwkEgc", usearch_getMatchedText_67) +STUB( + "+WRHSZqLXuI", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitations12getsessionIdEv) +STUB("+WRlkKjZvag", _readv) +STUB("+WS2yRv5aBI", _ZN9Inspector14InspectorAgentC2ERNS_12AgentContextE) +STUB( + "+WS9NRcyGds", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEC1EPS8_) +STUB( + "+WWqyrAccNg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEppEv) +STUB("+WXOhitRdkQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE5emptyEv) +STUB( + "+WZ1l9QP3kY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEE11get_deleterEv) +STUB( + "+WfrdXY7Fxs", + _ZN3sce2Np9CppWebApi14SessionManager2V115SearchCondition9setValuesERKNS1_6Common6VectorINS5_6StringEEE) +STUB("+WnETlI-PdI", _ZN7WebCore12ChromeClient24disableSuddenTerminationEv) +STUB( + "+WqK5B5gTDM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE5clearEv) +STUB( + "+Wsf8VoHXn8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEeqERKS9_) +STUB("+WtCTlFS6Ao", _ZNK7WebCore18ScrollingStateTree14stateNodeForIDEm) +STUB("+WvmZi3216M", _ZNSt13basic_filebufIwSt11char_traitsIwEE4syncEv) +STUB("+X-5yNFPbDw", __muloti4) +STUB( + "+X14bIygJxI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("+X1Kgnn3bzg", sceCameraStopByHandle) +STUB( + "+X2eDEOVSQQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEC2Ev) +STUB("+X41Is9kAPs", _ZN7WebCore8blankURLEv) +STUB( + "+X4THvzyIyc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEmmEi) +STUB("+X5OqwDYqdM", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_17MessageAttachmentEEC2Ev) +STUB("+X7OWjgXRjg", + _ZNK3sce2Np9CppWebApi7Matches2V126RequestTeamMemberStatistic6toJsonERNS_4Json5ValueEb) +STUB( + "+X9FrED0h28", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEptEv) +STUB( + "+XBeMHSmZc4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEE5resetEPS9_) +STUB("+XPO-y2Kmt8", sceAppInstUtilRequestInstallDiscGame) +STUB( + "+XRAR50JOcc", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification16FriendlistUpdateEE12deepCopyFromERS8_) +STUB("+XY0jzNrKsA", _ZN9Inspector21createScriptCallStackEPN3JSC9ExecStateEm) +STUB("+XZ85Y+o7JM", ufmt_getLong_67) +STUB("+XZ94W5QGf8", _ZN3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead13unsetTicketIdEv) +STUB("+XZfnHByVO0", _ZN7WebCore18TextureMapperLayer15setBoundsOriginERKNS_10FloatPointE) +STUB( + "+Xe2-TJDSJg", + _ZN3sce2Np9CppWebApi14SessionManager2V134RequestGameSessionSpectatorFactory6createEPNS1_6Common10LibContextEPKcS9_PNS5_12IntrusivePtrINS3_27RequestGameSessionSpectatorEEE) +STUB("+XiOtdILEHI", _ZN15AbstractStorage14YoutubeContent12readExternalESt10shared_ptrINS_7ContentEE) +STUB( + "+XjvMtyZ0Mg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEC1EPS6_PNS2_10LibContextE) +STUB( + "+XkeJVfP1mw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEEC2Ev) +STUB("+XlDnumvLVA", sceVideoOutGetHdmiMonitorInfo_) +STUB("+XnLLwt2q-Y", FcPatternRemove) +STUB("+Xne3E9M-E8", sceHidControlSetJediVolumeGain) +STUB( + "+XoLKTwkHYU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEaSERKS7_) +STUB( + "+XqOvTTQoHE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEC2EPNS2_10LibContextE) +STUB("+XuZD9HV0p4", sceKernelGetUtokenNpEnvSwitchingForRcmgr) +STUB("+XybtqBH-dw", ubidi_getBaseDirection_67) +STUB("+Y+GvPvwUeY", _ZN3sce2Np9CppWebApi6Common6StringC1Ev) +STUB("+Y1acHGomGQ", sceNpFriendListDialogClose) +STUB( + "+Y2x1XJowKA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEC2EPS8_) +STUB( + "+Y4+-Qo5v5A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEC2EPS8_) +STUB("+YBfWz5udq4", WKWebsiteDataStoreHasAppBoundSession) +STUB("+YC15G75LHE", delegate_invoke_impl_target_2_p) +STUB("+YFoMsoUpu8", rgctx_fetch_trampoline_rgctx_100) +STUB( + "+YJFW-t0zbE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("+YKXDq904dc", sceAudioOut2MbusInit) +STUB("+YPwmEWTZwE", _ZN7WebCore20ResourceHandleClientD0Ev) +STUB( + "+YSHm0nb+Dw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE3endEv) +STUB( + "+YU4jAhUeug", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("+YUitWGlDuo", _ZL14ext_once_state) +STUB("+YX0z-GUSNw", sceCoredumpAttachMemoryRegion) +STUB("+YYEOsi3IMk", _ZN7WebCore7Element27dispatchMouseForceWillBeginEv) +STUB("+YbLnJwL+xw", AsyncStorageOpenNative) +STUB( + "+YcFwKDAR+w", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "+Yd4nap86uI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE10setContextEPNS2_10LibContextE) +STUB("+YgOMHqTH6w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEEC2Ev) +STUB("+Yi2J5gcY1U", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesD1Ev) +STUB("+YjjI7wlRaI", _ZN12video_parser25_isValidArtworkResolutionEjj) +STUB("+Yp6+orqf1M", scePadResetLightBarAllByPortType) +STUB("+YqSDxzOvVA", __tsan_atomic16_store) +STUB("+YqVizLCtK4", mono_image_loaded_by_guid_full) +STUB( + "+YrfcHy+etk", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsersD1Ev) +STUB("+Yt7tRH8RCA", _ZTVN7WebCore11DisplayList14ConcatenateCTME) +STUB( + "+YxSiO-6XfA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEE5resetEPSA_) +STUB("+YyqQTUIQJQ", _ZN9Inspector21CSSFrontendDispatchernaEm) +STUB( + "+Z4xgv3mOm4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEEC2ERSA_) +STUB("+Z5Bv5pJvsA", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V314MissingElement7getNameEv) +STUB( + "+Z6KjyZ4Us4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEmmEi) +STUB("+ZC8QYB-BA8", _ZN3sce2np3ipc17ServiceIpmiClient13PollEventFlagEijmjPm) +STUB("+ZODIUViXvs", udata_printError) +STUB( + "+ZOMNFeqthU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEaSERKSC_) +STUB( + "+ZRGrS2ZQYs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEED2Ev) +STUB( + "+ZfcTj9uzow", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("+ZftUDCU6rw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEEC2Ev) +STUB("+ZgGbFykhls", _ZNK7WebCore14DocumentLoader12mainResourceEv) +STUB( + "+Zhm401Zw4A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEptEv) +STUB( + "+ZoLkKuBrkA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEED1Ev) +STUB( + "+Zur0S4T+H8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEC2Ev) +STUB("+Zv+OWIytek", sceLncUtilSystemShutdown) +STUB("+ZwjLJ74Y38", _ZN7WebCore8Document5closeEv) +STUB("+a4dUflrkFM", + _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody14setRulesetNameEPKc) +STUB( + "+a9HkGama2I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "+aA0lFGKJfA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEneERKS9_) +STUB( + "+aHwBfGAf5E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEE11release_refEv) +STUB( + "+aK15BpdXdY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE5eraseENS2_8IteratorIS6_EERS9_) +STUB("+aNQf0t6YIc", _ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody11getLocationEv) +STUB("+aP2TUR+mlY", _ZN3sce7Toolkit2NP2V28Commerce7Request14CheckoutTargetC1Ev) +STUB( + "+aUP5oFK7y4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("+aWuyyuTuQE", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112GroupingTypeEEaSERKS7_) +STUB( + "+akuXyFLw44", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE5beginEv) +STUB("+am1Woo7Sss", + _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBodyC2EPNS1_6Common10LibContextE) +STUB("+anuSx2avHQ", sceNpInGameMessageDeleteHandle) +STUB( + "+apMlLOxpk8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEED1Ev) +STUB("+aqNTRcIsnA", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEED1Ev) +STUB("+arkFfg6uxw", scePsmUtilRegisterCallbacks) +STUB("+awEBGL0-8g", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament6EventsEED1Ev) +STUB( + "+azu151bSo8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEplEm) +STUB("+b+a93T4pvo", mono_stack_walk_async_safe) +STUB("+b1xwU7aUwU", _ZN7WebCore21markerTextForListItemEPNS_7ElementE) +STUB("+b34-CLWc0s", sceAgcDriverUserDataWritePushMarker) +STUB("+b5TfVQ3-4s", _ZN7WebCore11MediaPlayer13addVideoTrackERNS_17VideoTrackPrivateE) +STUB("+bD5Mw5pm4A", sceDataTransferHostLaunch) +STUB("+bDb7iby5NI", _ZNK7WebCore10FloatPoint15matrixTransformERKNS_20TransformationMatrixE) +STUB( + "+bEmcQw3bms", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("+bFVZHy54tw", _ZN3sce2Np9CppWebApi11UserProfile2V16AvatarC2EPNS1_6Common10LibContextE) +STUB( + "+bGT0mudElw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "+bKHGz+nfxA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEED1Ev) +STUB("+bMkbKRF6Bo", scePerfTraceCreate) +STUB("+bPLHB2RpZM", _ZN3sce7Toolkit2NP2V27Ranking7Request15GetRangeOfRanks14MAX_NUM_BOARDSE) +STUB("+bRDRotfj0Y", sceSaveDataGetSaveDataRootDir) +STUB("+bRRhPeBqZI", FTA_Export_Module_smooth_lcd) +STUB( + "+bUcgwvM-Nk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE8copyFromERKS9_) +STUB("+bUsxQOsRrs", c20) +STUB("+bWXcj6GSEo", _ZN7WebCore8SVGNames20kernelUnitLengthAttrE) +STUB("+bZHOrd+j-8", LOGICAL_PAGE_SIZE) +STUB( + "+baqz7ahOng", + _ZThn16_N9Inspector22InspectorDebuggerAgent19evaluateOnCallFrameERN3WTF6StringERKS2_S5_PS4_PKbS8_S8_S8_S8_S8_RNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISC_EEEERNS1_8OptionalIbEERNSH_IiEE) +STUB("+bpbw8d2OpU", _ZN3sce7Toolkit2NP2V23TUS7Request12SetVariablesC2Ev) +STUB("+bs5hxUx9H8", _ZN12video_parser17cVideoOperatorM4vD1Ev) +STUB("+bvtn3pCtek", _ZNK7WebCore11CryptoKeyEC9exportRawEv) +STUB("+byORTSkWQo", _ZN9Inspector22RemoteInspectionTargetD2Ev) +STUB("+bzQstM51-c", mono_aot_Sce_Vsh_SystemLoggerUtilWrapperjit_code_end) +STUB("+c2s3LcdpjI", _ZN3sce7Toolkit2NP2V27Ranking7Request15GetRangeOfRanksD1Ev) +STUB("+c80CcjZFJc", _ZN7WebCore9HTMLNames11onkeyupAttrE) +STUB("+c8yad1Yodo", mono_btls_x509_get_public_key_asn1) +STUB("+cE4Jx431wc", scePadEnableExtensionPort) +STUB( + "+cHNGUw2Gso", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "+cHQSR34crs", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("+cHw5miSmpk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEEC1EPNS2_10LibContextE) +STUB("+cI2Trsp+yY", __asan_report_exp_store16) +STUB("+cKrW2ELayg", u_fscanf_67) +STUB("+cP+N-dOjM4", _ZN12video_parser18cMp4FFLHndlManager8useTrackEj) +STUB("+cSD1hGmg+0", sceDebugGetModuleInfo) +STUB("+cTPcVnF0Sc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEEC2EPS6_) +STUB("+cU0Np4JB9g", _ZN3sce7Toolkit2NP2V28Matching4Data5resetEv) +STUB("+caGEFeVZd8", glInvalidateSubFramebuffer) +STUB( + "+cb0csU0I64", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEE11get_deleterEv) +STUB("+ccnYelDjYA", jpeg_natural_order) +STUB("+cq5DYTYew8", _ZN3sce7Toolkit2NP2V27Ranking10UsersRanksaSERKS4_) +STUB("+dAwquupevQ", _ZNK7WebCore5Color9lightenedEv) +STUB("+dBisZM4cLY", tinytens) +STUB( + "+dCnjNAooiM", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("+dGO+GS2ZXQ", _ZN3sce2np9WorkQueue4InitEPKcimm) +STUB("+dGYWQxv5k4", mono_btls_bio_read) +STUB( + "+dIW7qmTTJs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("+dIkRcrPUX8", JVM_GetMethodIxArgsSize) +STUB("+dJgS9Bei2w", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEEplEm) +STUB("+dLapxrRdJM", sceApplicationNotifyCoredumpRequestProgress) +STUB( + "+dLm8i++jd8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE21intrusive_ptr_add_refEPS9_) +STUB("+dPfbWlRgmU", + _ZN15AbstractStorage14TwitterStorage7IsExistERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("+dPyq67SQM8", _rtld_free_tls) +STUB("+dTlroLZao8", _ZN9Inspector22InspectorDebuggerAgent20setPauseOnAssertionsERN3WTF6StringEb) +STUB( + "+dV1gZ7ZjF4", + _ZN3sce2Np9CppWebApi7Matches2V120ChildActivityFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_13ChildActivityEEE) +STUB("+dVBPC74ZhM", sceLibSecureAddHash) +STUB( + "+dYY-UUQGzU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEC2EPNS2_10LibContextE) +STUB("+djhZV4Ulbs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEEC2EPS6_) +STUB("+dlfEIcJpLM", fuse_lowlevel_new) +STUB( + "+drDFyAS6u4", + _ZN3sce4Json11Initializer27setGlobalNullAccessCallbackEPFRKNS0_5ValueENS0_9ValueTypeEPS3_PvES7_) +STUB("+drp8M9wJhc", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session8SessionsEE3setEv) +STUB("+dwA2Fv+uXk", sceM4aacEncEncodeWithPriorityEx) +STUB( + "+dx0rJ0BJU4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE5beginEv) +STUB( + "+dzunfLnaIY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEEC2ERKSA_) +STUB("+e3Bdk+MqN8", _ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequest17setNpServiceLabelERKi) +STUB("+e96RoSI62w", sceAppInstUtilRequestDataDiscCopy) +STUB("+eCt8SuNJt8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEEdeEv) +STUB("+eFOGH-2A8M", sceAudiodecDecode2) +STUB( + "+eG--zIkcgU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEmmEv) +STUB("+eH7qoT53fs", _ZN3sce7Toolkit2NP16LikeStoryRequestC2Ev) +STUB("+eHwb+y5f1w", sceFsUfsReallocateSparseFile) +STUB("+eI85WYDrUY", _ZNKSt9basic_iosIwSt11char_traitsIwEE3tieEv) +STUB( + "+eKs4SJvfwo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEEaSERSA_) +STUB( + "+eKwuhAaMoY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEE3getEv) +STUB( + "+eLOr7oXPcg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB( + "+eNA5mkhlq0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE5emptyEv) +STUB("+eVN0UdRT8c", _ZN7WebCore14ResourceLoader5startEv) +STUB("+eYx2w4ubuM", mono_btls_x509_lookup_add_dir) +STUB("+eZsBesRiBM", ScePsmMonoDlFallbackRegister) +STUB("+edN0l5oq-M", mono_aot_Sce_Vsh_Sl2_NativeQueueClientplt_end) +STUB("+eeAyPSj5jw", + _ZN3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer13setPlayerTypeERKNS3_10PlayerTypeE) +STUB("+eeIdWGa+50", GCC_except_table46) +STUB("+egCcKBsQk0", _Z36sceRazorGpuThreadTraceEnableCountersPN3sce3Gnm21DispatchCommandBufferE) +STUB("+ehNXJPUyhk", sceFontFtSupportSystemFonts) +STUB("+eiEXbd0+eE", times) +STUB( + "+enL+grRqdU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEE5resetEPS6_) +STUB( + "+eolPg53UUc", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_11ProductInfoENS1_15AppSTLAllocatorIS5_EEEEC1Ev) +STUB("+epU+rgObyw", sceVideoOutSysCursorObtain) +STUB("+epVkVPj4B8", _ZN3JSC7Symbols20isJSArrayPrivateNameE) +STUB("+espSlKF9Uc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V117InvitableUserTypeEEptEv) +STUB( + "+eu18mM9DTM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEE3getEv) +STUB( + "+euW7klKfLU", + _ZN7WebCore27PlatformMediaSessionManager30didReceiveRemoteControlCommandENS_20PlatformMediaSession24RemoteControlCommandTypeEPKNS1_21RemoteCommandArgumentE) +STUB( + "+evu2K7P7zI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEC2EPS8_) +STUB("+ewEHVkVfcU", mspace_unlock) +STUB("+ezgWao0wo8", sceNetDumpAbort) +STUB("+f0eKTUgPRQ", _ZN23sceMetadataReaderWriter13KeyValueArray6shrinkEv) +STUB( + "+f1fr5DTJJ0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEptEv) +STUB( + "+f3mpQWp5pU", + _ZN3sce2Np9CppWebApi14SessionManager2V129GameSessionPushContextFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_22GameSessionPushContextEEE) +STUB("+f4NidpzOuI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEmmEv) +STUB("+f5+jFgsQMo", _ZN3sce7Toolkit2NP2V212ActivityFeed14PlayedWithFeedC2Ev) +STUB( + "+f7VqaR-ZMg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEE11release_refEv) +STUB("+fA-tpNvZNg", _ZN3sce2np12NpTitleTokenD1Ev) +STUB( + "+fEYdNgAuYo", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeAccountId2OnlineIdBatchC2Ev) +STUB( + "+fEvCdg9D9w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE7reserveEi) +STUB("+fGVLAT42G8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEC2ERKS7_) +STUB("+fMkDXxU9E0", + _ZN15AbstractStorage14StorageManager12NotifyRemoveERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) +STUB("+fN-IYYBqK4", _ZN3WTF11Persistence7Decoder6decodeERh) +STUB("+fOingBMo5A", UCNV_FROM_U_CALLBACK_STOP_59) +STUB("+fTKZiGqo8E", _ZNK7WebCore27TranslateTransformOperation5cloneEv) +STUB("+fWmgIg68kg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEC1EPS8_) +STUB("+fbGO9aoclw", _ZN7WebCore10XMLNSNames17xmlnsNamespaceURIE) +STUB("+feeFP8Y2+c", WKPageCanDelete) +STUB( + "+ffmW8Y1MMY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE4sizeEv) +STUB( + "+fjeqc-HNa0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE21intrusive_ptr_add_refEPS9_) +STUB("+fo47VU51qw", goby_ProcessMessage) +STUB("+fpgSfbPPeM", _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForReadD2Ev) +STUB("+fu-XeN7GQM", _ZN3sce2Np9CppWebApi11Matchmaking2V18Location18unsetGameSessionIdEv) +STUB( + "+fvZBj9zLNo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEEptEv) +STUB("+g+UP8Pyfmo", sceKernelGetProcessType) +STUB("+g0V0Clerbg", mono_metadata_parse_typedef_or_ref) +STUB("+gGhrs1m6ac", + _ZNK3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayer6toJsonERNS_4Json5ValueEb) +STUB( + "+gSMGXHgrPU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEneERKS9_) +STUB( + "+gVsgubDJyc", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE18getResponseHeadersERS7_) +STUB("+gWaO8tDgqM", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanityC2ERS5_) +STUB( + "+ghYAC0qFAM", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("+gjVDCDk604", g_locale_to_utf8) +STUB("+goJVfor624", _ZN3sce2Np9CppWebApi6Common18ResponseHeaderBase7destroyEPS3_) +STUB( + "+gpuhK6SW4I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEC2Ev) +STUB("+gy6TjYKbNE", rgctx_fetch_trampoline_rgctx_60_p) +STUB("+h+Yed9M-vc", rgctx_fetch_trampoline_rgctx_59) +STUB( + "+h-B9CYtwQc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEcvbEv) +STUB("+h5AoR4cUgc", sceCustomMusicCoreStartOperation2) +STUB( + "+h5pRzH4doQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "+hAReIGbWgw", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivitiesC2ERS6_) +STUB("+hBOLtYWNJo", _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSessionD2Ev) +STUB("+hDIeI+jHYs", _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession13getMaxPlayersEv) +STUB("+hFjyohmOU0", mincore) +STUB("+hHa4QYtLY8", _ZN3sce4Json5ValueC2EPKc) +STUB("+hJ84ojRt-g", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed13UsersWhoLikedEE3getEv) +STUB("+hKyaJJCE+0", _ZN3sce2np9HttpTrans11SendRequestEPNS0_6HandleEPKvm) +STUB("+hLkT-vIyQE", scePatchCheckerGetApplicableTick) +STUB("+hU1oroPrjI", mono_btls_pkcs12_add_cert) +STUB("+hWBSj-+bFI", _ZNK3sce2Np9CppWebApi7Matches2V15Error14getReferenceIdEv) +STUB("+hXITgeLM4s", __tsan_atomic64_fetch_add) +STUB("+hYSMjgDouo", _ZN12Mp4Retriever11skipBoxBodyEv) +STUB("+hYsagaV-Ug", _ZN3sce4Json6Object4PairC1ERKNS0_6StringERKNS0_5ValueE) +STUB( + "+hjXHfvy1Mg", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERd) +STUB( + "+hkBZG9Dg84", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEplEm) +STUB("+hl-bzB+Gd8", _ZN7WebCore23CoordinatedImageBacking23clearContentsTimerFiredEv) +STUB("+hlZqs-XpUM", _ZTVSt7_MpunctIwE) +STUB("+htBBgi85YA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEptEv) +STUB( + "+i+vXbqYQMo", + _ZN9Inspector20DOMBackendDispatcher16getSearchResultsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "+i2S1YEJPfU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEmmEi) +STUB("+i52DheCDGI", _ZN7WebCore9HTMLNames9ismapAttrE) +STUB("+i81FtUCarA", + _ZNKSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecPK2tmcc) +STUB( + "+iEDIKpUZ14", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEC1EPKS8_) +STUB( + "+iJarSumtxo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEEC2ERSA_) +STUB("+iK2h7082no", uregex_getMatchCallback_67) +STUB( + "+iL10n8I0mw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("+iLBOBrdx5A", WKNotificationCopyDir) +STUB("+iLdIVuhDhY", _ZNK7WebCore9FloatRect8containsERKS0_) +STUB("+iOUPKA+ckk", uprv_trunc_67) +STUB( + "+iPx2IddvEY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEED1Ev) +STUB("+iVwFsjXaFQ", sceKernelDebugGpuPaDebugIsInProgress) +STUB( + "+iXDFPESNGs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEC1ERS7_) +STUB("+iYaEuGvCwU", mono_aot_Sce_Vsh_GameCustomDatajit_code_end) +STUB("+ieBNKg1wAA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEEC2EPS6_) +STUB("+ievrHfHGsg", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V18Variable8setValueERKl) +STUB( + "+ij7tOPnsas", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEE7get_refEv) +STUB("+ip+qI1bBCg", ScePsmMonoRuntimeResourceLimit) +STUB("+ipcGv+FKsc", + _ZN7WebCore19JSHTMLSelectElement10putByIndexEPN3JSC6JSCellEPNS1_9ExecStateEjNS1_7JSValueEb) +STUB("+isUKw4zud4", _ZNK3sce4Json6Object8iteratorneERKS2_) +STUB( + "+itpx2nraRw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEEC2ERSA_) +STUB("+iy+BecyFVw", __atomic_load) +STUB("+j+lWGfh7jg", JVM_GetMethodAnnotations) +STUB( + "+j2LqgVLCNA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEneERKS9_) +STUB("+j2vIkVa2c4", mono_install_runtime_cleanup) +STUB("+j7kCGu+lk8", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product18unsetContentRatingEv) +STUB( + "+j8bZZo+fDA", + _ZN7WebCore28collectVaryingRequestHeadersERKNS_15ResourceRequestERKNS_16ResourceResponseEN3PAL9SessionIDE) +STUB("+jBdpELLGNA", _ZN3JSC8JSObject12getPrototypeEPS0_PNS_14JSGlobalObjectE) +STUB("+jG4wqqA8yg", + _ZN7WebCore20LegacySchemeRegistry33shouldTreatURLSchemeAsCORSEnabledERKN3WTF6StringE) +STUB( + "+jHsYmG5nS0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE7reserveEi) +STUB( + "+jJbuldpugk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("+jLvgfDA97c", _ZN7WebCore16MIMETypeRegistry12pdfMIMETypesEv) +STUB("+jSdAF6qTFc", _Z38sceGpuDebuggerSetEnabledExceptionsMaskPN3sce3Gnm16EsStageRegistersEj) +STUB("+jT+EakSFsc", _ZN3sce2Np9CppWebApi6Common6VectorIfEixEm) +STUB("+jVaKSG0nHk", sceShellCoreUtilExfatFormatExternalHdd) +STUB("+jXJrpWKok8", sceRnpsAppMgrHasEventForShellUI) +STUB("+ji7IBGwnCM", WKUserContentExtensionStoreRemove) +STUB("+jiief7TbqY", _ZN3sce7Toolkit2NP2V26Trophy16UnlockedTrophies5resetEv) +STUB( + "+jkovTjneII", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEmmEv) +STUB( + "+jn7gMdgfk4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE3endEv) +STUB("+jqQjsancTs", sceFontFtSupportFontFormats) +STUB( + "+jqwsobz5uo", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody25unsetTotalDataStatusCountEv) +STUB( + "+jrc3QdwcDQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE5beginEv) +STUB( + "+jukwHxATpA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE21intrusive_ptr_sub_refEPS9_) +STUB("+jvfakVKv7M", _ZN3JSC7Symbols29generatorFieldNextPrivateNameE) +STUB("+jwkB1yiTTs", mono_aot_Sce_Vsh_UpdateServiceWrapperplt_end) +STUB( + "+jwmj7nwZmw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEC1EPS6_PNS2_10LibContextE) +STUB( + "+jxVL+h5BfY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEED2Ev) +STUB( + "+jy8g-lyLfI", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions27unsetusePlayerSessionFilterEv) +STUB("+k+ScVKAlVA", _ZTSg) +STUB("+k2KKLVS+t8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEC1Ev) +STUB("+k3JGU-UUXo", _ZN9Inspector21InspectorRuntimeAgent6enableERN3WTF6StringE) +STUB("+k8qx70PRSQ", + _ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse12setAccountIdERKm) +STUB( + "+k8zhFsgbJs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEmmEv) +STUB("+k91hoTuoA8", sceAudioOut2SpeakerArrayCreate) +STUB( + "+kAOgY5fSVQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEEaSERSA_) +STUB("+kAtAhAVcd0", _ZNK3sce3Xml3Dom4Node13getAttributesEv) +STUB( + "+kE3dyEXHQQ", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi14getMatchDetailEiRKNS4_25ParameterToGetMatchDetailERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_22GetMatchDetailResponseEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("+kOB1+6k8W8", _ZN3WTF24numberToFixedWidthStringEdjPc) +STUB("+kSrjIVxKFE", sceAgcDcbPushMarker) +STUB("+kW1UpM9xfM", _Getint.digits) +STUB("+kX-CdbguB0", _ZN9Inspector31NetworkBackendDispatcherHandleraSERKS0_) +STUB( + "+kXmddRa2NA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE5clearEv) +STUB("+kcEDbbccxw", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getMixerPanFR) +STUB("+kd2qcTMvHE", u_getISOComment) +STUB( + "+keCNfFZs7s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEE7add_refEv) +STUB("+keSg8ay8cE", _ZN7WebCore19ResourceRequestBase17removeCredentialsEv) +STUB("+kg7++G48bw", sceSdmaTryFlush) +STUB( + "+ki7QmZMARQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEE11get_deleterEv) +STUB( + "+kjbl7NHIAs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEED1Ev) +STUB("+klL9ixWYfU", _ZN3JSC7Symbols24isConstructorPrivateNameE) +STUB( + "+kqR5l50dNE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEC1ERKS7_) +STUB("+kvyBGa+5VI", __subvdi3) +STUB( + "+kxUorOUoek", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEED1Ev) +STUB("+kxmonJFR9E", _ZN3sce7Toolkit2NP2V210Tournament10TeamMemberC1Ev) +STUB("+l36cFRiecE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEEaSERKS7_) +STUB( + "+l3AwDux9zA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("+l8O7HA9th8", ucal_getCanonicalTimeZoneID_59) +STUB("+lFez3Ggt08", mono_g_hash_table_print_stats) +STUB("+lFjA5nyqvw", shared_memory_area_create) +STUB("+lI9zCCS-HQ", WKPageSetCustomTextEncodingName) +STUB( + "+lKlTe92zGQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEED2Ev) +STUB( + "+lMcMsISmTk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEneERKS9_) +STUB("+lQd4updWBA", _ZTT25MmsFileUpdaterFsOperation) +STUB("+lUoUL6MQug", _ZN3sce7Toolkit2NP2V28Matching7Request9GetWorldsD1Ev) +STUB("+lZ1yHWEViw", sceVisionManagerRequestCalibrateStereoCamera) +STUB("+la07V7EES0", sceMbusRemoveHandle) +STUB("+lbk8RnyvmE", sceVideoOutSysSetOutputCsc) +STUB("+lhBbmohjCk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEE7add_refEv) +STUB( + "+ljJoKsr054", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE4sizeEv) +STUB("+ln-RjgMytM", _ZN12video_parser13cVideoPathMsvC2EPKc) +STUB("+lpzZ5UmZRc", _ZN3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResultsD1Ev) +STUB("+ltA+BngTHw", il2cpp_monitor_try_enter) +STUB( + "+lu4DQkZvA4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB("+lwLqZJLo3g", _ZN7WebCore27PlatformMediaSessionManager30stopAllMediaPlaybackForProcessEv) +STUB("+lxqIKeU9UY", sceNetCtlGetStateV6) +STUB( + "+m5FrOYFJFI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEE11release_refEv) +STUB("+m8+quqOwhM", pthread_mutexattr_getprioceiling) +STUB("+mD3sj5IeNc", _ZN3sce7Toolkit2NP2V29Messaging15GameDataMessage13MAX_SIZE_DATEE) +STUB( + "+mE7vfTOkM8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEE21intrusive_ptr_add_refEPS7_) +STUB("+mEF2auHNt4", WKPreferencesGetDoNotTrack) +STUB("+mHbyhPyBEk", _ZN23sceMetadataReaderWriter12_storageHostE) +STUB( + "+mM-xLVCkcc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "+mNIfzzoRkE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEdeEv) +STUB( + "+mP4vj45LdU", + _ZN7WebCore15ContextMenuItemC1ENS_17ContextMenuActionERKN3WTF6StringEbbRKNS2_6VectorIS0_Lm0ENS2_15CrashOnOverflowELm16EEE) +STUB("+mPswO7rxKs", sceFsInitMountSaveDataOpt) +STUB("+mS029ncrbo", _ZN7WebCore23ApplicationCacheStorage16originsWithCacheEv) +STUB( + "+mT7Rq9pPsc", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEED2Ev) +STUB( + "+mYy22Ucg7Y", + _ZThn16_N9Inspector21InspectorRuntimeAgent8evaluateERN3WTF6StringERKS2_PS4_PKbS8_PKiS8_S8_S8_S8_RNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISE_EEEERNS1_8OptionalIbEERNSJ_IiEE) +STUB( + "+mc7cY2Wfto", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("+mfO27a-bEY", sceFiosDeallocatePassthruFH) +STUB("+mfiY0Y3JFs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEaSERKS8_) +STUB( + "+mfwp5PhuMw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEeqERKS9_) +STUB("+mg7jP+Y3gA", mono_btls_x509_verify_param_add_host) +STUB( + "+mnA2xyOCls", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEE7add_refEv) +STUB( + "+mofzbqHLno", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEEC1Ev) +STUB( + "+mqMNir+w-w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEppEi) +STUB("+mqwb5ovwSc", __asan_alloca_poison) +STUB( + "+mrEsDl7lkY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEED2Ev) +STUB( + "+msmpthLwko", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEC2EPKS8_) +STUB("+mwnHP7Lou8", glGenTransformFeedbacks) +STUB( + "+mx9C7MCJAM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEE5resetEPS9_) +STUB("+my9jdHCMIQ", atol) +STUB( + "+myMhhaYunw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEED2Ev) +STUB("+n+DZ8DoR3w", _ZN3sce2Np9CppWebApi11Matchmaking2V127ListUserTicketsResponseBodyD1Ev) +STUB("+n3lKQc6mjk", mono_aot_Sce_Vshunbox_trampolines) +STUB( + "+n82oT6i68g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEED2Ev) +STUB( + "+nAxj3mRfss", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEppEi) +STUB( + "+nElDKisVKI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEC1EPS8_) +STUB("+nHWcLWOmb4", _ZNK7WebCore27TranslateTransformOperationeqERKNS_18TransformOperationE) +STUB("+nRJUD-7qCk", sceLncUtilLaunchApp) +STUB("+nSg5kHtXkg", + _ZN7WebCore9FrameView24forceLayoutForPaginationERKNS_9FloatSizeES3_fNS_19AdjustViewSizeOrNotE) +STUB( + "+nVe4sC7uYQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEE11release_refEv) +STUB("+nbc66Vtpf4", mono_aot_Sce_PlayStation_HighLevel_UI2unbox_trampoline_addresses) +STUB("+nc3IouJMEA", _ZN7WebCore11DisplayList11ClearShadowD1Ev) +STUB( + "+nczzAUfOfU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEC2EPNS2_10LibContextE) +STUB("+ndmq8LhAjA", _ZN7WebCore22EmptyFrameLoaderClient35dispatchDidChangeLocationWithinPageEv) +STUB("+nfHWFq9rhA", sceNpGriefReportCdTerm) +STUB("+njYrfW12hk", receive_descriptor) +STUB("+nmn+Z0nWDo", sceNpCloseEventFlag) +STUB( + "+nn6WT4aPKE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEaSERKS7_) +STUB( + "+nnHb4cBo7k", + _ZN3sce2Np9CppWebApi14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyD1Ev) +STUB("+nqbsw8hR9E", _ZN7WebCore26ActiveDOMCallbackMicrotaskD1Ev) +STUB("+nrEMsyYHiw", _ZNK7WebCore6Widget25convertFromContainingViewERKNS_8IntPointE) +STUB("+nvVOKrIjuY", + _ZN12video_parser13cVideoMetaVWG11getMetadataENS_12VP_META_TYPEEjjPNS_12VpMetadata_tE) +STUB("+nz1Vq-NrDA", sceNpWebApi2CreateMultipartRequest) +STUB( + "+o1pQSgCKlc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEED2Ev) +STUB("+o6ybgSDnBU", uprv_aestrncpy_67) +STUB("+o9816YQhqQ", sceNpWebApi2Initialize) +STUB( + "+oAdFlmRYqg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEC2Ev) +STUB("+oBEpBKDdb0", Java_java_net_PlainSocketImpl_socketAvailable) +STUB("+oCOy8+4at8", CA_MGMT_makeKeyBlobEx) +STUB( + "+oIEJl-pe1M", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("+oJHrfcyJJM", WKPreferencesGetLocalFileContentSniffingEnabled) +STUB( + "+oKFbYmGql8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "+oLz++X6COc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEaSERKS9_) +STUB( + "+oPcrGz8WCw", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEEiRNS2_10LibContextEPT_m) +STUB( + "+oUrdlkTqWI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "+oWkZiJQo5Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE5beginEv) +STUB( + "+oa52-JdNvU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB( + "+oc71GX+WvE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEEC2ERKS9_) +STUB("+odsSmWv4Pw", mono_aot_I18N_Rarejit_code_start) +STUB("+ofrEv1aAU0", sceKernelHwHasWlanBt) +STUB("+ogUg+FDENU", mono_btls_key_new) +STUB( + "+ogce9xBHJw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEmmEv) +STUB( + "+op83-kllL0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("+oqyRiwxW18", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession16setMaxSpectatorsERKi) +STUB("+orZm32HB1s", sceSaveDataSupportedFakeBrokenStatus) +STUB("+ovAafdG0O8", _ZNK7WebCore13HTTPHeaderMap12isolatedCopyEv) +STUB("+oxgA2SU4WU", _ZN7WebCore39globalObjectOutputConstraintSubspaceForERN3JSC2VME) +STUB( + "+p1cW9xUUwk", + _ZNK3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody15getJoinDisabledEv) +STUB( + "+p550iLNjTY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEptEv) +STUB("+p5Sgtw9Qr4", _ZNK7WebCore13ExtendedColor7cssTextEv) +STUB( + "+p8TZjRofb4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEC2EPS8_) +STUB( + "+p8tdDbiIug", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEEC1ERS9_) +STUB("+pC5kdXCovQ", _ZN4Manx11MediaPlayer12networkStateEv) +STUB("+pDyiHS3B0w", coil_dlsym) +STUB( + "+pICIYLYO18", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "+pVr5Ec0m4c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEppEi) +STUB("+pWGccNXto8", _ZN7WebCore22DefaultFilterOperationD0Ev) +STUB( + "+pXfsHz+TBM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE21intrusive_ptr_sub_refEPS7_) +STUB( + "+pdQbiDJ+n8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "+pevlKcdDss", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEaSERKS7_) +STUB( + "+pn0nPQHqn0", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEiRNS2_10LibContextEPT_m) +STUB( + "+pofwuSf42g", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE3endEv) +STUB("+ppwu+tEGVY", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V15Error16referenceIdIsSetEv) +STUB( + "+pt5Gh93hbo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEC2Ev) +STUB("+pzajmpyNmA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEC2ERKS7_) +STUB("+pze7u9PAcg", _ZN7WebCore10XLinkNames11arcroleAttrE) +STUB("+q-vrfWR3Dw", sceDebugGetProcessCoredumpHandlerEventInfo) +STUB( + "+q0CgShBObk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEC2Ev) +STUB("+q0GELad-mY", _ZN7WebCore4Page15setFooterHeightEi) +STUB( + "+q0SlgTRrMM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEppEi) +STUB("+q0quYSqGms", _ZN3sce2Np9CppWebApi6Common6VectorIfED1Ev) +STUB( + "+q6xNks71Uc", + _ZN3sce2Np9CppWebApi14SessionManager2V120ErrorResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_13ErrorResponseEEE) +STUB("+qAE4tRMrXk", sceUserServiceGetGlsLiveQuality4) +STUB("+qB+WcQlMio", _ZN3sce2np12WorkerThreadD2Ev) +STUB( + "+qEB0E-vvgA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEneERKS9_) +STUB( + "+qGUp9sbymk", + _ZN7WebCore22SocketStreamHandleImpl21platformSendHandshakeEPKhmRKSt8optionalINS_29CookieRequestHeaderFieldProxyEEON3WTF8FunctionIFvbbEEE) +STUB("+qJQUXbe-dw", mono_aot_Sce_Vsh_LncUtilWrapperunwind_info) +STUB("+qKS53qzWdA", _ZNSt16nested_exceptionD1Ev) +STUB("+qL6AAoZOmQ", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError16unsetReferenceIdEv) +STUB("+qLR-MW92Pc", mono_signature_is_instance) +STUB("+qN86nft0Qg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEEC2Ev) +STUB("+qOz8H8nK+w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEEC2EPKS6_) +STUB( + "+qX-m0JlHn0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEmmEi) +STUB("+qXuNlEFSRQ", _ZN7WebCore8JSDOMURL9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB( + "+qY3sJSzK7g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEC1EPKS8_) +STUB( + "+qaeC1TjgAU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEE7get_refEv) +STUB("+qitMEbkSWk", vsprintf_s) +STUB("+qsTbJFS86A", JSObjectSetPrivate) +STUB("+qso2nVwQzg", _ZTIPb) +STUB("+qt8rrlTA+A", _ZN3sce7Toolkit2NP2V211SharedMedia10BroadcastsC1Ev) +STUB("+qv1agOLjDo", _ZN3JSC7Symbols24isMapIteratorPrivateNameE) +STUB( + "+qvm5zEldmY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEdeEv) +STUB("+qzTqrJRBGU", _ZN7WebCore15DatabaseManager16hasOpenDatabasesERNS_22ScriptExecutionContextE) +STUB("+r+TJDA2yIM", _ZN7WebCore21ISOTrackEncryptionBoxC1Ev) +STUB("+r0UH41I1dI", _ZN7WebCore18PlatformTimeRangesnaEm) +STUB("+r0zCIliT6c", _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead14getMatchmakingEv) +STUB("+r1o-CUtFxE", sceUserServiceSetSaveDataAutoSync) +STUB("+r3rMFwItV4", sceKernelPread) +STUB( + "+r4GweKhd3s", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayeraSERS5_) +STUB("+r8OGkuL4dc", _ZN3JSC9Integrity22auditCellMinimallySlowERNS_2VMEPNS_6JSCellE) +STUB("+r8WvmR+-dA", mono_class_get_name) +STUB("+r8p7IuSAc0", _ZN3JSC7Symbols26mapIteratorNextPrivateNameE) +STUB("+rCIVcahwFM", mono_aot_I18N_CJKjit_code_start) +STUB("+rDYDewIzM8", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13integer8IsSetEv) +STUB("+rFA8ZR+qaI", _ZN9Inspector24TargetFrontendDispatchernwEm) +STUB("+rFNNNydbXc", _ZN3JSC7Symbols26promiseRejectedPrivateNameE) +STUB( + "+rIgoS-+bGk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE21intrusive_ptr_add_refEPS9_) +STUB("+rJnw2e9O+0", sceGnmRaiseUserExceptionEvent) +STUB("+rOJ-sya6ZE", _ZN3sce7Toolkit2NP15AppSTLAllocatorI16SceNpTusVariableE7addressERKS3_) +STUB("+rPvFDsPbXM", _ZNK7WebCore16HTMLImageElement13naturalHeightEv) +STUB("+rPzLhUKj1Y", sceNpPush2SetGlobalMutex) +STUB( + "+rRUTQIzAcs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEppEv) +STUB("+rSNKzU+aNQ", sceKernelSetDataTransferMode) +STUB("+rTA4ZdSh0c", _ZN3sce2np10JsonObjectC1EP14SceNpAllocator) +STUB("+rTePDtQ5H8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEC1Ev) +STUB( + "+rVL0oxCqWk", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getInteger9Ev) +STUB("+rVbFqON6Ac", lga_victim) +STUB("+rWFNYiNaEM", fstatfs) +STUB( + "+rWjmNf5G5E", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "+rZFBcVySak", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE21intrusive_ptr_sub_refEPS9_) +STUB("+rbcDPAYP74", uhash_compareUnicodeString_67) +STUB( + "+rc6cOmt5i8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEC2ERKS7_) +STUB("+rdLE8STNA8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEEC1Ev) +STUB( + "+rf+eWs9qcg", + _ZN3sce7Toolkit2NP2V27Session17consumeInvitationERKNS3_7Request17ConsumeInvitationEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB( + "+rfoz2FIYxM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("+rgRcVGXxGQ", + _ZN3sce2Np9CppWebApi14SessionManager2V132RequestPlayerSessionMemberPlayer16getNonPsnPlayersEv) +STUB("+rntji0DoNo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEC1Ev) +STUB( + "+rrb4eLe0UE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEppEi) +STUB( + "+rvdaw9ytQg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEEaSERS9_) +STUB( + "+s+8XyBd6Aw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("+s14jq-KGYw", sceNpUniversalDataSystemEventEstimateSize) +STUB("+s3t2WHT3Dw", _ZN3sce7Toolkit2NP19GetTitleFeedRequestC2Ev) +STUB( + "+s4wzsBb76A", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEeqERKS9_) +STUB("+s7Q-UbHJWI", sceAppInstUtilGetInsertedDiscRoleType) +STUB( + "+s7Uzb5sJp8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEC2EPS8_) +STUB("+sAja0b9rZU", sceFaceIdentifyLiteSimilarity) +STUB( + "+sHOx9rQMdw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE8pushBackERKS8_) +STUB( + "+sIKiU1erPE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEC2Ev) +STUB( + "+sJ9xrfuaUo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEEC2Ev) +STUB("+sRnW-xubno", _ZN3sce2np14JsonStringImplC2EP14SceNpAllocator) +STUB("+sUvE9LF80k", _ZN3JSC10LinkBuffer8linkCodeERNS_14MacroAssemblerENS_20JITCompilationEffortE) +STUB("+sWc+Z4PpGE", uprv_convertToLCIDPlatform) +STUB( + "+sXAhljWogM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEEptEv) +STUB("+sXvR1JH9Aw", sceVideoOutGetHdmiRawEdid_) +STUB( + "+sZeB+HElFU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEEaSERSA_) +STUB( + "+saNKEqKrds", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10setString1EPKc) +STUB("+scQA5stvjs", sceAppInstUtilAppInstallAll) +STUB("+seEJVlljr0", sceHmd2ReprojectionSetMirroringOption) +STUB( + "+seQdqAThVs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE7releaseEv) +STUB("+sgraKhw4QI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEEdeEv) +STUB("+sjw2JTZnz0", _ZN7bmalloc29StaticPerProcessStorageTraitsINS_9ScavengerEE7Storage8s_objectE) +STUB( + "+suTIBocuKA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEEC1EPS8_PNS2_10LibContextE) +STUB("+suuwfNT5Oc", WKNotificationPermissionRequestAllow) +STUB("+syPWxpxEm4", mono_shared_hashtable_set_type_funcs) +STUB("+t-MaTLADe4", _ZN7WebCore9FrameView11removeChildERNS_6WidgetE) +STUB( + "+t7+B91g07M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEEC2ERSA_) +STUB("+tB28CUr9W0", sceVideoOutGetStatusForWebcore) +STUB("+tCZrht05-k", mono_code_manager_reserve) +STUB( + "+tF4ZmJL8kQ", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V321MissingElementFactory7destroyEPNS3_14MissingElementE) +STUB( + "+tI5eaUWEoU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEC1Ev) +STUB("+tNIk5nUtYU", __start__Zfini) +STUB( + "+tNq66YUuwo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEppEv) +STUB("+tPsvYO70II", scePlayReadyEnvelopeClose) +STUB( + "+tUlIVde+jk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEC1Ev) +STUB( + "+tWzJKmrgbs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB( + "+teEN5uxG08", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE5clearEv) +STUB("+tfKv1vt0QQ", y0f) +STUB("+tg8J2mdzZo", _ZN3sce2Np9CppWebApi6Common18ResponseHeaderBaseC2Ev) +STUB("+tmOUU1VbUo", mono_aot_Sce_Vsh_Sl2_Sl2Commonplt_end) +STUB("+tmbgrmMLWI", mono_aot_System_Data_Services_Clientplt) +STUB( + "+tn6ODC5FvQ", + _ZN9Inspector24RuntimeBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) +STUB("+touqI6odec", _ZN4Manx8X509cinfC1EPv) +STUB("+tr2GnVDPXY", _ZN3sce7Toolkit2NP2V212NetworkUtils12BandwithInfoC1Ev) +STUB("+tuS+migTvI", _ZN3JSC2VM10ClientDataD1Ev) +STUB("+tyM95Aw07M", _ZNK7WebCore12RenderObject44hasNonEmptyVisibleRectRespectingParentFramesEv) +STUB("+u6dKSLWM2o", sceAgcDcbStallCommandBufferParserGetSize) +STUB( + "+u7bgdHEInM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEE11release_refEv) +STUB("+uCwAp6KYtQ", sceMusicPlayerServiceSetRepeatMode) +STUB( + "+uCy35P-Kqc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "+uIZy5EUBvg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEED1Ev) +STUB("+uKktfh+zD0", _ZN3JSC17JSArrayBufferView14finishCreationERNS_2VME) +STUB("+uKqBYnAudU", _ZN9Inspector14InspectorAgentC1ERNS_12AgentContextE) +STUB("+uMgWAoorVo", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_isPipPlayList) +STUB("+uPG7em0gCo", _ZN7WebCore11MathMLNames9fenceAttrE) +STUB("+uPwCGfmJHs", _ZNKSt7codecvtIDsc9_MbstatetE5do_inERS0_PKcS4_RS4_PDsS6_RS6_) +STUB("+uRH8ci2Zu8", WKPageGetIsControlledByAutomation) +STUB("+ugzaqpDezk", _ZN3JSC17FunctionOverrides18reinstallOverridesEv) +STUB("+uh2HHZWJ-Q", _ZN3sce7Toolkit2NP2V26Trophy15TrophyPackGroup5resetEv) +STUB( + "+uhZifdtCYA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB("+uigfKS2jic", uhash_igeti) +STUB("+uk5J35y6WQ", _ZN7WebCore13HTTPHeaderMap6removeENS_14HTTPHeaderNameE) +STUB( + "+ukiB9ByP2c", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEdeEv) +STUB( + "+ulnFt314sU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEE3getEv) +STUB("+unvwtv7Z38", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities14UserActivities12setAccountIdEPKc) +STUB("+uq-uCUNlhY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEED2Ev) +STUB( + "+urGVC1j7EM", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("+uuVOZnQbe4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament5EventEE3getEv) +STUB("+v+iV22WMQg", _ZN3sce2np13JsonDocParserC2EP14SceNpAllocatorPK7JsonDef) +STUB( + "+v-JkMQWpyg", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "+v1Qkiwue2k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEC2Ev) +STUB("+v4fVHMwFWc", sceNpPartyRegisterHandlerA) +STUB( + "+v4suNRK8TI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE7reserveEi) +STUB("+v53tgfW3vE", Java_sun_awt_GnmUtils_copyBackgroundToPrimaryPlane) +STUB("+v5V+l5LDK0", sceIduUtilIsRifInstalled) +STUB("+v5r0-k24j0", sceMatMemoryPoolReserve) +STUB("+v66TBg7tzA", FTA_Add_Module_type1) +STUB("+v9cFPEsHmM", rgctx_fetch_trampoline_rgctx_57_p) +STUB( + "+vCoGZv4mtI", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setInteger3ERKi) +STUB( + "+vCr9CiP+Z8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEEC1ERKSA_) +STUB("+vE3ZTcmgGE", ucnv_reset_67) +STUB( + "+vEgnxT07o0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("+vMV8r6ZHvo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEE3getEv) +STUB("+vQWu4q6j9Y", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlotD2Ev) +STUB( + "+vSkGCL5iPc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEEptEv) +STUB("+vUCUJKMSU8", _ZN3sce7Toolkit2NP2V23TUS19FriendsDataStatuses8deepCopyERKS4_) +STUB("+vYbN13ER6E", WKViewGetPageScaleFactor) +STUB("+vdnJZRFUEg", _ZNK7WebCore19ResourceRequestBase12httpReferrerEv) +STUB("+vlPLHD00To", + _ZN3sce7Toolkit2NP7NetInfo9Interface10getNetInfoEPNS1_9Utilities6FutureINS1_13NetStateBasicEEE) +STUB( + "+vlaiT1ac0k", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEneERKS9_) +STUB("+vprxe9e-wQ", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11ProductInfoEE7addressERS3_) +STUB("+vps3+8oLW8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEC2ERS7_) +STUB("+vtKpg7kaes", NET_Wait) +STUB( + "+vwPfmrTOdw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "+w1RaWTADqE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEC2EPKS8_) +STUB( + "+w28vJ7H-i4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE8capacityEv) +STUB( + "+w96w41RlV4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE21intrusive_ptr_add_refEPSA_) +STUB("+wCt7fCijgk", sceHttp2CreateTemplate) +STUB("+wHXWfgVJ8k", _ZNK7WebCore10ScrollView21unobscuredContentSizeEv) +STUB("+wKsYq75qr8", _ZN3sce7Toolkit2NP2V24Core11RequestBaseC2ENS3_11ServiceTypeENS3_12FunctionTypeE) +STUB( + "+wMM9GPml9s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE21intrusive_ptr_sub_refEPS6_) +STUB( + "+wPbnRNHnpU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEC2EPS8_) +STUB("+wTsGed5J9I", mono_code_manager_set_read_only) +STUB("+wU6CGuZcWk", sceUsbdHandleEventsTimeout) +STUB("+waQfICfHaw", sceNpManagerIntGetVshAccessTokenWithCheck) +STUB("+wd7ITlDmEM", _ZN3JSC22JSFinalizationRegistry9deadCountERKN3WTF6LockerINS_10JSCellLockEEE) +STUB("+wdURjqTtJ0", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_15RankInformationEED2Ev) +STUB("+wfGaVPJrrU", mono_btls_x509_store_ctx_up_ref) +STUB("+wgwEpgOGrA", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE5beginEv) +STUB("+wj27DzRPpo", __umoddi3) +STUB( + "+wqWHP00XP8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEdeEv) +STUB( + "+wu9vXn1yKA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEC2EPKS8_) +STUB("+ww+pcpOFNc", _ZNK3WTF6String12toUIntStrictEPbi) +STUB( + "+x+DZnthYzk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEED1Ev) +STUB("+x-wT-s5NXE", mono_class_get_field_token) +STUB("+x-ywEbOrJo", + _ZN3WTF20ParallelHelperClientC1EONS_6RefPtrINS_18ParallelHelperPoolENS_13DumbPtrTraitsIS2_EEEE) +STUB( + "+x2PP-Gbg8Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEC1EPKS8_) +STUB( + "+x5c86TxjHQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE21intrusive_ptr_add_refEPS9_) +STUB("+x6HLnoxm30", Java_sun_awt_GnmUtils_bdjbgCopyPlanes) +STUB("+xDaZ2rHLFY", _ZN7WebCore8Document27removeMediaCanStartListenerEPNS_21MediaCanStartListenerE) +STUB( + "+xIhrCgmUyo", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "+xMi7V4MWxs", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeOnlineId2AccountIdBatchC1ERS5_) +STUB("+xMyBXeSCYw", _ZNSt9basic_iosIcSt11char_traitsIcEE5clearEj) +STUB("+xOFHdelgrI", unumsys_openByName_67) +STUB("+xSBfYO4clQ", _ZN3sce7Toolkit2NP9Utilities6FutureI18SceNpTssDataStatusEC1Ev) +STUB("+xTyBH++3vE", GCC_except_table168) +STUB("+xU0WKT8mDc", isalpha) +STUB("+xYBFG96wpU", _ZN7WebCore17JSDOMGlobalObject12globalObjectEv) +STUB("+xdJWXA20fg", WKURLResponseCopySuggestedFilename) +STUB( + "+xeCX9g1Kh0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "+xm2UE8PlDw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEaSERS7_) +STUB("+xoGf-x7nJA", _Atomic_exchange_8) +STUB( + "+xq2Kb9oXsk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE4sizeEv) +STUB("+xsbcqOIJmM", u_austrcpy) +STUB("+xu2fWY3bcA", _ZN12video_parser7cVpUtil14GetRemainHeapGEv) +STUB("+xuDhxlWRPg", sceGnmSetupMipStatsReport) +STUB( + "+xuGabfX1NQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEeqERKS9_) +STUB("+xvhXA8Ci4E", _ZN3sce2np3ipc10IpmiClient7DestroyEv) +STUB("+xy70VTnR+c", YGNodeLayoutGetBorder) +STUB("+xy9ORMbd8U", sceKernelGetAppCategoryType) +STUB("+y-PtxQIHe4", YGNodeStyleGetAlignSelf) +STUB( + "+y6916Czy0A", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEptEv) +STUB("+y8HrQsogDk", _ZN3sce7Toolkit2NP2V26Trophy17TrophyPackSummaryaSERKS4_) +STUB( + "+yA2HeJZZFI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEE11release_refEv) +STUB("+yCldgPbdIU", scePatchCheckerSetFakeCache) +STUB( + "+yI0kbL2mFA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditions39setsetVariableWithConditionsRequestBodyENS1_6Common12IntrusivePtrINS3_36SetVariableWithConditionsRequestBodyEEE) +STUB("+yMOX81TeWE", _ZNK7WebCore11MediaPlayer13playerPrivateEv) +STUB("+yNC7DPGH2g", psl_builtin_outdated) +STUB("+yNEa4OFH1M", FT_Get_PS_Font_Private) +STUB( + "+yQD2fQl9-4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("+yQL0OwuFF0", _ZN7WebCore16HTMLInputElement14setValueAsDateEd) +STUB("+yRvWsESIkM", _ZN3JSC11ProxyObjectC1ERNS_2VMEPNS_9StructureE) +STUB("+yTSZX7HrfE", _ZN3sce7Toolkit2NP2V27Session7Request6CreateC2Ev) +STUB("+yTcUbxieO8", ures_hasNext) +STUB( + "+yVBybRxm+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB( + "+yYFhbRghyM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEptEv) +STUB( + "+yZs8-SQawY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEC2Ev) +STUB("+yk86kVEU9w", _ZN8meta_gen11MsvPromoter27convMediaTypeImageFromCodecEN9db_schema9CodecTypeE) +STUB("+ykQhkvCGEc", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats15reputationIsSetEv) +STUB("+yoOLVosR6Y", _ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEED2Ev) +STUB( + "+ypdzG3cEIk", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody15unsetMaxPlayersEv) +STUB("+ypzWWOJMwI", _ZN9Inspector22InspectorDebuggerAgentnwEmPv) +STUB("+yqjab2fUJA", sceNpRegisterPremiumEventCallback) +STUB("+yrOX7MgVlk", _ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE5_TidyEv) +STUB("+yrjAZcfIy0", mono_type_get_array_type) +STUB( + "+ysOoaWc9Vg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEC1EPS8_) +STUB("+ysk-pa6aOA", _ZN12video_parser5vpcom3rtc20FormatSQLiteDateTimeEPcmPKmc) +STUB("+yubXxUDqaw", rgctx_fetch_trampoline_rgctx_65) +STUB("+ywmZyVOmck", _ZN7WebCore11JSDOMWindow15setOpenDatabaseERN3JSC14JSGlobalObjectENS1_7JSValueE) +STUB("+z1N0FnR4Pc", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku8setLabelEPKc) +STUB("+z2ejY-8WLw", sceDebugGetSyncExclusiveWaiterList) +STUB("+z3kfOo91Pg", _ZN7bmalloc15IsoHeapImplBasenwEmPv) +STUB("+z4OJmFreZc", sceHmdSetupDialogTerminate) +STUB("+z6-FwD+tTk", + _ZNK7WebCore30InvertLightnessFilterOperation21inverseTransformColorERNS_5SRGBAIfEE) +STUB("+zB9xXLFJgU", _ZN7WebCore11DisplayList8FillPathD2Ev) +STUB("+zEuX9XSDPM", uspoof_setRestrictionLevel_67) +STUB("+zKDeetJAMk", _ZN7WebCore11JSDOMMatrixD1Ev) +STUB("+zL3nHNv5GU", _ZN3JSC17DebuggerCallFrame20positionForCallFrameERNS_2VMEPNS_9CallFrameE) +STUB("+zNZrJWp9X0", _ZN7WebCore10JSLocation7destroyEPN3JSC6JSCellE) +STUB("+zOpknn34cM", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEEptEv) +STUB("+zPRztSZLTg", _ZN3WTF24AutomaticThreadCondition6createEv) +STUB("+zPvzIiB+BU", sceHmdInternalSetVirtualDisplaySize) +STUB( + "+zTRQVZ7l7s", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEixEm) +STUB("+zXIIDGjUiA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE7popBackEv) +STUB("+zcWQg1vfHY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V113AttributeTypeEEeqERKS7_) +STUB("+zcmc-II57o", _ZN7CoreIPC10Connection40setDidCloseOnConnectionWorkQueueCallbackEPFvPS0_E) +STUB( + "+zdtyeSbRhg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEeqERKS9_) +STUB("+zffgsy7hRw", sceDebugTriggerCoredumpForSystem) +STUB("+zfvXbPVJT0", WKStringGetLength) +STUB("+zgfDoy4FcE", __asan_report_store16) +STUB("+zhBPmxiRGE", sceBgftServiceIntPlayGoResume) +STUB( + "+zi2IaVOez4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "+zj9t4Srzj8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB( + "+zjLGkS4VR8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB( + "+zlsO9+oYWk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEC2Ev) +STUB( + "+zq8Vl2Bm1c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEppEi) +STUB("+zuv20FsXrA", sceAppMessagingSendMsg) +STUB("-+3hY+y8bNo", sceSystemServiceLaunchWebBrowser) +STUB("-+7YODtoVLM", sceSysUtilSendSystemNotificationParamInit) +STUB("-+8sSDc61uU", glGetActiveUniformBlockiv) +STUB("-+9ekha4fN0", WKPluginInformationPageURLKey) +STUB("-+DMIKu3GMs", sceDeci4hDrfpFtruncate_fuse) +STUB("-+Hf1ZF5vAU", mono_aot_Sce_Vsh_Np_Managerplt) +STUB("-+OEPeIQhdI", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE5beginEv) +STUB("-+RKa3As0gE", _ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2Em) +STUB("-+WCYxsZJ9M", _ZN3sce7Toolkit2NP2V24Core7Request23ServerPushNotificationsC1Ev) +STUB( + "-+Xop6ZLTY0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEaSERS7_) +STUB( + "-+Z+rqZWDtk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "-+aln4gYmu0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE8capacityEv) +STUB("-+e9NvViaBc", _ZN7WebCore19JSDOMMatrixReadOnly9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB( + "-+ed6yGWSXs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEEaSERKS9_) +STUB("-+h1C78SdyU", sceLoginMgrServerSetUserStatus) +STUB("-+iCTJ8Ym9A", ucol_safeClone_67) +STUB("-+j9F1rPN9w", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEdeEv) +STUB("-+p7iGog1+0", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIfEC2EPKf) +STUB("-+uVnp5Aj3U", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEED1Ev) +STUB( + "-+valQgvuvg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "-+ws5-trex8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB("---AJBmrMQc", scePlayReadyReaderDecryptMultiple) +STUB("--2iRpRn5Bw", sceFiosFHStat) +STUB("--3LQVV+qcE", _ZN7WebCore21DiagnosticLoggingKeys29succeededMoreThan20SecondsKeyEv) +STUB("--C4AAhZMl4", _ZTVN7WebCore11DisplayList8DrawPathE) +STUB( + "--FHhD603Bs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEEC1ERKSA_) +STUB("--GQ9Ov+0mM", ures_close) +STUB("--I4Ml0ADxQ", sceDebugSetProcessEventCntlFlag) +STUB("--IZm4qJYRc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEC1Ev) +STUB("--JUIQmHuuQ", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEEC2Ev) +STUB("--KFYA4wtO4", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V110ReputationC2EPNS1_6Common10LibContextE) +STUB( + "--KpRjZ0YjI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEEC2ERKSA_) +STUB( + "--QQCSdy0IU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("--Xsx+0Xk+g", _ZN7CoreIPC10AttachmentC1Eim) +STUB("--fMWwCvo+c", _ZTSSt8bad_cast) +STUB( + "--ihNFy8i+8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEC2EPS6_PNS2_10LibContextE) +STUB("--jrY4SHfm8", scePadSetVrTrackingMode) +STUB("--ll-AgiK2M", _ULx86_64_set_reg) +STUB( + "--m82JWZOQk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE6resizeEj) +STUB("--naDrnhMiM", _ZN3sce7Toolkit2NP2V210Tournament17OfficialBroadCastaSERKS4_) +STUB("--qAxQ9Aed0", _ZN3sce3pss4core7imaging4Font31NotifySystemConfigurationChangeEv) +STUB( + "--sidFfU-X0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE5beginEv) +STUB("-0-p173hRjs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEE7add_refEv) +STUB("-00OAutAw+c", sceAudioOutGetInfo) +STUB("-01nbv5hWBQ", JVM_SuspendThread) +STUB("-09a6Ceb6Y0", _ZN3JSC16InternalFunctionC1ERNS_2VMEPNS_9StructureENS_14NativeFunctionES5_) +STUB("-0ETdbxl-Kg", WKBundleFrameHandlesPageScaleGesture) +STUB("-0FdPC78x7U", sceSysUtilSendTrcCheckNotificationRequest) +STUB( + "-0Id6XRd4Wo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEppEv) +STUB("-0IpmLJQ06A", _ZNK7WebCore17CSSPrimitiveValue12getRectValueEv) +STUB( + "-0JkmV4lwtg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEneERKS9_) +STUB( + "-0KYZ5rmACw", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayerC1ERS5_) +STUB( + "-0Kj9-HtxLc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "-0KudGXXWwU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEE7add_refEv) +STUB( + "-0Mbw-dNO6E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEC2Ev) +STUB( + "-0MfsOIYvqI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEC1EPKS8_) +STUB("-0T5Aq0Xews", sceDataTransferTargetRequestSendSsoOld2New) +STUB( + "-0Vv7HKZaBM", + _ZN3sce2Np9CppWebApi14SessionManager2V139RequestPlayerSessionMemberPlayerFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_32RequestCreatePlayerSessionPlayerEEEEEPNS9_INS3_32RequestPlayerSessionMemberPlayerEEE) +STUB( + "-0WdKXlJthM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEC1EPS7_PFvS9_EPNS2_10LibContextE) +STUB( + "-0X83q95LFs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEC2Ev) +STUB("-0c9TCTwnGs", sceCompanionHttpdRegisterRequestCallback2) +STUB( + "-0fS6SRYvJE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEC2Ev) +STUB( + "-0flJSipMpk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEE7get_refEv) +STUB( + "-0gCt-MxS5U", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeaders21intrusive_ptr_sub_refEPS5_) +STUB("-0gVe38p4Ow", _ZN7WebCore11JSDOMObjectC1EPN3JSC9StructureERNS1_14JSGlobalObjectE) +STUB( + "-0gcJ-eyXcw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEEcvbEv) +STUB("-0jDlM2hG5k", sceAudiodecCpuInternalDecode) +STUB( + "-0jW4lW++vo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEdeEv) +STUB( + "-0nVY+E4HbE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEEC1ERSA_) +STUB("-0nZw5IxZgA", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification18NewGameDataMessageEEC1Ev) +STUB( + "-0sh4cUML6A", + _ZN7WebCore8Document8evaluateERKN3WTF6StringERNS_4NodeEONS1_6RefPtrINS_15XPathNSResolverENS1_13DumbPtrTraitsIS8_EEEEtPNS_11XPathResultE) +STUB("-0wUiGX74GQ", sceHttp2WebSocketCreateRequest) +STUB("-0xr7Z4Hg34", uprv_decNumberCompareTotal_67) +STUB( + "-105oxNWvuE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("-11+UlGuM2c", _ZNK7WebCore9FrameView20documentToClientRectENS_9FloatRectE) +STUB("-13kJxPeWfs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEaSERS7_) +STUB( + "-14smWFvh7U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEC2EPKS8_) +STUB( + "-17Xp5C5rns", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE4sizeEv) +STUB("-1CenoQjRY4", _ZN7WebCore13HitTestResultD1Ev) +STUB( + "-1FYft+OEXI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEptEv) +STUB("-1G1iE3KyGI", _ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED0Ev) +STUB("-1Ie2Ai72es", _Z35scePlayGoDevGenerateKernelHashTablePPvPmS0_S1_) +STUB( + "-1Mtnce4ous", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEppEi) +STUB( + "-1OW95nK+EM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEEptEv) +STUB("-1PWHzoXWyU", _ZN15AbstractStorage6FolderD1Ev) +STUB("-1Qgg3W9FVM", _ZN3JSC22FullGCActivityCallbackD0Ev) +STUB("-1X3PhkFDT8", _ZN7WebCore21InspectorFrontendHost16disconnectClientEv) +STUB("-1kMwGA0+VU", _ZN3NTF17URLRequestJobImplC1Ev) +STUB( + "-1kRpFzenA8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEE7get_refEv) +STUB( + "-1lRptG6Lzg", + _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities17hasnpServiceLabelEv) +STUB( + "-1m9ME90DBs", + _ZN7WebCore18JSHTMLMediaElement6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_16HTMLMediaElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "-1phukGV9Eo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEE11get_deleterEv) +STUB( + "-1rM6XSHsi4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEeqERKS9_) +STUB( + "-1rpGp2Vt-I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("-1whCDzGK1E", sceFsErriGetState) +STUB( + "-1yeS-hZ+IQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEE3getEv) +STUB("-23vA2z+SXI", _ZNK12video_parser5vpcom8datetime8DateTime9FormatMsgEPwmPKw) +STUB("-28o1aT-xMs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEC1Ev) +STUB( + "-29bOHR1EE0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEppEi) +STUB("-2B4DKWlSTY", sceImeBackendGetConvertMode) +STUB("-2DPM-Lnzmw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEEC1EPKS6_) +STUB("-2H27wv-nyI", qr8) +STUB("-2HpFPXUzqw", WKPreferencesGetForceSoftwareWebGLRendering) +STUB("-2IRUCO--PM", sceKernelReadTsc) +STUB( + "-2PKRTzKePk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEE11get_deleterEv) +STUB("-2Q7HTUa7co", ucnv_setSubstChars_59) +STUB("-2Sz61GLFAg", _ZN7WebCore22SocketStreamHandleImplC1ERKNS_3URLERNS_24SocketStreamHandleClientE) +STUB("-2TYwZ4ERbM", _ZN3sce2np18HttpConnectionPoolC2EP16SceNpAllocatorEx) +STUB("-2WA7vdSzbI", sceVideoOutSysSetHdrScopeCallbacks) +STUB("-2WqB87KKGg", sceImeDialogSetPanelPosition) +STUB( + "-2Z+nVPlbEY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEC1EPKS8_) +STUB( + "-2a5LOIPD7k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEE7get_refEv) +STUB("-2b9nBoTdJ0", _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error7setPathEPKc) +STUB("-2dynZz+Xzc", + _ZN15AbstractStorage14FacebookFolderC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) +STUB( + "-2e-QLVbevU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB( + "-2fM3ouwRfQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("-2jUfVaMFXg", uregion_getNumericCode_67) +STUB( + "-2l3e-xiXFA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEC2EPKS8_) +STUB( + "-2nNDZfAulQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEE11release_refEv) +STUB("-2rnxRCeHMs", FT_Done_Size) +STUB("-2u6dpfO9UQ", mono_file_map) +STUB( + "-2vziWm6Ik8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEE11get_deleterEv) +STUB( + "-2w3x+dk850", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEE11release_refEv) +STUB("-3-X30Ozz8Q", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEED2Ev) +STUB("-37+rbkKv6k", _ZN3JSC7Symbols26setIteratorNextPrivateNameE) +STUB("-387nNWw32c", mono_class_get_method_from_name_flags) +STUB("-3GOtgegwhE", u_isprintPOSIX_67) +STUB( + "-3KK2fsp12w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEED2Ev) +STUB("-3KN5+5cUf8", sceUpsrvVerifySystemExBank) +STUB( + "-3LQaKSJ7to", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEED2Ev) +STUB( + "-3M40YWmnWI", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsers35hasxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB("-3QYeOfEAC8", JVM_MaxMemory) +STUB( + "-3QlplwQP5E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEEC1ERKSA_) +STUB("-3SHNzyp1hw", _ZN3sce7Toolkit2NP2V210Tournament7BracketC1ERKS4_) +STUB("-3UvpBs-26g", _ZN3sce2np4PathD1Ev) +STUB( + "-3UzS9Z52PE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC2ERKS8_) +STUB( + "-3WHiyFkkDQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEED2Ev) +STUB("-3XZEzt2lqM", _Ux86_64_setcontext) +STUB("-3Y5GO+-i78", sceUserServiceGetAccessibilityTriggerEffect) +STUB("-3ZujD7JX9c", _Atomic_is_lock_free_8) +STUB("-3du2K3HvYg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEE5resetEPS6_) +STUB( + "-3eLhJ-5zVE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("-3gV5N2u-sc", _ZN3sce2np6Thread4dtorEv) +STUB("-3moAnxKYkc", sceLncUtilNotifyVshReady) +STUB( + "-3nPQTGIOfw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEE11get_deleterEv) +STUB( + "-3nWFuiGh7k", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEeqERKS9_) +STUB("-3nj+K1elI0", _execve) +STUB("-3pU5y1utmI", _FExp) +STUB( + "-3r-3Gejvus", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "-3rmbd14uBI", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB( + "-3x7+wyZpEU", + _ZN9Inspector20DOMBackendDispatcher13performSearchElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("-3z5TtOaEkg", mono_property_get_value) +STUB( + "-4-IVnD7yl0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE5beginEv) +STUB("-40Pfth8mqE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE3endEv) +STUB("-431A-YBAks", llrint) +STUB( + "-464OnBCer0", + _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody6toJsonERNS_4Json5ValueEb) +STUB("-4GCfYdNF1s", sceImeUpdate) +STUB( + "-4KIDH4cF1U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEixEm) +STUB("-4KVgXHGMdw", png_set_expand) +STUB("-4KqTP5gW3o", _ZN12video_parser13cVideoPathM4v11sExtentListE) +STUB("-4M0K8nGdfk", _ZN3JSC2VM14sharedInstanceEv) +STUB( + "-4TFyIn+vS8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "-4V6uZ4NF5A", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V124NatConnectivityToMetrics6toJsonERNS_4Json5ValueEb) +STUB("-4XiNpIGIH4", _ZN7WebCore9HTMLNames20onlanguagechangeAttrE) +STUB("-4XoQ+IELOI", mono_aot_Sce_Vsh_UpdateServiceWrapperjit_code_start) +STUB( + "-4XxzWyNzAU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEppEi) +STUB( + "-4a57BwnH8A", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEED0Ev) +STUB("-4bVzdiOKDc", monoeg_g_array_append_vals) +STUB("-4dhc9m-vfs", ucptrie_getRange) +STUB( + "-4gYZWOJ5xM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEaSERS8_) +STUB( + "-4jsoWj40-g", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Runtime20ExecutionContextTypeEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB("-4kr-v21vjc", sceShareUtilityOpenShareMenuBroadcast) +STUB( + "-4myqm13mfY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE8capacityEv) +STUB("-4nCkJB-Wpk", glUniform2ui) +STUB("-4ooC3j97DQ", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching5RoomsEED2Ev) +STUB( + "-4qn5SHAuoQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE3endEv) +STUB( + "-4sVkp5-H-M", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_4Page16CoordinateSystemEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB( + "-4tfOCBqOek", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE8copyFromERKS7_) +STUB("-4xfEZanOFg", sceUlpMgrSaveConnectionInfoList) +STUB("-4yJ1w7Q9bs", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody8setValueERKl) +STUB("-5+Q0JbK9fo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEaSERS7_) +STUB("-5-FRgo13Ls", _ZN3JSC7Symbols29derivedConstructorPrivateNameE) +STUB( + "-55w8wkCb+4", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionProperties12setsessionIdEPKc) +STUB("-5EyyprE34M", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt6vectorI16SceNpTusVariableNS2_IS4_EEEEC2ERKS7_) +STUB("-5HxLphGKT0", _ZN3sce7Toolkit2NP2V26Trophy7Request19GetUnlockedTrophiesC2Ev) +STUB("-5IaOJ4dKU4", _ZN3sce7Toolkit2NP22ProductListInputParamsC2Ev) +STUB( + "-5OW0RP9cws", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEppEv) +STUB( + "-5PsLtaBIPQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEEC1ERKSA_) +STUB("-5U4hPxdBOo", ucnv_flushCache_67) +STUB( + "-5UZTOxnil8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE7reserveEi) +STUB( + "-5VHnRIYXmc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "-5bKeSMgJmo", + _ZN7WebCore11DisplayList25DrawDotsForDocumentMarkerC1ERKNS_9FloatRectENS_23DocumentMarkerLineStyleE) +STUB( + "-5budpPgP8o", + _ZN9Inspector23TargetBackendDispatcher15setPauseOnStartElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("-5cV-3bxnS4", _ZN7WebCore26CustomElementReactionStack12processQueueEPN3JSC14JSGlobalObjectE) +STUB("-5kyhgJ8jtA", sceFsUfsCollectTelemetry) +STUB( + "-5lut1s8xsI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "-5qxkXnrlzQ", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("-5tkRElgDxY", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_23NpSessionInvitationInfoEEC1ERKS4_) +STUB("-5xLBHcLnNk", _ZNK7WebCore10MouseEvent11fromElementEv) +STUB("-5y2uJ62qS8", sceRtcTickAddYears) +STUB("-60GtomjSXQ", u_uastrcpy_67) +STUB("-60wFf6p8c0", sceVdecwrapQueryFrameBufferInfo) +STUB( + "-676DS1zNws", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEppEi) +STUB("-67rxYq1qZo", WKBundleSetWebNotificationPermission) +STUB("-69D4t3LLHE", _ZNK3JSC8Profiler8Database6toJSONEv) +STUB( + "-69cEV5hHxE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("-6FjKlMA+Yc", sceHmdInternalSocialScreenSetOutput) +STUB( + "-6ZCz5jKYD0", + _ZN7WebCore21NetworkStorageSession25deleteCookiesForHostnamesERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEENS_22IncludeHttpOnlyCookiesE) +STUB( + "-6ZToEMzgdY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEC2EPS6_PNS2_10LibContextE) +STUB("-6c3gTtoWss", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE3endEv) +STUB("-6d4SdGQUk0", mono_aot_Sce_Vsh_Webbrowser_XdbWrapperunwind_info) +STUB("-6dHxuyIr7A", sceBgftServiceIntPlayGoFindTaskId) +STUB("-6fHtBCBprM", _ZN7WebCore33signedPublicKeyAndChallengeStringEjRKN3WTF6StringERKNS0_3URLE) +STUB("-6iS7eTWvCs", _ZN3sce7Toolkit2NP2V210Tournament27TeamVsTeamTournamentDetails5resetEv) +STUB( + "-6j5W94wjUI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEEaSERKSA_) +STUB("-6jvnhfdlpw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEC2ERKS7_) +STUB( + "-6m7qgGahMo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "-6rae2T63PM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEC1Ev) +STUB("-6srIGbLTIU", scePngDecQueryMemorySize) +STUB( + "-6wmwBiW4wo", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB( + "-6xcENl4w+s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEED1Ev) +STUB("-6y9xOBC+eE", _ZN3sce7Toolkit2NP2V27Session14SessionDetailsC1Ev) +STUB("-7+EcozzUoU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEEaSERKS7_) +STUB( + "-7+F6Bm7EiU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEptEv) +STUB( + "-79VoK8qkmM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEED2Ev) +STUB( + "-7A9qfZj08o", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser8getlimitEv) +STUB("-7FHWVgAqME", _ZN7WebCore11PageOverlay8setFrameENS_7IntRectE) +STUB("-7Gi8U+26XU", + _ZN15AbstractStorage14TwitterContentC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) +STUB( + "-7HDDUtcfKk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE7popBackEv) +STUB( + "-7PLiks2JRI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEneERKS9_) +STUB("-7WoJAydNM8", _ZN3WTF16AtomicStringImpl6lookUpEPKhj) +STUB("-7XgCmEwKrs", sceUserServiceIsSharePlayClientUser) +STUB("-7c7thUsi1c", _ZTSPKd) +STUB("-7d2AWzYgDw", _ZNK7WebCore23ISOSchemeInformationBox18schemeSpecificDataEv) +STUB( + "-7g-5LVkStM", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Console14ConsoleMessage5LevelEEEN3WTF8OptionalIT_EERKNS6_6StringE) +STUB("-7jGuQtigu4", sceNpUniversalDataSystemIntPostRecordData) +STUB("-7nRJFXMxnM", fputws) +STUB("-7o1DYzaSuU", sceAppInstUtilAppUpdateStartTime) +STUB("-7ovXt8hp6g", sceSpPthreadCreate) +STUB( + "-7pubcJdofw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEixEm) +STUB("-7u-WG3kX3U", _ZN3JSC22resetSuperSamplerStateEv) +STUB("-7vr7t-uto8", _Atomic_thread_fence) +STUB("-7zMNJ1Ap1c", sceSystemServiceActivateMpeg2Start) +STUB("-81RLqhFHkU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEE7get_refEv) +STUB( + "-84vpXUUrt4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE5beginEv) +STUB( + "-86LifOC3mE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEppEv) +STUB("-88a0S7jbwQ", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData10getifMatchEv) +STUB("-8ArXjBU6qg", sceDtcpIpInit) +STUB("-8B8yCnaar4", WKContextSetUserID) +STUB("-8F1G4H0uQk", mono_metadata_encode_value) +STUB( + "-8GWMo03sLw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEixEm) +STUB("-8Jm4zqdPMs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEC1Ev) +STUB( + "-8P59RslYj0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEE3getEv) +STUB("-8WieNm9NTk", _ZN3sce7Toolkit2NP9Utilities6FutureI24SceNpBandwidthTestResultEC1Ev) +STUB("-8Wn4YKZLMM", sceNpAppLaunchLinkIntDestroyRequest) +STUB("-8a1RvBia1Q", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEE7add_refEv) +STUB( + "-8m+pLswdLY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEEcvbEv) +STUB("-8m12oaxsQc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEE3getEv) +STUB("-8piaVtO-jA", _ZN3sce7Toolkit2NP2V212NetworkUtils12Notification14NetStateChangeC2ERKS5_) +STUB( + "-8qw7HxnQJk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEC1EPKS8_) +STUB("-8rPOnonqLI", ustr_hashUCharsN) +STUB("-8t2aEtFws4", hb_font_destroy) +STUB("-8xVXHwp29w", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE4sizeEv) +STUB( + "-8yb-0BQ44I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("-91vFSqiuKw", _ZN3sce2np8WorkItem11SetFinishedEi) +STUB( + "-946JD1-ohw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEC1Ev) +STUB("-952YwDLV-s", monoeg_g_hash_table_iter_init) +STUB("-9BHlFnLjVg", png_set_packing) +STUB("-9HwgkIuyI0", mspace_malloc_stats_fast) +STUB( + "-9I6TUXnd60", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("-9LLVU0uvs8", sceNpTrophy2GetTrophyIcon) +STUB("-9LzYPdangA", sceSystemServiceActivateHevcGetStatus) +STUB("-9MiRhfacoI", il2cpp_class_get_method_from_name) +STUB( + "-9RXQTWj3fE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEE11get_deleterEv) +STUB("-9SIhUr4Iuo", _Mbtowcx) +STUB("-9SPyZbLwdc", _ZN3JSC7JSProxy9setTargetERNS_2VMEPNS_14JSGlobalObjectE) +STUB( + "-9VjsqXEZtk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEppEi) +STUB("-9cU3y6rXVM", _ZN3sce2np9WorkQueue17ProcFinishedItemsENS0_14WorkItemStatusE) +STUB("-9djWj1NU4E", sceShellCoreUtilSetUserFocus) +STUB( + "-9eTwSxhjhE", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("-9fu+83KrCA", + _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product31unsetContentInteractiveElementsEv) +STUB( + "-9l+zDjMaes", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEED1Ev) +STUB( + "-9lkf5nR23I", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEmmEi) +STUB("-9mkDudN5yw", _ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead21unsetPlayerAttributesEv) +STUB( + "-9pKo2bGAuA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE21intrusive_ptr_sub_refEPS7_) +STUB("-9r9XEuzsPE", rgctx_fetch_trampoline_mrgctx_43) +STUB("-9rpiBpO0+c", _ZNK7WebCore11MediaPlayer12getStartDateEv) +STUB( + "-9uTmN54rUg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEE7get_refEv) +STUB("-A+fyFC4L5c", _ZN3JSC7Symbols22reduceRightPrivateNameE) +STUB("-A-OQrmE53U", __asan_report_load1_noabort) +STUB("-A0EiAdM3tI", _ZN3sce7Toolkit2NP2V26Trophy7Request6UnlockD1Ev) +STUB("-A2RJyUr950", udtitvfmt_formatToResult_67) +STUB("-A7WrRrcyhc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEC2ERKS7_) +STUB("-AAl2ff+PAQ", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities13ErrorResponseC1EPNS1_6Common10LibContextE) +STUB("-AH3C+cYjsY", _ZN12video_parser13cVideoMetaVWG14getArtworkInfoEjPNS_18VpThumbnailInfo_t_E) +STUB("-ALNQpKAAMw", __asan_exp_storeN) +STUB( + "-AXvG7Eimo4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE21intrusive_ptr_sub_refEPS9_) +STUB("-AYJga7O56c", sceCesUhcToUtf16) +STUB("-AeE58GkM+Q", FT_Bitmap_New) +STUB("-Afi-JoRZ-U", sceNpServiceChecker2IntInitialize) +STUB("-AmYlACOriA", _ZN3sce3Xml3Dom6NodeIdneEi) +STUB("-Apk7yibRiQ", _ZN7WebCore7Element21offsetLeftForBindingsEv) +STUB( + "-ArLCO0NUW4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEED1Ev) +STUB("-AuznSOJ2AQ", _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse15getInGameRosterEv) +STUB("-B0M+7o4v9A", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessionsD2Ev) +STUB( + "-B0YkjtFOkA", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB("-B0q-hW9Suw", _ZN7WebCore9HTMLNames13pluginurlAttrE) +STUB("-B36vcnugc0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEED2Ev) +STUB( + "-B39pdry+hY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE10setContextEPNS2_10LibContextE) +STUB("-B76wP6IeVA", scanf_s) +STUB("-B7ibBUo4ds", mono_bitset_mem_new) +STUB("-BFUCKzy5ts", + _ZN7WebCore21UserContentController21removeUserStyleSheetsERNS_15DOMWrapperWorldE) +STUB( + "-BFwu1jJDVQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEC1Ev) +STUB("-BH+f7FpecY", sceLibSecureCryptographyGenerateKey) +STUB( + "-BHDsmPQazQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEC2ERKS7_) +STUB("-BIaTg4za58", _ZN3sce7Toolkit2NP2V28Matching7Request11SearchRoomsC1Ev) +STUB("-BJ6og-w7Ho", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEE3getEv) +STUB("-BOOjYGTWcA", WKInspectorIsDebuggingJavaScript) +STUB("-BPcEQ1w8xc", sceRemoteplaySetRpMode) +STUB( + "-BQHV7+qO7E", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEEiRNS2_10LibContextEPT_m) +STUB("-BReK8o1vzQ", sceDtcpIpRemoveHeader) +STUB("-BSR+UeNT3k", _ZNK3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead6toJsonERNS_4Json5ValueEb) +STUB("-BTiWtwKno8", JVM_IsPrimitiveClass) +STUB( + "-BW7cT3I30g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEE5resetEPS6_) +STUB("-BdMRUAeZRo", sceFsLvdDisableLayer) +STUB( + "-BekXrmBT9U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("-BgzebSMaVY", _ZN3sce2npeqERKNS0_4UserES3_) +STUB( + "-BitQtTAuDw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("-Bj2snOkWCw", mono_aot_Sce_Vsh_Orbis_ContentManagerunbox_trampolines) +STUB("-BjZzTTOnXs", utext_equals) +STUB("-Bl9-SZ2noc", _ZNSt6_WinitC1Ev) +STUB( + "-BqFJfMo0R0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEE11get_deleterEv) +STUB("-BtM3AmrJRc", _ZN3sce7Toolkit2NP2V23TUS12TusVariables5resetEv) +STUB("-BwLPxElT7U", _LFpcomp) +STUB( + "-Bwvuu68MZo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE5beginEv) +STUB( + "-BxhN2aIUis", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEmmEi) +STUB( + "-BzmMBJg-vc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEEC2ERSA_) +STUB( + "-C0uYMuE+2k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEC2Ev) +STUB("-C2nkoEYOnU", sceHmd2ReprojectionQueryDisplayBufferSizeAlign) +STUB("-C72geQPSLg", _ZN3WTF18loggerObserverLockE) +STUB("-C80KCoJ72g", _ZN7WebCore28convertToIntegerEnforceRangeIlEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB( + "-CBdUCEoajM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEC1EPS6_PNS2_10LibContextE) +STUB( + "-CFH7UJUam4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEptEv) +STUB("-CIap3MsUMg", unorm2_normalizeSecondAndAppend_67) +STUB( + "-CPnCpxvKB0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "-CUwqF53QR0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "-CZ9m6RjuZc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEE11get_deleterEv) +STUB("-Caws0X3+bY", sceSystemGestureDebugGetVersion) +STUB( + "-CcvqrtdT84", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEEaSERSA_) +STUB("-CdmI7pz6Uk", WKPreferencesSetFullScreenEnabled) +STUB("-CqfrStPZ4s", _ZNK3sce2Np9CppWebApi6Common8IteratorIdEdeEv) +STUB( + "-CsJzdsf8W8", + _ZN7WebCore11HistoryItem14setStateObjectEON3WTF6RefPtrINS_21SerializedScriptValueENS1_13DumbPtrTraitsIS3_EEEE) +STUB( + "-CtMTRoDtmk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEplEm) +STUB("-CyF1XyqmaQ", glGetIntegerv) +STUB("-CyKFkZr9Yg", + _ZN3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayerC1EPNS1_6Common10LibContextE) +STUB("-D-Dsk4CZXA", _ZN7WebCore29SQLiteStatementAutoResetScopeD1Ev) +STUB( + "-D3cN2on72c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEEC1Ev) +STUB("-D3elCoeE5I", _ZN7WebCore9HTMLNames22onaccessibleselectAttrE) +STUB("-D8MD+5yuAw", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanity9terminateEv) +STUB( + "-DCI8BvQVpk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEE5resetEPS7_) +STUB("-DDelvzvDI4", _ZN7WebCore22startOfEditableContentERKNS_15VisiblePositionE) +STUB("-DDmi3EClBw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEptEv) +STUB( + "-DG+cSNIXSk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE8pushBackERKS8_) +STUB( + "-DHemZ+GUvg", + _ZN7WebCore20SharedBufferDataViewC2EON3WTF3RefINS_12SharedBuffer11DataSegmentENS1_13DumbPtrTraitsIS4_EEEEm) +STUB("-DI2WTqsG-4", _ZN12video_parser7cVpUtil22vp_ff4_fopen_by_threadEPKcPPvj) +STUB("-DPCcU5HzAo", _Z30receiveIpmiInvokeSyncMethodResiPiPN4IPMI10BufferInfoEjb) +STUB( + "-DdEXSgPW5Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE5emptyEv) +STUB("-DgOHVa0P38", monoeg_g_timer_new) +STUB("-DhgFoWE1Cc", _ZN7WebCore9HTMLNames6dirTagE) +STUB("-DkBYjZsGlM", mono_aot_System_Net_Httpunbox_trampoline_addresses) +STUB("-Ds-S0orwk4", _ZN7WebCore23CoordinatedImageBacking6updateEv) +STUB( + "-DstrxUTZVU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE8copyFromERKS9_) +STUB("-DtvmQ-tgEA", sceAgcSetSubmitMode) +STUB( + "-DuBF88-AY4", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("-E+Gkzlo76c", ucnv_bld_countAvailableConverters_67) +STUB("-E2SeffYXf0", _ZNK7WebCore9FrameTree4findERKN3WTF12AtomicStringE) +STUB( + "-E4iyAZ8zRw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEEC1ERKSA_) +STUB("-EHnU68gExU", sceGameLiveStreamingPermitServerSideRecording) +STUB("-EHslebchJ4", mono_aot_Sce_Vsh_Accessor_Db_Notifyunbox_trampolines) +STUB("-EL6-8BIXf4", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi21ParameterToLeaveMatchC1Ev) +STUB("-EPy2jtb0yE", logF_tail) +STUB( + "-EQdqepiKIg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEE7add_refEv) +STUB( + "-ETC+3ENM0Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE4sizeEv) +STUB("-EWXk2g99YI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE5clearEv) +STUB("-EgDt569OVo", _Atomic_exchange_4) +STUB("-EgSegeAKl4", _ZNSt6locale5facet7_IncrefEv) +STUB("-EneZpqt2T0", sceMouseSetProcessFocus) +STUB("-Eo3c03tfXk", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEEC2Ev) +STUB( + "-EtATSNUGfg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEEaSERSA_) +STUB("-EuV4+PBwlE", _ZN3WTF18asciiCaseFoldTableE) +STUB("-F3z0DF32Fw", _ZNK3WTF8JSONImpl9ArrayBase3endEv) +STUB("-F6NddfUsa4", sceSharePlayStartStandby) +STUB("-FAGPVzSjV4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12RoomPingTimeEED1Ev) +STUB( + "-FCtQygQIjs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEED1Ev) +STUB("-FDKcrJmdZs", monoeg_g_array_new) +STUB("-FDuN-QPtQc", _ZN7WebCore4BlobC1EPNS_22ScriptExecutionContextE) +STUB("-FEaAphpqc8", _ZN3sce7Toolkit2NP26TusAddAndGetVarInputParamsC1Ev) +STUB("-FIshKbdFRU", sceCesBig5ToUtf32le) +STUB("-FKZylBFj8Y", _ZN15AbstractStorage11LocalFolderD2Ev) +STUB( + "-FL-1JvDZTM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("-FPD5Ii-bXA", mono_aot_I18N_Otherunbox_trampolines) +STUB( + "-FX5i7tNaDw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEED1Ev) +STUB("-Fbe0dpEgBc", mono_aot_Sce_Facebook_CSSLayoutmethod_addresses) +STUB("-Fbhc5T-vIA", sceLncUtilGetVideoFinalizeState) +STUB( + "-FsfwKx9Oqo", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129ConnectionQualityWiredMetrics17setPacketLossRateERKi) +STUB("-FwGo9dtzKY", _ZN7WebCore21WebKitFontFamilyNames4initEv) +STUB( + "-FweycaUu64", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V232WebApiErrorResponse_errorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_25WebApiErrorResponse_errorEEE) +STUB("-FwfB5G9ztg", curl_formadd) +STUB( + "-FwfsUYAVcc", + _ZN3JSC13RuntimeMethod6createEPNS_14JSGlobalObjectES2_PNS_9StructureERKN3WTF6StringEPNS_8Bindings6MethodE) +STUB( + "-G+2nwDM4jY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB("-G-2WJkcuKU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE8pushBackERKS6_) +STUB("-G1ivTvs2mU", + _ZN9Inspector14InspectorAgent29willDestroyFrontendAndBackendENS_16DisconnectReasonE) +STUB("-G3iVvLKzI4", llvm_resume_unwind_trampoline_p) +STUB( + "-G7enOFstJc", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB( + "-GAJtFq3z+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEE11release_refEv) +STUB("-GErxL9jBFc", Java_java_util_zip_Inflater_getBytesRead) +STUB( + "-GMb3vk9l20", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEmmEi) +STUB("-GPFiqyNa4s", _ZN4Manx13WorkQueueImpl5TimerC2EPNS_9WorkQueue8FunctionE) +STUB("-GQkEcaeblI", sceCesRefersUcsProfileKoi8R) +STUB("-GVEj2QODEI", _Atomic_fetch_xor_4) +STUB("-GYplHDTVHY", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification11RefreshRoomEED2Ev) +STUB( + "-Gf28NDtCGQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEEC1ERSA_) +STUB( + "-Gg2vtudAR4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE8capacityEv) +STUB("-Gl-h+vKl14", _ZN7WebCore11MediaPlayer10setVisibleEb) +STUB("-Gs4mL5SRp8", umsg_setLocale_67) +STUB("-GvBqz54ssU", sceUsbStorageGetDeviceInfo) +STUB( + "-H0Qm52uHi4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlotC1ERS5_) +STUB("-H2CstHudSI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEED2Ev) +STUB("-H3UwGQvNZI", sceCameraGetDeviceIDWithoutOpen) +STUB( + "-HALg5kZSl8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEixEm) +STUB("-HAzeV7vL-Q", glCheckFramebufferStatus) +STUB( + "-HEdW4hWFGw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEC2ERS7_) +STUB("-HH5Om7MHIQ", scePssCAudSetSurroundPan) +STUB("-HIO4VT87v8", sceHttp2SetConnectTimeOut) +STUB("-HIZUuTVyFw", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEEppEv) +STUB("-HJUy5ec9GQ", Java_java_lang_StrictMath_asin) +STUB( + "-HKqt1qNdwo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEC2Ev) +STUB("-HNrydWB0EE", Java_com_sony_bdjstack_system_BDJModule_prepareTitle__I) +STUB("-HOOCn0JY48", sceAgcDcbSetShRegistersIndirect) +STUB( + "-HPlUFHYUo8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE4sizeEv) +STUB( + "-HW5WP0O1gY", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEEiRNS2_10LibContextEPT_m) +STUB("-HXv2nr0jQY", _ZN7WebCore26HTMLTextFormControlElement12setRangeTextERKN3WTF6StringEjjS4_) +STUB( + "-HXxkKULPnM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEED1Ev) +STUB("-HYD6ysDUts", _ZN9Inspector22RemoteInspectionTarget34pauseWaitingForAutomaticInspectionEv) +STUB("-Hc6XkAq-eU", ubrk_close) +STUB("-HdxnFZtWew", _ZN3sce2Np9CppWebApi14SessionManager2V16Friend17getPlayerSessionsEv) +STUB("-Hjp76WP2tg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEixEm) +STUB("-HnAojb1VFA", mono_thread_set_threads_exhausted_callback) +STUB("-HnJLYY5Qbo", mono_set_lmf_addr_tls_offset) +STUB("-HnhrbY5DqY", _ZN3sce7Toolkit2NP2V27NpUtils7Request22GetAccountIdByOnlineId13MAX_SIZE_DATEE) +STUB("-HuGlmrhcZ4", _ZN12video_parser5vpcom3rtc13FormatRFC3339EPcPKmi) +STUB("-HwHoMkhCSs", _ZN7WebCore9HTMLNames14http_equivAttrE) +STUB("-I+A1kd-jNE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEED2Ev) +STUB( + "-I+QyHR0Oi0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEmmEv) +STUB("-I22EAAA4uI", _ZN3sce2Np9CppWebApi7Matches2V117LeaveMatchRequestD2Ev) +STUB( + "-I35Jrgz8n8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEEaSERSA_) +STUB("-I4IPggVX7s", _sceLibcMallocInitialize) +STUB( + "-I5j1vgsJCg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEEC2ERSA_) +STUB( + "-IANIWhFoMo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB("-IAOwd2nO7g", sceImeVshSendTextInfo) +STUB("-IDWXBA-UK0", _ZN7WebCore8SVGNames14zoomAndPanAttrE) +STUB( + "-IHq9uHghpE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEC2Ev) +STUB("-INjjqmfDvw", _ZN23sceMetadataReaderWriter16extractExtensionERKSsRSs) +STUB("-IPY9EUy9O4", _ZNSt8ios_base7copyfmtERKS_) +STUB( + "-IUJ-rc-FAg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "-IUShtiBtcI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE6resizeEj) +STUB( + "-IW9PK24IDc", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessionsD1Ev) +STUB("-IWIc-sYiZk", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112GroupingTypeEEeqERKS7_) +STUB( + "-IYJYDt61yA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE10setContextEPNS2_10LibContextE) +STUB( + "-Ih6ikmQLbE", + _ZN7WebCore21PageOverlayController45copyAccessibilityAttributeStringValueForPointEN3WTF6StringENS_10FloatPointERS2_) +STUB( + "-Im2AEW5umk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEppEv) +STUB("-IrggqXYu-Q", uspoof_openFromSerialized_67) +STUB("-IubHdftGTU", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_28ActivityFeedSharedVideoStoryEE9constructEPS3_RKS3_) +STUB("-Iwc9AvKQvU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEED1Ev) +STUB("-Ix48F8rGYI", sceHidControlGetVersionInfo) +STUB( + "-J+FvLOGoBU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEEC2ERSA_) +STUB("-J7Sv5NUMds", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEC2ERKS7_) +STUB("-JBoEtvTxvA", sceUsbdGetDescriptor) +STUB( + "-JCwm6aEu4o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEE5resetEPS6_) +STUB("-JE2KLnsg9I", sceMusicPlayerServiceRemoveAllData) +STUB( + "-JHS0wTq83M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEppEi) +STUB("-JHVe5UMUfM", sceDataTransferTargetRequestSearch) +STUB( + "-JQmEfRLk8s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEC1Ev) +STUB("-JRXdMwjd6I", _ZN7WebCore9HTMLNames8theadTagE) +STUB( + "-JSCA05tQ7c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEC1Ev) +STUB( + "-JYxtdUzigs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEEC2Ev) +STUB("-Ja2aT6A3fg", _ZN3sce2np9NpTitleIdC1Ev) +STUB("-JcTBruFr+M", mono_aot_Sce_Vsh_EventAppjit_code_end) +STUB( + "-Jdch0GvH8U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEEaSERSA_) +STUB("-JjIKV47G5A", unum_formatDoubleCurrency_67) +STUB("-JjkEief9No", __atomic_store_2) +STUB( + "-Jln36Tq2lM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEixEm) +STUB( + "-JoYXTZ+V60", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser28getxPsnAcceptPlatformNamePs5Ev) +STUB("-Jp7F+pXxNg", pipe) +STUB( + "-JpYiERjqxs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "-JyysYboZnE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("-K012oKv7g4", Java_java_awt_GnmGraphics_nativeSetStroke) +STUB("-K5lDxo+iek", _ZN3sce3pss4core8graphics7TextureC2Ev) +STUB( + "-K7zBRxvPvY", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("-K8h1wXHxmY", _ZN7WebCore8SVGNames6g2AttrE) +STUB( + "-KAFm9ogxVU", + _ZN7WebCore16BlobRegistryImpl26writeBlobsToTemporaryFilesERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEEONS1_17CompletionHandlerIFvOS6_EEE) +STUB("-KAers5zOTg", _ZN12video_parser17cVideoProfilerMp418_releaseVideoCodecEPNS_13VpMediaInfo_tE) +STUB("-KBozLIageo", _ZN3sce7Toolkit2NP2V27Ranking7Request15GetFriendsRanks15MAX_NUM_FRIENDSE) +STUB("-KKlTIIqZrk", _ZN3JSC7Options24ensureOptionsAreCoherentEv) +STUB( + "-KKyl-UJoNc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEaSERS7_) +STUB( + "-KM3JD6Mawo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEC1EPKS8_) +STUB( + "-KMIhX+1zvs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEEC1Ev) +STUB("-KN6FGZnxzs", _ZNK7WebCore12SharedBuffereqERKS0_) +STUB("-KNh1VFIzlM", sceUsbdCancelTransfer) +STUB( + "-KOVtchwUes", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("-KQ7XkCNW2U", scePerfPmcL2iStop) +STUB("-KRLtgJrw7g", mono_counter_get_section) +STUB( + "-KW9aaOW-4E", + _ZN3sce2Np9CppWebApi12Leaderboards2V134RecordLargeDataResponseBodyFactory7destroyEPNS3_27RecordLargeDataResponseBodyE) +STUB("-KWenZqNiks", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEC1Ev) +STUB("-KdbpcGgEXU", _ZN7WebCore21InspectorFrontendHostC1EPNS_23InspectorFrontendClientEPNS_4PageE) +STUB("-Kf5hg8z7hk", _ZN3sce7Toolkit2NP2V212ActivityFeed9StoryUser11URL_MAX_LENE) +STUB("-Kfq0IYFBf0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEE5resetEPS6_) +STUB( + "-KgOaCNfHlE", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStats16getincludeFieldsEv) +STUB("-KkdjQY92A0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEEC2Ev) +STUB( + "-KkrhwM6Rg0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEEC2Ev) +STUB("-Klw5+80OFM", fuse_free_req) +STUB("-KlzWzPxyQ0", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_19GetGameDataResponseEEC1Ev) +STUB( + "-KoO3j3Usgk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("-KuXMRU+oxM", vzone_getTZURL_67) +STUB( + "-KwWzv43lB8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo22setxPsnAtomicOperationENS5_19XPsnAtomicOperationE) +STUB( + "-Ky2SY51SeA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEED1Ev) +STUB("-L+-8F0+gBc", _ZTVSt13runtime_error) +STUB( + "-L+gRFmAyPM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEptEv) +STUB( + "-L-ToNIBUao", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB( + "-L-ykW3UWoI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEmmEi) +STUB("-L3Y5wXVigQ", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEEdeEv) +STUB( + "-L5AqROLYlk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEeqERKS9_) +STUB("-LBTbmN-lt0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEEC2Ev) +STUB( + "-LBlgSynQ3k", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEE3getEv) +STUB("-LBvd0tKBE4", delegate_virtual_invoke_23_p) +STUB("-LC9hudmD+Y", sceNpTrophySystemDestroyHandle) +STUB("-LFO7jhD5CE", ungetc) +STUB( + "-LHI2s5IOOw", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetBoolean5Ev) +STUB("-LJbF9b-Who", sceNpSnsFacebookAbortRequest) +STUB( + "-LKfBC57JRM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE4sizeEv) +STUB("-LPiephsaEo", g_JSWebAssemblyTablePoison) +STUB("-LSSffiQqPg", JSObjectHasPropertyForKey) +STUB( + "-LUhjd5yQPg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEEC2Ev) +STUB("-LVXigKk--w", _ZN7WebCore13HTTPHeaderMap6removeERKN3WTF6StringE) +STUB("-LXhcGARw3k", sceAudioOutMbusInit) +STUB("-LdLZ2x8Vro", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetAccountId2OnlineIdD2Ev) +STUB("-LhEsCQ5mTQ", __ubsan_handle_function_type_mismatch) +STUB("-LhUzPvU4f8", __strcp_D2A) +STUB( + "-LlURYshADg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEC1EPS8_) +STUB("-Lpr5gHkHkc", sceShellCoreUtilIsBgmPlaying) +STUB("-LuSbSzfxGg", _ZTVN7WebCore17TextureMapperTileE) +STUB("-LxFGYCJwww", sceNpTusGetDataForCrossSaveVUser) +STUB( + "-Ly6BOueRXM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEneERKS7_) +STUB("-LzHP72LYUo", sceVideoCoreSetInitialInfo) +STUB("-M5c7Fr+-80", _ZN13MsvMetaEditorC1Ev) +STUB("-M9AqqLEF+k", _ZN7WebCore24CoordinatedGraphicsLayer22transformedVisibleRectEv) +STUB( + "-MA+nE0iXdc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEE3getEv) +STUB("-MD7V1yKTfE", SwCtrlManagerCancelActivate) +STUB("-MFiL7hEnPE", sceNpPartyShowInvitationList) +STUB("-MGjVSZgGLs", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIjEC2Ev) +STUB( + "-MHMA8uL2mA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE8capacityEv) +STUB( + "-MJE2k8wWQY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("-MRnIXVJQ-U", _ZN12video_parser5vpcom6CallocE) +STUB( + "-MSB-0-675o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE7reserveEi) +STUB("-MSv8GTlzww", _ZN9Inspector22ContentSearchUtilities11lineEndingsERKN3WTF6StringE) +STUB( + "-MTvLWruKgI", + _ZN7WebCore17JSDOMGlobalObject23promiseRejectionTrackerEPN3JSC14JSGlobalObjectEPNS1_9JSPromiseENS1_27JSPromiseRejectionOperationE) +STUB("-MU6s8JAzXw", __asan_exp_store16) +STUB("-MU9L6S3Fj4", sceHttp2WebSocketSetPingTimeout) +STUB( + "-Ma1eVc1-nI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("-MaCPVwIZtc", Java_java_lang_Runtime_gc) +STUB("-McDhX8tnWE", sceNpTitleMetadataIntGetInfo) +STUB( + "-McbTC2Bho0", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V145MatchCompletionRateDisconnectedMetricsFactory7destroyEPNS3_38MatchCompletionRateDisconnectedMetricsE) +STUB("-Mi5hNiWC4c", sceNetConfigWlanScan) +STUB("-MicizMIiag", _ZN9Inspector14InspectorAgentnaEm) +STUB("-MnzCChBb5c", _ZN9Inspector24ConsoleBackendDispatcherD0Ev) +STUB("-MoZKJXBTlM", _ZThn136_N7WebCore16HTMLMediaElement4playEv) +STUB( + "-MqYPq4mK6c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEE11get_deleterEv) +STUB("-Mui67TZd4s", sceAvSettingGetHdmiMonitorInfo) +STUB("-N3-B8FdUFA", _Z21sendIpmiDisconnectCmdii) +STUB( + "-N5XaLKxEs0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEE11get_deleterEv) +STUB("-N79h7XJG8A", _ZN3JSC12StringObjectC1ERNS_2VMEPNS_9StructureE) +STUB("-N8JU4FqoZg", _ZN7WebCore20LowPowerModeNotifierC2EON3WTF8FunctionIFvbEEE) +STUB( + "-N9K32+TOIg", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("-N9SbnOwNto", LoginMgrDestroyUser) +STUB( + "-N9yLoYg8pI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEEC2Ev) +STUB("-NAYLFFi9n8", _ZN3JSC14setNeverInlineENS_7JSValueE) +STUB("-NAi4kLuiTw", _ZN7WebCore16DOMGuardedObjectD0Ev) +STUB("-NCN776X1TY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEED2Ev) +STUB("-NK5ctCHUkU", Java_java_util_zip_ZipEntry_initIDs) +STUB( + "-NMtnz-DXXA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("-NOpB57jCtM", _ZN3JSC16getFunctionRealmERNS_2VMEPNS_8JSObjectE) +STUB( + "-NTZ2ydy0gw", + _ZN3sce2Np9CppWebApi14SessionManager2V123SearchAttributesFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_16SearchAttributesEEE) +STUB( + "-NU7moumN4Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "-NWoybNRyYQ", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfiles9terminateEv) +STUB("-NZ5JtLHso4", verifyDeciHeader) +STUB( + "-Nc2X+UbjQU", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10setString4EPKc) +STUB( + "-Ne0y9n0480", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEEC1Ev) +STUB( + "-NedrbToMss", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE3endEv) +STUB("-Nf9pkKQB7w", bemp2sys_tsdecoder_create) +STUB( + "-NnBvt6HQ7A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEED2Ev) +STUB("-NopEkuDKSI", _ZN7WebCore24CoordinatedGraphicsLayer16didChangeFiltersEv) +STUB("-NxEk7XLkDY", _ZN3sce4Json5Value11referObjectEv) +STUB( + "-NxkyUp9Yzk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEC1EPNS2_10LibContextE) +STUB("-O7BDbTET7c", mono_aot_Mono_Data_Tdsjit_code_end) +STUB( + "-O9zokQlREk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEE11release_refEv) +STUB("-OC53HFeagI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEEC2ERS7_) +STUB( + "-OIzURISqA8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "-ONrJk52jjQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEEcvbEv) +STUB("-OWrx4Cio+M", _ZNK7WebCore8Document10designModeEv) +STUB("-OcRetP9dpc", _ZN3sce7Toolkit2NP2V211SharedMedia7Request14GetScreenshotsC2Ev) +STUB( + "-Oczdk+8RRE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("-OeaeJsE8Cg", _ZN3sce7Toolkit2NP2V29Messaging7Request27GetReceivedGameDataMessagesD2Ev) +STUB("-Oet9AHzwtU", timezone) +STUB( + "-Ok6qgJ3Pfg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEC1ERKS7_) +STUB( + "-Oq-dFyAixg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("-OrgQoBbx8M", _ZN7WebCore14SQLiteDatabase29setIsDatabaseOpeningForbiddenEb) +STUB("-Ozn0F1AFRg", sceVideoOutDeleteFlipEvent) +STUB("-P0LG2EUFBE", sceNpManagerIntLoginGetAccessToken) +STUB("-P2S5xXIrJA", _ZN7WebCore9GLContextnwEmPv) +STUB( + "-P3qqdtKgJM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEEC1ERSA_) +STUB( + "-P4MeSsk4WA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB("-P5-Lgi0n00", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE5clearEv) +STUB("-P6FNMzk2Kc", cosf) +STUB("-P6X35Rq2-E", sceFontCharacterLooksFormatCharacters) +STUB( + "-P6xUpHbGF0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "-P7WOObStig", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB( + "-P83mfmd+P0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEEC2ERKSA_) +STUB("-PA4t0qZEMg", _ZN7CoreIPC15ArgumentEncoderD2Ev) +STUB("-PD5w8BHRxw", mono_aot_Sce_Vsh_Np_IdMappermethod_addresses) +STUB( + "-PDXo881on0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEC2Ev) +STUB("-PGtVjZOOw8", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_21NotifyChallengeResultEE17getAdditionalInfoEv) +STUB("-PI6VA60yx4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEC1Ev) +STUB("-PICMHMyrGE", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEEppEi) +STUB( + "-PK469sXrYE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEplEm) +STUB("-PMWKYwBckw", _ZN7WebCore8Document10setBgColorERKN3WTF6StringE) +STUB( + "-PMZGMmva-c", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEplEm) +STUB( + "-PR0ksCaGyg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEEptEv) +STUB("-PRY8de75LI", uloc_getAvailable_59) +STUB("-PRjiqMZI9Y", _ZN7WebCore9HTMLNames12reversedAttrE) +STUB("-PW4YGzrUxA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEEC1ERS7_) +STUB("-PXuTfPzcT4", _ZN3sce2Np9CppWebApi7Matches2V113RemovedPlayer9setReasonERKNS3_11LeaveReasonE) +STUB("-PYC3+W6yUE", _ZN15AbstractStorage14StorageManager4FreeEPv) +STUB("-PYy6gszSBU", + _ZN7WebCore6Editor10findStringERKN3WTF6StringENS1_9OptionSetINS_14FindOptionFlagEEE) +STUB("-Pd56-y6LyU", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110PlayerTypeEEaSERKS7_) +STUB( + "-PfK8Td8uJs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE8capacityEv) +STUB( + "-PimsYZDKEQ", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUserC1Ev) +STUB( + "-PjDwz7jpzE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "-PjxKOjT01I", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEdeEv) +STUB( + "-PkDrb-VfEY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEED1Ev) +STUB("-PoIzr3PEk0", sceSslGetMemoryPoolStats) +STUB( + "-PqW2jjaooY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "-Pw9cpis2pc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "-PxWLGUjIaI", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessions31getxPSNSESSIONMANAGERACCOUNTIDSEv) +STUB( + "-Pxu0naf1LU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEEdeEv) +STUB( + "-Q0HYXLOTCk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEED1Ev) +STUB( + "-Q0mjgOeP64", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("-Q1-u1a7p0g", scePlayGoPrefetch) +STUB( + "-Q2c65p4i4I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEED1Ev) +STUB("-Q6FYBO4sn0", nexttoward) +STUB( + "-Q7hu431w7A", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody6toJsonERNS_4Json5ValueEb) +STUB( + "-Q8CROQZtSM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEE7get_refEv) +STUB( + "-QDzD7SYE7I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEE7get_refEv) +STUB( + "-QGzzmRGLuQ", + _ZN7WebCore29cookieRequestHeaderFieldValueERKNS_21NetworkStorageSessionERKNS_29CookieRequestHeaderFieldProxyE) +STUB("-QJ42KiNMKs", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEEC2Ev) +STUB( + "-QR7p31ZA84", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEC1Ev) +STUB( + "-QRPOVJU4aU", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayerD1Ev) +STUB( + "-QUFwG-+yB8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB( + "-QX5kMz5b-U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE5emptyEv) +STUB("-QXXvB6kOno", invpio2hi) +STUB( + "-QZoGsAmbh8", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE11getResponseERS8_) +STUB( + "-Qd0jANeE7U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEE11release_refEv) +STUB("-QglDeRr8D8", sceNpSetTimeout) +STUB("-QgqOT5u2Vk", _Assert) +STUB( + "-Qi41REGWv4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEEcvbEv) +STUB("-QiSEL7+e8k", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEEC2Ev) +STUB( + "-QjVhV6T3GI", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEEiRNS2_10LibContextEPT_m) +STUB("-Qju-1GPbs0", u_fgets_67) +STUB("-QkGDNo4irQ", _ZN7WebCore26CustomElementReactionStack24s_currentProcessingStackE) +STUB( + "-QkxkxtVpvI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEED2Ev) +STUB("-QlrD62pWME", _ZN3sce2np10NpOnlineId5ClearEv) +STUB( + "-QmH52s3TVQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEppEi) +STUB( + "-QmnU2+mlkI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEaSERKS7_) +STUB( + "-QnkldOVkvg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE3endEv) +STUB("-QoN5MMk6R4", uprv_int32Comparator) +STUB("-Qq59KDuvLw", _ZN3sce2Np9CppWebApi14SessionManager2V12To12setAccountIdERKm) +STUB( + "-QtK2T1EVQ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEEC1ERSA_) +STUB("-QuLOgrBhew", sceDebugGetFileInfo) +STUB( + "-QwD0BchqMI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE5emptyEv) +STUB("-R0AqmVskaQ", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatusC2EPNS1_6Common10LibContextE) +STUB("-R1DukFq7Dk", sceAudio3dGetSpeakerArrayMixCoefficients) +STUB("-R6tkIyYEVU", _ZN3sce7Toolkit2NP2V210Tournament7Request18GetRegisteredTeamsC2Ev) +STUB("-R7CpLCLHe8", sceVnaGetMicStatus) +STUB("-R7czbHyr0E", _ZN7WebCore6Editor23changeSelectionListTypeEv) +STUB( + "-R7eTjyA060", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE3endEv) +STUB("-R8FJ+5QbaU", sceIduUtilGetInstalledApp) +STUB( + "-R9HhwnMkZ4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEmmEv) +STUB("-R9mdXBspeQ", _ZNK3sce4Json6String5rfindERKS1_m) +STUB( + "-RA70xymlM4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE8capacityEv) +STUB("-RD2dLOtrY8", _ZN7WebCore6Editor29canIncreaseSelectionListLevelEv) +STUB("-RJWNMK3fC8", scePlayGoGetProgress) +STUB("-RJmkkuBhaY", sceVisionManagerRequestRegisterUserInRegion) +STUB("-ROAAenn4Xg", sceShellCoreUtilGetCrashReportInfoForBoot) +STUB("-RQ46gpc-Yw", _ZN7WebCore16BlobRegistryImpl8blobSizeERKNS_3URLE) +STUB("-RWsM4pVi0E", WKPreferencesSetNewBlockInsideInlineModelEnabled) +STUB("-Re+pCWvwjQ", sceAudio3dGetSpeakerArrayMixCoefficients2) +STUB( + "-ReIecaGFz4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEC1Ev) +STUB("-Rjboe+cAt4", _ZN3sce7Toolkit2NP2V28Commerce19ServiceEntitlementsC2Ev) +STUB("-Rjp3-YViXc", sceNpUnregisterPremiumEventCallback) +STUB("-RnpfpxIhec", sceAgcAcbDmaData) +STUB( + "-RruuIg42og", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE8capacityEv) +STUB("-Ru0nzM2cJ4", _ZN3WTF10TextStreamlsERKNS0_30FormatNumberRespectingIntegersE) +STUB("-Ruc8RY6MSo", sceDebugGetUltWaitingQueueResourcePoolInfo) +STUB( + "-RudVpLkf3o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE5beginEv) +STUB( + "-RwHjC47GyI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEEaSERSA_) +STUB( + "-RxOx-aODiI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEE3getEv) +STUB( + "-S-wTeb2n6Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEEC1Ev) +STUB("-S36x8s8CAw", _ZN4IPMI4impl11SessionImpl12setEventFlagEjm) +STUB("-SEUBK8BV7I", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_21NotifyChallengeResultEED1Ev) +STUB("-SFzHfUuIyY", _ZN4Manx13WorkQueueImpl3runEv) +STUB("-SGh0agyaUk", _ZNK7WebCore9RenderBox19absoluteContentQuadEv) +STUB("-SMaAeL9wdY", u_versionFromUString) +STUB("-SS6hQt+3dQ", _ZNK3WTF10StringImpl21findIgnoringASCIICaseEPKS0_) +STUB("-SUR+UoLS6c", sceNpTssGetData) +STUB("-SV-oTNGFQk", sceScreenShotIsDisabled) +STUB("-Se2FY+UTsI", sceGnmSdmaCopyTiled) +STUB("-Sfv5wYgPII", WKBundleSetFrameFlatteningEnabled) +STUB( + "-SgJKoBtwPI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEE11get_deleterEv) +STUB( + "-Si12Qu7jls", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEppEv) +STUB("-SiG1h4R+0k", __dynsym_end) +STUB("-SlFO4c+ZnQ", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10setString2EPKc) +STUB( + "-SlQbbKY3cE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEEC1ERKS9_) +STUB("-Sp1aaqI1SQ", sceShellCoreUtilMakeManifestFile) +STUB("-SqaBORAnyI", mono_aot_JSC_Netmethod_addresses) +STUB("-SrbXpGR1f0", pthread_attr_setstack) +STUB("-SsejhGG-SM", Java_com_sony_bdjstack_init_Init_removeFiles) +STUB( + "-StT-IjlU-c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEaSERKS7_) +STUB("-SwG4X9pRTs", g_dir_close) +STUB("-SxjDfib1iQ", _ZN4Manx14NetworkProfile12proxyEnabledEv) +STUB("-T+6YbvQ3W4", _ZN3JSC9Structure26flattenDictionaryStructureERNS_2VMEPNS_8JSObjectE) +STUB("-T-w0l9tmtQ", _ZN7WebCore8SVGNames9cursorTagE) +STUB( + "-T50I75bgc4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEC2Ev) +STUB("-T92c9bcHxI", _ZN12video_parser18cMp4FFLHndlManager8finalizeEv) +STUB("-T9ON4qEF4o", + _ZN7WebCore22EmptyFrameLoaderClient17objectContentTypeERKNS_3URLERKN3WTF6StringE) +STUB("-TKc5Xdx23Y", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEE3getEv) +STUB("-TNOnB6-yhA", _ZN7WebCore12SharedBufferC1EONS_10FileSystem14MappedFileDataE) +STUB("-TOHYitNANs", mono_aot_Sce_PlayStation_PUIPlatformunbox_trampolines_end) +STUB("-TOuuAQ-buE", sceNgs2VoiceGetState) +STUB("-TP5BT-FntM", _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfileC1EPNS1_6Common10LibContextE) +STUB( + "-TRpVWulqG0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB( + "-TUEOJknbC0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEE5resetEPS9_) +STUB( + "-TWHEIcDYEU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEE7add_refEv) +STUB("-TalmFL-4Us", uprv_max) +STUB("-TbZc8pwPNc", sceSslGetPeerCert) +STUB( + "-TcHuzby3w4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("-TgmcddG5Pw", _ZN3JSC7Symbols32stringIndexOfInternalPrivateNameE) +STUB("-ThIlThsN80", sceRemoteplayServerLock) +STUB("-TpTQG4cqr4", sceOpusCeltEncEncodeFloat) +STUB( + "-TsR8pWbN5Y", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEptEv) +STUB("-TsY1LoIITc", _ZN3JSC7Symbols21nextMethodPrivateNameE) +STUB( + "-TwdNnSAFMA", + _ZN7WebCore11HistoryItem16setDocumentStateERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16EEE) +STUB("-U-Se7lr1lc", _ZN7WebCore6DOMURLD2Ev) +STUB("-U-WFhjLdu4", _ZN7WebCore24PerformanceLoggingClient35synchronousScrollingReasonsAsStringEj) +STUB("-U2IRfHAgiU", _ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse10getAvatarsEv) +STUB("-U3n2IQMNTw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEE11release_refEv) +STUB("-U6ujqBRGGg", sceVideoCorePlayControl) +STUB( + "-UAg6GJd-Fs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEED1Ev) +STUB( + "-UCvhtKU2FU", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "-UCw83sp+ic", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEC1Ev) +STUB("-UDxVMs9h9M", SSL_shutdown) +STUB("-UE6BDQDRdU", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V115VariableFactory7destroyEPNS3_8VariableE) +STUB( + "-UJuGYkzC0A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE7reserveEi) +STUB("-UK7d+-mwp8", _ZNK3sce2Np9CppWebApi7Matches2V117ResponseMatchTeam6toJsonERNS_4Json5ValueEb) +STUB("-UKRka-33sM", _ZNSt20bad_array_new_lengthD0Ev) +STUB("-ULUBK21QgE", sceFiosDirectoryCreate) +STUB("-ULswyDImAE", _ZN7WebCore17JSDOMGlobalObject10structuresERKN3WTF14AbstractLockerE) +STUB( + "-UNM0s2b3mw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("-URokGExT8U", rgctx_fetch_trampoline_mrgctx_57_p) +STUB("-UWXejaXycI", _ZN7bmalloc9Allocator14reallocateImplEPvmNS_13FailureActionE) +STUB( + "-UeeTAQNXy0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("-UetQJNLBjA", mono_aot_System_Xml_Linqmethod_addresses) +STUB( + "-UjDJUZo-yA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEED1Ev) +STUB("-UlLDWXCHcY", _ZN3sce7Toolkit2NP2V28Commerce8ProductsD1Ev) +STUB("-Up2dx+yhI4", mono_aot_Sce_Vsh_DbRecoveryUtilityWrapperplt_end) +STUB("-UrE3veEVz8", _ZN7WebCore18JSHTMLInputElement9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("-UrHIrgeKrM", WKWebsiteDataStoreConfigurationSetTestingSessionEnabled) +STUB( + "-UzVKaZztH0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEC1ERKS7_) +STUB("-UzbeNWVAE4", __libunwind_Unwind_GetLanguageSpecificData) +STUB( + "-V051VtLyHw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEE21intrusive_ptr_add_refEPS7_) +STUB("-V19vwFXUFc", _ZN3sce2Np9CppWebApi10Activities2V114UserActivities14UserActivitiesD1Ev) +STUB( + "-V5wkcggi1Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEC1EPNS2_10LibContextE) +STUB( + "-V9te34p1MI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE8pushBackERKS8_) +STUB("-VByi7EJRi4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEEC2Ev) +STUB( + "-VChCq+QRVE", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody14unsetBoolean10Ev) +STUB("-VH-Z4xfNG0", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEEaSERKS7_) +STUB( + "-VH1vXRt1+Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEppEi) +STUB("-VQ44oZKoSg", + _ZN3sce2Np9CppWebApi14SessionManager2V117SearchGameSessionC1EPNS1_6Common10LibContextE) +STUB( + "-VQmh+4BX6g", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112OwnerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5OwnerEEE) +STUB("-VR6wClvMLE", WKPageSetUserContentExtensionsEnabled) +STUB("-VVn74ZyhEs", difftime) +STUB("-Vcre7XqbY4", _ZN23sceMetadataReaderWriter5ValueaSERS0_) +STUB("-VjbDZFlPH8", + _ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody9setStatusERKNS3_11OfferStatusE) +STUB( + "-Vp0aWV3ucY", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot10unsetlimitEv) +STUB("-VpZwTO4fCg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEaSERS7_) +STUB("-Vt1ihrzI0Q", mono_add_internal_call) +STUB( + "-W+r3KZTnRc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEEC1Ev) +STUB("-W-D+dMXtD0", _ZN7WebCore9HTMLNames11sandboxAttrE) +STUB("-W0cyz1wnug", _ZN3WTF13MetaAllocatorD1Ev) +STUB("-W1rGxiyonQ", u_getISOComment_67) +STUB("-W28+9p1CKI", sceNpSignalSema) +STUB("-W4xI5aVI8w", sceKernelSetProcessProperty) +STUB("-W6XjwwK8Bo", _ZThn16_N9Inspector19InspectorAuditAgentD1Ev) +STUB( + "-W899cJizLM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEC1Ev) +STUB("-W9fbd6kB-8", _ZN9Inspector21PageBackendDispatcherD0Ev) +STUB("-WAFtiljCdo", _ZN9Inspector21HeapBackendDispatcherD0Ev) +STUB("-WGPScpDMWA", _ZN3sce2npeqERK13SceNpOnlineIdRKNS0_10NpOnlineIdE) +STUB( + "-WGcryZBis0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEEaSERKSA_) +STUB("-WHkTpS90Mc", _ZN3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead11setTicketIdEPKc) +STUB("-WKRLgOozwg", + _ZN3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallbackD1Ev) +STUB( + "-WLkjQapkLM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("-WOpbmHCVJ0", _ZN7WebCore7Element19removeAttributeNodeERNS_4AttrE) +STUB("-WPNAo5+5Z8", _ZN12video_parser13cVideoMetaMP4D0Ev) +STUB("-WQ0jlIzAEY", _ZN7CoreIPC10Connection10invalidateEv) +STUB("-WRsXUoZ948", _ZN7WebCorelsERN3WTF10TextStreamERKNS_10FloatPointE) +STUB( + "-WS2nHEhheo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEC2EPS6_PNS2_10LibContextE) +STUB("-WSG6xgOw5Q", WKContextSetUserStorageDirectory) +STUB("-WSzZkQJj8I", cpp_demangle_read_encoding) +STUB("-WWyz1uPfx0", curl_multi_socket_action) +STUB( + "-WbfGwe7RZw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEptEv) +STUB("-Wek6mFXOrc", _ZN3sce4Json6StringpLEh) +STUB("-WgnISXjJ7A", _ZN3sce2np10JsonObject16DeleteFieldValueEPKc) +STUB( + "-WjOCT5NPKU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEppEi) +STUB( + "-WkJ2vrMV4Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEC2Ev) +STUB("-WqxBRAUVM4", sceSslDisableOptionInternal) +STUB("-Wreprtu0Qs", scePthreadAttrSetdetachstate) +STUB("-WyIpV7ukMU", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIjEptEv) +STUB( + "-WzxDM-yTwY", + _ZN9Inspector15ScriptCallStackC2ERN3WTF6VectorINS_15ScriptCallFrameELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB( + "-XB9pzXKmlw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEE7add_refEv) +STUB("-XCn1Pwn7NU", _ZN9Inspector32TimelineBackendDispatcherHandlerC2Ev) +STUB("-XG9UVGafZI", _ZN3sce2Np9CppWebApi14SessionManager2V128ResponseGameSessionSpectatorD1Ev) +STUB("-XGGzORfeFw", _ZN3sce7Toolkit2NP18GetWhoLikedRequestC1Ev) +STUB( + "-XHaGqZr+PE", + _ZN9Inspector31NetworkBackendDispatcherHandler20LoadResourceCallbackC1EON3WTF3RefINS_17BackendDispatcherENS2_13DumbPtrTraitsIS4_EEEEi) +STUB( + "-XNfwZTFkWw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEC1Ev) +STUB("-XTU4Srikks", + _ZN3sce2Np9CppWebApi7Matches2V120RequestTeamStatistic8fromJsonERKNS_4Json5ValueE) +STUB("-XYmdxjOqyA", sceSaveDataMountSys) +STUB("-XZfrcPmlfA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEE11get_deleterEv) +STUB( + "-XeAN6sCUaU", + _ZN7WebCore21HTMLOptionsCollection3addERKN3WTF7VariantIJNS1_6RefPtrINS_17HTMLOptionElementENS1_13DumbPtrTraitsIS4_EEEENS3_INS_19HTMLOptGroupElementENS5_IS8_EEEEEEERKSt8optionalINS2_IJNS3_INS_11HTMLElementENS5_ISF_EEEEiEEEE) +STUB("-XhyxXB0cYg", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession17setExpirationTimeERKi) +STUB( + "-Xia6SzTPnQ", + _ZN9Inspector24NetworkBackendDispatcher28interceptRequestWithResponseElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("-Xm1cLEpBec", FT_Stream_GetUShortLE) +STUB( + "-Xoq2AgZNAo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEE7get_refEv) +STUB( + "-XsoR6--b88", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEC2Ev) +STUB( + "-XuRWHRBE10", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("-Xv5Bno0jTU", sceMusicCoreServerSetAudioMute) +STUB( + "-Xx2pbPCWzE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEaSERS7_) +STUB( + "-XyPpJ6tdCI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEEC1ERSA_) +STUB("-XzP4aYr3ew", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEC1Ev) +STUB("-Y-WZBvAu3M", _ZN3JSC12CachePayloadD2Ev) +STUB("-Y0Yv5Y+h-M", sceAudiodecTerminate) +STUB("-Y2pCXfH-dQ", WKWebsiteDataStoreStatisticsClearInMemoryAndPersistentStoreModifiedSinceHours) +STUB( + "-Y3goKIMakc", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V127ConnectionQualityProperties11setWirelessERKNS1_6Common12IntrusivePtrINS3_32ConnectionQualityWirelessMetricsEEE) +STUB( + "-Y7BT2Pxohk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEE7add_refEv) +STUB("-Y8hlMgBsr4", sceMoveTrackerControllersUpdate) +STUB( + "-YA7ahTw3uU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEeqERKS9_) +STUB("-YDX6TPLnro", _ZN3WTF13StringBuilder6resizeEj) +STUB("-YGgZXLCrgM", _ZN7WebCore6RegionC1Ev) +STUB( + "-YLp1vVnmYE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("-YNfTO6KOMY", sceNgs2FftQuerySize) +STUB( + "-YNyFMuQllk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEmmEv) +STUB( + "-YTVwVq1gaI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("-YTW+qXc3CQ", sceKernelInternalMemoryGetModuleSegmentInfo) +STUB("-YXlm94wNZw", _ZN3NTF21ResourceRequestLoggerD2Ev) +STUB("-YYRv4y2pQM", rgctx_fetch_trampoline_mrgctx_14_p) +STUB( + "-YZs+5DwzIg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "-YaLpchcfjM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEED1Ev) +STUB("-YbpaF0XS-I", sceContentSearchCloseMetadata) +STUB("-YcNkLzNGmY", sceUserServiceGetNpEnv) +STUB("-Ycat1KaiSM", Java_java_util_zip_ZipFile_getEntry) +STUB("-Yk4NyVHTMs", _ZNK7WebCore11HistoryItem13documentStateEv) +STUB( + "-Ym5GT2ZVLQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB( + "-YnhP7OUhTg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE5beginEv) +STUB("-Ysw9ZsBANs", _ZN7WebCore20ResourceResponseBaseC1Ev) +STUB("-Z+-9u98m9o", sceHmdInternalGetVirtualDisplayDepth) +STUB("-Z0WigBNl2A", JVM_GetMethodIxExceptionIndexes) +STUB( + "-Z4XazhAN9o", + _ZN3sce2Np9CppWebApi7Matches2V131UpdateMatchStatusRequestFactory7destroyEPNS3_24UpdateMatchStatusRequestE) +STUB( + "-Z4YYBP2aEw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE5beginEv) +STUB("-Z8FvBnu6yQ", scePlayReadyCdmiFreeOpaqueDecryptedContent) +STUB("-Z8Mw26kpbw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEaSERKS7_) +STUB("-Z933QqxAPM", mono_aot_Sce_CloudClient_App_Platformunbox_trampolines) +STUB("-ZCSUY48XBY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEED2Ev) +STUB("-ZH-StO7-CA", _ZN3sce2Np9CppWebApi6Common6VectorImEC1EPNS2_10LibContextE) +STUB( + "-ZHY6MNNh5g", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEptEv) +STUB("-ZIRUtUF8jc", _ZN3sce7Toolkit2NP2V212ActivityFeed12SharedVideosC1Ev) +STUB("-ZQC46h5lbg", _ZN7WebCore9HTMLNames35onwebkitpresentationmodechangedAttrE) +STUB("-ZR+hG7aDHw", sceKernelSleep) +STUB("-ZXmuPB7XIk", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setMixerPanFR) +STUB("-ZY+4CCqv7Y", psl_suffix_exception_count) +STUB("-ZY3Sk2+Kns", delegate_virtual_invoke_imt_13) +STUB( + "-ZYnhtk7UrA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEC2ERKS7_) +STUB("-ZcgSRyOCgc", _ZN3sce7Toolkit2NP2V27Session11InvitationsD1Ev) +STUB("-ZdGee84iPM", + _ZN3sce7Toolkit2NP2V27Session6updateERKNS3_7Request6UpdateEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("-Zfr0ZQheg4", _Atomic_fetch_sub_1) +STUB( + "-ZgVWWKVFxM", + _ZN7WebCore16HTMLImageElement6decodeEON3WTF3RefINS_15DeferredPromiseENS1_13DumbPtrTraitsIS3_EEEE) +STUB("-ZjhROPju4Q", _ULx86_64_create_addr_space) +STUB("-ZrwAjc+C6Y", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V115FrequentlyMutedC1EPNS1_6Common10LibContextE) +STUB( + "-ZsCz+1anvY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE21intrusive_ptr_add_refEPSA_) +STUB("-Zst47j36u4", _ZN7WebCore21BlobDataFileReferenceD1Ev) +STUB("-ZvQH18j10c", scePthreadRwlockattrSetpshared) +STUB("-ZvUYL5zQ3c", __asan_exp_load8) +STUB("-Zvf1BnYBDA", rgctx_fetch_trampoline_mrgctx_52) +STUB("-Zx3Ay8RdQs", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE7reserveEi) +STUB("-a+f55sXbt4", mono_btls_x509_get_public_key_parameters) +STUB("-a3y7hCf088", _ZN3sce2Np9CppWebApi11Matchmaking2V15Cause11unsetSourceEv) +STUB( + "-aCTbLSi+IM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEE21intrusive_ptr_add_refEPS7_) +STUB("-aFZ7KgGnP0", _ZN7WebCore13JSDOMRectList14finishCreationERN3JSC2VME) +STUB("-aG0k61CdWY", _ZN7WebCore8Settings24setDNSPrefetchingEnabledEb) +STUB("-aIwWbB0Cc4", _ZN3sce2Np9CppWebApi13InGameCatalog2V513ContentRatingD2Ev) +STUB("-aK6d418l4c", u_getIntPropertyMap) +STUB("-aMBNq7ntRY", ucal_add_67) +STUB("-aP95m3Tkes", + _ZN3sce2Np9CppWebApi14SessionManager2V124PlayerSessionPushContext8fromJsonERKNS_4Json5ValueE) +STUB("-aQEcE0Vcao", + _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody26unsetNeedsRecordedDateTimeEv) +STUB( + "-aSYFrUlMFo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEC2EPKS8_) +STUB( + "-aTydJ6Nv4M", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEeqERKS9_) +STUB("-aUZb3qdsnU", sceNpRemotePlaySessionSignalingManualUdpCreateJoinSession) +STUB( + "-aUyPxa8fN8", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions17getacceptLanguageEv) +STUB("-aVO3GCDUAs", sceUltGetQueueDataResourcePoolInfo) +STUB("-afcebKwwd8", _ZN7WebCore10JSLocation14finishCreationERN3JSC2VME) +STUB( + "-afl63ylw6Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE4sizeEv) +STUB( + "-ajClVUd3qE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEEC2Ev) +STUB("-ajib2lKj-c", sceKernelPrepareToResumeProcess) +STUB("-am9z4xyweE", _ZN3JSC2VM29scopedArgumentsTableSpaceSlowEv) +STUB("-amctzWbEtw", _ZNKSt8numpunctIwE12do_falsenameEv) +STUB("-aqFIBn0h78", cairo_set_font_options) +STUB( + "-atPsyNwCfY", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12unsetString9Ev) +STUB("-b+Avqa2v9k", _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE4_RepES3_wm) +STUB("-b-ETptprP8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEcvbEv) +STUB("-b4iVKArt94", ft_mem_strdup) +STUB("-b6MeTX-oKs", _ZN3sce3Xml3Dom8Document13createElementEPKNS0_6StringEPKNS0_13AttributeListES5_) +STUB( + "-bAOp4w2+xU", + _ZN7WebCore21ComplexTextControllerC2ERKNS_11FontCascadeERKNS_7TextRunERN3WTF6VectorINS7_3RefINS0_14ComplexTextRunENS7_13DumbPtrTraitsISA_EEEELm0ENS7_15CrashOnOverflowELm16ENS7_10FastMallocEEE) +STUB("-bAjEe-hdCg", _ZN3sce7Toolkit2NP2V24Core7Request10InitParamsD1Ev) +STUB( + "-bCrIgk0-y0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEE3getEv) +STUB( + "-bI+1NDXkHM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE3endEv) +STUB( + "-bM0tuxcxPU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEneERKS9_) +STUB("-bNk-Tn5Xbw", _ZN3NTF21ResourceRequestLogger9AdminPageD1Ev) +STUB( + "-bPUp2AWwDM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE8copyFromERKS9_) +STUB( + "-bTeebRjqWw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEED2Ev) +STUB( + "-bTv9gUo5F4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEED2Ev) +STUB("-bVcZYZ-mpc", Java_sun_net_PortConfig_getUpper0) +STUB( + "-bZ9GoGfIik", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("-bbwtBoUKqo", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_17ActivityFeedStoryEE8allocateEmPKv) +STUB( + "-bfVhAzihAA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEEC2ERSA_) +STUB("-bfgP8FN6oo", utext_getPreviousNativeIndex) +STUB("-bghZqhzaZs", mono_aot_Sce_Vsh_GameListRetrieverWrapperplt_end) +STUB( + "-bjRODTNco4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEEC1ERKSA_) +STUB("-bl1HBIBtJc", + _ZN3sce7Toolkit2NP8Commerce9Interface14categoryBrowseERKNS1_20CategoryBrowseParamsEb) +STUB("-blITIdtUd0", sceNpOpenSema) +STUB("-bmucRrSJRU", _ZN3sce2Np9CppWebApi14IdentityMapper2V311PsnWebError8fromJsonERKNS_4Json5ValueE) +STUB("-bozAY6CDpY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEED2Ev) +STUB("-brvZbsy4oQ", _ZN3sce2np9HttpTransC2EP14SceNpAllocator) +STUB("-bw-RAJILdQ", _ZN7WebCore5Range8setStartEON3WTF3RefINS_4NodeENS1_13DumbPtrTraitsIS3_EEEEj) +STUB( + "-byOlo6AGuE", + _ZN7WebCore16NetworkSendQueueC2ERNS_8DocumentEON3WTF8FunctionIFvRKNS3_7CStringEEEEONS4_IFvPKcmEEEONS4_IFNS0_8ContinueENS_13ExceptionCodeEEEE) +STUB( + "-c+9+KhDGOs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEeqERKS9_) +STUB( + "-c1fGlcGaqY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("-c4yaFvd6Ek", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEptEv) +STUB( + "-c7SJiL8z+M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("-c8fT5sxWPM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEEptEv) +STUB("-c9QK+CpQLg", _ZN3sce2np6Handle10CancelImplEi) +STUB("-c9VWG21+Vw", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi22ParameterToCreateMatchaSERS5_) +STUB( + "-cBQgkZEgVU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEED2Ev) +STUB("-cGpc8qME3o", mono_aot_Sce_Cdlg_Platformjit_got) +STUB("-cLIfSisruo", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V18Variable12getPrevValueEv) +STUB("-cLkFY3gJ-U", + _ZNK7WebCore20ScrollingCoordinator32coordinatesScrollingForFrameViewERKNS_9FrameViewE) +STUB( + "-cNoKZneFE8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEEC2ERKSA_) +STUB("-cSBibV9kcg", _ZN7WebCore17LibWebRTCProviderC2ERKS0_) +STUB("-cSnNI8Oe74", _ZN7WebCore11DisplayList8SetStateC2ERKNS_26GraphicsContextStateChangeE) +STUB( + "-cSqt0staBI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEEC1ERSA_) +STUB("-cXqPFWo+ko", + _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody9setStatusERKNS3_12TicketStatusE) +STUB("-cZ3SCHmrb4", + _ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody18getCreatedDateTimeEv) +STUB("-cab1shMMo4", + _ZN3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator16unsetCustomData1Ev) +STUB("-cbfK7bCKQU", __cfi_slowpath_diag) +STUB( + "-cbnnVCdMmI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEC1EPNS2_10LibContextE) +STUB("-cgB1bQG6jo", _ZNSt12placeholders2_6E) +STUB( + "-cn9shohjwo", + _ZThn24_N7WebCore14DocumentLoader22sendCSPViolationReportEON3WTF3URLEONS1_3RefINS_8FormDataENS1_13DumbPtrTraitsIS5_EEEE) +STUB("-cnqtovbNLY", mono_unicode_from_external) +STUB( + "-conQBpLNZc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEE5resetEPS8_) +STUB("-cygyY78b5A", _ZN3sce2Np9CppWebApi13InGameCatalog2V515ContainerRatingD1Ev) +STUB("-czxS5OBjQE", _ZN7WebCore27AuthenticationChallengeBaseC2Ev) +STUB("-d+s6I7Ekm8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEEaSERKS7_) +STUB( + "-d0H+47EWA4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE6resizeEj) +STUB("-d0d1BTY40s", _ZNK7WebCore8Position13containerNodeEv) +STUB("-d2DpQ3vuM0", mono_aot_System_ComponentModel_DataAnnotationsjit_code_end) +STUB("-dD5W8sRvtk", _ZN3sce7Toolkit2NP2V26Friend16FriendsOfFriendsC2ERKS4_) +STUB("-dL4IixJth4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEixEm) +STUB( + "-dN5muz7ECM", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("-dOP8t+-tTI", _ZN3sce7Toolkit2NP2V210Tournament15RegisteredTeamsC1ERKS4_) +STUB("-dOo7gkiKUs", rgctx_fetch_trampoline_rgctx_33) +STUB( + "-dQB25lQLDg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE8copyFromERKS9_) +STUB("-dSe2YtNqog", _ZNK7WebCore13HitTestResult17isContentEditableEv) +STUB("-di405FuIYg", _ZN4IPMI4impl10ServerImpl16releaseSessionIdEi) +STUB( + "-dpBUekyxiY", + _ZN7WebCore8Gradient19setSortedColorStopsEON3WTF6VectorINS0_9ColorStopELm2ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("-dt5CUNEvYs", _ZN3sce2Np9CppWebApi14SessionManager2V124GameSessionMemberForReadD1Ev) +STUB( + "-dwpUPS52kc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEppEv) +STUB("-e-F9HjUFp8", fprintf_s) +STUB( + "-e-i2gtmhdc", + _ZN9Inspector14ConsoleMessageC2EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelERKN3WTF6StringEONS5_3RefINS_15ScriptArgumentsENS5_13DumbPtrTraitsISA_EEEEPNS1_14JSGlobalObjectEm) +STUB("-e4BbPwQWfk", _ZNK7WebCore6JSFile7wrappedEv) +STUB("-eI0Y-JCbf0", nsnp_GetLicenseMetadata) +STUB("-eL8NSaYSjo", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy15TrophyPackGroupEEC2Ev) +STUB( + "-eLvervyJDc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEED2Ev) +STUB( + "-eQNdfNjpDM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE5emptyEv) +STUB("-eTUfliWVzQ", _ZN7WebCore21DiagnosticLoggingKeys9unusedKeyEv) +STUB("-eUZ8xel7b0", _ZN9Inspector13AgentRegistryC1Ev) +STUB( + "-eVnATzRgtQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEppEi) +STUB( + "-eXsITI+o2g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE7reserveEi) +STUB("-eYggVyhXUI", _ZN3sce7Toolkit2NP2V210Tournament14RegisteredTeam5resetEv) +STUB("-ea8UEtlMMA", _ZN3sce2Np9CppWebApi6Common8IteratorIjEaSERKS4_) +STUB( + "-eclTHQEf2c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("-eczr5e4dsI", sceSaveDataCheckCloudData) +STUB("-edo39H2Azk", mono_native_thread_set_name) +STUB( + "-ee+ufu7MJw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE4sizeEv) +STUB( + "-egsfhAvTHQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("-egu08GJ0lw", _Fetch_or_seq_cst_2) +STUB("-ehyE8FEXNU", mono_aot_System_ServiceModel_Internalsjit_code_end) +STUB( + "-ejQTzGAmfc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE8capacityEv) +STUB("-eme44UDv+4", mono_get_exception_out_of_memory) +STUB("-etnmY06HOE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEED1Ev) +STUB("-eu869E6GrY", _ZN3sce2Np9CppWebApi7Matches2V119ResponseTeamResults7setRankERKi) +STUB("-eu8lTL6CVY", mono_type_generic_inst_is_valuetype) +STUB("-eyJSlStgHo", ubrk_getRuleStatus_59) +STUB( + "-ezywg1fu6A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEED2Ev) +STUB( + "-f3h-dsuVUg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEC1Ev) +STUB("-f5CqEvJjwU", WKPageRunJavaScriptConfirmResultListenerGetTypeID) +STUB("-f6M4caNe8k", sceNpMatching2ContextStop) +STUB("-f6yjokBu4U", symlinkat) +STUB("-f7aYhTP1nM", + _ZN7WebCore27ScrollingStateScrollingNode24setReachableContentsSizeERKNS_9FloatSizeE) +STUB( + "-f7k+OSHj3g", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToSendPlayerSessionMessageD1Ev) +STUB("-fA+7ZlGDQs", scePthreadAttrGetstacksize) +STUB("-fAFmad5Tnk", _ZN3JSC2VM16weakSetSpaceSlowEv) +STUB("-fEQ6grul7g", _ZN7WebCore30errorDomainWebKitServiceWorkerE) +STUB("-fFRToQPnUA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE6resizeEj) +STUB("-fKQRtsYUSc", + _ZN3JSC17checkModuleSyntaxEPNS_14JSGlobalObjectERKNS_10SourceCodeERNS_11ParserErrorE) +STUB( + "-fKV83tFpnE", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayer52setpostGameSessionsSessionIdMemberPlayersRequestBodyENS1_6Common12IntrusivePtrINS3_49PostGameSessionsSessionIdMemberPlayersRequestBodyEEE) +STUB( + "-fOK9SfMVqY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE21intrusive_ptr_add_refEPS9_) +STUB("-fP1sq0Lnr4", g_slist_remove) +STUB("-fRnPd19cNs", _ZN3sce7Toolkit2NP2V24Core7Request17ExternalAllocatorC1Ev) +STUB("-fSjEhJXufE", _ZNSt10_Ref_countIN15AbstractStorage15FacebookContentEED0Ev) +STUB( + "-fTIY88v+4w", + _ZN7WebCore23CoordinatedImageBackingC2ERNS0_6ClientEON3WTF3RefINS_5ImageENS3_13DumbPtrTraitsIS5_EEEE) +STUB( + "-fTvKOEVmhk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB( + "-fVDBTNZbJ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "-fid4rAA7o0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEEC1ERKSA_) +STUB( + "-fmWDgwUhmU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("-fnefTC1Dlo", mono_aot_Sce_Vsh_Friendmethod_addresses) +STUB("-fpF2YnA+X4", YGNodeRemoveAllChildren) +STUB( + "-fpOvGcII5o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEED2Ev) +STUB("-fwHkWlm-wc", _ZN9Inspector14InspectorAgentD1Ev) +STUB( + "-fzzIEdT+Tk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEE7get_refEv) +STUB("-g0pBZ2JdAc", sceShellCoreUtilGetGameLiveStreamingStatus) +STUB("-g26XITGVgE", strerrorlen_s) +STUB( + "-g4bavgSaVs", + _ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionMemberPlayer18unsetNonPsnPlayersEv) +STUB("-g6RLhTGOeg", _ZN9Inspector22InspectorDebuggerAgentnaEm) +STUB("-gE3O+NCHS0", _ZN3WTF15base64URLDecodeERKNS_6StringENS_33SignedOrUnsignedCharVectorAdapterE) +STUB("-gJRMHTKjwI", psl_free) +STUB( + "-gLyaTWRRJo", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("-gN6uE+zWng", sceNpGlobalHeapGetAllocator) +STUB( + "-gTt6IRuNMk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEC2EPNS2_10LibContextE) +STUB("-gX9IVaPmNc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEED2Ev) +STUB("-gYpMonpw2M", sceVideoOutConfigureOutputModeExSubmitDoneUnsafe_) +STUB( + "-gbuzG9v5b4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE5emptyEv) +STUB("-gdRfP6ZTys", ft_stub_set_pixel_sizes) +STUB( + "-gdulTSygIg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("-gm8FTrfR3g", _ZN7WebCore23CoordinatedBackingStore10removeTileEj) +STUB("-gmOrF+tupM", _ZNK3sce2Np9CppWebApi14SessionManager2V117SearchGameSession14sessionIdIsSetEv) +STUB("-gnCZ7L+A-c", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchDetailD2Ev) +STUB("-gpGRSidRRg", mono_class_from_typeref_checked) +STUB("-gq46t7ekcw", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V13MmrC2EPNS1_6Common10LibContextE) +STUB("-gwkQpOCl68", sceRemoteplayImeNotify) +STUB( + "-gxBWz0n5JY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE8capacityEv) +STUB("-gxcs521SvA", sceUltUlthreadRuntimeDestroy) +STUB("-h+VXXspa4o", + _ZN3sce3pss5orbis5input12InputManager18GetAnalogStickModeEPNS2_15AnalogStickModeE) +STUB("-h4ULGARnK0", _ZN7WebCore6DOMURLC2EONS_3URLES2_) +STUB("-h9+qj63jl8", _ZN7WebCore11MediaPlayer25bufferedTimeRangesChangedEv) +STUB("-hBYBF9yIWk", _ZN7WebCore9HTMLNames5liTagE) +STUB("-hBeoSbOUcI", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_15RankInformationEE3getEv) +STUB( + "-hHF+3Fy7EI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE5beginEv) +STUB("-hJRce8wn1U", _ZN3sce4Json12MemAllocatorC2Ev) +STUB("-hOAbTf3Cqc", _SceLibcTelemetoryOut) +STUB("-hOylkSV7qY", scePlayReadyApiStart) +STUB("-hPhWKGhnuE", mono_profiler_install_method_free) +STUB( + "-hQTrDgax-w", + _ZN3sce7Toolkit2NP10ParametersC2EPFvRKNS1_5EventEERNS1_9NpTitleIdEPvmPNS1_19AllocImplementationE) +STUB( + "-hRW3g7XMhw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEC2ERS7_) +STUB( + "-hTnuzcuivs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE8copyFromERKS9_) +STUB( + "-hWgBYZlD2g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEEaSERKSA_) +STUB( + "-hZQKxL2XF0", + _ZN3sce2Np9CppWebApi14SessionManager2V134PostGameSessionsRequestBodyFactory7destroyEPNS3_27PostGameSessionsRequestBodyE) +STUB("-haXZfTh0pg", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi21ParameterToLeaveMatchD1Ev) +STUB("-hchsElmzXY", _ZN3sce2np4Cond9SignalAllEv) +STUB( + "-hdGlIfGY5g", + _ZN9Inspector20DOMBackendDispatcher24setEventListenerDisabledElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("-hdyJE4SeQ0", _ZN3JSC7Symbols18resolvePrivateNameE) +STUB( + "-hhS6oWaWVk", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ErrorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5ErrorEEE) +STUB("-hiERJfleEc", _ZN7CoreIPC15ArgumentEncoderC2Ev) +STUB("-hk9wmuusRU", _ZN9Inspector32TimelineBackendDispatcherHandlerD1Ev) +STUB("-hn1tcVHq5Q", sceLibcMspaceCreate) +STUB("-ho4SHPXBFs", _Z32sceGpuDebuggerRegisterShaderCodePKN3sce3Gnm16CsStageRegistersEjPKc) +STUB( + "-hrHhi-UFxs", + _ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE4_PutES3_St22_String_const_iteratorISt11_String_valISt13_Simple_typesIwEEEm) +STUB("-hrMXdpZuDU", sceShellCoreUtilPostErrorLog) +STUB("-hsH8-DCdgc", _ZN7WebCore12SettingsBase17setLayoutIntervalEN3WTF7SecondsE) +STUB("-htKnom4PB0", _ZN3sce7Toolkit2NP2V210Tournament12GenericEventaSERKS4_) +STUB( + "-htW7woVSHc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("-htpXyfaKlM", sceShellUIUtilInitialize) +STUB("-hzeczmXprY", + _ZN15AbstractStorage11LocalFolder13RemoveContentERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB( + "-i4jcIbzBQQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEEdeEv) +STUB( + "-i4nrfjRJIQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEEC1ERKSA_) +STUB("-i6HCI3fKIk", _ZNK3sce2Np9CppWebApi7Matches2V114ResponseMember6toJsonERNS_4Json5ValueEb) +STUB( + "-i7bkWHgB9w", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEplEm) +STUB("-i9y+WpUoXo", mono_aot_Sce_PlayStation_Jsonplt_end) +STUB("-iCEEHuKDcU", _ZN7WebCore17HTMLSelectElement16setSelectedIndexEi) +STUB("-iFADXW1htg", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate17unsetPerFranchiseEv) +STUB("-iG6vumT9vo", usearch_getCollator_67) +STUB( + "-iQnUslupts", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEneERKSA_) +STUB( + "-iSAXv6kWVA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE5abortEv) +STUB( + "-iW7NtAim+s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEED2Ev) +STUB("-iXnUa0lmbQ", mono_get_machine_config) +STUB("-iiteqKJY0U", __asan_report_store4_noabort) +STUB( + "-ik1kVIBuzo", + _ZN3sce2Np9CppWebApi14SessionManager2V128PostGameSessionsResponseBody8fromJsonERKNS_4Json5ValueE) +STUB( + "-il-z7M6534", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEE3getEv) +STUB("-in0fOcD8h0", _ZN23sceMetadataReaderWriter20LoadedParserInfoListC2Ev) +STUB( + "-inAV5BwjUI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB("-ioWNapbAUQ", + _ZN3sce2Np9CppWebApi11Matchmaking2V127ListUserTicketsResponseBodyC2EPNS1_6Common10LibContextE) +STUB( + "-isQDX3RUTs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEE11release_refEv) +STUB("-ivWQ60ptck", _ZNK7WebCore18CustomHeaderFields22thirdPartyDomainsMatchERKN3WTF3URLE) +STUB("-j+JFiFPjnc", WKBundleHitTestResultCopyLinkTitle) +STUB("-j0mbtf7vCA", _ZN3sce7Toolkit2NP2V210Tournament17OfficialBroadCastD2Ev) +STUB("-j2QKQoewKw", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_33ActivityFeedSharedScreenshotStoryEE8allocateEmPKv) +STUB( + "-j2kunR8q4I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEC1ERS7_) +STUB( + "-jIcLYqJbJg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("-jJ6ZpjlvUc", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_11CountryInfoEEC1Ev) +STUB( + "-jJUx15GC8s", + _ZN3sce2Np9CppWebApi14SessionManager2V130RequestGameSessionMemberPlayerC1EPNS1_6Common10LibContextE) +STUB("-jKSe2Flx6E", _ZN7WebCore15DatabaseManager16hasOpenDatabasesERNS_8DocumentE) +STUB("-jQY59sVCPg", + _ZN3sce2Np9CppWebApi14SessionManager2V115LocalizedString16setLocalizedTextERKNS_4Json6ObjectE) +STUB("-jRGLt2Dbe4", sceUserServiceGetVoiceRecognitionTutorialState) +STUB("-jTcfO9Pifo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEC1ERS7_) +STUB( + "-jX3Xp9SIwc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "-jao1CwAAno", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEixEm) +STUB("-jaytp6kqhQ", _ZN3sce2Np9CppWebApi13InGameCatalog2V55Error11unsetSourceEv) +STUB("-jgwuLOP-+I", _ZN3sce7Toolkit2NP2V28Matching26MemberSignalingInformationC1Ev) +STUB( + "-jhusqReJmU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEED2Ev) +STUB("-jpk31lZR6E", _ZNSt14numeric_limitsIjE6digitsE) +STUB( + "-js9M9+PUH0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEC1Ev) +STUB( + "-jyOpW-LqgU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEC1Ev) +STUB("-jzLxBJ33Fs", usearch_getAttribute_67) +STUB( + "-k-GVW8M8FE", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectator12getsessionIdEv) +STUB("-k6SFJMk6HQ", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15ErrorD2Ev) +STUB( + "-k6hcqEPezk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEE3getEv) +STUB("-k9EQTAMuDw", _ZN3sce2np10JsonParserC2EP14SceNpAllocator) +STUB( + "-kHKmATQQDc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("-kIGauVB5yw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEaSERKS9_) +STUB("-kInibsMo0o", _ZN7WebCore8SVGNames14marker_endAttrE) +STUB("-kJfYkUvoVU", _ZN3JSC7Symbols36newHandledRejectedPromisePrivateNameE) +STUB( + "-kK-Rxiguz4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEeqERKS9_) +STUB("-kM+L2LcFco", _ZN3sce7Toolkit2NP15AppSTLAllocatorItEC2Ev) +STUB("-kPU-PjQe8k", _ZN27FilePromoteInnerInformationC1EPKc) +STUB("-kPgTCLEL-U", _ZN7WebCore16NavigationActionD1Ev) +STUB("-kU6bB4M-+k", strspn) +STUB("-ka14VvHSX0", sceVideoOutSysSetHdrMetadata) +STUB("-keIqW70YlY", sceFontGraphicsCanvasStartDrawing) +STUB( + "-ksa2sfek0g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "-kw4Sv5WyvQ", + _ZN3sce2Np9CppWebApi14SessionManager2V148GetUsersAccountIdGameSessionsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_41GetUsersAccountIdGameSessionsResponseBodyEEE) +STUB("-kzs1+x1VT4", mono_btls_x509_lookup_add_mono) +STUB("-l+ODHZ96LI", _ZTSSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE) +STUB("-l0coi132nk", _ZN7WebCore9HTMLNames18onpointerleaveAttrE) +STUB("-l4Xb7ME2t4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEE7add_refEv) +STUB("-lDZ0iJq-aE", g_strreverse) +STUB("-lLXUnUCErM", ps3) +STUB("-lPT15AV1Ko", sceBgftServiceIntDownloadCheckPatchUpdateState) +STUB("-lWtMfBycrg", _ZN3sce2npneERK13SceNpOnlineIdRKNS0_10NpOnlineIdE) +STUB("-lZdT34nAAE", sceLibcPafMspaceCalloc) +STUB( + "-la-U+64JcI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEmmEv) +STUB("-lc6XZnQXvM", sceNpPartyGetVoiceChatPriority) +STUB("-ligyqcMDg4", _ZN8meta_gen13TiffRetrieverC2Ev) +STUB("-loJgo7j+qc", sceIduIsAppInstalled) +STUB("-lte7piMiaI", __ubsan_handle_pointer_overflow_abort) +STUB( + "-luK+wcNNWA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEC2Ev) +STUB( + "-lyvSj9csFI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEppEi) +STUB( + "-m--kjUtWb0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEdeEv) +STUB( + "-m10x6TfUPU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEppEi) +STUB( + "-m1cU01p3fY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB( + "-m2YPwVCwJQ", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERl) +STUB( + "-m5E0C9rs5E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "-m5oHRSZ-wA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEE3getEv) +STUB("-m7FIvSBbMM", __kernel_cos) +STUB("-m98cDevvXw", Java_java_io_UnixFileSystem_createDirectory) +STUB("-m9W71uvqwE", _ZN3JSC7Symbols41putAsyncGeneratorInternalFieldPrivateNameE) +STUB( + "-m9ni55p4SE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEplEm) +STUB( + "-mALKeMOtwY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "-mALZnOB7ro", + _ZN15AbstractStorage13YoutubeFolder10NewContentERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_7ContentEE) +STUB("-mCgVKz1DtQ", _ZN3sce7Toolkit2NP2V210Tournament14RegisteredTeamD2Ev) +STUB( + "-mD8wICtB8g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEE7get_refEv) +STUB( + "-mDsLsqwkO0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEEdeEv) +STUB("-mLzBSk-VGs", _ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE) +STUB( + "-mM-SStYLn4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "-mMRjpzzaRc", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEEiRNS2_10LibContextEPT_m) +STUB("-mNG+8lTulY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE5clearEv) +STUB("-mUC21i8WBQ", __atomic_fetch_sub_4) +STUB( + "-mcbmWkWrY8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEE5resetEPS8_) +STUB( + "-md9AgyWZkw", + _ZN9Inspector22InspectorDebuggerAgent27didCreateFrontendAndBackendEPNS_14FrontendRouterEPNS_17BackendDispatcherE) +STUB("-miUmZ859Zc", qs8) +STUB( + "-ml-r3BIltk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEdeEv) +STUB("-moGynfbX70", WKCertificateInfoGetVerificationError) +STUB( + "-mseOIItMc4", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearch14getsearchIndexEv) +STUB("-n+GMwKBaD0", _ZN3WTF7RunLoop6wakeUpEv) +STUB("-n+x6ZBExPE", _ZN3WTF6StringC2ENS_12ASCIILiteralE) +STUB("-n-UakYzLj8", _ZN7WebCore9HTMLNames8trackTagE) +STUB("-n0CR0QxhnY", _ZN3sce2np9LocalFileD0Ev) +STUB("-n5a6V0wWPU", sceFontGraphicsGetDrawingFrameHandle) +STUB("-n76SHy67rs", _ZN7WebCore9HTMLNames11optimumAttrE) +STUB("-n7NBjjuabo", sqlite3_column_text) +STUB( + "-nA5ir+uDdA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE5beginEv) +STUB("-nCVE3kBjjA", _ZNKSt5ctypeIcE9do_narrowEPKcS2_cPc) +STUB("-nCbIPeaahM", Java_com_sony_bdjstack_security_aacs_AACSOnline_getContentCertID) +STUB( + "-nGmQUdincs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE5beginEv) +STUB("-nIs+yxg514", + _ZNK3sce2Np9CppWebApi14SessionManager2V131JoinedPlayerSessionWithPlatform11getPlatformEv) +STUB("-nIt6B72SLA", sceGameRightGetStringSizeInBytes) +STUB( + "-nMH6ELN3Tc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE5emptyEv) +STUB( + "-nO5Bj+dye0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEC2ERKS7_) +STUB("-nR+QX8Cw8Q", rgctx_fetch_trampoline_mrgctx_7_p) +STUB("-nZRyHSBKGk", _ZN3sce7Toolkit2NP2V28Matching12RoomPingTime5resetEv) +STUB( + "-ngUVPlNV7c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE7reserveEi) +STUB( + "-njd3s1IXUk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("-nlP-eBgc5g", _ZN7WebCore16HTMLInputElement10setCheckedEbNS_22TextFieldEventBehaviorE) +STUB("-nsCdQaCzmQ", _ZN3sce7Toolkit2NP2V28Commerce12SubContainerC2ERKS4_) +STUB("-nsIdJK+0Io", sceAppInstUtilAppGetAppInstallStatusByAppInfo) +STUB("-nvxBWa0iDs", gethostname) +STUB("-ny9i-XOgiI", ScePsmMonoDebugInit) +STUB("-o1p4Zg6WN4", _ZN7WebCore15DeferredPromise12callFunctionERN3JSC9ExecStateENS1_7JSValueES4_) +STUB("-o5uEDpN+oY", sceKernelConvertUtcToLocaltime) +STUB("-o8Vy6K2H-g", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking8TempRankEEC1Ev) +STUB( + "-o9PXTVNSAE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEEC1EPSA_PNS2_10LibContextE) +STUB("-oW-aAeCPs4", _ZNK3WTF7SecondsplERKNS_24TimeWithDynamicClockTypeE) +STUB("-oXhq4b+gRQ", + _ZN7WebCore32ScrollingStateFrameScrollingNode26setMaxLayoutViewportOriginERKNS_10FloatPointE) +STUB("-oY8Z+8BCww", _ZN4Manx10createDateEP14asn1_string_st) +STUB( + "-ohRFGI2340", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("-okWJcF+8ms", _ZN3JSC11Interpreter13dumpCallFrameEPNS_9ExecStateE) +STUB("-ol1QIFvnE4", WKPageCanGoForward) +STUB("-olF613Aywk", _ZN3sce7Toolkit2NP2V28Presence8PresenceC2ERKS4_) +STUB( + "-oqkAUNWJnM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEEcvbEv) +STUB("-p2Gvg7QqFo", sceSpPthreadAttrSetstacksize) +STUB("-p6Rz-s2DY8", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi20ParameterToJoinMatch9terminateEv) +STUB( + "-p7EIfcb-Go", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB("-p97-goGFC4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce19ServiceEntitlementsEE3getEv) +STUB("-pAtC74McJ8", WKPreferencesSetIntersectionObserverEnabled) +STUB("-pJtpmd6fWQ", _ZN3sce7Toolkit2NP2V27Session11SessionDataC2Ev) +STUB("-pOg5A6Yr6g", blockpool_batch) +STUB("-pQZrVK6Lj0", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V115LastUpdatedUser13onlineIdIsSetEv) +STUB("-pVA-QEcWok", png_get_rows) +STUB("-pXo4ukFBjQ", + _ZNK3sce2Np9CppWebApi12Leaderboards2V123RecordScoreResponseBody6toJsonERNS_4Json5ValueEb) +STUB( + "-pZhklYwFZs", + _ZN3sce7Toolkit2NP2V28Commerce26setPsStoreIconDisplayStateERKNS3_7Request26SetPsStoreIconDisplayStateEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB( + "-paFEoIyxWg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "-pd0GLAshZU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "-pdt+SceONQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEE7add_refEv) +STUB("-peRvZEv-W8", _ZN15AbstractStorage14FacebookFolder8NextItemEPSt10shared_ptrINS_4ItemEE) +STUB("-pjHhph0ZUc", sceAgcSetStaticBuffer) +STUB("-pnj3-7a6QA", unity_mono_set_user_malloc_mutex) +STUB("-pnxCYYTHdA", _ZN7WebCore9DOMWindow29setCanShowModalDialogOverrideEb) +STUB( + "-po3gSw7A+0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEC2EPS8_) +STUB("-ptjV9t-QiA", + _ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBodyC1EPNS1_6Common10LibContextE) +STUB( + "-pv-azgQ4Sw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB( + "-pwe9t0yj7w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEaSERKS9_) +STUB( + "-pyph9+fiic", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE7reserveEi) +STUB("-pzYDZozm+M", sceAudio3dPortQueryDebug) +STUB("-q4M5WX0Jrs", sceFiosCancelAllOps) +STUB( + "-q5NR3+q2MM", + _ZN3sce2Np9CppWebApi7Matches2V120RequestTeamStatistic23setTeamMemberStatisticsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_26RequestTeamMemberStatisticEEEEE) +STUB("-q9sR0cRUGc", mono_parse_default_optimizations) +STUB( + "-qEpXgFo4mo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEEC1EPS6_PNS2_10LibContextE) +STUB("-qI5Fo4U5J0", _ZN3sce7Toolkit2NP2V210Tournament7Request18GetRegisteredTeamsD2Ev) +STUB( + "-qKO81a13sA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEEaSERKSA_) +STUB("-qLsfDAywIY", sceAjmBatchWait) +STUB("-qMXl9DNcac", _ZN3WTF3URLC1ERKS0_RKNS_6StringEPKNS_15URLTextEncodingE) +STUB( + "-qPML+nD9xk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE5emptyEv) +STUB("-qRVEmNwCDs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEmmEi) +STUB( + "-qWn3hvM7Jo", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE11hasResponseEv) +STUB( + "-qYHkxC72sY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEE7add_refEv) +STUB( + "-qYqo3TC+8I", + _ZN9Inspector14InjectedScript14callFunctionOnERN3WTF6StringERKS2_S5_S5_bbRNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsIS9_EEEERNS1_8OptionalIbEE) +STUB("-qYw1YiPsQI", sceClPthreadAttrDestroy) +STUB( + "-qZ5dUEseso", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEmmEv) +STUB("-qZvnKBIkGg", __asan_storeN_noabort) +STUB("-qas2+AuyW0", _ZN7WebCore9HTMLNames12autosaveAttrE) +STUB( + "-qbwU7PeX04", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEmmEi) +STUB("-qdAdV-PiqI", ScePsmMonoThreadSetThreadsExhaustedCallback) +STUB("-qdwpSkSadg", + _ZN3JSC19HeapSnapshotBuilder22appendPropertyNameEdgeEPNS_6JSCellES2_PN3WTF17UniquedStringImplE) +STUB("-qfOrY2DCtc", jpeg_write_marker) +STUB( + "-qfSPUkyJcU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE8copyFromERKS9_) +STUB( + "-qfncQvXf2o", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V126BandwidthDownstreamMetrics6toJsonERNS_4Json5ValueEb) +STUB("-qjm2fFE64M", sceNpTrophySystemIsServerAvailable) +STUB("-qjq0kJTo8I", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEE7add_refEv) +STUB("-qkGW7vL9HI", JVM_TotalMemory) +STUB( + "-qlyOH8CIzg", + _ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody15setJoinDisabledERKb) +STUB( + "-qrF2GkcbjA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("-quPa4SEJUw", scePthreadAttrGetstack) +STUB("-qvSeihxW6k", _ZN7WebCore13MIMETypeCachedaEPv) +STUB("-qwk1RxUuDA", FTA_Export_Module_pcf) +STUB( + "-r0HgIg9s9o", + _ZN7WebCore22EmptyFrameLoaderClient21dispatchDidCommitLoadEN3WTF8OptionalINS_18HasInsecureContentEEENS2_INS_13UsedLegacyTLSEEE) +STUB("-r23ePSw30o", WKBundleInspectorSetPageProfilingEnabled) +STUB( + "-r6FNBAA0aU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEC1EPKS8_) +STUB("-r7MQkyDXXs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEE7get_refEv) +STUB( + "-rEvUxwc4xY", + _ZN9Inspector21InspectorConsoleAgent17addConsoleMessageESt10unique_ptrINS_14ConsoleMessageESt14default_deleteIS2_EE) +STUB( + "-rG+Jj0+WKM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE21intrusive_ptr_add_refEPS9_) +STUB("-rIV1NbfHpI", _ZN3sce7Toolkit2NP2V23TUS7Request10DeleteDataD2Ev) +STUB("-rJY6WDua3s", sceAppInstUtilAppSetSavedataUploadStatus) +STUB("-rPezWe+1h4", _ZN3sce7Toolkit2NP2V212ActivityFeed5Media20ASPECT_RATIO_MAX_LENE) +STUB("-rXkJO1hOk0", __sys_suspend_process) +STUB( + "-rZM7M+wUOI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEneERKS9_) +STUB( + "-rdIgQDVTK4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEEdeEv) +STUB("-rdXUi2XW90", sceHttp2GetAllResponseHeaders) +STUB("-rlG+vYrV58", _ZN7WebCore13endOfDocumentERKNS_15VisiblePositionE) +STUB( + "-rmGwnDY66w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE8pushBackERKS8_) +STUB("-rsLklDvsRw", ucal_getNow_67) +STUB("-rtsXshpfdc", mons) +STUB( + "-rtzyTjX8AM", + _ZN9Inspector23CanvasBackendDispatcherC2ERNS_17BackendDispatcherEPNS_30CanvasBackendDispatcherHandlerE) +STUB("-rvO2El6asc", _ZNK7WebCore16HTMLImageElement19editableImageViewIDEv) +STUB("-rwPbGyZemk", _ZN3JSC19numberOfDFGCompilesEPNS_9ExecStateE) +STUB("-rxaMSaCC6c", sceAvControlSetHdrMetadata) +STUB("-rxzL4mDojQ", _ZN3sce2np9HttpTransC2Ev) +STUB("-rz12+rk6Yc", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_15RankInformationEEC1Ev) +STUB("-s0FkYlv7y4", _ZN3sce2Np9CppWebApi6Common8IteratorINS2_17ParameterBaseImpl6KeySetEEC2Ev) +STUB( + "-s1AHviBnac", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "-s3I-frzijc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("-s4y23rdI0Y", _ZN9Inspector31NetworkBackendDispatcherHandler20LoadResourceCallbackD2Ev) +STUB("-s5Y6vEOZf4", JVM_CountStackFrames) +STUB("-s98d979pPQ", WKBundleFrameCopySecurityOrigin) +STUB("-sAXgArt0ts", JVM_InitializeCompiler) +STUB("-sD02mFDBh4", sceUserServiceGetGamePresets) +STUB("-sDxqsfDDFE", _ZN3sce7Toolkit2NP2V211UserProfile7Request13GetNpProfilesC2Ev) +STUB( + "-sIUDBScvxc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEeqERKS9_) +STUB( + "-sIzwXne5RA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE5beginEv) +STUB("-sOfRcPQwrk", coil_initialize) +STUB("-sQ3aB-rrVw", _ZN3WTF14FileSystemImpl12readFromFileEiPci) +STUB("-sSm+ykHOgc", _ZN3JSC7Symbols12searchSymbolE) +STUB("-sTHNB0pBec", _ZN7WebCore4Page24scrollingStateTreeAsTextEv) +STUB( + "-sWeVJUAmn4", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi22getLargeDataByObjectIdEiRKNS4_33ParameterToGetLargeDataByObjectIdERNS1_6Common11TransactionINS8_12IntrusivePtrINS8_6BinaryEEENSA_INS4_37GetLargeDataByObjectIdResponseHeadersEEEEE) +STUB("-sgi7EeLSO8", sceUsbdFreeTransfer) +STUB("-sjd++qKqaU", _ZNK3JSC14ProtoCallFrame9codeBlockEv) +STUB( + "-slYWx0vx1E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEED2Ev) +STUB( + "-sqXrL5A6Lw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEE7get_refEv) +STUB("-suVQEKu2bY", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17GetGameDataResultEE19setCustomReturnCodeEi) +STUB("-svXEpYit6c", sceNpTrophySystemCheckNetSync) +STUB("-svZFUiG3T4", _LGamma_big) +STUB("-swGGmA0SP8", _ZN7WebCore19ResourceRequestBase5equalERKNS_15ResourceRequestES3_) +STUB("-swgMjedLUQ", _ZN3sce2np9NpTitleId5ParseEPS1_PKcm) +STUB("-sxz-ThMtGM", _ZN15AbstractStorage4Item7GetNameEv) +STUB("-syPONaWjqw", _ZNKSt12future_error8_DoraiseEv) +STUB("-t+qNlMCAQU", _ZN7WebCore11DisplayList13ClipOutToPathD1Ev) +STUB( + "-t0Y+88pdk8", + _ZThn24_N9Inspector22InspectorDebuggerAgent18setBreakpointByUrlERN3WTF6StringEiPKS2_S5_PKiPKNS1_8JSONImpl6ObjectEPS2_RNS1_6RefPtrINS8_7ArrayOfINS_8Protocol8Debugger8LocationEEENS1_13DumbPtrTraitsISI_EEEE) +STUB( + "-t17xWcHiAs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "-t1gyDSBcNU", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "-t3V-9ggZXo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEaSERKS9_) +STUB( + "-t4n6Urw-K4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEE11release_refEv) +STUB("-t8PVjghGo4", u_strFindFirst) +STUB( + "-t8eK4WxVIo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEppEv) +STUB( + "-tCqWdb6VFw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEE7add_refEv) +STUB("-tEPJ84QOzw", WKBundleHitTestResultGetIsSelected) +STUB("-tGCVwk0ehU", _ZN7WebCore20TransformationMatrix5flipXEv) +STUB("-tGFs7UG2C8", mono_aot_Mono_CSharpmethod_addresses) +STUB( + "-tLsL46f4RQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB( + "-tMIMzDv13g", + _ZN7WebCore7JSRangeC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_5RangeENS6_13DumbPtrTraitsIS8_EEEE) +STUB("-tPqziuAbt0", _ZNK3WTF24TimeWithDynamicClockTypeltERKS0_) +STUB("-tbc2SxQD60", sceNgs2SystemSetSampleRate) +STUB( + "-tcVY3zWzRU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEE11get_deleterEv) +STUB("-tlIe5rL66Y", _ZN8meta_gen13JpegRetriever14ProcessCOMDataEv) +STUB("-tpoeCMP1oE", _ZN7WebCore4Page26setRemoteInspectionAllowedEb) +STUB( + "-trbLproOio", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE3endEv) +STUB( + "-twLeOTEjqg", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("-tx04RSdVXg", + _ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody14smallDataIsSetEv) +STUB("-u3XfqNumMU", _readdir_unlocked) +STUB( + "-u57M+jJaWg", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS2_6VectorINS5_INS1_13InGameCatalog2V59ContainerEEEEEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB( + "-u7tZaAOkc8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEneERKS9_) +STUB("-u82z1UhOq4", sceHmdInternalGetEyeStatus) +STUB( + "-uC7vuyAKbY", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V333CommunicationRestrictionStatusApi44ParameterToGetCommunicationRestrictionStatus16setaccountIdOrMeEm) +STUB( + "-uFpwyl6ztQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEE7get_refEv) +STUB("-uGg2VIywqc", _ZNK7WebCore5Color23colorSpaceAndComponentsEv) +STUB( + "-uIJMFiYCGU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEEC1Ev) +STUB( + "-uIwo8bMn4w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEE11release_refEv) +STUB("-uLGa2Nmdg8", _ZN3JSC11VMInspector9dumpValueENS_7JSValueE) +STUB("-uP4aIu-qto", + _ZNK3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer12getAccountIdEv) +STUB("-uQnUEENfpk", _ZN3sce4Json6Object4PairC1Ev) +STUB("-uSVGcnoANY", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V15ErrorD2Ev) +STUB( + "-uceumMYtY0", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessions30setpostGameSessionsRequestBodyENS1_6Common12IntrusivePtrINS3_27PostGameSessionsRequestBodyEEE) +STUB( + "-udU3of5eY0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE3endEv) +STUB( + "-uiFfIfq+uw", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEEiRNS2_10LibContextEPT_m) +STUB("-uk3H89dO8o", il2cpp_type_get_object) +STUB("-umGRHNUiZU", sceVrSetupDialogGetResult) +STUB("-un+ko0hE9Y", _ZN3JSC7Symbols14iteratorSymbolE) +STUB( + "-unHuvv5K5o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEaSERS7_) +STUB( + "-uoRJA0MJL4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("-upQQo+sfIY", jpeg_mem_available) +STUB( + "-utk3QIiYIM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "-uvWC+sFCpU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEC2EPS8_) +STUB("-uyhX+nfLTw", _ZN7WebCore11DisplayList8FillRectD0Ev) +STUB( + "-uzFDKDL+BQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEED2Ev) +STUB( + "-uzJDP09EZA", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi27ParameterToLeaveGameSession10initializeEPNS1_6Common10LibContextEPKcSA_) +STUB( + "-v-oMpTcopc", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("-v111tr2mlo", mono_aot_Sce_Vsh_VideoEdit_Wrapperjit_code_end) +STUB( + "-v1W8zSXfYQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEmmEv) +STUB( + "-v3js2bWcwY", + _ZN3sce2Np9CppWebApi7Matches2V126ResponseTeamResultsFactory6createEPNS1_6Common10LibContextEPKciPNS5_12IntrusivePtrINS3_19ResponseTeamResultsEEE) +STUB("-v5CZVGkN3k", cairo_device_to_user_distance) +STUB("-v66AtHKMFw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEEC1ERS7_) +STUB("-vCCXPR60RU", _ZThn120_N7WebCore16HTMLMediaElement12endScrubbingEv) +STUB("-vFcS1GDF+A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEEmmEi) +STUB( + "-vJng1t2tSg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "-vM5SMEs6As", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEEC2ERSA_) +STUB( + "-vNbpqCWr74", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE7reserveEi) +STUB( + "-vNuQdJ87kY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE8copyFromERKS9_) +STUB( + "-vOf4TpOsaI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE8copyFromERKS9_) +STUB("-vTN1-5hhaQ", delegate_invoke_impl_target_10_p) +STUB("-vXEQdRADLI", strtok_s) +STUB("-vc-xL+G8u0", sceAgcDriverUserDataWritePacket) +STUB("-vcUDvj8VFQ", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TSS7TssDataEE19setCustomReturnCodeEi) +STUB( + "-vgoekkJV-k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "-vhiB4hK-i4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEixEm) +STUB("-vl7baUxbyA", lnbias) +STUB("-vnlTPPXPrw", sceAgcDcbAcquireMemGetSize) +STUB("-vqI0G6ytM8", _ZNK3sce3Xml3Dom4Node13hasChildNodesEv) +STUB( + "-vr5WYrLYW8", + _ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer8fromJsonERKNS_4Json5ValueE) +STUB( + "-vrwJepbH1M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEED2Ev) +STUB("-vxgxZcAHnE", _ZNK3sce2Np9CppWebApi13InGameCatalog2V55Error16referenceIdIsSetEv) +STUB("-vyIrREaQ0g", _Dint) +STUB( + "-w-V9zq+Wzg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEC1EPS6_PNS2_10LibContextE) +STUB( + "-w4+GiwSpNM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEC1Ev) +STUB( + "-wH49i0x-K0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEEC2Ev) +STUB("-wHZ8S63YE4", Java_com_sony_mhpstack_debug_DebugOutput_setNativeDebugFlag) +STUB("-wIAG588mvg", sceCompositorInsertThreadTraceMarker) +STUB("-wJZ+9oc8vw", + _ZN3JSC25JSSegmentedVariableObject12heapSnapshotEPNS_6JSCellERNS_19HeapSnapshotBuilderE) +STUB("-wLqOjaIZaU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEeqERKS9_) +STUB("-wUggz2S5yk", sem_setname) +STUB("-wV7wE9SH-I", ustr_hashCharsN) +STUB("-wX0puxJChY", sceCesUcs2ToUhc) +STUB("-wZONZBAxqs", _ZN7WebCore9IPAddressC2ERK11sockaddr_in) +STUB("-wa17B7TGnw", _ZN3sce4Json5ValueC2Ev) +STUB("-wej5W2FojU", mono_aot_Sce_Vsh_Lxunbox_trampoline_addresses) +STUB("-whG27+m+C0", FTA_Remove_Module_pfr) +STUB("-wsUTr31yeg", sceAudioPropagationSourceSetAttributes) +STUB( + "-wsxvWghjHw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEC1Ev) +STUB( + "-wwDKhon7Mk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("-wwez8FhY5g", _ZNK3sce2Np9CppWebApi6Common8IteratorIjEneERKS4_) +STUB("-wzZ7dvA7UU", pthread_attr_getaffinity_np) +STUB("-x5vK4NNNYM", WKDownloadGetTypeID) +STUB("-xFvxRPfTng", _ZN3WTF7RunLoop9TimerBaseD0Ev) +STUB( + "-xGGJ9OYasU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEEptEv) +STUB("-xHVS4PppCM", _ZNK7WebCore15HTMLLinkElement2asEv) +STUB( + "-xOElF2SLZc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEEcvbEv) +STUB( + "-xOoiK8HfDI", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("-xSSlX+qymM", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container18unsetContentRatingEv) +STUB( + "-xT100Y2VJA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEED2Ev) +STUB("-xed3nTuxmc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEC1ERS7_) +STUB("-xgNSAybCRM", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V117ConnectionQuality11unsetGlobalEv) +STUB( + "-xiNFj3pTtU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("-xjMmZr5+Pg", unumsys_openAvailableNames_59) +STUB("-xm7kZQNpHI", sceHttpSetEpoll) +STUB("-xuLizlityE", _ZN7WebCore20fillWithEmptyClientsERNS_17PageConfigurationE) +STUB("-xwk8hvGHZo", _Z16WTFCrashWithInfoiPKcS0_i) +STUB("-y-tRnUpuVE", glTexStorage3D) +STUB("-y0ZrMd-RPc", _ZN7WebCore8SVGNames18horiz_origin_yAttrE) +STUB("-y18MAdSy20", _ZN4Manx13WorkQueueImpl10workThreadEPv) +STUB("-y31vUdzeBM", ucnv_close_67) +STUB( + "-y6vNcwWlZE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEdeEv) +STUB("-yCQrJMlne4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEE3getEv) +STUB("-yCg3L8eMEc", Java_java_util_zip_Deflater_init) +STUB("-yDDvULIop8", _ZN3sce2Np9CppWebApi6Common8IteratorImEC2EPm) +STUB("-yNB4-t0-8g", WKViewRestoreBackingStores) +STUB( + "-yQ6yFE-tIo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEC1EPKS8_) +STUB("-yX6wn3uxtY", _ZN3sce7Toolkit2NP15AppSTLAllocatorI16SceNpTusVariableE8allocateEmPKv) +STUB( + "-yXWqzwLQtI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEcvbEv) +STUB("-yYPJb0ejO8", sceShellCoreUtilRequestCameraCalibration) +STUB("-yexw2HJTr4", sceVideoCoreInterfaceFinishRendering) +STUB("-yiV8shH3WY", _ZN3sce7Toolkit2NP2V28Commerce7Request21DisplayCheckoutDialog11MAX_TARGETSE) +STUB( + "-ylQAv0hYl8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEE5resetEPS8_) +STUB( + "-yqEdbg1e-o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("-yxXF7H5Wfk", _ZN7WebCore8DOMTimerD0Ev) +STUB("-yzOAodX+nQ", mono_aot_Sce_Vsh_SQLiteunbox_trampolines) +STUB("-yzonNNSV8E", scePfsGetSingleBlockReadCommand) +STUB("-z+g6idK038", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112GroupingTypeEEmmEi) +STUB( + "-z-ZrNZ73Yw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEE11release_refEv) +STUB( + "-z2eNzpA+4Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "-z394KyTMl0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEE11release_refEv) +STUB( + "-z545hiCwX4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEED2Ev) +STUB( + "-z9RL7YFe+U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEC2Ev) +STUB("-zBw8551Q0Q", _ZN7WebCore20serializationForHTMLERKNS_9DisplayP3IfEE) +STUB("-zDMrM-vwTo", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyleC2EPNS1_6Common10LibContextE) +STUB( + "-zEvjr6MBaE", + _ZN9Inspector26TimelineFrontendDispatcher13eventRecordedEN3WTF6RefPtrINS_8Protocol8Timeline13TimelineEventENS1_13DumbPtrTraitsIS5_EEEE) +STUB("-zJi8Vb4Du4", sceGnmSpmSetSpmSelects) +STUB("-zJyi2xdzIA", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE4sizeEv) +STUB("-zKhyRjPW5s", sceDeci4hDrfpTruncate_fuse_fullpath) +STUB("-zRnJ7WoWSY", sceVideoOutSetAlphaControl) +STUB( + "-zXOaFXUbiI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE7reserveEi) +STUB("-zaXhPoavkU", mtx_recvtbl) +STUB("-zacmF3Qq-o", _ZN7WebCore11MathMLNames7msupTagE) +STUB("-zbpF68OGDs", _ZN3sce2np10Cancelable12UnlockCancelEPKciS3_) +STUB("-zdIQTx0P1Q", _ZN7WebCore6Editor21removeTextPlaceholderERNS_22TextPlaceholderElementE) +STUB("-zeC1rUDOiU", _ZN3JSC8JSObject14deletePropertyEPNS_6JSCellEPNS_9ExecStateENS_12PropertyNameE) +STUB("-zePrByewAY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEE3getEv) +STUB( + "-zeTrKKgJd0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEC2EPNS2_10LibContextE) +STUB( + "-zff5kt0Ufw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE5eraseENS2_8IteratorIS6_EERS9_) +STUB( + "-zhp5N+79Zo", + _ZN15AbstractStorage12LocalService19isSandBoxRandomWordERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB( + "-zi8OTrHAE4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEptEv) +STUB( + "-znbV-zUa5o", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEplEm) +STUB("-zpfGY1n49E", sceCompositorSetIndirectCanvasCommand) +STUB("-zr4F1xDgGA", _ZN3JSC16setNeverOptimizeENS_7JSValueE) +STUB( + "0+6f5xRnrB0", + _ZN7WebCore18StyleSheetContentsC2EPNS_15StyleRuleImportERKN3WTF6StringERKNS_16CSSParserContextE) +STUB( + "0+70HfivZbA", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi32ParameterToPostGameSessionsTouchC2ERS5_) +STUB("0+JSM3SBayM", rgctx_fetch_trampoline_rgctx_79) +STUB("0+KF-BexTEs", _ZN13MsvMetaEditor13updateTfhdBoxEi) +STUB("0+LtsbPVpt8", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12Notification14NetStateChangeEE3getEv) +STUB( + "0+O7IUGvHhM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEEC1ERKS9_) +STUB("0+OqE8ZvYdk", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE5emptyEv) +STUB( + "0+QaOhEt-eA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEEaSERSA_) +STUB("0+RzOhf4ICE", ubidi_getClass_67) +STUB( + "0+XCZbksP38", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("0+XUyoFn-X4", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEEixEm) +STUB( + "0+aLF7oONyo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC2Ev) +STUB( + "0+f3OadPRcY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEC2Ev) +STUB("0+fKPnnT5oM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE5emptyEv) +STUB("0+l4QSWCM4E", sceNpUniversalDataSystemEventPropertyArraySetBool) +STUB( + "0+x5D2CPMOM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEE5resetEPS6_) +STUB( + "0+xSyywA-MQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEplEm) +STUB( + "0+zKE3VIAUQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEEptEv) +STUB("0-+cyzuM1yM", mono_aot_Sce_Vsh_PatchCheckerClientWrapperjit_code_end) +STUB("0--XhDM7E-Q", sceFiosFHTruncate) +STUB("0-24WRoyyAg", sqlite3_extended_result_codes) +STUB( + "0-2LiKwWKH8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEEC2ERKSA_) +STUB( + "0-3Vu0D+-VM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("0-7Lz-ja4pg", + _ZN3sce2Np9CppWebApi15Personalization2V111ErrorEntity8fromJsonERKNS_4Json5ValueE) +STUB("0-9AOriGZNk", mono_aot_Sce_Vsh_VrEnvironmentjit_code_start) +STUB( + "0-AQoeTc9kM", + _ZN7WebCore15UserInputBridge31handleMouseMoveOnScrollbarEventERKNS_18PlatformMouseEventENS_11InputSourceE) +STUB( + "0-BsTa5txAU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("0-JKIdd-Rvk", + _ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody18getCreatedDateTimeEv) +STUB("0-KXaS70xy4", pthread_getspecific) +STUB("0-KnocDI0+k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEC1Ev) +STUB("0-XSSp1kEFM", sceNetShowRouteWithMemory) +STUB("0-XTGFTkVho", rgctx_fetch_trampoline_mrgctx_99_p) +STUB("0-ZdVDOV+Yc", _ZN7WebCore15SQLiteStatement8finalizeEv) +STUB( + "0-aMin1Le2U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "0-coFk2eyUA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEC1Ev) +STUB("0-eiiT9bGD0", mono_debug_set_debug_handles_hash) +STUB("0-gJZCSPyTU", mono_aot_Sce_Vsh_RequestShareScreenmethod_addresses) +STUB("0-gXGwKpQWA", _ZN7WebCore11EditCommand18setEndingSelectionERKNS_16VisibleSelectionE) +STUB("0-hyCuMaxIY", rgctx_fetch_trampoline_mrgctx_62_p) +STUB( + "0-mWELhv81k", + _ZN9Inspector25DebuggerBackendDispatcher13setBreakpointElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("0-p4O8FINmU", sceFiosDHCloseSync) +STUB("0-r7qGk8u00", _ZN7WebCore17HTMLButtonElement7setTypeERKN3WTF10AtomStringE) +STUB( + "0-sLAdPRiFk", + _ZN3sce7Toolkit2NP2V23TUS18getUsersDataStatusERKNS3_7Request18GetUsersDataStatusEPNS2_4Core8ResponseINS3_15TusDataStatusesEEE) +STUB( + "0-wx+-eSIBQ", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB( + "00+cKm9Yqds", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEE5resetEPS9_) +STUB( + "000JYjZv4Kk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEEC1EPS6_PNS2_10LibContextE) +STUB("000Tp+Ql3zs", _ZN7WebCore9HTMLNames15incrementalAttrE) +STUB("007PjrBCaUM", _ZTISt8messagesIwE) +STUB( + "008beiLjEks", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEC2EPKS8_) +STUB("00BBdVDT4fY", _ZN3WTF16AtomicStringImpl10addLiteralEPKcj) +STUB( + "00DjG2jckQY", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEEiRNS2_10LibContextEPT_m) +STUB("00EPIYJdiQk", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_11TusVariableENS2_IS4_EEEE7addressERS6_) +STUB("00L0+wPHuoo", mono_aot_Systemunbox_trampolines) +STUB("00MQVzW2OPY", ft_service_list_lookup) +STUB("00MqIAHRDTI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEC1ERS7_) +STUB("00MsjThIJMQ", _ZN8meta_gen13JpegRetrieverC2Ev) +STUB( + "00O-cR8jHc0", + _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container12setPublisherERKNS1_6Common12IntrusivePtrINS3_9PublisherEEE) +STUB( + "00RbVreytfc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE5clearEv) +STUB("00VHzMwfMLo", _ZN3sce7Toolkit2NP2V26Friend12Notification16FriendlistUpdateD2Ev) +STUB("00WMA5IAdWU", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEEixEm) +STUB( + "00ikSIxY70o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEEC2Ev) +STUB( + "00oCq0RwSAY", + _ZN3sce4Json11Initializer27setGlobalNullAccessCallBackEPFRKNS0_5ValueENS0_9ValueTypeEPS3_PvES7_) +STUB("00sV341FsTQ", mono_aot_Sce_Vsh_EventAppunwind_info) +STUB( + "00taCCGeslQ", + _ZN3sce2Np9CppWebApi14SessionManager2V131PlayerSessionPushContextFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_24PlayerSessionPushContextEEE) +STUB( + "010dD-Cc9xw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEED2Ev) +STUB( + "011afDHMiYs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEneERKS9_) +STUB("018Raq8Lamk", makeUlpResHdr) +STUB("01ArAPcJI8A", ures_initStackObject_67) +STUB("01BHTyfcbBs", _ZN15AbstractStorage15HttpTransactionC2Ev) +STUB("01CjkW7gpt4", _ZNK15AbstractStorage15FacebookService14GetServiceTypeEv) +STUB( + "01EM0m7MoN4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE8capacityEv) +STUB("01FSgNK1wwA", _ZTIPf) +STUB( + "01G-VXcZ1LM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "01GvW40Rco8", + _ZN7WebCore22EmptyFrameLoaderClient31dispatchDecidePolicyForResponseERKNS_16ResourceResponseERKNS_15ResourceRequestENS_21PolicyCheckIdentifierERKN3WTF6StringEONS8_8FunctionIFvNS_12PolicyActionES7_EEE) +STUB("01IKkgXrFxs", _ZN3WTF10StringImpl8utf8ImplEPKDsjRPcmNS_14ConversionModeE) +STUB("01PaG-30BLo", s17) +STUB("01SXdBkxuT8", u_isdefined_67) +STUB("01ZGV2VvBPU", + _ZNK3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody18minScoreLimitIsSetEv) +STUB("01beKkjIUv8", _ZN7WebCore36ContentSecurityPolicyResponseHeadersC1ERKNS_16ResourceResponseE) +STUB( + "01bqraVI114", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE5beginEv) +STUB("01c9ykWxC9g", _ZN3JSC8Debugger11unwindEventEPNS_9ExecStateE) +STUB("01f6nGTidnw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEEC1ERS9_) +STUB( + "01h2YMZ-Fec", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEE11release_refEv) +STUB("01jVBuB-lss", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container16unsetContentTypeEv) +STUB( + "01kKYnc7ot0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE5clearEv) +STUB("01nXitlGn8k", _ZN7bmalloc9Allocator16allocateSlowCaseEmNS_13FailureActionE) +STUB("01oONQ6ph3A", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEEdeEv) +STUB( + "01ujcXr-BT8", + _ZN7WebCore11EventTarget16addEventListenerERKN3WTF10AtomStringEONS1_3RefINS_13EventListenerENS1_13DumbPtrTraitsIS6_EEEERKNS0_23AddEventListenerOptionsE) +STUB("01weqI-hq0U", _ZThn24_N9Inspector22InspectorDebuggerAgent6enableERN3WTF6StringE) +STUB("01xW5jub3Zk", mono_aot_Sce_Vsh_Orbis_Bgftunbox_trampoline_addresses) +STUB( + "020m4hWt1jA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB("0239JNsI6PE", sceNetConfigDelIfaddr) +STUB("029SwUP7kXc", _ZN7WebCore21JSTextTrackCueGeneric9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB( + "02Cat6UcS8A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEE5resetEPS9_) +STUB( + "02DG1seekFs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("02PROQf1LGc", utrace_vformat_67) +STUB( + "02W+bjP5nD4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEneERKS9_) +STUB("02ZQTDg-NHI", _ZN7WebCore9HTMLNames7codeTagE) +STUB( + "02awqPQp+fo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEE11get_deleterEv) +STUB( + "02b6+X+QgcM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEixEm) +STUB("02cdVxUq6Aw", _ZN3sce7Toolkit2NP2V26Friend15FriendsOfFriendC1Ev) +STUB("02ekiNf2IvQ", rgctx_fetch_trampoline_rgctx_38) +STUB( + "02gbYCyrzhk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB("02nPI+P0g8o", sceNpSnsTwitchCreateRequest) +STUB("02ozaKssy98", sceAvSettingNotifyResponseForSocialScreen) +STUB( + "02rTCbd1Gsc", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData44unsetxPsnTcsComparedLastUpdatedUserAccountIdEv) +STUB( + "02yWE1VJmfg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEC1EPS8_) +STUB( + "03+6+xbrMS8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB("031dJi8CRG4", _ZN7WebCore30plainTextReplacingNoBreakSpaceERKNS_11SimpleRangeEtb) +STUB("03667rjzfts", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13WhoLikedStoryEEC2Ev) +STUB("039VxYQ-evo", mallopt) +STUB( + "03BE9pXugt4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEC2ERKS7_) +STUB("03CHVjtPKv0", _ZN12video_parser14cVideoOperatorC1Ev) +STUB( + "03Fw9wQ61ic", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEE7add_refEv) +STUB( + "03HW+HJ6lQA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEC2Ev) +STUB("03K3wacufYs", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE3endEv) +STUB("03N9BE6uvpo", umutablecptrie_clone) +STUB( + "03OaN7zqU6c", + _ZN3sce2Np9CppWebApi14SessionManager2V140PostGameSessionsSearchRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_33PostGameSessionsSearchRequestBodyEEE) +STUB("03RZmELWWzw", sceAgcCbSetUcRegistersDirect) +STUB("03U1u-RK3vg", _ZN4IPMI4impl11SessionImpl13emptyMsgQueueEj) +STUB("03UlDLFsTfw", _ZN3sce2np9EventFlag5ClearEm) +STUB( + "03VdHjMkVLc", + _ZNK3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession25playerJoinableStatusIsSetEv) +STUB("03dwJf2iIhQ", rgctx_fetch_trampoline_mrgctx_95_p) +STUB("03eJ3gM7Wgk", _ZN7WebCore8SVGNames11hangingAttrE) +STUB( + "03mReIg88gA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEEdeEv) +STUB( + "03sfVpe0Gqk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEC2Ev) +STUB("03vXp9LaHDM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11InvitationsEE3getEv) +STUB("03w8Wi7eD-A", sqlite3_step) +STUB( + "04+NqNw5cCM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE8capacityEv) +STUB("040qjk6Ckdg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEED2Ev) +STUB( + "041IP9GM+kA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEC1EPKS8_) +STUB("041c37QfoUc", _ZNSt15basic_streambufIwSt11char_traitsIwEE6xsputnEPKwi) +STUB("043lNaI5rhg", _ZN3WTF15ThreadConditionC1Ev) +STUB( + "047Y0y87-OI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("047cYEcKtJA", _ZN7WebCore11MediaPlayer5paintERNS_15GraphicsContextERKNS_9FloatRectE) +STUB("04ARvaGcQFU", _ZNK7WebCore3URL12isolatedCopyEv) +STUB("04AjkP0jO9U", _umtx_op) +STUB("04JRU1Uf8Ms", sceAgcDriverModuleRegistration) +STUB( + "04RrF57B2Bc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("04SGUwIDmfE", _ZN3sce7Toolkit2NP2V26Trophy7Request19GetUnlockedTrophiesD1Ev) +STUB( + "04UE+foMiBU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEC1ERS7_) +STUB("04XvCW-DZys", JSWeakObjectMapCreate) +STUB( + "04Y7T+-jOqU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEEC1ERKSA_) +STUB( + "04iS5WgvYKg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEC2Ev) +STUB("04jmNcEmNs4", _ZN7WebCore13MIMETypeCacheD1Ev) +STUB("04mJ2uwaadw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEC2Ev) +STUB("04ztP4DeGdw", __remquo) +STUB("04zv+0zNJkg", sceRegMgrSrvGetMachineType) +STUB("05+CBCmyaq4", _ZN3sce7Toolkit2NP15AppSTLAllocatorIiE7addressERi) +STUB("054i7aDOeq0", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIiEptEv) +STUB("056NZahTIcE", _ZThn24_N7WebCore14DocumentLoaderD0Ev) +STUB("05E7yxe+58U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEED1Ev) +STUB("05HZtE0FPg0", WKContextSetAccessibilityEnabled) +STUB("05ISb1sxzE4", _ZN7WebCore11DisplayList11DrawingItemD2Ev) +STUB("05KEwpDf4Ls", _ZN3sce2np6ObjectdlEPvR14SceNpAllocator) +STUB( + "05Oo2MP6+sE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE5beginEv) +STUB("05OxhjjEjKg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEC1Ev) +STUB("05Td9U4lN78", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEEC2Ev) +STUB( + "05UnoD-AFKY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEcvbEv) +STUB("05Uo75yDn-s", AES_cfb128_encrypt) +STUB("05Uv55TkoHc", sceVideoStreamingEngineMediaKeySessionGetKeyStatuses) +STUB( + "05V9lKyYdJE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE3endEv) +STUB("05WiFmKi36U", JVM_ConstantPoolGetLongAt) +STUB( + "05Xv9g6t0IA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEE7add_refEv) +STUB( + "05YUcRzPkME", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEmmEi) +STUB("05YzC2r3hHo", sceGnmSqttSetTraceBuffer2) +STUB("05cqQH+ZKTk", sceNpServiceChecker2IntGetServiceFlagArray) +STUB("05fwtH36-78", _ZN3sce7Toolkit2NP2V27Ranking10UsersRanks8MIN_PCIDE) +STUB("05ivnENBrnI", + _ZN3sce2Np9CppWebApi7Matches2V119RequestMatchResults10setVersionERKNS3_14ResultsVersionE) +STUB( + "05lq6Sa2gDw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC2Ev) +STUB( + "05lznxHILKc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "05qmP8+9e6Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE4sizeEv) +STUB("05sZvecLe8Q", + _ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends10unsetorderEv) +STUB("05tQK2p2l3o", WKGeolocationPositionCreate_c) +STUB("05yG2pteXBA", mono_aot_Sce_PlayStation_PUIunbox_trampolines_end) +STUB("05yxE28vWu0", _ZN3NTF17URLRequestFileJobC2Ev) +STUB( + "06-98D+7wbQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("068fJfjBVZw", sceDeci4hDrfpReaddir_fuse) +STUB("06AROOK-zaY", sceAppInstUtilAppInstallSharePlayLink) +STUB("06BzAAwCaIg", mono_aot_I18N_CJKmethod_addresses) +STUB("06GoApg-NxU", + _ZN3sce7Toolkit2NP8Sessions9Interface6inviteEPKNS1_16NpSessionRequestEPKNS1_13InviteMessageE) +STUB("06QaR1Cpn-k", floorl) +STUB( + "06VGzReZw-s", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEEiRNS2_10LibContextEPT_m) +STUB("06YrOKWE6sw", rgctx_fetch_trampoline_mrgctx_90) +STUB( + "06ZJ-zMInXM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE5beginEv) +STUB( + "06ZSYUZ+bY0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEEaSERSA_) +STUB( + "06aipIbNfPM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE8capacityEv) +STUB( + "06amGDIiP1I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEEC1Ev) +STUB("06dizTpJ-kw", sceS3dConversionExec) +STUB( + "06emBVxC2PU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "06mAaKD1lEc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEmmEv) +STUB("06sjGRMFCVw", _ZNK7WebCore15ContextMenuItem7enabledEv) +STUB("06vOxgTjZhg", coil_registry_get_int) +STUB("06waOZH+zd4", WKPageGroupRemoveAllUserScripts) +STUB("07+KwPnTihw", _ZN7WebCore8SVGNames18v_mathematicalAttrE) +STUB( + "07-4NtgLvIk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE5emptyEv) +STUB("07-D+uOdr4U", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetInteger9Ev) +STUB( + "074LCk9YeUA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEC2Ev) +STUB( + "077AEg4Vt00", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("078ew7gQLwA", WKPageSetRubberBandsAtBottom) +STUB("07Dax1oKoV8", sceVoiceChatAbortRequest) +STUB( + "07Gsv84h6Uk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB("07KLQ9Fo-WQ", _ZN3sce2Np9CppWebApi13InGameCatalog2V513ContentRating11unsetSystemEv) +STUB("07O525HgICs", sceRtcTickAddSeconds) +STUB("07Q-HvfzY1Y", mono_aot_Sce_Vsh_Orbis_AbstractStoragejit_code_end) +STUB("07did60l+F4", _ZN7WebCore15ScrollAlignment19alignCenterIfNeededE) +STUB("07drtGkizRA", _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSessionD1Ev) +STUB( + "07fCi2raSl4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEC2ERKS7_) +STUB("07gsTgiQMJk", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament16RegisteredRosterEE3getEv) +STUB("07h0AnSh+Xs", _ZN7WebCore9HTMLNames12disabledAttrE) +STUB( + "07mZfVJ5eTU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEaSERKS9_) +STUB("07slamu1UYY", NET_InetAddressToSockaddr) +STUB("08+yKwi1JLE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEEC2ERKS5_) +STUB("08-mhD-AAds", FT_Trace_Get_Count) +STUB( + "088bKfBSKIM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE5beginEv) +STUB("08AQ2wYpzpk", _ZN3sce2np13NpTitleSecretC1Ev) +STUB("08EzCX5QN0w", sceUpsrvUpdateGetUrlForBetaAgreement) +STUB("08HMcvsg15g", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEEppEv) +STUB("08JSg9p6bgQ", sceTextToSpeech2GetSpeechStatus) +STUB( + "08JfVS6W01I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE5clearEv) +STUB("08MKi2E-RcE", sceAudioOutSetHeadphoneOutMode) +STUB("08Mldv4GCkE", WKSessionStateGetTypeID) +STUB( + "08TJJEil2AU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEE7add_refEv) +STUB( + "08YRbeTpcSk", + _ZN7WebCore15SQLiteStatement21getColumnBlobAsVectorEiRN3WTF6VectorIcLm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("08u5HmSZLWI", _ZN7WebCore16nextLinePositionERKNS_15VisiblePositionEiNS_12EditableTypeE) +STUB( + "097U6K6lU2g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEEptEv) +STUB( + "097yI66vBlI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEC2EPNS2_10LibContextE) +STUB("09BCKWlo97Q", _ZNSt9basic_iosIwSt11char_traitsIwEE9set_rdbufEPSt15basic_streambufIwS1_E) +STUB("09C+xS96AKA", mono_breakpoint_clean_code) +STUB("09Cl6tgm2cA", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEcvbEv) +STUB("09DqWeTsQVQ", mono_thread_manage) +STUB("09K3Rbhq3MM", _ZNK3sce2Np9CppWebApi11UserProfile2V112BasicProfile12avatarsIsSetEv) +STUB("09Qw1j90GLw", _ZNK3sce2Np9CppWebApi11UserProfile2V112BasicProfile13relationIsSetEv) +STUB("09SAEP0B3pQ", JVM_Sync) +STUB( + "09XYbBK4zOk", + _ZN7WebCore6Editor19countMatchesForTextERKN3WTF6StringERKNS1_8OptionalINS_11SimpleRangeEEENS1_9OptionSetINS_14FindOptionFlagEEEjbPNS1_6VectorIS6_Lm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("09j9iCj2+sw", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEEC2Ev) +STUB("09jkJlTlT8w", _ZN7WebCore9FrameView17setScrollPositionERKNS_8IntPointE) +STUB("09lWfozUVbc", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12Notification14NetStateChangeEE5resetEv) +STUB( + "09qFsfarp78", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE5emptyEv) +STUB("09tk+kIA1Ns", sceHttp2SetMinSslVersion) +STUB("09uCvMnwNk8", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle9getGlobalEv) +STUB("09uhycRoBVY", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V115CompetitionTypeEEppEi) +STUB( + "09umJuScNEI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB("09vKaCuNyqI", FT_Load_Sfnt_Table) +STUB( + "09zBXMpYwwI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("09zNA3rrUG0", _ZN7WebCore11MathMLNames7dirAttrE) +STUB( + "0A0G6-ksZYs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEneERKS9_) +STUB("0A1kLi9wy1I", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEppEi) +STUB( + "0A4Z2kWVMiY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("0A4ef1lYz3k", mono_aot_JSC_Netjit_code_start) +STUB("0AEWR2mf0dA", _ZN3JSC27threadSpecificAssemblerDataEv) +STUB( + "0ALNeQjaTJ0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEptEv) +STUB("0ALuf7DoGqY", _ZN9MmsMp4BoxC2Ev) +STUB("0APUr5EGKJU", rgctx_fetch_trampoline_mrgctx_92_p) +STUB( + "0APj15+LZf4", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE18getResponseHeadersERSB_) +STUB("0ARVE3ZNWvQ", _ZNK7WebCore8Document3dirEv) +STUB( + "0ASnQS3KDrA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEC2Ev) +STUB("0AVQjKBoUZQ", + _ZN7WebCore16FrameLoadRequestC1ERNS_5FrameERKNS_15ResourceRequestERKNS_14SubstituteDataE) +STUB("0AVQpzac7cg", unum_formatDoubleForFields_67) +STUB("0AWZZJadTmU", + _ZN7WebCore14MicrotaskQueue6appendEOSt10unique_ptrINS_9MicrotaskESt14default_deleteIS2_EE) +STUB("0AYF1Jdj8hY", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification18NewGameDataMessageEE5resetEv) +STUB("0Aal-TIC4so", FT_Outline_Get_BBox) +STUB("0AeC+qCELEA", _ZNSt7_MpunctIcED1Ev) +STUB("0AgCOypbQ90", _Atomic_compare_exchange_weak_4) +STUB( + "0AjHMVftVXw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEE7add_refEv) +STUB("0Am3sBbSwo0", _ZN3sce3Xml3Dom8Document16removeAttributesENS1_6NodeIdE) +STUB( + "0AnMJh7GY+k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("0AoMbZFdLZ4", _ZN3sce7Toolkit2NP2V211UserProfile7Request27GetVerifiedAccountsForTitleC1Ev) +STUB("0Aqqie4gXEY", WKPreferencesGetHiddenPageCSSAnimationSuspensionEnabled) +STUB("0Asl1MoAb7Y", _ZNK7WebCore9FrameView21minimumScrollPositionEv) +STUB("0Aw8GCwET+o", _ZN23sceMetadataReaderWriter11getMimeTypeERKSsRSt6vectorIjSaIjEE) +STUB("0AyT+FwaiVw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE4sizeEv) +STUB( + "0B+FDqQcbYQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEEC2Ev) +STUB("0B-kANfqItU", _ZN3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsTouchResponseBodyD2Ev) +STUB( + "0B3FSubJm8k", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEixEm) +STUB( + "0B44XhgWEI8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEC1Ev) +STUB( + "0B7eupzkEMs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEEC1ERKSA_) +STUB("0B8UBK9QAyY", GCC_except_table23) +STUB( + "0BAA8Pimlcg", + _ZNK3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody13getSearchableEv) +STUB("0BCpX4HXIOg", + _ZNK3sce2Np9CppWebApi14SessionManager2V124PlayerSessionPushContext6toJsonERNS_4Json5ValueEb) +STUB("0BCx5N2IWCI", jpeg_set_linear_quality) +STUB( + "0BG+KQeE9O4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEdeEv) +STUB("0BH6qN1jC50", mono_domain_is_unloading) +STUB("0BMj1hgG+kE", sceAmprMeasureCommandSizeWaitOnAddress_04_00) +STUB("0BNiqtvNqTA", _ZN9Inspector32TimelineBackendDispatcherHandlerD0Ev) +STUB( + "0BPPm5Oq5Ys", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEEC2ERSA_) +STUB("0BPy81HuyCw", jpeg_suppress_tables) +STUB( + "0BU+NMgvLhU", + _ZN9Inspector24CanvasFrontendDispatcher17recordingProgressERKN3WTF6StringENS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol9Recording5FrameEEENS1_13DumbPtrTraitsISB_EEEEi) +STUB( + "0BUh0UN8rnY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEC1EPKS8_) +STUB( + "0BVKOIK0oxc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEED2Ev) +STUB("0BVMql3sg60", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEEcvbEv) +STUB("0BVzO0W+Wbo", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEEppEi) +STUB("0BeeIqfeHwA", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEEC1Ev) +STUB( + "0BhTk3qfGfc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEC1Ev) +STUB("0BiKvnL8Ls4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V120PlayerJoinableStatusEEneERKS7_) +STUB( + "0BiyjZvkEuI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE8pushBackERKS8_) +STUB( + "0BortfYmQRk", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28sendPlayerSessionInvitationsEiRKNS4_39ParameterToSendPlayerSessionInvitationsERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_50PostPlayerSessionsSessionIdInvitationsResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("0Bsyz501NWA", _ZN7WebCore15JSSVGSVGElementC1ERKS0_) +STUB( + "0BtcoCh5nbg", + _ZN9Inspector24RuntimeBackendDispatcher25enableControlFlowProfilerElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "0BviZqvBXaA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("0BzLGljcwBo", sceGnmDispatchDirect) +STUB("0C2wShXZc8Q", _ZN7WebCore24RotateTransformOperationD0Ev) +STUB("0C4AucTqZoc", u_charMirror_59) +STUB("0C5aKg9KghY", sceFontGraphicsSetupShapeFillPlot) +STUB( + "0C6pDUqknH4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("0C9kW9dUXp4", mono_install_trampoline) +STUB("0CAesfH963Q", _ZN3sce4Json6StringC1ERKS1_) +STUB("0CB7Dz8pEuA", _ZNK3WTF3URL5queryEv) +STUB("0CDfsxAzrRU", il2cpp_property_get_get_method) +STUB("0CGMc99sJQc", _ZN3JSC6JSLock12DropAllLocksC2EPNS_14JSGlobalObjectE) +STUB( + "0CIDC2Wdlkw", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetrics17getPercentileRankEv) +STUB("0CMj1as8HmQ", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_20NpSessionInformationEED1Ev) +STUB("0CWP1rGZgcw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEC2Ev) +STUB("0CXUHdlOyB0", _ZNK7WebCore27TranslateTransformOperation10isIdentityEv) +STUB("0CYh09Kj6Yg", _ZN7WebCore12EventHandler26sendContextMenuEventForKeyEv) +STUB("0Cd4Fe0VDPQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEE7add_refEv) +STUB( + "0CeOBfgnffs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEneERKS9_) +STUB("0ClvVCH7yL8", _ZN7WebCore20TransformationMatrix10makeAffineEv) +STUB("0CnwqNph95c", _ZN7bmalloc8FreeListC2Ev) +STUB( + "0CoQY4hl7Jw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEC2EPS8_) +STUB("0CoUVi1Fzws", _ZNSt9_FacetptrISt7codecvtIwc9_MbstatetEE6_PsaveE) +STUB("0CoYb1JENQ0", makeDeciHdr) +STUB("0Coeneps3ug", _ZN7WebCore9HTMLNames12progressAttrE) +STUB("0Cosd1JZb-s", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEEixEm) +STUB("0Cq8ipKr9n0", sceKernelUtimes) +STUB("0CtgWXYiULY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEEC2ERS7_) +STUB("0Cu5IQZsCWA", _ZN9Inspector15RemoteInspector9setClientEPNS0_6ClientE) +STUB( + "0CuSvbXyCws", + _ZN7WebCore20findClosestPlainTextERKNS_5RangeERKN3WTF6StringENS3_9OptionSetINS_14FindOptionFlagEEEj) +STUB("0D-d8of1AKI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEE11get_deleterEv) +STUB("0D2KyH6te08", _ZN7WebCore31TextureMapperPlatformLayerProxy10swapBufferEv) +STUB("0D2xtHQYxII", sceUserServiceSetGlsAccessTokenTwitch) +STUB("0D4-FVvEikw", pthread_cancel) +STUB( + "0D5I44dAg50", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEdeEv) +STUB( + "0D5kkNy8Md4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEEptEv) +STUB( + "0D8mmQVvrXg", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS5_INS7_9RecordApi26RecordScoreResponseHeadersEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("0DGFmG69Co4", _ZN3JSC7Symbols38regExpProtoIgnoreCaseGetterPrivateNameE) +STUB( + "0DM2jQZpNeA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEE7add_refEv) +STUB( + "0DQsPC5QBhY", + _ZN7WebCore8Document15openForBindingsERNS_9DOMWindowES2_RKN3WTF6StringERKNS3_12AtomicStringES6_) +STUB("0DT5bP6YzBo", sceNpTusDeleteMultiSlotData) +STUB("0DY9Snf59Wk", _ZN3JSC14JSGlobalObject13visitChildrenEPNS_6JSCellERNS_11SlotVisitorE) +STUB("0DefFNLazLs", ucol_getDisplayName_67) +STUB("0DkchTKnu8Y", _ZN9Inspector22RemoteInspectionTargetD0Ev) +STUB("0DmmJzqovIo", _ZN3sce2Np9CppWebApi11UserProfile2V113AvatarFactory7destroyEPNS3_6AvatarE) +STUB("0Dp8MrkzUiQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEEC2EPKS6_) +STUB("0DpYxkF3NWY", mono_enable_jit_time_log) +STUB("0DpbxQFwU+Y", _ZN9Inspector21RemoteInspectorServer5startEPKcj) +STUB( + "0Dus4g3vVCY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "0DvUhtR4AQ0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEEC2Ev) +STUB("0E141OCgrqw", u_istitle_67) +STUB("0E2eyiIG7wM", sceAudioSystemSystemSuspend) +STUB("0E4tuBjmqog", sceIduUtilGetCompilationDiscTitleInfo) +STUB("0E5q8C49Zi0", ubidi_getLevels_67) +STUB("0E7kuZbepVg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEED2Ev) +STUB( + "0EA3+KhA2ak", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEmmEv) +STUB( + "0ED2FzRYUmo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("0ELeILzx6IU", + _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse20matchStatisticsIsSetEv) +STUB("0ELyQu0bQIM", WKBooleanCreate) +STUB("0EQViwzMORI", mono_assembly_invoke_search_hook) +STUB( + "0EYm4FhXdEo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "0EYv6MCStO0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "0Eh9aMWUjec", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEEC2EPKS6_) +STUB("0EhLtR7plbI", _ZNK7WebCore17HTMLOptionElement5indexEv) +STUB("0EqR0YW7CDI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEEppEv) +STUB( + "0Eqn40ngE5M", + _ZN3JSC12StringObject18getOwnPropertySlotEPNS_8JSObjectEPNS_14JSGlobalObjectENS_12PropertyNameERNS_12PropertySlotE) +STUB("0Ey5atuU8V0", _ZTVN4IPMI6ServerE) +STUB("0F08WOP8G3s", malloc_report_memory_blocks) +STUB( + "0F15qnI+z-k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEED1Ev) +STUB("0F2Qr9w0EJo", sceIduUtilEnablePriorityDownloads) +STUB( + "0F40i4OK9CA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEC2Ev) +STUB("0FCeB7KcTQg", _ZN3sce2Np9CppWebApi11Matchmaking2V110UserTicketC2EPNS1_6Common10LibContextE) +STUB("0FJ8ipURoLQ", _ZN3sce7Toolkit2NP2V210Tournament18OneVsOneRankResultC1ERKS4_) +STUB("0FK6kbZvcvA", WKPreferencesGetSnapshotAllPlugIns) +STUB("0FKwlv9iH1c", _ZNKSt7codecvtIDsc9_MbstatetE6do_outERS0_PKDsS4_RS4_PcS6_RS6_) +STUB("0FUBLRRNmBM", jinit_d_post_controller) +STUB("0FUfhLCu97Y", delegate_invoke_impl_target_0) +STUB( + "0Fa0PfWYvoU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEmmEv) +STUB( + "0FaXGRGstoY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE3endEv) +STUB("0FfIJ1bClRQ", _ZN7WebCore9HTMLNames11preloadAttrE) +STUB("0FfP3qcsmAw", + _ZNK7WebCore11FontCascade6updateEON3WTF6RefPtrINS_12FontSelectorENS1_13DumbPtrTraitsIS3_EEEE) +STUB( + "0FgzOGHbBbU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEED2Ev) +STUB("0FijTu6fliM", _ZN3sce7Toolkit2NP2V29Challenge7Request13SendChallengeC1Ev) +STUB("0FjqCOovYhs", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V13Mmr15getPerFranchiseEv) +STUB("0FlXpxjRjOA", + _ZN9Inspector21InspectorConsoleAgent11startTimingEPN3JSC14JSGlobalObjectERKN3WTF6StringE) +STUB("0FmMcDDxnAY", _ZThn16_N9Inspector21InspectorConsoleAgent13clearMessagesERN3WTF6StringE) +STUB("0FnzR6qum90", sceLibcPafMspaceReportMemoryBlocks) +STUB( + "0Fq1cISGuzo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEppEv) +STUB("0Fq3ZYs6iLo", _ZN3JSC7Symbols43AsyncGeneratorSuspendReasonYieldPrivateNameE) +STUB( + "0FtqptO4qfs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEdeEv) +STUB( + "0G+Q1mKM--c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEE5resetEPS6_) +STUB("0G36SAiYUhQ", _ZTIPKd) +STUB("0G39HF8GOCo", rgctx_fetch_trampoline_rgctx_124) +STUB("0G39M6jYWPI", _ZN3sce2Np9CppWebApi7Matches2V121ResponseTeamStatisticD2Ev) +STUB("0G7a3zE4Hao", _ZN7WebCore16BackForwardCache9singletonEv) +STUB("0GAR0oY99so", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18GameCustomDataItemEEC1Ev) +STUB("0GAn6zZgyfA", sceVorbisDecTimeSeekPage) +STUB( + "0GCv8MSOwUE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("0GDd+wkJR6A", mono_config_cleanup) +STUB( + "0GEj2FNdMPs", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi42ParameterToPutGameSessionsSearchAttributes10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_42PutGameSessionsSearchAttributesRequestBodyEEE) +STUB("0GJkvqEhbvg", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_8TempRankEEC1Ev) +STUB( + "0GK7Stx0quo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEE7add_refEv) +STUB("0GXk8-OELMU", _ZN3sce7Toolkit2NP2V28Matching7Request17KickOutRoomMemberD2Ev) +STUB( + "0GfensRT41g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEEC2Ev) +STUB("0GflMZhj7sU", sceNpGriefReportCreateTransaction) +STUB("0GkIAcBgKFg", _ZNK7WebCore14ScrollableArea24scrollPositionFromOffsetENS_8IntPointE) +STUB( + "0GlX3CVVCCs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEptEv) +STUB("0GnN4QCgIfs", sceContentExportInit2) +STUB("0GnYzmeB+AE", mono_domain_set) +STUB("0GnpUt-BVlE", ucnv_getCanonicalName) +STUB("0GqDjpzjTI8", OCSP_resp_find_status) +STUB("0Gqs466l0tQ", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody10limitIsSetEv) +STUB( + "0GsZ86QjEQw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEE3getEv) +STUB( + "0GtOfTmELY0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEptEv) +STUB( + "0Gu1MIYbKII", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("0GxlvzlC15A", _ZN3WTF9BitVector10filterSlowERKS0_) +STUB("0GzqDWrOCWA", mono_aot_Sce_Vsh_Webbrowser_XutilWrapperjit_got) +STUB( + "0H-AlFm8gZY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEaSERKS9_) +STUB("0H0JBpVp03o", sceNpAppLaunchLink2IntDestroyRequest) +STUB("0H2vBYbTLHI", sceGnmDrawInitDefaultHardwareState200) +STUB( + "0H34zfAoGEU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEEC2EPS8_PNS2_10LibContextE) +STUB("0H51EFxR3mc", sceUserServiceGetGlsCameraEdgeLevel) +STUB("0H5TVprQSkA", fmaxl) +STUB( + "0H810BYRZk0", + _ZN7WebCore9subdivideERKN3WTF6VectorINS_10MarkedTextELm0ENS0_15CrashOnOverflowELm16ENS0_10FastMallocEEENS_15OverlapStrategyE) +STUB("0HBYxYAjmf0", sceNpGameIntentTerminate) +STUB( + "0HCEd8d-VTY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE5beginEv) +STUB("0HDAWBfKVpQ", _ZN7WebCore6Editor16pasteAsPlainTextERKN3WTF6StringEb) +STUB( + "0HF4kRqw2OA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "0HG6ycBGyNs", + _ZN7WebCore8JSDOMURL6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_6DOMURLENS6_13DumbPtrTraitsIS8_EEEE) +STUB("0HJXacCCeRE", mono_assembly_load_with_partial_name) +STUB( + "0HO4hw42YvA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEEC1EPNS2_10LibContextE) +STUB("0HPBOdMd3c8", _ZN7WebCore32ScrollingStateFrameScrollingNode30setSynchronousScrollingReasonsEj) +STUB( + "0HPF+bs+0u8", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeAccountId2OnlineIdBatch13isInitializedEv) +STUB("0HSMUaTkHtA", _ZN3sce7Toolkit2NP2V212ActivityFeed13UsersWhoLikedD2Ev) +STUB( + "0HcUf1HNNnc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEEaSERSA_) +STUB( + "0HeTsHOX-hc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEaSERKS9_) +STUB( + "0HhVjzkSNtI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEC1Ev) +STUB("0HhZ7C4szlM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEEC2ERKS6_) +STUB( + "0HkylFfb+Ig", + _ZN9Inspector21CSSFrontendDispatcher15styleSheetAddedEN3WTF6RefPtrINS_8Protocol3CSS19CSSStyleSheetHeaderENS1_13DumbPtrTraitsIS5_EEEE) +STUB( + "0HlFc+QSSxI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "0Hlmr54HsZE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE21intrusive_ptr_add_refEPS9_) +STUB("0Hmy+VyRm0I", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEE3getEv) +STUB("0Ht6QGO2Mgc", _ZN3sce2Np9CppWebApi6Common13ConstIteratorImEppEi) +STUB("0Hu7rUmhqJM", _Tls_setup__Times) +STUB("0HuTEtf4Lto", _ZN3JSC7JSProxy12isExtensibleEPNS_8JSObjectEPNS_9ExecStateE) +STUB("0HxXSThl2lI", _ZN12Mp4Retriever18processMetaStrMainEjPh) +STUB("0HyIe5JPZYE", sceUlpMgrSend) +STUB("0I+UbeCBkVU", Java_com_sony_bdjstack_javax_media_controls_SoundManager_setPanningPosition) +STUB("0I03nEnNoBY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V117InvitableUserTypeEEmmEv) +STUB("0I6apGOYhtM", _ZN3JSC18sanitizeStackForVMERNS_2VME) +STUB( + "0IC3h-ZA8Vg", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEiRNS2_10LibContextEPT_m) +STUB("0ICJJV60XoU", _ZTVN9Inspector28HeapBackendDispatcherHandlerE) +STUB("0ICMatq6+6g", _ZN3JSC6Config23enableRestrictedOptionsEv) +STUB("0ICY9CDqDX4", _ZN3sce2Np9CppWebApi7Matches2V118RequestMatchPlayer14unsetAccountIdEv) +STUB("0IFPN2Aeum8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEEC2ERS7_) +STUB( + "0IGr0WzkL5E", + _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession9setMemberERKNS1_6Common12IntrusivePtrINS3_30RequestGameSessionMemberPlayerEEE) +STUB( + "0IJ2mf4HtOo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEC2EPS6_PNS2_10LibContextE) +STUB("0IL1keINExQ", sceShareTerminate) +STUB( + "0INVXJEjKBs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEixEm) +STUB( + "0IOtig+mlYU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEC1Ev) +STUB("0IQgspU3zuA", _ZNSt15basic_streambufIcSt11char_traitsIcEED1Ev) +STUB("0ISumvb2U5o", _WPutfld) +STUB( + "0IT44Kxbb+g", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEED2Ev) +STUB("0ITXuJOqrSk", _Save_state) +STUB("0IUqQPd6clA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEC2ERS7_) +STUB("0IY2arzvSgQ", mono_aot_System_Xml_Serializationjit_code_start) +STUB("0IhGzSskLLA", _ZNK3sce2Np9CppWebApi6Common6VectorImEixEm) +STUB( + "0IiHgovnPMs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEaSERKS9_) +STUB("0IjKIfzLfb0", mono_aot_Sce_Vsh_DbRecoveryUtilityWrapperunbox_trampolines_end) +STUB("0Ir3jiT4V6Q", _ZNSs5eraseEmm) +STUB( + "0IrMHhv+qH8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEC2Ev) +STUB("0Is1dxlaGR4", + _ZN3JSC23JSModuleNamespaceObject14deletePropertyEPNS_6JSCellEPNS_9ExecStateENS_12PropertyNameE) +STUB( + "0IveluT6kgM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEC1EPS8_) +STUB("0IvpCRHVzNo", _ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody12getSmallDataEv) +STUB( + "0Iwg0S8cDUc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEmmEv) +STUB( + "0J+Kp4CnWng", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE3endEv) +STUB("0J4frRKtCPQ", mono_aot_Sce_Vsh_ShareServerPostWrapperjit_code_start) +STUB("0JIfTD-muD0", usearch_previous_67) +STUB( + "0JQUDJZyS4g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEEC1ERSA_) +STUB( + "0JYUeHP-0OU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE3endEv) +STUB( + "0JeMV+GbkFA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUser12setaccountIdEPKc) +STUB("0Jg8P-SKYNY", mono_aot_System_Net_Http_WebRequestjit_got) +STUB("0JidN6q9yGo", _Thrd_start) +STUB("0Jin5GUgUeY", _ZN3sce7Toolkit2NP2V27Session7Request14SendInvitation18MAX_NUM_RECIPIENTSE) +STUB("0JkotwAYWCc", _ZN2sh13GetObjectCodeEPv) +STUB("0JlZYApT0UM", _ZNSt14_Num_ldbl_base15tinyness_beforeE) +STUB("0JooaCA9qlY", mono_module_file_get_object) +STUB( + "0Js-tyWEyHU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEaSERKS9_) +STUB("0JuS3zkDXdc", sceShellCoreUtilTalkKeyEventReceived) +STUB("0JxNOxFh7mU", _ZN7WebCore9CSSParser10parseColorERKN3WTF6StringEb) +STUB("0K1yQ6Lv-Yc", sceSslTerm) +STUB("0KClQgT2ckA", WTFLogAlwaysV) +STUB( + "0KD2Pyxm9SE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB( + "0KLQ7BLLZaU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEEC2ERKSA_) +STUB( + "0Ka7CZcVxto", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "0Kg3JJzzpIQ", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V145MatchCompletionRateDisconnectedMetricsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_38MatchCompletionRateDisconnectedMetricsEEE) +STUB( + "0KgB-9mc0J4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEE11get_deleterEv) +STUB("0KgyoEODDmA", YGConfigGetUseWebDefaults) +STUB( + "0KmVmOg088c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE8pushBackERKS8_) +STUB("0KqxIyH6DiE", _ZN3JSC2VM22boundFunctionSpaceSlowEv) +STUB("0KrW5eMnrwY", sceSystemGestureGetTouchRecognizerInformation) +STUB("0KsRLd9dTVU", _ZN3WTF3URL24removeFragmentIdentifierEv) +STUB( + "0Kvx23atdGk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEppEi) +STUB("0KynCQXu9XQ", _ZN9Inspector15RemoteInspector9singletonEv) +STUB( + "0L++oeBDbcI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEC1EPS6_PNS2_10LibContextE) +STUB( + "0L0+ghtPTIo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEEC1ERKSA_) +STUB("0L0rPrqMqqE", CryptographyGenerateHmacSha256) +STUB( + "0L1-UCEyQU4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE8capacityEv) +STUB( + "0L2FaN5c5So", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEeqERKS9_) +STUB("0L6Cal4G4dc", _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeIPcPvEEC1Ev) +STUB( + "0LCqO7lC-cc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE21intrusive_ptr_add_refEPS9_) +STUB("0LGrRXiJ-kY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEEC1ERS5_) +STUB( + "0LKqCTWt2Lw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEC2EPNS2_10LibContextE) +STUB("0LM1a1iaHi4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE8capacityEv) +STUB( + "0LOJ6lziUjg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("0LP3hN7yxs0", _ZNSt9basic_iosIcSt11char_traitsIcEE4moveEOS2_) +STUB("0LSRs8rB-A8", _ZN3WTF11writeIndentERNS_10TextStreamEi) +STUB("0LTjiTTEbuo", mono_value_describe_fields) +STUB( + "0LVk4EotHq8", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12unsetString6Ev) +STUB("0LVqe3ixFnk", _ZN3sce2Np9CppWebApi7Matches2V17SubtaskC2EPNS1_6Common10LibContextE) +STUB("0LWei+c7RNc", sceKeyboardClose) +STUB("0Lck8j3ahAo", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge13ChallengeDataEE12deepCopyFromERS7_) +STUB("0LgnPwf0I44", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE5emptyEv) +STUB( + "0Lj0pe2i+HE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB("0LkfqnKtPQg", sceMbusEventCreate) +STUB( + "0LmvVuAAk2I", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot7setsortENS5_4SortE) +STUB("0LocGvpwD0M", _ZN7WebCore9HTMLNames10selectAttrE) +STUB("0LpNBybiBxY", + _ZN3sce2Np9CppWebApi14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyD1Ev) +STUB( + "0LqYzF5kSOo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEEC2ERKSA_) +STUB("0Ls1Ts-85yY", _ZN3sce7Toolkit2NP19ProductBrowseParamsC2Ev) +STUB("0LtyzDw08DQ", JVM_SetThreadPriority) +STUB( + "0LuXeVktcpk", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfile18unsetincludeFieldsEv) +STUB("0Lv6K1d47jg", FT_Outline_Transform) +STUB( + "0M-7FIlr8m8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("0M-vF0rurfc", WKPageSetUseFixedLayout) +STUB("0M5xxtd3KVs", _ZN7WebCore15GraphicsContextC1EPNS_20PlatformContextCairoE) +STUB("0MB5x-ieRGI", scePadVertualDeviceAddDevice) +STUB("0MHM5pZ54E4", _ZN3JSC19numberOfDFGCompilesEPNS_14JSGlobalObjectEPNS_9CallFrameE) +STUB( + "0MPSM+XOeS8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEneERKS9_) +STUB("0MT2l3uIX7c", sceNetGetIfName) +STUB("0MV72WO7V34", sceNpLookupSetTimeout) +STUB("0Ma-LQjv6So", cpuset_setaffinity) +STUB( + "0Md1lr7J0Og", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEC1Ev) +STUB("0Mi1-0poJsc", sceFontGraphicsGetIndexedVertexesGlyph) +STUB("0MkIjtMfKpE", _ZN3sce2np13JsonDocParser13onStartObjectEjj) +STUB("0MkQ7M2OiC4", + _ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors23setValidationConstraintEPKc) +STUB("0MlK00Ubm2k", YGNodeNewWithConfig) +STUB("0Mo4EsA5wVo", + _ZN9Inspector22PageFrontendDispatcher31frameClearedScheduledNavigationERKN3WTF6StringE) +STUB("0MqrCZ2CMWk", _ZN19JITSharedDataMemory13shared_mallocEm) +STUB("0MtUJ3BpGhE", sceAgcDriverGetWaitRenderingPacketSizeInDwords) +STUB( + "0Mvc2GbRXQs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE3endEv) +STUB( + "0MwjtlWeGGg", + _ZN9Inspector21HeapBackendDispatcher6createERNS_17BackendDispatcherEPNS_28HeapBackendDispatcherHandlerE) +STUB( + "0MzJAexrlr4", + _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tmcc) +STUB( + "0MzkfXMsxBk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("0N218-LjuV8", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEED2Ev) +STUB("0N3-Sv3K9y0", twom10000) +STUB("0N7HangwrmM", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead21unsetJoinableUserTypeEv) +STUB( + "0NApYx0udRI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEC1EPS8_) +STUB("0NAq38V3Das", _ZN7WebCore9FloatRectC1ERKNS_7IntRectE) +STUB("0NCiHl62IHw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE5clearEv) +STUB("0ND8MZiuTR8", + _ZGVZNSt13basic_filebufIcSt11char_traitsIcEE5_InitEP7__sFILENS2_7_InitflEE7_Stinit) +STUB("0NE9SkyhX-s", _ZN7WebCore19ResourceRequestBase16setHTTPUserAgentERKN3WTF6StringE) +STUB("0NEguwQXWA0", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIfEppEv) +STUB("0NFMrX7gHYc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V115CompetitionTypeEEneERKS7_) +STUB("0NJDcQ2B8vE", execvp) +STUB( + "0NJVs7w5g5A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEE11get_deleterEv) +STUB("0NSzVSTy9tk", sceVisionManagerRequestInitializeRegisterUserData) +STUB("0NTHN1NKONI", sceKernelConvertLocaltimeToUtc) +STUB( + "0NV24Af-UEE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE3endEv) +STUB("0NWE4y1zLoc", _UTF7Data_67) +STUB("0Nda0t-A+8A", _ZN7WebCore12ISOWebVTTCueC1ERKS0_) +STUB( + "0Ni4YiLsT38", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEE3getEv) +STUB("0NioBryjzSc", __libunwind_Unwind_Backtrace) +STUB("0Nk0l48XZVo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEcvbEv) +STUB("0Nn7Ti0+p1U", _ZNK3sce2Np9CppWebApi7Matches2V113RequestMember11getPlayerIdEv) +STUB( + "0NojPefpJqc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEC2ERKS7_) +STUB("0NwCmZv7XcU", _FDnorm) +STUB("0NwtoQ5yvkE", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V19RatingApi21ParameterToPostRatingaSERS5_) +STUB("0NyJTCJWuuk", sceKernelGetUtokenStoreModeForRcmgr) +STUB("0NzGPjDE7Lg", _ZN3JSC7Symbols39asyncGeneratorFieldQueueLastPrivateNameE) +STUB("0NzQg1z-fGM", xmlStopParser) +STUB("0O3xxFaiObw", sceGnmSetSpiEnableSqCounters) +STUB("0O4K1GKtCz4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEC1ERS7_) +STUB("0O6N7MHNdfg", _ZN3sce7Toolkit2NP2V27Ranking12RangeOfRanksC2ERKS4_) +STUB( + "0O8jCgcGE7Q", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEptEv) +STUB("0OI3DXKmR9w", _ZN3JSC21MarkedJSValueRefArrayD2Ev) +STUB("0OLbLK3fZlE", _ZN3WTF11ThreadGroupD1Ev) +STUB("0OOmgn6KC90", ucfpos_constrainCategory_67) +STUB("0OQm7EIMZUs", WKPreferencesSetMediaControlsScaleWithPageZoom) +STUB("0OVoam5Maq8", ucptrie_internalSmallIndex) +STUB("0OWHhE8-No8", _ZN3sce7Toolkit2NP2V24Core7Request17ExternalAllocatorD1Ev) +STUB( + "0OX1OLspa+s", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEC1EPS8_) +STUB( + "0OZ0X7OWInM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEEC1ERSA_) +STUB("0OcOEIPEuUo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEE3getEv) +STUB("0OeraXVXfzM", sqlite3_sql) +STUB("0OjBJZd9VeM", _ZNSt10moneypunctIwLb0EE7_GetcatEPPKNSt6locale5facetEPKS1_) +STUB("0Oje7JLGsY4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEEptEv) +STUB( + "0OmNSkG++kY", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser18setjoinStateFilterEPKc) +STUB("0Oog3KE4xvU", _ZN7WebCore8SVGNames17accent_heightAttrE) +STUB("0OwYXge9+YY", WKWebsiteDataStoreConfigurationSetLegacyTLSEnabled) +STUB( + "0P+IWIj40R8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEppEi) +STUB( + "0P+iMinfe-4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("0P2v-cE-4Hg", _ZN7WebCore20nextSentencePositionERKNS_15VisiblePositionE) +STUB( + "0P5Rw7U5+s8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "0P7aI7xBpIg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEE5resetEPS9_) +STUB( + "0PGKqY9wbgg", + _ZN7WebCore10Pasteboard4readERNS_19PasteboardPlainTextENS_25PlainTextURLReadingPolicyEN3WTF8OptionalImEE) +STUB( + "0PNZ0bNTCfQ", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB( + "0PSJDmUef-4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE21intrusive_ptr_add_refEPS9_) +STUB("0PT1hZ55Faw", _ZN6WebKit17ChildProcessProxyC1Ev) +STUB( + "0PT319lwTJ8", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi17getPlayerSessionsEiRKNS4_28ParameterToGetPlayerSessionsERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_29GetPlayerSessionsResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB( + "0PWWUoAJ5AQ", + _ZN3sce2Np9CppWebApi7Matches2V126RequestInGameRosterFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_19RequestInGameRosterEEE) +STUB("0PYkLRuvLMw", WKPageCopyApplicationNameForUserAgent) +STUB( + "0Pc+oUT-hpg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE8copyFromERKS9_) +STUB("0Pcj1zY3QX0", _ZNK7WebCore12SharedBufferneERKS0_) +STUB("0Pd-K5jGcgM", _ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2ERKSt8_Locinfom) +STUB("0PflEBfoZDs", WKContextConfigurationFullySynchronousModeIsAllowedForTesting) +STUB("0PqE5nkahfw", _ZN7WebCore26CustomElementReactionStack12processQueueEv) +STUB( + "0PsKG2H8qJY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEC2EPNS2_10LibContextE) +STUB( + "0PuKLJyJczA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEEC1ERKSA_) +STUB( + "0Pxzq6GZmto", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE7reserveEi) +STUB( + "0Q0h+TJZBAQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE8copyFromERKS9_) +STUB( + "0Q20iL895pw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE7reserveEi) +STUB( + "0Q4OH-nX6q4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEC1ERS7_) +STUB("0Q5aKjYErBA", _ZN3sce2np6ThreadD1Ev) +STUB( + "0Q6HoGGpzeE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEdeEv) +STUB( + "0Q6fQRvfhUs", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi17addAndGetVariableEiRKNS4_28ParameterToAddAndGetVariableERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_8VariableEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("0Q7yOxNiGBY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEEC1EPS6_PNS2_10LibContextE) +STUB( + "0QA2IWgJnGA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "0QKta6alp6E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEEC1ERSA_) +STUB("0QN4BUnzF14", sceShellCoreUtilDoFsck) +STUB( + "0QND7XJNS9A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEC1Ev) +STUB("0QP4K+xAQ6U", _ZN7WebCore17FullscreenManager22setAnimatingFullscreenEb) +STUB("0QPT2m4yxiU", _ZN7WebCore8SVGNames16mathematicalAttrE) +STUB("0QVx-6Ffzjc", _ZThn24_N9Inspector18InspectorHeapAgentD0Ev) +STUB("0QYqa+Aosjs", _ZNSt15basic_streambufIwSt11char_traitsIwEE5_LockEv) +STUB("0QZ4ACiysus", + _ZN7WebCore14endOfParagraphERKNS_15VisiblePositionENS_27EditingBoundaryCrossingRuleE) +STUB("0QbSxsg9i1M", _ZN9Inspector32DebuggerBackendDispatcherHandlerD2Ev) +STUB("0QcqLS+gFiQ", sceRegMgrToolGetInfo) +STUB("0QjiF9xEFQA", _ZN9Inspector28DOMDebuggerBackendDispatcherD0Ev) +STUB( + "0Qk4VdmsreE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEEC2Ev) +STUB("0Qo5ERH9rRc", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia10BroadcastsEED2Ev) +STUB("0QrO6Gq0V4M", sceNpSnsTwitchDialogClose) +STUB( + "0Qvqwe3kBkQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEC1EPS8_) +STUB("0QzUsuQufGI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEC2Ev) +STUB("0R0tdvM7fFs", _ZN3WTF4Lock16unlockFairlySlowEv) +STUB("0R5do2GZ3ps", _ZN3JSC10JSFunctionC2ERNS_2VMEPNS_14JSGlobalObjectEPNS_9StructureE) +STUB("0RFK6ZS8I9E", sceIpmiMgrGetIpcBlockerPid) +STUB( + "0RGtfPgW4AU", + _ZN3sce2Np9CppWebApi7Matches2V129RequestPlayerStatisticFactory6createEPNS1_6Common10LibContextEPKcRKNS5_6VectorINS5_12IntrusivePtrINS3_19AdditionalStatisticEEEEEPNSB_INS3_22RequestPlayerStatisticEEE) +STUB( + "0RMIv10qnxM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEC1EPKS8_) +STUB("0RSuGozMl9o", FTA_Support_Format_OpenType_Otf) +STUB("0RX-rifku4w", sceMoveGetDeviceId) +STUB("0RY1ClbavWY", WKPreferencesSetCaptureAudioInUIProcessEnabled) +STUB("0RdLmAh7WVo", sceAmprMeasureCommandSizePushMarker) +STUB( + "0Rf4OSzwKO4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEC2Ev) +STUB( + "0RgDLYgtWdE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEE11get_deleterEv) +STUB("0Rgpswo+L8Y", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEEneERKS7_) +STUB("0RqgTKckJBs", _ZN9Inspector14ConsoleMessagenwEm10NotNullTagPv) +STUB("0RrntW74-lw", _ZN3sce7Toolkit2NP2V24Core15MemoryPoolStatsC1Ev) +STUB("0RwUYdXdtu8", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification15BlocklistUpdateEEC2Ev) +STUB( + "0RzlQktOYNo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEeqERKS9_) +STUB( + "0S0uQtHzfB0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEEC2EPS8_PNS2_10LibContextE) +STUB("0S1VPE7USx4", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_14TrophyGameInfoEED1Ev) +STUB("0S2DkqWaato", mono_aot_Sce_CloudClient_App_Platformplt) +STUB( + "0S3jlbeZz4s", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemProperties56setpatchGameSessionsSessionIdMembersAccountIdRequestBodyENS1_6Common12IntrusivePtrINS3_53PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEE) +STUB("0S9tTH0uqTU", sceHttpSetConnectTimeOut) +STUB("0SCgHxYfY9o", _ZN3sce2np13NpAccessToken14GetAccessTokenEPNS0_6HandleERKNS0_10NpOnlineIdEPS1_) +STUB("0SCgzfVQHpo", sceCompanionHttpdStop) +STUB("0SExVGKxVkE", mono_btls_x509_get_raw_data) +STUB("0SFUOd2K6n0", FT_List_Finalize) +STUB("0SL55KrcbfY", sceValidationGpuRegisterMemoryCheckCallback) +STUB( + "0SM8FzGFBIs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEC1ERS8_) +STUB( + "0SPqJBFbt5k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE7popBackEv) +STUB( + "0STy5OgscTw", + _ZN7WebCore13JSDOMRectList25getOwnPropertySlotByIndexEPN3JSC8JSObjectEPNS1_14JSGlobalObjectEjRNS1_12PropertySlotE) +STUB( + "0SWQAStLgEI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE7popBackEv) +STUB("0SYMhAX9h6k", _ZN7WebCore28InspectorFrontendClientLocal21setDockingUnavailableEb) +STUB( + "0SanBgipsB4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEptEv) +STUB("0SavIu0xYW4", mono_aot_ClassLibrary1unbox_trampoline_addresses) +STUB("0SfP+1+7aB4", _ZN3sce2np13NpAccessTokenD1Ev) +STUB( + "0Si7P29+x2g", + _ZN3JSC7JSProxy3putEPNS_6JSCellEPNS_9ExecStateENS_12PropertyNameENS_7JSValueERNS_15PutPropertySlotE) +STUB("0Snx5Y8fnAk", WKPageIsPinnedToBottomSide) +STUB( + "0SoDdOYaQE4", + _ZN3JSC10JSFunction6createERNS_2VMEPNS_14JSGlobalObjectEiRKN3WTF6StringENS_14NativeFunctionENS_9IntrinsicES9_PKNS_6DOMJIT9SignatureE) +STUB("0Sp9vJcB1-w", sceNpProfileDialogTerminate) +STUB("0SriRKpBF04", mono_debug_open_mono_symbols) +STUB("0Swj6A9svdo", sceDebugDestroyScratchExecutableArea) +STUB("0SySxcuVNG0", sceCompanionHttpdGetUserId) +STUB("0T+CikgNoQA", GCC_except_table93) +STUB( + "0T+DRYT2aqA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEE3getEv) +STUB( + "0T2uS+2pycg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEED2Ev) +STUB("0T5qwn2AA2g", mono_aot_Sce_Vsh_RemotePlayunbox_trampolines_end) +STUB("0T5vey8T4UU", monoeg_g_strerror) +STUB("0TADyPWrobI", _ZNSt7_MpunctIwED1Ev) +STUB("0TDfP7R4fiQ", sceSystemServiceGetDbgExecutablePath) +STUB("0TEQ2c-FFK8", _ZN7WebCore26ISOProtectionSchemeInfoBoxD2Ev) +STUB("0TEnTEgQABA", _ZN7WebCore37CrossOriginAccessControlCheckDisabler9singletonEv) +STUB("0TMX8PPpS0I", sceCesJiscsToUcs) +STUB( + "0TOKw5w0KB8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEeqERKS9_) +STUB("0TQPseNxozE", Java_java_io_UnixFileSystem_deleteOnExit) +STUB("0TaUGh70drs", u_strncasecmp_67) +STUB("0Te5we5rjpc", _ZN3sce7Toolkit2NP2V29Challenge18ChallengeThumbnail5resetEv) +STUB("0TekIvXVYN0", JVM_SetPrimitiveFieldValues) +STUB("0TfjSulCV2A", sceAudioOutExClose) +STUB("0TklQzcs5vY", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_13NetStateBasicEE17getAdditionalInfoEv) +STUB( + "0TnDTgRThCY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE3endEv) +STUB( + "0TnRrR7a5Fc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE8capacityEv) +STUB( + "0Tu5kNP6i9k", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeaders15hasCacheControlEv) +STUB( + "0Tx+4VCF5BI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEC1EPKS8_) +STUB("0TyJ6AxRs5w", glCreateShader) +STUB("0TyVk4MSLt0", pthread_cond_init) +STUB("0U0WvSsfHV0", _ZN12Mp4Retriever9ExtractI4EPh) +STUB( + "0U7MmSFmRHs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEC2EPKS8_) +STUB( + "0U8Hf9U2ivk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE10setContextEPNS2_10LibContextE) +STUB( + "0UAMZxv9Dj4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEEC2ERSB_) +STUB( + "0UDmAW3Dg3E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEEdeEv) +STUB("0UF1X3lXjxs", mono_btls_bio_hexdump) +STUB( + "0UIKhw7w5aM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("0UJ6QCPKLD0", + _ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForRead10getPlayersEv) +STUB("0UMeWRGnZKA", sceNpMatching2RegisterSignalingCallback) +STUB("0UNp2Ey5bw4", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadDataD1Ev) +STUB("0UPU3kvxWb0", _ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1ERKSt8_Locinfom) +STUB( + "0US1L3-PCi4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEED1Ev) +STUB( + "0UV9Kg--Lfg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEED2Ev) +STUB( + "0UXr9btnRjI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEeqERKS9_) +STUB("0UY8++vfejs", _ZN3JSC10JSFunction6s_infoE) +STUB("0UafewjjWpM", hb_buffer_get_direction) +STUB("0UcnBev8dqc", _ZN7WebCore8Document16scrollingElementEv) +STUB( + "0UeaNsmDOc0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEppEi) +STUB("0Uek9fMv9z4", sqlite3_result_error) +STUB("0UgJRpFQKco", ucnv_fromAlgorithmic) +STUB("0Uk-3H5HdEo", + _ZNK9Inspector15RemoteInspector26listingForAutomationTargetERKNS_22RemoteAutomationTargetE) +STUB("0Ukd6tvlVhs", _ZN9Inspector28InspectorScriptProfilerAgentD2Ev) +STUB("0UnkRgGz3L0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEC2ERKS7_) +STUB( + "0Ur8zupZRB0", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearch14setsearchIndexEPKc) +STUB("0Uu1kdKRI-w", _ZNK3sce16CommonDialogUtil6Server10isCloseReqEv) +STUB("0UvTFeomAUM", sceNpSignalingActivateConnection) +STUB( + "0V+emDz8mt0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEC1EPS6_PNS2_10LibContextE) +STUB("0V6XABQoR9o", mono_aot_Sce_Vsh_MarlinDownloaderWrapperjit_code_start) +STUB("0VFHv-Fa4w8", sceSaveDataSetAutoUploadSetting) +STUB("0VPnpE+afyg", mono_string_to_utf16) +STUB( + "0VXlUv5aIQs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEcvbEv) +STUB("0VZr87lecns", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE21intrusive_ptr_add_refEPS7_) +STUB( + "0Vf1KpXfzqI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE4termEv) +STUB("0VfDaogUQB8", _ZNK3sce2Np9CppWebApi7Matches2V14Task15getAvailabilityEv) +STUB("0Vm5ZtZD8Zw", _ZN7WebCore18ImageBufferBackend20calculateBackendSizeERKNS_9FloatSizeEf) +STUB("0Vok8D+vTQE", _ZN3sce7Toolkit2NP2V212ActivityFeed7Caption15CAPTION_MAX_LENE) +STUB( + "0VrFBjArHts", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEC2EPS8_) +STUB("0VrLxv9BUm0", Java_java_lang_reflect_Array_getByte) +STUB("0W-mECnGicE", _ZN3WTF14FileSystemImpl15getFileDeviceIdERKNS_7CStringE) +STUB( + "0W21-eUYaZQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE21intrusive_ptr_add_refEPS9_) +STUB("0W5pY+f2e8M", _ZN7WebCore16SQLiteFileSystem28deleteEmptyDatabaseDirectoryERKN3WTF6StringE) +STUB( + "0W7vOoBOjek", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEEdeEv) +STUB("0W9b8BHz5k8", _ZN7WebCore18TextureMapperLayer14syncAnimationsEN3WTF13MonotonicTimeE) +STUB( + "0WA+8T2tmGM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEaSERKS7_) +STUB("0WAihgUTfuE", _ULx86_64_Iput_dynamic_unwind_info) +STUB( + "0WB5HzKUNfk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEE5resetEPS8_) +STUB("0WBR0vLv-e8", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container19totalItemCountIsSetEv) +STUB( + "0WFbrRUy+N4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEppEv) +STUB("0WGMORZfHcA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEC2ERS7_) +STUB("0WL2ci7tQyU", + _ZN3sce7Toolkit2NP9Messaging9Interface17sendInGameMessageEPKNS1_24SendInGameMessageRequestE) +STUB("0WMHDb5Dt94", modf) +STUB("0WPKM5DDXDg", _ZN3sce2Np9CppWebApi14SessionManager2V110FromMember8fromJsonERKNS_4Json5ValueE) +STUB("0WQ2z+SqH64", _ZN3JSC6RegExp6createERNS_2VMERKN3WTF6StringENS_11RegExpFlagsE) +STUB( + "0WUZMqYdJqY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEC2EPS8_) +STUB("0WVJD1NnpIU", sceAvSettingNotifyDeviceEvent) +STUB( + "0WWSlPhpQqw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEaSERKS9_) +STUB( + "0WWkvUgnN90", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEED1Ev) +STUB("0WY1SH7eoIs", _ZNSt6_Winit9_Init_cntE) +STUB( + "0WeEAqISGbU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEptEv) +STUB( + "0WeVcylsG0o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "0WmorB1nZZM", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging24GameDataMessageThumbnailEE12deepCopyFromERS7_) +STUB("0WoV6dyypH8", u_getIntPropertyValue_59) +STUB("0Wxgp8aaw7w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEE7add_refEv) +STUB( + "0WydpjZKRN4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEE3getEv) +STUB("0X2LDl5vE-M", _ZN3sce7Toolkit2NP2V27Ranking17SetGameDataResult5resetEv) +STUB( + "0X3a7GqVYZ4", + _ZNK7WebCore10PluginData32supportsWebVisibleMimeTypeForURLERKN3WTF6StringENS0_18AllowedPluginTypesERKNS1_3URLE) +STUB("0X5DnA3olsk", EVP_aes_192_cbc) +STUB("0X7Pah5xV04", WKPageCopyTitle) +STUB( + "0X7eUMpd82A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEEC1ERSA_) +STUB( + "0X7kH50AdBo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEC1Ev) +STUB( + "0X8L+qJX3sQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEC2Ev) +STUB( + "0XFQSPtXxwQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEE7add_refEv) +STUB( + "0XG-BFv4UDw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEE7add_refEv) +STUB("0XH9Pu6dPdk", _ZN7bmalloc3api16freeLargeVirtualEPvmNS_8HeapKindE) +STUB("0XLOuzkdWNw", rgctx_fetch_trampoline_mrgctx_63_p) +STUB( + "0XPNULS2lJo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "0XTf8rWP74A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "0XTzODdiJmQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEEaSERKSA_) +STUB("0XU8WtYDwAo", _ZN15AbstractStorage17DailymotionFolderD1Ev) +STUB("0XZ7kiwy0TA", _ZNK3JSC12DateInstance29calculateGregorianDateTimeUTCEPNS_9ExecStateE) +STUB( + "0XZBTEJHa-o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEC1Ev) +STUB("0Xb1eUs-YMc", _ZTVN9Inspector18InspectorHeapAgentE) +STUB("0XcSBCn-4So", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setInteger1ERKi) +STUB("0XcZknp7-Wc", sceSslGetSslError) +STUB("0Xh-8oe6PHM", utext_equals_67) +STUB("0XkvVjvSxFw", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE3endEv) +STUB("0Xo9g4goDXU", sceAmprAmmCommandBufferRemapIntoPrt) +STUB( + "0Xq5NU-K0wc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE3endEv) +STUB("0Xsfib8bq3M", sceUserServiceSetNpNpId) +STUB( + "0XtwkMDw0bY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE5beginEv) +STUB("0Xut9CTEffw", mono_btls_ssl_new) +STUB( + "0XxK6EwGruA", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi47ParameterWithBinaryRequestBodyToRecordLargeDataD2Ev) +STUB("0Xxtiar8Ceg", _ZTIPKn) +STUB("0XzKaUQ7CAc", _ZN3JSC7Symbols23syncIteratorPrivateNameE) +STUB("0Y+FQQF5Pvo", rgctx_fetch_trampoline_rgctx_92) +STUB( + "0Y-NjHi1T80", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEEaSERSA_) +STUB("0Y-ebXGv50I", _ZN3JSC2VM18generatorSpaceSlowEv) +STUB("0Y9Lq+wy8RQ", bemp2sys_psdecoder_create) +STUB( + "0YA6C0Xbtzk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEplEm) +STUB("0YAqVukLe-U", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_25ReceivedInGameDataMessageEED1Ev) +STUB( + "0YED2+p7aiI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB("0YEXGwJHdY4", png_set_swap) +STUB( + "0YIBcyMqA9I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE5emptyEv) +STUB("0YMD9fqNphk", sceDataTransferGetPrepareFgTransferProgress) +STUB("0YSKqdQ4OSw", Java_java_lang_StrictMath_floor) +STUB("0YSSzw0gloY", _ZNK3sce2Np9CppWebApi13InGameCatalog2V515ContainerRating10scoreIsSetEv) +STUB( + "0YYJ1VuhLHk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEED2Ev) +STUB("0YZj+ZnhLy4", sceUpsrvUpdateDoExternalDeviceUpdate) +STUB( + "0YcLHtWcZTA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("0Ydc18+XsSw", + _ZN15AbstractStorage14StorageManager18UnregisterListenerEPKNS_20StorageEventListenerE) +STUB("0Ye4aR9kvuA", sceUserServiceGetVolumeForOtherDevices) +STUB("0YfwqGopI4c", _ZNK3WTF8JSONImpl9ArrayBase6lengthEv) +STUB("0Ygl1mtSLhg", sceApplicationExitSpawn2) +STUB( + "0Yh7pjybiUs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEEC2Ev) +STUB("0YlFy8XryFU", _ZN3sce7Toolkit2NP2V210Tournament5MatchC2ERKS4_) +STUB("0YmI09jOP-g", sceSystemServiceGetAppTitleId) +STUB("0YmjfSJ8X98", sceSysCoreReceiveEvent) +STUB( + "0YoAC6y8jXs", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectatoraSERS5_) +STUB("0YqYAoO-+Uo", _ZNK3sce4Json5Value8getValueEm) +STUB("0Ys3rv0tw7Y", _ZTSSt13basic_istreamIwSt11char_traitsIwEE) +STUB("0YzoonqmUcc", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_24RegisterGameDataResponseEE3getEv) +STUB("0Z-Pm5rZJOI", sceRemoteplayServerUnLock) +STUB( + "0Z-zQfu2CZo", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyC1EPNS1_6Common10LibContextE) +STUB("0Z7y+5ad9J0", mono_aot_System_Xml_Serializationplt_end) +STUB("0ZA6fQgGaZ0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE7reserveEi) +STUB("0ZAyqREPVwk", + _ZN3sce7Toolkit2NP2V212ActivityFeed7Request14PostPlayedWith19DESCRIPTION_MAX_LENE) +STUB( + "0ZBL4ZmrD9g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEmmEi) +STUB("0ZFN-qn5k3A", _ZN3sce7Toolkit2NP21ReceiveMessageRequestC2Ev) +STUB("0ZOG0jc9nRg", sceAgcAcbRewindGetSize) +STUB( + "0ZS1wR9V5NA", + _ZN7WebCore21NetworkStorageSession27removeStorageAccessForFrameEN3WTF16ObjectIdentifierINS_19FrameIdentifierTypeEEENS2_INS_18PageIdentifierTypeEEE) +STUB("0ZVukIY8H1I", _ZNSt9_FacetptrISt8messagesIcEE6_PsaveE) +STUB("0ZYTObPP57I", usearch_setAttribute_59) +STUB("0Za34L-PPDg", _ZN3JSC8Debugger17resolveBreakpointERNS_10BreakpointEPNS_14SourceProviderE) +STUB( + "0ZbEAPArvRQ", + _ZN3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectatorC2EPNS1_6Common10LibContextE) +STUB("0ZdjsAWtbG8", _ZNSt9_Num_base9is_iec559E) +STUB("0ZiQwP6UAfU", _ZN7WebCore9FrameView18enableAutoSizeModeEbRKNS_7IntSizeES3_) +STUB("0Zix0+Zcx2k", _ZN3WTF8JSONImpl9ArrayBaseD2Ev) +STUB( + "0ZjpgYlILtk", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersC2ERS5_) +STUB( + "0ZkGMRN05Xc", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi28ParameterToDeleteGameSession12getsessionIdEv) +STUB("0Zp+hEFW1R8", mono_gc_wbarrier_generic_store) +STUB("0a-wfUFlLzU", _ZNK7WebCore13HitTestResult19mediaIsInFullscreenEv) +STUB( + "0a0eikb4-aI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEppEi) +STUB("0a2TBNfE3BU", sceHttpGetStatusCode) +STUB( + "0a2uuV2YO1g", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEptEv) +STUB("0a42xZWTRqA", _ZN3sce3Xml11Initializer10initializeEPKNS0_13InitParameterE) +STUB("0a51FbrbtpY", rgctx_fetch_trampoline_rgctx_30_p) +STUB("0aBGnxaIO6w", _ZN3sce7Toolkit2NP2V29Messaging12Notification18NewGameDataMessageC1ERKS5_) +STUB("0aFOyZaUPU0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEEixEm) +STUB("0aIgOsLHb10", _ZN3sce7Toolkit2NP2V28Matching7Request11SetRoomInfo23LOWEST_DISPLAY_PRIORITYE) +STUB("0aJMoN6KBpg", sceSpPthreadMutexattrSettype) +STUB("0aOnSxayzFU", _ZN3sce7Toolkit2NP2V24Core11ServerErrorD2Ev) +STUB("0aPYh8P2+Ps", nsnp_DecryptWithOffset) +STUB("0aR2aWmQal4", sceNpCommerceDialogInitialize) +STUB( + "0aTJDnRKNg0", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot7getsortEv) +STUB( + "0aU8KY4nxUQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEptEv) +STUB( + "0acRxatMrBk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("0ae0oDSPoAg", _ZN7WebCore15GraphicsContext22applyDeviceScaleFactorEf) +STUB("0aziJjRZxqQ", scePadDisableVibration) +STUB("0bBxiebZeYM", scePerfPmcL2iSetCounter) +STUB("0bCpZmASTm4", sceNpAsmGenerateNpTitleToken2) +STUB("0bDqn4vgJuM", _ZN3sce7Toolkit2NP2V26Trophy7Request13SetScreenshotD1Ev) +STUB( + "0bFGPGLzFbA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEC2Ev) +STUB("0bGGr4zLE3w", _ZTv0_n24_NSiD0Ev) +STUB("0bI-VPZXmzg", _ZN3JSC8JSObject12setPrototypeEPS0_PNS_14JSGlobalObjectENS_7JSValueEb) +STUB( + "0bJ1bOUb6ZM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("0bKu3ZjjnMY", _ZN7WebCore11MediaPlayer15maxTimeSeekableEv) +STUB( + "0bMTrvg7weU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEptEv) +STUB("0bW7jRaUqq8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEE3getEv) +STUB( + "0bWbSSJ5MAE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEC1EPKS8_) +STUB( + "0bXR0WSy2Fo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEC2Ev) +STUB( + "0bYI5NuikPk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "0bi3+aepMf4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE4termEv) +STUB( + "0bjxRIlpRqE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE8capacityEv) +STUB("0bkH4IQFtTc", WKPreferencesSetSimpleLineLayoutDebugBordersEnabled) +STUB("0blWarRALu4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEptEv) +STUB( + "0blr50NlfyU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEC2ERKS7_) +STUB( + "0blzi+f5GI0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEmmEi) +STUB( + "0bptpMme1yc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "0bq1LixdHAY", + _ZN9Inspector25NetworkFrontendDispatcher18requestInterceptedERKN3WTF6StringENS1_6RefPtrINS_8Protocol7Network7RequestENS1_13DumbPtrTraitsIS8_EEEE) +STUB("0btIPD5hg5A", sceCameraGetAttribute) +STUB("0bu7EeAq79Y", rgctx_fetch_trampoline_rgctx_46_p) +STUB("0c-07mr9xP8", _ZN3JSC22EdenGCActivityCallback12doCollectionERNS_2VME) +STUB("0c-HdcCIu3k", sceCesRefersUcsProfileIso8859_9) +STUB("0c1A7bKZtI0", g_ascii_xdigit_value) +STUB("0c6b+XCqt9o", umutablecptrie_getRange) +STUB("0c7HbXRKUt4", sceNpRegisterStateCallbackForToolkit) +STUB("0cBgduPRR+M", sceNetCtlGetResult) +STUB("0cEED80Q7cU", _ZNK7WebCore13HitTestResult15absoluteLinkURLEv) +STUB("0cGA41wCtko", mono_vm_bridge_set_mono_funcs) +STUB("0cGFf+d24hY", _ZN3JSC7Symbols23requestFetchPrivateNameE) +STUB( + "0cHb7R21ttg", + _ZN3sce2Np9CppWebApi7Matches2V129RequestMatchStatisticsFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_22RequestMatchStatisticsEEE) +STUB("0cIPqIrPhvg", _ZN3JSC8JSObject26setIndexQuicklyToUndecidedERNS_2VMEjNS_7JSValueE) +STUB("0cKbHa0gdeg", _ZN7WebCore15localizedStringEPKc) +STUB("0cLFYdr1AGc", _ZTIPKm) +STUB("0cLPZO1Voe8", sceNpManagerIntLoginRevalidatePassword) +STUB("0cMBkwLzIWA", delegate_virtual_invoke_imt_16) +STUB("0cPDxR6zOIY", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getInteger5Ev) +STUB("0cPhfQ0yQfo", WKPreferencesGetHiddenPageDOMTimerThrottlingAutoIncreases) +STUB("0cQDAbkOt2A", sceHmdInternalAnotherScreenOpen) +STUB("0cS888QfmWg", _ZN7WebCore26UserTypingGestureIndicatorD2Ev) +STUB("0cYEtBUJ5zQ", u_charType) +STUB("0cZgzwGgI7E", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed13UsersWhoLikedEE5resetEv) +STUB("0cZxCTXvyPs", eglSurfaceAttrib) +STUB( + "0ceWGxcwcz4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEmmEv) +STUB("0cfc2o5UspI", max_lock) +STUB("0cfweK670p4", + _ZN7WebCore12TextIterator29getLocationAndLengthFromRangeEPNS_4NodeEPKNS_5RangeERmS6_) +STUB("0chnVPTyYeA", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEEaSERKS6_) +STUB( + "0cihF8SCF8U", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEptEv) +STUB("0cl8SuwosPQ", sceSystemServiceAddLocalProcess) +STUB("0cn2c-bk8wA", sceNpAsmClientAbortRequest) +STUB("0cqPK8XF9i4", _ZN12video_parser5vpcom14DirectoryCloseE) +STUB("0csAf8o+EwQ", _ZNK7WebCore20HTMLTableCellElement7colSpanEv) +STUB("0cvrKk89hOE", __sanitizer_unaligned_store64) +STUB( + "0cwjtwaMK1g", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB("0cyWAyRUWvE", _Z26scePlayGoDevAddMappingInfoPKcmt) +STUB( + "0d+KWEyu588", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody23setLocalizedSessionNameERKNS1_6Common12IntrusivePtrINS3_15LocalizedStringEEE) +STUB( + "0d2-mK2F0T8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("0d2tW0028wg", mono_aot_Sce_Vsh_DbRecoveryUtilityWrappermethod_addresses) +STUB("0d7IkUtQmyw", __asan_unpoison_intra_object_redzone) +STUB("0d9dtBvFgxg", isobmf_box_getchildbox) +STUB("0d9jr6TzI-o", + _ZNK7WebCore22EmptyFrameLoaderClient28blockedByContentBlockerErrorERKNS_15ResourceRequestE) +STUB("0dDvXUFUCQ8", fuse_session_data) +STUB("0dERNdgNcq8", mono_metadata_free_inflated_signature) +STUB( + "0dI45gx1gM0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEE11get_deleterEv) +STUB( + "0dOfrES2IUs", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getInteger2Ev) +STUB("0dOpT2MQBIk", mono_debug_add_method) +STUB("0dQrYWd7g94", ilogbf) +STUB( + "0dSVerhAqlQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEED1Ev) +STUB("0dTfcPHH3dg", _ZN3WTF11ThreadGroup16addCurrentThreadEv) +STUB("0dXnXjcRUik", Java_java_util_zip_CRC32_updateBytes) +STUB("0dYM623+hwI", _ZN7WebCore6Region9intersectERKS0_) +STUB( + "0dh9l8wkdW4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB( + "0dhz2irelmE", + _ZN3sce7Toolkit2NP11UserProfile9Interface12getAvatarUrlEPNS1_9Utilities6FutureISbIcSt11char_traitsIcENS1_15AppSTLAllocatorIcEEEEEb) +STUB( + "0dii1CKpr6M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "0doS6T9dhIk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEC2EPKS8_) +STUB("0dr5YpkJ24M", _ZN3JSC7Symbols15flatPrivateNameE) +STUB("0dtmnN3rMSM", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V16StatusEEC1EPS6_) +STUB( + "0duY-QDYZx8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "0dusR-I83q8", + _ZN3sce2Np9CppWebApi14SessionManager2V162PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_30ResponsePlayerSessionSpectatorEEEEEPNS9_INS3_55PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEE) +STUB("0dy4JtMUcMQ", _sceFiberGetThreadFramePointerAddress) +STUB("0e0wzFADy0I", sceUserServiceSetGlsCameraTransparency) +STUB( + "0e6zSEbS2rI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEE11release_refEv) +STUB( + "0e8iHtmXs+8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE7reserveEi) +STUB( + "0eDmLl0ZGHw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEC2EPS8_) +STUB("0eFLVCfWVds", sceNgs2RackQueryBufferSize) +STUB("0eL45bDUw6g", utext_freeze_67) +STUB("0eLuCRZ97IU", mono_aot_ReactNative_Debug_DevSupportjit_code_start) +STUB("0eOxOwsEJYE", _ZN3sce7Toolkit2NP2V210Tournament12MatchDetailsC1ERKS4_) +STUB("0ePDQ-+e+og", _ZNK7WebCore11JSDOMWindow5eventERN3JSC9ExecStateE) +STUB("0eQ71z-VbfM", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSessionC2Ev) +STUB("0eTxi6FDh7g", _ZN3sce7Toolkit2NP2V23TUS13TusDataBufferD1Ev) +STUB("0eUrW9JAxM0", _ZN3sce4Json5ValueD2Ev) +STUB("0eXyXtSzyK4", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V112OnlineStatusEEmmEv) +STUB("0eZpG16I-Ps", sceDbgVideoOutAddProcessAttribute) +STUB("0earDv9xPN8", JSValueMakeString) +STUB( + "0efDSqjftPA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEE3getEv) +STUB("0egweZdzJ4s", sceDataTransferTargetAbortGetDeviceInfo) +STUB("0eoyU-FoNyk", __fixsfdi) +STUB( + "0eqHTH8CkhI", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEiRNS2_10LibContextEPT_m) +STUB("0erpm7bJt9s", ufmtval_nextPosition_67) +STUB("0ers1N4C9CY", sceKernelAprSubmitCommandBufferAndGetResult_TEST) +STUB("0eunykJAhAE", getProtocolInfoListHead) +STUB( + "0eyZBLHiB1w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEEaSERKSA_) +STUB( + "0ezCFda6Zc0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEaSERS7_) +STUB( + "0ezRqEASug4", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEEC1Ev) +STUB("0ezpnHVyg+s", WKPreferencesGetImageControlsEnabled) +STUB("0f06o3-XgV0", _ZN3WTF7RunLoop14initializeMainEv) +STUB("0f2FvtFtrcw", _ZN7WebCore8SVGNames14accumulateAttrE) +STUB("0f3664ug7DY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEE3getEv) +STUB("0f3ylOQJwqE", _ZN3sce2np6ThreadC2Ev) +STUB( + "0f5+eBcgB14", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "0fADx629t1U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "0fE5dHDT0TA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "0fFKipBCBNY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "0fHBm+BJ3xQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEEptEv) +STUB("0fHEWfGPO8c", generic_trampoline_jump) +STUB( + "0fPn7oELg8E", + _ZN3sce7Toolkit2NP2V28Presence14deletePresenceERKNS3_7Request14DeletePresenceEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB( + "0fQTTzq9gA8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB( + "0fQYuuSuLPM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEC2EPS8_) +STUB( + "0fRFrJJRgB8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEEdeEv) +STUB( + "0fSgvHm68KE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEED1Ev) +STUB("0fVIASifMP4", _ZThn112_NK7WebCore16HTMLInputElement17validationMessageEv) +STUB("0fWWK5uG9rQ", sceAgcQueueEndOfPipeActionPatchAddress) +STUB( + "0fXhlgvwuEs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEC1Ev) +STUB("0fbjOvIKA94", mono_aot_Sce_Vsh_SyscallWrapperplt_end) +STUB("0fjLnEtRoq0", _ZN7WebCore9HTMLNames10noembedTagE) +STUB("0fkFA3za2N8", _ZNSt7codecvtIwc9_MbstatetED1Ev) +STUB("0fm7zMyq8hc", _ZN3JSC7Symbols22ModuleReadyPrivateNameE) +STUB("0frSZotejIU", _ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamRankResultC1Ev) +STUB( + "0fuMwGlmOgU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEppEi) +STUB("0fvdBxgNxSQ", fuse_reply_ioctl_iov) +STUB("0fwoTW7gqfM", _ZN3sce2np4PathD0Ev) +STUB( + "0fy7OoflkxE", + _ZN3sce2Np9CppWebApi14SessionManager2V125RequestGameSessionFactory6createEPNS1_6Common10LibContextEiNS5_12IntrusivePtrINS3_30RequestGameSessionMemberPlayerEEERKNS5_6VectorINS5_6StringEEEPNS8_INS3_18RequestGameSessionEEE) +STUB("0fyTCPOHGX4", scePlayerSelectionDialogClose) +STUB("0g+jtYCdtQw", _ZN9Inspector22RemoteAutomationTargetC2ERKS0_) +STUB("0g+zCGZ7dgQ", _ZTIPKv) +STUB("0g0+Oq9xcI0", sceGameUpdateGetAddcontLatestVersion) +STUB("0g0qIuPN3ZQ", sceNetConfigAddArpWithInterface) +STUB("0g450D6uUow", _ZN3sce2Np9CppWebApi14ConnectAccount2V212PartnerTokenD1Ev) +STUB("0g6-uh4JTP8", sceShellCoreUtilExitMiniApp) +STUB("0g66of16pvY", _ZN9Inspector15ScriptCallStack6appendERKNS_15ScriptCallFrameE) +STUB("0gCVx65qZx8", + _ZN8meta_gen11MsvPromoter29convVP_LANGToISO639_2_TStringEN12video_parser9VP_LANG_eE) +STUB("0gETKZk91ig", WKBundleHitTestResultCopyAbsoluteLinkURL) +STUB("0gGAZ8UUhFs", get_dyn_info_list_addr) +STUB("0gHxaT0Icu4", _ZN7WebCore24CoordinatedGraphicsLayer28didChangeBackdropFiltersRectEv) +STUB("0gLVYXKqJk4", _ZN3JSC7Symbols19toLengthPrivateNameE) +STUB("0gMTyY1aBcg", + _ZN7WebCore19JSHTMLSelectElement15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("0gQImk3C0sA", + _ZN3JSC16callCustomSetterEPNS_14JSGlobalObjectENS_7JSValueEbPNS_8JSObjectES2_S2_) +STUB("0gQWp8DXEfw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE5beginEv) +STUB("0gRbLi4WKVg", sceHttpCacheSystemSendStatistics) +STUB("0gS2-9PEbBM", _Ux86_64_regname) +STUB( + "0gXEfysz4-g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE3endEv) +STUB( + "0gXNY-kZTgc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("0gYjPTR-6cY", sceHttpCreateTemplate) +STUB("0gZNC228lVY", mono_aot_System_ServiceModelunbox_trampolines) +STUB("0gZXDIwxfD0", + _ZN3sce7Toolkit2NP2V28Commerce7Request22GetServiceEntitlements17DEFAULT_PAGE_SIZEE) +STUB( + "0gaczn2VNuk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("0gdlCVNNHCI", _sceNpAllocatorExConvertAllocator) +STUB("0ggQR1NjDCY", _ZNK3WTF8JSONImpl5Value8asStringERNS_6StringE) +STUB("0ghbVoevlV4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116JoinableUserTypeEEC1Ev) +STUB( + "0gk+rG+cQjo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEEC1Ev) +STUB("0gkGdPk8dXw", sceKernelIccReadPowerBootMessage) +STUB( + "0gnCHiSpDUs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("0gv-YY1PXjs", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIjEC2EPj) +STUB("0gzImcPIayI", mono_aot_System_IO_Compression_FileSystemunbox_trampolines_end) +STUB("0gzkubHssqM", mono_aot_Sce_Vsh_Orbis_CdlgServerNpCommercejit_got) +STUB( + "0h1aPVoEkug", + _ZN3sce7Toolkit2NP2V29Messaging27getReceivedGameDataMessagesERKNS3_7Request27GetReceivedGameDataMessagesEPNS2_4Core8ResponseINS3_16GameDataMessagesEEE) +STUB("0hA35iD1YM8", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setBoolean4ERKb) +STUB("0hA8gsjvHqo", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError9getReasonEv) +STUB("0hC6Uj6W6wU", + _ZN7WebCore22CSSAnimationController21pauseTransitionAtTimeERNS_7ElementERKN3WTF6StringEd) +STUB( + "0hCG9AwnrNU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB("0hM0IsN0uGo", _ZN7WebCore31SimplifiedBackwardsTextIteratorC2ERKNS_11SimpleRangeE) +STUB("0hSd3sAYB14", JVM_IsConstructorIx) +STUB("0hVwNAR5hz8", sceAvSettingSetAudioOutModeInvalid) +STUB("0hWlGQJhwz8", _ZNK3sce2Np9CppWebApi7Matches2V118CreateMatchRequest9getZoneIdEv) +STUB("0hfL10eI3cE", jpeg_destroy_compress) +STUB( + "0hidak6-XOo", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("0hlfW1O4Aa4", localeconv) +STUB("0hr-w30SjiI", sceFontRenderSurfaceSetStyleFrame) +STUB( + "0hugZnFh9Ds", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEE11release_refEv) +STUB( + "0hzvdVO+KGY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEmmEi) +STUB("0i331fsne3g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEptEv) +STUB("0i8EaWOLjcY", curl_easy_recv) +STUB("0i8Lrllxwow", sceGameLiveStreamingStopDebugBroadcast) +STUB("0i9s74BWrqQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEEneERKS7_) +STUB( + "0iAzvJ044Xo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEC2EPS8_) +STUB( + "0iC8-my5AjQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("0iEGz7pB0ZI", WKPreferencesGetFrameFlatteningEnabled) +STUB( + "0iEKs2dY+ho", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("0iIwX9cW0nc", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku7getTypeEv) +STUB("0iJvHDhBxtA", sceTextToSpeechSpeakContinuousImpl) +STUB("0iNT9V3nBiY", _ZN3sce7Toolkit2NP2V27Ranking10UsersRanks8deepCopyERKS4_) +STUB( + "0iOr4PiDz9w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEC2EPNS2_10LibContextE) +STUB("0iR9z16pj28", scePerfPmcStartProc) +STUB( + "0iV07dFyyZc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEC1EPKS8_) +STUB("0iYe9MjiM3A", Java_java_awt_GnmGraphics_nativeSetPaintMode) +STUB( + "0iZrU0NIXmg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEE7add_refEv) +STUB( + "0iiei-vva0U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE8capacityEv) +STUB("0ikQsDP-+lg", sceGnmSysSubmitCommandBuffersWithPid) +STUB("0il9qdo6fhs", _ZNSt7_MpunctIcEC2EPKcmbb) +STUB( + "0inv8nATMYc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEplEm) +STUB("0iwGE4M4DU8", CERT_isRootCertificate2) +STUB("0ixkCjQDH2I", _ZN3WTF3URL11setPasswordENS_10StringViewE) +STUB( + "0izFxJC0O-c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("0izU71qFT-A", _ZN3sce7Toolkit2NP2V28Commerce7SkuInfoC2Ev) +STUB("0j+UOubWqvU", _ZNK7WebCore5Frame16frameScaleFactorEv) +STUB( + "0j0VGxauPyk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB("0j1jspKbuFk", _ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev) +STUB( + "0j3mzDiWiTI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEC2Ev) +STUB( + "0j5ZZAbckyU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEcvbEv) +STUB( + "0jAr3iCYbKY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEptEv) +STUB("0jGJbNTpSV4", sceVideoOutDriverDecrementBufferLabel) +STUB( + "0jGe261VIB0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEE7add_refEv) +STUB("0jIcJu0tb+o", WKGeolocationManagerProviderDidFailToDeterminePosition) +STUB("0jJWa1H9qto", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching6WorldsEE5resetEv) +STUB( + "0jKeIe-OYPE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEC2Ev) +STUB("0jN58mezFe0", ubrk_getRuleStatusVec) +STUB( + "0jPOVqQQx1U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE5emptyEv) +STUB( + "0jSVCkyquW8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEC2ERKS7_) +STUB( + "0jVl8b8h-nQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEE11release_refEv) +STUB("0jXh4mvLVZw", _ZN7WebCore17JSHTMLLinkElement15subspaceForImplERN3JSC2VME) +STUB("0jZegnTVAOk", mono_arch_set_trigger_pages) +STUB( + "0jZpSQGImMU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEC1Ev) +STUB("0jcE0DxcPm0", _ZN3sce7Toolkit2NP15AppSTLAllocatorI16SceNpTusVariableE10deallocateEPS3_m) +STUB("0jei2te6zqo", _ZNK3sce2Np9CppWebApi11UserProfile2V114PersonalDetail15middleNameIsSetEv) +STUB( + "0jg6LSlhz9A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("0jk9oqKd2Gw", _ZN10__cxxabiv123__fundamental_type_infoD2Ev) +STUB("0jlL4fJ6ixA", _ZNK7WebCore15VisiblePosition14characterAfterEv) +STUB( + "0jljIRYDpi4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE3endEv) +STUB("0jpKR6tsSyc", WKRectGetTypeID) +STUB("0js49ke3F3o", Java_java_lang_ClassLoader_00024NativeLibrary_find) +STUB("0jsZGfvAN3g", _ZN7WebCore9DragImageD1Ev) +STUB( + "0juFlJ9R6ss", + _ZN3sce2Np9CppWebApi11UserProfile2V19BlocksApi16getBlockingUsersEiRKNS4_27ParameterToGetBlockingUsersERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_24GetBlockingUsersResponseEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("0jvNVzo1RgY", _ZZSt9MakefacetISt7collateIwESt8_LocinfoERT_T0_E3buf) +STUB("0jx14CPg75E", _ZN3sce7Toolkit2NP2V26Friend7Request19GetFriendsOfFriendsC2Ev) +STUB( + "0jyXo407gmg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEE5resetEPS9_) +STUB( + "0k-NUGilQZM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("0k5TOabiBD0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V120PlayerJoinableStatusEEaSERKS7_) +STUB("0k8PhD26ItI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEED1Ev) +STUB( + "0k8fdhDXBT0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("0k9yhLp+cHE", _ZN7WebCore11DisplayList13SetMiterLimitD0Ev) +STUB( + "0kILXajP0pc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEEdeEv) +STUB("0kJTcu2ueOE", _ZN7WebCorelsERN3WTF10TextStreamERKNS_16FloatRoundedRectE) +STUB( + "0kJb3CklZJk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEplEm) +STUB("0kJbnMr3DyU", + _ZN3sce7Toolkit2NP2V29Messaging12Notification18NewGameDataMessage8deepCopyERKS5_) +STUB("0kKFxdDtyrU", _ZN7CoreIPC15ArgumentEncoder18releaseAttachmentsEv) +STUB( + "0kNpSEblY-s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEE3getEv) +STUB( + "0kO5iDKfovo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEEaSERKS9_) +STUB("0kQCLDuIgig", Java_sun_awt_image_PNGImageDecoder_composeRowInt) +STUB( + "0kUdJisGUA8", + _ZN9Inspector23CanvasBackendDispatcher24setShaderProgramDisabledElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("0kYe0bK58zk", glProgramParameteri) +STUB("0kdUNplmamY", _ZN3WTF8msToDaysEd) +STUB("0kgbiCpmb1M", sceMatUninitialize) +STUB("0kguCIP5tfY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEixEm) +STUB( + "0knn6CnVW2E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEC1Ev) +STUB("0kr8s+yacs0", mono_object_castclass_mbyref) +STUB("0krKV0DRrAk", _ZN7WebCore13SleepDisablerC1EPKcN3PAL13SleepDisabler4TypeE) +STUB("0kt8DUiMzLk", WKFrameGetParentFrame) +STUB("0ktE1PhzGFU", sceUsbdAllocTransfer) +STUB("0kvhUAsKV+k", _ZNK3sce2Np9CppWebApi13InGameCatalog2V55Error9getReasonEv) +STUB("0kywPUxOxgE", sceCesSbcToUcs2) +STUB( + "0l0V4oQeb0M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEEaSERKS9_) +STUB("0l4HIvSeV28", searchCommInfoListByProtocolNumberWithActivate) +STUB( + "0l60XDQoHkk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEaSERKS9_) +STUB( + "0l7dhPdEK1Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEptEv) +STUB("0lAFLqZonXI", sceKeyboardDeviceOpen) +STUB("0lBE20Jr0z0", mono_aot_Sce_Vsh_Db_Sharedunbox_trampoline_addresses) +STUB( + "0lCQCvvS1NM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEC1EPS8_) +STUB("0lD2Oypwty8", _ZN7WebCore16MIMETypeRegistry14isTextMIMETypeERKN3WTF6StringE) +STUB("0lDkYS7qJD8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEC2Ev) +STUB("0lGA5lCfyG8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEC2Ev) +STUB( + "0lICmvHYb8I", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("0lJ2j9lHumo", _ZN7WebCore8Document26textManipulationControllerEv) +STUB("0lLK8+kDqmE", _ZN3sce4Json5ValueC1El) +STUB( + "0lPwpDJNox8", + _ZN8meta_gen11MsvPromoter30setKeyValue_TBLV_AudioMimeTypeENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB("0lR2YBKJMIE", _ZNK9Inspector22RemoteAutomationTarget20remoteControlAllowedEv) +STUB("0lViPaTB-R8", sceNetBweUnregisterCallbackIpcInt) +STUB( + "0lWcMSGU53Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "0lWfUsWc54A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEppEv) +STUB("0lY3SyL1d2c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEC1Ev) +STUB("0lZHbA-HRD0", sceNpServerErrorJsonGetErrorCode) +STUB("0lZViUngUpg", _ZN7WebCore31MediaEngineConfigurationFactory10enableMockEv) +STUB( + "0lZd08YpGoM", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("0lbbayqDNoE", sceNgs2GeomResetSourceParam) +STUB( + "0lgq0Nb5PZg", + _ZN7WebCore19JSAnimationTimeline6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_17AnimationTimelineENS6_13DumbPtrTraitsIS8_EEEE) +STUB("0lqDXuBdOxs", _ZN7WebCore10TreeWalker8nextNodeEv) +STUB( + "0luNIbUAPsg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEC1Ev) +STUB( + "0lv+ysBnv2g", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("0lxRS-x+kFI", sceM4aacEncEncodeEx) +STUB( + "0lz+-52BAGY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB("0mSwGG8QhX4", _ZNK7WebCore7Element18afterPseudoElementEv) +STUB( + "0mdP5AyXVD4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEdeEv) +STUB("0mdb9Q8J2hk", + _ZN3sce7Toolkit2NP2V28Matching7getDataERKNS3_7Request7GetDataEPNS2_4Core8ResponseINS3_4DataEEE) +STUB( + "0mdkBoSY90Y", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEdeEv) +STUB("0mgFAAcQ5oc", + _ZN7WebCore11JSDOMWindow15showModalDialogERN3JSC14JSGlobalObjectERNS1_9CallFrameE) +STUB("0mhooUPTcOI", _ZNK7WebCore4Node8containsEPKS0_) +STUB("0mi6NtGz04Y", _ZNSt14numeric_limitsIbE9is_signedE) +STUB( + "0mmuMBLNppc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEEC2Ev) +STUB("0moTubWCsTM", sceVdecswQueryComputeMemoryInfo) +STUB("0mqlL6YurX0", _sceModuleParam) +STUB( + "0mylfGVkteI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEED1Ev) +STUB( + "0n0M7-HyW4E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("0n26Y1SBD7Y", _ZNK7WebCore13HitTestResult13targetElementEv) +STUB( + "0n2htCYsRX4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEED1Ev) +STUB("0nDVqcYECoM", sceNpTusDeleteMultiSlotVariableAsync) +STUB("0nI81nsrl+A", _ZN3JSC12JSLockHolderC1ERNS_2VME) +STUB("0nUMj2vPfzU", _ZN3sce2Np9CppWebApi12Leaderboards2V15Entry12setSmallDataEPKvm) +STUB("0nV21JjYCH8", wcsncpy) +STUB( + "0nYfnKICEsc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEED1Ev) +STUB("0naef748CuM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEEC2EPS6_PNS2_10LibContextE) +STUB( + "0nbvdPdgjQk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEC1EPKS8_) +STUB( + "0ne6UABSIk4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEEC2ERSA_) +STUB("0nfAwy38Dy4", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStats13isInitializedEv) +STUB("0ni-ZSmFOwo", _ZN3sce7Toolkit2NP2V212ActivityFeed5Media11URL_MAX_LENE) +STUB( + "0njudrypKWQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEdeEv) +STUB("0nl2+9rgaic", Java_sun_awt_GnmUtils_copyPlanesBackgroundToPrimary) +STUB( + "0nlzDQqjiDA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("0nmzC8IaJ3s", _ZNK7WebCore17FullscreenManager21isAnimatingFullscreenEv) +STUB("0nqToAGG9tE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEC2ERS7_) +STUB( + "0nsMrt9Z7TY", + _ZN9Inspector22InspectorDebuggerAgent29breakpointActionsFromProtocolERN3WTF6StringERNS1_6RefPtrINS1_8JSONImpl5ArrayENS1_13DumbPtrTraitsIS6_EEEEPNS1_6VectorINS_22ScriptBreakpointActionELm0ENS1_15CrashOnOverflowELm16EEE) +STUB( + "0nw5YTIXiaY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEC1ERKS7_) +STUB( + "0o-Xzq+2lig", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEixEm) +STUB("0o2Vnzv5aUs", mono_aot_Sce_Vsh_VrEnvironmentjit_code_end) +STUB("0o3VDdtA6nM", sceAgcDcbSetIndexIndirectArgs) +STUB( + "0oCGU4Ng62A", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEeqERKS9_) +STUB( + "0oFlj9p+7vQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE4sizeEv) +STUB("0oGC9qxxc8g", _ZN3sce2np10JsonObject8SetFieldEPKclPPNS0_10JsonNumberE) +STUB( + "0oIoKcDA0Fw", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE6finishEv) +STUB( + "0oLuG3JxP8Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEED1Ev) +STUB("0oR2Is0DWTQ", _ZN7WebCore6ISOBoxnwEm10NotNullTagPv) +STUB("0oYzitrjux4", _ZN3sce7Toolkit2NP2V23TUS19FriendsDataStatusesD2Ev) +STUB("0oZKK6QmW-k", eglCreateContext) +STUB( + "0oZj2equmu8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE8pushBackERKS8_) +STUB("0odyvYtw5EA", wctrans_tab) +STUB("0onIrKx9NIE", sceHttpGetLastErrno) +STUB("0oqSpLTgWQo", WKVibrationSetProvider) +STUB("0os+lhwq2go", _ZN7WebCore6Editor30pasteAsPlainTextBypassingDHTMLEv) +STUB("0osoVuiIg38", sceIpmiMgrGetIpcBlockerPidByAppId) +STUB( + "0ourx3DLNi8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE21intrusive_ptr_add_refEPS9_) +STUB("0ovCuqnttco", scePlayReadyProfileEnter) +STUB( + "0p45eafTmzo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE5beginEv) +STUB("0pBCM5Bz3+g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEcvbEv) +STUB("0pGgm8EoJQU", _ZN3WTF11Persistence5CoderINS_7CStringEE6decodeERNS0_7DecoderERS2_) +STUB("0pOkbI8mSkU", _ZN3sce7Toolkit2NP2V27Session7Request7GetInfoD2Ev) +STUB( + "0pUdKH2nM2Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEC1ERKS7_) +STUB("0paZQUBr1c4", fuse_opt_match) +STUB("0parhLSAuME", WKIconDatabaseRetainIconForURL) +STUB("0pi0DgXRkEg", ubrk_last_59) +STUB("0pivetF6mSo", mono_arch_get_unbox_trampoline) +STUB( + "0pk0OUiKZ6I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEE11release_refEv) +STUB( + "0pnlM3W2Iyw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE5beginEv) +STUB("0pnqdBg8pdc", il2cpp_field_get_flags) +STUB("0pp8T8yX1BU", _ZNK3JSC4Yarr17RegularExpression7isValidEv) +STUB("0ppk-ExuWJA", WKFramePolicyListenerIgnore) +STUB("0ptZiu0jBJs", sceShellCoreUtilShowErrorDialog) +STUB( + "0ptlPN5G-Mc", + _ZN3JSC8JSObject3putEPNS_6JSCellEPNS_9ExecStateENS_12PropertyNameENS_7JSValueERNS_15PutPropertySlotE) +STUB( + "0puvJlPlMo0", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEiRNS2_10LibContextEPT_m) +STUB("0pwb8fOBwpQ", _ZNK3sce2Np9CppWebApi14SessionManager2V110FromMember11getOnlineIdEv) +STUB( + "0pwk0Vi1FLs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEEaSERSA_) +STUB( + "0pzJijLN4Y0", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE11hasResponseEv) +STUB( + "0q3Pf6miAts", + _ZN10Deprecated18ScriptFunctionCallC2ERKNS_12ScriptObjectERKN3WTF6StringEPFN3JSC7JSValueEPNS8_14JSGlobalObjectES9_RKNS8_8CallDataES9_RKNS8_7ArgListERNS4_8NakedPtrINS8_9ExceptionEEEE) +STUB( + "0q45gtJwnOw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEE7add_refEv) +STUB( + "0q5GInIKXTc", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeaders24getXPsnAtomicOperationIdEv) +STUB("0q8I0P9tIl8", + _ZNK3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer10getNatTypeEv) +STUB("0qAqkGzBFMY", _ZN7WebCore19ResourceRequestBase13setIsSameSiteEb) +STUB("0qCrgKq+JTw", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersC1Ev) +STUB( + "0qDdPfWJvYQ", + _ZN3sce2Np9CppWebApi11Matchmaking2V134ListUserTicketsResponseBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_27ListUserTicketsResponseBodyEEE) +STUB( + "0qEU42-GuDk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEppEi) +STUB("0qGI0LUnIL8", _ZN3sce7Toolkit2NP2V28Commerce8ProductsC1Ev) +STUB( + "0qJnAe8DWFc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("0qM4YywWRi8", __sanitizer_get_coverage_guards) +STUB("0qMyjZaf2ew", jit_area) +STUB("0qOtCR-ZHck", pthread_attr_getstacksize) +STUB("0qPkXg6hR0M", _ZN7WebCore17FrameLoaderClientdaEPv) +STUB("0qXihH4meFo", _ZN3sce2np9HttpTransC1Ev) +STUB("0qbsT7faz0E", _ZN4IPMI6Server12EventHandlerD1Ev) +STUB("0qcQlD9MKWU", png_set_text) +STUB("0qfrdvzGuSw", FTC_Manager_Reset) +STUB("0qgA9UUOBaM", _ZN7WebCore13HitTestResultaSERKS0_) +STUB( + "0qiAvlI1jyo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEE11release_refEv) +STUB("0qjYM9bp5vs", _ZN3sce2npeqERKNS0_4UserERKi) +STUB( + "0qm3qPFqtKA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("0qmAOS00O2g", _ZN7bmalloc8FreeListD2Ev) +STUB( + "0qr5jdWMC3E", + _ZThn16_N9Inspector21InspectorRuntimeAgent20getCollectionEntriesERN3WTF6StringERKS2_PS4_PKiS8_RNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime15CollectionEntryEEENS1_13DumbPtrTraitsISF_EEEE) +STUB("0qrLVqNUn2Y", _ZTVN3sce2np9JsonArrayE) +STUB( + "0qspaYnzDPo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEptEv) +STUB("0qui1BrbUZk", _ZNSt9basic_iosIwSt11char_traitsIwEE8setstateENSt5_IosbIiE8_IostateEb) +STUB( + "0r59Bcl2uJE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEEC1ERSA_) +STUB("0r6MphedWvo", ucase_addPropertyStarts_67) +STUB("0r8rbw2SFqk", _ZSt17_Future_error_mapi) +STUB("0rE9gw7K-bI", + _ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession18maxSpectatorsIsSetEv) +STUB("0rG6xtn7N5Q", sceUsbStorageRegisterCallbackForMapAvailable) +STUB("0rGx-oFMLyk", FT_Stream_ExtractFrame) +STUB("0rH-NteAXpo", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody11unsetOffsetEv) +STUB("0rKMjtnMATU", sceVoiceChatRequestLeavePlayerSessionVoiceChatChannel) +STUB("0rKmI1ZbMAc", FT_Glyph_Stroke) +STUB( + "0rL27xs+GzU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEC2Ev) +STUB("0rNsQCxb7Lw", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15StatsC1EPNS1_6Common10LibContextE) +STUB("0rNzyiMSRvI", _ZN3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse19unsetPreviousOffsetEv) +STUB( + "0rPhB3Auqng", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEaSERS7_) +STUB("0rSeEhh-HKA", sceVisionManagerSetCallbackForUpdateCalibrateHmdResult) +STUB("0rUX0PANi-o", _ZN3sce7Toolkit2NP19AllocImplementation10deallocateEPvj) +STUB("0rVi1Lt5Ltg", _ZN3sce7Toolkit2NP2V210Tournament18OneVsOneRankResultC2Ev) +STUB("0rfZ5SbLBN4", png_set_longjmp_fn) +STUB("0rj2akkxaO0", _ZN9Inspector17ScriptDebugServer16willRunMicrotaskEv) +STUB( + "0ro1gFmJat8", + _ZN9Inspector22InspectorDebuggerAgent24updatePauseReasonAndDataENS_26DebuggerFrontendDispatcher6ReasonEON3WTF6RefPtrINS3_8JSONImpl6ObjectENS3_13DumbPtrTraitsIS6_EEEE) +STUB("0rqwC4+sgzU", _ZN3sce2np3ipc17ServiceIpmiClient11TermServiceEi) +STUB("0rxKpH+LqNk", _ZN7WebCore7Element10clientLeftEv) +STUB( + "0s5yeA8dR8w", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_13WhoLikedStoryENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB( + "0sHarDG9BY4", + _ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE7_GetcatEPPKNSt6locale5facetEPKS5_) +STUB( + "0sLIVZsY+Qc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "0sQE5M8Zdgo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEED2Ev) +STUB("0sZ-PrsNDLc", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEEC1Ev) +STUB("0sesmAYH3Lk", sceNetConfigSetIfFlags) +STUB( + "0shfPEknCDo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "0soNqEI-Ewk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEEC2ERKSA_) +STUB("0soubDsGzXw", _ZN15AbstractStorage14TwitterContent4ReadEPvlPl) +STUB("0sw-S1fR2mk", _ZN3JSC19initializeThreadingEv) +STUB("0swFVOrriBU", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEEmmEi) +STUB("0syNkhJANVw", _ZN3sce2np6ObjectnwEmR14SceNpAllocator) +STUB("0t0-MxQNwK4", raise) +STUB( + "0t3VR9fd9rM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "0t5977rxO-4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEEC1ERSA_) +STUB("0t5T4m4CLuA", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V15ErrorC1EPNS1_6Common10LibContextE) +STUB( + "0tE4C4UiPhE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEptEv) +STUB( + "0tHoI34m3wE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEC2Ev) +STUB("0tHqMCUcq8g", mono_gc_walk_heap) +STUB("0tJ2ME6SPdk", _ZN3sce7Toolkit2NP2V27Session14InvitationDataC1Ev) +STUB( + "0tM0Kw6hZ2M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE5clearEv) +STUB( + "0tMKOPRU7vk", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "0tMwqw51t3I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEE5resetEPS6_) +STUB("0tQQjE7jGbk", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEEC2Ev) +STUB( + "0tREWZe51t8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("0tT-egOV1R0", _ZN7WebCore16DOMGuardedObject16contextDestroyedEv) +STUB( + "0tV1fnVN3sQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEC1EPKS8_) +STUB( + "0tVxd4Dc6QE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEC1EPNS2_10LibContextE) +STUB( + "0tXnZ36kPWA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEC1EPS8_) +STUB( + "0tcwjlgiYco", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEC2EPS6_PNS2_10LibContextE) +STUB("0teUd1yBOKg", png_write_end) +STUB("0tjbqZDVPp8", _ZN7WebCore10FileHandleD2Ev) +STUB("0tm4K4wuhVU", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats20natConnectivityIsSetEv) +STUB( + "0tss2TNi7lI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToSetMultiVariablesByUser10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_28SetMultiVariablesRequestBodyEEE) +STUB("0ttVHjPWLsE", sceKernelInternalMapNamedDirectMemory) +STUB( + "0twFo+SpZ8M", + _ZN7WebCore10JSDocument6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_8DocumentENS6_13DumbPtrTraitsIS8_EEEE) +STUB("0tyFGAZEVOc", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEEixEm) +STUB( + "0u4pPHETvHw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEE11release_refEv) +STUB("0uAUs3hYuG4", ctime) +STUB("0uCtvJ7t7X8", _ZNK7WebCore14LoggedInStatus6expiryEv) +STUB("0uCvAguExZQ", _ZN7WebCore11MemoryCache24pruneLiveResourcesToSizeEjb) +STUB( + "0uGhC7Wtowc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "0uIF-hTXVz8", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_20ChallengeRecvDetailsENS1_15AppSTLAllocatorIS5_EEEEC2Ev) +STUB( + "0uMiDy9YUaE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "0uQqTyzpo-w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEED1Ev) +STUB("0ugwOX1BRjo", sceAc3EncFlush) +STUB( + "0uiHYKjlCJM", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13integer5IsSetEv) +STUB("0up4MP1wNtc", sceNpTusTryAndSetVariableA) +STUB("0up7rxDSYRg", _ZN3sce2Np9CppWebApi7Matches2V117ResponseMatchTeam11setTeamNameEPKc) +STUB("0uqWfQ3k6no", Java_com_sony_bdjstack_org_bluray_bdplus_StatusImpl_send) +STUB("0uuqgRz9qfo", _Cnd_signal) +STUB("0uuzvLo6-hA", __ubsan_handle_alignment_assumption_abort) +STUB("0uvtTMIR7-A", + _ZN7WebCore15DatabaseTracker19fullPathForDatabaseERKNS_18SecurityOriginDataERKN3WTF6StringEb) +STUB( + "0uxceF-Rq6c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEC1EPKS8_) +STUB( + "0v2ANlchKZY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEC2EPS8_) +STUB("0v4UVCO4AXs", sceAudiodReportSetEnableFlag) +STUB("0v6+W4ulXJ0", sceMatTagVirtualMemory) +STUB("0v8-cEQL93A", _ZN3WTF9BitVector15resizeOutOfLineEm) +STUB("0vAS7bEXO7k", WKPreferencesGetShowsToolTipOverTruncatedText) +STUB("0vAcIjIOiEE", _ZN3JSC18GCActivityCallback18tryCreateFullTimerEPNS_4HeapE) +STUB("0vAuFLtXp10", sceMbusDebugSetAppModuleFocus) +STUB( + "0vAvZxHJrds", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEppEv) +STUB("0vC8zP+wJyI", WKPageRestoreFromSessionState) +STUB( + "0vFK5Gsr2vw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEC2Ev) +STUB( + "0vI+P1GX7N0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("0vNe8bbE4nU", rgctx_fetch_trampoline_mrgctx_36) +STUB( + "0vQbIb+89I8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE10setContextEPNS2_10LibContextE) +STUB("0vTn5IDMU9A", sceKernelGetMainSocId) +STUB("0vV0lazrIlE", sceVdecwrapFlushDecodeOutput) +STUB("0vVnIFMrYAo", _ZNK3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEEixEm) +STUB( + "0vZkpVYPgUs", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V132FrequentlyMutedPropertiesFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_25FrequentlyMutedPropertiesEEE) +STUB("0vc0oPu2cqc", + _ZN7WebCore14SchemeRegistry41allowsLocalStorageAccessInPrivateBrowsingERKN3WTF6StringE) +STUB( + "0vdbz6QFCi0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "0vfYZdF5yZo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEC1EPS6_PNS2_10LibContextE) +STUB( + "0vjDPWX9Hpc", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "0vjviJEgqnk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEE11get_deleterEv) +STUB( + "0vmrwW2fhOk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEC1EPKS8_) +STUB("0vpdJTviIvo", _ZN3sce7Toolkit2NP2V29Challenge13ChallengeDataC1ERKS4_) +STUB("0vu2b3CZiQc", ubrk_isBoundary_59) +STUB( + "0w-arg2V0G4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEED1Ev) +STUB("0w6LRl9ZOGc", _ZN7WebCore15VisiblePositionC2ERKNS_8PositionENS_9EAffinityE) +STUB( + "0wEDwaa1Syw", + _ZNK3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V113ErrorResponse6toJsonERNS_4Json5ValueEb) +STUB( + "0wEjiCERSgE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE5beginEv) +STUB("0wFl-CwJ37Y", sceCompositorWaitEvent) +STUB("0wGjbW+tVlc", SSL_get_error) +STUB("0wPw3Bv1gWc", _ZNK3sce2Np9CppWebApi11Matchmaking2V15Cause11sourceIsSetEv) +STUB( + "0wRDECGwsqk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEEC2ERKSA_) +STUB("0wTZ9-9+E6o", _ZN3JSC15JSWeakObjectRef6s_infoE) +STUB( + "0wX+g5KaJM0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE5beginEv) +STUB( + "0wZmCeD-dz4", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEEiRNS2_10LibContextEPT_m) +STUB("0wc3eo2S-RE", png_read_row) +STUB("0wfGuexCjYI", _ZN3sce2Np9CppWebApi12Leaderboards2V15ErrorC2EPNS1_6Common10LibContextE) +STUB("0wgB8VmdqR8", _ZNK7WebCore16HTMLMediaElement8durationEv) +STUB("0wlN5i59xrM", _m_agid) +STUB("0wnZViigP9o", sceHmdReprojectionUnsetCallback) +STUB("0wnf2a60FqI", sceCameraInitializeRegistryCalibData) +STUB( + "0ws+XzsxTEQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEED2Ev) +STUB("0wu33hunNdE", sleep) +STUB( + "0wxHtqo7dew", + _ZN3JSC14SourceProviderC2ERKNS_12SourceOriginEON3WTF6StringERKNS4_12TextPositionENS_24SourceProviderSourceTypeE) +STUB( + "0wzoLEfYeJo", + _ZN9Inspector20DOMBackendDispatcher11requestNodeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("0x-KAxU5tgQ", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISbIcSt11char_traitsIcENS2_IcEEEE7addressERS6_) +STUB( + "0x0JMPqU0CY", + _ZNK7WebCore14FrameSelection31getClippedVisibleTextRectanglesERN3WTF6VectorINS_9FloatRectELm0ENS1_15CrashOnOverflowELm16EEENS0_19TextRectangleHeightE) +STUB( + "0x1sqZvoENw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEED1Ev) +STUB("0x4NT++LU9s", _ZTSSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE) +STUB("0x6o1VVAYSY", sceAudioOut2ContextCreate) +STUB("0x7rx8TKy2Y", _Unlockfilelock) +STUB( + "0xFec1j3PoQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEmmEv) +STUB("0xH4JecjF2Q", _ZN3JSC17JSArrayBufferViewC2ERNS_2VMERNS0_19ConstructionContextE) +STUB( + "0xITDA+k42Y", + _ZN3sce2Np9CppWebApi7Matches2V131RequestCompetitiveResultFactory7destroyEPNS3_24RequestCompetitiveResultE) +STUB( + "0xJVLGcWA0I", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToSendPlayerSessionMessage12getsessionIdEv) +STUB( + "0xKAaXjoetg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEC2ERS7_) +STUB("0xL7AwgxphE", _ZN3sce2np9LocalFile5WriteEPNS0_6HandleEPKvmPm) +STUB( + "0xLVhtsP+RA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("0xOJrOU+yaE", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification14NewRoomMessageEEC2Ev) +STUB("0xQypcNgVg0", WKPageLoadURLWithUserData) +STUB("0xXyNFpQzwU", _ZN3sce7Toolkit2NP2V24Core11ServerErrorD1Ev) +STUB( + "0xasib0kC04", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("0xgFRKf0Lc4", + _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecPKv) +STUB("0xgWqLXrJYI", _ZN7WebCore18DOMWindowExtensionD1Ev) +STUB( + "0xiba5Xl+io", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEppEi) +STUB("0xibgvhB41E", + _ZNK3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator14getCustomData1Ev) +STUB( + "0xn44QqdEIo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEplEm) +STUB("0xrhvJ8QANU", sceNpSnsIntYtGetAccessToken) +STUB( + "0xvG+zddEFg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("0xxMecChkro", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEEC1Ev) +STUB("0y01ndm0BA8", sceShellCoreUtilGoBackToKratosCurrentSessionGame) +STUB("0y0YtzmtHUg", _ZN7WebCore8SVGNames10feFuncATagE) +STUB("0y370-q87ug", sqlite3_column_type) +STUB( + "0yBLNN0P9ow", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEEC2ERSA_) +STUB("0yDdrIgqpjE", sceNpManagerIntGetVshTokenA) +STUB("0yNHPIkVTmw", sceRazorCpuUnTagBuffer) +STUB("0yVJNcMqyXk", sceKernelGetUtokenFlagedUpdaterForRcmgr) +STUB("0yWz5Qwwuyw", _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeIPcPvEE10deallocateEPS6_m) +STUB("0yaNya-i2-U", _ZN3JSC24getExecutableForFunctionENS_7JSValueE) +STUB("0ydY-JngPc8", _ZN3sce7Toolkit2NP28AdditionalSessionInfoRequestC2Ev) +STUB("0yhTNYJG35I", YGNodeGetPrintFunc) +STUB( + "0yiHLyOe24c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEE7get_refEv) +STUB("0yidLbrWXoE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEEC1Ev) +STUB( + "0ylRSnbIPOY", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_8Debugger16BreakpointAction4TypeEEEN3WTF8OptionalIT_EERKNS6_6StringE) +STUB("0ypWH4DpK9E", sceHidControlSetRevokeList) +STUB( + "0ypcZr-tbQo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEED1Ev) +STUB("0yriBj5rS3U", _ZN3JSC25numberOfOSRExitFuzzChecksEv) +STUB( + "0yvSKcjMI+Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE10setContextEPNS2_10LibContextE) +STUB( + "0ywZXWKyZ5U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("0yzYdZf0IwE", sceRudpSetOption) +STUB( + "0z+uy9sMJBQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEEC2ERSA_) +STUB("0z1mgIkYzG4", _ZN3sce7Toolkit2NP15AppSTLAllocatorIiE8allocateEmPKv) +STUB("0z2qLqedQH0", sceHmdInternalSetCrashReportCommand) +STUB("0z45PIH+SNI", sceSaveDataMount2) +STUB("0z7srulNt7U", sceSystemServiceAcquireFb0) +STUB( + "0zEjOmQC9Vw", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("0zF6qkqn+bk", _ZN3sce7Toolkit2NP2V27Ranking12RangeOfRanks8deepCopyERKS4_) +STUB("0zHCq+Xn2Bc", __tsan_read1_pc) +STUB( + "0zI94ssV1Lg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("0zIN2tg-XUM", _ZN3PAL8KillRing4yankEv) +STUB( + "0zLg7e8bIOY", + _ZN3sce7Toolkit2NP8Matching9Interface22updateSessionAttributeEPNS1_22UpdateAttributeRequestEPNS1_9Utilities6FutureIiEEb) +STUB("0zMFpPqaVvY", _ZN7WebCore8Document20webkitExitFullscreenEv) +STUB("0zSwjAZrtJE", _ZN7WebCore4FileC1ERKN3WTF6StringE) +STUB("0zU-PO6BONU", _ZN3WTF19initializeGCThreadsEv) +STUB("0zU0G+wiVLA", sceInvitationDialogOpen) +STUB("0zXEF2bv36g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEE11get_deleterEv) +STUB( + "0zYBH2TiTQ0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE6resizeEj) +STUB( + "0zZqWJ1vWtY", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi17updateMatchStatusEiRKNS4_28ParameterToUpdateMatchStatusERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB("0zbFs+8budU", _ZN12video_parser5vpcom23RtcGetCurrentSecureTickEP10SceRtcTick) +STUB("0zkJDvGhpF0", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V511ContentTypeEEptEv) +STUB("0zkr0T+NYvI", sceNpTusGetMultiUserDataStatusAsync) +STUB( + "0zohpOxqv64", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEE11get_deleterEv) +STUB( + "0zqYQrUuZqA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody19unsetDataStatusListEv) +STUB( + "0zr1LvD3oEw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("0zsMYNRB+G4", _ZN3sce7Toolkit2NP2V23TUS19FriendsDataStatusesC2ERKS4_) +STUB("0zsTiDhM0nU", _ZN4IPMI6Client6createEPPS0_PKNS0_6ConfigEPvS6_) +STUB("0ztWhbkFNEM", _ZN3sce7Toolkit2NP2V26Friend12Notification16FriendlistUpdate8deepCopyERKS5_) +STUB("0ztgt9yYb1s", png_get_interlace_type) +STUB("0zuAEore8pY", NpWebInitialize) +STUB( + "0zxPTw-rKfo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEplEm) +STUB( + "1+++-w1Beug", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEmmEi) +STUB( + "1+0lT5o0nOA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEC1EPS8_) +STUB("1+5BaLg65Tw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEEcvbEv) +STUB("1+5ojo5J2xU", _ZTIPl) +STUB("1+6sx9A7XeE", sceUlpMgrGetDecidState) +STUB("1+8QvFXFPWQ", + _ZNK3sce7Toolkit2NP15AppSTLAllocatorISbIcSt11char_traitsIcENS2_IcEEEE8max_sizeEv) +STUB("1+8t9aHLiz8", _sceUltMutexOptParamInitialize) +STUB("1+BYryzQZt8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEED1Ev) +STUB( + "1+D8T-6QVoE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEEdeEv) +STUB("1+DgKL0haWQ", sceFontWritingLineClear) +STUB("1+FCJWJHZCU", WKPreferencesGetShouldRespectImageOrientation) +STUB("1+GAmdx7sH4", monoeg_g_list_reverse) +STUB("1+JNcxjahDI", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification14NewRoomMessageEED2Ev) +STUB( + "1+KKIQ1g+q4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB("1+KpQYgv1zk", sceMusicPlayerServiceGetPlaybackResults) +STUB( + "1+LOD1eEHbI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEC1EPNS2_10LibContextE) +STUB( + "1+NhBhe98BA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEC1EPKS8_) +STUB( + "1+REapi9KG0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEED1Ev) +STUB("1+UU-cxoqk8", s19) +STUB( + "1+VhPSgCL1A", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEeqERKS9_) +STUB("1+Y+ykZkTwg", _ZN3JSC4Yarr17RegularExpressiondaEPv) +STUB( + "1+ZkDXCBnos", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEEC2ERSA_) +STUB( + "1+fpf5Korr4", + _ZN8meta_gen11MsvPromoter23setKeyValueTBLTLanguageENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti) +STUB("1+ht-ZR+TQw", _ZN9Inspector22InspectorDebuggerAgent7disableEb) +STUB("1+i39RxT3EU", uscript_closeRun_67) +STUB( + "1+ido-FAhMY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE8pushBackERKS8_) +STUB( + "1+jR7icdJ18", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetrics18setConfidenceScoreERKi) +STUB( + "1+kKUBq4F14", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEEC1ERSA_) +STUB( + "1+lF8hyyb7g", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEeqERKS9_) +STUB("1+nxJ4awLH8", sceUserServiceGetUserGroupName) +STUB( + "1+uHJKwV6G0", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("1+zr-xBIczY", mono_aot_Sce_Vsh_Messagesmethod_addresses) +STUB("1-1uDZ4tiFA", sceSystemLogger2Initialize) +STUB( + "1-2ChF1-9+s", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities15ActivityFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS6_12IntrusivePtrINS4_8ActivityEEE) +STUB("1-33AIR7vjk", _ZNSt9_FacetptrISt10moneypunctIcLb1EEE6_PsaveE) +STUB( + "1-4wjBT9nJk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEdeEv) +STUB("1-6VPV4pXAo", SendNtfMsg) +STUB("1-9PZ6MKKjo", mono_profiler_coverage_get) +STUB("1-IJHxzRJGw", sceCamera2GetContrast) +STUB("1-LFLmRFxxM", sceKernelMkdir) +STUB( + "1-Lj-f1FyC0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEE11get_deleterEv) +STUB("1-O9j5vS8QU", sceAvSettingGetCurrentHdmiDeviceId) +STUB( + "1-TVrBGsKl4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEED1Ev) +STUB("1-V2o1+GUpo", _ZN3sce2Np9CppWebApi7Matches2V113ChildActivityC2EPNS1_6Common10LibContextE) +STUB( + "1-VwW8KqeVg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEdeEv) +STUB("1-Wwhd0ToKo", _ZN3NTF14NetworkControl12getIPAddressEv) +STUB("1-Xmz3cBpkE", scePlayReadyProfileLeave) +STUB("1-gUn1PI4Sw", sceAgcDcbAtomicMem) +STUB( + "1-giGzb7O1Q", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody14integer10IsSetEv) +STUB( + "1-jw2YaVrug", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser17setnpServiceLabelEj) +STUB( + "1-jy5rm27eo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("1-qb2Z-pBRU", _ZN3sce7Toolkit2NP2V210Tournament17TournamentDetailsC1ERKS4_) +STUB("10+T0QBSoWM", sys_trim) +STUB( + "103vWqrZq5k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEEC2EPS8_PNS2_10LibContextE) +STUB( + "10AevvvBQlY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("10C2KUNzUuc", ucache_hashKeys_67) +STUB( + "10DDFRU0bJI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE21intrusive_ptr_add_refEPS9_) +STUB("10Gs0X-2dso", ures_getStringByIndex_67) +STUB("10NAQUqyOpw", sceVisionManagerRequestFindPad) +STUB("10VcrHqHAlw", + _ZNSt13basic_filebufIwSt11char_traitsIwEE7seekposESt4fposI9_MbstatetENSt5_IosbIiE9_OpenmodeE) +STUB( + "10Z5dGZdl2E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEED2Ev) +STUB("10fsdhg9448", WKSerializedScriptValueCreate) +STUB("10sQaMQxi70", _ZNK7WebCore22HTMLFormControlElement12willValidateEv) +STUB("10t3e5+JPnU", sceNpMatching2Initialize) +STUB( + "10ynQd4weB0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEE7get_refEv) +STUB( + "11-Vgs-wCsQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE5clearEv) +STUB( + "11-tw33xIBs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("116AJAcA-38", __tsan_atomic64_exchange) +STUB( + "11A0hVwMLLc", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities20ErrorResponseFactory6createEPNS1_6Common10LibContextENS6_12IntrusivePtrINS4_5ErrorEEEPNS9_INS4_13ErrorResponseEEE) +STUB("11DM5mLVBA4", _ZN7WebCorelsERN3WTF10TextStreamERKNS_8IntPointE) +STUB("11DvPWLfwtU", WKBundleExtendClassesForParameterCoder) +STUB( + "11IeLYPh0w4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEE7add_refEv) +STUB("11Kr-BPqNGE", _ZN9Inspector21InspectorConsoleAgentC1ERNS_12AgentContextE) +STUB("11Mb6e6N2hk", + _ZN3sce7Toolkit2NP15CommunicationIdC2ERKSbIcSt11char_traitsIcENS1_15AppSTLAllocatorIcEEES9_S9_) +STUB("11N69VhY3v8", _ZN7WebCore11MemoryCache30destroyDecodedDataForAllImagesEv) +STUB( + "11Nl-OXIxHo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEC1Ev) +STUB( + "11R1sl4Hfg0", + _ZN3sce7Toolkit2NP8Sessions9Interface6searchEPKNS1_22SearchNpSessionRequestEPNS1_9Utilities6FutureISt6vectorINS1_20NpSessionInformationENS1_15AppSTLAllocatorISA_EEEEEb) +STUB( + "11Tm+i7KAEY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE5emptyEv) +STUB("11VA62-jFjU", WKPreferencesSetCompositingRepaintCountersVisible) +STUB( + "11X+WA+-9gk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEE5resetEPS6_) +STUB("11ZG5FOPbAM", scePerfTraceSpmStop) +STUB( + "11cb5V7fXPs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE3endEv) +STUB( + "11fIl7oWzIw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEC1EPNS2_10LibContextE) +STUB("11fR6GY6dvY", + _ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors8fromJsonERKNS_4Json5ValueE) +STUB( + "11ggS0s-Ogk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("11gkLQd+4F0", + _ZN3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession11setPlatformEPKc) +STUB("11gkco5M1lY", _ZN12video_parser7cVpUtil9PrintDumpEPvi) +STUB("11kj4X8ocA0", _ZN7WebCore5ColorC2EOS0_) +STUB("11uEI36hbmA", _ZNK3sce2Np9CppWebApi7Matches2V118RequestTeamResults7getRankEv) +STUB( + "11vKUvshjAM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEED2Ev) +STUB("11w8jzlFoBs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119ChildActivityStatusEEptEv) +STUB("11yzq8RpTp0", mono_type_get_name) +STUB( + "11zVpLzszyc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "127BAgfQx0I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEE11release_refEv) +STUB("128J-E6cX8Q", sceNpUniversalDataSystemCreateRecordData) +STUB("12Bw1wzWkKI", _ZN3sce7Toolkit2NP2V27Session20LocalizedSessionInfo16SESSION_NAME_LENE) +STUB("12EXsiNKS9s", _ZN7WebCore5Range6setEndERKNS_8PositionE) +STUB( + "12EgNNWgZqw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEC1Ev) +STUB("12PV4AVsJCM", sceAppInstUtilGetParentalControlLevel) +STUB("12Rb63-+3s4", _ZN3JSC6JSCell14deletePropertyEPS0_PNS_14JSGlobalObjectENS_12PropertyNameE) +STUB("12U1uRaeL7U", usearch_last_67) +STUB("12f6asHhSfM", _ZN12video_parser18cMp4FFLHndlManager18getFF4UuidPrivHndlEyy) +STUB("12gexxIy+t0", _ZNK7WebCore11MediaPlayer31requiresTextTrackRepresentationEv) +STUB("12q9T7r-8fU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEE7get_refEv) +STUB( + "12re2Hd-NhU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEED1Ev) +STUB("12rsFW04hrk", _ZN7WebCore6RegionC1ERKS0_) +STUB("12tIV7cplJA", WKBundlePageAddUserScriptInWorld) +STUB( + "12uL91Dl4jY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEE11release_refEv) +STUB("12wOHk8ywb0", sceKernelPollSema) +STUB("12wY179+CE8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE4sizeEv) +STUB("12wh-hWSK9A", uregion_getType_67) +STUB("12wr1p+AvME", _ZZL14report_failure19_Unwind_Reason_CodePN10__cxxabiv115__cxa_exceptionEE4e_ti) +STUB( + "12xTu8tg3nA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("13+IL8oL-sM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEED1Ev) +STUB("1304wfGwMNY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEEC2EPKS6_) +STUB( + "137kxyWmjmI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEE5resetEPS6_) +STUB("138vohStwzY", _ZN7WebCore15XPathNSResolverD2Ev) +STUB("139Uzlhc7iU", mono_aot_Sce_Vsh_Orbis_Bgftplt) +STUB( + "13CNrsMzvDU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "13FZgPGZ9eA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEE11get_deleterEv) +STUB( + "13GsJUeVNp8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEEptEv) +STUB( + "13IQiqhlnCg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE8copyFromERKS9_) +STUB("13JDK3v+BNQ", udat_toPattern_67) +STUB( + "13KoEaVmuJ8", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi15filterProfanityEiRKNS4_26ParameterToFilterProfanityERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_23FilterProfanityResponseEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("13O00wtDjUQ", uprv_decNumberRescale_67) +STUB("13RlUJaR9MI", _ZN7WebCore37CrossOriginAccessControlCheckDisablerC1Ev) +STUB("13Vdz0yQpSw", _ZN3JSC6JSCell12dumpToStreamEPKS0_RN3WTF11PrintStreamE) +STUB("13WccQjpYtM", sceKernelEventLogClose) +STUB("13Y3oJ7jRHQ", eglGetCurrentDisplay) +STUB("13YTEVlQaOM", _ZN7WebCore19serializationForCSSERKNS_5ColorE) +STUB("13YhdTR9VUw", _ZN7WebCore12deleteCookieERKNS_8DocumentERKNS_3URLERKN3WTF6StringE) +STUB( + "13ZB+evhVig", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_34DetailedProductInfoListInputParams9ProductIdEE9constructEPS4_RKS4_) +STUB("13eZprwQdRI", _ZN3WTF10hasElapsedERKNS_24TimeWithDynamicClockTypeE) +STUB( + "13lFSJqGMmY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEneERKS9_) +STUB( + "13mSGt2flG4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE3endEv) +STUB("13xzrgS8N4o", _ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1Em) +STUB("13zq0KIVJJg", WKOpenPanelParametersCopyAcceptedFileExtensions) +STUB( + "13zquMW5r4M", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("141GMyYVzL8", + _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes6toJsonERNS_4Json5ValueEb) +STUB("1471ajPzxh0", pthread_rwlock_destroy) +STUB( + "148JBaAUk-4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEptEv) +STUB("14H9jNVuOAY", _ZN3sce7Toolkit2NP2V210Tournament25OneVsOneTournamentDetailsC2ERKS4_) +STUB( + "14IksFlkInE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB( + "14LZPHItTxM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE5emptyEv) +STUB( + "14LjvR9JSmY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE7popBackEv) +STUB("14NyMl9s7Yo", GCC_except_table479) +STUB("14PDhhMEBKY", _ZN3sce2np7Callout4StopEv) +STUB("14QqltFJ+xk", _ZNK7WebCore19ProtectionSpaceBase15isPasswordBasedEv) +STUB( + "14QwPzMtdc4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE8capacityEv) +STUB("14QyV2LP+tE", _ZN7WebCore8Settings21setShowRepaintCounterEb) +STUB( + "14VGwjBcHo8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEC1EPKS8_) +STUB("14Zfc72Ykbc", _ZN7WebCore9FrameView37setScrollingPerformanceLoggingEnabledEb) +STUB("14aJhCpL6nU", _ZN12video_parser18cProfileCheckerMp4D2Ev) +STUB("14bOACANTBo", scePthreadOnce) +STUB( + "14dk7Cqdhnc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEEC2Ev) +STUB("14ej0AH9EVI", mono_aot_Sce_Vsh_KernelSysWrapperjit_got) +STUB( + "14hGhmOIXoc", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions9getfieldsEv) +STUB("14kQyudPBOE", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_34DetailedProductInfoListInputParams9ProductIdEED1Ev) +STUB("14lTUjs9Z14", + _ZN3sce2Np9CppWebApi12Leaderboards2V127RecordLargeDataResponseBody11setObjectIdEPKc) +STUB("14oSjAHwL3E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEEmmEi) +STUB("14pK67tlLag", _ZN7WebCore11DisplayList10StrokePathC2ERKNS_4PathE) +STUB("14qdePVPv0E", uprv_fmax) +STUB( + "14rD3j3MPM4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEmmEv) +STUB("14uL8NIvS2g", + _ZNSt9_FacetptrISt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEE6_PsaveE) +STUB("14xKj+SV72o", _ZNKSt7codecvtIcc9_MbstatetE3outERS0_PKcS4_RS4_PcS6_RS6_) +STUB("1555+tbp3Qo", mono_aot_System_Transactionsplt_end) +STUB("157EW1LSEtM", __sanitizer_get_heap_size) +STUB("159vuk+beoc", sceAvControlChangeProcessAttribute) +STUB( + "15A0IGPGoY8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEixEm) +STUB( + "15AE0K52I48", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEED1Ev) +STUB("15Cz0VyipAQ", _ZN9Inspector24NetworkBackendDispatcherD2Ev) +STUB("15DNj4tGe8c", _ZN9Inspector26TimelineFrontendDispatcherdlEPv) +STUB("15GxVYXUb1g", _ZN7WebCore9HTMLNames15frameborderAttrE) +STUB("15JBN0lRT1s", _ZN3JSC16CompleteSubspace16allocatorForSlowEm) +STUB("15JUzFaWTkY", sceNetCtlGetConnectionElapsedTimeIpcInt) +STUB( + "15KZvxLI4JQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEneERKS9_) +STUB( + "15L6LCUhHW4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEC1ERS7_) +STUB( + "15QGpCrzvXg", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "15SNf7TA3PE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "15TtZHNz4Zg", + _ZN7WebCore11MediaPlayerC2ERNS_17MediaPlayerClientENS_16MediaPlayerEnums21MediaEngineIdentifierE) +STUB("15VjSngWz0I", _ZNK15AbstractStorage18DailymotionStorage13GetCapabilityEv) +STUB( + "15YaevbEmQ8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEEptEv) +STUB("15Ywg-ZsSl0", sceNetSetDns6Info) +STUB( + "15jwL53UBbQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEplEm) +STUB( + "15k6fTZDi5E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEC2Ev) +STUB("15lB7flw-9w", _ZNSt20bad_array_new_lengthD2Ev) +STUB("15qvbsddabA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEED1Ev) +STUB("15rPAIJU2YE", WKPreferencesGetStorageAccessAPIEnabled) +STUB( + "15stJEESpS8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEC2EPS8_) +STUB("15vmGXiUnGw", + _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchStatusRequestC2EPNS1_6Common10LibContextE) +STUB( + "16+N3qV6MG8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("161H5qAa6fk", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS7TusDataEE3setEv) +STUB("167jPcYThXk", + _ZN3JSC21loadAndEvaluateModuleEPNS_14JSGlobalObjectERKNS_10SourceCodeENS_7JSValueE) +STUB( + "16A1jl1BK0I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE5emptyEv) +STUB("16DOGRFnVaE", _ZN7WebCore13JSHTMLElement15subspaceForImplERN3JSC2VME) +STUB( + "16EZFCh+udM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("16H0tI43iL8", + _ZN3WTF6String28numberToStringFixedPrecisionEfjNS_29TrailingZerosTruncatingPolicyE) +STUB("16JOEw--AIs", umsg_vformat_67) +STUB("16Ob5ACgOYk", sceAudioOut2PortUnregister) +STUB( + "16UCJerXzY8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEE11release_refEv) +STUB("16UI54cWRQk", sceImeOpenInternal) +STUB("16V3Bs3lvS4", _ZN7CoreIPC10AttachmentC1Ev) +STUB("16efS+mFGGc", sceMoveTrackerGetVersion) +STUB("16hg5ktQepw", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIfE21intrusive_ptr_add_refEPS4_) +STUB( + "16hp5L8MiFA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "16iE1U5SFuk", + _ZN9Inspector24CanvasFrontendDispatcher16recordingStartedERKN3WTF6StringENS_8Protocol9Recording9InitiatorE) +STUB("16mriLSanjo", _ZN7WebCore9PageCache9singletonEv) +STUB( + "16ofuEzDgrA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEEcvbEv) +STUB("16sMmVuOvgU", sceHttpGetMemoryPoolStats) +STUB("16uyavDW06I", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence12Notification14PresenceUpdateEE3getEv) +STUB( + "16vmQHeSpo8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEC2ERKS7_) +STUB( + "16vpGUSJ+6E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE8capacityEv) +STUB("16zU7B-iCig", _ZN3JSC7Symbols16applyPrivateNameE) +STUB("173U3CJro7E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEED1Ev) +STUB("176q2+O2+VQ", scePlayReadyCdmiGetSessionAppContext) +STUB("177XzOMP0XQ", mono_metadata_decode_table_row) +STUB("17CahsS7jG8", ScePsmMonoJitInit) +STUB("17G+g+OmP0k", _ZN23sceMetadataReaderWriter8MetadataD2Ev) +STUB( + "17Ls-VM7d4w", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEneERKSA_) +STUB("17Mfe1B3X6U", _fstatfs) +STUB( + "17PZV1FQ-tE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("17Ri+x+MxmI", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE5emptyEv) +STUB("17TxeYbrDwQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE8pushBackERKS6_) +STUB( + "17YvdzrmD9Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEaSERKS9_) +STUB( + "17gDMtP1oTs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE8capacityEv) +STUB("17lDGYhSTx4", _ZN7WebCore13HTTPHeaderMap6appendERKN3WTF6StringES4_) +STUB( + "17nmpheONU0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEED1Ev) +STUB("17ocUkwxbLQ", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEEcvbEv) +STUB( + "17vrPKyaflk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEC1EPS8_) +STUB("18+ldEmxB6w", _ZN7WebCore17HTMLPlugInElement21isReplacementObscuredEv) +STUB("186Jz869gsc", sceCamera2Finalize) +STUB( + "188JWJIYA+M", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEED2Ev) +STUB("188x57JYp0g", sceKernelCreateSema) +STUB("189r812KgtY", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUseraSERS5_) +STUB("18B2NS1y9UU", sceRtcGetCurrentTick) +STUB("18E1gOH7cmk", __lshrdi3) +STUB("18IVGrIQDU4", sceAudioOutSetJediJackVolume) +STUB("18KNgSvYx+Y", sceNetConfigFlushRoute) +STUB("18MTG+xtvtU", _ZN3WTF17charactersToFloatEPKDsmRm) +STUB("18NPivA-byc", sceVideoOutSetDisplayEventPosition) +STUB("18XZM7c4O3U", _ZNK3sce2Np9CppWebApi14ConnectAccount2V28PSNError8getErrorEv) +STUB( + "18YsfEQuZJk", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOffer28setxPsnAcceptPlatformNamePs5ENS5_25XPsnAcceptPlatformNamePs5E) +STUB("18ZCDYD5xjI", sceRegMgrCntlGetFileName) +STUB("18gO8FIVDOg", _ZN3JSC16InternalFunction13visitChildrenEPNS_6JSCellERNS_11SlotVisitorE) +STUB("18j+qk6dRwk", sceNpLwMutexLock) +STUB( + "18kAO1-lD3w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE7reserveEi) +STUB("18l7K9YYCi0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V117ResponseMatchTypeEEC1EPS6_) +STUB( + "18mSPH7MgKQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEED2Ev) +STUB("18oHpHPSHnY", _ZNK7WebCore26NetscapePlugInStreamLoader6isDoneEv) +STUB( + "18ptDelABgM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE6resizeEj) +STUB("18q8DKWP6Gk", Java_com_sony_gemstack_core_CoreAppId_n_1init) +STUB("18rLbEV-NQs", _ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1Em) +STUB( + "18vg52kHITQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB( + "18xn7dVHFBM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEE7get_refEv) +STUB("18ylu1q-Us8", sceDebugGetModuleMetaData) +STUB("192-IV4CFa8", _ZN7WebCore13JSHTMLElementC1ERKS0_) +STUB("195DFuuHr6U", _ZNK7WebCore9FrameView21clientToDocumentPointENS_10FloatPointE) +STUB("195ad-jAsTU", _ZN3sce4Json5Value3setERKNS0_5ArrayE) +STUB( + "19AC7P0009A", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeaderC2Ev) +STUB("19EPmKIGrMA", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEEC2EPKS6_) +STUB("19Ec7WkMFfQ", sceNetCtlApCheckCallback) +STUB("19F4El4TWX4", mono_aot_Sce_Facebook_CSSLayoutunbox_trampoline_addresses) +STUB("19FCHyQTrg0", _ZN3WTF14FileSystemImpl15pathGetFileNameERKNS_6StringE) +STUB("19JLd+gpLPA", _ZN3sce7Toolkit2NP2V28Commerce10Descriptor13IMAGE_URL_LENE) +STUB("19KgfJXgM+U", sceNpWebApiAddMultipartPart) +STUB("19LEprfkGS0", GetVideoOutputStatus) +STUB("19N0joauSsE", glDrawArrays) +STUB( + "19SKoj7IWJo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("19VrLguqmYc", monoeg_g_slist_find) +STUB( + "19X1yRp+26g", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser10setslotIdsEPKc) +STUB("19bXLmSr5Pg", _ZN7WebCore17JSDOMGlobalObject5worldEv) +STUB( + "19iC94y6f7E", + _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchDetail27getupdateMatchDetailRequestEv) +STUB( + "19nK2FOyBYg", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser25setusePlayerSessionFilterEPKc) +STUB("19qviRPXSkE", rgctx_fetch_trampoline_mrgctx_58) +STUB("19rW9Jqrx+A", WKWebsiteDataStoreConfigurationGetTypeID) +STUB("19uCF96mfos", sceUserServiceSetImePointerMode) +STUB( + "1A-cznNpcrw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEC1ERS7_) +STUB("1A1iA5Vql4M", _ZN3WTF10isLeapYearEi) +STUB("1ADfldNB9aQ", scePktMgrPrepareUlpNtfPacket) +STUB("1AGh4Iic7S4", _ZN7WebCore19MediaResourceLoader25recordResponsesForTestingEv) +STUB("1AHRv0-rMnU", _ZN3sce7Toolkit2NP2V27Ranking8TempRankD2Ev) +STUB("1AHwZrLxA58", _ZThn16_N9Inspector28InspectorScriptProfilerAgent12stopTrackingERN3WTF6StringE) +STUB("1AHz07523bM", _ZN3sce7Toolkit2NP2V212EventsClient12EventDetailsC2Ev) +STUB( + "1ANO09fNOEU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE8copyFromERKS9_) +STUB("1APtZS06W-I", sceDeci4hDrfpOpendir_fuse) +STUB("1AQf7o8gpHc", sceLncUtilGetAppType) +STUB("1ARjw9-b3Jk", mono_runtime_invoke_array) +STUB( + "1ASSjgTltmE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEE7add_refEv) +STUB("1ASkWfGLyIo", ulocdata_close_67) +STUB("1AYeyBFz+eM", xmlSAX2EntityDecl) +STUB("1AbLXkyjTJo", _ZN7WebCore15JSSVGSVGElementC2ERKS0_) +STUB( + "1Ae30UkB0f8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEC1Ev) +STUB( + "1AihoMBEL8U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEEC1EPS6_PNS2_10LibContextE) +STUB("1Ans0r2Uc14", ucal_getTimeZoneID_67) +STUB( + "1AoQEGFwmgU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("1Ap3qpzSPVw", g_opcodeMapWide16) +STUB("1At86OClqtY", _ZTVN3sce2np10JsonStringE) +STUB("1AxxTi8Jkj4", _ZN3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMapD1Ev) +STUB( + "1B0chxFxf8s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEC2ERKS7_) +STUB( + "1B2Ine2NmlU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("1B8WzbZ9TiA", WKPreferencesGetInactiveMediaCaptureSteamRepromptIntervalInMinutes) +STUB( + "1BAmfyFqKlw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEEC1ERKSA_) +STUB( + "1BIUNG6hybg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC1Ev) +STUB("1BQcEduGv0s", rgctx_fetch_trampoline_mrgctx_110_p) +STUB("1BUTwixUG5Y", sceAgcDriverDebugHardwareStatus) +STUB( + "1BrCxwjaLys", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEED2Ev) +STUB( + "1BvHRYLo7hE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("1BwsNlrphNs", JVM_FillInStackTrace) +STUB( + "1Byz+3eGeWw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEEC1ERKSA_) +STUB("1C2-2WB9NN4", + _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewb) +STUB( + "1C2mJi3KfJg", + _ZN3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectatorC1EPNS1_6Common10LibContextE) +STUB("1C410QYskB0", Java_com_sony_bdjstack_core_CoreXletContext_n_1notifyPause) +STUB("1CCBjCt+Oxk", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE8capacityEv) +STUB( + "1CF0puq0iYM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEE11get_deleterEv) +STUB( + "1CJw1VMB2dc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("1CNmt9x20pM", _ZN7WebCore8Document21queryCommandSupportedERKN3WTF6StringE) +STUB("1CRWFfUpYyE", _ZN3JSC7Symbols40putArrayIteratorInternalFieldPrivateNameE) +STUB("1CTnCdckMzI", mono_aot_Sce_PlayStation_Imeplt) +STUB("1CVP7E-WFKk", sceKernelIsTestKit) +STUB( + "1CW6fVw08+E", + _ZN3sce2Np9CppWebApi14IdentityMapper2V319AccountIdMapFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_12AccountIdMapEEE) +STUB( + "1CXuBSTalPk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEED1Ev) +STUB( + "1CZtoiyMhmI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEE11release_refEv) +STUB("1Ce55-O0RmU", _ZN7WebCore11MemoryCache14evictResourcesEN3PAL9SessionIDE) +STUB("1CiXI-MyEKs", sceNpLwMutexInit) +STUB("1Clr+azmpqU", mono_btls_ssl_set_min_version) +STUB("1CmTDFZCXjs", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi28ParameterToDeleteGameSessionC2ERS5_) +STUB("1CohJSJK+tc", rgctx_fetch_trampoline_mrgctx_107) +STUB( + "1CullQG-Fjc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEEC2ERKSA_) +STUB("1Cw1MMnI89Y", _ZN7WebCore13AXObjectCache20disableAccessibilityEv) +STUB("1Cx1g9hQXWI", il2cpp_thread_get_name) +STUB( + "1CxeMI8UxQg", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayer35getxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB("1Cz0hTJFyh4", sceNpTusSetMultiSlotVariableVUser) +STUB("1D+9rXdViXI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V117InvitableUserTypeEEC1EPS6_) +STUB("1D0H2KNjshE", powf) +STUB( + "1DAagfDSyPM", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12getBoolean10Ev) +STUB("1DD+9cjt3hU", _ZNK9Inspector22InspectorDebuggerAgent7enabledEv) +STUB("1DFhG+P0EYM", ucptrie_internalSmallU8Index) +STUB("1DIzxNR8Q40", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10CategoriesEE12deepCopyFromERS7_) +STUB( + "1DJrq1QDYzU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEixEm) +STUB("1DKS1Z3NTIE", _ZN3sce7Toolkit2NP2V26Friend16FriendsOfFriends8deepCopyERKS4_) +STUB("1DL2DNl2iGs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEaSERS7_) +STUB("1DMXuE0CbGQ", sceNpManagerIntGetAuthorizationCodeA) +STUB("1DOM52MLTj0", mono_aot_Sce_Vsh_AppInstUtilWrapperjit_code_end) +STUB("1DQdJnkcvCc", sceDevUsbAddCPKevent) +STUB("1DXIHxWHZAQ", sceAgcDriverCwsrResumeAcq) +STUB("1DXOQcuiH8o", sceAvSettingDebugClearDiagCommand) +STUB("1DXTCguRU60", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEaSERS7_) +STUB("1Da75aKSdkU", _ZN7WebCore9HTMLNames11onwheelAttrE) +STUB("1DeUNpRIDDA", sceAgcDcbSetCxRegisterDirectGetSize) +STUB("1DgR7RiMl1U", _ZNK3sce2Np9CppWebApi7Matches2V111AddedPlayer9getTeamIdEv) +STUB("1DhxSh2IIUI", sceMoveReadStateRecentForTracker) +STUB("1DkGvUQYFKI", sceUsbdUnlockEventWaiters) +STUB("1DkPR0np8Xc", WKViewSetSize) +STUB( + "1Dlb4qPiD8g", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEeqERKS9_) +STUB("1DmZjZAuzEM", scePadGetExtensionUnitInfo) +STUB("1Dmj0cbsjIY", fuse_send_reply_iov_nofree) +STUB("1DtavqenQjg", _ZN3sce2np10MemoryFile8TruncateEl) +STUB( + "1Dw8A4xDOAc", + _ZNK3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead21fromNonPsnPlayerIsSetEv) +STUB( + "1Dyjy9UEjGc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB("1DzYGtJquJU", mono_aot_Sce_Vsh_Np_Commonplt) +STUB("1E2GPEywsqw", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia10BroadcastsEE5resetEv) +STUB("1ECw9RP03o4", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead14getSessionNameEv) +STUB("1EGztN2blUY", _ZN3sce7Toolkit2NP2V212EventsClient17EventShareFactoryD2Ev) +STUB("1ELEdwIoIwU", _ZN3sce2Np9CppWebApi15Personalization2V15ErrorD2Ev) +STUB("1ELoOr5IBlM", glEndTransformFeedback) +STUB( + "1ES5DdSKvt4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "1ETNGvfK1z4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEC1EPS8_) +STUB( + "1EU6x+wipoI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V120ErrorResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_13ErrorResponseEEE) +STUB("1EYcTwBoE4w", _ZNK9Inspector18InjectedScriptHost16savedResultAliasEv) +STUB( + "1EabSgeEsn8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEaSERS7_) +STUB( + "1Eb3O6vJVDs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB("1EgNBGG9Iso", ScePsmMonoJitCleanup) +STUB("1ElwHkpLvmw", sceNpSnsYouTubeGetAccessToken) +STUB("1EmBx0112+c", _ZN3JSC7Symbols35doAsyncGeneratorBodyCallPrivateNameE) +STUB("1EoMsKB-clM", sceEsvmEngineMediaKeysCreateSession) +STUB("1Er9TFGSEgw", JVM_GetMethodDefaultAnnotationValue) +STUB( + "1EsrlHTMNDs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEptEv) +STUB("1Et1k-0C974", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_7TssDataEED2Ev) +STUB( + "1Euzez5hB7g", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody17setDataStatusListERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_10DataStatusEEEEE) +STUB( + "1ExP4qHV7u8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEE5resetEPS6_) +STUB("1EyHxzcz6AM", _FXp_addh) +STUB( + "1EzhUixQGGA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEEaSERKSA_) +STUB("1F1TMRMz2a4", _ZN3JSC22FullGCActivityCallback12doCollectionEv) +STUB("1F1hzq+jsgw", _ZNK7WebCore6JSNode7wrappedEv) +STUB("1F4yweQoqgg", sceNpAppLaunchLinkIntInitialize) +STUB( + "1F880jMeenM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEED1Ev) +STUB("1FDLh7g440s", png_get_bit_depth) +STUB( + "1FDb9Jy1owA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEED2Ev) +STUB("1FGvU0i9saQ", scePthreadMutexattrSetprotocol) +STUB("1FH-82oV3PY", sceSdmaQueryWorkingBufferSize) +STUB( + "1FITx-pXXA0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEED1Ev) +STUB( + "1FNM5bF3nvU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEEaSERKSA_) +STUB("1FST2EMhfHk", _ZNK7WebCore6CookieeqERKS0_) +STUB( + "1FVEppDD0SM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEC1EPNS2_10LibContextE) +STUB( + "1FXBdXnti2Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEEaSERSA_) +STUB("1FYJc5IIjnE", _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeIPcPvEEneERKS7_) +STUB("1FZBKy8HeNU", sceVideoOutGetVblankStatus) +STUB( + "1Fd9W3EIz3o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE5clearEv) +STUB("1FeceR5YhAo", sceMouseMbusInit) +STUB("1Fh7A13lrEk", mono_aot_ReactNative_Modules_Vshunbox_trampolines) +STUB( + "1FkQgc1yllA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE4sizeEv) +STUB( + "1FsJuaSXfEY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEE7add_refEv) +STUB( + "1Fz0xfcDp+8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEEC1EPS8_PNS2_10LibContextE) +STUB("1G3lF1Gg1k8", sceKernelOpen) +STUB("1G3xnMBZpYI", sceShellCoreUtilGetPsStoreIconLayout) +STUB("1G5Prf1bClU", _ZNK7WebCore16HTMLInputElement20isDateTimeLocalFieldEv) +STUB( + "1G8Btka-o5c", + _ZN3sce2Np9CppWebApi7Matches2V117ResponseMatchTeam10setMembersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_14ResponseMemberEEEEE) +STUB("1GCdiq99pBE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEEC1EPNS2_10LibContextE) +STUB("1GGpdjyZslI", cairo_font_face_set_user_data) +STUB("1GL9pCFuiHQ", FT_Bitmap_Copy) +STUB( + "1GLT-IqP83I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE5clearEv) +STUB( + "1GPRJwdOvz4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEC1EPNS2_10LibContextE) +STUB("1GRQfw+bhcE", _ZN3sce2np10NpOnlineId13GetNpOnlineIdERKNS0_4UserEPS1_) +STUB("1GRro2frtE8", handler_block_trampoline_p) +STUB("1GYsjUC-HLM", FTA_Add_Module_pfr) +STUB( + "1Ga0R789piY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE5emptyEv) +STUB("1GbQ0KjO7Vs", _ULx86_64_r_uc_addr) +STUB( + "1Gdamb7X1tw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEED2Ev) +STUB( + "1GdqnUEYARc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEixEm) +STUB("1Gfhi+tZ9IE", sceNpUtilGetDbgCommerce) +STUB("1GhiIeIpkms", _ZNSt16invalid_argumentD0Ev) +STUB("1GjD3Wj8bMg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEEC2EPKS6_) +STUB("1GkDCU-NVbI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEEptEv) +STUB("1GkIKiuqgBg", u_isMirrored) +STUB("1GkSfOATn5k", _ZN3sce2np14JsonStringImplD1Ev) +STUB("1Gm03etxDkU", _ZN3JSC18GCActivityCallback6cancelEv) +STUB("1GnFTITk50Y", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEEcvbEv) +STUB( + "1GpsmBaCBok", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEC2EPS8_) +STUB( + "1Gt-SHu2HPg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEEaSERKS9_) +STUB("1GuRWk-FBlI", _ZN3sce2Np9CppWebApi12Leaderboards2V123RecordScoreResponseBody10setTmpRankERKi) +STUB("1GzMA6ls7io", _ZN7WebCore19JSHTMLSelectElementC2ERKS0_) +STUB("1H-+W4Y2Erg", sceBdSchedGetBackgroundCopyRequest) +STUB("1H-LQ4r7-F8", sceFsUfsRecryptIsUnfinished) +STUB("1H07-M8fGec", sceNpManagerIntGetAccountIdSdk) +STUB("1H5hvSfU6lA", _ZN7WebCore9HTMLNames45onwebkitplaybacktargetavailabilitychangedAttrE) +STUB("1HAhsV7n7IM", mono_aot_Mono_Securityplt) +STUB("1HBNVdBWQVk", _sceLibcMspaceLock) +STUB("1HH1+iMik7U", _ZN7WebCore11MediaPlayer5pauseEv) +STUB("1HJmJsAhIVU", _ZN7WebCore15SQLiteStatement8bindNullEi) +STUB( + "1HKSrK+K9BM", + _ZN9Inspector25ConsoleFrontendDispatcher12messageAddedEN3WTF6RefPtrINS_8Protocol7Console14ConsoleMessageENS1_13DumbPtrTraitsIS5_EEEE) +STUB("1HL-sO1sAZU", _ZN7WebCore10ScrollView15setScrollOffsetERKNS_8IntPointE) +STUB( + "1HLuMqYH4II", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEC1Ev) +STUB("1HOjZES3dls", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_28ActivityFeedSharedVideoStoryEE8allocateEmPKv) +STUB("1HPPuRlzWW4", _ZN3JSC2VM18mapBucketSpaceSlowEv) +STUB("1HQ20rRMmb4", + _ZN7WebCore18JSHTMLVideoElement15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("1HRhAE4HYjg", scePerfPmcL2iGetCounterSelf) +STUB("1HSkObnLOC0", CryptographyDecryptAES128CBC_HS256) +STUB("1HSvkN9oxO4", sceNetCtlUnsetStunWithPaddingFlagIpcInt) +STUB("1HTEM2lkcOQ", mono_get_exception_arithmetic) +STUB( + "1HWL+q7xOf8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE7popBackEv) +STUB("1HWnwXRCrdI", sceMatMspaceCreate) +STUB("1HXxo-+1qCw", sceAudio3dObjectUnreserve) +STUB("1HYDBvqdot0", utext_isLengthExpensive_67) +STUB("1HYEoANqZ1w", _Unlock_shared_ptr_spin_lock) +STUB("1HZ6sylVN4E", delegate_invoke_impl_has_target) +STUB("1HZn05Smfl8", u_vfscanf_u_67) +STUB("1HaOyLLh0iI", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V110Reputation12unsetPerGameEv) +STUB( + "1Hb1TwM5VtQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEE7get_refEv) +STUB("1HiP4YJ7c48", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_33ActivityFeedSharedScreenshotStoryEEneERKS4_) +STUB( + "1HjjfIxI2vM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEE11get_deleterEv) +STUB("1HngmisEcBY", _ZN9Inspector17BackendDispatcher8dispatchERKN3WTF6StringE) +STUB("1HpulLC0IWk", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOfferC2ERS5_) +STUB("1HrxhQoPEBs", sceNpTrophy2SystemCheckCallback) +STUB("1HvBtxJhxuQ", sceDataTransferTargetRequestStartTransfer) +STUB("1HvdZqSDGi0", __ubsan_handle_sub_overflow_abort) +STUB("1HwAXy03SyY", getenv_np) +STUB("1I1RjHIL-IY", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_16SessionAttributeEE7addressERKS3_) +STUB("1I4rtpjGrpg", GCC_except_table187) +STUB("1IAGE6dH8IY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEC2Ev) +STUB("1IB0U3rUtBw", __fedisableexcept) +STUB("1IEEu5KeTHM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUserC1ERS5_) +STUB("1IIKnMD2xqM", _ZN3WTF6String6appendEPKhj) +STUB( + "1INmoOVoj08", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEC2EPKS8_) +STUB( + "1ITP-OlehWk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEC2ERS7_) +STUB("1IW4zON5-74", _ZNK3sce2Np9CppWebApi12Leaderboards2V14User6toJsonERNS_4Json5ValueEb) +STUB("1IWsxK7VRoA", __sceAudioInVmicWrite) +STUB("1IgvI1I-Sss", unum_formatInt64_67) +STUB( + "1IhWRW076wg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEixEm) +STUB("1IlEK0xIx2M", izrule_getDynamicClassID_67) +STUB("1In1EqSE1CY", _ZN3sce7Toolkit2NP2V24Core7Request20DefaultRequestParams15INVALID_USER_IDE) +STUB("1Iv-JJC7joU", _ZN7WebCore8Settings41setAcceleratedCompositedAnimationsEnabledEb) +STUB( + "1IwGEEHdpq8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEE3getEv) +STUB("1Iz-n06N8C0", _ZN3sce2Np9CppWebApi7Matches2V120RequestPlayerResultsD2Ev) +STUB( + "1J-DjPd-2bw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "1J3UxCOiVAA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEEaSERKS9_) +STUB("1J54XnCD+DQ", GCC_except_table326) +STUB("1J6Ix6mepsw", _ZN7WebCore18JSHTMLInputElement9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("1J9TjAsLRzs", _ZN3sce2Np9CppWebApi6Common6VectorIiEC1Ev) +STUB("1JAZNsOKua0", _ZNK3sce3Xml3Dom8Document11getNodeTypeENS1_6NodeIdE) +STUB("1JEAww49Q-A", WKPageSetResourceCachingDisabled) +STUB("1JGVbR1IEBk", sceNpIpcCheckCallback) +STUB("1JIYVmuZQDg", delegate_virtual_invoke_imt_8_p) +STUB( + "1JLtvE--OAE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEC2EPKS8_) +STUB("1JNYgwRcANI", sceUserServiceSetVoiceRecognitionTutorialState) +STUB("1JV7Mv590Cc", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEEptEv) +STUB( + "1JWEIVctSqQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEC2EPS8_) +STUB( + "1JZE7XHsEsU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEEC2Ev) +STUB( + "1Jb2ckEqpyc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEC1EPS8_) +STUB("1Jbvipwn+Mg", _ZN7WebCorelsERN3WTF10TextStreamERKNS_16FilterOperationsE) +STUB( + "1JeIRN7X5lM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEE5resetEPS6_) +STUB("1JeltNNTV9w", + _ZNK3sce2Np9CppWebApi14SessionManager2V130ResponsePlayerSessionSpectator11getPlatformEv) +STUB("1JevuWL-iMg", uprv_toupper) +STUB( + "1Jqlm1YdDoo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEmmEv) +STUB("1JtbJ0kxm3E", sceNpMatching2GetLobbyMemberDataInternal) +STUB( + "1Jv2xQ1jGew", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE10setContextEPNS2_10LibContextE) +STUB("1K057yzGT+I", mono_aot_System_Net_Httpplt) +STUB("1K0a99tZ9HM", _ZSt25_Rethrow_future_exceptionPv) +STUB("1K5ly63m6fo", cairo_stroke_extents) +STUB( + "1K6sVYJuYuM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEED1Ev) +STUB("1KC8p9GuGzg", ulocimp_toLegacyKey_67) +STUB( + "1KCdWn0oDBI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEE11release_refEv) +STUB( + "1KGo89EImFs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE6resizeEj) +STUB( + "1KL7qwfe+yc", + _ZNK3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfile12getaccountIdEv) +STUB( + "1KQsekMIxHI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEC2EPNS2_10LibContextE) +STUB("1KSBQVUUqBM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlotC1ERS5_) +STUB("1KUSL3RcrcU", _ZN3sce3Xml3Dom8NodeListC2ERKS2_) +STUB("1KWysXcgiJQ", _ZN3JSC7Symbols19toNumberPrivateNameE) +STUB("1KYfLN5YfnI", _ZN7WebCore28InspectorFrontendClientLocal8SettingsC2ERKS1_) +STUB( + "1KneJA8Bujk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE21intrusive_ptr_sub_refEPS9_) +STUB("1KngsM7trps", _ZNSt15_Num_float_base5radixE) +STUB( + "1Ko+sKZgqqs", + _ZN15AbstractStorage14StorageManager21NotifyStorageDetachedERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB( + "1Kz9q9IoyFc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEEC1ERSA_) +STUB("1L-Jusa98fE", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15NpSessionMemberEEeqERKS4_) +STUB( + "1L9pxrF6ZPU", + _ZN7WebCore19JSHTMLSelectElement25getOwnPropertySlotByIndexEPN3JSC8JSObjectEPNS1_9ExecStateEjRNS1_12PropertySlotE) +STUB("1LBVOD6fQok", EVP_sha256) +STUB("1LChgwRxJs0", sceM4aacEncFlushWithPriority) +STUB("1LD5qP5aL0o", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19BandwidthD2Ev) +STUB("1LLZLmdJO38", __asan_set_shadow_f1) +STUB("1LMtZ8ohTHg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEE7add_refEv) +STUB( + "1LNH+p+9KAI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEC2EPNS2_10LibContextE) +STUB("1LSKpRp1Oj0", do_check_free_chunk) +STUB( + "1LTkGJjVRLY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEE3getEv) +STUB("1LXGEu7l1es", _ZN9Inspector15RemoteInspector29waitingForAutomaticInspectionEj) +STUB("1LXOYqj7rz0", _ZNK7WebCore9FloatQuad12containsQuadERKS0_) +STUB("1LXqEy7j8-E", _ZN3sce7Toolkit2NP2V28Commerce7Request25DisplayDownloadListDialogD2Ev) +STUB("1LaoVhbfoTo", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V510AnnotationEEC1Ev) +STUB("1Lckz4hOWxw", sceVrTrackerSetDurationForStatusNotTracking) +STUB("1Li76cHWOz0", + _ZNK3sce2Np9CppWebApi7Matches2V123ResponseMatchStatistics19teamStatisticsIsSetEv) +STUB( + "1LiNjrgYxKc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEC2Ev) +STUB("1LiSfUnDEpM", _ZNK7WebCore19ResourceRequestBase8priorityEv) +STUB( + "1Licb106gbE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEE21intrusive_ptr_add_refEPS7_) +STUB( + "1LkPf2Z83JI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEneERKS9_) +STUB( + "1LkTUUovTg0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEEptEv) +STUB("1Ln1rE5DOM0", Java_java_util_zip_Deflater_getBytesWritten) +STUB("1LtdLnmdVYc", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V15Owner12setAccountIdEPKc) +STUB("1LvbNeZZJ-o", _ZNSt8numpunctIcE5_InitERKSt8_Locinfob) +STUB( + "1M0zmXHJw3o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEC1EPS6_PNS2_10LibContextE) +STUB("1M8YTpO-JyM", _ZNK7WebCore5Frame15layerTreeAsTextEj) +STUB( + "1M8pN5XZFi4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE4sizeEv) +STUB("1MGS8tK4wbk", _ZNK3sce2Np9CppWebApi6Common6VectorIiE5emptyEv) +STUB("1MHE7HPJf7s", mono_aot_System_ComponentModel_DataAnnotationsunbox_trampolines) +STUB("1MMK0W-kMgA", sceSystemGestureAppendTouchRecognizer) +STUB( + "1MN76FxQ5rY", + _ZN8meta_gen11MsvPromoter7PromoteERKN23sceMetadataReaderWriter8MetadataERS2_P22MsvPromoteInnerContextP20MsvCancelInterface_tP19MsvStorageInterfaceP26MsvPromoteInnerInformation) +STUB("1MUTuFYINcs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEEC1Ev) +STUB( + "1MaHTftrX14", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE4termEv) +STUB( + "1Mb7OUaz-58", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE5getIdEv) +STUB( + "1MgMSE6CStE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "1MkSo--2MNI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData19unsetnpServiceLabelEv) +STUB("1Ml5nNkeImU", eglGetProcAddress) +STUB("1Mn-wSJLAIY", _ZNK3WTF7CPUTime23percentageCPUUsageSinceERKS0_) +STUB( + "1MsRyj8mqpo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEixEm) +STUB( + "1Mvp0zOhPwc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEeqERKS9_) +STUB("1MxNQj1dm+Q", mono_btls_x509_crl_get_revoked) +STUB( + "1MySiTA1W3U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE3endEv) +STUB("1N+ZUojw-IM", mono_aot_Sce_Vsh_ProfileCacheunwind_info) +STUB("1N22Cf1eF1w", __tsan_current_error_report_size) +STUB("1N7ft+SiHD0", curl_mime_free) +STUB( + "1N90tKXHd5M", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "1NB2eFyZerM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "1NBJEo2I1QI", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("1NE9OWdBIww", sceNetCtlRegisterCallbackV6) +STUB( + "1NFlJKXWi-I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEC1EPNS2_10LibContextE) +STUB("1NFvAuzw8dA", mbsrtowcs_s) +STUB( + "1NNHHZf0hx4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEppEv) +STUB("1NNR9occNS4", _Ux86_64_get_accessors) +STUB("1NQg5a5nE2I", scePktMgrGetSeqNum) +STUB("1NQwUyfrF6E", sceGameRightGetVersion) +STUB( + "1NTgBllAbCE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "1NUWPj1gBDM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("1NV7bbk0mS8", __tsan_unaligned_read16) +STUB("1NcnXq-00ag", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_22ConsumeChallengeResultEE17getAdditionalInfoEv) +STUB( + "1Neep6SY6xU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("1Nf0+rjfAs0", _ZN7WebCore46visibleImageElementsInRangeWithNonLoadedImagesERKNS_11SimpleRangeE) +STUB("1NgqWZM7bts", _ZN7WebCore16nextWordPositionERKNS_15VisiblePositionE) +STUB("1NkxGDvbMNc", + _ZN3sce2Np9CppWebApi7Matches2V128RequestTemporaryMatchResultsC2EPNS1_6Common10LibContextE) +STUB("1NlbNxWzn7U", sceKernelIccGetCPMode) +STUB("1NmdZ6398b4", _ZN3sce7Toolkit2NP2V28Matching12Notification11RefreshRoomD1Ev) +STUB( + "1Nq4Cphb5+g", + _ZN3sce2Np9CppWebApi14SessionManager2V132ResponseGameSessionPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_25ResponseGameSessionPlayerEEE) +STUB( + "1NqFalUOzI8", + _ZN9Inspector22InspectorDebuggerAgent18continueToLocationERN3WTF6StringERKNS1_8JSONImpl6ObjectE) +STUB("1NraaTWJB9Y", __asan_locate_address) +STUB( + "1NtSTHekhlw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "1O0XY33UOUw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEixEm) +STUB( + "1O5UVcMC2xc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("1O96muPzhgU", sceNpLookupNetAbortRequest) +STUB("1O9g6WFku7c", _ZN9Inspector24CanvasFrontendDispatcherdlEPv) +STUB( + "1OEq4SO4EcM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB("1OFtPp2Mv10", _ZStL5sifunRSt8ios_baseNSt5_IosbIiE9_FmtflagsE) +STUB( + "1OJ5g71KizY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEE11release_refEv) +STUB("1OLgvahaSco", sceNpWebApi2PushEventAbortHandle) +STUB("1ONFW86TETY", _ZN3sce2np3ipc17ServiceIpmiClient19WaitRequestForAsyncEiij) +STUB("1OUW163iM+4", sceVideoOutSysGetPortStatusInfo_) +STUB("1OXbuWLRxqI", sceCompositorReleaseCommandBuffer) +STUB("1OaCuIWdaT4", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE4sizeEv) +STUB("1OcQaIYrTnY", sceSystemServiceChangeMemPstate) +STUB( + "1OcTHVoQUpY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("1Odcw19nADw", scePadGetInfo) +STUB("1Ohhg185yUQ", _ZNK7WebCore9FrameTree6parentEv) +STUB( + "1Oi0VX0Y-Gk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEE7get_refEv) +STUB("1OiEo5vYPQ8", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi20ParameterToJoinMatchC2Ev) +STUB("1OlBR8l8M5U", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEE11get_deleterEv) +STUB("1OlYGRE3vcY", UI_method_set_opener) +STUB("1OnILd2aib0", _ZTVN9Inspector32DebuggerBackendDispatcherHandlerE) +STUB("1OuEv4edjTs", _ZN3sce2Np9CppWebApi14SessionManager2V129GetPlayerSessionsResponseBodyD2Ev) +STUB("1Oxn7oHlVpY", rgctx_fetch_trampoline_rgctx_7_p) +STUB( + "1OyJt+3gWQs", + _ZN9Inspector22AuditBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) +STUB("1P-MUvbtyTM", _ZN3sce2np7RingBuf4ctorEv) +STUB( + "1P1dNZoSXz4", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("1P3PCHBviTo", + _ZN7bmalloc29StaticPerProcessStorageTraitsINS_25ARC4RandomNumberGeneratorEE7Storage8s_objectE) +STUB("1P5+IH8+TCc", _ZN7WebCore4BlobC1Ev) +STUB( + "1P8wwHM7De8", + _ZN7WebCore18TextureMapperLayer16paintIntoSurfaceERKNS_25TextureMapperPaintOptionsERKNS_7IntSizeE) +STUB( + "1PB1cJl7XiA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEEC1ERSB_) +STUB("1PGe55Cm1qI", + _ZN3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponseC1EPNS1_6Common10LibContextE) +STUB("1PI+ohm-1Vc", _ZN7WebCore8Document19removeAudioProducerEPNS_13MediaProducerE) +STUB( + "1PI5wp7-7N0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("1PNiQR-7L6k", sceHmdInternalMmapIsConnect) +STUB( + "1PO5GVJcndQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE8capacityEv) +STUB("1PQY6npY6cE", sceMoveTrackerRecordSave) +STUB("1PQhPdyNCj8", sceLncUtilReleaseCpuBudgetOfImeForBigApp) +STUB("1PRKLBG6NuE", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V18Variable8fromJsonERKNS_4Json5ValueE) +STUB("1PX0NFNL1BQ", sceCompositorResetZoomCommand) +STUB("1PZkUODbkfA", WKStringIsEqualToUTF8CStringIgnoringCase) +STUB("1Pc10QJljKY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEE5resetEPS5_) +STUB("1Pc2TYyPh1w", WKWebsiteDataStoreSetResourceLoadStatisticsThirdPartyCNAMEDomainForTesting) +STUB( + "1PeraYLgJYQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBody6toJsonERNS_4Json5ValueEb) +STUB( + "1PfCscJJMG0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEEC1ERKSA_) +STUB("1PhMKcpW31Q", __asan_exp_store2) +STUB( + "1PiTPnLaFz8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEED1Ev) +STUB("1PiWxLaHTps", _ZNK7WebCore10RenderView12documentRectEv) +STUB( + "1Pj0QxzGVtk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEppEi) +STUB("1Pj8Q1rT658", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE5emptyEv) +STUB("1PjHjfI8ncQ", _ZN7WebCore15ResourceRequest41updateFromDelegatePreservingOldPropertiesERKS0_) +STUB("1Pk0qZQGeWo", sscanf) +STUB("1PqEfzQK4I4", _ZTVN7WebCore11DisplayList20EndTransparencyLayerE) +STUB( + "1PqjOygrgnQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEmmEv) +STUB("1PrEoSKt3-w", _ZN15AbstractStorage15HttpTransactionD1Ev) +STUB("1PvImz6yb4M", __gtdf2) +STUB("1Pw5n31Ayxc", sceCoredumpDebugForceCoredumpOnAppClose) +STUB("1Q-ExO66G94", WKPreferencesSetEncryptedMediaAPIEnabled) +STUB( + "1Q0HilzLKSQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE6resizeEj) +STUB("1Q0kBa5eJ-g", mono_aot_Sce_Vsh_VideoServiceWrapperunwind_info) +STUB( + "1Q2MNj8NFMQ", + _ZN3JSC7JSArray27getOwnNonIndexPropertyNamesEPNS_8JSObjectEPNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("1Q7JNd9NM1o", _ZN3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponseD1Ev) +STUB( + "1QAcE53Py8o", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE5beginEv) +STUB("1QFKnDJxk3A", _ZN3sce2np9WorkQueueD1Ev) +STUB("1QHWkAXDxBg", JVM_FindLibraryEntry) +STUB("1QJWxoB6pCo", fputwc) +STUB("1QKDom3XNF8", _ZNSt13basic_ostreamIwSt11char_traitsIwEE12_Sentry_baseD2Ev) +STUB("1QPJreBoNXY", _ZN7WebCore11DisplayList9ClearRectD2Ev) +STUB("1QQ1Z9gJyUg", mono_domain_set_tls_offset) +STUB( + "1QTJb5AnCZo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEED1Ev) +STUB("1QTtdCh2PUQ", uprv_decNumberAnd_67) +STUB("1QYet5c7akM", _ZNK7WebCore14FrameSelection15selectionBoundsENS0_20ClipToVisibleContentE) +STUB("1QcrrL9UDRQ", iswupper) +STUB("1QeMhl0kTkU", ucnv_fixFileSeparator) +STUB("1QfyjHj40es", WKImageCreateCairoSurface) +STUB("1QjhKxrsOB8", sceFontUnbindRenderer) +STUB( + "1Qrhaf3rnJ8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEmmEi) +STUB("1Qu-944GjEA", mono_aot_Sce_Vsh_SessionInvitationjit_got) +STUB( + "1QvsgEkPzUM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEC1Ev) +STUB("1QxBMWqn7ZU", _ZN3sce7Toolkit2NP2V24Core18getMemoryPoolStatsERNS3_15MemoryPoolStatsE) +STUB("1Qy1jn47QWA", sceDbgUserChannelPrint) +STUB("1R2jChnq1K4", Java_com_sun_havi_ui_FreeTypeFontFace_pGetSupportedCharacterRanges) +STUB("1RDHXzjIkcM", _ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamTournamentD2Ev) +STUB("1RGfzjJj4VE", sceUsbStorageGetMountPointOfShellCore) +STUB("1RNxpXpVWs4", __floatundidf) +STUB("1RO3nBwi2W4", _ZN7WebCore18TextureMapperLayer17setRepaintCounterEbi) +STUB( + "1RPdbfO8EZ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEED2Ev) +STUB("1RUCxsUinXw", ucal_close_67) +STUB("1RVx3WHq+mA", _ZN3WTF20protocolIsJavaScriptENS_10StringViewE) +STUB("1RXUUBFLawQ", SSL_CTX_callback_ctrl) +STUB("1RXyMbETa-U", Java_java_awt_GnmFontMetrics_getStringWidth) +STUB( + "1RYwSZCXU-I", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEneERKS9_) +STUB( + "1Ra3ltc9sDM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("1RcfrSujQzY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEC2Ev) +STUB( + "1RhiZ793D-U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE6resizeEj) +STUB("1RhlQHv339E", _ZNK7WebCore4Blob4sizeEv) +STUB("1RkOAp1Xu7s", JVM_SetArrayElement) +STUB( + "1RrfMI6QND0", + _ZN3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyC1EPNS1_6Common10LibContextE) +STUB("1S2urF24zNQ", sceNpPushIntBeginInactive) +STUB("1S4FwqBv-LI", mono_aot_Sce_Vsh_Themeunbox_trampolines_end) +STUB("1S4w-l-dd4o", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData13isInitializedEv) +STUB( + "1S9-X7BqCyw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE3endEv) +STUB("1SCH3FYiVNQ", _ZNK7WebCore15AffineTransform8mapPointERKNS_10FloatPointE) +STUB( + "1SFyRaQDT3M", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser17getnpServiceLabelEv) +STUB( + "1SH+WQuoYTo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE4sizeEv) +STUB( + "1SJjoGNjP6s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEEC1ERSA_) +STUB("1SNozVB6JHU", _ZNK7WebCore27AuthenticationChallengeBase18proposedCredentialEv) +STUB("1SQbhRNy110", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEE3getEv) +STUB( + "1SRENV-88dg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("1SYKGOZeZ+4", _ZN3sce7Toolkit2NP2V27Ranking7Request11SetGameData8MIN_PCIDE) +STUB( + "1SfdGbSC+J0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEED2Ev) +STUB("1SgirvjxHGk", _ZN3sce7Toolkit2NP2V212EventsClient17EventShareFactory19MAX_SIZE_CONTENT_IDE) +STUB( + "1SqvaE+I5Zo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE5emptyEv) +STUB("1SrnHnVL2to", _ZN7WebCore10FloatPointC2ERKNS_8IntPointE) +STUB("1SsridDRBYQ", u_cleanup) +STUB("1Svur5RpEKE", pio4lo_hi) +STUB("1SwZkxAV910", _ZN3JSC10callSetterEPNS_14JSGlobalObjectENS_7JSValueES2_S2_NS_8ECMAModeE) +STUB( + "1Sy5d-dbQFk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEEC2Ev) +STUB( + "1T23P8JwWR8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("1TDo-ImqkJc", _Stdin) +STUB("1TE3OvH61qo", sceNpTusGetDataForCrossSave) +STUB( + "1TElptMQapg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE5beginEv) +STUB("1TFdFqQBGqY", sceSlimglCompositorSetEndOfFrameCommand) +STUB("1TFtbWTHbvs", _ZN3sce7Toolkit2NP2V29Challenge18ChallengeThumbnailC1ERKS4_) +STUB("1TFyHtLzdvg", sceShareUtilityAdvanceWakeUpShareMenu) +STUB("1TG2As1NQkU", delegate_virtual_invoke_imt_m_3_p) +STUB("1TOp3pCsV7A", WKPreferencesSetImageControlsEnabled) +STUB("1TUn7RxLdVg", generic_trampoline_aot) +STUB( + "1TV8qHrMp7s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEC2EPS8_) +STUB("1TVH3eVt1Mg", sceMatUnregisterResource) +STUB( + "1TVdln4cN84", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "1TWc5PCYluU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEmmEi) +STUB("1TaQLyPDJEY", _ZNSt6locale16_SetgloballocaleEPv) +STUB("1TapIX4HfOg", _ZN7CoreIPC15ArgumentDecoderD2Ev) +STUB("1Tb7p2kCYw8", scePktMgrSetPacketSize) +STUB( + "1TcZHKLIbZU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEC2ERKS7_) +STUB("1TjLUwirok0", _ZN3sce2np8NpCommId5ParseEPS1_PKc) +STUB("1Tp96FbSvjk", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container19unsetTotalItemCountEv) +STUB("1TpZWrOOCw0", sceMbusDebugGetInternalInfo) +STUB( + "1TrQo8eFHWU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("1Tw-GwQJvug", glStencilMaskSeparate) +STUB( + "1TxAC+X9ME0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEC2Ev) +STUB("1TxolxsUl8U", _ZN3sce7Toolkit2NP2V210Tournament25OneVsOneTournamentDetails8deepCopyERKS4_) +STUB( + "1TzkEQBFQIM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE21intrusive_ptr_sub_refEPS9_) +STUB("1U-s6o8XOcE", sysKernelGetUpdVersion) +STUB("1U0ISnl-L-A", _ZN3WTF10StringImpl23convertToASCIILowercaseEv) +STUB("1U1HXAR-PdU", _ZN3JSC18PropertyDescriptor21setAccessorDescriptorEPNS_12GetterSetterEj) +STUB("1U1RgLXZ+nk", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_28AdditionalSessionInformationEEC2Ev) +STUB("1U5cFdTdso0", sceUserServiceGetDefaultNewUserGroupName) +STUB( + "1U8njk0UxWE", + _ZN9Inspector22InspectorDebuggerAgent18getFunctionDetailsERN3WTF6StringERKS2_RNS1_6RefPtrINS_8Protocol8Debugger15FunctionDetailsENS1_13DumbPtrTraitsIS9_EEEE) +STUB("1UA484Q++FQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEEeqERKS7_) +STUB("1UAzCISVNYI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEC2ERS7_) +STUB( + "1UCD4cyWq6I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEE11get_deleterEv) +STUB( + "1UCSrQLOvJU", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionPropertiesD2Ev) +STUB( + "1UDPKSu6mpM", + _ZN7WebCore14DOMCacheEngine15queryCacheMatchERKNS_15ResourceRequestERKNS_3URLEbRKN3WTF7HashMapINS7_6StringES9_NS7_10StringHashENS7_10HashTraitsIS9_EESC_EERKNS_17CacheQueryOptionsE) +STUB("1UFWAsaTuXg", + _ZN9Inspector21InspectorConsoleAgent10countResetEPN3JSC14JSGlobalObjectERKN3WTF6StringE) +STUB("1UHYiU-NGX8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEEC2EPS6_) +STUB("1UKzOMAA3bM", WKPageSetGapBetweenPages) +STUB("1ULaJ4WPLtI", _ZN7WebCore19ResourceRequestBase13partitionNameERKN3WTF6StringE) +STUB( + "1UNaMv2qh6k", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEEaSERKSF_) +STUB("1UOnecNlNW0", sceKernelGetAslrStatus) +STUB("1UWX9v7b1aQ", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11TusVariableEEC2Ev) +STUB("1UajXsDYN6U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEEcvbEv) +STUB("1UchwEvKOCY", _ZNK7bmalloc11IsoTLSEntry6extentEv) +STUB( + "1Uf1EjQYRQI", + _ZN3sce2Np9CppWebApi11UserProfile2V131GetBlockingUsersResponseFactory7destroyEPNS3_24GetBlockingUsersResponseE) +STUB("1UgANPJpHwY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEEC2Ev) +STUB( + "1UiVXsiv7WQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE5beginEv) +STUB("1Uj1C5XQkAA", sceFsUnbindPackages) +STUB( + "1UkG-il0S2c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEmmEv) +STUB( + "1Ul8RXMYjis", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEC2EPS8_) +STUB("1UlNcIzRCOA", mono_aot_Sce_Vsh_Webbrowser_XutilWrapperplt) +STUB("1UqsL1I+qec", WKNavigationGetTypeID) +STUB( + "1Uu7++69sP8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEC1Ev) +STUB("1UyDc79Q4B4", sceMbusRegisterDriver) +STUB("1V3RWo8UOV0", rgctx_fetch_trampoline_mrgctx_94) +STUB( + "1V8AVl849IE", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions16getincludeFieldsEv) +STUB("1VBuIy9foww", sceNpIpcDeleteRequest) +STUB("1VG+T070SBU", _ZN7WebCore17PageConsoleClientD0Ev) +STUB("1VM0h1JrUfA", sceSslCheckRecvPending) +STUB("1VPntzhCXxI", _ZN3WTF7Unicode18decodeUTF8SequenceEPKc) +STUB( + "1VQi6zv6Oa8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEC2Ev) +STUB("1VVLHbcbJKc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEEaSERKS6_) +STUB( + "1VWdIfQ1bHg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEE11get_deleterEv) +STUB("1VWksZCjUvo", mono_custom_attrs_from_param) +STUB( + "1VbEHp0e18w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEC1Ev) +STUB( + "1Vf8lvdn474", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS2_6VectorINS5_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS5_INS8_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "1VfFnXsph4Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEED1Ev) +STUB( + "1Vj9gdT8dXU", + _ZNK9Inspector17ScriptDebugServer36handleExceptionInBreakpointConditionEPN3JSC9ExecStateEPNS1_9ExceptionE) +STUB( + "1Vl8+APpviM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEC1EPS6_PNS2_10LibContextE) +STUB("1VuIbuS2Ypg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging16GameDataMessagesEED2Ev) +STUB( + "1Vy8iZTkBUU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "1VzUZ-t2SRs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEC2EPKS8_) +STUB("1WAjyy8cyX8", + _ZN3sce2Np9CppWebApi14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyD2Ev) +STUB("1WCDRJQQWwM", + _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead28getReservationTimeoutSecondsEv) +STUB( + "1WChnFq22OE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEplEm) +STUB("1WCmXgJBXH0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEC1ERKS7_) +STUB( + "1WDYjlbvL90", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEE7add_refEv) +STUB( + "1WE1q38+x7U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE5emptyEv) +STUB( + "1WKuJMLVtwo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("1WM6fw+AXm0", _ZNK7WebCore10FileHandlecvbEv) +STUB( + "1WMBbvN27hk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEC2ERS7_) +STUB( + "1WQHkmaHT3I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("1WXYJN+b-e0", ScePsmMonoStringFromUtf16) +STUB("1WY2wi+4t9o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEEC2EPS4_PFvS6_EPNS2_10LibContextE) +STUB( + "1Wbm-fnBLPU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "1Wij5bpNZbk", + _ZN7WebCore21SerializedScriptValue6createERN3JSC14JSGlobalObjectENS1_7JSValueENS_22SerializationErrorModeE) +STUB("1WsleK-MTkE", sceNgs2GeomCalcListener) +STUB("1X+GW1hdTlM", goby_DeleteLink) +STUB( + "1X2M9ta9OYY", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "1X2g+6cmcpU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "1XCFlKVIi0Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEdeEv) +STUB("1XCz6Gk0Lt4", FT_Done_Library) +STUB("1XDDDDGTymc", _ZN7WebCore8SVGNames10targetAttrE) +STUB( + "1XJ6huZVErw", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToSendPlayerSessionMessage10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_52PostPlayerSessionsSessionIdSessionMessageRequestBodyEEE) +STUB( + "1XKwLo8PIjo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "1XP7MJHTPds", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEC2EPS6_PNS2_10LibContextE) +STUB( + "1XPBn8v-VvA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEE6assignEPSA_PFvSC_EPNS2_10LibContextE) +STUB("1XPu7km4-rY", mono_aot_Sce_Vsh_Np_Tmdbunbox_trampolines_end) +STUB("1XQEj7-jjXc", _ZN7WebCore19JSDOMMatrixReadOnly4infoEv) +STUB( + "1XW9+N0gKj4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEE5resetEPS9_) +STUB("1XWGeZDA09Q", _ZN7WebCore6Path2DC2ERKNS_4PathE) +STUB("1XYVEI923n0", mono_btls_key_get_bytes) +STUB("1Xe+XZ1oI28", sceNpAsmGetServiceIdInfo) +STUB("1Xe4M+2mfNo", _ZNK9Inspector15ScriptArguments13argumentCountEv) +STUB("1XgfJXwnZio", _ZN7WebCore19JSAnimationTimelineaSERKS0_) +STUB("1XlvS52WhEE", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats20unsetFrequentlyMutedEv) +STUB("1Xmb76MHXug", sceHmdInternalGetDebugTextMode) +STUB( + "1XmpfrWipLc", + _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities17getacceptLanguageEv) +STUB("1Xn140jhfYs", Java_java_net_Inet4Address_init) +STUB("1XsGBdpfDsU", sceNpManagerIntInit) +STUB("1XupapsrvhU", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEEC2Ev) +STUB("1XvItBGOHII", _ZN7WebCore18PluginInfoProviderC2Ev) +STUB("1XwHaycrETg", YGJustifyToString) +STUB("1XziIA7gRp0", _ZN3JSC7Symbols23Float64ArrayPrivateNameE) +STUB("1Y5FTgmGNp4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEEeqERKS6_) +STUB("1Y6ds6X6q+8", WKWebsiteDataStoreGetDefaultDataStore) +STUB("1Y8HtIwOznY", mono_aot_Sce_Vsh_MorpheusUpdWrapperunbox_trampoline_addresses) +STUB("1YDkzlcc8YY", u_strspn) +STUB("1YEU5F0Bm98", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlotD1Ev) +STUB("1YFXTueqrU8", _ZNK7WebCore22EmptyFrameLoaderClient12canCachePageEv) +STUB("1YHfWhct218", + _ZN3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinition10setboardIdEi) +STUB( + "1YHxDRfU3eo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEneERKS9_) +STUB("1YLjy4cysZM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEC1ERS7_) +STUB("1YNe79eX1K4", tz1) +STUB("1YO1ZDQXErs", sceAudioOutEnable3DAudioForUser) +STUB("1YPZmOcxlBE", rgctx_fetch_trampoline_mrgctx_15_p) +STUB("1YQJbkuXzWI", WKStringIsEmpty) +STUB("1YT1zLJRrvY", u_snprintf_u_67) +STUB("1YV2oywzRzs", _ZN3sce7Toolkit2NP2V28Matching7Request15SendRoomMessageC1Ev) +STUB( + "1YYG2nn+RLY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEED1Ev) +STUB( + "1YZFFZJ30Ns", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEC2EPS8_) +STUB("1YezZ6DJXgY", _ZNK3sce2np4Cond6IsInitEv) +STUB("1YgG-kRZn1Q", _ZNK3JSC12JSRopeString23resolveRopeToAtomStringEPNS_14JSGlobalObjectE) +STUB("1Z+o4MCfau4", mono_aot_System_Reactive_Interfacesjit_code_end) +STUB( + "1Z-ZRnYadZk", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToCancelTicket10initializeEPNS1_6Common10LibContextEPKc) +STUB( + "1Z4PpqWUkpk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEE7get_refEv) +STUB("1Z4Xxumgm+Y", sceNpMatching2GetLobbyMemberDataInternalList) +STUB("1Z7QTIKnJbI", + _ZN3sce2Np9CppWebApi14ConnectAccount2V216PartnerTokensApi26ParameterToGetPartnerTokenC2ERS5_) +STUB( + "1ZAXr7CBYR4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "1ZG3jCQtKPg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEC1EPKS8_) +STUB("1ZKVjZUWq+M", mono_lookup_icall_symbol) +STUB("1ZKcxNlKAHY", _Atomic_thread_fence._Guard) +STUB("1ZMchlkvNNQ", _ZN10__cxxabiv117__array_type_infoD1Ev) +STUB( + "1ZOjxb5kVLs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEED1Ev) +STUB( + "1ZSdBPbQtvY", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetAccountId2OnlineId13isInitializedEv) +STUB("1ZWN9dK5-Sc", sceSulphaMessage) +STUB( + "1ZYLAwew284", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEED2Ev) +STUB( + "1ZbRETgcVXA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEE11release_refEv) +STUB("1ZiX4EoLQFo", mono_aot_Sce_Vsh_ShellCoreUtilWrappermethod_addresses) +STUB( + "1Zlm6VakIAs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("1Zpt0CB5pRo", _ZN3sce7Toolkit2NP2V28Matching7Request17KickOutRoomMemberC2Ev) +STUB("1Zt8CFweQLw", _ZN12video_parser7cVpUtil12vp_ff4_fopenEPKcPPv) +STUB("1ZtSG6Gh91o", ubrk_previous_67) +STUB("1ZuxxHKBb9g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEaSERKS7_) +STUB("1Zy6+G3PD0M", _ZNK7WebCore23FrameLoaderStateMachine28creatingInitialEmptyDocumentEv) +STUB("1Zz9WSXWtT8", _ZN3sce7Toolkit2NP2V211UserProfile7Request24DisplayUserProfileDialogD2Ev) +STUB("1a+iY5YUJcI", sceNpCondDestroy) +STUB("1a-3vBlKHGk", rgctx_fetch_trampoline_mrgctx_23_p) +STUB("1a09+paCT5k", WKBundleFrameContainsAnyFormControls) +STUB("1a50julZ2JI", _ZN3WTF8timeClipEd) +STUB( + "1a5hFKC5SdU", + _ZN7WebCore27TranslateTransformOperation6createERKNS_6LengthES3_NS_18TransformOperation13OperationTypeE) +STUB("1aALDrKbOb4", _ZN3JSC22optimizeNextInvocationEPNS_9ExecStateE) +STUB( + "1aDO1TFGXU0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE8pushBackERKS8_) +STUB( + "1aJfxbq4PSo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEC1EPS8_) +STUB( + "1aMBHREa1sU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEE11release_refEv) +STUB("1aPXW6zlPz4", _ZN7WebCore16FileReaderLoaderC1ENS0_8ReadTypeEPNS_22FileReaderLoaderClientE) +STUB("1aPt-pdEg4I", _ZN3WTF15base64URLEncodeEPKvjRNS_6VectorIcLm0ENS_15CrashOnOverflowELm16EEE) +STUB( + "1aWcBl23wgg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEEcvbEv) +STUB("1aYJxRI69x0", _ZN7WebCore12PrintContext28computePageRectsWithPageSizeERKNS_9FloatSizeEb) +STUB( + "1aatPmEHQ6Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEED2Ev) +STUB( + "1ackgM60O1c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEE7add_refEv) +STUB("1aewkTBcGEY", CERT_CompSubjectAltNamesExact) +STUB("1aiL+Rc87Zg", _ZN3WTF28removeLanguageChangeObserverEPv) +STUB("1aifBDr9oqc", sceNpManagerIntAuthGetAuthorizationCode) +STUB("1apa5tXB4mc", _ZN23sceMetadataReaderWriter12getMimeTypesERKSsiPi) +STUB("1atFu71dFAU", _ZN3sce2np6Handle7DestroyEv) +STUB("1axY8yqPUNI", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEEdeEv) +STUB("1b+IhPTX0nk", _FXp_addx) +STUB("1b0arrvb5sY", _ZN3sce7Toolkit2NP2V23TUS12TusVariablesD1Ev) +STUB( + "1b1h73wta6g", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate9setGlobalERKNS1_6Common12IntrusivePtrINS3_29MatchCompletionRatePropertiesEEE) +STUB( + "1b1p+qCI-r8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEEdeEv) +STUB("1b2I4GGnkw4", sceFsDeviceAlignedPread) +STUB( + "1b8MrxtWGJ4", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions17setacceptLanguageEPKc) +STUB( + "1b8c3VligbU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEED2Ev) +STUB( + "1bB8-JL0aoU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEaSERKS7_) +STUB("1bCfZiqfPT4", _ZN7WebCore22SkewTransformOperationD1Ev) +STUB( + "1bG0u27AYsQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEC2Ev) +STUB("1bG5j0mzOF0", sceBluetoothHidSetFeatureReport) +STUB("1bG95FiZS-k", WKWebsiteDataStoreRemoveFetchCacheForOrigin) +STUB("1bGjhJ77Y-s", WKPreferencesGetPrivateBrowsingEnabled) +STUB("1bGwV8a95lg", _ZN3sce7Toolkit2NP2V212ActivityFeed15PlayedWithStory18TITLE_NAME_MAX_LENE) +STUB("1bLnwSQTCPs", unorm2_quickCheck_67) +STUB("1bNH47yLJRs", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request14PostPlayedWithC1Ev) +STUB("1bPVOU9fxjU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEixEm) +STUB( + "1bUFLMKJbUY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEppEv) +STUB("1bcZtkf-dWQ", ubidi_writeReordered_67) +STUB("1bf+c7ebx0A", _ZNK3sce2Np9CppWebApi11UserProfile2V113BasicPresence12getInContextEv) +STUB("1bh1IH8NXHc", _ZN3WTF11Persistence7Decoder6decodeERd) +STUB( + "1bhBtqfCSFI", + _ZNK3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody14getCustomData2Ev) +STUB("1bhiDXKU+vc", _ZN12video_parser13cVideoMetaVWGC2EPNS_18cMp4FFLHndlManagerE) +STUB( + "1biPdT7EVpA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB("1bnO4QxpHUk", _ZN3sce7Toolkit2NP18VoucherInputParamsC1Ev) +STUB("1brqm+pqVYU", + _ZN8meta_gen11MsvPromoter13setValuesMetaERN23sceMetadataReaderWriter8MetadataEP10KeyValue_ti) +STUB( + "1bvBx1RRfi8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "1c+6I3Ajqk0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEEaSERSA_) +STUB("1c+lQLHbgHc", il2cpp_thread_walk_frame_stack) +STUB( + "1c+osTQtGnc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEEcvbEv) +STUB("1c-lvc-RwAQ", WKPreferencesGetMinimumFontSize) +STUB("1c1C3kTl+4s", _ZN8meta_gen11MsvPromoter8FinalizeEP22MsvPromoteInnerContext) +STUB("1c1y2m9nMOM", _ZNK3sce2Np9CppWebApi7Matches2V14Task6toJsonERNS_4Json5ValueEb) +STUB("1c2E1ghXt90", sceNpEntitlementAccessRequestConsumeEntitlement) +STUB("1c69bJ6S5ro", il2cpp_type_get_class_or_element_class) +STUB("1c78OwwgloU", mono_aot_Sce_PlayStation_PUIplt) +STUB( + "1c7OxxtwHps", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM23AccessibilityProperties7InvalidEEEN3WTF8OptionalIT_EERKNS6_6StringE) +STUB( + "1c7pDSeRyMk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE5beginEv) +STUB("1c8o7fQHtME", scePlayReadyDomainJoinGenerateChallenge) +STUB("1cBDX0UvFXE", _ZN7WebCore11JSDOMWindow23visitAdditionalChildrenERN3JSC11SlotVisitorE) +STUB("1cM4w8WXkpk", _ZN3sce7Toolkit2NP2V210Tournament15TeamVsTeamMatchC2Ev) +STUB( + "1cNQz4uvjPU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEmmEv) +STUB("1cQewfWgOGk", _ZN7WebCore9HTMLNames15onmouseoverAttrE) +STUB("1cS7W5J-v3k", sceHmdDistortionGetWorkMemoryAlign) +STUB("1cTKbqtPr1o", + _ZN15AbstractStorage15FacebookContent12readExternalESt10shared_ptrINS_7ContentEE) +STUB( + "1cVJ1mHwILA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEneERKS9_) +STUB("1cYzn-QdLzE", delegate_virtual_invoke_14) +STUB( + "1cZGJCBDRsY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEE21intrusive_ptr_sub_refEPS7_) +STUB("1ceNilIyayw", twop52) +STUB("1cgmjjApApo", JNU_PrintClass) +STUB( + "1ckSp29WKXA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEplEm) +STUB("1crJbUuDMoE", _ZNK3sce2Np9CppWebApi11UserProfile2V114PersonalDetail13lastNameIsSetEv) +STUB( + "1cvbiySvpKY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEixEm) +STUB("1d+M3jUG4vw", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData8getrangeEv) +STUB("1d7POT3SzGE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEC2ERKS7_) +STUB("1d7jXAh8SH8", GetUsbThumbnailEntryListLib) +STUB( + "1d8eWX6DTqg", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEiRNS2_10LibContextEPT_m) +STUB("1d8i5kbJJ0w", sceDataTransferTargetRequestPrepareTransfer) +STUB("1dCYHXYPqRQ", _ZN7WebCore21SerializedScriptValueD1Ev) +STUB("1dDqFMD4gVY", _ZNK7WebCore6Region10intersectsERKS0_) +STUB( + "1dFEHRWxzeQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE10setContextEPNS2_10LibContextE) +STUB("1dMndqL-QgE", sceNpWordFilterCensorComment) +STUB("1dOqczDeTh0", _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities8Activity10getMatchIdEv) +STUB( + "1dVNzWMPHXA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB( + "1dXLRvNHJYY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEmmEi) +STUB("1dY2KJfkgMM", _ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE4_RepES3_cm) +STUB("1dZbDfJehVw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEaSERKS7_) +STUB( + "1df0mo3EMqY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE21intrusive_ptr_add_refEPSA_) +STUB("1dfiJ5CzrLs", + _ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors20unsetMissingElementsEv) +STUB("1dmShONVJEc", JSObjectDeletePropertyForKey) +STUB("1dq4iQIG88U", _ZN3WTF6String23make16BitFrom8BitSourceEPKhm) +STUB("1dtMfijLxHg", _ZN3sce7Toolkit2NP2V210Tournament4TeamC2Ev) +STUB("1dtq0xFWSNU", glTexParameterf) +STUB("1dwTMlTk5No", _ZN3sce2Np9CppWebApi6Common12FutureResultIiE4termERKiPNS2_10ThreadPoolE) +STUB( + "1dzHDLangGw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEixEm) +STUB( + "1e-VtN099xk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEneERKS9_) +STUB("1e-q5iIukH8", wcstoumax) +STUB( + "1e06t-CU-oM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEixEm) +STUB("1e2BNwI-XzE", sceHttpSendRequest) +STUB("1e46hRscIE8", CA_MGMT_keyBlobToDER) +STUB("1e7CmFlJveU", sceShellCoreUtilNavigateToAnotherApp) +STUB( + "1e7m0B8Kb+g", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEneERKS9_) +STUB("1e8y0NYw9II", upvec_compactToUTrie2WithRowIndexes_67) +STUB("1eDFI2b1+R4", sceDepthCalculateRectificationInformation) +STUB("1eEXfeW6wrI", _ZNKSt7collateIcE10do_compareEPKcS2_S2_S2_) +STUB( + "1eQWQoJjq0k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE21intrusive_ptr_add_refEPS9_) +STUB("1eQgdcfS--s", mono_aot_Sce_Vsh_Orbis_BgftAccessorunbox_trampoline_addresses) +STUB( + "1eRB+eocHOQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEE7get_refEv) +STUB("1eVdDzPtzD4", _ZNSt8numpunctIcEC2Em) +STUB( + "1ecpta6YgJc", + _ZN3sce2Np9CppWebApi14SessionManager2V124GameSessionPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_17GameSessionPlayerEEE) +STUB( + "1eeYRTvBQ+c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEC2Ev) +STUB("1eejHQ3QcE8", _ZN7WebCore20HTMLTableCellElement10setColSpanEj) +STUB( + "1efiKIiZ8UQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB("1ehuzhdCbSQ", mono_btls_ssl_set_bio) +STUB("1elRZTc80zs", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setAlignedSubtitle) +STUB("1eoAje5ctyA", sceSystemServiceIsBgmCpuBudgetAvailable) +STUB("1erlMh7Nvxs", unorm2_normalize_67) +STUB( + "1ewXIqLgvLA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEcvbEv) +STUB("1exRdv739QI", _ZL10_new_array) +STUB("1f2V6tO1-yg", _sceLibcAtexitMutexInit) +STUB("1f8FjJ-pndc", _ZN3sce2Np9CppWebApi13InGameCatalog2V59PublisherC2EPNS1_6Common10LibContextE) +STUB("1fD0PsNjs50", _ZN9Inspector31createScriptCallStackForConsoleEPN3JSC9ExecStateEm) +STUB( + "1fSMXUsmn68", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEneERKS9_) +STUB("1fUTttRzIKE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEEC1Ev) +STUB("1fWSjFvwjlE", _ZN3sce7Toolkit2NP2V27Ranking7Request11SetGameData14MAX_NUM_BOARDSE) +STUB("1fWncoBQYug", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEE5resetEPS6_) +STUB("1fXdpOk0pR8", _ZN7WebCore14JSWebAnimation6s_infoE) +STUB("1fYwU-7TWsM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEEppEv) +STUB("1fer52I2524", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBodyD1Ev) +STUB("1flP9FSEUx4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEE3getEv) +STUB( + "1fnlA5TnsRs", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersC1ERS5_) +STUB("1fxTJU+D6n0", _ZN7WebCore28InspectorFrontendClientLocal8SettingsD0Ev) +STUB("1fyEy3F+G+g", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEEdeEv) +STUB("1g0z4DFlFKk", _ZN7WebCore13StyledElement10cssomStyleEv) +STUB( + "1g2YFGH5fKA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("1g2ot19eUEk", _ZN7WebCore12EventHandler16handleWheelEventERKNS_18PlatformWheelEventE) +STUB( + "1g5outKYdes", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEE11get_deleterEv) +STUB("1g6NsJ3kXVY", + _ZN3JSC8Bindings13RuntimeObject20fallbackObjectGetterEPNS_9ExecStateElNS_12PropertyNameE) +STUB("1g70leu-4AY", _ZN3sce2Np9CppWebApi14SessionManager2V122GameSessionPushContextD2Ev) +STUB("1gAHtDH-jxM", mono_aot_Sce_Vsh_Orbis_ContentManagermethod_addresses) +STUB("1gAJb1uKyGo", FTA_Add_Module_bdf) +STUB("1gD19bEA24U", ucnv_io_countKnownConverters_67) +STUB("1gDLLT0N69M", _ZN3JSC8Debugger20setSuppressAllPausesEb) +STUB("1gHYfo8cy3Y", mono_aot_System_ServiceModel_Internalsplt) +STUB("1gL5PwYzrrw", sceNpScoreRecordGameDataAsync) +STUB( + "1gOMP3lQkZM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEEC2Ev) +STUB("1gWEHIaOQh0", _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession15unsetSearchableEv) +STUB( + "1gWXaUsPWLw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB("1gXYOYMR+m8", JSScriptEvaluate) +STUB( + "1gY6fDu7c2k", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE8capacityEv) +STUB("1gYJIrfHxkQ", _ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2Em) +STUB("1gZ4CtaI+r4", _ZN7WebCore15HTTPHeaderFieldD1Ev) +STUB("1gZYkI0X540", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEEC1EPS5_PFvS7_EPNS2_10LibContextE) +STUB("1gexBhk9t58", _ZN3sce7Toolkit2NP20ModifySessionRequestC1Ev) +STUB("1gfowbDUZAI", mono_thread_detach) +STUB( + "1gk6Kn5zEE0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEdeEv) +STUB("1gkbLH5+kxU", sceHmdInternalRegisterEventCallback) +STUB( + "1glriftR-jM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEC1EPS8_) +STUB("1gpZrBCNmZ4", mono_aot_Sce_Vsh_Np_Asmmethod_addresses) +STUB("1gpwVJ3H8lY", Java_java_awt_GnmGraphics_nativeSetComposite) +STUB("1gttdimsq2s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEEC1Ev) +STUB( + "1gtyxQwYgzc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("1gu5jfPHPUE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEEC1ERKS9_) +STUB("1gwhwMnKiyM", _ZN3sce2Np9CppWebApi6Common8IteratorIjEppEi) +STUB( + "1h+EfOXG-eI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEE7add_refEv) +STUB( + "1h+K4HAL+Cc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE4sizeEv) +STUB( + "1h0YOwifrJs", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB( + "1h5VSpNJNFc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEC1EPS6_PNS2_10LibContextE) +STUB("1h8hFQghR7w", _ZSt12setprecisioni) +STUB("1h8m1KuIR9o", eglSwapInterval) +STUB("1hAznJNzbI8", glUnmapBuffer) +STUB( + "1hDlituK+Fg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEC1EPKS8_) +STUB("1hE5Sdn4U3U", sceVdecCoreSyncDecodeOutputSw) +STUB("1hFPolUHb8A", _ZN7WebCore9HTMLNames8spanAttrE) +STUB("1hGl0cHW-7c", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEEplEm) +STUB("1hGmBh83dL8", _Plsw) +STUB("1hPemFIVUys", _ZN7WebCore9FrameView6createERNS_5FrameE) +STUB("1hRl0U15mqk", + _ZN3sce2Np9CppWebApi14IdentityMapper2V311PsnWebErrorC1EPNS1_6Common10LibContextE) +STUB( + "1hTNoqAo5nw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE5clearEv) +STUB("1hTsXh-m4xY", _ZN3sce2Np9CppWebApi14IdentityMapper2V312AccountIdMap12setAccountIdERKm) +STUB( + "1hU8awyVk6k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "1hV080tyFsE", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer19unsetacceptLanguageEv) +STUB( + "1hVd+ogdk94", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations26setinvitationInvalidFilterEPKc) +STUB("1hXoS-xL7zA", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_22FriendsRankInformationEE3getEv) +STUB("1hdjgLpYoY0", sceAudioOut2GetAmbisonicsEncodeCoefficients) +STUB("1hduUI-9KPY", bemp2sys_packetizer_release) +STUB( + "1he54+jPxtc", + _ZN9Inspector17BackendDispatcher6createEON3WTF3RefINS_14FrontendRouterENS1_13DumbPtrTraitsIS3_EEEE) +STUB("1hf4m4g-Akk", uregex_setFindProgressCallback_67) +STUB("1hhDlnY9NRw", _ZN3sce2Np9CppWebApi13InGameCatalog2V515ContainerRating8setTotalERKi) +STUB("1hjfiPw68UE", __tsan_func_entry) +STUB("1htg-v-D51A", _ZTVN7WebCore17FrameLoaderClientE) +STUB("1hulS01us-4", glIsProgram) +STUB( + "1hz+TzTiCv0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "1hzPVWZ2IzM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB( + "1hzQtsxkH3Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("1i-MQzGms+I", rgctx_fetch_trampoline_rgctx_81) +STUB("1i0rfc+mfa8", sceSaveDataCheckSaveDataBroken) +STUB( + "1i2wDBeAMnE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB( + "1i4fk9HieDg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE5eraseENS2_8IteratorIS6_EERS9_) +STUB("1i7dtYx3cts", _ZN23sceMetadataReaderWriter8Metadata8getFieldEiRSsRNS_5ValueERb) +STUB("1i7kmKbX6hk", sceNpScoreAbortRequest) +STUB("1iDLkHJ4gbA", sceAt9EncQueryMemSize) +STUB("1iHBAKrdE90", _ZN3sce2np10CancelLockD2Ev) +STUB( + "1iK7RpJgQ0g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("1iQYl+DC2iY", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEEC1Ev) +STUB("1iRAqEqEL0Y", __lshrti3) +STUB("1iRI9Df-bZQ", _ZN3sce2np14JsonNumberImplD1Ev) +STUB("1iTehbdJsN4", _ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetailD1Ev) +STUB("1iXzZQ8lIos", _ZNK3sce2Np9CppWebApi11UserProfile2V112BasicProfile6toJsonERNS_4Json5ValueEb) +STUB("1iYJf4XeUxk", uset_containsSome_67) +STUB("1ic8FohIVJU", mono_aot_Sce_Vsh_SessionInvitationunwind_info) +STUB( + "1if+jTEvH8c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEED2Ev) +STUB( + "1ioWe8vw9ac", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEplEm) +STUB( + "1iq5Jtw4jVs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEEdeEv) +STUB("1itFJ6klpO0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEEC1EPS5_) +STUB( + "1iv4Y1qTLlQ", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "1ivgIy9ciEA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEEC1Ev) +STUB("1j+o52TClOU", gxv_module_class) +STUB("1j18fB0HvlE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEE11release_refEv) +STUB("1j3S3n-tTW4", sceKernelGetTscFrequency) +STUB("1j4DZ5dXbeQ", sceNetConfigWlanAdhocPspEmuGetWakeOnWlanInfo) +STUB( + "1j5Y5STtC8U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEED1Ev) +STUB( + "1j83+l8Idy8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("1j8J4AKdl2Y", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer10unsetlimitEv) +STUB("1jBtH41KASU", mono_aot_Newtonsoft_Json_PlayStationunbox_trampolines) +STUB( + "1jBtutBLeEE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEC2Ev) +STUB( + "1jCDC4EqZ2Y", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("1jOK01zGM5I", ScePsmMonoTypeIsValueType) +STUB("1jUJO+TZm5k", _ZTSSt5ctypeIwE) +STUB("1jZ9heHESWw", _ZN7WebCore9HTMLNames16ontimeupdateAttrE) +STUB("1jbXP-SqEwM", il2cpp_class_get_fields) +STUB("1jf1Yan1IyI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEEcvbEv) +STUB("1jfXLRVzisc", sceKernelUsleep) +STUB("1jmC2QcpRl0", FT_Vector_Length) +STUB("1jn2Jw6t5lg", + _ZNK3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayer16customData1IsSetEv) +STUB( + "1jo2NKK2Afo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEC1ERS7_) +STUB("1jvS0UqbY3E", sceFiosStatisticsPrint) +STUB("1jwAtAP7KyU", sceShellCoreUtilNotifyImeStatusChanged) +STUB( + "1jwopmVYLvw", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB( + "1k-hM1CjFl4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEC2EPS9_) +STUB("1k0NwgDdJfo", mono_btls_x509_store_free) +STUB( + "1k1uC428dD0", + _ZN3sce2Np9CppWebApi14SessionManager2V128ResponseGameSessionSpectator8fromJsonERKNS_4Json5ValueE) +STUB("1k457nM9X6w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ChildActivityAvailabilityEEmmEi) +STUB("1k9CxaIu0co", GCC_except_table81) +STUB("1kDK8-lzz1s", setDecidBootEvf) +STUB( + "1kGEizDjKL8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEppEv) +STUB("1kGtVLKZqKQ", + _ZN7WebCore15InspectorClient31doDispatchMessageOnFrontendPageEPNS_4PageERKN3WTF6StringE) +STUB("1kHenFk2dOs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEED1Ev) +STUB("1kIpmZX1jw8", _thread_init_stub) +STUB( + "1kPnMVtnj+g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEcvbEv) +STUB("1kQ0lL8wW5I", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi28ParameterToDeleteGameSessionaSERS5_) +STUB("1kRQGmYoDxY", sceClHttpTerm) +STUB( + "1kUHnTVkx2w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE21intrusive_ptr_add_refEPS9_) +STUB("1kZFcktOm+s", _ZTVSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE) +STUB( + "1kbB-8tQwCw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("1kduKXMqx7k", feholdexcept) +STUB( + "1keSKibQEjw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE4sizeEv) +STUB("1kkTnF6SNog", _ZN7WebCore8GradientD1Ev) +STUB("1ksaFxL1SnM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEED2Ev) +STUB("1ktwPRAf19w", _ZN9Inspector30WorkerBackendDispatcherHandlerD2Ev) +STUB("1kuaPe+BvGU", _ZTVN9Inspector29SupplementalBackendDispatcherE) +STUB("1kvQkOSaaVo", _ZNSt10moneypunctIwLb0EEC2ERKSt8_Locinfomb) +STUB("1kvwH5UT7LA", _ZThn120_N7WebCore16HTMLMediaElement4playEv) +STUB( + "1kwXCDSRtMM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("1kxFLgpNgoo", mono_aot_Sce_Vsh_Accessor_Dbplt) +STUB("1kzQRoWEgSA", sceJpegDecDecode) +STUB("1l-ri0IF5OU", monoeg_g_dir_rewind) +STUB( + "1l28AuuwSvg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEaSERKS9_) +STUB("1l3T06lc6cI", _ZN7WebCore16HTMLVideoElement20webkitExitFullscreenEv) +STUB("1l4Nx9ssyWA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEC2Ev) +STUB( + "1l74I3X1s10", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getBoolean8Ev) +STUB( + "1l92AZD79lU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEdeEv) +STUB( + "1l98EzZNNXY", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("1lACBrvq6Vg", sceShellUIUtilLaunchTask) +STUB("1lBBeTjZ0bI", _ZN7WebCore7IntRectC2ERKNS_10LayoutRectE) +STUB("1lC32Kty+84", _ZN7WebCore13toJSDOMWindowERN3JSC2VMENS0_7JSValueE) +STUB("1lDe4Fqoias", _ZNK7WebCore16ISOSchemeTypeBox13schemeVersionEv) +STUB("1lDwztzbTqI", uregex_requireEnd_67) +STUB("1lIphmp7z+A", _ZN3sce2Np9CppWebApi15Personalization2V111ErrorEntityD2Ev) +STUB( + "1lP5i+-vjGM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEC2Ev) +STUB("1lRj0KYFqu4", _ZN7WebCore4Page24dispatchBeforePrintEventEv) +STUB( + "1lZIPiJnuM4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEEC1ERSA_) +STUB( + "1lcFpvoxsAU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE7reserveEi) +STUB("1lehOfA09zk", _ZN3WTF11Persistence7DecoderD2Ev) +STUB( + "1lg3nwrYfOc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE5beginEv) +STUB("1lmunXaKJjM", _ZN7WebCore9HTMLNames10coordsAttrE) +STUB("1lpaCYd8tpc", _ZN3sce7Toolkit2NP2V28Commerce7Request13GetCategories14MAX_CATEGORIESE) +STUB( + "1lph3fpFCBg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEC2Ev) +STUB( + "1ltmAFyyuTY", + _ZN3JSC19JSSymbolTableObject27getOwnNonIndexPropertyNamesEPNS_8JSObjectEPNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("1lw12IB1HrA", _ZN7WebCore21convertToIntegerClampIiEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB("1lxsi6QiRec", _ZNK3sce2Np9CppWebApi15Personalization2V121GetAccessCodeResponse7getCodeEv) +STUB( + "1m1Xthv5cZ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEC1Ev) +STUB("1m2y+e811xA", _ZNK3sce3Xml3Dom4Node13hasAttributesEv) +STUB("1m4CKJxzsW0", scePlayerInvitationDialogGetStatus) +STUB("1m9Qb8CcPhk", + _ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody21ticketAttributesIsSetEv) +STUB( + "1mALHp8IlG4", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot9getfieldsEv) +STUB("1mDW3CrKA34", _ZN7WebCore13JSHTMLElement11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("1mFJ6hh-6yk", _ZN7WebCore21JSTextTrackCueGenericD1Ev) +STUB("1mPTuP9w7wg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEEppEv) +STUB( + "1mS-EqzEj50", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEC2EPS8_) +STUB("1mZUl7tMeh4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEED2Ev) +STUB("1maKcwFOk3E", _ZN3JSC14SourceProvider5getIDEv) +STUB("1mecP7RgI2A", gmtime) +STUB("1mfDBl40Dms", sceNpAppInfoIntCheckServiceAvailability) +STUB( + "1mgD4WXBIQ8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEC2EPKS8_) +STUB("1mi8mtvJ1zA", _ZNK7CoreIPC10Attachment6encodeERNS_15ArgumentEncoderE) +STUB("1miJAwDtxRs", scePssMusicPlayerStopEx) +STUB("1mk1z61Oxkc", _ZNK3sce2Np9CppWebApi6Common8IteratorIjEdeEv) +STUB("1mnghWFX0wQ", _ZN3sce2npgeERKNS0_4TimeERK10SceRtcTick) +STUB("1msXxuJO7Yw", _ZN3sce7Toolkit2NP13AttachmentURLC1Ev) +STUB("1muH18WXIQQ", sceNpTrophy2SystemRemoveUserData) +STUB( + "1muoRIsNpAE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE10setContextEPNS2_10LibContextE) +STUB("1mvb3+vi3E4", sceIduUtilClearAllSchedules) +STUB( + "1mxJy2PBo54", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEdeEv) +STUB( + "1n-+9sbmwnk", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10setString8EPKc) +STUB("1n-dGukBgnY", sceNpTusCreateNpTitleCtxA) +STUB( + "1n0syQSY0yk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEixEm) +STUB("1n37q1Bvc5Y", sceSystemServiceGetDisplaySafeAreaInfo) +STUB("1n43cN8DP6E", _ZNK9Inspector14InjectedScript10wrapObjectEN3JSC7JSValueERKN3WTF6StringEb) +STUB("1n4BAyQEoAc", sceCesSJisToUtf8) +STUB( + "1nAMXZNUjws", + _ZN3sce2Np9CppWebApi7Matches2V131UpdateMatchDetailRequestFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_24UpdateMatchDetailRequestEEE) +STUB( + "1nB+7-XLYhg", + _ZN3WTF15AutomaticThreadC2ERKNS_14AbstractLockerENS_3BoxINS_4LockEEEONS_3RefINS_24AutomaticThreadConditionENS_13DumbPtrTraitsIS8_EEEENS_7SecondsE) +STUB( + "1nCbdTrkEBM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "1nDGVsYSRRo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEED2Ev) +STUB("1nE9cnpf+oY", mono_aot_Sce_Vsh_Webbrowser_XutilWrapperjit_code_start) +STUB("1nF0eXrBZYM", _ZN3sce2np4PathD2Ev) +STUB( + "1nHr4xTWRDU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("1nJEKr78quM", + _ZThn8_N3sce2np13JsonDocParser13onObjectValueEjjPKcNS0_10JsonParser9ValueTypeES3_) +STUB("1nK3z-539Sw", _ZNK7WebCore7Element12hasAttributeERKNS_13QualifiedNameE) +STUB("1nM7roSQMhs", _ZN3sce7Toolkit2NP2V212EventsClient12EventDetails21MAX_SIZE_EXT_LINK_URLE) +STUB( + "1nS2m6lnVUk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEEC2ERKSA_) +STUB("1nTKA7pN1jw", utime) +STUB("1nU++CN0ObE", WKBundlePageWillExitFullScreen) +STUB("1nU-9usW+G0", RemotePlayClearConnectHistory) +STUB("1nVPJ5kztvE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEmmEi) +STUB("1nWzH157kqw", WKContextSetSystemStorageDirectory) +STUB("1nZ4Xfnyp38", _sceLibcGetMallocParam) +STUB("1nafvh3INrY", _ZNK3sce2Np9CppWebApi14SessionManager2V110FromMember12getAccountIdEv) +STUB( + "1navP4CR1VI", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi26RecordScoreResponseHeaders24hasXPsnAtomicOperationIdEv) +STUB("1ncat7SSwP4", fuse_chan_session) +STUB("1nkU7nUON5k", MvpHttpSetCert) +STUB( + "1noVpfOWOxM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEEC2ERSA_) +STUB("1npa3LfEfq0", sceAppInstUtilPauseInstall) +STUB( + "1nuXnpuD75M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEEdeEv) +STUB( + "1nvAAzavcN8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("1nxJkpm8wLA", + _ZNK7WebCore20ScrollingCoordinator36coordinatesScrollingForOverflowLayerERKNS_11RenderLayerE) +STUB("1nylaCTiH08", _ZTSj) +STUB( + "1o+KK5wnw2I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE4sizeEv) +STUB("1oDEe0cbO3U", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError11unsetSourceEv) +STUB( + "1oDOkVUZufM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEixEm) +STUB( + "1oE6qz9zsic", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEC1EPS8_) +STUB("1oMvFrDq0pw", WKHitTestResultGetTypeID) +STUB("1oOvNgnAAp4", _ZN4Manx19get_netscape_formatEPK6Cookie) +STUB("1oTrw-ivVpA", sceCompositorSetFlipCommand) +STUB("1oa4qrszUrE", _ZN7WebCore15AsyncFileStreamD1Ev) +STUB( + "1oasg2vyO8U", + _ZN7WebCore23TextureMapperFPSCounter19updateFPSAndDisplayERNS_13TextureMapperERKNS_10FloatPointERKNS_20TransformationMatrixE) +STUB("1obfHQ48Hu0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEptEv) +STUB("1oeM2V1M67o", + _ZN7WebCore28throwRequiredMemberTypeErrorERN3JSC14JSGlobalObjectERNS0_10ThrowScopeEPKcS6_S6_) +STUB("1ojt4v5bSzc", mono_mempool_strdup) +STUB( + "1onVvEofFWg", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer30unsetxPsnAcceptPlatformNamePs5Ev) +STUB( + "1ozIH2V91hA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE3endEv) +STUB("1p0FEYfvSns", ubrk_safeClone) +STUB( + "1p5ifdFKiyI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("1p5uDHGLvd4", glGetProgramBinary) +STUB( + "1p6Uh3QD0Is", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEC2Ev) +STUB("1pBAEZW+8Qs", mono_aot_System_Xml_Linqjit_got) +STUB("1pDJdHXwJ1Y", + _ZN3WTF15base64URLDecodeENS_10StringViewENS_33SignedOrUnsignedCharVectorAdapterE) +STUB("1pHAbsw952I", _ZNK3sce2np14JsonObjectImpl12fieldSetInitEPNS1_8FieldSetE) +STUB( + "1pIUK11v2A8", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody14boolean10IsSetEv) +STUB("1pJCgibxzYs", _ZN7WebCore4Page32nonFastScrollableRectsForTestingEv) +STUB( + "1pJOmt3H--4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEC2Ev) +STUB( + "1pM2Qy7+bQI", + _ZN7WebCore11EventTarget27addEventListenerForBindingsERKN3WTF12AtomicStringEONS1_6RefPtrINS_13EventListenerENS1_13DumbPtrTraitsIS6_EEEEONS1_7VariantIJNS0_23AddEventListenerOptionsEbEEE) +STUB("1pOW-QRdqbE", _ZN9Inspector15InspectorTargetD2Ev) +STUB( + "1pagbvXX-dg", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetrics16getNumberOfTimesEv) +STUB("1pb9VArSqX4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEED1Ev) +STUB("1pcgoKvYl7Q", g_str_has_prefix) +STUB( + "1pgNyzm8oB4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEC1EPS8_) +STUB("1phat1ndnM0", _ZN7WebCore9HTMLNames11onfocusAttrE) +STUB("1pldd0vvtDc", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE7popBackEv) +STUB("1ppzHkQhiNs", sceUserServiceGetGlsCameraContrast) +STUB("1pxQfif1rkE", sceHmdGetDeviceInformationByHandle) +STUB("1pxVgwcIUFo", mono_method_desc_search_in_image) +STUB("1q--VcVnmRA", u_memchr32_67) +STUB("1q1titRBL6o", sceAgcDcbDrawIndirect) +STUB("1qBCm0XPudI", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V117ResponseMatchTypeEEptEv) +STUB( + "1qCOtL98KS8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEED2Ev) +STUB("1qKq5FPtbUk", _ZN3PAL9SessionID26generateEphemeralSessionIDEv) +STUB("1qL3wDU4ddw", _ZN7WebCore9HTMLNames8codeAttrE) +STUB("1qM6pEHHOLk", sceFontGraphicsProcessWaitAllSequences) +STUB("1qO3Z0OL2mE", _ZN3sce7Toolkit2NP2V210Tournament7Request19SendUserMatchReportD1Ev) +STUB("1qPO0N90U0M", _ZN3sce7Toolkit2NP6Trophy9Interface10trophyInitEv) +STUB("1qTgeX2yO+4", _ZN3JSC7Symbols14allPrivateNameE) +STUB("1qUC6wdHHzY", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi24ParameterToReportResultsC1ERS5_) +STUB("1qWfeYAFHng", _ZN3sce7Toolkit2NP2V24Core12ResponseBase10sameThreadEv) +STUB("1qXLHIpROPE", sceGnmInsertWaitFlipDone) +STUB( + "1qYL2vZjxWw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEneERKS9_) +STUB("1qZf0i-jdDI", mono_aot_Sce_Vsh_RnpsAppMgrWrapperunbox_trampolines_end) +STUB("1qanF2UB9Xg", mono_aot_Sce_Vsh_DbPreparationWrapperjit_code_end) +STUB("1qbUFXlBXFw", sceShellCoreUtilGetFsckProgress) +STUB("1qec85qcAJE", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanityC1ERS5_) +STUB( + "1qfAPiWwPWQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEE11get_deleterEv) +STUB( + "1qh9KS-4CNE", + _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities13isInitializedEv) +STUB( + "1qnxr452fTY", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToSendGameSessionMessage12setsessionIdEPKc) +STUB( + "1qoFtDFYPwA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEmmEi) +STUB("1qrhwbKWyNA", _ZN3JSC10Identifier29checkCurrentAtomicStringTableEPNS_9ExecStateE) +STUB("1qvJP61VKMw", _ZNSsaSEOSs) +STUB( + "1qwRB06CWxI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "1r+8I++PtwU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEC1EPKS8_) +STUB("1r+EphqpZ0s", _ZN3JSC17DeferredWorkTimer17cancelPendingWorkEPNS_8JSObjectE) +STUB("1r23P6FLQEM", mono_debug_add_delegate_trampoline) +STUB("1r4l+X-3zmI", uprv_decNumberRemainderNear_67) +STUB("1r8jGgOfJwk", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11TusVariableEE7addressERKS3_) +STUB("1r9w133zkWY", _ZNK3WTF8JSONImpl10ObjectBase9writeJSONERNS_13StringBuilderE) +STUB("1rFPShTezl0", _ZN3sce7Toolkit2NP2V210Tournament7Request18GetRegisteredTeamsC1Ev) +STUB("1rGG490DeFE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEE7get_refEv) +STUB( + "1rKRjY4GSEc", + _ZN3sce2Np9CppWebApi14SessionManager2V156PostPlayerSessionsSessionIdInvitationsRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_49PostPlayerSessionsSessionIdInvitationsRequestBodyEEE) +STUB("1rLXMfY9K+k", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlotC2ERS5_) +STUB("1rOfBYZN9ww", _ZN7WebCore4Page20setDeviceScaleFactorEf) +STUB("1rTE0BEoihE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEED1Ev) +STUB("1rZSWUv1IRc", sceAgcDcbCopyData) +STUB( + "1rZZYScyqRE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEmmEv) +STUB("1reBS5j79LQ", _ZN3sce7Toolkit2NP2V26Friend6FriendC2Ev) +STUB("1rlHMruxwHk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEED1Ev) +STUB("1rmon7rFUcM", _ZNK3sce2Np9CppWebApi13InGameCatalog2V513ContentRating7getNameEv) +STUB("1roIGVwdmk4", _ZN8meta_gen12JpegPromoterD1Ev) +STUB("1rpZqxdMRwQ", sceHttpGetAcceptEncodingGZIPEnabled) +STUB( + "1rrABQXr9Tg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "1rrOvU0oPYM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE3endEv) +STUB("1rs4-h7Fq9U", __divmoddi4) +STUB("1rt9PQJV64k", _ZN15AbstractStorage13TwitterFolderD1Ev) +STUB( + "1rx0LMPsjeM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEC2EPKS8_) +STUB("1s+c3SG0WYc", _ZN3sce2np9EventFlag4WaitEmjPmj) +STUB( + "1s3bl7gF878", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "1sB8wQ7MyV4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEC2EPS8_) +STUB("1sFIml1gkvE", __asan_report_exp_load1) +STUB("1sGQan8NiQ0", _ZN3sce2Np9CppWebApi7Matches2V124RequestCompetitiveResult16getPlayerResultsEv) +STUB("1sGo4cTbwEA", mono_aot_System_Runtime_Serializationunbox_trampolines) +STUB("1sKGLPtkdow", _ZNK3sce4Json5Value8getValueERKSbIcSt11char_traitsIcENS0_8StlAllocIcEEE) +STUB( + "1sLRbsDcfvg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC1ERKSB_) +STUB("1sN6cwmEjcc", delegate_virtual_invoke_imt_m_11) +STUB("1sP+XBRFmqg", mono_method_signature) +STUB( + "1sPYAzPcWyA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEcvbEv) +STUB("1sUwwFuHW5g", _ZN3JSC4Heap17globalObjectCountEv) +STUB("1sWluYvAfBM", SSL_get_client_random) +STUB("1sWmNDp+0To", _ZN7WebCore12BlobRegistry16blobRegistryImplEv) +STUB("1sbo31OsqMQ", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_addEventTime) +STUB( + "1scSuRZxNsM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEE11get_deleterEv) +STUB("1siRBursJjw", _ZN3sce4Json6ObjectD2Ev) +STUB("1sqJ+5rsEzs", + _ZN7WebCore21JSCSSStyleDeclaration23visitAdditionalChildrenERN3JSC11SlotVisitorE) +STUB("1srQTITTjM4", _ZN3WTF16fastZeroedMallocEm) +STUB( + "1sugteqkETg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE23clearOnFinishedCallbackEv) +STUB( + "1t+S5Uw1riA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEEaSERSA_) +STUB( + "1t-lC1wdcA4", + _ZN3sce2Np9CppWebApi7Matches2V120RequestMemberFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_13RequestMemberEEE) +STUB( + "1t0pR-mdrtg", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Runtime15SyntaxErrorTypeEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB("1t1-JoZ0sZQ", sinhf) +STUB("1t3ixYNXyuc", sceAjmDecAt9ParseConfigData) +STUB( + "1t4MGo48HIU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEdeEv) +STUB("1t5lhAe3UR0", _ZNK3JSC8Debugger22pauseOnExceptionsStateEv) +STUB("1t9M6G0QM1o", _ZN3sce7Toolkit2NP2V28Commerce11SubCategoryC2Ev) +STUB("1t9U+QGX7w0", _ZN3WTF9MediaTimenaEm) +STUB("1tAcK51c-88", _ZN3sce7Toolkit2NP2V28Commerce10DescriptorD1Ev) +STUB( + "1tAm86Kb5GQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEE3getEv) +STUB( + "1tAmxS5g2Hs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEED2Ev) +STUB("1tB0xkLNjcw", sceAgcDcbAtomicGdsGetSize) +STUB("1tKwS9K7BZA", _ZN3JSC14ProtoCallFrame9setCalleeEPNS_8JSObjectE) +STUB("1tKyG7RlMJo", scePthreadGetprio) +STUB( + "1tRKoADIYeU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE4sizeEv) +STUB( + "1tW4amc3slw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE4sizeEv) +STUB("1tWMuLo+iB8", uhash_deleteHashtable_67) +STUB("1tXDV45yh2Y", _ZN3WTF14FileSystemImpl19filesHaveSameVolumeERKNS_6StringES3_) +STUB("1tZGv4oi0cs", _ZN3JSC7Symbols29promiseReactionJobPrivateNameE) +STUB( + "1tcWJ5ew-TA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEC1ERKS7_) +STUB("1tk0xABWfqk", Canonicalize) +STUB( + "1tkez8oYyX8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "1touPjeAL2o", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE5beginEv) +STUB( + "1tr98vaoDT4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEE11get_deleterEv) +STUB("1tt8FddamlM", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getInteger4Ev) +STUB( + "1ttKchtHaMk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEC1EPS8_) +STUB("1tvWBujUKQk", mono_arch_clear_breakpoint) +STUB("1ty9Y1xzdmg", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE6resizeEj) +STUB( + "1u+pTJn9oj8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE5emptyEv) +STUB("1u29VUXf-kM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEC2ERS7_) +STUB("1uBKk-ueSvM", + _ZN3sce2Np9CppWebApi7Matches2V123ResponsePlayerStatisticC2EPNS1_6Common10LibContextE) +STUB("1uCdVAqt+YA", _ZN7WebCore12EventHandler15handleAccessKeyERKNS_21PlatformKeyboardEventE) +STUB( + "1uFZuB6eRAk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEEC1Ev) +STUB("1uJgoVq3bQU", _Getptolower) +STUB( + "1uK7+Hvx118", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEED1Ev) +STUB( + "1uPHW2pj24w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "1uPlm3piHd8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEED1Ev) +STUB( + "1uS-RSQa+1g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEC1Ev) +STUB("1uXd5bVohHc", _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRankingC2Ev) +STUB( + "1ud-36ZJ114", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEED2Ev) +STUB("1ueTWnGIyW0", _ZN3sce7Toolkit2NP2V212NetworkUtils7Request16GetBandwidthInfoD2Ev) +STUB("1uf1SQsj5go", towupper) +STUB( + "1ufhcTdbpL8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEC1ERKS7_) +STUB( + "1ugtjdNXHIE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "1uhS+FE1eOY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("1uiDWP8AjtA", ucurr_getPluralName) +STUB( + "1uiGozzDcs8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("1ulKpAYXUAo", mono_set_thread_interruption_request_flag_ptr) +STUB( + "1urag1LmOwM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEEC2ERKSA_) +STUB("1uryzAWFUuA", _ZNK15AbstractStorage7Storage7GetTypeEv) +STUB( + "1usDFC2WXJ4", + _ZN3JSC41constructFunctionSkippingEvalEnabledCheckEPNS_14JSGlobalObjectERKNS_7ArgListERKNS_10IdentifierERKNS_12SourceOriginERKN3WTF6StringERKNSB_12TextPositionEiNS_24FunctionConstructionModeENS_7JSValueE) +STUB("1usuqa2LXUg", fuse_session_destroy) +STUB("1uvFpFqye9g", _ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponseD1Ev) +STUB("1uwR+A7N7oc", mono_aot_Sce_Vsh_Np_AppLaunchLinkunbox_trampolines) +STUB("1uz3FeoMLRk", _ZN3WTF16AtomicStringImpl3addEPKhj) +STUB("1vAE--J65fU", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEEdeEv) +STUB("1vB5+jaiBzM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEE7add_refEv) +STUB("1vBOjvPlb9U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEE7get_refEv) +STUB("1vCEy8EP+gc", sceKernelInternalResumeDirectMemoryRelease) +STUB("1vDaenmJtyA", sceKernelOpenEventFlag) +STUB("1vGDqFIZWTQ", _ZN3sce7Toolkit2NP21TusSetDataInputParamsC1Ev) +STUB( + "1vI7n0NDK5A", + _ZN9Inspector20DOMBackendDispatcher12getOuterHTMLElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("1vKM7kB2jSk", Java_java_lang_Package_getSystemPackages0) +STUB( + "1vN3bM2wjfo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEE7add_refEv) +STUB("1vTzThp8e4A", _ZN3sce7Toolkit2NP9Utilities6FutureI19SceNpTrophyGameDataE3getEv) +STUB("1vn2-6I8PLE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEED2Ev) +STUB("1vo6qqqa9F4", _ZdlPvS_) +STUB("1vs602jmh7M", _ZN3sce2Np9CppWebApi12Leaderboards2V15Entry10setCommentEPKc) +STUB("1vtq6-A5reA", GCC_except_table414) +STUB("1vuGK3A1ePY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEppEv) +STUB( + "1vvQSQDM14s", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeaders17unsetCacheControlEv) +STUB( + "1vykeIoQoY4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("1vyq1zTl2kk", _ZN3sce2Np9CppWebApi14SessionManager2V131ResponsePlayerSessionInvitationD1Ev) +STUB("1w1qHQnwnWg", _ZN3JSC18GCActivityCallback15createFullTimerEPNS_4HeapE) +STUB( + "1w2PLgvoMF0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("1w4KTY1y7RU", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setBoolean8ERKb) +STUB( + "1wBHMdJQvZY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "1wBbmjdFEXw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEE7get_refEv) +STUB("1wDQqsncViM", _ZN7WebCore8SVGNames5rAttrE) +STUB("1wFNGIk3FR0", FT_Get_Renderer) +STUB("1wI+QyOuHDc", _ZN3sce7Toolkit2NP2V27Ranking7Request11SetGameData8MAX_PCIDE) +STUB( + "1wIJWKFIB7Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEEC1ERKSA_) +STUB("1wLhpGWDFlM", _ZNK7WebCore17HTMLSelectElement5valueEv) +STUB("1wMKF3L2PXU", sceUpsrvPostErrorLog) +STUB("1wMn3X94WME", sceNpAsmClientDeleteRequest) +STUB("1wNmKSa3Nyc", Java_com_sony_bdjstack_security_aacs_AACSOnline_getNonce) +STUB( + "1wS04Y5TPik", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEdeEv) +STUB("1wYJBiKygKY", sceClKernelReleaseFlexibleMemory) +STUB("1wYyDmfG-1M", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13SessionMemberEED1Ev) +STUB("1wZvCS-KzPs", SHA256_Final) +STUB("1wcdIyiFb94", _ZN7WebCore5Range24createContextualFragmentERKN3WTF6StringE) +STUB( + "1wmEgr+LGCk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEppEv) +STUB( + "1wpCXuFzH10", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEED1Ev) +STUB("1wq4f6x1LoA", qzerof) +STUB("1wsPC7RqShQ", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetail19unsetnpServiceLabelEv) +STUB("1wsyLPfjnmg", sceAppInstUtilGetInstallStatus) +STUB( + "1wtqJZpO4Dw", + _ZN7WebCore16MIMETypeRegistry32containsImageMIMETypeForEncodingERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEES8_) +STUB("1wxFFk3xIhA", sceKernelIccControlBDPowerState) +STUB("1wy8bq-Us9M", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBodyD1Ev) +STUB("1x0YNUHzmZM", _ZN3sce7Toolkit2NP2V212NetworkUtils13NetStateBasicC2ERKS4_) +STUB("1x0cP4qpiN4", _ZN13MsvMetaEditor14getMoovBoxInfoEv) +STUB("1x0jThSUr4w", _ZN3sce2np6ObjectdaEPv) +STUB("1xCI3sEgjhk", _ZNK7WebCore23ApplicationCacheStorage11maximumSizeEv) +STUB("1xDj+t1Zub8", g_ptr_array_set_size) +STUB("1xE7OKnU+S8", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData12getaccountIdEv) +STUB( + "1xGFELf7RKg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEED2Ev) +STUB("1xNXivfnyvQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEC2ERS7_) +STUB("1xSZodB2geA", sceContentSearchTerm) +STUB("1xYbkViN0Qo", __cxx_global_var_init .33) +STUB( + "1xYklDtHGtw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE4sizeEv) +STUB("1xbdPOXWMkY", _ZNK7WebCore8Settings18showRepaintCounterEv) +STUB( + "1xcMgCdJwiA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEEC1EPS5_PFvS7_EPNS2_10LibContextE) +STUB("1xchZd188u0", + _ZN7WebCore23ApplicationCacheStorage26storeUpdatedQuotaForOriginEPKNS_14SecurityOriginEl) +STUB( + "1xgwYSdQwYw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE5startEPNS2_10LibContextE) +STUB("1xoLMLSYmE8", + _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession28setReservationTimeoutSecondsERKi) +STUB("1xpx3iwQ3p8", _ZN13MsvMetaEditor12truncateFileEPKcl) +STUB( + "1xvjKimSdSI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEptEv) +STUB("1xvtUVx1-Sg", __pthread_cleanup_push_imp) +STUB("1xx0ve4g77Q", _ZN3JSC7Symbols18italicsPrivateNameE) +STUB("1xxcMiGu2fo", sceUserServiceGetUserName) +STUB("1xy5Q9BI8KU", _ZN12video_parser10cVideoPathC2EPKc) +STUB("1xzeyYMI2hQ", _ZN3JSC15createTypeErrorEPNS_14JSGlobalObjectERKN3WTF6StringE) +STUB( + "1y1T31BMRqU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE8capacityEv) +STUB( + "1y3T6CNBkIQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE6resizeEj) +STUB("1y6BZW9sKjQ", sceAppInstUtilAppGetAppOtherSize) +STUB( + "1y7V948DYe8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEE5resetEPS7_) +STUB( + "1y8h83o0Ya4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "1yDfiR1Wh74", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEC2ERS8_) +STUB( + "1yDufm1xVo0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "1yMEuHTj5D4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEplEm) +STUB("1yNctDJdXNM", _ZNK7WebCore24CachedResourceHandleBase3getEv) +STUB("1yOsZYC0bKs", _ZN3WTF16AtomicStringImpl3addEPKDs) +STUB( + "1yQt6nY6c0o", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V139GetMultiDataStatusesResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_32GetMultiDataStatusesResponseBodyEEE) +STUB("1yXS+iqB3wQ", sceKernelMapperGetParam) +STUB("1yYzosuMlRQ", _ZN19JITSharedDataMemory9sbrk_infoE) +STUB( + "1yaZoWIsWdA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("1yca4VvfcNA", sceKernelTitleWorkaroundIsEnabled) +STUB( + "1yl7v2VycT0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEppEv) +STUB("1ylmHWYLYdg", mono_aot_Sce_Vsh_VideoServiceWrapperunbox_trampoline_addresses) +STUB("1yqO3zM6aD0", _ZN7WebCore12ChromeClient20didInsertMenuElementERNS_15HTMLMenuElementE) +STUB( + "1ys9uBbBlT4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE7popBackEv) +STUB( + "1yshiy1sSHc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE10setContextEPNS2_10LibContextE) +STUB("1ywCkCTsDxU", _ZN3sce2Np9CppWebApi15ProfanityFilter2V219WebApiFilterRequestD2Ev) +STUB("1yzPk-TN1+0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11SessionDataEE3getEv) +STUB("1z6bBg1qBfU", FT_Stream_ReadOffset) +STUB("1z7XMEnjelI", sceUserServiceGetControlCenterFunctionControlSettings) +STUB( + "1zADpAFyOFE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEmmEi) +STUB("1zC4Yze8GWA", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy15TrophyPackGroupEE5resetEv) +STUB("1zDEFUmBdoo", sceUserServiceGetAccessibilityZoom) +STUB("1zHP7BQXxr4", sceRazorCpuStartCapture) +STUB("1zJdp+3xH20", _ZN7WebCore11MediaPlayer6createERNS_17MediaPlayerClientE) +STUB("1zKadIOLJqE", _ZN7WebCore9HTMLNames23onautocompleteerrorAttrE) +STUB( + "1zNS5hLRmrQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("1zSahCRH0-Y", mono_get_exception_bad_image_format) +STUB("1zVgH9N3NNY", mono_aot_appjit_got) +STUB( + "1zfXlxhJaqg", + _ZN3sce7Toolkit2NP2V28Commerce26displayProductBrowseDialogERKNS3_7Request26DisplayProductBrowseDialogEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB( + "1zm9Vio-TJQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEEC1ERS9_) +STUB("1zovCBzwnbc", _ZN7WebCore21HTMLOptionsCollection6removeEi) +STUB( + "1zpRbCIAH1w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEC1EPS8_) +STUB( + "1zptq8p0kGc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE7popBackEv) +STUB("1zq11f8z83Q", mono_btls_bio_mono_initialize) +STUB( + "1zr6cQn2P4M", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionProperties35setxPSNSESSIONMANAGERNONPSNCALLERIDEPKc) +STUB( + "1zsmOY7-A0o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEED1Ev) +STUB( + "1zv0tl7404o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEC1ERKS7_) +STUB( + "1zzJu7k1bLs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("1zzpP6uXs-s", _ZN3JSC7Symbols13ofPrivateNameE) +STUB( + "1zzyG2pHP50", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEixEm) +STUB( + "2+0CSHbJOyk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEptEv) +STUB( + "2+4xx+oiB+8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEED2Ev) +STUB("2+6K-2tWaok", _Fetch_or_seq_cst_1) +STUB( + "2+7obvUWItU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEEC1ERSA_) +STUB("2+A7x-y0wNs", ScePsmMonoSecurityEnableCoreClr) +STUB( + "2+DfnomJcDs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEEC1ERS9_) +STUB( + "2+J2+XumCcg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEEaSERSA_) +STUB("2+My9LyO5hM", mono_aot_Sce_Vsh_SysUtilWrappermethod_addresses) +STUB("2+U7T3s-8fw", _ZN9Inspector13AgentRegistryD1Ev) +STUB("2+XEVHKBMuY", _ZN3sce3pss4core16InitializeCsharpEPK19ScePsmConfiguration) +STUB( + "2+YytwcL6tI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEE3getEv) +STUB( + "2+d9DcWT3Go", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEEC2ERKSA_) +STUB("2+gi0SvRxKA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE5beginEv) +STUB( + "2+ib2nsv-dc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEE5resetEPS9_) +STUB("2+kc2PfLOV0", _ZN3JSC7Symbols28isUndefinedOrNullPrivateNameE) +STUB("2+pMi9i6zYg", g_str_has_suffix) +STUB("2+pVfgiEd7A", pthread_attr_setsolosched_np) +STUB( + "2+rYuU6EIp4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEC1EPNS2_10LibContextE) +STUB("2+uRH9hvLWM", _ZN7WebCore11HistoryItem9setTargetERKN3WTF6StringE) +STUB("2-+fJU7sdx8", glGetShaderSource) +STUB("2--tkMWfV6k", mono_object_isinst_mbyref) +STUB( + "2-4ltCJz+KE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE8copyFromERKS9_) +STUB( + "2-5GwIw4u6Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEE5resetEPS9_) +STUB( + "2-6xb1JqfHA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEE3getEv) +STUB("2-8NWLS8QSA", sceSaveDataUmountSys) +STUB("2-E7zx+MSTE", _ZNK7WebCore9FrameView10renderViewEv) +STUB( + "2-EcKe8jqtY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("2-EpPErhK3o", mono_debugger_method_has_breakpoint) +STUB("2-Htz3Rhqy4", _ZNK7WebCore12ISOWebVTTCue16presentationTimeEv) +STUB("2-J+JAsSYY0", _ZN7WebCore9HTMLNames15crossoriginAttrE) +STUB( + "2-JPZiBhcCk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEEcvbEv) +STUB( + "2-LcEABCML4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE5beginEv) +STUB("2-M5p9KpriU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V110AvatarSizeEEeqERKS7_) +STUB("2-MkHLDkFP4", sceUserServiceGetGlsOverlayPosition) +STUB("2-S0J1RW2vQ", _ZN15AbstractStorage14StorageManagerD1Ev) +STUB( + "2-SAuLzhtgk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE7reserveEi) +STUB( + "2-XeykBl7qQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEeqERKS9_) +STUB("2-Y9ZJ7ixrU", __start__Zhash) +STUB("2-ZSPY7bDjU", _ZN3sce7Toolkit2NP15AppSTLAllocatorIiEC2Ev) +STUB("2-ZV5n3odSc", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V113ErrorResponseD2Ev) +STUB("2-aQ-I5tcxM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge18ChallengeThumbnailEE3getEv) +STUB("2-b8QbU+HNc", sceUserServiceGetImeLastUnit) +STUB("2-bYnN1qoQM", sceSpNetSocketClose) +STUB("2-pbW8Uw8FI", _ZN7WebCore15ActiveDOMObjectD1Ev) +STUB( + "2-utYvCggQ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEEaSERKSA_) +STUB("2-wiEVIMIA0", p5_16) +STUB("201HW-Di-fs", _ZN3sce3pss4core6camera6Camera13SetConfigTypeEi) +STUB("203JffNGrbg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEC1Ev) +STUB("203wIziut0o", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEEptEv) +STUB("207Zjd6AVDQ", _ZN3JSC7Symbols16isSetPrivateNameE) +STUB("20BsCgZHqOk", _ZN3sce2Np9CppWebApi10Activities2V114UserActivities5Error9setSourceEPKc) +STUB( + "20FEq1AdVD4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEmmEi) +STUB( + "20JXjAfU0fI", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsers35setxPSNSESSIONMANAGERNONPSNCALLERIDEPKc) +STUB("20UTKti9SoQ", _ZN7WebCore29createDefaultParagraphElementERNS_8DocumentE) +STUB( + "20UekU7x2m8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEC2EPNS2_10LibContextE) +STUB("20VhWlfulVM", _ZN3JSC2VM20dumpTypeProfilerDataEv) +STUB( + "20bxOmrkl-g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEEC1Ev) +STUB("20cUk0qX9zo", _malloc_init_lv2) +STUB( + "20fQKVbtHjM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEC2EPS8_) +STUB("20fktvybHIM", _ZN7WebCore9FrameView29setShouldUpdateWhileOffscreenEb) +STUB("20gqejs13iI", mono_aot_Sce_Vsh_VideoFramework_Platformplt) +STUB( + "20jsZerxL14", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEdeEv) +STUB("20mD5Dpn2E8", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEEC2EPS6_) +STUB("20ncFey1XAg", mono_aot_Sce_Vsh_SQLiteAuxmethod_addresses) +STUB("20oHu2qpgAA", _ZN3sce2np9JsonArrayC2EP14SceNpAllocator) +STUB( + "20pc-1kG840", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE21intrusive_ptr_sub_refEPS9_) +STUB("20qj+7O69XY", isnan) +STUB("20qqWmDFSYc", sceNpUniversalDataSystemIntRecordObjectSetBool) +STUB( + "20r6nhYgjCE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE4sizeEv) +STUB( + "20t9bUGiHvM", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("20u2l0mDMQ8", _ZN7WebCore24CoordinatedGraphicsLayer17didChangeChildrenEv) +STUB("20wAMbXP-u0", sceNpTrophySystemCheckNetSyncTitles) +STUB("20wueHdL0Nk", _ZN3sce3Xml6StringC2ERKS1_) +STUB("20x87zEXaUM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEED1Ev) +STUB( + "20zjGVEcG5U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEC1ERKS7_) +STUB("21+rb7xOlJk", sceKernelIsModuleLoaded) +STUB( + "21-b8Wqkqt0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEE7get_refEv) +STUB("210fV99FlRk", _ZN3WTF11Persistence7EncoderlsEl) +STUB("2115j0TIHfM", _ZN7WebCore8SVGNames15feTurbulenceTagE) +STUB("215BW2R73RU", sceClHttpSetAutoRedirect) +STUB( + "216C91IIggw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEEaSERSA_) +STUB( + "216JbB5+Cew", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC1ERKSB_) +STUB("21Bak5bqoqU", il2cpp_string_length) +STUB("21EUI6EIxPo", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEEC2Ev) +STUB("21FMz6O4B2E", sceNpIdMapperNpIdToAccountId) +STUB( + "21HBte8ztQI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEC1EPKS8_) +STUB("21Iix09Z04g", mono_aot_Sce_Vsh_VideoServiceWrapperunbox_trampolines_end) +STUB( + "21J8Lcw+Qn4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("21KFhEQDJ3s", _malloc_fini) +STUB("21MSzOuqZi0", _ZN7WebCore15UserInputBridge16stopLoadingFrameEPNS_5FrameENS_11InputSourceE) +STUB("21N4NbEuAjY", _ZN7bmalloc5Cache30tryReallocateSlowCaseNullCacheENS_8HeapKindEPvm) +STUB("21SKuM5fp6A", _ZN7WebCore10FileSystem15getFileDeviceIdERKN3WTF7CStringE) +STUB( + "21Usjr7Qjbo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEEC2EPS4_PFvS6_EPNS2_10LibContextE) +STUB( + "21V5nmYlWm4", + _ZN3WTF30overrideUserPreferredLanguagesERKNS_6VectorINS_6StringELm0ENS_15CrashOnOverflowELm16ENS_10FastMallocEEE) +STUB("21VqkIaq1YE", + _ZThn16_N9Inspector21InspectorRuntimeAgent18releaseObjectGroupERN3WTF6StringERKS2_) +STUB( + "21XnfADVJHc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEED1Ev) +STUB("21cLLwe2AnE", scePatchCheckerUpdateAppdbForEap) +STUB("21cUbLIHG+s", _ZN7WebCore8FormDataD2Ev) +STUB("21csdPTFF+s", _ZN3sce7Toolkit2NP2V23TUS25AtomicAddToAndGetVariableC1ERKS4_) +STUB("21dI64V067E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEC2Ev) +STUB( + "21fWEgpIylM", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("21g4m4kYF6g", sceFontGraphicsFillRatesInit) +STUB( + "21i6ysl4NJY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEEaSERKS9_) +STUB("21oZeaUHjAs", _ZN7WebCore8SVGNames7maxAttrE) +STUB( + "21p2cgS32IA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEmmEv) +STUB("21pLHdVlBbs", uloc_toLanguageTag_67) +STUB( + "21pij2qjwXc", + _ZN7WebCore10FileSystem15openAndLockFileERKN3WTF6StringENS0_12FileOpenModeENS1_9OptionSetINS0_12FileLockModeEEE) +STUB("21rDa5eoK74", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE3endEv) +STUB("21sS8EU45cw", sceVideoOutSysGetFlipStatus) +STUB("21vkVuOP2lk", FT_Attach_File) +STUB("21w78rpNbjY", _ZN15AbstractStorage12LocalService13SearchStorageEv) +STUB("221fvqVs+sQ", sceNetMemoryFree) +STUB("223yzNUMJKw", _ZN3WTF9MediaTime15createWithFloatEf) +STUB("224Dc5ju5Mk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEEC2EPNS2_10LibContextE) +STUB( + "227yhc7ApnE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEppEv) +STUB( + "228r8PUE-38", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setInteger7ERKi) +STUB("22AK6qbo6PY", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOffer9unsetviewEv) +STUB("22BjDPwCmn8", _ZN7WebCore9HTMLNames12filenameAttrE) +STUB("22C8vFKX2u4", sceDebugGetUltInfo) +STUB( + "22GfJEfmVVM", + _ZN7WebCore11ImageBuffer6createERKNS_9FloatSizeENS_13RenderingModeEfNS_10ColorSpaceEPKNS_10HostWindowE) +STUB("22I90Pji9+0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEC2ERS7_) +STUB( + "22LL2G4mMbk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE7popBackEv) +STUB( + "22Oi2qGXhpk", + _ZN3sce2Np9CppWebApi7Matches2V129RequestPlayerStatisticFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_22RequestPlayerStatisticEEE) +STUB( + "22Q70MvOEA0", + _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product16setContentRatingERKNS1_6Common12IntrusivePtrINS3_13ContentRatingEEE) +STUB( + "22WL8q6EIk8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEEC1ERKSB_) +STUB( + "22a9CvKua6o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEmmEi) +STUB( + "22aDTE+ulbk", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEEiRNS2_10LibContextEPT_m) +STUB("22buO-UufJY", sceHttpSetDelayBuildRequestEnabled) +STUB("22g2xONdXV4", _ZTSSt9bad_alloc) +STUB( + "22jUcl2T0og", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEEaSERSA_) +STUB("22nfK8hJRj0", sceHeadTrackerQueryWorkingMemory) +STUB("22ngKDr3G28", _ZN7WebCore17FrameLoaderClientnaEmPv) +STUB("22oeZeA0CdU", sceNpIpcClientInit) +STUB("22u8+2qmkb8", _ZN8meta_gen17CommonFsOperation8readFileEmPv) +STUB("22v2XWp4DFo", _ZN3sce7Toolkit2NP2V28Commerce8ProductsC2Ev) +STUB( + "23+iRIR3AIA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEEcvbEv) +STUB( + "23Bii2HafS4", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectatorD1Ev) +STUB("23CPPI1tyBY", sceKernelGetEventFilter) +STUB("23E3fe5jmjY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEED1Ev) +STUB("23E7KzEOJtY", utrans_stripRules_67) +STUB("23Fko5SNRsY", unumf_close_67) +STUB("23HoIgD7WYs", GCC_except_table170) +STUB("23ICNCTX0Eg", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112GroupingTypeEEptEv) +STUB( + "23JVWfJTBvo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE7reserveEi) +STUB("23QZTBt3E60", _ZN15AbstractStorage14MemfileContent8SeekTimeElPl) +STUB( + "23SS55ne7vI", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("23axeMp33b8", _ZN7WebCore6Editor3cutENS0_20FromMenuOrKeyBindingE) +STUB("23bjhGrmGds", _ZNK7WebCore16HTMLMediaElement13platformMediaEv) +STUB("23jQPF1C6aE", WKViewSetDrawsBackground) +STUB( + "23l-xRYzmaY", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody19setLeaderPrivilegesERKNS1_6Common6VectorINS5_6StringEEE) +STUB("23nm4oXHlfI", _ZN3sce4Json5ValueC2Ed) +STUB("23pBo3p6Slk", _ZN12video_parser13cVideoPathMgv20GetBackupLicenseNameEPc) +STUB("23rLkkMg6WA", mono_aot_System_Data_Services_Clientunwind_info) +STUB("23rhr19fYWs", _ZN15AbstractStorage14FacebookFolder12readExternalESt10shared_ptrINS_7ContentEE) +STUB("23sxNJOxckc", __tsan_get_report_mutex) +STUB("23uLv15jvFA", u_strToUTF8) +STUB("23xrf3OlwEM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEED2Ev) +STUB( + "23z9yIyd9hU", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM18CustomElementStateEEESt8optionalIT_ERKN3WTF6StringE) +STUB("24+NH8GAfik", _ZN7WebCore15JSDOMWindowBase21shouldInterruptScriptEPKN3JSC14JSGlobalObjectE) +STUB( + "24+arNAYGYA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEeqERKS9_) +STUB("240U4cfeeh8", _ZNK7WebCore17FullscreenManager27areFullscreenControlsHiddenEv) +STUB("24CeNkcXhRE", unorm2_getInstance_67) +STUB( + "24GszWKTjBA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("24IDgrvWCMc", _ZN12video_parser12cVpFileCache7stopRunEv) +STUB( + "24JaJzStCtY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "24NDGTkf-Yg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEmmEv) +STUB("24PiQ1wZR0Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEcvbEv) +STUB("24Q9hvXTeQA", _ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_9ImageDataE) +STUB("24QWHtxr2EM", _ZN7WebCore23ApplicationCacheStorageC2ERKN3WTF6StringES4_) +STUB("24SDQYS0N4M", _ZN3WTF10SymbolImpl6createERNS_10StringImplE) +STUB("24TLMSs45A4", udat_getContext_67) +STUB( + "24UTLgAGxwg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEED1Ev) +STUB( + "24aitGqHnso", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("24f-Ffa4rxg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEC2Ev) +STUB("24gRLIT1y3I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE8pushBackERKS8_) +STUB("24kDA+A0Ox0", sceVrTrackerRegisterDevice2) +STUB("24kDIV0aDzs", _ZN3sce4Json5Value12s_nullstringE) +STUB("24m4Z4bUaoY", sscanf_s) +STUB("24mbf555RJU", _ZN3sce7Toolkit2NP2V211SharedMedia7Request13GetBroadcastsD2Ev) +STUB( + "24rKTi7X+1c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEixEm) +STUB( + "24sBys581sg", + _ZN3JSC23JSModuleNamespaceObject17defineOwnPropertyEPNS_8JSObjectEPNS_14JSGlobalObjectENS_12PropertyNameERKNS_18PropertyDescriptorEb) +STUB( + "24uIFFJ8zOI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEED2Ev) +STUB("24z+yWlcYoE", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setPrimaryAudioDefaultLang) +STUB("252gDgfnpkU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEEC1Ev) +STUB( + "257A0xgUUC0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE8copyFromERKS9_) +STUB( + "258qZGQqbXw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEppEi) +STUB("259y57ZdZ3I", __ltsf2) +STUB( + "25CJr-RGKiM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "25OYNt0MWG8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEEptEv) +STUB("25PEYXEnaJ0", sceDebugGetUltQueueInfo) +STUB( + "25Su-hk+x-o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "25Szkaz7grI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE8copyFromERKS9_) +STUB( + "25TL52J-9UE", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS2_6VectorINS5_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS5_INS8_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB( + "25Y+DvXIVek", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB("25e3mliz6U8", SSL_SESSION_get_master_key) +STUB("25hugdNv2HE", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session12Notification18InvitationReceivedEE3setEv) +STUB("25lgQJ93JO4", _ZNK9Inspector22InspectorDebuggerAgent27pauseOnNextStatementEnabledEv) +STUB("25mS80V8okg", WKBundleNavigationActionCopyDownloadAttribute) +STUB("25mefJRpH0Q", X509_get_ext_d2i) +STUB( + "25s0uS3VQqI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEED2Ev) +STUB( + "2651fpSUsO0", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEiRNS2_10LibContextEPT_m) +STUB( + "2685-0hm1hg", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12string5IsSetEv) +STUB("269oIIvZjh4", mono_aot_System_Coreunbox_trampoline_addresses) +STUB( + "26AtT0IVhRI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEptEv) +STUB("26BOSNNJS7g", sceVnaGetAgentSettings) +STUB( + "26IC9i6yosg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("26K6KWi+gy4", sceProfileCacheGetTrueName) +STUB("26KgmsjIE50", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product7setTypeEPKc) +STUB("26KknMfv0Yw", _ZN3sce7Toolkit2NP2V26Trophy16TrophyPackTrophyD2Ev) +STUB( + "26LQAA4BoXA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetrics8fromJsonERKNS_4Json5ValueE) +STUB("26MmdD1jVj8", bemp2sys_psdecoder_release) +STUB("26PM5Mzl8zc", sceGnmLogicalCuIndexToPhysicalCuIndex) +STUB("26SufKG5x4M", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData9terminateEv) +STUB("26VqvOFbxYo", sceNetDbgInit) +STUB( + "26a5JulMr4k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEC2Ev) +STUB("26lYor6xrR4", SSL_acceptConnection) +STUB("26liLpqGRjo", _ZN7WebCore15HTMLFormElement6submitEv) +STUB("26oRO1kBIVU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEEC2EPKS6_) +STUB( + "26pWLDpBG0Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEC1Ev) +STUB("26q33kxcGYs", sceMusicFwGetCurrentTime) +STUB( + "26rwauzW-Is", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEdeEv) +STUB("26sRl2nNXaE", WKBundleFrameForJavaScriptContext) +STUB("26vWrPAWJfM", sceNpMatching2GetRoomDataExternalList) +STUB( + "26wN8Yjf9Fk", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("270EeLhlxKE", _ZN7WebCore24CachedResourceHandleBaseC2Ev) +STUB("273-I-zD8+8", sceNetConfigWlanInfraScanJoin) +STUB("2783+UMEt+o", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request14PostPlayedWithD1Ev) +STUB( + "27E4o5mMxTs", + _ZN7WebCore26NetscapePlugInStreamLoader6createERNS_5FrameERNS_32NetscapePlugInStreamLoaderClientEONS_15ResourceRequestEON3WTF17CompletionHandlerIFvONS7_6RefPtrIS0_NS7_13DumbPtrTraitsIS0_EEEEEEE) +STUB("27EhhOjbt+4", _ZNK7WebCore20CachedResourceLoader11isPreloadedERKN3WTF6StringE) +STUB("27GrDZcAVL0", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification16FriendlistUpdateEEC2Ev) +STUB("27KwWvSiUd4", Java_java_awt_GnmImage_nativeGetRGB) +STUB("27Q0QecqZYM", _ZN3sce3pss5orbis5video14VideoPlayerVcs17VideoCoreSetSpeedEi) +STUB("27YDrjX0Rts", mono_aot_Sce_Vsh_Np_Papcmethod_addresses) +STUB("27Z-Cx1jbkU", _ZNSt24_Iostream_error_categoryD1Ev) +STUB( + "27Zn2YFaCbI", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearchC2ERS5_) +STUB("27ZvxOPJzt8", _ZN4Manx11MediaPlayer12supportsTypeEPKcS2_) +STUB("27bAgiJmOh0", pthread_cond_timedwait) +STUB("27muhQADEG0", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112UpdateStatusEEppEi) +STUB( + "27nQtoHvZbY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEEC2Ev) +STUB( + "27pwxbhRx28", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE8capacityEv) +STUB("28-zrObSsN8", _ZN7WebCore20ResourceResponseBaseC2ERKN3WTF3URLERKNS1_6StringExS7_) +STUB( + "280u+DiKYu4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEEaSERKSB_) +STUB( + "281bSEyyhl0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "28AwuQt8sNs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("28Gu3wb-d1o", sceMbusDumpPortHandleInfo) +STUB("28MHn3Mx6wE", _ZNK3JSC13RuntimeMethod6methodEv) +STUB( + "28Q4TeyKC7c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("28QB8kkNorc", _ZN7WebCore9HTMLNames12nomoduleAttrE) +STUB("28QqMnuuJ9Y", sceAudioOut2GetSpeakerArrayAmbisonicsCoefficients) +STUB("28VJv5mU8Mo", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getInteger7Ev) +STUB( + "28WPhuVuctY", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEEiRNS2_10LibContextEPT_m) +STUB( + "28XU165-v4s", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("28XkJS9-BHA", _ZN3sce7Toolkit2NP2V27Ranking17SetGameDataResultC2Ev) +STUB( + "28eYm72DhHk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("28gSNwqQAh4", monoeg_g_ptr_array_set_size) +STUB("28hrVKvp3BA", il2cpp_value_box) +STUB( + "28iF9xg6EFs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEC1EPS8_) +STUB( + "28lkrIQ-ZF4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEixEm) +STUB("28oDQxn7Aw4", _ZN3JSC7Symbols43arrayIteratorFieldIteratedObjectPrivateNameE) +STUB("28r5Y8TMl0Q", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_19ProductInfoDetailedEE17getAdditionalInfoEv) +STUB("28uM7rlJq0g", _ZN7WebCore33testPreloadScannerViewportSupportEPNS_8DocumentE) +STUB("28xmRUFao68", sceNpTrophyUnlockTrophy) +STUB("28y+c5-yi2c", _ZN7WebCore10Pasteboard14readAllStringsERKN3WTF6StringE) +STUB("290AWkA-lck", sceOpusDecDestroy) +STUB("291n9Y114No", _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead11unsetLeaderEv) +STUB( + "292HO0W7gxs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEEcvbEv) +STUB("292zEgzQjLU", rgctx_fetch_trampoline_mrgctx_82_p) +STUB("293qmhFJnV4", mono_aot_Sce_Vsh_VoiceAndAgentunbox_trampoline_addresses) +STUB("29A3BQay0ZI", _ZN3sce7Toolkit2NP2V210Tournament15RegisteredUsers5resetEv) +STUB("29D+EUtAOGI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence8PresenceEE12deepCopyFromERS7_) +STUB("29DLZns5UrA", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEEdeEv) +STUB( + "29F97q4StMc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEE7get_refEv) +STUB( + "29FjieVcegY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEC1EPS8_) +STUB("29I8pJ49Hc0", _ZN7WebCore21UserContentControllerD1Ev) +STUB( + "29IzTO2j9Hs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("29J5paz-NXI", rgctx_fetch_trampoline_rgctx_113) +STUB( + "29SRzXOZTaQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEEaSERKS8_) +STUB("29UIt-CiQoE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEdeEv) +STUB( + "29Yy-AbuN-M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEEdeEv) +STUB( + "29aMn-0etW0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("29ftOGIrUCo", sceNpSetEventFlag) +STUB( + "29gFnS6LaMo", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE5eraseENS2_8IteratorIS6_EERS9_) +STUB("29hgt4+HPYs", sceAudioOut2GetIpcHandle) +STUB("29i3Hdvg9zw", _ZN3JSC18GCActivityCallback13scheduleTimerEN3WTF7SecondsE) +STUB( + "29iCxbDdSz4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEC2Ev) +STUB("29oKvKXzEZo", sceGnmMapComputeQueue) +STUB( + "29w0uhx8iBE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEED2Ev) +STUB( + "29yhFJ-SWcQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB( + "2A+dHO08iuo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "2A032cRLKZk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEC1ERKS7_) +STUB( + "2A1bWwGiH1k", + _ZN3sce2Np9CppWebApi13InGameCatalog2V521ContainerMediaFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_14ContainerMediaEEE) +STUB( + "2A3PZm2w--M", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEplEm) +STUB( + "2A508ZEMWzM", + _ZN3JSC14JSGlobalObject17defineOwnPropertyEPNS_8JSObjectEPS0_NS_12PropertyNameERKNS_18PropertyDescriptorEb) +STUB( + "2A73YeyfogM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEppEi) +STUB("2AA9QT1IUgs", + _ZNK3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayer16getJoinTimestampEv) +STUB( + "2ACjnFd8gxU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEC2EPKS8_) +STUB("2AE+1w-vUeo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEptEv) +STUB( + "2AGlUB7JBmE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEC1Ev) +STUB( + "2ALuiY+-oX4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEC2EPS6_PNS2_10LibContextE) +STUB( + "2ANkpZsxeTo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEEC1Ev) +STUB( + "2AOUf-FsObo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEC2Ev) +STUB( + "2APQr9KERvk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEEptEv) +STUB( + "2AQ7jF5TMMU", + _ZN3sce2Np9CppWebApi14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyD2Ev) +STUB("2AR7FSLePkk", + _ZN23sceMetadataReaderWriter10jpegParser23jpegParserWriteMetadataERKSsRKNS_8MetadataE) +STUB("2AUmACQO05w", _ZNK3sce2Np9CppWebApi6Common8IteratorIdEptEv) +STUB( + "2AV8vGagMXg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("2AbvyU4dqhA", g_JSGlobalObjectPoison) +STUB("2AdktzQ--kA", _ZN7WebCore4Page20setUseDarkAppearanceEb) +STUB( + "2Agu8BJ8heg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEptEv) +STUB( + "2AmEql684WI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEE11get_deleterEv) +STUB("2ApsCsIuALw", _ZN7WebCore17JSDOMGlobalObject21offsetOfWorldIsNormalEv) +STUB("2AqqzZ9fKwY", u_strFromUTF8WithSub) +STUB( + "2AuO93joDe8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEC2Ev) +STUB( + "2AviI2U46+Y", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer17hasacceptLanguageEv) +STUB("2Aw366Jn07s", _LAtan) +STUB("2AyUAX6hJmM", _ZNKSt9basic_iosIcSt11char_traitsIcEE5widenEc) +STUB("2B+V3qCqz4s", _Cnd_init_with_name) +STUB( + "2BCN3Zf18R0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEmmEi) +STUB("2BFkLGmS+Ao", FcPatternGetInteger) +STUB("2BIkSnOhATY", _ZN4Manx21DisplayRefreshMonitorD2Ev) +STUB( + "2BKu7qQECqI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEEC1EPNS2_10LibContextE) +STUB("2BO62eI2Q8g", udat_getBooleanAttribute_67) +STUB( + "2BQ+X8krmck", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEE6assignEPS7_PFvS9_EPNS2_10LibContextE) +STUB("2BS4EtAaF28", sceAgcJumpPatchSetTarget) +STUB( + "2BSVAe7ly40", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEE11get_deleterEv) +STUB("2BTI9QR3Q2c", rgctx_fetch_trampoline_mrgctx_41) +STUB( + "2BWRnERid68", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE10setContextEPNS2_10LibContextE) +STUB("2Bd7UoCRhQ8", SSL_validateCertParam) +STUB( + "2BkeME944pM", + _ZN3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponse9setBlocksERKNS1_6Common6VectorImEE) +STUB( + "2BlJ-QwxMRo", + _ZN7WebCore21NetworkStorageSession29setAgeCapForClientSideCookiesEN3WTF8OptionalINS1_7SecondsEEE) +STUB("2BmJdX269kI", _ZNKSt8numpunctIwE11do_groupingEv) +STUB("2BnPSY1Oxd8", sceNpTusGetMultiSlotVariableAAsync) +STUB("2BoNk3cT5DE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEC2ERS7_) +STUB("2BpxyUGzDdw", + _ZN7CoreIPC13MessageSender11sendMessageEN3WTF10PassOwnPtrINS_14MessageEncoderEEE) +STUB("2BrXbDTPIcE", g_ptr_array_remove) +STUB( + "2BsKczBTCWM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE5abortEv) +STUB("2BtaIvBG7-Y", _ZN3WTF10StringImpl20create8BitIfPossibleEPKDs) +STUB("2Btkg8k24Zg", aligned_alloc) +STUB("2BuJjjg4OyY", _ZN3sce7Toolkit2NP2V28Presence7Request14DeletePresenceC2Ev) +STUB("2ByTJhif5-k", PIo2) +STUB( + "2C1n6j-JXUA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEC2ERKS7_) +STUB("2C6StOEz+nM", sceVideodec2MapMemory) +STUB("2CLKDwJXlSA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEEC1EPS4_PFvS6_EPNS2_10LibContextE) +STUB( + "2CN6+objfjM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEppEv) +STUB( + "2CNsn-9o2LI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE3endEv) +STUB("2COdJHFUeUo", _ZN3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer16unsetCustomData1Ev) +STUB("2CP8bpzVcyk", _ZN3JSC7Symbols26InternalPromisePrivateNameE) +STUB( + "2CWmJOoGoLA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEptEv) +STUB( + "2CXbn5s2F18", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEE5resetEPS6_) +STUB( + "2CYRbACBbZ8", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("2CZKDvi+xV4", JSRemoteInspectorServerStart) +STUB("2Cbacph-jV8", delegate_virtual_invoke_imt_10) +STUB("2CeEvU+2VzY", sceUpsrvUpdateGetEulaDisplay) +STUB("2CfT-vnJtBA", _ZN7WebCore14DocumentLoaderC2ERKNS_15ResourceRequestERKNS_14SubstituteDataE) +STUB("2CfthlaCufA", u_isbase_67) +STUB( + "2Cg4yFbhQVo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "2Ch5cl2wXgQ", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData42setxPsnTcsComparedLastUpdatedUserAccountIdEm) +STUB("2ChSmFDC91I", WKOpenPanelResultListenerChooseFiles) +STUB("2CtlOo7nzno", _ZN3WTF10fastMallocEm) +STUB( + "2Cu34IG0NJI", + _ZN8meta_gen11MsvPromoter29setKeyValue_TBLAVC_IconHeightENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB("2CxY28ewv8g", sceVideoOutConfigureOutputEx) +STUB( + "2D0N953nlVI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEED2Ev) +STUB( + "2D1W3kx06jM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB("2D3H+1nhwqQ", FTA_Support_Format_Pcf) +STUB( + "2D4Cj5Jt054", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE6resizeEj) +STUB( + "2D4pjAjG1dQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE5beginEv) +STUB( + "2D6J7D8+FoE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEmmEi) +STUB("2D9yfogw5bs", _ZN7WebCore11DisplayList8DrawPathC1ERKNS_4PathE) +STUB("2DBODjhqpOI", mono_aot_Sce_Vsh_WebViewDialogunbox_trampolines) +STUB("2DDULE-MYmQ", _ZN7WebCore23CoordinatedBackingStore7setSizeERKNS_9FloatSizeE) +STUB("2DE3xMWxTBI", WKPageCopyProvisionalURL) +STUB("2DGBAtaGQKc", mono_gc_set_heap_size_limit) +STUB( + "2DQtRdbv7vw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEC2EPKS8_) +STUB("2DZKLRza9tQ", sceSdmaCancelQueue) +STUB( + "2DnI4d0GkEU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEED2Ev) +STUB( + "2Do9Rs5D7Hg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE4sizeEv) +STUB("2DxvpT8Kics", __tsan_atomic32_compare_exchange_weak) +STUB( + "2E5iNGAmxps", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE21intrusive_ptr_sub_refEPS9_) +STUB("2E73lXML2Kk", sceAvControlGetCurrentOutputModeWithSync) +STUB("2E7ATnVXdZY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE5clearEv) +STUB("2EBuouuYKgM", sceVideoOutSysDeleteVblankEvent2) +STUB("2EEDQ6uHY2c", _ZTIn) +STUB("2EVqG-ESTSw", _ZN3sce7Toolkit2NP2V212EventsClient17EventShareFactory12MAX_SIZE_TAGE) +STUB("2EVvhVabsJM", _ZN7WebCore8Settings25setMinimumLogicalFontSizeEi) +STUB("2EWfAroUQE4", sceUserServiceSetGlsTtsSpeed) +STUB("2EXbWy6w4Z0", _ZN7WebCore24DocumentParserYieldTokenC2ERNS_8DocumentE) +STUB("2EY+5-CTFXc", _ZN3JSC13JSMapIterator14finishCreationERNS_2VMEPNS_5JSMapENS_13IterationKindE) +STUB("2EeZIfN5hXw", _ZN7WebCore7Element22setTabIndexForBindingsEi) +STUB("2EfjPXVPk3s", sceNetCtlGetEtherLinkMode) +STUB("2EoYjMBr3xs", _ZN15AbstractStorage14TwitterContent5WriteEPKvlPl) +STUB("2ExfKIyEVJo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEED2Ev) +STUB( + "2Eyqw8mTWxs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEneERKS9_) +STUB( + "2F5huG-IXCs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "2FEVGn8ymmk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("2FGj+qnCtQM", _ZN3sce7Toolkit2NP2V210Tournament15RegisteredUsersC1ERKS4_) +STUB("2FHeipL4TDM", _ZN4Manx6System6osNameEv) +STUB( + "2FKKLv6Onu4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEaSERKS9_) +STUB("2FLN6z7Tga0", WKPageLoadPlainTextString) +STUB("2FPKT8OxHxo", CERT_extractAllDistinguishedNames) +STUB("2FPWFw1bJf0", mono_assembly_getrootdir) +STUB( + "2FQes7+e-Fc", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody6toJsonERNS_4Json5ValueEb) +STUB( + "2FRXLPBZL6s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEEC1Ev) +STUB( + "2FYMAt8Db9c", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEplEm) +STUB( + "2FbKe49-cCs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEE5resetEPS9_) +STUB("2FezsYwelgk", _ZTVSt8messagesIwE) +STUB("2Ff0fkg5A2M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEC1ERS8_) +STUB("2FreFa-C3+k", _ZN3sce7Toolkit2NP15AppSTLAllocatorI13SceNpOnlineIdE8allocateEmPKv) +STUB( + "2FsleDITAK4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEaSERKS9_) +STUB("2Fu4CKX9Va4", + _ZN7WebCore16HTMLMediaElement36setOverridePreferredDynamicRangeModeENS_16DynamicRangeModeE) +STUB("2Fzd4IszRAY", WKSecurityOriginCreate) +STUB( + "2G-r0tmRI8M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE10setContextEPNS2_10LibContextE) +STUB("2G1UznxkcgU", _ZGVNSt14_Error_objectsIiE14_System_objectE) +STUB("2G2C0nmd++M", sceCameraStop) +STUB( + "2G5kYPASyW0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEplEm) +STUB("2G6i6hMIUUY", getdents) +STUB("2G7-vVz9SIg", sceRudpGetLocalInfo) +STUB( + "2G9O3pP13Bk", + _ZN15AbstractStorage15FacebookStorage15RemoveRecursiveERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("2GM0mg+8jXc", _ZN3sce7Toolkit2NP2V29Messaging16GameDataMessagesD2Ev) +STUB("2GO7CQvjMo8", _ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequest17unsetInGameRosterEv) +STUB("2GWRrgT8o20", _ZTISt10ctype_base) +STUB("2GbOPwcNJd0", sceNpAsmClientGetNpTitleToken2) +STUB("2Gc+UDHZNrA", JVM_FreeMemory) +STUB( + "2GcAUIXHzME", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsC2EPNS1_6Common10LibContextE) +STUB("2GdBuLgUeSI", _ZN7WebCore22DefaultFilterOperation6createENS_15FilterOperation13OperationTypeE) +STUB("2GevjemzjJ8", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_19ProductInfoDetailedEEneERKS4_) +STUB( + "2Gg9FyFlY6E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEppEv) +STUB("2GpREPwnOW4", _ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamTournamentaSERKS4_) +STUB("2GsWjGLiiF4", JNU_ReleaseStringPlatformChars) +STUB("2H0q+W0RyYk", WKWebsiteDataStoreGetResourceLoadStatisticsEnabled) +STUB("2H1RlsV3ioM", scePerfTracePmStop) +STUB("2H50GzZ63L0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEEC2Ev) +STUB("2H51caHZU0Y", _ZTVN10__cxxabiv129__pointer_to_member_type_infoE) +STUB("2H7XUKtHAdc", _ZN3sce2Np9CppWebApi13InGameCatalog2V520ContainerRatingCount10unsetScoreEv) +STUB("2H8m1wTdRVs", mono_aot_Sce_Vsh_PsnUtiljit_code_start) +STUB("2HC+lay1ILU", sceMoveWriteCalibrationInfo) +STUB("2HED9ow7Zjc", __absvsi2) +STUB( + "2HEk7PGYpPc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEED2Ev) +STUB("2HHbbKYM7DE", WKBundlePageRegisterScrollOperationCompletionCallback) +STUB("2HHfdrT+rnQ", sceSystemServiceActivateHevcIsActivated) +STUB("2HPiq4K59Xc", _ZN7WebCore17CredentialStorage24defaultCredentialStorageEv) +STUB( + "2HQ55UMlE5s", + _ZN7WebCore26MessagePortChannelRegistry25didDisentangleMessagePortERKNS_21MessagePortIdentifierE) +STUB( + "2HRyZzguZzs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB( + "2HSrPeSIBV0", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi22ParameterToCreateMatch10initializeEPNS1_6Common10LibContextENS6_12IntrusivePtrINS3_18CreateMatchRequestEEE) +STUB("2HZf301Pl98", _ZNK15AbstractStorage11LocalFolder7GetStatEPNS_4StatE) +STUB("2HajCEGgG4s", sceNpSignalingGetPeerNetInfoResult) +STUB( + "2HcBsUtk9NY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("2Hd6bj3PQJE", _ZN3sce7Toolkit2NP2V211UserProfile7Request27DisplayGriefReportingDialogD1Ev) +STUB("2HeYOG2bEcU", sceCesUtf32ToBig5) +STUB("2HkOOhiWK3M", _ZN3sce2np8SelectorD0Ev) +STUB( + "2Hl8xOKwJ8s", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE3endEv) +STUB( + "2Hm0e3iXI8M", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("2HnmKiLmV6s", _Atomic_fetch_sub_4) +STUB("2HrAYiI1XS8", _ZN3JSC14JSGlobalObject6createERNS_2VMEPNS_9StructureE) +STUB("2HtDuQ3JUEk", uprv_decContextGetStatus_67) +STUB("2Hw8gjMdwSY", sceAmprMeasureCommandSizeWriteAddressFromCounterPair_04_00) +STUB("2HzgScoQq9o", hypot3) +STUB("2I-9M0V-i8c", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEEixEm) +STUB("2I2RV6LyNng", rtprio_thread) +STUB("2I5eSIxm4Ng", sceKernelGetSubsysSubId) +STUB("2I9n0OzAicc", _ZN7WebCore8SVGNames17linearGradientTagE) +STUB("2IBfZ3RsxdU", mono_aot_Sce_Vsh_SysfileUtilWrapperjit_got) +STUB("2IC-EspCqXs", _ZN7WebCore9JSElement9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "2IDMNR2mr1U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE4sizeEv) +STUB( + "2IDv+5JWdEA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEED1Ev) +STUB("2IJhUyK8moE", sceGnmSqttSelectMode) +STUB("2IKm-BXcq9g", _ZNK9Inspector21InspectorConsoleAgent7enabledEv) +STUB("2IQC9I2rgsE", _ZN3JSC9Structure6s_infoE) +STUB("2IS3HuSY1vw", _ZN3sce7Toolkit2NP15AppSTLAllocatorI13SceNpOnlineIdEC2ERKS4_) +STUB( + "2IX3zXA0UbI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEixEm) +STUB( + "2IXVAFL4HUc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE28getResponseInformationOptionEv) +STUB("2IZgdeRe2xE", _ZTVSt15basic_streambufIcSt11char_traitsIcEE) +STUB( + "2IaCo4tBh7s", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEppEv) +STUB( + "2IeGWneKdJw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEC2Ev) +STUB( + "2IfVifwFvhI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEEC1Ev) +STUB("2Ifv4D0xPmw", _ZN3sce7Toolkit2NP24ChallengeResponseRequestC1Ev) +STUB("2IgS7jiLYUo", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11SessionDataEE19setCustomReturnCodeEi) +STUB( + "2IiBSSdhfQM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE21intrusive_ptr_sub_refEPS9_) +STUB("2IimZDepQAY", _ZN9Inspector8Protocol3CSS11CSSProperty4TextE) +STUB( + "2IpWZOkTMiM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEcvbEv) +STUB("2IpspXy7k1o", il2cpp_class_get_type) +STUB("2Irwf6Oqt4E", SSL_getNextSessionId) +STUB( + "2IyEU5sGEdw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEC1ERS7_) +STUB("2IyVp+WLxIw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEC1ERKS7_) +STUB("2J0HrHaFDGs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEC2Ev) +STUB( + "2JCbDkKG2ek", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEE5resetEPS9_) +STUB( + "2JDZBQ3dTmE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEeqERKS9_) +STUB("2JEJdnVxBRA", _ZN3sce7Toolkit2NP2V27Ranking7Request13GetUsersRanks14MAX_NUM_BOARDSE) +STUB( + "2JERz+LFZF8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEE3getEv) +STUB( + "2JEkKBeGsPM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB( + "2JOuKtPLnc4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEEC2ERKSA_) +STUB( + "2JTdMAk+Upw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEC1EPS8_) +STUB("2JXVTjOe-qM", _ZN7WebCore20HTMLTableCellElement8setScopeERKN3WTF10AtomStringE) +STUB("2JaKgDK0sR8", mono_aot_Sce_Vsh_Np_Snsunbox_trampolines) +STUB("2Jc99Z-8EhQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEE5resetEPS6_) +STUB( + "2JcMFSvH4M4", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V325PsnWebErrorWrapperFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_11PsnWebErrorEEEPNS8_INS3_18PsnWebErrorWrapperEEE) +STUB("2JdCthltjmo", _ZN3sce2Np9CppWebApi7Matches2V17SubtaskD1Ev) +STUB("2Je9kk2kq8g", AnnotatePCQDestroy) +STUB("2JgFB2n9oUM", scePadSetTriggerEffect) +STUB( + "2Jglz+E6IvI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEneERKS9_) +STUB( + "2JhtUaL1Z6M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "2Jm85HW8qAw", + _ZN3sce2Np9CppWebApi14SessionManager2V115SearchCondition12setAttributeERKNS3_15SearchAttributeE) +STUB( + "2JoZT1ZB1RU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEplEm) +STUB("2JpjMR3bG8s", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEptEv) +STUB("2Js-mSdOPU4", mono_metadata_free_marshal_spec) +STUB( + "2Jt1TqV1It4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE21intrusive_ptr_add_refEPS9_) +STUB("2JtEQrjeUR4", sceFiosSetGlobalDefaultOpAttr) +STUB("2JtWUUiYBXs", sceAgcGetRegisterDefaults2) +STUB("2Jx-kzaGeG8", monoeg_g_hash_table_size) +STUB("2K0ArvkVKuI", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container10getVersionEv) +STUB( + "2K0DlpUJHrU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEEC2Ev) +STUB("2K2ZFsGumc8", _ZN3sce2Np9CppWebApi15Personalization2V121GetAccessCodeResponseD1Ev) +STUB("2K6zyWD2WxI", _ZNK3WTF10StringImpl10startsWithEPKS0_) +STUB("2KGXCqApfz4", dlinfo) +STUB("2KK8D03LGg0", _ZN3JSC6JSCell12heapSnapshotEPS0_RNS_19HeapSnapshotBuilderE) +STUB("2KNEDy+8OLg", sceAppInstUtilAppGetAddcontInfo) +STUB("2KNnG2Z9zJA", _ZNSt6_MutexC1Ev) +STUB("2KO6PkC9yb0", res_getResource_67) +STUB( + "2KRAzvu3Nxg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE7reserveEi) +STUB("2KVa2-HqIRs", sceMouseExtensionSetCursor) +STUB("2KW9VnPMWDQ", sceVideoOutSysSetBlackLevel) +STUB("2KXS-HkZT3c", sceFontFtSupportOpenTypeTtf) +STUB( + "2KityIgkzpU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEeqERKS9_) +STUB("2KjWQhJvFxA", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEEmmEi) +STUB( + "2KqNbE73+aI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEED1Ev) +STUB( + "2KvflElTb1o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEE5resetEPS6_) +STUB("2KwpxBxKxu0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEEcvbEv) +STUB( + "2KytzitBu9M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEC1Ev) +STUB("2L-W-ZYn2Qo", sceNpFriendListDialogInitialize) +STUB( + "2L1HUikvsKk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE3endEv) +STUB( + "2L430LIYCJE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE4sizeEv) +STUB("2L86QHJGH30", _ZN3sce7Toolkit2NP2V210Tournament20OneVsOneMatchDetailsD2Ev) +STUB("2L8gDyjvyl8", g_get_charset) +STUB("2L8p9UgRdvo", _ZN9Inspector22InspectorDebuggerAgent8stepIntoERN3WTF6StringE) +STUB( + "2LHOdGX3hPQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEeqERKS9_) +STUB("2LKUTf2HNEk", sceNpUniversalDataSystemIntDeleteUserDataWithServerData) +STUB("2LKVAt2Daw8", _ZN7WebCore12EventHandler12selectCursorERKNS_13HitTestResultEb) +STUB("2LLpgZUyZTw", _ZN3sce7Toolkit2NP2V211UserProfile9NpProfileC2Ev) +STUB("2LUk8Ch0mJY", _ZN3WTF13normalizedNFCERKNS_6StringE) +STUB("2Lb13vobDWc", _ZThn24_N9Inspector22InspectorDebuggerAgent6resumeERN3WTF6StringE) +STUB("2LdCmpD47rs", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeINS1_11TusVariableEPvEE7addressERS6_) +STUB( + "2Ldub2gTzYc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEptEv) +STUB( + "2LfWPsjwYe0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "2LjuMOz0Huw", + _ZN9Inspector20CSSBackendDispatcher17getAllStyleSheetsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "2LlnX9JerXg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEE21intrusive_ptr_add_refEPS7_) +STUB("2LooX97-5b8", _ZNK3sce2Np9CppWebApi7Matches2V120ResponseMatchResults10getVersionEv) +STUB( + "2LqYmCT4sio", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setBoolean3ERKb) +STUB("2LrlpFmBTC8", sceUsbStorageGetdentsOpen) +STUB( + "2LumHO07+lk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEE7add_refEv) +STUB("2Lvc7KWtErs", __kernel_sindf) +STUB( + "2Lw8E7NOr6g", + _ZN7WebCore14DocumentLoader21setCustomHeaderFieldsEON3WTF6VectorINS_15HTTPHeaderFieldELm0ENS1_15CrashOnOverflowELm16EEE) +STUB( + "2Lwj0aDXmWM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "2LwmYA5NX0s", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEC1Ev) +STUB("2M+dFM8Wmq4", __sys_kqueueex) +STUB("2M0ZLmwaVd8", _ZN7WebCore9FetchBody12fromFormDataERNS_22ScriptExecutionContextERNS_8FormDataE) +STUB( + "2M4Rt+itFfY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE5beginEv) +STUB("2M54M-SKV-k", FcConfigGetCurrent) +STUB("2M7akX+bJTw", _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession13setMaxPlayersERKi) +STUB( + "2M8RsUvnwUI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB("2M9VZGYPHLI", __truncdfsf2) +STUB("2MC2ZFRBtKc", _ZN3sce7Toolkit2NP2V28Commerce7Request21DisplayJoinPlusDialogD1Ev) +STUB( + "2MJdZC3reOo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEEC1EPSA_PNS2_10LibContextE) +STUB("2MK5Lr9pgQc", _ZNSt8bad_castD0Ev) +STUB( + "2MOM9Jk6DQ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("2MOy+rUfuhQ", pthread_cond_signal) +STUB( + "2MWbY1q4pJA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEaSERKS9_) +STUB( + "2MZ119cVgK4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "2MbqYnLDaoc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEeqERKS9_) +STUB("2MdHT+n6Jwc", mono_aot_Sce_Vsh_ProfileCachemethod_addresses) +STUB("2MfMa3456FI", _Getcloc) +STUB( + "2Mo5KwOkcSg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEE11get_deleterEv) +STUB("2MsnEddYS5w", _ZN7WebCore9JSElement4infoEv) +STUB("2MwwGOkHrvA", png_set_write_user_transform_fn) +STUB( + "2N1r8wtxBKg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEEC1Ev) +STUB( + "2N4uOVJIAG4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("2N5zUQ4FLoA", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed14PlayedWithFeedEE5resetEv) +STUB("2NCACgNAZmY", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_17TitleCloudStorage2V19ConditionEEmmEv) +STUB("2NCsw+p5fhQ", _ZN12video_parser7cVpUtil22vp_ff4_fseek_by_threadEPvli) +STUB("2NH2humQpog", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEC2Ev) +STUB("2NHlTAhVJQM", _ZN7WebCore14StaticNodeListnwEmPv) +STUB("2NPurLS-IXo", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError9getSourceEv) +STUB("2NPvILZGQM8", _ZN3JSC7Symbols21createHTMLPrivateNameE) +STUB("2NThFFu5XdE", _ZNK7WebCore11MediaSample8hasAlphaEv) +STUB("2NXkxHfxg5Y", _ZN7WebCore20makeRGBA32FromFloatsEffff) +STUB("2NZthKrlG-o", _ZN3JSC7Symbols17assertPrivateNameE) +STUB("2NaZ-stsAv0", utext_close) +STUB( + "2NcJEi8CcCw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEC1Ev) +STUB("2NeDeAGJL2E", _ZNK3sce2Np9CppWebApi7Matches2V118RequestMatchPlayer11getPlayerIdEv) +STUB("2NeZnMEP3-0", sceHttpSetPriorityOption) +STUB( + "2NgtUwi940A", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("2NhkFTRnXHk", scePadReadForTracker) +STUB("2NiN7-BXsDo", JVM_GetClassContext) +STUB("2NkWCegz2to", _ZN3sce2Np9CppWebApi6Common8IteratorINS2_6StringEEaSERKS5_) +STUB("2Nlpj99LvVo", _ZN7WebCore20ScrollingCoordinator13pageDestroyedEv) +STUB("2NrQs5Oc5NU", _ZN3sce3Xml4Attr7setNameEPKNS0_6StringE) +STUB("2NvhgiBTcVE", __ctzsi2) +STUB( + "2O5iso6VJI8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEE7get_refEv) +STUB( + "2OBzQi+EbpE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEaSERKS9_) +STUB("2OD7Oi6auPk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEED2Ev) +STUB("2OE6PRf9V5k", _ZN3sce7Toolkit2NP2V24Core7Request14RemoveCallbackD2Ev) +STUB( + "2OEcZLc27Js", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "2OIDU9l1C+U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEC2Ev) +STUB("2OIhvrfQkl4", _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScoreC2ERS5_) +STUB("2OLmRt6Wlb8", uprv_decNumberToString_67) +STUB("2Of0f+3mhhE", scePthreadMutexDestroy) +STUB( + "2OgoP+aBy+M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEE3getEv) +STUB( + "2OhW155rZTw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEEC2ERSA_) +STUB("2Olt9gqOauQ", _ZNKSt8numpunctIwE13thousands_sepEv) +STUB( + "2OviWdLsOE0", + _ZN3sce2Np9CppWebApi14IdentityMapper2V333PsnWebError_error_missingElements8fromJsonERKNS_4Json5ValueE) +STUB("2OwIlPSvjKw", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V18Variable10valueIsSetEv) +STUB("2P-AwkXelLA", mono_aot_Mono_CSharpunbox_trampoline_addresses) +STUB( + "2P5FhwmVOVM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE10setContextEPNS2_10LibContextE) +STUB( + "2P789Qo27CQ", + _ZN7WebCore26HTMLTextFormControlElement6selectENS_19SelectionRevealModeERKNS_23AXTextStateChangeIntentE) +STUB("2PDufitsff0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEEC1EPS5_PFvS7_EPNS2_10LibContextE) +STUB("2PEtGWY41Tc", mono_aot_Sce_Vsh_MarlinDownloaderWrapperunbox_trampolines_end) +STUB("2PHbXN2bnxk", getpwnam_r) +STUB("2PKMNZuXcPQ", sceFiosFHWritev) +STUB( + "2PNg+ks5Vco", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEC1EPNS2_10LibContextE) +STUB( + "2PNosI8UaaM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEE5resetEPS9_) +STUB("2POQ965uUbU", _ZNK7WebCore37BasicComponentTransferFilterOperation6amountEv) +STUB("2PP8wAfXz-M", _ZN3sce7Toolkit2NP2V26Trophy15TrophyPackGroupD2Ev) +STUB("2PQXEoCzWjg", _ZN3sce7Toolkit2NP2V212NetworkUtils12BandwithInfoD2Ev) +STUB("2PVKr6w9AM4", _ZNK7WebCore10StorageMap8containsERKN3WTF6StringE) +STUB("2PWfzfdBMOo", _ZN3sce7Toolkit2NP2V28Matching5WorldC1Ev) +STUB("2PX8AY1a0Eo", _ZN7WebCore20HTMLFrameElementBase6heightEv) +STUB("2PXViLQGQq0", _ZN7WebCore8SVGNames15repeatCountAttrE) +STUB("2PXZUKjolAA", _ZTIPKf) +STUB("2PYNoOV5tdI", Java_java_lang_StrictMath_sin) +STUB("2PZfeVc3T98", sceMusicFwSetShuffle) +STUB( + "2Pa3P8LcI4c", + _ZN7WebCore13getRawCookiesERKNS_21NetworkStorageSessionERKNS_3URLERKNS_12SameSiteInfoES5_St8optionalImESA_RN3WTF6VectorINS_6CookieELm0ENSB_15CrashOnOverflowELm16EEE) +STUB( + "2PhsdcbkRfo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB("2Pms7iCE-Fo", sceShellCoreUtilSetSplashScreenState) +STUB("2PoQu-K2qXk", _ZNSt7collateIwEC2ERKSt8_Locinfom) +STUB("2PrsbRYyZi4", sceAgcDriverGetSetFlipPacketSizeInDwords) +STUB("2PuCkkEw9eE", glShaderSource) +STUB( + "2PvZlrmbeFQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE7reserveEi) +STUB("2PxU-rB3ixI", _ZNSt8ios_base7failureC1EPKcRKSt10error_code) +STUB("2Q0z6rnBrTE", pthread_attr_setstacksize) +STUB("2Q2jh6Y7wQQ", mono_aot_Sce_Vsh_VideoPlayerjit_code_start) +STUB( + "2Q5RGm4IveI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEC2ERKS7_) +STUB("2Q7j6oWFX2I", _ZN4Manx8X509cinf12serialNumberEPcj) +STUB("2Q8rymUy8to", _ZN3sce2Np9CppWebApi14SessionManager2V112NonPsnLeaderD2Ev) +STUB( + "2QBWM84BqXA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEC1Ev) +STUB("2QBxm43-Rr8", _ZN3WTF10WorkerPoolD1Ev) +STUB( + "2QDwMqileP0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("2QGFkodBuuM", png_get_text) +STUB("2QGQuBYQV98", mono_aot_Sce_Vsh_AppInstUtilWrapperunwind_info) +STUB("2QInXpjrgR0", __tsan_atomic32_store) +STUB("2QJx9Y8S7EI", _ZNK3JSC12JSRopeString11resolveRopeEPNS_14JSGlobalObjectE) +STUB( + "2QNVqV99XM0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("2QQQ8yOcLe4", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product14setDescriptionEPKc) +STUB("2QVQeht26Do", mono_jit_thread_attach) +STUB("2QXf8A0Fsjg", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_removeEventTime) +STUB("2QZ6i6cRmI4", _ZNK7WebCore8Document15visibilityStateEv) +STUB("2QbbMrPN0b8", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17GetGameDataResultEEC1Ev) +STUB("2QeEVi7ZbqI", _ZN3sce7Toolkit2NP29GameCustomDataGameDataRequestC2Ev) +STUB("2QfqfeLblbg", sceFontStyleFrameGetScalePixel) +STUB("2QgUy+xJqS0", sceNpTrophy2GetGameIcon) +STUB("2QhFHIOZPNM", WKPreferencesSetWebAuthenticationLocalAuthenticatorEnabled) +STUB( + "2Ql+uFW4gfM", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC2Ev) +STUB( + "2QopYH-NdUw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEE5resetEPS6_) +STUB("2QtQ+C2PcQI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEppEi) +STUB( + "2QwVrP1I4WQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEptEv) +STUB("2Qzl3gA29ls", _ZN7WebCore14StaticNodeListdaEPv) +STUB("2R+Q+mF1eog", sceIpmiMgrRaiseExceptionToPid) +STUB("2R2j1QezUGM", _ZNSt12bad_weak_ptrD2Ev) +STUB("2R3GP6I8vDI", bemp2sys_pesparser_parse) +STUB( + "2R5g69wxWPE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEcvbEv) +STUB("2R6EUYFiQAM", uregex_groupNumberFromCName_67) +STUB("2R7sNgYqmi0", _ZN7WebCore11DisplayList4ClipD1Ev) +STUB("2R92B2fNXO0", JVM_GetProtectionDomain) +STUB("2RAzAWyh1sM", _ZN7WebCore9HTMLNames4uTagE) +STUB( + "2RBUoFWP56I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("2RBVSWjzL74", sceKernelWriteSdkEventLogV) +STUB( + "2RErB8p4+hw", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getInteger4Ev) +STUB("2RGQGAal6vo", _ZNK7WebCore9FloatSize14diagonalLengthEv) +STUB( + "2RPil4vZUsE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEED1Ev) +STUB( + "2RR92X8DieU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEE11get_deleterEv) +STUB("2RVlVZ1oJAw", _ZN7WebCore8Settings19setShowDebugBordersEb) +STUB("2RVtNYjCrT0", _ZN9Inspector27DOMStorageBackendDispatcherD1Ev) +STUB("2RWIwPniPIU", _ZN12video_parser13cVideoPathMsvD0Ev) +STUB("2RcA0tTsEfI", mono_aot_Mono_Dynamic_Interpretermethod_addresses) +STUB("2RdicdHhtGA", _ZN3sce16CommonDialogUtil12getSelfAppIdEv) +STUB( + "2Rqk9j75MeI", + _ZN3sce2Np9CppWebApi14SessionManager2V129PostPlayerSessionsRequestBodyC1EPNS1_6Common10LibContextE) +STUB("2RykCI-4Kts", sceCesIso2022UcsContextInit) +STUB("2RzxDZcWm7c", mono_assemblies_init) +STUB("2S-hLekYP7g", WKPageHorizontalRubberBandingIsEnabled) +STUB( + "2S2+-uyP55k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE7reserveEi) +STUB("2S9XRK34gCA", _ZN8meta_gen12JpegPromoter13SetFieldValueEiPib) +STUB("2SAIjwQw3V0", _ZN3sce7Toolkit2NP2V210Wordfilter16SanitizedCommentD2Ev) +STUB( + "2SAp5zI3MUo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE8copyFromERKS9_) +STUB("2SIbmtyoC5k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEC1Ev) +STUB("2SKEx6bSq-4", sceKernelBatchMap) +STUB("2SKuIvr9sYU", _ZN3sce2np12StreamReader7ReadAllEPNS0_6HandleEPNS0_9StreamCtxEPvmPm) +STUB("2SMzgmzR-6Q", _ZN9Inspector18InjectedScriptHost6createEv) +STUB("2SSK3UFPqgQ", __floatdisf) +STUB("2SSw6lT8qJo", WKBundleScriptWorldNormalWorld) +STUB( + "2SUeJ9prUSA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEED2Ev) +STUB("2SVtfbYe8Ps", WKUserScriptCopySource) +STUB( + "2SYdpgZoT2g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEC2EPNS2_10LibContextE) +STUB("2SYvas-fF18", _ZN7WebCore30InvertLightnessFilterOperation5blendEPKNS_15FilterOperationEdb) +STUB("2SgvPe2rKlc", _ZN3sce2Np9CppWebApi6Common9RefObject7ReleaseEv) +STUB( + "2SiHIPaxvxw", + _ZN9Inspector28InspectorScriptProfilerAgent17didEvaluateScriptEN3WTF7SecondsEN3JSC15ProfilingReasonE) +STUB("2Skcwb8RW2w", sceApplicationSuspendSystemForDebugger) +STUB( + "2SpMW5aZkCo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE4sizeEv) +STUB( + "2St4bhJvr3M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEEcvbEv) +STUB( + "2StJ8aHcIAw", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V128SetMultiVariablesRequestBody8fromJsonERKNS_4Json5ValueE) +STUB( + "2T+wNpL97hA", + _ZN9Inspector25DebuggerBackendDispatcher15searchInContentElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("2T2gM19fpnk", _ZN4Manx13WorkQueueImplD2Ev) +STUB("2T2lkjZnNAA", + _ZN7WebCore24CoordinatedGraphicsLayer23setContentsClippingRectERKNS_16FloatRoundedRectE) +STUB( + "2T74f+6MC1c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEE5resetEPS9_) +STUB("2T7lbS+CSzA", FT_GlyphLoader_CheckPoints) +STUB("2T8bl3JiAm0", ztrans_getTime_67) +STUB("2TBP8Ovj8SA", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V223FilterProfanityResponse10setMessageEPKc) +STUB( + "2TG4sh9gEvg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("2THa+iADEVI", _ZN3sce7Toolkit2NP2V23TUS12TusVariablesaSERKS4_) +STUB("2TJ5KzC73gY", sceSystemServiceKillLocalProcessForJvm) +STUB("2TKA6PzTsdE", + _ZN3sce2Np9CppWebApi13InGameCatalog2V525ContentInteractiveElement8fromJsonERKNS_4Json5ValueE) +STUB( + "2TS11WjdZy8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("2TTHEYSAN-M", _ZN3WTF7RunLoop7iterateEv) +STUB("2TTNqz3ZiHg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEE7get_refEv) +STUB("2TYdayAO39E", _ZNSt7codecvtIcc9_MbstatetED0Ev) +STUB("2Tb92quprl0", scePthreadCondInit) +STUB("2TgCUOHPmxY", _ZN22MmsMdCommonFsOperationD1Ev) +STUB( + "2TiaM08kFOk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE21intrusive_ptr_sub_refEPS9_) +STUB("2Tn5rXJPYi8", _ZN3sce3pss5orbis5video15VideoPlayerBase16GetLastErrorCodeEv) +STUB("2TpWOT7thyE", _ZN12video_parser13cVideoPathMgv20SetMaclistEKBVersionEi) +STUB( + "2Tu43TOLYQA", + _ZN3sce7Toolkit2NP2V210Tournament18getRegisteredUsersERKNS3_7Request18GetRegisteredUsersEPNS2_4Core8ResponseINS3_15RegisteredUsersEEE) +STUB( + "2TzFsrt-4qU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEED2Ev) +STUB("2U1eDa54b8E", _ZN3sce7Toolkit2NP2V28Matching7Request9LeaveRoomC1Ev) +STUB( + "2U41bV8CfDM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("2U6LEZ5b8z8", _ZN7WebCore14StaticNodeListnaEm) +STUB( + "2U6SO9wffqg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEE3getEv) +STUB( + "2U8P+6Bcrd4", + _ZN7WebCore10FontHandleC1EON3WTF3RefINS_12SharedBufferENS1_13DumbPtrTraitsIS3_EEEENS_4Font6OriginEfbb) +STUB("2U9KB5G-W2w", sceOpusDecDecodeFloat) +STUB( + "2UE5K-18Gyw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("2UF-ArxYv14", ultag_isUnicodeLocaleType_67) +STUB("2UFh+YKfuzk", ctime_s) +STUB("2UIjkO5W7cY", + _ZN3sce7Toolkit2NP4Auth9Interface9getTicketEPNS1_9Utilities6FutureINS1_6TicketEEE) +STUB("2ULUb+GapIM", scePssMouseReadState) +STUB( + "2UWD2AzYUOw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEE5resetEPS9_) +STUB( + "2UWSo6JPcag", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEE3getEv) +STUB("2UZHEdawMIU", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13SessionMemberEEneERKS4_) +STUB("2UZg+FAym4c", FT_Get_CMap_Language_ID) +STUB("2UaDd1XEm4M", _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBodyD1Ev) +STUB("2UcqK8iNJrc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEC2ERS7_) +STUB("2UdvlqIo2+o", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEE7add_refEv) +STUB( + "2Uo6vRB5tiM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE21intrusive_ptr_add_refEPS9_) +STUB("2UpHdcB6ZHI", _ZN7WebCore16BlobRegistryImpl17unregisterBlobURLERKN3WTF3URLE) +STUB( + "2Uq0Rac-XxM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB( + "2UsdJFC2qHo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEED2Ev) +STUB( + "2UzmGxnnNyw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEC1ERKS7_) +STUB( + "2V-RL56o5cU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEptEv) +STUB( + "2V4fGHDeKbk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "2V5cd7SgHZU", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectator55setpostGameSessionsSessionIdMemberSpectatorsRequestBodyENS1_6Common12IntrusivePtrINS3_52PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEE) +STUB("2V6fVvK7DzM", ucurr_isAvailable) +STUB("2V8DFaBEiNs", _ZN7WebCore20ResourceResponseBase6setURLERKN3WTF3URLE) +STUB("2VD2Ej+58XY", _ZN7WebCore18PrewarmInformationnwEmPv) +STUB( + "2VF18OZl8m0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEE11get_deleterEv) +STUB("2VF3mEweOpI", + _ZN3sce2Np9CppWebApi12Leaderboards2V122GetRankingResponseBodyC1EPNS1_6Common10LibContextE) +STUB("2VFQx+Q2dS8", _ZTv0_n40_N12Mp4Retriever8seekFileElb) +STUB( + "2VHDDUOvL68", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("2VLqcPeTce8", + _ZN3sce2Np9CppWebApi7Matches2V120RequestPlayerResultsC1EPNS1_6Common10LibContextE) +STUB("2VMtYW1k054", sceDebugCreateScratchExecutableAreaForPrx) +STUB("2VOB+5XRQic", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18SessionInformationEE7destroyEPS3_) +STUB( + "2VQnL2f4t2w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEEC2ERSA_) +STUB("2VRU7xiqLO8", setcontext) +STUB( + "2VRn5kARGng", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("2VRrmqcEmrA", + _ZN7WebCore20PasteboardCustomData22fromPersistenceDecoderEON3WTF11Persistence7DecoderE) +STUB( + "2VVZYMiNkPw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE17getNpWebApi2ReqIdEv) +STUB( + "2VW9rbi67PA", + _ZN3sce2Np9CppWebApi14IdentityMapper2V342PsnWebError_error_validationConstraintInfoC2EPNS1_6Common10LibContextE) +STUB("2VXjgJz9nqs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEED1Ev) +STUB("2Vd1JIC2cqk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEE7add_refEv) +STUB("2VhQMBrzofA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE5beginEv) +STUB("2Vi3aJUlabI", _ZN7WebCore11MediaPlayer15durationChangedEv) +STUB("2VmnxS1aZG0", sceNpManagerIntGetAuthorizationCodeWithRedirectUri) +STUB("2VzR2bMe3iU", _ZN4IPMI4impl10ServerImplD0Ev) +STUB("2W2HevoNdEc", Java_sun_awt_DownloadedFont_nativeDispose) +STUB("2W2eeUxgC3U", _ZN7WebCore12SharedBufferC2EON3WTF6VectorIcLm0ENS1_15CrashOnOverflowELm16EEE) +STUB("2W53snqCbnA", sceNpUniversalDataSystemIntRecordObjectSetObject) +STUB("2W8raUaXJ8o", _ZThn136_N7WebCore16HTMLMediaElement15enterFullscreenEv) +STUB("2WE3BTYVwKM", cos) +STUB( + "2WGWTBVL+EE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEplEm) +STUB( + "2WHtrN5t-WQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEED1Ev) +STUB("2WIqQWEBRMQ", _ZN13MsvMetaEditor10InitializeEv) +STUB( + "2WKFMUN-f+4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEdeEv) +STUB("2WLueaP8Qyc", ft_validator_init) +STUB("2WOKLblrFs0", rgctx_fetch_trampoline_mrgctx_113) +STUB("2WQSpbbBBUU", isobmf_decoder_next_disk_offset) +STUB( + "2WUkRbpk+Qo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEeqERKS9_) +STUB("2WVBaSdGIds", _ZSt3cin) +STUB("2WhIfrxT4xA", _ZN3sce7Toolkit2NP2V24Core7Request11MemoryPools24WEB_API_MEM_DEFAULT_SIZEE) +STUB( + "2Wiib3MCfHM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEE11get_deleterEv) +STUB("2WkWZ4mf6Lc", _ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead11setTeamNameEPKc) +STUB("2Wl2bokVhiw", _ZN8meta_gen11MsvPromoter23retrieveGenericFileInfoEPKc) +STUB("2WoqIZS4f+8", g_set_prgname) +STUB("2WpUBRnLMNg", _ZN3WTF11Persistence7EncoderlsEs) +STUB("2WqXdvWNwdY", _ZNK7WebCore10ISOFullBox7versionEv) +STUB("2WwJgcSt7Nw", _ZN3sce7Toolkit2NP2V28Matching6WorldsC2ERKS4_) +STUB( + "2Wyw8cJqyuU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEC2Ev) +STUB("2X0ruzkCtrA", sceAvSettingDebugSetHdmiMonitorInfo) +STUB("2X3KbR1J6-c", _ZN3JSC18IncrementalSweeperC2EPNS_4HeapE) +STUB("2X5agFjKxMc", calloc) +STUB( + "2X6zN3rg6Bo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEC2EPS8_) +STUB("2X7awcQsJms", + _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchStatusRequestC1EPNS1_6Common10LibContextE) +STUB( + "2X8g-TBF7PY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEdeEv) +STUB("2X9VrsiM+-Y", _ZN7WebCore7Element9classListEv) +STUB( + "2XAoYNRNbuU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE7reserveEi) +STUB( + "2XBOUlI5bi4", + _ZN3WTF15base64URLDecodeERKNS_6VectorIcLm0ENS_15CrashOnOverflowELm16EEENS_33SignedOrUnsignedCharVectorAdapterE) +STUB("2XCI+mDIrRY", mono_counters_register) +STUB( + "2XD05mDYafQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE7reserveEi) +STUB( + "2XEK2wFxBSg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE21intrusive_ptr_add_refEPS9_) +STUB("2XF0mf-TUuI", ucol_cloneBinary_67) +STUB( + "2XFEL1+RqjM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEC2EPNS2_10LibContextE) +STUB("2XFOG9cQuV4", _ZNK7WebCore16HTMLMediaElement23webkitHasClosedCaptionsEv) +STUB("2XHzo3KHsvw", mono_aot_Sce_Vsh_Np_AuCheckunbox_trampoline_addresses) +STUB("2XLg3fHDKgQ", _ZNK7WebCore9TreeScope14getElementByIdERKN3WTF6StringE) +STUB( + "2XMBuZXX5QI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEEptEv) +STUB( + "2XMF8LvthoI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEeqERKS9_) +STUB("2XNpG4ZDT4s", xmlGetPredefinedEntity) +STUB( + "2XSbgzoPn3c", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("2XXc6yOFres", OCSP_cert_status_str) +STUB( + "2XeDjWX8UnQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "2XkLZhga2L0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEppEv) +STUB( + "2XkvcftV+Mw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEE7get_refEv) +STUB("2XptLFIw+Kk", _ZN3sce7Toolkit2NP2V23TUS15TusDataStatuses5resetEv) +STUB( + "2Xq7Kbp7NJc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEE3getEv) +STUB( + "2Xx4qK9DOEc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("2XyGuIngkyU", _ZN7WebCore15HTMLLinkElement5setAsERKN3WTF12AtomicStringE) +STUB( + "2Y2G857PGog", + _ZN3sce7Toolkit2NP10WordFilter9Interface10filterWordEPKNS1_17FilterWordRequestEPNS1_9Utilities6FutureINS1_19WordFilterSanitizedEEEb) +STUB("2Y45Gy8TaHo", _ZN12video_parser13cVideoMetaVWG15getSeasonNumberEPi) +STUB( + "2Y7m29Gn50U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEE5resetEPS6_) +STUB( + "2Y8RdLpbOPo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEneERKS9_) +STUB("2YCDWkuFEy8", _ZNSt8numpunctIwE5_TidyEv) +STUB( + "2YEv35EmtDE", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEEiRNS2_10LibContextEPT_m) +STUB("2YIQ9Ed6+lU", _ZN3sce7Toolkit2NP15AppSTLAllocatorItE9constructEPtRKt) +STUB("2YLdmthJURg", _ZN15AbstractStorage15FacebookStorageD2Ev) +STUB( + "2YQFPhYgS0I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("2YRqfNusLmQ", uhash_nextElement) +STUB("2YS0DtL8qSc", _ZN7WebCore8Document20identifierForElementERNS_7ElementE) +STUB("2YS0leWna8I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEEC1EPS5_PFvS7_EPNS2_10LibContextE) +STUB("2YSzwYnNE3Q", _ZN3sce2Np9CppWebApi11UserProfile2V15ErrorD1Ev) +STUB("2YXmevi4vQ0", _ZN7WebCore6JSFileC2ERKS0_) +STUB("2YbS+GhInZQ", _ZN3sce2np8WorkItem10SetPendingEv) +STUB("2Yc8JPHyUSY", _ZN7WebCore15SQLiteStatementC1ERNS_14SQLiteDatabaseERKN3WTF6StringE) +STUB("2YcKd7nB+Ag", _ZN3sce7Toolkit2NP2V27Ranking7Request15GetFriendsRanksC1Ev) +STUB( + "2Yf4RtYRhb0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEEC2ERSA_) +STUB("2YfXXadue0s", RemotePlaySetRpMode) +STUB( + "2YhY4DATn2w", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEptEv) +STUB( + "2Yi2gYCnJi0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEeqERKS9_) +STUB("2YiOFz-yZ50", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_25ChallengeBinaryDataResultEE3getEv) +STUB( + "2YoqjM4zljs", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB("2YsHtbvCrgs", sceKernelGetIdTableCurrentCount) +STUB("2YvlXyxJyaE", WKBundlePageSetTextZoomFactor) +STUB("2Z+PpY6CaJg", pthread_mutex_unlock) +STUB("2Z0HaiSlRQY", _ZN3sce7Toolkit2NP2V210Tournament15RegisteredTeams5resetEv) +STUB("2Z5KCpQoPoI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEcvbEv) +STUB( + "2Z6S3wUFfB4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEEptEv) +STUB("2Z89SocEqmo", _ZN7WebCore17JSDOMGlobalObject17addBuiltinGlobalsERN3JSC2VME) +STUB("2ZA13DYhKPQ", _ZNK7WebCore10ScrollView18contentsToRootViewERKNS_7IntRectE) +STUB( + "2ZByAczqzNU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEE21intrusive_ptr_add_refEPS7_) +STUB( + "2ZHJxBomsU8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE6resizeEj) +STUB("2ZM8aofdWh8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEE3getEv) +STUB("2ZMNABg88EE", _ZN3NTF3URLC2EPKc) +STUB("2ZPUtL9C2No", JNI_GetCreatedJavaVMs) +STUB( + "2ZTdaVcUZD4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEE3getEv) +STUB("2ZaHWy3IhKQ", sceFiosExistsSync) +STUB("2Zal1BzP1xU", _ZTVN15AbstractStorage18DailymotionStorageE) +STUB( + "2ZkjWav84Zs", + _ZN7WebCore21PageOverlayController43copyAccessibilityAttributeBoolValueForPointEN3WTF6StringENS_10FloatPointERb) +STUB("2ZnBc9ZCIqw", _ZN7WebCore28InspectorFrontendClientLocalD0Ev) +STUB( + "2Zq-k1b8Dkw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE8pushBackERKS6_) +STUB("2ZqL1jnL8so", _ZTSSt8numpunctIcE) +STUB( + "2ZqkOTUMIYM", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemProperties12setaccountIdEPKc) +STUB("2Zr3I-G3Xmc", _ZN7WebCore8Document34webkitDidEnterFullScreenForElementEPNS_7ElementE) +STUB( + "2ZsvMw6LXxE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEC1EPS8_) +STUB("2ZuK9C9AJjE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEmmEv) +STUB( + "2Zytx22Mu6U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEC1EPS8_) +STUB( + "2a7UIblEuKo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE3endEv) +STUB("2aFFTXLXkGY", _ZNK23sceMetadataReaderWriter8Metadata14checkReadFieldEiRS0_S1_Pb) +STUB("2aIQRjhKAzo", WKBundleClearApplicationCache) +STUB( + "2aLNm-e4dY4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("2aMiAKRnwgk", _ZN3WTF30userPreferredLanguagesOverrideEv) +STUB("2aReQ71pNkM", rgctx_fetch_trampoline_rgctx_89_p) +STUB( + "2aRs2ldyWrs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEneERKS9_) +STUB("2aSYNP1UUMs", delegate_virtual_invoke_imt_23_p) +STUB("2aSk2ruCP0E", _ZNSt8_LocinfoC1ERKSs) +STUB("2aa1x2FcJT0", _ZN7WebCore4Page30applicationWillEnterForegroundEv) +STUB("2agRS2DDOGI", _ZN7WebCore8SVGNames17baseFrequencyAttrE) +STUB("2aizWWQBSoY", sceNpGriefReportWriteTemporaryFile) +STUB("2apC3qcQPvQ", WKContextConfigurationSetOverrideLanguages) +STUB("2atcqaHtnO0", WKBundleNodeHandleGetHTMLInputElementAutoFilled) +STUB("2awTIdIwODI", _ZNK3WTF3URL11isLocalFileEv) +STUB("2azQPZOWx6U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEC2EPS8_) +STUB("2b-a4e6ND74", mono_aot_Sce_Vsh_GriefReportStoragejit_code_end) +STUB("2b-b5AouLv4", sceShellCoreUtilIsAccessibilityZoomLocked) +STUB("2b3TI0mDYiI", sceNpScoreCensorComment) +STUB("2b6EWaCIKeM", _ZN3sce7Toolkit2NP2V27Session7Session16SESSION_NAME_LENE) +STUB( + "2bAMWBUewu0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE5emptyEv) +STUB("2bASh0rEeXI", _ZSt4wcin) +STUB("2bBQThoLcBU", _ZN7WebCore8Gradient12addColorStopERKNS0_9ColorStopE) +STUB("2bJPZE8nnCI", + _ZThn16_N9Inspector21InspectorRuntimeAgent26disableControlFlowProfilerERN3WTF6StringE) +STUB( + "2bL3zuJhQck", + _ZN3sce7Toolkit2NP2V28Matching8joinRoomERKNS3_7Request8JoinRoomEPNS2_4Core8ResponseINS3_4RoomEEE) +STUB("2bOKQcArI2k", + _ZN7WebCore9FrameView29setVisualViewportOverrideRectEN3WTF8OptionalINS_10LayoutRectEEE) +STUB( + "2bUUbbcqHUo", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERj) +STUB( + "2bVhpCEpdGA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEEC2ERKSA_) +STUB( + "2bWLlcCkzTI", + _ZN3sce2Np9CppWebApi14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBody8fromJsonERKNS_4Json5ValueE) +STUB("2bbBBOkH4CY", sceAudioOut2MasteringTerm) +STUB("2bcmReUqDO4", ubidi_countRuns_67) +STUB("2bdiy8B-X2A", _ZN7WebCore4Page26startMonitoringWheelEventsEb) +STUB("2beu2bHw6qo", _ZN3sce2np5MutexC2Ev) +STUB( + "2bfL3yIBi5k", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERm) +STUB("2bnlV6FiqG0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE7popBackEv) +STUB("2boNt6Y0Eqs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEEaSERS9_) +STUB( + "2bq1UibUJA8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "2bqO0o1F4F4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEmmEi) +STUB( + "2c+xDQy1u7E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE3endEv) +STUB("2c4XKRPLkbE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEED1Ev) +STUB( + "2c7y91JantU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEC2EPKS8_) +STUB("2cAlfhQsYIA", + _ZN3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayer16unsetCustomData1Ev) +STUB("2cCuivTnfHI", _ZN3WTF11Persistence7EncoderlsEh) +STUB("2cDuA1XOmPI", mono_class_data_size) +STUB("2cFJrJ+hxUQ", sceCesSJisToUtf16le) +STUB("2cJVU9KC3zY", sceAvSettingNotifyVideoOutMode) +STUB( + "2cZoACjewGw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC1Ev) +STUB( + "2cbDyCVj69Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEED2Ev) +STUB("2cbKu53mAVw", _ZN7WebCore7Element34invalidateStyleAndLayerCompositionEv) +STUB( + "2cbgl1JsAwI", + _ZNK3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfiles16getincludeFieldsEv) +STUB("2ccJz9LQI+w", sceAgcDcbDmaDataGetSize) +STUB("2cfdqkF20ZI", sceVencQueryHeader) +STUB( + "2cjMOMYVRgk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEC2EPNS2_10LibContextE) +STUB("2ckTPPrHDzM", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V13MmrC1EPNS1_6Common10LibContextE) +STUB( + "2cqeVCMPfdg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "2cu+yRxU2ns", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEED2Ev) +STUB("2cvFu-4Zmvc", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error23getValidationConstraintEv) +STUB( + "2cyugI9cdfk", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser9setfieldsENS1_6Common12IntrusivePtrINS6_6VectorINS6_6StringEEEEE) +STUB( + "2d1toxs5fZE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEptEv) +STUB( + "2d4md5rdtQc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEED1Ev) +STUB("2d5UH9BnfVY", _Tls_setup__Wcstate) +STUB("2dA75YfXNrQ", sceOpusDecInitialize) +STUB("2dALFCAUHgY", __asan_exp_load1_noabort) +STUB("2dAzrh4J0WY", _ZNK3sce2np10JsonString5CloneEP16SceNpAllocatorEx) +STUB("2dB427dT3Iw", sceNpTusAddAndGetVariableAAsync) +STUB("2dBOiluwiMw", sceCameraGetConnectedDeviceAndDriverMode) +STUB("2dEhvvjlq30", pthread_setcanceltype) +STUB("2dF0hfMr7Xo", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE5beginEv) +STUB( + "2dRYo2XXSog", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB( + "2dTFoDVLrF8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEmmEv) +STUB("2dXihgWrxE4", _ZN7WebCore15defaultMIMETypeEv) +STUB("2dbm0DhmsPc", _ZN7WebCore24PointerCaptureController29touchWithIdentifierWasRemovedEi) +STUB( + "2dcZw43h6rU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEixEm) +STUB( + "2ddCLhg3xHg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEC2Ev) +STUB( + "2diu95llyV8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEE7add_refEv) +STUB("2djeYNpoVfk", _ZN3sce7Toolkit2NP2V28Commerce7ProductD2Ev) +STUB("2dlaytfYE60", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEED2Ev) +STUB("2dnEXzbgPgk", _ZN7WebCore9HTMLNames12ononlineAttrE) +STUB("2dnaEy8W7Q0", _ZN7WebCore4Path16addBezierCurveToERKNS_10FloatPointES3_S3_) +STUB("2dpKjFdVxqU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEC2Ev) +STUB( + "2dqfGe+njLA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE5emptyEv) +STUB( + "2dxnF4lse-0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEEdeEv) +STUB( + "2e3huPymRnY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEC1ERKS7_) +STUB("2e7Y020-QlQ", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEE5resetEPS5_) +STUB("2e82MxFnonI", + _ZN3sce2Np9CppWebApi14SessionManager2V112JoinableUserC2EPNS1_6Common10LibContextE) +STUB("2e96MkSXo3U", _ZTISt10moneypunctIcLb0EE) +STUB("2e9GLlHTKA4", _ZN3sce2np9HttpTrans7DestroyEv) +STUB( + "2e9hkpxh3N8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "2eA-RmCqdek", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEC1ERKS7_) +STUB("2eDcGHC0YaM", sceZlibGetResult) +STUB("2eDtakd-FK0", delegate_virtual_invoke_4) +STUB("2eDxu+ARl1M", monoeg_g_strchug) +STUB("2eHZuGzujZI", scePsmKitFontConfigGetFont) +STUB( + "2eJP3ByArdg", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_33ActivityFeedSharedScreenshotStoryEE9constructEPS3_RKS3_) +STUB("2eKbgcboJso", sceNetSendmsg) +STUB("2eLBy9mcYx4", _ZN3sce3pss5orbis9framework18PsmFrameworkCsharp21SetEnableNativeMethodEb) +STUB("2eQ9LLJMx5Q", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth8AuthCodeEEC1Ev) +STUB("2eQpqTjJ5Y4", asinh) +STUB("2eTBt85Cq0I", p5_128) +STUB( + "2eTOGTlEZJg", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeAccountId2OnlineIdBatchaSERS5_) +STUB( + "2eYelZ3cefs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEEC2ERSA_) +STUB( + "2eaFa3aMWYs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEC2Ev) +STUB("2edrkr0c-wg", sceNpWebApiUnregisterServicePushEventCallback) +STUB("2ee14ktE1lw", sceNetFreeAllRouteInfo) +STUB("2ee4Rl9d1qQ", monoeg_g_strconcat) +STUB("2eggS6YiNew", _ZN3NTF21ResourceRequestLogger5flushEv) +STUB( + "2eiJIWZEbtc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEC2Ev) +STUB("2ekuHm8gYhc", _ZN7WebCore27ScrollingStateScrollingNode17setScrollPositionERKNS_10FloatPointE) +STUB("2el-7lc32dE", _ZN7WebCore5Range23commonAncestorContainerEPNS_4NodeES2_) +STUB("2emCE6-7fOA", sceAppInstUtilAppGetNoRelatedAddcontTitleList) +STUB("2emaaluWzUw", __cxa_guard_abort) +STUB("2emcIQV3dOc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE5beginEv) +STUB( + "2eoKrZYhFTw", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("2eq1bMwgZYo", sceNpTusAbortRequest) +STUB("2et7hDo2b5w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEEC1Ev) +STUB("2ezc3rKyIqM", sceDebugProcessSpawn) +STUB("2f+7BbGb6Yc", AnnotateCondVarSignal) +STUB("2f4X7OpBu5c", _ZN7WebCorelsERN3WTF10TextStreamERKNS_7IntRectE) +STUB("2fCvoTO7EUU", sceVencCoreSetInputFrame) +STUB( + "2fEAIhLKGqo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "2fKToeefbQM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEE11get_deleterEv) +STUB("2fL2d6BRTa4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEaSERS7_) +STUB("2fM8-SUQfGo", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_15ActivityStoryIdEE17getAdditionalInfoEv) +STUB( + "2fRER8uB8sk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB( + "2fT8jCvGRhQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEdeEv) +STUB("2fe0xrpkq0s", _ZN3sce2Np9CppWebApi14SessionManager2V16FriendD2Ev) +STUB( + "2fsIgTIqPDU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("2ftIdEP8NFI", _ZN7WebCore11JSDOMWindow6s_infoE) +STUB( + "2fuuPZnHTm4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEC2Ev) +STUB( + "2fxdcyt5tGs", + _ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_bRSt8ios_baseRNSt5_IosbIiE8_IostateERSs) +STUB("2fy7aV58GZM", rgctx_fetch_trampoline_rgctx_74_p) +STUB("2fz0QiXSbwQ", + _ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE5_InitERKSt8_Locinfo) +STUB("2g2I24bMKlA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEED2Ev) +STUB( + "2g3v15VsDjU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEeqERKS9_) +STUB("2g5wco7AAHg", seed48) +STUB( + "2g9eYmi3M5w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEEC2ERKSA_) +STUB( + "2gBO0VyPbMM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEC2Ev) +STUB( + "2gBR1spOXTY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "2gF6++dzV1Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEE5resetEPS9_) +STUB( + "2gI9Vk3L0OI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEE3getEv) +STUB("2gIDmLL6afE", _ZN7bmalloc29StaticPerProcessStorageTraitsINS_11EnvironmentEE7Storage8s_memoryE) +STUB("2gIyJ4Cd5O8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V114SearchOperatorEEptEv) +STUB( + "2gJUUtEZxp8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE8capacityEv) +STUB("2gLa4w1nQqM", _ZN7WebCore4Page14setMediaVolumeEf) +STUB("2gLmRbOOBKE", _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse17setExpirationTimeERKi) +STUB( + "2gLwN7YftPc", + _ZN3sce2Np9CppWebApi7Matches2V127ReportResultsRequestFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_20ReportResultsRequestEEE) +STUB("2gMXO8S2qik", sceDepth2WaitAndExecutePostProcess) +STUB("2gMbh2bXhsU", JVM_GetCPMethodNameUTF) +STUB("2gPLknvqjzk", _ZN7WebCore36ContentSecurityPolicyResponseHeadersC2ERKNS_16ResourceResponseE) +STUB( + "2gTQ81js94I", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEEdeEv) +STUB( + "2gTmf+Js8N0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEC1Ev) +STUB( + "2gUzVB+RKNA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEC1EPKS8_) +STUB( + "2gX1sasbRnA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE8capacityEv) +STUB("2ga4PiukfYc", ucptrie_openFromBinary) +STUB("2gbcltk3swE", div) +STUB( + "2gdex5IU2Yg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEE11get_deleterEv) +STUB( + "2geHZOyqKDs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEC2ERKS7_) +STUB( + "2gl07ex73Ts", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEE3getEv) +STUB( + "2gmEjnOIlBc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC2ERSA_) +STUB( + "2gmcTmOsyyw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEE7add_refEv) +STUB( + "2gpBSk+bcWY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE3endEv) +STUB( + "2gtzJh4Ho+w", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEeqERKS9_) +STUB( + "2guwI8tNbB4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEC2EPS6_PNS2_10LibContextE) +STUB( + "2gwYP0xJ8n4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "2gzE4xm4h80", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEppEv) +STUB("2h037DNaRPU", scePerfPmcUmcStart) +STUB("2h3jY75zMkI", _LInf) +STUB("2h59YqPcrdM", _ZN3sce2np3ipc10IpmiClient4dtorEv) +STUB("2hBPnkneKNc", delegate_invoke_impl_target_1_p) +STUB("2hEtqkwpxGA", mono_aot_I18N_MidEastjit_got) +STUB( + "2hEyEaCxl8A", + _ZNK7WebCore9FrameView35convertFromContainingViewToRendererEPKNS_13RenderElementERKNS_8IntPointE) +STUB("2hFRBH1Db60", rgctx_fetch_trampoline_rgctx_31_p) +STUB( + "2hG+qSBb-AU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "2hGshlwat0w", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEixEm) +STUB("2hH4qcvCBZw", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEEcvbEv) +STUB("2hI-ePxzkcc", + _ZNK3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession16sessionNameIsSetEv) +STUB( + "2hMkeOYR54o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEppEv) +STUB("2hQ6eG0i3rw", uprv_mul32_overflow_67) +STUB("2hRhoMRXm6s", EVP_SignFinal) +STUB( + "2hUdFYLiFgc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEED1Ev) +STUB("2hWZJ75A4Vs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEE7add_refEv) +STUB( + "2haHKp3UR7o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEED1Ev) +STUB("2haZWaB3Gcs", WKRunLoopCallOnMainThread) +STUB("2heDFOb3rWM", mono_aot_Sce_Vsh_Np_Papcunbox_trampolines) +STUB("2hg9YVGV13I", mono_gc_register_bridge_callbacks) +STUB("2hiV0v27kcY", _ZNK3sce2np4User12HasAccountIdEPb) +STUB("2hj9h9zcj9U", fuse_opt_parse) +STUB("2hlBNB96saE", sceNpWebApi2IntPushEventCreateCtxIndFilter) +STUB("2ho2X0o+LGc", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth7IdTokenEEC1Ev) +STUB( + "2hoURhW4Ac0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEneERKS9_) +STUB( + "2hoav7M2FjY", + _ZN7WebCore50rangeExpandedByCharactersInDirectionAtWordBoundaryERKNS_15VisiblePositionEiNS_18SelectionDirectionE) +STUB( + "2hw4wvM8Dj4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEptEv) +STUB("2hxunnGMnBU", _ZNK7WebCore31BasicColorMatrixFilterOperation6amountEv) +STUB("2i0OGsRbIUA", sceDtcpIpTerm) +STUB( + "2i3Zz-KTFB4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEppEi) +STUB( + "2i3a0Rbkea0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEEC1ERS9_) +STUB("2i4ImodDhAk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEdeEv) +STUB("2i6PbN7F88k", _ZN7WebCore25DropShadowFilterOperationD1Ev) +STUB("2i6dhi0NrH8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEcvbEv) +STUB( + "2i9l0vwp4cw", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_13WhoLikedStoryENS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv) +STUB("2iCC9R7Ldhs", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18GameCustomDataItemEEC2ERKS4_) +STUB("2iNYrcGDF6g", _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead11leaderIsSetEv) +STUB("2iORhW4G1F4", _ZN7WebCore16MIMETypeRegistry21extensionsForMIMETypeERKN3WTF6StringE) +STUB("2iP1vI69aLE", sceAudioOutSetCaesarVolume) +STUB( + "2iVJNG5EYpg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE3endEv) +STUB( + "2iVejtkr4Ig", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEEC2ERKSC_) +STUB("2iW5Fv+kFxs", _ZNKSt13runtime_error4whatEv) +STUB("2iWdgD4VXNY", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEEixEm) +STUB( + "2icyyJTlYVA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEC1ERKS7_) +STUB( + "2iecF1JBOL4", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsers12getsessionIdEv) +STUB( + "2ikmh6yBG8Y", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody17getNpServiceLabelEv) +STUB( + "2imQabX4fvc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE21intrusive_ptr_sub_refEPS9_) +STUB("2imeFp+OvX0", + _ZN3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate21unsetPlayerAttributesEv) +STUB("2ioZrakRg1M", _ZN3sce2Np9CppWebApi15Personalization2V15Error9unsetCodeEv) +STUB( + "2ip4ICzTFdA", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V19RatingApi21ParameterToPostRating9setratingENS1_6Common12IntrusivePtrINS3_6RatingEEE) +STUB( + "2itmaweLQiI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEppEi) +STUB( + "2iyIaOv5iL4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "2j2193-W1w4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEEC1ERKSA_) +STUB( + "2j2NXUkwAbM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEE3getEv) +STUB( + "2j68jdfHGa0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEEC1ERSA_) +STUB("2j9L1LpDLO8", mono_aot_Sce_PlayStation_Coremethod_addresses) +STUB("2jC+gGu1ep4", _ZN3JSC7Symbols28MAX_STRING_LENGTHPrivateNameE) +STUB( + "2jFjNflzwfo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "2jGlWG1tCUs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEEC1Ev) +STUB("2jKVW2uBSw8", glRenderbufferStorage) +STUB( + "2jL6dWWYrls", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("2jNUxUS4NaI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS19FriendsDataStatusesEE3setEv) +STUB("2jSZpJ3bvjY", _ZN7WebCore8SVGNames14altGlyphDefTagE) +STUB("2jVww3UpJww", g_string_new) +STUB( + "2jYf4ZHDWV4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEE3getEv) +STUB("2jZKDUeH8kQ", JVM_GetCPMethodClassNameUTF) +STUB("2jbA+-Cyl-w", _ZN7WebCore16JSStringCallbackD2Ev) +STUB("2jdHoPpS+W0", sceNpHeapGetStat) +STUB( + "2jdQQaVWuAw", + _ZN7WebCore17FrameLoaderClient31dispatchDidReachLayoutMilestoneEN3WTF9OptionSetINS_15LayoutMilestoneEEE) +STUB( + "2jeTPjPRQKQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEC2EPS8_) +STUB("2jgqoWLtP4o", _ZNK15AbstractStorage13YoutubeFolder13GetCapabilityEv) +STUB( + "2jhkCdkszRw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEmmEi) +STUB("2jiIxUmcsGo", sceTextToSpeech2Cancel) +STUB( + "2jkHipj3M94", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEE7add_refEv) +STUB("2jmkoDEonc8", _ZTVN15AbstractStorage13YoutubeFolderE) +STUB( + "2joaSU3fMTI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE7popBackEv) +STUB( + "2jpj0Zl15ns", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEE11get_deleterEv) +STUB( + "2js6uy1pKCw", + _ZN3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsTouchResponseBody18setTouchedDateTimeERK10SceRtcTick) +STUB("2jwy6+fFilk", WKContextDisableProcessTermination) +STUB( + "2jyn3jkqAeE", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionProperties37unsetxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB("2k0lZXN7wYo", _ZN7WebCore18JSHTMLInputElement15subspaceForImplERN3JSC2VME) +STUB("2k3RoQK8h0c", SSL_set_verify) +STUB("2k5ECGBBVc4", _ZNK7WebCore6Widget23convertToContainingViewERKNS_9FloatRectE) +STUB("2k6m8dF7sPc", SSL_CTX_get_ex_new_index) +STUB("2kA+qcVxCoA", mono_aot_platformunbox_trampolines_end) +STUB("2kDZb3V0F5g", _ZN3WTF14derefIfNotNullI14_cairo_surfaceEEvPT_) +STUB("2kEnDKM11uI", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V113AttributeTypeEEmmEi) +STUB( + "2kGYq3J+AGA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEED1Ev) +STUB("2kLRaGG0wZY", _ZN7WebCore9FontCache29purgeInactiveFontDataIfNeededEv) +STUB("2kMKY0zbK9s", _ZN3sce7Toolkit2NP2V212EventsClient11EventInGameC1ERKS4_) +STUB( + "2kMzV2-4RCU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEC1ERKS7_) +STUB( + "2kN4k0fxVrI", + _ZN7WebCore16ScriptController37executeScriptInWorldIgnoringExceptionERNS_15DOMWrapperWorldERKN3WTF6StringEb) +STUB("2kRjkNvugE4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEC1Ev) +STUB("2kSkeD5vqKM", _ZN9Inspector25ConsoleFrontendDispatcher12heapSnapshotEdRKN3WTF6StringEPS3_) +STUB("2ke9oybYy5k", mono_btls_x509_chain_get_cert) +STUB( + "2kf-2GGFoas", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_11DOMDebugger17DOMBreakpointTypeEEESt8optionalIT_ERKN3WTF6StringE) +STUB("2kjkLyaBVWo", JSMemoryStatsQuerySCE) +STUB( + "2klgSTjtiJo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEeqERKS9_) +STUB("2kmp5e-GeGw", _ZN3sce2Np9CppWebApi11Matchmaking2V19Attribute8setValueEPKc) +STUB("2koSOEa2Xss", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEdeEv) +STUB( + "2l+KNmBpGho", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB( + "2l+wZrnrEXg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEmmEi) +STUB( + "2l3kgkO89Qc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEEC1ERSA_) +STUB( + "2l5pMfiQg10", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEEdeEv) +STUB("2l83ikAF9V0", _ZN15AbstractStorage14StorageManager10m_instanceE) +STUB("2lAdEJ5I86E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEixEm) +STUB( + "2lCII4hiNEk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEC1EPS8_) +STUB( + "2lCrw1znjzc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEEcvbEv) +STUB( + "2lH7Y+gy-uQ", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_19UpStreamTransactionIT_T0_EE) +STUB("2lI1xw8MWoE", _ZN3WTF10URLHelpers14userVisibleURLERKNS_7CStringE) +STUB("2lOJJzw1t5o", sceVoiceQoSEnableChat) +STUB("2lRXRLy4Pfc", WKContextCreateWithInjectedBundlePath) +STUB("2lSRg9FfIOY", ft_highpow2) +STUB( + "2lTYsL-uDn4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE7reserveEi) +STUB( + "2lUXVToprFw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEED2Ev) +STUB( + "2lW+4bvzyRM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("2lWQC5EWuzU", + _ZN3sce2Np9CppWebApi7Matches2V123RequestTeamMemberResultC2EPNS1_6Common10LibContextE) +STUB("2lY3qEGYy-M", __asan_report_load16_noabort) +STUB( + "2lYN0wYWRwA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEC1EPNS2_10LibContextE) +STUB("2lZkpHy+fpk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEaSERKS7_) +STUB("2lbt196v3R8", WKPreferencesSetStorageAccessPromptsEnabled) +STUB("2lgqM74hGv4", _ZN3WTF8WallTime3nowEv) +STUB("2liALUtWexk", WKDatabaseManagerGetTypeID) +STUB("2ljzHKoKet8", _ZN9Inspector22PageFrontendDispatchernwEm) +STUB( + "2lm1ZAdo4Jk", + _ZN3sce2Np9CppWebApi14SessionManager2V129GetPlayerSessionsResponseBody8fromJsonERKNS_4Json5ValueE) +STUB( + "2lmkJRIe6pQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE3endEv) +STUB("2lvOARTF5x0", _ZNK3sce2np13NpAccessToken7IsEmptyEv) +STUB("2lwxXokj4Fg", uprv_decNumberReduce_67) +STUB( + "2ly0guhcyCM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEEC2ERSA_) +STUB("2lzWy2xmnhY", _ZN3sce2np13NpAccessTokenC2Ev) +STUB("2m+8v0JXrxY", JVM_GetThreadStateNames) +STUB("2m077aeC+PA", sceSigninDialogGetStatus) +STUB("2m3K29qJSuM", _ZN7WebCore11MediaPlayer27videoPlaybackQualityMetricsEv) +STUB("2m41tMRyPpc", glIsSync) +STUB("2m4vg20UoXI", T_CString_int64ToString) +STUB("2m8-COJnKdo", Java_java_util_zip_Inflater_initIDs) +STUB("2m9+Opco-hk", sceFiosFHPreadSync) +STUB("2mF-4BcXaTA", _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V16RatingD2Ev) +STUB("2mH42a-kAiQ", sceKernelSetSafemodeDirect) +STUB("2mKX2Spso7I", sceNetSetsockopt) +STUB("2mN+0oNQLFU", _ZNK3WTF10StringImpl12hashSlowCaseEv) +STUB("2mN3EQxIpGg", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEEcvbEv) +STUB( + "2mNHoWDJfL8", + _ZN3sce2Np9CppWebApi14IdentityMapper2V340PsnWebError_error_missingElementsFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_33PsnWebError_error_missingElementsEEE) +STUB("2mQGp1B16Uc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEE3getEv) +STUB( + "2mVf+9X+wto", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("2mXGiQ+NjhA", _ZNK3WTF7SecondsplENS_8WallTimeE) +STUB("2mXglONte2c", mono_aot_SMDiagnosticsplt) +STUB("2mb4g7cTmcM", _ZN7WebCore16convertToIntegerIsEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB( + "2mb8FYgER+E", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERf) +STUB("2mbVAtshWRI", _ZN3sce4Json5Array5eraseERKNS1_8iteratorE) +STUB("2mcSJjH5VLc", sceSpNetResolverDestroy) +STUB( + "2mclEqDAKVg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEppEv) +STUB( + "2mezmAkZ7O4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEEC2Ev) +STUB("2mgxaDcw3WM", _ZN3sce2Np9CppWebApi12Leaderboards2V15Entry11setOnlineIdERK13SceNpOnlineId) +STUB( + "2mjk15s2JDg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEEC1ERSA_) +STUB("2mkA5bryKXk", _ZN3sce7Toolkit2NP9Utilities6FutureI18SceNpTssDataStatusE3getEv) +STUB("2mkHo219gQY", twop84_plus_twop52) +STUB("2mrZg8eUudc", searchCommInfoListByKeyWithActivate) +STUB("2mrb4euDuGY", _ZNK3sce2np12HttpTemplate6IsInitEv) +STUB( + "2mrmvVrTd-w", + _ZN7WebCore15JSDOMWindowBaseC2ERN3JSC2VMEPNS1_9StructureEON3WTF6RefPtrINS_9DOMWindowENS6_13DumbPtrTraitsIS8_EEEEPNS_13JSWindowProxyE) +STUB("2mutOzj6Bi4", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_21GameCustomDataMessageEE17getAdditionalInfoEv) +STUB("2n+fxNdSZfs", _ZN3sce4Json19InternalInitializerC2Ev) +STUB("2n+gsAD8UIc", _ZN3WTF13StringBuilder11shrinkToFitEv) +STUB( + "2n1n06n4oWo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEptEv) +STUB("2n2Y65Orzhs", _ZN23sceMetadataReaderWriter8MetadataD0Ev) +STUB( + "2n4tma3Yjvw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEC2EPNS2_10LibContextE) +STUB( + "2n4xH84DzJE", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi28ParameterToDeleteGameSession13isInitializedEv) +STUB( + "2n6dTBXLLyk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE8pushBackERKS8_) +STUB("2nBj4Qmtkv4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEptEv) +STUB( + "2nCLzCajiGw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEaSERS8_) +STUB("2nEVmFiV6OI", sceNpLookupNetNpId) +STUB( + "2nFx9h9l3NM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEC1Ev) +STUB( + "2nHZHJLjI-A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEED2Ev) +STUB( + "2nIY7PE4ToM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("2nQMP7aOjmE", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE3endEv) +STUB("2nTDk6Leuys", _ZN3sce7Toolkit2NP2V210Tournament22TeamVsTeamMatchDetailsD2Ev) +STUB("2nU9K7WvVoI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEEeqERKS7_) +STUB( + "2nUHn31gW7U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEC1EPS8_) +STUB( + "2nUNCdw4kxs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE8pushBackERKS8_) +STUB( + "2naa5fV2BkU", + _ZN3sce2Np9CppWebApi7Matches2V124LeaveMatchRequestFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_13RemovedPlayerEEEEEPNS9_INS3_17LeaveMatchRequestEEE) +STUB("2nbbUmPHyG8", _ZN7WebCore8Document6imagesEv) +STUB("2nfRTOgdtag", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110ResultTypeEEC2EPS6_) +STUB("2ni9EhZLXzY", mono_bitset_sub) +STUB("2nlecpLpLuQ", _ZN7WebCore9HTMLNames12itempropAttrE) +STUB("2nq4LncyYi0", mono_md5_get_digest_from_file) +STUB("2nqzJ87zsB8", finitef) +STUB("2nrESUvIBaA", JVM_ArrayCopy) +STUB( + "2nty03CeIYk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEcvbEv) +STUB("2nw7QLyE9FA", _ZN3JSC11IsoSubspaceD0Ev) +STUB( + "2o1eUFas2G8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE8copyFromERKS9_) +STUB("2o2cjfuEOGo", sceFsStatWorkspace) +STUB("2o3n0iKkjwY", _ZN3WTF15FilePrintStreamD2Ev) +STUB( + "2o8wyZamZGo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEneERKS9_) +STUB("2oCktOzZ86s", _ZNK7WebCore20ResourceResponseBase12lastModifiedEv) +STUB( + "2oDW5dnAdzM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE7popBackEv) +STUB( + "2oN8mpML7n8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("2oNey8Gkn4M", + _ZN7WebCore22EmptyFrameLoaderClient8setTitleERKNS_19StringWithDirectionERKN3WTF3URLE) +STUB( + "2oNxVXgzJyg", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyD1Ev) +STUB("2oT3cKT3h5w", _ZN9Inspector21InjectedScriptManagernwEmPv) +STUB("2oUqKR5odGc", sceNetCtlUnregisterCallbackForNpToolkit) +STUB("2oVMzn0Q23A", sceCesUtf16beToEucKr) +STUB("2oZFtMaGcto", _pi_lo) +STUB("2oZiVeKIU7s", jpeg_fdct_2x1) +STUB( + "2oiECcNOyRg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEneERKS9_) +STUB("2onR+odZ3LA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEixEm) +STUB( + "2opfrEFa5eI", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("2otu3ItEh4k", sceBackupRestoreUtilCancelRestoreData) +STUB( + "2ovZ6RGBe4Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEppEv) +STUB("2ozvSM6L3vU", sceFsUfsInitalizeSparseFile) +STUB("2p-xv5IJGzE", _ZN3JSC7Symbols31rejectWithoutPromisePrivateNameE) +STUB("2p0Wpb3P7ZI", mparams .0) +STUB("2p1nMSd85io", _ZNK3JSC8Debugger17suppressAllPausesEv) +STUB("2pEUrnXGxys", sceG2PDialogClose) +STUB( + "2pJJ0dl-aPQ", + _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE11do_get_timeES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm) +STUB( + "2pKU0tokZIE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEE3getEv) +STUB("2pOuoWoCxdk", sceKernelAioPollRequest) +STUB("2pPUdYJYK6c", + _ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors18getMissingElementsEv) +STUB("2pR3W4w3TGI", _ZN12video_parser5vpcom8LockLockEPN3paf6thread5MutexEy) +STUB("2pRgjHB0quk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEEdeEv) +STUB("2pU6NaisdsI", _ZN3sce7Toolkit2NP2V28Matching4DataD1Ev) +STUB("2paWSVXIJBc", _ZN7WebCore9HTMLNames8rowsAttrE) +STUB( + "2pgn-U2Xq40", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEC2Ev) +STUB("2pkq+agYpkc", _ZN7WebCore24CachedResourceHandleBaseC1Ev) +STUB( + "2ptOcBl7QQI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE8copyFromERKS9_) +STUB("2puGHZSIf-w", _ZN3sce7Toolkit2NP2V28Commerce19ServiceEntitlementsaSERKS4_) +STUB( + "2pvuS-KHtiw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "2q0l346J1PM", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions17setacceptLanguageEPKc) +STUB("2q1DC47z1JM", EVP_CIPHER_CTX_free) +STUB("2q3IIivs72Q", sceNpPush2UnregisterNotificationExCallback) +STUB("2q5PPh7HsKE", isinf) +STUB( + "2q995WSi6z4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEC2EPS8_) +STUB("2q9bYzWzWqM", mono_aot_System_Reactive_Linqunbox_trampoline_addresses) +STUB( + "2qABDESFNrc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEppEv) +STUB("2qAOcgRJZ3M", u_flushDefaultConverter) +STUB("2qBSLBkkDFQ", _ZN12Mp4Retriever10registMetaEjPh) +STUB( + "2qBcpDHfY-Q", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "2qCUPOySC-M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE6resizeEj) +STUB("2qD1WMZjSGI", mono_aot_Sce_Vsh_DataTransferjit_got) +STUB( + "2qH5FSn0eJA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEEC2ERKSA_) +STUB("2qHVC3VLgPs", _default_constraint_handler_s) +STUB("2qLoWgWvKLg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEE11get_deleterEv) +STUB("2qPIzbtSTHw", _ZN7WebCore7Element12setAttributeERKN3WTF10AtomStringES4_) +STUB("2qSZ0DgwTsc", sceNpWebApiGetErrorCode) +STUB("2qWuxj2N+fI", __ubsan_handle_add_overflow_abort) +STUB("2qYxa-lcvKA", vector_str_substr) +STUB( + "2qZJ+oWmEXk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEEC1EPS8_PNS2_10LibContextE) +STUB("2qe1zk2F8to", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToCancelTicketC2Ev) +STUB( + "2qgbswA83v0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEED2Ev) +STUB("2qh6aZCdAk8", _ZN3sce7Toolkit2NP16AttachmentDetailC1Ev) +STUB( + "2qiLYAmOST4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEC2Ev) +STUB( + "2qj8hPX2hLs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE5clearEv) +STUB("2qjWY+Dm524", _ZN7WebCore8SVGNames20xChannelSelectorAttrE) +STUB("2qk9QGMy-ZI", mono_aot_Sce_Vsh_VoiceMsg_VoiceMsgWrapperunbox_trampolines) +STUB( + "2qtnatrVfjY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEC2ERS7_) +STUB( + "2r287lN5Irg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEaSERKS9_) +STUB( + "2r3K1B7qtLM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEE11release_refEv) +STUB( + "2r5RCydxn6M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEEC2ERKSA_) +STUB( + "2rBzzZz17vw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEEcvbEv) +STUB( + "2rE3Dnr+siI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE8capacityEv) +STUB( + "2rEHf7o-zWQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB( + "2rHDhNXfKRo", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB("2rOYe6lVCVQ", sceShellCoreUtilLog) +STUB( + "2rQ5ignmsJA", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS2_6VectorINS5_INS1_13InGameCatalog2V59ContainerEEEEEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "2rTD0+OtFow", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE7reserveEi) +STUB("2rU9INbqLSU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE3endEv) +STUB("2rV4eLzjwjk", mono_aot_Sce_Vsh_SysUtilWrapperplt) +STUB("2rV7Y4IhWkc", sceNpTrophySystemWrapGetGroupDetails) +STUB( + "2rVARam3Co0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE21intrusive_ptr_add_refEPS7_) +STUB("2rZ7BW5io5I", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEmmEi) +STUB("2raGNZ319Dg", _ZN3sce7Toolkit2NP2V210Tournament13OneVsOneMatchC1Ev) +STUB("2rc+egSfb5A", sceLoginDialogUpdateStatus) +STUB("2rcvKZfm5rI", FT_Stroker_Export) +STUB( + "2rf51TIsYvg", + _ZN7WebCore15GraphicsContext15drawNativeImageERKN3WTF6RefPtrI14_cairo_surfaceNS1_13DumbPtrTraitsIS3_EEEERKNS_9FloatSizeERKNS_9FloatRectESE_NS_17CompositeOperatorENS_9BlendModeENS_16ImageOrientationE) +STUB( + "2rff9f7zRcw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEC1EPKS8_) +STUB("2rgTwNzAAHQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEcvbEv) +STUB( + "2rj56-czOEs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEppEv) +STUB("2rkJWBBUnHI", jinit_d_coef_controller) +STUB("2rke-0hLDS4", _ZN3JSC24createStackOverflowErrorEPNS_9ExecStateE) +STUB("2rmvbvOCyjY", FT_Vector_From_Polar) +STUB("2roO2KtrNlE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEED2Ev) +STUB("2rowME6bIVQ", _ZN7WebCore11MathMLNames8openAttrE) +STUB("2rsFmlGWleQ", sceNpCheckNpAvailability) +STUB( + "2ru-eNFa8VE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEED1Ev) +STUB("2rv0Oe-u1FA", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE6resizeEj) +STUB("2rvlzy2a4A8", _ZN3sce7Toolkit2NP2V27Session14InvitationDataC1ERKS4_) +STUB("2rwt2+Jmy9s", mono_aot_Sce_Vsh_FileSelectorplt_end) +STUB("2rzwEKVe3yY", _ZN7WebCore11ImageSource4sizeENS_16ImageOrientationE) +STUB("2s+Z9J73DSA", WKWebsiteDataStoreRemoveAllIndexedDatabases) +STUB("2s+xE16XQRA", _ZN7WebCorelsERN3WTF10TextStreamERKNS_10LayoutRectE) +STUB( + "2sAfqvol12k", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB( + "2sFg3vFSTqk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEC2EPS6_PNS2_10LibContextE) +STUB( + "2sIxz+qg-Y4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE10setContextEPNS2_10LibContextE) +STUB("2sTzwlghBUU", _ZN7WebCore36parseCrossOriginResourcePolicyHeaderEN3WTF10StringViewE) +STUB("2sUoEjXwIps", sceUpsrvUpdateRequestDownloadPupCancel) +STUB( + "2sUqNWV24I0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE21intrusive_ptr_add_refEPS9_) +STUB("2sWzhYqFH4E", _Stdout) +STUB( + "2sZAh3idDD0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEC2EPS8_) +STUB("2sgenMqwczM", sceVideoOutSysGetDeviceInfo) +STUB("2sh+j1Ml2pU", jpeg_natural_order2) +STUB("2sk-Mt8xEsA", sceDeci4hDrfpInitMountDoneEvf) +STUB( + "2softC7Xiuk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEEC1EPS6_PNS2_10LibContextE) +STUB("2spPvIooxh4", GCC_except_table90) +STUB("2spmuC+1Wtk", _ZThn16_NK26ScePssInputControllerOrbis7GetTypeEv) +STUB("2t+trYl6cq0", JNU_Equals) +STUB("2t7q3K27iFA", sceNpUniversalDataSystemCreateRecordObject) +STUB( + "2t9-tbHVWYU", + _ZN3sce2Np9CppWebApi12Leaderboards2V137GetBoardDefinitionResponseBodyFactory7destroyEPNS3_30GetBoardDefinitionResponseBodyE) +STUB("2tB0Rjhw+qw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEEC1ERS7_) +STUB("2tBfuGAKI28", _ZN3sce7Toolkit2NP2V212EventsClient6EventsC2Ev) +STUB("2tD2S9ph2Pc", u_isalnum_59) +STUB("2tJsBnPiylo", sceKernelDebugInjectProcessEvent) +STUB( + "2tKQl4YDP2o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEEptEv) +STUB( + "2tRbaPO7xik", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEmmEv) +STUB("2tWMR61WghE", JVM_ActiveProcessorCount) +STUB("2tcju+KXU9g", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE3endEv) +STUB("2teIv3bTDTA", + _ZNK3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator16customData1IsSetEv) +STUB( + "2thwcfnysCU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEC2EPNS2_10LibContextE) +STUB("2tjgAthxKw8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEdeEv) +STUB("2tocZojNaag", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V128SetMultiVariablesRequestBodyD2Ev) +STUB( + "2tt29XJahrk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "2tuUIl1TIR0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB( + "2tzNd5gHSiM", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations28hasxPsnAcceptPlatformNamePs5Ev) +STUB( + "2u+KiW9+ipw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEptEv) +STUB( + "2u5KXbhvMMo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEE11release_refEv) +STUB("2uE88wpiLjY", mono_aot_System_Net_Httpunbox_trampolines) +STUB("2uKxXHAKynI", _Atomic_store_8) +STUB( + "2uMk1CCvSDc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB("2uPWfK1Cv9o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEE7get_refEv) +STUB("2uSGK0YyhLU", mono_aot_Sce_Vsh_Np_Udsjit_code_start) +STUB("2uSWyOKYc1M", sce_net_in6addr_linklocal_allrouters) +STUB( + "2uYkfVHLsKQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEC1Ev) +STUB("2ud1bFeR0h8", _ZTSSt12domain_error) +STUB("2udlQni6qgQ", sceDbgInstallExceptionHandlerAltStack) +STUB("2uglBBTj7Xk", YGNodeLayoutGetDirection) +STUB( + "2uo67nrnv0k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE5clearEv) +STUB("2uouw57e7qM", _ZNK3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead13onlineIdIsSetEv) +STUB( + "2ut4bPFm0ac", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEE3getEv) +STUB("2uw51wxVsiI", GetOnlineId) +STUB("2uxQJLN5Xg8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEptEv) +STUB("2v21-m4gljU", sceCamera2IsAttached) +STUB("2v31GTAzIjc", _ZN3JSC2VM12mapSpaceSlowEv) +STUB("2vCEhtrehN4", mono_security_set_core_clr_platform_callback) +STUB("2vDqwBlpF-o", strtod) +STUB( + "2vDuGSyRuJk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEC2Ev) +STUB( + "2vF35k48OKE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "2vG1bsbzGqM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEixEm) +STUB("2vIP9cBK1R0", u_strlen) +STUB( + "2vIPzh2T7zk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB("2vK13TtDpLI", scePsmCoreClrCallback) +STUB("2vPr-tg31UY", _ZNK7WebCore14ResourceLoader28shouldIncludeCertificateInfoEv) +STUB( + "2vQGRiHWnjA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEppEi) +STUB( + "2vQHymxENJo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEeqERKS9_) +STUB("2vSWgtyiSPg", + _ZN7WebCore24RotateTransformOperationC1EddddNS_18TransformOperation13OperationTypeE) +STUB( + "2vSff9S+SzY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEmmEi) +STUB("2vcPzfCr49Q", sceS3daGetInfo) +STUB("2veNqr3JMos", _ZN7WebCorelsERN3WTF10TextStreamENS_15ScrollAlignment8BehaviorE) +STUB("2veyNsXFZuw", _ZTSPKDn) +STUB( + "2vfOk3r6jgA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEC1Ev) +STUB("2vhQr2hP5n0", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEEmmEv) +STUB("2vjNvTQIQ6U", + _ZNK3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends16getaccountIdOrMeEv) +STUB( + "2vnoD8qY6CM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEC2EPNS2_10LibContextE) +STUB( + "2vrvSCgb3uU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE8capacityEv) +STUB("2vyJNYfv8Ns", _ZNK3sce3pss5orbis9framework11PsmCallList6GetNumEv) +STUB("2vz0NwZVQ2Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEptEv) +STUB("2w+4Mo2DPro", _ZNKSt5ctypeIcE10do_tolowerEPcPKc) +STUB("2w3bo8DF4vM", glBeginTransformFeedback) +STUB("2w5H3b3yPqw", cairo_arc_negative) +STUB( + "2w7irb9YYcY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEC1Ev) +STUB("2w8SdVsst74", _ZN3sce7Toolkit2NP2V24Core11addCallbackERKNS3_7Request11AddCallbackE) +STUB( + "2w9iadUyU5A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEC1EPS8_) +STUB( + "2w9zfRDORlM", + _ZNK3sce2Np9CppWebApi14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBody6toJsonERNS_4Json5ValueEb) +STUB("2wDzNZ9oKro", coil_raise) +STUB( + "2wE40nUY0Nc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB("2wIfvCipwio", _ZN12video_parser5vpcom8datetime8DateTime13SetTimeFormatEPKw) +STUB( + "2wJKjPHZp2I", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorI16SceNpTusVariableNS1_15AppSTLAllocatorIS5_EEEEC2Ev) +STUB( + "2wb07EiJ3W8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("2wiYanBFmKc", _ZN7WebCore22EmptyFrameLoaderClientD1Ev) +STUB("2woRp-7hcWs", sceClSslInit) +STUB( + "2wpeoAP6c7I", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_17ActivityFeedStoryENS1_15AppSTLAllocatorIS5_EEEEC1Ev) +STUB( + "2wvNMIWHgic", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEE3getEv) +STUB("2wvqS7Odb6M", sceFiosOpSyncWait) +STUB("2wyqhlHaHLI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE4sizeEv) +STUB("2wz4rthdiy8", _ZNSt7collateIwE7_GetcatEPPKNSt6locale5facetEPKS1_) +STUB("2x0vLaDPMJA", _ZN12video_parser13cVideoMetaMP49_finalizeEv) +STUB( + "2x1iAHqpaUc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEC1EPKS8_) +STUB("2x24iCBAFo4", _ZN7WebCore11MediaSampleD0Ev) +STUB("2x32Wm9lOOU", _ZN7WebCore9HTMLNames10heightAttrE) +STUB("2x55BYiVzCc", MASSMATerminate) +STUB("2x77ylWJsKU", unumf_openForSkeletonAndLocale_67) +STUB("2xG6qbIDkEQ", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container12getPlatformsEv) +STUB( + "2xJMb4rPJvc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEED2Ev) +STUB( + "2xJwXBwT94k", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE5emptyEv) +STUB("2xL9dcAmXtE", + _ZNK3sce2Np9CppWebApi7Matches2V122RequestMatchStatistics6toJsonERNS_4Json5ValueEb) +STUB( + "2xR9yGYLG2s", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE4sizeEv) +STUB( + "2xRA6cazzq8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("2xU8m24KpiA", sceValidationGpuOnSubmit) +STUB("2xW3kRKCcfY", ubidi_getParagraphByIndex_67) +STUB("2xW6hBcxTlk", _ZN3JSC13InferredValue15notifyWriteSlowERNS_2VMENS_7JSValueEPKc) +STUB("2xaoe377rxw", _ZN7WebCore9HTMLNames16aria_detailsAttrE) +STUB("2xcrFIhtxGY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEEC2ERS7_) +STUB("2xenlv7M-UU", sceSystemServiceRaiseExceptionLocalProcess) +STUB("2xhRHbvhwfU", sceCompositorGetRemainedCommandNum) +STUB( + "2xkFeilh5IM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEneERKS9_) +STUB("2xliHbyIZxw", + _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse6toJsonERNS_4Json5ValueEb) +STUB( + "2xmeJsfG1+Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEEaSERSA_) +STUB( + "2xnQXfB-1xc", + _ZN3JSC8JSObject13putInlineSlowEPNS_14JSGlobalObjectENS_12PropertyNameENS_7JSValueERNS_15PutPropertySlotE) +STUB( + "2xoZKoUKPeM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEC2Ev) +STUB("2xxUtuC-RzE", sceScreenShotEnable) +STUB("2xxVBFt3lm8", mono_aot_Sce_Vsh_Np_Udsjit_got) +STUB( + "2xyHk3c4bao", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEC1Ev) +STUB("2y+gxwVZqtA", mono_aot_Sce_Vsh_SQLiteAuxjit_code_end) +STUB( + "2y5DSsBWIQ0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB("2yAjfzUQhYU", _ZN9Inspector30TargetBackendDispatcherHandlerD2Ev) +STUB("2yAjlV7p8So", vm_send_DebuggerPages) +STUB( + "2yD28tM2v9U", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariable13isInitializedEv) +STUB("2yET7w0wyUA", umtx_unlock_67) +STUB( + "2yEnsVi5WN8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEE7add_refEv) +STUB("2yJbdphMV2A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEaSERS7_) +STUB("2yJg6Pu-EAE", _ZN3WTF12base64DecodeEPKcjNS_33SignedOrUnsignedCharVectorAdapterEj) +STUB( + "2yNDUNfjds4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEC1EPS8_) +STUB("2yOarodWACE", _ZNSt6_WinitD2Ev) +STUB( + "2yUTvJXqonE", + _ZN9Inspector22AuditBackendDispatcher3runElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "2yV5oTdFeMk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("2yVUJa-WJtg", _ZNK7WebCore10PluginData17webVisiblePluginsEv) +STUB("2yWlLo2VShQ", _ZN7WebCore9HTMLNames8styleTagE) +STUB("2yY+GRyC7Sw", __ubsan_handle_negate_overflow_abort) +STUB("2yYv9QWB3hU", sceAmprAmmMeasureAmmCommandSizeAllocatePaForPrt) +STUB( + "2yfh7KBtwXA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEE3getEv) +STUB( + "2ygUvQddISA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEE3getEv) +STUB("2yhHYN+YqEQ", mono_image_get_resource) +STUB("2ylW0rzp5F8", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi27ParameterToLeaveGameSessionD2Ev) +STUB("2yorpzmHA-w", _ZN7WebCore17SQLiteTransactionC1ERNS_14SQLiteDatabaseEb) +STUB( + "2yp29KM84FQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEmmEv) +STUB( + "2ypJUeQTUSU", + _ZN3sce2Np9CppWebApi13InGameCatalog2V522ContainerRatingFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_15ContainerRatingEEE) +STUB("2yqVLC4dqVA", sceClNetInit) +STUB("2ysKPolaDTE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEEaSERS6_) +STUB( + "2ywxNpj4BVE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEC2EPNS2_10LibContextE) +STUB( + "2yxtaq7T0v8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEC2EPKS8_) +STUB("2z0os9YxmlE", _ZTVN3sce7Toolkit2NP19AllocImplementationE) +STUB("2z1Tkrqh8jE", sceKernelNotifyAppStateChanged) +STUB( + "2z7VA-s8fYs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEEdeEv) +STUB( + "2zCFvJVG5iE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE8copyFromERKS9_) +STUB( + "2zCGY8hFHOk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("2zCd8XDOe-Y", sceCamera2SetSharpness) +STUB( + "2zDJXhwidEA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE10setContextEPNS2_10LibContextE) +STUB("2zFFtiMV6D8", _ZN3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayerD1Ev) +STUB("2zFyCYiVjM0", u_unescape) +STUB("2zHoT6pCWlQ", WKTextCheckerCheckSpelling) +STUB("2zKnvQlTfsw", autofit_module_class) +STUB("2zLw9GwrtyI", sceKernelWriteModifyProtectWithGpuMaskIdCommand) +STUB("2zPKdOEo22s", _ZN7WebCore14MicrotaskQueueD2Ev) +STUB("2zQOpCZREJk", SSL_CTX_set_next_proto_select_cb) +STUB( + "2zXSQQj4sd8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("2zaKdvHsAhg", jpeg_set_defaults) +STUB( + "2zcABVPo0Ic", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEED1Ev) +STUB("2zcmNIcvgXc", + _ZNK3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayer11getPlatformEv) +STUB( + "2zekpgOOxBU", + _ZN15AbstractStorage14FacebookFolder9NewFolderERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_6FolderEE) +STUB( + "2zjvBA8zmug", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEEC1Ev) +STUB( + "2zxF9stMZ+c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEmmEv) +STUB( + "2zyqHxb3tpQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "2zyv1yMh+4g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("3+2TagfQkH4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS7TusDataEEC2Ev) +STUB("3+43NKBK2S4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11UserProfile10NpProfilesEEC2Ev) +STUB("3+5qZWL6APo", _ZNSt14numeric_limitsIeE14min_exponent10E) +STUB("3+64z-ckBS8", sceLncUtilStartKillApp) +STUB("3+9T0ru1PkU", _ZNSoC1EPSt15basic_streambufIcSt11char_traitsIcEEb) +STUB("3+E-5EFZxDo", sceKernelInternalSuspendDirectMemoryRelease) +STUB("3+H8nAsVOys", rgctx_fetch_trampoline_mrgctx_47) +STUB( + "3+K+fyvpImE", + _ZN3sce2Np9CppWebApi7Matches2V132ResponseCompetitiveResultFactory7destroyEPNS3_25ResponseCompetitiveResultE) +STUB("3+LtR6YEub4", _ZN7WebCore7Element22scrollIntoViewIfNeededEb) +STUB( + "3+PsLW7jdHA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEptEv) +STUB("3+Qr0+VLg+0", _ZN3JSC25JSSegmentedVariableObject12addVariablesEjNS_7JSValueE) +STUB("3+UPM-9E6xY", modff) +STUB("3+VwUA8-QPI", _ZNKSt8numpunctIcE9falsenameEv) +STUB("3+XgrwoE+KQ", WKContextTerminateNetworkProcess) +STUB("3+a6oBBT2rs", sceHttpCacheSetCacheSharing) +STUB( + "3+f7pU3YO-o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEED2Ev) +STUB("3+sAdqOViy0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEC2ERS7_) +STUB("3+uIHgu5Byg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEE5resetEPS6_) +STUB("3+vaAKmP0zY", mono_aot_Sce_Vsh_WebBrowsermethod_addresses) +STUB("3-2nJb0U70U", g_ascii_strcasecmp) +STUB("3-643mGVFJo", sceSslLoadRootCACert) +STUB("3-9DXFGVg0M", sceVideoOutSysHdmiMonitorInfoIsMorpheus) +STUB("3-AFNZaRabc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEED1Ev) +STUB("3-B5PsCpkbw", _ZN3sce7Toolkit2NP2V24Core7Request11AddCallbackD2Ev) +STUB( + "3-DiboyW0ag", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "3-F9DFOHTOA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEC1Ev) +STUB( + "3-FwVXRW+7U", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("3-GO8L8fFx0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEC2Ev) +STUB( + "3-J-Gx8ZCfU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEC1Ev) +STUB("3-LseAwUCXU", _ZN3sce7Toolkit2NP2V210Tournament5Event8deepCopyERKS4_) +STUB("3-MUAUHJg3U", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Error7getCodeEv) +STUB("3-NJmGjTdGU", _ZN7WebCore13rangesOverlapEPKNS_5RangeES2_) +STUB("3-QFdzPv6W0", SSL_CTX_set_cipher_list) +STUB("3-epgMMMEQ8", _ZN7WebCore4Text9splitTextEj) +STUB("3-fwAyoN468", _ZN3sce2Np9CppWebApi6Common6VectorIiE5eraseENS2_13ConstIteratorIiEERS6_) +STUB( + "3-jrvyLGA9U", + _ZN3JSC23JSModuleNamespaceObject3putEPNS_6JSCellEPNS_14JSGlobalObjectENS_12PropertyNameENS_7JSValueERNS_15PutPropertySlotE) +STUB("3-kL54G6PQE", uloc_toLegacyKey) +STUB( + "3-mQqfN0WKk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("3-y7Vb4Kyao", + _ZN3JSC16clearArrayMemsetEPNS_12WriteBarrierINS_7UnknownEN3WTF15DumbValueTraitsIS1_EEEEj) +STUB("3-zCDXatSU4", __isfinitel) +STUB("3009kEuNaRA", _ZN3sce2np14HttpConnectionC2EP14SceNpAllocator) +STUB("3040bxCvolo", _ZN9Inspector27InspectorFrontendDispatcherdlEPv) +STUB("304E47J5sJo", GCC_except_table59) +STUB("304ooNZxWDY", sceNetRecvfrom) +STUB("305+7Bx1JWY", + _ZN7WebCore12SettingsBase44setMediaContentTypesRequiringHardwareSupportERKN3WTF6StringE) +STUB("306mCg0ibh8", scePadVrControllerRead) +STUB( + "30BXSe54de0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEeqERKS9_) +STUB("30FldU7FPQs", _ZN7WebCore15FocusController20nextFocusableElementERNS_4NodeE) +STUB("30GFb-IB3yI", monoeg_g_slist_remove) +STUB( + "30MgV+FTKWo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEC2EPS8_) +STUB( + "30N1MW75n2E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEEC2ERSA_) +STUB("30O8gNuBEx8", _ZN7WebCore9FrameView12setMediaTypeERKN3WTF6StringE) +STUB("30Rh4ixbKy4", sceKernelFdatasync) +STUB( + "30TWZn8Hh4w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE5beginEv) +STUB( + "30TgDCfzZgY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEEC2Ev) +STUB( + "30Vzv4jmzxc", + _ZN3sce2Np9CppWebApi7Matches2V130RequestTeamMemberResultFactory6createEPNS1_6Common10LibContextEPKcdPNS5_12IntrusivePtrINS3_23RequestTeamMemberResultEEE) +STUB("30ZHcPPvH0U", _ZN3sce7Toolkit2NP2V28Commerce7Request11GetProductsD2Ev) +STUB("30Zxe35LtBg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS3_5EmptyEED1Ev) +STUB( + "30bCOrO6I0U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "30c2U1PsS2Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEptEv) +STUB("30e9+loZaqc", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku16unsetIsPlusPriceEv) +STUB( + "30hAdY8FXng", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEED2Ev) +STUB("30jjAlUhKRU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEC1ERS7_) +STUB("30k3Yu7s3Xs", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIiEneERKS4_) +STUB("30l0FBIRnnk", mono_unicode_to_external) +STUB( + "30ovfJyxQ2E", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE5abortEv) +STUB( + "30sL5m-S2kw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEC2Ev) +STUB("30uE8YDjhoI", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_21GameCustomDataMessageEEC1Ev) +STUB("30yOp4Pxj20", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEdeEv) +STUB( + "30yq4NAVFrk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEEC2Ev) +STUB("3104QzuFx3w", sceIduUtilIsDiscCompilationDisc) +STUB("311pqC4Yz94", _ZN3sce7Toolkit2NP17PostInGameRequestC2Ev) +STUB("316RmeAtl8o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEEaSERS7_) +STUB("318GifOvcOY", __cxa_demangle_gnu3) +STUB("319bFITviLA", _ZN3sce7Toolkit2NP2V212EventsClient6Events5resetEv) +STUB("31Bh5lfPPXs", _ZN3sce7Toolkit2NP2V211UserProfile7Request13GetNpProfilesC1Ev) +STUB("31BlqiSZ3fw", audiodeccpuinternal_core_ops_lpcm_bd2) +STUB("31DDycIH6lw", + _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody18setCreatedDateTimeERK10SceRtcTick) +STUB("31EP8ruDqQI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEED2Ev) +STUB("31G6PB2oRYQ", sceGnmSdmaConstFill) +STUB( + "31GmqsUxpvI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEED1Ev) +STUB("31QeZ4z-JZs", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEEC1ERKS7_) +STUB( + "31To+oSrrJs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEmmEv) +STUB("31YoCS9Clds", sceFsDevpfsCancelWaitEvent) +STUB("31Yt0A46-l4", _ZN3WTF6Thread6resumeEv) +STUB( + "31aF6xu3KhA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE8pushBackERKS8_) +STUB("31bPq9RXAls", _ZNK3JSC6JSCell11toPrimitiveEPNS_14JSGlobalObjectENS_22PreferredPrimitiveTypeE) +STUB("31fsMm8SZxc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEC1Ev) +STUB("31g+YJf1fHk", __fixxfdi) +STUB( + "31hTNfF554o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEEaSERKSA_) +STUB("31i24BN0PQ4", uprv_isInvariantString_67) +STUB("31lJOpD3GGk", _ZNSt14numeric_limitsIlE6digitsE) +STUB("31nGh-2voAg", sceClKernelMapNamedFlexibleMemory) +STUB( + "31tkBXveB9M", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12setInteger10ERKi) +STUB("31vzT36+cXM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersD2Ev) +STUB("31wb5+dfl-0", ucasemap_getLocale_67) +STUB("31yoQG8UtcY", _ZN7WebCore21DiagnosticLoggingKeys18neverSeenBeforeKeyEv) +STUB( + "31zcW5Le8Pc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "321eY0f18xg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("322xuNOccMA", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanityC1ERS5_) +STUB("326-26W1Ht4", glFramebufferTexture2D) +STUB("32AcaTaBPSY", sceAmprMeasureCommandSizeWriteAddressFromCounterOnCompletion) +STUB( + "32B0EfQLdhs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEE11release_refEv) +STUB( + "32DyQBseDLg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "32GRs998AmA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEC1EPKS8_) +STUB( + "32GZlEGgPW4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEEaSERSA_) +STUB("32H7zAaJblY", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfilesC2ERS5_) +STUB("32HQAQdwM2o", sceSaveDataMount) +STUB("32I2lC4qysE", uprv_malloc_67) +STUB("32MZ7PBVe1k", _ZN7WebCore13HitTestResultC2ERKNS_11LayoutPointE) +STUB( + "32NR-2ymYoE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEED1Ev) +STUB("32Oq+eOTUJU", uprv_compareEBCDICPropertyNames_67) +STUB( + "32USUK58Er0", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeaderD1Ev) +STUB("32YPeuXr47M", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12string3IsSetEv) +STUB("32eFln4+jzc", sceBgftServiceDownloadPauseTask) +STUB("32j2cyCl3Yo", _ZN4IPMI4impl11SessionImpl10trySendMsgEjPKvm) +STUB("32lzv0QiLbo", + _ZN9Inspector14InjectedScriptC1EN10Deprecated12ScriptObjectEPNS_20InspectorEnvironmentE) +STUB("32oP5SP4zAw", _ZN4Manx14NetworkProfile8finalizeEv) +STUB("32r6n2sLLcw", _ZN12Mp4Retriever9metaIdTblE) +STUB("32sLpN4txmg", mono_aot_Sce_Vsh_VideoFramework_Platformjit_got) +STUB("32sr9JSPqrQ", _ZN3sce7Toolkit2NP2V211UserProfile9NpProfileD2Ev) +STUB( + "32xLQfMRYlY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEC1EPS6_PNS2_10LibContextE) +STUB( + "33+GyiZZdKs", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("335A2pSXNYE", monoeg_g_strdelimit) +STUB("336zdcN++6g", sceAc3EncEncodeAsync) +STUB("33EJeb8F35g", _ZN7WebCore19JSHTMLSelectElementC1ERKS0_) +STUB( + "33IHNe43r1s", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEiRNS2_10LibContextEPT_m) +STUB("33IslmxoWR4", mono_aot_Sce_Vsh_GameListRetrieverWrapperjit_got) +STUB("33R3zL7PFIg", il2cpp_class_get_interfaces) +STUB("33WTIzHLTe4", + _ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody15setWaitsForDataERKb) +STUB("33aeRemQ8VA", mono_win32_compat_ZeroMemory) +STUB("33eTlnxc7AY", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEED2Ev) +STUB("33jKd5sGCys", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEdeEv) +STUB("33q5FI-ON3A", mono_aot_Sce_Vsh_Gls_GlsSharedMediaViewplt) +STUB( + "33qN8PHz5fI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEmmEv) +STUB( + "33scBRpv12o", + _ZN3JSC8JSObject55convertInt32ToDoubleOrContiguousWhilePerformingSetIndexERNS_2VMEjNS_7JSValueE) +STUB("33t+tvosxCI", _ZTISt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE) +STUB("33tRqKUP04I", _ZNK7WebCore3URL19protocolHostAndPortEv) +STUB( + "33tdLpxfHEc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEED2Ev) +STUB( + "33u6P1sGNUg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEE3getEv) +STUB( + "33vdjVGa87o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEE3getEv) +STUB("33wxroB98Uo", _ZNK3sce2Np9CppWebApi12Leaderboards2V113ErrorResponse6toJsonERNS_4Json5ValueEb) +STUB("343Lpcj48O8", sceDataTransferCheckBgTransferRunning) +STUB("344vzzehB7M", __init_array_end) +STUB( + "349K68lxAHg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB("34EfyU8EIQ4", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification15BlocklistUpdateEE5resetEv) +STUB( + "34EvdBaE2Wg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "34M-IgveNT4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEixEm) +STUB("34P5ykQ+nbk", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE7popBackEv) +STUB("34Ri-I2zseI", _ZN7WebCore26IdentityTransformOperationD1Ev) +STUB("34V2Umd+mwM", scePsmRegisterPInvokeCallTable) +STUB("34iOQz7kvIg", _ZN12video_parser13cVideoMetaMP410getGPSInfoEPNS_11VpGPSInfo_tE) +STUB("34kvdye-B3o", sceLncUtilIsCdlgActivated) +STUB("34mi8lteNTs", _ZNSt8messagesIcED1Ev) +STUB("34nH7v2xvNQ", wcstoll) +STUB("34rw3yhC59w", _ZNK7WebCore16HTMLStyleElement8disabledEv) +STUB( + "34ssgwrDxJU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEC2ERS7_) +STUB("34wv7CQNnHo", _ZN12video_parser5vpcom7ReallocE) +STUB("34y-EWM9PZE", udat_get2DigitYearStart_67) +STUB( + "354rh-aFbdQ", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE6finishEv) +STUB("354yn8AiJ+I", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIdEC2EPd) +STUB( + "3565EfEcRUE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEppEv) +STUB( + "359Zg8B0xN4", + _ZN3JSC23SimpleMarkingConstraintC2EN3WTF7CStringES2_NS1_8FunctionIFvRNS_11SlotVisitorEEEENS_20ConstraintVolatilityENS_21ConstraintConcurrencyENS_21ConstraintParallelismE) +STUB( + "35CoTgAg8yo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "35KNCmLeeFg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEplEm) +STUB("35KmTDkZkoc", mono_aot_Sce_Vsh_Np_Commonunwind_info) +STUB( + "35MoRFyQVGE", + _ZN3sce2Np9CppWebApi11UserProfile2V131GetBlockingUsersResponseFactory6createEPNS1_6Common10LibContextERKNS5_6VectorImEEiPNS5_12IntrusivePtrINS3_24GetBlockingUsersResponseEEE) +STUB("35NoyMOtYpE", SetDataFolder) +STUB("35ORvn0jTS8", _ZN10Deprecated11ScriptValueaSERKS0_) +STUB("35T-3aC2LeE", _ZN7WebCore8SVGNames7descTagE) +STUB( + "35T12DVUCqU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEC2Ev) +STUB( + "35XxSJwoZss", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEED1Ev) +STUB( + "35crYIwaL7U", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("35e7kEHI70g", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEEC1Ev) +STUB("35fc0lxWKkY", _ZThn136_N7WebCore16HTMLMediaElement8setMutedEb) +STUB("35hf1B8ev14", JSObjectHasProperty) +STUB( + "35i6Fzy6iUo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEC1Ev) +STUB( + "35oaLCDefXg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEE3getEv) +STUB( + "35z0vW7oz1k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEC1EPS8_) +STUB( + "360Uq9VvF7k", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB( + "3613PX3XDaQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEC2EPS8_) +STUB("361mocQBo3g", rgctx_fetch_trampoline_mrgctx_64_p) +STUB( + "365OU25S+0Y", + _ZN3sce2Np9CppWebApi7Matches2V124LeaveMatchRequestFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_17LeaveMatchRequestEEE) +STUB("368es-zmQuc", sceShellCoreutilGetCrashReportProcessInformation) +STUB( + "369GFjYSHnM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEC1EPS8_) +STUB("36ApFwdg3pw", _ZNK7WebCore8Document6hiddenEv) +STUB( + "36FCNqdy-fE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEC1EPNS2_10LibContextE) +STUB( + "36GQOppzr2k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC1Ev) +STUB("36GRau6llzM", WKPageMarkAdClickAttributionsAsExpiredForTesting) +STUB("36GsIj3FrIw", _ZN3sce7Toolkit2NP2V29Challenge18ChallengeThumbnailC2Ev) +STUB( + "36J4eugCkag", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE5beginEv) +STUB("36MDnaC1OHI", sceApplicationGetStateForDebugger) +STUB("36MVOzx6Uw0", _ZN3sce7Toolkit2NP20ChallengeSendRequestC2Ev) +STUB("36QNLZCsGZ8", _ZN3JSC3DFG18getNumCompilationsEv) +STUB( + "36Qn7igYkTQ", + _ZNK7WebCore21NetworkStorageSession55shouldBlockThirdPartyCookiesButKeepFirstPartyCookiesForERKNS_17RegistrableDomainE) +STUB("36SxclBwsFs", sceOpusSilkEncEncodeWithPriority) +STUB("36UasLgAHg8", _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession13setSearchableERKb) +STUB("36V-ayZDWQo", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIlEC2EPKl) +STUB( + "36V6Ky9ElHA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE7popBackEv) +STUB( + "36WKwBokTsU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("36Wm5aIJUFY", cairo_new_sub_path) +STUB( + "36Xw1r3MRDo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEEC2ERKSA_) +STUB("36YjmziKXoc", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error9setStatusERKi) +STUB("36hIlYK72Vc", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEED2Ev) +STUB("36hv5tEW5cc", _ZNK9Inspector15RemoteInspector6Client11browserNameEv) +STUB("36sA+u7-LlA", mono_aot_ReactNative_Components_Vshunbox_trampoline_addresses) +STUB( + "36sXWvheefc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEEC2ERKS9_) +STUB("36tH2mTvPgs", _atanlo3) +STUB("36vtOQuRF8o", _ZN7WebCore13JSDOMRectListD1Ev) +STUB( + "36wRZjKAXpk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEdeEv) +STUB("36xDKk+Hw7o", sceHmdDistortionGetWorkMemorySize) +STUB( + "379q8i9I0SE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE7reserveEi) +STUB("37BZMTiwN5c", _ZN3sce7Toolkit2NP2V26Friend7Request26DisplayFriendRequestDialogD1Ev) +STUB("37CMzzbbHn8", _ZTISt13basic_filebufIwSt11char_traitsIwEE) +STUB("37DR-ZKbsv8", sceFaceIdentifySimilarity) +STUB("37HHcr6Cw8M", _ZN3sce3pss5orbis9framework11PsmCallListC1Ev) +STUB("37JfCwRdgnI", _ZN7CoreIPC15ArgumentDecoder6decodeERj) +STUB( + "37N6qDFqSjs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEED1Ev) +STUB("37R0ijwPews", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE5emptyEv) +STUB("37Rd2JS+FCM", _ZN3sce2np9EventFlag4PollEmjPm) +STUB( + "37XWx7TdtSk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEEC1ERKSA_) +STUB("37ZdK-DvAJI", scePerfPmcSdfGetCounter) +STUB("37c6POpov60", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request7GetFeed13MAX_PAGE_SIZEE) +STUB("37dXZkodlCY", _ZN3NTF22URLRequestJobSchedulerD2Ev) +STUB("37hyOXyHL6k", mono_aot_Sce_Vsh_PartyCommonunwind_info) +STUB("37mIA-MjoWg", YGNodeStyleSetWidthPercent) +STUB( + "37mP9vAwr7c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("37szA7sW+Gg", _ZN7WebCore11JSImageData15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "37vf--UMPb0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE21intrusive_ptr_add_refEPS9_) +STUB("37xLoICBg0U", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V116TaskAvailabilityEEppEi) +STUB("37yPX1Dd-xs", _ZN12video_parser10cVideoPathD2Ev) +STUB("38-bjsboMps", mono_aot_Sce_Vsh_RequestShareScreenunbox_trampolines_end) +STUB("380EWm2DrVg", sceNpMatching2SignalingGetLocalNetInfo) +STUB("3814EY2BTXo", _ZN23sceMetadataReaderWriter20LoadedParserInfoList24getUnloadParserCandidateEPj) +STUB("382VXUjp0XU", sceFsUfsAllocatePatchImage) +STUB( + "386tXjjSAV4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE5beginEv) +STUB("388LcMWHRCA", fabs) +STUB("38B5Qc5Doj0", _ZN3JSC13RuntimeMethod15createPrototypeERNS_2VMERNS_14JSGlobalObjectE) +STUB( + "38HQ1-q3RFE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEEptEv) +STUB( + "38KgnBZbRL4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEC2Ev) +STUB("38MHJa5nLlU", _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest9setZoneIdEPKc) +STUB( + "38NSfA0vUws", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "38TWxXJ2vc0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEC2EPS8_) +STUB("38YQch0p-Xo", sceMbusSetUsbPowerBlackList) +STUB("38cfkczfN08", sceNpManagerIntLoginGetAccessTokenViaImplicitFlow) +STUB("38fFiZMtYSs", ubidi_setContext_67) +STUB("38fMik9zN5Y", ubidi_getMemory_67) +STUB( + "38fqxsuF5I0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE13getLibContextEv) +STUB( + "38gbXtzKr+U", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "38jQ1TPae2c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("38kHj8Rh5I8", mono_aot_System_Data_Services_Clientunbox_trampolines_end) +STUB( + "38m4tfySoWs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEE11get_deleterEv) +STUB("38oSSWu98Lk", sceFsUfsMkfs) +STUB( + "38qmN4HDWOA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEE5resetEPS9_) +STUB("38s3C5AinhU", mono_get_uintptr_class) +STUB("38tFulGgeWI", sceAudioOutSysGetOutputInfo) +STUB("38vHu+T50H8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEEmmEi) +STUB("38zYSKmTGIc", _ZN7WebCore21SerializedScriptValue8toStringEv) +STUB( + "39+FQ-2FoVE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB("39-glXtDPsE", _ZN7WebCore11DisplayList12PutImageDataD0Ev) +STUB("394sckksiCU", sceFontStyleFrameSetEffectSlant) +STUB( + "398YbeC0WnM", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessions17setacceptLanguageEPKc) +STUB("39BK09X7zLY", glBlendFunc) +STUB("39DQQSLsNgY", _ZN3sce7Toolkit2NP2V27Session7Request17ConsumeInvitationC2Ev) +STUB("39HHkIWrWNo", vswscanf_s) +STUB("39I2tW21-Kk", jinit_upsampler) +STUB( + "39VY+KojNhg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEE11release_refEv) +STUB("39WxhR-ePew", sceAjmBatchJobDecode) +STUB( + "39Y48ufHtLY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEE7get_refEv) +STUB("39ZD23ofnks", _ZN3sce7Toolkit2NP22UpdateNpSessionRequestC2Ev) +STUB("39c+H8bSITU", + _ZNK3sce2Np9CppWebApi12Leaderboards2V123RecordScoreResponseBody16getTmpSerialRankEv) +STUB("39iV5E1HoCk", sceSysmoduleLoadModuleInternal) +STUB("39lewWn5+G0", sceShellCoreUtilGetManifestFileStatus) +STUB("39n3nXzZWeM", _ZN7WebCore8SVGNames14cap_heightAttrE) +STUB("39tjjgU19JY", _ZN7WebCore6Chrome24disableSuddenTerminationEv) +STUB("39x1VqBO8IA", mono_guid_to_string_minimal) +STUB("3A0IOfgA2K4", _ZNK3WTF8JSONImpl5Value10memoryCostEv) +STUB("3A1eJRAF6Ic", _ZN7WebCore17PageConsoleClient24setShouldPrintExceptionsEb) +STUB("3A2X6OCHtnA", sceAmprAmmCommandBufferUnmapToPrt) +STUB("3A3QX575l3I", ucsdet_detectAll_59) +STUB( + "3A3Xk25yrus", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEC1Ev) +STUB("3A4uN0y4e7o", zero) +STUB("3A9RVSwG8B0", __floatundixf) +STUB("3AEmld5+kCM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEEC1ERKS5_) +STUB("3AFe2ppI85A", _ZN7WebCore9GLContext22createOffscreenContextEPNS_15PlatformDisplayE) +STUB( + "3AGGgXPht6Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEEC1ERSA_) +STUB("3AGuYLeF9Q4", uregex_hitEnd_67) +STUB("3AI9N7clwCs", sceMatMprotect) +STUB( + "3AMAcjF+tVM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEEC2Ev) +STUB("3AWH2FaJfxE", _ZN9Inspector29AuditBackendDispatcherHandlerD2Ev) +STUB("3AXAGsodfmg", _ZNK3sce2np7RingBuf11GetFreeSizeEv) +STUB( + "3AdLwKeOeXU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE10setContextEPNS2_10LibContextE) +STUB("3Af3+T3MOdY", _ZNK7WebCore13ContainerNode17traverseToChildAtEj) +STUB( + "3Ag5akdn93U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEE7get_refEv) +STUB("3AhFWhH0mH8", _ZN3WTF6StringC2EPKc) +STUB("3Akc82eLT0I", uregex_regionEnd64_67) +STUB( + "3AkmEl5gHkI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEeqERKS9_) +STUB("3AlRuA+uVyg", _ZN7WebCore3URL15hostIsIPAddressEN3WTF10StringViewE) +STUB( + "3AoEUWpXDmE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEC2ERS7_) +STUB("3AsGIs7lx2w", _ZN7WebCore18JSHTMLInputElement14finishCreationERN3JSC2VME) +STUB( + "3Awv8IlOz+o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEED2Ev) +STUB("3AyTaWcF-H8", sceAgcDriverRegisterWorkloadStream) +STUB("3B0UjWrE4F0", _ZN7WebCore24MatrixTransformOperation6createERKNS_20TransformationMatrixE) +STUB("3B4gh+UMw10", _ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_20ChallengeRecvDetailsEE8max_sizeEv) +STUB( + "3B7MFTPTAxc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("3B8820wLyCk", sceKernelHwGetBdDriveInfo) +STUB( + "3BBTjRCE9Ng", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayer12setsessionIdEPKc) +STUB("3BDHghdSgog", WKWebsiteDataStoreSetStatisticsNotifyPagesWhenDataRecordsWereScanned) +STUB( + "3BHUk6Mcg2c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEEC1Ev) +STUB("3BKtV-ZgNGE", curl_escape) +STUB("3BNqOa83GtA", _ZN7WebCore19AccessibilityObject11isARIAInputENS_17AccessibilityRoleE) +STUB("3BNu-q4BYSQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEE5resetEPS6_) +STUB("3BVi4EDkOYA", jpeg_idct_4x2) +STUB("3BVpZh2e4Ho", + _ZN9Inspector14ConsoleMessage26updateRepeatCountInConsoleERNS_25ConsoleFrontendDispatcherE) +STUB("3BbBNPjfkYI", _Ldtob) +STUB( + "3BedShO70aQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEixEm) +STUB("3Bf7cw+WH1A", swap) +STUB( + "3BhbxNge554", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEEiRNS2_10LibContextEPT_m) +STUB("3BjB1psEx8s", mono_threads_set_shutting_down) +STUB( + "3Bk39bYRYgc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEE7get_refEv) +STUB( + "3Bl1sfPCTZ4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("3Bnk9LMRvgk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_17TitleCloudStorage2V19ConditionEEC2EPS6_) +STUB("3BoL0x8h0nE", g_str_equal) +STUB("3BpP850hBT4", pthread_condattr_setpshared) +STUB("3Bq9ltZiV-U", _ZThn16_N26ScePssInputControllerOrbisD0Ev) +STUB("3BqYx-4igt0", _ZN12video_parser14cVideoOperatorD0Ev) +STUB("3BqoiFOjSsk", sceNpProfileDialogGetStatus) +STUB("3BrWWFU+4ts", sceFontGetVerticalLayout) +STUB("3BsxDbWqTBQ", sceCesEucJpToUtf16) +STUB("3BxlmDKiHq0", mono_aot_System_Xmlplt_end) +STUB("3BytPOQgVKc", snprintf_s) +STUB( + "3Bz0GWCJdVo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE5beginEv) +STUB( + "3C+jhmNd7wE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE5abortEv) +STUB( + "3C-gzpq+3XY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("3C9BB4+ICx4", _ZN3JSC8Bindings13RuntimeObjectC1ERKS1_) +STUB("3CAYAjL-BLs", __adddf3) +STUB("3CB6yKkDe6Y", _ZN7WebCore19TextResourceDecoderD1Ev) +STUB("3CECWZfBTVg", CERT_getSubjectCommonName2) +STUB( + "3CFEf2TxTtc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEC2EPKS8_) +STUB( + "3CGYqoSDpz0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("3CHi1K1wsCQ", sceNetHtonll) +STUB("3CJ1jNrVg+4", mono_aot_System_Reactive_Linqplt_end) +STUB("3CJl5ewd7-0", _ZN3sce2np6Thread4ctorEv) +STUB("3CNVYZj-sfE", + _ZN3sce2Np9CppWebApi15Personalization2V121GetAccessCodeResponseC1EPNS1_6Common10LibContextE) +STUB("3CNY4Z0Luc8", __sys_namedobj_create) +STUB( + "3CTsvQRw1dg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEdeEv) +STUB( + "3CUqkWrczkU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE4sizeEv) +STUB("3CWmJsrc4AE", ucnv_createConverter_67) +STUB( + "3CX0gkWD-iE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB("3Ced4Xw+JB0", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils16NetStateDetailedEE12deepCopyFromERS7_) +STUB("3CjDtHR8UuY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEED1Ev) +STUB("3Ckj9wlRA7c", sceDebugIpmiGetConnectRequestInfoList) +STUB("3Cl1FkN3orM", WKBundleFrameRegisterAsyncImageDecoder) +STUB("3ClP+rIikEw", _ZNK3sce2Np9CppWebApi11Matchmaking2V18Location6toJsonERNS_4Json5ValueEb) +STUB( + "3ClV7PSmhYg", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("3Cp-nOwl47U", _ZN15AbstractStorage14StorageManager6UpdateENS_11ServiceTypeE) +STUB( + "3CrHDe376cA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEEC2ERKSA_) +STUB( + "3CsuZra7Daw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEplEm) +STUB("3CtP20nk8fs", _ZNSt14_Error_objectsIiE14_System_objectE) +STUB( + "3Cu5cyG0WI8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEaSERS7_) +STUB("3CvcsgbdX58", JVM_SocketAvailable) +STUB("3Cvlf8PUy94", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo12getaccountIdEv) +STUB("3Cy40mvJFyE", sceNpEntitlementAccessGetAddcontEntitlementInfoIndividual) +STUB( + "3CyP58G84w0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEeqERKS9_) +STUB( + "3CzvswWharM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEC1Ev) +STUB( + "3CzxRVbZc8s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEC2ERS7_) +STUB("3D-lb52KBks", _ZN7WebCore7Element21boundsInRootViewSpaceEv) +STUB("3DDz282J3cE", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredTeamsEE12deepCopyFromERS7_) +STUB("3DEJbFScwg8", delegate_virtual_invoke_10_p) +STUB("3DFYSB4Xk68", _ZN7WebCore14LoggedInStatus13setTimeToLiveEN3WTF7SecondsE) +STUB( + "3DFrVBQ3BJ0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("3DJJcxlaGok", + _ZNK7WebCore21NetworkStorageSession28shouldBlockThirdPartyCookiesERKNS_17RegistrableDomainE) +STUB("3DK2dxDedi0", glTexSubImage2D) +STUB("3DXOsPHy9FQ", sceVisionManagerGenerateRegisterUserData) +STUB("3DcW5F8pk34", _ZN7WebCore4Page27setFullscreenControlsHiddenEb) +STUB( + "3DcttN5CH9Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEED1Ev) +STUB( + "3Dmr8-HFdUU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEEaSERSA_) +STUB( + "3DpDLUvEBKI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEE7add_refEv) +STUB("3Dq2mSdXqgE", _ZN7WebCore6Editor19insertEditableImageEv) +STUB("3DqiPW3mayI", _ZN3WTF28encodeWithURLEscapeSequencesERKNS_6StringE) +STUB( + "3DsIFIGoiDQ", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetrics27setCompletionRatePerReasonsERKi) +STUB("3DtP-+fNq0c", cairo_image_surface_get_stride) +STUB("3DtWT550eGM", glUniformMatrix2x3fv) +STUB("3DuTkVXaj9Y", sceUserServiceGetPbtcFridayDuration) +STUB( + "3DvvoE9dRdw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEC1Ev) +STUB("3Dw5c477kQk", WKInspectorToggleJavaScriptProfiling) +STUB("3DyeUPKT2+c", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEEaSERS7_) +STUB("3E3yDTjF-SI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEEeqERKS7_) +STUB("3E5VYwkk1p8", __tsan_on_report) +STUB("3EDFoWECKOg", sceKernelGetSystemSwBeta) +STUB( + "3EG8ac1t-7U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("3EI-OSJ65Xc", sceNpWebApi2CreateRequest) +STUB("3EOYidQjTSM", _ZN3sce7Toolkit2NP2V28Presence8PresenceC1ERKS4_) +STUB("3ET+1J4apB0", sceIduReboot) +STUB("3EUK5l6RAVk", _ZN3JSC11SymbolTable14finishCreationERNS_2VME) +STUB("3EUdMBRwxlE", _ZN3sce7Toolkit2NP2V27Session7Request17ConsumeInvitationD1Ev) +STUB( + "3EWL3yhJQ9A", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEneERKS9_) +STUB("3EXYyJjDdQw", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEEC1Ev) +STUB("3EXdrVC7WFk", sceGnmDriverInternalRetrieveGnmInterfaceForReplay) +STUB( + "3EZDHVOP7vk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEED1Ev) +STUB("3Eb7+yCX55w", uldn_languageDisplayName_67) +STUB("3EcIpkf-kTI", _ZNK7WebCore7Element25containsFullScreenElementEv) +STUB("3EgxfDRefdw", expm1f) +STUB("3EhDLdxPJA8", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112UpdateStatusEEC2Ev) +STUB("3Ejy6aJB7u8", delegate_virtual_invoke_11) +STUB("3Ek9odpk9YA", _ZN3sce7Toolkit2NP9Utilities6FutureIiED1Ev) +STUB("3Emlg2ArWRg", ucnv_incrementRefCount_67) +STUB("3En652M2+Vk", _ZN7WebCore9HTMLNames13aria_ownsAttrE) +STUB("3EnF-fzC6g0", + _ZN3sce2Np9CppWebApi14SessionManager2V115LocalizedStringC1EPNS1_6Common10LibContextE) +STUB("3ErXia+y89M", _ZN3sce2np7Callout9IsStartedEv) +STUB("3Ev6IFrUeAM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE3endEv) +STUB( + "3F+Y4BFp9iQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE3endEv) +STUB("3F1oLnsP0LQ", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEEC2ERS6_) +STUB( + "3F3fJv6SH54", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions25getusePlayerSessionFilterEv) +STUB("3F60zkQwfw4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE8capacityEv) +STUB("3FExQerx1SI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching6WorldsEE3setEv) +STUB( + "3FGuxUmUvCw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEC2Ev) +STUB( + "3FMeVFZ3OxU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEC1EPNS2_10LibContextE) +STUB("3FOeDrXJqS8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE3endEv) +STUB( + "3FaOQzTa39w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEmmEv) +STUB("3Fd+8Pk6fgE", _ZTSPKi) +STUB( + "3Feki3+Pt7c", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("3FfhG3OCRyk", goby_CheckLicense) +STUB("3FiKO2eDhvU", _ZN7WebCore4Path5clearEv) +STUB( + "3FswAJv87Dg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("3FtD6y5Rk5Q", sceNpManagerIntUpdateVshToken) +STUB( + "3FtHDoI1J+w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEppEv) +STUB("3FuoO8uU9+M", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE8pushBackERKS6_) +STUB( + "3Fy5HE9ws3Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("3G3NkSJ-kwc", WKWebsitePoliciesCopyCustomHeaderFields) +STUB( + "3G4EgxG4o5g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEC1Ev) +STUB( + "3G4fK2odadg", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V226WebApiFilterRequestFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_19WebApiFilterRequestEEE) +STUB("3G4zhgKuxE8", sceFontRenderCharGlyphImage) +STUB( + "3G6ETfRyMmI", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsC2EPNS1_6Common10LibContextE) +STUB("3GC9QQlTKoU", WKPageResumeActiveDOMObjectsAndAnimations) +STUB( + "3GE-tTh9mF4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "3GJt8J3vkxg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "3GP6ihUXjJU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("3GPpjQdAMTw", __cxa_guard_acquire) +STUB("3GXZVX106MA", _ZN3sce7Toolkit2NP2V28Matching17AttributeMetadataD2Ev) +STUB("3GXyJjvs9EQ", mono_aot_Sce_Vsh_EventServiceWrapperjit_code_start) +STUB( + "3GYohwAP22k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("3GaSGSyePDI", _ZN3sce7Toolkit2NP2V28Commerce7Request14CheckoutTargetD1Ev) +STUB( + "3GguY6HKDKQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEC2Ev) +STUB("3Gn+E5AVeCg", WKUserContentURLPatternCopyScheme) +STUB( + "3GnG8AXF8Fk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEptEv) +STUB("3GqBPApWgPY", sceKernelWaitCommandBufferCompletion) +STUB( + "3GqGXlIw0OA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE4sizeEv) +STUB( + "3Gugy0RMDkE", + _ZN7WebCore16FrameLoadRequestC2ERNS_5FrameERKNS_15ResourceRequestENS_28ShouldOpenExternalURLsPolicyERKNS_14SubstituteDataE) +STUB("3GzmcihF5UM", mono_aot_Systemunbox_trampolines_end) +STUB( + "3H2suBucSJI", + _ZN7WebCore5Style8Resolver21pseudoStyleForElementERKNS_7ElementERKNS0_20PseudoElementRequestERKNS_11RenderStyleEPS9_PKNS_14SelectorFilterE) +STUB( + "3H5CVxgSr+o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEdeEv) +STUB("3H5sVXHQbs0", sceDataTransferTerminate) +STUB("3HAgZPl1v+4", sceFiosTerminate) +STUB("3HDn1r7lsGM", WKFrameIsDisplayingStandaloneImageDocument) +STUB( + "3HE0cDYJHP0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE7reserveEi) +STUB( + "3HG3cDVLUzU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEEdeEv) +STUB( + "3HIGxRyLcwg", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEEiRNS2_10LibContextEPT_m) +STUB("3HK90PNd0CA", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku9nameIsSetEv) +STUB( + "3HSC0TdZMjg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE3endEv) +STUB("3HSPRdTF1fw", _ZN3sce3Xml3Dom6NodeIdC2Ev) +STUB("3HaJqtrvQqg", scePssKeyboardInitialize) +STUB( + "3HbC2CVEAmk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE8capacityEv) +STUB("3HbwrgY5DsY", delegate_virtual_invoke_imt_26_p) +STUB("3HgPTvfMSb4", _ZN3sce2Np9CppWebApi11Matchmaking2V127ListUserTicketsResponseBodyD2Ev) +STUB( + "3Hhif1Nt0gc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "3HkGlWKnttQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEmmEv) +STUB("3HnSw9cH-TE", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS25AtomicAddToAndGetVariableEED2Ev) +STUB("3HqyBrpu3jA", ENGINE_get_first) +STUB("3Hx2Uw9xnv8", sceImeKeyboardUpdate) +STUB("3HxE0UPm48E", mono_print_thread_dump_from_ctx) +STUB( + "3I0nEXkbKD0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE6resizeEj) +STUB( + "3I1NC6PBITI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEEC2ERSA_) +STUB("3I2FbiV6fhw", _ZNK3sce2np8NpCommId7IsEmptyEv) +STUB( + "3I4VLRZ4xsw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEC2EPS8_) +STUB( + "3IC5aCodnX4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEED2Ev) +STUB("3ICTbdm9yDE", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Error9codeIsSetEv) +STUB("3IDweSxou1E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEC2ERKS7_) +STUB( + "3IHrTs+1F2U", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEneERKS9_) +STUB( + "3IN3Gd-+t3M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("3IO4pYlBzGU", ktrace) +STUB( + "3IPJCp2ngFo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEC2ERS7_) +STUB( + "3IQJKTpbgjQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "3Ibc3k+A1dE", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "3IeyiHOmayw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEEdeEv) +STUB("3Ig-1D9qSfE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEC2Ev) +STUB( + "3IlWp64anwU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE7reserveEi) +STUB("3IoD01lnka4", _ZN22MmsMdCommonFsOperation13storeFileSizeEv) +STUB( + "3IoVWIlmwyI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB( + "3Is0Iqf-ddk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEcvbEv) +STUB("3ItcbZh5emo", _ZN9Inspector34ApplicationCacheFrontendDispatchernwEm) +STUB( + "3IvUk+DBL2g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEC1Ev) +STUB( + "3IvnxfQpS7I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEEC1ERSA_) +STUB("3Iw3YWgqaS0", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging24GameDataMessageThumbnailEEC1Ev) +STUB("3J-ImOjCoog", uloc_getDisplayVariant_67) +STUB("3J7Qlmn5Qvs", sceVdecswTryGetDecodeOutput) +STUB("3JCe3lCbQ8A", sceHttp2Init) +STUB("3JHUyDc9vDI", _ZN3JSC7JSValue21putToPrimitiveByIndexEPNS_14JSGlobalObjectEjS0_b) +STUB("3JKfEnZUXkg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEE5resetEPS6_) +STUB("3JNHzrEDnrk", sceShellCoreUtilIsPowerSaveAlertRequested) +STUB("3JPluOTZIOQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE5beginEv) +STUB("3JTfX4nYjrc", sceAvControlGetDeviceInfo) +STUB( + "3JU1ZUdvOO8", + _ZN7WebCore14ScrollableArea30scrollToOffsetWithoutAnimationERKNS_10FloatPointENS_14ScrollClampingE) +STUB( + "3JYgD1NX7ew", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE21intrusive_ptr_sub_refEPS9_) +STUB("3JYhkiIHkJc", __sceKernelGetGPI) +STUB("3Jb+xAN0RLc", mono_get_cached_unwind_info) +STUB("3Jek4LNhcQ0", mono_aot_Sce_Vsh_EventAppmethod_addresses) +STUB( + "3JkLnzyKwF0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEE11release_refEv) +STUB("3JyuejcNhC0", sceHmdReprojectionStartWideNear) +STUB("3K8Y0RvaHJU", _ZN23sceMetadataReaderWriter13ParserManager13releaseParserEi) +STUB( + "3KCaG4gsj7k", + _ZN7WebCore11DisplayList8Recorder12putImageDataENS_22AlphaPremultiplicationERKNS_9ImageDataERKNS_7IntRectERKNS_8IntPointES2_) +STUB("3KChwrxsVPg", sceMusicPlayerServiceGetAudioVolume) +STUB("3KDcnM3lrcU", sceAgcWaitRegMemPatchAddress) +STUB( + "3KEEPn1asOE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEC1EPS6_PNS2_10LibContextE) +STUB( + "3KFfSq5skPQ", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeader12setsessionIdEPKc) +STUB("3KIbxxVQv84", sceKernelGetSpecialIForRcmgr) +STUB("3KK-Q0bl7oI", _ZN7WebCore16HTMLInputElement7setTypeERKN3WTF10AtomStringE) +STUB( + "3KKog+pzlJM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEC2EPS8_) +STUB( + "3KLJsCVcbUE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "3KNUP6PsBUo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEED1Ev) +STUB("3KOuC4RmZZU", sceNpSignalingInitialize) +STUB( + "3KVMZbKgH8Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEneERKS9_) +STUB( + "3KW+M0wII9E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "3KW1uAmSO-g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE7popBackEv) +STUB( + "3KX+OAM1HYM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB( + "3Ka458TAnU0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEptEv) +STUB( + "3Kc0E7CjW3Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEE5resetEPS9_) +STUB("3Kdj1+eB7jY", _ZN3sce2Np9CppWebApi14SessionManager2V123MemberWithMultiPlatformD1Ev) +STUB("3KeAc1cF8EY", SSL_CIPHER_get_bits) +STUB( + "3KgXrefR1ws", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("3KlxAJJwr58", _ZN7WebCore21NetworkStorageSession14storageSessionEN3PAL9SessionIDE) +STUB("3KoHM+CMvoc", JVM_Open) +STUB("3KrOfXHjvw0", _ZN3IPC13ArgumentCoderIN3WTF6StringEE6encodeERNS_15ArgumentEncoderERKS2_) +STUB( + "3Kt2kS+0z6g", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10setString4EPKc) +STUB("3Kt8VBmOWpI", _ZN9MmsMp4BoxD1Ev) +STUB("3Ku9r8b6gCg", _ZN3sce2np20BufferedStreamReader5CloseEv) +STUB( + "3KutCavowug", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE10setContextEPNS2_10LibContextE) +STUB("3Kvd0-luspA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEC1Ev) +STUB("3KyBnDtIniw", unum_setTextAttribute_67) +STUB("3KzATBUIYEk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEC1EPS8_) +STUB("3L-gCf-E4zk", scePlayReadyCdmiGetExpiration) +STUB( + "3L1hfNaKKJE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEC1Ev) +STUB("3L6XDc-UNVA", WKAuthenticationChallengeGetProposedCredential) +STUB("3L99HU+j-MA", sceNpGriefReportCdBaseDataInit) +STUB("3LBwhPy74PU", + _ZN7WebCore19JSDOMMatrixReadOnly14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB( + "3LD6SRaNC0o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEEC2ERS9_) +STUB( + "3LF3LVuhyHo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("3LFVKmoavF4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEC1Ev) +STUB( + "3LGXHBjED-Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("3LIRw+rB9A4", _ZN3JSC2VM29callbackGlobalObjectSpaceSlowEv) +STUB("3LNwKNmDL80", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEED2Ev) +STUB("3LPfiB1gNFY", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129ConnectionQualityWiredMetrics9setJitterERKd) +STUB( + "3LRXwKD7KfI", + _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody13getMaxPlayersEv) +STUB("3Lbx0dg+6lg", __tsan_get_report_stack) +STUB("3Lca1XBrQdY", sceKernelAioCancelRequests) +STUB( + "3LdHRIFRZFk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE5clearEv) +STUB( + "3LfL9QefxJI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE6resizeEj) +STUB("3LpeW4HSgKE", _ZN3sce7Toolkit2NP2V212EventsClient11EventInGameD1Ev) +STUB("3LtNyMyhCd8", _ZN3sce7Toolkit2NP2V212EventsClient15EventUserStatusC1Ev) +STUB("3Ltx9fK9MUc", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEEmmEv) +STUB("3LuoWoXJ1WI", _ZN3sce2np3ipc10IpmiClientD0Ev) +STUB("3LwgB6m1zlY", Java_java_net_PlainSocketImpl_socketBind) +STUB("3Ly-aZD+gQQ", _ZN3sce7Toolkit2NP2V26Trophy15TrophyPackGroup8deepCopyERKS4_) +STUB("3M1tCF9VfoE", sceShellCoreUtilGetProgressOfFsck) +STUB("3M20pLo9Gdk", _ZNKSt8numpunctIwE8truenameEv) +STUB( + "3M4Zu3TOlcI", + _ZN7WebCore27withinTextUnitOfGranularityERKNS_15VisiblePositionENS_15TextGranularityENS_18SelectionDirectionE) +STUB( + "3M4udOKfa1U", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEptEv) +STUB("3M8jROcYzjs", sceKernelWriteMapDirectCommand) +STUB("3M9-PeeY+S4", + _ZN3JSC21msToGregorianDateTimeERNS_2VMEdN3WTF8TimeTypeERNS2_17GregorianDateTimeE) +STUB("3M9CekGEngw", mono_aot_Sce_Vsh_Gls_GlsSharedMediaViewunwind_info) +STUB( + "3MB9nkbLfDY", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetBoolean8Ev) +STUB( + "3MBBhJMJkxk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEED2Ev) +STUB( + "3MD-AjkmdkI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEED2Ev) +STUB( + "3MJAUaTiBgE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE7reserveEi) +STUB( + "3MJqOp4MX1k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEEC2ERKSA_) +STUB("3MKNQM3CJw8", sceUserServiceGetNotificationSettings2) +STUB( + "3MUAm69291I", + _ZN7WebCore16BlobRegistryImpl35registerBlobURLOptionallyFileBackedERKN3WTF3URLES4_ONS1_6RefPtrINS_21BlobDataFileReferenceENS1_13DumbPtrTraitsIS6_EEEERKNS1_6StringE) +STUB("3MUp7-9-xkg", WKFrameCreateFrameHandle) +STUB("3MVW8+eWnjs", _ZN3sce2np18HttpConnectionPoolD2Ev) +STUB("3MWI7gn4dfY", WKViewGetPunchHoles) +STUB("3MWPXpfeWXo", _ZN3sce7Toolkit2NP2V210Tournament16RegisteredRoster5resetEv) +STUB("3MXVqP+S-MQ", _ZN3JSC9JSPromise6createERNS_2VMEPNS_9StructureE) +STUB("3Mc9PdpemIk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEEC1EPS6_PNS2_10LibContextE) +STUB("3MdvN660P4w", sceEsvmEngineMediaKeySystemAccessGetConfiguration) +STUB( + "3Mdxll18Tqo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEED2Ev) +STUB("3MoxakHN9Eg", _ZN7WebCore18TextureMapperLayer17setContentsOpaqueEb) +STUB("3N6HbRGVAbw", _ZN22MmsMdCommonFsOperation18CreateBufferOptionC2Ev) +STUB( + "3N7Gb4ZHtlw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEdeEv) +STUB( + "3N9DRVjaj-A", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "3NBpOpqlXLw", + _ZN9Inspector20DOMBackendDispatcher13getAttributesElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "3NCvo8sUxc0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC2Ev) +STUB("3NGBrAJfbmo", mono_aot_Sce_Vsh_SysfileUtilWrapperjit_code_start) +STUB("3NH1ZqHJbbk", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed13UsersWhoLikedEE19setCustomReturnCodeEi) +STUB( + "3NItjQDOoGI", + _ZN12video_parser48VpMpegvideoAvcParsePPS_get_top_left_bottom_rightEPNS_21VpMpegvideoAvcPPSCtrlEiPjS2_) +STUB( + "3NKX2GE53Gc", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations13isInitializedEv) +STUB( + "3NQKhqbBz-U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB("3NZhPjx-d8A", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEEdeEv) +STUB( + "3NaDqLJ0dNo", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112OwnerFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_5OwnerEEE) +STUB( + "3NbMM+oZyDc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("3Nir3M8HWDU", _ZN7WebCore9HTMLNames5h2TagE) +STUB("3NkyHTtIzRE", _ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForReadD1Ev) +STUB("3Nm6tcgPCgQ", scePssSoundPlayerSetSurroundPan) +STUB("3Nr9caNHhyg", posix_spawn) +STUB("3Ns42AD8UGI", glDrawElementsInstancedEXT) +STUB( + "3Ntb+yOs7kQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEC2EPKS8_) +STUB("3O-VCkQL+w8", _ZN3sce2Np9CppWebApi13InGameCatalog2V55Error9unsetCodeEv) +STUB( + "3O0dDrN2Ub4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEC1EPS8_) +STUB("3O7Ln8AqJ1o", sceRtcGetDaysInMonth) +STUB("3OGWd5HYT4Y", _ZN7WebCore8Document8timelineEv) +STUB("3OHnNaU1EHA", _ZNK3sce2Np9CppWebApi11UserProfile2V16Avatar6toJsonERNS_4Json5ValueEb) +STUB("3OLHl6cAPjQ", sceVisionManagerGetRegisterUserDataVersion) +STUB("3OMbYZBaa50", scePlayGoGetLanguageMask) +STUB( + "3OND4wi9JKY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEEcvbEv) +STUB("3OYr+HkfHBE", init_jk) +STUB("3Oaux9ITEtY", sceSharePlayServerUnLock) +STUB("3OdRkSjOcog", sceFontBindRenderer) +STUB("3OeDFY-UrlU", _ZN3JSC16throwSyntaxErrorEPNS_9ExecStateERNS_10ThrowScopeE) +STUB("3OfeY4pzDV0", sceAmprMeasureCommandSizePushMarkerWithColor) +STUB("3OhfrC3tnh0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEE11get_deleterEv) +STUB( + "3OiO-NzlFbk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "3OjcH7RBNmo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE10setContextEPNS2_10LibContextE) +STUB("3OmzZ2gsM7s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEE7add_refEv) +STUB( + "3OnorzrjiY0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEptEv) +STUB("3OnubUs02UM", sceNpWebApiGetMemoryPoolStats) +STUB( + "3OqKvavPY70", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE4sizeEv) +STUB("3OwG7YRNVOs", Java_java_awt_GnmToolkit_getScreenResolution) +STUB( + "3P+CcdakSi0", + _ZZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE9_GetffldxEPcRS3_S6_RSt8ios_basePiE4_Src) +STUB( + "3P-RN+00aug", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetrics6toJsonERNS_4Json5ValueEb) +STUB( + "3P0x4vzizxo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEC2Ev) +STUB( + "3P5TpKkhgPg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("3P7i3vxeZ18", renameat) +STUB("3P8TH4BFAg0", _ZNK3sce2Np9CppWebApi7Matches2V118RequestMatchPlayer15playerNameIsSetEv) +STUB( + "3P9D732NTrQ", + _ZN7WebCore21ComplexTextController14ComplexTextRunC1ERKN3WTF6VectorINS_9FloatSizeELm0ENS2_15CrashOnOverflowELm16ENS2_10FastMallocEEERKNS3_INS_10FloatPointELm0ES5_Lm16ES6_EERKNS3_ItLm0ES5_Lm16ES6_EERKNS3_IjLm0ES5_Lm16ES6_EES4_RKNS_4FontEPKDsjjjjb) +STUB( + "3PCIhEv01L4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEE5resetEPS6_) +STUB("3PDS2cyBkCw", _ZN9pathscale14set_unexpectedEPFvvE) +STUB("3PH3sDVuI20", _ZN7WebCore12PrintContext5beginEff) +STUB("3PIU3PKoJPU", sceIduUtilGetSettingBin) +STUB("3PKDRmrOlts", sceVideoCoreChangeAudioStream) +STUB("3PL1usXYg40", WKContextGetBatteryManager) +STUB("3PSiwAzFISE", sceGameLiveStreamingSetCameraFrameSetting) +STUB( + "3PYPan9HaUc", + _ZN9Inspector24NetworkBackendDispatcher24getSerializedCertificateElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("3PZOiy2oZ9w", _ZN3WTF30numCodeUnitsInGraphemeClustersENS_10StringViewEj) +STUB("3PZWQN4dZUk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEcvbEv) +STUB( + "3PfHgud+7Ng", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEE21intrusive_ptr_sub_refEPS6_) +STUB( + "3Ph-u3z7AT0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("3PhwCztJMr0", Java_java_net_PlainSocketImpl_socketListen) +STUB("3PiMrWNwmgw", WKFrameCopyURL) +STUB("3PnKtGBM91A", + _ZN9Inspector21InjectedScriptManager23didCreateInjectedScriptERKNS_14InjectedScriptE) +STUB("3PrY5frVzkI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE8pushBackERKS6_) +STUB( + "3PreKVzXvRA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB("3PrhSO6dCns", uhash_geti) +STUB("3Ps+hlmBTMs", ucnv_toAlgorithmic) +STUB("3PsuRAadNps", _ZN7WebCore11MathMLNames13mathcolorAttrE) +STUB("3PtV6p3QNX4", scePthreadEqual) +STUB("3PwZyNS7uWQ", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils5IdMapEE19setCustomReturnCodeEi) +STUB("3Q1Rm8ZQILU", _ZN7WebCore22EmptyFrameLoaderClient19dispatchDidFailLoadERKNS_13ResourceErrorE) +STUB("3Q1gOWWarcw", sceCesUtf8ToSbc) +STUB("3Q3Q+M2xg0E", _ZL16buffer_allocated) +STUB( + "3Q3TfPIVcO8", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeaders17unsetCacheControlEv) +STUB("3Q85e5cS3e0", sceCompositorSetPostEventCommand) +STUB("3QC1YQvFxEw", glPopGroupMarkerEXT) +STUB("3QDJXWo8JlM", + _ZN7WebCore18TextureMapperLayer20paintSelfAndChildrenERKNS_25TextureMapperPaintOptionsE) +STUB( + "3QH03m5E8SI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("3QIPIh-GDjw", rewind) +STUB("3QMXeS1mJG8", + _ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayerC2EPNS1_6Common10LibContextE) +STUB("3QQmCLX9eCA", _ZN3WTF22CrossThreadTaskHandler21setCompletionCallbackEONS_8FunctionIFvvEEE) +STUB("3QRGXtCYIlw", _ZN3sce10CanvasUtil6finishEv) +STUB("3QYCmMlOlCY", sceSystemGestureFinalizePrimitiveTouchRecognizer) +STUB( + "3Qaes4s94Pg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEED2Ev) +STUB("3QbnMG-5mr8", UCNV_TO_U_CALLBACK_ESCAPE_67) +STUB("3QbvZ3xoajQ", _ZN3JSC11ArrayBuffer27primitiveGigacageDestructorEv) +STUB( + "3Qef+GNRYkc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEneERKS9_) +STUB("3Qeg9xX6hmA", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku27displayPlusUpsellPriceIsSetEv) +STUB("3Qg6O4Aj98E", _ZN7WebCore9HTMLNames9mutedAttrE) +STUB("3Qhb7xN3SlY", _ZN7WebCore18JSHTMLInputElementD1Ev) +STUB( + "3QmrphFo0gI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEEC2ERKSA_) +STUB("3QtqTA0uMmU", sceNetCtlApDialogClose) +STUB( + "3QvWbC+K3TE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEEC2EPS6_PNS2_10LibContextE) +STUB( + "3Qye+y00GtE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEneERKS9_) +STUB("3R2fR2I+U9c", _ZN3sce7Toolkit2NP19GetTitleNewsRequestC1Ev) +STUB( + "3RGrd81vlzA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "3RHxGL8doDw", + _ZN3sce2Np9CppWebApi7Matches2V134ResponseTeamMemberStatisticFactory6createEPNS1_6Common10LibContextEPKcRKNS5_6VectorINS5_12IntrusivePtrINS3_19AdditionalStatisticEEEEEPNSB_INS3_27ResponseTeamMemberStatisticEEE) +STUB("3RJZH7EwHdg", scePerfPmcSdfStart) +STUB("3RQ5aQfnstU", sceSystemServiceGetNoticeScreenSkipFlag) +STUB("3RRdTCq+hjY", _ZN7WebCore9HTMLNames14backgroundAttrE) +STUB( + "3RUt+aopCmQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE8capacityEv) +STUB("3RbPI457+jU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEC1ERS7_) +STUB("3RdCtbREfp4", GCC_except_table92) +STUB("3Rh+aTCEEAQ", YGNodeStyleSetPositionPercent) +STUB("3Rh7qg2KTYY", _ZN7WebCore13JSDOMRectList11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("3Rhy2gXDhwc", warn) +STUB("3Rjs8pYosbM", __tsan_atomic64_fetch_or) +STUB("3RsXG6NL28w", _ZN3sce7Toolkit2NP2V24Core5Empty5resetEv) +STUB("3RuGM0ViflU", _ZTVN7WebCore26IdentityTransformOperationE) +STUB("3RuJrIP2QjM", mono_btls_x509_revoked_get_sequence) +STUB( + "3S1Z10-67kQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE10setContextEPNS2_10LibContextE) +STUB("3S5oFJOxq5g", udata_getInfoSize_67) +STUB("3SHDTB+hy4k", _ZNK3sce2Np9CppWebApi7Matches2V117LeaveMatchRequest17getNpServiceLabelEv) +STUB( + "3SLi73JSNxc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEE3getEv) +STUB("3SN5+yX0NxI", _ZN7WebCore8SVGNames7minAttrE) +STUB( + "3SPVPFR+Rtg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("3SSBLxG5YTI", _ZN12video_parser7cVpUtil15convLangVpToIsoENS_9VP_LANG_eEPt) +STUB("3SVaehJvYFk", amd64_set_fsbase) +STUB("3SW2Rs+BCYE", _ZN3WTF13MetaAllocator17currentStatisticsERKNS_6LockerINS_4LockEEE) +STUB( + "3SbMB2E7fhg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE5emptyEv) +STUB("3ScX6KyQ4h8", rgctx_fetch_trampoline_rgctx_123) +STUB( + "3SdxiRRV7t4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEE5resetEPS9_) +STUB( + "3Sgd6vavJhM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("3SmmHWPetYc", + _ZN7WebCore11MediaPlayer22performTaskAtMediaTimeEON3WTF8FunctionIFvvEEERKNS1_9MediaTimeE) +STUB("3SqFHDC844E", _ZN3sce7Toolkit2NP2V210Tournament7Request15EventTypeFilterC1Ev) +STUB("3SsdQzYQzo4", _ZN3sce3Xml3Dom6NodeIdC1Ev) +STUB("3T08s8+BBT4", sceDebugAcquireAndUpdateDebugRegister) +STUB( + "3T2jH363bk4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEEC2ERS9_) +STUB( + "3T4sPrYXxTM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("3T5aIe-7L84", sceNetConfigWlanBackgroundScanStop) +STUB("3T9y5xDcfOk", sceUserServiceLogout) +STUB("3TBpZa39IrM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEEC2ERKS6_) +STUB("3THnS7v0D+M", _ZTSPKx) +STUB( + "3TMSfgbq0Hw", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody14boolean10IsSetEv) +STUB( + "3TO8XzEiLzs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "3TOr-RYa+50", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("3TTubET2yh0", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V115FrequentlyMuted11unsetGlobalEv) +STUB("3TWaWroGGGk", sceAppCheckerExecuteEx) +STUB("3TXZl5TizHU", _ZN7WebCore21DiagnosticLoggingKeys16notHTTPFamilyKeyEv) +STUB( + "3TYarvH7s0Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEEdeEv) +STUB("3TbxIy0VEiU", sceNpManagerIntGetAccountDateOfBirthSdk) +STUB("3Tcz5bNCfZQ", sceNpGetAccountLanguage2) +STUB( + "3TdpLcaLXIw", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectatorC1ERS5_) +STUB( + "3TjWJAz-ZtY", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC2ERKSA_) +STUB("3Tmjg+pNxC4", SSL_CTX_load_verify_mem) +STUB( + "3ToUBmeaTJI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus18setLastUpdatedUserERKNS1_6Common12IntrusivePtrINS3_15LastUpdatedUserEEE) +STUB( + "3ToWJ-uk1Uk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("3Ts9sXMsLDg", _ZN7WebCore20PasteboardCustomData5EntryC2ERKS1_) +STUB("3TsXk8jA39E", _ZN3WTF14FileSystemImpl40lastComponentOfPathIgnoringTrailingSlashERKNS_6StringE) +STUB("3Tt9zL3tkoc", sceNpWebApi2CheckTimeout) +STUB( + "3Tu5MeRUvaM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("3TyDpOiEZnQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEptEv) +STUB("3U06ah2CDQ4", rgctx_fetch_trampoline_rgctx_41) +STUB("3U2E2PkIKxM", _ZN10Deprecated25ScriptCallArgumentHandler14appendArgumentEPKc) +STUB("3U2eeEqUwR0", _ZNSt10filesystem10_File_sizeEPKcPi) +STUB("3U2pDdbhjag", _ZN3WTF11Persistence5CoderISt5arrayIhLm20EEE6decodeERNS0_7DecoderE) +STUB("3U8DNqyYIv4", mono_domain_has_type_resolve) +STUB("3UA8GN0IPDo", _ZN9Inspector28InspectorScriptProfilerAgent26programmaticCaptureStoppedEv) +STUB( + "3UBb-s4nDPk", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "3UCUgwma5gc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEEC2ERKSA_) +STUB( + "3UJNUj9CnZE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEC1EPS8_) +STUB("3UJTdJgcQzA", sceMbusDumpModuleStateInfo) +STUB("3ULZGIl+Acc", sceAudioInVmicDestroy) +STUB("3UPU8hbpaW0", sceFiosFHPwritev) +STUB("3UVqGJeDf30", sceNpScoreSanitizeCommentAsync) +STUB( + "3UY6QBPERcE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "3UYL8c75It8", + _ZN3sce2Np9CppWebApi7Matches2V126CreateMatchResponseFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_19CreateMatchResponseEEE) +STUB( + "3UYjirHN2h4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE7popBackEv) +STUB("3UZADLBXpiA", sceUserServiceGetVolumeForSidetone) +STUB( + "3UZcxMW6mkM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEED2Ev) +STUB("3Ua-YPM5wKw", _ZNK3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer14joinStateIsSetEv) +STUB( + "3Uasf0Bqqyo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEC2EPS8_) +STUB("3Ub-eh3lN4E", + _ZN3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponse8fromJsonERKNS_4Json5ValueE) +STUB( + "3Ui2WObDshw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "3UiESBkXGLY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE5clearEv) +STUB( + "3UiWlQA6oDI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEED1Ev) +STUB( + "3UikTocJcVg", + _ZN3sce2Np9CppWebApi14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayer13setPlayerNameEPKc) +STUB( + "3UoCWhkJbXs", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_28ActivityFeedSharedVideoStoryENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB( + "3V0gFRojGn4", + _ZN9Inspector21DOMFrontendDispatcher12didFireEventEiRKN3WTF6StringEdNS1_6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) +STUB( + "3V0qxyCPMxE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEE11get_deleterEv) +STUB( + "3V3VcDcxNqg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEE7add_refEv) +STUB( + "3V4Q7TUvT+M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE7reserveEi) +STUB("3V8p3rXCLkA", delegate_virtual_invoke_8_p) +STUB("3V9ZlX9Q-yE", + _ZNK3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer17pushContextsIsSetEv) +STUB("3VGWEYHMdDM", g_utf16_to_utf8) +STUB( + "3VIqDTSKFOU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEE11get_deleterEv) +STUB("3VJOpzKoIeM", sceCameraSetTrackerMode) +STUB("3VJmLpukTAc", scePerfTraceAmmDelete) +STUB("3VM2mj64POs", _ZN7WebCore8SVGNames13pointsAtZAttrE) +STUB("3VMBsbzgfj8", _ZN3sce2Np9CppWebApi11UserProfile2V15Error8fromJsonERKNS_4Json5ValueE) +STUB("3VROAldPB0Y", monoeg_g_slist_nth_data) +STUB( + "3VTMiaw4Hfg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEEC1ERSA_) +STUB("3VU-Pl-1eow", rgctx_fetch_trampoline_rgctx_53) +STUB("3VX5yZIrhic", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13SessionMemberEE10deallocateEPS3_m) +STUB( + "3VblZgpO1mA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsC1EPNS1_6Common10LibContextE) +STUB("3VdCUl+DkNw", _ZN3sce2np18MemoryStreamWriterD1Ev) +STUB("3VdoiD4rOVo", mono_aot_Sce_Vsh_UsbStorageSceneunbox_trampolines) +STUB( + "3VedwVpM3J0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEE7add_refEv) +STUB("3VoVUcanFYE", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats15unsetReputationEv) +STUB("3VpUbHUfQLM", kmq_open) +STUB("3VsB4tvMGkg", monoeg_g_memdup) +STUB( + "3VvDKKvB79A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEEaSERKSA_) +STUB( + "3VyQ92JCzo8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEE7get_refEv) +STUB( + "3W-ImWSABlU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEC1EPS8_) +STUB("3W1JDGjtt3M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEaSERKS7_) +STUB( + "3W6oM582Xa0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEixEm) +STUB("3W83LFBoVOg", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt6vectorI16SceNpTusVariableNS2_IS4_EEEEneERKS7_) +STUB( + "3WBc6R6XFwU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEEC1ERKS9_) +STUB("3WBnDdsrzis", mono_btls_x509_dup) +STUB("3WCA+6clvlo", _ZN7WebCore8FormData10appendDataEPKvm) +STUB( + "3WJIsKE06v0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("3WKo2oEmhNA", ucnv_setFromUCallBack_59) +STUB("3WOAdMPcNJI", _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeINS1_11TusVariableEPvEED1Ev) +STUB( + "3WSmy5MVrDA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "3WYI+PyszHA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "3WacKmbqS+c", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEED1Ev) +STUB( + "3WcQF1KzhMY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEdeEv) +STUB("3WfSV0+G32g", ures_getStringByKeyWithFallback) +STUB( + "3WhL7xY5dHM", + _ZNK7WebCore19MediaQueryEvaluator8evaluateERKNS_13MediaQuerySetEPNS_24MediaQueryDynamicResultsENS0_4ModeE) +STUB( + "3WhVurvjPns", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEED1Ev) +STUB("3WiMzBlsf50", _ZN7WebCore12ChromeClient23generateReplacementFileERKN3WTF6StringE) +STUB("3WooF6+ypWM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEE3getEv) +STUB("3WpTQrvGUcU", FT_Vector_Unit) +STUB("3WqEGKqUye4", _ZN3sce3pss5orbis3web11WebViewBase12IsFullScreenEv) +STUB("3WtJoftNWAw", GCC_except_table15) +STUB("3WxN4u0Qywg", _ZN3JSC15JSWeakObjectRef14finishCreationERNS_2VMEPNS_8JSObjectE) +STUB( + "3WxpTVN1tRk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEE21intrusive_ptr_add_refEPS7_) +STUB("3WzBXVjy6mc", Java_sun_awt_GnmUtils_invokeDisplayCallback) +STUB("3WzWV86AJ3w", sceNetConfigDownInterface) +STUB("3WzgZDZnfdo", _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScoreD2Ev) +STUB( + "3WzyhIzewdI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("3X+cZHapioA", _ZN3JSC32JSDestructibleObjectHeapCellTypeC2Ev) +STUB("3XC8jrgArys", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEEC1EPS6_) +STUB( + "3XDM8+OgjaA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEC2ERS7_) +STUB( + "3XG5JQrHLU0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("3XHnMfffKJE", CmdThread) +STUB("3XNASuRKeIk", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEEplEm) +STUB( + "3XNgy9i50vo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEaSERKS9_) +STUB("3XR2IhSEjfM", _ZN7WebCore11MediaSampleC2Ev) +STUB( + "3XRGiYqbJY8", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessions17hasacceptLanguageEv) +STUB( + "3XY-aS41ghU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "3XY9kv7PTIU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEC2EPNS2_10LibContextE) +STUB("3XaFUrB8Bns", isobmf_box_getstate) +STUB( + "3XkE+guuRNw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEEC1Ev) +STUB("3Xm+VkCnH24", JVM_IsSameClassPackage) +STUB("3XqtftHfnqo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEEplEm) +STUB("3Xsf6cttiRo", _ZN7bmalloc15IsoHeapImplBasedlEPv) +STUB( + "3XuxieBPrLs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("3XwULRPa25E", _ZN15AbstractStorage14YoutubeContentD0Ev) +STUB("3XxEKWK9sDY", + _ZN3JSC19HeapSnapshotBuilder11analyzeEdgeEPNS_6JSCellES2_NS_11SlotVisitor14RootMarkReasonE) +STUB( + "3Y+mhrisss8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEEptEv) +STUB("3Y0dEShClao", _ZN3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer14unsetJoinStateEv) +STUB("3Y4J-V60GZs", mono_debug_symfile_lookup_method) +STUB("3YAMfWDAvQo", + _ZN3JSC8JSObject48convertDoubleToContiguousWhilePerformingSetIndexERNS_2VMEjNS_7JSValueE) +STUB("3YC2LF72-f4", _ZN7WebCore11DisplayList10StrokePathC1ERKNS_4PathE) +STUB("3YCLf2Eqc1g", _ZN3sce2Np9CppWebApi6Common6VectorIiE8copyFromERKS4_) +STUB("3YCLxZqgIdo", _ZNSt7codecvtIcc9_MbstatetEC1ERKSt8_Locinfom) +STUB("3YCwwpHkHIg", sceVrTrackerStopLiveCapture) +STUB( + "3YNftjTkdOA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE6resizeEj) +STUB( + "3YO63l6hYFs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("3YODFwSqgtc", _ZN3sce4Json5Value12s_nullobjectE) +STUB( + "3YPpd-5Y08E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEppEi) +STUB("3YQ1qY5ePUk", sceAudioInAsyncOpen) +STUB( + "3YR0qZiM9gI", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextEm) +STUB("3YRkxVfeu1s", + _ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_16HTMLImageElementE) +STUB("3YWBrCiubuc", u_strToTitle_67) +STUB( + "3YWlTJQWmdA", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12unsetString3Ev) +STUB( + "3YXCvMsDacE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE8capacityEv) +STUB( + "3YZGJeHwcbM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEED1Ev) +STUB( + "3YZiqz6qIWM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB("3Ybj4E1qNtY", sceNpScoreGetRankingByAccountIdForCrossSave) +STUB( + "3YfWHm1sdqo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE7reserveEi) +STUB( + "3Yk4YqA8QVk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot9setfieldsEPKc) +STUB("3YkIl1TadwA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEC2ERKS7_) +STUB("3YmKvJYGWfA", mono_aot_Sce_Vsh_MyGameListjit_code_end) +STUB( + "3Yn6A-wreds", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEEptEv) +STUB( + "3YnQ8toz6lk", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEiRNS2_10LibContextEPT_m) +STUB("3YnXspQNyw8", nmount) +STUB("3Yo+NPpWMQk", __tsan_atomic64_fetch_nand) +STUB("3Yo1jiOUgmY", u_strchr_67) +STUB("3YpDe6oXPV8", WebProcessMainManx) +STUB("3Yr1O6r-8ms", _ZNK7WebCore19ResourceRequestBase16httpHeaderFieldsEv) +STUB("3YsMdm5Ci44", scePssMusicPlayerGetPlayState) +STUB("3YtCsbxqPGM", + _ZN3sce7Toolkit2NP9Utilities6FutureISbIcSt11char_traitsIcENS1_15AppSTLAllocatorIcEEEE3getEv) +STUB( + "3YuWbJPLieg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEcvbEv) +STUB( + "3Yzg48jAfsY", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot15unsetaccountIdsEv) +STUB("3Z-hTSXcHyc", WKBundleScriptWorldGetTypeID) +STUB("3Z0lsqw+tj0", _Z38sceGpuDebuggerGetEnabledExceptionsMaskPKN3sce3Gnm16PsStageRegistersEPj) +STUB("3Z22ZB8mHq8", u_getPropertyValueEnum) +STUB("3Z6eKFG+dqo", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersC2Ev) +STUB( + "3Z7SD3U+C+s", + _ZNK3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfile14haslanguageSetEv) +STUB("3Z7T+yqwlBc", _ZN7WebCore16FrameLoadRequestD1Ev) +STUB("3Z8jD-HTKr8", _LPow) +STUB( + "3ZBlQQFUUMQ", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetBoolean3Ev) +STUB("3ZEpcvKsbvI", uprv_convertToLCIDPlatform_67) +STUB("3ZFpzcRqYsk", sceSystemServiceRequestCameraCalibration) +STUB("3ZIH7k+SJzA", g_hash_table_lookup_extended) +STUB( + "3ZMlXJ99YBU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEC2ERKS7_) +STUB("3ZOA8Pf6Jho", sceKernelWriteMapCommand) +STUB( + "3ZPA1Kmj+Dw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEmmEv) +STUB( + "3ZPKpX0YNAE", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS9_) +STUB( + "3ZQmMw77AL4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEED1Ev) +STUB("3ZRLqwPxxoI", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEEdeEv) +STUB( + "3ZTKX47IJIE", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayerD1Ev) +STUB("3ZWa3AoyWZQ", sceAgcAsyncCondExecPatchSetCommandAddress) +STUB("3ZWtClII0ME", sceNpTrophy2SystemBuildRewardIconUri) +STUB("3ZX3TSuPUHs", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEC2Ev) +STUB("3ZdlXHdk090", __ulp_D2A) +STUB("3ZhL-MkICwI", _ZN3sce4Json6Object5eraseERKNS0_6StringE) +STUB("3Zhv4HG-fN0", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes14boolean10IsSetEv) +STUB("3Zkj-D8lfnU", _ZN7WebCore15PlatformDisplay16sharingGLContextEv) +STUB("3Zl8BePTh9Y", sceNpCheckCallback) +STUB( + "3ZlvzCoNV+A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "3ZqZ3xAhnXY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE21intrusive_ptr_sub_refEPS9_) +STUB("3Zr8O3Bnqco", sceFsMlfsMount) +STUB("3ZuKZKJ1Ysk", _ZN3sce7Toolkit2NP2V28Matching7Request14SendInvitationC1Ev) +STUB( + "3ZwJ-9kv0b8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEEC1ERSA_) +STUB( + "3Zz-0Hukffw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEC2EPS6_PNS2_10LibContextE) +STUB("3a+wuXU3LT0", _ZN7WebCore11MediaPlayer17setPreservesPitchEb) +STUB( + "3a1HGXvRmTQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEE7get_refEv) +STUB("3a4TANFDzNA", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetailC2Ev) +STUB("3a6B43jFjX8", _ZNK7WebCore20ResourceResponseBase12isSuccessfulEv) +STUB( + "3a8z7qKNQvQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB( + "3aAWML8jjmg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEC1EPS8_) +STUB("3aETmxWCSx4", Java_java_io_FileOutputStream_open) +STUB("3aEY9tPXGKc", sceAudioPropagationSourceQueryInfo) +STUB( + "3aL1VhqCVAE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE3endEv) +STUB( + "3aXKznQUpJw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("3aXpgKuFSbI", mono_aot_System_Xmlunwind_info) +STUB("3aZN32UTqqk", _ZTISt22_Future_error_category) +STUB("3aeIfu8G6SE", _ZN7WebCore22multipleFileUploadTextEj) +STUB("3afasRLTvb8", mono_btls_x509_chain_add_cert) +STUB( + "3ahiYxKJcCA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEE11release_refEv) +STUB( + "3aiW8i3QXMU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEplEm) +STUB( + "3ajDPKLe2AY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEED2Ev) +STUB("3akdRDQT+nU", _ZN7WebCore20SVGPathStringBuilderC2Ev) +STUB("3at8rFY+PRk", xmlRegisterOutputCallbacks) +STUB("3attRwXs1JY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE7reserveEi) +STUB( + "3avu10wAzl4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser19unsetnpServiceLabelEv) +STUB( + "3b5tWWE7Q9w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEEaSERSA_) +STUB( + "3b6850gYENM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEC1Ev) +STUB("3b9l+wUehPc", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15CategoryInfoSubEE7destroyEPS3_) +STUB("3bDK4xmV5Kg", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12getBoolean10Ev) +STUB( + "3bPKlpay2fc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEEC1EPS8_PNS2_10LibContextE) +STUB("3bYJjwtsUQc", sceDebugReadProcessMemoryForSDBGP) +STUB("3bgEKUvvw6U", JVM_Timeout) +STUB("3bh2aBvvmvM", sceNpTusCreateRequest) +STUB( + "3biOWW-hz4M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "3bjEFf8OhTs", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "3bkDn4dJ55Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEC2ERKS7_) +STUB( + "3bm-NSULNt0", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119BandwidthProperties13setDownstreamERKNS1_6Common12IntrusivePtrINS3_26BandwidthDownstreamMetricsEEE) +STUB( + "3bnM5sjZBsg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEC2EPS8_) +STUB("3bovtcH-okE", mono_aot_Sce_Vsh_ShellUIUtilWrapperplt_end) +STUB( + "3bstXM1XDFk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "3bvqtecaMaM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE3endEv) +STUB( + "3c1LB5k+s-w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEC2Ev) +STUB( + "3c1SP6vjqcs", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "3c1q4wKH8x0", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V230FilterProfanityResponseFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_23FilterProfanityResponseEEE) +STUB( + "3c2l3sD1-VQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEEdeEv) +STUB("3c6eyS3Jx4Q", SSL_CTX_use_certificate_chain_file) +STUB("3cAg7xN995U", sceAjmBatchJobGetStatistics) +STUB( + "3cBOPxiXQV0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEC1Ev) +STUB("3cBuHUZvJuw", _ZNK9MmsMp4Box7cmpTypeEPKc) +STUB("3cCvc6gRJdA", sceBgftServiceIntDebugPlayGoRevertToInitialState) +STUB( + "3cKe6AdDTe8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEC1EPS6_PNS2_10LibContextE) +STUB("3cL6gACIbDI", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody8getValueEv) +STUB("3cRqbsC4oQE", _ZN3WTF17PrivateSymbolImpl16createNullSymbolEv) +STUB("3cUUypQzMiI", __cxa_begin_catch) +STUB("3cW6MrkCKt0", _ZNSt10moneypunctIcLb0EED1Ev) +STUB( + "3ca97-TU7QY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEeqERKS9_) +STUB( + "3ccGEf20YQs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEmmEi) +STUB("3cdfz7nTpC4", izrule_close_67) +STUB( + "3cftsQrBm0g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEE11get_deleterEv) +STUB( + "3cgWGDrzsnQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEEdeEv) +STUB( + "3cmOlxhabd0", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("3crHndPLhWs", _ZN3sce2Np9CppWebApi11UserProfile2V113BasicPresence14unsetInContextEv) +STUB("3csGEmgGKTs", WKBundlePageSetUseDarkAppearance) +STUB("3cu+NjdfhSU", + _ZN7WebCore11JSDOMWindow15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB( + "3d2gpPdJXT4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEE7get_refEv) +STUB( + "3d4XGhD2neI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEptEv) +STUB( + "3d6AJykJVa0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE3endEv) +STUB( + "3d7rQhf9eks", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEC2EPS8_) +STUB( + "3dKNyshFxDo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "3dKcj8YQHKk", + _ZN7WebCore13cookiesForDOMERKNS_21NetworkStorageSessionERKNS_3URLERKNS_12SameSiteInfoES5_St8optionalImESA_NS_20IncludeSecureCookiesE) +STUB("3dLQ7IReITw", _ZN7WebCore16HTMLImageElement14setCrossOriginERKN3WTF12AtomicStringE) +STUB("3dMKwTK6ZFE", _ZN7WebCore5Range6expandERKN3WTF6StringE) +STUB("3dTNNBoujn0", FTA_Support_Renderer_Raster1) +STUB("3dgGcCZNu9M", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEixEm) +STUB("3dj37xNl8Oc", _ZN3sce7Toolkit2NP26TusAddAndGetVarInputParamsC2Ev) +STUB("3dmVkJ1WFVk", _ZN3WTF14tryFastReallocEPvm) +STUB("3dtZDlg1TYg", _ZNK3sce2Np9CppWebApi11Matchmaking2V19Submitter13platformIsSetEv) +STUB("3dtiF-9KrYM", unorm2_getRawDecomposition_59) +STUB( + "3dzG3sjv1eo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("3e+4Iv7IJ8U", accept) +STUB( + "3e2IaUQkivI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEE11release_refEv) +STUB("3e4k2mzLkmc", sceNpPartyCheckCallback) +STUB( + "3e6bFf4-3+8", + _ZN7WebCore27PlatformMediaSessionManager15endInterruptionENS_20PlatformMediaSession20EndInterruptionFlagsE) +STUB( + "3e85Ylcp894", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE7popBackEv) +STUB("3e9SYGqEUnw", sceNpRemotePlaySessionSignalingEstablishConnection) +STUB( + "3eAYmGk0RBc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEmmEi) +STUB("3eBNV9A0BUM", sceRemoteplayGetConnectUserId) +STUB( + "3eC8d6eJmt8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEptEv) +STUB("3eCvb-utsDw", AsyncStorageClearNative) +STUB( + "3eFWLAJOQs0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEE11release_refEv) +STUB("3eG+Hx2GCPs", _ZN7WebCore9HTMLNames13onseekingAttrE) +STUB("3eGXiXpFLt0", stdout) +STUB( + "3eJs868HcIU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEppEv) +STUB("3eMT8gzf7wk", _Z20WebViewBaseGoForwardii) +STUB("3eNdZdD2rgc", _ZTVN12video_parser17cVideoOperatorM4vE) +STUB( + "3eV0AYREmu8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEEC2Ev) +STUB("3eV8yB0VROo", _Ux86_64_get_elf_image) +STUB("3ebAgliMP-c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEED2Ev) +STUB("3egbiajVQQ8", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE5clearEv) +STUB("3enOTWb1NUo", CRYPTO_THREADID_set_callback) +STUB("3eoh4hjcYag", _ZN3sce2np9LocalFileD1Ev) +STUB("3epKOd2Wtp4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEC2EPS8_) +STUB( + "3epjsrE9tuA", + _ZThn16_N9Inspector21InspectorRuntimeAgent13getPropertiesERN3WTF6StringERKS2_PKbPKiS9_S7_RNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime18PropertyDescriptorEEENS1_13DumbPtrTraitsISG_EEEERNSA_INSC_INSE_26InternalPropertyDescriptorEEENSH_ISM_EEEE) +STUB("3eqs37G74-s", pthread_getthreadid_np) +STUB( + "3er3f7zU3sw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEC2Ev) +STUB("3esC3xhwwac", png_error) +STUB("3ey06DTa90A", + _ZN3sce2Np9CppWebApi14SessionManager2V134PostGameSessionsSearchResponseBody15getGameSessionsEv) +STUB("3f0ejg9vcE8", sceNpManagerIntGetVshClientId) +STUB( + "3f1IqcWtd24", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE6resizeEj) +STUB("3f56uMOQw4g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEcvbEv) +STUB("3f5ETZ6IIdM", _ZNK3sce2np13JsonArrayImpl10GetItemNumEv) +STUB( + "3fBdRAvkTxg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEE11release_refEv) +STUB( + "3fD3B+9iyao", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEE11release_refEv) +STUB( + "3fIOnELYqmA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEEaSERKS9_) +STUB( + "3fL9p8rBpUc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "3fM0SkcbLbM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEixEm) +STUB("3fQ3SSI-qG0", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIfEplEm) +STUB("3fWyc4r03Qg", _ZN7WebCore8Document12updateLayoutEv) +STUB("3fcBoTACkWY", sceUserServiceSetImeInitFlag) +STUB( + "3feLxKKjnPw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEE3getEv) +STUB( + "3feuDH+0LaA", + _ZN3sce7Toolkit2NP9Messaging9Interface21retrieveInGameMessageEPKNS1_27ReceiveInGameMessageRequestEPNS1_9Utilities6FutureINS1_25ReceivedInGameDataMessageEEE) +STUB("3fhVhEV-In4", g_hash_table_new_full) +STUB("3foHkmhq6ak", sceSocialScreenDialogGetStatus) +STUB( + "3fvCyRg+ghI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEppEi) +STUB("3fxY0RvS5h0", _ZN9Inspector30WorkerBackendDispatcherHandlerC2ERKS0_) +STUB("3g3GKA8WgJc", _ZN4Manx8X509nameC1EPv) +STUB("3g5lFAfPpzk", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V115FrequentlyMuted9getGlobalEv) +STUB( + "3g7ajpsX5aY", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V314MissingElementC1EPNS1_6Common10LibContextE) +STUB("3g7tdl9Ppds", _ZNK3sce2np7RingBuf7IsEmptyEv) +STUB("3g8MMjaAs0M", WKPageSetPageNavigationClient) +STUB("3gB9EbKwJyQ", sceDebugReadProcessResourceStatData) +STUB( + "3gDnlViElDY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEEC2Ev) +STUB("3gFANa1TSV0", _ZN10MsvUpdater13getCurrentValEv) +STUB("3gGbs2iwSdM", _ZN7WebCore4Page23resumeAllMediaBufferingEv) +STUB("3gIrlaesBdY", monoeg_g_slist_find_custom) +STUB("3gNZuENirDc", mono_aot_Sce_Vsh_Messagesjit_code_end) +STUB("3gO4YQgo+IU", mono_install_assembly_refonly_search_hook) +STUB("3gOaQJeTWZM", sceMusicCoreServerSetSpWakeupAuthorityList) +STUB("3gQA+sM11-M", _ZN3JSC37JSSegmentedVariableObjectHeapCellTypeD0Ev) +STUB("3gQncidodmw", sceVrTracker2IrGetDebugRawImage) +STUB( + "3gTDNW59rq4", + _ZN3sce2Np9CppWebApi13InGameCatalog2V511ErrorEntity8setErrorERKNS1_6Common12IntrusivePtrINS3_5ErrorEEE) +STUB("3gVX6ejR1hM", sceAvControlChangeScanInMode) +STUB("3gY5B0FCkNY", pthread_resume_all_np) +STUB("3gdcQ+R76j8", + _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToCancelTicket13isInitializedEv) +STUB( + "3geoFxypPhk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE3endEv) +STUB( + "3gfJFwe4lS8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("3grQ1jCgta8", cairo_user_to_device) +STUB("3grqhhd8-mY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEC1Ev) +STUB( + "3grvz5SJJ44", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEEC2Ev) +STUB("3gtNzvkq-XY", scePigletGetConfigurationVSH) +STUB("3guk5tKNnt0", _ZNK7WebCore3URL21hasFragmentIdentifierEv) +STUB("3h1io5JBDcA", _ZN7WebCore11prefetchDNSERKN3WTF6StringE) +STUB( + "3h1tg-yIpTk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("3h3Dm9Geh90", X509_PUBKEY_get0_param) +STUB( + "3h4fd-F-r+E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEC1Ev) +STUB("3hBvwqEwqj8", sceRudpEnd) +STUB("3hDjShMJO7U", _ZNK3WTF9MediaTime18isPositiveInfiniteEv) +STUB( + "3hL61wDNRRo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEixEm) +STUB( + "3hNGDPj345Q", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEeqERKS9_) +STUB("3hPUZzg1RzA", _ZN8meta_gen17CommonFsOperation8seekFileElb) +STUB("3hRFngR3flU", _ZN7WebCore15SQLiteStatement9bindInt64Eil) +STUB( + "3hUzlTITUls", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE6resizeEj) +STUB("3hVZid8XOJQ", rgctx_fetch_trampoline_mrgctx_52_p) +STUB("3hVv3SNoL6E", sceFontGetFontStyleInformation) +STUB("3hZgvn-vgoo", _ZN13MsvMetaEditor16getFunctionFlagsEPj) +STUB("3hbhpMR3TT0", udtitvfmt_format_67) +STUB( + "3hf2fqQxO34", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE5clearEv) +STUB("3hl+3pWsRNY", _ZN7WebCore19ResourceRequestBase37setExistingHTTPReferrerToOriginStringEv) +STUB("3hmTy9qQZLE", _ZN2GK9PlayerPSN5resetEb) +STUB("3hmcpOw2tsE", sceUserServiceGetUserIdByNpAccountId) +STUB( + "3i++4iDosyA", + _ZN3sce2Np9CppWebApi11Matchmaking2V128GetTicketResponseBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_21GetTicketResponseBodyEEE) +STUB("3i0Aq+f3qeM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEptEv) +STUB( + "3i2WgunIGIQ", + _ZN9Inspector31ScriptProfilerBackendDispatcherC1ERNS_17BackendDispatcherEPNS_38ScriptProfilerBackendDispatcherHandlerE) +STUB("3i5MEzrC1pg", sceCameraSetContrast) +STUB( + "3iNVb-F3hUk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEC1EPNS2_10LibContextE) +STUB("3iONR2EXyKA", sceHmdReprojectionSetUserEventToFinish) +STUB("3iP9Xa6Z3z0", _ZN15AbstractStorage14StorageManager4LoadENS_11ServiceTypeE) +STUB("3iQHGio44FE", Java_java_net_PlainDatagramSocketImpl_peek) +STUB("3iRErH-tsWM", + _ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody21getUserCenteredAroundEv) +STUB("3ic-p1mwH1I", sceMbusAcquireControlWithStateFlag) +STUB("3if2Hu9QawY", _ZN4Manx10FontStream4sizeEPv) +STUB("3ihVViNiFE8", _ZN3sce7Toolkit2NP2V29Messaging7Request20GameDataMessageImageD1Ev) +STUB( + "3ijFCecvKKU", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeaderaSERS5_) +STUB( + "3ip78Y0ydtU", + _ZN7WebCore22EmptyFrameLoaderClient38dispatchDidLoadResourceFromMemoryCacheEPNS_14DocumentLoaderERKNS_15ResourceRequestERKNS_16ResourceResponseEi) +STUB("3it5yM0Teo0", sceNpTrophySystemWrapDebugLockTrophy) +STUB("3ivdto+NNCY", _ZN12video_parser5vpcom3rtc14GetDaysInMonthEPKm) +STUB("3j07a9DNBEY", _ZN7WebCore26ContextDestructionObserverC2EPNS_22ScriptExecutionContextE) +STUB( + "3j96xXE3ecc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEC1EPS8_) +STUB( + "3jDEYFK2w1M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEE7add_refEv) +STUB( + "3jE5G+aXMOc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEC2EPS6_PNS2_10LibContextE) +STUB("3jEYk0EGAyY", _ZN7WebCore9FrameView22setBaseBackgroundColorERKNS_5ColorE) +STUB("3jG2MXFuT+A", delegate_virtual_invoke_28) +STUB("3jMmHq3kMAs", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V113MmrProperties8fromJsonERKNS_4Json5ValueE) +STUB("3jT5OpYbH2U", compilerrt_abort_impl) +STUB( + "3jUeuJshJS4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEEdeEv) +STUB( + "3jY23Auif2E", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEEiRNS2_10LibContextEPT_m) +STUB("3jcyx7XOm7A", sceHmdInternalGetPUSerialNumber) +STUB( + "3jeBu0QFXWU", + _ZN3sce7Toolkit2NP11UserProfile9Interface12getAvatarUrlEPNS1_9Utilities6FutureISbIcSt11char_traitsIcENS1_15AppSTLAllocatorIcEEEEEPKNS1_18UserProfileRequestEb) +STUB( + "3jf1thKjd60", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEE11get_deleterEv) +STUB("3jgsVW-+-H8", _ZN3sce2np14JsonStringImpl5ClearEv) +STUB("3jnRsjnzIjI", sceAvControlIsColorimetryHdr) +STUB( + "3jtyQvk41nY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEE7add_refEv) +STUB( + "3jyFqDtEcQ8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEmmEi) +STUB("3jyjeeXzXZ4", _ZN3sce7Toolkit2NP2V211UserProfile7Request24DisplayUserProfileDialogC1Ev) +STUB("3k-zXaoAKm8", _log10f_impl) +STUB( + "3k5gAz5Lp1c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE21intrusive_ptr_add_refEPS9_) +STUB("3k6kx-zOOSQ", sceKernelMlock) +STUB("3kBOxytQ06Q", _ZN7WebCore9HTMLNames8videoTagE) +STUB("3kCiCa3eq8c", utrans_rep_caseContextIterator_67) +STUB("3kHQ58qipyo", rgctx_fetch_trampoline_mrgctx_66) +STUB( + "3kInHOZ9+8k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEEC2ERSA_) +STUB( + "3kLkx8w1rSs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEeqERKS9_) +STUB("3kSOJ5mCJd0", JVM_MonitorNotifyAll) +STUB("3kSgxZfP+wQ", _UTF32BEData_67) +STUB( + "3kTJqJRiIr8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEC1EPS8_) +STUB("3kYjQMDvHII", ulist_deleteList_67) +STUB("3kg7rT0NQIs", scePthreadExit) +STUB("3kghAseoxNs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEE3getEv) +STUB( + "3kitR+PuizA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEC2EPKS8_) +STUB( + "3kjXzznHyCg", + _ZZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8_GetifldEPcRS3_S6_NSt5_IosbIiE9_FmtflagsERKSt6localeE4_Src) +STUB( + "3koedqh4HoE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEE11release_refEv) +STUB( + "3kqAlM5VQGk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEEC1Ev) +STUB("3ktOaECB77A", _ZN7WebCore16BlobRegistryImpl15registerBlobURLERKN3WTF3URLES4_) +STUB( + "3ktQEGSmF0U", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3CSS8CSSMedia6SourceEEESt8optionalIT_ERKN3WTF6StringE) +STUB( + "3kw5pznDgdQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE8pushBackERKS8_) +STUB( + "3l2ITZ8b-iM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEppEv) +STUB( + "3l3k9S0khYo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEC1EPS8_) +STUB( + "3lC95nbky6U", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB("3lN1a1a8lkw", WKBundleRemoveOriginAccessWhitelistEntry) +STUB("3lNwYmcELHE", mono_aot_Sce_Vsh_RequestShareScreenunwind_info) +STUB( + "3lXEdk0z8pE", + _ZN7WebCore24RemoteMediaPlayerSupport31setRegisterRemotePlayerCallbackEON3WTF8FunctionIFvPFvOSt10unique_ptrINS_18MediaPlayerFactoryESt14default_deleteIS4_EEENS_16MediaPlayerEnums21MediaEngineIdentifierEEEE) +STUB("3lXG1gYF274", _ZN10MsvUpdater13UpdateContentEPK18MmsFileUpdateParam) +STUB( + "3lXfROkmZXg", + _ZN7WebCore11JSImageDataC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_9ImageDataENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "3lbzu2PX3IU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE21intrusive_ptr_sub_refEPSA_) +STUB( + "3lc9BuAaS4Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE21intrusive_ptr_sub_refEPS9_) +STUB("3lgQ5Qk42ok", sceHttpUriMerge) +STUB("3livsiq3ji4", sceAudioOut2InitializeEx) +STUB("3ljltQiScUw", _ZN3WTF11Persistence7DecoderrsERNS_8OptionalIiEE) +STUB("3lpLQXJv9fE", sceMusicCoreServerSetShuffle) +STUB("3lszoToV9UA", _ZN7WebCore11MathMLNames15mathvariantAttrE) +STUB("3luF0xq0DkQ", sceSaveDataGetSaveDataRootPath) +STUB( + "3lyzMNZFHI0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB("3lzrNhmEuCg", scePlayReadyLicenseAcqGetAdditionalResponseData) +STUB("3m2ro+Di+Ck", nextafterf) +STUB("3m3CSOfa5HU", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V15Owner8fromJsonERKNS_4Json5ValueE) +STUB( + "3m6HE2r+96g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEC2EPS8_) +STUB("3m6zSP0iQu4", mono_aot_Sce_Vshjit_code_end) +STUB( + "3mCQTzEUTMQ", + _ZN7WebCore21NetworkStorageSession10setCookiesERKN3WTF6VectorINS_6CookieELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEERKNS1_3URLESB_) +STUB("3mHuKF7fsd8", sceLncUtilSetCdlgExec) +STUB("3mMhLw3+emA", _ZN4Manx11MediaPlayer8hasVideoEv) +STUB("3mOYiNMKQeI", _ZN3sce7Toolkit2NP2V28Matching7Request8JoinRoom24HIGHEST_DISPLAY_PRIORITYE) +STUB( + "3mPDJls-Tpc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("3mR3QJFzrg4", sceNpManagerIntClearParentalControlInfo) +STUB("3mStN5GBS80", _ZN7WebCore16HTMLMediaElement4loadEv) +STUB("3mYpSkj11l4", _ZN3sce7Toolkit2NP2V28Commerce14ProductDetailsD1Ev) +STUB("3mcWGj6UXd0", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_24RegisterGameDataResponseEED1Ev) +STUB("3miJ-BAq16A", _ZN3sce7Toolkit2NP2V211SharedMedia11ScreenshotsD2Ev) +STUB("3mjsu608hoU", sceDepthSetRoi) +STUB( + "3mk1Is05O7Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEC2Ev) +STUB( + "3mm9+mRP89A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "3mu7YgukSkc", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToSendGameSessionMessage53getpostGameSessionsSessionIdSessionMessageRequestBodyEv) +STUB("3mzq2F6BGBE", _ZN7WebCore14SecurityOrigin6createERKN3WTF6StringES4_NS1_8OptionalItEE) +STUB("3n0QWwxX46U", __asan_report_exp_load16_noabort) +STUB("3n3wCJGFP7o", _ZTVSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE) +STUB( + "3n5RwrZJZAc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("3n6wEr0jDRk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEE11get_deleterEv) +STUB("3nIAEWyFU7o", _ZN9Inspector15RemoteInspector20receivedCloseMessageEj) +STUB("3nJgHQwirAU", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V122UploadDataResponseBodyD2Ev) +STUB("3nQDNE+JFKE", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Error12unsetMessageEv) +STUB( + "3nQMOXV1zow", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEC2EPS8_) +STUB("3nQRdDyLMzE", sceDeci4hClose) +STUB("3nRsatuVjQU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEEC2ERS7_) +STUB("3nUMOKQgTvU", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable24lastUpdatedDateTimeIsSetEv) +STUB("3nVu5QjK+Ns", _ZN3sce7Toolkit2NP2V24Core19JsonMemoryPoolStatsC2Ev) +STUB("3nXw7b+YjRU", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13integer2IsSetEv) +STUB("3najRojKZIo", _ZN3JSC8JSObject11hasInstanceEPNS_14JSGlobalObjectENS_7JSValueE) +STUB("3neVPWwhANc", _ZNK7WebCore3URL4passEv) +STUB("3ng2Nc7ipgo", utrie2_get32FromLeadSurrogateCodeUnit) +STUB( + "3nl2tr-OsCI", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeaders24getXPsnAtomicOperationIdEv) +STUB("3nmBMeZtd+Y", _ZN3WTF13aboutBlankURLEv) +STUB("3nn7rnOdt1g", sceSystemServiceTelemetrySetData) +STUB("3nnUhxICDDo", mono_btls_ssl_ctx_free) +STUB("3nsa26YrPzU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEE11release_refEv) +STUB("3nsspx5t01Q", mono_class_get_flags) +STUB( + "3o-dALTQWRE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("3o0PDVnn1qA", _ZTIPd) +STUB( + "3o0a9lFbE7k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE21intrusive_ptr_sub_refEPS9_) +STUB("3o0x1RR++Ng", _ZNK3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer10getNatTypeEv) +STUB("3o3XDEydBjM", sceNpSnsYouTubeCreateRequest) +STUB("3o6cZedja9M", sceDeci4hDrfpSearchTbl) +STUB("3oBkoQ94tu4", mono_aot_Sce_Vsh_Registryunwind_info) +STUB( + "3oE80CtovHg", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "3oFtN7P07kw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEED2Ev) +STUB("3oHFvSKbDqY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament16RegisteredRosterEED1Ev) +STUB("3oIK7y7O4k0", sceNgs2SystemQueryInfo) +STUB("3oL6ZnWIW80", sceAudiodecDecode2WithPriorityEx) +STUB("3oQXJPlb8zo", WKPageConfigurationGetUserContentController) +STUB("3oV6cGFfxmk", _ZN7WebCore19JSAnimationTimeline4infoEv) +STUB( + "3oVM+lCdBXE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEC2Ev) +STUB( + "3oVVtgC0F0E", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEaSERKSB_) +STUB( + "3ocUiA8RVA4", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinition17hasnpServiceLabelEv) +STUB("3odFp6+-Jkk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEED1Ev) +STUB("3odVOzLMVEk", mono_profiler_install_coverage_filter) +STUB("3oiIVBRnmYg", rgctx_fetch_trampoline_rgctx_29) +STUB("3okGL4Cutpk", ures_getLocale) +STUB("3olEmcMZYco", _ZN7WebCore8SVGNames7pathTagE) +STUB( + "3onqS+355Dk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEE7get_refEv) +STUB("3op2--wf660", _ZTSPKv) +STUB("3oqHkpkTvTk", mono_aot_Sce_Vsh_UserServiceWrappermethod_addresses) +STUB("3oqJnlANR1A", _ZN3sce7Toolkit2NP2V28Matching4RoomC2ERKS4_) +STUB("3oqgIFPVkV8", sceUserServiceGetNotificationBehavior) +STUB( + "3otU74hiloU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEneERKS9_) +STUB("3ouqdWJ4ldw", nn_setsockopt) +STUB("3ovo4cphzuw", goby_GetAvailableLinks) +STUB("3oz0KquW47A", _ZN3sce7Toolkit2NP2V24Core7Request14RemoveCallbackC2Ev) +STUB("3p1EBzuU7lg", _ZN7WebCore4Page19setDelegatesScalingEb) +STUB("3p7Wjk2mKeg", sceNpRemotePlaySessionSignalingManualUdpJoinSession) +STUB("3p9MGtW94vc", GCC_except_table17) +STUB("3pBbmM8ZyN4", sceAudiodecClearContextEx) +STUB("3pCNbVM11UA", sceNgs2CalcWaveformBlock) +STUB( + "3pDmfo3CDiU", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V139ConnectionQualityWirelessMetricsFactory6createEPNS1_6Common10LibContextEidiPNS5_12IntrusivePtrINS3_32ConnectionQualityWirelessMetricsEEE) +STUB( + "3pEjZ5H4+1g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEED1Ev) +STUB("3pF7bUSIH8o", isnanf) +STUB("3pFQHWls4Ug", _ZN3WTF21MemoryPressureHandler24currentMemoryUsagePolicyEv) +STUB( + "3pKHvS7DLuQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEC1EPS8_) +STUB( + "3pLiNPfIrdY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "3pP-lIHN+l8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE5clearEv) +STUB( + "3pXJ8mCEc9g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEppEv) +STUB( + "3pZ+ERxbHC8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE5clearEv) +STUB("3pcAvmwKCvM", sceSystemGestureInitializePrimitiveTouchRecognizer) +STUB( + "3pedKJVOgn0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE6resizeEj) +STUB("3pf1uFd13oU", _ZN7WebCore24CoordinatedGraphicsLayer22effectiveContentsScaleEv) +STUB("3pmBdB-bl8w", cairo_reference) +STUB( + "3pouf0bzPjI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "3pvdIr9W-2k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEE5resetEPS9_) +STUB("3pwZQsU+mKU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4DataEE3getEv) +STUB("3pxqefzM4mQ", sceImeBackendConvertCancel) +STUB("3pxwYqHzGcw", sceNetCtlApRpGetResult) +STUB("3pzw+MrP15U", Java_java_net_PlainSocketImpl_socketAccept) +STUB( + "3q11gKaBxXo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEE11get_deleterEv) +STUB( + "3q1eGdD6qts", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEppEi) +STUB( + "3q2Ny31nAkA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEEptEv) +STUB( + "3q6ze8YK6lc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEC2EPS8_) +STUB("3qG7UJy2Fq8", sceNetAddrConfig6Start) +STUB("3qGbMaLVgxY", AES_decrypt) +STUB("3qKJl6U2Tgo", _ZN15AbstractStorage15FacebookServiceC2Ev) +STUB( + "3qMDe77-7-E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE3endEv) +STUB("3qQmz11yFaA", __fixsfsi) +STUB( + "3qSM7BC0NMI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEC2Ev) +STUB( + "3qStDOsRt-Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEE3getEv) +STUB("3qTwQ5MjCiU", _ZN7WebCore5Frame4initEv) +STUB("3qWXO9GTUYU", _ZNSt12system_errorD1Ev) +STUB( + "3qZaBThNEr8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEE11release_refEv) +STUB( + "3qa+GPPi0Hg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEC2EPS6_PNS2_10LibContextE) +STUB("3qeW+zqfuhQ", _ZN3JSC9JSPromise7resolveEPNS_14JSGlobalObjectENS_7JSValueE) +STUB("3qfGoMlYkiI", _ZNK3WTF24TimeWithDynamicClockType8wallTimeEv) +STUB( + "3qrIfMl6XxI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEC1EPS8_) +STUB("3qrge7L-AU4", _ZNK3sce4Json5Value7getRealEv) +STUB( + "3qsjJczXiKw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEmmEv) +STUB( + "3qtt6ngz73o", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE5beginEv) +STUB("3qxE14ptOEo", _ZN7WebCore11DisplayList13SetMiterLimitC2Ef) +STUB("3qxgM4ezETA", scePthreadAttrSetaffinity) +STUB( + "3qzRgcRfCc0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEppEi) +STUB("3r-EMEkvCTo", _ZN7WebCore11JSDOMMatrix14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB( + "3r0m5wt6QkM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE10setContextEPNS2_10LibContextE) +STUB("3r2B1rwZpPk", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getPlayableTime) +STUB("3r35V2b+MH0", + _ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody19npServiceLabelIsSetEv) +STUB( + "3r3HCiC7qVo", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB( + "3r4hdTPa0lA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("3rCx4MuJ4GE", _ZN3sce7Toolkit2NP2V24Core7Request10InitParamsC2Ev) +STUB("3rGzxcMK-Mg", _ZN3sce2np8WorkItem15RemoveFromQueueEv) +STUB("3rHWaV-1KC4", sceAppContentAddcontUnmount) +STUB( + "3rHZqVrntiI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEeqERKS9_) +STUB( + "3rHmvvhjDBs", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V138SetMultiVariablesRequestBody_variables10unsetValueEv) +STUB("3rJJb81CDM4", __cxa_get_globals) +STUB("3rK86aObY4E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEptEv) +STUB( + "3rLLmZDLGFs", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("3rLPdWwF7Io", _ZN13MsvMetaEditor19getPresentationTypeEPj) +STUB( + "3rNhGzMh8oQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEE7get_refEv) +STUB("3rOh9uTV+Ko", _ZN3sce2Np9CppWebApi6Common13ParameterBase10initializeERNS2_10LibContextE) +STUB( + "3rPrPrmlzPo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("3rQTgVQshN0", _ZN7WebCore25DropShadowFilterOperation6createERKNS_8IntPointEiRKNS_5ColorE) +STUB( + "3rR-p21p2rs", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeaders15hasCacheControlEv) +STUB("3rXpEBCRi1o", CommerceSetPsStoreIconLayout) +STUB("3rXsYx0JURc", ScePsmMonoAddInternalCall) +STUB("3rZOepV0sMM", _ZN7WebCore23ISOSchemeInformationBoxD0Ev) +STUB( + "3rdzYBBXZ7M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEC2EPNS2_10LibContextE) +STUB( + "3rfu+PK4MS4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEEdeEv) +STUB("3rggqYkgpbw", uregex_reset64_67) +STUB( + "3riNH8Pg8Ro", + _ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBodyC1EPNS1_6Common10LibContextE) +STUB("3rlqy6XxrmI", sceNpAsmClientGetServiceIdInfoA) +STUB( + "3rmajXDtK9s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEC1EPS6_PNS2_10LibContextE) +STUB( + "3rnHmHsOM1I", + _ZN9Inspector23WorkerBackendDispatcher19sendMessageToWorkerElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "3rqBB1gQwjQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE5emptyEv) +STUB( + "3rs5a16kQgM", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer14getkeepHtmlTagEv) +STUB( + "3rvXpNqQOVM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEEC1EPS6_PNS2_10LibContextE) +STUB("3s0juAjIv-Q", mono_aot_Sce_Vsh_WebViewDialogunbox_trampoline_addresses) +STUB("3s1AvP2KdQ0", rgctx_fetch_trampoline_mrgctx_101) +STUB( + "3s7nWPgBL0Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEcvbEv) +STUB( + "3s8LRDS84bM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEdeEv) +STUB("3s8cHiCBKBE", sceSystemServiceReportAbnormalTermination) +STUB("3s8eZwwVACU", _ZN7WebCorelsERN3WTF10TextStreamERKNS_27AbsolutePositionConstraintsE) +STUB("3sKaCKo8NtI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEC1ERKS7_) +STUB("3sKvLyigU4s", _ZN7WebCore24CoordinatedGraphicsLayer19imageBackingVisibleEv) +STUB("3sNsQzNdylI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEC1Ev) +STUB("3sPWeCbiWEo", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17GetGameDataResultEED1Ev) +STUB( + "3sQoA03uAYM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("3sTGJxsk2tM", WKPreferencesSetTelephoneNumberParsingEnabled) +STUB("3sVrBLScRtY", + _ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody16setMinScoreLimitERKl) +STUB( + "3sVzOoVKBsI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEcvbEv) +STUB("3sYy9XRSuLY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ChildActivityAvailabilityEEeqERKS7_) +STUB( + "3saxnztNDwA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEC1Ev) +STUB("3sfS7qT5eWI", _ZNK3sce2Np9CppWebApi14SessionManager2V115SearchCondition8getValueEv) +STUB("3shKmTrTw6c", sceAudioInGetRerouteCount) +STUB( + "3sim-WtcNdU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEC1EPNS2_10LibContextE) +STUB( + "3sj6kBJDR6A", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEplEm) +STUB("3skeQcEYn-w", _ZN3sce7Toolkit2NP2V23TUS25TusDataStatusForCrossSaveC2Ev) +STUB( + "3sq8GGQF1Zs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEmmEi) +STUB("3st9IJ-fMOE", g_string_truncate) +STUB("3sxs3M-Zqi4", mono_aot_Sce_Vsh_Np_Udsplt) +STUB("3t+-YSBmZvE", _ZN12video_parser10cVideoPath10GetExtNameEv) +STUB("3t06QtomkIM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ResponseCooperativeResultEEptEv) +STUB( + "3t5Kkna-HgM", + _ZN15AbstractStorage18DailymotionContent13ParseMetadataEPN23sceMetadataReaderWriter8MetadataES3_) +STUB( + "3t5ibGZRIdQ", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("3t7EdRCpq+g", _ZN3sce7Toolkit2NP2V28Commerce19ServiceEntitlements8deepCopyERKS4_) +STUB("3t9p85V-a4c", mono_aot_Sce_Vsh_Sl2_NativeQueueClientjit_code_start) +STUB( + "3tKIuacq5jc", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearchC1Ev) +STUB("3tPPMo4QRdY", sceUsbdClearHalt) +STUB("3tUO7QWZzvo", _ZN7WebCore14SocketProviderC2Ev) +STUB("3tWKpNKn5+I", sceNpTrophyConfigGetTrophyTitleDetails) +STUB( + "3tX90rHhOyU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEC2EPS8_) +STUB( + "3tXk2jnIDi4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEEC2ERKSA_) +STUB( + "3taGrOQn8so", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessionsC1ERS5_) +STUB("3tg-7zqOj7g", _ZN3JSC19ControlFlowProfiler36basicBlockExecutionCountAtTextOffsetEilRNS_2VME) +STUB("3tiBWhkHH3A", sceMoveTrackerTerm) +STUB("3tnX4BYslaY", + _ZN3sce2Np9CppWebApi13InGameCatalog2V520ContainerRatingCountC2EPNS1_6Common10LibContextE) +STUB("3toPy0pWt5Y", Java_java_awt_GnmGraphics_nativeRemoveClip) +STUB("3tolGFkslb4", WKPageSupportsTextEncoding) +STUB("3tzc9DUf-4U", _ZN3sce2Np9CppWebApi11Matchmaking2V19Attribute7setTypeERKNS3_13AttributeTypeE) +STUB("3u-CRxg2b0Q", _ZN7WebCore21BlobDataFileReferenceC1ERKN3WTF6StringES4_) +STUB( + "3u2GoRYVhr8", + _ZN9Inspector25TimelineBackendDispatcherC1ERNS_17BackendDispatcherEPNS_32TimelineBackendDispatcherHandlerE) +STUB("3u3NAvbbSFk", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE5beginEv) +STUB("3u4M8ck9vJM", scePadReadHistory) +STUB("3uCFpGhR4oc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEaSERKS7_) +STUB("3uGJ6hKMv6Y", WKPreferencesGetSmartInsertDeleteEnabled) +STUB( + "3uIwm8ckbVc", + _ZN3sce7Toolkit2NP2V23TUS12getVariablesERKNS3_7Request12GetVariablesEPNS2_4Core8ResponseINS3_12TusVariablesEEE) +STUB("3uKk4puCQoQ", png_set_expand_gray_1_2_4_to_8) +STUB( + "3uL-6jkbL7E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEC2EPKS8_) +STUB("3uTgrMPM4K8", u_getTimeZoneFilesDirectory_67) +STUB( + "3uVjaJzGhqU", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEEiRNS2_10LibContextEPT_m) +STUB("3uW2ESAzsKo", _FXbig) +STUB( + "3ucoEWOMt40", + _ZN9Inspector14InjectedScript24getDisplayablePropertiesERN3WTF6StringERKS2_iibRNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime18PropertyDescriptorEEENS1_13DumbPtrTraitsISC_EEEE) +STUB("3ugZ5it8Orw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEC2Ev) +STUB( + "3uhntzjS90Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEmmEv) +STUB("3ulYXwNoFvc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEEppEv) +STUB("3umkqy4D8u4", mono_aot_Sce_Vsh_RemotePlayplt) +STUB("3upSZFX48Y4", _ZN3JSC7Symbols15boldPrivateNameE) +STUB("3upe0x3ZdiY", sceUpsrvUpdateGetUrlForFeatureListBeta) +STUB("3urTbaMTNyE", cairo_set_antialias) +STUB("3v--3NC-72Q", _ZN7WebCore16HTMLMediaElement14setCrossOriginERKN3WTF12AtomicStringE) +STUB( + "3v75cEdyGwY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "3v9AsJCwW1E", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13boolean3IsSetEv) +STUB( + "3vG8zX8X+Js", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEC1Ev) +STUB("3vHcGnZpiN8", sceSysUtilSendSystemNotificationWithAppInfo) +STUB("3vKaayQBdSk", nn_recvmsg) +STUB( + "3vWhfzCf5uo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE7reserveEi) +STUB("3vZUxLvBCsc", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V224TestForProfanityResponse11unsetStatusEv) +STUB( + "3vaXzJMwfIo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE5beginEv) +STUB( + "3vcCzp79yIU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE8pushBackERKS8_) +STUB( + "3vhkALZKoXk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEE5resetEPS9_) +STUB("3vjU6Wr-4Q8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE5clearEv) +STUB("3vkN07sxRNU", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification18NewGameDataMessageEE3getEv) +STUB( + "3vkVA4yIcpM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("3vmrvQ4rvgs", sceVoiceQoSGetRemoteEndpointAttribute) +STUB( + "3vpHlweG5iQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("3vsGWl6l7LY", _ZN7WebCore16ResourceResponseC2ERKS0_) +STUB("3vxmiyPKb90", sceDevUsbInitCP) +STUB("3vyRmRU3CL8", sceGameCustomDataDialogClose) +STUB( + "3w0nrldhcT8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEED1Ev) +STUB("3w8SkMfCHY0", sceHmdInternalGetDebugSocialScreenMode) +STUB("3wBlLV8DiaY", _ZN7WebCore11MediaPlayer12networkStateEv) +STUB( + "3wCEN9TNBU4", + _ZN15AbstractStorage14TwitterStorage15RemoveRecursiveERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("3wDKZRIqEA0", _ZNK9Inspector20InspectorTargetAgent14connectionTypeEv) +STUB("3wJTjzFg8lc", + _ZNK3sce2Np9CppWebApi11Matchmaking2V127ListUserTicketsResponseBody6toJsonERNS_4Json5ValueEb) +STUB("3wSPG3tsCoo", il2cpp_runtime_invoke_convert_args) +STUB("3wTtZ3c2+0A", sceUserServiceGetEventVsh) +STUB("3wUaDTGmjcQ", sceAppContentGetAddcontInfoListByIroTag) +STUB("3wWqYNGFofg", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku10labelIsSetEv) +STUB("3waAScJjcZw", + _ZN3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator12unsetNatTypeEv) +STUB("3wbWdO8rhwY", mono_method_header_get_code) +STUB("3wcYIMz8LUo", nrand48) +STUB("3wferxuMV6Y", CERT_VerifyValidityTime2) +STUB( + "3whB5927Jb0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE21intrusive_ptr_add_refEPS7_) +STUB( + "3wkE9hA-nSY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEED2Ev) +STUB("3wn42MWTzTs", sceAmprCommandBufferWriteCounterOnCompletion) +STUB( + "3wn7o2JYsM0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEC2Ev) +STUB( + "3wrc243UKiw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "3ww24CyKkKY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("3wxAGOWA5rw", WKPreferencesSetSimpleLineLayoutEnabled) +STUB( + "3wxUdl3zM6A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEppEi) +STUB( + "3x2ULW70STQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEE21intrusive_ptr_sub_refEPS7_) +STUB("3x4Zf5kAezE", + _ZN3sce2Np9CppWebApi7Matches2V124ResponseTeamMemberResultC2EPNS1_6Common10LibContextE) +STUB("3x99s2P78c8", _ZN3JSC7VMTraps8fireTrapENS0_9EventTypeE) +STUB( + "3xFeERioZeQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE5beginEv) +STUB("3xULm-emJqE", sceDiscIdGet) +STUB("3xUXnmUkXfo", _ZN3sce4Json5ValueC1ERKNS0_6ObjectE) +STUB("3xgqVi8Gd4g", WKPreferencesSetAsynchronousPluginInitializationEnabledForAllPlugins) +STUB("3xhF5sXHvj0", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE3endEv) +STUB( + "3xhwc0fdc58", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEC1Ev) +STUB( + "3xm-Za3Hv6I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEppEi) +STUB("3xmEsNrtkWs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEppEi) +STUB("3xoP69U8NGs", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession14setCustomData2EPKvm) +STUB("3xsE3RDNnQw", glDeleteFramebuffers) +STUB( + "3xsbtd1XEbU", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditionsD2Ev) +STUB("3xusIXS+iL0", _ZNK3JSC17DebuggerCallFrame4typeEv) +STUB("3xy2vPK0o6c", sceDebugTriggerVrCaptureDump) +STUB( + "3y-kXHTLabg", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V333CommunicationRestrictionStatusApi44ParameterToGetCommunicationRestrictionStatus16getaccountIdOrMeEv) +STUB( + "3y2j1Yr65bE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("3y2ysESiRFA", curl_easy_escape) +STUB("3yA8V7dy8Cc", scePlayReadyDomainCertEnumInit) +STUB( + "3yB34MDM3V8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEC1Ev) +STUB("3yBZ0VHyP6E", _ZL13global_locale) +STUB( + "3yHvP+7uifs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEEC2Ev) +STUB("3yQipX6ypKM", glBlendEquationSeparate) +STUB("3yRgYSwNWAE", _ZN7WebCore17CredentialStorage29originsWithSessionCredentialsEv) +STUB("3yRsfv-s0kA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEC2Ev) +STUB("3yTx5JA+cgg", sceMatMapDirectMemory) +STUB("3yVtByzKow4", _ZN7WebCore26ISOProtectionSchemeInfoBoxD1Ev) +STUB("3yXJHxARCvQ", ucnv_getMaxCharSize) +STUB("3yXKaQ46hyo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEED2Ev) +STUB("3yYVIdiqEQ4", jinit_marker_reader) +STUB( + "3ybkAgcTk2I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE10setContextEPNS2_10LibContextE) +STUB("3yfS8opxosg", _ZN7WebCore11MediaPlayer26activeSourceBuffersChangedEv) +STUB("3yj8qtF1D1o", _ZN3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer13setPlayerNameEPKc) +STUB("3yjZbSvan2g", getgroups) +STUB("3yjcqa6fjKM", _ZN7WebCore9HTMLNames18formnovalidateAttrE) +STUB( + "3ykXNW6h2Qc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEppEv) +STUB( + "3ykxR4l6NCo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEEdeEv) +STUB( + "3ylQqRkblgk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEED1Ev) +STUB( + "3ym9tbWtB+8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "3yncwV+Ar5Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEppEv) +STUB("3ypXX2M7P+w", _ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody8getGroupEv) +STUB("3yq8l1IxaTg", _ZTVN7WebCore6Path2DE) +STUB( + "3yrp9DjynbM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE5beginEv) +STUB("3yvDWOIJECc", monoeg_g_str_hash) +STUB("3ywnw-YQ-IQ", _ZN3sce2Np9CppWebApi7Matches2V121ResponsePlayerResults11setPlayerIdEPKc) +STUB("3yxLpdKD0RA", _ZnwmSt11align_val_t) +STUB("3yz2wrHB6ZQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V112OnlineStatusEEeqERKS7_) +STUB( + "3z0m-X+9xRs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEE7get_refEv) +STUB("3z2UGDyKklI", _ZN7WebCore8JSDOMURLD2Ev) +STUB( + "3z3MLZrg1js", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEE3getEv) +STUB("3z59UsQwbso", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEaSERS7_) +STUB("3z5EPY-ph14", _ZN3sce2np4CondC1Ev) +STUB( + "3z8dl2DYpGk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEEaSERS9_) +STUB("3z9F7LSLR7c", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V114ResultsVersionEEdeEv) +STUB("3zC91Jdt37w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEaSERS7_) +STUB( + "3zCMDbtD7ik", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB("3zGzS4eQlys", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12EventsClient6EventsEE3getEv) +STUB("3zIKKxAWo38", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicket9terminateEv) +STUB("3zLyTNiXgXc", + _ZN7WebCore18JSHTMLMediaElement15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB("3zM9I43piGc", sceCesUtf32leToBig5) +STUB( + "3zPBos4QJ2E", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE6finishEv) +STUB("3zPeShOSo64", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEEC2ERS6_) +STUB( + "3zR4vTtdYY0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEdeEv) +STUB("3zRdT3O2Kxo", sceNetSysctl) +STUB("3zTMWg3QCv8", mono_aot_Sce_Vsh_PartyCommonunbox_trampoline_addresses) +STUB( + "3zWKgu7LFMI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEE7get_refEv) +STUB( + "3zWdGHgeBCI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("3zWpyQga5N0", FcPatternGetBool) +STUB( + "3zeyj3Omj-s", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEplEm) +STUB( + "3zlAqu5xSdA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEC2ERKS7_) +STUB( + "3zlXB+Zq-BQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEEC2ERSA_) +STUB("3zoOAlAOZdg", mono_arch_nullify_class_init_trampoline) +STUB("3zqAv9mDpGc", uregex_openC_67) +STUB("3zrPYHbotag", GCC_except_table471) +STUB("3zuikvFn8GI", _ZN12video_parser7cVpUtil22vp_ff4_ftell_by_threadEPvPm) +STUB( + "3zwagqy2GH4", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("4+-kOCEB-vs", uregion_getRegionFromCode_67) +STUB("4+C6N+zAXfU", rgctx_fetch_trampoline_mrgctx_91) +STUB("4+EkBvy9rSA", fuse_reply_none) +STUB( + "4+KF3RYG1l4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE8capacityEv) +STUB("4+LUsvf0+7E", _ZN3sce2Np9CppWebApi7Matches2V113ChildActivity11unsetStatusEv) +STUB("4+SScYDT5Pg", FT_TrueTypeGX_Validate) +STUB("4+Y0-XRlarQ", monoeg_g_unsetenv) +STUB( + "4+YPGO3yUU4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("4+f471j+4aY", _ZN4Manx8ImeEventC1ENS0_12ImeEventTypeEPKcji) +STUB("4+h9EzwKF4I", scePthreadAttrSetschedpolicy) +STUB( + "4+kYgTLWe9g", + _ZN7WebCore17PageConfigurationC1EON3WTF9UniqueRefINS_12EditorClientEEEONS1_3RefINS_14SocketProviderENS1_13DumbPtrTraitsIS7_EEEEONS2_INS_17LibWebRTCProviderEEEONS6_INS_20CacheStorageProviderENS8_ISF_EEEE) +STUB("4+oswXtp7PQ", _ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED2Ev) +STUB("4+uBwOyTdMo", mono_btls_key_assign_rsa_private_key) +STUB( + "4+vzM1BwXIE", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUser17hasnpServiceLabelEv) +STUB( + "4+wRiPxdQi8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEppEi) +STUB("4+xG8NftNiY", _ZN7WebCore5Range6detachEv) +STUB("4+xPgKPSw6c", _ZN4IPMI4impl11SessionImpl18createAsyncContextEjijm) +STUB("4+y8-2NsDw0", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8_GetffldEPcRS3_S6_RSt8ios_basePi) +STUB("4+yz93np9rs", _WPrintf.fchar) +STUB("4-30FU3BDs0", WKPreferencesGetFetchAPIEnabled) +STUB("4-D93xv8nRk", _ZN3WTF24numberToFixedWidthStringEdjRSt5arrayIcLm123EE) +STUB("4-Dt9bW3f7g", mono_aot_Systemunwind_info) +STUB( + "4-Fllbzfh2k", + _ZZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8_GetffldEPcRS3_S6_RSt8ios_basePiE4_Src) +STUB( + "4-GEoBBCL04", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE5emptyEv) +STUB("4-GxiotYTWo", _sceLibcMalloc) +STUB("4-HiK3luXGI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEdeEv) +STUB("4-Kpf6DxtUU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEEC1Ev) +STUB( + "4-OUth-wTiI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEE11get_deleterEv) +STUB( + "4-PyHsIdnbk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEEC2ERSA_) +STUB("4-QpphokW6Y", __asan_report_exp_store_n_noabort) +STUB("4-WCEZyXPog", _ZN7WebCore11DisplayList18FillCompositedRectD2Ev) +STUB("4-gCTWs9z0g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEED2Ev) +STUB("4-hAUuiojY8", Java_java_io_FileInputStream_open) +STUB( + "4-iBsNG8+B4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("4-jiB8LTwSA", mono_aot_Sce_Vsh_DbPreparationWrapperunbox_trampolines_end) +STUB("4-kqaTFy5y0", _ZN3sce7Toolkit2NP7TssDataC2Ev) +STUB("4-lwWnkoH2Q", Java_com_sun_dvb_event_MHPEventQueue_run) +STUB("4-n293djcRY", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEEixEm) +STUB( + "4-r7g+tCYl8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE8pushBackERKS8_) +STUB( + "4-s+H6bu+dU", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi42ParameterToPutGameSessionsSearchAttributesC2ERS5_) +STUB("4-uQw+1hf8M", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V115LastUpdatedUser11setOnlineIdERK13SceNpOnlineId) +STUB("4-v5LYnR2Vg", _ZN7WebCore4PageD2Ev) +STUB("4-yhZ7aj3VE", sceFiosDebugDumpOp) +STUB("40+6pS1CK6w", WKContextGetWebSecurityFilter) +STUB("401M3Y7au70", + _ZN3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayerC2EPNS1_6Common10LibContextE) +STUB("4055yaUg3EY", sceAudioOutMasteringSetParam) +STUB("405M9x9WM80", sceVideoStreamingEngineMediaKeysCreateSession) +STUB("408v7lhN4QU", _ZN7WebCore21resolveCharacterRangeERKNS_11SimpleRangeENS_14CharacterRangeEt) +STUB("40BxQHhkVGI", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSessionD1Ev) +STUB("40Dl2PqHr6Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEED2Ev) +STUB("40GlkRTqRH0", sceNpManagerIntGetOnlineId) +STUB( + "40HB1xBnsIA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEdeEv) +STUB("40IZ5L7mLQo", sceUlpMgrVshUnmountCmd) +STUB( + "40J4dgsIlSM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEppEi) +STUB("40Ldv5RYfrI", WKPluginSiteDataManagerGetSitesWithData) +STUB("40NtJm4om0A", kldsym) +STUB( + "40NzVTw3gUE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEE7add_refEv) +STUB( + "40UClN+sTTQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEmmEv) +STUB( + "40WJrqMfW5U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEixEm) +STUB("40Wa2neSLM0", FT_New_Memory_Face) +STUB( + "40h4voKpWKI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE7popBackEv) +STUB("40iQek4o5ME", _ZN3WTF13printInternalERNS_11PrintStreamERKNS_10StringViewE) +STUB( + "40j-usQaBwE", + _ZN9Inspector33ApplicationCacheBackendDispatcher6createERNS_17BackendDispatcherEPNS_40ApplicationCacheBackendDispatcherHandlerE) +STUB("40j64VDDOVw", + _ZN7WebCore24CoordinatedGraphicsLayer17didChangeGeometryENS0_17FlushNotificationE) +STUB( + "40myMUnBnM8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE8capacityEv) +STUB("40pzekkxYAw", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersC2ERS5_) +STUB("4119tDJ1m6I", JSStringIsEqualToUTF8CString) +STUB("411l8u+aGo4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEED2Ev) +STUB("4164qgNnvv8", _ZN3sce2Np9CppWebApi6Common8IteratorIiEC1EPi) +STUB("416vjcKYsfo", glUniform2iv) +STUB( + "417J3H855-4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEC1Ev) +STUB("417JucZaE3g", _ZN3sce2np9RefObjectD2Ev) +STUB("419zeSm4NX0", _ZN7WebCore14StaticNodeListnwEm) +STUB("41AsKYHp-QM", + _ZN3sce2Np9CppWebApi14SessionManager2V123MemberWithMultiPlatformC1EPNS1_6Common10LibContextE) +STUB("41CVMRinjWU", sceNpManagerIntGetNpIdSdk) +STUB( + "41CZbi0cT18", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEmmEv) +STUB("41DAwvtJO4w", _ZN3JSC22FullGCActivityCallbackC1EPNS_4HeapE) +STUB( + "41DMez0erGg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEC2Ev) +STUB("41F11lDW4dM", _ZNSt9_FacetptrISt8numpunctIwEE6_PsaveE) +STUB( + "41GQClPYCgY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE6resizeEj) +STUB("41HB-w-ddWE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEED1Ev) +STUB("41HGBvD2Fak", _ZN3sce2np14JsonNumberImplD2Ev) +STUB( + "41LwbZUiEq4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEC2ERS7_) +STUB("41Ny9FV0dHg", ures_openDirectFillIn) +STUB("41O00lD-QV4", _ZStL5spfunRSt8ios_basei) +STUB( + "41SCbMhrPkw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE10setContextEPNS2_10LibContextE) +STUB("41SqJvOe8lA", _FDunscale) +STUB("41XIke70jMw", _ZN7WebCore16convertToIntegerIsEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB("41ate1mmCjM", _closeSecondaryStream) +STUB("41gDrpv1pTw", sceNpSetAdditionalScope) +STUB("41kc2YhzZoU", sceUserServiceSetPadSpeakerVolume) +STUB("41mmriasMRc", + _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession8fromJsonERKNS_4Json5ValueE) +STUB("41mqfuenzj4", _ZN3sce2Np9CppWebApi6Common6String5clearEv) +STUB("41q4BQrLOyM", sceNpEntitlementAccessPollConsumableEntitlementInfo) +STUB("41qbwcyFKBc", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_16NetStateDetailedEED2Ev) +STUB( + "41tdktSWVk0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEC2ERS7_) +STUB( + "41tnd+xLKsQ", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities13ErrorResponse8setErrorERKNS1_6Common12IntrusivePtrINS4_5ErrorEEE) +STUB( + "41u9csBgLxo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEED2Ev) +STUB("41uFpyfOR7s", _ZN7WebCore12JSTimeRanges9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("41x1hieiqCI", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetAccountId2OnlineIdC2Ev) +STUB("42+F4YDx7-4", bemp2sys_pesparser_release) +STUB( + "42-alsc7lB8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEmmEv) +STUB("421cr+-5Mus", sceVideoOutGetHdmiMonitorInfoNoMask_) +STUB("42HcmdjlDmc", WKContextMenuItemGetChecked) +STUB("42JsosEueOQ", JSObjectMakeRegExp) +STUB("42K0F17ml9c", sceUserServiceGetPbtcMondayHoursEnd) +STUB("42KSa1VES+E", mono_md5_final) +STUB( + "42KgBvyQMDM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEeqERKS9_) +STUB("42NQScvhE8o", _ZN12video_parser5vpcom11AtomicNop64EPy) +STUB( + "42R55riuS7k", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEplEm) +STUB("42RAcFre-RA", udat_getSymbols_67) +STUB( + "42Sfb4MQo1A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEppEv) +STUB("42WPLbCm5tk", _ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetail14setDisplayNameEPKc) +STUB("42YkUouoMI0", scePthreadMutexSetspinloops) +STUB("42fR7c+qPuo", _Z32sceGpuDebuggerRegisterShaderCodePKN3sce3Gnm16PsStageRegistersEjPKc) +STUB("42nlgcQ5Rv8", _ZN9Inspector15InspectorTargetC2Ev) +STUB( + "42tdS4N6B6o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEE11release_refEv) +STUB("42u6gUWvUTg", WKContextConfigurationSetCookieStoragePath) +STUB("42v2N7UFeOE", _ZTVN12video_parser13cVideoPathMsvE) +STUB( + "42vFGzB1i9w", + _ZNK3sce2Np9CppWebApi14SessionManager2V128ResponseGameSessionSpectator6toJsonERNS_4Json5ValueEb) +STUB("42whUnOrDXg", + _ZN12video_parser20cVideoContentFactory22_createVideoContentMp4EPvPPNS_13iVideoContentE) +STUB("42xMaQ+GLeQ", sceImeVshGetPanelPositionAndForm) +STUB( + "439ahXKpmCM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEEC1ERKSA_) +STUB("43B0VnF0P7E", _ZN3sce2np12NpTitleTokenD2Ev) +STUB("43B0lauksLY", sceNpManagerIntGetTicketA) +STUB("43D-Qbm3Tos", _ZNK3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead13teamNameIsSetEv) +STUB("43EN7S3pLf4", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110ResultTypeEEC1Ev) +STUB( + "43GAFClJ-Ag", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi44ParameterToPatchGameSessionsSearchAttributesC1Ev) +STUB("43GG5UMdsJc", _ZN3sce7Toolkit2NP2V27Session7Request22GetReceivedInvitationsC1Ev) +STUB("43MESLndGvQ", _ZN3sce4Json5Array8iterator7advanceEm) +STUB("43MWqYNStHU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEEC1EPNS2_10LibContextE) +STUB( + "43O2OMxnMeg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEED2Ev) +STUB( + "43OM6nLDRpI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE8capacityEv) +STUB( + "43Oq5Wty5Ak", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEEC2ERKS9_) +STUB("43PYQ2fMT8k", _WStopfx) +STUB( + "43Rd4p4RhjI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEixEm) +STUB( + "43RfCvq5tdc", + _ZN3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBody8fromJsonERKNS_4Json5ValueE) +STUB( + "43V5peTgkCQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("43WJ08sSugE", sceAgcDcbWaitOnAddressGetSize) +STUB("43XXEXaONEQ", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEEC1Ev) +STUB( + "43e1+0XIC0I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "43hw9p2+7VI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEEC2ERSA_) +STUB( + "43i9KN2izZM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEC2EPS8_) +STUB( + "43iZhVMHUxk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEptEv) +STUB("43kV+5bJS-c", YGNodeGetBaselineFunc) +STUB("43mnfTQPCbw", hb_buffer_get_glyph_positions) +STUB("43rL1NB1S4I", _ZNK12video_parser5vpcom8datetime8DateTimeplERKS2_) +STUB("43u-nm1hQc8", _Ldbl) +STUB( + "43wP6TVRMPs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE5beginEv) +STUB( + "443MXrJ11sw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE21intrusive_ptr_add_refEPS9_) +STUB("444+v4xOtlA", WKPageLoadedSubresourceDomains) +STUB( + "446tDdFI7BM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEEC2ERSA_) +STUB("449uAhTZ1oc", + _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead19representativeIsSetEv) +STUB("44FL0PIYP80", scePlayReadyCdmiDecryptMultipleOpaque) +STUB( + "44GzUmcmclo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEC1EPNS2_10LibContextE) +STUB( + "44LK0qMfmYo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEEcvbEv) +STUB("44NqyrtBMMk", _ZN3JSC27numberOfExceptionFuzzChecksEv) +STUB("44PCVgTBBCw", sceShellCoreUtilIsKilledOrSuspendedByLogout) +STUB( + "44TwlT0ZO1o", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE5beginEv) +STUB( + "44WHEtGWQyU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEaSERKS9_) +STUB("44WhlN1JMFI", il2cpp_gchandle_get_target) +STUB( + "44XmCVZHc1M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEC2Ev) +STUB( + "44aq1JSf6Fs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEEaSERSA_) +STUB( + "44eTAf9s61U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEC1EPS8_) +STUB("44ekkJ11Dzc", __asan_stack_malloc_8) +STUB("44f4XR6IFVo", _ZN7WebCore21DiagnosticLoggingKeys27createSharedBufferFailedKeyEv) +STUB( + "44h7kOOwZ+s", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi15recordLargeDataEiRKNS4_47ParameterWithBinaryRequestBodyToRecordLargeDataERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_27RecordLargeDataResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("44hlATrd47U", posix_spawnattr_init) +STUB( + "44o3ylYGNQQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEEC1ERS9_) +STUB("44rCCk2fBaQ", + _ZN3sce2Np9CppWebApi7Matches2V120RemovedPlayerFactory7destroyEPNS3_13RemovedPlayerE) +STUB("44sDfIlDN4Y", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEE3getEv) +STUB( + "44u-aoel+t8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE5emptyEv) +STUB( + "44vO54zyfwM", + _ZN7WebCore17SubresourceLoader6createERNS_5FrameERNS_14CachedResourceEONS_15ResourceRequestERKNS_21ResourceLoaderOptionsEON3WTF17CompletionHandlerIFvONSA_6RefPtrIS0_NSA_13DumbPtrTraitsIS0_EEEEEEE) +STUB( + "44xCpFjczm8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEE3getEv) +STUB("44yS2Vg7cTo", + _ZN3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform11setPlatformEPKc) +STUB("44ygghy3b4E", WKDownloadGetOriginatingPage) +STUB( + "44zdIQHDcAQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEC1Ev) +STUB( + "450NUgxBpIE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEC2EPS8_) +STUB( + "458PyBG-vcY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE5eraseENS2_13ConstIteratorIS9_EERSC_) +STUB("458yjI+OECI", sceNpUtilJidToNpId) +STUB("459Hq2z-2LU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEEixEm) +STUB("45E7omS0vvc", iswctype) +STUB("45F1hLWD8TU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEaSERS7_) +STUB("45Jm93Q-sHQ", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities5Error8fromJsonERKNS_4Json5ValueE) +STUB( + "45M4ITcSusA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEE11get_deleterEv) +STUB("45M67FoqnUo", scePs2EmuMenuDialogGetStatus) +STUB( + "45NCCTwKOKw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEED2Ev) +STUB("45PKa3aJnSw", sceNpSessionSignalingManualUdpJoin) +STUB("45QrFvUkrjg", sceSystemServiceDisablePartyVoice) +STUB("45R8R4xDgOo", EVP_sha512) +STUB("45XFIt8UG6k", _ZN7WebCore12SharedBuffer6createEPKcm) +STUB("45Yurf7lZmU", sceKernelAllocateToolMemory) +STUB( + "45dp7bBbxbA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB("45gE-Md7pGc", sceDtcpIpCancelActivate) +STUB("45ggEzakPJQ", sceNetSocketClose) +STUB( + "45m6XhM1J6k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEC2ERKS7_) +STUB("45mqCXz5uqA", mono_aot_Sce_Vsh_VrEnvironmentplt_end) +STUB("45wjxz039z4", mono_aot_ReactNative_Vsh_Commonunwind_info) +STUB("45yMcIUmYUQ", _ZN3JSC7JSScope6toThisEPNS_6JSCellEPNS_14JSGlobalObjectENS_8ECMAModeE) +STUB("45z6WoZYP-A", _ZN7WebCore11RoundedRectC1ERKNS_10LayoutRectERKNS0_5RadiiE) +STUB("46+D3t4woE4", Java_com_sun_dvb_event_UserEventRegistry_keyCodeUnregistered) +STUB("462D3ipIoDk", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_20ChallengeRecvDetailsEE17getAdditionalInfoEv) +STUB("4649E4V9B-U", rgctx_fetch_trampoline_mrgctx_44_p) +STUB("464OLzpKUHs", _ZN7WebCore13TextIndicatorD2Ev) +STUB("4651HpFw2z0", mono_aot_I18N_Raremethod_addresses) +STUB("465db23M9Jo", _ZN23sceMetadataReaderWriter8Metadata8getFieldEiRSsRNS_5ValueE) +STUB("467YVSBcllE", _ZN3JSC7Symbols19toStringPrivateNameE) +STUB("46HN6HdESf8", mono_aot_System_Runtimeplt) +STUB( + "46NKeywVaZk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEED1Ev) +STUB( + "46QBdoO5+go", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEC1Ev) +STUB( + "46RGeLAySQk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEED2Ev) +STUB( + "46UGmhbbidE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEC2EPNS2_10LibContextE) +STUB("46Y8UjUJPK0", _ZN3WTF6Thread16registerGCThreadENS_12GCThreadTypeE) +STUB("46YOQvNCaHU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEaSERKS7_) +STUB( + "46YX6oW2aP4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("46bLh4C9Dio", _ZN7WebCore10JSDocumentD1Ev) +STUB("46haDPRVtPo", _ZTSSi) +STUB( + "46i6e7SFPeA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEdeEv) +STUB( + "46iThHANkoU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEptEv) +STUB("46mktH-IzbQ", _ZN12video_parser5vpcom3rtc21ConvertLocalTimeToUtcEPKmPm) +STUB( + "46ovVReyg94", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEppEi) +STUB( + "46wuHQi+9mw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEmmEv) +STUB("46yEGJfgnac", _ZN12video_parser13cVideoMetaMP414getChapterInfoERjPNS_11VpChapter_tE) +STUB( + "470kKfT0rBg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEEC1ERSA_) +STUB("474Gw2f9zYw", sceFsTransactionCancel) +STUB("47B8y-Mqy78", EC_GROUP_new_by_curve_name) +STUB( + "47EougbkLbs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEplEm) +STUB("47H3Xt0ke9s", _ZN3WTF14AtomStringImpl11addSlowCaseERNS_10StringImplE) +STUB( + "47IiWKxJsFo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "47JlRwShq3M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEED2Ev) +STUB("47K1RAe-Oc4", mono_aot_ReactNative_Modules_Vsh_Gct_Telemetryunbox_trampolines_end) +STUB( + "47KxLwF9to4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEmmEv) +STUB("47OujMZvKOE", _ZN3JSC18GCActivityCallbackC2EPNS_4HeapE) +STUB("47RvLSo2HN8", _ZNSt8bad_castD1Ev) +STUB("47S+J03eask", sceFaceShapeTrack) +STUB("47UAEuQl+iI", sceNpUniversalDataSystemTerminate) +STUB("47WhLC3+uRA", _ZN7WebCore13MIMETypeCacheD2Ev) +STUB("47bs4XNAt0g", Java_java_io_RandomAccessFile_length0) +STUB("47cPqlN++CI", JVM_ConstantPoolGetFloatAt) +STUB("47jR75uXOFs", sceDtcpIpOpenContentAsync) +STUB( + "47jWFqMl27I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE4sizeEv) +STUB("47lUe3tPqY0", _ZN7WebCore11DisplayList17FillRectWithColorD2Ev) +STUB( + "47pl9PVxGNk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB( + "47rPvIfhC18", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("47s0O9-6E-0", _ZNK3sce4Json5Value7getRootEv) +STUB("47uOi6A35Nk", mono_get_single_class) +STUB( + "47xcpNf0Ry8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEEdeEv) +STUB("48+pt04Ko4A", sceNpUniversalDataSystemIntRecordArraySetInt32) +STUB("48-miagyJ2I", sceAudioInDeviceOpenEx) +STUB("4811NeEERqs", _ZN3NTF17URLRequestHttpJobC2Ev) +STUB( + "484E33Xci1I", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("484wyluLvuc", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsD2Ev) +STUB( + "487ptKXbF-8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEE11release_refEv) +STUB("488namPY+tQ", _ZNK9Inspector14ConsoleMessage7messageEv) +STUB("489c-YAqtqQ", u_getFC_NFKC_Closure_67) +STUB("48Bh7rcKtuY", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getBoolean7Ev) +STUB("48CUM9ft8Ns", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ChildActivityAvailabilityEEmmEv) +STUB( + "48CuE-yZMTM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE4sizeEv) +STUB("48F2MuYRtP8", _ZThn16_N9Inspector21InspectorConsoleAgent7disableERN3WTF6StringE) +STUB( + "48I0JlCIR3Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEE3getEv) +STUB( + "48UlDlmaidQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("48WiSdjl-uQ", _ZN7WebCore23ISOSchemeInformationBox5parseERN3JSC8DataViewERj) +STUB("48Z12OPcEag", __remainder) +STUB("48cD6hKl8VQ", g_file_test) +STUB("48hqfJY4ZT0", _ZN7WebCore28BackingStoreBackendCairoImplD1Ev) +STUB("48qKr9oyIbQ", sceMbusConvertToLocalDeviceId) +STUB("48qqauT8IDk", JVM_DTraceActivate) +STUB("48rKLK1urQE", il2cpp_image_get_filename) +STUB("48sw7nusiXs", _ZNK3WTF6String11toIntStrictEPbi) +STUB("48t7NHsyEsk", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V113ErrorResponse6toJsonERNS_4Json5ValueEb) +STUB("48ujxTli9ao", sceCesUtf16leToSJis) +STUB("48vx--WiBLU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEC1Ev) +STUB( + "48xOTJNKul0", + _ZN7WebCore12SharedBuffer6createEON3WTF6VectorIcLm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("48xaakU1ajk", _ZN3sce2Np9CppWebApi12Leaderboards2V15Entry21unsetRecordedDateTimeEv) +STUB( + "49+g+EYEvf8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEE7get_refEv) +STUB("490GyRIQAu0", _ZN7WebCore18TextureMapperLayer14setAnchorPointERKNS_12FloatPoint3DE) +STUB( + "490JpNaqsAs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEaSERKS7_) +STUB("496OAXH9THg", sceVideoRecordingGetSupportInfo) +STUB("497YSTC2NTI", _ZN3sce7Toolkit2NP2V212EventsClient11EventInGameC2ERKS4_) +STUB( + "49BVdNq003o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEE7get_refEv) +STUB("49G9TmtmutI", uhash_initSize) +STUB("49GAz4KpvyA", JSValueGetTypedArrayType) +STUB( + "49OOE6mYknw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "49OXX2p1dVQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEC1Ev) +STUB("49SRuYkw6kI", getloadavg) +STUB("49W0007WCSc", _ZN7WebCore18TextureMapperLayernaEmPv) +STUB( + "49ZmkMSvEow", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE5clearEv) +STUB("49buAkN3HZI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEE7add_refEv) +STUB("49fw9U8URo4", g_GlobalDataPoison) +STUB( + "49hB1EObbfA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "49kLX6jffbc", + _ZN3sce2Np9CppWebApi14SessionManager2V157PostGameSessionsSessionIdSessionMessageRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_50PostGameSessionsSessionIdSessionMessageRequestBodyEEE) +STUB( + "49l7T-LljeI", + _ZN3sce2Np9CppWebApi14SessionManager2V130MemberWithMultiPlatformFactory7destroyEPNS3_23MemberWithMultiPlatformE) +STUB( + "49oqCKfJRyo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE8pushBackERKS8_) +STUB( + "49tH6OfdmOo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE4termEv) +STUB( + "49woOumLCHw", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V314MissingElementC2EPNS1_6Common10LibContextE) +STUB( + "49zLKEO-dZM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEC1Ev) +STUB("4A-G9UeZp5k", _ZN7WebCore11DisplayList14ConcatenateCTMD1Ev) +STUB( + "4A0KRyXDmQE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEE11release_refEv) +STUB("4A9ALSrfr7k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEEC2EPKS6_) +STUB("4AAcTU9R3XM", scePlayGoSetInstallSpeed) +STUB("4ABedbtz7GE", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEEdeEv) +STUB( + "4AFThLW28xQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEED1Ev) +STUB("4AIjdLthswQ", + _ZN9Inspector17ScriptDebugServer27dispatchBreakpointActionLogEPN3JSC9ExecStateERKN3WTF6StringE) +STUB("4AJahaAsmhM", _ZN3JSC7Symbols21instanceOfPrivateNameE) +STUB("4ALhrxFo5Gk", JVM_DefineClassWithSource) +STUB( + "4ANCdHsrKaA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEE3getEv) +STUB("4AO3zU38Gd8", _ZN3WTF6String6appendEh) +STUB("4AP0X9qGhqw", sceHmdInternalSetM2LedBrightness) +STUB("4ARueaFcXXA", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110TaskStatusEEdeEv) +STUB( + "4AVnysOJvFU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE10setContextEPNS2_10LibContextE) +STUB( + "4AXXNpU2hCE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEneERKS9_) +STUB("4AYAkSLP2rU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEdeEv) +STUB("4Ab3tEoXZAo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEE7add_refEv) +STUB( + "4AbrcjZu+mA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEC2Ev) +STUB("4AeMF+7VG38", _ZN3JSC14SourceProviderD0Ev) +STUB( + "4AmW-ARsRpY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEEcvbEv) +STUB( + "4AokO9oEBKE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEEC1EPS8_PNS2_10LibContextE) +STUB( + "4Ap73-666mU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEE7add_refEv) +STUB("4Argi6cCJow", _ZN3sce7Toolkit2NP2V27Session7Request4JoinC2Ev) +STUB("4AzDMjaSMI4", + _ZNK7WebCore27TranslateTransformOperation5applyERNS_20TransformationMatrixERKNS_9FloatSizeE) +STUB("4B+XIBeq0kw", _ZN3JSC7Symbols16shiftPrivateNameE) +STUB("4B-lI3nzKgw", _ZN7WebCore15JSSVGSVGElement11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB( + "4B2rjkpduJY", + _ZN3sce2Np9CppWebApi7Matches2V126CreateMatchResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_19CreateMatchResponseEEE) +STUB("4B3n3+l+wMo", rgctx_fetch_trampoline_rgctx_83) +STUB( + "4B4bXOgIKYE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB("4B7BVVH0nds", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEEC2ERS7_) +STUB( + "4B7ym4T2euw", + _ZN3sce7Toolkit2NP2V24Core16terminateServiceERKNS3_7Request16TerminateServiceEPNS3_8ResponseINS3_5EmptyEEE) +STUB("4B871WWhFkY", coil_clock_gettime) +STUB("4B9olYHnHnQ", png_set_bKGD) +STUB("4BAhDLdrzUI", sceFontFtSupportTrueType) +STUB("4BAhWOEnY4M", _ZN7WebCore8Settings44setHiddenPageDOMTimerThrottlingAutoIncreasesEb) +STUB("4BBiN3LsIDg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge13ChallengeDataEED1Ev) +STUB("4BERqYMNCNU", BN_sub_word) +STUB("4BFLpxNpLtk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEaSERKS9_) +STUB( + "4BGzlWzaF+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEED2Ev) +STUB( + "4BIhuisjsnM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEED1Ev) +STUB("4BJDyylvnE4", mono_aot_Sce_Vsh_EventAppunbox_trampolines) +STUB("4BJEqF66ONc", _sceLibcLockInitialize) +STUB( + "4BNauKMReyA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEED1Ev) +STUB( + "4BODj8Tr9ZY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("4BTYS80wlsQ", _ZN3sce7Toolkit2NP2V24Core7Request16TerminateServiceC1Ev) +STUB("4BUuvbmiXWs", uhash_open) +STUB("4BWlQLirVAA", WKBundlePageSetDiagnosticLoggingClient) +STUB( + "4Ba6a5Um83c", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEneERKS9_) +STUB("4Bau4ZHasmo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEED2Ev) +STUB("4Bc9qxY6JOw", mono_profiler_install_class) +STUB("4BcFLyk6Chg", _ZTV25MmsFileUpdaterFsOperation) +STUB("4BlE4IPXP0Q", sceHmd2GetDeviceInformationByHandle) +STUB("4BlZurolOAo", sceAudioOut2GetSpeakerArrayCoefficients) +STUB( + "4BuSGeES6pA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEC2EPNS2_10LibContextE) +STUB("4BuSoL+GHSE", png_set_filter) +STUB("4Bvq8TB95oA", _ZNK7WebCore9FrameView17useDarkAppearanceEv) +STUB( + "4ByzwBWhM3s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEE5resetEPS9_) +STUB( + "4BzRHCb6hg8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE10setContextEPNS2_10LibContextE) +STUB("4BzqFCefFtM", _ZN3sce7Toolkit2NP2V28Commerce9Container5resetEv) +STUB("4C5ObvulD3I", cairo_matrix_translate) +STUB("4C6UJHi60zI", mono_aot_Sce_Vsh_SystemLoggerUtilWrapperjit_got) +STUB("4C7We-mJFQI", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessionsD1Ev) +STUB("4C8BBKCcM6A", sceCompositorSetFilterType) +STUB( + "4C8gNu-61t4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEppEv) +STUB("4CD5YSD9fvg", _ZNK7WebCore16HTMLInputElement15suggestedColorsEv) +STUB( + "4CPuhJiw9tA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEC1Ev) +STUB("4CVc6G8JrvQ", _Atomic_flag_clear) +STUB("4CWz9cxy2-0", _ZN3sce2Np9CppWebApi7Matches2V116RequestMatchTeam8fromJsonERKNS_4Json5ValueE) +STUB( + "4CZ7uqiUCzY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEC1Ev) +STUB("4Cfh-pnfsco", _ZN7WebCore17HTMLOptionElement8selectedEv) +STUB("4Chwxhh9oyE", mono_aot_appunbox_trampoline_addresses) +STUB("4CiIyjuiGiE", _ZN9Inspector18InspectorHeapAgentnwEm10NotNullTagPv) +STUB( + "4ClN4aYoaK0", + _ZN7WebCore44computeMinimumScaleFactorForContentContainedERKNS_18ViewportAttributesERKNS_7IntSizeES5_) +STUB( + "4Cpgz2gDAYQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "4CqeiXE9YkU", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEEiRNS2_21DownStreamTransactionIT_EE) +STUB("4CqfNm3pisU", sceNpUtilGetWebTraceSetting) +STUB( + "4CtfVM9lLZ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEEC2Ev) +STUB("4CzZUVleMcE", sceShellCoreUtilNotifyFarsightUIDone) +STUB("4D+ibdbZrhQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE5beginEv) +STUB("4D00o5x9qrg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEC2ERS7_) +STUB( + "4D0evDfSz2U", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE5eraseENS2_8IteratorIS6_EERS9_) +STUB("4D43aF6t+xE", mono_aot_Sce_Vsh_FileSelectorAdvancejit_code_start) +STUB("4D9Dog+o+cg", sceDeci4hDrfpClosedir) +STUB("4DC5IwRCIcI", mono_aot_ReactNative_Modules_Vsh_Gct_Telemetry2jit_got) +STUB("4DE+nnCVRPA", _ZN3sce2np9WorkQueue4StopEv) +STUB("4DEzfatKlS0", _ZN7WebCore23DeferredStylePropertiesD2Ev) +STUB( + "4DFuFsIr-JA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEC1Ev) +STUB("4DJ49tOuOQc", _ZNK7WebCore12ChromeClient27createDisplayRefreshMonitorEj) +STUB("4DKuyN5inxQ", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V117ConnectionQualityC2EPNS1_6Common10LibContextE) +STUB( + "4DLxEa3BNY0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEEdeEv) +STUB("4DM06U2BNEY", sceKernelCancelSema) +STUB("4DMpPzLN8V8", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V114ResultsVersionEEptEv) +STUB("4DYQZqufDdI", + _ZNK7WebCore22SkewTransformOperation5applyERNS_20TransformationMatrixERKNS_9FloatSizeE) +STUB( + "4DhGHHZbPhk", + _ZN3sce2Np9CppWebApi7Matches2V133RequestTeamMemberStatisticFactory6createEPNS1_6Common10LibContextEPKcRKNS5_6VectorINS5_12IntrusivePtrINS3_19AdditionalStatisticEEEEEPNSB_INS3_26RequestTeamMemberStatisticEEE) +STUB( + "4DmFe+YxOt8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEptEv) +STUB("4Dp8cC4noCs", _ZN7WebCore8Settings38setHiddenPageDOMTimerThrottlingEnabledEb) +STUB("4E+7+mWiRuA", sceNpSnsDailymotionDialogTerminate) +STUB("4E+BWsisyyE", mono_aot_Sce_Vsh_Messages_DbAccessLibunbox_trampoline_addresses) +STUB("4E-foFz4xFA", YGNodeStyleGetAlignItems) +STUB("4E3QY4FpyPs", mono_aot_Sce_Vsh_VideoFramework_Platformunbox_trampolines_end) +STUB("4EFg8xX72y4", + _ZThn24_N9Inspector22InspectorDebuggerAgent17setOverlayMessageERN3WTF6StringEPKS2_) +STUB( + "4EIq+L2sMM8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE6resizeEj) +STUB("4EeL6RsrWs0", mono_perfcounters_init) +STUB("4EefIMYCqjM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEE7get_refEv) +STUB( + "4EgB2myNw30", + _ZN9Inspector25DebuggerBackendDispatcher16removeBreakpointElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("4Ej8DQ4dEKU", _ZN12video_parser18cMp4FFLHndlManagerD1Ev) +STUB("4EkPKYzOjPc", _ZNSt8ios_base6_IndexE) +STUB( + "4EkTIw+Cg-o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "4EkiThR+-0o", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE21intrusive_ptr_add_refEPS7_) +STUB( + "4EthPpYHA6Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEC2ERS7_) +STUB("4Eur8eZ9By0", _ZN7WebCore24CoordinatedGraphicsLayer37selfOrAncestorHaveNonAffineTransformsEv) +STUB( + "4EwX43ywdpc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEEC1Ev) +STUB( + "4Ez9WBSasHk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE5emptyEv) +STUB("4EzrAohwbaI", _ZNK7WebCore20ResourceResponseBase18cacheControlMaxAgeEv) +STUB("4F-9eVaDVCc", _ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForReadD2Ev) +STUB("4F-Zlt62BWM", ucsdet_open_59) +STUB("4F11tHMpJa0", _Strerror) +STUB("4F7uYHxulZ4", sceDbgAmprAprGetNumberOfErrors) +STUB("4F9pQjbh8R8", _Fwprep) +STUB("4FFsFmw5Qg0", _ZNK3WTF3URL15encodedPasswordEv) +STUB("4FH5hyIXo9k", cairo_rotate) +STUB( + "4FR0WyuPqTo", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicket10initializeEPNS1_6Common10LibContextEPKc) +STUB("4FTNJKyJYaE", _ZN3JSC8FreeList14initializeBumpEPcj) +STUB( + "4FU0PW3IvMo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEED2Ev) +STUB("4FUZ+c52d2k", sceBluetoothHidRegisterDevice) +STUB("4FW9T-ft3fk", YGConfigIsExperimentalFeatureEnabled) +STUB( + "4FX3wmDo3Sc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEppEv) +STUB("4Fa+ZmJ8qn4", ucnv_getInvalidUChars) +STUB( + "4FaJEcEJ14Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEC1EPS8_) +STUB( + "4Fj212IzDog", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEC1EPKS8_) +STUB( + "4FjwWTSjtf8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEC2Ev) +STUB("4FkTHj5YRdY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE3endEv) +STUB( + "4FkbTKpwCCs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEppEv) +STUB("4FmDzhnUF+4", RSA_padding_add_PKCS1_PSS_mgf1) +STUB("4Fn5bmVcmS8", + _ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_33ActivityFeedSharedScreenshotStoryEE8max_sizeEv) +STUB("4Fp5Pq1VTWs", _ZN3WTF9MediaTimenwEmPv) +STUB("4FrZfvvYHCI", u_strToLower) +STUB("4Fu8tHW+u-k", sceNpUniversalDataSystemEventPropertyObjectSetFloat64) +STUB( + "4G0kLEJlmV8", + _ZN3sce2Np9CppWebApi11Matchmaking2V130SubmitTicketRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_23SubmitTicketRequestBodyEEE) +STUB("4G37EIMMD+Q", sceVideoOutSysUpdateRenderingMode) +STUB( + "4GDCgaMIhh0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEEC1ERSA_) +STUB( + "4GGmSKYOnhY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEneERKS9_) +STUB("4GN2t+VJdx8", _malloc) +STUB( + "4GW5a4NdD1Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEED2Ev) +STUB( + "4GWvJ2HQq4A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEC2EPNS2_10LibContextE) +STUB("4GWw35CYKmM", mono_btls_x509_get_version) +STUB("4GZ9O-OrfzE", _ZN3sce2np3ipc17ServiceIpmiClient13WaitEventFlagEijmjPmj) +STUB("4GbIwW5u5us", _ZNSt13basic_ostreamIwSt11char_traitsIwEE6sentryC2ERS2_) +STUB( + "4GdlGMgWm2Y", + _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest15setMatchResultsERKNS1_6Common12IntrusivePtrINS3_28RequestTemporaryMatchResultsEEE) +STUB("4Gj1pCDEEFk", _ZN7WebCore16ISOSchemeTypeBoxD2Ev) +STUB("4Gv3tXZ2WKI", UCNV_FROM_U_CALLBACK_SUBSTITUTE) +STUB("4H0RvhaJttI", _ZN8meta_gen17CommonFsOperation13storeFileSizeEl) +STUB("4H0h0tPjIk0", sceNpSnsYouTubeDialogClose) +STUB("4HD3KMh8YCU", _ZN7WebCore7Element18getAttributeNodeNSERKN3WTF10AtomStringES4_) +STUB( + "4HNBB20jqbg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "4Hc4bem8Fbg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("4Hdxc1OeY5I", ures_openNoDefault_67) +STUB( + "4Hg+jQhxFec", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeaders7destroyEPS5_) +STUB("4HjgsN0kYF8", uloc_countAvailable_59) +STUB( + "4HzG95oFtnA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEC1Ev) +STUB("4HzS6Vkd-uU", CA_MGMT_extractAllCertDistinguishedName) +STUB("4I0nA7IwpiQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEC1ERKS7_) +STUB( + "4I1lhC6dTlo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("4I62ddmPmbk", _ZN4IPMI4impl11SessionImpl19destroyAsyncContextEi) +STUB("4I8vEpuEhZ8", sceHttpDeleteTemplate) +STUB( + "4ICTnIU8HqI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB("4IGO2LPD3h8", sceCameraGetCalibDataForEve) +STUB( + "4IL5xRHsn4A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEED1Ev) +STUB("4IQX82B-Kc4", _ZN4Manx11MediaPlayer11bytesLoadedEv) +STUB("4ISBwqOsxVU", _ZN3JSC12HeapCellTypeC1ENS_14CellAttributesE) +STUB("4ITASgL50uc", lroundl) +STUB("4IXuUaBxzEg", sceUserServiceGetGlsIsRecDisabled) +STUB("4IdW0jsDZ5o", _ZN7WebCore14JSVoidCallbackD2Ev) +STUB( + "4Im6j3SAWTs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEED2Ev) +STUB("4IsRgjK5hsU", sceVideoCoreInterfaceCloseVideoOut) +STUB("4IzqhhUQ3nk", sceNpTrophy2GetGameInfo) +STUB("4J2sUJmuHZQ", sceKernelGetProcessTime) +STUB("4J30z4XNd+g", JNU_CallStaticMethodByName) +STUB("4J3Z9DzaMzs", sceLoginMgrServerInitialize) +STUB("4J3mlRvzOx4", _ZN3sce7Toolkit2NP2V29Messaging12Notification16NewInGameMessage8deepCopyERKS5_) +STUB("4J4Baf8ana8", FT_Stream_Skip) +STUB( + "4J4ZkKKJj1o", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("4J4dpH41fqw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEED1Ev) +STUB("4J5F23VgTjY", scePlayerReviewDialogUpdateStatus) +STUB( + "4JFcmjoj9NM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEED2Ev) +STUB("4JGDOwffWGU", + _ZN3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinition9setfieldsEPKc) +STUB("4JHNLE2ozhw", rgctx_fetch_trampoline_rgctx_48_p) +STUB("4JJDz6r-ghE", res_getIntVectorNoTrace) +STUB( + "4JL6Mbrv2QQ", + _ZN3sce2Np9CppWebApi14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyC2EPNS1_6Common10LibContextE) +STUB( + "4JQDvkemZlw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEeqERKS9_) +STUB("4JQd7jBog-8", + _ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends16setaccountIdOrMeEPKc) +STUB("4JbUh2qCzpY", _ZN3WTF23dayInMonthFromDayInYearEib) +STUB( + "4JbrfuExpew", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEC1ERS7_) +STUB( + "4Jc2cNu1Rj0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEED2Ev) +STUB("4JhGC2hqQ48", sceDeci4hDrfpFchstat_fuse) +STUB("4JiFsEs9Yyw", WKPreferencesSetFetchAPIEnabled) +STUB("4JkbUUO-yHM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEC1ERKS7_) +STUB("4JokRSwYf8M", + _ZN3sce2Np9CppWebApi7Matches2V122RequestMatchStatistics8fromJsonERKNS_4Json5ValueE) +STUB( + "4JqYox5PyQk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE8pushBackERKS8_) +STUB( + "4JxCiTeYbDk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEaSERKS7_) +STUB( + "4K4+gNU7mis", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("4KAVeWKx490", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfoaSERS5_) +STUB("4KBGa9y8xro", _ZN3sce7Toolkit2NP2V23TUS7TusDataC2Ev) +STUB("4KFFUT-5pM8", _ZN3WTF10fastStrDupEPKc) +STUB( + "4KIXyxRA+Kg", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V113ErrorResponseC1EPNS1_6Common10LibContextE) +STUB("4KIjvAf8PCA", sceHmdInternalSetIPD) +STUB("4KKKN2LPnew", _ZN13MsvMetaEditor13updateTrafBoxEi) +STUB("4KL6iEYFfts", u_fprintf_u_67) +STUB( + "4KMFl+GqXlo", + _ZN3sce7Toolkit2NP3TSS9Interface13getDataStatusEPNS1_9Utilities6FutureI18SceNpTssDataStatusEERKNS1_23TssGetStatusInputParamsEb) +STUB("4KNZgER6re0", + _ZN7WebCore19InspectorController15connectFrontendERN9Inspector15FrontendChannelEbb) +STUB( + "4KOlIde0dI8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "4KP1a-3jMjw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEmmEv) +STUB( + "4KQp8WpX3oc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEC1EPKS8_) +STUB("4KRyNe79gGI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEEC1EPS6_) +STUB("4KSA6cZz4WE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEEC1ERKS7_) +STUB( + "4KXyfrEOhq0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEptEv) +STUB("4KY0luF+mAk", + _ZN7WebCore16JSXMLHttpRequest15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB("4KcC+IEgQ48", _ZN7WebCore17NowPlayingManagernaEmPv) +STUB("4KcyXY60l9U", + _ZN3sce2Np9CppWebApi14SessionManager2V113PlayerSessionC2EPNS1_6Common10LibContextE) +STUB("4Keqp+75Nb0", mono_aot_Sce_Vsh_Orbis_Bgftjit_got) +STUB("4Kf0Hy8xJrI", u_charMirror) +STUB("4Kgi9D47mC8", sceFiosGetAllFHs) +STUB( + "4KkHjimkN1M", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE5emptyEv) +STUB("4KvJmQu4hmo", _ZN3sce7Toolkit2NP2V23TUS15TusDataStatusesC2ERKS4_) +STUB("4KwR0LMkMQQ", mono_aot_System_Runtimejit_got) +STUB("4Ky3U3sFEws", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEC2ERS7_) +STUB( + "4L1O43wl4hk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEE3getEv) +STUB("4L3U7xeQZqI", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V19RatingApi21ParameterToPostRatingD1Ev) +STUB("4L8CUrnHS2s", _ZN3sce7Toolkit2NP2V210Tournament12GenericEventC2ERKS4_) +STUB( + "4LDIY8J3Y7Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "4LFb2ce6BJI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB( + "4LNB3hNnNvc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("4LPi8JtvxYQ", WKMouseEventMake) +STUB("4LSXsEKPTsE", sceGnmDriverInternalRetrieveGnmInterfaceForGpuDebugger) +STUB("4LY5pyZ5IQk", FT_Lookup_Renderer) +STUB( + "4LhVkRVRL4w", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEneERKS9_) +STUB( + "4LlJl8jv+2Y", + _ZN7WebCore13TextIndicator15createWithRangeERKNS_11SimpleRangeEN3WTF9OptionSetINS_19TextIndicatorOptionEEENS_35TextIndicatorPresentationTransitionENS_9FloatSizeE) +STUB("4Lq+4mBCicA", _ZN7bmalloc6IsoTLS8scavengeEv) +STUB( + "4M+tXW+N0+M", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB( + "4M-Kc9iP+8A", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE8capacityEv) +STUB("4M5OQvD2uE8", glRenderbufferStorageMultisample) +STUB("4M7UYhGTlqk", sceUlpMgrUnregisterProtocol) +STUB( + "4M9hIrGyOyU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEED1Ev) +STUB("4MD3949sSc0", _ZN3sce7Toolkit2NP2V23TUS7Request16TusVariableInputC1Ev) +STUB( + "4MHN6x-5U8Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEC1Ev) +STUB("4MHgRGOKOXY", + _ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE5_InitERKSt8_Locinfo) +STUB("4MJA9iZyYQs", sceCesUcsProfileInitIso2022JpCp50221) +STUB("4MKwMaZw7wU", _ZN7WebCore9HTMLNames9valueAttrE) +STUB("4MLq+nXcg1A", _ZN7WebCore12EventHandler15sendScrollEventEv) +STUB( + "4MQyZyDI+K4", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions13isInitializedEv) +STUB("4MR1gw+ffTs", glUniformMatrix3x2fv) +STUB("4MaYEBu4bw4", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersaSERS5_) +STUB("4MaZZrV8E6I", _ZN3WTF8JSONImpl5ValueC2Eb) +STUB("4Mbb6GJcxos", + _ZN9Inspector24WorkerFrontendDispatcher25dispatchMessageFromWorkerERKN3WTF6StringES4_) +STUB("4MdGVqrsl7s", _ZNSt14numeric_limitsIlE8digits10E) +STUB("4MgRw-bVNQU", sceGnmUpdatePsShader) +STUB("4Mi-U60dbHQ", Java_sun_awt_DownloadedFont_getFontFamily) +STUB("4Ml2G-TSCho", sceFiosSetThreadDefaultOpAttr) +STUB("4Mm-D4wuWxg", _ZN3JSC4Yarr17RegularExpressionnwEm10NotNullTagPv) +STUB( + "4MqJ-esHA34", + _ZThn16_N9Inspector21InspectorRuntimeAgent12awaitPromiseERKN3WTF6StringEPKbS6_S6_ONS1_3RefINS_31RuntimeBackendDispatcherHandler20AwaitPromiseCallbackENS1_13DumbPtrTraitsIS9_EEEE) +STUB("4MrcByJivI0", mono_aot_Sce_Vsh_Messages_DbAccessLibunbox_trampolines_end) +STUB( + "4MuLwBniwNY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEC1Ev) +STUB( + "4MuX-QttYv8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEC1Ev) +STUB("4Mv9OXypBG8", sceGnmFindResourcesPublic) +STUB("4N5OJ0irX88", _ZNK7WebCore17FrameLoaderClient29shouldAlwaysUsePluginDocumentERKN3WTF6StringE) +STUB("4N6ifdTOfoM", SHA1_Init) +STUB("4NEtN1HiWHo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEE11release_refEv) +STUB( + "4NFZWopPA1E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEppEi) +STUB( + "4NI-FQ1donM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE3endEv) +STUB( + "4NLqQtj91kU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEptEv) +STUB( + "4NMtRgUdEe4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEEaSERSA_) +STUB("4NOQobqQH80", + _ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_17DOMMatrixReadOnlyE) +STUB("4NQp4ipWbxA", sceSdecGetVersionSw2) +STUB("4NRMzOTXERA", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15CategoryInfoSubEEeqERKS4_) +STUB("4NSTmO+Huf8", mono_aot_Systemjit_got) +STUB("4NSxjyMl-ho", PEM_read_X509) +STUB( + "4NZhBGxv9kQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEED2Ev) +STUB("4NfiJyJk378", _ZN3sce7Toolkit2NP19ActivityFeedRequestC1Ev) +STUB("4Nj7u5B5yCA", sceNpMatching2RegisterLobbyEventCallback) +STUB( + "4NrGFtxm5Hk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEneERKS9_) +STUB("4NrufkNCkiE", sceNpTusSetData) +STUB("4NsbNbRkUiM", WKWebsiteDataStoreSetStatisticsMergeStatistic) +STUB("4Nt5lRs-4O0", __ubsan_handle_pointer_overflow) +STUB("4O04WQLW-7M", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy15TrophyPackGroupEED1Ev) +STUB( + "4O2-qy0kais", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE7reserveEi) +STUB("4O5nOHJbhIE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEE11release_refEv) +STUB("4O7+bRkRUe8", sceSslGetAlpnSelected) +STUB("4O8lYvForpk", _ZN3sce2np9NpTitleId5ParseEPS1_PKc) +STUB( + "4OAdeG0XB-Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE21intrusive_ptr_sub_refEPS9_) +STUB("4OEZ2m7YTOU", _ZN3JSC7Symbols15testPrivateNameE) +STUB("4OP5nRRVDGw", _ZN12video_parser20cVideoContentFactory21_createFFLInstanceMp4EPKcPPvb) +STUB("4OP5qoYLgE0", _ZN7WebCore15makeSimpleRangeEPKNS_5RangeE) +STUB("4OPOZxfVkHA", sceSaveDataCheckIpmiIfSize) +STUB( + "4OUV+UGy8jQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEplEm) +STUB( + "4OW0JqyuKAo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEE5resetEPS8_) +STUB( + "4OWGyDLxOLo", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessionsaSERS5_) +STUB( + "4ObRSg3I4WY", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V122NatConnectivityFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_15NatConnectivityEEE) +STUB( + "4Od8GrNR1Ko", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEE11get_deleterEv) +STUB("4OfCzdRhS-0", _ZN3sce7Toolkit2NP2V28Commerce14ProductDetails13IMAGE_URL_LENE) +STUB("4OqKr5iYCqI", sceDbgMapperVirtualQuery) +STUB("4OtUd9pr7eM", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V112TicketStatusEEptEv) +STUB( + "4Oy+6MTN9Hg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEC2EPNS2_10LibContextE) +STUB("4P1e01mbenA", sceKernelGetProcessTypeOfBudget) +STUB( + "4PAGNwqOS9c", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "4PD9lX1KCrc", + _ZN7WebCore21ComplexTextControllerC2ERKNS_11FontCascadeERKNS_7TextRunERN3WTF6VectorINS7_3RefINS0_14ComplexTextRunENS7_13DumbPtrTraitsISA_EEEELm0ENS7_15CrashOnOverflowELm16EEE) +STUB( + "4PEvsQmAXgE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE21intrusive_ptr_add_refEPSA_) +STUB("4PGgsQ-d8TI", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container16unsetDescriptionEv) +STUB("4PKnYXOhcx4", sceGnmGetResourceBaseAddressAndSizeInBytes) +STUB("4PL4SkJXTos", _ZNSt14_Num_ldbl_base8is_exactE) +STUB( + "4PMDEa3OnrY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEE11release_refEv) +STUB( + "4PO5nODsF2M", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE4initEv) +STUB("4PQ+-MoYPRw", _ZN9Inspector27InspectorFrontendDispatchernwEm) +STUB("4PTzGjEmkXI", sceCompositorMakeCanvasHandle) +STUB( + "4PZ6VafI6aw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEC1Ev) +STUB( + "4Pa5+RsdykQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEC2EPKS8_) +STUB("4Pd0g-lGEM0", sceShellCoreUtilSetIDUMode) +STUB("4Pd54jvwVhY", glFrontFace) +STUB( + "4Pf8EXsGGxk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEC2Ev) +STUB("4Pifh-GDFbw", _ZN3JSC9JSWeakMap6s_infoE) +STUB( + "4PkHgokcA7I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEC1EPKS8_) +STUB( + "4Pt3ff0XTR8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE5emptyEv) +STUB("4Q-cHxss7tc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEEC1ERS5_) +STUB("4Q11W4M2h5Q", sceHmd2ReprojectionTerminate) +STUB( + "4Q279D12zgM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE5beginEv) +STUB("4Q3EVWDe1nA", _ZN7WebCore11DisplayList14DrawingContext26setTracksDisplayListReplayEb) +STUB("4Q7i2DOeKL8", _ZN3sce7Toolkit2NP2V24Core7Request11AddCallbackC2Ev) +STUB("4Q8db4pIRV0", pthread_single_np) +STUB("4QJGnd5dWAw", mono_aot_Sce_PlayStation_Imejit_got) +STUB( + "4QQJWsNMKaY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("4QR4+cugEx4", ucnv_extSimpleMatchToU_67) +STUB("4QUw1EzZa8o", mono_aot_Sce_Vsh_SysfileUtilWrapperunbox_trampoline_addresses) +STUB("4QWuNF91U9M", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V18PlatformEEppEv) +STUB("4QXiWC+ejP0", _ZN7WebCore24charactersAroundPositionERKNS_15VisiblePositionERiS3_S3_) +STUB( + "4QXwaTaj-c8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE28getResponseInformationOptionEv) +STUB("4QYFwC7tn4U", sceNpTrophySystemGetDbgParamInt) +STUB( + "4QmI+wnwQs4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEppEv) +STUB( + "4Qn1ujWQLUQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEdeEv) +STUB("4QrIS2z8+EI", jpeg_consume_input) +STUB("4QrXjQcjo8w", GCC_except_table18) +STUB("4QroZY-ja3w", nn_close) +STUB( + "4QwOhK9FArE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEixEm) +STUB("4QwxZ3U0OK0", _Do_call) +STUB( + "4QxNgRHjPyY", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEEiRNS2_10LibContextEPT_m) +STUB("4QzvMaxdGlw", _ZNK7WebCore8Settings28iceCandidateFilteringEnabledEv) +STUB("4R-GfKM0GGs", _ZN7WebCore9HTMLNames9strongTagE) +STUB( + "4R4azVETFZ0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEE7get_refEv) +STUB("4R5DWBzSrag", + _ZN7WebCore24DeprecatedGlobalSettings45setShouldRespectPriorityInCSSAttributeSettersEb) +STUB("4R6-OvI2cEA", sceKernelAddUserEvent) +STUB( + "4RFvNRp0fAY", + _ZN7WebCore15JSDOMWindowBase19moduleLoaderResolveEPN3JSC14JSGlobalObjectEPNS1_9ExecStateEPNS1_14JSModuleLoaderENS1_7JSValueES8_S8_) +STUB( + "4RJKYGHkeeE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEE5resetEPS9_) +STUB( + "4RMgzbWivYo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE21intrusive_ptr_add_refEPS9_) +STUB("4RRjK-Wd1lU", FT_Outline_Get_Bitmap) +STUB( + "4RVFD7F8+pQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEC1EPS6_PNS2_10LibContextE) +STUB("4RXA+PSQXzk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEEC2EPNS2_10LibContextE) +STUB( + "4RbA2kWBsoI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("4RgiEcXk+b0", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEEC2ERS7_) +STUB("4Ri3mo87MrQ", ScePsmMonoSetDirs) +STUB( + "4RmG5B3A04Y", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEdeEv) +STUB("4Rn+RfimcRY", _ZN7CoreIPC18MessageReceiverMapD1Ev) +STUB( + "4Rnnx6M+iiA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("4RnulbiuTRw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEaSERS7_) +STUB("4Rr3vDNvcEs", rgctx_fetch_trampoline_rgctx_101) +STUB( + "4RscapE22fs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "4RvnLhnAooc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEEcvbEv) +STUB( + "4RyYqWod+c4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEC1Ev) +STUB( + "4RycqlFa1NQ", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsers10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_60PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEE) +STUB( + "4RylQIfOc38", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEEC1Ev) +STUB( + "4S+xuP4VFOk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEEC2ERKSA_) +STUB("4S-fEuv1EaE", _ZN7WebCore49reportExtraMemoryAllocatedForCollectionIndexCacheEm) +STUB( + "4S50IOw9NBg", + _ZN3sce7Toolkit2NP2V28Matching9leaveRoomERKNS3_7Request9LeaveRoomEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB( + "4S69ft6BkkI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEEC2ERKSA_) +STUB("4SCX2TiYw8Q", _ZGVZNSt6locale5_InitEvE14classic_locimp) +STUB( + "4SHHfOUXaXc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEE11release_refEv) +STUB("4SLJBMm44F8", _ZNSt9basic_iosIwSt11char_traitsIwEEC1Ev) +STUB("4SMYF1r45hs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEC2Ev) +STUB("4SOWXMrEyFA", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIfEC2EPf) +STUB("4SSJ+cn+Pvg", sceAmprAmmMeasureAmmCommandSizeMapAsPrt) +STUB("4ST5OtXfodM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE3endEv) +STUB("4SU1b9bcL18", _ZN3WTF14AtomStringImpl3addEPKhj) +STUB("4SbrhCozqQU", sem_reltimedwait_np) +STUB("4SgLbJPUxNw", sceShellCoreUtilDeleteDownloadedNetEvConfigFile) +STUB("4SlBjZmGWfg", sceDevUsbDeleteHostRawKevent) +STUB("4SnCJmLL27U", _ZNKSt5ctypeIcE9do_narrowEcc) +STUB( + "4SnUzViaCf0", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V129SetDataInfoRequestBodyFactory7destroyEPNS3_22SetDataInfoRequestBodyE) +STUB( + "4Sng5wE4vPg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEptEv) +STUB("4So0MC3oBIM", sceFontCreateGraphicsService) +STUB( + "4SoK4xCUSkE", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBody14setInvitationsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_31ResponsePlayerSessionInvitationEEEEE) +STUB("4Srtnk+NpC4", _ZNSt8messagesIwEC1EPKcm) +STUB("4SvaJGoaPY8", _ZN23sceMetadataReaderWriter8Metadata11DeserializeERN3sce4Json5ValueERS0_) +STUB("4SvlEtd0j40", sceLibcPafMspaceReallocalign) +STUB("4T-rn4ZD+CY", mono_aot_ReactNative_Modules_Vshjit_code_start) +STUB( + "4T0Swzv5ja0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEC2EPKS8_) +STUB("4T4GgJjNBHA", _ZN9Inspector16toInspectorValueEPN3JSC14JSGlobalObjectENS0_7JSValueE) +STUB("4T4PuM0C3lM", _ZN3sce2Np9CppWebApi14SessionManager2V129GetPlayerSessionsResponseBodyD1Ev) +STUB( + "4T55oRvMzX4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "4T6VlI4Z-Gs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEC2Ev) +STUB( + "4T7NyL19U6M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEED2Ev) +STUB("4T9kRhpb-V0", RemotePlaySetProhibitionForVsh) +STUB("4TB+JrM5q8I", _ZNK7WebCore18HTMLMarqueeElement4loopEv) +STUB("4TFZLZuR+l4", _ZN3JSC17createJSMicrotaskERNS_2VMENS_7JSValueES2_S2_S2_) +STUB("4TGeM5jD7x0", _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScoreD1Ev) +STUB("4TJ1qJGXAV8", FTA_Export_Module_psaux) +STUB("4TK7DRrXC5c", scePktMgrGetUlpCmdHdr) +STUB("4TOEFdmFVcI", sceUserServiceGetGlsCommunityId) +STUB("4TPW3H2f-lM", sceVideoOutGetPortStatusInfoByBusSpecifier_) +STUB("4TS7CSj8s00", _ZNK7WebCore22SkewTransformOperation6angleYEv) +STUB("4TTbo2SxxvA", _Ttotm) +STUB( + "4TV8L6fZgaM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC1Ev) +STUB("4TZ39-Q9dgc", Java_java_io_FileOutputStream_writeBytes) +STUB( + "4TZJZQYnc70", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEE11release_refEv) +STUB( + "4TavuQn1aE8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEE7add_refEv) +STUB( + "4Tfqy-dutnU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEE11release_refEv) +STUB( + "4ThVQ9Gfusg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEED1Ev) +STUB("4TiSms4BRNo", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData12setaccountIdEPKc) +STUB( + "4TiZy24yFoQ", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicket10initializeEPNS1_6Common10LibContextENS6_12IntrusivePtrINS3_23SubmitTicketRequestBodyEEE) +STUB( + "4ToLdhFpkPs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE8copyFromERKS9_) +STUB( + "4ToXGcUnkUE", + _ZN3sce7Toolkit2NP8Matching9Interface15inviteToSessionEPKNS1_18SessionInformationEPKNS1_13InviteMessageE) +STUB( + "4Tt7buRjUL0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEeqERKS9_) +STUB("4TuXOTNLRZ0", _ZN9Inspector15RemoteInspector7connectEj) +STUB( + "4TwnemZ+3MU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEED1Ev) +STUB("4Ty+Pa7lZXY", sceCesUtf32leToSJis) +STUB("4U7XQYIZAI0", RemotePlayGetRpMode) +STUB("4U9CKqxDyK8", _ZN7WebCore11DisplayList4SaveC2Ev) +STUB("4UELURFLXkk", mono_field_get_offset) +STUB("4UF2uu2eDCo", sceNpTusGetMultiSlotDataStatusForCrossSaveVUserAsync) +STUB("4UFYk-Rr+EM", _ZN7WebCore9DOMWindow18unregisterObserverERNS0_8ObserverE) +STUB("4UFagYlfuAM", sceRazorCaptureSinceLastFlip) +STUB( + "4UJtZFs4wPw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEE7add_refEv) +STUB( + "4US3WyPIdRs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEppEv) +STUB("4UVQzKBTEFs", Java_java_lang_ClassLoader_defineClass0) +STUB("4UWDiU1sWU0", _ZNK3sce2Np9CppWebApi7Matches2V118RequestTeamResults8getScoreEv) +STUB( + "4UWIK7VNYuA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119NatConnectivityFromC2EPNS1_6Common10LibContextE) +STUB("4UZZcXmQt9Y", _ZN7WebCore11MediaPlayer21endSimulatedHDCPErrorEv) +STUB("4Ufb3NaPj0c", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE4sizeEv) +STUB("4Uj1DZGlHTw", ubrk_next) +STUB("4UkZbYKVF7c", sceAmprCommandBufferConstructMarker) +STUB("4UlW3CSuCa4", sceAudioOutExPtOpen) +STUB("4UlyNf+YwYU", _ZNK3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator12natTypeIsSetEv) +STUB( + "4Unpe75CXLE", + _ZThn32_N7WebCore14DocumentLoader14notifyFinishedERNS_14CachedResourceERKNS_18NetworkLoadMetricsE) +STUB("4UsFAtbEpzI", sceUlpMgrSetNetmpListenSock) +STUB("4UsgyIdjr8Y", _ZN3sce7Toolkit2NP2V28Commerce16RatingDescriptorC1Ev) +STUB("4UwPod4Wdmk", _ZN7WebCore8SVGNames8titleTagE) +STUB("4UxUjgC+2PQ", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate12unsetPerGameEv) +STUB( + "4V0H+brwuCU", + _ZN3sce2Np9CppWebApi14SessionManager2V122LocalizedStringFactory6createEPNS1_6Common10LibContextEPKcNS_4Json6ObjectEPNS5_12IntrusivePtrINS3_15LocalizedStringEEE) +STUB("4VD0OuFSW04", + _ZN15AbstractStorage14TwitterContent11SetMetadataEPN23sceMetadataReaderWriter8MetadataE) +STUB( + "4VL7TLpLXW8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE5emptyEv) +STUB("4VLlu7EIjzk", sceNpTusAddAndGetVariableForCrossSaveVUser) +STUB("4VNXRsIJzn0", mono_aot_Sce_Vsh_Np_AppInfojit_got) +STUB( + "4VPIDrOGoq4", + _ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId17hasnpServiceLabelEv) +STUB("4VRZ2RXGspA", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchDetail9terminateEv) +STUB("4VTEYhwAJck", _ZNK7WebCore8Document23webkitFullscreenEnabledEv) +STUB( + "4VUDXmoiZeQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEdeEv) +STUB( + "4VXqKOic1Xs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEixEm) +STUB( + "4ViVmOFcJQg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("4Vj67+ImaHI", _ZNK7WebCore19InspectorController30buildObjectForHighlightedNodesEv) +STUB( + "4VmOYQTvXGY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEE5resetEPS8_) +STUB("4VnDt-huzjA", _Z27Ime_DicDeleteUserDicsNativei) +STUB("4VnT2MObSW8", mono_image_loaded_full) +STUB("4VqboG5pjf0", nn_sendmsg) +STUB( + "4VutgqObizM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "4Vw5i9U8N7Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEEC1ERKSA_) +STUB( + "4Vy3XHhEF34", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEC1Ev) +STUB( + "4VzKofrIjLE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEppEv) +STUB("4VzjdhVa+lY", mono_aot_Sce_Vsh_Np_Asmunbox_trampolines_end) +STUB( + "4W-gjbJb0Gk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEeqERKS9_) +STUB("4W0fAoG50Nk", + _ZN3sce2Np9CppWebApi13InGameCatalog2V515ContainerRatingC1EPNS1_6Common10LibContextE) +STUB("4W0wxLj52NI", _ZN7WebCorelsERN3WTF10TextStreamERKNS_6RegionE) +STUB( + "4W1vGdsx2n0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEC2Ev) +STUB( + "4W6b6so-L-E", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB( + "4WKpxFuQc-k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEC1Ev) +STUB("4WLw+JZeJLA", WKPreferencesSetMediaPlayable) +STUB("4WOA1eTx3V8", sceSystemGestureUpdateTouchRecognizerRectangle) +STUB( + "4WQu1mMrFME", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEED2Ev) +STUB( + "4WWLcIAVqMo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEE11release_refEv) +STUB("4WaMtxfQwd8", _ZN3NTF18CreationParametersC2Ev) +STUB( + "4WacVxl1B+8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEdeEv) +STUB("4Wp+fWL5uEM", _ZN7WebCore9HTMLNames8formAttrE) +STUB( + "4Wq-RRWM+q0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEED1Ev) +STUB("4WsMn4H547E", _ZN3sce7Toolkit2NP2V210Tournament7Request19SendUserMatchReportC1Ev) +STUB( + "4Wt-1tt+lUc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEED1Ev) +STUB("4Wt5uzHO98o", _Dunscale) +STUB("4X0QwvuCfjc", setrlimit) +STUB( + "4X0fUIxBmO0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEED0Ev) +STUB("4X14YSK4Ldk", sceFontGetFontGlyphsOutlineProfile) +STUB("4X39gpshmRs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEEC2EPKS6_) +STUB("4X3Oj5stWxk", + _ZN3sce7Toolkit2NP10IdDatabase16addTitleSecretIdERKNS1_9NpTitleIdENS1_11ServiceTypeE) +STUB("4X5I6upG+9Q", Java_com_sony_bdjstack_core_CoreApp_getInitialClass) +STUB("4X8svbQd+wQ", _ZN12video_parser7cVpUtil11vp_ff4_freeEPvS1_) +STUB( + "4XAyYXxJ4JA", + _ZNK3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfiles14getlanguageSetEv) +STUB( + "4XF8LD0SLnQ", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser17setplatformFilterEPKc) +STUB("4XJkjqVrJrs", sceAgcDriverGetAllocatedToolMemoryForGpuReset) +STUB( + "4XMPdi+PSB8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEC1EPS8_) +STUB("4XRJPtlXTn0", ucnv_MBCSFromUnicodeWithOffsets_67) +STUB("4XS2Wv8dC5Q", _ZN7WebCore11DisplayList11FillEllipseC1ERKNS_9FloatRectE) +STUB("4XSL+J6pye0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE8pushBackERKS6_) +STUB("4XZd94Wa2Ak", _ZN3sce2Np9CppWebApi7Matches2V125ResponseCompetitiveResult16getPlayerResultsEv) +STUB("4XbhuyqB6pA", WKBundleClearHistoryForTesting) +STUB( + "4XdLCWgZ-L8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEC1ERKS7_) +STUB("4Xe0NrWsndM", _ZN3WTF24AutomaticThreadCondition4waitERNS_4LockE) +STUB("4XhFA9ZK3io", mono_unhandled_exception_message) +STUB( + "4XkrdavSRUg", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionProperties10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_39PatchPlayerSessionsSessionIdRequestBodyEEE) +STUB("4Xl5l2QwFgg", dladdr) +STUB("4XsQdhiOaAc", sceVideoOutSysIsUserStatusVr) +STUB("4XshO9E3bZE", _ZNK3sce2Np9CppWebApi7Matches2V120RequestPlayerResults6toJsonERNS_4Json5ValueEb) +STUB("4XuziKx0Mmo", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V16StatusEEppEi) +STUB( + "4XvgKBWb3FE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEptEv) +STUB("4Y09+1TFWxc", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16UnlockedTrophiesEEC2Ev) +STUB( + "4Y0OZ9CebmM", + _ZN7WebCore8Document17setBodyOrFramesetEON3WTF6RefPtrINS_11HTMLElementENS1_13DumbPtrTraitsIS3_EEEE) +STUB( + "4Y1h21ryTKE", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi21getAccountId2OnlineIdEiRKNS4_32ParameterToGetAccountId2OnlineIdERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_12AccountIdMapEEENSA_INS4_36GetAccountId2OnlineIdResponseHeadersEEEEE) +STUB("4Y22r3-P3RA", _ZN3WTF11dtoaRoundSFEPcdiRbRiRj) +STUB("4Y2I2UV-MYA", + _ZThn16_N9Inspector22InspectorDebuggerAgent20setPauseOnExceptionsERN3WTF6StringERKS2_) +STUB("4Y3P3hq9hhM", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE5clearEv) +STUB( + "4Y9-t1KCIn4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi23setMultiVariablesByUserEiRKNS4_34ParameterToSetMultiVariablesByUserERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB( + "4YAbq7JIZ94", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeaders7setETagERKNS1_6Common6StringE) +STUB("4YClXOfFOdk", sceImeBackendTemporalConfirm) +STUB("4YDoT6MwFdc", _ZL22dwarf_eh_find_callsiteP15_Unwind_ContextP13dwarf_eh_lsdaP15dwarf_eh_action) +STUB("4YJ5gYtRAAE", sceNpUtilJsonUnescape) +STUB("4YMBk1lfUm0", sceUsbStorageUnregisterCallbackForMapUnavailable) +STUB("4YOnvHQco2w", _ZN15AbstractStorage14TwitterServiceD1Ev) +STUB("4YPeEmXevC4", _ZN7WebCore8SVGNames6u1AttrE) +STUB("4YQ-w9Xwn7s", sceShellCoreUtilGetCrashReportStatus) +STUB( + "4YTViV4+FLY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEC2EPS8_) +STUB( + "4YdkXFWz8Dg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEEdeEv) +STUB( + "4YeRnVQUxI0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEEC2ERSA_) +STUB("4Ymr0K7W9WA", __ubsan_handle_function_type_mismatch_v1_abort) +STUB( + "4YnJkdEaAS4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEED1Ev) +STUB("4Yna719ts4M", utext_next32From) +STUB("4Ypfo9RIwfM", sceBluetoothHidRegisterCallback) +STUB("4Yu-wQ-xrNs", sceShareUtilityAdvanceFromFileWithTitleIdList) +STUB("4Yyat0vtan0", GetContentFileStatusLib) +STUB("4YzcZ4koEWo", _ZN7WebCore18TextureMapperLayer18setContentsVisibleEb) +STUB( + "4Z0kpPvfnfQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEC1EPKS8_) +STUB("4Z2wRg5jt3M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEixEm) +STUB("4Z3J6sTDyU0", _ZN3sce2Np9CppWebApi7Matches2V113ChildActivityD2Ev) +STUB("4ZAN-jysmlg", SwCtrlSinkStreamIsEOS) +STUB("4ZBMN3zI3zs", _ZN4Manx11MediaPlayerC1EPNS_17MediaPlayerClientE) +STUB("4ZJD5r7ugsc", _ZN3sce7Toolkit2NP2V211SocialMedia7Request7PhotoFb11MAX_URL_LENE) +STUB("4ZMGdbkcjzk", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_23NpIdListRankInformationEE3getEv) +STUB("4ZMRsKRFfAY", seqNum) +STUB( + "4ZO1nNx5fig", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE10setContextEPNS2_10LibContextE) +STUB("4ZQbnnW1z+Q", WKBundleFrameGetPendingUnloadCount) +STUB("4ZSSOt1acl8", _ZN3sce2Np9CppWebApi11Matchmaking2V19Submitter11setPlatformERKNS3_8PlatformE) +STUB( + "4ZW8wIls7N8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE5clearEv) +STUB("4ZXj4yVA40U", + _ZN3sce2Np9CppWebApi14SessionManager2V115SearchConditionC2EPNS1_6Common10LibContextE) +STUB("4ZXlZy7iRWI", _ZTSN10__cxxabiv120__function_type_infoE) +STUB("4ZYuSI8i2aM", sceSystemServiceGetParentSocketForPsmKit) +STUB("4ZZAP3Ty9To", _ZN9Inspector21InjectedScriptManager18injectedScriptHostEv) +STUB( + "4ZcisJGzxgM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE3endEv) +STUB( + "4ZeYO1WYd1U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("4ZeZWcMsAV0", pthread_cleanup_push) +STUB("4ZerC-xiHv8", _ZNK3WTF3URL20protocolIsJavaScriptEv) +STUB("4ZjyKz4IjQo", _ZN7WebCore11HistoryItemC2ERKN3WTF6StringES4_S4_) +STUB( + "4ZmiHwkQ+9g", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEneERKS9_) +STUB("4ZnE1sEyX3g", _ZGVNSt8messagesIcE2idE) +STUB( + "4Zw1kiTlBsM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEE7get_refEv) +STUB("4a-30lmYmdI", _ZN12video_parser5vpcom5_ReadEPNS_8_vp_fileEPvjPi) +STUB( + "4a3bhOLNGwI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEC1Ev) +STUB("4a4FVRpXQJM", Java_com_sony_bdjstack_ti_Database_getPlayItems) +STUB( + "4a6IHbTNoTI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEEptEv) +STUB( + "4aAREFH4rOM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEE11release_refEv) +STUB( + "4aDDEEapPkg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB( + "4aDLN0LOAew", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEptEv) +STUB( + "4aGWROUFFTg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "4aH0-tkW5PU", + _ZN3JSC8JSObject14deletePropertyEPNS_6JSCellEPNS_14JSGlobalObjectENS_12PropertyNameERNS_18DeletePropertySlotE) +STUB("4aHyuLG09aw", _ZN7WebCore16BlobRegistryImplC2Ev) +STUB( + "4aNgxSC2DFE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE5beginEv) +STUB("4aQsvxZFa+0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEE3getEv) +STUB( + "4aTIqWlkZUg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEptEv) +STUB("4aVl+bWZmfI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEC2Ev) +STUB("4aXDehFZLDA", CERT_STORE_findIdentityByTypeFirst) +STUB( + "4aXd1e5CbfQ", + _ZN3sce2Np9CppWebApi14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyC2EPNS1_6Common10LibContextE) +STUB( + "4afM3Xt0+Ig", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "4ajArsvLAVo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEptEv) +STUB("4alOvv5O7KU", il2cpp_class_array_element_size) +STUB("4apave5TFsg", + _ZN7WebCore14SchemeRegistry36registerURLSchemeAsAlwaysRevalidatedERKN3WTF6StringE) +STUB("4asyR6+TvFE", _ZN9Inspector15RemoteInspector16pushListingsSoonEv) +STUB( + "4awsTFbKE9M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "4ay1x8rkya0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE21intrusive_ptr_sub_refEPSA_) +STUB( + "4b-GUNp-Fww", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEppEi) +STUB("4b-vop3WuR4", _ZN3sce3Xml4AttraSERKS1_) +STUB("4b4Y3TiRa6k", _ZN7WebCore31contextMenuItemTagCheckSpellingEv) +STUB("4bLEJwF1yGg", _ZN3sce7Toolkit2NP2V26Trophy15TrophyPackGroup19MAX_NUMBER_TROPHIESE) +STUB("4bOt65l9CT8", _ZN7WebCore14SecurityPolicy13allowAccessToERKNS_21UserContentURLPatternE) +STUB("4bQMfDI+p6w", _ZN3sce7Toolkit2NP2V27Session18AvailablePlatformsD2Ev) +STUB("4bT02EA5CF0", sceDtcpIpStartSeq) +STUB( + "4bTVoo+UVRE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEdeEv) +STUB( + "4baVknTOiS0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE8pushBackERKS8_) +STUB( + "4bfH1zFOdBY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE5abortEv) +STUB("4bgkmutzYAc", + _ZNK3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15Error16referenceIdIsSetEv) +STUB("4boImm4wxu0", _bind) +STUB( + "4boWhdk45q0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEEaSERSA_) +STUB( + "4bqaYYtswtE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEE7add_refEv) +STUB( + "4btQHKBCjNY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEppEv) +STUB( + "4btsnC+Eh7Q", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlotD2Ev) +STUB("4bxhcpUu04g", _ZN4Manx16getGenericFamilyEPKwj) +STUB("4c1ohhNTURs", _ZN7WebCore4Node18startIgnoringLeaksEv) +STUB( + "4c24qmetW9s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEE7add_refEv) +STUB( + "4c2RvN0P+E4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE5clearEv) +STUB( + "4c3UDIiPvnY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE6resizeEj) +STUB( + "4c3sJovS0U0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEdeEv) +STUB( + "4c4u-n3W2HY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEE5resetEPS9_) +STUB("4c6WX1XAWbE", _ZN3sce7Toolkit2NP15AppSTLAllocatorI13SceNpOnlineIdE10deallocateEPS3_m) +STUB("4cIJxNKQK5g", _ZN3sce2np9JsonArray12AddItemArrayEPPS1_) +STUB("4cP4FNbcqtE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEE11get_deleterEv) +STUB( + "4cRoQpH+sFw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEixEm) +STUB("4cS74wnODLM", sceVideoRecordingRestModeProcessGetStatus) +STUB("4cTIrOZw1-0", uscript_getShortName) +STUB("4cWxMuvkAVE", WKPreferencesGetCanvasUsesAcceleratedDrawing) +STUB("4cZX7bAkRdA", _ZN9Inspector14InjectedScriptaSERKS0_) +STUB( + "4cfiSnwoOdg", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeaders21intrusive_ptr_add_refEPS5_) +STUB("4cn1ichfHIE", sceMusicFwGetNetworkState) +STUB( + "4cnSYU-oI20", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEE11get_deleterEv) +STUB("4cqbxf455Ik", _ZN7WebCore9HTMLNames29onwebkitmouseforcechangedAttrE) +STUB("4cs9dAQPVl0", ucal_getDayOfWeekType_67) +STUB("4cuKd4S83xw", sceMusicPlayerServiceSetTrackList) +STUB("4cvRVllWYcE", _ZN7WebCore9HTMLNames16marginheightAttrE) +STUB("4czdTeOyFV0", _ZN3sce7Toolkit2NP2V210Tournament17TournamentDetails5resetEv) +STUB("4czppHBiriw", sceKernelSignalSema) +STUB( + "4d5P3oPcmVw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEEdeEv) +STUB("4d9S8jMy6Ac", _ZNK15AbstractStorage14TwitterContent10GetServiceEv) +STUB("4dB3tq45pBw", _ZN4IPMI4impl10ServerImpl18doTerminateRequestEj) +STUB("4dEcE+HO5iY", g_ptr_array_new) +STUB( + "4dIeigg7RqY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE6resizeEj) +STUB("4dWfNKOT1sg", sceLncUtilActivateCdlg) +STUB( + "4dYXjvUkipM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE8copyFromERKS9_) +STUB("4da8cAdKl-o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEEptEv) +STUB( + "4dfIN3IhMPo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("4dhx-ioq00U", _ZN9Inspector38ScriptProfilerBackendDispatcherHandlerC2Ev) +STUB("4doOKZvqnq8", _ZN7WebCore8Document17queryCommandStateERKN3WTF6StringE) +STUB("4dq2rblWlg0", sceAudioOut2ContextSetAttributes) +STUB("4dsNPwVODKM", sceShellCoreUtilIsTitleWorkaroundEnabled) +STUB("4dtPhcCb76Y", _ZN3WTF11Persistence5CoderINS_10AtomStringEE6decodeERNS0_7DecoderE) +STUB("4dvdsqyLM8c", cairo_image_surface_create_from_png_stream) +STUB("4e-JjxDUlb8", glGetInteger64v) +STUB("4e7O-m-JWVM", cairo_get_fill_rule) +STUB( + "4e9YYvVtdKM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEE11get_deleterEv) +STUB("4e9dMKt+UYA", pthread_suspend_np) +STUB( + "4eBe+qMmIpU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("4eFONvtCw-I", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi28ParameterToDeleteGameSessionC2Ev) +STUB("4eIK+jvU-gQ", _ZN7WebCore24CoordinatedGraphicsLayer15removeAnimationERKN3WTF6StringE) +STUB("4eK7kBvRmYc", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4RoomEEC2Ev) +STUB("4eLWslEJdRo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEEC1ERKS7_) +STUB( + "4eN+1nhWU0Y", + _ZN9Inspector14InspectorAgent7inspectEON3WTF6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsIS5_EEEEONS2_INS1_8JSONImpl6ObjectENS6_ISB_EEEE) +STUB("4eO+y6WtOIw", _ZN3WTF14SymbolRegistry12symbolForKeyERKNS_6StringE) +STUB("4eO39DusLpI", mono_set_defaults) +STUB("4eOvDyN-aZc", sceNpScoreCensorCommentAsync) +STUB("4eSv-lGRJ9k", _ZNK3sce7Toolkit2NP9Utilities6FutureI16SceNpTusVariableE17getAdditionalInfoEv) +STUB("4eUBMHs41k0", sceFaceShapeFit) +STUB("4eX4H3CtEfk", sceVencDeleteEncoder) +STUB("4eahqnUQCls", _ZN3sce2Np9CppWebApi6Common8IteratorINS2_6StringEEppEv) +STUB("4eebjJb6IcY", uspoof_getRecommendedUnicodeSet_67) +STUB("4eheJycBxI0", WKBundlePageConfirmCompositionWithText) +STUB("4eiqY+Af-ro", _ZNK15AbstractStorage15FacebookStorage7GetStatEPNS_4StatE) +STUB("4ej3RtYH320", sceSocialScreenDialogClose) +STUB("4ejAnR1Xpg8", BN_set_word) +STUB("4ejzo1EOtPM", + _ZN7WebCore20throwSetterTypeErrorERN3JSC14JSGlobalObjectERNS0_10ThrowScopeEPKcS6_) +STUB( + "4enI30eEEpI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE7popBackEv) +STUB("4epVEWM0BdY", _Z15sendIpmiMessageiPKvmPj) +STUB("4ephroQdYfA", _ZNK3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer12getAccountIdEv) +STUB("4ewKtBcrBto", _ZN12Mp4Retriever14processLoopBoxEv) +STUB("4f+Q5Ka3Ex0", __negsf2) +STUB("4f-pHWI9gcU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE6resizeEj) +STUB( + "4f3gBd0oaqM", + _ZN3sce2Np9CppWebApi7Matches2V128ResponseTeamStatisticFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_21ResponseTeamStatisticEEE) +STUB("4f4k1BywICY", _ZNK3JSC9CodeBlock4dumpERN3WTF11PrintStreamE) +STUB( + "4f7FxenJ11A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEC2EPNS2_10LibContextE) +STUB( + "4f83QoWheo0", + _ZN3sce2Np9CppWebApi11Matchmaking2V131SubmitTicketResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_24SubmitTicketResponseBodyEEE) +STUB( + "4fFP980c5us", + _ZN3sce7Toolkit2NP11UserProfile9Interface14getCountryInfoEPNS1_9Utilities6FutureINS1_11CountryInfoEEEb) +STUB( + "4fFXfHEBKck", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEppEi) +STUB("4fHtC1JQK64", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEEC2ERKS6_) +STUB( + "4fHymdmot4I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEC2EPNS2_10LibContextE) +STUB( + "4fIMehzTqlQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEC2ERKS7_) +STUB("4fKFBy78LEk", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_19ProductInfoDetailedEED2Ev) +STUB("4fKzISZFxaE", sceFsDevpfsInitFetchMetaEntryCtx) +STUB( + "4fMcS+qIbSI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEEC2ERKSB_) +STUB("4fPIrH+z+E4", _ZNKSt7codecvtIwc9_MbstatetE11do_encodingEv) +STUB( + "4fTRcKhnz8Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEC1ERS7_) +STUB("4fU5yvOkVG4", sceSysmoduleGetModuleInfoForUnwind) +STUB( + "4fWCBQp6dpU", + _ZN9Inspector25DebuggerBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("4fWIAEzWbX8", Java_com_sony_bdjstack_system_BDJModule_terminateTitle) +STUB("4fX0kRsOUQA", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession14getCustomData2Ev) +STUB("4fZAv0vbycQ", sceFiosOpGetPath) +STUB( + "4far50spixg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEC2Ev) +STUB( + "4faz65LsDB0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("4ff48fxer-8", _ZN7WebCore5ColorC2EffffNS_10ColorSpaceE) +STUB("4fgkfVeVsGU", sceHttpRequestGetAllHeaders) +STUB( + "4fgpYGzdGxU", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersC1ERS5_) +STUB("4fgtGfXDrFc", sceAmprMeasureCommandSizeWriteAddress_04_00) +STUB("4fwlS7wB3AY", p5_8192) +STUB( + "4fxn8KRVCuk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("4fymWXPdseo", + _ZN7WebCore15reportExceptionEPN3JSC14JSGlobalObjectENS0_7JSValueEPNS_12CachedScriptE) +STUB("4g1ee34TMH8", _ZN3sce3Job10JobManagerD1Ev) +STUB( + "4g4WHz+m3qA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE3endEv) +STUB("4g5vWZV5goU", sceVideoCoreInterfaceOpenVideoOut) +STUB("4g6BoFF-ywE", u_strchr) +STUB( + "4g9GjN7SKoM", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEEC1Ev) +STUB("4g9JiF+D2cE", sceVideoNativeExtEssential_IsInit) +STUB( + "4gCq4TTq2-Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEED2Ev) +STUB("4gDTaBZH8lo", cairo_ft_scaled_font_lock_face) +STUB("4gDriHUPM+k", + _ZN7WebCore22EmptyFrameLoaderClient11createFrameERKN3WTF6StringERNS_21HTMLFrameOwnerElementE) +STUB( + "4gEYAcgM9zE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEED2Ev) +STUB("4gGN1iulpWM", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V111LeaveReasonEEneERKS7_) +STUB( + "4gI48snNksk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE7popBackEv) +STUB("4gJ2MFHUsvY", WKCookieManagerDeleteCookiesForHostname) +STUB("4gJAjpddSVo", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTicketsD1Ev) +STUB( + "4gL1Yb+Pt5U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB("4gLqVhLngro", _ZN7WebCore26ISOProtectionSchemeInfoBoxC1Ev) +STUB("4gMowNrTFnQ", sceRnpsAppMgrGetUpdateProgress) +STUB("4gN-r7nYdYY", _ZN7WebCore8JSDOMURLC1ERKS0_) +STUB("4gN9AATFpTU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEcvbEv) +STUB("4gOMfNYzllw", sceNpPartyGetMemberSessionInfo) +STUB("4gSFMMDLYM4", mono_aot_Sce_Vsh_ShareGuideSceneunwind_info) +STUB("4gT52GwiD0A", _ZN3JSC4Heap25protectedObjectTypeCountsEv) +STUB( + "4gVOVhyTINc", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSD_ESD_) +STUB("4gdGUYtfI-A", _ZTVN9Inspector24RuntimeBackendDispatcherE) +STUB( + "4gfEnQ4DZdY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE5clearEv) +STUB("4gfe6xZWoP4", genName.hex) +STUB( + "4gg-uNDZg88", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE5beginEv) +STUB("4gh3IM9SXw8", mono_runtime_set_shutting_down) +STUB("4gi0acCfJL4", sceNpAsmClientDeleteResourceContext2) +STUB( + "4gkY0Lnj2Zk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEED1Ev) +STUB( + "4gmBFeKcPH0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEmmEi) +STUB("4go6vGk6E+A", WKWebsiteDataStoreClearAllDeviceOrientationPermissions) +STUB( + "4gs6BjHYiXU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEmmEv) +STUB("4gzdOe+mRrw", Java_com_sony_bdjstack_javax_media_controls_SoundManager_free) +STUB("4h3fLdA8LHw", coil_mspace_malloc) +STUB("4h4+sBW9vT0", _ZN3sce7Toolkit2NP2V27Session7Request22GetReceivedInvitationsC2Ev) +STUB( + "4h4aB8xXO5s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEC1ERKS7_) +STUB("4h4kYUxRDgU", u_strHasMoreChar32Than) +STUB( + "4h6dKKvxvdA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE3endEv) +STUB( + "4h87otKRt8g", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10getString5Ev) +STUB("4hDGZkbevi0", + _ZNK3sce2Np9CppWebApi14SessionManager2V128ResponseGameSessionSpectator11getPlatformEv) +STUB( + "4hEgkCNtZug", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE5emptyEv) +STUB( + "4hG3fSbPE50", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEEC2Ev) +STUB("4hLcEyw6XIs", GCC_except_table100) +STUB("4hLgnaOq3IM", _ZN12video_parser17cVideoOperatorMp4C2EPKc) +STUB("4hO9JFoKQpc", _ZN3sce7Toolkit2NP2V210Tournament5MatchC2Ev) +STUB("4hOE443tpw4", X509_STORE_CTX_free) +STUB("4hOXCEnHlHQ", sceNpRemotePlaySessionSignalingSetCustomProperty) +STUB("4hPLek5k2kQ", _ZN7WebCore13GraphicsLayer8addChildEON3WTF3RefIS0_NS1_13DumbPtrTraitsIS0_EEEE) +STUB("4hPa7Dtb36Y", _ZN3sce7Toolkit2NP2V28Matching6MemberC1Ev) +STUB("4hPoej35jCA", WKContextGetSharedThreadContext) +STUB("4hPwsDmVKZc", SSL_enableCiphers) +STUB("4hTD8I3CyAk", sceHmdInternalMirroringModeSetAspect) +STUB( + "4hWmUaeBwdQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEED1Ev) +STUB( + "4hbsMTaApzg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEC2EPS8_) +STUB( + "4hhrybsuHGU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEmmEi) +STUB( + "4hiQK82QuLc", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERx) +STUB("4hkRP+tzB-c", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V122UploadDataResponseBody8fromJsonERKNS_4Json5ValueE) +STUB("4hl78F9jMCM", sceSpPthreadCondWait) +STUB("4hnuqy+8CAU", _ZN7WebCore8SVGNames17gradientUnitsAttrE) +STUB("4hpGSSn9t74", _ZN7WebCore16ISOSchemeTypeBoxC2ERKS0_) +STUB("4hqqZuMI7rU", _ZN12video_parser17cVideoProfilerMp48finalizeEv) +STUB("4hsvw3h04JU", _ZN9Inspector29AuditBackendDispatcherHandlerC2Ev) +STUB("4htp6fAZF0U", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V111OfferStatusEEC1Ev) +STUB("4hwL0vHb1Jw", glUniform3fv) +STUB("4hyVWysfDe4", _ZN3JSC7Symbols17createPrivateNameE) +STUB( + "4hz2fKoQkO4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEEaSERKSA_) +STUB("4i-lPi0Dcw8", + _ZN3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayer17unsetPushContextsEv) +STUB("4i4lCtimDgg", _ZN9Inspector22InspectorDebuggerAgent18didCancelAsyncCallENS0_13AsyncCallTypeEi) +STUB( + "4i5WPPOhHnw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEEC1Ev) +STUB( + "4i8I4mQMGxY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEEC2ERSA_) +STUB("4iA7KbTNmLA", _ZN3sce7Toolkit2NP2V28Presence7Request14DeletePresenceD2Ev) +STUB( + "4iDn9nQH90w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEEC2EPS5_PFvS7_EPNS2_10LibContextE) +STUB("4iF+HWkPTkQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEE3getEv) +STUB("4iFgTDd9NFs", _LLog) +STUB("4iJZYN0vrwc", _ZN3JSC10loadModuleEPNS_14JSGlobalObjectERKN3WTF6StringENS_7JSValueES6_) +STUB("4iMpsAJZg+8", _ZN4Manx11MediaPlayer11currentTimeEv) +STUB("4iOzclpv1M0", sceLibcHeapSetAddressRangeCallback) +STUB("4iRgopOo1X0", monoeg_g_queue_free) +STUB( + "4iRnc2NuXds", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEEcvbEv) +STUB("4iRtUH7ZYPg", _ZNK3WTF6String20substringSharingImplEjj) +STUB( + "4iVtAgaU8PQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEEdeEv) +STUB("4iYMn5+K7NE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEEC1EPS5_PFvS7_EPNS2_10LibContextE) +STUB("4ia3TbCbRVc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEEC1Ev) +STUB("4ic6Lb+mlfA", sceNpPush2RegisterExtendedDataFilter) +STUB("4idnpRiSXto", getAvailableProtocolInfoList) +STUB( + "4if4CFgz-ug", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE8pushBackERKS9_) +STUB("4ifo9QGrO5w", _Locterm) +STUB( + "4ijn95+7z60", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("4il4PZAZOnQ", _ZN3sce2np6ObjectdaEPvR14SceNpAllocator) +STUB( + "4ilO+6ak-ec", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEC1EPNS2_10LibContextE) +STUB("4imyVMxX5-8", sceSystemServiceGetGpuLoadEmulationMode) +STUB( + "4inijZ1D5CE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "4isnooBPYvs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEED2Ev) +STUB( + "4ixESYc13qg", + _ZZSt9MakefacetISt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEESt8_LocinfoERT_T0_E3buf) +STUB("4iy9hG9Du1s", sceVideoOutAddBuffer) +STUB("4j+HoQHszgM", mono_aot_System_Corejit_code_start) +STUB( + "4j4M6d-q-oI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEixEm) +STUB( + "4jCh8QPDYDs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEixEm) +STUB("4jEJGjsMyeQ", _ZN3WTF11Persistence7Decoder6decodeERb) +STUB("4jLxGyUym+Y", + _ZN3sce2Np9CppWebApi11UserProfile2V125GetPublicProfilesResponseC1EPNS1_6Common10LibContextE) +STUB( + "4jN5eFsDPqY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "4jNVVb76Mwo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEneERKS9_) +STUB( + "4jYsOL4LF0A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEE11release_refEv) +STUB("4jZLf+MFU8U", sceSpPthreadMutexattrSetprotocol) +STUB("4jkLJc954+Q", sceNetCtlApGetResult) +STUB("4jmeF96OjiA", YGMeasureModeToString) +STUB( + "4jo7fokoOPM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEmmEv) +STUB("4jplQ0DHupo", _ZN3JSC22createOutOfMemoryErrorEPNS_14JSGlobalObjectE) +STUB("4jt3j8+qmGU", _ZN12video_parser5vpcom6StringC1EPKw) +STUB("4jt8pMDudgk", sceShareCaptureVideoClip) +STUB("4juDCtH9HBg", _ZNK3sce2Np9CppWebApi6Common6VectorIlE5beginEv) +STUB("4k+5la20zT8", _fini) +STUB("4k3e7qWpRcU", WKContextStopMemorySampler) +STUB( + "4k4OnRLyvYs", + _ZN9Inspector21InspectorRuntimeAgent8evaluateERN3WTF6StringERKS2_PS4_PKbS8_PKiS8_S8_S8_RNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISE_EEEERSt8optionalIbERSJ_IiE) +STUB("4k5CuEwXbZo", _ZN3sce7Toolkit2NP24ChallengeResponseRequestC2Ev) +STUB("4kAy7rwAwCI", + _ZN12video_parser18cProfileCheckerMp419_isPlayableVideoAVCERKNS_13VpMediaInfo_tE) +STUB( + "4kFaEdEs5Ak", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE21intrusive_ptr_add_refEPS7_) +STUB("4kHw99LUG3A", sceAudioInVmicWrite) +STUB( + "4kJcQKeuIOg", + _ZN7WebCore11MediaPlayer33copyVideoTextureToPlatformTextureEPNS_23GraphicsContextGLOpenGLEjjijjjbb) +STUB("4kKYBQ3b5HQ", _ZN7WebCore17LibWebRTCProviderdlEPv) +STUB("4kKhbLDBWQg", WKBundleHitTestResultGetTypeID) +STUB( + "4kQOezzpQjA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("4kQZ8klxFyM", _ZN4Manx8X509cinf9notBeforeEv) +STUB("4kRA6RackUU", _ZN7WebCore6JSNodeaSERKS0_) +STUB( + "4kWdjP9wBIA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEC1Ev) +STUB("4kWs0MPZ4mg", _ZTVN7WebCore22EmptyFrameLoaderClientE) +STUB("4kXIKm1ctlo", _ZN3JSC2VM30scriptFetchParametersSpaceSlowEv) +STUB( + "4kc-LkjvS3Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEEdeEv) +STUB( + "4kfv5Fu4Sdw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE8copyFromERKS9_) +STUB("4kiUonWDBLU", mono_profiler_install_monitor) +STUB("4ktv3Yu7TM4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEC2ERS7_) +STUB( + "4kvlVC-PMqI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEEptEv) +STUB("4kwKSYxwOWQ", _ZN7WebCore10FileSystem24fileSystemRepresentationERKN3WTF6StringE) +STUB( + "4kzwuUS8ySQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "4l-eAbA+SWw", + _ZThn664_N7WebCore24CoordinatedGraphicsLayer10updateTileEjRKNS_17SurfaceUpdateInfoERKNS_7IntRectE) +STUB("4l9WIZ53cg8", _ZN7WebCore9HTMLNames23onaccessibledismissAttrE) +STUB( + "4lAXG55Modw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEmmEi) +STUB("4lFCaf2S+P0", unorm2_openFiltered_67) +STUB("4lFaRxd-aLs", sceNgs2SystemGetUserData) +STUB("4lKmeH7ib7w", _ZN4Manx6Bundle6createEv) +STUB( + "4lOoRctKFnk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEEaSERKS9_) +STUB("4lP1J2jYQBU", _ZN3JSC4Yarr17RegularExpressionnwEm) +STUB( + "4lQu6skqxGA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEneERKS9_) +STUB("4lVbvCvPuHE", mono_aot_Sce_Vsh_VideoPlayerjit_code_end) +STUB("4lVvk4j5XyQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEEeqERKS7_) +STUB( + "4lWOpiABU3Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "4lcEaSaqQ5Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEC2EPKS8_) +STUB("4lcVzB4Gixo", PKCS8_PRIV_KEY_INFO_free) +STUB( + "4lej5664zp0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEEC1Ev) +STUB("4lffn9gHyR0", HMAC_CTX_init) +STUB( + "4liiepBP0Ac", + _ZN7WebCore25WebSocketChannelInspector36didReceiveWebSocketHandshakeResponseEPNS_8DocumentERKNS_16ResourceResponseE) +STUB( + "4lkRXpMmplI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEneERKS9_) +STUB("4ll0zcC5bAc", _ZN3sce7Toolkit2NP2V29Messaging12Notification16NewInGameMessage5resetEv) +STUB( + "4llLfvU+9BI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEEC1ERKSA_) +STUB("4llLk7YJRTE", sceNpUniversalDataSystemEventPropertyArraySetString) +STUB("4llda2Y+Q+4", _ZNSt14numeric_limitsIlE9is_signedE) +STUB( + "4lolELlJCMo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEC2EPKS8_) +STUB("4lpCZSRjK-c", _ZN7WebCore8SVGNames9scriptTagE) +STUB( + "4lqdQTxieGg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEC2Ev) +STUB("4lr78wyJwho", WriteZStream) +STUB( + "4lrAq1TKk9E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE5emptyEv) +STUB( + "4ltTwkSBOvs", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12string9IsSetEv) +STUB("4ltqjQd2iJE", _ZTVN9Inspector27CSSBackendDispatcherHandlerE) +STUB( + "4lv9MUy4hzU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEneERKS9_) +STUB( + "4lyMug2ad+Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEEdeEv) +STUB( + "4m1sj5VM9ss", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEneERKS9_) +STUB( + "4m2-7cdZJ4I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEC2ERKS7_) +STUB( + "4m8Bd-dhcPM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "4mBPHrRMft8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "4mDB1uYisIk", + _ZN9Inspector26InspectorBackendDispatcher6createERNS_17BackendDispatcherEPNS_33InspectorBackendDispatcherHandlerE) +STUB("4mEAk-UKVNw", sceNpUtilCanonicalizeNpIdForPs4) +STUB( + "4mKAj7kQ7MQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEED2Ev) +STUB("4mOMvysd4IA", _ZN3JSC14JSRunLoopTimerD2Ev) +STUB( + "4mT2vz9L5Qg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEC1EPS6_PNS2_10LibContextE) +STUB("4mUxj6KnMsU", _ZN7WebCore14JSWebAnimation14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB("4mVOglFcW8E", WKContextSetCacheModel) +STUB( + "4mZNIs1R85Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEC1EPS8_) +STUB("4mdynkqoCFc", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend7FriendsEE3getEv) +STUB("4mfcPUFbik4", _ZN7WebCore16JSStringCallbackD1Ev) +STUB( + "4mjkNhEJnGY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEC2EPKS8_) +STUB( + "4mlAtc5cdLE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE5emptyEv) +STUB( + "4mlBHIlSAPI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEeqERKS9_) +STUB("4mtpkZh7myg", _ZN7WebCore19serializationForCSSERKNS_9DisplayP3IfEE) +STUB("4muPEJ-x5N8", sceAmprMeasureCommandSizeWriteCounterOnCompletion) +STUB("4muRUY4-1yc", ztrans_setFrom_67) +STUB("4n51s0zEf0c", inet_pton) +STUB( + "4n5s0cpDf9w", + _ZN7WebCore8JSPath2DC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_6Path2DENS6_13DumbPtrTraitsIS8_EEEE) +STUB("4n94Pf5hH74", _IMAPData_67) +STUB("4nAp4pZgV1A", sceKernelSetGpuCu) +STUB("4nCyBD9jBus", _ZN3sce2np13JsonDocParser5ParseEPKcm) +STUB("4nEjiZH1LKM", sceUserServiceSetVolumeForController) +STUB("4nLCquKJCVw", _ZN3sce7Toolkit2NP2V210Tournament18OneVsOneRankResult5resetEv) +STUB("4nRn+exUJAM", _WStod) +STUB( + "4nRtlkglzJM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE4sizeEv) +STUB("4nUbGGBcGco", sceUserServiceGetLastLoginOrder) +STUB("4nV-ejO0KIc", uprv_aestrncpy) +STUB("4nVANpGwnNY", _ZN3sce7Toolkit2NP2V28Matching7Request11SetRoomInfoD2Ev) +STUB( + "4nVNPPHThzc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEEC1EPNS2_10LibContextE) +STUB("4ncnynlrwuQ", GCC_except_table403) +STUB("4ndOu5jG93E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEE3getEv) +STUB( + "4neldM1aEtI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEE3getEv) +STUB("4nqCnLJSvck", pthread_barrierattr_init) +STUB("4ns7J9OrJ5g", _ZN15AbstractStorage7StorageD0Ev) +STUB("4nvwbRegyA0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEC1Ev) +STUB( + "4nwaRDQ-91c", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsersaSERS5_) +STUB( + "4o3Q+1PRb3s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEC1EPKS8_) +STUB( + "4o5r9U89wLE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEplEm) +STUB("4oJLNc68S5w", + _ZN3sce2Np9CppWebApi7Matches2V133RequestTemporaryCompetitiveResult16unsetTeamResultsEv) +STUB("4oKwKmeOKjM", setegid) +STUB("4oRem-AuOiA", _ZN7WebCore14SQLiteDatabase4openERKN3WTF6StringENS0_8OpenModeE) +STUB("4oX+qn9EWP0", mono_aot_Sce_Vsh_RequestShareScreenjit_code_start) +STUB("4oXYe9Xmk0Q", sceKernelGetGPI) +STUB("4ocNjZJjDM0", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIlE21intrusive_ptr_add_refEPS4_) +STUB("4oeQnXCMj58", utrace_getFunctions_67) +STUB("4oethVH35iE", _ZN7WebCore8SVGNames14stop_colorAttrE) +STUB("4omqr7cy71k", ures_swap_67) +STUB("4oofFQudfx0", sceLncUtilDeactivateCdlg) +STUB("4orcGYZG2cE", + _ZN15AbstractStorage14YoutubeStorage9SerializeESt10shared_ptrINS_7ContentEES1_INS_4ItemEE) +STUB("4orpsmR6LnM", + _ZN8meta_gen11MsvPromoter21pushBackThumbnailInfoERN12video_parser18VpThumbnailInfo_t_Eb) +STUB("4owKV8D5ep8", __rela_plt_start) +STUB("4oyj-1T54Zc", _ZN3JSC18PropertyDescriptor19setCustomDescriptorEj) +STUB("4p8IUn5CM0I", glGenBuffers) +STUB("4pA3qqAcYco", sceFontGraphicsStructureCanvas) +STUB( + "4pEK47Jbajs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEC1Ev) +STUB( + "4pLeCaU1ms4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEeqERKS9_) +STUB("4pQ3B1BTMgo", + _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE5_IputES3_RSt8ios_basewPcm) +STUB( + "4pTIkK11qpc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB("4pYERzbMOAw", _ZN3sce7Toolkit2NP2V26Friend7FriendsC2Ev) +STUB("4pYihoPggn8", __inet_ntop) +STUB( + "4pcS-W414Zg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "4pl9Ukrxr-w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEED2Ev) +STUB("4pmWgHLlhAQ", _ZN3sce7Toolkit2NP2V24Core5EmptyC1ERKS4_) +STUB( + "4ptWOPXRygw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEED1Ev) +STUB("4q18Y5QTpsc", mono_aot_Sce_Vsh_Accessor_Dbplt_end) +STUB( + "4q2A8iJGpDo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEC1Ev) +STUB( + "4q7k3DHyUJ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB("4q9iRNKayfw", JSScriptCreateFromString) +STUB("4qAqOs8vdRs", JNU_ThrowInternalError) +STUB("4qBL-6tYpds", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS7TusDataEE12deepCopyFromERS7_) +STUB("4qCJAabaQ6A", WKPreferencesGetIntersectionObserverEnabled) +STUB( + "4qD6QmAsqB0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEC2ERS7_) +STUB("4qGrR6eoP9Y", scePthreadDetach) +STUB("4qHwSTPt-t8", _ZNSt7codecvtIcc9_MbstatetEC2ERKSt8_Locinfom) +STUB( + "4qJE+JALDrA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEppEv) +STUB( + "4qS6wdJc3hw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEC2EPS8_) +STUB("4qYZIQDcrG4", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V15Error9getReasonEv) +STUB( + "4qim3wuzH6g", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEeqERKS9_) +STUB("4qpkuvcBNyQ", GCC_except_table27) +STUB( + "4qq2WPcdLmw", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeaderC2Ev) +STUB("4quckD2y7Pg", sceAmprCommandBufferSetMarker) +STUB( + "4qw2Ma5jE3M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("4qwDUAMxe4E", _ZN3sce2Np9CppWebApi7Matches2V123ResponseMatchStatistics19getPlayerStatisticsEv) +STUB( + "4qwbw0HClTc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEppEi) +STUB( + "4qz4UyiinuE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEEC2ERKSA_) +STUB("4r--aFJyPpI", _ZTSPw) +STUB( + "4r-B36POyF0", + _ZN7WebCore11RenderLayer27scrollToOffsetWithAnimationERKNS_8IntPointENS_10ScrollTypeENS_14ScrollClampingE) +STUB( + "4r1m0wnDEwk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEED2Ev) +STUB( + "4r6ywKqycdk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEppEi) +STUB( + "4r7etP2Ess8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEE11get_deleterEv) +STUB("4r9P8foa6QQ", _ZNSt14numeric_limitsItE6digitsE) +STUB("4rCdnji8r8o", _ZN7WebCore8FormData10appendBlobERKN3WTF3URLE) +STUB( + "4rHrE7phnrQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEptEv) +STUB("4rIiwRN5juk", _ZN9Inspector24TargetFrontendDispatchernaEmPv) +STUB("4rJypnZmwSw", _ZN7WebCore4Page29setFullscreenAutoHideDurationEN3WTF7SecondsE) +STUB("4rK-OPl4dic", _ZNK3sce2Np9CppWebApi7Matches2V17Subtask9getStatusEv) +STUB( + "4rK4KSfYuW4", + _ZN7WebCore7UIEvent11initUIEventERKN3WTF10AtomStringEbbONS1_6RefPtrINS_11WindowProxyENS1_13DumbPtrTraitsIS6_EEEEi) +STUB("4rNrGeXUMCU", _ZN7WebCore27PlatformMediaSessionManager26applicationDidBecomeActiveEv) +STUB( + "4rNwTKsu-Yo", + _ZN9Inspector20CSSBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "4rOxRRYQLQ0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEC2EPKS8_) +STUB("4rS5zG7RFaM", scePadGetDeviceInfo) +STUB( + "4rSEgvdg+fA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "4rTJXuq4rGI", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessionsD2Ev) +STUB("4rX2bT-Bcxo", _ZN3sce2Np9CppWebApi15Personalization2V15Error16unsetReferenceIdEv) +STUB( + "4rXkglfN-zU", + _ZN9Inspector21PageBackendDispatcher17setShowPaintRectsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "4ra0u5NBWvo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEE11get_deleterEv) +STUB("4rc9KXXxd6E", _ZN8meta_gen13JpegRetriever12ConvDmsToDegERNS0_10gps_lonlatEb) +STUB("4re+MXX6ltU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEC2ERS7_) +STUB( + "4re781cCA74", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEixEm) +STUB( + "4renT0prugI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("4rn5Ptg2kuE", _ZN7WebCore20PasteboardWriterData10WebContentD1Ev) +STUB("4roTaiqqXQE", _ZN3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectatorD2Ev) +STUB("4rpx-P+kdJQ", _ZNK3sce2Np9CppWebApi6Common8IteratorImEdeEv) +STUB("4rrOHCHAV1w", _ZSt7setbasei) +STUB( + "4ruUXIlh5bg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEC1EPS8_) +STUB("4ruz0+AMzoo", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_28ActivityFeedSharedVideoStoryEED1Ev) +STUB("4rxJYR2IbIU", WKPreferencesSetMediaStreamEnabled) +STUB("4s-kfKFg+5o", _ZN3sce3Xml3Dom15DocumentBuilder26setSkipIgnorableWhiteSpaceEb) +STUB("4s3lpDzi0as", sceVoiceGetMemorySize) +STUB( + "4sDjG2i3u4Y", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("4sFy+2y46mo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEptEv) +STUB( + "4sJZdDo9ZRs", + _ZN9Inspector25DatabaseBackendDispatcher21getDatabaseTableNamesElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "4sOf-Xf6ds8", + _ZN3sce2Np9CppWebApi14SessionManager2V131JoinedPlayerSessionWithPlatform8fromJsonERKNS_4Json5ValueE) +STUB("4sklOXp+9tM", ucol_getUCAVersion_67) +STUB("4sld6v+kIhU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEdeEv) +STUB("4slehMAh00w", sceDebugIpmiGetChannelKidList) +STUB( + "4sugbFHRwHU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEE21intrusive_ptr_sub_refEPS7_) +STUB("4svUXLrNYXs", cairo_surface_destroy) +STUB("4syzM-L5wbk", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_28ActivityFeedSharedVideoStoryEED2Ev) +STUB( + "4szzMae5Vd0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEmmEv) +STUB( + "4t8oDmpFfGw", + _ZN7WebCore17serializeFragmentERKNS_4NodeENS_15SerializedNodesEPN3WTF6VectorIPS0_Lm0ENS4_15CrashOnOverflowELm16ENS4_10FastMallocEEENS_11ResolveURLsEPNS5_INS_13QualifiedNameELm0ES7_Lm16ES8_EENS_19SerializationSyntaxE) +STUB("4tB7KLDYBu4", _ZN7WebCore21DiagnosticLoggingKeys28networkCacheFailureReasonKeyEv) +STUB("4tDF0D+qdWk", __atomic_store_4) +STUB("4tEx7tt+b7g", + _ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody15setNeedsTmpRankERKb) +STUB( + "4tJbBwDnsng", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE5clearEv) +STUB("4tLMfOZLCD0", _ZN7CoreIPC15ArgumentDecoder16removeAttachmentERNS_10AttachmentE) +STUB("4tMXLC7QwyM", WKPreferencesGetUserTimingEnabled) +STUB("4tMeGM38DFc", _Z28SoundPlayer_PauseSurroundPanid) +STUB("4tPhsP6FpDI", sceSaveDataDialogOpen) +STUB( + "4tRwkia1WzA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEC1EPS8_) +STUB("4tUDlqAckSY", mono_aot_Sce_Vsh_Lxplt) +STUB("4tUiu0CIqMM", __ubsan_handle_dynamic_type_cache_miss_abort) +STUB("4tUowCWwdyI", _ZN3sce2Np9CppWebApi7Matches2V124ResponseTeamMemberResultD2Ev) +STUB( + "4tUtQ7uGvps", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEC2Ev) +STUB("4tVyrIS9VDM", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToCancelTicketD2Ev) +STUB("4tWoxO+7N2M", uregion_getRegionFromNumericCode_67) +STUB("4tccmWPe104", _ZN3sce2Np9CppWebApi6Common8IteratorINS2_6StringEEC1EPS4_) +STUB("4tfuolBZ-fw", _ZN3JSC2VM15dumpRegExpTraceEv) +STUB( + "4tjfcW2t-Sk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE10setContextEPNS2_10LibContextE) +STUB("4to3tThESn0", FTA_Support_Format_Bdf) +STUB("4tpaGyvQ5iI", mono_context_set) +STUB( + "4tv8n3wWquI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEEcvbEv) +STUB("4u58d6g6uwU", sceNpTusSetDataAAsync) +STUB("4u5CIZrB1wU", WKPageLoadFileWithUserData) +STUB( + "4uEK7w8ZZ6Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEEdeEv) +STUB("4uHaJsaPZmE", coil_freehostent) +STUB( + "4uHxH05niUM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEE5resetEPS9_) +STUB( + "4uJ3RsdOK0w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEC2EPNS2_10LibContextE) +STUB("4uJJNi+C9wk", isalnum) +STUB("4uKTGWDz1xE", _ZN3JSC2VM22weakObjectRefSpaceSlowEv) +STUB( + "4uPYmU3Fn2A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "4uRWzqLISDA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "4uUaYIjWy-U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE3endEv) +STUB("4uYhaXaveRc", monoeg_g_setenv) +STUB("4ufGsV2Qxvo", _ZN7WebCore21PlatformKeyboardEvent20currentCapsLockStateEv) +STUB("4uhgVNAqiag", _sceNpManagerDestroyMemory) +STUB("4ulPySgBJGQ", _ZN9Inspector20InspectorTargetAgentdlEPv) +STUB( + "4uoScRtKM+Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEED1Ev) +STUB("4upSS+z-5Xs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEC1Ev) +STUB( + "4uq3r-tjVz8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEC1EPS8_) +STUB( + "4uyEWPp6GzY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEEC1ERKSA_) +STUB("4uyHN9q4ZeU", sceAudio3dObjectSetAttributes) +STUB("4uzOc9paw8A", _ZN3WTF9MediaTimeD2Ev) +STUB("4v+otIIdjqg", sceGnmDrawIndirect) +STUB("4v1Cn6SWlQE", _ZN3IPC15ArgumentDecoder16removeAttachmentERNS_10AttachmentE) +STUB("4v48g7H+Dik", + _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBodyC1EPNS1_6Common10LibContextE) +STUB("4v4AzFlXiQM", _ZNK7WebCore9FrameView13isTransparentEv) +STUB("4v8YK4hVhyQ", rgctx_fetch_trampoline_rgctx_98_p) +STUB("4vCyIflWano", _ZNK3sce2Np9CppWebApi7Matches2V120RequestPlayerResults7getRankEv) +STUB("4vEQrYUFJxI", _ZN7WebCore15startOfDocumentERKNS_15VisiblePositionE) +STUB("4vHxgXZ9HV8", glUniform1uiv) +STUB("4vI9lIREBzc", _ZN3PAL10systemBeepEv) +STUB("4vKq7BQr9Og", _ZN7WebCore11SimpleRangeC2EONS_13BoundaryPointES2_) +STUB("4vV0B-6mB-A", pS5) +STUB( + "4vWpUy4V6vo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "4vdwryvSYfk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEneERKS9_) +STUB( + "4ve493w3vC4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEC1EPNS2_10LibContextE) +STUB("4veE0XiIugA", sceSystemServiceGetMainAppTitleId) +STUB( + "4vfv0VZ60zE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEppEi) +STUB("4vkZwDJbMx0", sceKernelGetThreadName) +STUB( + "4vo-+wduNZw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE4initEv) +STUB("4voIrf4fQWA", _ZN3JSC7Symbols32promiseFlagsIsHandledPrivateNameE) +STUB( + "4vp9R+4cauw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "4vrpU4aZF5g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEaSERS7_) +STUB("4vvHlyI6cvk", _ZN3JSC14JSGlobalObject16addStaticGlobalsEPNS0_18GlobalPropertyInfoEi) +STUB("4w1AOvC3ulM", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIdEppEv) +STUB( + "4w7i5dQEoAs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEppEv) +STUB("4w7xlxHan80", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEmmEv) +STUB( + "4w8fqvVVFJs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEC1Ev) +STUB( + "4wAbvDDNr-8", + _ZN3JSC14StructureCache43emptyStructureForPrototypeFromBaseStructureEPNS_14JSGlobalObjectEPNS_8JSObjectEPNS_9StructureE) +STUB("4wBErCRIYHQ", uspoof_areConfusableUTF8_67) +STUB("4wDGvfhmkmk", sceNetConfigDelRoute6) +STUB("4wFdhvGOlHk", sceSystemServiceUsbStorageUnregisterCallbackForMapAvailable) +STUB("4wHuG6WpyF0", _ZN3WTF14SymbolRegistryD1Ev) +STUB("4wIsLoc+FDo", zeroes) +STUB("4wJaGIskMkw", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE5emptyEv) +STUB("4wL5uCteSsQ", nn_term) +STUB( + "4wOwwfwDbq8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE7popBackEv) +STUB( + "4wSU25+iIxg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEE7get_refEv) +STUB("4wSze92BhLI", sceKernelWrite) +STUB("4wWkKh5lfdI", GCC_except_table16) +STUB( + "4wb6uJ8ZF58", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("4wcUDWBEyHY", uspoof_getCheckResultNumerics_67) +STUB("4wdPRamGNMA", _ZN3sce7Toolkit2NP2V23TUS13TusDataStatusD2Ev) +STUB("4wfTy4dm2A8", GCC_except_table95) +STUB("4whCiYTOLzQ", uprv_decNumberRemainder_67) +STUB( + "4wmDCLUYBLQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEEC2ERKS9_) +STUB("4x0HXWXB6rQ", _ZThn136_N7WebCore16HTMLMediaElement16returnToRealtimeEv) +STUB("4x33lGf0eEE", _ZN9Inspector19InspectorAuditAgentnwEm) +STUB( + "4x3tqqL9RD4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE5emptyEv) +STUB("4x5Im8pr0-4", scePadGetInfoByPortType) +STUB( + "4x7IL0nmmlI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEE11get_deleterEv) +STUB("4x9f9f50VxA", _ZN7WebCore11DisplayList9ClearRectC2ERKNS_9FloatRectE) +STUB( + "4x9s6VzXnDw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE8pushBackERKS8_) +STUB("4xAjFW5vRIg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116InitialJoinStateEEneERKS7_) +STUB( + "4xDKCHLPABU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("4xG87W9dTSg", FT_TrueTypeGX_Free) +STUB("4xIZlFGA6Uo", _ZN15AbstractStorage14DailymotionAPIC2Ev) +STUB("4xLuLt-6LXI", _ZN7WebCore6JSFile14finishCreationERN3JSC2VME) +STUB( + "4xMc6mgQTJM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEEaSERSA_) +STUB("4xSvkMgasQc", _ZN3JSC18GCActivityCallbackD0Ev) +STUB("4xZUs4fpZnQ", popen) +STUB( + "4xfsTd0XS2I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEED2Ev) +STUB("4xoMS1UQvKI", SwCtrlSinkStreamStart) +STUB("4xpmxk1v2KI", _ZN7WebCore8PositionC1EPNS_4NodeEiNS0_10AnchorTypeE) +STUB("4y-197YEH2U", _ZN4Manx5MutexC1Ev) +STUB( + "4y0ZppfMqwo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEEaSERKSA_) +STUB("4y2t1NszVno", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament6EventsEE19setCustomReturnCodeEi) +STUB("4y7bFIfDvqM", _ZN3sce7Toolkit2NP9Utilities6FutureIiEC2Ev) +STUB("4y9RNPSBsqg", scePadIsMoveConnected) +STUB( + "4yAMjadREzc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEppEv) +STUB("4yB8kESwxUs", uprv_min_67) +STUB("4yBXGLKCG-s", _ZN3NTF21ResourceRequestLogger5flushEPv) +STUB( + "4yC41GMuUq8", + _ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime15PropertyPreview7SubtypeEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE) +STUB("4yEgSfvxY80", fuse_reply_open) +STUB("4yEj4CWqle4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEE5resetEPS4_) +STUB( + "4yGek1Vzk-0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE5clearEv) +STUB( + "4yJANm8CY0g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEE11get_deleterEv) +STUB("4yKPpCV+JVs", mono_aot_ReactNative_Vsh_Commonjit_got) +STUB("4yKs78fNg00", _ZN3sce7Toolkit2NP2V27Ranking12RangeOfRanksC1ERKS4_) +STUB("4yQbK3wYek8", _Z20Ime_DicAddWordNativeimP11_MonoStringS0_) +STUB( + "4yQjT2nvL2g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEED2Ev) +STUB("4ySoP73IpDQ", _ZN7WebCore22EmptyFrameLoaderClient17cancelPolicyCheckEv) +STUB("4ySyyH7WLNQ", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEEdeEv) +STUB("4yTdU9Hg-Rw", _ZN7WebCore18SecurityOriginData9fromFrameEPNS_5FrameE) +STUB( + "4yU8Ud0rnNg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEE3getEv) +STUB("4yWqjTZtvs4", sceCompsoitorGetGpuClock) +STUB("4yaTIedbZwQ", _ZN7WebCore22GraphicsLayerTransformC1Ev) +STUB( + "4yhgTW7UB6c", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectator9terminateEv) +STUB("4yiUxzwWvKg", _ZN7WebCore11MathMLNames9mtableTagE) +STUB( + "4ykOxuSgNXI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEC1EPKS8_) +STUB( + "4yn7tWIvuGo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("4yojiOtWzMw", _ZN7WebCore9HTMLNames13directionAttrE) +STUB("4ypn4qU4FaA", delCommInfoList) +STUB( + "4ypnKt9Bco0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEC2EPS6_PNS2_10LibContextE) +STUB("4ys00CRU6V8", sceUserServiceGetGlsLiveQuality5) +STUB("4yt9cD1qcEI", FT_Stream_GetUOffset) +STUB( + "4yti+ACB8CA", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi27ParameterToLeaveGameSession12getaccountIdEv) +STUB( + "4yvw4IPHV4Q", + _ZN15AbstractStorage15FacebookStorage15CreateRecursiveERKSbIcSt11char_traitsIcENS_8StlAllocIcEEENS_8ItemTypeEPSt10shared_ptrINS_4ItemEE) +STUB( + "4ywAI+aDezU", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUser10setslotIdsEPKc) +STUB( + "4yx8t5vDxW0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEaSERKS9_) +STUB("4yylLfO254U", mono_btls_x509_store_ctx_get_untrusted) +STUB("4z-nQO02eGQ", sceDeci4hDrfpChkInValidDeciHead) +STUB("4z03CDKv6IA", _ZNK3sce2Np9CppWebApi14SessionManager2V16Friend14accountIdIsSetEv) +STUB("4zE6cBWL8ac", _ZN7WebCore11WindowProxyD2Ev) +STUB("4zFp5aq78zM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE8copyFromERKS7_) +STUB( + "4zHFAGjwRO0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEixEm) +STUB("4zLOHbt3UFk", sceNetConfigSetDefaultRoute6) +STUB( + "4zOYhbIoadI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEE5resetEPS6_) +STUB("4zSU9nkv-vg", + _ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody6toJsonERNS_4Json5ValueEb) +STUB("4zU8rDPa4r4", AacsPermissionActivate) +STUB("4zUh1kGuaiw", sceKernelReserveSystemDirectMemory) +STUB("4zXQk+xDQRM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE5emptyEv) +STUB("4zYmu-s0cLU", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRanking10setboardIdEi) +STUB( + "4zYstZhecug", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("4zhc1xNSIno", _ZTIPKj) +STUB("4zjydcbDOv4", _ZN7WebCore20GraphicsContextStateC1Ev) +STUB("4zl-9Emcwhc", curl_mvfprintf) +STUB("4znIAFaCTDE", _ZN3WTF7RunLoop6isMainEv) +STUB("4zord7MtPtw", _ZN2GK9PlayerPSN13initializeLibEb) +STUB("4zpOeFS4864", _ZN3sce7Toolkit2NP2V24Core7Request20DefaultRequestParams13ASYNC_DEFAULTE) +STUB("4zrm6VrgIAw", _ZN3sce4Json5ValueaSERKS1_) +STUB("4zsaU7SmJeE", WKNavigationDataCopyTitle) +STUB("4zukl3hNxak", _ZN8meta_gen11MsvPromoter20convDatetimeToStringEl) +STUB("4zxevggtYrQ", sceNpLwMutexDestroy) +STUB("5++VaMgcCng", _ZN7WebCore23ISOSchemeInformationBox11boxTypeNameEv) +STUB( + "5++Y3V7Ig0g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEED2Ev) +STUB("5+-ZFSRQ0+k", u_getTimeZoneFilesDirectory) +STUB( + "5+0KnhHX4hA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEppEv) +STUB("5+3b0iloKdw", _ZN7WebCore24DocumentParserYieldTokenD1Ev) +STUB("5+4NY7hFR-c", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEixEm) +STUB( + "5+64jNQOnNo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEE7add_refEv) +STUB("5+7EhH0NgGU", _ZN3sce2Np9CppWebApi6Common13ParameterBaseD2Ev) +STUB("5+ArYJZjo30", mono_valloc) +STUB("5+DHSLOxhyU", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE7reserveEi) +STUB("5+Do3zXMCGk", _ZNK7WebCore12ChromeClient10screenSizeEv) +STUB("5+HWkh86b6A", __asan_report_store8_noabort) +STUB("5+JpnCyOLuI", Java_com_sony_bdjstack_org_bluray_vfs_VFSManagerImpl_isDiscEjected) +STUB( + "5+QHKBkULCM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEixEm) +STUB("5+U+mGZV+SM", X509_INFO_free) +STUB( + "5+c4bXqSClA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEEaSERSA_) +STUB("5+d7lpGjgQ4", _ZN12video_parser5vpcom8datetime8DateTime13GetTimeFormatEv) +STUB( + "5+fGZdCSoY0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEC2EPS8_) +STUB("5+iE70B6-hc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE5beginEv) +STUB("5+k4AJAOi9s", _ZN7WebCore4Page17ensureTestTriggerEv) +STUB("5+lE4DXhz5g", _ZN7WebCore19JSAnimationTimeline7destroyEPN3JSC6JSCellE) +STUB( + "5+lIVcQqh6s", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Console12ChannelLevelEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB( + "5+lvvuRknDY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE8copyFromERKSA_) +STUB( + "5+pq5C5vcOk", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getInteger2Ev) +STUB("5+pvaWRWMT8", + _ZN6WebKit12ChildProcess21initializeProcessNameERKNS_36ChildProcessInitializationParametersE) +STUB("5+r7JYHpkXg", sceAudioOutGetSparkVss) +STUB( + "5+tqnKIoU44", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEE11release_refEv) +STUB("5+u4Z6FmQsc", sceUserServiceGetHrtf) +STUB( + "5+xV+PO5caM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEED2Ev) +STUB("5-0d98Ed20o", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEC1Ev) +STUB("5-2agAeaE+c", sceRemoteplaySetLogLevel) +STUB("5-3wdp3FVtc", _Unwind_GetIPInfo) +STUB("5-CkWwYfClI", uset_spanBackUTF8_67) +STUB( + "5-GWTO14U14", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE5beginEv) +STUB( + "5-HLSycveqU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEC2EPS6_PNS2_10LibContextE) +STUB( + "5-HhMjyoKeQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEEaSERKSA_) +STUB( + "5-I920hFJ0I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEE7add_refEv) +STUB("5-JogjFzMsQ", utrace_functionName_67) +STUB("5-MfXawDf7w", + _ZN7WebCore12SettingsBase21setStandardFontFamilyERKN3WTF12AtomicStringE11UScriptCode) +STUB( + "5-SN41F0lPQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEEC1Ev) +STUB("5-UHpg8s00I", _ZN3sce7Toolkit2NP2V24Core12ResponseBase13getReturnCodeEv) +STUB("5-ZoQoEBymk", _ZN3sce3Xml3Dom8NodeList10removeItemENS1_6NodeIdE) +STUB("5-aNCKDNRNs", _ZN9Inspector27InspectorFrontendDispatcherC1ERNS_14FrontendRouterE) +STUB( + "5-fuw85833w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEED1Ev) +STUB( + "5-hOVu7jBQU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE5clearEv) +STUB("5-ncLMtL5+g", pthread_mutex_setspinloops_np) +STUB("5-rYyD+-vHQ", sceKernelAddProcessToCanvasMap) +STUB( + "5-t-0F3BAYE", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V132NatConnectivityPropertiesFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_25NatConnectivityPropertiesEEE) +STUB("5-tgt0nhe68", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setSubtitleLang) +STUB("5-ulmjWNkbQ", WKPreferencesSetShouldRespectImageOrientation) +STUB("5-xFkXRpd6w", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container23unsetContentDescriptorsEv) +STUB("5-z1quqcDYo", FTA_Export_Module_sfnt) +STUB("500KORghSZM", sceClPthreadMutexInit) +STUB("503Mq+6DpaI", delegate_virtual_invoke_32) +STUB( + "503mRdm0JSk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE5abortEv) +STUB("503z5IFHqFQ", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead27unsetJoinableSpecifiedUsersEv) +STUB("504MPu5OUbg", sceSblACMgrCheckPlatformDLL) +STUB( + "505a5d0-Tro", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEiRNS2_10LibContextEPT_m) +STUB( + "5074nb+MUAE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEaSERKS7_) +STUB( + "50BNmpDFYKs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEE11release_refEv) +STUB("50BvYYzPTsY", sceNpTrophySystemNetSyncTitle) +STUB("50EiGezGmk8", _ZN3IPC15ArgumentDecoder6decodeERl) +STUB( + "50GAmNwwAkI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("50HTRXvbW-k", FTA_Remove_Module_sfnt) +STUB("50HbkESZU-E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEED1Ev) +STUB("50IUIu7683o", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE5beginEv) +STUB("50ML-yo24PU", _ZN7WebCore11ImageSource4sizeEv) +STUB("50Ovbxril00", _ZN3sce7Toolkit2NP2V24Core7Request16TerminateServiceD1Ev) +STUB("50R2xYaYZwE", sceSslReuseConnection) +STUB("50TB0tEQ3g4", _ZN7WebCore8Settings37setPunchOutWhiteBackgroundsInDarkModeEb) +STUB("50VkfE6TpKg", _ZTVN7WebCore18PluginInfoProviderE) +STUB("50W6WJgJaQ8", + _ZN3sce2Np9CppWebApi12Leaderboards2V123RecordScoreResponseBodyC1EPNS1_6Common10LibContextE) +STUB("50YDZbJAa6s", eglPigletMemoryInfoSCE) +STUB("50a9aq8a5AQ", WKSecurityOriginCreateFromDatabaseIdentifier) +STUB("50aDlGVFt5I", _ZTIPKDi) +STUB( + "50gyAQRO03Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEED1Ev) +STUB("50jnl9s+4rA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEE7get_refEv) +STUB("50k7Z03ceQg", mono_aot_Sce_Vsh_UserServiceWrapperjit_code_start) +STUB( + "50kPBVRrbUw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEmmEi) +STUB( + "50oxAQ8IzrQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEC1EPNS2_10LibContextE) +STUB( + "50puy7vggJg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEE7add_refEv) +STUB( + "50vxAafzggA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEED1Ev) +STUB( + "50wiuSx05BY", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB( + "50xe3TrAJ20", + _ZN3JSC21createUint8TypedArrayEPNS_9ExecStateEPNS_9StructureEON3WTF6RefPtrINS_11ArrayBufferENS4_13DumbPtrTraitsIS6_EEEEjj) +STUB( + "510V1yCtlbI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB( + "515v1Rp02ME", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEC2EPS8_) +STUB( + "515w1NyHQR4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE7reserveEi) +STUB( + "516ii4UFaLs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEC1EPS8_) +STUB("5183YWrtwcs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEED1Ev) +STUB( + "51B47S6mJEM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEC2Ev) +STUB("51FdIXsq3Y4", mono_aot_System_Runtime_Serializationplt_end) +STUB("51N8TxsEV0Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEEptEv) +STUB( + "51NNNNiW57U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEC1EPNS2_10LibContextE) +STUB( + "51NiGwPy794", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEEC2Ev) +STUB( + "51Q7kg1Kz9M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEE7add_refEv) +STUB("51RsoHX3cVI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge13ChallengeDataEE3getEv) +STUB( + "51UN613jvmo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEE7add_refEv) +STUB("51VF-fi1yFQ", unorm2_spanQuickCheckYes_67) +STUB("51YpII41z34", eglSwapBuffers) +STUB( + "51a7n5-9YDo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEEC1ERS9_) +STUB( + "51eEmahmxbU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("51ePOmhWku4", _ZN3JSC46UnconfigurablePropertyChangeEnumerabilityErrorE) +STUB("51fZjLwOe-o", mono_aot_Sce_Vsh_Np_AuCheckunbox_trampolines_end) +STUB("51jH2C+it2s", sceFiosOpGetRequestCount) +STUB( + "51kG+EqvxJk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEED2Ev) +STUB( + "51nyuCov02Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEE7get_refEv) +STUB( + "51q02IXvKnU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEEC1ERKSA_) +STUB( + "51viQF0mxts", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("51zlE5TH2-8", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V122UploadDataResponseBodyD1Ev) +STUB("52+a3D15aw4", glTexImage2D) +STUB("520gOzLyXYg", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEED2Ev) +STUB( + "523Kzya5eLI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEE11get_deleterEv) +STUB( + "5256kx+hJFY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEEC2ERKSA_) +STUB("525iEk4QDKc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEC2ERKS7_) +STUB("52AlYvq+dmk", _ZN3sce2Np9CppWebApi6Common10InitParamsD1Ev) +STUB( + "52IEZjtCAzk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEEaSERKS9_) +STUB("52NcYU9+lEo", sceKernelRename) +STUB( + "52QCt9SI414", + _ZN3JSC7JSArray32tryCreateUninitializedRestrictedERNS_25ObjectInitializationScopeEPNS_17GCDeferralContextEPNS_9StructureEj) +STUB( + "52Wr18BA1Z4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE7popBackEv) +STUB( + "52ZjxBEzwf8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEeqERKS9_) +STUB("52bk-Ucb5s0", sceFiosOpGetBuffer) +STUB("52g7rlbVA+s", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEE11release_refEv) +STUB("52gEDarUguI", _ZN9Inspector22InspectorDebuggerAgent14removeListenerERNS0_8ListenerE) +STUB("52lO2B7t-V0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEED2Ev) +STUB( + "52n9tmfDgpQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEppEv) +STUB("52pL2GKkdjA", sceSaveDataSetEventInfo) +STUB("52r68vPvrBA", aio_suspend) +STUB( + "52ufjIRUXuE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB("52wOUjm4hZA", sceSystemLogger2NativeQueueClientSetDeliveryResult) +STUB("52xCgnSgAkY", _ZN3WTF17StringPrintStream8toStringEv) +STUB("52xmQd6HEaE", _ZN3JSC8JSObject19convertToDictionaryERNS_2VME) +STUB("52xo6EJ+8O8", sceUserServiceGetNotificationSettings_2) +STUB("532IaQguwMg", scePthreadMutexattrSetprioceiling) +STUB("533LxprVn0A", Java_com_sony_gemstack_org_havi_ui_HBackgroundImageDecoder_display) +STUB("534mR13VcpU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4DataEE19setCustomReturnCodeEi) +STUB( + "535xR-icw38", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10setString8EPKc) +STUB("537ZOR325ZI", sceSpPthreadCondattrInit) +STUB("538bRGc6Zo8", sceCesMbcsUcsContextInit) +STUB( + "53D6DgxoF7E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEEC2ERSA_) +STUB( + "53DH+ZDnTP4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEED1Ev) +STUB( + "53F+8DeqeTk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE8pushBackERKS8_) +STUB( + "53FZWhFrMhs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEED2Ev) +STUB("53HX8mvBcAg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEEC2Ev) +STUB( + "53HviDeINCI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEC2Ev) +STUB("53OH1UTXxpA", + _ZNK3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform13platformIsSetEv) +STUB( + "53UKXjY7g0Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEE11get_deleterEv) +STUB( + "53XdV-GugyM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEE5resetEPS9_) +STUB("53XsM4QkTfc", _ZN7WebCore23commonInclusiveAncestorERNS_4NodeES1_) +STUB("53YC8+zD9eU", _ZTVN7WebCore11DisplayList17DrawFocusRingPathE) +STUB("53ZFAkGdDkU", WKBundleFrameGetVisibleContentBounds) +STUB( + "53chqCI3PiI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEC1ERKS7_) +STUB( + "53cpI185v8M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("53dHGwil0DU", jpeg_mem_dest) +STUB("53eCdQ7MMEc", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets16setrulesetFilterEPKc) +STUB( + "53o1qsOLFII", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE7popBackEv) +STUB("53s-hczaH5A", _ZThn120_NK7WebCore16HTMLMediaElement11currentTimeEv) +STUB( + "53s3GPyomgY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEEC2ERKSA_) +STUB("540lotO7oHE", sceAppInstUtilInitialize) +STUB("542QUkz8cns", Java_com_sony_gemstack_io_FilePath_n_1makecanonical) +STUB("543BALhGa98", + _ZThn24_N9Inspector22InspectorDebuggerAgent20setPauseOnAssertionsERN3WTF6StringEb) +STUB("5480seCq-jQ", _ZN7WebCore8SVGNames14pathLengthAttrE) +STUB( + "54Awhl1UJw4", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetInteger5Ev) +STUB("54Fhpv4OFfw", rgctx_fetch_trampoline_mrgctx_126_p) +STUB("54HrgUIQHOk", cairo_glyph_path) +STUB( + "54KWYt3g2kU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEneERKS9_) +STUB("54Tc57Y9FUA", _ZN9Inspector35DOMDebuggerBackendDispatcherHandlerC2Ev) +STUB("54YE-dy2Qfk", _ZN3sce2Np9CppWebApi6Common6VectorIfE6insertENS2_8IteratorIfEERKfRS6_) +STUB( + "54YMjiFCx2o", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB( + "54YuQ+Xjb38", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("54e6aO3EayI", _ZN7WebCore6Path2DnaEm) +STUB("54gwGJf2rwo", _ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_11ProductInfoEE8max_sizeEv) +STUB("54i4mVgs+44", + _ZN3JSC19HeapSnapshotBuilder38setOpaqueRootReachabilityReasonForCellEPNS_6JSCellEPKc) +STUB( + "54kPc1if2e4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE21intrusive_ptr_add_refEPS9_) +STUB("54phPH2LZls", sceVoiceStart) +STUB( + "54rpfdOdYo4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEC2EPS6_PNS2_10LibContextE) +STUB( + "54sBvmlCIuk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "54sJe2WblKI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEEC2EPSA_PNS2_10LibContextE) +STUB( + "55+iGrHlGr4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEdeEv) +STUB("55-0EcgDmz8", _ZN3WTF13MetaAllocatorD2Ev) +STUB("552Oh3lsLHQ", uenum_unextDefault) +STUB( + "55ALCWTmXe0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEE3getEv) +STUB( + "55AQ2NTO+iU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEC1EPS8_) +STUB( + "55C+GhvF9pQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEC1ERS7_) +STUB( + "55DWKnsWGnY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE5beginEv) +STUB("55Mn7EPyCAg", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE7reserveEi) +STUB("55QR+rnq6FI", WKGeolocationManagerSetProvider) +STUB( + "55QZrzatF74", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE7reserveEi) +STUB("55U6ZRnK8+A", sceCesRefersUcsProfileIso8859_13) +STUB("55U74xVRi-c", _ZN4Manx11MediaPlayer10cancelLoadEv) +STUB("55aShElDfY4", scePthreadMain) +STUB( + "55btamARQFs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEC1EPS6_PNS2_10LibContextE) +STUB("55dAn2Lp0j4", _ZN3sce7Toolkit2NP2V212ActivityFeed7StoryIdD1Ev) +STUB("55jv0M4baUA", mono_aot_Sce_Vsh_ErrorDialogUtilWrappermethod_addresses) +STUB( + "55k2W2vK5UY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEED1Ev) +STUB("55nMATnNlS4", _Ux86_64_getcontext) +STUB("55ngJr+I6YI", cpp_demangle_read_name) +STUB( + "55tnwOSv30w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEC2Ev) +STUB("56+wNliTZSY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEEC1EPS4_PNS2_10LibContextE) +STUB("561j4eDPGGE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEcvbEv) +STUB("561zLg7hORI", _ZN3JSC13DebuggerScope6s_infoE) +STUB("564-xfiutdc", _ZN7WebCore9plainTextERKNS_11SimpleRangeEtb) +STUB( + "567jEB4JFwM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEC2Ev) +STUB("56DcxnzDcpg", _ZN7WebCore8SVGNames19diffuseConstantAttrE) +STUB( + "56HRjObk5FQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEEC1Ev) +STUB( + "56Ht5Yloyfc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEE7add_refEv) +STUB( + "56NYbWlyAPE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "56NbYD9iAlg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("56QLTqx911s", sceNpUniversalDataSystemEventPropertyObjectSetInt64) +STUB( + "56W9tl3fAEY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE4sizeEv) +STUB("56Wsrmx3txk", _ZN3WTF10ParkingLot9unparkOneEPKv) +STUB("56bliV+tc0Y", sceUserServiceSetGlsCameraEdgeLevel) +STUB("56cL-Bvyo44", _ZN3sce7Toolkit2NP2V28Commerce14ProductDetails28PRODUCT_LONG_DESCRIPTION_LENE) +STUB("56eZPuFnFFo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEptEv) +STUB("56ekFBUjiYU", _ZN3sce7Toolkit2NP2V29Messaging7Request27GetReceivedGameDataMessagesD1Ev) +STUB("56f34U0xe8c", glGetInternalformativ) +STUB("56gTiiSPo5I", _ZN3sce2Np9CppWebApi6Common6VectorIlEC2Ev) +STUB("56lwe489dZ0", _ZN3sce7Toolkit2NP2V27Session10InvitationC2Ev) +STUB("56zNcQIs4+U", _ZN7WebCore11FrameLoader11shouldCloseEv) +STUB( + "57AiRDvLhkA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEED1Ev) +STUB("57B4p3HC1us", uenum_openCharStringsEnumeration) +STUB("57DWOV4h+so", _ZN3JSC8Debugger18setProfilingClientEPNS0_15ProfilingClientE) +STUB("57Jmwvu69bo", mono_thread_get_managed_id) +STUB( + "57MiiNgpqGo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "57NVOfUBmiw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "57ST1U27ZxY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEEcvbEv) +STUB("57WAc7JREYI", _ZN3WTF14AtomStringImpl14lookUpSlowCaseERNS_10StringImplE) +STUB("57XmD42P9gQ", _ZN4IPMI4impl10ClientImpl16invokeSyncMethodEjPKvmPiPvPmm) +STUB("57ZK+ODEXWY", sceKernelAddTimerEvent) +STUB( + "57fPwzYZiCY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEE11release_refEv) +STUB("57hBP8lBBC4", ures_getUInt) +STUB("57labkp+rSQ", sceAgcDcbAcquireMem) +STUB("57mMrw0l-40", _ZNSt6_WinitC2Ev) +STUB( + "57n9Dzo68ow", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEppEv) +STUB("57nl0V2pVZY", Java_java_net_PlainDatagramSocketImpl_datagramSocketClose) +STUB( + "57qD5+5Rfno", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEcvbEv) +STUB("57r68Byk4gk", _ZN3JSC9CodeBlock19baselineAlternativeEv) +STUB( + "57rzRryzsBk", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeaders15setCacheControlERKNS1_6Common6StringE) +STUB( + "589Hj6gCFu0", + _ZN3sce7Toolkit2NP2V26Trophy19getUnlockedTrophiesERKNS3_7Request19GetUnlockedTrophiesEPNS2_4Core8ResponseINS3_16UnlockedTrophiesEEE) +STUB( + "589Iv4F6keU", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody21setTotalVariableCountERKi) +STUB("58ATZ7hxU2g", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence12Notification14PresenceUpdateEED2Ev) +STUB("58CIUaViW+k", u_isJavaIDStart) +STUB("58CUfuxZsUg", _ZN3JSC11VMInspector16isValidCodeBlockEPNS_2VMEPNS_9CodeBlockE) +STUB( + "58Cjd7PzpdE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEC2Ev) +STUB( + "58CkS0ieIm4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEC1EPS8_) +STUB("58GfHBfwpOY", sceKernelGetQafExpirationTimeNotafterForRcmgr) +STUB( + "58HnTZbC0+k", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfiles10initializeEPNS1_6Common10LibContextEPKc) +STUB("58J79QECdTA", _ZN3WTF10AtomString6numberEm) +STUB( + "58bzh57vGv8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEdeEv) +STUB( + "58ebZk0fJEQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEixEm) +STUB("58gHhliZIgE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE3endEv) +STUB("58jj0FDsGSk", pio2_3tlo) +STUB("58mTXoDizKM", _ZN7WebCore20ISOOriginalFormatBoxD1Ev) +STUB( + "58oSHlK49sQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEC2ERKS7_) +STUB( + "58tQ8xO9Bi0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEaSERKSB_) +STUB("58v9tSlRxc8", sceRemoteplayImeNotifyEventResult) +STUB( + "58vr16ibHgM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEC2Ev) +STUB("58xOuBct8co", _ZN7WebCore6ISOBoxdaEPv) +STUB( + "59-DaqXtgMs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("595JFF0TQeo", sceApplicationDebugSpawnDaemon) +STUB("59E5fECPIPw", _ZN3JSC8DebuggernwEm10NotNullTagPv) +STUB( + "59E95MocP2Q", + _ZN3sce2Np9CppWebApi14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBody12setAccountIdERKm) +STUB("59Il7nyszck", _sceNpIpcDefaultMallocImpl) +STUB("59JzpduJC-k", sceSpPthreadMutexattrDestroy) +STUB("59RwGyLk84s", uprv_mapFile_67) +STUB("59S26y-1Ono", _ZN7WebCore9HTMLNames10itemidAttrE) +STUB("59ZJ9flQTpA", + _ZN7WebCore21NetworkStorageSession47resetCrossSiteLoadsWithLinkDecorationForTestingEv) +STUB("59ZoWcKl5v8", + _ZNK3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody16getMinScoreLimitEv) +STUB("59aOFn29ZvU", __cxx_global_var_init .37) +STUB( + "59jr3NWR3i0", + _ZN3sce2Np9CppWebApi14ConnectAccount2V216PartnerTokensApi26ParameterToGetPartnerToken9terminateEv) +STUB("59kubE57kwA", _ZN3JSC9JSONParseEPNS_9ExecStateERKN3WTF6StringE) +STUB("59mYlsSHdtY", _ZN2sh14ShaderVariableC1Ev) +STUB("59oywaaZbJk", _ZTVSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE) +STUB("59tL1AQBb8U", sceHttpUnsetEpoll) +STUB( + "59tRZPLqjxE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("59wLmumrkno", _ZN7WebCore4Page30setNeedsRecalcStyleInAllFramesEv) +STUB("59yDtw0EuFI", sceVisionManagerGenerateRegisterUserDataInitialize) +STUB("5A0dlaindAY", _ZN7bmalloc29StaticPerProcessStorageTraitsINS_11EnvironmentEE7Storage8s_objectE) +STUB( + "5A1JkOFCwqg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEptEv) +STUB("5A1ghKVPits", _ZNK3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer16customData1IsSetEv) +STUB("5A5zNbX2eqA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEEC1Ev) +STUB("5A93XZbySDE", Java_java_awt_GnmImage_clonePSD) +STUB("5A9QHOsqHvo", + _ZN7WebCore24CoordinatedGraphicsLayerC1ENS_13GraphicsLayer4TypeERNS_19GraphicsLayerClientE) +STUB("5A9f4BE9kWw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEaSERKS7_) +STUB( + "5AA4MnTQPTQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEC2ERKS8_) +STUB("5AKCnEfGT+Y", ures_getBinary) +STUB("5AL8k9c6Poc", _ZNK15AbstractStorage12LocalStorage10GetServiceEv) +STUB("5AMS0IntU8I", creat) +STUB("5AN3vhTZ7f8", _FPoly) +STUB("5ASnwTJcyzM", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEptEv) +STUB("5AYZm1ZgpwA", _ZN3sce2Np9CppWebApi6Common8IteratorIfEC2EPf) +STUB("5AYcEn7aoro", wcstoul) +STUB("5AZPp99ogrc", _ZNK3sce4Json5Array8iteratorneERKS2_) +STUB("5AfAYG74PQE", _ZN7WebCore11HistoryItemC1ERKN3WTF6StringES4_) +STUB("5Ag8q0zzoo8", udata_readInt16) +STUB( + "5Ah9JVr6u5Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE10setContextEPNS2_10LibContextE) +STUB("5Akd5zFpylM", _ZN3sce7Toolkit2NP2V210Tournament27TeamVsTeamTournamentDetailsaSERKS4_) +STUB( + "5Ap2TcCYIJc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEEC1ERKSA_) +STUB("5AtqyMgO7fM", sceGnmSdmaOpen) +STUB("5AuWFbVvqTU", sceDepthLoadCalibrationData) +STUB( + "5AvSpOCNyGg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEptEv) +STUB("5B+RW4LNIzg", fuse_chan_new_compat24) +STUB("5B+TSfX4cRc", _ZN9Inspector28DOMStorageFrontendDispatchernwEm) +STUB( + "5B1RHTrNZDY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEplEm) +STUB( + "5B1liGtUSpE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEmmEi) +STUB("5B3XPC0hGC0", WKWebsiteDataStoreSetStatisticsGrandfathered) +STUB( + "5B6Iz7u0m5Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEEdeEv) +STUB("5B891j8wVb0", _ZNK3WTF7SecondsplENS_13MonotonicTimeE) +STUB("5B9XA9bFUy4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V111OfferStatusEEeqERKS7_) +STUB("5B9yA8ziBGo", uspoof_getSkeleton_67) +STUB( + "5BBSKModVTA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE6resizeEj) +STUB("5BCa3NjIBck", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEdeEv) +STUB( + "5BFKk+6wC-Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEE11release_refEv) +STUB( + "5BI6Ocwgrds", + _ZN9Inspector25NetworkFrontendDispatcher17requestWillBeSentERKN3WTF6StringES4_S4_S4_NS1_6RefPtrINS_8Protocol7Network7RequestENS1_13DumbPtrTraitsIS8_EEEEddNS5_INS7_9InitiatorENS9_ISC_EEEENS5_INS7_8ResponseENS9_ISF_EEEEPNS6_4Page12ResourceTypeEPS3_) +STUB( + "5BIJNOCKfqU", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetInteger8Ev) +STUB("5BIbzIuDxTQ", _ZTISt12domain_error) +STUB("5BOCgzM-dGE", _ZN7WebCore17MouseRelatedEvent7offsetYEv) +STUB("5BQIjX7Y5YU", _ZNKSt7codecvtIwc9_MbstatetE13do_max_lengthEv) +STUB("5BQsDP-Id8g", _ZN7WebCore25WebSocketChannelInspector17didCloseWebSocketEPNS_8DocumentE) +STUB("5BT8vo62XFw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEE7get_refEv) +STUB("5BUa9rW5onM", + _ZN3sce7Toolkit2NP10IdDatabase10addCommsIdERKNS1_15CommunicationIdENS1_11ServiceTypeE) +STUB("5BaGDINXu6c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEEC1EPKS6_) +STUB("5BaeQoUoWsk", _ZN3sce7Toolkit2NP15AppSTLAllocatorI13SceNpOnlineIdEC2Ev) +STUB( + "5BaerSlEa9Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEE11release_refEv) +STUB("5BiLoju9NSo", sceFsUfsExtendFile) +STUB("5BlrhmRn+ww", png_get_image_height) +STUB("5Bv-04tmchM", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead16setSwapSupportedERKb) +STUB( + "5BvB74TO5xc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("5Bvl-vILki4", _ZN7WebCore9HTMLNames8loopAttrE) +STUB("5BzJO0hvqNQ", _ZN3sce7Toolkit2NP2V29Challenge7Request16GetChallengeDataD2Ev) +STUB("5C996P2V92A", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEEaSERKS6_) +STUB( + "5CHHO1+FcAY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB( + "5CIs0tSI30U", + _ZN3sce7Toolkit2NP2V27NpUtils22getOnlineIdByAccountIdERKNS3_7Request22GetOnlineIdByAccountIdEPNS2_4Core8ResponseINS3_5IdMapEEE) +STUB("5CJXb1X+okk", cairo_surface_set_device_scale) +STUB("5CL3pzRNzJ4", glClearBufferuiv) +STUB("5CRAo7r0EsQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEEppEi) +STUB( + "5CRjomJhWqI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEmmEi) +STUB( + "5CW-MRMEkzE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEaSERS7_) +STUB("5CdQTZIQPxM", sceAgcDriverGetEqEventType) +STUB("5ChfcHOf3SM", sceAudioDeviceControlSet) +STUB("5CnMx6kR-Gw", u_fopen_67) +STUB( + "5CtDWqxxyVY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("5CtU+6RQAHM", _ZN7WebCore8Document7pluginsEv) +STUB("5CuHZwTDEtk", _ZN7WebCore6RegionC1ERKNS_7IntRectE) +STUB("5Cye0EwTQUw", rgctx_fetch_trampoline_mrgctx_37_p) +STUB( + "5CzL8byRSwU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEE7add_refEv) +STUB("5D2GzAMcjL4", _ZNK7WebCore21ISOTrackEncryptionBox18defaultIsProtectedEv) +STUB("5D5XeYqrxeE", ulist_close_keyword_values_iterator_67) +STUB("5DCBla1N0I8", _ZN7WebCore9HTMLNames7dataTagE) +STUB( + "5DD+FlL7ozs", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser28setxPsnAcceptPlatformNamePs5ENS5_25XPsnAcceptPlatformNamePs5E) +STUB("5DFeXjP+Plg", _ZNSt10moneypunctIcLb0EEC2Em) +STUB("5DIzIUbaYkc", sceApplicationSendDebugSpawnResult2) +STUB("5DLa+e3Daho", _ZN7WebCore16HTMLMediaElement32prepareForVideoFullscreenStandbyEv) +STUB( + "5DNq28+Q2og", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEE3getEv) +STUB("5DQUuOYK190", ft_validator_run) +STUB("5DSGmoa4S+s", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18SessionInformationEED1Ev) +STUB("5DW6m6ZvXWY", _ZN7WebCore8SVGNames16lengthAdjustAttrE) +STUB( + "5Db4C3Rva7U", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "5DbD+R8gyHA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEC2EPS6_PNS2_10LibContextE) +STUB("5DcuNJ7D+Cs", sceNpUniversalDataSystemIntGetMemoryStat) +STUB("5DdJdPeXCHE", _ZTSSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE) +STUB("5DjHI44jYFw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEC2ERS7_) +STUB( + "5Dk0n5+845U", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("5Dk6vKTnImk", _ZN7WebCore8SVGNames11spacingAttrE) +STUB("5Dkyawhp0TE", _ZNK7WebCore11RenderVideo8videoBoxEv) +STUB("5DkyduAF2rs", sceNpOpenEventFlag) +STUB("5DlWM6aGVeI", sceGpuExceptionAddRazorHandler) +STUB("5DmPhiGW5Sg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching6WorldsEEC2Ev) +STUB("5DmxNjwctv4", _ZN3WTF14FileSystemImpl8realPathERKNS_6StringE) +STUB("5DopXjCXIwA", ucnv_safeClone_67) +STUB("5DpZw7KOQmg", _ZN3sce2np9JsonValue7SetTypeENS1_9ValueTypeE) +STUB("5Ds-y6A1nAI", sceUserServiceGetNpNpId) +STUB("5DxUI-9Nrnw", mono_aot_Sce_Vsh_GriefReportStoragejit_got) +STUB( + "5DyPP0VdX2s", + _ZN3sce2Np9CppWebApi14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyC2EPNS1_6Common10LibContextE) +STUB("5DzttCF356U", _ZNSt9_Num_base9is_signedE) +STUB("5E1G+BA51Jo", delegate_virtual_invoke_imt_m_6) +STUB( + "5E2IdDJagiA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEEaSERS9_) +STUB("5E932GGEHuI", + _ZN3sce2Np9CppWebApi14SessionManager2V136GetFriendsPlayerSessionsResponseBody10getFriendsEv) +STUB( + "5E94XbjpWdE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEC2Ev) +STUB( + "5E9PdXGV7CU", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC2ERKS8_) +STUB("5EA6L4j9OrU", _ZN3sce2Np9CppWebApi7Matches2V113RemovedPlayer11setPlayerIdEPKc) +STUB("5EIJscg02gs", WKBundleNavigationActionCopyFormElement) +STUB("5EQ9mH3irMI", _ZN4Manx7Network6strdupEPKc) +STUB( + "5EQTtBhbtYY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEE11release_refEv) +STUB( + "5EQz9BE0cRE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEED1Ev) +STUB( + "5ESANxDrRwE", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchDetail27setupdateMatchDetailRequestENS1_6Common12IntrusivePtrINS3_24UpdateMatchDetailRequestEEE) +STUB("5ESzBPcRI7U", _ZN7WebCore15hasAnyPlainTextERKNS_11SimpleRangeEt) +STUB("5EU0WjubeF0", + _ZNK7WebCore26IdentityTransformOperation5applyERNS_20TransformationMatrixERKNS_9FloatSizeE) +STUB( + "5EZCok90ehs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE8capacityEv) +STUB("5EbtsmF7TSc", _ZN15AbstractStorage12LocalContent5WriteEPKvlPl) +STUB("5EiQCnL2G1Y", sceUserServiceGetRegisteredUserIdList) +STUB( + "5EmwTwUwdxg", + _ZN3sce2Np9CppWebApi15Personalization2V128GetAccessCodeResponseFactory6createEPNS1_6Common10LibContextEPKcS9_lPNS5_12IntrusivePtrINS3_21GetAccessCodeResponseEEE) +STUB("5Es17ZWH0Vw", _ZN3sce2Np9CppWebApi6Common6VectorIfEC2EPNS2_10LibContextE) +STUB( + "5Ev5KNi-bdE", + _ZN9Inspector25DebuggerBackendDispatcherC2ERNS_17BackendDispatcherEPNS_32DebuggerBackendDispatcherHandlerE) +STUB("5EwOw7QfY3w", _ZN3sce7Toolkit2NP2V28Commerce7SkuInfo14SKU_ID_MAX_LENE) +STUB("5Eyqy6FVc18", _ZNK7WebCore16VisibleSelection16hasEditableStyleEv) +STUB("5EzjnsqMRxE", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_16NetStateDetailedEE3getEv) +STUB("5F0N899ZNx0", mono_aot_Sce_Vsh_AppDbWrapperunbox_trampolines) +STUB( + "5F0Tii3IxKY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("5F18KLo264k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEE11release_refEv) +STUB("5F4qWfh3NsI", JSGlobalContextRetain) +STUB( + "5F7D2WLcblc", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "5F999wWUj7k", + _ZN3sce7Toolkit2NP2V23TUS20getFriendsDataStatusERKNS3_7Request20GetFriendsDataStatusEPNS2_4Core8ResponseINS3_19FriendsDataStatusesEEE) +STUB( + "5F9VIeQgPyU", + _ZN7WebCore14JSWebAnimationC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_12WebAnimationENS6_13DumbPtrTraitsIS8_EEEE) +STUB("5F9dAVYm+Ek", _ZN7WebCore11JSDOMWindow21deletePropertyByIndexEPN3JSC6JSCellEPNS1_9ExecStateEj) +STUB( + "5FAgPlFviq0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE8capacityEv) +STUB("5FD0gWEuuTs", _ZGVNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE) +STUB("5FEnWE-49pI", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats13getReputationEv) +STUB( + "5FF4SGJPjJI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEEptEv) +STUB("5FJw6Rumom4", _ZN12video_parser13cVideoPathMsvC1EPKc) +STUB("5FVmKLxFnys", _ZNK7WebCore14DocumentLoader16mouseEventPolicyEv) +STUB( + "5FW7y8rMlkI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEC1EPNS2_10LibContextE) +STUB("5FWmbpkU1uw", + _ZN3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBodyC2EPNS1_6Common10LibContextE) +STUB("5FYa0MBDXEo", _ItL_pi_lo) +STUB("5FdejCVZfZs", __wrap_getenv) +STUB("5FfwhxCHUwA", ZIP_CRC32) +STUB("5FoE+V3Aj0c", _rtld_addr_phdr) +STUB( + "5FsZDH-KO5Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEneERKS9_) +STUB("5FtM7gmxmLA", ucnv_fromUCountPending_67) +STUB("5G+Z9vXPWYU", CERT_decryptRSASignature) +STUB("5G-MA1x5utw", sceUserServiceGetCurrentUserGroupIndex) +STUB("5G2ONUzRgjY", memrchr) +STUB("5G2Swzlv4dU", sceCesEucJpToUtf32be) +STUB("5G4TSqmhiF4", _ZNK9Inspector14InjectedScript9wrapTableEN3JSC7JSValueES2_) +STUB("5G8vGPoCtr8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEC2Ev) +STUB( + "5GDUprckmJc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("5GFncAhZHc4", sceAppInstUtilGetConfigList) +STUB( + "5GLoc-y05dY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE5clearEv) +STUB("5GRg11q-4Po", sceAppInstUtilMountBdEmu) +STUB("5GXbIFVAO5E", + _ZN7WebCore18JSHTMLImageElement15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB( + "5GbDxFuC7Lo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEC1ERS7_) +STUB( + "5GcDseBRWz8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEmmEv) +STUB("5GdEk83csHo", _ZN3sce7Toolkit2NP2V24Core10OnlineUserD1Ev) +STUB( + "5GdfEwKrhuM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE8capacityEv) +STUB("5GeRUU1F3bo", mono_aot_Sce_Vsh_AppContentUtilWrapperunwind_info) +STUB("5Gjz1nLOKvo", PixelFormatLookup) +STUB("5GqRsNdzwwQ", _ZN15AbstractStorage12LocalService20GetSandBoxRandomWordEv) +STUB( + "5Gs6k-L-9Hk", + _ZNK3sce2Np9CppWebApi11UserProfile2V111PresenceApi28ParameterToGetBasicPresences13getaccountIdsEv) +STUB( + "5GwB3shPZPQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEEC2ERKSA_) +STUB( + "5GxWU6thsFw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("5H-bke+QIn0", + _ZN12video_parser17cVideoProfilerMp421_releaseThumbnailInfoEPNS_13VpMediaInfo_tE) +STUB("5H2j5vefKBg", _ZNK7WebCore14ScrollableArea16scrolledToBottomEv) +STUB("5H2nAWalcPs", _ZN12video_parser16cVideoContentMp414getFflInstanceEPPv) +STUB("5H3GkWWQY5A", _ZN3sce7Toolkit2NP2V27NpUtils7Request24SetTitleIdForDevelopmentC1Ev) +STUB( + "5H5LNSRRzKM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE3endEv) +STUB("5H5XOvxA8dw", _ZN3sce7Toolkit2NP2V23TUS25AtomicAddToAndGetVariable5resetEv) +STUB("5H5ytGoOj0A", _ZN7WebCore14ResourceHandle6cancelEv) +STUB( + "5HFbXGSr1nY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB("5HHP0m89Bvk", _ZNK3sce2Np9CppWebApi14SessionManager2V116FromNonPsnMember11getPlayerIdEv) +STUB("5HIn4jxKwu8", glIsQueryEXT) +STUB( + "5HJ9REA0seY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE7reserveEi) +STUB("5HJZD8sNEWA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE4sizeEv) +STUB("5HR+YnAQc14", _ZNK7WebCore4Page16hasSeenAnyPluginEv) +STUB("5HWN7o2vE6M", _ZN7WebCore9HTMLNames11basefontTagE) +STUB("5HWP63cOH+w", _ZN3sce2np18HttpConnectionPoolD0Ev) +STUB("5HYK5k5FY-M", _ZN3JSC7Symbols46webAssemblyCompileStreamingInternalPrivateNameE) +STUB( + "5HZxpDKT1Xs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB("5HbixKduB3g", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setMixerGain) +STUB( + "5HbwPMOQCB8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEC1Ev) +STUB( + "5HeaBTx0AVA", + _ZN3sce2Np9CppWebApi14SessionManager2V161PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_29RequestPlayerSessionSpectatorEEEEEPNS9_INS3_54PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEE) +STUB("5Het+dGMX+0", ures_getByKeyWithFallback_67) +STUB("5HfzFsObscc", _ZN7WebCore23SynchronousLoaderClient24platformBadResponseErrorEv) +STUB( + "5Hk10gClZpU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEEC2Ev) +STUB("5Hnl+iQQPyc", _ZN7WebCore4Page29clearPreviousItemFromAllPagesEPNS_11HistoryItemE) +STUB( + "5HvtOavr9uo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE5beginEv) +STUB("5I-Xs0fzfgM", delegate_virtual_invoke_imt_3_p) +STUB("5I080Bw0KjM", sceFontGraphicsStructureVertexesGlyph) +STUB("5I0KrtwvlSw", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetInteger1Ev) +STUB("5I0ZSvxhRmc", glDrawElementsInstanced) +STUB( + "5I1zcVqyxV0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEE11get_deleterEv) +STUB("5I4KfoHqFck", _ZN3WTF8JSONImpl5ValueC1ENS1_4TypeE) +STUB( + "5I54F6UusM4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEC2ERS8_) +STUB("5I8V274Iw9Y", _ZN9Inspector24WorkerFrontendDispatchernaEmPv) +STUB("5IARBN5zNTE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE5clearEv) +STUB("5ICFZx8ga2c", _ZN3sce2Np9CppWebApi6Common6VectorIiE5clearEv) +STUB("5ICXeCXAnDQ", sceAvSettingGetHdmiKsvList) +STUB("5IEd+tXmLQo", _ZN3sce2Np9CppWebApi7Matches2V118RequestTeamResults9setTeamIdEPKc) +STUB("5IFOAYv-62g", sceVrTrackerCpuProcess) +STUB("5IJlKspehi8", winfnt_driver_class) +STUB("5INKKNAjXjc", mono_btls_bio_mem_new) +STUB("5IPrQ6zXIvg", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V113MmrPropertiesD1Ev) +STUB("5IVqeThOi2s", sceDeci5Write) +STUB( + "5IZ1JyIpUqw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEC1Ev) +STUB( + "5IdKLy7eRbA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "5IewxYtcsUY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEED2Ev) +STUB("5IiyI7vRRlw", uprv_modf) +STUB( + "5IkBkh+MZYw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEptEv) +STUB( + "5InHWOweRMM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEptEv) +STUB( + "5InePIqhGU0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEE7add_refEv) +STUB("5IpoNfxu84U", lrand48) +STUB("5IuLhXyCfqA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEC1Ev) +STUB( + "5IvXMWnNN90", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEdeEv) +STUB("5Ixi+NTtIBk", mono_aot_I18N_MidEastunbox_trampolines) +STUB("5IyJ1Yh0yKg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ResponseCooperativeResultEEneERKS7_) +STUB( + "5IzM1kTfnkg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEC1EPS8_) +STUB("5J-HJDElPnM", scePssCameraSetConfigType) +STUB("5J28fLJPSB8", _ZNK3WTF10StringView10startsWithERKS0_) +STUB("5J8WWcx0pzw", unum_setAttribute_67) +STUB("5J8hYJct0v4", _ZN7WebCore24CoordinatedGraphicsLayer18createBackingStoreEv) +STUB("5J9GGMludxY", sceNpTusSetMultiSlotVariableAsync) +STUB("5J9k6e9d9DA", sceDebugGetUltListOfUltRuntime) +STUB( + "5JF2AU7696w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEmmEi) +STUB("5JG2TkVNkhY", _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse17unsetMatchResultsEv) +STUB( + "5JRwV0UMSTo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEEptEv) +STUB( + "5Jefi6PcTcU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEC1Ev) +STUB("5Jer6es4taY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEE7get_refEv) +STUB("5JmzZt8twAo", _ZN3sce4Json6ObjectD1Ev) +STUB("5Jowi8NzZIs", + _ZN3sce2Np9CppWebApi7Matches2V119ResponseTeamResultsC2EPNS1_6Common10LibContextE) +STUB( + "5JpVxEMC2DI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEC2EPKS8_) +STUB("5JrIq4tzVIo", mono_pmip) +STUB("5JygG55ciUo", _ZN3sce7Toolkit2NP2V28Commerce8SkuLabelC2Ev) +STUB("5JyhV10GpQE", _ZNK3sce3Xml3Dom8Document12getLastChildENS1_6NodeIdE) +STUB("5JywDY5LQK0", sceM4aacEncDeleteEncoderEx) +STUB("5K-9Y7aFV60", _ZN3WTF13isMainRunLoopEv) +STUB("5K0NVMGxk7E", _ZN7WebCore13MediaQuerySetD1Ev) +STUB("5K48og4tl0c", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE3endEv) +STUB("5K4R8L+HeF4", _ZN3JSC7Symbols14SetPrivateNameE) +STUB("5K54SEOf8Gk", sceShareFactoryUtilLaunchShareFactory) +STUB( + "5K7DzlEGXDc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "5K7cxBMxaiw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEmmEv) +STUB("5K9LUkQJElg", _ZN7WebCore9HTMLNames20onanimationstartAttrE) +STUB( + "5KDBZhXkFwU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEE11get_deleterEv) +STUB("5KG2sHpzEmo", _ZNK3WTF9MediaTime9isInvalidEv) +STUB("5KHU1bntbb0", _ZN7bmalloc12logVMFailureEm) +STUB("5KIm4JyA6d8", _ZN3sce7Toolkit2NP9Interface21registerEventCallbackEPFvRKNS1_5EventEE) +STUB("5KKsXg7EXi8", sceImeBackendPartConfirm) +STUB("5KOPB+1eEfs", _ZTVSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE) +STUB( + "5KRRH0MFHz4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEED1Ev) +STUB("5KUTurhTufw", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10ContainersEE3setEv) +STUB("5KUuEEmBTpo", RAND_load_file) +STUB("5KWrg7-ZqvE", pthread_setaffinity_np) +STUB("5KYlWU5KLAA", __asan_exp_load4) +STUB("5KfPZTHZaEY", qr3) +STUB("5KgLTiW8QZk", WKBundleSetShouldTrackVisitedLinks) +STUB("5KgmHsaCxXg", _ZN7WebCore11MediaPlayer11sizeChangedEv) +STUB("5KhBFeIsznA", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEEC2ERS7_) +STUB("5KhQZQnPN50", _ZN15AbstractStorage14TwitterStorageD2Ev) +STUB( + "5KlQ00rmEYM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("5KpY2XoOktg", __asan_stack_malloc_9) +STUB( + "5Kq0Av-eH7o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEE11get_deleterEv) +STUB("5KtRxRkDiN4", _ZN3NTF15ThreadConditionC1Ev) +STUB("5L1e-VHcPLQ", _ZN3JSC22EdenGCActivityCallback11gcTimeSliceEm) +STUB( + "5L5Aft+9nZU", + _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8get_yearES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm) +STUB( + "5LESOTtkFj4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEixEm) +STUB("5LLWbpP5xi8", sceAjmBatchJobDecodeSingle) +STUB("5LPNdAqnbDw", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError11unsetReasonEv) +STUB("5LQSozsHJFo", _ZN7WebCore6DOMURL12searchParamsEv) +STUB("5LYU+G+wm98", + _ZN6WebKit17ChildProcessProxy15dispatchMessageERN3IPC10ConnectionERNS1_14MessageDecoderE) +STUB("5LZA+KPISVA", sceHttpUriBuild) +STUB("5Le5nPQZwUU", unumf_formatInt_67) +STUB("5Lf51jvohTQ", _Mtx_destroy) +STUB("5Lh+sfg0+3c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEaSERS7_) +STUB("5LhFvqzrcug", sceMusicPlayerServiceSeek) +STUB("5LiMEPuW0DQ", sceNpEntitlementAccessGetEntitlementKey) +STUB( + "5Lj2obGw934", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "5Lkp6DCzRhM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE5emptyEv) +STUB( + "5LmxVzONTDM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEptEv) +STUB("5LoVY9nQRTY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEED1Ev) +STUB("5LwBmaI2tmw", _ZNK7WebCore3URL5queryEv) +STUB("5Lx1PHXzL6Y", sceVisionManagerGetResultOfCalibrateStereoCamera) +STUB( + "5M+cGng1jFw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEC1EPS8_) +STUB( + "5M-LVtMKruY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEmmEi) +STUB("5M36pKJh7LE", _ZN3JSC7Symbols23regExpCreatePrivateNameE) +STUB("5M3SCZEvi+8", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities5ErrorC2EPNS1_6Common10LibContextE) +STUB("5MIGaxHOMjs", _ZN8meta_gen11MsvPromoter8binToStrEPhjPSs) +STUB("5MK8Nye3fNM", AnnotatePublishMemoryRange) +STUB( + "5MKn2Bw+xn4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE5beginEv) +STUB("5MLppFJZyX4", sceSystemServiceChangeNumberOfGpuCu) +STUB("5MOUT7xkwgU", _ZN7WebCore17CredentialStorage3setERKN3WTF6StringERKNS_10CredentialERKNS1_3URLE) +STUB("5MPOusK4JQY", _ZN7WebCore8SVGNames19color_renderingAttrE) +STUB( + "5MPYrHVctq4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEaSERKS7_) +STUB( + "5MUzh8ZCQLs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEEC2EPS6_PNS2_10LibContextE) +STUB("5MZEPxUs0oE", _ZN7WebCore6Editor17cancelCompositionEv) +STUB( + "5MbNiacAJAk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlot19unsetnpServiceLabelEv) +STUB("5McKPX7hfmc", _ZN8meta_gen17CommonFsOperationC2EPKc) +STUB( + "5Mem7DF-KnA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE7popBackEv) +STUB( + "5MfY7NalVJ8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE5emptyEv) +STUB("5Mg5Cv4Gw9Q", YGNodeIsDirty) +STUB( + "5MgaMP5hzXc", + _ZN3JSC12RegExpObject17defineOwnPropertyEPNS_8JSObjectEPNS_9ExecStateENS_12PropertyNameERKNS_18PropertyDescriptorEb) +STUB( + "5MgbQjiMyts", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEC1Ev) +STUB("5Mj0TkVrj8k", jinit_inverse_dct) +STUB("5MjvDb+LU3Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEC2Ev) +STUB("5Mn7TYwpl30", sceNpWebApiDeleteHandle) +STUB( + "5Mpm5puQXgo", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10setString9EPKc) +STUB("5Mq24gdcgwM", __sqrtl) +STUB( + "5MtHckCMbM4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("5MtXWF1jX80", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V19RatingApi21ParameterToPostRatingD2Ev) +STUB( + "5MwsLkQi19g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEaSERKS9_) +STUB("5MwxIk3-gLo", sceDepthQueryMemory) +STUB( + "5N0SC+yA6O4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("5N0mvyPNqqo", _ZN7WebCore17LibWebRTCProvider9setActiveEb) +STUB("5N6MwahrroM", _ZNK3sce2Np9CppWebApi7Matches2V121ResponseTeamStatistic9getTeamIdEv) +STUB("5N6glICVsiQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEC2Ev) +STUB("5NBTfOR8YYo", _ZN7WebCore27makeBoundaryPointBeforeNodeERNS_4NodeE) +STUB("5NE8Sjc7VC8", sceAudioInOpen) +STUB("5NHOvrtbgLQ", Java_java_lang_StrictMath_atan2) +STUB("5NIZxrsg72A", _ZTVN7WebCore26ActiveDOMCallbackMicrotaskE) +STUB( + "5NJwkW4LXzs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEEC1Ev) +STUB( + "5NScTgIMBpg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEE7get_refEv) +STUB("5NWok6SqDAk", mono_aot_Sce_Vsh_LncUtilWrapperjit_code_end) +STUB("5NYsP564wwY", FT_Get_Module_Interface) +STUB( + "5NbKBuUd8Ww", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "5Ncf5aPnPLA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEEC1ERSA_) +STUB("5NeBFc2PFng", __sanitizer_set_report_path) +STUB( + "5Ngrigad+xA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEE3getEv) +STUB( + "5NlD1nbdLgo", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE11getResponseERS4_) +STUB("5Nmhj2pxEfM", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10getString3Ev) +STUB( + "5Nw7bNLH1nI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE6resizeEj) +STUB("5Nwi8pVhpIY", ubrk_swap) +STUB( + "5NwwRib5Sxo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEixEm) +STUB( + "5NzVpz0TGw4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEE3getEv) +STUB("5O+AifrdWVs", _Z27sendIpmiInvokeSyncMethodCmdiiiiPKN4IPMI8DataInfoEPKNS_10BufferInfoEib) +STUB("5O+fi8P4g+M", _ZN7WebCore15AsyncFileStreamdaEPv) +STUB("5O+uFe6GMlA", _ZThn40_N7WebCore8DOMTimerD0Ev) +STUB( + "5O29d4PkoRI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEC2EPS8_) +STUB("5O88dXB4RDY", _ZN7WebCore9HTMLNames9figureTagE) +STUB("5O8bmW45o0U", ucnv_reset) +STUB("5O92iRi6Hk4", eglGetConfigAttrib) +STUB( + "5O9jSa0oBSs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEEC2ERSA_) +STUB("5OA2RK-yG9I", + _ZN9Inspector18InjectedScriptHost7wrapperEPN3JSC9ExecStateEPNS1_14JSGlobalObjectE) +STUB( + "5OBssNXtjCQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("5OCoDxN-Cqc", _ZNK3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate11getTeamNameEv) +STUB("5OEl1mRhUm0", tcgetpgrp) +STUB("5OJsq1at5TA", _ZN7WebCore32ScrollingStateFrameScrollingNode15setHeaderHeightEi) +STUB("5OL+CNY-9qc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE5clearEv) +STUB("5OOmHD4rcfM", _ItL_pS1) +STUB("5OOpQ9aHmb8", scePlayReadyCdmiRemove) +STUB("5OQdcIyHdAs", JVM_CurrentClassLoader) +STUB( + "5ORBtwajlzI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEmmEv) +STUB( + "5OXhLz8erX4", + _ZN3JSC12StringObject14deletePropertyEPNS_6JSCellEPNS_14JSGlobalObjectENS_12PropertyNameERNS_18DeletePropertySlotE) +STUB("5OXqH8ACXSE", _ZN3sce2np14HttpConnectionD2Ev) +STUB("5OY7kJhAQYE", _ZN4Manx9X509chain10appendListEPNS_8X509cinfE) +STUB("5OYUBVvR8ZM", _ZN12video_parser5vpcom8datetime8DateTime12ParseRFC3339EPKc) +STUB("5OZ1YwHyHd8", cairo_get_dash) +STUB("5OcP9EZ2O0U", _ZN7WebCore24CoordinatedGraphicsLayer16removeFromParentEv) +STUB( + "5OcnACDcGu8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEaSERKS9_) +STUB("5Of6HQkKiNc", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112UpdateStatusEEC2EPS6_) +STUB("5Oie5RArfWs", sceCameraGetCalibDataFromDevice) +STUB("5Op1g02Jscs", _ZN3sce7Toolkit2NP2V26Friend15FriendsOfFriendC2Ev) +STUB("5OpjqFs8yv8", drem) +STUB("5OqszGpy7Mg", strtoull) +STUB( + "5P84j6cG6Bk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEC2EPS6_PNS2_10LibContextE) +STUB("5PAd3ryxUEk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEEC2EPS4_PNS2_10LibContextE) +STUB("5PBo5zAQDRs", _ZN3sce7Toolkit2NP15AppSTLAllocatorIcE7addressERKc) +STUB( + "5PPdnEsLYpU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEED2Ev) +STUB( + "5PS6d9CvpGk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEC2EPNS2_10LibContextE) +STUB( + "5PS8PxbzSEQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEEC2Ev) +STUB( + "5PaUyrCtQgM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEC1EPNS2_10LibContextE) +STUB("5PdhLEbEgT0", _ZThn16_N9Inspector22InspectorDebuggerAgent8stepNextERN3WTF6StringE) +STUB( + "5Pdl9KdMIOc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE8copyFromERKS9_) +STUB("5PfqUBaQf4g", _ZSt4cout) +STUB( + "5PkRbt+8dA8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEaSERS7_) +STUB( + "5PmwpA5-UTk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEC1EPS8_) +STUB( + "5Pqezv45q9A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEcvbEv) +STUB("5Prc2ipNX7Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEaSERKS9_) +STUB( + "5PvK6MvM3P0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "5Q+aJKscsJU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEC1EPNS2_10LibContextE) +STUB("5Q1cmSZMYAM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEE5resetEPS6_) +STUB( + "5Q6JTf0hQvI", + _ZN7WebCore12JSTimeRanges6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_10TimeRangesENS6_13DumbPtrTraitsIS8_EEEE) +STUB("5Q6YOeOcXKU", rgctx_fetch_trampoline_mrgctx_112_p) +STUB( + "5Q7AAXmh59c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEEC2ERSA_) +STUB("5Q9eXxWwvAg", _ZNK7WebCore4Page17viewportArgumentsEv) +STUB("5Q9yzfWhfyY", rgctx_fetch_trampoline_mrgctx_51) +STUB("5QF2sLtBPOU", _ZN7Nicosia29ContentLayerTextureMapperImpl11flushUpdateEv) +STUB("5QG71IjgOpQ", sceFontDestroyGraphicsDevice) +STUB( + "5QGvmEFQHOk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "5QJRueHuTBo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEED2Ev) +STUB( + "5QJSVQ8-aVE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("5QN7MedM4tk", mono_mempool_get_allocated) +STUB( + "5QNGYNiMLVQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEppEi) +STUB( + "5QXun275Rvc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("5QbpxE-FmnQ", mono_metadata_typedef_from_field) +STUB("5Qegnqg5ZiI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEEplEm) +STUB( + "5QfrOgBUex8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEC1Ev) +STUB( + "5Ql2Q1AaJHg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "5Qr+zGzplKI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEC2EPKS8_) +STUB("5Qrm9WvdQQ4", sceKernelWriteWriteAddressCommand) +STUB("5QrtfBfbjP4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEC2ERS7_) +STUB( + "5R0Ss2OHp1s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEC1EPKS8_) +STUB("5R6kI-8f+Hk", sceNpTusGetDataVUserAsync) +STUB("5R8X3Eg05OY", _ZL21emergency_malloc_wait) +STUB("5RATgocuL0o", _ZN7WebCore9HTMLNames10acceptAttrE) +STUB("5RBpaKVkWRQ", EVP_PKEY_get1_RSA) +STUB( + "5RGb65N4xN4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("5RICSJuTYNs", _ZN7WebCore13MediaQuerySet6createERKN3WTF6StringENS_23MediaQueryParserContextE) +STUB("5RMEEGAn4xo", _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicket11getticketIdEv) +STUB("5RP2EceyRm4", + _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession21getSupportedPlatformsEv) +STUB("5RQCvNleU3I", sceFsInitCreatePfsTrophyDataOpt) +STUB( + "5RRhb1FQOj0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEE7add_refEv) +STUB("5RSKjWE2avA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEptEv) +STUB("5RT4Z2QA-AA", _ZN6WebKit17ChildProcessProxyD1Ev) +STUB( + "5RTX8F471hs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEC2Ev) +STUB("5RUic0ZrxJc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEEC1ERKS6_) +STUB( + "5RWqsqj3vxU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEC2ERKS7_) +STUB("5RZ47lJyEKc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEptEv) +STUB("5RZwfs50G4k", _ZN3sce7Toolkit2NP2V27Session7Request4Join15MAX_INDEX_VALUEE) +STUB( + "5Rb1JJGQfzc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEEC2Ev) +STUB("5Rj+-omlG3s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEdeEv) +STUB("5Rj2MyJZATM", _ZN7WebCore13GraphicsLayerD0Ev) +STUB( + "5RkxeIi6XSg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEdeEv) +STUB("5RuBPNjHYro", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE3endEv) +STUB( + "5Rus7likdx0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEppEv) +STUB( + "5RxAfBqeNUU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEaSERS7_) +STUB("5S1dAxkmQFM", sceClHttpWaitRequest) +STUB("5S2eUJGDgCo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEcvbEv) +STUB("5S41GRIUTOQ", _ZNK7WebCore27TranslateTransformOperation19isRepresentableIn2DEv) +STUB("5S4sz8SdGgk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEE11release_refEv) +STUB("5S95VVjvojI", jpeg_natural_order5) +STUB("5SA72S-f0UU", _ZN3WTF8JSONImpl10ObjectBaseC1Ev) +STUB( + "5SCejrgtD2s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("5SHGNwLXBV4", sceGnmValidateGetDiagnostics) +STUB("5SIh7ParUgY", mono_aot_Sce_Vsh_KernelSysWrapperplt) +STUB("5SIn8558ccY", _ZNK3sce2Np9CppWebApi7Matches2V120RequestPlayerResults10scoreIsSetEv) +STUB("5SKK+o8Of-U", jpeg_idct_3x6) +STUB( + "5SNN35iSwhw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEneERKS9_) +STUB("5SUVWNDLxCQ", u_isIDIgnorable_67) +STUB("5SVxCVcDW7g", sceDataTransferAbortRequest) +STUB("5SbqBNhRRBM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEE3getEv) +STUB( + "5SdJJgbOHZc", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser11setsortModeENS5_8SortModeE) +STUB("5SfMtsW8h7A", sceShellCoreUtilAccessibilityZoomLock) +STUB( + "5SfulqUKwfA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("5Sls4rnZYpk", _ZN7WebCore18JSHTMLInputElement6s_infoE) +STUB("5SmjWNahyeo", sceDebugGetDataListOfUltQueue) +STUB("5SpzTlcpsLs", unorm2_quickCheck) +STUB("5SrekqH5TJQ", _ZN3WTF10StringImpl28convertToLowercaseWithLocaleERKNS_10AtomStringE) +STUB( + "5T+oKl9dsgM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEE5resetEPS6_) +STUB( + "5T2f0wfvGog", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEppEi) +STUB("5T4SHQqzoGo", gethostbyname) +STUB( + "5T5H6ER1lvs", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeader9terminateEv) +STUB("5T6TphmcgVQ", glGetBufferParameteri64v) +STUB( + "5T8S3sCIl68", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEC1ERS7_) +STUB( + "5TEKYu3PyD0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEplEm) +STUB( + "5TF7i5V27bc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEcvbEv) +STUB("5TI-Br6fGkk", _ZN7WebCore9HTMLNames9keygenTagE) +STUB("5TMhYwnExmg", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIdED1Ev) +STUB( + "5TOuXtzSk4o", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEixEm) +STUB( + "5TS-AWxpgrs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE8copyFromERKS9_) +STUB("5TTi0mfbpgw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEEdeEv) +STUB( + "5TWRRZrseG8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEEcvbEv) +STUB("5TYmu2tN5o4", sceNpIpcClientInitInternal) +STUB( + "5TZTneevvOY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEEptEv) +STUB("5TazKXr9t+Q", _ZNK7WebCore14ScrollableArea26reachableTotalContentsSizeEv) +STUB("5TcrMOuwXMk", sceClHttpAddRequestHeader) +STUB( + "5Te4DrU-ulI", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "5Tg4rlmMglE", + _ZN3sce2Np9CppWebApi14SessionManager2V140ResponsePlayerSessionNonPsnPlayerFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_33ResponsePlayerSessionNonPsnPlayerEEE) +STUB("5TgME6AYty4", sceKernelAioDeleteRequest) +STUB( + "5Tgg-rL58Cs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEEC1Ev) +STUB("5TjaJwkLWxE", bcmp) +STUB("5TlM-h+ipBU", _ZN7WebCore28InspectorFrontendClientLocal8SettingsdaEPv) +STUB("5TmW31l5VQw", mono_aot_Sce_Vsh_Np_AuCheckjit_code_start) +STUB("5Tnk7OiQXl0", + _ZThn16_N9Inspector22InspectorDebuggerAgent24continueUntilNextRunLoopERN3WTF6StringE) +STUB( + "5TsJZvhlNxk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEC1EPKS8_) +STUB("5TvttyRuU84", sceGameCustomDataDialogOpen) +STUB( + "5TwSfklv4m8", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionPropertiesC1Ev) +STUB("5U+eeWgS9ks", _ZN3sce2Np9CppWebApi13InGameCatalog2V514ContainerMediaD2Ev) +STUB("5U-VsLRlRsY", _ZThn16_N9Inspector20InspectorTargetAgentD1Ev) +STUB("5U2j47T1l70", CA_MGMT_keyBlobToPEM) +STUB("5U3V4M2WO8Q", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V15Error11reasonIsSetEv) +STUB( + "5U4pxhI1BBo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEC2EPS6_PNS2_10LibContextE) +STUB("5U5PRbq4Qcc", _ZTVN15AbstractStorage14YoutubeStorageE) +STUB("5U6NRSMS9QU", scePsmUtilFinalize) +STUB("5U6mBSzKmSg", + _ZN3sce2Np9CppWebApi7Matches2V126RequestTeamMemberStatistic8fromJsonERKNS_4Json5ValueE) +STUB( + "5U86-WxpNk8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB("5UATk3g9+Mg", mono_aot_Sce_PlayStation_HighLevel_UI2Platformjit_code_start) +STUB( + "5UCI4WMtS3E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEC2ERKS7_) +STUB("5UFz30Wboyg", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesD1Ev) +STUB("5UJbOthu3+s", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V18SortModeEEC1EPS6_) +STUB("5USjtgtV6Cg", sceCesUcsProfileInitSJis1997X0208) +STUB( + "5UTd-cef+Ug", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEC2Ev) +STUB( + "5UV12de1fGo", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("5UagplYjXBo", u_memchr) +STUB("5Ubhv638hHA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEdeEv) +STUB( + "5UcRrgFkXzg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEC2Ev) +STUB( + "5UguFKgs8ec", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE3endEv) +STUB("5UhnGPXbi88", _ZNK3WTF3URL10protocolIsENS_10StringViewE) +STUB( + "5UiP-8SG-Vs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE7reserveEi) +STUB( + "5UpGpRjjKqY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEdeEv) +STUB("5Ur+CDAtZBI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEaSERS7_) +STUB( + "5UurMAoOqPo", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126MatchCompletionRateFactory7destroyEPNS3_19MatchCompletionRateE) +STUB( + "5UwnuWGA7yM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "5UyugULAmY8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "5V2NZPx+OU0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEaSERKS7_) +STUB("5V2WIPOZcaA", u_getIntPropertyMaxValue) +STUB("5V2feJ523kM", Java_org_blurayx_s3d_ui_DirectDrawS3D_drawStereoscopicImages0) +STUB("5V5gwXq2Zhc", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead19unsetRepresentativeEv) +STUB("5V8YGx9g0UA", sceVideoOutGetBufferInformation) +STUB("5VBAeTtoF0s", sceNpTrophy2SystemDebugUnlockTrophy) +STUB( + "5VBJfbJcS7M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEEptEv) +STUB( + "5VBtqowFKFs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("5VDOSnuKQcI", _ZN7WebCore12JSTimeRangesC1ERKS0_) +STUB( + "5VJl3bLDEpw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC1ERKSA_) +STUB("5VLf3cA+jHU", _ZN12video_parser8cPDLUtil11getPDLStateEPKcyyPNS_8PDLStateE) +STUB( + "5VN0zsPmi+c", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "5VOggoQXMyQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE4sizeEv) +STUB("5VYHGP-8f1k", __asan_report_load8) +STUB("5ViZYJRew6g", _ZTSSt8messagesIwE) +STUB("5Vk2ExKTPK8", _ZN3JSC11JSGenerator6s_infoE) +STUB("5VlQSzXW-SQ", sceHttp2CookieFlush) +STUB( + "5VoSa11hn6E", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEdeEv) +STUB("5VpbYYKsV38", EVP_MD_size) +STUB( + "5VtxCpZnA5o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEC1EPNS2_10LibContextE) +STUB("5VuCHqv7kmw", sceSdmaFenceNonBlocking) +STUB( + "5Vzga1ZAJZ8", + _ZThn16_N9Inspector21InspectorRuntimeAgent13getPropertiesERN3WTF6StringERKS2_PKbS7_RNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime18PropertyDescriptorEEENS1_13DumbPtrTraitsISE_EEEERNS8_INSA_INSC_26InternalPropertyDescriptorEEENSF_ISK_EEEE) +STUB( + "5W-tQqvnH+8", + _ZN3sce2Np9CppWebApi7Matches2V131RequestCompetitiveResultFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_24RequestCompetitiveResultEEE) +STUB( + "5W-vGQL2w-o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEC2EPS6_PNS2_10LibContextE) +STUB( + "5W1twgGpvwE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEEC2ERKSA_) +STUB("5W6LurzMZaY", sceSystemServiceShowClosedCaptionSettings) +STUB("5WCZtBBLH3U", mono_get_array_class) +STUB( + "5WLQCpCmhPg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEC2EPS8_) +STUB( + "5WQkDCDj0W8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE5beginEv) +STUB("5WTA3RiOfXU", _ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEE6resizeEj) +STUB("5WWqUlHf3lo", _ZTVN9Inspector33LayerTreeBackendDispatcherHandlerE) +STUB("5WZsWfoc3GQ", _ZN7WebCore15HitTestLocationD2Ev) +STUB( + "5WcTqlLl9W4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE5beginEv) +STUB("5Wf4q349s+Q", scePadReadStateExt) +STUB( + "5Wjc0avwwCo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEppEv) +STUB("5WkKzsvdNZw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEC1ERKS7_) +STUB("5WlB6jYsK3I", _ZN3sce2Np9CppWebApi7Matches2V117ResponseMatchTeamD2Ev) +STUB( + "5WlBrDw1wpI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("5WmxjUldLqg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEEC1EPS5_PNS2_10LibContextE) +STUB( + "5WqHUB6fHa4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEppEv) +STUB("5WuiSZkU3mg", _ZN3sce2np8Selector4InitEPKc) +STUB( + "5WxlwRrdPxY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEptEv) +STUB("5Wy+JxpCBxg", _ZN3sce2np9EventFlag4OpenEPKc) +STUB("5X+QFaVtiKg", sceNetCtlApDialogTerminate) +STUB("5X4b5KyyNp4", wpe_pasteboard_get_string) +STUB("5XAAwjS5FEE", _Z27sceRazorGpuThreadTraceResetv) +STUB("5XDBYQU1Fc0", _ZN7WebCore8Settings18setDefaultFontSizeEi) +STUB( + "5XEMwsWneRQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE21intrusive_ptr_sub_refEPS9_) +STUB("5XGzjwts+3I", _ZN3sce7Toolkit2NP2V28Matching5Rooms5resetEv) +STUB("5XHaH3kL+bA", sceGameLiveStreamingUnregisterCallback) +STUB("5XLSih32qHA", sceContentDeleteTerminate) +STUB( + "5XNd7RCy1r8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("5XOw3HVuKMo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEED2Ev) +STUB( + "5XS0mKp8q9I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEED2Ev) +STUB( + "5XYIVFucl2Q", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("5Xa2ACNECdo", strcpy_s) +STUB("5Xbk73Dvu8E", WKPreferencesGetWebAnimationsEnabled) +STUB("5XfwSMKO0lA", ASN1_STRING_type) +STUB("5XiHgeKL3pw", _ZN7WebCore12ChromeClient15elementDidFocusERNS_7ElementE) +STUB("5XimD92RZqs", _ZN3JSC7Symbols32promiseStateFulfilledPrivateNameE) +STUB("5XkPh73uOas", WKBundleFrameClearOpener) +STUB("5Xn4Ygw7nlE", _ZNK7WebCore26HTMLTextFormControlElement14selectionStartEv) +STUB("5Xo2XrjnnSA", _ZN3WTF24normalizeLineEndingsToLFEONS_6VectorIhLm0ENS_15CrashOnOverflowELm16EEE) +STUB( + "5XtBK4PsVlA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEE3getEv) +STUB("5XtJrr78K4c", + _ZN3sce7Toolkit2NP4Auth9Interface15getCachedTicketEPNS1_9Utilities6FutureINS1_6TicketEEEb) +STUB("5XvkLPNJIhU", mono_aot_Sce_Vsh_UsbStorageScenejit_code_end) +STUB( + "5Xw1GGBLbFo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEeqERKS9_) +STUB("5XzzJSlUM8w", WKPreferencesGetDefaultFixedFontSize) +STUB("5Y2VZnmetAs", _ZN7WebCore5ColorC1ERKN3WTF6StringE) +STUB( + "5Y47+l2siB4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEppEv) +STUB("5Y6nZqIZvBg", sceVdecswFinalizeDecodeSequence) +STUB("5Y8uUbGMio0", sceVideoOutSysModeIsSystemDefault) +STUB("5YG+jQGIAhU", il2cpp_assembly_get_image) +STUB("5YGfwZHHFbw", + _ZN7WebCore24RotateTransformOperation6createEddddNS_18TransformOperation13OperationTypeE) +STUB("5YJqdG-SN8I", _ZN3sce7Toolkit2NP2V27Session7Request4JoinD2Ev) +STUB( + "5YNF6LxbJM0", + _ZN7WebCore10MouseEvent6createERKN3WTF12AtomicStringEONS1_6RefPtrINS_11WindowProxyENS1_13DumbPtrTraitsIS6_EEEERKNS_18PlatformMouseEventEiPNS_4NodeE) +STUB("5YNnX5Pfquo", sceShellCoreUtilDownloadTitleWorkaroundFileFromServer) +STUB("5YOm7mBmTUY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEaSERKS7_) +STUB("5YPCjqIgMbg", sceClKernelMunmap) +STUB( + "5YPrmWXM0Zs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB( + "5YRcxdYqA1g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "5YSC3zFm1lk", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemProperties12setsessionIdEPKc) +STUB( + "5YYZeM-Sp8w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEC1EPS8_) +STUB("5YaxsWwJhHc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE5clearEv) +STUB( + "5Ybc7I6qN5U", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE10setContextEPNS2_10LibContextE) +STUB("5YfFv3RsCYw", mono_aot_Sce_Vsh_Np_Asmunbox_trampolines) +STUB("5Yl1uuh5i-A", sceNetConfigDelMRoute) +STUB("5YnHXcwYZVs", _ZN7WebCore12EditingStyle21styleAtSelectionStartERKNS_16VisibleSelectionEb) +STUB("5Yq77syosgI", SwCtrlSinkStreamSetReadPointer) +STUB("5YqK1eWNQnM", _ZN7WebCore6JSFileD1Ev) +STUB("5YuPh3NUQ9Q", _ZN9Inspector18InjectedScriptBaseD1Ev) +STUB( + "5YvUd56e7yE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEC1Ev) +STUB("5Yyd2vDsUWg", _ZN7WebCore15HitTestLocationC1ERKNS_10FloatPointE) +STUB("5Z+2fhutd+c", sceClSendSystemNotification) +STUB( + "5Z-BOT4ORvw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEEC1Ev) +STUB( + "5Z-WHn7X8no", + _ZN9Inspector28DOMStorageFrontendDispatcher21domStorageItemUpdatedEN3WTF6RefPtrINS_8Protocol10DOMStorage9StorageIdENS1_13DumbPtrTraitsIS5_EEEERKNS1_6StringESB_SB_) +STUB("5Z0YF3QKlhk", sceCompositorSetSeparateContextCommand) +STUB("5Z0ZZdSuDyA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE5clearEv) +STUB("5Z1c0doVn20", _ZN9Inspector18InspectorHeapAgentnaEmPv) +STUB("5Z25U0LIPDY", mono_aot_System_Reactive_Interfacesplt) +STUB("5Z2m+CedfVk", mono_aot_Sce_Vsh_PatchCheckerClientWrapperunbox_trampolines) +STUB( + "5Z6A5hPER+A", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE5emptyEv) +STUB("5Z6jl5TA2pA", __tsan_write4_pc) +STUB("5Z7z4XjqxcA", _ZN7WebCore29SQLiteStatementAutoResetScopeaSEOS0_) +STUB( + "5ZA0rZ7usT8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("5ZB8LnSchsU", WKPageCopyStandardUserAgentWithApplicationName) +STUB("5ZJPtZf6EaY", sceUserServiceGetParentalGameWhiteList) +STUB("5ZKavcBG7eM", __atomic_fetch_or_8) +STUB( + "5ZQ+3EMTpuk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEED2Ev) +STUB( + "5ZRRcsXCy5g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEE7add_refEv) +STUB( + "5ZXM9JtDr8s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "5ZY1TPj6xPQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "5ZZAC6JRQPo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEaSERKS9_) +STUB( + "5ZZWCZQJF+M", + _ZN7WebCore13FetchResponse6createERNS_22ScriptExecutionContextEON3WTF8OptionalINS_9FetchBodyEEENS_12FetchHeaders5GuardEONS_16ResourceResponseE) +STUB( + "5ZZxHh0b5qU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEC1EPS8_) +STUB("5ZaEDHHWcpA", mono_aot_System_Netjit_code_end) +STUB("5ZgxJXyX+DY", _ZN3sce7Toolkit2NP2V28Matching12Notification11RefreshRoom19OWNER_EXCHANGE_SIZEE) +STUB("5ZkEP3Rq7As", cbrt) +STUB("5ZkGt3xBZ8Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEED2Ev) +STUB("5Zkj4-G-RbE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEC1Ev) +STUB("5Zlr3joORIE", sceMatInitialize) +STUB( + "5ZmHq5-n58M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE3endEv) +STUB("5ZoFb+9L7LY", sceNpManagerIntClearOnlineIdChangeFlag) +STUB("5ZzBLU1wIwo", _ZN7WebCore18JSHTMLVideoElement6s_infoE) +STUB("5a4nrywbfZc", glBindTransformFeedback) +STUB("5a8b+s6HtaA", mono_get_root_domain) +STUB("5a9GgEplHSU", _ZN3sce2Np9CppWebApi7Matches2V114ResponseMember11setJoinFlagERKb) +STUB( + "5aFInNdgPAE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE5eraseENS2_8IteratorIS6_EERS9_) +STUB( + "5aG1ghS5yJ4", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEEiRNS2_10LibContextEPT_m) +STUB( + "5aIa6+nUXLA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEeqERKS9_) +STUB("5aLqvrbXzvw", _ZN23sceMetadataReaderWriter14StorageManager10initializeEv) +STUB("5aS5ecSjlVc", _ZN3JSC4Heap39decrementDeferralDepthAndGCIfNeededSlowEv) +STUB("5aTXG4zGUKY", _ZN7WebCore8SVGNames8maskAttrE) +STUB("5aXKyDH-FQs", _ZN7WebCore22EmptyFrameLoaderClient29dispatchDidPopStateWithinPageEv) +STUB( + "5abwd1oxAjk", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10setString9EPKc) +STUB("5acW3MSCndw", WKPageSetMayStartMediaWhenInWindow) +STUB("5afBJmEfUQI", _ZNSt10moneypunctIcLb0EEC1EPKcm) +STUB( + "5amWv5Ma9fc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEE11release_refEv) +STUB("5anPnb+MWoU", u_strcmpFold_67) +STUB( + "5anTMZA4YRU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE21intrusive_ptr_sub_refEPS9_) +STUB("5ar727BtdoQ", _ZNK3WTF6String19characterStartingAtEj) +STUB("5avJQwMJgsY", + _ZNK3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody13getEntryLimitEv) +STUB("5axqbCvE1bE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEE5resetEPS6_) +STUB("5ayw0ZaCKK0", + _ZN7WebCore29deleteAllCookiesModifiedSinceERKNS_21NetworkStorageSessionEN3WTF8WallTimeE) +STUB("5b-D80m2TKc", curl_share_cleanup) +STUB("5b004VLFMTc", delegate_virtual_invoke_imt_m_18) +STUB("5b3ZqlxJ+WE", sceKernelWriteMapCommand2) +STUB("5b6k75mTRb8", _ZN3sce7Toolkit2NP2V28Matching6MemberD2Ev) +STUB( + "5b9hIoEHmnU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEC1EPS9_) +STUB( + "5bB6DS0+qmc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEmmEi) +STUB("5bBPLZV49kY", sceNpUtilXmlEscape) +STUB("5bBacGLyLOs", gmtime_s) +STUB("5bDbYUYXAmU", WKOpenPanelResultListenerGetTypeID) +STUB("5bFKFMYbouA", _ZN3sce2Np9CppWebApi6Common6VectorIiEixEm) +STUB("5bFNnMc9ebU", _ZN7WebCore15JSSVGSVGElement4infoEv) +STUB("5bQqdR3hTZw", _ZNSt10moneypunctIwLb0EEC2EPKcm) +STUB("5bZk93kkE5w", _ZN7WebCore11isEndOfLineERKNS_15VisiblePositionE) +STUB( + "5bfFcgF4YDc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEE3getEv) +STUB( + "5bhWQcGQbAw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEC1ERKS7_) +STUB( + "5bhvZNLvuiI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEC1ERKS7_) +STUB( + "5biEd-yQgvc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEC1EPS6_PNS2_10LibContextE) +STUB( + "5bnqjZD3cDU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEptEv) +STUB( + "5bp3xm+qySo", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("5btbLjqP-jU", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession19getJoinableUserTypeEv) +STUB("5bvvbUSiFs4", sceAppContentGetAddcontDownloadProgress) +STUB( + "5c-AgckJymM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEaSERS7_) +STUB( + "5c170-XHn4E", + _ZN9Inspector23CanvasBackendDispatcher20resolveCanvasContextElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("5c5XIIUOnw8", sceCesUtf32ToGb) +STUB( + "5c7oTkFXOls", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEEC2ERKSC_) +STUB( + "5cD8AAcQNH8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "5cDd+VYj3iQ", + _ZN3JSC14JSGlobalObject17defineOwnPropertyEPNS_8JSObjectEPNS_9ExecStateENS_12PropertyNameERKNS_18PropertyDescriptorEb) +STUB("5cJ3RuOZuBs", _ZN7WebCore6Chrome16setStatusbarTextERNS_5FrameERKN3WTF6StringE) +STUB("5cK+UC54Oz4", sceUserServiceSetFriendFlag) +STUB("5cM51KUPRlM", mono_aot_Sce_Vsh_CloudClientjit_code_end) +STUB( + "5cNlivIgxsk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEEC2ERKSA_) +STUB("5cPHNuhyuvg", _ZN3sce7Toolkit2NP2V28Matching6Worlds8deepCopyERKS4_) +STUB("5cQZYmhq8JE", _ZN7WebCore11MediaPlayer28setShouldMaintainAspectRatioEb) +STUB( + "5cRx2fciaEs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE23clearOnFinishedCallbackEv) +STUB( + "5cZ47Z8G4nY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEmmEi) +STUB("5cgHNZaLnH0", sceUserServiceCreateGuestUser) +STUB("5ckAy-191ws", _ZN3JSC21linkAndEvaluateModuleEPNS_9ExecStateERKNS_10IdentifierENS_7JSValueE) +STUB("5cmnYvTeG20", sceClAudiodecDeleteDecoder) +STUB("5co03gsGUOE", rgctx_fetch_trampoline_rgctx_114_p) +STUB("5co7rs22tn8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEEptEv) +STUB("5cuWIWh72Wc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEC1ERS7_) +STUB("5cyEcilO-J0", sceFiosOpDelete) +STUB("5d-UMeAB5q4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEC2Ev) +STUB("5d0YOfd9Sio", ScePsmMonoClassFromName) +STUB("5d1ETCfqFnA", sceTsGetNextUnitData) +STUB("5d1Fu4WzokU", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_23NpIdListRankInformationEED2Ev) +STUB( + "5d2-IEcEMyI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEC2Ev) +STUB("5d77I8lC8Ek", _ZN7WebCore4Attr5styleEv) +STUB("5d7RiNIPhv8", _ZN3sce7Toolkit2NP2V210Tournament10TournamentC1ERKS4_) +STUB("5d8SoFh1OlQ", _ZN3JSC8JSObject12isExtensibleEPS0_PNS_9ExecStateE) +STUB("5d986ipaDyw", _ZN3JSC12VMEntryScopeC1ERNS_2VMEPNS_14JSGlobalObjectE) +STUB("5dCBe3YJ9cg", _ZN3NTF21URLRequestFormElementD0Ev) +STUB( + "5dGM-nhvJw0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEEC2ERKSA_) +STUB("5dJ+h7s5eoI", _ZN9Inspector26InspectorBackendDispatcherD1Ev) +STUB( + "5dK1I0A02E0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEC1EPKS8_) +STUB( + "5dLhJ9+CHlI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE21intrusive_ptr_add_refEPS9_) +STUB("5dM-i0Ox2d8", sceUserServiceGetPbtcFridayHoursEnd) +STUB("5dOMK+Nlqxk", rgctx_fetch_trampoline_rgctx_118) +STUB( + "5dSbCRA+UeU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB( + "5dVoGd1qvC4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEeqERKS9_) +STUB("5dXJI4++gY4", JVM_RegisterSignal) +STUB("5dYXT+RAisM", _ZN3sce2Np9CppWebApi7Matches2V119RequestInGameRosterD1Ev) +STUB("5dYcrmvcToE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEC2Ev) +STUB( + "5dagxpWT2DI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEEdeEv) +STUB("5dclua8Io5s", _ZNK7WebCore11MediaPlayer17contentTypeCodecsEv) +STUB( + "5deOf-KyU4U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEC2Ev) +STUB("5dfVNhCZFxE", glGetTransformFeedbackVarying) +STUB("5dfgL5ucwaw", udat_setLenient_67) +STUB( + "5dgKLTmwgr8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEC1Ev) +STUB("5dgOEPsEGqw", scePthreadBarrierInit) +STUB("5dj7CsbAu2w", _ZN9Inspector32DatabaseBackendDispatcherHandlerD1Ev) +STUB("5dqooVDnRhI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEEC2ERKS9_) +STUB("5e0s94yNzD4", utext_close_59) +STUB( + "5e5YmWQybQ4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEC1Ev) +STUB("5e5rj-coUv8", CA_MGMT_verifySignature) +STUB( + "5e93Dn2G7Ss", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "5eAi4YcHLB8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEC1EPS8_) +STUB("5eClSCd861E", _ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody10causeIsSetEv) +STUB( + "5eDUZhrW3S8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEED1Ev) +STUB("5eFzUD8XVjo", _ZN7WebCore9HTMLNames9buttonTagE) +STUB("5ePaXQKhi2k", sceCesUcsProfileInitEucJis2004) +STUB("5eVLTdFFsLk", u_isULowercase_67) +STUB( + "5eVZqhGOPqg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB("5eWer-QKiAg", Java_java_awt_Component_paintLock) +STUB( + "5eZhojaE7kg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEaSERKS7_) +STUB("5ehgoYyaJmA", _ZN3WTF7RunLoop9TimerBase5startENS_7SecondsEb) +STUB( + "5eiy8gXECPI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEE7add_refEv) +STUB( + "5ejDuYPiIWY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE5clearEv) +STUB( + "5ejzvPwMfic", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB("5eo3yRQ09IU", _ZN3sce7Toolkit2NP2V26Trophy7Request19GetUnlockedTrophiesC1Ev) +STUB( + "5eoDuXGjIdQ", + _ZN3WTF15AutomaticThreadC2ERKNS_14AbstractLockerENS_3BoxINS_4LockEEEONS_3RefINS_24AutomaticThreadConditionENS_13DumbPtrTraitsIS8_EEEENS_10ThreadTypeENS_7SecondsE) +STUB( + "5eqc5ZmAKAg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE5beginEv) +STUB("5equn1kFE0w", mono_aot_System_Numericsplt_end) +STUB("5etqRztjIEU", _ZN7WebCore22ResourceLoadStatistics20areDomainsAssociatedEbRKN3WTF6StringES4_) +STUB("5euVemDnv+M", _ZN7WebCore21MediaRecorderProviderC2ERKS0_) +STUB( + "5exq63lGkTk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEC2EPKS8_) +STUB("5ezDlX4hzec", + _ZN3JSC8JSObject25getOwnPropertySlotByIndexEPS0_PNS_14JSGlobalObjectEjRNS_12PropertySlotE) +STUB("5f-6lp7L5cY", sceHmdInternalDfuGetStatus) +STUB( + "5f2-75nTwOQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEC2Ev) +STUB("5f42SVZ4-Ws", _ZN12Mp4Retriever14processStsdBoxEv) +STUB( + "5f6MkjNt3Js", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB("5f9xDKxYjbY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEC1Ev) +STUB("5fANL96CbhY", Java_java_awt_GnmGraphics_initIDs) +STUB( + "5fAcvfp0138", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEEC2ERKSA_) +STUB( + "5fBse95RjuA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("5fC5WIiN+Ac", uloc_getDisplayScript) +STUB( + "5fHdJW0T4DU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("5fPSgTdqQzg", DSA_get0_key) +STUB( + "5fPWZogQ+cA", + _ZN9Inspector25DebuggerBackendDispatcher15getScriptSourceElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "5fQTBQjMGm8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("5fQaXhHC4uY", mono_aot_Sce_Vsh_ProfileCachejit_code_end) +STUB("5fRRmpd93FM", ucol_getLocaleByType_67) +STUB("5fTxEp1g1mw", mono_aot_Sce_Vsh_VoiceAndAgentunbox_trampolines_end) +STUB( + "5fW0tz3yqFE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEC1ERKS7_) +STUB("5fXJzlY1Xh8", il2cpp_monitor_pulse_all) +STUB( + "5fXZLSqjvSo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEC1EPS8_) +STUB( + "5fb6R-Co1ig", + _ZN3sce2Np9CppWebApi14SessionManager2V149PutGameSessionsSearchAttributesRequestBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_42PutGameSessionsSearchAttributesRequestBodyEEE) +STUB("5fbNa7tkGoI", sceCompositorSetEventCommand) +STUB( + "5fgAfBRYJS8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE5clearEv) +STUB("5fjRkhORnsc", WKPageSetVisibilityState) +STUB("5fq+oTNFedg", sceNpEulaDialogGetResult) +STUB( + "5fsMnIPsAVg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEC1EPS8_) +STUB( + "5fshx3PPYqc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "5ftdcN0v+d0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEE11get_deleterEv) +STUB( + "5fun+ib7kCY", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations28getxPsnAcceptPlatformNamePs5Ev) +STUB( + "5fwKFDcTuGU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("5g-XKaX0hTg", _sin_impl) +STUB( + "5g2r5zPQzAs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEE11get_deleterEv) +STUB("5g381PzIMYw", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEEC1Ev) +STUB("5g38Q4IofHA", unum_formatDouble_59) +STUB("5g6-RbnXrbE", sceCesSJisToUtf32) +STUB( + "5g6kfk9LFP0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEED2Ev) +STUB("5g9cNS3IFCk", SSL_closeConnection) +STUB("5gELNQcC+f8", _ZNK7WebCore8Position10downstreamENS_27EditingBoundaryCrossingRuleE) +STUB( + "5gGx8DYQsXU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("5gIVIzipgsw", sceShellCoreUtilGetAutoPowerDownRemainingSeconds) +STUB( + "5gJS3kJQiSQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEEcvbEv) +STUB("5gOOC0kzW0c", signgam) +STUB("5gP3fp-B64Y", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification16FriendlistUpdateEE3getEv) +STUB("5gTI2SV8lTM", gai_strerror) +STUB("5gXTm7cSZhw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEC2Ev) +STUB("5gXnxR+pdUo", sem_close) +STUB( + "5gZZCYba9Pg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEE7add_refEv) +STUB("5gbr38WlfZE", YGNodeStyleGetPosition) +STUB( + "5gc3munulFE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEEC1ERSA_) +STUB( + "5ge9U-b6tMw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEEcvbEv) +STUB("5gsmp2Ox0Vs", NpStateManagerStop) +STUB("5gtUZbkgnQI", _ZN3sce7Toolkit2NP2V29Messaging24GameDataMessageThumbnail8deepCopyERKS4_) +STUB( + "5gu1s1nBAhY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEaSERKS9_) +STUB("5h0eiVvefDA", uprv_decNumberVersion_67) +STUB( + "5h3QFBojepY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "5h97ib55UjQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEE11get_deleterEv) +STUB( + "5hD7cQXu+Mc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEdeEv) +STUB( + "5hDjXvG0aNo", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession23setLocalizedSessionNameERKNS1_6Common12IntrusivePtrINS3_15LocalizedStringEEE) +STUB("5hKpuqATmek", _ZN7WebCore20ResourceResponseBaseC1ERKNS_3URLERKN3WTF6StringExS7_) +STUB("5hMXXEDLGqE", _ZN13MsvMetaEditor22searchUuidWithUserTypeEPKjPib) +STUB( + "5hR4M2499NY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEaSERKS9_) +STUB( + "5hRgNvI6fpQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEC1Ev) +STUB( + "5hSHpcSFBig", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEED1Ev) +STUB( + "5hYCe5D5m8E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEED1Ev) +STUB( + "5hZ6a7tYDTE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEC2EPNS2_10LibContextE) +STUB("5haH1DZRMIc", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V18RelationEEppEi) +STUB( + "5hawOmncJTA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEeqERKS9_) +STUB( + "5hbCmQT4nO4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyC2EPNS1_6Common10LibContextE) +STUB( + "5hbb0uXZrgc", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "5hgPIpnI5ss", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEE11get_deleterEv) +STUB("5hkGCgm07gk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE6resizeEj) +STUB("5hpa41iufLo", _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest18getChildActivitiesEv) +STUB("5hpi-ggrt9s", mono_aot_Sce_Vsh_Themeunbox_trampolines) +STUB("5hsJhDVP7QE", _ZN3sce7Toolkit2NP2V210Tournament7Request10TeamFilterC2Ev) +STUB("5huYgqy73xo", sceDbgUserChannelPrintf) +STUB( + "5huiDr06TX0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("5hyGcUq8iOs", + _ZN3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform14unsetJoinStateEv) +STUB( + "5hyQmkchWk8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEEaSERS9_) +STUB( + "5hyp8p6YAEQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEEC1ERSA_) +STUB( + "5hzYAOOwNRc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEixEm) +STUB("5i+J+lV6oNw", wpe_loader_get_loaded_implementation_library_name) +STUB("5i-qE0WD+q8", _ZN7WebCore18DOMWindowExtensionC2EPNS_5FrameERNS_15DOMWrapperWorldE) +STUB( + "5i0IYxmHlE4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEE11release_refEv) +STUB("5i4G0Dch02o", mono_aot_Sce_Vsh_SQLiteunbox_trampolines_end) +STUB( + "5i6Vm5eqd2c", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEptEv) +STUB("5i8mTQeo9hs", __atomic_exchange) +STUB("5i8mYqsM8z0", _ULx86_64_destroy_addr_space) +STUB( + "5iAOUQNFz+o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEE5resetEPS6_) +STUB("5iAhhCI-A1A", sceAudioInSetMicLevel) +STUB("5iGBmITxmzo", jio_snprintf) +STUB( + "5iNuY1PfVz4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEptEv) +STUB("5iPoUxHRg1U", _ZN7WebCore17PageConsoleClientC1ERNS_4PageE) +STUB( + "5iUgIheUp5Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEE11release_refEv) +STUB( + "5iWYg6rTRyw", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12unsetString7Ev) +STUB("5iZG-E-Tj3o", _ZNK7WebCore9RenderBox11clientWidthEv) +STUB("5iahcrakLRo", _ZN3sce7Toolkit2NP2V210Tournament12EventDetailsC2Ev) +STUB("5ifAYsFspMM", sceKernelPrepareToSuspendProcess) +STUB( + "5im-hNGx6QU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEC1EPS8_) +STUB( + "5inJZ9DWU-8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEC2Ev) +STUB( + "5iopwZQTBdQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEC2Ev) +STUB("5ipBcLYVc2k", FT_Remove_Module) +STUB("5iq1GFWmatc", utrie_enum_67) +STUB("5iqtUryI-hI", sceUserServiceGetNotificationSettings) +STUB("5isaotjMWlA", sceNetEventCallbackWaitCB) +STUB("5iutBW2kKYU", Java_com_sony_bdjstack_core_CoreApp_getBasePath) +STUB("5iwHJGfeSLY", _ZN12video_parser17cVideoOperatorMnvC2EPKc) +STUB("5ixVUdmlq1o", WKInspectorIsFront) +STUB("5ixbljAMYeg", sceMbusDebugGetPriorityInfo) +STUB("5iyXoE5JDCg", sceFsUfsAllocateSaveData) +STUB("5iypqrWVS40", _ZN12video_parser5vpcom3rtc19ParseSQLiteDateTimeEPmPKc) +STUB( + "5j-VpP4DjUE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEEC1Ev) +STUB("5j4kGT4mYL8", _ZNK7WebCore12SettingsBase19sansSerifFontFamilyE11UScriptCode) +STUB("5j5u8ODxw0M", _ZN3JSC7Symbols18PromisePrivateNameE) +STUB("5j6-WEttbuw", + _ZN7WebCore8Settings46setAuthorAndUserStylesEnabledInspectorOverrideEN3WTF8OptionalIbEE) +STUB( + "5j71cGUknZU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEEC2EPS8_PNS2_10LibContextE) +STUB("5j7fnT5sLSY", generic_trampoline_jit) +STUB( + "5j8K2STP57U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE5emptyEv) +STUB("5j9bYxepQ+I", _ZN3JSC7Symbols11matchSymbolE) +STUB("5jL7UM+AdbQ", sceUserServiceSetSystemLoggerHashedAccountId) +STUB("5jLg5+MVNOA", g_slist_nth_data) +STUB( + "5jNSXii7Ii0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEC2Ev) +STUB("5jNubw4vlAA", strnlen) +STUB("5jRCs2axtr4", inet_ntop) +STUB("5jX3QET-Jhw", _ZTSSt9time_base) +STUB( + "5jXILdtQ3Og", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEE3getEv) +STUB( + "5jgS9cSmlQs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEE5resetEPS9_) +STUB("5jhzau6bbXk", _cos_impl) +STUB( + "5jjCirv5CTQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEEC1Ev) +STUB("5jk63e4y8qA", _ZN7WebCore21convertToIntegerClampIlEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB( + "5jofPJnvvGA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE7popBackEv) +STUB("5jpU6nIoG7s", _ZN7WebCore17JSHTMLLinkElement14finishCreationERN3JSC2VME) +STUB("5jqBeo7ZSLo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEE3getEv) +STUB( + "5jrWuNhpppA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("5jsZ5DrpJYc", sceFsMlfsMountWithFlags) +STUB("5jwhYRmIpTE", sceVnaSetSessionTimeoutSettings) +STUB("5jwt0lYswdE", _ZN12Mp4Retriever14processTkhdBoxEv) +STUB( + "5k2xq0wh18c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEC1Ev) +STUB( + "5kB1T8Ex9bA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEEC1EPS8_PNS2_10LibContextE) +STUB("5kBfZ40bAuk", tcgetattr) +STUB( + "5kCVJI+pv+Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("5kH064n38yc", GCC_except_table331) +STUB("5kKBK5wylwI", WKHitTestResultCopyLinkTitle) +STUB("5kKmf95aeiM", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetBoolean1Ev) +STUB( + "5kVK5WJoyeY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEE11release_refEv) +STUB("5kVoMk8TJRU", usearch_reset_67) +STUB( + "5kWPmfzWrNQ", + _ZN3sce2Np9CppWebApi7Matches2V14Task11setSubtasksERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_7SubtaskEEEEE) +STUB( + "5kWpFDZfzJo", + _ZN9Inspector24RuntimeBackendDispatcher12awaitPromiseElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("5kYJZyG9nIw", _ZN7WebCore9HTMLNames11enctypeAttrE) +STUB("5kbL2PamH30", mono_aot_Sce_Vsh_MyGameListjit_got) +STUB( + "5khLs+O2lpY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEE7add_refEv) +STUB("5kng5eAMagw", + _ZN7WebCore17LinkIconCollector12iconsOfTypesEN3WTF9OptionSetINS_12LinkIconTypeEEE) +STUB("5kt-2P9eBgc", _ZN7WebCore14SQLiteDatabase22disableThreadingChecksEv) +STUB("5kx49CAlO-M", sceFontGetAttribute) +STUB( + "5kxdg1HLUSM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEC1Ev) +STUB( + "5kzeIgDm6PQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEdeEv) +STUB("5l-RMMB0B9Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEE7get_refEv) +STUB( + "5l14Uh9z+MI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE5beginEv) +STUB( + "5l3EaxOWG-c", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("5l3IfCFJxBs", sceAgcDriverFindResourcesPublic) +STUB("5l4-Ye9uFuA", _ZN3JSC13RuntimeMethodC2ERNS_2VMEPNS_9StructureEPNS_8Bindings6MethodE) +STUB("5lGNa6oA3Wg", + _ZN7WebCore19JSHTMLSelectElement11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("5lJZI5dqOj0", mono_aot_Sce_Vsh_RequestShareStorageWrappermethod_addresses) +STUB("5lVoAOpBn1Q", Java_java_util_zip_ZipFile_getSize) +STUB( + "5lZxfnXd59A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEcvbEv) +STUB("5lb4HbLqUeE", _ZNK7WebCore12ChromeClient33shouldDispatchFakeMouseMoveEventsEv) +STUB("5ldnD16rYZw", sceAjmBatchJobSetResampleParametersEx) +STUB("5lhvOqheFBA", sceNpMatching2GetRoomMemberDataInternal) +STUB( + "5li12quI-mo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB("5lj721VKEdI", _ZN3JSC7Symbols25concatSlowPathPrivateNameE) +STUB("5lqFaOk9rQE", _ZN7WebCore26HTMLTextFormControlElement21setSelectionDirectionERKN3WTF6StringE) +STUB("5lrSEHdqyos", sceNetGetIfnameNumList) +STUB("5lsDn8-BaNU", _ZN12Mp4Retriever14processUuidBoxEv) +STUB( + "5m3I8TAsbuw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEC2Ev) +STUB("5m7AgdxA2ps", _ZN3JSC11VMInspector9forEachVMEON3WTF8FunctionIFNS0_13FunctorStatusERNS_2VMEEEE) +STUB("5m8+OXFKHyw", mono_aot_Sce_Vsh_Np_AuCheckmethod_addresses) +STUB("5mCd+ow2T2s", WKArrayAppendItem) +STUB( + "5mCgT5N4uYo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEEC1ERKSA_) +STUB( + "5mDu25LGUds", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("5mDyEN8X7Zw", ustrcase_internalToUpper_67) +STUB( + "5mI1SnuO9wk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEC1ERS7_) +STUB( + "5mMU5hblNns", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEC1ERS7_) +STUB("5mNZ1PXEPWI", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEEplEm) +STUB("5mO+cXIAaRI", scePthreadMutexGetprioceiling) +STUB( + "5mPGhLmO8Ks", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE6resizeEj) +STUB( + "5mPNUq8OETE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEEC2ERKSA_) +STUB( + "5mQ-4X10tJo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEE11get_deleterEv) +STUB( + "5mUG6spIw-4", + _ZN3sce7Toolkit2NP2V28Matching14sendInvitationERKNS3_7Request14SendInvitationEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("5mZYrdBvCCA", u_versionToString) +STUB( + "5ma9zz9mlf0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "5mdHwsvDxeI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEC2Ev) +STUB( + "5mfQHJ-BXzM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB( + "5mhO-GsviAI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE6resizeEj) +STUB( + "5mhoSsB6yw0", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB("5ml1wcikg0c", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEdeEv) +STUB("5mlTo8nbdYU", _ZN3JSC4Yarr10parseFlagsEN3WTF10StringViewE) +STUB("5mppAJEHox0", WKViewDidExitFullScreen) +STUB("5my6B3OKWLk", WKContextConfigurationSetInjectedBundlePath) +STUB("5n-mrnhy5Fk", _ZN3sce2Np9CppWebApi6Common6VectorIiED1Ev) +STUB("5n-wRxhsTXU", sceDebugStopChildProcesses) +STUB( + "5n5BLnFKY6g", + _ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead21unsetFromNonPsnPlayerEv) +STUB("5n5i6p18f+Q", sceMusicCoreServerTerminate) +STUB("5n8+z7tyJDQ", g_list_nth_data) +STUB( + "5n95QveY7H4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEaSERS7_) +STUB("5nB67Vde7AA", + _ZN3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinitionC2Ev) +STUB("5nHE5aoXmoc", Java_com_sony_bdjstack_system_BDJModule_waitForExit) +STUB( + "5nJYd4V9qF4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE5beginEv) +STUB("5nM4Yy92Qwg", _ZN3sce2np9EventFlag4dtorEv) +STUB( + "5nQqVXM+6-c", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEEcvbEv) +STUB("5nW3A7Q-2OQ", _ZN7WebCore12ChromeClient17didAddHeaderLayerERNS_13GraphicsLayerE) +STUB("5nayeu8VK5Y", sceNpManagerIntRemoveOnlineIdChangeCallback) +STUB("5nc2gdLNsok", sceCoredumpAttachUserFile) +STUB("5ncu2Zysxcw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEEC2EPS5_PFvS7_EPNS2_10LibContextE) +STUB("5nd7FB7MQhE", _ZNK9Inspector17BackendDispatcher12CallbackBase8isActiveEv) +STUB("5nl86m-O6zg", sceOpusSilkEncCtl) +STUB("5nlaOBZYquI", _ZN3sce3Xml12MemAllocatorD0Ev) +STUB("5npvcIFzkLc", _ZN7WebCore9HTMLNames6wbrTagE) +STUB("5nyaTBp3OLA", ucurr_getName_67) +STUB("5o5LFXSYQsw", _ZN3sce7Toolkit2NP2V28Commerce9ContainerC1Ev) +STUB("5o8+E6aqcKk", + _ZN3sce2Np9CppWebApi7Matches2V128RequestTemporaryMatchResultsC1EPNS1_6Common10LibContextE) +STUB( + "5oDrRAty+6g", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "5oEDjTgTmK0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEmmEv) +STUB( + "5oFq3CNRerc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE8pushBackERKS8_) +STUB("5oLJoOVBbGU", sceNetCtlApAppInitWpaKeyForQa) +STUB( + "5oMSt-sYGY4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "5oU25pL8aKU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEmmEv) +STUB("5odJ9-BPKj0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V115SearchAttributeEEmmEv) +STUB("5oozK98GQac", il2cpp_monitor_pulse) +STUB( + "5oqGmxHcbHE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEE3getEv) +STUB("5osvee3K52Q", goby_ManageRights) +STUB("5ovK+oroKlY", _ZN15AbstractStorage14TwitterStorageD0Ev) +STUB("5ox1t2dfriw", sceAudioOutGetSystemInfoEx) +STUB( + "5p8LHGPi5oc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEED2Ev) +STUB( + "5pHB8m5ZtGI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE5beginEv) +STUB("5pMRwq9iJhc", mono_debug_free_source_location) +STUB("5pMktPrQ1pg", _ZN9Inspector18InjectedScriptBaseaSERKS0_) +STUB("5pZKrL6W9jI", _ZTVN9Inspector21PageBackendDispatcherE) +STUB( + "5pbw5vA7vRQ", + _ZN7WebCore10WheelEvent20initWebKitWheelEventEiiON3WTF6RefPtrINS_11WindowProxyENS1_13DumbPtrTraitsIS3_EEEEiiiibbbb) +STUB( + "5pkGq7Ilw9Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEE7get_refEv) +STUB( + "5prlZSNAmwg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE4sizeEv) +STUB( + "5puPMzl9jtE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEplEm) +STUB( + "5puj1JruUOU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEED2Ev) +STUB("5pwC1RwyN7A", _ZN7WebCore9HTMLNames7citeTagE) +STUB("5pwtd+MYKfw", AacsPermissionActivateCheck) +STUB("5q0suac3C+8", ures_getVersionNumberInternal) +STUB("5q7D6a4Yc7M", ring_doorbell) +STUB("5q95ravnueg", sceGnmDrawIndexIndirectMulti) +STUB("5qBXmEPTZpI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEED1Ev) +STUB( + "5qBh9gmIMYw", + _ZN9Inspector25RuntimeFrontendDispatcher23executionContextCreatedEN3WTF6RefPtrINS_8Protocol7Runtime27ExecutionContextDescriptionENS1_13DumbPtrTraitsIS5_EEEE) +STUB("5qHg+VqPrT4", _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRankingC2ERS5_) +STUB( + "5qMXy8fDfz8", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_4Page20CookieSameSitePolicyEEESt8optionalIT_ERKN3WTF6StringE) +STUB("5qOttZkPpOQ", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_21NotifyChallengeResultEED2Ev) +STUB("5qP1iVQkdck", ftello) +STUB("5qRVfxOmbno", sceAudioInDeviceHqOpen) +STUB("5qcBN4xuhSI", rgctx_fetch_trampoline_rgctx_113_p) +STUB( + "5qjqI0FPyWc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEC2EPS8_) +STUB("5qqbXOGlHw4", FT_Library_Version) +STUB("5qqjEdxEeeU", _ZN3WTF18FunctionDispatcherD0Ev) +STUB("5qtcuXWt5Xc", _Randseed) +STUB( + "5qugEw6kQ3U", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEplEm) +STUB("5quyauWOGX0", sceClHttpAbortRequest) +STUB( + "5r+v8yyPmCs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE17getNpWebApi2ReqIdEv) +STUB( + "5r2Y8-7I8Eo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE3endEv) +STUB( + "5r2zwKiU-2Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEC2EPS8_) +STUB( + "5r4jPU8MWAQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE6resizeEj) +STUB( + "5r4qvRkyUy4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEEptEv) +STUB("5r5GmjB00v0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEEptEv) +STUB("5r801ZWiJJI", _ZNSt6locale7_Locimp8_MakelocERKSt8_LocinfoiPS0_PKS_) +STUB("5r9JJG6Qbh4", Java_java_io_FileDescriptor_initIDs) +STUB("5rCCrgOuFtQ", _ZNK7WebCore9FrameView28absoluteToLayoutViewportRectENS_9FloatRectE) +STUB( + "5rCy1tlszTI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE7reserveEi) +STUB("5rD2lCo4688", _ZTSPKs) +STUB("5rDrhhxeH90", il2cpp_get_corlib) +STUB("5rDyTRHHx3k", GetCurrentTime) +STUB( + "5rINiSr7Wa8", + _ZN7WebCore25WebSocketChannelInspector21didSendWebSocketFrameEPNS_8DocumentERKNS_14WebSocketFrameE) +STUB("5rJgyi8UtAU", _ZN3NTF22URLRequestJobSchedulerC1Ev) +STUB("5rLiDvpncr0", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V18SortModeEEptEv) +STUB( + "5rNa2myKI+w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEC1Ev) +STUB( + "5rP60EvxPg4", + _ZN8meta_gen11MsvPromoter16ExtractThumbnailERN23sceMetadataReaderWriter9ThumbnailEP22MsvPromoteInnerContextP20MsvCancelInterface_tP19MsvStorageInterfaceP26MsvPromoteInnerInformation) +STUB("5rS-6rO0R6g", _ZNK7WebCore13HTTPHeaderMap17getUncommonHeaderERKN3WTF6StringE) +STUB("5rbqI4X4rOs", _ZN9Inspector22InspectorDebuggerAgent17clearPauseDetailsEv) +STUB( + "5relJQzkE9I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEE7add_refEv) +STUB( + "5rjSowS0dqk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEE7add_refEv) +STUB("5rp0gDy116g", _ZN7WebCore19JSAnimationTimeline9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("5rrJMdrBV0g", _ZN3sce2Np9CppWebApi7Matches2V124ResponseTeamMemberResultD1Ev) +STUB("5rrJOgmGgPY", sceDataTransferAbortFgTransfer) +STUB( + "5rx9BI+P0Yg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEneERKS9_) +STUB("5s+C+3KyIG0", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_accessiblePlayList) +STUB( + "5s-tzz2VeoE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE5startEPNS2_10LibContextE) +STUB("5s0ydPMO0f0", uprv_deleteUObject) +STUB( + "5s3QAId9Fo8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEED1Ev) +STUB( + "5s4TinvE+1c", + _ZN7Nicosia9AnimationC1ERKN3WTF6StringERKN7WebCore17KeyframeValueListERKNS5_9FloatSizeERKNS5_9AnimationEbNS1_13MonotonicTimeENS1_7SecondsENS0_14AnimationStateE) +STUB("5sAWgysOBfE", sceFontGraphicsUpdateClipping) +STUB("5sBISBR0ooA", sceDbgAssertionHandler) +STUB( + "5sK+ewjenbY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEE7add_refEv) +STUB( + "5sNJ89fhoWw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEmmEi) +STUB("5sNT63YuvME", _ZN7Nicosia16SceneIntegration6ClientD0Ev) +STUB( + "5sRu4LyJ22M", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE17getNpWebApi2ReqIdEv) +STUB("5sSAnvs7pzI", _ZN3sce2np14JsonStringImplD0Ev) +STUB("5sYNBNK+W3g", sceFiosFHClose) +STUB("5sd-RroOg-w", WKContextGetMaximumNumberOfProcesses) +STUB( + "5sdx8ctOIE0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("5sfbtNAdt-M", _ZNKSt12future_error4whatEv) +STUB("5ssHBRrth-w", _ZN7WebCore9HTMLNames9legendTagE) +STUB("5ssgfQ4aL9A", bemp2sys_logprintf_setlevel) +STUB("5t1WvcR0qqk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V510AnnotationEEeqERKS7_) +STUB("5t3Fcej08Z8", JVM_FindClassFromClassLoader) +STUB("5t5EIFVnWlQ", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEEC2Ev) +STUB( + "5t7Tz-GAdWQ", + _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile12setLanguagesERKNS1_6Common6VectorINS5_6StringEEE) +STUB("5t7pPLGAH60", mono_field_get_value_object) +STUB("5tAHSWQfomw", sceDebugGetSyncWaiterList) +STUB( + "5tHXQyYv3DM", + _ZN9Inspector25DatabaseBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("5tM252Rs2fc", getc_unlocked) +STUB("5tOfnaClcqM", sceAjmBatchStart) +STUB("5tRaBjtdTzY", sceVideoOutVrrPegToFixedRate) +STUB( + "5tSQI3wPYQM", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody25unsetLocalizedSessionNameEv) +STUB("5tW9QOKdw7g", _ZNK3sce2Np9CppWebApi7Matches2V117ResponseMatchTeam11getTeamNameEv) +STUB("5tYi1l9CXD0", _ZN3sce2np9RefObject7ReleaseEv) +STUB("5ti4Vc-Mp6I", WKWebsiteDataStoreRemoveLocalStorage) +STUB("5tmv0sLeWpU", PEM_read_bio_X509_AUX) +STUB("5to2dtEmnsg", _ZL18_new_array_nothrow) +STUB( + "5toHmdcZrx4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUserD2Ev) +STUB("5trdnX5Neq0", _ZN7WebCore15JSSVGSVGElement14finishCreationERN3JSC2VME) +STUB("5txKfcMUAok", pthread_mutexattr_setprotocol) +STUB("5txx+w0HYOs", sceBgftServiceIntDownloadGetProgress) +STUB("5u-OHNy+7cc", _ZN3PAL22registerNotifyCallbackERKN3WTF6StringEONS0_8FunctionIFvvEEE) +STUB("5u2WeL-PR2w", sceSystemServiceGetPlatformPrivacyDefinitionData) +STUB( + "5u3bsq8gHnU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEE7get_refEv) +STUB("5u5m9uySmd0", _ZN7WebCore9VRManager9singletonEv) +STUB("5u92OudBAQs", mono_aot_Sce_Vsh_Accessor_Dbunbox_trampolines) +STUB("5uDsUFAoyFQ", _ZNK3sce2Np9CppWebApi7Matches2V120ReportResultsRequest6toJsonERNS_4Json5ValueEb) +STUB( + "5uE1LUx8z8A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEC2Ev) +STUB( + "5uEl-q4nnKw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEppEv) +STUB("5uEq+xEE5VE", _ZN3JSC7Symbols25generatorFramePrivateNameE) +STUB("5uFKckiJYRM", sceGnmSetPsShader350) +STUB( + "5uN0347eJm8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEEC2EPSA_PFvSC_EPNS2_10LibContextE) +STUB( + "5uOSMNfzqHc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEE5resetEPS8_) +STUB( + "5uOU8IfPT2I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("5uRi+ZGaijc", + _ZN3sce2Np9CppWebApi11Matchmaking2V120ErrorResponseFactory7destroyEPNS3_13ErrorResponseE) +STUB("5uSNu5gTC1I", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEE3getEv) +STUB("5uYwhIt0ZgA", _ZN7WebCore8XMLNames8langAttrE) +STUB( + "5uZu9zxo0y4", + _ZN3sce2Np9CppWebApi6Common23UpDownStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("5udAm+6boVg", sceGnmCreateWorkloadStream) +STUB("5udeImdKV88", _ZThn176_NK7WebCore8Document42shouldBypassMainWorldContentSecurityPolicyEv) +STUB("5uejYlz1HSo", mono_aot_Sce_Vsh_DbPreparationWrapperplt_end) +STUB("5uqBKY6wdV4", mono_aot_Sce_Vsh_GriefReportunwind_info) +STUB("5uu3AmSSEBg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE7reserveEi) +STUB( + "5uvjzBmTu5Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE4sizeEv) +STUB( + "5uvuKGA1cQU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEC2EPS8_) +STUB("5ux94o4IbC0", png_get_valid) +STUB("5uxtaxT7+2U", _ZNK7WebCore16HTMLMediaElement6pausedEv) +STUB( + "5uy3POCFlAc", + _ZN3JSC19JSSymbolTableObject14deletePropertyEPNS_6JSCellEPNS_14JSGlobalObjectENS_12PropertyNameERNS_18DeletePropertySlotE) +STUB( + "5v9DxFIdXq4", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError9setErrorsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_5ErrorEEEEE) +STUB("5v9kfC4GeYs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEED2Ev) +STUB( + "5vE3GUR0Nr0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE5clearEv) +STUB("5vHroLEmcZU", + _ZN7WebCore12SettingsBase20setCursiveFontFamilyERKN3WTF12AtomicStringE11UScriptCode) +STUB("5vILCAT5iX0", _ZN3sce2Np9CppWebApi12Leaderboards2V112EntryFactory7destroyEPNS3_5EntryE) +STUB("5vSMUBUm+HM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEEC2EPS6_PNS2_10LibContextE) +STUB("5vTnxovHQM4", _ZNK3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead13platformIsSetEv) +STUB("5vWidtUYDek", mono_aot_Sce_PlayStation_Orbis_Speechunwind_info) +STUB( + "5vcNFpc6oM8", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayer13isInitializedEv) +STUB("5vl4QkoHFYY", _ZNK3WTF6String14toUInt64StrictEPbi) +STUB( + "5vni++SVEII", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE6resizeEj) +STUB("5vtFYXFJ7OU", sceUserServiceGetParentalDvd) +STUB( + "5vxa6rutVFw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("5vyXyk7zR6M", _ZNK7WebCore11MediaPlayer22hasAvailableVideoFrameEv) +STUB("5vzOS2pHMFc", sceAudioPropagationSourceSetAudioPaths) +STUB("5w+Rr9+LpNk", WKContextUseTestingNetworkSession) +STUB("5w1u7rkzlBw", _ZNKSt9basic_iosIwSt11char_traitsIwEE5widenEc) +STUB("5w55Rh-7xNM", WKWebsitePoliciesGetDataStore) +STUB( + "5w745-GRndQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEE7add_refEv) +STUB("5w7WOKz7R2Y", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE5emptyEv) +STUB("5wAvtZfDK8M", il2cpp_class_get_element_class) +STUB( + "5wBnhHNNzPs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("5wDkfxnmbfI", _ZN7WebCore6JSNodeC2ERKS0_) +STUB("5wDmVg6B5-4", _ZN3sce7Toolkit2NP2V27Ranking7Request13GetUsersRanks8MIN_PCIDE) +STUB("5wJ799-PseQ", _ZN7WebCore8SVGTests27hasFeatureForLegacyBindingsERKN3WTF6StringES4_) +STUB( + "5wM1AxqBnvM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEC1EPNS2_10LibContextE) +STUB("5wP7bivaX7c", sceAvControlIsHdrSupportedByMonitorInfo) +STUB( + "5wQblGoCaiA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEEC2EPS6_PNS2_10LibContextE) +STUB("5wTstW4Gvks", _ZN7WebCore19ResourceRequestBase13setHTTPMethodERKN3WTF6StringE) +STUB( + "5wWpL-6h3HE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEneERKS9_) +STUB("5wb9FIvzdd8", _ZN3sce2Np9CppWebApi7Matches2V111AddedPlayerC1EPNS1_6Common10LibContextE) +STUB( + "5wfp3dx-RNc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEptEv) +STUB("5wjxESwX68I", sceShareFeatureProhibit) +STUB("5wk3sZEzYzs", _ZN3sce2Np9CppWebApi6Common6VectorIlE21intrusive_ptr_sub_refEPS4_) +STUB( + "5wk6-iVSm3c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE5beginEv) +STUB("5wtV7AmfJHM", _ZN7WebCore4Page23scheduleRenderingUpdateEv) +STUB("5wuEQJyn0QI", mono_aot_Sce_Vsh_Orbis_CdlgServerNpCommerceplt) +STUB("5wx9IkLreUQ", _ZN3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer14setCustomData1EPKvm) +STUB( + "5x-lTelv074", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("5x0Tc16D9IE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEEC1EPNS2_10LibContextE) +STUB( + "5x7XYR5UoCQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "5x8xnRDuv30", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEptEv) +STUB("5x92kVGvuec", FTC_SBitCache_Lookup) +STUB("5xBpxt9gWiU", _sceLibcUnwindMutexInit) +STUB("5xCC90SVu-s", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_26ActivityFeedCondensedStoryEEC1ERKS4_) +STUB("5xDT5s6gCgg", sqlite3_column_name16) +STUB("5xGAHCxA8M0", sceUltConditionVariableWait) +STUB("5xIa67r+LPE", _ZNK7WebCore3URL4userEv) +STUB( + "5xIuvnZfBvM", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS2_6VectorINS5_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS5_INS8_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("5xKeD3Xek3k", _ZN7WebCore11MathMLNames11alttextAttrE) +STUB( + "5xLNa0FRH0Q", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditionsC2ERS5_) +STUB( + "5xOdQGVtMpA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "5xQh3R1cMM0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEC2Ev) +STUB("5xTEr2xjqZM", _ZN7WebCore21convertToIntegerClampImEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB("5xXdtHf+CbU", _ZN7WebCore16VisitedLinkStore27invalidateStylesForAllLinksEv) +STUB( + "5xZk3UZHJBA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE6resizeEj) +STUB("5xaAcGH9QLs", JSRemoteInspectorDisableAutoStart) +STUB( + "5xd8lA7ZiCQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEEcvbEv) +STUB("5xgZx3AvaBQ", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable9setSlotIdERKi) +STUB("5xnIXBGQEV8", _ZN7WebCore20ISOOriginalFormatBoxC1Ev) +STUB( + "5xq6ZEP2OY4", + _ZN3sce2Np9CppWebApi14SessionManager2V157PostGameSessionsSessionIdMemberPlayersResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_50PostGameSessionsSessionIdMemberPlayersResponseBodyEEE) +STUB("5xrnhzmmZos", _Z21clearIpmiMessageQueuei) +STUB("5xsx74tXTsU", _ZN8meta_gen13TiffRetrieverD2Ev) +STUB("5xuzeLSBGPg", WKDatabaseManagerGetDatabaseDetailsExpectedUsageKey) +STUB( + "5xxTZnhwjOc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEE5resetEPS7_) +STUB("5xxxQSuP-3Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ChildActivityAvailabilityEEppEi) +STUB("5y0wMPQkaeU", sceNpInt32ToStr) +STUB( + "5y6hVI2aLPU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEC2Ev) +STUB( + "5y8B0FwhfOY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB("5y8l2xECbuA", _ZN3JSC17FuzzerPredictionsC1EPKc) +STUB("5yChmiUJqt4", _ZN15AbstractStorage12LocalStorageC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("5yD7mtyHFIs", _ZN9Inspector15RemoteInspector15pushListingsNowEv) +STUB( + "5yFl0GN5ngc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEC2EPS6_PNS2_10LibContextE) +STUB("5yFprAQdMY4", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13boolean9IsSetEv) +STUB("5yFpvHAL1qM", sceS3dConversionQueryAttr) +STUB("5yH++VAVSmc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEC1Ev) +STUB("5yHFvMwZX2o", sceSaveDataDebugGetThreadId) +STUB( + "5yHGxtJOwFw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEaSERKS7_) +STUB("5yHuiWXo2gg", _ZN3sce4Json5Value3setEb) +STUB( + "5yKiqEeYzPA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle11setPerGenreERKNS1_6Common12IntrusivePtrINS3_19PlayStylePropertiesEEE) +STUB("5yLbxbgm3Ek", _ZN3sce7Toolkit2NP2V212ActivityFeed13UsersWhoLikedD1Ev) +STUB( + "5yP2ZgKzByI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("5yVBon4oQMg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE7reserveEi) +STUB("5yXyWGB2WNE", _ZN3WTF10ParkingLot11forEachImplERKNS_12ScopedLambdaIFvRNS_6ThreadEPKvEEE) +STUB("5yYjEdd4t8Y", sceNpSignalingCreateContext) +STUB("5yZOVXSHWpo", WKContextSetUsesNetworkProcess) +STUB("5yb0O2TsYvw", sceImeBackendOpen) +STUB("5ybFTyFeUbQ", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEEppEv) +STUB("5ybvC00BiMo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEE5resetEPS6_) +STUB( + "5ydf-B-Dihk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEneERKS9_) +STUB("5yga+o4TVqk", sceAvSettingControlHdcpEncryption) +STUB("5ygy1IPUh5c", sceAppMessagingSendMsgToShellUI) +STUB( + "5yiOmhy5nQQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEptEv) +STUB( + "5yo-4tuiGoM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEE5resetEPS7_) +STUB( + "5yqQucMqBI0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE4sizeEv) +STUB( + "5yqemlmAhbk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEC1EPS8_) +STUB("5ytRGIY0Dwc", mono_aot_Sce_PlayStation_PUIPlatformunbox_trampolines) +STUB("5ywIAwiv3nY", sr10) +STUB("5z0f+ru0Dwg", _ZN13MsvMetaEditor17updateEachMoofBoxEi) +STUB( + "5zAlmMnlJTI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEdeEv) +STUB("5zBnau1uIEo", sceNpUniversalDataSystemCreateContext) +STUB( + "5zCB78yzpEI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE10setContextEPNS2_10LibContextE) +STUB("5zCW8dx4mKk", sceNpSnsIntFbGetGameAccessToken) +STUB("5zFNCOeM5pc", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE4sizeEv) +STUB("5zM0S8rA1Cs", _ZNK3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse17getTotalItemCountEv) +STUB("5zMJOGM2sLQ", _ZN7WebCore6Region5uniteERKS0_) +STUB("5zNKDCKx4bU", _ZNK7WebCore11JSDOMWindow6framesERN3JSC14JSGlobalObjectE) +STUB( + "5zNQ-Olz7OA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE21intrusive_ptr_add_refEPS9_) +STUB("5zSE85dlaJM", WKBundlePageSetContextMenuClient) +STUB("5zWJrz0X3Ig", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEEneERKS7_) +STUB("5zWUVRtR8xg", _FXp_setw) +STUB("5zXCzWZhwaQ", utrie2_internalU8PrevIndex) +STUB( + "5zbvAHroKWM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("5zcQehpL1Mc", sceDeci4hRead) +STUB("5zig4D657pQ", _ZN3sce2Np9CppWebApi13InGameCatalog2V59ContainerC1EPNS1_6Common10LibContextE) +STUB("5zpup0URQoc", RSA_free) +STUB( + "5zrDcSbpPgA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEppEi) +STUB( + "5zxktE2egBY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEixEm) +STUB("5zy52IXaODk", _ZN3JSC7Symbols33promiseRejectionRejectPrivateNameE) +STUB("5zyEbeBeTlE", _ZN7WebCore11DisplayList17FillRectWithColorD1Ev) +STUB( + "6+4D9D4vESc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEEC1ERSA_) +STUB("6+8N+ozBlqQ", _ZN3WTF21MemoryPressureHandler26endSimulatedMemoryPressureEv) +STUB( + "6+8iU7nnU2U", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEeqERKS9_) +STUB("6+C63btEXnQ", _ZN12video_parser17_VpBitreadReadBitEPNS_21VpMpegvideoAvcBitreadEiPvi) +STUB("6+F5CRKtELA", WKContextPauseHTMLTiles) +STUB( + "6+FEoF2cgO4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEEC1ERKSA_) +STUB("6+Ilj5seAW8", _ZN3JSC19HeapSnapshotBuilder11analyzeNodeEPNS_6JSCellE) +STUB("6+JjX8dugXY", WKNotificationGetID) +STUB( + "6+LiqC-Omdc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEC2EPKS8_) +STUB( + "6+NMbqdqHFE", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13integer1IsSetEv) +STUB("6+NsFXHpWXc", u_strFromUTF32) +STUB( + "6+NxT-ujmno", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC2Ev) +STUB( + "6+WR5aDy6bg", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("6+XDwGoQ6zc", _ZN3sce2Np9CppWebApi7Matches2V118RequestTeamResults20getTeamMemberResultsEv) +STUB("6+bfgq18W84", sceDebugInit) +STUB("6+ix1AaU8xY", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt6vectorI16SceNpTusVariableNS2_IS4_EEEE10deallocateEPS6_m) +STUB( + "6+ksx1XowpA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEEC2ERSA_) +STUB("6+mBcQlHzNg", _ZN3JSC22globalMemoryStatisticsEv) +STUB("6+rNfThi1CY", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer9unsetsortEv) +STUB("6+tPBogghdI", sceLoginMgrServerDialogGetOpenParam) +STUB( + "6+tWrQKev+0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEC1EPS8_) +STUB( + "6+tkwSme-y8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEE7get_refEv) +STUB("6+v7m1vwE+0", sceHmdInternalAnotherScreenSendVideo) +STUB("6+yXRlVrjbc", FT_Stroker_CubicTo) +STUB( + "6+zWu5yZ2bE", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Runtime12RemoteObject7SubtypeEEESt8optionalIT_ERKN3WTF6StringE) +STUB("6+zaUZSlg-E", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate15getPerFranchiseEv) +STUB("6-+0tEfhXI8", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEEC1Ev) +STUB("6-+Yqc-NppQ", sceNpTusDeleteMultiSlotDataAAsync) +STUB("6-1fKaa5HlY", sceSharePlayResumeScreenForCdlg) +STUB("6-68Bw2XP0Q", + _ZN7WebCore40restrictMinimumScaleFactorToViewportSizeERNS_18ViewportAttributesENS_7IntSizeEf) +STUB("6-G9OxL5DKg", sceNpScoreGetFriendsRankingAAsync) +STUB("6-GLBzdKYYM", _ZN3sce2Np9CppWebApi13InGameCatalog2V53SkuC1EPNS1_6Common10LibContextE) +STUB( + "6-GQaHkqZBw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEC2EPKS8_) +STUB("6-GmQWtFE6Y", _ZN7bmalloc11IsoTLSEntryC2Em) +STUB("6-HwyA5qhqU", Java_java_io_ObjectInputStream_allocateNewArray) +STUB( + "6-Jam0XlSHw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("6-KDz3WqEAc", png_set_IHDR) +STUB( + "6-KWlx0ZoKo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEmmEi) +STUB("6-LMlTS1nno", _ZTVSt12future_error) +STUB( + "6-MQ7CcsNNg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEmmEi) +STUB("6-MnIeHjOeE", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request15PostInGameStoryD2Ev) +STUB( + "6-NEL13T3tc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("6-RfgdMbM4k", + _ZNK3sce2Np9CppWebApi11UserProfile2V112BasicProfile25isOfficiallyVerifiedIsSetEv) +STUB("6-TkLF+tmkM", _ZN3WTF8JSONImpl5ValueC1ERKNS_6StringE) +STUB( + "6-UkAiIoCQ4", + _ZN9Inspector25BrowserFrontendDispatcher18extensionsDisabledEN3WTF6RefPtrINS1_8JSONImpl7ArrayOfINS1_6StringEEENS1_13DumbPtrTraitsIS6_EEEE) +STUB("6-WU6MmYG0c", _ULx86_64_is_signal_frame) +STUB("6-YuH6asuyE", _ZN3sce7Toolkit2NP15AppSTLAllocatorI13SceNpOnlineIdE9constructEPS3_RKS3_) +STUB("6-ZiYGjq7b8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEdeEv) +STUB("6-fUwIYLI9w", _rtld_allocate_tls) +STUB( + "6-fu8nS-bAs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("6-ioRtwmTdA", _ZN7WebCore6JSNode15subspaceForImplERN3JSC2VME) +STUB( + "6-jCUc6r2fU", + _ZN3sce2Np9CppWebApi13InGameCatalog2V524ContentDescriptorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_17ContentDescriptorEEE) +STUB( + "6-qf2ePM50Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE5beginEv) +STUB("6-uGJ48n1BM", ucnv_extContinueMatchToU_67) +STUB("60+np84nu94", _ZN9Inspector30CanvasBackendDispatcherHandlerC2ERKS0_) +STUB("60-cjn5Dn0Q", sceVrServiceDialogOpen) +STUB("600gKEiGusc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEC1Ev) +STUB( + "609u8DKdiH8", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("60IX3+7ylYk", mono_aot_Sce_Vsh_MimeTypeunbox_trampolines) +STUB("60IXulCxepw", WKWebsiteDataStoreSetStatisticsMaxStatisticsEntries) +STUB("60PjHzkyxhA", WKPageLoadHTMLString) +STUB( + "60PxGiP12yY", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot8setlimitEi) +STUB("60RuiO+Dep4", sceApplicationSwitchToNeoMode) +STUB("60UTHqV7APg", mono_aot_Sce_Vsh_Np_IdMapperunbox_trampoline_addresses) +STUB( + "60UqZREtPnE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("60auoZK0sPo", _ZN3JSC27ReadonlyPropertyChangeErrorE) +STUB( + "60bQstCdlq8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEC1Ev) +STUB("60j3hXkW9+4", WKPageRestoreFromSessionStateWithoutNavigation) +STUB( + "60lM1GvH9bE", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12setBoolean10ERKb) +STUB("60nh2aBGU-o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEED2Ev) +STUB("60q1rziOzzQ", fnmatch) +STUB( + "60u+2ie0jMs", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM18CustomElementStateEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB("60vmzOO+r4o", umutablecptrie_fromUCPMap_67) +STUB("60zOHhhdSdk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEE11get_deleterEv) +STUB( + "610Bm5R6a8E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("610iwJKrGGo", sceBgftServiceIntDownloadGetGameAndGameAcProgress) +STUB("612HTOBkd3M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEdeEv) +STUB("617HDWTYn7I", WKBundleNodeHandleSetHTMLInputElementValueForUser) +STUB("61D40NZXwo8", _ZN3sce2Np9CppWebApi13InGameCatalog2V59ContainerD1Ev) +STUB( + "61EC2LTV350", + _ZN9Inspector27DOMStorageBackendDispatcherC1ERNS_17BackendDispatcherEPNS_34DOMStorageBackendDispatcherHandlerE) +STUB("61F2XYl-Qlw", _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody13unsetTicketIdEv) +STUB("61IVWsR1+yw", _ZN7WebCore15XPathNSResolverD1Ev) +STUB("61JbhcIJzdg", _ZL5traceP15_Unwind_ContextPv) +STUB( + "61Psz9hBouM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("61SRHOc+Zl4", sceDebugIpmiGetServerInfo) +STUB("61SRkUwIq4c", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_6NpUserEE9constructEPS3_RKS3_) +STUB("61Vtjhd4M0Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEC1Ev) +STUB("61hqQqOvL00", _ZN3sce3Xml3Dom4Node11removeChildENS1_6NodeIdE) +STUB( + "61l7lw7GPpM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEdeEv) +STUB( + "61wgc-NcB7U", + _ZThn176_NK7WebCore8Document11completeURLERKN3WTF6StringENS_22ScriptExecutionContext9ForceUTF8E) +STUB("61xa89ApzAw", _ZN8meta_gen13JpegRetrieverD1Ev) +STUB("61ykjnH3AR4", sceDbgKeyboardGetKey2Char) +STUB("61yrarhAKxA", _ZN3sce7Toolkit2NP2V24Auth7IdTokenC1ERKS4_) +STUB( + "62+cyr7Hu2A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("6206R5Ww+sc", _ZN13OpaqueJSClassD2Ev) +STUB( + "625Q0lP8cX0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("627ftUcqI-4", mono_aot_System_Resources_ResourceManagerjit_code_start) +STUB( + "628Uzra6LjY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE8copyFromERKS9_) +STUB("62KCwEMmzcM", scePthreadAttrDestroy) +STUB( + "62PmOEiNI8A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEC1Ev) +STUB( + "62Q9piHDD9E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE10setContextEPNS2_10LibContextE) +STUB( + "62S4NglnjOc", + _ZN3sce2Np9CppWebApi14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyC1EPNS1_6Common10LibContextE) +STUB( + "62TQJkUhvNM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEC1EPS8_) +STUB( + "62Ubo15oizM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEneERKS9_) +STUB("62VJcoJnzdA", sceLncUtilSetRemotePlayServiceFlag) +STUB("62bzPhk37z0", + _ZNK3sce2Np9CppWebApi7Matches2V133RequestTemporaryCompetitiveResult18playerResultsIsSetEv) +STUB( + "62c-p7qEqIM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEE11get_deleterEv) +STUB( + "62fpLnXGm7M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEC1Ev) +STUB( + "62goa3W5RR0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB("62hri+YWbvk", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setGPR) +STUB( + "62jVvErk0Z0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEEC2Ev) +STUB( + "62jc4aLyK74", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEptEv) +STUB( + "62r3MEB9wLs", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsers9terminateEv) +STUB("62tMijWPfEc", _ZN7CoreIPC18MessageReceiverMap21removeMessageReceiverENS_15StringReferenceEm) +STUB( + "62wPLX-5coE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEppEv) +STUB("632HibKgIsU", scePlayReadyDomainJoinProcessResponse) +STUB( + "633jpEVU0y4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEppEv) +STUB("6381dWF+xsQ", sceHttpCreateEpoll) +STUB("63DD2vMWKhc", + _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi20ParameterToJoinMatch13isInitializedEv) +STUB( + "63J2Qm0nEj4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariable12setaccountIdEPKc) +STUB("63JKuy+rgMM", + _ZN3JSC8Bindings13RuntimeObject16getConstructDataEPNS_6JSCellERNS_13ConstructDataE) +STUB( + "63MBqXTZksQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEEcvbEv) +STUB("63P1MwkgE7I", _ZTC13MsvMetaEditor0_12Mp4Retriever) +STUB("63Qic8I9ysg", _ZN7WebCore9HTMLNames11framesetTagE) +STUB("63SzfoRv414", _ZNK7WebCore11HistoryItem15formContentTypeEv) +STUB("63X1ZO8IhCA", mono_aot_Newtonsoft_Json_PlayStationplt) +STUB("63bmb0nlVdw", _ZNK3JSC10CodeOrigin4dumpERN3WTF11PrintStreamE) +STUB("63gMgJpSkQo", _ZN3sce7Toolkit2NP2V212NetworkUtils12Notification14NetStateChangeD1Ev) +STUB( + "63irgN+Sqf4", + _ZN9Inspector23CanvasBackendDispatcherC1ERNS_17BackendDispatcherEPNS_30CanvasBackendDispatcherHandlerE) +STUB("63kHf1kLFGc", rgctx_fetch_trampoline_mrgctx_4_p) +STUB("63mNZtAp8Ag", mono_aot_Microsoft_CSharpplt) +STUB( + "63mPNKdUOZY", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession20setInvitableUserTypeERKNS3_17InvitableUserTypeE) +STUB("63t6w0MgG8I", sceUserServiceSetGlsIsMuteEnabled) +STUB("63tAnrWmYsQ", WKBundlePageCopyRenderTreeExternalRepresentationForPrinting) +STUB( + "63vGjNguP2g", + _ZN7WebCore22EmptyFrameLoaderClient12createPluginERKNS_7IntSizeERNS_17HTMLPlugInElementERKNS_3URLERKN3WTF6VectorINS9_6StringELm0ENS9_15CrashOnOverflowELm16EEESF_RKSB_b) +STUB("63xZLzR8ZKE", mono_opcode_value) +STUB("640Q+XibEfc", _ZN3sce7Toolkit2NP2V24Core10OnlineUserC1Ev) +STUB("64180GwMVro", _ZN10__cxxabiv119__pointer_type_infoD0Ev) +STUB("64Adu9FVEys", GCC_except_table246) +STUB( + "64BX2V6ez4M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "64BsH9lub88", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEC1Ev) +STUB("64D6V-ADQe0", sceNpManagerIntSignout) +STUB("64ERZWVFBTE", sceHmd2ReprojectionSetUserEventEnd) +STUB("64MyBNwaY5I", _ZN3JSC16throwSyntaxErrorEPNS_14JSGlobalObjectERNS_10ThrowScopeE) +STUB("64PEUYPuK98", sceUserServiceGetGlsAccessTokenNiconicoLive) +STUB("64QoC3ihZjc", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container11setAgeLimitERKi) +STUB("64TfvPwyhPM", _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_5RangeE) +STUB( + "64VsOItALXA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEmmEv) +STUB("64XMq6sDxUo", FT_Trace_Get_Name) +STUB( + "64Y38SwY+ZQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("64d1Ql4ALKM", + _ZNK3sce2Np9CppWebApi14SessionManager2V124GameSessionMemberForRead15spectatorsIsSetEv) +STUB("64kf1Dg-AsA", _ZN7WebCore8SVGNames14visibilityAttrE) +STUB("64nkF7LGk8w", sceSystemServiceDisableMediaPlay) +STUB( + "64pqofAwJEg", + _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tmcc) +STUB("64sasHZlD+E", _ZN7WebCore12PrintContext3endEv) +STUB("64t1HKepy1Q", CA_MGMT_freeCertDistinguishedName) +STUB( + "64t1tScUT7U", + _ZN3sce2Np9CppWebApi7Matches2V124RequestCompetitiveResult16setPlayerResultsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_20RequestPlayerResultsEEEEE) +STUB("64umtbwiizI", _ZN4IPMI4impl10ClientImpl10initializeEPKNS_6Client6ConfigEPv) +STUB("64zPqAZVyN8", _ZN7WebCore11DisplayList8DrawRectD0Ev) +STUB("65+h7A-+B+M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEE3getEv) +STUB( + "65-3DeqSgrA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEE11release_refEv) +STUB("654BTEUyjAw", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEED1Ev) +STUB( + "655LHN8zlcI", + _ZN7WebCore17PageConsoleClient9timeStampEPN3JSC14JSGlobalObjectEON3WTF3RefIN9Inspector15ScriptArgumentsENS4_13DumbPtrTraitsIS7_EEEE) +STUB("656LMQSrg6U", sceSystemServiceReceiveEvent) +STUB("659bF7Iw3XI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEEC2Ev) +STUB("65LGb3C4dE0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEEC1Ev) +STUB("65PBKMxAzwM", mono_aot_Sce_Vsh_SystemLoggerUtilWrapperunbox_trampolines_end) +STUB("65U47xQLX-I", _ZN3sce2Np9CppWebApi14SessionManager2V15Error7setCodeERKl) +STUB("65VH0Qaaz6s", sceSaveDataGetMountInfo) +STUB( + "65WU72UOp74", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsC2EPNS1_6Common10LibContextE) +STUB( + "65XpEaKrA0o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("65bNfW1vqBI", _ZN7WebCore12JSTimeRanges4infoEv) +STUB( + "65cBi3HE1EM", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("65cvm2NDLmU", + _ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_bRSt8ios_basece) +STUB( + "65d8WRH+44Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEC2Ev) +STUB( + "65mLI2EEd2w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEC1ERS7_) +STUB( + "662LNVPwRlU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("668Ij9MYKEU", sceNpTusGetMultiSlotDataStatusAVUserAsync) +STUB( + "66AuqgLnsQE", + _ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE4_PutES3_St22_String_const_iteratorISt11_String_valISt13_Simple_typesIcEEEm) +STUB( + "66Bm2pTa3iw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEeqERKS9_) +STUB( + "66CLOc8CmJg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEEC1EPS8_PNS2_10LibContextE) +STUB( + "66Ep23Q5q0E", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB( + "66HQoUCACsE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB( + "66I3KamsSsU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEC2Ev) +STUB("66IVWcdNHyI", sceCamera2SetContrast) +STUB( + "66JGp79C7yA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEED1Ev) +STUB("66VgKsjmYTM", _ZN3JSC8Debugger23updateCallFrameInternalEPNS_9ExecStateE) +STUB( + "66bF1cNKiVg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEC1EPS6_PNS2_10LibContextE) +STUB( + "66dMfnlHtss", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEmmEv) +STUB( + "66gJM-bRYNY", + _ZN3sce2Np9CppWebApi14SessionManager2V160PatchGameSessionsSessionIdMembersAccountIdRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_53PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEE) +STUB("66iwkYpXCUo", _ZN7WebCore8SVGNames11restartAttrE) +STUB("66lUg3KSBQs", _ZN7WebCore12ISOWebVTTCueD2Ev) +STUB( + "66o2NZq2nlo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEplEm) +STUB( + "66qBfB7O4HA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEE5resetEPS6_) +STUB( + "66rtr32Z+4c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE5clearEv) +STUB("671szSrFr6s", _ZN3JSC8Debugger9exceptionEPNS_14JSGlobalObjectEPNS_9CallFrameENS_7JSValueEb) +STUB("6750DaF5Pas", _ZN3sce2np6ThreadD2Ev) +STUB("676j8sJONxM", sceCesUcs2ToSbc) +STUB( + "678hfNSP+Mo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEED2Ev) +STUB("67AhDC4lXVg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEED2Ev) +STUB( + "67E6pXft6ak", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEEcvbEv) +STUB( + "67FkXsGt5NI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEC1Ev) +STUB( + "67H7V-omIwo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "67Hk7ZetEbw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEE3getEv) +STUB("67LBM2mDbVM", _ZN3JSC14throwTypeErrorEPNS_9ExecStateERNS_10ThrowScopeEN3WTF12ASCIILiteralE) +STUB("67O5hEE++yo", rgctx_fetch_trampoline_rgctx_49_p) +STUB("67P8MiTuxKc", _ZN9Inspector15AsyncStackTrace20didDispatchAsyncCallEv) +STUB("67UMDvxRnTI", _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile10getAvatarsEv) +STUB("67Vu55MuB2c", + _ZNK3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsers9hasoffsetEv) +STUB( + "67Yoe5UlRP0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE5beginEv) +STUB("67bjaftRI50", _ZNK3sce2Np9CppWebApi14SessionManager2V15Error6toJsonERNS_4Json5ValueEb) +STUB("67mnqi19O1g", JVM_ConstantPoolGetFieldAtIfLoaded) +STUB("67q17ERGBuw", sceHmdInternalGetRequiredPUPVersion) +STUB("67r6W-hiLco", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_11TusVariableENS2_IS4_EEEE7destroyEPS6_) +STUB("67re2IPp4Bo", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V517ContentDescriptor6toJsonERNS_4Json5ValueEb) +STUB( + "67tFvMMSeSE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEdeEv) +STUB( + "67wioL3b18k", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser13isInitializedEv) +STUB("67xw5D1OJts", _ZN7WebCore4PathD1Ev) +STUB( + "67yReI04I5w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE7popBackEv) +STUB("6813smIs-F4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEEC2ERKS9_) +STUB("685kVUKFFPY", mono_btls_ssl_ctx_initialize) +STUB("688gmLp3oeA", _ZN3JSC11MarkedBlock15aboutToMarkSlowEj) +STUB("689E3Karaw4", mono_domain_foreach) +STUB("68B6XDgSANk", sceNpTusGetFriendsDataStatusForCrossSaveAsync) +STUB( + "68CReqfDCI0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEED1Ev) +STUB("68GU-RJ4dJ8", il2cpp_object_get_class) +STUB( + "68OWUIoyNNI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB("68RwU+yZBKU", Java_java_lang_reflect_Array_getFloat) +STUB("68S3GKWhY6o", sceCameraIsConnectedForSystem) +STUB("68TnHm0k+Wo", mono_aot_Sce_PlayStation_Orbisplt) +STUB( + "68U+PukbxtE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE7reserveEi) +STUB("68VnGYcPyAc", _ZNK3JSC16ScriptExecutable9endColumnEv) +STUB("68WlyBlmQwM", + _ZN3sce7Toolkit2NP2V29Messaging7Request19SendGameDataMessage25MAX_SIZE_DATA_DESCRIPTIONE) +STUB("68Xne9xAk7s", glReadBuffer) +STUB("68a7dt2jTZo", _ZN7WebCore11DisplayList5ScaleD2Ev) +STUB("68d4tUskfS0", png_set_gray_to_rgb) +STUB( + "68e7n6SqtQk", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi47ParameterWithBinaryRequestBodyToRecordLargeData14getRequestBodyEv) +STUB("68hfPMwG3UQ", _ZN7WebCore11HistoryItem8setTitleERKN3WTF6StringE) +STUB( + "68imx5BwVAI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEC2Ev) +STUB("68l9v1aImyw", uscript_breaksBetweenLetters_67) +STUB( + "68rHCvjiqfk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEC2EPS8_) +STUB( + "68s0+CwJ5Jc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEED1Ev) +STUB("68voDu2wGDE", sceNetApctlUnregisterCallback) +STUB("69-5c5Th-o8", sceShareFactoryUtilTerminate) +STUB("69-JXZw10I4", _ZNK7WebCore6Editor23getCompositionSelectionERjS1_) +STUB( + "6905rbkIWeg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEneERKS9_) +STUB("6964-bbBA9Q", _ZN7WebCore11DisplayList6SetCTMD1Ev) +STUB( + "696i32ORI0k", + _ZN3sce2Np9CppWebApi14ConnectAccount2V216PartnerTokensApi15getPartnerTokenEiRKNS4_26ParameterToGetPartnerTokenERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_12PartnerTokenEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB( + "6991pgjS5g4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEE7get_refEv) +STUB("69DY3oiCwqM", mono_aot_System_Data_Services_Clientplt_end) +STUB( + "69Mr2AJ2F+I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE3endEv) +STUB( + "69NaEMX3xQc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEppEv) +STUB( + "69Ng45oazLY", + _ZNK9Inspector18InjectedScriptBase27callFunctionWithEvalEnabledERN10Deprecated18ScriptFunctionCallE) +STUB( + "69O7uIBypVQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEixEm) +STUB( + "69OHh1g57FE", + _ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionMemberPlayer8fromJsonERKNS_4Json5ValueE) +STUB( + "69PlO-CgeL8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE7reserveEi) +STUB("69Sj99mhvBE", mono_aot_ReactNative_Modules_Vsh_Gct_Telemetryjit_got) +STUB( + "69V06Medp-k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEC1EPNS2_10LibContextE) +STUB("69YVBbcF0-0", _ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_7DOMRectE) +STUB("69ZWOeabh1w", ucnv_getCCSID_67) +STUB("69aMgxJRczE", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_18GameCustomDataItemEEC1Ev) +STUB("69cJDk+7h5E", YGNodeCalculateLayout) +STUB("69fVNDtk2Zk", sceVideodec2GetVp9PictureInfo) +STUB( + "69jvTBt-P3w", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB( + "69lWirHT6vI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEED2Ev) +STUB("69nDyoTs6hM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V120PlayerJoinableStatusEEmmEi) +STUB( + "69sp5ZjGiws", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEEC1EPS8_PNS2_10LibContextE) +STUB("69sxscNZzFE", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge13ChallengeDataEEC2Ev) +STUB("69u+XqsoNd0", sceNpEntitlementAccessPollConsumeEntitlement) +STUB( + "69vPE5me7xk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "69vQyIGHxug", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEppEv) +STUB("6A+1YZ79qFk", iswcntrl) +STUB( + "6A1LVVtkyb0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE7popBackEv) +STUB("6A6EweB3Dto", sceNetConfigWlanAdhocClearWakeOnWlan) +STUB("6A9ZWIILUwQ", mono_aot_Sce_Vsh_GriefReportmethod_addresses) +STUB("6A9x05T0dgE", _ZN7WebCore15ActiveDOMObjectC2ERKS0_) +STUB("6AJE2jKg-c0", sceNetSyncCreate) +STUB( + "6AJxfDoJAfs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEdeEv) +STUB("6ALZDaUt5vI", uset_serializedContains_67) +STUB("6AN7OlSMWk0", sceNetDhcpStop) +STUB("6ANtMXo+8T4", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE8capacityEv) +STUB("6AO4z2E92Ws", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEED2Ev) +STUB( + "6AP3kPJLZmQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEE7get_refEv) +STUB( + "6AXi7OU3GQE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEED2Ev) +STUB("6AYtfmV+2PQ", ucnv_openAllNames) +STUB("6AZDjebK-v8", coil_mspace_calloc) +STUB("6AcoqeEhs6E", sceNpManagerIntWebLoginRequired) +STUB( + "6Af9Fu9zMLI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEC2EPS7_PFvS9_EPNS2_10LibContextE) +STUB("6Ah3qEzF5fg", _ZN9Inspector24CanvasFrontendDispatcher18clientNodesChangedERKN3WTF6StringE) +STUB( + "6Aq91JjROw8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEC2Ev) +STUB( + "6Aw-JetDKOM", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi35ParameterToSetGameSessionPropertiesC2Ev) +STUB("6B+t0c4O4DE", + _ZN3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer12setJoinStateERKNS3_9JoinStateE) +STUB( + "6B5AkjdR44Q", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("6B7jOBVu988", _ZN7WebCore3URLC1ERKS0_RKN3WTF6StringE) +STUB( + "6B9R5HiN0sc", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_13FriendsOfUserENS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv) +STUB("6BA6o6hUoTI", WKPreferencesGetJavaScriptMarkupEnabled) +STUB("6BC0gFV8QRw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEEC1ERKS6_) +STUB( + "6BDkqW5ckBo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEptEv) +STUB("6BEmysiBFRM", sceMbusGetDeviceInfoByCondition) +STUB( + "6BFCn2DlPC8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "6BFRC2S8GNU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEEdeEv) +STUB( + "6BJK9d0u+K8", + _ZThn24_N9Inspector22InspectorDebuggerAgent14didParseSourceEmRKNS_19ScriptDebugListener6ScriptE) +STUB( + "6BK36-Lz9wk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEED2Ev) +STUB( + "6BLG0mX+TTk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "6BVwVeJCspE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEdeEv) +STUB( + "6BXLBuaImMo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE10setContextEPNS2_10LibContextE) +STUB("6BYT26CFh58", _ZTSN10__cxxabiv117__array_type_infoE) +STUB("6BYwjF4VVpI", ucol_normalizeShortDefinitionString_67) +STUB( + "6Bb9l3vdbVY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEE11get_deleterEv) +STUB( + "6BmXR7zU-gA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEEptEv) +STUB("6BoDuKAJfjI", mono_lls_insert) +STUB("6BpEZuDT7YI", pthread_key_delete) +STUB( + "6Bpij9bfZSo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEppEi) +STUB( + "6BrJnqJ6jTM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEEdeEv) +STUB("6BswaRlDZkw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEC1ERKS7_) +STUB( + "6C+j-3zX6Kk", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getInteger7Ev) +STUB( + "6C-U7hvT+L8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEplEm) +STUB("6C2xmQ6qrmA", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils13NetStateBasicEE19setCustomReturnCodeEi) +STUB("6C8Npd4b2w4", _ZN7WebCore22EmptyFrameLoaderClient31prepareForDataSourceReplacementEv) +STUB( + "6C9EUWfvx7E", + _ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody22unsetLargeDataNumLimitEv) +STUB("6CD9L46HBRQ", _ZN7WebCore9FrameView24renderedCharactersExceedEj) +STUB("6CJEbL6VeaY", _ZN3sce7Toolkit2NP2V24Core5EmptyC1Ev) +STUB("6CPwoi-cFZM", _ZNKSt8bad_cast4whatEv) +STUB("6CQ7A-3-1Ks", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEED1Ev) +STUB("6CQ7RFmBjnQ", eglQueryContext) +STUB("6CRC7JhV+ik", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEC2ERKS7_) +STUB("6CRWGc-evO4", sceHmdReprojectionSetCallback) +STUB("6CWGYOMLeyU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116InitialJoinStateEEC1EPS6_) +STUB( + "6CXzqKR8x8c", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE3endEv) +STUB( + "6CYACypt064", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE3endEv) +STUB("6CcKkO-b8-0", _ZNSt14error_categoryD0Ev) +STUB("6Ccou9yorMk", _ZN7WebCore9HTMLNames18autocapitalizeAttrE) +STUB("6Cdc9bbjrRY", scePadVrControllerSetTriggerEffect) +STUB( + "6CfUchrohks", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEEC2ERSA_) +STUB( + "6Cj1aB9DQko", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEEC2ERKS8_) +STUB( + "6Ckje6RcBVM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEptEv) +STUB( + "6ClC-pREDZU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEC1EPS8_) +STUB("6ClJwE3AiGs", _ZN3sce7Toolkit2NP2V23TUS7Request7GetDataC1Ev) +STUB("6Cop9CFwVYs", c18) +STUB( + "6D0INEfdd-U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEEC1ERKSA_) +STUB( + "6D2ZdHxQd5o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEaSERKS7_) +STUB("6D4AZCAH2oo", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfileaSERS5_) +STUB( + "6DAcqruvhlg", + _ZN3sce7Toolkit2NP2V212ActivityFeed13getPlayedWithERKNS3_7Request13GetPlayedWithEPNS2_4Core8ResponseINS3_14PlayedWithFeedEEE) +STUB("6DBUo0dty1k", _ZNSt8messagesIcEC2Em) +STUB("6DFUkCwQLa8", sceFontCharacterGetBidiLevel) +STUB( + "6DFXt+7t2v8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEC2ERKS8_) +STUB("6DFuRKT4C9w", sceAgcDcbSetNumInstancesGetSize) +STUB( + "6DWQpP31bxw", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyD2Ev) +STUB( + "6DYUrB0WWL4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEC1EPNS2_10LibContextE) +STUB( + "6DcK2MvK6bE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "6Dd6jDnUn-8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE21intrusive_ptr_add_refEPS9_) +STUB("6DdCqaKnz4s", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEC2Ev) +STUB("6DfMVkKZQno", _ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_15CategoryInfoSubEE8max_sizeEv) +STUB("6DgJPLY7-oI", mono_aot_Sce_Vsh_RequestShareStorageWrapperunwind_info) +STUB( + "6DmqRXs1z5w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEC2EPKS8_) +STUB("6DmsnKqhilg", scePerfPmcStopProc) +STUB("6Dr-30Wd4bA", utext_current32) +STUB( + "6DtttupLJ90", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("6DvK+OdIPW4", cairo_set_source_rgb) +STUB( + "6DvrN2fB-AY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "6DynMAyHl-o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEED1Ev) +STUB( + "6E01NmPtUqA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEmmEv) +STUB( + "6E6yBbACWIg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEC2EPS8_) +STUB( + "6E9QZL-U0UU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEEaSERSA_) +STUB("6EAMoRVfnYc", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_23NpSessionInvitationInfoEED1Ev) +STUB("6EDzpceJKz8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEEC2ERS5_) +STUB( + "6EF5-ag4kFc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEE11release_refEv) +STUB("6EG6Zzcmrbg", sceCesUtf16ToMbc) +STUB( + "6EHcB1pIhjY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("6EKG2A33Gtk", scePlayReadyFinalize) +STUB("6EOfS5SDgoo", sceNpTrophyConfigGetTrophySetInfoInGroup) +STUB( + "6ERHdsgJ7Ck", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEdeEv) +STUB("6EV409ek-d4", _ZN7WebCore16BackForwardCache10setMaxSizeEj) +STUB("6EVDxXdzQSA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEE7get_refEv) +STUB("6EVXSBewBXs", scePktMgrIsRecvDataReady) +STUB("6EYF3tXjXbU", _listen) +STUB("6EbI3U7nYUI", _ZNK3sce7Toolkit2NP9Utilities6FutureI13SceNpOnlineIdE3getEv) +STUB("6Ee8Mlcb1Ho", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124NatConnectivityToMetricsD1Ev) +STUB("6EkiZ2KuQ1U", _ZNK7WebCore11MediaPlayer9isLoopingEv) +STUB("6Elq8JRcABo", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_13TusDataOutputEEC1Ev) +STUB("6EoZ4czsNTk", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V113ErrorResponseC1EPNS1_6Common10LibContextE) +STUB("6Es3CbUEwQE", _ZNK3sce2Np9CppWebApi11UserProfile2V113BasicPresence14accountIdIsSetEv) +STUB("6Et3d4p1u8c", sceUserServiceGetFileSelectorSortTitle) +STUB( + "6EtKnoJleqI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEEC2ERKSA_) +STUB( + "6Etg0UyH0tk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEEaSERKS9_) +STUB("6Eu5XtKCAy0", _ZN7WebCore22EmptyFrameLoaderClient20redirectDataToPluginERNS_6WidgetE) +STUB("6EuaJ0Q774k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEE7get_refEv) +STUB("6ExR0HScaLc", sceVencStartEncode) +STUB( + "6F-M+sSaSe8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEED1Ev) +STUB("6F1JfiING18", _ZNSt10moneypunctIwLb0EED2Ev) +STUB( + "6F5FVTjBsbo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE8copyFromERKS9_) +STUB( + "6F7jQ+Aq210", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEdeEv) +STUB("6FBMvkZ0Gx0", _ZN3IPC15ArgumentEncoder6encodeEd) +STUB("6FFYgdO9TBY", mono_aot_Sce_Vsh_GriefReportunbox_trampoline_addresses) +STUB("6FHQ2-xTuPY", _ZN7WebCore32rejectPromiseWithGetterTypeErrorERN3JSC14JSGlobalObjectEPKcS4_) +STUB( + "6FK4IOnANkc", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser9setfieldsEPKc) +STUB( + "6FN4yoA5R3A", + _ZN7WebCore14StaticNodeListC1EON3WTF6VectorINS1_3RefINS_4NodeENS1_13DumbPtrTraitsIS4_EEEELm0ENS1_15CrashOnOverflowELm16EEE) +STUB( + "6FNL64WJdAA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE6resizeEj) +STUB("6FUnD2VHRrw", EVP_MD_CTX_free) +STUB( + "6FWFwTOpm8Y", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot7hassortEv) +STUB( + "6FZoKD1Dy3E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("6Fa1qwhHQs4", _ZN3sce2Np9CppWebApi14ConnectAccount2V212PartnerToken9getScopesEv) +STUB("6FgmMff9S9g", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_12CategoryInfoEEC1Ev) +STUB("6FhHfJM+cC8", _ZN7WebCore17HTMLScriptElement8setAsyncEb) +STUB( + "6FiztUTOel4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "6Fkqs44Sa+M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEC2Ev) +STUB( + "6Fp8jJ7A7CY", + _ZN15AbstractStorage7Service13CreateStorageERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_7StorageEE) +STUB("6FsIeMre8Q8", _ZNK3WTF8JSONImpl5Value9asBooleanERb) +STUB( + "6FzbW6sUGgo", + _ZN7WebCore6JSNodeC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_4NodeENS6_13DumbPtrTraitsIS8_EEEE) +STUB("6G1JBcGU4cw", mono_shared_ptr_array_add) +STUB("6G21TZ477uY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEEcvbEv) +STUB( + "6G5AbU2+roc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEC1Ev) +STUB("6G5fpY0ODcA", _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse15getGroupingTypeEv) +STUB("6G6BrngbzRg", sceNpManagerIntSigninByJson) +STUB( + "6G6CvM7qVG0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEeqERKS9_) +STUB("6G9+4eIb+cY", sceNpTusGetMultiUserVariable) +STUB("6G9VLWCmQN4", sceNpSnsTwitchDialogGetResult) +STUB( + "6GEcYc1b9uk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEC1Ev) +STUB( + "6GG5IFre7kg", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13integer5IsSetEv) +STUB("6GKDdRCFx8c", sceNpTusSetThreadParam) +STUB( + "6GLgB6L3QIo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEEaSERSA_) +STUB( + "6GMNdAI9QUg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("6GN+N-5RaIc", OpenSSL_version) +STUB("6GNCV5aIMIY", + _ZN3sce7Toolkit2NP2V29Messaging7Request37DisplayReceivedGameDataMessagesDialogD1Ev) +STUB("6GQnc3pn74o", _ZN7WebCore9HTMLNames11resultsAttrE) +STUB("6GST59Tt47Y", GCC_except_table1) +STUB("6GTrLVlb4CU", _ZN8Gigacage11alignedFreeENS_4KindEPv) +STUB( + "6Gcgn7QgK0Q", + _ZN3sce2Np9CppWebApi14SessionManager2V122LocalizedStringFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_15LocalizedStringEEE) +STUB("6GmKgqTuk30", _ZN7WebCore11XPathResultD2Ev) +STUB( + "6GnkLg98AGQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEdeEv) +STUB("6Gqlv5KdTbU", sceFontCharacterRefersTextBack) +STUB( + "6GvXUqmDjDY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEEaSERSA_) +STUB("6Gwl39KKUEI", _getsockname) +STUB("6H-71OdrpXM", sceMsgDialogProgressBarSetMsg) +STUB("6H1iJI-0TRs", jpeg_fdct_islow) +STUB("6H2JzJIQdwE", _ZN3JSC8Debugger11unwindEventEPNS_9CallFrameE) +STUB( + "6H2hHFOXSPU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEneERKS9_) +STUB( + "6H4D9vum3t0", + _ZN3sce2Np9CppWebApi14SessionManager2V129PostPlayerSessionsRequestBody17setPlayerSessionsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_20RequestPlayerSessionEEEEE) +STUB( + "6H9HwHaDOrQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEmmEi) +STUB("6HNbayHPL7c", sceNetConfigUpInterfaceWithFlags) +STUB("6HSff9awO94", _ZNK7WebCore6Region9totalAreaEv) +STUB("6HSxFL6hcSU", _ZN12video_parser13cVideoMetaMP4C1EPNS_18cMp4FFLHndlManagerE) +STUB("6HTNYVhJ+KY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEC1ERKS7_) +STUB("6HTmRHoq1WY", JVM_IsInterrupted) +STUB("6HZNd7nhoLo", _ZN7WebCore17snapshotSelectionERNS_5FrameEj) +STUB( + "6HZpOqJsuXk", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V219WebApiErrorResponse8setErrorERKNS1_6Common12IntrusivePtrINS3_25WebApiErrorResponse_errorEEE) +STUB("6HaRzv379ew", _ZNK3sce3Xml3Dom4Node11isAvailableEv) +STUB( + "6HaVSrAFyKc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEmmEi) +STUB( + "6HancqNRLtI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "6Hh4ZRmzBjA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC2ERKSC_) +STUB( + "6Hhht0w+cGU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE10setContextEPNS2_10LibContextE) +STUB("6HiIx11fy5c", _ZN3WTF13emptyAtomDataE) +STUB("6HiQ+FuztZM", mono_counter_get_size) +STUB("6HmGJTn18mI", ScePsmMonoRuntimeResourceSetCallback) +STUB( + "6Hmt53dQWUg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("6HpE68bzX6M", sceKeyboardReadState) +STUB("6HsepncSjoU", _ZTVN7WebCore36ISOProtectionSystemSpecificHeaderBoxE) +STUB("6Ht+MYwoqxY", _ZN3sce7Toolkit2NP2V27Ranking7Request13GetUsersRanksD2Ev) +STUB("6HxGCg7U3fw", _ZN3sce7Toolkit2NP15AppSTLAllocatorItED2Ev) +STUB( + "6HzIZX8iEWA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEneERKS9_) +STUB("6HzMb6bZM6k", sceCesUtf8StrToIso2022Str) +STUB( + "6I+MtcWH-Fw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "6I2E2yM3utU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEC2EPS6_PNS2_10LibContextE) +STUB("6I2EFmcR4wM", _ZNSt9basic_iosIwSt11char_traitsIwEE5rdbufEPSt15basic_streambufIwS1_E) +STUB("6I334HGjpfU", WKBundleSetPrivateBrowsingEnabled) +STUB("6I5eD9q8C3I", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V19RatingApi21ParameterToPostRatingC1ERS5_) +STUB("6I7zkam1GeI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence8PresenceEE3setEv) +STUB("6IFQEEuM7Yg", WKBundlePageResetTrackedRepaints) +STUB("6II7YIgxbSU", glUniformMatrix4x2fv) +STUB("6IM2up2+a-A", fstatvfs) +STUB("6IMbpR7nTzA", sceGnmQueryResourceRegistrationUserMemoryRequirements) +STUB("6IZThsmEH7A", BN_CTX_start) +STUB("6IZtgWDHdGE", JVM_SetSockOpt) +STUB( + "6IdALlCCpd0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEE5resetEPS9_) +STUB( + "6IgMfESR02c", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE4sizeEv) +STUB("6IhBbKbOoL4", _ZN3sce7Toolkit2NP2V211UserProfile9NpProfile19MAX_SIZE_AVATAR_URLE) +STUB("6IhkDtvvtU0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE5beginEv) +STUB("6IjXJUy6ZnA", sceNpTrophy2GetGroupIcon) +STUB("6InnAoi1hRI", generic_trampoline_aot_p) +STUB( + "6IrGUnjTCag", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEC2Ev) +STUB( + "6Irzv8gdN3I", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo24getxPsnAtomicOperationIdEv) +STUB("6Ishswm5Ets", c21) +STUB("6IsuKpiTObA", mono_aot_I18N_Otherjit_code_end) +STUB( + "6ItgwPU9tF4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEneERKS9_) +STUB( + "6Itto9pqaus", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEEptEv) +STUB( + "6Itz1XouY+0", + _ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody15unsetMaxPlayersEv) +STUB( + "6IuUQB4H8ec", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE6resizeEj) +STUB("6IwA+eAhbFA", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V18PlatformEEdeEv) +STUB("6J0PLGaYl0Y", SSL_rngFun) +STUB( + "6J9XbOf7NSc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEC2EPS6_PNS2_10LibContextE) +STUB( + "6JBdYxOw+GI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEixEm) +STUB("6JFErPfBZ+U", _ZN3sce2Np9CppWebApi7Matches2V15ErrorC1EPNS1_6Common10LibContextE) +STUB("6JFMoOMzxoo", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_28NpSessionDetailedInformationEE3getEv) +STUB( + "6JG-utTWReQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "6JHRGTPLlv0", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUseraSERS5_) +STUB("6JSqNbiicHM", _ZN3sce7Toolkit2NP2V26Friend12Notification15BlocklistUpdate5resetEv) +STUB( + "6JUPbFEHlUE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEdeEv) +STUB("6JUqQUan7cM", WKOpenPanelParametersGetAllowsMultipleFiles) +STUB("6JWud4KoipU", _ZN7WebCore8SVGNames26strikethrough_positionAttrE) +STUB("6JcY5RDA4jY", sceLibcPafMspaceMallocUsableSize) +STUB( + "6JkS4DCy3bo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "6Jmv4owEFlc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEE11release_refEv) +STUB("6JnP3KTSV1M", + _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody23unsetUserCenteredAroundEv) +STUB("6Jy-q6ADWrg", sceVideoNativeExtEssential_Initialize) +STUB("6Jy73SRfG-o", sceVrTracker2Initialize) +STUB( + "6JzOw5TKvZE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEE6assignEPSA_PFvSC_EPNS2_10LibContextE) +STUB("6K0K0jUxAJI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEEixEm) +STUB( + "6K1cooU8mK4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE5emptyEv) +STUB( + "6K1g7+ztzAs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEC1EPNS2_10LibContextE) +STUB( + "6K5C90HV35c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEC1EPNS2_10LibContextE) +STUB( + "6KBOuSdfsZk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEC1EPS6_PNS2_10LibContextE) +STUB("6KOulgIBLEU", uplrules_open_67) +STUB("6KS1ap6Jtz0", _ZN7WebCore5Range10selectNodeERNS_4NodeE) +STUB( + "6KSgHL6tPuc", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi44ParameterToPatchGameSessionsSearchAttributesaSERS5_) +STUB("6KcHbwBESLA", AacsBusDecrypt) +STUB("6KdgxIStfjQ", _ZN9Inspector22InspectorDebuggerAgent8stepOverERN3WTF6StringE) +STUB("6KfaIVRy89o", _ZN3sce7Toolkit2NP2V29Messaging25GameDataMessageAttachment5resetEv) +STUB( + "6KhFGKetVYs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEixEm) +STUB("6Ki-NJYbs54", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEEC1Ev) +STUB("6KnlnJPgAjg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEC2ERS7_) +STUB( + "6KrTVLdsfmQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB( + "6KsrULdwYsc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEppEv) +STUB( + "6Kw6LDX8oLg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEE7add_refEv) +STUB( + "6Kz7lugVU-w", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE8capacityEv) +STUB( + "6L+sPydwX3o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE6resizeEj) +STUB("6L0-A5piudQ", sceVideoOutSysCursorDisable) +STUB( + "6L0rxyZAPWQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB("6L1WldwEDQs", + _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicket13isInitializedEv) +STUB("6L4hEdFOp8A", delegate_virtual_invoke_imt_m_8) +STUB( + "6L8QPnzOxQM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE7popBackEv) +STUB("6L90iL-CjWA", _ZN3WTF11ThreadGroupD2Ev) +STUB( + "6LBYfMy0tzY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE3endEv) +STUB( + "6LBZGKg8Oik", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE5emptyEv) +STUB("6LCn0yJSOo0", ENGINE_ctrl_cmd) +STUB( + "6LDkOHIpueE", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBodyC1EPNS1_6Common10LibContextE) +STUB( + "6LFvgDspKfI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEmmEi) +STUB("6LGRGSLdSdQ", FcPatternAddBool) +STUB( + "6LHKqmaGMHQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEppEi) +STUB("6LIE69MfTWE", _ZN7WebCore8SVGNames23patternContentUnitsAttrE) +STUB("6LMmL6eC7oo", ubrk_first_67) +STUB("6LW2Rb8R0CM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEE11release_refEv) +STUB("6LZj99zdTX8", T_CString_integerToString_67) +STUB("6Lg4BNleJWc", sceRemoteplayDisconnect) +STUB( + "6LjLZQePY74", + _ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime26InternalPropertyDescriptorEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE) +STUB("6LlwJ9+jg9E", _ZN12video_parser5vpcom6String5SplitEc) +STUB("6LmTCyxtXgo", WKPageRunJavaScriptAlertResultListenerCall) +STUB("6LmWhlFRLeM", mono_aot_Sce_Vsh_VideoEdit_Wrapperunbox_trampoline_addresses) +STUB( + "6LopWdH+BJE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB("6LrAQY0Ka4c", EVP_DigestUpdate) +STUB("6LrWMd22IeM", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEED2Ev) +STUB("6Lu9geO5TiA", sceNpTusAddAndGetVariableForCrossSaveVUserAsync) +STUB("6Lv5NxeQdlE", + _ZN7WebCore4Page23finalizeRenderingUpdateEN3WTF9OptionSetINS_28FinalizeRenderingUpdateFlagsEEE) +STUB("6LvU2UX265I", _ZN3JSC12iteratorStepEPNS_14JSGlobalObjectENS_15IterationRecordE) +STUB("6Lw60o5T9Ms", scePlayReadyBufferInit) +STUB("6M+7uiGXQoQ", JSWeakGetObject) +STUB("6M-U9KWX338", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEdeEv) +STUB("6M465x4P3FY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEEC2ERKS7_) +STUB("6M4g3C542KU", YGNodeStyleSetAspectRatio) +STUB( + "6M7H3uwGsb4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEC1Ev) +STUB("6MBAIH50vB4", _ZN3sce2Np9CppWebApi14SessionManager2V110FromMemberC1EPNS1_6Common10LibContextE) +STUB( + "6MFuYizQIKM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEED2Ev) +STUB( + "6MLse2zGCtc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEmmEi) +STUB("6MM7ng9P+18", CMAC_Final) +STUB("6MOP4-+mBzk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEEC1EPS5_PNS2_10LibContextE) +STUB( + "6MORSoGtTEY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE8pushBackERKS8_) +STUB("6MTe9GADvZs", sceGameRightGetLogoPngImage) +STUB("6MV3LG2T8hU", _ZN7WebCore24CachedResourceHandleBaseC2EPNS_14CachedResourceE) +STUB( + "6MbOrfuOBD4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEE3getEv) +STUB("6Mc2Xs7pI1I", sceUltQueueTryPush) +STUB("6MdlRs2aIlM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlotD2Ev) +STUB("6Me4hYsy3Kc", sceSocialScreenSetMode) +STUB( + "6MjTxdDC150", + _ZN3sce2Np9CppWebApi14SessionManager2V147PutPlayerSessionsNonPsnLeaderRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_40PutPlayerSessionsNonPsnLeaderRequestBodyEEE) +STUB("6MkPqt6aq4c", _ZN3sce2Np9CppWebApi10Activities2V114UserActivities8Activity10setMatchIdEPKc) +STUB( + "6Mkb1J6qZiI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("6MlW+h8WgQ8", _ZN3JSC7Symbols40promiseFieldReactionsOrResultPrivateNameE) +STUB("6Mls5JbQoR0", _ZN3sce7Toolkit2NP2V23TSS7TssData8deepCopyERKS4_) +STUB("6Mo6+u0BZeA", scePerfTracePmGetInfo) +STUB("6MojQ8uFHEI", sceNetInitParam) +STUB("6MpA7G+mF0c", mono_aot_Sce_Vsh_VideoServiceWrapperunbox_trampolines) +STUB("6MqjK7RyLvc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEEC2Ev) +STUB("6MqnXbffvVg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEptEv) +STUB("6MsEcKTsqds", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110PlayerTypeEEeqERKS7_) +STUB("6MuJ-vnDk6A", sceNpPushUnregisterNotificationCallback) +STUB("6MuMVeHVIA0", _ZN7WebCore11MediaPlayer19prepareForRenderingEv) +STUB("6N+DDsH05rc", _ZN7WebCore9HTMLNames16autocompleteAttrE) +STUB("6N5wsk+K4T4", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_19GetGameDataResponseEE17getAdditionalInfoEv) +STUB("6N78UxQEyPc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEE5resetEPS6_) +STUB("6NCOqr3cD74", _init_tls) +STUB("6NDxJ2FOwYc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEptEv) +STUB("6NH0xVj6p7M", _ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2Em) +STUB( + "6NIMdW+UIrM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEC2EPS8_) +STUB("6NKemP1XhgU", upvec_open_67) +STUB("6NKwdOawk54", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEEC2Ev) +STUB("6NTfTRcWSxs", _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V314MissingElementD1Ev) +STUB("6NTnFm2SmY4", mono_aot_Mono_Securityunbox_trampolines) +STUB("6NezXKGHglU", _ZN7WebCore6Editor4copyENS0_20FromMenuOrKeyBindingE) +STUB( + "6NidKRsAOqc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEcvbEv) +STUB( + "6NjdBSvc29o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "6NkYhpz8y-g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEED2Ev) +STUB( + "6Nl6Xrfc9Qk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEC2EPS8_) +STUB("6NlbpyIfUuY", _ZN3sce4Json5ArrayC2ERKS1_) +STUB("6Nx1hIQL9h8", sceNetGetRouteInfo) +STUB( + "6Nzs-sLxkSM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE5beginEv) +STUB("6O17MYprz3w", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEEdeEv) +STUB("6O38TxxjTvc", + _ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession6toJsonERNS_4Json5ValueEb) +STUB("6O7CSVJUKHo", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session7SessionEE19setCustomReturnCodeEi) +STUB("6O8EwYOgH9Y", getsockopt) +STUB( + "6OBUPw8DHd0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEE11release_refEv) +STUB("6OD-q4DoVyE", _ZN7WebCore10StyleColor13isSystemColorENS_10CSSValueIDE) +STUB( + "6OJnYcBlssM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEE7add_refEv) +STUB( + "6OSQTlDgUOs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEED1Ev) +STUB("6OYWLisfrB8", + _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewe) +STUB("6Oc0bLsIYe0", sceNetGetMacAddress) +STUB("6OdqxwePEgA", _ZN7WebCore11DisplayList10SetLineCapC1ENS_7LineCapE) +STUB("6OfeCf-u4bg", glGenFramebuffers) +STUB("6Ogwaprthfs", _ZN7WebCore16HTMLMediaElement25setVideoFullscreenStandbyEb) +STUB( + "6OlwkgTIh94", + _ZN9Inspector14InjectedScript14callFunctionOnERN3WTF6StringERKS2_S5_S5_bbRNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsIS9_EEEERb) +STUB( + "6OmCUsJwkTY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEC2Ev) +STUB("6OnmSnvjzPI", _ZN15AbstractStorage14YoutubeService13SearchStorageEv) +STUB("6Opw5OOI9WM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEC1EPS8_) +STUB( + "6OsQ+R+4pbo", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions19unsetacceptLanguageEv) +STUB( + "6Ox6o-KszW0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEEptEv) +STUB("6Oyyw5TWc4A", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEED2Ev) +STUB("6P+15JGEmX8", _ZN7WebCore24CoordinatedGraphicsLayer18purgeBackingStoresEv) +STUB("6P-xIACeryI", _ZN7WebCorelsERN3WTF10TextStreamENS_10ScrollTypeE) +STUB("6P04fQkPVec", WKContextRegisterURLSchemeAsSecure) +STUB( + "6P3otfKz0Ao", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "6P6ASvWxQ-E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEEC2ERKSA_) +STUB( + "6P8rfIUcd34", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEmmEi) +STUB( + "6P8utWRG8zc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEC1ERS7_) +STUB("6PADv578bD0", _ZN7WebCore11FrameLoader16detachFromParentEv) +STUB("6PAo+VpvWx8", _ZN3NTF6ThreadD2Ev) +STUB("6PBNpsgyaxw", sceRudpEnableInternalIOThread) +STUB("6PC91xJIol8", _ZN3sce7Toolkit2NP20GetPlayedWithRequestC2Ev) +STUB("6PEq4Zzkjrw", mono_btls_x509_lookup_mono_method) +STUB( + "6PGOZ6wxvkk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEEC2ERS9_) +STUB( + "6PIgp1OXdww", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEE11get_deleterEv) +STUB( + "6PJIccfp+Mw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEEptEv) +STUB("6PPm2rZiMcs", _ZN3WTF17StringPrintStream5resetEv) +STUB("6PYg8AhQmAY", _ZN7WebCore9HTMLNames10listingTagE) +STUB("6Pcmvzwjxcg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEED2Ev) +STUB( + "6PgIjSURWhY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEC1EPKS8_) +STUB( + "6PkEES4KcIQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEC1EPS6_PNS2_10LibContextE) +STUB("6Pl+Tx8TW2g", _ZN3sce3pss5orbis9framework21PsmMainThreadCallList6UpdateEv) +STUB( + "6PwsVbqA3oI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEptEv) +STUB("6Q1r39Py10Y", _ZN3sce2Np9CppWebApi6Common6VectorIfE5eraseENS2_8IteratorIfEERS6_) +STUB("6Q6FeIBP1uU", _ZN15AbstractStorage15FacebookContent6RemoveEv) +STUB( + "6Q7DrUdvrGA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSD_ESD_) +STUB("6QACBchOqcU", _ZN7WebCore8SVGNames13keyPointsAttrE) +STUB("6QCOea4SMrg", ulist_count_keyword_values) +STUB( + "6QL0WMBsvbs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEED1Ev) +STUB("6QL1C4uv4T0", _ZN7WebCore16FileReaderLoaderC2ENS0_8ReadTypeEPNS_22FileReaderLoaderClientE) +STUB("6QMIEsUp-Oo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEED1Ev) +STUB( + "6QNuLdT8-io", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE5emptyEv) +STUB("6QP1MzdFWhs", sceAudioInIsSharedDevice) +STUB("6QU40olMkOM", _ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE4_RepES3_wm) +STUB( + "6QUyVTOMOeg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEcvbEv) +STUB("6QVSHamAVJ0", mono_aot_Sce_Vsh_Np_Commonjit_code_start) +STUB("6QWMcGENlPE", _ZNK7WebCore8Document29originIdentifierForPasteboardEv) +STUB( + "6QYOW0bg4-8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB( + "6QaL31ldrAE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEeqERKS9_) +STUB( + "6QcY1pdQKSk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEE7add_refEv) +STUB("6Qe0KPUAzx8", _ZN25MmsFileUpdaterFsOperation8finalizeEv) +STUB( + "6QeVyxMbKgg", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetInteger2Ev) +STUB("6QfhFhAfeIo", EVP_DigestVerifyFinal) +STUB( + "6Qr35myuFWw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEppEi) +STUB( + "6QrESgw4BQw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEED2Ev) +STUB( + "6QxpjqM6kNM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("6R3EdBd+hL8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEaSERS7_) +STUB( + "6R5Z2lpGEPk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEE7get_refEv) +STUB( + "6RGkooTERsE", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERf) +STUB("6RQRpTn+-cc", _ZN3sce2np4CondD2Ev) +STUB("6RXuTZIVqIg", WKPageSetPageUIClient) +STUB("6Ra+NbLw5iU", _ZNK7WebCore19ProtectionSpaceBase10serverTypeEv) +STUB( + "6RcYiYj7CZk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEdeEv) +STUB("6RclvsKxr3I", sceHmdInternalDfuCheckAfterPvt) +STUB("6RdLdsNW3dY", sceDebugGetThreadInfo) +STUB( + "6RfyQt-LUDI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("6RiVl6twiZs", _ZN3JSC7Symbols24isProxyObjectPrivateNameE) +STUB( + "6RjmqszAe3Y", + _ZN7WebCore17LibWebRTCProvider16registerMDNSNameEN3PAL9SessionIDEmRKN3WTF6StringEONS3_17CompletionHandlerIFvONSt12experimental15fundamentals_v38expectedIS4_NS_17MDNSRegisterErrorEEEEEE) +STUB( + "6Rjx73SZVf0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEC2EPKS8_) +STUB( + "6Rm3cdKAhV8", + _ZN3sce7Toolkit2NP8Matching9Interface13createSessionEPKNS1_20CreateSessionRequestEPNS1_9Utilities6FutureINS1_18SessionInformationEEEb) +STUB( + "6Rp7eOq1c+g", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("6RxzKEvl31I", + _ZN7WebCore22EmptyFrameLoaderClient18dispatchCreatePageERKNS_16NavigationActionE) +STUB("6S0zsQ1cbTs", _ZN3JSC16CompleteSubspaceD0Ev) +STUB("6S2fV6tfkuM", _ZNK7WebCore22ScriptExecutionContext23domainForCachePartitionEv) +STUB( + "6S5VayJWCLQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEaSERKS9_) +STUB("6S5fu0bXJAQ", mono_aot_Sce_Vsh_SystemLoggerUtilWrappermethod_addresses) +STUB("6S5jsbm0i+k", mono_aot_Sce_Vsh_SystemLoggerWrapperunwind_info) +STUB("6S8jzWWGcWo", _ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED2Ev) +STUB("6SCDPuOjens", _ZN3sce2np14JsonNumberImplD0Ev) +STUB("6SDkzKp5bS0", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V13Mmr13perGenreIsSetEv) +STUB("6SE5pNTQhQ4", _ZN7WebCore12TextIteratorC1EPKNS_5RangeEt) +STUB("6SFD859+uLU", _ZN7WebCore4Page10pluginDataEv) +STUB("6SGVh1Sk2hI", _ZN3sce7Toolkit2NP2V210Tournament25OneVsOneTournamentDetails5resetEv) +STUB("6SKAMuUgdIg", _ZN9Inspector24NetworkBackendDispatcherD0Ev) +STUB( + "6SP2WnRKdgE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE8copyFromERKS9_) +STUB("6Sajlv-clVQ", WKBundleSetClient) +STUB("6SckwBNQpR4", + _ZN7WebCore18JSHTMLMediaElement14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB("6SjTRqhQ1iY", _ZN3sce7Toolkit2NP15AppSTLAllocatorItE8allocateEmPKv) +STUB( + "6SpQz7G5Auc", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsers35getxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB("6SvkVpal5k4", mono_metadata_type_equal) +STUB("6Svs7GQKWi8", _ZN7WebCore9GlyphPage7s_countE) +STUB( + "6Sz80t+Apz0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEEC2ERKSA_) +STUB( + "6T-6Zev-N1c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEmmEv) +STUB("6T773MR5QPI", AacsModuleStop) +STUB( + "6TD1ru5-4ko", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEixEm) +STUB("6TEl6BobGj8", sceApplicationSpawnDaemon) +STUB("6TEwaLqQl+A", unorm2_hasBoundaryAfter) +STUB("6THw24x30eg", _ZN7WebCore20ISOOriginalFormatBoxD0Ev) +STUB("6TIMpGvsrC4", _ZN3sce16CommonDialogUtil6ClientD1Ev) +STUB("6TIkwWdSsy0", _ZN7WebCore21JSTextTrackCueGeneric14finishCreationERN3JSC2VME) +STUB("6TLQ8mftRGA", + _ZN3sce2Np9CppWebApi7Matches2V120ReportResultsRequest8fromJsonERKNS_4Json5ValueE) +STUB("6TTRm8KRqbw", sceNpManagerIntClearTicket) +STUB( + "6TTqrWFq14A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("6Te6aB2x18k", Java_java_lang_StrictMath_sinh) +STUB( + "6Te7MrWaN8U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "6Thiq-dxKHU", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEiRNS2_10LibContextEPT_m) +STUB("6Tpo2doMNPY", T_CString_toLowerCase_67) +STUB("6Tsgcaoc-L0", GCC_except_table332) +STUB( + "6TtLQbvxvT8", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead19setLeaderPrivilegesERKNS1_6Common6VectorINS5_6StringEEE) +STUB("6Tv4AQY6Gss", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE6resizeEj) +STUB("6TwfEX58ZUY", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_26ActivityFeedCondensedStoryEEneERKS4_) +STUB("6TxzHeN5tro", + _ZNK3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform19getUsePlayerSessionEv) +STUB( + "6Ty4VGfK2yk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE5beginEv) +STUB( + "6U2A9QDu6sY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEE6assignEPS5_PFvS7_EPNS2_10LibContextE) +STUB("6UB2zZjzaDw", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce19ServiceEntitlementsEE3setEv) +STUB( + "6UERUmnXTlk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEE11get_deleterEv) +STUB("6UEembipgrM", sceNpSignalingDeactivateConnection) +STUB("6UHS1Lj-qYc", c15) +STUB("6ULAa0fq4jA", scePthreadRwlockInit) +STUB("6UXWnBRjOxM", _ZN12video_parser7cVpUtil13TimecodeToHMSEjjRiS1_S1_) +STUB("6UbbC7GA9MI", sceRnpsAppMgrBlockAppInstall) +STUB("6UcLOHdkVjo", sceGpuExceptionRemoveDebuggerHandler) +STUB("6UgtwV+0zb4", scePthreadCreate) +STUB("6Uiidbdwj4E", usearch_setAttribute_67) +STUB("6Ur0PoWQ2mc", _ZN3JSC10ConfigFile5parseEv) +STUB( + "6Us5g1aJSvU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE6resizeEj) +STUB("6UslIdcOKyI", _ZN3sce2Np9CppWebApi14IdentityMapper2V333PsnWebError_error_missingElementsD2Ev) +STUB( + "6UtgkvUu1SU", + _ZN15AbstractStorage14FacebookFolder10NewContentERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_7ContentEE) +STUB("6UxSV9SQiKI", Java_java_awt_GnmGraphics_clonePSD) +STUB("6UzEidRZwkg", sceAgcDriverSubmitMultiDcbs) +STUB("6V+FWaxwyEc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEEixEm) +STUB("6V+as96kvy4", _ZN7WebCore11DisplayList13StrokeEllipseC1ERKNS_9FloatRectE) +STUB("6V1F6Yvjivg", _ZN7WebCore6Editor18confirmCompositionERKN3WTF6StringE) +STUB( + "6V1Fjm8zfe4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEE3getEv) +STUB("6V1vy4M8Yb4", sceBgftServiceIntSetTaskVisible) +STUB("6V3JcMgN+qA", _ZN7WebCore8SVGNames11descentAttrE) +STUB( + "6VEfhCBIiDQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEE7get_refEv) +STUB( + "6VGEHtQCQI4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEptEv) +STUB("6VIC0pMsv30", _ZN3WTF24AutomaticThreadCondition7waitForERNS_4LockENS_7SecondsE) +STUB("6VJpFkVmh5g", _ZNK7WebCore11MediaPlayer19playerContentsScaleEv) +STUB("6VKz4WbRjBE", _ZN7WebCore9HTMLNames17aria_disabledAttrE) +STUB( + "6VMcLp042jA", + _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody18maxSpectatorsIsSetEv) +STUB("6Vf9WTLDoss", sceAudiodecClearContext) +STUB( + "6ViqJEpMCTI", + _ZN9Inspector20DOMBackendDispatcher11setNodeNameElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "6VkFzliw91s", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead14setMatchmakingERKNS1_6Common12IntrusivePtrINS3_18MatchmakingForReadEEE) +STUB("6Vn8UMEXjH8", _ZL29_sceLibcDeleteWithSizeNothrowPvmRKSt9nothrow_t) +STUB("6Voi0Jp1SqE", _ZN9Inspector18InspectorHeapAgentnaEm) +STUB("6VqdJAapsck", mono_conc_hashtable_remove) +STUB("6VrSv8tnlPk", utrie2_swap_67) +STUB( + "6VsYiTYxlkk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEEcvbEv) +STUB("6Vst7HqJMXU", _ZN3sce2np10MemoryFileD0Ev) +STUB("6VwVQ2QAMy4", _ZN4IPMI4impl11SessionImpl13getSessionKeyEv) +STUB("6W+ovJY9kVo", _ZN7WebCore15SQLiteStatementD2Ev) +STUB("6W31AZUFExA", __ratio_D2A) +STUB("6W3NYYHtY7c", _ZN3sce7Toolkit2NP27ChallengeGetItemListRequestC1Ev) +STUB("6WB4MjHfA0Y", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEE3getEv) +STUB( + "6WBCle7AwDc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEE5resetEPS6_) +STUB("6WDfHN9XuEI", _ZN3sce2Np9CppWebApi6Common17ParameterBaseImplD2Ev) +STUB("6WH7RBBXvNE", _ZN3sce3Xml3Dom8NodeListC1Ev) +STUB( + "6WI79RBZWeA", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V230FilterProfanityResponseFactory7destroyEPNS3_23FilterProfanityResponseE) +STUB("6WIt6evZD40", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEE7add_refEv) +STUB("6WLenADtOQk", nsnp_InitSession) +STUB("6WR6sFxcd40", _Atomic_store_2) +STUB("6WTgpKqUxRo", _ZN3sce2np4NpIdC1ERK7SceNpId) +STUB( + "6WU-DPPrc2E", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V128SetMultiVariablesRequestBody17setNpServiceLabelERKj) +STUB("6WUUBTvfOBk", _ZN4Manx13KeyboardEventC1ENS0_4TypeEibbbbb) +STUB("6WYrZgAyjuE", _ZTSN10__cxxabiv123__fundamental_type_infoE) +STUB("6WmPWDwSFtw", _ZN7WebCore14SecurityOrigin6createERKN3WTF6StringES4_St8optionalItE) +STUB( + "6Wn3LXPE4ww", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEplEm) +STUB("6WwFtNvnDag", __fixunsdfsi) +STUB( + "6X+Zf-emkhw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEC1EPS6_PNS2_10LibContextE) +STUB( + "6X2NqaL-jXo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEC1EPS8_) +STUB("6X6dp+07h4U", sceAudioOutExOpen) +STUB( + "6X99zTqWwWs", + _ZN3sce2Np9CppWebApi14SessionManager2V134GetGameSessionsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_27GetGameSessionsResponseBodyEEE) +STUB("6XG4B33N09g", sched_yield) +STUB("6XHAxarPCaA", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setMixerPanLR) +STUB("6XHK1fbKMOc", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_init) +STUB("6XKUKyq4z8g", delegate_virtual_invoke_imt_m_15) +STUB("6XP+Lw1Nby0", _ZNK3JSC7JSValue16toStringSlowCaseEPNS_14JSGlobalObjectEb) +STUB("6XXMjeTswAo", rgctx_fetch_trampoline_rgctx_78_p) +STUB( + "6XYwelGaeyQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE21intrusive_ptr_sub_refEPS9_) +STUB("6XcQYYO2YMY", _ZTSPs) +STUB("6Xe4q9CNivc", uhash_setKeyComparator_67) +STUB( + "6XfvvXLTzlc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE8copyFromERKS9_) +STUB( + "6XiNPQlR2ZA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEE3getEv) +STUB( + "6XnprvUIL2M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEEdeEv) +STUB("6Xo6esUCRpI", u_strToUTF8WithSub_67) +STUB( + "6XucuFvMCJQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEEaSERKSA_) +STUB( + "6Xv4OUcazNs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEEptEv) +STUB("6XyZfSDBsKs", scePerfTraceSpmRead) +STUB("6Xzg6OvgfW4", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V115NatConnectivity11globalIsSetEv) +STUB( + "6Y1nT3z-hG8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEED1Ev) +STUB("6Y3HHedGzlw", cairo_scaled_font_destroy) +STUB("6Y6iyj4BU1I", mono_aot_SMDiagnosticsjit_code_start) +STUB("6Y9jd3gG1tc", mono_is_debugger_attached) +STUB( + "6YAUB-e8bPw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEE7get_refEv) +STUB("6YCd7V18kVU", mono_log_write_syslog) +STUB( + "6YFch5EDwBI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "6YFlH6t1MRI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEppEi) +STUB( + "6YFt+9jW4UE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEED2Ev) +STUB("6YKBRzFhGdA", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_17ActivityFeedStoryEE10deallocateEPS3_m) +STUB( + "6YKjyWz6dd4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEEptEv) +STUB( + "6YP0xGLc2nE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEED2Ev) +STUB( + "6YRB0JBG694", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEC1EPS8_) +STUB("6YRHhh5mHCs", sceGnmRequestFlipAndSubmitDoneForWorkload) +STUB( + "6YStHdktHws", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEptEv) +STUB("6YVGH1ffjY8", printCommInfo) +STUB( + "6Ya3wfyLKw0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("6Ybp0kViMvU", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEEC2Ev) +STUB("6YlaN3ZykV4", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku10priceIsSetEv) +STUB("6YmI7Xbaw8I", _ZN7WebCore8SVGNames21dominant_baselineAttrE) +STUB("6YolmssnkX0", wcstodg) +STUB("6Ypng7+83nc", mono_aot_System_ComponentModel_Compositionplt_end) +STUB( + "6YsXiCAAp+s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("6Z+fdt4pe2s", _ZN9Inspector15AsyncStackTraceD1Ev) +STUB("6Z-n6acrhTs", CERT_CompSubjectCommonName2) +STUB("6Z-zM-XE9Ic", _ZNK3sce2np14JsonObjectImpl15fieldSetFreeAllEPNS1_8FieldSetE) +STUB( + "6Z4iqsm2NT8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEC1EPKS8_) +STUB("6Z7V+FlXSE8", WKBundleNodeHandleGetHTMLInputElementLastAutoFillButtonType) +STUB("6Z83sYWFlA8", _exit) +STUB("6Z9hW3VMhXs", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE7popBackEv) +STUB("6ZA8tOr6XCc", _ZN3sce7Toolkit2NP2V24Core7Request17ExternalAllocatorD2Ev) +STUB("6ZDv6ZusiFg", _ZNSiD0Ev) +STUB( + "6ZF5qZfpcws", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEppEi) +STUB("6ZG4asYB-+M", _ZThn16_N9Inspector18InspectorHeapAgentD0Ev) +STUB("6ZGCXOAgLDE", UCNV_TO_U_CALLBACK_SKIP_67) +STUB( + "6ZIHSfb4JR8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE7reserveEi) +STUB("6ZIjQAWKeRs", ucnv_fromUnicode) +STUB( + "6ZIvrs5tcgo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("6ZKNilLPknk", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_18SessionInformationEED1Ev) +STUB("6ZKYLDnP6h8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEEaSERS7_) +STUB("6ZKsmn9DS0Y", _ZN3sce7Toolkit2NP2V23TUS7Request7SetDataD1Ev) +STUB( + "6ZLWXIRBFuI", + _ZN3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBody10getPlayersEv) +STUB("6ZPdNlyUd9A", _ZN3sce7Toolkit2NP2V23TUS7TusDataD2Ev) +STUB("6ZQ4kfhM37c", sceUserServiceGetGlsBroadcastUiLayout) +STUB("6ZQ64IUQsOA", _ZN7WebCore12ISOWebVTTCueaSERKS0_) +STUB("6ZQXcSKKjyo", sceSlimglCompositorFlush) +STUB("6ZSbpM8An44", mono_aot_Sce_Vsh_DbRecoveryUtilityWrapperplt) +STUB( + "6ZXNhFVJqy4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE4sizeEv) +STUB("6ZXtFYaM5Os", _ZN9Inspector27DOMBackendDispatcherHandlerC2ERKS0_) +STUB("6ZY8KhdoMzA", _ZN3JSC7Symbols21onRejectedPrivateNameE) +STUB("6ZZXWwD6FyI", JSStringGetLength) +STUB("6ZbQK2Mb7Eg", udat_isLenient_67) +STUB("6ZjTW1uImXg", _ZN7WebCore20previousWordPositionERKNS_15VisiblePositionE) +STUB( + "6ZjgIfHsdsM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEC1Ev) +STUB("6ZkjKg8bCCA", _ZN8meta_gen13JpegRetriever14ProcessSOFDataEi) +STUB("6Zl5wWwDtik", _ZNK3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap14isCurrentIsSetEv) +STUB("6Zl8YABX-mc", _ZN3JSC6RegExp12dumpToStreamEPKNS_6JSCellERN3WTF11PrintStreamE) +STUB("6Zn-n1+filM", _ZNK7WebCore14DocumentLoader21archiveResourceForURLERKNS_3URLE) +STUB("6ZoLlhh15CA", + _ZN7WebCore26MessagePortChannelRegistry19didCloseMessagePortERKNS_21MessagePortIdentifierE) +STUB("6ZpRm5zh0J4", mono_aot_Sce_Vsh_Np_Commonunbox_trampolines) +STUB("6ZwgBEs9MBM", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Error14getReferenceIdEv) +STUB("6a0N6GPD7RM", sceHttp2SetCookieMaxSize) +STUB("6a1KgkULyqs", _ZN7bmalloc11IsoTLSEntrynwEmPv) +STUB("6a1p3QgXvo0", FT_Stream_ReadUShort) +STUB( + "6a8csGB2D6k", + _ZN7WebCore11JSDOMWindow17defineOwnPropertyEPN3JSC8JSObjectEPNS1_9ExecStateENS1_12PropertyNameERKNS1_18PropertyDescriptorEb) +STUB("6aANndpS0Wo", sceMouseSetProcessPrivilege) +STUB("6aB3RsJzBWE", _ZTVN7WebCore26ISOProtectionSchemeInfoBoxE) +STUB("6aDXSO9Aic0", _ZNK3sce2np9JsonValue5CloneEP14SceNpAllocator) +STUB("6aE-u6oI86Q", _ZNK3JSC25JSInternalPromiseDeferred7promiseEv) +STUB("6aEXAPYpaEA", _CWcsxfrm) +STUB("6aEkwkEOGRg", _ZN10__cxxabiv120__si_class_type_infoD1Ev) +STUB( + "6aF5bCS2viU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("6aFwTNpqTP8", _ZNKSt7_MpunctIcE16do_thousands_sepEv) +STUB("6aHLe+p7amI", _ZN7WebCore15AsyncFileStreamC1ERNS_16FileStreamClientE) +STUB("6aKYLBS8Di8", _ZN3sce2np3ipc10IpmiClientC1Ev) +STUB( + "6aMEeGhJ3hY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEeqERKS9_) +STUB( + "6aV5q4cm0CM", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEEC1Ev) +STUB("6aXmCP6s7LM", _ZN3sce7Toolkit2NP2V26Friend7FriendsC1Ev) +STUB("6ac0lJj26Q8", + _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku17setAnnotationNameERKNS3_10AnnotationE) +STUB("6ad8er4wBPw", _ZN3JSC18ErrorHandlingScopeD1Ev) +STUB("6adrFGe2cpU", sceNpWaitSema) +STUB( + "6agIfkmUQU0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEC2EPS6_PNS2_10LibContextE) +STUB("6ah1fimhTeo", _ZN7WebCore6JSFile15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "6ahgTYgo898", + _ZN9Inspector24NetworkBackendDispatcherC2ERNS_17BackendDispatcherEPNS_31NetworkBackendDispatcherHandlerE) +STUB("6aiAMnlT0wA", _ZN7WebCore15XPathExpression8evaluateEPNS_4NodeEtPNS_11XPathResultE) +STUB("6aj8UF-RB9o", YGNodeStyleSetPositionType) +STUB("6ajQEiaMYXw", _ZN7WebCore21NetworkStorageSession17domCookiesForHostERKN3WTF6StringE) +STUB( + "6aoPP29q-SM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEEC2Ev) +STUB("6avZJUSaBhc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEEC2Ev) +STUB("6azovDgjxt0", _ZTSPKj) +STUB("6b+qT-deAg0", mono_aot_System_ServiceModel_Webunwind_info) +STUB( + "6b-Bstxi7ZQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEE7get_refEv) +STUB("6b-RkK-dpw0", _ZN3sce2Np9CppWebApi14SessionManager2V118LeaderWithOnlineId12setAccountIdERKm) +STUB("6b1uHtKrbEo", WKDownloadGetID) +STUB("6b3KIjPD33k", _ZNSt6locale7_LocimpC1Eb) +STUB("6b5l07favPU", _ZN3sce2Np9CppWebApi6Common13ParameterBaseC2Ev) +STUB( + "6b5uwMKoDBc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEED1Ev) +STUB( + "6b6LHNBplZ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "6b8QnNW7+Vw", + _ZN3JSC16CompleteSubspaceC2EN3WTF7CStringERNS_4HeapEPNS_12HeapCellTypeEPNS_22AlignedMemoryAllocatorE) +STUB("6b8nZuvZxpQ", sceVnaRequestTts) +STUB("6bAOTzmhclg", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEEdeEv) +STUB("6bEWRPgH4hY", _ZTSPn) +STUB("6bJFALRs0l8", _ZN9Inspector21HeapBackendDispatcherD2Ev) +STUB( + "6bJNuejWU+4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot10unsetgroupEv) +STUB("6bNZBfoPZwc", _ZN3sce2Np9CppWebApi11UserProfile2V113BasicPresence12setAccountIdERKm) +STUB("6bQ+RwgiJMo", _ZN3sce2Np9CppWebApi6Common8IteratorIlEmmEv) +STUB("6bRANWNYID0", llrintl) +STUB( + "6bUyQkfe5GU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEC1EPS8_) +STUB("6bUz43Wi17E", _ZN25MmsFileUpdaterFsOperation9FreeLargeEPv) +STUB("6bYsRATI3tQ", _ZN3sce2np9HttpTrans16SetRequestHeaderEPKcS3_) +STUB( + "6bcTm3eLQcI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEplEm) +STUB( + "6bfvRBEB7X8", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities33GetUsersActivitiesResponseFactory7destroyEPNS4_26GetUsersActivitiesResponseE) +STUB("6biw1XHTSqQ", sceHmdClose) +STUB( + "6blg22mfvBY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEED1Ev) +STUB("6bsWjotUa1Q", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getSecondaryVideoStream) +STUB("6btC4FjXNfM", _ZN3sce7Toolkit2NP2V27Session7Request32DisplayReceivedInvitationsDialogC1Ev) +STUB( + "6buaYAwmd-Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEdeEv) +STUB("6bvqnBIINiY", sceNpAsmClientGetGameTitleBanInfo) +STUB("6bwFkosYRQg", sceNpAuthCreateRequest) +STUB( + "6bwlFahMvmg", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V136GetMultiVariablesResponseBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_29GetMultiVariablesResponseBodyEEE) +STUB("6bz2PYEIwV4", rgctx_fetch_trampoline_rgctx_23) +STUB("6bz32V2i7zQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEEC1EPNS2_10LibContextE) +STUB("6bz4VVSSFyg", sceCompositorCommandGpuPerfBegin) +STUB("6c2zGtThFww", sceGameLiveStreamingClearSpoilerTag) +STUB("6c3rCVE-fTU", _open) +STUB( + "6c6sKF4W0-U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEppEv) +STUB("6cBZ2UaxePg", _ZN7WebCore24CoordinatedGraphicsLayerD2Ev) +STUB( + "6cI-d3pVnyg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEC1Ev) +STUB("6cO1aKnHM64", _ZN3WTF13printInternalERNS_11PrintStreamENS_9ClockTypeE) +STUB( + "6cORpD1DvtM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("6cT5NumzIbU", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12RangeOfRanksEE12deepCopyFromERS7_) +STUB( + "6cZoyci7-wg", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setBoolean6ERKb) +STUB( + "6cbxzqSLXVU", + _ZN7WebCore14FrameSelection16setSelectedRangeERKN3WTF8OptionalINS_11SimpleRangeEEENS_9EAffinityENS0_17ShouldCloseTypingENS_14EUserTriggeredE) +STUB("6cfcRTPD2zU", _ZTSPl) +STUB( + "6cge7wMzE1c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEC1Ev) +STUB("6cl3cz+XiLI", _ZN3JSC7Symbols30forceFulfillPromisePrivateNameE) +STUB("6cnsYxwMAQs", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEEC1Ev) +STUB( + "6crYZJAd7ZA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEE7add_refEv) +STUB( + "6cuIqDibk7U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE8capacityEv) +STUB("6cxt2rJQec0", _ZN7WebCore23ScaleTransformOperationD0Ev) +STUB("6cyQuEEF7d4", _ZN3sce7Toolkit2NP25PostInvitationDataRequestC1Ev) +STUB("6d-bWUDuz9U", scePerfTraceIoControllerStop) +STUB("6d4vj7bZQVo", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEEC1Ev) +STUB("6d5h3ZgzNmA", _ZN4Manx15ProcessLauncher6launchEPKcPiS3_) +STUB("6dHgysQUfVc", _ZNK7WebCore20ResourceResponseBase7expiresEv) +STUB( + "6dISWR98yKc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEE11get_deleterEv) +STUB( + "6dPQke5mcyM", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_20NpSessionInformationENS1_15AppSTLAllocatorIS5_EEEED2Ev) +STUB( + "6dR1uN4KLIo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEdeEv) +STUB("6dTcoLYk5Pg", _ZN7WebCore8SVGNames16kernelMatrixAttrE) +STUB("6dUxyl-M50g", sceShellCoreUtilStartRebootTimer) +STUB("6dY37WakYAo", _ZN3sce16CommonDialogUtil6ServerC2EPKcmmis) +STUB("6dcE0XpW2o8", _ZN3sce7Toolkit2NP2V27Session7Request6Search15MAX_INDEX_VALUEE) +STUB("6ddOFPDvuCo", _ZTISt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE) +STUB("6ddv18bf7H8", + _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse20setMatchEndTimestampEPKc) +STUB("6dfDreosXGY", sceUserServiceGetNpAccountId) +STUB("6dfJTRn5w0Q", _ZN3sce2Np9CppWebApi6Common6VectorImED1Ev) +STUB("6dhVu-SHjHI", Hide) +STUB("6dlDe+C9aGk", WKPreferencesSetCSSOMViewScrollingAPIEnabled) +STUB("6dnqmpbSP98", _ZN7WebCore16ScriptController13jsWindowProxyERNS_15DOMWrapperWorldE) +STUB("6dtqiBKeAlk", rgctx_fetch_trampoline_mrgctx_38) +STUB("6e+7KGBjV9o", + _ZN3sce2Np9CppWebApi14SessionManager2V125ResponseGameSessionPlayer8fromJsonERKNS_4Json5ValueE) +STUB( + "6e2IUSzTSk4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEC1EPNS2_10LibContextE) +STUB( + "6e4sxxtt3qM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "6e4yRTLSGLo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEC2Ev) +STUB("6e64qI81ak8", glTexParameteriv) +STUB("6eATaUH-V4Q", _ZN9Inspector31NetworkBackendDispatcherHandlerD0Ev) +STUB( + "6eCUNqWHS+M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEC1EPNS2_10LibContextE) +STUB("6eEiDgUsIPw", sceAc3EncIsEncoding) +STUB("6eG09MAOjGo", rgctx_fetch_trampoline_mrgctx_67) +STUB("6eLKwIEjXzA", uprv_deleteUObject_67) +STUB( + "6eNHqStx1U0", + _ZN7WebCore18TextureMapperLayer29setAnimatedBackingStoreClientEPN7Nicosia26AnimatedBackingStoreClientE) +STUB("6ePLnfc4Qgo", _ZN7WebCore19ProtectionSpaceBase7compareERKNS_15ProtectionSpaceES3_) +STUB( + "6eSrTy4kvBI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEC2EPS6_PNS2_10LibContextE) +STUB("6eU9xX9oEdQ", mbtowc) +STUB("6eWqhVnss2E", _ZN3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer12setAccountIdERKm) +STUB("6eYydzyEZxA", _ZN7WebCore12ChromeClient50testIncomingSyncIPCMessageWhileWaitingForSyncReplyEv) +STUB( + "6ebRgRIXw9U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEC1ERKS7_) +STUB( + "6ebVmvjfoI8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE5clearEv) +STUB("6ebqMkrKndk", WKPreferencesSetTextAutosizingUsesIdempotentMode) +STUB("6ee9Hd3EWXQ", sceAgcDcbDrawIndexGetSize) +STUB("6ef2v7j6sCU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEdeEv) +STUB("6ef4cYC04DM", + _ZN3WTF20ParallelHelperClientC2ENS_6RefPtrINS_18ParallelHelperPoolENS_13DumbPtrTraitsIS2_EEEE) +STUB("6egMCsaFSUE", Java_java_lang_System_mapLibraryName) +STUB("6eh9QGpaRWw", dynlib_get_obj_member) +STUB("6ei1eQn2WIc", _FDsign) +STUB("6ems2EAHiJs", _ZNK3WTF13MonotonicTime19approximateWallTimeEv) +STUB( + "6en0fkQoGI4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEmmEv) +STUB("6eoxFFSEuoY", IsDebuggingSupported) +STUB("6epPZ2UYJTk", _ZN7WebCore10ScrollView21setExposedContentRectERKNS_9FloatRectE) +STUB("6eqGWHOTSPc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEEC1ERKS7_) +STUB("6esKXS17kNM", _ZN3sce7Toolkit2NP2V211UserProfile7Request13GetNpProfilesD1Ev) +STUB("6f0LylaXd7o", _ZNK7WebCore11HistoryItem28shouldOpenExternalURLsPolicyEv) +STUB("6f5f-qx4ucA", wcscpy_s) +STUB("6fH0zZf54hU", Java_com_sony_bdjstack_ti_Database_getCurrentPlayListTable) +STUB("6fIC3XKt2k0", sceMsgDialogUpdateStatus) +STUB( + "6fIW5HGIGz0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("6fQrPeC0Y8E", mono_thread_set_tls_offset) +STUB("6fVkWvWlrjA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEE5resetEPS6_) +STUB( + "6fWg1Azksqs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEC1Ev) +STUB("6fetXFxzXm0", _ZN12video_parser13cVideoMetaVWGD1Ev) +STUB("6fjpoeCJVmg", _ZN3JSC11SymbolTableC2ERNS_2VME) +STUB("6fk1eYHHIyY", u_file_read_67) +STUB("6fomUWNk6Xc", _ZN3sce2np8HttpFileD1Ev) +STUB("6fqUs7onElA", _ZN3sce7Toolkit2NP2V23TUS25AtomicAddToAndGetVariableD2Ev) +STUB("6fqpu9wjD2g", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V113MmrProperties9getRatingEv) +STUB( + "6fwKnXym170", + _ZN7WebCore23AuthenticationChallengeC1ERKNS_15ProtectionSpaceERKNS_10CredentialEjRKNS_16ResourceResponseERKNS_13ResourceErrorE) +STUB("6fxExrea6+4", EVP_CIPHER_CTX_set_flags) +STUB("6fxZHeuNhIA", sceOpusCeltDecDecode) +STUB( + "6fyqnbAjDRE", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivitiesaSERS6_) +STUB("6g-lsIudFQY", _ZN15AbstractStorage14MemfileContentD1Ev) +STUB( + "6g0AWKQxzcQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEC2Ev) +STUB( + "6g0U40Z6AVo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE5beginEv) +STUB( + "6g3XDYgwptc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "6g4VzhRszHk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("6g6q-g1i4XU", sceNpWebApiSetHandleTimeout) +STUB("6g8aRptom6Y", WKUserContentExtensionStoreCompile) +STUB("6gAc64mQLH8", Java_java_net_PlainDatagramSocketImpl_getTTL) +STUB("6gAhNHCNHxY", _ZTVSt7_MpunctIcE) +STUB( + "6gBvZEOI9hM", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody14setCustomData2EPKvm) +STUB("6gCBQs1mIi4", _ZNSt8messagesIcEC1Em) +STUB( + "6gGrhIi04EY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEC1ERS7_) +STUB("6gJUdmk1iYA", + _ZN7WebCore12ChromeClient39shouldReplaceWithGeneratedFileForUploadERKN3WTF6StringERS2_) +STUB( + "6gJfayUw71I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("6gMiKfIw270", _ZN9Inspector15ScriptCallStackC1Ev) +STUB("6gOfuHe419U", sceMatNewFrame) +STUB( + "6gQ-LLahUW4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUserC1ERS5_) +STUB("6gT5JU72smg", sceTsReleaseBuffer) +STUB( + "6gUq1c0w2kw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE8pushBackERKS8_) +STUB("6gVoKmSa+Gw", sceVideoCoreMediaSourceGetInputBufferEmptySize) +STUB( + "6gXlAq9wHUA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEE7add_refEv) +STUB("6gYjd50q0CE", _sceUltQueueDataResourcePoolOptParamInitialize) +STUB( + "6gZRpJoPHU4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEppEv) +STUB("6gapC-97PpU", scePsmUtilGetPsmIniFile) +STUB("6gc1Q7uu244", __mulvti3) +STUB( + "6gcKtkkNcTQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("6gfzYHkeL1k", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEEC2ERKS6_) +STUB("6glQ8kD-GTc", _ZN7WebCore6ISOBox4readERN3JSC8DataViewERj) +STUB("6grFSpPJQ1w", _ZN7WebCore5Range18selectNodeContentsERNS_4NodeE) +STUB("6gtXj9F99b8", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetString10Ev) +STUB("6gtqLPVTdJY", sceSystemStateMgrWakeUp) +STUB("6gtqvuAs33c", + _ZNK3sce2Np9CppWebApi14SessionManager2V127GetGameSessionsResponseBody6toJsonERNS_4Json5ValueEb) +STUB( + "6gvV1q4oN+o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEEaSERSA_) +STUB("6gvVMVMBGnU", _ZN12video_parser18cMp4FFLHndlManager14getFF4ElstHndlEj) +STUB( + "6gwofFOXUz8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "6gx54bswMNY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEEptEv) +STUB("6gyx-I0Oob4", sceHttpDbgGetConnectionStat) +STUB( + "6h0ShMUKIbU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEC1Ev) +STUB("6h1bExZI-tE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEdeEv) +STUB("6h4Y5m0Wmss", mono_aot_System_Collectionsmethod_addresses) +STUB("6h6qrJ54uYI", mono_aot_Sce_Vsh_Orbis_ContentManagerplt_end) +STUB("6h94BuC6RWk", _ZN7WebCore6Path2D6createEv) +STUB("6hB-uhkd0Fg", _ZN3NTF21ResourceRequestLogger9AdminPageC2EPKc) +STUB("6hE9xEWbm-M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEC1Ev) +STUB("6hSAbrbC3sE", _ZN3sce3pss5orbis9framework12PsmFramework8FinalizeEv) +STUB( + "6hT89Tg8yLM", + _ZN7WebCore21JSCSSStyleDeclaration19getOwnPropertyNamesEPN3JSC8JSObjectEPNS1_9ExecStateERNS1_17PropertyNameArrayENS1_15EnumerationModeE) +STUB("6hUKoSNxGHM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking8TempRankEED1Ev) +STUB( + "6hUNUqaCyXY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEE6assignEPS5_PFvS7_EPNS2_10LibContextE) +STUB("6hV3y21d59k", _ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED2Ev) +STUB("6hVdubrwqc4", _ZN3JSC7Symbols22internalAllPrivateNameE) +STUB("6hbai6KIXkk", sceAmprAmmMeasureAmmCommandSizeMap) +STUB("6hd30WWn0Fo", + _ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody19unsetNpServiceLabelEv) +STUB("6hdfGRKHefs", sceLibcPafMspaceCreate) +STUB("6hfyVLzdy9I", WKPreferencesSetShouldDisplaySubtitles) +STUB("6hhCUQPCbWc", _ZTVN15AbstractStorage12LocalServiceE) +STUB("6hlAoEaRNmI", sceShareUtilityAdvanceFromFileWithContentIdList) +STUB("6hnjdHQRIjg", _ZNK7WebCore12ISOWebVTTCue8settingsEv) +STUB( + "6hpwfO+hnyU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("6hsTsLiKEl4", mono_aot_Sce_PlayStation_Jsonplt) +STUB("6htjEH2Gi-w", _ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1Em) +STUB("6hvkAQuPiTc", _ZN7WebCore24CoordinatedGraphicsLayer16resumeAnimationsEv) +STUB("6hxfaJWadRA", Java_com_sony_bdjstack_ti_Database_init) +STUB("6i00BlGDSV4", WKContextConfigurationAlwaysKeepAndReuseSwappedProcesses) +STUB("6i0wQ7VpTSg", sceAvSettingGetMorpheusPuStatus) +STUB("6i18OJSvFWk", _ZN3sce4Json17InitParameterRttiC1EPNS0_14AllocParamRttiEPvm) +STUB("6i2sRJHmTbA", _ZNK7WebCore6JSNode8nodeTypeERN3JSC9ExecStateE) +STUB("6i3NZOqWDPQ", _ZN7WebCore6RegionD2Ev) +STUB("6i5aLrxRhG0", __inet_ntoa) +STUB("6i6VdLXP5Vk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V115SearchAttributeEEC2EPS6_) +STUB( + "6i9ua9zzTXs", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEEiRNS2_10LibContextEPT_m) +STUB( + "6iAhwmHrW1g", + _ZN7WebCore18PlatformTimeRangesC1EON3WTF6VectorINS0_5RangeELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("6iDi6e2e4x8", + _ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE7_GetcatEPPKNSt6locale5facetEPKS5_) +STUB( + "6iOVsWZn+3M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEEdeEv) +STUB("6iT-G1g0qt8", _ZN3JSC15JSScriptFetcher6s_infoE) +STUB( + "6iTRVBzIbD4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEED2Ev) +STUB("6iTzJRMsnkw", _ZNK7WebCore12RenderObject16repaintRectangleERKNS_10LayoutRectEb) +STUB("6idnz2oz05E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119SubtaskAvailabilityEEaSERKS7_) +STUB("6ifqKpxhUOM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge18ChallengeThumbnailEE3setEv) +STUB("6ighL5HiBY4", uset_containsNone_67) +STUB( + "6ij6YW-3Q1Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEmmEv) +STUB( + "6ilpNt50O1w", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE17getResponseHeaderERSB_) +STUB( + "6injZSzPkG4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEC2EPNS2_10LibContextE) +STUB( + "6ioCFoFXk0E", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("6irU4d1Gl3c", sceBgftServiceIntDownloadUnregisterTask) +STUB("6ivguIfmmS8", cpp_demangle_push_type_qualifier) +STUB("6j-ogt5bZCo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEdeEv) +STUB( + "6j0u2YA1M5A", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("6j48Q9Te2Po", + _ZN7WebCore11WindowProxy40createJSWindowProxyWithInitializedScriptERNS_15DOMWrapperWorldE) +STUB( + "6j5ol6kMp10", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEEptEv) +STUB("6j8lgZFObVo", _ZN23sceMetadataReaderWriter8MetadataD1Ev) +STUB( + "6j8tLvv9Cp4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("6jAtbdWXPBw", WKPreferencesGetMediaDevicesEnabled) +STUB("6jFWpAfqAcc", sceNpCreateEventFlag) +STUB( + "6jGGSglWBlo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("6jHOZ6fItFU", _ZN3sce2npeqERK12SceNpTitleIdRKNS0_9NpTitleIdE) +STUB( + "6jJrvFEEq7o", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("6jLL5BIZ88U", sceAmprMeasureCommandSizeWaitOnCounter) +STUB("6jMCcCJazV4", ucol_nextSortKeyPart_67) +STUB( + "6jMR9zHqcWg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEC2Ev) +STUB( + "6jNEPd-bAQI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("6jPYBCGQgiQ", sceUserServiceSetParentalBrowser) +STUB( + "6jRlsMJb-z0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEE7add_refEv) +STUB("6jT7mMKftVY", + _ZN3sce2Np9CppWebApi14SessionManager2V127ResponsePlayerSessionPlayer11setPlatformEPKc) +STUB("6jTNxzXckKU", sceFiosFileGetSize) +STUB("6jTdIXHSF4E", _ZN9Inspector19InspectorAuditAgentD2Ev) +STUB("6jUfpgzO2J0", sceAudioInSetNoiseGateThreshold) +STUB("6jW8ZQfOOxo", _ZN3sce7Toolkit2NP2V210Tournament7Request8GetEventC1Ev) +STUB("6jXcZuxLnX4", _ZN7WebCore6FourCC10fromStringERKN3WTF6StringE) +STUB("6jZLakbLGTI", _ZN3WTF6String6removeEjj) +STUB("6jdNCEi6cFI", + _ZNK3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse19previousOffsetIsSetEv) +STUB("6jj29MbyzuI", sysKernelGetManufacturingMode) +STUB("6jkxaKVf01A", WKPreferencesSetQTKitEnabled) +STUB( + "6jlFAPd4jGY", + _ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayerC1EPNS1_6Common10LibContextE) +STUB( + "6jm++Ivr06Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE8pushBackERKS6_) +STUB( + "6jmdimtVM8M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEEcvbEv) +STUB("6jpZY0WUwLM", sceSystemServiceKillLocalProcess) +STUB("6jrPmOnwskw", GCC_except_table136) +STUB("6juxMrBmDBU", _ZN3sce2np18HttpConnectionPool18SetConnectionErrorEii) +STUB("6jxmRAS4nQ0", _ZN7WebCore24CachedResourceHandleBaseC1EPNS_14CachedResourceE) +STUB( + "6jzXSIvg7EQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEE7get_refEv) +STUB( + "6jztgmozVEI", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessions9terminateEv) +STUB( + "6k+O8FI-P9M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEEcvbEv) +STUB( + "6k-Kyr9rSqs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEppEi) +STUB("6k0X7NGUGkw", + _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession18unsetMaxSpectatorsEv) +STUB( + "6k1CG5aK5lI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("6k2J3Q6Ybb8", _ZN7WebCore7JSRange9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "6k2mne6Z8ms", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE4sizeEv) +STUB("6kEVUeU2EL8", _ZN3WTF10StringImpl18simplifyWhiteSpaceEv) +STUB("6kHBllapJas", sceHmdInternalResetInertialSensor) +STUB("6kL-6MlnOos", _ZN3WTF17languageDidChangeEv) +STUB("6kO8OVYUL7U", _ZN3JSC18PropertyDescriptor15setConfigurableEb) +STUB( + "6kOOezZ8400", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEC1EPS7_PFvS9_EPNS2_10LibContextE) +STUB("6kPnj51T62Y", sceVideoOutGetResolutionStatus) +STUB( + "6kSgIacvArw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEC1Ev) +STUB("6kSz7BOrmC4", uloc_openAvailableByType) +STUB( + "6kWoGfo1Fq4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC2ERSA_) +STUB("6kc6BCMppHE", JSStringGetCharactersPtr) +STUB("6kdiTAwx4+A", _ZNK7WebCore12TextEncoding6decodeEPKcmbRb) +STUB("6keY+aKvyBE", vzone_getLastModified_67) +STUB( + "6klkN8eMtaI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEE11release_refEv) +STUB("6kqwdAZEv98", mono_shared_hashtable_size) +STUB( + "6kr44xgsuW0", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api15listUserTicketsEiRKNS4_26ParameterToListUserTicketsERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_27ListUserTicketsResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB( + "6kumUbULIFM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC1ERKSC_) +STUB("6kyOAf0ASJU", _ZN3JSC7Symbols25throwTypeErrorPrivateNameE) +STUB("6l-r6Nb2jbo", _ZN3JSC8Debugger17stepIntoStatementEv) +STUB( + "6l1Zib6S5ww", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEC1EPS6_PNS2_10LibContextE) +STUB( + "6l1kGZU-GRo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEEaSERSA_) +STUB("6l3Bv2gysNc", _ZN3sce4Json5Value3setERKNS0_6StringE) +STUB("6l451ru3SJg", _ZN3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreateD2Ev) +STUB( + "6l4SE9K1eOI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEED1Ev) +STUB("6l79pbB6a0E", _ZN3sce7Toolkit2NP2V28Commerce10Categories5resetEv) +STUB("6l8Ua3l0RQU", _ZN7WebCore8FormDataD1Ev) +STUB( + "6lBS38EjnUU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("6lCWG45kMZQ", g_get_current_dir) +STUB("6lCkJVSEkCo", _ZNK7WebCore15JSDOMWindowBase7wrappedEv) +STUB("6lEc1ExhDbE", _ZN3sce3Xml11InitializerD2Ev) +STUB( + "6lF+4p1KBn4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEC2EPS8_) +STUB( + "6lGoYQZ+noA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE3endEv) +STUB( + "6lLDKa1S3EI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEppEv) +STUB("6lM8YE2+lpw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEEC1EPNS2_10LibContextE) +STUB("6lNcCp+fxi4", sceAgcSetUcRegIndirectPatchSetAddress) +STUB("6lO3sF7Ke00", GCC_except_table4) +STUB( + "6lPBvDDqiTg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE3endEv) +STUB("6lVRHMV5LY0", sceHmdSetupDialogGetResult) +STUB("6lWlcHu15Jw", _ZN3JSC12DateInstanceC2ERNS_2VMEPNS_9StructureE) +STUB("6lYJ-OpUyPs", _ZN3sce2Np9CppWebApi11UserProfile2V113BasicPresenceC1EPNS1_6Common10LibContextE) +STUB("6lZYZqQPfkY", sceSaveDataGetCloudQuotaInfo) +STUB("6lewWDIQodI", _ZN7WebCore16HTMLImageElement9setHeightEj) +STUB("6ljeTSi+fjs", _ZNK3sce16CommonDialogUtil6Client9getResultEv) +STUB("6ljlgovZafE", _ZN7WebCore19JSHTMLSelectElementD2Ev) +STUB("6lrgLpy0G+0", __asan_version_mismatch_check_v7) +STUB("6lwSxBExYLo", NetCtlUnregisterCallbackNative) +STUB("6lxsEIodP9k", _ZN7WebCore21getCachedDOMStructureERNS_17JSDOMGlobalObjectEPKN3JSC9ClassInfoE) +STUB("6ly8M4dm9oE", _ZN7WebCore8SVGNames11feOffsetTagE) +STUB( + "6lzLYPjJyEg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE5clearEv) +STUB( + "6m+5Nb780W0", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3CSS16StyleSheetOriginEEESt8optionalIT_ERKN3WTF6StringE) +STUB( + "6m-gghNt6hw", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10setString5EPKc) +STUB("6m0NLHoa6gA", mono_get_dbnull_object) +STUB( + "6m4cMqSC0y4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE7reserveEi) +STUB("6m65wOWTyCI", _ZN7WebCore11DisplayList18FillCompositedRectD1Ev) +STUB("6m7QO1Xga8g", que_no) +STUB( + "6mBBz7Pb3h8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("6mBp6comd7g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEEC1EPS6_) +STUB("6mFxkVqdmbQ", sceAgcAcbPopMarker) +STUB("6mMQ1MSPW-Q", chdir) +STUB("6mQdXwULg1c", WKBundleCopyOriginsWithApplicationCache) +STUB( + "6mTvUfQJa1I", + _ZN3sce4Json6Parser14parseCodePointERSbIcSt11char_traitsIcENS0_8StlAllocIcEEERNS0_11InputStreamE) +STUB( + "6mZqRI1JeVA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "6maYWkJNt0w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEC2EPKS8_) +STUB( + "6mdBRQZGlls", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEE3getEv) +STUB( + "6mdRKXZ2IMI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "6mdWbeO1fBc", + _ZN3sce7Toolkit2NP2V27Ranking15getRangeOfRanksERKNS3_7Request15GetRangeOfRanksEPNS2_4Core8ResponseINS3_12RangeOfRanksEEE) +STUB( + "6mdtwu1AyFA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEaSERKS9_) +STUB("6me2sBkp8VU", + _ZNK3sce2Np9CppWebApi7Matches2V128RequestTemporaryMatchResults20getCompetitiveResultEv) +STUB( + "6mf-5p-ElNs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("6miba-pcQt8", sceNpManagerIntGetSigninState) +STUB("6mjLTKi0dYU", _ZN3sce7Toolkit2NP2V23TUS7Request12TusUserInputC2Ev) +STUB("6mqDF-9XV9o", uplrules_getKeywords_59) +STUB("6mr2Nasi3gc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEE7get_refEv) +STUB("6mu+YCJEVWc", _ZN3sce7Toolkit2NP2V210Tournament7Request10TeamFilterD1Ev) +STUB( + "6mxD8msqS4g", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser12getaccountIdEv) +STUB("6mxabRWMvHs", _ZN3sce7Toolkit2NP2V29Messaging22GameDataMessageDetails18MAX_SIZE_DATA_NAMEE) +STUB("6n-iPMM7ImM", sceVideoCoreGetThumbnail) +STUB( + "6n10FzfM214", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEC2EPNS2_10LibContextE) +STUB( + "6n1cIZt+6og", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEptEv) +STUB("6n23e0gIJ9s", nearbyintl) +STUB("6n8NT1pHW9g", sceNpManagerIntCreateLoginContext) +STUB("6n9zXyOLEq0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEE7get_refEv) +STUB( + "6nFzV0LRC7Y", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEptEv) +STUB("6nH53ruuckc", CERT_checkCertificateIssuer) +STUB("6nIvJACi-SI", _ZN3sce7Toolkit2NP17KickMemberRequestC1Ev) +STUB("6nLYZbqjtyc", __tsan_get_report_mop) +STUB("6nTiq94YXw0", _ZN3WTF18ParallelHelperPoolC2Ev) +STUB( + "6nUwUwG81mo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("6nW8WXQYRgM", _ZN3sce2np4CondC2Ev) +STUB( + "6nZ8O0ci6P8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEdeEv) +STUB("6na+Sa-B83w", sceZlibFinalize) +STUB( + "6naISfUFYx0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("6nbOQW8bunE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEED2Ev) +STUB("6ncge5+l5Qs", scePadClose) +STUB( + "6nf4OPg4oAE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC2ERKSB_) +STUB( + "6nhdX1Wo0O8", + _ZN9Inspector28DOMStorageFrontendDispatcher22domStorageItemsClearedEN3WTF6RefPtrINS_8Protocol10DOMStorage9StorageIdENS1_13DumbPtrTraitsIS5_EEEE) +STUB( + "6nkTSrqjeY0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE5beginEv) +STUB("6nkw2jvWJUY", _ZN9Inspector31NetworkBackendDispatcherHandler20LoadResourceCallbackD1Ev) +STUB("6nmAQrIEG24", sceClPthreadCondSignal) +STUB( + "6nrvGECpWQU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEC2EPS8_) +STUB("6nvauoCfcG4", uprv_strndup_67) +STUB("6o0QC+B8-6I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEE11get_deleterEv) +STUB("6o4itIbqsY8", WKViewWillExitFullScreen) +STUB("6oCPeed+v4M", _ZN7WebCore11DisplayList8SetStateC1ERKNS_26GraphicsContextStateChangeE) +STUB( + "6oEykmqYVfk", + _ZN7WebCore11DisplayList9DrawImageC1ERNS_5ImageERKNS_9FloatRectES6_RKNS_20ImagePaintingOptionsE) +STUB( + "6oFi0pt4Gc4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEmmEv) +STUB("6oIHlaJhz8w", sceCesRefersUcsProfileKoi8U) +STUB("6oKSgiKQI64", JVM_GetPrimitiveFieldValues) +STUB( + "6oKoSQmW6o8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEppEv) +STUB("6oL3-+pe6-I", _ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody14submitterIsSetEv) +STUB("6oLEhbdGcyA", _ZN3sce7Toolkit2NP2V212EventsClient17EventShareFactoryD1Ev) +STUB( + "6oMxoz2A2-o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("6oPKxZwNhWo", sceCesUcsProfileInitGb18030_2000) +STUB("6oTflEVejvA", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_18GameCustomDataItemEE17getAdditionalInfoEv) +STUB("6oVBmLXDVZU", ScePsmMonoDelegateFreeFtnptr) +STUB( + "6oVNfo0sz50", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("6oZ3DZGzjIE", sceUserServiceSetGlsIsRecDisabled) +STUB("6oaQvkEtWE4", SwCtrlSinkInitialize) +STUB("6ocfVwswH-E", CERT_extractValidityTime2) +STUB("6ocqaJ6b3sM", _ZNK7WebCore11HTMLElement5titleEv) +STUB( + "6oh0rtZZZE0", + _ZN7WebCore13TextIndicator26createWithSelectionInFrameERNS_5FrameEN3WTF9OptionSetINS_19TextIndicatorOptionEEENS_35TextIndicatorPresentationTransitionENS_9FloatSizeE) +STUB("6ojHaeHOpRg", _ZN3sce2Np9CppWebApi11Matchmaking2V110UserTicket13unsetTicketIdEv) +STUB( + "6orDtmsPu64", + _ZN7WebCore23AuthenticationChallengeC2ERKNS_15ProtectionSpaceERKNS_10CredentialEjRKNS_16ResourceResponseERKNS_13ResourceErrorE) +STUB( + "6orHZ5f0weY", + _ZN7WebCore31rejectPromiseWithExceptionIfAnyERN3JSC9ExecStateERNS_17JSDOMGlobalObjectERNS0_17JSPromiseDeferredE) +STUB( + "6ot4sE4uzbg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEE3getEv) +STUB("6ot8v-aJp4w", _ZNK7WebCore15ActiveDOMObject20isAllowedToRunScriptEv) +STUB( + "6ozVBlFC+R8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEC2Ev) +STUB( + "6p3P4bybdXg", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi22postGameSessionsSearchEiRKNS4_33ParameterToPostGameSessionsSearchERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_34PostGameSessionsSearchResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("6p9jvljuvsw", sceNpWordFilterCreateTitleCtxA) +STUB("6pFpST8cU9o", utrace_data) +STUB("6pJRRd1pcLA", __asan_report_store_n) +STUB( + "6pJhf5zSOT8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEC2Ev) +STUB("6pNzJUtwAWo", _ZN3sce3pss5orbis5video15VideoPlayerBase9SetVolumeEi) +STUB("6pOSfbf0n2s", _ZNK7WebCore11HTMLElement9translateEv) +STUB( + "6pQwHVz-sp4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEEptEv) +STUB("6pSeaS8vAaA", umutablecptrie_get_67) +STUB("6pSl+vLbXP4", mono_btls_key_get_bits) +STUB("6pajOezHAMI", sceNpSnsIntPostOpenGraph) +STUB( + "6pf1csTDhJs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "6pkE+kqgRco", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEEC2Ev) +STUB("6pkxvoufGrI", _ZN3JSC17JSArrayBufferView22slowDownAndWasteMemoryEv) +STUB( + "6po0TjfsIco", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEC2Ev) +STUB( + "6pph0Zg7KfM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEppEv) +STUB("6psZfG3S-fg", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationProperties18getNumberOfMatchesEv) +STUB( + "6ptM0bQUgag", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData39unsetxPsnTcsComparedLastUpdatedDateTimeEv) +STUB("6puN-DdtP0s", _ZN7WebCore19HTMLTableRowElement10insertCellEi) +STUB("6q05i9yEM7c", _ZL2hc) +STUB("6q0KZ62Ok1s", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_10TrophyInfoEEC1Ev) +STUB( + "6q1eUV0OZoE", + _ZN7WebCore22EmptyFrameLoaderClient33dispatchWillPerformClientRedirectERKN3WTF3URLEdNS1_8WallTimeENS_19LockBackForwardListE) +STUB("6q3HbnByPQ8", _ZNK3sce2Np9CppWebApi7Matches2V120ResponseInGameRoster10teamsIsSetEv) +STUB( + "6q4nVR9Yzrg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("6q6V19pMwLs", _ZN3JSC2VM15drainMicrotasksEv) +STUB("6q8q0z2Te1c", _ZN3WTF8JSONImpl5ValueC1Ed) +STUB("6qASSvWiPOU", _ZTVN7WebCore11DisplayList9TranslateE) +STUB("6qCuxSfW07o", _ZN3sce7Toolkit2NP2V29Messaging16GameDataMessagesC1ERKS4_) +STUB("6qFqND4iwPA", _ZN3sce4Json11InitializerC2Ev) +STUB("6qGhMiG+4-0", ECDSA_sign) +STUB( + "6qHTAp5Z3mI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEE11release_refEv) +STUB( + "6qHULLgyVz0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEEcvbEv) +STUB("6qHZ69Qfeb4", coil_dlclose) +STUB("6qI5g0UUyRw", EVP_aes_192_gcm) +STUB("6qJpqcBfN4U", _ZN7WebCore23AuthenticationChallenge15platformCompareERKS0_S2_) +STUB( + "6qJxsMqXgqU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEE11release_refEv) +STUB( + "6qL1IB3Fhck", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE23clearOnFinishedCallbackEv) +STUB("6qM3kO5S3Oo", scePthreadCondattrGetclock) +STUB("6qN1zaEZuN0", sceNgs2CustomRackGetModuleInfo) +STUB("6qRL52tLOII", cairo_pattern_reference) +STUB( + "6qWEZHzmM+4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEaSERKS9_) +STUB("6qWt575LR98", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEplEm) +STUB("6qX9DWxWU2I", _ZN7WebCore24DeprecatedGlobalSettings26setAllowsAnySSLCertificateEb) +STUB( + "6qXN6H1T9AI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEE11release_refEv) +STUB("6qYa4lB52gA", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V16RatingC2EPNS1_6Common10LibContextE) +STUB("6qb9qnKiB2c", _ZN7WebCore11MathMLNames6mtrTagE) +STUB( + "6qcyKL6ZhD4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEE11get_deleterEv) +STUB( + "6qe2QcAHHk8", + _ZN7WebCore8Settings38setForcedSupportsHighDynamicRangeValueENS_12SettingsBase24ForcedAccessibilityValueE) +STUB( + "6qg221lLjTc", + _ZN3sce7Toolkit2NP9Utilities6FutureISt4listINS1_11TusVariableENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB( + "6qjn2lkQXmw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE21intrusive_ptr_sub_refEPS9_) +STUB("6qm4BgAubEk", mono_aot_Sce_Vsh_ErrorDialogUtilWrapperjit_got) +STUB( + "6qmfAVrZes0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEppEv) +STUB("6qoDknLl0Q0", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V314MissingElement7setNameEPKc) +STUB( + "6qrThkcFkjE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEED2Ev) +STUB( + "6qw4ZGY68os", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEaSERKS7_) +STUB("6qy4F-nOeqI", _ZN3sce2Np9CppWebApi11Matchmaking2V15ErrorC1EPNS1_6Common10LibContextE) +STUB( + "6r3ubd-gcsI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEE11get_deleterEv) +STUB("6r4hDyrRUGg", sceUserServiceGetAppearOfflineSetting) +STUB("6r6ssbPbKc4", _ZN3sce2np4Path11BuildAppendEPcmcPKcm) +STUB( + "6r7kkWFaWJ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("6r9e0Q0mmFM", _ZN7WebCore13GraphicsLayer13addChildBelowEPS0_S1_) +STUB("6rB5RFDqlLw", _ZN9Inspector31RuntimeBackendDispatcherHandlerD2Ev) +STUB("6rB7giYlHP4", _ZN12video_parser17cVideoProfilerMp420getMediatimeByOffsetExjjPy) +STUB( + "6rG3EBAmfHY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEEC2ERKSA_) +STUB("6rLpBtCq0Co", _ZN12video_parser17cVideoOperatorMp4D0Ev) +STUB( + "6rPq-s1rMkI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("6rUvx-6QmYc", sceRazorCpuWorkloadSubmit) +STUB("6rW5DhoijqY", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi21ParameterToLeaveMatchD2Ev) +STUB("6rbFd1xKksc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEED1Ev) +STUB("6rdgvpVBBGI", _ZN3sce3Xml3Dom6NodeIdC1EPvS3_b) +STUB( + "6rdnbr8UTxE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEC1Ev) +STUB( + "6rfaant0hGs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEneERKS9_) +STUB( + "6rg4d--wmYo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEC1Ev) +STUB( + "6rgmXYVAjyw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEixEm) +STUB("6ricVz3LSwA", _ZN3sce2Np9CppWebApi6Common6VectorImE5clearEv) +STUB("6rjMQQSOK7I", _ZN7WebCore9HTMLNames9hgroupTagE) +STUB( + "6roY1n0faok", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE8capacityEv) +STUB("6roaZqVbD2o", sceCesUtf16ToGb) +STUB( + "6rqVRFeF+uI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEaSERKS9_) +STUB( + "6rsL6KjSn1o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "6rxMUYuiCgs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEE7get_refEv) +STUB( + "6s+Pa94bCzw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB( + "6s-EMKmjogs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEEC2EPS8_PNS2_10LibContextE) +STUB("6s-tDu1w580", sceAvSettingSetProcessAttribute) +STUB("6s2KBbiKoeQ", _ZNK3sce2Np9CppWebApi11Matchmaking2V15Cause14getReferenceIdEv) +STUB("6s3eHZETzRg", _ZTVN7WebCore11DisplayList22BeginTransparencyLayerE) +STUB( + "6sA+PpHnPRM", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "6sALqg5zOXc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEE5resetEPS6_) +STUB("6sAaleB7Zgk", _ZNSt8messagesIwED1Ev) +STUB("6sFjqhFXazo", _ZN3WTF13MetaAllocatorC2Emm) +STUB("6sI08fxTRDQ", WKPreferencesSetFrameFlatteningEnabled) +STUB( + "6sI0DtJCJYc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("6sJIpuPp6Ug", _ZN3JSC15createTypeErrorEPNS_14JSGlobalObjectE) +STUB("6sJWiWSRuqk", strncpy) +STUB("6sNCMCcDva8", _ZN3JSC29createNotEnoughArgumentsErrorEPNS_14JSGlobalObjectE) +STUB("6sNie6r4X-A", uregex_patternUText_67) +STUB( + "6sQhqGZfqlQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEptEv) +STUB( + "6skQqMOy7Ik", + _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets28getxPsnAcceptPlatformNamePs5Ev) +STUB("6slrIYa3HhQ", sceFontGraphicsTextureRefersSurface) +STUB( + "6sn-8Hkqfp0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "6svBaAI4Ggw", + _ZN15AbstractStorage14YoutubeStorage15RemoveRecursiveERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB( + "6sxng9ONdfI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("6sy3Y9QjOJw", sceKernelGetGPO) +STUB("6t+iBrmS2jc", + _ZN3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallbackD2Ev) +STUB( + "6t-5FNVvW58", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "6t2tqubghqY", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("6t5G5dYpMVg", mono_aot_get_method) +STUB("6tHjwBbwBHI", + _ZN3sce2Np9CppWebApi13InGameCatalog2V525ContentInteractiveElementC1EPNS1_6Common10LibContextE) +STUB( + "6tS+1Td9xfI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEmmEi) +STUB( + "6tSAT90CDnE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEixEm) +STUB("6tTbrt1O1SY", + _ZN3sce4Json5Value30setElementAccessFailureHandlerEPFviPKNS0_6StringEPKmPKS1_S8_PvES9_) +STUB( + "6tbQzFmGsY4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE8capacityEv) +STUB( + "6tcQUI3RKzY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEdeEv) +STUB("6te3AYyG8DM", g_StructureTransitionTablePoison) +STUB("6tfClfbWkoE", + _ZN3sce2Np9CppWebApi7Matches2V118RequestMatchPlayer13setPlayerTypeERKNS3_10PlayerTypeE) +STUB("6tfemYI0syo", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging25GameDataMessageAttachmentEE5resetEv) +STUB("6tg0fDb-1CI", _ZNK7WebCore4Page28remoteInspectionNameOverrideEv) +STUB("6tl87fx8jW0", Java_java_net_PlainDatagramSocketImpl_connect0) +STUB("6tpJ09XQWU4", + _ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends11unsetfilterEv) +STUB("6trxThGwW+E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEaSERS7_) +STUB("6ttFOYFULyE", throw_exception) +STUB("6ttP+oJhhOU", Java_java_net_PlainDatagramSocketImpl_bind) +STUB( + "6tuCWhXgPWM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE7popBackEv) +STUB( + "6tvRfA2A4S0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEdeEv) +STUB("6txNWOo9HqI", sceNpManagerUtilSystemMessage) +STUB("6u-wDQcw7aM", WKPreferencesSetDefaultFontSize) +STUB("6u1krNl-oPM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEixEm) +STUB("6u20ZWqmgEY", delegate_invoke_impl_target_7_p) +STUB("6u98-pOEZ7A", scePigletGetUsageVSH) +STUB( + "6uADnQM6BoE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE6resizeEj) +STUB( + "6uIuyO4KZgY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEEaSERS9_) +STUB("6uO4pTm83fQ", _ZN3sce2np8JsonBoolC2EP14SceNpAllocator) +STUB("6uOuk2GNd0k", _ZL16emergency_buffer) +STUB("6uRfe3kru7g", _ZN7WebCore15JSSVGSVGElement15subspaceForImplERN3JSC2VME) +STUB("6uRicjad3G0", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12BlockedUsersEE12deepCopyFromERS7_) +STUB( + "6uSR4IDJIXw", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersC2Ev) +STUB("6uSd4F-3iOg", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE5clearEv) +STUB("6uYcvVjH7Ms", sceNetConfigWlanApStop) +STUB( + "6uaxXSrH-t8", + _ZN3sce2Np9CppWebApi14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBody25getJoinableSpecifiedUsersEv) +STUB( + "6ub07QzjcyA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("6utDtURD3Rc", _ZN4Manx8X509name7getItemENS0_12X509NameTypeEiPcj) +STUB("6uvAl4RlEyk", sceNetCtlApRpStop) +STUB("6uvnoqZfJDU", _ZNK7WebCore8Document7doctypeEv) +STUB( + "6uvsDoFDgRU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "6v8iPxdKh94", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("6v9-ne7wt+4", _ZN7WebCore13CharacterData10insertDataEjRKN3WTF6StringE) +STUB("6vGCkkQJOcI", sceFontSetupRenderScalePixel) +STUB("6vGNjK1X5iU", sceAudiodReportUnregisterHandler) +STUB("6vKnJ0YYMVs", WKInspectorGetTypeID) +STUB("6vLxC+pasvA", _ZN3JSC7Symbols31propertyIsEnumerablePrivateNameE) +STUB( + "6vP0+4bSdgw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "6vQllokbxsQ", + _ZN7WebCore16MIMETypeRegistry33preferredImageMIMETypeForEncodingERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEES8_) +STUB("6vQp2stBq68", _ZNK7WebCore9FrameView23documentBackgroundColorEv) +STUB( + "6vWAXpg9eio", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEE5resetEPS6_) +STUB("6vWY0aegNnk", sceHmdGetViewStatus) +STUB("6vYXzFD-mrk", _ZNKSt7collateIcE4hashEPKcS2_) +STUB( + "6vYYgo+vPgQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEixEm) +STUB( + "6vcRYeFZpFU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB( + "6vfe8v-CD0s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEC1EPS8_) +STUB("6viGpZpHbv8", _ZN12video_parser18cMp4FFLHndlManager14getFF4StsdHndlEj) +STUB( + "6vj-RwXpzx8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "6vm01KRxbM4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEEptEv) +STUB("6vmrNgzv924", sceVisionManagerGetRegisterUserDataSize) +STUB("6voa+OgzKxc", _ZN3sce2Np9CppWebApi7Matches2V117ResponseMatchTeam13unsetTeamNameEv) +STUB("6vopFVc7RLI", _ZNK7WebCore14CredentialBase7isEmptyEv) +STUB( + "6w+imlxuA60", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEEC2Ev) +STUB("6w-VsQFYF2w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEED1Ev) +STUB( + "6w41-MfgAv0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE8capacityEv) +STUB("6w8tPp+Yk6E", setreuid) +STUB( + "6wJPdsV8NOM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE8copyFromERKS9_) +STUB("6wJwUIVwAxg", FT_Vector_Rotate) +STUB("6wK1viz3u24", __sqrt) +STUB("6wLehmKPNa4", PubSubSubscribe) +STUB("6wPgME-NdKA", mono_exception_from_name_two_strings) +STUB("6wWrq5tb+yk", sfnt_module_class) +STUB("6wXisPohifE", __sys_resume_process) +STUB("6wfdbeqaQco", sceHidControlSetUserColor) +STUB("6whcJMHioXw", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData10setboardIdEi) +STUB( + "6wixmwmsi8c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEE5resetEPS8_) +STUB("6wo0ARK96Ek", _ZN3WTF11Persistence7Encoder6encodeEt) +STUB("6ww1xI2yWEI", _ZN23sceMetadataReaderWriter8Metadata8setFieldERKSs) +STUB("6x-luKeSQNg", WKPreferencesGetAsynchronousPluginInitializationEnabled) +STUB( + "6x-yQ99AceY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEixEm) +STUB("6x06HaJWiDQ", sceSulphaGetNeededMemory) +STUB("6x1DRHvVZYI", _ZN7WebCore29contextMenuItemTagLeftToRightEv) +STUB("6x1JXGn6Yqk", _ZN7WebCore14JSWebAnimationC2ERKS0_) +STUB( + "6x3XXS8HpQA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEC2EPKS8_) +STUB( + "6x6rQuRx+Ss", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEE5resetEPS9_) +STUB("6xEO6mzPsiA", il2cpp_domain_get_assemblies) +STUB("6xKUW67MEeY", _Z37sceGpuDebuggerRegisterFetchShaderCodePKvjPKc) +STUB( + "6xLfWij1WNQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEeqERKS9_) +STUB( + "6xMRAR-V1JA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE4sizeEv) +STUB("6xMew9+rZwI", scePthreadCondattrSetpshared) +STUB("6xRst7sx+0Y", mono_btls_x509_name_copy) +STUB("6xV3u1IX9hY", sceKernelWriteWaitOnAddressCommand) +STUB( + "6xVVF5JaU34", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("6xVmVcuw4t0", Java_java_io_UnixFileSystem_getBooleanAttributes0) +STUB("6xVpy0Fdq+I", _sigprocmask) +STUB("6xWOV1fjt24", WKContextConfigurationSetUserId) +STUB( + "6xarkuk0iOU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEC1EPNS2_10LibContextE) +STUB( + "6xdXhqAex8I", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("6xesGyeWJfQ", + _ZNK7WebCore6Editor26selectionStartHasMarkerForENS_14DocumentMarker10MarkerTypeEii) +STUB("6xfC1QjOWmk", _ZNK3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead21playerAttributesIsSetEv) +STUB( + "6xfXSJ7uG9o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEppEv) +STUB( + "6xfiAiks+6c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEEaSERSA_) +STUB("6xh1tBXTmFA", _ZN3sce2Np9CppWebApi14SessionManager2V116FromNonPsnMemberD1Ev) +STUB("6xlf9+pa0GY", sceNpMatching2CreateContextInternal) +STUB("6xpx7DjGIzE", ures_countArrayItems_67) +STUB( + "6xr5Zp1nYuE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE17getResponseHeaderERSB_) +STUB( + "6xvl3JBzRek", + _ZN7WebCore11DisplayList20DrawTiledScaledImageC1ERNS_5ImageERKNS_9FloatRectES6_RKNS_9FloatSizeENS2_8TileRuleESA_RKNS_20ImagePaintingOptionsE) +STUB("6y+NITWLmmE", u_hasBinaryProperty) +STUB("6yAntKci2GE", _ZN7WebCore11MathMLNames5msTagE) +STUB("6yCZwTLGL4c", _ZN3WTF14fastMallocSizeEPKv) +STUB("6yCcv3jyMfk", _ZN7WebCore24CoordinatedGraphicsLayer14setAnchorPointERKNS_12FloatPoint3DE) +STUB( + "6yFd3HB2OE8", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScore24getxPsnAtomicOperationIdEv) +STUB("6yMnkmRUIKA", WKPreferencesSetMediaDevicesEnabled) +STUB( + "6yNTPzhIgTc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("6yQTKzljpcM", WKBundleBackForwardListItemIsTargetItem) +STUB( + "6yRDsfHB+6w", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEEdeEv) +STUB( + "6yRMvzsNgxM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEE11get_deleterEv) +STUB("6yS9uNax8IU", _ZN3JSC18PropertyDescriptor13setDescriptorENS_7JSValueEj) +STUB( + "6ySn8xr3l9I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE8pushBackERKS8_) +STUB("6yU1KEvOl14", sceRegMgrNonSysSetBin) +STUB("6yU5lk66Vv8", + _ZN7WebCore12ChromeClient16hasStorageAccessEON3WTF6StringES3_mmONS1_17CompletionHandlerIFvbEEE) +STUB("6yXA1cZyFz4", sceVorbisDecTimeSeek) +STUB("6yXHAKO8Fwg", _ZN3JSC10IsoCellSet33parallelNotEmptyMarkedBlockSourceEv) +STUB("6yYwCC3Gfmo", WKBundleFrameStopLoading) +STUB( + "6yZMCvLzHFw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEneERKS9_) +STUB( + "6yc65mibD-4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("6ym+oZImo1k", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE8copyFromERKS7_) +STUB( + "6ymyIJBIuIo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE21intrusive_ptr_add_refEPS9_) +STUB("6yplvTHbxpE", _ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED0Ev) +STUB( + "6yqvKiUI9o4", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsersC2Ev) +STUB("6yzY60Utq0A", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging25GameDataMessageAttachmentEED1Ev) +STUB("6z-q6zRLxFI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEC2Ev) +STUB( + "6z0p-VK7CMk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE6resizeEj) +STUB("6z1JeV3sLx8", _ZN9Inspector22InspectorDebuggerAgent20backtraceObjectGroupE) +STUB("6z2P2V2XCiI", FTA_Remove_Module_smooth_lcdv) +STUB("6z5ySLhOFQE", glStencilFuncSeparate) +STUB("6z6RTJBjblE", _ZN9Inspector15ScriptCallStackC2Ev) +STUB( + "6z7bnuqvMHY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEEC1Ev) +STUB("6z9LFxCfQgw", _ZNSt15basic_streambufIwSt11char_traitsIwEE5uflowEv) +STUB( + "6zDGeJG+9Ys", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEED1Ev) +STUB("6zDTIGZKwB0", _ZN3sce7Toolkit2NP20ModifySessionRequestC2Ev) +STUB("6zDeyzjWz-8", FTA_Export_Module_raster5) +STUB("6zGNzBYG3-8", _ZN7WebCore10Pasteboard11writeStringERKN3WTF6StringES4_) +STUB("6zGifD5IqRo", ScePsmMonoStringNewWrapper) +STUB( + "6zGln51xzoY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEE7get_refEv) +STUB("6zJNbo2nyk4", mono_aot_Sce_Vsh_SQLiteAuxjit_got) +STUB("6zKouhabgjM", sceKeyboardMbusInit) +STUB( + "6zLCWBJjsm0", + _ZN7WebCore22CacheStorageConnection13updateRecordsEmONSt12experimental15fundamentals_v38expectedIN3WTF6VectorINS_14DOMCacheEngine6RecordELm0ENS4_15CrashOnOverflowELm16EEENS6_5ErrorEEE) +STUB("6zLDgp1lYO0", _ZN3sce7Toolkit2NP2V212NetworkUtils7Request19GetBasicNetworkInfoC2Ev) +STUB( + "6zRdftg-7z8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEaSERKS9_) +STUB("6zU++1tayjA", __extendsfdf2) +STUB("6zWUKLs2zY8", mono_aot_Sce_Vsh_VideoServiceWrapperjit_code_end) +STUB( + "6zYaTyoGeww", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData24unsetxPsnAtomicOperationEv) +STUB( + "6zcc4vyhfLQ", + _ZN7WebCore9FrameView24paintContentsForSnapshotERNS_15GraphicsContextERKNS_7IntRectENS0_19SelectionInSnapshotENS0_26CoordinateSpaceForSnapshotE) +STUB("6zg3ziZ4Qis", + _ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE5_InitERKSt8_Locinfo) +STUB( + "6znSyI4tHR0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("6znTVlwDoh4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE5beginEv) +STUB( + "6zoDryEuZbM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE21intrusive_ptr_add_refEPS9_) +STUB("6zv7cfmRgCM", _ZN7WebCore8SVGNames10filterAttrE) +STUB("6zwy9u-y9i8", _ZN3JSC7Symbols37regExpStringIteratorGlobalPrivateNameE) +STUB("6zxuBlsGF0I", sceFontGraphicsSequenceGetAgcCommandsForJump) +STUB("7++HyggGH44", _ZN3WTF14FileSystemImpl27isSafeToUseMemoryMapForPathERKNS_6StringE) +STUB("7+0ouwmGDww", __ashrti3) +STUB("7+7EZDESn0U", WKRenderLayerGetTypeID) +STUB("7+F9pr5g26Q", CA_MGMT_extractCertASN1Name) +STUB("7+Gq-0xFybo", FcFontList) +STUB("7+KQPL+96JY", _ZN3sce7Toolkit2NP2V212EventsClient12EventDetails19MAX_SIZE_TITLE_NAMEE) +STUB( + "7+LbrrOoFhE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEC2ERS7_) +STUB("7+OJIpko9RY", _sceFiberInitializeWithInternalOptionImpl) +STUB("7+OR1TU5QOA", sceNpTrophySystemGetTrophyData) +STUB( + "7+PmcEwupgE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE5beginEv) +STUB("7+XbDOTe2S0", _ZN9Inspector14InjectedScript13releaseObjectERKN3WTF6StringE) +STUB("7+dvfiBHXOc", mono_aot_Sce_PlayStation_BclExtensionsjit_code_end) +STUB("7+hk+ra-Nok", _ZThn8_N3sce2np13JsonDocParser12onObjectNameEjjPKc) +STUB("7+icaL29TYs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEC1Ev) +STUB( + "7+oCtx2q+O4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEC1EPS7_PNS2_10LibContextE) +STUB( + "7+sCRl51dEw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEE11release_refEv) +STUB( + "7+sK4wptCwE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEED2Ev) +STUB("7+uKCMe4SLk", sceNpManagerIntGetAccountCountry) +STUB("7+v3uWRHgQ4", sceDepthSetCommands) +STUB( + "7+v9b5RKB5c", + _ZN7WebCore26ActiveDOMCallbackMicrotaskC2ERNS_14MicrotaskQueueERNS_22ScriptExecutionContextEON3WTF8FunctionIFvvEEE) +STUB( + "7+vp9qHnefY", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyC2EPNS1_6Common10LibContextE) +STUB( + "7+w2J2tPl1M", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("7-2Lu2r5yb4", JVM_GetClassSigners) +STUB("7-2glF9P8AI", + _ZN7WebCore17CredentialStorage24getFromPersistentStorageERKNS_15ProtectionSpaceE) +STUB( + "7-40cqGcz9E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEED1Ev) +STUB( + "7-AW9mVPxtI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEEdeEv) +STUB( + "7-BX2Jeii7c", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "7-F7rT8sLfI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEEdeEv) +STUB( + "7-Gdiep3RZg", + _ZN7WebCore16BlobRegistryImpl15registerBlobURLERKN3WTF3URLEONS1_6VectorINS_8BlobPartELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEERKNS1_6StringE) +STUB( + "7-Lx5Q4-v90", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEE5resetEPS9_) +STUB( + "7-OYR+Ui-do", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB("7-OxGuuZnkM", _ZN15AbstractStorage12LocalContent5FlushEv) +STUB("7-R7QqM35s0", sceDebugIpmiGetDump) +STUB("7-RvuFg4OzY", mono_gc_wait_for_bridge_processing) +STUB( + "7-UiRtYjSDg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEC2EPNS2_10LibContextE) +STUB("7-a7sBHeUQ8", wcstod) +STUB("7-dpn36Q3qc", _ZN7WebCore14foldQuoteMarksERKN3WTF6StringE) +STUB("7-miUT6pNQw", sceFontGetTypographicDesign) +STUB("7-psagK3Iow", _ZThn16_N9Inspector18InspectorHeapAgent7disableERN3WTF6StringE) +STUB( + "7-qkn0ALaO0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEED2Ev) +STUB("7-qu9XBD8iI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEE7get_refEv) +STUB("7-r0RQ6jHjg", GCC_except_table72) +STUB("7-xmQEeX5Ck", mono_aot_I18N_CJKjit_code_end) +STUB( + "7-ySFB+Vo68", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB( + "7-zi88YGX38", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEneERKS9_) +STUB("701xv4i88-g", _ZN7WebCore22EmptyFrameLoaderClient32updateGlobalHistoryRedirectLinksEv) +STUB( + "7022anBuij8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEE11get_deleterEv) +STUB("702ZVPACD+I", g_JSWebAssemblyMemoryPoison) +STUB( + "704m4HUvfNY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEEptEv) +STUB( + "70Dj40Ar0ag", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE3endEv) +STUB( + "70EUl52OpCM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEEdeEv) +STUB("70Ro6v2hlLQ", _ZN3JSC13vmEntryToWasmEPvPNS_2VMEPNS_14ProtoCallFrameE) +STUB("70Swvw7h6ck", sceNpManagerIntGetOfflineAccountId) +STUB( + "70l1pvMOVIg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEC1ERS7_) +STUB("70niEKUAnZ0", _ZNK3sce16CommonDialogUtil6Client19isInitializedStatusEv) +STUB( + "70ntBCAv3qw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEaSERS7_) +STUB("70qFzq4z3UI", _ZN3sce2np13RingBufMemoryD0Ev) +STUB("70syGbtSdn4", _ZN23sceMetadataReaderWriter8Metadata13_selectSubsetERKS0_) +STUB("71-1jbC1u24", WKPageCopyCustomUserAgent) +STUB("710Bp0WQkAQ", + _ZN8meta_gen11MsvPromoter21setKeyValue_TBLI_PathENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti) +STUB("710soebYLH0", mono_metadata_get_inflated_signature) +STUB( + "7175vlh5BqY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("71B6E4fG+sA", JSValueIsNumber) +STUB("71E9e6n+2R8", scePadOpenExt2) +STUB("71FWawHH1NU", _ZNK7WebCore15HTMLLinkElement3relEv) +STUB("71MqbV1TZQA", _ZN7WebCore20PasteboardCustomDataC1EOS0_) +STUB("71P0F8eJfPk", sceMatRegisterResourceType) +STUB( + "71RS46Of45w", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getInteger1Ev) +STUB( + "71SQ7HAyo40", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEmmEi) +STUB( + "71cL8H46qHM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEppEv) +STUB("71e3PK+sjL8", YGConfigGetContext) +STUB("71eCBabjnWU", sqlite3_value_type) +STUB( + "71gOoS734Uk", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser18hasjoinStateFilterEv) +STUB( + "71j-hbkEhI0", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersC1Ev) +STUB("71jbb8xfEq4", + _ZN3sce7Toolkit2NP2V29Messaging7Request28GetGameDataMessageAttachment19MAX_SIZE_ATTACHMENTE) +STUB("71mfcaKoFkw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEEaSERKSA_) +STUB( + "71n4xd0lXF8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEE5resetEPS6_) +STUB("71sgC7+39is", u_countChar32) +STUB("71w5DzObuZI", sceFontSupportGlyphs) +STUB( + "723zyOBO7q0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEED1Ev) +STUB( + "725KKyObHng", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEC1EPNS2_10LibContextE) +STUB( + "727vdH6CZfc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEaSERKS9_) +STUB( + "72AQTIrPyuo", + _ZN3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsTouchResponseBodyC1EPNS1_6Common10LibContextE) +STUB( + "72QxfXmhzNk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEC2EPS8_) +STUB( + "72VR48dy4QY", + _ZN3sce2Np9CppWebApi14SessionManager2V129GameSessionPushContextFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_22GameSessionPushContextEEE) +STUB( + "72WlWyOevr8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEppEv) +STUB("72Xc-Zdql7E", _ZN9Inspector27InspectorFrontendDispatcherC2ERNS_14FrontendRouterE) +STUB( + "72bM0Im+hXE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEE6assignEPS5_PFvS7_EPNS2_10LibContextE) +STUB( + "72ek4eKCDtM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE21intrusive_ptr_add_refEPS7_) +STUB( + "72fRL8uLylg", + _ZN3sce2Np9CppWebApi15Personalization2V112ErrorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5ErrorEEE) +STUB("72mM3QwA6Eo", _ZN3sce2np10JsonObject8SetFieldEPKcbPPNS0_8JsonBoolE) +STUB("72mm7Ox2Wo8", mono_aot_Sce_Vsh_Np_Webapiunbox_trampolines) +STUB("72nd6WyGCLU", + _ZNK3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResults22teamMemberResultsIsSetEv) +STUB( + "72rIvihBfJc", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V129SetDataInfoRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_22SetDataInfoRequestBodyEEE) +STUB("72rYuYoDTWk", getegid) +STUB( + "72w8jvw+SGs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEaSERKS9_) +STUB("72wZB0MqDcg", sqlite3_wal_hook) +STUB( + "72yo9BGphJ4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEED2Ev) +STUB( + "73-MWVlr1Gg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEEaSERKSA_) +STUB("732GeeuVli4", rgctx_fetch_trampoline_mrgctx_115) +STUB("733IvkSQ3tY", + _ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession30reservationTimeoutSecondsIsSetEv) +STUB("733xcnCgEWg", + _ZN3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator11setPlatformEPKc) +STUB("735GfVO9v2s", sceVideoOutCursorSetPositionStereo) +STUB( + "73CNl0EKFmQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEC2EPS8_) +STUB( + "73GV+sRHbeY", + _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE11do_get_timeES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm) +STUB( + "73I4BBiAx3c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEED1Ev) +STUB( + "73Ms846GtIA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("73OOfmlKsoY", _ZN9Inspector21DOMFrontendDispatcher16shadowRootPoppedEii) +STUB("73QTBvO2yGo", Java_sun_misc_AtomicLongCSImpl_attemptUpdate) +STUB("73SV5VnRI68", _ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayerD2Ev) +STUB("73WQ4Jj0nJI", sceScreenShotSetOverlayImageWithOrigin) +STUB( + "73XG6dPCOr0", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "73XzI6MdHu4", + _ZN7WebCore20SharedBufferDataViewC1EON3WTF3RefINS_12SharedBuffer11DataSegmentENS1_13DumbPtrTraitsIS4_EEEEm) +STUB("73ZYnt2WGWU", _ZN7WebCore10LayoutRect5scaleEf) +STUB("73ZZdojLIgs", sceAgcDcbSetCfRegisterDirect) +STUB("73cbQgoCuB4", sceUpsrvUpdateGetFeatureList) +STUB("73dMWaYVuB8", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend16FriendsOfFriendsEE19setCustomReturnCodeEi) +STUB( + "73e3FnFmw6k", + _ZN9Inspector13AgentRegistry6appendESt10unique_ptrINS_18InspectorAgentBaseESt14default_deleteIS2_EE) +STUB("73fF1MFU8hA", scePlayGoGetChunkId) +STUB( + "73fihY0gUsk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEEcvbEv) +STUB("73gjSG1YiTU", WKURLResponseIsAttachment) +STUB("73hwirhzHjg", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEED1Ev) +STUB("73o7T9GCiNU", sceCesUhcToUcs2) +STUB("73qbxKjBH0o", _ZN3sce2np12HttpTemplate7DestroyEv) +STUB( + "73uNe6pfWF4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEEC2ERSA_) +STUB("73vg+nRH68g", FT_GlyphSlot_Embolden) +STUB( + "74+mzp8Rz6g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("74-1x3lyZK8", sceAppContentGetRegion) +STUB( + "741r+LHMBmI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEC1EPS8_) +STUB("743ZzEBzlV8", sceNpWebApiGetHttpResponseHeaderValueLength) +STUB("745gvhPlKWQ", _ZNSt14overflow_errorC1EPKc) +STUB("749AEdSd4Go", _ZTVSt9type_info) +STUB( + "749D7dADluQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEmmEv) +STUB("74ASEqxSnkM", sceNpUniversalDataSystemEventPropertyObjectSetObject) +STUB("74E3+ZonU5Q", _ZN7WebCore12JSAudioTrackD2Ev) +STUB("74OZKwz-xYE", _ZN7WebCore9HTMLNames13onsuspendAttrE) +STUB("74PbyKbRv-I", sceEditMp4SetFinishCallback) +STUB("74SncbyJ65I", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsD1Ev) +STUB("74YXcrlixiA", _ZN3sce7Toolkit2NP2V28Matching12RoomPingTimeD2Ev) +STUB( + "74ZFJvWrFIg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEC1ERS7_) +STUB( + "74ck5KEE9q8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEEC1Ev) +STUB("74mtR8svFzk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V124RequestCooperativeResultEEmmEv) +STUB( + "74u2S5XInx8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("74vuH9BYkF0", BN_mul) +STUB( + "74y6-+V+rgk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEED1Ev) +STUB( + "75-4iX2aMMY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE21intrusive_ptr_sub_refEPS7_) +STUB("751UqqIzoec", + _ZN3JSC8evaluateEPNS_9ExecStateERKNS_10SourceCodeENS_7JSValueERN3WTF8NakedPtrINS_9ExceptionEEE) +STUB("753OCxriFNY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEaSERS7_) +STUB( + "754SO8QWWDs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEEcvbEv) +STUB( + "756KIb6WACM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEE3getEv) +STUB( + "75EkPBAMjxo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEEC2ERSA_) +STUB( + "75GiOIb8-rM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB( + "75GjvHiupOY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEmmEv) +STUB( + "75Hbvij1fk8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "75HznY1Qxls", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser28hasxPsnAcceptPlatformNamePs5Ev) +STUB( + "75J34NwHjdg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEED2Ev) +STUB( + "75LMAPGq5u0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEEaSERKSA_) +STUB( + "75R2WXh1r-A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEE11release_refEv) +STUB("75cwn1y2ffk", sceUserServiceGetGlsMessageFilterLevel) +STUB("75fdGWpRw34", _ZNK7WebCore22EmptyFrameLoaderClient21canShowMIMETypeAsHTMLERKN3WTF6StringE) +STUB("75fjmB8fYrc", _ZN3sce2np18HttpConnectionPool8RegisterEPNS0_14HttpConnectionE) +STUB( + "75hUGUlCWiA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEplEm) +STUB("75i2K6Oitrk", sceNpSnsTwitchDialogTerminate) +STUB("75jFiV-jHmM", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container11getAgeLimitEv) +STUB("75lTZ9hOy2w", sceNpUniversalDataSystemIntTerminate) +STUB("75nTISHl6cY", _ZNK7bmalloc11IsoTLSEntry9alignmentEv) +STUB( + "75ok-DZg0rE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE5emptyEv) +STUB("75p0UbAOPnQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEC1ERKS7_) +STUB("75qcBN57jBQ", _ZN7WebCore7JSRange15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("75qnyRc9zRc", + _ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer17unsetPushContextsEv) +STUB("75tSWNcC8Oo", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEEptEv) +STUB("75xioEk4rX0", _ZN7WebCore13CharacterData11replaceDataEjjRKN3WTF6StringE) +STUB( + "76-riXxZEwc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEE7add_refEv) +STUB( + "760YDpfWbew", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEptEv) +STUB("766RqC9GMsw", SSLv23_client_method) +STUB("768mKI7DmSk", _ZNK7WebCore14LoaderStrategy27shouldPerformSecurityChecksEv) +STUB("769lRs6JSh8", _ZN3JSC2VM25intlNumberFormatSpaceSlowEv) +STUB("76MnEBMIXew", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_6NpUserENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB("76MpsmFlKQM", + _ZN3sce2Np9CppWebApi14SessionManager2V127ResponsePlayerSessionPlayer12setAccountIdERKm) +STUB("76NVW6T2AUg", sceDtsEncFlush) +STUB( + "76NVeU9p54I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEC1Ev) +STUB("76OBvrrQXUc", sceVrTrackerGetResult) +STUB( + "76OfPSmfdLI", + _ZN3sce2Np9CppWebApi14SessionManager2V127PlayerSessionForReadFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_20PlayerSessionForReadEEE) +STUB("76SwZUP7i1w", _ZN3JSC8Bindings10RootObjectD2Ev) +STUB("76TQwY6ysBg", mono_aot_System_Threading_Tasksjit_code_end) +STUB( + "76U8Y1XJ5CE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEED1Ev) +STUB("76VDSNM3z2c", + _ZN7WebCore21ContentSecurityPolicyC1EONS_3URLEPNS_27ContentSecurityPolicyClientE) +STUB( + "76ZzkysrBs8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEE6assignEPS5_PFvS7_EPNS2_10LibContextE) +STUB("76gMgZi79iU", _ZN7WebCore8SVGNames13transformAttrE) +STUB( + "76kn6lqlWm4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEE11get_deleterEv) +STUB( + "76lpLfH-Ma0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEEC1ERKSA_) +STUB("76n9U18PgpU", _ZNK3sce2np13JsonArrayImpl16itemArrayDestroyEPNS1_9ItemArrayE) +STUB( + "76wRMuipNhs", + _ZN3sce7Toolkit2NP8Matching9Interface18joinInvitedSessionEPKNS1_17MessageAttachmentEPNS1_9Utilities6FutureINS1_18SessionInformationEEEi) +STUB("76wkMtNFpLQ", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110TaskStatusEEC2EPS6_) +STUB( + "77+m4HTuY04", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("770617+VABw", _ZN7WebCore15JSDOMWindowBase25s_globalObjectMethodTableE) +STUB("774Mee21wKk", sceFontGraphicsStructureDesign) +STUB("774ZHX0Z3Cc", FT_MulFix) +STUB( + "77GnmwDI5kM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEE11get_deleterEv) +STUB( + "77HS-XS5xmQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEC1EPKS8_) +STUB( + "77cAhsdJ7jk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEEaSERKSA_) +STUB( + "77cwQdsCXrE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEmmEv) +STUB("77fynmb9f78", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIfE21intrusive_ptr_sub_refEPS4_) +STUB("77gX-adHTvM", Java_com_sun_bluray_ui_FAABaseComponent_deleteHandle) +STUB( + "77j0gjW1lFI", + _ZN7WebCore19JSHTMLSelectElement18getOwnPropertySlotEPN3JSC8JSObjectEPNS1_14JSGlobalObjectENS1_12PropertyNameERNS1_12PropertySlotE) +STUB( + "77j7KdONCHU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEmmEi) +STUB( + "77lBa6KIKV0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEED2Ev) +STUB("77ooWxGOIVs", scePadEnableAutoDetect) +STUB( + "77pIHINUs70", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEdeEv) +STUB("77pL1FoD4I4", __mb_cur_max) +STUB("77qd0ksTwdI", log1pl) +STUB( + "77tK42Mvf00", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEC2EPS8_) +STUB( + "77txYVo+u04", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEC1EPS7_PFvS9_EPNS2_10LibContextE) +STUB("77uWF3Z2q90", _Restore_state) +STUB("78+MUflpKSE", _ZN7WebCore16MIMETypeRegistry25isPDFOrPostScriptMIMETypeERKN3WTF6StringE) +STUB( + "786H+Wq6bx8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEC1EPS8_) +STUB("7886GhNYAHg", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError11sourceIsSetEv) +STUB("78B+yM0R6Dc", _ZN3JSC19numberOfDFGCompilesEPK15OpaqueJSContextPK13OpaqueJSValue) +STUB("78CvgJMjnVw", _ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamRankResultC2ERKS4_) +STUB("78ESYDgjRGo", _ZN3sce2Np9CppWebApi7Matches2V113ChildActivityD1Ev) +STUB("78FiHequa9U", getlogin_r) +STUB( + "78JQWsvUvpc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "78Jjoxx9Sss", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEppEv) +STUB( + "78R3yWyAjOo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEC2EPS8_) +STUB( + "78RZKc70FO4", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersD2Ev) +STUB( + "78VqIyga8P4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEC1Ev) +STUB("78W-VoyWnjE", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia11ScreenshotsEE5resetEv) +STUB("78Wi0rCCkdA", _ZN7WebCore11DisplayList8SetStateD1Ev) +STUB("78Xk34TUyIU", + _ZNK3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer14joinStateIsSetEv) +STUB("78YSUMVcvLY", WKBundlePageGetMainFrame) +STUB("78dQnGbpOnE", _ZN3sce2np9JsonValue8SetArrayEPKNS0_9JsonArrayE) +STUB("78hPgBeEJKw", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEEptEv) +STUB("78i6RsGXf4k", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V18Variable14unsetPrevValueEv) +STUB("78jTzk16L3k", bemp2sys_pesparser_destroy) +STUB( + "78mSxku5MWU", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_13PlayerSessionEEE) +STUB( + "78ogtWVAx6g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEEcvbEv) +STUB( + "78tloWhTFtk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEED1Ev) +STUB( + "78uuMm404dk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEE7add_refEv) +STUB("78xaBy7LnGw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ResponseCooperativeResultEEC1EPS6_) +STUB("78yvwepeL7U", _ZN3sce2np7RingBuf15CheckinForWriteEm) +STUB("7980b3DyBQg", uprv_decNumberToIntegralValue_67) +STUB( + "79ArUpmL3MM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEEaSERSA_) +STUB("79EsKMqL-jQ", sceFsExfatfsMkfs) +STUB("79JBRSF8Q+o", _Z34sceGpuDebuggerUnregisterShaderCodePKN3sce3Gnm16PsStageRegistersE) +STUB( + "79Ja0fjHbUs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "79Jftt4Th5c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEmmEv) +STUB("79M-JqvvGo0", sceNpWebApiCreateHandle) +STUB("79OE9ov2-JQ", _ZN3JSC28getHashMapBucketKeyClassInfoEv) +STUB("79UCYGe6xtQ", _ZN2GK9PlayerPSN5resetEv) +STUB("79VtWg0CMd0", sceMbusDebugAcquireControlList) +STUB( + "79WZ7d5M8F4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEppEi) +STUB( + "79Yxa4WGT6M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEC1Ev) +STUB("79bfFTip+p4", + _ZN7WebCore17FrameLoaderClient38shouldForceUniversalAccessFromLocalURLERKN3WTF3URLE) +STUB( + "79d4APqf+4g", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEneERKS9_) +STUB("79k9QVa88ys", _ZN3sce2Np9CppWebApi11Matchmaking2V15ErrorD1Ev) +STUB( + "79mAp39tjes", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("79s2tnYQI6I", wcsrtombs_s) +STUB("79siTMMdXfs", scePlayReadyApiStop) +STUB("79t-WkazKN0", mono_aot_Sce_Vsh_PatchCheckerClientWrapperunbox_trampoline_addresses) +STUB( + "79wG3N6AnFs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "7A-lPhBoeXM", + _ZN7WebCore21PlatformKeyboardEvent23setCurrentModifierStateEN3WTF9OptionSetINS_13PlatformEvent8ModifierEEE) +STUB("7A3PTx2lVF0", _ZN12video_parser18cMp4FFLHndlManager14unlockPlayHndlEv) +STUB( + "7A69CEF63r0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEC2Ev) +STUB("7AFSgbCZEmU", mono_aot_System_Xml_Linqplt) +STUB( + "7AHSWPv9awY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEC1ERKS7_) +STUB("7ALiNKkulaY", _ZN3sce2Np9CppWebApi7Matches2V14TaskC1EPNS1_6Common10LibContextE) +STUB( + "7ASQQbU3yDo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEEaSERKS9_) +STUB( + "7AVkwsW+BUQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEeqERKS9_) +STUB("7AX57BV1GaQ", WKViewReplyCreateNewPage) +STUB( + "7AX9qj3bqFU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEC1ERKS7_) +STUB("7AaHj1O8-gI", _ZNSt14numeric_limitsImE6digitsE) +STUB( + "7AcCMcHRu0I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE21intrusive_ptr_add_refEPS9_) +STUB("7Af2XxmI-m8", _ZNK3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead11getPlatformEv) +STUB( + "7AnVUXtKa8Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEneERKS9_) +STUB( + "7ApMEFqFUiE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEE21intrusive_ptr_add_refEPS7_) +STUB("7ApjkqlvXFY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEED1Ev) +STUB("7Arj-FS88Kk", _ZN7WebCore16HTMLInputElement13setAutoFilledEb) +STUB("7Av2fvlAxRU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V510AnnotationEEC2EPS6_) +STUB("7Ayp3diNYnk", sceMusicPlayerServiceStop) +STUB( + "7B2QvBMWfWY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE8copyFromERKS9_) +STUB("7B3cQHFuTlE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE8copyFromERKS7_) +STUB("7B4DD-851M8", _ZN7WebCore21identifierToUSVStringERN3JSC9ExecStateERKNS0_10IdentifierE) +STUB("7B668XL7yag", sceCesUtf16StrGetMbcsLen) +STUB("7B7QLlsyCo8", WKGeolocationPositionCreate) +STUB( + "7BA+fDn5KMc", + _ZN8meta_gen11MsvPromoter28setKeyValue_TBLAVC_DrmStringENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB("7BF+8K88NEY", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getInteger9Ev) +STUB( + "7BFGZ8lFgJU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEE7add_refEv) +STUB("7BFSgwCJBYI", sceCesRefersUcsProfileIso8859_4) +STUB("7BFvD2kQfrE", _ZN7WebCore7Element16getAttributeNodeERKN3WTF12AtomicStringE) +STUB("7BG7O4dBPoM", ucnv_swap_67) +STUB("7BGUDQDJu-A", posix_spawnattr_getflags) +STUB( + "7BJ9L9m3B+A", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEeqERKS9_) +STUB( + "7BP2GkJzjUM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEC1EPS8_) +STUB("7BZO9j0ZIwE", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEEdeEv) +STUB( + "7BZROIPvMuQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEplEm) +STUB( + "7Bc6AIhycYA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEED1Ev) +STUB( + "7BeF4oIC4vA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEEC2ERKSA_) +STUB("7BjZKcN+oZ4", sceNpBase64UrlGetDecodeSize) +STUB("7Bt5pBC-Aco", sceSaveDataGetSaveDataMemory) +STUB("7By5faPTEho", u_parseMessage_67) +STUB("7BzI5YqoVWY", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification11RefreshRoomEE5resetEv) +STUB( + "7CEqXXMCyzw", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities33GetUsersActivitiesResponseFactory6createEPNS1_6Common10LibContextERKNS6_6VectorINS6_12IntrusivePtrINS4_14UserActivitiesEEEEEPNSA_INS4_26GetUsersActivitiesResponseEEE) +STUB( + "7CFzd6+oKrg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE10setContextEPNS2_10LibContextE) +STUB( + "7CKcZemE8Gc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEEcvbEv) +STUB("7CLRifgN2RQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession21joinableUserTypeIsSetEv) +STUB( + "7CNbhRg6z7Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEE7get_refEv) +STUB( + "7CT0at-Czuw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEED1Ev) +STUB( + "7CU0vga3sFM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEED1Ev) +STUB("7CXAnIwFY3U", sceFiosCacheContainsFileRangeSync) +STUB("7CY1Q4PhKOI", _ZN7WebCore4Page28effectiveAppearanceDidChangeEbb) +STUB("7D-evFZkLUk", sceNpGriefReportCdAbortRequest) +STUB( + "7D2CxKksbb4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "7D5ygYnswIs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEneERKS9_) +STUB( + "7DNlEW55cTI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEE3getEv) +STUB("7DOKh5QyHmQ", _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody13unsetLocationEv) +STUB( + "7DP7GI2l-5A", + _ZN9Inspector26LayerTreeBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("7DS-qtZoKjM", cairo_matrix_scale) +STUB("7DVasQnfPqQ", GCC_except_table400) +STUB( + "7DZnpel8GOk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE10setContextEPNS2_10LibContextE) +STUB( + "7DaEWQqe3mI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("7DeHVWFBEQY", _ZN3sce2Np9CppWebApi6Common6VectorImE7popBackEv) +STUB( + "7DepnTZTAY4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE7reserveEi) +STUB("7DgwqVzqeeo", fuse_reply_attr) +STUB("7DhQVaOVB0E", _ZN3sce2Np9CppWebApi7Matches2V118RequestTeamResultsD2Ev) +STUB( + "7DhW72gDfsE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEED1Ev) +STUB("7DiGXa4sf0o", _ZN3sce2Np9CppWebApi7Matches2V113ErrorResponseC2EPNS1_6Common10LibContextE) +STUB( + "7DiIq-ALGr4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("7DjBMqKjDio", uset_addString_67) +STUB("7Dk45PQZX1k", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification11RefreshRoomEE3getEv) +STUB("7Dr8pkZQCi0", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_11TusVariableENS2_IS4_EEEEneERKS7_) +STUB( + "7Dz6hRo73fE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEED2Ev) +STUB("7DzM2fl46gU", _ZTISt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE) +STUB("7E+h3yiZjKw", u_isIDStart) +STUB("7E-EgYhZLug", Java_java_io_ObjectStreamClass_getFieldIDs) +STUB( + "7E1-qzFvEGs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("7E3P4fyLyao", _ZN7WebCore8SVGNames11glyphRefTagE) +STUB("7E6ivBa-C9c", _ZN3sce7Toolkit2NP2V27NpUtils5IdMap8deepCopyERKS4_) +STUB( + "7E7OndXMRuA", + _ZN3sce7Toolkit2NP12ActivityFeed9Interface11getUserNewsEPKNS1_18GetUserNewsRequestEPNS1_9Utilities6FutureISt6vectorINS1_17ActivityFeedStoryENS1_15AppSTLAllocatorISA_EEEEEb) +STUB("7E98yW74AZY", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIjEdeEv) +STUB("7EAqBtDmsgw", mono_aot_Sce_Vsh_SQLiteAuxunbox_trampoline_addresses) +STUB("7EDara0g2AI", Java_java_io_FileInputStream_available0) +STUB("7EEa7rdbEss", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEC2ERS7_) +STUB( + "7EHRwn7h0uk", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfiles16unsetlanguageSetEv) +STUB( + "7ESIRbZTPZA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEmmEv) +STUB("7ETpt3V2fEU", unorm2_isNormalized) +STUB("7EU3HpgxcvY", mono_free) +STUB("7Ea1zU7f94g", mono_counter_get_name) +STUB( + "7Eh1-HfaDno", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEC1EPS6_PNS2_10LibContextE) +STUB("7EhPN5Q2Jxo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEdeEv) +STUB( + "7EiQXh2nWio", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS2_6VectorINS5_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS5_INS8_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISH_SI_EE) +STUB("7EirbE7st4E", _ZTVN10__cxxabiv117__pbase_type_infoE) +STUB("7EjM25S0-Rk", _ZN7WebCore10ScrollView17setScrollbarModesENS_13ScrollbarModeES1_bb) +STUB("7EkyOOXfgDo", + _ZN15AbstractStorage14TwitterStorage11DeserializeESt10shared_ptrINS_7ContentEEPS1_INS_4ItemEE) +STUB("7EmaZ+NX7rg", sceCesUcs2ToEucJp) +STUB("7EnjUtnAN+o", sceUserServiceSetVolumeForMorpheusSidetone) +STUB("7EqOpt3gTIg", WKWebsiteDataStoreIsStatisticsHasHadUserInteraction) +STUB( + "7F-xm9YJIHk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEptEv) +STUB("7F1CfFQ0lkw", uset_contains_59) +STUB("7F1EpvvXXx8", _ZN7WebCore8SVGNames16word_spacingAttrE) +STUB( + "7F59nvBkTv4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE7popBackEv) +STUB( + "7FNdSs9jNEY", + _ZThn152_N7WebCore8Document17addConsoleMessageEN3JSC13MessageSourceENS1_12MessageLevelERKN3WTF6StringEm) +STUB( + "7FO4HMO-8Xc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEED2Ev) +STUB("7FORJLFZ-fI", __ubsan_handle_sub_overflow) +STUB( + "7FPZUmPgyx0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEEaSERKSA_) +STUB("7FQrD9yTNcU", _ZN7WebCore6Editor19insertUnorderedListEv) +STUB( + "7FVTs160c0M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEEcvbEv) +STUB("7FZsbyVRM4U", sceAjmBatchJobControl) +STUB( + "7Fa+BAk+yl0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEE7get_refEv) +STUB("7Fdo0eTIT9s", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi28ParameterToDeleteGameSessionD2Ev) +STUB( + "7FdzVlEiPnM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEED1Ev) +STUB("7FhFjjduNvs", mono_signature_get_desc) +STUB("7FjitE7KKm4", _Gamma_big) +STUB( + "7Fk41JIcLlo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE6resizeEj) +STUB("7FpTaZpBUh0", sceShellCoreUtilGetEntitlementIdFromNpEntitlementMgr) +STUB( + "7FqF6fGODRs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEdeEv) +STUB("7FsLa3ZN-I4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEEixEm) +STUB( + "7Fy5v1rmAEg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB("7FzEsuBrBhg", sceBgftServiceIntDownloadRegisterTaskByStorage) +STUB("7G+D4ck3iSI", _ZN3WTF22userPreferredLanguagesEv) +STUB("7G0+Y6lSGqw", _ZN3sce7Toolkit2NP28NpSessionDetailedInformationC2Ev) +STUB("7G7hHL9msVg", _ZN9Inspector21InspectorConsoleAgentnaEm) +STUB("7GF7CfOKTBw", _ZN3WTF13MetaAllocatorC2ERNS_4LockEmm) +STUB("7GGGQHMZ5JE", _ZN23sceMetadataReaderWriter16getNumOfMimeTypeERKSsPi) +STUB("7GLAqVxG5yI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEixEm) +STUB("7GLcx3V-PiI", _ZN7WebCore11DisplayList25DrawDotsForDocumentMarkerD0Ev) +STUB("7GP5CuWPFTI", _ZN7WebCore9HTMLNames14formactionAttrE) +STUB( + "7GQ2Maqjzjw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEEC1ERKSA_) +STUB("7GgGIxmwA6I", _FXp_ldexpx) +STUB("7GiaU8HwHlE", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOffer9terminateEv) +STUB("7GkWDMiMhFg", _ZN7WebCore8SVGNames15filterUnitsAttrE) +STUB("7GlSiMRHJKM", _ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequest8fromJsonERKNS_4Json5ValueE) +STUB("7GlkHqJMVSc", _ZN9Inspector15RemoteInspector15updateTargetMapEPNS_24RemoteControllableTargetE) +STUB( + "7Gq4fTYcvCk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEC1EPS6_PNS2_10LibContextE) +STUB( + "7GqNHHgceXk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEC1EPNS2_10LibContextE) +STUB( + "7GrER6bqFz8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEEC2ERS9_) +STUB("7Gs6i-8AUM0", utmscale_toInt64_67) +STUB("7GuAkdz0C9A", scePlayReadyProfileStart) +STUB( + "7GvxbWYL8N4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("7H+asvpsk4I", _ZN3sce2Np9CppWebApi13InGameCatalog2V55Error10setMessageEPKc) +STUB("7H0iTOciTLo", pthread_mutex_lock) +STUB("7H1uXJTxxD4", _ZN3sce7Toolkit2NP2V212ActivityFeed5StoryC1Ev) +STUB( + "7H6fVQJIvw4", + _ZN9Inspector18InjectedScriptBaseC2ERKN3WTF6StringEN10Deprecated12ScriptObjectEPNS_20InspectorEnvironmentE) +STUB( + "7H72EJlhanw", + _ZN8meta_gen11MsvPromoter32setKeyValue_TBLAVC_IconCodecTypeENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB("7HCQJcS95eo", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110PlayerTypeEEC1EPS6_) +STUB( + "7HEsVU0vsx4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEppEi) +STUB("7HImxy0l66w", mono_aot_System_Collectionsplt) +STUB("7HJk0CRl0Os", _ZN12video_parser5vpcom8datetime8DateTime24ConvertRtcTickToDateTimeEPm) +STUB("7HOzNJVbN0g", + _ZN3JSC16IsoSubspacePerVMC1EN3WTF8FunctionIFNS0_18SubspaceParametersERNS_2VMEEEE) +STUB("7HQ4c0Hz+2Q", sceFsUfsGetExtentMap) +STUB("7HWVUdqZfGs", ubidi_getReorderingMode_67) +STUB( + "7HbdRVex2+Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEEC1ERKS9_) +STUB("7HdEC2L-nDs", _ZN3sce7Toolkit2NP2V211SharedMedia6VideosD2Ev) +STUB("7HeGitBJQkM", _ZN3JSC7Symbols16fixedPrivateNameE) +STUB("7HfHzXUNFrk", _ZN3sce7Toolkit2NP5EventC1EPKNS1_8UserInfoE) +STUB("7HhWN6K9Cd8", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi21ParameterToLeaveMatchC1ERS5_) +STUB("7Hm+Mw2EdTI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEEC2Ev) +STUB("7HmaD1MaWQs", sceAgcSdmaCopyLinear) +STUB("7HoSJ30RWXk", FT_Outline_Translate) +STUB("7HsB7ixRwJ8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEEC2Ev) +STUB( + "7HuxTchuRT4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEEC1ERKSA_) +STUB( + "7HvwLP5hr9A", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEneERKS9_) +STUB("7HwcP1R63Eo", _ZNK9Inspector15RemoteInspector18clientCapabilitiesEv) +STUB( + "7HxETh-r8Ew", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEE5resetEPS7_) +STUB("7Hzd9G4LEyU", rgctx_fetch_trampoline_rgctx_53_p) +STUB("7I+E3HMa9PI", WKPageFindString) +STUB("7I+scz0D8Ig", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE6resizeEj) +STUB("7I1u2TisWQo", coil_mkstemp) +STUB("7I2Gv9s5KZo", rgctx_fetch_trampoline_rgctx_97_p) +STUB("7I2lZS0DRjA", _ZN3sce2np11NpHttpTrans13GetResultCodeEPNS0_6HandleE) +STUB( + "7I8IAovn7lA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEE7add_refEv) +STUB("7IAjXmWM4bg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEEmmEi) +STUB("7IB2cMpxifg", _ZN7WebCore11DisplayList20FillRectWithGradientD0Ev) +STUB( + "7IDdNe0C2tM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEC1Ev) +STUB("7IHg-sW3Ez8", + _ZN3sce7Toolkit2NP2V24Core23getFunctionTypeAsStringENS3_12FunctionTypeERNS3_15StringifyResultE) +STUB("7IKPBcyNsFU", _ZN7WebCore8XMLNames8baseAttrE) +STUB("7ILy1oxtHdU", __tsan_read4) +STUB("7IN+T9v1oAg", _ZNK3WTF6String28convertToUppercaseWithLocaleERKNS_10AtomStringE) +STUB("7IQ862KCLk0", _ZN15AbstractStorage12LocalContent8SeekByteEliPl) +STUB( + "7IRk89c3PwE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEmmEv) +STUB( + "7IS0UUV9434", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEEptEv) +STUB("7IS7HX6IhO4", _ZN3JSC2VM35customGetterSetterFunctionSpaceSlowEv) +STUB("7IVk0mPdQQE", uregex_utext_unescape_charAt_67) +STUB( + "7IXwER6ry8M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("7Id44jEI1VI", _ZN7WebCore9HTMLNames17aria_selectedAttrE) +STUB( + "7Ifj7Rf+8lU", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "7IgV8DBuzJQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEED2Ev) +STUB("7IhJrsLLTcg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEC1ERS7_) +STUB("7IiUdURpH0k", sceUserServiceSetAppearOfflineSetting) +STUB("7IlxAwnpT4g", _ZN3JSC12StringObject21deletePropertyByIndexEPNS_6JSCellEPNS_14JSGlobalObjectEj) +STUB("7ImQAMWPZCY", + Java_com_sony_bdjstack_javax_media_controls_VideoSystem_setGraphicsPlaneOffsetValue) +STUB("7Io5FhgoXzk", unumf_resultGetAllFieldPositions_67) +STUB("7IohJqId6Mw", _ZNSt9basic_iosIwSt11char_traitsIwEED0Ev) +STUB("7IrVBOtOdZ4", __asan_stack_malloc_3) +STUB( + "7IrfjRetWn8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEneERKS9_) +STUB( + "7IrovRN3paM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("7ItP6sEP+m0", _ZN3sce2Np9CppWebApi7Matches2V117LeaveMatchRequest19unsetNpServiceLabelEv) +STUB( + "7Itnp5nXvE4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEC2Ev) +STUB("7IwKPW53RMs", _ZN7WebCore8JSDOMURL15subspaceForImplERN3JSC2VME) +STUB( + "7J2RnYdPufg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEmmEi) +STUB( + "7J33a2j38rM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEC1EPKS8_) +STUB("7J78O2z8glA", _ZN3WTF6StringC2EPKDsj) +STUB("7J9IYIejSDs", sceShareUtilityAdvanceSetPlayingContent) +STUB( + "7JGet6gjHrs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEC2ERKS7_) +STUB("7JJNLG2nkY0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed4FeedEE3getEv) +STUB("7JNcL38ez2s", sceMbusChangeAppModuleState) +STUB( + "7JQ7gILI4-Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEC1EPS8_) +STUB( + "7JRzFSxYfS0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEEC1Ev) +STUB( + "7JVcg4G3ehU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("7JViFoeKCC0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12RoomPingTimeEE5resetEv) +STUB("7JWHhmrDvEU", + _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody19getTicketAttributesEv) +STUB( + "7JWpvswMd8w", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEdeEv) +STUB( + "7Ja6sz-cbr0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEdeEv) +STUB("7JgSJnaByIs", sceShellCoreUtilRequestShutdown) +STUB( + "7JghICrSrmk", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser9terminateEv) +STUB( + "7JmKDYGUdR4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEneERKS9_) +STUB( + "7Jn3IjOuLn4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEEC1ERKSA_) +STUB("7Jn6EsJwZN8", WKWebsiteDataStoreSetStatisticsSubframeUnderTopFrameOrigin) +STUB( + "7Jnbrbv+QNA", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearch10unsetlimitEv) +STUB("7Jp3g-qTgZw", scalbln) +STUB("7JrPBRw53sM", _ZN3JSC2VM20sharedInstanceExistsEv) +STUB( + "7JvOGv8o-RY", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "7Jvqysh06Kg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("7JwKchX2P8o", _ZN15AbstractStorage14YoutubeService4StopEv) +STUB( + "7JyEaRyTrZE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE5clearEv) +STUB("7JymdqpH2yc", _ZN7WebCore9FrameView36scheduleLayerFlushAllowingThrottlingEv) +STUB("7K0aIXQSuEg", _ZN7WebCore9HTMLNames12requiredAttrE) +STUB( + "7K2oR22AcqE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEC1Ev) +STUB( + "7K6w63LYeKE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("7K9GEBT5Smg", unorm_quickCheck_59) +STUB("7KB0OLPbezI", _ZNK7WebCore10ScrollView18contentsToRootViewERKNS_8IntPointE) +STUB( + "7KH8IRw4xFo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE5clearEv) +STUB("7KQckhaDi18", curl_easy_perform) +STUB( + "7KX-AIpXLZ4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("7Kh86vJqtxw", sceNpTrophyConfigGetTrophyGroupDetails) +STUB("7KjKZ1IVMSc", _ZN3WTF10TextStream10startGroupEv) +STUB( + "7Kl0B9urzQE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEeqERKS9_) +STUB( + "7Kl41JL61KM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE3endEv) +STUB( + "7KpMdxQON90", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEEC2ERSA_) +STUB( + "7Kqo9m2ulPg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEEC2ERSA_) +STUB("7KuwdAt0kQQ", mdbg_call) +STUB("7Kw-D+awA14", mono_aot_Sce_Vsh_Sl2_Sl2Commonplt) +STUB( + "7L+LqJ0pcis", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE5eraseENS2_8IteratorIS6_EERS9_) +STUB("7L1FHOv9bkc", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadDataC2ERS5_) +STUB("7L1RtLIikSw", mono_aot_Sce_Vsh_MyGameListunwind_info) +STUB("7L5Pcyx9NOA", udatpg_open_67) +STUB("7LCq4lSlmw4", sceUserServiceSetPasscode) +STUB( + "7LESPmZegaI", + _ZN9Inspector21InspectorRuntimeAgent14callFunctionOnERN3WTF6StringERKS2_S5_PKNS1_8JSONImpl5ArrayEPKbSB_SB_SB_RNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISF_EEEERNS1_8OptionalIbEE) +STUB("7LFNG4CO1-s", + _ZNK3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends9hasoffsetEv) +STUB("7LNlKUwxeu4", _ZN3sce7Toolkit2NP2V27Session12SessionImageD2Ev) +STUB("7LNuwhEM700", ugender_getInstance_67) +STUB( + "7LPhQCbr3vs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE6resizeEj) +STUB("7LRQKgIIFRM", monoeg_g_list_insert_before) +STUB("7LaBdIC2qEU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEE3getEv) +STUB("7LaChig9ovU", WKNotificationManagerSetProvider) +STUB("7LcZWt2aJoc", _ZN3sce7Toolkit2NP28NpSessionDetailedInformationD2Ev) +STUB("7Lcfo8SmpsU", sceNgs2GeomResetListenerParam) +STUB( + "7LcgqxYwxSY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEC2Ev) +STUB("7LftIjvZ5SE", _ZN3NTF21ResourceRequestLoggerD0Ev) +STUB( + "7Lj2ga9vDCM", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetInteger1Ev) +STUB("7Lj9Qgh39Jk", WKAXObjectURL) +STUB( + "7Lo8eAYfTsQ", + _ZN9Inspector14InjectedScript19evaluateOnCallFrameERN3WTF6StringEN3JSC7JSValueERKS2_S7_S7_bbbbRNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISB_EEEERNS1_8OptionalIbEERNSG_IiEE) +STUB("7Lsstfqdsv4", _GLOBAL__sub_I_iostream.cpp) +STUB("7LttsVl3WAg", _ZN7WebCore9HTMLNames7sampTagE) +STUB("7LvuNzXfACY", coil_registry_get_str) +STUB("7Ly52zaL44Q", asin) +STUB("7M+1UFqWOAI", sceVideodec2GetHevcPictureInfo) +STUB( + "7M0moYHVsGQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEE11get_deleterEv) +STUB( + "7M3+xdUFQnA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEE7add_refEv) +STUB( + "7MGP-Ud6Nms", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEaSERKS7_) +STUB( + "7MIinVbUNew", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "7MORNcEQ4d4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEC1ERKS7_) +STUB("7MSYSwjYHsM", _ZN7WebCore9HTMLNames15bordercolorAttrE) +STUB( + "7MZoAs2w8Ag", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEE11get_deleterEv) +STUB( + "7Mb7ZVzDZbg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEcvbEv) +STUB( + "7McbJzLttL4", + _ZN3JSC8Bindings13RuntimeObject19getOwnPropertyNamesEPNS_8JSObjectEPNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("7Me766pFw4k", mono_aot_Sce_Vsh_Np_AuCheckunbox_trampolines) +STUB("7MeYabjRcQo", _ZNK7WebCore6Quirks47shouldIgnoreContentObservationForSyntheticClickEb) +STUB("7MgpqYYA8eA", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16UnlockedTrophiesEE19setCustomReturnCodeEi) +STUB("7MlFRuRpW+4", sceNpUniversalDataSystemIntDestroyRecordObject) +STUB("7Mp6qE235Qc", sceSlimglCompositorSetIndirectCanvasCommand) +STUB("7MrgNVLFbAc", il2cpp_runtime_invoke) +STUB("7MsYv4D1Ang", _ZNK3sce3Xml3Dom8Document7getTextENS1_6NodeIdE) +STUB("7Muy2w1kJzc", + _ZN7WebCore14MicrotaskQueue6appendEOSt10unique_ptrINS_13EventLoopTaskESt14default_deleteIS2_EE) +STUB( + "7N4izqijO0U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "7N95rKdZmb0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEED1Ev) +STUB( + "7NFlvm1gidk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEED1Ev) +STUB( + "7NJX3t6Z9Vs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE7popBackEv) +STUB("7NL6s-ybpfg", _ZN7WebCore18PlatformTimeRangesnwEm) +STUB( + "7NLSmEb0TRU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("7NQGsY7VY3c", _ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1ERKSt8_Locinfom) +STUB("7NTjDQ+gR7M", internal_memalign) +STUB("7NYEzJ9SJbM", sceAudio3dAudioOutOutput) +STUB( + "7NYy6otja3s", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEEaSERKSC_) +STUB("7NdcD91mdEY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEC2EPS8_) +STUB("7Nm1o42CbJ8", eglGetCurrentContext) +STUB( + "7Nnr8nKU2sU", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities21UserActivitiesFactory7destroyEPNS4_14UserActivitiesE) +STUB("7Nsc1Qh-+iE", ucol_getUnsafeSet_67) +STUB( + "7NwMkfM0D84", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS5_INS7_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB( + "7NwV-XSi-oM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE8pushBackERKS8_) +STUB("7NwggrWJ5cA", __sys_regmgr_call) +STUB("7NxubT1-VV4", sceCompositorReserveCommandBuffer) +STUB("7NzOZjxbR7Q", _ZN3sce7Toolkit2NP2V27Session7Request6Create16SESSION_NAME_LENE) +STUB( + "7O+wAMEtUM8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEixEm) +STUB("7O-vjsHecbY", _LXp_ldexpx) +STUB("7O0JI1X9bYY", _ZN3JSC7Symbols41putStringIteratorInternalFieldPrivateNameE) +STUB("7O6DI5IiOxQ", sceSlimglClientMonitorServerStart) +STUB("7OCTkL2oWyg", _ZNSt6_Mutex7_UnlockEv) +STUB("7OD+b+1FcDY", _ZN7WebCore11DisplayList9ClearRectD1Ev) +STUB("7OGapdx1hQM", _ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayerD1Ev) +STUB( + "7OLbwC+lF8o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("7ONbnvN2brw", _ZN3sce7Toolkit2NP2V23TUS7Request7GetDataD1Ev) +STUB("7OO0uCJWILQ", _ZTIPDh) +STUB( + "7OTmEmevdEo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("7OU+l3x91UA", ucase_getCaseLocale_67) +STUB("7Oa6o6aCtYw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEEaSERKS7_) +STUB("7Oc5AygU+9Q", WKImeEventRelease) +STUB( + "7Ogfar5Ba6Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEE11release_refEv) +STUB("7OiI1ObT1QU", _ZN3sce2np11NpHttpTransD1Ev) +STUB( + "7OjyRUcvNP4", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("7OlZkMu6Nbg", scePerfPmcSelectEvent) +STUB("7OotxFIdhy8", _ZN3sce2np10JsonNumber3SetEPKc) +STUB("7OpNDDNMJyo", __sys_dl_get_metadata) +STUB("7OrP2bdX0Pc", monoeg_g_ptr_array_remove_index_fast) +STUB( + "7OuvCjt89+w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("7P1Wm-5KgAY", _ZNSt12domain_errorD1Ev) +STUB("7P1p4DxMskU", mono_aot_System_ComponentModel_DataAnnotationsunwind_info) +STUB("7P4rQ1juJAk", mono_aot_Sce_Vsh_EventServiceWrapperunwind_info) +STUB("7PL-muel3rE", + _ZN3sce7Toolkit2NP2V211SocialMedia7Request21PostMessageToFacebook17MAX_USER_TEXT_LENE) +STUB( + "7PTSIbh5Wns", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEppEi) +STUB( + "7PY+Hq4LjJM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("7Pc0nOTw8po", verrc) +STUB("7PkSz+qnTto", fsetpos) +STUB("7PlnoccwZfQ", + _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchDetail10getmatchIdEv) +STUB("7Psx1DlAyE4", getprogname) +STUB("7PxmvOEX3oc", wctomb) +STUB("7PyS1fOX8DA", rgctx_fetch_trampoline_mrgctx_102) +STUB("7Q-U-8yN1Hk", sceKernelIccIndicatorStandbyBoot) +STUB("7Q-sEvjg7n8", uregion_getRegionCode_67) +STUB( + "7Q1e7y+XOis", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEED1Ev) +STUB( + "7Q1vcZ49zS8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEC1EPS8_) +STUB("7Q8puVvGDqI", _ZN3sce7Toolkit2NP2V26Friend7FriendsC1ERKS4_) +STUB("7QA+NMGjKK4", sceLibcFopenWithFD) +STUB("7QCJi-znzGY", mono_aot_Sce_Vsh_VideoServiceWrapperplt_end) +STUB("7QDa1ULaJ7k", _ZN7WebCore4Path12closeSubpathEv) +STUB("7QDrajf3MxI", scePlayReadyLicenseAcqProcessAckResponse) +STUB( + "7QKGzl4lW6k", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEptEv) +STUB("7QLrixwVHcU", sceRemoteplayProhibitStreaming) +STUB( + "7QNeLcaNTSw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "7QRqLhCABIo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEixEm) +STUB("7QTMSPEe1lw", _ZNK7WebCore11MediaPlayer24shouldUsePersistentCacheEv) +STUB("7QVVkqjdGc0", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku8getPriceEv) +STUB("7QZ7mYR+qgU", mono_aot_Sce_Vsh_PartyCommonplt_end) +STUB("7QZtURYnXG4", sceShareSetContentParam) +STUB("7Qe-v+V94Ic", RSA_flags) +STUB("7QgvTqUGFlU", SSL_getSessionInfo) +STUB( + "7Qhud0z+5o0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("7QoLN1BNvco", mono_aot_platformplt) +STUB("7QoTYzVuzto", sceVideoRecordingOpen) +STUB("7Qq+PAPNTUM", _ZNK3sce2Np9CppWebApi14SessionManager2V114Representative11getOnlineIdEv) +STUB("7QtnLq2iAsQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEED2Ev) +STUB("7QxQ+HfCy3M", _ZN3sce2np9JsonArrayD0Ev) +STUB( + "7R2isan9UJg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("7R65C8WTc9E", _ZN3sce2Np9CppWebApi7Matches2V114ResponseMemberC2EPNS1_6Common10LibContextE) +STUB("7R83-mIE4ik", WKViewAccessibilityRootObject) +STUB( + "7R9-UbfWFYo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE6resizeEj) +STUB("7RBN7nKypLc", SHA1) +STUB("7RBSTKGrmDA", sceSslGetNameEntryInfo) +STUB("7REoZxCEojI", WKRunLoopRunMain) +STUB("7RFJWA3zTqQ", mono_mlist_last) +STUB( + "7RM8P5SDhQI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "7RMXisOvuPE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEneERKS9_) +STUB("7RUwcMgn2J4", png_set_gamma) +STUB("7RWO+H8RWno", uhash_init_67) +STUB("7RYfALbinDw", tolow_tab) +STUB("7RZABO0cMFI", _ZN3WTF17StringPrintStream9toCStringEv) +STUB( + "7RcsGZeTYFc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEED2Ev) +STUB( + "7ReIoMc02cg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("7RnkdybfYiQ", _ZN15AbstractStorage12Serializable12readExternalESt10shared_ptrINS_7ContentEE) +STUB("7RoTnYEHEFw", _ZN7WebCore18JSHTMLVideoElementD2Ev) +STUB("7RpkbtIp-o4", _ZNK7WebCore12SettingsBase18standardFontFamilyE11UScriptCode) +STUB("7Rsq06tRYkc", WKViewGetViewScaleFactor) +STUB("7RvDjfy4gUA", tls_read) +STUB( + "7S+nI3cAT+o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("7S1e4l2WT+4", _ZN3WTF14FileSystemImpl14MappedFileDataC1ERKNS_6StringENS0_14MappedFileModeERb) +STUB("7S5wcWqncYU", _ZN7WebCore22MutableStylePropertiesD1Ev) +STUB("7S61OCMFZLU", _CESU8Data_67) +STUB("7S6OwXEoTmk", sceCustomMusicCoreBgmOpen2) +STUB( + "7S8nSDhXnCE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEeqERKS9_) +STUB("7SE4sjhlOCI", sceUserServiceSetIsFakePlus) +STUB("7SEHgnHRau0", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V224TestForProfanityResponseC2EPNS1_6Common10LibContextE) +STUB("7SFwZ9sFGhE", mono_lock_free_queue_dequeue) +STUB( + "7SLAt3NeN4E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEE3getEv) +STUB("7SMZl95BBCk", _ZN7WebCore4Page12setSessionIDEN3PAL9SessionIDE) +STUB( + "7SOKBz1srl8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEEcvbEv) +STUB("7SOVShNUDXo", sceMusicPlayerServiceEndTransaction) +STUB("7SSGacw8bLM", _ZN7WebCore12UTF8EncodingEv) +STUB( + "7SSKavnQxHs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEED2Ev) +STUB( + "7SSUAe-fAOo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEC2Ev) +STUB( + "7SU2RIb-lf8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "7SUO3dw1zOY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("7SXNu+0KBYQ", wcstof) +STUB("7SY055G7-LE", _ZN7WebCore8Document6setDirERKN3WTF12AtomicStringE) +STUB("7Sd1KuCKyww", _ZNK7WebCore16DocumentFragment14getElementByIdERKN3WTF10AtomStringE) +STUB("7SgmPPNv3lE", _ZN3sce2Np9CppWebApi6Common9RefObjectD1Ev) +STUB("7ShPrvjazws", curl_multi_remove_handle) +STUB("7SmqB-eXB+4", SpeechClose) +STUB( + "7SnCndqxn1E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEED1Ev) +STUB("7SpuXhuQ4xs", _ZNK9Inspector15ScriptCallStack19buildInspectorArrayEv) +STUB( + "7Sq-9ceoq8g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEC2Ev) +STUB( + "7SrwHufcZ-I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE7reserveEi) +STUB("7SuMUlN7Q6I", sceNpScoreGetFriendsRankingAsync) +STUB( + "7Suj3-eD7gc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "7Sz3j3t26jo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEED2Ev) +STUB( + "7T2NcREE1iw", + _ZN7WebCore11EventTarget27addEventListenerForBindingsERKN3WTF10AtomStringEONS1_6RefPtrINS_13EventListenerENS1_13DumbPtrTraitsIS6_EEEEONS1_7VariantIJNS0_23AddEventListenerOptionsEbEEE) +STUB( + "7T8oTGuCpAA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEmmEv) +STUB( + "7T9aUIFPv4g", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEneERKS9_) +STUB("7TCfNv4qszM", _ZN7WebCore6WidgetC2EPv) +STUB( + "7TI97RnYV9c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE21intrusive_ptr_sub_refEPS9_) +STUB("7TIcrP513IM", _Tls_setup__Mbcurmax) +STUB( + "7TK4l8eixXQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("7TKQXURk25w", _ZN3sce7Toolkit2NP2V28Matching7Request9GetWorldsC2Ev) +STUB("7TKreizczvg", goby_FreeLicenseInfo) +STUB("7TNZJDxcW0A", _ZN3sce7Toolkit2NP2V210Wordfilter16SanitizedCommentC1ERKS4_) +STUB("7TSQcd66UoE", _ZNK7WebCore17FrameLoaderClient29overrideContentSecurityPolicyEv) +STUB("7TVIyXDASFY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEE11get_deleterEv) +STUB("7TW4UgJjwJ8", _ZTIDi) +STUB("7TaiaYkvLFo", AacsDecrypt) +STUB( + "7TbWc6AWyMk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEmmEi) +STUB( + "7TcQOtJN3hU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE3endEv) +STUB( + "7TcbCkGU21g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEC2Ev) +STUB( + "7Te1eeupXxQ", + _ZN3sce7Toolkit2NP2V26Friend15getBlockedUsersERKNS3_7Request15GetBlockedUsersEPNS2_4Core8ResponseINS3_12BlockedUsersEEE) +STUB( + "7TfYabYQ2Pc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEE7get_refEv) +STUB("7ThCUjHhoqE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V115CompetitionTypeEEeqERKS7_) +STUB( + "7TmSyinE3HI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEptEv) +STUB( + "7Trx4iXcFMc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "7U+IjZL-SB0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE7reserveEi) +STUB( + "7U+WFbh70Fg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEEC2ERSA_) +STUB( + "7U-wmkRgWXA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE3endEv) +STUB("7U1GL2vgUtA", SwCtrlSinkStreamFinalize) +STUB( + "7U1JRPo1Juk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEC1Ev) +STUB("7U1sopoeo0Q", _ZNK9Inspector15ScriptCallFrame8sourceIDEv) +STUB( + "7U8kblyWtBE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEE7add_refEv) +STUB("7U8ohGrno28", inflateInit_) +STUB( + "7UDQ5gdVKOg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("7UF34iKj8T0", _ZN3sce7Toolkit2NP2V210Tournament7Request10GetBracketC1Ev) +STUB( + "7UOjEcLbh5M", + _ZN3sce2Np9CppWebApi7Matches2V120ResponseMatchResults20setCompetitiveResultERKNS1_6Common12IntrusivePtrINS3_25ResponseCompetitiveResultEEE) +STUB( + "7UPPy8jb-Gc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEE7add_refEv) +STUB("7UTSPEnobtk", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEEaSERKS6_) +STUB( + "7UV7dzkdgUI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEC2EPKS8_) +STUB( + "7UXvuGOy7O8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEE11get_deleterEv) +STUB( + "7UZeFyA1BCo", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC1Ev) +STUB("7UaiJm7sZ+k", _ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_13FriendsOfUserEE8max_sizeEv) +STUB("7UdG6FtbrJg", _ZN7WebCore21InspectorFrontendHostD2Ev) +STUB("7UkAZOxltU8", _Z32sceGpuDebuggerRegisterShaderCodePKN3sce3Gnm16GsStageRegistersEjPKc) +STUB("7UkDkleTd3I", _ZN7WebCore23MediaQueryParserContextC2ERKNS_8DocumentE) +STUB("7UnZ7b3kkvM", sceHttpCacheSetData) +STUB("7Uoplf70Yus", _ZN7WebCore15ActiveDOMObject4stopEv) +STUB( + "7UrKnj9MFIo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEC1Ev) +STUB("7UsdDOEvjlk", sceAudioOutSetSystemDebugState) +STUB("7UyNPNS3nUQ", sceCesRefersUcsProfileIso8859_6) +STUB("7UyS4ijxz2A", _ZN3sce7Toolkit2NP23ChallengeGetDataRequestC1Ev) +STUB( + "7V+E9TgF0h4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEE7add_refEv) +STUB("7V-BoL+qtH0", mono_aot_Sce_Vsh_Accessor_Db_Notifyunbox_trampoline_addresses) +STUB( + "7V4oAYiehZU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEEC1ERSA_) +STUB("7VBlVFPhir4", _ZN7WebCore13MIMETypeCacheD0Ev) +STUB("7VGfMerK6m0", sceUsbdFillControlTransfer) +STUB( + "7VHfcK1Rroc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE5clearEv) +STUB( + "7VLG21DccP4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEmmEi) +STUB("7VPIYFpwU2A", _ZdlPvmRKSt9nothrow_t) +STUB("7VPOusObMVg", mono_aot_mscorlibplt_end) +STUB("7VRfkz22vPk", _ZNSt13basic_ostreamIwSt11char_traitsIwEED0Ev) +STUB("7VSZJxxcTL8", sceVideoOutSysGetBus) +STUB( + "7VTSuSvOFe0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEmmEv) +STUB( + "7VWT6zWBd7E", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB("7VYFuUMRvuo", _ZN3JSC17DeferredWorkTimer10runRunLoopEv) +STUB("7VZMYA3yKL8", _ZN3sce7Toolkit2NP2V28Matching6WorldsC1ERKS4_) +STUB( + "7VaYUjPgXFk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEED2Ev) +STUB( + "7Vc7GU-alPA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEixEm) +STUB("7VjtaYFiWuk", _ZN7WebCore9HTMLNames17xhtmlNamespaceURIE) +STUB( + "7Vk5pJM1DQE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEEaSERKSA_) +STUB("7VkVu32ipPk", _ZN9Inspector17ScriptDebugServer22exceptionOrCaughtValueEPN3JSC9ExecStateE) +STUB("7Vkj3MeFml8", _ZN7WebCore16convertToIntegerIjEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB("7VnJtqQSwUU", FT_List_Insert) +STUB("7VnK1K-gAEU", _ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEEC1EPNS2_10LibContextE) +STUB("7VsXAYFzdMY", AnnotateCondVarSignalAll) +STUB("7VxUuGJJD5M", sceDebugGetSyncObjectList) +STUB("7W4jJ-XhqMY", _ZN3sce7Toolkit2NP2V28Commerce8CategoryaSERKS4_) +STUB("7W6jR0LyiSg", _ZN3sce3pss5orbis9framework8PsmEvent4PostERKNS2_12PsmEventDataE) +STUB( + "7W8oN7yV2tU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEdeEv) +STUB("7W9czm7cuNg", _ZN3JSC4Heap7protectENS_7JSValueE) +STUB("7WBGJ8aph1M", sceRegMgrMemset) +STUB( + "7WG7XNqnX84", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V128SetMultiVariablesRequestBody6toJsonERNS_4Json5ValueEb) +STUB( + "7WIAgsP0h3o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE8pushBackERKS8_) +STUB( + "7WIhb86+Kl4", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi27ParameterToLeaveGameSession9terminateEv) +STUB("7WPj4KCF3D8", sceNpTrophySystemGetTitleIcon) +STUB("7WRyyyXDzrs", _ZStL5wferr) +STUB( + "7WT0x5ORCDU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "7WUkWz9KNio", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE4sizeEv) +STUB( + "7WVWe9FlOnQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("7WVXLziXGtM", _ZN3WTF13printInternalERNS_11PrintStreamEt) +STUB("7Wb0Jv2wCO0", sqlite3_bind_int) +STUB("7WcNoAI9Zcw", sceHttpsFreeCaList) +STUB( + "7Wdv8AhjnM8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("7Wes8MVwuoM", sceUserServiceGetPbtcWednesdayHoursStart) +STUB("7WhyhrCakMs", mono_aot_Sce_Vsh_MorpheusUpdWrapperjit_got) +STUB("7WjTCZdhnXE", _ZN9Inspector27LayerTreeFrontendDispatcherC2ERNS_14FrontendRouterE) +STUB("7WoI+lVawlc", seekdir) +STUB("7WtKsgXCtAc", u_getIntPropertyMinValue_67) +STUB( + "7WtPxpf4Mw0", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V122LastUpdatedUserFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_15LastUpdatedUserEEE) +STUB( + "7WyijPTR0eE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEEaSERS9_) +STUB("7WypClyQwoI", _ZN3JSC2VM18withScopeSpaceSlowEv) +STUB( + "7WzshjFte0s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEEC1ERSA_) +STUB( + "7X-9Zw4xh80", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE3endEv) +STUB( + "7X0JNbR4Uzs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEeqERKS9_) +STUB( + "7X3IY0hLwcs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "7X3wSywr7+0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE8pushBackERKS8_) +STUB( + "7X4NgwKIpj8", + _ZN7WebCore22StorageEventDispatcher26dispatchLocalStorageEventsERKN3WTF6StringES4_S4_RKNS_18SecurityOriginDataEPNS_5FrameE) +STUB("7X7jTgWpNoA", udata_openSwapper_67) +STUB( + "7XBvp+S+fQE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEC1Ev) +STUB("7XEv6NnznWw", scanf) +STUB("7XIlJQQZ2fg", sceUserServiceSetPbtcMondayHoursStart) +STUB( + "7XPERGGhQXo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEptEv) +STUB( + "7XPkxegnzUo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE7popBackEv) +STUB("7XRH1CIfNpI", sceGnmSqttSetHiWater) +STUB( + "7XRIvNpwfNY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE5beginEv) +STUB("7XRV7tj5XDo", _ZN7WebCore8Settings33setImagesEnabledInspectorOverrideEN3WTF8OptionalIbEE) +STUB("7XV6f9Fjnx0", uprv_getRawUTCtime) +STUB( + "7XaTs2Za-nI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEEC2ERSA_) +STUB("7Xaz7BxcERA", SSLv23_server_method) +STUB("7Xc95EMbk9I", _ZN3sce4Json11s_initparamE) +STUB("7XdtNG2s9MY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEC2ERKS7_) +STUB("7Xdw2-E1v4c", _ZNK14OpaqueJSString6stringEv) +STUB( + "7XgqaCx-ZpA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE5beginEv) +STUB( + "7XiaU7RH4b4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEC2Ev) +STUB("7Xl257M4VNI", pthread_equal) +STUB( + "7XlYWsbObzs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEC1Ev) +STUB( + "7Xobedxkv2A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE21intrusive_ptr_add_refEPS9_) +STUB("7XqmeX6Pros", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEC1ERKS7_) +STUB( + "7XqwuTnyKLM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("7XrDmP4anuw", _ZTVN9Inspector40ApplicationCacheBackendDispatcherHandlerE) +STUB("7XuFvMnZioo", JSEndProfiling) +STUB("7XuHBUHOwkA", _ZN3sce2Np9CppWebApi7Matches2V122RequestMatchStatisticsD1Ev) +STUB("7XwLpg3AkWQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEED2Ev) +STUB("7XxZiT7khnY", _ZN3NTF17URLRequestHttpJobD2Ev) +STUB("7Y4364GBras", sceHttpSetCookieMaxSize) +STUB("7Y4kvv8g0P8", mono_aot_ReactNative_PUIjit_code_start) +STUB( + "7Y6vFRWAIXA", + _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_13PlayerForReadEEEEE) +STUB("7YAFidwFyxs", + _ZN3JSC4Yarr11YarrPatternC2ERKN3WTF6StringENS2_9OptionSetINS0_5FlagsEEERNS0_9ErrorCodeE) +STUB( + "7YBQIzCCgmA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEmmEi) +STUB( + "7YCtS3ndotE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE21intrusive_ptr_add_refEPS9_) +STUB("7YGj8EFGdm4", + _ZN7WebCore15StringTruncator14centerTruncateERKN3WTF6StringEfRKNS_11FontCascadeERfbf) +STUB( + "7YKG06lA2aA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE21intrusive_ptr_add_refEPS7_) +STUB("7YKK3bU5bwc", _ZN7WebCore7Element23webkitRequestFullscreenEv) +STUB("7YMs1mf-FgY", + _ZN7WebCore20DecodeOrderSampleMap24findSampleAfterDecodeKeyERKSt4pairIN3WTF9MediaTimeES3_E) +STUB("7YNtGn8Fecw", _ZNK7WebCore6Editor16hasBidiSelectionEv) +STUB("7YRt0yuwLOs", _ZN7WebCore8SVGNames16foreignObjectTagE) +STUB( + "7YVIBhbchmo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEptEv) +STUB("7YW9rloMLYo", sceVdecCoreMapMemoryBlock) +STUB("7YYJp6PgNI4", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11EntitlementEE8allocateEmPKv) +STUB("7YYimDe4DIQ", _ZN3sce7Toolkit2NP2V29Messaging7Request20GameDataMessageImageC1Ev) +STUB("7Ydu1Ne53A0", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V110Reputation9getGlobalEv) +STUB( + "7YitIzYFv7w", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE5getIdEv) +STUB("7Yjm0aibBRo", _ZN7WebCore9FrameView42setNeedsLayoutAfterViewConfigurationChangeEv) +STUB("7YkI001aHmw", _ZNK7WebCore18JSHTMLVideoElement7wrappedEv) +STUB("7YmdciXqdyw", sceDtcpIpGetErrorCode) +STUB( + "7YnIa6Ln+vc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE3endEv) +STUB( + "7YnbdCh40DY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE5beginEv) +STUB( + "7YoxUmDxwjE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEED2Ev) +STUB("7YscO42a7g0", Java_com_oracle_bluray_ui_FAAComponentHelper_deleteHandle) +STUB("7Yt-ZIgpucA", ulist_next_keyword_value) +STUB("7YuW91JxnbY", _ZN7WebCore17FrameLoaderClient24isEmptyFrameLoaderClientEv) +STUB( + "7YuwyY8neN0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEEdeEv) +STUB( + "7Ywiozww4gM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEC1EPNS2_10LibContextE) +STUB("7YzKMo-06yk", _ULx86_64_access_fpreg) +STUB( + "7Z0AL6Ob8O0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEE11get_deleterEv) +STUB("7Z1hhsEmkQU", sceNetBandwidthControlSetPolicy) +STUB("7Z2LU5zctU4", mono_btls_x509_crl_get_next_update) +STUB( + "7Z2p5jMbqh8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("7Z6ph1LRUTM", _ZN3JSC19iteratorForIterableEPNS_9ExecStateENS_7JSValueE) +STUB( + "7ZCkjXWu60k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEmmEv) +STUB( + "7ZDsfRn4GKA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEEptEv) +STUB( + "7ZEjhIfdMQg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEmmEi) +STUB("7ZFG6Tyd1IY", _ZN3sce7Toolkit2NP7NetInfo9Interface19psnLoginDialogStartEi) +STUB("7ZFy2m9rc5A", _reclaim_telldir) +STUB("7ZGS7F0Nl4E", sceMoveTrackerRecordStop) +STUB("7ZGiKfb37l0", _ZN7WebCore11MediaPlayer27applicationWillResignActiveEv) +STUB( + "7ZI76UdA308", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE6resizeEj) +STUB("7ZLWyP2SFLo", _ZN3sce7Toolkit2NP20JoinNpSessionRequestC2Ev) +STUB( + "7ZOQ9Qq6iPs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("7ZOWt4eQzMs", _ZN9Inspector21InjectedScriptManager19injectedScriptForIdEi) +STUB("7ZTLaTyAWFA", WKPageSetEnableVerticalRubberBanding) +STUB( + "7ZXP4MhOzA0", + _ZNK3sce2Np9CppWebApi14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBody6toJsonERNS_4Json5ValueEb) +STUB( + "7Ze2ptB+4cQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEC1EPKS8_) +STUB( + "7Zif-WeDDgk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEE5resetEPS9_) +STUB("7Zihjr8aD+Y", _ZN3WTF20ObjectIdentifierBase26generateIdentifierInternalEv) +STUB("7Zjk4bx+FQI", _gm_) +STUB("7ZlAakEf0Qg", pthread_attr_setinheritsched) +STUB("7ZmeGHyM6ew", _ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED2Ev) +STUB("7ZoDvK2OUeA", _ZN3sce7Toolkit2NP2V212NetworkUtils12BandwithInfoaSERKS4_) +STUB("7ZqXJAwiDUM", _ZN3JSC21loadAndEvaluateModuleEPNS_9ExecStateERKNS_10SourceCodeENS_7JSValueE) +STUB( + "7Zr4JmzumUg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEE5resetEPS7_) +STUB("7ZtJ9iCsIsg", _ZN7WebCore10FileSystem10fileExistsERKN3WTF6StringE) +STUB("7ZxRBz8a270", _ZNK7WebCore21HTMLFrameOwnerElement15contentDocumentEv) +STUB( + "7ZxeJGARy+8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEEcvbEv) +STUB("7a+UHoaob7g", mono_threads_attach_coop) +STUB("7a0jXJtqx7A", __sanitizer_cov_module_init) +STUB( + "7a5UIhWjl58", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE3endEv) +STUB( + "7a7pIpaaEfs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB( + "7aF2OuEoiig", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getInteger6Ev) +STUB("7aFQ9x9t+HQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE3endEv) +STUB("7aGTPfrqT9s", scePngEncCreate) +STUB("7aH8TzZw9d8", ZIP_Close) +STUB( + "7aK0rxPcBFw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEixEm) +STUB("7aQeX4x1mJQ", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody9setOffsetERKi) +STUB("7aQnOMQKj8w", _ZN7WebCore8PositionC1EPNS_4NodeEjNS0_25LegacyEditingPositionFlagE) +STUB("7aRXAJjjs8U", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V223FilterProfanityResponse12unsetMessageEv) +STUB("7aRdBviSzcw", g_log_set_always_fatal) +STUB("7aRf4VQx-nw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEED1Ev) +STUB("7aTlLYMr6no", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEE11release_refEv) +STUB( + "7aWjpLR72-I", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEC2Ev) +STUB("7adKrsNyrRQ", JSScriptRelease) +STUB( + "7afrZcFOD7c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEppEi) +STUB( + "7afxfyN8iqs", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE21intrusive_ptr_sub_refEPS7_) +STUB("7ahPTEg3j9M", _ZN7WebCore22ResourceLoadStatistics13primaryDomainEN3WTF10StringViewE) +STUB( + "7alvZI-KLQU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEmmEi) +STUB( + "7arWuz3NU4A", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB( + "7aruTRHEyQ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("7as0CjXW1B8", sceHmdReprojectionSetUserEventStart) +STUB( + "7au5moeRlPU", + _ZN7WebCore18PlatformPasteboard8getTypesERN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB( + "7auLIt6+EQU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("7b1SeNVnTGw", mono_aot_I18N_Otherjit_code_start) +STUB("7b1oczmgZGY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12RangeOfRanksEED2Ev) +STUB("7b4WWdcrGOg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEEC1Ev) +STUB("7b5y1XSa+KQ", _ZN3sce2npneERKNS0_13NpTitleSecretERK16SceNpTitleSecret) +STUB("7b5yZy8-SpE", mono_aot_System_Reactive_Interfacesunwind_info) +STUB("7b6rOT08JYA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE21intrusive_ptr_add_refEPS7_) +STUB("7b8f-gHC5pE", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119SubtaskAvailabilityEEmmEv) +STUB( + "7bDjDWnEh9E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE5emptyEv) +STUB("7bDnXvHVSY4", _ZN7WebCore8SVGNames17preserveAlphaAttrE) +STUB("7bL9hbEC1w0", WKAccessibilityCanUseSecondaryAXThread) +STUB("7bOLX66Iz-U", sceAppContentTemporaryDataMount) +STUB("7bPTcZme3AE", u_memmove_67) +STUB("7bQhjofI9Hk", _ZNK7WebCore7Element10screenRectEv) +STUB( + "7bS1ila1Vp0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEC2EPKS8_) +STUB("7bSiBI8KqBw", sceDepthSetPostFilterParameter) +STUB("7bTJr1njnSc", _ZN7WebCore23HTMLTableSectionElement9insertRowEi) +STUB("7bV0114o7Pk", _ZN7WebCore8Document17queryCommandValueERKN3WTF6StringE) +STUB("7bdq6CTw01U", _ZN3JSC15createEvalErrorEPNS_9ExecStateERKN3WTF6StringE) +STUB( + "7bito6DevR0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEC2ERS7_) +STUB("7bqPJYmh+68", rgctx_fetch_trampoline_mrgctx_13_p) +STUB("7brRfHVVAlI", _ZNSt7collateIcE2idE) +STUB( + "7bs9zCgEaVc", + _ZN3sce7Toolkit2NP10Challenges9Interface7getItemEPKNS1_23ChallengeGetItemRequestEPNS1_9Utilities6FutureINS1_20ChallengeRecvDetailsEEEb) +STUB("7bu++dneYUU", sceVoiceChatRequestDeleteGameSessionVoiceChatChannel) +STUB( + "7bvOktuDNGY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "7bwCYaEqlSc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "7bx8g-owglQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("7bzUdBtIQhE", _ZThn8_N3sce2np10MemoryFileD0Ev) +STUB("7c+R0fw2RmQ", _ULx86_64_dwarf_extract_proc_info_from_fde) +STUB("7c-cdEImR7I", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product23unsetContentDescriptorsEv) +STUB( + "7c8D3WqExYg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEmmEv) +STUB("7cGuv-8-6jE", WKPageHandleImeEvent) +STUB( + "7cHwTqd8k+4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEneERKS9_) +STUB("7cIS2cFG3PE", FT_Stroker_ExportBorder) +STUB("7cPuvrYJZeE", _ZN3sce7Toolkit2NP19RangeOfRanksRequestC1Ev) +STUB( + "7cSfH87GrRQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB( + "7cT+aXHKB9s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEE5resetEPS9_) +STUB("7cTc7seJLfQ", sceSystemServiceKillLocalProcessForPsmKit) +STUB("7cVMwHmN308", ft_glyphslot_free_bitmap) +STUB("7cbPVu7oATY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ChildActivityAvailabilityEEneERKS7_) +STUB("7cbzYk001wI", _ZN7WebCore8SVGNames14feCompositeTagE) +STUB( + "7cd0cABL+5g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEcvbEv) +STUB( + "7cfVIsHkEpE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEE5resetEPS9_) +STUB( + "7ck1otbxb1k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "7ck6TJ9MCH8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEmmEi) +STUB("7cmH-sxgIS8", mono_debug_find_method) +STUB( + "7cnBGsciNnw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEptEv) +STUB("7cpDrw3sjCM", + _ZN12video_parser13cVideoMetaVWG17getThumbnailImageENS_9VP_LANG_eENS_15VP_SEARCH_OPT_eEjPh) +STUB("7cw-euqwty0", jpeg_fdct_11x11) +STUB( + "7cyEtZe6MIQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEED1Ev) +STUB("7d9xQd6e65c", _ZNSt13basic_filebufIcSt11char_traitsIcEE5_InitEP7__sFILENS2_7_InitflE) +STUB( + "7dBo812IrEQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEdeEv) +STUB("7dFxmg4wSRM", _ZN9Inspector15ScriptCallFrameC2ERKS0_) +STUB( + "7dHLpX7qkQk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEC2EPKS8_) +STUB("7dI1j4ItuHE", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadDataC1Ev) +STUB("7dJuJIhpu+w", + _ZN3sce2Np9CppWebApi7Matches2V120ResponseMatchResultsC1EPNS1_6Common10LibContextE) +STUB( + "7dL-sK2tn7o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "7dVBXb3wz+o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEmmEv) +STUB("7dX2cWYt-ec", qzero) +STUB("7deWNsME63Y", _ZN24scePssCAudioSourcePlayer12SetPlayStateEit) +STUB("7dlAxeH-htg", _Stofx) +STUB("7doP386xw7Y", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE6resizeEj) +STUB( + "7dqFi7Dvzgo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB("7dqSnW4K+ok", WKPreferencesSetSubpixelCSSOMElementMetricsEnabled) +STUB( + "7dqdFQnF+Ac", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE3endEv) +STUB( + "7drWUH69bJg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB("7dulKcLcwHI", sysKernelGetLowerLimitSysexVersion) +STUB("7dv37ENJNNY", _ZN3NTF17URLRequestHttpJobC1Ev) +STUB("7dyKpPHU+Yk", _ZN3sce2np3ipc10IpmiClient10DisconnectEv) +STUB( + "7dyn-UP72QY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEEC1ERSA_) +STUB( + "7e+cjAN6xk8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "7e+zRFRitmE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "7e1JCOGEgG0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEmmEv) +STUB("7e3DrnZea-Q", _ZNSt10moneypunctIcLb1EEC2ERKSt8_Locinfomb) +STUB( + "7e3fU7RtD-g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE5beginEv) +STUB("7e3mAXZ5AGY", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle12unsetPerGameEv) +STUB( + "7e6mE4oIQnU", + _ZN3sce7Toolkit2NP2V27NpUtils24setTitleIdForDevelopmentERKNS3_7Request24SetTitleIdForDevelopmentEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB( + "7e9znqK4fnA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE10setContextEPNS2_10LibContextE) +STUB( + "7eGovI9eywY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEmmEv) +STUB( + "7eImbdpE1fk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEaSERKS7_) +STUB("7eKgbF9x6Ic", _ZN3sce7Toolkit2NP2V27Ranking17SetGameDataResultD2Ev) +STUB("7eNus40aGuk", wcscspn) +STUB( + "7eXD+-mfVpI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEEC1Ev) +STUB( + "7eYWfse5Frg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEE7add_refEv) +STUB( + "7eZZYsQ3P-8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEmmEv) +STUB("7eaAtC-etfs", delegate_invoke_impl_target_1) +STUB("7ee7qLz2hjg", mono_metadata_parse_mh) +STUB( + "7egFwiOMTt0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEC1ERS7_) +STUB("7exmsg3vl2Q", _ZN9Inspector21InjectedScriptManager18releaseObjectGroupERKN3WTF6StringE) +STUB("7ezuxY8qSBk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEE3getEv) +STUB("7f-e72wP6No", _ZNK7WebCore9ImageData5widthEv) +STUB("7f13XmbjTZo", hb_buffer_create) +STUB("7f1RT+wOQ-U", sceAppInstUtilAppAllowDownloadInstall) +STUB( + "7f1kneP7OTM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB("7f2JnsDa9Zg", + _ZN3sce2Np9CppWebApi13InGameCatalog2V517ContentDescriptor8fromJsonERKNS_4Json5ValueE) +STUB("7f4Nl2VS0gw", _ZTISt9basic_iosIcSt11char_traitsIcEE) +STUB( + "7f6MKqL+26g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEED2Ev) +STUB("7f8YM2IS570", ucsdet_close_67) +STUB("7fDXeAE39eE", mono_aot_Sce_Vsh_AppDbWrapperplt) +STUB("7fES7D9wiJk", X509_load_crl_file) +STUB("7fHjxMXM+kc", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyD1Ev) +STUB("7fKmJJYLvyw", JSWeakObjectMapSet) +STUB("7fMQZVzPqdc", sceNpTrophy2SystemDestroyContext) +STUB("7fOOGNUUoNE", _ZN12video_parser5vpcom6_OpenTEPcS1_bPPNS_8_vp_fileE) +STUB("7fOcpBLva2Y", _ZN3WTF7RunLoop9TimerBaseC2ERS0_) +STUB("7fS035RCGwA", __asan_report_exp_load4) +STUB( + "7fTspeJSVrg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEmmEi) +STUB("7fU+MXbC5CA", mono_aot_Sce_Vsh_Gls_GlsSharedMediaViewunbox_trampoline_addresses) +STUB("7fXJ1BHjMmY", _ZN9Inspector21InjectedScriptManager7connectEv) +STUB( + "7fXLgrl4MoU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEED1Ev) +STUB( + "7fXs6GxEVi4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUser10initializeEPNS1_6Common10LibContextEPKcSA_) +STUB( + "7fYvkmAsFzw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEEC1ERKSA_) +STUB("7farfEqMGa0", _ZTVN12video_parser16cVideoContentMp4E) +STUB("7fdfkqrJUr4", _ZN23sceMetadataReaderWriter13KeyValueArray7releaseEiPFvPvE) +STUB( + "7fdos89wl10", + _ZN3sce2Np9CppWebApi11Matchmaking2V112ErrorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5ErrorEEE) +STUB( + "7fhzvvX+VJk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEC1EPS8_) +STUB("7fqPcHU-PQU", + _ZN3JSC12CachePayload17makeMappedPayloadEON3WTF14FileSystemImpl14MappedFileDataE) +STUB("7ft4gCfkcIA", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEED1Ev) +STUB( + "7ftWYavllD0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE3endEv) +STUB("7fuGL8i-Ehk", uiter_setReplaceable_67) +STUB( + "7fwglQfZNOE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "7g0nNfXWoZA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE8pushBackERKS6_) +STUB("7g5GqP6Zyak", _ZN6icu_6713UnicodeStringD0Ev) +STUB("7gDeOsY7lH8", mono_aot_Sce_Vsh_Sticker_StickerLibAccessorunbox_trampolines) +STUB("7gIdYyBzf4Y", _ZN7WebCore12SharedBufferD2Ev) +STUB( + "7gIjwxvckHE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "7gMJtnbc2hY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEppEv) +STUB("7gOzpUJ7-gA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEptEv) +STUB( + "7gQyLyJf30w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "7gYDQTMC7QU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEEC1EPS8_PNS2_10LibContextE) +STUB("7ga3x+36xrU", tcgetsid) +STUB("7gc-QliZnMc", _ZNSt14_Num_ldbl_base5trapsE) +STUB("7gj0BXUP3dc", _ZTIPw) +STUB( + "7glcrDVRAdw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEED1Ev) +STUB("7glioH0t9HM", _ZNKSt5ctypeIcE10do_toupperEPcPKc) +STUB( + "7gtMWdi+8GQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEE7get_refEv) +STUB( + "7gxURQpznOs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEmmEi) +STUB("7gxh+5QubhY", sceAppContentAddcontEnqueueDownload) +STUB( + "7gzJbD3Adlw", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V231TestForProfanityResponseFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_24TestForProfanityResponseEEE) +STUB("7h+e56B2oKs", curl_mvsprintf) +STUB("7h1gxkWw9Ec", _ZNK7WebCore7Element9innerHTMLEv) +STUB( + "7h2iLEn9WZI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEE5resetEPS6_) +STUB("7h7uBMNLGaU", fuse_add_dirent) +STUB( + "7hLCaaUl+Q0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEEaSERKSA_) +STUB( + "7hLuwtMx+Dk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEppEv) +STUB("7hNbBhDETeY", g_WebAssemblyToJSCalleePoison) +STUB( + "7hNwClFxgiw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("7hOUKGcT6jM", sceLibcPafMspacePosixMemalign) +STUB("7hPIudA3CT4", _ZTVN7WebCore11DisplayList8DrawRectE) +STUB("7hRWTOqVQ9w", + _ZN7WebCore18TextureMapperLayer30setScrollPositionDeltaIfNeededERKNS_9FloatSizeE) +STUB( + "7hVaw6i6j20", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE8capacityEv) +STUB( + "7hW2ZfpzR3Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE8pushBackERKS8_) +STUB( + "7hXFjvKOtiM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEE3getEv) +STUB("7hb4tWFbBqI", _ZN3sce2Np9CppWebApi14SessionManager2V15ErrorD1Ev) +STUB( + "7hhdLSCDdBI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEmmEv) +STUB("7hhovAcWC6g", mono_method_get_signature_full) +STUB( + "7hl+-5mtYEM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEEcvbEv) +STUB( + "7honfQd7wpg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEC1EPKS8_) +STUB("7hqQnjtxqf4", + _ZN3JSC8Bindings13RuntimeObject15createStructureERNS_2VMEPNS_14JSGlobalObjectENS_7JSValueE) +STUB("7hrpktO8r1M", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE7popBackEv) +STUB("7hsMq4oz0Sc", sceKernelGetPagingStatsOfAllThreads) +STUB("7ht8b5GNMMY", _ZN9Inspector25ConsoleFrontendDispatcherdaEPv) +STUB("7htBEIzmbA8", _ZN3sce2Np9CppWebApi7Matches2V17SubtaskC1EPNS1_6Common10LibContextE) +STUB( + "7hvzpEvl3Mo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB("7hy1R1ySluk", Java_com_sony_bdjstack_javax_media_controls_SoundManager_unbind) +STUB("7i1SBa+RLes", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEC2ERKS7_) +STUB( + "7i3ZEB6E34g", + _ZN3sce2Np9CppWebApi11UserProfile2V112ErrorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5ErrorEEE) +STUB( + "7i4e-fK+Pyk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEcvbEv) +STUB( + "7i7VOELHFiw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEED2Ev) +STUB("7i8k5TpCMio", _ZN3WTF8JSONImpl5ValueC2EPKc) +STUB( + "7i9+SaB4l0c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB("7iFNNuNyXxw", _Getfloat) +STUB( + "7iGHUEmf0wU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEmmEi) +STUB( + "7iJqFRun9y4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEEC2ERSA_) +STUB("7iKAJFysZaM", _ZNK7WebCore16HTMLMediaElement5mutedEv) +STUB("7iKQwPVb3Uk", mono_aot_Sce_Vsh_MyGameListplt) +STUB("7iLvXhVBRJw", mono_jit_set_domain) +STUB( + "7iNV2XWPmmA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEeqERKS9_) +STUB("7iNXtJji1iI", udata_swapInvStringBlock) +STUB("7iQzTaBQPCg", mono_reflection_lookup_dynamic_token) +STUB( + "7iTgf0603xk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE5clearEv) +STUB("7iTp7O6VOXQ", inet_ntoa) +STUB("7iWjtLM--CQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE6resizeEj) +STUB("7iX8e9aZI3Y", _ZNK3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead14accountIdIsSetEv) +STUB("7iYIxEBkAYE", g_list_find) +STUB("7iZdbVWxIGg", _ZN7WebCore12EventHandler30dispatchFakeMouseMoveEventSoonEv) +STUB("7ibVms37EfY", _ZN7WebCore11MathMLNames14columnspanAttrE) +STUB("7icUNURF+hg", _ZN3sce7Toolkit2NP2V27NpUtils7Request19DisplaySigninDialogD1Ev) +STUB("7ifZFxWJ9Q4", sceVideoOutLockBuffer) +STUB("7iiQEE-DNZQ", g_JSCallbackObjectPoison) +STUB("7ijxBuDNvHY", curl_global_sslset) +STUB( + "7ikA0MH9miU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEE7get_refEv) +STUB( + "7in6rO7+oYo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEmmEi) +STUB("7iq7ele0yc0", _ZN3JSC11ArrayBuffer9tryCreateEjj) +STUB("7iqjFK0P5zQ", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEEC2ERKS6_) +STUB("7itOr2Vdfc8", _ZN3sce7Toolkit2NP2V23TUS7Request20GetFriendsDataStatusD1Ev) +STUB("7iuXgpguf3w", _ZN7WebCore8SVGNames11divisorAttrE) +STUB("7ixIvcctKQk", mono_aot_Sce_Vsh_EventServiceWrapperplt_end) +STUB("7izyOzpICKg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEdeEv) +STUB( + "7j+IPQcqxEE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEEC1ERKSA_) +STUB( + "7j-LaemZ+M4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEE11release_refEv) +STUB("7j9VcwnrZo4", sceHttpGetEpoll) +STUB( + "7jAG5WaApuY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEED2Ev) +STUB("7jGLOR-C9zQ", _sceDepthDisplayDebugScreen) +STUB("7jR452Jay78", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_28NpSessionDetailedInformationEE17getAdditionalInfoEv) +STUB("7jRmhjMXT7w", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V15Owner6toJsonERNS_4Json5ValueEb) +STUB( + "7jSQYLk2N8k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "7jUBbfF8MC0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "7jUGGnOt+5I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEE11get_deleterEv) +STUB( + "7jW-iU4o4c0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEC1EPS8_) +STUB("7jXS0r9rkLg", JSObjectMakeTypedArrayWithArrayBuffer) +STUB("7jYNgL0mtOw", _ZN3sce2Np9CppWebApi14SessionManager2V115LocalizedStringD1Ev) +STUB( + "7jbnFXytxmQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEED1Ev) +STUB("7jdAXK+2fMo", sceAjmBatchJobRunSplitBufferRa) +STUB("7jdT0uaI4HI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEEC2EPS6_) +STUB("7jn38a1NQoQ", _ZN18MmsFileUpdaterBaseD1Ev) +STUB("7jp4FsAR+1s", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead19setCreatedTimestampEPKc) +STUB("7jtFrSBal2w", _ZN3WTF17AtomicStringTableD1Ev) +STUB("7jv2iFyX20k", _ZN3sce2Np9CppWebApi11UserProfile2V113BasicPresenceD2Ev) +STUB("7jwjOjeal74", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEEaSERS7_) +STUB( + "7jwxAkG8Fns", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEdeEv) +STUB("7jxFf0KjE+c", _ZN3sce7Toolkit2NP5EventC2Ev) +STUB( + "7k+zTuqfOmQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEE5resetEPS8_) +STUB( + "7k3jNkA10so", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("7k8IDS3dnQA", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead25localizedSessionNameIsSetEv) +STUB("7kAhdhlNvew", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE8copyFromERKS7_) +STUB("7kJ1QYHAhPE", uloc_getISOCountries) +STUB("7kM+jvmzV28", mono_aot_Sce_CloudClient_App_Platformjit_code_end) +STUB("7kMW6YMmiQs", + _ZN3sce2Np9CppWebApi14IdentityMapper2V318OnlineIdMapFactory7destroyEPNS3_11OnlineIdMapE) +STUB("7kSGOVXdivc", _ZN3sce2Np9CppWebApi7Matches2V118RequestMatchPlayer12setAccountIdEPKc) +STUB("7kXCiz3D0OU", scePssThreadIsActive) +STUB("7kYKc2bAx+I", _ZN7WebCore8SVGNames18lighting_colorAttrE) +STUB("7kbOG9Y7SXM", _ZN7WebCore19JSDOMMatrixReadOnly9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("7khEIoGv2Q8", WKContextSetShouldUseFontSmoothing) +STUB("7kizCLVvdXM", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_19ProductInfoDetailedEEC1ERKS4_) +STUB("7klfyDxGaQg", ucnv_getName_67) +STUB("7kmAApX8qTI", _ZNK3sce2Np9CppWebApi7Matches2V118RequestTeamResults9getTeamIdEv) +STUB("7kq9ALkg4AA", mono_btls_x509_revoked_get_reason) +STUB( + "7kqJPQPdrbU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEppEi) +STUB("7krELEpl+Y0", sceUpsrvUpdateCancelBDUpdate) +STUB( + "7krgVxZg02Q", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE17getResponseHeaderERSB_) +STUB( + "7kzJUtqwY+0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEC2EPKS8_) +STUB("7l2Jv4Pu9RA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody8setLimitERKi) +STUB("7l3U5RmuZ60", + _ZNK7WebCore29PerspectiveTransformOperation5applyERNS_20TransformationMatrixERKNS_9FloatSizeE) +STUB("7l44TDMrkeE", _ZN7WebCore22SocketStreamHandleImpl12platformSendEPKhmON3WTF8FunctionIFvbEEE) +STUB("7l4jBeWiHI4", _ZN3WTF21RefCountedLeakCounterC1EPKc) +STUB("7l6AML7+4G8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEE3getEv) +STUB("7lCihI18N9I", _ZdaPvmRKSt9nothrow_t) +STUB( + "7lDz3ZjojIc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEplEm) +STUB( + "7lGR9Gp+9GY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE21intrusive_ptr_add_refEPS9_) +STUB("7lK55VjWSF8", mono_shared_internal_hash_table_lookup) +STUB("7lNx5gajOXk", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEEplEm) +STUB("7lO9jFyTA4A", _ZN9Inspector26DebuggerFrontendDispatchernwEmPv) +STUB( + "7lOwMl2laPA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEC2Ev) +STUB( + "7lSM-9o-zGM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEC2EPS8_) +STUB( + "7leJXUoEpTI", + _ZN9Inspector21PageBackendDispatcher17searchInResourcesElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("7lfSx6Ni9oE", _ZN7WebCore8Document5linksEv) +STUB("7lgPvyGKqas", JVM_GetMethodIxExceptionTableLength) +STUB("7lhAeC928LQ", _ZN3sce7Toolkit2NP2V212EventsClient12EventDetailsC1Ev) +STUB( + "7lhTcIr5eBI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE21intrusive_ptr_add_refEPS9_) +STUB("7liQqSHn5fc", _ZNK7WebCore4Page9pageCountEv) +STUB( + "7ljQcdQT1jU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE8copyFromERKS9_) +STUB("7lkxCYpD+xk", sceVideoCoreChangeHdcpSetting) +STUB("7lo+0LUsYuw", _ZN7WebCore7Element14scrollIntoViewEb) +STUB( + "7lqWXO1ZdCs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "7lr6cMExXPo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEEC1ERKSA_) +STUB("7lu35eETqeQ", WKPreferencesSetWebShareEnabled) +STUB( + "7lyEPtBKSFY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "7lzi-RHUqww", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEaSERKS7_) +STUB( + "7m-O1GMK0QM", + _ZN3sce2Np9CppWebApi7Matches2V123ResponseMatchStatistics17setTeamStatisticsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_21ResponseTeamStatisticEEEEE) +STUB( + "7m5227vgGAg", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi27ParameterToLeaveGameSession12setsessionIdEPKc) +STUB( + "7mAjiQUCDvs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEptEv) +STUB( + "7mCLhGibMUA", + _ZN3sce2Np9CppWebApi14SessionManager2V161GetUsersAccountIdPlayerSessionsInvitationsResponseBodyFactory7destroyEPNS3_54GetUsersAccountIdPlayerSessionsInvitationsResponseBodyE) +STUB("7mEn9EDhcn0", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyD1Ev) +STUB( + "7mGw9srXHJ0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE8copyFromERKS9_) +STUB("7mLDMf26EJ8", _ZN7WebCore18throwThisTypeErrorERN3JSC14JSGlobalObjectERNS0_10ThrowScopeEPKcS6_) +STUB("7mNFRHtNsx4", scePrintUlpResHdr) +STUB("7mNuSDZQNNo", sceEsvmEngineMediaKeySessionUpdate) +STUB("7mOx7zxO+6g", _ZN12Mp4Retriever14processFreeBoxEv) +STUB("7mQ26kdVI1U", WKNotificationManagerProviderDidShowNotification) +STUB( + "7mQ7Qgf2LCY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEE7get_refEv) +STUB("7mUmOtv4Etc", IsSrcIdPlaying) +STUB("7mjdWhhT8RU", mono_aot_System_Reactive_Coreplt_end) +STUB("7mmcaG0Shqs", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12EventsClient6EventsEE12deepCopyFromERS7_) +STUB("7mrTdxGkB3U", sceNpTrophy2SystemGetTrophyTitleConf) +STUB( + "7muAI9nj4hU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEC1Ev) +STUB( + "7muwftfzuFY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("7myYxRSXGbY", _ZN12video_parser13cVideoMetaMP419_readThumbnailImageEPcxjPh) +STUB( + "7n+mipDk2Zw", + _ZN3sce2Np9CppWebApi14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyD2Ev) +STUB("7n0ehnQc0Gw", _ZN7WebCore8Document20updateIsPlayingMediaEm) +STUB("7n8vDqOwmn4", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEEcvbEv) +STUB( + "7nBKmRRKzX8", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUser13isInitializedEv) +STUB( + "7nFq2nDiQ5I", + _ZN7WebCore22CacheStorageConnection12updateCachesEmONSt12experimental15fundamentals_v38expectedINS_14DOMCacheEngine10CacheInfosENS4_5ErrorEEE) +STUB( + "7nNkQIqhssc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEEC2Ev) +STUB("7nOoijNPvEU", sceAgcWaitRegMemPatchReference) +STUB( + "7nV7jsTmDpU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEneERKS9_) +STUB( + "7nVcmhKAhhE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE8readDataEPcm) +STUB("7nXGDGMXSqo", sceAmprMeasureCommandSizeReadFileScatter) +STUB("7nYdmZyxP0I", _ZN23sceMetadataReaderWriter7Storage12readMetadataERKSsRKNS_8MetadataEjRS3_) +STUB("7nYn3KU7GMI", Java_com_sony_bdjstack_javax_media_controls_VideoSystem_setScreenConfiguration) +STUB("7neCrtTwTjM", _ZN7WebCore10JSLocation6s_infoE) +STUB("7nhDWYNO3lw", _ZN7WebCore14ScrollableArea27notifyScrollPositionChangedERKNS_8IntPointE) +STUB( + "7ni7zsvERh0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEC1EPS6_PNS2_10LibContextE) +STUB("7niGF7s7qHU", GetPhotoInfoLib) +STUB( + "7niojC8U0-Y", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB( + "7nk-u6AGsnQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEE3getEv) +STUB("7npSfq5eIik", _ZN3JSC7Symbols15sortPrivateNameE) +STUB("7nuoK1AytFM", ucal_setGregorianChange_59) +STUB( + "7nvr1Oocn1A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("7o3+pBwa3Ko", jpeg_simple_progression) +STUB("7o36Jzkuwfs", _ZNK7WebCore4Path6isNullEv) +STUB("7o4tmcD7foY", sceMusicCoreServerGetTitleId) +STUB( + "7o5XeqKWry4", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessions10initializeEPNS1_6Common10LibContextE) +STUB("7o8g-r6yVZk", sceCesBig5ToUtf16be) +STUB("7oEHtlR1sXw", _ZN7WebCore16HTMLMediaElement8fastSeekEd) +STUB("7oIDpW1fnds", _ZN7WebCore7IntRectC2ERKNS_9FloatRectE) +STUB("7oIzjfIWi6o", wmatch) +STUB("7oJpAd+vJQA", _ZN3sce2np3ipc17ServiceIpmiClient21DeleteRequestForAsyncEii) +STUB("7oKMHilvjQA", _ZN7bmalloc5Cache25allocateSlowCaseNullCacheENS_8HeapKindEm) +STUB( + "7oMUTH81jV8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "7oNVLeraJVA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEC2Ev) +STUB("7oRxmHRqfCY", removeProhibitionFlagListener) +STUB("7oTRWUza6Fk", _ZN3sce7Toolkit2NP2V23TUS13TusDataStatusD1Ev) +STUB("7oVQasr0GHw", mono_aot_System_Dataunbox_trampolines) +STUB( + "7oZsq8yG0Zk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEcvbEv) +STUB( + "7obJWtXCpNY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("7oio2Gs1GNk", + _ZNSt13basic_filebufIcSt11char_traitsIcEE7seekoffElNSt5_IosbIiE8_SeekdirENS4_9_OpenmodeE) +STUB("7okrKugZRI4", sceCustomMusicCoreGetSystemAudioVolume) +STUB( + "7ouO+CipUSI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE5beginEv) +STUB("7oxv3PPCumo", sceKernelReserveVirtualRange) +STUB("7oz1ahPfK-Y", _ZN3JSC7Symbols17NumberPrivateNameE) +STUB("7p+rMEo3-cs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEmmEv) +STUB("7p1UwWUx9C8", + _ZN7WebCore6Widget5paintERNS_15GraphicsContextERKNS_7IntRectENS0_25SecurityOriginPaintPolicyE) +STUB( + "7p4HU+QkLUw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEptEv) +STUB("7p7kTAJcuGg", __inet_addr) +STUB( + "7p8jDKuJskk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("7p9tNwX7Prc", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_17ActivityFeedStoryEEC2ERKS4_) +STUB("7pASQ1hhH00", posix_spawnattr_getsigdefault) +STUB( + "7pBRNL9SVNQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEEC2Ev) +STUB("7pC12Y2UbWc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEED2Ev) +STUB("7pCOClUrUmM", ucnv_getName) +STUB( + "7pD1t-0bOMk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEC2ERKS7_) +STUB("7pDRHhO7Hxw", + _ZN7WebCore36ISOProtectionSystemSpecificHeaderBox12peekSystemIDERN3JSC8DataViewEj) +STUB("7pEKaQB9TYI", WKPreferencesSetAntialiasedFontDilationEnabled) +STUB("7pFnRL79ZKE", setReplayModeFlag) +STUB( + "7pGvEIUwAQc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEE7get_refEv) +STUB("7pN3P801eUw", _ZN3JSC24getFloat64ArrayClassInfoEv) +STUB("7pNKcscKrf8", _Stoll) +STUB("7pOP1-HcGd8", _ZN7WebCore20NetworkStateNotifier11addListenerEON3WTF8FunctionIFvbEEE) +STUB( + "7pQUqytL4AY", + _ZN9Inspector24RuntimeBackendDispatcher6createERNS_17BackendDispatcherEPNS_31RuntimeBackendDispatcherHandlerE) +STUB( + "7pR3YmVfuYI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEEC2Ev) +STUB("7pa8HdZUwlc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116JoinableUserTypeEEC2Ev) +STUB("7pd71mDVdIQ", _ZN3sce7Toolkit2NP2V24Core7Request21NpToolkitCallbackInfoC2Ev) +STUB( + "7pevkv3XqTU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE8pushBackERKS8_) +STUB("7pif5RySi+s", sceUserServiceSetHoldAudioOutDevice) +STUB("7pl2UBkJIRk", sceSpNetEpollAbort) +STUB("7plAKE6QBd4", _ZN3sce2Np9CppWebApi6Common6VectorIdE7reserveEi) +STUB("7ptEBVx3d5g", WKViewSetViewClient) +STUB("7ptExjmGIEo", p5_512) +STUB("7pv4GMWAJws", _ZN7WebCore16HTMLTableElement11createTHeadEv) +STUB("7pvtcnbjvTk", sceLncUtilIsDiscPlayerForeground) +STUB("7pw6BiYF85o", _ZN12video_parser17cVideoOperatorMnvD1Ev) +STUB("7qJpOjZSSkI", _ZN7WebCoreeqERKNS_18SecurityOriginDataES2_) +STUB( + "7qR12vt1sFo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "7qRM0Gb-pkc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE3endEv) +STUB( + "7qWiZgwGbp8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEaSERKS7_) +STUB("7qZVNgEu+SY", sceGnmInsertPopMarker) +STUB("7qf7mhzOQPo", sceSystemStateMgrStartShutdownTimer) +STUB( + "7qfzj3qOB7U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEEcvbEv) +STUB("7qkaKBAshAk", sceLoginMgrServerGetMoveAssignmentModeForIDU) +STUB("7ql+sS+-xMc", uhash_compareUnicodeString) +STUB( + "7qlebFfMeMc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB("7qqQA1v-gj8", _ZNK3JSC12JSRopeString11resolveRopeEPNS_9ExecStateE) +STUB("7qx+k6JaR0E", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIlE21intrusive_ptr_sub_refEPS4_) +STUB("7qx9ZPDsDq4", _ZN3WTF6String6numberEf) +STUB("7r-cRJ8ieEM", _ZN7WebCore11DisplayList7ClipOutD2Ev) +STUB( + "7r4QwpqvU3M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE8pushBackERKS8_) +STUB("7rBlPIEPUyI", utrie_setRange32_67) +STUB("7rCX22wnafA", uenum_unext_67) +STUB("7rCiCCIa8Jo", _ZN7WebCore15HitTestLocationC2Ev) +STUB("7rEQhmpH8S0", _ZN12video_parser5vpcom8datetime8DateTimeD2Ev) +STUB( + "7rM2JdeQHu4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEE11get_deleterEv) +STUB("7rNEJOU11hY", WKPageRequestStorageAccessConfirmResultListenerGetTypeID) +STUB("7rQdA99onWU", scePerfPmcMcSeqStop) +STUB("7rV1sDuGIBY", jio_vfprintf) +STUB("7rcp+-q8MOo", _ZN7WebCore8isReloadENS_13FrameLoadTypeE) +STUB("7rekIUh97Jc", sceFsUfsHideBlocksFromUser) +STUB("7rfErhFzrTM", _ZN7WebCore8JSPath2DaSERKS0_) +STUB("7rjDj4OaSZI", _ZNK3sce2Np9CppWebApi7Matches2V118CreateMatchRequest19getCancellationTimeEv) +STUB( + "7rk9gc1KLpc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "7rnMMfiF6XI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE5emptyEv) +STUB("7rnbZv4SZGI", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12setInteger10ERKi) +STUB( + "7rnfjAu2T1Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEppEi) +STUB("7rogx92EEyc", sceFontCreateWritingLine) +STUB("7rpBVV1wWdg", _ZNK3sce2Np9CppWebApi15Personalization2V15Error11sourceIsSetEv) +STUB("7ruwcMCJVGI", __kernel_cosdf) +STUB("7rwsM14lA0Y", sceHttpCacheRevalidate) +STUB("7rxRdJURjaY", + _ZN7WebCore16ScriptController13executeScriptERKN3WTF6StringEbPNS_16ExceptionDetailsE) +STUB("7rxnZJsitOo", _ZN3JSC15constructNumberEPNS_14JSGlobalObjectENS_7JSValueE) +STUB( + "7rxnaWbFiOU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "7ry4ceyDecw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEEaSERKSA_) +STUB( + "7sAD0kv-8fg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE8copyFromERKS9_) +STUB("7sC0PWT-6x8", _ZN3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayerD2Ev) +STUB("7sGpnAOSuJk", _ZN3JSC48UnconfigurablePropertyChangeAccessMechanismErrorE) +STUB( + "7sK+Wf9qAlk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEmmEi) +STUB("7sQ+HPaU-xY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEEppEi) +STUB("7sQJoWkkeyw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEED2Ev) +STUB("7sSG84fU0QE", _Z38sceGpuDebuggerSetEnabledExceptionsMaskPN3sce3Gnm16GsStageRegistersEj) +STUB( + "7sWzkmBaOXU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEC2Ev) +STUB("7sXto2xOz20", mono_aot_Sce_Vsh_Accessor_Db_Notifyplt) +STUB("7siOfIbbg8I", sceKernelGetCurrentFanDuty) +STUB("7smeGY1I2EQ", mono_metadata_init) +STUB("7smsfQWlv-w", llvm_throw_corlib_exception_trampoline_p) +STUB( + "7ssB5cny7ps", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEEC2ERSA_) +STUB( + "7t2OqEaZ5G0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEE21intrusive_ptr_sub_refEPS7_) +STUB("7t3lPIaxzws", _ZNK7WebCore4Page15forEachDocumentERKN3WTF8FunctionIFvRNS_8DocumentEEEE) +STUB("7tACjdACOBM", _ZNSt14_Num_ldbl_base5radixE) +STUB( + "7tDx3XXwXgY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE10setContextEPNS2_10LibContextE) +STUB("7tIwDZyyKHo", _ZNKSt7codecvtIcc9_MbstatetE16do_always_noconvEv) +STUB( + "7tN5TgRVWBk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEC1ERS7_) +STUB("7tQcF--0ZeE", _ZN3sce7Toolkit2NP2V27Session7Request17GetInvitationDataC2Ev) +STUB("7tTevQ9Prkw", _ZN3sce7Toolkit2NP9Utilities6FutureI13SceNpOnlineIdED2Ev) +STUB("7tTmRfjk7AE", JVM_FindSignal) +STUB("7tTpzMt-PzY", _ZTIN10__cxxabiv129__pointer_to_member_type_infoE) +STUB("7tZN-6O8+XI", _ZN23sceMetadataReaderWriter8MetadataC1Ev) +STUB("7tcEaueZLEw", sceVencCoreQueryHeader) +STUB("7tgvysxSvMQ", uregion_getContainingRegion_67) +STUB( + "7thBcegEA48", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "7thj3CoqRns", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("7thzCvuayP8", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead21unsetLeaderPrivilegesEv) +STUB( + "7tlG7qEgf-A", + _ZN9Inspector18InspectorHeapAgent10getPreviewERN3WTF6StringEiRSt8optionalIS2_ERNS1_6RefPtrINS_8Protocol8Debugger15FunctionDetailsENS1_13DumbPtrTraitsISA_EEEERNS7_INS8_7Runtime13ObjectPreviewENSB_ISG_EEEE) +STUB("7tm0GnvQOXc", _ZN4Manx6CookieC2Ev) +STUB("7toDR5T5+6o", _ZN3JSC7Symbols21ModuleLinkPrivateNameE) +STUB("7toV+elXqNM", sceAgcCbCondWrite) +STUB("7tpfL-ChrcI", + _ZN7WebCore4Page33removeActivityStateChangeObserverERNS_27ActivityStateChangeObserverE) +STUB("7u-IA2nC-ho", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Publisher9unsetNameEv) +STUB("7u-PW+P3QRw", _ZN3sce7Toolkit2NP2V24Core8ResponseINS3_18CustomResponseDataEEC2Ev) +STUB("7u0Uo1JBhWI", _ZN3sce2Np9CppWebApi6Common6VectorIdE7popBackEv) +STUB("7u6xT54Gym0", + _ZN3sce2Np9CppWebApi7Matches2V121ResponseMemberFactory7destroyEPNS3_14ResponseMemberE) +STUB("7u9DDNs476c", mono_aot_Systemjit_code_end) +STUB( + "7uARA17olMY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEC1EPKS8_) +STUB("7uChLfYz4AE", _ZN3sce2Np9CppWebApi6Common6VectorIfE10setContextEPNS2_10LibContextE) +STUB("7uEKCJNwdgI", _ZN7WebCore24CoordinatedGraphicsLayer15setContentsRectERKNS_9FloatRectE) +STUB("7uHtTuWzH7M", _ZN7WebCore9HTMLNames13onofflineAttrE) +STUB("7uInq-rV0oc", + _ZN7WebCore14SQLiteDatabase20setCollationFunctionERKN3WTF6StringEONS1_8FunctionIFiiPKviS7_EEE) +STUB("7uLPqiNvNLc", sceNpTusGetMultiSlotDataStatusAAsync) +STUB("7uP9SZTd0w8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEC1ERS7_) +STUB("7uX6IsXWwak", _ZTIPKe) +STUB( + "7uXiqnIka+M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "7ubnYQ7QZ1E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEC1Ev) +STUB( + "7ueDLYjbtM8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEE7get_refEv) +STUB("7uhBFWRAS60", sceKernelClearEventFlag) +STUB("7uhYq0XVJSc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEixEm) +STUB("7ukE-Yrzqog", sceAudioOut2MasteringInitEx) +STUB("7ul-CqURZMA", _ZN7WebCore8SVGNames16font_stretchAttrE) +STUB("7uqf3hPw8Yw", sceNpManagerIntSignin) +STUB("7v4h8nXSHVw", _ZN7WebCore15GraphicsContext18setStrokeThicknessEf) +STUB("7vB8Zdxyt2Q", _Z27sceRazorGpuThreadTraceStartPN3sce3Gnm17DrawCommandBufferE) +STUB("7vDR+PWf33w", _ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody13ticketIdIsSetEv) +STUB("7vDoLwaK4xs", _ZN3JSC7JSArray15copyToArgumentsEPNS_9ExecStateENS_15VirtualRegisterEjj) +STUB( + "7vDtk-lU1Tk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEE7get_refEv) +STUB( + "7vZLeY5xcqw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEppEi) +STUB( + "7vZwwVBiV88", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEC1EPKS8_) +STUB( + "7vaXaXNXYpQ", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeaders21intrusive_ptr_sub_refEPS5_) +STUB("7vfm0eUVXQc", _ZN7WebCore7Element11clientWidthEv) +STUB("7vhUO3s6Mw4", _ZN4Manx21Curl_cookie_loadfilesEP13SessionHandle) +STUB("7viCF+kxvfU", + _ZN3sce2Np9CppWebApi13InGameCatalog2V513ContentRatingC1EPNS1_6Common10LibContextE) +STUB("7vjNQ6Z1op0", sceNpMatching2ContextStart) +STUB("7vjpL8AQE0U", mono_aot_appjit_code_start) +STUB( + "7vm39qC7Nhk", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_14ScriptProfiler9EventTypeEEESt8optionalIT_ERKN3WTF6StringE) +STUB("7vocvpCkmtI", ucurr_getKeywordValuesForLocale_67) +STUB("7vogZXhH-O0", _ZN7WebCore9HTMLNames15aria_atomicAttrE) +STUB( + "7vtAYSY6bqM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEmmEv) +STUB( + "7vtYVsbjXtM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUser9terminateEv) +STUB("7vytp5uDwHU", utrace_cleanup_67) +STUB("7w+LeZ5ymys", _ZN3sce2np7RingBufD1Ev) +STUB("7w09iXWXQZc", glUniformMatrix3fv) +STUB("7w0tVnYH3KI", _ZN7WebCore11MediaPlayer25shouldIgnoreIntrinsicSizeEv) +STUB("7w3lGvrPXnM", + _ZThn24_N9Inspector22InspectorDebuggerAgent20setBreakpointsActiveERN3WTF6StringEb) +STUB("7wAbgYDc1xo", _ZN7WebCore9HTMLNames5dlTagE) +STUB("7wCjXDc2cjI", sceUrlConfigResolverGetDefaultQueryParameter) +STUB( + "7wCpbZn3A10", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEE11release_refEv) +STUB( + "7wEANk-BbmA", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_18SessionInformationENS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv) +STUB("7wF24V3Ity4", mono_aot_Sce_Vsh_Np_AppLaunchLinkplt) +STUB("7wGcSRiXMG0", ures_getVersion) +STUB("7wORfQWfnM0", sceVshAvcapInit) +STUB( + "7wPqwjG-mPE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE8pushBackERKS8_) +STUB("7wQl1NIU2q0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend7FriendsEED2Ev) +STUB("7wRBEcZoyPI", _ZN3sce7Toolkit2NP9NpTitleIdC1Ev) +STUB( + "7wTnlJvIM4s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEEdeEv) +STUB( + "7wX70WJXaSA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEptEv) +STUB("7wbrBFtLTOk", mono_method_get_header_checked) +STUB("7weprQXzVCI", _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile12unsetAboutMeEv) +STUB("7whYpYfHP74", sceSslGetIssuerName) +STUB("7wjIexo6MvQ", WKPageSetPageFindMatchesClient) +STUB("7wniYnHArVU", sceVshctlSetPartyStatus) +STUB( + "7wnrvWIt1q8", + _ZN3sce2Np9CppWebApi14SessionManager2V159PostPlayerSessionsSessionIdMemberPlayersResponseBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_27ResponsePlayerSessionPlayerEEEEEPNS9_INS3_52PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEE) +STUB("7wuF160ByAA", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessionsC1ERS5_) +STUB( + "7wwmcioD8GQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEC1Ev) +STUB( + "7wxKICJRPhE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("7wxcVuLXjCU", WKWebsiteDataStoreConfigurationCopyApplicationCacheDirectory) +STUB("7x2xKiiB7MA", sceFontStyleFrameGetScalePoint) +STUB("7x711wfwKEM", SoundLoad) +STUB( + "7xBa-539VuU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEC2EPS8_) +STUB("7xHc82XURl8", __asan_report_exp_store8) +STUB("7xOeJ01pYMw", _ZN7WebCore9CookieJar12sameSiteInfoERKNS_8DocumentE) +STUB("7xR6RTQA3YQ", _ZNK7WebCore6Editor6canCutEv) +STUB("7xSkVM0yhV0", sceNpTrophy2SystemIsServerAvailable) +STUB("7xYdUWg1WdY", sceNetConfigWlanAdhocScanJoin) +STUB("7xZPYVC9HlQ", _ZNK7WebCore15AffineTransform7mapRectERKNS_7IntRectE) +STUB( + "7xaEpHGMwM0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEC2EPS8_) +STUB("7xewwX3b8DU", _ZN7Nicosia16SceneIntegrationC2ERNS_5SceneERNS0_6ClientE) +STUB("7xfAsgL2uZY", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product10unsetMediaEv) +STUB( + "7xjQjqXWlks", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("7xn10svtv8I", mono_aot_Sce_PlayStation_HighLevel_UI2Platformjit_code_end) +STUB("7xnsvjuqtZQ", __negvsi2) +STUB("7xrN1+5W2EI", _ZN15AbstractStorage18DailymotionContent5WriteEPKvlPl) +STUB("7xs-MsvwIww", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEC2ERKS7_) +STUB( + "7xtUXtbHllQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEppEi) +STUB( + "7xudTPl1058", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEeqERKS9_) +STUB( + "7xuuigfR6YU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEC2EPS8_) +STUB("7xvsKSy+09o", sceAppInstUtilAppInstallGetLinkState) +STUB("7xyAxrusLko", sceAudioPropagationSystemQueryMemory) +STUB( + "7y-+8D-NnVE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEC2EPS8_) +STUB( + "7y-4wGizfA8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEmmEv) +STUB("7y2mIfBZO+I", sceRazorCpuUserSignalWaitBegin) +STUB("7y4XwenfJCM", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V19JoinStateEEC1EPS6_) +STUB( + "7y9l2wdKRlI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "7yB-1SMPWgU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEC2EPNS2_10LibContextE) +STUB( + "7yFsoyLh4qs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE8pushBackERKS8_) +STUB("7yIpFl9KknY", sceRegMgrGetVersionForPS4) +STUB( + "7yKMDWUTKkQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEE11get_deleterEv) +STUB("7yMFgcS8EPA", _Cnd_destroy) +STUB( + "7yPpfux-puY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEptEv) +STUB("7yQMd+x9H-M", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku14setIsPlusPriceERKb) +STUB( + "7yTH62fFC6I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEED2Ev) +STUB("7yUQmZWoqVg", sceShellCoreUtilResetBgdcConfig) +STUB("7yUi5vhU6jY", _ZTVN15AbstractStorage7ContentE) +STUB("7yVPipHElno", uprv_int32Comparator_67) +STUB( + "7yWAlzkChiA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "7yXITS65REs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEixEm) +STUB("7yXjWLWJFHU", sceLncUtilGetCdlgExec) +STUB( + "7yZ5E94+a5E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEEaSERSA_) +STUB( + "7yZxLNzVE6c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEEC2Ev) +STUB("7yaXecp2C1Y", _ZN10MsvUpdaterC1Ev) +STUB("7yd77QMeHYU", fuse_sync_compat_args) +STUB( + "7yeAB5yU70I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEmmEv) +STUB( + "7yl7KgO3jtg", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSessionaSERS5_) +STUB( + "7ynxgix5CWo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEppEv) +STUB("7yoylSlzs08", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEC2ERKS7_) +STUB("7yrkUU5Dmf0", monoeg_g_list_nth_data) +STUB( + "7yuDXvqIQF4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEneERKS9_) +STUB( + "7yvmfRSsUqQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEE3getEv) +STUB("7yvyZp8UBVA", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12RoomPingTimeEEC2Ev) +STUB("7yzlR+C4pw0", GCC_except_table351) +STUB("7z02PpmQ8p4", adjust_heap) +STUB( + "7z2cr9fsgkw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEC2EPS8_) +STUB("7z5XZM3NUmI", Java_java_io_FileInputStream_readBytes) +STUB( + "7z5ykGN-JIQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE3endEv) +STUB("7zFt1IsCMf4", _ZNK9Inspector21InspectorConsoleAgent22developerExtrasEnabledEv) +STUB( + "7zIyQPq+fW8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEppEi) +STUB( + "7zKHjQqkbLk", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("7zKsIDMLD-0", _ZN3sce7Toolkit2NP2V28Presence12Notification14PresenceUpdate8deepCopyERKS5_) +STUB( + "7zO40Ubn+dU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEE3getEv) +STUB("7zYbmYp5YQM", uprv_min) +STUB("7zeO0teNgU8", ScePsmMonoDebuggerAgentParseOptions) +STUB( + "7zhxd+GVoWQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "7znfnJZOzCQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("7zpvvFtWio4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEE7get_refEv) +STUB( + "7zrwhFig2Gc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "7zsU0-ouq8s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEEptEv) +STUB( + "7zsee5IHLis", + _ZN3sce7Toolkit2NP2V26Friend10getFriendsERKNS3_7Request10GetFriendsEPNS2_4Core8ResponseINS3_7FriendsEEE) +STUB("7zu3F7ykVeo", sceUserServiceGetAccountRemarks) +STUB("7zvO32POmQw", _ZN3sce7Toolkit2NP2V27Ranking7Request8SetScore8MIN_PCIDE) +STUB( + "8+4rDt8DwJ0", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot13getaccountIdsEv) +STUB( + "8+80W1+qfSA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEneERKS9_) +STUB( + "8+Ao2c1gFw0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEEC2ERKSA_) +STUB("8+CmlQdq7u8", sceShellCoreUtilRequestEjectDevice) +STUB("8+HEt2ltjX8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEC2Ev) +STUB("8+IWPUep4uY", uprv_getStaticCurrencyName) +STUB("8+KmK2NNPww", _ZN9Inspector22InspectorDebuggerAgent20didDispatchAsyncCallEv) +STUB("8+Sw5EO5Rz8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE8capacityEv) +STUB("8+UPqcEgsYg", CERT_getCertificateSubject) +STUB("8+W-yd4K9vU", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_19ProductInfoDetailedEE9constructEPS3_RKS3_) +STUB("8+bvxYiuFLM", _ZN3sce3pss4core8graphics14NativeGraphics20RestoreGraphicsStateEv) +STUB( + "8+lgYWC2MKA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEC1ERS7_) +STUB( + "8+mU2ytO6bo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEdeEv) +STUB( + "8+oOpix4I0Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEEC1ERSA_) +STUB("8+pbMrwpj8U", _UIx86_64_full_mask) +STUB("8+qs9Lh1Mug", sceValidationGpuGetDiagnostics) +STUB("8+s5BzZjxSg", scePthreadAttrGetaffinity) +STUB("8+u9jIuQ9jQ", _ZN3sce2Np9CppWebApi6Common6VectorIlED2Ev) +STUB("8+uYQVpnSrk", _ZN7WebCore8SVGNames10strokeAttrE) +STUB("8-33e2lOOC8", _ZN7WebCore6Cursor8fromTypeENS0_4TypeE) +STUB("8-64JQpyWp0", _ZN7WebCore28InspectorFrontendClientLocal19setDebuggingEnabledEb) +STUB( + "8-90+EVPfcE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEC2ERS7_) +STUB( + "8-9Y4oS+OuE", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "8-G2Y2n+hxc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE5clearEv) +STUB("8-JqBtdvpe0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEE7add_refEv) +STUB("8-R5U3iiEI8", _ZN9Inspector21InspectorConsoleAgentD1Ev) +STUB( + "8-RoR7XlALE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEmmEi) +STUB( + "8-SoOhIpMAs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE3endEv) +STUB( + "8-UWUr5nzkA", + _ZN7WebCore18ScrollingStateTree15setRemovedNodesEN3WTF7HashSetImNS1_7IntHashImEENS1_10HashTraitsImEEEE) +STUB("8-VzftUVhck", _ZN7WebCore9HTMLNames13onmessageAttrE) +STUB( + "8-WyMeY6Dtk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("8-YkZFXzp+o", _ZN3WTF24TimeWithDynamicClockType3nowENS_9ClockTypeE) +STUB("8-bkqei4PMY", _ZN7WebCore18PlatformTimeRanges5clearEv) +STUB( + "8-dnBq9VaBI", + _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product12setPlatformsERKNS1_6Common6VectorINS5_6StringEEE) +STUB("8-e7E989rCU", scePlayGoGetInstallChunkId) +STUB("8-gHRL4zbd8", JSGlobalContextSetUnhandledRejectionCallback) +STUB("8-gX5W0jOxY", mono_bitset_union) +STUB("8-hZIMejkAc", WKBooleanGetTypeID) +STUB("8-pxgXRAHiY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE6resizeEj) +STUB("8-voJZab+0E", sceVoiceQoSDisableChat) +STUB("8-zmgsxkBek", sceFontGlyphDefineAttribute) +STUB("802pFCwC9w0", __udivti3) +STUB("805Uf87-0dM", __asan_get_report_address) +STUB( + "8068PjBvkJY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEED2Ev) +STUB("8098pRP5akI", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEED1Ev) +STUB( + "809XqQXH3ps", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEptEv) +STUB( + "80BR53J5uEE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEC1EPS8_) +STUB("80J1+bA9ZIk", _ZN7WebCore21DiagnosticLoggingKeys16internalErrorKeyEv) +STUB("80LTtL71Ics", _ZN3WTF20ParallelHelperClientD2Ev) +STUB("80N7lkcSs8I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEED2Ev) +STUB("80Oq9-9fvGM", + _ZN3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponse13setNextOffsetERKi) +STUB("80XdmVYsNPA", scePadStartRecording) +STUB( + "80XjIquGbok", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEED2Ev) +STUB( + "80Y63sXa2y4", + _ZN3JSC13RuntimeMethod18getOwnPropertySlotEPNS_8JSObjectEPNS_9ExecStateENS_12PropertyNameERNS_12PropertySlotE) +STUB( + "80cSgWbaoOY", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody16unsetCustomData1Ev) +STUB("80cchWF2U14", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEE7get_refEv) +STUB("80fcVNTzsdk", _ZN3sce7Toolkit2NP16EventListRequestC1Ev) +STUB( + "80i1DAxeW14", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEixEm) +STUB("80wLdp72zyU", _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V113ErrorResponseD2Ev) +STUB("80xEONMJfBM", mono_aot_Sce_Vsh_Webbrowser_XdbWrapperunbox_trampoline_addresses) +STUB( + "80y-gqQIDzQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEppEv) +STUB("80zfVuuuxbM", _ZTVN7WebCore24RotateTransformOperationE) +STUB("812ErfQJ70Q", WKPreferencesGetLargeImageAsyncDecodingEnabled) +STUB("816frQKIUek", YGConfigSetLogger) +STUB( + "819c52c05y4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE5clearEv) +STUB("81AgDAJ9Bug", _ZN12video_parser10cVideoPath19GetPathNameOriginalEv) +STUB("81DkaQt6J30", sceNpWebApi2IntPushEventCreateDestPs4CtxIndFilter) +STUB("81HsnXFbWS4", sceAjmBatchJobSetResampleParameters) +STUB("81KCoTZY3UY", _ZN7WebCore9HTMLNames18onvolumechangeAttrE) +STUB("81MD+QADYBA", _ZN7WebCore17SQLiteTransactionC2ERNS_14SQLiteDatabaseEb) +STUB("81NPJfXmuWA", _ZN9Inspector14InspectorAgent6enableERN3WTF6StringE) +STUB( + "81P36N-rVnM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEED2Ev) +STUB("81SYcLsx1Oo", _ZN3sce7Toolkit2NP2V28Matching7Request15SendRoomMessageD1Ev) +STUB("81T70clxSV8", __preinit_array_end) +STUB( + "81UtMWiOfAM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("81VKocczZ8k", monoeg_g_ascii_xdigit_value) +STUB( + "81W8PHnGLHY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE5abortEv) +STUB("81Yimq-MfUY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEmmEi) +STUB("81ZjjD6MqDk", sceSpNetResolverAbort) +STUB( + "81bW0Z+IalE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEppEi) +STUB("81cc-11uj3k", _ZNK7WebCore8Position24computeNodeAfterPositionEv) +STUB("81dEoicalyk", WKBundleSetApplicationCacheOriginQuota) +STUB("81dRKj9s7JA", _ZN7WebCore9HTMLNames12codebaseAttrE) +STUB("81eO-evrZWU", uhash_compareLong) +STUB("81hRRuj67UY", mono_profiler_get_current_time) +STUB( + "81iR49ahSuo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "81pAHILAnpI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE4termEv) +STUB( + "81r--0UCLz4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE8copyFromERKS9_) +STUB( + "81rqZbXtzMY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "81svbZawAfQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE5clearEv) +STUB("81uX7PzrtG8", _ZNKSt7collateIwE9transformEPKwS2_) +STUB("81vTH6onyXk", _ZN7WebCore9FrameTree11appendChildERNS_5FrameE) +STUB("81vsDhbLa9I", _ZN3sce7Toolkit2NP2V27Session11SessionDataC2ERKS4_) +STUB( + "81w0cOjyw3k", + _ZN7WebCore9JSDOMRectC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_7DOMRectENS6_13DumbPtrTraitsIS8_EEEE) +STUB("82+1IlmM2LQ", RecvThread) +STUB("821E7f26Dy0", sceCesGbUcsProfileSet4ByteCharRange) +STUB("825l3ahMQb8", usprep_open_67) +STUB( + "82A8MKH2JSc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("82Es1Z7OX18", _ZNK3JSC12JSRopeString33resolveRopeToExistingAtomicStringEPNS_9ExecStateE) +STUB( + "82GuTM0VS-E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEixEm) +STUB("82J08GIspUI", _ZN3sce2Np9CppWebApi7Matches2V123RequestTeamMemberResult8setScoreERKd) +STUB("82RP7itI-zI", sceNpTusGetMultiUserVariableForCrossSaveVUserAsync) +STUB( + "82SDMVCgjFY", + _ZN9Inspector26AnimationBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) +STUB("82TFNb9cc-w", pio2_3thi) +STUB("82U+y3yxaqg", __asan_stack_free_2) +STUB("82UnAk1CC98", SoundInitialize) +STUB("82ZOvyi9kZs", _ZN7WebCore8Document25createCSSStyleDeclarationEv) +STUB("82a6n7tJLoY", mono_aot_Sce_Vsh_UpdateServiceWrapperunbox_trampoline_addresses) +STUB("82bVw8qSCFc", WKFramePolicyListenerUseWithPolicies) +STUB("82k2MzTAs3U", sceFsUfsAllocateDownloadData) +STUB("82mYiWFCqJk", _ZN3JSC11RegisterSet25reservedHardwareRegistersEv) +STUB("82mm6jhmlXM", _ZNK7WebCore14FrameSelection11currentFormEv) +STUB("82n4LwLnE3s", WKFrameGetFrameLoadState) +STUB("82ndriDYXu0", GCC_except_table221) +STUB( + "82sNxa7EYcU", + _ZN3sce2Np9CppWebApi14SessionManager2V127GetGameSessionsResponseBodyC2EPNS1_6Common10LibContextE) +STUB( + "82wbxAvTXYY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE10setContextEPNS2_10LibContextE) +STUB("82xkxfc-r-A", usearch_handleNextCanonical_67) +STUB("82yg+EfjqV4", _ZNK3WTF9MediaTimentEv) +STUB("833Y2TnyonE", sceNpTusGetMultiSlotDataStatusA) +STUB( + "834ooMhjNJ0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEdeEv) +STUB( + "835EfUG6rEI", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("835p-ywJWEY", + _ZN15AbstractStorage14YoutubeContent11SetMetadataEPN23sceMetadataReaderWriter8MetadataE) +STUB( + "837DYewRfHE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEptEv) +STUB( + "838uDrE90fI", + _ZN7WebCore11JSDOMWindow17defineOwnPropertyEPN3JSC8JSObjectEPNS1_14JSGlobalObjectENS1_12PropertyNameERKNS1_18PropertyDescriptorEb) +STUB( + "83Fl-otnL8w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEmmEv) +STUB( + "83JP9l62vqs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEEC2ERKSA_) +STUB( + "83KhGMADM4g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE6resizeEj) +STUB( + "83MOvok5m9k", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10getString6Ev) +STUB( + "83OKvIJ9hQk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEEaSERSA_) +STUB( + "83Ofz1vAtEE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE5clearEv) +STUB("83OhUgcv-zM", initThread) +STUB( + "83PJ6KaX-rk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB("83PjroiDmFI", _ZNK3sce2Np9CppWebApi14SessionManager2V15Error9getSourceEv) +STUB("83TnXMiZhoI", _ZN7WebCore7Element18insertAdjacentTextERKN3WTF6StringES4_) +STUB("83UuBEtf9QI", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend16FriendsOfFriendsEE12deepCopyFromERS7_) +STUB( + "83XLUkhFKGw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "83fgB0siJ7k", + _ZN7WebCore8JSPath2DC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_6Path2DENS6_13DumbPtrTraitsIS8_EEEE) +STUB("83i-0wbUtlM", ScePsmMonoStringLength) +STUB("83kEPQNWy8A", _ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEED1Ev) +STUB("83lbPafRjgU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16UnlockedTrophiesEED1Ev) +STUB("83leZmsmmT4", sceSystemServiceTelemetrySetData2) +STUB( + "83mM1ifu19I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE8pushBackERKS8_) +STUB( + "83nJQFiYJQQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEE11get_deleterEv) +STUB("83qtpn8+XnA", FTA_Support_Format_TrueTypeGx) +STUB( + "83rZr6+U0Sk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEE11release_refEv) +STUB("83tS6HRLhis", _ZNK7WebCore12RenderObject7childAtEj) +STUB( + "83uSe2hJdXk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEE6assignEPS7_PFvS9_EPNS2_10LibContextE) +STUB( + "83zps7rYDxo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("845S2XQdxhw", hb_buffer_set_direction) +STUB("845enllqZOA", sceHeadTrackerFinalize) +STUB("846dTS0lJxA", _ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForReadD1Ev) +STUB("848+jm1RbPw", png_get_sPLT) +STUB("84955-7DGwQ", _ZN7WebCore11ImageBufferD1Ev) +STUB( + "84B3mHn08eY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB( + "84GvFNxlHu4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("84H-GMsBU6M", sceMbusUserLogin) +STUB("84MgU4MMTLQ", sce_net_in6addr_linklocal_allnodes) +STUB("84UvB5bVu40", mono_aot_Sce_PlayStation_Orbisunwind_info) +STUB("84YmzSlL7xM", __asan_store2_noabort) +STUB( + "84aS8IPKiZs", + _ZN7WebCore26MessagePortChannelRegistryC1EON3WTF8FunctionIFvRKNS_21MessagePortIdentifierENS1_16ObjectIdentifierINS_21ProcessIdentifierTypeEEEONS1_17CompletionHandlerIFvNS_26MessagePortChannelProvider11HasActivityEEEEEEE) +STUB("84c6B5MNTY4", _ZN7WebCore9HTMLNames12behaviorAttrE) +STUB("84exS0Tz93A", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge18ChallengeThumbnailEEC2Ev) +STUB("84fDxStrG44", sceDeviceServiceInitialize) +STUB( + "84hNJSiDVh0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEC1ERKS8_) +STUB("84mvEJFMYK4", sceKeyboardGetDeviceInfo) +STUB( + "84nex+7YQBE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE3endEv) +STUB( + "84u6QQ8OcuA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE10setContextEPNS2_10LibContextE) +STUB("84wFdzYjYWM", _ZN3sce7Toolkit2NP2V210Tournament7BracketC1Ev) +STUB("84wIPnwBGiU", _ZNSt7collateIwED2Ev) +STUB( + "85+okwrvJ94", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEptEv) +STUB( + "85227V--Iwg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEmmEv) +STUB("852F5+q6+iM", sceVideodec2Decode) +STUB("8533Q+LU7EQ", sceNpLookupCreateTitleCtx) +STUB("853R8RXtPMY", sceKernelWriteDipswData) +STUB( + "853nwXOanco", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEaSERKS9_) +STUB("85Dwu5xralY", _ZNK9Inspector14FrontendRouter16hasLocalFrontendEv) +STUB( + "85FBoqCoG2c", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEptEv) +STUB( + "85Nbm8Nxlhw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEC1EPNS2_10LibContextE) +STUB("85O5VmSVqmI", RnpsGetOpenPsIdForSystem) +STUB("85QMKsnns2o", sceKernelGetResource) +STUB("85RI6pMiI6c", sceFaceTrackerRegisterRecoveryFromLostTargetCallback) +STUB("85S6tE7Yj9Q", _ZN3JSC6JSCell7destroyEPS0_) +STUB("85VvItGKSso", _ZN3WTF10StringView11SplitResult8Iterator17findNextSubstringEv) +STUB( + "85XYuzKCx1w", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEEptEv) +STUB( + "85YAQEkfES4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEC1EPKS8_) +STUB("85YHrhvEUZg", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetail10setmatchIdEPKc) +STUB("85ZWdzWYgas", sceNpServiceCheckerIntDestroyRequest) +STUB( + "85a1O1NX+U4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEEC2Ev) +STUB("85dgws57jQI", _ZN3JSC16InternalFunction6s_infoE) +STUB("85ihBnbDmN4", mono_object_new_fast) +STUB("85japawIVRs", mono_aot_Sce_Vsh_Np_RifManagerunbox_trampolines) +STUB("85uJvC0LtH8", InitializeEncoding) +STUB("85v1KZeMTgU", sceAvSettingCloseLoopbackBuffers) +STUB("85x+9X--y44", mono_aot_Sce_Vsh_KernelSysWrapperjit_code_start) +STUB("85zfUWmEezc", _ZThn672_N7WebCore24CoordinatedGraphicsLayer19imageBackingVisibleEv) +STUB("85zul--eGXs", sceSaveDataSetParam) +STUB( + "86-n0Cirtws", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEdeEv) +STUB("863+6F5aaJc", _ZN4Manx9X509chainD2Ev) +STUB( + "863CFlOqZW0", + _ZNK3sce2Np9CppWebApi14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBody6toJsonERNS_4Json5ValueEb) +STUB("863Xi0RSKcM", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13FriendsOfUserEED2Ev) +STUB("864pTeUZkns", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEEC1Ev) +STUB( + "86C8N-j5GaY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE21intrusive_ptr_add_refEPS9_) +STUB("86CYbamMKg8", dwarf_reg_state_pool) +STUB( + "86FLn7MZ8S0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEC2EPKS8_) +STUB("86FcCWrjlLI", _ZTVN9Inspector24ConsoleBackendDispatcherE) +STUB( + "86IBBgOtSEg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB( + "86IbuPuDwmU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEC2Ev) +STUB("86JgtVBApTw", _ZNK7WebCore6Quirks29shouldAvoidUsingIOS13ForGmailEv) +STUB("86S44SnCgU0", mono_class_num_methods) +STUB("86ZN9dRzLSY", + _ZN7WebCore24CoordinatedGraphicsLayer18setBackdropFiltersERKNS_16FilterOperationsE) +STUB("86db-POgDaM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEED1Ev) +STUB( + "86jNzbmb9Xk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEE3getEv) +STUB( + "86kYpKZYi6k", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE5emptyEv) +STUB("86mSgXjesi4", + _ZN7WebCore15StringTruncator15rightClipToWordERKN3WTF6StringEfRKNS_11FontCascadeERfbfb) +STUB( + "86mWM4V6g4o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEC2ERKS7_) +STUB( + "86snHoZux4Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEC1Ev) +STUB("86w9gD5145M", _ZNK9Inspector14ConsoleMessage7isEqualEPS0_) +STUB( + "86xobPwKnxM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEC2ERS7_) +STUB( + "8707T3pvVL0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEneERKS9_) +STUB("8748CMwOfzs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEaSERS7_) +STUB( + "876gm+oXa-g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEixEm) +STUB("87Evced-ubg", __tsan_read8_pc) +STUB("87GekE1nowg", _ZNK3sce16CommonDialogUtil6Client8isFinishEv) +STUB( + "87GxEszTWHE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEE11release_refEv) +STUB( + "87H0FX-vmYY", + _ZN3JSC12StringObject17defineOwnPropertyEPNS_8JSObjectEPNS_9ExecStateENS_12PropertyNameERKNS_18PropertyDescriptorEb) +STUB("87JaFrM3K-U", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11EntitlementEEC2ERKS4_) +STUB("87OOTOeB8pE", _ZNK3WTF6String10tryGetUtf8Ev) +STUB( + "87RkCcOK8EI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEC2Ev) +STUB("87ZDz6-kBq8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEED1Ev) +STUB("87blI6UBBRg", YGConfigFree) +STUB("87c5Woa1HE8", _ZNK7WebCore8Document31defaultCharsetForLegacyBindingsEv) +STUB("87efDBqDEao", sceMbusStartAudioOutAuxBroadcast) +STUB("87gr-QVAD0A", _ZN3sce7Toolkit2NP2V24Core7Request20DefaultRequestParamsD2Ev) +STUB("87hyvGGe1qo", Java_com_sony_gemstack_org_dvb_application_AppProxyImpl_n_1initialisation) +STUB("87ivWj5yKzg", sceNpWordFilterWaitAsync) +STUB("87kuO6Vb384", mono_aot_Sce_Vsh_Friendjit_code_start) +STUB( + "87mnHfWxrbQ", + _ZN9Inspector8Protocol13BindingTraitsINS0_8Debugger9CallFrameEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE) +STUB("87rZESXTlek", _ZN7WebCore11DisplayList4ItemC2ENS0_8ItemTypeE) +STUB("87tCXR9gXkg", sceAppInstUtilAppInstallPs4CloudGame) +STUB("87y0cjK5WrY", + _ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer12unsetNatTypeEv) +STUB("87yC0cEoCyg", _ZN12video_parser7cVpUtil15SwapUTF16EndianEPwS1_i) +STUB("88+PrKBUNhA", udat_close_59) +STUB("88+nqBN-SQM", sceUserServiceGetSaveDataTutorialFlag) +STUB("88-YlkMyvPM", mono_btls_ssl_write) +STUB("884z2EqDTyQ", _ZNK7WebCore11MediaPlayer9startTimeEv) +STUB( + "887+b0g69Hw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEEdeEv) +STUB("8897qt4Jsc0", _UTF32Data_67) +STUB("88AHlMQMY2k", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE5beginEv) +STUB("88Dsmx1Nj+A", _Z26Camera_SetConfigTypeNativeii) +STUB("88EV-EV0PYM", mono_aot_Sce_Vsh_WebViewDialogjit_got) +STUB( + "88EpPjvWJjQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEED1Ev) +STUB( + "88EqqbmEaR8", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V137MatchCompletionRateQuitMetricsFactory7destroyEPNS3_30MatchCompletionRateQuitMetricsE) +STUB("88EyUEoBX-E", _ZNSt6chrono12system_clock9is_steadyE) +STUB("88Fre+wfuT0", _ZTSSt23_Generic_error_category) +STUB("88GKkivBFhI", _ZN3sce2np8JsonNull5ClearEv) +STUB("88I6OPWzc-U", mono_aot_Sce_Vsh_DbRecoveryUtilityWrapperunwind_info) +STUB("88Oyd0j2VfQ", _ZN3WTF6Thread7suspendEv) +STUB("88QdTuQS0oc", CONF_modules_load_file) +STUB( + "88Rk5FV9QAs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE5beginEv) +STUB( + "88UbrMfFKzs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEcvbEv) +STUB("88Vv-AzHVj8", fmodf) +STUB("88WaPmXp6x8", hb_font_funcs_set_nominal_glyph_func) +STUB( + "88XrTtyQbT8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEmmEv) +STUB("88aTQZOp3eA", _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile8fromJsonERKNS_4Json5ValueE) +STUB( + "88gadX30Byc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEC1Ev) +STUB("88menXYWpBk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V113ErrorResponseC1EPNS1_6Common10LibContextE) +STUB( + "88qH1oSHZbk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "88rursjFF-M", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB( + "88t6keST3jo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEC1Ev) +STUB("88unzk13gEs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEE7get_refEv) +STUB("88y5DztlXBE", sceSystemStateMgrLeaveMediaPlaybackMode) +STUB("8927Cl0rvug", ScePsmMonoRegisterBundledAssemblies) +STUB("8956F1voabk", _ZNK7WebCore20ResourceResponseBase34cacheControlContainsMustRevalidateEv) +STUB("899jyvgvJO8", _ZN3JSC4Yarr17RegularExpressionD2Ev) +STUB( + "89BoJ5b2fFI", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot17hasnpServiceLabelEv) +STUB( + "89Gygek6oq0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEdeEv) +STUB( + "89LiiDxQx3M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE7popBackEv) +STUB("89M9XjRxHE8", Java_com_sony_bdjstack_security_aacs_AACSOnline_getDeviceBindingID) +STUB("89P-nyi1gYk", _ZN3sce2Np9CppWebApi6Common8IteratorINS2_17ParameterBaseImpl6KeySetEEaSERKS6_) +STUB( + "89bIOQowhu0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEC1EPKS8_) +STUB("89bUBaCrC8Q", _ZN7WebCore9HTMLNames22ontransitioncancelAttrE) +STUB( + "89g6fgUA5L0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEC2EPNS2_10LibContextE) +STUB( + "89gkRsbcr-E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEE7add_refEv) +STUB( + "89knq0nSPoc", + _ZN9Inspector21DOMFrontendDispatcher22inlineStyleInvalidatedEN3WTF6RefPtrINS1_8JSONImpl7ArrayOfIiEENS1_13DumbPtrTraitsIS5_EEEE) +STUB("89nOgT5lSMw", mono_conc_hashtable_destroy) +STUB("89qRV3WqaJw", mono_aot_Sce_Vsh_MimeTypemethod_addresses) +STUB( + "89wcgASEQBE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "89zzumsNiKY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEptEv) +STUB("8A0cAU4yBVY", FT_Render_Glyph_Internal) +STUB("8A0knFNsfrQ", _ZN9Inspector24CanvasFrontendDispatcher13canvasRemovedERKN3WTF6StringE) +STUB("8A4T5ahi790", sceHmdDistortionSetOutputMinColor) +STUB("8A75eH1+SK0", _ZN3sce2Np9CppWebApi6Common6VectorIdED2Ev) +STUB("8A7Zj+CRIoY", sceMbusDebugStartApplicationNull) +STUB( + "8A9L2obyGFE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEC1EPS8_) +STUB("8AFfaImRNvM", sceAppInstUtilAppGetIrremovableAppList) +STUB( + "8AQuyjQVvaY", + _ZN3JSC8Bindings13RuntimeObject12defaultValueEPKNS_8JSObjectEPNS_9ExecStateENS_22PreferredPrimitiveTypeE) +STUB("8ASJ+Z8ucho", mono_btls_x509_lookup_init) +STUB("8ATBwVI+xfE", JSObjectIsConstructor) +STUB("8AXPL-1ruuw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE7popBackEv) +STUB("8Aa+vkMrTB8", cairo_matrix_invert) +STUB("8Ad6pf9G7cY", SSL_library_init) +STUB("8AgQaMFPjgk", WKPreferencesSetIsNSURLSessionWebSocketEnabled) +STUB("8ArIPXBlkgM", _ZGVNSt8numpunctIwE2idE) +STUB( + "8As89jEbWGA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEE3getEv) +STUB("8AyNCecdJu4", utrie_clone_67) +STUB("8B1ma0irGss", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEE3getEv) +STUB( + "8B41JC1gqpg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE3endEv) +STUB("8B4VW7ug08U", _ZNK7WebCore13ContainerNode15countChildNodesEv) +STUB( + "8B5MxMQaVzI", + _ZN9Inspector17ScriptDebugServer27dispatchFunctionToListenersEN3WTF8FunctionIFvRNS_19ScriptDebugListenerEEEE) +STUB( + "8B8H8IWRMNc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "8B9oK2Syz9U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEmmEi) +STUB("8BAjfnje7GE", mono_aot_ReactNative_Modules_Vshmethod_addresses) +STUB( + "8BF0G0pf8+k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE3endEv) +STUB("8BLW2WiSIuI", sceFiosDebugDumpError) +STUB( + "8BMw6McaE1E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("8BNxNGzXcIc", sceImeBackendReset) +STUB("8BOJm7jP1i0", _ZN3JSC7JSProxy12isExtensibleEPNS_8JSObjectEPNS_14JSGlobalObjectE) +STUB("8BOObG94-tc", scePadSetVibrationForce) +STUB("8BR72pm2o88", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEED2Ev) +STUB("8BSBAkpmLJs", _ZN7WebCore11MathMLNames18subscriptshiftAttrE) +STUB("8BTv1JN+kDg", Java_com_sony_bdjstack_javax_media_controls_SoundManager_getIndex) +STUB("8BVP56JIZuA", sceNpFriendListDialogGetStatus) +STUB("8Bcr6Nlg7SM", _ZN3sce7Toolkit2NP2V24Core17CustomRequestBase20setCustomServiceTypeEi) +STUB( + "8BdtbbqfB4Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE21intrusive_ptr_add_refEPS7_) +STUB("8BmNb6bfcL0", FTC_Manager_RemoveFaceID) +STUB("8BpjJImTYOo", _ZNK7WebCore8Document29useElevatedUserInterfaceLevelEv) +STUB("8BrtU9maWG4", sceKernelGetCompiledSdkVersionByPid) +STUB( + "8Bry08-yF5Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE7reserveEi) +STUB("8BthJlBF8h0", _ZN7WebCore8SVGNames6k4AttrE) +STUB( + "8BtuRKRkAgI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEED2Ev) +STUB("8Bx9GhcwKv8", _ZN3sce7Toolkit2NP2V23TUS7Request10DeleteData19MAX_DATA_REAL_SLOTSE) +STUB("8BxDHnQxrtY", vzone_inDaylightTime_67) +STUB("8By20nPynEo", sceAudioOutSetPadSpkVolume) +STUB("8C36kDPJiS0", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession16setSwapSupportedERKb) +STUB("8C8b5+pKTlU", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody7getInfoEv) +STUB( + "8C9IaVK7-aU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEEC2ERSB_) +STUB("8CAmAEvRBAs", mono_class_is_valuetype) +STUB( + "8CHxiX0aRWU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("8CJiPTZPzxc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEEC1Ev) +STUB( + "8CKXZM9mjBk", + _ZN7WebCore8Document5writeEPS0_ON3WTF6VectorINS2_6StringELm0ENS2_15CrashOnOverflowELm16ENS2_10FastMallocEEE) +STUB( + "8CPV-vR4yeQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEC1Ev) +STUB( + "8CPfbVza4TM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEmmEi) +STUB("8CQ6hvaP02M", JVM_NewMultiArray) +STUB( + "8CVvo-jduN8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEdeEv) +STUB("8CZkNnI1+r8", _ZN7WebCore18PlatformTimeRangesC2ERKS0_) +STUB("8Ce6O0B-KpA", _ZTSPKe) +STUB("8Cj4mypVxeM", _ZN3sce7Toolkit2NP27GetSharedScreenshotsRequestC2Ev) +STUB("8CqniKDzjvg", sceNpMatching2SignalingGetPeerNetInfo) +STUB("8CruzjvpOpo", u_uastrncpy_67) +STUB( + "8CtsKespKNg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEptEv) +STUB("8CvUXZP4Gsc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEED1Ev) +STUB( + "8CvY6xwM+hA", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("8D2GMMAmpC8", JSObjectGetTypedArrayBuffer) +STUB("8D2X+-YRqik", _ZN3sce2Np9CppWebApi6Common8IteratorImEC1EPm) +STUB( + "8D4i-I2CgTs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEC1Ev) +STUB( + "8D6av0fSwYA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEE7get_refEv) +STUB("8DA2XBZ-VqY", _ZN7WebCore14ScrollableAreaC2Ev) +STUB( + "8DGbe-oZ0XU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEC2Ev) +STUB( + "8DJJb9wBoSY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEEaSERKSA_) +STUB("8DLBHeMsS1k", FcFontSetMatch) +STUB("8DNJW5tX-A8", _ZNSt18bad_variant_accessD0Ev) +STUB("8DP3Cufk2xw", _ZN3WTF8CollatorC1EPKcb) +STUB("8DPEdJh9RkE", sceNpLookupNetCreateTitleCtx) +STUB("8Dbbtb+SL8I", g_isConnect) +STUB( + "8DeFzeqIDfQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEC2Ev) +STUB("8Dnr5-1OA-A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEEppEv) +STUB("8Do8auuWdlI", Java_com_sony_gemstack_org_dvb_application_AppsDatabaseImpl_n_1init) +STUB( + "8DpRIrt+JH4", + _ZN7WebCore14ScrollableArea31adjustScrollStepForFixedContentEfNS_20ScrollbarOrientationENS_17ScrollGranularityE) +STUB("8DrClRz7Z2U", _ZN3sce2np9RefObjectD0Ev) +STUB("8DvXQqbHbJU", _ZN7WebCorelsERN3WTF10TextStreamERKNS_10LayoutSizeE) +STUB("8E1w2JMg4VU", _ZN7WebCore22SkewTransformOperationD0Ev) +STUB("8E3Sd4-xS-E", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEE7add_refEv) +STUB("8E3xiDBHzeg", _ZN7WebCore8SVGNames10polygonTagE) +STUB("8E8iEeuyUks", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16UnlockedTrophiesEE3getEv) +STUB( + "8EGe9LUfDTc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("8EI2YIBPufQ", _ZNK7WebCore20TransformationMatrix17toAffineTransformEv) +STUB( + "8EJGA3zVb7M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "8EKL1meARlk", + _ZN7WebCore21NetworkStorageSession43setPrevalentDomainsToBlockButKeepCookiesForERKN3WTF6VectorINS_17RegistrableDomainELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("8EQ1k-45LF0", WKPreferencesSetCaptureAudioInGPUProcessEnabled) +STUB( + "8EUdVL-7VzI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEED2Ev) +STUB("8EWKZMal51w", _ZN3WTF10StringImpl17s_emptyAtomStringE) +STUB( + "8Een5Jg-PiI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEdeEv) +STUB("8Ef68e31YjA", _ZNK15AbstractStorage17DailymotionFolder7GetStatEPNS_4StatE) +STUB("8Elqwzjf6KQ", _ZN3WTF18ExternalStringImpl6createEPKDsjONS_8FunctionIFvPS0_PvjEEE) +STUB( + "8Etv6zGHjJ0", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Console14ConsoleMessage4TypeEEEN3WTF8OptionalIT_EERKNS6_6StringE) +STUB("8Eue157jhDI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEaSERS7_) +STUB( + "8EuesH8mP8c", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB("8F-6OAVX8Ao", _ZNK7WebCore26HTMLTextFormControlElement26isInnerTextElementEditableEv) +STUB( + "8F0fIFfuGTI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEC1EPS8_) +STUB("8F1ctQaP0uk", roundl) +STUB("8F52nf7VDS8", __eqdf2) +STUB("8F5j7U-Bq6s", sceAgcDriverSetValidationErrorOutputFrequency) +STUB("8F6QVB0ji1U", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody7setInfoEPKvm) +STUB("8FBD-Rkv4hQ", _ZN3JSC16InternalFunction11getCallDataEPNS_6JSCellE) +STUB("8FEjLQwRnwI", _ZN7WebCore24DeprecatedGlobalSettings37gResourceLoadStatisticsEnabledEnabledE) +STUB("8FGEdlmruQQ", mono_btls_ssl_print_errors_cb) +STUB("8FKB-KCBLXU", _ZN9Inspector21InspectorConsoleAgentnwEm10NotNullTagPv) +STUB( + "8FKOd3YZuoM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("8FQEz+Hqbyk", _ZN7WebCore32serializationForRenderTreeAsTextENS_5SRGBAIhEE) +STUB( + "8FTpAEAojpQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("8FZB4rMZL7A", _ZN7WebCore18TextureMapperLayerD1Ev) +STUB("8FZCwSl5aL0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEaSERKS7_) +STUB( + "8Fd1eEeR0IE", + _ZN3sce2Np9CppWebApi14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyC2EPNS1_6Common10LibContextE) +STUB( + "8FmKXIqakAY", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("8FqgR3V7gHs", CERT_getCertExtension) +STUB("8FuvovbHui4", sceCesRefersUcsProfileJisX0201RomanTilde0x7e) +STUB("8FvyUwk9vRM", mono_aot_Sce_PlayStation_PUIPlatformjit_got) +STUB( + "8G-HUUvIAto", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEEcvbEv) +STUB("8G2LB+A3rzg", atexit) +STUB("8G392ayhCbI", _ZN7WebCore13CSSStyleSheet10insertRuleERKN3WTF6StringEj) +STUB("8G7TUQzUXk8", + _ZN3sce2Np9CppWebApi7Matches2V120RequestMemberFactory7destroyEPNS3_13RequestMemberE) +STUB( + "8G9Aa6kloPo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEptEv) +STUB("8GJivKkXZrk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE3endEv) +STUB("8GM-Z1J8310", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEaSERKS7_) +STUB( + "8Ga6nwquwFE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEeqERKS9_) +STUB( + "8GeMfG+Kldk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEEC2ERSA_) +STUB("8Gfarwyi-y0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEED2Ev) +STUB("8GjM2JWuepQ", mono_set_assemblies_path) +STUB("8GkaY2B7opM", sceHmd2ReprojectionGetStatus) +STUB("8Gl+aYTYdtU", WKPageSetPageLoaderClient) +STUB("8Gn4CQddSsQ", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku9typeIsSetEv) +STUB( + "8GoSXz0dBBQ", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEEiRNS2_10LibContextEPT_m) +STUB( + "8GvlEJm62g4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEC2EPS8_) +STUB("8GwVKh0hWOg", _ZThn120_N7WebCore9DOMWindowD0Ev) +STUB("8H3yBUytv-0", _ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED0Ev) +STUB("8H5jn8fhm1I", jpeg_fdct_10x10) +STUB("8H8WT7VeOgg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEC2Ev) +STUB( + "8HDehIOfxDQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEppEi) +STUB("8HJxlMVRFTU", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11EntitlementEEC2Ev) +STUB( + "8HLtmjHT6fs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEE7get_refEv) +STUB( + "8HOjWgy3dR4", + _ZThn16_N9Inspector21InspectorRuntimeAgent14callFunctionOnERN3WTF6StringERKS2_S5_PKNS1_8JSONImpl5ArrayEPKbSB_SB_SB_RNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISF_EEEERNS1_8OptionalIbEE) +STUB("8HVu8ydUmLM", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEEC1Ev) +STUB("8HhxNMSnlT4", g_VideoOutReprojectionRate) +STUB( + "8HihWxY-UcU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEEC2Ev) +STUB("8HrKWYwzjJ0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth8AuthCodeEEC2Ev) +STUB( + "8HspV0A0Jas", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("8HuwT+hKGGg", _ZN3sce7Toolkit2NP2V210Tournament7Request18GetRegisteredUsersC1Ev) +STUB("8I1tIrw0dvg", SSLeay) +STUB( + "8I51JwvRKtA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEC2EPS8_) +STUB("8I7xekkfFhQ", NetCtlCheckCallbackNative) +STUB("8ICL-Sn5+2k", GCC_except_table269) +STUB("8IEd1z5hqb8", _ZN9Inspector21InspectorConsoleAgentnwEmPv) +STUB("8IFjpT4vpdU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEaSERKS7_) +STUB( + "8IG0UPDEbEo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEppEv) +STUB("8IGjwtnvYwI", sceFiosIsValidHandle) +STUB("8IQWkMybIwg", ucnv_isAmbiguous_67) +STUB("8IR1mG6ZOnM", _ZN7WebCore13HitTestResultC1ERKNS_11LayoutPointE) +STUB("8IRMbYCNJ8w", + _ZN8meta_gen13TiffRetriever10InitializeEP23PromoteInnerInformationiN9db_schema9CodecTypeE) +STUB("8IS0KLkDNQY", sceHmdInternalSetVirtualDisplayDepth) +STUB("8IU-yTBbKCc", _ZN3sce7Toolkit2NP2V24Core7Request11MemoryPools27NP_TOOLKIT_MEM_DEFAULT_SIZEE) +STUB("8IWKA5xjoIw", _ZN3JSC16callCustomSetterEPNS_14JSGlobalObjectEPFbS1_llEbNS_7JSValueES4_) +STUB("8IX8TlRX0DQ", _ZN7WebCorelsERN3WTF10TextStreamERKNS_13GraphicsLayer16CustomAppearanceE) +STUB( + "8IbgLa95tAQ", + _ZN3sce2Np9CppWebApi14SessionManager2V128ResponseGameSessionSpectatorC1EPNS1_6Common10LibContextE) +STUB("8Ick-e6cDVY", sceHmdGetDistortionWorkMemoryAlign) +STUB( + "8Ida2cof78g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE8pushBackERKS8_) +STUB("8IhWWA-uhGA", _ZN7WebCore9HTMLNames11patternAttrE) +STUB( + "8IjY9r0i9WE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE21intrusive_ptr_sub_refEPS9_) +STUB("8Ijs9yzqVTU", _ZTVN9Inspector18InjectedScriptHostE) +STUB("8Ijx3Srynh0", _ZTIx) +STUB("8Il7b6+ndo8", _ZNK15AbstractStorage14FacebookFolder7GetStatEPNS_4StatE) +STUB( + "8IlfO9IvjJM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEEaSERKSA_) +STUB( + "8Im2f8F6JF0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE5emptyEv) +STUB("8IqdtMmc5Uc", sceUserServiceGetGlsIsCameraHidden) +STUB("8ItkKGIHJmE", _ZNK3WTF3URL28queryWithLeadingQuestionMarkEv) +STUB("8Iu0hJTTkXM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEEC1Ev) +STUB("8J-ZWqhJC+0", + _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBodyC2EPNS1_6Common10LibContextE) +STUB("8J3ctSNLYQg", _ZN7WebCore23CoordinatedBackingStoreD1Ev) +STUB("8J3ibSyXSGU", mono_shared_hashtable_lookup) +STUB("8J50bwny9H4", _ZN7WebCore20DictationAlternativeC2Ejjm) +STUB( + "8J8vzvxnD4c", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer39setxPSNSESSIONMANAGERREQUESTEXACTORIGINEPKc) +STUB("8JA1CHE5IGw", _ZNK7WebCore7Element10shadowRootEv) +STUB("8JBVcsTZCBo", _ZN7WebCore8SVGNames19animateTransformTagE) +STUB("8JDGfjB7ysY", _ZN10Deprecated11ScriptValueC2ERKS0_) +STUB( + "8JEMpKFSVJ8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEeqERKS9_) +STUB("8JGR6pBb0+w", _ZN3sce7Toolkit2NP2V27Ranking17GetGameDataResult5resetEv) +STUB("8JHXNHuOCIw", EVP_CIPHER_CTX_set_padding) +STUB( + "8JIiF5qYZGU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB( + "8JKAj5Mkwug", + _ZN3sce7Toolkit2NP8Commerce9Interface18consumeEntitlementERKNS1_29ConsumeEntitlementInputParamsEb) +STUB( + "8JQ-G9JbCws", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEEC2EPS6_PNS2_10LibContextE) +STUB( + "8JQKcnfU9Mc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEC1ERKS7_) +STUB("8JTDrZtcRDQ", _ZNSt15basic_streambufIwSt11char_traitsIwEE8pubimbueERKSt6locale) +STUB("8JX-S2ADen4", _sceNpManagerFreeImpl) +STUB("8Ji9q7l-y1I", WKViewDidEnterFullScreen) +STUB("8Jiiv4OS0eg", _Fofindbyfd) +STUB( + "8Jili043MPE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEE11get_deleterEv) +STUB("8JluKlHujk0", delegate_invoke_impl_target_2) +STUB( + "8JquVOUAluY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEEaSERS9_) +STUB("8Jr4cvRM6EM", _Getgloballocale) +STUB("8JrILsiO4Ik", _ZNK7WebCore6Widget23convertToContainingViewERKNS_10FloatPointE) +STUB("8Jrc5Nub3mY", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForReadC2EPNS1_6Common10LibContextE) +STUB( + "8JsDEb4m1Eo", + _ZN9Inspector25NetworkFrontendDispatcher16responseReceivedERKN3WTF6StringES4_S4_dNS_8Protocol4Page12ResourceTypeENS1_6RefPtrINS5_7Network8ResponseENS1_13DumbPtrTraitsISA_EEEE) +STUB( + "8JtnXETnzQk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE7popBackEv) +STUB( + "8Jz-3wGewAI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("8K-LVDYy0bo", + _ZN3sce7Toolkit2NP2V29Messaging7Request19SendGameDataMessage21MAX_SIZE_TEXT_MESSAGEE) +STUB("8K3JHuxGxGQ", _ZN3sce7Toolkit2NP9Utilities6FutureI19SceNpTrophyGameDataEC2Ev) +STUB("8K7BukmOdO0", _ZN7WebCore9HTMLNames24onwebkitanimationendAttrE) +STUB("8K82kJxF4+w", mono_aot_Sce_Vsh_JsExtensionunwind_info) +STUB( + "8KC8ONrb2tA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEC1EPNS2_10LibContextE) +STUB("8KDMful7g1Y", sceKernelSlvNotifyError) +STUB("8KHh+VefZDM", errno) +STUB("8KHszvU2Fbg", mono_aot_Sce_Vsh_Np_ServiceChecker2unwind_info) +STUB("8KMULEIpDx8", sceCesEucKrToUtf32) +STUB( + "8KUbcGHFkxo", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE10setContextEPNS2_10LibContextE) +STUB("8KW0UiKR9wg", _ZSt9use_facetISt7collateIcEERKT_RKSt6locale) +STUB("8KXX2Cg3q5I", WKWebsiteDataStoreClearDiskCache) +STUB("8Kcp5d-q1Uo", sceNetInetPton) +STUB("8Ke1wu8fnVQ", GCC_except_table11) +STUB("8Ke58pr-Nn0", _ZNK3JSC8Bindings13RuntimeObject19getInternalInstanceEv) +STUB("8KeeeFcEdls", _ZNSt10filesystem5_StatEPKcPNS_5permsEPi) +STUB( + "8KfpQloQjDs", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEED1Ev) +STUB( + "8KgBrkXcMrU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEE7add_refEv) +STUB("8Kh+1eidI3c", sceNetConfigSetIfaddr) +STUB("8KiOeSAspEg", WKBundlePageSetBottomOverhangImage) +STUB("8KjtCpKz0GQ", sceFrontPanelDisplaySetOutputMode) +STUB("8Kly1JrJUlw", sceAgcAcbPushMarkerSpan) +STUB("8KnO2N9rsSE", + _ZNK3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform14sessionIdIsSetEv) +STUB("8Kowq53G00s", _ZN7WebCore8SVGNames6ryAttrE) +STUB("8KrqbaaPkE0", sceUsbdFillControlSetup) +STUB("8KtiLiHVP5k", ucase_toFullUpper) +STUB("8KwflkOtvZ8", __atomic_load_8) +STUB("8L1yrPX3z0A", _ZN3sce2Np9CppWebApi14SessionManager2V115LocalizedStringD2Ev) +STUB( + "8L3IHfQVP54", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEEptEv) +STUB( + "8L7KWh4++44", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "8LAJxeUdlfk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEplEm) +STUB( + "8LBflhrBEPw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEE5resetEPS9_) +STUB( + "8LGg0xUkMkc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE5emptyEv) +STUB( + "8LH8hFtY9rw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEC2EPKS8_) +STUB( + "8LIaCdC-AwM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEC1EPKS8_) +STUB("8LJOLHmWey4", _ZN7WebCore11MediaPlayer17seekWithToleranceERKN3WTF9MediaTimeES4_S4_) +STUB("8LNY0wNMOFo", _ZN9Inspector24RemoteControllableTarget19setTargetIdentifierEj) +STUB( + "8LPt8NKIPa4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEE5resetEPS6_) +STUB("8LQccqDG08o", _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEED1Ev) +STUB("8LR9hvg3nEI", mono_stack_walk_no_il) +STUB("8LRpdRXPf0s", GetStringPlatformChars) +STUB( + "8LU3ysiXpSg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE5clearEv) +STUB("8LVL407LqN8", _ZN9Inspector33AnimationBackendDispatcherHandlerD2Ev) +STUB( + "8LX3fKh-oVM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEEC1ERS9_) +STUB( + "8LYtq3NfCCY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEC2EPS8_) +STUB("8LalMSTp+tE", _HZData_67) +STUB("8Lemumnt1-8", CERT_extractSerialNum2) +STUB( + "8LetkKPdzJY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEC2EPNS2_10LibContextE) +STUB( + "8Lf2iycHkcA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("8Lf4Fp1TxA0", sceVideoOutAdjustColor2_) +STUB( + "8LfDbpT7QU4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEE11release_refEv) +STUB( + "8LhBx0ZHGwg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEC2EPS8_) +STUB( + "8Lj9mT-pd3s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEC1EPNS2_10LibContextE) +STUB( + "8LlzGXxL-BY", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities10unsetlimitEv) +STUB("8Lo6Zv94aho", sceSystemServiceDisableNoticeScreenSkipFlagAutoSet) +STUB("8Lr9U8OGHsE", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry19getRecordedDateTimeEv) +STUB("8LtPsbRuYso", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product14setDisplayNameEPKc) +STUB( + "8Lw8c17Vmmk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("8M64VSmc8-A", sceUpsrvUpdateGetBetaAgreementUrlForUpdate) +STUB("8M6cv85VPG4", _ZN3WTFlsERNS_10TextStreamERKNS_3URLE) +STUB("8MDdXkueLyk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEaSERKS7_) +STUB("8MEjogxPrv0", sceCamera2SetExposureGain) +STUB("8MExInxqXhE", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession14setCustomData1EPKvm) +STUB( + "8MGPH+IErWk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "8MGzdmcGLtU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEEC1ERKSA_) +STUB("8MNwOmGRJiQ", _ZNK7WebCore19ProtectionSpaceBase4hostEv) +STUB("8MPc+lwPsTU", _ZN3sce7Toolkit2NP2V29Challenge18ChallengeThumbnail8deepCopyERKS4_) +STUB("8MTUD52Sx+o", __asan_update_allocation_context) +STUB("8MZi4-tr47E", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus13dataSizeIsSetEv) +STUB("8McYx55Xe7c", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18SessionInformationEE9constructEPS3_RKS3_) +STUB("8McgDFB8ieA", rgctx_fetch_trampoline_mrgctx_80_p) +STUB("8MeR3+4qFO0", _ZN3sce7Toolkit2NP2V28Matching9AttributeD2Ev) +STUB("8MfLWEwgorc", mono_aot_Microsoft_CSharpmethod_addresses) +STUB("8Mg+NtJ64oc", + _ZN3sce3pss5orbis5input46InputManager_GetControllerHandleByUserIdNativeEiNS2_12HardwareTypeEPi) +STUB("8MiixbKxVT0", _ZN7WebCore9HTMLNames20onwebkitkeyaddedAttrE) +STUB("8Mio51rNcJQ", _ZN3sce7Toolkit2NP2V26Trophy7Request19GetTrophyPackTrophyC1Ev) +STUB("8MjO05qk5hA", sceCameraSetRegister) +STUB("8MjsRSBicYc", makeUlpResHdrNoFragment) +STUB("8MnBSwMIbOg", + _ZN12video_parser20cVideoContentFactory19releaseVideoContentEPNS_13iVideoContentE) +STUB("8MqXmG2IbM8", sceIduUtilGetNumInstalledApps) +STUB("8MqwVJd-cSY", _ZN3sce7Toolkit2NP2V27Ranking7Request8SetScoreC1Ev) +STUB("8MrvDWzE5Eo", _ZN9Inspector15RemoteInspector5setupEj) +STUB( + "8MtIPCdWOGI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEC1Ev) +STUB("8N-4nYLwXak", WKPreferencesGetQTKitEnabled) +STUB("8N-NuWOSbsw", _ZN3NTF3URL24removeFragmentIdentifierEv) +STUB("8N00f1amYeA", Java_java_awt_GnmImage_nativeSetColorModelIntPixels) +STUB( + "8N0tJDxt8Y0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "8N1sHCc4bnA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "8N2lLlFQeUc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEE5resetEPS6_) +STUB("8N2tmT3jmC8", sceAgcDcbSetIndexCount) +STUB("8NBMvh0iER0", __asan_default_options) +STUB( + "8NEgXjw66MU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEEC1ERS8_) +STUB("8NEhOzjGDWM", JNU_SetFieldByName) +STUB( + "8NGrDMIt+BE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEEptEv) +STUB( + "8NHF7+TgcW8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEppEi) +STUB("8NLhMIIrYIk", _ZN3sce3pss4core6camera17IsCameraConnectedEiPb) +STUB("8NNHrZe2Em4", _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead11memberIsSetEv) +STUB("8NS4ExBbqAw", _ZN3sce2Np9CppWebApi13InGameCatalog2V514ProductFactory7destroyEPNS3_7ProductE) +STUB("8NUB97h5hMg", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead15getJoinDisabledEv) +STUB("8NVUcufbklM", + _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecPKv) +STUB("8NZZs9FgG5Y", mono_aot_JSC_Netunbox_trampolines_end) +STUB( + "8NgMpaaAfkU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEdeEv) +STUB( + "8Nl7btCkccY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("8Nq3pmu0zuE", sceAppInstUtilGetMainAppTitleId) +STUB("8NrLRhJhmnc", mono_aot_Sce_Vsh_Np_Webapiunbox_trampolines_end) +STUB( + "8NtPgE3KjtY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEaSERS7_) +STUB("8NuOHiTr1Vw", pthread_rwlockattr_settype_np) +STUB( + "8NvEP90rrCE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("8NvMTqWOwo4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersD2Ev) +STUB( + "8Nxjy-8eU6s", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEplEm) +STUB("8NzBD4MiQH4", sceClPthreadAttrSetinheritsched) +STUB("8NzwQtK+OjQ", _ZN4Manx3Ssl10SslContextD2Ev) +STUB("8O-6RHUTD7k", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession15setJoinDisabledERKb) +STUB("8O-hcNI2jho", _ZN7WebCore8SVGNames6k1AttrE) +STUB("8O0T16ycgH8", _ZN3JSC12CachePayload17makeMallocPayloadEON3WTF9MallocPtrIhNS1_10FastMallocEEEm) +STUB("8O273zrVSU4", mono_btls_x509_crl_get_revoked_count) +STUB("8O8iTFqJDj4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEptEv) +STUB("8O9hi9-+3kE", _ZN9Inspector34DOMStorageBackendDispatcherHandlerD1Ev) +STUB( + "8OA95knynUU", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getInteger4Ev) +STUB("8OABXTm-4nI", + _ZN3sce2Np9CppWebApi14IdentityMapper2V333PsnWebError_error_missingElements9unsetNameEv) +STUB("8OCexW9qJgQ", _ZNK3sce4Json6String6substrEmm) +STUB("8OGv-VaSrPc", _ZN3sce2np18HttpConnectionPool8FindIdleEiPKcS3_t) +STUB("8OHZsn1lLv0", _ZNK7WebCore6Length3refEv) +STUB("8OJ86vFucfo", sceNetCtlClearEventIpcInt) +STUB("8OJ8j1Uyunk", _ZN7WebCore11DisplayList14ConcatenateCTMD0Ev) +STUB("8OKCmdrC6Kw", _ZTVN7WebCore11DisplayList13ClipOutToPathE) +STUB( + "8OLV0SsQGHk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE8capacityEv) +STUB( + "8ONBJbPoq6c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEC1EPS8_) +STUB("8ORf7qkFq1E", fuse_version) +STUB("8ORxSr+WMPQ", _ZN7WebCore11DisplayList11DrawEllipseC1ERKNS_9FloatRectE) +STUB("8OSy0MMQ7eI", _ZTSPt) +STUB("8OXV3N926Mw", __asan_poison_cxx_array_cookie) +STUB("8OaTnjfgDmQ", _ZN3sce7Toolkit2NP2V27NpUtils7Request22GetOnlineIdByAccountIdC1Ev) +STUB("8OaWHSy5nm0", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_25ChallengeBinaryDataResultEEC2Ev) +STUB( + "8OazyQWbzNk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "8ObHRAQ3aCc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEppEi) +STUB("8Ocv8EZNP0w", mono_aot_Sce_Vsh_ShellCoreUtilWrapperplt) +STUB( + "8OdAKrWrc3w", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEdeEv) +STUB("8Ojm3nxXGo8", Java_java_awt_GnmFontMetrics_initIDs) +STUB("8Okvia9yPe0", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEEaSERKS6_) +STUB("8OlhS07zQ6w", _ZN3JSC7JSProxy17preventExtensionsEPNS_8JSObjectEPNS_14JSGlobalObjectE) +STUB("8OnWXlgQlvo", _sceKernelRtldThreadAtexitDecrement) +STUB( + "8Os6TXetGnk", + _ZN8meta_gen11MsvPromoter23setKeyValue_TBLI_BaseIdENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti) +STUB("8OsvsFluH5A", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead15unsetMaxPlayersEv) +STUB("8OuJzCvCV84", + _ZN7WebCore19JSAnimationTimeline15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "8OvP9GBErOk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEEC2ERKSA_) +STUB("8OxMMqYXs-E", _ZN3JSC7Symbols31newPromiseCapabilityPrivateNameE) +STUB( + "8P1n6bFL0SQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("8P3ImXX5UX8", _ZN9Inspector21InspectorRuntimeAgentnwEm) +STUB("8P43RzcRoFI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEE3getEv) +STUB( + "8P53XE-LcpI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEC2EPKS8_) +STUB("8P9BlyDO4xE", sceBgftServiceTerm) +STUB( + "8P9pJU7-a5Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB("8P9vqW+IePk", _ZN12video_parser5vpcom6StringC1ERKSs) +STUB("8PEuKhIthlw", _ZN7WebCore15DOMWrapperWorldD2Ev) +STUB("8PF0W+Q47rM", sceVnaCancelTts) +STUB("8PGQdZFioFQ", sceKernelGetUtokenExpirationTimeNotafterForRcmgr) +STUB( + "8PGaueckmNE", + _ZN7WebCore6Editor33markMisspellingsAfterTypingToWordERKNS_15VisiblePositionERKNS_16VisibleSelectionEb) +STUB("8PIh8BFpNYQ", _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE13do_date_orderEv) +STUB("8PJ9qmklj2c", _ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED2Ev) +STUB("8PKVhejBM2Q", WKBackForwardListItemCopyOriginalURL) +STUB( + "8PKz7-m83Yk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEC2Ev) +STUB( + "8PPoO0XNa9A", + _ZN3sce2Np9CppWebApi7Matches2V121ResponseTeamStatistic23setTeamMemberStatisticsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_27ResponseTeamMemberStatisticEEEEE) +STUB("8PQY5phhmoE", _ZN3WTF6String6numberEm) +STUB( + "8PUhG5z7x-8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE5emptyEv) +STUB("8PXQIdRsZIE", sceUserServiceSetGlsCameraDepthLevel) +STUB( + "8PcGryCtIyc", + _ZN15AbstractStorage11LocalFolder9NewFolderERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_6FolderEE) +STUB( + "8PdEjuDG0tQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEEC1ERKSA_) +STUB( + "8PoKVfl28n0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEC1EPNS2_10LibContextE) +STUB( + "8Pt9GdhKzfk", + _ZNK3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody14getCustomData1Ev) +STUB( + "8Q24DLUP6Ic", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("8Q4DnxdSuws", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEcvbEv) +STUB("8Q60JLJ6Rv4", getc) +STUB("8Q71i3u9lN0", sceUserServiceSetTopMenuTutorialFlag) +STUB("8Q9l9kEKS+0", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V128SetMultiVariablesRequestBody14unsetVariablesEv) +STUB( + "8QNBDH4ufmc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEED2Ev) +STUB( + "8QO+QzaiNdQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEppEv) +STUB("8QOmy+K3L2k", _ZN15AbstractStorage12LocalStorageD2Ev) +STUB("8QQxOZQP9lc", sceSystemServiceShowErrorDialog) +STUB("8QSl3FZdvbg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEC2ERKS7_) +STUB("8QTCtygIwB4", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setPrimaryAudioStream) +STUB("8QdR1SgicKg", mono_aot_Sce_Vsh_GameListRetrieverWrapperunbox_trampolines) +STUB("8QkqEUG71zk", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetrics9getJitterEv) +STUB("8Qt5WNwzYko", _ZN3sce7Toolkit2NP2V28Commerce7SkuInfo14PRODUCT_ID_LENE) +STUB("8QtMUIaB7Uk", WKSecurityOriginGetPort) +STUB("8QvjMtUTm88", _ZN3JSC7Symbols40getArrayIteratorInternalFieldPrivateNameE) +STUB("8QwZe+atlOg", _ZN3JSC11VMInspector2gcEPNS_2VME) +STUB("8R00hgzXQDY", _ZNSt16nested_exceptionD2Ev) +STUB("8R3APcMguxY", _ZN3WTF14FileSystemImpl18hardLinkOrCopyFileERKNS_6StringES3_) +STUB("8R3h91+im+w", _ZN3JSC8Debugger34notifyDoneProcessingDebuggerEventsEv) +STUB("8R5hS9urFg4", _ZN7WebCore7Element17removeAttributeNSERKN3WTF10AtomStringES4_) +STUB("8R5ivzpkmFk", _ZN3JSC15IsoHeapCellTypeC2ENS_15DestructionModeEPFvPNS_6JSCellEE) +STUB("8R8Xu4jgFjo", _ZNSt13basic_ostreamIwSt11char_traitsIwEEC1EPSt15basic_streambufIwS1_Eb) +STUB("8REoLjNGCpM", sceFontGetResolutionDpi) +STUB("8RJJo61fpeg", _ZN7WebCore22EmptyFrameLoaderClient37dispatchDidReachVisuallyNonEmptyStateEv) +STUB("8RJYbHOSgnM", + _ZN23sceMetadataReaderWriter10jpegParser22jpegParserReadMetadataERKSsRKNS_8MetadataERS3_) +STUB("8RTK3rcM5aU", sceAvSettingSetVideoOutModeInvalid_) +STUB("8RYSSEu8pUk", _ZN3WTF28displayNameForLanguageLocaleERKNS_6StringE) +STUB("8Rc62+-s1+M", _ZNK7WebCore14FrameSelection18isFocusedAndActiveEv) +STUB( + "8ReVlgBkWyM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEplEm) +STUB( + "8ReaMOMaHJk", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScore24unsetxPsnAtomicOperationEv) +STUB("8Redb1zdVYY", _ZN7WebCore9FrameView27updateBackgroundRecursivelyERKNS_5ColorEb) +STUB( + "8RgxiWf4oXc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE8capacityEv) +STUB("8RjBhxgP+28", sceMbusSetDeviceFunctionState) +STUB("8RjQPy3Voqs", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE5beginEv) +STUB( + "8Rjmf94dDGM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEC1Ev) +STUB( + "8Rk0QeYkNwc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEeqERKS9_) +STUB("8RkA35jwegw", _Z37PsmGraphicsAddPostSwapBuffersCallbackPFvPvES_) +STUB("8RmJkIwQIKg", + _ZN7WebCore11JSDOMWindow10putByIndexEPN3JSC6JSCellEPNS1_9ExecStateEjNS1_7JSValueEb) +STUB("8RmZzRy2EB4", _ZN12video_parser18cMp4FFLHndlManager14getFF4PlayHndlEv) +STUB("8Rn6Uiw+f9w", il2cpp_class_get_events) +STUB( + "8RptU+m9PGU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEixEm) +STUB( + "8RsoOstH+Vo", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser15getmemberFilterEv) +STUB("8Rt9DuUY-2c", delegate_invoke_impl_target_8) +STUB("8RtceH+pH3g", _ZTVN7WebCore11DisplayList8FillPathE) +STUB( + "8RwCBNw6P+0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB("8Rwwk4fXVlQ", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle12perGameIsSetEv) +STUB("8RzZ2C-aHG0", Java_java_lang_String_intern) +STUB( + "8S0y3rofC4Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEmmEi) +STUB( + "8S10WsVXo5k", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToSendPlayerSessionMessage9terminateEv) +STUB("8S1mWU-N9kM", _ZThn16_N3sce2np10MemoryFileD1Ev) +STUB("8S2712b7L7o", _ZN7WebCore28InspectorFrontendClientLocal8SettingsaSERKS1_) +STUB("8S3lfixsFds", ubrk_close_59) +STUB( + "8S5aAjQhr24", + _ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody8fromJsonERKNS_4Json5ValueE) +STUB("8S5yfZ1q9K8", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessionsD2Ev) +STUB("8S6+heQnCSg", bemp2sys_psdecoder_sendmessage) +STUB( + "8S8cItIPgfo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEC1EPS8_) +STUB("8S94Ka5I+0Q", ucurr_unregister_67) +STUB("8S9bwpVSMvI", JSGlobalContextCreate) +STUB("8SDojuZyQaY", _ZNKSt14error_category23default_error_conditionEi) +STUB( + "8SEoKYLM0sM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEdeEv) +STUB( + "8SF2RJEQyWw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEEaSERKSA_) +STUB( + "8SHfQyTniLo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEppEv) +STUB( + "8SIMl8YR03k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEEC2ERKSA_) +STUB("8SJGJaRiCaY", EVP_CipherInit_ex) +STUB("8SKVXgeK1wY", vsnwprintf_s) +STUB("8SOxQrQ7AfQ", cairo_scaled_font_get_font_options) +STUB("8SXJpzhlCJg", sceAppInstUtilAppUnInstallTypes) +STUB("8SXRtf+sJ9s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE3endEv) +STUB("8SbQO48TxZ8", _ZN3sce7Toolkit2NP2V210Tournament6EventsD2Ev) +STUB( + "8SdKhohCIEo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEppEi) +STUB("8Sf0tJXMvqA", ucnv_openU) +STUB("8SljQx6pDP8", sceRtcEnd) +STUB("8SoB57mhbi4", mono_assembly_load_references) +STUB("8Sqo3teInkc", _ZN3sce7Toolkit2NP2V210Tournament16RegisteredRosteraSERKS4_) +STUB("8SsbRzTucHU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEcvbEv) +STUB("8Ssk4OU38vw", sceUltReaderWriterLockUnlockRead) +STUB("8SvGrBTpEYM", + _ZN7WebCore11HistoryItem12addChildItemEON3WTF3RefIS0_NS1_13DumbPtrTraitsIS0_EEEE) +STUB("8T-qrc8WEzA", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119PlayStylePropertiesD1Ev) +STUB( + "8T18aK17pHw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEED1Ev) +STUB("8T8VUmTIKE0", sceDeci5Read) +STUB("8TAXvaMXV4w", sceCesSbcToUtf32be) +STUB( + "8TB+0wE1KhU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEEC1ERKSA_) +STUB("8TB5s74NkHw", __sanitizer_get_total_unique_coverage) +STUB("8TBE+9XCZbI", sceAmprAmmCommandBufferMapDirect) +STUB("8TGeI5PAabg", sceUserServiceSetImeAutoCapitalEnabled) +STUB( + "8TMncYpBQSU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEptEv) +STUB("8TQ7sfmVYGs", + _ZN7WebCore19LayerRepresentation20releasePlatformLayerEPNS_26TextureMapperPlatformLayerE) +STUB( + "8TVIn2x-aeg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEE3getEv) +STUB( + "8TbF8pKs+Ro", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("8TfNVjoESl8", + _ZN7WebCore15makeSimpleRangeERKN3WTF6RefPtrINS_5RangeENS0_13DumbPtrTraitsIS2_EEEE) +STUB("8TpAxZoLLRw", _ZN3sce2np3ipc17ServiceIpmiClient18EndRequestForAsyncEii) +STUB("8TqMzIggthc", sceKernelIccGetErrLog) +STUB( + "8TvPGcNi+XQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEEC2Ev) +STUB("8Tzx7cA1XHU", _ZN7WebCore14CredentialBase7compareERKNS_10CredentialES3_) +STUB( + "8U-CFwUXaoA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEC1EPNS2_10LibContextE) +STUB( + "8U-ovgOO1Ik", + _ZN7WebCore16HTMLTableElement10setCaptionEON3WTF6RefPtrINS_23HTMLTableCaptionElementENS1_13DumbPtrTraitsIS3_EEEE) +STUB("8U1vo21oMoU", _ZN7WebCore11DisplayList15DrawNativeImageD1Ev) +STUB( + "8U1x4AD0iPM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEE7add_refEv) +STUB("8U5earSfvFI", g_get_home_dir) +STUB("8U7AfKhu-8U", unumf_resultToString_67) +STUB("8UCA-GchFo0", _ZN7WebCore30InvertLightnessFilterOperationD0Ev) +STUB("8UCJPkPdE3Q", _ZTVN7WebCore11DisplayList12PutImageDataE) +STUB("8UFY5oZKF4M", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEED1Ev) +STUB("8UHip7L+b80", scePsmTerminate) +STUB( + "8UIy0SXtBUM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEC2Ev) +STUB("8UVYwy0F2Hk", sceKernelSetProcessName) +STUB("8UVezszaPHg", _ZN3sce2Np9CppWebApi7Matches2V118RequestMatchPlayerC1EPNS1_6Common10LibContextE) +STUB( + "8Ua9smLR9BM", + _ZN9Inspector22InspectorDebuggerAgent19evaluateOnCallFrameERN3WTF6StringERKS2_S5_PS4_PKbS8_S8_S8_S8_RNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISC_EEEERSt8optionalIbERSH_IiE) +STUB("8UeXNsYnnVQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEED1Ev) +STUB("8UeuxGKjQr8", _ZNSt7_MpunctIwED0Ev) +STUB("8Unr2gwsENc", SetMute) +STUB( + "8Uslkd0ZbcI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEE11release_refEv) +STUB( + "8Uuu6aHJLns", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEC2EPS6_PNS2_10LibContextE) +STUB( + "8V3xCfsS5JI", + _ZNK3sce2Np9CppWebApi14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBody11getPlayerIdEv) +STUB("8V5WEQkIKYw", _ZNK7CoreIPC14MessageDecoder13isSyncMessageEv) +STUB("8VBA6xuvSBA", pa_sync) +STUB("8VBLjtKV5eI", _ZN3sce7Toolkit2NP2V24Core7Request11MemoryPoolsC1Ev) +STUB("8VBTeRf1ZwI", sceNpGetAccountDateOfBirth) +STUB("8VCa+mE1jIE", _ZNK3JSC12PropertySlot20customAccessorGetterEPNS_9ExecStateENS_12PropertyNameE) +STUB( + "8VCoXHOqa94", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEED2Ev) +STUB("8VCqeob59jM", + _ZN3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResults22unsetTeamMemberResultsEv) +STUB( + "8VDFbVGg3cU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE5clearEv) +STUB( + "8VHloNojuiA", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE18getResponseHeadersERSE_) +STUB("8VK-q3yEO7M", mono_profiler_install_appdomain) +STUB("8VKAqiw7lC0", _ZNSt10filesystem12_Current_getERA260_c) +STUB( + "8VOQZyVtMiM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE6resizeEj) +STUB( + "8VPA6ZMO1ps", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEC1Ev) +STUB("8VT1E+wAqcQ", _ZN10Deprecated25ScriptCallArgumentHandlerC1EPN3JSC9ExecStateE) +STUB("8VVXJxB5nlk", getopt_long) +STUB( + "8VWyc8ke-uw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEC1Ev) +STUB( + "8VXPQp0LxUk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEeqERKS9_) +STUB( + "8VXZ+m6d5k0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEdeEv) +STUB( + "8VYztPGz7p8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEE11release_refEv) +STUB("8Vjplhyyc44", sceNpWebApiIntInitialize) +STUB("8VoOXhaFbp8", png_get_channels) +STUB("8Vs1AjNm2mE", _ZTSN10__cxxabiv117__class_type_infoE) +STUB("8VsLTYU7vrI", T_CString_toUpperCase_67) +STUB( + "8Vt9iGZ3hXU", + _ZZSt9MakefacetISt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEESt8_LocinfoERT_T0_E3buf) +STUB( + "8VxLjHh1FMM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEppEi) +STUB("8VxnZ-Os8hU", _ZNK3JSC18PropertyDescriptor10enumerableEv) +STUB( + "8Vz6XaORKlU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEE11get_deleterEv) +STUB("8W+8vFlIPuA", sceUserServiceSetNpMAccountId) +STUB("8W48dCn5fck", il2cpp_current_thread_get_frame_at) +STUB("8W5b+PNZYwI", _ZNK3JSC9CallFrame10codeOriginEv) +STUB( + "8W7ReiCqyAM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB("8WAfe-QpPwk", __sanitizer_cov_trace_pc_guard) +STUB("8WDA9RiXLaw", sceGnmPaEnableFlipCallbacks) +STUB("8WDJjbxNvCg", ures_getByKey) +STUB("8WEbbYu6k4g", _ZN7WebCore9HTMLNames22webkitattachmentidAttrE) +STUB( + "8WGUNHKaFzs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEppEv) +STUB( + "8WGbO0XCKfM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEC1Ev) +STUB("8WH4Pm72J5A", + _ZN7WebCore17PageConsoleClient16takeHeapSnapshotEPN3JSC14JSGlobalObjectERKN3WTF6StringE) +STUB("8WRGpXy43Rw", _ZN3WTF7CString16newUninitializedEmRPc) +STUB( + "8WSEEuhgqdY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEC1EPS8_) +STUB("8WTNYVcLNFA", ENGINE_load_private_key) +STUB( + "8WZMvz1zKr4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEneERKS9_) +STUB("8Wal1MC0Llo", _ZN3WTF21bootSessionUUIDStringEv) +STUB("8Wanl67X4JQ", rgctx_fetch_trampoline_mrgctx_68) +STUB("8WbbVaufULY", ucnv_toUWriteCodePoint_67) +STUB("8Wc+t3BCF-k", _ZTINSt6locale7_LocimpE) +STUB( + "8WcdJXAIRaA", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsersD2Ev) +STUB("8Wcn9B8z17M", WKBundlePageCopyRenderTree) +STUB("8Wda217cJAI", + _ZN12video_parser17cVideoProfilerMp421_releaseSubtitleCodecEPNS_13VpMediaInfo_tE) +STUB( + "8Wfl31rWKec", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE8capacityEv) +STUB("8Why0SPsQa0", _ZNK7WebCore21PageOverlayController20viewOverlayRootLayerEv) +STUB("8WjcG+pfRgE", mono_metadata_type_hash) +STUB( + "8WlxBW2Ok30", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi27ParameterToLeaveGameSession12setaccountIdEPKc) +STUB("8Wo3Ss6cNb0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEEaSERKS7_) +STUB( + "8WpDz2mogd8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEC2Ev) +STUB( + "8WryVbP1y8A", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("8WtmqmE4edw", sceCameraSetVideoSyncInternal) +STUB( + "8WyTri4XmqA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEC1Ev) +STUB("8WzUhuCvVx4", RtcGetCurrentDebugNetworkTickNative) +STUB( + "8X1f5erLNo0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEmmEv) +STUB("8X5O9jV-bFs", sceApplicationSetControllerFocusPermissionToSubProcess) +STUB("8X9tHEAMZhA", _ZN3sce7Toolkit2NP2V29Messaging16GameDataMessagesC2ERKS4_) +STUB("8XCozccg+jU", _ZN9Inspector32DatabaseBackendDispatcherHandlerD0Ev) +STUB("8XGijEoThE0", sceVideoOutSysGetResolutionStatus) +STUB("8XKAwGS4vPg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEEC1Ev) +STUB("8XKR6wa64iQ", sceInvitationDialogGetResult) +STUB( + "8XKXUnsUi2I", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEEptEv) +STUB("8XMkMnjyoHA", + _ZN3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator11setOnlineIdERK13SceNpOnlineId) +STUB( + "8XT8t1yXLaA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V145SetMultiVariablesRequestBody_variablesFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_38SetMultiVariablesRequestBody_variablesEEE) +STUB("8XTArSPyWHk", sceAudioOut2PortSetAttributes) +STUB( + "8XZKYR+U1dg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEeqERKS9_) +STUB("8XiF7OmlpcM", sceDebugResumeApplication) +STUB("8XiTMO5U8Hs", _ZN3NTF22URLRequestJobScheduler10initializeEv) +STUB("8XjRlb2loGU", u_strFromUTF8) +STUB("8Xjh6xp0ye4", _ZN3sce7Toolkit2NP2V212NetworkUtils7Request16GetBandwidthInfoC2Ev) +STUB( + "8XrLwSAJdxo", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_11ProductInfoENS1_15AppSTLAllocatorIS5_EEEED1Ev) +STUB("8Y+aDvVGLiw", sceUserServiceGetGlsAccessTokenTwitch) +STUB("8Y-Bro92C7Y", _ZN7WebCore16NetworkSendQueue15processMessagesEv) +STUB( + "8Y22z5nTYW8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEC2EPS8_) +STUB("8Y5OOBb0B5Y", _ZN3sce2np7RingBuf5WriteEPKvm) +STUB("8Y6RLatuTeM", _ZN9Inspector34DOMStorageBackendDispatcherHandlerC2Ev) +STUB( + "8YDZUOqkWOc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEE3getEv) +STUB("8YF8gLw-X4o", _ZN3sce7Toolkit2NP15AppSTLAllocatorISbIcSt11char_traitsIcENS2_IcEEEEC1Ev) +STUB( + "8YKLUP15U98", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEED1Ev) +STUB( + "8YKNWRCZ78I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEEaSERKSA_) +STUB("8YOgGCMTaSc", _ZN3sce2Np9CppWebApi12Leaderboards2V15Entry14unsetSmallDataEv) +STUB("8YUlFAtJIfY", Java_java_util_ResourceBundle_getClassContext) +STUB( + "8YZ0Yh1Q2lk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEEcvbEv) +STUB("8Ydwx621DeA", _ZN3WTF3URL10invalidateEv) +STUB("8YkVumKhds4", mono_unhandled_exception) +STUB( + "8YmeSJZXVU4", + _ZN3sce2Np9CppWebApi14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayer11setPlayerIdEPKc) +STUB("8Yr143yEnRo", sceRtcConvertLocalTimeToUtc) +STUB( + "8YtcWzYdIRs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEED1Ev) +STUB( + "8YuDwsGaeuA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("8YwLa1Mnk80", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEEC1Ev) +STUB("8YxTYL2RpRQ", fuse_new_compat25) +STUB( + "8YyEouHum7M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEC1EPNS2_10LibContextE) +STUB("8Z+XlYy8K6c", + _ZThn24_N9Inspector22InspectorDebuggerAgent16removeBreakpointERN3WTF6StringERKS2_) +STUB( + "8Z-7icycHjI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEEC2ERSA_) +STUB("8Z2Jc5GvGDI", sceNpCheckNpAvailabilityA) +STUB( + "8Z2r+RQdpO4", + _ZN3JSC14JSRunLoopTimer26removeTimerSetNotificationEN3WTF6RefPtrINS1_10SharedTaskIFvvEEENS1_13DumbPtrTraitsIS5_EEEE) +STUB("8Z3AWaTmiEw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE5clearEv) +STUB( + "8Z78YTlkABw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB( + "8ZErRC49B4s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEC2EPS6_PNS2_10LibContextE) +STUB("8ZG-N130ev8", _ZN3sce7Toolkit2NP2V27Session17SessionInfoUpdate10STATUS_LENE) +STUB( + "8ZNgnjz-3LQ", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectatorD1Ev) +STUB("8ZSSSH8Hx-w", GCC_except_table114) +STUB( + "8ZW8CDnM0DE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEEdeEv) +STUB( + "8ZWUEx99Mwg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE7popBackEv) +STUB("8ZZnd+fDCng", ShGetActiveUniform) +STUB( + "8ZZp4qB0HYE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE13goToProcessedEi) +STUB("8Zd-76t0uq8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE8pushBackERKS6_) +STUB("8ZddTpSAKIg", hb_font_funcs_create) +STUB("8ZdxfFqFCPw", mono_aot_Sce_Vsh_EventAppplt) +STUB("8ZnSFFtwYok", _ZNK3sce2Np9CppWebApi7Matches2V118CreateMatchRequest11zoneIdIsSetEv) +STUB("8ZxmGwESvSQ", FT_Outline_Get_CBox) +STUB( + "8a+QpnuLBLI", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitations35getxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB("8a-KCoh37wg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy17TrophyPackSummaryEEC2Ev) +STUB("8a0-AOT6IMw", mono_assembly_name_get_culture) +STUB("8a3gjG3z9kE", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils12Notification15UserStateChangeEE5resetEv) +STUB("8a6l2bQ4E4U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEED2Ev) +STUB("8aC5SbFC89s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEC2ERKS7_) +STUB("8aCOCGoRkUI", sceKernelIsCEX) +STUB( + "8aHyfmWWHGM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEaSERKS9_) +STUB("8aI7R7WaOlc", sceAmprCommandBufferConstructor) +STUB("8aIp9UUBBr8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEEC2EPNS2_10LibContextE) +STUB("8aLlLHKP+No", sceNpTrophySystemDbgCtl) +STUB( + "8aN1sGR1vfg", + _ZN9Inspector8Protocol13BindingTraitsINS0_8Timeline9EventTypeEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE) +STUB("8aPSCSE8msA", sceApplicationIsSuspendable) +STUB( + "8aQwTdpcc5M", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEptEv) +STUB("8aT8Um9YvLE", sceFsGetSmrInfo) +STUB("8aUrpPHUc-0", uprv_getStaticCurrencyName_67) +STUB( + "8aalZ8Hr-Yk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEE7add_refEv) +STUB( + "8aeb+81ECkA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEaSERS7_) +STUB( + "8aehxnWCPO0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEeqERKS9_) +STUB("8alcKasLZvM", _WStoxflt.vals) +STUB( + "8alx97vbThE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEixEm) +STUB("8aoLirCPF-0", _ZN3sce2Np9CppWebApi6Common17ParameterBaseImplC1EPNS2_10LibContextE) +STUB( + "8b-uv83M8zg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEeqERKS9_) +STUB("8b1MlBzgg9c", _ZNK7WebCore10ScrollView16windowToContentsERKNS_8IntPointE) +STUB("8b2o8RfK620", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce19ServiceEntitlementsEEC1Ev) +STUB("8b3ThumamG4", mono_aot_Sce_CloudClient_App_Platformunbox_trampolines_end) +STUB("8bAYuVYJ6J8", _ZNSt9basic_iosIwSt11char_traitsIwEE3tieEPSt13basic_ostreamIwS1_E) +STUB("8bAq9t5kF9k", sceCompositorGetAnotherProcessSystemSize) +STUB( + "8bDoKOYvyrM", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions10initializeEPNS1_6Common10LibContextEPKc) +STUB( + "8bFaC8j8eLg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEC1EPNS2_10LibContextE) +STUB( + "8bHt2xBGEUU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("8bI5h8req30", sceAudioPropagationRoomCreate) +STUB("8bIEQOSVuTo", mono_aot_Sce_Vsh_Orbis_AbstractStorageunwind_info) +STUB("8bK-4Vxjr8E", scePadTrackerGetWorkingMemorySize) +STUB("8bOCxIwo+XU", delegate_virtual_invoke_imt_3) +STUB( + "8bV3Kz9xp9E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEppEi) +STUB( + "8bVElXx+fSA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE7reserveEi) +STUB("8baLUqBXC3U", approx0) +STUB("8bhousiIM2I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEC2ERKS7_) +STUB("8biIjNR6iIg", rgctx_fetch_trampoline_rgctx_105_p) +STUB("8bjgDkrRz+Q", _ZN7WebCore11CachedImage5imageEv) +STUB("8bkQ+YRnpOE", ft_mem_free) +STUB( + "8bkwy73zeKQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "8boSOXVb0xg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEC2Ev) +STUB( + "8br4LSv6nPg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEE11get_deleterEv) +STUB( + "8bsscaNVPLo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE6resizeEj) +STUB("8btDir3QAQc", unum_clone_67) +STUB("8btynvj0KNA", sceNpMatching2GetSslMemoryInfo) +STUB( + "8bv0kQKNX58", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE21intrusive_ptr_add_refEPS9_) +STUB("8byEIstY8fo", WKDoubleGetValue) +STUB( + "8cAHpfu28dk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEC1EPS8_) +STUB("8cAU0GeME54", _ZNK9Inspector15ScriptArguments10argumentAtEm) +STUB("8cAlCzoOiic", sceKernelMapSanitizerShadowMemory) +STUB( + "8cBZZU0LvNM", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayerC1ERS5_) +STUB( + "8cCxM4FQjzE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("8cDupwx3X+Y", cairo_matrix_init_translate) +STUB("8cGhsLj37FI", mono_aot_Sce_Vsh_ShellUIUtilWrapperjit_got) +STUB("8cIuwm0q3+I", _ZN3JSC7Symbols30allocateUint16ArrayPrivateNameE) +STUB("8cQ3pFKHXPA", EVP_PKEY_encrypt_init) +STUB("8cXvB8OPQ1o", _Z8writeAlliPKvm) +STUB("8chJMpt+J2U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEEC2EPS5_PNS2_10LibContextE) +STUB( + "8cmupXHZgAw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEED1Ev) +STUB("8cnVx1yH9-I", FT_Raccess_Guess) +STUB("8cq1G692WXA", _ZN7WebCore24CoordinatedGraphicsLayer18setContentsVisibleEb) +STUB("8cqiONwBQw0", mono_reflection_get_custom_attrs_blob) +STUB("8cs9YqVIrOQ", _ZN3JSC7Symbols27isExecutionStatePrivateNameE) +STUB( + "8d-ZgmNG3hk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE21intrusive_ptr_sub_refEPS9_) +STUB("8d3OO75O9R4", + _ZNK7WebCore8Document11completeURLERKN3WTF6StringENS_22ScriptExecutionContext9ForceUTF8E) +STUB( + "8d4mfdYNrso", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("8dEZbWDA6-4", _ZN7WebCore13GraphicsLayer18setBackgroundColorERKNS_5ColorE) +STUB("8dJf2exFZjg", _ZN23sceMetadataReaderWriter13KeyValueArray3getERKSsRNS_5ValueE) +STUB("8dQOR-iIbME", upvec_getValue_67) +STUB("8dSCqNSE-Nc", uprv_decNumberCompare_67) +STUB("8dSvGPJw5zc", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersC2Ev) +STUB( + "8dW7C320d20", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEmmEv) +STUB("8dWkWjo5EeE", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V15Owner12getAccountIdEv) +STUB("8dbxlsbVzdY", WKPageSetPageStateClient) +STUB("8deBnfl7TnQ", _ZN3sce7Toolkit2NP2V27Session7Request6UpdateD1Ev) +STUB("8dgEidjyBYA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEC1Ev) +STUB("8dhjNuhwRhE", _ZN7WebCore17JSDOMRectReadOnlyaSERKS0_) +STUB( + "8diEls6fqlQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE5beginEv) +STUB("8dkEOgkDweo", _ULx86_64_init) +STUB( + "8dnNdIgN-iQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEED1Ev) +STUB("8dq9NqVFX7E", + _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities13ErrorResponse6toJsonERNS_4Json5ValueEb) +STUB("8dsV6f-rJhc", _ZN3sce7Toolkit2NP2V212EventsClient7Request9GetEventsC1Ev) +STUB( + "8dtno93w8yE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB( + "8dvMegZvg9s", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer20hasuseCurrencySymbolEv) +STUB("8dzXU5GxsjI", sceFiosFHToFileno) +STUB( + "8e+pVZZq6ic", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEC2EPKS8_) +STUB("8e2KBTO08Po", _Nan) +STUB("8e4TgQd155k", sceFiosCacheFlushFileRangeSync) +STUB( + "8e4l1XeboLw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEEptEv) +STUB("8eDqEhpPaeE", _ZN7WebCore9FloatRect5uniteERKS0_) +STUB("8eEvg4UE6hY", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_7NpUsersEED2Ev) +STUB( + "8eGL2s+2-Ak", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB( + "8eKy4mw0Cd8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "8eTWBk1Jw+I", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEptEv) +STUB( + "8eYPrBx1LpY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEdeEv) +STUB("8eYzxmkntIw", WKPreferencesGetShouldUseServiceWorkerShortTimeout) +STUB("8eaUD3Ep2ig", _ZN3sce7Toolkit2NP14RankingRequestC1Ev) +STUB("8edVNsn04Ps", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V115SearchAttributeEEeqERKS7_) +STUB("8em5CBRlzJg", YGNodeStyleGetAspectRatio) +STUB("8en6fwz81Lk", _ZN3JSC17DeferredWorkTimerC1ERNS_2VME) +STUB( + "8epq4SqfvjI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEEaSERSA_) +STUB("8eqBiqB72AE", _ZN3sce2Np9CppWebApi6Common6VectorImE5beginEv) +STUB( + "8erzH6AwFQk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEC1EPS6_PNS2_10LibContextE) +STUB("8esrh4dst9M", _ZN3sce7Toolkit2NP2V28Matching9Attribute18MAX_SIZE_BIN_VALUEE) +STUB("8eyH37Ns8tk", sceNetCtlApRpUnregisterCallback) +STUB( + "8f+DSYxCt9A", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyC2EPNS1_6Common10LibContextE) +STUB("8f-nCwwanrs", WKPageCopySessionState) +STUB("8f40UHqpcH4", mono_aot_ReactNative_Modules_Vsh_Gct_Telemetry2unwind_info) +STUB("8fAMdZCnewA", FT_Property_Get) +STUB("8fFXTukOa9c", _ZN7WebCore8Document14createTextNodeERKN3WTF6StringE) +STUB("8fFwrF5lbxQ", _ZN7WebCore17HTMLScriptElement14setCrossOriginERKN3WTF12AtomicStringE) +STUB("8fJiWJYEvX8", _ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_15PlayedWithStoryEE8max_sizeEv) +STUB("8fN3lsDFf5c", mono_error_cleanup) +STUB("8fSxAYQGBbE", sceFsBindApplication) +STUB( + "8fdjNKU-AfU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "8fdxMl3KJ1I", + _ZN3sce2Np9CppWebApi11Matchmaking2V130SubmitTicketRequestBodyFactory7destroyEPNS3_23SubmitTicketRequestBodyE) +STUB("8fe55ktlNVo", sceAcmBatchStartBuffers) +STUB( + "8ff0Ui9A1Pc", + _ZN7WebCore11DisplayList14DrawTiledImageC2ERNS_5ImageERKNS_9FloatRectERKNS_10FloatPointERKNS_9FloatSizeESC_RKNS_20ImagePaintingOptionsE) +STUB( + "8ffVIaghtQ0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEED1Ev) +STUB("8fg44i3qpp8", + _ZN3sce2Np9CppWebApi7Matches2V123ResponseMatchStatisticsC1EPNS1_6Common10LibContextE) +STUB("8fjI+DiObFA", utext_previous32_67) +STUB( + "8fjZXzN9j5Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEEC2Ev) +STUB("8fkLx5ejxY8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEED1Ev) +STUB("8foS4r5VM2M", WKWebsiteDataStoreConfigurationCopyMediaKeysStorageDirectory) +STUB("8frt1ymWL70", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEED2Ev) +STUB("8fryvN6BDtY", setpgid) +STUB( + "8fvBiwvmc64", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEC2Ev) +STUB("8fxZwyicsRQ", _ZN9Inspector31ScriptProfilerBackendDispatcherD0Ev) +STUB("8g6IzRqXHW0", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities8Activity8fromJsonERKNS_4Json5ValueE) +STUB( + "8g6k5LfExE8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEC1Ev) +STUB("8gG-+co6LfM", __addvdi3) +STUB("8gH1aLgty5I", sceHmdReprojectionStartMultilayer) +STUB( + "8gIECLpha44", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE3endEv) +STUB("8gNI0QbVgUc", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia11ScreenshotsEED2Ev) +STUB( + "8gZJrbh0HNI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEE7get_refEv) +STUB("8gaO8HCQEAU", + _ZNSt9_FacetptrISt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEE6_PsaveE) +STUB( + "8gbw2Wi2GQ8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("8glOPCWDXVo", WKRenderLayerGetAbsoluteBounds) +STUB("8gmJWvBasNo", Java_sun_awt_GnmUtils_waitVblankEvent) +STUB("8goZrMdh1-U", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_13NetStateBasicEED1Ev) +STUB("8gps121HPSU", sceUpsrvUpdateGetFeatureListUrlForSystemExUpdate) +STUB("8h-SOB-asgk", sceFontDefineAttribute) +STUB("8h-YslMIj1o", sceUserServiceSetHrtf) +STUB("8h1tiaq-9Fc", _ZThn16_N9Inspector28InspectorScriptProfilerAgentD1Ev) +STUB( + "8hCocComxlM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEixEm) +STUB("8hCzswIZfyw", _ZN3sce7Toolkit2NP2V28Commerce7Request21DisplayJoinPlusDialogD2Ev) +STUB("8hEGkR1pfr8", sceUltMutexLock) +STUB("8hIi9eul1AI", rgctx_fetch_trampoline_mrgctx_47_p) +STUB("8hP37BoaTMw", _ZNK15AbstractStorage14FacebookFolder10GetServiceEv) +STUB("8hPzfjZzV88", sceNpCloseSema) +STUB("8hRldS3wvW0", udatpg_open_59) +STUB( + "8hV5k3NHCLg", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("8hZ2EEl2Tto", sceShareUtilityOpenShareMenuDefault) +STUB( + "8hZJK-1l7VY", + _ZN7WebCore16UserGestureToken60setMaximumIntervalForUserGestureForwardingForFetchForTestingEN3WTF7SecondsE) +STUB( + "8hd0ieUHyho", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "8hfUUOi+JPI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEixEm) +STUB("8hi6-rkfY2M", xmlDictLookup) +STUB( + "8hlH2KcABfc", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("8hm6YdoQgwg", sceAudio3dDeleteSpeakerArray) +STUB( + "8hm9fJBAA2o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEEC2ERKSA_) +STUB( + "8htZ6CfifNc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEEC1ERKSA_) +STUB("8htex21zoHw", _ZN7WebCore20PasteboardCustomDataC2Ev) +STUB("8hxesRi3xUE", sceAppInstUtilAppGetAddcontListAll) +STUB("8hyOiMUD36c", _ZNSt14_Num_ldbl_base14is_specializedE) +STUB("8hygs6D9KBY", mbsrtowcs) +STUB("8i-vOVRVt5w", _ZN3sce2np9EventFlag3SetEm) +STUB("8i0WEPLBJmI", _ZN3JSC17createJSMicrotaskERNS_2VMENS_7JSValueE) +STUB("8i5JWALfIoY", + _ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody12setSmallDataEPKvm) +STUB("8i5uJ3yO9oA", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V16StatusEEaSERKS7_) +STUB( + "8i7im1ZILXA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEC2Ev) +STUB("8iEGAigWFrI", _ZN7WebCore23CoordinatedBackingStore20commitTileOperationsERNS_13TextureMapperE) +STUB("8iHD6jxa6mM", + _ZN8meta_gen11MsvPromoter18isSkippableContentEP22MsvPromoteInnerContextP19MsvStorageInterface) +STUB( + "8iLQ5vAjqi8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE3endEv) +STUB("8iOMaIjW-DM", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V15GroupEEppEv) +STUB("8iOyY3+3Rvg", _ZN7WebCore21NetworkStorageSession22removeAllStorageAccessEv) +STUB("8iQfkVB5Tkw", mono_aot_Sce_Vsh_Lxjit_code_end) +STUB( + "8iUkOOUnN8I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE6resizeEj) +STUB( + "8ia9KpadGNg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEE7add_refEv) +STUB( + "8iaLe4jCPoU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("8id98PZCuVc", _ZN3sce7Toolkit2NP2V29Challenge7Request21GetChallengeThumbnailC2Ev) +STUB("8ijDcsqEnnw", _ZN7WebCore23AuthenticationChallengeC1Ev) +STUB("8ilLOknjnUo", _ZN3sce7Toolkit2NP2V28Matching7Request15GetRoomPingTimeD2Ev) +STUB("8inAOixHSQw", sceFiosOverlayResolveSync) +STUB("8irPscuFMaM", mono_aot_Sce_Facebook_CSSLayoutunbox_trampolines) +STUB("8iuHpl+kg8A", _ZNSt10filesystem9_Open_dirERA260_cPKcRiRNS_9file_typeE) +STUB("8iuw0SvgnHU", _ZN3sce7Toolkit2NP2V211SharedMedia5VideoD2Ev) +STUB( + "8j0ksyJPbO0", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody21unsetLeaderPrivilegesEv) +STUB( + "8j4ZPsPCiWk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEmmEv) +STUB("8j9ZB-vGetc", WKViewSetVisible) +STUB("8jG8R-0qvV4", halF) +STUB( + "8jHg6a7iX-E", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEptEv) +STUB("8jJF2Rqisys", _ZN7WebCore9HTMLNames11primaryAttrE) +STUB("8jJOS46A0+Q", _ZN3JSC7Symbols23importModulePrivateNameE) +STUB( + "8jL9xlJREyA", + _ZN7WebCore11DisplayList11SetLineDashC2ERKN3WTF6VectorIdLm0ENS2_15CrashOnOverflowELm16ENS2_10FastMallocEEEf) +STUB("8jNGivweX70", sceWkFontConfigGetFontName) +STUB( + "8jNW7K2onCY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEppEi) +STUB( + "8jRpEQjr6-E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEC2EPS8_) +STUB("8jeUVytNXpw", _ZN7WebCore6ISOBoxdlEPv) +STUB( + "8jgNR+zdxrY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSE_) +STUB("8jiB8eq+BkM", sceVoiceChatRequestCreateVoiceChatGroup) +STUB("8jjT5Fq1up4", mono_register_bundled_assemblies) +STUB("8jlezqNQjXI", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V111OfferStatusEEptEv) +STUB("8jlixeK+pgk", sceCustomMusicCoreGetHdcpStatus) +STUB( + "8jm5dwGJqL8", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle9setGlobalERKNS1_6Common12IntrusivePtrINS3_19PlayStylePropertiesEEE) +STUB("8jqzzPioYl8", sceImeDialogGetPanelPositionAndForm) +STUB("8jsyDn03CCI", il2cpp_unity_liveness_calculation_begin) +STUB( + "8jtcV5OOa7M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE8copyFromERKS9_) +STUB("8jzNORbUATU", rgctx_fetch_trampoline_mrgctx_126) +STUB("8k1rNqvczTc", _ZN3sce2np9SemaphoreC2Ev) +STUB("8k20eTUQ5Zk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEEC2Ev) +STUB("8k4o1hH-YZc", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container16contentTypeIsSetEv) +STUB("8k5ENIb5s7g", sceLibSecureHashHmac) +STUB("8k7wWU-zBtc", + _ZN3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectator16unsetCustomData1Ev) +STUB("8kAjbRlEC5I", _ZN3JSC12HeapCellTypeD2Ev) +STUB( + "8kB4jz90JH4", + _ZN3sce2Np9CppWebApi11Matchmaking2V134ListUserTicketsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_27ListUserTicketsResponseBodyEEE) +STUB( + "8kBW4UAj3QM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEED2Ev) +STUB("8kCXHRXY0yQ", _ZNSt9_FacetptrISt7codecvtIDsc9_MbstatetEE6_PsaveE) +STUB("8kM+eFzoBas", sceNpManagerIntUpdateVshTokenA) +STUB( + "8kQwRbDExG4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEED2Ev) +STUB("8kTpmAaPOaM", _ZNK7WebCore14RenderListItem10markerTextEv) +STUB("8kU11lW12ss", _ZN4IPMI4impl10ClientImpl17invokeAsyncMethodEjPKvmPjPKNS_6Client12EventNotifeeE) +STUB("8kUkQPQP7bA", _ZN3sce2np10EventQueueD2Ev) +STUB( + "8kW-qTG080I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEC2EPS8_) +STUB( + "8kZffY3uxhI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEC1Ev) +STUB( + "8kf9ZF9dftQ", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi31putGameSessionsSearchAttributesEiRKNS4_42ParameterToPutGameSessionsSearchAttributesERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB( + "8kgzycy5INs", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Network17ResourceErrorTypeEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB( + "8khLfmf2q7w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEC1ERS7_) +STUB("8kuIzUw6utQ", sceNpScoreGetFriendsRanking) +STUB( + "8kyvZOTQe5Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE3endEv) +STUB("8kzIXsRy1bY", sceHttpSetDefaultAcceptEncodingGZIPEnabled) +STUB( + "8l-00s61ASw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEE7add_refEv) +STUB( + "8l3NBpfYhfg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE8copyFromERKS9_) +STUB("8l9+nBL1Ps0", sceBgftServiceIntUploadGetProgress) +STUB("8lA9lXh0Jfk", WKPreferencesGetAutostartOriginPlugInSnapshottingEnabled) +STUB("8lCno7f4lUI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEEC1Ev) +STUB("8lFDYew19-0", uset_getSerializedRangeCount_67) +STUB("8lH54sfjfmU", sceGnmDrawInitToDefaultContextState) +STUB("8lLZVryYgAc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEEC2ERS6_) +STUB( + "8lOL9J9S2D0", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeader43getputPlayerSessionsNonPsnLeaderRequestBodyEv) +STUB("8lPvbU+0nPo", _ZNK7WebCore20HTMLFrameElementBase8locationEv) +STUB( + "8lQFm3Y7pqY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEC1ERKSA_) +STUB("8lROZyvshL0", uprv_stricmp_67) +STUB("8lWNf9MWnHw", sceDebugIpmiGetConnectionInfoList) +STUB( + "8leNmVCFlLE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("8lfJFcmtYdQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEE7get_refEv) +STUB("8lfvnRMqwEM", sceRtcGetCurrentClock) +STUB("8lkg9dlBDtw", sceCesGbToUtf32le) +STUB("8llaUJJ9iG0", + _ZN7WebCore6LengthC2EON3WTF3RefINS_16CalculationValueENS1_13DumbPtrTraitsIS3_EEEE) +STUB("8loW0toK9co", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_17ActivityFeedStoryEED2Ev) +STUB("8lq3HM5y55s", monoeg_g_shell_parse_argv) +STUB( + "8m23pUnNezQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB("8m8-UQTKyUc", _ZN7WebCore14SQLiteDatabase9interruptEv) +STUB( + "8m8ow0jgOt0", + _ZN9Inspector20DOMBackendDispatcher13querySelectorElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "8mBjaBh9qlg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEEC1ERKS9_) +STUB("8mCb2LBddmI", u_getBidiPairedBracket_67) +STUB( + "8mE8A2AvZp0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEE11release_refEv) +STUB("8mKu28JdhO4", WKContextConfigurationCopyResourceLoadStatisticsDirectory) +STUB( + "8mLBWSOYh6U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEE5resetEPSA_) +STUB( + "8mYuWmK7qes", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V138SetMultiVariablesRequestBody_variables11unsetSlotIdEv) +STUB( + "8mcM5f4jRS8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEC2ERS7_) +STUB("8me1HzECeUY", _ZN12video_parser17cTsFFLHndlManagerC1EPKc) +STUB("8meb8xLAF-c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEEC2Ev) +STUB("8milg8QNAII", _ZN7WebCore11DisplayList16DrawLinesForTextD0Ev) +STUB("8miuoqRKhec", mono_aot_Sce_Vsh_SQLitemethod_addresses) +STUB("8mn-7ut9drU", _ZN7Nicosia6BufferD2Ev) +STUB("8mpZuu7xfbM", sceUsbStorageRegisterCallbackForMapUnavailable) +STUB("8mql9OcQnd4", sceKernelDeleteEventFlag) +STUB("8mrBeLW0Zk0", sceAutoMounterClientGetUsbDeviceInfo) +STUB("8mtcsG-Qp5E", sceAudioInCountPorts) +STUB( + "8mzRw5W6RCM", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersC1Ev) +STUB( + "8n0tHYtTkk8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("8n4m7yHIrS4", _ZN3sce2np13JsonDocParserC2EP14SceNpAllocator) +STUB( + "8n9J2ApyQIo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE5abortEv) +STUB("8nFPzh2HhQU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEE11get_deleterEv) +STUB("8nJBCqN7T2Q", ucase_getTypeOrIgnorable) +STUB( + "8nJUDQgkplU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEED1Ev) +STUB( + "8nMldE4Leho", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEE3getEv) +STUB( + "8nOTgf1ky-E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEcvbEv) +STUB("8nQGCoTYDcM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEcvbEv) +STUB("8nRcqN+Rt-Q", WKPageLoadURL) +STUB( + "8nRsH4C9R6o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEptEv) +STUB("8nUMQUGz3Vs", sceDepthSetRoiset) +STUB("8nV64L7-0bI", _ZN7WebCore14StyleSheetListD1Ev) +STUB("8nY19bKoiZk", fcntl) +STUB( + "8nYUs4yRFok", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEEC2ERS9_) +STUB( + "8nYptG9u+so", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE5beginEv) +STUB("8ndvyB6EAnk", _ZN3sce2Np9CppWebApi11Matchmaking2V110UserTicket11setTicketIdEPKc) +STUB("8ngzWNZzFJU", wcstok) +STUB( + "8njA+kUT4hg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE3endEv) +STUB("8nlEm-PUWjQ", _ZNK7WebCore12SharedBuffer14dataAsUInt8PtrEv) +STUB("8nlHsJDEMqU", _ZN15AbstractStorage15FacebookServiceD1Ev) +STUB("8no2rlDjl7o", sceUserServiceGetSystemLoggerHashedAccountId) +STUB( + "8nq9IVnRuRo", + _ZN3sce2Np9CppWebApi7Matches2V130ResponsePlayerStatisticFactory7destroyEPNS3_23ResponsePlayerStatisticE) +STUB( + "8nqH1DbIx2w", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsers31setxPSNSESSIONMANAGERACCOUNTIDSEPKc) +STUB("8ntm0FZeDEQ", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V128SetMultiVariablesRequestBody12getVariablesEv) +STUB("8ntsRd07EQA", sceTextToSpeech2Speak) +STUB("8nzaNIxnkGc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEC2Ev) +STUB("8o+NY6J8sdY", _ZN7WebCorelsERN3WTF10TextStreamERKNS_9FloatSizeE) +STUB("8o+oBXdeQPk", _ZGVNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE) +STUB("8o251reVYWs", mono_aot_Sce_Vsh_Messages_DbAccessLibunbox_trampolines) +STUB("8o42zgXg1kg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEEC1EPNS2_10LibContextE) +STUB("8o6hZ+sX7OU", _ZN3JSC10JSFunction21calculatedDisplayNameERNS_2VME) +STUB("8oGnhBsOJxs", fuse_chan_bufsize) +STUB( + "8oL-q1uoAkg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEED2Ev) +STUB("8oLJMYpizrE", uprv_decNumberSquareRoot_67) +STUB( + "8oMAokcbGuA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEC2EPNS2_10LibContextE) +STUB("8oO55jndPRg", _ZNSbIwSt11char_traitsIwESaIwEE6assignEmw) +STUB("8oQrlcWx0fg", _ZNK7WebCore16JSXMLHttpRequest8responseERN3JSC14JSGlobalObjectE) +STUB("8of6l1u8E4U", _ZN7WebCore17JSDOMGlobalObject24builtinInternalFunctionsEv) +STUB( + "8oh0tCf8ono", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEeqERKS9_) +STUB( + "8okTVyQN+FM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEC2Ev) +STUB( + "8os9Th2fLfg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("8ouFk-V2WjM", _UIx86_64__mempool_free) +STUB("8oxXJyibqh4", _ZN6WebKit12ChildProcessD0Ev) +STUB("8ozlDe1o-ok", WKPreferencesGetIsAccessibilityIsolatedTreeEnabled) +STUB( + "8p-LFXYXVxA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("8p2-EuJKwuE", JVM_FindClassFromClass) +STUB("8p45vW3td-Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEEC2Ev) +STUB( + "8p5AMaNHiYY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEC2Ev) +STUB( + "8p5MqBfQpmQ", + _ZN3sce2Np9CppWebApi14SessionManager2V135ResponseGameSessionSpectatorFactory7destroyEPNS3_28ResponseGameSessionSpectatorE) +STUB("8p6EMxA06uE", _ZNK3JSC7JSValue16toNumberSlowCaseEPNS_9ExecStateE) +STUB( + "8p7j0y5skig", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEdeEv) +STUB("8p8NfEvYtak", _ZN9Inspector25BrowserFrontendDispatchernwEmPv) +STUB( + "8p9cStamUIw", + _ZN3sce2Np9CppWebApi14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyD2Ev) +STUB( + "8pCay2dZoCQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEC1Ev) +STUB( + "8pEQNPKL7-8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEC2EPS8_) +STUB( + "8pQmot8dXYg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEC1EPS8_) +STUB("8pST-rncXjc", mono_print_thread_dump) +STUB("8pSX4XvDgjc", _ZN3sce2np14JsonDocBuilderC1EPKNS0_9JsonValueE) +STUB("8pSeFangUAU", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetBoolean4Ev) +STUB("8pSjvfRF8wY", _ZN3JSC7Symbols38asyncGeneratorQueueItemNextPrivateNameE) +STUB("8pVAm2UA-WA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEEppEv) +STUB("8pViWaQiKhA", _ZN9Inspector18InjectedScriptBaseC2ERKN3WTF6StringE) +STUB("8pWltDG7h6A", sceCompanionHttpdAddHeader) +STUB("8pXCeme0FC4", _ZNSt7collateIcED1Ev) +STUB("8pc5PXn7SJk", _ZN9Inspector22InspectorDebuggerAgent20setPauseOnExceptionsERN3WTF6StringERKS2_) +STUB("8pcLLbdpWzM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEmmEi) +STUB( + "8pdhL+Py4I8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE7reserveEi) +STUB( + "8pgCKvHWKq4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE4sizeEv) +STUB( + "8pgG2WuOgPQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE8capacityEv) +STUB( + "8pgQ9E9i2+o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("8pkWO5IFxLE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEED2Ev) +STUB( + "8pmZt80MWJE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEEaSERKSA_) +STUB("8pmhsADteEE", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11TusVariableEE9constructEPS3_RKS3_) +STUB("8pokA8LyOtk", _ZN9Inspector25RuntimeFrontendDispatchernwEm) +STUB("8ppA5Hd3FVU", ASN1_STRING_print) +STUB( + "8pqxyLGg9BM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEC2Ev) +STUB("8prUGP8pi9M", sceClHttpSetNonblock) +STUB("8pwP-7j5UZI", tls_configure) +STUB( + "8pzn7sTfq9c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("8q0o+-HUPBE", _ZN7WebCore20PasteboardCustomData5EntryC1Ev) +STUB( + "8q37B2wKf1I", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("8q7ftS5g7ps", g_JSScriptFetcherPoison) +STUB("8qAJ0Jd58-Q", sceShareOpenMenuForContent) +STUB("8qB9Ar4P5nc", sceUsbdGetDeviceList) +STUB("8qH2UuomAuM", il2cpp_object_get_size) +STUB("8qHfcUe-Nbo", sceKernelQueryToolMemory) +STUB("8qL9O-t6RdE", sceDeci4hDrfpStat) +STUB( + "8qMUjYwGhhk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEC2EPKS8_) +STUB( + "8qPuRwomp0I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEE7add_refEv) +STUB( + "8qYT4W2a-5k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("8qYmcJgmz70", + _ZNK3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponse13getNextOffsetEv) +STUB( + "8qc0pKtXoGc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEneERKS9_) +STUB( + "8qckNdPt+Zk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEEC1ERSA_) +STUB("8qdVicknu9M", _ZNK7WebCore11MessagePort3refEv) +STUB( + "8qglVrEOCwg", + _ZN3JSC12StringObject27getOwnNonIndexPropertyNamesEPNS_8JSObjectEPNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("8qjW8fYssto", _ZN7WebCore11DisplayList4SaveD2Ev) +STUB("8qk62JS2dG0", mono_object_new) +STUB( + "8qkE9VTWnhc", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeOnlineId2AccountIdBatch10initializeEPNS1_6Common10LibContextENS6_12IntrusivePtrINS6_6VectorINS6_6StringEEEEE) +STUB("8qnKSbDRHAY", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11ProductInfoEE7destroyEPS3_) +STUB("8qnq8TEhqL8", s_sceLibcMallocState) +STUB( + "8qo2pZpDDJQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE8pushBackERKS8_) +STUB("8qoeA7iML+Y", _ZN3sce2np14JsonNumberImpl3SetEi) +STUB( + "8qqMF4uP9ns", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "8qrE3g8lggI", + _ZThn24_N7WebCore14DocumentLoader17addConsoleMessageEN3JSC13MessageSourceENS1_12MessageLevelERKN3WTF6StringEm) +STUB("8qtytWLvK3c", _ZN3sce7Toolkit2NP2V24Auth7Request11GetAuthCodeC1Ev) +STUB("8qyJEnqVsso", _ZN7WebCore19JSAnimationTimeline14finishCreationERN3JSC2VME) +STUB("8qygzLD+JkI", _ZNK3JSC9CodeBlock26reoptimizationRetryCounterEv) +STUB( + "8qzdSP13Xhk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEmmEv) +STUB( + "8r+ZSjN7cYU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE4sizeEv) +STUB("8r+cK8-zvBs", WKNavigationActionGetTypeID) +STUB( + "8r6pbq6yB3M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEE7add_refEv) +STUB( + "8rErEAQTH6E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEaSERKS8_) +STUB("8rFLLtgkGtM", _Z34scePlayGoEmuFsLoadChunkMappingInfoPvmS_mt) +STUB("8rGA7ASyk8Y", sceCesUtf16leToUhc) +STUB("8rHK-6bbvqM", sceKernelDebugReleaseDebugContext) +STUB("8rN5UjqbHo0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEC2ERS7_) +STUB("8rRzoDFknyk", _ZNK7WebCore11MediaPlayer31maximumDurationToCacheMediaTimeEv) +STUB("8rXtX498ONs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEE3getEv) +STUB("8raHXYfv3Js", sceBgftServiceIntDownloadGetPatchGoProgress) +STUB( + "8raXTYQ11cg", + _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE7_GetintERS3_S5_iiRiRKSt5ctypeIcE) +STUB("8rd5FvOFk+w", _ZTISt18bad_variant_access) +STUB("8reqGK4Jslw", + _ZNK7WebCore24CoordinatedGraphicsLayer41selfOrAncestorHasActiveTransformAnimationEv) +STUB("8rhLl1-0W-o", sceNpProfileDialogGetResult) +STUB( + "8ribD2kOIeQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE21intrusive_ptr_add_refEPS9_) +STUB("8rjATNfmywY", _ZN9Inspector27PerGlobalObjectWrapperWorldC2Ev) +STUB( + "8rkYT4LS3Lc", + _ZN7WebCore17KeyframeValueList6insertESt10unique_ptrIKNS_14AnimationValueESt14default_deleteIS3_EE) +STUB("8s+T0bJeyLQ", sceNetSetDnsInfoToKernel) +STUB( + "8s7icFeN1eA", + _ZN3sce7Toolkit2NP8Sessions9Interface17getInvitationDataEPKNS1_21InvitationDataRequestEPNS1_9Utilities6FutureINS1_17MessageAttachmentEEEb) +STUB("8s9UY6PrUa8", _ZNK3WTF6String5asciiEv) +STUB("8s9vbju5QaE", _ZN3sce2Np9CppWebApi7Matches2V15Error11unsetSourceEv) +STUB( + "8sC5x2mTn58", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEC1EPS8_) +STUB("8sFq5s8eHnQ", sceAmprAmmMeasureAmmCommandSizeRemap) +STUB("8sFu9BpNYtk", + _ZN3sce2Np9CppWebApi14SessionManager2V110FromMember11setOnlineIdERK13SceNpOnlineId) +STUB("8sFvxy0EtG4", mono_btls_key_up_ref) +STUB("8sIZJC3g1SU", _ZN3JSC7Symbols27isAsyncGeneratorPrivateNameE) +STUB("8sMLUHoKn50", + _ZN3sce2Np9CppWebApi7Matches2V123ResponseMatchStatisticsC2EPNS1_6Common10LibContextE) +STUB( + "8sMsEpTsUso", + _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody15getJoinDisabledEv) +STUB("8sN4TdPfvNI", WKPreferencesGetAntialiasedFontDilationEnabled) +STUB("8sOZCTw78EQ", _ZN3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer8fromJsonERKNS_4Json5ValueE) +STUB("8sQtWpAYCgA", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEEdeEv) +STUB("8sRazHFyyQw", FTC_Manager_Lookup_Size) +STUB( + "8sRfYnV7XlA", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScore10initializeEPNS1_6Common10LibContextEiNS6_12IntrusivePtrINS3_22RecordScoreRequestBodyEEE) +STUB( + "8sTbTgujtxU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEED2Ev) +STUB( + "8sV4WCpIP1M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEEC1ERKSA_) +STUB( + "8sW-5VAuFM0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE8capacityEv) +STUB("8sWDDbvzRtg", _ZNK3WTF6String5splitEDsbRNS_6VectorIS0_Lm0ENS_15CrashOnOverflowELm16EEE) +STUB("8sZw9-G4ubQ", kJSClassDefinitionEmpty) +STUB( + "8saF-RUoUQU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEE7get_refEv) +STUB( + "8sdVRf9CoyA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEC1EPS8_) +STUB( + "8sg4sRJkj38", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V125FrequentlyMutedProperties8fromJsonERKNS_4Json5ValueE) +STUB( + "8sgNw1WbG1Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEC2EPS8_) +STUB("8shc+gbpJ5w", WKWebsiteDataStoreStatisticsProcessStatisticsAndDataRecords) +STUB( + "8singq2gbZM", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setInteger6ERKi) +STUB( + "8sk36eHYtrU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("8skggWXlSqM", sceKernelDeleteGpuExceptionEvent) +STUB("8spY5jF1aig", sceVshAvcapReadAudio) +STUB("8spciBR67qY", delegate_virtual_invoke_imt_m_13_p) +STUB("8sr4GAVP968", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEEC1Ev) +STUB("8srhi9kpSTI", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112GroupingTypeEEppEi) +STUB("8stlbyGspnE", _ZN3WTF22defaultPortForProtocolENS_10StringViewE) +STUB("8svDYUH0Bjo", SwCtrlSinkFinalize) +STUB("8t+XNSyIXus", sceSocialScreenGetIgnoreSeparateMode) +STUB("8t3NJDmskf4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEaSERKS7_) +STUB("8t7fiGWomPU", _ZNK3WTF10StringImpl18hasInfixStartingAtERKS0_j) +STUB("8t9Vk74CkmU", _ZNK7WebCore10ISOFullBox5flagsEv) +STUB( + "8tBlosXLX5k", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE5emptyEv) +STUB("8tE06sxxee8", _ZNK7WebCore15SQLiteStatement18bindParameterCountEv) +STUB( + "8tFs0xlbfHk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEneERKS9_) +STUB("8tJ08IRhkes", _ZN3sce2Np9CppWebApi13InGameCatalog2V511ErrorEntityD1Ev) +STUB( + "8tL33DeitnI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEptEv) +STUB("8tL6yJaX1Ro", _ZNSt8ios_base5_SyncE) +STUB( + "8tLNDzKLqmI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("8tN3S+eEa-c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEED2Ev) +STUB("8tUBw7skPZ0", WKPageRunJavaScriptConfirmResultListenerCall) +STUB( + "8tYrEcCSUVg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEE7add_refEv) +STUB( + "8tfNke-JP3M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "8tm+jbVk7XQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEE3getEv) +STUB("8tq87pgLk+8", _ZN7WebCore22createDragImageForNodeERNS_5FrameERNS_4NodeE) +STUB("8tsQXe8FuPw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEaSERS7_) +STUB( + "8tuCRRSFJa0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE5emptyEv) +STUB("8u8lPzUEq+U", memchr) +STUB( + "8u9N9gPDYUw", + _ZN9Inspector21PageBackendDispatcher6reloadElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("8uGRJZoashk", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead17nonPsnLeaderIsSetEv) +STUB("8uKM4ygHphQ", _ZN3sce2Np9CppWebApi6Common8IteratorImEmmEi) +STUB( + "8uQdzf2BNlw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("8uQflsF31oU", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer12hasdirectionEv) +STUB("8ue5C0IlNvA", _ZN7WebCore8SVGNames15animateColorTagE) +STUB("8un+CI4zC5Q", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEaSERS7_) +STUB("8utugZeuS5k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEC1ERS7_) +STUB( + "8uy0+pZLjp8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE8copyFromERKS9_) +STUB( + "8uy5GqOey4E", + _ZN3sce2Np9CppWebApi14SessionManager2V132FriendJoinedPlayerSessionFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_25FriendJoinedPlayerSessionEEE) +STUB("8uz5mbc23ig", mono_btls_x509_store_add_cert) +STUB( + "8v-1oUw9olU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("8v32xfCSuRU", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE5beginEv) +STUB("8v4H1LkQlz4", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEED2Ev) +STUB("8v4Xk2b+C1k", FcConfigSubstitute) +STUB("8v50ik3N8zs", _ZNK7WebCore9FrameTree12traverseNextENS_7CanWrapEPNS_7DidWrapE) +STUB("8v8WnjSpQuc", _ZNK3sce2Np9CppWebApi13InGameCatalog2V55Error9getSourceEv) +STUB("8vBNMcGGq1w", rgctx_fetch_trampoline_rgctx_52) +STUB( + "8vCYRbNtpHs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEdeEv) +STUB("8vE6Z6VEYyk", access) +STUB("8vEBRx0O1fc", _ZNSt10moneypunctIwLb1EE4intlE) +STUB("8vSqKgoif-I", GCC_except_table36) +STUB("8vWG-fYkWWg", Java_java_lang_Double_longBitsToDouble) +STUB("8vYXkdXmh-Q", sceLncUtilSuspendBackgroundApp) +STUB("8vZfDPq-k84", mono_metadata_free_type) +STUB( + "8vaGFqiao+4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEmmEv) +STUB("8vdU3tjLqgE", _ZNK7WebCore5Frame6windowEv) +STUB("8vdyXEwToi0", sceCesRefersUcsProfileCp857) +STUB( + "8vgoB2QpCq4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEED1Ev) +STUB( + "8vhDU0ts2ls", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEC2Ev) +STUB("8vhI2SwEfes", sceUserServiceGetNpCountryCode) +STUB("8viKdiZL7j4", cairo_surface_get_type) +STUB("8viux6iPtf8", sceNpSessionSignalingManualUdpCreateJoin) +STUB( + "8vkfrSJ4i6Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB("8vlYNyAUFlU", _ZN7WebCore15GraphicsContext5scaleERKNS_9FloatSizeE) +STUB( + "8vmIpfb+zmE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEC2Ev) +STUB( + "8vmN7L3vD10", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "8vqIDNAN5Lg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEC2ERS7_) +STUB( + "8vwi6aXMqRQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEE5resetEPS9_) +STUB("8vyiTfU+1+s", rgctx_fetch_trampoline_mrgctx_109) +STUB("8w-H19ip48I", sceRtcGetTick) +STUB("8w4gFcXTELc", _ZN7WebCore12ChromeClient29supportsImmediateInvalidationEv) +STUB( + "8w85JkamSVM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEC1EPNS2_10LibContextE) +STUB( + "8wAExrmWCmk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEaSERKS9_) +STUB("8wD6Sq3WBcA", WKBundleResetOriginAccessAllowLists) +STUB( + "8wF5eBxnS5A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEC1Ev) +STUB( + "8wHc+-Xo7T0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE7popBackEv) +STUB( + "8wO9yNi5ucs", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error27setValidationConstraintInfoERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_24ValidationConstraintInfoEEEEE) +STUB("8wVUn7AO8mA", sceUserServiceSetPbtcSaturdayHoursEnd) +STUB( + "8wWGZD2une0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEaSERS7_) +STUB("8wWauon64VQ", _ZN3sce7Toolkit2NP2V24Auth8AuthCodeD2Ev) +STUB( + "8wi-wgXct0k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEC1Ev) +STUB( + "8wnmelYBJvY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE7popBackEv) +STUB( + "8wp1JJ8d0co", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "8wr9i3BWSBw", + _ZN7WebCore32throwArgumentMustBeFunctionErrorERN3JSC14JSGlobalObjectERNS0_10ThrowScopeEjPKcS6_S6_) +STUB("8x++mBOUeso", _ZN3sce2Np9CppWebApi6Common10InitParamsC1Ev) +STUB( + "8x6BJ-6cv3k", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEptEv) +STUB("8xIdJWLkSLo", _ZN3sce7Toolkit2NP2V28Matching7Request8JoinRoom24DEFAULT_DISPLAY_PRIORITYE) +STUB("8xXJUdXNHL4", + _ZN7WebCore48closestEditablePositionInElementForAbsolutePointERKNS_7ElementERKNS_8IntPointE) +STUB("8xXiEPby8h8", _Getptimes) +STUB("8xYY2l-Ugoc", _ZN7WebCorelsERN3WTF10TextStreamERKNS_7IntSizeE) +STUB("8xcXCQYNlCQ", WKPreferencesGetUserInterfaceDirectionPolicy) +STUB("8xgKWJVwQMI", _ZN3sce2Np9CppWebApi14SessionManager2V16FriendC2EPNS1_6Common10LibContextE) +STUB("8xkWymJPw2g", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13FriendsOfUserEED1Ev) +STUB("8xogyiumZ3I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEE7add_refEv) +STUB("8xtAsAizlvE", + _ZNK3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponse17getPreviousOffsetEv) +STUB( + "8xtqkZX7zjs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEEaSERSA_) +STUB( + "8y+XQD0mZSs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEplEm) +STUB("8y1Cv7BS6dg", sqlite3_data_count) +STUB( + "8y6zXfWDII8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEixEm) +STUB("8y7DjDBJ6Nw", res_getTableItemByIndex) +STUB("8y9cI401Bxc", _ZN3sce7Toolkit2NP2V23TUS7Request19AddToAndGetVariableD2Ev) +STUB( + "8yBHRDWbIGs", + _ZNK7WebCore10ScrollView29unobscuredContentRectInternalENS_14ScrollableArea36VisibleContentRectIncludesScrollbarsE) +STUB( + "8yEkjV3jLIc", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEED2Ev) +STUB( + "8yHyjhysCSk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("8yIFbKnhf28", _ZN3sce7Toolkit2NP2V28Matching17AttributeMetadataC1Ev) +STUB("8yL-ikMAPas", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V117InvitableUserTypeEEppEv) +STUB("8yLznatBuzo", _ZN9Inspector21InspectorRuntimeAgent13releaseObjectERN3WTF6StringERKS2_) +STUB( + "8yVdpzzMqRo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEEC2ERKSA_) +STUB("8yiDK9rMKtc", sceBgftServiceIntAbortNotificationEvent) +STUB("8ym-HGNfQeU", _ZN8meta_gen11MsvPromoter15convertLangTypeEN12video_parser9VP_LANG_eE) +STUB( + "8ynoC4ERxCs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEEC1ERKS8_) +STUB( + "8yq2lu0pQ2g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("8yrWqwnPGTs", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V125NatConnectivityPropertiesD2Ev) +STUB("8yyiCDAXbrQ", mono_aot_System_Runtime_Serializationmethod_addresses) +STUB("8yyuwiQdZT8", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities26GetUsersActivitiesResponseD2Ev) +STUB( + "8z+3RKGEKMY", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE5getIdEv) +STUB("8z3zK1NQgQY", scePlayReadyCdmiSetSessionCallbacks) +STUB("8z5gjWiHnvA", WKPreferencesGetWebRTCLegacyAPIEnabled) +STUB( + "8zBNZXDimjA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE7popBackEv) +STUB( + "8zCNBRsxyOU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE8copyFromERKS9_) +STUB( + "8zCYQzSXIWY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEppEi) +STUB( + "8zJzZ6-BKnk", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V129MatchCompletionRateProperties6toJsonERNS_4Json5ValueEb) +STUB("8zLSfEfW5AU", sceCoredumpRegisterCoredumpHandler) +STUB( + "8zLpKxMTWSg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "8zM+FpFvnr4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEC2ERKS7_) +STUB("8zMm0QOWZAA", cairo_in_stroke) +STUB("8zNkk8YIQDU", _ZN3sce7Toolkit2NP15CommunicationIdC2Ev) +STUB( + "8zQ4fwrlvSs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("8zRsoIHzL+w", _ZN3sce7Toolkit2NP2V28Commerce14ProductDetails8MAX_SKUSE) +STUB("8zTFvBIAIN8", memset) +STUB("8zUkkJh02yE", JVM_Interrupt) +STUB( + "8zXiqKvBIpk", + _ZN3sce2Np9CppWebApi14SessionManager2V143UsersPlayerSessionsInvitationForReadFactory7destroyEPNS3_36UsersPlayerSessionsInvitationForReadE) +STUB( + "8zZz7vrUQCw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEC1EPS6_PNS2_10LibContextE) +STUB("8zbVe50ACas", sceVnaSetEnableAssistantLegalCheckStatus) +STUB("8zga68c0fJ0", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE3endEv) +STUB("8zj2LYparBk", _ZNK7WebCore19DragCaretController23isContentRichlyEditableEv) +STUB("8zlDKTZKF+s", mono_aot_System_IO_Compression_FileSystemjit_code_start) +STUB( + "8zlVzKxLImY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEC1Ev) +STUB( + "8zo60DdOBkk", + _ZNK7WebCore21ContentSecurityPolicy21allowScriptFromSourceERKNS_3URLENS0_24RedirectResponseReceivedE) +STUB( + "8zrNaJuWo9A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("8zsqYG3p0AM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEptEv) +STUB("8zsu04XNsZ4", expf) +STUB( + "8ztJtiS2N8s", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE4sizeEv) +STUB("8ztpPAczQLs", sceHttpCacheCreateRequestWithTag) +STUB( + "8zyHrtXex2E", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13integer4IsSetEv) +STUB("8zzDdL3-5Do", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS25AtomicAddToAndGetVariableEE12deepCopyFromERS7_) +STUB( + "8zzc4OFFK7k", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEEptEv) +STUB("9++e41uCH38", mono_aot_System_Numericsunwind_info) +STUB( + "9+2m7mcMgVc", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10getString9Ev) +STUB("9+6bMQWFZQg", _Z20WTFCrashWithInfoImpliPKcS0_immmmm) +STUB("9+7ISLVZk2c", scePssSoundPlayerGetPlayState) +STUB("9+7WZC9uyo8", uscript_openRun_67) +STUB("9+8RiLTZ57g", sceApplicationGetCoreFileName) +STUB("9+NmoosRoBA", _ZN3sce2np7RingBufD2Ev) +STUB("9+O2778uxzI", _ZN23sceMetadataReaderWriter14StorageManager10getStorageERKSsPPNS_7StorageE) +STUB( + "9+O5dkJ-RAk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEEC2ERSA_) +STUB("9+OV-JUH6P4", Java_com_sony_bdjstack_core_CoreApp_getInitialArguments) +STUB( + "9+QzCPtyj90", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEEC1ERKS9_) +STUB("9+SNhbctk64", sceCameraSetConfigInternal) +STUB("9+Wdaue0ZDE", _ZN7WebCore11MathMLNames12fontsizeAttrE) +STUB( + "9+YTfrz4Gr0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEC1Ev) +STUB("9+g9iOq+7kg", sceInvitationDialogUpdateStatus) +STUB("9+iSQViDda8", _ZN7WebCore18ParsedContentRangeC2ERKN3WTF6StringE) +STUB( + "9+iV7tVBAWA", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setBoolean2ERKb) +STUB("9+m5nRdJ-wQ", sceNpCalloutInitCtx) +STUB("9+nPgH-HAXs", WKBundleHitTestResultCopyAbsolutePDFURL) +STUB( + "9+o6t5g7I4w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("9+ss8rOc3Tw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEEdeEv) +STUB( + "9+u389WKnho", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEEC1EPS6_PNS2_10LibContextE) +STUB("9+vJo3MTStg", mono_domain_from_appdomain) +STUB("9--Rr8jM-DA", uset_getSerializedRange_67) +STUB( + "9-47Mp8fKgE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEdeEv) +STUB("9-578CFQx5c", _WPrintf.percent) +STUB( + "9-8IjIogXvI", + _ZN3sce2Np9CppWebApi14SessionManager2V127PlayerSessionForReadFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_20PlayerSessionForReadEEE) +STUB("9-9Fw3vcS+0", _ZN7WebCore9HTMLNames7markTagE) +STUB("9-FO5VLI3i4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ResponseCooperativeResultEEC2EPS6_) +STUB( + "9-IewNgBuWE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEdeEv) +STUB("9-J4t5zkgJg", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEED2Ev) +STUB( + "9-OJhmAWvEk", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("9-P4rOjWBKQ", g_slist_find) +STUB( + "9-RL-oOxhUk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEE11release_refEv) +STUB("9-TRy4p-YTM", _ZTISt11regex_error) +STUB("9-UYT5wtXHo", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate17perFranchiseIsSetEv) +STUB( + "9-XgINsKn0I", + _ZN8meta_gen11MsvPromoter29setKeyValue_TBLV_VideoBitrateENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB("9-YDyfqwRDw", cuse_lowlevel_teardown) +STUB( + "9-ZvaH-Oodg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE4sizeEv) +STUB( + "9-a-8txG+b4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE10setContextEPNS2_10LibContextE) +STUB("9-fQVDsnM94", sceAudioOut2PortCreateEx) +STUB("9-g-VqPicEQ", _ZN7WebCore9HTMLNames13onstorageAttrE) +STUB("9-iVwdotSr4", CommerceShowPsStoreIcon) +STUB("9-jaAXUNG-A", sceHmdInternalPushVr2dData) +STUB( + "9024IicCeWU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEEaSERKSA_) +STUB( + "902mTQNihVI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEEC2Ev) +STUB("9030RnBDoh4", scePngEncQueryMemorySize) +STUB( + "908w6T+HN8k", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEeqERKS9_) +STUB( + "90CLQXDKRy0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEC2EPKS8_) +STUB( + "90CmknkcnOw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEixEm) +STUB( + "90EuhbIPLWo", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS5_INS7_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "90I4N6UxnMs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEE7add_refEv) +STUB("90KQ3YTMvBU", ucnv_createAlgorithmicConverter_67) +STUB("90S9Y9dYReA", _ZNK7WebCore9FrameView19baseBackgroundColorEv) +STUB("90T0XESrYzU", _ZNSt13_Num_int_base10is_integerE) +STUB( + "90TH7-OTCq4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEC1Ev) +STUB( + "90WZRdg64pE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEED1Ev) +STUB("90XdvAqFFn8", _ZN3sce2np3ipc17ServiceIpmiClientD1Ev) +STUB( + "90YeG75GCMU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEEC1ERKSB_) +STUB("90bDQvXrvq8", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE5beginEv) +STUB("90bVMRJg1jM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEC1Ev) +STUB( + "90m6qsdWl7s", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetInteger4Ev) +STUB("90o7nxDtbdc", Java_java_lang_Object_registerNatives) +STUB("90ojN3DTHjY", nl_langinfo) +STUB("90pmGqDK4BI", sceNpDbgAssignDebugId) +STUB( + "90tCdPotPR0", + _ZN7WebCore15GraphicsContext24drawConsumingImageBufferESt10unique_ptrINS_11ImageBufferESt14default_deleteIS2_EERKNS_10FloatPointERKNS_20ImagePaintingOptionsE) +STUB( + "90x2qFhhk+0", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToSendGameSessionMessageC2ERS5_) +STUB("90y6o3vONeQ", sceLibSecureCryptographyResetContext) +STUB("910DzrTNQDw", _ZN3sce7Toolkit2NP2V29Challenge7Request13SendChallenge21MAX_SIZE_TEXT_MESSAGEE) +STUB("911IbjFdJDA", _ZNK7WebCore16HTMLMediaElement33lastMediaResourceLoaderForTestingEv) +STUB("912NXRv7iXE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE5beginEv) +STUB( + "912V5M8tU1M", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_11EntitlementENS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv) +STUB("919MhccOiII", sceJpegDecDecodeWithInputControl) +STUB("91EcLyEE3iU", _ZN7WebCore9HTMLNames17aria_valueminAttrE) +STUB( + "91G2YoEIjG4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEEC2ERKSA_) +STUB("91Gy65OHabk", _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error10getMessageEv) +STUB( + "91H5EUrrh6Y", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE8capacityEv) +STUB( + "91LPpMUA0HU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEC1EPS9_) +STUB("91MCV3e8nlw", Java_java_awt_GnmGraphicsEnvironment_runConsoleEventThread) +STUB("91Q1Pv5Bv34", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15PlayedWithStoryEE7addressERS3_) +STUB("91TqZ9OxUgI", mono_image_addref) +STUB("91XFHcBWP-k", _ZNK3sce2np14JsonStringImpl6GetStrEv) +STUB( + "91aXKNiHtZw", + _ZThn16_N9Inspector22InspectorDebuggerAgent13setBreakpointERN3WTF6StringERKNS1_8JSONImpl6ObjectEPS6_PS2_RNS1_6RefPtrINS_8Protocol8Debugger8LocationENS1_13DumbPtrTraitsISD_EEEE) +STUB("91bSJvzfgEA", _ZN9Inspector15AsyncStackTrace18didCancelAsyncCallEv) +STUB("91iEWZCFXj8", jpeg_mem_term) +STUB("91kCCWMU75A", _ZN7WebCore24DeprecatedGlobalSettings21mockScrollbarsEnabledEv) +STUB("91kOKRnkrhE", sceUserServiceGetGlsCameraChromaKeyLevel) +STUB("91lAv49NDC8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEED1Ev) +STUB("91qDhcPGktQ", _ZN7WebCore9HTMLNames16aria_invalidAttrE) +STUB("91tmX-hOiP4", _ZN3sce2Np9CppWebApi11Matchmaking2V19SubmitterD1Ev) +STUB("91wv2313GMQ", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container13childrenIsSetEv) +STUB("91zlAET-Bn8", _ZN3sce7Toolkit2NP34DetailedProductInfoListInputParams9ProductIdC1Ev) +STUB("923EmVF1ojk", scePerfPmcL2iStart) +STUB("924CNCJmlCs", + _ZNK7WebCore30InvertLightnessFilterOperation14transformColorERNS_15FloatComponentsE) +STUB("9262lxP0SpM", sceAvControlSetGamutMetadata) +STUB("926stjXB08w", sceFsUfsCollectTelemetry2) +STUB( + "92B8mpCNIyE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEptEv) +STUB( + "92GyfCAPUCI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEC2Ev) +STUB("92HTzROeIiQ", rgctx_fetch_trampoline_rgctx_100_p) +STUB("92MbMr8naXY", mono_aot_Sce_PlayStation_HighLevel_UI2Platformplt_end) +STUB("92QDsOnBYss", uprops_addPropertyStarts_67) +STUB("92RMcC5IfeE", sqlite3_bind_parameter_count) +STUB("92bWLmKZvAo", _ZTVN9Inspector31BrowserBackendDispatcherHandlerE) +STUB("92e4jZiW9Tc", FT_CeilFix) +STUB("92mAf1S1GTw", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariableaSERS5_) +STUB( + "92mD6nkU57s", + _ZN7WebCore10JSLocation25getOwnPropertySlotByIndexEPN3JSC8JSObjectEPNS1_14JSGlobalObjectEjRNS1_12PropertySlotE) +STUB("92p4t4-bfJk", _ZN3sce7Toolkit2NP2V28Commerce10DescriptorC2Ev) +STUB( + "92pPiTnPfM4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEC1EPS8_) +STUB("92u28XHNKv8", _ZN3sce7Toolkit2NP2V23TSS7Request7GetDataC1Ev) +STUB("92xCv12VJIA", sceFiosSaveTimeStamp) +STUB("92xc-Oij6do", sceNpUniversalDataSystemIntRecordObjectSetArray) +STUB( + "92zLivgv22w", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB("92zzWjEld40", mono_aot_Sce_Vsh_Passcodejit_code_start) +STUB("932OhF7yB4I", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEEplEm) +STUB( + "935n6m4gqQ4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "9369S2BNenI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEneERKS9_) +STUB( + "93AB1d47W9c", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE4sizeEv) +STUB("93FjKklK15A", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOffer7setviewEPKc) +STUB("93Hxh-h1reM", unorm2_append_67) +STUB( + "93IiI78oTpY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEEC1ERKSC_) +STUB("93IuLXtj1sc", _ZN15AbstractStorage14MemfileContentD0Ev) +STUB( + "93MLsChSv5Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("93MnzhkAAgk", sceLncUtilContinueApp) +STUB("93OYoC8EI80", mono_escape_uri_string) +STUB("93P7JEmYuh0", rgctx_fetch_trampoline_mrgctx_45_p) +STUB( + "93PniEerHsg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("93X4S1mT3y0", sceFsDevpfsFsck) +STUB("93YI2YQOmbA", monoeg_g_file_get_contents) +STUB( + "93cgympDipE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "93dZiTaDEPQ", + _ZN3sce2Np9CppWebApi14ConnectAccount2V215AccountLinksApi17deleteAccountLinkEiRKNS4_28ParameterToDeleteAccountLinkERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB( + "93gBqL3qwtw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE7reserveEi) +STUB("93i7N2DYhBU", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_33ActivityFeedSharedScreenshotStoryEEC2Ev) +STUB("93trbeNjx7c", sceShellCoreUtilGetIDUMode) +STUB( + "93wmsi+VaFg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEC1EPKS8_) +STUB("94+5iSFgIKo", rgctx_fetch_trampoline_rgctx_46) +STUB("94+Ggm38KCg", sceHmdReprojectionClearUserEventEnd) +STUB( + "942vnFq4xdI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEED1Ev) +STUB("9443loxYNHc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEEptEv) +STUB("946ueKyw75w", sceAppInstUtilAppCancelableUnInstall) +STUB( + "947LdqfT3rk", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser11getsortModeEv) +STUB( + "949jY5-cj9s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEixEm) +STUB("94AHNBOWx-E", sceClHttpInit) +STUB("94EuReVV8c0", SHA224_Final) +STUB("94G36ovZEdI", _ZN3JSC2VM21bigIntObjectSpaceSlowEv) +STUB("94NTgVHUaE8", JSObjectMakeTypedArrayWithBytesNoCopy) +STUB("94Nv-iEJPHU", _ZN3sce2Np9CppWebApi6Common6VectorIfE5clearEv) +STUB("94OiPulKcao", _ZNSt12placeholders3_15E) +STUB("94PPEKa0QsQ", JSObjectMakeFunction) +STUB("94TcQVqP4Fw", sceEsvmEngineMediaKeysSetEventHandler) +STUB( + "94ZLp2+AOq0", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERm) +STUB("94ZcZmcnXK4", sceUserServiceSetPbtcMode) +STUB("94dk1V7XfYw", _ZNSt13runtime_errorD0Ev) +STUB("94dqjDJwsRY", _ZN7WebCore4Page30accessibilitySettingsDidChangeEv) +STUB("94fTC-ZSU4o", il2cpp_method_get_class) +STUB( + "94ute9U3+x8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE5beginEv) +STUB( + "94y2PO61+Jg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEmmEi) +STUB("95+sJrPf30A", _ZN15AbstractStorage14YoutubeContent5WriteEPKvlPl) +STUB( + "95-tVkowD7k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEC1ERKS7_) +STUB("951o4aXk+P8", _ZN3JSC10Identifier27checkCurrentAtomStringTableERNS_2VME) +STUB("959ch5i1yBY", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEEmmEv) +STUB("959qrazPIrg", sceKernelGetProcParam) +STUB( + "95C8bCPInIE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEE5resetEPS6_) +STUB( + "95ERUyteUzo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEED1Ev) +STUB("95FhkfvoGQM", _ZN3WTF23callOnMainThreadAndWaitEONS_8FunctionIFvvEEE) +STUB("95Jbx5-gFZ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEC2Ev) +STUB("95MaQlRbfC8", _ZNSt10moneypunctIwLb0EED0Ev) +STUB( + "95MikYUI6SA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEED1Ev) +STUB("95NZUqZWgrU", _ZNK3sce2Np9CppWebApi7Matches2V120RequestTeamStatistic6toJsonERNS_4Json5ValueEb) +STUB("95SqSmwHB0M", mono_aot_Sce_Vsh_ShareServerPostWrapperjit_got) +STUB("95UOysgEA1k", sceNpIpcAbortRequest) +STUB("95V3PF0kUEA", powl) +STUB("95ZTWkRkRys", + _ZN7WebCore5Frame6createEPNS_4PageEPNS_21HTMLFrameOwnerElementEPNS_17FrameLoaderClientE) +STUB("95atR7io-XY", GCC_except_table260) +STUB("95bdtHdNUic", sceAudioOutSuspendResume) +STUB("95cbDYU5PBg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEEC1Ev) +STUB( + "95e4MAZRGnA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEC1EPS8_) +STUB("95ePi-pYYmg", uset_removeAll_67) +STUB( + "95mYiMqtDkI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEED2Ev) +STUB( + "95u7Kn+ZzSg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEdeEv) +STUB("95x6M5HT8IY", + _ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer10setNatTypeERKi) +STUB("960DUC4pbQA", rgctx_fetch_trampoline_rgctx_119_p) +STUB("966Sw8LjFIg", rgctx_fetch_trampoline_rgctx_1) +STUB("969Euioo12Q", _ZNSt8messagesIcEC2ERKSt8_Locinfom) +STUB("96Bg8h09w+o", _ZNSt9_Num_base15has_denorm_lossE) +STUB( + "96EouqhYdhc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEE11release_refEv) +STUB("96Ev+CE1luE", _ZNSt8messagesIcE7_GetcatEPPKNSt6locale5facetEPKS1_) +STUB("96F7zp1Xo+k", sceCameraSetAttributeInternal) +STUB("96GyccomUww", _ZN3sce2Np9CppWebApi7Matches2V119ResponseTeamResults9setTeamIdEPKc) +STUB("96Jno3e1rpA", _ZN3sce2Np9CppWebApi14SessionManager2V110FromMember11setPlatformEPKc) +STUB( + "96KFt5QhJZM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEEC1ERKSA_) +STUB( + "96N4jjP6DV4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEE5resetEPS6_) +STUB("96S1Qrln1-E", + _ZN15AbstractStorage18DailymotionContentC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) +STUB("96S8rlsntBU", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicketD1Ev) +STUB("96X8jzxG20g", + _ZN7WebCore12ChromeClient34exitVideoFullscreenForVideoElementERNS_16HTMLVideoElementE) +STUB( + "96Ys2uUS+e8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("96iOZxITfmM", ures_getVersion_67) +STUB("96iwUEq1jKY", _ZN7WebCore14SQLiteDatabase9lastErrorEv) +STUB( + "96j+qqI2nDg", + _ZN3sce2Np9CppWebApi11Matchmaking2V116AttributeFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_9AttributeEEE) +STUB( + "96k3CyKEs9c", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB("96kVLpVimmw", _ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody9unsetPcIdEv) +STUB("96nGjHXEWo4", vm_send_GetCachedUnwindInfo) +STUB("96pmXKJwUWY", sceNpManagerIntSetCheckPlusResult) +STUB( + "96ugFT1kOiE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEaSERKS9_) +STUB("96xdSFbiR7Q", _ZTIPe) +STUB( + "96zXLB4Ukeo", + _ZN12video_parser17cVideoProfilerMp419_additionalCheckAACERNS_7cVpListINS_13VpMediaInfo_tEjEERNS0_13VpTrackInfo_tE) +STUB( + "977Gb79HlfI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE21intrusive_ptr_sub_refEPS9_) +STUB("9789sAtaavg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEEC1EPKS6_) +STUB( + "97COouWLTx0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE4sizeEv) +STUB("97L0D3+iBDE", sceShellCoreUtilGetHidConfigFileString) +STUB("97PkESu6iVk", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V113ErrorResponseD2Ev) +STUB("97QKcc74TmM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEEC1EPKS6_) +STUB("97RAfJch+qE", sceNpManagerIntBindOfflineAccountId) +STUB("97UFbB1wPXs", _ZNK7WebCore14SecurityOrigin9canAccessERKS0_) +STUB("97UTMR7Tb5s", sceBgftServiceIntDownloadStartTaskAll) +STUB("97V-KpyIRRw", + _ZN7WebCore14ScrollableArea27availableContentSizeChangedENS0_25AvailableSizeChangeReasonE) +STUB("97WNikw2qFE", mono_declsec_flags_from_class) +STUB( + "97Z+KJ-hbr8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEC1EPS6_PNS2_10LibContextE) +STUB("97ZkWubtMk0", sceUserServiceSetPartyMuteListA) +STUB("97ixcMQb0LI", ucol_getOffset_67) +STUB("97ju9poLOrE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEED1Ev) +STUB( + "97lPAwMVVk0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE5beginEv) +STUB( + "97o+V25wgXk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE21intrusive_ptr_sub_refEPS9_) +STUB("97p3eJHwYx8", _ZTVN9Inspector22InspectorDebuggerAgentE) +STUB( + "97vrN6GbLbI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEC1EPS6_PNS2_10LibContextE) +STUB("97z4LrV5qGc", mono_aot_Sce_Vsh_Np_AppLaunchLinkjit_code_start) +STUB("97zVHR8KxbQ", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13WhoLikedStoryEED2Ev) +STUB("98-71sEmEjM", _ZN9Inspector26InspectorBackendDispatcherD0Ev) +STUB("98-MNSKtaHw", mono_aot_System_Windowsplt_end) +STUB("982Fr3+9qfg", + _ZN3sce7Toolkit2NP2V29Messaging7Request37DisplayReceivedGameDataMessagesDialogC2Ev) +STUB("984IK1VPNp0", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product10labelIsSetEv) +STUB("984JEn4ELo4", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V117ConnectionQualityD1Ev) +STUB("985+pv1mzsA", d2i_PKCS12_fp) +STUB("9891V3n8oac", mono_get_method_full) +STUB( + "98A6nOqsafE", + _ZN3JSC8JSObject16getPropertyNamesEPS0_PNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("98AUuVfM5wM", _ZN12video_parser5vpcom10LockCreateEPPN3paf6thread5MutexEy) +STUB("98EKVFkCQDI", _ZN7WebCore21BlobDataFileReferenceD2Ev) +STUB( + "98IhQWJj8iA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("98LV9dS2Fvw", sceKernelIccIndicatorStandby) +STUB( + "98OqYkQMiMA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE7popBackEv) +STUB( + "98Qkaf0GRS4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEEcvbEv) +STUB("98VZNtHov7E", _ZN3JSC11SymbolTable6s_infoE) +STUB( + "98VkW0qYFIc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEED2Ev) +STUB("98XGr2Bkklg", sceFontGraphicsSetupRotation) +STUB( + "98Zakb3EuGs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEC1Ev) +STUB("98g6a1l5dUA", sceDataTransferHostAbort) +STUB( + "98j6Jz2Ak7k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEaSERKS9_) +STUB("98kInJrpGRo", _ZN3JSC13WatchpointSet11fireAllSlowERNS_2VMEPNS_22DeferredWatchpointFireE) +STUB("98nRVSHbSg0", _ZN3sce7Toolkit2NP2V29Messaging12Notification16NewInGameMessageD2Ev) +STUB( + "98o1IxQmWlw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEmmEv) +STUB( + "98q3NXdg3gk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEED2Ev) +STUB( + "98qSbG0y2aM", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("98rCRtmk60U", __ubsan_handle_nonnull_arg) +STUB("98sb6MXwouI", JVM_IsSupportedJNIVersion) +STUB("98uC3Rri4Ok", + _ZNK3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectator11getPlatformEv) +STUB( + "98uQnQ9oOzU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEEptEv) +STUB( + "98vIpQcFFBE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEppEv) +STUB("98w+P+GuFMU", _ZNSt9_Num_base12has_infinityE) +STUB("98xcorGsnzA", _ZN7WebCore16deleteAllCookiesERKNS_21NetworkStorageSessionE) +STUB( + "98xs5TtyE8s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("9903eIDpTjw", _ZN3JSC19HeapSnapshotBuilderdlEPv) +STUB( + "990u69sZ3UY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE8pushBackERKS8_) +STUB( + "992WKH2EjGE", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetrics17getPacketLossRateEv) +STUB( + "999ceaMVbOU", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi42ParameterToPutGameSessionsSearchAttributes9terminateEv) +STUB("99HNmYMUJZQ", sceCesRefersUcsProfileCp1251) +STUB( + "99Hx+OMBaVs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEEaSERKSA_) +STUB("99IBjvBYx88", + _ZN3sce2Np9CppWebApi7Matches2V120ReportResultsRequestC1EPNS1_6Common10LibContextE) +STUB( + "99L1SWwDr2A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEC1Ev) +STUB( + "99LaqkZTepU", + _ZN3sce2Np9CppWebApi14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyC1EPNS1_6Common10LibContextE) +STUB("99NupPHfSoE", + _ZN3sce2Np9CppWebApi14ConnectAccount2V214PSNError_errorC2EPNS1_6Common10LibContextE) +STUB( + "99XM8kE7PH4", + _ZN3sce2Np9CppWebApi11Matchmaking2V127GetOfferResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_20GetOfferResponseBodyEEE) +STUB("99XpfyBTg9c", blockpool_map) +STUB("99YgkcF5CR0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEEC1EPS6_) +STUB("99a6XsKMLbI", zrule_getName_67) +STUB("99b82IKXpH4", sceAppContentAppParamGetInt) +STUB("99bMGglFW3I", sceRtcParseRFC3339) +STUB( + "99cjPEk+8hM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB( + "99iCE56-YBk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB("99iifkWp7Ec", __asan_memmove) +STUB( + "99k+ZQri5nk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEED1Ev) +STUB( + "99oHLvIRD58", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEixEm) +STUB( + "99t2EfaXkXY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEixEm) +STUB("99uOYXc5ZhQ", + _ZN3sce7Toolkit2NP2V28Matching7Request11SearchRooms32MAX_NUM_USERS_TO_SEARCH_IN_ROOMSE) +STUB("9A2YUo6bLG8", + _ZThn24_N9Inspector22InspectorDebuggerAgent20setPauseOnExceptionsERN3WTF6StringERKS2_) +STUB("9A5IcwFXw1s", _ZN3sce2np13JsonDocParser8addValueEPKNS0_9JsonValueEPPS2_) +STUB("9ACFYpyoo2E", Java_com_sony_bdjstack_javax_media_controls_VideoSystem_getKeepResolutionMode) +STUB("9ACToo+GjQs", _ZN3sce7Toolkit2NP9Interface13passUserEventERKNS1_5EventE) +STUB("9ADox1mWYRQ", mono_aot_Sce_Vsh_RnpsAppMgrWrapperjit_code_end) +STUB( + "9AGF7CA0kqY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEC1Ev) +STUB("9AGT4R9XxlU", WKDownloadCopyRequest) +STUB("9AOMjk-ovyE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEED1Ev) +STUB("9AOghtzX6t8", _ZN7WebCore12ISOWebVTTCueD1Ev) +STUB("9AP4jjDiIFE", uprv_stableBinarySearch) +STUB("9AQ+tvpiA9g", _ZN7WebCore42contextMenuItemTagCheckSpellingWhileTypingEv) +STUB("9AXx+6CVOxs", _ZN7WebCore28InspectorFrontendClientLocal15changeSheetRectERKNS_9FloatRectE) +STUB("9AbrOy9tA0c", mono_aot_Sce_Vsh_SysUtilWrapperjit_code_end) +STUB("9AcX4Qk47+o", _ZNSt15_Num_float_base11round_styleE) +STUB("9AdVLpFeSYg", ucptrie_toBinary) +STUB( + "9Afx5ygPxbg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEppEi) +STUB("9AiIY8rXo9w", sceNpRemotePlaySessionSignalingAbortConnection) +STUB("9AqYFHoF5j0", mono_btls_x509_get_hash) +STUB("9AreLj-7bSM", _ZN3sce7Toolkit2NP2V27NpUtils12Notification15UserStateChange8deepCopyERKS5_) +STUB( + "9AuVWpMjbqc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEdeEv) +STUB("9Av1ZdVrsO8", _ZN12video_parser5vpcom22SetFileAccessFunctionsEPNS0_10_VP_FILEIOE) +STUB( + "9AxUeYQPLVg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "9B01YvPtXYY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("9B64QUYKB3E", mono_image_load_module) +STUB("9B8CaJE+Hak", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE6resizeEj) +STUB( + "9B9cCH1uu9I", + _ZN15AbstractStorage17DailymotionFolder12RemoveFolderERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) +STUB("9BA11xwFLxA", _ZN3sce7Toolkit2NP2V24Core8ResponseINS3_18CustomResponseDataEED2Ev) +STUB( + "9BEoIyhxFr4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE8copyFromERKS9_) +STUB("9BFmRpnnd8k", _ZN7WebCore9HTMLNames8typeAttrE) +STUB( + "9BGtQiod9nI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEE5resetEPS6_) +STUB( + "9BHHeY-GSC4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("9BHilYtCbmo", WKPageSetCaretVisible) +STUB("9BI3oYkCTCU", _ZNSt7codecvtIwc9_MbstatetED0Ev) +STUB( + "9BNK6jGsTQs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB("9BQ3lAY5LZY", _ZN7WebCore16HTMLInputElement15setDefaultValueERKN3WTF6StringE) +STUB( + "9BQwbyUawYM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "9BWGeypaCTA", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody14unsetInteger10Ev) +STUB("9BcDykPmo1I", __error) +STUB( + "9BgFIbiysPI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEC1EPNS2_10LibContextE) +STUB("9BhoVC0q85k", sceRegMgrBackupNeedMem) +STUB("9BkFxDivHFA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEE7add_refEv) +STUB("9BmAYmQ3-Z0", _ZNK3sce2Np9CppWebApi11Matchmaking2V15Error14getReferenceIdEv) +STUB("9BosXxJq7Zk", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15Error8fromJsonERKNS_4Json5ValueE) +STUB( + "9BsJ0kg0kAg", + _ZN3sce2Np9CppWebApi7Matches2V127RequestPlayerResultsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_20RequestPlayerResultsEEE) +STUB("9Buea6A4nrs", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13FriendsOfUserEE7addressERKS3_) +STUB( + "9BxpckOI7Qw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("9ByRMdo7ywg", _ZTVN10__cxxabiv121__vmi_class_type_infoE) +STUB("9ByZEM2Rtbk", _ZN10Deprecated25ScriptCallArgumentHandlerC2EPN3JSC14JSGlobalObjectE) +STUB( + "9C01T+GGdVo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEplEm) +STUB("9C0BXk+RPFU", _ZN7WebCore11MathMLNames10heightAttrE) +STUB( + "9C1qOA9CZRs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEED2Ev) +STUB( + "9C5C9qrEAWI", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB( + "9CA9gndhqkg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEptEv) +STUB("9CBk-TwpmHI", _ZN7WebCore9HTMLNames8tfootTagE) +STUB("9CD1bazoVZ4", _ZN3JSC8JSObject11hasInstanceEPNS_9ExecStateENS_7JSValueES3_) +STUB( + "9CD82fft1+k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEEC1Ev) +STUB("9CHWVv6r3Dg", sceAudioOutSystemControlSet) +STUB("9CO85fjUYH8", sceCustomMusicServiceTerminate) +STUB("9CTwmB-qZuI", _ZN3sce7Toolkit2NP2V24Core7Request16ThreadProperties16PRIORITY_DEFAULTE) +STUB("9CUro9a3dSc", + _ZN3JSC13RuntimeMethodC1EPNS_14JSGlobalObjectEPNS_9StructureEPNS_8Bindings6MethodE) +STUB("9CaGnt954vQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEE11get_deleterEv) +STUB("9CdadcNnX+E", _ZN7WebCore11RenderStyleD2Ev) +STUB( + "9Cdj4bKdp8I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEC1ERKS7_) +STUB( + "9ChGaOfn-cg", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126BandwidthDownstreamMetrics8fromJsonERKNS_4Json5ValueE) +STUB( + "9CmTZYhWE78", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEptEv) +STUB("9Cmcy0FRlOs", sceCesSbcToUtf16le) +STUB( + "9CpFGG4KJw8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEE11get_deleterEv) +STUB("9CpTEbxV7tE", Java_sun_awt_GnmUtils_bdjbgAllocFromImage) +STUB( + "9CqQo0AZw8A", + _ZN3sce7Toolkit2NP11UserProfile9Interface7getNpIdEPNS1_9Utilities6FutureI7SceNpIdEEPKNS1_18UserProfileRequestEb) +STUB( + "9CuVgEY2g+s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEE5resetEPS9_) +STUB( + "9Cy9G-iw6Sw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEC1EPS8_) +STUB("9D1PY1C0XK4", + _ZN7WebCore11MediaPlayer11mediaEngineENS_16MediaPlayerEnums21MediaEngineIdentifierE) +STUB("9D40kL7Jyes", _ZN7WebCore22ResourceLoadStatistics6decodeERNS_12KeyedDecoderEj) +STUB( + "9D6+LMPAW00", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEC2EPS8_) +STUB("9D6IPRLL8U0", _ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamTournamentC1Ev) +STUB( + "9DAOlu7b+kY", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitations52setpostPlayerSessionsSessionIdInvitationsRequestBodyENS1_6Common12IntrusivePtrINS3_49PostPlayerSessionsSessionIdInvitationsRequestBodyEEE) +STUB("9DAe2g9wzX4", wpe_pasteboard_get_singleton) +STUB("9DDCGs+YGTE", _ZN3JSC13BooleanObject14finishCreationERNS_2VME) +STUB("9DEHEHglTj4", ucurr_getRoundingIncrementForUsage_67) +STUB("9DFfU1kqUS0", mono_metadata_packing_from_typedef) +STUB("9DNtLWtpMC8", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V115FrequentlyMutedC2EPNS1_6Common10LibContextE) +STUB("9DPmPJF3ZRE", _ZN3sce10CanvasUtil11bindTextureEhPv) +STUB( + "9DXwrERAuhk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSC_) +STUB("9Dk49Ct+3y0", _ZNK7WebCore16BlobRegistryImpl18getBlobDataFromURLERKNS_3URLE) +STUB("9Dm5f-FuT8c", _ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequest19unsetNpServiceLabelEv) +STUB( + "9DngAhmRO6k", + _ZN3JSC23JSModuleNamespaceObject25getOwnPropertySlotByIndexEPNS_8JSObjectEPNS_9ExecStateEjRNS_12PropertySlotE) +STUB( + "9Do9Q9Uky3w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "9Dpws1AhtWw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEaSERKS7_) +STUB("9Ds+PUN0dTU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEC2Ev) +STUB("9Dxg7XSlr2s", sceNetCtlApRpStartWithRetry) +STUB("9E+hVWQWMe0", _ZN3JSC22FullGCActivityCallback12lastGCLengthEv) +STUB( + "9E1-mZyoZ-I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEaSERS7_) +STUB( + "9E4jau0CJNo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEED2Ev) +STUB("9E8iB0PsZns", _ZN3JSC7Symbols36flatIntoArrayWithCallbackPrivateNameE) +STUB("9EADTID9mso", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_11CountryInfoEE17getAdditionalInfoEv) +STUB("9EDA+P8u8v0", _ZN3NTF18URLResponseMessage14getMessageTypeEv) +STUB("9EFglp2WKow", il2cpp_array_get_byte_length) +STUB( + "9ER2vbGBsn0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "9ETublZfML8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEE7add_refEv) +STUB( + "9EaEOtvBvO0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEE3getEv) +STUB("9EcTld4VfWE", _ZN7WebCore10JSLocationC2ERKS0_) +STUB( + "9EjdtGuEHlA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEEC1ERKSA_) +STUB("9EkkKP1ETPE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEE3getEv) +STUB("9ElZF5fyxDU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEE7add_refEv) +STUB( + "9Eo5OyRe8gM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEaSERS7_) +STUB("9EpRYMy7rHU", sceCameraStart) +STUB("9F4eESDZFPs", mono_aot_Sce_Vsh_EventServiceWrapperjit_code_end) +STUB( + "9F4utDRC+Rk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEppEv) +STUB( + "9F5Sj4paZRI", + _ZN9Inspector20CSSBackendDispatcher23getComputedStyleForNodeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "9FCSSpNir4I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE4sizeEv) +STUB("9FF+T5Xks9E", _ZNSt6locale7_Locimp8_ClocptrE) +STUB("9FIdF0nhg00", _ZNK7WebCore9CookieJar14cookiesEnabledERKNS_8DocumentE) +STUB( + "9FLWbhtVEX4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEEcvbEv) +STUB("9FPBL9gvu9s", _ZN3sce7Toolkit2NP2V24Core7Request16ThreadPropertiesC1Ev) +STUB("9FTsJGPDruo", _ZN7WebCore9HTMLNames12noresizeAttrE) +STUB("9FUUJfyNMG4", mono_aot_Sce_Vsh_WebBrowserjit_code_start) +STUB( + "9FVPcjjqXtU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("9FX-K7sP3f8", mono_aot_Sce_Vsh_Np_Trophyplt) +STUB( + "9FX3a1SmCW8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEE7add_refEv) +STUB("9FZDGHSsINU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEEeqERKS7_) +STUB("9FdGIgYrVF4", _ZN3WTF14FileSystemImpl25createTemporaryZipArchiveERKNS_6StringE) +STUB("9Ff7AijH93g", uloc_getDisplayKeyword) +STUB("9FiILh-Kytg", __asan_set_shadow_f8) +STUB( + "9FjPayZuUn4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEC2EPKS8_) +STUB( + "9FnZNiUeYEE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEC1Ev) +STUB("9FowWFMEIM8", sceRazorCpuJobManagerSequence) +STUB("9FxyMDQtqy0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEEC2ERS9_) +STUB("9G-fqSz4G8U", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable10ownerIsSetEv) +STUB("9G2LYp3FlE4", glBindSampler) +STUB("9G32u5RRYxE", _ZNSt3pmr19new_delete_resourceEv) +STUB( + "9G7fpmodu1Q", + _ZN3sce7Toolkit2NP2V28Commerce22getServiceEntitlementsERKNS3_7Request22GetServiceEntitlementsEPNS2_4Core8ResponseINS3_19ServiceEntitlementsEEE) +STUB("9GCLZSDrkEA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEptEv) +STUB( + "9GCZgTGSmLk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE8pushBackERKS8_) +STUB( + "9GE7e+WK1bc", + _ZN3sce2Np9CppWebApi11UserProfile2V112ErrorFactory6createEPNS1_6Common10LibContextElPKcS9_PNS5_12IntrusivePtrINS3_5ErrorEEE) +STUB( + "9GF0V3-pKSg", + _ZN7WebCore21ContentSecurityPolicy17didReceiveHeadersERKNS_36ContentSecurityPolicyResponseHeadersEON3WTF6StringENS0_19ReportParsingErrorsE) +STUB( + "9GFSPz8-F4E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE8copyFromERKS9_) +STUB( + "9GHnQoyYhys", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE4sizeEv) +STUB("9GIB91cj1wc", sceImeBackendParamInit) +STUB("9GMinneGvk0", _ZN3sce7Toolkit2NP2V27Session7Request7GetDataC1Ev) +STUB("9GNi+zOp9Qs", _ZN7WebCore17FullscreenManager14exitFullscreenEv) +STUB("9GV+bfjgtYw", _ZN9Inspector15RemoteInspectorC2Ev) +STUB("9GWDkED8mtE", _ZN7WebCore9HTMLNames17aria_posinsetAttrE) +STUB( + "9GZmhSiFKr8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEEC1ERSA_) +STUB("9GasEzC4uFE", _ZN7WebCore12NamedNodeMap3refEv) +STUB( + "9GgBeXK-r-0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEneERKS9_) +STUB( + "9Gi-s0qU-fU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEED2Ev) +STUB( + "9Gjt1wWkJa0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE21intrusive_ptr_sub_refEPS9_) +STUB("9GmSeBUGFIU", fuse_loop) +STUB("9Gq5rOkWzNU", sceAppContentSmallSharedDataFormat) +STUB( + "9GqPa4xowO4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEEC2ERKSC_) +STUB("9Gsw6lvdddE", PSNowInitialize) +STUB("9GyicjhjtZM", _ZN4Manx11StoragePath12iconDatabaseEv) +STUB("9H02q68agW0", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEE5resetEPS5_) +STUB("9H2BStEAAMg", _ZTVSt7codecvtIDic9_MbstatetE) +STUB("9H4HuUFiNtw", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats20getConnectionQualityEv) +STUB( + "9H6AmHcPVHQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE21intrusive_ptr_sub_refEPS7_) +STUB( + "9H7JafMe5QM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEE5resetEPS9_) +STUB( + "9H8NK-uEacw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE4sizeEv) +STUB("9H8w8cym7eg", sceDataTransferRequestPrepareFgTransfer) +STUB( + "9HFOGiqMbIM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE5beginEv) +STUB("9HFZvESTOhk", _ZN7WebCore14ResourceHandle16setDefersLoadingEb) +STUB("9HFuhpMU7dQ", _ZN3sce2Np9CppWebApi11Matchmaking2V18LocationC1EPNS1_6Common10LibContextE) +STUB("9HGfqQKOYPk", _ZN3sce2Np9CppWebApi11Matchmaking2V19Submitter12setAccountIdERKm) +STUB("9HH2CPkWIv8", _ZN3sce7Toolkit2NP2V210Tournament15TeamVsTeamMatchC1Ev) +STUB("9HILqEoh24E", _ZNSs5_CopyEmm) +STUB("9HIQZCEH3w4", _ZN3JSC7Symbols37regExpProtoMultilineGetterPrivateNameE) +STUB("9HKYvd0Fc8Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEC2ERS7_) +STUB( + "9HNIMS0D+60", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE10setContextEPNS2_10LibContextE) +STUB( + "9HPoDKLJ5d0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("9HRXl53a0Cc", _ZNK3sce2Np9CppWebApi6Common8IteratorIlEneERKS4_) +STUB("9HSHM5kvg64", _ZN7WebCore13IdentifierRep7isValidEPS0_) +STUB("9HTemx1zRCw", _ZN3sce2np9JsonArrayD1Ev) +STUB( + "9HV4XyEW3Vo", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyC1EPNS1_6Common10LibContextE) +STUB( + "9HYAVefIxVQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEED2Ev) +STUB("9HfqqJubj1Y", mono_aot_Sce_Vsh_Registryunbox_trampolines_end) +STUB( + "9Hit0Qh9dcI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "9Hk3Tl54QWI", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEEC2Ev) +STUB("9HopjVNdAHw", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching6WorldsEE19setCustomReturnCodeEi) +STUB("9Hr89GfRrfA", sceFsMountLwfsCompat) +STUB("9HtGt7M9cMs", WKPageHandleWheelEvent) +STUB( + "9HvngOdGm08", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "9HxpiwWf5Hw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEEC1ERKSA_) +STUB("9HzWfg82K2w", WKOpenPanelParametersCopyCapture) +STUB("9HzfhdtESio", pthread_getname_np) +STUB("9I+F9cgffOM", ucptrie_getValueWidth_67) +STUB("9I3Z6Okr+Mc", ucnv_openCCSID) +STUB("9I4TdP3A9-g", sceVisionManagerInitialize) +STUB( + "9IG9qsaJ1QE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEppEv) +STUB( + "9IHyCYvSPKs", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeader35getxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB( + "9IIm4QNzFCM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEE7get_refEv) +STUB( + "9IKooW79-AM", + _ZN3sce7Toolkit2NP2V23TUS12setVariablesERKNS3_7Request12SetVariablesEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB( + "9IKt7cbdCk8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("9IMLp-vhtUc", rgctx_fetch_trampoline_rgctx_14_p) +STUB( + "9INUzJ1aqcA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("9IS4qPHwhV0", _ZN3sce7Toolkit2NP2V27Ranking7Request15GetRangeOfRanksD2Ev) +STUB( + "9IXbH6lGPxI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEE3getEv) +STUB("9Iem9Wk07xU", __sys_rdup) +STUB( + "9Igkr36DaKk", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyD1Ev) +STUB( + "9Ii6qzBv9qA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE4initEv) +STUB( + "9IuU96Uztlw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEppEi) +STUB( + "9IygJEdu7Lg", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V333CommunicationRestrictionStatusApi44ParameterToGetCommunicationRestrictionStatus10initializeEPNS1_6Common10LibContextEm) +STUB( + "9Ize+VvpjTI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEneERKS9_) +STUB("9J118CUNfBw", g_timer_stop) +STUB("9J4zJhbeEQs", __tsan_get_report_data) +STUB("9J6V61ncugs", il2cpp_format_stack_trace) +STUB("9J784JLSmEc", _ZNK3sce2Np9CppWebApi13InGameCatalog2V55Error6toJsonERNS_4Json5ValueEb) +STUB("9J8+IeONNco", _ZNK7WebCore9FrameTree3topEv) +STUB( + "9J8+PcvyTrc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE5emptyEv) +STUB( + "9JDiLNYiBgQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEE11release_refEv) +STUB("9JF4UfDyx5Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEptEv) +STUB( + "9JGlAZZy+Mo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEC2Ev) +STUB( + "9JHn0FeN92Y", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEptEv) +STUB("9JIn-Zly3Lw", _ZN3JSC8Debugger11returnEventEPNS_9CallFrameE) +STUB( + "9JRRXbqLYOU", + _ZN3sce2Np9CppWebApi7Matches2V127ResponseTeamMemberStatistic8setStatsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_19AdditionalStatisticEEEEE) +STUB( + "9JUEPXjNF3I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEED2Ev) +STUB("9JUeacTrqns", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEEC2ERS9_) +STUB("9JXz4Na5cDg", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_18SessionInformationEEC1Ev) +STUB("9JYNqN6jAKI", sceKernelDebugOutText) +STUB( + "9Jfj79GG9ew", + _ZN3JSC4callEPNS_9ExecStateENS_7JSValueENS_8CallTypeERKNS_8CallDataES2_RKNS_7ArgListERN3WTF8NakedPtrINS_9ExceptionEEE) +STUB( + "9Jkg4W-0nrY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE5beginEv) +STUB("9JmzXIwUrS0", + Java_sun_awt_image_GnmImageDecoder_readImage__ILjava_io_InputStream_2ILjava_awt_Image_2) +STUB("9JpQlCkEpMA", _ZN7WebCore25DropShadowFilterOperationD0Ev) +STUB("9JsJTYD6boI", SwCtrlManagerCheckActivate) +STUB("9JtmOPS-INA", _ZN7WebCore11MathMLNames7noneTagE) +STUB( + "9Jx8dA+ldQU", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEEiRNS2_10LibContextEPT_m) +STUB( + "9Jz5s+uWvpQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEE3getEv) +STUB("9K03gpAhS6c", rgctx_fetch_trampoline_rgctx_28_p) +STUB( + "9K6xG3A1ICM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEaSERKS7_) +STUB( + "9KEAna5JSts", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEmmEv) +STUB("9KIfkC+iXrY", _ZNSt15basic_streambufIwSt11char_traitsIwEED1Ev) +STUB("9KLjPjbLuLY", _ZNK7WebCore26HTMLTextFormControlElement18selectionDirectionEv) +STUB("9KOHB4tX7H8", _ZN7WebCore9DOMWindow4openERS0_S1_RKN3WTF6StringERKNS2_12AtomicStringES5_) +STUB( + "9KRnS-7HUZs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEEcvbEv) +STUB("9KSGFMRnp3k", sceNpWebApi2IntInitialize2) +STUB("9KUZFjI1IxA", _ZN3sce4Json6StringC1EPKc) +STUB( + "9KX8MktrvHA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData17setnpServiceLabelEj) +STUB("9KXSwPg4PlM", sceAppInstUtilAppGetAppInstallStatus) +STUB( + "9KaibvqTzlM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEmmEv) +STUB( + "9KbGVjOPvZA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEEC1Ev) +STUB("9KdswXJB298", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEEcvbEv) +STUB( + "9KePtqOYFUY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEC2EPNS2_10LibContextE) +STUB("9Kfep5v1bZ0", _ZNK3sce2np10JsonNumber3GetEPm) +STUB("9KibQmcN8IA", WKSecurityOriginCopyToString) +STUB( + "9KlAN8VXt78", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEEC2Ev) +STUB( + "9Km5hNg0azA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE5beginEv) +STUB("9KnzDUK-Yyg", _ZN3sce7Toolkit2NP2V27Ranking7Request15GetRangeOfRanksC2Ev) +STUB("9Kpk4m9pJ+A", _ZN3sce7Toolkit2NP2V28Commerce7Request21DisplayJoinPlusDialogC2Ev) +STUB( + "9KpvLOwPxsw", + _ZN7WebCore17PageConsoleClient23messageWithTypeAndLevelEN3JSC11MessageTypeENS1_12MessageLevelEPNS1_14JSGlobalObjectEON3WTF3RefIN9Inspector15ScriptArgumentsENS6_13DumbPtrTraitsIS9_EEEE) +STUB("9Ks+gN027W0", _ZN7WebCore16BlobRegistryImpl8blobSizeERKN3WTF3URLE) +STUB( + "9Kw-FNjn9nU", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEiRNS2_10LibContextEPT_m) +STUB("9KzYwvEszt8", _ZN7WebCore12ChromeClientC2Ev) +STUB( + "9KzoqPB0LWU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEEC1Ev) +STUB( + "9L+-vaQbDEI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE5beginEv) +STUB( + "9L-NdBDyygs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEED1Ev) +STUB( + "9L0wOqsn4v8", + _ZN3JSC14JSGlobalObject3putEPNS_6JSCellEPNS_9ExecStateENS_12PropertyNameENS_7JSValueERNS_15PutPropertySlotE) +STUB( + "9L1AihLIqLI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEppEi) +STUB( + "9L5G6y75Uwc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEC2EPS8_) +STUB("9L5spctC4FQ", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error11unsetStatusEv) +STUB("9L913mV71Wc", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V19RatingApi21ParameterToPostRatingC2ERS5_) +STUB( + "9L9ATLzIf7Y", + _ZN7WebCore17PageConsoleClient9recordEndEPN3JSC9ExecStateEON3WTF3RefIN9Inspector15ScriptArgumentsENS4_13DumbPtrTraitsIS7_EEEE) +STUB("9LBcV3rS10Q", sceKernelSetCoredumpAppInfo) +STUB("9LCjpWyQ5Zc", pow) +STUB("9LCsiEehCT4", throwFileNotFoundException) +STUB( + "9LG74KA+OYc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEE11get_deleterEv) +STUB( + "9LHFzlAqh+M", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEeqERKS9_) +STUB( + "9LIn0hm4s4Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEE11get_deleterEv) +STUB( + "9LLr+cX+kmk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEED1Ev) +STUB("9LOj0XIPK2A", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicketC1Ev) +STUB("9LQXouHddeo", Java_com_sony_bdjstack_org_bluray_vfs_VFSManagerImpl_proxyGetState) +STUB("9LaGPRKyx2o", Java_java_net_PlainDatagramSocketImpl_send) +STUB("9LcAvVHbGqg", _ZN9Inspector24WorkerFrontendDispatcherC1ERNS_14FrontendRouterE) +STUB( + "9Lcd2v0uKP4", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessionsC1ERS5_) +STUB("9Lm2mfsSmws", FT_Face_GetVariantSelectors) +STUB( + "9LmCRDbA-Oo", + _ZN7Nicosia9AnimationC2ERKN3WTF6StringERKN7WebCore17KeyframeValueListERKNS5_9FloatSizeERKNS5_9AnimationEbNS1_13MonotonicTimeENS1_7SecondsENS0_14AnimationStateE) +STUB( + "9LnhTZ5iwX0", + _ZN3sce2Np9CppWebApi14ConnectAccount2V28PSNError8setErrorERKNS1_6Common12IntrusivePtrINS3_14PSNError_errorEEE) +STUB("9LxqL+tTZyg", mono_btls_ssl_get_version) +STUB("9LzZhiXxOL8", WKContextSetPrewarmsProcessesAutomatically) +STUB("9LzxE7TaNKk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE5clearEv) +STUB("9M-Fw+5nW6U", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_17ActivityFeedStoryEE7destroyEPS3_) +STUB( + "9M-xuCFofsg", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("9M46YTkP3Hs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEC1Ev) +STUB("9M7HkbwUs-E", sceCompositorCheckCrash) +STUB("9M7sUZQldSU", _ZNK3sce2Np9CppWebApi6Common6VectorIfE3endEv) +STUB("9MBu5R5rnV0", _ZN7WebCore9HTMLNames23onwebkitsourceendedAttrE) +STUB("9MJD0zGyRgA", sceFsInitMountGamePkgOpt) +STUB( + "9MKpcE42j7g", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEeqERKS9_) +STUB("9MRKKXsMKOc", + _ZN3sce2Np9CppWebApi14SessionManager2V117FromMemberFactory7destroyEPNS3_10FromMemberE) +STUB("9MROWxV0URM", + _ZN3sce7Toolkit2NP2V28Commerce23ServiceEntitlementLabel33SERVICE_ENTITLEMENT_LABEL_MAX_LENE) +STUB("9Mav6itWd5Y", __asan_loadN_noabort) +STUB( + "9MgUT6XTylU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEdeEv) +STUB("9Mv61HaMhfA", sceGnmRegisterGdsResource) +STUB("9N-1yVdTxlE", mono_thread_set_manage_callback) +STUB( + "9N3w6CJwbzk", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification18NewGameDataMessageEE12deepCopyFromERS8_) +STUB("9N9bmUv2yeY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V117InvitableUserTypeEEmmEi) +STUB("9NA-AqIW8lA", _ZSt9use_facetISt8numpunctIcEERKT_RKSt6locale) +STUB("9NCfuHNNcEQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEC1EPS6_) +STUB("9NExYJCCEZM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEptEv) +STUB( + "9NJ0ndWwR3U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEEdeEv) +STUB("9NSOljbtlxA", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V15GroupEEC2EPS6_) +STUB( + "9NTnov9LzBM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUserC2ERS5_) +STUB( + "9NUi+GnCldE", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129MatchCompletionRateProperties12setCompletedERKNS1_6Common12IntrusivePtrINS3_35MatchCompletionRateCompletedMetricsEEE) +STUB("9NaotfNJ0+0", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V110MmrFactory7destroyEPNS3_3MmrE) +STUB("9NbKoZNi0Jo", _ZN3WTF17GregorianDateTimeC1EdNS_15LocalTimeOffsetE) +STUB("9NdR8grnNI8", CloseZStream) +STUB( + "9NgN02RcDxY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEaSERS7_) +STUB("9NhzA0Ll22A", _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeIPcPvEE7addressERS6_) +STUB("9Nlag1nP2do", YGConfigSetUseWebDefaults) +STUB( + "9NoeyrSr1+Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE5clearEv) +STUB("9NrxNGZX24U", _ZN3JSC14iteratorMethodEPNS_14JSGlobalObjectEPNS_8JSObjectE) +STUB( + "9NstcErTXqY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE5beginEv) +STUB( + "9Nur74Ho6Sw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEC2EPS8_) +STUB( + "9NwAmiWPtow", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC2ERSA_) +STUB("9NwVTF2r-To", _ZN3sce7Toolkit2NP2V27Session7Request4JoinC1Ev) +STUB( + "9Nxdcpow-wI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE7popBackEv) +STUB( + "9O+f-jplL6E", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEneERKS9_) +STUB("9O1Xdko-wSo", exp2l) +STUB( + "9O2BrHdfaLo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "9O31pzg-OrQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEC2EPNS2_10LibContextE) +STUB( + "9O7RT-twyXA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEaSERKS9_) +STUB( + "9OD8QtQGOKg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEmmEi) +STUB( + "9OEaW3BN+Pg", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUserC2Ev) +STUB( + "9OGcMk7my4Y", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V120ErrorResponseFactory7destroyEPNS3_13ErrorResponseE) +STUB("9OJBjMn7SAI", _ZN7WebCore16JSXMLHttpRequest11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB( + "9OLoM5YQxfY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE21intrusive_ptr_sub_refEPSA_) +STUB("9OV-NYh2TAs", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V223FilterProfanityResponse10getMessageEv) +STUB( + "9OXzqmMrdq4", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectator10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_52PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEE) +STUB( + "9ObVaYNTRvE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEE11release_refEv) +STUB( + "9OfXSRiu58E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEC2EPS6_PNS2_10LibContextE) +STUB("9Oj3MIJ+Zjk", scePlayerSelectionDialogOpen) +STUB( + "9OnEOj4zQTI", + _ZNK3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody18maxSpectatorsIsSetEv) +STUB( + "9OoGDca4WW8", + _ZN3sce2Np9CppWebApi14SessionManager2V131ResponseGameSessionMemberPlayerC2EPNS1_6Common10LibContextE) +STUB( + "9OqVcuPYkRc", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_34DetailedProductInfoListInputParams9ProductIdEE10deallocateEPS4_m) +STUB( + "9OumR-T2J6E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEdeEv) +STUB( + "9Owj+z9YQEc", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB( + "9P+MNOYBjFY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEC2EPS9_) +STUB("9P141FOejPM", _ZN7WebCore8SVGNames16font_face_srcTagE) +STUB("9P1D1NwRok0", _ZNK7WebCore11HTMLElement10spellcheckEv) +STUB("9P2-lff1PBw", Java_com_sony_bdjstack_security_aacs_AACSOnline_isCacheable) +STUB("9P5nNrVmPtg", Java_com_sony_bdjstack_ti_Database_getStreams) +STUB( + "9P6j51wHaGQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE21intrusive_ptr_add_refEPS9_) +STUB("9P8qV9WtgKA", sceNpManagerPrxStopVsh) +STUB("9PCBPZcDU7Q", sceApplicationInitializeForShellCore) +STUB("9PJfPHVOrVs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEED1Ev) +STUB( + "9PJlMISE1kc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE8pushBackERKS8_) +STUB("9PNaecmeTbA", WKDataGetTypeID) +STUB("9PNhbIplSpU", X509_get_issuer_name) +STUB("9POEXdfKlMY", _ZNK7WebCore11MediaPlayer7visibleEv) +STUB("9POsLAUO1IA", unum_formatUFormattable_67) +STUB("9PTAJclcW50", SSL_recv) +STUB("9PTSYUj3K+0", mono_aot_Sce_Vsh_ShellCoreUtilWrapperunwind_info) +STUB("9PYoyhBTI3s", Java_java_net_PlainSocketImpl_socketClose0) +STUB("9PqrCLfKZZI", _ZN3sce4Json5Value4swapERS1_) +STUB( + "9PulNOzoybc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEixEm) +STUB("9PxZzPbFSAo", ShareTerminate) +STUB( + "9Q0-ws5KyZA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEppEi) +STUB("9Q6mXLvfp+U", monoeg_g_string_append) +STUB( + "9Q8+OX+sjzY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB("9QBr0EuWoHA", _ZN7WebCore11DisplayList15FillRoundedRectD0Ev) +STUB( + "9QChup-AGvc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEED1Ev) +STUB("9QLkVzWD0Z8", _ZN7WebCore27PlatformMediaSessionManager21sharedManagerIfExistsEv) +STUB("9QN7g5mQgCU", _ZN3sce2np13NpTitleSecretC2ERK16SceNpTitleSecret) +STUB("9QNb5TtkWhQ", sceAppInstUtilGetExternalPs5AllSize) +STUB("9QS8NAgqsH4", udtitvfmt_openResult_67) +STUB("9QSdWfiLaBo", ucol_getLocale_67) +STUB( + "9QXUdY0uii4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("9QZluZ4dNDY", _ZNK7WebCore4Page15visibilityStateEv) +STUB("9QaGCOo87eE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEED1Ev) +STUB("9Qb5wZZgZGY", mono_aot_Sce_PlayStation_Orbismethod_addresses) +STUB("9Qbi8rLzfpI", pss_io_icall_install_functions) +STUB( + "9QlEEWtdJBQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEEC2EPS6_PNS2_10LibContextE) +STUB( + "9QlrYML579E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEmmEv) +STUB( + "9QoXEHQrGDQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEE7get_refEv) +STUB("9QqW0QKTIAY", _ZN3sce2Np9CppWebApi13InGameCatalog2V53SkuD1Ev) +STUB("9R3WZBaXGIE", _ZN3sce2Np9CppWebApi7Matches2V116RequestMatchTeamC2EPNS1_6Common10LibContextE) +STUB("9R3pLiWvp9A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEED1Ev) +STUB("9RBhNGw7Pgs", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session7SessionEE3setEv) +STUB( + "9RDehA1DQX4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEC2EPNS2_10LibContextE) +STUB( + "9RE2Pm0hcXw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEE11release_refEv) +STUB( + "9RIh4KJZNKY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEneERKS9_) +STUB("9RKIMuF-lLs", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V19JoinStateEEC2EPS6_) +STUB("9RMSBpPZVdk", RSA_get0_key) +STUB("9RVIoocOVAo", sceAudioOutA3dExit) +STUB("9RY5wR3m+BA", _ZN7WebCore15HTMLBaseElement7setHrefERKN3WTF10AtomStringE) +STUB("9RYsSzqyNrM", _ZN9Inspector30TargetBackendDispatcherHandlerC2ERKS0_) +STUB( + "9RdPWOvNdEI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEC1EPKS8_) +STUB("9RgD4AUEARg", _ZN7WebCore8SVGNames8fillAttrE) +STUB( + "9Rk7MqKLk8I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE3endEv) +STUB("9Rm+AqJdpLQ", _ZN12video_parser13cVideoPathMnvC1EPKc) +STUB("9RnL-m0+diQ", scePthreadAttrGetsolosched) +STUB( + "9Rq7mQXOSL4", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData21hasxPsnNpServiceLabelEv) +STUB("9RruACE8cEU", _wapi_fileshare_layout) +STUB( + "9RsAON+VdXs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "9Rt5nCke1fI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEE21intrusive_ptr_sub_refEPS7_) +STUB( + "9RuPHUsa428", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEC2EPNS2_10LibContextE) +STUB("9Rvb-lG-IYI", WKMessageListenerSendReply) +STUB("9Rx0ZwXL4Qc", _ZN7WebCore6Editor23setBaseWritingDirectionE16WritingDirection) +STUB( + "9Rzbr5Hj8RE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEE7add_refEv) +STUB( + "9S1mAEvPjkI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE21intrusive_ptr_sub_refEPS9_) +STUB("9S4noWrUI0s", sceAgcDcbSetBaseDispatchIndirectArgsGetSize) +STUB( + "9S7uqgMoypE", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V126BandwidthDownstreamMetrics20getStandardDeviationEv) +STUB("9S960jA8tB0", _ZNSt10moneypunctIcLb1EEC1EPKcm) +STUB("9SFNBXWtYig", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10getString6Ev) +STUB( + "9SP-HoLD9JQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEptEv) +STUB("9SQVys0xk5U", _ZThn32_N7WebCore14DocumentLoaderD1Ev) +STUB("9SRRU8yTt04", sqlite3_user_data) +STUB("9SSHrlIamto", + _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewx) +STUB( + "9STxWNpdNdM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("9ScDVErRRgw", sceSystemServiceNavigateToAnotherApp) +STUB("9Sh0Kk7Xf4w", sceUltReaderWriterLockTryLockWrite) +STUB( + "9SkRa3ZrU90", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEaSERS7_) +STUB("9SpzEgRegWI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEED1Ev) +STUB( + "9Sq8+ojbxBw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("9Swkf6RqtPM", _ZN7WebCore9HTMLNames17onselectstartAttrE) +STUB("9T+7hxWg0t4", _ZN12video_parser13cVideoPathMgv17GetNewMaclistNameEPc) +STUB("9T2pDF2Ryqg", sceNetHtonl) +STUB( + "9T7ehUNmgSA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("9TB8RLYXg+g", eglDestroySurface) +STUB( + "9TE9P7XNesU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEE11release_refEv) +STUB( + "9TK1rI7ZAPE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEEaSERKSA_) +STUB("9TLZ1lFdCBI", mono_aot_SMDiagnosticsmethod_addresses) +STUB("9TVOJxDJIZM", _ZN7WebCore10Pasteboard4readERNS_20PasteboardFileReaderE) +STUB("9TZ1Khuxk60", + _ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRanking13isInitializedEv) +STUB("9TZSKC6khSI", mono_aot_System_Reactive_Linqmethod_addresses) +STUB("9TZg6EG5ncM", glReleaseShaderCompiler) +STUB("9Tb09M8E6yE", _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRankingD2Ev) +STUB( + "9TbQLIcT+00", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEC2EPS8_) +STUB("9TcvPh7XBa8", _ZN8meta_gen13JpegRetriever23IsExistDateTimeOriginalEv) +STUB( + "9TfGnN6xq-U", + _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8get_timeES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm) +STUB("9Thds+U5BYc", _ZN3sce7Toolkit2NP2V23TUS19FriendsDataStatusesC1Ev) +STUB("9Ti1y0pMb4k", rgctx_fetch_trampoline_rgctx_12_p) +STUB("9TkMHRkkdmQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE8pushBackERKS6_) +STUB("9TndABWg5Ds", res_getAlias) +STUB("9TrhuGzberQ", sceVoiceInit) +STUB("9Tsav0JhJko", _ZN3JSC23JSScriptFetchParameters6s_infoE) +STUB("9Ttseh+SADs", _ZN3JSC7Symbols21enqueueJobPrivateNameE) +STUB( + "9Tu9akEinpQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "9TuLca+PUl4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEEC2ERKSA_) +STUB( + "9Tx--A3tLYo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEC2EPNS2_10LibContextE) +STUB( + "9TyZXKMTyNM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEC2EPNS2_10LibContextE) +STUB( + "9TzF1ucznr4", + _ZN3sce7Toolkit2NP2V212NetworkUtils16getBandwidthInfoERKNS3_7Request16GetBandwidthInfoEPNS2_4Core8ResponseINS3_12BandwithInfoEEE) +STUB( + "9TzzoEW7f4A", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("9U0wW6vYnKI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEE7add_refEv) +STUB("9U1DoHp0Kcs", _ZN3WTF10StackTrace8demangleEPv) +STUB("9U6BUwk6388", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament6EventsEE3getEv) +STUB("9U7Jh-C5384", _ZN3JSC15TypeProfilerLog17processLogEntriesERNS_2VMERKN3WTF6StringE) +STUB("9U92i3XaiOI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V113ErrorResponse8fromJsonERKNS_4Json5ValueE) +STUB("9U9m1YH0ScQ", sceRudpProcessEvents) +STUB( + "9UDKIFifeJY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEC1EPS6_PNS2_10LibContextE) +STUB("9UDTFDWegew", delegate_virtual_invoke_imt_6_p) +STUB( + "9UEO2lJRWO4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEC1Ev) +STUB("9UGa6YysTHk", _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error9unsetPathEv) +STUB("9UH610uc47Y", _ZN3sce7Toolkit2NP2V212EventsClient9EventDataC2Ev) +STUB("9UK1vLZQft4", scePthreadMutexLock) +STUB("9UL6B+jDehY", + _ZN9Inspector22InspectorDebuggerAgent28setPauseOnDebuggerStatementsERN3WTF6StringEb) +STUB( + "9UPI2xL72uo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEEC2Ev) +STUB( + "9UQogcrgR58", + _ZN3sce2Np9CppWebApi7Matches2V120ResponseMatchResults20setCooperativeResultERKNS3_25ResponseCooperativeResultE) +STUB("9UVGP8KVB2U", sceHandDetectionGetWorkingMemorySize) +STUB( + "9UVcMxtg64E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEEC1ERKSA_) +STUB( + "9UXJdKNAmrY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEEdeEv) +STUB("9UXmjmN-xPE", il2cpp_set_memory_callbacks) +STUB("9Uew6b9Pp8U", _ZN3sce2np12NpHttpClientD2Ev) +STUB( + "9UhesxWkvag", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("9Umxsn0UtfI", mono_method_desc_full_match) +STUB( + "9Up57J-EhtA", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer39hasxPSNSESSIONMANAGERREQUESTEXACTORIGINEv) +STUB( + "9UvlKTIfT9Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEC1EPS8_) +STUB( + "9UyebErhLVg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("9V0j0gYaQBM", _ZNK7WebCore14CredentialBase8passwordEv) +STUB("9VDL1bE1nFM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEED1Ev) +STUB("9VDzY7m1NN8", sceShellCoreUtilCheckerAbort) +STUB("9VJUCJrxBJQ", sceKernelPrepareDirectMemorySwap) +STUB( + "9VRF2bL1GAs", + _ZN3sce2Np9CppWebApi11Matchmaking2V115LocationFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_8LocationEEE) +STUB("9VUHbsxs8e4", _ZN3sce7Toolkit2NP2V27Session10Invitation12MAX_LEN_DATEE) +STUB("9VVkuLiaGYM", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEEC2Ev) +STUB("9VcMaebz00w", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26RecordScoreResponseHeadersaSERS5_) +STUB("9VeY8wiqf8M", atan2l) +STUB("9VewapwEFzE", _ZN13MsvMetaEditor19getMetaDataUnitInfoEjttPNS_11MtdtBoxInfo12DataUnitInfoEPb) +STUB("9Vf5HAjr5Ek", sceCustomMusicCoreStopOperation) +STUB("9VgqXw48Zfk", Java_java_io_RandomAccessFile_writeBytes) +STUB("9VhFNFfyadA", _ZN3JSC7JSArray38isIteratorProtocolFastAndNonObservableEv) +STUB( + "9ViuL8f-bGU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE4sizeEv) +STUB("9VjSpYjnLBo", _ZNK3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead13platformIsSetEv) +STUB( + "9Vq2Qf8c--I", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayerD2Ev) +STUB("9Vqxt-qBPB4", sysinfo) +STUB("9VuLTCewmdM", uprv_decNumberMin_67) +STUB("9Vv+atzgA4M", _ZNK3sce2Np9CppWebApi13InGameCatalog2V55Error11sourceIsSetEv) +STUB("9Vw1T+nh1ug", _ZN7WebCore24CoordinatedGraphicsLayer20setContentsTilePhaseERKNS_9FloatSizeE) +STUB("9VwvENO63lo", _ZN8meta_gen14ImageRetriever10SetMetaValEif) +STUB("9Vyfb-I-9xw", _ZNKSt7codecvtIDsc9_MbstatetE16do_always_noconvEv) +STUB("9W+Os0b9DUg", mono_aot_Sce_PlayStation_Orbis_Speechunbox_trampoline_addresses) +STUB( + "9W+WA56Jtyw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEC2Ev) +STUB("9W19mAu8Bzc", sceMatFree) +STUB("9W4+-PzFayU", uloc_toLegacyKey_67) +STUB("9W40oT315tY", sceUserServiceGetVoiceAgentEnableWup) +STUB("9W6sEqfgXDY", JSScriptCreateReferencingImmortalASCIIText) +STUB( + "9W97-umznwA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("9WBY+bRpi74", YGNodeStyleSetAlignSelf) +STUB("9WFqVqWuSz4", fuse_loop_mt_proc) +STUB( + "9WGb5jgj-iY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE8copyFromERKS9_) +STUB( + "9WIXHFKg9-s", + _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse12setMatchTypeERKNS3_17ResponseMatchTypeE) +STUB("9WK-vhNXimw", sceKernelAioSetParam) +STUB("9WRHk1wQT08", sceSystemStateMgrRequestToKeepMainOnStandby) +STUB( + "9WSKZEhdVGE", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("9WSnQEt0mxM", _ZN3JSC22optimizeNextInvocationEPNS_14JSGlobalObjectEPNS_9CallFrameE) +STUB( + "9WSx20Q0sgE", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities9terminateEv) +STUB("9WeYC6-6tNE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEC2ERKS7_) +STUB("9Wf+LYudLno", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE5emptyEv) +STUB( + "9WlCI-P6Q6A", + _ZN7WebCore35positionOfNextBoundaryOfGranularityERKNS_15VisiblePositionENS_15TextGranularityENS_18SelectionDirectionE) +STUB("9Wp8GyqojTQ", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEEcvbEv) +STUB("9WpLq56+Y1M", _ZN3sce2Np9CppWebApi6Common8IteratorIdEC1Ev) +STUB("9WrqbnwH-M0", JVM_ConstantPoolGetClassAtIfLoaded) +STUB("9WsrPeppdMo", _ZN3sce7Toolkit2NP2V23TUS16FriendsVariablesD1Ev) +STUB( + "9WumJFHmlqc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEEC1ERSA_) +STUB("9WxYiFfOx1s", _ZN7WebCore9FrameView15setHeaderHeightEi) +STUB("9WzEBmwPCKg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence8PresenceEE5resetEv) +STUB( + "9X+7wnzshPc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEneERKS9_) +STUB("9X2d2k8hoCI", Java_com_sony_bdjstack_org_bluray_vfs_VFSManagerImpl_proxyGetDisabledClipIDs) +STUB("9X4SkENMS0M", sceGnmSqttGetStatus) +STUB("9X5yIYFahok", _ZN8meta_gen11MsvPromoter23retrieveSpecialDateInfoEv) +STUB( + "9X6gXVloEkU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEED1Ev) +STUB("9X9+cneTGUU", sceNpWebApi2DeleteUserContext) +STUB("9X9k1rTErfI", _ZNK3sce2Np9CppWebApi13InGameCatalog2V513ContentRating9getSystemEv) +STUB("9XAxK2PMwk8", sceErrorDialogTerminate) +STUB("9XKjme5gWpo", _ZTVN7WebCore12BlobRegistryE) +STUB("9XL3Tlgx6lc", _ZTSSt7codecvtIDsc9_MbstatetE) +STUB( + "9XNlDm9WcOI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEmmEi) +STUB("9XRswf+XVIk", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V115LastUpdatedUser12getAccountIdEv) +STUB("9XT0E2eroig", uhash_hashLong) +STUB("9XYJwCf3lEA", sceHttp2GetStatusCode) +STUB( + "9XZuNe29744", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEE5resetEPS6_) +STUB( + "9XdXcj8wPiA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEneERKS9_) +STUB("9XjupHhe3IA", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE6resizeEj) +STUB("9XouNrl+xF0", WKViewAccessibilityHitTest) +STUB( + "9Xr+cbOTJdE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEC2EPKS8_) +STUB("9Xr7y2JSEtc", Java_java_lang_System_identityHashCode) +STUB( + "9Xt-fXhFqzU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEEC1Ev) +STUB("9Xx7YdPMoFY", _ZN3WTF21MemoryPressureHandler33setShouldUsePeriodicMemoryMonitorEb) +STUB("9Xz6uhF2BbI", _ZN3JSC7Symbols41getStringIteratorInternalFieldPrivateNameE) +STUB("9Y5keOvb6ok", _sceUltQueueCreate) +STUB( + "9YMf55svY38", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEEptEv) +STUB("9YMojY3k+IE", _ZNK7WebCore23ScaleTransformOperation4dumpERN3WTF10TextStreamE) +STUB( + "9YOZHabeaE4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEEC2ERKSA_) +STUB("9YR+jtSTTZQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEC1Ev) +STUB("9YSpgMUyq5A", utext_setNativeIndex_67) +STUB("9YW4SbZQgRM", ucfpos_close_67) +STUB( + "9YWXkd3AZAk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi12downloadDataEiRKNS4_23ParameterToDownloadDataERNS1_6Common21DownStreamTransactionINS8_12IntrusivePtrINS4_27DownloadDataResponseHeadersEEEEE) +STUB("9YY6kfBKCV4", + _ZN9Inspector20InspectorTargetAgentC2ERNS_14FrontendRouterERNS_17BackendDispatcherE) +STUB("9YYC8ZNZ-AE", _ZN3JSC8Bindings13RuntimeObject16getConstructDataEPNS_6JSCellE) +STUB("9YYE46mjXFE", + _ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForRead12unsetPlayersEv) +STUB("9Yf-Pwira94", _ZN3JSC13ErrorInstance17sanitizedToStringEPNS_9ExecStateE) +STUB("9YhwG4DhwtU", sceNpAppLaunchLinkIntCreateRequest) +STUB("9YmBJ8KF9eI", sceNpPollEventFlag) +STUB("9YoTlneHoC0", _ZN3sce7Toolkit2NP2V212EventsClient17EventShareFactoryC2Ev) +STUB("9YpqWq7-K8U", + _ZNK3sce2Np9CppWebApi7Matches2V120RequestTeamStatistic25teamMemberStatisticsIsSetEv) +STUB( + "9YqghEc-uuE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEE5resetEPS9_) +STUB("9Yv7222knIM", sceEsvmEngineMediaKeySessionGetSessionId) +STUB( + "9Yx1om0o7DE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEE11get_deleterEv) +STUB("9Z-PeHV7oSg", sceDataTransferTargetAbortGetTitles) +STUB( + "9Z0P3MZ9WOQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEED2Ev) +STUB("9Z0gNNdVsQo", _ZN9Inspector14FrontendRouter18disconnectFrontendERNS_15FrontendChannelE) +STUB("9Z4QCM3w9VQ", uprv_isInvariantUString) +STUB("9Z7cGthAErc", il2cpp_profiler_install_allocation) +STUB( + "9Z7z5zaC0So", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEED2Ev) +STUB("9ZA23Ia46Po", sceAudio3dPortGetAttributesSupported) +STUB("9ZAbQPFO7Ss", sceRegMgrPrivateStorageCount) +STUB( + "9ZBtW0l-Uo0", + _ZN3sce2Np9CppWebApi7Matches2V120RequestTeamStatistic8setStatsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_19AdditionalStatisticEEEEE) +STUB( + "9ZK7VZOg2Hw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE6resizeEj) +STUB("9ZLnJu4nqSA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEEeqERKS7_) +STUB("9ZQJ5Qh2TXw", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_13TusDataOutputEEC2Ev) +STUB( + "9ZUEXXZPwhw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEC1EPS8_) +STUB( + "9ZZkIqt6tZ4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE5clearEv) +STUB("9ZcGqLGV-+c", u_toupper_67) +STUB("9Ze737zQ89E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEdeEv) +STUB("9ZiLXAGG5rg", sceNpCommerceDialogInitializeInternal) +STUB("9ZltRXsnhNY", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessionsaSERS5_) +STUB("9ZpBbdy7E1E", upvec_compactToUTrie2Handler_67) +STUB("9ZqL5WUiiXw", WKPreferencesSetInteractiveFormValidationEnabled) +STUB( + "9Zu5MbzfzhY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE5beginEv) +STUB( + "9ZvqxVfcpOM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEC1EPS6_PNS2_10LibContextE) +STUB("9ZxI8Yhazeo", _ZN3sce7Toolkit2NP2V212ActivityFeed14PlayedWithFeed5resetEv) +STUB("9a-8iiu4V3k", mono_aot_Sce_Vsh_DbRecoveryUtilityWrapperjit_got) +STUB("9a2C2wgAoXg", _ZN3JSC15IsoHeapCellType11finishSweepERNS_11MarkedBlock6HandleEPNS_8FreeListE) +STUB("9aCk9jZ00-w", sceSdmaConstantFill) +STUB("9aG1Y+TwE4k", _ZN7WebCore18TextureMapperLayer13setSolidColorERKNS_5ColorE) +STUB("9aGME3ZvhCY", _ZNK7WebCore19ResourceRequestBase9hasUploadEv) +STUB("9aItdVdBvJU", _ZN3sce2Np9CppWebApi14SessionManager2V118LeaderWithOnlineId11setPlatformEPKc) +STUB("9aLF8VCUYjI", u_fopen_u_67) +STUB( + "9aM5CHAbjdY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEC1EPNS2_10LibContextE) +STUB("9aNFpPJWKls", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetInteger6Ev) +STUB( + "9aNk4+ug+Tk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEppEv) +STUB("9aODPZAKOmA", err_set_exit) +STUB( + "9aPAf9D+5Pg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("9aQBNagjgcM", ucnv_safeClone) +STUB( + "9aTGalFt+U8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEED2Ev) +STUB("9aXkiczQmPI", _ZN3sce2Np9CppWebApi11Matchmaking2V19AttributeC1EPNS1_6Common10LibContextE) +STUB( + "9aYFwbusNac", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("9agpzpLikVw", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead14setSessionNameEPKc) +STUB("9aiQo-uRPJY", _ZN3sce2np3ipc17ServiceIpmiClient12BeginRequestEii) +STUB("9ao-QZCm5RI", _ZN3sce7Toolkit2NP2V28Commerce7Request21DisplayCheckoutDialogC1Ev) +STUB("9apGsfN-vLY", AacsSelectKey) +STUB( + "9arj5LEldVw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE5beginEv) +STUB("9at1IwpXFm8", uprv_decNumberMultiply_67) +STUB( + "9b-5iZGs0Fc", + _ZN7WebCore11CryptoKeyEC9importRawENS_25CryptoAlgorithmIdentifierERKN3WTF6StringEONS2_6VectorIhLm0ENS2_15CrashOnOverflowELm16ENS2_10FastMallocEEEbi) +STUB( + "9b-9UNUJZrA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEEC2ERS9_) +STUB("9b1Vl4heYfc", _ZN7WebCore16JSXMLHttpRequest9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("9b36v9Nah3s", _ZNK3sce2np9JsonValue9GetStringEv) +STUB( + "9b6qtOJzPkY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "9b7fQeORaq0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEaSERKS9_) +STUB("9b9BlMk6R4g", _ZN3sce7Toolkit2NP2V210Tournament7Request8GetEventC2Ev) +STUB( + "9bEZEiQzwAA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEdeEv) +STUB( + "9bEyClNTlJM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEC1EPKS9_) +STUB("9bHSd64WzB0", _ZNK7WebCore9FrameView13paintBehaviorEv) +STUB("9bJDrk2KoMg", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setBoolean6ERKb) +STUB("9bKYzKP6kYU", CA_MGMT_extractPublicKeyInfo) +STUB( + "9bPIjBhN9EQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEC2Ev) +STUB( + "9bPciSyKlvM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEED1Ev) +STUB("9bQ2DtomD18", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEED2Ev) +STUB("9bSDYmkp-Vw", JSValueToStringCopy) +STUB( + "9bU9XW-mbno", + _ZZSt9MakefacetISt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEESt8_LocinfoERT_T0_E3buf) +STUB("9bbMhTfv3nY", WKHitTestResultCopyLookupText) +STUB( + "9bcGdz9MtfM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEC2Ev) +STUB("9bfdLIyuwCY", sceKernelMtypeprotect) +STUB("9biiDDejX3Q", _ZNSt13basic_filebufIcSt11char_traitsIcEE5_LockEv) +STUB("9bnaeOBBD1Q", sceCompositorFlushWithRepeat) +STUB("9bpjp8T0nRg", sceAudioOut2LoPortDestroy) +STUB( + "9bu238dw8jA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "9c9y1KjOQrw", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "9cDhsWnLzQA", + _ZN7WebCore21ComplexTextController14ComplexTextRunC2ERKN3WTF6VectorINS_9FloatSizeELm0ENS2_15CrashOnOverflowELm16EEERKNS3_INS_10FloatPointELm0ES5_Lm16EEERKNS3_ItLm0ES5_Lm16EEERKNS3_IjLm0ES5_Lm16EEES4_RKNS_4FontEPKDsjjjjb) +STUB("9cFgcwjP8fw", _ZN7WebCore19UserContentProviderD2Ev) +STUB("9cJ2S8f4Mj4", _ZNK3sce2np18HttpConnectionPool6IsInitEv) +STUB("9cLS8Nr+r7M", _ZN7WebCore9URLParserC1ERKN3WTF6StringERKNS_3URLERKNS_12TextEncodingE) +STUB("9cOpdpQjro8", __ubsan_handle_function_type_mismatch_abort) +STUB( + "9cTBpDzF6B0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEC1EPS8_) +STUB( + "9cVz4hL7-1s", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEeqERKS9_) +STUB( + "9cXNMcRGN8A", + _ZN9Inspector21InspectorConsoleAgent5countEPN3JSC9ExecStateEON3WTF3RefINS_15ScriptArgumentsENS4_13DumbPtrTraitsIS6_EEEE) +STUB("9cb+WUxOzVg", jio_vsnprintf) +STUB( + "9cbroM3jIys", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE3endEv) +STUB( + "9ccwIx0wkHs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE3endEv) +STUB( + "9clEEzfRLXU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("9coQ7gTfwhA", sceShellCoreUtilGetRegion) +STUB("9cpxUNV97mM", curl_multi_perform) +STUB( + "9cuODeYf6n8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEC1EPKS8_) +STUB( + "9cvRd6oYyQw", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeaders17unsetCacheControlEv) +STUB("9cwzuFnbszA", _ZN7WebCore26Matrix3DTransformOperationD1Ev) +STUB("9d+3tTazqAI", mono_aot_Sce_Vsh_Stickerjit_code_start) +STUB("9d0PDAM9g1Q", scePerfTracePmEnable) +STUB( + "9d72Wyut5VA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEEdeEv) +STUB( + "9d8WmB9eh18", + _ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionMemberPlayer16setNonPsnPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_33ResponsePlayerSessionNonPsnPlayerEEEEE) +STUB("9dDxpPozlvI", _ZN3sce2Np9CppWebApi6Common6VectorIiE6insertENS2_13ConstIteratorIiEERKiRS6_) +STUB("9dFvRCRI8tg", _ZN7WebCore11JSDOMMatrix15subspaceForImplERN3JSC2VME) +STUB( + "9dHS89MrNjw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEEC1ERSA_) +STUB("9dKW3mdWo-0", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_11TusVariableENS2_IS4_EEEE8allocateEmPKv) +STUB("9dKg1Iu9IQk", mono_thread_create) +STUB("9dLv0t-u1mk", _ZN3sce7Toolkit2NP2V27Ranking8TempRank10FIRST_RANKE) +STUB( + "9dM+yx2nLTg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("9dOBfs078pg", _ZN3WTF10StringImpl8endsWithERS0_) +STUB( + "9dODJGnq8dE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE7reserveEi) +STUB("9dP5ka2bKIY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEC2ERKS7_) +STUB( + "9dRg+ERq5hI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE4sizeEv) +STUB( + "9dTy3DvXF7Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEE5resetEPS6_) +STUB( + "9dXaK201po0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEaSERS7_) +STUB("9daYeu+0Y-A", __divdi3) +STUB("9ddRUOV8Q5A", sceDeviceServiceGetEventState) +STUB( + "9djO7trdVOM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEE7add_refEv) +STUB("9dmPhlu7td4", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEED2Ev) +STUB( + "9du9HrDwS6c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE7popBackEv) +STUB("9duJwhiYGCE", T_CString_toLowerCase) +STUB("9dulQPS5uJg", _ZN7WebCore12TextIteratorC2ERKNS_11SimpleRangeEt) +STUB("9dvVBukqOsw", sceShellCoreUtilStopPsNowGame) +STUB("9dwA+t5a9BU", WKWebsiteDataStoreSetClientCertificate) +STUB( + "9dxtjuaEoHc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEED1Ev) +STUB("9e+P2QF+5wc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEEaSERS5_) +STUB( + "9e+QnV2e-mQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE8capacityEv) +STUB( + "9e0m3WEBRag", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEED2Ev) +STUB( + "9e1nWpOT4lg", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB("9e56uLgk5y0", scePadIsMoveReproductionModel) +STUB("9e61iN5WLxg", _ZN7WebCore15VisiblePositionC1ERKNS_8PositionENS_9EAffinityE) +STUB("9eEmovxM7pg", __DTOR_LIST__) +STUB( + "9eIaFYhJ+Rs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEE11release_refEv) +STUB("9eMlfusH4sU", flock) +STUB("9eNVHEwRadA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEmmEi) +STUB("9eP06So7cfY", sceVideoCoreAcquireDecoderResource) +STUB("9eTG+-xGe+g", _ZN7WebCore19ResourceRequestBase23setFirstPartyForCookiesERKNS_3URLE) +STUB( + "9eXrJ1iB92Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "9eZQWPZmx88", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEED2Ev) +STUB( + "9eeRNhGVkxo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE5beginEv) +STUB("9eic4AmjGVI", sceNgs2VoiceQueryInfo) +STUB("9ej2hBD+fc0", WKPreferencesGetSelectionPaintingWithoutSelectionGapsEnabled) +STUB( + "9ekJZ0oas7k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEED2Ev) +STUB( + "9euZEpiR6ek", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEED1Ev) +STUB("9exeDpk7JU8", sceHmdInternalGetIPD) +STUB( + "9eywfTNJkrk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE3endEv) +STUB("9ez71nWSvD0", scePadDisconnectPort) +STUB("9ezXGfGJLuU", _ZN7WebCore12ChromeClient23enableSuddenTerminationEv) +STUB("9f-LMAJYGCY", _ZNSt12placeholders2_8E) +STUB("9f20fWoMvS0", + _ZN15AbstractStorage14FacebookFolderC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) +STUB("9f6kIC+gbnk", _ZN3JSC19HeapSnapshotBuilderD2Ev) +STUB( + "9f9v5fBXfQc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEEaSERKSA_) +STUB("9fAPih-AeJo", sceDebugGetVirtualMemoryDetailInfoForCoredump) +STUB("9fK1V0QGyL4", sceNpManagerIntCheckTitleSystemUpdate) +STUB( + "9fQessF2qkI", + _ZN3JSC16InternalFunction40createFunctionThatMasqueradesAsUndefinedERNS_2VMEPNS_14JSGlobalObjectEiRKN3WTF6StringENS_14NativeFunctionE) +STUB("9fZXlGExTyM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEE3getEv) +STUB("9faEv99wVjc", scePlayReadyCdmiGetMediaKeyStatus) +STUB("9flMWhIFSeM", _ZN7WebCore8SVGNames7durAttrE) +STUB("9fmN+7oFbuI", + _ZThn16_N9Inspector28InspectorScriptProfilerAgent13startTrackingERN3WTF6StringEPKb) +STUB("9fs1btfLoUs", scalbnf) +STUB("9fvHMUbsom4", sceVrTrackerUpdateMotionSensorData) +STUB( + "9fzeAy0Njsw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE10setContextEPNS2_10LibContextE) +STUB( + "9g3TvskQxwE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEEptEv) +STUB( + "9g3wBqdQ7S0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEC2EPS7_PNS2_10LibContextE) +STUB( + "9g5B36NpVrw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEC2Ev) +STUB("9g5RodpM50c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE5beginEv) +STUB( + "9g9RpFK6f04", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE5emptyEv) +STUB( + "9gIqDexP0sg", + _ZN7WebCore11ImageBufferC1ERKNS_9FloatSizeEfNS_10ColorSpaceENS_13RenderingModeEPKNS_10HostWindowERb) +STUB("9gO6YSPJvLU", _ZTVN7WebCore23CoordinatedBackingStoreE) +STUB( + "9gRowJ6oius", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEixEm) +STUB("9gXDUNzVOiM", _ZN3JSC6JSCell16getConstructDataEPS0_) +STUB("9gXsfyz0f5w", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEdeEv) +STUB("9gda3JloLFE", WKWebsiteDataStoreDumpResourceLoadStatistics) +STUB( + "9gf37qvIiuU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEC1Ev) +STUB("9gfFGr6B1Fc", NpWebReadData) +STUB( + "9gg5h1rQi20", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE21intrusive_ptr_add_refEPS9_) +STUB("9ggT5xtuRzk", ucal_getTZDataVersion_67) +STUB("9giznW5Belc", _ZNK3JSC11ArrayBuffer5sliceEd) +STUB("9gjYS0WRXz0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE3endEv) +STUB("9gwCE5fggiM", sceClPthreadMutexattrSettype) +STUB( + "9gynMJpYqlE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEixEm) +STUB( + "9h0u-yAwwKc", + _ZN3JSC19JSNativeStdFunction6createERNS_2VMEPNS_14JSGlobalObjectEiRKN3WTF6StringEOSt8functionIFlPNS_9ExecStateEEENS_9IntrinsicENS_14NativeFunctionE) +STUB("9h3QG13-rQQ", glSamplerParameteriv) +STUB("9h9igbnLK8s", _ZN3sce7Toolkit2NP2V27Ranking7Request8SetScoreD2Ev) +STUB("9hB8AwIqQfs", _ZNKSt14error_category10equivalentERKSt10error_codei) +STUB("9hFk1C73Ukc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEE7get_refEv) +STUB("9hGAeMY88-Y", _ZN7WebCore12ChromeClient23isPlayingMediaDidChangeEjm) +STUB( + "9hL9j3FyNeM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEEC2ERKSA_) +STUB("9hM1-tzVZtU", JVM_IsThreadAlive) +STUB( + "9hP5fZIOpIk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEptEv) +STUB("9hSchU+U-8w", _ZNK7WebCore22HTMLFormControlElement10formMethodEv) +STUB( + "9hXvsPHx0e0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEEC2ERSA_) +STUB("9hbsNzeiMVA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEmmEi) +STUB("9hg98wew990", _ZTVN4IPMI4impl10ServerImplE) +STUB("9hjcEW15Tyw", _ZN3WTF24AutomaticThreadCondition9notifyOneERKNS_14AbstractLockerE) +STUB("9hkT1aMC0Rs", ubrk_preceding) +STUB("9hkwSazcTHE", + _ZN8meta_gen11MsvPromoter22setKeyValue_TBLI_WidthENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti) +STUB( + "9hlyrfccop8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "9huohs3TAxU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "9hyq-EJUn8I", + _ZN3JSC9Structure25attributeChangeTransitionERNS_2VMEPS0_NS_12PropertyNameEjPNS_41DeferredStructureTransitionWatchpointFireE) +STUB("9i+R1rj6Trk", sceShellCoreUtilGetSuspendConfirmationDialogFlag) +STUB("9i1IUCQIlRM", delegate_virtual_invoke_imt_m_14) +STUB("9i3FkuGagRA", ucal_getTimeZoneIDForWindowsID_67) +STUB("9i9SZMANEgM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V120PlayerJoinableStatusEEC2EPS6_) +STUB("9iAZcHT7FBg", _ZN7WebCore18CustomHeaderFieldsC2ERKS0_) +STUB( + "9iBx9rerED4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEC1EPS6_PNS2_10LibContextE) +STUB("9iCP-hTL5z8", _WStoull) +STUB("9iDiDwbvShI", utrans_clone_67) +STUB( + "9iGOvuVZff4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEE7get_refEv) +STUB("9iGYtO7nweM", WKDictionaryGetSize) +STUB( + "9iHpsFZ+PVw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEdeEv) +STUB( + "9iMSMugM5zI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEEC2Ev) +STUB( + "9iO3rPkoyQY", + _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody19setTicketAttributesERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_9AttributeEEEEE) +STUB("9iRbHCtcx-o", sceFontGraphicsSetupClipping) +STUB("9iReaS7k8RA", _ZN6WebKit17ChildProcessProxyD0Ev) +STUB( + "9iSJPgI+hoY", + _ZN7WebCore9FrameView27computeLayoutViewportOriginERKNS_10LayoutRectERKNS_11LayoutPointES6_S3_NS_30ScrollBehaviorForFixedElementsE) +STUB( + "9iUWFxqk6Gg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB( + "9iUpShA7680", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("9iXt34+oIKI", _ZN7WebCore8Document28setNeedsDOMWindowResizeEventEv) +STUB("9iXtwvGVFRI", _ZNSt8numpunctIcE2idE) +STUB("9iaVc1IWrKM", _ZN3sce2Np9CppWebApi6Common6VectorImEC2EPNS2_10LibContextE) +STUB("9ibZzkBkQyY", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersD1Ev) +STUB("9iclt66Ip38", _ZN7WebCore8SVGNames9widthAttrE) +STUB( + "9ikCRIaN3AU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE8capacityEv) +STUB("9ikEdF-YHFo", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead17joinDisabledIsSetEv) +STUB("9iozwfofZVw", rgctx_fetch_trampoline_rgctx_23_p) +STUB( + "9itUrZFDocA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("9ixZbA-P1mE", ucnv_getMinCharSize_67) +STUB( + "9izAoH16gXk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB("9j+LSHhp4h0", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEED1Ev) +STUB("9j+Pah7d6mg", _ZN9Inspector18InjectedScriptBaseC1ERKN3WTF6StringE) +STUB("9j-ZhhsSTMc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEE7get_refEv) +STUB("9j0AkeNr+qk", _ZN4IPMI6ClientD0Ev) +STUB("9j3jntJ9Nfw", WKBundleFrameCopyMIMETypeForResourceWithURL) +STUB("9j5a8ogFOE8", _ZN4IPMI4impl10ServerImpl17allocateSessionIdEv) +STUB( + "9j6AQ2zpBw4", + _ZN7WebCore24CoordinatedGraphicsLayer13addChildBelowEON3WTF3RefINS_13GraphicsLayerENS1_13DumbPtrTraitsIS3_EEEEPS3_) +STUB("9jFUM0UppvE", _Ux86_64_flush_cache) +STUB("9jII5bWqm40", _ZN7WebCore12GCController17garbageCollectNowEv) +STUB("9jIJ3E53A8c", _ZN3sce7Toolkit2NP2V24Core7Request11MemoryPoolsD1Ev) +STUB("9jJTRrWCWK0", vfork) +STUB( + "9jQNQW9nJGg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEEC1Ev) +STUB( + "9jRalYIyZzA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEE7get_refEv) +STUB("9jSuWQLNQ9M", uprv_convertToPosix) +STUB("9jTFtoUTO3I", + _ZN12video_parser5vpcom16_GetHandleStatusEPNS_8_vp_fileEPNS0_23VP_FILE_RESOURCE_STATUSE) +STUB("9jTIFmDJs4Q", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle6toJsonERNS_4Json5ValueEb) +STUB("9jWgF2OFg0A", _ZN8meta_gen11MsvPromoter30retrieveMultiLangThumbnailInfoEPKc) +STUB( + "9jcZw4wIf6I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEixEm) +STUB("9jgehwZ016k", il2cpp_method_get_param) +STUB( + "9js8Z+YRP78", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("9jsfeGcl2aY", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V13Mmr6toJsonERNS_4Json5ValueEb) +STUB( + "9juroVAcXRU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEptEv) +STUB( + "9jxCqOm6egg", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToSendPlayerSessionMessage12setsessionIdEPKc) +STUB("9jxDlmIzQj8", __sanitizer_free_hook) +STUB("9k1BjbRa6Gs", _ZThn24_N9Inspector22InspectorDebuggerAgent8stepIntoERN3WTF6StringE) +STUB("9k3ruqaVcSM", mono_aot_Sce_Vsh_Passcodemethod_addresses) +STUB("9kASvUOHrXs", GCC_except_table3) +STUB( + "9kDWGLmHwLY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEC2EPS6_PNS2_10LibContextE) +STUB( + "9kDaVWrJnkk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEcvbEv) +STUB("9kGnP+jnLiI", _ZN7WebCore12DOMException11descriptionENS_13ExceptionCodeE) +STUB("9kNIG6jfHRM", uprv_maximumPtr_67) +STUB("9kOFELic7Pk", fwprintf_s) +STUB("9kPCz7Or+1Y", sceSystemServiceReenableMusicPlayer) +STUB("9kQAFHxHWo4", Java_com_sony_bdjstack_javax_media_controls_VideoSystem_getScreenAspectRatio) +STUB("9kSWQ8RGtVw", _Atomic_fetch_add_2) +STUB("9kTbF59TjLs", sceFontGlyphRefersMetricsHorizontal) +STUB("9kZc-37F7es", sceVorbisDecGetDecodePriority) +STUB( + "9kdYkh-OoP4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEED2Ev) +STUB("9keSd9gxiWg", _ZN12Mp4Retriever14processMetaBoxEv) +STUB( + "9kfwopmgbl4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEC2EPKS8_) +STUB("9khd40gnX3s", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession18maxSpectatorsIsSetEv) +STUB( + "9khel5Vjd2w", + _ZN9Inspector21PageBackendDispatcher8navigateElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "9kinEDjMmQ4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEC2Ev) +STUB( + "9kjSfQ9zMdE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEppEv) +STUB("9kkkQp8Xz1Y", sceAudioOut2LoInit) +STUB("9km02mPqPJE", FT_Outline_Render) +STUB("9ks8OZX2tYs", sceGameRightGetString) +STUB( + "9kvg2YKTxPw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEptEv) +STUB("9l1Xqm+d8K8", _ZN3sce7Toolkit2NP2V212EventsClient9EventDataD1Ev) +STUB("9l2uOATqogs", sceGnmSysGetClientNumber) +STUB("9l7AK7-JFzw", WKMessageListenerGetTypeID) +STUB("9lAHLyUVQhE", _ZN3sce7Toolkit2NP2V210Tournament24OfficialBroadCastDetails5resetEv) +STUB( + "9lI2hrGpisE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE3endEv) +STUB("9lKvUIZkntU", res_getPublicType_67) +STUB("9lLmMrDj590", uloc_getScript) +STUB( + "9lRuwESw0v4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB("9lS3Odgn90U", _ZN3sce2Np9CppWebApi7Matches2V15Error9setSourceEPKc) +STUB( + "9lSbICUVJsk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEE11get_deleterEv) +STUB("9lSi1Sx+rNU", mono_get_thread_class) +STUB("9lT7kN9Rnag", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13boolean3IsSetEv) +STUB( + "9lalT0wpCw4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEEC2ERSA_) +STUB( + "9lfIaClBKHQ", + _ZThn24_N7WebCore14DocumentLoader35enqueueSecurityPolicyViolationEventEONS_28SecurityPolicyViolationEvent4InitE) +STUB( + "9lhqMTcAXjA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEEdeEv) +STUB("9llzqKWsNMI", _UIx86_64__mempool_init) +STUB("9lmtK4D4Vp0", rgctx_fetch_trampoline_rgctx_18_p) +STUB("9loQX1sfAyo", _ZN7WebCore27ContentSecurityPolicyClientD2Ev) +STUB("9ltF1xBh8u0", WKPreferencesSetJavaEnabledForLocalFiles) +STUB( + "9ltqATuaGoo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEC2EPS6_PNS2_10LibContextE) +STUB( + "9luWSzZzdMk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEC1EPS8_) +STUB("9lvj5DjHZiA", sceKernelPollEventFlag) +STUB("9lz4fkS+eEk", sceNpManagerIntGetAccountType) +STUB("9m+rQFPwOPI", _ZN3JSC11VMInspector18dumpSubspaceHashesEPNS_2VME) +STUB("9m-AZF+kAyU", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEED2Ev) +STUB("9m6mmioPTOo", sceMatSetUserCallstackCapture) +STUB("9m8EcOGzcIQ", sceHttpGetAuthEnabled) +STUB( + "9mBgCvN6ET0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("9mCeP4wtXho", _ZN3sce2Np9CppWebApi7Matches2V123ResponseMatchStatistics19unsetTeamStatisticsEv) +STUB( + "9mDFan8EzBY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEC1ERS7_) +STUB( + "9mE7YWcymkU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "9mI1KYg01nQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEC2ERKS7_) +STUB("9mI9zDF5KPk", sceVideoOutSysRemovePrivilege) +STUB("9mIcUExH34w", sceNetGetStatisticsInfoInternal) +STUB("9mKJuQ1tqXg", _ZN4Manx8X509nameD1Ev) +STUB("9mKjVppFsL0", __longjmp) +STUB("9mMuuhXMwqQ", sceLibcPafMspaceFree) +STUB("9mP+epi+9zU", _ZN3JSC13WatchpointSetD1Ev) +STUB("9mYII9rF7lI", _ZN3NTF15DNSPrefetchImplC1Ev) +STUB( + "9mYZFH9uDCA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEEC1ERSB_) +STUB("9mZEgoiEq6Y", sceNpScoreGetRankingByNpId) +STUB("9majkc5-mso", _ZN9Inspector21InspectorConsoleAgentD2Ev) +STUB( + "9mb2J5lb7iM", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38setPlayerSessionMemberSystemPropertiesEiRKNS4_49ParameterToSetPlayerSessionMemberSystemPropertiesERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB( + "9moHH2IqiHA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("9msLSBEGafY", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBodyD2Ev) +STUB( + "9mvaRKq8QzU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEE5resetEPS9_) +STUB("9mz0oIY43Z8", _ZN8Gigacage16freeVirtualPagesENS_4KindEPvm) +STUB("9n-7isCBMlw", + _ZN3sce2Np9CppWebApi7Matches2V123ResponsePlayerStatisticC1EPNS1_6Common10LibContextE) +STUB( + "9n0+lxYsCD8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE8capacityEv) +STUB( + "9n2QUJ0LTVs", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "9n4hSgs6+3s", + _ZN9Inspector25DebuggerBackendDispatcher7stepOutElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "9n53iXu9eJU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEmmEi) +STUB("9n60S+t4Cxs", _ZN3sce2np9NpTitleIdC2ERK12SceNpTitleId) +STUB("9n8lgwPKRLY", mono_aot_System_Resources_ResourceManagerjit_code_end) +STUB( + "9nHgElhZp1g", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE5emptyEv) +STUB("9nHoP9FDPfo", JVM_ClassLoaderDepth) +STUB("9nIhaALWeGo", _ZN23sceMetadataReaderWriter11gvMp4Parser21gvMp4ParserInitializeEv) +STUB("9nLbWmRDpa8", sceAcm_ConvReverb_SharedIr) +STUB("9nOKATsmoqg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEEaSERS7_) +STUB("9nPEBzwvxwE", _ZN3sce7Toolkit2NP2V28Matching5WorldC2Ev) +STUB("9nTsENYMulM", sceM4aacEncTerminate) +STUB("9nXCUbHMnOE", u_strFindFirst_67) +STUB( + "9napqk1y6+Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEEC2ERKS9_) +STUB("9nbOHk50ckc", uset_setSerializedToOne_67) +STUB( + "9ncOLGylUEA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEcvbEv) +STUB("9nf8joUTSaQ", _Unlocksyslock) +STUB( + "9ni7xEvZAxs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEED1Ev) +STUB("9niNrXsF3Bc", _ZN3sce4Json5Array8iteratorD2Ev) +STUB("9nlSnRqmujY", mono_aot_System_Collectionsunwind_info) +STUB( + "9nrCUl1pl54", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEptEv) +STUB( + "9ntJ3Z79Uz0", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "9ntNY29zxQs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE5clearEv) +STUB("9ntvzn8AhaI", GCC_except_table80) +STUB( + "9nxJ0euHjcA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEEaSERKSA_) +STUB("9nxVSw0+aRc", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_11TusVariableENS2_IS4_EEEE10deallocateEPS6_m) +STUB("9nyDRil1cus", mono_log_close_syslog) +STUB("9nyr-WeKzRY", ztrans_adoptTo_67) +STUB("9nz1W9shXQA", MD4_Final) +STUB( + "9o+V5Terwg8", + _ZN3sce2Np9CppWebApi14SessionManager2V128PostGameSessionsResponseBody15setGameSessionsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_11GameSessionEEEEE) +STUB( + "9o1bIcmH++A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEppEi) +STUB("9o4inFK-oWc", sceNpAsmClientSetNpTitleId) +STUB("9o4lPDNBpLI", _ZN7Nicosia14PaintingEngine6createEv) +STUB("9o7TZr3vezM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEE7add_refEv) +STUB( + "9o9-LkExdSc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEEaSERSA_) +STUB("9oCCIMp7zLo", sceFiosFileTruncate) +STUB("9oGk-O2In3Y", atanlo) +STUB( + "9oJA70dGh3w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEC2Ev) +STUB("9oK0+VrU0VI", ucnv_getNonSurrogateUnicodeSet_67) +STUB( + "9oLpUrxO0BM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEptEv) +STUB( + "9oLruMfoas8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEED1Ev) +STUB("9oW4DYuIjaA", thread_exit_data) +STUB("9ohwTl0Bcnk", _ZN9Inspector25DebuggerBackendDispatcherD2Ev) +STUB("9oiOWQ5FMws", sceNetConfigWlanDiagSetAntenna) +STUB("9oiX1kyeedA", bzero) +STUB("9opd1ucwDqI", _ZTIPx) +STUB("9oqk83i-twU", + _ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors10setMessageEPKc) +STUB("9os1IsUvdHQ", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEEC2ERKS6_) +STUB("9ozXeR1-w4c", SpeechInitialize) +STUB( + "9p16KzQjIf4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEEdeEv) +STUB("9pAkUXtTjjg", _ZN3WTF10makePoisonEv) +STUB( + "9pBmNjl2t8o", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData24setxPsnAtomicOperationIdEPKc) +STUB("9pCWkKhz2Eo", + _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOffer28hasxPsnAcceptPlatformNamePs5Ev) +STUB("9pKnLuhiDL4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE21intrusive_ptr_add_refEPS7_) +STUB("9pLoHoPMxeg", sceNpClearEventFlag) +STUB( + "9pN9iYp0nk4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEppEv) +STUB( + "9pOKdfbj-cM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEptEv) +STUB("9pOesIjMaSk", sceBgftServiceDownloadStopTaskAll) +STUB("9pPbNXw5N9E", _ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1EPKcm) +STUB( + "9pTTSQSEVOU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEEC2ERKSC_) +STUB("9pVA5pNkGHs", play) +STUB("9pbQZlVJLEA", g_file_get_contents) +STUB("9pbTND42x74", sceDepthHeadCandidateTrackerSetValidationInformation) +STUB("9pbrgoNoY4s", + _ZN3sce2Np9CppWebApi7Matches2V122RequestPlayerStatisticC2EPNS1_6Common10LibContextE) +STUB("9pcai2KJAjk", _ZN3JSC10JSCellLock8lockSlowEv) +STUB("9pdLjBERB7s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEE7add_refEv) +STUB( + "9pfVGFrKay8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB( + "9pgKRMkqd3w", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB( + "9pj40npxRRM", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectator9terminateEv) +STUB( + "9pjRNxMGeFo", + _ZN9Inspector32DatabaseBackendDispatcherHandler18ExecuteSQLCallbackC1EON3WTF3RefINS_17BackendDispatcherENS2_13DumbPtrTraitsIS4_EEEEi) +STUB("9plZCCRm9x4", sceShellCoreUtilEnterPowerLockSection) +STUB( + "9plhn6EJ0as", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("9pp9-dwqIHM", _ZN3sce2npneERKNS0_9NpTitleIdES3_) +STUB("9puMU9uZHn4", monoeg_g_queue_pop_head) +STUB("9pwuIEk7Rqo", ucal_clear_67) +STUB("9pyartiGi-o", sceBgftServiceDownloadStartTask) +STUB("9q+h2q5YprU", _ZN3sce2np9LocalFile5CloseEv) +STUB( + "9q3Xp4OXmhI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "9q5EUiAOxkY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEEC2EPS6_PNS2_10LibContextE) +STUB( + "9q5c19kl2ig", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB( + "9q8UaHHZw6c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEC1EPS8_) +STUB("9qACCyOUAx8", png_write_rows) +STUB("9qAPLsjRPg4", + _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_10TimeRangesE) +STUB("9qCog5WvW9A", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE3endEv) +STUB( + "9qGaMH6K8jU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEppEi) +STUB("9qGjeGStPzE", _ZN3sce2Np9CppWebApi14SessionManager2V132RequestPlayerSessionMemberPlayerD2Ev) +STUB("9qHWPIJTFJg", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_6NpUserEEC1Ev) +STUB("9qI0dw2DSpQ", _ZN7WebCore9FrameView18updateControlTintsEv) +STUB("9qSCLJUxrgE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116InitialJoinStateEEaSERKS7_) +STUB( + "9qXODlj+xCs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEEaSERKSA_) +STUB("9qZNdB+2Bc0", uprv_ebcdictolower) +STUB("9qdtVVdPT-0", sceRazorCpuUserSignalPost) +STUB( + "9qeMVgbwEQI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEEC1ERSB_) +STUB( + "9qlNw1MMRjs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEEaSERKSA_) +STUB("9qmEvk3fUyA", _ZN3JSC7Symbols25toLocaleStringPrivateNameE) +STUB("9qmxcoe8Y4A", _ZN7WebCore30InvertLightnessFilterOperationD1Ev) +STUB("9qpBjpMYpnw", sceHandDetection) +STUB( + "9qqgKG5sN8E", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEED1Ev) +STUB( + "9qrhgYvSIpw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEptEv) +STUB( + "9qs16ksEZgA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "9quMJh+rquU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEEC2ERS9_) +STUB("9qxUiFlS1A4", + _ZNK3WTF17double_conversion23DoubleToStringConverter13ToExponentialEdiPNS0_13StringBuilderE) +STUB("9r0ux2+Uqlc", + _ZN9Inspector17BackendDispatcher10getBooleanEPN3WTF8JSONImpl6ObjectERKNS1_6StringEPb) +STUB("9r1JIq53T+c", _ZNK3JSC7JSValue9toIntegerEPNS_9ExecStateE) +STUB( + "9r2b1HVuSSY", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectatorC2Ev) +STUB("9r3yjlD6YOc", _ZN3sce2np14JsonNumberImpl3SetEPKc) +STUB("9r7PpojYy68", _ZN7WebCore12UserActivityC1EPKc) +STUB("9r7dM3puxMk", sceNpSessionSignalingActivateUser) +STUB("9r9Ky2+ODXc", mono_string_from_utf32) +STUB("9rAeANT2tyE", __cxa_guard_release) +STUB( + "9rGzyu0ZL0w", + _ZN7WebCore35serializePreservingVisualAppearanceERKNS_11SimpleRangeEPN3WTF6VectorIPNS_4NodeELm0ENS3_15CrashOnOverflowELm16ENS3_10FastMallocEEENS_22AnnotateForInterchangeENS_22ConvertBlocksToInlinesENS_11ResolveURLsE) +STUB("9rH9n8530IU", glBufferSubData) +STUB("9rLdwFjvPv0", delCommInfoListBySock) +STUB("9rLooB4jRvY", sceVideoStreamingEngineMediaKeySessionGenerateRequest) +STUB("9rMML086SEE", _ZNSt6locale5_InitEv) +STUB("9rMbG0YsekE", _ZN3sce7Toolkit2NP15AppSTLAllocatorI13SceNpOnlineIdED1Ev) +STUB("9rU9t0IVmC8", _ZN7WebCore18HTMLMarqueeElement7setLoopEi) +STUB( + "9rUgCQXXpm0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEED1Ev) +STUB("9rjZCZ6PEok", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle11globalIsSetEv) +STUB( + "9rjckQ9ziXA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEmmEi) +STUB( + "9rqnovtGQFk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEE3getEv) +STUB( + "9rrmYB3l1ec", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEEiRNS2_10LibContextEPT_m) +STUB("9rw-dYdn3bA", _ZN7WebCore8Settings32setAcceleratedCompositingEnabledEb) +STUB("9s1E1w7ONEE", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead27joinableSpecifiedUsersIsSetEv) +STUB( + "9s21igMP22s", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE4sizeEv) +STUB("9s3P+LCvWP8", _Frprep) +STUB( + "9s3P0G6CejI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEmmEv) +STUB("9s6ZwdTXAmc", scePatchCheckerDestroyHandler) +STUB("9s9O6EEZzuU", _ZN4Manx7RunLoop7currentEv) +STUB( + "9sA156977D8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEE7get_refEv) +STUB( + "9sCppD725fQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "9sLW7j9u4DY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEE11release_refEv) +STUB( + "9sMhtMOX-Lg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEEC2Ev) +STUB( + "9sNS8JgSFiI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEE11release_refEv) +STUB( + "9sNqYoDokyg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEeqERKS9_) +STUB( + "9sPSC2lCHog", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEE3getEv) +STUB("9sSpOBHnrjM", sceCesBig5ToUtf16le) +STUB("9sborhBph9g", + _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities14UserActivities12getAccountIdEv) +STUB("9sdvKfLR+mY", sceCompositorSetInvisibleCanvasCommand) +STUB("9shFdrb5VAs", _ZN9Inspector20InspectorTargetAgentD1Ev) +STUB("9smhIInBMpM", _ZN8Gigacage16tryAlignedMallocENS_4KindEmm) +STUB("9spXJRHFHRA", _ZN3sce7Toolkit2NP2V28Commerce10Descriptor8NAME_LENE) +STUB( + "9sti7vTvx2U", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData10initializeEPNS1_6Common10LibContextEiNS5_19XPsnAtomicOperationEPKc) +STUB("9svkamY60w4", _ZN3sce7Toolkit2NP2V23TUS7Request16GetUsersVariableD2Ev) +STUB( + "9syopX0IIsQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEC2ERKS7_) +STUB( + "9szMw8nXoUw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEEC1ERSA_) +STUB( + "9t4xELFJxkc", + _ZN3sce2Np9CppWebApi11Matchmaking2V128PlayerForTicketCreateFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_21PlayerForTicketCreateEEE) +STUB( + "9t6WQLYeWzA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEaSERKS9_) +STUB("9tEwE0GV0qo", sceAudio3dBedWrite) +STUB( + "9tF1UEXU2A4", + _ZNK3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead23supportedPlatformsIsSetEv) +STUB( + "9tGU+J9kuRs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEmmEv) +STUB("9tHTHaoaTRU", _ZN3JSC18PropertyDescriptor9setGetterENS_7JSValueE) +STUB( + "9tT1HjFHiUc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE3endEv) +STUB( + "9tTE7ZTOyuA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEaSERS7_) +STUB("9tTqUgSxFmE", uprv_syntaxError_67) +STUB( + "9tUMBN2042I", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEplEm) +STUB( + "9tVdB4j7-V8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("9tXNMYxPrIs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEE7get_refEv) +STUB( + "9ta1PDe-fN0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEC2EPS8_) +STUB("9ta5HFCd3Hc", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEEcvbEv) +STUB( + "9taEHUJ0G0E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEC1EPS8_) +STUB("9tck1xjHPsU", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEEdeEv) +STUB( + "9tdkVrwsAmY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEED1Ev) +STUB("9tfT3KiaerY", _ZN7WebCore8Document10setCharsetERKN3WTF6StringE) +STUB("9tfy4+aDxrM", sceVoiceQoSGetRemoteEndpoint) +STUB("9tgwmHGKhnA", _ZN7WebCore8SVGNames19image_renderingAttrE) +STUB("9thKyBzyAR4", sceKernelGetRenderingMode) +STUB("9thMn+uB1is", sceRazorCaptureCommandBuffersOnlySinceLastFlip) +STUB( + "9thO3PbTyAk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEppEv) +STUB("9tnIVFbvOrw", __floatundisf) +STUB("9tnYMYNMA1I", _ZN3sce7Toolkit2NP2V24Core10OnlineUserC2Ev) +STUB("9tvPjSs-M-o", + _ZNK7WebCore6Quirks62shouldLayOutAtMinimumWindowWidthWhenIgnoringScalingConstraintsEv) +STUB("9tw1PljClHQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEED1Ev) +STUB("9twAdkLcx3Q", + _ZN2sh33CheckVariablesWithinPackingLimitsEiRKSt6vectorINS_14ShaderVariableESaIS1_EE) +STUB("9tz7W7-K48w", _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicket7getviewEv) +STUB("9u-+t-g0hdE", _ZN7WebCore10LayoutRectC2ERKNS_9FloatRectE) +STUB("9u-leikYIwU", JVM_Send) +STUB( + "9u1N7MfGHyY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE7popBackEv) +STUB("9u2xvQofqRE", _ZN12video_parser5vpcom8datetime8DateTimeC1Ettttttj) +STUB("9u3od5S6zFY", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110ResultTypeEEneERKS7_) +STUB( + "9uCGe-uPU+g", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB( + "9uKWAIdJRzg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE3endEv) +STUB("9uLllMP6nhU", _ZN9Inspector24CanvasFrontendDispatchernaEmPv) +STUB( + "9uLuRS4vpyE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEED2Ev) +STUB("9uLwD-AHv5w", _ZN3sce7Toolkit2NP2V29Messaging16GameDataMessagesaSERKS4_) +STUB("9uOxriAeVYg", _ZNK7WebCore10ScrollView16contentsToWindowERKNS_8IntPointE) +STUB("9uP25i6ipno", _ZNK3sce4Json5Array5emptyEv) +STUB( + "9uQcMJe7lK4", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead20setInvitableUserTypeERKNS3_23CustomInvitableUserTypeE) +STUB("9uRO2kWvbzo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEEC1EPS6_) +STUB( + "9uUAIvFBv8U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "9uZ0ta1XexA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "9ul6Vq3F-I0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEEcvbEv) +STUB("9urVLs6ovQk", sceKernelGetMemoryPstate) +STUB("9uu1wS0n4Jw", _ZN7WebCore11HistoryItem18setFormContentTypeERKN3WTF6StringE) +STUB("9v+V7a-Du3Y", sceNetApctlStartConf) +STUB("9v4ik3FRiDA", rgctx_fetch_trampoline_rgctx_64) +STUB("9v4s2WAlWKI", _ZN3WTF17callOnMainRunLoopEONS_8FunctionIFvvEEE) +STUB("9v8qoOWDC48", sceIduIsStaffMode) +STUB("9v9aTc07VPs", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEEC2ERS6_) +STUB("9vA2aW+CHuA", sceNetInetNtop) +STUB("9vA30Kj3Ldo", _ZN3sce7Toolkit2NP2V28Matching6MemberC1ERKS4_) +STUB("9vBDYBr6IRo", _ZN7WebCore12ChromeClient24didRemoveMenuItemElementERNS_19HTMLMenuItemElementE) +STUB( + "9vDPIYr3Vn4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("9vDQuBQPGrk", sceCesRefersUcsProfileCp866) +STUB("9vHGtqLkmTQ", sceCompositorGetClientList) +STUB("9vJDKDiEqB8", _ZN7WebCore9HTMLNames10valignAttrE) +STUB("9vOUspyyXN0", WKBundleClearAllDiskcaches) +STUB( + "9vPdl9fXpJw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB( + "9vT88RzaMuc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "9vTLF39-rVQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE7reserveEi) +STUB("9vaUjldYdOY", WKVibrationGetTypeID) +STUB("9vbxlgJba48", mono_aot_Sce_Vsh_DataTransferunbox_trampoline_addresses) +STUB( + "9vfSmt+FLsM", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB( + "9vm71Bkm7Eo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEEC2ERS9_) +STUB("9vvSCbbEOow", sceCesEucCnToUtf16le) +STUB("9vxj1CYn+Fo", _ZN7WebCore11DisplayList4ClipC2ERKNS_9FloatRectE) +STUB("9vyP6Z7bqzc", pthread_rename_np) +STUB( + "9vyxxhn-me0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEEC2Ev) +STUB("9w+kRyuPZOM", _ZN7WebCore31MediaEngineConfigurationFactory11disableMockEv) +STUB( + "9w-7ZjiH5IA", + _ZN9Inspector23CanvasBackendDispatcher14requestContentElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("9w0VG82erX8", _ZNK7WebCore13HTTPHeaderMap8containsERKN3WTF6StringE) +STUB("9w1t5WdrSDI", _ZN3WTF11Persistence7Decoder6decodeERt) +STUB("9w3DvL0N2IA", uscript_breaksBetweenLetters) +STUB( + "9w5HkaJ2Iog", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEEC2ERKSA_) +STUB("9w5VabzNm9c", _ZN3sce2Np9CppWebApi11Matchmaking2V15Error8fromJsonERKNS_4Json5ValueE) +STUB("9w5re1A-HmQ", _ZN3JSC7Symbols35repeatCharactersSlowPathPrivateNameE) +STUB("9w5zHN6xOw8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEED2Ev) +STUB( + "9wF8uG8xZi0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEC1EPNS2_10LibContextE) +STUB("9wO9XrMsNhc", sceNetRecv) +STUB( + "9wPhKMilhoI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEED2Ev) +STUB( + "9wTeADknSNY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEC1Ev) +STUB("9wYKBq8z2rA", _ZNK3WTF3URL4pathEv) +STUB( + "9wbUJuYetY8", + _ZN7WebCore11MemoryCache19getOriginsWithCacheERN3WTF7HashSetINS1_6RefPtrINS_14SecurityOriginENS1_13DumbPtrTraitsIS4_EEEENS1_11DefaultHashIS7_EENS1_10HashTraitsIS7_EEEE) +STUB("9wj2Ohdq3V0", _ZTVN7WebCore11DisplayList10DrawGlyphsE) +STUB("9wlSo1iqPBs", mono_array_new_full) +STUB("9wn-erEKew4", + _ZN7WebCore11DisplayList15FillRoundedRectC1ERKNS_16FloatRoundedRectERKNS_5ColorENS_9BlendModeE) +STUB("9wsgDjADKjk", _ZN3sce2Np9CppWebApi7Matches2V116RequestMatchTeam10getMembersEv) +STUB("9x+QdqQEnU0", Java_java_net_Inet4AddressImpl_lookupAllHostAddr) +STUB("9x04OJBX0J0", FcPatternGetMatrix) +STUB("9x0AYz1FTR8", _ZNK3sce2Np9CppWebApi6Common6VectorIjE3endEv) +STUB("9x5f0140e-c", _ZN7WebCore14WebSocketFrameC1ENS0_6OpCodeEbbbPKcm) +STUB("9x78-Zpc+XE", EVP_EncryptFinal_ex) +STUB("9x8S5Fjmcyw", _ZNK3sce2Np9CppWebApi14ConnectAccount2V212PartnerToken12getTokenTypeEv) +STUB("9xB0XwufJkM", uiter_setState_67) +STUB( + "9xL1XLvUzTU", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC2ERKSC_) +STUB("9xN76g0Nw0g", _ZN7WebCore18AdClickAttribution13markAsExpiredEv) +STUB( + "9xQOIRdEi4M", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getBoolean2Ev) +STUB("9xRIkqnNibE", sceKernelSetBackupRestoreMode) +STUB("9xRRhd7WCOc", GCC_except_table76) +STUB("9xUnIQ53Ao4", __paritysi2) +STUB( + "9xVDn4Co+nE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEppEv) +STUB("9xXmW3HuGGk", _ZNK3WTF12AtomicString23convertToASCIIUppercaseEv) +STUB( + "9xY8Ug7ZmKY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEmmEv) +STUB("9xcazelb3Ks", sceNpManagerIntGetNpIdInternal) +STUB("9xf8MYStc58", WKContextConfigurationCopyStorageProcessPath) +STUB( + "9xhIwQEN8G0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEEaSERKSA_) +STUB( + "9xmKaBZrj6w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEC1Ev) +STUB("9xrhjJsmR2Q", JSValueMakeSymbol) +STUB( + "9xuw6ZuXkC4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEdeEv) +STUB( + "9xxjmTAI6Io", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEE11get_deleterEv) +STUB( + "9xycIwGX6E4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEptEv) +STUB("9y4IcsJdTCc", sceNetCtlDisableBandwidthManagementIpcInt) +STUB("9y5v+fGN4Wk", sceAvPlayerPause) +STUB("9y6v26yVN4g", _ZN3WTF8JSONImpl10ObjectBaseD2Ev) +STUB("9y7Molw64Zw", ucnv_MBCSFromUChar32_67) +STUB("9y9YsMBbUq0", _ZN3sce2Np9CppWebApi6Common6StringC1EPNS2_10LibContextE) +STUB("9yDWMxEFdJU", strrchr) +STUB("9yIgudDTiYc", _ZN3sce7Toolkit2NP2V26Trophy7Request18GetTrophyPackGroupD2Ev) +STUB("9yK6Fk8mKOQ", sceGameLiveStreamingTerminate) +STUB("9yKCRw7LyGU", WKContextConfigurationSetWebSQLDatabaseDirectory) +STUB("9yLjn46Ypfs", _ZN3sce4Json5Array8iteratorD1Ev) +STUB("9ySjIGOUlD4", rgctx_fetch_trampoline_mrgctx_9) +STUB("9yV0RpurfxI", _ZN7WebCore8SVGNames22requiredExtensionsAttrE) +STUB( + "9yVJIfDzwGc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEC1EPKS8_) +STUB("9yW5GcKMmJI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEE7add_refEv) +STUB("9yaO7ovhE7o", _ZN3WTF15FilePrintStreamD0Ev) +STUB("9yf4dKVx9Nw", sceCesMbcToUcs2) +STUB( + "9yhR1Jbudl0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEE11release_refEv) +STUB("9ylasLJoZF0", uenum_openFromStringEnumeration) +STUB("9ym46rnYKZA", _ZNK3WTF7RunLoop9TimerBase16secondsUntilFireEv) +STUB( + "9ynH+f1BWwE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE7reserveEi) +STUB("9ynK7WRsjT8", _ZN7WebCore8SVGNames17clipPathUnitsAttrE) +STUB("9ynziHHqEtw", _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEEixEm) +STUB( + "9yqY8JNWWdg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEE7add_refEv) +STUB("9yvyzMoy5ZI", mono_aot_ReactNative_PUIjit_code_end) +STUB("9yxlvURJU6U", sceKernelJitGetSharedMemoryInfo) +STUB( + "9yy8jbF8AuM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "9z+RMGvGq3k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEEC1EPS6_PNS2_10LibContextE) +STUB("9z-T9X9IMXE", _ZN9Inspector20InspectorTargetAgentnaEmPv) +STUB("9z38jdn1Yxw", _ZN7WebCore18StyleSheetContentsD2Ev) +STUB("9z3E9CCNNEM", sceMbusConvertToMbusDeviceId) +STUB("9z3KgLgX-88", mono_aot_Sce_Vsh_Orbis_AbstractStorageplt_end) +STUB( + "9z4I3dmrreA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEED1Ev) +STUB( + "9z5IHQl-ED0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEC2EPS8_) +STUB("9z5ilnoxdQU", _ZNK7WebCore16FileReaderLoader17arrayBufferResultEv) +STUB( + "9z5nsxW5TE4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEC2EPS6_PNS2_10LibContextE) +STUB("9z6cz7NgsDA", mono_raise_exception) +STUB("9z8Lc64NF1c", sceHmdInternalSetVRMode) +STUB("9zC61f9EJ+4", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V18SortModeEEeqERKS7_) +STUB("9zDsrofkKf8", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEEC2Ev) +STUB( + "9zNhN8qn0ME", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEC1ERKS7_) +STUB("9zPBIupchgA", _ZN3WTF19initializeThreadingEv) +STUB("9zPBKi1RfcM", mono_btls_ssl_get_server_name) +STUB( + "9zRlyw-wIcw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("9zWObmFZbbc", fuse_teardown_compat22) +STUB( + "9zaFTibX1Nc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE7reserveEi) +STUB("9zeGXDlETvM", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_16NetStateDetailedEE17getAdditionalInfoEv) +STUB("9zi9FTPol74", _ZN3sce2np5MutexD1Ev) +STUB( + "9zioa-wVHnM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE5clearEv) +STUB("9zklzAl9CGM", pthread_rwlock_timedwrlock) +STUB("9zmcX1uKDGg", sceCompositorReleaseLocalStall) +STUB("9zpID2DQn8g", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119ChildActivityStatusEEmmEv) +STUB("9zpLsLESzTs", _sigsuspend) +STUB("9zu1IfIAui0", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS15TusDataStatusesEE19setCustomReturnCodeEi) +STUB("9zwJpai7jGc", sceSharePlayNotifyDialogOpen) +STUB( + "9zyzAlr-A0U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE5beginEv) +STUB("A++pFuyxZPg", cairo_scaled_font_get_ctm) +STUB("A+1YXWOGpuo", _LDtest) +STUB("A+2M7EivuOU", sceVdecswQueryDecoderMemoryInfo) +STUB("A+ABIQ7gp7Q", jzero_far) +STUB( + "A+BSZ1YgF2o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEED1Ev) +STUB( + "A+C+OwNq1rI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEEC2ERSA_) +STUB( + "A+DQXl1ZH-8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEaSERS7_) +STUB( + "A+DfEnU9jj0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEptEv) +STUB("A+FhGENHV-E", _ZN3sce4Json6String5clearEv) +STUB("A+Fl4kp0Obk", _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse10setMatchIdEPKc) +STUB("A+NVAFu4eCg", sceHttp2SendRequestAsync) +STUB( + "A+OmcXbHdWA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("A+RCnUXoF3k", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15PlayedWithStoryEE9constructEPS3_RKS3_) +STUB("A+Y3xfrWLLo", _Fspos) +STUB("A+ZaAAv53ZU", _ZN7WebCore4Page36setShouldSuppressScrollbarAnimationsEb) +STUB( + "A+bs0OuLr7I", + _ZN9Inspector8Protocol13BindingTraitsINS0_8Debugger9CallFrameEE11runtimeCastEON3WTF6RefPtrINS5_8JSONImpl5ValueENS5_13DumbPtrTraitsIS8_EEEE) +STUB("A+gXFduc9gM", sceEsvmEngineMediaKeySystemAccessDestroyMediaKeys) +STUB("A+iiHCksp7Y", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE8capacityEv) +STUB( + "A+jL2wEoNNs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEcvbEv) +STUB("A+mlx+9Zt9I", rgctx_fetch_trampoline_rgctx_47_p) +STUB( + "A+qE8DD70Ac", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody8fromJsonERKNS_4Json5ValueE) +STUB("A+rTLSeCJFQ", curl_version) +STUB("A+rpKNvFumU", sceBdSchedGetExtentMap) +STUB("A+sAjT9zHM8", _ZN9Inspector38ScriptProfilerBackendDispatcherHandlerD1Ev) +STUB("A+uGq+3KFtQ", sceGnmMapComputeQueueWithPriority) +STUB("A+uMGgdfMa8", _ZN7WebCore20GraphicsContextStateD2Ev) +STUB( + "A+ubR6wRBHU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEEC2ERKSA_) +STUB( + "A+v4Lrbu3I4", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_15PlayedWithStoryENS1_15AppSTLAllocatorIS5_EEEEC2Ev) +STUB("A+wjqCjSkWY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEEC1ERS6_) +STUB( + "A+y+KEwk6pA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "A+ywHupQfJs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("A-+HeD-cMog", JVM_UnloadLibrary) +STUB( + "A--2TGAYoE8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE10setContextEPNS2_10LibContextE) +STUB("A-0StSi2AwA", cairo_set_font_size) +STUB("A-0jH6FlENI", mono_aot_Sce_PlayStation_PUIPlatformplt_end) +STUB( + "A-1W8n83nN8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEE11get_deleterEv) +STUB("A-59lWgJLb0", ucal_getAvailable_67) +STUB( + "A-6h9estZBw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEED2Ev) +STUB("A-BYlKx72vw", sceAvSettingSetDisplayBlackLevel) +STUB( + "A-BqzAqXDN4", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "A-FexfLmD54", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEC2Ev) +STUB("A-IcJ38H870", _ZN3sce7Toolkit2NP2V211SharedMedia7Request9GetVideosD1Ev) +STUB("A-LX+unZHNA", _ZN7WebCore9HTMLNames16onloadeddataAttrE) +STUB("A-MGi5icglU", _ZN3sce7Toolkit2NP2V24Auth7Request10GetIdTokenD1Ev) +STUB("A-QKU+9HMhI", mono_aot_System_Data_Services_Clientjit_got) +STUB( + "A-T9v311l7s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "A-WkfCedYzk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEEdeEv) +STUB("A-ZO370RoSA", _ZN7WebCore17PageConsoleClient4timeEPN3JSC14JSGlobalObjectERKN3WTF6StringE) +STUB("A-cEjaZBDwA", _LZero) +STUB( + "A-tKe03rh7w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEEC1ERKSA_) +STUB( + "A-vzhvZ5u20", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEC2Ev) +STUB("A-x1fiSwh0A", DH_get0_pqg) +STUB( + "A0+B1H9GQtE", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS5_INS7_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISE_SF_EE) +STUB( + "A0DmXMwrdKc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEEptEv) +STUB("A0Kkj3BtiUY", _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEEC1Ev) +STUB("A0O5kF5x4LQ", _fstat) +STUB( + "A0P1bAV2eF8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEC2Ev) +STUB( + "A0PftWMfrhk", + _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE11get_weekdayES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm) +STUB( + "A0TmU0Rsdfk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEEaSERKSA_) +STUB("A0Ts3Oz6TPo", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification15BlocklistUpdateEE3getEv) +STUB("A0Xp97hSdNo", _ZThn64_N7WebCore10ScrollView15setScrollOffsetERKNS_8IntPointE) +STUB( + "A0iC8lJFgtc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("A0ia1KpQ4rY", + _ZN15AbstractStorage18DailymotionContent12readExternalESt10shared_ptrINS_7ContentEE) +STUB("A0rWlXAfqWE", __tsan_atomic128_store) +STUB( + "A0zNPHb53co", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEE11release_refEv) +STUB("A1-r+VSS0kk", _ZN7WebCore24CoordinatedGraphicsLayer10removeTileEj) +STUB("A18qthxPm4Q", mono_aot_Sce_Vsh_AppContentUtilWrapperunbox_trampoline_addresses) +STUB( + "A19tx8UCtZo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEixEm) +STUB( + "A1CkbkQoMFQ", + _ZN3sce7Toolkit2NP4Auth9Interface17getUserAccessCodeEPNS1_9Utilities6FutureINS1_6TicketEEERKNS1_21AccessCodeInputParamsEb) +STUB("A1HoXBZt3nQ", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetInteger3Ev) +STUB("A1R5T0xOyn8", fmodl) +STUB("A1ThglSGUwA", sceSaveDataGetAllSize) +STUB("A1XQslLAA-Y", sceNpTitleMetadataIntCreateRequest) +STUB( + "A1aIZYg4qdA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEE7add_refEv) +STUB( + "A1ap2sSvz8Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEEC1ERKSA_) +STUB("A1h+YaeoiHI", mono_aot_Sce_Vsh_Accessorunbox_trampoline_addresses) +STUB("A1jmJtg48go", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEEC2EPKS6_) +STUB( + "A1jnLmDEzs4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEEC2ERKSA_) +STUB( + "A1r1wc0PT+c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEC2Ev) +STUB("A1rhKFuCEIg", _ZTVN7WebCore20ISOOriginalFormatBoxE) +STUB( + "A1t8lmmhv+I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE7reserveEi) +STUB("A1tqSIQvZhs", sceFsCreatePprPfsTrophyDataImage) +STUB("A1zOC17L80g", sceKernelSetMemoryPstate) +STUB("A22IMPPB3OY", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product21getContentDescriptorsEv) +STUB( + "A255wdhvqk4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEEC1ERKS9_) +STUB( + "A2651fW0iB8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE21intrusive_ptr_add_refEPS9_) +STUB("A29RHrlfTM0", _ZNK3sce4Json6String5rfindEPKcmm) +STUB("A2BZJgwBmeI", _ZN3WTF10protocolIsENS_10StringViewEPKc) +STUB( + "A2Bqcmm8viY", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM14ShadowRootTypeEEESt8optionalIT_ERKN3WTF6StringE) +STUB("A2CQ3kgSopQ", sceNpSetContentRestriction) +STUB( + "A2ETRcMwk3w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE10setContextEPNS2_10LibContextE) +STUB("A2Eh2M8nZqY", mono_aot_Sce_Vsh_BackupRestoreUtilplt) +STUB("A2HfEZB-rZQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ResponseCooperativeResultEEppEv) +STUB( + "A2J2cLyEr2M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEEC2ERSA_) +STUB("A2Jb0fC9k5k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEEppEi) +STUB( + "A2MiBwsnBSA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE8copyFromERKS9_) +STUB("A2OPwu2Xo-c", sceNpMallocImpl) +STUB("A2Q-gC8MxII", scePerfPmcNbStop) +STUB("A2Ru3JRG0dE", _ZN7WebCore8Document9setCookieERKN3WTF6StringE) +STUB("A2Sjbwfsp2c", _ZN7WebCore9HTMLNames11headersAttrE) +STUB( + "A2T8s9z8nfY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("A2TTRMAe6Sw", _ZTISt8numpunctIwE) +STUB("A2Xztk6l0mE", _ZN7WebCore8SVGNames18systemLanguageAttrE) +STUB("A2jWOLPzHHE", sceHmdInternalCrashReportReadDataSize) +STUB("A2m1QsR0MZQ", mono_pe_file_open) +STUB( + "A2p5aEz8Hoc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEED1Ev) +STUB("A2pNKPuIDN0", _ZN7WebCore8SVGNames11opacityAttrE) +STUB("A2te-zPWOyg", _ZNK15AbstractStorage18DailymotionContent10GetServiceEv) +STUB( + "A2tqNanniRI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEEaSERSA_) +STUB( + "A2usXVbIOpM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEplEm) +STUB( + "A3+e2DjGY90", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEE11release_refEv) +STUB("A32EEl9qjEY", uprv_asciiFromEbcdic_67) +STUB("A33uDRt2rQM", sceVideoStreamingEngineMediaKeySystemAccessDestroyMediaKeys) +STUB("A37OEqKnWWI", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_16EventInformationEEC1Ev) +STUB("A3FLVZ4FHbY", cairo_surface_write_to_png_stream) +STUB("A3HuqQOmdmA", WKBundleBackForwardListItemCopyOriginalURL) +STUB( + "A3Kc7Vrwkvk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEixEm) +STUB("A3NEPgIsmnQ", + _ZN3sce2Np9CppWebApi13InGameCatalog2V525ContentInteractiveElementC2EPNS1_6Common10LibContextE) +STUB("A3TNKhREamw", sceVnaUnregisterCallback) +STUB("A3YKyP3MwAI", scePlayReadyLicenseAcqGenerateChallenge) +STUB("A3YOM+5fr5A", _ZNK3WTF6String25splitAllowingEmptyEntriesERKS0_) +STUB("A3aZCVa2GRA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEEC1EPS5_PFvS7_EPNS2_10LibContextE) +STUB( + "A3cocAcY2KU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB( + "A3f3Dmc2MGM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB("A3fnrWMP7zk", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats12getPlayStyleEv) +STUB( + "A3jARsQjZRE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("A3m-y8VVgqM", sceNpManagerIntGetCommunicationRestrictionStatus) +STUB("A3oFI9JLDi4", _Z16WTFCrashWithInfoiPKcS0_immmm) +STUB("A3sDAc90aHc", _ZN7WebCore12ChromeClient20eventThrottlingDelayEv) +STUB("A3vIdrdhcdk", _ZN7WebCore42wordBoundaryForPositionWithoutCrossingLineERKNS_15VisiblePositionE) +STUB( + "A3vS8-6YhBM", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("A3wbbLmrQV4", sceShellCoreUtilDownloadNetEvConfigFileFromServer) +STUB("A3z26deg9VQ", scePerfPmcClose) +STUB("A428t51ioBQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEE7get_refEv) +STUB("A49tCnZlNyw", WKAuthenticationChallengCopyRequestURL) +STUB( + "A4B-PxiQ6Nc", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V136MatchCompletionRatePropertiesFactory7destroyEPNS3_29MatchCompletionRatePropertiesE) +STUB( + "A4EHb+Te4go", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEaSERKS7_) +STUB( + "A4F66HMzuwk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEC2EPNS2_10LibContextE) +STUB("A4KPdcTIVuc", sceSocialScreenDialogTerminate) +STUB( + "A4MMgh3fkgY", + _ZThn32_N7WebCore14DocumentLoader16redirectReceivedERNS_14CachedResourceEONS_15ResourceRequestERKNS_16ResourceResponseEON3WTF17CompletionHandlerIFvS4_EEE) +STUB("A4P8aG8cGz0", _ZN7bmalloc13IsoSharedPage9tryCreateEv) +STUB( + "A4ReJogcU7k", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEEC1ERKSC_) +STUB("A4SdYgoAxIM", _ZN7WebCore16NetworkSendQueueD1Ev) +STUB( + "A4YVxfx9Mco", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEC2ERS7_) +STUB("A4bGTcq3-2E", WKContextConfigurationIgnoreSynchronousMessagingTimeoutsForTesting) +STUB("A4bnsoggxYA", _ZN3sce7Toolkit2NP2V28Matching7Request12SearchClauseD1Ev) +STUB("A4dOumHPyNQ", WKWebsiteDataStoreGetAllStorageAccessEntries) +STUB( + "A4jWCZQZYOE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEEC1ERSA_) +STUB("A4ox6HqeDG4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEEdeEv) +STUB( + "A4rANBtw0dI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "A4vEPN-BQAw", + _ZN7WebCore21NetworkStorageSession18setAppBoundDomainsEON3WTF7HashSetINS_17RegistrableDomainENS1_11DefaultHashIS3_EENS1_10HashTraitsIS3_EEEE) +STUB( + "A4wTWCKzgT4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("A4zXSpJuqvk", _ULx86_64_set_caching_policy) +STUB("A55zzvrPB7A", _ZN3IPC15ArgumentEncoder6encodeEm) +STUB( + "A56EtlVY70Y", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "A58icFdN9hE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("A5APW8--ie0", _ZN3JSC8Bindings13RuntimeObject7destroyEPNS_6JSCellE) +STUB( + "A5DgxwR+kFM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "A5EX+eJmQI8", + _ZZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_bRSt8ios_basewRKSbIwS2_SaIwEEE4_Src) +STUB( + "A5HmxKaod9g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEC1EPKS8_) +STUB("A5HsmsXdCnw", _ZN7WebCore15GraphicsContext20setShouldSmoothFontsEb) +STUB("A5Hxx4-o50g", PEM_write_bio_X509) +STUB( + "A5JR2J2Q52o", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE3endEv) +STUB( + "A5KcmtnVATU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEneERKS9_) +STUB("A5NjMQ4ZCv0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V124RequestCooperativeResultEEptEv) +STUB( + "A5OcDmN0MRs", + _ZN9Inspector22InspectorDebuggerAgent29breakpointActionsFromProtocolERN3WTF6StringERNS1_6RefPtrINS1_8JSONImpl5ArrayENS1_13DumbPtrTraitsIS6_EEEEPNS1_6VectorINS_22ScriptBreakpointActionELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("A5Tpi9NQOFw", _ZN3sce7Toolkit2NP2V212ActivityFeed15PlayedWithStoryD2Ev) +STUB("A5WvlZN4KEM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEE5resetEPS6_) +STUB("A5ZXsjODZnA", utext_isWritable_67) +STUB("A5d7+JLBz0o", YGNodeStyleGetFlex) +STUB("A5h6OSq6tG4", _ULx86_64_dwarf_to_unw_regnum_map) +STUB("A5iQWVULNEU", mono_aot_Mono_Securitymethod_addresses) +STUB( + "A5mU819AeKc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEaSERKS8_) +STUB("A5rtWrW1CAk", mono_aot_Sce_Vsh_Np_Webapimethod_addresses) +STUB("A5sEdd114m4", Java_java_io_ObjectInputStream_setObjectFieldValue) +STUB( + "A5vYoH8KPm0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEED1Ev) +STUB( + "A5w74g0Nk7M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("A5wwW5tmsgE", + _ZN7WebCore9CookieJar29cookieRequestHeaderFieldProxyERKNS_8DocumentERKN3WTF3URLE) +STUB( + "A5wycg1BTw4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEaSERS7_) +STUB("A5ya72jAXm4", _ZN3sce3pss4core9resources15ResourceManagerC2EPK11_MonoStringb) +STUB( + "A61gjERDjtk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE5beginEv) +STUB("A6FC9-s8BTk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEdeEv) +STUB("A6IB1hIEwCw", _ZN7WebCore12JSTimeRangesC2ERKS0_) +STUB("A6OKuW6OstM", _ZN7CoreIPC10Attachment7disposeEv) +STUB("A6OedzqJNWI", _ZN3WTF14FileSystemImpl11getFileSizeERKNS_6StringERx) +STUB("A6PU1u15CRI", _ZN3sce3pss5orbis9framework11PsmCallList8RegisterEPFvPvES4_) +STUB( + "A6REAyMilMo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEE3getEv) +STUB( + "A6iPAEkl6BE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEED1Ev) +STUB("A6o3MJ1JaTA", rgctx_fetch_trampoline_mrgctx_16) +STUB( + "A6oqr7nA6Kg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEE11get_deleterEv) +STUB( + "A6rq9qRjbzo", + _ZN3sce2Np9CppWebApi7Matches2V126AdditionalStatisticFactory6createEPNS1_6Common10LibContextEPKcS9_PNS5_12IntrusivePtrINS3_19AdditionalStatisticEEE) +STUB("A6tUo1vI7Tw", _ZN3sce3pss4core9threading4CondC1ERNS2_5MutexEPKci) +STUB("A6xEYmcRiho", _ZN7WebCore19JSAnimationTimelineC1ERKS0_) +STUB("A6yBulcPsOs", _ZN7WebCore9HTMLNames19allowfullscreenAttrE) +STUB("A6ykK35-yyA", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEED2Ev) +STUB("A6zCDUY2zic", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEEneERKS7_) +STUB( + "A7+i9j6G5Rg", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("A71XWS1kKqA", __atomic_fetch_and_2) +STUB("A742Lh-FnVE", _ZTVN3sce2np8JsonNullE) +STUB( + "A74KdP+ypxQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEC1EPS8_) +STUB( + "A74Ovpw1+UQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "A74ZKQsNkiw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEC2ERS7_) +STUB("A77t-NPbEOE", _ZN7WebCore5Range14setStartBeforeERNS_4NodeE) +STUB("A7EKlm22zoE", sceLibSecureHashGetBlockSize) +STUB("A7GW1FP4jDo", _ZN12video_parser13cVideoMetaMP416getThumbnailInfoEjPNS_18VpThumbnailInfo_t_E) +STUB( + "A7LUJaujPOo", + _ZN3sce2Np9CppWebApi6Common23UpDownStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE8sendDataEPKvm) +STUB( + "A7TeaRimIGs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB("A7URD7UI5fE", _ZN3sce7Toolkit2NP2V28Matching7Request20SetInitConfigurationD1Ev) +STUB("A7hpstw2W-U", _ZN3sce7Toolkit2NP2V212ActivityFeed9StoryUserD1Ev) +STUB("A7lgyd346M4", _ZN3JSC19HeapSnapshotBuilder22hasExistingNodeForCellEPNS_6JSCellE) +STUB("A7n9nNg7NBg", sceHttpCacheRedirectedConnectionEnabled) +STUB("A7oKSmrU2as", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEED1Ev) +STUB("A7oRMdaOJP8", sceRazorCpuInitDataTags) +STUB( + "A7td473jiv8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEE7get_refEv) +STUB("A7vb06DjJUY", ucnv_getDefaultName) +STUB( + "A82AGq3-dxU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEE7add_refEv) +STUB( + "A835XiVhZ0k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEED2Ev) +STUB("A86aYTYSOgY", mono_event_get_raise_method) +STUB( + "A88nyUWqaWs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("A8DwB8VTJpA", mono_error_get_error_code) +STUB("A8FRv+YeMlA", _ZN7WebCore8SVGNames14keySplinesAttrE) +STUB( + "A8IXVgW00bU", + _ZN12video_parser13cVideoMetaMP411getMetadataENS_12VP_META_TYPEENS_9VP_LANG_eENS_15VP_SEARCH_OPT_eEjPNS_12VpMetadata_tE) +STUB( + "A8JdfjuehJM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB( + "A8LsCPXwRI4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEptEv) +STUB("A8WGRwZEqvM", mono_aot_Newtonsoft_Json_PlayStationjit_code_start) +STUB("A8Yk5AhNDck", openat) +STUB("A8ZQAl+7Dec", sceFontGraphicsUndefineIndexedVertexesGlyph) +STUB( + "A8blQWiCUQw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEneERKS9_) +STUB( + "A8dkqjuAmmU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB( + "A8fKLdW9G7g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE21intrusive_ptr_add_refEPS9_) +STUB("A8fX5m6Lnrg", + _ZN15AbstractStorage13YoutubeFolder12RemoveFolderERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) +STUB("A8jAM22FYJI", delegate_virtual_invoke_imt_m_5_p) +STUB("A8kKNkL15Xc", _ZN3sce7Toolkit2NP2V210Tournament24OfficialBroadCastDetailsC1ERKS4_) +STUB( + "A8oC9VAr3kk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE7reserveEi) +STUB("A8qBzXjvXvg", _ZNK7WebCore29DeprecatedCSSOMPrimitiveValue13getFloatValueEt) +STUB( + "A8x8pPi6It0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEE11get_deleterEv) +STUB( + "A9-8YCZYqQA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEE7add_refEv) +STUB( + "A9-crOz1qBc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEC1EPS9_) +STUB( + "A91egLKEeUE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE4sizeEv) +STUB("A923XQeoiUY", _ZN7WebCore6JSNode14finishCreationERN3JSC2VME) +STUB("A98W3Iad6xE", _FPow) +STUB("A999naA-WaU", rgctx_fetch_trampoline_mrgctx_50) +STUB( + "A9AVsu9nD5s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("A9EgnsMJptg", _ZN12video_parser5vpcom3rtc14GetCurrentTickEPm) +STUB("A9MS1-aXvKI", _ZN7WebCore20PasteboardWriterDataD2Ev) +STUB("A9PfIjQCOUw", _ZTIPo) +STUB("A9Rgli5ycgw", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V110UpdateModeEEppEi) +STUB("A9Rtccia9-k", GCC_except_table379) +STUB("A9aDQi3tJMI", SSL_get_verify_result) +STUB( + "A9cHyHRzsao", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEppEv) +STUB("A9cVMUtEp4Y", sceHttpInit) +STUB( + "A9fNqYz-JuA", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEiRNS2_10LibContextEPT_m) +STUB( + "A9iDTMAEXUk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB("A9l5kWscE7c", _ZN23sceMetadataReaderWriter10ParserInfoC1ERKS0_) +STUB("A9nYDf-VLMc", _ZN22MmsMdCommonFsOperation7isExistEPKc) +STUB( + "A9oxtTM68M8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEneERKS9_) +STUB( + "A9s6XDc3A8M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEaSERKSA_) +STUB( + "A9wWh6VTG0I", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEdeEv) +STUB( + "A9z3h7c6aIE", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSession12getaccountIdEv) +STUB( + "AA0B8Y2DjSY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("AA1a19bbBCA", monoeg_g_build_path) +STUB("AA4U9nG9L2E", _ZN7WebCore25DropShadowFilterOperationD2Ev) +STUB("AAAJ9J3BKC0", _ZN3JSC8Debugger11atStatementEPNS_9CallFrameE) +STUB( + "AAC+4PtFrJ4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEeqERKS9_) +STUB("AACRJJP3Ntk", scePsmKitFontConfigGetFontName) +STUB("AAELy8Yc3Mc", sceVideoOutSysGetVideoOutModeByBusSpecifier) +STUB( + "AAF5mye1stQ", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeaders15getCacheControlEv) +STUB( + "AAFBJl5Ds-U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEE11get_deleterEv) +STUB("AAHmHrXOtv4", curl_free) +STUB("AAMM-Q1X0g0", sceVdecswSyncDecodeInput) +STUB("AAYzPG3rUm0", ucfpos_getIndexes_67) +STUB("AAaF-VPei4k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEC2ERS7_) +STUB( + "AAdM44gs+sQ", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setBoolean7ERKb) +STUB( + "AAePaoiXINE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE5clearEv) +STUB("AAeX-U5-P3M", sceAgcGetDefaultCxStateFlat) +STUB("AAj9X+4aGYA", sceNpWebApi2PushEventStartPushContextCallback) +STUB("AAk6w60xP3A", sceSysUtilSendNotificationRequest) +STUB("AAkVf-cyiwM", _ZN3WTF21MemoryPressureHandler12setPageCountEj) +STUB("AAtXFGQUFSI", _ZN7WebCore6DOMURL8setQueryERKN3WTF6StringE) +STUB( + "AAvJDOcrMlc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEaSERKS9_) +STUB( + "AAw64sV5r7A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "AAxn2SfQwPw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEppEv) +STUB("AB+rgo-Be8M", il2cpp_method_get_token) +STUB("AB3cQg5BjjI", _ZN7WebCore16JSXMLHttpRequest6s_infoE) +STUB("AB6vv+EFfcY", _ZN12video_parser5vpcom13LwMutexUnlockEPNS0_11sys_lwmutexE) +STUB( + "AB6xGODZH3Q", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi21postGameSessionsTouchEiRKNS4_32ParameterToPostGameSessionsTouchERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_33PostGameSessionsTouchResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("ABAA2f3PM8k", CERT_getCertificateExtensions2) +STUB("ABFE75lbcDc", _ZNKSt7codecvtIwc9_MbstatetE6do_outERS0_PKwS4_RS4_PcS6_RS6_) +STUB("ABGu4YJvWPo", _ZTVN7WebCore11DisplayList9DrawImageE) +STUB("ABJ1OwHs4Gs", _ZN7WebCore9HTMLNames6insTagE) +STUB( + "ABOzgPdRQzQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEC1Ev) +STUB( + "ABPV-ztyxNw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEEC2Ev) +STUB("ABPW-f1l6DA", _ZNK7WebCore6Quirks32isNeverRichlyEditableForTouchBarEv) +STUB("ABPo0bt+Nvk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE4sizeEv) +STUB( + "ABUQqA5bYHQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("ABWYlIsfwbs", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersD1Ev) +STUB("ABXmJr6QytU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEmmEv) +STUB("ABcMO6bA+mw", WKProtectionSpaceGetPort) +STUB("ABoN0o46u8E", sceUserServiceSetPbtcPlayTime) +STUB("ABrTK2IVS4c", s_fixed_buf) +STUB("ABsB4dU5bGs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEC1Ev) +STUB( + "ABviRCi95IE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEE11get_deleterEv) +STUB("ABvprqer1Rc", monoeg_g_locale_to_utf8) +STUB("ABxyZgRkY3Q", _ZN7WebCore19JSHTMLSelectElement6s_infoE) +STUB("AC1tPOyDkpA", X509_STORE_CTX_set_error) +STUB("AC8zkXALCGI", _ZN3sce7Toolkit2NP26GetEntitlementsInputParamsC2Ev) +STUB("ACA4xhLZpL8", uset_containsAll_67) +STUB( + "ACBVjamxEzg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEC1EPS8_) +STUB("ACDE-7O1Y3w", _ZN7WebCore8SVGNames7in2AttrE) +STUB( + "ACDIMdOWuPs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("ACFqSfIdK+4", _ZNK7WebCore25DropShadowFilterOperation1xEv) +STUB("ACK9lJ9J0Mc", u_frewind_67) +STUB( + "ACNqdfSjzhQ", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions19unsetacceptLanguageEv) +STUB( + "ACUs2xgaCJU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEEC2ERSA_) +STUB("ACVeBkbSTvI", _ZN7WebCore4Page18setPageScaleFactorEfRKNS_8IntPointEb) +STUB("ACYbiKvILzo", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12string6IsSetEv) +STUB("ACazp+XQF6E", + _ZN3WTF14FileSystemImpl14MappedFileDataC1EiNS0_12FileOpenModeENS0_14MappedFileModeERb) +STUB( + "ACcs7VrpfKM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("ACdU2QH82O4", sceVisionManagerRequestClose) +STUB("AChB3w1OeOg", _ZN7WebCore4Node10childNodesEv) +STUB("AChVPl3pIiU", _ZN3JSC7Symbols17strikePrivateNameE) +STUB("ACjtE27aErY", sceHttp2SetResolveTimeOut) +STUB("ACp9MXyxLHE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEE7add_refEv) +STUB( + "ACqovDHJ+tU", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("ACrEBIhoK-4", _Z38sceGpuDebuggerGetEnabledExceptionsMaskPKN3sce3Gnm16GsStageRegistersEPj) +STUB( + "ACuvQCQMe9Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEEC2ERKSA_) +STUB("ACv0fKVga70", _ZN7WebCore19makeMapBetweenRectsERKNS_9FloatRectES2_) +STUB("ACxv8BSIZ0Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEC2Ev) +STUB("AD1CfnQ+AME", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116InitialJoinStateEEppEv) +STUB("AD5eTVuK+Kg", mono_aot_Sce_Vsh_VoiceMsg_VoiceMsgWrapperplt) +STUB("AD8xxTzPA8k", utrans_transliterator_cleanup_67) +STUB("ADFCdtovp6c", YGNodeStyleGetMaxWidth) +STUB("ADJ0z1mfh6E", Java_java_util_zip_ZipFile_getNextEntry) +STUB("ADJhwBSHO08", _ZN8meta_gen14ImageRetriever10SetMetaValEii) +STUB("ADMEMW9fSoo", _ZN3sce7Toolkit2NP21SearchSessionsRequestC1Ev) +STUB("ADN8G76X6xg", RemoveMediaSource) +STUB( + "ADPAslgHs2A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEmmEv) +STUB("ADRmtP5lw0E", mono_aot_System_Reactive_Interfacesplt_end) +STUB("ADSvTqX7Moc", _ZN3JSC7WeakSet13findAllocatorENS_13CellContainerE) +STUB("ADTgfxLGqGA", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredUsersEED1Ev) +STUB("ADTnzMsi2Q8", ucase_toupper_67) +STUB( + "ADdZTu2bkH4", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB( + "ADeudk4Bzuw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEE7get_refEv) +STUB( + "ADjx3dMFpvk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE10setContextEPNS2_10LibContextE) +STUB( + "ADkNGpuG9ls", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "ADmGlXt8-aw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEED2Ev) +STUB( + "ADpTJaSPA1U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEEC2EPS8_PNS2_10LibContextE) +STUB("ADsMyXKjHVo", glUseProgram) +STUB( + "ADtNcliBWn4", + _ZNK3sce2Np9CppWebApi14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBody16invitationsIsSetEv) +STUB("ADwmp-WX02I", _ZNK7WebCore20FontAttributeChanges10editActionEv) +STUB("ADzErLRX1EY", sceSdmaClose) +STUB("AE+mHBHneyk", sceUsbdClaimInterface) +STUB("AE-QTunoIMw", _ZN3sce7Toolkit2NP2V210Tournament15TeamVsTeamMatchaSERKS4_) +STUB("AE0LDB81R4A", + _ZN3sce2Np9CppWebApi7Matches2V122RequestMatchStatisticsC1EPNS1_6Common10LibContextE) +STUB("AE3ED2J8pcE", _ZN3sce3pss5orbis5video15VideoPlayerBase19GetBufferedPositionEPmS4_) +STUB("AE70osJu+C0", _ZN12video_parser18cMp4FFLHndlManager10initializeEjj) +STUB( + "AEBGIMm4--I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEEC2Ev) +STUB( + "AECN-LFmkEQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "AEDq89Ed2Es", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEE11get_deleterEv) +STUB("AEFrp8kHkko", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setSecondaryVideoStream) +STUB("AEG-wbnO1Yc", _ZN7WebCore4Page45setOutsideViewportThrottlingEnabledForTestingEb) +STUB("AEJdIVZTEmo", qsort) +STUB( + "AEM867ca3rk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEneERKS9_) +STUB("AEPvEZkaLsU", iswpunct) +STUB("AEU2tkjdZ2w", ft_glyphslot_set_bitmap) +STUB( + "AEU6igJoMe4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE6resizeEj) +STUB("AEXbZaoPfsE", _ZN3sce2Np9CppWebApi7Matches2V118RequestMatchPlayerC2EPNS1_6Common10LibContextE) +STUB( + "AEc1ALvyOGI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEC1EPKS8_) +STUB("AEf6cGMJ5Fg", JSScriptRetain) +STUB("AEnBqqmNJBA", _ZN9Inspector28PageBackendDispatcherHandlerD0Ev) +STUB( + "AEoKYgVhNvs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEE7get_refEv) +STUB("AEqxJxKr8BI", + _ZN3JSC14StructureCache32emptyObjectStructureConcurrentlyEPNS_14JSGlobalObjectEPNS_8JSObjectEj) +STUB( + "AEscOX7vUQE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE5beginEv) +STUB("AEt7ZxxKEXs", _ZN3sce7Toolkit2NP2V24Core8ResponseINS3_18CustomResponseDataEE5resetEv) +STUB("AEuF3F2f8TA", fgetc) +STUB( + "AEvisHb9+lM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEaSERS7_) +STUB("AExYkCj1R2Q", _ZN7WebCore6Editor13rangeForPointERKNS_8IntPointE) +STUB( + "AEy6ZzuUueM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEdeEv) +STUB( + "AF2LJAg8tDE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEC1Ev) +STUB("AF4z1EF54tQ", _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession14setSearchIndexEPKc) +STUB( + "AFAvE2Ct-AU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEEcvbEv) +STUB( + "AFC0qOYxC0k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE7reserveEi) +STUB("AFIh8SQkYlQ", sceAgcDcbSetIndexIndirectArgsGetSize) +STUB("AFLa8IFxjsQ", _ZNK7WebCore9FloatSize6isZeroEv) +STUB( + "AFQbaVsXCOg", + _ZN9Inspector33ApplicationCacheBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("AFRL2fNOmeI", _ZStL8stdopens) +STUB("AFRS4-8aOSo", __atomic_fetch_or_4) +STUB( + "AFS8TOg4RX0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEE3getEv) +STUB("AFTj0YTrafE", _ZN3sce7Toolkit2NP2V27Session9SessionIdC1ERKS4_) +STUB("AFaKHX-zKCY", WKContextConfigurationSetApplicationCacheDirectory) +STUB("AFeZCFKJd3k", + _ZN7WebCore19ResourceRequestBase18setHTTPHeaderFieldENS_14HTTPHeaderNameERKN3WTF6StringE) +STUB( + "AFieW8+VQ2M", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("AFmlCEskx-Y", unumsys_open_67) +STUB("AFs8wZ7wnJQ", _ZN7WebCore11DisplayList11SetLineDashD2Ev) +STUB( + "AFvShtQzn4o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEC2Ev) +STUB("AG+9iB+spSc", _ZN3JSC7Symbols16matchPrivateNameE) +STUB( + "AG-QqgxMp2g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE5clearEv) +STUB("AG-xi62BJTU", _ZN7WebCore9FrameView17setTracksRepaintsEb) +STUB("AG7ICWq3N8w", WKRenderLayerCopyRendererName) +STUB( + "AG9xveT2ycg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEEC1ERKSA_) +STUB("AGDKupLjTZM", sceUserServiceGetTeamShowAboutTeam) +STUB("AGGtsVQ78ZE", sceNpGriefReportCreateClient) +STUB("AGKZYfPNw+8", uloc_getParent_67) +STUB("AGKwwvvvs4E", + _ZN7WebCore11FrameLoader21loadURLIntoChildFrameERKNS_3URLERKN3WTF6StringEPNS_5FrameE) +STUB("AGLBmvVgdZ8", sceNpSessionSignalingGetGroupFromPeerAddress) +STUB("AGLEZbbzOLo", sceFsSetSystemReserveSize) +STUB( + "AGPy4NWEbLg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("AGRCZPRMOC0", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15ErrorD1Ev) +STUB( + "AGRMu3YUrjc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEmmEv) +STUB("AGYntkLfXCc", + _ZN3sce7Toolkit2NP2V27Session4joinERKNS3_7Request4JoinEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("AGadQiCfKDY", _ZN3sce2np10JsonParser4InitEPK7JsonDefPNS1_12EventHandlerE) +STUB("AGeGu39H7mY", Java_com_sony_gemstack_org_dvb_application_AppProxyImpl_n_1getMaster) +STUB( + "AGi70O2EYMI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEED1Ev) +STUB("AGnsy1zV34o", sceLncUtilEnableSuspendNotification) +STUB( + "AGuyqZCsSMw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "AH+ojxZTVOk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB("AH+tO9m5m0c", _ZNSbIwSt11char_traitsIwESaIwEE7replaceEmmPKwm) +STUB( + "AH3VNMiD9Wo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEeqERKS9_) +STUB("AH7kRAoG-lA", __tsan_atomic128_compare_exchange_weak) +STUB("AH8sEAQe3Ts", _ZN7WebCore11DisplayList18DrawFocusRingRectsD2Ev) +STUB("AHBGzWbT2ZI", _ZNK3JSC7JSValue20toIntegerPreserveNaNEPNS_9ExecStateE) +STUB( + "AHBdzg35YWw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEEC1Ev) +STUB( + "AHGWRrr1tM4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEED0Ev) +STUB("AHHNgiEhbn4", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISbIcSt11char_traitsIcENS2_IcEEEE7destroyEPS6_) +STUB("AHICm1sKo90", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE8copyFromERKS6_) +STUB( + "AHLxkKjFUpE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "AHMxTVY3szY", + _ZN3sce2Np9CppWebApi14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyC1EPNS1_6Common10LibContextE) +STUB("AHNKaOCthAE", _ZN4IPMI7SessionD2Ev) +STUB("AHQCPhF-LZI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEixEm) +STUB( + "AHTpMEo172c", + _ZN3JSC4Yarr11byteCompileERNS0_11YarrPatternEPN3WTF20BumpPointerAllocatorERNS0_9ErrorCodeEPNS3_4LockE) +STUB( + "AHah8J-i2EI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEEC1ERSA_) +STUB("AHb8b9f-fJc", preinit) +STUB( + "AHfgVI3iTzw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEC1EPS6_PNS2_10LibContextE) +STUB("AHh5pwgAikE", mono_aot_System_Windowsplt) +STUB( + "AHhwBZMuARg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEC2EPS8_) +STUB("AHmW2IKU5HY", _ZN7WebCore21DiagnosticLoggingKeys11inactiveKeyEv) +STUB( + "AHp-DNo-04c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEC1Ev) +STUB( + "AHpaHscjI8Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEE11get_deleterEv) +STUB("AHxyhN96dy4", ferror) +STUB("AI-INyhOZ6w", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_16NetStateDetailedEEC2Ev) +STUB("AI1aDzdpDTk", _ZN7WebCore14CredentialBaseC2ERKN3WTF6StringES4_NS_21CredentialPersistenceE) +STUB( + "AI2eQ8UT+KE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE7popBackEv) +STUB("AI6mDpNxPYk", _ZNK3sce3Xml3Dom8Document13getChildNodesENS1_6NodeIdEPNS1_8NodeListE) +STUB( + "AI7f7ZfbyAk", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer28hasxPsnAcceptPlatformNamePs5Ev) +STUB( + "AI8nq0bwsKg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("AIDhc3KCK7w", _ZN3sce2np9WorkQueueD2Ev) +STUB("AIG2nY8Ppyg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V120PlayerJoinableStatusEEC1EPS6_) +STUB("AIJaxwKOFM8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEEC2ERS7_) +STUB( + "AIJfF-npXdE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE6resizeEj) +STUB("AIL6Gy411DE", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_16SessionAttributeEEC1Ev) +STUB("AIMCjPPVWZM", _ZN3sce2np8NpTicketD1Ev) +STUB("AIOn++bTCGY", WKRenderLayerIsReflection) +STUB( + "AIQR4t8O-lY", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_19ProductInfoDetailedENS1_15AppSTLAllocatorIS5_EEEED1Ev) +STUB( + "AIWkUptoXFE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("AIa9v9Xc6SY", _ZN3sce7Toolkit2NP2V26Trophy16UnlockedTrophiesC1ERKS4_) +STUB("AImiaYFrKdc", sceAudioOutStopAuxBroadcast) +STUB( + "AIo2+FOIoZA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEC1Ev) +STUB( + "AIr6VaENo3Y", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("AIsLh7n-7oc", _ZNK7WebCore4Node18lookupNamespaceURIERKN3WTF12AtomicStringE) +STUB( + "AItEva+Cvhg", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer34setxPSNSESSIONMANAGERREQUESTORIGINEPKc) +STUB( + "AIwWvEWA9ys", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEixEm) +STUB("AJ3xhNOXs-A", sceVideoCoreInterfaceGetCanvasVideoBufferAddress) +STUB("AJ7+0UjKEww", _ZN3WTF7Unicode19convertLatin1ToUTF8EPPKhS2_PPcS4_) +STUB("AJDnHmUH1zw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEC1Ev) +STUB("AJGCoChPP4E", _ZNSt9_FacetptrISt5ctypeIwEE6_PsaveE) +STUB("AJH5ShL-Kro", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEmmEv) +STUB("AJHz2Jpq0IU", _ZN7WebCore11MathMLNames4initEv) +STUB("AJP3sETFdTI", sceCesMbcToUtf32) +STUB( + "AJRnU0Zod6c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEC1Ev) +STUB("AJRtFc+0VnA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEED2Ev) +STUB("AJUoYP9LJZI", GCC_except_table362) +STUB("AJX1HNQC45E", unorm2_getNFCInstance_67) +STUB("AJZG-TPbDC4", fuse_fs_flush) +STUB("AJq7lcfI+d8", Java_java_net_PlainSocketImpl_initProto) +STUB("AJqdktmWMrI", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312AccountIdMapC2EPNS1_6Common10LibContextE) +STUB("AJsqpbcCiwY", _ZTVSt8ios_base) +STUB("AJtHsjp5DCI", mspace_destroy) +STUB("AJtrVOudVB4", unorm2_isInert_67) +STUB("AJwcRGNkaWg", _ZN3sce7Toolkit2NP2V27Ranking7Request15GetRangeOfRanksC1Ev) +STUB( + "AJxQgAlbVqs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEixEm) +STUB("AK1Vjnd7Yuk", _ZNK7WebCore4Node18nextElementSiblingEv) +STUB( + "AK1gjkE4cf0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEE21intrusive_ptr_sub_refEPS7_) +STUB( + "AK3YfD2zNMM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE5beginEv) +STUB("AK7Q1jOwZQo", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEED1Ev) +STUB( + "AKAuczLoOv0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEE5resetEPS6_) +STUB("AKBLI5PUwRY", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_28AdditionalSessionInformationEEC1Ev) +STUB("AKCR+0T+VSo", delegate_virtual_invoke_imt_m_10_p) +STUB( + "AKCvSvrjbaM", + _ZN7WebCore16BlobRegistryImpl27populateBlobsForFileWritingERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEERNS2_INS0_18BlobForFileWritingELm0ES4_Lm16ES5_EE) +STUB( + "AKHnxKT5BSw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEeqERKS9_) +STUB("AKL3tIrm1WU", _ZN3sce7Toolkit2NP30DetailedProductInfoInputParamsC1Ev) +STUB( + "AKUj0jPxg4g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEEC2Ev) +STUB( + "AKWwyYGqMtE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEEC2ERSA_) +STUB( + "AKYiy2Xn9dY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEC1Ev) +STUB("AKZOzsb9whc", sceNetCtlApGetState) +STUB("AKduh-C7Ukw", WKRenderLayerGetPositiveZOrderList) +STUB("AKenFQbXGE0", ucnv_open) +STUB( + "AKfepwUvqIQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "AKgtbB2LWnk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEplEm) +STUB("AKiHGWhC2KU", _ZN3sce2np4CondD0Ev) +STUB("AKknh8Cx-V8", chroot) +STUB("AKpVSHUv0kc", WKBundleFramePauseTransitionOnElementWithId) +STUB("AKtZZ6Nu4wE", ucnv_bld_getAvailableConverter_67) +STUB("AKuB8V85ONQ", vzone_clone_67) +STUB( + "AL8GZoLsaS8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("ALB8UQSCLO8", _ZN3sce7Toolkit2NP27ChallengeGetItemListRequestC2Ev) +STUB("ALDJM2eel7E", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer12getdirectionEv) +STUB( + "ALEXgLx9fqU", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERl) +STUB("ALF3slG1nek", _ZN3JSC7Symbols25getThenFinallyPrivateNameE) +STUB( + "ALGQovVNKX8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEE5resetEPS9_) +STUB("ALGgrOH5g2g", ucnv_setSubstString_67) +STUB( + "ALGvYerBhPM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEEC1ERKSA_) +STUB("ALJjoV2HGrE", _ZL12ext_once_mtx) +STUB( + "ALQO24RYUVM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEppEi) +STUB("ALQqwDoJ6jo", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_21GameCustomDataMessageEE3getEv) +STUB("ALRqpSN31Vo", _ZN7WebCore12TextIterator8subrangeERNS_5RangeEii) +STUB("ALWBDkbvEF4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEEC1EPNS2_10LibContextE) +STUB( + "ALYkgZLowIY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEE7add_refEv) +STUB("ALZurOIZhys", YGNodeStyleSetDirection) +STUB("ALcclvT4W3Q", _ZTSSt10bad_typeid) +STUB("ALe7rCExPJ8", mono_aot_Sce_Vsh_Themejit_got) +STUB("ALj-caXHUZI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12FriendsRanksEED1Ev) +STUB( + "ALkslfocTfo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEEptEv) +STUB("ALmke7OyDYg", _ZTVN15AbstractStorage6FolderE) +STUB("ALqVlwdQJpI", _ZN7WebCore10protocolIsERKN3WTF6StringEPKc) +STUB( + "ALsadtzQI4Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB("ALtdQuwSy0A", _ZN3WTF4SHA111computeHashERSt5arrayIhLm20EE) +STUB("ALvv8s83TW0", mono_aot_System_Runtime_Extensionsjit_code_end) +STUB( + "ALyXkBnc9GE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("ALyjUuyowuI", sceUserServiceSetThemeEntitlementId) +STUB("AM+vFcFw6Uw", _Z38sceGpuDebuggerSetEnabledExceptionsMaskPN3sce3Gnm16PsStageRegistersEj) +STUB("AM5dbXp3qbI", __sanitizer_start_switch_fiber) +STUB("AM96SgGkDdk", _ZN3sce7Toolkit2NP2V210Tournament5EventC2Ev) +STUB("AMBQxmX0PhE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEaSERS7_) +STUB("AMBk3-1ITHg", _ZN7WebCore8SVGNames16writing_modeAttrE) +STUB("AMBngNURvqs", __asan_get_report_sp) +STUB("AMDhfKJMQNw", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product10mediaIsSetEv) +STUB("AMHAc7Xpl1M", pio2_2thi) +STUB("AMLRfnzY1CU", WKBundleBackForwardListItemHasCachedPageExpired) +STUB("AMMz7TNLoDg", _ZN3sce7Toolkit2NP2V28Commerce7Request29DisplayVoucherCodeInputDialogC1Ev) +STUB("AMNjai0JfVU", sceCesEucCnToUtf8) +STUB( + "AMNnCzp468w", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer15hascontainerIdsEv) +STUB( + "AMSF4v-jW3s", + _ZN3sce2Np9CppWebApi14SessionManager2V130PostPlayerSessionsResponseBody17setPlayerSessionsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_13PlayerSessionEEEEE) +STUB("AMUIydtUy7w", _ZN7WebCore7JSRange14finishCreationERN3JSC2VME) +STUB( + "AMW6dGp3ShU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEmmEi) +STUB("AMXD4SYEIIg", _ZN7WebCore12ISOWebVTTCueD0Ev) +STUB("AMdSKZsUnXc", _ZN3JSC7Symbols20polyProtoPrivateNameE) +STUB( + "AMev43YercI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE8pushBackERKS8_) +STUB("AMhoOLgG9e8", _ZN9Inspector18InjectedScriptBaseD2Ev) +STUB( + "AMjoZ5aN1ac", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V135FrequentlyMutedInGameMetricsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_28FrequentlyMutedInGameMetricsEEE) +STUB( + "AMp4pBvfw4I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEC1ERS7_) +STUB("AMrPlFNJec8", WKSessionStateCreateFromData) +STUB("AMvdjcTxfbs", _ZNK7WebCore11MediaPlayer19mediaCacheDirectoryEv) +STUB( + "AMzjf2brlcw", + _ZN15AbstractStorage13TwitterFolder9NewFolderERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_6FolderEE) +STUB("AN-Y1GUW+Sg", _ZN7WebCore18ScrollingStateNode8setLayerERKNS_19LayerRepresentationE) +STUB("AN23iFa9vBo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEED1Ev) +STUB("AN3h0EBSX7A", sceNpSignalingGetConnectionInfo) +STUB("AN4y+K+3-jU", __ubsan_handle_nullability_arg) +STUB( + "ANB19+6-3fg", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "ANGGvNOMOLQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "ANJDc6rDFyI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEppEv) +STUB("ANJssPz3mY0", sceNpScoreRecordScoreAsync) +STUB( + "ANKAIU4TdHc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEaSERS7_) +STUB("ANKg0lF2VSc", mono_domain_finalize) +STUB( + "ANM9x4eJJKU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE5emptyEv) +STUB("ANOe9iuJbWQ", sceMusicFwSkipPrevious) +STUB("ANRxBkkTRPg", _ZNK7WebCore9FrameTree12traverseNextEPKNS_5FrameE) +STUB("ANSEMiIMnOM", _ZN7WebCore4Page19userContentProviderEv) +STUB( + "ANW-ywnsY2w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEED1Ev) +STUB( + "ANWUVFX6N1o", + _ZN3sce2Np9CppWebApi14SessionManager2V129GetPlayerSessionsResponseBody17setPlayerSessionsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_20PlayerSessionForReadEEEEE) +STUB( + "ANWadiC8rwE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEmmEv) +STUB( + "ANau5pziTAM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("ANdfelUexnk", _ZN3WTF10StringImpl31convertToLowercaseWithoutLocaleEv) +STUB( + "ANiu7HG0epU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("ANjtSxtdCso", _ZN3JSC12DateInstance7destroyEPNS_6JSCellE) +STUB("ANmSWUiyyGQ", sceSaveDataGetProgress) +STUB("ANq4kcABc7A", _ZN3WTF3URLC2ERKS0_RKNS_6StringEPKNS_15URLTextEncodingE) +STUB("ANrzcyJG20E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V124RequestCooperativeResultEEC1EPS6_) +STUB("ANxMqv1m5ro", _ZN3JSC2VM19intlLocaleSpaceSlowEv) +STUB("ANxd0w7UNUQ", + _ZN8meta_gen11MsvPromoter18setDateMsvMetadataENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB("ANz-ClqTX+4", _ULx86_64_step) +STUB( + "AO+RQ7YWnXA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE4sizeEv) +STUB("AO+obtY0fJY", _ZN3JSC38NonExtensibleObjectPropertyDefineErrorE) +STUB("AO-FLhen3zw", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11TusVariableEEC1Ev) +STUB("AO0LHG1yvPw", _ZN7WebCore18TextureMapperLayer19setContentsTileSizeERKNS_9FloatSizeE) +STUB( + "AO2kbZXvITs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEC1EPS8_) +STUB("AO8OudSSOFo", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEEC1Ev) +STUB( + "AOD7rmu2xPY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE3endEv) +STUB( + "AOH5nX-W+Xo", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlot13isInitializedEv) +STUB("AOHUfTGOH-4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEC2Ev) +STUB("AOLcoIkQDgM", sceAgcDriverQueryResourceRegistrationUserMemoryRequirements) +STUB("AOQXgGyoOJw", _ZN7WebCore9HTMLNames8abbrAttrE) +STUB( + "AOVzug96SLU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEEptEv) +STUB("AOWqIYsgVHs", sceContentExportFromData) +STUB( + "AOXCKofywTM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEppEi) +STUB( + "AOdcDUU4SyM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEC1Ev) +STUB( + "AOdeefsS1Js", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("AOojoKFjiQY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEE7add_refEv) +STUB( + "AOpNUQ7Ah1c", + _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container21setContentDescriptorsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_17ContentDescriptorEEEEE) +STUB( + "AOtCFXbt6og", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE8capacityEv) +STUB("AOujSGqU+ms", sceFiosFHCloseSync) +STUB( + "AOw2gfsSN-8", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetInteger9Ev) +STUB( + "AOwtjDAmCB8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "AP+sL-J1zSQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE5beginEv) +STUB("AP3uK6E-25s", __tsan_atomic128_fetch_sub) +STUB("AP4g3QKWeFg", WKHTTPCookieStoreSetHTTPCookieAcceptPolicy) +STUB( + "AP5LzDEfb1g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "AP70azXJdj0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEeqERKS9_) +STUB("APAcjNNVeDQ", jpeg_start_decompress) +STUB("APE85iQ98s8", _ZNK3sce2Np9CppWebApi7Matches2V17Subtask6toJsonERNS_4Json5ValueEb) +STUB( + "APJtOdfJvlw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEE3getEv) +STUB( + "APKVz7tDrWA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "APP6PNgxyIA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEE3getEv) +STUB( + "APPFgVM2CdU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "APQAGXZ6pIw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEC1Ev) +STUB("APTXePHIjLM", sceFontGraphicsAppendGradientSegment) +STUB( + "APXMNs2+0I0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEptEv) +STUB( + "APc0Mmlyu5I", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEEcvbEv) +STUB("APeZW7E9trc", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament6EventsEE3setEv) +STUB("APjMbicny1Q", glFinish) +STUB("APmhwAq4gf8", ssave) +STUB("APozXwT-c+I", shmdt) +STUB("APqGFOC7Upo", _ZN7WebCore3URLC2ERKS0_RKN3WTF6StringE) +STUB("APrAh-3-ICg", _ZTVSt10moneypunctIwLb1EE) +STUB("APswSWmsPg4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEEppEv) +STUB("APuq-SZJRo8", sceDataTransferTargetRequestLaunch) +STUB("AQ680L4Sr74", sceUserServiceSetIsRemotePlayAllowed) +STUB( + "AQAM5h9zq5Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEC1Ev) +STUB( + "AQBadyACkJc", + _ZN7WebCore22EmptyFrameLoaderClient41dispatchDidReceiveAuthenticationChallengeEPNS_14DocumentLoaderEmRKNS_23AuthenticationChallengeE) +STUB("AQL3jxrBaOI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEEixEm) +STUB("AQPe-ArsI6M", + _ZN3sce7Toolkit2NP2V28Presence7Request11SetPresence28MAX_SIZE_DEFAULT_GAME_STATUSE) +STUB("AQTcevtsafI", + _ZN7WebCore31BasicColorMatrixFilterOperation6createEdNS_15FilterOperation13OperationTypeE) +STUB("AQV4A8YFx44", sceNpAppLaunchLinkIntAbortRequest) +STUB("AQbiF0Fxboc", g_UseAudio3dBackend) +STUB("AQgbLb+eZ2M", _ZN3JSC44UnconfigurablePropertyChangeWritabilityErrorE) +STUB("AQkj7C0f3PY", sceNgs2SystemResetOption) +STUB("AQlqO860Ztc", _ZTSN10__cxxabiv120__si_class_type_infoE) +STUB("AQsAMoRBkLE", _ZN12Mp4Retriever14mp4DbFieldInfoE) +STUB("AQyiYChNI0c", _ZN3sce2np8NpCommIdC1Ev) +STUB( + "AQysrLpIvus", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEC2EPKS8_) +STUB( + "AR-xO5Kpgeo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEixEm) +STUB("AR9ZlkEfHkc", _ZN7WebCore9TimerBaseD2Ev) +STUB( + "ARB9Id4Go9o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE7popBackEv) +STUB( + "ARCruLmoSYw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEmmEv) +STUB("AREt+4e0IIM", YGNodeStyleGetJustifyContent) +STUB("ARGN7-Aio+g", _ZN3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsSearchRequestBodyD2Ev) +STUB("ARGWfG7+2CQ", _ZN3sce7Toolkit2NP2V24Core7Request20DefaultRequestParamsC2Ev) +STUB("ARQuup8gtks", _ZNK7WebCore11JSDOMWindow5eventERN3JSC14JSGlobalObjectE) +STUB("ARS+TNLopyk", sceGnmSqttGetWritebackLabels) +STUB("ARU2nmAcaKI", + _ZN3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator16setJoinTimestampEPKc) +STUB("ARVl0+Yjsd4", _ZN3sce7Toolkit2NP2V211SharedMedia9BroadcastC2Ev) +STUB("ARZszYKvDWg", _ZNKSt7_MpunctIcE16do_positive_signEv) +STUB("ARai7ZRDpHs", sceTsSetAvailableBW) +STUB("ARcyRMoScR8", _ZN3WTF12AtomicString16fromUTF8InternalEPKcS2_) +STUB("AReNPwiiL3Q", Java_java_io_FileInputStream_initIDs) +STUB("ARhgpXvwoR0", sceVrTrackerGpuWaitAndCpuProcess) +STUB("ARjjKibRs0A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEE3getEv) +STUB( + "ARk0TecFxk0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEmmEv) +STUB("ARlY6zhSacE", BIO_new) +STUB( + "ARmCwlQ6pH4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEppEi) +STUB("ARowrgmuN94", sceDebugReadThreadRegister) +STUB("ARrbEsbHQlI", _ZN7WebCore21DiagnosticLoggingKeys28canceledMoreThan20SecondsKeyEv) +STUB("ARuPIlCJ1zA", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody17getNpServiceLabelEv) +STUB( + "AS1ADdtdIsM", + _ZN9Inspector25TimelineBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("AS1AsnCMEQo", _ZN7WebCore8SVGNames21stroke_dashoffsetAttrE) +STUB( + "AS1rCnSRF1g", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE8sendDataEPKvm) +STUB("AS45QoYHjc4", _Z5dummyv) +STUB("ASCvvxlvfMc", _ZN3sce2Np9CppWebApi14SessionManager2V16FriendC1EPNS1_6Common10LibContextE) +STUB("ASEeRny5+-8", _Z24receiveIpmiDisconnectResiPi) +STUB("ASH2Xwo63xM", _ZNK7WebCore5Range4textEv) +STUB("ASKQRVIwzl4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEEixEm) +STUB( + "ASKjjqIa4a0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEaSERS7_) +STUB( + "ASLp3rG5ce8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEE7get_refEv) +STUB("ASUJmlcHSLo", _ZNSt11regex_errorD0Ev) +STUB("ASURmjcE44E", _ZNK3sce2Np9CppWebApi14ConnectAccount2V214PSNError_error14getReferenceIdEv) +STUB("ASUric-2EnI", sceGnmSqttSetTraceBuffers) +STUB("ASVb7Y-pR4Y", sceKernelSandboxPath) +STUB( + "ASXpsyCEU2A", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB( + "ASXvzCPdypc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEaSERKS8_) +STUB("ASaQoxJfvKs", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V113SubtaskStatusEEC1EPS6_) +STUB("AScfeiXP3kk", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119SubtaskAvailabilityEEmmEi) +STUB("ASfhwEyh1cI", _ZN7WebCore22CanvasRenderingContext5derefEv) +STUB("ASk3zod9RiY", u_charDirection_59) +STUB("ASltWpUx6Zg", _ZN3WTF8JSONImpl5Array6createEv) +STUB( + "ASnQgOs+RIo", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13boolean6IsSetEv) +STUB("ASoW5WE-UPo", sceKernelAprSubmitCommandBufferAndGetResult) +STUB("ASonnwltwEk", sceNpAppInfoIntCheckAvailabilityA) +STUB("ASpOjs5DfLM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEED2Ev) +STUB( + "ASpxuSqg9dE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "ASqMHFuTF50", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE21intrusive_ptr_add_refEPS9_) +STUB("AT0TAY74nQw", sceSlimglServerSetupGetDomainSocket) +STUB("AT6NySjQ2gY", sceLoginMgrServerCreateUser) +STUB("AT9BnSw1bsQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEC2ERKS7_) +STUB("ATCtfvLzY5E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEC1ERKS7_) +STUB( + "ATJNKevSqi4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEE11release_refEv) +STUB("ATJaPHE0IC0", WKContextConfigurationSetWebProcessPath) +STUB("ATKLe+rQEMM", _ZNK3JSC2VM19vmEntryGlobalObjectEPKNS_9ExecStateE) +STUB("ATOg2BQlWBY", __asan_report_load4_noabort) +STUB("ATPVUw7-QEM", _ZN7WebCore13HitTestResultC2ERKNS_10LayoutRectE) +STUB("ATRGkmbolVM", sceVoiceQoSEnd) +STUB( + "ATRUUclaAqw", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetInteger1Ev) +STUB( + "ATTJa+W3c84", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEE7get_refEv) +STUB( + "ATW2xBGlLXA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEE11get_deleterEv) +STUB("ATYj6zra5W0", _ZNKSt5ctypeIwE10do_tolowerEw) +STUB("ATdq3mGwqqU", sceVideoStreamingEngineMediaKeySystemAccessGetKeySystem) +STUB("AThB5CvMing", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEptEv) +STUB( + "ATjJU3U3E-E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEmmEv) +STUB("ATlsETVPp4g", mono_image_open) +STUB("ATpTPg64JhM", _Wctombx.initial) +STUB("ATqkQdniUJk", mono_aot_Sce_PlayStation_HighLevel_UI2Platformjit_got) +STUB( + "ATsAcZ29TIE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEC2EPS8_) +STUB( + "ATu+X2YWJSw", + _ZN3sce2Np9CppWebApi14SessionManager2V124GameSessionMemberForRead13setSpectatorsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_20GameSessionSpectatorEEEEE) +STUB( + "ATy-kHngKaM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEC2Ev) +STUB("AU2gZbRq+XY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE5emptyEv) +STUB("AU5+XoLXqFc", _ZN7WebCore14JSWebAnimation15subspaceForImplERN3JSC2VME) +STUB("AU6pxhbAexg", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V115NatConnectivity11unsetGlobalEv) +STUB("AU7CH6OFMb4", _ZN7WebCore22identifierToByteStringERN3JSC9ExecStateERKNS0_10IdentifierE) +STUB("AU87qNukGi4", sceAgcDriverSetWorkloadStreamInactive) +STUB("AUCJoipMdAY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEmmEv) +STUB( + "AUDPBckmkfg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("AUHMFmvHx08", mono_debug_symfile_lookup_locals) +STUB("AUIHb7jUX3I", sceNpUniversalDataSystemDestroyHandle) +STUB("AULWgkh4sn4", _ZTVN7WebCore6ISOBoxE) +STUB( + "AUP5MRpNXLs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEmmEi) +STUB("AUQ+0l3kKz0", _ZN3sce7Toolkit2NP2V210Tournament6EventsD1Ev) +STUB("AURXo5jFRu0", sceHidControlGetJediExtensionUnitInfo) +STUB("AUVfU6byg3c", sceNpMatching2KickoutRoomMember) +STUB( + "AUVq5kL5XFk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEEcvbEv) +STUB("AUW6at2PxHs", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12BlockedUsersEE3getEv) +STUB("AUXVxWeJU-A", sceKernelUnlink) +STUB("AUXrEfs0cTo", + _ZN3sce7Toolkit2NP11UserProfile9Interface11getPlatformEPNS1_9Utilities6FutureIiEEb) +STUB("AUYdq63RG3U", sceLibcPafMspaceTrim) +STUB( + "AUYtRH+dtMQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEE11release_refEv) +STUB("AUbtwPEbmXo", kmq_timedreceive) +STUB("AUcgHfu+700", _ZN7WebCore11ImageBufferD2Ev) +STUB("AUgku96mkGc", _ZN7WebCore20HTMLTableCellElement8setScopeERKN3WTF12AtomicStringE) +STUB("AUjbNpPv8xk", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEEptEv) +STUB( + "AUkgSifPWfE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE8pushBackERKS8_) +STUB("AUla1en6inE", strtof.fpi0) +STUB( + "AUlln5em9R8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEED2Ev) +STUB("AUn2aRDId28", WKWebsiteDataStoreConfigurationCopyCacheStorageDirectory) +STUB( + "AUn539IKYCk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEptEv) +STUB("AUoChK8Xsus", vm_send_CreateDomain) +STUB("AUqJNkobQ1c", physhm_unlink) +STUB("AUqKSgnOwRc", _ZN9Inspector29AuditBackendDispatcherHandlerD1Ev) +STUB( + "AUrZewA40Vo", + _ZN7WebCore11ImageBuffer6createERKNS_9FloatSizeENS_16ShouldAccelerateENS_20ShouldUseDisplayListENS_16RenderingPurposeEfNS_10ColorSpaceEPKNS_10HostWindowE) +STUB("AUs1-hnmHdA", __cxx_global_var_init .28) +STUB("AUskqPkbmT4", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead21unsetSearchAttributesEv) +STUB("AUt1u0HvSCI", JVM_GetMethodIxByteCode) +STUB("AUuzKQIwhXY", sceNpManagerIntAbortRequest) +STUB( + "AUwpb5r0tJw", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26RecordScoreResponseHeaders26unsetXPsnAtomicOperationIdEv) +STUB("AV+hAwHmjd4", _ZN3sce7Toolkit2NP2V27Session7SessionC2Ev) +STUB( + "AV20HPic28M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("AV5jHo8O3+E", _ZN3sce2np10EventQueue7EnqueueEPKvmj) +STUB("AV6ipCNa4Rw", strcasecmp) +STUB( + "AV7-okeR0Ys", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEmmEi) +STUB( + "AVAGLuOnhm4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEE7add_refEv) +STUB("AVBWiTSDdMg", _ZN3JSC19HeapSnapshotBuilder34resetNextAvailableObjectIdentifierEv) +STUB("AVEEb57HhUw", FT_Glyph_Transform) +STUB("AVEvkhr0OO4", mono_get_exception_appdomain_unloaded) +STUB("AVGpTCwrL5U", _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEED2Ev) +STUB("AVK5pOlvnc4", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13boolean1IsSetEv) +STUB("AVNqVT39rEA", _ZTVN9Inspector32TimelineBackendDispatcherHandlerE) +STUB("AVNvDtVEYxA", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setInteger5ERKi) +STUB( + "AVd1Vw6lLLs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEC2EPS8_) +STUB("AVhyz3DmAWc", utrans_unregisterID_67) +STUB("AVr6AKXGc0M", scePadVrControllerGetTriggerEffectStates) +STUB( + "AVrK9o8vZcY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("AVskck6Ei5A", _ZN3sce3Xml3Dom8Document12setAttrValueENS1_6NodeIdEPKNS0_6StringES6_) +STUB("AVtf1JiYnQI", sceHidControlDisconnectHandle) +STUB("AVydhxF55z0", ucnv_unloadSharedDataIfReady_67) +STUB("AVyuvygnd0w", SystemDialogOpen) +STUB("AW42cyp174Q", rgctx_fetch_trampoline_mrgctx_125_p) +STUB( + "AWDXFOS7zq8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEE7get_refEv) +STUB( + "AWF7N--deiQ", + _ZN3sce2Np9CppWebApi14SessionManager2V159PostGameSessionsSessionIdMemberSpectatorsRequestBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_27RequestGameSessionSpectatorEEEEEPNS9_INS3_52PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEE) +STUB("AWHt8gDYjEU", png_get_gAMA) +STUB("AWITin0sqdk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEdeEv) +STUB("AWQ7UtNyAYQ", _ZN3JSC16setNeverOptimizeEPNS_14JSGlobalObjectEPNS_9CallFrameE) +STUB("AWS3NyViL9o", scePthreadMutexGetyieldloops) +STUB("AWTs12FyKEg", _ZN3sce7Toolkit2NP2V27Session16FixedSessionDataC2Ev) +STUB("AWWg03aji6s", + _ZN7WebCore17JSHTMLLinkElement15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "AWgbb2mDp1c", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEneERKS9_) +STUB( + "AWl7dAm1FTs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEC1Ev) +STUB( + "AWov8+gA4i0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEED2Ev) +STUB("AWvkva1I29A", WKPageLoadDataWithUserData) +STUB("AWwyuOnNIvw", Java_java_lang_StrictMath_log1p) +STUB( + "AX1WCc5aIyA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE5clearEv) +STUB("AX32XHkRqYI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE3endEv) +STUB( + "AX3kyrL8t-M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEC1EPKS8_) +STUB( + "AX3m7w9z0Mk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("AX96SAijGUI", + _ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession19getSearchAttributesEv) +STUB("AX97ONJpZ+Y", JVM_Sleep) +STUB( + "AXBfG6c2F9Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "AXGH6VLhXAg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEneERKS9_) +STUB("AXGJtPl3VZY", il2cpp_unity_liveness_calculation_from_statics) +STUB( + "AXN33YB6nOM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEEcvbEv) +STUB( + "AXObhMCkmRs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB( + "AXPjQ+kk+g4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEC1EPS7_PNS2_10LibContextE) +STUB( + "AXTWyp43nSs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEEC1Ev) +STUB("AXXEjyZq2mE", sceMbusDebugReenableBgmForShellUi) +STUB("AXfM18qkbrc", _ZNSt15basic_streambufIcSt11char_traitsIcEE8pubimbueERKSt6locale) +STUB("AXgKDNch+9g", X509_get_ext_count) +STUB("AXh4kwbspSs", sceGnmValidateAndSubmitCommandBuffers) +STUB( + "AXi3EjlZW08", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEptEv) +STUB("AXiTbrEiZA8", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge18ChallengeThumbnailEED2Ev) +STUB( + "AXjgwBUtS6s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE8pushBackERKS8_) +STUB("AXkUptcZr1w", WKBundlePageUninstallPageOverlay) +STUB( + "AXkx430PDgU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEEC2ERKSC_) +STUB("AXsvyvweIck", _ZN3sce3Xml3Dom4NodeC1ENS1_6NodeIdE) +STUB( + "AXtieTDmrsw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("AXyUy4sOVuY", _ZN7WebCore24contextMenuItemTagItalicEv) +STUB("AXzFm00pyhE", _WGenld.lzero) +STUB("AY+T-PtKbAE", _ZN3sce7Toolkit2NP2V212EventsClient22EventOfficialBroadCastC1Ev) +STUB( + "AY4Hd7YrQ8E", + _ZNK3sce2Np9CppWebApi14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBody6toJsonERNS_4Json5ValueEb) +STUB("AY5HtCxTNwQ", _ZN7WebCore11JSDOMMatrixC1ERKS0_) +STUB( + "AY7aP+BFdfw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEE7add_refEv) +STUB("AY8CiwVoepc", mono_btls_x509_store_new) +STUB( + "AYAFx5Ey5rQ", + _ZN3sce2Np9CppWebApi14SessionManager2V132RequestPlayerSessionMemberPlayer8fromJsonERKNS_4Json5ValueE) +STUB("AYAo2OsntHU", _ZN3sce7Toolkit2NP2V23TUS7Request18GetFriendsVariableC2Ev) +STUB("AYBQmnRplrg", sceSaveDataDebugTarget) +STUB("AYEmKwgRfRI", Java_com_sony_gemstack_org_dvb_application_AppsDatabaseImpl_n_1disableCallbacks) +STUB("AYHa8PfwL1I", + _ZThn16_N9Inspector21InspectorRuntimeAgent19setSavedResultAliasERN3WTF6StringEPKS2_) +STUB( + "AYLmObq3c-w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEE11release_refEv) +STUB( + "AYLsni6UxKw", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("AYOSrFpKHUE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEEC2Ev) +STUB("AYPXlrp3urc", _ZN3JSC7Symbols17toPrimitiveSymbolE) +STUB("AYQqXkf4Z4c", u_strFromUTF32WithSub_67) +STUB( + "AYSrXrov3lk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "AYWiw3WM0ME", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEE11release_refEv) +STUB( + "AYZqLijiKR8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEmmEi) +STUB("AYaZ5CHXzNA", _ZNK7WebCore16TrackPrivateBase17startTimeVarianceEv) +STUB("AYbQS0FkE3c", sceSystemLoggerSetLogData) +STUB("AYdagz+jPcI", _ZN3sce2Np9CppWebApi12Leaderboards2V14UserC2EPNS1_6Common10LibContextE) +STUB( + "AYgEVTXrXFc", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "AYoiikXU280", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEEC2ERSA_) +STUB("AYp8AgxYQC8", _ZN7WebCore9HTMLNames10bgsoundTagE) +STUB("AYvKpqUe04E", _ZN3sce7Toolkit2NP2V212ActivityFeed13UsersWhoLikedC2Ev) +STUB("AYvkDhdPHzU", mono_aot_Sce_Vsh_Np_ServiceChecker2plt) +STUB("AYyuTwPxtAU", _ZN3sce7Toolkit2NP2V24Core13CallbackEvent5resetEv) +STUB("AYyxvDy-SFU", _ZN4IPMI4impl11SessionImpl26respondToSyncMethodRequestEiPKNS_10BufferInfoEj) +STUB("AZ+JE981Lgg", _ZNK7WebCore21BackForwardController9backCountEv) +STUB("AZ+cnefiiHg", delegate_virtual_invoke_imt_18_p) +STUB("AZ--mVLFgKQ", Java_java_io_FileInputStream_skip0) +STUB("AZ2TuCjJ4J8", sceApplicationDeclareShellCore) +STUB("AZ4eAlGDy-Q", sceNpScoreGetRankingByRangeForCrossSaveAsync) +STUB("AZ5bMttGzKA", jpeg_quality_scaling) +STUB("AZ9iWcpNRPk", mono_declsec_get_assembly_action) +STUB("AZCGnCb-TH8", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSessionC2EPNS1_6Common10LibContextE) +STUB( + "AZE7gB9J20A", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE5beginEv) +STUB("AZFXXpZJEPI", sceUserServiceSetImeRunCount) +STUB("AZGKZIVok6U", _ZTVSt18bad_variant_access) +STUB("AZH1GjEJS9s", _ZN3sce7Toolkit2NP6Trophy9Interface12trophyUnlockEibi) +STUB("AZTMWob-mog", _ZN3sce2np10MemoryFile4SyncEv) +STUB( + "AZUx09eRXk4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE5beginEv) +STUB("AZVNKb4AFZE", _ZN3sce2Np9CppWebApi6Common6VectorIdE21intrusive_ptr_add_refEPS4_) +STUB("AZb2Bl9bMsk", _ZN4Manx21DisplayRefreshMonitorD1Ev) +STUB("AZbcxbfE7Ik", WKUserMediaPermissionRequestAudioDeviceUIDs) +STUB("AZdUgKbmWZM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEEC1ERS7_) +STUB( + "AZgolazGh+M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("AZmSVK2KvL4", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchStatus9terminateEv) +STUB("AZoGz-UFAp4", mono_gc_wbarrier_generic_nostore) +STUB( + "AZoPJEyeiOk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEE5resetEPS9_) +STUB("AZpheaKroNY", freeVideoMemory) +STUB("AZsPtFoHAZ8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody10unsetLimitEv) +STUB("Aa02of1NSls", mono_aot_Sce_Vsh_GriefReportplt) +STUB("Aa2O2EG2zrI", _ZThn16_N9Inspector21InspectorRuntimeAgent6enableERN3WTF6StringE) +STUB("Aa8cXoodZg4", + _ZN7WebCore4Path14addRoundedRectERKNS_9FloatRectERKNS_9FloatSizeENS0_19RoundedRectStrategyE) +STUB("AaFh1H8YTPY", sceNpTrophy2SystemGetTrophyDetails) +STUB("AaU89EqjdQ4", _ZN3WTF10SymbolImpl17nextHashForSymbolEv) +STUB("AaVc2ZX5wCI", sceUpsrvUpdateCheckGetUpdatelistURL) +STUB("Aacl5qkRU6U", sceAudio3dStrError) +STUB("Aajiktl6JXU", sceHmdInternalGetVr2dData) +STUB("AakTChmIbPY", u_tolower_59) +STUB( + "AamWGSiwlLs", + _ZN7WebCore11DisplayList18FillCompositedRectC2ERKNS_9FloatRectERKNS_5ColorENS_17CompositeOperatorENS_9BlendModeE) +STUB( + "AaotzMpnXPg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEE5resetEPS9_) +STUB("AaqV6yDcQTM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE6resizeEj) +STUB( + "Aar99jHKE3g", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEdeEv) +STUB( + "AasUDqNyd7Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEE11get_deleterEv) +STUB("Aast7knICYE", _ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody11getLocationEv) +STUB( + "AatuMYO1dHQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEE21intrusive_ptr_sub_refEPS7_) +STUB( + "AawHDpsapd4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEED1Ev) +STUB("AawjM-DVEyQ", _ZNK7WebCore10ScrollView16windowToContentsERKNS_7IntRectE) +STUB("Aay9fr+bfQo", mono_aot_Sce_Vsh_FileSelectorAdvancemethod_addresses) +STUB("Ab-yq+iJFlE", _ZN3JSC23getUint16ArrayClassInfoEv) +STUB("Ab0R4oOE-DY", glWaitSync) +STUB( + "Ab2SnolJqnM", + _ZN9Inspector23CanvasBackendDispatcher14startRecordingElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("Ab5wMfsZNvc", ucurr_getDefaultFractionDigitsForUsage_67) +STUB("Ab7+DH+gYyM", sceSslLoadCert) +STUB( + "Ab8--gGJiXg", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsers35getxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB("Ab947VoiFCI", _ZN3sce7Toolkit2NP2V28Commerce7Request27DisplayCategoryBrowseDialogC1Ev) +STUB("AbA05b6nRfY", JSPropertyNameArrayGetNameAtIndex) +STUB("AbBUw4SUvoY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEEC2ERKS7_) +STUB( + "AbBawmiAWY8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEC2Ev) +STUB("AbHqWS1Qc3g", uprv_toupper_67) +STUB( + "AbTD3obgjpw", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_8Debugger5Scope4TypeEEESt8optionalIT_ERKN3WTF6StringE) +STUB("AbYvTOZ8Pts", sceNgs2VoiceRunCommands) +STUB("AbaLEol7ssM", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIfEneERKS4_) +STUB( + "AbdK21Mm1Js", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEEC1ERKSA_) +STUB("Abendgtz+3o", sceAgcCbDispatchGetSize) +STUB("AbiIaBA50I0", sceMusicPlayerServiceBeginTransaction) +STUB("Abv1Cb-pj2w", _ZN7WebCore22ResourceLoadStatistics5mergeERKS0_) +STUB( + "AbwUgraIKyc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEC1Ev) +STUB("AbxQCXQKsNY", _ZN7WebCore13ContainerNode22getElementsByClassNameERKN3WTF10AtomStringE) +STUB( + "AbxUlol33W4", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayer9terminateEv) +STUB("AbyOZRESLWY", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_21GameCustomDataMessageEE3getEv) +STUB( + "AbywYIucBPo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEE5resetEPS8_) +STUB("Ac3I81u9ky4", sceShellCoreUtilGetImposeMenuFlagForPs2Emu) +STUB( + "Ac4I-XQuOgU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEplEm) +STUB("Ac4aVZAfP3U", u_vsscanf_67) +STUB("Ac4nZvBPfYU", _ZN7WebCore28InspectorFrontendClientLocal15dispatchMessageERKN3WTF6StringE) +STUB("Ac86z8q7T8A", sceKernelExitSblock) +STUB("Ac9Gy-vmaIM", _ZN12video_parser13cVideoMetaMP417getTimeZoneOffsetEPs) +STUB("AcARz3iay1I", sceMbusEventDestroy) +STUB("AcDNpEpoT9U", sceShareCaptureVideoClipExtended) +STUB("AcG6blobOQE", _ZN3sce2np4Path6SetStrEPKcm) +STUB("AcHZv3fOM6A", g_ptr_array_remove_fast) +STUB( + "AcHirYSl0HA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEC1EPNS2_10LibContextE) +STUB( + "AcItPXx6-cQ", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124BandwidthUpstreamMetrics8fromJsonERKNS_4Json5ValueE) +STUB( + "AcMT1Y+7ixU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE8pushBackERKS8_) +STUB("AcWqxTxm6L8", WKViewHandleWheelEvent) +STUB( + "AcWy2lejOuQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("AcamLEVLvZs", _ZN7WebCore8SVGNames10originAttrE) +STUB("AceRR9y6-ss", sceTextToSpeechResumeImpl) +STUB("AcgrOfh90VA", WKPreferencesGetCrossOriginWindowPolicyEnabled) +STUB("Acl7E8U+V44", _ZN3WTF8WordLock8lockSlowEv) +STUB( + "Acl7JiN54CU", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10getString2Ev) +STUB("AcruVcmKz78", scePigletReleaseVideoMemoryEx) +STUB("AcslpN1jHR8", scePadDeviceClassGetExtendedInformation) +STUB("ActTHWrmwbo", sceAvControlSetDefaultAudioOutMode) +STUB("Actd3LlAN40", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi20ParameterToJoinMatchC2ERS5_) +STUB("Acyg4vTdGm0", sceHmd2ReprojectionGetCurrentOutput) +STUB("Acz3w+5PgUA", _ZNK7WebCore12RenderObject39pixelSnappedAbsoluteClippedOverflowRectEv) +STUB( + "Ad-Q5VkVJgE", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEEiRNS2_10LibContextEPT_m) +STUB( + "Ad0B0ud+xo8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEC2Ev) +STUB("Ad56ZKck1GU", _ZN3NTF21ResourceRequestLoggerC1Ev) +STUB( + "Ad5hf0cYboo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE7reserveEi) +STUB("Ad9LVYzibBM", _ZN7WebCore17FrameLoaderClient24didRestoreScrollPositionEv) +STUB("AdF7IVgWOEE", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils12Notification15UserStateChangeEEC1Ev) +STUB( + "AdQOA51emuk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEE5resetEPS6_) +STUB( + "AdSFWRF1Hhs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE8pushBackERKS8_) +STUB( + "AdWdjSQLBEI", + _ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_18PlayerForOfferReadEEEEE) +STUB("AdYIJfkKh-Q", _ZN3sce2Np9CppWebApi6Common8IteratorINS2_6StringEEC1Ev) +STUB("AdYYKgtPlqg", _rtld_get_stack_prot) +STUB("AdhbdaLsiik", _ZN3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse17setTotalItemCountERKi) +STUB("Adk-gZhFBwM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEEC1ERS6_) +STUB("AdkcXAOQDl8", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEEC1Ev) +STUB( + "Adm+gJjIE18", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE5startEPNS2_10LibContextE) +STUB("Ads7t69vHBk", glIsQuery) +STUB( + "AdtWyM147jA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEdeEv) +STUB("AdwRm4rOp6s", makeDeciHeader) +STUB( + "Adwlji+y+h8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEEptEv) +STUB("Ae4xNo4KBwU", _ZN7WebCore9HTMLNames6bigTagE) +STUB("Ae5yw4TYq-8", WKCookieManagerGetTypeID) +STUB("Ae7Kk0Xypu0", _ZN7WebCore4PathaSERKS0_) +STUB("AeCkyuoYGuA", mono_aot_Sce_Vsh_SessionInvitationjit_code_end) +STUB( + "AeD0Ymq7ezE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "AeE2dAGAuU4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEE7add_refEv) +STUB("AeGaY8JrAV4", sceUsbdLockEventWaiters) +STUB( + "AeMw7OaV8ls", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE8copyFromERKS9_) +STUB("AeRVQduA3e4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEED2Ev) +STUB( + "AeRzMFIAhHk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE10setContextEPNS2_10LibContextE) +STUB("AeSfYEtVSKg", _ZN3sce7Toolkit2NP2V210Tournament5MatchD1Ev) +STUB("AeTgkm3kN-k", _ZN3JSC10ConfigFile20setParentProcessNameEPKc) +STUB( + "AeUY8h8BTBk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEC1EPS8_) +STUB( + "AeW84iJUywc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEC1ERS7_) +STUB( + "AeXbbp5Oh4I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEED1Ev) +STUB("AeZTCCm1Qqc", fegetround) +STUB("AeaD2Qmh6B0", mono_gc_get_heap_size) +STUB("AehsN7SFbQA", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchDetailD1Ev) +STUB("AekenVbSWcY", _ZN3sce2Np9CppWebApi14SessionManager2V131JoinedPlayerSessionWithPlatformD2Ev) +STUB("AenKAXoYO0A", bemp2sys_tsdecoder_destroy) +STUB("AepOyHjQFAc", _ZN3sce7Toolkit2NP2V26Friend12Notification15BlocklistUpdateC1ERKS5_) +STUB("Aeu5wVKkF9w", sceHttpCreateRequestWithURL) +STUB( + "Af2I3Cnrft8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEdeEv) +STUB( + "Af30sxCwTTg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("Af5zmblQJjI", Java_java_lang_System_setOut0) +STUB("Af6qMnbcSqI", _ZThn112_N7WebCore9DOMWindowD0Ev) +STUB( + "AfA76M4URj4", + _ZN3sce2Np9CppWebApi7Matches2V126RequestTeamMemberStatistic8setStatsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_19AdditionalStatisticEEEEE) +STUB("AfCYbPzNADg", mono_images_init) +STUB("AfDLbTnIsYc", sceBgftServiceIntDownloadReregisterTaskPatch) +STUB("AfFITaJQwlo", _ZN7WebCore8SVGNames23preserveAspectRatioAttrE) +STUB( + "AfFlkyb3Dpw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEC2EPKS8_) +STUB("AfI6pPRlI34", sceFaceIdentifyGetFeature) +STUB("AfIDd+2ycTs", sceCamera2SetWhiteBalance) +STUB( + "AfK1sH3UHkE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB("AfL-nqNC5fY", FT_MulDiv_No_Round) +STUB("AfMxh2e9V3Q", getlogin) +STUB("AfORewp+ARE", _ZN7WebCore26IdentityTransformOperationC2Ev) +STUB("AfSfLDJiEK0", _ZN3sce2Np9CppWebApi6Common6VectorIjE6resizeEj) +STUB("AfTHcCnZkhE", u_strtok_r) +STUB("AfX8I7C66fE", _ZNK3sce2Np9CppWebApi7Matches2V15Error7getCodeEv) +STUB("AfY2Uq3R494", sceVshAvcapSetStaticInfo) +STUB( + "AfZ7IUj9RWQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEE11get_deleterEv) +STUB("AfexwR3oSR8", WKPageIsMockRealtimeMediaSourceCenterEnabled) +STUB( + "AfgnYbxt3xY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEE11get_deleterEv) +STUB( + "Afik3jzm0G4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEEaSERKSA_) +STUB("AfoZyRwpc00", + _ZN9Inspector17ScriptDebugServer22exceptionOrCaughtValueEPN3JSC14JSGlobalObjectE) +STUB("AfpvtwJKVF0", _ZN3sce7Toolkit2NP2V27Session11SessionDataD1Ev) +STUB("AfpzINLrJ8M", uscript_isCased) +STUB("AfttByu5ALE", _ZN7WebCore11DisplayList8DrawLineD1Ev) +STUB("AfuS23bX6kg", getgid) +STUB("AfyQflYRLDA", _ZN3sce7Toolkit2NP2V212ActivityFeed7CaptionC2Ev) +STUB( + "Ag+W8uLitug", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEeqERKS9_) +STUB( + "AgCfXWfrJKs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEC2EPNS2_10LibContextE) +STUB("AgDmpIIO0Co", _ZNK3sce2Np9CppWebApi7Matches2V120ResponseInGameRoster12playersIsSetEv) +STUB("AgG+Cb2Bigs", _ZN3sce7Toolkit2NP2V27NpUtils5IdMapD1Ev) +STUB("AgI4Yii9cgI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_17TitleCloudStorage2V19ConditionEEptEv) +STUB( + "AgJrWsGmmi4", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getBoolean1Ev) +STUB("AgPFrfHPJNY", ures_swap) +STUB("AgYSGAQGtXs", sceShellCoreUtilCleanupCrashReport) +STUB("AgaOBmlvd1U", _ZN7WebCore9HTMLNames15onbeforecutAttrE) +STUB("Agb5P41DSzo", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112UpdateStatusEEeqERKS7_) +STUB( + "AgbJ+Bkbp2U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE8pushBackERKS8_) +STUB("AgcxgceaH8k", sceNpScoreGetFriendsRankingForCrossSave) +STUB( + "Agk284DXNM8", + _ZN3sce2Np9CppWebApi14SessionManager2V130RequestPlayerSessionInvitationC1EPNS1_6Common10LibContextE) +STUB("AgoWl1EVDPo", _ZN3JSC9JSWeakSet6s_infoE) +STUB( + "AgppqW8HRso", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEppEv) +STUB("Agsyrf4L8uA", _ZNK3sce2np10JsonNumber6GetNumEPl) +STUB("Agu-33Jlq+Q", _ZN7WebCore22counterValueForElementEPNS_7ElementE) +STUB("Agx9YzHLySs", __match_D2A) +STUB("AgxEl+HeWRQ", _ZNSt6locale5facet7_DecrefEv) +STUB( + "AgxIxL3KDD4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEC1Ev) +STUB( + "AgxXyvaaer0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEED2Ev) +STUB("Ah4d58obKwE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEEC1Ev) +STUB( + "Ah7EHZdqMv4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB( + "AhEEFcQZ7tU", + _ZN7WebCore17HTMLSelectElement3addERKN3WTF7VariantIJNS1_6RefPtrINS_17HTMLOptionElementENS1_13DumbPtrTraitsIS4_EEEENS3_INS_19HTMLOptGroupElementENS5_IS8_EEEEEEERKSt8optionalINS2_IJNS3_INS_11HTMLElementENS5_ISF_EEEEiEEEE) +STUB("AhGvpITrf4M", sceAgcDriverAgrSubmitDcb) +STUB( + "AhJgNdYmkZo", + _ZN7WebCore20ApplicationCacheHost28maybeLoadFallbackForResponseEPNS_14ResourceLoaderERKNS_16ResourceResponseE) +STUB( + "AhLwPKB5AqM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE5clearEv) +STUB("AhNHpLBVqAI", _ZN7WebCore30InvertLightnessFilterOperationD2Ev) +STUB( + "AhRvlKjeHJI", + _ZN9Inspector17BackendDispatcher19reportProtocolErrorESt8optionalIlENS0_15CommonErrorCodeERKN3WTF6StringE) +STUB( + "AhUBZCQFMrg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("AhUNPmI1PjI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE5beginEv) +STUB("Aha867xk+js", _ZN3sce2Np9CppWebApi7Matches2V113ErrorResponseD1Ev) +STUB("AhcwKNannr8", searchCommInfoListBySecondaryStream) +STUB( + "AhdQZnDmdTY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE5clearEv) +STUB("AhfQDu5DYhI", il2cpp_class_has_parent) +STUB( + "Ahku9ydLj9w", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToSetMultiVariablesByUser9terminateEv) +STUB( + "Ahlu-7DMjg0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE8pushBackERKS8_) +STUB( + "AhnlG38gTkk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEED2Ev) +STUB("AhqlQ8cngrk", scePlayerInvitationDialogGetResult) +STUB("AhwGp7JtQjI", WKInspectorHide) +STUB("Ai+CmAO2w54", sceKernelGetProcessAbiType) +STUB("Ai5yrljUSjI", glGenVertexArrays) +STUB("AiGmBF0ubhE", _ZN3sce7Toolkit2NP21TusSetDataInputParamsC2Ev) +STUB( + "AiM-S81hW6Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEC1Ev) +STUB("AiOIdr8qlv8", _ZN3WTF24AutomaticThreadConditionC2Ev) +STUB("AiQVTEwWQ5w", _ZN3sce7Toolkit2NP2V26Trophy7Request19GetTrophyPackTrophyD1Ev) +STUB("AiXfM7pAAgo", WKPreferencesSetFantasyFontFamily) +STUB("AiYaoHGTYLM", ScePsmMiniGetDebugOptions) +STUB("AiakG67rmUE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEE7get_refEv) +STUB("AiazZsMHSfs", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession13setMaxPlayersERKi) +STUB( + "Aidc1CBWfi4", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetBoolean6Ev) +STUB("AifdcI1aKas", sceNpSnsFacebookDialogGetResult) +STUB("AilVyFw1yns", _ZN12video_parser10cVideoPathD1Ev) +STUB("Aioru3Sp3WQ", _ZN7WebCore14valueForLengthERKNS_6LengthENS_10LayoutUnitE) +STUB("AitA5hf0b4o", GetAccountLanguage2) +STUB("AiuJezekCBc", umutablecptrie_fromUCPTrie) +STUB("Aiy00lPTCdA", _ZN3sce7Toolkit2NP2V28Commerce7Product16PRODUCT_NAME_LENE) +STUB( + "Aiybkv35qik", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEdeEv) +STUB("Aj2Ds5L9tmU", sceVideoCoreInterfaceMainLoop) +STUB("Aj4Ha7tFybU", _ZN7WebCore23AuthenticationChallengeD2Ev) +STUB("AjA-S003ESY", mono_get_string_class) +STUB("AjEm95J+bh4", uhash_remove) +STUB("AjEsAEzv+BI", + _ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody6toJsonERNS_4Json5ValueEb) +STUB( + "AjFzijH6yIY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEE7get_refEv) +STUB( + "AjIvwY7FjAw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEeqERKS9_) +STUB("AjSWJSHcOIk", _ZN9Inspector29SupplementalBackendDispatcherD1Ev) +STUB( + "AjVClaSXzZM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEEC1ERSA_) +STUB("Ajae5Y4p2RI", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V219WebApiErrorResponseC1EPNS1_6Common10LibContextE) +STUB( + "AjixtXuS1Zg", + _ZN3sce2Np9CppWebApi14SessionManager2V135ResponseGameSessionSpectatorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_28ResponseGameSessionSpectatorEEE) +STUB("AjkxQBlsOOY", _ZNKSt8messagesIwE8do_closeEi) +STUB( + "AjooIBWUz3c", + _ZN3sce2Np9CppWebApi14SessionManager2V145RequestCreatePlayerSessionNonPsnPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_38RequestCreatePlayerSessionNonPsnPlayerEEE) +STUB("AjtiJRIV4Ro", _ZN3sce2Np9CppWebApi6Common6VectorIjE8pushBackERKj) +STUB("AjtlFa2HRws", sceVideoOutAddSetModeEvent) +STUB("AjzLvR0g5Zs", sceNpUtilGetTrcNotify) +STUB("Ak7b6A9cJvc", WKPreferencesSetShouldDisplayCaptions) +STUB("Ak82qzAhdwA", JVM_CurrentLoadedClass) +STUB("AkAdc+-cUY4", _ZN7WebCore8SVGNames6u2AttrE) +STUB( + "AkBQaoXLvj0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEED1Ev) +STUB("AkCuWWSvQHA", _ZN3sce2Np9CppWebApi14ConnectAccount2V212PartnerToken22unsetAccessTokenSecretEv) +STUB("AkDTv2T16Dg", mono_shared_area_remove) +STUB("AkI8IiQHqkA", + _ZN7WebCore5Image7setDataEON3WTF6RefPtrINS_12SharedBufferENS1_13DumbPtrTraitsIS3_EEEEb) +STUB("AkOOhwxmrbE", _malloc_finalize) +STUB("AkVBfGATOC0", monoeg_g_queue_new) +STUB("AkZDh0eGH+E", _ZTV13MsvMetaEditor) +STUB( + "AkZYKwb26Fc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEneERKS9_) +STUB( + "Akc-LXEndk0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEmmEv) +STUB("Aked5DcJ-7M", _ZTVN15AbstractStorage14TwitterServiceE) +STUB( + "AklrXTu970w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEC2EPNS2_10LibContextE) +STUB("Akm3oZiReFc", _ZNK7WebCore4Page23isMonitoringWheelEventsEv) +STUB( + "AkonPGMfQSI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEEC2Ev) +STUB( + "AkpbOUqutxE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEaSERS7_) +STUB("AkqlD9D8CyI", _ZN7WebCore11DisplayList10StrokePathD2Ev) +STUB( + "AktpMpPtju0", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToSendGameSessionMessageC2Ev) +STUB( + "Akx92VYsbak", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser17hasnpServiceLabelEv) +STUB( + "AkzdgCGDTAA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB("Al3HAN0xvfw", _ZN7WebCore17standardUserAgentERKN3WTF6StringES3_) +STUB("Al4qjNREVQQ", sceHmd2SetVibration) +STUB("Al8MZJh-4hM", wmemset) +STUB("Al8uQZRF2v4", + _ZN3sce2Np9CppWebApi7Matches2V120ResponseInGameRosterC1EPNS1_6Common10LibContextE) +STUB("AlDCRmsBk0E", g_slist_last) +STUB( + "AlHdkNd4hyI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEED2Ev) +STUB( + "AlIvAQxkLX0", + _ZN7WebCore10JSDocumentC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_8DocumentENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "AlNsXbn0EzU", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessionsC2ERS5_) +STUB("AlP0gG2KQiw", mono_btls_x509_name_free) +STUB( + "AlUtS-I4oU8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE5beginEv) +STUB("AlXVe2XVb98", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_15ActivityStoryIdEE3getEv) +STUB("AlXeQLzHOPM", _ZN3WTF7CString4growEm) +STUB( + "AlZ7AYQFoto", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE11getResponseERS8_) +STUB("AlbShN04mCk", _ZN7WebCore9HTMLNames21onselectionchangeAttrE) +STUB("AleDTt+SyDo", _ZN3sce7Toolkit2NP2V26Friend7Request15GetBlockedUsersC1Ev) +STUB( + "AlgJXQspPOc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEEC2ERKS9_) +STUB("Alkbf4vUAvA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEcvbEv) +STUB( + "AlnYC9HXEto", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEmmEi) +STUB("AloU5nLupdU", CERT_STORE_releaseStore) +STUB("AlogKJrMsco", scePerfTraceDelete) +STUB("Alqa9RE0Y5k", sceKernelReleaseTraceDirectMemory) +STUB( + "AltsVXKpgBA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE4sizeEv) +STUB("AlvmR1GwSVY", ures_getIntVector_67) +STUB("AlvvmKbsd24", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10ContainersEED1Ev) +STUB( + "AlxvR5lgY-c", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEplEm) +STUB( + "Alz7VSFRVQQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEE11get_deleterEv) +STUB("Am+ONet261k", sceOpusCeltEncEncodeWithPriority) +STUB( + "Am-F0h2kTak", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE21intrusive_ptr_sub_refEPS9_) +STUB("Am2wwvV-gr8", _ZN3sce7Toolkit2NP23EventInformationRequestC2Ev) +STUB("Am3TF-mLbXE", _ZN9Inspector21InjectedScriptManager19injectedScriptIdForEPN3JSC9ExecStateE) +STUB( + "Am489KlRgkw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEptEv) +STUB( + "Am60cNGKAno", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEC2EPS8_) +STUB("Am8Hlr7tlxA", sceVideoOutSysAddVblankEvent2) +STUB( + "AmC332RRbFs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEaSERS8_) +STUB("AmFhOPPRYW4", _ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequestD1Ev) +STUB("AmJ0mn2l4lM", sceKernelGetLibkernelTextLocation) +STUB("AmJ3FJxT7r8", sceUserServiceSetGlsIsRecievedMessageHidden) +STUB("AmNeqCMs2oU", SSL_CTX_up_ref) +STUB("AmSA0TTYNEQ", _ZN3sce7Toolkit2NP2V212ActivityFeed13ButtonCaptionC1Ev) +STUB("AmTKOUGAGpA", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEED1Ev) +STUB("AmTvo3RT5ss", sceSystemServiceLoadExecVideoServiceWebApp) +STUB("AmVcTjMPw4M", sceDataTransferInitialize) +STUB( + "AmXdz3s74QA", + _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody14getCustomData2Ev) +STUB( + "AmaZ2nOlqFE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEE11release_refEv) +STUB( + "AmchweIolL4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEED2Ev) +STUB( + "AmcjJAK1YN8", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_15CategoryInfoSubENS2_IS4_EEEE10deallocateEPS6_m) +STUB( + "AmdD3TzpP-c", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS5_INS7_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("AmgsrlAk78I", C1lo) +STUB( + "Amh3wSBhi10", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEE5resetEPS9_) +STUB("Amlk9ZNFJag", _ZNK7WebCore8Document22touchEventHandlerCountEv) +STUB("AmmYLcJGTl0", sceGnmSpmStartSpm) +STUB( + "AmpdX8iQicg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEED1Ev) +STUB( + "AmsRXbsV+kM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEC2Ev) +STUB("An+I+fbFDzU", mono_string_to_utf8) +STUB("An0PZRq4qKw", g_JSFunctionPoison) +STUB( + "An1eIVHZGHg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEEC1ERKSA_) +STUB( + "An4Un3FkpbI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEmmEv) +STUB("An7fJiCJu2s", sceFsSetWorkspaceFileHash) +STUB("An8-m5wsoTk", _ZNK3WTF8JSONImpl10ObjectBase3endEv) +STUB( + "An9mlaXsHy0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEdeEv) +STUB("AnE9WWbyWkM", _ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED1Ev) +STUB("AnEgrSUtZdM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEED2Ev) +STUB("AnFr-MjcNEQ", __asan_stack_malloc_always_3) +STUB( + "AnGFuXEHR90", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEneERKS9_) +STUB("AnIwPVeSiNg", _ZN7WebCore13HitTestResultC1ERKNS_11LayoutPointEjjjj) +STUB("AnNQFsvufuc", _ZNK7WebCore6Editor11textCheckerEv) +STUB( + "AnPpt54O1ng", + _ZNK3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer6toJsonERNS_4Json5ValueEb) +STUB("AnQ9uoI3ENY", _sceDepthSetHeteroAdjustParam) +STUB("AnQQM55IXDQ", sqlite3_column_int) +STUB( + "AnQakP7-zLk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEEdeEv) +STUB("AnTtuRUE1cE", _Makestab) +STUB("AnTvPnYyt6c", rgctx_fetch_trampoline_mrgctx_33) +STUB("AnVgmQj3yRg", _ZN3sce7Toolkit2NP9Utilities6FutureIiEC1Ev) +STUB( + "AnVx3PRLElg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE5clearEv) +STUB( + "Anhr3zKSfP4", + _ZNK9Inspector17ScriptDebugServer36handleExceptionInBreakpointConditionEPN3JSC14JSGlobalObjectEPNS1_9ExceptionE) +STUB("Ani6e+T-y6Q", posix_spawnattr_setsigdefault) +STUB( + "AnlAI3prhE4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEC1EPS8_) +STUB( + "AnlznmKvirg", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB( + "AnnAe2SatVU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "Ao2FvA8wRs8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEC2Ev) +STUB("Ao2YNSA7-Qo", sceVoiceStop) +STUB("Ao79N2ZY9zw", recvbuf) +STUB("Ao7fKckorGE", sceMusicCoreServerUpdateSpWakeupAuthorityList) +STUB("AoAG2JE8GIo", cairo_restore) +STUB("AoBZzDiZwng", sceAvSettingGetHdcpStatus) +STUB("AoBsO61PR9Q", _ZN3sce7Toolkit2NP2V27Session7Request17GetInvitationDataC1Ev) +STUB("AoGKSRLMOD8", JVM_CurrentTimeMillis) +STUB("AoI+0INzZek", utrie2_get32FromLeadSurrogateCodeUnit_67) +STUB("AoKQpye80kU", glCompressedTexImage3D) +STUB("AoLA2MRWJvc", getw) +STUB( + "AoLKRivi46Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE21intrusive_ptr_add_refEPSA_) +STUB( + "AoNF3RLJ4W8", + _ZN9Inspector24BrowserBackendDispatcherC2ERNS_17BackendDispatcherEPNS_31BrowserBackendDispatcherHandlerE) +STUB("AoQqIQgzoLY", apply_reg_state) +STUB("AoSlid9sAJE", sceFsInitMountDownloadDataOpt) +STUB("AoTNh42+Dw8", JVM_RegisterPerfMethods) +STUB( + "AoURc5di8gw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEC1EPS6_PNS2_10LibContextE) +STUB( + "AoUaCo4hSIo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEEC1ERKSA_) +STUB( + "AoZ95q7e-W8", + _ZN3sce2Np9CppWebApi14SessionManager2V130RequestPlayerSessionInvitation8fromJsonERKNS_4Json5ValueE) +STUB("AoZRvn-vaq4", + _ZZNSt13basic_filebufIwSt11char_traitsIwEE5_InitEP7__sFILENS2_7_InitflEE7_Stinit) +STUB("AodT6gE5Qpk", sceSysUtilSendSystemNotificationWithParams) +STUB( + "AogY5Q0zxiA", + _ZN3sce2Np9CppWebApi14ConnectAccount2V215AccountLinksApi28ParameterToDeleteAccountLink10initializeEPNS1_6Common10LibContextEPKc) +STUB("Aohba1pDRgk", _ZN12video_parser7cVpUtil13vp_ff4_fwriteEPvPKvmPm) +STUB("Aojl-oU8Pc8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEaSERKS7_) +STUB("Ap+o97AVBWY", jpeg_natural_order4) +STUB("Ap1qJIX6ZgU", _ZNK7WebCore22HTMLFormControlElement11formEnctypeEv) +STUB( + "Ap2vAeN3qS0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEppEi) +STUB("Ap5dJ0zHRVY", sceSystemStateMgrEnterMediaPlaybackMode) +STUB( + "Ap6X8LBPEQg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEmmEv) +STUB( + "Ap9yuauO+qE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEEC2ERSA_) +STUB( + "ApE-6wYJnHA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEE11get_deleterEv) +STUB( + "ApIGErJ4cyY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE5emptyEv) +STUB("ApKRAlRaXxA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEED2Ev) +STUB("ApMLfJ527Ag", pthread_attr_getsolosched_np) +STUB( + "ApNl3Gwny+s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "ApYofkREMFU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEEC1EPS5_PFvS7_EPNS2_10LibContextE) +STUB("Apb4YDxKsRI", sceNetResolverStartAton) +STUB("ApblR7nulzY", _ZN3sce7Toolkit2NP2V27Ranking7Request8SetScoreD1Ev) +STUB("AphmdTpDn5Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEC1ERS7_) +STUB("ApiBWk+XhTM", sceDepthEnableHeteroMode) +STUB( + "ApjuosAIEFo", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB("ApkYaHb8Sek", sceKernelAprGetFileStat) +STUB("AplSHRUidGA", _ZN7WebCore11MediaPlayer26applicationDidBecomeActiveEv) +STUB("ApoRaeIzcZk", mono_aot_Sce_Vsh_Accessorjit_code_start) +STUB("AprbZU1rknE", _ZN3sce7Toolkit2NP2V27Ranking17GetGameDataResultC1ERKS4_) +STUB("Aps4d4mBAV4", _ZN7WebCore8SVGNames10feFuncBTagE) +STUB("ApzQ92rdPkU", _ZN3JSC6JSLock12DropAllLocksC1EPNS_9ExecStateE) +STUB( + "Aq0Mjj1nep0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEE5resetEPS7_) +STUB( + "Aq2AKkpAHZA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "Aq8VKmBGVd0", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS2_6BinaryEEENS5_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("AqBioC2vF3I", read) +STUB("AqGfBZu4uCA", sceUserServiceSetNotificationSettings2) +STUB("AqJ4xkWsV+I", sceNpCalloutTermCtx) +STUB( + "AqKCTFCwW24", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEC2Ev) +STUB("AqLqg7skyrE", jpeg_fdct_16x8) +STUB("AqMO8-jHIs8", + _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse9setStatusERKNS3_6StatusE) +STUB("AqQzczIY59k", + _ZN3sce7Toolkit2NP9Utilities6FutureISbIcSt11char_traitsIcENS1_15AppSTLAllocatorIcEEEED2Ev) +STUB("AqUBdZqHZi4", warnc) +STUB( + "AqVEm7xg84M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE21intrusive_ptr_add_refEPS9_) +STUB("AqVMssr52Rc", sceRtcTickAddTicks) +STUB( + "AqY6riP-PjM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData21setxPsnNpServiceLabelEj) +STUB("Aqae0TjLvQU", sceNpEntitlementAccessRequestConsumeServiceEntitlement) +STUB("AqikO8-5cdE", mono_aot_Sce_Vsh_Orbis_ContentManagerplt) +STUB("AqpZU2Njrmk", remquof) +STUB( + "Aqq8zT53vEU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEC2Ev) +STUB("AqqoCHSoK7Y", _ZThn16_N9Inspector21InspectorRuntimeAgentD0Ev) +STUB("AqtTZeLtvwU", _ZN7WebCore21JSCSSStyleDeclarationaSERKS0_) +STUB( + "Aquv9EuC1l8", + _ZN9Inspector25TimelineBackendDispatcher14setInstrumentsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("Ar0NmXhAc98", _ZTVN7WebCore23ISOSchemeInformationBoxE) +STUB( + "Ar2h6HntYsM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEC1ERS7_) +STUB( + "Ar3xNlGTciU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "Ar5+XlzPkw0", + _ZN9Inspector22InspectorDebuggerAgent13setBreakpointERN3WTF6StringERKNS1_8JSONImpl6ObjectEPS6_PS2_RNS1_6RefPtrINS_8Protocol8Debugger8LocationENS1_13DumbPtrTraitsISD_EEEE) +STUB("ArC4PqsJOWc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEEC1Ev) +STUB( + "ArDViRWvkU8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB("ArH6j2e7PXg", + _ZN3WTF8JSONImpl10ObjectBase9setObjectERKNS_6StringEONS_6RefPtrIS1_NS_13DumbPtrTraitsIS1_EEEE) +STUB("ArJxs6wtlBw", _ZN3sce7Toolkit2NP2V26Friend15FriendsOfFriendC1ERKS4_) +STUB( + "ArMYOcHPmzs", + _ZN7WebCore12JSAudioTrackC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_10AudioTrackENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "ArMaYOX08iI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEEcvbEv) +STUB("ArROm9wdMxM", _ZN3JSC7Symbols30asyncGeneratorYieldPrivateNameE) +STUB("ArSg-TGinhk", sceGnmUnmapComputeQueue) +STUB( + "ArTN-6rtnT8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "ArXOHIVsd2k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("ArYZrL8JVSI", _ZN3sce2Np9CppWebApi7Matches2V119AdditionalStatisticD1Ev) +STUB("ArYdZGEUW8w", glGetUniformiv) +STUB("ArZF2KISb5k", _LDunscale) +STUB( + "AranbtHSzMw", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10getString5Ev) +STUB( + "ArazDFbLJNA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("Arel-HEkkOM", _ZN3sce2Np9CppWebApi13InGameCatalog2V513ContentRating6setUrlEPKc) +STUB("ArexMXaUHuI", + _ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForRead15unsetSpectatorsEv) +STUB( + "Ari06g4xG58", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEC1ERKS8_) +STUB("Arl4t4yCekc", _ZN6WebKit12ChildProcess18disableTerminationEv) +STUB( + "Armx4jQhCN8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "ArrCj7ZhboM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "ArwwR8wCcVw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB("ArzkVgrMe9o", mono_aot_Sce_Vsh_ShareServerPostWrappermethod_addresses) +STUB("As-JdqyUuMs", sceKernelSetSafemode) +STUB("As3I17TV4BE", + _ZN7WebCore13GraphicsLayer20setReplicatedByLayerEON3WTF6RefPtrIS0_NS1_13DumbPtrTraitsIS0_EEEE) +STUB( + "As5Sm8MWb4U", + _ZN7WebCore9ImageDataC1ERKNS_7IntSizeEON3WTF3RefIN3JSC21GenericTypedArrayViewINS6_19Uint8ClampedAdaptorEEENS4_13DumbPtrTraitsIS9_EEEE) +STUB("AsCQCYTbe80", pthread_barrierattr_destroy) +STUB("AsGKmK2kJtM", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setSubtitleDisp) +STUB("AsRL0V4bgyY", fetch_proc_info) +STUB("AsShnG3DulM", _ZNSt12domain_errorD2Ev) +STUB("AsX1FKTHm2A", mono_shared_mutex_lock) +STUB("AsXgNlqe7xI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEE11get_deleterEv) +STUB("Asczi8gw1NM", sceHmdInternalAnotherScreenSendAudio) +STUB( + "AskZ0b9yOw8", + _ZN3sce2Np9CppWebApi14SessionManager2V136JoinedGameSessionWithPlatformFactory7destroyEPNS3_29JoinedGameSessionWithPlatformE) +STUB( + "Asmum66xaH0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEC1EPS8_) +STUB("Astztyx6jKk", fuse_req_ctx) +STUB("AsueLb+3C4k", glSamplerParameteri) +STUB("Asuucx2vvaE", sceProprietaryVoiceChatHelperGetVoiceChatUsageState) +STUB("AsxmyXFDsiM", sceFaceIdentifyExGetFeature) +STUB("AsziNQ9X2uk", sceNpTusGetMultiSlotVariableAVUser) +STUB("At8z4Agmcnc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEC1ERS7_) +STUB("AtCnBMTgdoo", sceNpSnsYouTubeDialogTerminate) +STUB("AtKeeOk+CQI", WKContextAddVisitedLink) +STUB( + "AtQfEV6AGU8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEEC2Ev) +STUB("AtUOSzkIyO4", _ZNK3WTF10StringImpl4utf8ENS_14ConversionModeE) +STUB("AtXJ8HI53HQ", sceNpRemotePlaySessionSignalingGetMemoryInfo) +STUB( + "AtXm-wTWQko", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEC2Ev) +STUB( + "AtfOfcEaLOk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEeqERKS9_) +STUB("Atil+QRPGs8", _ZN7WebCore8JSPath2DD1Ev) +STUB("Atkc8fTjugg", _ZN3sce2Np9CppWebApi6Common8IteratorINS2_17ParameterBaseImpl6KeySetEEC1EPS5_) +STUB( + "Atm22vkJ8mQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE4sizeEv) +STUB("AtmaYbJzdnQ", Java_java_lang_SecurityManager_getClassContext) +STUB("AtnrY+b9Rcg", _ZNK3JSC7JSValue20toIntegerPreserveNaNEPNS_14JSGlobalObjectE) +STUB("Atp9oheNRqg", _ZN9Inspector15RemoteInspector39sendAutomaticInspectionCandidateMessageEv) +STUB("Atq+9b5btSU", jpeg_std_error) +STUB("AtvOgVdBLNA", + _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead19getUsePlayerSessionEv) +STUB("AtyWhIJC6rU", sceFsUfsDirectWrite) +STUB("Au-YQEODZBY", _ZN7WebCore11DisplayList14DrawTiledImageD0Ev) +STUB( + "Au1J8AG2OFA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("Au4Jy58DXj4", mono_aot_Sce_Vsh_Np_Trophyunwind_info) +STUB("Au75DUCRQN0", _ZN7WebCore9FrameView16setPaintBehaviorEj) +STUB( + "AuJIJ-oqR1Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEppEv) +STUB("AuQtjAqCYgc", g_string_free) +STUB("AuRg19KxWco", uhash_hashUChars) +STUB( + "AuTg43GFFTw", + _ZN7WebCore6Editor19countMatchesForTextERKN3WTF6StringEPNS_5RangeENS1_9OptionSetINS_14FindOptionFlagEEEjbPNS1_6VectorINS1_6RefPtrIS5_NS1_13DumbPtrTraitsIS5_EEEELm0ENS1_15CrashOnOverflowELm16EEE) +STUB( + "AuYjD-ekUG8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEmmEi) +STUB("Auc6i3VTZ4c", _ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequest21unsetCancellationTimeEv) +STUB( + "AudQdVdK8bU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEppEv) +STUB("AudzykEqchY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEEC2EPS5_PFvS7_EPNS2_10LibContextE) +STUB("AuhjTeWbn5Y", _ZN3WTF40clearDefaultPortForProtocolMapForTestingEv) +STUB("AumF38kir6s", sceApplicationLocalProcessResume) +STUB( + "AunIU8ycZ5Q", + _ZN3sce2Np9CppWebApi14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyC1EPNS1_6Common10LibContextE) +STUB("Auqk+H3qGuo", sceNpAsmClientCreateResourceContext2) +STUB("AutSTqT7f9c", _ZN7WebCore8SVGNames21limitingConeAngleAttrE) +STUB( + "AuxqfHk3+D4", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanity10initializeEPNS1_6Common10LibContextEPKcSA_NS6_12IntrusivePtrINS3_19WebApiFilterRequestEEE) +STUB("Av3vvSirm4c", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119PlayStyleProperties6toJsonERNS_4Json5ValueEb) +STUB("Av3zjWi64Kw", strftime) +STUB( + "Av4recFzuqM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "Av5zg+Zy+OQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEC1EPKS8_) +STUB( + "AvAfuNLW9Iw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEC1ERKS7_) +STUB("AvJhBkwvs2g", _ZN25MmsFileUpdaterFsOperation13removeTmpFileEPKc) +STUB("AvOP1OYXJ8I", _ZN3JSC7Symbols22onFulfilledPrivateNameE) +STUB( + "AvOyUuFKFOc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEC1Ev) +STUB("AvQjbt0RSyo", + _ZN7WebCore22EmptyFrameLoaderClient24dispatchDidFinishLoadingEPNS_14DocumentLoaderEm) +STUB("AvSstBGWKcM", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEEdeEv) +STUB( + "AvV0x-vhNR4", + _ZN9Inspector15ScriptArgumentsC2EPN3JSC14JSGlobalObjectEON3WTF6VectorINS1_6StrongINS1_7UnknownELNS1_30ShouldStrongDestructorGrabLockE0EEELm0ENS4_15CrashOnOverflowELm16ENS4_10FastMallocEEE) +STUB( + "AvdlVJf9IvM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEmmEv) +STUB("AvfzO51zGKI", + _ZN7WebCore9JSDOMRect15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB("AviCul77lps", _ZN7WebCore9HTMLNames12decodingAttrE) +STUB("AvjnXHAa7G0", CERT_enumerateAltName) +STUB( + "AvngEisH1bU", + _ZN9Inspector20DOMBackendDispatcher19setAttributesAsTextElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("AvoadUUK03A", CA_MGMT_decodeCertificate) +STUB( + "AvpzTOUCSS8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE3endEv) +STUB("AvrA9K2lvC4", u_isJavaIDPart) +STUB( + "AvuMvsUlJNM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("Avv7OApgCJk", sceFontStringRefersTextCharacters) +STUB("AvvE5A5A6ZA", _ZN3sce2np10JsonParserD2Ev) +STUB("AvvwkPNRuxM", mono_aot_Sce_Vsh_RequestShareScreenunbox_trampoline_addresses) +STUB("Aw2xTP5uAG0", WKPreferencesSetWebArchiveDebugModeEnabled) +STUB("Aw3HmCDPjnw", _ZN7WebCore27PlatformMediaSessionManager30applicationWillEnterForegroundEb) +STUB( + "Aw6aVWo4qb0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEEaSERKSB_) +STUB( + "AwCkB8DjFbQ", + _ZN3sce2Np9CppWebApi7Matches2V125RequestMatchPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_18RequestMatchPlayerEEE) +STUB("AwGzFwnaitQ", FcInit) +STUB("AwO-jxy52uE", _ZN3sce3Xml3Dom8Document12setAttributeENS1_6NodeIdEPKNS0_6StringES6_) +STUB( + "AwPFFwg-Znc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEED1Ev) +STUB("AwR16YyyVdI", _ZN7WebCore4toJSERNS_14StringCallbackE) +STUB("AwW34uD71ZQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE5emptyEv) +STUB("AwWC0Y+Shbg", _ZN3sce7Toolkit2NP2V24Core7Request14RemoveCallbackC1Ev) +STUB( + "AwaLKqdnekw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE8copyFromERKS9_) +STUB("Awb0lcEV300", _ZN3WTF10WorkerPoolC1ENS_12ASCIILiteralEjNS_7SecondsE) +STUB( + "Awctq3s1B5A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEC2Ev) +STUB("AwdlDnuQ6c0", _ZNSt14numeric_limitsIdE12min_exponentE) +STUB("AweMzgNw10Q", AnnotatePCQCreate) +STUB( + "AwiR8FKViZ8", + _ZN7WebCore23CoordinatedBackingStore10updateTileEjRKNS_7IntRectES3_ON3WTF6RefPtrIN7Nicosia6BufferENS4_13DumbPtrTraitsIS7_EEEERKNS_8IntPointE) +STUB("Awj5m1LfcXQ", _ZGVNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE) +STUB( + "Awk6hLfU0pE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("Awl+7Q5Haaw", _ZN3sce2Np9CppWebApi11Matchmaking2V19Submitter13unsetPlatformEv) +STUB("AwlZAyVEWxI", _ZN3sce7Toolkit2NP2V28Matching7Request8JoinRoomD2Ev) +STUB("AwxMKgOWcws", rgctx_fetch_trampoline_mrgctx_60_p) +STUB("AwyaII5zMBE", + _ZNSt9_FacetptrISt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEE6_PsaveE) +STUB("Ax1Qs3Cm95Q", sceVideoOutAddStereoBuffer) +STUB("Ax6LQJJq6HQ", sceFontGraphicsUpdateShapeFill) +STUB("Ax7NjOzctIM", sceRazorCpuSync) +STUB("Ax867+0HUgA", cairo_pattern_set_extend) +STUB("Ax940iArzkM", + _ZN3sce7Toolkit2NP9Utilities6FutureISbIcSt11char_traitsIcENS1_15AppSTLAllocatorIcEEEED1Ev) +STUB("AxAWyeoZW30", + _ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody13ticketIdIsSetEv) +STUB("AxD0nee82Qk", _ZN7WebCore16BlobRegistryImplnaEm) +STUB( + "AxDODpdpctw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("AxGBQpD1Rao", fuse_fs_readlink) +STUB("AxGxBABe5lY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEE7get_refEv) +STUB("AxHBk3eat04", sceRtcFormatRFC2822LocalTime) +STUB("AxKnV2b5PKU", rgctx_fetch_trampoline_rgctx_56_p) +STUB("AxNpQ9qdn3E", mono_btls_x509_store_ctx_get_error_depth) +STUB("AxQ6HtktYfQ", sceHmdInternalGetPuPositionParam) +STUB("AxUhC3zNrhk", issetugid) +STUB("AxUlf9UUxCg", sceRegMgrNonSysSetStr) +STUB( + "Axbe+-JvUU8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE8copyFromERKS9_) +STUB("AxbrDa89hBs", _ZNK3WTF3URL4portEv) +STUB( + "Axcq4sz6TBo", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyC1EPNS1_6Common10LibContextE) +STUB( + "AxecKhHYwyI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEEptEv) +STUB("AxgY4OgTRas", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEE7get_refEv) +STUB("AxhcqVv5AYU", sceAjmStrError) +STUB("Axj7GY0vnPE", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectIdC1ERS5_) +STUB("AxkrIoArfIs", WKImageCreate) +STUB("AxoDrINp4J8", sceAjmInstanceCreate) +STUB("Axq72jlliZk", sceVshAvcapReadVideo) +STUB( + "AxqdvHseVv8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE7reserveEi) +STUB( + "AxvWC+6Y1Ss", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "AxxUOHX42n8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEdeEv) +STUB("AxxgdOAerIE", _ZN6WebKit12ChildProcess17enableTerminationEv) +STUB("AxzX3eZ9oLo", _ZN23sceMetadataReaderWriter7StorageD2Ev) +STUB("Ay09172BWJU", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V16StatusEEptEv) +STUB("Ay9aP6nu1jU", _ZN3sce7Toolkit2NP2V23TUS12TusVariablesC2Ev) +STUB("AyBXRSljh4c", _ZN12video_parser13cVideoPathMgv16SetMaclistSuffixEc) +STUB("AyDi1bo2cL0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEC2Ev) +STUB("AyGDhzmvDQA", _ZN3sce7Toolkit2NP2V29Messaging7Request27GetGameDataMessageThumbnailD2Ev) +STUB("AyGRv7M1eCo", uldn_keyValueDisplayName_67) +STUB("AyIo9E7XKTU", + _ZN7WebCore8Settings45setMockCaptureDevicesEnabledInspectorOverrideEN3WTF8OptionalIbEE) +STUB( + "AyO3Dv-nNfs", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V125NatConnectivityProperties11setFromNat1ERKNS1_6Common12IntrusivePtrINS3_19NatConnectivityFromEEE) +STUB( + "AyRMGiZQc8E", + _ZN3sce2Np9CppWebApi14SessionManager2V131GameSessionMemberForReadFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_24GameSessionMemberForReadEEE) +STUB( + "AySE3F7Vpek", + _ZN9Inspector27DOMStorageBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("AyZpHAiHILk", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEEdeEv) +STUB("Ayg6PIon2wA", sceAmprAmmMeasureAmmCommandSizeUnmap) +STUB("AyhMognXlkY", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_11TusVariableENS2_IS4_EEEEeqERKS7_) +STUB( + "AyhbVMdfYUk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEC1EPS8_) +STUB("AyhnyEc+VJo", _ZN7WebCore8SVGNames14numOctavesAttrE) +STUB("Ayjio+cfSFA", sceUpsrvUpdateCheckCancel) +STUB("AykuNbDgQlE", mono_method_get_signature) +STUB("Ayojz3NaSxQ", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container8fromJsonERKNS_4Json5ValueE) +STUB("AypFIXRyX2o", _ZN3sce7Toolkit2NP19GetTitleNewsRequestC2Ev) +STUB( + "AypW2P1CpvA", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScore26unsetxPsnAtomicOperationIdEv) +STUB("Ayqs7t7iPd4", WKUserMediaPermissionRequestVideoDeviceUIDs) +STUB("Aytjey6FPTU", ERR_peek_error) +STUB("Ayyzf0loiqk", _ZN3sce2Np9CppWebApi14SessionManager2V12ToC2EPNS1_6Common10LibContextE) +STUB("AyzbwzloMDI", _ZN3JSC7Symbols27regExpSearchFastPrivateNameE) +STUB("Az-pLnhSwJM", _ZN3sce2Np9CppWebApi7Matches2V123ResponseMatchStatistics17getTeamStatisticsEv) +STUB("Az0wDZ2JLeY", _ZN9Inspector33AnimationBackendDispatcherHandlerC2Ev) +STUB("Az14s0jb+TI", usearch_getPattern_67) +STUB( + "Az2cmL1XfEA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEEC2Ev) +STUB("Az3tTyAy380", significand) +STUB("Az4H9FlfxCA", FT_Stream_TryRead) +STUB( + "Az4UNqRNZI0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("Az8vuu9IJnM", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_12PresenceInfoEE17getAdditionalInfoEv) +STUB( + "AzAp6IUpnKs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEaSERS7_) +STUB("AzBnOt1DouU", _ZNKSs5_XranEv) +STUB("AzCEQ6SFKtA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEaSERS7_) +STUB("AzD4irAcKE4", sceNpUniversalDataSystemEventPropertyObjectSetUInt32) +STUB("AzDHKrrOxss", sceNpTrophyNetIsServerAvailable) +STUB("AzDv9cXtbwI", mono_aot_ReactNative_Modules_Vsh_Gct_Telemetryunbox_trampolines) +STUB("AzHFo0vXbUc", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V18RelationEEdeEv) +STUB("AzMZCV33Cuo", _ZN7WebCore8FormData15appendFileRangeERKN3WTF6StringExxdb) +STUB( + "AzPPyQcwi7U", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEneERKS9_) +STUB( + "AzRzzMkPW-g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE8pushBackERKS8_) +STUB( + "AzT2Ip4-1Us", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("AzTARWDb2zs", ulist_addItemEndList) +STUB("AzUipl-DpIw", sceSslGetNanoSSLModuleId) +STUB( + "AzWLHJIG-cg", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V117ReputationFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_10ReputationEEE) +STUB("Azc0ughbhN4", _ZN3sce7Toolkit2NP2V27Ranking8TempRank5resetEv) +STUB("AzmGoRWYFRg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEEC1ERKS6_) +STUB("AzqoBha7js4", sceNetResolverAbort) +STUB("AzuirRhvygA", ENGINE_free) +STUB("Azw7PDTow7I", _ZN7WebCore6Editor26writeSelectionToPasteboardERNS_10PasteboardE) +STUB("Azw9C8cy7FY", _ZTVSt14overflow_error) +STUB("Azx5O0j6G0I", _ZN4IPMI4impl11SessionImpl12estimateSizeEPKNS_7Session6ConfigE) +STUB("B++OBplHeGw", rgctx_fetch_trampoline_rgctx_50) +STUB("B+2XbdB4Ox0", _ZTVN7WebCore27ContentSecurityPolicyClientE) +STUB( + "B+BrW0vZr5M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "B+DSBSF2LcI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEppEi) +STUB("B+GM09yeizA", _ZN7WebCore6ISOBox5parseERN3JSC8DataViewERj) +STUB("B+KBspxXlDY", _ZN3sce7Toolkit2NP2V210Tournament22TeamVsTeamMatchDetailsaSERKS4_) +STUB( + "B+M3884R9II", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEEC1ERKSA_) +STUB( + "B+NEg+nq3DE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEE7get_refEv) +STUB( + "B+Prickqu5Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEC2EPS8_) +STUB("B+PvaLFAPzY", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_8TempRankEED1Ev) +STUB("B+VIoA9pLb0", _ZN3JSC18BytecodeCacheErroraSERKNS0_10WriteErrorE) +STUB("B+aG9DUnTKA", sceAgcDcbDrawIndexOffset) +STUB("B+anQG1XI-A", _ZNK7WebCore17MouseRelatedEvent1xEv) +STUB( + "B+dxNKq-u6A", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEneERKS9_) +STUB( + "B+q26TB+Cgs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEdeEv) +STUB("B+q4oWOyfho", sceFontGraphicsCanvasRenewal) +STUB( + "B+qALxbKz48", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEC2EPS8_) +STUB("B+vc2AO2Zrc", sceKernelAllocateMainDirectMemory) +STUB("B+xjZJDv5kA", _ZN3sce2Np9CppWebApi11Matchmaking2V15Cause8fromJsonERKNS_4Json5ValueE) +STUB("B+yGIX1+BTI", sceNpHeapInit) +STUB("B+zfF7bMswI", _accept) +STUB( + "B-3kcHr7I84", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE5clearEv) +STUB( + "B-4G4Bb04K8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE4sizeEv) +STUB("B-5NUKn65m8", _ZN12video_parser5vpcom15GetHandleStatusE) +STUB("B-Dr-f6tRro", _ZN3sce2Np9CppWebApi6Common17ParameterBaseImplC2EPNS2_10LibContextE) +STUB( + "B-F6JswET-k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEED1Ev) +STUB("B-M6KjO8-+w", sceNetSetDnsInfo) +STUB("B-QBMeFdNgY", sceCompanionHttpdGet2ndScreenStatus) +STUB("B-RFzJaOexM", ucol_getKeywords_67) +STUB("B-WW6mNtp2s", sceUserServiceSetShareDailymotionAccessToken) +STUB( + "B-XA7bNV6zU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEEaSERKSA_) +STUB("B-ZabV536Ag", _ZN15AbstractStorage15FacebookContent8SeekTimeElPl) +STUB("B-aDhqkzvT0", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13boolean6IsSetEv) +STUB( + "B-aOIzMdV0Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEE11get_deleterEv) +STUB("B-cXHQXb2xw", AnnotateIgnoreSyncBegin) +STUB("B-ccnhV5zAU", _ZN3sce2Np9CppWebApi6Common6StringeqERKS3_) +STUB("B-fuSvib9CA", _ZN9Inspector21DOMFrontendDispatcher34powerEfficientPlaybackStateChangedEidb) +STUB("B-mNueVFgAw", glDepthRangef) +STUB("B-tbzFDCT4c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEEC2EPS5_PNS2_10LibContextE) +STUB("B-uwQDniNXM", WKRunLoopStopMain) +STUB( + "B-vNtCpZq1E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEED1Ev) +STUB("B-y0uPyx-Hg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEcvbEv) +STUB("B034ouNvVG8", _ZN3sce7Toolkit2NP2V28Commerce14ProductDetailsC1Ev) +STUB( + "B05DPfoBu5s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEE7add_refEv) +STUB( + "B0ABlx18Qbo", + _ZN3sce2Np9CppWebApi14SessionManager2V136RequestPlayerSessionSpectatorFactory6createEPNS1_6Common10LibContextEPKcS9_PNS5_12IntrusivePtrINS3_29RequestPlayerSessionSpectatorEEE) +STUB("B0CeIhQty7Y", _ZNSt10filesystem18_Xfilesystem_errorEPKcSt10error_code) +STUB( + "B0G0DtSGAQ0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEplEm) +STUB("B0G9dxUrdrk", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE7reserveEi) +STUB("B0HIBmg7JR4", _ZN3JSC19HeapSnapshotBuildernwEm10NotNullTagPv) +STUB("B0K-rCwQW4I", _ZN3sce7Toolkit2NP2V212EventsClient13EventDurationC2Ev) +STUB("B0MuvNsV9e0", _ZN9Inspector18IdentifiersFactory16createIdentifierEv) +STUB("B0OBGdoCuI0", _ZN3sce7Toolkit2NP2V27Ranking10UsersRanks13MAX_NUM_USERSE) +STUB("B0PtaDqaYm0", BgsStorageGetItemsBySearch) +STUB("B0QpOqnqivM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEC2ERKS7_) +STUB( + "B0UQCbiIYRg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("B0VJOvGWnWk", WKPageSetIgnoresViewportScaleLimits) +STUB("B0XStQsKGlc", mono_array_set_generic_method_info) +STUB("B0ZX2hx9DMw", sceFiberReturnToThread) +STUB("B0bibF3fc1Q", _ZN7WebCore13GraphicsLayer13addChildAboveEPS0_S1_) +STUB( + "B0cRFLH2VJE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "B0jJcjc1om0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEEaSERKS9_) +STUB( + "B0zyQzPREjo", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getString10Ev) +STUB( + "B1+9tlAndgc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEplEm) +STUB("B12iWctD-b8", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead21getSupportedPlatformsEv) +STUB("B15LDiphlzk", _ZN3sce7Toolkit2NP19JoinPlusInputParamsC2Ev) +STUB( + "B16q2wNrxHU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEC1EPS8_) +STUB("B18ofI3UyAQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEmmEi) +STUB("B19ESkRVY58", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable10unsetValueEv) +STUB("B1FW3aW9sGI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEEC2ERS7_) +STUB("B1GJfvSoSCA", _ZN7WebCore6ISOBox4readERN3JSC8DataViewE) +STUB("B1HFSrttPpo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEED1Ev) +STUB("B1K98ubk6V8", sceKernelIsExperimentalBeta) +STUB( + "B1MWEGy6MHc", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser12getaccountIdEv) +STUB("B1Qm4MdV7iQ", + _ZNK3sce2Np9CppWebApi7Matches2V120ResponseMatchResults22competitiveResultIsSetEv) +STUB("B1TWf4bajm4", htopdw) +STUB("B1a1QgRyfug", _ZN9Inspector32DatabaseBackendDispatcherHandlerC2ERKS0_) +STUB("B1aavPm9L5k", Java_java_net_DatagramPacket_init) +STUB("B1b3EppnsYA", _ZN3sce7Toolkit2NP9Interface5init2EPFvRKNS1_5EventEPvERNS1_9NpTitleIdES6_) +STUB( + "B1iiXCqp68s", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("B1k+b1xdmUc", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V18PlatformEEC1EPS6_) +STUB("B1kel3gTRSg", sceShellCoreUtilGetUmmStatus) +STUB( + "B1pT-zdDrdg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEplEm) +STUB( + "B1zzwpRvaM8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEEC1Ev) +STUB("B2+7Qkl8Hbo", _ZN7WebCore11MediaPlayerD2Ev) +STUB( + "B2+fuyY8txE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEE11get_deleterEv) +STUB("B260o9pSzM8", sceCameraGetMmapConnectedCount) +STUB( + "B27IplPWvms", + _ZThn24_N9Inspector22InspectorDebuggerAgent18getFunctionDetailsERN3WTF6StringERKS2_RNS1_6RefPtrINS_8Protocol8Debugger15FunctionDetailsENS1_13DumbPtrTraitsIS9_EEEE) +STUB( + "B2C25knmUKg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEE3getEv) +STUB("B2EKjeEonCY", _ZN7WebCore8SVGNames15fePointLightTagE) +STUB( + "B2JOIVKjrg8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("B2KI2AachWE", sceAudioPropagationSystemLock) +STUB("B2KLQSgcySg", _ZNK15AbstractStorage18DailymotionStorage10GetServiceEv) +STUB( + "B2Lbw1jKGlk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEEdeEv) +STUB( + "B2YlK2huTfk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEC1ERKS7_) +STUB("B2ZbqV9geCM", tgammaf) +STUB( + "B2aPBKk-lR0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "B2omeKs6CsM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser9setoffsetEi) +STUB("B2oz8skt2FU", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEE3getEv) +STUB("B2qnIypgeQM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEEC2ERS7_) +STUB( + "B2rIJbqSX5k", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinition17getnpServiceLabelEv) +STUB( + "B2wTrWeUxmE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEC1Ev) +STUB( + "B2x+EWuuTCs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEEC1Ev) +STUB("B2zNei739Gs", _ZN3JSC4callEPNS_14JSGlobalObjectENS_7JSValueES2_RKNS_7ArgListEPKc) +STUB( + "B3+G8xcesFI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEED2Ev) +STUB("B35ZcgDNE60", WKPreferencesGetMediaPlayable) +STUB("B36fgKhpfUE", scePadGetFeatureReport2) +STUB("B37SruheQ5Y", sceHttp2SslDisableOption) +STUB("B3CCXKKN4Wo", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE3endEv) +STUB( + "B3CxVRR-nOo", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsC2EPNS1_6Common10LibContextE) +STUB( + "B3DOiuch5ME", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEED1Ev) +STUB("B3MQlY0+31s", mono_arch_init) +STUB( + "B3NV6s4VRQ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEEaSERSA_) +STUB("B3OaooM8pTE", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15CategoryInfoSubEE7addressERS3_) +STUB("B3OwcJfuhCQ", _ZN7WebCore16HTMLMediaElement9setVolumeEd) +STUB("B3Q4YpFuW20", _ZN7WebCore10JSLocation15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("B3UHXWhzQ8o", _ZN4Manx19Curl_cookie_getlistEP10CookieInfoPKcS3_b) +STUB( + "B3bK-9rF3Zg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEC2Ev) +STUB( + "B3f7V9Q7RVs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB( + "B3jqkL1Bdbo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEC2ERS7_) +STUB("B3mdrwFTe5E", _ZN3JSC8JSBigInt6equalsEPS0_S1_) +STUB("B3uOVvPk7zU", + _ZN3sce2Np9CppWebApi14SessionManager2V123MemberWithMultiPlatform8fromJsonERKNS_4Json5ValueE) +STUB("B3uU5aDZn94", FT_Stroker_Set) +STUB("B3wg5t9bCdk", glGenSamplers) +STUB("B3ztGesOnVo", monoeg_g_string_free) +STUB("B4-zPp0EATE", FT_Get_Sfnt_Name) +STUB("B4HngCFLJm0", JNU_ThrowNoSuchMethodError) +STUB( + "B4L6Xr6CWRI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEEC2ERSA_) +STUB( + "B4URAOQjWxE", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersD2Ev) +STUB( + "B4Ubcsl3o5U", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEneERKS9_) +STUB("B4UeKdrvlvE", _ZN7WebCore8JSDOMURL9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("B4ZiJnbQ7BE", g_path_get_basename) +STUB("B4c4qfm3m2c", sceDbgGetSystemSwVersion) +STUB("B4eWCeaW8ec", ScePsmMonoEnvironmentExitcodeGet) +STUB( + "B4eh0wuzR1Y", + _ZN7WebCore27verifyVaryingRequestHeadersERKN3WTF6VectorISt4pairINS0_6StringES3_ELm0ENS0_15CrashOnOverflowELm16EEERKNS_15ResourceRequestEN3PAL9SessionIDE) +STUB("B4ijkp3u6mQ", mono_aot_I18N_Westplt_end) +STUB("B4lsUpqd-Ls", mono_thread_stop) +STUB("B4nfphd97lo", _ZN3sce7Toolkit2NP2V28Presence12Notification14PresenceUpdateD1Ev) +STUB("B4qsrutYs4g", __tsan_external_write) +STUB("B4xIPqeRONI", sceKernelWriteModifyProtectCommand) +STUB("B51fHHTA-po", vm_send_SetBreakpoint) +STUB("B59+zQQCcbU", memmove_s) +STUB("B59oMLpCo6s", sceSpPthreadExit) +STUB("B5DLOG-aIrY", _ZN7WebCore8SVGNames12panose_1AttrE) +STUB("B5Fg2pmcHI8", getmntinfo) +STUB("B5GmVDKwpn0", pthread_yield) +STUB("B5NlgkaeVMw", WKDatabaseManagerGetDatabaseOrigins) +STUB("B5NvWdm5NeA", _ZN3sce16CommonDialogUtil6ServerD0Ev) +STUB("B5ToBf44Rwc", mono_aot_Sce_PlayStation_HighLevel_UI2Platformunwind_info) +STUB( + "B5XenMKoWbY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEppEv) +STUB("B5Z6xoZd+YY", WKPreferencesSetMultithreadedWebGLEnabled) +STUB("B5aHpH1jj90", _ZN3JSC19ControlFlowProfiler37hasBasicBlockAtTextOffsetBeenExecutedEilRNS_2VME) +STUB("B5gVeVurdUA", sceAppContentDownload1Expand) +STUB("B5ibZI5UlzU", sceHttp2CookieImport) +STUB("B5icjC5-YJ0", _ZNK7WebCore13HitTestResult21innerNonSharedElementEv) +STUB("B5mtoJZP8M0", __ubsan_current_error_report_size) +STUB( + "B5pN2ql9A0k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("B6-MC0jKUTI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEE7get_refEv) +STUB("B60nJD7SUE0", sceAppInstUtilAppDestroyMetadata) +STUB( + "B60xhghUcrA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEppEi) +STUB("B62IAjtQimk", _OrbisTextureImage2DCanvas) +STUB("B62c5BF1DtY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEC1Ev) +STUB( + "B637C3-q2+M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEEdeEv) +STUB("B6ANcCn3hAs", _ZNK3sce2Np9CppWebApi14SessionManager2V115SearchCondition11valuesIsSetEv) +STUB("B6HVJtDYxEE", sceInvitationDialogTerminate) +STUB("B6IXdHGBL-g", sceNpAppLaunchLink2IntCreateRequest) +STUB("B6JXVOMDdlw", + _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE5_FputES3_RSt8ios_basewPKcmmmm) +STUB("B6KaJRpSuIc", _ZN7WebCore4Page23suspendAllMediaPlaybackEv) +STUB("B6LJEGw2W8U", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEEC1ERKS5_) +STUB("B6OMnyK7ouA", _ZN9Inspector24RemoteControllableTarget4initEv) +STUB("B6TZJJ+mf9Y", scePatchCheckerGetPackageInfo) +STUB("B6TkLyTY1vc", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScore10getboardIdEv) +STUB( + "B6USapXN+sM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEdeEv) +STUB( + "B6WC6bg4wbY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEEptEv) +STUB( + "B6YyhfkQ+c8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEixEm) +STUB( + "B6ZhAfhgsiw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEptEv) +STUB( + "B6bE1qTByNU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEptEv) +STUB("B6e7H-CKcPQ", _ZN3sce3Xml6StringC2EPKc) +STUB("B6gqPm8EtR8", _ZN7WebCore14SQLiteDatabaseC2Ev) +STUB("B6iefrHukJg", ucsdet_getConfidence_59) +STUB( + "B6ltkP66xoA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEED2Ev) +STUB( + "B6luTT6yBWE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEE7get_refEv) +STUB("B6ogvA4m4fQ", _ZN3sce7Toolkit2NP9NpTitleId14getTitleSecretEv) +STUB("B6tNSkRBbr4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEC2Ev) +STUB( + "B6v3QM3U39Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEppEi) +STUB("B6zWfWto4y4", _ZN3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer13unsetOnlineIdEv) +STUB("B7+CIxAZkLY", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V117ConnectionQualityD2Ev) +STUB( + "B70FxIcn4MY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEC1Ev) +STUB("B73zpTXiw2s", _ULx86_64_get_reg) +STUB( + "B74tP0XybhQ", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_11EntitlementENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB("B75tJbZxjsQ", _ZN23sceMetadataReaderWriter14StorageManager21updateParserInfoTableEv) +STUB("B76Hwhjp9eE", ucln_i18n_registerCleanup_67) +STUB("B782NptkGUc", sceRazorCpuGetDataTagStorageSize) +STUB( + "B7Am8rWsQik", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEppEv) +STUB( + "B7L-DfdoG78", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "B7MU9aLz0fg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("B7Sw-iUs7e4", FTA_Remove_Module_type1) +STUB("B7UcjiIEWJA", _ZN7WebCore11HTMLElement12setTranslateEb) +STUB("B7bQNq1KPQQ", sceNpPushIntGetBindUserState) +STUB("B7cT9aVby7A", sceNpSignalingGetConnectionFromPeerAddressA) +STUB("B7cgFaVqJ8U", _ZN3sce2Np9CppWebApi7Matches2V119RequestInGameRosterD2Ev) +STUB("B7ciVXz8B14", WKPreferencesSetInlineMediaPlaybackRequiresPlaysInlineAttribute) +STUB("B7elLSJ8Wkk", + _ZN3sce2Np9CppWebApi12Leaderboards2V123RecordScoreResponseBody16setTmpSerialRankERKi) +STUB("B7gQbkr+FVU", _ZNK7WebCore10ScrollView14scrollbarModesERNS_13ScrollbarModeES2_) +STUB( + "B7l2QFoeyM4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEixEm) +STUB( + "B7pGVW6pRjU", + _ZN7WebCore15RemoteDOMWindowC1EON3WTF3RefINS_11RemoteFrameENS1_13DumbPtrTraitsIS3_EEEEONS_22GlobalWindowIdentifierE) +STUB("B7qwtk+RTDs", _ZN3sce7Toolkit2NP2V28Matching7Request11SetRoomInfo20MAX_SIZE_ROOM_STATUSE) +STUB("B7rBR0CoYLI", sceNpTusGetDataForCrossSaveVUserAsync) +STUB("B7re7PeP12A", _ZN3NTF7Privacy13setDoNotTrackEb) +STUB( + "B7sCJIvsqgw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEE11get_deleterEv) +STUB( + "B7uKA2QQPNU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB("B7w5kvr9Ups", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE7reserveEi) +STUB("B8-G2Ok8Wrk", WKPreferencesGetSubpixelAntialiasedLayerTextEnabled) +STUB( + "B81sOpR2-bM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEE7get_refEv) +STUB("B85Z+whqllM", + _ZN3WTF15base64URLEncodeEPKvjRNS_6VectorIcLm0ENS_15CrashOnOverflowELm16ENS_10FastMallocEEE) +STUB( + "B88G+cjn1ZY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEE7add_refEv) +STUB( + "B89vPOPWopQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEEC2ERSA_) +STUB( + "B8BrtNRzars", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEdeEv) +STUB( + "B8F97XR5SmU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE3endEv) +STUB("B8G++ayAyMc", __asan_report_exp_load16) +STUB( + "B8Kw-m2N8sM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEEC2Ev) +STUB("B8LYOaTudRU", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEEdeEv) +STUB( + "B8c4P1vCixQ", + _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tmPKwSE_) +STUB("B8fPrmmyTPg", g_slist_prepend) +STUB("B8iTw9a7JFU", _ZN7WebCore8SVGNames10widthsAttrE) +STUB("B8jGs8D+GHY", unorm2_getRawDecomposition) +STUB("B8nHW0+LrJ8", JSObjectGetPrivateProperty) +STUB("B8q2yfuN-ps", _Z28Ime_DicDeleteLearnDicsNativei) +STUB( + "B8qZXzgMxoM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE5beginEv) +STUB("B8rOL5rf3A8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEaSERS7_) +STUB( + "B9-ACtQJlDE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEE11get_deleterEv) +STUB( + "B9BhkZjAY2s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE8copyFromERKS9_) +STUB("B9Cj8nRZE3s", _ZN12video_parser18cMp4FFLHndlManager14getFF4MtdfHndlEj) +STUB( + "B9DfrQyYWOE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("B9KU0iisDek", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110ResultTypeEEmmEv) +STUB( + "B9Kfm6rak-o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "B9LgJ8g700s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE8pushBackERKS8_) +STUB( + "B9MuU8U0pGk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEE3getEv) +STUB("B9Q2ay2JEjE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEEcvbEv) +STUB( + "B9Ux+ETlMS8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE5clearEv) +STUB( + "B9ZgR4SGTfU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEaSERKS9_) +STUB("B9f0KrVp8No", _ZN3WTF10initializeEv) +STUB("B9fOyasfPcM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE5clearEv) +STUB("B9gyOyMDTec", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEptEv) +STUB( + "B9lE08nMQWs", + _ZN7WebCore18ImageBufferBackend12putImageDataENS_22AlphaPremultiplicationERKNS_9ImageDataERKNS_7IntRectERKNS_8IntPointES1_Pv) +STUB("B9rn6eKNPJg", _ZTSSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE) +STUB("B9ssGwF-8Rs", _ZNK7WebCore12ChromeClient24hasStablePageScaleFactorEv) +STUB("B9yullCf7f8", _ZNK3sce2Np9CppWebApi14SessionManager2V15Error14getReferenceIdEv) +STUB("BA07kXgwOxA", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification16FriendlistUpdateEE3setEv) +STUB( + "BA5HULZBtrE", + _ZNK3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfile13isInitializedEv) +STUB( + "BA8SaOC5vNc", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB( + "BAA1OKZXON4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEEC2Ev) +STUB("BAB9Ehv8GXU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEC2ERS7_) +STUB( + "BAE63doJm-8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEEC2EPSA_PNS2_10LibContextE) +STUB( + "BAEl5ulW77w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE7popBackEv) +STUB("BAI904Pucyk", _ZN3WTF11Persistence7DecoderrsERNS_8OptionalItEE) +STUB("BALU6L2sL-0", uloc_getDisplayLanguage_67) +STUB("BAYjQubSZT8", tzname) +STUB( + "BAb+dtLjyyk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEppEv) +STUB("BAeP6NR-9z0", WKBundlePageViewportConfigurationAsText) +STUB( + "BAhScPe82vA", + _ZN7WebCore12RenderObject19scrollRectToVisibleENS_19SelectionRevealModeERKNS_10LayoutRectEbRKNS_15ScrollAlignmentES7_NS_31ShouldAllowCrossOriginScrollingE) +STUB("BAiD5liOBlk", _ZN3JSC41DeferredStructureTransitionWatchpointFireD0Ev) +STUB( + "BAlp6U0xLWs", + _ZN3sce2Np9CppWebApi14IdentityMapper2V318PsnWebErrorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_11PsnWebErrorEEE) +STUB( + "BAyVZRrOS24", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE6resizeEj) +STUB("BAz8Ji7lJls", curl_mvsnprintf) +STUB("BB+kb08Tl9A", scePthreadRwlockDestroy) +STUB( + "BB0EZXP2iqs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE10setContextEPNS2_10LibContextE) +STUB("BB1y186LP9w", _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead16unsetSearchIndexEv) +STUB("BB2VAEZ47TU", _ZN3sce7Toolkit2NP2V23TUS7TusDataC2ERKS4_) +STUB("BB4gl7SgLdk", FT_Stream_GetShortLE) +STUB( + "BB58ZJQf2D4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEEcvbEv) +STUB( + "BB6Vh01keww", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEdeEv) +STUB("BB8G5Wd9EMs", JVM_AssertionStatusDirectives) +STUB("BBD1CgzV0bM", _ZN3sce7Toolkit2NP2V28Matching26MemberSignalingInformationD2Ev) +STUB("BBIVUqapmKw", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12EventsClient6EventsEE19setCustomReturnCodeEi) +STUB("BBJoU2m+U88", WKPreferencesGetDiagnosticLoggingEnabled) +STUB("BBM2NN4R+Xs", sceFacePartsEx) +STUB( + "BBO7LTJsiPg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEmmEi) +STUB( + "BBQqK246aTI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEEaSERSA_) +STUB("BBQurH6VtfA", _ZNK7WebCore7Element15getURLAttributeERKNS_13QualifiedNameE) +STUB("BBRMvk1Qo4w", _ZN7WebCore10Pasteboard10readStringERKN3WTF6StringE) +STUB("BBRc85lKZCs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEEC2EPKS6_) +STUB("BBRhYfYBDgU", FT_Glyph_StrokeBorder) +STUB("BBSmGrxok5o", sceSystemServiceGetAppIdOfMiniApp) +STUB( + "BBUCC6HfyHo", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot11getsortModeEv) +STUB( + "BBYJ+BDQWaM", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("BBbJ92uUdCg", sceNpMatching2LeaveLobby) +STUB( + "BBfG6aynOTQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEE7get_refEv) +STUB( + "BBmhEXX+nA0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("BBoN-+1fjTA", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanityC1Ev) +STUB("BBtBjx9-bMI", _ZN3sce2np8NpCommIdC2Ev) +STUB( + "BBtxzzLnRjc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEE7get_refEv) +STUB("BC+OG5m9+bw", sceKernelGetDirectMemoryType) +STUB("BC-SCIsDApU", rgctx_fetch_trampoline_mrgctx_21_p) +STUB("BC5RZVMOin4", _ZL4msgs) +STUB( + "BC9KZo0gV2c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEED2Ev) +STUB( + "BC9kuL2+VLU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEED1Ev) +STUB( + "BCATnoGUjrs", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlot17setnpServiceLabelEj) +STUB("BCDA6jn4HVY", sceUserServiceGetGlsTtsSpeed) +STUB("BCFRvYRHgoc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEEC2EPKS6_) +STUB( + "BCI8FlVa2D0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEE5resetEPS6_) +STUB("BCLK+XXiiEM", rgctx_fetch_trampoline_mrgctx_59_p) +STUB("BCUDW4v2m9E", + _ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody20createdDateTimeIsSetEv) +STUB("BCUovNCHJIE", jpeg_idct_14x14) +STUB("BCVNx+Pzk1M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEppEi) +STUB( + "BCYGZySszhU", + _ZN3sce2Np9CppWebApi14SessionManager2V140PostGameSessionsSearchRequestBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_15SearchConditionEEEEEPNS9_INS3_33PostGameSessionsSearchRequestBodyEEE) +STUB("BCZa1egj-TY", mono_aot_Sce_Vsh_ProfileCachejit_code_start) +STUB("BCcUsMKVXRA", WKPreferencesSetIsAccessibilityIsolatedTreeEnabled) +STUB("BCfMrh6R4AY", _ZN3sce3pss4core8graphics14NativeGraphics19AllocateVideoMemoryEjj) +STUB("BCgmZ6fi4Os", ucurr_isAvailable_67) +STUB("BCjX3MYyu+M", _ZN3sce7Toolkit2NP2V28Commerce12SubContainerC2Ev) +STUB("BCn4rUfwb1E", sceMusicFwIsEnded) +STUB("BCsl0BxGKnE", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils5IdMapEE3getEv) +STUB("BCsyLvW91To", _ZNK3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead11getTeamNameEv) +STUB("BCvXipfsDpg", EVP_aes_256_gcm) +STUB("BCwmAAHDv6w", _ZN3sce7Toolkit2NP2V27Ranking7Request8SetScore8MAX_PCIDE) +STUB("BCzsWDsn9L0", _ZN7WebCore7Element9offsetTopEv) +STUB("BD-dweT67gw", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE8copyFromERKS7_) +STUB("BD-xV2fLe2M", gamma) +STUB("BD6kfx442Do", sceNpMatching2LeaveRoom) +STUB( + "BDBiO4eh5ZA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "BDDT3qQnSN8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEC1EPKS8_) +STUB("BDDZwF5kuTc", sceUsbStorageInit) +STUB("BDGc8ohuveU", sceKernelGetPrefixVersion) +STUB("BDK0OHPh5wc", __sqrtf) +STUB("BDLSyH7y6Mo", sceKernelSetPhysFmemLimit) +STUB( + "BDMQf9z9-Q0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEC2Ev) +STUB("BDPEXRJITt8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEC1ERKS8_) +STUB( + "BDPHwVHGGVU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("BDUaqlVdSAY", sceScreenShotEnableNotification) +STUB("BDX+d6SozkA", _ZN3sce2Np9CppWebApi6Common6VectorIlE6insertENS2_8IteratorIlEERKlRS6_) +STUB("BDZc9tjWAxw", _ZN3sce2Np9CppWebApi6Common6VectorIjEC1Ev) +STUB( + "BDZsAgnX9Jw", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM10PseudoTypeEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB( + "BDdJ6gZSolk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEppEi) +STUB( + "BDfvHEREmew", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEptEv) +STUB("BDgdYUNKTic", mono_aot_Sce_Vsh_AppContentUtilWrapperplt_end) +STUB("BDiJG6eet1g", mono_runtime_resource_check_limit) +STUB("BDie4qEtKuA", _ZN3sce2np9JsonValue13GetFieldValueEPKc) +STUB("BDt+Gq2a+Rk", _ZN7WebCore11MathMLNames17movablelimitsAttrE) +STUB("BDteGj1gqBY", + _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewPKv) +STUB("BDv+BtxRrDw", _ZN7WebCore12BlobRegistryD1Ev) +STUB( + "BDvV6iGMotE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEC1Ev) +STUB("BDwgsFETJuo", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_19WordFilterSanitizedEEC1Ev) +STUB("BE1xZxTRD64", + _ZN3sce7Toolkit2NP2V24Core7Request11MemoryPools32IN_GAME_MESSAGE_MEM_DEFAULT_SIZEE) +STUB("BE7U+QsixQA", _ZNSt12placeholders3_19E) +STUB( + "BE8ShILG8YA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB("BEErbU1FwoI", + _ZNK7WebCore32FixedPositionViewportConstraints28layerPositionForViewportRectERKNS_9FloatRectE) +STUB("BEFy1ZFv8Fw", copysign) +STUB("BEGvI6L3BqI", _ZN15AbstractStorage14TwitterContent4OpenEit) +STUB("BEK5iZulCwI", _ZN7WebCore12DOMTokenList8setValueERKN3WTF6StringE) +STUB("BEKIcbCV-MU", towctrans) +STUB( + "BEM9Ptmji9U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEEcvbEv) +STUB( + "BENEp-HcOgk", + _ZN3sce2Np9CppWebApi7Matches2V123ResponseMatchStatistics19setPlayerStatisticsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_23ResponsePlayerStatisticEEEEE) +STUB("BER1Mhcfk28", _ZNK3JSC19CacheableIdentifier4dumpERN3WTF11PrintStreamE) +STUB("BEYVp9YbGN8", _ZN10Deprecated25ScriptCallArgumentHandler14appendArgumentEl) +STUB("BEZCWisc+zw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEC1Ev) +STUB("BEcoXHS2cZM", sos_memp) +STUB("BEh38m+5WA8", + _ZN7WebCore21SerializedScriptValueC2EON3WTF6VectorIhLm0ENS1_15CrashOnOverflowELm16EEE) +STUB("BEhMn+TyoGA", sceSocialScreenDialogUpdateStatus) +STUB( + "BEl2UvMHC+Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEC1EPNS2_10LibContextE) +STUB( + "BEliazuCx3s", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetInteger6Ev) +STUB("BEoPiW7swz4", HMAC_Init) +STUB( + "BEoTnwMVeoM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE28getResponseInformationOptionEv) +STUB("BEpYI1rpnnw", _ZN7WebCore7Element25ensureUserAgentShadowRootEv) +STUB("BEsBaj8K0Bs", _ZN3JSC13ShadowChicken16functionsOnStackEPNS_14JSGlobalObjectEPNS_9CallFrameE) +STUB( + "BEugniHUcTM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEEcvbEv) +STUB("BEut3UqoLv8", _ZN7WebCore8JSPath2D9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("BEwqFgdKXuA", _ZNK3WTF3URL11encodedUserEv) +STUB( + "BEzlMkuv4WY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEmmEi) +STUB("BEzuHMRRYIs", _ZN3WTF13printInternalERNS_11PrintStreamEj) +STUB( + "BF16BCzT5hQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEC2EPNS2_10LibContextE) +STUB("BF6Hn6R+ZYw", mono_aot_SMDiagnosticsjit_got) +STUB("BF6zFAeRAYA", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setInteger6ERKi) +STUB("BF7vBpqnd3I", _ZN3JSC8Debugger11returnEventEPNS_9ExecStateE) +STUB( + "BFB+8Xz4dms", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot10unsetgroupEv) +STUB("BFEwbDCkoNM", sceEsvmEngineMediaKeySessionLoad) +STUB( + "BFH1K+eyICA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEplEm) +STUB("BFJRGOxbuKs", _ZN7WebCore10FileSystem13directoryNameERKN3WTF6StringE) +STUB("BFLU41DtVFE", + _ZN3sce2Np9CppWebApi14SessionManager2V113ErrorResponseC1EPNS1_6Common10LibContextE) +STUB("BFP+XuuORYo", _ZN3JSC14JSGlobalObject25setRemoteDebuggingEnabledEb) +STUB( + "BFQ2dbCyIzM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("BFfBxCfF9BI", _ZN3sce7Toolkit2NP5EventC1Ev) +STUB( + "BFfFKl6E9wE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("BFha7NFunUs", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_18SessionInformationEE17getAdditionalInfoEv) +STUB("BFhaIpDOpSw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEppEv) +STUB( + "BFiUy752Vkg", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicket30unsetxPsnAcceptPlatformNamePs5Ev) +STUB("BFijPohIpnY", _ZN3WTF12AtomicString6numberEm) +STUB( + "BFjFr4bA0uI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEmmEv) +STUB( + "BFlGrz5lIJ0", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsC1EPNS1_6Common10LibContextE) +STUB("BFnY5ZzK7-Q", WKContextSetAdditionalPluginsDirectory) +STUB( + "BFqWU-lS4dg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEE7add_refEv) +STUB("BFt6nFM3lbc", ucurr_openISOCurrencies) +STUB( + "BFvPW0mQWVo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEeqERKS9_) +STUB("BFyDpKjORBg", PSNowGetStatus) +STUB("BFzTW597daY", _ZN3JSC13RuntimeMethod6s_infoE) +STUB("BFzmWeUd7kA", sceVisionManagerRequestRecogUtility) +STUB("BG0nGfpkivk", _ZN7WebCore8Settings36setShowDebugBordersInspectorOverrideEN3WTF8OptionalIbEE) +STUB( + "BG1mJXc4T64", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEED2Ev) +STUB( + "BG1wfct4cqc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEC1Ev) +STUB( + "BG5WJCpVwo4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEneERKS9_) +STUB( + "BGBIr55MEWg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEEdeEv) +STUB( + "BGDPQriAEdY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("BGM3os8bUdE", _ZN23sceMetadataReaderWriter8MetadataC2ERKS0_) +STUB("BGOHoGhfYyo", _ZN3sce7Toolkit2NP2V26Trophy16UnlockedTrophies17INVALID_TROPHY_IDE) +STUB("BGPoxAhhmaQ", ubrk_safeClone_67) +STUB("BGUi9Gj3128", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend7FriendsEE5resetEv) +STUB( + "BGaXNQH5MYA", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEEiRNS2_10LibContextEPT_m) +STUB( + "BGbpVa9D+yM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE5beginEv) +STUB("BGd4bkSC3gA", _ZN9Inspector13AgentRegistry13discardValuesEv) +STUB( + "BGjQVtu-vTo", + _ZN7WebCore18StyleSheetContentsC1EPNS_15StyleRuleImportERKN3WTF6StringERKNS_16CSSParserContextE) +STUB("BGlxgyjSzjI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEEC1Ev) +STUB("BGuvmFH0-Uo", WKPageStopLoading) +STUB( + "BGvHZ9VInCE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEEC2ERKSA_) +STUB("BGw928BfU6E", _ZN3JSC10JSFunction11getCallDataEPNS_6JSCellE) +STUB("BH0Hh+FnDFs", mono_aot_Sce_Vsh_Webbrowser_XdbWrapperjit_got) +STUB("BH3wIwvzC6A", u_strrchr32_67) +STUB( + "BH5QR-sR5io", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEE11release_refEv) +STUB("BH5Tfw8jd04", _ZNK7WebCore27TranslateTransformOperation1zEv) +STUB( + "BH6N4Bh3BJ4", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13integer6IsSetEv) +STUB( + "BHA-TnJ9SPQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("BHAPXQ4-8eQ", _ZN3JSC10LinkBuffer34finalizeCodeWithoutDisassemblyImplEv) +STUB("BHBgaf-ZEy4", scePigletHeapDump) +STUB("BHCyHXCvQZ8", _ZN7WebCore21mainThreadNormalWorldEv) +STUB( + "BHE96QMi8hA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEC2EPS6_PNS2_10LibContextE) +STUB( + "BHKsAoWGubk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEEC2ERKSA_) +STUB( + "BHLRXt2hn-w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEE7get_refEv) +STUB("BHSBmUC-3yo", _ZN3sce7Toolkit2NP2V23TUS7Request12TusUserInputC1Ev) +STUB( + "BHgtEJLdWkc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE8pushBackERKS8_) +STUB( + "BHkqRWg+K2Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEC1Ev) +STUB("BHn83xrF92E", sceCameraOpen) +STUB( + "BHodSFf-lrE", + _ZN3sce7Toolkit2NP2V210Tournament19sendUserMatchReportERKNS3_7Request19SendUserMatchReportEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("BHouLQzh0X0", sceKernelDirectMemoryQuery) +STUB("BHrUtjVRivQ", sceHttpCacheClearAll) +STUB("BHutqch9tAQ", _ZNK7WebCore18RenderLayerBacking26backingStoreMemoryEstimateEv) +STUB( + "BHvfIGdarBQ", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody17getDataStatusListEv) +STUB( + "BHx3f9oTYnA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("BHzcOeptnhU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEE11get_deleterEv) +STUB("BI3Wo2RpVmA", _ZN3sce2np8NpTicket5ClearEv) +STUB("BI4F6Jymk4g", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getPrimaryAudioLang) +STUB("BI59R87qofU", _ZN25MmsFileUpdaterFsOperation13finishTmpFileEv) +STUB( + "BI9o5XhZN0U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEEC2ERSA_) +STUB("BIALMFTZ75I", devname_r) +STUB("BICyNlVbb44", sceFsUfsFsckWithMM) +STUB("BIEjU1aGhmo", _ZN7WebCore8SVGNames6fyAttrE) +STUB("BIFGEnYbKVE", _ZN3sce2Np9CppWebApi7Matches2V118RequestMatchPlayerD1Ev) +STUB("BIGLukID1tA", _ZN7WebCore10JSDocument15subspaceForImplERN3JSC2VME) +STUB( + "BILlm3ybHYc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE10setContextEPNS2_10LibContextE) +STUB( + "BINIC8w3PEA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE5emptyEv) +STUB( + "BINwqPnQC7s", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("BIPexNBSGog", sceAgcDcbCondExec) +STUB("BIQOXd6njEg", _LMBCSData6_67) +STUB("BIQaOpcytRc", sceMbusAcquireControlList) +STUB( + "BIaC5d7ta6o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEppEv) +STUB("BIelQlNTFGc", _ZNK7WebCore26HTMLTextFormControlElement12selectionEndEv) +STUB("BIjOgAimSf8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEC1ERKS7_) +STUB("BIkMmUfNKWM", sceNpTusCreateNpTitleCtx) +STUB("BIn573xddA8", Java_java_net_PlainDatagramSocketImpl_bind0) +STUB("BInU0JPW7s0", approx) +STUB("BIo07nRbnrs", ubidi_getVisualIndex_67) +STUB("BIqPNz1T+t4", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_6NpUserENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB("BIqhORVcFnI", sceApplicationSwitchToNeoMode2) +STUB( + "BIuDHYFezwk", + _ZN3sce2Np9CppWebApi14SessionManager2V127GameSessionSpectatorFactory7destroyEPNS3_20GameSessionSpectatorE) +STUB("BIz4JaR7IBM", mono_aot_Sce_Vsh_ShellCoreUtilWrapperunbox_trampolines) +STUB("BJ6dJOeqPtk", _ZN7WebCore9HTMLNames21onaccessibleclickAttrE) +STUB("BJCXJJCi0Zc", _ZN3sce2np3ipc17ServiceIpmiClient17invokeInitServiceEi) +STUB("BJCgW9-OxLA", _ZTISt8ios_base) +STUB( + "BJEeKVvL-ps", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE8pushBackERKS8_) +STUB( + "BJIfYAzuuhk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE3endEv) +STUB( + "BJJI50AQKTM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE4sizeEv) +STUB("BJKpbkn0Rto", _ZN7WebCore8Settings16setImagesEnabledEb) +STUB("BJRODC6xvA4", u_iscntrl_67) +STUB( + "BJRs+hkrUvo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEEC1ERSA_) +STUB("BJaqcDYGAa8", u_errorName_67) +STUB("BJgi0CH7al4", sceHttp2SetRedirectCallback) +STUB("BJi3VSFP+8s", sceRegMgrCntlDeleteReg) +STUB( + "BJiptujMcFA", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities19unsetnpServiceLabelEv) +STUB( + "BJmW3e8x6KI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEppEi) +STUB( + "BJr12zVoeWY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEEC2ERSA_) +STUB( + "BJw8VOqeLUQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("BJwTxrffVrs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEEC2Ev) +STUB("BK2h2pP0g2U", _ZN9Inspector14InjectedScript18releaseObjectGroupERKN3WTF6StringE) +STUB( + "BKEXfrDxpLY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEE3getEv) +STUB("BKGclfR6HkY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEED2Ev) +STUB( + "BKGu+Lprm1w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEaSERKS9_) +STUB( + "BKIcnpAAfjQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEC2Ev) +STUB("BKMEGvfCPyU", sceUsbdAttachKernelDriver) +STUB( + "BKNfHSauA58", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSE_) +STUB("BKQCiAX1qrk", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinition10getboardIdEv) +STUB("BKSCW2bCACA", __cxa_thread_atexit) +STUB("BKSUXMNPO2s", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session12Notification18InvitationReceivedEE3getEv) +STUB( + "BKUn9pJKoas", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEC1EPKS8_) +STUB("BKVwwV971yw", _ZN3sce7Toolkit2NP2V212NetworkUtils7Request22GetDetailedNetworkInfoD1Ev) +STUB("BKdEIHS1zbQ", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetInteger2Ev) +STUB("BKgXHG1tMP0", WKPageConfigurationSetContext) +STUB( + "BKiVEmY4ukU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEplEm) +STUB("BKidCxmLC5w", _Stoldx) +STUB("BKzMBqwj0jc", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_20ChallengeRecvDetailsEEC1Ev) +STUB("BKzl3QflY8o", _ZN3JSC22JSFinalizationRegistry14finishCreationERNS_2VMEPNS_8JSObjectE) +STUB( + "BL0zWc9s8lU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE5emptyEv) +STUB("BL8gQE-Gbnc", _ZN3JSC7Symbols24setStateToMaxPrivateNameE) +STUB("BLDhOJAQYsw", _ZNK3sce2Np9CppWebApi6Common6VectorINS2_6StringEEixEm) +STUB( + "BLE+zQmOkmc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEcvbEv) +STUB( + "BLLsnv5XnE8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "BLMGAUPAgMk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEC1ERKS7_) +STUB( + "BLSu0e93tLg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEEcvbEv) +STUB( + "BLVKL43rpY4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEC1Ev) +STUB("BLVwFfgGWes", _ZN7WebCore15GraphicsContext9setShadowERKNS_9FloatSizeEfRKNS_5ColorE) +STUB("BLWN2--HrXA", _ZN9Inspector18InspectorHeapAgentnwEm) +STUB("BLXbTBn-sg8", mono_aot_Sce_PlayStation_Jsonunbox_trampolines) +STUB( + "BLadnRsV8+Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEC1ERS7_) +STUB("BLbG44GXk8c", _ZN9Inspector28HeapBackendDispatcherHandlerD2Ev) +STUB("BLeUlxPwr5w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEC1Ev) +STUB( + "BLezlnPXU14", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEEC2ERKSA_) +STUB( + "BLfs8ztkRoc", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "BLgO6GslN9U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEEC2ERKSA_) +STUB("BLhZ1h2APgE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEEneERKS7_) +STUB("BLo--aicQXs", scePlayReadyContentGetProperty) +STUB("BLyDVSfU8a0", _ZN3sce2Np9CppWebApi7Matches2V120ReportResultsRequestD1Ev) +STUB("BLyftg4Rx14", jpeg_read_coefficients) +STUB("BLylHdCcD2o", _ZNK7WebCore16HTMLInputElement11isTimeFieldEv) +STUB("BLz7Uep60o8", _ZN13MsvMetaEditor20cmUtChangeDateToTimeEPK2tmPj) +STUB( + "BLzPQYlWeXE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEcvbEv) +STUB( + "BM+oEk6QXRU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEEaSERKSA_) +STUB("BM0pVKMuv+o", mono_register_config_for_assembly) +STUB( + "BM2ZMe65ZoM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "BM5uQRao-yA", + _ZN3sce2Np9CppWebApi6Common23UpDownStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEED2Ev) +STUB("BM8Nx5umthA", _ZN12video_parser5vpcom8MemalignE) +STUB("BMDA8TuExXw", il2cpp_domain_get) +STUB("BMJN7feeTqs", _ZN7WebCore14JSVoidCallback11handleEventEv) +STUB("BMP8b5t9wPM", WKPreferencesSetCookieEnabled) +STUB( + "BMP97pExpV0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEC2Ev) +STUB("BMR4F-Uek3E", sceSaveDataUmount) +STUB("BMV1qriRuLo", mono_btls_x509_store_ctx_get_current_cert) +STUB("BMV5XFtSkZk", WKBundleFrameEnableThrottlingByTime) +STUB("BMVIEbwpP+8", __floatdidf) +STUB("BMW45a2F-Yk", mono_aot_Sce_Vsh_Np_Trophyunbox_trampoline_addresses) +STUB("BMX1jxc0IG4", mono_exception_from_token_two_strings) +STUB("BMYA9UuBQCo", SSL_CTX_check_private_key) +STUB( + "BMYqy4ygGVQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("BMcXei7NXB8", SSL_get_servername) +STUB("BMjFEB02M-s", _ZN7bmalloc12cryptoRandomEPvm) +STUB( + "BMkYZGbKsZE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEcvbEv) +STUB("BMqsRTJXTRk", RtcGetCurrentAdNetworkTickNative) +STUB("BMsgOkmiz1U", mono_aot_Sce_Vsh_Stickerjit_got) +STUB("BMuRmwMy6eE", _ZTVSt13basic_ostreamIwSt11char_traitsIwEE) +STUB("BMuU85q-3jg", mono_aot_Mono_CSharpunbox_trampolines_end) +STUB("BN-ieaFADxc", + _ZN3sce2Np9CppWebApi14ConnectAccount2V215PSNErrorFactory7destroyEPNS3_8PSNErrorE) +STUB( + "BN9ThaS6KH0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEC2EPNS2_10LibContextE) +STUB( + "BNBXB7Z1hwE", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeOnlineId2AccountIdBatch13isInitializedEv) +STUB("BNC7IeJelZ0", _ZTSh) +STUB("BNDYDpUYVPE", utrace_setFunctions_67) +STUB("BNEChuhP2dU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEED2Ev) +STUB("BNFmm3YBxv0", _ZN3JSC7Symbols25repeatSlowPathPrivateNameE) +STUB("BNHoa9i4g+4", c11) +STUB("BNJJ7H7zm1o", multi_access) +STUB( + "BNWaP6gbDjo", + _ZN7WebCore12EventHandler24logicalScrollRecursivelyENS_22ScrollLogicalDirectionENS_17ScrollGranularityEPNS_4NodeE) +STUB("BNYc2zKvxyM", _ZN3sce7Toolkit2NP2V24Core15StringifyResultD1Ev) +STUB( + "BNZq-mRvDS8", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERPv) +STUB("BNbWdC9Jg+4", j1) +STUB( + "BNhsHJdw7g8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEeqERKS9_) +STUB("BNjEJWwVbtY", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE3endEv) +STUB( + "BNnqV4vsILU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("BNowx2l588E", sceKernelGetProcessTimeCounterFrequency) +STUB( + "BNq3N8g5tWI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEC2EPS8_) +STUB("BNt4eT2ocg0", vm_send_CreateDelegateTrampoline) +STUB("BNtUjnBrApE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEEneERKS7_) +STUB("BNvBr7ovc3Q", mono_aot_Sce_Vsh_ErrorDialogUtilWrapperplt) +STUB("BO1r8DPhmyg", _ZNSt12placeholders3_12E) +STUB("BOAlLR6ANos", _ZN27FilePromoteInnerInformationC2EPKc) +STUB("BOBj7UfI96k", _ZN3WTF8JSONImpl9ArrayBaseD0Ev) +STUB( + "BOIKtuT41Pw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEdeEv) +STUB( + "BOJdV8VufQA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEneERKS9_) +STUB( + "BOKKZYXlCec", + _ZN15AbstractStorage15HttpTransaction15ReceiveResponseERSbIcSt11char_traitsIcENS_8StlAllocIcEEERiS6_) +STUB("BOLYyx48MlQ", _ZN12video_parser5vpcom11Utf16ToUtf8EPKwPSsi) +STUB("BOLp9C1MCgk", + _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody22unsetCenterToEdgeLimitEv) +STUB( + "BOMZ+tScMVk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE5clearEv) +STUB("BOQB98GDDvA", _ZN7WebCore14JSNodeIterator9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB( + "BOV1LyWOI30", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEC2Ev) +STUB("BOVKAzRmuTQ", sceAvPlayerDisableStream) +STUB("BOaUT257JQE", _ZN7WebCore11MediaPlayerdaEPv) +STUB("BObVGXGG-aE", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEEdeEv) +STUB("BOfNQNz061Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEE7get_refEv) +STUB( + "BOlTjkKvHAc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "BOqOrxjw6zA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEC1EPS7_PNS2_10LibContextE) +STUB("BOtuzpAvdiU", RemotePlaySetProhibition) +STUB("BOwybKVa3Do", sceRemoteplayTerminate) +STUB( + "BP+G79hAkeI", + _ZN3JSC17profiledConstructEPNS_14JSGlobalObjectENS_15ProfilingReasonENS_7JSValueERKNS_8CallDataERKNS_7ArgListES3_) +STUB("BP2pKoCEwgs", sceSdmaCopyTiled) +STUB( + "BPCC-AI8P7c", + _ZN7WebCore12ChromeClient45inputElementDidResignStrongPasswordAppearanceERNS_16HTMLInputElementE) +STUB("BPD2616kIP4", _ZN3sce2Np9CppWebApi7Matches2V118RequestMatchPlayer15unsetPlayerNameEv) +STUB("BPE9s9vQQXo", mmap) +STUB("BPFBUek7PTA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEaSERS7_) +STUB("BPFs-TiU+8Q", sceUserServiceSetParentalGameAgeLevel) +STUB( + "BPKS1YfNBlc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEE7add_refEv) +STUB( + "BPNbpUdVw1U", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUseraSERS5_) +STUB( + "BPSPc3pUMJo", + _ZN3sce4Json19InternalInitializer20initialize_staticlibEPKNS0_13InitParameterENS1_10InitOptionE) +STUB( + "BPdaznYGKzQ", + _ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody17unsetJoinDisabledEv) +STUB("BPgk4Vm11OA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEE3getEv) +STUB("BPh+itev3WQ", _ZNK3WTF19MetaAllocatorHandle4dumpERNS_11PrintStreamE) +STUB( + "BPhwn5bGl4A", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessionsC2Ev) +STUB("BPidIRvnZRQ", WKPreferencesSetResourceUsageOverlayVisible) +STUB("BPj7nbdgDGQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEE11release_refEv) +STUB( + "BPpId3sgRzc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEC1ERS7_) +STUB("BPsYUrdqw34", _ZN9Inspector21InspectorConsoleAgentC2ERNS_12AgentContextE) +STUB("BPwhnEHj1-4", _ZNK6icu_678TimeZone5getIDERNS_13UnicodeStringE) +STUB( + "BPylgjzR0mg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEppEi) +STUB( + "BQ-8I4FcCQs", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("BQ350P8PSlY", + _ZN3sce2Np9CppWebApi14SessionManager2V130ResponsePlayerSessionSpectator12setAccountIdERKm) +STUB("BQ3tey0JmQM", sceCommonDialogIsUsed) +STUB( + "BQ5GYaLU2Io", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEC2Ev) +STUB("BQ9V6q6BT9k", JVM_GC) +STUB("BQCvVFzFZCg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEEaSERKS7_) +STUB( + "BQFwN58AHC0", + _ZN7WebCore10MouseEvent6createERKN3WTF12AtomicStringEbbNS1_13MonotonicTimeEONS1_6RefPtrINS_11WindowProxyENS1_13DumbPtrTraitsIS7_EEEEiiiiibbbbttPNS_11EventTargetEdtPNS_12DataTransferEb) +STUB("BQIv6mcPFRM", CERT_extractDistinguishedNames2) +STUB("BQKkiZVKZaI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEED2Ev) +STUB("BQL5SKPxOM8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEppEi) +STUB( + "BQLLsk5SkLI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB( + "BQLWa5kt2Gw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEEC2Ev) +STUB( + "BQMAVSbVQDY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEptEv) +STUB("BQNyLN2nA9w", tls_config_new) +STUB( + "BQQLYmOV94w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE21intrusive_ptr_sub_refEPS9_) +STUB("BQQniolj9tQ", sceKernelMapDirectMemory2) +STUB("BQUi7AW+2tQ", sceSystemServiceChangeUvdClock) +STUB( + "BQW1eGZuwVE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE7reserveEi) +STUB("BQah1z-QS-w", CERT_VerifyCertificatePolicies2) +STUB("BQcwz9m6sO8", _ZN7WebCore9HTMLNames14leftmarginAttrE) +STUB( + "BQnzqBoR0o4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEE21intrusive_ptr_sub_refEPS7_) +STUB("BQqV4AR38B8", sceDeci4hCreateHostProcessAndWait) +STUB("BQs6Wk0OSiw", tt_cmap12_class_rec) +STUB("BQsKtlFi8cw", _ZN3sce2np14JsonNumberImpl3SetEl) +STUB( + "BQsgoBaEBMA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("BQtUj7CVrC0", u_getPropertyEnum) +STUB("BQyTr76CMQc", _ZN9Inspector25BrowserFrontendDispatchernaEmPv) +STUB( + "BQygiMy4ziE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEC2EPKS8_) +STUB( + "BQzMkDdoiEc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "BR-+Ow3CfVg", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitationsC2Ev) +STUB("BR0cKcQ5YXM", _ZTVN7WebCore14ResourceHandleE) +STUB("BRAEBSsyFho", _ZN7WebCore19enclosingLayoutRectERKNS_9FloatRectE) +STUB("BRAPUfVBWfk", pshinter_module_class) +STUB("BRIIkNGIP-0", _ZN3sce7Toolkit2NP10IdDatabaseC2ERKNS1_9NpTitleIdEPKc) +STUB( + "BRL3uArmUoI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEC2EPS8_) +STUB( + "BRTrNcnIAHM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEED1Ev) +STUB( + "BRVSrwWFPFo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE6resizeEj) +STUB("BRXOoXQtb+k", sceMouseDebugGetDeviceId) +STUB("BRYaC0en9CQ", WKPageRunJavaScriptInMainFrame) +STUB( + "BRbmtp1OoTw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEEC1ERKSA_) +STUB( + "BRikC4X43tk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEEC2Ev) +STUB( + "BRrT1WABDt8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "BRvqbu-jQlk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEdeEv) +STUB( + "BRz1TB80chY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("BS1S-3Gn6Ic", scePsmUtilGetDebugAssetManagerSize) +STUB("BS2+vonqqwk", _ZN3sce2Np9CppWebApi7Matches2V124ResponseTeamMemberResult11setPlayerIdEPKc) +STUB( + "BS5hjmzOcwQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEdeEv) +STUB("BS6NER4vrvw", + Java_java_security_AccessController_doPrivileged__Ljava_security_PrivilegedExceptionAction_2) +STUB("BSE1GBeHulw", WKPageHideFindUI) +STUB( + "BSFKWe90sAY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEED2Ev) +STUB( + "BSImfzvBM3I", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE21intrusive_ptr_add_refEPS7_) +STUB("BSJMP4YY4Uo", + _ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8_GetvalsIcEEvT_RKSt8_Locinfo) +STUB("BSKR+tn0yyU", _ZN7WebCore18TextureMapperLayerC2Ev) +STUB("BSNGN3uj0hM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_17TitleCloudStorage2V19ConditionEEdeEv) +STUB("BSOczKqxgHI", + _ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest20matchStatisticsIsSetEv) +STUB( + "BSPfYvGi8HM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB("BSSHeveGkP0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEdeEv) +STUB("BSTpZbc2czE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEC1ERS7_) +STUB( + "BSTxAMz3odY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEE3getEv) +STUB("BSVJqITGCyI", _ZNSt7collateIcE7_GetcatEPPKNSt6locale5facetEPKS1_) +STUB( + "BSY7xmxAAN4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEE11get_deleterEv) +STUB("BSe-1Yjjpe8", _ZN7WebCore11DisplayList13SetMiterLimitC1Ef) +STUB( + "BSiF8Ctbf80", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEptEv) +STUB("BSir46mgacE", _ZN6icu_678TimeZone18detectHostTimeZoneEv) +STUB( + "BSjSNBdK+RE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "BSjtrGvfzCA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB("BSmWDIkV4w4", _ZN3sce4Json5Value3setEd) +STUB( + "BSo3kx5dd2E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEED2Ev) +STUB("BSoSgiMVHnY", sceNpTrophySetInfoGetTrophyNum) +STUB( + "BSqePly7mz4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEED1Ev) +STUB("BSqmh5B4KTg", SSL_initiateRehandshake) +STUB( + "BT+FFO0RXNI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEED1Ev) +STUB("BT1RirePGAs", _ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE5beginEv) +STUB("BT2WxW2eKsw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEEC1EPS6_) +STUB( + "BT31NxaQo-0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "BT4Ai0rsoBc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEC1Ev) +STUB("BTB0jlUMu4M", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching5RoomsEEC2Ev) +STUB("BTCkyrYLBNE", _ZN3NTF15DNSPrefetchImpl10initializeEv) +STUB( + "BTFHrRJO5DE", + _ZN7WebCore11DisplayList12PutImageDataC2ENS_22AlphaPremultiplicationEON3WTF3RefINS_9ImageDataENS3_13DumbPtrTraitsIS5_EEEERKNS_7IntRectERKNS_8IntPointES2_) +STUB("BTFjoSWI5-Y", u_charDirection) +STUB("BTGp5pnG2es", + _ZN8meta_gen13JpegRetriever10InitializeEP23PromoteInnerInformationN9db_schema9CodecTypeE) +STUB( + "BTJEZklGn7M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE8pushBackERKS8_) +STUB( + "BTKr4C6rJVs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE7popBackEv) +STUB("BTOv1017JlU", WKFrameIsFrameSet) +STUB("BTRVfOx7K1c", sceNpManagerIntGetNpEnv) +STUB("BTRrEgoPQWI", u_shapeArabic_67) +STUB("BTUvkWzrP68", sceNetAddrConfig6GetInfo) +STUB( + "BTWl0NaPmmY", + _ZN7WebCore15UserInputBridge22handleContextMenuEventERKNS_18PlatformMouseEventERNS_5FrameENS_11InputSourceE) +STUB("BTXZgU0oot8", _ZN7WebCorelsERN3WTF10TextStreamERKNS_12VelocityDataE) +STUB( + "BTa9PYL0204", + _ZN3sce2Np9CppWebApi14SessionManager2V137PostPlayerSessionsResponseBodyFactory7destroyEPNS3_30PostPlayerSessionsResponseBodyE) +STUB("BTawastvk7s", sceVideoOutDebugLatencyMeasureGetLatestLatency) +STUB("BTcR+rZoeKo", _ZN3JSC7Symbols30createPrivateSymbolPrivateNameE) +STUB("BTklyiCczcQ", _ZN12video_parser16cVideoContentMp4C1EPNS_18cMp4FFLHndlManagerE) +STUB("BTrQnC6fcAk", sceHmdReprojectionInitializeCapture) +STUB("BTsuaJ6FxKM", wmemcpy_s) +STUB( + "BTt-mszokxI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEED1Ev) +STUB( + "BTwVqQdFv7s", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEdeEv) +STUB( + "BU+c8p+jUjQ", + _ZThn16_N9Inspector18InspectorHeapAgent15getRemoteObjectERN3WTF6StringEiPKS2_RNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsIS9_EEEE) +STUB("BU0x8ye5-dI", sceContentSearchGetNumOfApplication) +STUB( + "BU2P2iqzI34", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEEC2ERSA_) +STUB( + "BU5wh4+ObWw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "BUH7rHzMP6g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEppEv) +STUB( + "BUP2bHKphL0", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser17setplatformFilterEPKc) +STUB("BUVDl9VOFvA", _ZN7WebCore24DocumentParserYieldTokenC1ERNS_8DocumentE) +STUB( + "BUaoh5EoUNQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEC2Ev) +STUB( + "BUcn6jcACYc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEE7get_refEv) +STUB("BUkvLLlPGXU", + _ZNK3sce2Np9CppWebApi7Matches2V120ResponseMatchResults22cooperativeResultIsSetEv) +STUB("BUmTw7ByILU", JVM_handle_bsd_signal) +STUB("BUmydJk3RJY", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V15Error7getCodeEv) +STUB( + "BUoPJnu1hUY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEED1Ev) +STUB( + "BUpd6fEwIuw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEEC1ERSA_) +STUB( + "BUtv2V1vE9M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEE7get_refEv) +STUB("BUu+PtgYBfM", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_17ActivityFeedStoryEE9constructEPS3_RKS3_) +STUB( + "BUv1GqIOFG0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEE5resetEPS6_) +STUB("BUwiEkA1Qgc", EVP_PKEY_decrypt) +STUB("BUxLDgrIMRA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersC2Ev) +STUB("BUxgEHwFaMU", _ZNSt10_Ref_countIN15AbstractStorage14FacebookFolderEED1Ev) +STUB("BV1JJKGIDV0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Wordfilter16SanitizedCommentEE3getEv) +STUB("BV1OcAHhXnA", sceNpEulaDialogOpen) +STUB( + "BV43Lbx9U7c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEEC1ERKSA_) +STUB("BV5sgWMa2to", + _ZN7WebCore9CookieJarC2EON3WTF3RefINS_22StorageSessionProviderENS1_13DumbPtrTraitsIS3_EEEE) +STUB("BV8Pb6uxFqE", _ZN3WTF8JSONImpl5Value7asValueERNS_6RefPtrIS1_NS_13DumbPtrTraitsIS1_EEEE) +STUB( + "BV8uWuK9JwE", + _ZN7WebCore19JSHTMLSelectElement18getOwnPropertySlotEPN3JSC8JSObjectEPNS1_9ExecStateENS1_12PropertyNameERNS1_12PropertySlotE) +STUB("BVDkopEoLMk", sceNKWebInitialize) +STUB("BVDsLZ8FHFY", _ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_5RangeE) +STUB("BVFg3CWU6Eo", sceAgcDcbSetCfRegisterRangeDirect) +STUB("BVHNrjZZzU4", _ZN7WebCore9HTMLNames21aria_autocompleteAttrE) +STUB("BVHXutaNUW8", delegate_virtual_invoke_imt_m_9) +STUB( + "BVJqooAZAdI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEixEm) +STUB("BVM-POr6asg", uprv_sortArray_67) +STUB("BVPFezY-v1c", _ZN7WebCore17HTMLCanvasElement8setWidthEj) +STUB("BVS3VA9mWqE", _ZN12video_parser13cVideoPathMp411sExtentListE) +STUB( + "BVSsPY0wgMk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEE11release_refEv) +STUB( + "BVTVnl5T93A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEEC1Ev) +STUB("BVVeTxPPx3w", _ZTVN12video_parser17cVideoProfilerMp4E) +STUB("BVVnZEz-y3k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEEC1Ev) +STUB( + "BVXWuV6anbQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "BVYuopqyztY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEE3getEv) +STUB("BVafm-M0GNw", sceKernelCreateBudget) +STUB("BVaird4y-R8", _ZN7WebCore14ScrollableAreaD0Ev) +STUB("BVasMrHWkUM", _ZN3sce2np10JsonObject8SetFieldEPKcPKNS0_9JsonValueEPPS4_) +STUB("BVdp6O0nF3k", ScePsmMonoGcWbarrierGenericStore) +STUB("BVfIVVqL1DA", sceApplicationLocalProcessKill) +STUB("BVmR1H8l+XI", sceAmprAprCommandBufferReadFileGatherScatter) +STUB("BVnIFRyY5JA", mono_aot_I18N_Rareunbox_trampolines) +STUB( + "BVo2eF+Hcws", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEE7get_refEv) +STUB("BVpUZ+iitmQ", + _ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody13setEntryLimitERKi) +STUB("BVx2kjgq3x8", _ZN7WebCore11JSImageData4infoEv) +STUB( + "BW2XcDqGFd8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "BW9I5y6SBU0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB("BWAtsvaXToA", _Unwind_SetIP) +STUB( + "BWCk4eDfp38", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEC1Ev) +STUB( + "BWCnpUL+AO0", + _ZN3sce7Toolkit2NP14GameCustomData9Interface10getMessageEPKNS1_28GameCustomDataMessageRequestEPNS1_9Utilities6FutureINS1_18GameCustomDataItemEEEb) +STUB( + "BWDILfRcisI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEC1ERS7_) +STUB( + "BWERyw8Hap8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("BWMWo+5rLW0", _ZN7WebCore23ApplicationCacheStorage5emptyEv) +STUB("BWPBpwMoO30", _ZN7WebCore15ScrollAlignment19alignToEdgeIfNeededE) +STUB( + "BWPEzsnuc7o", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10getString7Ev) +STUB("BWPTxURFKm4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEC2ERKS7_) +STUB("BWSwSWP+008", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEEC2EPS6_) +STUB("BWY-qKM5hxE", sceHmdGet2DEyeOffset) +STUB("BWaGYEsV8s8", GCC_except_table180) +STUB("BWgXtAe6mPM", _ZN9Inspector21DOMFrontendDispatcher19didAddEventListenerEi) +STUB( + "BWkC15Xkh7U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEEaSERS9_) +STUB( + "BWl9fHlVl7E", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("BWonN1CGmg8", _ZN3sce7Toolkit2NP2V24Core7Request11MemoryPoolsC2Ev) +STUB( + "BWqAou81qN8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEcvbEv) +STUB( + "BWraUHsMpHY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEC2ERKS8_) +STUB("BWuTVzjB040", mono_aot_Sce_Vsh_Passcodeunwind_info) +STUB("BWxQa08OaN4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEEplEm) +STUB("BX9yrnbQ6aY", _ZN7WebCore21BlobDataFileReference4sizeEv) +STUB("BXJ+pZ3BaeM", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEEcvbEv) +STUB("BXW9b3R1Nw4", sceNetCtlGetWifiType) +STUB("BXbQ9Rmo4Ck", _ZN3JSC22EdenGCActivityCallbackD2Ev) +STUB("BXbijPH89Sc", _ZN7WebCore19InspectorController4showEv) +STUB("BXgtCsp0EDU", _ZN7WebCore28InspectorFrontendClientLocal8dispatchERKN3WTF6StringE) +STUB("BXktjyzVytA", ldigs) +STUB("BXmn6hA5o0M", __mulsf3) +STUB( + "BXmuwIQiwZ0", + _ZN7WebCore10PingLoader19sendViolationReportERNS_5FrameERKN3WTF3URLEONS3_3RefINS_8FormDataENS3_13DumbPtrTraitsIS8_EEEENS_19ViolationReportTypeE) +STUB("BXpm0S4olVo", _ZNK3WTF8WallTime4dumpERNS_11PrintStreamE) +STUB( + "BXqKVhfs5R4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE7popBackEv) +STUB("BXuyUEGOPKA", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus11setObjectIdEPKc) +STUB("BXv1hrUMLb8", uprv_calloc_67) +STUB("BXywXAy0lGk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEC1ERS7_) +STUB( + "BY-x-Zb4ONw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEED2Ev) +STUB("BY0DYQGNv3g", u_getMainProperties_67) +STUB( + "BY0ySPm9pzI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEptEv) +STUB( + "BY1jyWLZrcA", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi25joinPlayerSessionAsPlayerEiRKNS4_36ParameterToJoinPlayerSessionAsPlayerERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_52PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB( + "BY8cHN5DFC4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEE5resetEPS9_) +STUB("BYFjoQE6RpE", sceMusicFwSetLoop) +STUB("BYGiANMl42A", ucsdet_getLanguage_67) +STUB("BYIZGKm6bO4", sceNpBandwidthTestGetStatus) +STUB( + "BYKbjzScONo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("BYKcIs2EBF0", jround_up) +STUB("BYM3L--ojzI", pthread_resume_np) +STUB("BYPEz1X2hjw", mono_aot_Sce_Vsh_Webbrowser_XutilWrapperunbox_trampolines) +STUB("BYTfz0ZpkvQ", mono_aot_System_Threading_Tasksjit_code_start) +STUB( + "BYVCDLl0aMI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "BYXjYjZQELU", + _ZN9Inspector14InjectedScript21getInternalPropertiesERN3WTF6StringERKS2_bRNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime26InternalPropertyDescriptorEEENS1_13DumbPtrTraitsISC_EEEE) +STUB("BYZVTUTk-DI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEED1Ev) +STUB("BYZhwit3CYc", mono_field_get_flags) +STUB("BYcSvEsINWU", sceAgcDcbSetMarkerSpan) +STUB("BYcXjG3Lw-o", _WGenld) +STUB( + "BYdOf8FrP2U", + _ZN3sce2Np9CppWebApi7Matches2V120ReportResultsRequest15setMatchResultsERKNS1_6Common12IntrusivePtrINS3_19RequestMatchResultsEEE) +STUB( + "BYeVtgnvZDk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "BYf23Ou7CcA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEixEm) +STUB("BYiteQcFpFI", __cxx_global_var_init .1) +STUB("BYkkgnu9RQA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEixEm) +STUB("BYmJ-iMswng", sceBgftServiceIntDownloadUnregisterTaskAll) +STUB("BYq6zmhI1Hs", udata_readInt16_67) +STUB("BYvEJzM7AnY", _ZN3sce2Np9CppWebApi6Common8IteratorIdEC1EPd) +STUB( + "BYvrp+qY2SI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEixEm) +STUB( + "BZ0iUuqTYfM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE5emptyEv) +STUB("BZ0olR8Da0g", sceBgftServiceIntInit) +STUB( + "BZ0p8VjHE4E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEmmEi) +STUB("BZ4Av55PWoA", JNU_ThrowNoSuchMethodException) +STUB("BZ9YIj5FwaI", + _ZN3sce2Np9CppWebApi7Matches2V122RequestMatchStatistics21unsetPlayerStatisticsEv) +STUB( + "BZBSl5p+3Pw", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB("BZCFjYmSXCg", EVP_CIPHER_CTX_new) +STUB("BZEcdytvUYM", _ZN7WebCore12EventHandler18accessKeyModifiersEv) +STUB("BZFvjfb9xDk", cairo_set_source_rgba) +STUB("BZGAf+F0blI", sceSystemServiceGetAppLaunchedUser) +STUB( + "BZHh57soCP8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEC2Ev) +STUB("BZPe5Oe6WLc", __multadd_D2A) +STUB("BZY5mpL0Syk", UCNV_TO_U_CALLBACK_SKIP) +STUB("BZga-sUr6X8", _ZN7WebCore8SVGNames11targetXAttrE) +STUB( + "BZh11XKQBP4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEC2Ev) +STUB("BZj-LE0sIHA", JSContextGroupSetExecutionTimeLimit) +STUB( + "BZmCEHQ-pVY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEppEv) +STUB("BZmaPvVcqUE", ucurr_countCurrencies_67) +STUB( + "BZnP+GW44Zs", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountId13isInitializedEv) +STUB( + "BZuHI3L7k9M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEC2EPNS2_10LibContextE) +STUB("BZx2PqN5SsE", JSValueIsUndefined) +STUB("Ba+zrutzkZc", mono_aot_Sce_Vsh_Orbis_BgftAccessorunwind_info) +STUB("Ba7cIC6zfKE", + _ZN3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayerC1EPNS1_6Common10LibContextE) +STUB("BaILhlzfYu4", _ZN7WebCore15startOfSentenceERKNS_15VisiblePositionE) +STUB("BaOKcng8g88", module_start) +STUB( + "BaZBggby8-s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEEC1ERSA_) +STUB("Bagshr7OQ6Q", sceNpTrophy2CreateContext) +STUB("BaihFa8LBw0", sceNpAppInfoIntCheckServiceAvailabilityAll) +STUB("BakQN1HuHXM", _ZN3sce7Toolkit2NP2V210Tournament17TournamentEventIdD2Ev) +STUB("BamOsNbUcn4", _ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE) +STUB("BatAeK1Du4g", uregex_getText_67) +STUB( + "Bawh-3xY52c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEEaSERKSA_) +STUB("Bb0y7BWPBp0", u_getCombiningClass_59) +STUB("BbCPZT3BuHU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEC2ERKS7_) +STUB("BbCZjJizU4A", sceFontWritingSetMaskInvisible) +STUB("BbD+vaVb5MQ", mono_aot_I18Njit_code_start) +STUB( + "BbGpp-xS1FE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEneERKS9_) +STUB("BbI8si4o-fA", sceAgcDriverSysSubmitFlipHandleProxy) +STUB("BbI9+Kl9WfY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEEaSERKS7_) +STUB( + "BbIuzwGAxhk", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V19RatingApi21ParameterToPostRating9terminateEv) +STUB("BbJ4naWZeRw", + _ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE5_InitERKSt8_Locinfo) +STUB("BbKt5wzlOsU", _ZNK3WTF6String7toFloatEPb) +STUB("BbLWFSkBPRk", _ZNK7WebCore11FrameLoader8loadTypeEv) +STUB("BbOT4vBwAjs", sceAudioPropagationResetAttributes) +STUB("BbV7n8cLfAc", ucnv_setFromUCallBack_67) +STUB( + "BbWzZZrtHRs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEC2Ev) +STUB("BbXxNgTW1x4", _ZNKSt10bad_typeid4whatEv) +STUB("BbbfOTSVhWk", _ZN3sce2Np9CppWebApi11Matchmaking2V15Cause16unsetReferenceIdEv) +STUB("Bbc2pDcwP0g", _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRankingC1Ev) +STUB( + "BbdP+2RV8SI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE3endEv) +STUB("BbiDee1C8AE", _ZN7WebCore28InspectorFrontendClientLocal31constrainedAttachedWindowHeightEjj) +STUB( + "BbkSnMoL0xM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE5beginEv) +STUB("BbkdawQaHyg", _ZN15AbstractStorage14YoutubeContent5CloseEv) +STUB("Bbrs+XVuf+o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEC2EPS8_) +STUB( + "Bbwhmpr2A34", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEEaSERSA_) +STUB( + "Bc+KMenfc50", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEC2EPNS2_10LibContextE) +STUB( + "Bc+OUtviQsc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEC2Ev) +STUB("Bc+QBlnP+iI", mono_btls_bio_indent) +STUB("Bc0S7C2y0Ng", sceKernelRestoreApp) +STUB( + "Bc2H3DgtA68", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEEC2EPS8_PNS2_10LibContextE) +STUB("Bc3rL5ELD-A", glGetAttachedShaders) +STUB("Bc4ozvHb4Kg", _ZGVNSt10moneypunctIcLb0EE2idE) +STUB( + "Bc58Bkvu1WU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEmmEv) +STUB( + "Bc8Q1CwuzHo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE8pushBackERKS8_) +STUB("BcCD3V30xsk", _ZNK3sce3Xml13AttributeList9getLengthEv) +STUB("BcCwWsJj8vo", _ZN3sce7Toolkit2NP2V29Messaging7Request27GetGameDataMessageThumbnailC2Ev) +STUB( + "BcInWqzYnd8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEC1Ev) +STUB( + "BcInr0uZ2VI", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12getInteger10Ev) +STUB("BcM8Z1gMYJE", _ZN3JSC10Identifier4fromEPNS_9ExecStateEi) +STUB("BcSL9PGBRzg", WKRenderObjectCopyElementID) +STUB("BcT3QQZ44HU", WKSerializedScriptValueGetTypeID) +STUB("BcYfhsAI-y0", WKContextSetStorageAccessAPIEnabled) +STUB( + "BcZJSvD7dpw", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody6toJsonERNS_4Json5ValueEb) +STUB("BcbHFSrcg3Y", _ZNSt6locale7_Locimp9_MakewlocERKSt8_LocinfoiPS0_PKS_) +STUB("BchENGJOUTk", _ZN23sceMetadataReaderWriter15ParserInterfaceC1ERKS0_) +STUB( + "BciGnJSuegU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEC1ERS7_) +STUB("BcmAcgljv78", _ZN23sceMetadataReaderWriter8MetadataC1ERKS0_PFPvmEPFvS3_E) +STUB("BcoPfWfpvVI", sceNgs2JobSchedulerResetOption) +STUB("BcrC80L8i0Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEED1Ev) +STUB("BcrUHwrvOuk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEE7add_refEv) +STUB( + "BcsH4EyLKJk", + _ZN3sce7Toolkit2NP2V210Tournament18getRegisteredTeamsERKNS3_7Request18GetRegisteredTeamsEPNS2_4Core8ResponseINS3_15RegisteredTeamsEEE) +STUB("Bd-EIoPzXJs", _ZNK9Inspector14ConsoleMessage9argumentsEv) +STUB("Bd7bMuLrAqE", _ZNK3sce2np8JsonBool7GetBoolEv) +STUB( + "BdK9-MAv6e4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "BdReXHq8uUM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("BdfPxmlM9bs", _ZTSSt7collateIwE) +STUB("BdmkDCjE3fE", _ZNK7WebCore11MediaPlayer13platformLayerEv) +STUB("Bdn6SlO1+NQ", png_write_info) +STUB("Bdn6e4QmW4Y", _ZN7WebCore9HTMLNames8tbodyTagE) +STUB( + "Bdoun7esBs8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEdeEv) +STUB("BdykpTwq2bs", sceNpInGameMessageAbortHandle) +STUB( + "Bdz3MQHYkLE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE10setContextEPNS2_10LibContextE) +STUB("BdzbUHOEoO4", sceNpManagerIntLoginGetWebAccessToken) +STUB("Be-QgsXW00k", Java_com_sony_gemstack_org_havi_ui_HBackgroundImageDecoder_getImageData) +STUB( + "Be1fGLBPbcs", + _ZN7WebCore21SerializedScriptValueC1EON3WTF6VectorIhLm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("BeA34F6FVUk", _ZN4Manx11MediaPlayer8hasAudioEv) +STUB("BeAKGfKUauE", GCC_except_table407) +STUB("BeCK+4Cj5gA", ucptrie_internalU8PrevIndex_67) +STUB("BeCdfnNLrA8", sceKernelSubmitAIO) +STUB( + "BeMQXzOHAYQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEE7add_refEv) +STUB("BeOKdUmvac8", mono_emit_native_call) +STUB("BeQa0My06nI", + _ZN3JSC8JSObject25getOwnPropertySlotByIndexEPS0_PNS_9ExecStateEjRNS_12PropertySlotE) +STUB("BeUBlVoWDTw", _ZN3sce2np14HttpConnectionC1EP14SceNpAllocator) +STUB( + "BeXLdBhmnl0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEeqERKS9_) +STUB("Bea-ElS5IZA", _ZN9Inspector22HeapFrontendDispatchernaEmPv) +STUB( + "Bebafrn-Ku4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEppEi) +STUB( + "Beo-ugOSjeI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEppEv) +STUB( + "Bep+2anZqBU", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "BepH5MkiEJM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEC1Ev) +STUB("BetsiFQjxSU", _ZN9Inspector18InjectedScriptBaseD0Ev) +STUB( + "BetvGamJgGo", + _ZNK3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead15getInvitationIdEv) +STUB("BeuQ-Tiwy6Y", mono_set_jit_tls_offset) +STUB( + "BexES8cw7dA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEptEv) +STUB("BexXP1Jkck0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEEeqERKS7_) +STUB("Bf-1cIE-brw", _ZN7WebCore16TrackPrivateBaseD2Ev) +STUB( + "Bf0YSfcZUTc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEED1Ev) +STUB("Bf0pzkQc6CU", SSL_setCookie) +STUB("BfAsxVvQVTQ", vwarnc) +STUB("BfCm8qZTAgM", fuse_new) +STUB("BfDWzeH4rxo", _ZN4Manx16Curl_cookie_initEP13SessionHandlePKcP10CookieInfob) +STUB( + "BfFkLJnwNwo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "BfGzm6w1Uo4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEeqERKS9_) +STUB("BfMdOqq0X9I", + _ZThn16_N9Inspector22InspectorDebuggerAgent15getScriptSourceERN3WTF6StringERKS2_PS2_) +STUB( + "BfMyyXLVTjg", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectatorC1ERS5_) +STUB("BfOWosLa0hk", ubidi_setClassCallback_67) +STUB("BfOYxPpqlW0", _ZN7WebCore9HTMLNames10scopedAttrE) +STUB("BfRQOqnOth0", _ZN3sce7Toolkit2NP2V23TUS14DataContentionC2Ev) +STUB("BfT4dv3a02o", _ZN7WebCore11FontCascade11setCodePathENS0_8CodePathE) +STUB("BfYmnUyy0ew", sceImeBackendClose) +STUB( + "BfaOut3W4GI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE3endEv) +STUB( + "BfnfDWgSIT8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEplEm) +STUB("BfntUeA0JTQ", ucase_hasBinaryProperty_67) +STUB("BfrQIv8VJU4", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11ProductInfoEE9constructEPS3_RKS3_) +STUB("BfwuAI1AZuo", WTFAnnotateBenignRaceSized) +STUB( + "Bg+ekiciYNs", + _ZN7WebCore18JSHTMLImageElementC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_16HTMLImageElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "Bg0W3dp-rPc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE8copyFromERKS9_) +STUB( + "Bg17ifDbgNA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("Bg5C-OvUlPc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V124RequestCooperativeResultEEeqERKS7_) +STUB("Bg7YvhX-epE", _ZN3sce7Toolkit2NP2V27Session14InvitationDataC2Ev) +STUB("BgAXdUz+i6I", uregex_start64_67) +STUB( + "BgDRJGy2eUs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEmmEi) +STUB("BgDtc93upnM", _ZN3sce2Np9CppWebApi6Common6String6appendEPKc) +STUB("BgFp4vX14gM", uprv_decNumberClassToString_67) +STUB("BgJDgr16f0k", _ZNK3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer12getJoinStateEv) +STUB("BgJaal3eOJg", _ZN7WebCore15HTTPHeaderFieldD2Ev) +STUB("BgM3t3LvcNk", sceGnmValidateDisableDiagnostics2) +STUB("BgOJY0UvOQ4", sceSysUtilSendAddressingSystemNotificationWithUserId) +STUB( + "BgT+jn7Q7Oo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE3endEv) +STUB("BgUMBGvhATU", FT_Outline_EmboldenXY) +STUB("BgZcGDh7o9g", _ZNSt9exceptionD1Ev) +STUB("BgaEJWAV0Fk", sceRnpsAppMgrGetAppInfoDebugString) +STUB("Bged4DzmfPM", rgctx_fetch_trampoline_rgctx_87_p) +STUB("BgfN1o2sOSI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend16FriendsOfFriendsEEC2Ev) +STUB("BggAgo-oWFI", mono_aot_Sce_Vsh_RequestShareScreenplt_end) +STUB("BghkhNf6ax4", _ZN7WebCore32serializationForRenderTreeAsTextERKNS_9DisplayP3IfEE) +STUB("BgjPgbXKYjE", sceSystemServiceActivateHevcInit) +STUB( + "BgkVJv6SfYk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "Bglpxc+nY8Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE8copyFromERKS9_) +STUB("BgnV9ciabNs", WKPluginInformationPluginURLKey) +STUB("BgnrThNspOQ", sceShareUtilityAdvanceGetServiceInfo) +STUB("BgqMT+9JnBk", _ZN7WebCore26ISOProtectionSchemeInfoBox11boxTypeNameEv) +STUB("BgtQxH2QsUY", mono_aot_Sce_Vsh_Friendunbox_trampolines_end) +STUB("Bgu7pE3ieUs", mono_aot_Sce_Vsh_SystemLoggerWrapperjit_code_start) +STUB( + "Bgv1VEb4Ras", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE5clearEv) +STUB( + "Bgwja-kN4Ro", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEC2EPS8_) +STUB("Bh-+3oc6euE", sceUpsrvStartUpdateSession) +STUB( + "Bh0wIDtgiOs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE4sizeEv) +STUB( + "Bh1JhQgxCiE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEE3getEv) +STUB("Bh25G2uY2-o", __asan_report_load8_noabort) +STUB("Bh5TmAk9Wqo", _ZL10read_valuecPPh) +STUB( + "Bh62QuOqJ9o", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "Bh6Gp0ySKZU", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13integer1IsSetEv) +STUB( + "Bh7kyHndjrU", + _ZN7WebCore18TextureMapperLayer11setChildrenERKN3WTF6VectorIPS0_Lm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB( + "BhCWMvGdH+I", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12unsetString7Ev) +STUB("BhCcIlyHMrk", u_istitle) +STUB( + "BhD3VeZzpPs", + _ZN9Inspector23CanvasBackendDispatcher12updateShaderElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "BhD9cBcAGJk", + _ZN3JSC8Bindings13RuntimeObjectC1ERNS_2VMEPNS_9StructureEON3WTF6RefPtrINS0_8InstanceENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "BhEG22x+fao", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEneERKS9_) +STUB("BhGJXRKJg5c", _ZN3JSC19HeapSnapshotBuildernaEm) +STUB("BhGX3nzI6QI", _ZN9Inspector18InjectedScriptBaseC2ERKS0_) +STUB( + "BhHYetdF2dQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEC2Ev) +STUB("BhM73vZ2868", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V113AttributeTypeEEppEv) +STUB("BhMk5-CKH2g", _ZN3JSC7Symbols17anchorPrivateNameE) +STUB("BhNAR5P2VEg", curl_multi_socket_all) +STUB( + "BhPoV5kL7ZA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEC2ERKS7_) +STUB("BhRxR+R0NFA", sceUserServiceSetSharePlayResolutionHost) +STUB( + "BhS3iiQHCVQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBody12getAccountIdEv) +STUB("BhT2pp1pncw", _ZN3sce7Toolkit2NP2V28Commerce12SubContainer5resetEv) +STUB( + "BhT42GbydjU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEEneERKS7_) +STUB( + "BhTQo5RgrSA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("BhU5ZMbWlAs", uprv_getNaN) +STUB("BhaIhoxXkGk", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container14getDisplayNameEv) +STUB("Bhm0RD1LynM", mono_aot_Sce_Vsh_VideoFramework_Platformjit_code_end) +STUB("Bhm8Injl0KA", FT_Outline_Copy) +STUB("BhrEyM1kGW8", mono_property_get_set_method) +STUB( + "BhsARdSbrEA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE8pushBackERKS8_) +STUB( + "Bhw0lrtHsR0", + _ZN3sce2Np9CppWebApi12Leaderboards2V112ErrorFactory6createEPNS1_6Common10LibContextEiPKcPNS5_12IntrusivePtrINS3_5ErrorEEE) +STUB("Bi+jQHr8S80", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEEC1EPNS2_10LibContextE) +STUB("Bi-QrrFjvs4", + _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets17getplatformFilterEv) +STUB("Bi4hN2Y66TM", _ZN9Inspector15RemoteInspector27updateHasActiveDebugSessionEv) +STUB("Bi5DYqNEpw4", _Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm14TcaPerfCounterE) +STUB( + "Bi81dRG6HAQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEEC1ERKSA_) +STUB( + "Bi8a6ZX6QLE", + _ZN7WebCore14FrameSelection12setSelectionERKNS_16VisibleSelectionEjNS_23AXTextStateChangeIntentENS0_19CursorAlignOnScrollENS_15TextGranularityE) +STUB("Bi9HDY+ODiQ", mono_check_corlib_version) +STUB("BiHHifIvX88", cpuset_setid) +STUB( + "BiHSfPqk5dU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "BiJVPVKL2io", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEEptEv) +STUB("BiM6ri5fwo8", _ZN3WTF13printInternalERNS_11PrintStreamEy) +STUB( + "BiO6g8zo698", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEC2Ev) +STUB("BiOSYw1pQXM", __tsan_atomic32_fetch_nand) +STUB("BiT7PuD3NpY", _ZN3sce16CommonDialogUtil6ServerC2EPKcmis) +STUB("BiXAyp5Mp1I", ubrk_setUText_59) +STUB("Bin7e2UR+a0", _ZNSt9exception18_Set_raise_handlerEPFvRKS_E) +STUB("BisNcGBfuD4", __rela_dyn_start) +STUB("Bivech5VpYM", YGNodeStyleSetFlexBasis) +STUB( + "Bizxq50TMok", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEptEv) +STUB("Bj+3WfwFN2A", + _ZNK7WebCore21ContextMenuController21checkOrEnableIfNeededERNS_15ContextMenuItemE) +STUB("Bj1A9t6x7kc", _ZN3sce2Np9CppWebApi7Matches2V123ResponseMatchStatisticsD2Ev) +STUB("Bj2oUqp84J0", sceVnaUtilGetVoiceInputStatus) +STUB("Bj7pDi5WGns", _ZN12video_parser5vpcom7_MallocEj) +STUB( + "BjEyQXjovuc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEC1EPNS2_10LibContextE) +STUB("BjG+5vptxRY", _ZN4Manx6Cookie6createEPKcS2_S2_) +STUB("BjJ6okF8bfg", _ZN3sce7Toolkit2NP2V212NetworkUtils16NetStateDetailedC2ERKS4_) +STUB("BjLA08Ot7N4", _ZNK7WebCore18AdClickAttribution3urlEv) +STUB( + "BjVIsRySEKI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE21intrusive_ptr_add_refEPS9_) +STUB("BjYGyklZu78", WKInspectorClose) +STUB("Bja9Lr9ZuyA", _ZN7WebCore8Settings42setHiddenPageCSSAnimationSuspensionEnabledEb) +STUB("BjfQwTeHQHA", rgctx_fetch_trampoline_mrgctx_35_p) +STUB( + "BjjhIuLpCAY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE6insertENS2_13ConstIteratorIS9_EERKS9_RSC_) +STUB( + "BjmEbtwvqQs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEcvbEv) +STUB("BjsreFAfJzo", sceMoveTrackerCameraUpdate) +STUB( + "BjtGD43wUK8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEaSERKS9_) +STUB("BjtxPGQ2-fQ", _ZN3sce3Xml3Dom8NodeListD2Ev) +STUB("BjuJvr7WLjk", monoeg_g_timer_stop) +STUB("BjwTHxBa4gc", WKRegistrableDomainCreate) +STUB("Bk1N2NiKOnk", g_config) +STUB( + "Bk1P+ArvTU0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE7popBackEv) +STUB("Bk3H5AlkwIM", WKKeyValueStorageManagerGetOriginKey) +STUB( + "Bk6-WRzBupk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE8copyFromERKS9_) +STUB( + "Bk7Ooj3PyXk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "Bk8bBZw+MIA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEEcvbEv) +STUB( + "BkCCFj2cqAw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("BkNALuQPzPU", getSockListFromCommInfoList) +STUB("BkOBCo0sdLM", sceUserServiceGetPbtcThursdayHoursEnd) +STUB("BkROgbo51Jw", _ZN3sce2Np9CppWebApi14SessionManager2V125ResponseGameSessionPlayerD2Ev) +STUB( + "BkWHelepXxE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE5clearEv) +STUB("BkbsZWOc6Uo", upvec_getArray_67) +STUB("Bkc5Df9+EDM", _ZN3JSC7Symbols21allSettledPrivateNameE) +STUB( + "BkiRDIFBIT0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEC2EPS8_) +STUB("BkimQeX118I", sceDeci4hDrfpOpendir_fuse_fullpath) +STUB("BkjBP+YC19w", sceFontCharacterRefersTextNext) +STUB("BkmXm7XvXJI", _ZNK7WebCore8Document10compatModeEv) +STUB("BkokKC24ETU", jinit_color_deconverter) +STUB("Bkpc599WnwA", sqlite3_value_bytes) +STUB("BkuxOAPlMMw", _ZN3sce2np13RingBufMemory4InitEm) +STUB( + "BkxNuo1FyGM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEppEv) +STUB( + "Bl0P+2yH4sI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEC1ERKS7_) +STUB("Bl5m20wA4HU", _ZN7WebCore12newTextCodecERKNS_12TextEncodingE) +STUB("Bl6rAJiQGWI", + _ZN7WebCore16FrameLoadRequestC2ERNS_5FrameERKNS_15ResourceRequestERKNS_14SubstituteDataE) +STUB( + "BlBXfoS4Mfw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB("BlCTfoiwt1w", _ZN3sce7Toolkit2NP2V28Presence16PlatformPresence19MAX_SIZE_TITLE_NAMEE) +STUB( + "BlEQPpfUOVg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("BlFY-yUwqKA", _ZNK7WebCore11FrameLoader28blockedByContentBlockerErrorERKNS_15ResourceRequestE) +STUB("BlHxtSQOjXo", _ZN7WebCore20serializationForHTMLERKNS_5SRGBAIfEE) +STUB("BlKPFkqR5+c", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V18Variable22getLastUpdatedDateTimeEv) +STUB("BlLpa0MpPFU", _ZN3sce2Np9CppWebApi7Matches2V119CreateMatchResponseD2Ev) +STUB( + "BlN+ZvgQDfE", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V129ConnectionQualityWiredMetrics18getConfidenceScoreEv) +STUB("BlSbZdzMJEs", _ZN3sce7Toolkit2NP2V211UserProfile7Request27DisplayGriefReportingDialogD2Ev) +STUB( + "BlVI-+knyMY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEED1Ev) +STUB( + "BlXyMw0GIwk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("BlZ8niq3nHU", sceHttp2WebSocketCloseAsync) +STUB( + "BlcMg2SDql4", + _ZN3sce2Np9CppWebApi12Leaderboards2V128GetRankingRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_21GetRankingRequestBodyEEE) +STUB( + "BldXVhfO28A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEmmEi) +STUB( + "BlgYkLmYDGY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEC1EPS8_) +STUB("BloPUt1HCH0", _ZSt9_LStrxfrmIwEmPT_S1_PKS0_S3_PKSt8_Collvec) +STUB("BlsAmng+Uyo", + _ZN3sce2Np9CppWebApi7Matches2V125ResponseCompetitiveResult18unsetPlayerResultsEv) +STUB( + "Blsr+ZnBm8g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEC2Ev) +STUB("BluzXLczfV4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEED2Ev) +STUB( + "BlxzzZzU8w8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEEC1EPS8_PNS2_10LibContextE) +STUB("Bly2yMnodoE", mparams .2) +STUB( + "BlyKxQBpjgg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE10setContextEPNS2_10LibContextE) +STUB( + "BlySYZIOGJc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEC1EPS8_) +STUB("Bm0Awrwk9bg", _ZN3sce7Toolkit2NP2V212EventsClient5Event5resetEv) +STUB("Bm3fZDBjrgA", __tsan_get_report_unique_tid) +STUB("Bm3k7JQMN5w", sigblock) +STUB( + "Bm43V7O-IoM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEeqERKS9_) +STUB("Bm4JYynHNqc", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE5emptyEv) +STUB("Bm5Asz+2428", mono_runtime_set_main_args) +STUB("Bm6hsUC8Yos", sceDbgAddGpuExceptionEvent) +STUB("Bm74HLvoNY4", _ZN3sce2np12HttpTemplateD1Ev) +STUB("Bm7i18g1Vaw", _ZN7WebCore19JSDOMMatrixReadOnlyC1ERKS0_) +STUB("Bm9eE0veFss", scePatchCheckerCheckPatch) +STUB( + "BmGbXv5n-L4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEEC2ERKSA_) +STUB("BmJSILyuz90", _ZN3sce3Xml13AttributeListC1Ev) +STUB("BmK3Rf-WpCY", mono_aot_Sce_Vsh_Np_ServiceCheckerunbox_trampolines) +STUB("BmMjYxmew1w", scePthreadCondTimedwait) +STUB("BmOUgbiiXXY", il2cpp_type_get_name) +STUB( + "BmOafav235Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE8capacityEv) +STUB( + "BmPUwZmrUgY", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEED2Ev) +STUB( + "BmZbnEl9SVs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEED1Ev) +STUB("BmangOLiMU4", delegate_virtual_invoke_imt_9) +STUB("Bmbr0b0FTig", _ZNK7WebCore16HTMLMediaElement16shouldBufferDataEv) +STUB( + "BmcqEzFK14g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE21intrusive_ptr_add_refEPS9_) +STUB("Bmi8PdvsM3M", FT_Stream_ReadLong) +STUB( + "BmkIs4H67Y8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEED1Ev) +STUB("Bmq-Nd9Pndk", _ZN7WebCore8SVGNames10ellipseTagE) +STUB("Bmr+tv0fgY0", _Strcollx.initial) +STUB("BmuZaiyqkkI", sceBdSchedCancelPrioritizedBackgroundCopyRequest) +STUB("BmwpjbblEg4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEEC2EPNS2_10LibContextE) +STUB( + "BmxAYkNjzW4", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getInteger6Ev) +STUB("Bn2ZF4ZjeuQ", sceFiosFHReadSync) +STUB( + "Bn5wWNbaT00", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEdeEv) +STUB("Bn7nComeL1M", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEEC1ERKS7_) +STUB("BnDRY2nuOMo", + _ZN9Inspector34createScriptCallStackFromExceptionEPN3JSC9ExecStateEPNS0_9ExceptionEm) +STUB( + "BnEa5lq+-Hw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEC2EPNS2_10LibContextE) +STUB("BnHnDvv6yAA", sceNpTrophy2SystemRemoveTitleData) +STUB("BnHu-WYwi2I", mono_aot_System_ServiceModel_Internalsplt_end) +STUB("BnMaW5wfnlQ", sceLncUtilUnregisterDaemon) +STUB( + "BnOfk8FWxR4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEEdeEv) +STUB( + "BnQQ4WmhPAk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE3endEv) +STUB( + "BnQpaYneH60", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData24setxPsnAtomicOperationIdEPKc) +STUB("BnRas6fU12w", __tsan_atomic8_fetch_xor) +STUB("BnSHkcDlM+8", sceRegMgrStrncpy) +STUB( + "BnUM856xASM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEC2EPS8_) +STUB("BnV7WrHdPLU", _Thrd_equal) +STUB( + "BnXK65nkNFo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEEC1ERSA_) +STUB("Bndt99oRGSI", mono_aot_Sce_Vsh_WebViewDialogmethod_addresses) +STUB("Bnhc4tdyQOE", _ZN7WebCore17FrameLoaderClient15didDisownOpenerEv) +STUB("BniLazfRYjI", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEEptEv) +STUB("BnjBFMDiOAg", _ZN7WebCore19JSDOMMatrixReadOnly15subspaceForImplERN3JSC2VME) +STUB( + "Bno6QK-ZTSo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEED1Ev) +STUB("BnqtRy48TyQ", mono_aot_mscorlibplt) +STUB("Bnr9ZV9PPH0", mono_aot_Sce_Vsh_VoiceMsg_VoiceMsgWrapperjit_code_start) +STUB("Bnx1X3WfXUA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEEC1EPS4_PNS2_10LibContextE) +STUB("BnxN3TjQaZc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEppEi) +STUB( + "Bo--3JGpVzk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB( + "Bo44ZzYkTks", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEEC2ERKSF_) +STUB("Bo5wtXSj4kc", fwscanf_s) +STUB("Bo7kzN9vOT0", _ZN3WTF6Thread33setCurrentThreadIsUserInteractiveEi) +STUB("BoCQ-IBM4I0", _ZN7WebCore10XMLNSNames4initEv) +STUB("BoD6du5+wxo", sceNpManagerIntGetAuthorizationCode) +STUB("BoP7Hnd2QXg", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEED1Ev) +STUB( + "BoV-jcZ6Kkc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("BoYqh7FZ03M", g_ScopedArgumentsPoison) +STUB( + "BoakAg6TFe4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE8pushBackERKS8_) +STUB("BoakLOKHTSo", WKContextGetCookieManager) +STUB("Boc1pjUVAuM", _ZN3sce2Np9CppWebApi11Matchmaking2V113ErrorResponseC2EPNS1_6Common10LibContextE) +STUB( + "Boeor1cL9BA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEC2ERKS7_) +STUB("Bof69eeNCCw", _ZN15AbstractStorage14TwitterContent5CloseEv) +STUB("BohEAQ7DlUE", sceAudioInGetSilentState) +STUB("BohYr-F7-is", sceKernelSetPrtAperture) +STUB("BonkDE5m1Ss", sceNpEulaDialogUpdateStatus) +STUB( + "BowqgBsUMto", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE3endEv) +STUB("Boyeh1udkF8", _ZN3sce7Toolkit2NP2V23TUS7Request12SetVariables26MAX_VARIABLE_VIRTUAL_SLOTSE) +STUB("BozJej5T6fs", sceFontGetPixelResolution) +STUB("Bp1MPfUmFJg", _ZN3sce2Np9CppWebApi7Matches2V123ResponsePlayerStatisticD1Ev) +STUB("Bp6H-C1yT0I", _ZN3sce7Toolkit2NP2V29Challenge9ChallengeC2Ev) +STUB( + "BpAQpIuyc3A", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("BpFoboUJoZU", sceKernelCreateEventFlag) +STUB("BpKoikcdXzw", _ZN3sce7Toolkit2NP2V212ActivityFeed11SharedVideoC1Ev) +STUB( + "BpOvU-QgYaE", + _ZN7WebCore7Element14scrollIntoViewEON3WTF8OptionalINS1_7VariantIJbNS_21ScrollIntoViewOptionsEEEEEE) +STUB("BpP68iXiK5I", glDisableVertexAttribArray) +STUB( + "BpPMr+FUobY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB("BpPdPSYHBy8", WKBundleSetUseDashboardCompatibilityMode) +STUB("BpQp7svQfCE", JVM_InternString) +STUB( + "BpR0gCj4wCA", + _ZN3sce7Toolkit2NP8Presence9Interface11getPresenceEPKNS1_15PresenceRequestEPNS1_9Utilities6FutureINS1_12PresenceInfoEEEb) +STUB("Bpay3NjseSU", _ZN3sce2np7CalloutC2EPNS0_14CalloutContextE) +STUB( + "BpcAJmvx6zk", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectator13isInitializedEv) +STUB("Bph+nEAV4WY", sceAudioOut2PortRegister) +STUB("Bpic7Y4tG2U", _ZN7WebCore9HTMLNames12plaintextTagE) +STUB("BpikjnSbkcU", _Wctype2) +STUB("BpipriRfwZo", _ZN12video_parser5vpcom13UTF8stoUTF16sEPKhjPtPj) +STUB("BplzxzYzc64", _ZN3JSC41DeferredStructureTransitionWatchpointFireD2Ev) +STUB("BpplnzdTht4", _ZTVN9Inspector32DatabaseBackendDispatcherHandlerE) +STUB("BpqEaUzi1YI", _ZN3sce3Xml3Dom6NodeIdeqEi) +STUB("BptwdT67de4", _ZNK3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error9getReasonEv) +STUB("Bq+LRV-N6Hk", sem_getvalue) +STUB("Bq0PXCi7+AM", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V15GroupEEeqERKS7_) +STUB("Bq2a8HmmUoY", __cfi_slowpath) +STUB("Bq8m04PN1zw", _ZTVSt12system_error) +STUB("BqBkwvs0b5U", _ZN7WebCore23AuthenticationChallengeD1Ev) +STUB( + "BqBzETsWm+0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEED2Ev) +STUB("BqFx1VLEMPk", _ZN3sce2np4Path5ClearEv) +STUB("BqGJsJcFYaM", FT_Outline_Done) +STUB( + "BqIRmGCRv9I", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities20ErrorResponseFactory7destroyEPNS4_13ErrorResponseE) +STUB( + "BqIZSp2YTog", + _ZN3sce2Np9CppWebApi14SessionManager2V122LocalizedStringFactory7destroyEPNS3_15LocalizedStringE) +STUB( + "BqKjIMCpHcg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEE7get_refEv) +STUB( + "BqWZ5wJU2PE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEC1EPS8_) +STUB("BqXMU4VLoIg", mono_metadata_parse_method_signature_full) +STUB( + "BqYgcXSaLqM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEE11get_deleterEv) +STUB("BqdKcO41N4w", _ZN3sce2Np9CppWebApi14SessionManager2V128PostGameSessionsResponseBodyD2Ev) +STUB("BqeoI1D1EMQ", _ZNK3sce2np10JsonObject11GetFieldNumEv) +STUB("BqfBIchFGgY", _ZN7WebCore15SQLiteStatement12isColumnNullEi) +STUB( + "Bqi7L+o4zk8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEneERKS9_) +STUB( + "BqjBp866LCM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "Bqp0wGheQ4I", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEEdeEv) +STUB("BqraEMdP6jc", WKPageLoadData) +STUB("Bqs78zlDTMQ", uprv_decNumberMinus_67) +STUB( + "BqtOno2Hdc8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEE11get_deleterEv) +STUB("BqtgDqSMfJE", _ZNK7WebCore15AffineTransform7mapRectERKNS_9FloatRectE) +STUB("BquE5qCYVGw", WKPreferencesSetMediaContentTypesRequiringHardwareSupport) +STUB( + "BqviS7ItgbI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEC1EPS8_) +STUB("BqxIGjoykMs", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request11GetWhoLikedC2Ev) +STUB( + "BqxczY2MLDk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEppEi) +STUB("Br0YM4+rt-Q", mono_aot_Sce_Vsh_Np_AppLaunchLinkmethod_addresses) +STUB( + "Br4EFaSlJkg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEEptEv) +STUB( + "Br7H2SYUFPY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEEC1ERS9_) +STUB("BrD0I3X9Nuw", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11ProductInfoEEC2Ev) +STUB( + "BrJ1Q-pJdTQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEE3getEv) +STUB("BrNgn7z6A40", sceSlimglCompositorSetIndirectCompositionCommand) +STUB("BrSQXazeSPY", _ZN3sce7Toolkit2NP2V28Commerce8CategoryC1ERKS4_) +STUB("BrSesfxNNvs", _ZNK7WebCore20ResourceResponseBase13isRedirectionEv) +STUB("BraS9NFJCzA", _ZN7WebCore22EmptyFrameLoaderClient19detachedFromParent2Ev) +STUB("BrasstnkWCU", + _ZN3sce2Np9CppWebApi7Matches2V121ResponseTeamStatisticC1EPNS1_6Common10LibContextE) +STUB( + "Brca1ZhHugg", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V132FrequentlyMutedPropertiesFactory7destroyEPNS3_25FrequentlyMutedPropertiesE) +STUB( + "Brgx2BeP-a8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("Briz+oRYlr0", _ZN3sce7Toolkit2NP2V211SharedMedia14CommonMetadataC1Ev) +STUB("Brnt8dE5A9I", _ZN3sce7Toolkit2NP2V24Auth8AuthCodeC2ERKS4_) +STUB( + "BrpqmAkL1FM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEC1EPNS2_10LibContextE) +STUB( + "BrqUJ+saWbo", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE21intrusive_ptr_sub_refEPS7_) +STUB("BrqxKujapGU", _ZNK7WebCore5Range19boundaryPointsValidEv) +STUB( + "BrxnxsLO43w", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEneERKS9_) +STUB("Bs1KuTHTCOM", mono_bitset_test) +STUB("Bs3QDmfuh4w", sceSpKernelNanosleep) +STUB("Bs3YyOymqj0", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEE7get_refEv) +STUB( + "Bs4H7l6tz18", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEEC1Ev) +STUB("Bs5NjXA9ja4", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE4sizeEv) +STUB("Bs9lPODBjso", _ZN3sce7Toolkit2NP2V27Session12Notification18InvitationReceivedaSERKS5_) +STUB("BsBgLgmD1co", YGSetMemoryFuncs) +STUB("BsCQsx8Drqg", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredUsersEE12deepCopyFromERS7_) +STUB("BsE-m8JxIOg", sceNpTrophy2GetRewardIcon) +STUB("BsN2E9i1zLw", Java_com_sony_bdjstack_core_AppCacheManager_isLoaded) +STUB( + "BsPfx49vlxY", + _ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead19setFromNonPsnPlayerERKNS1_6Common12IntrusivePtrINS3_16FromNonPsnMemberEEE) +STUB("BsWoAOxltGM", _ZN3sce7Toolkit2NP2V211SharedMedia14CommonMetadata24MAX_LEN_APPLICATION_NAMEE) +STUB("BsjbIVU27jQ", u_strrstr) +STUB( + "Bskx1npE9VU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE10setContextEPNS2_10LibContextE) +STUB("BsmV0JLSdpg", sceFaceShapeGetWorkingMemorySize) +STUB("Bsmr2r9f5Vg", sceAudiodecDecodeEx) +STUB( + "BsnnhuudXLE", + _ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime15PropertyPreviewEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE) +STUB("Bt4ps1bQCis", _ZThn16_N9Inspector22InspectorDebuggerAgentD0Ev) +STUB("BtF3FDGEhR4", _ZNK7WebCore15StyleProperties16getPropertyValueENS_13CSSPropertyIDE) +STUB("BtHxQ6Pv6fk", _ZN7WebCore16SQLiteFileSystem24databaseModificationTimeERKN3WTF6StringE) +STUB("BtJ3gH33xss", sceKernelYieldCpumode) +STUB("BtKKW3gxM00", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEEppEv) +STUB("BtL-4hMHuT8", + _ZN3sce7Toolkit2NP2V210Tournament7Request19SendUserMatchReport20MAX_LENGTH_FREE_TEXTE) +STUB("BtNM6TJROc4", _ZN9Inspector21InspectorRuntimeAgentdaEPv) +STUB( + "BtRxT+yr52U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEEC2ERSA_) +STUB("BtXPJQEg41Y", _ZN3sce2np4Cond4dtorEv) +STUB( + "BtZCjkl1VzU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEC2Ev) +STUB("BtfoEpEDoy0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEEC2ERKS7_) +STUB("Btgtlzfk9EQ", sceSysUtilSendSystemNotificationWithText) +STUB("Btkx21f1M8k", sceLoginDialogGetResult) +STUB("BtnYwpLN+RQ", mono_type_get_ptr_type) +STUB("BtqmpTRXHgk", sceRtcGetTime_t) +STUB("Btrg927DcY4", _UIx86_64__sos_alloc) +STUB( + "BtvN8chFZIs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE3endEv) +STUB("Bu+L5r1lKRg", sceNetConfigAddRoute6) +STUB("BuAIhZn+1Rs", _ZN3WTF14AtomStringImpl6lookUpEPKhj) +STUB("BuC3ARyjHBs", uprv_getUTCtime) +STUB( + "BuCa2n9FUcc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEEC1Ev) +STUB( + "BuKwZ4qCE8c", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseD2Ev) +STUB("BuP7bDPGEcQ", _LXp_addx) +STUB( + "Bufewfs6LUc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE4sizeEv) +STUB("BulZV+Yia3Q", _ZN7WebCore20serializationForHTMLERKNS_11LinearSRGBAIfEE) +STUB("Bum5UgOta+M", _ZN3sce7Toolkit2NP2V27NpUtils5IdMapC1ERKS4_) +STUB("Butl23CGFuw", _ZN3sce7Toolkit2NP15AppSTLAllocatorI13SceNpOnlineIdEneERKS4_) +STUB( + "Buv3r+Vr6vY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("BuxsERsopss", _ZNSt10moneypunctIcLb1EE7_GetcatEPPKNSt6locale5facetEPKS1_) +STUB("BuxsKSqNfGA", mono_aot_Sce_Vsh_PartyCommonjit_code_start) +STUB( + "Bv3PhLc1Rhk", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setInteger2ERKi) +STUB("Bv6ogral1m8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEED2Ev) +STUB( + "BvF5O9LtFRM", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfiles14setlanguageSetEPKc) +STUB("BvHVgTa7aSI", _ZN8meta_gen14ImageRetriever10SetMetaValEid) +STUB("BvKNUDcqwjU", _ZN7WebCore9HTMLNames14onpagehideAttrE) +STUB("BvRS0cGTd6I", _ZNKSt7codecvtIDsc9_MbstatetE13do_max_lengthEv) +STUB("BvRmL6IYCgM", _ZN3JSC12StringObject14finishCreationERNS_2VMEPNS_8JSStringE) +STUB( + "BvXidcjVfz0", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("BvZvTr56+qQ", mono_btls_ssl_get_error) +STUB( + "Bvf3LpQ5K7c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEmmEv) +STUB( + "Bvkny+Obfl0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEppEv) +STUB("Bvn74vj6oLo", scePthreadAttrSetstack) +STUB("BvtFZdpVpkg", uprv_stricmp) +STUB( + "Bvuj-YI6rzc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("BvvO8Up88Zc", sceGnmDriverInternalVirtualQuery) +STUB("Bvykb5TIZ6U", _ZN7WebCore10FileSystem18decodeFromFilenameERKN3WTF6StringE) +STUB("Bw+7-OwsnYM", _ZN7WebCore10ISOFullBoxC2Ev) +STUB( + "Bw+QCDJZ-2Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEEaSERSA_) +STUB("Bw-QDxYd1jc", WKBundleSetSpatialNavigationEnabled) +STUB("Bw31liTFT3A", sceSigninDialogUpdateStatus) +STUB( + "Bw3Iu5kBNY8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE6resizeEj) +STUB( + "Bw41EETjOp4", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitations35hasxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB("Bw8+YxTv8Y4", mono_aot_Mono_Dynamic_Interpreterjit_got) +STUB( + "Bw8TULZXlT0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEcvbEv) +STUB("BwAIkiXQHfk", WKPreferencesGetDOMTimersThrottlingEnabled) +STUB( + "BwDYpTAATZI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("BwDiCf2Irzg", _ZN7WebCore13MIMETypeCachenwEmPv) +STUB( + "BwJ73Sw0eLU", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("BwJxlOw1Ow4", _ZN12Mp4Retriever8GetDbFIdENS_15mp4DbFieldIdTagE) +STUB( + "BwKrGdrhy+I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEC1Ev) +STUB("BwVlJDvU-t0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEEeqERKS7_) +STUB( + "BwXigp2CQbk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEC1EPNS2_10LibContextE) +STUB( + "Bwb7jJ4H5As", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEC1EPKS8_) +STUB("BwgI-tzxR44", unorm2_getNFDInstance_67) +STUB("BwhDEizgtpo", sceAppInstUtilAppInstallRequestCompilationDiscApp) +STUB("Bwi+EP8VQ+g", sceNpLwCondSignalTo) +STUB( + "BwlIkk8yUsQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEEC1ERKSA_) +STUB( + "BwljoHr4u-A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEptEv) +STUB("BwoYh9eiWvw", _ZNK7WebCore16URLDecomposition8protocolEv) +STUB("BwzMDOLhDYI", WKAuthenticationDecisionListenerRejectProtectionSpaceAndContinue) +STUB("Bx6M5pr4eEU", _ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetail14unsetFirstNameEv) +STUB("Bx7ugj-u3o8", jpeg_idct_2x2) +STUB("Bx8JdxEYePE", _ZN3sce7Toolkit2NP2V29Challenge9ChallengeD1Ev) +STUB( + "BxELvT7VM6I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE8copyFromERKS9_) +STUB( + "BxFLzFSUTBU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("BxK7Mmvj8oM", ucnv_MBCSToUnicodeWithOffsets_67) +STUB("BxMPm9tv3M4", _ZN3JSC7Symbols24putByIdDirectPrivateNameE) +STUB("BxP6yR2GQQk", _ZN7WebCore4Page40setLowPowerModeEnabledOverrideForTestingESt8optionalIbE) +STUB("BxPcbYqH1lk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEE11get_deleterEv) +STUB("BxPeH9TTcs4", __cxa_current_exception_type) +STUB( + "BxQ3e31us6Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEC2ERS7_) +STUB("BxQv1DSUaeY", sceDbgSetBreakOnWarningState) +STUB( + "BxTULgMqp3I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("BxXjoC55K18", JVM_Close) +STUB("BxYkFlE891I", _ZN9Inspector21InspectorRuntimeAgentnwEmPv) +STUB("BxZOkd4o1U8", RAND_add) +STUB("Bxai++S+IdM", _ZN7WebCore9HTMLNames15onpointerupAttrE) +STUB("BxcmiMc3UaA", sceFontFtSetAliasFont) +STUB( + "BxcwQ40h7GM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEED1Ev) +STUB("BxeiWYklF7I", + _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody19getTicketAttributesEv) +STUB("Bxm+T4kzc1A", _ZN7WebCore11DisplayList22ApplyDeviceScaleFactorD1Ev) +STUB("Bxni4gpqvRE", _ZNK7WebCore6Editor25stringForCandidateRequestEv) +STUB("BxsoEfeAL7U", _ZN3sce7Toolkit2NP2V27Ranking7Request11GetGameDataC2Ev) +STUB( + "BxtPDaHV49k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE7popBackEv) +STUB("By+M3Ko+Nb8", _ZN3sce7Toolkit2NP2V24Core12ResponseBaseC2Ev) +STUB("By6b1vjSVok", cairo_ft_font_face_create_for_pattern) +STUB("By8+oITPeGU", _ZNK3JSC8Debugger13isBlacklistedEm) +STUB("ByEKhyXuoPA", Java_java_util_zip_Adler32_update) +STUB( + "ByIJAPKHlh0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEC1EPS6_PNS2_10LibContextE) +STUB("ByRgiMDtkTo", __wrap_access) +STUB("ByRkAwhxkN8", mono_file_unmap) +STUB("ByRmvtB-ldg", _ZN3NTF21URLRequestHttpMessage6createEv) +STUB("ByTg3YjgKVY", g_queue_free) +STUB("ByVK-cVydjw", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V224TestForProfanityResponse9setStatusEPKc) +STUB("ByfjUZsWiyg", strlcat) +STUB( + "Byg+AJipGjQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEED1Ev) +STUB("BykPm1ajcM0", _ZNK3sce4Json14InitParameter212getAllocatorEv) +STUB( + "BykdB6aUhgE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEED1Ev) +STUB("BymNLHb9xek", mono_aot_Sce_Vsh_Np_Trophyjit_code_start) +STUB( + "BynWamXz3tk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE5beginEv) +STUB("ByogDrS-Xw8", __sys_set_uevt) +STUB("BypQuF113-k", sceNpUniversalDataSystemEventPropertyArraySetInt32) +STUB( + "BysnIhUJiL0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEC2ERKS7_) +STUB( + "BywH5RHb73o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEE11get_deleterEv) +STUB("BywqS3Q8szU", _ZNK7WebCore22EmptyFrameLoaderClient14cancelledErrorERKNS_15ResourceRequestE) +STUB( + "Bz+-KFhYkWQ", + _ZN7WebCore8Gradient6createEON3WTF7VariantIJNS0_10LinearDataENS0_10RadialDataENS0_9ConicDataEEEE) +STUB("Bz3GmM6mUKU", _ZN3sce7Toolkit2NP2V28Commerce8Category5resetEv) +STUB( + "Bz4+K6mdnOE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEplEm) +STUB("BzC9gfB648w", _ZN7WebCore8SVGNames20specularConstantAttrE) +STUB( + "BzGZbm42-v8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEdeEv) +STUB( + "BzJ8db5dWVM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEmmEv) +STUB("BzL9VRF4-D0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12EventsClient6EventsEED2Ev) +STUB("BzPo4ufGQYc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEC1ERS7_) +STUB("BzRoMQieW4M", ShGetInfoLog) +STUB("BzS2+Gd2SJM", _ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBodyD2Ev) +STUB("BzS42mcRG-Q", _ZN3PAL13SleepDisablerC1EPKcNS0_4TypeE) +STUB( + "BzT7tE61h1Q", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "BzYzzbxSfkY", + _ZN3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession25unsetPlayerJoinableStatusEv) +STUB("BzZob2Qk4B0", + _ZN3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator10setNatTypeERKi) +STUB( + "BzdrPNiDX9M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEaSERKS9_) +STUB("BzeFBYkcR3w", _ZN7WebCore11MediaPlayer25nativeImageForCurrentTimeEv) +STUB("Bzj6EDufzVw", _ZN7WebCore11DisplayList10SetLineCapC2ENS_7LineCapE) +STUB("Bzr9hA09kT4", _ZNSt6vectorIN15AbstractStorage19FacebookFolderEntryESaIS1_EE11_ReallocateEm) +STUB( + "BzsA1hma9Vc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEE11release_refEv) +STUB("BztTl7QeYqE", _sceNpAllocatorFree) +STUB("Bzvv4mzBISM", _ZN7WebCore18PlatformTimeRangesD1Ev) +STUB("C++Y3xup+O0", sceMatMemoryPoolMove) +STUB("C+-sGGnws9A", _ZN7WebCorelsERN3WTF10TextStreamENS_9BlendModeE) +STUB("C+5oNT1ESfY", _ZN7WebCore21WheelEventTestMonitor21clearAllTestDeferralsEv) +STUB( + "C+IEJdFDpso", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemPropertiesC1ERS5_) +STUB("C+IEj+BsAFM", sceAmprMeasureCommandSizeWriteAddressOnCompletion) +STUB("C+IZRnhqqG8", _ZN3WTF10StringView16GraphemeClusters8IteratorD2Ev) +STUB("C+Khtbbx2g8", sceKernelAprResolveFilepathsWithPrefixToIdsAndFileSizesForEach) +STUB("C+NsIwxwwa8", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18GameCustomDataItemEE7destroyEPS3_) +STUB("C+P5nUw7FYE", sceSystemServiceUsbStorageIsExist) +STUB("C+PD4D-WvVQ", JNU_CopyObjectArray) +STUB( + "C+Q9j1xWO5g", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE3endEv) +STUB( + "C+Z5mvvQaVo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEC2EPS7_PNS2_10LibContextE) +STUB("C+e8Hg4gjU0", _ZN7WebCore13SleepDisablerC2EPKcN3PAL13SleepDisabler4TypeE) +STUB("C+i9gJY4A1I", sceKernelIccGetHwInfo) +STUB("C+morSMfP84", _ZNK7WebCore20ResourceResponseBase12isAttachmentEv) +STUB("C+nqkA-1ro0", _ZN3JSC29ensureGlobalFuzzerPredictionsEv) +STUB( + "C+or+8OobPM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE5emptyEv) +STUB("C+vcBYRcSt8", sceAppInstUtilAppCancelMoveApps) +STUB("C-+JPjaEhdA", sceNetConfigWlanAdhocPspEmuSetWakeOnWlan) +STUB("C-3N+mEQli4", _ZTSNSt8ios_base7failureE) +STUB("C-4AXvmxXK4", png_get_filter_type) +STUB("C-4Qw5Srlyw", sceFontGenerateCharGlyph) +STUB( + "C-9IN+XxqZs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEeqERKS9_) +STUB("C-9IuUyNx-Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEEC2Ev) +STUB("C-EZ3PkhibQ", _ZNK3sce16CommonDialogUtil6Client14getClientStateEv) +STUB("C-FUxOeDE1E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEixEm) +STUB("C-IAF74xKYg", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product11getAgeLimitEv) +STUB( + "C-NAsQD1yv0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC1ERKSA_) +STUB("C-PgX-qZLhk", _ZN9Inspector32ScriptProfilerFrontendDispatcherdlEPv) +STUB("C-PpdS5zris", FT_OpenType_Free) +STUB("C-QVraVqT-Q", jpeg_idct_2x4) +STUB("C-VP4AsZ13E", monoeg_g_direct_equal) +STUB( + "C-VfHk7dESE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("C-blDyZOIa8", WKPluginInformationBundleShortVersionKey) +STUB( + "C-dA9xs9TkY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEdeEv) +STUB("C-dodVAz604", _ZNK7WebCore12ChromeClient33shouldUseTiledBackingForFrameViewERKNS_9FrameViewE) +STUB( + "C-eZx5gMBKc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEED2Ev) +STUB("C-hTkXLSvCk", _ZN3JSC6JSLock12DropAllLocksD1Ev) +STUB("C-iN2W5bbuo", _ZN3JSC5JSSet6s_infoE) +STUB("C-lrlIiUeZs", _ZN7WebCore15SQLiteStatementD1Ev) +STUB("C-mWVPzAz0Y", ustr_hashUCharsN_67) +STUB( + "C-pGBA8apIE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE10setContextEPNS2_10LibContextE) +STUB("C-rxSvL2nc8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEC2ERKS7_) +STUB( + "C-tPFq4S0Yk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEE11get_deleterEv) +STUB( + "C00qXQCAOI4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE7popBackEv) +STUB( + "C04D-yTYrAw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE7reserveEi) +STUB("C05CUtDViqU", CA_MGMT_freeSearchDetails) +STUB( + "C07AuGOwohI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE21intrusive_ptr_sub_refEPS9_) +STUB("C09KlVTdtMA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEEppEi) +STUB("C0A4DMm7c5A", YGNodeClone) +STUB("C0E8TaxTeD8", c10) +STUB("C0EYtSTHGyc", WKGrammarDetailGetTypeID) +STUB("C0IYaaVSC1w", _ZTISt11range_error) +STUB("C0MWlYbPFGA", _ZN7WebCore28InspectorFrontendClientLocal14frontendLoadedEv) +STUB("C0QNDdQW+8M", sceRazorCpuUserSignalWaitEnd) +STUB("C0UhOPZuKbA", _ZN3sce7Toolkit2NP2V210Tournament24OfficialBroadCastDetailsC2Ev) +STUB( + "C0UhhOIv4Jo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEC1EPNS2_10LibContextE) +STUB("C0V80QECptc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEED2Ev) +STUB("C0Y6+FbHIPg", _ZN7WebCore9HTMLNames10pseudoAttrE) +STUB( + "C0Zs0k0vPqM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEC2Ev) +STUB("C0Zzwfz-3bw", WKNotificationCopyLang) +STUB("C0a9gIndzfA", _ZN3sce7Toolkit2NP2V211SharedMedia14CommonMetadataD2Ev) +STUB("C0ecyCza-5U", + _ZN9Inspector21InspectorConsoleAgent22setLoggingChannelLevelERN3WTF6StringERKS2_S5_) +STUB("C0f7TJcbfac", sceKernelAvailableDirectMemorySize) +STUB("C0fTnF5BjEI", + _ZN3sce2Np9CppWebApi7Matches2V125ResponseCompetitiveResult8fromJsonERKNS_4Json5ValueE) +STUB("C0gNCiRIi4U", sceNpSetGamePresenceOnlineA) +STUB( + "C0iWDaJdvU0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE21intrusive_ptr_sub_refEPS9_) +STUB("C0j9K2vhdYg", _ZN3sce7Toolkit2NP7Ranking9Interface13registerCacheEiiib) +STUB( + "C0jq4lsP0FQ", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeaderC1Ev) +STUB("C0llM9BF2ho", ucol_openAvailableLocales_67) +STUB("C0nVvG6+x-s", FTA_Remove_Module_bdf) +STUB("C0rPwER-yxg", sceHmd2ReprojectionInitialize) +STUB("C0tDw7J-3Tw", _ZN3JSC7Symbols29generatorFieldThisPrivateNameE) +STUB( + "C0vvBzhXPeU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEC2EPS8_) +STUB( + "C0wIlfPqDlo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEC2EPS8_) +STUB("C0yCmcRkfH8", _ZN7WebCore27PlatformMediaSessionManager16processDidResumeEv) +STUB( + "C1+4k3Ub3+E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEC2EPS6_PNS2_10LibContextE) +STUB("C1+gBUd3C34", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEEneERKS7_) +STUB("C1-M65KwtjU", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead16customData2IsSetEv) +STUB("C12fbSrJXes", ulist_deleteList) +STUB( + "C15tCYj-hoU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE3endEv) +STUB( + "C16v8ZT+xzo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEC2EPNS2_10LibContextE) +STUB("C17yf4lG2Kc", _ZN3JSC10Identifier4fromEPNS_9ExecStateEj) +STUB( + "C18qJ5JAauM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEEC2ERKSB_) +STUB("C1Ajs0GJ9FQ", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V324ValidationConstraintInfoD1Ev) +STUB("C1D37z9C0fQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEED1Ev) +STUB( + "C1FXhuYlQwU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE5beginEv) +STUB("C1LBXRglVQA", _ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBodyD2Ev) +STUB("C1TJsMv9wb8", _ZN3sce2np13RingBufMemoryD1Ev) +STUB("C1YevJSd750", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEmmEi) +STUB( + "C1cnWBE8+iI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEC2Ev) +STUB("C1kSXHV0pK0", bemp2sys_pesparser_init) +STUB("C1pE9UztZMo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V116TaskAvailabilityEEneERKS7_) +STUB("C1skAF1VQbY", _ZN3NTF5Mutex6unlockEv) +STUB( + "C1tOaFb0B38", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEE5resetEPS6_) +STUB("C1ujZwhvzhI", _ZN3JSC4Heap24reportExtraMemoryVisitedEm) +STUB("C1vVG6JQH6A", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEEdeEv) +STUB("C257CI4wq7g", mono_method_get_unmanaged_thunk) +STUB( + "C27pH6uM8tk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE8pushBackERKS8_) +STUB("C282U0P6Nwg", _ZN3sce2np14CalloutContext7DestroyEv) +STUB("C28sII4CaLQ", _ZN3sce2Np9CppWebApi13InGameCatalog2V57ProductC2EPNS1_6Common10LibContextE) +STUB( + "C2BE5PrNg98", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE10setContextEPNS2_10LibContextE) +STUB( + "C2BGfaYpLc4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEEcvbEv) +STUB( + "C2EwPD751C0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEptEv) +STUB("C2FgjGcN39c", _ZN3WTF18charactersToDoubleEPKhmPb) +STUB("C2JaQRcg9Kc", _ZNK3WTF10StringImpl11sizeInBytesEv) +STUB("C2RSFYT+9Bg", delegate_virtual_invoke_24) +STUB( + "C2VBnE5uQ0Y", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("C2W0uvw-C48", mono_aot_Sce_Vsh_VideoFramework_Platformunbox_trampoline_addresses) +STUB( + "C2YSpfp1gsI", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_13FriendsOfUserENS1_15AppSTLAllocatorIS5_EEEED2Ev) +STUB("C2a-9w1AhSA", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEEppEi) +STUB("C2agGcmq83w", sceAvControlSimulateProcessOutputModeArbitration) +STUB("C2b9lHwUN6I", ucnv_compareNames_67) +STUB("C2fPc5Q38TE", + _ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody18unsetMinScoreLimitEv) +STUB("C2kJ-byS5rM", pwrite) +STUB("C2ltEJILIGE", sceKernelGetPsmIntdevModeForRcmgr) +STUB("C2q0bN6cQ4A", _ZN3sce7Toolkit2NP2V210Tournament12EventDetailsD2Ev) +STUB( + "C2wxbYBxq2g", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_23NpSessionInvitationInfoENS1_15AppSTLAllocatorIS5_EEEEC1Ev) +STUB("C2yjkNdzbW4", sceAgcDriverIDHSSubmit) +STUB("C31eIhTlRM4", uhash_hashScriptSet_67) +STUB("C36iRE0F5sE", scePthreadSemWait) +STUB("C3CXSYj8B6M", ucurr_openISOCurrencies_67) +STUB("C3ETNYXsht4", sceUsbStorageUnregisterCallbackForMapAvailable) +STUB( + "C3Jcc0LyWjI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEneERKS9_) +STUB("C3KUJDxz-is", _ZN3sce2Np9CppWebApi11UserProfile2V125GetBasicPresencesResponseD2Ev) +STUB( + "C3Kg63gCbNk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEppEv) +STUB("C3LC9A6SrVE", _ZNKSt7_MpunctIcE14do_frac_digitsEv) +STUB( + "C3MP-Pl8Wo8", + _ZN7WebCore6Editor24replaceSelectionWithTextERKN3WTF6StringENS0_17SelectReplacementENS0_12SmartReplaceENS_10EditActionE) +STUB( + "C3PAWdNm8vQ", + _ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeaders7hasETagEv) +STUB( + "C3Rgm0nngOU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEC2ERS7_) +STUB("C3UpIfLGRbA", _ZN7WebCore13HitTestResultD2Ev) +STUB("C3Xnff4rgk4", _ZNK7WebCore21JSTextTrackCueGeneric7wrappedEv) +STUB("C3bLQX0d+So", _ZN3JSC7JSArray26shiftCountWithArrayStorageERNS_2VMEjjPNS_12ArrayStorageE) +STUB( + "C3bgNMh1888", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEC2Ev) +STUB( + "C3eG4Bp+gig", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEC2EPNS2_10LibContextE) +STUB( + "C3g7zOvEL5Q", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("C3iWD8fqTjc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116InitialJoinStateEEeqERKS7_) +STUB( + "C3j2Xy8OmaU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE3endEv) +STUB("C3kg2BO5Pyg", u_getDefaultConverter_67) +STUB("C3r2zT5ebMg", sceRemoteplayImeOpen) +STUB( + "C3rZP-FveLE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("C3sAx2aJy3E", _ZTISt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE) +STUB("C3uEVqmgg48", + _ZN9Inspector21InspectorConsoleAgent10stopTimingEPN3JSC14JSGlobalObjectERKN3WTF6StringE) +STUB("C3vniWm8dNw", glGetUniformuiv) +STUB( + "C3xK1o7yDH4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEptEv) +STUB("C4+VYUYFI6E", mono_get_exception_index_out_of_range) +STUB("C403YJqJNus", sceUserServiceGetVoiceAgentStatusBitFactory) +STUB("C40DVLTpil8", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V115FrequentlyMuted6toJsonERNS_4Json5ValueEb) +STUB( + "C435BVbje9Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEC2EPS6_PNS2_10LibContextE) +STUB("C49LgOV-jPo", _ZN7WebCore18TextureMapperLayer9paintSelfERKNS_25TextureMapperPaintOptionsE) +STUB( + "C4EU0-gmmW0", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEEiRNS2_10LibContextEPT_m) +STUB( + "C4G-++b7f40", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE21intrusive_ptr_sub_refEPS7_) +STUB("C4GGY4M5WPs", WKPreferencesGetMenuItemElementEnabled) +STUB("C4GpT07pyh4", _ZN3sce7Toolkit2NP2V210Tournament12GenericEventC1ERKS4_) +STUB( + "C4H75BKtKV0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("C4IbjPBn4mY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEEplEm) +STUB("C4L3jt-+8E0", _ZN7WebCore21NetworkStorageSession9setCookieERKNS_6CookieE) +STUB( + "C4Qrn2xtCdc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEneERKS9_) +STUB("C4RUHNEGsb0", unorm2_normalize_59) +STUB("C4UgDHHPvdw", sceNetResolverCreate) +STUB( + "C4YuHqwLaAQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEE7get_refEv) +STUB("C4a3dGgs+Cc", FT_Outline_Check) +STUB( + "C4ektnwBAC8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEEC2ERS9_) +STUB( + "C4ex7v59hgw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEC2EPNS2_10LibContextE) +STUB("C4g29wO9igs", _ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession13getMaxPlayersEv) +STUB("C4i9a6cVRWM", scePlayReadyLicenseDeleteInMemory) +STUB("C4j57iQD4I8", _ZTISt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE) +STUB("C4ksb8TTkME", ucurr_forLocale) +STUB("C4l9fB17t8w", sceAgcDcbEventWriteGetSize) +STUB( + "C4qbdwX3KzI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEC2EPS8_) +STUB("C4qe0TvWEKQ", _ZNK7WebCore22HTMLFormControlElement10formActionEv) +STUB( + "C4xCvsGrGIA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEixEm) +STUB("C4zZZmuvyKM", u_strncmpCodePointOrder_67) +STUB( + "C5+YSMeJdjs", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("C5+iMF5IAY4", mono_aot_Sce_Vsh_GriefReportStoragejit_code_start) +STUB( + "C51ERkmPoVs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEEC2ERKSA_) +STUB("C54iMS8+tl8", JSCheckScriptSyntax) +STUB( + "C56gZ1Fwj4g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "C5D2gsQveTg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("C5FqYQvdn9E", g_filename_from_utf8) +STUB("C5H2-PLShWU", _ZN7WebCore9HTMLNames17aria_controlsAttrE) +STUB("C5J+ANTy0qI", sceFiosDirectoryCreateWithMode) +STUB( + "C5Qpu8p3tvA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEptEv) +STUB( + "C5T6x3pasU4", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "C5UjwsbPDNs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEaSERKS9_) +STUB("C5XVZ3h5PhI", _ZN3sce7Toolkit2NP2V210Wordfilter16SanitizedCommentaSERKS4_) +STUB("C5ifI-ABvq0", _ZN9Inspector25NetworkFrontendDispatcherdlEPv) +STUB("C5jau3kWcTE", _ZN7WebCore9HTMLNames7srcAttrE) +STUB( + "C5oxOGHm0Q4", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("C5vg1mRnJ90", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEptEv) +STUB("C5zCc0ufEz0", _ZN9Inspector22InspectorDebuggerAgent6resumeERN3WTF6StringE) +STUB("C6-7Mo5WbwU", _ZNSt10filesystem18_Xfilesystem_errorEPKcRKNS_4pathESt10error_code) +STUB("C6-MvMXmvLc", sceCesRefersUcsProfileAsciiWithKatakana) +STUB( + "C63aEdFKedU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("C6A8S-Hio2M", sceFsISSchedMapStat) +STUB( + "C6BfwOnkiDQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEixEm) +STUB("C6C97DqLp4M", hb_icu_get_unicode_funcs) +STUB( + "C6EJOskfF5Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEE7get_refEv) +STUB( + "C6Gj67au0DA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE4sizeEv) +STUB( + "C6Li1qon1x8", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V318PsnWebErrorWrapperC2EPNS1_6Common10LibContextE) +STUB( + "C6NUqOD5gkg", + _ZN3JSC8JSObject38putDirectIndexSlowOrBeyondVectorLengthEPNS_9ExecStateEjNS_7JSValueEjNS_18PutDirectIndexModeE) +STUB("C6Pc5Xu7bxU", _ZN3sce2Np9CppWebApi12Leaderboards2V15Entry7setRankERKi) +STUB( + "C6Ub1Qwfuug", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE8pushBackERKS8_) +STUB("C6X4oaIU6-k", __tsan_atomic128_fetch_add) +STUB("C6ZJ7oFVXx8", _ZStL11_Sys_errtab) +STUB("C6ZNCDTj00Y", sceNpSignalingGetConnectionStatistics) +STUB("C6gWCWJKM+U", lroundf) +STUB("C6ibH-4Ydg0", _ZN7WebCore26Matrix3DTransformOperationD0Ev) +STUB( + "C6lWET8ErOA", + _ZN7WebCore18PlatformPasteboard5writeERKN3WTF6VectorINS_20PasteboardCustomDataELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("C6oLAUS1iPc", + _ZN7WebCore20ResourceResponseBase24sanitizeHTTPHeaderFieldsENS0_16SanitizationTypeE) +STUB( + "C6qMCyBFAeI", + _ZN3sce2Np9CppWebApi14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBody13setSpectatorsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_28ResponseGameSessionSpectatorEEEEE) +STUB("C6rdzA-le1s", _ZN3sce2Np9CppWebApi6Common6VectorIjE5clearEv) +STUB( + "C6rjcIv+yJY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEEptEv) +STUB( + "C6skkzFAAGI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEED1Ev) +STUB("C6xstRBFOio", sceNpManagerIntGetAccountLanguage) +STUB( + "C6yV0NX8fqs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEdeEv) +STUB("C6zMedRGAuc", _ZN3sce2Np9CppWebApi10Activities2V114UserActivities5Error10setMessageEPKc) +STUB( + "C70OfZmfRyo", + _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody19getJoinableUserTypeEv) +STUB("C73SG7WKAgo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEED1Ev) +STUB( + "C73r27RP0CE", + _ZN8meta_gen11MsvPromoter23setKeyValue_TBLI_HeightENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti) +STUB("C77VnsdaKKI", sceNpManagerIntSetPlusMemberTypeNB) +STUB("C7Fqw7M-LiE", _ZN3JSC4Yarr17RegularExpressionnaEm) +STUB( + "C7Joqb7LNII", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectator10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_54PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEE) +STUB("C7KVLWk-IVk", + _ZN3JSC6JSCell17customHasInstanceEPNS_8JSObjectEPNS_14JSGlobalObjectENS_7JSValueE) +STUB("C7N2GuwqTA0", FT_Sqrt32) +STUB("C7N4tdIifZ0", rgctx_fetch_trampoline_mrgctx_32_p) +STUB( + "C7UDvuDYXaQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE8pushBackERKS8_) +STUB( + "C7W8IfKQqYg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEEC2ERKSA_) +STUB( + "C7dvUSk3aRk", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi24sendPlayerSessionMessageEiRKNS4_35ParameterToSendPlayerSessionMessageERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB("C7ho+Z7QpzA", getwhex) +STUB( + "C7mUU3JIa7c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEE7add_refEv) +STUB( + "C7rbXm3gdRE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEE3getEv) +STUB("C7rqIyDWvn0", mono_debug_print_stack_frame) +STUB( + "C7ybxQ4uxkI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEED2Ev) +STUB("C8+FFE6E1lY", YGFlexDirectionToString) +STUB("C8-TefDupr4", _ZN7WebCore27contextMenuItemTagUnderlineEv) +STUB( + "C80RoieLk6g", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi42ParameterToPutGameSessionsSearchAttributes12setsessionIdEPKc) +STUB("C81K5tny9CE", sceAvControlIsModeGen1Vr) +STUB( + "C83LCukRz-w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEEC2Ev) +STUB("C86F6UUBdFw", _ZN4IPMI6Client6ConfigC2Ev) +STUB( + "C86WukaiznQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEeqERKS9_) +STUB("C88FsQ2KsjU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEEC1ERS7_) +STUB( + "C88cTESKaBE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("C8AHWrQyDAk", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V116TaskAvailabilityEEC1Ev) +STUB("C8DSGbgf3RM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEC1ERKS7_) +STUB( + "C8GjRVltZ-0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEEcvbEv) +STUB("C8SMKrvRkl8", _ZNK3sce2np3ipc17ServiceIpmiClient6IsInitEv) +STUB("C8TY-UnQoXg", sceNpTusGetFriendsVariableA) +STUB( + "C8WUuFSpCyc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEE7get_refEv) +STUB("C8Ww8ZdVW1o", _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead14getCustomData2Ev) +STUB("C8aXkfk9P0A", _ZN7WebCore11MediaPlayer10invalidateEv) +STUB( + "C8c+JCm0U5I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE8copyFromERKS9_) +STUB( + "C8cWJm4a3vk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEEC1EPS8_PNS2_10LibContextE) +STUB("C8nzxw4nnP0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEC1Ev) +STUB("C8r9P9yL7-A", mono_profiler_startup_log) +STUB( + "C8vsFte3EHU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEEC2ERKSA_) +STUB("C8wi8QOUQQk", sceKernelSuspendDirectMemoryRelease) +STUB("C94NVHorTnk", _ZN3JSC7Symbols34regExpProtoStickyGetterPrivateNameE) +STUB("C968FP2T0gA", _ZNK3sce2Np9CppWebApi14SessionManager2V16Friend11getOnlineIdEv) +STUB("C96SMHvoMfs", g_hash_table_lookup) +STUB("C97VnSMYMSc", ucnvsel_selectForUTF8_67) +STUB("C98CdyBxNpM", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt6vectorI16SceNpTusVariableNS2_IS4_EEEEC2Ev) +STUB( + "C9A379Zd6K4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEE7get_refEv) +STUB( + "C9AgDnFeBFA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEED1Ev) +STUB("C9E1TPtMAjg", sceVideoCoreInterfaceLoadModule) +STUB("C9ElcezDvIE", sceApplicationSuspend) +STUB("C9JwMHZ8Xkk", sceAudioOutConfigureOutputModeEx) +STUB( + "C9RE06KveEA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEE7add_refEv) +STUB("C9YhqadaXzQ", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody10unsetLimitEv) +STUB( + "C9h7sDg6hPM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("C9lhqCz3iZ0", _ZNK7WebCore12SettingsBase20pictographFontFamilyE11UScriptCode) +STUB( + "C9nQTzluMFk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEppEi) +STUB( + "C9nmXx5ezhw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEC1EPKS8_) +STUB("C9pWfTkbH0Q", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V111OfferStatusEEppEi) +STUB( + "C9r3kg0-k8g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("C9tMr-NPOJM", mono_aot_Sce_Vsh_MorpheusUpdWrapperjit_code_end) +STUB("C9womydOhKw", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIfEC1Ev) +STUB("C9znBBnAIok", mono_opcode_name) +STUB("CA5jcDb2vYI", sceKernelGetSocPowerConsumption) +STUB("CA9cI9X7n8E", _ZN3sce2Np9CppWebApi6Common8IteratorIjEmmEv) +STUB("CABpOvHRDVI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching5RoomsEEC1Ev) +STUB( + "CAE-9GwPlYY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEEC1ERKSA_) +STUB( + "CAHgY-Gly7s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("CAIoDnCFX70", sceFaceTrackerUnregisterUser) +STUB("CALfQOMRFRc", mono_aot_Sce_Vsh_SysUtilWrapperjit_got) +STUB("CAM9NbC8Jus", _ZN3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResults8setScoreERKd) +STUB("CAOt1d2AT44", _ZNK3JSC18GCActivityCallback9isEnabledEv) +STUB( + "CAQzeQBPATw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEC1EPS8_) +STUB( + "CARXbyBFL6Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEEC1ERKSA_) +STUB("CATkBsr20tY", CERT_getCertificateIssuerSerialNumber) +STUB("CAZvVbvclq8", _ZN12video_parser7cVpUtil8DiffTimeERNS_5vpcom8datetime8DateTimeES4_) +STUB("CAbbX6BuQZ0", sceRudpCreateContext) +STUB("CAd6mqZAfQ4", _ZN3sce7Toolkit2NP2V28Presence16PlatformPresenceD1Ev) +STUB("CAeLxSO6Fzw", _ZNK3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate12getAccountIdEv) +STUB("CAgB8oEGwsY", CERT_VerifyValidityTime) +STUB("CAgLrLTNpJY", _Xtime_to_Useconds) +STUB( + "CAi3r9SUJTs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEEaSERSA_) +STUB( + "CAlz6lTRRIU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEC1Ev) +STUB("CApAj-v1kVs", sceVshAvcapOpenVideoEx) +STUB( + "CAuG9X992Vs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEEC2ERSA_) +STUB( + "CAx4Bj6o1Wk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEppEi) +STUB("CAx7X0QmDNg", png_get_tIME) +STUB("CAxK0cyQWnY", _ZN3sce7Toolkit2NP2V29Messaging7Request17SendInGameMessageC2Ev) +STUB("CAypDWjJScU", glResumeTransformFeedback) +STUB( + "CAyv3-YmjyY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE5clearEv) +STUB( + "CB91DPxocWY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEmmEv) +STUB( + "CB9NG4PQp3U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEaSERKS7_) +STUB( + "CBKtF+B2xrs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEC2ERS7_) +STUB("CBMBWsSrlq8", _ZN7WebCore18PlatformTimeRangesC1ERKN3WTF9MediaTimeES4_) +STUB("CBMayXu7N5E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEaSERS7_) +STUB("CBNZ5OjzUdo", _ZN9Inspector33InspectorBackendDispatcherHandlerD1Ev) +STUB("CBNtXOoef-E", sched_get_priority_max) +STUB("CBPDnkErMEM", cloc_o) +STUB("CBQGMZDDQD4", _ZN7WebCore9FrameView30graphicsLayerForPlatformWidgetEPv) +STUB( + "CBQkgZlYGKA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE10setContextEPNS2_10LibContextE) +STUB( + "CBTuRMUsNEU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEC1EPS8_) +STUB("CBUYpGaOZEY", _ZN3sce7Toolkit2NP2V27Ranking7Request11SetGameDataD1Ev) +STUB("CBV1LMkpn1U", _ZN7WebCore16SQLiteFileSystem20databaseCreationTimeERKN3WTF6StringE) +STUB("CBX4+UX-tG4", sceTsGetRepresentationInfo) +STUB( + "CBaTyAu61lw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEplEm) +STUB("CBgGpKwrHSA", LoginMgrTerminate) +STUB("CBiZX1axLmc", mono_object_new_alloc_specific) +STUB("CBiu4mCE1DA", sceVideoOutSetFlipRate) +STUB( + "CBpZOt-r2hU", + _ZN7WebCore21JSCSSStyleDeclarationC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_19CSSStyleDeclarationENS6_13DumbPtrTraitsIS8_EEEE) +STUB("CBrj1sUFTZ0", _ZNK7WebCore9InlineBox14caretMaxOffsetEv) +STUB("CBu3fNa2rus", _ZN3JSC7Symbols24createPromisePrivateNameE) +STUB("CBvvoNSsWVU", sceDevUsbAddHostRawKevent) +STUB("CC-BLMBu9-I", malloc_stats) +STUB( + "CC0nzkzdVsk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("CC1FIVcHVpc", _ZN7WebCore11DisplayList11DrawEllipseD1Ev) +STUB("CC3SYjHufw8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEE11get_deleterEv) +STUB( + "CC8n23ujero", + _ZN3sce2Np9CppWebApi14SessionManager2V137RequestPlayerSessionInvitationFactory7destroyEPNS3_30RequestPlayerSessionInvitationE) +STUB("CCExU9zTwME", mono_aot_Sce_PlayStation_HighLevel_UI2jit_code_end) +STUB("CCIWdE3I4lA", sceNpIpcBeginRequest) +STUB("CCLJRgXg9V0", umtx_lock_67) +STUB("CCThZGN3PEk", _Z20WTFCrashWithInfoImpliPKcS0_immmmmm) +STUB("CCYNuxc3zD8", _ZThn16_N9Inspector21InspectorRuntimeAgent18enableTypeProfilerERN3WTF6StringE) +STUB("CCbC+lqqvF0", sceNpCommerceDialogGetStatus) +STUB( + "CCe202m43uo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "CCiR41PTUjY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE6resizeEj) +STUB("CCjsMjCwCWE", + _ZN9Inspector28InspectorScriptProfilerAgent8addEventEN3WTF7SecondsES2_N3JSC15ProfilingReasonE) +STUB("CClObiVHzDY", _ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED2Ev) +STUB( + "CCmRFfTgZrI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEdeEv) +STUB("CCmU-uYjeIk", _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile14unsetAccountIdEv) +STUB("CConkVwc7Dc", sceNpManagerIntGetAccountDateOfBirthA) +STUB("CCq1OzivhKY", _ZN3sce7Toolkit2NP2V210Tournament16RegisteredRosterC2Ev) +STUB( + "CCv9CYanMNI", + _ZN15AbstractStorage14YoutubeStorage15CreateRecursiveERKSbIcSt11char_traitsIcENS_8StlAllocIcEEENS_8ItemTypeEPSt10shared_ptrINS_4ItemEE) +STUB("CD+3VFi3BF4", u_get_stdout_67) +STUB("CD8HbK+LEOQ", _ZN7WebCore14SchemeRegistry25registerURLSchemeAsSecureERKN3WTF6StringE) +STUB("CDG6wR08Ntw", curl_strequal) +STUB("CDQiZI5nup8", _ZNK7WebCore15ContextMenuItem6actionEv) +STUB("CDVFTd-vBew", mono_get_object_class) +STUB("CDZqEyHuQBw", _ZN7WebCore15HTMLFormElement13checkValidityEv) +STUB("CDa0HmrFMd0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking8TempRankEE12deepCopyFromERS7_) +STUB("CDa5R6cq2+M", WKContextSetJavaScriptGarbageCollectorTimerEnabled) +STUB( + "CDb2Svm4vx0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEE5resetEPS9_) +STUB("CDbOSJyS+8Q", ulist_reset_keyword_values_iterator_67) +STUB("CDjDlxkoWhU", _ZN7WebCore11FileMonitorD2Ev) +STUB("CDlUjtscypE", WKPageClearWheelEventTestTrigger) +STUB("CDlgfsy4Rhw", sceValidationGpuValidate) +STUB("CDm+TUClE7E", _ZNSt8numpunctIcEC1ERKSt8_Locinfomb) +STUB( + "CDnxxnKa2dc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEppEi) +STUB( + "CDvTXBBirN8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "CDxIRrABgH4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEE3getEv) +STUB("CDxz+odUzjk", _ZNK7WebCore11HistoryItem12isTargetItemEv) +STUB("CDzSgHA6hWg", _ZN3sce2np10JsonParser5ParseEPKcm) +STUB("CE+K7LnQock", _ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody10usersIsSetEv) +STUB("CE-JCVY9rzw", sceDeci4hDrfpWrite_fuse) +STUB( + "CE0O-D1AG+w", + _ZN7WebCore18JSHTMLMediaElementC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_16HTMLMediaElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB("CEAEH+lrYHw", _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeIPcPvEE7destroyEPS6_) +STUB("CEArszX4xxQ", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V125NatConnectivityProperties11getFromNat1Ev) +STUB( + "CEDQEB+Hx2c", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V128SetMultiVariablesRequestBodyC2EPNS1_6Common10LibContextE) +STUB("CEDv5P43Ouk", _ZN3WTF8dataLogFEPKcz) +STUB( + "CEFdgr6O-oI", + _ZN3sce2Np9CppWebApi14SessionManager2V127PlayerSessionForReadFactory7destroyEPNS3_20PlayerSessionForReadE) +STUB("CENl2LuJEDA", _ZN3sce7Toolkit2NP2V24Core12ResponseBase8deepCopyERKS4_) +STUB("CEQjJzzBB+M", _ZN9Inspector27CSSBackendDispatcherHandlerC2Ev) +STUB("CEW5tsddJD4", _ZN7WebCore8SVGNames7trefTagE) +STUB( + "CEWIEloY-0Q", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB( + "CEY3YeCeUtg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEC2EPS8_) +STUB("CEZw2bOO-WA", rgctx_fetch_trampoline_rgctx_5) +STUB("CEbYeyYuiPQ", sceKernelMapperGetUsageStatsData) +STUB("CEcz6AdSUpw", sceMatRegisterGroup) +STUB("CEg0t7KpU+I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEC2ERS7_) +STUB( + "CEhMr4rnE1o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEE7get_refEv) +STUB("CEo-skc8HZg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEC1Ev) +STUB( + "CEwVzbcg0Is", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEC2Ev) +STUB("CEx0bY57b0E", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku15getDisplayPriceEv) +STUB("CExKanCWG-U", _ZN3sce7Toolkit2NP2V23TUS7Request20GetFriendsDataStatusC2Ev) +STUB( + "CF0BBQcIyF0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEC2Ev) +STUB("CF3JQshnmQI", _ZN3JSC6JSCell17customHasInstanceEPNS_8JSObjectEPNS_9ExecStateENS_7JSValueE) +STUB( + "CF5d64ot3Zc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE13getLibContextEv) +STUB("CF7+t+JIOEo", uhash_setValueComparator) +STUB( + "CFBRyn0MbVc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEEC1ERKSA_) +STUB("CFEjBEf0Mes", WKPreferencesGetMediaCapabilitiesEnabled) +STUB("CFGT373U98c", _ZNK7WebCore8Document18monotonicTimestampEv) +STUB("CFHLizHW2ZE", ztrans_equals_67) +STUB( + "CFJHhFhFiog", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEEC1Ev) +STUB( + "CFOQPc6vg0Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE8pushBackERKS8_) +STUB("CFPx3eyaT34", sceNpTusGetDataForCrossSaveAsync) +STUB("CFTBSm1lhTU", _ZN3JSC4Yarr12errorToThrowEPNS_9ExecStateENS0_9ErrorCodeE) +STUB("CFTG6a8TjOU", sceWebBrowserDialogGetStatus) +STUB("CFW6tGbn+5U", _ZN3JSC7Symbols28promiseRejectSlowPrivateNameE) +STUB("CFe1LwIEeO8", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEEC2Ev) +STUB("CFjj7pKSrS4", _ZN3WTF11OSAllocator8decommitEPvm) +STUB( + "CFrMt9i2BmE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEeqERKS9_) +STUB("CFtAcs7A434", WKBundleDOMWindowExtensionGetScriptWorld) +STUB( + "CFvf00pG9g8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE6finishEv) +STUB("CFvmCVk6TfI", _ZN7WebCore23ISOSchemeInformationBoxC1Ev) +STUB( + "CFx+c0aMQ2w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEC1Ev) +STUB("CFx+hotTVlI", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_20ChallengeRecvDetailsEEneERKS4_) +STUB("CFzLYUJTbUg", _ZN7WebCore15GraphicsContext8fillRectERKNS_9FloatRectERKNS_5ColorE) +STUB( + "CG+zwMsy65Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEEC1ERKS9_) +STUB( + "CG2UUtwfu20", + _ZN7WebCore21SerializedScriptValue11deserializeERN3JSC14JSGlobalObjectEPS2_RKN3WTF6VectorINS5_6RefPtrINS_11MessagePortENS5_13DumbPtrTraitsIS8_EEEELm0ENS5_15CrashOnOverflowELm16ENS5_10FastMallocEEENS_22SerializationErrorModeE) +STUB( + "CG7wDPl7xRE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE21intrusive_ptr_add_refEPS9_) +STUB("CGDS6leRS1k", sceBackupRestoreUtilGetBackupDataInfo) +STUB( + "CGE+qiPjFcw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("CGE4mmSd3eI", WKBatteryStatusGetTypeID) +STUB( + "CGGQG4qIRr8", + _ZThn16_N9Inspector21InspectorRuntimeAgent14getBasicBlocksERN3WTF6StringERKS2_RNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime10BasicBlockEEENS1_13DumbPtrTraitsISC_EEEE) +STUB("CGKtxL26XqI", _ZN3sce2np3ipc10IpmiClient7ConnectEPKvm) +STUB("CGMsaoLDa+g", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEEaSERS6_) +STUB("CGQ2P7lOMoQ", _ZNK7WebCore12ChromeClient19availableScreenSizeEv) +STUB("CGalV4GHxVY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEED2Ev) +STUB("CGj8fjDSgdI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEEC2EPS6_) +STUB("CGjnAIJU2b4", _ZN15AbstractStorage12LocalContent12readExternalESt10shared_ptrINS_7ContentEE) +STUB( + "CGuRGI0MOZI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEED2Ev) +STUB( + "CGxP3DGxYqs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEE3getEv) +STUB("CH-77hJ3grc", _ZN3WTF13monthFullNameE) +STUB( + "CH-F0m44r-c", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEdeEv) +STUB("CHEEHf-OFTk", utext_nativeLength_67) +STUB("CHEGG9KvmR4", _ZN7WebCore21WindowsLatin1EncodingEv) +STUB( + "CHF+Tm21MyA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEE7add_refEv) +STUB("CHF4vI44PXs", _ZN7WebCore11PageOverlay6createERNS0_6ClientENS0_11OverlayTypeE) +STUB("CHG4TrPt7qw", _ZN3JSC14createURIErrorEPNS_14JSGlobalObjectERKN3WTF6StringE) +STUB("CHKC0sAoFcw", _ZN3sce7Toolkit2NP2V212ActivityFeed15PlayedWithStoryC2Ev) +STUB("CHPZFRIZO7o", WKBundleHitTestResultGetImageRect) +STUB("CHSR+Bn4MmA", _ZN3WTF14AtomStringImpl3addEPKNS_10StringImpl16StaticStringImplE) +STUB( + "CHbU4muWptQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEE11release_refEv) +STUB("CHbWmxR5ZZk", _ZN7WebCore9HTMLNames7endAttrE) +STUB( + "CHiL-1m+S8w", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "CHk97A0hG78", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEeqERKS9_) +STUB("CHrhwd8QSBs", _ZNSt6thread20hardware_concurrencyEv) +STUB( + "CHxJkXZWF2c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEmmEv) +STUB( + "CHymt8UFihM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEC1Ev) +STUB("CI2p6Viee9w", sceNpIpc2ClientTerm) +STUB("CI6Qy73ae10", pthread_cond_signalto_np) +STUB("CI7ciM21NXs", _ZN3sce2np5MutexD2Ev) +STUB("CICOiTAYqgo", _ZN3sce7Toolkit2NP2V210Tournament7Request19SendUserMatchReportD2Ev) +STUB( + "CICbcvSvdQ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE8pushBackERKS8_) +STUB( + "CIKBb9V-fSY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEmmEv) +STUB("CILQQaLK8kg", _ZN4Manx11getFontPathEPKwj) +STUB("CIQ32RB-IEU", Java_java_awt_GnmScaledImage_pSetScalingHints) +STUB("CIS-2OZ0bZI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V124RequestCooperativeResultEEppEv) +STUB("CIXA8WUeAls", sceShellCoreUtilFireCrashReport) +STUB("CIXpZ+bbpzs", + _ZNK3sce2Np9CppWebApi14SessionManager2V131JoinedPlayerSessionWithPlatform13platformIsSetEv) +STUB("CIlQhaz-UNw", sceCesUtf16beToSbc) +STUB( + "CIoRgXwAOcE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEC2EPKS8_) +STUB( + "CIq8UAlNGdw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("CIrV8Sq2Uic", FTA_Add_Module_raster1) +STUB("CIrdJ2hsHzE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEED2Ev) +STUB("CIszVLmspgo", _ZN3JSC14ProtoCallFrameC1Ev) +STUB( + "CIyxo2AYcp4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEeqERKS9_) +STUB( + "CJ+05fNguaQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEED2Ev) +STUB("CJ45DLRQOD8", sceLncUtilRaiseExceptionLocalProcess) +STUB( + "CJ9TnqUloLk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEEaSERS9_) +STUB("CJAxTxQdwHM", sceNpTusSetMultiSlotVariableVUserAsync) +STUB("CJO21WV552c", uregex_ucstr_unescape_charAt_67) +STUB("CJOLmTNwg6g", AacsPermissionCheck) +STUB("CJVE5cb1btY", _ZNK7WebCore17HTMLOptionElement21isDisabledFormControlEv) +STUB("CJWBfuaEiQk", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEEC1Ev) +STUB("CJWuDmR1WXY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEC2ERKS7_) +STUB("CJYL20PlkkM", _ZTVN9Inspector26InspectorBackendDispatcherE) +STUB("CJc3ICTVt0M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEaSERS7_) +STUB("CJkitLFH-II", ures_getByIndex) +STUB( + "CJlkiO928MM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEEaSERSA_) +STUB("CJmM0Zu+5VE", utext_extract_67) +STUB("CJpcvsCxGbM", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionFactory7destroyEPNS3_13PlayerSessionE) +STUB("CJuhJu9vSwg", _ZN3sce7Toolkit2NP2V28Commerce16RatingDescriptor13IMAGE_URL_LENE) +STUB("CJzubUV4wLM", + _ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error8fromJsonERKNS_4Json5ValueE) +STUB("CK5V5+EduqY", _ZN3sce2Np9CppWebApi14IdentityMapper2V311PsnWebErrorD1Ev) +STUB( + "CK6xNhZpaBc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEEC1Ev) +STUB("CK7bO5NztTQ", GCC_except_table28) +STUB( + "CKAyQgI5xU0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEEC1Ev) +STUB("CKFo4pVUvrY", + _ZN7WebCore9FrameView29setVisualViewportOverrideRectESt8optionalINS_10LayoutRectEE) +STUB("CKHIXBG74lI", _ZN3sce2Np9CppWebApi14ConnectAccount2V214PSNError_errorD2Ev) +STUB("CKHlRW2E9dA", sceAudio3dPortGetState) +STUB("CKJOqWLNaIA", _ZN3WTF7RunLoop5cycleEj) +STUB("CKQm3LRNxFQ", _ZNK7WebCore6Length5derefEv) +STUB( + "CKRrXCmdrHE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEEcvbEv) +STUB("CKTyfq2tb7k", sceShellCoreUtilGetPlatformPrivacySetting) +STUB("CKXVKoO-ko4", _ZN3sce2Np9CppWebApi6Common13ConstIteratorImEmmEv) +STUB("CKZSi363z8Y", _ZNK3sce2np14JsonObjectImpl9freeFieldEPNS1_5FieldE) +STUB( + "CKf5HCXXYUI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "CKfE3g2cV5g", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEdeEv) +STUB("CKgXd3Rgr08", _ZN7WebCore21convertToIntegerClampIlEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB("CKjDfmFQmBM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEEptEv) +STUB( + "CKjfrFwDI+Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEC2Ev) +STUB("CKlZ-H-D1CE", _ZNSt7collateIcE5_InitERKSt8_Locinfo) +STUB("CKmxM--7U88", cairo_image_surface_get_height) +STUB( + "CKr36aIiwTw", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEEiRNS2_10LibContextEPT_m) +STUB( + "CKr5iHwY2+g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("CKt5reDfhaU", sceClNetPoolDestroy) +STUB( + "CL2ueZE+Jtg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEppEv) +STUB("CL4mkkTpqLA", + _ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody17unsetWaitsForDataEv) +STUB("CL6y9q-XbuQ", sceRtcTickAddMonths) +STUB("CL7VJxznu6g", wctob) +STUB("CL9DIlKFCnA", sceKernelGetAutoUpdateVersion) +STUB( + "CL9FeV8pj0I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEED1Ev) +STUB("CL9KtRfwmG4", _Nats) +STUB("CLHhxjn--Yo", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead17unsetNonPsnLeaderEv) +STUB( + "CLICMau0sbE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE7popBackEv) +STUB("CLLB8Nyghbs", _ZN3WTF9msToHoursEd) +STUB( + "CLT04GjI7UE", + _ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8_GetmfldERS3_S5_bRSt8ios_basePc) +STUB("CLYCq-XCdw8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEEC1Ev) +STUB("CLanQPO2C2E", _ZN7WebCore21DeviceOrientationData6createESt8optionalIdES2_S2_S1_IbE) +STUB("CLcV6IzL22E", GCC_except_table6) +STUB( + "CLelZrqy36Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEixEm) +STUB( + "CLhbSWKMooI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEEcvbEv) +STUB( + "CLnSZ4WTwDA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEC1EPS6_PNS2_10LibContextE) +STUB( + "CLnzBzhIM4w", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "CLuHRW1NQtc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "CLyftQTQlAo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEC2Ev) +STUB("CLzum2VlVAQ", _ZN3WTF10AtomString6numberEd) +STUB( + "CM0aqtlLiW4", + _ZN3sce2Np9CppWebApi7Matches2V126ResponseTeamResultsFactory7destroyEPNS3_19ResponseTeamResultsE) +STUB("CM5QrdK0gHc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEaSERS7_) +STUB( + "CM8ADL4s8F0", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemPropertiesC1ERS5_) +STUB("CM8jw+2tnHc", + _ZN7WebCore15ActiveDOMObject20queueTaskInEventLoopENS_10TaskSourceEON3WTF8FunctionIFvvEEE) +STUB("CMA9M3cwctY", sceFsTrophyImageError) +STUB( + "CMAYpp3R6ok", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE3endEv) +STUB("CMBmzy0hOTk", _ZNK3sce7Toolkit2NP2V24Core17CustomRequestBase21getCustomFunctionTypeEv) +STUB("CMBoQfBTRBY", _ZN7WebCore23CoordinatedBackingStoreC2Ev) +STUB("CMC6IfvUtAE", rgctx_fetch_trampoline_mrgctx_22) +STUB("CMGXXKpT+VA", _ZN7WebCore9FrameView14invalidateRectERKNS_7IntRectE) +STUB("CMHTX5gchP0", lmos) +STUB("CMKyrGMW54Y", _ZNK7WebCore12SettingsBase17cursiveFontFamilyE11UScriptCode) +STUB("CMMNfYf0nGw", _ZNK7WebCore11ContentType9parameterERKN3WTF6StringE) +STUB("CMQ6naYIzNk", rgctx_fetch_trampoline_mrgctx_20) +STUB( + "CMY4fKCG8xI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEE3getEv) +STUB("CMZjWpI9jMA", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEEC1Ev) +STUB( + "CMhnnQKYAp0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEppEv) +STUB("CMkpo2tTjS0", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V111LeaveReasonEEeqERKS7_) +STUB("CMl8mUJvSf8", sceUserServiceSetSharePlayFlags) +STUB("CMqu4xbcnJc", rgctx_fetch_trampoline_rgctx_6_p) +STUB("CMrbKg-BX7Q", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V125NatConnectivityProperties11getFromNat3Ev) +STUB( + "CMuy9gf2G28", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "CMvQgGL--YA", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot7getsortEv) +STUB( + "CMvmPRDQsi0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEdeEv) +STUB("CMwT-KpOFYk", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus9setSlotIdERKi) +STUB( + "CN+Tx9nzLuY", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("CN7EbEV7MFU", sceAppContentDownloadDataFormat) +STUB("CNEe4IDVQ3k", _ZNK3sce2Np9CppWebApi12Leaderboards2V113ErrorResponse8getErrorEv) +STUB( + "CNEsO9+z28M", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitations35setxPSNSESSIONMANAGERNONPSNCALLERIDEPKc) +STUB("CNJ0WvIGGZ4", _ZN3WTF14numberToStringEdPc) +STUB("CNJoUbqVaFc", _ZN3sce2np13NpAccessTokenC2ERKS1_) +STUB("CNNRoRYd8XI", sceVideodec2CreateDecoder) +STUB("CNP5gNDn7eM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEEC1ERS6_) +STUB("CNPX6fJd66c", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE5beginEv) +STUB("CNPin3xt-Yg", _ZN3sce7Toolkit2NP2V28Matching4RoomD2Ev) +STUB("CNQLeYqffyw", _ZN9Inspector26DebuggerFrontendDispatcher7resumedEv) +STUB("CNS2pMT-wL4", _ZN3JSC20JSStringHeapCellTypeC1Ev) +STUB( + "CNSuVcrr1Vk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("CNSxbt5m4mc", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching6WorldsEE12deepCopyFromERS7_) +STUB("CNVHR5xfEqI", _ZN7WebCore16HTMLVideoElement24webkitSupportsFullscreenEv) +STUB( + "CNWbwY5dwdg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEED1Ev) +STUB("CNfDCtPLzso", _ZN3sce7Toolkit2NP9Messaging9Interface11sendMessageEPKNS1_11MessageDataEib) +STUB("CNkdPntEBV0", __tsan_read2_pc) +STUB("CNkp-W06xuw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE8pushBackERKS6_) +STUB("CNsRsR5a+qc", sceMusicPlayerServiceGetCurrentPlayStatus) +STUB("CNx0ylkWoCg", glBeginQuery) +STUB( + "CNzyrFsT9PM", + _ZN3sce2Np9CppWebApi13InGameCatalog2V510SkuFactory6createEPNS1_6Common10LibContextEiPNS5_12IntrusivePtrINS3_3SkuEEE) +STUB("CO+HiTmB0-4", sceAppInstUtilInstallPatch) +STUB("CO1JUzzLODw", mono_aot_Sce_Vsh_SyscallWrapperunwind_info) +STUB("CO2kQ-1VbWU", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEEcvbEv) +STUB("CO6yUWUrXz0", il2cpp_image_get_assembly) +STUB("COCL0Uh7FiI", c17) +STUB("COD0rwcCaUY", _ZN7WebCore11MathMLNames8mfracTagE) +STUB( + "COHrD01h9cU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE5beginEv) +STUB("COOnONW47lo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEE7add_refEv) +STUB( + "COQVtzsDErQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEC2Ev) +STUB("CORMWSC+MDc", _ZNK3WTF8JSONImpl5Value9asIntegerERi) +STUB( + "COS3TmgirFk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("COSADmn1ROg", _Denorm) +STUB("COUJo0QtUFc", mono_aot_Sce_Vsh_Np_AuCheckjit_got) +STUB("COUS5bDWzP0", mono_btls_error_get_error_string_n) +STUB("COYtvdMtSZA", rgctx_fetch_trampoline_mrgctx_35) +STUB("COZ4zQO5B3I", _ZN7WebCore8SVGNames8tspanTagE) +STUB( + "CObcmaYVBgc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE10setContextEPNS2_10LibContextE) +STUB("COe2sIHZwJ0", rgctx_fetch_trampoline_rgctx_4) +STUB("COg8jqqgLC8", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed13UsersWhoLikedEE3setEv) +STUB( + "COj6lfxp0Ho", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE8capacityEv) +STUB( + "COp-jp2P01c", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEE3getEv) +STUB( + "COp9Gt-u6L4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB("COqIT6fJpzc", sceSystemTtsIsAccessibilityAvailable) +STUB("COwz3WBj+5s", sceSaveDataUpload) +STUB("COxqqhvLSyM", _ZNK3sce2np10JsonNumber5CloneEP16SceNpAllocatorEx) +STUB( + "COyHjWgn1ts", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEaSERKS7_) +STUB("CP-kVAMmWVw", sceAgcDriverGetRegShadowInfo) +STUB( + "CP-ymzj69JQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB("CP1-a895Wnw", _ZN3sce7Toolkit2NP2V28Matching7Request7GetDataD2Ev) +STUB("CP3B785G8k4", _ZN3sce3pss5orbis5input48InputManager_GetControllerHandleByDeviceIdNativeElPi) +STUB("CPC0fBIeh-c", _ZNK7WebCore12SharedBuffer5beginEv) +STUB("CPDt6gjsX9Y", _ZN3JSC9constructEPNS_14JSGlobalObjectENS_7JSValueES2_RKNS_7ArgListEPKc) +STUB( + "CPEC9BAX1zE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEEC2ERSA_) +STUB("CPHB3ynrL14", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEEC2EPNS2_10LibContextE) +STUB("CPLV6G-eXmk", sceAudioPropagationSystemRegisterMaterial) +STUB("CPMD3Xc8osA", _ZThn16_N9Inspector18InspectorHeapAgent13startTrackingERN3WTF6StringE) +STUB( + "CPMJuha-FyQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "CPOQBZ0tA-E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEEC1ERSA_) +STUB( + "CPPfyAr9Uos", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEixEm) +STUB("CPSC921MkSU", _ZN3JSC7Symbols36getGeneratorInternalFieldPrivateNameE) +STUB("CPY3kZjzPao", mono_btls_x509_cmp) +STUB("CPmbbHsaQ14", _ZN4Manx6System24setDefaultThreadPriorityEi) +STUB("CPpDO+iVEQY", WKViewRequestExitFullScreen) +STUB( + "CPprJmIqsvM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEEptEv) +STUB("CQ+fWei6Y1s", _ZNK3sce2Np9CppWebApi11Matchmaking2V19Attribute8getValueEv) +STUB( + "CQ0XQz3Yd9s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE3endEv) +STUB("CQ1bzp1ba0k", sceKernelGetBackupRestoreModeOfNextBoot) +STUB("CQ5XY-KhUkw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEEaSERS6_) +STUB("CQG2oyx1-nM", sceNpLwMutexUnlock) +STUB( + "CQLoj7VNBMo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE5beginEv) +STUB( + "CQNMLobe25U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEED1Ev) +STUB( + "CQYCVS5HneM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEED2Ev) +STUB( + "CQf6IBJdZWQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE5beginEv) +STUB( + "CQmAhyYND6M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEC1Ev) +STUB("CQmgQxUimzw", _ZN7WebCore9HTMLNames12autoplayAttrE) +STUB("CQpBDm9Ykzs", _ZN3sce3pss5orbis9framework12PsmStringObj8FreeUtf8EPc) +STUB("CQpIkZ7FVbs", sceUserServiceGetChatStatus) +STUB("CQs8CXpa4FY", _ZN3sce7Toolkit2NP2V23TUS7Request18GetUsersDataStatusD2Ev) +STUB("CQsSq6l6+kA", sceAgcGetDataPacketPayloadAddress) +STUB("CQsllLq8d7I", WKSendDisplayConfigurationChangedMessageForTesting) +STUB("CQt+pVKwL-0", sceCesGbToUtf16) +STUB("CQtPRSF6Ds8", sceNpWebApiReadData) +STUB("CQtwXOnCU1M", _ZN3WTF20ConcurrentPtrHashSetC1Ev) +STUB("CR-l-yI-o7o", sceHttpUriCopy) +STUB( + "CR1AYr21fBI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE3endEv) +STUB( + "CRCROWK9RXc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEcvbEv) +STUB("CRCrYdWe6II", _ZN23sceMetadataReaderWriter15ParserInfoTableD1Ev) +STUB("CRD+jSErEJQ", sceImeDialogGetPanelSizeExtended) +STUB("CRJcH8CnPSI", unsetenv) +STUB( + "CRLInMIF4-M", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("CRNZeopk00I", _ZN23sceMetadataReaderWriter20LoadedParserInfoList16unregisterParserEj) +STUB( + "CRQ3ENOWldw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE5clearEv) +STUB("CRQnRmsfKuA", + _ZN9Inspector17ScriptDebugServer24evaluateBreakpointActionERKNS_22ScriptBreakpointActionE) +STUB("CRR5HsrCpXA", WKWebsiteDataStoreSetResourceLoadStatisticsDebugModeWithCompletionHandler) +STUB( + "CRTkCnRQNrw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE8pushBackERKS8_) +STUB( + "CRXK1b+vvx0", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEEiRNS2_10LibContextEPT_m) +STUB("CRXrrO9JXPk", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V19JoinStateEEppEv) +STUB("CRYMVM8KCa4", fivesbits) +STUB("CRheYnmQudU", _ZN7WebCore9HTMLNames11templateTagE) +STUB("CRjyQvI95lY", _ZN7WebCore16ResourceResponseC2ERKNS_3URLERKN3WTF6StringExS7_) +STUB("CRoMIoZkYhU", _ZTVSt4_Pad) +STUB( + "CRqfzns7jWc", + _ZN9Inspector26LayerTreeBackendDispatcherC1ERNS_17BackendDispatcherEPNS_33LayerTreeBackendDispatcherHandlerE) +STUB("CRrcMiT03uE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE7popBackEv) +STUB( + "CRtp-iKMBz4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEeqERKS9_) +STUB("CRyJ7Q-ap3g", sceHmdInternalSetDebugSocialScreenMode) +STUB("CS91br93fag", __ashldi3) +STUB( + "CSBQBS-Smmw", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119NatConnectivityFrom9setToNat2ERKNS1_6Common12IntrusivePtrINS3_24NatConnectivityToMetricsEEE) +STUB("CSCliE0CoAg", scePktMgrSetUlpNtfHdr) +STUB("CSEjkTYt5dw", _ZTVN10__cxxabiv120__function_type_infoE) +STUB("CSFNyhqnD5k", sceVorbisDecRawSeek) +STUB( + "CSFRkoXbBrM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB("CSIMDsVjs-g", sceNpMatching2JoinRoom) +STUB( + "CSPtqy8vFks", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEppEi) +STUB("CSQDgq2Ziug", X509_print_ex) +STUB("CSUwlTmA7vs", _ZN3sce7Toolkit2NP2V24Core13CallbackEvent8deepCopyERKS4_) +STUB("CSWPy4toO8k", utext_copy) +STUB("CSWYlHs6Izc", Java_java_lang_Shutdown_runAllFinalizers) +STUB( + "CSWpxOzwrnw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEC1Ev) +STUB("CSXnwqXBe4A", + _ZN3sce2Np9CppWebApi12Leaderboards2V123RecordScoreResponseBodyC2EPNS1_6Common10LibContextE) +STUB( + "CSZfhxQtoyw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE3endEv) +STUB( + "CSajrCfZ5nI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("CScn7k-XRxA", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12string9IsSetEv) +STUB( + "CSdpOXXAy4Q", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "CSfZZh9mqjs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEE7add_refEv) +STUB( + "CSjP0YyyBU0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEC1ERS7_) +STUB("CSl1MAdUbYs", sceShellCoreUtilTriggerPapcUpdate) +STUB("CSoIa7qJqRc", jpeg_fdct_12x6) +STUB( + "CSqGW2j4ONw", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10getString2Ev) +STUB("CSuZXQ2Jvng", _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeDataC2Ev) +STUB("CSyTVQgzju4", _ZN3sce2Np9CppWebApi12Leaderboards2V15Entry14setHighestRankERKi) +STUB("CT0iNspIjwM", + _ZN3sce2Np9CppWebApi14SessionManager2V124GameSessionMemberForRead12unsetPlayersEv) +STUB( + "CT1J6pzrSG4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEE11get_deleterEv) +STUB( + "CT29zhQgbvg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEppEi) +STUB("CT2gtjWgCN0", _ZN3sce3Xml3Dom8Document9serializeEPKNS0_18SerializeParameterEPNS0_6StringE) +STUB("CT3th2KZ+4o", _ZN7WebCore24StorageNamespaceProviderD0Ev) +STUB("CT4aR0tBgkQ", log10l) +STUB("CT4bXm6yiKY", _WGetint.flit) +STUB("CT7Mjy8Qyss", _ZN3JSC4Yarr12errorMessageENS0_9ErrorCodeE) +STUB("CT9-jgtUoC4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEEmmEi) +STUB( + "CT9MI7vtrkk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("CTKS0pQr2tU", _ZN3sce7Toolkit2NP20RegisterScoreRequestC1Ev) +STUB("CTKW9UibxEA", sceSystemLogger2DeliveryGetBatchResult) +STUB("CTOFOi7GY1s", _ZN3sce7Toolkit2NP2V23TUS7Request12GetVariables26MAX_VARIABLE_VIRTUAL_SLOTSE) +STUB("CTP18gSkax4", _ZNSt9basic_iosIcSt11char_traitsIcEE7copyfmtERKS2_) +STUB("CTPka2irX+A", fuse_set_signal_handlers) +STUB( + "CTTx0bem2Ko", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEC1Ev) +STUB("CTWXeC413WU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy17TrophyPackSummaryEED2Ev) +STUB("CTXAX9LyDlU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEC2ERKS7_) +STUB( + "CTYMB7UVd50", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEmmEi) +STUB("CTet7V7yH2Y", jinit_downsampler) +STUB("CTh72m+IYbU", sceAudioInHqOpenEx) +STUB( + "CTjoxUk62Eg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEE5resetEPS9_) +STUB( + "CTkeJw8jzOo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEC2ERS7_) +STUB("CTplLrrndUg", sceRegMgrGetStr) +STUB("CTy4PBhpWDw", sceNpMatching2SignalingGetPeerNetInfoResult) +STUB( + "CU0V2qbmvu8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEdeEv) +STUB("CU3AFIBXfU8", _reallocalign) +STUB("CU6pVH4LNf8", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10CategoriesEED1Ev) +STUB( + "CU7qPX8Vrls", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE7popBackEv) +STUB("CU8m+Qs+HN4", sceSysmoduleLoadModuleByNameInternal) +STUB("CU9S4e4-GbI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE21intrusive_ptr_sub_refEPS7_) +STUB("CUCOiOT5fOM", sceFontGraphicsDesignStartDrawing) +STUB("CUDH0R16JvU", mono_loader_register_module) +STUB("CUFAwAyb2kE", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi27ParameterToLeaveGameSessionC1ERS5_) +STUB( + "CUIwfrz8K0U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("CUKn5pX-NVY", sceFontAttachDeviceCacheBuffer) +STUB( + "CUNAOpCF3F4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEC2ERS7_) +STUB( + "CUONR4VGVkc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEC1Ev) +STUB("CUSez58qA84", _ZN3sce7Toolkit2NP2V28Matching5RoomsC2ERKS4_) +STUB("CUSk0qEDj7s", sceRegMgrSrvCnvRegionInt) +STUB("CUY36OE+M+s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEE11release_refEv) +STUB("CUa1YpbWv+E", _ZN7WebCore9HTMLNames10captionTagE) +STUB( + "CUikti925K0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEppEv) +STUB("CUkG1cK2T+U", _ZTVSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE) +STUB( + "CUkmniBv1bc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEC2EPNS2_10LibContextE) +STUB("CUlajtWO-L4", _ZN7WebCore13HTTPHeaderMap3setERKN3WTF6StringES4_) +STUB( + "CUxy6oceOSo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE5emptyEv) +STUB( + "CUyr41KBGAo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEE7add_refEv) +STUB("CV3YJ-QFxi0", Java_java_awt_GnmToolkit_beep) +STUB("CV4VWEe0QK8", _ZN7WebCore10ScrollView21setDelegatesScrollingEb) +STUB( + "CV6PB8SWwUw", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions9hasfieldsEv) +STUB("CVAZFgYPXaA", fuse_req_ctx_compat24) +STUB( + "CVGBLjvrRyQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE5beginEv) +STUB( + "CVIa+lzH6sc", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112ErrorFactory6createEPNS1_6Common10LibContextEiPKcPNS5_12IntrusivePtrINS3_5ErrorEEE) +STUB( + "CVJ+XWGupG8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEE7add_refEv) +STUB( + "CVNActuG3Xc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEC2EPS8_) +STUB("CVZjx9O+1Ic", _ZNK3sce2Np9CppWebApi6Common13ParameterBase13isInitializedEv) +STUB( + "CVcEH3JTus8", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi28ParameterToDeleteGameSession12setsessionIdEPKc) +STUB("CVcmmf8VL40", _ZTISt9time_base) +STUB( + "CVeNh4NUDIY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE7popBackEv) +STUB( + "CVj265Loy-4", + _ZN3sce7Toolkit2NP2V29Messaging28getGameDataMessageAttachmentERKNS3_7Request28GetGameDataMessageAttachmentEPNS2_4Core8ResponseINS3_25GameDataMessageAttachmentEEE) +STUB("CVoT4wFYleE", __fe_dfl_env) +STUB( + "CVoU2SMBOE8", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "CWBduqW1Crk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "CWEcXui9eOQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("CWHVjeJ6MZA", _ZN3sce3Xml3Dom8DocumentC2ERKS2_) +STUB("CWOI5J2vrQo", glGetSamplerParameterfv) +STUB("CWRQgaUPkmM", _ZN7WebCore5Style5Scope29flushPendingDescendantUpdatesEv) +STUB( + "CWSszVsMX4U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "CWTa2VM6czc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("CWVW78Qc3fI", sceMsgDialogGetStatus) +STUB( + "CWVcnHVvNpk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEplEm) +STUB( + "CWWhbexfX00", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEC1EPS8_) +STUB("CWX8y31zqQM", _ZN3JSC13ErrorInstance17sanitizedToStringEPNS_14JSGlobalObjectE) +STUB( + "CWYR-Y+ntmI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB("CWcxjT6X+1c", sceShellCoreUtilIsRemotePlayCpuBudgetAcquired) +STUB( + "CWfrxh5cD90", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody16setSwapSupportedERKb) +STUB( + "CWiF-2pAtec", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEE21intrusive_ptr_add_refEPS7_) +STUB("CWiqHSTO5hk", rindex) +STUB("CWkPMrlG0xk", mono_shared_internal_hash_table_insert) +STUB("CWlBd2Ay1M4", sceSaveDataGetDataBaseFilePath) +STUB("CWmtGgR8wmM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEC2ERS7_) +STUB("CWnGG3DOIt8", glDeleteRenderbuffers) +STUB( + "CWohPPRiAmk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEEC1ERKSA_) +STUB( + "CWpEjgIAAKQ", + _ZN3sce2Np9CppWebApi11UserProfile2V131GetPublicProfileResponseFactory7destroyEPNS3_24GetPublicProfileResponseE) +STUB("CWqU-deu6xg", _ZTVN7WebCore11DisplayList10StrokeRectE) +STUB("CWx+1PBYF-c", _ZSt9use_facetISt7codecvtIwc9_MbstatetEERKT_RKSt6locale) +STUB("CX3WC8qekJE", _ZTSSt13runtime_error) +STUB( + "CX5qqjEonA8", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer17getacceptLanguageEv) +STUB( + "CX6zbscWatM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEEaSERKSA_) +STUB( + "CXCwrae7j+o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEEdeEv) +STUB( + "CXMTDDr1EbE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEeqERKS9_) +STUB("CXOCKWslI-I", _ZN3sce2Np9CppWebApi6Common8IteratorIjEC1EPj) +STUB( + "CXS0LLk+e08", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE3endEv) +STUB("CXURjGcS5d4", _ZN7WebCore9HTMLNames5h3TagE) +STUB("CXXjhKhutaQ", cuse_lowlevel_setup) +STUB( + "CXclfg++VT8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEE11get_deleterEv) +STUB( + "CXg19T-molE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE21intrusive_ptr_sub_refEPS9_) +STUB("CXgp9dPHOTY", _ZN3JSC17weakClearSlowCaseERPNS_8WeakImplE) +STUB("CXkb5yazhTk", _ZN23sceMetadataReaderWriter7Storage21updateParserInfoTableEv) +STUB("CXkqldFdy+4", rethrow_exception_p) +STUB("CXncpqp7gBE", _ZN3sce2Np9CppWebApi6Common6VectorIjEC2Ev) +STUB("CXoCR22n86Q", sceDbgSetBreakOnErrorState) +STUB( + "CXyL3pZRkkQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE3endEv) +STUB("CY8CHAy3TGk", sceFsUfsFsck) +STUB( + "CYCmVNbAi+4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEED2Ev) +STUB("CYECV+WoJpQ", + _ZNK3sce2Np9CppWebApi7Matches2V123ResponseMatchStatistics6toJsonERNS_4Json5ValueEb) +STUB( + "CYEb4rk5eCo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEC2Ev) +STUB("CYElAh1x4Jc", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEEixEm) +STUB("CYG4ENFhXdA", _ZN3JSC7Options10setOptionsEPKc) +STUB("CYIzY6OXyAs", sceKernelEndAppMount2) +STUB("CYJC0YsH4u4", _ZN7bmalloc9Allocator12allocateImplEmmNS_13FailureActionE) +STUB( + "CYK57jd-260", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEmmEv) +STUB( + "CYMoGlXVfMc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEE3getEv) +STUB( + "CYOgsbc82lo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEC2EPKS8_) +STUB("CYPJi6zTh+U", NET_ThrowNew) +STUB("CYS3VjmRCCU", _ZN3IPC13DataReference6decodeERNS_15ArgumentDecoderERS0_) +STUB( + "CYTFFdU5cmI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEeqERKS9_) +STUB("CYW71WY3WUU", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes14integer10IsSetEv) +STUB( + "CYZEkULCxrc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEppEv) +STUB("CYkcE1YQNeg", _ZN3JSC35getSomeBaselineCodeBlockForFunctionENS_7JSValueE) +STUB( + "CYn5f1wClEI", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getBoolean5Ev) +STUB( + "CYoRYbYDxJM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEC1ERS7_) +STUB( + "CYqOBjeon3s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "CYwm0L6chkw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEE7add_refEv) +STUB("CZ-8yXlRVB0", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEE3getEv) +STUB("CZ0z95gBgXg", uloc_getBaseName) +STUB( + "CZ9Dfrl7HPE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEEC1ERS9_) +STUB("CZHdjB7ArhA", _ZNK3WTF10StringView8containsEPKc) +STUB("CZNm+oNmB-I", optreset) +STUB("CZORPcYSNNA", il2cpp_field_set_value_object) +STUB("CZRJl06iMWk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEED2Ev) +STUB("CZRLO-gAmpk", sceVideoCoreInterfaceUnloadModule) +STUB("CZT07J4ApsE", _ZN3JSC4Yarr17RegularExpressionnwEmPv) +STUB("CZVUD-Wvxn0", _ZN3JSC7Symbols29defaultPromiseThenPrivateNameE) +STUB( + "CZXpze4DgBA", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariable31getaddAndGetVariableRequestBodyEv) +STUB("CZZeLY8LRCU", _ZN3sce7Toolkit2NP2V210Tournament20OneVsOneMatchDetailsC2ERKS4_) +STUB("CZbH3YP7JV4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE4sizeEv) +STUB( + "CZbZiYL+UyM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEC2Ev) +STUB( + "CZcWuq5aLS4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEEC2ERKSA_) +STUB( + "CZdHj3xbCxY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEC1Ev) +STUB("CZecZG5-Rfc", sceMoveTrackerPlayGetStates) +STUB( + "CZetgOlryas", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "CZgESEqN2gg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("CZgPsIdPqSk", sceVisionManagerRequestFindUserWithoutIdentify) +STUB("CZkn2zf6pPM", g_opcodeMapWide32) +STUB("CZnQ67rQOAI", JVM_GetClassMethodsCount) +STUB("CZrOHqt6oCY", sceShellCoreUtilActivateStartAsync) +STUB("CZtVnwgan2E", rgctx_fetch_trampoline_rgctx_80_p) +STUB("Ca+obrunqtI", _ZN3sce7Toolkit2NP2V27Ranking12FriendsRanksD1Ev) +STUB("Ca5eFow4EPU", _ZN2GK9PlayerPSN11setPlatformEv) +STUB( + "CaDhP62-xG0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE8pushBackERKS8_) +STUB( + "CaFP31h5mR4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "CaG2m85yX88", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEptEv) +STUB("CaK65eE3ONo", rgctx_fetch_trampoline_mrgctx_28) +STUB( + "CaKfQZSlGbc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEED2Ev) +STUB( + "CaKslPqhDcs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEppEv) +STUB("CaW5gixDGFw", _ZNK3WTF9BitVector14equalsSlowCaseERKS0_) +STUB("CaWzM7xPdpQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEC2ERS7_) +STUB("CaaDcQ265D0", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_15RankInformationEE17getAdditionalInfoEv) +STUB("Caez01BS2mE", FT_Set_Charmap) +STUB( + "CalnXFORAIk", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_23NpSessionInvitationInfoENS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv) +STUB("CawZgCYqXWk", pthread_barrier_wait) +STUB( + "Cb+sh1N3i9c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("Cb1IrMas-u8", mono_aot_ReactNative_Modules_Vsh_Gct_Telemetry2jit_code_start) +STUB("Cb1hI+w9nyU", _ZNSt8numpunctIcEC2ERKSt8_Locinfomb) +STUB("Cb3IRwKPJPI", + _ZN3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinition9terminateEv) +STUB( + "Cb5RaKK2eLA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEEaSERKSA_) +STUB("Cb7rTfsLBjI", _ZN12video_parser10cVideoPath11GetPathNameEv) +STUB("Cb7xWd9-7tc", _ZNK15AbstractStorage4Item15CreateThumbnailEPvPSt10shared_ptrINS_7ContentEE) +STUB( + "Cb9cDLBevFY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEC2EPKS8_) +STUB( + "CbFplXIocfc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE11getResponseERS8_) +STUB( + "CbImY5IhNno", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEC2EPKS8_) +STUB( + "CbJTWIOHsoE", + _ZN3sce2Np9CppWebApi14SessionManager2V127PostGameSessionsRequestBody8fromJsonERKNS_4Json5ValueE) +STUB("CbNga0tWS2o", _ZNSbIwSt11char_traitsIwESaIwEE6assignEOS2_) +STUB("CbNwLqSqKDw", _ZN7WebCore20PasteboardCustomDataaSERKS0_) +STUB("CbQh3DKMSno", sceAgcAcbCopyDataGetSize) +STUB("CbRhl+RoYEM", _LQuadph) +STUB("CbTkO6oTYk4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEcvbEv) +STUB("CbUYbKgLtJM", sceShellCoreUtilGetPs4AppCategoryDefaultsListId) +STUB( + "CbVLrGdVcQ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEEaSERKS9_) +STUB("CbW3wJN+T+Y", _ZNK7WebCore5Color7getRGBAERfS1_S1_S1_) +STUB("CbWxMDgV5WQ", WKErrorCopyDomain) +STUB( + "CbbwZ4UFWK4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEC1EPS8_) +STUB("Cbgna+rzoKg", _ZN9Inspector21InspectorConsoleAgentD0Ev) +STUB( + "CbhZFoiynxI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEC2EPKS8_) +STUB("Cbi5bE14zRk", _ZN7WebCore24RotateTransformOperationD2Ev) +STUB( + "CbiAo0FosAY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEmmEi) +STUB( + "CbkaS7C3Hig", + _ZN9Inspector25DebuggerBackendDispatcher8stepOverElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("CbrT3dwDILo", _ZN3sce4Json5ValueC1ENS0_9ValueTypeE) +STUB( + "Cbw9i5ChN4E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE4sizeEv) +STUB("Cbz6kMfkIfM", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112GroupingTypeEEppEv) +STUB("CbzhOF12EMk", _ZN3WTF14AtomStringImpl3addEPKDs) +STUB( + "Cc+6BUxLSrk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEE6assignEPS5_PFvS7_EPNS2_10LibContextE) +STUB("Cc+Qhdd4ons", curl_url_get) +STUB("Cc-+O41+qDY", _ZN7WebCore13AXObjectCache23focusedUIElementForPageEPKNS_4PageE) +STUB( + "Cc-mqzfwZdM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEC2Ev) +STUB( + "Cc0GKKH52hc", + _ZN3sce2Np9CppWebApi7Matches2V126AdditionalStatisticFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_19AdditionalStatisticEEE) +STUB("Cc1lge6eNeA", ucase_totitle) +STUB( + "Cc5r7Wmy+gc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("Cc6pT9g-ZIk", WKPageCenterSelectionInVisibleArea) +STUB( + "Cc74A1JtZow", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEEptEv) +STUB( + "CcEsc39wfoY", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectator28getxPsnAcceptPlatformNamePs5Ev) +STUB( + "CcFIHcgxm+8", + _ZThn24_N9Inspector22InspectorDebuggerAgent19evaluateOnCallFrameERN3WTF6StringERKS2_S5_PS4_PKbS8_S8_S8_S8_RNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISC_EEEERSt8optionalIbERSH_IiE) +STUB( + "CcGfrrtVfio", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEE7get_refEv) +STUB("CcIH40dYS88", sceNpTusDeleteRequest) +STUB( + "CcLEsw-l+dA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEppEi) +STUB("CcM8rPorbzI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEEC2ERKS7_) +STUB("CcMQp8E76TM", WKPreferencesGetShouldPrintBackgrounds) +STUB( + "CcTwPw9bs-I", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("CcY0E8MatFg", _ZN3JSC2VM25intlDisplayNamesSpaceSlowEv) +STUB("CcYWiRcCY38", sceCesUtf32beToBig5) +STUB( + "CcZmwv0vEXk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEE11get_deleterEv) +STUB("Ccb2YD3x2NA", _ZN7WebCore9PageCache6removeERNS_11HistoryItemE) +STUB("CchAOsvqoAo", _ZN3sce7Toolkit2NP2V24Core12ResponseDataaSERKS4_) +STUB("CchgKVep+h8", _ZNK7WebCore20ResourceResponseBase27cacheControlContainsNoStoreEv) +STUB( + "CckDbmfBtsY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEdeEv) +STUB( + "Cckrkt2EK+k", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("CclqWxyGoHI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEneERKS9_) +STUB("CcpIbveKkZc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEC1Ev) +STUB( + "Ccryri+NLTA", + _ZN9Inspector24RuntimeBackendDispatcher18enableTypeProfilerElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("CctDwDGNTV8", _ZN3sce7Toolkit2NP2V212ActivityFeed7CaptionD2Ev) +STUB( + "CcuupyJjroU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEE3getEv) +STUB("CczSTwBcdxE", _ZN3sce7Toolkit2NP11TusVariableC1Eil) +STUB("Cd5MjaSs9No", _ZNK3sce2Np9CppWebApi7Matches2V113ChildActivity9getStatusEv) +STUB("Cd7iiRtSBkU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEC1ERS7_) +STUB("CdB-tXuJG6I", _ZN3sce7Toolkit2NP2V28Matching9AttributeC2Ev) +STUB( + "CdJrRMlkgmI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEmmEi) +STUB("CdMxiPm8PRc", sceOpusCeltEncCreate) +STUB( + "CdOZf5UuKTw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEneERKS9_) +STUB("CdQg39qlfgY", sceNpManagerIntCreateLoginRequest) +STUB("CdS6RU1tzh8", _ZN7WebCore19BlurFilterOperation6createENS_6LengthE) +STUB("CdUqp-LHLno", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariableD1Ev) +STUB("CdWp0oHWGr0", sceUserServiceGetInitialUser) +STUB("CdZPjawzaK8", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11SessionDataEE3setEv) +STUB("CdcpsO0SLtw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEED2Ev) +STUB("CdgGBMYr0RU", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScore13isInitializedEv) +STUB("CdknolF3ZmY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEE7get_refEv) +STUB("CdobpaGS6WU", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_14TrophyGameInfoEE3getEv) +STUB( + "CdrkD30abHQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEED2Ev) +STUB("CdsviRGZSIY", _ZN7WebCore21DiagnosticLoggingKeys11cpuUsageKeyEv) +STUB("CdtXvtmle9M", _ZN7WebCore22EmptyFrameLoaderClient14didChangeTitleEPNS_14DocumentLoaderE) +STUB( + "Cdxm+zNVATM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEE21intrusive_ptr_sub_refEPS7_) +STUB( + "CdzNHVUKOsQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEixEm) +STUB( + "Ce3mEsqP6jI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEEcvbEv) +STUB("Ce9OAueql30", png_create_info_struct) +STUB( + "CeCxDBSbT1A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEC1Ev) +STUB("CeElm41KZXc", + _ZN7WebCore32ScrollingStateFrameScrollingNode14setFooterLayerERKNS_19LayerRepresentationE) +STUB( + "CeN0J-CTs1Q", + _ZN3sce7Toolkit2NP2V29Messaging7Request27GetReceivedGameDataMessages25MAX_NUM_GAME_DATA_MSG_IDSE) +STUB( + "CeQrFhGNKyc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEC1ERS7_) +STUB( + "CeRrd3RlxNY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEplEm) +STUB("CeSI7C4ihjo", sceFontGraphicsSequenceGetAgcCommandsForSubmit) +STUB("CeSQvxUUIYs", _ZNK7WebCore23FrameLoaderStateMachine32isDisplayingInitialEmptyDocumentEv) +STUB( + "CeUeEQuj+rg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEC1Ev) +STUB("CeWwr0BgALg", _ZN3sce7Toolkit2NP2V210Tournament7Request19SendTeamMatchReportC2Ev) +STUB("CeXpJ67r7j0", _ZN3JSC7Symbols39AsyncGeneratorStateExecutingPrivateNameE) +STUB( + "CeZ9WEvUMGk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEdeEv) +STUB( + "CeZmyQM7bAI", + _ZN3sce2Np9CppWebApi14SessionManager2V134ResponsePlayerSessionPlayerFactory6createEPNS1_6Common10LibContextERKmPKcPNS5_12IntrusivePtrINS3_27ResponsePlayerSessionPlayerEEE) +STUB("CeamasxeTSs", + _ZN3sce2Np9CppWebApi14SessionManager2V123MemberWithMultiPlatform11setPlatformEPKc) +STUB("Ceh1Rzjl9ww", udatpg_setAppendItemName_67) +STUB("Cej7NxK3YEw", _ZN3sce2Np9CppWebApi6Common8IteratorIlEC1EPl) +STUB("Cekhs6LSHC0", sceRemoteplayGetRpMode) +STUB("CenzYgIUIIw", sceVnaSetDucking) +STUB("Ceq8ieFRG+0", _ZN3WTF8JSONImpl6Object6createEv) +STUB("CerqkWrBq-A", sceUserServiceSetNotificationSettings_3) +STUB( + "CeyrtwvJTqQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEE3getEv) +STUB("Cf-2kNJZ-kg", _ZN3sce3Xml3Dom8NodeList9terminateEv) +STUB("Cf1Hb3G9Kkw", _ZN7WebCore9HTMLNames4bTagE) +STUB( + "Cf4YKUzgWqc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE7popBackEv) +STUB("Cf8NftzheE4", sceUserServiceGetPbtcSaturdayHoursEnd) +STUB("CfH+dj4dWJE", + _ZN3sce2Np9CppWebApi14SessionManager2V124GameSessionMemberForReadC2EPNS1_6Common10LibContextE) +STUB( + "CfKDlPSQIdo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEED1Ev) +STUB("CfL0uTDcrqY", mono_install_jump_trampoline) +STUB("CfMn-JFeLmQ", _ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEE8copyFromERKS5_) +STUB("CfOrGjBj-RY", log2l) +STUB("CfP4Q2Yjm1U", u_memcasecmp) +STUB("CfRalQNh1Mc", _ZN9Inspector20InspectorTargetAgent15setPauseOnStartERN3WTF6StringEb) +STUB("CfU6jdqHDkM", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_23NpSessionInvitationInfoEEneERKS4_) +STUB("CfYEYTOHv+8", + _ZN7WebCore13JSHTMLElement15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB("Cfbsupt+BBk", WKWebsiteDataStoreSetStatisticsMinimumTimeBetweenDataRecordsRemoval) +STUB("Cfdmkc6eosw", mono_trace_set_logheader_string) +STUB("CfeusPdBZ94", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEmmEv) +STUB( + "CfjSBS+DW-g", + _ZN7WebCore17PageConsoleClient10addMessageEN3JSC13MessageSourceENS1_12MessageLevelERKN3WTF6StringES7_jjONS4_6RefPtrIN9Inspector15ScriptCallStackENS4_13DumbPtrTraitsISA_EEEEPNS1_14JSGlobalObjectEm) +STUB("CfkNVHnT78w", ft_validator_error) +STUB("CfkjC51cAZU", _ZN3sce2Np9CppWebApi7Matches2V111AddedPlayer13setPlayerNameEPKc) +STUB("CfkpBe2CqBQ", sceFontGraphicsDrawupFillTextureImageObject) +STUB( + "CfoCiLo7xX8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEED1Ev) +STUB("CfwUlQtCFi4", scePadMbusInit) +STUB("CfwjgvKYsI8", _ZN23sceMetadataReaderWriter15ParserInfoTableD2Ev) +STUB( + "Cg03nWxWq4s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEC2Ev) +STUB( + "Cg42wEpEc+Y", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser17unsetmemberFilterEv) +STUB( + "Cg4AWLjaKuI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("Cg4srZ6TKbU", sceKernelRead) +STUB("CgBCrLvqRUQ", _ZN9Inspector21DOMFrontendDispatchernwEmPv) +STUB("CgCJr7J9+eQ", _ZTVN15AbstractStorage17DailymotionFolderE) +STUB("CgDwXDpbej4", _ZN7WebCore9HTMLNames12onchangeAttrE) +STUB("CgGaZAovO+w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEixEm) +STUB("CgJ2nGibrIo", _ZNK7WebCore15VisiblePosition30absoluteSelectionBoundsForLineEv) +STUB( + "CgOkiNT0U5I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEEC1ERSA_) +STUB( + "CgSAiGsv0bY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEEaSERKSA_) +STUB( + "CgSbdJjHTyc", + _ZN15AbstractStorage14MemfileContentC1ESbIcSt11char_traitsIcENS_8StlAllocIcEEEN3paf6common9SharedPtrINS6_6BufferEEE) +STUB("CgUDNF1mJVs", + _ZN3sce2Np9CppWebApi7Matches2V125RequestTeamResultsFactory7destroyEPNS3_18RequestTeamResultsE) +STUB("CgVdl9Sp1G0", sceLncUtilGetCoredumpState) +STUB( + "CgVpOTm1s8s", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser11unsetfieldsEv) +STUB("CgX3gwiVZYM", + _ZNK3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayer14getCustomData1Ev) +STUB( + "CgXnN69zcjQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB( + "CgYvpwF5BTQ", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlot13getaccountIdsEv) +STUB( + "CgZF8fvxU18", + _ZN3sce2Np9CppWebApi14SessionManager2V127ResponsePlayerSessionPlayerC1EPNS1_6Common10LibContextE) +STUB( + "CgZOaV3UU8Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEdeEv) +STUB( + "Cgb6uzWp6Xw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEED2Ev) +STUB("CgdJ1PkIsE4", scePlayerSelectionDialogTerminate) +STUB("CgfvQDFAtYU", sceKernelDebugGetPauseCount) +STUB("Cgh0i6SAWZo", _ZNK7WebCore14ResourceHandle6clientEv) +STUB("CguPlNtb5xY", uprv_decNumberDivide_67) +STUB( + "CgxvomERULI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE3endEv) +STUB("CgyJK7VOznY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEaSERS7_) +STUB("Ch+tmX9rvZM", jpeg_idct_9x9) +STUB( + "Ch0SLRZjIcU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEC2EPS6_PNS2_10LibContextE) +STUB("Ch0rwJ8oqIA", _ZNK7WebCore11MediaPlayer14preservesPitchEv) +STUB( + "Ch30KdY7vZw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE7popBackEv) +STUB("Ch6UfO991Xs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEEC2ERS7_) +STUB( + "Ch8GFwym8PA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEEaSERKSA_) +STUB("ChC8UlHcgSo", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container9getRatingEv) +STUB("ChCOChPU-YM", sceKernelSettimeofday) +STUB( + "ChCtHSG7DPY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEC1ERS7_) +STUB("ChELiKSlZ9o", _ZN3WTF15fastAlignedFreeEPv) +STUB( + "ChFhSECNG40", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE8pushBackERKS8_) +STUB( + "ChIS3Sau4KU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEE7get_refEv) +STUB("ChLHxk0SgNg", _ZN3JSC9Structure8isSealedERNS_2VME) +STUB("ChQ8saJ2j+E", BN_bin2bn) +STUB( + "ChSE1CBGOo0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEC1Ev) +STUB("ChTfGuWGCd0", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEED2Ev) +STUB("ChYUCyXH4LU", _ZN3JSC20TypedArrayControllerD2Ev) +STUB("ChZfZu6D8To", rgctx_fetch_trampoline_mrgctx_45) +STUB("ChZrjApCxSA", _ZN3JSC11IsoSubspaceC1EN3WTF7CStringERNS_4HeapEPNS_12HeapCellTypeEm) +STUB("ChiY6gHrMK4", sceDepthSaveInternalBuffers) +STUB("Chl8gP+3Bcc", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils12Notification15UserStateChangeEED1Ev) +STUB( + "ChmAPh+flJQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEppEi) +STUB( + "ChsAg1q678s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEEC2ERSA_) +STUB("Chv7JuHBGdI", _ZTSn) +STUB("Ci0PqEOATeQ", scePadTrackerTerm) +STUB("Ci16P2r8vac", mono_threads_set_default_stacksize) +STUB("Ci23cw0YzEg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEEC2EPS6_) +STUB("CiD6-BPDZrA", _ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED1Ev) +STUB( + "CiFhkQg6Dr0", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("CiHv9vxLw-g", _ZN7WebCore6Editor7copyURLERKN3WTF3URLERKNS1_6StringE) +STUB("CiKXl603eqg", _ZN7WebCore20SVGPathStringBuilder6resultEv) +STUB("CiQbpUqMc90", sceUserServiceCreateKratosUser) +STUB( + "CiQhlijmzx4", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB( + "CiR811GvkyQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEC2EPS9_) +STUB("CiRO4fSA0Nk", _ZN7WebCore23CoordinatedImageBackingD1Ev) +STUB("CiT0N4PeQU0", _ZN7WebCore12JSAudioTrack14finishCreationERN3JSC2VME) +STUB("CiTwxKPU0ZM", _ZN3sce7Toolkit2NP2V27NpUtils7Request22GetAccountIdByOnlineIdC2Ev) +STUB("CiUf2BGIMYQ", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEE5resetEPS5_) +STUB("CiaetnwGuCA", uprv_decNumberIsSubnormal_67) +STUB("Cidi9Y65mP8", sceNetGetSockInfo6) +STUB( + "Cif5PCyIEqM", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("Cin3R+j17yw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEE11get_deleterEv) +STUB("CinxxPNU5zg", WKPageSetScaleFactorKeepingScrollOffset) +STUB( + "Cirj6zaZK8Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEmmEi) +STUB("Cix07ta4TUU", mono_dl_open) +STUB("CiyEuwxFBHU", Java_com_sony_bdjstack_javax_media_controls_SoundManager_alloc___3BIIZ) +STUB("Cj+Fw5q1tUo", _Xtime_get_ticks) +STUB( + "Cj+oRnNqYqs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEE11get_deleterEv) +STUB( + "Cj+sC0O+XOs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEEC1ERKSA_) +STUB("Cj81LPErPCc", __signbitl) +STUB( + "CjABZPKPB58", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEED1Ev) +STUB( + "CjB99kD5MrM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("CjCSTPYXAkc", fuse_opt_insert_arg) +STUB( + "CjDIf5btcyI", + _ZN7WebCore24CoordinatedGraphicsLayer12setMaskLayerEON3WTF6RefPtrINS_13GraphicsLayerENS1_13DumbPtrTraitsIS3_EEEE) +STUB("CjFUMMCCx-4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE4sizeEv) +STUB("CjLdS99AOJU", WKPreferencesGetEnumeratingAllNetworkInterfacesEnabled) +STUB("CjLk6g64QKc", _ZN3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayerD2Ev) +STUB("CjM2EuBIMV0", sceAppInstUtilAppIsInUpdating) +STUB("CjPeOAnJSIs", _m_ch_key2) +STUB("CjQROLB88a4", __signbitf) +STUB( + "CjRpsQTPLyQ", + _ZN7WebCore14ResourceHandle6createEPNS_17NetworkingContextERKNS_15ResourceRequestEPNS_20ResourceHandleClientEbbb) +STUB("CjVIpztpTNc", sceNpTusTryAndSetVariableForCrossSaveVUserAsync) +STUB("CjZOCyNpKsk", _ZN3WTF8JSONImpl9ArrayBase11pushIntegerEi) +STUB("CjbBp3WkdmQ", rgctx_fetch_trampoline_rgctx_64_p) +STUB("CjbNSVG1Wzg", _Z29Sound_CreateSurroundPanPlayeriPi) +STUB("CjlD53MVsLc", _ZN7WebCore8SVGNames22alignment_baselineAttrE) +STUB( + "Cjp1VdyvAcg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEEC2Ev) +STUB( + "CjqYQFuibNw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEC2EPS6_PNS2_10LibContextE) +STUB("CjsYsFzNRDM", mono_aot_System_ServiceModel_Internalsunwind_info) +STUB("CjxqMyx2-pU", sceHttp2GetAllTrailingHeaders) +STUB("CjzjU2nFUWw", _ZN10__cxxabiv116__enum_type_infoD0Ev) +STUB( + "CjzmCTIVTAY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEEC2ERKSA_) +STUB("Ck7EnTkn80I", GCC_except_table243) +STUB("Ck7bElZaJ-4", WKPageGetSelectionAsWebArchiveData) +STUB("Ck7qGp2MjI4", sceFsUmountSaveData) +STUB("Ck7yQ-P4LTU", + _ZN9Inspector17ScriptDebugServer29dispatchBreakpointActionSoundEPN3JSC9ExecStateEi) +STUB("Ck9k-L7rz-I", FcInitBringUptoDate) +STUB( + "CkCN8-sXJrs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEED1Ev) +STUB("CkDyem5Vkyw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEE11release_refEv) +STUB("CkJiJfJbJJc", _ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE3endEv) +STUB( + "CkNEm60EiSU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEppEi) +STUB( + "CkNaUyQB0as", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEED1Ev) +STUB("CkP9jjPO4ic", BIO_new_fp) +STUB("CkPxQjSm018", sceNpSignalingGetConnectionFromPeerAddress) +STUB("CkVmLoCNN-8", sceFontGetScalePixel) +STUB("CkXK2Mgoq+I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE8capacityEv) +STUB("CkXUW6BfNPM", _ZN7WebCore24FrameDestructionObserverD0Ev) +STUB("CkY0AVa-frg", _ZSt15get_new_handlerv) +STUB("CkZ778Hu6Ng", FcPatternGetString) +STUB("Ckk8xQfD6dg", delegate_virtual_invoke_imt_5_p) +STUB("CkomU+GYCQ8", sceKernelSetAppInfo) +STUB("Cl2V3DEEHcs", _ZN9Inspector31createScriptCallStackForConsoleEPN3JSC14JSGlobalObjectEm) +STUB("Cl56AZ183lA", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEEcvbEv) +STUB("ClBMa8CWKkM", sceUsbStorageDialogOpen) +STUB( + "ClBol8ZgBBg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE3endEv) +STUB("ClEQiRzl3f4", _ZN3sce7Toolkit2NP2V27Ranking10UsersRanksC2Ev) +STUB("ClFa2+CRKVo", _ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_9DOMMatrixE) +STUB("ClGNc0cii6I", sceCesIso2022StrGetUtf8Len) +STUB( + "ClKv7yGVu6s", + _ZN7WebCore17PageConsoleClient10addMessageEN3JSC13MessageSourceENS1_12MessageLevelERKN3WTF6StringEmPNS_8DocumentE) +STUB( + "ClMTvMHeU1Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEcvbEv) +STUB("ClO-QNFpK2k", _ZN9Inspector33LayerTreeBackendDispatcherHandlerD0Ev) +STUB( + "ClOg8L6EqMY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEplEm) +STUB("ClRdU+e1I1o", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product16unsetContentTypeEv) +STUB("ClUGAAMlVr4", mono_aot_System_Net_Httpjit_code_start) +STUB("ClULz8wHZdw", Java_java_lang_reflect_Array_newArray) +STUB( + "ClVcmwIVr3k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEE11get_deleterEv) +STUB("ClZ8vxvE28U", _ZNK7WebCore20ResourceResponseBase24isAttachmentWithFilenameEv) +STUB("ClceGNiWhXM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE7reserveEi) +STUB("ClfCoK1Zeb4", __atomic_compare_exchange) +STUB( + "ClfFs2TSgDk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE7reserveEi) +STUB("ClnsFLLLcss", sceAmprMeasureCommandSizeWaitOnCounter_04_00) +STUB( + "Clo-rEjiNxU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEED1Ev) +STUB( + "ClsCc2AQU74", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEixEm) +STUB("CluPe2pSlWw", _ZN3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error9unsetCodeEv) +STUB( + "ClyBQ+c06fU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEE3getEv) +STUB( + "Cm1h1W2gZ10", + _ZN7WebCore11JSDOMWindow19getOwnPropertyNamesEPN3JSC8JSObjectEPNS1_9ExecStateERNS1_17PropertyNameArrayENS1_15EnumerationModeE) +STUB("Cm4GR2wEVwc", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE3endEv) +STUB("Cm8AZ5YHBTk", scePlayReadyCdmiCreateMediaKeys) +STUB( + "CmDYPRnJ8o0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEED2Ev) +STUB("CmEb6NZaH44", _ZN3WTF7RunLoop9TimerBaseD2Ev) +STUB("CmHmkN5DjlE", mono_event_get_flags) +STUB( + "CmKpXG179jA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEixEm) +STUB("CmMj2R-l2u0", __rela_dyn_end) +STUB( + "CmT2ssqrxwc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEC2ERS8_) +STUB("CmV8rA9at8A", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEE7add_refEv) +STUB("CmZE73V+9QY", ucnv_io_getConverterName) +STUB("CmcCOnsxO4g", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V18RelationEEC2Ev) +STUB( + "Cmcn3RSODj4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEppEv) +STUB("Cmd4+m7V00c", _sceNpAllocatorExStrdup) +STUB("CmehGeAPaZU", monoeg_g_strreverse) +STUB("Cmeoilr1Pvk", Java_com_sony_gemstack_io_factories_jar_JarRandomAccessFile_getProxy) +STUB("CmlLiND79W8", sceAgcSdmaConstFill) +STUB("Cmmtdh--N9s", _ZN7WebCore19MediaElementSession25removeBehaviorRestrictionEj) +STUB( + "CmoYFAoeFMg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "Cmp3EDOZyxM", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE18getResponseHeadersERSB_) +STUB( + "CmsawZOG7Y4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEdeEv) +STUB("CmsboRSnrS4", uloc_getCharacterOrientation_67) +STUB( + "CmzH9wXBu9g", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE5beginEv) +STUB("Cn1RbccDNP0", + _ZN7WebCore23ApplicationCacheStorage23calculateUsageForOriginEPKNS_14SecurityOriginERl) +STUB("Cn1d1wD5dGs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEaSERS7_) +STUB("Cn4swlrBdg0", + _ZN3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectator14setCustomData1EPKvm) +STUB("Cn5Shf4vRoc", _ZNK3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayer11getOnlineIdEv) +STUB( + "Cn63pWGUArg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEC1EPS8_) +STUB("CnCoeVHpqrI", _ZTVN9Inspector30CanvasBackendDispatcherHandlerE) +STUB("CnDHI7sU+l0", _ZN3sce2np6ObjectdlEPv) +STUB("CnDWD5FXLwQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEEC2Ev) +STUB( + "CnIfHZhZp4o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEEC1ERKSA_) +STUB("CnRsS4PUsec", mono_arch_get_call_filter) +STUB("CnSKoVauJt0", sceFsUfsGrowLwfs) +STUB("CnWeAH8yMqY", _ZN7WebCore9HTMLNames12subtitleAttrE) +STUB("CnY1NGmdi7I", sceAudiodecCpuInternalClearContext) +STUB("CnZqpfuD2XI", _ZN3sce2Np9CppWebApi6Common6VectorIfED2Ev) +STUB( + "Cnb07hW6wXA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEmmEv) +STUB("CncGondE0Xs", _ZN3JSC15createTypeErrorEPNS_9ExecStateE) +STUB( + "CngZI2dSbSw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEppEi) +STUB( + "Cnh2w4I5fqE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEED2Ev) +STUB("CnjwEJWxV+s", _Z16detachIpcChanneli) +STUB( + "CnlzgQFKsP8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("Cnn3HtdAFOU", sceMatMemoryPoolExpand) +STUB("CnoiK3ePTEA", _ZNK7WebCore6Chrome10windowRectEv) +STUB("Cnp77podkCU", sceHttpCreateRequestWithURL2) +STUB( + "Cnx648nNrzI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEEdeEv) +STUB("CoBERCGoWsY", _ZTVN7WebCore25DropShadowFilterOperationE) +STUB( + "CoCSdxl8BQ0", + _ZN9Inspector24NetworkBackendDispatcher17interceptContinueElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "CoFuc7Z-WP8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEC2Ev) +STUB( + "CoMPNhTIaJU", + _ZN3sce2Np9CppWebApi14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyC2EPNS1_6Common10LibContextE) +STUB("CoPMx369EqM", sceGameLiveStreamingGetCurrentStatus) +STUB("CoRa1vHix+4", _ZNK7WebCore16HTMLInputElement5valueEv) +STUB("CoTbY7roruU", sceUpsrvUpdateCheckDoCheckSystemForDevKit) +STUB( + "CoUpOKMTVJw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEED2Ev) +STUB("CoW-JYJBpRQ", u_enumCharTypes_67) +STUB("CocbHVIKPE8", sceNpAuthGetIdTokenA) +STUB("CofYpd0ovrE", ures_getByKey_67) +STUB( + "Coi9yB1O55A", + _ZN3sce2Np9CppWebApi14SessionManager2V143GetFriendsPlayerSessionsResponseBodyFactory7destroyEPNS3_36GetFriendsPlayerSessionsResponseBodyE) +STUB("CoiBwv7Gerg", + _ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer10setNatTypeERKi) +STUB("CokWh8qGANk", sceUserServiceSetVibrationEnabled) +STUB("ConU-nXswn8", eglTerminate) +STUB("CorhLc2xdsI", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V510AnnotationEEmmEi) +STUB("CosTELN5ETk", getwc) +STUB("CozMDJlTSEU", __sanitizer_symbolize_global) +STUB( + "Cp-qR1FAoII", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("Cp4EpLUtukM", u_isprint_67) +STUB("Cp9ksNOeun8", _ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED1Ev) +STUB( + "Cp9lVcz5yWc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("CpF21FIEKVQ", profil) +STUB("CpHAdNB7hs4", _ZN9Inspector25RuntimeFrontendDispatcherC2ERNS_14FrontendRouterE) +STUB("CpIzEs1Q1Ug", SSL_select_next_proto) +STUB("CpMk2iCpgBQ", + _ZN7WebCore12ChromeClient41exitVideoFullscreenToModeWithoutAnimationERNS_16HTMLVideoElementEj) +STUB( + "CpOuKyX26Nw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEE21intrusive_ptr_add_refEPS7_) +STUB( + "CpQMLEasiL8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE5beginEv) +STUB( + "CpVHU7S7LN0", + _ZN7WebCore32WorkerThreadableWebSocketChannelC1ERNS_17WorkerGlobalScopeERNS_22WebSocketChannelClientERKN3WTF6StringERNS_14SocketProviderE) +STUB("CpWcnrEZbLA", _Stof) +STUB("CpbVHshIV7M", _ZN7WebCore9HTMLNames8langAttrE) +STUB( + "Cpbi5npt4q4", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRateC2EPNS1_6Common10LibContextE) +STUB("CpiD2ZXrhNo", _Strxfrmx) +STUB("CpkYVuxHycc", _ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamRankResultC2Ev) +STUB( + "Cpl82rPXkiQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB("CpnNC74lyvk", _ZNK7WebCore8Document11topDocumentEv) +STUB("Cpo6sQmnZgU", sceMbusBindDeviceWithUserId) +STUB( + "CpsH4WTgVUY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEdeEv) +STUB("CpuB22NqC6E", _ZN3WTF26currentProcessMemoryStatusERNS_19ProcessMemoryStatusE) +STUB("CpuRkMwXVfE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEEC1Ev) +STUB( + "CpzZhcGlHhQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("Cq1DEDyxNW0", mono_aot_Sce_Vsh_Orbis_CdlgServerNpCommerceunbox_trampoline_addresses) +STUB( + "Cq8HkThepJw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEE11get_deleterEv) +STUB("Cq8O3oR6PWc", + _ZN3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBody21unsetTicketAttributesEv) +STUB( + "CqCI4aoLk54", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEC1Ev) +STUB( + "CqIPEI3nY+0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE3endEv) +STUB("CqJuNXo5yiM", sceNpSessionSignalingTerminate) +STUB( + "CqM6iNjMFak", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("CqMomYo6fWA", WKCertificateInfoCopyPrivateKeyPassword) +STUB( + "CqOxlVGrtkc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEC1ERKS7_) +STUB("CqRoIOhp7V4", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus24lastUpdatedDateTimeIsSetEv) +STUB("CqW1XfJDqNs", glGetQueryObjectivEXT) +STUB( + "CqXpG5dtTXw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "Cqb+YQpu72I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE5beginEv) +STUB( + "Cqc5529NqAo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("Cqfbm5pTMIw", _ZNK7WebCore14DocumentLoader16mainResourceDataEv) +STUB( + "Cqip+CoTeJA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEC2EPNS2_10LibContextE) +STUB("CqjOWM+bC4E", _ZN3JSC19ArrayBufferContentsaSEOS0_) +STUB( + "Cqm3-7HqmA8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("Cqpti4y-D3E", _PJP_CPP_Copyright) +STUB("CqsEZlVu3cQ", _ZN12video_parser18cMp4FFLHndlManager13getFF4ComHndlEv) +STUB("CqtVse0oDtk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEcvbEv) +STUB("CqvGTLhOV70", WKPageLoadWebArchiveDataWithUserData) +STUB("Cqw9+RMoajE", _ZN8meta_gen11MsvPromoter27convMediaTypeVideoFromCodecEN9db_schema9CodecTypeE) +STUB("Cr+tY-r0NvM", sceClHttpUnsetEpoll) +STUB( + "Cr--ShXItmo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE5beginEv) +STUB( + "Cr4-YFHso5E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEaSERKS9_) +STUB("Cr4g9FAysfM", _ZNK7WebCore16BlobRegistryImpl18isBlobRegistryImplEv) +STUB( + "Cr90eu7Xgf0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEC2EPNS2_10LibContextE) +STUB( + "Cr9XMZ5oHrw", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetString10Ev) +STUB("CrAHm1usfLw", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12RoomPingTimeEEC1Ev) +STUB("CrHm8ueBDeU", ures_getNextString) +STUB("CrJAqHAld9M", sceShellCoreUtilClearPs4AppCategoryDefaultsListUpdate) +STUB("CrLqDwWLoXM", sceVoiceGetPortInfo) +STUB( + "CrLwQb1PC-8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEED1Ev) +STUB( + "CrNKeSrk4wg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEED1Ev) +STUB( + "CrTo4sXb6jE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE3endEv) +STUB( + "CrUv5tmMJ3E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEED1Ev) +STUB("CrVW6NdjgmE", _ZN4Manx11StoragePath8appCacheEv) +STUB( + "CrVfHnK51+Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEEC2EPS6_PNS2_10LibContextE) +STUB("CrXyManXbMA", Java_com_sony_bdjstack_javax_media_controls_VideoDecoder_init) +STUB("CrZTHC5yd64", _ZN15AbstractStorage7ServiceC2Ev) +STUB("CrZdCWiXw1Y", _ZN13MsvMetaEditor8openFileEPKc) +STUB("CraXw7gobSE", _ZN3sce7Toolkit2NP16NpSessionRequestC2Ev) +STUB("Crcf65Klvc4", coil_signal_semaphore) +STUB("Crha9LvwvJM", sceRazorCpuWorkloadRunBeginEx) +STUB("CrhyrR+hJkM", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V112TicketStatusEEdeEv) +STUB( + "CrjYkWrjOfE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("CrjatRbBPGA", u_fsetlocale_67) +STUB( + "CrndUnTUSaM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEmmEv) +STUB( + "CrnxJ6Wm8Tk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE8copyFromERKS9_) +STUB("CrvDHSJhBII", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119NatConnectivityFrom9getToNat2Ev) +STUB("CrxnEM1JJ9g", _ZN7WebCore15PlatformDisplay27sharedDisplayForCompositingEv) +STUB("Cs0khU2ULZ4", uprv_pathIsAbsolute_67) +STUB("Cs3DBACRSY8", _ZTISt7codecvtIcc9_MbstatetE) +STUB("Cs4aegJdHFU", _ZN7WebCore6Widget4hideEv) +STUB( + "Cs4d765Mlvg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEptEv) +STUB("Cs8HBh3k-N8", mono_runtime_exec_managed_code) +STUB( + "CsIJrtO3jPs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("CsIrEmYADDo", sceNpPush2RegisterDataType) +STUB("CsRde4NNVbo", uiter_getState_67) +STUB("CsVvgas0eUo", _ZNK7WebCore11XPathResult15singleNodeValueEv) +STUB("CsY7po-fA9Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEEC2Ev) +STUB("CsaKS0Bc0zg", _ZN3JSC2VM21globalObjectSpaceSlowEv) +STUB("CscDZAFA5+c", sceVoiceChatProcessEvent) +STUB("CsjmLzPe1cE", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V18RelationEEneERKS7_) +STUB( + "CsphmY1twiA", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEEiRNS2_10LibContextEPT_m) +STUB("Csuvq2MMXHU", sceHmdInternalGetHmuPowerStatusForDebug) +STUB("Csx50UU9b18", _Tzoff) +STUB("Ct3WeO240lw", sceAjmGetFailedInstance) +STUB( + "Ct4LwrHkzcE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEC1ERKS7_) +STUB("Ct67Z5RXulU", mono_allocator_free) +STUB( + "Ct6IIzVFcJU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEC2Ev) +STUB("CtAuypiNATE", _ZN3sce2np14HttpConnectionC1EP16SceNpAllocatorEx) +STUB("CtB+A9-VxO0", sceAgcDcbDispatchIndirect) +STUB( + "CtCjlf159tI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEE7add_refEv) +STUB( + "CtERWPwrLpg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("CtK8g2qdXwI", PlaybackCommand) +STUB("CtMEsoBvzO8", uhash_iput) +STUB("CtO0q0-CWfY", _ZN7WebCore23ApplicationCacheStorage15deleteAllCachesEv) +STUB( + "CtOwRZyczKc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB("CtPRd3LuB9U", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container14getDescriptionEv) +STUB("CtTAKxzkgF4", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error10setMessageEPKc) +STUB("CtVkHM1vW7A", _ZNK7WebCore11XPathResult20invalidIteratorStateEv) +STUB("CtWUbFgmq+I", sceVrTrackerResetAll) +STUB( + "CtYYhmiQNaw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("CtZ28uSgHvI", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_7TssDataEEC2Ev) +STUB( + "CtZypHdmyFg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("CtbKEfqw+g4", ulocimp_minimizeSubtags) +STUB( + "CtboODC0CYA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE21intrusive_ptr_add_refEPS9_) +STUB("Ctbx9CkZCXU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEC1Ev) +STUB("Ctd9i+9hFu4", sceDtsEncIsEncoding) +STUB("CtijUX3Vn5c", _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE5clearEv) +STUB("Ctm-m3Y326Q", + _ZN7WebCore22EmptyFrameLoaderClient31dispatchUnableToImplementPolicyERKNS_13ResourceErrorE) +STUB( + "Ctn81MfMlk4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEEC2ERKSA_) +STUB("CtogCIVTBsk", _ZN7WebCore9FrameView24setScrollPinningBehaviorENS_21ScrollPinningBehaviorE) +STUB("CtqqsxZ-lpo", _ZNK7WebCore16JSStringCallback22scriptExecutionContextEv) +STUB( + "CttiMysXcbA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEEC1Ev) +STUB("Ctvh7VZDN0E", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE21intrusive_ptr_sub_refEPS7_) +STUB( + "Ctvh9fO1Qo4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEC1Ev) +STUB("Ctw8TmmIXFs", _ZNK7WebCore23ScaleTransformOperation1xEv) +STUB("Ctx+O9CztCk", sceClHttpsSetSslCallback) +STUB("CtygVRCL+bA", scePlayerReviewDialogOpen) +STUB("Ctz7dKz3Da0", _ZNK3JSC9JSPromise6resultERNS_2VME) +STUB("Cu07x4fIYO0", glIsEnabled) +STUB( + "CuAd0dL9mzY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEmmEi) +STUB("CuB1saqAZVs", _ZN3sce2Np9CppWebApi6Common6VectorIdE8copyFromERKS4_) +STUB("CuE2jWA-RaY", _ZN7WebCore15GraphicsContextC2EPNS_20PlatformContextCairoE) +STUB("CuJ1lpUapSs", _ZN3JSC15WeakHandleOwnerC1Ev) +STUB("Cubm05Z7E7I", _ZN3WTF14FileSystemImpl14setMetadataURLERKNS_6StringES3_S3_) +STUB( + "Cudr-Yc-U1E", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "Cue5OjC9XjI", + _ZN7WebCore18TextureMapperLayer12sortByZOrderERN3WTF6VectorIPS0_Lm0ENS1_15CrashOnOverflowELm16EEE) +STUB("CuhaOAhwLHE", sceCesSJisToUtf32be) +STUB( + "CuiPIy12ak4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "CujwbxaASOA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("CukPhzuwECw", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15CategoryInfoSubEE9constructEPS3_RKS3_) +STUB( + "CuqBADJkLI4", + _ZN3JSC16InternalFunction27createSubclassStructureSlowEPNS_9ExecStateENS_7JSValueEPNS_9StructureE) +STUB("CuqN-UrxCrE", _ZNK3WTF6String27isSafeToSendToAnotherThreadEv) +STUB("CuuAb4Teouk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE6resizeEj) +STUB("Cv+zC4EjGMA", _ZNSt5ctypeIcE2idE) +STUB("Cv-8x++GS9A", _Lock_spin_lock) +STUB( + "Cv4WADmDUUs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE7reserveEi) +STUB( + "CvBE8i34Z50", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE5beginEv) +STUB("CvGog64+vCk", _ZN3sce2np12NpHttpClient4InitEii) +STUB("CvJ3HUPlMIY", _ZSt5wcerr) +STUB("CvLd+zsiNGM", WKRenderObjectGetFrameRect) +STUB("CvQHe7rKZvI", _ZN3sce2Np9CppWebApi7Matches2V116JoinMatchRequest17setNpServiceLabelERKi) +STUB("CvUnq1gsWMg", sceMouseExtensionReadState) +STUB("CvfKVbSHgWc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEED1Ev) +STUB("CvfRmGbnycw", mono_aot_Sce_PlayStation_Coreplt_end) +STUB( + "CvnRjJssyeQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEplEm) +STUB( + "CvoLxnNNlHM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEEC2ERSA_) +STUB("CvpEQIpe-Ng", _ZNK3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator10getNatTypeEv) +STUB("CvpSdW4rKh8", _ZN7WebCore31contextMenuItemTagIgnoreGrammarEv) +STUB( + "CvpwHUrZ4w0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEE3getEv) +STUB("CvqQqWqcO-0", FcFontRenderPrepare) +STUB("CvrQw-QIoxQ", _ZN7WebCore10JSDocumentC1ERKS0_) +STUB( + "Cvrcmj+QSTU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEEaSERKSA_) +STUB( + "Cvs6PSlnSQo", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE10setContextEPNS2_10LibContextE) +STUB("CvwCMJtzp1I", sceUserServiceGetGlsLiveQuality) +STUB( + "Cvy2eUzRGlo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEC2EPS8_) +STUB( + "Cw+LG0EfqKc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE7releaseEv) +STUB("Cw74jJ7Cvzs", _ZN9Inspector18InjectedScriptHost7wrapperEPN3JSC14JSGlobalObjectE) +STUB( + "Cw7cicVP0iM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEEC1ERSA_) +STUB("CwBFvAlOv7k", sceAudioInSetMode2) +STUB("CwCzG0nnLg8", _ZN3sce16CommonDialogUtil6Client15launchCmnDialogEv) +STUB("CwDNrs5xFWk", WKPageSetAdClickAttributionConversionURLForTesting) +STUB("CwDVsGO6U3Q", sceMbusAddHandleByUserId) +STUB("CwJ+vZZCWvU", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V219WebApiErrorResponse8fromJsonERKNS_4Json5ValueE) +STUB("CwN8E6gsYh0", mono_aot_System_Windowsmethod_addresses) +STUB("CwRFC2F8-2E", WKPreferencesGetWebShareEnabled) +STUB("CwRmBvXyloE", _LDint.mask) +STUB("CwTYTSKP3Jw", _ZN7WebCore9HTMLNames9sourceTagE) +STUB("CwZrFsrTpO4", trace) +STUB("CwcUwXlAghA", monoeg_g_ptr_array_sized_new) +STUB("CweVdHVfxDQ", sceUpsrvUpdateCheckDestroyHandler) +STUB("Cwl1xhKYq2s", _ZTVN9Inspector25TimelineBackendDispatcherE) +STUB("CwoJ0zJMylg", sceDbgSetExceptionHandlerAltStack) +STUB("Cwoo0lEAtMQ", WKBackForwardListCopyForwardListWithLimit) +STUB( + "CwpexFUvzVc", + _ZN3sce2Np9CppWebApi14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBody10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_28RequestJoinGameSessionPlayerEEEEE) +STUB("CwqYdG4TrjA", sceNpStrToInt64) +STUB("CwqlKj3xo-4", s15) +STUB("CwtIlEFxTEM", _ZNSt9_FacetptrISt5ctypeIcEE6_PsaveE) +STUB("CwvwTZP5gf4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEC2EPS8_) +STUB("Cx75ActBTZo", _ZN12video_parser14cVideoOperator23getRelativeFileExtCountEv) +STUB("CxCYeGea0gg", _ZN7WebCore9FrameView19scrollElementToRectERKNS_7ElementERKNS_7IntRectE) +STUB( + "CxLETQ-8KSc", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13boolean8IsSetEv) +STUB("CxLjOlnTFVE", SendPrivateMessage) +STUB("CxTVF9hcT5I", WKViewGetCanvasHole) +STUB( + "CxTzLqql7xs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB("CxUz3nU06NE", sceVideoOutSetToneMap_) +STUB("CxZYyc0YPjU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEEaSERKS9_) +STUB( + "CxajR92uCzc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEdeEv) +STUB("Cxb2w82t7lw", sceVideoOutAddDisplayPositionEvent) +STUB( + "Cxd6YOG3QyQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEptEv) +STUB("CxdyS3KYhA0", u_file_write_67) +STUB( + "CxioeQv07yU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "CxkuskPILOI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "Cxuanux-z20", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEppEv) +STUB("CxwJc7yMKgg", sceDeci4hDrfpRename) +STUB( + "CxwoicpnTMo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEC2EPNS2_10LibContextE) +STUB("Cxwy7wHq4J0", _ZN3sce4Json11Initializer10initializeEPKNS0_13InitParameterE) +STUB("CxxHgMg2FS0", png_set_read_fn) +STUB("CxxZ4m5WzGU", _ZNK3WTF10StringImpl27startsWithIgnoringASCIICaseERKS0_) +STUB("CxyD6Pv8bC0", + _ZN3sce7Toolkit2NP2V29Challenge7Request13SendChallenge25MAX_SIZE_DATA_DESCRIPTIONE) +STUB( + "Cy+3QN21Iw4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEC1ERS7_) +STUB( + "Cy0y8104uvc", + _ZN3sce2Np9CppWebApi14SessionManager2V127GetGameSessionsResponseBodyC1EPNS1_6Common10LibContextE) +STUB( + "Cy2k0NpidyM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("Cy98Ve48+Io", uregex_regionEnd_67) +STUB( + "CyDZEzEPRjA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE4sizeEv) +STUB("CyGQ8oAmQD4", _ZN3sce7Toolkit2NP2V23TUS16FriendsVariablesC2ERKS4_) +STUB("CyIK-i4XdgQ", sceRtcGetDayOfWeek) +STUB("CyN41AniueA", _ZNK3WTF3URL24strippedForUseAsReferrerEv) +STUB( + "CyN9ErxBf78", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEEC2Ev) +STUB("CyTgmxqg4mg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEEcvbEv) +STUB("CyXs2l-1kNA", _Iswctype) +STUB( + "CyYRqy7HuLA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEC1EPS8_) +STUB("Cya+jvTtPqg", sceWebBrowserDialogResetCookie) +STUB( + "CyaAf2wHOrQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEEdeEv) +STUB("CyauxA5yaTE", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_6NpUserENS1_15AppSTLAllocatorIS5_EEEEC2Ev) +STUB("Cyb-5L6XKbo", _ZN7WebCore19ResourceRequestBase12setIsTopSiteEb) +STUB( + "CybuvqOtB+A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEEaSERSA_) +STUB("CydP+QtA0KI", sceUserServiceTerminateForShellCore) +STUB("Cydi4yJvklQ", mono_aot_Sce_Vsh_Webbrowser_XutilWrapperunbox_trampoline_addresses) +STUB( + "CyiZaEw0jSM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEE7add_refEv) +STUB("Cyjl1yzi1qY", sceNetConfigAddRoute) +STUB("Cykko0lPS3I", _ZNK7WebCore13CSSImportRule10styleSheetEv) +STUB( + "Cyo0fXgnVe4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEdeEv) +STUB( + "CyofvVPbuCI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEEC2Ev) +STUB("CyplNHePlDQ", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEEC1EPKS6_) +STUB("CyqFDc0oWA4", _ZN3sce7Toolkit2NP2V27Session9SessionId5resetEv) +STUB( + "CyuPCHiTofU", + _ZN3sce2Np9CppWebApi14SessionManager2V130PostPlayerSessionsResponseBodyC1EPNS1_6Common10LibContextE) +STUB("Cyw+pgg2YcI", glVertexAttribIPointer) +STUB( + "CyzIVs2496Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEEaSERSA_) +STUB("Cz2W84E4wfg", _ZN12video_parser5vpcom8_ReallocEPvj) +STUB("Cz7grwogKf0", _ZN3sce7Toolkit2NP9Utilities6FutureIiE3getEv) +STUB( + "Cz8LcyK7otE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEdeEv) +STUB( + "Cz9auOmTKtE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEED1Ev) +STUB( + "CzMdVrg+4bk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE4sizeEv) +STUB( + "CzT-1hso8vI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEE7get_refEv) +STUB("CzWwI339UFc", _ZN7WebCore9HTMLNames17ontouchcancelAttrE) +STUB( + "Czd1f-2eVf4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEppEv) +STUB( + "CzfJZ1PI0HI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEC2EPKS8_) +STUB( + "Czfz1l29Gr4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEEC1ERKSA_) +STUB( + "CzhQz3JQW9Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEEdeEv) +STUB("CziCQrOhJ60", _ZN7WebCore10TreeWalker15previousSiblingEv) +STUB("CzjiYYbFr4c", uspoof_check_67) +STUB("Czjo1Se8pEw", sceMbusGetDeviceDescription) +STUB("CzkKf7ahIyU", sceNpUniversalDataSystemPostEvent) +STUB("CzkycDc4qLQ", _ZN3sce2Np9CppWebApi6Common17ParameterBaseImpl16setRequestHeaderEPKcS5_) +STUB("Czlat6lafD8", _ZTSPKo) +STUB("CzmA-OALrH8", sceSlimglCompositorGetCanvasHandle) +STUB("CznMfhTIvVY", _ZN3sce2np9WorkQueue6IsInitEv) +STUB("CzvTwuMfE+s", fuse_reply_xattr) +STUB( + "CzxmrnrPb1g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEEC1Ev) +STUB( + "D+AMi6xyWEI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEaSERKS9_) +STUB( + "D+GLwc45+7k", + _ZN3JSC7JSProxy23getGenericPropertyNamesEPNS_8JSObjectEPNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("D+NeYdSiipM", ucal_isSet_67) +STUB("D+Ycg-BvfQc", mono_aot_System_Reactive_Linqjit_got) +STUB("D+fkILS7EK0", _Fail_s) +STUB("D+puaDTBe8M", mono_aot_Sce_Vsh_Np_Pbtcunwind_info) +STUB("D+tysex3ZPw", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_6NpUserENS1_15AppSTLAllocatorIS5_EEEED2Ev) +STUB( + "D+wOfcOkWE0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("D--nDUfX2hQ", mono_aot_Sce_Vsh_Messages_DbAccessLibjit_code_end) +STUB("D-6Mp9oMPvs", _ZN7WebCore8SVGNames15markerUnitsAttrE) +STUB("D-6S9JHI6A0", sceShellCoreUtilGetSystemBGWaveState) +STUB( + "D-6aSKNEl40", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEixEm) +STUB( + "D-6wc-oZ2eo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEaSERKS7_) +STUB("D-7hSd3Ziqg", sceCesUtf8ToEucJp) +STUB("D-8cZ6N7n4g", _ZNK3WTF9MediaTime12toJSONStringEv) +STUB("D-EdAPEilis", uprv_modf_67) +STUB("D-Fu0+5P5Rs", mono_aot_System_Web_Servicesunbox_trampolines_end) +STUB("D-GaihbBuPw", _ZN7WebCore8SVGNames8styleTagE) +STUB( + "D-KO39txt6s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEixEm) +STUB("D-MYWruwiUQ", _ZNK7WebCore15AffineTransform9mapRegionERKNS_6RegionE) +STUB("D-Om2SCd1RA", _ZN4Manx7RunLoop3runEv) +STUB("D-U692HzoOo", fuse_opt_add_arg) +STUB("D-WphAs+Lh8", FcPatternAddDouble) +STUB( + "D-XrjSUAVYo", + _ZN7WebCore11DisplayList18DrawFocusRingRectsC1ERKN3WTF6VectorINS_9FloatRectELm0ENS2_15CrashOnOverflowELm16ENS2_10FastMallocEEEffRKNS_5ColorE) +STUB("D-ZUl1FSOdE", unorm2_composePair_59) +STUB( + "D-b-78unZT4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("D-dT+vERWmU", _ZN3sce2np7HttpUriD2Ev) +STUB("D-e3WfA3w-U", WKUserMediaPermissionCheckGetTypeID) +STUB( + "D-ooCuggqmU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("D-qDARDb1aM", iswalpha) +STUB("D-rjlYdbggI", u_isIDPart_67) +STUB( + "D-wnRPJ6Oj8", + _ZN7WebCore16BlobRegistryImpl19registerFileBlobURLERKNS_3URLEON3WTF3RefINS_21BlobDataFileReferenceENS4_13DumbPtrTraitsIS6_EEEERKNS4_6StringE) +STUB("D03JZawhAMk", + _ZN3JSC14LocalAllocator16allocateSlowCaseEPNS_17GCDeferralContextENS_21AllocationFailureModeE) +STUB( + "D05SeRGdqcY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE5eraseENS2_8IteratorIS6_EERS9_) +STUB( + "D061Chp6BjM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "D0BCVbOcbDQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEmmEv) +STUB("D0C-8tUYQsI", _ZN3JSC8Profiler8DatabaseD1Ev) +STUB("D0GTbRkQ1zg", _ZN3JSC6Symbol6s_infoE) +STUB("D0I9A5MhZ+Y", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_17ActivityFeedStoryEE7addressERKS3_) +STUB("D0J12YYKb4w", _ZN3sce7Toolkit2NP2V27NpUtils7Request17CheckPsPlusAccessC2Ev) +STUB("D0Jhk501qcw", ucnv_createConverter) +STUB( + "D0KcQLl2dlU", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEEiRNS2_10LibContextEPT_m) +STUB( + "D0MGrXoOhOs", + _ZNK7WebCore12ChromeClient36dispatchDisabledAdaptationsDidChangeERKN3WTF9OptionSetINS_19DisabledAdaptationsEEE) +STUB("D0NRRPBWvGk", mono_aot_Sce_Vsh_Messages_DbAccessLibunwind_info) +STUB("D0OdFMjp46I", sceKernelCreateEqueue) +STUB( + "D0Q8DXlFnEo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEED2Ev) +STUB("D0QLgQ06KBw", restore_context_p) +STUB("D0RQtji285U", Java_java_awt_GraphicsEnvironment_getMouseLocation) +STUB("D0RWslNmK9s", sceVdecCoreDeleteDecoder) +STUB("D0VsxX3MKBw", _ZN3sce7Toolkit2NP2V210Tournament10TournamentC1Ev) +STUB("D0WQtfZWtK0", _ZN7WebCore6WidgetD1Ev) +STUB( + "D0X3ZWYC68E", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS5_INS7_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISE_SF_EE) +STUB("D0cPLPTMMsM", sceDtcpIpStartAuthAsync) +STUB("D0gLApZm36c", _ZN3WTF21currentSearchLocaleIDEv) +STUB("D0gqPsqeZac", _ZNSt10moneypunctIwLb0EE4intlE) +STUB("D0hjxLxkjcU", rgctx_fetch_trampoline_rgctx_17_p) +STUB("D0jdB4RclcI", uprv_decNumberSubtract_67) +STUB( + "D0jwiIm8bOo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "D0kZfqpFPjo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("D0lUMKU+ELI", _ZNKSt5ctypeIwE5do_isEPKwS2_Ps) +STUB("D0n924iO0Yw", glGetBufferPointerv) +STUB("D0oRC24Pq6A", _Wctrans2) +STUB( + "D0xK2MrxLRg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEE11release_refEv) +STUB("D0yUjM33QqU", sceRazorCpuResizeTaggedBuffer) +STUB("D1+5LUUSWHo", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy17TrophyPackSummaryEE5resetEv) +STUB("D189LBn9o-0", _ZN7WebCore8Settings21setColorFilterEnabledEb) +STUB("D1A-mAFwjT4", _ZN4IPMI4impl10ServerImplD1Ev) +STUB("D1AxKjeR0LQ", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product8setLabelEPKc) +STUB("D1BjVDcTyFo", _ZN3sce7Toolkit2NP2V212ActivityFeed12SharedVideosD2Ev) +STUB("D1D6GFIYYGs", pthread_main_np) +STUB("D1IAo-CNswA", sceHttp2WebSocketSendDataMessage) +STUB( + "D1IM59j5JZs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEE7add_refEv) +STUB( + "D1JWHCpCBXE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEE7add_refEv) +STUB("D1KYCZ80Sac", cairo_mask) +STUB("D1N2bsTVWFo", _ZN3sce2Np9CppWebApi13InGameCatalog2V515ContainerRating10unsetTotalEv) +STUB("D1T8WM7DeaA", _ZN7WebCore8SVGNames13filterResAttrE) +STUB("D1WMUW1K-XY", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE7popBackEv) +STUB( + "D1fR9PnAdJU", + _ZN3JSC23encodeFunctionCodeBlockERNS_2VMEPKNS_25UnlinkedFunctionCodeBlockERNS_18BytecodeCacheErrorE) +STUB( + "D1krPa9N57A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEEC2Ev) +STUB("D1l8+Bu+-Y8", FT_Angle_Diff) +STUB( + "D1ofGeQp7rw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEmmEv) +STUB( + "D1tDA6QCyDY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("D1tyB3jTMDg", + _ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody15unsetEntryLimitEv) +STUB( + "D1xBWil3hrw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEC1Ev) +STUB( + "D1zQQnzU+GA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE3endEv) +STUB("D2-dIoJ0ZtE", sigtimedwait) +STUB("D213b+fMrCc", mono_shared_hashtable_foreach_remove) +STUB( + "D24Nr9N5s6o", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEdeEv) +STUB( + "D24wPNNCrMc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEED2Ev) +STUB( + "D2800sZKINs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEixEm) +STUB( + "D28pIGAI8UI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEEcvbEv) +STUB( + "D2C6fb4fNY0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEE3getEv) +STUB("D2ClNimI0dg", __DTOR_END__) +STUB("D2F8M3A-Qbw", _ZN7WebCore9HTMLNames9scopeAttrE) +STUB( + "D2GSv8cVcss", + _ZN3sce2Np9CppWebApi14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyC1EPNS1_6Common10LibContextE) +STUB("D2HdGEYkNkg", _ZN3JSC17DebuggerCallFrame5scopeEv) +STUB("D2JOQimv1is", _ZN7WebCore20previousLinePositionERKNS_15VisiblePositionEiNS_12EditableTypeE) +STUB("D2MCGrGvCYY", sceMbusDebugSuspendApplication) +STUB("D2MgYl19V7A", _ZN3sce7Toolkit2NP2V26Friend12BlockedUsers8deepCopyERKS4_) +STUB("D2O5KU7KlMo", WKKeyValueStorageManagerGetStorageDetailsByOrigin) +STUB( + "D2P-xY54SPs", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody8fromJsonERKNS_4Json5ValueE) +STUB( + "D2Q4FUh376Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEEC1EPNS2_10LibContextE) +STUB("D2Vd3m4Bli8", X509_LOOKUP_file) +STUB( + "D2VtRktPSZw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEixEm) +STUB("D2a6DmGgnpg", _ZN7WebCore9HTMLNames9alignAttrE) +STUB("D2bZ6GobOCM", _ZN7WebCore21convertToIntegerClampItEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB("D2dW1Xovxsw", EVP_PKEY_encrypt) +STUB( + "D2ekje9rQGA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "D2feT18a7VY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEptEv) +STUB( + "D2h5o1mN4s8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEEC2ERKSA_) +STUB("D2jeJh1bZJM", mono_aot_System_Reactive_Interfacesunbox_trampolines_end) +STUB( + "D2k9P8c9dBc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("D2l3rQK-VzQ", sceNpManagerIntClearVshTokenA) +STUB("D2mHostbGt8", _ZN23sceMetadataReaderWriter13ParserManager12_checkStatusEv) +STUB( + "D2njLPpEt1E", + _ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_bRSt8ios_baseRNSt5_IosbIiE8_IostateERSs) +STUB( + "D2ojMaEXFAM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEC2EPS8_) +STUB( + "D2tFd57ks3s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEED2Ev) +STUB("D2u2i75XUDo", _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody12unsetOfferIdEv) +STUB("D2zWfCKPZCk", YGConfigSetContext) +STUB("D32g7jPlu4E", _ZN7WebCore17JSHTMLLinkElementD2Ev) +STUB( + "D37St+76qLc", + _ZN3sce2Np9CppWebApi7Matches2V129RequestPlayerStatisticFactory7destroyEPNS3_22RequestPlayerStatisticE) +STUB("D3CRTfQdhbA", NpStateManagerRegisterCallback) +STUB( + "D3FtOa8BH9Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEppEi) +STUB("D3H+cjfzzFY", sceAppContentAddcontShrink) +STUB("D3NxCPxR1vY", _ZN3sce7Toolkit2NP2V212EventsClient7EventIdC1Ev) +STUB( + "D3Q7JP-29Tc", + _ZN3sce7Toolkit2NP2V29Messaging19sendGameDataMessageERKNS3_7Request19SendGameDataMessageEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("D3T7cs3PiFo", _ZN7CoreIPC13ArgumentCoderIN3WTF6StringEE6decodeERNS_15ArgumentDecoderERS2_) +STUB( + "D3THb1XIVLs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEC1EPS8_) +STUB("D3U5pw7dEHo", _ZN3sce2Np9CppWebApi6Common6VectorIiE6resizeEj) +STUB("D3UFqHJuaeQ", _ZN3JSC7Symbols15somePrivateNameE) +STUB("D3VES2EZ6a4", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate12perGameIsSetEv) +STUB( + "D3bz3iwH3uE", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser12setaccountIdEPKc) +STUB( + "D3fu7FvwNaI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEE7get_refEv) +STUB( + "D3hI0ikt2Tk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEEplEm) +STUB( + "D3hQ5gVYKFM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB( + "D3iN5Jrv1ng", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEmmEv) +STUB("D3lMEqYuTXc", _ZN7WebCore11HistoryItemD2Ev) +STUB( + "D3lyiLzU0yM", + _ZN7WebCore15JSFetchResponse6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_13FetchResponseENS6_13DumbPtrTraitsIS8_EEEE) +STUB("D3nKxJ29sJ8", mono_aot_System_ServiceModel_Webplt_end) +STUB("D3s8DoEnuR4", sceVideoOutAddBufferYccPrivilege) +STUB( + "D3tUMw-ZqcM", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRanking10initializeEPNS1_6Common10LibContextEi) +STUB("D3ucpMtsmEw", _ZN3sce2np3ipc14service_client10EndRequestEii) +STUB( + "D3x07IYKnfA", + _ZN9Inspector23TargetBackendDispatcher6resumeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("D45IcsszyQI", cairo_get_line_width) +STUB( + "D46AnIBO1-k", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE5emptyEv) +STUB( + "D46S70ex9E4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEEC1ERKSA_) +STUB( + "D48ZETMK8T8", + _ZN3sce2Np9CppWebApi14SessionManager2V123SearchAttributesFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_16SearchAttributesEEE) +STUB( + "D498Gcnh-dg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE7reserveEi) +STUB( + "D49e1mwye4Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEEC1ERSA_) +STUB("D4BBx7mxbp4", _LMBCSData19_67) +STUB("D4Ct4+Vq+4w", __ubsan_handle_nonnull_arg_abort) +STUB("D4E7FmVUn8I", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku19unsetAnnotationNameEv) +STUB("D4Hf-0ik5xU", __muldc3) +STUB( + "D4IK-CiLpYM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEppEv) +STUB( + "D4Jb9-xqqBk", + _ZN7WebCore22CryptoAlgorithmAES_CBC15platformEncryptERKNS_30CryptoAlgorithmAesCbcCfbParamsERKNS_12CryptoKeyAESERKN3WTF6VectorIhLm0ENS7_15CrashOnOverflowELm16ENS7_10FastMallocEEENS0_7PaddingE) +STUB( + "D4JwmDq3kwQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("D4Lk1XQiiPQ", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEEptEv) +STUB("D4P+5XqS8HU", + _ZN3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayer8fromJsonERKNS_4Json5ValueE) +STUB( + "D4Q9cBhTZoQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEeqERKS9_) +STUB( + "D4U+MSjZW7Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEC1Ev) +STUB("D4aKjfQUUDA", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt6vectorI16SceNpTusVariableNS2_IS4_EEEED2Ev) +STUB( + "D4k+8dbThKE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEC1EPS6_PNS2_10LibContextE) +STUB( + "D4kJWO3rclA", + _ZN7WebCore15RemoteDOMWindowC2EON3WTF3RefINS_11RemoteFrameENS1_13DumbPtrTraitsIS3_EEEEONS_22GlobalWindowIdentifierE) +STUB("D4mQ1WnfVCk", _ZNK7WebCore11HTMLElement21canonicalEnterKeyHintEv) +STUB( + "D4pP8slUsU4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEE11get_deleterEv) +STUB( + "D4yPlPy5mgI", + _ZN3JSC12RegExpObject16getPropertyNamesEPNS_8JSObjectEPNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("D4yla3vx4tY", sceKernelError) +STUB("D5-UlH-hxT8", _ZNK7WebCore9FrameView14didFirstLayoutEv) +STUB( + "D53PAtdnq6w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEppEv) +STUB( + "D54eHl4Jl+E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEE7add_refEv) +STUB("D55fJP-tnMQ", _ZN7WebCore8SVGNames11unicodeAttrE) +STUB( + "D59DzqyCGqU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEED2Ev) +STUB( + "D5Gx44q5FZo", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getBoolean2Ev) +STUB("D5JfdpJKvXk", sceHmdGetDistortionWorkMemorySize) +STUB("D5KQhCgzND8", + _ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer14setCustomData1EPKvm) +STUB( + "D5KdoIgekS4", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getInteger5Ev) +STUB( + "D5NUEdzPrK4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "D5O5HA9NK7k", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions37unsetxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB("D5ON0NveW+U", _ZNK9Inspector18InjectedScriptBase12globalObjectEv) +STUB("D5QGJRXaGzQ", mono_aot_Sce_Vsh_Np_Pbtcplt_end) +STUB("D5VwaDSEE9g", mono_btls_error_clear_error) +STUB("D5Y1cX5ZyLU", _ZN7WebCorelsERN3WTF10TextStreamENS_11TouchActionE) +STUB("D5foqLinQDc", _ZN3sce2Np9CppWebApi15Personalization2V15Error9setReasonEPKc) +STUB("D5iaQceaLcI", _ZN15AbstractStorage14YoutubeStorageD1Ev) +STUB( + "D5ihzlCiVp8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEE7get_refEv) +STUB( + "D5j2htKIghw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE5clearEv) +STUB( + "D5lU4YaiIyg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE7popBackEv) +STUB("D5m73fSIxAU", _ZNSt14_Error_objectsIiE16_Iostream_objectE) +STUB("D5nSwhnZwM8", _ZN3sce2Np9CppWebApi11UserProfile2V113BasicPresence12setInContextERKb) +STUB("D5oWX5Shi7E", uenum_close_67) +STUB("D5qJmwMlccI", _ZN3sce2np11NpHttpTransD2Ev) +STUB("D5s1+ptdJUk", sceNpPush2CreatePushContext) +STUB("D5sWYfEaf3E", _ZN3sce7Toolkit2NP2V27NpUtils7Request19DisplaySigninDialogC1Ev) +STUB( + "D5srYLheuTE", + _ZN3sce7Toolkit2NP8Sessions9Interface17getInvitationListEPKNS1_21InvitationListRequestEPNS1_9Utilities6FutureISt6vectorINS1_23NpSessionInvitationInfoENS1_15AppSTLAllocatorISA_EEEEEb) +STUB("D5vKWUIXLkg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEmmEv) +STUB( + "D5zIhKZLBRc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEC2EPS6_PNS2_10LibContextE) +STUB( + "D60c3w1g3Js", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEaSERKS7_) +STUB("D615PAo5ccY", _ZN3sce7Toolkit2NP2V28Commerce8ProductsD2Ev) +STUB("D67LGyU9Jvs", _ZThn16_N9Inspector22InspectorDebuggerAgent8stepIntoERN3WTF6StringE) +STUB( + "D6AdsGoYACI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEmmEi) +STUB("D6D9QvimnPc", _ZN7WebCore11DisplayList7RestoreD2Ev) +STUB("D6FQrxfSRw0", + _ZN15AbstractStorage14FacebookFolder11SetMetadataEPN23sceMetadataReaderWriter8MetadataE) +STUB("D6HEAnaC9zQ", scePlayGoSnapshot) +STUB( + "D6Khq4DH4l0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEEC2Ev) +STUB("D6QBgLq-nlc", CERT_STORE_addIdentityNakedKey) +STUB( + "D6RJ2XNgcr4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEE7get_refEv) +STUB("D6W4pe7Eyzo", _ZNK3JSC7JSValue16toNumberSlowCaseEPNS_14JSGlobalObjectE) +STUB( + "D6WC69hhYLQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB("D6dSysDsxho", _ZN3sce7Toolkit2NP2V212ActivityFeed6ActionC2Ev) +STUB("D6esyyBljUQ", _ZN4Manx14NetworkProfile14mountUploadDirEv) +STUB( + "D6fYcAp4l3k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEE6assignEPS7_PFvS9_EPNS2_10LibContextE) +STUB("D6gT6hNDk24", _ZNK7WebCore11RoundedRect8containsERKNS_10LayoutRectE) +STUB("D6ovvSecedE", scePadRemoteControlInsertData) +STUB( + "D6tyqlofqpM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB("D6whRx5uJjA", _ZNK7WebCore27AuthenticationChallengeBase20previousFailureCountEv) +STUB("D6zZXKyK2XI", WKIconDatabaseClose) +STUB( + "D76EYP2dNNg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEE7get_refEv) +STUB( + "D76n9tZlwuY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEppEv) +STUB( + "D76y1Y5-Tro", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEaSERS7_) +STUB( + "D78zYJ6WLEc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "D7DEYbvpjcY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEE11get_deleterEv) +STUB( + "D7ExtW8K220", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "D7GqDSvrHl4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEE11release_refEv) +STUB( + "D7JFXtudr2A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEC1EPS8_) +STUB("D7P8dL0ZKsI", sceVoiceQoSDebugGetStatus) +STUB( + "D7VP1qg9Vus", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEC2ERKS7_) +STUB("D7X2E7zr0Ms", _ZN3JSC7Symbols16truncPrivateNameE) +STUB("D7dg5QJ4FlE", sceGameLiveStreamingStopGenerateStandbyScreenResource) +STUB( + "D7fljzHA2gY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEE11release_refEv) +STUB("D7lbcn6Uxho", sceUserServiceSetNpLanguageCode) +STUB( + "D7mCXwuCZCg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEE5resetEPS6_) +STUB("D7ooGYQUtfA", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEEptEv) +STUB( + "D7qRLdhJjD0", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebErrorC2EPNS1_6Common10LibContextE) +STUB("D7s7dVKRTtU", _ZN7WebCore18CustomHeaderFieldsC1ERKS0_) +STUB( + "D7vihpJSS5s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEE7add_refEv) +STUB("D7wrc1aJMbo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEC1Ev) +STUB("D87MssF+SDE", _ZN7WebCore11DisplayList11FillEllipseC2ERKNS_9FloatRectE) +STUB( + "D8BPRyrSZ+g", + _ZN3sce2Np9CppWebApi14SessionManager2V146PatchPlayerSessionsSessionIdRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_39PatchPlayerSessionsSessionIdRequestBodyEEE) +STUB("D8Br9BnZoqo", SSL_new) +STUB( + "D8FyiBsqJUY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("D8GfkqC2eYU", WKUserContentControllerRemoveAllUserContentFilters) +STUB("D8JBAR3RiZQ", wscanf) +STUB( + "D8MIRnyak44", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEEC1ERS9_) +STUB( + "D8MdeROqB98", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V125NatConnectivityPropertiesC2EPNS1_6Common10LibContextE) +STUB("D8OtBevb2j8", sceNpSessionSignalingGetCustomProperty) +STUB( + "D8OtXzqe49U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEppEi) +STUB( + "D8Y9x4DArlE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB( + "D8bS5wd+TEg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEppEi) +STUB("D8cuU4d72xM", sceSysmoduleGetModuleHandleInternal) +STUB("D8eCqBxSojA", sceNgs2FftProcess) +STUB("D8eSqW1wB+Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE3endEv) +STUB("D8eVrr57Cdw", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE3endEv) +STUB("D8fbM215v5U", _ZN3NTF10initializeEv) +STUB("D8qzwL-tVFY", htopw) +STUB("D8uS+3LygrY", _ZN7WebCore10TreeWalker9lastChildEv) +STUB("D8zy16yGtb8", _ZTVN3JSC8Bindings10RootObjectE) +STUB( + "D91QLOypj8Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "D938paDgjmg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE7popBackEv) +STUB("D93FsJ-Bib4", _ZN3WTF11Persistence5CoderINS_7CStringEE6decodeERNS0_7DecoderE) +STUB("D947DWfj9tY", eglMakeCurrent) +STUB( + "D95Nri7n91I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC1ERKSA_) +STUB( + "D9DGn8IG0dw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "D9Dm-iji0iw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE21intrusive_ptr_sub_refEPS7_) +STUB( + "D9H9qnzTtmw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE8pushBackERKS8_) +STUB("D9J+iUzkQCk", _ZN3sce7Toolkit2NP2V210Wordfilter7Request13FilterComment16MAX_SIZE_COMMENTE) +STUB("D9K0XgKxaV4", _ZN3sce7Toolkit2NP2V210Tournament5EventD1Ev) +STUB( + "D9KtUbSYoaw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEEC2ERSA_) +STUB("D9Kuasb-8ZQ", + _ZN3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer16setJoinTimestampEPKc) +STUB("D9NbUGKcEHE", _Z40PsmGraphicsRemovePostSwapBuffersCallbackj) +STUB( + "D9NsYHQ3Avc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE4sizeEv) +STUB("D9O2WHETJfs", _ZN7WebCore9HTMLNames16onhashchangeAttrE) +STUB("D9Yd1YkgPsI", wpe_loader_init) +STUB("D9ZcN1WT7lE", sceBgftServiceIntDebugPlayGoIsPaused) +STUB( + "D9ZuyDmsuS0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE5eraseENS2_8IteratorIS5_EERS8_) +STUB( + "D9ct6Z0Huzs", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEEiRNS2_10LibContextEPT_m) +STUB( + "D9ePRKG+Vm8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEED2Ev) +STUB( + "D9qG2VuyW5M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEmmEv) +STUB("D9sF1x4r39w", _ZN3JSC4Heap11collectSyncENS_9GCRequestE) +STUB( + "D9sJ3W1xB8E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEC1Ev) +STUB("D9sr1xGUriE", sceAgcCreatePrimState) +STUB("D9tmIHchV20", utrie_defaultGetFoldingOffset_67) +STUB("DA+1PtQC6jI", _ZN7WebCore12TextIterator26rangeFromLocationAndLengthEPNS_13ContainerNodeEiib) +STUB("DA+REGfMy64", _ZN3sce7Toolkit2NP2V210Tournament7Request12SearchEvents13MAX_PAGE_SIZEE) +STUB( + "DAFbo16yh2g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEE3getEv) +STUB( + "DAMz8k1fqJM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEC2EPNS2_10LibContextE) +STUB("DAR+Nuv4E7M", sceNpGameIntentLaunchApp) +STUB( + "DATdo8NwGt0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEmmEi) +STUB( + "DAVZdnoGPOE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEE7add_refEv) +STUB( + "DAWdz9PrfE4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB("DAaqGjN-L1E", YGNodeStyleGetAlignContent) +STUB("DAbZ-Vfu6lQ", wcstoull) +STUB("DAbpqwz0T74", _ZN8meta_gen14ImageRetriever10SetMetaValEiPcm) +STUB( + "DAbxZ04qqI8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("DAcbr5ogFno", + _ZN7WebCore18EventLoopTaskGroup9queueTaskENS_10TaskSourceEON3WTF8FunctionIFvvEEE) +STUB( + "DAlFyShnnjA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE21intrusive_ptr_add_refEPS9_) +STUB("DAmwG6U7YIc", FT_Set_MM_Design_Coordinates) +STUB("DAnKdjbF0TY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEptEv) +STUB( + "DAnYYsCckM0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEEptEv) +STUB("DArcuPFT7SU", sceBgftServiceIntDownloadSetResumeState) +STUB("DAvBs8LZWDM", _ZNK7WebCore6Widget25convertToContainingWindowERKNS_7IntRectE) +STUB("DAycoVmY3Mw", sceCamera2GetSaturation) +STUB("DAzWvw7Ir-A", _ZN3sce7Toolkit2NP2V26Trophy7Request19GetTrophyPackTrophyC2Ev) +STUB("DB+dOgEwWOs", sceKernelStreamWriteStat) +STUB( + "DB0D3J-x5YQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB("DB4go2kMtxo", _ZN9Inspector26DatabaseFrontendDispatcherdaEPv) +STUB("DB7Mkm+Pqzw", scePthreadResume) +STUB( + "DBIfU2beyPE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("DBO-xlHHEn8", _ZTVSt13basic_istreamIwSt11char_traitsIwEE) +STUB("DBPatVsU1UE", il2cpp_unity_liveness_calculation_end) +STUB( + "DBQzOIUCKhk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEC2EPNS2_10LibContextE) +STUB("DBZMYLxXRYA", sceAgcSdmaCopyTiledBC) +STUB("DBbfQ-p+XDo", _ZNK3sce2Np9CppWebApi11Matchmaking2V15Cause9getSourceEv) +STUB("DBd+DgEOL5k", + _ZN3sce7Toolkit2NP9Messaging9Interface23displayReceivedMessagesEiPKNS1_7RequestE) +STUB("DBfLmGdgef0", _ZN7WebCore14LoaderStrategyD1Ev) +STUB( + "DBhro9TPuAc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE21intrusive_ptr_sub_refEPS7_) +STUB( + "DBkwjweiIuY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE5clearEv) +STUB( + "DBlcUtLfwIw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEE7add_refEv) +STUB("DBnRsrL3U8U", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TSS7TssDataEEC2Ev) +STUB( + "DBo1AlV+mMs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("DBswy44k1lU", sceFsUfsAllocateAdditionalContents) +STUB("DBvRuKWSgEY", _ZN3JSC7Symbols34GeneratorStateCompletedPrivateNameE) +STUB( + "DBwwJm8jPGc", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEiRNS2_10LibContextEPT_m) +STUB("DBwxPItsqE8", _ZThn64_NK7WebCore9FrameView12headerHeightEv) +STUB( + "DC+8P8jHaMg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEEC1Ev) +STUB( + "DC1FyWG-qts", + _ZN3sce2Np9CppWebApi7Matches2V130RequestTeamMemberResultFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_23RequestTeamMemberResultEEE) +STUB("DC2NSz1IDyk", sceSysUtilSendSystemNotificationWithUserName) +STUB("DC6bLPb4VD8", + _ZN7WebCore13GraphicsLayer13addChildBelowEON3WTF3RefIS0_NS1_13DumbPtrTraitsIS0_EEEEPS0_) +STUB( + "DC6oCPKELHs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE6resizeEj) +STUB("DCC67J1Y-Qg", _ZNK7WebCore4Page9sessionIDEv) +STUB("DCED60UCIc0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEC1ERKS7_) +STUB("DCLZaH0Q5DE", _ZNK7CoreIPC15StringReference8toStringEv) +STUB( + "DCNN-D9fd50", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "DCOj74gUk6Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEED2Ev) +STUB( + "DCRdVxlHSyg", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi42ParameterToPutGameSessionsSearchAttributesC1Ev) +STUB("DCRiROH09qc", + _ZN3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectator11setPlatformEPKc) +STUB("DCVbIFEYqfI", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V111LeaveReasonEEC2Ev) +STUB("DCVmMM10fxo", _ZN3sce3pss4core8graphics14NativeGraphics19AllocateVideoMemoryEmm) +STUB("DCY9coLQcVI", _ZTISt12future_error) +STUB( + "DCZuf4gAyio", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("DCaq-waberM", + _ZN7WebCore16JSXMLHttpRequest15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("DCbHrYNuMXo", _ZN7WebCore24CoordinatedGraphicsLayer17suspendAnimationsEN3WTF13MonotonicTimeE) +STUB("DCdHL7bcNss", mono_get_exception_field_access) +STUB("DCfnYVX6xBo", sceFiosPrintTimeStamps) +STUB( + "DCkav1uIj5k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEmmEv) +STUB( + "DCrLyg8I63Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEED2Ev) +STUB( + "DCriL8BTdYQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEmmEv) +STUB( + "DCv0nZ+zeb0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE5emptyEv) +STUB( + "DCveI7UYZvs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEneERKS9_) +STUB("DD-KiRLBqkQ", scePadEnableUsbConnection) +STUB("DD08+9TAImA", _ZN3JSC17MarkingConstraint17quickWorkEstimateERNS_11SlotVisitorE) +STUB( + "DD2-Y2Rc5vE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEdeEv) +STUB( + "DDAbpbnJrKs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEeqERKS9_) +STUB("DDCQA2fPQj0", sceAgcDriverUnregisterGpuResetCallbacks) +STUB( + "DDDzEJ2sgPU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEixEm) +STUB("DDFzYGBRGrI", _ZN3sce7Toolkit2NP2V27Ranking12RangeOfRanksC1Ev) +STUB("DDHG1a6+3q0", roundf) +STUB("DDIR4QpfiIg", _ZN3WTF16callOnMainThreadEONS_8FunctionIFvvEEE) +STUB("DDKghiBPZNg", sceFsNsfsAddOverlayToNamespace) +STUB( + "DDMSmBMG8hg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEneERKS9_) +STUB( + "DDOy5lL-PfA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody35setComparedLastUpdatedUserAccountIdEPKc) +STUB("DDQjbwNC31E", _ZNSt8messagesIwEC2ERKSt8_Locinfom) +STUB("DDQkJ92zOvg", _ZN15AbstractStorage15FacebookService5StartEv) +STUB("DDShcGWr-4s", _ZN8meta_gen14ImageRetriever8FinalizeEv) +STUB("DDW8PFTS+1g", WKContextDownloadURLRequest) +STUB("DDYywAer5K0", _ZN3sce3Xml3Dom8NodeList11insertFirstENS1_6NodeIdE) +STUB( + "DDbz-rQ1t5U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "DDhK8DAk4ms", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEptEv) +STUB( + "DDmxBXZkpHo", + _ZN7WebCore10Pasteboard15writeCustomDataERKN3WTF6VectorINS_20PasteboardCustomDataELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("DDnr3lDwW8I", _ZNKSt7codecvtIDic9_MbstatetE11do_encodingEv) +STUB("DDrm5JlJPl4", _ZN3sce2Np9CppWebApi7Matches2V114SubtaskFactory7destroyEPNS3_7SubtaskE) +STUB("DDtxNyBCQmE", _ZN3JSC22DeferredWatchpointFireD0Ev) +STUB("DDuh+yvPMwQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEixEm) +STUB( + "DDvN0oxNcQo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("DDx0-QMzeD4", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product14setReleaseDateEPKc) +STUB("DDxCFdQ8YyU", WKWebsiteDataStoreStatisticsDeleteCookiesForTesting) +STUB("DDxIEUn63w8", _ZN3sce2Np9CppWebApi14SessionManager2V127PostGameSessionsRequestBodyD1Ev) +STUB("DDxLGS1bKWw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEC1Ev) +STUB("DDxNvs1a9jM", __mulosi4) +STUB( + "DDxPx81FrvA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEEptEv) +STUB( + "DE0kW8hhYS8", + _ZN3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBody5setToERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_23MemberWithMultiPlatformEEEEE) +STUB("DE2yor5gKVY", + _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead18maxSpectatorsIsSetEv) +STUB( + "DE3SUa8Yt58", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEC2Ev) +STUB("DE6cpXTwlxA", mspace_trim) +STUB( + "DECe2D89u0o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEaSERKS9_) +STUB("DEIxYzhqE5g", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEEplEm) +STUB("DEJWhX-yHNg", ENGINE_get_next) +STUB("DEPiS-EDbzk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEaSERS7_) +STUB("DEQmHCl-EGU", __atomic_store_8) +STUB("DEdebd5c3Hw", WKBundleFrameGetNumberOfActiveAnimations) +STUB( + "DEfColdZyR0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE5clearEv) +STUB( + "DEgyscYUnDs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEEptEv) +STUB( + "DEmrPf1rtlc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEEC1Ev) +STUB("DEogcVYTvm8", sceVorbisDecRawTotal) +STUB( + "DEqEcw-I+As", + _ZN3sce2Np9CppWebApi7Matches2V127ResponseMatchResultsFactory7destroyEPNS3_20ResponseMatchResultsE) +STUB( + "DEvK64zu-oQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEdeEv) +STUB("DF068VecPFY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEEC2ERS7_) +STUB("DF2bDNLQbUM", + _ZN7WebCore22EmptyFrameLoaderClient29savePlatformDataToCachedFrameEPNS_11CachedFrameE) +STUB("DF2gm2NCGhY", WKBackForwardListClear) +STUB( + "DF6t59pWmLc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("DFBZJzYu0MM", WKViewSetViewScaleFactor) +STUB( + "DFBxL78AGLo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEE11get_deleterEv) +STUB( + "DFG1PW7DCfk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEED1Ev) +STUB("DFLUj7hw4Ck", rgctx_fetch_trampoline_rgctx_103) +STUB( + "DFOWonX7gIA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEixEm) +STUB("DFYOI3dvxU4", uprv_stableBinarySearch_67) +STUB("DFaFoelr9Xw", _ZN7WebCore11MediaPlayer16reloadTimerFiredEv) +STUB("DFbJy+ORy1w", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4DataEED1Ev) +STUB( + "DFbYaVeI4wo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEC1EPS8_) +STUB( + "DFhS6TUPeKQ", + _ZN7WebCore21JSCSSStyleDeclaration25getOwnPropertySlotByIndexEPN3JSC8JSObjectEPNS1_9ExecStateEjRNS1_12PropertySlotE) +STUB("DFjv+LHtSFs", + _ZN7WebCore17FrameLoaderClient23dispatchDidExplicitOpenERKN3WTF3URLERKNS1_6StringE) +STUB("DFlBYT+Lm2I", sceNpTusGetMultiSlotVariableForCrossSaveAsync) +STUB("DFmMT80xcNI", sysctl) +STUB( + "DFoj14XYBr0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEC1Ev) +STUB("DFpTo4CWnA4", _ZN3sce2Np9CppWebApi6Common8IteratorIdEaSERKS4_) +STUB("DFpikNdC3w4", _ZNK7WebCore24RotateTransformOperation27isAffectedByTransformOriginEv) +STUB( + "DG1HMi1H6cY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEC2Ev) +STUB("DG4KEqvKaY4", _ZN9Inspector15RemoteInspector20receivedSetupMessageEj) +STUB( + "DG6EpCkXXVA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEmmEi) +STUB("DG8dDx9ZV70", __fixunsxfdi) +STUB("DGCwN1Lmmys", scePadVrControllerSetVibration) +STUB("DGHBlx7MdZU", _ZN7WebCore9FloatSizeC1ERKNS_7IntSizeE) +STUB("DGL4+zhEA-0", rgctx_fetch_trampoline_mrgctx_105_p) +STUB("DGLM-Fkb0D8", _ZN3JSC8Debugger12breakProgramEv) +STUB("DGMG3JshrZU", sceKernelSetVirtualRangeName) +STUB("DGPzFSjsHaM", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEEixEm) +STUB( + "DGSVF6WM3pE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEaSERKS7_) +STUB("DGU0Qg+6p8M", _ZN15AbstractStorage12LocalContentC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB( + "DGUsOI3eNQI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEEC1ERKS9_) +STUB("DGVfJgP7BXA", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeDataC1ERS5_) +STUB("DGY7qWLcHGA", cpuset_getid) +STUB("DGbb+VBzV6c", _ZN15AbstractStorage14YoutubeService5StartEv) +STUB("DGc5YHKR8S0", _ZN3sce7Toolkit2NP2V28Matching7Request14SendInvitation21MAX_SIZE_USER_MESSAGEE) +STUB( + "DGfQHtdsJ-8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEC1Ev) +STUB("DGfQcLf5l4E", _ZL34__orbis_default_unexpected_handlerv) +STUB("DGkUQEbknmA", JSStringGetMaximumUTF8CStringSize) +STUB("DGrij8GoG00", + _ZN7WebCore18TextureMapperLayer26applyAnimationsRecursivelyEN3WTF13MonotonicTimeE) +STUB( + "DH3Br38GA14", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEmmEv) +STUB("DHAwOWrkloM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE3endEv) +STUB("DHD7eNyXDgM", _ZNK3sce2Np9CppWebApi7Matches2V121ResponseTeamStatistic10statsIsSetEv) +STUB( + "DHGUak8na3k", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBody8fromJsonERKNS_4Json5ValueE) +STUB("DHItaFqEQkU", sceBufferFree) +STUB("DHMLSFLHOkM", _ZNK3sce2Np9CppWebApi14SessionManager2V115SearchCondition11getOperatorEv) +STUB( + "DHMPBNdoI6Q", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEptEv) +STUB( + "DHNpNUWdOiE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEEaSERKSA_) +STUB("DHOTYcqa4hk", _ZN3sce2Np9CppWebApi13InGameCatalog2V57ProductC1EPNS1_6Common10LibContextE) +STUB("DHPTW5Go8nw", _ZN15AbstractStorage18DailymotionServiceC2Ev) +STUB("DHQXNKiY-Dw", sceVdecCoreFinalizeComputeResource) +STUB("DHWACaPn-g4", _malloc_initialize) +STUB("DHXdTVvHVK0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE4sizeEv) +STUB("DHZFFMpeKrk", _ZN7WebCore15SQLiteStatement15getColumnDoubleEi) +STUB( + "DHb-eagnsVk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEC2EPKS9_) +STUB("DHbAda1fa1k", WKContextRegisterURLSchemeAsCachePartitioned) +STUB("DHgcswRN9TQ", mono_win32_compat_FillMemory) +STUB("DHi-7w29ie4", ucurr_unregister) +STUB("DHm4E+8okhU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEcvbEv) +STUB("DHm6fDoGDBs", _ZN9Inspector22InspectorDebuggerAgent24clearAsyncStackTraceDataEv) +STUB("DHmwsa6S8Tc", sceNpCommerceShowPsStoreIcon) +STUB("DHo6TWtuGmg", _ZN7WebCore6Editor29handleAlternativeTextUIResultERKN3WTF6StringE) +STUB("DHrbwttBFig", _ZN7WebCore4PathaSEOS0_) +STUB( + "DI3NVDsspjk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEixEm) +STUB("DI3yZlrLLxM", sceDepthHeadCandidateTrackerGetResult) +STUB("DI5n4aOdxmk", sceNpGlobalHeapGetAllocatorPtr) +STUB("DI8wW8s-O5s", WKPreferencesSetCSSRegionsEnabled) +STUB( + "DIEFA0GRT9M", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEptEv) +STUB("DIHRuOTRrqc", rgctx_fetch_trampoline_rgctx_41_p) +STUB( + "DII6qcT7RSo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE10setContextEPNS2_10LibContextE) +STUB("DIIHsm0p4mo", _ZNK3sce2Np9CppWebApi7Matches2V116RequestMatchTeam9getTeamIdEv) +STUB("DIIRFBxRfMQ", FTA_Remove_Module_cff) +STUB( + "DIIxbYHKZZ4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEmmEv) +STUB( + "DIJrn1q9Bp8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE5emptyEv) +STUB( + "DILN0V3Dn9s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE10setContextEPNS2_10LibContextE) +STUB("DILuzcvXjGQ", sceSystemServiceSaveVideoToken) +STUB("DITCXSNlhCY", _ZN3JSC7Symbols29promiseResolveSlowPrivateNameE) +STUB("DIU1sFRRaiE", sceHmd2GazeGetCalibrationData) +STUB("DIWzj8Cnq+4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS15TusDataStatusesEEC2Ev) +STUB( + "DIXGebh2bbM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEdeEv) +STUB("DId51WHtNjY", _ZN3WTF12createThreadEPFvPvES0_PKc) +STUB("DIdt7mJ-+Mo", _ZN3JSC4Heap35deprecatedReportExtraMemorySlowCaseEm) +STUB( + "DIhA9V-XCGc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEED2Ev) +STUB( + "DIl3QkmEECA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE3endEv) +STUB("DImz2Ft9E2g", sceAudioOut2GetSpeakerInfo) +STUB( + "DIodHZDu6RE", + _ZN7WebCore21SerializedScriptValue11deserializeERN3JSC9ExecStateEPNS1_14JSGlobalObjectENS_22SerializationErrorModeE) +STUB("DIrOrTMEuZw", _ZN3sce7Toolkit2NP2V210Tournament14RegisteredUserD1Ev) +STUB( + "DIsxmxgvY2I", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V120ErrorResponseFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_5ErrorEEEPNS8_INS3_13ErrorResponseEEE) +STUB("DIvJVQ3aBR8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V122UploadDataResponseBodyC2EPNS1_6Common10LibContextE) +STUB("DIwqTkcZiJo", sceHmd2ReprojectionSetUserEventStart) +STUB("DIxvoy7Ngvk", _ZNK3sce4Json5Value10getIntegerEv) +STUB("DJ+a5ILqjcg", _ZN7WebCore9HTMLNames11contentAttrE) +STUB("DJ+sP6bSuMc", _ZN3sce2Np9CppWebApi6Common6VectorIjE5beginEv) +STUB("DJ--iSo4x+I", + _ZN7WebCore21WheelEventTestMonitor23removeDeferralForReasonEPKvNS0_11DeferReasonE) +STUB("DJ-4VhQzx4w", submitCommandBuffersInternalFunc) +STUB("DJ4D1wbLSQE", mono_aot_Sce_Vsh_PsnMessageUtilunbox_trampolines_end) +STUB("DJ8j+2GA-r0", ztrans_open_67) +STUB( + "DJAhLAw+plk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEED1Ev) +STUB( + "DJB6Ul7ScAU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEeqERKS9_) +STUB("DJLMNkz6oP8", _ZN9Inspector26TimelineFrontendDispatcherdaEPv) +STUB("DJMEBvhpY18", monoeg_g_hash_table_foreach_remove) +STUB( + "DJNFN5X2pnA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE3endEv) +STUB("DJOAsXuug44", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEcvbEv) +STUB( + "DJQUiS9SvVY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("DJURdcnVUqo", sceFontGraphicsFillPlotInit) +STUB( + "DJVLa7QUIa4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEE11get_deleterEv) +STUB("DJXyKhVrAD8", _Erf_small) +STUB("DJg+qWX1rwY", ERR_get_error) +STUB( + "DJgQrITERFA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEC2ERS7_) +STUB( + "DJgcSF2KWNg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEE11get_deleterEv) +STUB("DJidosAYILg", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEEptEv) +STUB("DJjXhJEhds0", _ZNSt9basic_iosIcSt11char_traitsIcEE9set_rdbufEPSt15basic_streambufIcS1_E) +STUB("DJktOWakWpE", _ZN3JSC16InternalFunction16getConstructDataEPNS_6JSCellE) +STUB("DJsHcEb94n0", sceRazorCpuSetPushMarkerCallback) +STUB( + "DJuDQZEtsEs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE6resizeEj) +STUB( + "DJxQnDALoL0", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot17setnpServiceLabelEj) +STUB("DJy2VDiX8j0", sceNpTrophySystemWrapRemoveAll) +STUB( + "DK+BjC764Vo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEdeEv) +STUB("DK+GoXCNT04", sceHttpsLoadCert) +STUB( + "DK4s8pXXa-0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("DK5FmaPEFe4", g_utf8_to_utf16) +STUB("DK6V1CLfss8", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi22ParameterToCreateMatchC1ERS5_) +STUB( + "DK6lPc+GHTA", + _ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead17unsetInvitationIdEv) +STUB("DK6xpBP1gxw", sceNpAppLaunchLink2IntInitialize) +STUB( + "DKCy061-8x0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEaSERS7_) +STUB( + "DKD5wZUQD+k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEppEi) +STUB("DKDex8u4uoU", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_skipToPrevLinkPoint) +STUB("DKGaYsA1wCg", _ZN3JSC8JSCalleeC2ERNS_2VMEPNS_14JSGlobalObjectEPNS_9StructureE) +STUB( + "DKJ+61Xoz-Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEED1Ev) +STUB("DKLD2I0fPQ4", + _ZN3sce2Np9CppWebApi12Leaderboards2V123RecordScoreResponseBody8fromJsonERKNS_4Json5ValueE) +STUB( + "DKOAKtw9Wso", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEaSERKS9_) +STUB("DKUoV-3Xc6A", WKPageCopyPageConfiguration) +STUB("DKWSr89zMsI", sceRegMgrNonSysGetStr) +STUB("DKWTYfo-jMY", sceKernelDebugRaiseExceptionWithContext) +STUB("DKcDIamAq5s", _ZN8meta_gen11MsvPromoter41readAndpushThumbnailInfoFromSideImageFileEPKc) +STUB( + "DKdVJ9u0KHk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEC1Ev) +STUB("DKdo2D2V5qc", _ZNK7WebCore5Frame24isAlwaysOnLoggingAllowedEv) +STUB( + "DKghgUOFP2I", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeaders21intrusive_ptr_sub_refEPS5_) +STUB( + "DKjvhynQkxU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEC1EPS8_) +STUB( + "DKkwPpi+uWc", + _ZZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE9_GetffldxEPcRS3_S6_RSt8ios_basePiE4_Src) +STUB("DKo3NJKlHGk", _ZNK7WebCore17JSDOMGlobalObject12currentEventEv) +STUB( + "DKvlUTABSxM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEppEi) +STUB( + "DKzuRyhtvjE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("DL2RXaXOy88", sceAgcDriverDeleteEqEvent) +STUB("DLORcroUqbc", sceKernelGetOpenPsId) +STUB("DLSijjw25cc", EVP_PKEY_get0_DH) +STUB( + "DLT9zEX4mCs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEC2Ev) +STUB("DLTJKFk-OI4", udatpg_getAppendItemName_67) +STUB("DLUu0RPAgO8", _ZN3JSC7Symbols32resolveWithoutPromisePrivateNameE) +STUB("DLW++1OroYc", _ZN3WTF10StringImpl7replaceEDsDs) +STUB("DLW2MfypEgQ", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEE3getEv) +STUB( + "DLW3aIRFf5Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "DLX9ZNzL5oI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEE11release_refEv) +STUB("DLXiDjC1D1A", sceMusicPlayerServiceUnpause) +STUB("DLf0c68diD4", _ZN3sce7Toolkit2NP2V24Core7Request11MemoryPools25MATCHING_MEM_DEFAULT_SIZEE) +STUB("DLfoNxTFNVk", sceAmprCommandBufferWaitOnAddress_04_00) +STUB( + "DLhFj+Y3r2I", + _ZN9Inspector31ScriptProfilerBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) +STUB( + "DLi3vp6yiHY", + _ZN3sce2Np9CppWebApi14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyD2Ev) +STUB("DLog94EYwFI", _ZN3WTF15memoryFootprintEv) +STUB("DLpCCyufz2s", sceFsUfsAllocateGameImage) +STUB("DLs73j9k0q4", _ZNK7WebCore9DOMWindow8documentEv) +STUB("DLscY4vSZkg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEE11get_deleterEv) +STUB( + "DLvh1fvEt-8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEE11release_refEv) +STUB( + "DLyRqLdKpSo", + _ZN15AbstractStorage17DailymotionFolder13RemoveContentERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("DM1eyIdcmqw", _ZNK7WebCore12GridPosition12spanPositionEv) +STUB("DM39YN-X56M", _ZN3WTF14FileSystemImpl17encodeForFileNameERKNS_6StringE) +STUB( + "DM3BEBjAoB8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUserC1ERS5_) +STUB("DM43TNBBfb0", _ZNK3sce4Json6StringeqERKS1_) +STUB( + "DM7D7N534g8", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError8fromJsonERKNS_4Json5ValueE) +STUB("DM7MyKLUQzM", _ZNK3sce7Toolkit2NP17MessageAttachment17getAttachmentSizeEv) +STUB( + "DM8tZX0aHqk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB("DMB487Ois9o", WKBundleInspectorGetTypeID) +STUB( + "DMIcwd4A3ac", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEE7get_refEv) +STUB("DMWSC2m73aY", _ZN7WebCore3URL14encodeHostNameEN3WTF10StringViewE) +STUB("DMWwdFKaCDw", __libunwind_Unwind_GetIPInfo) +STUB("DMY+RIC9iA4", _ZN12video_parser13cVideoMetaVWG16getThumbnailInfoEjPNS_18VpThumbnailInfo_t_E) +STUB("DMYrhifx1WE", _ZN3sce7Toolkit2NP2V29Messaging12Notification16NewInGameMessageC1Ev) +STUB( + "DMZzd5om2rc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB("DMei+WazvFA", mono_aot_Sce_Vsh_Np_Tmdbunwind_info) +STUB( + "DMjIYRYWWUU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEEC2Ev) +STUB("DMm6Lh-3hIY", ucasemap_utf8ToUpper_67) +STUB("DMoAIt-s9Ks", _ZN3JSC19ArrayBufferContentsD1Ev) +STUB("DMqBXLYRnNc", + Java_com_sony_bdjstack_javax_media_controls_VideoSystem_setBackgroundDeviceColor) +STUB( + "DMqwrzIA6FM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE6resizeEj) +STUB("DMvAm4HFKg0", sceMusicPlayerServiceSetShuffle) +STUB( + "DMyZ2fNYGDk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE6finishEv) +STUB( + "DN+ne4e8T5g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEE5resetEPS6_) +STUB("DN0xDLRXD2Y", _ZTSPf) +STUB( + "DN22V6n2FPo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEC2Ev) +STUB("DN3nYDsSbt8", __CTOR_LIST__) +STUB( + "DN4n3Mup9OY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("DN77JoQXH6U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEdeEv) +STUB("DN8v2xNOyjg", sceSlimglCompositorSetInvisibleCanvasCommand) +STUB( + "DNDV56gSPPs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEC2Ev) +STUB( + "DNE6LI1CVbo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEC1Ev) +STUB("DNE77sfNw5Y", sceSystemServiceSetControllerFocusPermission) +STUB( + "DNEX4+HWi0M", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB( + "DNJftLYsGZs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("DNL2FcQX1lA", unumsys_close_59) +STUB("DNM6jPWTIwI", _ZN7WebCore20ResourceLoadObserver19statisticsForOriginERKN3WTF6StringE) +STUB( + "DNMmWd-5Ofs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEC1EPS6_PNS2_10LibContextE) +STUB( + "DNTVVXEtfe4", + _ZN3sce2Np9CppWebApi14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyC2EPNS1_6Common10LibContextE) +STUB( + "DNWq1hvSwhE", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V136FrequentlyMutedInPartyMetricsFactory6createEPNS1_6Common10LibContextEiiiPNS5_12IntrusivePtrINS3_29FrequentlyMutedInPartyMetricsEEE) +STUB("DNb-Y-33FyE", ScePsmMonoArrayAddrWithSize) +STUB("DNbsDRZ-ntI", _ZSt25_Rethrow_future_exceptionSt13exception_ptr) +STUB( + "DNf1gEN5JNA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEeqERKS9_) +STUB( + "DNjCxWifa0Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEE11get_deleterEv) +STUB("DNmJw98YzUU", _ZN3sce2Np9CppWebApi6Common6StringD1Ev) +STUB("DNsikQCYCGM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEEC1EPKS6_) +STUB( + "DNwT9SLYG9M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "DNxxFZlfJM0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEED1Ev) +STUB( + "DNzN0yobRGs", + _ZN3sce7Toolkit2NP8Matching9Interface13modifySessionEPKNS1_20ModifySessionRequestEPNS1_9Utilities6FutureIiEEb) +STUB("DO1fyoQLh0o", _ZN12video_parser17cVideoProfilerMp412getAudioInfoEjPPNS_13VpMediaInfo_tE) +STUB( + "DO1sF3L2F3s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEcvbEv) +STUB( + "DO3sU-3OXlo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEEcvbEv) +STUB("DO5QvHY3UG8", _ZN3sce11playstation4core3Ime13ImeClientCall13UpdateContextEmPtj) +STUB( + "DO7gUg8Unx4", + _ZN9Inspector28DOMDebuggerBackendDispatcher31removeInstrumentationBreakpointElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("DOBCPW6DL3w", _ZTIPDi) +STUB("DOCnSv1cXx8", cairo_curve_to) +STUB("DOFWwhLN09E", sceMbusSetVolumeDown) +STUB( + "DOFb2OcMfuw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEeqERKS9_) +STUB("DOHD6PjWmZ0", _ZN7WebCore11RemoteFrameC2EONS_21GlobalFrameIdentifierE) +STUB( + "DOJi+Xqoyms", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEC1EPS8_) +STUB("DOO+zuW1lrE", sceSysmodulePreloadModuleForLibkernel) +STUB("DOUicDZmVk4", + _ZN3sce2Np9CppWebApi14SessionManager2V124GameSessionMemberForRead13getSpectatorsEv) +STUB("DOVFpAYK3HA", jpeg_fdct_9x9) +STUB("DOVxUXWntL0", _ZNK7WebCore14SecurityOrigin10canRequestERKNS_3URLE) +STUB( + "DOat2r2+U0k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "DObdyWe9kxA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE7popBackEv) +STUB("DOcZTn-y8sw", mono_aot_I18Nunbox_trampolines) +STUB("DOcz37jR7dk", sceKernelSetEmergencyErrorLog) +STUB("DOi+7bvqWpY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEE3getEv) +STUB("DOmdOwV3Aqw", sceFontGraphicsEndFrame) +STUB( + "DOo2yUI0Tsk", + _ZN12video_parser17cVideoProfilerMp417_releaseMediaListERNS_7cVpListINS_13VpMediaInfo_tEjEEMS0_FNS_11VP_RESULT_eEPS2_E) +STUB("DOqfwW33c5U", _ZNK3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15Error7getCodeEv) +STUB( + "DOw6S9539tY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEC1EPNS2_10LibContextE) +STUB("DOwXL+FQMEY", sceSslGetSerialNumber) +STUB( + "DP0XXiJzRmw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE8capacityEv) +STUB( + "DP49y190adc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEE3getEv) +STUB("DPBNNj+AtMI", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_26ActivityFeedCondensedStoryEEeqERKS4_) +STUB("DPDs6Nb95Fs", rgctx_fetch_trampoline_mrgctx_67_p) +STUB("DPGzznIq6jk", ufieldpositer_next_67) +STUB("DPLMrrm0plU", _ZN3JSC10Identifier4fromERNS_2VMEd) +STUB( + "DPOI4gaLgH4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEEaSERKS9_) +STUB("DPOkPZ1UM8g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEaSERS7_) +STUB("DPPQ6aWNSXo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEEdeEv) +STUB( + "DPPz1qYDcrw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "DPTFPm41nDw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEEptEv) +STUB("DPa-0KRJZQ0", fuse_reply_ioctl_retry) +STUB("DPcAnsOlTQs", sceAgcDriverSetHsOffchipParamDirect) +STUB("DPcu0qWsd7Q", sceNpTusGetMultiSlotVariableForCrossSaveVUserAsync) +STUB("DPd5RrM+-+A", lchflags) +STUB( + "DPdCqnmGVP8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEixEm) +STUB( + "DPdOB3ZEhiw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEppEi) +STUB("DPeWR2z7s+k", _ZTVN9Inspector25DebuggerBackendDispatcherE) +STUB( + "DPemPzWoppg", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsers9terminateEv) +STUB("DPhWJAHlWzw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_12FutureResultIiEEEaSERKS6_) +STUB("DPp0DoWStVs", sceKernelGetAIOData) +STUB( + "DPqu-khrj0s", + _ZN3sce7Toolkit2NP8Commerce9Interface26getDetailedProductInfoListEPNS1_9Utilities6FutureISt6vectorINS1_19ProductInfoDetailedENS1_15AppSTLAllocatorIS7_EEEEERKNS1_34DetailedProductInfoListInputParamsEb) +STUB("DPxdK61lRaE", FcPatternDuplicate) +STUB("DPzn7fIYrno", rgctx_fetch_trampoline_rgctx_112_p) +STUB("DQ435HoiiJc", JSContextGetGroup) +STUB( + "DQ5igD0CQQQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEE7add_refEv) +STUB("DQ7K6s8euWY", fminl) +STUB("DQ88xyNHkB4", mono_aot_ReactNative_Vsh_Commonjit_code_end) +STUB("DQ9mChn0nnE", _ZTIPj) +STUB( + "DQDVm1U2ZXA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEppEi) +STUB("DQErMq8kZ+s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEaSERS7_) +STUB( + "DQGxxfV-LCY", + _ZN7WebCore22EmptyFrameLoaderClient33dispatchWillPerformClientRedirectERKNS_3URLEdN3WTF8WallTimeE) +STUB("DQKDQHas1xw", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312AccountIdMap11setOnlineIdERK13SceNpOnlineId) +STUB("DQLfpq4bYv8", _ZN12video_parser18cProfileCheckerMp416_isPlayableMovieEv) +STUB( + "DQME2wcowHs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE8capacityEv) +STUB( + "DQPla-aRD9Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEEaSERKSA_) +STUB("DQSwkf0v-8M", _ZN3sce2Np9CppWebApi14SessionManager2V118MatchmakingForReadD2Ev) +STUB("DQWmTH8mtKU", _ZN3WTF11parseUInt16ENS_10StringViewE) +STUB( + "DQXDxmcJibE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEE3getEv) +STUB("DQXJraCc1rA", alarm) +STUB( + "DQXSRdjF-qY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE21intrusive_ptr_add_refEPS9_) +STUB("DQZPe+YYKWc", Java_java_awt_Component_paintUnlock) +STUB("DQbtGaBKlaw", strnlen_s) +STUB("DQfMoQrtiCc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEC1Ev) +STUB( + "DQjhnV+0l6c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB("DQnohbZGTxo", rgctx_fetch_trampoline_mrgctx_15) +STUB( + "DQp+NhJmtdM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("DQrMjSgCx1M", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable18getLastUpdatedUserEv) +STUB( + "DQvEeqd6Zss", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEixEm) +STUB("DQylqHn4u3g", _ZN8meta_gen11MsvPromoter22determineContentStatusEv) +STUB("DR-KUzK0bFw", ucnv_toUWriteUChars_67) +STUB("DR-ZCmvVR9Q", sceAcm_IFFT) +STUB("DR029KeWsHw", + _ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_bRSt8ios_basecRKSs) +STUB( + "DR0Wrl6T8AY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE5clearEv) +STUB( + "DR11Ly2iWCo", + _ZN7WebCore33validateCrossOriginResourcePolicyERKNS_14SecurityOriginERKN3WTF3URLERKNS_16ResourceResponseE) +STUB("DR1TVxyTPKc", WKURLCreateWithUTF8CString) +STUB( + "DR2+1QFy7Oo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEeqERKS9_) +STUB("DR5-oCJNvBU", _ZNK9Inspector14ConsoleMessage13argumentCountEv) +STUB("DRA3ay-1DFQ", sceNpPartyGetId) +STUB("DRA4Hre5fLA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEEplEm) +STUB( + "DRFIw3xVFvU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEEC2Ev) +STUB( + "DRG+Wa8pNzA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("DRGXpDDh8Ng", lstat) +STUB("DRHqIBMlgK4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEC2ERKS7_) +STUB( + "DRIVfwHXECw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEED2Ev) +STUB( + "DRKrmcrqums", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEEdeEv) +STUB( + "DRLsyMtqWW8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEC2Ev) +STUB("DRNmoIUMxyk", _ZNK7WebCore19MediaElementSession22allowsPictureInPictureEv) +STUB( + "DROcbboUfB0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEmmEi) +STUB( + "DROdZ0bu8dI", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEED1Ev) +STUB("DRP2CWLtObo", ft_smooth_lcdv_renderer_class) +STUB( + "DRQd7vaEvTc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEC1Ev) +STUB("DRQs7hqyGr4", sceFontGraphicsGetVertexesGlyphMetrics) +STUB("DRU3Cxamekk", _ZN7WebCore9HTMLNames12datetimeAttrE) +STUB( + "DRVPjmG+VkU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEE11release_refEv) +STUB("DRbjyNom-BE", _ZN3sce2np3ipc10IpmiClientD1Ev) +STUB("DRchg7SNqic", + _ZN3sce2Np9CppWebApi14SessionManager2V122GameSessionPushContextC2EPNS1_6Common10LibContextE) +STUB("DReLgJ4LPj8", sceApplicationSendResultOfDebuggerTitleIdLaunchRequest) +STUB("DRk9hXjs1Tc", _Atrealloc) +STUB( + "DRkG+tJvcOY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEC1EPNS2_10LibContextE) +STUB("DRm9MRXxV-Y", _ZN7WebCore14FrameSelection6moveToEPKNS_5RangeE) +STUB( + "DRtPUo0Qaqk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEEptEv) +STUB("DRuBt2pvICk", _read) +STUB("DRwo4pgCHKk", glGetShaderPrecisionFormat) +STUB("DS03EjPDtFo", _FHypot) +STUB("DS2yu3Sjj1o", sceNpTssGetDataAsync) +STUB( + "DS4MYWsBtZM", + _ZN9Inspector33ApplicationCacheBackendDispatcherC1ERNS_17BackendDispatcherEPNS_40ApplicationCacheBackendDispatcherHandlerE) +STUB( + "DS7mo5leOsI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEEC2EPNS2_10LibContextE) +STUB( + "DS8NMQ0HIHo", + _ZN7WebCore16WebSocketChannelC2ERNS_8DocumentERNS_22WebSocketChannelClientERNS_14SocketProviderE) +STUB("DSHoRUTWQD0", _ZN7WebCore16NavigationActionD2Ev) +STUB("DSI7bz2Jt-I", __powixf2) +STUB("DSJ9UP0+mDU", _ZN7bmalloc29StaticPerProcessStorageTraitsINS_9DebugHeapEE7Storage8s_memoryE) +STUB("DSJG9i4eHQg", _ZNK3sce2Np9CppWebApi6Common6VectorIdEixEm) +STUB("DSMAvC7D5q8", _ZN8meta_gen11MsvPromoter22convISO639_2_TToStringEt) +STUB("DSOLCrc3Kh8", sceCameraGetDeviceConfig) +STUB("DSPFZhy+nVg", _ZN3sce2Np9CppWebApi14SessionManager2V113FriendFactory7destroyEPNS3_6FriendE) +STUB("DSTJsRjpDeg", JSClassCreate) +STUB("DSTergmOvvE", sceVrTracker2CheckDeviceIsInsidePlayAreaBoundary) +STUB( + "DSW+Iyqyx88", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE7popBackEv) +STUB( + "DSb51YJKRYA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEppEv) +STUB("DSbI7WKbKHI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEE5resetEPS6_) +STUB("DSfHnKqdbCU", _ZN7WebCore9HTMLNames11colspanAttrE) +STUB( + "DSgpd9Coqc8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEdeEv) +STUB("DSh3EXpqAQ4", sceNpTrophyIntDestroyHandle) +STUB("DSi4KyusDpI", _ZNSt9basic_iosIcSt11char_traitsIcEEC1Ev) +STUB( + "DSmtqvqw9mw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEE7add_refEv) +STUB("DSnq6xesUo8", _ZGVNSt20_Future_error_objectIiE14_Future_objectE) +STUB( + "DSo6tS2OAos", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEEptEv) +STUB("DSpQOXEYCbU", Java_sun_awt_GnmUtils_waitFlipEvent) +STUB("DSxqLOTVyEE", Java_java_util_zip_ZipFile_getCSize) +STUB("DSyWpg52hj4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEED2Ev) +STUB("DSyXgNlQVHE", _ZN3sce2Np9CppWebApi7Matches2V113ErrorResponse8fromJsonERKNS_4Json5ValueE) +STUB( + "DT+SaF83Tr0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEED1Ev) +STUB( + "DT1XknAZdds", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEeqERKS9_) +STUB( + "DT2LMTWUsKg", + _ZN3sce2Np9CppWebApi14SessionManager2V127RequestPlayerSessionFactory7destroyEPNS3_20RequestPlayerSessionE) +STUB( + "DT39dZn0J+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEEC1Ev) +STUB( + "DTAQaEQPc0M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("DTAUj8F85Zc", mono_aot_I18Nunwind_info) +STUB("DTAuKszh240", _ZN7WebCore9HTMLNames7altAttrE) +STUB( + "DTH1zTBrOO8", + _ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE7_GetcatEPPKNSt6locale5facetEPKS5_) +STUB( + "DTMUx+nluxQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToSendPlayerSessionMessage55getpostPlayerSessionsSessionIdSessionMessageRequestBodyEv) +STUB("DTTrQJRdCQ4", _ZN9Inspector14InjectedScript19clearExceptionValueEv) +STUB( + "DTYxbQdtj9I", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEeqERKS9_) +STUB("DTdRfuePDrA", _ZN3JSC11createErrorEPNS_9ExecStateENS_9ErrorTypeERKN3WTF6StringE) +STUB( + "DTdpnRZrI-U", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer16unsetserviceNameEv) +STUB( + "DTe15BBYXDs", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_18GameCustomDataItemENS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv) +STUB( + "DTgM1Lvq98k", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi42ParameterToPutGameSessionsSearchAttributesaSERS5_) +STUB( + "DTk9V+0ZPV8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEplEm) +STUB("DTlGa9Kcqws", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEEeqERKS7_) +STUB("DTo2eFghF+k", ulocdata_open_67) +STUB("DTrtyZWzPFM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEptEv) +STUB("DTtZOgB6qzc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEED1Ev) +STUB( + "DTtmuxWuCOs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEC1EPS8_) +STUB("DTx1RAvJENo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE5emptyEv) +STUB( + "DTyjPsI5TAE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEC2EPKS8_) +STUB("DU1GbhkawsE", mono_gc_out_of_memory) +STUB( + "DU1gg8YYJCs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEppEv) +STUB("DU2LPrXa1-k", _ZN7WebCore11DisplayList18DrawFocusRingRectsD1Ev) +STUB("DU4OTGUDVtI", _ZN3sce7Toolkit2NP15AppSTLAllocatorISbIcSt11char_traitsIcENS2_IcEEEEeqERKS7_) +STUB("DUF5lHKpf6o", WKPopupMenuItemIsEnabled) +STUB("DUFkuflD2aY", WKBundleRangeHandleCopySnapshotWithOptions) +STUB("DUHzVPNlugg", sceNpStrParseHex) +STUB("DUIF+u2eAeU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEE3getEv) +STUB( + "DUMu7pGYFto", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEE7get_refEv) +STUB("DUWhxkyVPj4", sceShareUtilityTerminate) +STUB("DUeAr7H-GOc", mono_vtable_get_static_field_data) +STUB("DUi-KTzBAyY", mono_aot_Sce_Vsh_CloudClientplt_end) +STUB( + "DUmqn3S4XS4", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities20ErrorResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS6_12IntrusivePtrINS4_13ErrorResponseEEE) +STUB("DUryOTZ-MZE", il2cpp_gchandle_new_weakref) +STUB("DUwSS3OMOiw", _ZNK7WebCore12SharedBuffer11getSomeDataEm) +STUB("DUz3cbjHnoc", mono_aot_Sce_Vsh_SessionInvitationplt_end) +STUB( + "DV07MO-fURw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEC1Ev) +STUB("DV2AdZFFEh8", _Cnd_register_at_thread_exit) +STUB("DV5fZOOB8Xg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE8capacityEv) +STUB( + "DV6TMQnQeyA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEptEv) +STUB("DV8b-N1ytwc", rgctx_fetch_trampoline_rgctx_106) +STUB("DVAUSbVTZnU", sceSpNetResolverGetError) +STUB("DVCQW9o+ki0", sceUsbdSetInterfaceAltSetting) +STUB("DVHMNgx5UyI", __asan_store16) +STUB("DVLgvKIkO4w", Java_org_havi_ui_HFontCapabilities_pGetSupportedCharacterRanges) +STUB("DVOaFql8qLY", utf8_appendCharSafeBody_59) +STUB( + "DVOekzO4NZ0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEE11get_deleterEv) +STUB("DVTn+iMSpBM", sceAudioInVmicCreate) +STUB( + "DVVlAlv-sbE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "DVWEsmHx13U", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetInteger6Ev) +STUB("DVZmEd0ipSg", _FXp_movx) +STUB("DVaz5-hI7Qc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEE11get_deleterEv) +STUB( + "DVbx8PozzrQ", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot8getgroupEv) +STUB("DVeoAh0xG6w", + _ZNK7WebCore20ScrollingCoordinator25scrollableContainerNodeIDERKNS_12RenderObjectE) +STUB( + "DVfwTk4AZqM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEC1EPS8_) +STUB( + "DVm-WC616tc", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeader10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_40PutPlayerSessionsNonPsnLeaderRequestBodyEEE) +STUB("DVpuQTSeEfM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEC1ERKS7_) +STUB("DVq1Uvd+XxQ", + _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse22matchEndTimestampIsSetEv) +STUB( + "DVqpN8zCZWo", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("DVy01ZMv0OQ", _ZN3sce7Toolkit2NP2V210Tournament27TeamVsTeamTournamentDetails8deepCopyERKS4_) +STUB( + "DW1fCLHEE44", + _ZN9Inspector20DOMBackendDispatcher18insertAdjacentHTMLElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "DW2SYLojlmA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEC1ERKS7_) +STUB("DW8653aEx5g", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16TrophyPackTrophyEEC2Ev) +STUB("DWBP7THhblo", Java_java_net_InetAddressImplFactory_isIPv6Supported) +STUB( + "DWCwZfHeHQI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEED1Ev) +STUB("DWF4tgsgXj0", vzone_getDynamicClassID_67) +STUB("DWHVNw+q-ag", rgctx_fetch_trampoline_rgctx_95) +STUB("DWJep6U-MYQ", + _ZN15AbstractStorage13TwitterFolder13RemoveContentERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("DWMcG8yogkY", _ZSt8_XLgammaf) +STUB( + "DWN6mKqkOqU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEC1ERS7_) +STUB("DWNSBXMqW64", _ZN3JSC12HeapVerifier15checkIfRecordedEm) +STUB( + "DWTFS41QZ54", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEaSERS7_) +STUB("DWVv0MlE1sw", sceShellCoreUtilTickHeartBeat) +STUB("DWWNTz7HFiA", _ZN3JSC17DeferredWorkTimerD0Ev) +STUB("DWWW02MbKdk", sceNpBandwidthTestDownloadOnlyInitStart) +STUB("DWWuQ5mOn24", _ZN3JSC2VM20proxyRevokeSpaceSlowEv) +STUB("DWY1jnsgOQI", EC_POINT_point2oct) +STUB("DWbJC3dV0OY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEC1ERS7_) +STUB("DWdEQvQvQxs", WKPageRunJavaScriptInMainFrameAndReturnString) +STUB( + "DWqskzo+8ig", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE10setContextEPNS2_10LibContextE) +STUB("DWsUjyLWhLo", _ZN7WebCore9HTMLNames9rulesAttrE) +STUB("DWzAHSX9KW8", sceLibreSslInit) +STUB("DX1JP95j3Gg", sceFiosOpReschedule) +STUB("DX6WEfxBWNM", _ZN3sce7Toolkit2NP2V210Tournament5EventC2ERKS4_) +STUB("DX8eYOK5CZQ", usearch_close_67) +STUB( + "DXFKfaLaBHo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEmmEi) +STUB("DXJAxIde0V0", _ZN7WebCore28BackingStoreBackendCairoImplD0Ev) +STUB("DXO5KLWzySM", _ZN3JSC2VM18int8ArraySpaceSlowEv) +STUB("DXQ-iiRMN4g", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEE11get_deleterEv) +STUB( + "DXWRiRBZlJU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "DXbNX-FXWl4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEneERKS9_) +STUB("DXcZsaBCf9E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEaSERKS9_) +STUB("DXdvy5xNlE4", _ZN7WebCore11MediaPlayer21setShouldDisableSleepEb) +STUB( + "DXiQOXLshvg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE21intrusive_ptr_add_refEPS9_) +STUB("DXigwIBTjWE", sceNpTusGetFriendsDataStatus) +STUB("DXk-FP-Qw7Y", _ZN3JSC2VM19uint8ArraySpaceSlowEv) +STUB("DXlC3IrK2Ts", _ZN3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponse9getBlocksEv) +STUB("DXlobplVYj0", sceVideodec2InitLibrary) +STUB( + "DXluNItmW8U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEaSERS7_) +STUB("DXmgc5op8Yw", sceAmprMeasureCommandSizeReadFileGatherScatter) +STUB("DXnCHRSEEE0", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEEptEv) +STUB("DXnu4p828lM", mono_metadata_decode_row) +STUB( + "DXoZaroe2Tk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEEaSERKSA_) +STUB("DXqOIg6G+L4", _ZN7WebCore9FrameView20removeScrollableAreaEPNS_14ScrollableAreaE) +STUB("DXrpKIcAdv4", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEEppEi) +STUB("DXvKtIXioPY", WKDatabaseManagerGetDatabaseDetailsDisplayNameKey) +STUB("DXxrgqkQ8ac", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE3endEv) +STUB( + "DXz6wGd0phs", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSession12setsessionIdEPKc) +STUB( + "DXzCnHAbgjI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "DY035VcSgDs", + _ZN3sce2Np9CppWebApi14SessionManager2V119NonPsnLeaderFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_12NonPsnLeaderEEE) +STUB("DY7yTh8tqiI", _ZN7WebCore14MicrotaskQueueD1Ev) +STUB( + "DY8MiYDUBJE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEppEv) +STUB("DYAC6JUeZvM", sceGnmSqttGetTraceWptr) +STUB( + "DYFaGNHXDBU", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayerC1Ev) +STUB( + "DYIA3NdSPHo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEEdeEv) +STUB( + "DYMybKpzOG0", + _ZN3sce2Np9CppWebApi11UserProfile2V131GetPublicProfileResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_24GetPublicProfileResponseEEE) +STUB("DYSZsQOCF4Y", mono_aot_Sce_Vsh_Sl2_NativeQueueClientunbox_trampoline_addresses) +STUB("DYamMikEv2M", _Wctrans) +STUB("DYbCnv1ns8U", posix_name) +STUB("DYbLD-s1oiQ", FTC_Manager_New) +STUB("DYcMsG69kBo", _ZNK3WTF10StringView16GraphemeClusters8IteratoreqERKS2_) +STUB("DYdXC4Ixa4s", sceFaceDetectionGetWorkingMemorySize) +STUB("DYhhWbJSeRg", sceVideoOutColorSettingsSetGamma_) +STUB( + "DYiVeZF5HkU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEeqERKS9_) +STUB("DYiuLw4hOAs", _ZN3sce7Toolkit2NP28GameCustomDataUseFlagRequestC2Ev) +STUB("DYivN1nO-JQ", getcwd) +STUB("DYjXSQpmafc", _ZN3sce3Xml3Dom8Document16setAttributeListENS1_6NodeIdEPKNS0_13AttributeListE) +STUB("DYmV8jYoonY", _ZN7WebCore11MathMLNames11mencloseTagE) +STUB("DYn-3XJV-VE", _Z38sceGpuDebuggerSetEnabledExceptionsMaskPN3sce3Gnm16VsStageRegistersEj) +STUB("DYn6EjpB5-A", + _ZN7WebCore21JSCSSStyleDeclaration22visitOutputConstraintsEPN3JSC6JSCellERNS1_11SlotVisitorE) +STUB( + "DYowyhV3gYo", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V19RatingApi21ParameterToPostRating10initializeEPNS1_6Common10LibContextENS6_12IntrusivePtrINS3_6RatingEEE) +STUB("DYsGuyxpPUE", _ZN3JSC15ArrayBufferViewD1Ev) +STUB("DYyn+5XPlT0", _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEEC1Ev) +STUB( + "DZ0AL6QT9Pw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEE7get_refEv) +STUB("DZ4+wcCVZCY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEEC2Ev) +STUB( + "DZ5OsNOsHpk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEE7add_refEv) +STUB("DZ8Zj-5bC38", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEC1ERS7_) +STUB( + "DZ8bKtOKmsI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEC2Ev) +STUB("DZ9z+onj7Jk", DSA_get0_pqg) +STUB("DZAoScKrRVs", sceMusicCoreServerGetPlayStatus) +STUB("DZBfePfwL4M", utext_openReplaceable) +STUB("DZCr76xhebs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEED2Ev) +STUB( + "DZCwcaJDJao", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("DZF93h86bFk", _ZN9Inspector18InspectorHeapAgentnwEmPv) +STUB("DZHjJ7f77Xw", mono_file_map_size) +STUB("DZId6VHoc1k", ucurr_getRoundingIncrementForUsage) +STUB("DZIjWI34Wg0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEEC1EPS6_) +STUB("DZO+TYEjuHs", internal_realloc) +STUB("DZQSHdxdMb8", sceNpGriefReportWriteGroupMessageFile) +STUB( + "DZTGCw2Bpi4", + _ZN7WebCore14FrameSelection6modifyENS0_11EAlterationENS_18SelectionDirectionENS_15TextGranularityENS_14EUserTriggeredE) +STUB("DZU+K1wozGI", nanf) +STUB( + "DZVm+Cr-uB4", + _ZN3sce7Toolkit2NP2V28Commerce13getCategoriesERKNS3_7Request13GetCategoriesEPNS2_4Core8ResponseINS3_10CategoriesEEE) +STUB("DZWUbu8315k", _ZN3JSC19HeapSnapshotBuilderC2ERNS_12HeapProfilerE) +STUB("DZa4zziRweM", rgctx_fetch_trampoline_mrgctx_29) +STUB( + "DZaCL+NWLBo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB( + "DZf1KcP78ew", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEC2ERS7_) +STUB("DZhZwYkJDCE", _ZTIN10__cxxabiv120__function_type_infoE) +STUB( + "DZka0Ic1ub0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEEaSERKSA_) +STUB( + "DZlu+2I9ZE0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("DZnvMvmrAzs", mono_aot_Sce_Vsh_GriefReportjit_code_end) +STUB("DZvLrOrRi14", sceBackupRestoreUtilBackupData) +STUB("DZzXHBYmlw0", WKURLCopyPath) +STUB("Da0OiEp6X68", _ZN7bmalloc11AllIsoHeaps4headEv) +STUB("Da6x253v+8Q", _ZNK3WTF7SecondsmiENS_8WallTimeE) +STUB("DaAF69v-zdc", _ZN3JSC7Symbols35regExpProtoUnicodeGetterPrivateNameE) +STUB("DaAUUF+1JfU", mono_runtime_run_main) +STUB("DaBdguwimxA", _ZN7WebCore6Path2DD0Ev) +STUB( + "DaDYjRAkrmY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEC2EPS8_) +STUB("DaEhAeokHd8", __tsan_atomic64_load) +STUB( + "DaJiUtrSu1k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEC1Ev) +STUB("DaQ7xqgiGgY", mono_images_cleanup) +STUB("DaQgwFzvJbs", mono_aot_System_Numericsjit_code_start) +STUB("DaYYQBc+SY8", _ZTISt7_MpunctIwE) +STUB("DaYfJlkP-0k", _ZNK7WebCore16TrackPrivateBase2idEv) +STUB( + "DacJqcYretQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEppEv) +STUB("DahGtlwCuaw", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product12getPublisherEv) +STUB( + "DakJL5-DwF0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE8pushBackERKS8_) +STUB("Dal5tHOLXIM", _ZN7WebCore11MediaPlayer15nextMediaEngineEPKNS_18MediaPlayerFactoryE) +STUB("Dalu6YqR7Gw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEE5resetEPS6_) +STUB( + "DanSQ1MxoPU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEEC1ERKSA_) +STUB( + "DazJqrEJ3ww", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEC1EPKS8_) +STUB("DazasauPTPE", _ZNK7WebCore21NetworkStorageSession26getAllStorageAccessEntriesEv) +STUB("Db2K8M0KqP8", _ZNK7WebCore23ScaleTransformOperationeqERKNS_18TransformOperationE) +STUB("Db6G2wnBgp0", sceAudiodReportOutput) +STUB("Db6LgF9YAqs", qonef) +STUB("Db6xmY7At2g", _ZN9JITBridge12waitDoorbellEi) +STUB("Db8ktuueI7E", mono_aot_Sce_PlayStation_PUIjit_got) +STUB("Db8y2+U9MxA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEmmEi) +STUB("Db9BXuiZ4GI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEE7get_refEv) +STUB( + "DbAAhSiebN4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEC2Ev) +STUB("DbEnA+MnVIw", _Towctrans) +STUB( + "DbGqCNPV62Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE5beginEv) +STUB( + "DbHpV51r+w8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("DbKM0BaSfOI", mono_debugger_agent_register_transport) +STUB( + "DbPKXAKkdPA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE21intrusive_ptr_sub_refEPS9_) +STUB("DbPwNqSrU9E", mono_aot_Sce_Vsh_Np_Trophyjit_got) +STUB( + "DbQ6Ah3UJ9Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEEC1ERKS8_) +STUB("DbUZH7fs1Pw", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V15ErrorC2EPNS1_6Common10LibContextE) +STUB( + "DbVilBDidd8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEppEv) +STUB( + "DbY7ydudUUI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE4sizeEv) +STUB( + "DbbH-5gYqeM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEEC2ERS9_) +STUB("Dbbkj6YHWdo", sceCoredumpWriteUserData) +STUB("DbcAZrdDKoc", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4DataEEC1Ev) +STUB("Dbd5BY0QjG0", sceNpLookupNetTerm) +STUB("Dbe23izGT8U", + _ZN7WebCore24GraphicsContextImplCairo13createFactoryERNS_20PlatformContextCairoE) +STUB("DbhfEFLVQO4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEE7get_refEv) +STUB( + "DbkPzqPL0-s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEixEm) +STUB( + "DbniytjLR4E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "DbxzJaUsPVU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEppEv) +STUB( + "Dbylzw7+h+4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEaSERS7_) +STUB("DbympYJIrV4", _ZN3JSC22FullGCActivityCallback9deathRateEv) +STUB( + "Dc-AE2PjeVg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB( + "Dc2qitFgjFY", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEiRNS2_10LibContextEPT_m) +STUB("Dc4ZMWmPMl8", _ZNSt22_System_error_categoryD0Ev) +STUB("Dc6914UBMH8", + _ZN3sce2Np9CppWebApi14IdentityMapper2V342PsnWebError_error_validationConstraintInfoD1Ev) +STUB( + "Dc9w6uH2d1k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEED1Ev) +STUB("DcFet+cY8jU", mono_lls_remove) +STUB( + "DcO303praDY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "DcP5vGNGU1o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEEcvbEv) +STUB("DcbaEZDLHeg", _ZN7WebCore9HTMLNames7topAttrE) +STUB("DceITXrEqMI", SpeechSpeak) +STUB( + "Dcih7q8mSWE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEEC2ERKSA_) +STUB( + "DcmIYBiy2a8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEED2Ev) +STUB("DcrJr531A4w", hb_buffer_guess_segment_properties) +STUB("Dcu5h6UKIKE", _ZNK9Inspector19InspectorAuditAgent14hasActiveAuditEv) +STUB( + "Dcw6epsQFX4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEC2EPS6_PNS2_10LibContextE) +STUB("DcyNB8BFugE", _ZN7WebCore19InspectorController14setIsUnderTestEb) +STUB("Dcze1nqtPC8", UI_method_get_writer) +STUB("Dd0BhN-hX5A", _ZN3sce2Np9CppWebApi13InGameCatalog2V517ContentDescriptor8unsetUrlEv) +STUB("Dd9-iAuMyis", sceDtsEncDeleteEncoder) +STUB("DdCXCm0lsD0", mono_aot_System_IO_Compression_FileSystemjit_got) +STUB( + "DdCb69iibGw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEE5resetEPS9_) +STUB("DdD8hWNsUSc", AacsModuleInit) +STUB("DdI943QWaTE", WKPreferencesSetIncrementalRenderingSuppressionTimeout) +STUB("DdJvHNduw2M", sceVideoCoreInterfaceCreateCanvasContext) +STUB("DdRr-+gIzrU", _ZN3WTF8JSONImpl10ObjectBase10setBooleanERKNS_6StringEb) +STUB("DdWuolqEQ+k", mono_gc_reference_queue_add) +STUB("DdXO3SO-EHE", ubidi_isMirrored_67) +STUB("DdkOIlDT5vs", sceMoveSetExtensionPortOutput) +STUB("DdomLktL5+M", sceDepthValidateCurrentCalibrationData) +STUB( + "DdqYemx8ll4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEEcvbEv) +STUB("Ddwk4gLT5j0", sceAgcDriverIsCaptureInProgress) +STUB( + "DdyX55Nn0oc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEC2EPKS8_) +STUB("DdzWPWQi6C0", _ZN3sce2np10JsonObjectC2EP14SceNpAllocator) +STUB( + "DeAT2BPn-4s", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions35setxPSNSESSIONMANAGERNONPSNCALLERIDEPKc) +STUB( + "DeDgYjO4PmE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("DeEm1ZFv74U", _ZN12video_parser13cVideoPathMgv17GetOldMaclistNameEPc) +STUB("DeFsyDHokeY", + _ZNK3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody18maxScoreLimitIsSetEv) +STUB("DeGiG9LjNOo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE5emptyEv) +STUB( + "DeM-5Y5saj0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEE7add_refEv) +STUB( + "DeOYGXQnCyk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEE7add_refEv) +STUB("DeToQFef2dA", _ZN7WebCore9FrameView27positionForRootContentLayerERKNS_10FloatPointES3_ff) +STUB( + "DeVJrTjOUNk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEED1Ev) +STUB("DeWNwNoFO-A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEE7add_refEv) +STUB( + "DeWzzRjlD1E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEEC2EPS8_PNS2_10LibContextE) +STUB("DeZTTtDscBY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEEC1EPKS6_) +STUB( + "DeduXk4fvso", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEEC1ERKSA_) +STUB( + "DedxVUwYeRA", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions30unsetxPsnAcceptPlatformNamePs5Ev) +STUB("Def7PTK8QRM", mono_method_get_flags) +STUB( + "DeiMDddqu0k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("DekmG75HsNQ", _ZN7WebCore6Editor26increaseSelectionListLevelEv) +STUB( + "Dem2rlK8vtk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEC2ERS7_) +STUB("DembpCGx9DU", sceUserServiceGetPbtcSaturdayDuration) +STUB( + "DepuBg8Ixwg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEED1Ev) +STUB("DeqX7jLWt1A", sceDebugGetWaitingListOfUltMutex) +STUB("DeucnsfJpqo", sceAvSettingCallbackFuncsInitForLnc) +STUB("DevDN3kRJnw", _ZN3JSC2VM28callbackConstructorSpaceSlowEv) +STUB( + "DevS6lecFGw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEE7add_refEv) +STUB( + "Df-urkj7z-0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEED2Ev) +STUB("Df1BO64nU-k", _Xtime_diff_to_ts) +STUB( + "Df4iPAY1XbU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEED2Ev) +STUB("Df8IB4AqBsA", _ZN3sce7Toolkit2NP2V29Challenge13ChallengeDataaSERKS4_) +STUB( + "DfBwX81QUqA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEE11release_refEv) +STUB("DfD47ZODK8Y", sceApplicationGetCoredumpState) +STUB("DfF-Hdld5XA", _ZNK7WebCore4Path12elementCountEv) +STUB("DfI1tgRALh4", _ZN7WebCore9HTMLNames9styleAttrE) +STUB("DfPN7DYpgWA", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEEC1Ev) +STUB("DfSCDRA3EjY", sceNpCommerceDialogOpen) +STUB("DfVFFiR2j2M", _ZN22MmsMdCommonFsOperation18CreateBufferOptionC1Ev) +STUB("DfVOIx22EDw", _ZN7WebCore9HTMLNames6xmpTagE) +STUB("DfW2Xv8kTP4", _ZThn8_N6WebKit17ChildProcessProxyD0Ev) +STUB( + "DfX58gQrncM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEmmEv) +STUB("DfZB2uu86Gw", _ZN7WebCore14SQLiteDatabase27turnOnIncrementalAutoVacuumEv) +STUB( + "DfafhdwOwXg", + _ZN7WebCore26PresentationOrderSampleMap43findSampleContainingOrAfterPresentationTimeERKN3WTF9MediaTimeE) +STUB( + "DfbmMawJHys", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE8capacityEv) +STUB("Dfdbc8trvZg", curl_multi_strerror) +STUB("DfiaT0acYUA", _ZN7WebCore12ChromeClient31imageOrMediaDocumentSizeChangedERKNS_7IntSizeE) +STUB("DfivPArhucg", memcmp) +STUB("Dfizi+q0qYE", access_reg) +STUB("DfjV2RV2YtM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEptEv) +STUB( + "Dfkt9itEz+w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEED2Ev) +STUB( + "DfqL3COh2HY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEmmEv) +STUB("Dfuj-HVYmM8", rgctx_fetch_trampoline_rgctx_10) +STUB("Dfwp-U1OfRI", sceFiosArchiveSetDecompressorThreadCount) +STUB("DfzMrc+9P1g", _ZNK3sce2Np9CppWebApi7Matches2V117ResponseMatchTeam9getTeamIdEv) +STUB("Dg05dR7Cut0", _ZN7bmalloc11IsoTLSEntrydlEPv) +STUB( + "Dg0qHAslaTA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "Dg1tvKujqVE", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB("Dg2kbssOe-g", _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRankingC1ERS5_) +STUB( + "Dg5V5PYue44", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEEaSERSA_) +STUB( + "Dg5icfKSd5Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEeqERKS9_) +STUB("Dg6MPQ7C2Vc", _ZN7WebCore17HTMLSelectElement6removeEi) +STUB("Dg8GX+KK7TY", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities13ErrorResponseC2EPNS1_6Common10LibContextE) +STUB( + "Dg8yRSxkpTI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEptEv) +STUB("DgE6sgTBCqU", sceShareFactoryUtilGetLaunchStatus) +STUB("DgEvomXMtAM", sceGnmSysOpen) +STUB( + "DgK2cwVvMos", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEptEv) +STUB("DgOXxr1ZN8A", _ZN7WebCore7Element9outerTextEv) +STUB( + "DgWGK1NIGpY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEEC2ERKSA_) +STUB("DgZmOeBXM+c", sceIduUtilSetMoveMode) +STUB( + "DgdTJRyGEHo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEC2Ev) +STUB("DghzFjzLqaE", _ZTSDi) +STUB( + "DgkUB-PEgC4", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUserD2Ev) +STUB("DgpRToHWN40", sceNpTusGetMultiSlotDataStatusForCrossSave) +STUB( + "Dh47umxKhTs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEeqERKS9_) +STUB("Dh4BmUzUIzI", _ZN12video_parser10cVideoPath13sNetProtocolsE) +STUB( + "Dh4e1oGrOvk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "DhB4pfYPWrs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "DhIYNfXB5Vg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "DhNZblSiClw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB( + "DhOq7Ks23EA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE5beginEv) +STUB( + "DhQ+Ew7e4Pg", + _ZN3sce2Np9CppWebApi14SessionManager2V137ResponsePlayerSessionSpectatorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_30ResponsePlayerSessionSpectatorEEE) +STUB("DhTavziiZ80", sceKeyboardDisconnectDevice) +STUB( + "DhTjWwepv6I", + _ZN3WTF14FileSystemImpl14MappedFileData13mapFileHandleEiNS0_12FileOpenModeENS0_14MappedFileModeE) +STUB( + "DhUc5jPXKfU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEdeEv) +STUB( + "DhXTD5eM7LQ", + _ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_bRSt8ios_baseRNSt5_IosbIiE8_IostateERSbIwS2_SaIwEE) +STUB( + "DhYpda+yUI8", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_9Animation17PlaybackDirectionEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB( + "DhZuVc7Uqjo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEC2ERKS7_) +STUB("Dhd5HNKSiME", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V510AnnotationEEdeEv) +STUB("DheEaRbGppg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEC2ERS7_) +STUB( + "DhlMRns11E8", + _ZN9Inspector24RuntimeBackendDispatcher19disableTypeProfilerElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("DhqqFiBU+6g", sceCameraAudioOpen) +STUB("Dhs9LkoqV8Y", _ZN7WebCore16BlobRegistryImplnwEm) +STUB("DhtKelVAIaA", sceCompositorSetGnmContextCommand) +STUB( + "DhvtjyeDuQY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEED1Ev) +STUB("DhyTyaZbGfQ", _ZNK3JSC6JSCell9getStringEPNS_14JSGlobalObjectE) +STUB("Di05lHWmCLU", sceUserServiceSetGlsCameraChromaKeyLevel) +STUB( + "Di0l6jHiGq8", + _ZN3sce2Np9CppWebApi14SessionManager2V134PostGameSessionsSearchResponseBody17unsetGameSessionsEv) +STUB( + "Di3rBc+FWbQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE8pushBackERKS9_) +STUB("Di4s6zsQIH4", _ZN3sce7Toolkit2NP2V24Core12ResponseBaseC1Ev) +STUB( + "Di7vWgPZYIg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEneERKS9_) +STUB( + "DiACMWzgXvk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEC2Ev) +STUB("DiAiAYviceQ", _ZNK23sceMetadataReaderWriter8Metadata14checkReadFieldEiRS0_S1_) +STUB("DiBmbfiH8J4", curl_easy_setopt) +STUB( + "DiF8sDA9cgc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE5clearEv) +STUB("DiGVep5yB5w", _ZSt13_Execute_onceRSt9once_flagPFiPvS1_PS1_ES1_) +STUB("DiHxx2k5zfM", _ZN3sce2np10JsonObject5ClearEv) +STUB( + "DiIAStC2uBI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEptEv) +STUB("DiJ0KH4GHZo", _ZNSs7replaceEmmRKSsmm) +STUB("DiMNwdYc2Yg", _ZN3WTF20tryFastAlignedMallocEmm) +STUB("DiU7SdKBUsw", _ZN3sce7Toolkit2NP2V210Tournament12EventDetailsaSERKS4_) +STUB("DiUk6-mq--0", sceNpLookupNetInitWithFunctionPointer) +STUB( + "DiZKAJHAkYA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("DicBhsm2iR4", sceNpSessionSignalingGetConnectionFromPeerAddress2) +STUB( + "DidaTUwPH0o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEEC2ERKSA_) +STUB( + "DiiuIGdBFAU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("Dij6Sj04Kwc", YGConfigSetExperimentalFeatureEnabled) +STUB( + "DimSfeukMyY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("Dinob0yMRl8", sceVoicePausePortAll) +STUB( + "Dinz9rnAyzA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUser9terminateEv) +STUB("DirnOdl+1Ts", mono_aot_Sce_Vsh_Sl2_NativeQueueClientunbox_trampolines_end) +STUB("Dit0kQ9-10M", mono_aot_Sce_Vsh_LncUtilWrapperunbox_trampoline_addresses) +STUB("Dj-xKPlfsd8", _ZN3JSC15RegExpPrototype13visitChildrenEPNS_6JSCellERNS_11SlotVisitorE) +STUB("Dj25vyu+NB8", rgctx_fetch_trampoline_mrgctx_43_p) +STUB( + "Dj2WuKEtKsw", + _ZN15AbstractStorage12LocalService18append_storagelistERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) +STUB( + "Dj4D99OR4L8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE10setContextEPNS2_10LibContextE) +STUB( + "DjDSzEsJvXc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEC1EPS8_) +STUB("DjIeXX2OOtM", + _ZN3sce7Toolkit2NP10ParametersC1EPFvRKNS1_5EventEEPvmPNS1_19AllocImplementationE) +STUB( + "DjJC+YcvFl4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "DjL5H7Xhic8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEE11release_refEv) +STUB( + "DjLV+hFQWuQ", + _ZN3sce2Np9CppWebApi14SessionManager2V150GetUsersAccountIdPlayerSessionsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_31JoinedPlayerSessionWithPlatformEEEEEPNS9_INS3_43GetUsersAccountIdPlayerSessionsResponseBodyEEE) +STUB("DjLpZIMEkks", _ZGVNSt14_Error_objectsIiE15_Generic_objectE) +STUB("DjQzK3OnWAE", _ZN7WebCore7JSRange14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB( + "DjRlJ+2iJz0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB("DjWf03qkdoY", _ZNK7WebCore11MediaPlayer17doesHaveAttributeERKN3WTF10AtomStringEPS2_) +STUB("Djc6lP7YppU", _ZNK7WebCore14SecurityOrigin12isolatedCopyEv) +STUB("DjcXlH7kBr0", _ZTVN9Inspector24BrowserBackendDispatcherE) +STUB( + "Djhsz48bUMo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("DjibZOK00TU", sceOpusDecDecodeFloatWithPriority) +STUB( + "DjlVPuUjR70", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEEdeEv) +STUB("DjmYAd8gHII", Java_java_net_PlainDatagramSocketImpl_dataAvailable) +STUB("DjoD4C1cLw0", + _ZN3sce2Np9CppWebApi13InGameCatalog2V520ContainerRatingCount8fromJsonERKNS_4Json5ValueE) +STUB("DjpBvGlaWbQ", scePthreadSemGetvalue) +STUB("DjrwV-4o+wI", mono_property_hash_new) +STUB("Djuj2+1VNL0", sceNpTusGetMultiUserVariableForCrossSaveVUser) +STUB("DjuqqqV08Nk", sceNetCtlSetStunWithPaddingFlagIpcInt) +STUB( + "DjxO2KeXrfc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("Dk+ztXE9tgk", _ZN3NTF3URL5parseEv) +STUB("Dk6FC-TI+7Q", scePthreadAttrSetsolosched) +STUB("DkAGX6EPi+g", _ZN15AbstractStorage12SerializableD1Ev) +STUB( + "DkGWMLAJUB4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEEcvbEv) +STUB("DkN+WBclFps", sceNpPushInit) +STUB("DkNebxmJyVI", sceKernelMsync) +STUB("DkQVriP9PA4", _ZN7WebCore11DisplayList14DrawingContext8recorderEv) +STUB( + "DkUCxaryAfU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE7reserveEi) +STUB( + "DkYfIk955L4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEED2Ev) +STUB( + "DkZPh6p3prA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEE7get_refEv) +STUB("DkbeDmA72zo", __asan_exp_load2) +STUB( + "DkcIL5N9tQU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEEC1Ev) +STUB("Dkk29mw5RF4", _ZN15AbstractStorage13TwitterFolderD0Ev) +STUB("Dkk5NiuWv5M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEEC1ERKS7_) +STUB("DkkJVxRX2g0", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku18setPlusUpsellPriceERKi) +STUB("Dkm5qe8j3XE", sceUsbdGetConfigDescriptor) +STUB("DkoMmMauDtk", mono_aot_Mono_Securityunbox_trampolines_end) +STUB("DkoWPvryJsg", _ZN3NTF8finalizeEv) +STUB("Dkpw9X-HSVA", sceNpAsmGetRelatedGameNpTitleIds) +STUB("Dkpxj1EiWBA", mono_aot_Sce_PlayStation_BclExtensionsplt_end) +STUB("DkvHOe+O9w0", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging25GameDataMessageAttachmentEED2Ev) +STUB( + "DkxbVWwM5YQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE7popBackEv) +STUB("Dl+ugVvEVXY", jpeg_new_colormap) +STUB("Dl1fPoihXYA", mono_aot_ReactNative_Debug_DevSupportunbox_trampolines) +STUB("Dl4hxL59YF4", _ZNSt9_Num_base14max_exponent10E) +STUB( + "DlBfQB6n8wM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEE5resetEPS9_) +STUB("DlCg0QhcgYQ", scePthreadRegisterThreadDeathHook) +STUB("DlDsyX+XsoA", _ZNSt8messagesIwEC2EPKcm) +STUB("DlFczkFKBwM", _ZN3sce7Toolkit2NP2V28Matching7Request10CreateRoom23MIN_SESSION_INDEX_VALUEE) +STUB("DlMXPZR3BeU", _ZThn16_N9Inspector22InspectorDebuggerAgent11didContinueEv) +STUB( + "DlPlanfpAh4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEneERKS9_) +STUB("DlQzS+ULk7c", _ZN3WTF14FileSystemImpl15unmapViewOfFileEPvm) +STUB( + "DlTANVRX3Jc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEppEv) +STUB("DlWmn2ZQuWY", _ZN3sce4Json6Object8iteratorppEv) +STUB( + "DldNIxUypH8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEmmEv) +STUB( + "Dlel4rdoMBQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEplEm) +STUB( + "Dlkc5UVVMFA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEEcvbEv) +STUB( + "DlpSfRDDU40", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE3endEv) +STUB( + "DlprvMM+Wi8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE8copyFromERKS9_) +STUB("Dlri33kcH6o", _ZN15AbstractStorage15HttpTransaction4InitEv) +STUB( + "DlxZC4MGtt4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEE11get_deleterEv) +STUB( + "DlyhG0x+7tI", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V113ErrorResponse8setErrorERKNS1_6Common12IntrusivePtrINS3_5ErrorEEE) +STUB( + "Dm0sKFOv6SI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody8fromJsonERKNS_4Json5ValueE) +STUB("Dm3jatUOhno", mono_btls_x509_store_from_store) +STUB("Dm54r75vnd4", _ZN3JSC11ArrayBuffer13createAdoptedEPKvj) +STUB("Dm8WJjI6Pks", sceNpUniversalDataSystemIntInitialize) +STUB("Dm9kHKVv-GI", glUniform4uiv) +STUB("DmBx8K+jDWw", scePadSetProcessPrivilege) +STUB( + "DmDP0MVi7oE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEC2Ev) +STUB("DmOJ1MfHFrw", _ZNK3WTF13StringBuilder11reifyStringEv) +STUB("DmTIYZfrF1I", _ZN7WebCore7Element16setAttributeNodeERNS_4AttrE) +STUB("DmTq6Y8jYqY", sceBackupRestoreUtilTerminate) +STUB("DmUIy7m0cyE", _WStoxflt) +STUB("Dmi4ny+Mmm0", _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_17ParameterBaseImpl6KeySetEEdeEv) +STUB("Dmj7m0jmEXQ", sceKernelWaitAIO) +STUB("Dmmzn4Z5OTs", _ZN4Manx5Mutex6unlockEv) +STUB("DmsukTbpoyc", _ZN7WebCore8SVGNames7endAttrE) +STUB("DmubjYoCIsE", _ZN3sce7Toolkit2NP2V26Trophy7Request13SetScreenshot18MAX_NUMBER_TARGETSE) +STUB("DmwlYF-Xoq4", Java_sun_awt_GnmUtils_bdjbgGetAddress) +STUB("Dn-DRWi9t54", scePthreadCondattrGetpshared) +STUB("Dn1NY1xs7Zw", glUniform1fv) +STUB( + "Dn2gP0NdzMw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE8capacityEv) +STUB("Dn4hfvMyAFQ", _ZN7WebCore12CSSStyleRule15setSelectorTextERKN3WTF6StringE) +STUB("DnC0qZ9h+Ms", sceLoginMgrServerSetMorpheusAssignEnabledFlag) +STUB( + "DnE2Dk7hU8E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEE5resetEPS8_) +STUB("DnG4HGO0QZo", sceCesUcsProfileInitEucJpX0208Ss2Ss3) +STUB("DnHNoMdjX6s", sceBgftServiceIntPlayGoGetDownloadTaskId) +STUB("DnPUsBAe8oI", sceNpMatching2RegisterLobbyMessageCallback) +STUB("DnQZHQhq8u4", _ZN7WebCore11FontCascadeC1ERKNS_16FontPlatformDataENS_17FontSmoothingModeE) +STUB("DnTRTEPXrpI", _Z38VideoPlayerVcs_GetNetworkStateForDebugi) +STUB("DnXatGyC6cw", _ZN7WebCore14JSVoidCallback6createEPN3JSC8JSObjectEPNS_17JSDOMGlobalObjectE) +STUB( + "DnXsIs9B3Gc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE10setContextEPNS2_10LibContextE) +STUB("DnbNi+2KqNc", _ZN7WebCore11PageOverlayD1Ev) +STUB( + "Do+NBa43Fyg", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEEC1ERKSC_) +STUB( + "Do1IgySygDA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE7popBackEv) +STUB("Do3zPpsXj1o", _seekdir) +STUB("Do8AHEUeLkc", JVM_InitializeSocketLibrary) +STUB( + "DoAriDyGOus", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEEC2ERSA_) +STUB("DoDo59wgsXE", jpeg_fdct_8x4) +STUB("DoEzsqQn7qM", _ZN7WebCore23throwNonFiniteTypeErrorERN3JSC9ExecStateERNS0_10ThrowScopeE) +STUB("DoGS21ugIfI", _ZTIm) +STUB( + "DoHA4yrIaSE", + _ZN3sce2Np9CppWebApi11UserProfile2V121PersonalDetailFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_14PersonalDetailEEE) +STUB("DoKHmUw1yiQ", sceCoredumpAttachUserMemoryFile) +STUB("DoNVOdqBQ9o", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_20NpSessionInformationEEC2Ev) +STUB( + "DoUT7MvPYhA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToSetMultiVariablesByUserD2Ev) +STUB("DoVa5dq8LBk", + _ZN7WebCore13GraphicsLayer15addChildAtIndexEON3WTF3RefIS0_NS1_13DumbPtrTraitsIS0_EEEEi) +STUB("DoZKbw82vJQ", Java_com_sony_bdjstack_system_BDJModule_prepareTitle__II) +STUB("DoZWauG8mu0", sceNpTrophy2GetGroupInfo) +STUB( + "Docpx6UI1F8", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities26GetUsersActivitiesResponse8fromJsonERKNS_4Json5ValueE) +STUB("Dog+g25QYjw", sceVrTracker2RegisterDevice) +STUB("DojSTghs5jU", JSGlobalContextSetDebuggerRunLoopWithCurrentRunLoop) +STUB("Don67tr+Dkc", sceIduUtilDisablePriorityDownloads) +STUB("DoqNy-ZXJw8", MvpHttpHead) +STUB("DovS4nLxaTw", _ZN9Inspector21InspectorRuntimeAgent18enableTypeProfilerERN3WTF6StringE) +STUB( + "DowkuRBDu1c", + _ZN9Inspector24NetworkBackendDispatcher6createERNS_17BackendDispatcherEPNS_31NetworkBackendDispatcherHandlerE) +STUB("Dowlirg4J24", _ZN3JSC7JSArray4pushEPNS_14JSGlobalObjectENS_7JSValueE) +STUB("Doz8ZuI27Xg", mono_aot_Sce_Vsh_VideoRecordingWrapperjit_code_end) +STUB("Dp-CxfvTwyE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEEdeEv) +STUB("Dp64o6lCLkM", WKAXObjectButtonState) +STUB( + "Dp8SMvKMHqk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEEaSERSA_) +STUB( + "Dp9eeFgeibU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEED0Ev) +STUB("DpDnfM6StzA", sceKernelMapTraceMemory) +STUB( + "DpE88uXr-v8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEE7add_refEv) +STUB( + "DpFX8zzj3gQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEmmEv) +STUB("DpHQ8Z9f9SE", _ZN3WTF11Persistence7Decoder14verifyChecksumEv) +STUB( + "DpIbPxnrTSg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEED2Ev) +STUB( + "DpKr+poBojo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEEC1ERKSA_) +STUB("DpQmygHE0Mo", _ZN3sce3Xml3Dom6NodeIdntEv) +STUB( + "DpSItkxcYH4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE8pushBackERKS8_) +STUB( + "DpSib5fPcls", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEC2Ev) +STUB("Dpd4FaSEAkk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEED2Ev) +STUB( + "DpdMFusC6XU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEC1EPKS8_) +STUB("DphIqi0q48w", sceVisionManagerGetLibraryVersion) +STUB("DprI+2xue3U", _ZN3sce7Toolkit2NP2V211SharedMedia14CommonMetadata19MAX_LEN_DESCRIPTIONE) +STUB( + "DpzFaQdStJY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEED1Ev) +STUB("Dq5bk2mU2xw", _ZN3WTF4SHA1C2Ev) +STUB( + "Dq6TO-PRshA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEixEm) +STUB( + "DqANfoOh6-g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEE11release_refEv) +STUB("DqCJOD9uGcg", + _ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse11setOnlineIdERK13SceNpOnlineId) +STUB("DqHwIDc6J4E", _ZN3sce2Np9CppWebApi13InGameCatalog2V53SkuC2EPNS1_6Common10LibContextE) +STUB("DqJyaSqqTng", glUniform1iv) +STUB("DqQRSC-M1zg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEEC1EPS5_PFvS7_EPNS2_10LibContextE) +STUB( + "DqSwHbwC3U4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEC1ERKS7_) +STUB("DqVuY6bqTJ4", _ZN3sce7Toolkit2NP2V210Tournament15TeamVsTeamMatchD1Ev) +STUB( + "DqWlKDF4oCQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("DqY5cDl790s", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setSecondaryAudioLang) +STUB("DqY9Scfgflg", _Z13Image_ConvertijjPi) +STUB("DqaBYUc1zFM", uspoof_getAllowedChars_67) +STUB("DqbT2Bqx3cQ", getDirent) +STUB( + "Dqbv8YjV5qI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEEC2Ev) +STUB("DqgTo4wnmbc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEEC1Ev) +STUB("DqlOyzQxpJs", _ZN3sce7Toolkit2NP2V212ActivityFeed12SharedVideos8deepCopyERKS4_) +STUB( + "DqlU2sfmlp0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "DqnD3S5V0Xs", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEEiRNS2_21DownStreamTransactionIT_EE) +STUB( + "Dqr23wET+gU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEED1Ev) +STUB("Dqr99d9gdWI", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils13NetStateBasicEE12deepCopyFromERS7_) +STUB( + "Dqs8kNGZN8c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE21intrusive_ptr_sub_refEPSA_) +STUB( + "Dr0cvb5GMgU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEE11get_deleterEv) +STUB("Dr2VufJK70A", WKRemoveMockMediaDevice) +STUB("Dr3F3qrSQ2c", FT_Glyph_Copy) +STUB( + "Dr3gK7ZXpMo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEppEi) +STUB("Dr6CbLw-6nc", uregion_getPreferredValues_67) +STUB("DrAnKTUtN4Q", _ZN7WebCore8SVGNames6useTagE) +STUB("DrAv+rMOOtE", _ZN7WebCore7JSRange9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB( + "DrBWhra-pd4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "DrDN2x+Goi4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE3endEv) +STUB("DrDfu7uq6JY", scePlayerSelectionDialogInitialize) +STUB("DrEP3qaThDE", WKPreferencesGetAccelerated2DCanvasEnabled) +STUB( + "DrEXNDO4GM0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEC1EPS8_) +STUB( + "DrEk5KxShDw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEED2Ev) +STUB( + "DrHkhARLWfg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "DrKiCXxAj1k", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUserC2ERS5_) +STUB("DrOgvTqPxuA", _ZN3JSC4Heap26protectedGlobalObjectCountEv) +STUB("DrQSmtwNhUE", mono_btls_x509_revoked_new) +STUB("DrUu8cPrje8", scePadOutputReport) +STUB("DrZuCQDnm3w", sceNetDhcpGetInfoEx) +STUB("DrekXkm+oxg", _ZN3sce2Np9CppWebApi6Common15DefaultResponseC1Ev) +STUB( + "DrlxqRBGWwI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("DrqS2CGRFuI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEE5resetEPS6_) +STUB( + "DrtoIMW0B2s", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE4sizeEv) +STUB("Drupl3SzOhM", unorm2_getNFDInstance) +STUB("Drw-bwULZvA", ScePsmMonoInit) +STUB( + "DrwF7P0EpSU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEC1Ev) +STUB("DrzwGvqQVZc", _ZN7WebCore22EmptyFrameLoaderClientC2Ev) +STUB("Ds+MUxya7Hk", WKContextConfigurationSetPrewarmsProcessesAutomatically) +STUB("Ds-BHoPDTHY", sceRegMgrDrvDataCheckGet) +STUB( + "Ds-gSf8SLVk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEdeEv) +STUB("Ds3V4AkI+J4", _ZNK3WTF8Collator11collateUTF8EPKcS2_) +STUB( + "Ds3jrFDJC98", + _ZN8meta_gen11MsvPromoter7PromoteEP22MsvPromoteInnerContextP20MsvCancelInterface_tP19MsvStorageInterfaceP26MsvPromoteInnerInformation) +STUB("Ds5RbUIjoVM", mono_file_map_close) +STUB("Ds8vsvfq2K4", mono_aot_Sce_Vsh_PartyCommonjit_got) +STUB("Ds94mpE+9Yc", _ZN3sce7Toolkit2NP2V28Matching7Request13GetAttributesD1Ev) +STUB("DsCIAx5UQQk", WKPreferencesGetWebSecurityEnabled) +STUB("DsDvzCfoRpw", _ZN3JSC10Identifier29checkCurrentAtomicStringTableEPNS_2VME) +STUB( + "DsH9uUIjvJA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEED1Ev) +STUB("DsHS59vYKJs", mono_aot_System_Transactionsunbox_trampolines) +STUB("DsKIPXZX4uU", sceProfileCacheGetProfilePicture) +STUB("DsPOTEvSe7M", sceNpWebApiSendMultipartRequest2) +STUB("DsPrCZ82v3g", sceOpusSilkEncEncodeFloat) +STUB("DsQPfdyTiv8", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_17MessageAttachmentEED1Ev) +STUB("DsST7TNsyfo", sceAudioOutExPtGetLastOutputTime) +STUB("DsW+3FTXL0Q", sceUltUlthreadTryJoin) +STUB( + "DsZIdw8bWYU", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser9unsetsortEv) +STUB("DsaOYD2V5H8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEEeqERKS7_) +STUB("DscD1i9HX1w", scePadResetLightBar) +STUB("DsgIGBYVD1o", _ZN7WebCore22throwSequenceTypeErrorERN3JSC9ExecStateERNS0_10ThrowScopeE) +STUB( + "DsgU8BKg8QU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEE11get_deleterEv) +STUB( + "DsjBETa6xGg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEptEv) +STUB("Dslqaj8DqiQ", _ZN3JSC7Symbols31hasOwnLengthPropertyPrivateNameE) +STUB("DsubRB4M1fo", u_vsprintf_u_67) +STUB("DsvJnhblA0I", _ZN3sce2Np9CppWebApi14SessionManager2V115LocalizedString16getLocalizedTextEv) +STUB( + "Dt095towWhY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEE7get_refEv) +STUB( + "Dt0QPX1gsB0", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "Dt1IeN4luzU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEppEi) +STUB("Dt2rEe-d5c0", sceNpAsmTerminate) +STUB( + "Dt3AirSn6Eg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEC2Ev) +STUB( + "Dt40hluGFnE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEEC2ERS9_) +STUB("Dt8AiEKkdL8", _ZN3sce2Np9CppWebApi14SessionManager2V128ResponseGameSessionSpectatorD2Ev) +STUB("Dt9kllUFXS0", _ZdlPvSt11align_val_tRKSt9nothrow_t) +STUB( + "DtD0NxEVgOk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE8capacityEv) +STUB("DtF2vxvSHjw", + _ZN3WTF8JSONImpl5Value9parseJSONERKNS_6StringERNS_6RefPtrIS1_NS_13DumbPtrTraitsIS1_EEEE) +STUB("DtFST5B5GKo", _ZTVN7WebCore15XPathNSResolverE) +STUB("DtHSk0ZL2Q8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE7popBackEv) +STUB( + "DtHSyqLe9RM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "DtHnWZafiiA", + _ZN3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinition19unsetnpServiceLabelEv) +STUB("DtKdjqIP18U", wpe_pasteboard_string_initialize) +STUB("DtUG7-AGqcI", + _ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForReadD2Ev) +STUB("DtaYZKLnIKI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEE7get_refEv) +STUB("DtdiNU9AStc", + _ZN7WebCore15StringTruncator14centerTruncateERKN3WTF6StringEfRKNS_11FontCascadeE) +STUB( + "Dti--CP0qGg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEppEv) +STUB("DtiIzLvqg1s", _ZN3sce7Toolkit2NP2V28Matching7Request8JoinRoom23MAX_SESSION_INDEX_VALUEE) +STUB( + "DttnxfCcGPU", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_6Target10TargetInfo4TypeEEEN3WTF8OptionalIT_EERKNS6_6StringE) +STUB("DtvB12rj81E", sceSdecQueryMemorySw2) +STUB( + "DtwAECfqj1w", + _ZN9Inspector20InspectorTargetAgent27didCreateFrontendAndBackendEPNS_14FrontendRouterEPNS_17BackendDispatcherE) +STUB("Dtwj0uYHras", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetBoolean6Ev) +STUB("Du5Ufj3aug0", mono_aot_System_ServiceModel_Webunbox_trampolines_end) +STUB("DuAovlr-wto", _Z20sceNpIpcGetIpcClientv) +STUB( + "DuKTJB6uG7Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEEaSERSA_) +STUB("DuW5ZqZv-70", _ZNKSt9exception6_RaiseEv) +STUB( + "DudAC0rjZNk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEE11release_refEv) +STUB("DufQZgH5ISc", sceNetCtlApRpCheckCallback) +STUB( + "DureKyAfm04", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEplEm) +STUB("DuslmoqQ+nk", sceNpMutexTryLock) +STUB( + "DutvlYFO68Y", + _ZN15AbstractStorage14TwitterStorage9GetForderERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_6FolderEE) +STUB("Dutyk7ghYas", mono_privileges_set_heap) +STUB("Dv1FqxQxOkw", cairo_surface_reference) +STUB("Dv7LNMyScu4", + _ZN3sce2Np9CppWebApi7Matches2V125CreateMatchRequestFactory7destroyEPNS3_18CreateMatchRequestE) +STUB("DvKkBV1hFE8", WKBundleScriptWorldCopyName) +STUB("DvMouUHstNo", _ZN7WebCore9HTMLNames15placeholderAttrE) +STUB( + "DvQvr9FKAP8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "DvSydbFFPsQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEC2EPS8_) +STUB( + "DvWrG-CSIBA", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi35ParameterToSetGameSessionProperties13isInitializedEv) +STUB( + "DvYN0I6ZMjY", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE11getResponseERS6_) +STUB( + "DvYfjuVcOkY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEEcvbEv) +STUB( + "DvZfgbHQODg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE7reserveEi) +STUB( + "DvZsgagacGI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "DvdhyaYOQR8", + _ZN3sce2Np9CppWebApi12Leaderboards2V129GetRankingResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_22GetRankingResponseBodyEEE) +STUB("DveJcw0aKBk", _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRankingaSERS5_) +STUB("DviyPC-JJ1k", sceShellCoreUtilIncrementVersionNumberOfCameraCalibrationData) +STUB("Dvj-07aJaM4", ubrk_getRuleStatus_67) +STUB("Dvk+xqAqXco", sceNpManagerIntCheckNpState) +STUB("Dvmf1wsD9Ew", _ZNK9Inspector15ScriptCallFrameeqERKS0_) +STUB( + "DvnJjzxbnvc", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi24setGameSessionPropertiesEiRKNS4_35ParameterToSetGameSessionPropertiesERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB( + "Dvnd+0pMTz0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEC2EPS6_PNS2_10LibContextE) +STUB( + "DvpFIqpAnQk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEC1Ev) +STUB( + "DvvyBBSF9zc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEED2Ev) +STUB( + "Dw+vAxY-WYE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEC1EPNS2_10LibContextE) +STUB("Dw3ieb2rMmU", __atomic_fetch_xor_8) +STUB( + "Dw3vKVHJNWo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEEaSERSA_) +STUB("Dw46TyJ7G7c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEEC2EPS6_) +STUB("Dw6bhZUmD4w", _ZN3JSC8Bindings13RuntimeObject4infoEv) +STUB( + "Dw8C3Psfdbw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEptEv) +STUB("DwAvlQGvf1o", sceSaveDataGetSaveDataRootUsbPath) +STUB("DwCrp7rDiTM", _ZN3NTF3URLC2Ev) +STUB( + "DwF+Mw-+i7k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("DwH3gdbYfZo", _ZTISt9bad_alloc) +STUB("DwICrVxerkY", sceAgcAcbRewind) +STUB("DwM+3IR55eo", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V112StatsFactory7destroyEPNS3_5StatsE) +STUB( + "DwP96pQ3JjA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "DwPtrW8egkw", + _ZN8meta_gen11MsvPromoter30setKeyValue_TBLAVC_IconProtectENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB( + "DwUb7VByaeQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEcvbEv) +STUB( + "DwY7bI4VPdQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEEaSERSA_) +STUB( + "DwYPstN7dq0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB("DwcWtj3tSPA", putw) +STUB( + "DwryAQQy7n8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEEdeEv) +STUB("DwuHIlLGW8I", sceRtcFormatRFC3339LocalTime) +STUB("DwvK0kE665A", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V117ResponseMatchTypeEEC1Ev) +STUB("DwwpqTcKG0Q", _ZN3WTF13printInternalERNS_11PrintStreamEN3JSC14TypedArrayModeE) +STUB("DwzCUG7hU78", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEC1Ev) +STUB( + "Dx5bn4QaKEM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEED2Ev) +STUB("DxAQjE-LxrQ", mono_create_specific_trampoline) +STUB( + "DxAyiet7yHg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEE7add_refEv) +STUB("DxGwDArtbAo", _ZNK7WebCore31BasicColorMatrixFilterOperationeqERKNS_15FilterOperationE) +STUB("DxGyV8dtOR8", sceAudioOut2ContextBedWrite) +STUB("DxRki7T2E44", sceLncUtilGetAppStatus) +STUB("DxU4JGh4S2k", sceRemoteplayGetOperationStatus) +STUB("DxUAcjpayC8", _ZNK7WebCore11MediaSample12toJSONStringEv) +STUB("DxUrwaURmnw", WKPageTryClose) +STUB("DxVrjV-GW0M", WKUserContentControllerCreate) +STUB("DxdfhwB4GdM", sceVorbisDecHalfrateP) +STUB("DxgcfMpudms", sceBgftServiceIntUploadStartTask) +STUB("DxiWT3trxeo", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEE5resetEPS5_) +STUB("DxihSZ+xwsM", sceImeBackendConvertForward) +STUB( + "DxjAOsGEdsk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEEaSERKSA_) +STUB("DxjJR-ixiNE", X509_get_subject_name) +STUB("DxmIMUQ-wXY", pthread_attr_getstackaddr) +STUB("DxoEuIeEVdw", _ZN3sce7Toolkit2NP2V29Messaging12Notification18NewGameDataMessageC2Ev) +STUB("Dxr0D8c6ndE", mono_vm_bridge_privileges_start_init) +STUB( + "DxyfpphZzhM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEixEm) +STUB( + "Dy+2XhOLMbg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE5beginEv) +STUB("Dy6dHzIb0WA", _ZN3JSC30waitForAsynchronousDisassemblyEv) +STUB("DyDJcqmMP6g", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_33ActivityFeedSharedScreenshotStoryEEeqERKS4_) +STUB( + "DyJI1ymbjEU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEED2Ev) +STUB("DyK1E41EnIc", p5_2048) +STUB( + "DyLT0Oj45tQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEEC1Ev) +STUB( + "DyTMliCigUU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEE7add_refEv) +STUB( + "DyVXiiGnZ3A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEEC2Ev) +STUB("DyVni9XJD8E", _ZN7WebCore9HTMLNames7metaTagE) +STUB("DyaogVVlO6U", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainerD2Ev) +STUB("DyerRilxWZ4", _ZN15AbstractStorage7Service4LoadENS_11ServiceTypeE) +STUB("Dys3YgSazRQ", _ZN7WebCore12BlobRegistryC2ERKS0_) +STUB("DyzD9dy1J9M", _ZN3WTF17StringPrintStreamD2Ev) +STUB("Dz3fysTfVsM", _ZN3sce7Toolkit2NP2V29Messaging16GameDataMessagesC2Ev) +STUB("Dz5DkAHjSHI", _ZN3JSC9Exception6s_infoE) +STUB( + "Dz7K9m9yb9c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "Dz9ou3Se5j8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("DzE4cVn1yy8", + _ZN7bmalloc29StaticPerProcessStorageTraitsINS_13IsoSharedHeapEE7Storage8s_memoryE) +STUB("DzES9hQF4f4", scePthreadAttrSetschedparam) +STUB( + "DzJDHoZrqkQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEEC2ERKSB_) +STUB("DzJr37Dh7dA", shmget) +STUB("DzNxdec+l5o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEaSERS7_) +STUB("DzRdjkvHsPo", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody14unsetVariablesEv) +STUB("DzSamg10HYg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEC1Ev) +STUB("Dza-PctrwiU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEEC1Ev) +STUB("Dzc3Zl2a1QI", _ZNK3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error9getSourceEv) +STUB( + "DzgCSyOvdSc", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions28hasxPsnAcceptPlatformNamePs5Ev) +STUB("Dzk1tw2Xut8", mono_metadata_decode_table_row_col) +STUB("DzkYNChIvmw", _LEps) +STUB( + "Dzlrc8gXt4w", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEEptEv) +STUB( + "Dzn9VftrelA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB("DzngOUvbK0M", _ZNK7WebCore12ChromeClient24plugInStartLabelSubtitleERKN3WTF6StringE) +STUB("DzqV969jHfY", _ZN7WebCore9HTMLNames18onbeforeunloadAttrE) +STUB("Dzt60obx+MI", + _ZN3sce2Np9CppWebApi13InGameCatalog2V516PublisherFactory7destroyEPNS3_9PublisherE) +STUB("Dzwgw8WFPjk", _ZN3sce2np14JsonStringImplD2Ev) +STUB("DzzQ9IwMZ38", _ZN7WebCore7Element20offsetTopForBindingsEv) +STUB( + "E+2HDjUAhf8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE4sizeEv) +STUB("E+AhHrpXb-8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEED1Ev) +STUB( + "E+CL7dEJ8aA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEeqERKS9_) +STUB( + "E+D6HdjabcU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEC1EPS8_) +STUB( + "E+FkojOsM6o", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE5emptyEv) +STUB("E+JOt9P6e4A", ucal_getAttribute_67) +STUB( + "E+JqszcrUgQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEEC1ERKSA_) +STUB("E+QDh-rbqps", _ZN3sce7Toolkit2NP2V28Commerce12SubContainerC1Ev) +STUB("E+U0VcSwzJM", ures_getNextResource) +STUB("E+VdnU77+7o", _ZN12video_parser5vpcom7_DeleteEPc) +STUB("E+XDyvbaQmo", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15Error14setReferenceIdEPKc) +STUB("E+ZoUOTnyFw", WKPreferencesGetRemotePlaybackEnabled) +STUB("E+azScndM-w", udatpg_openSkeletons_67) +STUB("E+b+c1Idyew", sceHmd2GetFieldOfView) +STUB("E+bNjlNe1DU", _ZN15AbstractStorage14TwitterServiceD2Ev) +STUB("E+dPfjeQLHI", sceHmdReprojectionSetDisplayBuffers) +STUB("E+ePN03olfY", _ZN7WebCore9HTMLNames15tableborderAttrE) +STUB("E+eSIhBFC0s", uspoof_areConfusableUnicodeString_67) +STUB("E+f1n8e8DAw", sceImeDisableController) +STUB( + "E+g-qMvRxlQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEC2EPS8_) +STUB( + "E+kuQ5Xkd2I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEE5resetEPS9_) +STUB( + "E+lI7Bs1zlw", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer9terminateEv) +STUB( + "E+nu9I9vmbA", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeaderaSERS5_) +STUB( + "E+qQqMMMzAI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEED2Ev) +STUB("E+tyo3lp5Lw", pthread_attr_setdetachstate) +STUB( + "E+u0h1scl+Q", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setString10EPKc) +STUB( + "E+u5unTLGG0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEdeEv) +STUB( + "E+uhqptm6xY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEEcvbEv) +STUB( + "E+vKNKl-GnM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB("E+yB0cAX47I", _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities8Activity7getNameEv) +STUB( + "E-1Ekw3ou9I", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEaSERKS9_) +STUB("E-42fQBhQik", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification16NewInGameMessageEEC2Ev) +STUB( + "E-5HFXug-OU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEC2EPNS2_10LibContextE) +STUB("E-7VFfKSoOA", _ZN3sce2Np9CppWebApi7Matches2V17SubtaskD2Ev) +STUB( + "E-7tCtyPtyc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("E-9NJ9dRsuw", _ZN12Mp4RetrieverC1Ev) +STUB( + "E-A4wchCu+U", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEeqERKS9_) +STUB( + "E-ACOSv9jg0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("E-GDXpncS2I", _ZN3sce7Toolkit2NP2V28Commerce7Request13GetCategoriesC1Ev) +STUB( + "E-L2ED4xt0Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE8pushBackERKS8_) +STUB( + "E-Lo23z3CD8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE6resizeEj) +STUB("E-PTtHa3kns", htopqw) +STUB( + "E-VJDI1yuCk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEEC2Ev) +STUB("E-XEmpL9i1A", __atomic_fetch_and_4) +STUB("E-XneJLIAQQ", + _ZN15AbstractStorage15FacebookContent13ParseMetadataEPN23sceMetadataReaderWriter8MetadataES3_) +STUB( + "E-aBMqCDzns", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEEC2ERSA_) +STUB( + "E-c-umKLOIY", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126BandwidthPropertiesFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_26BandwidthDownstreamMetricsEEENS8_INS3_24BandwidthUpstreamMetricsEEEPNS8_INS3_19BandwidthPropertiesEEE) +STUB("E-cRDsvig9k", _ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest9getZoneIdEv) +STUB("E-cWtjS4cfk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEEaSERS9_) +STUB( + "E-jpr0IeEgA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEEC2ERSA_) +STUB("E-mYAG-aa1A", _ZN3sce2npeqERKNS0_8NpCommIdES3_) +STUB( + "E-nzhTkBR4c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "E-rjy-FUu4w", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEneERKS9_) +STUB("E-ub4plThvU", LockProtocolInfoList) +STUB("E0+yxDU5iW8", _ZN3WTF17TextBreakIteratorC1ENS_10StringViewENS0_4ModeERKNS_10AtomStringE) +STUB( + "E06vfPugo3A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE3endEv) +STUB( + "E09+V4dX0u0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEC2EPNS2_10LibContextE) +STUB( + "E09yL0r+WD8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("E0Ah6v3NquI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEEC2Ev) +STUB("E0BLvy57IiQ", sceHmdInternalAnotherScreenSetFadeAndSwitch) +STUB( + "E0CTYxeKBnw", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("E0Gm4nF1y3U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEC1Ev) +STUB("E0H-Rg9JQxQ", _ZN3WTF10StringImpl5adoptEONS_12StringBufferIhEE) +STUB("E0Hrd81t2kU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEptEv) +STUB("E0LGxTnifDc", _ZNK7WebCore16DOMGuardedObject7isEmptyEv) +STUB("E0P0sN-wy+4", sceVrTrackerResetOrientationRelative) +STUB("E0QCvEG2ONQ", _ZN7WebCore27DeviceOrientationClientMockC2Ev) +STUB("E0R5cfrGk7E", _ZNK7WebCore11RenderStyle11fontMetricsEv) +STUB( + "E0XFvM8EReA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEEC2ERSA_) +STUB( + "E0d-uxUlbaY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE21intrusive_ptr_sub_refEPS9_) +STUB("E0dDLsjKKwY", sceFsWsDelete) +STUB("E0e078nnpSc", mono_aot_Newtonsoft_Json_PlayStationjit_code_end) +STUB("E0gQvy1OLVw", _ZN7WebCore9HTMLNames21onanimationcancelAttrE) +STUB("E0jIJ2u2T5k", _ZN3sce7Toolkit2NP2V212EventsClient22EventOfficialBroadCast16MAX_SIZE_CHANNELE) +STUB("E0o0m00RS1E", _ZN7WebCore13NodeTraversal19nextAncestorSiblingERKNS_4NodeE) +STUB("E0pHVD7uJ+E", _ZN7bmalloc15IsoHeapImplBasenwEm) +STUB( + "E0pNK8faRos", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEEC2Ev) +STUB( + "E0ummyZin08", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEixEm) +STUB("E0xK0dvjJAQ", _ZN3WTF8JSONImpl10ObjectBase10setIntegerERKNS_6StringEi) +STUB("E0xbIPkCbAk", mono_aot_Sce_Vsh_ShareGuideScenejit_got) +STUB( + "E0y3fIt1Zqo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEC1EPKS8_) +STUB("E0yB1UHl4VI", ucnv_setFromUCallBack) +STUB( + "E0zNzafhWT8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEC2EPS8_) +STUB("E14mW8pVpoE", _ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE) +STUB("E15mAwfzwXU", _ZN7WebCore12EditingStyleC2EPKNS_19CSSStyleDeclarationE) +STUB( + "E18YrWMMEdk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB( + "E1Co6ZcYoSg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEEC1ERKS9_) +STUB("E1InWDQyueI", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_26EventInformationListDetailEEC1Ev) +STUB("E1KEw5XMGQQ", scePadEnableSpecificDeviceClass) +STUB("E1PpixMc+X0", _ZN3sce7Toolkit2NP2V210Wordfilter16SanitizedCommentC2Ev) +STUB("E1QXDwXQGLU", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession21unsetLeaderPrivilegesEv) +STUB("E1QbfONrBrI", _ZN3sce3Xml3Sax6ParserC2Ev) +STUB("E1SdT+pjijw", _ZN3sce2Np9CppWebApi6Common6VectorIdEixEm) +STUB( + "E1TeIZhG7XA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEED1Ev) +STUB("E1UapwhepfU", _ZN7WebCore8SVGNames6y1AttrE) +STUB( + "E1UoA7LNDfs", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitationsD2Ev) +STUB("E1VALdavf1k", _ZN3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponseD2Ev) +STUB("E1WWXSG7gn0", _ZN3NTF17URLRequestFileJobD2Ev) +STUB("E1WfUIH8KTg", _ZN7WebCore6JSNode9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("E1Wrwd07Lr8", sceNpTrophyDestroyContext) +STUB( + "E1ZduOTa+Ec", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "E1a4-8K2n4s", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE8readDataEPcm) +STUB("E1bP5EuczLQ", _ZN3WTF21charactersToIntStrictEPKhmPbi) +STUB( + "E1gHpZ51p3g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEE11release_refEv) +STUB("E1hUfTHwXWU", mono_event_get_remove_method) +STUB("E1iwBYkG3CM", __fflush) +STUB( + "E1qOnLxAI8Y", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE5emptyEv) +STUB("E1r+f0A6A7Q", _ZN3JSC23MacroAssemblerX86Common16s_bmi1CheckStateE) +STUB("E1ufQIpLUYU", g_array_new) +STUB( + "E1vn4v9KgJk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEE3getEv) +STUB( + "E1wYlDQAuj8", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Runtime13ObjectPreview4TypeEEESt8optionalIT_ERKN3WTF6StringE) +STUB("E1y4qj5Dxas", + _ZN3sce2Np9CppWebApi7Matches2V121ResponseTeamStatisticC2EPNS1_6Common10LibContextE) +STUB( + "E21sSLwnuWk", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectator12setsessionIdEPKc) +STUB("E27swYU5Hlk", _ZN7WebCore11MathMLNames8mrootTagE) +STUB("E27wOOhC3n0", + _ZNK7WebCore10PluginData16supportsMimeTypeERKN3WTF6StringENS0_18AllowedPluginTypesE) +STUB("E29VzZty03U", sceCesRefersUcsProfileCp737) +STUB("E2E+DDLhCRg", cairo_copy_path) +STUB("E2EqJP-v9MY", _ZN3sce7Toolkit2NP2V27Ranking7Request11GetGameDataC1Ev) +STUB( + "E2FqZHxEc5g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE8copyFromERKS9_) +STUB( + "E2ObhF4Skm4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB("E2OcGgi-FPY", sceImeDicDeleteUserDics) +STUB( + "E2Pb+DSyrss", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("E2QFpAcDPq4", _ZN3sce2np7RingBuf16CheckoutForWriteEPm) +STUB("E2QNBolgyow", jpeg_idct_8x4) +STUB("E2QjFehvp2Y", _ZNK3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate10getNatTypeEv) +STUB("E2RDHfE68c8", WKCertificateInfoCreateWithCertficateChain) +STUB("E2TQfgp0rl0", _ZN23sceMetadataReaderWriter8MetadataC1ERKS0_) +STUB( + "E2Tdl-6XaHQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE8copyFromERKS9_) +STUB("E2TkkVyRubQ", _ZN3WTF13StringBuilder16appendCharactersEPKhj) +STUB("E2VXQLu8tOY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEEC1Ev) +STUB("E2YhT7m79kM", _Fetch_xor_seq_cst_1) +STUB("E2Z8R4TU6jM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEE11get_deleterEv) +STUB("E2oigRVGFO4", mono_class_from_generic_parameter) +STUB("E2pRXDTKB68", _ZN7WebCore22EmptyFrameLoaderClientC1ERKS0_) +STUB("E2s4c1-cIEs", _ZN7WebCore30isStatusCodeCacheableByDefaultEi) +STUB( + "E2t7mWzo858", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEC2Ev) +STUB("E2tUZQZ-Ffc", mono_aot_ReactNative_Debug_DevSupportmethod_addresses) +STUB("E2ugyp6n7Fs", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData11getobjectIdEv) +STUB( + "E33cNZvYFv4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEEC2Ev) +STUB( + "E34qE-vlJL0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEC1ERS7_) +STUB("E36Wp0SYd08", _ZN3sce2Np9CppWebApi11Matchmaking2V15CauseD1Ev) +STUB( + "E36oE-G5CNo", + _ZN7WebCore11DisplayList25DrawDotsForDocumentMarkerC2ERKNS_9FloatRectENS_23DocumentMarkerLineStyleE) +STUB("E37hQ-WsRZs", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEEaSERKS6_) +STUB("E38f4hHkSHc", g_hash_table_iter_init) +STUB("E3E-fjz3Tks", il2cpp_stats_dump_to_file) +STUB("E3EyQCv7aNo", bemp2sys_tsfilter_sendmessage) +STUB("E3GYS9emu1w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEC2Ev) +STUB( + "E3JKV+f+Mh0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "E3MBnJpodGI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE5beginEv) +STUB("E3Pu6A6KHWo", g_slist_find_custom) +STUB("E3RYvWbYLgk", gammaf_r) +STUB("E3T8u3pGTv8", DW.ref.__gxx_personality_v0) +STUB("E3Ur-rzcMUg", _ZN7WebCore6Editor13canDHTMLPasteEv) +STUB("E3jJNvpyfDg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE5beginEv) +STUB("E3oH1qsdqCA", sceNetSetDns6InfoToKernel) +STUB("E3pqm309ql4", _ZN7WebCore16HTMLMediaElement11setControlsEb) +STUB("E3r6Cg7w4XM", WKWebsiteDataStoreSetResourceLoadStatisticsEnabled) +STUB( + "E3r6aNEtFjw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("E3rUmom767A", uregex_appendTailUText_67) +STUB("E3vh3HLyXrI", _ZN3WTF8CollatorD2Ev) +STUB("E3wVdWiuD3Q", mono_bitset_clear_all) +STUB("E3yZgI3uyrE", _ZN7WebCore11DisplayList11SetLineJoinD1Ev) +STUB("E4-gy9tn-e4", _ZN7WebCore16ISOSchemeTypeBoxC1Ev) +STUB("E40TBASN9yY", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEEixEm) +STUB( + "E42E93MW9OA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEC1Ev) +STUB("E48THo7J2pI", _ZN3sce2Np9CppWebApi14ConnectAccount2V212PartnerToken14setAccessTokenEPKc) +STUB("E496BdsEjfo", _ZN3JSC12BigIntObject14finishCreationERNS_2VMEPNS_8JSBigIntE) +STUB("E4A0yvypFeA", _ZN7WebCore20TransformationMatrix16applyPerspectiveEd) +STUB("E4BCVfx-YfM", sceNpTusSetDataVUserAsync) +STUB("E4CRRBvtGwU", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE7reserveEi) +STUB("E4I7uCoWbkM", sceShellCoreUtilGetUserFocus) +STUB("E4NUN+buCoI", + _ZN3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallbackC1ERS5_) +STUB("E4SYYdwWV28", _Eps) +STUB("E4TfKCZ60P0", _ZN3JSC12JSLockHolderD2Ev) +STUB( + "E4Yetryik40", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEC1EPS8_) +STUB("E4a-ahM57QQ", sceSslSetVerifyCallback) +STUB( + "E4aiNFtCxp8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEC1Ev) +STUB("E4b78NK7bXs", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy15TrophyPackGroupEE19setCustomReturnCodeEi) +STUB( + "E4chE2uOgZw", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("E4gWXl6V2J0", _ZNSt9_Num_base12max_exponentE) +STUB("E4iOn3dUTKg", _ZN3JSC12HeapAnalyzerD2Ev) +STUB( + "E4kl5irETdg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEEC1EPKS6_) +STUB("E4lrM+EnUjA", CRYPTO_num_locks) +STUB( + "E4mMHoKVG-A", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEneERKS9_) +STUB("E4uoqSdo8ek", _ZN3sce2np10EventQueueD0Ev) +STUB("E4vxp+IU3dg", _ZN7WebCore21DisplayRefreshMonitorD1Ev) +STUB( + "E4wIFGsLEdo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("E4wZaG1zSFc", dirname) +STUB( + "E4yk0kut1MI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE6resizeEj) +STUB( + "E50FRi5Pcs4", + _ZN7WebCore9JSDOMRectC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_7DOMRectENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "E50Y-LL7Q3c", + _ZN7WebCore19JSHTMLSelectElement17defineOwnPropertyEPN3JSC8JSObjectEPNS1_9ExecStateENS1_12PropertyNameERKNS1_18PropertyDescriptorEb) +STUB("E51l7UtV1-A", _ZN3JSC13RuntimeMethod15subspaceForImplERNS_2VME) +STUB( + "E55RE0Dmk1U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("E55qAIHCNcE", mono_aot_Sce_PlayStation_PUIunbox_trampoline_addresses) +STUB( + "E56JgbD4qN4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEC2EPKS8_) +STUB( + "E5D72x8Tvu8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEEC1ERKSA_) +STUB("E5JRO12DLtU", _ZNK7WebCore14ResourceLoader32isAllowedToAskUserForCredentialsEv) +STUB("E5Koh2tNPtY", sceUltGetSemaphoreInfo) +STUB("E5LkpnAY7po", cairo_rectangle) +STUB("E5NdzqEmWuY", _ZNKSt7codecvtIDic9_MbstatetE13do_max_lengthEv) +STUB("E5OsEQbrnvk", WKRectCreate) +STUB("E5Pe45LDRqI", _ZN7WebCore19JSHTMLSelectElement9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("E5R651AJg1s", _ZN3sce7Toolkit2NP2V28Commerce9Container8deepCopyERKS4_) +STUB("E5TfXUcLDCE", _ZN7WebCore11MediaPlayerD0Ev) +STUB("E5YKN7nexAw", _ZN3JSC7Symbols24makeTypeErrorPrivateNameE) +STUB("E5bdqIaXjl0", EVP_CIPHER_block_size) +STUB("E5bewLdZ0JA", _ZN7WebCore17NowPlayingManagernwEm) +STUB("E5cL6Get-QI", WKNotificationManagerGetLocalIDForTesting) +STUB( + "E5feQYEMqzE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEC1Ev) +STUB( + "E5gbbM9wB4U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE5beginEv) +STUB("E5opvIVafTc", SSL_get_ex_data_X509_STORE_CTX_idx) +STUB("E5qSFrM0WtE", _ZNK3WTF6String33stripLeadingAndTrailingCharactersEPFbDsE) +STUB("E5qbM3aFc2s", WKImeEventMake) +STUB("E5rWAm1VaRM", cairo_matrix_multiply) +STUB( + "E5sceUonOQo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE5beginEv) +STUB("E5vrYy2a2TY", mono_aot_System_Netunwind_info) +STUB( + "E6+2PY8XuP0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEE7add_refEv) +STUB("E6+OCIBb5wQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE3endEv) +STUB("E63t2ZgWfpU", sceDeci4hDrfpFtruncate_fuse_fullpath) +STUB("E64IEZ8n7gY", _ZN3sce7Toolkit2NP2V28Commerce9ContainerC2ERKS4_) +STUB("E64hr8yXoXw", _ZNKSt7_MpunctIcE13do_pos_formatEv) +STUB( + "E65Zb0-uuto", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEC2Ev) +STUB("E68XxcheXP0", ucol_open_59) +STUB("E6GYo9uzjds", _ZThn8_N3sce2np10MemoryFile4ReadEPNS0_6HandleEPvmPm) +STUB( + "E6IfiO7EwwM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEC2EPS8_) +STUB( + "E6JYWW4l14E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEmmEv) +STUB("E6K9I5NMc3M", mono_aot_Sce_Vsh_Np_Udsjit_code_end) +STUB( + "E6KNy7P0fng", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEEaSERSA_) +STUB( + "E6MoOyd9Gxk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEED1Ev) +STUB("E6OA1UUy8+4", WKPageSetRubberBandsAtLeft) +STUB( + "E6OOHrzgRKg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEppEi) +STUB( + "E6OYuzahsUI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEC2EPS8_) +STUB( + "E6Rvpf1ZsQM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE6resizeEj) +STUB("E6TRIoaA9Wo", _ZNK7WebCore24RotateTransformOperation5cloneEv) +STUB( + "E6VW9wDt8ag", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_8Debugger16BreakpointAction4TypeEEESt8optionalIT_ERKN3WTF6StringE) +STUB("E6XSG7zCNk8", + _ZN9Inspector24TargetFrontendDispatcher25dispatchMessageFromTargetERKN3WTF6StringES4_) +STUB( + "E6Xc7ASSvFA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEE11get_deleterEv) +STUB("E6Xy0-YpX5k", _ZN3sce7Toolkit2NP2V210Tournament18OneVsOneRankResultC2ERKS4_) +STUB("E6ao34wPw+U", stat) +STUB( + "E6aue+TkaSc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEmmEv) +STUB("E6elORKTdDA", utrie2_openFromSerialized_67) +STUB( + "E6lToi8jbd4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEC1Ev) +STUB( + "E6oGd04BNqQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE3endEv) +STUB("E6pFju6L7DY", _UIx86_64_mi_init) +STUB("E6rzFwsDFwE", sceNpManagerIntAddPlusMemberTypeCallback) +STUB( + "E6xokUoMHsY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEptEv) +STUB( + "E7+bsa1DnLc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEEcvbEv) +STUB( + "E71p+VrrkFg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE8sendDataEPKvm) +STUB("E74tmT4yCzY", _ZN3JSC7Symbols44AsyncGeneratorStateSuspendedYieldPrivateNameE) +STUB( + "E75Hgmyt+Io", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("E75NKjfPoEg", _ZNK3WTF9MediaTime12toJSONObjectEv) +STUB( + "E75oO33FYtg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEC2EPS8_) +STUB("E79Au3w61PM", sceAc3EncEncode) +STUB("E79y-3nLVjM", _ZNK3WTF13DecimalNumber32bufferLengthForStringExponentialEv) +STUB( + "E7ABorgo8J0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEC1ERS7_) +STUB("E7AR4o7Ny7E", sceRtcGetDosTime) +STUB( + "E7BAHMlok4E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEEC1Ev) +STUB("E7Bz0ePVC+E", scePerfTraceSpmEnable) +STUB("E7CmfLfeSuQ", __sys_namedobj_delete) +STUB( + "E7EBcWzUMio", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEC2Ev) +STUB("E7Gp2hJ7lp8", _ZN3sce7Toolkit2NP2V27Ranking17GetGameDataResultC2Ev) +STUB( + "E7IQ24UHDiM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEE7add_refEv) +STUB("E7Iebdxa-8c", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEdeEv) +STUB("E7LV-Vm+w0s", sceEsvmEngineMediaKeySessionClose) +STUB( + "E7UermPZVcw", + _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE7_GetfmtES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tmPKc) +STUB( + "E7V4cx0O8cQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("E7b0fE4ER44", ucln_cleanupOne_67) +STUB( + "E7jA4q9VeLU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE8capacityEv) +STUB( + "E7nYzeVh7nw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEC2EPS8_) +STUB( + "E7rVmU7aaFQ", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB( + "E7uXVatBkHs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEED1Ev) +STUB("E7vt6fOJw3E", ucptrie_internalSmallU8Index_67) +STUB("E7wqN7zhn6Y", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13boolean8IsSetEv) +STUB( + "E7xSoysJA2o", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEdeEv) +STUB( + "E7yDfuyot1c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEC1EPS8_) +STUB( + "E8-vSzyOybA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEED2Ev) +STUB("E8BmtbByVKs", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadDataC1Ev) +STUB("E8C608-pFng", sceVideoOutSysReadCrc) +STUB("E8D8IxDNmjQ", _ZN7WebCore11MathMLNames12mathsizeAttrE) +STUB( + "E8FnGRr21Ig", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V127ConnectionQualityPropertiesC1EPNS1_6Common10LibContextE) +STUB("E8HrmeBTXLA", sceAvControlGetCurrentDeviceId) +STUB("E8OnvxcALi0", + _ZN3JSC11JSWithScope6createERNS_2VMEPNS_14JSGlobalObjectEPNS_7JSScopeEPNS_8JSObjectE) +STUB( + "E8PeVqjnYXg", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "E8UvmmmIIzQ", + _ZN3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform21unsetUsePlayerSessionEv) +STUB( + "E8a+5vdhWx0", + _ZNK3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBody6toJsonERNS_4Json5ValueEb) +STUB("E8b8E4weT70", sceNpIpcClientTest1) +STUB( + "E8d13rolWj8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEmmEv) +STUB("E8dTcvQw3hg", sceNetShowIfconfigWithMemory) +STUB( + "E8dlsOT529s", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "E8eMz43iXn8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "E8fVFe3orEk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("E8mRcgwBtkM", _ZNK7WebCore26IdentityTransformOperation4dumpERN3WTF10TextStreamE) +STUB("E8pE7QZK8y8", _ZN7WebCore6JSNode9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB( + "E8pPjlz943E", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessions10initializeEPNS1_6Common10LibContextENS6_12IntrusivePtrINS3_29PostPlayerSessionsRequestBodyEEE) +STUB( + "E8uGT9JXb20", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEppEv) +STUB("E8vY0z6NxDw", _ZN3sce2Np9CppWebApi7Matches2V15Error10setMessageEPKc) +STUB("E8wCoUEbfzk", wcsncmp) +STUB("E8wh-MWRJF8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEppEv) +STUB("E8xuxFe9JeM", convert_flags) +STUB("E8yuDNYbzl0", _ZN3sce2np15CancelableScopeD0Ev) +STUB("E9+nyb7XDmU", mono_aot_Sce_Vsh_VideoEdit_Wrapperunwind_info) +STUB("E9FdusyklCA", sceSystemServiceActivateHevcStart) +STUB("E9Gqo59+5Ns", _ZN3sce7Toolkit2NP2V212EventsClient12EventDetailsC1ERKS4_) +STUB( + "E9IrMyNjPfA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlotC2Ev) +STUB( + "E9MUEPCByaw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("E9R0IOdsZZw", _ZNK3sce2Np9CppWebApi11UserProfile2V112BasicProfile14accountIdIsSetEv) +STUB("E9WB2QfHQV8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEEC1EPKS6_) +STUB("E9XIciu-5lg", sceClPthreadCondattrDestroy) +STUB( + "E9XwPVi+8i0", + _ZN3JSC11ArrayBuffer15createFromBytesEPKvjON3WTF6RefPtrINS3_10SharedTaskIFvPvEEENS3_13DumbPtrTraitsIS8_EEEE) +STUB("E9ciCg7sxKc", YGAssert) +STUB("E9gqTc-xkNc", mono_init) +STUB("E9lS19wjNII", _ZNK9Inspector22RemoteAutomationTarget4typeEv) +STUB( + "E9pgNcfTj3Q", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeader35setxPSNSESSIONMANAGERNONPSNCALLERIDEPKc) +STUB( + "E9s6gQv0PAU", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot7hassortEv) +STUB("E9scVxt0DNg", sceHmdInternalCreateSharedMemory) +STUB("E9y7-AmuziU", FTA_Remove_Module_pcf) +STUB( + "EA1kmFT62kI", + _ZN3sce2Np9CppWebApi14SessionManager2V140PostGameSessionsTouchResponseBodyFactory7destroyEPNS3_33PostGameSessionsTouchResponseBodyE) +STUB("EA4bmgm02o8", sceKernelSetNeoModeClock) +STUB("EA4e5dxTZcw", tls_term) +STUB("EA7SEI4HaI4", jpeg_fdct_15x15) +STUB("EAFfRWY5oLM", _ZN3WTF12base64EncodeEPKvjNS_18Base64EncodePolicyE) +STUB( + "EAH3DkKHtOg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEE7add_refEv) +STUB( + "EAIg2Gn1-LI", + _ZN9Inspector25DebuggerBackendDispatcher26setPauseForInternalScriptsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "EALGb-bUpCw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("EANWA6BI8I8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEEC1EPNS2_10LibContextE) +STUB( + "EAP4Up8QQOM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEE7add_refEv) +STUB("EAQVV1xK9tI", _ZN3JSC18GCActivityCallbackD2Ev) +STUB("EAQd3NNDqaw", _ZNK3sce2Np9CppWebApi11Matchmaking2V15Cause16referenceIdIsSetEv) +STUB("EARPL-r8jf0", getfsstat) +STUB("EATE6DzEI4Y", _ZN7WebCore9HTMLNames15ondragleaveAttrE) +STUB( + "EAZwR6TkMIY", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE11hasResponseEv) +STUB("EAl7xvi7nXg", sceNetConfigSetDefaultRoute) +STUB("EAoybreRrGU", SSL_getSocketId) +STUB("EApzMa04JDw", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Error10getMessageEv) +STUB("EArItANtOv0", rgctx_fetch_trampoline_mrgctx_13) +STUB( + "EAs6yWxAu9Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE6resizeEj) +STUB("EB-G5sdRW7Q", __asan_report_store_n_noabort) +STUB( + "EBEslkwnKSU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEEC2Ev) +STUB("EBJv7yCl8DQ", SSL_CTX_set_cert_verify_callback) +STUB( + "EBL3hgpbeAI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE5beginEv) +STUB( + "EBNkrir7LHE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("EBOgtWMb7rk", _ZN7WebCore11MediaPlayer7setSizeERKNS_7IntSizeE) +STUB("EBRKLWTYXy4", _ZN15AbstractStorage13TwitterFolder5CloseEv) +STUB("EBUGyYazBQA", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container14setDisplayNameEPKc) +STUB("EBVhFlkjxn4", xmlMalloc) +STUB("EBbqcKB1XRI", mono_get_exception_type_initialization) +STUB( + "EBd-7FZ26AQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEC2Ev) +STUB("EBjE6sitQCI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEEptEv) +STUB( + "EBjFh2V6YIQ", + _ZN7WebCore26PresentationOrderSampleMap43findSampleStartingOnOrAfterPresentationTimeERKN3WTF9MediaTimeE) +STUB("EBkab3s8Jto", _FFpcomp) +STUB("EBl83RFuuPc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEEC1Ev) +STUB("EBluxG-e6IE", _ZN3JSC8JSObject11hasInstanceEPNS_14JSGlobalObjectENS_7JSValueES3_) +STUB("EBtYaOALaJk", ucase_toFullTitle_67) +STUB( + "EBu1uYUCIcw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE21intrusive_ptr_add_refEPS9_) +STUB("EBvpcVMORHY", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V112OnlineStatusEEdeEv) +STUB("EBvr2CZnjVo", FT_Activate_Size) +STUB("EBwahsMLokw", _ZNSt10filesystem5_StatEPKcPNS_5permsE) +STUB( + "EBz6pgp-9a0", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayer10initializeEPNS1_6Common10LibContextEPKcSA_) +STUB( + "EC2cojC1KNc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEC1EPNS2_10LibContextE) +STUB( + "EC37aoQ1yck", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEEC2ERSA_) +STUB( + "EC5etLnjBjk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEC2EPS8_) +STUB("ECCXnWcVm7Y", sceBgftServiceSyncCall) +STUB("ECEzk+K9L2k", sceNpFriendListDialogTerminate) +STUB( + "ECG4AhmFSZk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "ECHBc2VywIw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "ECLIJf93zMY", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "ECLtW7WUv+4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE8pushBackERKS8_) +STUB( + "ECMih-dEFPs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEED2Ev) +STUB("ECOPpUQEch0", malloc_check_memory_bounds) +STUB( + "ECP-k9M+WS4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "ECSkjONQn+s", + _ZN3sce7Toolkit2NP2V29Messaging27getGameDataMessageThumbnailERKNS3_7Request27GetGameDataMessageThumbnailEPNS2_4Core8ResponseINS3_24GameDataMessageThumbnailEEE) +STUB("ECUBXuZdyFQ", mono_aot_Sce_Vsh_VideoServiceWrapperjit_got) +STUB("ECUHmdEfhic", __ashlti3) +STUB( + "ECV9fMbErzI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEmmEi) +STUB("ECcNKhS8wvg", sceAudioOut2LoContextCreate) +STUB("ECh+p-LRG6Y", _Pow) +STUB( + "ECoTDJabeLQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEeqERKS9_) +STUB("ECv+6+YUPCE", _ZN9Inspector22RemoteInspectionTarget30unpauseForInitializedInspectorEv) +STUB( + "ED16d20jrsY", + _ZN3JSC16CompleteSubspace12allocateSlowERNS_2VMEmPNS_17GCDeferralContextENS_21AllocationFailureModeE) +STUB( + "ED3UyRsBdoM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEEC2ERKSA_) +STUB( + "ED7kWHUREwo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("ED9-Fjr8Ta4", sceGnmDrawIndexIndirect) +STUB( + "EDCIO6tB1sE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEneERKS9_) +STUB( + "EDCmHPuRGRU", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEEC2Ev) +STUB("EDFaRzbbhGY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEC2Ev) +STUB("EDHPIv3WKb0", _ZN7WebCore20PasteboardWriterDataD1Ev) +STUB( + "EDJ-vpdlMdY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEC2ERS7_) +STUB( + "EDPqKuYLHGk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB("EDRXPV+A9P0", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEE11get_deleterEv) +STUB("EDUCoiCsU9A", _ZN7WebCore6DOMURLC1EONS_3URLES2_) +STUB( + "EDUEkqfdTsM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToSetMultiVariablesByUserC2Ev) +STUB("EDUsQljbrpw", _ZN3sce7Toolkit2NP2V23TUS7TusData8deepCopyERKS4_) +STUB("EDdShKgRXAM", WTFReportNotImplementedYet) +STUB("EDhysPfQWXE", _ZTVN9Inspector28DOMDebuggerBackendDispatcherE) +STUB("EDjOOOMkukI", _ZN12video_parser7cVpUtil13vp_ff4_fcloseEPv) +STUB( + "EDjrET0aJsg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEppEv) +STUB( + "EDnTqvlibXQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEEC2ERSA_) +STUB("EDq5bqCqYpA", sceAmprAmmCommandBufferConstructor) +STUB("EDr5p3jshJ0", mono_runtime_resource_set_callback) +STUB("EDu2h6y8Zec", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEE7get_refEv) +STUB("EDvkw0WaiOw", __unorddf2) +STUB("EDw-LQKe3fE", _ZNK15AbstractStorage14YoutubeContent13GetCapabilityEv) +STUB("EDyhWelj7UY", pause) +STUB( + "EE01NBx3ZL0", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot17hasnpServiceLabelEv) +STUB( + "EEEB2GzYDyA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("EEEKGMwP7eU", _ZN7WebCore8SVGNames18horiz_origin_xAttrE) +STUB("EEK5W51EhhM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEED2Ev) +STUB( + "EEM14Kf-QfY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEE3getEv) +STUB("EEQUMMIXylA", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13boolean4IsSetEv) +STUB( + "EEUBxvVSYaE", + _ZN3JSC12RegExpObject14deletePropertyEPNS_6JSCellEPNS_14JSGlobalObjectENS_12PropertyNameERNS_18DeletePropertySlotE) +STUB("EEVcPWQ8F4U", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13WhoLikedStoryEEeqERKS4_) +STUB( + "EEWCZq+Szgo", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("EEXgOrxJ1go", WKPageGetEstimatedProgress) +STUB("EEZp-BTCzhQ", monoeg_g_print) +STUB("EEemGEQCjO8", sceNgs2ModuleArrayEnumItems) +STUB("EEetcHg6meQ", rgctx_fetch_trampoline_mrgctx_41_p) +STUB("EEexH-CS5gM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEE5resetEPS6_) +STUB( + "EEfcF1O2K64", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEppEv) +STUB("EEkGXyPcT6E", sceMusicCoreServerTriggerEvent) +STUB( + "EEm2h5hSnP4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEmmEi) +STUB("EEvugJCBmb8", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth7IdTokenEED1Ev) +STUB( + "EEx55k0zSLo", + _ZN15AbstractStorage13YoutubeFolder9NewFolderERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_6FolderEE) +STUB("EEyf7-Ls31Q", _ZN3JSC8Debugger18willEvaluateScriptEv) +STUB("EF-b2FTd0IQ", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE5beginEv) +STUB("EF1lpApBn4s", sceMusicPlayerServiceRemoveTrackList) +STUB( + "EF41KjvK7Kw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "EF5pTt-m79k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEE5resetEPS8_) +STUB("EF8AgCSu+40", _ZNK3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap6toJsonERNS_4Json5ValueEb) +STUB( + "EF8qr8s9CiE", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_20NpSessionInformationENS1_15AppSTLAllocatorIS5_EEEEC1Ev) +STUB( + "EF9g0KlseMM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEEC1Ev) +STUB( + "EFDb5mXqjDs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE8copyFromERKS9_) +STUB("EFDd0QoYyP4", _ZN3WTF3URL8setQueryENS_10StringViewE) +STUB("EFES6UR65oU", _ZN3sce2npgtERKNS0_4TimeES3_) +STUB("EFI2iRR6Ei0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEC2ERS7_) +STUB("EFI5pH2RkeE", _ZN4Manx11MediaPlayer8setMutedEb) +STUB( + "EFNwjt-0Sd4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEeqERKS9_) +STUB("EFPddKZhjgw", sceDebugReadThreadRegisterForSDBGP) +STUB( + "EFUe8u8HuPY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEeqERKS9_) +STUB("EFaZwhyRrlg", + _ZN8meta_gen11MsvPromoter18setTextMsvMetadataENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB("EFffsPLsOio", _ZN3sce2np9Semaphore4OpenEPKc) +STUB("EFhM9SF2aSQ", sceShellCoreUtilReleaseBgmCpuBudget) +STUB( + "EFj1T2cLpto", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEEC2ERSA_) +STUB( + "EFlL7Ps6qq0", + _ZN3JSC8JSObject3putEPNS_6JSCellEPNS_14JSGlobalObjectENS_12PropertyNameENS_7JSValueERNS_15PutPropertySlotE) +STUB("EFst4N6vJhU", __asan_report_exp_store16_noabort) +STUB("EFuI+GMAoxQ", Java_java_net_PlainDatagramSocketImpl_getTimeToLive) +STUB("EFwM7xQGq4Y", _ZN12video_parser10cVideoPath10GetDirNameEv) +STUB( + "EFyCD7ipktA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEixEm) +STUB( + "EG4+HoJ-hmk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB( + "EG4FUVe2qYo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEC2ERS7_) +STUB( + "EG7+Bl6j+oc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE5eraseENS2_8IteratorIS6_EERS9_) +STUB( + "EG8zvTG2cUg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB( + "EGHrVBULTRc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEneERKS9_) +STUB("EGIQzGNJtNo", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariableC2Ev) +STUB( + "EGK9DI9AGpQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE4sizeEv) +STUB( + "EGKjLdBzG3s", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("EGOi+1ZjWFc", _ZN3sce7Toolkit2NP2V27Session7Request4Join15LOWEST_PRIORITYE) +STUB( + "EGS8dOsI+5Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("EGTDbDBMptw", _ZN3JSC7JSProxy6s_infoE) +STUB("EGTj1EB5ypU", _ZN7WebCore9PageGroup25captionPreferencesChangedEv) +STUB("EGYOvxUaGFY", mono_aot_Sce_Vsh_Sl2_Sl2Deliverunwind_info) +STUB("EGYpmwU7ra4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEptEv) +STUB( + "EGaiKGECnFY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEC2Ev) +STUB("EGe2DmiW87Y", + _ZN3sce7Toolkit2NP2V212NetworkUtils12Notification14NetStateChange8deepCopyERKS5_) +STUB( + "EGf4E-WuBvU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEEC1ERKSC_) +STUB( + "EGns-j-rL7o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEppEv) +STUB("EGqfikjTwy8", _ZTVN7Nicosia16SceneIntegration6ClientE) +STUB("EGt+sFM8+WI", sceSpNetEpollDestroy) +STUB( + "EGyD+ga65Pw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEneERKS9_) +STUB( + "EGzDx4gj+zw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEixEm) +STUB("EH-x713A99c", atan2f) +STUB("EH3+U0AEHcM", __tls_align) +STUB("EH7KVt4Dfmw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEcvbEv) +STUB("EH9Au2RlSrE", sceRazorCpuGpuMarkerSync) +STUB("EHAyVTr-m5g", _ZN3sce2np6Object12GetAllocatorEv) +STUB("EHNuKCjrx78", sdb_breakpoint_trampoline_p) +STUB( + "EHOlA2B4Vjs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE6resizeEj) +STUB("EHOrrCFvbgo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEED2Ev) +STUB("EHQEDVXZ0TI", sceNpTrophy2ShowTrophyList) +STUB("EHW+8T2LfP4", sceCesRefersUcsProfileJisX0201Tilde0x7e) +STUB( + "EHY2813FNEo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEE5resetEPS9_) +STUB("EHijR05BARc", Java_sun_awt_GnmUtils_bdjbgAlloc) +STUB("EHozWIUdRnw", _ZN3JSC7Symbols29toLocaleDateStringPrivateNameE) +STUB("EHrIzxIpb+c", sceKernelGetCoredumpAppInfo) +STUB("EHrOTTgMxXo", _ZN7WebCore14LoaderStrategyD0Ev) +STUB("EHsF2i9FXPM", sceLibcInternalBacktraceForGame) +STUB("EHxdFvoxzCM", _ZN2GK9PlayerPSNaSERKS0_) +STUB("EI-5-jlq2dE", scePthreadGetthreadid) +STUB("EI1P-Nb8dQA", _ZN3sce7Toolkit2NP9Utilities10FutureImplD1Ev) +STUB("EI4qqK4jAck", _ZN3sce2Np9CppWebApi6Common8IteratorIfEC1Ev) +STUB("EI7UwdLMv6I", _ZN7WebCore12SharedBuffer24createWithContentsOfFileERKN3WTF6StringE) +STUB( + "EIAjd93jVcg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB("EIC7WX3qreg", mono_aot_System_Threading_Tasksunwind_info) +STUB( + "EICAJwUu-2g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEC2EPNS2_10LibContextE) +STUB("EICqo7yiqa4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEEmmEv) +STUB("EID1OUoD76g", _ZN7WebCore19ResourceRequestBase20clearHTTPContentTypeEv) +STUB("EIDDGRdPyI8", _ZN7WebCore9HTMLNames15aria_flowtoAttrE) +STUB( + "EIHpnU9SEKQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEEptEv) +STUB("EIK1tqMar6U", YGNodeLayoutGetWidth) +STUB( + "EIKwAopGAgI", + _ZN7WebCore24CoordinatedGraphicsLayer20setReplicatedByLayerEON3WTF6RefPtrINS_13GraphicsLayerENS1_13DumbPtrTraitsIS3_EEEE) +STUB( + "EIO2HsR8K2o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEED2Ev) +STUB( + "EIR5xBu8rzM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE21intrusive_ptr_sub_refEPS9_) +STUB("EIZbVQs381s", sysKernelGetIntdevModeForRcmgr) +STUB("EIZdWTT7Zdw", sceAvSettingInit) +STUB("EIc0PIXVccE", scePerfPmcStop) +STUB("EIcEU-ngPo0", _ZN7WebCore9HTMLNames12downloadAttrE) +STUB("EIdtyyQIVFE", _ZNK7WebCore11MediaPlayer13movieLoadTypeEv) +STUB("EIi9Vz5HzK0", cpp_demangle_read_tmpl_param) +STUB("EIidYZvvsv4", mono_vm_bridge_privileges_finish_init) +STUB( + "EIj2P0hRVx8", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V226WebApiErrorResponseFactory7destroyEPNS3_19WebApiErrorResponseE) +STUB("EIjrkvleaPE", _ZN7WebCore7Element16getAttributeNodeERKN3WTF10AtomStringE) +STUB("EIr1K8rUHqw", + _ZN7WebCore20LegacySchemeRegistry34registerURLSchemeAsDisplayIsolatedERKN3WTF6StringE) +STUB("EItmXRLen7w", cairo_get_matrix) +STUB("EIwS9+aPG60", _ZN7WebCore8SVGNames10cursorAttrE) +STUB("EIwwRbyxZTM", _ZN3WTF6String24numberToStringFixedWidthEdj) +STUB( + "EJ7M3NN0m3A", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB("EJ96SfoZh2g", _ZN3JSC10JSFunctionC1ERNS_2VMEPNS_14JSGlobalObjectEPNS_9StructureE) +STUB( + "EJAOHYWUki4", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer15setserviceLabelEi) +STUB( + "EJJiV41CZgA", + _ZN7WebCore22EmptyFrameLoaderClient38dispatchDecidePolicyForNewWindowActionERKNS_16NavigationActionERKNS_15ResourceRequestEPNS_9FormStateERKN3WTF6StringENS_21PolicyCheckIdentifierEONS9_8FunctionIFvNS_12PolicyActionESD_EEE) +STUB( + "EJNpsvWfnwo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE21intrusive_ptr_sub_refEPS9_) +STUB("EJQifjOp8s4", sceVideoOutRegisterBufferAttribute) +STUB("EJZBym9sZQ0", mspace_malloc_usable_size) +STUB("EJapNl2+pgU", sceGnmComputeWaitSemaphore) +STUB("EJbXsBT7uts", _ZNK7WebCore4Page27pageExtendedBackgroundColorEv) +STUB( + "EJdDHnlzfto", + _ZN9Inspector15ScriptArgumentsC2ERN3JSC9ExecStateEON3WTF6VectorINS1_6StrongINS1_7UnknownEEELm0ENS4_15CrashOnOverflowELm16EEE) +STUB("EJj2svCikG8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlotC2Ev) +STUB( + "EJkx0ZtLtm4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("EJl0Y6keGco", _ZN7WebCore19HTMLTextAreaElement7setColsEj) +STUB("EJv3Qy88Ywo", + _ZNK3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayer6toJsonERNS_4Json5ValueEb) +STUB("EJwPtSSZykY", sceHmdInternalMirroringModeSetAspectDebug) +STUB("EK65hayLg9g", mono_aot_Sce_Vsh_Np_AuCheckjit_code_end) +STUB( + "EKEet-dNWPI", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayerC2Ev) +STUB("EKF3k5QZG2Y", mono_btls_x509_name_get_entry_count) +STUB("EKNxZyDECME", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEEC1ERS7_) +STUB("EKRJc7kHLIg", _ZN3sce7Toolkit2NP2V23TUS7Request12GetVariables23MAX_VARIABLE_REAL_SLOTSE) +STUB( + "EKRMmXMHBrs", + _ZN7WebCore23atBoundaryOfGranularityERKNS_15VisiblePositionENS_15TextGranularityENS_18SelectionDirectionE) +STUB( + "EKRu5EFU6j0", + _ZN7WebCore9FrameView17setScrollPositionERKNS_8IntPointENS_14ScrollClampingENS_14AnimatedScrollE) +STUB("EKSIm5bZoqM", + _ZN3sce2Np9CppWebApi7Matches2V127ResponseTeamMemberStatistic8fromJsonERKNS_4Json5ValueE) +STUB("EKW4neZCdQQ", _ZN3JSC16createRangeErrorEPNS_14JSGlobalObjectERKN3WTF6StringE) +STUB("EKi1jx59SP4", sceNpPartyGetMemberVoiceInfo) +STUB("EKn+IFVsz0M", sceHmdInternalGetPuBuildNumber) +STUB("EKpqhA6kdaY", LockCommInfoList) +STUB("EKqHXG0tq2Y", _ZN3sce7Toolkit2NP2V210Tournament4Team8deepCopyERKS4_) +STUB("EKrmdrAHkTk", __rela_plt_end) +STUB( + "EKxCLIS5ZUY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEC2Ev) +STUB( + "EKzzN5HSvPs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE7reserveEi) +STUB("EL+4ceAj+UU", _ZNSt14numeric_limitsIDsE6digitsE) +STUB( + "EL2X7TspXVY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEaSERKS9_) +STUB( + "EL8l+0r9UyI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "ELNRHKkyckY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEEC2EPS6_PNS2_10LibContextE) +STUB("ELSr5qm4K1M", __umodti3) +STUB("ELZCcxSXaX8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE3endEv) +STUB("ELa6nMcCO9w", _ZN3sce2np18MemoryStreamReader4ReadEPNS0_6HandleEPvmPm) +STUB("ELcgtmZjgOE", _ZNK3sce7Toolkit2NP15CommunicationId6getSigEv) +STUB( + "ELlADeKmWXE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEptEv) +STUB( + "ELos5KSRl5w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE3endEv) +STUB( + "ELtbccV8rAk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEE5resetEPS9_) +STUB( + "ELudnwBwfEM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("ELvBVG-LKT0", sceSystemGestureRemoveTouchRecognizer) +STUB("ELvH8kXt1FQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEEC1EPS5_PNS2_10LibContextE) +STUB("ELvJ6lRWP6U", mono_aot_I18Njit_code_end) +STUB( + "ELxlNxdGrgo", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("EM+5NoPKGyI", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_playPlayListAtMark) +STUB( + "EM0WKHy9eas", + _ZN7WebCore10ScrollView5paintERNS_15GraphicsContextERKNS_7IntRectENS_6Widget25SecurityOriginPaintPolicyE) +STUB("EM5NLPqpUlc", _ZN3sce3Xml3Dom8Document11removeChildENS1_6NodeIdES3_) +STUB( + "EMCFwXJUSa4", + _ZNK3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody15searchableIsSetEv) +STUB( + "EMHaCcsVNUs", + _ZN3JSC8JSObject19getOwnPropertyNamesEPS0_PNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("EMN1BSF4VWo", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V117ResponseMatchTypeEEppEi) +STUB("EMNG6cHitlQ", _ZTVSt9bad_alloc) +STUB("EMO8fbfieRI", _ZN3WTF11PrintStream5beginEv) +STUB( + "EMQLZz3SQZI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEC1Ev) +STUB("EMSbJA42Ckk", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEEppEi) +STUB("EMXE+zX2if0", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament16RegisteredRosterEE5resetEv) +STUB( + "EMdvpNKqcfg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEC2ERS7_) +STUB("EMiyK-GRjA8", sceFaceAgeGetWorkingMemorySize) +STUB( + "EMmae-ChEYs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEE5resetEPS9_) +STUB("EMutwaQ34Jo", perror) +STUB("EN+jB88lBmc", _ZN3sce7Toolkit2NP2V212EventsClient11EventInGameC1Ev) +STUB( + "EN-BhGq9byk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE5beginEv) +STUB( + "EN0vmg9c0v0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEE11release_refEv) +STUB( + "EN4lo8h3oMc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEE11get_deleterEv) +STUB("ENCQTNg5e+k", _ZN7WebCore21JSCSSStyleDeclarationC1ERKS0_) +STUB("END0rQA7Cr4", mono_bitset_foreach) +STUB("ENFUpkwnFM8", curl_mime_data) +STUB("ENFzwBQibNI", _ZN3JSC10loadModuleEPNS_9ExecStateERKN3WTF6StringENS_7JSValueES6_) +STUB("ENIHay-pf9k", sceMbusDebugAddProcess) +STUB("ENJAm-+uyK8", _ZN3sce2Np9CppWebApi10Activities2V114UserActivities13ErrorResponseD1Ev) +STUB("ENLfKJEZTjE", set_constraint_handler_s) +STUB( + "ENNRNyRzjZY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEptEv) +STUB("ENRvkp+Fcmc", _ZN7WebCore17CSSPrimitiveValue14setStringValueEtRKN3WTF6StringE) +STUB("ENS6KVTAqYw", _ZN9Inspector22InspectorDebuggerAgentnwEm) +STUB("ENeUMXMCCAk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE6resizeEj) +STUB("ENgBTg9H2yI", getProhibitionFlags) +STUB( + "ENi-+3RjOHU", + _ZN7WebCore8JSDOMURLC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_6DOMURLENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "ENi4JMRQNG0", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersC2Ev) +STUB( + "ENiQ3XmICDA", + _ZN3sce2Np9CppWebApi14SessionManager2V167PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyFactory7destroyEPNS3_60PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyE) +STUB("ENicfrCN-iw", vm_send_GenericArrayMethodInfo) +STUB( + "ENpl1eHRevs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEE11get_deleterEv) +STUB( + "ENqjlXUU5Po", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("ENsHmJCNG4Q", hb_buffer_get_glyph_infos) +STUB( + "ENxhiOs68wg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEE11get_deleterEv) +STUB( + "ENyJqNd098k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE7reserveEi) +STUB("ENyRRJ1Z4AI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEED2Ev) +STUB( + "EO+4JNXXins", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEC2EPKS8_) +STUB("EO+sWh4e9Rc", + _ZN3sce2Np9CppWebApi11UserProfile2V125GetBasicPresencesResponseC1EPNS1_6Common10LibContextE) +STUB( + "EO0Ql1nuEHw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEE5resetEPS9_) +STUB( + "EO5a8pI9Yvs", + _ZN3sce2Np9CppWebApi14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBody25setJoinableSpecifiedUsersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_12JoinableUserEEEEE) +STUB("EO7L0IQDZlE", _ZN7WebCore18PlatformTimeRangesnwEm10NotNullTagPv) +STUB( + "EO98AmENOAM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEC2EPKS8_) +STUB( + "EOKBl05t-hk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEC1Ev) +STUB("EOLQfNZ9HpE", c16rtomb) +STUB("EOPQJP9a46I", _ZN7WebCore9HTMLNames8wrapAttrE) +STUB("EOQ4DcUDYQM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEEC2ERKS7_) +STUB( + "EOXnwnyStDc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "EOZ0nHTsamo", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEED1Ev) +STUB("EObieXObKfo", _ZNK3sce2Np9CppWebApi7Matches2V120ReportResultsRequest20matchStatisticsIsSetEv) +STUB( + "EOjZYswcI3c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEE11release_refEv) +STUB( + "EOkT1Yc0LUo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEEcvbEv) +STUB("EOmLhk6TiW4", _ZN3WTF17StringPrintStreamD1Ev) +STUB( + "EP-exEeG1mQ", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V331ValidationConstraintInfoFactory6createEPNS1_6Common10LibContextEPKcS9_PNS5_12IntrusivePtrINS3_24ValidationConstraintInfoEEE) +STUB("EP0qJoDMhBg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE4sizeEv) +STUB("EPEUMPT+9XI", _ZN3sce2np3ipc14service_client12AbortRequestEii) +STUB("EPJbX73AVeU", _ZN3sce2np8NpCommIdD1Ev) +STUB( + "EPOIKTShhpc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEE7get_refEv) +STUB("EPOjdTmnrXg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEmmEv) +STUB("EPR7hdZNKKE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEEC2ERS6_) +STUB( + "EPSZnEudIso", + _ZN7WebCore22StorageEventDispatcher28dispatchSessionStorageEventsERKN3WTF6StringES4_S4_RKNS_18SecurityOriginDataEPNS_5FrameE) +STUB("EPWLUouFmGE", _ZN12video_parser5vpcom8datetime8DateTime13GetDateFormatEv) +STUB( + "EPWhpjsKrI0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEE5resetEPS9_) +STUB("EPYD+gZwF3k", vm_send_FreeDomain) +STUB("EPbP6zJBbsk", jvmciHotSpotVMAddresses) +STUB("EPcNonui1w0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEEC2EPS5_PFvS7_EPNS2_10LibContextE) +STUB("EPdBkepv-2k", _ZN9Inspector27InspectorFrontendDispatchernwEmPv) +STUB("EPeq43CQKxY", sceNpTusAddAndGetVariableForCrossSave) +STUB("EPo1N7nzMxE", _ZThn8_N3sce2np13JsonDocParser10onEndArrayEjj) +STUB( + "EPqORvvwOk0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEE11release_refEv) +STUB("EPt1H8iIaj8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE8copyFromERKS7_) +STUB( + "EPxd1L5tock", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEEdeEv) +STUB( + "EPzYWmAKBJ0", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionPropertiesD1Ev) +STUB( + "EQ-FJJ4HbQw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEcvbEv) +STUB("EQ-IYluwKvQ", mono_mlist_set_data) +STUB("EQ-yMC-j9YA", uhash_find) +STUB("EQ2lA6ZqWQ8", _ZNK15AbstractStorage15FacebookContent7GetStatEPNS_4StatE) +STUB("EQ6SCLMqzkM", sceUsbdFreeDeviceList) +STUB("EQ6qo4aHH90", _Z38sceGpuDebuggerGetEnabledExceptionsMaskPKN3sce3Gnm16EsStageRegistersEPj) +STUB( + "EQ9y9FY5W0Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEC2EPKS6_) +STUB("EQBEkO3VExA", Java_com_sony_gemstack_resources_ResourceManager_initJNI) +STUB("EQBusz6Uhp8", sceImeVshInformConfirmdString2) +STUB( + "EQHBEbdulgc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEmmEv) +STUB("EQP-RPsXOCA", _ZNK7WebCore14DocumentLoader9isLoadingEv) +STUB("EQV776115vk", _ZN7WebCore9DOMWindow36dispatchAllPendingBeforeUnloadEventsEv) +STUB( + "EQXBwQgLaIQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEC2ERKS7_) +STUB( + "EQZ2Dh6C2lo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "EQbh+dsDtlQ", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitationsC2Ev) +STUB( + "EQkmCZo5emY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEeqERKS9_) +STUB("EQs8VVpTWI8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEppEv) +STUB( + "EQs8ndAM2ig", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEppEi) +STUB("EQtFad2c1T8", sceVideodec2QueryDecoderInfo) +STUB("EQwcrNbG49U", JVM_GetClassNameUTF) +STUB( + "EQzwbAGvjqA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEEC1ERSA_) +STUB("ER2ar8yUmbk", sceHmdDistortionGetCompoundEyeCorrectionCommand) +STUB("ER8-AFoFDfM", _ZTSPKm) +STUB( + "ERDZidsto-o", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13boolean1IsSetEv) +STUB("ERG90hCSW5I", WKBundleResetApplicationCacheOriginQuota) +STUB( + "ERHJF1bea8E", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEdeEv) +STUB("ERJyBJEMTAk", _ZN3sce2Np9CppWebApi14SessionManager2V16Friend13unsetOnlineIdEv) +STUB("ERKzksauAJA", sceSaveDataDialogGetStatus) +STUB( + "ERMCnMK+e98", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE7reserveEi) +STUB("ERUQawyiFiU", _ZN7WebCore13toLinearSRGBAERKNS_5SRGBAIfEE) +STUB("ERWRlD3tdlM", _ZN3WTF6String24numberToStringECMAScriptEd) +STUB("ERWTHgoZej0", _ZN3sce7Toolkit2NP2V23TUS7Request17TryAndSetVariableD2Ev) +STUB("ERWfmpZNl98", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIjEmmEv) +STUB("ERYMucecNws", _ZNSt14numeric_limitsIeE12min_exponentE) +STUB( + "ERa-uKoAwd0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE3endEv) +STUB("ERc8U4brmvI", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V110UpdateModeEEC2EPS6_) +STUB("ERceC3MBxqc", Java_java_security_AccessController_getStackAccessControlContext) +STUB("ERgb4lPId44", WKBundleFrameGetJavaScriptWrapperForFileForWorld) +STUB("ERhlT6vYvfA", _ZNK7WebCore14ScrollableArea13scrolledToTopEv) +STUB("ERhsQL+87ks", nsnp_Decrypt) +STUB( + "ERkszvdfm1I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEC2ERKS7_) +STUB("ERmiOK9VT0g", sceFiosArchiveGetMountBufferSize) +STUB("ERuf9y0DY84", _ZN3sce4Json6ObjectixERKNS0_6StringE) +STUB( + "ERyU1w68Dbo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEppEv) +STUB( + "ERzoBKyzTYM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE5eraseENS2_8IteratorIS6_EERS9_) +STUB("ES+vLK-z0+U", sceVisionManagerGetResultOfFindUserWithoutIdentify) +STUB("ES3UMUWWj9U", sceNpMatching2SetSignalingOptParam) +STUB( + "ES5HyyIPXqc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEE21intrusive_ptr_sub_refEPS7_) +STUB("ESC-dyZ8rnM", mono_threads_enter_gc_unsafe_region) +STUB("ESEz+id3WAs", _ZN3JSC7Symbols29requestInstantiatePrivateNameE) +STUB("ESHbhJnEg1M", sceUserServiceSetNpOfflineAccountId) +STUB( + "ESLSfXWtNcE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEptEv) +STUB( + "ESP+o70WUcU", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlot17getnpServiceLabelEv) +STUB( + "ESTKeWgINv0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEC2EPS7_PFvS9_EPNS2_10LibContextE) +STUB("ESX8af0NRuU", _ZN3sce2np14JsonDocBuilder27GetEscapedJsonStringBufSizeEPKc) +STUB( + "ESZ1wU1W4BA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEED1Ev) +STUB("ESfpGInW8C0", _ZN12Mp4Retriever13convertToUtf8EPtmPhmb) +STUB("ESiS-L7svdc", sceMbusEnableChat) +STUB("ESjnwcGBWeg", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_19UserRankInformationEEC1Ev) +STUB( + "ESmRsPD6RRs", + _ZN3sce7Toolkit2NP2V26Trophy20getTrophyPackSummaryERKNS3_7Request20GetTrophyPackSummaryEPNS2_4Core8ResponseINS3_17TrophyPackSummaryEEE) +STUB("ESn28HeUFW0", Java_com_sony_bdjstack_security_aacs_AACSOnline_setPermission) +STUB( + "ESs8MWB58h8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("ESxtLvQZO5Y", sceShellCoreUtilGetVMStatsForTelemetry) +STUB( + "ET3FphTEUFk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEC2Ev) +STUB("ET3kRKXUtqE", __tsan_unaligned_read2) +STUB("ET3uFuIq2Gk", _ZN7WebCore14SchemeRegistry24registerURLSchemeAsLocalERKN3WTF6StringE) +STUB("ET4Gr-Uu07s", sceAvPlayerStart) +STUB( + "ET4gVE4ybKU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEE5resetEPS9_) +STUB( + "ETB+UDwv7Kc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEED2Ev) +STUB("ETBRnmr8FCA", _ZN7WebCore18TextureMapperLayer12setTransformERKNS_20TransformationMatrixE) +STUB( + "ETBSBxkFziI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEC1EPS8_) +STUB( + "ETIWjfrRtic", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEC2EPS6_PNS2_10LibContextE) +STUB( + "ETMHGrlZm48", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ErrorResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_13ErrorResponseEEE) +STUB("ETN4mn+-5l0", _ZNK3WTF3URL4userEv) +STUB( + "ETQYFuwKEVQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE3endEv) +STUB("ETS-uM-vH9Q", sceNpScoreGetRankingByNpIdPcId) +STUB("ETSlSSaZxGw", _ZN9Inspector27LayerTreeFrontendDispatcherdlEPv) +STUB("ETUVm8GqZ8k", mono_aot_SMDiagnosticsjit_code_end) +STUB("ETXmXdiDYdA", _ZN3JSC7Symbols27promiseFulfilledPrivateNameE) +STUB("ETa2mo9ojss", sceAppInstUtilSetPrimaryAppSlot) +STUB("ETb+w14ZBHA", _ZN3sce7Toolkit2NP21TusGetDataInputParamsC2Ev) +STUB("ETmaHODW01I", + _ZN3sce2Np9CppWebApi14ConnectAccount2V216PartnerTokensApi26ParameterToGetPartnerTokenC2Ev) +STUB( + "ETqXv7IBi8w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEC2EPNS2_10LibContextE) +STUB( + "ETrmIb1W1-w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEE7add_refEv) +STUB("ETuwqIjS3G0", Java_java_awt_Window_pChangeCursor) +STUB("ETvO9pe63Ks", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15NpSessionMemberEEC2ERKS4_) +STUB("ETvXu-y7oN4", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request13GetPlayedWithD2Ev) +STUB( + "ETwDQdvsdUM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEC1Ev) +STUB( + "EU0LgF7FVRk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEEC1Ev) +STUB("EU0UhVJMuI8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE6resizeEj) +STUB("EU0W9ZIDlMY", bemp2sys_tsfilter_init) +STUB( + "EU6H8lhqYYg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEEC1Ev) +STUB( + "EU7cL5AJSC8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEC1Ev) +STUB("EUCaQtXXYNI", sceVrTrackerRecalibrate) +STUB( + "EUDxrYMwIhA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEptEv) +STUB("EUEJ9ApMPBI", _ZN15AbstractStorage11LocalFolderD1Ev) +STUB("EUH+EmT-v9E", _ZNK3sce4Json6String6lengthEv) +STUB("EUJU383KIwY", u_isUWhiteSpace_67) +STUB( + "EUMoSn2H7os", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEEaSERS9_) +STUB("EUMq7VbMM4A", _ZN7WebCore24CoordinatedGraphicsLayer26setShouldUpdateVisibleRectEv) +STUB("EUOJnux2Y98", _ZN3sce2Np9CppWebApi11Matchmaking2V110UserTicket14setRulesetNameEPKc) +STUB( + "EUS59XQmiP8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEC1Ev) +STUB( + "EUaD4wwlrWk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC1Ev) +STUB( + "EUcSFxGbd9U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE6resizeEj) +STUB("EUdyKSnrCkw", mono_class_is_subclass_of) +STUB("EUeakLo20lA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEdeEv) +STUB("EUgC8BO6EfE", sceDeci4hDrfpCreate_fuse_fullpath) +STUB( + "EUk51q7XfQc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB("EUmWuIWWTvg", sceMbusDebugSetApplicationFocusByAppId) +STUB("EUs1HTSziTA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEED1Ev) +STUB( + "EUzPDdosDU0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE10setContextEPNS2_10LibContextE) +STUB("EV-OXjw2Y6Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEixEm) +STUB("EV-rWpK-lgU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS15TusDataStatusesEE3getEv) +STUB("EV1qQ7b+vLo", __asan_report_exp_store2_noabort) +STUB( + "EV63UDaz6ro", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEppEi) +STUB("EVAOZzClSqs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V115SearchAttributeEEneERKS7_) +STUB( + "EVB0ZrmkcOo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEptEv) +STUB( + "EVCsZAc87Hk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEEC1ERKSA_) +STUB( + "EVEY3Aho4DA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEEC2Ev) +STUB("EVGGV4de5iI", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getBoolean9Ev) +STUB("EVI0kBCp+vM", _ZN3WTF6String6numberEdjNS_29TrailingZerosTruncatingPolicyE) +STUB("EVMBft8-fdQ", mono_personality) +STUB( + "EVN0+KhaDss", + _ZN7WebCore12SharedBuffer6appendEON3WTF6VectorIcLm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB( + "EVNipgaWGlU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEC1Ev) +STUB( + "EVOhrbpp39s", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEdeEv) +STUB("EVOlfvNV6V8", mono_aot_Sce_Vsh_Sticker_StickerLibAccessorjit_code_end) +STUB( + "EVanM8n1ubo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEE11release_refEv) +STUB( + "EVdNz5x5Dd8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("EVdVab-pK3o", uset_clear_67) +STUB("EVgaLPB1Mbg", _ZN3WTF6String6numberEi) +STUB("EVnF+rZpx0c", mono_aot_Sce_Vsh_GameCustomDataunbox_trampolines_end) +STUB( + "EVwgkMV6Dnw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("EVwvyDL91rs", g_hash_table_remove) +STUB("EVykoz75tkY", rgctx_fetch_trampoline_mrgctx_69_p) +STUB("EW+GVVb3Y8Y", il2cpp_thread_get_all_attached_threads) +STUB( + "EW+JpYK9Jbs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEE3getEv) +STUB("EW+wdnKCpRY", mono_aot_System_Reactive_Coreplt) +STUB( + "EW0+37ceYzY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEED2Ev) +STUB("EW5OKnsWysM", sceNpUniversalDataSystemCreateRecordArray) +STUB( + "EW5m8mU5XW4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEED2Ev) +STUB("EWBdNivGTLc", JVM_MonitorWait) +STUB( + "EWCbD1Hm9sA", + _ZN3sce2Np9CppWebApi14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyC2EPNS1_6Common10LibContextE) +STUB( + "EWHb6EPgMzc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEEC2Ev) +STUB( + "EWIcMRfmA5w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEE11get_deleterEv) +STUB( + "EWJupGxq1Ck", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEixEm) +STUB("EWK9BQ3GPSE", _ZN3sce7Toolkit2NP2V211SocialMedia7Request7PhotoFbD2Ev) +STUB( + "EWN77Uj7YT4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("EWOfML0pnaI", _ZN7WebCore4Page34setInitialScaleIgnoringContentSizeEf) +STUB( + "EWOrIiFi1Cs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEE11get_deleterEv) +STUB( + "EWRdiRZ9Xdw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEEaSERKSA_) +STUB( + "EWSzWEauJOU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEdeEv) +STUB("EWVFpBhoEGg", _ZNK7WebCore22DefaultFilterOperationeqERKNS_15FilterOperationE) +STUB("EWWEBA+Ldw8", __udivmoddi4) +STUB( + "EWaFrTZByyg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEC1Ev) +STUB("EWcwMpbr5F8", sceHttp2SslEnableOption) +STUB("EWee4t7ZzQM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEE3getEv) +STUB("EWgQ0z+cfic", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEEC1Ev) +STUB( + "EWkOHSxqIb8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "EWkiobR8+LQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE3endEv) +STUB( + "EWmhd1rAknU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEEC1ERSA_) +STUB("EWqiGg1F7BA", _ZN7WebCore9HTMLNames4qTagE) +STUB( + "EWsT2hJRzJw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEC2Ev) +STUB("EX-R-kaOsvo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEEC1ERKS9_) +STUB( + "EX-cRmHBgbw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE5beginEv) +STUB( + "EX5mTalIAIU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEE5resetEPS6_) +STUB( + "EX7XbW8i4ms", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "EX84G6nPWb0", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("EXB+Y5cOQI8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEEaSERS7_) +STUB( + "EXGXLUoM2-I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEE11release_refEv) +STUB("EXH1U-UBywI", swapcontext) +STUB( + "EXIc+psPgg0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE5beginEv) +STUB( + "EXL-YJrEB94", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEE7get_refEv) +STUB( + "EXLElKtzsFY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEeqERKSA_) +STUB("EXRZRH444-o", _ZNK7WebCore18TextureMapperLayer12drawsContentEv) +STUB("EXW20cJ3oNA", _ZNSt14numeric_limitsIdE8digits10E) +STUB( + "EXWbEIS-bSw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEEC1Ev) +STUB( + "EXWbp4PfPnw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEC2Ev) +STUB("EXeJ80p01gs", sceNpManagerIntLoginGetDeviceCodeInfo) +STUB("EXeKK2Romv8", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_17TitleCloudStorage2V19ConditionEEppEi) +STUB("EXmNUXqkPhI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEEC2Ev) +STUB("EXuTtQMJ0Lw", _ZN3JSC6RegExp6createERNS_2VMERKN3WTF6StringENS3_9OptionSetINS_4Yarr5FlagsEEE) +STUB("EXv3ztGqtDM", pthread_mutexattr_setpshared) +STUB("EY+ZC0vHX+I", _ZN7WebCore8SVGNames14marker_midAttrE) +STUB("EY0acPBsxKo", mono_aot_Sce_Vsh_WebViewDialogjit_code_start) +STUB("EY28T2bkN7k", sceHttpAddRequestHeader) +STUB("EY2PlB+wrIk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEEmmEi) +STUB("EY38A01lq2k", sceFontGetRenderScalePixel) +STUB( + "EY3sPcxeAms", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEEC2Ev) +STUB("EY8cOKuR7Bc", sceDebugTriggerCoredump) +STUB( + "EYCjxvjKJCU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEEcvbEv) +STUB( + "EYEU0icdk6o", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("EYEYkiShCxM", mono_image_has_authenticode_entry) +STUB("EYInZQm5t88", sceRegMgrPrivateStorageDirName) +STUB( + "EYLZgleLgVY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("EYMou+ZnHJ8", _ZN3sce7Toolkit2NP2V210Tournament24OfficialBroadCastDetailsaSERKS4_) +STUB( + "EYSCmEu6J+8", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13integer6IsSetEv) +STUB("EYSKE8otTSs", scePerfTracePmDeleteBufferNotifyEvent) +STUB( + "EYX18O31OWk", + _ZN7WebCore19JSAnimationTimelineC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_17AnimationTimelineENS6_13DumbPtrTraitsIS8_EEEE) +STUB("EYZJsnX58DE", _ZNSt13basic_ostreamIwSt11char_traitsIwEED1Ev) +STUB( + "EYi7ChiSJB4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEeqERKS9_) +STUB("EYkbvZMNLvs", sceImeBackendGetString) +STUB("EYrJ5HrUGAs", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V115LastUpdatedUser11getOnlineIdEv) +STUB("EYvRF1VUpUU", sceUserServiceSetShareStatus) +STUB("EYwl49hc4Co", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEC2ERS7_) +STUB("EZ1GzMyIc-Y", _ZN3JSC7Symbols38createAsyncFromSyncIteratorPrivateNameE) +STUB( + "EZ7WYMRaNIQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("EZ8h70dtFLg", pthread_cond_setname_np) +STUB("EZ94ewo1vHE", png_warning) +STUB("EZAlnPmzeTw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEC2ERKS7_) +STUB("EZER6Jtj0TM", _ZN3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayerD1Ev) +STUB( + "EZERT15P5-8", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("EZF8kLAfpVU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V115SearchAttributeEEptEv) +STUB( + "EZGVoKs5BO8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEEC1ERSA_) +STUB( + "EZHQyZg7Wq8", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE5getIdEv) +STUB("EZJecX+WvJc", sceUserServiceGetThemeBgImageDimmer) +STUB("EZOP9rEdz30", _ZN9Inspector26DebuggerFrontendDispatchernaEm) +STUB("EZOPH0HFGHM", _ZN3sce2Np9CppWebApi14IdentityMapper2V312AccountIdMapD2Ev) +STUB("EZb6o3iQ36c", ShareGetCurrentStatus) +STUB( + "EZbjec+d+Xo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("EZcKdSoc0-w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEEaSERS9_) +STUB( + "EZcVdPcJXd8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEmmEv) +STUB("EZlLaviV1-U", _ZN3sce7Toolkit2NP2V24Core8ResponseINS3_5EmptyEEC2Ev) +STUB("EZqxQRb1foc", sceUpsrvUpdateGetFeatureListUrlForUpdate) +STUB("EZrgxNGtqws", ubrk_openRules_67) +STUB("EZtqozPTS4M", sceRazorCpuSetPushMarkerStaticCallback) +STUB("EZvvQXz2ilE", _ZN7CoreIPC18MessageReceiverMapC1Ev) +STUB( + "EZyFtZJmIBE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE4sizeEv) +STUB("Ea+86Wd8S-g", _ZNK3WTF24TimeWithDynamicClockType4dumpERNS_11PrintStreamE) +STUB( + "Ea+OZDg18rQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V130RequestGameSessionMemberPlayer6toJsonERNS_4Json5ValueEb) +STUB("Ea+awuQ5Bm8", _ZNKSt8messagesIwE3getEiiiRKSbIwSt11char_traitsIwESaIwEE) +STUB( + "Ea16yNLmh7w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEC1EPNS2_10LibContextE) +STUB("Ea1JLlyj72I", _ZN7WebCore9HTMLNames9headerTagE) +STUB("Ea2NaVMQNO8", sceNetConfigAddArp) +STUB("Ea3+vtUvdUw", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V115LastUpdatedUser8fromJsonERKNS_4Json5ValueE) +STUB( + "Ea6KJK6hafQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("Ea6Vodkv13Q", _ZN9Inspector32DebuggerBackendDispatcherHandlerD1Ev) +STUB("EaBzcUGrpYI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE6resizeEj) +STUB("EaD-N1hrcMc", sceAppInstUtilAppGetInstallAddcontFromDiscStatus) +STUB( + "EaIXqqOzlAs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEC1EPS6_PNS2_10LibContextE) +STUB("EaK2AflMZhQ", _ZN7WebCore8Gradient25setGradientSpaceTransformERKNS_15AffineTransformE) +STUB( + "EaMyk3rIH78", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEC1EPS6_PNS2_10LibContextE) +STUB( + "EaNyI3eRq7k", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_18GameCustomDataItemENS1_15AppSTLAllocatorIS5_EEEED1Ev) +STUB("EaRDIeh-baM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEptEv) +STUB("EaWv76ydBpw", _ZN3sce2Np9CppWebApi13InGameCatalog2V510SkuFactory7destroyEPNS3_3SkuE) +STUB( + "EaZnzPyKgaA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("EabSiJLJyww", _ZNK3sce2Np9CppWebApi6Common6VectorIdE3endEv) +STUB( + "EaeTyNQkaZo", + _ZN3sce2Np9CppWebApi11UserProfile2V113AvatarFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_6AvatarEEE) +STUB( + "EafhHrndAKo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEEC2Ev) +STUB("Eajk61IT7ng", _ZN7WebCore16DocumentTimeline17suspendAnimationsEv) +STUB("EakD6xL9a20", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEdeEv) +STUB("EamBMojFPls", sceCesUtf8ToMbc) +STUB( + "EaqNOUt4pFI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEC1EPS6_PNS2_10LibContextE) +STUB( + "EaqathyoerM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEED2Ev) +STUB("EaxLv8TfsrM", _ZN3sce2np13RingBufMemoryD2Ev) +STUB("Eb+9GDocWGw", ucnv_getName_59) +STUB( + "Eb1hE0IOiX0", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB("Eb3SYtDAAj0", _ZN9Inspector21DOMFrontendDispatcherC2ERNS_14FrontendRouterE) +STUB("Eb6RFqAKzVY", sceMbusLeaveAudioOutAutoAttenuation) +STUB( + "Eb75FWVWAIE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEC1EPS8_) +STUB("Eb7c1T8MuSo", _ZNK7WebCore11HistoryItem11originalURLEv) +STUB("Eb93zcJedbM", _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile10setAboutMeEPKc) +STUB("EbB+bkACwUc", monoeg_g_path_get_dirname) +STUB("EbEbBKHhqvM", _ZThn16_N9Inspector14InspectorAgentD1Ev) +STUB("EbInyv2qkqM", mono_config_parse_memory) +STUB("EbNufIY0Zvc", sceContentSearchGetMetadataFieldInfo) +STUB("EbP8tz9rbWs", _ZN9Inspector14FrontendRouterD2Ev) +STUB("EbPVS06zVAo", + _ZNK3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectator16customData1IsSetEv) +STUB( + "EbQRkxb6kiY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "EbRVIHi4wzY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("EbS+N1MbOBw", _ZN7WebCore13MIMETypeCacheaSERKS0_) +STUB( + "EbS5WNqkt5w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEmmEi) +STUB( + "EbVyTX4oFeY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEC2EPS8_) +STUB("EbaxxSIUfsk", _ZN3WTF9MediaTime20positiveInfiniteTimeEv) +STUB("EbfE0StszWE", FinalizeMediaModule) +STUB( + "EbihZup1hoA", + _ZThn176_N7WebCore8Document17addConsoleMessageEN3JSC13MessageSourceENS1_12MessageLevelERKN3WTF6StringEm) +STUB( + "EblbSf4-EXs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("EbmFmabti7g", _ZN3JSC10JSFunction4nameERNS_2VME) +STUB("EboejOQvLL4", sceRazorCpuIsCapturing) +STUB( + "EbpksFArSQw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEE11get_deleterEv) +STUB( + "Ebr90muM0lg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEC2ERS7_) +STUB( + "EbrFuTrDHOg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEE11release_refEv) +STUB("Ebuv-rVlBX4", _ZN7WebCore7Element15removeAttributeERKN3WTF10AtomStringE) +STUB( + "EbwQjMJpt00", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("EbyOKyTWMBM", _ZN12video_parser5vpcom11initializer22SetGetCommonStringFuncEPFPKwRKiE) +STUB( + "EbyqbBQDzW8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEC2EPS8_) +STUB("Ec4RdQbd+vI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEC2Ev) +STUB("Ec63y59l9tw", sceNpSetNpTitleId) +STUB("Ec6dqG56Kog", WKBundleAddOriginAccessAllowListEntry) +STUB( + "EcAc780sFnA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEneERKS9_) +STUB("EcDbVbmri+I", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersD1Ev) +STUB( + "EcId4LxtFC0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEEdeEv) +STUB("EcLWz4nKnY8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEED1Ev) +STUB("EcLiD9ydwX8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEEneERKS7_) +STUB( + "EcNTaPEWSLI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEmmEi) +STUB( + "EcPdOjUVQIU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEdeEv) +STUB("EcTHemmz6n4", sceCompsoitorGetProcessRenderingTime) +STUB("EcTOEqC20I0", _ZN3WTF8JSONImpl10ObjectBaseD1Ev) +STUB( + "EcTtm49oVHc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEEaSERSA_) +STUB( + "EcVHQdCZ-q4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("EcWLFic0Q9U", mono_aot_Sce_Vsh_FileSelectorunbox_trampoline_addresses) +STUB("EcaEt4nv8No", sceAgcDriverSysGetGfxAppGpuResetStatus) +STUB("EcboqmwkrMY", _ZNK3sce2np9JsonArray5CloneEP16SceNpAllocatorEx) +STUB("EcddTB8Kt7Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEED1Ev) +STUB("EciO+1-a91M", _ZN3sce2Np9CppWebApi15Personalization2V15Error11unsetSourceEv) +STUB( + "EcnogZpYeP0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEmmEv) +STUB("Ecr-PCm4IWY", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE5beginEv) +STUB("EcsAk-ul7TI", mono_class_implements_interface) +STUB("EcvEiAbDsyk", sceShellUIUtilGetAppUrl) +STUB("Ecwid6wJMhY", _Stolx) +STUB( + "EcxQh7tzRLI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEC2Ev) +STUB("Ed0aLPhQx7Y", _ZNK3sce7Toolkit2NP15AppSTLAllocatorIiE8max_sizeEv) +STUB("EdF8JLPaKUs", _ZN12Mp4RetrieverD1Ev) +STUB( + "EdFYZpPIbiE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEE3getEv) +STUB("EdGBCTaSbwM", _ZN22MmsMdCommonFsOperation8readFileEjPv) +STUB("EdJS-hyHozc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V120PlayerJoinableStatusEEeqERKS7_) +STUB( + "EdLvWwQ4-1A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEE7add_refEv) +STUB("EdN4PtGiwG8", _ZN3JSC7Symbols33stringIncludesInternalPrivateNameE) +STUB("EdO0Qb+NZ9M", _ZNK3JSC12PropertySlot12customGetterEPNS_9ExecStateENS_12PropertyNameE) +STUB("EdPboSS9riE", _ZN7WebCore5Range8setStartERKNS_8PositionE) +STUB("EdT3EtGltPg", _ZN23sceMetadataReaderWriter13KeyValueArray3setEPNS_8KeyValueE) +STUB("EdTr7I4K1uI", _ZN3sce2Np9CppWebApi11UserProfile2V125GetPublicProfilesResponseD1Ev) +STUB("EdVbEa9144I", mono_g_hash_table_lookup_extended) +STUB( + "EdWZUgJ3JYo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE8copyFromERKSA_) +STUB("EdZXye9GA2I", _ZN3sce7Toolkit2NP2V24Core8ResponseINS3_18CustomResponseDataEED1Ev) +STUB("Edc0LKPzxbU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEcvbEv) +STUB("EdcZfiHyWJU", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEEdeEv) +STUB( + "EdcZvW0NvOo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEE7add_refEv) +STUB( + "EddO1iuXDps", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEED1Ev) +STUB( + "EdeUwNA6caY", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB("EdefUaKYEPE", eglBindTexImage) +STUB( + "EdfkLF+1AYs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("Edi1I6slWTU", _ZN7WebCore15AsyncFileStreamnwEm) +STUB( + "EdiICM8M5oQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE8capacityEv) +STUB("EdkISCe7zb8", _ZNK3sce2Np9CppWebApi7Matches2V118RequestTeamResults10scoreIsSetEv) +STUB( + "EdkadxyNkNM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEC2Ev) +STUB( + "Edr96guD4nY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEC2EPS8_) +STUB( + "EdwGavVaA6Y", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer20setuseCurrencySymbolEb) +STUB("Ee+UffrEuAY", ucasemap_internalUTF8ToTitle_67) +STUB("Ee1Mv1wMBhk", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEEptEv) +STUB("Ee2bKGk0j4M", uldn_openForContext_67) +STUB( + "Ee2cghlOlFs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEED2Ev) +STUB("Ee3LPFXEvA0", sceKernelSetIoreq) +STUB("Ee3Y61IerS0", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_28NpSessionDetailedInformationEED1Ev) +STUB("Ee99oKTR++w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEC1Ev) +STUB("EeBQ7253LkE", _ZNKSt8messagesIcE5closeEi) +STUB( + "EeBumidaqNc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEC1EPS8_) +STUB( + "EeEtG-RFyaQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEdeEv) +STUB("EeGYlSFqG4c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEmmEv) +STUB( + "EeHU-BBbqK8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "EeNITvom5Rk", + _ZN9Inspector26AnimationBackendDispatcher16resolveAnimationElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("EeOtHxoUkvM", _ZTIN10__cxxabiv117__class_type_infoE) +STUB( + "EeQZDUDbers", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEC2Ev) +STUB( + "EeU0GSrHlnw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEppEv) +STUB("EeVJ6rikwss", sceUserServiceGetGlsSortOrderGame) +STUB("EeVthQocE3Y", __sys_test_debug_rwmem) +STUB("EeZvkwOQkDU", _ZN4IPMI4impl10ServerImpl25registerKeventForProcExitEj) +STUB("Eeetr0CfdLs", rgctx_fetch_trampoline_mrgctx_24_p) +STUB("Eegf7F-oqzk", uset_equals_67) +STUB( + "EehVWOUiOPk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEmmEv) +STUB("EejsJSul9nA", sceAvSettingChangeProcessAttribute) +STUB("Een9k936RW0", bemp2sys_packetizer_create) +STUB("EeoKUMWrMys", _ZN7WebCore8SVGNames6k3AttrE) +STUB("EepUNU63bvc", _ZN7WebCore9HTMLNames10marqueeTagE) +STUB("EesBxlNesYM", + _ZN3sce2Np9CppWebApi14SessionManager2V125ResponseGameSessionPlayer11setPlatformEPKc) +STUB( + "Ef2oqYnK+Yo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEdeEv) +STUB( + "Ef79qa-VnrQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "EfAbrZyGLRg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEC1Ev) +STUB("EfMNLIfp6QY", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationProperties12getWelcomingEv) +STUB("EfNQF2jRElQ", _ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error9setSourceEPKc) +STUB("EfRsAsiwQV8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V511ContentTypeEEeqERKS7_) +STUB( + "EfYw5HxwZaw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "EfZn061vqfI", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB("EfbN1PNbQ7w", _ZN7WebCore17FrameLoaderClient22dispatchDidReceiveIconEv) +STUB("EfdaVVzDkSg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEEptEv) +STUB("EfgH5jBjqpM", sceNpSessionServiceGetJoinedPartySession) +STUB("Efn-a1tGPqw", _ZN3WTF19ParallelEnvironmentC1EPFvPvEmi) +STUB("EfnfZtjjyR0", sceNpUtilParseTitleId) +STUB( + "EfoBIEQgBmk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEC1Ev) +STUB( + "EfqWR3aCjZY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEE11release_refEv) +STUB("EfqmKkirJF0", sceKernelMlockall) +STUB("EfrTUx1fmtU", qS3) +STUB( + "EfsWIuzMksA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEptEv) +STUB("EftEB4kmkSg", sceNpUtilJsonEscape) +STUB("EfvzrKzujQE", sceHidControlGetDeviceName) +STUB( + "EfwFypOQemw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEED2Ev) +STUB( + "EfwLq56LyUU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEC1EPNS2_10LibContextE) +STUB( + "Eg0oOr9Vz1o", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE3endEv) +STUB( + "Eg2WYfzV3Jw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB( + "Eg3UJkA4YGw", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeaders24getXPsnAtomicOperationIdEv) +STUB( + "Eg6TAB+22EM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "EgC8o0Rn4Go", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEppEv) +STUB("EgEPXDie5XQ", sceUserServiceGetThemeTextShadow) +STUB("EgErBK3HZNc", WKPageSetControlledByAutomation) +STUB( + "EgFbegQmSwo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEC2EPNS2_10LibContextE) +STUB("EgHudGJawMs", _ZN9Inspector27CSSBackendDispatcherHandlerC2ERKS0_) +STUB("EgIn3QBajPs", sceFontGraphicsUpdateFillMethod) +STUB("EgJqC+9VmvM", sceKernelClearGameDirectMemory) +STUB("EgJuhxEz0wg", mono_aot_System_Dataplt_end) +STUB( + "EgKNWVm7Pv4", + _ZN9Inspector23TargetBackendDispatcherC2ERNS_17BackendDispatcherEPNS_30TargetBackendDispatcherHandlerE) +STUB( + "EgLCVO0s9ks", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEC1Ev) +STUB( + "EgLX0wc8jfw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE7popBackEv) +STUB("EgSIYe3IYso", _ZNSt9_Num_base10is_integerE) +STUB("EgeTANIm-fQ", _ZN3sce7Toolkit2NP2V211SocialMedia7Request12ActionLinkFbC2Ev) +STUB("Eggp2vvHgmE", _ZN7WebCore21UserContentControllerD0Ev) +STUB("EghlSHTb5KU", uiter_next32_67) +STUB( + "EgiGWJLQ6Jk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEneERKS9_) +STUB("EgiXIlZ8rwo", CreateZStream) +STUB("Egleh7nfX4c", + _ZNK3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends9getfilterEv) +STUB("EgmLo6EWgso", pthread_rwlock_unlock) +STUB("EgmlHG93Tpw", sceNpManagerIntDeleteLoginContext) +STUB( + "EgopK9UaJ8k", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("EgwcFZpfkbQ", _ZN7WebCore16ScriptController11windowProxyEv) +STUB("Eh+Vqkrrc00", sceNetInetNtopWithScopeId) +STUB("Eh4A9qNAKvM", _ZN3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator10setNatTypeERKi) +STUB("Eh7uskcjFl4", _ZN9Inspector28PageBackendDispatcherHandlerC2ERKS0_) +STUB("EhAaiqA7Jgc", mono_method_get_name) +STUB( + "EhBw4CiUmf0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEED2Ev) +STUB("EhD2KpLs1cw", Java_java_lang_reflect_Array_setChar) +STUB("EhE73s4u2Yg", sceDataTransferTargetRequestBindSavedata) +STUB("EhLaOnhdcXo", _ZN3sce2np9HttpTrans12RecvResponseEPNS0_6HandleEPvmPm) +STUB("EhOOmJWzSmk", mono_aot_Sce_Vsh_UserServiceWrapperunbox_trampolines) +STUB( + "EhPGI8cSAG8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEE5resetEPS9_) +STUB("EhQQuwIASuw", _ZN12video_parser5vpcom6_ChmodEPci) +STUB("EhRJ-yl2m9E", _ZN7WebCore18RenderLayerBacking30setIsTrackingDisplayListReplayEb) +STUB("EhU6GNY5CVw", _ZN7WebCore22HTMLFormControlElement13setFormMethodERKN3WTF6StringE) +STUB( + "EhVJ+wwxFK4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEC1EPS9_) +STUB( + "EhVJRG6LuwM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "Ehe2OLlQ6js", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEEC2EPS8_PNS2_10LibContextE) +STUB("EhePbYxMnqY", rgctx_fetch_trampoline_rgctx_54_p) +STUB("Eheq1igFqCM", _ZN7WebCore13HitTestResultC1ERKNS_10LayoutRectE) +STUB("EhfeKhQoHj0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEC1Ev) +STUB("Ehjy-lAMZoc", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119ChildActivityStatusEEmmEi) +STUB("Ehkz-BkTPwI", _ZN3sce2np6Thread12DoThreadMainEv) +STUB( + "EhoQjwNycKo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEE5resetEPS9_) +STUB("EhqyxOyQlls", + _Z32Ime_SetPreeditRectGeometryNativemN3sce11playstation4core3Ime15ImeTextGeometryE) +STUB( + "Ehr3HGZ7hQE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEED2Ev) +STUB( + "Ei+rwvM+nhA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEE3getEv) +STUB( + "Ei1DcM9fpAg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("Ei1Dn07XYs4", ures_getString) +STUB( + "Ei4lrxNnG9M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("Ei7Gxq2j6e8", _ZN3WTF24AutomaticThreadCondition9notifyAllERKNS_14AbstractLockerE) +STUB( + "EiAOpvgpaiY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE6resizeEj) +STUB( + "EiDOnNd1wdk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEmmEi) +STUB("EiF92YDNHRA", sceInvitationDialogGetStatus) +STUB("EiHf-aLDImI", logl) +STUB( + "EiHqMaUVcVw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEixEm) +STUB( + "EiKL1khnnI4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("EiMbExkrCf4", mono_aot_System_ServiceModel_Internalsmethod_addresses) +STUB("EiMkgQsOfU0", __powisf2) +STUB("EiNcaVz5BQk", uspoof_getInclusionUnicodeSet_67) +STUB("EiOhI0xdnqs", _ZN7WebCore29SQLiteStatementAutoResetScopeC1EOS0_) +STUB("EiQTpEHlqGs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEED2Ev) +STUB( + "EiQehVwgZxs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE5emptyEv) +STUB("EiWxbCFATxw", _ZN12video_parser13cVideoMetaMP416getEpisodeNumberEPi) +STUB("EiYeGyIO7yE", mono_bitset_find_start) +STUB("EiYv5gqx0Ls", mono_aot_Sce_Vsh_Gls_GlsSharedMediaViewunbox_trampolines_end) +STUB("Eia04SHhxa0", coil_set_debugger_port) +STUB("EidFctP9kfk", _ZTVSt9basic_iosIwSt11char_traitsIwEE) +STUB( + "EiernRRx6CQ", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetrics27getCompletionRatePerReasonsEv) +STUB("Eif2MJOmod4", _ZN12video_parser13cVideoPathM4vC1EPKc) +STUB("EijXOxU9SAU", _ZN3sce7Toolkit2NP2V26Friend7Request15GetBlockedUsersD2Ev) +STUB("EikE-GrFloI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEC2ERS7_) +STUB("Eisgz+sqX1g", _ZN3WTF37parseDateFromNullTerminatedCharactersEPKc) +STUB("Eix6BBYackE", _Z18sendIpmiConnectCmdiPvPKvm) +STUB("EizhQNDGt8o", WKBundlePageAddUserScript) +STUB("Ej0-MQtjabk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEEcvbEv) +STUB("Ej0X1EwApwM", _ZNKSt5ctypeIwE10do_tolowerEPwPKw) +STUB("Ej2QCEJXBec", dvdAuthInitialize) +STUB("Ej400cAVTZ0", u_fputc_67) +STUB("Ej4A0AumbJ4", _ZN3JSC22EdenGCActivityCallbackC1EPNS_4HeapE) +STUB("Ej5O8fLz0QU", _ZN3NTF8Registry10initializeEbb) +STUB("Ej7zgb55994", mono_lock_free_alloc) +STUB("Ej9YiEmOWVE", sceAvSettingIsSupportedVideoOutModeByHdmiMonitorInfo) +STUB("EjD0Kwis-6Y", Java_com_sony_bdjstack_ti_Database_getTitle) +STUB("EjF8+d+GJvA", null) +STUB("EjHPHhdChko", + _ZNK3sce2Np9CppWebApi14SessionManager2V127PostGameSessionsRequestBody6toJsonERNS_4Json5ValueEb) +STUB("EjL+gY1G2lk", lgamma_r) +STUB("EjMsfO3GCIA", sceNpJoinThread) +STUB("EjW+wxqS93k", fuse_session_new) +STUB("EjX3MmMvpTs", WKBundlePagePostMessageIgnoringFullySynchronousMode) +STUB( + "EjYI9RorGtA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEeqERKS9_) +STUB( + "EjYxXIk+HiE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEC2ERKS7_) +STUB("EjbNP5MEexk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEEC1Ev) +STUB( + "EjfCxrN4Dvg", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE18getResponseHeadersERSE_) +STUB( + "Eji5P2RMwwA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEED2Ev) +STUB("EjllaAqAPZo", pthread_condattr_setclock) +STUB( + "EjoUG62MFCw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "EjsP3q44NBM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEC1Ev) +STUB( + "EjwICDNgIbc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEppEv) +STUB( + "Ejx7DhCW2mk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("EjxE+-VvuJ4", sceUserServiceSetGlsIsCameraHidden) +STUB("EjxUpzR2Yx8", _ZN3sce4Json5ValueC2El) +STUB("EjyAI+QNgFw", sceNpPartyGetStateAsUserA) +STUB("Ek+VR4lcJQI", sceVideoOutSysAddVblankEvent) +STUB( + "Ek0g-cQLZ48", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEC1Ev) +STUB("Ek3df14vjDk", EVP_PKEY_set1_RSA) +STUB( + "Ek4-zsEPa-c", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEneERKS9_) +STUB("EkENuw5cosY", sceLibcGetFD) +STUB( + "EkHQkuspYyo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "EkM1ybYRK1k", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE4sizeEv) +STUB("EkR0YuNu6P8", _ZN7WebCore6JSNode14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB("EkYKe+qGQCM", _ZN3sce2Np9CppWebApi6Common6VectorIlEC2EPNS2_10LibContextE) +STUB("EkYvmQJl8iE", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIlEC2EPl) +STUB( + "EketLk4tmZk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE8pushBackERKS8_) +STUB("EkqGLxWC-S0", sceUsbdHandleEvents) +STUB("EkrFsaV1O7Q", + _ZN12video_parser5vpcom3rtc19ParseSQLiteDateTimeEPmPNS1_24SQLiteDateTimeFormatTypeEPKc) +STUB("EksoTo0wy2I", _ZN3sce7Toolkit2NP2V24Core24NpToolkitMemoryPoolStatsC2Ev) +STUB( + "EkvXBfDzM4M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEC2EPS8_) +STUB("El+cQ20DynU", scePthreadAttrSetguardsize) +STUB("El-HZiyKyzE", _ZTVN15AbstractStorage7StorageE) +STUB( + "El2GLtEirAo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "El4kM4Skmnc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEEC1ERSA_) +STUB("El4tFb9f8dk", _ZNK3sce7Toolkit2NP2V24Core11RequestBase15getFunctionTypeEv) +STUB( + "El7sDMIuJ8k", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEEptEv) +STUB( + "El9pSfyTa1U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "ElEwZT613go", + _ZN3sce7Toolkit2NP10Challenges9Interface13sendChallengeEPKNS1_20ChallengeSendRequestEPNS1_9Utilities6FutureIiEEb) +STUB("ElGny6mhejo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEED2Ev) +STUB( + "ElGyonrbd58", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEEiRNS2_10LibContextEPT_m) +STUB("ElKI+ReiehU", _ZNSt8numpunctIwEC2Em) +STUB( + "ElLB0RVLP7I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEED2Ev) +STUB( + "ElNL9J-OTm0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEaSERKS9_) +STUB( + "ElNkT2LUYaU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE8pushBackERKS9_) +STUB("ElNyedXaa4o", sceRazorCpuInitializeInternal) +STUB("ElU3kEY8q+I", _Locvar) +STUB("ElUzZAXIvY0", SSL_getSSLTLSVersion) +STUB("ElXcYHtYqtE", _ZNK3WTF3URL17lastPathComponentEv) +STUB( + "ElZ9I02f5b8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEEC1ERSA_) +STUB( + "ElZhMe6ExPo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEptEv) +STUB("ElarSAjjjas", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament5EventEE5resetEv) +STUB( + "Ell1PBPX3Ws", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEE11release_refEv) +STUB("ElpoPPrD7Tw", _ZN3sce2Np9CppWebApi6Common8IteratorIlEppEv) +STUB("ElslOCpOIns", sceAjmBatchJobRunBufferRa) +STUB("ElyRRHXjuw4", _ZN7WebCore9HTMLNames9appletTagE) +STUB( + "Elzyl94I834", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("Em-4arLuEqo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEED1Ev) +STUB("Em5voBytaq0", _ZN7WebCore10FileHandleaSEOS0_) +STUB("Em6rHdmsPXI", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request8SetLikedD1Ev) +STUB( + "Em82U6GATZ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEEC1EPS8_PNS2_10LibContextE) +STUB( + "Em9GcDOUeQw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEneERKS9_) +STUB("EmANKTg9wVg", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_20NpSessionInformationEE17getAdditionalInfoEv) +STUB("EmDE5z8WGPM", _ZN3WTF11Persistence7Decoder6decodeERj) +STUB( + "EmFA2KPkWPo", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEEiRNS2_10LibContextEPT_m) +STUB("EmIR9ZGK08g", _ZN3sce3web15TerminateCsharpEv) +STUB( + "EmJwZx4it44", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEEaSERSA_) +STUB( + "EmPfHtDvDvI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEC1EPS6_PNS2_10LibContextE) +STUB("EmQjXmjizpc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEEC1EPKS6_) +STUB("EmRD5jXfyyc", _ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForReadC1EPNS1_6Common10LibContextE) +STUB("EmRnmWkMaFI", _ZN3sce7Toolkit2NP2V28Matching12RoomPingTimeC2Ev) +STUB("EmWcBzV6g0w", _ZN3PAL9SessionID26enableGenerationProtectionEv) +STUB("EmZaCfGsNnc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEEdeEv) +STUB( + "EmhaF0QRNuI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEE7add_refEv) +STUB("Emnpi9aJl98", _ZN7WebCore28convertToIntegerEnforceRangeIhEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB("EmpW38vZWAY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TSS7TssDataEEC1Ev) +STUB("Emqq9C2Q5Z8", _ZN3sce7Toolkit2NP2V23TSS7TssDataC1Ev) +STUB("EmrfDsAor7Q", _ZN2GK9PlayerPSNC2ERKS0_) +STUB( + "EmsDF75CZAI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("EmxnthSiK7U", _ZN3sce7Toolkit2NP2V212EventsClient5Event13MAX_SIZE_DATEE) +STUB("En+dYUM8u7U", glDeleteVertexArrays) +STUB("En-4CGB-Or4", GCC_except_table345) +STUB("En2uhErgbpM", _ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody14unsetSmallDataEv) +STUB( + "En5uqfsG6sk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEEptEv) +STUB("En8ghzCM0HM", glBlendFuncSeparate) +STUB( + "EnJXr5AJ3+g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE21intrusive_ptr_sub_refEPS9_) +STUB("EnK73YuamtU", _ZN3JSC17JSPromiseDeferred6s_infoE) +STUB("EnMjfRlO5f0", _ZTISt10moneypunctIwLb0EE) +STUB("EnOKtxgFjSU", _ZN7WebCore17PageConsoleClientD1Ev) +STUB( + "EnSZTstFnVg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEixEm) +STUB("EnSoEKglbyc", _ZN12video_parser13cVideoMetaMP413getChapterNumERjPj) +STUB( + "EnUR1gOtjVE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEE7get_refEv) +STUB("EnYKPlIQ0DA", WKContextCreate) +STUB("EnZD-OcBOWA", _ZN7WebCore10Pasteboard7hasDataEv) +STUB("Ena7T6bVG5s", sceRegMgrCntlGetFilesCount) +STUB( + "End50zcPc-8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE3endEv) +STUB("EnehEnuAhVo", _ZN3sce2Np9CppWebApi7Matches2V119ResponseTeamResults8setScoreERKd) +STUB("EnesV4gXDtE", _ZNK3sce4Json6Object8iteratorptEv) +STUB( + "EnhITVS0aEM", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("Enhcfvhh2C0", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats8unsetMmrEv) +STUB( + "EnjYaRegu94", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "Ennfd1ObUfU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "EnnlFAkLUKc", + _ZN3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectator15setPushContextsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_24PlayerSessionPushContextEEEEE) +STUB( + "Enr3AUV44tM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEEC2ERSA_) +STUB("EnulGVsNDS8", mono_aot_Sce_PlayStation_Corejit_got) +STUB( + "Eo-wckOY7oI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEEC1ERSA_) +STUB("Eo0S65Jy28Q", sceSslGetNotBefore) +STUB("Eo3iJoTQazQ", WKPreferencesSetSansSerifFontFamily) +STUB( + "Eo9k7pUP8-g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEE7get_refEv) +STUB("EoBKLiBSVtA", unumf_openResult_67) +STUB("EoJfBwJ3qss", _ZN3sce7Toolkit2NP2V27Session14SessionDetailsC2Ev) +STUB( + "EobKD5KF5-Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("EoccCF6iOmI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEEdeEv) +STUB("Eoev6gdLaS8", _ZN3sce7Toolkit2NP2V23TUS14DataContentionC1Ev) +STUB("Eofyp3gpCuU", _ZN3sce7Toolkit2NP2V28Matching7Request11SetRoomInfoC2Ev) +STUB("EohScesyHDI", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi24ParameterToReportResults10setmatchIdEPKc) +STUB( + "EoiGLV1dir8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEE7get_refEv) +STUB( + "EojlO98MB4I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEE11release_refEv) +STUB( + "Eor8lysi8pA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEC1EPNS2_10LibContextE) +STUB("EotR8a3ASf4", pthread_self) +STUB("Eota8FMl3bc", _ZN7WebCore17HTMLScriptElement7setTextERKN3WTF6StringE) +STUB("EoxXe2Cl1rA", _ZTVN9Inspector21InjectedScriptManagerE) +STUB( + "Ep1uD0m4qR0", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitations10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_49PostPlayerSessionsSessionIdInvitationsRequestBodyEEE) +STUB( + "Ep5JoGYdScs", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10setString3EPKc) +STUB("EpAnju3ofLU", WKPageReloadExpiredOnly) +STUB( + "EpCvivolzx8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEaSERKS9_) +STUB("EpIfo9S64Yc", _ZN3sce3Xml3Sax6ParserC1Ev) +STUB( + "EpR-x3YqzPU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEmmEi) +STUB( + "EpRQviD9RCQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEE7get_refEv) +STUB("EpUU3kS7Oxg", _ZN3sce2Np9CppWebApi7Matches2V117ResponseMatchTeamD1Ev) +STUB("EpYd-oklLoY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10CategoriesEEC1Ev) +STUB( + "EpmkRKzqbXw", + _ZN7WebCore13MutationEvent17initMutationEventERKN3WTF10AtomStringEbbPNS_4NodeERKNS1_6StringES9_S9_t) +STUB("EpmvIVUUUx0", + _ZN6WebKit17ChildProcessProxy15dispatchMessageEPN7CoreIPC10ConnectionERNS1_14MessageDecoderE) +STUB("EprDGeWcZe0", __asan_exp_store8_noabort) +STUB( + "Eprbsoz4his", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEEcvbEv) +STUB( + "Eps1IYroXBI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEmmEv) +STUB("Epso29hWGJA", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer9getoffsetEv) +STUB("EpuC2g9LWMY", _ZN3sce7Toolkit2NP2V211SocialMedia7Request7PhotoFbC1Ev) +STUB("Epv0iVbfYMA", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeINS1_11TusVariableEPvEE7destroyEPS6_) +STUB( + "EpwclcOuk9U", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEeqERKS9_) +STUB("EpyWvhlGDaw", WKWebsiteDataStoreConfigurationGetNetworkCacheSpeculativeValidationEnabled) +STUB("Eq+fDFaK3i0", sceRegMgrNonSysCheckError) +STUB("EqCoCs9oKuE", _ZNK3sce2Np9CppWebApi7Matches2V119ResponseTeamResults6toJsonERNS_4Json5ValueEb) +STUB("EqIA-2uMpIo", _ZN7WebCore11JSImageData9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("EqJRF++XyD4", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V18PlatformEEaSERKS7_) +STUB("EqKbJ0+Ql7U", u_charType_67) +STUB("EqL+-BktuAA", _ZN3JSC8JSObject11analyzeHeapEPNS_6JSCellERNS_12HeapAnalyzerE) +STUB( + "EqLt0MQsGvI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEC2EPNS2_10LibContextE) +STUB("EqMYo6+xXPk", _ZN3JSC11createErrorEPNS_14JSGlobalObjectENS_9ErrorTypeERKN3WTF6StringE) +STUB("EqMtBHWu-5M", sceAppContentSmallSharedDataUnmount) +STUB("EqN+ED6P2FA", FT_FloorFix) +STUB( + "EqNqEBcL75U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEC2Ev) +STUB("EqQQgky8sBU", _ZN3sce2Np9CppWebApi7Matches2V121ResponseTeamStatistic9setTeamIdEPKc) +STUB("EqRj7d5zUU4", _ZN7WebCore7JSEvent9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("EqX45DhWUpo", _ZN3sce2np6Thread4InitEPKcimm) +STUB("EqcPA3ugRP8", sceSystemServiceDeclareReadyForSuspend) +STUB("EqcvUDNk4kE", _ZN7WebCore4Page29applicationDidEnterBackgroundEv) +STUB("EqeD-cS7HOA", __sanitizer_cov_indir_call16) +STUB("EqfGtRCryNg", sceUserServiceSetPbtcWednesdayDuration) +STUB("Eqig13PagU8", AnnotateNewMemory) +STUB("EqjVAyTOkKc", sceIduUtilDownloadInstallPkg) +STUB("EqjWj2OxQ68", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V18PlatformEEmmEv) +STUB( + "Eqjd0iDQNuM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEC2ERKS7_) +STUB("EqmzIcR5AVc", _ZN7WebCore8JSPath2D14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB( + "EqngeFUtWHU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE8capacityEv) +STUB("Eqrp-3495x8", _ZN7WebCore10TimeRanges13intersectWithERKS0_) +STUB("Eqyj4CKVl5E", fuse_chan_data) +STUB( + "EqzUbcko6xo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEED1Ev) +STUB("Er0Lin-u20o", FT_Stream_GetLong) +STUB("Er0cbD8FKr8", u_enumCharNames_67) +STUB( + "Er0f6YqPDCA", + _ZN7WebCore15UserInputBridge21handleMouseForceEventERKNS_18PlatformMouseEventENS_11InputSourceE) +STUB( + "Er0ky52PzNE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("Er2rl6X-19s", _ZN7WebCore16ThreadGlobalDataD1Ev) +STUB("Er4YajbBg2k", _ZN9Inspector15ScriptCallFrameD1Ev) +STUB( + "Er5QliqBi5c", + _ZN7WebCore17FrameLoaderClient56dispatchWillDisconnectDOMWindowExtensionFromGlobalObjectEPNS_18DOMWindowExtensionE) +STUB("Er5RROJCXYo", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry12getAccountIdEv) +STUB("Er6E1f2+plI", _ZN3sce2Np9CppWebApi7Matches2V15Error8fromJsonERKNS_4Json5ValueE) +STUB("ErBCp3pvQD4", utrie2_enumForLeadSurrogate) +STUB("ErDg0p+d4AE", _ZN7WebCore14ScrollableArea19invalidateScrollbarERNS_9ScrollbarERKNS_7IntRectE) +STUB("ErESRy2z8Tc", + _ZNK3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayer12getAccountIdEv) +STUB( + "ErEUIz7a6iE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEEC2ERKSA_) +STUB("ErEtiiAyg4Y", + _ZN3sce2Np9CppWebApi13InGameCatalog2V516ContainerFactory7destroyEPNS3_9ContainerE) +STUB("ErH6tKS7fzE", sceShareCaptureScreenshot) +STUB( + "ErJsDKazBkg", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V134ConnectionQualityPropertiesFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_29ConnectionQualityWiredMetricsEEENS8_INS3_32ConnectionQualityWirelessMetricsEEEPNS8_INS3_27ConnectionQualityPropertiesEEE) +STUB( + "ErKkW7m7ROg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEC1EPKS8_) +STUB("ErMtG2aEQk8", _ZN7WebCore5Range6createERNS_8DocumentERKNS_8PositionES5_) +STUB( + "ErPgMam83-k", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer14setserviceNameENS5_11ServiceNameE) +STUB( + "ErRKLHle1Ac", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("ErWkFcqcBYE", WKIconDatabaseCopyIconDataForPageURL) +STUB("Erdh435OyM0", _ZN3sce7Toolkit2NP2V27Session7Request6UpdateD2Ev) +STUB( + "ErfjZVv24eU", + _ZNK3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V19RatingApi21ParameterToPostRating13isInitializedEv) +STUB("ErgHdDWCpVc", WKPageIsClosed) +STUB("Ern79HkuLec", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V18PlatformEEneERKS7_) +STUB("Erp13lgq9JM", _ZNK3sce2Np9CppWebApi7Matches2V121ResponsePlayerResults10scoreIsSetEv) +STUB( + "ErqafFwIFwA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEC1EPS6_) +STUB("ErrYizaCG6E", _Latin1Data_67) +STUB("EruGr0TR1CU", FT_Face_SetUnpatentedHinting) +STUB( + "ErvqoDGAWBI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEmmEv) +STUB("ErwSbohShIc", WKPageRubberBandsAtTop) +STUB("ErxaIj9IxWo", _ZNK3sce2Np9CppWebApi13InGameCatalog2V515ContainerRating10countIsSetEv) +STUB("Es-CwSVnalY", _ZN3sce2np9Semaphore7DestroyEv) +STUB( + "Es1LjRkmxYg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEEdeEv) +STUB("Es2NKgJgvdw", _ZN7WebCore16JSHTMLCollection9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB( + "EsGKNdEVShU", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersD1Ev) +STUB("EsGW6Kl4OW8", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking10UsersRanksEED1Ev) +STUB("EsKocMZlRkU", _ZN7WebCore21BlobDataFileReference6createERKN3WTF6StringE) +STUB( + "EsKp8iBwvYY", + _ZN9Inspector24NetworkBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "EsOOSShnC0M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC2Ev) +STUB("EsSbFnoWxVc", sceAudiodecInitialize) +STUB( + "EsTxCSVZlqc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEptEv) +STUB( + "EsUXFBpt6DQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEE3getEv) +STUB( + "EsYK34tgTag", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEmmEv) +STUB("EsbKry4ko8k", _ZN3sce7Toolkit2NP2V29Challenge7Request16GetChallengeDataD1Ev) +STUB( + "EshsZv7oIdQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEppEv) +STUB("EsoUVUbGMdg", _ZN4IPMI4impl10ClientImplD0Ev) +STUB("Esr9db8S1S0", sceAjmBatchJobGetGaplessDecode) +STUB("EsyFJczeZrA", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V112OnlineStatusEEmmEi) +STUB( + "EsyrRDokkYE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "EszWSQh260Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEneERKS9_) +STUB("EszjHLoMAVY", __asan_store8) +STUB( + "Et5N7XTCEG4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEC1Ev) +STUB("EtAkabgjh3U", _ZN3JSC9HandleSet4growEv) +STUB("EtEs+C-L3FY", sceUpsrvUpdateGetBetaFeatureListUrlForUpdate) +STUB( + "EtM-2qv2Y44", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEC1EPS8_) +STUB("EtMKzsL3G6k", uprv_decContextSetStatus_67) +STUB( + "EtMQrE2lp4o", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("EtO3z7ToC6Y", _ZNK7WebCore7Element15absoluteLinkURLEv) +STUB("EtPFfT9o1S0", _ZN7WebCore15AffineTransform9translateEdd) +STUB( + "EtVZNZdIcMw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEaSERKS9_) +STUB("EtYVzweeOW8", _ZN3sce2Np9CppWebApi7Matches2V120RequestTeamStatisticD2Ev) +STUB( + "Etdhu-TeMVI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEeqERKS9_) +STUB("EtfRt5hez60", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData10setifMatchEPKc) +STUB("Etii7YdOfl0", _ZTVN7WebCore11DisplayList9ClearRectE) +STUB("EtkHCzxwif8", mono_log_open_logfile) +STUB("EtpM9Qdy8D4", __floattidf) +STUB("Etq15-l9yko", sceNpDbgDumpBinary) +STUB("Etvu03IpTEc", _ZN3sce2np15CancelableScope5BeginEPNS0_6HandleEPKciS5_) +STUB("EtxxVxJKJLA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsD1Ev) +STUB( + "Eu-28lnK+PM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEEC2ERSA_) +STUB("Eu0JtjGCmkU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE5beginEv) +STUB( + "Eu4lBFZ1RcY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE3endEv) +STUB("Eu7QNB9x1r0", sceSysUtilSendNpDebugNotificationRequest) +STUB("Eu95jmqn5Rw", _ZN3sce4Json14InitParameter217setFileBufferSizeEm) +STUB("EuCGceMHgS8", _ZN3WTF15AutomaticThread7tryStopERKNS_14AbstractLockerE) +STUB("EuFvqF73SwU", u_enumCharNames) +STUB("EuHCn7yiExw", _ZN7WebCore13JSHTMLElement14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB("EuJ8rkwxX9c", _ZN7WebCore26MessagePortChannelProvider17setSharedProviderERS0_) +STUB( + "EuJgsNai158", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEC1Ev) +STUB("EuM4L2UOzSQ", sceNpManagerUtilSystemMessageWithUserId) +STUB( + "EuOueAR9pJ0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEdeEv) +STUB( + "EuPpAmggO70", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEED2Ev) +STUB("EuQCNA5RsXI", _ZNSt9basic_iosIwSt11char_traitsIwEE5clearENSt5_IosbIiE8_IostateEb) +STUB("EuQE83L6prs", _ZNK7WebCore11RenderLayer24needsCompositedScrollingEv) +STUB("EuSlxfcPOrc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEptEv) +STUB( + "EuUcsHVy068", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEmmEv) +STUB( + "EuUuvv2KARo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEEC2ERKS9_) +STUB("EuV8syTZP20", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEC1Ev) +STUB( + "EuWhmrA1m0s", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEppEv) +STUB("Eubj+4g8dWA", _ZNSt14numeric_limitsIyE8digits10E) +STUB( + "EufVDB3Hnhg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEeqERKS9_) +STUB("Eul7AGEpjLo", sceAmprAprCommandBufferMapBegin) +STUB("EuvdPRQiK7g", _ZNK7WebCore17FrameLoaderClient24isEmptyFrameLoaderClientEv) +STUB("EuvnHP5UHos", Java_com_sony_gemstack_org_havi_ui_HBackgroundImageDecoder_freeSurface) +STUB( + "EuzR99wkjPs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEED1Ev) +STUB("Ev+2GetBNwE", _ZN3WTF9URLParser19parseURLEncodedFormENS_10StringViewE) +STUB("Ev0iNcSQkaQ", mono_assembly_close) +STUB("Ev1ElNAm6SE", GCC_except_table175) +STUB("Ev2wobaSotg", _ZN3sce7Toolkit2NP2V26Trophy7Request20GetTrophyPackSummaryD2Ev) +STUB("Ev3BqJ-U1Fg", FT_GlyphLoader_Reset) +STUB("Ev4YVLUDVe0", _ZNK7WebCore10ScrollView14useFixedLayoutEv) +STUB("Ev64kl21-zs", rgctx_fetch_trampoline_mrgctx_114) +STUB("Ev7SF7bb70o", _ZNK3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead11getOnlineIdEv) +STUB("EvAZolE3syo", _ZN3sce7Toolkit2NP2V212NetworkUtils13NetStateBasic5resetEv) +STUB("EvF-FcIJopU", mono_runtime_init) +STUB("EvKaSXRNt9o", sceValidationGpuGetErrorInfo) +STUB( + "EvKfBqZLwxg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE3endEv) +STUB( + "EvLNN3K++yo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB( + "EvNxm7Y1pI4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEC1Ev) +STUB("EvPDm3anqN4", _ZN3sce7Toolkit2NP2V28Matching7Request15SendRoomMessageC2Ev) +STUB( + "EvTs1Dmvn4Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("EvVXKPeuyiY", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V128SetMultiVariablesRequestBody17getNpServiceLabelEv) +STUB("Eva2i4D5J6I", _ZSt14set_unexpectedPFvvE) +STUB("EvaWvuniNCE", _ZN7WebCore14stopResolveDNSEm) +STUB("EvcZEqj6aPU", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V333PsnWebError_error_missingElements9nameIsSetEv) +STUB("EveUtaCYQgk", FTA_Remove_Module_truetype) +STUB( + "EviQs3RBmoM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEED1Ev) +STUB( + "Evq+NhTb3yg", + _ZN3sce2Np9CppWebApi14SessionManager2V146PatchPlayerSessionsSessionIdRequestBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_39PatchPlayerSessionsSessionIdRequestBodyEEE) +STUB( + "EvsNMHaw4jM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEC2EPS7_PFvS9_EPNS2_10LibContextE) +STUB("Evu+Yc14KgU", _Z26Ime_SetCaretGeometryNativemN3sce11playstation4core3Ime8ImeCaretE) +STUB("EvvQwl+bIv4", DvdMac) +STUB("EvwmfJ-sQEQ", sceKernelSetUpdatemode) +STUB( + "EvxfaXs-vUA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "EvyzxvKEZTo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEeqERKS9_) +STUB("Ew0nc8fY+h0", _ZN3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSessionD2Ev) +STUB( + "Ew680wM4Fdk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEeqERKS9_) +STUB( + "EwAktS7HFkc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE5beginEv) +STUB("EwC6IQrXGoY", sceSystemLoggerInitialize) +STUB("EwIYjHJpkKU", _ZN3sce2Np9CppWebApi12Leaderboards2V14User9unsetPcIdEv) +STUB( + "EwJQnIc2Kuo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEE7get_refEv) +STUB( + "EwJZK4vmFKk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEE11release_refEv) +STUB( + "EwKylsIEkdg", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead19setJoinableUserTypeERKNS3_22CustomJoinableUserTypeE) +STUB( + "EwMJCFvVvm8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB("EwNylPdWUTM", sceNpTrophy2GetTrophyInfo) +STUB( + "EwT0RLATwf0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEC1EPNS2_10LibContextE) +STUB("EwXvkZpo9Go", sceHmdInternalSetS3dPassMode) +STUB("EwZGwzhgDAA", _ZN7WebCore12GCController41setJavaScriptGarbageCollectorTimerEnabledEb) +STUB("Ewd+kXqU2Bc", SystemServiceParamGetInt) +STUB("EwdSfaUJOnI", _ZN3JSC12DateInstanceC1ERNS_2VMEPNS_9StructureE) +STUB("EwdhSaFjU7A", sceBufferAlloc) +STUB("EwfSRaPlCE4", sceShellCoreUtilGetCheckerString) +STUB("Ewg+pBX78M8", _ZNK7WebCore4File12lastModifiedEv) +STUB("EwhDKyvR0-Y", _ZN7WebCore20TransformationMatrix5flipYEv) +STUB("EwiJ5sn0kTg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEaSERS7_) +STUB("Ewj-FG9Kj7I", _ZN3JSC7Symbols29allocateTypedArrayPrivateNameE) +STUB("EwjWGcIOgeM", sceGnmDriverInternalRetrieveGnmInterfaceForHDRScopes) +STUB("Ewjywv3W4QA", sceSystemServiceGetSubAppTitleId) +STUB("EwkmP0c0c2Q", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13boolean5IsSetEv) +STUB( + "EwkqixgoDWM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEcvbEv) +STUB( + "Ewmb9Cjrssg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEC1EPS8_) +STUB( + "Ewu1XfryEQ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("EwuWGgfsy0U", ustr_hashICharsN_67) +STUB( + "EwyVTadJn8I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEED1Ev) +STUB( + "Ex+OAmhl6nk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEEC2ERSA_) +STUB("Ex+cnRETa4s", _ZN7WebCore9FrameView26adjustTiledBackingCoverageEv) +STUB( + "Ex1jfSDYa8k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEEaSERKSA_) +STUB( + "Ex5PhVJqazk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("Ex6oewvPS+o", ScePsmMonoArrayElementSize) +STUB("Ex6z08qINEI", _ZNK7WebCore24CoordinatedGraphicsLayer26isCoordinatedGraphicsLayerEv) +STUB("Ex9O99bavJU", _ItL_aT) +STUB( + "ExAXV609bRM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEED1Ev) +STUB( + "ExCBh6sNPWo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEE11get_deleterEv) +STUB("ExIJ4oFvvzU", _ZN4IPMI6Server12EventHandlerD0Ev) +STUB("ExLGXXGTfdI", _ZN7WebCore24CoordinatedGraphicsLayer36requestPendingTileCreationTimerFiredEv) +STUB("ExRR7lpqzvo", mono_btls_ssl_get_ciphers) +STUB("ExRWw8VYQ0U", _Z28scePlayGoDevGetHashTableInfoP25ScePlayGoDevHashTableInfo) +STUB("ExTBCFtg+Wc", _ZN7WebCore4Page40passiveTouchEventListenerRectsForTestingEv) +STUB( + "ExUMNp7syTM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("ExVINUt2j4U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEcvbEv) +STUB( + "ExazMHZlYGM", + _ZN7WebCore20SVGPathStringBuilder16curveToQuadraticERKNS_10FloatPointES3_NS_18PathCoordinateModeE) +STUB("ExeLuE3EQCQ", sceNpLwCondWait) +STUB("ExiSLfgc8Ds", __asan_stack_free_9) +STUB("ExiZtMOvZ-A", + _ZNK3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator16customData1IsSetEv) +STUB("Exk+A7qWe-o", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setBoolean9ERKb) +STUB("ExluI5X0llk", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setBoolean5ERKb) +STUB("ExontidGbqc", _ZN3JSC19iteratorForIterableERNS_9ExecStateEPNS_8JSObjectENS_7JSValueE) +STUB( + "Exq7qTyGZaA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("ExsvtKwhWoM", CA_MGMT_convertProtectedPKCS8KeyToKeyBlob) +STUB( + "Ey1QoQWEFxw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE3endEv) +STUB( + "Ey7RBmWkMS4", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitationsaSERS5_) +STUB("Ey7ZfkxjDsk", mono_aot_Sce_Vsh_DiscPlayerjit_code_end) +STUB( + "Ey7rLaDMuHk", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB( + "Ey9pCFtdCc0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEEC2Ev) +STUB("EyCwdRqOZTY", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request7GetFeedD1Ev) +STUB("EyD1Vj67-pU", _ZTVN7WebCore9GLContextE) +STUB("EyHDz7bL4q8", _ZN7WebCore12SharedBuffer21createFromReadingFileERKN3WTF6StringE) +STUB( + "EyJHv1J2h9o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEC2Ev) +STUB("EyJaNuOarus", _ZN3sce7Toolkit2NP2V27Ranking17GetGameDataResultD2Ev) +STUB("EyLiGmBVSo8", + _ZNK7WebCore13JSHTMLElement21pushEventHandlerScopeEPN3JSC14JSGlobalObjectEPNS1_7JSScopeE) +STUB("EySRvVSytPw", _ZNK7WebCore8DOMTimer15alignedFireTimeEN3WTF13MonotonicTimeE) +STUB("EyW-cASbo5g", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17GetGameDataResultEED2Ev) +STUB("EyWYVPvYnzg", _ZN3sce2Np9CppWebApi11UserProfile2V16AvatarD2Ev) +STUB( + "EyWl9MkM4f4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB("EyZ8aGsCW8g", _ZN12video_parser18cProfileCheckerMp4C2Ev) +STUB("Eye1lgCj9yo", sceKernelIccIndicatorStandbyShutdown) +STUB( + "EyePlSSS8dw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEE7add_refEv) +STUB("EygNpeJhPT8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEEdeEv) +STUB( + "Eyhneu+++7A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEdeEv) +STUB("EyhtbPFMWNA", _ZN3sce2np10MemoryFile4ReadEPNS0_6HandleEPvmPm) +STUB("Eyilh6sEB7Y", _ZN3sce7Toolkit2NP2V210Tournament20OneVsOneMatchDetailsC1Ev) +STUB("EyqqC2OwC9M", _ZN9Inspector27LayerTreeFrontendDispatchernaEm) +STUB("Eyr+rWtJgks", _ZN3WTF18dateToDaysFrom1970Eiii) +STUB("EyuEiAvlSDQ", Java_java_awt_GnmGraphics_nativeCopyArea) +STUB("EyvrFZ67-fo", sqlite3_value_double) +STUB("EyxwvvHBOTw", mono_aot_mscorlibunbox_trampolines) +STUB("Ez-Pj0QWgSc", WKBundleNavigationActionGetShouldOpenExternalURLs) +STUB("Ez2iQHniESc", sceDeci5CreateHostProcessAndWait) +STUB( + "Ez8HKmf+sK4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE5emptyEv) +STUB("Ez8gQSpXsec", fuse_add_direntry) +STUB("Ez8xjo9UF4E", recv) +STUB("EzAwc3tWi+o", _ZN2GK9PlayerPSN17cancelRequestGameEv) +STUB("EzGHWSQ-uko", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEC2Ev) +STUB("EzL6OajgmVk", _ZN7WebCore9HTMLNames13integrityAttrE) +STUB( + "EzNlP5WQTGI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE8pushBackERKS8_) +STUB( + "EzNwnMbgzsY", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEED2Ev) +STUB("EzPk-I96yfg", _ZN3sce7Toolkit2NP2V29Messaging12Notification16NewInGameMessageC1ERKS5_) +STUB("EzTlt0HmQsk", mono_property_get_parent) +STUB( + "EzUpYFDNf3Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEC2Ev) +STUB( + "EzV1XEVw0JQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEC2Ev) +STUB( + "EzWzd+BUIXE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE7popBackEv) +STUB("Eze5Qz4pO6A", _ZN3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate11setTeamNameEPKc) +STUB("EziLjfyTnKI", _sceNpAllocatorExStrndup) +STUB("EzuahjKzeGQ", _ZNSt15_Num_float_base15tinyness_beforeE) +STUB( + "EzvsEGrdNIU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEED1Ev) +STUB("EzzSJz6yuMc", sceFiosFHSyncSync) +STUB( + "EzzepK6GCrs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEmmEi) +STUB("Ezzq78ZgHPs", wcschr) +STUB("F+2mXPmh-7s", u_getNumericValue) +STUB( + "F+4oCUylxcM", + _ZN7WebCore22ScriptExecutionContext47canSuspendActiveDOMObjectsForDocumentSuspensionEPN3WTF6VectorIPNS_15ActiveDOMObjectELm0ENS1_15CrashOnOverflowELm16EEE) +STUB("F+7llwLcYHI", WKContextRefreshPlugIns) +STUB( + "F+AmVDFUyqM", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERx) +STUB("F+EdH4XRvTw", _ZN7WebCore28InspectorFrontendClientLocal8SettingsnwEmPv) +STUB( + "F+F5oI1D+RQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEE7get_refEv) +STUB("F+IvO6vqpbA", sceFsTransactionStart) +STUB("F+Mp2OR4H+c", _ZN3WTF11Persistence7Decoder21decodeFixedLengthDataEPhm) +STUB("F+URsD5wKoo", + _ZN3sce2Np9CppWebApi11UserProfile2V111PresenceApi28ParameterToGetBasicPresencesC1ERS5_) +STUB( + "F+VCZx1H9Uo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEixEm) +STUB( + "F+X+pzQfSoE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE10setContextEPNS2_10LibContextE) +STUB("F+Xbt14NwoU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEEmmEi) +STUB( + "F+afxtvvQ+k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEC1Ev) +STUB("F+cp2B3cWNU", + _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd) +STUB("F+eQlfcka98", sceNpTusGetMultiSlotVariable) +STUB("F+ehGYUe36Y", _ZNSt14_Num_ldbl_base15has_denorm_lossE) +STUB("F+hD7TU85Sw", _ZN3sce2np18HttpConnectionPool17ReleaseConnectionEi) +STUB("F+m2tOMgeTo", __atomic_load_4) +STUB("F+ogdDTLr1s", udtitvfmt_closeResult_67) +STUB("F+t58VrhPQg", _ZN12video_parser5vpcom6StringD2Ev) +STUB("F+xsDVy+gqw", sceLoginMgrServerNotifyHmdConnectInfo) +STUB("F+yfmduIBB8", scePthreadAttrSetstackaddr) +STUB("F-5EK+9Ue1Y", mono_aot_Sce_CloudClient_App_Platformjit_got) +STUB("F-7nYSizbvc", g_shell_parse_argv) +STUB("F-84AnXgtio", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16TrophyPackTrophyEE19setCustomReturnCodeEi) +STUB("F-AkFa9cABI", _ZN3sce2np4UserC2Ev) +STUB( + "F-DovztmM9Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEEC2Ev) +STUB("F-Fql-LTx4o", mono_get_void_class) +STUB( + "F-KitvVOrpQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "F-Tz7UzYtJ4", + _ZN15AbstractStorage4Item8set_metaERN23sceMetadataReaderWriter8MetadataERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEm) +STUB( + "F-UMwv0CiMU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEC1Ev) +STUB("F-XZNK6Y-p0", g_find_program_in_path) +STUB("F-bQmUqmTpI", _ZNK3sce4Json5ValueixERKSbIcSt11char_traitsIcENS0_8StlAllocIcEEE) +STUB("F-cW5QXnhxo", _ZNK7WebCore15CertificateInfo12isolatedCopyEv) +STUB( + "F-coDQKHI6Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEeqERKS9_) +STUB("F-ejRKJlEiQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEED1Ev) +STUB("F-g-G0oJegs", sceShellCoreUtilFillUpSpaceOnSmrHdd) +STUB( + "F-hFx3hm3Bw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEC1Ev) +STUB("F-iEWTPtfyw", WKPreferencesGetIsSecureContextAttributeEnabled) +STUB("F-iMNHd4L7I", scePssSoundPlayerGetSurroundPan) +STUB("F-nn3DvNKww", sceSystemServiceActivateMpeg2Abort) +STUB( + "F-pHtydHBT8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "F-q2n6JH4UQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE4sizeEv) +STUB("F-sVzaBbUCI", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V223FilterProfanityResponse11statusIsSetEv) +STUB("F-u9aPW-k64", _ZN7WebCore11MathMLNames5moTagE) +STUB("F-uVRMPiWzg", ulist_removeString_67) +STUB("F-vtAS2uuns", WKPageGetGapBetweenPages) +STUB("F-zFpvJdGSc", _ZN3sce2Np9CppWebApi13InGameCatalog2V515ContainerRating8setScoreERKf) +STUB("F0+00OPNsz8", __start__Zinit_array) +STUB("F00rJQ1aWWA", _ZN7WebCore19JSHTMLSelectElement14finishCreationERN3JSC2VME) +STUB( + "F05P+h4OpuM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEE11release_refEv) +STUB("F09B23u5GSU", _ZN15AbstractStorage14YoutubeContentD2Ev) +STUB("F0CGnQOq7rY", rgctx_fetch_trampoline_rgctx_121) +STUB("F0DWeYML2fs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEcvbEv) +STUB( + "F0Ed5JaJFns", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEaSERKS7_) +STUB( + "F0Er9SyqhkY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "F0I6kyFAA5E", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo22getxPsnAtomicOperationEv) +STUB("F0Mf2UJ06v8", _ZNK3WTF9MediaTimecvbEv) +STUB( + "F0RLanQwP-Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEED2Ev) +STUB("F0Sos4cB8Zg", sceEditMp4Terminate) +STUB("F0VSNgqS1+g", sceApplicationSystemReboot) +STUB( + "F0X4ZzUC2FY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEptEv) +STUB("F0XIzrG5yvw", sceLoginDialogClose) +STUB("F0Y42t-3e18", sceAgcDriverInitResourceRegistration) +STUB("F0ZOyF38ynA", isobmf_box_gettype) +STUB("F0ZXt5q0ZTA", sceAgcDriverGetDefaultOwner) +STUB("F0e60JHYx9M", _ZN9Inspector28InspectorScriptProfilerAgentnaEmPv) +STUB("F0fNBmtdOgo", _ZNK7WebCore18MessagePortChannel31hasAnyMessagesPendingOrInFlightEv) +STUB( + "F0nZMGk9sv0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEC1Ev) +STUB( + "F0ovT0t0MHI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("F0pINIU7TtY", WKPreferencesSetSuppressesIncrementalRendering) +STUB("F0rrNsJLnZ4", WKPreferencesSetRegionBasedColumnsEnabled) +STUB("F0wuEvioQd4", sceUserServiceGetGlsCameraPosition) +STUB("F0x0R2VBhKc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEEC1ERKS9_) +STUB("F0y9i1GoH34", _ZN3sce7Toolkit2NP2V26Friend7Request10GetFriends13MAX_PAGE_SIZEE) +STUB("F16solOlH-M", _ZN7WebCore4Path14addQuadCurveToERKNS_10FloatPointES3_) +STUB("F1FQRs9dX74", _ZN3sce2Np9CppWebApi13InGameCatalog2V513ContentRating8unsetUrlEv) +STUB("F1HbpPUnsvU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116InitialJoinStateEEmmEv) +STUB("F1J5HXb9feo", _ZN3WTF22removeProcessPrivilegeENS_16ProcessPrivilegeE) +STUB( + "F1J6P2zePBU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "F1JIOENWUso", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEppEi) +STUB("F1P+-wpxQow", sceNpPartyGetMemberInfo) +STUB("F1P8FVovKRs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEEaSERS7_) +STUB( + "F1UGagOmV1Q", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEdeEv) +STUB( + "F1UPnxDvAPQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE5emptyEv) +STUB("F1XWLxplruo", sceMoveTrackerPlayStep) +STUB( + "F1Ydt9e4hAg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("F1dCP7qkqok", sceFiosTimeIntervalFromNanoseconds) +STUB("F1eYELxTKGQ", WKOriginDataManagerGetTypeID) +STUB("F1gzOpSRDHY", _ZN7WebCore11MathMLNames8moverTagE) +STUB( + "F1jzcqU0BV0", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEEiRNS2_10LibContextEPT_m) +STUB("F1nFfw-1gX0", _Z26sceRazorGpuThreadTraceSavePKc) +STUB("F1o13VbrKb4", _ZN7WebCore9SampleMap9addSampleERNS_11MediaSampleE) +STUB("F1zx98TJiz4", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V18SortModeEEneERKS7_) +STUB("F20xA1NsG9s", sceShellCoreUtilDeclareEndOfExternalStorageAppMove) +STUB("F27xQUBtNdU", _ZNKSt8ios_base7failure8_DoraiseEv) +STUB( + "F29Whg2qTMM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEppEv) +STUB("F2A0G-vIz0k", _ZN7WebCore18TextureMapperLayer26computeTransformsRecursiveEv) +STUB( + "F2F49IWey6w", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEptEv) +STUB( + "F2T-o4cdLAE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEE6assignEPS5_PFvS7_EPNS2_10LibContextE) +STUB("F2T58EyY+rU", g_PS4TitleNPSecret) +STUB("F2YtR1KDZL8", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V115LastUpdatedUser12setAccountIdEPKc) +STUB("F2ZShEhLU8Y", cairo_user_to_device_distance) +STUB("F2alK5FIh2Y", monoeg_g_list_copy) +STUB( + "F2bVezCk4e0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEE3getEv) +STUB( + "F2bbUSXj910", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEptEv) +STUB( + "F2df5HzFU2I", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEeqERKS9_) +STUB("F2dxLUl-PKo", _ZN3JSC22DeferredWatchpointFireC2ERNS_2VME) +STUB( + "F2fffKdiys8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE5emptyEv) +STUB("F2hoSCv-7Io", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEdeEv) +STUB( + "F2i8OCaSTMg", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "F2jfKooWAr0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEEC2Ev) +STUB("F2lKLnZwroM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEC1ERKS7_) +STUB("F2mHImVJQPM", WKBundlePageOverlayFractionFadedIn) +STUB("F2nN1dBDiyM", _ZN6icu_6713UnicodeStringD2Ev) +STUB( + "F2tstga0tRw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEC2EPS6_PNS2_10LibContextE) +STUB( + "F2u7VJoHjSM", + _ZN7WebCorelsERN3WTF10TextStreamERKNS0_6VectorImLm0ENS0_15CrashOnOverflowELm16ENS0_10FastMallocEEE) +STUB("F2uJJj9ieBQ", _ZNK7WebCore11MessagePort18isLocallyReachableEv) +STUB("F2uQDOc7fMo", _ZNSt14numeric_limitsIyE9is_signedE) +STUB( + "F2uUdOnPf9U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEED2Ev) +STUB("F2umEBpQFHc", _ZN3sce2np9WorkQueue11GetItemByIdEi) +STUB("F2w5pQ+lv0o", sceRazorCpuBeginArchiveFileAccess) +STUB("F2xYmg5DiR4", _ZN3sce2np3ipc17ServiceIpmiClient11findServiceEi) +STUB( + "F2y4z7mTHxY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEED2Ev) +STUB("F3149N0oKZQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEppEi) +STUB("F31VqfrQ80A", sceAudiodecCreateDecoderEx) +STUB( + "F32U5xyG0oU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEaSERKS7_) +STUB("F35Uj-GMte0", glDrawArraysInstancedEXT) +STUB("F3877Ru6Rgo", _Z28scePlayGoEmuFsGetChunkStatustPtPh) +STUB("F3Cug8WEm8k", sceFsPartitionTrim) +STUB( + "F3CwcPgmCAc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("F3DpTj5CpPg", _ZN7WebCore17JSDOMGlobalObject7destroyEPN3JSC6JSCellE) +STUB("F3Eg4srFrVw", + _ZNK3sce2Np9CppWebApi14SessionManager2V130ResponsePlayerSessionSpectator12getAccountIdEv) +STUB( + "F3GUko3Mpy8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "F3HPtJ8MuJ0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEE11release_refEv) +STUB("F3ILcSPTa-c", _ZN9Inspector31ConsoleBackendDispatcherHandlerC2ERKS0_) +STUB( + "F3MBqzsVZeY", + _ZN7WebCore15ArchiveResource6createEON3WTF6RefPtrINS_12SharedBufferENS1_13DumbPtrTraitsIS3_EEEERKNS_3URLERKNS1_6StringESD_SD_RKNS_16ResourceResponseE) +STUB( + "F3NH0spuwMQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEmmEi) +STUB( + "F3PSXxsT11s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE5clearEv) +STUB( + "F3Q8Y6SrfGw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE21intrusive_ptr_add_refEPS9_) +STUB("F3WhQ4dxW5o", GCC_except_table37) +STUB( + "F3bLOHFhS-o", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB( + "F3pHDDRiX60", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody35getComparedLastUpdatedUserAccountIdEv) +STUB("F3qDSOTQ1sU", mono_aot_Sce_Vsh_AppInstUtilWrapperunbox_trampolines_end) +STUB("F3tYXMleY-k", mono_aot_Sce_Vsh_VideoEdit_Wrapperjit_code_start) +STUB("F3v3ysCMIuw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEEmmEi) +STUB( + "F3zFreULt98", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("F4+UVdi0PgY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEED2Ev) +STUB( + "F4+qkV+3vAs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEEdeEv) +STUB("F4-Cii7JB-E", _ZN7WebCore12ChromeClient28clearPlaybackControlsManagerEv) +STUB( + "F40Gbw0dMfs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("F43XzupHfoo", _ZN3sce7Toolkit2NP2V28Commerce19ServiceEntitlementsD1Ev) +STUB( + "F45mMCGKT+0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE6resizeEj) +STUB( + "F48mrWHvorw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEEC1Ev) +STUB("F4AnS9A-OSc", WKPageGetMediaState) +STUB("F4F9g24xmvQ", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEEC1ERKS6_) +STUB("F4Kib3Mb0wI", sceKernelGetSanitizerNewReplace) +STUB("F4KlEMYCWXE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEEaSERS9_) +STUB("F4Le3nyuYA8", monoeg_g_slist_prepend) +STUB( + "F4QKzAV-Qms", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("F4VhavRKwcw", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V115NatConnectivityC1EPNS1_6Common10LibContextE) +STUB("F4aEZgffle0", sceUserServiceCreateSharePlayClientUser) +STUB("F4jRPgXyp60", _ZN7WebCore9HTMLNames28onwebkitfullscreenchangeAttrE) +STUB( + "F4k18pLoYTQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEC2Ev) +STUB( + "F4kzW65-I90", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB("F4nK8I4PVvw", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEEmmEv) +STUB("F4nrEfi-M84", sceVdecCoreSetDecodeInput) +STUB("F4pQ5tsDo74", sceSlimglIPCSetup) +STUB( + "F4sJ-phip74", + _ZN3sce2Np9CppWebApi11Matchmaking2V116AttributeFactory6createEPNS1_6Common10LibContextEPKcNS3_13AttributeTypeES9_PNS5_12IntrusivePtrINS3_9AttributeEEE) +STUB( + "F4uG-0FGN74", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEEaSERSA_) +STUB("F4w2atwG428", sceMoveTrackerInit) +STUB("F4wrULqVMpE", _ZN7WebCore24MatrixTransformOperationD0Ev) +STUB("F4xfUw8Mo+A", _ZN3WTF10StringImpl7replaceEDsPKhj) +STUB("F4zG4YSZT1Q", wcstok.nullstr) +STUB("F4zedmRTZ-s", Java_com_sony_gemstack_org_dvb_application_AppProxyImpl_n_1init) +STUB("F5+qn-OEl80", + _ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest20childActivitiesIsSetEv) +STUB("F5-TEtpR904", mono_aot_System_ServiceModel_Webjit_code_end) +STUB("F55EB8F2+TU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEEC1ERKS7_) +STUB( + "F55zS-EuT1g", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEdeEv) +STUB("F59F0ZNVcHU", _ZN3JSC2VM20mapIteratorSpaceSlowEv) +STUB("F5JF36X3ATs", _ZN4Manx13KeyboardEventC2ENS0_4TypeEibbbbb) +STUB( + "F5LskrCzNeQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEE3getEv) +STUB( + "F5Up4uEenjU", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("F5XJY1XHa3Y", sceGnmSqttSelectTokens) +STUB( + "F5ZT5gA9WcM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEppEi) +STUB( + "F5h+T-D+SCk", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi31listEdgeOnlineId2AccountIdBatchEiRKNS4_42ParameterToListEdgeOnlineId2AccountIdBatchERNS1_6Common11TransactionINS8_12IntrusivePtrINS8_6VectorINSA_INS3_11OnlineIdMapEEEEEEENSA_INS4_46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEEE) +STUB( + "F5jGr+eZLKc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("F5plZg-sI2g", _ZN3sce7Toolkit2NP2V212EventsClient5EventC2ERKS4_) +STUB( + "F5uQ6U6czrg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEED2Ev) +STUB( + "F5yaU6TEU8g", + _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody8setUsersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_4UserEEEEE) +STUB( + "F64YvSbKbBE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("F64ZVTNoUkE", delegate_virtual_invoke_3_p) +STUB( + "F668broqvSU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEEdeEv) +STUB( + "F66LuHM8w-k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("F66cDxrHjkg", mono_aot_Sce_PlayStation_Coreunwind_info) +STUB("F69qOv2tB+w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEEC1Ev) +STUB( + "F6ALCip-QVg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEdeEv) +STUB( + "F6BxdO+leyQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEEC2ERSA_) +STUB("F6E4ycq9Dbg", sceNpGetUserIdByOnlineId) +STUB("F6E6lfL1GuM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEED1Ev) +STUB("F6FftBCNduo", JVM_IsNaN) +STUB("F6G1N6EbSRc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEEC2ERKS9_) +STUB("F6I3W3FwovU", il2cpp_property_get_parent) +STUB( + "F6TbqOU1QGo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEEC1ERKSA_) +STUB("F6USm2eC+ps", _ZN12Mp4Retriever14processMinfBoxEv) +STUB("F6Y46kLqXEQ", sceShellCoreUtilNotificatonRequestedForIDU) +STUB("F6cJ1mb8a3k", __sanitizer_annotate_contiguous_container) +STUB("F6cMNnTEcjU", WKPreferencesSetAllowMediaContentTypesRequiringHardwareSupportAsFallback) +STUB("F6cWO0eoF6s", _ZNK3sce2Np9CppWebApi7Matches2V116JoinMatchRequest6toJsonERNS_4Json5ValueEb) +STUB( + "F6cWxIx+kIQ", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE8sendDataEPKvm) +STUB( + "F6cl3MZpGV0", + _ZN7WebCore7Element34setAttributeWithoutSynchronizationERKNS_13QualifiedNameERKN3WTF10AtomStringE) +STUB("F6e0kwo4cnk", sceKernelTriggerUserEvent) +STUB("F6g64Yst1FQ", + _ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends9setoffsetEi) +STUB( + "F6gjo9f5Ne8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("F6hnPpozF2M", WKBundleNodeHandleSetHTMLInputElementAutoFillButtonEnabledWithButtonType) +STUB( + "F6hvvhlbciA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("F6kf+33gnwk", _ZN7WebCore6Editor22styleForSelectionStartEPNS_5FrameERPNS_4NodeE) +STUB("F6nSMD-W0aI", + _ZN3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession14setSessionNameEPKc) +STUB( + "F6oBD4AlMFI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEixEm) +STUB("F6pGveCt2Ho", _ZN7WebCore9FrameView20setCanHaveScrollbarsEb) +STUB("F6tunp5+4ZM", _ZN15AbstractStorage12SerializableC1Ev) +STUB( + "F6vb+yPPv9s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEE5resetEPS9_) +STUB("F6zbHtndY4Y", WKPreferencesGetLongMousePressEnabled) +STUB("F70KBaPW924", scePs2EmuMenuDialogInitialize) +STUB( + "F75Zs6qPXYY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEE7add_refEv) +STUB("F76QpBylM0I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEE11release_refEv) +STUB( + "F76vz6hLneA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEC2ERKS7_) +STUB("F78ECICRxho", __ledf2) +STUB("F78Jg0igNZs", mono_jit_info_table_find) +STUB("F7CUCpiasec", _ZNSt10moneypunctIcLb1EED2Ev) +STUB("F7DUp2PfxK0", _ZN3sce7Toolkit2NP2V23TUS25TusDataStatusForCrossSaveC1Ev) +STUB( + "F7Qihqqrpkc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("F7Sndm5teWw", sceHmdReprojectionStopCapture) +STUB("F7dMbQcpSXQ", __asan_stack_malloc_always_1) +STUB("F7fNJZaRFnU", __libunwind_Unwind_GetRegionStart) +STUB( + "F7gPjhvaRJU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEmmEv) +STUB("F7gcH2DGnpA", uspoof_setAllowedLocales_67) +STUB("F7geI3o4PzI", sceUserServiceSetGlsSortOrder) +STUB("F7l8ZqgNcm0", ucol_previous_67) +STUB("F7nxTXHZ95k", _ZN3JSC20failNextNewCodeBlockEPNS_9ExecStateE) +STUB("F7ooCb4rfS0", GCC_except_table165) +STUB( + "F7q3G1G6IIM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEEC1ERKS9_) +STUB( + "F7s+Gj+PXr0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE7popBackEv) +STUB("F7trORiQaSc", _ZN7WebCore21DiagnosticLoggingKeys28activeInBackgroundTabOnlyKeyEv) +STUB("F7wS7FbfumQ", sceVoiceQoSSetLocalEndpointAttribute) +STUB("F7whoytBofE", sceFiosIsSuspended) +STUB( + "F7zBh34jUcM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V138SetMultiVariablesRequestBody_variables8fromJsonERKNS_4Json5ValueE) +STUB( + "F8-Ugm+4Q8E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEppEi) +STUB("F81hKe2k2tg", fgetws) +STUB( + "F83rIGWzvIs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("F84SCsbc8+s", _ZStL5wfout) +STUB("F8AIoVlzTww", mono_btls_x509_lookup_mono_free) +STUB("F8BZSnKdJGM", _ZN7WebCore9HTMLNames16aria_setsizeAttrE) +STUB("F8BjVmFyYLg", _ZN3sce2Np9CppWebApi7Matches2V114ResponseMemberD2Ev) +STUB( + "F8J2eOg1yMs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEC2Ev) +STUB( + "F8Lt8SxK-vY", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBody5getToEv) +STUB("F8NLhWvFemI", sceAgcAcbQueueEndOfShaderActionGetSize) +STUB("F8SVjLhhPs4", _ZN7WebCore9HTMLNames4initEv) +STUB("F8Tdzi8dFwg", delegate_virtual_invoke_imt_m_7_p) +STUB("F8WuSFdu4is", _ZN3WTF14AtomStringImpl6lookUpEPKDsj) +STUB("F8aomqtpD98", sceVisionManagerRequestFindUser) +STUB("F8b+Wb-YQVs", wmemmove_s) +STUB("F8bUHwAG284", scePthreadMutexattrInit) +STUB("F8c+NpXFNdI", + _ZN3sce2Np9CppWebApi14SessionManager2V116FromNonPsnMemberC2EPNS1_6Common10LibContextE) +STUB("F8eFQFx6JhU", _ZN3sce2Np9CppWebApi7Matches2V116RequestMatchTeam11setTeamNameEPKc) +STUB( + "F8fnNp4ci7M", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB( + "F8g4PHGZ1Gs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEC1EPS8_) +STUB("F8gSmCrblRU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V112TicketStatusEEeqERKS7_) +STUB( + "F8kWDrMMrdk", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("F8luFJ2FEPY", _ZN3sce7Toolkit2NP2V23TUS7Request12SetVariablesC1Ev) +STUB("F8on+5POdxA", _ZN4Manx13WorkQueueImpl28unregisterSocketEventHandlerEi) +STUB( + "F8ploJkzdw0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEC1EPNS2_10LibContextE) +STUB( + "F8ztC84hf24", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEE11release_refEv) +STUB("F963GLVx2ek", _ZN7WebCore16ISOSchemeTypeBox5parseERN3JSC8DataViewERj) +STUB( + "F98YLZc7bsM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEC1Ev) +STUB("F98laITjKEg", _ZN7WebCore17LibWebRTCProviderD0Ev) +STUB( + "F9CIeXtjOWE", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersC2Ev) +STUB("F9Fb9yjLvwI", _ZNK3sce2np14JsonStringImpl5CloneEP14SceNpAllocator) +STUB( + "F9HtJ08qQIs", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditions10initializeEPNS1_6Common10LibContextEPKciNS6_12IntrusivePtrINS3_36SetVariableWithConditionsRequestBodyEEE) +STUB( + "F9L8T5NgwBQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEEC2ERKSA_) +STUB("F9LZ1EbJnfo", sceKernelGetCpumodeGame) +STUB( + "F9Q4gwuT+uc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEC1EPNS2_10LibContextE) +STUB("F9R+0Hh-hE0", _ZN3NTF17URLRequestMessage17setIsMainResourceEb) +STUB( + "F9Soa9Wv8L4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEED2Ev) +STUB( + "F9a26lhcTpE", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot11unsetoffsetEv) +STUB("F9bDxOEGeA8", _ZN3WTF22CrossThreadTaskHandlerD2Ev) +STUB("F9gmz-sU-Z4", sceCompositorGetDummySize) +STUB("F9iDGS9ddCM", scePadLastLotusButtonData) +STUB("F9iLEZoUOtE", _ZN3sce7Toolkit2NP2V28Commerce9ContainerC2Ev) +STUB("F9khEfgTmsE", _ZN3sce2np4TimeplERKS1_) +STUB( + "F9l1q0F0CRE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("F9mo10yTzKs", _Z38sceGpuDebuggerGetEnabledExceptionsMaskPKN3sce3Gnm16LsStageRegistersEPj) +STUB("F9ozKElq1Mw", _ZN3sce2Np9CppWebApi7Matches2V119RequestMatchResults22unsetCooperativeResultEv) +STUB( + "F9sGcGTTF6k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEE7get_refEv) +STUB("F9xskYej0KY", _ZNK7WebCore29DeprecatedCSSOMPrimitiveValue16getRGBColorValueEv) +STUB( + "F9ygy5izHro", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEplEm) +STUB("FA-B27CW4RQ", sceMbusDebugSetPriority) +STUB( + "FA08+lU4RGM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEE7get_refEv) +STUB( + "FA440wTsG58", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "FA4YGemSVEY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("FA5W-aFckfU", _ZN9Inspector14InjectedScriptD0Ev) +STUB("FA6DokxKoxg", _ZN7WebCore16DocumentTimeline16resumeAnimationsEv) +STUB("FA7dUleeGik", sceFiosOpCancel) +STUB("FABHqGyYu4I", mono_aot_Sce_Vsh_Stickerunbox_trampoline_addresses) +STUB( + "FABdOG6k27s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEE7get_refEv) +STUB( + "FAF+U9pj3Vk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEeqERKS9_) +STUB("FAKbB9NPYHA", _ZNK7WebCore13FetchResponse16resourceResponseEv) +STUB("FAKxcUW+Pqk", UI_method_get_opener) +STUB("FAKyzglgBnQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEC2Ev) +STUB( + "FAOQP39scOk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEEC1Ev) +STUB("FAQjhfUrYTY", _ZN3sce7Toolkit2NP2V210Tournament15RegisteredTeamsC2ERKS4_) +STUB( + "FARZzj70WEQ", + _ZN9Inspector27AnimationFrontendDispatcher16animationCreatedEN3WTF6RefPtrINS_8Protocol9Animation9AnimationENS1_13DumbPtrTraitsIS5_EEEE) +STUB( + "FASHHppuH2Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "FAU5OETP+F0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEEC1ERKS9_) +STUB( + "FAZqyOE6GtA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEmmEi) +STUB("FAah-AY8+vY", _ZTSSt11_Facet_base) +STUB("FAeGfmN1Dio", _ZNK7WebCore24RotateTransformOperation4dumpERN3WTF10TextStreamE) +STUB( + "FAeup1oE8XY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE21intrusive_ptr_add_refEPS7_) +STUB( + "FAk3SVqgJNE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEC1EPS6_PNS2_10LibContextE) +STUB("FAqD7n94bYY", sceDebugInitForCoredump) +STUB("FAreWopdBvE", _LXp_invx) +STUB( + "FAuaGGltB4Q", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEneERKS9_) +STUB( + "FB+zeHo2ADA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("FB4JbLYOZmA", _ZN9Inspector22InspectorDebuggerAgentD1Ev) +STUB( + "FB6Wl5h3IVU", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetInteger3Ev) +STUB("FB9S-dovCx0", _ZN7WebCore20UserGestureIndicator18currentUserGestureEv) +STUB("FBABlmX5ktY", _ZN7WebCore9HTMLNames6kbdTagE) +STUB("FBCE8LMRNAQ", sceMusicCoreServerGetPlayStartCondition) +STUB( + "FBCM2xdncWo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEE3getEv) +STUB( + "FBFgLBHW4RA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEeqERKS9_) +STUB( + "FBM5JrggMvg", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEiRNS2_10LibContextEPT_m) +STUB( + "FBND2HA9gNE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE10setContextEPNS2_10LibContextE) +STUB( + "FBNI-sshANw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEEC2ERKSA_) +STUB( + "FBQeSm45UyY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "FBRtlLRABts", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE21intrusive_ptr_sub_refEPS9_) +STUB("FBUmWqGJHs8", mono_allocator_strdup_printf) +STUB( + "FBVoRKMrisA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEcvbEv) +STUB( + "FBXK-lfTx0Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEC1ERKS7_) +STUB( + "FBePYJidCUU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEEptEv) +STUB( + "FBgtH0JXtAU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEED2Ev) +STUB( + "FBjmYXkzQL8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEE11release_refEv) +STUB("FBqILEKqTbk", _ZN7WebCore6Editor21insertTextPlaceholderERKNS_7IntSizeE) +STUB("FBqnPsPwRsY", _ZN3NTF17URLRequestDataJob5startEb) +STUB( + "FBx9+zlrXkk", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_19ProductInfoDetailedENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB("FC2Iy9XAhrE", + _ZN7bmalloc15IsoHeapImplBase16finishScavengingERNS_6VectorINS_16DeferredDecommitEEE) +STUB("FC7E1riolAM", _ZN15AbstractStorage14MemfileContent4ReadEPvlPl) +STUB( + "FC8jUAxtaNY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEneERKS9_) +STUB("FCD1HduAwWQ", sceSystemLogger2SetEventAsyncEx) +STUB( + "FCE30pnVnZc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEEC1ERKSA_) +STUB("FCELJ0M6+v8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEE7get_refEv) +STUB( + "FCMwtKXijpE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEE5resetEPS9_) +STUB("FCN5sMrQJrQ", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEEixEm) +STUB("FCPRm6IOCCM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEixEm) +STUB( + "FCQSXNccn8s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE8copyFromERKS9_) +STUB("FCSUVvY-0RM", _ZNK15AbstractStorage14MemfileContent7GetStatEPNS_4StatE) +STUB("FCSjphAR2aA", _ZN7WebCore9HTMLNames10onloadAttrE) +STUB("FCYMDgYo3CQ", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119PlayStyleProperties14getCompetitiveEv) +STUB( + "FCbkGMqZDbY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEEdeEv) +STUB("FCcPee0M5uw", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable20lastUpdatedUserIsSetEv) +STUB( + "FCcX5Swgy1M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEC2EPNS2_10LibContextE) +STUB("FCcmRZhWtOk", pwritev) +STUB("FCgBeI1DH8A", _ZN12video_parser12cVpFileCache5fsizeEPy) +STUB("FCgEdpbhY04", _ZN7WebCore9HTMLNames7formTagE) +STUB("FCgpSDPilWk", _ZN3JSC7Symbols41getAsyncGeneratorInternalFieldPrivateNameE) +STUB( + "FClr6-hkMx4", + _ZN7WebCore5Event6createERKN3WTF10AtomStringENS0_9CanBubbleENS0_12IsCancelableENS0_10IsComposedE) +STUB("FCm3IYsmcVM", __tsan_atomic32_fetch_or) +STUB( + "FCqgypxqHpY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEC1EPS6_PNS2_10LibContextE) +STUB("FCuvlxsgg0w", _ZTISt24_Iostream_error_category) +STUB("FCx2DacLDWs", u_strcasecmp) +STUB("FCyEmxhHRsk", _ZN7WebCore9JSDOMRectD1Ev) +STUB("FCygF4Ec4so", sceContentExportStart) +STUB("FD7Kfj4cCDs", _ZN3WTF15ThreadConditionD2Ev) +STUB("FDAvHQuI70c", sceVideoRecordingCloseByHandle) +STUB("FDDqKE1WhCI", _ZN7WebCore8SVGNames11altGlyphTagE) +STUB( + "FDEK4CLipWw", + _ZN7WebCore31CrossOriginPreflightResultCache16canSkipPreflightERKN3WTF6StringERKNS_3URLENS_23StoredCredentialsPolicyES4_RKNS_13HTTPHeaderMapE) +STUB("FDHnwGEShOQ", _ZN3JSC7JSArray9setLengthEPNS_14JSGlobalObjectEjb) +STUB("FDHr4Iz7dQU", sceNetConfigAddMRoute) +STUB("FDNqBnvnrmo", + _ZN7WebCore12ChromeClient34recommendedScrollbarStyleDidChangeENS_14ScrollbarStyleE) +STUB( + "FDOBUXjWPqI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEC1EPS8_) +STUB( + "FDSb1wuEPH8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEE7add_refEv) +STUB("FDStlKcia7Y", _ZN7WebCore22DefaultFilterOperationD1Ev) +STUB("FDTCx504LA0", __ubsan_vptr_type_cache) +STUB("FDTOhhPHtps", sceVideoOutSysConfigureLayout) +STUB( + "FDbRjn2utOs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEdeEv) +STUB( + "FDg-qTsN1qo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEEC2ERSA_) +STUB( + "FDmPC5XErno", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEEaSERKSA_) +STUB( + "FDmQHCu3qqk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEEC2ERSA_) +STUB("FDoikEnKM7g", rgctx_fetch_trampoline_rgctx_24) +STUB("FDqeAJDT+TM", _Z17destroyIpcChanneli) +STUB( + "FDr5ORTfrr0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEaSERKS9_) +STUB( + "FE2Me5xQzVA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("FE94b7OBZGA", _ZN3sce7Toolkit2NP2V212ActivityFeed11SharedVideoD1Ev) +STUB( + "FEBiqtQqIXw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("FECzfU3XrrE", _ZN3sce7Toolkit2NP2V212ActivityFeed7CaptionC1Ev) +STUB("FEFV7Ogfd8E", _ZN3WTF15AutomaticThread5startERKNS_14AbstractLockerE) +STUB( + "FEFqfuXeWqI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEneERKS9_) +STUB("FEIR6uKyeeE", sceDevUsbWriteHost) +STUB( + "FELSRtjBFtE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEE7add_refEv) +STUB( + "FEPPjxShnlU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE3endEv) +STUB("FEU0ygVamU4", JSObjectGetArrayBufferBytesPtr) +STUB("FEWhRykt9L0", _ZNK7WebCore16HTMLMediaElement7seekingEv) +STUB("FEYGFUlSCVQ", sceNpManagerIntIsSystem) +STUB("FEYYkBx7Yv8", SHA384_Init) +STUB( + "FEaJWtA4i+I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEED2Ev) +STUB("FEafYUcxEGo", sceFontGetRenderScalePoint) +STUB( + "FEbaaE9hXto", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("FEdkOG1VbQo", sceNetCtlGetScanInfoByBssidIpcInt) +STUB( + "FEejWjSYWfE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE5beginEv) +STUB("FEgDnEoI4SQ", _ZN3sce7Toolkit2NP2V27NpUtils7Request17CheckAvailabilityC2Ev) +STUB("FEggDzehrjw", _ZNK3sce2Np9CppWebApi7Matches2V118CreateMatchRequest17inGameRosterIsSetEv) +STUB("FEiqqdDLczo", _ZN7WebCore9HTMLNames10methodAttrE) +STUB( + "FEkG+ghCo88", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEC2EPS8_) +STUB("FEkLrSser8s", _ZN7WebCore7IntRect5scaleEf) +STUB( + "FEmrOjuH0mk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE5clearEv) +STUB("FEnPMEzVYzA", rgctx_fetch_trampoline_rgctx_117) +STUB( + "FEoifjKIWdk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE21intrusive_ptr_sub_refEPS9_) +STUB("FEstcM511Bs", unum_getAttribute_67) +STUB("FEtOJURNey0", wprintf_s) +STUB( + "FEu1YP9T60E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEEC1Ev) +STUB( + "FEu1f3FzXEs", + _ZN15AbstractStorage11LocalFolder10NewContentERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_7ContentEE) +STUB("FEv7YlZcAhk", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12EventsClient6EventsEE3setEv) +STUB("FF2LpsJxclY", sceDebugClearStepThread) +STUB("FF3Bpy-+5aE", WKPreferencesGetHTTPEquivEnabled) +STUB("FF7t-vxbO9I", + _ZNK3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator10getNatTypeEv) +STUB("FFAsBnL6r28", sceCesUcsToJiscs) +STUB( + "FFCR0-ZETz8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEC2Ev) +STUB( + "FFDIQc3t1TM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEED1Ev) +STUB("FFEmClnxtds", mono_aot_Sce_Vsh_VideoServiceWrapperjit_code_start) +STUB( + "FFFhWCcPg6M", + _ZN9Inspector21PageBackendDispatcher16setEmulatedMediaElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("FFGrIADI-ko", _ZN7WebCore14DocumentLoader23applyPoliciesToSettingsEv) +STUB( + "FFIZy5mWuRE", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V115FrequentlyMuted9setGlobalERKNS1_6Common12IntrusivePtrINS3_25FrequentlyMutedPropertiesEEE) +STUB( + "FFKIzXsYKps", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEplEm) +STUB("FFQ99YStuJU", _ZN7WebCore17FrameLoaderClient20willInjectUserScriptERNS_15DOMWrapperWorldE) +STUB("FFRePk+rFTA", uprv_getNaN_67) +STUB("FFS315Iuhh8", mono_shared_area) +STUB("FFVZcCu3zWU", sceGnmGetOffChipTessellationBufferSize) +STUB( + "FFaNcmwnhFk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEmmEi) +STUB( + "FFbduCaDu1Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEC2EPS8_) +STUB("FFbs7VK+504", _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody10unsetLimitEv) +STUB("FFkX5-S-pWs", + _ZN7WebCore12SharedBuffer6createEON3WTF6VectorIhLm0ENS1_15CrashOnOverflowELm16EEE) +STUB( + "FFpHQa3Cg+E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEC1ERKS7_) +STUB( + "FFyvRCOVcRo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEC2Ev) +STUB("FFz6NY6O3Rs", _ZN7WebCore8SVGNames10methodAttrE) +STUB("FG-AeXp6J30", _ZN3sce7Toolkit2NP2V26Friend7Request22DisplayBlockUserDialogC1Ev) +STUB( + "FG0IgLSoX9g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEC2Ev) +STUB("FG0yVorh6kA", __asan_report_exp_load_n_noabort) +STUB( + "FG2XYsInsoI", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setInteger5ERKi) +STUB("FG3MfV7yxYc", rgctx_fetch_trampoline_rgctx_91) +STUB( + "FG7RJA0imqk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEdeEv) +STUB("FGFb8rldXJ0", _ZNK7WebCore27TranslateTransformOperation1zERKNS_9FloatSizeE) +STUB( + "FGIoRi2Zo8Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEC1Ev) +STUB("FGKZ7P+hueQ", _ZN3WTF8JSONImpl5ValueC2ENS1_4TypeE) +STUB("FGLZgF6NUTo", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEEdeEv) +STUB("FGQKSv78rMY", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V18PlatformEEC2EPS6_) +STUB( + "FGQW0BK5Xjg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("FGVtpgkhnt4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge10ChallengesEEC1Ev) +STUB("FGYellVj5iA", _ZN3JSC22FullGCActivityCallback11gcTimeSliceEm) +STUB("FGjjp4Q9nh4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE5emptyEv) +STUB("FGkHz99w5g4", WKPreferencesSetScreenFontSubstitutionEnabled) +STUB( + "FGm8LMvmnP8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEeqERKS9_) +STUB( + "FGmrGuHQr6E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE10setContextEPNS2_10LibContextE) +STUB("FGotBpRW4fs", _ZN7WebCore27AuthenticationChallengeBase7nullifyEv) +STUB("FGr1ZFJX3GU", _ZN3sce7Toolkit2NP2V28Commerce7Request25DisplayDownloadListDialogD1Ev) +STUB( + "FGrRAKtdub8", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions20unsetjoinStateFilterEv) +STUB( + "FGsbe8V40yA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "FGx16jKbGO0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("FH54s41kXRo", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container8setLabelEPKc) +STUB( + "FH6cpBv7tHo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "FHBcXPoyfj0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEED2Ev) +STUB("FHErahnajkw", _Atan) +STUB("FHJlhz0wVts", _WStoflt) +STUB("FHOfKEKv5bw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE5beginEv) +STUB("FHSNfxQFEdA", u_getIntPropertyMinValue) +STUB( + "FHSTA1X1AtU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEC1EPS8_) +STUB( + "FHThj52L8Zg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEEptEv) +STUB( + "FHTkCrFOp3s", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEdeEv) +STUB("FHTsMLypt6s", udatpg_openBaseSkeletons_67) +STUB("FHdeCFVf-f8", FT_Stream_EnterFrame) +STUB( + "FHfpa+Rs+cg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEneERKS9_) +STUB("FHiaFaawCm4", mono_aot_System_Resources_ResourceManagerunwind_info) +STUB( + "FHjKKIFWl-o", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEEiRNS2_10LibContextEPT_m) +STUB( + "FHlvn6PPP+g", + _ZN9Inspector20DOMBackendDispatcher12setOuterHTMLElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "FHo+9uUSx9Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("FHpaPyt9iz4", _ZN3sce7Toolkit2NP2V27Session7Request6Search13MAX_PAGE_SIZEE) +STUB( + "FHtfdONBzhI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB("FI+VqGdttvI", sceSystemServiceChangeAcpClock) +STUB("FI+cFRCAE1Y", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13SessionMemberEEC1Ev) +STUB( + "FI052HZN17g", + _ZN9Inspector21DOMFrontendDispatcher17childNodeInsertedEiiN3WTF6RefPtrINS_8Protocol3DOM4NodeENS1_13DumbPtrTraitsIS5_EEEE) +STUB("FI2JD0jAHCs", sceAmprCommandBufferWriteAddressFromTimeCounterOnCompletion) +STUB( + "FI4+jJBaNuo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE5emptyEv) +STUB("FIAr4J2Mc3I", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEcvbEv) +STUB("FIDyevLVMHA", scePssCameraGetConfigType) +STUB( + "FIE4+qZC77Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEED1Ev) +STUB( + "FIGq0QCsCJU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "FIIcj5oo8O4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEdeEv) +STUB("FIIcqX1R3SQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEptEv) +STUB("FILu3XT0iqE", _ZN3JSC7Symbols20undefinedPrivateNameE) +STUB("FIORIf42lEA", _ZN7WebCore9TimerBase4stopEv) +STUB("FIV95WE1EuE", sceNetPppoeStop) +STUB("FIVtaAWmpH0", _ZNK3WTF10StringView8endsWithERKS0_) +STUB( + "FIba8Eoz9DE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "FIbs2obMtdg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEC1Ev) +STUB( + "FIgKMtNTMLE", + _ZN3sce2Np9CppWebApi14SessionManager2V159PostPlayerSessionsSessionIdMemberPlayersResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_52PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEE) +STUB("FIjXN2TkuTs", _ZN3sce4Json5Value5clearEv) +STUB("FIkRi525WWs", utrans_getAvailableID_67) +STUB("FIs3-UQT9sg", pthread_getschedparam) +STUB("FIs6NUONxeQ", sceFontGraphicsUpdateSlantShift) +STUB( + "FItzU2rXvUM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE6resizeEj) +STUB("FIwGkGMVpS4", _ZN3JSC11ArrayBuffer6createEONS_19ArrayBufferContentsE) +STUB("FIy+9NMa4S4", g_path_get_dirname) +STUB( + "FJ+qIuONO1U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEppEi) +STUB( + "FJ-+VKIYK1g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEEC2Ev) +STUB("FJ03rKnjNtw", g_queue_pop_head) +STUB("FJ1MHGDC2cA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEEC1ERS7_) +STUB("FJ4DCt8VzVE", sceNpLwCondSignalAll) +STUB("FJAg8-+kSWs", _ZN7WebCore9Scrollbar10mouseMovedERKNS_18PlatformMouseEventE) +STUB("FJB0fZbTUWY", WKContextEnableProcessTermination) +STUB( + "FJDcItupGtw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE21intrusive_ptr_add_refEPS9_) +STUB("FJJNTde17A8", SSL_get_rbio) +STUB( + "FJQLG5YKbmc", + _ZN3JSC7JSProxy14deletePropertyEPNS_6JSCellEPNS_14JSGlobalObjectENS_12PropertyNameERNS_18DeletePropertySlotE) +STUB( + "FJVbAyiDve0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "FJXUJ49OO2M", + _ZN9Inspector18InjectedScriptBase13makeAsyncCallERN10Deprecated18ScriptFunctionCallEON3WTF8FunctionIFvRNS4_6StringEONS4_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS4_13DumbPtrTraitsISB_EEEERNS4_8OptionalIbEERNSG_IiEEEEE) +STUB("FJdpBy9-OCE", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getAllPrimaryAudioLangs) +STUB("FJjHPHXYwD8", _ZN3sce2Np9CppWebApi10Activities2V114UserActivities5Error11unsetSourceEv) +STUB( + "FJkCGkhSowg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEdeEv) +STUB("FJm3lf5Dw4Y", _ZN12video_parser5vpcom6String18SetFormattedStringEPKcz) +STUB("FJmglmTMdr4", getargv) +STUB( + "FJnax-VbVxo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEmmEv) +STUB("FJork2pKclo", _ZZSt7_FiopenPKcNSt5_IosbIiE9_OpenmodeEiE4mods) +STUB("FJr0rVn9pHc", _ZN3sce7Toolkit2NP2V210Tournament7Request19SendTeamMatchReportD2Ev) +STUB("FJrT5LuUBAU", pthread_exit) +STUB("FJsOPLwUw5I", monoeg_g_slist_copy) +STUB("FJx3kQhSYxo", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12unsetString1Ev) +STUB("FJxiqh2DvTw", pclose) +STUB("FJyVzN8qkOo", sceSystemLogger2NativeQueueClientSetDeliveryEnable) +STUB("FK+8maQ3KE8", _ZN7WebCore8GradientD2Ev) +STUB( + "FK6-IL27ZZQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "FKA9Xq9vkTE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE8pushBackERKS8_) +STUB( + "FKAAv+FYOAY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEaSERKS9_) +STUB( + "FKKvU4rVni4", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEEiRNS2_10LibContextEPT_m) +STUB( + "FKOlE0C1C4I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEmmEi) +STUB("FKPT9p58MAQ", fpathconf) +STUB( + "FKQd+oAuCMw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEEdeEv) +STUB( + "FKRYDqV5i5A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("FKSu6oEy0iE", sceFsUfsSeekHoleInFile) +STUB( + "FKTjGNG4AAo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEEC1EPS8_PNS2_10LibContextE) +STUB( + "FKULCTGerv8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEC1EPS8_) +STUB("FKVhj3L1HF8", _ZNK3sce2Np9CppWebApi11Matchmaking2V110UserTicket14getRulesetNameEv) +STUB("FKcri-wI35g", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V116TaskAvailabilityEEmmEv) +STUB( + "FKh8xr89EAQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEplEm) +STUB( + "FKjjTnU3Jy4", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "FKm-YEnNtEA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEED1Ev) +STUB("FKp2wB9uPwY", _ZN7WebCore13MediaStrategyC1Ev) +STUB("FKpKGi9ag2E", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V112OnlineStatusEEppEv) +STUB( + "FKsX53cx1Eo", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE10setContextEPNS2_10LibContextE) +STUB("FKvUMcH+qF8", _ZN3sce2np13JsonDocParserC1EP14SceNpAllocatorPK7JsonDef) +STUB( + "FKxhM4yiQLY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEC2Ev) +STUB("FKzWNFUwhgw", _ZN7WebCore23CoordinatedBackingStoreD2Ev) +STUB("FL+PbMcEVGI", WKContextMenuItemCreateAsAction) +STUB( + "FL+u52yNM1A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEC2Ev) +STUB("FL0unhGcFvI", sceFontGraphicsDrawupFillTexturePatternObject) +STUB("FL32esjngZg", _ZN3sce2Np9CppWebApi11Matchmaking2V110UserTicket16unsetRulesetNameEv) +STUB( + "FL3K2lvYq-E", + _ZN3sce2Np9CppWebApi14SessionManager2V137RequestPlayerSessionInvitationFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_2ToEEEPNS8_INS3_30RequestPlayerSessionInvitationEEE) +STUB( + "FL4Qx7D5o8w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEC2EPKS8_) +STUB( + "FL8JYfjjfMw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEE3getEv) +STUB( + "FLD7Rf5nyE4", + _ZN15AbstractStorage12LocalStorage15CreateRecursiveERKSbIcSt11char_traitsIcENS_8StlAllocIcEEENS_8ItemTypeEPSt10shared_ptrINS_4ItemEE) +STUB("FLIhhuDeTSs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEC1ERS7_) +STUB( + "FLPuwvD4sYM", + _ZNK3sce2Np9CppWebApi14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBody6toJsonERNS_4Json5ValueEb) +STUB("FLQ60xToFP0", _ZN3sce7Toolkit2NP2V26Trophy7Request23DisplayTrophyListDialogD2Ev) +STUB( + "FLQ8PiS7nvk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEC2Ev) +STUB( + "FLT8j7VcOko", + _ZNK7WebCore21ContentSecurityPolicy30upgradeInsecureRequestIfNeededERN3WTF3URLENS0_19InsecureRequestTypeE) +STUB("FLTTgSdkoOc", sceWorkspaceApplyUpdateForFiles) +STUB("FLUK0ZqO7Pc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEaSERKS7_) +STUB("FLYJ02qgHI8", _ZN7WebCore11DisplayList11DrawPatternD1Ev) +STUB( + "FLvDx5RW-z8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEE11release_refEv) +STUB( + "FM4vKn7NQXk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEEC1ERKSA_) +STUB("FM5NPnLqBc8", wcscpy) +STUB("FMAHbnNqsvU", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEEixEm) +STUB("FMKYya06OjA", mono_aot_Sce_Vsh_Np_RifManagerunbox_trampolines_end) +STUB("FMU7jRhYCRU", _Dscale) +STUB( + "FMXw9e6kICE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEC1Ev) +STUB( + "FMcQ2vSIHoI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("FMhcXpjqzIc", _ZN3JSC33getHashMapBucketKeyValueClassInfoEv) +STUB( + "FMiPe0Hty-M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEppEv) +STUB("FMoSUe3Uac4", _ZN3sce2np13NpAccessTokenC1ERK16SceNpAccessToken) +STUB("FModQzwn1-4", _Printf) +STUB("FMsbTTXdX4k", __asan_report_load_n_noabort) +STUB("FMvo0UFMf-o", sceKernelDebugAcquireAndUpdateDebugRegister) +STUB( + "FMwkK+yU2HE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "FN-SKZbEIHE", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData26unsetxPsnAtomicOperationIdEv) +STUB("FN4UuY2CUz0", scePadTrackerCalibrate) +STUB("FN4gaPmuFV8", write) +STUB( + "FN52SJNRvp8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEneERKS9_) +STUB("FNAESqqy9cc", sceMusicCoreServerLaunchUsbMusicCore) +STUB("FNCVZgUSgfw", WKCookieManagerGetHostnamesWithCookies) +STUB("FNE6tzXGxLc", mono_aot_Sce_Facebook_CSSLayoutjit_code_end) +STUB( + "FNExyBrkc9o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEppEi) +STUB( + "FNHWDEau-6g", + _ZN6WebKit17ChildProcessProxy18addMessageReceiverEN3IPC15StringReferenceEmRNS1_15MessageReceiverE) +STUB( + "FNI-4CaBcKM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEC1Ev) +STUB("FNJN5HdvU90", _ZN3WTF15ThreadCondition6signalEv) +STUB( + "FNKcU9I-kU0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE5beginEv) +STUB( + "FNNkNGXUrMU", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("FNQNzCuY4Og", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEEaSERS6_) +STUB("FNRVZg15vvo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE5clearEv) +STUB( + "FNTd74IKFoA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE3endEv) +STUB( + "FNUxN+au25U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEppEv) +STUB("FNW6t+8uEe4", udtitvfmt_close_67) +STUB( + "FNcxxp-VMgw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEEcvbEv) +STUB("FNeoc7rmKfo", rgctx_fetch_trampoline_rgctx_25_p) +STUB("FNfP9dKTd5Q", u_setDataDirectory) +STUB("FNfdkVuQIh0", sceApplicationDebugSpawnCommonDialog) +STUB("FNigDX9ue0g", sceKernelLwfsWrite) +STUB("FNjUbQF94YU", _ZN3sce7Toolkit2NP9Utilities6FutureI24SceNpBandwidthTestResultEC2Ev) +STUB("FNlWXHc7hK4", mono_aot_Sce_Vsh_FileSelectorAdvanceunbox_trampoline_addresses) +STUB("FNq4SsbRtKg", _ZNK7WebCore11HistoryItem8childrenEv) +STUB("FNuqhSviERw", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession28getExclusiveLeaderPrivilegesEv) +STUB( + "FNuywt2O-J8", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS5_INS7_7DataApi25UploadDataResponseHeadersEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("FNws245ryZM", _ZN7WebCore8SVGNames8mpathTagE) +STUB("FNyriqDetMY", _ZN3sce3Xml3Dom8DocumentC1Ev) +STUB("FNzy4vvhlPY", sceVoiceChatGetChatChannelMemberInfoList) +STUB( + "FO090PFxXjA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE21intrusive_ptr_add_refEPS9_) +STUB("FO0NpJP2c5c", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEEC1Ev) +STUB("FO2oM5nyfjQ", + _ZN7WebCore15FocusController17setFocusedElementEPNS_7ElementERNS_5FrameENS_14FocusDirectionE) +STUB( + "FO68r4bXeQY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("FO7vVsCOvWc", mono_code_manager_cleanup) +STUB("FO80A4ewW+E", __cxx_global_var_init .36) +STUB( + "FOAYq1eTl1Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEC2EPNS2_10LibContextE) +STUB("FOEUXzOE0ow", sceFiosVprintf) +STUB( + "FONQ2eA0530", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "FOU51RLy7V8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEEaSERSA_) +STUB("FOU9hGXYs4A", WKPreferencesGetCaptureAudioInUIProcessEnabled) +STUB("FOX5cdgzoRA", _ZN7WebCore18PlatformTimeRanges13intersectWithERKS0_) +STUB("FOXX1s3yDOg", TEEC_OpenSession) +STUB("FObJjOlF5qo", _ZN3sce7Toolkit2NP15AppSTLAllocatorIcED1Ev) +STUB( + "FOcbHwDVh8s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEEaSERKS9_) +STUB("FOe7cAuBjh8", _Atomic_compare_exchange_weak) +STUB("FOkC5Gjb72A", _ZN3sce2Np9CppWebApi14SessionManager2V112JoinableUserD1Ev) +STUB("FOkcUM1F9nY", sceNpUniversalDataSystemDestroyRecordArray) +STUB("FOoPyT5K+Ro", sceRnpsAppMgrInitialize) +STUB("FOsY+JAyXow", _ZNKSt12codecvt_base13do_max_lengthEv) +STUB("FOt55ZNaVJk", _ZdaPvm) +STUB("FOum7YUAKjM", _ZN3sce7Toolkit2NP2V28Presence7Request11GetPresenceD2Ev) +STUB("FOwvmNlFLjM", sceAgcDriverRequestCaptureStop) +STUB( + "FP+nlBHwj74", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEC2EPS8_) +STUB("FP1JAPcVjW0", _ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionNonPsnPlayerD1Ev) +STUB("FP2oghGzFW4", WKPluginSiteDataManagerClearSiteData) +STUB("FP4TKrdRXXM", sceUserServiceGetGlsBcTags) +STUB( + "FP4rr9SQxVI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEE5resetEPS6_) +STUB( + "FPCJcwlzH3M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEC2EPS8_) +STUB("FPD00OeBumk", _ZN3NTF21ResourceRequestLogger9AdminPageD2Ev) +STUB("FPGuhTsUtyw", + _ZN3sce7Toolkit2NP9Utilities6FutureISbIcSt11char_traitsIcENS1_15AppSTLAllocatorIcEEEEC2Ev) +STUB("FPJ7KlJEPzo", _ZN3WTF16weakRandomUint32Ev) +STUB("FPN86biiXCg", scePerfPmcL3SelectEvent) +STUB( + "FPORIa4Rkbs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEED1Ev) +STUB("FPVANrBOCqM", WKWebsiteDataStoreSetStatisticsPruneEntriesDownTo) +STUB( + "FPb0CeFSeIw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEE11release_refEv) +STUB("FPhiNyoXyrY", _ZN7WebCore23ApplicationCacheStorage18diskUsageForOriginERKNS_14SecurityOriginE) +STUB( + "FPkgrHD25Vw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEC1Ev) +STUB( + "FPlOO0icao8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEE7add_refEv) +STUB("FPmfebR+qRw", _ZN7WebCore8SVGNames13repeatDurAttrE) +STUB("FPtevC0570Y", _ZN7WebCore17HTMLSelectElement9namedItemERKN3WTF12AtomicStringE) +STUB("FPuDt8dTHVc", mono_aot_Sce_Vsh_Np_Asmplt_end) +STUB("FPwp7ypjzlc", _ZN7WebCore15XPathNSResolverC2Ev) +STUB("FPxZe+7sKPI", _realloc) +STUB("FPxn9BMUCl4", _ZN7WebCore27ScrollingStateScrollingNode31setExpectsWheelEventTestTriggerEb) +STUB( + "FQ3223lR8CE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("FQ9KInINgw8", mono_counter_get_type) +STUB("FQ9NFbBHb5Y", _ZSt7_BADOFF) +STUB("FQAzZj+cvJM", _ZN3sce7Toolkit2NP2V211UserProfile7Request24DisplayUserProfileDialogD1Ev) +STUB( + "FQEb1-9qXuc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE8pushBackERKS8_) +STUB( + "FQKh4mbIo4Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEEC2Ev) +STUB( + "FQO2aJ3rhKI", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("FQP4SFNWKTg", _ZNK3JSC8Debugger17breakpointsActiveEv) +STUB("FQXDGkLo5lw", WKWebsiteDataStoreIsStatisticsOnlyInDatabaseOnce) +STUB( + "FQXdCB-0jhs", + _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product21setContentDescriptorsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_17ContentDescriptorEEEEE) +STUB("FQf7z9EVOYQ", _ZNK3JSC9CallFrame11callerFrameERPNS_10EntryFrameE) +STUB( + "FQfgTaTdD4Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "FQfzQ87vIHA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEdeEv) +STUB("FQhhAq8485I", _ZN9Inspector22AuditBackendDispatcherD1Ev) +STUB("FQixDx+33Sw", _ZN7WebCore15JSFetchResponse11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB( + "FQjqOxeoO-Y", + _ZN3sce2Np9CppWebApi14SessionManager2V129PostPlayerSessionsRequestBodyC2EPNS1_6Common10LibContextE) +STUB( + "FQmOKMe0XLg", + _ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_errorFactory6createEPNS1_6Common10LibContextEiPNS5_12IntrusivePtrINS3_17PsnWebError_errorEEE) +STUB( + "FQowxL1xbgc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEED1Ev) +STUB("FQp+YoiVPDk", mono_arch_set_breakpoint) +STUB("FQqiBC8oep4", + _ZN7WebCore20throwGetterTypeErrorERN3JSC14JSGlobalObjectERNS0_10ThrowScopeEPKcS6_) +STUB("FQrrVMzekMs", _ZN7WebCore20TransformationMatrix5scaleEd) +STUB("FQsD5vTPCIQ", _ZN12video_parser13cVideoMetaVWGD2Ev) +STUB("FQxmT+zWFmI", _ZN8meta_gen12JpegPromoterD2Ev) +STUB("FQz66HusRxA", GetProcessTime) +STUB("FR1GTDrUjQU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE8capacityEv) +STUB("FR4wjgGyss4", _ZN7WebCore12commonVMSlowEv) +STUB( + "FR5V4h+UDHY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEED1Ev) +STUB("FRDcroFI5oQ", WKBundleRangeHandleCreate) +STUB("FRHTBSKUjbY", _ZNK3sce2Np9CppWebApi7Matches2V120RequestTeamStatistic9getTeamIdEv) +STUB( + "FRIzN1QTvt0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEC1Ev) +STUB( + "FRLh1YHbNu0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("FRPmIVOlL+o", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_19WordFilterSanitizedEE17getAdditionalInfoEv) +STUB( + "FRQiELNiLNw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEC2EPNS2_10LibContextE) +STUB("FRT4EYtZU1Y", sceContentSearchGetMyApplicationIndex) +STUB("FRTohqXNHCM", _ZN3sce2Np9CppWebApi6Common17ParameterBaseImplD1Ev) +STUB( + "FRVuWMditKE", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions17hasacceptLanguageEv) +STUB( + "FRdM28BbKvI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("FReDLqnfawk", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE7popBackEv) +STUB( + "FReoy5ALjAA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE21intrusive_ptr_add_refEPS9_) +STUB("FRiELCz5i8Y", _ZNK7WebCore10TimeRanges7nearestEd) +STUB( + "FRkSeaqfZCM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "FRktIckLBqI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEEC1ERKSA_) +STUB("FRluBCWNkDA", WKPreferencesSetAsynchronousPluginInitializationEnabled) +STUB( + "FRn8p61SWqM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEC2Ev) +STUB( + "FRu7RoVWxeA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("FS33uqKkEJA", sceDebugCreateScratchExecutableArea) +STUB( + "FS3NkwAzLuQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE8copyFromERKS9_) +STUB("FS4QDTBsbvA", sceSdmaCopyLinearNonBlocking) +STUB( + "FS5KldwLor0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("FSAFOzi0FpM", sceHttp2SetRequestContentLength) +STUB( + "FSBGYnHURTI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEE5resetEPS9_) +STUB( + "FSEM7spQh+I", + _ZN3sce2Np9CppWebApi14SessionManager2V130RequestGameSessionMemberPlayer10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_24RequestGameSessionPlayerEEEEE) +STUB( + "FSEZl29BkTQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEC1Ev) +STUB( + "FSGCYA4uEqM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEC2Ev) +STUB("FSGjsbLwaVI", + _ZN23sceMetadataReaderWriter11gvMp4Parser23gvMp4ParserReadMetadataERKSsRKNS_8MetadataERS3_) +STUB( + "FSIvbzv3EPU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEmmEv) +STUB("FSJMWVT-xxg", _ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEEC2Ev) +STUB( + "FSQpiW9I3SQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEED2Ev) +STUB( + "FSV9lX43m-8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEppEv) +STUB( + "FSW+vDCLbSo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEC1EPNS2_10LibContextE) +STUB( + "FSWkWfs+zTw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEEaSERSA_) +STUB("FSWw9gIrqHo", + _ZN3sce2Np9CppWebApi11Matchmaking2V110UserTicket9setStatusERKNS3_12TicketStatusE) +STUB( + "FSZL2Eyt7u0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEptEv) +STUB("FSaQ-ZFyV3A", rgctx_fetch_trampoline_mrgctx_4) +STUB("FSivH9XPeho", sceShellCoreUtilGetPs4AppCategoryForTitleId) +STUB("FSjfP0-ST3I", sceAvSettingSetVideoOutModeInvalid) +STUB( + "FSlAlJCz9c4", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("FSnq97QcZr8", mono_aot_Sce_Vsh_SysfileUtilWrapperunbox_trampolines_end) +STUB( + "FSp6nAVoz14", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEEC1ERSA_) +STUB("FSp7Nq+RS-o", _ZN3sce7Toolkit2NP8Commerce9Interface13createSessionEb) +STUB("FSrzrDEkthc", sceNpGriefReportDeleteRequest) +STUB( + "FSyQc4E006k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEEC2ERSA_) +STUB("FSyipfKROYU", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIdEC2Ev) +STUB("FT+jqopqLH4", rgctx_fetch_trampoline_mrgctx_65) +STUB("FT07o-hAwrw", sceVnaSetWakeupPhrase) +STUB("FTCfSvqy0HE", _ZN7WebCore11MediaPlayernwEm) +STUB("FTDRgzhgHno", g_WebAssemblyFunctionBasePoison) +STUB("FTDt5KHGsco", WKContextRegisterURLSchemeAsBypassingContentSecurityPolicy) +STUB( + "FTFCa3ozVZ0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEC2EPS6_PNS2_10LibContextE) +STUB("FTJxu+itNSs", + _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse24lastPausedTimestampIsSetEv) +STUB( + "FTKv8WXBuGc", + _ZN3sce7Toolkit2NP7NetInfo9Interface18getNetInfoDetailedEPNS1_9Utilities6FutureINS1_16NetStateDetailedEEE) +STUB("FTQCTDU0b4g", sceCompositorGetVideoSize) +STUB( + "FTR3aJpj1nk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEC1EPKS8_) +STUB("FTTfy11u0xI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEEC1EPNS2_10LibContextE) +STUB("FTVOVsiCzrI", _ZNK7WebCore13ImageDocument12imageElementEv) +STUB("FTgCL2l7zPM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEEplEm) +STUB("FTkR6dclrzE", mono_get_exception_overflow) +STUB( + "FTlq-lM8c7Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEC1ERKS7_) +STUB("FTnplTtBnw8", sceFaceAttributeGetWorkingMemorySize) +STUB("FTvuO6kEYc8", png_get_progressive_ptr) +STUB("FTx8zZOXi4w", _ZNK7WebCore15AffineTransform22toTransformationMatrixEv) +STUB("FTyUH7H+cr4", sceNpUniversalDataSystemIntCreateRecordArray) +STUB( + "FU-OOrVdofM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEE11get_deleterEv) +STUB( + "FU-cHlvmHrc", + _ZN3sce2Np9CppWebApi14SessionManager2V132ResponseGameSessionPlayerFactory7destroyEPNS3_25ResponseGameSessionPlayerE) +STUB("FU03r76UxaU", tgammal) +STUB( + "FU1sy2PeAOE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEC1EPS6_PNS2_10LibContextE) +STUB( + "FU3iLaFeAug", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("FU6NK4RHQVE", sceNetConfigGetIfaddr6) +STUB( + "FU7BYSzlMWk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("FU9dBtKaM90", sceDbgKeyboardClose) +STUB("FUHG8sQ3R58", sceGnmSetEsShader) +STUB( + "FUI7BA6sx0g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEC2EPKS8_) +STUB("FUJC80kVXcc", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE3endEv) +STUB( + "FUJr06OCY8Y", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "FUP09azNviM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEdeEv) +STUB("FUUgFK8Upao", _ZNK7WebCore12ChromeClient31visibleRectForTiledBackingStoreEv) +STUB( + "FUVV2ha6lDE", + _ZN3JSC32throwDOMAttributeGetterTypeErrorEPNS_9ExecStateERNS_10ThrowScopeEPKNS_9ClassInfoENS_12PropertyNameE) +STUB( + "FUYmZhS5fm8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("FUbGs1rzI6g", _ZN7WebCore10FileHandle4openEv) +STUB( + "FUgmWrbSJ6I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE8copyFromERKS9_) +STUB( + "FUj4ht1Oj3Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEEC1ERSA_) +STUB("FUjbhth5rpQ", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEEppEi) +STUB( + "FUjqMDkA6zk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToSetMultiVariablesByUser31setsetMultiVariablesRequestBodyENS1_6Common12IntrusivePtrINS3_28SetMultiVariablesRequestBodyEEE) +STUB( + "FUnHreXtgA8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE10setContextEPNS2_10LibContextE) +STUB("FUvMboaJEU4", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110TaskStatusEEmmEv) +STUB("FUvnVyCDhjg", _ZTSDn) +STUB("FUxAKQOPLHU", _ZNK7WebCore4Page34inLowQualityImageInterpolationModeEv) +STUB( + "FV1b31YBRas", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEeqERKS9_) +STUB( + "FV377ltyrsI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEC2Ev) +STUB("FV3wbwlVzS0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEptEv) +STUB("FV7qhkVXa78", jpeg_fdct_2x4) +STUB( + "FV8T9iG3EPk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEE7add_refEv) +STUB("FVC-Qs07cPM", __cxx_global_var_init .5) +STUB( + "FVCHa0uCXmk", + _ZNK3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession28spectatorJoinableStatusIsSetEv) +STUB("FVGWf8JaHOE", sceAudioInExtSetAecMode) +STUB( + "FVPQMSw88t0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE7popBackEv) +STUB( + "FVYB7IIuaoE", + _ZN9Inspector24RuntimeBackendDispatcher13getPropertiesElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "FVbXoHNme94", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEaSERKS9_) +STUB("FVfoCo2+1CM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4DataEE12deepCopyFromERS7_) +STUB("FVhYusaWqA4", hb_font_create) +STUB("FViWTCmYhfI", WKPreferencesSetLogsPageMessagesToSystemConsoleEnabled) +STUB( + "FVjxVzE0tPg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEdeEv) +STUB("FVzkM+se3LY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEdeEv) +STUB( + "FW-847MiNk0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE6isBusyEv) +STUB( + "FW0u+JRPGtY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEmmEv) +STUB( + "FW4pfu-jsZY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEeqERKS9_) +STUB("FW8GJjej89g", sceMbusDebugGetApplicationStartupInfo) +STUB("FW8H7tqgdbM", sceCesRefersUcsProfileIso8859_1) +STUB("FW9SB4Gw0AM", _ZN7WebCore4Page24suspendAllMediaBufferingEv) +STUB("FWCtCJRjjqM", _ZN7WebCore6Editor3cutEv) +STUB("FWF8zkhr854", sceSystemGestureCreateTouchRecognizer) +STUB( + "FWGOC57Jh6I", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEcvbEv) +STUB("FWGmdRcl8J4", uprv_decNumberNormalize_67) +STUB("FWGwLKZl7gA", il2cpp_class_has_attribute) +STUB("FWKCSN6qd3I", _ZN3sce7Toolkit2NP2V29Messaging7Request27GetGameDataMessageThumbnailD1Ev) +STUB("FWNlwckpqiQ", _ZNK3sce2Np9CppWebApi15Personalization2V111ErrorEntity8getErrorEv) +STUB("FWPehyusZk4", _ZN12video_parser13cVideoMetaVWGD0Ev) +STUB("FWQ--Q8Z3RA", + _ZN15AbstractStorage10TwitterAPI6FinishERiRSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB( + "FWSsCcJfRzk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE5beginEv) +STUB( + "FWUkK5OYaJE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEEptEv) +STUB("FWVpcDqZEno", mono_aot_Newtonsoft_Json_PlayStationplt_end) +STUB( + "FWbHV2VFBJE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB( + "FWeRSiPGZW8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("FWjuz7V0EHo", mono_aot_Sce_Vshjit_code_start) +STUB("FWonlDV6d5k", sceNpAppLaunchLink2IntFinalize) +STUB("FWs3pMutLLM", _ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_18GameCustomDataItemEE8max_sizeEv) +STUB("FWuKSBWcWpY", _ZN19JITSharedDataMemory15shared_mallinfoEv) +STUB( + "FWvXxPBjKo4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE10setContextEPNS2_10LibContextE) +STUB("FX+WQiynX4A", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE3endEv) +STUB("FX+eS2YsEtY", _ZSt10_GetloctxtIcSt19istreambuf_iteratorIwSt11char_traitsIwEEEiRT0_S5_mPKT_) +STUB("FXCfp5CwcPk", CERT_CompSubjectAltNames) +STUB( + "FXHJ0c5nK0M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEE3getEv) +STUB("FXJgRPi79Uc", _ZN7WebCore20DictationAlternativeC1Ev) +STUB("FXLlx5oqwh0", sceBackupRestoreUtilCancelBackupData) +STUB( + "FXMKxFiNTTU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB( + "FXP1+3uVWsM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE8capacityEv) +STUB("FXP359ygujs", sceFontDestroyLibrary) +STUB("FXPWHNk8Of0", scePthreadAttrGetschedparam) +STUB( + "FXWB2Gf474U", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEptEv) +STUB( + "FXaSS2yMjwo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "FXd3vv+Y6x8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("FXi4ubu1MYw", mono_aot_System_IO_Compression_FileSystemmethod_addresses) +STUB("FXrK1DiAosQ", _ZNSt14numeric_limitsImE9is_signedE) +STUB("FXz1QSPJDvo", _ZN7WebCore7PatternD1Ev) +STUB("FY6r0wohLpE", WKPageGroupAddUserContentFilter) +STUB("FYBRvPoVT60", _ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_7ElementE) +STUB("FYCUHTZYc0Y", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession20getInvitableUserTypeEv) +STUB("FYGZ0F5ZglA", sceFiosCachePrefetchFileRange) +STUB( + "FYMYJH5mJMQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE5beginEv) +STUB("FYNb0UsK7bo", mono_set_signal_chaining) +STUB("FYOYHvvUNbc", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEEplEm) +STUB("FYSe6iue9yo", WKUInt64GetValue) +STUB( + "FYVQXqEQpt0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEC2EPS8_) +STUB("FYWPelwNlow", + _ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody20createdDateTimeIsSetEv) +STUB( + "FYZJrjJ-cq8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEEC2Ev) +STUB( + "FYdJxS3+z8s", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessions28hasxPsnAcceptPlatformNamePs5Ev) +STUB( + "FYgsW9IBFB8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEptEv) +STUB("FYhW0cFVkfU", _ZN7WebCore11DisplayList10DrawGlyphsD1Ev) +STUB( + "FYhnZZLS9Tw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE6isBusyEv) +STUB("FYlV1evmD0c", WKPreferencesSetLocalStorageEnabled) +STUB( + "FYoTGVdaf38", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEEaSERSA_) +STUB("FYokOKVjbL8", _Z14getIpmiMessageiPvPmmPj) +STUB( + "FYpKT5bJWqs", + _ZN3sce2Np9CppWebApi11Matchmaking2V128GetTicketResponseBodyFactory7destroyEPNS3_21GetTicketResponseBodyE) +STUB( + "FYtYaqQau3c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEE11get_deleterEv) +STUB( + "FZ6iiTMxCvk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("FZ79+m9rjAk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE7reserveEi) +STUB( + "FZAYG6OaXcU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEE3getEv) +STUB("FZCuitEu5PU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEE7add_refEv) +STUB( + "FZF10vBaKDU", + _ZN7WebCore16BlobRegistryImpl15registerBlobURLERKNS_3URLEON3WTF6VectorINS_8BlobPartELm0ENS4_15CrashOnOverflowELm16EEERKNS4_6StringE) +STUB( + "FZOffHooqqg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "FZPi1FKVP1M", + _ZN3sce7Toolkit2NP8Matching9Interface25registerSessionAttributesEPKNS1_24RegisterSessionAttributeEi) +STUB("FZRXp-BlmOI", _ZNK7WebCore19DragCaretController40editableElementRectInRootViewCoordinatesEv) +STUB( + "FZVwEIe8X5c", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "FZXAWifD-Zk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB( + "FZXff56W0pU", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetrics27getCompletionRatePerReasonsEv) +STUB("FZacimxYLYc", _ZN9Inspector22HeapFrontendDispatcherC1ERNS_14FrontendRouterE) +STUB("FZed-0jzMRA", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V19Bandwidth6toJsonERNS_4Json5ValueEb) +STUB("FZgi0OUp2OU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEaSERS7_) +STUB( + "FZhUiTHfkLE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE8pushBackERKS8_) +STUB( + "FZk6O78MC5M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEC1Ev) +STUB("FZkD-E6MNTQ", sceCamera2GetAutoExposureGain) +STUB("FZoCQTL8R04", sceVideoOutSysSetDisplayParameters) +STUB( + "FZs3ueQCBdw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEeqERKS9_) +STUB("FZyUhOcX-LA", JSContextGroupRelease) +STUB( + "Fa02PlexEYQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEdeEv) +STUB("Fa0atOcWPaI", sceSlimglIPCEnd) +STUB( + "Fa2iHYoO-Uc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEmmEv) +STUB("Fa3M9vt2GNg", _ZN9Inspector25BrowserFrontendDispatchernwEm) +STUB("Fa3x75OOLRA", sceGnmEndWorkload) +STUB( + "Fa4Jz1T7N5s", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEdeEv) +STUB("Fa4dVWgmffk", sceNpWordFilterSetTimeout) +STUB("Fa62NGp3wkk", WKInspectorShowMainResourceForFrame) +STUB("Fa7tNy5W1JA", + _ZN9Inspector22InspectorDebuggerAgent21willDispatchAsyncCallENS0_13AsyncCallTypeEi) +STUB("Fa9J7ngbX6c", _ZN3sce7Toolkit2NP3TUS9Interface12setVariablesERNS1_21TusSetVarsInputParamsEb) +STUB("Fa9ocon8fUk", _ZN3WTF6String8fromUTF8ERKNS_7CStringE) +STUB( + "FaBfkB9CzjI", + _ZN3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectatorC1EPNS1_6Common10LibContextE) +STUB("FaEwVkG3PY0", _ZN7WebCore16HTMLTableElement9deleteRowEi) +STUB( + "FaGbTl7GSKY", + _ZN7WebCore8Document28searchForElementByIdentifierERKN3WTF16ObjectIdentifierINS_21ElementIdentifierTypeEEE) +STUB("FaGklu1Uj2Y", _ZN7WebCore9plainTextEPKNS_5RangeEtb) +STUB( + "FaJpSTnJc+0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEC2EPKS8_) +STUB("FaJvCKzvS+o", sceMusicCoreServerSetPlaylist) +STUB("FaMNvjMA6to", sceNpMemoryHeapGetAllocator) +STUB( + "FaScLq9jHGY", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession30exclusiveLeaderPrivilegesIsSetEv) +STUB( + "FaWcwzVg-RY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEptEv) +STUB("FaXwNYQABhI", sceMusicFwSendMessageAsynchronously) +STUB( + "FaZCwvM2Cjo", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi10leaveMatchEiRKNS4_21ParameterToLeaveMatchERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB("FabW3QpY3gQ", sceNpTusGetFriendsVariableForCrossSaveAsync) +STUB("FacbXK+neFI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEED2Ev) +STUB("FafaS6YYcI0", jit_info_table_new) +STUB( + "FaiD0-l1bi4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB("FajrozYzGvw", WKOpenPanelParametersCopyAcceptedMIMETypes) +STUB("FamucWKpUiI", _ZNK7WebCore9InlineBox22canAccommodateEllipsisEbii) +STUB( + "FaoNPaQokbY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE8pushBackERKS8_) +STUB("Far+0EDHNT4", _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead12getSessionIdEv) +STUB("FarWXzw3sRs", _ZN7WebCore11MathMLNames10msgroupTagE) +STUB( + "FauTlWzQtoM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEplEm) +STUB("FaxEiEtRu98", mono_aot_Sce_Vsh_ShareGuideScenejit_code_end) +STUB("FaxtjclFXWo", rgctx_fetch_trampoline_mrgctx_56) +STUB("FazP3bj2myU", _ZNSt10_Ref_countIN15AbstractStorage15FacebookContentEE12_Delete_thisEv) +STUB("Fb75R8uLhVQ", _ZN3JSC7Symbols13replaceSymbolE) +STUB( + "FbGii8QGVSg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE5beginEv) +STUB("FbPgeyqyKxw", WKBundleBackForwardListItemCopyChildren) +STUB("FbWFbLUQOys", cairo_scaled_font_extents) +STUB("FbdEMaWO06g", PSNowTerminate) +STUB("FbgsoB-Gp0k", _ZNK7WebCore4Page23remoteInspectionAllowedEv) +STUB( + "Fbhq5mnuB4I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE4sizeEv) +STUB("FbklI6mL4Fw", _ZN7WebCore32isStatusCodePotentiallyCacheableEi) +STUB( + "FbknE-LTZCw", + _ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime12RemoteObjectEE11runtimeCastEON3WTF6RefPtrINS5_8JSONImpl5ValueENS5_13DumbPtrTraitsIS8_EEEE) +STUB("Fbq6rkrW44s", _ZThn64_NK7WebCore10ScrollView12contentsSizeEv) +STUB( + "FbqyBrWWUdI", + _ZN3sce2Np9CppWebApi14SessionManager2V127ResponsePlayerSessionPlayerC2EPNS1_6Common10LibContextE) +STUB( + "FbrlLxVDlCc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("FbtukaCjFCM", _ZN3sce7Toolkit2NP2V28Commerce7Request22GetServiceEntitlementsD1Ev) +STUB( + "Fbtzvs7QRLQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEC2EPS8_) +STUB("FbvROv13LwA", _ZN7bmalloc17getPerProcessDataEjPKcmm) +STUB( + "FbxBkDmN7Y8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEEaSERSA_) +STUB("FbxEpTRDou8", scePadSetProcessPrivilegeOfButtonRemapping) +STUB( + "FbyWsqhQTb8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("FbzaVpY48K8", Java_com_sony_gemstack_org_dvb_application_AppsDatabaseImpl_n_1getSize) +STUB("Fc-j1ASNCfc", futimesat) +STUB("Fc2cOwHvrNI", _ZN3sce7Toolkit2NP2V28Matching7Request15SendRoomMessage16MESSAGE_MAX_SIZEE) +STUB( + "Fc3zgDjEL0w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEEaSERSA_) +STUB( + "Fc7UtlRcB4s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE5clearEv) +STUB("Fc8qxlKINYQ", sceVideoRecordingSetInfo) +STUB( + "Fc9vUoIplps", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE3endEv) +STUB("FcAheKO8u7c", sceShellCoreUtilGetCrashReportCoreFileSetSize) +STUB("FcBetDloh7M", _ZNK7WebCore18TextureMapperLayer23isShowingRepaintCounterEv) +STUB("FcHBfHjFXkA", sceGameLiveStreamingClearPresetSocialFeedbackCommands) +STUB("FcHLJ0cp+UY", __asan_store2) +STUB( + "FcHhPlZ5n6I", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("FcL+-Kw05rE", ERR_remove_thread_state) +STUB( + "FcMmLDQhRrY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("FcPJo9IFZ8w", _ZN3JSC8Debugger2vmEv) +STUB("FcVRhZfdD6M", sceDebugGetUltMutexInfo) +STUB( + "FcVj5RfHa3Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEC1Ev) +STUB("FcXFU+eY+PA", _ZN3sce7Toolkit2NP2V212ActivityFeed11SharedVideo18VIDEO_DURATION_LENE) +STUB("FcgdDM3MB+k", sceAgcAcbSetWorkloadStreamInactive) +STUB("FcjmvJ4DIIE", _ZThn120_NK7WebCore16HTMLMediaElement7canPlayEv) +STUB("FcoLzecMfmQ", sceUpsrvUpdateCheckDoCheckGame) +STUB( + "Fcte2S985kY", + _ZN3JSC12StringObject19getOwnPropertyNamesEPNS_8JSObjectEPNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("Fcvdbqpwpnw", _ZN3sce2np9NpTitleIdC1ERK12SceNpTitleId) +STUB("Fcve1msoJH0", _ZN9Inspector25RuntimeFrontendDispatcherC1ERNS_14FrontendRouterE) +STUB( + "FcvuAYXzTg0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEppEi) +STUB("Fcw0NIAPtPQ", JVM_Available) +STUB("Fd+i7UyKSPU", + _ZN3sce2Np9CppWebApi7Matches2V133RequestTemporaryCompetitiveResult14getTeamResultsEv) +STUB( + "FdBcHONM4L8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("FdE9MhgN3V8", _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse14unsetMatchTypeEv) +STUB( + "FdJlxz7OMjM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("FdN+edNRtiw", sceNetCtlApInit) +STUB( + "FdOIlKJFmbU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEC1ERS7_) +STUB("FdOpdRczylg", mono_profiler_set_events) +STUB( + "FdQ6u9pJKnY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEC2EPS8_) +STUB("FdVPEWL8spY", _ZN7WebCore12WorkerThread17workerThreadCountEv) +STUB("FdZ4o7kKSbI", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_23NpSessionInvitationInfoEEeqERKS4_) +STUB("FdaMZ5OvrB4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE8pushBackERKS6_) +STUB("FdbMnFUqVN0", sceVideoCoreInterfaceSetVideoOutBufferInfo) +STUB( + "FdeurA-4Xf4", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("FdhH0BTtUW4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEC1ERKS7_) +STUB("FdhooB4MqkE", WKProtectionSpaceCopyCertificateInfo) +STUB("FdjoqFQOlt0", sceFiosFHGetSize) +STUB("FdpYFbq5C3Q", _ZN3sce2np8JsonBool7SetBoolEb) +STUB("FdpiHD2TNa4", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE3endEv) +STUB("FdtZF4Kb-DM", _ZN7WebCore9HTMLNames19contenteditableAttrE) +STUB( + "FduUnpC6JgA", + _ZN3WTF8JSONImpl10ObjectBase8setArrayERKNS_6StringEONS_6RefPtrINS0_9ArrayBaseENS_13DumbPtrTraitsIS6_EEEE) +STUB( + "Fdyi7jH8cb0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEEC2ERKSA_) +STUB("Fe3rSLxR0nQ", _ZN23sceMetadataReaderWriter7StorageD1Ev) +STUB("Fe4mPBqYU8U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEE11release_refEv) +STUB("FeBOnMEm0SY", sceKernelSetCompressionAttribute) +STUB("FeCbAqqYAJc", _ZN7WebCore19HTMLTableRowElement10deleteCellEi) +STUB( + "FeFhTT4nANo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEED2Ev) +STUB("FeGTya83K9c", _getNextCommInfoId) +STUB("FeHJNqnyMNg", _ZN9Inspector26DatabaseFrontendDispatchernwEm) +STUB("FeIamrDe0aM", _ZN12video_parser5vpcom4path8SplitExtERKSsRSsS4_) +STUB( + "FeOJ8TVZKIM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEmmEv) +STUB( + "FeQ8lcL0Gq0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEC1EPKS8_) +STUB("FeQx0uUwsEU", mono_debug_remove_method) +STUB("FeRX0tbFuoA", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable8setValueERKl) +STUB("FeSYwKImb80", _ZN7WebCore37BasicComponentTransferFilterOperationD0Ev) +STUB("FeYrnuEZxkI", WKPageGetPageLength) +STUB("FeaJljDxazo", _WLdtob.Nan) +STUB("FedPCDpfuIY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEEC2ERKS7_) +STUB( + "FedbSNlNb+k", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEE3getEv) +STUB( + "FegsNS5zOXY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEeqERKS9_) +STUB("Feu1kRzMayE", _WGetfloat.digits) +STUB("Fevm+IGiXwo", _ZNK3JSC8JSString13equalSlowCaseEPNS_9ExecStateEPS0_) +STUB("FeyelHfQPzo", __subsf3) +STUB( + "Ff+VkymM6Xs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEEC2ERKSA_) +STUB("Ff4A85FCHyg", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIlEneERKS4_) +STUB("Ff5903PrTZI", + _ZN3sce2Np9CppWebApi14SessionManager2V115SearchCondition11setOperatorERKNS3_14SearchOperatorE) +STUB("Ff6oQqOVuao", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia6VideosEE19setCustomReturnCodeEi) +STUB( + "Ff8YIEBYu24", + _ZNK7WebCore21NetworkStorageSession29cookieRequestHeaderFieldValueERKNS_29CookieRequestHeaderFieldProxyE) +STUB( + "FfBPa2dGLZ4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "FfGdRFl8Uac", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEEC2ERKSA_) +STUB("FfIGOD31g-o", Java_java_lang_Runtime_traceMethodCalls) +STUB( + "FfIjkuACVec", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser12getaccountIdEv) +STUB( + "FfKM55Iraf0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEC1Ev) +STUB( + "FfKiMCov2SE", + _ZN9Inspector21PageBackendDispatcher15getResourceTreeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "FfL1j8hB9eM", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetrics17getPercentileRankEv) +STUB("FfP4+AR75Xk", _ZN7WebCore24InspectorInstrumentation17s_frontendCounterE) +STUB("FfQDL+N-aVU", _ZN3sce7Toolkit2NP2V210Tournament24OfficialBroadCastDetailsC1Ev) +STUB("FfQc4Aw-xj0", _ZN3sce2Np9CppWebApi11Matchmaking2V112CauseFactory7destroyEPNS3_5CauseE) +STUB("FfRPM8I9Wvw", _ZNK7WebCore15CSSGroupingRule8cssRulesEv) +STUB("FfRx0Iqy44I", _ZN3sce7Toolkit2NP2V27Session12Notification18InvitationReceived5resetEv) +STUB("FfSNfBmn+K8", _ZN3sce2np9JsonValueD2Ev) +STUB( + "FfSkfIKapVk", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("FfUKglMxwJk", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEEC1ERKS6_) +STUB("FfXZGW1TMvo", _ZTVN3sce2np8SelectorE) +STUB("FfXgMSmZLfk", sceUserServiceSetKeyRepeatStartingTime) +STUB("FfZ7dAUmTMw", _ZNK7WebCore17ActiveDOMCallback25activeDOMObjectAreStoppedEv) +STUB("FfdG-Liacw8", _ZN3sce7Toolkit2NP2V212ActivityFeed12SharedVideos5resetEv) +STUB( + "FffYPfRKH7c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE7popBackEv) +STUB( + "FfngM2PVzy0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "Ffs0Wn0Cmbs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "FfvXrUZWOpY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("FfvZ8GZyL4g", _ZN3sce7Toolkit2NP19TusDeleteDataParamsC2Ev) +STUB( + "FfxEkzSTfqA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEdeEv) +STUB("Fg+UYXVqC6s", fuse_fs_rename) +STUB( + "Fg1EWgkOTUY", + _ZN3sce2Np9CppWebApi14SessionManager2V158PostPlayerSessionsSessionIdMemberPlayersRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_51PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEE) +STUB("Fg2BRITDYDg", WKIconDatabaseEnableDatabaseCleanup) +STUB("Fg4w+h9wAMA", _ZN10__cxxabiv120__si_class_type_infoD0Ev) +STUB("Fg7DTuZhN2U", _ZNK7WebCore4Node22previousElementSiblingEv) +STUB( + "FgAaWGOt7hk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "FgC-D6TnxNc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("FgHJrrJSptw", WKRenderLayerGetRenderer) +STUB("FgKMxg-joM8", FTC_Image_Cache_Lookup) +STUB("FgP0jMzeUU0", EVP_CipherFinal_ex) +STUB("FgTqYvN24Wg", _ZTv0_n24_N25MmsFileUpdaterFsOperationD0Ev) +STUB( + "FgVwjbmIzwE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEE11get_deleterEv) +STUB("FgaUOCE4CiA", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request11GetWhoLikedC1Ev) +STUB( + "FgbNCwEVObM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE5emptyEv) +STUB("FgdgBDdhsL0", mono_aot_Sce_Vsh_Np_Tmdbplt_end) +STUB( + "FgeNuqpGZ9g", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE5beginEv) +STUB( + "Fgglj88E+oQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEC1EPS6_PNS2_10LibContextE) +STUB("FgkKjJr06g0", sceBdSchedGetPrioritizedBackgroundCopyRequest) +STUB("Fgm7cz6AX4k", _ZN3sce2np4TimeplERK10SceRtcTick) +STUB( + "FgmxzIbarZo", + _ZN9Inspector31NetworkBackendDispatcherHandler20LoadResourceCallbackC2EON3WTF3RefINS_17BackendDispatcherENS2_13DumbPtrTraitsIS4_EEEEi) +STUB("FgwytTB3xM0", fuse_fs_create) +STUB("Fh-CX4ssmf8", _ZNK7WebCore4Page24isAlwaysOnLoggingAllowedEv) +STUB("Fh1GjwqvCpE", _WPutstr) +STUB( + "Fh3knvOXgN0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEmmEi) +STUB("Fh5UKPJ8Cj8", mono_aot_Sce_Vsh_Gls_NativeCallunwind_info) +STUB("FhQHDFyT9vE", _ZN7WebCore9HTMLNames8axisAttrE) +STUB( + "FhQR7Qc-hZk", + _ZN7WebCore16BlobRegistryImpl19registerFileBlobURLERKN3WTF3URLEONS1_3RefINS_21BlobDataFileReferenceENS1_13DumbPtrTraitsIS6_EEEERKNS1_6StringE) +STUB( + "FhSxycvQ5Us", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEEaSERSA_) +STUB("FhU9oYrbXoA", sceUsbdSetConfiguration) +STUB( + "FhV1O6QV9rw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEC2EPS8_) +STUB( + "FhXN5lQMQwg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEppEi) +STUB("FhapblPGTsQ", _ZNK7WebCore14LoaderStrategy11usePingLoadEv) +STUB("Fhc+DypKzcU", sceDbgDeleteExternalTriggerEvent) +STUB( + "FhdNDyXGrrc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB( + "FhgvvZbYDGY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEC1ERKS7_) +STUB("FhlCgpKi820", _ZThn120_NK7WebCore16HTMLMediaElement6pausedEv) +STUB("FhrGoRnCbCU", _ZN3JSC7Symbols34arrayIteratorFieldIndexPrivateNameE) +STUB( + "FhshAfCT9HE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEE7add_refEv) +STUB( + "Fhwe1cyP-5c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEEaSERSA_) +STUB("Fi1asFSjrI4", Java_sun_misc_AtomicLong_VMSupportsCS8) +STUB("Fi1fK8VxhCs", _ZN3sce7Toolkit2NP2V28Commerce7Request18DownloadListTargetC2Ev) +STUB( + "Fi3WoH4py6Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEmmEi) +STUB( + "Fi8rf5UJSzc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEE7get_refEv) +STUB( + "FiK5Kb-eOXs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE5emptyEv) +STUB("FiTR0ct11sQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEcvbEv) +STUB( + "FiZ-BpuLxlw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEE5resetEPS6_) +STUB("FiZSit4dUcg", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container13ageLimitIsSetEv) +STUB("Fidd8vWgyVE", sceNpUniversalDataSystemEventPropertyObjectSetBool) +STUB("FifScKLv688", _ZN3sce7Toolkit2NP8Presence9Interface11setPresenceEPKNS1_15PresenceDetailsEb) +STUB("FigcgjQNk-Y", _ZNK3sce2Np9CppWebApi11UserProfile2V114PersonalDetail12getFirstNameEv) +STUB("FihG2CudUNs", err_set_file) +STUB("Fijkhrl9Jqc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEC1ERKS7_) +STUB( + "FilC363Tb+U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEE7add_refEv) +STUB("Fin-BQj1StQ", mono_image_open_from_data_full) +STUB("FiqBFtOqwyg", _ZN12video_parser5vpcom6StringC2ERKSbIwSt11char_traitsIwESaIwEE) +STUB("FisUpFYlKVI", _ZN3JSC23MacroAssemblerX86Common18s_sse4_1CheckStateE) +STUB( + "FiuLyCoDZ2U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE3endEv) +STUB("Fiw3va9jOb4", _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15Error12unsetMessageEv) +STUB( + "FiwgVdR-i1w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEmmEv) +STUB( + "Fixq6tKtgGM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("Fj3K7fq81Nw", _ZN3WTF7RunLoop9TimerBaseD1Ev) +STUB("Fj7T2VY7xg4", xmlSAX2InternalSubset) +STUB("Fj7VTFzlI3k", _ZTISt5ctypeIwE) +STUB("Fj7r9EHzF38", sceAgcDriverSubmitMultiCommandBuffers) +STUB( + "FjBIQ1p8rDM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEmmEi) +STUB("FjDPATY4YZw", sceUlpMgrSetDecidState) +STUB("FjGK2UkuftY", _ZN7WebCore9HTMLNames8sizeAttrE) +STUB("FjL0RLR0s-Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEdeEv) +STUB( + "FjLfTnd1Zpg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEC2ERS7_) +STUB( + "FjOznE4Uds4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEC2EPKS8_) +STUB("FjP4ZsLHhpI", _ZN9Inspector14ConsoleMessage5clearEv) +STUB("FjWvl4f4zyg", _ZN7WebCore22EmptyFrameLoaderClient18cannotShowURLErrorERKNS_15ResourceRequestE) +STUB("FjZCPmK0SbA", _ZNSt7codecvtIwc9_MbstatetE2idE) +STUB("Fjaafcv5byY", _ZNK7WebCore16BackForwardCache10frameCountEv) +STUB("FjbLZy95ts4", _ZN3sce2np12NpHttpClientD0Ev) +STUB("FjbOtABSsKU", sceUserServiceGetGlsStreamingMode) +STUB("Fjc4-n1+y2g", __elf_phdr_match_addr) +STUB( + "FjnHRgk9IxM", + _ZN9Inspector25DebuggerBackendDispatcher18continueToLocationElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "Fjq6h+V12jE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEE11get_deleterEv) +STUB( + "FjuGsFvo2u8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEC1ERS7_) +STUB( + "FjucNldFJxY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB( + "Fk0THn16N7E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "Fk1ktoLiX+U", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("Fk7-KFKZi-8", acosh) +STUB( + "FkGuGBUZRmo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEptEv) +STUB("FkLOvGvslX4", _ZN3JSC11checkSyntaxEPNS_14JSGlobalObjectERKNS_10SourceCodeEPNS_7JSValueE) +STUB( + "FkPzOU52HPs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE5emptyEv) +STUB("FkQX7rjFomk", sceHmd2ReprojectionSetTiming) +STUB( + "FkVFR0zhi2o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("FkfHNXUdyd8", _ZN7WebCore9HTMLNames14onmouseoutAttrE) +STUB( + "FkfbhyQcu8U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEC2Ev) +STUB("Fkh4-Vom6ZU", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEEixEm) +STUB("FkpPAxNYZDw", _ZN7WebCore9HTMLNames13loopstartAttrE) +STUB("FkqcX0GrERw", _ZNK7WebCore12SharedBuffer11DataSegment4sizeEv) +STUB( + "FkqzqztnkLo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEC2EPS8_) +STUB("FksZ-ychRZQ", sceHubAppUtilDeeplinkToLiveDetailView) +STUB("FktuuBJlOws", + _ZN9Inspector18InspectorHeapAgent29willDestroyFrontendAndBackendENS_16DisconnectReasonE) +STUB("FkuwsD64zoQ", sceNpWebApiInitializeForPresence) +STUB("FkyGnTaZnss", _ZN7WebCore9FrameView14adjustViewSizeEv) +STUB( + "Fl+9SN4VpCE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE21intrusive_ptr_add_refEPS9_) +STUB("Fl1VFB0eJHM", _ZN7WebCore15PasteboardImageC1Ev) +STUB("Fl2+3kVkZMY", _ZN7WebCore11JSDOMMatrix15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("Fl21dNxa5A0", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_23NpSessionInvitationInfoEE3getEv) +STUB("Fl4Z1PFgaro", _ZN7WebCore37CrossOriginAccessControlCheckDisablerC1ERKS0_) +STUB("Fl52JeSLPyw", sceUserServiceSetFileSelectorSortContent) +STUB("FlB06QArnMc", _ZN9Inspector17ScriptDebugServer11addListenerEPNS_19ScriptDebugListenerE) +STUB("FlCmLNQfNao", fuse_reply_readlink) +STUB( + "FlJCuqSPVeM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEneERKS9_) +STUB( + "FlO60i1MgDU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC2ERKSA_) +STUB("FlTe07B8XjQ", _ZN22MmsMdCommonFsOperation9closeFileEv) +STUB("FlYLMra2YxY", __ubsan_handle_implicit_conversion_abort) +STUB( + "FlagLhjAEmc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEEptEv) +STUB("FliSulMBEDs", _ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_13FetchResponseE) +STUB("FljuSdm2Iek", _ZN7WebCore17JSDOMRectReadOnly4infoEv) +STUB( + "Flo73r9UNgg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEC1Ev) +STUB( + "FloNRko19dU", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToSendPlayerSessionMessageC2Ev) +STUB( + "Flr9FziG73c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEED2Ev) +STUB("Flv4OG+-cjQ", _ZN7WebCore18InspectorPageAgent7frameIdEPNS_5FrameE) +STUB("Flyyg6hzUOM", _ZN3sce2np9LocalFile4SeekEliPl) +STUB("Fm-dmyywH9Q", fileno) +STUB("Fm2AwUzfhIs", sceDevUsbReadHostRaw) +STUB("Fm3MkCIcp7k", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEED2Ev) +STUB( + "Fm4-+OaUWQo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEE11get_deleterEv) +STUB( + "Fm9nKJ67nQc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB( + "FmCYUIeYM7w", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE3endEv) +STUB("FmCpUwzsqqo", _ZN7WebCore17NowPlayingManagerdaEPv) +STUB("FmDmhB16wwE", _ZN3sce2npeqERKNS0_9NpTitleIdERK12SceNpTitleId) +STUB( + "FmH1Sn6H3tw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEC1EPS8_) +STUB( + "FmKHOzpinRI", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Network9Initiator4TypeEEEN3WTF8OptionalIT_EERKNS6_6StringE) +STUB( + "FmKUG9inRjU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE5clearEv) +STUB("FmL7VrECwds", il2cpp_capture_memory_snapshot) +STUB("FmO1xZ5pATA", u_getUnicodeProperties_67) +STUB("FmOpWiZg-Q0", il2cpp_string_intern) +STUB("FmQphPwpBis", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEE5resetEPS6_) +STUB( + "FmX1-8SgW+E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEED1Ev) +STUB("Fmanv10GDxM", JNU_ThrowInstantiationException) +STUB( + "FmdGRjaNgX0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE8pushBackERKS8_) +STUB( + "Fmgv+EuX16Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEC1EPS6_PNS2_10LibContextE) +STUB("FmjFl9Nvwcw", sceShellCoreUtilFreeUpSpaceOnSmrHdd) +STUB("FmpoQCGORqc", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12BlockedUsersEE3setEv) +STUB("FmqwUp-Kius", _ZN2GK9PlayerPSND2Ev) +STUB( + "FmrXiY6yzTQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEE11get_deleterEv) +STUB("Fmx4tapJGzo", sceNpTusSetDataAVUserAsync) +STUB("Fmy9vMwwroc", _ZN3JSC17DeferredWorkTimer6doWorkERNS_2VME) +STUB( + "Fn0T-uO7wZE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("Fn4CbPkv4E8", _ZN3sce7Toolkit2NP2V212NetworkUtils12BandwithInfo8deepCopyERKS4_) +STUB( + "Fn8UyJMipUw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "FnAf-8nZ7hg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEC2Ev) +STUB("FnEjFAzY+Ao", _ZNK3sce2np10JsonNumber3GetEPi) +STUB("FnEnECMJGag", _ZTVSt8messagesIcE) +STUB("FnIDUmNAvm0", _ZN23sceMetadataReaderWriter13_storageTableE) +STUB("FnJ0pXF0gR0", _ZN7WebCore19ResourceRequestBase18addHTTPHeaderFieldERKN3WTF6StringES4_) +STUB("FnLDy4R08cQ", CRYPTO_cleanup_all_ex_data) +STUB("FnQzqm0V3lU", scePerfTraceIoControllerCreate) +STUB( + "FnV5d20pWbA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEC2EPNS2_10LibContextE) +STUB("FnWkLNOmJXw", sceUserServiceIsGuestUser) +STUB("Fncgcl1tnXg", erand48) +STUB( + "FndZtozeZpk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "Fne4jC9JJZA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("FneFypEDRgY", sceAgcDcbSetWorkloadStreamInactive) +STUB("FnhAa5JKqhE", _ZNK7WebCore19ResourceRequestBase12isolatedCopyEv) +STUB("FnhwGKKZOjU", cairo_show_glyphs) +STUB( + "FnydCZal0fc", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB( + "Fo+vc2wFP9A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEC2EPS8_) +STUB("Fo+yeWyWEec", _ZN3IPC15ArgumentEncoder6encodeEt) +STUB("Fo--ToR1fsg", _ZN7WebCore9CookieJar10clearCacheEv) +STUB("Fo0Oaoqukg4", sceAmprAmmCommandBufferRemapWithGpuMaskId) +STUB( + "Fo1CWDdzm+A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("Fo29Yb3JBYs", _ZN3sce7Toolkit2NP2V28Commerce10CategoriesC2ERKS4_) +STUB("Fo60F0v1VZU", mono_aot_Sce_Vsh_Accessor_Db_Notifymethod_addresses) +STUB("FoARlup+lmg", _malloc_usable_size) +STUB( + "FoBddwLfphM", + _ZN3JSC8JSObject19getOwnPropertyNamesEPS0_PNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("FoDIzczBEy4", _ZN3JSC22printSuperSamplerStateEv) +STUB( + "FoIPs0G+QqM", + _ZN7WebCore11JSDOMMatrix6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_9DOMMatrixENS6_13DumbPtrTraitsIS8_EEEE) +STUB("FoLtZPut76Q", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_17MessageAttachmentEED2Ev) +STUB("FoMTASl07eo", uhash_hashCaselessUnicodeString) +STUB("FoRLx-EgrCs", mono_aot_Sce_PlayStation_Jsonunwind_info) +STUB( + "FoW0vK0fhvY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEptEv) +STUB("Foc0YVGG9s8", _ZN3sce7Toolkit2NP2V23TUS7Request7SetDataC1Ev) +STUB("FoeX6ro3gg0", _ZNK7WebCore5Color10asExtendedEv) +STUB("FofqQDjeu5I", _ZN3JSC20JSStringHeapCellTypeD2Ev) +STUB( + "Fohv+3uFE-U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEEC2ERSA_) +STUB("Foj36srqK9g", mono_monitor_enter_v4) +STUB("FonIxj-iNqo", _ZN3sce2Np9CppWebApi11Matchmaking2V18Location16setGameSessionIdEPKc) +STUB("Foo+QaGFJTQ", sceDataTransferTargetRequestTransferSpeed) +STUB( + "FopwU5bIFcc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE21intrusive_ptr_add_refEPS7_) +STUB("Fot-m6M2oKE", _Putstr) +STUB("FotoJOXjmps", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEEC2ERS5_) +STUB("Fou2sUion5M", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersC1Ev) +STUB( + "FovPcXsm+38", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEC2ERS7_) +STUB( + "Fp667JFixf0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEC2EPNS2_10LibContextE) +STUB( + "Fp6Aa-YHqHM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEneERKS9_) +STUB("FpCZBcq2c7Y", sceCesMbcsUcsContextInitCopy) +STUB("FpENdRuW664", Java_java_io_RandomAccessFile_seek0) +STUB( + "FpTSNJJ0GoI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEEC2Ev) +STUB( + "FpastpcN5Qs", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser9hasoffsetEv) +STUB("Fpchv+-9IbQ", _ZNK9Inspector22InspectorDebuggerAgent17breakpointsActiveEv) +STUB( + "FpcoN5Mx+N0", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB( + "FpddYxuOt3g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEC1Ev) +STUB( + "FpilmaiaIKU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEcvbEv) +STUB( + "FplHL+KDETs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEixEm) +STUB("FpmVtvy8tYo", scePfsGetBlockTableReadCommand) +STUB("FpqHuF8DFi8", mono_aot_Sce_PlayStation_Imeunbox_trampolines_end) +STUB( + "Fpwu2-A4VwI", + _ZN3sce2Np9CppWebApi14SessionManager2V135PostGameSessionsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_11GameSessionEEEEEPNS9_INS3_28PostGameSessionsResponseBodyEEE) +STUB("FpwzAcEDEIU", rgctx_fetch_trampoline_rgctx_60) +STUB("FpxnD+vtdFQ", _ZN3WTF21RefCountedLeakCounter9incrementEv) +STUB( + "Fq1XJ-1PBxc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEEaSERKSA_) +STUB("Fq6+0Fm55xU", sceUsbdExit) +STUB( + "FqCyijE2SnY", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer12setdirectionENS5_9DirectionE) +STUB("FqHN0elWA6E", _ZN3sce3pss5orbis9framework12PsmInitParamC1Ev) +STUB( + "FqKeUhlzrRQ", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("FqPVY+sRxGM", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE7popBackEv) +STUB( + "FqR6+W7Y8OE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEC2EPNS2_10LibContextE) +STUB( + "FqSamUDPFlw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEED2Ev) +STUB( + "FqWJnZTvcPM", + _ZN3sce2Np9CppWebApi14SessionManager2V130RequestGameSessionMemberPlayerC2EPNS1_6Common10LibContextE) +STUB("FqWrH4hnBow", u_getDataDirectory_67) +STUB( + "FqYJDdmVjs4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("Fqc0-3YCXjo", tls_close) +STUB("Fqg7CSrL+1I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEC1Ev) +STUB("FqjmInhF2yQ", Java_com_sony_gemstack_resources_ResourceManager_reserveStream) +STUB( + "FqkkKYA9eNc", + _ZN3sce2Np9CppWebApi11Matchmaking2V112ErrorFactory6createEPNS1_6Common10LibContextElPKcS9_PNS5_12IntrusivePtrINS3_5ErrorEEE) +STUB("Fql-di-dWu0", sceSpPthreadCondattrDestroy) +STUB("FqlohMUHxBs", _ZN3sce7Toolkit2NP2V28Commerce10ContainersD2Ev) +STUB("Fqmxb+ZzXfw", _ZN3sce7Toolkit2NP2V210Tournament12MatchDetailsD2Ev) +STUB("Fqn-wkJCOes", sceM4aacEncEncode) +STUB("FqneT2syjGE", FcFontMatch) +STUB( + "FqptE4Mnync", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEE5resetEPS9_) +STUB( + "Fqq6XXAfv8A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE10setContextEPNS2_10LibContextE) +STUB("Fqr9aR5mkcg", mono_aot_Sce_Vsh_Np_Managerjit_got) +STUB("FqsrXoH8AdQ", _ZN6WebKit17ChildProcessProxy18didFinishLaunchingEPNS_15ProcessLauncherEi) +STUB("FqtDOHUuDNw", sceNpManagerIntGetParentalControlFlag) +STUB( + "Fr28jDV1iOQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEC2EPS8_) +STUB("Fr7j8dMsy4s", + _ZNKSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewPK2tmcc) +STUB( + "FrCFTw-J7C8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEmmEi) +STUB("FrCNL9TQ8ms", sceAmprCommandBufferWaitOnCounter) +STUB("FrFSe3WaYFk", _ZN7WebCore6Editor26decreaseSelectionListLevelEv) +STUB("FrH6fg5FSeI", _ZN7WebCore14SocketProviderC1Ev) +STUB( + "FrHBP6hu78c", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEEdeEv) +STUB("FrIZp6mPIq0", _ZN7WebCore4Page20unmarkAllTextMatchesEv) +STUB( + "FrMpGbOpWcI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("FrPx59tZ91Y", _ZN7WebCore10JSLocation14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB("FrQmcZZVFpk", _ZN3sce7Toolkit2NP2V27NpUtils7Request17CheckPsPlusAccessC1Ev) +STUB("FrWdTOjaiOA", JSContextGroupRetain) +STUB("FrXKeGs6Md0", uniset_getUnicode32Instance_67) +STUB("FraP7debcdg", sceWebBrowserDialogOpen) +STUB( + "Frb23wGoQs8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEE11release_refEv) +STUB("FriXzburZN8", _ZN7WebCore17PageConsoleClientnwEmPv) +STUB("FrjC3ev-71Y", _ZN3sce2Np9CppWebApi7Matches2V126RequestTeamMemberStatisticD2Ev) +STUB("Frm0+nWgZRo", _ZNSt9basic_iosIcSt11char_traitsIcEE4fillEc) +STUB("Frm1N1BC9XE", _ZNK15AbstractStorage13YoutubeFolder7GetStatEPNS_4StatE) +STUB( + "FrnzdlUgBnA", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_20NpSessionInformationENS1_15AppSTLAllocatorIS5_EEEEC2Ev) +STUB("FrsnVM33fps", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_28ActivityFeedSharedVideoStoryEE7addressERS3_) +STUB("FrtNUpYSmbA", mono_cli_rva_image_map) +STUB("FrwEznwnZts", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V113AttributeTypeEEdeEv) +STUB("FrxliFYAO8Y", sceNpUtilGetIgnoreNpTitleId) +STUB( + "FrzOaq7JbJI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEaSERS7_) +STUB( + "Fs1q74mahsA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEEC1ERSA_) +STUB("Fs3ejLCo4zc", t1_driver_class) +STUB("Fs9m+rcaQM8", __asan_stack_malloc_4) +STUB( + "FsFEeOGHkoc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEEC2EPNS2_10LibContextE) +STUB("FsOBy3JfbrM", sceUserServiceGetFileSelectorFilter) +STUB("FsRCiocN8k0", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEEC1Ev) +STUB("FsROImWgAGc", _ZThn16_N9Inspector18InspectorHeapAgent12stopTrackingERN3WTF6StringE) +STUB("FsRs30s47tk", + _ZN7WebCore21ContentSecurityPolicyC2EONS_3URLEPNS_27ContentSecurityPolicyClientE) +STUB("FsSCUyy3fMY", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18SessionInformationEEC1ERKS4_) +STUB("FsVDduQSoRU", fuse_lowlevel_notify_inval_inode) +STUB("Fsa9M5D8Dko", _ZN7WebCore12NamedNodeMap15removeNamedItemERKN3WTF10AtomStringE) +STUB( + "FsaVxexOmig", + _ZN9Inspector20InjectedScriptModule14ensureInjectedEPNS_21InjectedScriptManagerERKNS_14InjectedScriptE) +STUB("FscFh70QHyg", _ZNK7WebCore8FormData9asBlobURLEv) +STUB("FsiuQCKSE5Q", + _ZN4IPMI4impl10ClientImpl17invokeAsyncMethodEjPKNS_8DataInfoEjPjPKNS_6Client12EventNotifeeE) +STUB( + "FsjZmlJctW4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEC2EPNS2_10LibContextE) +STUB( + "FslkTgAZYyo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("FsouSN0ykN8", sceNpScoreGetRankingByNpIdPcIdAsync) +STUB("FssNW3GALk0", _ZN7WebCore8Document13activeElementEv) +STUB( + "Fsth-cnbVhQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "Fsv1hTLwxVA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "Ft++poeglbk", + _ZN8meta_gen11MsvPromoter29setKeyValue_TBLV_AudioBitrateENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB("Ft-3KAzl--c", _ZN3sce2Np9CppWebApi11Matchmaking2V15Error10setMessageEPKc) +STUB("Ft-VezxSErk", _ZN3sce2np13NpTitleSecretC2EPKvm) +STUB("Ft3EtsZzAoY", sceKernelAioDeleteRequests) +STUB("Ft5agD1+fA0", sceAvSettingNotifyProcessPostSuspend) +STUB("Ft6ZvhqtLic", uloc_getCurrentLanguageID_67) +STUB("FtC9uKqXDjg", _ZN7WebCore15HitTestLocationC1Ev) +STUB( + "FtEdZhZtlFA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEED1Ev) +STUB("FtGP5aXKFQU", sceFsMountGamePkg) +STUB("FtIzMIIekMw", _ZN7WebCore8SVGNames17unicode_rangeAttrE) +STUB("FtLOITlasvY", _ZN3WTF13StringBuilder12appendNumberEx) +STUB( + "FtMRmqqq1Ag", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "FtMZkujMvQQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB("FtOPxGScdLw", _ZN9Inspector22InspectorDebuggerAgent26buildBreakpointPauseReasonEm) +STUB("FtPFMdiURuM", _ZTISt16nested_exception) +STUB("FtVNuKHl+0k", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEE5resetEPS5_) +STUB( + "FtWexLid4o0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEE11get_deleterEv) +STUB( + "FtbxUaDwvTk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEEC2EPS6_PNS2_10LibContextE) +STUB("Ftf+UWKXOAA", _ZN3sce7Toolkit2NP2V210Tournament13OneVsOneMatchaSERKS4_) +STUB("FtnH+ny7aDw", _ZN7WebCore11DisplayList6RotateD1Ev) +STUB("FtrFPGe8m30", _ZN3sce7Toolkit2NP2V23TUS7Request7SetDataC2Ev) +STUB( + "FtrY+p5gefI", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEiRNS2_10LibContextEPT_m) +STUB( + "Fts2nXFk6F0", + _ZN3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsers10initializeEPNS1_6Common10LibContextE) +STUB( + "FttaQVGuJpA", + _ZN7WebCore19TextTrackCueGeneric6createERNS_22ScriptExecutionContextERKN3WTF9MediaTimeES6_RKNS3_6StringE) +STUB("Fu0n0QGoarQ", JSPropertyNameArrayRetain) +STUB("Fu1cFF-yuM4", g_MonoEnv) +STUB( + "Fu8AxlYjsaE", + _ZN9Inspector21HeapBackendDispatcher12stopTrackingElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "Fu94Ox0tP-A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEE5resetEPSA_) +STUB("FuE8Sk+7tHM", _ZN3JSC7Symbols38regExpStringIteratorUnicodePrivateNameE) +STUB("FuEl46uHDyo", sceImeDicReplaceWord) +STUB( + "FuGEiXpD874", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEC1Ev) +STUB("FuHXBscOxGk", _ZNK7WebCore16HTMLImageElement36pendingDecodePromisesCountForTestingEv) +STUB("FuJr+lxuOIM", _ZN3sce7Toolkit2NP2V28Matching6Worlds5resetEv) +STUB( + "FuK-xhMc23Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("FuPUzILKqDU", _ZN3sce7Toolkit2NP2V28Commerce7SkuInfoC1Ev) +STUB( + "FuRtPqkRaPA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEE7add_refEv) +STUB("FuSKfS9KP74", mono_aot_System_Resources_ResourceManagerunbox_trampoline_addresses) +STUB("FuVbkyKlf+s", sceAgcCbCondWriteGetSize) +STUB( + "FuVsViyrmaU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEED1Ev) +STUB("FuYvSTtsdlM", unumsys_getName_67) +STUB("FubuBXanVWk", _ZN3sce2np3ipc17ServiceIpmiClientC1Ev) +STUB( + "FueXOxLWLAo", + _ZN7WebCore19UserContentProvider60invalidateAllRegisteredUserMessageHandlerInvalidationClientsEv) +STUB("Fuh2NwPuKyQ", _ZN7WebCore17LibWebRTCProvidernaEmPv) +STUB("FuiRrsO3xGA", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountIdD2Ev) +STUB( + "FupxgeeUnBg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEppEi) +STUB("Fux56rPNtvs", WKBundlePageCanShowMIMEType) +STUB("FuxaUZsWTok", fesetexceptflag) +STUB("FuxhR0K0zVE", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession23getLocalizedSessionNameEv) +STUB("Fuy39y9QJdE", sceVencCoreSyncEncode) +STUB("FuyOGJaB15A", _ZN9Inspector18InspectorHeapAgent17didGarbageCollectEN3JSC15CollectionScopeE) +STUB("Fv+LV+3CjIE", sceApplicationResume) +STUB("Fv6ugI-vz9Q", __tsan_atomic8_compare_exchange_strong) +STUB("Fv8MWCUH8k8", FT_Stream_GetULong) +STUB("FvE94vlStlg", mono_aot_System_Collectionsjit_code_end) +STUB( + "FvHMso-wnz0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("FvI50-3hoSo", sceDbgAmprAmmGetNumberOfErrors) +STUB( + "FvQmNv4YemE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("FvUqRaU7jtg", sysc_m00) +STUB("FvZFydLB754", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18SessionInformationEEC2ERKS4_) +STUB( + "FvZSgMMFBZM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEixEm) +STUB("FvhDmS1+KJc", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_6TicketEED2Ev) +STUB( + "FvicVw4S4tY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEC2EPS8_) +STUB("FvmbvyYnfGQ", _ZN3JSC12RegExpObjectC1ERNS_2VMEPNS_9StructureEPNS_6RegExpE) +STUB("Fvmf0p6INBU", mono_aot_Sce_Vsh_Accessorunbox_trampolines_end) +STUB( + "FvrPJobNCZQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEED2Ev) +STUB("FvuQlkBE3Ng", sceApplicationBlockingKill2) +STUB( + "FvuqpOA4YRo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEED2Ev) +STUB("Fvv446hlLkA", mono_lock_free_queue_enqueue) +STUB( + "FvxQvacs+F8", + _ZN7WebCore31forwardFunctionCallToBackingSetERN3JSC14JSGlobalObjectERNS0_9CallFrameERNS0_8JSObjectERKNS0_10IdentifierE) +STUB( + "Fw1InKyzD+E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEEaSERSB_) +STUB("Fw1nH3Map3o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEaSERS7_) +STUB("Fw6D7tNaqBM", _ZThn24_N9Inspector22InspectorDebuggerAgent11didContinueEv) +STUB( + "Fw7m66m-nMQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEE7add_refEv) +STUB( + "Fw9HgMNu7No", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEEC1ERS9_) +STUB("FwB6SfbyAQM", cairo_ft_font_face_reset_synthesize_weight) +STUB( + "FwEVvEmlhSM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEEC1Ev) +STUB("FwKWIx0rgyY", _ZN3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse10getFriendsEv) +STUB("FwLum2FjiBQ", _ZN7WebCore19sleepDisablerClientEv) +STUB("FwOTcwLmDFw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEEppEv) +STUB("FwR3P7Qi5Q0", sceHandTrackerEraseResult) +STUB("FwRBE7FurCc", + _ZNSt9_FacetptrISt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEE6_PsaveE) +STUB("FwRQrJGdfGk", __tsan_atomic128_fetch_xor) +STUB("FwXIWwbIPrI", _ZN7WebCore13GraphicsLayer7setSizeERKNS_9FloatSizeE) +STUB("FwYZZK4UCXQ", rgctx_fetch_trampoline_rgctx_36_p) +STUB( + "FwYwIsTzaOo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEC2EPS8_) +STUB("FwZxHpDJ0gs", _ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriendsD2Ev) +STUB("FwaUer3zeVc", mono_aot_Sce_Vsh_DiscPlayerplt_end) +STUB("FwhQYXEmkOY", rgctx_fetch_trampoline_rgctx_32_p) +STUB("FwjRUuF9+B8", mono_profiler_events) +STUB( + "FwkRla8eI6E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEC1Ev) +STUB("FwmwwnqEvRw", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_8TempRankEE3getEv) +STUB( + "Fwnfq0Ef7F8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEE7get_refEv) +STUB("Fwow0yyW0nI", remquol) +STUB( + "FwpBg3fJTys", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("FwpK7+QxBlg", sceBgftServiceIntDownloadFindActiveTask) +STUB( + "FwsjW4Qw5Vk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE5clearEv) +STUB("Fwvh++m9IQI", sceGnmGetGpuCoreClockFrequency) +STUB("FwzVaZ8Vnus", optopt) +STUB("Fx2FORGKZJM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEC2ERKS7_) +STUB("Fx2UwoQVVmo", _ZN3sce2np7CalloutD0Ev) +STUB("Fx3lSf37Z4c", mono_btls_x509_crl_from_data) +STUB( + "FxA3THhm6Mw", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V226WebApiErrorResponseFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_19WebApiErrorResponseEEE) +STUB( + "FxENaDHh8BY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEEC1ERSA_) +STUB("FxFSy0yOK2U", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getCurrentPosition) +STUB("FxG0371AIgc", _ZN7WebCorelsERN3WTF10TextStreamERKNS_9FloatRectE) +STUB( + "FxH3lzOpbxA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("FxH5g4E9Vj0", unum_parseDoubleCurrency_67) +STUB("FxH74ylow+Q", _ZN7WebCore19JSAnimationTimelineD2Ev) +STUB("FxHW5NuEXsY", tcflush) +STUB( + "FxIaQFtBuAE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEEC2ERSA_) +STUB( + "FxJvnuwh23U", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEdeEv) +STUB("FxM2yfH7BX8", uset_remove_67) +STUB("FxOHF0FBNfU", _ZN15AbstractStorage14StorageManager16RegisterListenerEPNS_17ItemEventListenerE) +STUB("FxOa6zwDh1c", _ZNK7WebCore16HTMLInputElement8multipleEv) +STUB( + "FxPu4oxlSt4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("FxSpiu+ptYo", _ZN3sce7Toolkit2NP2V28Matching6WorldsaSERKS4_) +STUB("FxThiGU3qyM", unorm2_close_67) +STUB("FxVZqBAA7ks", _write) +STUB("Fxe84wRnMaY", mono_get_uint64_class) +STUB("FxeRx7vInsU", _ZN3sce7Toolkit2NP2V29Messaging12Notification16NewInGameMessageD1Ev) +STUB( + "Fxg5jB6x6Wg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE5beginEv) +STUB("Fxk0AdJTh8s", Java_java_net_Inet6Address_init) +STUB( + "Fxlgzw6CqC0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("FxnOqy130ZY", _ZN3sce2Np9CppWebApi14SessionManager2V111GameSessionD2Ev) +STUB("Fxq5MuWRkSw", SSL_ASYNC_getRecvBuffer) +STUB("Fxux7Ob+Ynk", sceNpUtilGetNpLanguageCode2Str) +STUB( + "Fxw5ElewQ5M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEE3getEv) +STUB( + "FxwPiTxDbhU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEppEv) +STUB( + "Fxxr5lYBfl4", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("Fy3Br9HMIi8", _ZN7WebCore11DisplayList4ClipD2Ev) +STUB( + "Fy576x6mUxc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEppEi) +STUB("Fy96WkLemI0", sceCesEucKrUcsProfileSetSbcs) +STUB("FyJjbH+d4HQ", __tsan_write16_pc) +STUB("FyMm5OSA9Mw", _ZN7WebCore17cssValueKeywordIDEN3WTF10StringViewE) +STUB( + "FyOAjfkFjWQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEC2ERS7_) +STUB("FyOMUdXa5Tc", _ZN3WTF11PrintStream3endEv) +STUB("FyPe4Yj0RRg", _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBodyD2Ev) +STUB( + "FyPujRNhwwc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEppEi) +STUB("FyQIb3s4-Ow", WKBundleAddUserScript) +STUB( + "FySEeDYOjLk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEEaSERSA_) +STUB("FySlXOyk40o", _ZNK3sce3Xml3Dom4Node11getNodeNameEv) +STUB( + "FySvwNKJp2U", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody19setJoinableUserTypeERKNS3_22CustomJoinableUserTypeE) +STUB( + "FyT0cBmd+Fs", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEEiRNS2_10LibContextEPT_m) +STUB("FyVJTzY51dc", WKArrayRemoveItemAtIndex) +STUB("FyVn4gpsWfU", u_countChar32_67) +STUB("FyWCJLdsxqU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEED2Ev) +STUB("FyhlwO6-+sM", glDepthFunc) +STUB("Fyk2lOILeKY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEE7get_refEv) +STUB("FylpFtTPS5s", mono_aot_Sce_Vsh_MyGameListunbox_trampolines_end) +STUB("Fyogm-tTBOc", + _ZN7WebCore20SVGPathStringBuilder6moveToERKNS_10FloatPointEbNS_18PathCoordinateModeE) +STUB( + "FyolTF1dvuA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "FypKAVi0Xhw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEptEv) +STUB("FyuoXPzv780", sceFiosDebugDumpDH) +STUB("FyvlwTMC2TI", sceVideoCoreInterfaceCreateFrameBufferContext) +STUB("Fyw2Fkasc+4", sceAvSettingNotifyUmdEvent) +STUB( + "FywKncPHxLc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB( + "FywwLXCpuVw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEmmEi) +STUB("FyxSrbBQ9-c", _WScanf.schar) +STUB( + "FyznWfTyqGI", + _ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody20setLargeDataNumLimitERKi) +STUB("Fz+01Q4GjpM", sceTextToSpeechCancelImpl) +STUB("Fz+So9vLtw0", _ZN7WebCore6ISOBoxD0Ev) +STUB( + "Fz-U1vhb4mY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEC2Ev) +STUB("Fz3C6fePEb4", sceDeci4hDrfpFstat_fuse) +STUB( + "FzB0CiU5y1Y", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditions12setaccountIdEPKc) +STUB("FzECy3Wxxas", sceVdecswGetPictureInfo) +STUB("FzEWeYnAFlI", sceContentExportInit) +STUB( + "FzJljjQlYEg", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V143SetVariableWithConditionsRequestBodyFactory6createEPNS1_6Common10LibContextENS3_9ConditionElPNS5_12IntrusivePtrINS3_36SetVariableWithConditionsRequestBodyEEE) +STUB( + "FzLcLuehUeo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE7popBackEv) +STUB( + "FzNIpimABFg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEmmEi) +STUB("FzPzYIEFW74", mono_signature_hash) +STUB("FzQS6DREDfk", sceSharePlayProhibitController) +STUB("FzTIDgUHT0I", mono_aot_System_Runtimeplt_end) +STUB("FzVPLU4R+Rg", sceVencCoreStartSequence) +STUB("FzWXwAyLoCw", jinit_2pass_quantizer) +STUB("FzaIQgRM9Pw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEEC1ERKS6_) +STUB( + "FzaSoS-xZuI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V145SetMultiVariablesRequestBody_variablesFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_38SetMultiVariablesRequestBody_variablesEEE) +STUB("FzjISMWw5Xg", sceSystemStateMgrExtendShutdownTimerForPostAutoUpdateProcess) +STUB( + "FzopadzxGLU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEneERKS9_) +STUB("FzpLsBQEegQ", sceFontGraphicsGetDeviceUsage) +STUB("FzqYPd7E5Ho", _ZN3sce7Toolkit2NP2V211UserProfile10NpProfilesC2Ev) +STUB("FzqrpwhFlJw", BIO_printf) +STUB("FzrPo3xk3aI", _ZN7WebCore16HTMLMediaElement25setCurrentTimeForBindingsEd) +STUB("G++R7K10k0E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEC2Ev) +STUB( + "G+0djWyODzI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEeqERKS9_) +STUB( + "G+2CCVLVFDs", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12unsetString8Ev) +STUB( + "G+5PYx1k++U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE5beginEv) +STUB( + "G+5oGeFDYBE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEaSERS7_) +STUB( + "G+6r8z+ZKDY", + _ZN7WebCore30InspectorInstrumentationWebKit24interceptRequestInternalERNS_14ResourceLoaderEON3WTF8FunctionIFvRKNS_15ResourceRequestEEEE) +STUB("G+88ITlwCTY", _ZN3JSC7Symbols32AsyncFromSyncIteratorPrivateNameE) +STUB("G+93zhSXEbk", _ZN3sce7Toolkit2NP2V24Core18CustomResponseDataC2ERKS4_) +STUB("G+BEH0hlDrQ", _ZN3sce2Np9CppWebApi7Matches2V119ResponseTeamResults20getTeamMemberResultsEv) +STUB("G+C7RYtPMbI", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110TaskStatusEEC1Ev) +STUB("G+LWfM-r6Gg", _ZN7WebCore10XMLNSNames9xmlnsAttrE) +STUB("G+Lq53FSulk", sqlite3_errcode) +STUB("G+P6ACwtwVk", __libunwind_Unwind_GetTextRelBase) +STUB("G+QLTfyLMYk", sceAudioPropagationSourceGetAudioPathCount) +STUB("G+REYMt-IKM", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V224TestForProfanityResponse12unsetMessageEv) +STUB( + "G+S3cl-sxP4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEC2Ev) +STUB("G+XSOLKw5AI", DES_set_odd_parity) +STUB( + "G+ZR9welKZ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEEaSERSA_) +STUB( + "G+ZwzZ+R+FI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEeqERKS9_) +STUB( + "G+dqMVctaDI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEC1EPNS2_10LibContextE) +STUB( + "G+ewQYQUq3Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEEaSERKSA_) +STUB("G+v692ul7MA", _ZThn8_N3sce2np9HttpTrans4ReadEPNS0_6HandleEPvmPm) +STUB("G-+SmxcuaMA", _ZN7WebCore20UserGestureIndicatorD1Ev) +STUB("G-2uaUYmQjw", delegate_virtual_invoke_9) +STUB("G-39lsdSgXo", sceFiosRenameSync) +STUB("G-6N-vLNZ10", _ZN7WebCore18PlatformTimeRangesC2Ev) +STUB("G-7VqR7pzeA", sceCesUcs2ToEucKr) +STUB("G-82OcP0fvk", jpeg_fdct_6x6) +STUB( + "G-IymMZQk4M", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE5beginEv) +STUB("G-Jl6md9fz4", uloc_canonicalize) +STUB("G-MYv5erXaU", sceKernelGetAppInfo) +STUB("G-NhAZUNlwc", sceKernelWriteMapWithGpuMaskIdCommand) +STUB("G-QmsJI7gXE", _ZN3sce7Toolkit2NP2V26Trophy16TrophyPackTrophyaSERKS4_) +STUB( + "G-TX0ZOueng", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEneERKS9_) +STUB( + "G-UcquEEV7k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("G-f-m1EyF0A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEE3getEv) +STUB( + "G-jgwqaPxNQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEEC1ERSA_) +STUB("G-rWYY8TfUY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEED1Ev) +STUB("G-w5-0Oy+Pc", sceVshAvcapOpenVideo) +STUB("G-yDD7GpSZU", g_array_append_vals) +STUB( + "G-z56TXBIYk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEEC1EPSA_PFvSC_EPNS2_10LibContextE) +STUB("G0+FF86PJns", u_totitle_67) +STUB( + "G0-GEDZG-cA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE21intrusive_ptr_sub_refEPS9_) +STUB("G02jybb1+go", + _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile11setOnlineIdERK13SceNpOnlineId) +STUB("G0520-GD5FM", _ZN3sce7Toolkit2NP2V212EventsClient11EventInGameD2Ev) +STUB("G0EShb8y49Y", + _ZN15AbstractStorage18DailymotionStorageC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB( + "G0GseSL+1EY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEEaSERSA_) +STUB("G0RUhA20GAw", mono_aot_ReactNative_Vsh_Commonunbox_trampolines) +STUB("G0TZ92Vt05Y", rgctx_fetch_trampoline_mrgctx_17_p) +STUB("G0U+9Gt7XPg", __tsan_atomic8_load) +STUB("G0VGrAWh0Iw", _ZN7WebCore5Range10insertNodeEON3WTF3RefINS_4NodeENS1_13DumbPtrTraitsIS3_EEEE) +STUB("G0WF9pgnzCE", udat_setContext_67) +STUB("G0YOlUTPg78", _ZN3JSC16InternalFunction11getCallDataEPNS_6JSCellERNS_8CallDataE) +STUB("G0ccNQDjLVk", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEEaSERKS6_) +STUB("G0gdWIZvnKI", _ZN9Inspector20InspectorTargetAgentdaEPv) +STUB("G0hFeOdRCUs", sceSaveDataChangeInternal) +STUB("G0jrLdvEqDw", sceAgcDcbMemSemaphore) +STUB( + "G0o8NfhTxGo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB("G0pE+RNCwfk", sceNpScoreDeleteNpTitleCtx) +STUB( + "G0xjibk1xPM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEppEv) +STUB("G1-NjYeIowE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE7popBackEv) +STUB("G1-RyPlIrIY", scePadTrackerInit) +STUB("G12foE0S77E", sceSaveDataGetAutoUploadSetting) +STUB("G13HF1z-e4o", sceContentSearchOpenMetadata) +STUB( + "G13deiPI5fk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEmmEi) +STUB("G14y+PFH9KE", SdkVersion) +STUB( + "G15ALic2GPE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEEdeEv) +STUB("G1C+IzPmhc0", mspace_lock) +STUB("G1CxXeXs2d0", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeaders9unsetETagEv) +STUB( + "G1IdDujNvyQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "G1ONyub9214", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("G1RjxI6BFSg", _ZN7WebCore19serializationForCSSERKNS_11LinearSRGBAIfEE) +STUB("G1RwFxS5NPo", _ZN7WebCore21AudioHardwareListener6createERNS0_6ClientE) +STUB("G1WJEmXaB20", mono_debugger_agent_transport_handshake) +STUB("G1YOKDJYX2Y", sceAudioOut2GetSpeakerArrayMemorySize) +STUB("G1ejD-EBEAw", _ZN3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBody13unsetLocationEv) +STUB("G1fDABsBuxo", WKDataGetBytes) +STUB("G1g1T9IQFEY", _ZN3JSC9Structure8isFrozenERNS_2VME) +STUB("G1kDk+5L6dU", _Call_onceEx) +STUB("G1kiSnxB7pA", _ULx86_64_dwarf_callback) +STUB( + "G1lMEu4RoR4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("G1rbEqv-HhM", + _ZNK7WebCore12ChromeClient33signedPublicKeyAndChallengeStringEjRKN3WTF6StringERKNS_3URLE) +STUB("G1s+fE+00M4", + _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_19CSSStyleDeclarationE) +STUB("G1z7M8FULpg", _ZN3sce2Np9CppWebApi12Leaderboards2V111UserFactory7destroyEPNS3_4UserE) +STUB("G1zcPUEvY7U", _ZNKSt7codecvtIwc9_MbstatetE9do_lengthERS0_PKcS4_m) +STUB("G2+JJ+BamfE", scePlayReadyReaderDecrypt_Legacy) +STUB("G23Rtu5LBvI", + _ZNK3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForRead15spectatorsIsSetEv) +STUB( + "G24ICW-CBmc", + _ZN7WebCore21ComplexTextController7advanceEjPNS_11GlyphBufferENS_19GlyphIterationStyleEPN3WTF7HashSetIPKNS_4FontENS4_7PtrHashIS8_EENS4_10HashTraitsIS8_EEEE) +STUB("G29jd4UdmU8", _ZNK3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead12natTypeIsSetEv) +STUB("G2AWJUJFDjs", mono_register_machine_config) +STUB( + "G2CFSKQVJP4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEneERKS9_) +STUB( + "G2LZZPVIkYQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEC1Ev) +STUB( + "G2MW2sFUAos", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEE7get_refEv) +STUB("G2Ny4kfT-+U", _ZN15AbstractStorage11LocalFolder6RemoveEb) +STUB("G2OOzViPX7I", sceBufferInit) +STUB("G2QFZfc7NH4", GCC_except_table66) +STUB( + "G2QKxGBCrpg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEE11release_refEv) +STUB("G2U3S-VCv-c", glIsVertexArray) +STUB("G2VH+7gp8Qc", mono_icall_init_comp) +STUB( + "G2VfL6sFcuk", + _ZN7WebCore24CoordinatedGraphicsLayer40setCoordinatorIncludingSubLayersIfNeededEPNS_30CoordinatedGraphicsLayerClientE) +STUB( + "G2Y3lwYhm8I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEppEi) +STUB("G2YE8xWdlU8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEE11get_deleterEv) +STUB("G2Z-FNOcMT8", _ZN3sce7Toolkit2NP2V27Ranking12RangeOfRanks9MAX_RANGEE) +STUB( + "G2c5+68-R-k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEEC2ERSA_) +STUB( + "G2hj0RMA9Dw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "G2hkcFEoy30", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEppEv) +STUB( + "G2k--Yv6xD0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("G2kjkUnsxJ4", _ZN7WebCore7JSRangeC2ERKS0_) +STUB( + "G2m4fT8bWpc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE5beginEv) +STUB("G2tb9MfBnFs", _ZN4IPMI7SessionD0Ev) +STUB("G2wJ3AqjNDs", _ZN3sce2Np9CppWebApi14SessionManager2V111GameSession8fromJsonERKNS_4Json5ValueE) +STUB("G2y9Aln7HYg", _ZN3sce3pss4core9threading4CondD1Ev) +STUB("G30u3vZ0xGc", WKPreferencesGetWebAnimationsCSSIntegrationEnabled) +STUB("G33UVyzplCY", _ZN7bmalloc5Cache25allocateSlowCaseNullCacheENS_8HeapKindEmm) +STUB("G350AOROeU4", _ZN3sce7Toolkit2NP2V210Tournament10TeamMemberD2Ev) +STUB( + "G37m8nX5spg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEptEv) +STUB( + "G38CT2ThEYQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEC1EPS7_PFvS9_EPNS2_10LibContextE) +STUB("G3AnLNdRBjE", sceNpWebApiInitialize) +STUB( + "G3BBQSsDo9M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEC1Ev) +STUB("G3FORkp2ePs", _ZNK7WebCore6Quirks56shouldDispatchSyntheticMouseEventsWhenModifyingSelectionEv) +STUB("G3Fa5r+f11U", _ZN7WebCore8Document4headEv) +STUB("G3GJxr0Wg6A", _ZN3JSC2VM22errorInstanceSpaceSlowEv) +STUB("G3O2j9f5z00", sceNetGetRandom) +STUB("G3UrSBjCgXA", wcstod.fpinan) +STUB("G3brhegfyNg", sceRazorCpuWriteBookmark) +STUB( + "G3gZD-XtzZs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEC2ERKS7_) +STUB( + "G3h-NDHnyW4", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "G3myszLfkIc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "G3osstxzMWg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEC2EPNS2_10LibContextE) +STUB("G3qjOUu7KnM", flsl) +STUB("G3uGD3Wqll4", mono_btls_x509_up_ref) +STUB("G4+RWlGLEt0", WKContextCopyPlugInAutoStartOriginHashes) +STUB("G40-Idmfb-8", sceCesUtf16ToSJis) +STUB("G420P25pN5Y", sceCoredumpDebugTriggerCoredump) +STUB("G43WQVeW3Bo", _ZNK7WebCore12ISOWebVTTCue8durationEv) +STUB( + "G44HCU7cNh4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEC2Ev) +STUB("G46aDJx5Qx8", + _ZNK3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody11getSortModeEv) +STUB("G46u5R1Ng2o", GCC_except_table352) +STUB("G47L4jUy648", + _ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends9terminateEv) +STUB( + "G4A-f1sFGFU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE5emptyEv) +STUB("G4FYQtsjOX0", _ZN3sce2np3ipc17ServiceIpmiClient11InitServiceEi) +STUB( + "G4HmUyS-KLs", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEiRNS2_10LibContextEPT_m) +STUB("G4J2MwKCa2Q", _ZThn24_N9Inspector28InspectorScriptProfilerAgentD1Ev) +STUB("G4Jr+rsslPg", _ZN3WTF11setDataFileEOSt10unique_ptrINS_11PrintStreamESt14default_deleteIS1_EE) +STUB("G4NgZuAegEE", + _ZN7WebCore20ResourceResponseBase18addHTTPHeaderFieldENS_14HTTPHeaderNameERKN3WTF6StringE) +STUB( + "G4PJ0C9QWlM", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "G4PRrzc81Es", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("G4Pw4hv6NKc", _ZNSt14_Num_ldbl_base10is_boundedE) +STUB("G4Q8KNkb5XE", sceCompositorAllocateIndex) +STUB( + "G4QJQ2hZwWQ", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser9setoffsetEi) +STUB( + "G4WTZycq2nM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEC1Ev) +STUB("G4WkJKGm3Q8", ucol_reset_67) +STUB( + "G4WyhMLdOZI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE8pushBackERKS8_) +STUB( + "G4WzCGB5t9s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEED1Ev) +STUB("G4XM-SS1wxE", _ZTVN10__cxxabiv123__fundamental_type_infoE) +STUB("G4bcOddzB7o", _ZN3JSC9Exception6createERNS_2VMENS_7JSValueENS0_18StackCaptureActionE) +STUB("G4c6av2TDtc", sceDbgGetModuleInfo) +STUB("G4fAeJa3sKU", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V112TicketStatusEEmmEv) +STUB("G4hygtgV3+o", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_26ActivityFeedCondensedStoryEE7addressERS3_) +STUB( + "G4j+dyj6ux0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "G4jUB+B8ZmE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEeqERKS9_) +STUB( + "G4jvQHLGZLg", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V122FrequentlyMutedFactory7destroyEPNS3_15FrequentlyMutedE) +STUB( + "G4sUafXFRnY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEED1Ev) +STUB("G4tFfSDPtXU", sceDebugDestroyPerfScratchExecutableArea) +STUB( + "G4ttzwQKgYk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("G4uZKT3k7PE", mono_aot_Sce_Vsh_JsExtensionjit_got) +STUB("G4ubH1mUgdQ", sceMbusStopAudioOutAuxBroadcast) +STUB("G4v5vCrrp40", FT_Select_Charmap) +STUB("G4vltQ0Vs+0", sceNetBweGetInfoIpcInt) +STUB("G4yQyiIWb2s", _ZN7WebCore16DOMGuardedObjectD2Ev) +STUB( + "G4zZU74mmDE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEmmEi) +STUB("G5+B7btf3wQ", _ZNK3sce2np9JsonValue9GetNumberEv) +STUB("G507Rff5eO4", __sanitizer_report_error_summary) +STUB( + "G50kNWSybLc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEC2EPNS2_10LibContextE) +STUB( + "G529xW-9DHU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEdeEv) +STUB("G56xsGGU9RM", _ZN4Manx14NetworkProfile3setENS_14SettingOptTypeEPKcj) +STUB("G59bi5VXpok", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEED2Ev) +STUB( + "G59mkpXOaCQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEmmEv) +STUB("G5AwzWnHxks", sceSystemServiceLaunchTournamentList) +STUB("G5L+tx3yrcA", + _ZN6WebKit12ChildProcess10initializeERKNS_36ChildProcessInitializationParametersE) +STUB("G5PdBJLSBUs", mono_install_assembly_postload_refonly_search_hook) +STUB("G5Tt0L2IVbI", _ZN7WebCore21ContextMenuController16clearContextMenuEv) +STUB("G5VoD9ffZ3M", _ZN3sce7Toolkit2NP2V24Auth7IdToken8deepCopyERKS4_) +STUB("G5ZDNtddzSk", _ZN7WebCore22EmptyFrameLoaderClient15willChangeTitleEPNS_14DocumentLoaderE) +STUB("G5bKZl2qXhs", mono_aot_System_Windowsunbox_trampolines_end) +STUB( + "G5kaVi8M2RU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEC2EPS8_) +STUB("G5mPHL0b+Dg", mono_aot_Sce_Vsh_WebBrowserplt_end) +STUB("G5p77Gzf8d0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEED2Ev) +STUB("G5pp6Pow71o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEC2EPS6_) +STUB("G5tFhAqrCTg", sceKernelWriteRemapWithGpuMaskIdCommand) +STUB("G5xp26+m09c", mono_aot_ClassLibrary1plt) +STUB("G5zDncG5huc", sceClPthreadAttrInit) +STUB("G5zqmbwA7EA", __asan_stack_malloc_always_6) +STUB( + "G6+bVOEet2I", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V112ErrorFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_5ErrorEEE) +STUB( + "G63fShp5bkg", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearchC1ERS5_) +STUB("G68xdfQuiyU", sceNpTusSetDataAsync) +STUB("G6EH2WtNRYA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEEC1Ev) +STUB("G6H6CrXn8wg", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_16EventInformationEED2Ev) +STUB( + "G6M9h9KwfxI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEneERKS9_) +STUB("G6WNctXKZKA", _ZN7WebCore6DOMURL6createERKN3WTF6StringERKS0_) +STUB("G6aMjjGftbY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEEC2EPS5_PFvS7_EPNS2_10LibContextE) +STUB("G6ftGG8w5Ik", _ZN7WebCore15HTMLLinkElement5setAsERKN3WTF10AtomStringE) +STUB("G6hR3CSbchA", + _ZN8meta_gen14ImageRetriever12SetDataOnDB2ERN23sceMetadataReaderWriter8MetadataE) +STUB("G6peSSDP4iA", sceVideoOutDriverGetFinishedEopHandle) +STUB( + "G6qobnH9idA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("G6qytFoBJ-w", sceNpIntGetPlatformType) +STUB("G6tbWtFUq68", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEppEi) +STUB("G6uTAEOzoFM", _ZN7WebCore9TreeScope16elementFromPointEdd) +STUB( + "G7+UdybMv9k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEC2EPS8_) +STUB( + "G72fTN0zSrk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE8copyFromERKS9_) +STUB( + "G72sQWf73CU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEC1EPNS2_10LibContextE) +STUB( + "G75e0I8be+8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEC1EPS6_PNS2_10LibContextE) +STUB("G78CVmMDaC8", SSL_accept) +STUB("G7KlmIYFIZc", sceScreenShotSetParam) +STUB( + "G7Kv7hXiU+0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEC1EPS8_) +STUB("G7LyD3ajBaI", _ZTVN9Inspector21HeapBackendDispatcherE) +STUB( + "G7VZvjBkNvE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEC2EPNS2_10LibContextE) +STUB("G7f58FAIqec", _ZN7WebCore5Frame14willDetachPageEv) +STUB( + "G7mk8bZOFMI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEE5resetEPS9_) +STUB( + "G7n8rgj5WH4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEC1Ev) +STUB("G7pDekY6FHw", _ZN3JSC7Symbols21BuiltinLogPrivateNameE) +STUB( + "G7sjJiKHwQM", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V127ConnectionQualityProperties8fromJsonERKNS_4Json5ValueE) +STUB( + "G7t8KslxlPI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "G7vao9K02lk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEC2EPS8_) +STUB("G7xphg9tZlg", sceAudioOutSysGetMonitorInfo) +STUB("G7yOZJObV+4", qsort_s) +STUB("G7yXWAlfjTw", _ZN9Inspector27AnimationFrontendDispatchernaEm) +STUB( + "G7ygm7cT8kQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEppEv) +STUB( + "G8+QjbA7pJs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE7popBackEv) +STUB("G84OiYjxe2w", _ZN7WebCore14ResourceLoader6cancelEv) +STUB( + "G84okRnyJJg", + _ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_bRSt8ios_baseRNSt5_IosbIiE8_IostateERe) +STUB("G85xANoQtwY", _ZN15AbstractStorage11LocalFolder12readExternalESt10shared_ptrINS_7ContentEE) +STUB("G883+9A8Xlk", _ZN3sce7Toolkit2NP2V23TSS7TssDataC2ERKS4_) +STUB( + "G89Pflfkxkg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEEC2Ev) +STUB( + "G8ARZfwKA+8", + _ZN3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBody5getToEv) +STUB("G8BTwv-UHhU", png_set_chunk_cache_max) +STUB("G8EWtfBo9CY", _ZN3sce2Np9CppWebApi14IdentityMapper2V312AccountIdMap13unsetOnlineIdEv) +STUB("G8It-BcWJ2Q", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119PlayStyleProperties12getChallengeEv) +STUB( + "G8J3SFP+jFA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEC2EPKS8_) +STUB("G8LF2Xk6sJ0", sceDbgInstallExceptionHandler) +STUB( + "G8Q3JEzvy2U", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEneERKS9_) +STUB("G8VIS1QkWg4", + _ZN15AbstractStorage14TwitterStorage13GetRootFolderEPSt10shared_ptrINS_6FolderEE) +STUB( + "G8amLWeWTNk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("G8oXWyZcgHw", _ZN7WebCore22CSSAnimationController36setAllowsNewAnimationsWhileSuspendedEb) +STUB( + "G8owpgIVXVo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEptEv) +STUB( + "G8wjLKghl2c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEC1EPS8_) +STUB("G8z7rz17xYM", _ZTSSt13bad_exception) +STUB("G90IIOtgFQ0", sceRazorCpuFiberLogNameChange) +STUB( + "G9372ROHlDc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEE11release_refEv) +STUB("G97ililhr-Y", JVM_DumpAllStacks) +STUB("G9BhJHACdeU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEED1Ev) +STUB("G9G4n6xskuE", _ZN9Inspector18InjectedScriptHostC2Ev) +STUB("G9Hp-BbB1Cs", _ZN7WebCore11HistoryItemC1Ev) +STUB("G9Iyt5lxwvs", WTFReportBacktrace) +STUB("G9JWsA3DK8w", mono_bitset_intersection_2) +STUB( + "G9Jpb-YMX-U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEC2EPKS8_) +STUB( + "G9LB1YD5-xc", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8_GetifldEPcRS3_S6_NSt5_IosbIiE9_FmtflagsERKSt6locale) +STUB( + "G9RaNrj+Qb0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEED1Ev) +STUB("G9Vx7CH6DII", + _ZN7WebCore5Frame27injectUserScriptImmediatelyERNS_15DOMWrapperWorldERKNS_10UserScriptE) +STUB( + "G9cCWzIXB-0", + _ZNK3sce2Np9CppWebApi14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayer6toJsonERNS_4Json5ValueEb) +STUB("G9dSRkpQ9AU", mono_aot_Sce_Cdlg_Platformmethod_addresses) +STUB("G9hRTbFHLbA", _ZN22MmsMdCommonFsOperationC2Ev) +STUB("G9pjS4vxl30", _ZN4Manx15Curl_cookie_addEP10CookieInfobPcPKcS4_) +STUB("G9xSYlaNv+Y", __asan_before_dynamic_init) +STUB("GA+LdSWDvA8", _ZN3NTF17URLRequestJobImpl10initializeEv) +STUB( + "GA-b8FNjRlc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEcvbEv) +STUB("GA4WnBtNXyI", call_filter_p) +STUB("GA4wD-1Roe4", _ZN9Inspector24CanvasFrontendDispatcher14programCreatedERKN3WTF6StringES4_) +STUB("GA5ZDaLtUBE", sceNetGetStatisticsInfo) +STUB( + "GAAKZDvTuGA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEdeEv) +STUB("GADSoACJeSk", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS19FriendsDataStatusesEED1Ev) +STUB("GAGrrgl7GAU", _ZNK3sce2np10JsonNumber9GetNumStrEv) +STUB("GAIvEDR+FEs", _ZN3sce2Np9CppWebApi14SessionManager2V15ErrorC1EPNS1_6Common10LibContextE) +STUB( + "GAJxsHYPsD8", + _ZN3sce2Np9CppWebApi14SessionManager2V140ResponsePlayerSessionMemberPlayerFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_27ResponsePlayerSessionPlayerEEEEEPNS9_INS3_33ResponsePlayerSessionMemberPlayerEEE) +STUB( + "GAMJRGAIsAI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEEC2Ev) +STUB( + "GAMXnQPNhew", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEE7get_refEv) +STUB("GAOGiBWWxD0", _ZN7WebCore20PasteboardCustomData5EntryC2Ev) +STUB("GAOJz8z7Qz4", _sceLibcReallocalign) +STUB("GAPyAoUcxK8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEC2ERKS7_) +STUB( + "GAQh79DI8h8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "GAT24B0aM7I", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEeqERKS9_) +STUB("GAUBOKABbRQ", _ZN3sce7Toolkit2NP2V28Presence8PresenceC2Ev) +STUB("GAUuLKGhsCw", ceilf) +STUB("GAYCOrTcC+g", _ZN3sce7Toolkit2NP2V27Session7Request14SendInvitation19MAX_SIZE_ATTACHMENTE) +STUB("GAccTNWvZ8o", _ZN3sce4Json5Value9serializeERSbIcSt11char_traitsIcENS0_8StlAllocIcEEE) +STUB("GAfBg1DhkIs", _ZN3sce7Toolkit2NP2V210Tournament27TeamVsTeamTournamentDetailsC1Ev) +STUB("GAh593fcz8M", _ZN7WebCore9HTMLNames13aria_sortAttrE) +STUB("GAiEhgDtJWQ", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_17MessageAttachmentEE3getEv) +STUB("GAlw+1nlQaQ", _ZN3WTF3MD5C1Ev) +STUB("GAn0W3Sfygs", il2cpp_class_get_property_from_name) +STUB( + "GAoWMVyJCI4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEE21intrusive_ptr_sub_refEPS7_) +STUB( + "GApKajdv5YY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEdeEv) +STUB("GAtITrgxKDE", sce_net_in6addr_any) +STUB("GB-UJVSBNaA", _ZN8meta_gen13JpegRetriever13GetColorSpaceEv) +STUB("GB19cfR-Tis", sceShellCoreUtilSetSystemBGWaveState) +STUB("GB70BZwBCjI", sceImeBackendConvertBackward) +STUB("GB7Fhk5SUaA", sceNpAppLaunchLinkIntGetCompatibleTitleIdList) +STUB("GB8w2Gfd0Ag", WKGeolocationPermissionRequestDeny) +STUB("GBCh3zCihoU", sceAgcDcbSetCxRegistersIndirectGetSize) +STUB("GBEujBRMRSw", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEE3getEv) +STUB( + "GBF5CiBW5-k", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions28setxPsnAcceptPlatformNamePs5ENS5_25XPsnAcceptPlatformNamePs5E) +STUB( + "GBGeTxvyuBw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEC1ERS7_) +STUB("GBHytuHJ+Ic", _ZN3sce7Toolkit2NP2V24Core12ResponseBaseD1Ev) +STUB( + "GBILv-xY3eU", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "GBMoIqgBoXo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEED2Ev) +STUB( + "GBNwwgsIPOM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEEC1ERSA_) +STUB( + "GBTmQniamQc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("GBUY7ywdULE", scePthreadRename) +STUB("GBW8PBQRDBE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEixEm) +STUB("GBYpZ0JKTd0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE8pushBackERKS6_) +STUB("GBZVcGfndtY", mono_aot_System_Reactive_Coreunbox_trampolines) +STUB("GBgGUdl+5cM", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors12messageIsSetEv) +STUB("GBiW5PxQtbA", _ZN9Inspector24RuntimeBackendDispatcherD1Ev) +STUB( + "GBkkg3ybGYg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE21intrusive_ptr_sub_refEPS9_) +STUB("GBl3n8k9jWY", tt_cmap4_class_rec) +STUB("GBoDF37nd-E", sceNpUniversalDataSystemIntRecordArraySetBool) +STUB("GBrFO98kCU4", _ZN7Nicosia29BackingStoreTextureMapperImpl10takeUpdateEv) +STUB("GBs9aUK+S5Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE7reserveEi) +STUB( + "GBszOLs8eUg", + _ZN9Inspector20CSSBackendDispatcher17getStyleSheetTextElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "GBuwvBFcHHU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE5clearEv) +STUB( + "GBvTNoOIv54", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEC2EPS8_) +STUB("GBwXtW7PRy8", _ZN7WebCore9HTMLNames19onwebkitneedkeyAttrE) +STUB("GC18r56Bp7Y", sceUserServiceDestroyUser) +STUB( + "GC7vNhm9ANc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEC2EPNS2_10LibContextE) +STUB("GCB3rQOEXNk", _ZN7WebCore11FrameLoader14detachChildrenEv) +STUB("GCDXjCEnKck", _ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponseD2Ev) +STUB( + "GCHtDOBjmYg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEC2EPS8_) +STUB( + "GCJuBPOLDro", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEmmEi) +STUB("GCMRCWH3PU0", _ZN15AbstractStorage4Item11SetMetadataEPN23sceMetadataReaderWriter8MetadataE) +STUB("GCPUCV9k1Mg", CERT_getNumberOfChild) +STUB("GCQfXdvTZO8", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEEppEv) +STUB("GCXtBIZJoFY", _ZN3WTF5Mutex4lockEv) +STUB("GCYAe0mfQAM", u_countChar32_59) +STUB( + "GCb3FGEYu1k", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC2Ev) +STUB("GCcHBTn+aZc", _ZN4Manx11StoragePath12localStorageEv) +STUB( + "GChWiM+VzJs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "GCixCC31v1s", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEplEm) +STUB( + "GCjioAFcoeA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "GCmZA4ztpFk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE21intrusive_ptr_add_refEPS9_) +STUB("GCpDdYK0M6U", setlogin) +STUB( + "GCpzTizx-FQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEaSERKS9_) +STUB( + "GCqL5V0xULY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEC1EPNS2_10LibContextE) +STUB("GCvoIgW7NrY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEC2Ev) +STUB("GCwNfdTwjtA", _ZNK3JSC2VM29deprecatedVMEntryGlobalObjectEPNS_14JSGlobalObjectE) +STUB("GD26e1U9SCE", _ZN3JSC13JSFinalObject13visitChildrenEPNS_6JSCellERNS_11SlotVisitorE) +STUB( + "GD6ZtpeeSYQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEC1EPS8_) +STUB("GD9ACwrN6IU", Java_java_io_UnixFileSystem_createFileExclusively) +STUB("GDA5UhZlpEQ", _ZNK7WebCore11HTMLElement4formEv) +STUB("GDAlnp6taxw", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_13TusDataOutputEE3getEv) +STUB("GDFroa3tl3I", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Error7setCodeERKi) +STUB("GDHqV2AO5dU", _ZN7WebCore26stopObservingCookieChangesERKNS_21NetworkStorageSessionE) +STUB( + "GDLUhlLf-KI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEE3getEv) +STUB( + "GDMsCL3cgZ0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEEC2ERSA_) +STUB("GDOPgC5h2sk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V120ErrorResponseFactory7destroyEPNS3_13ErrorResponseE) +STUB( + "GDPliB4bkGg", + _ZN7WebCore13PathUtilities27pathsWithShrinkWrappedRectsERKN3WTF6VectorINS_9FloatRectELm0ENS1_15CrashOnOverflowELm16EEEf) +STUB("GDQFvBg-DhY", _ZN3sce7Toolkit2NP2V24Core7Request21NpToolkitCallbackInfoD1Ev) +STUB("GDX5XhnWKrw", sceDbgBacktraceSelf) +STUB("GDXlRTxgd+M", sceNpTusGetMultiSlotVariableA) +STUB("GDYFXk0f-uI", sceCesBig5ToUtf16) +STUB( + "GDiCYtaiUyM", + _ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_bRSt8ios_basewRKSbIwS2_SaIwEE) +STUB( + "GDkvP2g8URI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("GDoaflM8pXo", JSRemoteInspectorGetInspectionEnabledByDefault) +STUB("GDpYG41Up38", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13SessionMemberEED2Ev) +STUB( + "GDqBtSSL1Yk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEC1Ev) +STUB("GDuV00CHrUg", utimes) +STUB( + "GDucvkOqjZ4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEppEv) +STUB("GDxzthIy7Qk", _ZN7WebCore22EmptyFrameLoaderClient31dispatchDidStartProvisionalLoadEv) +STUB( + "GDz+OgH8Ssg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB("GDzBPefugvU", sceKernelEventLogOpen) +STUB("GE+2k2MFilI", glUniform2uiv) +STUB("GE+ZU2Y9pEs", sceMouseExtensionScalePosition) +STUB("GE4I2XAd4G4", __sync_fetch_and_or_16) +STUB( + "GE7KcKaQtv8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEmmEi) +STUB("GE9UpqJPdFs", sceWebInitialize) +STUB("GEAzhWJM1mY", sceFiosArchiveMountWithOrderSync) +STUB( + "GECWsBEERHA", + _ZNK3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfile14getlanguageSetEv) +STUB( + "GEH71y-eqWU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEED1Ev) +STUB("GEK3LmjM9Q4", tls_client) +STUB( + "GENQjpj-bvo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEEC1Ev) +STUB("GEPIGxjRuV0", local_addr_space) +STUB("GEUAFDNuhBc", WKBundlePageCopyTrackedRepaintRects) +STUB("GEULQRMkuxo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEEcvbEv) +STUB("GEZ9sIz3wuM", sceShellCoreUtilIsShowCrashReport) +STUB("GEchQ5odRG0", _ZN13MsvMetaEditor10resizeFileEmiPmPc) +STUB("GEjhu-eMbeY", _ZN7WebCore15JSDOMWindowBase15createStructureERN3JSC2VMENS1_7JSValueE) +STUB( + "GEnO4jNcXck", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEixEm) +STUB("GEnUkDZoUwY", scePthreadSemInit) +STUB( + "GEpoktek0oA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEC2Ev) +STUB("GEr4ONIE5iU", ucase_totitle_67) +STUB("GErjv-ij8jg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEEC2Ev) +STUB("GEs31bClO0g", _ZN7WebCore21ISOTrackEncryptionBoxD0Ev) +STUB("GExGNgg3Wtc", _ZN3sce2np14HttpConnection7DestroyEv) +STUB("GEylwSsiGG8", _ZN3sce4Json5Array8iteratorppEi) +STUB("GF+GkOCVVLg", sceLoginMgrServerNotifyEasySignInUserCode) +STUB( + "GF2tspZpftw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEEaSERSA_) +STUB("GF5cVgFKg4g", sceOpusCeltDecDecodeFloatWithPriority) +STUB("GFKGvgOqeMY", _ZN7WebCore19JSDOMMatrixReadOnlyaSERKS0_) +STUB( + "GFMjwOxyW3k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEmmEi) +STUB("GFNW5Glc-u8", _ZN6WebKit12ChildProcess21removeMessageReceiverEN7CoreIPC15StringReferenceEm) +STUB("GFOwb+TuKV4", cuse_lowlevel_init) +STUB("GFcDnBojEHk", dlvsym) +STUB("GFcJewjtQ38", usearch_searchBackwards_67) +STUB( + "GFew5q7NaB4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEED2Ev) +STUB("GFhTr50CnrE", SwCtrlSinkStreamStop) +STUB("GFhVUpRmbHE", sceNpInGameMessageInitialize) +STUB("GFii35jH7fk", _ZN7WebCore21DiagnosticLoggingKeys10webViewKeyEv) +STUB( + "GFjjRImRS8g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEED2Ev) +STUB( + "GFn06UKhyHw", + _ZN7WebCore22EmptyFrameLoaderClient23dispatchWillSendRequestEPNS_14DocumentLoaderEmRNS_15ResourceRequestERKNS_16ResourceResponseE) +STUB("GFnFUa+9DJs", _ZN9Inspector22ContentSearchUtilities17createSearchRegexERKN3WTF6StringEbb) +STUB("GFwkSdvHiP4", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku19annotationNameIsSetEv) +STUB("GFyb-SJQikY", delegate_virtual_invoke_imt_m_4) +STUB("GG1Y+vBUkdU", _ZThn16_N3sce2np9HttpTransD1Ev) +STUB( + "GG59YFMhlHg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "GG7rUTAvljY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE8copyFromERKS9_) +STUB("GGFZds9H2q8", orbismmap) +STUB("GGIG9nj2zXk", eglCreatePbufferSurface) +STUB("GGJLC5a4rWQ", _ZN3JSC8Debugger15continueProgramEv) +STUB("GGKYUO8eo4I", _ZN3sce2Np9CppWebApi7Matches2V116JoinMatchRequestC2EPNS1_6Common10LibContextE) +STUB("GGNBNEFp9Z0", sceFsUfsLargewriteFsck) +STUB("GGSRAj71-Ag", _ZN7WebCore11FetchLoaderD2Ev) +STUB("GGV33YyYzB8", _ZN3sce7Toolkit2NP2V26Trophy7Request23DisplayTrophyListDialogC2Ev) +STUB( + "GGWNxVf+d60", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEE7get_refEv) +STUB("GGjNjlzGmxA", _ZN13MsvMetaEditor13checkMetadataEPttPb) +STUB("GGoH7e6SZSY", _ZNKSt8messagesIwE5closeEi) +STUB("GGqI60EEL-w", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus13unsetDataSizeEv) +STUB( + "GGqIV4cjzzI", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8_GetifldEPcRS3_S6_NSt5_IosbIiE9_FmtflagsERKSt6locale) +STUB("GGqucL9F+YI", sceFiosDHOpenSync) +STUB( + "GGrPvJ2Okm8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEED1Ev) +STUB("GGsn7jMTxw4", sceGnmDrawIndexAuto) +STUB("GGthfnlokVw", _ZNK15AbstractStorage14YoutubeStorage7GetStatEPNS_4StatE) +STUB("GGwIlHba13U", _ZN3sce7Toolkit2NP2V28Commerce19ServiceEntitlements5resetEv) +STUB("GH-8t-+jzHM", WKFrameGetTypeID) +STUB("GHI8khgTP5k", YGNodeStyleGetFlexShrink) +STUB("GHJfnnqXIVY", u_vfscanf_67) +STUB("GHQulEstteY", _ZN3sce7Toolkit2NP15AppSTLAllocatorI16SceNpTusVariableEC2Ev) +STUB("GHUqRrCB2hM", sceLncUtilDeclareReadyForSuspend) +STUB( + "GHZ4J6WLM+c", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("GHbvNOFZd9E", WKPreferencesSetAnimatedImageAsyncDecodingEnabled) +STUB("GHib0Wf+ny0", sceVideoNativeExtEssential_CreateDecInstance) +STUB("GHipxIJRjZA", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session8SessionsEE3getEv) +STUB( + "GHkaDPseT6s", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEaSERKS9_) +STUB( + "GHnpIfZXIRM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEmmEv) +STUB("GHrctgvI0SQ", sceVisionManagerRegistryClear) +STUB( + "GHs0W1uEJtg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("GHsPYRKjheE", _ZNSt12placeholders2_2E) +STUB("GHtQMARh-58", _ZN3sce7Toolkit2NP2V28Commerce14ProductDetailsD2Ev) +STUB( + "GHtzg8ZpWg8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEE5resetEPS6_) +STUB("GHuASZVVDBA", scePerfTraceIoControllerDeleteBufferNotifyEvent) +STUB( + "GHxOs1sCHQw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEED2Ev) +STUB("GHzcsl3kCZM", _ZN3JSC7Symbols15metaPrivateNameE) +STUB( + "GI-M4WdwQ9U", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEplEm) +STUB("GI-kJrlbsDQ", _ZNK3sce2np3ipc10IpmiClient6IsInitEv) +STUB("GI22WsIAwnc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE7reserveEi) +STUB("GI90Ozm8uQU", _ZN3JSC11VMInspector23currentThreadOwnsJSLockEPNS_9ExecStateE) +STUB("GIBhqoeiiho", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSessionC1Ev) +STUB( + "GIDVDtwKjAQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE5emptyEv) +STUB("GIEuHCOvHxQ", _ZN3sce7Toolkit2NP2V28Presence7Request11GetPresenceC2Ev) +STUB( + "GIGUNzlGt7c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEC2Ev) +STUB("GIHvC8x7LPo", sceSocialScreenCrashDaemon) +STUB("GIIW2J37e70", sceAgcDcbSetIndexSize) +STUB("GIKFKHQ-iaE", _ZN3sce7Toolkit2NP2V26Friend16FriendsOfFriendsD1Ev) +STUB("GIPP33SFTsQ", _ZN7WebCore9HTMLNames9startAttrE) +STUB("GIQb53a5FvU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEED2Ev) +STUB( + "GIRZIwKcwS0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEC1ERS7_) +STUB( + "GIZ-Nyd0JHU", + _ZN3sce2Np9CppWebApi14SessionManager2V134GetGameSessionsResponseBodyFactory7destroyEPNS3_27GetGameSessionsResponseBodyE) +STUB( + "GIdIlbhZDIo", + _ZN7WebCore16ScriptController20executeScriptInWorldERNS_15DOMWrapperWorldERKN3WTF6StringEbPNS_16ExceptionDetailsE) +STUB( + "GIdkGdMoacA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE8pushBackERKS8_) +STUB("GIeprzAUR84", _ZN3JSC8JSBigInt13tryCreateZeroERNS_2VME) +STUB( + "GIgKVpSN564", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEC2Ev) +STUB("GIjv95F1IfU", WKPreferencesSetAcceleratedCompositingEnabled) +STUB("GImICnh+boA", sceNpRegisterPlusEventCallback) +STUB("GIniJssLcts", _ZN4IPMI4impl10ServerImpl11tryDispatchEPvm) +STUB("GIwVmm8Rgvc", sceCesIso2022StrToUtf32Str) +STUB("GJ+VEmIdxUQ", WKBundleFrameIsMainFrame) +STUB("GJ+kp6p38IM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11SessionDataEED1Ev) +STUB("GJ0sG7BdmgI", mono_aot_Sce_Vsh_WebBrowserjit_code_end) +STUB( + "GJ1To-bKRhE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEED1Ev) +STUB( + "GJH2be9gMS0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEdeEv) +STUB("GJIBGuU11z8", _Atcount) +STUB("GJMfs3BCXuY", __tsan_atomic32_fetch_add) +STUB( + "GJOFJWnSmUE", + _ZN9Inspector32ScriptProfilerFrontendDispatcher14trackingUpdateEN3WTF6RefPtrINS_8Protocol14ScriptProfiler5EventENS1_13DumbPtrTraitsIS5_EEEE) +STUB("GJQTuIKPCLM", sceFaceTrackerGetTrackIdByUserId) +STUB("GJW36FCtS9Y", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V18SortModeEEC2Ev) +STUB( + "GJYG0swFcTE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEEC2Ev) +STUB("GJYws7E0sU0", _ZN7WebCore4toJSEPN3JSC9ExecStateERNS_11WindowProxyE) +STUB("GJZYj1sMy1U", _ZN7WebCore8Document13setAlinkColorERKN3WTF6StringE) +STUB( + "GJb4mvM-4L0", + _ZN9Inspector21PageBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("GJctcqX1rkg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEC2ERKS7_) +STUB("GJeqgaC2mck", WKMediaSessionMetadataCopyTitle) +STUB("GJjedsBxT8A", _ZThn16_N9Inspector19InspectorAuditAgent5setupERN3WTF6StringEPKi) +STUB( + "GJkiKlxHG5o", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V136FrequentlyMutedInPartyMetricsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_29FrequentlyMutedInPartyMetricsEEE) +STUB("GJmnoQmslM4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEEC1ERS7_) +STUB("GJsL9usTdig", WKContextGetGeolocationManager) +STUB("GJu2OLJK5Eo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEED1Ev) +STUB("GJucNrTY5kk", _ZN3sce3Xml4AttrC1Ev) +STUB( + "GJug+HeDsdg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE21intrusive_ptr_sub_refEPS9_) +STUB("GJuu7sr0dEA", __tsan_atomic8_fetch_sub) +STUB("GJvXdGwFBuk", _ZN12video_parser18cProfileCheckerMp415isPlayableAudioERKNS_13VpMediaInfo_tE) +STUB( + "GJwvgeqlZvE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEmmEi) +STUB("GJx12mBcRE8", _ZN7WebCore8SVGNames20transform_originAttrE) +STUB("GJxUTbnhr+U", _ZN12video_parser5vpcom13LwMutexCreateEPNS0_11sys_lwmutexEPNS0_12lwmutex_attrE) +STUB("GK+VCvKAFXY", JVM_Exit) +STUB("GK0JJEw1zO0", delegate_virtual_invoke_imt_m_11_p) +STUB("GK11yFH9-lU", _ZN3sce7Toolkit2NP2V23TUS25AtomicAddToAndGetVariableaSERKS4_) +STUB( + "GK4wxcDmUi8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE7reserveEi) +STUB("GKDQvZF6sRk", _ZN7WebCore12BlobRegistryD0Ev) +STUB("GKHM54nGcrE", _ZNK3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse13getNextOffsetEv) +STUB("GKJkOXls+WU", _ZN7WebCore9HTMLNames14onfocusoutAttrE) +STUB("GKMjPmDls-w", sceWorkspaceApplyUpdateForAllFiles) +STUB("GKNYF7iMZaA", _ZN12video_parser7cVpUtil12vp_ff4_ftellEPvPm) +STUB("GKOdtyJINIc", xmlParseContent) +STUB( + "GKOfk4gkO6Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE10setContextEPNS2_10LibContextE) +STUB("GKPNXBs6dzo", + _ZN7WebCore11JSDOMWindow14deletePropertyEPN3JSC6JSCellEPNS1_9ExecStateENS1_12PropertyNameE) +STUB( + "GKT4kP85kaE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE5beginEv) +STUB("GKWcAz6-G7k", _ZTVSt5ctypeIcE) +STUB( + "GKebOWQrsKU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "GKlWpBdGVpk", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer7setsortENS5_4SortE) +STUB("GKpz0qjwEIY", _ZN7WebCore17PageConsoleClient7timeEndEPN3JSC14JSGlobalObjectERKN3WTF6StringE) +STUB("GKv8tK3zMjw", + _ZN15AbstractStorage15FacebookContentC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEbb) +STUB( + "GKy+n9hLY18", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession21setSupportedPlatformsERKNS1_6Common6VectorINS5_6StringEEE) +STUB("GKy3Jm-BJts", _ZN3sce7Toolkit2NP2V24Core7Request11MemoryPools20SSL_MEM_MINIMUM_SIZEE) +STUB("GL-gM1Knz28", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEE3getEv) +STUB( + "GL53WabpPNw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE6resizeEj) +STUB( + "GL5bxP-1n0o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEC1EPNS2_10LibContextE) +STUB("GL5nO43fsjU", _ZN3sce2np10EventQueueC2EP14SceNpAllocator) +STUB( + "GL6IrAyELWQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEmmEv) +STUB("GL8+3RHW5vk", sceVideoOutDriverGetLatestEopHandle) +STUB( + "GLCEF5PbiNQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEEptEv) +STUB( + "GLDQ5RNh4do", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetBoolean4Ev) +STUB("GLFNgsekcJU", sceGpuTraceParametersSetDuration) +STUB("GLKt+4hIz+s", WKBatteryManagerGetTypeID) +STUB("GLNDoAYNlLQ", __kernel_rem_pio2) +STUB("GLRFDEH0yxA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEEixEm) +STUB("GLRtuC2tjQY", _ZN7WebCore16HTMLVideoElement6createERNS_8DocumentE) +STUB("GLT5AYibDGQ", _ZN7WebCore8SVGNames12overflowAttrE) +STUB("GLWg1JVMMXA", _WGetint.barr) +STUB("GLdM7S0E6Aw", mono_file_map_fd) +STUB( + "GLfiITGJN5Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEED1Ev) +STUB("GLhdt8hXS28", g_build_path) +STUB( + "GLl0cdJWHrc", + _ZN15AbstractStorage18DailymotionStorage15CreateRecursiveERKSbIcSt11char_traitsIcENS_8StlAllocIcEEENS_8ItemTypeEPSt10shared_ptrINS_4ItemEE) +STUB("GLlk+iOe80c", _ZN3sce7Toolkit2NP2V211SocialMedia7Request21PostMessageToFacebookD2Ev) +STUB("GLtDujY7y-A", il2cpp_method_is_inflated) +STUB("GLxD5v2uMHw", _ZN10__cxxabiv117__pbase_type_infoD0Ev) +STUB("GLz1wi7YHwI", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEEplEm) +STUB("GM+SPYcBLSM", _ZN3sce2Np9CppWebApi6Common13ConstIteratorImE21intrusive_ptr_add_refEPS4_) +STUB("GM3KUZu1bCk", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS16FriendsVariablesEE19setCustomReturnCodeEi) +STUB("GM3gnBK6qP0", g_setenv) +STUB( + "GM4w-NlILc0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE5emptyEv) +STUB( + "GM6ol4LBOmA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEneERKS9_) +STUB("GMAq7k4r2FM", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEED1Ev) +STUB("GMDlBS2FjfA", _ZN7WebCore10ISOFullBoxC2ERKS0_) +STUB("GMLAWOO7I2Y", sceUserServiceSetPbtcFridayHoursStart) +STUB("GMLHXo9io7U", _ZNK3WTF10StringView25containsIgnoringASCIICaseERKS0_j) +STUB("GMPYCA-JBAY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEE7add_refEv) +STUB( + "GMPaYIEPGOs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEptEv) +STUB("GMRugn+lVTw", _ZN3WTF3ICU12minorVersionEv) +STUB( + "GMSN1x4y+cs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB("GMSPx33Ubik", _ZN3sce7Toolkit2NP2V28Commerce7Request13GetContainersC2Ev) +STUB("GMWX0+Oz9WA", _ZN3JSC12SymbolObject14finishCreationERNS_2VMEPNS_6SymbolE) +STUB("GMZsFa4YuLY", _ZN7WebCore14SchemeRegistry27registerURLSchemeAsNoAccessERKN3WTF6StringE) +STUB( + "GMbsEdZMZ48", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEEdeEv) +STUB( + "GMcJpHH93t0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE5emptyEv) +STUB("GMg-K-nm8wQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEdeEv) +STUB("GMizWCBYuVM", _ZNK23sceMetadataReaderWriter8Metadata8getValueERKSsRNS_5ValueE) +STUB("GMpvxPFW924", vprintf) +STUB( + "GMslvizB0Vw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE5eraseENS2_8IteratorIS6_EERS9_) +STUB("GMtQuGiE5MI", _ZNK7WebCore11MediaPlayer17hasClosedCaptionsEv) +STUB("GMuXRQ-sUR0", mono_btls_x509_chain_get_count) +STUB( + "GMv-FUyeXIU", + _ZN6WebKit12ChildProcess17initializeSandboxERKNS_36ChildProcessInitializationParametersERNS_31SandboxInitializationParametersE) +STUB("GMxc7ms4eLw", __asan_get_free_stack) +STUB("GMzhcYmBETc", + _ZN7WebCore11MediaPlayer26paintCurrentFrameInContextERNS_15GraphicsContextERKNS_9FloatRectE) +STUB("GMzjS9jvyDQ", BIO_new_mem_buf) +STUB("GN-EOqRvz0A", _ZN7WebCore7Element13scrollByLinesEi) +STUB( + "GN1PvggD4SQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEC1EPKS8_) +STUB( + "GN92gdelkN0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEE3getEv) +STUB("GNAx4p223bE", _ZN3JSC22FullGCActivityCallback16setDidGCRecentlyEv) +STUB( + "GNFtXTWpiL0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEppEi) +STUB( + "GNG9pVGEE8M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE8copyFromERKS9_) +STUB( + "GNGQ6sr9J6I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEC1Ev) +STUB( + "GNI28ZKoduI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "GNJWLgaqjds", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("GNM0CPnOTjM", _ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequestC2EPNS1_6Common10LibContextE) +STUB("GNQdrdUBiUc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEEC1EPS5_PNS2_10LibContextE) +STUB( + "GNSJkp2i+2s", + _ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead22unsetInvitationInvalidEv) +STUB("GNSN5849fjU", sceNpMatching2SignalingCancelPeerNetInfo) +STUB( + "GNWKfcvlttI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("GNWhg1ez6Jo", mono_arch_get_restore_context) +STUB("GNZpcrnC7uE", glPixelStorei) +STUB("GNcF4oidY0Y", sceNpTrophyDestroyHandle) +STUB( + "GNcKEF3Ai3U", + _ZN3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsTouchResponseBody20unsetTouchedDateTimeEv) +STUB("GNfPC72c3fs", sceSpNetConnect) +STUB("GNjTZuiQf6M", mono_aot_Sce_Vsh_Np_AuCheckplt_end) +STUB( + "GNkoXyvvmZ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("GNlx+y7xPdE", sceGnmUpdateHsShader) +STUB("GNqc84Ar8ko", YGNodeGetParent) +STUB("GNsiLzm4SH8", FT_Init_FreeType) +STUB("GNzTCyrXd0A", getLastErrorString) +STUB("GNzvJ-oTGN0", _ZN12video_parser24_isBestArtworkResolutionEjj) +STUB( + "GO2lZsN3QdE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEC2Ev) +STUB( + "GOI286v90sk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEcvbEv) +STUB( + "GOKaOF0HTy8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEptEv) +STUB("GOKrmbjnHY0", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEE3getEv) +STUB("GOP1R6vumsg", sceAgcSdmaFlush) +STUB("GOPtWSfLUdU", _ZN7WebCore26ActiveDOMCallbackMicrotaskD0Ev) +STUB( + "GOQ36+MfSc4", + _ZZSt9MakefacetISt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEESt8_LocinfoERT_T0_E3buf) +STUB("GORjkrS5SDc", _ZN3sce7Toolkit2NP2V24Core10OnlineUserD2Ev) +STUB( + "GORlq9bG5Tw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEE3getEv) +STUB("GOSphImKqvo", _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScoreC1ERS5_) +STUB("GOafsLorJmg", scePktMgrGetUlpCmdPayload) +STUB( + "GOgkTyiRrOg", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlotaSERS5_) +STUB( + "GOh-1SQbFx0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEEdeEv) +STUB("GOkU1fV7sBM", _ZNK7WebCore10ScrollView18exposedContentRectEv) +STUB( + "GOo1xl+bTjQ", + _ZN9Inspector8Protocol13BindingTraitsINS0_8Debugger15FunctionDetailsEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE) +STUB("GOtjhkxJaCo", wait_for_packet) +STUB("GOuddQLEThY", _ZN23sceMetadataReaderWriter20LoadedParserInfoListC1Ev) +STUB( + "GOv-80iBOBg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEED1Ev) +STUB( + "GOvxo5sBsts", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEEC2ERSA_) +STUB("GP+exQxv2Ds", WKViewReplyAuthenticationChallenge) +STUB( + "GP-Anqni0CE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEppEv) +STUB("GP1LQbgyA-I", ucnv_openU_67) +STUB( + "GP6LW61GN1I", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V117DataStatusFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_10DataStatusEEE) +STUB("GP9OLQvAHag", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEEplEm) +STUB( + "GPADomkQZRg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEneERKS9_) +STUB("GPC-wPiKvKk", sceApplicationSendResultOfDebuggerKillRequest) +STUB("GPFmSUAPZNU", _ZN3JSC12HeapCellTypeC2ENS_14CellAttributesE) +STUB( + "GPI9Vdh7170", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("GPJDrtZ-R-c", mono_aot_Sce_Vsh_Gls_GlsSharedMediaViewunbox_trampolines) +STUB("GPJMxSyIsSY", mono_aot_Sce_Vsh_Np_Tmdbunbox_trampolines) +STUB( + "GPMSk2+XWOo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEE11get_deleterEv) +STUB( + "GPP78v+WBW8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("GPRMLcwyslw", CERT_verifySignature) +STUB("GPRRxFM01r4", sceNpAsmClientCreateResourceContext) +STUB( + "GPSVwiBYJC0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEED2Ev) +STUB("GPbUp9jXQa8", sceAgcAcbWaitUntilSafeForRendering) +STUB( + "GPhm+C3tRuo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEixEm) +STUB("GPiFzdmbdzI", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEEplEm) +STUB("GPoMyy5-NiM", _ZN3sce7Toolkit2NP2V211UserProfile8RealName18MAX_SIZE_LAST_NAMEE) +STUB("GPuymBQUb6s", _ZN7WebCore7IntRectC1ERKNS_10LayoutRectE) +STUB( + "GPyS8eQsXgU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEptEv) +STUB("GQ0hqmzj0F4", sceNpSignalingGetConnectionFromNpId) +STUB( + "GQ4BpcnDxEY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEeqERKS9_) +STUB( + "GQ8rlKbe0Ss", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEC2EPS6_PNS2_10LibContextE) +STUB("GQBWqhIGGnE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEC1Ev) +STUB("GQDKfTGArbI", mono_aot_Sce_Vsh_Lxplt_end) +STUB("GQFGj0rYX+A", sceHttp2GetCookie) +STUB("GQHCksS7aLs", sceNpTusGetDataVUser) +STUB("GQLPt+OUJkE", mono_thread_get_num_threads) +STUB("GQLXi2KQaXk", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadDataD1Ev) +STUB("GQMZ6uHq5-o", sceVencCoreGetPicParams) +STUB("GQTObcITIXI", sceShareCaptureScreenshotExtended) +STUB( + "GQTvW+ePtqs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEED2Ev) +STUB( + "GQV0R9WGbcg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEppEi) +STUB( + "GQZdPRNQyFE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEE5resetEPS9_) +STUB( + "GQcdYACGMnM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEppEv) +STUB( + "GQcyshPrJ0A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEC2EPKS8_) +STUB("GQh5U+LYBCQ", _ZN3sce7Toolkit2NP9Utilities6FutureI7SceNpIdEC2Ev) +STUB("GQli4UAXTfQ", __sys_dynlib_unload_prx) +STUB("GQsAVJuy8gM", sceUsbdGetConfigDescriptorByValue) +STUB("GR+0ko0mEi0", WKPreferencesGetTextAutosizingEnabled) +STUB("GR+C-qDzxRs", + _ZNK3sce2Np9CppWebApi14SessionManager2V127ResponsePlayerSessionPlayer11getPlatformEv) +STUB("GR+f8ocq5VE", _ZNK7WebCore22SkewTransformOperation27isAffectedByTransformOriginEv) +STUB( + "GR+nn8syFuY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE3endEv) +STUB( + "GR3Ay56Fxtg", + _ZN3sce2Np9CppWebApi14ConnectAccount2V219PartnerTokenFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_12PartnerTokenEEE) +STUB("GR3YJwi7gs8", sceDeci4hDrfpChstat_utimens_fuse) +STUB( + "GR7-cFS7J-U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEC2Ev) +STUB( + "GR7hDdRvynY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("GR9+J8OgWSs", _ZNK3NTF3URL10protocolIsEPKc) +STUB("GRI2dTtcCXE", _ZN3JSC8Debugger17didExecuteProgramEPNS_9CallFrameE) +STUB("GRNR3ByLE9s", ucsdet_setText_67) +STUB("GRVtsCkrnnA", + _ZNK7WebCore14SecurityOrigin16canAccessStorageEPKS0_NS0_25ShouldAllowFromThirdPartyE) +STUB("GRYGvRhpD-g", _ZN7WebCore19StorageQuotaManager39resetQuotaUpdatedBasedOnUsageForTestingEv) +STUB( + "GRZINy2vjNo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE8copyFromERKS9_) +STUB( + "GRiHtJX0krw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE21intrusive_ptr_sub_refEPS9_) +STUB("GRjtnoy4iHI", _ZN7Nicosia5Scene5StateaSERKS1_) +STUB( + "GRojeE1YTbM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEEaSERSA_) +STUB("GRs7ejLmIm0", _ZN3JSC7Symbols22ModuleFetchPrivateNameE) +STUB( + "GRufnfnx1wE", + _ZN3sce2Np9CppWebApi14SessionManager2V137RequestGameSessionMemberPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_30RequestGameSessionMemberPlayerEEE) +STUB("GRvK1ZE+FEQ", sceNpUtilGetNpDebug) +STUB("GRyswm3by1E", _ZN7WebCore7toSRGBAERKNS_11LinearSRGBAIfEE) +STUB( + "GRzHg46AfTI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("GRzmXI6WftI", _ZN7WebCore11DisplayList8ReplayerD1Ev) +STUB("GS+nS5MV7Qs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEmmEv) +STUB("GS1AvxBwVgY", _ZNSt10moneypunctIwLb1EEC2EPKcm) +STUB( + "GS2b2KvoSYU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEC2ERKSA_) +STUB("GS50Ol6MY9A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEEC1Ev) +STUB( + "GS8IAudyTLg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEmmEv) +STUB("GS9DSbzC+MY", _ZN3sce3Job10JobManager10initializeEPvmjjjmPKNS1_12ConfigParamsE) +STUB("GSAXi4F1SlM", _ZNKSt7collateIcE7do_hashEPKcS2_) +STUB( + "GSFQDX0+Fpk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE7reserveEi) +STUB( + "GSI+zSiR9Jg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEE5resetEPS9_) +STUB("GSIH23bQiUk", _ZN7WebCore20lastOffsetForEditingERKNS_4NodeE) +STUB("GSKko1I75XQ", sceCesBig5ToUtf32) +STUB("GSNgafkbVXM", _ZN3sce2np9JsonValue9GetParentEv) +STUB("GSQjbagr8F4", WKPreferencesSetUseLegacyTextAlignPositionedElementBehavior) +STUB("GST3YemNZD8", _ZNSt14numeric_limitsIiE9is_signedE) +STUB("GST42pfUfMc", sceKernelTitleWorkdaroundIsEnabled) +STUB( + "GST6G3qdBrw", + _ZN7WebCore24DocumentMarkerController10markersForERNS_4NodeEN3WTF9OptionSetINS_14DocumentMarker10MarkerTypeEEE) +STUB("GSUKU3FDYJY", _ZN7WebCore9HTMLNames25webkitallowfullscreenAttrE) +STUB("GSVe-aaTiEg", _ZN3sce2np9HttpTransD2Ev) +STUB("GSWCtBVDIpo", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V18SortModeEEmmEi) +STUB( + "GSc12L2ohCo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEdeEv) +STUB("GSdscWmFHSM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEptEv) +STUB("GSgQGxgTtBU", _ZN7WebCore21DiagnosticLoggingKeys19retrievalRequestKeyEv) +STUB("GSik6FPYYto", _ZTVN23sceMetadataReaderWriter7StorageE) +STUB( + "GSkrhorpTsQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEC2EPS6_PNS2_10LibContextE) +STUB("GSnYxHl+bTs", mono_aot_I18N_Rarejit_code_end) +STUB("GT3wfuoOO5o", EVP_PKEY_up_ref) +STUB("GTI8cgWbMI0", + _ZNK3sce2Np9CppWebApi14SessionManager2V123MemberWithMultiPlatform6toJsonERNS_4Json5ValueEb) +STUB("GTP5C2Wvrhs", sceAudioOutSetPadJackVolume) +STUB("GTSbNvpE1fQ", CERT_validateCertificate) +STUB("GTZYWYRctR0", _ZNK3sce3Xml3Dom4Node13getChildNodesEPNS1_8NodeListE) +STUB("GTa5LU6nCLE", _ZL14_sceLibcDeletePv) +STUB( + "GTcGGFpo5to", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEE3getEv) +STUB("GTd0+Scsuys", ucnv_setToUCallBack_67) +STUB("GTqfUUQLKa0", sceFsCreateExfatPartition) +STUB( + "GTxGCWEJX6E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "GTxeKGUOY5Y", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_11GameSessionEEE) +STUB( + "GU1w2E3QXHY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE3endEv) +STUB( + "GU2pC4ZB4II", + _ZN7WebCore20LegacySchemeRegistry49registerURLSchemeAsBypassingContentSecurityPolicyERKN3WTF6StringE) +STUB("GU4AF9Yrvzw", _ZN7WebCore16MIMETypeRegistry25mediaMIMETypeForExtensionERKN3WTF6StringE) +STUB("GUC6GjExtds", _ZN25MmsFileUpdaterFsOperationC1Ev) +STUB( + "GUE0Vp5Evnk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("GUOkMlvO7D4", _ZN7WebCore4PageD1Ev) +STUB("GUVMYx93ZBI", _ZN3JSC2VM39unlinkedModuleProgramCodeBlockSpaceSlowEv) +STUB("GUZfchtm3zQ", _ZN7WebCore9HTMLNames13onstalledAttrE) +STUB( + "GUf520XFpAU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEEC1ERSA_) +STUB("GUna2W6TBG4", sceAvSettingIsSuspendedProcessOutputModeAvailable2) +STUB("GUq5MmrvvBU", _ZN7WebCore37smallestRectWithAspectRatioAroundRectEfRKNS_9FloatRectE) +STUB("GUs7JyenuEA", _ZN7WebCore14SchemeRegistry34shouldLoadURLSchemeAsEmptyDocumentERKN3WTF6StringE) +STUB("GUsFASGQ7Po", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18GameCustomDataItemEEneERKS4_) +STUB( + "GUskBWxvsRU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("GUuhLSwsTAM", _ZNK7WebCore16HTMLImageElement12naturalWidthEv) +STUB("GUuiOcxL-r0", _WStof) +STUB( + "GUwCS3UKpBQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEED1Ev) +STUB("GV4t+Ojz4UE", _ZNK3sce2Np9CppWebApi13InGameCatalog2V520ContainerRatingCount8getCountEv) +STUB("GV6hye4Lsjc", sceVideoCoreInterfaceOpenCanvas) +STUB("GV7ST5JoPUQ", WTFAnnotateHappensAfter) +STUB( + "GVEbyNroOEI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot17setnpServiceLabelEj) +STUB("GVI4jqU-KA4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEED1Ev) +STUB("GVLppS4bkFc", sceBgftServiceIntPlayGoGetApplicationIniChunkSize) +STUB("GVNd-uYjLkE", _ZNK3sce2Np9CppWebApi11UserProfile2V114PersonalDetail11getLastNameEv) +STUB( + "GVO3Ty6x6Wc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE5clearEv) +STUB("GVVHy34Bw9s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEEC2Ev) +STUB("GVa9wfF+3Mo", _ZN3JSC19HeapSnapshotBuilder30previousSnapshotHasNodeForCellEPNS_6JSCellERj) +STUB("GVlkqTU6QYQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEED2Ev) +STUB( + "GVmcygRyLgo", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeaders15setCacheControlERKNS1_6Common6StringE) +STUB("GVnNjpJWCXM", FT_Get_Postscript_Name) +STUB("GVq6mcQFlZk", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_20ChallengeRecvDetailsEED2Ev) +STUB( + "GVrRCx7H7Uw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "GVsKxqjiwds", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEixEm) +STUB( + "GVwRgcE9ghA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("GW-D9QdJ3us", mono_config_string_for_assembly_file) +STUB("GW0BFA3-JCg", _ZN3sce7Toolkit2NP2V28Matching4Room18MAX_SIZE_ROOM_NAMEE) +STUB( + "GWE+7zQuMME", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEixEm) +STUB( + "GWGQHrjmMno", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEEcvbEv) +STUB("GWJZ8nG5qA4", mono_monitor_enter) +STUB("GWMp2D9TLgs", _ZN3sce2Np9CppWebApi6Common8IteratorIiEppEi) +STUB( + "GWO-Lj0KJaY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEC2EPS8_) +STUB("GWP3DPDBSQI", _ZN3JSC7Symbols32loadAndEvaluateModulePrivateNameE) +STUB("GWR8egpJ4Vw", _ZNK3sce2Np9CppWebApi6Common6VectorImE8capacityEv) +STUB( + "GWU3PLeU-Uw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEC2Ev) +STUB("GWXTyxs4QbE", sceMoveGetDeviceInfo) +STUB( + "GWZxZDYoI00", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEC2EPKS8_) +STUB( + "GWaRkbGYu1s", + _ZN3sce7Toolkit2NP12ActivityFeed9Interface9likeStoryEPKNS1_16LikeStoryRequestEPNS1_9Utilities6FutureIiEEb) +STUB("GWfexl813eg", _ZN9Inspector14ConsoleMessagedlEPv) +STUB( + "GWh6k9fG6aI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEmmEv) +STUB("GWi8H4yeG6Q", _ZNK3sce2Np9CppWebApi15Personalization2V15Error6toJsonERNS_4Json5ValueEb) +STUB("GWlhLW-DFLk", _ZN6Dinkum7threads21thread_resource_errorC1Ev) +STUB("GWnWQNXZH5M", sceNpScoreCreateNpTitleCtxA) +STUB("GWpmTAy++os", JVM_RecvFrom) +STUB("GWpqS2ajjvs", _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOffer7hasviewEv) +STUB("GWtzpTKbZ+0", _ZNK3sce4Json14InitParameter211getUserDataEv) +STUB( + "GWu9Dz+9xhk", + _ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors27setValidationConstraintInfoERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_42PsnWebError_error_validationConstraintInfoEEEEE) +STUB("GWvTh6Cxidg", WKPreferencesSetDefaultFixedFontSize) +STUB( + "GWxek0eV51I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEixEm) +STUB("GWy1Z5IV65E", _ZN7WebCore19JSHTMLSelectElementD1Ev) +STUB( + "GWyvsTrNC2Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEC1Ev) +STUB( + "GX1stv0FKYc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "GX4DLMQ9488", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEC1ERS7_) +STUB( + "GX5ZPIwOIiM", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "GX7oRTixqbA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126PlayStylePropertiesFactory6createEPNS1_6Common10LibContextEiiiiPNS5_12IntrusivePtrINS3_19PlayStylePropertiesEEE) +STUB("GXBlM-ekzrI", sceAgcBranchPatchSetCompareAddress) +STUB("GXGaUgZ0-Uc", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10CategoriesEEC2Ev) +STUB( + "GXKnEC-yyk8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEC1EPS6_PNS2_10LibContextE) +STUB( + "GXQ1L9Z9eG8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEE11release_refEv) +STUB("GXQ2KV8thlc", sceM4aacEncEncodeWithPriority) +STUB("GXR1yNObIXk", _ZN3JSC7JSScope6s_infoE) +STUB("GXRcBXLSymE", mono_aot_Sce_Vsh_VideoRecordingWrapperunbox_trampoline_addresses) +STUB("GXXTFlCpAfo", mono_method_get_generic_container) +STUB("GXbL5lvDALs", + _ZN3sce7Toolkit2NP2V27Session5leaveERKNS3_7Request5LeaveEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB( + "GXbPA+K0V3Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE5beginEv) +STUB("GXbl+h53Jvk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE8pushBackERKS6_) +STUB("GXcCQB-7-Sc", SetServiceType) +STUB("GXedg4SunHo", mono_btls_pkcs12_import) +STUB( + "GXfHD0yY8G0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEE11release_refEv) +STUB( + "GXg+BAcUSnI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "GXjurSPXb5U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEEC1Ev) +STUB("GXm6bV3ivGM", sceBgftServiceDownloadFindActivePupTask) +STUB( + "GXmMkF4k4J0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEC1EPS8_) +STUB("GXnfnrSkly4", ures_close_67) +STUB("GXnv8GxjAYw", + _ZN9Inspector27PerGlobalObjectWrapperWorld10addWrapperEPN3JSC14JSGlobalObjectEPNS1_8JSObjectE) +STUB("GXpk7pbqc+c", ulocimp_forLanguageTag_67) +STUB( + "GXsXRgVfdB8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE21intrusive_ptr_sub_refEPS9_) +STUB("GXwAucAAVKE", _ZN3sce7Toolkit2NP2V210Tournament22TeamVsTeamMatchDetails5resetEv) +STUB( + "GXwVA1tNCmQ", + _ZN3sce2Np9CppWebApi7Matches2V127ResponseMatchResultsFactory6createEPNS1_6Common10LibContextENS3_14ResultsVersionEPNS5_12IntrusivePtrINS3_20ResponseMatchResultsEEE) +STUB("GXwzMV4sWus", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119SubtaskAvailabilityEEC2Ev) +STUB("GY2I-Okc7q0", __asan_version_mismatch_check_v8) +STUB("GY9HhSASNDA", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12BandwithInfoEE12deepCopyFromERS7_) +STUB( + "GYGAbv58Kow", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE21intrusive_ptr_sub_refEPS9_) +STUB("GYJuIfJTnoo", uenum_close) +STUB("GYNW9m6bxIQ", _ZN3JSC14JSGlobalObject25s_globalObjectMethodTableE) +STUB( + "GYPIZVZsLPY", + _ZNK3sce2Np9CppWebApi14SessionManager2V129PostPlayerSessionsRequestBody6toJsonERNS_4Json5ValueEb) +STUB( + "GYPt0JrQAEg", + _ZN9Inspector21PageBackendDispatcher13setShowRulersElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("GYR6aHwlcaw", ucnv_getCCSID) +STUB("GYTAGzLGs+Y", ures_resetIterator) +STUB("GYTma8zq0NU", _ZNSt13basic_filebufIwSt11char_traitsIwEE5_LockEv) +STUB("GYUk4t27Myw", sceShellCoreUtilLaunchByUri) +STUB("GYYIk8cGKzw", SSL_get_current_cipher) +STUB( + "GYYwUPNWBEY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEC1EPNS2_10LibContextE) +STUB( + "GYZ8cOaUPoQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEneERKS9_) +STUB("GYamKe-3LbY", sceVisionManagerGetResultOfRegisterUserInRegion) +STUB("GYb9BH0k588", _ZN7WebCore9FrameView52disableLayerFlushThrottlingTemporarilyForInteractionEv) +STUB( + "GYclskDBHE8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE6resizeEj) +STUB("GYdCz1BiUBM", mono_aot_Sce_Vsh_Accessor_Dbunbox_trampoline_addresses) +STUB("GYjQb6dmwQ0", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeINS1_11TusVariableEPvEEC1ERKS7_) +STUB("GYmOFhEhwHI", _ZTVN9Inspector15RemoteInspector6ClientE) +STUB( + "GYmZVwnXyLc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEEptEv) +STUB( + "GYoJDTtMhGo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE10setContextEPNS2_10LibContextE) +STUB("GYocVtgXJbg", sceDevUsbCloseHostStream) +STUB( + "GYqyvAJtRdw", + _ZN9Inspector21DOMFrontendDispatcher25customElementStateChangedEiNS_8Protocol3DOM18CustomElementStateE) +STUB( + "GYtQFolsBPQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEptEv) +STUB("GYtmhIpK5bc", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Error16unsetReferenceIdEv) +STUB("GYvoOadj6Ys", + _ZN8meta_gen11MsvPromoter11setKeyValueENS0_23MsvPromoterSetValueInfoEP10KeyValue_tPvi) +STUB("GZ2YtnlAzH4", _ZNK3sce2np4User25GetAccountIdFromRegistoryEPm) +STUB("GZ2fZbzgixo", sceCustomMusicAudioOutGetAllMusicVolume) +STUB("GZ6b3AIskOk", sceHandTrackerGetDepthRoi) +STUB( + "GZ8Zvp6ZwU4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEC1EPS6_PNS2_10LibContextE) +STUB("GZAZl2mqRbI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEED1Ev) +STUB("GZB2v0XnG0k", sceNgs2SystemSetUserData) +STUB( + "GZFZDGteYXg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("GZFlI7RhuQo", pthread_mutexattr_gettype) +STUB("GZHXpU8oTF4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEED1Ev) +STUB("GZKYKdhWW8A", _ZN3JSC27objectPrivateFuncInstanceOfEPNS_14JSGlobalObjectEPNS_9CallFrameE) +STUB( + "GZLM--5O-rI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEmmEi) +STUB("GZMY2InuGqM", _ZN3JSC15WeakHandleOwnerC1ERKS0_) +STUB("GZNST4KS+L0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEE7get_refEv) +STUB("GZOVXCOJ+L4", _ZN7WebCore13TextIndicatorD1Ev) +STUB("GZR1pAMAEt8", mono_aot_Sce_Vsh_SQLiteplt_end) +STUB("GZSR0Ooae9Q", scePthreadAttrSetcreatesuspend) +STUB( + "GZTtPT0oGbM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE6resizeEj) +STUB("GZVGHsmNwrc", WKViewSetIsVisible) +STUB( + "GZVGKA-4UVo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE21intrusive_ptr_sub_refEPS9_) +STUB("GZWZXLPO9Yo", _ZN8meta_gen11MsvPromoter22retrievePromoterOptionEP26MsvPromoteInnerInformation) +STUB("GZWjF-YIFFk", asinf) +STUB("GZdXEhL0O38", ufmt_open_67) +STUB( + "GZdYtzLqHDE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE7popBackEv) +STUB( + "GZi4wygq828", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEE7add_refEv) +STUB( + "GZiYfj-DABM", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("GZuWgRFSA+o", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15PlayedWithStoryEEC1Ev) +STUB( + "GZuXTgngrkY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("GZugQT95TYo", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEEC2Ev) +STUB("GZxQA0G4NKY", _ZN3sce2Np9CppWebApi7Matches2V120RequestPlayerResults8setScoreERKd) +STUB( + "GZzhMy6UpuA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEC1EPS8_) +STUB("Ga62rZ9VPkc", mono_aot_Sce_Vsh_MarlinDownloaderWrapperunbox_trampoline_addresses) +STUB("Ga6r7H6Y0RI", sceGnmSubmitAndFlipCommandBuffersForWorkload) +STUB("GaBd+6ZpNQU", _ZNSbIwSt11char_traitsIwESaIwEE6assignEPKwS4_) +STUB("GaCAKR7qn-0", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEEcvbEv) +STUB("GaDit2xiyZc", _ZN3sce7Toolkit2NP2V210Tournament6Events8deepCopyERKS4_) +STUB( + "GaFCNkPwVyI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEC1EPS6_PNS2_10LibContextE) +STUB( + "GaKNlKb+QE4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE21intrusive_ptr_add_refEPS9_) +STUB("GaS8QZThdBQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEC1Ev) +STUB("GaXDDWPO1z8", _ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_17ActivityFeedStoryEE8max_sizeEv) +STUB("Gabnudg8bzM", _ZN3WTF15ThreadCondition4waitERNS_5MutexE) +STUB("GaeTcxQ69fA", p5_1024) +STUB("GagDu-aD1Qg", rgctx_fetch_trampoline_mrgctx_105) +STUB("GagczbmtfhI", _ZN3WTF18FunctionDispatcherD2Ev) +STUB("Gak6zrIRaWo", _ZNK7WebCore15GraphicsContext18hasPlatformContextEv) +STUB( + "GamBJwe3I04", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEEC1Ev) +STUB("GamJ8jA0W5A", _ZNK7WebCore18TextureMapperLayer11shouldBlendEv) +STUB( + "GaoiVDAahk8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "GatXH-qaSJE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEC2EPNS2_10LibContextE) +STUB("Gav1Xt1Ce+c", _ZSt7_MP_MulPyyy) +STUB("GawFHI26U80", mono_aot_Sce_Vsh_VideoRecordingWrapperunbox_trampolines) +STUB("Gaxrp3EWY-M", sceNpNotifyPlusFeature) +STUB( + "Gay7zprjxMg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB("GayvOjZOQNI", GCC_except_table24) +STUB("Gb-fxOosuM0", _ZNK3sce2Np9CppWebApi14ConnectAccount2V214PSNError_error10getMessageEv) +STUB( + "Gb0PFvAKD4k", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("Gb3-J6Mla08", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13SessionMemberEE8allocateEmPKv) +STUB("GbLGdmiF5BI", _ZN3JSC12CachePayloadD1Ev) +STUB( + "GbYMQNxR3j0", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V122FrequentlyMutedFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_15FrequentlyMutedEEE) +STUB( + "GbZeL6MHCJE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE8copyFromERKS9_) +STUB( + "GbaStDk1a24", + _ZN7WebCore21UserContentController17addUserStyleSheetERNS_15DOMWrapperWorldESt10unique_ptrINS_14UserStyleSheetESt14default_deleteIS4_EENS_22UserStyleInjectionTimeE) +STUB("GbayQ7DO8jA", sceNpAppLauncherLaunchApp) +STUB("GbbwaSI5Ovo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEC2ERS7_) +STUB("GbcKdx3JDJw", WKProtectionSpaceGetReceivesCredentialSecurely) +STUB("Gbf3mDjijuQ", _ZN7WebCore24CoordinatedGraphicsLayer21didChangeImageBackingEv) +STUB("Gbf850JXpeI", _Bocu1Data_67) +STUB("GbfYPnK7W8o", _ZN12video_parser5vpcom8datetime8DateTime17SetDateTimeFormatEPKw) +STUB("GbhE629vwg8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEED1Ev) +STUB("Gblk9Tyt0B0", _ZN7WebCore9DragImageC1EOS0_) +STUB("GbpPJtP6htc", _ZN3sce2Np9CppWebApi11Matchmaking2V19Attribute8fromJsonERKNS_4Json5ValueE) +STUB("Gbr7tQZ4A1A", __libunwind_Unwind_Resume) +STUB("GbxTmw+P-A4", _ZN7WebCore11DisplayList11SetLineJoinC2ENS_8LineJoinE) +STUB( + "Gc0AGmzHUN4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("Gc3f8YcDNrE", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEE3getEv) +STUB("Gc5k1qcK4fs", sceMsgDialogProgressBarInc) +STUB( + "GcB8GSBhh2A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEmmEi) +STUB("GcBBIozjw1g", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody8setValueERKl) +STUB( + "GcE+fDsY6UA", + _ZN12video_parser17cVideoProfilerMp412_createMediaEjMS0_FNS_11VP_RESULT_eEjPNS_13VpMediaInfo_tEEMNS_18cProfileCheckerMp4EFbRKS2_EMS0_FS1_S3_ERNS_7cVpListIS2_jEE) +STUB("GcEtXHDJDsA", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119BandwidthProperties13getDownstreamEv) +STUB("GcFKlTJEMkI", isupper) +STUB("GcGShVuyGwg", mono_allocator_malloc) +STUB( + "GcHBzsl-OHs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "GcUEOVCIZy8", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setInteger7ERKi) +STUB("GcUPkO7ruRw", _ZN7WebCore22EmptyFrameLoaderClientC1Ev) +STUB( + "GcX0ViXmdr0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEppEv) +STUB("GcdIHVyl-aw", sceMbusResolveByDeviceId) +STUB("GceM6WE2WS4", _ZNK3sce3Xml3Dom8Document11getNodeNameENS1_6NodeIdE) +STUB("GciZ5UdsizU", _ZN3WTF4Lock8lockSlowEv) +STUB("GcifvkbIdFo", _ZN3sce7Toolkit2NP2V211UserProfile7Request27DisplayGriefReportingDialogC2Ev) +STUB("Gcjh+CisAZM", sceHttp2SetResolveRetry) +STUB( + "Gcpqs-kk96Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "GcqDAyFcqUw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEEcvbEv) +STUB("Gcx7jKVH4Fo", _ZN7WebCore24previousSentencePositionERKNS_15VisiblePositionE) +STUB("GcxRiAp3hbA", _ZN3NTF3Ssl8finalizeEv) +STUB("Gd+qURyWyR4", ln2HI) +STUB("Gd14yqJAPa4", _ZN12video_parser5vpcom9_MemalignEjj) +STUB("Gd2cNn9kpFQ", Java_java_net_PlainDatagramSocketImpl_setTTL) +STUB("GdE8XJtFbSE", u_strFoldCase_67) +STUB( + "GdEXKaDnxuU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEC2EPS8_) +STUB( + "GdHVe2G4vHU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEC1EPS8_) +STUB("GdIm4Jm2mm8", sceApplicationGetProcs) +STUB("GdMXy2ocZ48", sceMoveTrackerCaptureInit) +STUB("GdQE3WsnVCM", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request8SetLikedC2Ev) +STUB( + "GdSqUKrWqQs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEEaSERSA_) +STUB( + "GdU3fBjlmtg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "GdcTQKsg5d4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEC2ERKS7_) +STUB( + "Gdd02bZupuA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEC1EPNS2_10LibContextE) +STUB( + "GdgKwcwT8E4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEeqERKS9_) +STUB("GdgpUNXwRsE", _sceDepthEnableDebugScreen) +STUB("GdkV-7Tkijw", WKPreferencesSetProcessSwapOnNavigationEnabled) +STUB("GdlvBtLAHXQ", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setBoolean3ERKb) +STUB("GdnhqBupzSE", YGNodeStyleSetFlexBasisAuto) +STUB( + "GdpvuevFpdE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEED1Ev) +STUB("GdwuPYbVpP4", __atomic_store_n) +STUB("GdyCEk3degI", rgctx_fetch_trampoline_mrgctx_77) +STUB( + "Ge1OVitLCP4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEC2EPS8_) +STUB("Ge5LPTR3xDM", Java_java_util_zip_Deflater_initIDs) +STUB("Ge6pgi0lST0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEptEv) +STUB( + "Ge6sxIT+bx4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEC2EPS6_PNS2_10LibContextE) +STUB("Ge8YISwcays", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEE11get_deleterEv) +STUB("Ge9Kx6Ju6jg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEC2Ev) +STUB( + "Ge9ne5xHuxs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEmmEi) +STUB( + "GeCHMPsoAXU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("GeJKliDKddg", JSGlobalContextSetIncludesNativeCallStackWhenReportingExceptions) +STUB( + "GeKbZ7oP95s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE7popBackEv) +STUB( + "GeaOQYX4Q1c", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetrics27setCompletionRatePerReasonsERKi) +STUB("GecDKH8ag3M", sceSystemTtsSpeakRequest) +STUB( + "Gei2wr0Pqnw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "Gejy94be54Q", + _ZN9Inspector15AsyncStackTraceC2EON3WTF3RefINS_15ScriptCallStackENS1_13DumbPtrTraitsIS3_EEEEbNS1_6RefPtrIS0_NS4_IS0_EEEE) +STUB("Geq48oFpp0A", _ZN3WTF10StringImpl9substringEjj) +STUB("Getl+RqEhVQ", sceSystemServiceGetRemoteplayStatus) +STUB( + "Gettsb-t0qk", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo25getsetDataInfoRequestBodyEv) +STUB( + "Gev+GcZhs4o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC1ERSA_) +STUB( + "GexFHbhrBvM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEED1Ev) +STUB("GezJ5b754Bs", _ZN3sce7Toolkit2NP2V24Core7Request11MemoryPools21JSON_MEM_MINIMUM_SIZEE) +STUB("GfBtCQhC0Fs", mono_aot_Sce_Vsh_Db_Sharedjit_got) +STUB("GfBvEsyC8oY", _ZNK7WebCore16URLDecomposition8pathnameEv) +STUB("GfDUIXu2zes", sceMusicFwIsStopped) +STUB("GfDzwBDRl3M", SSL_ASYNC_recvMessage) +STUB( + "GfGTD16X2pI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEptEv) +STUB( + "GfHCW0mNr00", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("GfKXQDoSdAA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEaSERKS7_) +STUB("GfKtbQJhry0", il2cpp_profiler_install_gc) +STUB( + "GfL2Ya58wj8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEmmEv) +STUB( + "GfOdFg60bvo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE3endEv) +STUB( + "GfOxyybjJ2U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEEC1ERKSB_) +STUB("GfQIOjyubkQ", _ZN3sce7Toolkit2NP2V29Challenge7Request13SendChallengeD2Ev) +STUB("GfREyk-b3vM", __cxx_global_var_init) +STUB( + "GfRjF9w7erA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEneERKS9_) +STUB("GfZoGLdKTn0", _ZTVN7WebCore11DisplayList11ClearShadowE) +STUB("Gfc0aRUJWa8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEC1ERS7_) +STUB("GflSK+Jz9Lo", _ZN3WTF22equalRespectingNullityENS_10StringViewES0_) +STUB("GfnvVIML3Gw", __asan_exp_loadN) +STUB( + "GfwOufLvsbI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEC2Ev) +STUB("GfxAp9Xyiqs", __isnan) +STUB("Gfzd1R86ep8", glGetFloatv) +STUB( + "Gg-N09Pdqzw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEdeEv) +STUB( + "Gg-wrWTlOS8", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12string4IsSetEv) +STUB("Gg3+yWL6DWU", sceKernelLoadStartModuleForSysmodule) +STUB("GgFMb22sbbI", sceSystemGestureUpdatePrimitiveTouchRecognizer) +STUB("GgNWVxe-YSU", _ZN15AbstractStorage6FolderD0Ev) +STUB("GgOrwi+9vcA", sceCompositorLockCommandBuffer) +STUB("GgPiEmHWuxg", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStatsC2Ev) +STUB("GgSXKx2xATk", _ZN9Inspector28DOMStorageFrontendDispatchernaEm) +STUB( + "GgWaXl9yy9E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "Ggcb+ftqAvQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("Ggh3DRD5OCU", utrans_transIncremental_67) +STUB("GgjJq0PxpUg", _ZNK3WTF8JSONImpl5Value9asIntegerERx) +STUB( + "Ggla80MqoRo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEC1EPS8_) +STUB( + "GgmQLvW+bWo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("GgrAun5x5Eg", sceWorkspaceIsBlockedByDataTransfer) +STUB( + "GguATNl6lBg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEEC1ERSA_) +STUB("Ggznek+dXtg", _ZN7WebCore10JSDocument23visitAdditionalChildrenERN3JSC11SlotVisitorE) +STUB( + "Gh-kaPIkQ9k", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEptEv) +STUB( + "Gh0o8XPayGU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEEC1Ev) +STUB("Gh35wbyg4U8", _ZThn8_N3sce2np9LocalFileD0Ev) +STUB( + "Gh3efERWevs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEE21intrusive_ptr_add_refEPS7_) +STUB("Gh74vNl06sg", sceNpUserGetUserIdList) +STUB("Gh7soVn0NGU", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119PlayStyleProperties11setProgressERKi) +STUB( + "Gh7yJ8pdIFI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEC1Ev) +STUB("GhO6L9-UJS4", _ZN7WebCore6Region8subtractERKS0_) +STUB("GhP1PyN1Twk", AnnotateThreadName) +STUB("GhQ4MY3pYEg", _ZN7WebCore9HTMLNames18onpointerenterAttrE) +STUB("GhSIARptbG8", _ZN3WTF14FileSystemImpl14MappedFileDataD1Ev) +STUB("GhTZtaodo7o", vfprintf_s) +STUB("GhX55L+EUH4", _ZNK3sce2Np9CppWebApi7Matches2V124ResponseTeamMemberResult11getPlayerIdEv) +STUB("GhYXokH9koc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEEneERKS7_) +STUB( + "GhZeEvhE2q4", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetInteger3Ev) +STUB("Ghcm94pt0TY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEED2Ev) +STUB("GhsF8zOJ3Cc", mono_thread_get_undeniable_exception) +STUB("Ghu0khDguq8", sceUserServiceSetImeInputType) +STUB("Ghz9iWDUtC4", sceNpGetAccountCountry) +STUB("Ghzo+Uyy-t8", _ZN3sce7Toolkit2NP2V28Commerce12ProductLabelD2Ev) +STUB( + "Gi-GZkRIBV0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEE7add_refEv) +STUB("Gi28UK8WzGQ", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEED1Ev) +STUB( + "Gi7ShZE5nBc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEEptEv) +STUB("Gi7XC+1X+8o", _ZNK7WebCore36ISOProtectionSystemSpecificHeaderBox8systemIDEv) +STUB("GiBMpBpiYd0", _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse9getStatusEv) +STUB("GiFdIE3L+ZY", _ZNSs7replaceEmmPKcm) +STUB("GiGIymC7UiI", WKPreferencesSetWebRTCMDNSICECandidatesEnabled) +STUB("GiINKoQuNVg", + _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody8fromJsonERKNS_4Json5ValueE) +STUB("GiJmYHz54rQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEEC2EPS5_PNS2_10LibContextE) +STUB( + "GiSQp3uJjac", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE4sizeEv) +STUB( + "GiWETd3nkAM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEC2EPS8_) +STUB( + "GiWN6uxe6TU", + _ZN7WebCore9FontCache22createFontPlatformDataERKNS_15FontDescriptionERKN3WTF10AtomStringEPKNS_18FontTaggedSettingsIiEENS_34FontSelectionSpecifiedCapabilitiesE) +STUB( + "GiXmZGHatWM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEaSERKS9_) +STUB( + "Gihs4J652WM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEED2Ev) +STUB( + "Gijg+c9HV10", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEE11get_deleterEv) +STUB("GipcbdDM5cI", makecontext) +STUB( + "GiqQCkKjFcE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEppEv) +STUB("GisV2ItxzSQ", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEEcvbEv) +STUB("GiuNQjoj4fs", FT_Library_SetLcdFilterWeights) +STUB( + "Gj47eqLxolE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEplEm) +STUB("Gj6tgiTcW4U", _ZN3JSC7JSArray3popEPNS_9ExecStateE) +STUB("GjEzzszOGBA", _ZN8meta_gen11MsvPromoter14matrixToDegreeEPA3_i) +STUB( + "GjHD4cElxwk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE5startEPNS2_10LibContextE) +STUB( + "GjHvH0ht6G4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEEeqERKS7_) +STUB("GjKfG6sGBOE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEEC2Ev) +STUB("GjOxjIVZA1Y", sceShellCoreUtilShowPsUnderLockIndicator) +STUB("GjQLdCasJDg", nsnp_Callback) +STUB("GjQNntzB+Bo", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForReadC2EPNS1_6Common10LibContextE) +STUB("GjTLuu76SmM", sceVdecwrapMapMemory) +STUB("GjV1xAe92pA", _ZN7WebCore7Element9innerTextEv) +STUB("GjZepmfthqc", sceBgftServiceIntUploadStartTaskAll) +STUB( + "GjbsmBJYdMk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "GjcA03YszY8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEED1Ev) +STUB("GjgsXQ+-x+I", _ZN3JSC14JSGlobalObject14finishCreationERNS_2VMEPNS_8JSObjectE) +STUB("Gjixv5hqRVY", sceNpTusGetMultiUserVariableA) +STUB("GjjW3bNHObE", _ZN3sce2Np9CppWebApi14SessionManager2V131JoinedPlayerSessionWithPlatformD1Ev) +STUB("GjlCrU4GcIY", sceUsbdGetDeviceAddress) +STUB("GjlEgLCh4DY", sceNpTusAddAndGetVariableAVUserAsync) +STUB("GjlePVpfinU", rgctx_fetch_trampoline_mrgctx_49) +STUB("Gjlf+huGFNw", JSStringCreateWithCharacters) +STUB( + "GjrpHc3chJg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEplEm) +STUB("Gk+8gCXwG-E", sqlite3_column_double) +STUB("Gk0mg+4tTUI", utext_char32At) +STUB( + "Gk5roC6xrqk", + _ZN7WebCore32ScrollingStateFrameScrollingNode24setCounterScrollingLayerERKNS_19LayerRepresentationE) +STUB( + "Gk7HAtV9ofQ", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "Gk9ujES5kG8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEEC1ERSA_) +STUB("GkA4buNC-VA", + _ZNK7WebCore31BasicColorMatrixFilterOperation14transformColorERNS_15FloatComponentsE) +STUB( + "GkAJMY+wF4I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEixEm) +STUB( + "GkIneoDCSOs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE3endEv) +STUB("GkMyrZa8cHM", ucnv_fromUChars_67) +STUB("GkPVpZGE6sQ", _ZN3sce7Toolkit2NP15AppSTLAllocatorIcE7destroyEPc) +STUB( + "GkQrpMn+8Lo", + _ZNK3sce2Np9CppWebApi14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBody6toJsonERNS_4Json5ValueEb) +STUB( + "GkROvxyaoF0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEeqERKS9_) +STUB("GkSqeLsK6UY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEE7get_refEv) +STUB("GkZr2dPXNgw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEEC1EPS5_PNS2_10LibContextE) +STUB("GkcHilidQHk", sceUserServiceGetGlsCameraReflection) +STUB("GkcNZBoiDcs", sceLncUtilDisableSuspendNotification) +STUB("GkcuoqSr8nw", WKPreferencesGetHiddenPageDOMTimerThrottlingEnabled) +STUB("Gke7hJc-Pm0", sceClSslTerm) +STUB("Gkl6Qti1Wfg", _ZN12video_parser7cVpUtil14_freadToBufferEPNS0_13VpFileCache_tEx) +STUB("Gkoa1wKi7K0", mono_aot_Mono_Data_Tdsunwind_info) +STUB("GkuFL+S22uc", sceCesIso2022StrGetUtf16Len) +STUB("Gkvg56ubDpo", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V18RelationEEptEv) +STUB("Gl+u5UChB1s", mono_class_num_fields) +STUB( + "Gl4p7kLDww4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "Gl5iwJZ1W8E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEC1EPS8_) +STUB("Gl6w5i0JokY", sceAppContentDownloadDataGetAvailableSpaceKb) +STUB("Gl9UFzi54FQ", WKBundlePageGetInspector) +STUB( + "GlHYCz2XFvk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEEC2ERKSA_) +STUB("GlIrjgdHfGc", _ZN7WebCore20GraphicsContextStateD1Ev) +STUB( + "GlJyccL2tv4", + _ZN3sce2Np9CppWebApi11UserProfile2V132GetPublicProfilesResponseFactory7destroyEPNS3_25GetPublicProfilesResponseE) +STUB("GlK3W3WZsn4", g_NativeCodePoison) +STUB( + "GlLpuCUx28o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE5clearEv) +STUB( + "GlOMlMBHCuk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEE3getEv) +STUB( + "GlbfaP-JwtM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("GlcXYq3EsV0", _ZNK7WebCore10ScrollView18contentsToRootViewERKNS_10FloatPointE) +STUB("GldGeV80-58", curl_mfprintf) +STUB("GlelR9EEeck", cbrtf) +STUB( + "Glf9vdV5zfk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEC1EPKS8_) +STUB("Glom7gJFV-M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEE11get_deleterEv) +STUB( + "GlreTYMyXC8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEC2Ev) +STUB("GltWfLh3-dc", _ZN7WebCore8SVGNames8hrefAttrE) +STUB( + "GlvflXGKGNo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEC1Ev) +STUB("Glwe0sa+-+8", rgctx_fetch_trampoline_mrgctx_51_p) +STUB("GlxLVLdfMos", WKPreferencesGetPrimaryPlugInSnapshotDetectionEnabled) +STUB( + "GlxjwZjoPh4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEE11release_refEv) +STUB( + "GlzwleQ-P7E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEmmEi) +STUB("Gm0erHUvxXw", ucsdet_setDetectableCharset_67) +STUB("Gm7A45gur-E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEixEm) +STUB("Gm9xuNlQSjE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEEC2EPNS2_10LibContextE) +STUB( + "GmAE20CYi8E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEE7get_refEv) +STUB("GmIN5ZvUPSM", + _ZN7WebCore15nativeImageSizeERKN3WTF6RefPtrI14_cairo_surfaceNS0_13DumbPtrTraitsIS2_EEEE) +STUB("GmJGWhxYLKQ", _ZN3sce2Np9CppWebApi6Common6VectorIdE5clearEv) +STUB("GmJr4Guymvk", _ZN3WTF10StringImpl11reverseFindEPS0_j) +STUB("GmJyq9LDPJs", WKURLCopyScheme) +STUB("GmKMHwvxLlo", sceLncUtilAcquireCpuBudgetOfImeForBigApp) +STUB("GmKS0bnd+BI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariableC1EPNS1_6Common10LibContextE) +STUB("GmNOyPRGDwA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEdeEv) +STUB("GmOguNIsuKk", sceAmprCommandBufferConstructNop) +STUB("GmP2ZgUoTPo", glScissor) +STUB( + "GmRfAxG49x8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEE11release_refEv) +STUB("GmXs45yD890", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEEC1Ev) +STUB( + "GmkJ7v6mVfU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEaSERKS7_) +STUB("GmknlpaIzyI", mono_aot_System_Runtime_Extensionsunwind_info) +STUB( + "Gmr+A+Womww", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE5emptyEv) +STUB("GmrTCACYzkE", sceVnaGetEventData) +STUB("Gn+r7nHba3k", jpeg_idct_6x12) +STUB("Gn3ZBaH2rK0", cairo_surface_create_similar) +STUB( + "GnB-wpd4obI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEE11release_refEv) +STUB("GnG9xqIIEWk", sceLibSecureHashResetContext) +STUB("GnJCXIvEcd8", _ZN3sce7Toolkit2NP2V211SharedMedia10Broadcasts5resetEv) +STUB( + "GnMMiHDZCCQ", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_19ProductInfoDetailedENS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv) +STUB("GnNvLp8818o", _ZN7WebCore6Editor23handleAcceptedCandidateENS_18TextCheckingResultE) +STUB( + "GnRsxVHRrro", + _ZN7WebCore19ProtectionSpaceBaseC2ERKN3WTF6StringEiNS_25ProtectionSpaceServerTypeES4_NS_35ProtectionSpaceAuthenticationSchemeE) +STUB( + "GnTXkxscE8k", + _ZN7WebCore16MIMETypeRegistry21allowedFileExtensionsERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEES8_) +STUB( + "GnTyRxugk1E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE10setContextEPNS2_10LibContextE) +STUB("GnU5P3SpJ1Q", _ZN7WebCore21BackForwardController11forwardItemEv) +STUB("GnVDzYfy-KI", sceHttpSetCookieSendCallback) +STUB("GnajuZVqOUc", _ZN3sce7Toolkit2NP2V210Tournament12EventDetailsD1Ev) +STUB("GnimSlf3jqg", _ZN7WebCore15HTMLLinkElement7relListEv) +STUB( + "Gnq-U0hA7Vc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE7popBackEv) +STUB("GnqKwm4KHMA", _ZN9Inspector27AnimationFrontendDispatcherdlEPv) +STUB("GnxKOHEawhk", sceAmprCommandBufferGetCurrentOffset) +STUB( + "Go+VRVxhGv4", + _ZN9Inspector21InspectorRuntimeAgent5parseERN3WTF6StringERKS2_PNS_8Protocol7Runtime15SyntaxErrorTypeERSt8optionalIS2_ERNS1_6RefPtrINS7_10ErrorRangeENS1_13DumbPtrTraitsISE_EEEE) +STUB("Go2peEcYtcM", + _ZN12video_parser13cVideoMetaVWG12_getMetadataENS_12VP_META_TYPEEjPPNS_12VpMetadata_tE) +STUB("Go4qB43MgX8", sceFaceAllPartsGetWorkingMemorySize) +STUB( + "Go6yQS5VMN0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE8capacityEv) +STUB("Go8rq2aaDlc", _ZN3WTF37parseDateFromNullTerminatedCharactersEPKcRb) +STUB("GoCeRnC3e+0", _ZN3sce7Toolkit2NP2V28Matching6Member8deepCopyERKS4_) +STUB("GoDUgXTQZLY", throw_corlib_exception) +STUB( + "GoDz7Nqtnqo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEE11release_refEv) +STUB("GoEp+s6J5yg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEED1Ev) +STUB("GoF2bhB7LYk", sceFontGetScalePoint) +STUB("GoGd21YYfCw", sceBgftServiceIntDownloadSetHighPriority) +STUB("GoLUMUdvoi0", sceDeci4hDrfpFtruncate) +STUB("GoMPhCyp74o", _ZNK3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator12getAccountIdEv) +STUB("GoOGiThozIg", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku7idIsSetEv) +STUB("GoQ1CrU3pSg", _ZN3JSC11ArrayBuffer19createUninitializedEjj) +STUB("GoS6HzHIbuE", mono_aot_Sce_Vsh_SyscallWrapperunbox_trampolines) +STUB("GoTmFeui+hQ", scePthreadMutexattrGetprotocol) +STUB("GoX0Z-J0paw", _ZN7WebCore11MathMLNames11mlongdivTagE) +STUB("GoaAO+o56mA", WKPreferencesGetForceEnableVideo) +STUB("GodxpAzGsxI", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V112OnlineStatusEEppEi) +STUB( + "Gof3Ec0ZSfg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEC1Ev) +STUB("GolPYrXT8eU", + _ZN3sce2Np9CppWebApi14SessionManager2V115SearchCondition8fromJsonERKNS_4Json5ValueE) +STUB("Gop3lku7E+Q", sceVisionManagerGetResultOfFindUserInRegion) +STUB( + "GopELq8R-9w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEED2Ev) +STUB("Gp+41FTXklM", sceFsInitUmountGamePkgOpt) +STUB("Gp0pR6Sws00", + Java_com_sony_gemstack_org_dvb_application_AppsDatabaseImpl_n_1getAttributesFromId) +STUB( + "Gp5VcGlSROc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEC1Ev) +STUB("GpDR4arH8lM", _ZN9Inspector24CanvasFrontendDispatchernwEmPv) +STUB("GpEG1IcP86s", _ZN3sce4Json5Value10s_nullrealE) +STUB("GpGc4ILGeNE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEC1Ev) +STUB("GpHqRFLabFA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEC2ERS7_) +STUB("GpLQDNKICac", sceNpCreateRequest) +STUB( + "GpML4e-O11Q", + _ZN7WebCore35createAccessControlPreflightRequestERKNS_15ResourceRequestERNS_14SecurityOriginERKN3WTF6StringE) +STUB( + "GpNaAXN+GlY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE8capacityEv) +STUB( + "GpR7cdyClRc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEmmEi) +STUB("GpWMCMxa1aA", sceLibSecureAddCipher) +STUB("GpZgx9YPGZo", uscript_getUsage_67) +STUB("Gpa2tZnJuQg", Java_java_util_zip_Inflater_end) +STUB("GpapT9ChCKs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEEC2EPS6_) +STUB("GpdlPc6VYfw", __tsan_mutex_pre_divert) +STUB("GpgGEmVl9Ck", eglQueryAPI) +STUB("GphNWAcTBGE", _ZN3JSC16SamplingProfiler18reportTopFunctionsEv) +STUB( + "GpjQRuMwSrs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEC2EPS8_) +STUB( + "GpjYftkWuqg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEED1Ev) +STUB("GpptAvO+vGI", sceHttpCacheRetrieve) +STUB("GpuFjTMZsis", sceAvControlGetMonitorInfo) +STUB("Gpz8Xfpds+A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEC2Ev) +STUB( + "Gq0RYGEEgKE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEEC2ERKSA_) +STUB("Gq1FVbe0-KE", + _ZN9Inspector21InspectorConsoleAgentC1ERNS_12AgentContextEPNS_18InspectorHeapAgentE) +STUB( + "Gq9XSUWxnaU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEEptEv) +STUB("GqCfInRNnaQ", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountIdC1Ev) +STUB("GqETL5+INhU", sceNetBweRegisterCallbackIpcInt) +STUB("GqF-5J6eSqg", _ZNK3sce2Np9CppWebApi11UserProfile2V112BasicProfile14languagesIsSetEv) +STUB("GqI7c4FrDfc", _ZN7WebCore18pluginScriptObjectEPN3JSC9ExecStateEPNS_13JSHTMLElementE) +STUB( + "GqIHH8GfLP8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("GqK+hm6Mdp0", + _ZN7WebCore15UserInputBridge14handleKeyEventERKNS_21PlatformKeyboardEventENS_11InputSourceE) +STUB( + "GqLT87CzbNk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE3endEv) +STUB("GqN5h-zFfOI", _ZNK7WebCore16HTMLMediaElement11currentTimeEv) +STUB( + "GqQ4RvgCIhw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEC2EPKS8_) +STUB( + "GqShbqXV8U8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEED1Ev) +STUB( + "GqSueWRu-Y8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE7reserveEi) +STUB( + "GqYLh0rMzlQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEE11get_deleterEv) +STUB("Gqa5Pp7y4MU", sceFontGetRenderEffectSlant) +STUB( + "GqdhJt6l9F8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEE7add_refEv) +STUB("GqdnVh2qSig", _ZN3sce3pss4core5audio5Sound23CreateSurroundPanPlayerEv) +STUB("GqeDT76NiQk", uregex_split_67) +STUB("GqgJUMwBLMw", + _ZN3WTF8JSONImpl9ArrayBase9pushValueEONS_6RefPtrINS0_5ValueENS_13DumbPtrTraitsIS3_EEEE) +STUB("Gqh8-5LJ3g4", mono_btls_x509_get_pubkey) +STUB("GqiI8g1gvaM", ures_getInt_67) +STUB("GqidY-RO6jg", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEEC2EPS6_) +STUB("Gqj46dgrxBI", g_strchug) +STUB( + "GqkuC6oXppA", + _ZN9Inspector20DOMBackendDispatcher11getDocumentElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "GqlbQQOzz4k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEC1Ev) +STUB("GqlmQCbNDpc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEEC2ERS7_) +STUB( + "GqmaGEEDG-U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEC2Ev) +STUB("GqqwioO1HC4", + _ZN3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBody8fromJsonERKNS_4Json5ValueE) +STUB("GqtvKHkHYEY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEC1ERKS7_) +STUB("Gqw13uaqnx0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE6resizeEj) +STUB("Gqx-llHCbtg", _ZN3sce2Np9CppWebApi11Matchmaking2V19AttributeD1Ev) +STUB("Gqz3wQ-Cnec", _ZN7WebCore11DisplayList11DrawEllipseC2ERKNS_9FloatRectE) +STUB("Gr+ih5ipgNk", _ZTIPKl) +STUB( + "Gr-NufZRPbo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEC1EPS8_) +STUB( + "Gr22ZmQ5Olg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEE7get_refEv) +STUB("Gr4HfdAqjc4", sceFsUfsAllocateAligned) +STUB("Gr7RF3--uDc", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product10getVersionEv) +STUB( + "Gr978RoNvjE", + _ZN12video_parser47VpMpegvideoAvcParseSPS_get_offset_for_ref_frameEPNS_21VpMpegvideoAvcSPSCtrlEiPi) +STUB( + "Gr9h5LOVcQ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("GrA9ke1QT+E", sceAudioPropagationSystemQueryInfo) +STUB( + "GrATz5OViKs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEC2EPS8_) +STUB( + "GrGPZY2lebE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEED1Ev) +STUB("GrLInwUuV2k", glDrawBuffers) +STUB("GrLxGc23gQc", _ZN7WebCore11DisplayList7ClipOutC1ERKNS_9FloatRectE) +STUB("GrPVlBqGsdI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE8copyFromERKS7_) +STUB("GrQ9s4IrNaQ", sceAudioOutGetPortState) +STUB( + "GrQSJl-p+c0", + _ZN3JSC4callEPNS_14JSGlobalObjectENS_7JSValueERKNS_8CallDataES2_RKNS_7ArgListERN3WTF8NakedPtrINS_9ExceptionEEE) +STUB("GrXt-2SalT0", _ZNK7WebCore5Color14colorWithAlphaEf) +STUB("GrZjCgU8MOI", _ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody7getPcIdEv) +STUB("GraLckR1SPU", _ZNK3WTF9MediaTime8toStringEv) +STUB("GrdiysPCp+M", sceKernelGetUniversalMode) +STUB( + "GrkSSMEFhYg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEC2EPS6_PNS2_10LibContextE) +STUB("Grm8FwC5JHA", _ZN3WTF17charactersToFloatEPKDsmPb) +STUB("Grn1GRcWJio", _ZN3WTF7CPUTime16forCurrentThreadEv) +STUB("GrqTpQcB-j0", _ZN7WebCore13ContainerNode8childrenEv) +STUB("Gry41FCj66k", _ZN7WebCore9URLParserC2ERKN3WTF6StringERKNS_3URLERKNS_12TextEncodingE) +STUB("Gs5+U15W-kU", Java_sun_awt_DownloadedFont_getStatus) +STUB("Gs7Z-QaIvu8", g_clear_error) +STUB( + "GsAxqp76fCI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("GsU8nt6ujXU", sceFontGraphicsTextureMakeFillTexture) +STUB("GsWjzRU7AWA", sceNpIntCheckPlus) +STUB("GsZGs1DOSWo", _ZN7WebCore11DisplayList16DrawLinesForTextD2Ev) +STUB("Gsb4h38mrks", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEaSERKS7_) +STUB("Gsbuwj5LXck", mono_aot_System_ComponentModel_DataAnnotationsunbox_trampoline_addresses) +STUB("GsjUOSUMQZ8", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEEC2Ev) +STUB("GslDM6l8E7U", _Unwind_DeleteException) +STUB( + "GslIZxxBq4o", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEneERKS9_) +STUB( + "GsmsTXjUSvU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEE11get_deleterEv) +STUB("GssDGmm3rGM", sceMbusGetControlStatus) +STUB("Gssl8v-q4A4", _ZN7WebCore19BlurFilterOperationC1ENS_6LengthE) +STUB( + "Gt4cT6KC+7U", + _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container29setContentInteractiveElementsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_25ContentInteractiveElementEEEEE) +STUB("Gt5RT417EGA", dremf) +STUB( + "Gt5raPAdKeo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("Gt6fMQroxAY", JSContextGroupClearExecutionTimeLimit) +STUB( + "Gt7xyYvmn8I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "GtCcjkrIaw8", + _ZN7WebCore17PageConsoleClient5countEPN3JSC9ExecStateEON3WTF3RefIN9Inspector15ScriptArgumentsENS4_13DumbPtrTraitsIS7_EEEE) +STUB("GtEbqvEBuK4", _ZN9Inspector15InspectorTargetD1Ev) +STUB("GtF-2gJqsts", scePlayerSelectionDialogGetResult) +STUB( + "GtK0QzIVsQU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEmmEi) +STUB("GtMgx4YcBuo", _ZN3sce2np4User5ClearEv) +STUB("GtOEkqZ1LDA", ScePsmMonoStringNew) +STUB( + "GtQZ4YcvCBc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEneERKS9_) +STUB("GtSIY8asgS8", _ZN7WebCore17FrameLoaderClient21didChangeScrollOffsetEv) +STUB("GtUmJEfR0xk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEC1Ev) +STUB( + "GtY0oqbLe0Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEEC1ERSA_) +STUB( + "Gtc6TEvZtx4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEEC1ERKSA_) +STUB( + "GtcDpgcdwWE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEE3getEv) +STUB("GtdVS0krX2M", + _ZN7WebCore18TextureMapperLayer16setContentsLayerEPNS_26TextureMapperPlatformLayerE) +STUB( + "GteQs20+nas", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEeqERKS9_) +STUB("Gtfab+eP6GM", sceHidControlGetDeviceId) +STUB( + "Gtgc1Q5kqN8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("GthClwqQAZs", _ZNKSt14error_category10equivalentEiRKSt15error_condition) +STUB("Gtly3NhVKN4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEdeEv) +STUB( + "GtoP6-JItWs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEED2Ev) +STUB("Gtsl8PUl40U", _ZTVSt8numpunctIwE) +STUB("GtuZGmN-tKw", sceNpSessionSignalingCreateContext) +STUB( + "Gtx9uPdbaxI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEppEi) +STUB("GtzBdoUBMuc", _ZN12video_parser16cVideoContentMp4C2EPNS_18cMp4FFLHndlManagerE) +STUB("Gu4NynMMIE4", _ZNK7WebCore20DeprecatedCSSOMValue12cssValueTypeEv) +STUB("Gu7yAM5pHW0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEE7add_refEv) +STUB("GuGxzhc35rM", + _ZN7WebCore11MediaPlayer26setTextTrackRepresentationEPNS_23TextTrackRepresentationE) +STUB("GuIr1eWRunc", WKPageSetRubberBandsAtRight) +STUB( + "GuL--Yalh2w", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEEcvbEv) +STUB("GuLJLDkyoYQ", WKPageSetAdClickAttributionOverrideTimerForTesting) +STUB("GuPIeil94Pc", sceDataTransferTargetAbortPwrReq) +STUB("GuWdK+yg4ho", _ZNK3sce2Np9CppWebApi7Matches2V118CreateMatchRequest17getNpServiceLabelEv) +STUB("GuchCTefuZw", sceAmprCommandBufferDestructor) +STUB( + "GuctNCREPIc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEEC1ERKSA_) +STUB( + "Gue5Kw4juDk", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectator28setxPsnAcceptPlatformNamePs5ENS5_25XPsnAcceptPlatformNamePs5E) +STUB("GufC+PBbxxA", sceFsISSchedStatDescriptor) +STUB( + "Guhn7Rd4Qeg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE21intrusive_ptr_add_refEPS9_) +STUB("Guk9aLNk+yE", _ZN9Inspector27LayerTreeFrontendDispatchernwEm) +STUB("GupZbXE8ZRQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEC2ERS7_) +STUB("GuruEy9Q-Zk", _ZN3sce2np3ipc17ServiceIpmiClient17invokeTermServiceEi) +STUB( + "Gusrqf8Zz2w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE8copyFromERKS9_) +STUB("GutQ9FSUsSw", _ZNK7WebCore18JSHTMLMediaElement7wrappedEv) +STUB("Gv67hJ-YiJQ", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V525ContentInteractiveElement6toJsonERNS_4Json5ValueEb) +STUB("Gv6QUkJPOJg", _ZN7WebCore9HTMLNames9nonceAttrE) +STUB("Gv7U8izfhRE", + _ZN7WebCore24CoordinatedGraphicsLayer10updateTileEjRKNS_17SurfaceUpdateInfoERKNS_7IntRectE) +STUB("GvAwpvKsjPc", WKPageSelectContextMenuItem) +STUB("GvCK+iPaC0s", rgctx_fetch_trampoline_mrgctx_77_p) +STUB("GvCeMmaiecY", uloc_getTableStringWithFallback_67) +STUB("GvDTrCUBj6g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEEC1EPS6_) +STUB("GvDpNf+QLGE", + _ZNK3sce2Np9CppWebApi7Matches2V127ResponseTeamMemberStatistic6toJsonERNS_4Json5ValueEb) +STUB("GvDsz3xfMJs", unumf_formatDecimal_67) +STUB("GvGKMjRb0ck", ucnv_open_59) +STUB("GvGvswb0v34", _ZN3sce4Json14InitParameter2C2Ev) +STUB("GvHRNpJ7Qts", _ZN9Inspector17BackendDispatcher12CallbackBase7disableEv) +STUB("GvKs80R+Ung", PKFree) +STUB( + "GvN07mwMCeA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEneERKS9_) +STUB( + "GvUb-StTQaw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "GvVkUV2JPZE", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeaders24hasXPsnAtomicOperationIdEv) +STUB("GvWrHi5LzyU", _ZN7WebCore11DisplayList8SetStateD0Ev) +STUB("GvYZax3i-Qk", _ZNKSbIwSt11char_traitsIwESaIwEE5_XranEv) +STUB("GvcpIsKd29g", _ZN3sce7Toolkit2NP2V212NetworkUtils7Request16GetBandwidthInfoC1Ev) +STUB( + "GvgI2wpHUyE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEEcvbEv) +STUB("GviyYfFQIkc", sceGnmGetCoredumpAddress) +STUB("Gvofk1RGzaM", uscript_getName) +STUB("Gvp-ypl9t5E", _ZTVSt13bad_exception) +STUB("GvqPsPX4EUI", sceSystemStateMgrTickPartyChat) +STUB("Gvt+VlBbE1M", + _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead21searchAttributesIsSetEv) +STUB("GvwE97PtrZY", WKWebsiteDataStoreSetStatisticsGrandfatheringTime) +STUB("GvxTh5+CttM", _ZN3sce7Toolkit2NP2V24Core11RequestBaseaSERKS4_) +STUB("GvyNJ7hiYcE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEC2ERS7_) +STUB( + "Gw+aYsgyE4U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEC1Ev) +STUB( + "Gw2UxudKi+s", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB( + "Gw5Vza07VAM", + _ZN7WebCore14DocumentLoader31fromTemporaryDocumentIdentifierEN3WTF16ObjectIdentifierINS_22DocumentIdentifierTypeEEE) +STUB("Gw6S4oqlY7E", sceGameLiveStreamingSetGuardAreas) +STUB("Gw6h7XvgsVo", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEEC1ERS6_) +STUB("Gw7yn0CEmv8", _sceUltReaderWriterLockOptParamInitialize) +STUB("Gw8K-Ibg-QM", monoeg_g_timer_elapsed) +STUB("Gw9B-uN5iFw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEEC2EPS5_PNS2_10LibContextE) +STUB("GwDT4g7lgEk", _ZN3sce2Np9CppWebApi6Common6VectorIfE21intrusive_ptr_sub_refEPS4_) +STUB("GwFVF2KkIT4", sceHmdInternalIsCommonDlgMiniAppVr2d) +STUB( + "GwFfaMw2aHk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEC2EPS6_PNS2_10LibContextE) +STUB("GwFhWxamXuQ", _ZN12video_parser13cVideoMetaVWG10getGPSInfoEPNS_11VpGPSInfo_tE) +STUB( + "GwWn958m6g4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEED1Ev) +STUB( + "GwZbACFChDY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("GwfKLihv7-o", _ZN7WebCore36visiblePositionForPositionWithOffsetERKNS_15VisiblePositionEi) +STUB("GwhI3go+ZZY", WKBundlePageDidExitFullScreen) +STUB("GwkxP7923yc", + _ZN7WebCore12SettingsBase20setCursiveFontFamilyERKN3WTF10AtomStringE11UScriptCode) +STUB( + "Gwlmsi45l74", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "GwlvBbuxFss", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEaSERKS7_) +STUB("Gwm+Kgely-s", mono_aot_Sce_Vsh_DataTransferjit_code_start) +STUB("GwpODXE2OFk", _ZN7WebCore17FullscreenManager17didExitFullscreenEv) +STUB("GwqphWHl2lQ", ztrans_getStaticClassID_67) +STUB("GwtdQhe3AUM", WKWebsiteDataStoreStatisticsClearThroughWebsiteDataRemoval) +STUB("Gwuoupmfe8Q", uprv_trunc) +STUB("Gx+EYbwlmE0", mono_assembly_load_from) +STUB( + "Gx14Ks78kyM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEC1ERKS8_) +STUB( + "Gx3gkm05HdQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("Gx6XB3Cf5KY", sceLibcFopenWithFH) +STUB("GxAF6y9l98M", sceFiosArchiveGetDecompressorThreadCount) +STUB("GxApoYad2zY", _ZN7bmalloc29StaticPerProcessStorageTraitsINS_9DebugHeapEE7Storage8s_objectE) +STUB( + "GxDlxgJNRIg", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions9setfieldsENS1_6Common12IntrusivePtrINS6_6VectorINS6_6StringEEEEE) +STUB( + "GxFIkkvE8U8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEE11release_refEv) +STUB( + "GxJJu4ykIF8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEE11get_deleterEv) +STUB( + "GxKgxfeeMXU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEC2ERKS7_) +STUB("GxL+C51Fo5A", ufieldpositer_next_59) +STUB("GxLRCIuSI2M", _ZN7WebCore11MediaPlayer17supportsKeySystemERKN3WTF6StringES4_) +STUB("GxLWibfli9A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEaSERKS7_) +STUB("GxPUre7bkuE", delegate_virtual_invoke_6_p) +STUB( + "GxSTsMB0WyE", + _ZN3sce2Np9CppWebApi7Matches2V133RequestTemporaryCompetitiveResult14setTeamResultsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_27RequestTemporaryTeamResultsEEEEE) +STUB( + "GxUGTIVTBRc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEeqERKS9_) +STUB("GxVDSv5dIws", _ZN7WebCore28topPrivatelyControlledDomainERKN3WTF6StringE) +STUB("GxYlcKD-B44", _ZN15AbstractStorage12LocalStorageD0Ev) +STUB( + "GxbOLs+UBS0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("Gxk-Wt0tp-0", jpeg_idct_1x1) +STUB("GxotrjFiHnc", JSObjectMakeConstructor) +STUB("GxqMYA60BII", sceUserServiceSetGlsCameraBrightness) +STUB( + "GxrbTKK3MqE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEdeEv) +STUB("Gxt5BB8ahXg", _ZN7WebCore4Page16setActivityStateEN3WTF9OptionSetINS_13ActivityState4FlagEEE) +STUB( + "GxuVQ-yNLX4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEEaSERSA_) +STUB("GxypSl6NUwI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS19FriendsDataStatusesEE3getEv) +STUB("Gy--AnYjtr8", WKContextSetMemoryCacheDisabled) +STUB("Gy0ReOgXW00", sceAudioOutSetPortConnections) +STUB( + "Gy0THFJm33w", + _ZNK3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsSearchRequestBody6toJsonERNS_4Json5ValueEb) +STUB( + "Gy1czU50EBI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEC1EPNS2_10LibContextE) +STUB( + "Gy2iRxp3LGk", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERf) +STUB("Gy3nDLxHAaM", _ZN7WebCore14JSVoidCallbackD1Ev) +STUB("Gy50gCK06Xk", _ZNK3sce2np13JsonArrayImpl5CloneEP14SceNpAllocator) +STUB("Gy96Dui8SfM", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIjE21intrusive_ptr_sub_refEPS4_) +STUB( + "GyF5K3aiwPM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE8copyFromERKS9_) +STUB("GyFZR4d5pHg", _ZN10Deprecated25ScriptCallArgumentHandlerD2Ev) +STUB("GyI2f9yDUXM", sceNpMatching2GetUserInfoListA) +STUB("GyKvp1lgCFw", RemotePlayNotifyUserDelete) +STUB("GyQu9uZuDXQ", WKContextSyncLocalStorage) +STUB( + "GyUwGzE5Rko", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEixEm) +STUB("GyV5w1FsExg", _ZThn96_NK7WebCore16HTMLInputElement17validationMessageEv) +STUB( + "GyVmPPMYRA4", + _ZN7WebCore12EventHandler17scrollRecursivelyENS_15ScrollDirectionENS_17ScrollGranularityEPNS_4NodeE) +STUB( + "Gyf1CAJYGhM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEC2EPNS2_10LibContextE) +STUB("GyfIYhv4qX8", _ZNK3sce2Np9CppWebApi6Common6VectorIiE4sizeEv) +STUB( + "GyjF24A1P9I", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "GyntQGIPSnQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEE3getEv) +STUB("GyrT4pmbp1I", mono_aot_Sce_Vsh_PsnMessageUtilunbox_trampoline_addresses) +STUB("GyvUQ674UvQ", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEEC1ERKS6_) +STUB("Gz+I4uxmv7M", BN_mod_inverse) +STUB("Gz1rmUZpROM", sceNpTrophy2CreateHandle) +STUB("Gz7fsv9TEzM", _ZN7WebCore27outputConstraintSubspaceForERN3JSC2VME) +STUB( + "Gz9Wi+38KKE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEC1ERKS7_) +STUB( + "GzCPQPkj8hw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("GzDZo0Jo33k", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEEdeEv) +STUB( + "GzEOnByIEHU", + _ZN3sce7Toolkit2NP7Ranking9Interface19displayRangeOfRanksEPKNS1_19RangeOfRanksRequestEPNS1_9Utilities6FutureINS1_15RankInformationEEEb) +STUB( + "GzF5kkWHxeg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEC1EPNS2_10LibContextE) +STUB( + "GzFDxECF+6I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE3endEv) +STUB( + "GzO47PsldK8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEE11release_refEv) +STUB( + "GzX9-kspZUs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEdeEv) +STUB("GzaGT-nX+vk", _ZN3WTF14FileSystemImpl29makeSafeToUseMemoryMapForPathERKNS_6StringE) +STUB("Gzah1AMZDS8", _ZN4IPMI4impl10ServerImplC2Ev) +STUB( + "Gzc9Wli7dXI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi10uploadDataEiRKNS4_42ParameterWithBinaryRequestBodyToUploadDataERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_22UploadDataResponseBodyEEENSA_INS4_25UploadDataResponseHeadersEEEEE) +STUB("GzcqLy9vAYY", WKSerializedScriptValueDeserialize) +STUB("GzfIPAecUW4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData13unsetobjectIdEv) +STUB("GzflMHP-8EQ", mono_aot_Sce_Vsh_EventServiceWrappermethod_addresses) +STUB("GzhXaAN+uYw", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error10getMessageEv) +STUB("GzpH26DPgkY", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_19WordFilterSanitizedEE3getEv) +STUB( + "GzqrUd4brhA", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody16setMaxSpectatorsERKi) +STUB("H+0E2sFenKo", mono_debug_lookup_method_addresses) +STUB("H+3rEYCIICE", sceUpsrvUpdateCheckCreateHandler) +STUB("H+8UBOwfScI", __powidf2) +STUB("H+BMUU6oC8s", _ZN7WebCore32serializationForRenderTreeAsTextERKNS_5SRGBAIfEE) +STUB("H+ED9TvVwUQ", _ZNK7WebCore20FontAttributeChanges18createEditingStyleEv) +STUB( + "H+FunD5qAp0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEEC2ERSA_) +STUB( + "H+N9ndJD8v8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEED2Ev) +STUB( + "H+Nu+RWBkuc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE8copyFromERKS9_) +STUB( + "H+OfZxdLCM4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEixEm) +STUB("H+RES7B8vBM", + _ZN3sce2Np9CppWebApi14SessionManager2V131JoinedPlayerSessionWithPlatform12setSessionIdEPKc) +STUB("H+T2VJ91dds", _ZNSt8numpunctIwEC1EPKcmb) +STUB( + "H+X8eVl7ccE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEmmEv) +STUB("H+Ywz5Grgsk", _ZN3sce7Toolkit2NP2V210Tournament18OneVsOneTournamentaSERKS4_) +STUB( + "H+a36gZrPls", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE21intrusive_ptr_sub_refEPS9_) +STUB("H+bqFwVYz6M", sceGnmSysEnableSubmitDone45Exception) +STUB( + "H+jk3RlHsDQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEE7get_refEv) +STUB( + "H+kgNA1n6kA", + _ZN9Inspector15AsyncStackTrace6createEON3WTF3RefINS_15ScriptCallStackENS1_13DumbPtrTraitsIS3_EEEEbNS1_6RefPtrIS0_NS4_IS0_EEEE) +STUB("H+oM6blpPU8", AsyncGetCallTrace) +STUB( + "H+qricroNsI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB( + "H+xN7NKoyu0", + _ZN7WebCore10FontHandleC2EON3WTF3RefINS_12SharedBufferENS1_13DumbPtrTraitsIS3_EEEENS_4Font6OriginEfbb) +STUB("H-7tWq8gfKs", sceCameraGetCalibDataFromDeviceForEve) +STUB( + "H-8KnjfX5Us", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEdeEv) +STUB("H-9iQYaRXDo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEEC1ERKS7_) +STUB( + "H-BjaManDHw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEC1EPKS8_) +STUB( + "H-C6pEJfVyA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "H-CAGT3ua+U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEC2Ev) +STUB("H-FNq8isKE0", sceFontWordsFindWordCharacters) +STUB("H-G7WrXqsZE", _ZN7WebCore6Editor28updateEditorUINowIfScheduledEv) +STUB( + "H-I2JYFLDcI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEC1EPS8_) +STUB( + "H-IgnXJ5380", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser9getfieldsEv) +STUB( + "H-IhV9Kwycc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEC2EPNS2_10LibContextE) +STUB( + "H-JdSW6DwhY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE8copyFromERKS9_) +STUB("H-LpvQe2GB0", _ZNK7WebCore17HTMLLegendElement4formEv) +STUB( + "H-OxZieKYKs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("H-PxK0DNH70", _ZN7WebCore20PasteboardWriterDataC2Ev) +STUB("H-QeERgWuTM", putc_unlocked) +STUB("H-Soj+zinYk", mono_aot_Sce_PlayStation_Imeunbox_trampoline_addresses) +STUB("H-TDszhsYuY", _ZTVSt7codecvtIwc9_MbstatetE) +STUB("H-WaabqfU-I", sceDebugKillProcess) +STUB( + "H-YRL0+Nin4", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot8getlimitEv) +STUB( + "H-a6zg9lvcI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE6resizeEj) +STUB( + "H-enG6bYAaM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEneERKS9_) +STUB("H-g83ExS6KE", _ZN3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayerD1Ev) +STUB("H-gEkxHy3s8", _ZNK7WebCore15ActiveDOMObject18hasPendingActivityEv) +STUB("H-jGYRkbVE4", WKPreferencesSetSubpixelAntialiasedLayerTextEnabled) +STUB("H-n4J3+aI6o", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V223FilterProfanityResponseC2EPNS1_6Common10LibContextE) +STUB("H-q1DcxO7HM", Java_java_awt_GnmGraphicsDevice_getIDstring) +STUB( + "H-rTiw3vmcU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEEC1ERSA_) +STUB("H02lfd0hCG0", SSL_sendAlert) +STUB("H06KcilGIfI", scePerfPmcNbGetCounter) +STUB( + "H07Qu9DRAmA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "H09rWtKGUXU", + _ZN3sce2Np9CppWebApi14SessionManager2V136GetPlayerSessionsResponseBodyFactory7destroyEPNS3_29GetPlayerSessionsResponseBodyE) +STUB( + "H0ACSwvTx+8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEEC1ERSA_) +STUB("H0B1Zm47424", + _ZN3sce2Np9CppWebApi14ConnectAccount2V215AccountLinksApi28ParameterToDeleteAccountLinkD2Ev) +STUB("H0BpQ7MGQbw", _ZN3sce2Np9CppWebApi6Common6VectorImE6insertENS2_8IteratorImEERKmRS6_) +STUB("H0CXchtam5k", _ZNK7WebCore8FormData7flattenEv) +STUB( + "H0EkgPT8-b0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE8pushBackERKS8_) +STUB( + "H0ErG8LW9rg", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("H0FQnSWp1es", _Deletegloballocale) +STUB("H0GlNSfrsT0", _ZN7WebCore9HTMLNames10actionAttrE) +STUB("H0LXPH+m+XA", _ZNK3WTF8JSONImpl10ObjectBase4findERKNS_6StringE) +STUB("H0NwmJX8SOA", __libunwind_Unwind_DeleteException) +STUB( + "H0PGwTexYG0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "H0RU4h2U0sk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("H0UUYsOvZUA", rgctx_fetch_trampoline_rgctx_108) +STUB("H0W98kDHCPE", _ZN3sce7Toolkit2NP2V212EventsClient12EventDetails21MAX_SIZE_REQUIREMENTSE) +STUB("H0WTMJD9+jM", JSGlobalContextSetRemoteInspectionEnabled) +STUB("H0XjNhflED4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEixEm) +STUB( + "H0ZS0dFIzWU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEptEv) +STUB( + "H0ZfkK4WHJM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEEC2ERSA_) +STUB("H0a2QXvgHOk", _ZNSt10moneypunctIwLb1EEC2ERKSt8_Locinfomb) +STUB("H0aqk25W6BI", _ZTISt10bad_typeid) +STUB("H0avAuaZfOg", mono_aot_Sce_Vsh_Messagesjit_code_start) +STUB("H0cM2rlQfIE", mono_method_desc_new) +STUB( + "H0eljOZCGnk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEE7add_refEv) +STUB("H0gi2nUt5vE", + _ZNK3sce2Np9CppWebApi14SessionManager2V122GameSessionPushContext6toJsonERNS_4Json5ValueEb) +STUB("H0hj8V6fJwk", sceKernelGetQafGenerationForRcmgr) +STUB("H0jxp-CXk3o", _ZN9Inspector21DOMFrontendDispatchernwEm) +STUB( + "H0kHifttkdI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB("H0kyPvsDk5Y", bemp2sys_logprintf_getlevel) +STUB("H0mJnhKwV-s", sceFontFtSupportPcf) +STUB("H0n1QHWdVwQ", sceNpIntGetNpTitleId) +STUB("H0pVDvSuAVQ", getchar_unlocked) +STUB("H0qFect9wrY", rgctx_fetch_trampoline_mrgctx_88_p) +STUB("H0y1rhGqJ7Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEcvbEv) +STUB("H0yW7HkbWzI", PSNowSetSettings) +STUB("H0zRqu+IAsw", sceCesRefersUcsProfileCp1253) +STUB( + "H134UgcuIw4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("H1HqUgxuDy0", + _ZNK3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator14getCustomData1Ev) +STUB("H1Hy3q7Jtao", mparams .4) +STUB("H1R+2GwNikg", _ZNK3sce2Np9CppWebApi6Common6VectorINS2_6StringEE8capacityEv) +STUB("H1VDOoibLBg", sceVorbisDecBitrate) +STUB("H1bArJPagV0", getservbyname) +STUB("H1cGFcWt0I0", + _ZN3sce2Np9CppWebApi11UserProfile2V125GetPublicProfilesResponse8fromJsonERKNS_4Json5ValueE) +STUB("H1fYQd5lFAI", sceCompanionUtilTerminate) +STUB("H1jYaeQshic", _ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody13unsetObjectIdEv) +STUB( + "H1kfG0ZrXVM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "H1lfHwvYbhM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEE11release_refEv) +STUB("H1oe++DEiaM", unum_getSymbol_67) +STUB("H1p9Bd5xQeQ", WKPreferencesGetCustomPasteboardDataEnabled) +STUB("H1rc-rHCrrA", _ZN3WTF7RunLoop21initializeMainRunLoopEv) +STUB("H1sJExU7jt8", __sanitizer_update_counter_bitset_and_clear_counters) +STUB("H1vOTAqYBbM", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V16StatusEEC1Ev) +STUB( + "H1yb41h8kMs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "H20O5E-KBzU", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V230FilterProfanityResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_23FilterProfanityResponseEEE) +STUB("H254w-gIJpc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEE21intrusive_ptr_sub_refEPS5_) +STUB("H26cWBXW184", ucase_toFullTitle) +STUB("H290E4pgRHo", _ZN7WebCore7Element18getAttributeNodeNSERKN3WTF12AtomicStringES4_) +STUB("H2EuchM-d64", udata_open_67) +STUB( + "H2F--L0yCOo", + _ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody16unsetCustomData2Ev) +STUB("H2HLRQerr+g", _ZN4IPMI4impl10ClientImplD1Ev) +STUB("H2KGT3vA7yQ", + _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecx) +STUB("H2LmrUCPD40", WKPreferencesGetJavaScriptRuntimeFlags) +STUB( + "H2NiOlCtS7s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE10setContextEPNS2_10LibContextE) +STUB( + "H2PYJoK0GhU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE8pushBackERKS8_) +STUB("H2QD+kNpa+U", __inet_ntoa_r) +STUB("H2S3lRfnOrc", _ZN3sce7Toolkit2NP2V24Auth8AuthCode5resetEv) +STUB( + "H2TE61FKOUI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEdeEv) +STUB("H2TzUB5dpJw", sceNpTrophy2SystemCreateHandle) +STUB("H2a+IN9TP0E", scePthreadSemTrywait) +STUB( + "H2apITLaEek", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEC2Ev) +STUB("H2e8t5ScQGc", __cxa_finalize) +STUB("H2eFItdG+uk", _ZN3sce7Toolkit2NP2V212ActivityFeed13UsersWhoLikedC2ERKS4_) +STUB("H2f6ZwIqLJg", sceSystemStateMgrNotifySystemSuspendResumeProgress) +STUB("H2oBJVmx0XQ", WKBundleHitTestResultCopyAbsoluteImageURL) +STUB("H2rVpzoGwEA", _ISO2022Data_67) +STUB("H2ypFp05YKU", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEEppEv) +STUB( + "H32OB1-nHY8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSD_ESD_) +STUB("H336BO4+kP4", sceNpGriefReportReadLfpsCommentFile) +STUB("H33CwgKf4Rs", sceNpManagerIntGetUserIdByOnlineIdSdk) +STUB("H33ge+SDjlI", UCNV_TO_U_CALLBACK_SUBSTITUTE) +STUB("H35ORo78mlA", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_23NpSessionInvitationInfoEE7addressERS3_) +STUB("H35UsHYlhB4", _ZN3sce2np3ipc17ServiceIpmiClient13CreateRequestEPiiPKvm) +STUB("H35mHjMeOUk", mono_class_init) +STUB( + "H36dFphjSmA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEC2EPS8_) +STUB("H39CJdK96pU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEmmEv) +STUB("H3AtFkB+DmM", _ZN7WebCore18JSHTMLInputElement11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("H3Kr9gOGCwk", _ZNK3sce2Np9CppWebApi7Matches2V119RequestMatchResults20getCompetitiveResultEv) +STUB("H3LD-9ATHlY", WKPreferencesGetPaintTimingEnabled) +STUB( + "H3P9si43yHM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEmmEi) +STUB( + "H3Q4sSPgwZA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEEC1ERSA_) +STUB("H3Sisa6bSSU", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEE3getEv) +STUB("H3Uc4VqAD90", scePigletAllocateVideoMemory) +STUB( + "H3XsCvF5j2A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEC1EPNS2_10LibContextE) +STUB( + "H3Z5h4l3J18", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEC1Ev) +STUB("H3ZiJiKmfHA", sceIduUtilGetCompilationDiscInfo) +STUB( + "H3g9CtcMXpk", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_19UpStreamTransactionIT_T0_EE) +STUB("H3hEYc3w6s4", _ZN3sce7Toolkit2NP2V29Challenge18ChallengeThumbnailaSERKS4_) +STUB( + "H3hodDT1wf4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEC1Ev) +STUB( + "H3mBlx8SSUE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "H3o6Dg-9W20", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEEC2Ev) +STUB( + "H3oY+kG5dio", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("H3pmc6s-Yuw", _ZN7WebCore11JSDOMMatrix14finishCreationERN3JSC2VME) +STUB("H3uq7x0sZOI", sceNpTusDeleteNpTitleCtx) +STUB("H3whj7yh+iM", _ZN3sce2np8JsonBoolD1Ev) +STUB("H3xGWuYcrxI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEdeEv) +STUB("H4-K+LKFpfc", sceNetApctlInit) +STUB( + "H40e9RfXDPw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEED2Ev) +STUB("H43OUnX46hU", _ZN7WebCore9CookieJar26shouldIncludeSecureCookiesERKNS_8DocumentERKN3WTF3URLE) +STUB("H49qutQi9a0", curl_multi_poll) +STUB("H4EXZ9L3p2M", sceCompositorSetMorpheusState) +STUB("H4EfuyCGOsA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEEppEi) +STUB("H4EgMfEASyE", _ZNK7WebCore11RenderLayer19absoluteBoundingBoxEv) +STUB( + "H4Il16X5heo", + Java_java_security_AccessController_doPrivileged__Ljava_security_PrivilegedExceptionAction_2Ljava_security_AccessControlContext_2) +STUB( + "H4IxauuS118", + _ZN3sce2Np9CppWebApi14SessionManager2V124GameSessionPlayerFactory6createEPNS1_6Common10LibContextERKmRK13SceNpOnlineIdPKcSE_PNS5_12IntrusivePtrINS3_17GameSessionPlayerEEE) +STUB( + "H4J2i-RlLD0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE21intrusive_ptr_add_refEPS9_) +STUB("H4MCONF+Gps", wcspbrk) +STUB("H4NI+LIEM2Y", Java_java_io_RandomAccessFile_setLength0) +STUB("H4Xnv4tX730", WKDatabaseManagerSetQuotaForOrigin) +STUB( + "H4YH99UeGXY", + _ZN7WebCore21NetworkStorageSession59didCommitCrossSiteLoadWithDataTransferFromPrevalentResourceERKNS_17RegistrableDomainEN3WTF16ObjectIdentifierINS_18PageIdentifierTypeEEE) +STUB("H4Z3ShBNjSA", SSL_negotiateConnection) +STUB("H4bdJzvPR7U", _ZNK3WTF8JSONImpl5Value8asDoubleERf) +STUB( + "H4c7fSIE4HI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEppEi) +STUB("H4eyE4ez7O4", FT_Get_FSType_Flags) +STUB("H4fcpQOpc08", _ZNSt6locale2id7_Id_cntE) +STUB("H4haJKBliZE", u_strncmp) +STUB("H4iCs-u7khs", searchCommInfoListByKeyAndProtocolNumber) +STUB( + "H4jL77K5brc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEneERKS9_) +STUB( + "H4kZb3sUSGs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEmmEi) +STUB( + "H4o1Rn6YirU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEaSERKS7_) +STUB( + "H4pLicWlzrg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEmmEi) +STUB( + "H4rBpDYuly0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEC1EPS8_) +STUB("H4shQANw1vE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEC2Ev) +STUB("H4uiFzMF7Yc", Java_com_sun_dvb_event_MHPEventQueue_init) +STUB( + "H4vlWuQWtMk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser9terminateEv) +STUB("H4ynxwcDMGg", _ZNK3sce2Np9CppWebApi13InGameCatalog2V515ContainerRating10totalIsSetEv) +STUB("H4zO5E6EFgM", _ZN12video_parser5vpcom22IsExistsRemovableMediaEv) +STUB("H4zqFaDhHW4", sceVoiceQoSDeleteRemoteEndpoint) +STUB( + "H5-+7zNsRtY", + _ZN3sce2Np9CppWebApi7Matches2V131RequestCompetitiveResultFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_24RequestCompetitiveResultEEE) +STUB("H51PINVcMM8", sceNpManagerIntTermInternal) +STUB( + "H52ryDw6af4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE7reserveEi) +STUB( + "H5472PHYSfQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("H54cSDvjryI", sceKernelIsGenuineKratosCex) +STUB( + "H54exsQrdEo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEEaSERSA_) +STUB("H57vsYyE0TU", _ZN3sce16CommonDialogUtil6Server6setRunEPvm) +STUB("H59T7YvKI5M", sceKernelGiveDirectMemoryToMapper) +STUB( + "H5CUBG4tVMM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEEC2ERKSA_) +STUB("H5CkYadPsXQ", _ZNK7WebCore7Element10clientRectEv) +STUB( + "H5E5peHS8a4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB("H5IByLixeaI", mono_class_get_method_from_name) +STUB( + "H5PuMGya94U", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "H5RWHoogd2Q", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId12unsetifMatchEv) +STUB("H5RZOrnVEP0", _ZNK3IPC15ArgumentDecoder28bufferIsLargeEnoughToContainEjm) +STUB( + "H5UB5ckoSRE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE3endEv) +STUB("H5Ua1dSjKi8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEEC1ERKS7_) +STUB("H5WHYRfDkR0", sceNetShowNetstatWithMemory) +STUB("H5ZSRk2716Q", _ZN8meta_gen14ImageRetrieverC2Ev) +STUB("H5d8CbQ8MTc", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_16SessionAttributeEED2Ev) +STUB( + "H5hfZfVoLNA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEmmEv) +STUB( + "H5ibs5CZoQA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEC2Ev) +STUB("H5kLCyRw33Y", psl_registrable_domain) +STUB( + "H5pQxwSKcEw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEaSERS7_) +STUB("H5qpHwHsY3o", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116JoinableUserTypeEEdeEv) +STUB("H5t0P5fgBHU", _ZN7WebCore8Document7appletsEv) +STUB("H5yARg37U5g", sceNetCtlGetResultV6) +STUB("H5yWnR-IzaU", + _ZN3sce2Np9CppWebApi7Matches2V120ResponseInGameRoster8fromJsonERKNS_4Json5ValueE) +STUB("H61hE9pLBmU", _ZTSSt9exception) +STUB("H63M1OG9BHs", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIjEppEv) +STUB( + "H640tYMUz+U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEEC2Ev) +STUB("H69MYqpNjCc", sceKernelBeginAppMount) +STUB( + "H6ANjVQ4ffU", + _ZN9Inspector21PageBackendDispatcher18getResourceContentElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("H6BxvrQ8JRg", _ZN7WebCore9HTMLNames30onaccessiblescrollintoviewAttrE) +STUB("H6Gu+D3Z7Ek", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEEC1ERS7_) +STUB("H6HfiL+Wk9k", _ZN3JSC22EdenGCActivityCallbackC2EPNS_4HeapE) +STUB( + "H6Lcd89DpHk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEptEv) +STUB( + "H6QMydvpBG0", + _ZN3sce2Np9CppWebApi14SessionManager2V119JoinableUserFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_12JoinableUserEEE) +STUB("H6bGC6sM7+8", _ZN13MsvMetaEditor15getMetaDataInfoEjtt) +STUB("H6bIN2qvlxY", sceKernelEventLogPread) +STUB( + "H6btaOLCRg8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEC2EPKS8_) +STUB("H6c49yBe168", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEED1Ev) +STUB( + "H6e-1D02prE", + _ZNK3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead19getFromNonPsnPlayerEv) +STUB("H6i87iJXL8c", _ZN3sce7Toolkit2NP2V23TUS7TusDataD1Ev) +STUB( + "H6oyD1Wl8tw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "H6q4N5ctWQ0", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi21ParameterToLeaveMatch10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_17LeaveMatchRequestEEE) +STUB( + "H6rGzGHIA0w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("H6sQJ99usfE", sceNpTusGetMultiUserDataStatusForCrossSaveVUserAsync) +STUB("H6vHS5cidSA", sceAgcDcbContextStateOpGetSize) +STUB("H6vXNrzeV18", + _ZN3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectator16setJoinTimestampEPKc) +STUB("H6wju6uvjmA", sceFiosCacheContainsFileSync) +STUB("H6xqSNWg0wM", sceNpIntGetAppType) +STUB( + "H6xtjEuXJ9k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEC1Ev) +STUB("H6yhzXzNmBg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEC2Ev) +STUB("H7-7Z3ixv-w", _ZNSt4_Pad7_LaunchEPKcPP12pthread_attrPP7pthread) +STUB("H7-fgvEutM0", sceGnmGetEqTimeStamp) +STUB("H7-xFNWsKqE", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product12versionIsSetEv) +STUB("H75MRAdNg3w", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110TaskStatusEEC2Ev) +STUB("H76Vum22-1Y", _ZN3sce7Toolkit2NP9Utilities6FutureI18SceNpTssDataStatusED2Ev) +STUB("H79hvSjD4-w", _ZN7WebCore11FrameLoader17HistoryController26saveDocumentAndScrollStateEv) +STUB( + "H7OgYdLtOB4", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions9terminateEv) +STUB( + "H7PaYrROi1M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEaSERS7_) +STUB( + "H7QlY2hzWNw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEppEi) +STUB( + "H7SPbHsCEGc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("H7cknGH2DVo", WKBundleNodeHandleCopyDocument) +STUB("H7fGIwrDoyo", _ZN3sce7Toolkit2NP2V28Commerce13CategoryLabelD2Ev) +STUB("H7g8z3ZOLn0", _ZN3sce7Toolkit2NP2V27Session7Request6SearchC2Ev) +STUB( + "H7oc8ONTB0k", + _ZN9Inspector27InspectorFrontendDispatcher7inspectEN3WTF6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsIS5_EEEENS2_INS1_8JSONImpl6ObjectENS6_ISA_EEEE) +STUB("H7ocC6jKOVs", WKBundleFrameContainsAnyFormElements) +STUB( + "H7piX9NmYUc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEcvbEv) +STUB("H7rjk3Sc1xI", sceBgftServiceIntPlayGoCheckDiscIniChunksInstall) +STUB( + "H7uZAakbOX4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB("H7uZqCoNuWk", sceAgcDcbPopMarker) +STUB( + "H7zhhYi03JU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB("H8-HSuGeyy0", png_set_read_user_transform_fn) +STUB("H80mgXKj4wo", + _ZN3sce2Np9CppWebApi14SessionManager2V123MemberWithMultiPlatform12setAccountIdERKm) +STUB("H83apoANqa8", uset_addAll_67) +STUB("H843XLhvW90", _ZN3sce7Toolkit2NP2V210Tournament15RegisteredTeamsC2Ev) +STUB( + "H89+F+AQ4Nk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEE7add_refEv) +STUB("H896Pt-yB4I", sceAmprCommandBufferWriteKernelEventQueue_04_00) +STUB("H8AprKeZtNg", _Stderr) +STUB("H8Dp8lwh8QQ", glUniform4f) +STUB("H8KVeCoTFeQ", _ZN7WebCore15HTMLLinkElement14setCrossOriginERKN3WTF10AtomStringE) +STUB("H8Ntl4Bm1K8", _ZThn152_NK7WebCore8Document6originEv) +STUB("H8S62po9mYM", _ZN3sce3pss4core8graphics14NativeGraphics20AllocateSystemMemoryEjj) +STUB("H8TYC6jUOxM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEEC1EPNS2_10LibContextE) +STUB("H8U6orIrfzg", _ZN3JSC10Identifier4fromERNS_2VMEi) +STUB( + "H8YYw26YNsI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEE11release_refEv) +STUB("H8cQuFAzgU4", _ZN3sce7Toolkit2NP2V28Presence7Request11SetPresenceC1Ev) +STUB("H8ck5HzoHyY", + _ZN3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession12setSessionIdEPKc) +STUB( + "H8cn48BWv-Q", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEED1Ev) +STUB("H8mJyVVAiOA", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetBoolean8Ev) +STUB( + "H8n8eLcz26w", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetBoolean1Ev) +STUB("H8rCuVuhMOc", mono_btls_x509_verify_param_get_depth) +STUB("H8rNrDvHhVY", _ZN7WebCore11DisplayList8DrawRectD1Ev) +STUB("H8rrKGteMnA", ucnv_extInitialMatchToU_67) +STUB("H8t5nwtjE7o", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE5clearEv) +STUB("H8teLntGkWs", sceVideoOutRemoveBuffer) +STUB("H8ufT+mZDyM", GetMediaPlaybackInfo) +STUB("H8wG9Bk-nPc", sceNpAuthDeleteRequest) +STUB( + "H8xrMgJtk0I", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("H8ya2H00jbI", sin) +STUB("H98NR3TRB+g", _ZN9Inspector22InspectorDebuggerAgent15didRunMicrotaskEv) +STUB("H9A4YognTPU", mono_aot_System_Numericsplt) +STUB("H9Atnn27DDQ", _ZNK3WTF8JSONImpl5Value12toJSONStringEv) +STUB("H9CREnB62Lo", _ZNK7WebCore5Range9firstNodeEv) +STUB("H9FTtSJuK3Y", sceVideoOutSysResetZoomBuffers) +STUB( + "H9LPDRr+YHM", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM23AccessibilityProperties7CheckedEEEN3WTF8OptionalIT_EERKNS6_6StringE) +STUB("H9RRA3+Ow28", _ZNK7WebCore19BlurFilterOperationeqERKNS_15FilterOperationE) +STUB( + "H9RbjogD+00", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEdeEv) +STUB("H9TOtqlqmHM", FcPatternFilter) +STUB("H9V5-dRsnXI", _ZN3sce2Np9CppWebApi13InGameCatalog2V520ContainerRatingCountD1Ev) +STUB("H9VH6VZBsSY", sceVideoCoreInterfaceSetFunctionTableExt) +STUB("H9bwCsWw7LA", cairo_mesh_pattern_curve_to) +STUB("H9d5-BJUf-k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEED2Ev) +STUB("H9dlkTGyCMc", _ZN7WebCore11DisplayList22BeginTransparencyLayerD0Ev) +STUB("H9hFHYFmT6A", _ZNK7WebCore4Node11isEqualNodeEPS0_) +STUB("H9kEqtoTXGs", _ZN7WebCore19JSDOMMatrixReadOnly14finishCreationERN3JSC2VME) +STUB("H9kJybk7-NA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEEaSERKS7_) +STUB( + "H9kRqk5Kb-s", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE3endEv) +STUB("H9llogdwvjQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEEC1EPKS6_) +STUB("H9lpugbKV5U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEaSERKS7_) +STUB( + "H9mBVykpTHY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEppEi) +STUB("H9vHkdES8OE", + _ZN7WebCore22EmptyFrameLoaderClient26shouldUseCredentialStorageEPNS_14DocumentLoaderEm) +STUB("HA1Ldbi3lPY", sceUltSemaphoreTryAcquire) +STUB("HA2IEgsyebU", _ZNK7WebCore12SharedBuffer4sizeEv) +STUB( + "HA5dJhA7v1I", + _ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead23unsetSupportedPlatformsEv) +STUB("HA9E2aOVFWc", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData12unsetifMatchEv) +STUB( + "HAAl6-rDNLU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEptEv) +STUB("HAJOooeViqw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEEC1ERS6_) +STUB( + "HAMLGvq8kqM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEE7add_refEv) +STUB("HASl4yI9dwE", _ZN4Manx8X509cinf7versionEv) +STUB( + "HAT6DHzVIOk", + _ZZSt9MakefacetISt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEESt8_LocinfoERT_T0_E3buf) +STUB( + "HAT7GAPn4ps", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEC1Ev) +STUB( + "HATp80TkxeI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEEC1ERKSA_) +STUB("HAYM4T9AB7A", _ZN7WebCore9HTMLNames10nowrapAttrE) +STUB("HAZeNLuiGFY", GCC_except_table555) +STUB("HAbNcbgkyrk", ucnvsel_serialize_67) +STUB( + "HAcEf0UsWM0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("HAfbPkozGjI", _ZNK7WebCore16HTMLImageElement25hasEditableImageAttributeEv) +STUB("HAgSIq7b2U0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE8copyFromERKS7_) +STUB("HAiWUEwEfGo", sceLoginDialogGetStatus) +STUB( + "HAmRaFJN1oI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEptEv) +STUB("HAr740Mt9Hs", sceHmdInternalMmapGetSensorCalibrationData) +STUB("HAxW6DIwYBU", _ZN3JSC9constructEPNS_14JSGlobalObjectENS_7JSValueERKNS_7ArgListEPKc) +STUB( + "HAzQR0wRKU8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEED2Ev) +STUB("HB0pGjN75DY", _ZN12video_parser16cVideoContentMp419releaseMetaInstanceEPNS_10iVideoMetaE) +STUB("HB27YbLPkU4", _ZNK3JSC8JSObject8toStringEPNS_14JSGlobalObjectE) +STUB("HB406sTEdyM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEE11release_refEv) +STUB("HB57CbhjcLw", sceDebugReadEvent) +STUB("HB5ddDjK+Lc", _ZN12video_parser17cVideoProfilerMp410initializeEv) +STUB("HB6rCHl8fMs", _ZN3WTF6StringC1EPKDs) +STUB( + "HB9YEI2W3fM", + _ZNK3WTF8JSONImpl10ObjectBase9getObjectERKNS_6StringERNS_6RefPtrINS0_6ObjectENS_13DumbPtrTraitsIS6_EEEE) +STUB("HBA-tCWUXP8", sceShellCoreUtilPreNotifyOfSharePlay) +STUB("HBEICuPh5r4", scePerfTraceEnable) +STUB( + "HBP-AXD9hoM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEEdeEv) +STUB( + "HBQGeNlrDzw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEptEv) +STUB( + "HBQIAp4xwMU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEE11release_refEv) +STUB("HBWarJFXoCM", CERT_extractSerialNum) +STUB( + "HBaMh7x1vsc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEEC1ERSA_) +STUB("HBdr-hevL5E", AnnotatePCQPut) +STUB( + "HBhAuTlMK50", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEC2EPS8_) +STUB("HBkUky2PZPA", sceKernelCloseSema) +STUB( + "HBlLYbtai0g", + _ZN8meta_gen11MsvPromoter27setKeyValue_TBLAVC_DurationENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB("HBmQvWiq4pg", WKDictionarySetItem) +STUB( + "HBmrpoDGE6Y", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB( + "HBqSW+65IEM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEC1ERS7_) +STUB("HBqaZUMi6wU", SSL_CIPHER_get_name) +STUB("HBsPvq47HNA", sceKernelSetDipsw) +STUB("HBvsEAbjkLg", _ZN3JSC7Symbols36GeneratorResumeModeNormalPrivateNameE) +STUB( + "HBy6G6Kg3o0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEE5resetEPS8_) +STUB( + "HC3YGaD8Emw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEEC1ERSA_) +STUB("HC5iwpmehr8", mono_aot_Sce_Vsh_GriefReportStorageunwind_info) +STUB("HC8vbJStYVY", at_quick_exit) +STUB("HCB1auZdcmo", _ZNSt10filesystem16_Last_write_timeEPKc) +STUB( + "HCBJrafmCOk", + _ZN9Inspector20DOMBackendDispatcher13highlightNodeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("HCBMosgePkw", _ZN7WebCore21NetworkStorageSession21defaultStorageSessionEv) +STUB("HCD46HVTyQg", sceNetCtlConnectConfIpcInt) +STUB("HCDMZrzAEXs", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching6WorldsEED1Ev) +STUB( + "HCHItuHfFpI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEC2Ev) +STUB("HCM1EwLWQf8", _ZNK7WebCore16HTMLMediaElement5endedEv) +STUB( + "HCNRMaapuRk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("HCOb-FMNF18", _ZN7WebCore21MediaRecorderProviderdaEPv) +STUB("HCT7t94m4Fo", _ZN3sce7Toolkit2NP2V212EventsClient12EventDetails5resetEv) +STUB("HCUhvdmryuQ", sceRegMgrDrvDataClose) +STUB("HCX2n+I6XnI", sceVrTrackerGetResourceInfo) +STUB("HCYsekMO4e4", _ZN7WebCore5Event9initEventERKN3WTF10AtomStringEbb) +STUB("HCa8i3qeQ1U", _ZN3JSC8DebuggernaEm) +STUB("HCkarS8lSU0", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEED2Ev) +STUB( + "HCpXo+sx0xY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEE7get_refEv) +STUB("HCqUPyoAZqw", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V115CompetitionTypeEEptEv) +STUB( + "HCtnm9nQBTo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEneERKS9_) +STUB( + "HCytjP1sjnU", + _ZN3sce2Np9CppWebApi7Matches2V120RemovedPlayerFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_13RemovedPlayerEEE) +STUB( + "HCzNCcPxu+w", + _ZZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8_GetmfldERS3_S5_bRSt8ios_basePwE4_Src) +STUB("HD+IPUl76Hs", curl_easy_cleanup) +STUB( + "HD-UV895Edc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEneERKS9_) +STUB("HD1YKVU26-M", sceAvPlayerPostInit) +STUB("HD6f9VfDe1s", ulpInit) +STUB( + "HD6lesEV7GE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEC1EPKS8_) +STUB("HD9vSXqj6zI", _FXp_subx) +STUB( + "HDBaXEUcJR4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE4sizeEv) +STUB( + "HDEeXzcSMzQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE6resizeEj) +STUB("HDF0+N4Hjhk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEC2ERKS7_) +STUB( + "HDGGH3bZJQc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE4sizeEv) +STUB( + "HDGUB4ZH-Ns", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEEptEv) +STUB("HDMHJ9zsCFg", scePlayerReviewDialogClose) +STUB( + "HDNAYRTHrPA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEE11release_refEv) +STUB( + "HDPrJ-Ua6OE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEC1EPS8_) +STUB( + "HDR85PvYfmo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEC2EPS8_) +STUB("HDR9zkTEoJ4", _ZNK7WebCore20ResourceResponseBase8mimeTypeEv) +STUB("HDRkIEPgcMI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEptEv) +STUB("HDSXTb38UlQ", _ZN3WTF8JSONImpl5ValueC1Ei) +STUB("HDU7JAwRLvk", uloc_getBaseName_67) +STUB("HDXDWS6jfSc", mono_aot_platformunbox_trampoline_addresses) +STUB( + "HDeZL1fsvWg", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsers35setxPSNSESSIONMANAGERNONPSNCALLERIDEPKc) +STUB( + "HDecDLDKqw4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEneERKS9_) +STUB("HDjIl2Orp6k", _ZN7WebCore4Page16setCanStartMediaEb) +STUB( + "HDkBnvj83H0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEmmEv) +STUB( + "HDko7k5PnhM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC1ERKSA_) +STUB("HDlD-xE1Xuk", sceVrTracker2ResetLocalCoordinateWithPose) +STUB("HDmPAKg4yH8", S1hi) +STUB("HDnBZ+mkyjg", _ZGVNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE) +STUB( + "HDnItyT5UOc", + _ZN7WebCore21SerializedScriptValueC2EON3WTF6VectorIhLm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEESt10unique_ptrINS2_IN3JSC19ArrayBufferContentsELm0ES3_Lm16ES4_EESt14default_deleteISA_EE) +STUB("HDnXvar5Wj0", YGNodeGetInstanceCount) +STUB("HDvFM0iZYXo", __atomic_exchange_2) +STUB( + "HDyA7yg3FfQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEED1Ev) +STUB( + "HE0Yyuvq2OE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE17getNpWebApi2ReqIdEv) +STUB( + "HE5nHpp5-fY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEEdeEv) +STUB( + "HE6vC8yPbUk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEE21intrusive_ptr_sub_refEPS7_) +STUB("HE7f8hdRLc0", _ZN3sce7Toolkit2NP3Sns9Interface13postMessageFbERKNS1_15SnsPostFacebookE) +STUB("HE8VNl2+1Fw", sceMatMemoryPoolBatch) +STUB("HE93dr-5rx4", sceGameLiveStreamingScreenTerminate) +STUB( + "HEBxolpZWP8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE10setContextEPNS2_10LibContextE) +STUB( + "HEKSxzmT6h4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEC2Ev) +STUB( + "HEOlwniUvog", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEmmEv) +STUB("HEUJxyOmSyM", mono_aot_Sce_Vsh_VoiceMsg_VoiceMsgWrapperjit_code_end) +STUB( + "HEVchwWj+DY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("HEaJwYQw2Xs", WKPluginSiteDataManagerGetTypeID) +STUB("HEdLKMssW34", _ZN7WebCore21JSCSSStyleDeclaration9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("HEeXBdgvJI4", _ZN3sce2np9HttpTransC2EP16SceNpAllocatorEx) +STUB("HEhfkkn7Oyw", _ZN3JSC7Symbols44AsyncGeneratorStateAwaitingReturnPrivateNameE) +STUB("HEnTXfreIvM", _ZN3JSC20PromiseDeferredTimer17hasPendingPromiseEPNS_17JSPromiseDeferredE) +STUB( + "HEo6yqMeXGc", + _ZN7WebCore9FontCache13fontForFamilyERKNS_15FontDescriptionERKN3WTF10AtomStringEPKNS_18FontTaggedSettingsIiEENS_34FontSelectionSpecifiedCapabilitiesEb) +STUB( + "HEoI8fpUPLo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEmmEv) +STUB("HErjm1riB-w", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container9unsetSkusEv) +STUB( + "HF18bUxw3S8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEEcvbEv) +STUB("HF1DRnNs0uk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE8pushBackERKS6_) +STUB( + "HF2YDw+e3Hs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEdeEv) +STUB( + "HF3Vzc154sM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEEdeEv) +STUB("HF3YllT3mXU", sceAgcDriverSubmitMultiAcbs) +STUB("HF7lK46xzjY", pthread_mutexattr_destroy) +STUB("HFA1p9qRRLw", _ZN3sce7Toolkit2NP2V210Tournament20OneVsOneMatchDetails8deepCopyERKS4_) +STUB( + "HFFJAV05HP4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEmmEv) +STUB("HFHlNjdbknA", _ZN13MsvMetaEditor9readFileXEjPv) +STUB("HFIXBmlQmXI", glBlendEquation) +STUB("HFKE9Vcdt7o", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V18Variable11unsetSlotIdEv) +STUB("HFM-KkVMVps", sceTextToSpeechOpenImpl) +STUB("HFNvo+lEynY", ucase_toFullFolding) +STUB( + "HFRIoMrgZQc", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeader35getxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB( + "HFSuY0TCj1Q", + _ZN3JSC26UnlinkedFunctionExecutable4linkERNS_2VMERKNS_10SourceCodeESt8optionalIiENS_9IntrinsicE) +STUB("HFVG5V43-io", fuse_fs_fgetattr) +STUB( + "HFXzZJQKQfk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEC2ERS7_) +STUB("HFaF1BclnSo", WKPageGetContentsAsMHTMLData) +STUB("HFcQl9TMcFQ", sceNpEntitlementAccessAbortRequest) +STUB("HFd-lpjGxJA", sceUltUlthreadYield) +STUB("HFekJVl58XU", g_ptr_array_sized_new) +STUB("HFhlACkXqNw", _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBodyD2Ev) +STUB("HFmKB6CKa6A", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10setString9EPKc) +STUB("HFtbbWvBO+U", sceLibcHeapMutexCalloc) +STUB("HFws8ku--Aw", _ZN7WebCore8Settings18setMinimumFontSizeEi) +STUB("HFxRr3-fCPc", _ZN9Inspector28InspectorScriptProfilerAgentdaEPv) +STUB("HGA2SV-Gkq8", sceSystemServiceIsGameLiveStreamingOnAir) +STUB("HGDKKtTRpog", sceDebugNoStopOnDLLoad) +STUB( + "HGDKssqdPfY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEE7get_refEv) +STUB( + "HGDO4lITyC4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEEC1ERKSA_) +STUB( + "HGGb71oERVw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEE3getEv) +STUB("HGJK4r+WQFg", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V219WebApiErrorResponseC2EPNS1_6Common10LibContextE) +STUB( + "HGLKnP+0iEo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "HGLbSTtwU1M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEED2Ev) +STUB("HGM8nun6vjw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEEC2ERKS6_) +STUB( + "HGQWVqwU2Fo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEED1Ev) +STUB( + "HGTNe98Tths", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEED1Ev) +STUB( + "HGU4-tgpmbU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "HGVxMYfG08s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEE11get_deleterEv) +STUB("HGZ0DTuCvuQ", + _ZNK3sce3Xml3Dom8Document20getElementsByTagNameENS1_6NodeIdEPKNS0_6StringEPNS1_8NodeListE) +STUB("HGiG9r2w3Zw", _ZNK7WebCore12ChromeClient25shouldPaintEntireContentsEv) +STUB( + "HGqVuA-v4TA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEmmEv) +STUB( + "HGqmRjXSkWY", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification18NewGameDataMessageEE19setCustomReturnCodeEi) +STUB("HGtDYp4ddNE", FcConfigCreate) +STUB( + "HGvQXkDuFX4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEmmEv) +STUB("HGx1Op+9DZI", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_14TrophyGameInfoEE3getEv) +STUB("HGxgXwGSAzQ", sceRegMgrLogStart) +STUB( + "HH+XO5ckiBw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "HH-pvuw2v10", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE4sizeEv) +STUB("HH-sRSNiSaU", hb_ot_layout_script_get_language_tags) +STUB("HH0YCx+Kgf4", rgctx_fetch_trampoline_rgctx_39) +STUB("HH1QicGw220", mono_aot_Sce_Vsh_BackupRestoreUtilunbox_trampolines_end) +STUB("HH3KJFVK2Kg", _ZN9Inspector25NetworkFrontendDispatcherdaEPv) +STUB("HH3vHgAU9iM", _ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamRankResult8deepCopyERKS4_) +STUB("HH4lrxyRkro", mono_aot_System_Reactive_Coreunbox_trampoline_addresses) +STUB("HH8uEbhmUbg", SSL_use_PrivateKey_ASN1) +STUB("HH9QG2J5eoI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEED1Ev) +STUB("HHIM-14wEes", mono_aot_Sce_Vsh_Np_Trophyunbox_trampolines_end) +STUB("HHJl--Po-1Y", rgctx_fetch_trampoline_mrgctx_85_p) +STUB("HHKtLpzPl4A", mspace_reallocalign) +STUB( + "HHLMFjjEbW4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEED1Ev) +STUB( + "HHMVTjBTGNA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEE7get_refEv) +STUB("HHPwnrCX3cU", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData12getaccountIdEv) +STUB( + "HHQwieUvA3Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE8copyFromERKS9_) +STUB("HHVYizU41fY", + _ZN3sce2Np9CppWebApi11UserProfile2V125GetBasicPresencesResponse8fromJsonERKNS_4Json5ValueE) +STUB("HHVZLHmCfI4", _ZTSPh) +STUB( + "HHX25jSGnJU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE10setContextEPNS2_10LibContextE) +STUB("HHY+Jr-aBEg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEppEv) +STUB( + "HHaucqQ7S5A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEE11get_deleterEv) +STUB( + "HHbaZGNn2Eo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEE3getEv) +STUB("HHkTUhfZGdo", _ZNK3sce2np14JsonNumberImpl3GetEPl) +STUB("HHkWewj6ikw", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEEixEm) +STUB( + "HHkwt852N5E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE6resizeEj) +STUB("HHnnPwUh7oM", _ZN3WTF12refIfNotNullI6_cairoEEvPT_) +STUB("HHo1BAljZO8", sceGnmDisableMipStatsReport) +STUB("HHx-tF5nNvE", WKPreferencesGetDNSPrefetchingEnabled) +STUB( + "HHx2OWEWKKQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE3endEv) +STUB( + "HI+uTLTFpTg", + _ZN3sce2Np9CppWebApi14SessionManager2V161PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_54PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEE) +STUB( + "HI03Ro2yHG8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "HI3hVc7T2D8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE4sizeEv) +STUB( + "HI4KqGUlOUc", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSession9terminateEv) +STUB("HI4N2S6ZWpE", scalb) +STUB("HI5k3d99Br4", mono_aot_System_Resources_ResourceManagermethod_addresses) +STUB( + "HI5v9nQUjqg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "HIEF94Rclb4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEC1Ev) +STUB("HIImy8uMSUg", sceVisionManagerRequestStoreCameraImgY) +STUB("HIO82JX-Ki4", scePerfTraceGetMemoryStats) +STUB("HIS17RbBqtA", coil_gethostbyaddr) +STUB( + "HIUH6bp3NNk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEC2Ev) +STUB("HIUdjR-+Wl8", sceFontStyleFrameGetEffectWeight) +STUB("HIWq9DRwkyc", _ZN3JSC8Bindings13RuntimeObject15createPrototypeERNS_2VMERNS_14JSGlobalObjectE) +STUB( + "HIYRdLyw2Yw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEC2Ev) +STUB("HIhqigNaOns", _Inf) +STUB( + "HIjezqCqIfY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEmmEi) +STUB( + "HIkwgAuwsAo", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser8setlimitEi) +STUB("HImvLVPw6oM", _ZN3JSC12JSLockHolderC2EPNS_2VME) +STUB("HIoPdOf0ylg", _ZN7WebCore11MemoryCache18pruneDeadResourcesEv) +STUB( + "HIp-WUW+hk4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEE7add_refEv) +STUB("HIr-aSrUlxw", _ZN3sce7Toolkit2NP2V29Messaging7Request28GetGameDataMessageAttachmentD2Ev) +STUB("HIrgQNzR7JU", _ZNK7WebCore4Page9groupNameEv) +STUB( + "HItO8EAAoL8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEC2Ev) +STUB("HIuzOncLbiw", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku18originalPriceIsSetEv) +STUB("HIvX5HS+SRg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS3_5EmptyEED2Ev) +STUB("HIwEvx4kf6o", sceAppMessagingSendMsgToShellCore) +STUB("HIxbMe6Ovi0", mbst) +STUB("HIynUewxYHA", _ZN7WebCore7cookiesERNS_8DocumentERKNS_3URLE) +STUB( + "HIzktHO8SlI", + _ZN7WebCore14SecurityPolicy22generateReferrerHeaderENS_14ReferrerPolicyERKNS_3URLERKN3WTF6StringE) +STUB("HJ+KnEHcaxI", sceKeyboardOpen) +STUB( + "HJ0QvgugaxI", + _ZN7WebCore16BlobRegistryImpl27populateBlobsForFileWritingERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16EEERNS2_INS0_18BlobForFileWritingELm0ES4_Lm16EEE) +STUB("HJ1n138CQ2g", sceSslDeleteConnection) +STUB("HJ3vdF4LmxM", _ZN7WebCore16MIMETypeRegistry15canShowMIMETypeERKN3WTF6StringE) +STUB( + "HJ4hR9rhoZQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEE11release_refEv) +STUB("HJ60TvRrnOU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10CategoriesEE3setEv) +STUB("HJ8GpRT1aiw", _ZN3sce4Json5ArrayD1Ev) +STUB( + "HJ8veJlCIV8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE8capacityEv) +STUB( + "HJ9TT0xGp4s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEE7add_refEv) +STUB("HJFAd2piPpA", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody9getOffsetEv) +STUB("HJFP+q84cmM", _ZN7WebCore15GraphicsContext10strokeRectERKNS_9FloatRectEf) +STUB("HJK-E0zrL9Y", _ZNK7WebCore10ScrollView22contentsScrollPositionEv) +STUB( + "HJMKfig0dls", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEneERKS9_) +STUB("HJMS5pu4dvY", sceDbgKeyboardReadState) +STUB("HJNBnuiBHr0", mono_domain_get_by_id) +STUB("HJPM+fd267g", _ZNK3sce2Np9CppWebApi6Common8IteratorIdEneERKS4_) +STUB("HJQorhtNWoc", _Z20Ime_KbdGetInfoNativemjRN3sce11playstation4core3Ime15ImeKeyboardInfoE) +STUB( + "HJTzzhFQd8g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "HJWtnwEvyko", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEE7add_refEv) +STUB( + "HJbcue7sDt0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEC1EPS6_PNS2_10LibContextE) +STUB("HJc1J6Apg9A", + _ZN3sce2Np9CppWebApi14SessionManager2V118LeaderWithOnlineId8fromJsonERKNS_4Json5ValueE) +STUB( + "HJkkvmeKq5g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEppEi) +STUB( + "HJnMLMuKYkw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEED2Ev) +STUB("HJosRn4GUxs", sceNpStopApp) +STUB("HJshvcn63K4", _ZN10Deprecated25ScriptCallArgumentHandlernwEm) +STUB("HJt+4x-CnY0", sceNetConfigDelArp) +STUB("HJwsIXNRlos", mono_aot_appmethod_addresses) +STUB("HJxnIyN+xFk", _ZN3sce7Toolkit2NP2V210Tournament10TournamentC2ERKS4_) +STUB("HJyZ8CZGVoY", sceSysUtilSendSystemNotificationWithTextRelatedToUser) +STUB("HJz9ZIS7gQI", _ZThn136_N7WebCore16HTMLMediaElement5pauseEv) +STUB( + "HJzgQVwBPhg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEC1EPS8_) +STUB("HK-7ir0qAkg", sceContentExportFromFileWithTitleIdList) +STUB("HK0XarL0FJ0", _ZN9Inspector38ScriptProfilerBackendDispatcherHandlerC2ERKS0_) +STUB("HK0gjeXo2eo", u_strFindLast) +STUB("HK42UWvTsRE", sceVencCoreQueryMemorySizeEx) +STUB("HK9nVxuq2qU", _ZN3NTF21URLRequestFileMessage6createEv) +STUB( + "HKAsBSaOdsU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEE5resetEPS6_) +STUB("HKGLeuWrAvs", sceGpuExceptionAddDebuggerHandler) +STUB("HKHJsLAyXKA", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setBoolean7ERKb) +STUB( + "HKI32TUjrvk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE8capacityEv) +STUB("HKIa-WH0AZ4", sceNetMemoryAllocate) +STUB( + "HKNLNiIM8TY", + _ZN7WebCore32WorkerThreadableWebSocketChannelC2ERNS_17WorkerGlobalScopeERNS_22WebSocketChannelClientERKN3WTF6StringERNS_14SocketProviderE) +STUB("HKQJY7aViYI", _ZN7WebCore22EmptyFrameLoaderClient23createNetworkingContextEv) +STUB( + "HKQYk5Bypgw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEEaSERKSA_) +STUB("HKZmLmGfkd4", sceLncUtilNotifyCoredumpRequestProgress) +STUB( + "HKg0cUj4hkU", + _ZN7WebCore8Document16createTreeWalkerERNS_4NodeEmON3WTF6RefPtrINS_10NodeFilterENS3_13DumbPtrTraitsIS5_EEEEb) +STUB("HKh4UIbMSeA", _ZN3sce7Toolkit2NP2V210Tournament6EventsC1Ev) +STUB("HKjYBSCx3mY", cairo_scaled_font_get_font_matrix) +STUB("HKl8qYMHUxs", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToCancelTicket9terminateEv) +STUB("HKlxqXa8a6Y", uprv_isNegativeInfinity_67) +STUB( + "HKmeHsngYAw", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB( + "HKoIypYkD3A", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEixEm) +STUB("HKqPSVj9DAo", upropsvec_addPropertyStarts_67) +STUB("HKsrg+sJBp4", YGNodeStyleGetPadding) +STUB("HKu68cVzctg", sceUserServiceSetAccessibilityZoom) +STUB( + "HKvh-Md23Ec", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEC2EPS6_PNS2_10LibContextE) +STUB( + "HKvztOTitWc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEppEv) +STUB("HKzMOsNZfbg", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_25ChallengeBinaryDataResultEEC1Ev) +STUB("HL-venrRcnQ", sceNpLookupNetDeleteRequest) +STUB("HL11bLUWN4g", sceNpRemotePlaySessionSignalingGetLocalNetInfo) +STUB( + "HL46jWIBhc8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEmmEv) +STUB("HLDcfGUMNWY", __subdf3) +STUB( + "HLI8kKI-Dn4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEED2Ev) +STUB("HLIjDSWSsHM", _ZN3sce7Toolkit2NP2V210Tournament14RegisteredUserC1ERKS4_) +STUB("HLLPd3SKqcw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119SubtaskAvailabilityEEC2EPS6_) +STUB("HLQfohD2YuE", sceNpManagerIntAccountId2UserId) +STUB("HLUSF4Oi7Pc", scePthreadTimedjoin) +STUB("HLewWCB7FWA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEED1Ev) +STUB( + "HLhjqvTDDOM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEEC1ERKS9_) +STUB( + "HLjJwksDE8E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("HLqXAx0lmUs", __Fail_s) +STUB( + "HLsS3rDJumw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEE3getEv) +STUB("HLwz1fRIycA", sceNpTrophyGetGameIcon) +STUB( + "HM-P-1QRyOw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEmmEi) +STUB( + "HM-gv3A1Iz0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEC2Ev) +STUB( + "HM1ORzVC2uc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("HM22unUzzGI", g_ptr_array_remove_index) +STUB("HM2shAIRvv4", sceUserServiceGetSaveDataAutoSync) +STUB("HM4DjXIBtGA", mono_aot_System_ServiceModel_Webjit_code_start) +STUB("HM5P36b7Ldo", _ZNK7WebCore6Editor30applyEditingStyleToBodyElementEv) +STUB( + "HM6-FaBXwHE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("HM8MCmQ6pAI", mono_config_for_assembly) +STUB( + "HMDfNwkwTiE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEED1Ev) +STUB("HMEQbrlRmL0", ScePsmMonoConfigParse) +STUB( + "HMEvP18jwH4", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "HMIeQqMyKok", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEC1EPKS8_) +STUB("HMRMLOwOFIQ", _Atomic_store_4) +STUB("HMSEiFcus9U", _Z37sceGpuDebuggerEnableTargetSideSupportv) +STUB("HMSfP0oCnvY", _ZN3JSC19HeapSnapshotBuilderC1ERNS_12HeapProfilerENS0_12SnapshotTypeE) +STUB("HMUN7HgM5Mo", Java_java_lang_StrictMath_exp) +STUB( + "HMV2htOE-RA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB("HMVWQXv-hH4", _Mbstate2) +STUB("HMW6e2WoQPs", mono_aot_Sce_Vshunwind_info) +STUB("HMX8NtsKaC4", _ZN9Inspector28DOMStorageFrontendDispatcherC2ERNS_14FrontendRouterE) +STUB( + "HMXEt5F8K0s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEC2ERKS7_) +STUB("HMcNe70D9TI", FT_Vector_Polarize) +STUB("HMdZ6uhGCFM", unum_getTextAttribute_67) +STUB( + "HMhyPIsjGuA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE4sizeEv) +STUB( + "HMmRR1Lvifc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE5clearEv) +STUB("HMnVBVUyajk", sceAgcDriverIsPaDebug) +STUB("HMsW4rK7x18", mono_type_get_desc) +STUB("HMv4KFyL5os", sceBgftServiceIntUploadSetUploadError) +STUB( + "HMvOMX9+yT0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEE11release_refEv) +STUB("HMvaHoZWsn8", sceNetCtlApRpStartConf) +STUB( + "HN4MTcnccAU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEC1Ev) +STUB( + "HN4il55xbWA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEplEm) +STUB("HN556OqArfI", coil_get_native_thread_id) +STUB( + "HN5mLHUh6JI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEmmEi) +STUB( + "HN8MvfCT-Us", + _ZN9Inspector20DOMBackendDispatcher10removeNodeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("HNDOY53U1VU", + _ZN3sce7Toolkit2NP3TSS9Interface7getDataEPNS1_9Utilities6FutureINS1_7TssDataEEEb) +STUB("HNHso8Nb0GM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEEC2Ev) +STUB("HNJUerldoxg", _ZN7WebCore15JSSVGSVGElement9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "HNMRyeCXUuc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEED1Ev) +STUB( + "HNMbgs32WLc", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi11setDataInfoEiRKNS4_22ParameterToSetDataInfoERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS4_26SetDataInfoResponseHeadersEEEEE) +STUB("HNNNIyL293s", _ZN3WTF15defaultLanguageEv) +STUB("HNNh2LCUgVA", + _ZN3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayerC1EPNS1_6Common10LibContextE) +STUB("HNPiZwOB9mU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEixEm) +STUB("HNRCEumA2V8", sceDbgAmprAmmGetErrors) +STUB("HNTSSfhy2tE", _ZN7WebCore5Range14isPointInRangeERNS_4NodeEj) +STUB("HNX6U3ERdRI", sceCesUtf32beToEucCn) +STUB("HNbQyWI-BtU", sceBluetoothHidParamInitialize) +STUB( + "HNbmjRyTSCE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEneERKS9_) +STUB( + "HNdkomKSjCk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEmmEv) +STUB( + "HNenjdtPDHU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB("HNg0VHXQrZM", + _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody18setUpdatedDateTimeERK10SceRtcTick) +STUB("HNi1EDPUzuM", Java_java_awt_FlushThread_flush) +STUB( + "HNij1-aIpSQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEED1Ev) +STUB("HNnWdT43ues", swscanf) +STUB("HNqKgfsfJ2A", GCC_except_table336) +STUB( + "HNqknqWLsHA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("HNsuYKFGO5k", mono_trace_set_print_handler) +STUB( + "HNyRocgZH2Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEE5resetEPS9_) +STUB( + "HO6HHZBJ0hQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEE7get_refEv) +STUB( + "HOFnioT-Tkg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE21intrusive_ptr_sub_refEPS9_) +STUB("HOJB+6dHSNM", YGNodeNew) +STUB("HOOe-g7LcDI", _ZN3WTF7RunLoop8dispatchEONS_8FunctionIFvvEEE) +STUB("HORX-1XW8ag", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13FriendsOfUserEEC1ERKS4_) +STUB("HOSnwjsiZMk", sceSystemServiceAppGetAppInstallStatus) +STUB("HOcDtKImf0Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEE5resetEPS6_) +STUB( + "HOgPN87n1yM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEptEv) +STUB("HOgeYd40G5E", scePssMusicPlayerSetLoopFramePos) +STUB("HOirJ44YRZo", _ZN8meta_gen17CommonFsOperation13storeFileSizeEv) +STUB("HOjCRclP1Lw", _ZN7WebCore27PlatformMediaSessionManager18processWillSuspendEv) +STUB("HOo5sHjlhNI", Java_java_io_RandomAccessFile_getFilePointer0) +STUB( + "HOrrsSMAAqE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEmmEi) +STUB("HOvB4DFVZlI", mono_aot_Sce_Cdlg_Platformjit_code_start) +STUB( + "HP3440g3wh8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEE7add_refEv) +STUB("HP4jsVYqBKg", _ZN3sce2np9LocalFileC2Ev) +STUB( + "HP8SW4M3xpQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEneERKS9_) +STUB( + "HP9HNLxF4f0", + _ZN3sce2Np9CppWebApi14SessionManager2V113PlayerSession9setMemberERKNS1_6Common12IntrusivePtrINS3_33ResponsePlayerSessionMemberPlayerEEE) +STUB("HPGLb8Qo6as", _LDivide) +STUB("HPGzZzZTcNY", _ZN3sce7Toolkit2NP2V210Tournament7BracketD2Ev) +STUB("HPKQqF68JGw", _ZN7WebCore4Node12replaceChildERS0_S1_) +STUB( + "HPQ4sBDpk7Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "HPWTrvPduu8", + _ZN7WebCore15JSDOMWindowBase24moduleLoaderImportModuleEPN3JSC14JSGlobalObjectEPNS1_9ExecStateEPNS1_14JSModuleLoaderEPNS1_8JSStringENS1_7JSValueERKNS1_12SourceOriginE) +STUB("HPbF7sy2B9I", _ZN3sce2Np9CppWebApi7Matches2V122RequestPlayerStatistic8getStatsEv) +STUB( + "HPd4h-ERJUg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB( + "HPd58+XdDIQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEmmEi) +STUB( + "HPdDMxsa9eg", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V145SetMultiVariablesRequestBody_variablesFactory7destroyEPNS3_38SetMultiVariablesRequestBody_variablesE) +STUB( + "HPeYP9scjvE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEE7get_refEv) +STUB( + "HPisyaq3L-g", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser10getslotIdsEv) +STUB( + "HPjP81uCEVQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE5clearEv) +STUB("HPlmfRhMWwo", _Unwind_GetTextRelBase) +STUB("HPmUq28fuMk", _ZN3WTF6StringC1EPKhj) +STUB( + "HPmvUjvCA1I", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("HPnyGlR0v7Q", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119NatConnectivityFromD2Ev) +STUB("HPpz-oyX4vM", sceVdecCoreInitializeComputeResource) +STUB("HPvwGbCjCMA", sceCesIso2022JpUcsProfileSetSbcs) +STUB("HPw11phYb4g", sceCesUtf8ToUhc) +STUB( + "HPx6LeMFKIo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "HQ1+McfhhIM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEppEv) +STUB("HQ6DCQrAXD4", uloc_addLikelySubtags) +STUB( + "HQ6Dr9tz6io", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEE3getEv) +STUB("HQAa3rCj8ho", _ZGVNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE) +STUB("HQBM6-F+iI8", _ZN3sce2Np9CppWebApi7Matches2V126RequestTeamMemberStatistic11setPlayerIdEPKc) +STUB("HQG4dukHWHo", _ZNK3JSC7JSValue19synthesizePrototypeEPNS_9ExecStateE) +STUB("HQMDEdrkt1E", _ZN3sce2Np9CppWebApi7Matches2V15ErrorC2EPNS1_6Common10LibContextE) +STUB( + "HQMgtRf-qk0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "HQMr9K6VRAM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEeqERKS9_) +STUB( + "HQNXENwgHzU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEEptEv) +STUB("HQOwnfMGipQ", sceNetErrnoLoc) +STUB("HQVp5LgdQDY", _ZN3sce7Toolkit2NP2V27Session7Request22GetReceivedInvitationsD1Ev) +STUB( + "HQYUwdoobdo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEC2Ev) +STUB("HQadBg0DDN0", _ZN3sce7Toolkit2NP2V28Matching12Notification11RefreshRoomC2Ev) +STUB( + "HQayaNjjt4w", + _ZN9Inspector13AgentRegistry27didCreateFrontendAndBackendEPNS_14FrontendRouterEPNS_17BackendDispatcherE) +STUB("HQbgeUdQyyw", _ZNSt7collateIwEC2Em) +STUB( + "HQeQ4lIdGVs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("HQgBJvkdrfA", _ZN9JITBridge20shutdownFromCompilerEPS_b) +STUB("HQhHNsQc7wk", _ZN3NTF17URLRequestMessageD2Ev) +STUB( + "HQj4pWT5hZ0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE7popBackEv) +STUB( + "HQjJuMOL7fw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEeqERKS9_) +STUB( + "HQkde9GYBVM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEE7get_refEv) +STUB("HQuVAZvKqlY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEC1ERS7_) +STUB("HQyBEpH4h+E", d2i_OCSP_RESPONSE) +STUB( + "HQyKciuFBAc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEEC2EPS5_PFvS7_EPNS2_10LibContextE) +STUB("HR0Ks7kSkUY", JSValueMakeFromJSONString) +STUB("HR3YQ2AyLLc", _ZTVN15AbstractStorage15FacebookContentE) +STUB( + "HR57-RrsxwI", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats20setConnectionQualityERKNS1_6Common12IntrusivePtrINS3_17ConnectionQualityEEE) +STUB( + "HRA2g9hOiTk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEED2Ev) +STUB("HRBeLG106ww", _ZN3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate12unsetNatTypeEv) +STUB("HRDHLMA9Y7s", sceBgftServiceIntDownloadStartTask) +STUB("HRDq-RDIGmI", sceKernelBeginAppMount2) +STUB("HRFf-IW+9h4", _ZN7WebCore26IdentityTransformOperationD0Ev) +STUB( + "HRKAVx+C-74", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeaderC2ERS5_) +STUB( + "HRLtyJx-mX8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "HRWgJODnHJw", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToSetMultiVariablesByUserC1ERS5_) +STUB("HRX1iyDoKR8", sceHttpSetAcceptEncodingGZIPEnabled) +STUB("HRXjUojlG70", sceLncUtilGetParentSocket) +STUB( + "HRYATiATbnI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEptEv) +STUB( + "HRcVStTocg8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEE11release_refEv) +STUB("HRddUJkLioA", rgctx_fetch_trampoline_rgctx_110_p) +STUB("HRh5Em+vtJw", ucpmap_get_67) +STUB("HRkYAo+HK5w", WKConnectionPostMessage) +STUB( + "HRnb1Ind72Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE5clearEv) +STUB( + "HRnsujVxWOk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEneERKS9_) +STUB("HRpZp6CCUcM", _ZN9Inspector21DOMFrontendDispatcher17attributeModifiedEiRKN3WTF6StringES4_) +STUB("HRuqgFnBD60", JSValueCreateJSONString) +STUB( + "HRvCLR9kbkE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEC1EPS6_PNS2_10LibContextE) +STUB("HRvr0-VWwEo", _ZN8meta_gen13TiffRetriever14ProcessNextIFDENS_3ifdE) +STUB("HRwqg1GDJyQ", _ZNK7WebCore18PlatformTimeRanges5startEj) +STUB("HRyNHoAjb6E", sceGnmIsCoredumpValid) +STUB( + "HRypua9xlMI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEED2Ev) +STUB("HS0m+kyKMKc", WKContextSetCustomWebContentServiceBundleIdentifier) +STUB("HS0z4LDx5eI", ScePsmMonoJitExec2) +STUB( + "HSN8XtBDL00", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEEptEv) +STUB("HSQ3lpRwL2E", _ZN7WebCore13MediaStrategyD0Ev) +STUB("HSR5o9hELHs", sceMusicCoreServerSetAudioVolume) +STUB("HSY0-IPlV4k", _ZN9Inspector21InspectorConsoleAgent16takeHeapSnapshotERKN3WTF6StringE) +STUB( + "HSbRimKZeFY", + _ZN7WebCore15JSDOMWindowBase23promiseRejectionTrackerEPN3JSC14JSGlobalObjectEPNS1_9ExecStateEPNS1_9JSPromiseENS1_27JSPromiseRejectionOperationE) +STUB("HScPSffm6P0", il2cpp_is_vm_thread) +STUB("HSdW4PMnibU", utrie2_open_67) +STUB("HSg1UUjLCvs", _ZN7WebCore12JSAudioTrack13visitChildrenEPN3JSC6JSCellERNS1_11SlotVisitorE) +STUB("HSgGzRi+yIU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEE11release_refEv) +STUB("HSh8IJaDD7o", _ZN3sce2np4NpId5ClearEv) +STUB("HSkPyRyFFHQ", _ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev) +STUB( + "HSmw7UUvbs4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi23getMultiVariablesBySlotEiRKNS4_34ParameterToGetMultiVariablesBySlotERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_29GetMultiVariablesResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("HSnL1FGsY4I", __cxx_global_var_init .29) +STUB("HSxmGAOnwrI", _ZN7WebCore9HTMLNames6varTagE) +STUB( + "HT+P531qWOs", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB( + "HT-kkLQ312c", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V124BandwidthUpstreamMetrics18getConfidenceScoreEv) +STUB("HT1udTT8fB8", sceNpTrophySystemWrapRemoveTitleData) +STUB("HT5RnWbzRwc", _ZN3WTF13MetaAllocator19isInAllocatedMemoryERKNS_14AbstractLockerEPv) +STUB("HT6WH6yQxO0", rgctx_fetch_trampoline_rgctx_92_p) +STUB("HT8ovS-O+qI", _ZNK7WebCore11MediaSample15isNonDisplayingEv) +STUB("HT8qWOTOGmo", sceHmdDistortionGetCorrectionCommand) +STUB("HTB1uUwgSVQ", cairo_mesh_pattern_line_to) +STUB( + "HTIZBwIY6d0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE7popBackEv) +STUB( + "HTOow7mTv0Q", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119BandwidthPropertiesC1EPNS1_6Common10LibContextE) +STUB("HTQKxIObCrs", sceTsGetStreamInfo) +STUB("HTRRfCDmV7E", _ZN7WebCore8Gradient12addColorStopEfRKNS_5ColorE) +STUB( + "HTTZ++HJ9bY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE3endEv) +STUB( + "HTi72TdpV0E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEppEv) +STUB("HTpFP1m31J8", _ZN7WebCore17ParsedContentType6createERKN3WTF6StringENS_4ModeE) +STUB( + "HTpPn4-Vp5Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("HTq-wlWnajA", _ZN23sceMetadataReaderWriter13ParserManager10initializeEv) +STUB("HTrcDKlFKuM", sceMsgDialogClose) +STUB( + "HTuX3QAwoVA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEEaSERSA_) +STUB( + "HTvWmf9D5yk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEEaSERKSA_) +STUB("HTxb6gmexa0", seteuid) +STUB( + "HU+-n01vwH0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB( + "HU-6QxP6Tz0", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "HU11UODh-JA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("HU3yzCPz3GQ", _ZNSt15_Num_float_base9is_moduloE) +STUB( + "HU6cysaUOoQ", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEEiRNS2_10LibContextEPT_m) +STUB("HU8BLk0sUe0", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_16SessionAttributeEEC2ERKS4_) +STUB("HUARhdXiTD0", sceFontGraphicsTextureMakeFillTextureImage) +STUB("HUBt2NGnRf4", _ZN9Inspector17ScriptDebugServer34notifyDoneProcessingDebuggerEventsEv) +STUB( + "HUCFK8h6dS4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEEcvbEv) +STUB("HUH2pIVwBXM", _ZN3sce7Toolkit2NP2V23TUS25AtomicAddToAndGetVariable8deepCopyERKS4_) +STUB("HUJrYWYhhwo", uset_span_67) +STUB("HULvHeesi0Y", _ZN3sce7Toolkit2NP10IdDatabaseD1Ev) +STUB("HUT9FHGWIas", _ZN23sceMetadataReaderWriter13ParserManager13requestParserEii) +STUB("HUbZmOnT-Dg", atan2) +STUB( + "HUdcdrfVn-0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEmmEi) +STUB("HUejyiZ9CnM", _ZN7WebCore9HTMLNames17aria_readonlyAttrE) +STUB( + "HUlK8DV1fcQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("HUq8WYkwAP4", _ZN3sce7Toolkit2NP2V27Session11InvitationsD2Ev) +STUB( + "HUsiH+pUPEI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE8copyFromERKS9_) +STUB("HUtRZ9lkwqI", _ZN3WTF11Persistence5CoderISt5arrayIhLm20EEE6decodeERNS0_7DecoderERS3_) +STUB("HUuwDWJu9Ac", _ZN3sce2Np9CppWebApi7Matches2V117ResponseMatchTeam9setTeamIdEPKc) +STUB( + "HV+Rmzng1R4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE21intrusive_ptr_add_refEPS7_) +STUB( + "HV-GlRFOJ4k", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEptEv) +STUB("HV3hA9XLITE", _ZNK3WTF9MediaTime14hasDoubleValueEv) +STUB( + "HV47WGnDlDo", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_17ActivityFeedStoryENS1_15AppSTLAllocatorIS5_EEEEC2Ev) +STUB( + "HV5ZbBXRy8k", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("HV7HZmJquy4", _ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody12getSubmitterEv) +STUB("HVAa744ecdw", scePlayGoPrefetchOptionalChunk) +STUB( + "HVBR9dQxqC0", + _ZN9Inspector20DOMBackendDispatcher14highlightFrameElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "HVDX5cIlq6o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEC2EPS6_PNS2_10LibContextE) +STUB("HVG22Xup244", _ZN3sce7Toolkit2NP2V23TUS25AtomicAddToAndGetVariableC2ERKS4_) +STUB( + "HVJfFq-d85o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEppEi) +STUB( + "HVKPCah7GPU", + _ZN9Inspector31ScriptProfilerBackendDispatcherC2ERNS_17BackendDispatcherEPNS_38ScriptProfilerBackendDispatcherHandlerE) +STUB("HVL+1QItYTA", + _ZN8meta_gen14ImageRetriever12SetValueDataEPKcPNS_14ImageMetaValueEPiP10KeyValue_tb) +STUB("HVN14qaLReQ", + _ZN7WebCore27ScrollingStateScrollingNode26setRequestedScrollPositionERKNS_10FloatPointEb) +STUB( + "HVQpB1Y8Gcc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEneERKS9_) +STUB("HVSaZbxYi2s", FT_Realloc) +STUB("HVTfSNXNkDM", _ZN3sce2Np9CppWebApi14SessionManager2V110FromMember12setAccountIdERKm) +STUB("HVYC-jaEOM4", + _ZN7WebCore14SchemeRegistry49registerURLSchemeAsBypassingContentSecurityPolicyERKN3WTF6StringE) +STUB("HVa5FLC0xuI", _ZN3sce7Toolkit2NP18GetUserNewsRequestC1Ev) +STUB( + "HVgT1afwgHc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEED2Ev) +STUB("HVgWmGIOKdk", sceNpWebApiRegisterNotificationCallback) +STUB("HViyoC+c0no", g_slist_concat) +STUB( + "HVq2jyEdFNg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEE7get_refEv) +STUB("HVq72tQLj2k", _ZN3sce7Toolkit2NP2V26Trophy16TrophyPackTrophy8deepCopyERKS4_) +STUB( + "HVwOHqFWcFc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEED1Ev) +STUB("HW0dx8g3GnU", _ZN3WTF9MediaTime12setTimeScaleEjNS0_13RoundingFlagsE) +STUB( + "HW5+lsvt4Dk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEEC1Ev) +STUB("HWBJOsgJBT8", __atomic_fetch_sub_1) +STUB("HWE+M24Pgkg", _aot_register_finalizer) +STUB("HWEOv0+n7cU", mergesort) +STUB( + "HWJpYxIR0oE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEneERKS9_) +STUB( + "HWKbFvDSqJo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEdeEv) +STUB( + "HWOIqk8iU3c", + _ZN7WebCore10ScrollView5paintERNS_15GraphicsContextERKNS_7IntRectENS_6Widget25SecurityOriginPaintPolicyEPNS_18EventRegionContextE) +STUB( + "HWPf+WqdD6Y", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE11getResponseERSB_) +STUB( + "HWQwK2WdfXE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("HWRP4l2b7pE", WKBundleResourceLoadStatisticsNotifyObserver) +STUB( + "HWReSt5YXHw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEppEv) +STUB("HWV6QbT5HDU", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_17ActivityFeedStoryEEneERKS4_) +STUB("HWZd3fXbPio", WKAuthenticationChallengeIsInMainFrame) +STUB("HWcfdLiowwM", _ZN7WebCore7IntRect9intersectERKS0_) +STUB("HWhvb-bEWy0", _ZNK3JSC17DebuggerCallFrame12functionNameEv) +STUB( + "HWslWvCKluo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEEcvbEv) +STUB( + "HWsseflvJEU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEC1Ev) +STUB("HWuVga4APvA", _ZNK3JSC12DateInstance26calculateGregorianDateTimeEPNS_9ExecStateE) +STUB( + "HWw5SgIgI84", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEptEv) +STUB("HWxHOdbM-Pg", sceRtcGetCurrentRawNetworkTick) +STUB( + "HWzqJIwpNHE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEEC1Ev) +STUB("HX0tOqBqRlE", YGExperimentalFeatureToString) +STUB("HX1OC8XEKPQ", _ZN3sce2Np9CppWebApi13InGameCatalog2V55Image6setUrlEPKc) +STUB( + "HX24U9Q8Er0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("HX5524E5tMY", sceCameraGetWhiteBalance) +STUB("HX6U0A9ppmM", mono_install_unhandled_exception_hook) +STUB( + "HX9RO6Jnvik", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("HX9slXuFM5c", WKPageSelectFindMatch) +STUB( + "HXDOAS+POXU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB("HXHx7QB4GsQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEED2Ev) +STUB( + "HXJwzYPpOsI", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities8setlimitEi) +STUB( + "HXKmMsfhZdI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE8capacityEv) +STUB( + "HXYq037QzpQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEC1EPS8_) +STUB("HXc9paDU7vM", _ZNK7WebCore23ScaleTransformOperation1zEv) +STUB("HXdJL6yxg3c", mono_aot_Sce_Vsh_MimeTypejit_code_end) +STUB("HXdJuV30E8Q", sceClHttpDeleteTemplate) +STUB("HXdgZL4aG4U", il2cpp_gchandle_new) +STUB("HXjZAjwPJG0", _ZN3sce7Toolkit2NP2V26Friend15FriendsOfFriendaSERKS4_) +STUB("HXrogCTDubI", xmlFree) +STUB("HXymib4T8gc", sceAmprAmmWaitCommandBufferCompletion) +STUB( + "HXzMvelTtMs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE5clearEv) +STUB("HXzjK9yI30k", sceVideoOutAddFlipEvent) +STUB("HY0-+bRqLho", _ZN3sce7Toolkit2NP2V211UserProfile9NpProfileC1Ev) +STUB("HY3RafoMFks", _ZN3sce7Toolkit2NP2V210Tournament7Request19GetRegisteredRosterC2Ev) +STUB("HY6bZLf09XA", _ZN3JSC19HeapSnapshotBuilder23setWrappedObjectForCellEPNS_6JSCellEPv) +STUB( + "HY8ixyhUPFs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE4sizeEv) +STUB( + "HY9sa7cgarI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEC2EPS8_) +STUB( + "HYBRojOyv4s", + _ZN3sce2Np9CppWebApi13InGameCatalog2V516PublisherFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_9PublisherEEE) +STUB( + "HYCMyLzgjyE", + _ZN7WebCore15JSSVGSVGElementC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_13SVGSVGElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB("HYDApQYDgcI", + _ZN15AbstractStorage14YoutubeStorage7IsExistERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("HYFSl8uM4GI", + _ZN7WebCore25TextureMapperBackingStore25calculateExposedTileEdgesERKNS_9FloatRectES3_) +STUB("HYFgF7xrf8M", sceFsDevpfsWaitEvent) +STUB("HYGJpCWrRbc", mono_image_get_name) +STUB( + "HYHqtDjdCw4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEC2Ev) +STUB("HYL2II2G4fQ", _ZNK3WTF9MediaTime18isNegativeInfiniteEv) +STUB( + "HYMJRbCn4Hg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE3endEv) +STUB("HYMgE5B62QY", sceUserServiceSetGlsCamCrop) +STUB("HYPO0siPqNs", _ZN3sce2Np9CppWebApi6Common6VectorIiE21intrusive_ptr_add_refEPS4_) +STUB("HYXbmmRBNc8", _ZN3sce2Np9CppWebApi6Common6VectorIdE6resizeEj) +STUB("HYcBDdfNsxI", mono_jit_exec) +STUB("HYezwOU4-4c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEEmmEv) +STUB("HYf37c5fzxo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEEC1EPS5_PFvS7_EPNS2_10LibContextE) +STUB("HYgtW9iS5Fk", HMAC) +STUB( + "HYreXVVjmUI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE8capacityEv) +STUB("HYte4xhyK9w", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110PlayerTypeEEppEv) +STUB("HYwqB4wv0kw", + _ZNK3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer12natTypeIsSetEv) +STUB("HYyGDuk-j3k", _ZN7WebCore8SVGNames10onzoomAttrE) +STUB("HYz9i0PIHWs", _ZNK7WebCore10StorageMap7getItemERKN3WTF6StringE) +STUB("HYzkJb41fcE", sceKernelWriteMultiMapWithGpuMaskIdCommand) +STUB("HZ0Welds7e0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEEptEv) +STUB( + "HZ0WgcxvM4g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEED2Ev) +STUB( + "HZ1gm1qkKgU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE6insertENS2_13ConstIteratorIS9_EERKS9_RSC_) +STUB("HZ2ih547n5Y", _sceDepthSetCameraFactoryCalibrationData) +STUB( + "HZ42V-ED0to", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13boolean2IsSetEv) +STUB("HZ91VeepRC4", sceVideoCoreSetInitializeInfo) +STUB( + "HZB-tgI0S98", + _ZN9Inspector17ScriptDebugServer12sourceParsedEPN3JSC14JSGlobalObjectEPNS1_14SourceProviderEiRKN3WTF6StringE) +STUB( + "HZBo+pl1z1E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEppEv) +STUB("HZFv+Ur-OLw", _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead9getMemberEv) +STUB( + "HZLibglP8bg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEE11get_deleterEv) +STUB("HZMcVNu9oqk", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V18Variable24unsetLastUpdatedDateTimeEv) +STUB("HZO7xOos4xc", sceKernelGetModuleInfoInternal) +STUB( + "HZOTQ7ymmvU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEC2EPNS2_10LibContextE) +STUB("HZPRG8FmMc4", _ZN7WebCore21NetworkStorageSession27permitProcessToUseCookieAPIEb) +STUB( + "HZRr6wrdSG4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEEC1ERSA_) +STUB( + "HZSwiGws3qY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEppEi) +STUB( + "HZWGfqaSufo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEmmEv) +STUB( + "HZdN6ko7lrM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("HZj+-pkSU3E", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE6resizeEj) +STUB( + "HZkAdkqRS7E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE6resizeEj) +STUB("HZlXPT46bsM", _ZN3NTF6ThreadD1Ev) +STUB( + "HZnIvQOv6lE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE10setContextEPNS2_10LibContextE) +STUB( + "HZp4c4nRSZ4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE5beginEv) +STUB("HZvInRgsr8M", _ZN7WebCore8Document24setShouldCreateRenderersEb) +STUB( + "Ha3NB4ZVPaE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEED1Ev) +STUB("Ha876NZobao", __asan_load1) +STUB("Ha8E-qWvyWc", _ZN7WebCore22HTMLFormControlElement15setAutocompleteERKN3WTF6StringE) +STUB("HaI8g79+OOA", sceDebugGetModuleList) +STUB("HaJZszqZGWU", _ZN3JSC12HeapVerifier12validateCellEPNS_8HeapCellEPNS_2VME) +STUB( + "HaLOZPCHpuM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEED2Ev) +STUB("HaPexYqovlM", mono_aot_Sce_CloudClient_App_Platformmethod_addresses) +STUB("HaRTbSYC+rw", _ZN7WebCore8SVGNames16stop_opacityAttrE) +STUB("HaTX20lT6No", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEC1Ev) +STUB("HaWSmfYQX0M", _ZN3WTF9MediaTimedaEPv) +STUB("HaYgXvIjhuo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEE11get_deleterEv) +STUB("HabmgqPwPw0", sceAgcDcbContextStateOp) +STUB("Habqtw0NHUI", _ZN3JSC29getUint8ClampedArrayClassInfoEv) +STUB("HadVExFjsog", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEEC2Ev) +STUB( + "HakGGq3GwfA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB( + "Haodxvi4RVI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE3endEv) +STUB("HaphP42WhtQ", _ZNK7WebCore10TimeRanges5startEj) +STUB("HarYYlaFGJY", sceUsbdClose) +STUB("HaxT3P6YcO8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEC2Ev) +STUB("HayURMHMcKY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEEC1EPS6_) +STUB("Hb3ioKymYSg", uprv_dlsym_func_67) +STUB("Hb3ytAC6Dmw", mono_aot_ReactNative_Components_Vshunwind_info) +STUB("Hb45BVZ1WVQ", xmlSAX2EndDocument) +STUB( + "Hb7hweQsfQc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("Hb978OISvRE", monoeg_g_hash_table_lookup_extended) +STUB("Hb9HWFKo9F4", sceUltReaderWriterLockLockRead) +STUB( + "HbA3GmWEl2c", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE8capacityEv) +STUB("HbAX1cSb+hw", sceImeBackendSetConvertMode) +STUB("HbAbmkmvAOo", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEEC1EPS6_) +STUB( + "HbJ342YtS1w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEC1EPNS2_10LibContextE) +STUB("HbOKtj27KvM", _ZN3sce7Toolkit2NP9Utilities10FutureImpl7waitForEj) +STUB("HbQcVg6C5vc", monoeg_g_markup_parse_context_parse) +STUB("HbRSpVkdVF0", sceKernelDebugRaiseExceptionWithInfo) +STUB("HbbM72T9icI", _ZN15AbstractStorage12LocalContentC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("Hbf1gqTGmiU", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEEppEi) +STUB("HbfdxoUWpyI", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadDataD2Ev) +STUB( + "Hbg5v66b5Fg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEC2EPS8_) +STUB( + "HblIt+4MbRs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEEdeEv) +STUB("HblNi06Y6UI", _ZN3WTF7Unicode18convertUTF16ToUTF8EPPKDsS2_PPcS4_b) +STUB("HbxYY27lK6E", sceAudio3dAudioOutOutputs) +STUB( + "Hc2dofrAHZI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "Hc3B+uBBKlo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE8capacityEv) +STUB( + "HcB443FVfXs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE3endEv) +STUB("HcFfRJ-2NkA", JVM_GetClassAccessFlags) +STUB( + "HcGj6v+Z0Lg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEC1EPKS8_) +STUB("HcJ03wiUPm4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS19FriendsDataStatusesEED2Ev) +STUB( + "HcLOU6VBKRw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "HcLmHooPjoU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEE11release_refEv) +STUB( + "HcW40AG6-gU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEE3getEv) +STUB("Hca1vaS6z+o", mono_metadata_parse_param) +STUB("HcbIPAn1o3g", sceWorkspaceMirrorBarrier) +STUB( + "HcdLy-IOk6I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("HciaSIulWeo", _ZN3sce3Job10JobManagerC2Ev) +STUB("Hclp1skpfRU", u_locbund_getNumberFormat_67) +STUB("HcnHBUxWpgU", _ZN3sce7Toolkit2NP2V27Ranking8TempRankC1Ev) +STUB( + "Hcp7gK-GJ-E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEC2EPS8_) +STUB("HcpmBnY1RGE", _FDint) +STUB( + "HcuV5mJnIHY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEEC2EPNS2_10LibContextE) +STUB("Hcukgmlncpk", _ZN7WebCore11MediaPlayer18mediaEngineUpdatedEv) +STUB("Hd0roeFay9w", _ZN3sce7Toolkit2NP2V23TUS7Request20GetFriendsDataStatusD2Ev) +STUB("Hd2fZvS+3Ag", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEC2Ev) +STUB("Hd5Hvjttlps", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEdeEv) +STUB( + "Hd6JXPAaCOM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEC2Ev) +STUB("Hd6X+4Sysik", _ZN12video_parser16cVideoContentMp419getOperatorInstanceEPPNS_14iVideoOperatorE) +STUB("Hd77FYTTkwE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEEC2ERKS5_) +STUB("Hd7DOz4Bih8", _ZN7WebCore14MicrotaskQueueC2ERN3JSC2VME) +STUB("Hd8mUObediA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEEmmEv) +STUB( + "Hd9GvAMwTbg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("Hd9cvQ9rZq0", _ZN8meta_gen11MsvPromoter26retrieveMovieThumbnailInfoEPKc) +STUB("HdE+dwXD45U", _ZN7WebCore22strictCSSParserContextEv) +STUB("HdE77Kv1w0E", _ZTVN7WebCore28InspectorFrontendClientLocal8SettingsE) +STUB( + "HdFOZo9WWtk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEcvbEv) +STUB( + "HdIrJs8maeo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEC2Ev) +STUB("HdL8UX2RHxA", scePlayReadyCdmiGetKeySystem) +STUB("HdLOeAYX9+Q", mono_aot_Sce_Vsh_ShareServerPostWrapperunbox_trampolines_end) +STUB( + "HdTtGsjgzP8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "HdUdU7QGV4g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEmmEi) +STUB("Hdc3DSIsG2I", _ZN3sce4Json5Array8iteratorC2ERKS2_) +STUB( + "HdfZzEPmlnk", + _ZN9Inspector15ScriptArgumentsC1ERN3JSC9ExecStateEON3WTF6VectorINS1_6StrongINS1_7UnknownEEELm0ENS4_15CrashOnOverflowELm16EEE) +STUB( + "HdhDexEBHlQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEixEm) +STUB("HdhVMYBcZfo", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEED2Ev) +STUB("Hdm6rO0xlnw", sceKeyboardDisconnectPort) +STUB("Hdn98gghSNc", uprv_maximumPtr) +STUB("HdqkxFL0nGo", _ZN9Inspector18InspectorHeapAgentdlEPv) +STUB("HdqqKULykYw", _ZN3sce7Toolkit2NP2V26Trophy7Request13SetScreenshot17INVALID_TROPHY_IDE) +STUB("Hdr9YKG0Y28", Java_java_lang_Float_intBitsToFloat) +STUB("He3luzgOL-w", sceDbgGetDebugSuspendCount) +STUB( + "HeBPhimMnfs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEEC1ERKSA_) +STUB("HeBwePMtuFs", _ZNKSt8messagesIcE7do_openERKSsRKSt6locale) +STUB("HeDIXZsguvA", _ZN3sce7Toolkit2NP2V28Presence7Request11SetPresenceD1Ev) +STUB("HeEnbCBzHvc", _ZN3NTF17URLRequestFileJobD1Ev) +STUB( + "HeLZykLter8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE8pushBackERKS8_) +STUB("HePAPRigVQg", udata_swapDataHeader_67) +STUB( + "HeSaQKwrY+Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("HeTyl3dKJxs", _ZN7WebCore12BlobRegistryD2Ev) +STUB("HeUvmw2JBD0", + _ZN3JSC17MarkingConstraint20prepareToExecuteImplERKN3WTF14AbstractLockerERNS_11SlotVisitorE) +STUB("HeZDG4Nsf8s", _ZN3sce7Toolkit2NP2V24Core11RequestBaseD2Ev) +STUB("HeZzL2xbRJY", sceShellCoreUtilGetRunLevel) +STUB("HedUSy9swaw", sceVshAvcapGetInfo) +STUB("HefQQVTQj34", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEE11get_deleterEv) +STUB("Heg3MWrCcdc", _ZN7WebCore8SVGNames9onendAttrE) +STUB("Heh4KJwyoX8", posix_spawn_file_actions_addclose) +STUB("Hera0SLzgyY", _ZN7WebCore12ChromeClientC2ERKS0_) +STUB("Het7UaL5QvI", _ZN7WebCore11MediaPlayer34seekableTimeRangesLastModifiedTimeEv) +STUB( + "Heui1aDSo68", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEaSERKS9_) +STUB( + "Hex-a8KoZLI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEEC1ERS9_) +STUB("Hf+v9bM1guY", _ZN3WTF14FileSystemImpl12truncateFileEix) +STUB("Hf8hPlDoVsw", __muldi3) +STUB("HfEGUzuya18", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18GameCustomDataItemEED2Ev) +STUB( + "HfHQ1iGXUV4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEE7add_refEv) +STUB("HfKQ6ZD53sM", _Atomic_signal_fence) +STUB( + "HfKQWVeemjM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEE3getEv) +STUB("HfKZzf2Bgk0", _ZNK3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer14getCustomData1Ev) +STUB( + "HfMwoADzuNs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEEaSERKSA_) +STUB("HfQTiMSCHJk", sceUserServiceSetGlsIsFacebookEnabled) +STUB( + "HfR1qd6EM+Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "HfX4L7GsocE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB( + "HfZl1V5g+O8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB( + "HffSVg4nz4w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEE11release_refEv) +STUB( + "HfidnvM-qmE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEEC2ERSA_) +STUB( + "HfnTwwuLjAI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEC1Ev) +STUB( + "Hfol65PZ+0k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEaSERS7_) +STUB("Hfq8eeKXP-A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEppEv) +STUB("HfwSYBY9ybg", WKBundleFrameCopyName) +STUB("Hg0C1dM+D0M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEdeEv) +STUB("Hg0GBcA80dk", _ZN15AbstractStorage4ItemdlEPv) +STUB("Hg1im-rUeHc", _ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1ERKSt8_Locinfom) +STUB("Hg5BvQMX4mE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEEC1EPNS2_10LibContextE) +STUB( + "Hg5fkpQ91js", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEC2EPNS2_10LibContextE) +STUB( + "Hg9CeX7-Lu4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEED2Ev) +STUB("HgFRO6Upsg4", curl_mime_name) +STUB( + "HgI+jR7PqCU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEC2ERS7_) +STUB("HgIUF7ZI63M", rootapprox) +STUB("HgP0GoWJtAQ", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEEixEm) +STUB("HgPSJ1kcnHM", sceMbusEventCallbackFuncsInit_) +STUB("HgPiXeD6iK8", _ZN7WebCore11HTMLElement12setInnerTextERKN3WTF6StringE) +STUB( + "HgRj9oePsXU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEmmEv) +STUB( + "HgT6Yedxbd0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEmmEv) +STUB( + "HgVoGCDCCjI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEED1Ev) +STUB("HgX7+AORI58", sceKernelAioSubmitReadCommands) +STUB("HgXd0wLL-UA", sceIduUtilReboot) +STUB("HgZIJ7KjSjI", u_vsscanf_u_67) +STUB("HgZqXiZCK24", ucnv_fromUnicode_UTF8_OFFSETS_LOGIC_67) +STUB( + "HgdqjUsjvhw", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEiRNS2_10LibContextEPT_m) +STUB( + "HgglfkwHrTs", + _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product29setContentInteractiveElementsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_25ContentInteractiveElementEEEEE) +STUB("Hgtgx8Br4IM", __tsan_get_report_thread) +STUB( + "HgweHs-aio8", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersC2ERS5_) +STUB("Hh+5bs44RNM", WKPreferencesGetAnimatedImageAsyncDecodingEnabled) +STUB("Hh-yx9qeRqM", + _ZN3sce2Np9CppWebApi14SessionManager2V130RequestGameSessionMemberPlayer10getPlayersEv) +STUB( + "Hh0B2beidfs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEE5resetEPS8_) +STUB( + "Hh1+CciL6RE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB( + "Hh4d05g2RiI", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("Hh99STc+Yso", _ZN7WebCore9HTMLNames24aria_multiselectableAttrE) +STUB("HhAxSe0AxGc", cff_cmap_unicode_class_rec) +STUB("HhBo--ix7Lg", sceShellCoreUtilStartPsNowGame) +STUB("HhF0bzKlhjM", ScePsmMonoJitParseOptions) +STUB("HhGAQ+ffliw", sceKernelDeleteEport) +STUB( + "HhII0rjCc5o", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEplEm) +STUB("HhKQodH164k", _ZN3sce2np4UserD0Ev) +STUB( + "HhUyIxhT6MM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEE5resetEPS6_) +STUB("HhV2Og-Q+yA", _ZN7WebCore18ImageBufferBackend13sinkIntoImageENS_18PreserveResolutionE) +STUB("HhYP4z0eMJM", _ZThn8_N6WebKit12ChildProcessD1Ev) +STUB("HhapY9S36NY", udat_adoptNumberFormat_67) +STUB("Hhe4ZDzNjR4", mono_aot_Sce_Vsh_VrEnvironmentjit_got) +STUB("HheeSB140oA", _ZN7WebCore9HTMLNames7abbrTagE) +STUB( + "Hhgp7Ksf6pM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEC2EPS8_) +STUB("Hhi4XU4ZThY", _ZNSt9basic_iosIwSt11char_traitsIwEEC2EPSt15basic_streambufIwS1_E) +STUB("Hhki7ncbDjg", _ZN7WebCore11MediaPlayer7setRateEd) +STUB("HhkynyrWvFw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE7popBackEv) +STUB( + "HhlFAdjhyRU", + _ZN3sce2Np9CppWebApi14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBody16unsetInvitationsEv) +STUB( + "Hhlum6vuXUo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEEC2ERSA_) +STUB( + "Hhmm33LFE94", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEEC1ERSA_) +STUB("Hhmu86aYI1E", sceNpServiceClientTerm) +STUB( + "Hhrv8X3nw2g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEEdeEv) +STUB( + "HhtP7YR11IY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("HhtuEAftVvk", _ZN3sce2np3ipc14service_client12BeginRequestEii) +STUB("HhyDCyUZAGE", + _ZN7WebCore18JSHTMLImageElement15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "Hhz2ojxUe7U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEmmEv) +STUB( + "Hi1WTqwZIa0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEED2Ev) +STUB("Hi3onqHSN6M", sceNpSnsFacebookDialogOpen) +STUB("Hi4r2WYrMdk", _ZNK3sce7Toolkit2NP9Utilities6FutureI13SceNpOnlineIdE17getAdditionalInfoEv) +STUB("Hi9Fjg-rBTc", usearch_reset_59) +STUB( + "HiBGHS04gqc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEE5resetEPS6_) +STUB("HiKjianFW0c", _ZNK3JSC7JSValue9toIntegerEPNS_14JSGlobalObjectE) +STUB( + "HiL6QlU0jfY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("HiOrhyJTPEA", _ZN3sce2Np9CppWebApi14SessionManager2V131ResponseGameSessionMemberPlayerD2Ev) +STUB("HiWaBTUw+4c", _ZN3sce7Toolkit2NP2V23TUS7TusDataaSERKS4_) +STUB("HiYd+o5nvW4", _ZN12video_parser18cMp4FFLHndlManager14getFF4TrefHndlEjj) +STUB("HibOtezzT6M", sceVideoOutCursorIsUpdatePending) +STUB( + "HidVSBhMHPM", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitationsD1Ev) +STUB("HiehcAiEDCc", WKContextClearVisitedLinks) +STUB("HiiZOtEj+V4", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle17unsetPerFranchiseEv) +STUB( + "HitMamX+gHU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEEC1Ev) +STUB( + "HiyGzpGVU+8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEC1EPNS2_10LibContextE) +STUB("Hj+LNdBr5fg", _ZN3JSC2VM30moduleNamespaceObjectSpaceSlowEv) +STUB( + "Hj0aoAVQel8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEC2EPS8_) +STUB( + "Hj1JDA4AF+E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEE11release_refEv) +STUB( + "Hj1RDgscHqA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEED2Ev) +STUB("Hj31N2JSU2M", ubrk_refreshUText) +STUB("Hj3d3tyRIpY", wctype_tab) +STUB("Hj3klsYNFCU", _ZN7WebCore6Editor20canSmartCopyOrDeleteEv) +STUB("Hj4eWnDektQ", sceAgcDriverSetupRegisterShadow) +STUB("Hj5XAm2bfd0", log2e) +STUB( + "Hj6Z2I24k64", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEEaSERKSA_) +STUB( + "Hj7+Vk2hDEk", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V324ValidationConstraintInfoC2EPNS1_6Common10LibContextE) +STUB( + "HjFMjZsRlW8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEmmEv) +STUB( + "HjIpHPp6ZTU", + _ZN7WebCore15JSFetchResponseC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_13FetchResponseENS6_13DumbPtrTraitsIS8_EEEE) +STUB("HjJvp8fMoRM", _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V16RatingD1Ev) +STUB( + "HjLroYdM0Qo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEdeEv) +STUB( + "HjMOzo1hGts", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("HjP7xGsP+fY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEC1ERKS7_) +STUB("HjS-hWzdVyw", _ZN3WTF13MetaAllocator18debugFreeSpaceSizeEv) +STUB("HjVPfi0omIY", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead14getCustomData1Ev) +STUB("HjZKTNaHsv0", _ZN12video_parser10cVideoPath21StandardizePathStringEPcPS1_) +STUB("HjbL1QMKb7Q", _ZN10MsvUpdater11getFileSizeEmPl) +STUB("HjhPNUX3UO8", _ZN7WebCore18PlatformPasteboardC2ERKN3WTF6StringE) +STUB("HjlABSyLzNg", FcPatternGetFTFace) +STUB("HjmOQPiuspU", JSObjectDeletePrivateProperty) +STUB( + "HjmQjfMb2VA", + _ZN9Inspector20DOMBackendDispatcher17setAttributeValueElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("Hjxpy28aID8", sceNetCtlUnregisterCallbackV6IpcInt) +STUB("Hk5rEKZCxE0", mono_aot_System_Netjit_code_start) +STUB("Hk7iHmGxB18", ipmimgr_call) +STUB("Hk8iQRmEvCo", _ZN3sce7Toolkit2NP2V28Commerce12SubContaineraSERKS4_) +STUB( + "HkB5TPIujPc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEC2ERS7_) +STUB( + "HkEZSBU2EyU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEE11get_deleterEv) +STUB("HkP1nzuy6bs", initialize_Jp) +STUB("HkSJXCHCQCU", FT_Reference_Face) +STUB("HkT3ygqjkCg", _ZN4IPMI6ServerD2Ev) +STUB("HkUgFhrpAD4", sceNpManagerIntGetAuthServerErrorFlag) +STUB("HkXJ7FFaQK8", sceAudioOutExGetOutputInfo) +STUB("HkXgZNMy-Sw", YGNodeStyleGetFlexDirection) +STUB("HkYCXGbS+Qs", _ZN3sce2np18HttpConnectionPool10UnregisterEPNS0_14HttpConnectionE) +STUB( + "HkYyg9sti+s", + _ZN3sce2Np9CppWebApi14SessionManager2V127PostGameSessionsRequestBodyC2EPNS1_6Common10LibContextE) +STUB( + "HkZuyhS7pm4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEEC2EPS8_PNS2_10LibContextE) +STUB("Hka9gz6FuDs", u_getPropertyValueName) +STUB( + "HkbT+otxL4s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE10setContextEPNS2_10LibContextE) +STUB("Hkm3Dfu-aW4", _ZN9Inspector22InspectorDebuggerAgent12assertPausedERN3WTF6StringE) +STUB( + "HknpRUcmqi0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEED1Ev) +STUB("Hkp7M+pJILk", cairo_get_line_cap) +STUB("HkrWkPbiP6s", _ZN3sce2Np9CppWebApi10Activities2V114UserActivities5Error16unsetReferenceIdEv) +STUB("HkuBuYhYaPg", sceUserServiceSetThemeTextShadow) +STUB( + "HkvLHXioWUU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEppEi) +STUB("Hl0w9R+ZEg4", _ZN3JSC7Symbols43asyncGeneratorFieldSuspendReasonPrivateNameE) +STUB( + "Hl2GmKPlvIk", + _ZN9Inspector15ScriptCallStackC2ERN3WTF6VectorINS_15ScriptCallFrameELm0ENS1_15CrashOnOverflowELm16EEE) +STUB("Hl458iz-luE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEEC2ERKS7_) +STUB( + "Hl7RCpqqp+Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEC1ERKS7_) +STUB("Hl8YduKcROo", ubiditransform_transform_67) +STUB("HlBFvGj3ckU", _ZN3sce2Np9CppWebApi6Common13ConstIteratorImEC2EPKm) +STUB("HlDiu7tCnh8", + _ZN3sce4Json5Value9serializeERSbIcSt11char_traitsIcENS0_8StlAllocIcEEEPFiS7_PvES8_) +STUB( + "HlHJwCrgEJk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEdeEv) +STUB( + "HlHb8LLob6o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEptEv) +STUB("HlJPUgz3lgc", sceNpUtilUtf8GetOneChar) +STUB( + "HlMp8dedzx0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEmmEv) +STUB("HlPrXSZTbS0", sceWkFontConfigGetFontPath) +STUB("HlTBv1Nlo7w", mono_security_core_clr_require_elevated_permissions) +STUB("HlTPoZ-oY7Y", sceGnmDrawIndex) +STUB("HlTxzdeueXA", _ZN7WebCore14FrameSelection9selectAllEv) +STUB("HlUauT-hotg", + _ZN15AbstractStorage15FacebookStorage9SerializeESt10shared_ptrINS_7ContentEES1_INS_4ItemEE) +STUB("HlaoRo4Ttd0", + _ZN7WebCore28convertToIntegerEnforceRangeItEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB("HldN461O2Dw", _ZN3sce2np8WorkItemC2EPKc) +STUB( + "HldZihgdrns", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEED1Ev) +STUB("HlpzPvFHtkw", mono_aot_Sce_Vsh_Thememethod_addresses) +STUB( + "HlrXr8XU-Yw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEC1EPKS8_) +STUB( + "HltBAtBTmPY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("HltDA5NKEtk", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE3endEv) +STUB( + "HlwjIo1Fsos", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEE5resetEPS9_) +STUB("HlzHlgqiBo8", scePthreadSuspendAll) +STUB("Hm169FldTsE", + _Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm13TdPerfCounterE20SceRazorGpuBroadcast) +STUB("Hm5HSXOiUr0", _ZNK3JSC7JSValue14toThisSlowCaseEPNS_14JSGlobalObjectENS_8ECMAModeE) +STUB("Hm7OSZZdfjo", _ZN4Manx9X509chainD1Ev) +STUB("Hm7qubT3b70", sceNpUniversalDataSystemCreateEventPropertyArray) +STUB( + "HmAA0DCQOlQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "HmJtgkXAwIg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEE11get_deleterEv) +STUB( + "HmNgpKIBMjo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEED2Ev) +STUB("HmQHtS5+jlQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEEC2EPS5_PNS2_10LibContextE) +STUB( + "HmVdaW4zRvc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("HmWV8JHMYm8", mono_store_remote_field_new) +STUB( + "HmatGA6y7Uw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEptEv) +STUB("HmcMLz3cPkM", _ZNSt10moneypunctIwLb1EE7_GetcatEPPKNSt6locale5facetEPKS1_) +STUB("HmdaOhdCr88", _Erf_one) +STUB("HmgKoOWpUc8", sceLibcOnce) +STUB("Hmquk4Q8zgk", mono_aot_appplt_end) +STUB( + "HmscKeiU93I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEEC1ERSB_) +STUB( + "Hmzbdbje1Zw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEppEv) +STUB("Hn+oQHUrE1M", + _ZNK7WebCore22EmptyFrameLoaderClient18cannotShowURLErrorERKNS_15ResourceRequestE) +STUB( + "Hn+zWluTQOI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE4sizeEv) +STUB( + "Hn-T0hnkwg8", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessions9terminateEv) +STUB("Hn3uYKN4eRc", mono_marshal_string_to_utf16) +STUB( + "Hn5zuZQyWiA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEEdeEv) +STUB("HnD9AnPLXJ0", _ZN3sce7Toolkit2NP2V28Commerce10DescriptorC1Ev) +STUB("HnEU93QBgkw", _ZN7WebCore16HTMLMediaElement23setWebkitPreservesPitchEb) +STUB("HnFVdtdSIN4", fuse_fs_mkdir) +STUB("HnH+6f8sU60", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V110UpdateModeEEdeEv) +STUB("HnIuDIXu7Ko", sceNpSnsYouTubeDialogInitialize) +STUB("HnJqiEMMxRI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE5clearEv) +STUB("HnLtsMPtlvI", sceHandDetectionLocal) +STUB( + "HnNP3cD23D0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("HnO9++6MtoY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS15TusDataStatusesEE5resetEv) +STUB("HnR1Ryt7Lnc", fuse_session_add_chan) +STUB( + "HnR6c2nbGEU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "HnRj+5kX8eo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEED1Ev) +STUB("HnV+y1xVP2c", sceNpPush2DeleteUserContext) +STUB("HnVgP2pQrgE", + _ZN7WebCore8Document36updateLayoutIgnorePendingStylesheetsENS0_18RunPostLayoutTasksE) +STUB("HnWRDz8K3l4", sceEsvmEngineMediaKeysSetServerCertificate) +STUB( + "HnZ39HX8Dqc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEEptEv) +STUB( + "HncryaE59Ok", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEmmEi) +STUB("HneC+SpeLwc", sceNpManagerIntDeleteRequest) +STUB("HneyXNQpPhQ", u_isgraph) +STUB("HnfoQSPjI7o", xmlByteConsumed) +STUB("HngLT8ghSjc", _ZN7WebCore19StorageQuotaManager20resetQuotaForTestingEv) +STUB( + "HngShRrV5kE", + _ZN9Inspector26InspectorBackendDispatcherC1ERNS_17BackendDispatcherEPNS_33InspectorBackendDispatcherHandlerE) +STUB( + "Hnho55B7DoY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEC1EPS6_PNS2_10LibContextE) +STUB("Hnrc4jUGrL4", audiodeccpuinternal_core_ops_dts_hd_ma) +STUB("HntZzPkuaTo", sceBgftServiceIntDownloadDebugGetStat) +STUB( + "HnyxjeNNchI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEE7get_refEv) +STUB( + "Hnz03JdIuKk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEE3getEv) +STUB("Ho1p29Wuuvk", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce19ServiceEntitlementsEE12deepCopyFromERS7_) +STUB("Ho5NVQzpKHo", sceImeConfigGet) +STUB("Ho7945yolEI", _ZN7WebCore12EventHandler30setCapturingMouseEventsElementEPNS_7ElementE) +STUB("HoLVWNanBBc", getpid) +STUB("HoNF5D0T-pk", mono_aot_Sce_Vsh_Np_AppLaunchLinkjit_code_end) +STUB("HoPC33siDD4", sceNpInt64ToStr) +STUB("HoPNIMLMmW8", sceFontGraphicsCanvasSetSurfaceFill) +STUB( + "HoQdTPvJhlg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEC1EPKS8_) +STUB( + "HoSVUe0PlfM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE6resizeEj) +STUB( + "HoSxSE9oGbI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEeqERKS9_) +STUB( + "HoTpD8+xhWc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE7reserveEi) +STUB("HoV-GJyx7YY", sceNetGetIfList) +STUB("HoXiuWuma4I", + _ZNK3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead12getSessionIdEv) +STUB( + "Hoa5PX6QgpA", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_6Canvas10ShaderTypeEEESt8optionalIT_ERKN3WTF6StringE) +STUB("HofoEUZ5mOM", CERT_rawVerifyOID2) +STUB("HohNCzDzBW0", RSA_sign) +STUB( + "HojO5G-mwXU", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB( + "HopC1fPz8SQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEdeEv) +STUB("HopnL7CuhJk", _ZNK7WebCore12NamedNodeMap14getNamedItemNSERKN3WTF10AtomStringES4_) +STUB("HoqTrkS9c5Q", sceNpMatching2SetRoomMemberDataInternal) +STUB("HorGWGukVpo", _ZN7bmalloc15IsoHeapImplBase9footprintEv) +STUB("Hotsqx1YfB0", _ZN12video_parser18cProfileCheckerMp418isPlayableSubtitleERKNS_13VpMediaInfo_tE) +STUB("How7B8Oet6k", scePthreadGetname) +STUB("Hoy0pcsXYvA", mono_install_lookup_dynamic_token) +STUB("Hp3NIFhUXvQ", sceFontGraphicsStructureDesignResource) +STUB("Hp5F2y3u8kU", _ZN3sce2Np9CppWebApi13InGameCatalog2V55ImageC1EPNS1_6Common10LibContextE) +STUB( + "Hp5aQR2E830", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEEC2Ev) +STUB( + "Hp9RCDqDZUI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEneERKS9_) +STUB("HpAlvhNKb2Y", _ZNKSt22_System_error_category7messageEi) +STUB("HpCeP12cuNY", _ZNSoD1Ev) +STUB("HpLCF06Oa0w", sceDevUsbInit) +STUB("HpTU5H3Ifn4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEdeEv) +STUB("HpTh1ncXggE", uscript_hasScript_59) +STUB( + "HpZjemVsJwc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEdeEv) +STUB( + "HpbAnMRU8Js", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEppEv) +STUB("HpgdHWqIO28", _ZN7WebCore22EmptyFrameLoaderClient19updateGlobalHistoryEv) +STUB("HpjkTSPG-LQ", sceRnpsAppMgrPushEventForShellUI) +STUB("HpqE8LZzJq0", _ZN9Inspector8Protocol8Timeline13TimelineEvent4TypeE) +STUB("Hpqigs6H3OI", _ZN4Manx11MediaPlayer15maxTimeSeekableEv) +STUB("Hq2MK40I6Lw", _ZN3sce7Toolkit2NP2V23TUS12TusVariablesC1Ev) +STUB("Hq2VRfX3OOk", sceAudioOut2LoContextPush) +STUB("Hq8zMjWpUu8", _ZNK7WebCore11RenderStyle18computedLineHeightEv) +STUB("Hq9-2AMG+ks", posix_spawnattr_destroy) +STUB("HqB+7Yqc1yw", _ZN7WebCore23ApplicationCacheStorage18vacuumDatabaseFileEv) +STUB("HqBmVIFhqAo", sceUserServiceSetGamePresets) +STUB( + "HqG2Uypw-E8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEEaSERSA_) +STUB( + "HqHtlUFXo3k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEmmEv) +STUB( + "HqOTLR+07Xo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEED1Ev) +STUB("HqOyInbNB+8", _ZN9Inspector17ScriptDebugServernwEm) +STUB( + "HqPYgCpnYPY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEEaSERSA_) +STUB( + "HqUX52XTFc4", + _ZN7WebCore13GraphicsLayer6createEPNS_20GraphicsLayerFactoryERNS_19GraphicsLayerClientENS0_4TypeE) +STUB("HqZ0tOXvi+A", _ZNK7WebCore16ISOSchemeTypeBox10schemeTypeEv) +STUB( + "HqZQ5ecjFpI", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_11EntitlementENS1_15AppSTLAllocatorIS5_EEEED1Ev) +STUB("HqaR-dKhU0Q", mono_btls_x509_store_ctx_set_param) +STUB( + "Hqeq+s0Id70", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEC2EPS8_) +STUB("HqqUHMbskgo", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth8AuthCodeEED2Ev) +STUB("Hr-OkmQ25GM", sceUpsrvUpdateDoUpdateBeta) +STUB( + "Hr6GNBRI0Rg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEC1EPS8_) +STUB("Hr6dWGk7qZg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEC1ERS7_) +STUB("HrAPht9ZYiE", mono_object_clone) +STUB( + "HrAyMVbGTJ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEE11get_deleterEv) +STUB("HrCznvA8AQk", X509_up_ref) +STUB( + "HrHBTXdGZ0o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEC2EPS7_PFvS9_EPNS2_10LibContextE) +STUB("HrKzZ9BUJ2w", il2cpp_class_value_size) +STUB( + "HrQAoPiGsAs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEC2Ev) +STUB( + "HrR4eZqkclI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEeqERKS9_) +STUB("HrVr0FDsbc8", _ZN15AbstractStorage12LocalServiceD0Ev) +STUB("HrW4LrMta4w", WKContextSetCookieStorageDirectory) +STUB( + "HrZWq6nXhqo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEC1EPNS2_10LibContextE) +STUB("HrZyCKrH7rE", _ZN7WebCore11MathMLNames14separatorsAttrE) +STUB("Hrb0PpvlXDQ", mono_aot_Sce_Vsh_Sl2_Sl2Deliverjit_got) +STUB( + "Hrgeud6SQiY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEC2EPS8_) +STUB("Hrl76mzEvrc", _ZN7WebCore16BackForwardCache6removeERNS_11HistoryItemE) +STUB("Hrs7gsCRlk0", sceAvControlIsDeviceConnected) +STUB("Hrux++TH0pI", mono_shared_hashtable_new) +STUB("Hrwct6Zk9pA", _ZN7WebCore16convertToIntegerIlEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB( + "Hs2zpYzELSk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE10setContextEPNS2_10LibContextE) +STUB("Hs586a2xPis", uldn_getDialectHandling_67) +STUB( + "Hs5W5AD1hso", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemProperties56getpatchGameSessionsSessionIdMembersAccountIdRequestBodyEv) +STUB("Hs7FP4ljGT4", WKDoubleCreate) +STUB("HsBUGXopmbQ", _ZN7WebCore8Document13setXMLVersionERKN3WTF6StringE) +STUB( + "HsBVdL+SrWA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEEC1Ev) +STUB("HsBiFJJIQ5Q", _ZN7WebCore15JSSVGSVGElementD1Ev) +STUB("HsHttp1Ktm0", sceNpManagerIntGetTitleTokenWithCheck) +STUB( + "HsIbgeDeBcw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEEC1Ev) +STUB("HsLtF4jKe48", sceGnmDebuggerResumeWavefront) +STUB("HsNDwPVrVQA", _ZN7WebCore28InspectorFrontendClientLocal12moveWindowByEff) +STUB("HsOlaoGngDc", sceUserServiceGetPbtcFlag) +STUB( + "HsX3lXxmzHQ", + _ZN7WebCore15UserInputBridge23handleMouseReleaseEventERKNS_18PlatformMouseEventENS_11InputSourceE) +STUB( + "HsYJgEyCGME", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEE7get_refEv) +STUB( + "HsbkZR1yfGQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("HsjvaxD7veE", sceUserServiceSetPbtcTzOffset) +STUB( + "HslX-CAf8Lg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEE11release_refEv) +STUB("HslyHL5sc6M", mono_aot_Sce_Facebook_CSSLayoutplt) +STUB( + "HssCUpc1uxk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB("HsvhqOV4Emw", mono_aot_Sce_Vsh_JsExtensionplt) +STUB("Hsz9u38ULuI", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request8SetLikedD2Ev) +STUB("Ht6MNTl-je4", sceNpTrophyGroupArrayGetNum) +STUB("Ht77qXUqN7U", _ZN3sce7Toolkit2NP2V24Core7Request11AddCallbackC1Ev) +STUB("HtA8DLhQEY4", _ZN7WebCore9HTMLNames7baseTagE) +STUB("HtBKMIkuZes", _ZN19JITSharedTextMemory15shared_mallinfoEv) +STUB("HtOUO45KkKk", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament5EventEE3setEv) +STUB("HtSUddn6TJk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEEC1EPKS6_) +STUB( + "HtYgU5+9VFg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEED2Ev) +STUB( + "HtazgCZ-lU4", + _ZN3JSC26UnlinkedFunctionExecutable4linkERNS_2VMEPNS_16ScriptExecutableERKNS_10SourceCodeEN3WTF8OptionalIiEENS_9IntrinsicEb) +STUB("HtpGVrVLOlA", sceNpAsmClientGetNpTitleToken) +STUB("Htr6CcbIOGQ", ENGINE_cleanup) +STUB( + "HtwHiIbHimA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEC1EPNS2_10LibContextE) +STUB("HtwSd4H2Tws", sceVideoOutAddDriver) +STUB( + "HtwXx3HHRx0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEppEi) +STUB("Htwoe5tvNYg", sceKernelGetUtokenExpirationTimeNotbeforeForRcmgr) +STUB( + "Htx3Yd0Q-Ac", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEE7add_refEv) +STUB( + "Hu1Xd3XqbhE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEC1ERKS7_) +STUB("Hu446VFzW+0", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEE3getEv) +STUB("HuHO7Bn9W5k", _ZN7WebCore20PasteboardCustomDataC2EOS0_) +STUB( + "HuJboplhsQk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEED1Ev) +STUB("HuToUt1GQ8w", sceSaveDataRestoreBackupDataForCdlg) +STUB("HuViW4HnrOw", sceVideoOutSubmitChangeBufferAttribute2) +STUB("HuVpMjidh7c", sceRegMgrCntSetInitReinst) +STUB("HubR2yeq+44", _ZN7WebCore9HTMLNames16onmousewheelAttrE) +STUB( + "HucH4MunMII", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEC1Ev) +STUB("HudB2Jv2MPY", scePthreadBarrierDestroy) +STUB( + "HudRVdJx6FI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEcvbEv) +STUB( + "HudZTXkhQuc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEC2EPNS2_10LibContextE) +STUB("HulhdZP2sYE", _ZNK23sceMetadataReaderWriter8Metadata13getFieldCountEv) +STUB("HuqEAwuDxe8", WKCookieManagerDeleteAllCookies) +STUB("Hutj4lBiCRE", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_clearEventTime) +STUB("HuvWHTju1hA", + _ZN3sce2Np9CppWebApi12Leaderboards2V122GetRankingResponseBody18setTotalEntryCountERKi) +STUB( + "Huy1Np79EIs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEEC1ERSA_) +STUB("HuzRYUDiRD0", _ZN3sce3pss5orbis5video15VideoPlayerBase12SetLoopRangeEmm) +STUB( + "Hv8UFPjBI1M", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyC2EPNS1_6Common10LibContextE) +STUB("Hv9QKbZceis", _ZN7WebCore21JSTextTrackCueGeneric15subspaceForImplERN3JSC2VME) +STUB( + "Hv9Tgn96zwA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE8pushBackERKS8_) +STUB("HvBLOrV8h-c", _ZN3JSC7Symbols31mapIteratorFieldKindPrivateNameE) +STUB( + "HvCNWNwLOe0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEC1Ev) +STUB("HvGfmLy4yLE", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_23NpSessionInvitationInfoEE10deallocateEPS3_m) +STUB("HvHPvwdkpqc", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16TrophyPackTrophyEEC1Ev) +STUB("HvLTnNM22B4", _ZN7WebCore9HTMLNames11datalistTagE) +STUB("HvNrMhlWBSk", sceNpManagerIntGetAccountNpEnv) +STUB("HvPrgqyNx4U", + _ZN7WebCore24CoordinatedGraphicsLayerC2ENS_13GraphicsLayer4TypeERNS_19GraphicsLayerClientE) +STUB("HvQmbphoT1c", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEEcvbEv) +STUB( + "HvQnW-f8OF4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE7popBackEv) +STUB( + "HvTb0HQnH8Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEneERKS9_) +STUB("HvTorT+TclQ", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request15PostInGameStoryC1Ev) +STUB("HvUE8aVx9qQ", _ZN7WebCore9HTMLNames7bodyTagE) +STUB("HvW3PREOGso", showCommInfoList) +STUB("Hvd3S--n25w", sceUsbdFreeConfigDescriptor) +STUB("Hvh1mwfScPE", _ZTVN7WebCore20SVGPathStringBuilderE) +STUB("HvjZPtAnjuQ", _ZN7WebCore9FrameTree7setNameERKN3WTF10AtomStringE) +STUB("Hvl1+ARWoss", sceKernelWaitAIOs) +STUB("HvoRj7fP+dU", _ZN7WebCore20PasteboardCustomDataC1ERKS0_) +STUB("HvoicOVEJnE", _ZN7WebCore7JSRange7destroyEPN3JSC6JSCellE) +STUB("HvpAPSloiLA", WKViewCreate) +STUB("Hvpr+otU4bo", sceNpHexToInt) +STUB( + "Hvu940EAVQM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEEC1EPS7_PFvS9_EPNS2_10LibContextE) +STUB( + "Hw3J05eITjI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEC1ERKS7_) +STUB("HwBlC8TLKHQ", sceSlimglCompositorWaitPostEvent) +STUB("HwBrtLl-5IY", _ZN3sce4Json6Parser11parseObjectERNS0_5ValueERNS0_11InputStreamEPS2_) +STUB("HwDt5lD9Bfo", _ZNK3sce4Json5ValueixEPKc) +STUB("HwEtHFCpU5U", sceGameCustomDataDialogTerminate) +STUB("HwFpasG4+kM", sceUserServiceSetGlsLiveQuality4) +STUB( + "HwGgXncyRRA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEneERKS9_) +STUB( + "HwI4L9kQ4jk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEEC2ERSA_) +STUB("HwJ0Nml4P8s", jpeg_stdio_dest) +STUB("HwP3aM+c85c", sceNpWebApi2GetHttpResponseHeaderValueLength) +STUB( + "HwUJKvsLdog", + _ZN3sce7Toolkit2NP10Challenges9Interface11getItemListEPKNS1_27ChallengeGetItemListRequestEPNS1_9Utilities6FutureISt6vectorINS1_20ChallengeRecvDetailsENS1_15AppSTLAllocatorISA_EEEEEb) +STUB("HwXXEzgOcpI", _ZN3sce2Np9CppWebApi6Common6VectorIdE21intrusive_ptr_sub_refEPS4_) +STUB( + "HwXdgSMYiHM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEE7add_refEv) +STUB( + "Hwgy7k3QmR4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("Hwh11+m5KoI", sceJpegDecDelete) +STUB("Hwk+RGbntvs", _ZN7WebCore4Node12insertBeforeERS0_PS0_) +STUB( + "Hwq3vIkbtl0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEE7get_refEv) +STUB( + "Hwq5Y8QF-eU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEEC1ERSA_) +STUB("HwrbuxHk7pM", _ZN12video_parser12cVpFileCache11updateCacheEPNS0_10_CacheInfoEx) +STUB("HwtOCKw3ioM", _ZN7WebCore10FileSystem24pathByAppendingComponentERKN3WTF6StringES4_) +STUB("HwzPEj3BPu8", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia6VideosEEC2Ev) +STUB("Hwzak1JVoDY", WKAXObjectDescription) +STUB( + "HwzmV2hFl78", + _ZN7WebCore10JSLocationC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_8LocationENS6_13DumbPtrTraitsIS8_EEEE) +STUB("Hx-KCms9n4s", get_vm_map_timestamp) +STUB("Hx-h8By+tlQ", _ZN3JSC7Symbols21tryGetByIdPrivateNameE) +STUB("Hx42BduDriQ", unum_getDoubleAttribute_67) +STUB( + "Hx5k9hp9kyY", + _ZN9Inspector20CSSBackendDispatcher23getMatchedStylesForNodeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "Hx8cvWyMdqI", + _ZN3sce7Toolkit2NP7Friends9Interface14getFriendslistEPNS1_9Utilities6FutureISt6vectorINS1_6NpUserENS1_15AppSTLAllocatorIS7_EEEEEPKNS1_17FriendInfoRequestEb) +STUB( + "HxBHZlSJURQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEC1Ev) +STUB("HxBLq92LRQE", mono_metadata_get_generic_param_row) +STUB("HxFAszDPXuE", FcPatternEqual) +STUB("HxGTYmj3LJ8", sceDebugNoStopChildProcesses) +STUB( + "HxNK4fMru50", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEE7add_refEv) +STUB("HxNRiCWfVFw", sceUserServiceGetGlsBroadcastService) +STUB( + "HxSNBA3c8ng", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEEC2ERKSB_) +STUB("HxT+avGg5Os", _ZNK7WebCore5Range11compareNodeERNS_4NodeE) +STUB( + "HxTHcSd2W4A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE6resizeEj) +STUB( + "HxVEOQ4AHyU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEE11get_deleterEv) +STUB( + "Hxe1ODZWiog", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEppEv) +STUB( + "HxgY49RI8SE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB( + "HxixVeKsCSs", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEiRNS2_10LibContextEPT_m) +STUB("HxkNBh-aMFs", _ZN3JSC11IsoSubspaceC2EN3WTF7CStringERNS_4HeapEPNS_12HeapCellTypeEmh) +STUB( + "HxktJWXWl4Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE5emptyEv) +STUB( + "Hxn2+rK0EL0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEC2Ev) +STUB("Hxo8IehmtCI", Java_com_sony_gemstack_io_factories_jar_JarRandomAccessFile_setProxy) +STUB("HxtyQSJ7YO0", MvpHttpAbort) +STUB("HxuW4PZLWgs", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE6resizeEj) +STUB("HxyAlvMOndQ", _ZN3sce7Toolkit2NP2V212ActivityFeed11SharedVideo17CREATION_DATE_LENE) +STUB( + "HxybCxtAU6k", + _ZN7WebCore22EmptyFrameLoaderClient20createDocumentLoaderERKNS_15ResourceRequestERKNS_14SubstituteDataE) +STUB("HxzaHLBNjzs", _ZN7WebCore24CoordinatedGraphicsLayer14setDebugBorderERKNS_5ColorEf) +STUB( + "Hy+XbWCor78", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE5beginEv) +STUB( + "Hy-BttwDSd8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEC1EPS8_) +STUB( + "Hy-R9RdALFg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEppEi) +STUB("Hy91MjhKaFU", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11EntitlementEEeqERKS4_) +STUB("HyC1lgnGOAU", _ZN3sce3Xml3Dom8Document7setTextENS1_6NodeIdEPKNS0_6StringE) +STUB("HyH55WWqwZo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEE11release_refEv) +STUB( + "HyNVGQfOOBs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEE7add_refEv) +STUB( + "HycO2SHk5+w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEC1Ev) +STUB("Hyg37zqntzY", sceMoveTrackerCaptureTerm) +STUB( + "HyibZzuFSqk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE10setContextEPNS2_10LibContextE) +STUB("Hyj-J0JdS-o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEE11release_refEv) +STUB("HykcoTLLx5o", _ZN3WTF14AtomStringImpl3addEPKh) +STUB("HyplwWzKSjo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEcvbEv) +STUB("HyrG1GT4JxI", sceNpManagerIntStartSystemMode) +STUB("HysMhJhMBIs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEC2Ev) +STUB("HyudEvY2tuo", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEE5resetEPS5_) +STUB("HywoTZ3E+V4", _ZN9Inspector21InjectedScriptManagerD0Ev) +STUB("Hyxyxn00C18", _ZN15AbstractStorage10YoutubeAPI11SendContentEPKvl) +STUB("Hz2fNnKN8iA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEED2Ev) +STUB( + "Hz5hldlzg-A", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE5beginEv) +STUB( + "Hz5lfz9LodE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEC1Ev) +STUB("Hz70-NKc3Sw", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEEixEm) +STUB( + "HzB+FOawf44", + _ZN7WebCore10MouseEvent6createERKN3WTF10AtomStringEONS1_6RefPtrINS_11WindowProxyENS1_13DumbPtrTraitsIS6_EEEERKNS_18PlatformMouseEventEiPNS_4NodeE) +STUB("HzC60MfjJxU", sceMoveOpen) +STUB( + "HzCyp6A2nXc", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations28setxPsnAcceptPlatformNamePs5ENS5_25XPsnAcceptPlatformNamePs5E) +STUB("HzMN7ANqYEc", sceGnmValidateGetVersion) +STUB("HzRe5zmL5zM", _ZThn136_NK7WebCore16HTMLMediaElement12isFullscreenEv) +STUB("HzWS4hQruF8", mono_btls_x509_revoked_free) +STUB( + "HzY7ZJMLh8c", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "HzaUNqbKjl0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEEC1ERSA_) +STUB( + "HzdpyzFwVUk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEppEi) +STUB("HzhgdsSJKDo", _ZN7WebCore15AffineTransform6rotateEd) +STUB( + "HzmLioyFqX0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEC1Ev) +STUB("HzmsiSfYg3Q", _ZN3sce3Xml11InitializerC2Ev) +STUB("HznU2Kio9L4", Java_com_sony_gemstack_org_dvb_application_AppsDatabaseImpl_n_1acceptRunningApp) +STUB("HzrIn-Voa5o", sceHmdInternalSetIPDSettingEnableForSystemService) +STUB("HzzBW6y3kkI", mono_aot_Sce_Vsh_ShareServerPostWrapperunbox_trampolines) +STUB("I++dHwS1YAg", _ZN3sce7Toolkit2NP2V29Challenge13ChallengeData5resetEv) +STUB("I+-o3X+hjBc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEED2Ev) +STUB("I+-pHtw7CLo", _ZN7WebCore18HTMLMarqueeElement15setScrollAmountEj) +STUB("I+2QnmhN3xc", glInvalidateFramebuffer) +STUB( + "I+4x7ybyVyA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEC1EPKS8_) +STUB("I+6+ql8bCcU", _ZN3NTF3URL7setPortERKSs) +STUB("I+GDa7o5LiY", _ZN3NTF17URLRequestJobImpl6cancelEv) +STUB( + "I+HhKO5gy1c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEC1Ev) +STUB("I+IY6JkIpEk", _ZN7WebCore11MathMLNames13fontstyleAttrE) +STUB("I+K-67VMRow", mono_aot_Sce_Vsh_Stickerplt) +STUB( + "I+MbciRxosY", + _ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody13setUpdateModeERKNS3_10UpdateModeE) +STUB("I+RLwaauggA", sceNgs2StreamCreateWithAllocator) +STUB("I+TiE5hPhjg", nsnp_GetLicensePath) +STUB("I+V5wgZhwsA", udat_getNumberFormatForField_67) +STUB( + "I+XWif-alZk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("I+YE3T6fsQY", __start__Zinit) +STUB( + "I+ZDhohdbcg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB( + "I+ap4-yvqiA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEED1Ev) +STUB( + "I+bgxHFUA0U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "I+fZ-VItu5I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEED2Ev) +STUB("I+pR0r79q1A", _ZN9Inspector27DOMBackendDispatcherHandlerC2Ev) +STUB("I+tdxsCap08", _ZN3sce16CommonDialogUtil6Client11closeModuleEv) +STUB( + "I+y49AtjafQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB( + "I+zbh-6REWE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEppEi) +STUB("I--4149DxrU", _ZN3sce7Toolkit2NP2V29Challenge18ChallengeThumbnailC2ERKS4_) +STUB( + "I-0-kkAjbJA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEE11release_refEv) +STUB( + "I-7BpUKxodc", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody30unsetExclusiveLeaderPrivilegesEv) +STUB("I-9gOw3TczI", _ZN12video_parser5vpcom7_CallocEjj) +STUB( + "I-BSe92jZDk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEE5resetEPS9_) +STUB( + "I-ItK2bBlz8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEC1EPNS2_10LibContextE) +STUB( + "I-NgaY9QQOU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEE7add_refEv) +STUB("I-OpF7lc-YM", JSObjectGetTypedArrayBytesPtr) +STUB("I-Qm+MEso5c", sceAmprMeasureCommandSizeWriteCounter_04_00) +STUB( + "I-aeyhNd1+w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEC1ERKS7_) +STUB("I-cP9AIOPqU", _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead12getSessionIdEv) +STUB("I-e7Dxo087A", _ZNSt8messagesIwED2Ev) +STUB("I-ibC-yZF-4", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V16StatusEEeqERKS7_) +STUB( + "I-mBl12SRH4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEC1Ev) +STUB("I-pl6ntSrYY", mono_thread_set_main) +STUB("I01-BrwepO0", _ZN23sceMetadataReaderWriter15g_parserManagerE) +STUB( + "I01ROKxd9X0", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations9hasfieldsEv) +STUB( + "I03uFJJiOXQ", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStats16hasincludeFieldsEv) +STUB( + "I0DaesQ+R8g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE7popBackEv) +STUB("I0NudvE3nE4", il2cpp_class_num_fields) +STUB("I0NvvnK49NE", _ZN3JSC7Symbols15bindPrivateNameE) +STUB("I0PkxCo7wxQ", JSGlobalContextSetName) +STUB( + "I0U0A7ZCYYo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEdeEv) +STUB("I0aP03UbIDY", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V18Variable10unsetOwnerEv) +STUB( + "I0gB28CY8cg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEppEv) +STUB("I0gE8x3npgg", _ZN3JSC2VM13deleteAllCodeENS_19DeleteAllCodeEffortE) +STUB( + "I0jvF3TAsRw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEC1Ev) +STUB( + "I0lLldwoWvA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEppEv) +STUB( + "I0p5mNRNKpk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE21intrusive_ptr_add_refEPS9_) +STUB("I0rhSugtjy4", _ZNK3sce2Np9CppWebApi14ConnectAccount2V212PartnerToken14getAccessTokenEv) +STUB("I0wxpjuw6sE", WKPreferencesGetMetaRefreshEnabled) +STUB( + "I0xM2Ano9MA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEmmEi) +STUB("I0xZP3C3o-c", JVM_DoPrivileged) +STUB("I1+mzAGuKcg", _ZN3sce7Toolkit2NP2V28Commerce19ServiceEntitlementsD2Ev) +STUB("I111PPn2g18", sceKernelWriteSdkEventLog) +STUB("I14Gu-NUIUY", + _ZN3sce3pss5orbis9framework8PsmEvent17RegisterDelegatorEPFvRKNS2_12PsmEventDataEPvES7_) +STUB( + "I14t5MhQ748", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEEC1Ev) +STUB("I15XV7WYEos", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification18NewGameDataMessageEED2Ev) +STUB("I17tgnlvhP8", _ZN3sce7Toolkit2NP2V27Session7Request6Create15MIN_INDEX_VALUEE) +STUB("I1F05HKGkII", mono_file_map_open) +STUB("I1J4AmgICLM", sqlite3_bind_int64) +STUB( + "I1KbWBfyHUQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "I1MLCrKVm2U", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEeqERKS9_) +STUB( + "I1MtHmhZoe4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEE11release_refEv) +STUB( + "I1OWnbqI2gY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE7releaseEv) +STUB( + "I1Pz9Bq+RVQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEcvbEv) +STUB("I1Ru2fZJDoE", _ZTSN10__cxxabiv121__vmi_class_type_infoE) +STUB("I1Va5Dj8ffk", monoeg_g_error_free) +STUB("I1ZbKvN8bN4", _ZN7WebCore9HTMLNames9colorAttrE) +STUB("I1acwR7Qp8E", sceFontSetResolutionDpi) +STUB("I1kBZV6keO4", _ZN3sce2np5Mutex4ctorEv) +STUB( + "I1kzbvZD1nA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE21intrusive_ptr_add_refEPSA_) +STUB("I1vyHN9q4rk", mono_aot_Sce_Vsh_Sticker_StickerLibAccessormethod_addresses) +STUB( + "I24Y8z96Fd8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEEC1ERSA_) +STUB("I25bsv++cMg", _ZN3sce7Toolkit2NP2V28Commerce7Request29DisplayVoucherCodeInputDialogD1Ev) +STUB("I29SrxImX-A", _ZN3WTF6String23make8BitFrom16BitSourceEPKDsm) +STUB( + "I2E-Htqt84w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEppEi) +STUB( + "I2IknfDQ9Hg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEC1EPS8_) +STUB("I2IwTiwoWkQ", _ZN7WebCore18PrewarmInformationD2Ev) +STUB( + "I2ODj8xfJjE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("I2QC8PYhJWY", _ZN3sce4Json14InitParameter212setAllocatorEPNS0_12MemAllocatorEPv) +STUB( + "I2UzwkwwEPs", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERl) +STUB( + "I2d4nu97ERo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEptEv) +STUB( + "I2erG4YkEAg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEEC2ERKS9_) +STUB( + "I2g+qmRNJrM", + _ZN3sce2Np9CppWebApi7Matches2V122RequestMatchStatistics19setPlayerStatisticsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_22RequestPlayerStatisticEEEEE) +STUB("I2lK60l+Cno", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V110Reputation11globalIsSetEv) +STUB( + "I2r47l0zHLI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEcvbEv) +STUB("I3+xmBWGPGo", + _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecl) +STUB( + "I31dKU3DwgM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEED2Ev) +STUB("I31iLrToaDk", mono_get_exception_not_supported) +STUB("I3214xCz1gY", WKPointGetValue) +STUB("I32rxOdxlVk", _ZN7WebCore9HTMLNames6asAttrE) +STUB( + "I34lmQ-r5iI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("I37rBumJ9X4", sceAvSettingRemoveProcessOutputMode) +STUB( + "I381uWPKe0M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEppEi) +STUB("I384tcDPk1c", _ZN3JSC11regExpFlagsERKN3WTF6StringE) +STUB("I38s92i-Xjk", curl_global_init) +STUB( + "I3Cm2PthpHQ", + _ZN7WebCore14ScrollableArea34constrainScrollPositionForOverhangERKNS_10LayoutRectERKNS_10LayoutSizeERKNS_11LayoutPointES9_ii) +STUB("I3Fwcmkg5Po", sceAudioOutGetFocusEnablePid) +STUB( + "I3HHmiIqgC4", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "I3IOLIQFlxQ", + _ZN9Inspector20DOMBackendDispatcher17highlightSelectorElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "I3LWxmXq+C4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE21intrusive_ptr_sub_refEPS9_) +STUB("I3e5aMGNe-0", _ZN3JSC7Symbols17searchPrivateNameE) +STUB( + "I3hUSLo9MQQ", + _ZN3sce2Np9CppWebApi14SessionManager2V136GetFriendsPlayerSessionsResponseBodyC2EPNS1_6Common10LibContextE) +STUB("I3ootbOM-00", _ZNK3sce3Xml3Dom8Document13getEntityTypeENS1_6NodeIdE) +STUB("I3ps3nG0aKs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116InitialJoinStateEEdeEv) +STUB( + "I3wCwIwMJGs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB( + "I3z3tCWd5Ec", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEED1Ev) +STUB("I4+4hKttt1w", sceHttpsEnableOptionPrivate) +STUB("I4-PyX6nOPo", _ZN3sce7Toolkit2NP2V26Trophy7Request23DisplayTrophyListDialogC1Ev) +STUB("I42gBhK-AbI", mono_vfree) +STUB("I42mYvwndio", _ZN7WebCore20TransformationMatrix15scaleNonUniformEdd) +STUB( + "I44793pOQVE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEEC2ERKSA_) +STUB( + "I45yc4MY9nc", + _ZN7WebCore23CoordinatedBackingStore20paintToTextureMapperERNS_13TextureMapperERKNS_9FloatRectERKNS_20TransformationMatrixEf) +STUB( + "I47oCQPbw4I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB( + "I48zAE0KEi8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEC2EPNS2_10LibContextE) +STUB("I494luuz6qk", _ZN3WTF16AtomicStringImpl3addEPKDsj) +STUB( + "I498PmOx-WM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEppEi) +STUB("I4Dpeom1P6Y", sceTsOpenFileEx) +STUB("I4Myxk+roNI", _ZNK3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer13onlineIdIsSetEv) +STUB("I4O9MqxoKGI", Java_java_awt_GnmGraphics_nativeDrawOval) +STUB("I4PRUFYb1WM", _ZTVN7WebCore11DisplayList15FillRoundedRectE) +STUB( + "I4PxJ6HcibM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEC2Ev) +STUB( + "I4YvCYkhIqM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE5emptyEv) +STUB("I4eCG2hgXRE", Java_sun_awt_DownloadedFont_loadFromFile) +STUB("I4jBdT+0Ng8", mono_aot_Sce_Vsh_AppDbWrapperunwind_info) +STUB("I4oxnvdvQmk", sceAudioSystemSystemResume) +STUB("I4plsnAHNDE", _ZN3NTF17URLRequestJobImplD1Ev) +STUB("I4pt0NSJBb4", __asan_report_load_n) +STUB("I4q+6sukCEc", _ZNK7WebCore16HTMLInputElement12isMonthFieldEv) +STUB("I4qJlIt9njM", PubSubPublish) +STUB("I4sXVq8FNbw", _ZN7WebCore24TemporarySelectionChangeD1Ev) +STUB("I4ucgk5zCH4", + _ZThn16_N9Inspector21InspectorConsoleAgent22setLoggingChannelLevelERN3WTF6StringERKS2_S5_) +STUB("I4uvoHI1wRY", mono_aot_Sce_Vsh_Sl2_Sl2Clientjit_code_end) +STUB("I4y33AOamns", _ZTIPKc) +STUB("I5+LmChfiaI", mono_aot_Sce_Vsh_AppContentUtilWrapperunbox_trampolines) +STUB("I55q7IbIU-A", _ZN7WebCore11MediaPlayer7repaintEv) +STUB("I59cILXmGzw", uhash_get_67) +STUB("I5ECYW2vgfQ", _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse18getCompetitionTypeEv) +STUB("I5Fv27RVaXA", _ZN3JSC10JSFunction11displayNameERNS_2VME) +STUB( + "I5G3BBCBakY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEED1Ev) +STUB("I5GeHJrhyms", fuse_kern_unmount) +STUB("I5JDizVSxbY", + _ZN3JSC21loadAndEvaluateModuleEPNS_14JSGlobalObjectERKN3WTF6StringENS_7JSValueES6_) +STUB("I5NEJ-Q-rBs", _ZN3sce7Toolkit2NP15AppSTLAllocatorItEeqERKS3_) +STUB("I5OmtvOve6E", sceIduUtilGetEnvironment) +STUB( + "I5QFERQpzoM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEE7add_refEv) +STUB("I5RVjZ56xv8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEC2Ev) +STUB("I5Rf2rXvBKQ", sceFontGraphicsUpdateShapeFillPlot) +STUB("I5UU-OsptFI", _ZN7WebCore24MatrixTransformOperationC1Edddddd) +STUB("I5WMqUk6HrE", _ZN7WebCore9HTMLNames5rbTagE) +STUB("I5X8IKb7vN8", _ZN4Manx7Network4freeEPv) +STUB("I5ZyZfpplKM", mono_aot_mscorlibunwind_info) +STUB( + "I5cgDxVebZ0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEdeEv) +STUB("I5dlIKkHNkQ", sceNpTusGetMultiUserDataStatusVUserAsync) +STUB( + "I5eHSc9Yx4o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEE21intrusive_ptr_add_refEPS7_) +STUB("I5jQit5Q78Q", sceVorbisDecBitrateInstant) +STUB("I5jcbATyIWo", _ZNSt8ios_baseD0Ev) +STUB("I5nmuZqb3LM", mono_gc_get_generation) +STUB( + "I5pyVptGX1Y", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEneERKS9_) +STUB("I5utIyLdyjg", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112GroupingTypeEEC2EPS6_) +STUB("I5uzTXxbziU", _ZN3sce2np4Cond7DestroyEv) +STUB("I5vyOoVvcEw", _ZN3WTF31NonSharedCharacterBreakIteratorC2ENS_10StringViewE) +STUB("I5wa74016LQ", cairo_region_get_rectangle) +STUB( + "I5y8d3X+2n8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "I5ysvI-IIJw", + _ZN7WebCore17PageConsoleClient9recordEndEPN3JSC14JSGlobalObjectEON3WTF3RefIN9Inspector15ScriptArgumentsENS4_13DumbPtrTraitsIS7_EEEE) +STUB( + "I65deDtHFuE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEEaSERKSA_) +STUB("I69kRgYrWmY", _ZN15AbstractStorage4Item11GetPathNameEv) +STUB("I6BK+r-jqhk", _ZN7WebCore29SQLiteStatementAutoResetScopeC2EOS0_) +STUB("I6CEmnwFeTY", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_19ProductInfoDetailedEED1Ev) +STUB("I6FCGU4YhOA", _ZN3sce2np10NpOnlineId13GetNpOnlineIdEiPS1_) +STUB("I6FO+6KM2Gw", mono_aot_Sce_Vsh_WebViewDialogplt_end) +STUB("I6I6FkXrmlI", ures_getType_67) +STUB("I6LQd5tyt0w", FT_Bitmap_Init) +STUB( + "I6RbRdy3Q7s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEE11release_refEv) +STUB("I6XovEp+75w", _ZN3JSC7Symbols43typedArrayGetOriginalConstructorPrivateNameE) +STUB("I6Z-684E2C4", ispunct) +STUB( + "I6ew5InnOCA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEED1Ev) +STUB("I6gS9R3DurY", _ZN3WTF6String6numberEd) +STUB("I6gThqeUQo8", _ZN3sce7Toolkit2NP9Utilities6FutureIbED1Ev) +STUB( + "I6m4QBwYRXk", + _ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionNonPsnPlayerC2EPNS1_6Common10LibContextE) +STUB( + "I6nM-Lkv9jQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEE7add_refEv) +STUB("I6r+uulCR34", _ZN7WebCore9HTMLNames13inputmodeAttrE) +STUB( + "I6r7pr37kBk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "I6r9DNlQ1FA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE5beginEv) +STUB("I6rOX+ftOsI", _ZN3sce7Toolkit2NP2V212ActivityFeed13UsersWhoLikedC1Ev) +STUB( + "I6t7Fbo8yfU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE7popBackEv) +STUB( + "I6tYhuj7HMI", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api9getTicketEiRKNS4_20ParameterToGetTicketERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_21GetTicketResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("I6tnUuepZhU", + _ZN7WebCore16JSXMLHttpRequest22visitOutputConstraintsEPN3JSC6JSCellERNS1_11SlotVisitorE) +STUB( + "I6tsHYfkcbI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEaSERKSA_) +STUB("I6x5YLhoOyU", + _ZN7WebCore19JSAnimationTimeline11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("I7+bgf+f1FM", mono_aot_Sce_PlayStation_Coreunbox_trampolines_end) +STUB("I704tM8sYxw", mono_bitset_find_first) +STUB( + "I71iJjNcF8k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEaSERKS7_) +STUB( + "I72sRnVpcYs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEEptEv) +STUB("I7650OhP6W8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEE11release_refEv) +STUB( + "I77d7xkmE78", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V137MatchCompletionRateQuitMetricsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_30MatchCompletionRateQuitMetricsEEE) +STUB("I78wJHt9tdI", _ZNK3sce2Np9CppWebApi6Common6String4findERKS3_) +STUB("I7A4lT+s9h8", u_tolower) +STUB("I7DtdmOU3rw", sceAppInstUtilAppGetAddcontInfoByContentId) +STUB("I7GFwkajYkc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEED2Ev) +STUB( + "I7GJg3tUlK0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("I7ImcLds-uU", readv) +STUB( + "I7R3iaba+jU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEppEi) +STUB("I7Rs8wP+xaw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEEC1EPKS6_) +STUB("I7TAVHwbvc4", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12RoomPingTimeEE19setCustomReturnCodeEi) +STUB("I7YOgIdzNMs", ucnv_getFromUCallBack_67) +STUB("I7dFdkpGxYI", _ZN7WebCore9HTMLNames17onpointeroverAttrE) +STUB( + "I7daff3tdqc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEED1Ev) +STUB("I7eE64SW48g", mspace_get_footer_value) +STUB( + "I7f22iWhA1s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("I7i7e1LGVZI", _ZN7WebCore16ScriptController16createRootObjectEPv) +STUB("I7kdy6R0axo", jpeg_fdct_14x7) +STUB( + "I7mIGiQD-qM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEEC1Ev) +STUB( + "I7mh0ZNMjnU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEEC2ERSA_) +STUB("I7ofh1cBE5o", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V113AttributeTypeEEmmEv) +STUB("I7rDjJe4Eok", _ZN15AbstractStorage14TwitterStorageD1Ev) +STUB( + "I7soL767pak", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE5clearEv) +STUB( + "I82AAZYHaN0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE7reserveEi) +STUB("I82nyOgGKjY", glUniform3f) +STUB( + "I83P5+ifCdo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEC1Ev) +STUB("I849n0yCszo", WKContextMenuItemGetTag) +STUB( + "I84EUs864es", + _ZN9Inspector8Protocol13BindingTraitsINS0_8Debugger5ScopeEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE) +STUB( + "I84U862KpZo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB("I88Ie+4t0-c", GCC_except_table280) +STUB("I88KChlynSs", sceErrorDialogInitialize) +STUB("I8DjaU4h+T8", _ZN7WebCore4Page33synchronousScrollingReasonsAsTextEv) +STUB("I8H3EdOu8cw", _ZN3sce4Json5Value3setERKSt4listIS1_NS0_8StlAllocIS1_EEE) +STUB("I8J1Y7S8Muw", _ZN7WebCore8SVGNames13font_sizeAttrE) +STUB("I8R9aSsT2C0", WKURLGetTypeID) +STUB( + "I8a3AELXUuY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("I8dHzWVUUw4", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetail9unsetviewEv) +STUB( + "I8e4hvvZF4o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEC1ERKS7_) +STUB( + "I8ha5SFyaug", + _ZN3sce7Toolkit2NP2V29Messaging22consumeGameDataMessageERKNS3_7Request22ConsumeGameDataMessageEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("I8kzojIx5UY", delegate_virtual_invoke_imt_28) +STUB( + "I8pKrVYKAO0", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser7hassortEv) +STUB( + "I8rDVikNfHw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEE5resetEPS9_) +STUB( + "I8rLR3LZ-Yg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB("I8sUe4XPSvU", sceMatAllocPoolMemory) +STUB("I8v9gOO4bXE", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15ErrorC1EPNS1_6Common10LibContextE) +STUB("I8xwUdauOcY", _ZNK3sce2Np9CppWebApi14SessionManager2V115LocalizedString18getDefaultLanguageEv) +STUB("I91P0HAPpjw", sceAudioOutStartAuxBroadcast) +STUB( + "I94LxkpuV5g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEdeEv) +STUB( + "I94QkY5q8SQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEEC1ERKSA_) +STUB( + "I99fckM6Uso", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS9_) +STUB("I9IXZ61WkD0", glBindTexture) +STUB("I9JAPU81VpY", _ZN3IPC15ArgumentEncoder13addAttachmentEONS_10AttachmentE) +STUB("I9K8X5wNZRI", _ZN9Inspector14FrontendRouter15connectFrontendEPNS_15FrontendChannelE) +STUB("I9O9l17oQIo", _ZN7WebCore11JSDOMMatrixC2ERKS0_) +STUB("I9R5VC6eZWo", sceFontClearDeviceCache) +STUB( + "I9WCDJCkdZU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEC1EPNS2_10LibContextE) +STUB("I9aiD3P3IiI", sceNpTcsIntUploadDataToNewSlotAbort) +STUB( + "I9dKXzmkp-U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEC2EPNS2_10LibContextE) +STUB( + "I9lEfQAJEoU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE5clearEv) +STUB("I9uZ6uF29YY", + _ZN7WebCore28InspectorFrontendClientLocal8Settings11setPropertyERKN3WTF6StringES5_) +STUB( + "IA4fg2qjTjs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEC2ERKS8_) +STUB("IA8HMDjPSig", _ZNK3sce2Np9CppWebApi14IdentityMapper2V312AccountIdMap11getOnlineIdEv) +STUB("IAB7wscPwio", sceUserServiceGetFileSelectorSortContent) +STUB( + "IACZMb7b7H8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEED1Ev) +STUB("IADmD4tScBY", sceImeDialogGetStatus) +STUB("IAEl1Ta7yVU", _ZNSt15basic_streambufIcSt11char_traitsIcEE9showmanycEv) +STUB("IAHGC+h+UGw", _ZN3WTF11Persistence7Encoder6encodeEf) +STUB("IAHmDPs6qd8", _ZN8meta_gen11MsvPromoter26retrieveMultiLangTitleInfoEPKc) +STUB( + "IAL+gBXNQM8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE4sizeEv) +STUB("IALAyZ626jY", jpeg_idct_3x3) +STUB( + "IAQxXU7qsTQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE3endEv) +STUB( + "IASUKKR2K0U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEED2Ev) +STUB("IAUPgA2vd9k", mono_conc_hashtable_new_full) +STUB( + "IAXzsIq88HQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEED1Ev) +STUB("IAZgenCVKNE", _ZN3WTF11LogArgumentIPKvE8toStringES2_) +STUB("IAcF3sv2enE", WKURLResponseGetHttpStatusCode) +STUB("IAf1M-HM55c", scePerfTracePmUpdate) +STUB( + "IAhVdJnk8FU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE5beginEv) +STUB("IAjYih7HkWE", _ZNK7WebCore19ResourceRequestBase9isTopSiteEv) +STUB( + "IAkGC4cv3zs", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEED1Ev) +STUB( + "IAoGqhiiOgk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEeqERKS9_) +STUB("IApJAV73lSI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEED1Ev) +STUB("IAxgE3PWIcE", mono_aot_Sce_Vsh_PsnMessageUtiljit_got) +STUB("IAz2HgZQWzE", sceCameraGetVrCaptureInfo) +STUB("IB3TRJLSgFw", _ZN7WebCore9HTMLNames9iframeTagE) +STUB("IB3mxHrpJnA", _ZN7WebCore8Document23setAsRunningUserScriptsEv) +STUB( + "IB5avbov-NI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEdeEv) +STUB( + "IB7E-UsWTpA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEE3getEv) +STUB( + "IB7qdUvlkzg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEC1Ev) +STUB( + "IBHTBzd-VAg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEED2Ev) +STUB( + "IBKM6vVMLSI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEEC2EPSA_PNS2_10LibContextE) +STUB("IBMQZwZ+Oms", _ZN3sce7Toolkit2NP2V29Challenge7Request21GetChallengeThumbnailC1Ev) +STUB("IBNzGcdOddw", + _ZNK3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead7getFromEv) +STUB("IBOhqpwo1zI", WKBundleResetOriginAccessWhitelists) +STUB( + "IBR4CoqG3k0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEC1EPS6_PNS2_10LibContextE) +STUB( + "IBRGy9t+DCQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("IBSCAHHwzSs", uregex_close_67) +STUB( + "IBU1+F-BFnA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEC1EPKS8_) +STUB("IBWy9uGWcp8", _ZN7WebCore15SQLiteStatement21getColumnBlobAsStringEi) +STUB("IBZ-ohjPQX8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEEC2EPKS6_) +STUB( + "IBcX2N9ogYc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEptEv) +STUB( + "IBdWgzE+PC4", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariable9getslotIdEv) +STUB( + "IBdqRGiGW0U", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("IBjqt0oLxeg", + _ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody14submitterIsSetEv) +STUB("IBn9qjWnXIw", __popcountsi2) +STUB("IBpqUH0M8ao", _ZN7WebCore8Document13setDesignModeERKN3WTF6StringE) +STUB( + "IBqXkLGEYyg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE4sizeEv) +STUB("IBrGr8mdGNA", _ZN7WebCore35contextMenuItemTagShowSpellingPanelEb) +STUB("IBtmqzzHmRo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEaSERKS7_) +STUB("IBtzswgYU3A", _ZTISt10money_base) +STUB("IBv4P3q1pQ0", sceVrTrackerTerm) +STUB( + "IBxB9Jq8eTw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEE7get_refEv) +STUB("IC8rPAm64F4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEE11release_refEv) +STUB("ICCQp0ORAiY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE8pushBackERKS6_) +STUB("ICERBon8R3Y", mono_aot_Sce_Vsh_Accessorunbox_trampolines) +STUB("ICH5rmcYGWg", _ZN3sce2np14JsonStringImplC1EP14SceNpAllocator) +STUB("ICLQjM1sSwI", _ZN3sce7Toolkit2NP27GetSharedScreenshotsRequestC1Ev) +STUB("ICNJ-1POs84", sceScreenShotIsVshScreenCaptureDisabled) +STUB( + "ICVTP-JoTy8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSC_) +STUB("ICXUqiWRgWs", delegate_virtual_invoke_16_p) +STUB("ICY0Px6zjjo", __gtsf2) +STUB( + "ICaZtyH0tRE", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_6Canvas11ContextTypeEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB( + "ICg93DrEZAw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("ICj99EwVtqU", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIdEdeEv) +STUB( + "ICkYs3hez7c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEEC1ERSA_) +STUB("IClE1UosCoM", _ZN7WebCore20ResourceLoadObserver6sharedEv) +STUB("ICmTBdI2BEE", rgctx_fetch_trampoline_mrgctx_63) +STUB("ICnB2IswiwU", _ZN3JSC9Structure14sealTransitionERNS_2VMEPS0_) +STUB( + "ICoaGydk0Ks", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119NatConnectivityFrom9setToNat1ERKNS1_6Common12IntrusivePtrINS3_24NatConnectivityToMetricsEEE) +STUB("ICx2UgXIXlk", _ZN7WebCore12ChromeClient17didAddFooterLayerERNS_13GraphicsLayerE) +STUB("ID+Gq3Ddzbg", sceNetCtlConnectIpcInt) +STUB("ID0FRTNvS94", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEptEv) +STUB("ID6l3yU4Gwg", _ZN7WebCore8Document25startTrackingStyleRecalcsEv) +STUB("ID7vMKqWzNM", + _ZN7WebCore20LegacySchemeRegistry40setDomainRelaxationForbiddenForURLSchemeEbRKN3WTF6StringE) +STUB("IDANRncW4HU", _ZN3WTF20initializeMainThreadEv) +STUB("IDB8WaFUmpo", whexdig) +STUB("IDCiUZVIa64", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEdeEv) +STUB( + "IDO9ntgsUO0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEmmEv) +STUB("IDWlJ-Pqm78", getzone) +STUB("IDXFgpkpDsU", sceNpAsmGetNpCommInfo2) +STUB("IDYAnLE0+kM", _ZN9Inspector28HeapBackendDispatcherHandlerC2ERKS0_) +STUB("IDYJZSeBgDs", sceUsbStorageRequestMap) +STUB("IDZbJIVb5JI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEppEi) +STUB( + "IDavRLMGVFo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE7reserveEi) +STUB( + "IDbsave4aNc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEppEi) +STUB( + "IDf+FB-95RM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "IDhjHh-wi3Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE5clearEv) +STUB("IDmch1bKy34", cairo_font_options_set_hint_style) +STUB( + "IDnHLk+KsB4", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB( + "IDvLOa9XdGE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE5emptyEv) +STUB("IDwNl7rxOQg", sceMusicFwSetCurrentTime) +STUB( + "IDxhUpqHwoc", + _ZN9Inspector18InjectedScriptHost21getInternalPropertiesERN3JSC2VMEPNS1_9ExecStateENS1_7JSValueE) +STUB( + "IDzHMvOZsdo", + _ZNK7WebCore10ScrollView21unobscuredContentRectENS_14ScrollableArea36VisibleContentRectIncludesScrollbarsE) +STUB( + "IE-7N3b0NL8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEppEi) +STUB("IE0xYGwycW0", WKPreferencesSetDialogElementEnabled) +STUB( + "IE2HP8FGsLA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEEaSERKSA_) +STUB( + "IE2x3--ZNXA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEC1Ev) +STUB( + "IE4yA08WagA", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets10initializeEPNS1_6Common10LibContextEPKc) +STUB("IEB+vgVoQbw", sceNpWordFilterCreateAsyncRequest) +STUB("IEEiIV664i8", _ZN3JSC22createOutOfMemoryErrorEPNS_14JSGlobalObjectERKN3WTF6StringE) +STUB("IEFEDR4gS2w", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking8TempRankEE3setEv) +STUB( + "IEGYPDxVu1s", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE4sizeEv) +STUB("IEIydcJjkbo", _ZNK3WTF6Thread4dumpERNS_11PrintStreamE) +STUB("IEUh8Xtxsn0", + _ZN7WebCore15DatabaseManager23detailsForNameAndOriginERKN3WTF6StringERNS_14SecurityOriginE) +STUB( + "IEWqmH1dAWY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEEcvbEv) +STUB("IEXEP8fmFr8", _ZN7WebCore11DisplayList13ClipOutToPathC1ERKNS_4PathE) +STUB("IEdUCV9j2Cw", sceNpUniversalDataSystemEventPropertyArraySetBinary) +STUB("IEeMuJVSFtI", _ZN7WebCore11HistoryItem17setAlternateTitleERKN3WTF6StringE) +STUB("IEj78AQ7hsc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEEcvbEv) +STUB("IElCGP1gobk", sceContentBinderGetNumOfDifference) +STUB("IEtotmsDoYg", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V13Mmr11getPerGenreEv) +STUB("IEzqdjIueps", sceSocialScreenConfigureSeparateMode) +STUB("IF3eLfGQiag", ucol_getBound_67) +STUB( + "IF6GaMYf5Uk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE8capacityEv) +STUB( + "IF6VS1Ng7Fg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEdeEv) +STUB( + "IF9Yc8tAwlY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEEC1EPS7_PNS2_10LibContextE) +STUB("IFALbvmLM+8", _ZN7WebCore14FrameSelectionC2EPNS_5FrameE) +STUB("IFFtgsiRyGQ", _ZN7WebCore10JSLocation4infoEv) +STUB("IFH02-MW68w", _ZN3sce2Np9CppWebApi13InGameCatalog2V55ErrorC2EPNS1_6Common10LibContextE) +STUB( + "IFNjbmOnyGE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEC2EPS8_) +STUB( + "IFOx1bNyYts", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB( + "IFQ4rl0BHus", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEC1EPKS6_) +STUB("IFQwtT2CeY0", sceMoveSetVibration) +STUB("IFRxwVZPcYw", sceMbusDebugReleaseControl) +STUB( + "IFSfc9Si7vs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB("IFSy-jZ0kEI", mono_aot_Mono_Data_Sqliteunwind_info) +STUB( + "IFU35-pdHKU", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser17hasplatformFilterEv) +STUB("IFVaBpTyFRY", + _ZNK3sce2Np9CppWebApi7Matches2V124ResponseTeamMemberResult6toJsonERNS_4Json5ValueEb) +STUB( + "IFbDzgbVp5U", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13boolean1IsSetEv) +STUB("IFdTVKKGVLI", g_JSArrayBufferPoison) +STUB( + "IFeE73k4YyQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEppEi) +STUB( + "IFeOLPLGFG8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEE11get_deleterEv) +STUB("IG-3e4xYcLY", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setRate) +STUB("IG1Kd+k6U3s", sceNpServiceChecker2IntCreateRequest) +STUB("IG22hh3eur0", _ZN3JSC18IncrementalSweeper6doWorkEv) +STUB("IG3a3BD+Yes", _ZN3sce2Np9CppWebApi7Matches2V123ResponsePlayerStatistic11setPlayerIdEPKc) +STUB("IG4vDJkluuE", mono_btls_x509_verify_param_from_store_ctx) +STUB("IG6ZoGSDaMk", sceNpManagerIntUnbindOfflineAccountId) +STUB( + "IGCZbdkzrhE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEE3getEv) +STUB( + "IGD45N1lO1s", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE8capacityEv) +STUB("IGFTSBRJiHk", _ZN3JSC12addErrorInfoEPNS_14JSGlobalObjectEPNS_8JSObjectEb) +STUB("IGJ-lPf5b1Y", _ZN4Manx21DisplayRefreshMonitorC2Ev) +STUB( + "IGQJzUqMtx8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("IGThmAe0IFc", sceIduUtilIsDiscInserted) +STUB("IGZfa0QbHK0", _ZN3sce7Toolkit2NP2V210Tournament15TeamVsTeamMatchC1ERKS4_) +STUB("IGa9NHlyivY", + _ZNK3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsers9getoffsetEv) +STUB("IGc6FTBp6jE", _ZN3sce7Toolkit2NP2V23TUS7Request12SetVariablesD1Ev) +STUB("IGcJ6U0SuHU", _ZN3JSC17JSArrayBufferViewC1ERNS_2VMERNS0_19ConstructionContextE) +STUB( + "IGd4piK-kMs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEC2EPS8_) +STUB("IGd5X5j9+Dc", _ZN7WebCore12SharedBuffer6createEPKhm) +STUB("IGdE6nsMTAY", sceVrTracker2CheckPointIsInsidePlayAreaBoundary) +STUB("IGdTnMB+gA8", _ZN3IPC15ArgumentEncoder6encodeEb) +STUB("IGdZfsLTXOc", _ZNK3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE8capacityEv) +STUB("IGnFlGNW+Vo", + _ZN15AbstractStorage14YoutubeStorageC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("IGngArGbzHo", _ZN3sce2np3ipc17ServiceIpmiClient7DestroyEv) +STUB("IGrJsPNL6n4", sceLncUtilIsAppLaunched) +STUB("IGrbJj1nins", rgctx_fetch_trampoline_mrgctx_103_p) +STUB("IGwoR-bZ-aQ", sceDeci4hGetStatus) +STUB("IH2Yle2Qh1U", Java_com_sony_gemstack_org_havi_ui_HBackgroundImageDecoder_displaySurface) +STUB("IHCjKLEGzm0", vm_send_RegisterOpcodeEmulation) +STUB("IHClyogk-U0", _ZN7WebCore16MIMETypeRegistry23isSupportedJSONMIMETypeERKN3WTF6StringE) +STUB("IHHSdVBTwBc", sceShellCoreUtilIsUsbMassStorageMounted) +STUB( + "IHJFNWm4S2E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEE11release_refEv) +STUB("IHMI0n-H8Xk", rgctx_fetch_trampoline_mrgctx_61_p) +STUB("IHPqcbc0zCA", scePadDeviceClassParseData) +STUB("IHQRMDrYqts", xmlRegisterInputCallbacks) +STUB("IHRDvZodPYY", sceNpSignalingSetContextOption) +STUB("IHYNHgkyRTw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V110AvatarSizeEEneERKS7_) +STUB("IHZD-nXKzPw", _ZN7WebCore16HTMLMediaElement29getCurrentMediaControlsStatusEv) +STUB("IHZcUo10YCw", Java_com_sony_bdjstack_javax_media_controls_SoundManager_pause) +STUB("IHa+7ffbXps", _ZN3WTF15base64URLEncodeEPKvj) +STUB( + "IHbEH2q1DMQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE7popBackEv) +STUB( + "IHbk3YNeDz8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEppEi) +STUB( + "IHfCwDchxdo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEE7add_refEv) +STUB( + "IHhXxoAsZRU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEC2EPS6_PNS2_10LibContextE) +STUB("IHhl7z1-uFI", sceVideoCoreInterfaceGetRenderFrameBuffer) +STUB("IHiK3lL7CvI", _Atthreadexit) +STUB("IHjsOPckz9Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEE5resetEPS6_) +STUB("IHkbD6NUVB4", Java_java_io_UnixFileSystem_initIDs) +STUB( + "IHm-2CBKHl0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEC1EPS6_PNS2_10LibContextE) +STUB("IHpfHlI4FXs", Java_com_sony_bdjstack_security_aacs_AACSOnline_getPMSN) +STUB("IHq2IaY4UGg", __fixsfti) +STUB( + "IHqUs8zAc3c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEC1EPKS8_) +STUB( + "IHrYMbKlPeg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "IHszTmpbhBI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEC1EPKS8_) +STUB("IHyZtPpt+-Q", _ZN3sce7Toolkit2NP2V210Tournament7Request15EventTypeFilterD2Ev) +STUB( + "IHycGnN+79o", + _ZN3sce2Np9CppWebApi14SessionManager2V151PatchGameSessionsSearchAttributesRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_44PatchGameSessionsSearchAttributesRequestBodyEEE) +STUB("II+V6wXKS-E", sceUserServiceSetShareStatus2) +STUB("II+m39Ytbfs", _ZN7WebCore4Page40updateMediaElementRateChangeRestrictionsEv) +STUB("II08aNs+H8c", + _ZN3sce2Np9CppWebApi11Matchmaking2V120PlayerForReadFactory7destroyEPNS3_13PlayerForReadE) +STUB("II4v52-8BI8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEdeEv) +STUB("IIBBieYYH6M", _ZNK3sce2np10NpOnlineId7IsEmptyEv) +STUB( + "IIDAg2bnVTk", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearch36getpostGameSessionsSearchRequestBodyEv) +STUB( + "IIDZsUI2hR8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEE7add_refEv) +STUB("IIEZ8A31pFo", scePsmUtilGetLabelAssetManagerSize) +STUB( + "IIFLFkSK9fA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEmmEi) +STUB("IIJHCy+uDyI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEmmEv) +STUB("IILi8PWnIN4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEEC1EPKS5_) +STUB( + "IIP1YrE9RkE", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE5getIdEv) +STUB( + "IISdHanbDX0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("IIT+EGxGv8A", mono_upgrade_remote_class_wrapper) +STUB( + "IIUKSsADZCI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("IIUY-5hk-4k", initstate) +STUB( + "IIXQGzQYesQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE8pushBackERKS8_) +STUB( + "IIaosXuMTAQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB("IIee+n8qW-E", + _ZN3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse10setFriendsERKNS1_6Common6VectorImEE) +STUB("IIhlecN4L84", _ZNK7WebCore16BlobRegistryImpl18getBlobDataFromURLERKN3WTF3URLE) +STUB("IIlyMEtv3eA", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_6NpUserEEneERKS4_) +STUB( + "IImfQqdcnIY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEEC1Ev) +STUB( + "IIy47gUAJa4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEC1EPNS2_10LibContextE) +STUB( + "IJ+wojje2Og", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("IJ-Jxtdju18", g_assertion_message) +STUB("IJ4PBnF3RrM", + _ZN12video_parser41VpMpegvideoAvcParsePPS_get_slice_group_idEPNS_21VpMpegvideoAvcPPSCtrlEiPh) +STUB( + "IJ7j6CmbbHE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEEC2ERSA_) +STUB( + "IJDLbgQgbsQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("IJIggoPZExk", pthread_spin_destroy) +STUB( + "IJJAO0gYWP0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEC1EPS6_PNS2_10LibContextE) +STUB("IJKVjsmxxWI", __cxa_allocate_dependent_exception) +STUB( + "IJPH53bfhlo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEED1Ev) +STUB("IJRNUbdpGmM", _ZN3sce2Np9CppWebApi14SessionManager2V117SearchGameSession12setSessionIdEPKc) +STUB("IJYALczrHyI", _ZN3sce2Np9CppWebApi6Common6VectorIfEC2Ev) +STUB( + "IJYK1OHvPrs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEE11release_refEv) +STUB("IJZ+ZJuC9SY", u_vparseMessageWithError_67) +STUB( + "IJbBoinGYT8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEEC2ERSA_) +STUB("IJd2ND3hzd0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE8pushBackERKS5_) +STUB( + "IJgIYFmU+18", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEC1Ev) +STUB("IJlEyEMIWt8", u_fungetc_67) +STUB("IJmeA5ayVJA", _ZNSbIwSt11char_traitsIwESaIwEE6assignEPKwm) +STUB( + "IJnPLsBZ2rw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEEC1ERSA_) +STUB( + "IJps34Jgda0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEdeEv) +STUB("IJtTo2GMb6Q", _ZN3JSC7Symbols28sentinelSetBucketPrivateNameE) +STUB("IJzlDqHrcAA", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Error16referenceIdIsSetEv) +STUB("IK1SOe-F4lI", mono_class_inflate_generic_type) +STUB("IK1XJgSEKSc", sceUlpMgrVshInstallCmd) +STUB("IK2LeB7anM4", _ZN3JSC2VM29strictEvalActivationSpaceSlowEv) +STUB("IK3c4F7EKu0", _ZNK7WebCore14DocumentLoader28urlForHistoryReflectsFailureEv) +STUB("IK428RhUww4", mono_aot_Sce_Vsh_VoiceMsg_VoiceMsgWrapperunwind_info) +STUB("IK6MOOvNFqY", WKPageHandleMediaEvent) +STUB("IKENWUUd8bk", SSL_lockSessionCacheMutex) +STUB("IKG13mPMFrs", WKPreferencesGetTiledScrollingIndicatorVisible) +STUB( + "IKMbPO8eg2U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE5beginEv) +STUB("IKP8typ0QUk", sem_post) +STUB("IKPSxmtW3uc", mono_aot_Sce_Vsh_AppInstUtilWrapperjit_got) +STUB( + "IKPthntsCNo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEeqERKS9_) +STUB("IKQCt8asDCI", _ZNK3sce2Np9CppWebApi6Common6VectorIjE4sizeEv) +STUB("IKQimvG9Wqs", _ZN3sce4Json5Value3setENS0_9ValueTypeE) +STUB("IKS68kjJYm0", _ZN3sce7Toolkit2NP2V26Friend12Notification15BlocklistUpdateD2Ev) +STUB( + "IKSpe3nDEo4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEE5resetEPSA_) +STUB("IKV8uTXqGb0", RecvDeciPayload) +STUB("IKWgVjEKH+g", sceIduUtilIsInitialised) +STUB( + "IKehnzGx75M", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot11unsetoffsetEv) +STUB( + "IKf9ZYROJrk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEC1EPKS8_) +STUB("IKfdBNxQ0Nw", WKBundlePageCopyContextMenuItems) +STUB( + "IKfl43nS+JM", + _ZN7WebCore20UserGestureIndicatorC1EN3WTF8OptionalINS_26ProcessingUserGestureStateEEEPNS_8DocumentENS_15UserGestureTypeENS0_23ProcessInteractionStyleE) +STUB("IKk3EGj+xRI", sceUserServiceGetIsFakePlus) +STUB("IKnEk6g6ZV0", cairo_set_miter_limit) +STUB( + "IKo0Q3en1VQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEEaSERKSA_) +STUB("IKoxEK0uuYw", utext_openUTF8) +STUB( + "IKqpuRJIc7I", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB("IKtKACP9tMo", + _ZN3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsers10unsetlimitEv) +STUB( + "IKtqCFTWdSI", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V232WebApiErrorResponse_errorFactory7destroyEPNS3_25WebApiErrorResponse_errorE) +STUB( + "IKwL6ST8uNc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB( + "IL+rUK7iXck", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEEC1Ev) +STUB("IL3Wk7QuRhA", _ZN3sce2np7RingBuf4InitEPvm) +STUB( + "IL4RffHDATI", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28joinPlayerSessionAsSpectatorEiRKNS4_39ParameterToJoinPlayerSessionAsSpectatorERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_55PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("IL7SZSnxsK8", mono_profiler_startup) +STUB("IL9p2+BM-9c", sceAvControlSetHdcpEncryption) +STUB("ILCa64n-L8U", sqlite3_stmt_busy) +STUB( + "ILEdBDvJQlA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEmmEi) +STUB("ILNcdPVctW4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEC1ERKS7_) +STUB( + "ILOfNWw6DHU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEE3getEv) +STUB( + "ILT-Jjv6oZU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEC2Ev) +STUB("ILUBRWJbOSk", Java_com_sony_gemstack_io_FilePath_n_1stat) +STUB("ILWpTCmzS5k", _ZNK3WTF6String5splitERKS0_bRNS_6VectorIS0_Lm0ENS_15CrashOnOverflowELm16EEE) +STUB("ILkZXXuyNWc", _ZN7WebCore21ISOTrackEncryptionBoxC2ERKS0_) +STUB("ILl7f+knBmk", scePlayReadyBufferRealloc) +STUB("ILoDiOjJmLs", + _ZN3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse8fromJsonERKNS_4Json5ValueE) +STUB("ILp2f6r3-X8", _ZN3WTF8JSONImpl9ArrayBase10pushStringERKNS_6StringE) +STUB("ILsQyeegGIk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEdeEv) +STUB("ILv5Uxo6BUQ", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku6toJsonERNS_4Json5ValueEb) +STUB("ILv6XtwFEXU", + _ZN3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectatorC2EPNS1_6Common10LibContextE) +STUB( + "IM3kWrxXpBQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEptEv) +STUB("IM8g1QaDCLA", sceCesUcs2ToGb) +STUB("IM9G2Z-DP+o", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE8pushBackERKS6_) +STUB("IMIK7DINHN0", unum_close_59) +STUB( + "IMIhyUYqhEE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEaSERKS9_) +STUB("IMJ+G6b6cx0", WKViewSetViewAccessibilityClient) +STUB("IMK4c6Jow5M", _ZN2sh20InitBuiltInResourcesEP18ShBuiltInResources) +STUB("IMMFx7XRySI", _ZN7WebCore19MediaElementSession22addBehaviorRestrictionEj) +STUB("IMO1IAUN-hs", _ZN3WTF9WorkQueue8dispatchEONS_8FunctionIFvvEEE) +STUB("IMPIEgDTZ+8", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_12CategoryInfoEED1Ev) +STUB( + "IMS2WtXY6P4", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEEiRNS2_10LibContextEPT_m) +STUB( + "IMVv4As7s-s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEC2EPS6_PNS2_10LibContextE) +STUB("IMb5qS2iFR4", + _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets16hasrulesetFilterEv) +STUB("IMb6dZxKqrY", kmq_timedsend) +STUB("IMbYEIyon1E", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEeqERKS9_) +STUB("IMdbfLGVQ9g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEEppEi) +STUB("IMecW2MacSY", sceIduUtilSetSettingStr) +STUB("IMfkwkOLzok", mono_aot_Sce_Vsh_FileSelectorAdvanceunwind_info) +STUB( + "IMls1QwjlMg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEptEv) +STUB("IMt+UO5YoQI", fdiml) +STUB("IMx1-B6ju9g", YGNodeStyleSetMarginAuto) +STUB("IMzgZ3nDArM", sceNpWebApiCreateContextForContactsApp) +STUB("IN4P5pJADQY", sceFontGraphicsUpdateLocation) +STUB("INBbBXR8S18", uprv_decNumberSetBCD_67) +STUB( + "INCejvDuJFI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEppEi) +STUB( + "INESFOszz-Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("INJGaJROvII", _ZN3IPC15ArgumentDecoder6decodeERm) +STUB( + "INMYz2r8Nrs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEmmEi) +STUB("INOiD5QWHNg", sceSpPthreadCondInit) +STUB("INZSjlRcuyQ", _ZN3sce2np20BufferedStreamReader4ReadEPNS0_6HandleEPvmPm) +STUB("INfaRKgkmAk", _ZL23_sceLibcNewArrayNothrowmRKSt9nothrow_t) +STUB( + "INgczqD0H+w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEC1ERS7_) +STUB("INhaxAHVa1g", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12BlockedUsersEE19setCustomReturnCodeEi) +STUB("INiFOwj7shs", il2cpp_class_get_bitmap) +STUB("IO2yE8-du0I", _ZN9Inspector24RemoteControllableTargetaSERKS0_) +STUB("IO7omKdKcJY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEED2Ev) +STUB( + "IO88-PkBhAE", + _ZN3JSC12StringObject19getOwnPropertyNamesEPNS_8JSObjectEPNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("IO92NEwJXT8", xmlStrdup) +STUB("IOB4Kx96K5A", _ZN7WebCore9HTMLNames14aria_modalAttrE) +STUB("IOC0zyNzTM0", sceUpsrvInitialize) +STUB("IOHz+JeAITI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEC2ERKS7_) +STUB("IOIPajZ5VRk", mono_aot_Sce_Vsh_Accessor_Dbmethod_addresses) +STUB("IOL9BK+MWAM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEED2Ev) +STUB("IOOKHyE1Q1A", mono_trace_set_mask_string) +STUB("IOR2W7-ojAo", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead8fromJsonERKNS_4Json5ValueE) +STUB( + "IORgdrmPl8g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEC1EPS8_) +STUB( + "IOUS+zRfelk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEC2Ev) +STUB( + "IOW+oEg48NM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEE5resetEPS9_) +STUB("IOX7r0kt748", dl_iterate_phdr) +STUB( + "IOXt9u2CFGk", + _ZN3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBody8fromJsonERKNS_4Json5ValueE) +STUB("IOaozfGUAFI", WKBundleCreateWKDataFromUInt8Array) +STUB("IOdgHlCGU-k", sceVideoOutSubmitChangeBufferAttribute) +STUB("IOgsbCKaKDU", _ZN3WTF8JSONImpl9ArrayBase5beginEv) +STUB( + "IOjlK3Xe+hk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "IOknF4AQSck", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("IOnSvHzqu6A", sceKernelSetEventFlag) +STUB("IOqzwu89Go8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEED1Ev) +STUB( + "IOs-4aunNLk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEeqERKS9_) +STUB("IOscbdNr5dM", sceFsNsfsSetGlobalExclude) +STUB("IOshdGlvJ2E", _ZN7WebCore9HTMLNames13onmouseupAttrE) +STUB( + "IOzUq7HkaIc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEE3getEv) +STUB( + "IOzq33jNat8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEED2Ev) +STUB("IP+72JlN+vM", _ZN3sce2Np9CppWebApi12Leaderboards2V127RecordLargeDataResponseBodyD2Ev) +STUB( + "IP+PUCz9AKk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEmmEi) +STUB("IP1XczHKYPo", _ZNK7WebCore6JSNode21pushEventHandlerScopeEPN3JSC9ExecStateEPNS1_7JSScopeE) +STUB("IP1evjq7z2E", _ZN7WebCore20ISOOriginalFormatBoxC1ERKS0_) +STUB( + "IP5mOusVxcs", + _ZN3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform12setJoinStateERKNS3_9JoinStateE) +STUB( + "IP6G8B2IBVw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE7popBackEv) +STUB("IPF05cGyxsY", + _ZN3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResultsC2EPNS1_6Common10LibContextE) +STUB("IPHvnM5+g04", sceVoiceInitHQ) +STUB("IPKTmjbeQ6M", _ZN9Inspector13AgentRegistryD2Ev) +STUB("IPMQayxG57w", _ZN3sce7Toolkit2NP2V28Commerce10CategoriesD1Ev) +STUB("IPN-FRSrafk", sceCompanionUtilOptParamInitialize) +STUB("IPRwBF2+tkM", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18GameCustomDataItemEEeqERKS4_) +STUB("IPXVajGkXIY", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_8TempRankEED2Ev) +STUB( + "IPYcCvgbThg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEE3getEv) +STUB("IPaITrbKVzE", _ZN3sce7Toolkit2NP15AppSTLAllocatorIiE7addressERKi) +STUB("IPatA8RrJ+E", g_str_hash) +STUB("IPb1hd1wAGc", sceNpGetGamePresenceStatus) +STUB("IPgCymIpggk", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error6toJsonERNS_4Json5ValueEb) +STUB("IPjFXT1aVWI", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEEptEv) +STUB("IPjwywTNR8w", _LXp_sqrtx) +STUB("IPkyP6ig4sc", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody11offsetIsSetEv) +STUB("IPoYwwlMx-g", sceFontTextCodesStepBack) +STUB("IPq8+oLLggA", g_UnlinkedSourceCodePoison) +STUB("IQ-K3gfnd4Q", ubidi_setLine_67) +STUB("IQ3UD6SZbXo", sceVrTracker2Finalize) +STUB("IQGAIkGw5aw", __tsan_mutex_pre_unlock) +STUB("IQGcnzpiMSw", _ZNK3sce2Np9CppWebApi11Matchmaking2V15Error6toJsonERNS_4Json5ValueEb) +STUB( + "IQHXZTYq3X8", + _ZN3JSC8Bindings13RuntimeObject6createERNS_2VMEPNS_9StructureEON3WTF6RefPtrINS0_8InstanceENS6_13DumbPtrTraitsIS8_EEEE) +STUB("IQHhmv8BSvA", _ZN3sce7Toolkit2NP2V212ActivityFeed13UsersWhoLiked5resetEv) +STUB("IQIG9gEn6Jw", _ZN8meta_gen11MsvPromoter25allocKeyValueForIconTableEv) +STUB("IQMhNqP7Ulw", sceApplicationGetCpuUsage) +STUB("IQOP6McWJcY", sceHttpGetEpollId) +STUB( + "IQOTNobrCdI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEaSERKS7_) +STUB("IQOtjPPUJZM", _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScoreC1Ev) +STUB("IQT43N-zxfI", mono_aot_Sce_Vsh_GameCustomDatamethod_addresses) +STUB( + "IQXHVmHQ18Q", + _ZN3sce2Np9CppWebApi13InGameCatalog2V532ContentInteractiveElementFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_25ContentInteractiveElementEEE) +STUB( + "IQbdcSBY9KI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "IQcP+8suRX0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEEcvbEv) +STUB("IQen0wTU8Nc", WKPreferencesSetAggressiveTileRetentionEnabled) +STUB( + "IQhK2t2XQ2A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEC2EPNS2_10LibContextE) +STUB("IQiQ9qpBnmk", _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse12getMatchTypeEv) +STUB("IQl1M8Gynsw", sceGpuTraceParametersInit) +STUB("IQlNjqCFCxE", rgctx_fetch_trampoline_rgctx_11) +STUB("IQmLAxP+i94", sceCustomMusicCoreSendMulticastEvent) +STUB( + "IQndNU5dncQ", + _ZNK9Inspector18InjectedScriptBase27callFunctionWithEvalEnabledERN10Deprecated18ScriptFunctionCallERb) +STUB( + "IQoNQJ3BYfI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEC1EPS8_) +STUB("IQsOlh8f-sw", scePlayReadyReaderDecryptMultipleOpaque) +STUB("IQt8xe137uc", JNU_CallMethodByName) +STUB("IQtWgnrw6v8", sceAudioInChangeAppModuleState) +STUB("IQtb-TaIjSM", sceNpEntitlementAccessGenerateTransactionId) +STUB("IQtleGLL5pQ", sceFontGetRenderCharGlyphMetrics) +STUB( + "IQvYkyIEwRM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEixEm) +STUB("IR0dCpED2L8", udatpg_replaceFieldTypes_67) +STUB("IR0rE-hHJro", sceMusicCoreServerGetSpTrackInfo) +STUB( + "IR4SQb3g9r0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEppEi) +STUB("IR4x7c3IhCw", _ZN7WebCore9Scrollbar11mouseExitedEv) +STUB( + "IRGTsSr6eag", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "IRGiWZBQJNE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE21intrusive_ptr_sub_refEPS9_) +STUB("IRRGlO7Zjs8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEED1Ev) +STUB( + "IRSBlh1r9u0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEEC1ERKSC_) +STUB("IRUFZywbTT0", _LHypot) +STUB("IRVq0yCLrE4", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_6TicketEED1Ev) +STUB( + "IRVqdGwSNXE", + _ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_bRSt8ios_baseRNSt5_IosbIiE8_IostateERe) +STUB( + "IRfmUmm9bCU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEE7get_refEv) +STUB("IRhibSDgZhM", _ZN3sce7Toolkit2NP2V27Session8SessionsD2Ev) +STUB( + "IRiJe-BV7ow", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("IRiggzlySno", _ZN3WTF15AutomaticThread11shouldSleepERKNS_14AbstractLockerE) +STUB("IRk2LD8KwS0", _ZN3sce2Np9CppWebApi11UserProfile2V113BasicPresence14unsetAccountIdEv) +STUB("IRogVTONyrs", WKOpenPanelParametersGetCaptureEnabled) +STUB("IRt7wYbY6UM", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119NatConnectivityFrom9getToNat1Ev) +STUB("IRu1aYSj+vQ", _ZN3sce2Np9CppWebApi7Matches2V116RequestMatchTeamD1Ev) +STUB( + "IRvmALvGV48", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEE11release_refEv) +STUB( + "IRvuaQoct2o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE8pushBackERKS8_) +STUB( + "IRwNsWj78ys", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB( + "IS17Bw01fOQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE4sizeEv) +STUB("IS1N8Ih6JoU", d2i_PKCS8_PRIV_KEY_INFO_bio) +STUB("IS2P-VRkdhE", ucnv_open_67) +STUB( + "IS5AaLc0AvY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE5emptyEv) +STUB( + "IS6aVH6FbCs", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot13hasaccountIdsEv) +STUB( + "ISHK9QjN3R8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEdeEv) +STUB( + "ISHvKPB7tNI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEED1Ev) +STUB("ISICA2VSmtE", + _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody20unsetCreatedDateTimeEv) +STUB("ISNsr2lrhbU", sceNpRemotePlaySessionSignalingGetConnectionStatus) +STUB("ISTLytNGT0c", inet_aton) +STUB("ISUUjW5I+7Q", _ZN9JITBridge14shutdownFromVMEPS_b) +STUB("ISWh5+ZPHJQ", g_printerr) +STUB( + "ISZm9L0EhZU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE5beginEv) +STUB("ISdpIgzLH4g", mono_array_length) +STUB("ISeIA7PBwyc", sceSysUtilSendSystemNotificationWithDeviceIdRelatedToUser) +STUB( + "ISlaS8f-wU8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEaSERKS9_) +STUB("ISoryBJKvl4", sceUlpMgrInit) +STUB("ISrTNpjxmvI", + _ZN3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayer12setAccountIdEPKc) +STUB("ISssLJI2eC8", _ZN7WebCore16comparePositionsERKNS_15VisiblePositionES2_) +STUB("ISu-gIjBX9Q", _ZN7WebCore11HistoryItem11setReferrerERKN3WTF6StringE) +STUB( + "ISvDb1fS+mQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEC1EPS8_) +STUB( + "ISwS86QslL4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEE7add_refEv) +STUB( + "IT+9ZQ8EigA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEEptEv) +STUB("IT-rstTbKL8", _ZN9Inspector25RuntimeFrontendDispatcherdlEPv) +STUB( + "IT0nWT8rSCk", + _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets28hasxPsnAcceptPlatformNamePs5Ev) +STUB("IT1HfKWFBQ0", WKFramePolicyListenerDownload) +STUB( + "IT437RTPboc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEptEv) +STUB( + "IT4DyqEmct0", + _ZN3sce2Np9CppWebApi14SessionManager2V156PostGameSessionsSessionIdMemberPlayersRequestBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_28RequestJoinGameSessionPlayerEEEEEPNS9_INS3_49PostGameSessionsSessionIdMemberPlayersRequestBodyEEE) +STUB( + "IT4c2qbSDPk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEppEi) +STUB("IT65NTVqB2o", _ZN12video_parser5vpcom29SetDefaultFileAccessFunctionsEv) +STUB( + "ITD12A+N6Ho", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEED1Ev) +STUB("ITEVHDu-D80", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEC2ERS7_) +STUB("ITFLHIx2gXs", mono_aot_Sce_Vsh_FileSelectorjit_code_start) +STUB( + "ITFk-2jOpuU", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V134ConnectionQualityPropertiesFactory7destroyEPNS3_27ConnectionQualityPropertiesE) +STUB( + "ITIm7C+vjYc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "ITRZ7FEEcY4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEixEm) +STUB("ITUmvpBPaG0", sceNpTrophySetInfoGetTrophyFlagArray) +STUB("ITWHrq9voaU", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_22FriendsRankInformationEED1Ev) +STUB("ITaoiNTCieI", _ZN3sce2Np9CppWebApi14ConnectAccount2V214PSNError_errorD1Ev) +STUB("IThWGmihQUM", hb_font_make_immutable) +STUB("ITiSLeoTvQY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEED2Ev) +STUB("ITkjnzScbFE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEcvbEv) +STUB("ITnvTCJpUjk", _ZN3sce7Toolkit2NP2V29Challenge13ChallengeDataC1Ev) +STUB( + "ITqgZSC3WJo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEED2Ev) +STUB( + "ITrVRLRON5o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEED1Ev) +STUB( + "ITswihNXpQA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEeqERKS9_) +STUB("ITwB6pPwmRc", _ZNK3WTF3URL4dumpERNS_11PrintStreamE) +STUB( + "IU+2OE4mfjk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEmmEv) +STUB("IU+jMKipip4", WKPreferencesGetCSSOMViewScrollingAPIEnabled) +STUB( + "IU2hAFuSeo0", + _ZN9Inspector27DOMStorageBackendDispatcher6createERNS_17BackendDispatcherEPNS_34DOMStorageBackendDispatcherHandlerE) +STUB("IUHFPvFW4ig", + _ZN7WebCore21JSCSSStyleDeclaration10putByIndexEPN3JSC6JSCellEPNS1_9ExecStateEjNS1_7JSValueEb) +STUB("IUPWuNbTkng", _ZN3sce2Np9CppWebApi6Common6VectorIdE6insertENS2_8IteratorIdEERKdRS6_) +STUB("IURjY2yv8Lw", _ZNKSt9basic_iosIwSt11char_traitsIwEE4fillEv) +STUB( + "IUTbIVWt5GY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEEaSERKSA_) +STUB( + "IUU8e4EjBcs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEEC1Ev) +STUB("IUY0ho-22JE", _ZN7WebCore33stripLeadingAndTrailingHTMLSpacesERKN3WTF6StringE) +STUB("IUaDKNFBvJU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE8copyFromERKS7_) +STUB("IUcSgnLSpgQ", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_25ChallengeBinaryDataResultEE17getAdditionalInfoEv) +STUB("IUfBO5UIZNc", posix_spawnp) +STUB("IUjz2pR+uGU", + _ZN3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallbackC1Ev) +STUB("IUlOgy1pXxg", _Z15checkCreateRoomRKN3sce7Toolkit2NP2V28Matching7Request10CreateRoomE) +STUB("IUlpGnuoR1c", sceCompositorInitWithProcessOrder) +STUB( + "IUnIbMxYDwk", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "IUo0jjFPjFw", + _ZN9Inspector24RuntimeBackendDispatcher10saveResultElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "IUoTqBh9k5U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE3endEv) +STUB( + "IUoowjakya0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("IUrObgAAdJU", mono_aot_Sce_Vsh_Sl2_NativeQueueClientjit_code_end) +STUB("IUsLDXiVkIM", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V111LeaveReasonEEdeEv) +STUB("IUuJ+ktmcTM", _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile14unsetLanguagesEv) +STUB( + "IUwNZOMBgGM", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsC1EPNS1_6Common10LibContextE) +STUB("IV-ddS1D+U0", sceFaceTrackerGetResult) +STUB( + "IV1KvoudfKg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("IV2qBxyvR-c", + _ZN3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer8fromJsonERKNS_4Json5ValueE) +STUB("IVFVnpPIpRA", _ZNK3sce2Np9CppWebApi14SessionManager2V15Error9getReasonEv) +STUB("IVHQGH8yyB4", _ZN3PAL5Clock6createEv) +STUB("IVLJgTvIhS8", _ZTVN7WebCore13MIMETypeCacheE) +STUB( + "IVNb6lVPgzI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEC1EPS6_PNS2_10LibContextE) +STUB( + "IVR0zdfBhyw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("IVSbAEOxJ6I", sceNpTssGetStorage) +STUB( + "IVSf+WpM4vw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEaSERKS9_) +STUB( + "IVXOksHTWCU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEmmEi) +STUB("IVaowWLHMK0", WKBundleFrameSetAccessibleName) +STUB("IVbhiIVZelg", _ZN3JSC15ObjectPrototype6s_infoE) +STUB("IVd2CCSrXzY", sceUpsrvUpdateGetProgress) +STUB("IVfINJV3j44", _ZN9Inspector21InspectorRuntimeAgent27setTypeProfilerEnabledStateEb) +STUB("IVgh4w08BXs", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking10UsersRanksEE5resetEv) +STUB("IVjtw0AuSBE", sceHidControlSetHandleState) +STUB( + "IVjy5rAsRjI", + _ZN7WebCore9CookieJar6createEON3WTF3RefINS_22StorageSessionProviderENS1_13DumbPtrTraitsIS3_EEEE) +STUB( + "IVkp04L0Aaw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEcvbEv) +STUB( + "IVnLyh8Gme4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE6resizeEj) +STUB( + "IVo-R2v0Ofg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEC2Ev) +STUB("IW2JW4kuDcM", mono_aot_Sce_Vsh_Np_RifManagerunbox_trampoline_addresses) +STUB( + "IW6whqKXGW4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEE11release_refEv) +STUB("IW8IHo2Et4g", _ZN3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error6setTidEPKc) +STUB( + "IW8fvpY082g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEmmEv) +STUB("IWEla-izyTs", sceUserServiceGetImeRunCount) +STUB("IWIAgd-2uio", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy15TrophyPackGroupEE3getEv) +STUB("IWIBBdTHit4", sceKernelMapFlexibleMemory) +STUB("IWL2kqTzhYA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEEC1EPS5_PFvS7_EPNS2_10LibContextE) +STUB("IWOyO5jKuZg", scePadVirtualDeviceInsertData) +STUB("IWP1omvGMT8", + _ZN7WebCore19InspectorController26setInspectorFrontendClientEPNS_23InspectorFrontendClientE) +STUB("IWSCO20RwIY", sceShellCoreUtilSetSkipUpdateCheck) +STUB("IWW--70EDNQ", mono_aot_Sce_Vsh_EventAppjit_got) +STUB("IWalAn-guFs", sceHttpUriParse) +STUB( + "IWeoiRQNFUw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEE3getEv) +STUB("IWt0IzsPdsA", _ZN7WebCore13JSDOMRectList6s_infoE) +STUB( + "IWuC+kOf2Y8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEEC1ERKSA_) +STUB("IWybWbR-xvA", sceHmdReprojectionQueryOnionBuffAlign) +STUB( + "IWzkMZOnh88", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE8pushBackERKS8_) +STUB( + "IX1x-+bL+DU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEEaSERSA_) +STUB("IX23slKvtQI", sceHttp2GetCookieBox) +STUB( + "IX3hFDHY5CM", + _ZN3sce2Np9CppWebApi12Leaderboards2V112ErrorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5ErrorEEE) +STUB("IX49aL2rOGU", sceUsbStorageDialogInitialize) +STUB( + "IX4wH3rBSFY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEEC2Ev) +STUB("IXAh0unHcjI", YGNodeStyleSetMaxWidth) +STUB("IXDubFoyCw4", + _ZN3sce2Np9CppWebApi7Matches2V123ResponseMatchStatistics21unsetPlayerStatisticsEv) +STUB("IXEc2JYkmm4", _deleteOneNode) +STUB("IXPN0f-aJ+M", pio4lo_lo) +STUB( + "IXU-Mx6iCQY", + _ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead22unsetReceivedTimestampEv) +STUB("IXW-z8pggfg", _ZN3sce4Json11Initializer10initializeEPKNS0_14InitParameter2E) +STUB("IXW6gHdbpMc", _ZN7WebCore21UserContentControllerD2Ev) +STUB("IXWxhO3ZOBE", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS25AtomicAddToAndGetVariableEEC1Ev) +STUB("IXXc85fjOzA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUserC1Ev) +STUB("IXZPRy0BMI8", vm_send_CachedStelemrefMethods) +STUB("IXdwKopqJHo", sceHttpCacheCompleteRequest) +STUB("IXhS1ij+J1s", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V219WebApiFilterRequestC2EPNS1_6Common10LibContextE) +STUB("IXhjXNSGYI4", mono_aot_Sce_Vsh_VoiceMsg_VoiceMsgWrapperunbox_trampolines_end) +STUB("IXiXAHDFjeU", EVP_DecryptUpdate) +STUB("IXjSyZQ5ST4", _ZN3sce7Toolkit2NP10IdDatabase15addServiceLabelERKjNS1_11ServiceTypeE) +STUB("IXmfUaze9So", sceNpCommerceDialogOpen2) +STUB( + "IXo+Mr-jmNk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEEC1EPS6_PNS2_10LibContextE) +STUB("IXq9Nh8Ri2M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEptEv) +STUB("IXzpGKFGdHE", _ZN3sce3Xml3Dom8Document10initializeEPKNS0_11InitializerE) +STUB( + "IY2ho9ATLxM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEplEm) +STUB( + "IY58Gt+aEBA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "IYApcYk6uBY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "IYEzYmDr9lQ", + _ZN9Inspector21PageBackendDispatcherC1ERNS_17BackendDispatcherEPNS_28PageBackendDispatcherHandlerE) +STUB( + "IYNtFaD0AKg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE7popBackEv) +STUB( + "IYOdj77UnLw", + _ZN3sce2Np9CppWebApi14SessionManager2V134PostGameSessionsRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_27PostGameSessionsRequestBodyEEE) +STUB( + "IYOkZcT+auU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("IYPfcj3Vau0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEED2Ev) +STUB( + "IYPh02nYiog", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("IYU31xtHBBw", _ZN3sce3Xml3Dom4NodeC2ENS1_6NodeIdE) +STUB( + "IYVa+zfruWA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE5emptyEv) +STUB("IYZ+Mu+8tPo", sceRemoteplayChangeEnterKey) +STUB("IYbUhxZNmBg", utext_openCharacterIterator) +STUB("IYdmFM04Qhg", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadDataD2Ev) +STUB( + "IYe9MTtbYDU", + _ZN9Inspector14ConsoleMessageC2EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelEON3WTF6VectorINS5_12JSONLogValueELm0ENS5_15CrashOnOverflowELm16EEEPNS1_9ExecStateEm) +STUB("IYl5Sxwrxck", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEC2ERS7_) +STUB("IYneCFCupf4", _ZN3sce7Toolkit2NP17FriendRankRequestC1Ev) +STUB( + "IYv836e5h5Q", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEeqERKS9_) +STUB( + "IZ-8Xs8LBhI", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions31getxPSNSESSIONMANAGERSESSIONIDSEv) +STUB("IZ-qjhRqvjk", sceHttp2AbortRequest) +STUB( + "IZ3uBH30a-k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEC1EPNS2_10LibContextE) +STUB( + "IZA6dfgHzPA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE5beginEv) +STUB( + "IZDLssdA9c8", + _ZN9Inspector17BackendDispatcher19reportProtocolErrorEN3WTF8OptionalIlEENS0_15CommonErrorCodeERKNS1_6StringE) +STUB("IZOGdJ+LFFU", _ZN3sce2np7RingBuf5ClearEv) +STUB("IZP0-Laqy5A", _ULx86_64_sigreturn) +STUB("IZQ-9iLRAwQ", _ZN3sce2Np9CppWebApi6Common8IteratorIfEC2Ev) +STUB("IZS6yQzPhqI", _ZN3JSC22DeferredWatchpointFireD1Ev) +STUB("IZSMfDMAiNg", _ZN3sce7Toolkit2NP9Utilities6FutureIbEC2Ev) +STUB("IZT1hu34ju8", mono_aot_ClassLibrary1jit_code_end) +STUB( + "IZVFTWcFN0U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE5beginEv) +STUB("IZVxTbucCz0", _ZN12video_parser22VpMpegvideoAvcParseSPSEPhiPNS_21VpMpegvideoAvcSPSCtrlE) +STUB("IZZ9vGDAfN8", _MBCSData_67) +STUB("IZfLlaPXR+8", mono_aot_System_Datamethod_addresses) +STUB( + "IZfW86HNwlE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEC1EPS8_) +STUB( + "IZgCu5Ipy+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEE7add_refEv) +STUB( + "IZmTiNoxZ2o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEC1Ev) +STUB( + "IZnubzgOEZI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "IZoNTkBMYzY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEneERKS9_) +STUB( + "IZp+PlQo29E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEE3getEv) +STUB("IZrItPnflBM", sceAudioOutSetMorpheusWorkingMode) +STUB("IZsxZqY6xcE", _ZN3sce2np14HttpConnection4InitEiPKcS3_t) +STUB( + "IZtPnEpWWBE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE10setContextEPNS2_10LibContextE) +STUB("IZw2TINic+0", sceVideoOutGetCoredumpOutputMode) +STUB( + "IZwl0l2ROyk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEE7get_refEv) +STUB( + "IZyx8Xwge7Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEC1Ev) +STUB("IZz5Cy2O52Q", WKPreferencesSetInvisibleMediaAutoplayPermitted) +STUB( + "Ia+kelrtwqo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEC2ERS7_) +STUB("Ia5o2GTzUBw", mono_aot_System_Dataplt) +STUB( + "Ia6Vj5-RkKw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEeqERKS9_) +STUB("Ia71U49hehw", sceNpTrophySystemRegisterTitleUpdateCallback) +STUB( + "Ia8a242B4ts", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEC2Ev) +STUB( + "IaBjulBjZ7s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("IaCJeaXDWlk", UCNV_FROM_U_CALLBACK_ESCAPE_59) +STUB( + "IaCNd2JlV3A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEEC2ERSA_) +STUB( + "IaGICOSEgao", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE8pushBackERKS8_) +STUB( + "IaGnloEa0YY", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEEiRNS2_10LibContextEPT_m) +STUB("IaIvX3kgyb0", _ZN3sce4Json5Array8iteratorC1ERKS2_) +STUB("IaJtwUHdpXs", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOfferD2Ev) +STUB( + "IaLhCKXKvmU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEE7add_refEv) +STUB("IaNsGTooh7A", _ZNK7WebCore26ISOProtectionSchemeInfoBox20schemeInformationBoxEv) +STUB( + "IaPBtXN50hQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("IaQoBoi2WTQ", _ZN7WebCore13NodeTraversal19nextAncestorSiblingERKNS_4NodeEPS2_) +STUB( + "IaRaDSINYug", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEixEm) +STUB("IaVn+dReaVw", _ZN7WebCore9HTMLNames10schemeAttrE) +STUB("IaYzxLnoJWE", _ZN9Inspector15AsyncStackTraceD2Ev) +STUB("IaZXJ9M79uo", sceAudioOut2UserDestroy) +STUB( + "IadOUrZnuWM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("IafI2PxcPnQ", scePthreadMutexTimedlock) +STUB("IafjN9FBQyM", ShInitialize) +STUB("IanwrjjBJ5Y", il2cpp_object_new) +STUB("IapqW01xOP4", mono_aot_Sce_Vsh_SQLiteAuxunbox_trampolines_end) +STUB("IaxgG9UumKo", + _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributesC2EPNS1_6Common10LibContextE) +STUB("Ib1SMmbr07k", _ZN3sce16CommonDialogUtil6ClientD0Ev) +STUB( + "IbJ5vm1gpM4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE10setContextEPNS2_10LibContextE) +STUB("IbM-EN54IKo", + _ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId8hasrangeEv) +STUB( + "IbVu5gq9eqQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEC2ERKS7_) +STUB( + "IbWx007Acn4", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERSB_) +STUB("IbYAd4QkY6s", _ZNK3sce2Np9CppWebApi15Personalization2V15Error9getReasonEv) +STUB( + "IbYL9tYYHuM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "Ibk4RNlFKRY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "IboOvmmOUvI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("IbuWiz2xOr0", _ZN3JSC4Heap10collectNowENS_15SynchronousnessENS_9GCRequestE) +STUB( + "Ic-vLNUcaYQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE7reserveEi) +STUB("Ic0HUCvXNJQ", mono_aot_Sce_Vsh_Sl2_Sl2Commonjit_code_start) +STUB("Ic5GhDpCRDw", umsg_applyPattern_67) +STUB("Ic8JMhUFe88", FTA_Add_Module_psnames) +STUB("IcFlF9RbS5Q", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeaders7destroyEPS5_) +STUB("IcM2f5EoRRA", sceUserServiceSetUserGroupIndex) +STUB( + "IcNiAfK8N74", + _ZN23sceMetadataReaderWriter13ParserManager18registerParserInfoERKSt6vectorINS_10ParserInfoESaIS2_EE) +STUB("IcPfdX-tqP8", _ZN3sce2Np9CppWebApi14SessionManager2V115SearchConditionD2Ev) +STUB("Icc9+aRUQfQ", _ZN3sce2np10NpOnlineId16SetNpOnlineIdStrEPKc) +STUB( + "Icpx1uc-QMI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("IcuECtP3L0E", _ZN3sce7Toolkit2NP2V24Core4termERKNS3_7Request10TermParamsE) +STUB( + "IcyxwGmnFyI", + _ZN7WebCore16BlobRegistryImpl18appendStorageItemsEPNS_8BlobDataERKN3WTF6VectorINS_12BlobDataItemELm0ENS3_15CrashOnOverflowELm16EEExx) +STUB( + "IczieOiPYC0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEEC2ERKS9_) +STUB("Id-3QAPx0kI", _ZN7WebCore9HTMLNames7lowAttrE) +STUB( + "Id4abKCSTww", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEppEv) +STUB( + "IdBfsPTQ-TM", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeAccountId2OnlineIdBatch9terminateEv) +STUB("IdDEzfNzOq0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEC1ERS7_) +STUB("IdI2f+xHIeA", sceVrTracker2ResetLocalCoordinate) +STUB("IdIO1h6EW3I", _ZNK3WTF12ASCIILiteral4dumpERNS_11PrintStreamE) +STUB("IdKE2DrNBck", cairo_translate) +STUB( + "IdLN7RFP2jU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEE7get_refEv) +STUB("IdPdE-du09Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEED1Ev) +STUB("IdQuLJhnPAQ", sceKernelGetDefaultToolMemorySize) +STUB("IdQufwgHtEM", _ZN3JSC8Bindings8Instance19createRuntimeObjectEPNS_14JSGlobalObjectE) +STUB("IdV-tXejEGQ", + _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE5_FputES3_RSt8ios_basewPKcm) +STUB("IdWhZ0SM7JA", _FPmsw) +STUB("IdYVP-rBXDY", _ZN3JSC20WriteBarrierCounters22usesWithBarrierFromCppE) +STUB( + "IddVOaANQVw", + _ZN9Inspector17ScriptDebugServer27dispatchFailedToParseSourceERKN3WTF7HashSetIPNS_19ScriptDebugListenerENS1_7PtrHashIS4_EENS1_10HashTraitsIS4_EEEEPN3JSC14SourceProviderEiRKNS1_6StringE) +STUB( + "Ideb4SYEkDI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE8copyFromERKS9_) +STUB("Idffwf3yh8s", sceGnmDrawInitDefaultHardwareState) +STUB("Idjfy4LiGgs", _ZN12Mp4Retriever10GetDbFTypeENS_15mp4DbFieldIdTagE) +STUB("Idp+8dpnrr8", _ZN3WTF11PrintStream6printfEPKcz) +STUB("IdqtjitnIRY", _ZTVN7WebCore18TextureMapperLayerE) +STUB("IdtpBr-PoD0", FT_RoundFix) +STUB("IdwCoiYMq2s", _ZN3sce7Toolkit2NP2V28Matching26MemberSignalingInformationD1Ev) +STUB("IdxVRT5V+l4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEC1ERKS7_) +STUB( + "Ie-6RHWcLgI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEE11release_refEv) +STUB( + "Ie0XotctMT8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEaSERKS9_) +STUB( + "Ie24i+v1-ok", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEEaSERKSA_) +STUB( + "Ie7Ip7r1WHI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "IeDat5zDkpk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "IeEXI2Wol-Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE5emptyEv) +STUB("IeJhkJt7BAI", mono_get_inflated_method) +STUB("IeNj+OcWgU8", sceNpBase64UrlEncoder) +STUB("IePGF3SWJxY", _ZN3JSC7Symbols25typedArraySortPrivateNameE) +STUB("IeQSRVoUfPw", WKNotificationManagerProviderDidCloseNotifications) +STUB("IeQy-clnfbs", jpeg_fdct_2x2) +STUB("IeSffOIDQrM", _ZN3sce7Toolkit2NP7TssDataC1Ev) +STUB("IeXW4fnPkyw", sceDebugCreatePerfScratchDataArea) +STUB( + "IeYWE8c0q2A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE8copyFromERKS9_) +STUB("IefAhNUAivM", _ZN3sce2np9NpTitleIdC2ERKS1_) +STUB("Iep44h1nOdg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEEeqERKS7_) +STUB("IesIjBGNW1g", __asan_stack_malloc_always_7) +STUB("IewcaRR3F8I", FTA_Export_Module_pshinter) +STUB("IeyIJiE74KM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEEC1ERS6_) +STUB( + "IezD5dF6NbQ", + _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest15setInGameRosterERKNS1_6Common12IntrusivePtrINS3_19RequestInGameRosterEEE) +STUB("If-x7dEm3i0", __tsan_atomic8_compare_exchange_val) +STUB( + "If4d2h3LVRk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEEC2ERKSA_) +STUB("If4qzpAueWU", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13SessionMemberEE7destroyEPS3_) +STUB("If7x201SLlk", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS12TusVariablesEE12deepCopyFromERS7_) +STUB( + "If9RgExlSq8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEC1ERS7_) +STUB("IfA9te0tIEU", fuse_fs_truncate) +STUB("IfAIT0GGlwI", mono_debugger_agent_parse_options) +STUB( + "IfAUdKkXJxk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEEdeEv) +STUB( + "IfEG-rBZiFA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("IfIiHBio398", _ZN7WebCore13HitTestResultC1Ev) +STUB( + "IfTQdBY7i2E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEC2EPS6_PNS2_10LibContextE) +STUB( + "IfVDQlqoXso", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEEaSERKSA_) +STUB("IfVNNqChk5s", _ZN3sce7Toolkit2NP2V210Tournament7Request10GetBracketD2Ev) +STUB("IfWUkB7Snkc", _ZTSSt15basic_streambufIcSt11char_traitsIcEE) +STUB("IfWiQyx3HIM", u_catclose_67) +STUB( + "IfYHZyD055E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEED1Ev) +STUB("IfYl2LuI8UI", + _ZN3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator17unsetPushContextsEv) +STUB("Ifa0CArZ1Yg", _ZN7WebCore13HitTestResultC2ERKNS_11LayoutPointEjjjj) +STUB("IfiN+-oeVWI", scePlayGoGetSupportedOptionalChunk) +STUB( + "IfkAwhCL2HI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE5beginEv) +STUB("IfkZ1ee1C38", _ZN3sce2Np9CppWebApi6Common6VectorIdEC2Ev) +STUB( + "IflGKIivNMo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("IfoowZgAFX8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEEC2ERS7_) +STUB( + "Ig+3HTnJQAQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEC1Ev) +STUB("Ig+vNmL2bGg", uprv_decContextSetStatusFromStringQuiet_67) +STUB( + "Ig-i1V0lg0w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEE5resetEPS6_) +STUB("Ig0Ts6ju8rQ", glVertexAttrib4fv) +STUB( + "Ig2+t-HkcYs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEppEv) +STUB( + "Ig2ExPN+1fE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEC2EPS8_) +STUB("Ig2IVCBx4qY", jinit_1pass_quantizer) +STUB("Ig3LXTERtzc", Java_java_net_PlainDatagramSocketImpl_leave) +STUB("IgBFcd4cF28", cairo_font_face_destroy) +STUB( + "IgBue4dsEJY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEmmEi) +STUB("IgFReVl+gKY", mono_btls_x509_revoked_get_serial_number) +STUB("IgMVFBKHGFE", sceClAudiodecDecode) +STUB("IgOXtx50ZWM", sceVrTrackerSubmitCompute) +STUB( + "IgPKVNSl81I", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("IgU++WJoTEQ", fuse_fs_release) +STUB("Iga-UEf-wR4", _ZN7WebCore8SVGNames6x1AttrE) +STUB("Igc1Aj8pSII", _ZThn96_N7WebCore14XMLHttpRequestD1Ev) +STUB("IgcBCyr+6hI", GCC_except_table473) +STUB("IgerFXFR9Ts", _ZTVN7WebCore14JSVoidCallbackE) +STUB( + "IgfMQ4Dmo14", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEE3getEv) +STUB("IgguX1ZMXMM", sceUpsrvUpdateGetUrlForFeatureList) +STUB("IgjnabrP4Sg", _ZN3sce2Np9CppWebApi14SessionManager2V117SearchGameSessionD2Ev) +STUB("IglfWxaajs0", jpeg_aritab) +STUB("IglowNcOePQ", __sys_opmc_get_hw) +STUB("IgpdIk+DbIY", _ZN3JSC8SubspaceD2Ev) +STUB("IgqBZdkIvqM", sceApplicationRaiseException) +STUB( + "IgujjDf7Ypw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEneERKS9_) +STUB( + "IgwYJEYwPME", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEE21intrusive_ptr_sub_refEPS7_) +STUB( + "Igyhh+Xm0s4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEE7get_refEv) +STUB("Ih1gA1ynWjk", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead16customData1IsSetEv) +STUB("Ih3xsOhFi8A", sceBluetoothHidSetOutputReport) +STUB( + "Ih4tagjei1Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEptEv) +STUB("Ih63dOPnHP0", + _ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody20unsetCreatedDateTimeEv) +STUB("Ih70NW9VAdQ", monoeg_g_list_delete_link) +STUB("IhBYnjoZghA", mono_aot_Sce_Vsh_UserServiceWrapperunbox_trampoline_addresses) +STUB("IhHOpdG2KGo", YGNodeStyleSetWidth) +STUB( + "IhKCPMyGMOM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEmmEv) +STUB("IhOHULApF5M", _ZN4Manx14NetworkProfile10initializeEv) +STUB("IhPWA3mYDk4", JSValueIsDate) +STUB( + "IhRgrFc69cU", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditionsC1Ev) +STUB( + "IhXONMfk02w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEEC2ERSA_) +STUB("IhYgO74v0+c", _ZN3sce7Toolkit2NP13InviteMessageC2Ev) +STUB( + "IhbD9z6lGbQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE8copyFromERKS9_) +STUB( + "IhdIriJ6AF8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEC2Ev) +STUB("IhlLdSAX+Jk", sceLncUtilKillLocalProcess) +STUB("Ihz5iWMnHDY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEppEi) +STUB( + "Ii7ADHLAYg4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody30setComparedLastUpdatedDateTimeERK10SceRtcTick) +STUB( + "Ii7cu0+7wT4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE5beginEv) +STUB("IiBD2hwp06k", u_fadopt_67) +STUB("IiCJTLueaWU", VerifyFixClassname) +STUB("IiFFNfPTaaI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEC1ERS7_) +STUB("IiHEJbI83cQ", mono_aot_Sce_Vsh_AppDbWrappermethod_addresses) +STUB( + "IiIc8nBGjQU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "IiMKMaQu+Ns", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE3endEv) +STUB("IiMePajfzUI", _ZN7WebCore11DisplayList13ClipOutToPathD0Ev) +STUB("IiROOhdN-fA", _ZN3IPC10Connection24createSyncMessageEncoderENS_15StringReferenceES1_mRm) +STUB("IiRQGia5YSU", _ZN3JSC2VM6createENS_8HeapTypeE) +STUB( + "IiTx9BwArWM", + _ZN7WebCore23CoordinatedBackingStore25paintTilesToTextureMapperERN3WTF6VectorIPNS_17TextureMapperTileELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEERNS_13TextureMapperERKNS_20TransformationMatrixEfRKNS_9FloatRectE) +STUB( + "IiZLH-rfAMQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEC1EPS8_) +STUB( + "IiZkIZWR2RY", + _ZN7WebCore11JSDOMWindow25getOwnPropertySlotByIndexEPN3JSC8JSObjectEPNS1_9ExecStateEjRNS1_12PropertySlotE) +STUB("IiofFKEgSew", aio_write) +STUB("IitctlDZLbw", _ZNK7WebCore14ResourceLoader24isAlwaysOnLoggingAllowedEv) +STUB("IiwhRynrDnQ", sceUserServiceSetPartySettingFlags) +STUB("IizpdlgPdpU", CA_MGMT_convertKeyDER) +STUB("Ij+pmlAPEes", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V510AnnotationEEppEv) +STUB("Ij+ryuEClXQ", sceKernelDeleteAmprSystemEvent) +STUB("Ij73Rv0ZhKI", _ZN7WebCore9HTMLNames12onsearchAttrE) +STUB("IjDmpUrMSz0", AsyncStorageRemoveItemNative) +STUB("IjFLMR3MH3M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEEmmEv) +STUB("IjOpzNzl57o", _ZN3sce2np13NpTitleSecretC1EPKvm) +STUB( + "IjdQmtSfABk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEEptEv) +STUB( + "IjfM9pizqko", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "IjjVp9K7RsI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEEdeEv) +STUB("IjlonFkCFDs", __addvti3) +STUB( + "Ijml4LILSRE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEneERKS9_) +STUB( + "IjpCgLp4HnA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEEC1ERSA_) +STUB("IjpRgk25doc", ucol_getShortDefinitionString_67) +STUB("Ijpk2+gvzms", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEC1ERS7_) +STUB("IjquEAbfizc", FTA_Add_Module_cff) +STUB("Ijs9M5v0FjA", _ZN3JSC7Symbols24thisTimeValuePrivateNameE) +STUB("IjwftUb9Xfs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEE5resetEPS6_) +STUB("IjytoQHKfwc", _ZN3sce7Toolkit2NP2V28Commerce10CategoriesC1ERKS4_) +STUB("Ik-KpLTlf7Q", sceHttpTerm) +STUB("Ik17GQynFpw", FT_Get_PS_Font_Value) +STUB("Ik1djcgFM70", _ZN3JSC22ArrayAllocationProfile13updateProfileEv) +STUB("Ik5TMINZINo", sceVideoCoreInterfaceAddVblankEvent) +STUB("Ik7a6r6a7iw", JSValueIsString) +STUB("Ik7hrJEazOQ", cpp_demangle_read_sname) +STUB("Ik9OVKn9LZA", Java_com_sony_bdjstack_core_CoreApp_getName) +STUB("IkBCxG+o4Nk", sceNetConfigWlanInfraLeave) +STUB("IkDe9ajjgrc", _ZN7WebCore15isEndOfDocumentERKNS_15VisiblePositionE) +STUB( + "IkDmtqnlt3o", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "IkEr7pWvRjQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEE3getEv) +STUB("IkFbCRm9afY", _ZN3sce7Toolkit2NP15AppSTLAllocatorItEC2ERKS3_) +STUB("IkFdFkjVeQg", AnnotateHappensAfter) +STUB("IkFhWRZ5Jb8", _ZN9Inspector15ScriptArguments24getFirstArgumentAsStringERN3WTF6StringE) +STUB("IkG9w8ZtXA8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEE7get_refEv) +STUB( + "IkHkCEZ5fi0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEC1EPNS2_10LibContextE) +STUB( + "IkJzqOW1yps", + _ZN8meta_gen11MsvPromoter34setKeyValue_TBLV_VideoProfileLevelENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB("IkL62FMpIpo", sceNpInGameMessagePrepareA) +STUB("IkLRlZVvw5g", nsnp_FinSession) +STUB("IkSpxZtcGFs", _ZN7WebCore11MathMLNames10lspaceAttrE) +STUB("IkWJtQkfvZs", ECDSA_verify) +STUB("IkXHxiU0HyQ", ucol_getContractions_67) +STUB("IkaQNfPt-mk", __asan_set_shadow_f2) +STUB( + "IkakYWVFoVc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEC1EPKS8_) +STUB("IkhwWUN3o3U", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS15TusDataStatusesEE12deepCopyFromERS7_) +STUB("IkiI5iE7d98", JSObjectGetTypedArrayByteLength) +STUB("IkjZOyRXN4A", sceHandTrackerInitialize) +STUB("IklPwMoko10", sceMusicCoreServerGetStatusOfTracks) +STUB( + "IklXXM53-+M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEE3getEv) +STUB("IkmBuACxfkg", _ZN7WebCore28InspectorFrontendClientLocal26isTimelineProfilingEnabledEv) +STUB("IknlaoECxqg", _ZNK7WebCore18AdClickAttribution8referrerEv) +STUB("IkoI44e0OXc", __tsan_release) +STUB( + "Ikp+P7mDU+c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "Iks8sHd2ta0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEC1EPS6_PNS2_10LibContextE) +STUB( + "IksYJqCBw94", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE8capacityEv) +STUB( + "Ikt1f83OovA", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToSendGameSessionMessage10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_50PostGameSessionsSessionIdSessionMessageRequestBodyEEE) +STUB( + "IkxgD402ShY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEC2ERKS7_) +STUB( + "Ikzsu2oWDlE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE7popBackEv) +STUB("Il-gr2IO+fY", _ZN3WTF11OSAllocator16reserveAndCommitEmmNS0_5UsageEbb) +STUB("Il1VIdvQNQo", _ZN3WTF17double_conversion23StringToDoubleConverter14StringToDoubleEPKtmPm) +STUB( + "Il4GGxx-NAY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("Il4v0nCRffo", __asan_set_error_exit_code) +STUB( + "Il8NS5XPSmA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEaSERKS7_) +STUB( + "IlJMl34X3IM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEE7add_refEv) +STUB("IlJiXLRCfks", WKPreferencesGetNotificationsEnabled) +STUB("IlMM-ZmxY28", _ZNK7WebCore9FrameView22baseLayoutViewportSizeEv) +STUB("IlMqEkBLuBE", _ZN3sce2Np9CppWebApi6Common13ConstIteratorImED2Ev) +STUB("IlMyo-kG9VM", _ZN7WebCore7Element12setInnerHTMLERKN3WTF6StringE) +STUB("IlO3gE1DNoI", WKContextConfigurationSetUsesWebProcessCache) +STUB( + "IlQQXWwwDt8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEeqERKS9_) +STUB( + "IlRY+QYc-s0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEC1EPNS2_10LibContextE) +STUB( + "IlS2X8Bp7r0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEEaSERSA_) +STUB( + "IlWuwwKXV7U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "IlYelQk7hFo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEmmEi) +STUB("IlYsJXsK75Y", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10getString9Ev) +STUB("IldAc7Eq5-c", sceShellCoreUtilNotifyYouTubeAccountLinkStatusChanged) +STUB("Ile1Uews8N8", _ZNK7WebCore9ImageData6heightEv) +STUB( + "IlfkhhJCjZQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "IlhEYd0ntds", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE8copyFromERKS9_) +STUB("IljzwFmlBKg", sceCesUtf8StrGetMbcsLen) +STUB( + "Ilki4lk8XJo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE8pushBackERKS8_) +STUB( + "IlmPmUCAopA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEEaSERS9_) +STUB("IlmoSbxNwxU", uplrules_close_67) +STUB("Ilp-RrniJ8w", mono_aot_System_Transactionsmethod_addresses) +STUB("IlsmvBtMkak", _ZNK3sce4Json5Value9getObjectEv) +STUB( + "IluXM--ej6k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEED1Ev) +STUB("Im+jOoa5WAI", sceAudio3dGetDefaultOpenParameters) +STUB("Im10hfUMRTY", + _ZNK3sce2Np9CppWebApi7Matches2V128RequestTemporaryMatchResults6toJsonERNS_4Json5ValueEb) +STUB("Im1vS6CqDb4", _ZN3sce2Np9CppWebApi10Activities2V114UserActivities8ActivityD2Ev) +STUB("Im235TKzFr4", sceNpTrophy2SystemDebugLockTrophy) +STUB("Im55VJ-Bekc", swprintf_s) +STUB( + "Im7FDyI-SjQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEC1EPS6_PNS2_10LibContextE) +STUB("Im8eHiDTMeY", _ZN3WTF5equalEPKNS_10StringImplEPKDsj) +STUB("Im92wGL1848", _ZN3JSC7Symbols36promiseResolveThenableJobPrivateNameE) +STUB("ImGu0XisCrg", sceCustomMusicCoreStartOperation) +STUB( + "ImJHpARwOeA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEaSERKS9_) +STUB("ImQzZdQP6Lk", sceVnaSetWakeUpPhraseTelemetry) +STUB( + "ImS2Dm4Ldfg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEeqERKS9_) +STUB("ImU42jms6yo", rgctx_fetch_trampoline_mrgctx_26_p) +STUB("ImXI9qdLfc0", sceKernelDeleteACInfo) +STUB( + "ImYWfERhuRY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEcvbEv) +STUB("ImblNB7fVVU", _ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE5_TidyEv) +STUB("ImcbXg63P+g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEcvbEv) +STUB("Imhs4kQbeps", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEE5resetEPS6_) +STUB( + "Imk3P+Ewgks", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "ImkXHgmc9LE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEEC1ERKSA_) +STUB( + "ImknYD1GOGI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEC1Ev) +STUB("ImoON94w1mc", monoeg_g_str_has_prefix) +STUB("Imq55VAs2yM", + _ZNK3sce2Np9CppWebApi7Matches2V121ResponsePlayerResults6toJsonERNS_4Json5ValueEb) +STUB( + "Ims3CoGy37o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEC2Ev) +STUB( + "ImuSwPyPC7I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE3endEv) +STUB( + "In+3UxUA24c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEE7add_refEv) +STUB( + "In-t-CCR6Hs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEC1Ev) +STUB( + "In0UDhhMBxk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB("In5ugGO8zCE", _ZNK9Inspector14ConsoleMessage3urlEv) +STUB("InCF5XTv5UQ", + _ZN7bmalloc29StaticPerProcessStorageTraitsINS_25ARC4RandomNumberGeneratorEE7Storage7s_mutexE) +STUB("InJfgR2qxOU", _ZN3JSC37JSSegmentedVariableObjectHeapCellTypeD1Ev) +STUB( + "InOsYBrvIT8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEE3getEv) +STUB( + "InPjtmb+klM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEC1Ev) +STUB("InW+GhGRr70", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEEcvbEv) +STUB("InWCDUOqVQI", WKBundlePageOverlaySetNeedsDisplay) +STUB("Inh5Z-OfpQo", _ZN7WebCore11MediaPlayer13prepareToPlayEv) +STUB("Ini4tYD9VF4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEE7get_refEv) +STUB("Inld2SiNs+E", i2d_X509_PUBKEY) +STUB( + "InmSC9KxjRY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE7popBackEv) +STUB("InoC17C0v7k", isatty) +STUB("Inp1lfL+Jdw", sceNetEpollDestroy) +STUB("InrAKcZaX-A", _ZN7WebCore19InspectorController13willCompositeERNS_5FrameE) +STUB( + "IntAnFb+tw0", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERf) +STUB( + "InvFYx0uE24", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE21intrusive_ptr_add_refEPS7_) +STUB("InwrU6cuX-o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEED2Ev) +STUB("Io7kh1LHDoM", sceNpWebApi2AddMultipartPart) +STUB("Io9+nTKXZtA", pthread_mutex_timedlock) +STUB("IoDV+oqRRWo", _ZN7WebCore11MediaPlayer13addAudioTrackERNS_17AudioTrackPrivateE) +STUB("IoGwVQHItWY", _ZNK7WebCore4Node7baseURIEv) +STUB("IoKIpNf9EK0", sceImeDialogInitInternal3) +STUB("IoNHhprXb8k", ucnv_getAlias) +STUB("IoNVJKklWm0", _ZN7Nicosia29ContentLayerTextureMapperImpl19swapBuffersIfNeededEv) +STUB("IoNgvbVSw24", _ZN15AbstractStorage7ServiceD0Ev) +STUB("IoT+E4Ndsko", utrie_serialize_67) +STUB("IoWRtY4cG98", + _ZThn664_N7WebCore24CoordinatedGraphicsLayer39tiledBackingStoreHasPendingTileCreationEv) +STUB("IoY-NWspCE4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEptEv) +STUB("Iok1WdvAROg", _ZNSt10filesystem7_UnlinkEPKc) +STUB("Iok2hcJIyDQ", _ZN3sce7Toolkit2NP2V211SharedMedia11ScreenshotsC2Ev) +STUB("Iol5fnRzOY4", mono_aot_System_Reactive_Linqplt) +STUB("IomWHpTgpI8", _ZN3sce7Toolkit2NP2V28Matching7Request12SearchClauseC1Ev) +STUB("IonqsnFkdJY", _ZNK3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer15playerNameIsSetEv) +STUB( + "Ioq8NQrsmFk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEppEv) +STUB( + "IoxOGiBpJx8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEC2EPNS2_10LibContextE) +STUB( + "IoyfppKltNI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEE11get_deleterEv) +STUB( + "IozhreQwKiY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEmmEi) +STUB( + "Ip+RDR889jI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEixEm) +STUB("Ip0oCnCtcT0", WKPreferencesGetReferrerPolicyAttributeEnabled) +STUB("Ip3FGULx7ng", _ZN3WTF8JSONImpl5ValueC2ERKNS_6StringE) +STUB("Ip4A7VSdh1U", ures_getFunctionalEquivalent_67) +STUB( + "Ip7YxSfveEA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEEptEv) +STUB( + "Ip9EaGpd9Oc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEmmEv) +STUB( + "IpCH3U9wFW0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEED1Ev) +STUB("IpEZSWzuMGg", sceMoveTrackerCalibrateReset) +STUB( + "IpI6J3ZJyu0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEC1EPNS2_10LibContextE) +STUB("IpMhRnVgJUU", sceVideoOutSysGetColorConversionStatus) +STUB("IpQR5wAgCfk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEC2ERS7_) +STUB("IpWmqKEuLxU", _ZN3sce2Np9CppWebApi11Matchmaking2V15CauseC2EPNS1_6Common10LibContextE) +STUB("Ipi-U6neCxo", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE4sizeEv) +STUB( + "Ipji7oPuouA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEcvbEv) +STUB( + "Ipjqmw2QplY", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponse13setRestrictedERKb) +STUB( + "IpnaAcLpS94", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEE7add_refEv) +STUB("Ipo19kq3hWA", _ZNK3JSC8Profiler8Database4toJSEPNS_14JSGlobalObjectE) +STUB( + "IpoZ1weXvEM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE8copyFromERKS9_) +STUB( + "Iq-EhQvK4lQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEneERKS9_) +STUB("Iq-iZyQ4BVQ", sceNpUniversalDataSystemIntCreateHandle) +STUB("Iq-nLBtQE7U", _ZN7WebCore23ApplicationCacheStorage21setDefaultOriginQuotaEl) +STUB( + "Iq1WaXARONA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEneERKS9_) +STUB( + "IqBl52G8-3E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEmmEi) +STUB( + "IqBz76IcuC4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEED2Ev) +STUB("IqCW3eAnmi8", u_strFromUTF8WithSub_67) +STUB("IqK5rvqsy9A", + _ZN15AbstractStorage14TwitterStorageC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB( + "IqLzUI7jQow", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEEC1ERSA_) +STUB( + "IqNj2WUNlKw", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getInteger8Ev) +STUB( + "IqW2e2jbAd8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEC2EPS8_) +STUB( + "IqZK9n5Unt8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEED1Ev) +STUB( + "IqZuVex4Q7k", + _ZN7WebCore11DisplayList12PutImageDataC1ENS_22AlphaPremultiplicationEON3WTF3RefINS_9ImageDataENS3_13DumbPtrTraitsIS5_EEEERKNS_7IntRectERKNS_8IntPointES2_) +STUB("IqaPZ1ZMC+c", sceNpStartApp) +STUB("IqcrfZx0zKs", _ZN7WebCore14ScrollableArea28setScrollOffsetFromInternalsERKNS_8IntPointE) +STUB("IqdYYfCAHuU", delegate_virtual_invoke_imt_12_p) +STUB( + "IqepZk2LrLY", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB("IqjRfua8gz8", u_charAge_67) +STUB("Iqpp9WOrXeE", WKPageSetMaintainsInactiveSelection) +STUB("IqriIZYvAL8", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V13MmrD1Ev) +STUB("IqvI72sPVyw", _ZN9Inspector24TargetFrontendDispatcherC2ERNS_14FrontendRouterE) +STUB("Iqz2w4IZfqk", scePatchCheckerClearCache) +STUB( + "IqzB5JsCCLg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE5emptyEv) +STUB( + "Ir+RBCg8j2s", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "Ir0lsyLpQB8", + _ZN9Inspector20DOMBackendDispatcher12setNodeValueElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("Ir13Y5FbeeA", sceAudioOut2ReportUnregisterHandler) +STUB("Ir1Bso0XStA", mono_debug_close_mono_symbol_file) +STUB("IrAYtHdJ2HA", _ZN7WebCore18PlatformTimeRanges9unionWithERKS0_) +STUB( + "IrCcRtHVTpA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE5emptyEv) +STUB("IrOpC8SDD1s", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIdE21intrusive_ptr_add_refEPS4_) +STUB("IrPk3iRaSU8", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_19ProductInfoDetailedEE8allocateEmPKv) +STUB( + "IrV7XKZgwCk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE5emptyEv) +STUB("IrXeG0Lc6nA", sceFontGetScriptLanguage) +STUB("IrZg5RHoLGQ", _ZNK15AbstractStorage11LocalFolder10GetServiceEv) +STUB("Irc2HhL6jp4", _ZN12video_parser5vpcom3rtc10IsLeapYearEt) +STUB("Irg3UX8TFzM", _ZN7WebCore18JSHTMLMediaElementD1Ev) +STUB( + "IrjUWfCcwr4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEC2EPS6_PNS2_10LibContextE) +STUB( + "Irtni1Y-GFA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEmmEv) +STUB( + "Is+nI7Hq9jU", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody23getTotalDataStatusCountEv) +STUB("Is-YM6hO4hw", _ZNK7WebCore5Frame7frameIDEv) +STUB("Is3ycYFTIN4", YGNodeStyleSetAlignItems) +STUB( + "Is89xxXsJNg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE5clearEv) +STUB( + "Is9gJ7pyC5g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE5clearEv) +STUB( + "IsEcNHomkl8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "IsEjg-sOGFk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEaSERKS7_) +STUB("IsF8dCgf14w", _ZN7WebCore8Document16addAudioProducerEPNS_13MediaProducerE) +STUB("IsJVYLiBgow", WKWebsitePoliciesGetAutoplayPolicy) +STUB("IsPcsC1N-6I", _ZN7WebCore23ApplicationCacheStorageC1ERKN3WTF6StringES4_) +STUB("IsUM7dDdAaQ", _ZNK7WebCore6Widget23convertToContainingViewERKNS_7IntRectE) +STUB("IsVVlFOqJ7w", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead15setJoinDisabledERKb) +STUB("IsauUl8mDDY", _ZNK7WebCore11RenderStyle21visitedDependentColorENS_13CSSPropertyIDE) +STUB( + "Ise8Z1gXwno", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEC1EPKS8_) +STUB( + "Isg+u8XwT6U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE8copyFromERKS9_) +STUB("IsjJYpIZzvc", _ZNK3JSC7JSValue19toWTFStringSlowCaseEPNS_9ExecStateE) +STUB( + "IsoyYPeXdGM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEC1Ev) +STUB("IsqE1Kivdas", _ZN3sce7Toolkit2NP2V211SharedMedia14CommonMetadata13MAX_LEN_TITLEE) +STUB( + "IsvxcRE9wpI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEEdeEv) +STUB("Iszli7AzLl8", _ZN3sce7Toolkit2NP2V24Core13CallbackEventC2ERKS4_) +STUB( + "It07IR7JAGQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEEC1ERKSA_) +STUB("It2gHn6TKgk", FTC_SBit_Cache_New) +STUB("ItC2hTrYvHw", verrx) +STUB("ItJTxCCvT4A", sceVorbisDecRead) +STUB( + "ItL6We7nrX4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB("ItO4km85h7E", _ZN9Inspector26DebuggerFrontendDispatcherC2ERNS_14FrontendRouterE) +STUB( + "ItPqrUFki-M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEC1Ev) +STUB("ItZHQ9B51QI", + _ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession28getReservationTimeoutSecondsEv) +STUB("ItZXngg8tfo", _ZN3sce7Toolkit2NP2V26Trophy7Request18RegisterTrophyPackD1Ev) +STUB("ItZkZXYeh1I", _ZN3sce2np14JsonNumberImpl3SetEm) +STUB( + "Ita+8UJcQlc", + _ZN7WebCore22EmptyFrameLoaderClient22createJavaAppletWidgetERKNS_7IntSizeERNS_17HTMLAppletElementERKNS_3URLERKN3WTF6VectorINS9_6StringELm0ENS9_15CrashOnOverflowELm16EEESF_) +STUB( + "Itcwf7DdHiE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEED1Ev) +STUB("ItdgLLUUlX0", __tsan_get_alloc_stack) +STUB( + "IthHdE4+UA4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEC2Ev) +STUB("IthJS-ZcEV4", _ZN7WebCore10ISOFullBox5parseERN3JSC8DataViewERj) +STUB("IthxLPwzd04", _ZN3sce7Toolkit2NP2V211UserProfile9NpProfile22MAX_NUM_LANGUAGES_USEDE) +STUB( + "ItjDQqppfLg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("ItkIBAdycp4", _ZNK3sce2Np9CppWebApi7Matches2V113ErrorResponse6toJsonERNS_4Json5ValueEb) +STUB("ItmiNlkXVkQ", _ZTSSt24_Iostream_error_category) +STUB( + "Itqv2Dwvjl4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE3endEv) +STUB( + "ItrAO9ZjHe8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEC2ERS7_) +STUB( + "Iu--mJYKn4o", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEeqERKS9_) +STUB( + "Iu0l5rnXgIM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEEC1Ev) +STUB( + "Iu2LCt151tg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "Iu3PeFrik8Y", + _ZN3JSC12StringObject3putEPNS_6JSCellEPNS_9ExecStateENS_12PropertyNameENS_7JSValueERNS_15PutPropertySlotE) +STUB("Iu899MfLTlE", sceMbusDebugDecodeApplicationStartupInfo) +STUB("IuDfAy-evo4", _ZN3sce7Toolkit2NP2V28Commerce7Request26DisplayProductBrowseDialogD1Ev) +STUB("IuFImJ5+kTk", _ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2ERKSt8_Locinfom) +STUB( + "IuGjnl4i730", + _ZN7WebCore22StorageEventDispatcher36dispatchSessionStorageEventsToFramesERNS_4PageERKN3WTF6VectorINS3_6RefPtrINS_5FrameENS3_13DumbPtrTraitsIS6_EEEELm0ENS3_15CrashOnOverflowELm16ENS3_10FastMallocEEERKNS3_6StringESH_SH_SH_RKNS_18SecurityOriginDataE) +STUB( + "IuGyz6uLGxo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEC2Ev) +STUB( + "IuO+F6M1IX8", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStats18unsetincludeFieldsEv) +STUB( + "IuOuCeAKBEg", + _ZN9Inspector24ConsoleBackendDispatcher22setLoggingChannelLevelElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "IuPqIm7eFOc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE11getResponseERS6_) +STUB("IuW-f48TrCI", _ZN7WebCore9HTMLNames7relAttrE) +STUB("Iuc4hXTE5PE", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V16StatusEEppEv) +STUB( + "IueKbUzHvBw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEptEv) +STUB( + "IuxHrb1CRzk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("IuxnUuXk6Bg", sceKernelGetModuleList) +STUB("Iv249kxxuiQ", X509_EXTENSION_get_object) +STUB("Iv3mg5--iDE", _ZNK3sce2Np9CppWebApi6Common6VectorIfEixEm) +STUB( + "Iv43W837LwU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("Iv4LGdKM5JA", mono_aot_Sce_Vsh_Stickermethod_addresses) +STUB("Iv7p0JnxpoQ", _ZN3sce2Np9CppWebApi12Leaderboards2V15Entry13setSerialRankERKi) +STUB("IvDq59ffIzQ", GCC_except_table274) +STUB( + "IvEpaJLoeI4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE6resizeEj) +STUB("IvF98yl5u4s", erfcf) +STUB( + "IvHnLVu6i1E", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB( + "IvJw3v6M31g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB("IvM7GNSK6wA", _ZStL14classic_locale) +STUB("IvMsyTCxaVs", _ZN3sce2Np9CppWebApi12Leaderboards2V15ErrorD1Ev) +STUB("IvP-B8lC89k", _Wcstate) +STUB( + "IvQsjoAcmQo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "IvRU-N-j6EE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEC1EPS6_PNS2_10LibContextE) +STUB("IvTsS4VJq1w", _ZTVN3sce2np10JsonNumberE) +STUB("IvZztwZzfyA", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getInteger6Ev) +STUB("IvbJzet8uss", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEC2ERS7_) +STUB( + "IveLmJuvnBU", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126NatConnectivityFromFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_19NatConnectivityFromEEE) +STUB( + "IvecwlttTx4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEptEv) +STUB("IvnXHG-Nwhc", uspoof_getChecks_67) +STUB("IvngxwXoUdw", WKBackForwardListItemGetTypeID) +STUB( + "Ivo42L7J7XY", + _ZN9Inspector25DatabaseBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) +STUB( + "IvqoHMpUXEg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEED2Ev) +STUB( + "Ivt+F4Jukss", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE5emptyEv) +STUB( + "IvuYm7FCZEY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEneERKS9_) +STUB( + "Ivusd8QIzeE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEC2EPKS8_) +STUB( + "IvvzJcdUGas", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE3endEv) +STUB( + "Iw+NfP8Cp5Q", + _ZThn24_N9Inspector22InspectorDebuggerAgent21breakpointActionProbeEPN3JSC14JSGlobalObjectERKNS_22ScriptBreakpointActionEjjNS1_7JSValueE) +STUB( + "Iw1u3bTWrRU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEppEi) +STUB("Iw2h0Jrrb5U", sceNpMatching2SendRoomMessage) +STUB("Iw5XW-1wgr0", _ZNK7WebCore17FrameLoaderClient24loadedSubresourceDomainsEv) +STUB("IwAvLDYDqt8", _ZN3sce7Toolkit2NP27ReceiveInGameMessageRequestC2Ev) +STUB("IwDQAbQxvD0", _ZN3sce2np10Cancelable11CheckCancelEPKciS3_) +STUB("IwFD5MtgZlc", _WLdtob.nan) +STUB( + "IwGjTJmoWRs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEmmEv) +STUB( + "IwIvO92zFQs", + _ZN9Inspector20CSSBackendDispatcher15setRuleSelectorElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("IwJKMuS3-AQ", _ZN3sce7Toolkit2NP15PresenceDetailsC2Ev) +STUB("IwOCxQwCP9o", _ZN9Inspector15ScriptCallFrameaSERKS0_) +STUB("Iwar51fiS+s", + _ZN7WebCore14FrameSelection16setSelectedRangeEPNS_5RangeENS_9EAffinityEbNS_14EUserTriggeredE) +STUB("Iwjgb9Q6nLg", + _ZN7WebCore24CoordinatedGraphicsLayer12setTransformERKNS_20TransformationMatrixE) +STUB( + "IwlvDoZh9kI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEppEv) +STUB("IwmVVM5dPhM", psl_is_public_suffix) +STUB("Iwn1B6is5r8", _ZN3JSC17JSAPIValueWrapper6s_infoE) +STUB("Iwo4jAaBZEM", pio2_2tlo) +STUB("IwqPejh2Vjk", ulistfmt_resultAsValue_67) +STUB("Ix-uY-vavVE", _ZN3sce2Np9CppWebApi11Matchmaking2V110UserTicketC1EPNS1_6Common10LibContextE) +STUB( + "Ix-vk8gszSk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEC2Ev) +STUB( + "Ix1k2-8f3Wk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEEaSERKSA_) +STUB( + "IxAlZZxlHkE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEEaSERSA_) +STUB( + "IxBcAeNa9fw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEEcvbEv) +STUB("IxCpDYsiTX0", sceUserServiceGetTopMenuLimitItem) +STUB("IxD7Ovht4b4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEED2Ev) +STUB( + "IxIUdWwopT0", + _ZN7WebCore16CalculationValue6createESt10unique_ptrINS_18CalcExpressionNodeESt14default_deleteIS2_EENS_10ValueRangeE) +STUB("IxIevj0Sqic", _ZN3sce7Toolkit2NP2V27Ranking7Request15GetFriendsRanksD2Ev) +STUB( + "IxOzBQXDzOg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEC2EPS8_) +STUB("IxPxVmr12vk", + _ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest19expirationTimeIsSetEv) +STUB( + "IxUy2niEi34", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE6resizeEj) +STUB("IxXsO5OebNY", _Z25sceMatRegisterGdsResourcemmjmPKcjm) +STUB("IxYdrzCYwJc", sr00) +STUB("IxYiarKlXxM", sceAgcDmaDataPatchSetDstAddressOrOffset) +STUB("IxcAbcRAFk4", _ZN7WebCore9HTMLNames8nameAttrE) +STUB( + "IxhLZjD+nQs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEE11release_refEv) +STUB( + "IxlHuXHMvb4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEEdeEv) +STUB( + "Ixmw1CzTqjI", + _ZN3sce2Np9CppWebApi14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBody13setSpectatorsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_30ResponsePlayerSessionSpectatorEEEEE) +STUB("IxqaB0MHl0s", sceNpManagerIntCreateAuthenticationTicket) +STUB( + "IxskaBLemkU", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126BandwidthPropertiesFactory7destroyEPNS3_19BandwidthPropertiesE) +STUB( + "Ixwxn5+hqtg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEE7add_refEv) +STUB("IxyvptSqdr0", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEEixEm) +STUB("Ixz55FaZ1gQ", _ZN3JSC22getInt16ArrayClassInfoEv) +STUB("Iy+trV6uh-s", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEEC2ERS6_) +STUB( + "Iy0hvk1TXzY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "Iy3kQxW3G10", + _ZN15AbstractStorage10YoutubeAPI17GetUploadLocationERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEmS7_RS5_) +STUB( + "Iy4E3PmYGp0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "IyGIg0HeY3A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEC2EPS8_) +STUB("IyGgrXgsVes", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEEC2EPKS6_) +STUB("IyJy2sCBCHU", _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead14setSearchIndexEPKc) +STUB( + "IyMfHXL9VzE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEdeEv) +STUB("IyT41iG8Ync", _ZNK3sce2np4User7IsEmptyEv) +STUB( + "IyUcglm6m4s", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38addPlayerSessionJoinableSpecifiedUsersEiRKNS4_49ParameterToAddPlayerSessionJoinableSpecifiedUsersERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_61PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB( + "IyUvkdRjHn4", + _ZN3sce7Toolkit2NP2V28Matching17kickOutRoomMemberERKNS3_7Request17KickOutRoomMemberEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("IyWcyd2bITI", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request8SetLikedC1Ev) +STUB("IyYcaOUSTng", u_strCaseCompare_67) +STUB("IyaKR2FqFXU", _ZNK7WebCore17HTMLPlugInElement12pluginWidgetENS0_19PluginLoadingPolicyE) +STUB("IyaSDQOW49g", _ZN3JSC7Symbols15findPrivateNameE) +STUB( + "IyeDD2JI9vo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEE11get_deleterEv) +STUB("IyfWUn9Ue1Y", _ZN7WebCore9HTMLNames4aTagE) +STUB("IyhLOq-9KZA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE5beginEv) +STUB("IyizMqqpWnY", _ZNK7WebCore7Element12getAttributeERKNS_13QualifiedNameE) +STUB( + "IyqYCZR1Uew", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEEdeEv) +STUB("IyrC1lVqedo", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatusD1Ev) +STUB( + "Iyrhm-aY+0Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEppEv) +STUB("IysRiVOGIVM", sceVideoOutSysGetCurrentOutputMode) +STUB("IyvtvpZPpPg", _ZNK7WebCore26ISOProtectionSchemeInfoBox17originalFormatBoxEv) +STUB("IywQUdfUAP0", _ZN7WebCore3URL11setProtocolERKN3WTF6StringE) +STUB("Iz0z3ATi4aE", _ZNK3sce2Np9CppWebApi14SessionManager2V118LeaderWithOnlineId11getPlatformEv) +STUB( + "Iz2mCbvVDvc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "Iz4QKtM93DQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEmmEi) +STUB("Iz8Nn79wHVQ", _ZNK7WebCore20HTMLTableCellElement18rowSpanForBindingsEv) +STUB("Iz8WjECFHIY", WKNavigationDataCopyURL) +STUB("Iz8atNTssLg", mono_mlist_get_data) +STUB("Iz8euzlEEY4", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification16FriendlistUpdateEED2Ev) +STUB("Iz9X7ISldhs", sceAudioOutA3dControl) +STUB("IzC+la5Js9c", _ZNK7WebCore15HTTPHeaderField4nameEv) +STUB("IzDX4gNyAV4", _ZN3sce2Np9CppWebApi7Matches2V125ResponseCompetitiveResultD2Ev) +STUB("IzG7RrfSAw4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE8pushBackERKS6_) +STUB("IzIy0lJWD08", _ZN9Inspector33ApplicationCacheBackendDispatcherD0Ev) +STUB("IzPvsq7Nccs", _ZNSt13runtime_errorC1EPKc) +STUB("IzQN+F5q3wg", sceShellCoreUtilResetAutoPowerDownTimer) +STUB("IzQZsHx7TXE", _ZN7WebCore15GraphicsContext7restoreEv) +STUB("IzRV-oICvO0", uprv_itou_67) +STUB( + "IzRkiHaf4QU", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEEiRNS2_10LibContextEPT_m) +STUB("IzXg6-zWJ5E", _ZNK3WTF9BitVector12bitCountSlowEv) +STUB("IzffkhPRxw0", _ZN7WebCorelsERN3WTF10TextStreamERKNS_12FloatPoint3DE) +STUB( + "IzwjynM1wUE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEEC2Ev) +STUB("IzxyWmghAig", WKBundleGetJavaScriptObjectsCount) +STUB("Izy+4XmTBB8", sceUserServiceSetIPDLeft) +STUB( + "J+-natXDyAA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEEC2ERKSA_) +STUB("J+2xNfBgF6c", _ZN3sce7Toolkit2NP2V212NetworkUtils16NetStateDetailedC1ERKS4_) +STUB( + "J+6sTBRSYdc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEE7add_refEv) +STUB("J+BqNoqjapk", _ZN12Mp4Retriever9ExtractI8EPh) +STUB( + "J+HJf1ltT0w", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEptEv) +STUB("J+LF6LwObXU", sceKernelDeleteHRTimerEvent) +STUB("J+NpPkeEmlY", mono_aot_System_Runtime_Extensionsplt_end) +STUB("J+PBQIf-40g", mono_btls_x509_get_public_key_algorithm) +STUB("J+PVeG2qp0o", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTicketsaSERS5_) +STUB( + "J+PWG1oHCA8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE5clearEv) +STUB("J+VOOa9z59c", _ZN3sce7Toolkit2NP2V27NpUtils5IdMap5resetEv) +STUB( + "J+Y1flnRvtQ", + _ZN3JSC7JSProxy16getPropertyNamesEPNS_8JSObjectEPNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB( + "J+Z0oLcpiv8", + _ZN15AbstractStorage14TwitterService23create_storage_instanceERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("J+Z2peVsVmw", _ZN3sce2Np9CppWebApi15Personalization2V15Error9setSourceEPKc) +STUB("J+bKHRzY4nw", sceUserServiceGetPbtcSundayHoursEnd) +STUB("J+cECJ7CBFM", sceUserServiceGetPbtcSundayHoursStart) +STUB("J+hjiBreZr4", _ZTSSt10moneypunctIwLb1EE) +STUB("J+oVFGsb0Qg", _ZN7WebCore10Pasteboard21createForCopyAndPasteEv) +STUB("J+pWkecAYYs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEC2Ev) +STUB("J+tk1r7u+3c", mono_aot_Sce_Vsh_RemotePlayplt_end) +STUB("J+uDQ2Xphdo", _ZN7WebCore11DisplayList20FillRectWithGradientC2ERKNS_9FloatRectERNS_8GradientE) +STUB( + "J--FgMId4+Y", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE8capacityEv) +STUB( + "J-0I2PtiZc4", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE9_GetffldxEPcRS3_S6_RSt8ios_basePi) +STUB("J-0wEQz2H5I", _ZN7WebCore5Style5Scope22flushPendingSelfUpdateEv) +STUB( + "J-4CWadZu4s", + _ZN3sce7Toolkit2NP8Matching9Interface10kickMemberEPNS1_17KickMemberRequestEPNS1_9Utilities6FutureIiEEb) +STUB("J-6d0WTjzMc", sceRudpActivate) +STUB("J-6tvqPD7Cg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE5clearEv) +STUB( + "J-7tA1oC-Gc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "J-9+igQy8us", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEED1Ev) +STUB("J-9EH0SlCMI", rgctx_fetch_trampoline_mrgctx_3_p) +STUB( + "J-Cl3CjW8II", + _ZN9Inspector21PageBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) +STUB("J-DvOzoRz2E", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEED2Ev) +STUB( + "J-ET9IysVCc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEC2EPS8_) +STUB( + "J-GJSI9lqgU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEED1Ev) +STUB("J-GYJvLMUoE", sceRnpsAppMgrUnregisterShellUI) +STUB( + "J-HUWnnZ-Xg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEE11get_deleterEv) +STUB("J-JL-TLqlrI", EC_POINT_free) +STUB("J-KEr4gUEvQ", sceUserServiceGetHomeDirectory) +STUB("J-MJF99ka4M", _ZN3sce2Np9CppWebApi6Common6String10setContextEPNS2_10LibContextE) +STUB( + "J-S0BBcJMhY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEE7get_refEv) +STUB( + "J-aLkGVzU3I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEED1Ev) +STUB("J-f7oAB0blc", WKViewClearBackingStores) +STUB( + "J-gOsU9R-iI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEC2ERKS7_) +STUB( + "J-hsxr6IYCc", + _ZN9Inspector28DOMStorageFrontendDispatcher19domStorageItemAddedEN3WTF6RefPtrINS_8Protocol10DOMStorage9StorageIdENS1_13DumbPtrTraitsIS5_EEEERKNS1_6StringESB_) +STUB("J-k4Sp-yaYY", delegate_invoke_impl_has_target_p) +STUB("J-mthfzvjKQ", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V117ResponseMatchTypeEEdeEv) +STUB("J-nc3Hu3Vxc", _ZN15AbstractStorage17DailymotionFolderD0Ev) +STUB( + "J-nuwzzj1EA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEC2EPS8_) +STUB("J-oDqE1N8R4", _Tolotab) +STUB("J-rh9f-5jPY", + _ZN7WebCore18JSHTMLVideoElement15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB("J-uv0J9VNaU", _ZN3sce7Toolkit2NP2V27Session7Request6UpdateC2Ev) +STUB( + "J-xYTnWfUds", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEEC2Ev) +STUB("J02aO+FiLU4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11InvitationsEEC1Ev) +STUB("J06J7hH+9bs", glClearBufferfi) +STUB( + "J0FluUaFZ1g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB("J0IyckharR4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEcvbEv) +STUB("J0Kyx5E61iU", _ZNK3WTF6String23convertToASCIIUppercaseEv) +STUB("J0MUxuo9H9c", sceNpManagerIntAddActiveSigninStateCallback) +STUB( + "J0OA0yuyAhA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEEaSERKSA_) +STUB( + "J0PjWWlfNDo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("J0PtvGVzWTE", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26RecordScoreResponseHeadersC1ERS5_) +STUB( + "J0RpPo4qgBA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEED2Ev) +STUB("J0bGGwdIfhk", + _ZNK7WebCore11RenderTheme14focusRingColorEN3WTF9OptionSetINS_10StyleColor7OptionsEEE) +STUB( + "J0feIcsi9EY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("J0jU9Q3l+aI", mono_shared_area_unload) +STUB("J0kng1yac3M", readdir_r) +STUB("J0pPFTlWe4I", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge13ChallengeDataEE5resetEv) +STUB( + "J0roIgiiB8g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEE11get_deleterEv) +STUB("J0s+lgtocB4", mono_aot_System_Net_Http_WebRequestunbox_trampolines_end) +STUB("J0v4IwoeBvc", _ZNK7WebCore16DOMGuardedObject11isSuspendedEv) +STUB("J0wnu0Wcsjk", __tsan_write4) +STUB("J14nre-GEk4", _ZN3sce7Toolkit2NP2V28Matching7Request11SearchRoomsD2Ev) +STUB( + "J160sr9UjzA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEmmEi) +STUB("J17Ht24BhJA", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13integer6IsSetEv) +STUB("J192ZqTgPjM", _ZNK3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead11getOnlineIdEv) +STUB( + "J1G1dvdm834", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeAccountId2OnlineIdBatchC2ERS5_) +STUB("J1H1QRCJf2Q", getitimer) +STUB("J1HXOaT7W68", + _ZN3sce2Np9CppWebApi14SessionManager2V117SearchGameSession8fromJsonERKNS_4Json5ValueE) +STUB( + "J1I3gTm8seE", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_19ProductInfoDetailedENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB( + "J1MLX-Twuds", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEEiRNS2_10LibContextEPT_m) +STUB("J1MM+8ak-e0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEE7add_refEv) +STUB("J1Qm9qh7StM", + _ZN3sce7Toolkit2NP2V210Tournament7Request19SendTeamMatchReport19MAX_SIZE_SCREENSHOTE) +STUB( + "J1RBKl9JKpY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEC1EPNS2_10LibContextE) +STUB("J1Tu68RHMaA", _ZN2GK9PlayerPSN4stopEv) +STUB( + "J1WDlTdcAb0", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB( + "J1Wo6jMY+q0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "J1X+stgb0zQ", + _ZN3sce2Np9CppWebApi15Personalization2V118ErrorEntityFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_11ErrorEntityEEE) +STUB( + "J1Xq6z8Bqzg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "J1droeg6nJc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEE21intrusive_ptr_add_refEPS7_) +STUB("J1lpiTKAEuk", _ZN3sce2np3ipc10IpmiClientD2Ev) +STUB("J1qKTkCk00o", _ZN7WebCore17LibWebRTCProvider6createEv) +STUB("J1sK+qvJVTY", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_21AbortGameDataResponseEED2Ev) +STUB("J1xTq0vRmMs", _ZN3sce7Toolkit2NP2V210Tournament10TournamentD1Ev) +STUB("J1yHKX6tL5Y", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_13NetStateBasicEEC2Ev) +STUB("J20mpxC9gDA", sceDebugGetEventSubscriptionListForEQueueFd) +STUB("J23ENpIFoRc", sceSaveDataDebugCheckBackupData) +STUB("J25govWMjF0", g_ascii_strdown) +STUB("J25sxFmD+1w", sceHttpCacheSystemTerm) +STUB("J27fPOsLvXk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEE7get_refEv) +STUB("J2CB-hl+VCY", + _ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody20updatedDateTimeIsSetEv) +STUB( + "J2FL8Gk462c", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "J2GQnBJ0mWU", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("J2JPTUBlAyQ", scePsmUtilGetHighResoImageAssetManagerSize) +STUB("J2KHqJfiY0o", __tsan_atomic64_compare_exchange_val) +STUB("J2L1Rr-IbE8", _ZN7WebCore16ResourceResponseaSERKS0_) +STUB("J2OMHZAhMC0", WKNavigationDataGetTypeID) +STUB( + "J2PmgmFGJ0o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEEC1ERSA_) +STUB( + "J2SJqyOdL2U", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19Bandwidth9setGlobalERKNS1_6Common12IntrusivePtrINS3_19BandwidthPropertiesEEE) +STUB("J2TKi09t5tI", mono_reflection_get_type) +STUB( + "J2Ve3PDUt2A", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE4sizeEv) +STUB("J2YGgymXg+M", _ZN3sce2Np9CppWebApi6Common9RefObjectC1Ev) +STUB( + "J2bKml1OcHQ", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsC2EPNS1_6Common10LibContextE) +STUB("J2bcHJvlt1M", _ZN15AbstractStorage18DailymotionServiceC1Ev) +STUB( + "J2bnSrCOXZg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEC1EPNS2_10LibContextE) +STUB( + "J2hMZFmIbPw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE21intrusive_ptr_add_refEPS9_) +STUB("J2rPprTFLio", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE5beginEv) +STUB( + "J2u2m-3ZqcI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE3endEv) +STUB( + "J2uw-ob5zag", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEC2EPKS8_) +STUB("J2vCAy65mls", __sync_fetch_and_and_16_internal) +STUB("J2vh4ENvWWU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE5beginEv) +STUB("J2wE7kcMwmA", _ZN7WebCore4Page24replaceSelectionWithTextERKN3WTF6StringE) +STUB("J2xO4cttypo", _ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1Em) +STUB("J3422jFfivQ", Java_com_sony_bdjstack_javax_media_content_dripfeed_Player_startPlayFrames) +STUB("J34dKCmiLb4", _ZN3JSC37JSSegmentedVariableObjectHeapCellTypeD2Ev) +STUB("J3AZOgx8k4A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEEC2ERKS7_) +STUB( + "J3AonhjU4DI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEEptEv) +STUB("J3HnvW8FJV8", FTA_Support_Format_OpenType_Ttf) +STUB("J3J1T9fjUik", towlower) +STUB("J3JjYmGmtg0", udict_swap) +STUB( + "J3RZsZM7-P4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEEC2ERKSA_) +STUB( + "J3V08We+Zrc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("J3XuGS-cC0Q", lround) +STUB("J3Z8qAeuk7g", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge10ChallengesEE3getEv) +STUB( + "J3bidwOpPCI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEED1Ev) +STUB("J3edELK4FvM", arch_raise_user) +STUB( + "J3iduJTcpvQ", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot8setlimitEi) +STUB( + "J3jq8sRSIwo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEE11release_refEv) +STUB( + "J3mNII0unhA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEE11release_refEv) +STUB( + "J3z0xdeSrfw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEC1EPS8_) +STUB("J44dsZUcK4I", EVP_aes_256_cbc) +STUB( + "J47X5D6BWqo", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSession35getxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB( + "J48l6n1RaV4", + _ZN7WebCore11EventTarget30removeEventListenerForBindingsERKN3WTF10AtomStringEONS1_6RefPtrINS_13EventListenerENS1_13DumbPtrTraitsIS6_EEEEONS1_7VariantIJNS0_15ListenerOptionsEbEEE) +STUB("J4CPP4JTKfc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEE11release_refEv) +STUB("J4FBpvaSdJA", _ZNK7WebCore6Chrome13setWindowRectERKNS_9FloatRectE) +STUB( + "J4GuFwIcRRg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEC2EPNS2_10LibContextE) +STUB( + "J4JmfyFNZlc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEE11get_deleterEv) +STUB( + "J4M+M1Nflck", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEC2EPS8_) +STUB( + "J4MWXF1kCdQ", + _ZN7WebCore31CrossOriginPreflightResultCache11appendEntryERKN3WTF6StringERKNS1_3URLESt10unique_ptrINS_35CrossOriginPreflightResultCacheItemESt14default_deleteIS9_EE) +STUB("J4NntrE4Abw", _ZN7WebCore9HTMLNames10promptAttrE) +STUB("J4Vh3VVX0iU", sceVrTracker2GetResult) +STUB("J4bTZYwN5uQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ChildActivityAvailabilityEEaSERKS7_) +STUB( + "J4eQ1Mox2lA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V133BandwidthDownstreamMetricsFactory7destroyEPNS3_26BandwidthDownstreamMetricsE) +STUB( + "J4h9Iq-fkQ4", + _ZN9Inspector14ConsoleMessageC1EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelERKN3WTF6StringES8_jjPNS1_14JSGlobalObjectEm) +STUB( + "J4hGBETqQkU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("J4lWCVwUKtU", sceNpUniversalDataSystemIntRecordArraySetUInt32) +STUB( + "J4mEpPKFXf4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE5clearEv) +STUB( + "J4mWWtz3Bls", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE5beginEv) +STUB("J4nC1AlSrJM", _ZN9Inspector28InspectorScriptProfilerAgent12stopTrackingERN3WTF6StringE) +STUB("J4q5kQaotFE", _ZNK7WebCore10FontRanges17fontForFirstRangeEv) +STUB( + "J4tQbyr1TBE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE5emptyEv) +STUB("J4ten1IOe5w", sceUserServiceGetNpLanguageCode) +STUB("J4uxX9+pemc", Java_java_awt_GnmGraphics_nativeFillPolygon) +STUB( + "J4vXbYykW8M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEED2Ev) +STUB( + "J4xFt84aJlM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEEdeEv) +STUB("J526sLKBCc8", _ZN15AbstractStorage14YoutubeServiceD0Ev) +STUB( + "J53PDM8jTJM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "J56hlu77GQI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEC1EPS8_) +STUB( + "J5D07SMhWdM", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEEiRNS2_10LibContextEPT_m) +STUB("J5IG3lL56FI", glOrbisUnmapTextureResourceSCE) +STUB("J5OPALFNdFE", sceShellCoreUtilGetCrashReportInfoStart) +STUB("J5QA0ZeLmhs", _ZNSt15_Num_float_base8is_exactE) +STUB("J5RqzZ7nMVc", sceKernelCloseEport) +STUB("J5VVuT74c6c", _ZNK9Inspector15ScriptCallFrame12columnNumberEv) +STUB( + "J5Yy0TJ2OVM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEaSERKS9_) +STUB( + "J5ZKtm4Y0os", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB( + "J5gRcWrxZ+A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEaSERKS7_) +STUB("J5i3hiLJMPk", sceNetResolverGetError) +STUB( + "J5iJFVD1bCw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE6isBusyEv) +STUB("J5j1pBL1cjg", _ZN7WebCore11MediaPlayer15removeTextTrackERNS_22InbandTextTrackPrivateE) +STUB("J5lZTL2H6Aw", uloc_countAvailable) +STUB("J5oRw5SLfRo", _ZN7WebCore8SVGNames15altGlyphItemTagE) +STUB("J5oe8ZET4pU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia6VideosEEC1Ev) +STUB( + "J5sRIUeQtFI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("J5t6kpsGfGA", mono_string_is_interned) +STUB("J5u88cqU7OU", sceMbusSetRoutingMode) +STUB( + "J6AzD8TrUMk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "J6ClyXwI3sQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEdeEv) +STUB("J6FoFNydpFI", malloc_finalize) +STUB("J6I-dnVtvEc", _ZNK7WebCore14ScrollableArea22mouseExitedContentAreaEv) +STUB( + "J6KpIditfWA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEeqERKS9_) +STUB("J6MTZzX21G4", _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody8getUsersEv) +STUB( + "J6O9xoAsBNk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEED2Ev) +STUB("J6PIrjOJOLU", _ZN12video_parser13cVideoPathMp4C2EPKc) +STUB("J6Qxs-B3yUc", _ZN7WebCore5RangeD1Ev) +STUB("J6Ujb3RviBA", sceFiosFHPwritevSync) +STUB("J6W0p3ZMQKs", mono_set_lmf_tls_offset) +STUB( + "J6WNl+AB5zE", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "J6ZZfgpm9GU", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB( + "J6c3aQEG85w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEE11release_refEv) +STUB("J6eF2N6k0EQ", _ZNK3sce2Np9CppWebApi14SessionManager2V16Friend12getAccountIdEv) +STUB( + "J6mGcLoeY7E", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead25setJoinableSpecifiedUsersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_12JoinableUserEEEEE) +STUB( + "J6sXBqkBnOU", + _ZN3sce7Toolkit2NP7Friends9Interface21getFriendslistofUsersEPNS1_9Utilities6FutureISt6vectorINS1_13FriendsOfUserENS1_15AppSTLAllocatorIS7_EEEEEPKNS1_19FriendOfUserRequestEb) +STUB("J6w1KXkkLm0", _ZN12Mp4Retriever14processFtypBoxEv) +STUB("J70xb+ZpKFM", WTFCrashWithSecurityImplication) +STUB( + "J78CmgsZiaw", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEEiRNS2_10LibContextEPT_m) +STUB("J7COZrgSFRA", sceImeVshSetSelectionText) +STUB("J7Cw18z9W+g", uprv_getDefaultCodepage) +STUB("J7DHUBI1l0I", _ZN3sce2Np9CppWebApi11UserProfile2V15ErrorC1EPNS1_6Common10LibContextE) +STUB("J7Dkz4Xqu4k", _ZN7WebCore4Page36setAllowsMediaDocumentInlinePlaybackEb) +STUB("J7EnH5GWjRs", _ZN3sce7Toolkit2NP2V212ActivityFeed6Action19STORE_LABEL_MAX_LENE) +STUB("J7IVFPM6rXM", _ZN7WebCore22EmptyFrameLoaderClient25didDisplayInsecureContentEv) +STUB( + "J7JjM+yATs4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEptEv) +STUB("J7LWSdYo0Zg", SSL_getCipherInfo) +STUB("J7MKuQpWo4Y", c13) +STUB("J7N-B6rL6ZM", Java_java_awt_Window_pSetWarningString) +STUB( + "J7O30c5+anQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEED1Ev) +STUB("J7UlpDGmVaI", _ZN7WebCore15HitTestLocationC2ERKNS_10FloatPointE) +STUB("J7UnX3CMhpI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE6resizeEj) +STUB( + "J7WUeopB3lA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEppEv) +STUB("J7WxT-sXnz0", _ZN7WebCore18RenderLayerBacking25setUsesDisplayListDrawingEb) +STUB("J7Xs-UluzGk", sceUltReaderWriterLockTryLockRead) +STUB("J7ZBHXibZA8", _ZN12video_parser5vpcom11Utf8ToUtf16EPKcPSbIwSt11char_traitsIwESaIwEEi) +STUB("J7ZXGgY3Ykc", + _ZN3sce2Np9CppWebApi14SessionManager2V132RequestPlayerSessionMemberPlayer12unsetPlayersEv) +STUB("J7bWqy7TiBY", sceRnpsAppMgrStartService) +STUB("J7d2Fq6Mb0k", _ZNSt14numeric_limitsIfE8digits10E) +STUB( + "J7dUAYK-xWg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEEC1ERSA_) +STUB( + "J7h+XcaVbO8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEED2Ev) +STUB( + "J7kBdR4Es9w", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions9unsetviewEv) +STUB("J7n2QKPAd9k", _ZN22MmsMdCommonFsOperation8tellFileEv) +STUB( + "J7ohwG8SeEw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEEaSERKSA_) +STUB("J7qYAZ8QNkE", _ZN7WebCore16BlobRegistryImplnaEmPv) +STUB("J7rYKQEJvEI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE8pushBackERKS6_) +STUB( + "J7wzW4XxRv4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEneERKS9_) +STUB( + "J8BlCThjkks", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEE7get_refEv) +STUB( + "J8ClOUdkKpk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEEC1EPS6_PNS2_10LibContextE) +STUB("J8GcxU03WkE", FcCharSetSubtractCount) +STUB("J8JRHcUKWP4", __modti3) +STUB("J8JmG1yEvtg", utext_setup_59) +STUB("J8TgBkZ8yq8", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead20nonPsnSupportedIsSetEv) +STUB( + "J8US+J-vRnI", + _ZN7WebCore11DisplayList18DrawFocusRingRectsC2ERKN3WTF6VectorINS_9FloatRectELm0ENS2_15CrashOnOverflowELm16ENS2_10FastMallocEEEffRKNS_5ColorE) +STUB("J8YCgfKAMQs", sceAgcQueueEndOfPipeActionPatchGcrCntl) +STUB("J8jAi-tfJHc", sceNpPartyLeave) +STUB("J8nNL6oV1eU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEEC2ERS7_) +STUB("J8oy-Lxf1jg", EVP_MD_CTX_cleanup) +STUB("J8p9T9ctuUY", mono_aot_Sce_Vsh_DataTransferjit_code_end) +STUB("J8rnf+mNOAo", delegate_virtual_invoke_imt_31_p) +STUB("J8t8t3eVoMg", sceSystemServiceGetUIStatus) +STUB( + "J8yVikepwKs", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi32ParameterToPostGameSessionsTouch12setsessionIdEPKc) +STUB("J8yofV8T9A4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEEC2ERKS7_) +STUB( + "J9+6zM1a6xw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEC1EPKS8_) +STUB("J9+qK5adfAw", _ZN4Manx14NetworkProfile3setENS_14SettingOptTypeEl) +STUB("J96rvYBxALo", _ZN3sce16CommonDialogUtil6ServerD1Ev) +STUB("J97M2lm6a2I", mono_aot_Sce_Vsh_SystemLoggerUtilWrapperplt) +STUB("J98mAY+MsBs", WKPreferencesSetHiddenPageDOMTimerThrottlingEnabled) +STUB("J9CVeZC2RgM", _ZNK7WebCore6DOMURL4hrefEv) +STUB("J9Fo8pqmVZ4", _ZN3WTF8Internal9appendHexEPhjmjNS_17HexConversionModeE) +STUB( + "J9G04uytny8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB( + "J9Ncq2KrfFU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEEdeEv) +STUB( + "J9QrYFU1JHQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("J9ZSTc1O0MM", _ZN3sce2Np9CppWebApi11UserProfile2V125GetPublicProfilesResponseD2Ev) +STUB("J9bWkXpsDlU", GCC_except_table102) +STUB("J9eBpW1udl4", sceHmdSetupDialogGetStatus) +STUB("J9g-9ncaRDw", _ZN3JSC8Debugger16currentExceptionEv) +STUB("J9g-WBCNoRk", allowedHourFormatsCleanup_67) +STUB("J9kJ2glUtmc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEED2Ev) +STUB("J9kgQ5G6WSc", _ZN9Inspector15RemoteInspectorD1Ev) +STUB("J9klOgvbE2A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEED1Ev) +STUB( + "J9p4ZJdhRlU", + _ZN3JSC17DeferredWorkTimer14addPendingWorkERNS_2VMEPNS_8JSObjectEON3WTF6VectorINS_6StrongINS_6JSCellELNS_30ShouldStrongDestructorGrabLockE0EEELm0ENS5_15CrashOnOverflowELm16ENS5_10FastMallocEEE) +STUB("J9rlRuQ8H5s", pthread_mutexattr_setkind_np) +STUB("J9ujmUpwWAc", sceFiosOpGetOffset) +STUB( + "J9xZ9Bgd8hQ", + _ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody8fromJsonERKNS_4Json5ValueE) +STUB( + "J9yWWIZ2WHA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEC2Ev) +STUB( + "J9yivvtjNes", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEEC2Ev) +STUB("JA+i8RdtW7I", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_6NpUserEEC2Ev) +STUB("JA4+sS39GMs", sceNpLookupCreateAsyncRequest) +STUB("JA552YbVwcs", _ZN12video_parser5vpcom3rtc12TickAddWeeksEPmPKmi) +STUB( + "JA5dA-of5T0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEC2EPS6_PNS2_10LibContextE) +STUB("JA6GJCmFIjY", _ZN9Inspector18InspectorHeapAgentC1ERNS_12AgentContextE) +STUB("JA9b3iqvtHo", _ZN7WebCore25WebSocketChannelInspectorC2ERNS_8DocumentE) +STUB("JAAxVx89vNc", _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead9getMemberEv) +STUB("JAEgKfRXTnY", _ZN7WebCore6CursorC2EPNS_5ImageERKNS_8IntPointE) +STUB("JAEvQGf9eVs", _ZN7WebCore9HTMLNames21ontransitionstartAttrE) +STUB("JAF7iQVw4IQ", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIlEplEm) +STUB("JAMwbHgJ4aA", _ZNK3sce2np14JsonNumberImpl9GetNumStrEv) +STUB( + "JAPOF6R-jW8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("JAQ2XNJTzaw", _ZN3sce7Toolkit2NP2V28Matching5RoomsC1Ev) +STUB( + "JAR27Ryrv4A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEEC1Ev) +STUB("JARG0sFWjr4", uloc_toUnicodeLocaleType_67) +STUB("JARRMS0FBdc", _ZN12video_parser13cVideoMetaVWG20_changeEndianChapterEPvj) +STUB("JATlaeBu+lU", _ZN3sce4Json6Object8iteratorC1ERKS2_) +STUB( + "JAgvNr8pFeM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEC2EPS6_PNS2_10LibContextE) +STUB("JAiMBkOTYKI", sceImeDicDeleteWord) +STUB("JAmgylm2GBo", + _ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer14unsetJoinStateEv) +STUB("JAnhkaJMA+w", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE3endEv) +STUB("JAtzJlcNXQY", _ZN12Mp4Retriever15processMetaAlbmEv) +STUB( + "JAuYxVSRhd4", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE21setOnFinishedCallbackEPFvliS4_PvEPFvliSC_ESC_) +STUB("JAzqiBpYj-0", _ZN7WebCore9FloatSizeC2ERKNS_7IntSizeE) +STUB("JB0+BsPXtDA", GCC_except_table302) +STUB( + "JB5zSXYFDpI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEE7add_refEv) +STUB("JB82UX1nA-U", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate10getPerGameEv) +STUB("JBCYpr7Atp0", _ZN7bmalloc8FreeList14initializeListEPNS_8FreeCellEmj) +STUB("JBH18i-WCu0", cairo_surface_status) +STUB("JBHZ4wLpnx0", curl_easy_duphandle) +STUB( + "JBKqRWT7vpc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEmmEi) +STUB("JBN6N-EY+3M", sceHttpsGetSslError) +STUB( + "JBNROUHw2HU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEmmEv) +STUB( + "JBNdpXtvVvA", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities21UserActivitiesFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS6_12IntrusivePtrINS4_14UserActivitiesEEE) +STUB( + "JBNtqSLmTWc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE21intrusive_ptr_add_refEPS9_) +STUB("JBQwNQ9vlhY", g_strdup) +STUB( + "JBYtvL5mHnY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEC2ERKS7_) +STUB("JBcgYuW8lPU", acos) +STUB("JBkZVkAmw4Y", _ZNK3sce2Np9CppWebApi14SessionManager2V15Error11reasonIsSetEv) +STUB("JBlViBWr6Eo", _ZN7WebCore8SVGNames22buffered_renderingAttrE) +STUB("JBugz1LKFAA", WKBundlePageOverlaySetAccessibilityClient) +STUB( + "JBv3C-gTTLw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEC2EPNS2_10LibContextE) +STUB( + "JC5ommFaOHo", + _ZN7WebCore29updateRequestForAccessControlERNS_15ResourceRequestERNS_14SecurityOriginENS_23StoredCredentialsPolicyE) +STUB("JC6QsGdn5gc", delegate_virtual_invoke_imt_m_12_p) +STUB("JC7I7J1bllQ", sceKernelGetHwModelName) +STUB("JCBQmmKJcw4", CRYPTO_set_locking_callback) +STUB("JCEBUaUl5QY", nsnp_FreeLicenseMetadata) +STUB("JCGNnROcK6w", _ZN7WebCore15SQLiteStatement12getColumnIntEi) +STUB("JCPwggg12f8", mono_aot_I18N_Rareplt) +STUB( + "JCRGdx9xeFc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEcvbEv) +STUB("JCZkULz99oQ", _ZN3JSC8Profiler8DatabaseC1ERNS_2VME) +STUB( + "JCalVPSaKNY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE6resizeEj) +STUB( + "JCawVO2PsYY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEEdeEv) +STUB("JCdPQZuEEXE", mono_aot_Sce_Vsh_Gls_NativeCallunbox_trampolines) +STUB("JCmHsYVc2eo", tanhl) +STUB("JCnVgZgcucs", sceFontGlyphRefersMetricsHorizontalX) +STUB("JCpm-rt-kFY", _ZN7WebCore9HTMLNames15pluginspageAttrE) +STUB("JCqpB7AGLQg", sceUpsrvUpdateCheckRequestCheckGame) +STUB("JCqxDsIQe3E", _ZN3sce2Np9CppWebApi6Common6VectorIjEC2EPNS2_10LibContextE) +STUB( + "JD3iFUdL+-0", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessionsaSERS5_) +STUB( + "JD5TXgZwP20", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE21intrusive_ptr_sub_refEPS9_) +STUB("JDBcdgH0FnQ", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEED1Ev) +STUB( + "JDHvTKkbxbI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSE_) +STUB("JDLZ8x9gcVc", _ZN3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayerD1Ev) +STUB("JDWOb4UaFYc", sceDevUsbAddHostKevent) +STUB("JDYW1-PECLQ", _ZN3sce7Toolkit2NP2V28Commerce8Products5resetEv) +STUB("JDYbbgccPDE", _ZN3sce2np11NpHttpTransC2EP16SceNpAllocatorEx) +STUB( + "JDaQLsO6--U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEED1Ev) +STUB("JDgSc25Ysco", _ZN3JSC2VM22scriptFetcherSpaceSlowEv) +STUB("JDqkg5ihzk0", mono_profiler_get_events) +STUB("JDqvAZMtNEg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEptEv) +STUB( + "JDtIXQM02NE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEE11get_deleterEv) +STUB( + "JDufMDTQUpc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE8copyFromERKSA_) +STUB("JDwx3Bl4bB4", scePlayerInvitationDialogInitialize) +STUB( + "JDxF0sKTyEk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEC2ERS7_) +STUB("JDz+XAlWY30", sceVencCoreSetPasteImage) +STUB("JDzKvHLMXOI", sceAudioOutSetJediJackVolume2) +STUB( + "JE-3jYenodI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEEdeEv) +STUB( + "JE3B+lD-9Ok", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEED2Ev) +STUB( + "JE7WVvDyemc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEC1EPS8_) +STUB( + "JE8O8p62W9Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEE11get_deleterEv) +STUB("JEBKpzJ8INI", rgctx_fetch_trampoline_rgctx_68_p) +STUB("JEC0lbbB2gU", _ZN7Nicosia5SceneC2Ev) +STUB("JEG+WDtNkKw", sceSdecExecuteSwHevc) +STUB( + "JEGjFQiIP+s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEptEv) +STUB("JEHhANREcLs", sceAudioOutSystemControlGet) +STUB( + "JEKBZNKcVYo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEC2Ev) +STUB("JELHf4xPufo", sceNpCheckCallbackForLib) +STUB( + "JEO1hQ2kYqY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("JETZShs6kqM", sceCesUtf32beToEucJp) +STUB("JEVYGhDc97M", sceAmprAmmCommandBufferMap) +STUB("JEYp0T1VC58", _ZN3sce2np9HttpTrans4InitERKNS0_12HttpTemplateEPNS0_18HttpConnectionPoolEiPKcm) +STUB( + "JEdo2OQOC08", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE7reserveEi) +STUB("JEeDUmYtT5A", _ZNK3sce2Np9CppWebApi7Matches2V113RequestMember6toJsonERNS_4Json5ValueEb) +STUB("JEhq2XYUYis", _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15ErrorD1Ev) +STUB( + "JEm+Y0NuhIs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB( + "JEmTg4ZyTfc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB( + "JErIfVFGLRY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEE11release_refEv) +STUB( + "JEs-iooePUQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEEC2ERS9_) +STUB("JEt20zWYCIE", glVertexAttrib2f) +STUB("JEvAQvdvR1A", sceUserServiceGetVoiceAgentSessionTimeout) +STUB("JEwTPXFKpS4", _ZN7WebCore9DOMWindowD2Ev) +STUB("JEyg5RKFNpY", _ZNK3WTF6String13toInt64StrictEPbi) +STUB("JF2+FzujwUw", mono_aot_ReactNative_Components_Vshmethod_addresses) +STUB( + "JF7KB-OHb3I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "JFAIJPbJcIY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEED1Ev) +STUB( + "JFImt7Fnhw4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEE11release_refEv) +STUB( + "JFL+407oho4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEmmEv) +STUB("JFRj1nTrGl4", _ZN7WebCore28InspectorFrontendClientLocal8SettingsdlEPv) +STUB("JFSCOXTEvfg", FT_Stream_ReadUShortLE) +STUB("JFSfX9g9dy0", WKPreferencesSetShouldAllowUserInstalledFonts) +STUB("JFcSDC6AD+k", sceVdecCoreSyncDecodeWptr) +STUB("JFf2nPKZAAM", monoeg_g_filename_to_uri) +STUB("JFfq04EYkr8", _ZN4Manx17getBaselineOffsetEPKwj) +STUB("JFg1otUfi+Q", _ZN7WebCore10TreeWalker11nextSiblingEv) +STUB("JFg3az5ITN4", sceSystemServiceGetEventForDaemon) +STUB("JFiji2DpvXQ", _ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE) +STUB("JFkvxXYRVS0", + _ZN3sce2Np9CppWebApi14SessionManager2V130PostPlayerSessionsResponseBody17getPlayerSessionsEv) +STUB("JFnoZazQmVc", _ZN3sce7Toolkit2NP23CategoryInfoInputParamsC2Ev) +STUB( + "JFo79ERgvrY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEE7add_refEv) +STUB("JFrWQEQjdp0", _ZTVN3sce16CommonDialogUtil6ServerE) +STUB( + "JFt2-LCxt4Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEcvbEv) +STUB("JFtbEAJ+3K0", mono_aot_System_Collectionsunbox_trampoline_addresses) +STUB("JFyjYpgJALo", _ZNK3sce2np10JsonObject8GetFieldEiPPKc) +STUB( + "JFz+ZktwvBQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("JFzLJBlYIJE", sceRazorCpuBeginLogicalFileAccess) +STUB("JG+2ZSGp8Tk", _ZN12video_parser17cVideoProfilerMp418_releaseAudioCodecEPNS_13VpMediaInfo_tE) +STUB("JG+FmOG9jbQ", sceDeci4hDrfpRmdir_fuse) +STUB( + "JG+gprgI+dU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEED2Ev) +STUB("JG-Dc43R4pM", sceDepth2QueryMemory) +STUB("JG1MkIFKnT8", _FDenorm) +STUB( + "JG2zyU+7eH8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "JG33EGn4aPE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB( + "JG6Vap8Vhqk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEE11get_deleterEv) +STUB( + "JG7KrqMHa-s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEmmEv) +STUB("JGECjvSLd+s", _ZN7WebCore15DatabaseTracker5usageERKNS_18SecurityOriginDataE) +STUB("JGF+59cTHl0", _ZN3sce4Json5ValueC1ERKSt4listIS1_NS0_8StlAllocIS1_EEE) +STUB("JGK6yGiZaQw", _ZN3sce2Np9CppWebApi6Common8IteratorIlEC1Ev) +STUB("JGMio+21L4c", mkdir) +STUB("JGQuq1TIsC8", _ZN3JSC7Symbols16throwPrivateNameE) +STUB("JGVv8xF-A-4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEED2Ev) +STUB( + "JGYIRVtAKb4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEED1Ev) +STUB("JGYMjGdyi+E", _ZN9Inspector15InspectorTarget5pauseEv) +STUB("JGZ2CS3Rh4w", sceDataTransferGetFgTransferProgress) +STUB( + "JGaCXld6sTE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE21intrusive_ptr_sub_refEPS9_) +STUB("JGfTMBOdUJo", sceKernelGetFsSandboxRandomWord) +STUB("JGgj7Uvrl+A", scePthreadCondBroadcast) +STUB("JGkExZI3fFI", u_charName) +STUB( + "JGkYG42e8ts", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEE7get_refEv) +STUB( + "JGl4+FcE73A", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEdeEv) +STUB("JGnW730qpTg", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V314MissingElement9nameIsSetEv) +STUB( + "JGpz9iQTreY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEED1Ev) +STUB("JGwhvrsOS78", _ZN3sce7Toolkit2NP2V28Matching4RoomD1Ev) +STUB( + "JGwuvUsA5+0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEED1Ev) +STUB( + "JH2HZnTh7wg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEE7get_refEv) +STUB( + "JH2lfvGo-X4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEEdeEv) +STUB("JHAYKa2Q2hw", WKPreferencesSetShowsToolTipOverTruncatedText) +STUB("JHAyTKDhBmA", _ZN3sce7Toolkit2NP2V28Matching12Notification11RefreshRoom15INVALID_USER_IDE) +STUB("JHBmUO0py9w", _ZN9Inspector25NetworkFrontendDispatchernwEm) +STUB("JHEcam1RLx4", _ZN7WebCore11MathMLNames6mtdTagE) +STUB("JHG9CTmkdQw", _ZN3sce2np13NpTitleSecretC2ERKS1_) +STUB("JHGxU93dbQg", sceNpHeapFreeImpl) +STUB("JHIz24zeqF0", sceBdSchedSetDiscIdentity) +STUB( + "JHOWuSVZ7yI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEC1EPNS2_10LibContextE) +STUB("JHOtNtQ-jmw", sceNpServiceClientInit) +STUB("JHPhakzTesM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEED2Ev) +STUB("JHSSw7eLWAg", _ZN9Inspector14ConsoleMessageD2Ev) +STUB("JHY3FTvCpi8", jpeg_fdct_4x8) +STUB("JHYAZN267Cw", _ZN3JSC23objectConstructorFreezeEPNS_14JSGlobalObjectEPNS_8JSObjectE) +STUB("JHbabbGVSgs", _ZN3JSC7Symbols25mapBucketValuePrivateNameE) +STUB( + "JHcSgXbrdNw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEE5resetEPS9_) +STUB( + "JHmPBtT4Kak", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB("JHp7ogc1+HY", _Mtx_init_with_default_name_override) +STUB("JHtEMhPonUY", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt6vectorI16SceNpTusVariableNS2_IS4_EEEEC1ERKS7_) +STUB("JHuFHzY5Ov0", WKViewGetPage) +STUB("JHv5PTTZjiA", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament6EventsEEC1Ev) +STUB("JHvEnCQLPQI", _Locale) +STUB("JHwbbje-pZg", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISbIcSt11char_traitsIcENS2_IcEEEE7addressERKS6_) +STUB( + "JHxzNKWg8dc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEppEv) +STUB( + "JHycQWvdMmI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEE7get_refEv) +STUB("JI2n0DRLfBM", _ZN15AbstractStorage12LocalContentD2Ev) +STUB("JI4ly8BJLdc", _ZN7WebCore13JSDOMRectListD2Ev) +STUB("JIEHi4Bs9-k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEC1Ev) +STUB( + "JIHFGaq4brI", + _ZN7WebCore14SecurityPolicy32removeOriginAccessAllowlistEntryERKNS_14SecurityOriginERKN3WTF6StringES7_b) +STUB("JIQKSsEyGbU", __ubsan_handle_load_invalid_value) +STUB("JIjADmol06M", _ZN3WTF11Persistence7DecoderrsERNS_8OptionalIbEE) +STUB("JIm0mxpJAdM", sceDebugReleaseDebugRegister) +STUB("JIo0Fu8Dd68", JVM_GetClassAnnotations) +STUB("JIo6KXGWql0", _ZN7WebCore19BlurFilterOperationD2Ev) +STUB("JIq0tgqNSTM", GCC_except_table242) +STUB("JIscE4uyUP4", + _ZN3sce7Toolkit2NP2V210Tournament7Request19SendUserMatchReport19MAX_SIZE_SCREENSHOTE) +STUB("JIvML6YBykI", sceMusicCoreServerForceKillCurrentCore) +STUB( + "JIwAJCKM7jI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEE7get_refEv) +STUB( + "JJ-A6r4XqLQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("JJ-mkOhdook", _ZNSt13basic_filebufIwSt11char_traitsIwEED0Ev) +STUB("JJ31I5ZoHGA", _ZN3WTF40parseES5DateFromNullTerminatedCharactersEPKc) +STUB( + "JJ42w3-VN2Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEC2EPKS8_) +STUB("JJ7N0ybvaHU", _ZN7WebCore12PrintContext16computePageRectsERKNS_9FloatRectEfffRfb) +STUB("JJ9neZgQDBo", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE7reserveEi) +STUB( + "JJALQvwdHpM", + _ZN3sce2Np9CppWebApi7Matches2V127RequestTeamStatisticFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_20RequestTeamStatisticEEE) +STUB("JJCGSdL-4lY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEcvbEv) +STUB( + "JJGn7KS6Evk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "JJHaGjIEGUs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEC1EPS8_) +STUB("JJP2-ns-hTM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEaSERKS7_) +STUB("JJVMk0VyDlU", _ZN3sce7Toolkit2NP2V211SharedMedia9BroadcastD2Ev) +STUB("JJVOQ9-csDE", WKPreferencesGetCookieEnabled) +STUB( + "JJWNqn8slXI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEEC2ERKSA_) +STUB("JJX4HAYGYuU", _ZN3NTF17URLRequestHttpJobD0Ev) +STUB( + "JJjVnM+9Jw0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEC1Ev) +STUB( + "JJmLIGpHmuI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEEC1ERSA_) +STUB("JJoG1D3v2MA", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12unsetString5Ev) +STUB("JJqvXFYuPec", _ZN3sce7Toolkit2NP2V27Session7Request17ConsumeInvitationD2Ev) +STUB("JJv1on3HygA", + _ZN15AbstractStorage15FacebookContentC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) +STUB("JJzWfWTkTzw", _ZN4Manx14NetworkProfile13cookieEnabledEv) +STUB("JK-T05fwUVA", _ZN3sce2Np9CppWebApi11UserProfile2V113BasicPresence8fromJsonERKNS_4Json5ValueE) +STUB( + "JK0FXmFDEPc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEE5resetEPS9_) +STUB("JK0fCuBEWJM", sceUserServiceSetPbtcFlag) +STUB("JK1oZe4UysY", sceNetEmulationGet) +STUB("JK2VbjS-3pM", mono_gchandle_new_weakref) +STUB("JK2wamZPzwM", sceAudioOut2PortCreate) +STUB( + "JK6AmGTXYlI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEEptEv) +STUB("JKB5zyqVKJE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V110UpdateModeEEaSERKS7_) +STUB("JKEtn7uh0C0", _ZN3JSC7Symbols25iteratedStringPrivateNameE) +STUB("JKGYZ2F1yT8", sceNpTusTryAndSetVariableForCrossSaveAsync) +STUB("JKJK4IdI5DE", isobmf_decoder_getquerydata) +STUB("JKNkx0OzGW0", _ZN3sce7Toolkit2NP2V27Session7Request6Search15MIN_INDEX_VALUEE) +STUB( + "JKQWXbAjHNE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEED2Ev) +STUB("JKRf+2yrIaE", UCNV_FROM_U_CALLBACK_STOP) +STUB( + "JKTaWWgfnrQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "JKWoZEDBE84", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEEdeEv) +STUB( + "JKZ55zfqI+A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEC2EPS8_) +STUB("JKbDB4m5qyA", sceDataTransferTargetAbortPrepareTransfer) +STUB("JKbiE8BNPbc", _ZN3JSC16callCustomSetterEPNS_9ExecStateEPFbS1_llEbNS_7JSValueES4_) +STUB( + "JKfCmqrvJgM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEdeEv) +STUB( + "JKhZeyvKfTM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEC1EPS6_) +STUB("JKl06ZIAl6A", sceHttpAbortRequestForce) +STUB("JKl4a2-u08Q", _ZN7WebCore11HTMLElement5clickEv) +STUB( + "JKmQO41BaRA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEE11get_deleterEv) +STUB("JKo44-+kGg8", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt6vectorI16SceNpTusVariableNS2_IS4_EEEE7destroyEPS6_) +STUB("JKr08Xt4-fw", _ZNSt9basic_iosIcSt11char_traitsIcEE5clearENSt5_IosbIiE8_IostateEb) +STUB("JKsefjJ5H7A", _ZN7WebCore8Settings33setFontFallbackPrefersPictographsEb) +STUB("JKxPw1ZBtNM", sceVnaPlayTts) +STUB("JKyG3SWyA10", pthread_attr_setguardsize) +STUB("JL+56RCNxbI", mono_mlist_alloc) +STUB( + "JL-TsSd6Vds", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEeqERKS9_) +STUB("JL3q4exb1R4", _ZNK3sce2Np9CppWebApi6Common6VectorINS2_6StringEE4sizeEv) +STUB("JL4zz6ehIWE", _ZN3sce2np8NpTicketD2Ev) +STUB("JL9jF0r0KbU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE7popBackEv) +STUB( + "JLDQKL-8t8w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB( + "JLH36M9t1c0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEC2EPKS8_) +STUB("JLKd45DXMWw", _ZN7WebCore6Region21updateBoundsFromShapeEv) +STUB( + "JLNgqMXnSKc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEppEi) +STUB( + "JLP5kpUltsw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE8copyFromERKS9_) +STUB("JLalnDvk6B4", sceAppInstUtilGetContentSize2) +STUB( + "JLq5lQg2o90", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE8copyFromERKS9_) +STUB( + "JLs1t7vRlz0", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEEiRNS2_10LibContextEPT_m) +STUB("JLwBDYxOYXM", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119NatConnectivityFrom6toJsonERNS_4Json5ValueEb) +STUB("JM4EBvWT9rc", tanh) +STUB("JM4dtbCgfXg", _ZN3sce7Toolkit2NP2V29Challenge7Request16GetChallengeDataC2Ev) +STUB("JM58a21mtrQ", sceHttpAddQuery) +STUB("JMA7QKrZvjc", _ZN3sce3pss5orbis9framework12PsmEventData8SetValueERKNS_4Json5ValueE) +STUB("JMADh-6iSWc", scePsmExecute) +STUB("JMBlA4Sqkek", _ZN9Inspector21InjectedScriptManagernaEm) +STUB("JMJ09u+0RvU", _ZN7CoreIPC13DataReference6decodeERNS_15ArgumentDecoderERS0_) +STUB("JMKl4AB0qAY", _ZN3sce2Np9CppWebApi14SessionManager2V125ResponseGameSessionPlayerD1Ev) +STUB("JMNwMECvR4U", sceVideoCoreSetThumbnailInfo) +STUB( + "JMP7G31eyN4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE3endEv) +STUB("JMPK-1KGVfo", _ZN15AbstractStorage10TwitterAPI11SendContentEPKvl) +STUB("JMR7Ta53gWo", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge10ChallengesEEC2Ev) +STUB("JMSapEtDH9Q", sceNpTrophySystemCloseStorage) +STUB("JMUQsZWRFyA", fuse_get_context) +STUB("JMUe8On8+E0", g_opcodeMap) +STUB( + "JMVCqzKaQus", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE21intrusive_ptr_sub_refEPS9_) +STUB("JMVvoQs4Vuc", YGNodeSetChildren) +STUB("JMap+RuWCso", _ZN3PAL12CryptoDigest6createENS0_9AlgorithmE) +STUB("JMcDB6ul5FM", _ZN3JSC17JSPromiseDeferred6rejectEPNS_9ExecStateENS_7JSValueE) +STUB("JMhvguiXDRw", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112UpdateStatusEEppEv) +STUB( + "JMlXcYqRHRE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEEC1ERKSA_) +STUB( + "JMpyFyWW4sQ", + _ZN7WebCore9Scrollbar21createNativeScrollbarERNS_14ScrollableAreaENS_20ScrollbarOrientationENS_20ScrollbarControlSizeE) +STUB( + "JMwBt9GFCBo", + _ZN7WebCore30forwardForEachCallToBackingSetERNS_17JSDOMGlobalObjectERN3JSC9CallFrameERNS2_8JSObjectE) +STUB("JN11cC6WIkY", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V333PsnWebError_error_missingElements7getNameEv) +STUB( + "JN6qsUu3T-8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEC1Ev) +STUB("JN7DMHbIVIY", _ZN3sce7Toolkit2NP2V29Challenge10Challenges8deepCopyERKS4_) +STUB( + "JN7kxXolIPs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEixEm) +STUB("JNHfaQ3Sv98", _ZN7WebCore9HTMLNames25onwebkittransitionendAttrE) +STUB( + "JNOSfoQLGBQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEC1EPS8_) +STUB("JNTMIaBIbV4", sceNgs2RackSetUserData) +STUB("JNUH68bpuxI", _ZN9Inspector34DOMStorageBackendDispatcherHandlerD2Ev) +STUB("JNWS6QRHjXc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEixEm) +STUB( + "JNYW2r3+xZo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("JNatysW6CZk", jpeg_idct_7x14) +STUB("JNkVVsVDmOk", pthread_attr_getguardsize) +STUB("JNktKOUPYCQ", + _ZN7WebCore21UserContentController20removeUserStyleSheetERNS_15DOMWrapperWorldERKN3WTF3URLE) +STUB("JNqhKC7xEio", rgctx_fetch_trampoline_mrgctx_122_p) +STUB("JNuNqwh0YgE", GCC_except_table179) +STUB("JNxgC+-Mtew", u_feof_67) +STUB( + "JNy6E0rUtUY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEED1Ev) +STUB("JO-9GKQvbCw", WKPageConfigurationGetContext) +STUB("JO-ugUSKi44", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi22ParameterToCreateMatchC2ERS5_) +STUB( + "JO2eZo5+odA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEptEv) +STUB("JO3+XBPWgeI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE5beginEv) +STUB("JO47seG-aN0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEEC2ERS9_) +STUB("JO4yuTuMoKI", sceNetCtlGetNatInfo) +STUB("JO5+JCKFMD4", _ZNK15AbstractStorage15FacebookStorage10GetServiceEv) +STUB("JO5QXiyBcjQ", sceUserServiceSetPbtcThursdayHoursStart) +STUB( + "JODtJKnMrYg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEC2ERS8_) +STUB("JOEK19Eybio", mono_aot_Sce_Vsh_SysUtilWrapperunwind_info) +STUB( + "JOHv22-xmzE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEED1Ev) +STUB( + "JOJcTmgv8aM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEC1EPKS8_) +STUB("JOQYfWleMOE", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIjEppEi) +STUB("JOV1XY47eQA", _Thrd_abort) +STUB("JOWmDrl+j20", sceAgcCbSetUcRegisterRangeDirectGetSize) +STUB( + "JOak3gjACRY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE4sizeEv) +STUB("JObMoFPvfYI", usprep_openByType_67) +STUB( + "JOd9ljiTPOw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEC1Ev) +STUB("JOeG2B2AJmk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE8copyFromERKS7_) +STUB( + "JOeNO1OiWjQ", + _ZN3JSC23JSModuleNamespaceObject18getOwnPropertySlotEPNS_8JSObjectEPNS_14JSGlobalObjectENS_12PropertyNameERNS_12PropertySlotE) +STUB("JOesYFupLKA", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEEC2Ev) +STUB("JOi9TuQ4PVY", rgctx_fetch_trampoline_rgctx_16_p) +STUB("JOj6qfc4VLs", + _ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE5_InitERKSt8_Locinfo) +STUB( + "JOwemtSCW3k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEE11release_refEv) +STUB("JP-PtKMiI1E", _ZN3sce4Json5ArrayC1Ev) +STUB("JP2VBzeI9NU", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V110AvatarSizeEEC2Ev) +STUB( + "JP7XCBGtX7s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "JP8uep0SjBc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE8pushBackERKS8_) +STUB("JP9y7f7e7QQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V125ResponseGameSessionPlayer12getAccountIdEv) +STUB( + "JPDqSOnI6nI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEC2EPS6_) +STUB( + "JPDw8L0+efM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEC2Ev) +STUB( + "JPEzTlqdeRA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEE7add_refEv) +STUB( + "JPFa5NRl0JI", + _ZN7WebCore24DocumentMarkerController13removeMarkersEN3WTF9OptionSetINS_14DocumentMarker10MarkerTypeEEE) +STUB( + "JPJe-fW02eo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE6resizeEj) +STUB("JPMZdhX2qEA", _ZN7WebCore13GraphicsLayer17suspendAnimationsEN3WTF13MonotonicTimeE) +STUB("JPN+kTUT1nU", fuse_setup) +STUB( + "JPN+yP-GTMM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("JPQagYw-y+4", sceAmprAmmMeasureAmmCommandSizeModifyProtect) +STUB("JPbxSMGcIXk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEE3getEv) +STUB( + "JPdvNzMvrE8", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToSendPlayerSessionMessageC1ERS5_) +STUB( + "JPeLMnpblzM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEC1Ev) +STUB("JPh3Zgg0Zwc", sceJpegDecCreate) +STUB( + "JPiugmRbPs4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE3endEv) +STUB( + "JPogfcq6G4k", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "JPolFAvpTb0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "JPrWRgM-jTg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "JPuDW37bbL0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE8capacityEv) +STUB( + "JPuT1sBcgTE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEmmEi) +STUB("JPweFxj7KXo", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData11hasobjectIdEv) +STUB("JPx70wOPTuE", JVM_GetTemporaryDirectory) +STUB("JPz5ZejS4k8", _ZN3sce2Np9CppWebApi13InGameCatalog2V520ContainerRatingCountD2Ev) +STUB("JPzSawlNG9E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEdeEv) +STUB( + "JQ-Ylaenqvo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE7popBackEv) +STUB("JQ0sop7jsm4", _ZN3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse17setPreviousOffsetERKi) +STUB( + "JQ419YwNuc8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEdeEv) +STUB("JQ5PeKXGA2Y", _ZN3JSC16slowValidateCellEPNS_6JSCellE) +STUB( + "JQ8FPqED1YU", + _ZN3sce2Np9CppWebApi11Matchmaking2V127GetOfferResponseBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_20GetOfferResponseBodyEEE) +STUB( + "JQC7l6djA-k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEE11release_refEv) +STUB("JQKWIsS9joE", sceFontWritingLineGetOrderingSpace) +STUB( + "JQSpi9J2tj8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEE7add_refEv) +STUB( + "JQTLT4u+1Go", + _ZN7WebCore26MessagePortChannelRegistry29existingChannelContainingPortERKNS_21MessagePortIdentifierE) +STUB( + "JQWQSRZdJ3E", + _ZN8meta_gen11MsvPromoter24setKeyValue_TBLAVC_TitleENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB( + "JQbVuHG2Rzo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEEaSERSA_) +STUB( + "JQfoYnhuz+E", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS5_INS7_9RecordApi26RecordScoreResponseHeadersEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "JQi5y4LVCHM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("JQk8ck8vnPY", sceNetResolverConnect) +STUB( + "JQkZv1wLd7c", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEEdeEv) +STUB("JQkp+nemtRY", WKBundlePageGroupCopyIdentifier) +STUB( + "JQpcGrx4BTc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEmmEv) +STUB("JQqAOeX3ai8", + _ZN3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayerC2EPNS1_6Common10LibContextE) +STUB("JQrajDnmJR0", _ZN7WebCore6JSNodeD2Ev) +STUB("JQvhDx6JnW4", uset_getSerializedSet_67) +STUB( + "JQwrcyLAwVc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE4sizeEv) +STUB( + "JQx+9ktvZUc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEEaSERKSA_) +STUB("JQx-yaSToZ8", _ZNK7WebCore16HTMLMediaElement12networkStateEv) +STUB("JQy5ECB3u9c", JVM_GetClassModifiers) +STUB("JQyLCevN3aM", FT_Get_PS_Font_Info) +STUB( + "JR50QoqsUMg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEEC1EPS8_PNS2_10LibContextE) +STUB("JR55OjkCHoc", _ZN7WebCore8SVGNames12edgeModeAttrE) +STUB("JR5LaqZ9Fxg", _ZN7WebCore11CachedFrame23cachedFramePlatformDataEv) +STUB( + "JR5fjwq-IjY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEED2Ev) +STUB( + "JR7Hw6IWdTM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB( + "JR9Iu5p+lPE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("JRCLamjp4XM", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE7reserveEi) +STUB( + "JRCsVIe61vM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("JRED8uRzYcc", uprv_pow_67) +STUB("JREmVpFIgEY", _ZN15AbstractStorage14StorageManager6MallocEm) +STUB("JRJGe2pCRSY", uprv_getRawUTCtime_67) +STUB("JRKSSV0YzwA", sceGnmDebuggerResumeWavefrontCreation) +STUB("JRL5HQ04IFM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12FriendsRanksEEC1Ev) +STUB("JRPAh6iy7dY", ulocdata_getPaperSize_67) +STUB( + "JRPQayxpW9I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEED1Ev) +STUB("JRPrmfTHt08", _ZNK3WTF3URL30stringCenterEllipsizedToLengthEj) +STUB("JRQDxlSFesA", _ZN3sce3pss5orbis9framework11PsmCallList6UpdateEv) +STUB("JRQIZdQ5VRs", _ZN9JITBridge8shutdownEb) +STUB( + "JRQUjbrKz6U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEC1Ev) +STUB( + "JRX4wZNzuZY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEEC2EPS8_PNS2_10LibContextE) +STUB( + "JRhxpEr49dY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEE7add_refEv) +STUB( + "JRm5ieDo81A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE8pushBackERKS8_) +STUB("JRtw5pROOiM", _ZN3sce2np9RefObjectC2Ev) +STUB("JS5Jdf00tcU", sceUserServiceSetVolumeForDs4Speaker) +STUB("JS6H7Kwm37s", sceUserServiceSetShareStatus3) +STUB("JSEDJhmqss4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEE7get_refEv) +STUB("JSHnjTejK20", pR2) +STUB("JSNgID8Bupk", sceKernelCheckDipsw) +STUB( + "JSOuey6xpdA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "JSRkbgmSXg4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "JSXGe6gEhQM", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot9getslotIdEv) +STUB("JSXzwTOSylU", _ZN12video_parser16cVideoContentMp418releaseDrmInstanceEPNS_9iVideoDrmE) +STUB("JSZRv7K8MqM", WKPreferencesSetDNSPrefetchingEnabled) +STUB( + "JSbELrBeGOo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEE11get_deleterEv) +STUB("JSbNmt85AcQ", RemotePlayProhibitStreaming) +STUB("JScMKvWaF28", _ZN7WebCore9HTMLNames11classidAttrE) +STUB("JSeJIy8wt0s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEcvbEv) +STUB("JSg1MSo7NKE", _ZN3sce4Json5Array8iteratorC2Ev) +STUB( + "JSh2DA0ZD9M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("JSi+hWkA9pI", FTA_Add_Module_winfonts) +STUB("JSmMVMH2UVo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEcvbEv) +STUB("JSpF6akjCns", Java_java_util_zip_CRC32_update) +STUB("JSpe2pqtgn4", mono_aot_Sce_Vsh_WebBrowserunwind_info) +STUB("JSphJHGztUM", _ZN7WebCore7Element14getClientRectsEv) +STUB("JSx9KSwmzKI", u_getCombiningClass_67) +STUB("JT+t00a3TxA", sceNpGetAccountCountryA) +STUB("JT09vtkRDFo", WKContextConfigurationSetLocalStorageDirectory) +STUB("JT1UHZPbMas", _ZN7WebCore10Pasteboard5writeERKNS_20PasteboardWebContentE) +STUB("JT4sPygD4nc", _ZNK7WebCore26Matrix3DTransformOperationeqERKNS_18TransformOperationE) +STUB("JT5TelrgjVo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEaSERKS7_) +STUB("JTIHqYZFMQE", ucnv_close) +STUB( + "JTJB7rlYQDI", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS2_6BinaryEEENS5_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB( + "JTNpjZElMiQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEED1Ev) +STUB( + "JTTweisGNNI", + _ZNK3sce2Np9CppWebApi14SessionManager2V134PostGameSessionsSearchResponseBody6toJsonERNS_4Json5ValueEb) +STUB("JTX3PmF93GM", + _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container31unsetContentInteractiveElementsEv) +STUB("JTXC0psWzuo", ucol_getRules_67) +STUB("JTXc91mV-lE", _ZN3sce7Toolkit2NP2V28Matching12Notification14NewRoomMessageD1Ev) +STUB("JTaAzpmi+tU", mono_aot_System_IO_Compression_FileSystemunbox_trampoline_addresses) +STUB("JTctYix8NXU", sceShellCoreUtilWriteSmrHddDummyData) +STUB("JTeaIEONlYI", WKArrayGetTypeID) +STUB("JTiSgKFrT0Y", _ZN3sce7Toolkit2NP2V28Commerce7Request11GetProductsC2Ev) +STUB("JTjUklvzi3s", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V113ErrorResponse6toJsonERNS_4Json5ValueEb) +STUB("JTk-tDMt1vA", mono_aot_Mono_Data_Tdsjit_code_start) +STUB( + "JTmIYW4MJ3M", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE5beginEv) +STUB( + "JTqLoioHbqk", + _ZThn16_N9Inspector21InspectorRuntimeAgent14callFunctionOnERN3WTF6StringERKS2_S5_PKNS1_8JSONImpl5ArrayEPKbSB_SB_RNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISF_EEEERSt8optionalIbE) +STUB("JTvBflhYazQ", sceKernelWaitEventFlag) +STUB("JTw1cAVkuc0", sceUltConditionVariableSignal) +STUB("JTwLgG1svM4", __tsan_atomic64_compare_exchange_weak) +STUB("JTwt9OTgk1k", _ZNSt13basic_filebufIcSt11char_traitsIcEE9_EndwriteEv) +STUB("JTx7xm5hkvE", _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35ErrorD2Ev) +STUB("JU-bibmc2Ss", _ZN3sce7Toolkit2NP2V212ActivityFeed11SharedVideo20USER_COMMENT_MAX_LENE) +STUB("JUAOpzalx+0", ubidi_orderParagraphsLTR_67) +STUB("JUBOIzusdEw", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku10getEndDateEv) +STUB( + "JUEuKXwrHTw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEC1EPNS2_10LibContextE) +STUB( + "JUIwyPcxMYk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEE11get_deleterEv) +STUB("JULt0eLjPT0", mono_btls_x509_print) +STUB( + "JUMmcrX5VP0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEppEi) +STUB( + "JUNTtmQQpDk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "JUNxke5HMdk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEEC2Ev) +STUB("JUSVnCpYo4M", _ZNSt9basic_iosIcSt11char_traitsIcEE4swapERS2_) +STUB( + "JUWG3AoHxKg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEC1ERS7_) +STUB( + "JUY2UF+z+XE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB( + "JUZphrP-smU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEplEm) +STUB( + "JUa2cNWhAtc", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_13WhoLikedStoryENS1_15AppSTLAllocatorIS5_EEEEC2Ev) +STUB("JUbN6tGxXnQ", _ZN7WebCore24DocumentParserYieldTokenD2Ev) +STUB("JUgeqTtnIuQ", WKPreferencesCopyFantasyFontFamily) +STUB("JUh1zhXSrWE", rgctx_fetch_trampoline_mrgctx_31) +STUB("JUimFtKe0Kc", sigaddset) +STUB("JUu0-1OqEro", umtx_lock) +STUB("JUyRlTUa8TE", _ZN3WTF13mayBeGCThreadEv) +STUB("JV-oxAdaPeo", WKBundleGetJavaScriptHeapStatistics) +STUB("JV2k5nGxZS4", _ZNK7WebCore24RotateTransformOperation10isIdentityEv) +STUB("JV9qZMoLtEo", mono_metadata_field_info_with_mempool) +STUB("JVMIyR8vDec", sceUserServiceGetPbtcSundayDuration) +STUB( + "JVMoPnVHUfI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE8copyFromERKS9_) +STUB("JVPBY2ea1UE", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TSS7TssDataEE3getEv) +STUB( + "JVT+Tq-uiwg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEED2Ev) +STUB( + "JVTRAtzNkLs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE7popBackEv) +STUB("JVV9P5rGzk8", _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead9getLeaderEv) +STUB("JVYt1hlHSvo", sceKernelGetDebugMenuMiniModeForRcmgr) +STUB( + "JVZAJPhCYQo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEEC2ERKSA_) +STUB("JVZt7JQpSps", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEEC1ERKS6_) +STUB( + "JVao2zeA7zA", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEiRNS2_10LibContextEPT_m) +STUB("JVc71p0lpFs", scePthreadMulti) +STUB("JVgZfJt3ZqQ", blockpool_open) +STUB("JVhstJ9mJmo", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEEcvbEv) +STUB("JVmUZwK-HJU", setuid) +STUB( + "JW-mKNaMcF8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEEC2EPS6_PNS2_10LibContextE) +STUB("JW19IBALPx8", delegate_virtual_invoke_imt_m_7) +STUB("JWBWfbo61kM", _ZN3sce7Toolkit2NP2V210Tournament10TeamMemberC1ERKS4_) +STUB("JWBr5N8zyNE", isdigit) +STUB("JWPGyyGoWdU", OPENSSL_load_builtin_modules) +STUB( + "JWQ4IGXzwtk", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate11setPerGenreERKNS1_6Common12IntrusivePtrINS3_29MatchCompletionRatePropertiesEEE) +STUB("JWT7NbPA9Ds", + _ZN15AbstractStorage14StorageManager12NotifyCreateERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) +STUB("JWTacfe3XYY", _ZN7WebCore17FrameLoaderClient28notifyPageOfAppBoundBehaviorEv) +STUB( + "JWVbM34Eizw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEC1EPS8_) +STUB( + "JWWUpeq0p8g", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEptEv) +STUB("JWgOcc6QyeQ", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS19FriendsDataStatusesEE12deepCopyFromERS7_) +STUB( + "JWih++ftkDU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE5clearEv) +STUB( + "JWk0Af9WOns", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEE7get_refEv) +STUB("JWnUCOml8L8", _ZN3sce7Toolkit2NP2V28Matching17AttributeMetadata13MAX_SIZE_NAMEE) +STUB("JWplGh2O0Rs", _ZNKSt8numpunctIcE8groupingEv) +STUB("JX2OpKUAFmc", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getAllPrimaryAudioStreams) +STUB("JX3BsleH6ps", Java_java_lang_StrictMath_tanh) +STUB( + "JX7bmADbfrc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEED1Ev) +STUB( + "JXDyQLhv6RA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE8capacityEv) +STUB( + "JXHTrqMWIpg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEED2Ev) +STUB( + "JXLZSzn1+Ks", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEdeEv) +STUB("JXMHfBlczDc", _ZN7WebCore4Page30passiveTouchEventListenerRectsEv) +STUB("JXRC5n0RQls", sceNgs2SystemUnlock) +STUB("JXZF3npNdeA", _ZN3sce2Np9CppWebApi6Common6VectorIjE7reserveEi) +STUB( + "JXa0UL2pvO8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEC1EPKS8_) +STUB("JXlI9EZVjf4", sceNetCtlGetState2IpcInt) +STUB( + "JXlO8PSAVxw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEppEv) +STUB("JXlrCLLCLmc", _ZN3sce4Json5ValueC2ERKNS0_6ObjectE) +STUB("JXpT6IIXUqs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEdeEv) +STUB("JXzQGOtumdM", _ZNKSt8numpunctIcE16do_decimal_pointEv) +STUB("JY3szqHFsZY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEEC2Ev) +STUB("JY7ySwqlzRM", _ZN7WebCore12JSTimeRanges11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("JY8X2aiT430", _ZN7WebCore11JSDOMWindow12getPrototypeEPN3JSC8JSObjectEPNS1_9ExecStateE) +STUB( + "JY9OCgrC3MI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("JYPS3CZwkjI", il2cpp_method_get_flags) +STUB( + "JYQLXXmo2GU", + _ZN7WebCore11ImageBufferC2ERKNS_9FloatSizeEfNS_10ColorSpaceENS_13RenderingModeEPKNS_10HostWindowERb) +STUB("JYZigPvvB6c", _ZNSt14numeric_limitsIeE8digits10E) +STUB( + "JYa01KuMqhA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEneERKS9_) +STUB("JYcDoHDeq-E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEC1Ev) +STUB("JYd9g9L+TmE", sceAmprMeasureCommandSizeWriteAddressFromCounter_04_00) +STUB( + "JYfKXqabwW4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE3endEv) +STUB( + "JYl4SDDkuAQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE7reserveEi) +STUB("JYnC+JfDauc", _ZNK3sce2Np9CppWebApi15ProfanityFilter2V219WebApiErrorResponse10errorIsSetEv) +STUB( + "JYoGfjITa2Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEEaSERKSA_) +STUB( + "JYp7VlqCuqQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("JYu8tujmiTc", _ZN3WTF4SHA18addBytesEPKhm) +STUB("JYuYFcPEJhw", _ZN9Inspector22HeapFrontendDispatcherC2ERNS_14FrontendRouterE) +STUB( + "JZ+KVVvkWEI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("JZ-SbEchaVI", _ZNK7WebCore11PageOverlay10controllerEv) +STUB( + "JZ3+lzus8YI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE8pushBackERKS8_) +STUB( + "JZ3WbPtPqag", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("JZ3wKDjl0yQ", _ZN15AbstractStorage7ContentD1Ev) +STUB( + "JZ4EZkY6iEw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE7popBackEv) +STUB("JZ5NzN-TGIQ", sceUserServiceSetThemeBgImageDimmer) +STUB("JZ5yszZEFEY", ures_getSize) +STUB("JZ6Si-1IowA", + _ZN3sce2Np9CppWebApi7Matches2V122RequestMatchStatisticsC2EPNS1_6Common10LibContextE) +STUB("JZ7r1NnPrt4", _ZN7WebCore15JSSVGSVGElementD2Ev) +STUB("JZ8tx3cZl-4", _ZN3sce7Toolkit2NP2V28Commerce7Request11GetProducts12MAX_PRODUCTSE) +STUB("JZ9gGlJ22hg", _WStofx) +STUB("JZBAAN607gQ", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE5clearEv) +STUB("JZKw5+Wrnaw", pthread_sigmask) +STUB("JZMm1O3sBAU", removeTelemetryErrorListener) +STUB("JZOeaOI8rU8", sceDebugReadProcessRegisterForSDBGP) +STUB( + "JZOs3euewh0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE21intrusive_ptr_add_refEPS9_) +STUB("JZPvgm7XBtI", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_7TssDataEE3getEv) +STUB("JZQPxcMK+ZA", _ZNK7WebCore22EmptyFrameLoaderClient15canShowMIMETypeERKN3WTF6StringE) +STUB( + "JZQu-tR0cR0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE5beginEv) +STUB("JZR0UvNaDYc", ulist_next_keyword_value_67) +STUB( + "JZRhTtF6Wok", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEEC2ERKS8_) +STUB("JZRjz+vxpuM", vm_send_CreateThrowTrampoline) +STUB("JZUvGmASho0", _ZN3sce7Toolkit2NP2V29Challenge7Request21GetReceivedChallengesC2Ev) +STUB("JZWEhLSIMoQ", __atomic_is_lock_free) +STUB("JZZchPyTk2k", _ZN9Inspector30WorkerBackendDispatcherHandlerC2Ev) +STUB("JZb6dV1q-eI", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersaSERS5_) +STUB("JZeWjTYQwd4", _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead11memberIsSetEv) +STUB("JZkR7DtZvHE", mono_aot_SMDiagnosticsplt_end) +STUB( + "JZlH47-Lodk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEE7add_refEv) +STUB("JZmn6lNGFyU", _ZNK7WebCore14SecurityOrigin8toStringEv) +STUB("JZnM3AsJsRE", _ZN3NTF17URLRequestDataJobC1Ev) +STUB( + "JZpv97wqzCc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEE3getEv) +STUB("JZrd12xKQZw", _ZNK3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate11getPlatformEv) +STUB("JZtYvHA0HGI", _ZNK3JSC17DebuggerCallFrame19vmEntryGlobalObjectEv) +STUB("JZvQYbnyCRo", GCC_except_table255) +STUB( + "JZxOSQNsWCM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEEC1ERKSA_) +STUB( + "JZxSUUNDsbY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE21intrusive_ptr_sub_refEPSA_) +STUB( + "Ja+O3p4IUcM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEED1Ev) +STUB( + "Ja2C3R8FoWM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEED2Ev) +STUB("Ja4AluDjeoI", mono_aot_Sce_Vsh_Webbrowser_XdbWrapperunbox_trampolines) +STUB( + "JaE6NtYASYE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEE3getEv) +STUB("JaFNOBMM5rA", _ZN7WebCore11BitmapImage11nativeImageEPKNS_15GraphicsContextE) +STUB( + "JaJCveN-P48", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEC1EPNS2_10LibContextE) +STUB( + "JaM6E-gMI9E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE8capacityEv) +STUB("JaNjljrSqyg", _ZN9Inspector21CSSFrontendDispatchernwEm) +STUB("JaRMy+QcpeU", scePthreadAttrGetdetachstate) +STUB( + "JaROWsPRaXE", + _ZN9Inspector21InjectedScriptManagerC2ERNS_20InspectorEnvironmentEON3WTF3RefINS_18InjectedScriptHostENS3_13DumbPtrTraitsIS5_EEEE) +STUB( + "JaSeUj5NrBs", + _ZN3JSC13RuntimeMethod6createEPNS_9ExecStateEPNS_14JSGlobalObjectEPNS_9StructureERKN3WTF6StringEPNS_8Bindings6MethodE) +STUB("JaWrrHX7nfc", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getInteger8Ev) +STUB("Jaa16wSEA9U", sceSpPthreadCondDestroy) +STUB("Jahsnh4KKkg", madvise) +STUB("JajAKT2DsiA", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEEaSERS7_) +STUB( + "JakrtOQM6k4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi10uploadDataEiRKNS4_21ParameterToUploadDataERNS1_6Common19UpStreamTransactionINS8_12IntrusivePtrINS3_22UploadDataResponseBodyEEENSA_INS4_25UploadDataResponseHeadersEEEEE) +STUB( + "JapAWCBN4Zw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEC1EPKS8_) +STUB("JarMIy8kKEY", pthread_attr_setschedpolicy) +STUB( + "Jav0u8KDQ2M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEED1Ev) +STUB( + "Jaxt+apCFYY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEdeEv) +STUB( + "JazBKE4OTfA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEE7get_refEv) +STUB("Jb0DetophBI", _ZN7WebCore8SVGNames12exponentAttrE) +STUB("Jb0VJFvx0Qk", _ZNK7WebCore12TextIterator4nodeEv) +STUB("Jb1OVO08cOE", _ZN3WTF15isWordTextBreakEP14UBreakIterator) +STUB("Jb2uGFMr688", pthread_getaffinity_np) +STUB("Jb8qlQnHbaI", u_isWhitespace_67) +STUB("JbEwAVpz8zE", _ZN3WTF19MetaAllocatorHandleD2Ev) +STUB( + "JbF7DMZaJeo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "JbFmZ1CosNE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE10setContextEPNS2_10LibContextE) +STUB( + "JbFvzs2lOyY", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeOnlineId2AccountIdBatchD1Ev) +STUB("JbIQkQ1snOo", _ZN7WebCore12SharedBufferC1EPKcm) +STUB("JbJ-eZFsftc", _ZGVNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE) +STUB( + "JbJaUrPl10M", + _ZN3sce7Toolkit2NP2V212ActivityFeed7getFeedERKNS3_7Request7GetFeedEPNS2_4Core8ResponseINS3_4FeedEEE) +STUB( + "JbLCJvR8NJ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEEC2Ev) +STUB("JbLS-O2Uyr0", _ZNK7WebCore26HTMLTextFormControlElement23visiblePositionForIndexEi) +STUB("JbNbs4ijvzg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEE3getEv) +STUB("JbQw6W62UwI", _Fetch_add_8) +STUB("JbTeZfIw2iY", _ZNK3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15Error10getMessageEv) +STUB("JbWUV6K+82c", _ZN9Inspector25RuntimeFrontendDispatchernwEmPv) +STUB("Jbc3ZPBpEx4", _ZNK7WebCore6Editor12selectedTextEv) +STUB( + "JbcRTMZlARM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEEC2ERKSA_) +STUB( + "JbcvUjpDc+M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("JbdllN6U9HI", _ZN3sce7Toolkit2NP2V24Core7Request16ThreadProperties16PRIORITY_HIGHESTE) +STUB( + "Jbg7IlUVhWU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEC1EPKS8_) +STUB("Jbj0ww7VCMM", mono_aot_Sce_Vsh_DiscPlayerjit_got) +STUB( + "JbkOB7BTA8I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEC1EPKS8_) +STUB("Jblm-5opDp8", mono_aot_Sce_Vsh_Messages_DbAccessLibjit_code_start) +STUB( + "JbwWcYdh1DA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120MmrPropertiesFactory6createEPNS1_6Common10LibContextEiPNS5_12IntrusivePtrINS3_13MmrPropertiesEEE) +STUB("Jc0fIQwCV5s", _ZN23sceMetadataReaderWriter7LPEntryC1EPKNS_10ParserInfoE) +STUB("Jc6E7N+dHz0", system) +STUB( + "Jc9mD5YSdII", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("JcAsZlyr3Mo", _ZNK3sce2np9JsonValue12GetItemValueEi) +STUB( + "JcAxchbfkY0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE8copyFromERKS9_) +STUB("JcCWxUGoKF8", _ZNK7WebCore19DragCaretController30caretRectInRootViewCoordinatesEv) +STUB("JcDuAIDQ3NI", mono_image_ensure_section_idx) +STUB("JcGel5E1+KU", _ZNK7WebCore19BlurFilterOperation14affectsOpacityEv) +STUB( + "JcLyHOI4xvk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEED1Ev) +STUB( + "JcP4LNPhEk0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEC1EPNS2_10LibContextE) +STUB("JcPje9m3yyc", sceHidControlSetApplicationFocus) +STUB("JcUZCNbdFGA", _ZN9Inspector21DOMFrontendDispatcher7inspectEi) +STUB( + "JcX3wGDmKsI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEEC1Ev) +STUB( + "JcfxRR9PsZQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEEC1ERSA_) +STUB("JcqdKidhuK0", sceNpAppInfoIntCheckServiceAvailabilityAllA) +STUB("JcquXB39yLc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEEC2EPKS5_) +STUB( + "Jcrm67-T5Es", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody21unsetJoinableUserTypeEv) +STUB("Jcu0Wl1-XbE", _Getdst) +STUB("JcwL-sCzYFo", _ZN7WebCore12PrintContext20pageNumberForElementEPNS_7ElementERKNS_9FloatSizeE) +STUB( + "Jd+1bHtodQ0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEC1Ev) +STUB( + "Jd+clkQSM50", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE5beginEv) +STUB( + "Jd2l5yvbUdY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEED2Ev) +STUB( + "Jd42E+3+trQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("Jd4wBWL0Mqs", mono_aot_Mono_Data_Sqliteunbox_trampolines_end) +STUB( + "JdBB3gTj9kQ", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeAccountId2OnlineIdBatchD2Ev) +STUB("JdKoblsgg00", _ZNK7WebCore15FocusController18focusedOrMainFrameEv) +STUB( + "JdLDykSHSxg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE7popBackEv) +STUB( + "JdRuoSNUoAw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEEC2EPS5_PFvS7_EPNS2_10LibContextE) +STUB("JdWRfEu6yEg", _ZN3JSC7Symbols17repeatPrivateNameE) +STUB( + "JdYZlDuAwzE", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "JdfDvvLqz-0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEE5resetEPS6_) +STUB("JdksQu8pNdQ", sceAvPlayerGetVideoDataEx) +STUB("JdoZDRANNUE", JSObjectMakeError) +STUB( + "JdrGSxL2Ab8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEC1EPS8_) +STUB( + "JdtZWyILEkw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEppEi) +STUB( + "JdtySM76bWs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEcvbEv) +STUB("JdzKCiUspNM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth8AuthCodeEE12deepCopyFromERS7_) +STUB( + "Je0-LmoRXYM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEED1Ev) +STUB("Je1MaB+JdWE", _ZN3JSC17JSPromiseDeferred7resolveEPNS_9ExecStateENS_7JSValueE) +STUB("Je8FZg0jHdg", _ZN23sceMetadataReaderWriter8MetadataC2ERKS0_PFPvmEPFvS3_E) +STUB("Je8Tmvk2beA", _ZN7WebCore16BlobRegistryImpl15registerBlobURLERKNS_3URLES3_) +STUB("JeAOV3YYkBU", sceVisionManagerRequestOpen) +STUB( + "JeAZ+9F628o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEC1Ev) +STUB("JeDWXql5S1U", _ZN12video_parser17cVideoOperatorMp4D1Ev) +STUB("JeH+i51Qf2I", _ZN3JSC6JSCell11getCallDataEPS0_) +STUB( + "JeIyfBupDi8", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEEiRNS2_10LibContextEPT_m) +STUB("JeNX5F-NzQU", sceFiberFinalize) +STUB("JePhOKqxF-A", _ZN7WebCore4Path9addLineToERKNS_10FloatPointE) +STUB("JeTseBuY-YI", _ZN7WebCore20ResourceResponseBase24setExpectedContentLengthEx) +STUB( + "JeYoQKgZ7Wk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB( + "JeYwmPcTJ2c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE6resizeEj) +STUB( + "JeaDXS2IUvc", + _ZN3sce2Np9CppWebApi14SessionManager2V129GetPlayerSessionsResponseBodyC2EPNS1_6Common10LibContextE) +STUB( + "JedzMy42BE4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEC2Ev) +STUB( + "Jeejf8QnN90", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE8pushBackERKS8_) +STUB( + "JeiRJqACKm4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEppEi) +STUB("JejsXQ++gvU", sceVisionManagerSetCallbackForUpdateStoreFrame) +STUB("JemQGDZpbjI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE5emptyEv) +STUB("JephqDWR6Pc", WKContextSetHTTPPipeliningEnabled) +STUB("Jf2IlBrVPJw", _ZN19JITSharedTextMemory15shared_memalignEmm) +STUB("Jf7snoK7rqU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEE3getEv) +STUB( + "Jf7uBfdDOsU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE5eraseENS2_8IteratorIS6_EERS9_) +STUB("Jf8k9CQWZLQ", _ZN7WebCore28encodeWithURLEscapeSequencesERKN3WTF6StringE) +STUB("JfEPXVxhFqA", sceAudioOutInit) +STUB("JfGd39hq3Ik", WKPageRequestStorageAccessConfirmResultListenerCall) +STUB("JfKwkMqWOyg", WKPreferencesGetTelephoneNumberParsingEnabled) +STUB("JfPqay7vYvQ", mono_aot_System_Xml_Serializationmethod_addresses) +STUB( + "JfWYsPKS3FU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE21intrusive_ptr_sub_refEPS9_) +STUB("JfbWTBVoIYw", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE6resizeEj) +STUB( + "JfggELKROuI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEEcvbEv) +STUB("Jfgwu4mfP1M", + _ZN7WebCore6Editor19deleteWithDirectionENS_18SelectionDirectionENS_15TextGranularityEbb) +STUB("JfjfrvJ-C8s", unorm_compare) +STUB("JfjknJ9uWaI", mono_aot_Sce_Vsh_GameListRetrieverWrapperjit_code_start) +STUB( + "Jflb8B8JorI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEE11release_refEv) +STUB("JfpZWg77-Zw", WKUserContentURLPatternMatchesURL) +STUB("JfwJJROUZEw", _ZN3sce2Np9CppWebApi6Common6VectorIfE8copyFromERKS4_) +STUB( + "JfwbyKnTNGg", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEEiRNS2_10LibContextEPT_m) +STUB("JfwdK0bQgo4", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container12getPublisherEv) +STUB("JfyZg5U7wuw", getopt.place) +STUB( + "JfzDEFckSmE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEE7get_refEv) +STUB("Jg-AgkdJHkk", sceAmprAprCommandBufferReadFileScatter) +STUB("Jg2SEqpgHZ4", sceVnaSetAgentIntentSessionTelemetry) +STUB( + "Jg2kom6RqZ0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEC2Ev) +STUB("Jg3RmsY7dvw", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE5beginEv) +STUB( + "Jg4EksekBmc", + _ZN7WebCore13KeyboardEvent17initKeyboardEventERKN3WTF12AtomicStringEbbONS1_6RefPtrINS_11WindowProxyENS1_13DumbPtrTraitsIS6_EEEERKNS1_6StringEjbbbbb) +STUB( + "Jg4RYi8DAt0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "Jg5aRei4ucQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEEC2ERKSA_) +STUB( + "Jg5jKG0oBaM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEE3getEv) +STUB("JgBgvkAFMwc", sceRnpsAppMgrGetAppInfo) +STUB("JgDV75od+Pg", uregex_end64_67) +STUB( + "JgEsEANSn+M", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEixEm) +STUB( + "JgGdN6IMDmU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE8copyFromERKS9_) +STUB( + "JgIfGKwA54c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEC1EPKS8_) +STUB("JgL-CqPZ0HI", _ZN3sce2Np9CppWebApi7Matches2V119RequestMatchResultsD2Ev) +STUB( + "JgLeJhw9Co8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEE3getEv) +STUB("JgM26LRE-H0", _ZL25_delete_with_size_nothrow) +STUB("JgTz1+RkB9M", sceCesUtf16leToSbc) +STUB("JgUZTRNzZ8k", mono_aot_Sce_Vsh_MarlinDownloaderWrappermethod_addresses) +STUB("JgY3mEheiKw", __asan_version_mismatch_check_v6) +STUB("JgeniluEFDE", _ZN7bmalloc29StaticPerProcessStorageTraitsINS_12IsoTLSLayoutEE7Storage7s_mutexE) +STUB( + "JgfoIr1-h38", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEE11get_deleterEv) +STUB("Jgg+mJLsHHs", _ZNK9Inspector22InspectorDebuggerAgent8isPausedEv) +STUB("JgjsFbr4bmE", Java_com_sony_bdjstack_javax_media_controls_SoundManager_setGainDB) +STUB("JgnbTezEXsc", __sceAudioInVmicAttach) +STUB( + "Jgpb7k9fj1Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("JgtSc0g3G6E", FT_SqrtFixed) +STUB("JgxM-rT4P+A", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE3endEv) +STUB("JgzEoCQYWQY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE8copyFromERKS7_) +STUB("Jh+T2cXEtyA", _ZN7WebCore19ResourceRequestBase18setHTTPContentTypeERKN3WTF6StringE) +STUB("Jh-hXoqrIZI", + _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities5Error6toJsonERNS_4Json5ValueEb) +STUB("Jh5qUcwiSEk", _ZnamRKSt9nothrow_t) +STUB("Jh6WbHhnI68", sceAudioInClose) +STUB("JhBOQYY6iu0", scePlayReadyCdmiClose) +STUB("JhCa8+zk0oI", WKPreferencesSetDownloadAttributeEnabled) +STUB("JhDAGu9xmlw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE5clearEv) +STUB("JhDPrErJnCw", sceFsUfsRecryptSyncMetadata) +STUB("JhDzrBVZ5Ro", + _ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_errorC2EPNS1_6Common10LibContextE) +STUB( + "JhJQCt6goB4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "JhKjP9Krde0", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser7setsortENS5_4SortE) +STUB( + "JhO9ts+d5OA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "JhU9DjE1VtA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEED2Ev) +STUB("JhVR7D4Ax6Y", _WStoul) +STUB("Jha8yMoMzrg", sceLoginMgrServerSetLoginFlag) +STUB( + "JhaUJGHQLyo", + _ZN7WebCore22StorageEventDispatcher34dispatchLocalStorageEventsToFramesERNS_9PageGroupERKN3WTF6VectorINS3_6RefPtrINS_5FrameENS3_13DumbPtrTraitsIS6_EEEELm0ENS3_15CrashOnOverflowELm16EEERKNS3_6StringESG_SG_SG_RKNS_18SecurityOriginDataE) +STUB("JhanUiHOg-M", CERT_extractValidityTime) +STUB("Jhbrpz0YhHU", _ZN3sce2np10Cancelable6CancelEij) +STUB( + "Jhfx-U0iDHQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEEC1ERSA_) +STUB("JhgevnldCVU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEEppEv) +STUB("Jhj07sXaEnU", _ZN7Nicosia9AnimationC1ERKS0_) +STUB("JhoOxhsHbqU", _ZN15AbstractStorage18DailymotionContent6RemoveEv) +STUB("JhsJWxsvkZg", _ZN9Inspector32DebuggerBackendDispatcherHandlerC2ERKS0_) +STUB("JhsnkofpeOw", uprv_decContextDefault_67) +STUB( + "JhspgxS1Cgs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEmmEi) +STUB("JhuM8xmtn6E", _ZNK7WebCore9FrameTree4findERKN3WTF10AtomStringERNS_5FrameE) +STUB("JhwByySf9FY", sceSystemGestureGetPrimitiveTouchEventsCount) +STUB("Ji4I5hUwDNY", _ZN3sce7Toolkit2NP2V26Trophy15TrophyPackGroupC1ERKS4_) +STUB("JiGH4RQ+WxU", _ZN15AbstractStorage13YoutubeFolder4OpenENS_8ItemTypeE) +STUB("JiGfrQ72ls8", u_strToUTF8_67) +STUB("JiIouCuvr2U", + _ZN3sce2Np9CppWebApi14ConnectAccount2V215AccountLinksApi28ParameterToDeleteAccountLinkD1Ev) +STUB( + "JiJLeU3Fo-8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEEC2ERSA_) +STUB( + "JiL3XnEoyKU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE8copyFromERKS7_) +STUB( + "JiLLG+1IJ9M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEC2EPKS8_) +STUB("JiMW3gity3o", mono_lock_free_free) +STUB("JiR2uO4r5Lg", _ZN3sce2Np9CppWebApi7Matches2V113RequestMemberC2EPNS1_6Common10LibContextE) +STUB( + "JiTENmT1WTk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE3endEv) +STUB( + "JiY4sfHkV34", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi18leavePlayerSessionEiRKNS4_29ParameterToLeavePlayerSessionERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB( + "JiYHJiyh-T4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE5beginEv) +STUB("JiaW5n2B77U", WKBundleReportException) +STUB( + "Jic+2+QsH8U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEEC1ERSA_) +STUB( + "JidkleaJhYY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("JifM4z9m0+c", _ZNK3sce2Np9CppWebApi13InGameCatalog2V55Error14getReferenceIdEv) +STUB("JifncjTlXV8", sceUserServiceSetNpEnv) +STUB("Jii5J05XD0U", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEEC1Ev) +STUB("JinVXigW4Zo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEEC1Ev) +STUB( + "JioOs3m5GWg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEC1ERKS7_) +STUB("JipDCX9bCgk", _ZN7WebCore9ImageData6createERKNS_7IntSizeE) +STUB( + "Jiq54D12Cvc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("JiqSBKe7bQ8", _ZN4Manx8X509cinf8notAfterEv) +STUB("Jj-5u6OmdU8", _ZZSt9MakefacetISt7collateIcESt8_LocinfoERT_T0_E3buf) +STUB("Jj1TaoBlfik", ps8) +STUB("Jj4mkpFO2gE", sceNpWordFilterSanitizeComment) +STUB("Jj8nBIecUuU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE4sizeEv) +STUB( + "JjBt2MjFhvA", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEEiRNS2_10LibContextEPT_m) +STUB("JjEU9VLDyzM", sceVnaGetAgentAvailabilityInfo) +STUB("JjIspXDbL6o", sceSystemServiceActivateMpeg2Term) +STUB( + "JjLw+2-XC7o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEEC1ERSA_) +STUB("JjOFRVPdQWc", sceNpScoreGetGameDataAsync) +STUB("JjOoUWau3hA", WKPageSetPaginationMode) +STUB("JjPXy-HX5dY", vfscanf_s) +STUB("JjPx6bo9fbs", _ZNK7WebCore20ResourceResponseBase8isHTTP09Ev) +STUB("JjTc4SCuILE", _ZTSNSt6locale7_LocimpE) +STUB("JjTcEULVYUw", _ZN3sce7Toolkit2NP2V210Tournament7Request19GetRegisteredRosterD1Ev) +STUB("JjdYWHTvh2k", _ZTVN9Inspector26AnimationBackendDispatcherE) +STUB( + "JjglW9LJgE0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEixEm) +STUB( + "Jjn10ywtmAg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEC1EPS8_) +STUB( + "JjqMZ29xxh0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEptEv) +STUB( + "JjrjOgSEbu4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE3endEv) +STUB("Jjw+ZQth0as", _ZN7WebCore8SVGNames22overline_thicknessAttrE) +STUB("Jk+LgZzCsi8", _ZTIPa) +STUB("Jk1OHHPzXnA", _ZN3NTF3URLD2Ev) +STUB( + "Jk3exx0C0vY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEEcvbEv) +STUB("Jk9paxbMQsk", cairo_scaled_font_text_extents) +STUB( + "JkAGxJ6vnvI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEmmEi) +STUB("JkEYUFSjoXw", _ZNK7WebCore20ResourceResponseBase15httpHeaderFieldENS_14HTTPHeaderNameE) +STUB("JkJ8T-8ud6k", _FDint.mask) +STUB("JkMyy11Hd5s", _ZN7WebCore32ScrollingStateFrameScrollingNode18setTopContentInsetEf) +STUB( + "JkPzTewuyuA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEEC2Ev) +STUB("JkQGVHdk9iQ", _ZN7WebCore17HTMLSelectElement9namedItemERKN3WTF10AtomStringE) +STUB( + "JkQRTFYBGMM", + _ZN9Inspector25NetworkFrontendDispatcher28requestServedFromMemoryCacheERKN3WTF6StringES4_S4_S4_dNS1_6RefPtrINS_8Protocol7Network9InitiatorENS1_13DumbPtrTraitsIS8_EEEENS5_INS7_14CachedResourceENS9_ISC_EEEE) +STUB( + "JkXaHhYLbo8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi12downloadDataEiRKNS4_23ParameterToDownloadDataERNS1_6Common11TransactionINS8_12IntrusivePtrINS8_6BinaryEEENSA_INS4_27DownloadDataResponseHeadersEEEEE) +STUB("JkZwD6Lu-cg", _ZN3WTF7RunLoop13dispatchAfterENS_7SecondsEONS_8FunctionIFvvEEE) +STUB("JkdNCocpu1M", sceAjmBatchJobGetResampleInfo) +STUB("JkkMVUZjeMk", uprv_fmin) +STUB("JkuiAhxDcv0", JVM_SetPrimitiveArrayElement) +STUB( + "JkwlTAYofO4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEEC2ERSA_) +STUB( + "Jkxq7cAiCOs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE7reserveEi) +STUB("JkygqqJPGdw", sceLoginMgrServerDialogNotifyCloseFinished) +STUB("JkyvLa6k+OQ", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11TusVariableEEC2ERKS4_) +STUB("Jkz3xxMeyIM", sceCameraSetCalibDataForEve) +STUB( + "JkzI9IQYnR0", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("Jl91AhxKc0w", sceVideoOutSysUpdatePrivilege) +STUB("JlAgqbJSMlc", _ZN3JSC7Symbols23fulfillFetchPrivateNameE) +STUB("JlBLet3nzqw", sceVencCoreStopSequence) +STUB( + "JlDizHsyKwU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEppEi) +STUB("JlFGR4v50Kw", sceHttp2CookieExport) +STUB( + "JlGv+KK-DFw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("JlJBrfJgt8E", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product14getDescriptionEv) +STUB("JlM1oFT1goY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEC1ERKS7_) +STUB("JlMrGMLBCAA", _ZNK3JSC18PropertyDescriptor20isAccessorDescriptorEv) +STUB("JlOsA5PEUbA", mono_aot_Sce_Vsh_Np_IdMapperunwind_info) +STUB( + "JlPVAyqqdLE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "JlRpNekxHts", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "JlSA817XwrU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEE11release_refEv) +STUB("JlVFd422fsQ", SSL_pending) +STUB( + "JlYcRGnIOps", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEE5resetEPS9_) +STUB( + "JlZBkncTDpI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEeqERKS9_) +STUB("JlZkCWxppd4", Java_java_lang_SecurityManager_classDepth) +STUB("JlbOHUm1ykY", _ZN7WebCore5Event9initEventERKN3WTF12AtomicStringEbb) +STUB("JlbWOi1Webo", sceMusicPlayerServiceSetUsbStorageDeviceInfo) +STUB("JlbgPGsx3oU", WKBundlePageGetPageGroup) +STUB( + "Jld8stkXP1s", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE3endEv) +STUB( + "Jlkdu--4aTg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE5beginEv) +STUB("Jlof7tx9zAA", rgctx_fetch_trampoline_mrgctx_18) +STUB("JlpJVoRWv7U", sceSigninDialogOpen) +STUB("Jlv-lYxEnvM", sceShareUtilityInitialize) +STUB("Jlvj+WV78Wc", _ZN12video_parser5vpcom11_setOpenArgEPcS1_PN3paf9LocalFile7OpenArgEb) +STUB("JlybWYbzKcY", sceKernelSetPackageInfo) +STUB( + "JlyhoCTrsaQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE6insertENS2_8IteratorIS9_EERKS9_RSC_) +STUB("Jm2Ds7w9DYk", _ZSt10_Wios_init) +STUB("Jm6OTatJ9GE", _ZN3sce7Toolkit2NP2V27Session7Request7GetDataC2Ev) +STUB("JmCBbsCE55Y", JNU_NewObjectByName) +STUB("JmCJwcGvR-k", _ZN3WTF11CStringHash5equalERKNS_7CStringES3_) +STUB( + "JmHqinAglbQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE5emptyEv) +STUB("JmOEMbPsk8A", _ZN7bmalloc11IsoTLSEntryD1Ev) +STUB("JmOLVFL6pEY", png_set_filler) +STUB( + "JmRER2BvMqU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEEC2Ev) +STUB( + "JmS+qID7xUg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEC1EPS6_PNS2_10LibContextE) +STUB("JmVNtNXaZh8", KillMusicCore) +STUB( + "JmWBcACKInY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "JmbsQy6WoqY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEaSERKS7_) +STUB("JmgmezqTXic", _ZNK9Inspector15RemoteInspector6clientEv) +STUB("JmgwKm96Lq4", sceNpUniversalDataSystemEventPropertyArraySetFloat32) +STUB("Jmi+9w9u0E4", pthread_create_name_np) +STUB("Jmky7t3yAoo", sceDataTransferTargetRequestComplete) +STUB("Jml9GzgqqLA", delegate_virtual_invoke_imt_31) +STUB("JmoRo2O-vcs", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking8TempRankEE5resetEv) +STUB( + "JmymnyFNl1c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEC1Ev) +STUB( + "Jmz9LOnPfOE", + _ZN3sce7Toolkit2NP2V28Commerce25displayDownloadListDialogERKNS3_7Request25DisplayDownloadListDialogEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("Jn066JNHRQc", _ZN3sce3Xml3Sax6Parser10initializeEPKNS0_11InitializerE) +STUB("Jn3pDwHhNS0", _ZN3WTF18ParallelHelperPool13doSomeHelpingEv) +STUB( + "Jn4PaFyN-uE", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData22setxPsnAtomicOperationENS5_19XPsnAtomicOperationE) +STUB("Jn8MJzor82c", _ZN3sce7Toolkit2NP2V28Presence8PresenceaSERKS4_) +STUB( + "Jn984RKVUKY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEE7add_refEv) +STUB( + "JnA-IAvOg5E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEC2EPS8_) +STUB( + "JnB-+2BFEFE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEED1Ev) +STUB("JnDD5Njm09A", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEixEm) +STUB("JnEcJpY-AXM", _ZN4IPMI4impl10ServerImpl19doDisconnectRequestEiPvi) +STUB("JnLfuhrixi4", _ZN3WTF12AtomicString6numberEj) +STUB("JnNl8Xr-z4Y", sigismember) +STUB( + "JnP-NCINmyY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEEC1Ev) +STUB( + "JncmE+dRZAA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("Jndc5lgmPqw", _ZN3sce7Toolkit2NP16EventListRequestC2Ev) +STUB( + "JngkNz1TJ58", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionProperties42setpatchPlayerSessionsSessionIdRequestBodyENS1_6Common12IntrusivePtrINS3_39PatchPlayerSessionsSessionIdRequestBodyEEE) +STUB("JnhpgrdCugM", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi24ParameterToReportResultsD1Ev) +STUB("Jnm7yYsPwGA", _ZN7WebCore15RenderBlockFlow30findClosestTextAtAbsolutePointERKNS_10FloatPointE) +STUB( + "JnqMX0egxus", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("JnqO00pLkbQ", generic_trampoline_generic_virtual_remoting_p) +STUB( + "Jnqb71Uoans", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEE6assignEPS5_PFvS7_EPNS2_10LibContextE) +STUB("Jnqfishr8KY", Java_java_net_NetworkInterface_getByIndex) +STUB("JnzWSfYU-xg", uloc_getAvailable) +STUB("Jo-YNJY8rho", _ZN3JSC8JSCallee6s_infoE) +STUB( + "Jo1IESgmPYw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEE11get_deleterEv) +STUB("Jo3nZh3qW-E", _ZN7WebCore11DisplayList11ClearShadowC1Ev) +STUB("Jo9ON-AX9eU", _Fltrounds) +STUB( + "JoA901ehV5s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE5clearEv) +STUB("JoBqSQt1yyA", sceSystemServiceLoadExec) +STUB( + "JoCSP4SVJ9k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEEC2Ev) +STUB("JoKQ635lg0A", rgctx_fetch_trampoline_rgctx_68) +STUB("JoNOmklCUf8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEdeEv) +STUB( + "JoO-Cw5Ty8c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEEC2Ev) +STUB("JoPdCUXOzMU", sceImeDicGetWords) +STUB("JoRlA+wVslA", _ZN3NTF22URLRequestJobSchedulerC2Ev) +STUB( + "JoT+4yJJdcU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEptEv) +STUB( + "JoTy3DqG2HQ", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetrics8fromJsonERKNS_4Json5ValueE) +STUB("JoWQsIsLfwk", _ZN7WebCore11WindowProxy22releaseJSWindowProxiesEv) +STUB("JoeZJ15k5vU", _Tls_setup__Ctype) +STUB( + "Joju2UtVavQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEptEv) +STUB( + "Jos1DzJ1oF0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEptEv) +STUB("Jp6dZm7545A", _Skip) +STUB("Jp76d0USJeM", sceKernelIsMainOnStanbyMode) +STUB("Jp97ZukVBPY", mono_btls_ssl_ctx_set_cert_verify_callback) +STUB( + "JpA4yFIPBcw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEEC1ERSA_) +STUB("JpAP8BoYAmQ", sceCesUtf32StrToIso2022Str) +STUB("JpAYkddCFjk", sceVideoOutColorSpaceConversionSettingsSetDefaultSdrToHdrConversion_) +STUB( + "JpBTdJNp6KM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEixEm) +STUB("JpFWqr5DIGE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEED2Ev) +STUB( + "JpKTjMp0ueU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEEaSERS9_) +STUB("JpLvQJmZ33Y", _ZN7WebCore16HTMLMediaElement14beginScrubbingEv) +STUB( + "JpNKQKbu1Q4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "JpNonrEoHEI", + _ZN3JSC4Yarr17RegularExpressionC2ERKN3WTF6StringENS0_19TextCaseSensitivityENS0_13MultilineModeENS0_11UnicodeModeE) +STUB("JpQQKNklSMw", _ZN7WebCore9Scrollbar8setStepsEiii) +STUB("JpZIa6EMAI8", _ZN3sce7Toolkit2NP15AppSTLAllocatorI13SceNpOnlineIdE7destroyEPS3_) +STUB( + "JpfRN5CXJ3U", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEptEv) +STUB( + "JphJfi9FtBY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE3endEv) +STUB("JphQB95YwSo", sceAvControlIsAudioOutModeSupportedByMonitorInfo) +STUB("Jpj0ZnlR2Lw", mono_aot_Mono_Data_Tdsplt_end) +STUB("JpjardW2c8k", mono_image_ensure_section) +STUB("JpnKObUJsxQ", CERT_getCertificateIssuerSerialNumber2) +STUB("JpnivExWLXQ", _ZN3sce7Toolkit2NP2V211SharedMedia5Video16MAX_LEN_VIDEO_IDE) +STUB("Jpp5GoU1BeY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEED2Ev) +STUB( + "JpqPd0ksyxw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEptEv) +STUB("JprBdHuxaV4", _ZNSt9basic_iosIcSt11char_traitsIcEE8setstateENSt5_IosbIiE8_IostateEb) +STUB( + "Jq0nhTHgKR0", + _ZN3sce2Np9CppWebApi7Matches2V119ResponseTeamResults20setTeamMemberResultsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_24ResponseTeamMemberResultEEEEE) +STUB("Jq1tGNzdcCQ", Java_com_sony_bdjstack_core_CoreApp_threadBody) +STUB("Jq2uO7lzgjU", mono_aot_Sce_Vsh_RequestShareScreenjit_got) +STUB( + "Jq73rGkQ7qQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE17getResponseHeaderERSB_) +STUB( + "Jq7OFaxBRYQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEptEv) +STUB("JqHK9nVyTnU", ures_getUInt_67) +STUB("JqJJUFiTth4", Java_com_sony_gemstack_org_dvb_application_AppProxyImpl_n_1hasBeenStarted) +STUB("JqN5MQOaJVs", _ZN3WTF15BinarySemaphore9waitUntilERKNS_24TimeWithDynamicClockTypeE) +STUB( + "JqUW-Qm450o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEE7get_refEv) +STUB("JqYcaf0shsQ", _ZN3WTF8JSONImpl5Value6createEi) +STUB("JqabV9EtTkc", uenum_next_67) +STUB( + "JqapxDJFxhE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEED1Ev) +STUB( + "Jqe3WENf3mc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEEC1ERKSA_) +STUB("JqeGWVkKzPY", _ZNK7WebCore21ISOTrackEncryptionBox17defaultConstantIVEv) +STUB( + "JqfhE8Uee2Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEC2ERKS7_) +STUB("JqqHwIrj160", _ZN7WebCore13MIMETypeCache21canDecodeExtendedTypeERKNS_11ContentTypeE) +STUB("Jqr7HtQVG60", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEaSERKS7_) +STUB("Jqu2XFr5UvA", sceUserServiceSetUserName) +STUB("JqyHYNlyKa8", _ZNK3sce7Toolkit2NP15CommunicationId7getPassEv) +STUB( + "Jr1fDYu-iGk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("Jr2Rp4aoXIU", _ZN3sce7Toolkit2NP2V23TUS19FriendsDataStatusesC1ERKS4_) +STUB( + "Jr3c0p8h9SU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("Jr8SilBIzTk", _ZN7WebCore14SQLiteDatabase14clearAllTablesEv) +STUB( + "JrDx2rBhoXA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats18setNatConnectivityERKNS1_6Common12IntrusivePtrINS3_15NatConnectivityEEE) +STUB( + "JrE8yAqmOqs", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions31setxPSNSESSIONMANAGERSESSIONIDSEPKc) +STUB("JrFGcFUL0lg", sceUserServiceGetPbtcPlayTime) +STUB("JrGlxeyhY4A", sceFsSmrTrimAll) +STUB("JrLLYW3cpqM", _ZNSt15basic_streambufIwSt11char_traitsIwEE9pbackfailEi) +STUB("JrUnjJ-PCTg", _ZTIv) +STUB( + "JrVaQWvoJpw", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_4Heap17GarbageCollection4TypeEEEN3WTF8OptionalIT_EERKNS6_6StringE) +STUB("JrWihxj7ZLs", u_versionFromUString_67) +STUB("JrXA7baBMPQ", sceNpAsmAbort) +STUB( + "JrXJAav8fHM", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_20NpSessionInformationENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB("JrXXEoaH83c", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEdeEv) +STUB("Jraxifmoet4", sceNpMatching2GetRoomDataInternal) +STUB( + "JriWrLYpnEw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE4sizeEv) +STUB("JrlR1gNboYQ", _ZN7WebCore12JSTimeRanges15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("JrrEeOSs7kk", + _ZN3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayer11setPlatformEPKc) +STUB("JrtiDtKeS38", sceAgcAcbResetQueue) +STUB( + "JruBeQgsAaU", + _ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_bRSt8ios_basewRKSbIwS2_SaIwEE) +STUB( + "JrvSBhJnGTY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE5beginEv) +STUB("JrwFIMzKNr0", ldexp) +STUB("JrzMGQjfH20", _ZSt9use_facetISt5ctypeIwEERKT_RKSt6locale) +STUB( + "Js2v8QTLAcE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEC2Ev) +STUB( + "Js37kvLgUMg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("Js9fIl0cEC4", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_12PresenceInfoEED1Ev) +STUB("JsCJTp+PHMc", WKPreferencesGetModernMediaControlsEnabled) +STUB( + "JsLRFba9k1Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEppEi) +STUB( + "JsMcvQqZXNI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEEC2Ev) +STUB( + "JsOn464ko5Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEED1Ev) +STUB( + "JsPl-SFuqUI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEptEv) +STUB("JsQ4rg2-hOU", _ZN3WTF6String6appendEPKwj) +STUB("JsRnDKRzvRw", sceNpTrophySystemSetDbgParamInt) +STUB("JsZjB3TnZ8A", _ZNKSt5ctypeIwE10do_toupperEw) +STUB( + "Jsby8L8c5TA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("JsiXZ27Fmcg", _ZN9Inspector26TimelineFrontendDispatchernaEm) +STUB("Jsj7i9+XGsU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEC2ERS7_) +STUB("JskzZ0yWeN8", _ZN4Manx13WorkQueueImpl5TimerC1EPNS_9WorkQueue8FunctionE) +STUB( + "JsleYqnkl6w", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB("JswcCuuTNyw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEC2Ev) +STUB( + "Jt+UXHZGCWQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEC2EPKS8_) +STUB("Jt28Sh8djf8", _ZN3JSC2VM22booleanObjectSpaceSlowEv) +STUB("Jt7LPd8LVCU", scePerfTraceAmmDeleteBufferNotifyEvent) +STUB("Jt9OcmtbaSs", mono_aot_Sce_Vsh_ErrorDialogUtilWrapperunbox_trampoline_addresses) +STUB("Jt9bJVyqe7A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEC1Ev) +STUB("JtBV3RSzmlo", sceAppInstUtilGetSubAppTitleId) +STUB("JtD7ZG45rdw", sceCamera2GetAttribute) +STUB("JtOOo+iyBC4", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTicketsC1ERS5_) +STUB( + "JtW7Mp0oJN4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEEC1ERKSA_) +STUB( + "JtYDTT19hKE", + _ZN7WebCore23CoordinatedImageBackingC1ERNS0_6ClientEON3WTF3RefINS_5ImageENS3_13DumbPtrTraitsIS5_EEEE) +STUB( + "JtZWhWabdiM", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_28ActivityFeedSharedVideoStoryENS1_15AppSTLAllocatorIS5_EEEEC1Ev) +STUB( + "Jtdzenp9eHA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("JtiEJNQyI2o", _malloc_stats_fast) +STUB("JtmhCCzc+pM", _ZN3sce2Np9CppWebApi6Common6VectorIiE6insertENS2_8IteratorIiEERKiRS6_) +STUB("JtnoO4SwlxE", mono_btls_x509_chain_free) +STUB("JtobTVTP1BQ", _ZN3JSC7Symbols17hasInstanceSymbolE) +STUB( + "JtrdYJzR2Fo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("JtzDopmdBDo", + _ZN7bmalloc29StaticPerProcessStorageTraitsINS_12IsoTLSLayoutEE7Storage8s_objectE) +STUB("Ju8B+TAM+Bs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEE3getEv) +STUB("Ju9BYOp1zIU", WKDatabaseManagerGetOriginUsageKey) +STUB("JuA51bPRpmc", WKGeolocationPositionGetTypeID) +STUB( + "JuAx6hHGGYM", + _ZN9Inspector14InjectedScript15functionDetailsERN3WTF6StringEN3JSC7JSValueERNS1_6RefPtrINS_8Protocol8Debugger15FunctionDetailsENS1_13DumbPtrTraitsIS9_EEEE) +STUB( + "JuFTw8uG-tc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEptEv) +STUB( + "JuMFNbuThSs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEC1Ev) +STUB("JuMLLmmvRgk", sceScreenShotCapture) +STUB("JuNaZ6QAPtY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEEmmEv) +STUB("JuRURKO3-F8", _ZNK7WebCore9RenderBox22verticalScrollbarWidthEv) +STUB( + "JuSWr+tEMv4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEE11get_deleterEv) +STUB("Jub+F7uGS58", WKPageIsContentEditable) +STUB( + "JugRGAWCqR0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEEdeEv) +STUB( + "JuhEFLTT9Lw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE5clearEv) +STUB( + "JuhregJdYZQ", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21deleteMultiDataBySlotEiRKNS4_32ParameterToDeleteMultiDataBySlotERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB( + "Juo0M2Re7iY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEC2EPKS8_) +STUB( + "Jupg4B-jWm0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEEC1Ev) +STUB( + "JurfTkvYIUE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEC1EPNS2_10LibContextE) +STUB("JuzrPZClLew", FTA_Support_Format_Cid) +STUB( + "Jv-0OrW1Cmk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEC2EPKS8_) +STUB("Jv1BF8DLSYY", WKPreferencesGetDOMPasteAllowed) +STUB( + "Jv3BJPpMHvA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE8copyFromERKS9_) +STUB( + "Jv3x0pAEdgY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEaSERKS9_) +STUB("Jv4JETvYzWg", _ZN3sce2Np9CppWebApi6Common6VectorImE3endEv) +STUB("Jv9NQNlhK+k", sceDebugGetFileListForCoredump) +STUB( + "JvB5qu5+spY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEEcvbEv) +STUB( + "JvBKDQMyQ1U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE3endEv) +STUB("JvHRljE2ejQ", mono_aot_System_Resources_ResourceManagerplt) +STUB("JvM0ZRiMNxk", _ZN3JSC14throwTypeErrorEPNS_9ExecStateERNS_10ThrowScopeE) +STUB("JvOPWYEC8Ac", _ZNK7WebCore21WheelEventDeltaFilter17isFilteringDeltasEv) +STUB("JvQlBVLkDuU", + _ZN3JSC9StructureC1ERNS_2VMEPNS_14JSGlobalObjectENS_7JSValueERKNS_8TypeInfoEPKNS_9ClassInfoEhj) +STUB("JvSjnwiki2A", sceNpTrophySystemCheckCallback) +STUB("JvTTJlj3YmE", WKWebsiteDataStoreConfigurationGetTestingSessionEnabled) +STUB("JvThkOI0jjE", sceWorkspaceGetNumberOfPendingUpdates) +STUB( + "JvUl9m11CSs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEE11release_refEv) +STUB("JvbtVrbuh8k", _ZNK3WTF8JSONImpl5Value9asIntegerERy) +STUB( + "JvdsEa+3jE8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("JvhIRLSB1PU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEED2Ev) +STUB( + "Jvt60syxwCo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEeqERKS9_) +STUB("JvtcOL4IT5Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEppEv) +STUB("JvvQKXNn0HQ", sqlite3_bind_blob) +STUB("JvyLbYhVigM", + _ZN15AbstractStorage14StorageManager16RegisterListenerEPNS_20StorageEventListenerE) +STUB("Jw4wWEULUaI", _ZN3sce7Toolkit2NP2V23TUS12TusVariablesC1ERKS4_) +STUB( + "Jw6lq4w0Ibw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("Jw7xkoYct4o", uprv_floor_67) +STUB("Jw82p29mYBk", _ZN9Inspector21InspectorConsoleAgent13discardValuesEv) +STUB( + "JwBjB9Qs5iM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE21intrusive_ptr_add_refEPS9_) +STUB("JwGa8TaETwI", u_strncat) +STUB("JwHklMwLFgE", _ZN3sce7Toolkit2NP2V210Tournament10TournamentaSERKS4_) +STUB("JwPU+6+T20M", _ZNSt15_Num_float_base9is_iec559E) +STUB("JwQxC4dA5DY", cairo_has_current_point) +STUB("JwW3qkLaUTE", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V110AvatarSizeEEC2EPS6_) +STUB("JwYu-YMRkg0", _ZN12video_parser5vpcom8datetime8DateTimeD1Ev) +STUB("JwZ32l8Yxx0", InitializeMediaModule) +STUB( + "JwZhOPsyxnE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEptEv) +STUB("JwZi+9xgYGY", _ZN3sce7Toolkit2NP2V210Tournament18OneVsOneTournamentD2Ev) +STUB("JwZz92RUG7M", + _ZN3sce2Np9CppWebApi14SessionManager2V111GameSessionC2EPNS1_6Common10LibContextE) +STUB("JwbdpbQiQbQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEEaSERS7_) +STUB("JwbpaAM4dfs", scePssMousePushState) +STUB("JwcpbMVdWw0", _ZN3sce7Toolkit2NP2V212NetworkUtils12Notification14NetStateChangeC1ERKS5_) +STUB( + "JwfmKQFdhfM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEppEv) +STUB( + "JwgQOBuXj8U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEED2Ev) +STUB( + "JwjyvQZK74c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEppEi) +STUB("JwpT2LYSxrg", _ZNK3sce2np4User7IsGuestEv) +STUB("JwrKmyxIJjk", _ZNK3WTF24TimeWithDynamicClockType13monotonicTimeEv) +STUB( + "Jwui-YX1Y5A", + _ZN3sce7Toolkit2NP7Ranking9Interface17displayFriendRankEPKNS1_17FriendRankRequestEPNS1_9Utilities6FutureINS1_22FriendsRankInformationEEEb) +STUB("JwxExGhg0m8", _ZN12Mp4Retriever8seekFileElb) +STUB( + "JwxUhvnthCo", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setBoolean8ERKb) +STUB("Jwyzasrp8kg", sceFsDevpfsRegisterEvent) +STUB("Jx+jaw-BVuE", WKErrorGetErrorCode) +STUB( + "Jx2Z2mW5gd8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("JxBUdz+ybQA", _ZN7WebCore11MathMLNames10mscarryTagE) +STUB("JxDRSAHrVNs", _ZN3sce7Toolkit2NP2V211SocialMedia7Request7PhotoFbD1Ev) +STUB("JxERMLADGmo", _ZN3JSC8DebuggerC2ERKS0_) +STUB("JxJ4tfgKlXA", sceKernelDeleteReadEvent) +STUB( + "JxLauiVBua4", + _ZN3sce2Np9CppWebApi11UserProfile2V125GetBasicPresencesResponse17setBasicPresencesERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_13BasicPresenceEEEEE) +STUB("JxM80qv+BxU", sceDiscIdGet2) +STUB( + "JxUJZ1ErQCo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE7reserveEi) +STUB( + "Jxct84SbIMg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE8pushBackERKS8_) +STUB("Jxd89tRoBno", mono_aot_Sce_Vsh_UsbStorageScenejit_got) +STUB("JxdBJc8FXYI", unorm_getFCD16_67) +STUB( + "Jxg2detL4sE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "JxgPJdDkLwk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEppEv) +STUB( + "JxjP+4zxtAw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEdeEv) +STUB("JxkGFAxlPa8", _ZN3WTF15AtomStringTableD2Ev) +STUB( + "JxuaYuQJWeE", + _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody25localizedSessionNameIsSetEv) +STUB("JxzDXFEr-jg", _ZN9Inspector21InspectorConsoleAgentdlEPv) +STUB("Jy1EO5GdlcM", sceNetCtlGetInfoV6) +STUB("Jy3OrZPA8XQ", _ZN3NTF15ThreadConditionD2Ev) +STUB( + "Jy4s81YaSOk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEixEm) +STUB("JyAoulEqA1c", _ZNSt12bad_weak_ptrD0Ev) +STUB( + "JyAxROrMgB8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEEC2EPS6_PNS2_10LibContextE) +STUB( + "JyCF7kWbJ9M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEC1EPNS2_10LibContextE) +STUB( + "JyFiQoo5a80", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEC1ERS7_) +STUB("JyFq+FZ6ujw", sceMatAgcUnregisterOwnerAndResources) +STUB("JyOeyYkXTxg", _ZN7WebCore21convertToIntegerClampIjEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB("JyUeLMxEryE", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13WhoLikedStoryEE9constructEPS3_RKS3_) +STUB( + "JyWRZU72z-4", + _ZNK3sce2Np9CppWebApi14SessionManager2V134PostGameSessionsSearchResponseBody17gameSessionsIsSetEv) +STUB( + "JyYPAj43J9k", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB( + "JygLkSXhBnI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEEC1ERSA_) +STUB("Jyi9nG7tKAQ", _ZN3JSC7Symbols37asyncGeneratorQueueIsEmptyPrivateNameE) +STUB( + "JyloE4AVG3k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE8pushBackERKS8_) +STUB("JytUablqmBY", utf8_appendCharSafeBody_67) +STUB("Jyy0zT-00O8", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10ContainersEE19setCustomReturnCodeEi) +STUB( + "Jz0zRb2RIEw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("Jz3VZZCP7pM", _ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequest11unsetZoneIdEv) +STUB("Jz88OLceWZg", g_direct_equal) +STUB("JzBDUIC5xok", + _ZN15AbstractStorage13YoutubeFolderC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) +STUB("JzCH3SCFnAU", sceFontOpenFontInstance) +STUB("JzGiDlmIxsI", _ZN7WebCore17LibWebRTCProvider29setH264HardwareEncoderAllowedEb) +STUB("JzIm9UFNzQQ", rgctx_fetch_trampoline_rgctx_52_p) +STUB("JzJdh-JLtu0", sceNpTrophySystemAbortHandle) +STUB("JzKvn3GnFrc", _ZTVN12video_parser13cVideoPathMgvE) +STUB( + "JzLxHxosAio", + _ZN9Inspector14ConsoleMessageC1EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelEON3WTF6VectorINS5_12JSONLogValueELm0ENS5_15CrashOnOverflowELm16ENS5_10FastMallocEEEPNS1_14JSGlobalObjectEm) +STUB("JzMmiPuMgjM", _ZN3sce2Np9CppWebApi11Matchmaking2V113ErrorResponse8fromJsonERKNS_4Json5ValueE) +STUB("JzPZnLpzjPQ", _ZN7WebCore9HTMLNames10nolayerTagE) +STUB( + "JzSipD3oIOk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEC2ERS7_) +STUB("JzUQfQtIoQw", ures_copyResb_67) +STUB( + "JzY7YZPa-No", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEeqERKS9_) +STUB("JzZv9J6nNIk", _ZN3sce7Toolkit2NP2V24Core7Request16TerminateServiceD2Ev) +STUB("JzcllBpj1TA", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead16unsetSessionNameEv) +STUB( + "JzgTbyHd2Tk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE5beginEv) +STUB("JzhYTP2fG18", sceNpWebApiAbortRequest) +STUB("Jzj9ZTh5m1I", _ZNK15AbstractStorage14TwitterContent7GetStatEPNS_4StatE) +STUB( + "JznrIP2Yf1I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEE7add_refEv) +STUB("JzqS+6C+2F4", _ZN3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsersC1Ev) +STUB( + "JzrsxjPAGHI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("JzyGiIF42zY", mono_aot_Sce_Vsh_VrEnvironmentunbox_trampolines) +STUB("JzyT91ucGDc", sceFiberRename) +STUB("K+-VjJdCYVc", _ZGVNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE) +STUB("K+2TibxjzIM", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEEplEm) +STUB( + "K+3276vs5Sg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE5beginEv) +STUB( + "K+8TpYzaEHs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEneERKS9_) +STUB( + "K+962v+GiWc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "K+AkNLmYoRo", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitationsC1Ev) +STUB("K+KtxhPsMZ4", sceNpMatching2SendLobbyChatMessage) +STUB("K+R0bQvP+yE", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainerC2ERS5_) +STUB("K+Rag0htwTU", mono_aot_System_Threading_Tasksmethod_addresses) +STUB( + "K+SaAMqLy90", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEE11get_deleterEv) +STUB("K+WAuNzvn3g", sceLoginMgrServerGetLogoutInfo) +STUB( + "K+X3h84HYzc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEC1EPS8_) +STUB("K+XKFHF4O0w", _ZNK7WebCore16TrackPrivateBase8languageEv) +STUB("K+Zobl1IlaQ", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15ErrorC2EPNS1_6Common10LibContextE) +STUB("K+atHmf4wiE", __asan_get_alloc_stack) +STUB("K+gcnFFJKVc", strcat_s) +STUB("K+k1HlhjyuA", __atomic_fetch_sub_8) +STUB("K+opAUiTBl8", utext_clone_67) +STUB("K+pduqb8xWI", _ZN7WebCore8SVGNames10feFuncGTagE) +STUB("K+qFnV4GuaI", _ZN3sce7Toolkit2NP2V212EventsClient6EventsC2ERKS4_) +STUB("K+rocojkr-I", sceJpegEncCreate) +STUB("K+v+cnmGoH4", wcsnlen_s) +STUB("K+w0ofCSsAY", _ZTSN10__cxxabiv129__pointer_to_member_type_infoE) +STUB("K+yeXWdjPa8", + _ZNK3sce2Np9CppWebApi15Personalization2V121GetAccessCodeResponse12getExpiresAtEv) +STUB("K-1Q9aFLzz8", _ZN7WebCore11RenderStyleD1Ev) +STUB("K-2wOp7OEL8", WKFramePolicyListenerUse) +STUB("K-41pszCv-w", uscript_getScriptExtensions) +STUB("K-4deNCqAZ0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEEC2EPS4_PFvS6_EPNS2_10LibContextE) +STUB("K-5mtupQZ4g", _ZNSt6locale5emptyEv) +STUB( + "K-8zIXFFdBQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEC2EPKS8_) +STUB("K-Elw9+fI68", _ZN3sce7Toolkit2NP2V23TUS7Request10DeleteData14MAX_DATA_SLOTSE) +STUB("K-QFvDXYSbg", sceShellCoreUtilPreNotifyOfRemotePlay) +STUB("K-RNUIY3KM8", + _ZN3sce7Toolkit2NP2V28Commerce7Request29DisplayVoucherCodeInputDialog16VOUCHER_CODE_LENE) +STUB("K-SASOayHdY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEC1ERS7_) +STUB( + "K-TZ3EOftOg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEED2Ev) +STUB("K-UfI+QGiEU", _ZNK3WTF13MonotonicTime4dumpERNS_11PrintStreamE) +STUB( + "K-V1YXY262w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEppEi) +STUB( + "K-c74GmbbKs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEppEv) +STUB( + "K-cN-K6-820", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEE6assignEPS5_PFvS7_EPNS2_10LibContextE) +STUB("K-g87UhrYQ8", CERT_STORE_findIdentityByTypeNext) +STUB( + "K-gQgNQQ2ls", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEC1Ev) +STUB("K-hhscQm6wI", _ZN7WebCorelsERN3WTF10TextStreamENS_26GraphicsLayerPaintingPhaseE) +STUB("K-jXhbt2gn4", pthread_mutex_trylock) +STUB( + "K-obUOpftec", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "K-pfc6yIJUg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEE11get_deleterEv) +STUB("K-y1p7Z9THQ", hb_buffer_destroy) +STUB("K00pOnB6Fwc", sceBdSchedSetPrioritizedBackgroundCopyRequest) +STUB( + "K01ppwbznBA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEE5resetEPS9_) +STUB("K034lTxFZHc", _ZN3sce7Toolkit2NP2V27Session12Notification18InvitationReceivedD2Ev) +STUB( + "K0AM3CiY4ns", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEE5resetEPS9_) +STUB( + "K0E2qCBgDBY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEEdeEv) +STUB( + "K0Eqp+Pba6w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEmmEv) +STUB("K0FefM+JdkQ", fuse_new_common) +STUB( + "K0GoCJZo0k8", + _ZN3sce2Np9CppWebApi14SessionManager2V122SearchConditionFactory6createEPNS1_6Common10LibContextENS3_15SearchAttributeENS3_14SearchOperatorEPNS5_12IntrusivePtrINS3_15SearchConditionEEE) +STUB( + "K0KOGhX9XZU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEE3getEv) +STUB("K0QxEbD7q+c", sceGameLiveStreamingPermitLiveStreaming) +STUB( + "K0WTDA3u77w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEC1EPKS9_) +STUB("K0ZTCJ-wFrM", sceKernelIsDebuggerAttached) +STUB( + "K0cgQ0875D0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB("K0eYGhWDa-I", _ZStL9_Fac_head) +STUB("K0gxiS+SBho", + _ZN3sce7Toolkit2NP2V24Core22getServiceTypeAsStringENS3_11ServiceTypeERNS3_15StringifyResultE) +STUB( + "K0jtZfw1cOs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEE7add_refEv) +STUB( + "K0knta-WVjs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEdeEv) +STUB("K0sTKrYVnmk", _ZN7WebCore18PerformanceLogging22javaScriptObjectCountsEv) +STUB("K0t2UtEWMRQ", _ZN3sce7Toolkit2NP9Utilities6FutureI7SceNpIdED2Ev) +STUB( + "K0uAfDwRqMk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE7reserveEi) +STUB( + "K0utvoujMOU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEED1Ev) +STUB("K1+uzxxReX0", _ZN3sce2np13NpTitleSecretC2Ev) +STUB( + "K1+vfk2Fbmk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEneERKS9_) +STUB("K1-NvM0A0vs", _ZN3JSC2VM15canUseAssemblerEv) +STUB("K119oeArHPQ", ustr_hashCharsN_67) +STUB( + "K11WrbAoWrc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB( + "K11fuBZbb+8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE3endEv) +STUB("K15VxhSJOfc", sceAgcDriverIsSuspendPointInFlight) +STUB("K1A7IJp5xYc", sceKeyboardSetProcessPrivilege) +STUB("K1BfPBkl3Nw", YGNodeGetMeasureFunc) +STUB("K1GtcVRa8sk", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEEC1Ev) +STUB("K1HFWu7lqOQ", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData10getboardIdEv) +STUB("K1J9tCP66lw", _ZN3sce7Toolkit2NP15AppSTLAllocatorIiED1Ev) +STUB("K1Kr51Zjz2Y", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEEC1ERS6_) +STUB("K1S8oc61xiM", htonl) +STUB("K1Tsm0zm5YI", _ZN3sce7Toolkit2NP2V210Tournament25OneVsOneTournamentDetailsC1ERKS4_) +STUB( + "K1UVQYkPUz4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEEC2ERKSA_) +STUB("K1c9NM1WP8Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEC1Ev) +STUB("K1d1LqZRQHQ", sceHttpSetResolveRetry) +STUB("K1hATO-k4d4", mono_btls_x509_verify_param_free) +STUB("K1pNyl3xEzo", sceCesUtf8StrGetIso2022Len) +STUB("K1tBLr3fZIc", unumsys_openByName_59) +STUB( + "K1wnfkwGhyk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEaSERKS9_) +STUB("K20LexXxtoI", pg_size) +STUB("K26-A5vG090", _ZNK9Inspector15ScriptCallStack4sizeEv) +STUB("K26BxR4rquU", _ZN3sce2np18HttpConnectionPool13GetConnectionEPNS0_12HttpTemplateEPKcPi) +STUB( + "K27WoCfHp6k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "K28GmR+XFds", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead22setDisableSystemUiMenuERKNS1_6Common6VectorINS5_6StringEEE) +STUB( + "K2Au2-6Agmw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEED2Ev) +STUB("K2C3Nc9TW5c", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead23supportedPlatformsIsSetEv) +STUB( + "K2CXrZAc7h8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEC1EPS8_) +STUB("K2LGYZzodHY", _ZN7WebCore9HTMLNames15cellspacingAttrE) +STUB("K2SunP1fd3I", _ZN7WebCore9HTMLNames9frameAttrE) +STUB("K2XscH2j2Hk", sceRegMgrBackupNeedMemForPS4) +STUB( + "K2ZHpuammpw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEaSERKS9_) +STUB( + "K2aFtp7w34I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEED1Ev) +STUB("K2mciNVxUCE", sceAgcSetNop) +STUB("K2pwXRnawg0", _ZN3sce2Np9CppWebApi14SessionManager2V16Friend14unsetAccountIdEv) +STUB( + "K2tDZsWpnX4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE8pushBackERKS8_) +STUB("K2tjVlnBAV4", _ZN3WTF7Unicode18UTF8SequenceLengthEc) +STUB( + "K2yfaQp5r4M", + _ZN3sce2Np9CppWebApi13InGameCatalog2V59Publisher7setIconERKNS1_6Common12IntrusivePtrINS3_5ImageEEE) +STUB("K3+Q9AAxDx0", monoeg_try_malloc) +STUB("K3+kZCE6lOo", sceApplicationIsCrashReportBeingProcessed) +STUB("K31plXSLNu0", mono_aot_Sce_Vsh_Stickerunwind_info) +STUB("K33+EwitWlo", sceShellCoreUtilSetGameLiveStreamingStatus) +STUB( + "K39+emWX5UY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEEC1Ev) +STUB("K3BKBBYKUSE", sceGnmSetResourceUserData) +STUB("K3HAYA0cG6w", _ZN7WebCore20ResourceHandleClientD2Ev) +STUB( + "K3IMuWAqzlE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "K3K2-7mb89E", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("K3KZDoRWz90", AnnotateRWLockAcquired) +STUB("K3Mw-yCYcck", mono_aot_Sce_Vsh_AppContentUtilWrapperunbox_trampolines_end) +STUB("K3T9QYDxAaQ", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V110Reputation17perFranchiseIsSetEv) +STUB( + "K3WO+2K00cI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEptEv) +STUB( + "K3YelMwjfxM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEaSERKSA_) +STUB( + "K3dYYv4B434", + _ZN7WebCore27PlatformMediaSessionManager17removeRestrictionENS_20PlatformMediaSession9MediaTypeEj) +STUB("K3efgJ7YQ7M", + _ZN7WebCore20LegacySchemeRegistry36registerAsCanDisplayOnlyIfCanRequestERKN3WTF6StringE) +STUB( + "K3heDxof-Wc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEE11release_refEv) +STUB("K3j9h74ECZ0", _ZNK3sce2Np9CppWebApi15Personalization2V15Error16referenceIdIsSetEv) +STUB( + "K3jkvDXyOHc", + _ZN3sce7Toolkit2NP2V26Trophy19getTrophyPackTrophyERKNS3_7Request19GetTrophyPackTrophyEPNS2_4Core8ResponseINS3_16TrophyPackTrophyEEE) +STUB("K3n-MX0qBKg", _ZNK7WebCore4Page17useDarkAppearanceEv) +STUB("K3oGakljx2w", _ZN3sce2Np9CppWebApi12Leaderboards2V15Entry8setScoreERKl) +STUB("K3qnBgQ0nC4", _ZN15AbstractStorage14StorageManagerD2Ev) +STUB( + "K3v8CFaA-cA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEEC1ERSA_) +STUB( + "K3wG+8bwrQ0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEC2EPS8_) +STUB( + "K3zmJ7H-sQE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEC2EPS8_) +STUB("K4-kVJE5+Wo", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEEC2Ev) +STUB("K42ka7NaGvY", _ZN9Inspector20InspectorTargetAgentnaEm) +STUB( + "K44Rw736vzE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEmmEv) +STUB("K461V2TIiT4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEaSERS7_) +STUB("K47f5cshudA", il2cpp_array_length) +STUB("K48oF9Lvz9c", sr08) +STUB("K49mqeyzLSk", _Atomic_fetch_or_1) +STUB( + "K4COkx9nTi4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEaSERKS9_) +STUB("K4Ch5Jqrr1g", _ZN23sceMetadataReaderWriter15ParserInfoTable20unregisterParserInfoEv) +STUB("K4KnH0QkT2c", sceHmdInitialize) +STUB("K4M0IhFb88Q", __ubsan_handle_cfi_check_fail) +STUB("K4To+D8FSq8", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getAllSecondaryAudioLangs) +STUB("K4W0ovmeJVw", sceUserServiceSetCaptureStatus) +STUB( + "K4cGNU0++iE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE11getResponseERS8_) +STUB("K4igogiqprA", _ZN3JSC12VMEntryScopeC2ERNS_2VMEPNS_14JSGlobalObjectE) +STUB( + "K4j+ai8R2Gc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEaSERKS9_) +STUB("K4o48GTNbSc", sceNetConfigWlanAdhocLeave) +STUB("K4sH-0WUfuc", sceVdecCoreGetDecodeOutput) +STUB( + "K518vI53s-4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEED2Ev) +STUB("K51HUUV9AWA", _ZN3WTF6String6appendEDs) +STUB("K53uecBukJk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEEmmEi) +STUB("K57m00RjFaQ", WKBundlePageSetTracksRepaints) +STUB("K59xDVxbCyM", _ZN3WTF20ConcurrentPtrHashSet15deleteOldTablesEv) +STUB("K5ATDSUHMHg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEE7get_refEv) +STUB("K5AXouyDb8Y", _ZN3JSC18NullSetterFunction6s_infoE) +STUB("K5DiY1KV7Co", _ZN3sce3pss4core5audio11SoundPlayer20MoveSurroundPanAngleEfbd) +STUB("K5Krt9eME4k", _ZN4Manx8Gamepads6createEv) +STUB( + "K5MHhNzfc9A", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEptEv) +STUB( + "K5N5DtHnzCQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEC1EPS6_PNS2_10LibContextE) +STUB("K5Ud8wOZI5M", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEEC1Ev) +STUB("K5V0IcHAoOE", WKFrameCanShowMIMEType) +STUB( + "K5VQEvThhCA", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetBoolean6Ev) +STUB("K5WQl+O-L7w", _ZN3sce7Toolkit2NP2V28Matching7Request15GetRoomPingTimeD1Ev) +STUB("K5b36DjkSTg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEptEv) +STUB("K5ippOq4QKo", _ZThn96_NK7WebCore22HTMLFormControlElement12willValidateEv) +STUB( + "K5jUzaoyT60", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE5emptyEv) +STUB("K5knPZnClPg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEE7add_refEv) +STUB( + "K5mBGcDUzAs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEEptEv) +STUB("K5qAEdj2hrk", _ZN3WTF4dtoaEPcdRbRiRj) +STUB("K5vygF187x0", _ZN7WebCore8SVGNames9stemvAttrE) +STUB( + "K5wCXUw5Uvo", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorI16SceNpTusVariableNS1_15AppSTLAllocatorIS5_EEEED2Ev) +STUB( + "K5wQCiQZxyg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEED1Ev) +STUB("K5xF1GKVsVw", locale_set_default_67) +STUB( + "K5xn0GLlVtQ", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("K5zin6Xh7SY", _ZN3sce7Toolkit2NP2V28Matching12Notification11RefreshRoomC2ERKS5_) +STUB( + "K61ZpEXVA8E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE5emptyEv) +STUB("K62IGGSMrME", sceApplicationSetMemoryPstate) +STUB("K62jNcRGQdY", cairo_pattern_create_linear) +STUB( + "K65J+BPA6I0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEED2Ev) +STUB( + "K65xjvaD0qQ", + _ZN7WebCore13TextIndicator26createWithSelectionInFrameERNS_5FrameEtNS_35TextIndicatorPresentationTransitionENS_9FloatSizeE) +STUB("K67v9Ocojlk", _ZN7WebCore17FrameLoaderClientD2Ev) +STUB("K6JphzOV+Bc", Seek) +STUB( + "K6KEIySGe+w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("K6LlQ-A81Ag", _ZN8meta_gen11MsvPromoter27retrieveParentalControlInfoEv) +STUB( + "K6NFzl0vi+M", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE3endEv) +STUB( + "K6SIfwxsfpE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "K6YSavHWo4o", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanity15getserviceLabelEv) +STUB( + "K6ZnlaOFL+0", + _ZN7WebCore12CryptoKeyAES9importRawENS_25CryptoAlgorithmIdentifierEON3WTF6VectorIhLm0ENS2_15CrashOnOverflowELm16ENS2_10FastMallocEEEbi) +STUB("K6aayzvQMlE", cairo_destroy) +STUB( + "K6jH5sv3ruA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE5beginEv) +STUB("K6mdkMbMUDk", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification16FriendlistUpdateEE5resetEv) +STUB("K6poyp1nD50", _ZN3WTF11Persistence7Decoder6decodeERl) +STUB( + "K6vTSrvQnv4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEptEv) +STUB("K6vTjK5pdQU", ptohqw) +STUB( + "K72SyKrFZEQ", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEiRNS2_10LibContextEPT_m) +STUB("K73cF+3Qe+k", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead14setCustomData1EPKvm) +STUB("K79kvESFqPQ", _ZN3WTF3URL7setUserENS_10StringViewE) +STUB("K7Ebfde-JmE", _ZN7WebCore16MIMETypeRegistry27isSupportedNonImageMIMETypeERKN3WTF6StringE) +STUB("K7FjXiy2z+A", _ZN3sce2np10CancelLockD1Ev) +STUB("K7JXQQsJTS8", sceFsLvdAttach) +STUB("K7KNByP46vs", JSRemoteInspectorSetLogToSystemConsole) +STUB( + "K7Qy0yrkZX8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "K7RLfr9Oi8o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEEaSERKSA_) +STUB("K7RlrTkI-mw", sceNetPoolDestroy) +STUB("K7SHCEr+PkQ", sceFiosDHGetPath) +STUB( + "K7T4Apme3sU", + _ZN7WebCore13JSDOMRectList19getOwnPropertyNamesEPN3JSC8JSObjectEPNS1_9ExecStateERNS1_17PropertyNameArrayENS1_15EnumerationModeE) +STUB("K7TCNQ4DrdE", EVP_aes_192_wrap) +STUB( + "K7TMA9sw+TA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("K7Vb-7JGXVc", sceUsbStorageDialogClose) +STUB("K7W7H4ZRwbc", sceCameraSetLensCorrection) +STUB( + "K7WCJ2vH2bg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("K7XzBKsFyaI", _ZN4Manx7RunLoop4pollEv) +STUB("K7YUr62EN+E", + _ZN7WebCore18TextureMapperLayer20setChildrenTransformERKNS_20TransformationMatrixE) +STUB( + "K7YtIRrK+o0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("K7eIytThnzg", _ZN7WebCore15PasteboardImageD2Ev) +STUB("K7iHdJjGbs8", _ZNSo12_Sentry_baseD2Ev) +STUB("K7iNFNfeBN4", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOfferD1Ev) +STUB("K7m4Ku1jWBw", _ZNK7WebCore13HitTestResult5imageEv) +STUB( + "K7oy4gsacns", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("K7qAbz7P3rs", _ZN3WTF19numGraphemeClustersENS_10StringViewE) +STUB( + "K7qf0lzOZFo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEEaSERKSA_) +STUB("K7sAXX2rALk", _ZN3sce7Toolkit2NP2V28Commerce13CategoryLabel22CATEGORY_LABEL_MAX_LENE) +STUB( + "K7uzXEoul1c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEC1EPKS8_) +STUB("K7xiuldOPKw", __sys_dynlib_get_info_for_libdbg) +STUB("K7yhYrsIBPc", sceVrTrackerQueryMemory) +STUB( + "K7yu91jitiw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEptEv) +STUB( + "K80vI-EOXWQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEmmEv) +STUB( + "K81QQXNxZuk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEEC1Ev) +STUB("K81dDxjr7Zg", Java_com_sony_bdjstack_org_bluray_bdplus_StatusImpl_get) +STUB("K82MOIkJDwo", _ZTVN7WebCore15ActiveDOMObjectE) +STUB("K82wly5zJoc", WKPageValidateCommand) +STUB( + "K89RDAuxX6E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE8pushBackERKS9_) +STUB("K89tpB2jJ4g", _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_6StringEEneERKS5_) +STUB("K8CzKJ7h1-8", _ZTSSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE) +STUB("K8HazO1xTBk", _ZN23sceMetadataReaderWriter7Storage11getMimeTypeERKSsRSt6vectorIjSaIjEE) +STUB("K8HtRFaPjU4", _ZN7WebCore9HTMLNames22ontouchforcechangeAttrE) +STUB( + "K8NBXEhIE5Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEC1EPKS8_) +STUB("K8Nh6fhmYkc", sceUserServiceGetThemeHomeShareOwner) +STUB("K8Os3bYfKsA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEED1Ev) +STUB("K8SZy3MsiaY", sceUlpMgrReqClose) +STUB("K8Uoy+1us+I", _ZN3sce2Np9CppWebApi10Activities2V114UserActivities5Error14setReferenceIdEPKc) +STUB( + "K8WURfLaqLU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEE5resetEPS9_) +STUB( + "K8cpt5V89gk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "K8dnw-in+Jo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEC1ERKS7_) +STUB("K8fdL1tq70w", _ZN3NTF21URLRequestDataMessage6createEv) +STUB("K8idJu-czzY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEE7add_refEv) +STUB("K8py1aN3Kj8", _ZN3JSC2VM8whenIdleEON3WTF8FunctionIFvvEEE) +STUB( + "K8zhm2vYK+o", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB( + "K8zvsl9Zt2E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEC1EPNS2_10LibContextE) +STUB("K90PVQAEb6g", _malloc_stats) +STUB("K92bYqBG5ww", _ULx86_64_dwarf_make_proc_info) +STUB("K953PF5u6Pc", pthread_cond_reltimedwait_np) +STUB( + "K9ANL80gLEs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEeqERKS9_) +STUB("K9EXdD9bqzM", sceFsUfsMkfsWithFixedCylinderGroupSize) +STUB( + "K9HeQ2wzGCc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEC1EPS6_PNS2_10LibContextE) +STUB("K9Mk0uRkFII", _ZN3JSC20speculationFromValueENS_7JSValueE) +STUB("K9UQzhrp0qg", WKPreferencesGetTopNavigationToDataURLsAllowed) +STUB( + "K9YR8vLlkJ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "K9ZmkxXosig", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "K9aswEKjJvk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("K9eDvYFRGWE", _ZN8meta_gen13JpegRetriever16ProcessApp14DataEv) +STUB("K9gXXlrVLNI", sceSaveDataDebugCreateSaveDataRoot) +STUB( + "K9lc7miI4y0", + _ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeaders7getETagEv) +STUB( + "K9oWUPuuLUg", + _ZN3JSC12StringObject3putEPNS_6JSCellEPNS_14JSGlobalObjectENS_12PropertyNameENS_7JSValueERNS_15PutPropertySlotE) +STUB( + "K9q2setOBr0", + _ZN9Inspector23CanvasBackendDispatcher18requestClientNodesElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "K9qkFIMG5ic", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEEcvbEv) +STUB( + "K9rkHlZORBI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEC1Ev) +STUB("K9tlODTQx3c", sceNpScoreGetRankingByAccountId) +STUB("K9vktugZ2+E", udat_adoptNumberFormatForFields_67) +STUB("K9wStUZwsY8", Java_com_sony_bdjstack_core_AppCacheManager_seek) +STUB("KA-NoTpTTbU", _ZN7WebCore4Page9initGroupEv) +STUB("KA2AITpVTCg", sceNpAsmClientDeleteResourceContext) +STUB("KA515kD5rAY", sceVideoOutDeleteDriver) +STUB("KA56yfHRZ0M", _ZNK3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResults10scoreIsSetEv) +STUB("KAAWT2zE4fw", bemp2sys_psdecoder_readpacket) +STUB( + "KAApUzwE47w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEC1Ev) +STUB("KAB1QB70Xeg", _ZN7WebCore9JSElement11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("KAC-e9-fPB0", _ZN7WebCore30rejectPromiseWithThisTypeErrorERNS_15DeferredPromiseEPKcS3_) +STUB("KADsbjNCgPo", sceSharePlaySetProhibitionModeWithAppId) +STUB("KAEzm5+zq2w", uprv_isPositiveInfinity_67) +STUB("KAIGiqYrtI4", sceOpusDecCreateEx) +STUB("KAJD5gNtjzg", + _ZN15AbstractStorage14MemfileContent13writeExternalESt10shared_ptrINS_7ContentEE) +STUB( + "KAQOKCuUE3A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEC2EPS6_PNS2_10LibContextE) +STUB( + "KAUKqiXMdNA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEmmEv) +STUB( + "KAa5jgdp2gQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEE3getEv) +STUB( + "KAahrsYg7mk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE7popBackEv) +STUB( + "KAbB2mBC9MM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEE3getEv) +STUB("KAcWEAGdd+c", _ZNK7WebCore11HistoryItem20hasCachedPageExpiredEv) +STUB("KAeP0+cQPVU", sceSystemGestureGetPrimitiveTouchEventByIndex) +STUB( + "KAeujYdb9yg", + _ZN3sce2Np9CppWebApi14SessionManager2V113FriendFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_6FriendEEE) +STUB( + "KAn-AAN+xss", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEE3getEv) +STUB("KAtBjvAqdeM", _ZN7WebCore11DisplayList20EndTransparencyLayerD1Ev) +STUB("KAtGZCifCMo", _ZN15AbstractStorage4Item7GetNameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB( + "KAtSAh6yrS0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEC1Ev) +STUB( + "KAvNoOamrnM", + _ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead14unsetSessionIdEv) +STUB( + "KAyGHWR3xx8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEppEv) +STUB("KB1p9ezmiqw", _ZN9Inspector8Protocol8Timeline13TimelineEvent4DataE) +STUB("KB4idIMx4Ws", + _ZNSt9_FacetptrISt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEE6_PsaveE) +STUB("KB7Vc2+5S54", sceKernelNormalizePath) +STUB("KBAM9blJBus", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEC1ERS7_) +STUB("KBBVmt8Td7c", _ZTIy) +STUB("KBG7kh5cNDw", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V19JoinStateEEC1Ev) +STUB( + "KBHHqm8w5QA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("KBHxDjyk-jA", sceNpScoreGetRankingByRange) +STUB( + "KBKQEgl3Kf8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEptEv) +STUB( + "KBKfxDJHKGg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEC1EPS8_) +STUB("KBP2JpAEacI", sceVisionManagerCancelRequest) +STUB( + "KBPerJT18ds", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13goToProcessedEi) +STUB("KBSJX5hK+80", rgctx_fetch_trampoline_mrgctx_25_p) +STUB("KBTWh1VVa-8", curl_share_init) +STUB("KBc0PTQmUd8", _ZN7WebCore8SVGNames10offsetAttrE) +STUB( + "KBd1HybTC00", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEC1EPKS8_) +STUB( + "KBeHgu+4za4", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToSendGameSessionMessage53setpostGameSessionsSessionIdSessionMessageRequestBodyENS1_6Common12IntrusivePtrINS3_50PostGameSessionsSessionIdSessionMessageRequestBodyEEE) +STUB("KBfBmtxCdmI", sceNpTusGetMultiSlotDataStatusForCrossSaveVUser) +STUB("KBjzxYPrZHo", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification16NewInGameMessageEED2Ev) +STUB( + "KBpsaobhG00", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEdeEv) +STUB("KBqnq2n2d5U", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetBoolean3Ev) +STUB("KBxgeNpoRIQ", sceNpWebApiCreateMultipartRequest) +STUB("KC+GnHzrK2o", sceNpMatching2GetRoomMemberIdListLocal) +STUB( + "KC08oV2N19M", + _ZZSt9MakefacetISt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEESt8_LocinfoERT_T0_E3buf) +STUB("KC23EegtMiY", sceDebugGetProcessPropertyForCoredump) +STUB("KC25794vwOY", sceClHttpSendRequest) +STUB("KC2hahSBhdw", ulistfmt_openResult_67) +STUB("KCAC0IGZjfE", _ZN3sce7Toolkit2NP21InvitationDataRequestC1Ev) +STUB( + "KCAhdaV0ys4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEC1Ev) +STUB( + "KCBxgjX0P6c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("KCEJ9s5mJa0", _ZN7WebCore8SVGNames5xAttrE) +STUB("KCGOxg8iX7s", sceVoiceQoSSetConnectionAttribute) +STUB( + "KCIiHzd9TYg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE21intrusive_ptr_add_refEPS9_) +STUB("KCItz6QkeGs", sceNpWebApiSendMultipartRequest) +STUB("KCJmvB04zUM", _ZN7WebCore20ResourceResponseBase17setHTTPStatusCodeEi) +STUB("KCO1P9GayT4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V117InvitableUserTypeEEC2Ev) +STUB("KCRtc-+ZXQQ", mono_aot_Sce_Vsh_RequestShareScreenunbox_trampolines) +STUB("KCRxFgmw1pg", Java_java_lang_Runtime_execInternal) +STUB( + "KCYm4TZmrCo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEppEv) +STUB( + "KCZ6zVnrtWs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEneERKS9_) +STUB("KCZNgUfgD4M", _ZN3sce7Toolkit2NP2V28Commerce12ProductLabel21PRODUCT_LABEL_MAX_LENE) +STUB( + "KCdZowLuX6s", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEptEv) +STUB("KCg4XANux9c", + _ZN3sce7Toolkit2NP2V29Messaging7Request17LocalizedMetadata25MAX_SIZE_DATA_DESCRIPTIONE) +STUB("KCijjig3lGo", sceVideoOutHdmiMonitorInfoIsSupportedHdcpVersion_) +STUB("KCk4OGu8+sc", sceNpUtilGetNthChar) +STUB( + "KClH-saVUeQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEE7add_refEv) +STUB("KClvZ9ik-bQ", _ZN7WebCore13releaseMemoryEN3WTF8CriticalENS0_11SynchronousE) +STUB("KCnkzutqeMo", _ZN3JSC12RegExpObject6s_infoE) +STUB( + "KCpNUV-zqJ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("KCwXUKT269I", sceKernelSetCpumodeGame) +STUB( + "KD+fwDGYhxs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEC2Ev) +STUB( + "KD0NkSaIi1M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEED1Ev) +STUB( + "KD72I0gUpXs", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitationsD2Ev) +STUB( + "KDCKzEpXWes", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEC2Ev) +STUB("KDFy-aPxHVE", _Shared_ptr_flag) +STUB( + "KDGntSlaaM4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE4sizeEv) +STUB("KDHHqA2Vkt4", _ZN12video_parser7cVpUtil13vp_ff4_memcpyEPvS1_mPKvm) +STUB("KDLaJiY6Wt8", _ZNK7WebCore14DocumentLoader13urlForHistoryEv) +STUB( + "KDLg21TOtPY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEixEm) +STUB( + "KDMetFx1rO8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "KDMfjPaChGk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE4sizeEv) +STUB("KDOgz6Za1jc", uprv_deleteConditionalCE32_67) +STUB("KDPOldWSEtc", glGetActiveUniformBlockName) +STUB("KDRPZeaauUQ", _ZN3WTF13printInternalERNS_11PrintStreamERKNS_6StringE) +STUB("KDU5tG3gZRs", WKContextConfigurationPrewarmsProcessesAutomatically) +STUB( + "KDch9C5nh3U", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("KDgQWX1eDeo", _ZNSs6insertEmmc) +STUB("KDhvMdyJm2M", + _ZN3WTF7Unicode51calculateStringHashAndLengthFromUTF8MaskingTop8BitsEPKcS2_RjS3_) +STUB("KDo+JeUjEO0", _ZN3sce7Toolkit2NP2V27Session7Session5resetEv) +STUB("KDo-NFVwfAs", _ZN8meta_gen11MsvPromoter11setSortKeysEP22MsvPromoteInnerContext) +STUB( + "KDsE5udJv9o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "KDtkfeBbzD0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEC2EPS8_) +STUB("KDuUaPE3qgA", mono_config_get_cpu) +STUB( + "KE-DhhHnzhk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEED2Ev) +STUB("KE2V137Wreg", _ZN12video_parser13cVideoMetaMP410initializeEv) +STUB( + "KE3-EfciV5E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "KE6eDerQcqQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEmmEv) +STUB("KECIldu6iZ4", WKPreferencesSetPictographFontFamily) +STUB("KECbnF2igRw", _ZN3WTF6String8fromUTF8EPKhm) +STUB( + "KEDPR2fy6BU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE8capacityEv) +STUB("KEDRSc45lqQ", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEptEv) +STUB( + "KEJojcNQgqU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEcvbEv) +STUB("KEOELlzDcW4", mono_aot_System_IO_Compressionmethod_addresses) +STUB( + "KEOT4L3r76o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEC2EPS7_PNS2_10LibContextE) +STUB("KEOtPPGr59w", sceDebugIpmiGetBlockTimeInfoList) +STUB("KESBYwioO8M", mono_shared_internal_hash_table_remove) +STUB("KEWuo12tZUE", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification15BlocklistUpdateEEC1Ev) +STUB("KEloYrrpNb8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEE5resetEPS6_) +STUB("KEoFEK7OMRg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEEC2ERS6_) +STUB("KErdBAt4DHk", initProtocolInfoList) +STUB( + "KEsZVDZkItk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEC1ERS7_) +STUB("KEwNCmLeQH0", WKPreferencesSetSpatialNavigationEnabled) +STUB("KF25CDxFn48", sceKernelCreateEport) +STUB("KF5w76OAaNw", _ZN3JSC7Symbols17valuesPrivateNameE) +STUB( + "KF6uAx-kdss", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEneERKS9_) +STUB("KFDGyLj80MY", _connect) +STUB( + "KFFibOtih7M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE8pushBackERKS8_) +STUB( + "KFMNuHu2nu8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEC2Ev) +STUB( + "KFN1OPDd+iI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEEdeEv) +STUB( + "KFXojgE-mpQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE4sizeEv) +STUB("KFZg2gzePls", sceFsDevpfsEventComplete) +STUB( + "KFaP-zqYzO4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "KFaZ2bI7cx8", + _ZN3sce2Np9CppWebApi14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBody8fromJsonERKNS_4Json5ValueE) +STUB("KFez0hNxLvY", sceVnaCheckCallback) +STUB("KFfdxAYTbik", vm_send_CreateExceptionFunctions) +STUB("KFi2uS5ioog", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEEC1Ev) +STUB("KFk2i000270", ufile_getch32_67) +STUB("KFkcW-LoV+c", mono_aot_Mono_Dynamic_Interpreterunbox_trampolines) +STUB("KFlEhr8cDSM", _ZN3JSC7Symbols31allocateFloat32ArrayPrivateNameE) +STUB( + "KFqWU2DUxrw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEED1Ev) +STUB("KFrr-J87UYY", generic_trampoline_rgctx_lazy_fetch) +STUB("KFvL6pHITnQ", WKBundleSetAppCacheMaximumSize) +STUB( + "KFwOdpIqVYU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEC1Ev) +STUB("KFxpWlaQ6tI", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product14getReleaseDateEv) +STUB("KG28PSUSw60", mono_signature_get_return_type) +STUB("KG4GV1N5L5E", _ZN3sce7Toolkit2NP2V27Ranking12FriendsRanks8deepCopyERKS4_) +STUB("KGAA02fSVmk", ThreadUtils_SetSchedulePolicy) +STUB("KGDPPey77F4", jpeg_fdct_12x12) +STUB("KGFh4Rft6NY", _ZN12video_parser16cVideoContentMp46_brandEv) +STUB("KGK5vuCEt8I", _ZN7WebCore9HTMLNames11versionAttrE) +STUB("KGKBeVcqJjc", scalbn) +STUB("KGLy4DI9vwQ", X509_get_serialNumber) +STUB("KGNNNccvpWA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEixEm) +STUB("KGRHybg8z0U", _ZN3sce7Toolkit2NP2V210Wordfilter16SanitizedComment16MAX_SIZE_COMMENTE) +STUB("KGX3DM3ehac", _ZN7WebCore17WebGLStateTrackerC2EON3WTF8FunctionIFvbEEE) +STUB("KGXoebAph80", glVertexAttribDivisorEXT) +STUB("KGYgf9IhC7w", _ZN9Inspector8Protocol7Network8Response8MimeTypeE) +STUB( + "KGgeVNRutGE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEEaSERSA_) +STUB("KGhYQqdb2l4", _ZNK7WebCore11HistoryItem11hasChildrenEv) +STUB("KGitZXuSY7U", _ZN3sce2npeqERKNS0_10NpOnlineIdES3_) +STUB("KGmTR4zXrAw", ureldatefmt_format_67) +STUB("KGotca3AjYw", vswscanf) +STUB("KGphfgpRs6E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEED1Ev) +STUB( + "KGs8Ur-0beM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB("KGtn3dScHNE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEaSERS7_) +STUB( + "KGtzRL0g+Fo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEdeEv) +STUB("KGvKzD5XgFE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEE3getEv) +STUB( + "KGvd2BOGGNM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("KGxAOGkXt7s", JSObjectDeleteProperty) +STUB("KGxuX3DzLME", _ZTVN15AbstractStorage18DailymotionContentE) +STUB("KH+o0h-eelo", u_forDigit_67) +STUB( + "KH-ITQjYM2U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEEptEv) +STUB("KH0InA0uStg", sceShellCoreUtilIsNeededCrashReport) +STUB( + "KH1YxQ7-xUg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEdeEv) +STUB( + "KH1qzCeYakw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEC2EPS8_) +STUB("KH3nZZ9oLx0", _ZN7WebCore9PageCache14pruneToSizeNowEjNS_13PruningReasonE) +STUB("KH4302QYBDI", _ZNK9Inspector18InjectedScriptBase20injectedScriptObjectEv) +STUB("KH4ujbMUhcg", _Z23VideoPlayerVcs_GetSpeedi) +STUB( + "KH6VtKHCAZU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE10setContextEPNS2_10LibContextE) +STUB("KHA4C0EPJsU", _ZN7WebCore9HTMLNames13ondragendAttrE) +STUB("KHAvAJXNJMg", ures_hasNext_67) +STUB("KHBNAkJhT64", sceVideoOutSetContentType) +STUB( + "KHBU3FrV+cU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("KHCFjwCNxoQ", _ZNK7WebCore11MediaPlayer20playerContentBoxRectEv) +STUB("KHFDfTC8ANo", Java_java_io_FileOutputStream_open0) +STUB( + "KHFQv5m2JSM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("KHIw7IVhuWE", _ZN8Gigacage4freeENS_4KindEPv) +STUB( + "KHJ9c4RfWsM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("KHJflcH9s84", _Atomic_exchange_1) +STUB( + "KHPip4Apatw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEEdeEv) +STUB("KHT8IFOs2KM", WKSizeGetTypeID) +STUB("KHXHMDLkILw", sceAudiodecDecode) +STUB("KHXsXc9VSzY", + _ZN3sce2Np9CppWebApi13InGameCatalog2V515ContainerRatingC2EPNS1_6Common10LibContextE) +STUB("KHc5ePKTVZ0", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIdEC1EPd) +STUB("KHfpjj9Pucg", sceVrSetupDialogUpdateStatus) +STUB("KHj92a3WDn4", FT_Stream_GetLongLE) +STUB("KHjAWhSAGbY", _ZN3sce2Np9CppWebApi6Common6Binary5clearEv) +STUB("KHkxGxK1WQY", il2cpp_class_get_flags) +STUB( + "KHmZxzCKRHg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE5clearEv) +STUB("KHnictXNEXo", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinition9hasfieldsEv) +STUB("KHohy3AM22U", mono_metadata_parse_mh_full) +STUB("KHpZ9hJo1c0", sceGnmSpmInit2) +STUB("KHsev0YxuXs", sceVisionManagerFinalize) +STUB( + "KHuuDb9jtV8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEC2ERS7_) +STUB("KHvkPQJDMLk", sceVideoRecordingClose) +STUB( + "KHyHMSavpD0", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi36setGameSessionMemberSystemPropertiesEiRKNS4_47ParameterToSetGameSessionMemberSystemPropertiesERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB("KI-s2wtrPSw", _ZN3sce7Toolkit2NP2V29Challenge7Request13SendChallenge13MAX_SIZE_DATAE) +STUB("KI4dHLlTNl0", sceNpAuthGetAuthorizationCodeV3) +STUB("KI5+WPu8Wq4", WKContextConfigurationCopyLocalStorageDirectory) +STUB("KI5jhdvg2S8", SSL_ASYNC_closeConnection) +STUB("KI5phvfN-rU", jpeg_alloc_huff_table) +STUB("KI8Q41MvSKo", sceSlimglServerEndClient) +STUB("KI9cl22to7E", sceAudioOutSetMainOutput) +STUB("KII6TGXXZ6E", _ZN3sce7Toolkit2NP2V27Session17SessionInfoUpdateD2Ev) +STUB("KIIYva3fxFM", _ZN7WebCore16JSXMLHttpRequestD1Ev) +STUB("KIKL0rz6o-A", FTA_Export_Module_truetype) +STUB( + "KIKe8w5fLaM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEC1Ev) +STUB("KIKlp32nDIw", _ZN3sce7Toolkit2NP2V210Tournament25OneVsOneTournamentDetailsC1Ev) +STUB("KILsdfm7-b8", _Z34sceGpuDebuggerUnregisterShaderCodePKN3sce3Gnm16CsStageRegistersE) +STUB( + "KIMbPiNtJKA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEaSERKS9_) +STUB("KIXWOBUPaHk", JSValueIsArray) +STUB("KIY3JDiHq5E", _ZN23sceMetadataReaderWriter8MetadataC1EPFPvmEPFvS1_E) +STUB("KIZvmPNLZrY", _ZN7WebCore9HTMLNames4sTagE) +STUB( + "KIaU1HHfdeo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEEC1Ev) +STUB( + "KIayNb3dL1Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEEaSERKS9_) +STUB("KIbJFQ0I1Cg", fdatasync) +STUB( + "KIfR7euI3Ow", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseC1EPNS1_6Common10LibContextE) +STUB( + "KIfy++czY1g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEE7add_refEv) +STUB("KIjEyKRwWXI", + _ZN3sce7Toolkit2NP2V29Messaging7Request37DisplayReceivedGameDataMessagesDialogC1Ev) +STUB("KIkKkYcYWd0", WKBundleClearAllDiskCaches) +STUB( + "KIoXHe-Tkxo", + _ZN9Inspector17ScriptDebugServer22dispatchDidParseSourceERKN3WTF7HashSetIPNS_19ScriptDebugListenerENS1_7PtrHashIS4_EENS1_10HashTraitsIS4_EEEEPN3JSC14SourceProviderEb) +STUB( + "KIq2+4HC5Qs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEEC2ERKSA_) +STUB( + "KIxi2BMZ2Zo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEED2Ev) +STUB( + "KJ+6sAGGsXQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEE7add_refEv) +STUB( + "KJ1PJO-QfjA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEE3getEv) +STUB( + "KJ5CwZFskhM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE7popBackEv) +STUB("KJAQlWsQKf8", _ZN3JSC18PropertyDescriptor12setUndefinedEv) +STUB( + "KJC8i59kd1I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE6resizeEj) +STUB( + "KJDWJjSDaOE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEppEi) +STUB("KJGOPKBI3YE", _ZTSPKn) +STUB( + "KJGkBqRoZXs", + _ZN3sce2Np9CppWebApi12Leaderboards2V134RecordLargeDataResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_27RecordLargeDataResponseBodyEEE) +STUB("KJLvDqmFiKk", _ZNK3sce2Np9CppWebApi11Matchmaking2V19Submitter12getAccountIdEv) +STUB("KJMibJu1wr8", sceClPthreadSetprio) +STUB( + "KJPq6a72Zeg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEC2Ev) +STUB( + "KJTzMXmYY+U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEptEv) +STUB("KJcqdRyHiF0", _ZN7WebCore9HTMLNames10onplayAttrE) +STUB("KJdPcOGmK58", sceNpWebApi2PushEventDeleteFilter) +STUB( + "KJgvss90XpU", + _ZN7WebCore4Icon18createIconForFilesERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("KJmeNzmA6UM", eglInitialize) +STUB("KJoz6a9hUJQ", _ZN3JSC19HeapSnapshotBuilder13buildSnapshotEv) +STUB("KJtUHtp6y0U", sceHttpDbgShowConnectionStat) +STUB("KJtX25Q8qso", _ZN7WebCore8SVGNames13elevationAttrE) +STUB("KJtZG+ElX+k", uprv_free) +STUB("KJuLpwx9DRU", mono_debug_free_method_jit_info) +STUB("KJutwrVUFUo", _ZTSSt16invalid_argument) +STUB("KJw6rahYNdQ", sceUserServiceSetParentalBdAge) +STUB( + "KK+VIBWxpns", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEEC2Ev) +STUB("KK03u+6DkBU", curl_getenv) +STUB("KK3Bdg1RWK0", sceSaveDataDialogUpdateStatus) +STUB("KK6B72YC-js", sceKernelSwitchToBaseMode) +STUB("KK8Cr0wE81M", mono_class_get_property_from_name) +STUB( + "KKAsA9YWAsM", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "KKGxpAReQx0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE21intrusive_ptr_sub_refEPS9_) +STUB("KKIYSfpLino", _ZNK7WebCore12ChromeClient22isSVGImageChromeClientEv) +STUB("KKJqKiEnn9c", mono_threads_exit_gc_unsafe_region_unbalanced) +STUB( + "KKM08texpPQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEaSERKS9_) +STUB("KKMcykTUwnI", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle13perGenreIsSetEv) +STUB("KKNE1wLaEEk", _ZNK7WebCore19ResourceRequestBase11cachePolicyEv) +STUB("KKPpOmFdA-Q", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Error9unsetCodeEv) +STUB( + "KKXwSoX8NsU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("KKaarkWGxWI", sceCustomMusicSelect) +STUB("KKdrRaSLnoA", WKPageCopyCommittedURL) +STUB("KKgFmz4V2e8", WKPreferencesGetMediaPlaybackAllowsInline) +STUB("KKgUiHSYGRE", fgetln) +STUB("KKgxphVS9Jc", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEEixEm) +STUB( + "KKhk9jvv-5E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEC2EPKS8_) +STUB("KKpKiHTKYwU", pr5) +STUB( + "KL9MTUnT5+o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEC1Ev) +STUB("KLD7tPGEuWs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEE7get_refEv) +STUB( + "KLGp17JOEaE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEC1Ev) +STUB("KLHGwPPGQEA", _ZN9Inspector14FrontendRouterD1Ev) +STUB("KLIJsrNSZ98", _ZN3sce7Toolkit2NP2V28Commerce8CategoryD2Ev) +STUB("KLO-X+9zhy0", + _ZN3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator8fromJsonERKNS_4Json5ValueE) +STUB( + "KLQs6RvG95o", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEneERKS9_) +STUB("KLURO+vCOuY", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationProperties9setLeaderERKi) +STUB( + "KLZh24-59WY", + _ZN3JSC9Structure24addNewPropertyTransitionERNS_2VMEPS0_NS_12PropertyNameEjRiNS_15PutPropertySlot7ContextEPNS_41DeferredStructureTransitionWatchpointFireE) +STUB("KLaWCpRxYWo", FTA_Add_Module_psaux) +STUB("KLfd8g4xp+c", __floatuntisf) +STUB( + "KLjBtBI8rmE", + _ZN3sce2Np9CppWebApi7Matches2V133RequestTeamMemberStatisticFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_26RequestTeamMemberStatisticEEE) +STUB("KLkNQiwk6ek", mono_method_has_marshal_info) +STUB("KLm8fHOrzGs", sceIduUtilRegisterOverlayMsg) +STUB("KLmYx9ij2h0", scePadSetAngularVelocityBiasCorrectionState) +STUB( + "KLoR0ugEv68", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEeqERKS9_) +STUB("KLuj0cSFCEo", u_strCompareIter_67) +STUB( + "KLuqGBYXz08", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEplEm) +STUB( + "KLv+iL3LMuw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEC2EPNS2_10LibContextE) +STUB("KLwC9-FN8yo", + _ZN7WebCore21NetworkStorageSession38setCacheMaxAgeCapForPrevalentResourcesEN3WTF7SecondsE) +STUB( + "KLybAoVjoUU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE21intrusive_ptr_sub_refEPS9_) +STUB("KM0b6O8show", _ZNKSt5ctypeIwE8do_widenEPKcS2_Pw) +STUB("KM3HTLCv0tk", _ZN7WebCore4Page27enableICECandidateFilteringEv) +STUB("KM46OgyKMOs", _ZNK7WebCore17FrameLoaderClient22shouldPaintBrokenImageERKNS_3URLE) +STUB( + "KM4zCt65v7Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE6resizeEj) +STUB("KMAvzkTpsJo", _ZN3NTF5Cache16DiskCacheManagerD1Ev) +STUB("KMGUMPfAJo4", _ZN7WebCore17LibWebRTCProvideraSERKS0_) +STUB( + "KMHTK4tgjNI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "KMLy7auCJjs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEplEm) +STUB( + "KMPyVm3OU4o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEcvbEv) +STUB("KMXKX2BT6ik", WKPreferencesGetForceFTPDirectoryListings) +STUB("KMb+7uBgLfA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ResponseCooperativeResultEEmmEi) +STUB( + "KMbJkdAP2oc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEC1EPS8_) +STUB("KMcEa+rHsIo", sceAvPlayerAddSource) +STUB( + "KMh7t6XFPGc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEE11release_refEv) +STUB( + "KMkbYAn1WNo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEEC2ERSA_) +STUB("KMlHj+tgfdQ", sceNpTusSetTimeout) +STUB("KMlPItNRcZ4", freeaddrinfo) +STUB("KMm+ROloldM", mono_aot_Sce_Vsh_Np_AppInfounbox_trampolines) +STUB( + "KMpXp6iZnvQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEC1ERS7_) +STUB("KMsFaZJ94s0", _ZN19JITSharedDataMemory27shared_malloc_max_footprintEv) +STUB( + "KMw4NCMp5C8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEC1Ev) +STUB("KMx1YNQUM6M", _ZNK7WebCore13HitTestResult15spellingToolTipERNS_13TextDirectionE) +STUB( + "KN3-ZOYrE9c", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEEcvbEv) +STUB("KN3KH+ZEPzM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData9setslotIdEi) +STUB("KN4cVEN1fZk", _ZNSt10_Ref_countIN15AbstractStorage14FacebookFolderEE8_DestroyEv) +STUB("KN6UJcgVrI8", _ZN7WebCore19TextResourceDecoder6createERKN3WTF6StringERKNS_12TextEncodingEb) +STUB("KNBfNGQEiwE", sceHandTrackerSetDepthInfo) +STUB("KNLIYmXEthc", updatePacketSize) +STUB( + "KNN-YxZ37Yc", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToSetMultiVariablesByUser31getsetMultiVariablesRequestBodyEv) +STUB("KNNNbyRieqQ", _new_setup) +STUB("KNRiHsP-bNQ", _ZNKR3WTF6String12isolatedCopyEv) +STUB( + "KNRltrfBbD4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEEC2ERKSA_) +STUB("KNU+bdKmhWo", WKPreferencesGetTabsToLinks) +STUB("KNU8gGqixxw", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku9unsetTypeEv) +STUB("KNYVWv2B3yo", rgctx_fetch_trampoline_rgctx_59_p) +STUB( + "KNd2uCYHeZ4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEmmEi) +STUB("KNfo101eszA", sceVshAvcapOpenAudioEx) +STUB("KNgcEteI72I", _ZTSe) +STUB("KNggmcdqc2Q", sceNpGameIntentGetUdsNpComId) +STUB( + "KNkly-F-ZKU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEE7get_refEv) +STUB( + "KNpn5Ut32do", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE5beginEv) +STUB( + "KNpu9kVzuRU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEaSERKSA_) +STUB( + "KNvvXG6k7dE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEED2Ev) +STUB("KO+11cgC7N0", sceNpSetGamePresenceOnline) +STUB( + "KO8KRCup1ig", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "KOEg0z01ToA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("KOF-oJbQVvc", sceKernelAioWaitRequest) +STUB( + "KOHpeTlHdI4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEEC1ERKSA_) +STUB("KOJ4+zzhpAg", glClear) +STUB("KOUNvhctFPk", _ZN3sce2Np9CppWebApi6Common6VectorIiE8pushBackERKi) +STUB( + "KOX3vbzLkE8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEC2EPNS2_10LibContextE) +STUB("KOgTsORWgd4", _ZN7WebCore20PasteboardCustomDataD2Ev) +STUB("KOqdw3lXEhA", rgctx_fetch_trampoline_mrgctx_86) +STUB("KOtcp+Q+70k", _ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody13objectIdIsSetEv) +STUB( + "KOvar+tTfic", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE8pushBackERKS8_) +STUB("KOxWYkiprIY", _ZN7WebCore13AXObjectCache37setEnhancedUserInterfaceAccessibilityEb) +STUB( + "KOxpFenRS3k", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE5emptyEv) +STUB("KOy7MeQ7OAU", __opendir2) +STUB("KP+TBWGHlgs", sceRazorCpuJobManagerJob) +STUB("KP49fqmzEPY", _ZN3NTF17URLRequestDataJobD1Ev) +STUB( + "KP5mNSzvl9M", + _ZN9Inspector27DOMStorageBackendDispatcherC2ERNS_17BackendDispatcherEPNS_34DOMStorageBackendDispatcherHandlerE) +STUB("KP6q-p7tajM", _ZN9Inspector20InjectedScriptModuleC2ERKS0_) +STUB("KP9QZiIHxhE", unorm2_getCombiningClass_67) +STUB("KPB1Ar17BE0", _ZN3JSC20WriteBarrierCounters25usesWithoutBarrierFromCppE) +STUB("KPEyZyiVZbw", _ZN3JSC12BigIntObjectC2ERNS_2VMEPNS_9StructureE) +STUB("KPFb-NhG5Tk", _ZNK7WebCore15AffineTransform7mapQuadERKNS_9FloatQuadE) +STUB( + "KPFjufLcJYw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEC1ERS7_) +STUB("KPJLpACpg6k", _ZN7WebCore10FileHandleC1EOS0_) +STUB("KPJUghY5S6s", _ZN3JSC7Symbols27moduleEvaluationPrivateNameE) +STUB("KPKiV-WdIr8", _ZN3sce3Xml3Dom13invalidNodeIdE) +STUB("KPPJLasPz+o", WKPageGetImageForFindMatch) +STUB("KPRe4LDI+74", _ZN12video_parser16cVideoContentMp4D0Ev) +STUB("KPTOmlI7BKY", sceUserServiceSetVolumeForOtherDevices) +STUB("KPUMCAf9FF4", _ZNK3sce2Np9CppWebApi14SessionManager2V15Error16referenceIdIsSetEv) +STUB( + "KPjjwGIikik", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE7popBackEv) +STUB( + "KPn8mcor6C0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEaSERKS9_) +STUB( + "KPpsG0pyyvM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE6isBusyEv) +STUB("KPsQA0pis8o", llrintf) +STUB( + "KPwBtI9dmTE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEcvbEv) +STUB("KQ1OOHi3QHk", _ZN3WTF12AtomicString4initEv) +STUB("KQ34-uHDBto", _sceVideoRecordingQueryParam) +STUB("KQBnRItYXM8", sceNpGriefReportTerm) +STUB("KQFqO8W4q0Y", _ZN7WebCore11JSDOMWindowD1Ev) +STUB("KQFyDkgAjVs", sceSystemServiceIsShellUiFgAndGameBgCpuMode) +STUB("KQIkDGf80PQ", sceNpWebApiClearAllUnusedConnection) +STUB("KQKwuumknhs", + _ZN7WebCore10JSLocation10putByIndexEPN3JSC6JSCellEPNS1_14JSGlobalObjectEjNS1_7JSValueEb) +STUB("KQQs6vyEvUA", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge13ChallengeDataEED2Ev) +STUB( + "KQRlEuZVS4g", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEeqERKS9_) +STUB("KQSSDOhD9JQ", _ZN7WebCore11DisplayList25DrawDotsForDocumentMarkerD2Ev) +STUB("KQSxXJBepQ4", _ZN3sce2np9WorkQueue7EnqueueEiPNS0_8WorkItemE) +STUB("KQTHP-ij0yo", _ZNSt14numeric_limitsIaE6digitsE) +STUB("KQWgIemlSxA", uprv_free_67) +STUB("KQXyNTCycW0", sceAppInstUtilGetRestoreState) +STUB("KQYLX4tVLe4", sceNpManagerIntLoginAuthenticate) +STUB("KQYkMMjpnys", mono_aot_ReactNative_PUIjit_got) +STUB( + "KQZxbR4wzy4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEEptEv) +STUB( + "KQjXWAMYhrE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE5emptyEv) +STUB( + "KQo+o5H5dkw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEixEm) +STUB("KQst4J3zVJM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEED1Ev) +STUB("KQxuDpbldZs", sceSysUtilSendSystemNotificationWithAppId) +STUB("KQyCZtgkpMY", mono_property_hash_lookup) +STUB("KR+lNUwO7oo", _ZN7WebCore9endOfLineERKNS_15VisiblePositionE) +STUB("KR+z1N81beE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEdeEv) +STUB( + "KR0p1vms6uw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEppEi) +STUB( + "KR6LpO9JPtw", + _ZN3JSC8Debugger15updateCallFrameEPNS_14JSGlobalObjectEPNS_9CallFrameENS0_21CallFrameUpdateActionE) +STUB("KR6QDasuKco", sceImeDialogInitInternal) +STUB("KR88aWxMABE", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku17unsetDisplayPriceEv) +STUB("KRCpEy8Rx3g", rgctx_fetch_trampoline_rgctx_121_p) +STUB( + "KRJo+VSfLTg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE10setContextEPNS2_10LibContextE) +STUB("KRL-S9qBqXw", sceMbusGetDeviceInfoByCondition_) +STUB("KRN5aqJyv6g", il2cpp_class_get_assemblyname) +STUB("KRiPNCiwQLA", + _ZN7WebCore19JSDOMMatrixReadOnly15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("KRl8rZt7rts", _ZN7WebCore14JSWebAnimation9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB( + "KRn9puflxRQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEC1EPS8_) +STUB( + "KRqoOzNsceE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEC2Ev) +STUB("KRreBqZfUwY", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEED2Ev) +STUB("KRx9fvTrcAA", _ZN3sce7Toolkit2NP2V28Matching7Request23SetMembersAsRecentlyMetC2Ev) +STUB( + "KS1kM9siBZs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEE11release_refEv) +STUB("KS3seHdYUDw", _ZN7WebCore12JSTimeRanges15subspaceForImplERN3JSC2VME) +STUB( + "KSG1eCoKWVU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEC2EPKS8_) +STUB("KSJ6P7G9IbQ", _ZN3sce7Toolkit2NP2V27Session13SessionMemberD2Ev) +STUB( + "KSmoKhQexng", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEEaSERSA_) +STUB("KSp44htaaIM", _ZN3WTF24charactersToUInt64StrictEPKhmPbi) +STUB( + "KSqMunS-w1U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("KStgCIMZ4oY", _ZN7WebCore8SVGNames7textTagE) +STUB( + "KSxZKC5J7E4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEixEm) +STUB("KT-hTp-Ch14", sceAgcAcbAcquireMem) +STUB("KT082n6I75E", sceNpMatching2RegisterManualUdpSignalingCallback) +STUB( + "KT2joVAOOeI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEC1EPNS2_10LibContextE) +STUB("KT3+V4XYj7w", WKPageHandleKeyboardEvent) +STUB( + "KT4MocgLwKU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEC1EPKS8_) +STUB( + "KT8EMJ-V3y4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("KTCPKqvFTok", sceShellCoreUtilDeclareBeginOfExternalStorageAppMove) +STUB( + "KTKj82w52vU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEC2EPS8_) +STUB("KTLIkx65yc4", _ZN3sce7Toolkit2NP2V24Core17CustomRequestBase21setCustomFunctionTypeEi) +STUB("KTM62ug9nSg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS25AtomicAddToAndGetVariableEE3getEv) +STUB("KTNKiQiq0o8", WKUserContentExtensionStoreGetTypeID) +STUB("KTWURB53PQw", _ZN7WebCore14SchemeRegistry27shouldTreatURLSchemeAsLocalERKN3WTF6StringE) +STUB("KTXSrnDwkhU", monoeg_g_utf16_to_utf8) +STUB("KTijpWQ0zuc", _ZN7WebCore4Page27setVerticalScrollElasticityENS_16ScrollElasticityE) +STUB("KTkFIXpUuCg", sceAvControlIsVideoOutModeSupportedByMonitorInfo) +STUB( + "KTmfqKSLvyU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE3endEv) +STUB("KTn-RzgJJbc", _ZN3JSC7Symbols26BuiltinDescribePrivateNameE) +STUB("KTsymf0klEc", _ZN3sce7Toolkit2NP2V210Tournament15RegisteredUsers8deepCopyERKS4_) +STUB("KTvTkiNRlxA", mono_aot_I18N_Otherjit_got) +STUB("KU2mo6lIOgQ", _ZN3sce7Toolkit2NP2V24Core8ResponseINS3_18CustomResponseDataEE3setEv) +STUB("KUG9TYTe0kU", _ZN8Gigacage9tryMallocENS_4KindEm) +STUB("KUIRsku7EPk", sceNpLookupNetCreateRequest) +STUB("KUJtztDMJYY", _ZN3sce2np6HandleC1Ev) +STUB("KUMJF3eI5qg", _ZNK7WebCore18TextureMapperLayer9rootLayerEv) +STUB( + "KUPwdl27mSg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEptEv) +STUB( + "KUUD65AHP90", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("KUW22XiVxvQ", _ZTIPt) +STUB("KUYSaO1qv0Y", posix_spawnattr_getschedpolicy) +STUB( + "KUf41Uws3CI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEEC1Ev) +STUB( + "KUiiVZTERwU", + _ZN8meta_gen11MsvPromoter25setKeyValue_TBLV_EditableENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB("KUjtdPZJo5I", sceAmprAmmMeasureAmmCommandSizeMapDirectWithGpuMaskId) +STUB( + "KUnNpJBtTpM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE7reserveEi) +STUB("KUoZ8Us3uP4", _ZN9Inspector20InspectorTargetAgent19sendMessageToTargetERN3WTF6StringERKS2_S5_) +STUB("KUolTh2gQ8k", curl_formget) +STUB( + "KV2IgtAPxX0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEE7get_refEv) +STUB("KV2WBZkh2wA", _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi20ParameterToJoinMatch10getmatchIdEv) +STUB("KV3zZOl84xA", _ZN3sce2Np9CppWebApi11Matchmaking2V15Error14setReferenceIdEPKc) +STUB( + "KV5UdnYcVYY", + _ZN3sce2Np9CppWebApi12Leaderboards2V130RecordScoreResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_23RecordScoreResponseBodyEEE) +STUB("KV8Q4aVSLWI", _ZN7WebCore14ProcessWarming15prewarmGloballyEv) +STUB("KV9KxWm9lOQ", _ZN3sce7Toolkit2NP2V23TUS7Request19AddToAndGetVariableC2Ev) +STUB("KVDCpwJXoxw", scePs2EmuMenuDialogUpdateStatus) +STUB("KVEGkOFkk-A", mono_btls_ssl_set_cipher_list) +STUB( + "KVGDZ+RsHQQ", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeaders26unsetXPsnAtomicOperationIdEv) +STUB( + "KVGnbM2Fkgk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("KVIBeoIIX3o", _ZNK7WebCore14SecurityOrigin5equalEPKS0_) +STUB("KVJX+ztPuYI", _ZN7WebCore31CrossOriginPreflightResultCache5clearEv) +STUB("KVUeCjQZJEs", ucln_registerCleanup) +STUB("KVY7rLcxFig", _ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errorsD2Ev) +STUB("KVaiKJwBWxA", sceDataTransferTargetGetRebootData) +STUB("KVakS0vdGAk", _ZN12video_parser8cPDLUtil15AnalyzeMoovAtomEPKcPjPb) +STUB("KVbmKCGGowg", FT_QRealloc) +STUB("KVc6rsgeFNw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEE7add_refEv) +STUB("KVehJeKp2gE", WKBundleInspectorShow) +STUB( + "KVgwH99-pzU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEmmEi) +STUB( + "KVsDlowUmmg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "KVsxm8Vqfro", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEeqERKS9_) +STUB("KVtXOV0OSEo", ucnv_countStandards) +STUB("KVvM-cdU614", sceFiosDebugStatisticsPrint) +STUB("KVvPZx8-qI8", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEED2Ev) +STUB( + "KW3aBcv5DVc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB("KW5CiQ+4ggM", _Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm14TccPerfCounterE) +STUB("KW5JnX-5g-M", _ZN7WebCore17JSDOMRectReadOnlyC1ERKS0_) +STUB("KW5c3L4opsQ", _ZN7WebCore17JSDOMGlobalObject14finishCreationERN3JSC2VMEPNS1_8JSObjectE) +STUB("KW79RsF6cGE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEEcvbEv) +STUB("KWEMMPMT56w", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetail17setnpServiceLabelEi) +STUB("KWGLVItXyLI", _ZN12video_parser5vpcom5ChmodE) +STUB("KWHGDIIazQE", mono_aot_Sce_Vsh_Np_Snsunbox_trampolines_end) +STUB( + "KWN87aEDSd0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEC2EPS8_) +STUB( + "KWP7C+WQGUo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "KWR1lRjS0lA", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V138SetMultiVariablesRequestBody_variables9getSlotIdEv) +STUB("KWUeY5JdPC0", _ZN3JSC20AbstractModuleRecord8evaluateEPNS_14JSGlobalObjectE) +STUB("KWXH-ODiiOM", g_file_open_tmp) +STUB( + "KWYWEX8oU08", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEeqERKS9_) +STUB("KWYqIOv7gJk", _ZN9Inspector21CSSFrontendDispatcherC1ERNS_14FrontendRouterE) +STUB( + "KWZ++3nSFGE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEcvbEv) +STUB( + "KWaIysqOkZI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEEC2ERKSA_) +STUB("KWcGuZt8eNY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEE7add_refEv) +STUB("KWgiUk4hlnQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEC2ERS7_) +STUB("KWkc6Q3tjXc", sceNpWebApi2PushEventSetHandleTimeout) +STUB( + "KWm4ZZNxFNA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE10setContextEPNS2_10LibContextE) +STUB("KWw5CoeIIoE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEC2ERS7_) +STUB("KWwIUfLC-7k", _ZNK3sce2Np9CppWebApi11UserProfile2V112BasicProfile17getPersonalDetailEv) +STUB( + "KWwKlT9hDkc", + _ZN3WTF28normalizeLineEndingsToNativeEONS_6VectorIhLm0ENS_15CrashOnOverflowELm16ENS_10FastMallocEEE) +STUB("KWzkWy+5ZN4", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead21unsetCreatedTimestampEv) +STUB( + "KX-uUV+jHzQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEC1Ev) +STUB("KX2YkCpfU1k", _ZN3sce7Toolkit2NP2V27Session12SessionImageC1Ev) +STUB("KX4zrnzZ+xU", uregion_contains_67) +STUB("KX7EOXJ2sU0", _ZN3sce7Toolkit2NP9Utilities10FutureImpl5resetEv) +STUB("KXBnxqAeTuo", sceTextToSpeechInitImpl) +STUB("KXCpUqOBITM", __tsan_flush_memory) +STUB("KXMqfl+qPpU", _ZN7WebCore11FileChooserD1Ev) +STUB( + "KXNRl3L-ZzA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEE7add_refEv) +STUB("KXRozklP+Gc", _ZN3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMapD2Ev) +STUB( + "KXRsXZKZBf4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEED2Ev) +STUB("KXUpebrFk1U", sceFontOpenFontMemory) +STUB( + "KXX1AkJEFuY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEmmEi) +STUB("KXhNUtFALj4", scePktMgrPrepareUlpResPacket) +STUB( + "KXiIPJPkZ5A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEED2Ev) +STUB( + "KXj03PUzVAQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE7reserveEi) +STUB("KXj7+ueLvdo", _ZN7WebCore16DOMGuardedObjectD1Ev) +STUB("KXjpglDjSQg", usearch_openFromCollator_67) +STUB("KXllpv1tR48", _ZN3sce2Np9CppWebApi12Leaderboards2V14User7setPcIdERKi) +STUB("KXltnCwEJHQ", sceGnmSetCsShader) +STUB( + "KXmWCTY32js", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13integer9IsSetEv) +STUB("KXrjdb69+ng", mono_btls_x509_store_ctx_get_current_issuer) +STUB("KXs2NHxXF+Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEEC1EPS6_) +STUB("KXsx2C05JqA", sceNpEulaDialogInitialize) +STUB( + "KXwUL1ulsYw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE3endEv) +STUB( + "KXztnR5Y8LU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEEdeEv) +STUB("KY+yxjxFBSY", _ZTSSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE) +STUB("KY2CktBF-JY", _ZN18ScePssDecoderHevag19BufferedDecodeChunkEPKhjRjPsjS2_S2_) +STUB( + "KY324hFFehQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEE7get_refEv) +STUB( + "KY5GmG+ZsGA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEEdeEv) +STUB("KY6RXUXi6ZQ", sceBgftServiceDownloadStopTask) +STUB("KYBFFsmh0a0", sceApplicationSave) +STUB("KYCxXtE7N7w", _ZN3IPC15ArgumentDecoder6decodeERh) +STUB("KYICSuDQehA", _ZN7WebCore32useBlockedPlugInContextMenuTitleEv) +STUB("KYJPqbwNKNM", Java_java_lang_UNIXProcess_destroyProcess) +STUB("KYP4dz3-07c", udat_close_67) +STUB("KYRL0uRR90o", WKAXObjectCopyTitle) +STUB( + "KYU36JOpNzg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEEC1ERKSA_) +STUB("KYan1Hzj36c", _ZN3sce3Xml3Dom8Document11setWritableEv) +STUB("KYbFS0vO6qc", _ZN3sce2Np9CppWebApi10Activities2V114UserActivities8Activity13setActivityIdEPKc) +STUB( + "KYdbNrUtbrg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEppEi) +STUB("KYequxpcrV0", mono_config_is_server_mode) +STUB("KYfHQoyY9Uc", _ZN7bmalloc9Scavenger8scheduleEm) +STUB("KYhRsER-REQ", sce_pa_errno) +STUB( + "KYiDQVzpN5A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEmmEi) +STUB( + "KYmBAIcbj3s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEE3getEv) +STUB("KYvSdPcYv7o", _ZN7WebCore8SVGNames23color_interpolationAttrE) +STUB("KZ++filsCL4", _ZNKSt23_Generic_error_category7messageEi) +STUB( + "KZ+B6kY-quk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEC2EPKS8_) +STUB("KZ-4qlqlpmo", sigsuspend) +STUB("KZ0xIC-Ev2c", glCompressedTexImage2D) +STUB("KZ1Mj9yEGYc", sceNpGetAccountLanguage) +STUB("KZ2QQCkqaiA", png_set_shift) +STUB("KZ3qPyz5Opc", sceFontGraphicsSetupColorRates) +STUB( + "KZ9JMLm-7Ew", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEC1Ev) +STUB( + "KZBtepY6PKw", + _ZN9Inspector32DatabaseBackendDispatcherHandler18ExecuteSQLCallbackC2EON3WTF3RefINS_17BackendDispatcherENS2_13DumbPtrTraitsIS4_EEEEi) +STUB("KZF4xGSQH5c", _ZN7WebCore6ISOBoxC2ERKS0_) +STUB( + "KZFohfBOVEA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEaSERS7_) +STUB("KZG-hA-YYkc", _ZN3sce7Toolkit2NP11EntitlementC1Ev) +STUB("KZJ5ELP3rZo", _ZN3sce7Toolkit2NP2V29Messaging16GameDataMessagesC1Ev) +STUB("KZKA1qEWr+A", mono_profiler_install_code_chunk_new) +STUB( + "KZM7A2krDiM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEneERKS9_) +STUB( + "KZNBpKBfTzA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEC2Ev) +STUB( + "KZO0uIYCkPU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE7reserveEi) +STUB( + "KZUR2Pq+Omw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEEaSERKSA_) +STUB("KZUuOLlc4+E", _ZN3JSC11ProxyObject14finishCreationERNS_2VMEPNS_9ExecStateENS_7JSValueES5_) +STUB("KZVnrYipjII", _ZN3NTF21URLRequestFormElementD1Ev) +STUB("KZbHx6nNRQw", _m_key1) +STUB("KZbMDbQ7SB4", fuse_opt_add_opt) +STUB("KZchfealTT4", blockpool_unmap) +STUB("KZhIacsyBFY", + _ZN3sce2Np9CppWebApi13InGameCatalog2V517ContentDescriptorC1EPNS1_6Common10LibContextE) +STUB("KZm8HUIX2Rw", wcscat) +STUB( + "KZrrXByn58I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEED1Ev) +STUB("KZs6GUNKT4s", _ZN3JSC7Symbols38hostPromiseRejectionTrackerPrivateNameE) +STUB("KZtsnajJlPk", JVM_GetMethodIxByteCodeLength) +STUB("KZu4-aZ9VH4", rgctx_fetch_trampoline_mrgctx_25) +STUB("Ka-tCFE2G84", WKPreferencesSetRemotePlaybackEnabled) +STUB( + "Ka7dkog5hLQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEC1EPS8_) +STUB("KaA3zZO2-rM", WKPreferencesSetForceEnableVideo) +STUB("KaBSJa6nI+o", + _ZN7WebCore11JSDOMMatrix15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB("KaCBnJeelrE", mono_btls_ssl_set_verify_param) +STUB("KaK52lYTBIs", execv) +STUB("KaOJiDrykP8", sceDebugGetUltSemaphoreInfo) +STUB("KaPL3fbTLCA", sceRudpWrite) +STUB( + "KaQpqo6lqow", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("KaT6xb5qAEI", _ZN3sce7Toolkit2NP2V211SharedMedia10BroadcastsC2ERKS4_) +STUB( + "KaTORtGQQVw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEC2ERS7_) +STUB( + "KaUBHyFoSm4", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("KaUFjN7Vu+s", _ZN9Inspector27AnimationFrontendDispatchernwEmPv) +STUB("KaUqkpGhd5c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEED1Ev) +STUB("KaZ3xf5c9Vc", _ZN10__cxxabiv129__pointer_to_member_type_infoD1Ev) +STUB("KaZdCZRexB4", YGPrintOptionsToString) +STUB( + "KadPb+xSU-8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEC1Ev) +STUB( + "KaiK0p0FvmQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB("KakUxik9aqE", sceGicGetValue) +STUB( + "Kal9pULv7XM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEeqERKS9_) +STUB( + "KanXmz-cpzE", + _ZNK3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody21getLargeDataSizeLimitEv) +STUB( + "Kaq9RDKrYQ4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEC1EPS8_) +STUB( + "Kat2hLuF6Xs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEeqERKS9_) +STUB("KawLzB9gNHA", ucol_getAvailable_59) +STUB("KawS4Ly+geA", _ZNK3WTF10StringImpl14concurrentHashEv) +STUB( + "KawlHOGfPNw", + _ZN3sce2Np9CppWebApi13InGameCatalog2V515ContainerRating8setCountERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_20ContainerRatingCountEEEEE) +STUB("Kaxclf880Qk", _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE3endEv) +STUB( + "Kayx4yBLiJ4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("Kb+quP8eH5A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEC2Ev) +STUB( + "Kb+zDibixVs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE8copyFromERKS9_) +STUB("Kb1aK4XRj7I", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEE7get_refEv) +STUB("Kb1fMFCC-BM", _ZN3WTF15charactersToIntEPKhmPb) +STUB("KbACtwkLVlg", _ZN3sce7Toolkit2NP27ReceiveInGameMessageRequestC1Ev) +STUB("KbH6XiiluUs", _ZN7WebCore22EmptyFrameLoaderClient22provisionalLoadStartedEv) +STUB( + "KbQjJ0yVvOk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEE7add_refEv) +STUB( + "KbUTwoqQ6aM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEptEv) +STUB( + "KbUcVYkf01M", + _ZN7WebCore14SchemeRegistry57removeURLSchemeRegisteredAsBypassingContentSecurityPolicyERKN3WTF6StringE) +STUB("Kbat-vp1Y1g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEppEv) +STUB("Kbe+LHOer9o", _ZNKSt5ctypeIwE11do_scan_notEsPKwS2_) +STUB("KbeBjjWXFiU", + _ZN7WebCore19MediaQueryEvaluatorC1ERKN3WTF6StringERKNS_8DocumentEPKNS_11RenderStyleE) +STUB("Kbexb6kz+D0", _ZN10Deprecated25ScriptCallArgumentHandlerD1Ev) +STUB( + "KbkT3LkXNWc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEC1EPS8_) +STUB("Kbkk1pQWhN4", sceNpTrophy2SystemRemoveAll) +STUB("KblnYfZ5AGM", sceMusicPlayerServicePlay) +STUB("KbmhgE2eEEg", il2cpp_object_unbox) +STUB("KbmwmZUeE7o", _ZN7WebCore9CookieJarD1Ev) +STUB("KbpbxP8VROA", rgctx_fetch_trampoline_rgctx_83_p) +STUB("KbrWG6wNosM", _ZN7WebCore11DisplayList8FillRectD2Ev) +STUB("Kc+3QK84AKM", sceNpScoreGetRankingByAccountIdForCrossSaveAsync) +STUB( + "Kc04F0D2TFI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEEC2Ev) +STUB("Kc4x2uy0FFk", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product7getSkusEv) +STUB("Kc5iNPK+E78", WKStringGetMaximumUTF8CStringSize) +STUB("Kc7h1XZWQBQ", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEE7add_refEv) +STUB("Kc8KQ-sG2uA", sceSystemServiceGetSubAppTitleIdForSP) +STUB("KcAJ-JrL2+c", _ZN3WTF10StringImpl4findEPFbDsEj) +STUB( + "KcF2fYOtXew", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEEptEv) +STUB( + "KcJR4yp5yts", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE8capacityEv) +STUB("KcLvweRUpOk", _fcloseall) +STUB("KcM3hjvpqcc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEdeEv) +STUB("KcP38dakzls", _Z36sceRazorGpuThreadTraceEnableCountersPN3sce3Gnm17DrawCommandBufferE) +STUB("KcPayBFYTDc", _ZN3sce3pss4core9threading4CondC2ERNS2_5MutexEPKci) +STUB("KcZzE5h0OBA", sceMbusDisableChat) +STUB("Kcb+MNSzZcc", _ZNSt12out_of_rangeD1Ev) +STUB("Kcev9l9zc3I", _ZN7WebCore21convertToIntegerClampIhEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB("KchFGsYSOX4", sceVnaSetVoiceOskOptInStatus) +STUB( + "KcnkcsKSCQo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEE11release_refEv) +STUB("KcnlC2XG-ZE", mono_aot_Sce_Vsh_ErrorDialogUtilWrapperjit_code_end) +STUB( + "Kcp1RfiZoec", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEEC1ERKSA_) +STUB( + "KcqxzLUCYNc", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayer35setxPSNSESSIONMANAGERNONPSNCALLERIDEPKc) +STUB("KcsG+O4IWSU", _ZN7WebCore8Settings17setPluginsEnabledEb) +STUB("KcsPAYEU960", AnnotateIgnoreWritesEnd) +STUB("Kcsi2Y+ZPEw", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V115NatConnectivityC2EPNS1_6Common10LibContextE) +STUB("Kct67JaDmkY", sceSocialScreenSetIgnoreSeparateMode) +STUB( + "KcuwAtn5g7g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEED1Ev) +STUB( + "Kcv41mQHyKM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEEptEv) +STUB("KczZ-oYJWig", _ZNK7WebCore14StaticNodeList6lengthEv) +STUB("Kd+yyekmbjg", _ZN9Inspector18InjectedScriptBaseC1ERKS0_) +STUB("Kd0LYm4o0I0", _ZN7WebCore17NowPlayingManagerdlEPv) +STUB("Kd27z0vXe10", _ZN3sce7Toolkit2NP2V29Messaging24GameDataMessageThumbnailD1Ev) +STUB("Kd2o7aMyRAo", _ZN3sce7Toolkit2NP2V212EventsClient5EventC1Ev) +STUB("Kd9s4dhbip8", UI_get_string_type) +STUB("KdAc8glk2+8", _Tls_setup__Wctype) +STUB( + "KdBhqWwkICk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE3endEv) +STUB( + "KdFLaaVVY9s", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEC2Ev) +STUB("KdN6-6FV5YQ", _ZN3sce7Toolkit2NP2V26Friend15FriendsOfFriendC2ERKS4_) +STUB("KdP-nULpuGw", fgets) +STUB( + "KdQGlb1pipE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEdeEv) +STUB("KdQXdHK6YPg", _ZNK3sce3Xml3Dom4Node16getOwnerDocumentEv) +STUB("KdZvR4JTG-c", WKGrammarDetailCreate) +STUB("KddNzNAyySc", _ZN3JSC41DeferredStructureTransitionWatchpointFireC2ERNS_2VMEPNS_9StructureE) +STUB("KdhwRiCn9HE", _ZThn120_N7WebCore16HTMLMediaElement16returnToRealtimeEv) +STUB("KdkNXmhyLOM", _ZN7WebCore8Settings29setAsyncFrameScrollingEnabledEb) +STUB("KdlZsMZEy1s", jpeg_idct_6x6) +STUB( + "KdnLMGh3UXc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("KdoemZ8qogY", _ZN15AbstractStorage13YoutubeFolderD2Ev) +STUB("KdsYslQfES8", mono_type_get_type) +STUB("KdvFp7l2qhA", sceMbusDumpHandleStatusInfoAll) +STUB( + "KdvbPxygPGk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEdeEv) +STUB("KdvkiSa4BXU", _ZN3sce7Toolkit2NP2V26Friend15FriendsOfFriendD2Ev) +STUB("KdxtVUZ-nyY", _ZN3WTF6ThreadD1Ev) +STUB("Kdycxbun5PA", + _ZN3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession8fromJsonERKNS_4Json5ValueE) +STUB("Ke-EQFve6sw", JSValueIsStrictEqual) +STUB("Ke-FEUbCsaU", _ZN3sce2np13JsonDocParser10initParserEv) +STUB("Ke2gIV4Q7+w", _ZN3JSC12StackVisitorC1EPNS_9CallFrameERNS_2VME) +STUB("Ke5OOCaB8d4", _ZN3sce2Np9CppWebApi14SessionManager2V127GetGameSessionsResponseBodyD2Ev) +STUB( + "Ke8NiesmBns", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEC1Ev) +STUB("KeBee2k5Re8", WKPreferencesGetSourceBufferChangeTypeEnabled) +STUB("KeC2-9FgNPM", + _ZN7WebCore14SchemeRegistry35registerURLSchemeAsCachePartitionedERKN3WTF6StringE) +STUB( + "KeGvbvzJDgU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEE5resetEPS9_) +STUB("KeJYMD2gPAE", izrule_clone_67) +STUB("KeK0jSSrBXA", mono_btls_x509_lookup_load_file) +STUB("KeOZ19X8-Ug", _Cosh) +STUB("KePwFKtrQ1E", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEEC2Ev) +STUB( + "KeQgZ7rj+bQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEE11release_refEv) +STUB("KeRehDbLCpw", _ZN3sce2np9JsonValue9GetObjectEv) +STUB( + "KeT-yfNKCbo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEixEm) +STUB("KeY5CX6MR1c", Java_java_lang_reflect_Array_getBoolean) +STUB("Kej6In9zyVk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE5clearEv) +STUB("KelUW3k13DU", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V219WebApiErrorResponse6toJsonERNS_4Json5ValueEb) +STUB( + "Kenjzm9IYBM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEEaSERKSA_) +STUB("KeqvhF68fXk", _ZN12video_parser5vpcom3rtc14TickAddMinutesEPmPKml) +STUB( + "Keudl39+No0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEmmEi) +STUB("KezpxMeDOOU", uloc_getCountry_67) +STUB("Kf10sqhOoRY", sceKernelRtldControl) +STUB("Kf1zhg0rDdk", __tsan_read_range_pc) +STUB("Kf7ZT3OOekI", sceNpIpcWaitRequest) +STUB( + "KfCkq5bmAe8", + _ZN7WebCore13JSDOMRectListC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_11DOMRectListENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "KfDFnoCdfLw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEC1EPKS8_) +STUB( + "KfFEtFKnPXg", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessions31setxPSNSESSIONMANAGERACCOUNTIDSEPKc) +STUB( + "KfG+LjB0+js", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEE21intrusive_ptr_add_refEPS7_) +STUB("KfGOHm3Eikw", _ZN7WebCore4Page26clearWheelEventTestMonitorEv) +STUB("KfGZg2y73oM", sceNpCheckNpReachability) +STUB( + "KfIyMYjj1PY", + _ZN8meta_gen11MsvPromoter25setKeyValue_TBLAVC_HeightENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB( + "KfJmigH8dXc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEE11release_refEv) +STUB("KfKBG2h2KdM", _sceLibcMspaceReallocalign) +STUB( + "KfLzRLJd85c", + _ZN7WebCore21SerializedScriptValue11deserializeERN3JSC14JSGlobalObjectEPS2_NS_22SerializationErrorModeE) +STUB( + "KfR9ncIMoSg", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScore25getrecordScoreRequestBodyEv) +STUB("KfRNHvUILRQ", sceAvSettingDebugGetDetailedHdcpStatus) +STUB("KfVckn-hXxk", jpeg_idct_islow) +STUB("KfZoLeooz28", _ZThn16_N9Inspector22InspectorDebuggerAgent6resumeERN3WTF6StringE) +STUB("KfcTPbeaOqg", _ZTVSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE) +STUB("KfgXwyWcNMg", _ZN3WTF8JSONImpl5Value6createEPKc) +STUB("KfpqmLwti6U", _ZN7WebCore17SQLiteTransaction5beginEv) +STUB("Kfrnl4-MCyU", mono_aot_Sce_Vsh_Themejit_code_start) +STUB("Kfv9jPxf7qA", _ZN3sce2np14JsonDocBuilderD1Ev) +STUB("Kfz+Xg4hJiA", + _ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody15getWaitsForDataEv) +STUB("Kg+cTa1MwtM", _ZN3WTF14FileSystemImpl12fileMetadataERKNS_6StringE) +STUB("Kg1H2-GW5vw", mono_metadata_free_array) +STUB("Kg1MA5j7KFk", sceNgs2FftInit) +STUB( + "Kg1U7CAbtio", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB("Kg2k4EHfqn0", AnnotateMutexIsUsedAsCondVar) +STUB( + "Kg51d2uVpro", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEC1EPS8_) +STUB("Kg5bKP3H6JY", _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody10unsetUsersEv) +STUB("KgEiWSn56Eg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE8capacityEv) +STUB("KgJToBpwViI", _ZN7WebCore9HTMLNames13aria_busyAttrE) +STUB( + "KgKDcCE4t8g", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEiRNS2_10LibContextEPT_m) +STUB("KgPtBJdBW-Q", Java_com_sun_havi_ui_FreeTypeFontFace_pIsCharAvailable) +STUB("KgQLdQ0w2r0", _ZN7WebCore18JSHTMLImageElement14finishCreationERN3JSC2VME) +STUB("KgiP4j-yQmI", _ZN3sce7Toolkit2NP2V210Tournament17OfficialBroadCastD1Ev) +STUB("Kgk1kkr5Zi0", _ZN7WebCore7Element18setAttributeNodeNSERNS_4AttrE) +STUB("KgkTT8H4vcs", + _ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody23userCenteredAroundIsSetEv) +STUB("KgnIbDX+l+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEEC1ERS9_) +STUB("KgzBbi3DUDA", _ZNK3sce3Xml4Attr7getNameEv) +STUB("Kgzdad6zFKE", YGDirectionToString) +STUB("Kh-3sEIzTyM", sceApplicationRestore) +STUB("Kh-g69HFYZ8", + _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetail17hasnpServiceLabelEv) +STUB("Kh-kcKPoH4s", rgctx_fetch_trampoline_rgctx_96_p) +STUB( + "Kh-n9NSOQT4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEC2EPS6_PNS2_10LibContextE) +STUB("Kh-t1fmxMnE", sceFsSetClusterCacheSize) +STUB( + "Kh1b7YMCB0Y", + _ZN3sce7Toolkit2NP11UserProfile9Interface14getCountryInfoEPNS1_9Utilities6FutureINS1_11CountryInfoEEEPKNS1_18UserProfileRequestEb) +STUB( + "Kh4OU-xB6YA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE7popBackEv) +STUB("Kh5AHixZrSo", _ZN3sce7Toolkit2NP2V212ActivityFeed13UsersWhoLikedC1ERKS4_) +STUB("Kh6bS2HQKbo", sceHttpSetCookieRecvCallback) +STUB("Kh8dZZS0u0k", _ZNK3sce7Toolkit2NP15AppSTLAllocatorIcE8max_sizeEv) +STUB( + "Kh9F6Q-uutQ", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorI16SceNpTusVariableNS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv) +STUB("KhEp8eXn0SI", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_28ActivityFeedSharedVideoStoryEEC2ERKS4_) +STUB("KhG5XEHZYsM", _ZN7WebCore20PasteboardWriterDataC1Ev) +STUB( + "KhN0dL9tnTM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEdeEv) +STUB("KhNPclgFOIM", WKWebsiteDataStoreStatisticsSubmitTelemetry) +STUB( + "KhNcU-iEEbw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEppEi) +STUB( + "KhOI4fwt80Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEEC1ERSA_) +STUB("KhQxhlEslo0", sceNetDhcpGetAutoipInfo) +STUB("KhR7n5Pphnw", WKWebsiteDataStoreSetResourceLoadStatisticsPrevalentResourceForDebugMode) +STUB("KhW-ubugVb8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEEC2ERKS7_) +STUB("KheIhkaSrlA", _ZNKSt7codecvtIwc9_MbstatetE16do_always_noconvEv) +STUB( + "Khf1b62Ldq0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE7popBackEv) +STUB( + "Khg0+ON0SXU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEEC2EPS8_PNS2_10LibContextE) +STUB("KhiuXZEixEo", _ZN7WebCore8Document10importNodeERNS_4NodeEb) +STUB( + "KhlqoDmvtCA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEC2EPS8_) +STUB("Khlt38metko", WKPageIsPlayingAudio) +STUB("KhoD7EapiYI", _ZN3sce2np4Time10AddMinutesEl) +STUB( + "Khrrt30Ao44", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEC1Ev) +STUB("KhsGgv1+YrE", ucol_setMaxVariable_67) +STUB("Khws8dt04Sk", _ZN7WebCore18PlatformPasteboardC1ERKN3WTF6StringE) +STUB("KhymfIzaujY", + _ZN9Inspector22InspectorDebuggerAgent19asyncCallIdentifierENS0_13AsyncCallTypeEi) +STUB("Ki0MvF8XNCk", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessionsD1Ev) +STUB( + "Ki9nbug7ysY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEE7get_refEv) +STUB("KiJEPEWRyUY", sigaction) +STUB( + "KiKhh5i9kwU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "KiM12cTEI+Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE21intrusive_ptr_sub_refEPS9_) +STUB("KiM4fXv6lcE", ubidi_setInverse_67) +STUB( + "KiRVPus6Q50", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEeqERKS9_) +STUB("KiVRUg0kPBM", u_isgraph_67) +STUB( + "KiX+UIzf3j8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEE11get_deleterEv) +STUB("KiXYNfe7r9o", sceNpPush2SendPushStatisticsDataSystemTelemetry) +STUB( + "KiahCGGQryM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEC2ERS7_) +STUB( + "KiawwWkx6EA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEC1EPS6_PNS2_10LibContextE) +STUB( + "Kid72bvN5ak", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE3endEv) +STUB("KidC5apWSEo", sceKernelStreamWriteActivate) +STUB("Kidh9uvn1J4", ERR_load_crypto_strings) +STUB("Kidpo7VIQZg", mono_code_manager_invalidate) +STUB( + "KiiWuEIL1fc", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountId15getasOfDateTimeEv) +STUB("Kilc1JNmtXE", _ZN3sce2Np9CppWebApi14SessionManager2V124PlayerSessionPushContextD2Ev) +STUB( + "KimurMtNHlc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEC1EPS6_PNS2_10LibContextE) +STUB("KirVfZbqniw", sceNetThreadExit) +STUB( + "KitQxBdKz2M", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("Kiwv9r4IZCc", sceHttpCreateConnection) +STUB( + "Kixz3wprVbE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEEC2ERKSF_) +STUB("KiyYSAL94tA", _ZN3JSC14setNeverInlineEPNS_9ExecStateE) +STUB( + "Kj+ViKQdC0I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEED2Ev) +STUB("Kj28M63p0NI", _ZN9Inspector20CSSBackendDispatcherD1Ev) +STUB("Kj4nXMpnM8Y", sceFiberStopContextSizeCheck) +STUB("KjA4JEfO6zA", ERR_error_string) +STUB("KjAjcg3W7F8", sceNpPush2Term) +STUB("KjDDu4tYcyk", _ZN7WebCore29PerspectiveTransformOperationD2Ev) +STUB("KjFT+rXFyZs", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils13NetStateBasicEE3getEv) +STUB("KjJ-g2nVTa8", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS16FriendsVariablesEE3setEv) +STUB("KjKWaEacHq8", _ZN7WebCore9HTMLNames6dfnTagE) +STUB("KjNeZ-29ysQ", sceNpWebApiSendRequest2) +STUB( + "KjO9tOd1MEA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEmmEv) +STUB( + "KjPIZlsp-n4", + _ZN3sce2Np9CppWebApi14SessionManager2V149PutGameSessionsSearchAttributesRequestBodyFactory7destroyEPNS3_42PutGameSessionsSearchAttributesRequestBodyE) +STUB("KjPeVduz6jU", sceAgcDcbPrimeUtcl2GetSize) +STUB("KjSqwnyojRw", WKBundleSetPageVisibilityState) +STUB("KjW6KDcAnuA", _ZN3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator12setAccountIdERKm) +STUB("KjXpVcQXaYc", _ZN3sce2np8NpTicketD0Ev) +STUB("KjfjFCr-FwY", _ZN7WebCore5Frame17injectUserScriptsENS_23UserScriptInjectionTimeE) +STUB("KjhVL0bWpjM", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEEcvbEv) +STUB("Kjjh+xfQM2U", + _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody16unsetRulesetNameEv) +STUB( + "KjlHGEbsjaw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE3endEv) +STUB("KjmJPFRWxv8", _ZN3JSC8Debugger9callEventEPNS_9ExecStateE) +STUB("Kjnf0JIZhoI", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession19unsetExpirationTimeEv) +STUB("Kjq3MUK1Was", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEEptEv) +STUB("Kjue4SKgkuM", ucol_openBinary_67) +STUB("Kk0eIncAb40", sceSdmaMapUserVAddress) +STUB( + "Kk1+VE2MbuQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEeqERKS9_) +STUB("Kk1mPmCyrME", _ZN3JSC2VM22debuggerScopeSpaceSlowEv) +STUB("Kk4QlGJ+xZs", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatusC1EPNS1_6Common10LibContextE) +STUB("Kk6y25QoAZY", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEEixEm) +STUB("Kk9wy--VFwo", WKContextSetPrimaryWebsiteDataStore) +STUB("KkCa8NusMEU", _ZNSbIwSt11char_traitsIwESaIwEEaSEOS2_) +STUB( + "KkJC+qYM0Bc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEEC2ERKSA_) +STUB( + "KkKlbyE7m78", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot9hasoffsetEv) +STUB( + "KkLCnmV7ehs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEmmEv) +STUB("KkQWf6HzHrQ", uhash_equals) +STUB( + "KkXw5iwhfjo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEC1ERS7_) +STUB( + "KkYadbu5k5o", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB( + "KkcYvKmy8cM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE21intrusive_ptr_add_refEPS9_) +STUB("KkcyBpHeV6Q", sceCesMbcsStrGetUtf16Len) +STUB("KkdDDm70AMY", _ZN3WTF11Persistence7Encoder14encodeChecksumEv) +STUB("KkdnVtWcogE", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getBoolean5Ev) +STUB("Kkgg8mWU2WE", _WPuttxt) +STUB("KkhdeVCyo6Y", sceAudiodecCpuInternalInitDecoder) +STUB( + "KklEseLms-U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEE11release_refEv) +STUB( + "KkmXepLpnRg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEC1EPS8_) +STUB("Kky+pXcoHFY", _ZN7WebCore18TextureMapperLayer16setMasksToBoundsEb) +STUB( + "Kl-SzWbQ-Sk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("Kl-TbrDU9YM", sceFiosFHWriteSync) +STUB("Kl0Z3LH07QI", sceGnmLogicalTcaUnitToPhysical) +STUB("Kl4-xz27q40", _ZNK15AbstractStorage14FacebookFolder13GetCapabilityEv) +STUB( + "Kl7W-nTYdBM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE21intrusive_ptr_add_refEPS9_) +STUB("Kl9aRhwtXBM", sceSysUtilSendSystemNotificationWithUserNameInfo) +STUB( + "KlBkt4lpi2Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE5emptyEv) +STUB("KlDbs94HbnA", Java_java_lang_SecurityManager_currentLoadedClass0) +STUB("KlEYv40LnDY", _ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody13locationIsSetEv) +STUB( + "KlHru9x4veY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEaSERKS9_) +STUB( + "KlHvSkqHNh8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE3endEv) +STUB("KlRDG7pC24w", _ZN7WebCore7Element9setPseudoERKN3WTF10AtomStringE) +STUB("KlantyMjg4g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEppEi) +STUB("Kldlmzst-Yc", _ZN7WebCore24decodeURLEscapeSequencesERKN3WTF6StringE) +STUB("KleASq-sCZY", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification16FriendlistUpdateEED1Ev) +STUB( + "KliDGgkKD-0", + _ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody13setSearchableERKb) +STUB("KliQ-mvV3Y0", _ZNK3WTF9MediaTimeplERKS0_) +STUB("KljhnbDl6I8", _ZN3WTF9dayInYearEdi) +STUB( + "KlnrFPwhhqI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEE11get_deleterEv) +STUB("KlpVs+cuiKk", WKWebsiteDataStoreIsStatisticsRegisteredAsSubresourceUnder) +STUB("KlqCb-hh5jo", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking10UsersRanksEE3getEv) +STUB("Km7hnD3lKM8", _ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody10getCommentEv) +STUB( + "Km9IeqR8Yv4", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getBoolean3Ev) +STUB("Km9L-W0KqIs", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE6resizeEj) +STUB("KmB93+0Mmm0", _ZN7WebCore14JSWebAnimation4infoEv) +STUB( + "KmDSMezsbGo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE21intrusive_ptr_add_refEPS9_) +STUB("KmGMb0vPPB0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE3endEv) +STUB( + "KmJiMwOy2EQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEEcvbEv) +STUB("KmN62tT4U8A", sceNpUniversalDataSystemGetStorageStat) +STUB( + "KmQXzuTUKSU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEE7get_refEv) +STUB("KmUbPP3aSEQ", mono_aot_SMDiagnosticsunbox_trampoline_addresses) +STUB("KmZb7Z-WTxg", __tsan_read1) +STUB( + "KmfNK+L6WZc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("KmfpnwO2lkA", _Touptab) +STUB( + "Kmjb-2+TYDY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE21intrusive_ptr_sub_refEPS9_) +STUB("KmnzivWo2xk", sceCesUtf16beToUhc) +STUB( + "KmvGLgh58bs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEaSERKS9_) +STUB("Kn0eVHQ8lFk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEE7get_refEv) +STUB("Kn5YBcFnXD8", _ZN3JSC7Symbols13speciesSymbolE) +STUB( + "KnBglB-KXTA", + _ZN3sce7Toolkit2NP7Friends9Interface12getBlockListEPNS1_9Utilities6FutureISt6vectorINS1_6NpUserENS1_15AppSTLAllocatorIS7_EEEEEPKNS1_22BlockedListInfoRequestEb) +STUB("KnCMTTJWLdg", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry20getHighestSerialRankEv) +STUB("KnCfheGONas", sceNpGriefReportDeleteTicketData) +STUB("KnIv2Ehxegc", _ZN7WebCore17HTMLCanvasElement9toDataURLERKN3WTF6StringEN3JSC7JSValueE) +STUB("KnJJQjrLyWc", Java_com_sony_bdjstack_javax_media_controls_SoundManager_getPanningLR) +STUB("KnNA1TEgtBI", sceNpScoreCreateNpTitleCtx) +STUB("KnOXRM1i6KM", sceNpPush2OptionalCheckCallback) +STUB("KnQ5SdQ4FxU", _ZN7WebCore11DisplayList20FillRectWithGradientD2Ev) +STUB( + "KncijCmcEsk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser7setsortENS5_4SortE) +STUB("KnhTdl8Arjw", sceAppInstUtilAppGetInsertedDiscTitleId) +STUB("KnldROUkWJY", sceGnmGetNumTcaUnits) +STUB("Knnq2wiIFDE", _ZNK7WebCore25BackForwardItemIdentifier7isValidEv) +STUB("KnsfHKmZqFA", sceShareUnregisterContentEventCallback) +STUB("KnwgxyX0dKU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEEC2ERKS7_) +STUB( + "Knz775Hm5fw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEE11release_refEv) +STUB( + "Ko3BJrVcfrk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE8pushBackERKS8_) +STUB("Ko3uVv592-0", _ZN8meta_gen14ImageRetriever13SetBaseValuesEP27FilePromoteInnerInformation) +STUB("Ko4uJg5vRxQ", mono_string_new_utf16) +STUB( + "Ko4wz2SoPP0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("Ko8fB-6YDp8", sceAvSettingNotifyProcessSuspend) +STUB( + "Ko9L-U5CNcY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEC1ERS7_) +STUB("KoEZalvDago", _ZN3sce7Toolkit2NP2V27Ranking7Request15GetFriendsRanks8MAX_PCIDE) +STUB( + "KoINSmJueAM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEE11get_deleterEv) +STUB("KoJK1n4dwBE", unorm_isNormalizedWithOptions_67) +STUB("KoLOdQb0LSs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEixEm) +STUB("KoNIyv18TCU", _ZN12video_parser5vpcom6StringC1EPKc) +STUB( + "KoPQBLvkW48", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEC2Ev) +STUB( + "KoW+Tks8LjY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEC1EPS6_PNS2_10LibContextE) +STUB( + "KoXnQhmHAYk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEEC1EPS8_PNS2_10LibContextE) +STUB("KooB8zcw25I", g_JSWebAssemblyCodeBlockPoison) +STUB("Koq-Aaiwd3w", _ZN7WebCore8SVGNames9styleAttrE) +STUB("Koq9Z-B4jcQ", _ZN15AbstractStorage10YoutubeAPIC1Ev) +STUB("Koswc4Sp+N4", WKPageCopyUserAgent) +STUB( + "KotAMcjr1-Q", + _ZN3sce2Np9CppWebApi12Leaderboards2V120ErrorResponseFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_5ErrorEEEPNS8_INS3_13ErrorResponseEEE) +STUB("KovqaFbmtsM", sceAcm_FFT) +STUB("Kp3vVYSOEpg", _ZN3JSC16globalParseCountE) +STUB( + "Kp43-Nl5kYM", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer41unsetxPSNSESSIONMANAGERREQUESTEXACTORIGINEv) +STUB( + "Kp465Q-Q-FE", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeaders15setLastModifiedERKNS1_6Common6StringE) +STUB("Kp6juCJUJGQ", sceHttpSetCookieMaxNumPerDomain) +STUB("Kp6s44X0apU", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container14unsetPlatformsEv) +STUB("Kp9HNIoMtOg", _ZTVN9Inspector22AuditBackendDispatcherE) +STUB("KpBKoHKVKEc", sceAudioInExtInput) +STUB("KpCv0rernZQ", sceKernelAddACInfo) +STUB("KpDMrPHvt3Q", module_stop) +STUB("KpFK6YNWRCY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEC2ERS7_) +STUB("KpJXyTP7N7Y", WKContextClearCachedCredentials) +STUB("KpKkyRanFJE", ucasemap_toTitle_67) +STUB( + "KpN1DSM89TA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("KpNlWURZZ2k", _ZN3JSC7Symbols17RegExpPrivateNameE) +STUB( + "KpTVnt-DHo8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEneERKS9_) +STUB("KpbPWzWAgCM", _ZN7WebCore15HitTestLocationD1Ev) +STUB("Kpds+6CpTus", sceUserServiceGetPbtcTuesdayHoursEnd) +STUB("KpfPb4yrOIM", WKBundleNodeHandleSetHTMLInputElementSpellcheckEnabled) +STUB( + "Kpg0UuMU9C4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE4sizeEv) +STUB( + "Kpmgl7vUr0w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "Kpuc7WFjNkw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEC2EPS7_PNS2_10LibContextE) +STUB("Kpv2tL+xy8Y", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEixEm) +STUB("Kq+ftR9LHlE", sceNpServiceChecker2IntAbortRequest) +STUB( + "Kq-ajapICp8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEC2EPKS8_) +STUB( + "Kq5fRow+gmE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEEC2EPS8_PNS2_10LibContextE) +STUB("Kq7K6lgbTZE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEdeEv) +STUB( + "Kq9B7tMlmUc", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_11EntitlementENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB( + "KqCAAxfG7VY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "KqGvgCESK-4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEED1Ev) +STUB( + "KqHbd+8eysE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEEC2ERSA_) +STUB("KqOexIPqPLw", _ZN7WebCore19JSDOMMatrixReadOnly6s_infoE) +STUB( + "KqOvPKgnVIU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("KqQuvMOe4V4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEEC2ERKS7_) +STUB( + "KqRa9KLUjy4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEC1Ev) +STUB("KqYTqtSfGos", islower) +STUB( + "KqbcYlW0Wew", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEneERKS9_) +STUB("KqdclsYd24w", _ZNSt9_Num_base12min_exponentE) +STUB("KqgeUD6DFjM", sceCesUtf16leToGb) +STUB( + "KqhJ2-IKM7Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEE5resetEPS6_) +STUB( + "KqhijkoGWSU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("KqiWXLgCVe0", sceAmprAmmGetUsageStatsData) +STUB("KqkTmCmqddQ", ures_getUTF8String) +STUB("KqlUJH+uAeo", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session7SessionEE5resetEv) +STUB( + "Kqlg1zZruwQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEC1EPKS8_) +STUB( + "KqqLAd1XYvk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEC2Ev) +STUB( + "KqunwUtF+EA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEixEm) +STUB("Kqv-zZ9xSIU", WKBundlePageCreateSnapshotWithOptions) +STUB("Kqvjr+JcESw", _ZN3sce7Toolkit2NP9NpTitleIdC2Ev) +STUB( + "Kr11oQb6R30", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("Kr5t-EKudMI", _sceLibcInternal) +STUB( + "Kr6YtxnrK-M", + _ZN9Inspector24NetworkBackendDispatcher21interceptWithResponseElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("Kr6i3xjqHVM", _ZN7WebCore9HTMLNames12longdescAttrE) +STUB("Kr72BjgQy8o", g_array_free) +STUB( + "Kr7iaPEzPFc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE5emptyEv) +STUB("Kr9VnTTB6ps", _ZN9Inspector17ScriptDebugServerdlEPv) +STUB("KrAUJMghj1A", _ZNK3JSC19ControlFlowProfiler8dumpDataEv) +STUB( + "KrBV6wkL6E4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEE11get_deleterEv) +STUB( + "KrGU+MxrQV4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "KrHLbNzqRFo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEC1Ev) +STUB("KrITF2YFQH0", mono_string_chars) +STUB("KrJLG5ck2IA", _ZN7WebCore13GraphicsLayer12setZPositionEf) +STUB("KrKM-5SdQrA", _ZNK3sce4Json6String2atEm) +STUB( + "KrLsfLV53u0", + _ZN3sce7Toolkit2NP6Trophy9Interface18trophyRetrieveListEPNS1_9Utilities6FutureINS1_10TrophyInfoEEEbi) +STUB("KrP+Brx0nFA", _ZN7WebCore4Node23compareDocumentPositionERS0_) +STUB("KrQqHg5TE74", _ZN25MmsFileUpdaterFsOperation9writeFileEPKvj) +STUB("KrVSgCx9Fos", _ZNK3JSC14FullCodeOrigin4dumpERN3WTF11PrintStreamE) +STUB("KrVXrd3WyfM", WKAXObjectPage) +STUB("KrVpaPTkwyE", sceNpUniversalDataSystemIntRecordObjectSetFloat64) +STUB("KrVwLqIO6RI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEEaSERKS9_) +STUB( + "KrZC9IGibdg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE7popBackEv) +STUB("KraCNmh2LzA", + _ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayerC1EPNS1_6Common10LibContextE) +STUB( + "KraT52rXGeM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("KrbQ3KYcvUY", _ZN3NTF17URLRequestJobImplD2Ev) +STUB( + "KrdOh4pGIzE", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations34hasxPSNSESSIONMANAGERINVITATIONIDSEv) +STUB( + "KrdhTDT+eQ8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V128SetMultiVariablesRequestBodyC1EPNS1_6Common10LibContextE) +STUB("KreckU5qLhw", mtx_seqno) +STUB("KrfpsXXdW-w", _ZNK9Inspector15InspectorTarget8isPausedEv) +STUB("KrftZ0w-4Ds", tt_driver_class) +STUB("Krh6kY66aQ0", _ZNK3WTF8JSONImpl5Value9asIntegerERj) +STUB( + "KrhH1Rfx548", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE10setContextEPNS2_10LibContextE) +STUB( + "KrjHRE8zeBg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE6resizeEj) +STUB("Krket2SyCfk", sceSdmaFlushAllCb) +STUB( + "KrknTYpHnss", + _ZN3sce2Np9CppWebApi7Matches2V135RequestTemporaryMatchResultsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_28RequestTemporaryMatchResultsEEE) +STUB( + "KrpH9UQ2CpU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEED1Ev) +STUB("Krr2-TrnIYE", uprv_uint32Comparator) +STUB( + "KrrTgXp0Pc0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE8pushBackERKS8_) +STUB( + "KrsjCRMqGaI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEmmEv) +STUB( + "Krt-A7EnHHs", + _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8get_yearES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm) +STUB("Kru1Y4HvomI", scePatchCheckerRequestCheckPatchByType) +STUB("Ks2FIQJ2eDc", _ZTISt10moneypunctIcLb1EE) +STUB( + "Ks3ryhyLfOE", + _ZN7WebCore13JSDOMRectListC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_11DOMRectListENS6_13DumbPtrTraitsIS8_EEEE) +STUB("Ks9FCieTJsk", _ZN7WebCore14DocumentLoader13attachToFrameEv) +STUB("KsCZQEPMEDg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEEaSERKS6_) +STUB("KsDG+2lezLQ", _ZN4IPMI4impl10ServerImpl16doConnectRequestEiPvi) +STUB( + "KsELFifqK5I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEEC1ERSA_) +STUB("KsMv4hOUhRo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEC2Ev) +STUB("KsMx5knzLMM", WKCookieManagerSetCookieStoragePartitioningEnabled) +STUB("KsOF6LD6ZMM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEEptEv) +STUB( + "KsRVN4nT7Mc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEneERKS9_) +STUB("KsVTc04kN9k", sceFiosDeleteSync) +STUB("KsWNFdY5HWk", AnnotateFlushExpectedRaces) +STUB("KsX8socad1w", mono_aot_System_Web_Servicesjit_got) +STUB( + "KsXvYtAer5o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEC1EPS6_PNS2_10LibContextE) +STUB("KsZzSwxYS0k", _ZN3sce2np14JsonObjectImplC1EP14SceNpAllocator) +STUB("KsauFW4-GH4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEEaSERS6_) +STUB("Ksc-oasfuWI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE7reserveEi) +STUB("KsePYAic108", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEC2Ev) +STUB("KsgkYB0yUrc", _ZN3sce2Np9CppWebApi6Common6VectorIjE6insertENS2_8IteratorIjEERKjRS6_) +STUB("Ksofj08b+b8", _ZN7WebCore4Page28setPaginationLineGridEnabledEb) +STUB("KsuCiTAi+Co", mono_install_ftnptr_eh_callback) +STUB("KsvuhF--f6k", CA_MGMT_extractCertTimes) +STUB("KswxLxk4c1Y", sceNpRegisterGamePresenceCallbackA) +STUB("Ksx3C3GaXWY", _ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession14getSearchIndexEv) +STUB("Kt+4DRHYz+o", _ZN7WebCore14SecurityOrigin12createUniqueEv) +STUB( + "Kt1+TZZvWHY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEC1Ev) +STUB("Kt1k5aBzrcE", sceLncUtilSystemSuspend) +STUB("Kt2gl4NHSjI", _ZN3sce7Toolkit2NP2V27Session7Request4Join15MIN_INDEX_VALUEE) +STUB( + "Kt3HPlxNonE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEEaSERSA_) +STUB( + "Kt3N561dED8", + _ZN3sce2Np9CppWebApi14SessionManager2V131ResponsePlayerSessionInvitationC1EPNS1_6Common10LibContextE) +STUB( + "KtCWvuYFHp4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEE7get_refEv) +STUB( + "KtHBVEzb7Lk", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeOnlineId2AccountIdBatchC1Ev) +STUB("KtIXf8La96k", sceAgcDriverRegisterGpuResetCallbacks) +STUB( + "KtLYQUbxJCA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEmmEi) +STUB("KtMM-5WGMnQ", _ZN7WebCore8Document15createElementNSERKN3WTF10AtomStringERKNS1_6StringE) +STUB("KtO3l4R5GP8", _ZN15AbstractStorage12LocalContent5CloseEv) +STUB("KtU8gRo-GLg", JSGlobalContextCopyName) +STUB( + "KtawGlA4mMU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE5clearEv) +STUB("KtflIzzo2yw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEixEm) +STUB("KtgcveZxnco", + _ZN3WTF6String28numberToStringFixedPrecisionEdjNS_29TrailingZerosTruncatingPolicyE) +STUB("KthcIQGWjVw", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge10ChallengesEE3setEv) +STUB("KtneCuN1Yc0", il2cpp_set_config_utf16) +STUB( + "KtpMT7o2zMU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEaSERKS9_) +STUB( + "Ktq2-w2QgAY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("Ktw+4DDd-60", RemotePlayGeneratePinCode) +STUB("Ku+75b5QYds", _ZN3sce2Np9CppWebApi7Matches2V120ResponseMatchResultsD1Ev) +STUB( + "Ku--sumZwbg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("Ku-NWyHoPiE", _ZN7WebCore4Node7inspectEv) +STUB("Ku-fUYDmlPc", sceNpTrophySystemGetTrpTrophyIcon) +STUB("Ku0Rs703XaI", ucnv_setSubstChars) +STUB("Ku19S1-+ao4", _ZN12Mp4Retriever11mp4TimeToTmEmR2tm) +STUB( + "Ku4YDa3+9Ks", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEEdeEv) +STUB("KuApGRTlBrI", il2cpp_profiler_install_enter_leave) +STUB("KuArfZk6xEU", cairo_matrix_init) +STUB( + "KuCa8N0a42M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEppEv) +STUB( + "KuFAxlAYB18", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEC1EPS8_) +STUB( + "KuH8wFBW7DM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("KuJkc0qDvOQ", FTA_Remove_Module_pshinter) +STUB("KuOmgKoqCdY", bind) +STUB("KuOuD58hqn4", malloc_stats_fast) +STUB("KuR0yJpMwps", _ZNK7WebCore13HitTestResult21linkSuggestedFilenameEv) +STUB("KuRixPbXnOc", _ZN3sce7Toolkit2NP2V27Ranking17SetGameDataResultC1Ev) +STUB( + "KuStIg73ymE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("KuXcrMAQIMQ", sceSaveDataGetAppLaunchedUser) +STUB( + "KuYbFqNXjS8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEptEv) +STUB("KujfzRnzfD4", mono_aot_Mono_Dynamic_Interpreterjit_code_start) +STUB("KulXdwODQpc", _ZN8meta_gen13TiffRetriever12TiffTypeSizeE) +STUB("KuqaI5CqTFM", _ZThn16_N9Inspector22InspectorDebuggerAgent5pauseERN3WTF6StringE) +STUB( + "Kus0mNuEov0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEEcvbEv) +STUB( + "Kuvvcx5zd80", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE5beginEv) +STUB("KuwfGqH0wQs", _ZN3JSC19iteratorForIterableEPNS_14JSGlobalObjectEPNS_8JSObjectENS_7JSValueE) +STUB("KuzCRxc5mVI", scePssAudGetSurroundPan) +STUB("Kv--uLXHSWU", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18SessionInformationEEeqERKS4_) +STUB( + "Kv6g5UfXRRo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEE11release_refEv) +STUB("Kv6hlDg-Mg0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE3endEv) +STUB("Kv8XXD7X7XQ", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11UserProfile10NpProfilesEEC1Ev) +STUB( + "KvBnliOb4B8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEC2EPKS8_) +STUB("KvDqpabvhtI", _ZN7WebCore9PageGroupC2ERKN3WTF6StringE) +STUB("KvOHPTz595Y", atanl) +STUB( + "KvPFGT-aZMg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEEaSERKSA_) +STUB("KvRrPrZJEC0", _ZN3sce7Toolkit2NP2V23TSS7TssData5resetEv) +STUB("KvSudcCuVuQ", _ZN3sce7Toolkit2NP2V28Commerce10CategoriesaSERKS4_) +STUB( + "KvY3jcB9K2M", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("Kvcr4zxrBSo", _ZNK3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator11getOnlineIdEv) +STUB("KvozVIZh-kE", _ZN7WebCore19InspectorController22disconnectAllFrontendsEv) +STUB( + "KvpqH+lsJ7g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEC1EPS8_) +STUB("Kvsd01XuBdw", Java_com_sony_bdjstack_javax_media_controls_SoundManager_getDataId) +STUB("Kvwt4LprRVo", _ZL21thread_local_handlers) +STUB("KvynR5jW0GU", mono_sha1_final) +STUB( + "Kw3N9fQDgYg", + _ZN3sce2Np9CppWebApi14SessionManager2V138ResponseGameSessionMemberPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_31ResponseGameSessionMemberPlayerEEE) +STUB( + "Kw6M5tglEi4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEEC1ERSA_) +STUB("Kw7arNPVPak", WKPageLoadURLWithShouldOpenExternalURLsPolicy) +STUB( + "Kw8-0IsK6ko", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEEC1ERKSA_) +STUB("KwF25HOuthQ", _ZN12video_parser16cVideoContentMp419getProfilerInstanceEPPNS_14iVideoProfilerE) +STUB( + "KwJ5V3D0v3A", + _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE11get_weekdayES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm) +STUB( + "KwPm9p8k0GA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE3endEv) +STUB("KwQN78iZcJU", WKPageIsPinnedToLeftSide) +STUB( + "KwRx+nvmfus", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE4sizeEv) +STUB("KwVnRtplhDU", _ZN7WebCore11DisplayList7RestoreD0Ev) +STUB("KwbKIselApA", _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead14getSearchIndexEv) +STUB("KwfoMI5b8j4", _ZNK7WebCore17ActiveDOMCallback28activeDOMObjectsAreSuspendedEv) +STUB("KwouRn304Pk", mono_aot_Sce_Vsh_DbPreparationWrapperunbox_trampolines) +STUB("Kws3rxyV2Wo", _ZN7WebCore8SVGNames8hkernTagE) +STUB("KwtehBFKMNY", _ZN3WTF11Persistence7DecoderD1Ev) +STUB( + "KwuvoIxo6lM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEC1Ev) +STUB("Kx-h-nWQJ8A", sceGnmSetCsShaderWithModifier) +STUB("Kx1tARP42kI", _ZN3sce7Toolkit2NP2V28Commerce7Request11GetProducts14MAX_CATEGORIESE) +STUB( + "KxDDP5bHLB8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE5emptyEv) +STUB("KxDqhRL7C+w", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_25ChallengeBinaryDataResultEED2Ev) +STUB("KxGkOrQJTqY", sceNpAuthGetAuthorizationCode) +STUB("KxJvAf9SMH4", getpwuid_r) +STUB( + "KxQYqLmoRvM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEC2EPS8_) +STUB( + "KxT0LzeguEc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE8pushBackERKS8_) +STUB("KxTVuhlCL7o", _ZN15AbstractStorage14StorageManagerC1Ev) +STUB( + "KxaA89zRDPM", + _ZN8meta_gen11MsvPromoter33setKeyValue_TBLAVC_LastUpdateTimeENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB("KxbWXf8o08c", _ZNK7WebCore18TextureMapperLayer8childrenEv) +STUB("KxchXw2Sksc", mono_aot_Sce_Vsh_ShareGuideSceneunbox_trampolines_end) +STUB( + "KxdOHwVmRso", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEEaSERSA_) +STUB("KxfKjk0Awa4", _ZN3WTF8JSONImpl10ObjectBaseD0Ev) +STUB("KxitkrVcrSg", sceLoginMgrServerSetSharePlayMode) +STUB("KxkOl8nbei4", _ZN7WebCore8Document16addAudioProducerERNS_13MediaProducerE) +STUB("KxlKRHLf9AY", _ZN3sce2np3ipc17ServiceIpmiClient4ctorEv) +STUB("KxvJlq1yxeI", + _ZN7WebCore20LegacySchemeRegistry36registerURLSchemeAsAlwaysRevalidatedERKN3WTF6StringE) +STUB( + "KxwpRyQ+Hso", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE5beginEv) +STUB("KxznwwQatpA", _ZNK3sce2Np9CppWebApi13InGameCatalog2V513ContentRating6toJsonERNS_4Json5ValueEb) +STUB("Ky+C-qbKcX0", _ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1ERKSt8_Locinfom) +STUB("Ky1DgTs+jg8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE3endEv) +STUB("Ky5cMthuYF0", _ZN3sce7Toolkit2NP2V29Messaging7Request22ConsumeGameDataMessageD1Ev) +STUB( + "Ky6BAocZeo8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEmmEv) +STUB( + "Ky8QaOap-cM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEC2ERS7_) +STUB("Ky8m3qWEwjE", EVP_PKEY_type) +STUB("KyAqkJDBjnE", il2cpp_runtime_object_init) +STUB("KyB1IAY2BiU", sceNpUtilNpIdToJid) +STUB( + "KyC5RGxcKeE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("KyDWNwpREH4", _ZNK3sce2np10Cancelable6IsInitEv) +STUB("KyEyVSdTW7U", _ZN7WebCore22HTMLFormControlElement13setFormActionERKN3WTF10AtomStringE) +STUB( + "KyLIkyDWklQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("KyMRVd0swPc", _ZN3sce2Np9CppWebApi12Leaderboards2V15Entry12setAccountIdERKm) +STUB("KyNlev03N2o", udata_checkCommonData_67) +STUB("KyQY2KfMxKw", sceShellCoreUtilIsGameLiveStreamingOnAir) +STUB("KyYcTJPssvU", _ZN7WebCore16ResourceResponseC2Ev) +STUB( + "KyYeShmjXyo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "KyZXahlUY6E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEEC2EPS8_PNS2_10LibContextE) +STUB( + "KycsQE8LkS0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("Kyls1ChFyrc", scePthreadRwlockattrGettype) +STUB("KyqoPkNIvyc", mono_aot_Systemplt_end) +STUB( + "KyzdEsu2Iy8", + _ZN3sce2Np9CppWebApi11UserProfile2V132GetPublicProfilesResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_25GetPublicProfilesResponseEEE) +STUB("Kz-S-XwSOGA", _ZNK7WebCore18SecurityOriginData14securityOriginEv) +STUB( + "Kz0yQBD7yJU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB("Kz1szGTEils", _ZN3sce7Toolkit2NP2V24Core7Request11MemoryPools21HTTP_MEM_DEFAULT_SIZEE) +STUB( + "Kz21Q+gdpV4", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_11ProductInfoENS1_15AppSTLAllocatorIS5_EEEEC2Ev) +STUB("Kz9qqimlh48", _ZNK7WebCore8Document11windowProxyEv) +STUB( + "KzCSdPeqlt0", + _ZN7WebCore11DisplayList12PutImageDataC2ENS_22AlphaPremultiplicationERKNS_9ImageDataERKNS_7IntRectERKNS_8IntPointES2_) +STUB("KzDPh7twuDg", sceNpHeapMallocImpl) +STUB( + "KzIYLuJHyIM", + _ZN7WebCore4Icon18createIconForFilesERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16EEE) +STUB( + "KzODefKMdC0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "KzPiLzJ6Dbc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "KzS5hTyR0zI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEEC1ERKS9_) +STUB("KzSFgeUXy2E", curl_mime_type) +STUB( + "KzWPUUZiU9E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEEaSERSA_) +STUB( + "KzWUGdBxrPc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE3endEv) +STUB("KzZlFVnOAUg", _ZN3WTF9MediaTime16MaximumTimeScaleE) +STUB("Kzb3S1kIF9Y", _ZNK3sce2Np9CppWebApi7Matches2V119RequestInGameRoster6toJsonERNS_4Json5ValueEb) +STUB("Kzbvd9G7ieE", glTexParameteri) +STUB("KzcrFzKpYE8", u_strCaseCompare) +STUB("Kzl3HfOgREw", mono_get_sbyte_class) +STUB("KzpFZado7Cs", _ZNK3sce2np14JsonNumberImpl3GetEPi) +STUB("KzqlFtDCjvk", _ZN3sce7Toolkit2NP21TusSetVarsInputParamsC2Ev) +STUB("Kzs+kp0cRlM", _ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error12unsetMessageEv) +STUB( + "KzsvT7y7O+I", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB("Kzy7yDwocns", xmlSwitchEncoding) +STUB("L++JXXd0Dfk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEaSERKS7_) +STUB("L+04tR03SKg", _ZN3JSC12BigIntObjectC1ERNS_2VMEPNS_9StructureE) +STUB( + "L+8vuSU7Anc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE5eraseENS2_8IteratorIS6_EERS9_) +STUB("L+BOKR5S3mg", _ZN3JSC7JSProxy12toStringNameEPKNS_8JSObjectEPNS_14JSGlobalObjectE) +STUB( + "L+D5PyAcOwY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEED2Ev) +STUB( + "L+DrallcVWc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE6resizeEj) +STUB("L+EQZi9lhrE", _ZThn16_N9Inspector18InspectorHeapAgentD1Ev) +STUB("L+HtHRV6uMs", _ZN7WebCore10Pasteboard5clearERKN3WTF6StringE) +STUB( + "L+ITrIyaM+g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEC1Ev) +STUB("L+MKiauGHXU", _ZN7WebCore11MediaPlayer8setMutedEb) +STUB( + "L+PbFjZSnXY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEE7add_refEv) +STUB( + "L+QhAdljqgo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE3endEv) +STUB("L+UxJgjvc5s", _ZN3JSC7Symbols31RegExpStringIteratorPrivateNameE) +STUB( + "L+VhGCJQ5AU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEED1Ev) +STUB("L+ZvTPUDP+U", sceFsUfsGrowfs) +STUB("L+cL-M-DP3w", sceRemoteplayGetApMode) +STUB("L+f444MZShU", _ZN3WTF7ramSizeEv) +STUB( + "L+s4yDnvBQ8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEC2Ev) +STUB("L+u+lfB0wHw", _ZN7WebCore9HTMLNames8colsAttrE) +STUB("L+u1xTXppug", _ZN7WebCore9HTMLNames11noscriptTagE) +STUB( + "L+vfmV2INkA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEppEv) +STUB("L+zxgIMReYY", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersC1Ev) +STUB("L-+tX3h3vgU", _ZN3JSC18GCActivityCallback6doWorkEv) +STUB("L-DwVoHXLtU", sceHttpGetConnectionStat) +STUB( + "L-ENKLV9Ycc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEED2Ev) +STUB("L-FeIEkkEPc", _ZN3sce2Np9CppWebApi6Common6VectorIiE3endEv) +STUB("L-Fn-NcbXuk", _ZN9Inspector27PerGlobalObjectWrapperWorldC1ERKS0_) +STUB("L-Q3LEjIbgA", sceKernelMapDirectMemory) +STUB( + "L-WcqKiYUTY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEC2EPKS9_) +STUB( + "L-anLAVYZSQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEED1Ev) +STUB("L-aoBZ7HZkg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE3endEv) +STUB( + "L-daRmYlOpk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEC2Ev) +STUB("L-ddTbHfpys", __asan_addr_is_in_fake_stack) +STUB( + "L-eKLcXifWU", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessions35setxPSNSESSIONMANAGERNONPSNCALLERIDEPKc) +STUB("L-gpZZk9Nm0", _ZNK3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE5emptyEv) +STUB("L-jLYJFP9Mc", errc) +STUB("L-kFwFmRVQc", _ZN7WebCore24MatrixTransformOperationC2Edddddd) +STUB("L-lmKvxg-qY", rgctx_fetch_trampoline_mrgctx_76) +STUB("L-owl1dSKKg", sceGnmSqttGetBcInfo) +STUB("L-pI5FPDsnM", mono_aot_Mono_Cairounbox_trampoline_addresses) +STUB("L-qInx9Dldk", FTA_Add_Module_gxvalid) +STUB("L-rJ570Dd2Y", AacsModuleStartInternal) +STUB("L-s0GO8Upqo", ZIP_Open) +STUB( + "L-uPOc24oko", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "L0+1fJ+wagg", + _ZL19check_action_recordP15_Unwind_ContextP13dwarf_eh_lsdaPhPN10__cxxabiv115__cxa_exceptionEPmRPv) +STUB("L0-VdcqgwC0", _ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriendsC2Ev) +STUB("L08Nfk8HXbs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEC2ERS7_) +STUB("L0CXby6mmKg", sceDebugGetThreadListAsIdent) +STUB("L0EHgZZNVas", sceUsbdSubmitTransfer) +STUB("L0S1sa9xoVo", JVM_Halt) +STUB( + "L0TpMhBlhE8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE4sizeEv) +STUB( + "L0UQOdXzYIk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEeqERKS9_) +STUB( + "L0Vw3O-Frt4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEE11release_refEv) +STUB( + "L0WvH6KCUaY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEEaSERKSA_) +STUB("L0aobPyYBRw", _ZNK3sce2Np9CppWebApi7Matches2V124ResponseTeamMemberResult8getScoreEv) +STUB("L0g97XFiSG4", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia10BroadcastsEE19setCustomReturnCodeEi) +STUB("L0hTvNW1JUo", _ZNK7WebCore6Widget17convertToRootViewERKNS_7IntRectE) +STUB("L0j7WpW+Ldg", udat_setNumberFormat_67) +STUB("L0nMzhz-axs", _ZNSt14numeric_limitsIsE9is_signedE) +STUB("L0v2Go5jOuM", sceKernelGetPrtAperture) +STUB("L0wssOH-zi8", _ZN7WebCore27CSSComputedStyleDeclarationC1ERNS_7ElementEbRKN3WTF6StringE) +STUB("L0xUFo9fv1Y", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEptEv) +STUB("L1-jPx63SCE", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_19ProductInfoDetailedEEC1Ev) +STUB("L11wmNWIsy0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEEC2ERS9_) +STUB("L13sQFzk+cs", _ZNK7WebCore16HTMLLabelElement7controlEv) +STUB("L18rycA9rcQ", _ZN3sce7Toolkit2NP20GetPlayedWithRequestC1Ev) +STUB("L1AkJKeiXlE", _ZN10Deprecated25ScriptCallArgumentHandlerC2EPN3JSC9ExecStateE) +STUB( + "L1D-L8XwdL0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEE7get_refEv) +STUB("L1HtA3ROv5k", WKFrameGetCertificateInfo) +STUB( + "L1ILlcpr188", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("L1KAkYWml-M", _ZNK3sce4Json6String5c_strEv) +STUB("L1NPtI57TSs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEE11get_deleterEv) +STUB( + "L1Q7FJ7fAjA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEED1Ev) +STUB("L1SBTkC+Cvw", abort) +STUB( + "L1VsapGXZy0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEppEv) +STUB("L1Xock78x8g", + _ZN3sce2Np9CppWebApi14SessionManager2V130ResponsePlayerSessionSpectator11setPlatformEPKc) +STUB("L1YptcRdnA8", sceClHttpGetMemoryPoolStats) +STUB("L1Ze94yof2I", _ZNSt8_LocinfoC1EiPKc) +STUB("L1b+hssANP8", mono_profiler_install_allocation) +STUB("L1ifnzzsPQ4", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error9getStatusEv) +STUB( + "L1kuIdnEih8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE3endEv) +STUB("L1qVVG4asXw", fuse_main_real) +STUB("L1uHkWTazkI", FT_Sin) +STUB( + "L1xkmPiiDXk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEED1Ev) +STUB("L1yJ5W18WHw", _ZNK3WTF10StringView27startsWithIgnoringASCIICaseERKS0_) +STUB("L205EzJvP-Q", WKContextSetCanHandleHTTPSServerTrustEvaluation) +STUB("L21PBFwqIiM", sceKernelIccGetSysEventLog) +STUB( + "L21vpP2DC5k", + _ZNK3sce2Np9CppWebApi14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayer16customData1IsSetEv) +STUB( + "L22Dw2NGELA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB("L23hPuDDclY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEptEv) +STUB("L25oH9QaTaQ", sceSpNetEpollCreate) +STUB( + "L26GN35hESI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("L27HmHgN-fs", u_formatMessageWithError_67) +STUB("L29QQz-6+X8", _ZNSt14numeric_limitsIfE12max_exponentE) +STUB( + "L2BamSGBjMI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEmmEv) +STUB("L2BqedAiKTk", _ZN7WebCore16JSXMLHttpRequestD2Ev) +STUB("L2CaX8q1QU8", tz0) +STUB( + "L2GeWlSc+AI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEE7add_refEv) +STUB("L2GfNXBDsgk", mono_ptr_class_get) +STUB( + "L2Ho1CqZkjI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEppEv) +STUB( + "L2J-hH33Di8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "L2P6Bg+kwG0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEC1Ev) +STUB("L2YaHYQdmHw", significandf) +STUB("L2blzsm7Ars", jinit_c_master_control) +STUB("L2dkX9ZmiqM", _ZN7WebCore21NetworkStorageSession10getCookiesERKN3WTF3URLE) +STUB( + "L2g4HqWS6Eo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("L2gM3qptqHs", sceHttpDbgShowRequestStat) +STUB("L2jVFKnqSH8", WKPageForceRepaint) +STUB( + "L2k1iDHPzmU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE7reserveEi) +STUB("L2lPNbb5Ohw", _ZNK3sce2Np9CppWebApi7Matches2V14Task9getStatusEv) +STUB("L3-IGzPiZHI", sceMbusDebugAcquireControl) +STUB("L30Qu2ENA8w", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getAllSecondaryAudioStreams) +STUB( + "L344hgfxmi4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE8copyFromERKS9_) +STUB( + "L3DTkrs7wNk", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setBoolean1ERKb) +STUB( + "L3Iuw0NY2FM", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser17getplatformFilterEv) +STUB( + "L3Jov3kwJPQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE5clearEv) +STUB("L3KZqUc-gDQ", u_uastrcpy) +STUB( + "L3Nj0biFj4w", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEEdeEv) +STUB("L3Nq23JAlvU", _ZN7WebCore14JSWebAnimationD1Ev) +STUB("L3OgkCd-Wws", _ZN7WebCore15SQLiteStatement8bindBlobEiRKN3WTF6StringE) +STUB("L3PcEQaDVkA", sceDeci4hDrfpMkdir_fuse_fullpath) +STUB( + "L3Wt7F3l2Bc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("L3XZiuKqZUM", getchar) +STUB("L3ZTOrvokyQ", _ZN3sce3Xml3Dom8DocumentC2Ev) +STUB( + "L3fRjd3yONY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEC2EPKS8_) +STUB("L3hoLB41DKs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEED2Ev) +STUB("L3iGQWMeob4", monoeg_g_dir_open) +STUB("L3iWbvYZ9n8", uprv_decNumberCopyAbs_67) +STUB( + "L4+JLcx9PR4", + _ZN7WebCore12ChromeClient27contentRuleListNotificationERKNS_3URLERKN3WTF7HashSetISt4pairINS4_6StringES7_ENS4_8PairHashIS7_S7_EENS4_10HashTraitsIS8_EEEE) +STUB("L41-iuLlVCc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEcvbEv) +STUB("L49CkDZP1eY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEdeEv) +STUB( + "L4ATSVlr+O4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEaSERKS9_) +STUB("L4BRUCADoMQ", mono_allocator_strdup) +STUB("L4IDnn5i7n0", __asan_exp_store1) +STUB("L4J2kYpZ9vo", + _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest19unsetExpirationTimeEv) +STUB( + "L4KYcSgxP3w", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEdeEv) +STUB( + "L4MoUahMtjg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEC1Ev) +STUB("L4O-FBngxqs", YGNodeStyleSetHeightAuto) +STUB("L4VWy5XQ+uM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12EventsClient6EventsEEC2Ev) +STUB("L4ZP2znGFRY", _ZN3JSC6JSLock6unlockEv) +STUB("L4ZuA2XEwzw", WKBundleGetApplicationConnection) +STUB("L4au0JohrHs", ucnv_setSubstChars_67) +STUB("L4in6EGqLAg", jpeg_idct_6x3) +STUB("L4j7nnv2fVU", sceIpmiMgrStartDump) +STUB( + "L4nY3V9KOuE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEC1EPS8_) +STUB( + "L4qqbw1UAbE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE7reserveEi) +STUB("L4sW6ClW8AQ", _ZN3sce7Toolkit2NP2V212EventsClient12EventDetails16MAX_SIZE_REWARDSE) +STUB( + "L4vYsFqX8aA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEE11get_deleterEv) +STUB( + "L4z0iQPUYSw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEE11get_deleterEv) +STUB( + "L5-4VTr52Xw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEE3getEv) +STUB("L50kP46uQdU", mono_lock_free_allocator_check_consistency) +STUB("L51DXmdbYNw", mono_aot_Sce_Vsh_MimeTypejit_code_start) +STUB( + "L55-zIFNiXg", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSD_) +STUB("L5BnZpuQImk", _ZN3sce2np7RingBufC1Ev) +STUB("L5Cd+mIcvb4", _ZNK3WTF3URL13isAboutSrcDocEv) +STUB("L5GTL7pDHRo", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicketC1ERS5_) +STUB( + "L5JLdfu0xuQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "L5Nd834BvFs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEC1EPNS2_10LibContextE) +STUB("L5OK6yUiNlc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEptEv) +STUB("L5U9nprsR-Q", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setInteger8ERKi) +STUB("L5WZgOTw41Y", sceHmdInternalGetDebugMode) +STUB("L5XKYpXLrrE", _ZN3WTF22numberOfProcessorCoresEv) +STUB( + "L5Y1CqE-QUI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEED2Ev) +STUB("L5bFyq-r86A", sceMoveIsReproductionModel) +STUB("L5d7mM0UpG0", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIjED1Ev) +STUB( + "L5fhPLk1uak", + _ZN7WebCore26TextManipulationController20completeManipulationERKN3WTF6VectorINS0_16ManipulationItemELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("L5gS6Jitewc", _ZN12video_parser17cVideoOperatorEtsD0Ev) +STUB("L5ilp-prCHE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEcvbEv) +STUB("L5jHxZ-J630", sceBluetoothHidDebugGetVersion) +STUB("L5jTAtk3HKA", _ZN3sce3Job10JobManager34getUnifiedSequenceFactoryInterfaceENS1_8PriorityE) +STUB("L5mESo+Iq+k", sceShellCoreUtilGetSharePlayStatus) +STUB( + "L5n4NeGyTKo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEmmEv) +STUB( + "L5oAX-+S6Xs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("L5vTThaaE2A", _ZN3sce7Toolkit2NP2V29Messaging24GameDataMessageThumbnail18MAX_SIZE_THUMBNAILE) +STUB("L6-BCfEbdi0", _ZN3sce7Toolkit2NP2V26Trophy16TrophyPackTrophyD1Ev) +STUB("L60K-UtS9fA", _ZNK7WebCore12RenderObject12enclosingBoxEv) +STUB("L69yp5hEZe4", + _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container14setContentTypeERKNS3_11ContentTypeE) +STUB( + "L6DRw06HzXs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEE7get_refEv) +STUB("L6Gloitga2E", uprv_isPositiveInfinity) +STUB("L6H3T7sBP5U", UI_destroy_method) +STUB("L6HDX5ZnQps", WKPageGetScrollPinningBehavior) +STUB("L6K9Z5jPLN0", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi28ParameterToDeleteGameSessionD1Ev) +STUB("L6QRY1pl3xc", sqlite3_close) +STUB("L6R0jU7yTTQ", sceShellCoreUtilGetCrashReportUploadStatus) +STUB("L6SuXO-2rWk", monoeg_g_hash_table_iter_next) +STUB( + "L6T6i5LMOzA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEC1Ev) +STUB( + "L6WGgHXUMQc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("L6WLBSYfL6k", sceKernelEventLogRead) +STUB("L6b2zkZRn6I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEC2Ev) +STUB("L6eNjmePQVE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEE5resetEPS6_) +STUB("L6fM17UnJ+A", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getInteger3Ev) +STUB( + "L6hUkCKIQf0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "L6lGeSgUoeY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("L6oxGekrFwg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEEC2EPS5_PNS2_10LibContextE) +STUB( + "L6ri3xkXMG0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE8pushBackERKS8_) +STUB("L6sQHvt-Ho0", _ZN3JSC8Debugger13setBreakpointERNS_10BreakpointERb) +STUB("L6t3w+5eyZ0", _Z42SystemParameters_GetSystemPadButtonMeaningRi) +STUB( + "L6yGlCrlkRQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEppEv) +STUB("L70Lnrm4gz4", sceDepthGetRectificationInformation) +STUB("L71JAnoQees", _ZNSt7collateIcEC2ERKSt8_Locinfom) +STUB("L734DbL1Gi8", mono_aot_Sce_Vsh_BackupRestoreUtilunbox_trampoline_addresses) +STUB("L76Gd3hKuoU", sceNpTrophy2SystemRegisterTitleUpdateCallback) +STUB( + "L77IShz1gVM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEC1ERS7_) +STUB( + "L7AqQ7yU7Ks", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEaSERKS7_) +STUB("L7B1Ezw9T+o", pr2) +STUB("L7CsCCIYqI4", JVM_Yield) +STUB( + "L7F2mr+Pw5s", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEeqERKS9_) +STUB("L7FoTZp3bZs", sceUsbdGetConfiguration) +STUB("L7KtgkMSjT4", _ZN7WebCore16JSStringCallback12callbackDataEv) +STUB("L7NB4zLzBVw", mono_aot_Sce_Vsh_Orbis_Bgftjit_code_start) +STUB( + "L7OBFecGY-Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("L7POWb7aCHo", mono_aot_System_Collectionsunbox_trampolines_end) +STUB("L7RVLoraPVg", _ZN3sce2Np9CppWebApi12Leaderboards2V113ErrorResponse8fromJsonERKNS_4Json5ValueE) +STUB("L7Vnk06zC2c", _ZSt11setiosflagsNSt5_IosbIiE9_FmtflagsE) +STUB("L7Xg6xdBniQ", sceSystemServiceUsbStorageGetdentsRead) +STUB("L7aj7caj8+s", sceKernelInternalGetKmemStatistics) +STUB("L7f7zYwBvZA", _Thrd_detach) +STUB("L7g5s0YFGc4", sceVideoCoreSetPlaybackRange) +STUB("L7naR6ftYz4", _ZN9Inspector28InspectorScriptProfilerAgent16trackingCompleteEv) +STUB( + "L7p3Ehoi0gg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEptEv) +STUB("L7qBonxwhiI", scePerfPmcL3GetCounterSelf) +STUB( + "L7z65ht2Y4k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "L7zfhWZQZFA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE5beginEv) +STUB("L7zzM5S0RdQ", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V113MmrProperties6toJsonERNS_4Json5ValueEb) +STUB( + "L8-+WRRhhOU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEaSERKS9_) +STUB("L8CIoipS9j4", WKPreferencesGetShowsURLsInToolTipsEnabled) +STUB( + "L8In2qoDrog", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEEaSERKSA_) +STUB("L8K+i+0CWw8", WKPageLoadWebArchiveData) +STUB( + "L8NOUEtZ16w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "L8RB0NbNLPI", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUserD1Ev) +STUB("L8RmHugddLk", _ZN7WebCore24FrameDestructionObserver12observeFrameEPNS_5FrameE) +STUB("L8YmemOeSNY", sceSystemGestureGetPrimitiveTouchEvents) +STUB( + "L8dg-EJ8M-k", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("L8kLoUs7aqU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEC1Ev) +STUB( + "L8p5ePLMMm4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V139GetMultiDataStatusesResponseBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_32GetMultiDataStatusesResponseBodyEEE) +STUB("L8rmTTPwplc", _ZN3WTF21charactersToIntStrictEPKDsmPbi) +STUB("L8sqeTL+Gco", delegate_virtual_invoke_31) +STUB("L8wKvGYzNDU", WKRunLoopInitializeMain) +STUB("L8xsBYa8Fj0", _ZN3JSC13ShadowChicken16functionsOnStackEPNS_9ExecStateE) +STUB( + "L8za6Bm30zg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEC1EPNS2_10LibContextE) +STUB("L9-CbnehLH8", _ZN3JSC8Debugger14clearBlacklistEv) +STUB( + "L921fHQ2PYQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEptEv) +STUB("L97d+3OgMlE", sceFontGetCharGlyphMetrics) +STUB("L97eAHI0xxs", sceNetCtlGetScanInfoForSsidScanIpcInt) +STUB( + "L9G+dO0+3Ew", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEdeEv) +STUB( + "L9GT4kR+vCk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEeqERKS9_) +STUB("L9Hmp6AYcQU", _ZNK3JSC9ClassInfo4dumpERN3WTF11PrintStreamE) +STUB("L9K4mZErvfg", sceNpSnsDailymotionDialogClose) +STUB("L9K9PzqUWDA", _ZThn24_N9Inspector22InspectorDebuggerAgentD1Ev) +STUB( + "L9TS1WVOMr0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEC1EPKS8_) +STUB("L9Ty-fG1IM4", _ZN3sce2np12WorkerThreadC2EPNS0_9WorkQueueE) +STUB("L9VehvVJy80", _ZN3sce7Toolkit2NP2V26Friend12BlockedUsers5resetEv) +STUB("L9ZtPS92fDE", sceNpSessionSignalingSetCustomProperty) +STUB("L9bnN8gtIRA", sceDebugGetVirtualMemoryInfoForCoredump) +STUB( + "L9ctwLn4vnM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEppEv) +STUB( + "L9jrk9Mk4hM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEppEi) +STUB("L9mm5cdg40U", _ZN3sce7Toolkit2NP2V28Matching7Request23SetMembersAsRecentlyMetD2Ev) +STUB("L9n8X5qE3gI", _ZN15AbstractStorage14MemfileContent5FlushEv) +STUB( + "L9rqEY+lpPA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEEC1Ev) +STUB("LA0eli-go10", + _ZNK3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectator6toJsonERNS_4Json5ValueEb) +STUB("LA2-aiER7co", _ZN3sce3pss4core8graphics6OpenGL10SetTextureEPNS2_7TextureE) +STUB("LA4RCNKnFjg", sceAcm_Panner) +STUB( + "LA4VRxNyE+s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEE11release_refEv) +STUB("LADHEyFTxRQ", sceFontFtSupportCid) +STUB("LAEVU8cBSh4", _ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1Em) +STUB("LAN8PgKDV-Y", _ZN7WebCore8SVGNames18pointer_eventsAttrE) +STUB("LAORmfwWCDo", upvec_cloneArray_67) +STUB( + "LAOv7m88-f4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE5beginEv) +STUB( + "LAS-B-dizS8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEED2Ev) +STUB( + "LASm3DysS6w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEEaSERKSA_) +STUB("LASo+347Irs", _ZN7WebCore9TreeScope17elementsFromPointERKNS_10FloatPointE) +STUB("LAStmlqpjYc", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4DataEE3setEv) +STUB("LATrF+dIZYI", CMAC_Init) +STUB("LAXPlDvApHg", _ZN7WebCore12ISOWebVTTCueC2EON3WTF9MediaTimeES3_ONS1_6StringES5_S5_S5_S5_) +STUB("LAem21NWI48", uenum_nextDefault) +STUB( + "LAhQFfpVXAk", + _ZN3sce2Np9CppWebApi14SessionManager2V131ResponsePlayerSessionInvitation8fromJsonERKNS_4Json5ValueE) +STUB("LAo1IP7rte4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEC2ERS7_) +STUB( + "LAsIugGxjCc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEaSERKS7_) +STUB("LAtHDO4YPVc", _ZNK3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer11getJoinFlagEv) +STUB("LB3Zux46eQ0", Java_com_sony_bdjstack_init_Init_enableStdio) +STUB("LB3jxppxyKU", _ZN3sce4Json6Parser5parseERNS0_5ValueEPKc) +STUB("LB5R72c7qrc", _ZN12video_parser5vpcom6StringneERKS1_) +STUB( + "LB6Q+2AHmgc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEcvbEv) +STUB( + "LB9KC4mQa84", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEC1ERS7_) +STUB( + "LBC5OVrzDnM", + _ZN3sce2Np9CppWebApi14IdentityMapper2V318OnlineIdMapFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_11OnlineIdMapEEE) +STUB( + "LBCCrwm9+qk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "LBG2K0BmZ6c", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEneERKS9_) +STUB("LBHfdKvgv5Y", u_getVersion_67) +STUB("LBLKh0aF0z0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEED2Ev) +STUB("LBLeCAuPHx4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEEC2EPNS2_10LibContextE) +STUB("LBPf6m+C9co", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEplEm) +STUB("LBPuue9NRXo", _ZNK3sce7Toolkit2NP17MessageAttachment17getAttachmentDataEv) +STUB("LBQPxo5oQJ8", sceAvControlSetAvOutputMode) +STUB( + "LBVijTm2JBk", + _ZN3sce2Np9CppWebApi14SessionManager2V141GetUsersAccountIdGameSessionsResponseBody15setGameSessionsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_29JoinedGameSessionWithPlatformEEEEE) +STUB( + "LBWFP5lQunM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEC2Ev) +STUB( + "LBhRDIAkEw4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE7reserveEi) +STUB("LBicRa-hj3A", sceImeVshOpen) +STUB( + "LBpDu6S88+A", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetrics18setConfidenceScoreERKi) +STUB( + "LBpbf6GTX44", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayerC2ERS5_) +STUB( + "LBrZsaSZ0mg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEED1Ev) +STUB( + "LBsqgTCYX4M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("LBzty5qElcE", _ZN7WebCore15JSDOMWindowBase14updateDocumentEv) +STUB("LC0GJQteweA", _ZN3sce2Np9CppWebApi6Common6VectorImE10setContextEPNS2_10LibContextE) +STUB( + "LC1WqJOaOGw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("LC5YmBeOB+o", mono_shared_mempool_alloc0) +STUB( + "LC6cLCLpj9s", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEeqERKS9_) +STUB("LCCMOQV2Kgo", _ZN3JSC7Symbols22fromEntriesPrivateNameE) +STUB( + "LCDjo4Pc0Hc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEC1Ev) +STUB( + "LCIln7KSzeY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE7popBackEv) +STUB("LCMpOUSV6lA", _ZN7WebCore22SocketStreamHandleImplC2ERKNS_3URLERNS_24SocketStreamHandleClientE) +STUB( + "LCNRi12Dol4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEC2Ev) +STUB( + "LCO0yCkifak", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEaSERKS7_) +STUB("LCPCX6fHPQY", _ZN9Inspector25RuntimeFrontendDispatchernaEmPv) +STUB("LCQzi5ILGrY", sceHmd2GazeGetCalibrationDataMaxSize) +STUB("LCVSab7kWDg", mono_sha1_get_digest_from_file) +STUB("LCZB2VTbDwM", _ZN7WebCore7JSRange15subspaceForImplERN3JSC2VME) +STUB("LCZQkq-Nq-k", sceVisionManagerGetCalibrateTrackingLedNecessity) +STUB("LCeL9MtV38E", g_string_append) +STUB( + "LCfk3tJT9xw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEptEv) +STUB("LCfkPb8mN1s", + _ZN3JSC12StringObject14deletePropertyEPNS_6JSCellEPNS_9ExecStateENS_12PropertyNameE) +STUB( + "LChSziYYkIc", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEED2Ev) +STUB("LCinyLbasnU", + _ZN7WebCore12SettingsBase21setStandardFontFamilyERKN3WTF10AtomStringE11UScriptCode) +STUB( + "LCjctfrdLzs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("LCk8T5b1h+4", _ZN3sce2np16StreamReadBufferC2EP16SceNpAllocatorEx) +STUB( + "LCm7rkCANjA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("LCoNzxnbSYI", __tsan_atomic64_store) +STUB( + "LCqyaC23fv8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEC2EPNS2_10LibContextE) +STUB("LCsHiDy8pVQ", vm_send_CreateSpecificTrampoline) +STUB("LD+DH-baZzA", _ZN7CoreIPC15ArgumentEncoder6encodeEb) +STUB("LD+cqdwBSWM", _ZN7WebCore17HTMLCanvasElement9setHeightEj) +STUB( + "LD3ylqOy-eQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEmmEv) +STUB( + "LD5DWCyEJbM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("LD86dvVm22M", Java_java_lang_Runtime_traceInstructions) +STUB("LD9cXbn597Y", mono_aot_Sce_Vsh_JsExtensionunbox_trampolines) +STUB("LDKb9CdjDC4", WKBundlePageHasLocalDataForURL) +STUB("LDLvwweFoPk", _ZN7WebCore9HTMLNames6navTagE) +STUB( + "LDNmQLb99QA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEneERKS9_) +STUB("LDT0j38WE1A", _ZN7WebCore10LayoutRectC1ERKNS_9FloatRectE) +STUB("LDUnJvas7aA", sceDebugResumeProcess) +STUB( + "LDVGux-4oAU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("LDZkMcW3+fg", sceCustomMusicCoreBgmStop) +STUB("LDbKkgI-TZg", _ZNKSt8numpunctIwE9falsenameEv) +STUB("LDfRUa5o3Jo", _ZN23sceMetadataReaderWriter7StorageD0Ev) +STUB("LDfSNfOIwFI", mspace_malloc_stats) +STUB("LDgc9wGxxEQ", _ZN7WebCore11DisplayList8ClipPathD2Ev) +STUB("LDjk9ULlN34", sceProprietaryVoiceChatHelperInitialize) +STUB( + "LDmmmW3Uc0U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEC2Ev) +STUB( + "LDp3twdAtvE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE8pushBackERKS8_) +STUB("LDsNIDCwcLY", WKPageSetScaleFactor) +STUB("LDzoVPBgzc0", sceCesUtf32beToMbc) +STUB("LEBmRVlijTw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE8capacityEv) +STUB("LEC1dK5v-Kg", _ZN10Deprecated25ScriptCallArgumentHandler14appendArgumentEm) +STUB( + "LEGXJZ20Jng", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEE7add_refEv) +STUB("LEKGLwltPt8", _ZN7bmalloc11AllIsoHeaps3addEPNS_15IsoHeapImplBaseE) +STUB("LEMk5cTHKEA", sceCameraSetCalibData) +STUB( + "LEMt5E1tGmc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "LEPB0kK+l6Q", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("LEQB-MXRK-I", + _ZN7WebCore22externalRepresentationEPNS_7ElementEN3WTF9OptionSetINS_16RenderAsTextFlagEEE) +STUB( + "LES6iPui81A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE5clearEv) +STUB("LEbYWl9rBc8", wcstold) +STUB( + "LEf-VwcVIIM", + _ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead20setReceivedTimestampEPKc) +STUB("LEfMMCT+SlM", pthread_spin_unlock) +STUB( + "LEjIOVNyfX4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEC2EPS6_PNS2_10LibContextE) +STUB("LEkIXo6UCwA", rgctx_fetch_trampoline_rgctx_35) +STUB("LEn8FGztKWc", sceNetCtlApRpGetState) +STUB("LEnn-4ARRJM", sceAgcDriverUserDataWritePopMarker) +STUB("LEoZMfSH6Ls", _ZNK7WebCore18PlatformPasteboard29typesSafeForDOMToReadAndWriteERKN3WTF6StringE) +STUB("LEqH+dkMszo", sceVdecswGetVp9PictureInfo) +STUB( + "LErWiFrqiS8", + _ZN3sce2Np9CppWebApi14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayer8fromJsonERKNS_4Json5ValueE) +STUB("LEvm25Sxi7I", btowc) +STUB( + "LExasWS3ZTg", + _ZN7WebCore27PlatformMediaSessionManager21addAudioCaptureSourceERNS_20PlatformMediaSession18AudioCaptureSourceE) +STUB("LF1S4j5d23g", _ZN7bmalloc15IsoHeapImplBase18isNoLongerFreeableEPvm) +STUB("LF666okXAtE", rgctx_fetch_trampoline_mrgctx_3) +STUB("LF6lQpXL9So", ucol_setAttribute_67) +STUB( + "LF70KOoRmM4", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser9terminateEv) +STUB( + "LF9YfqGO9y8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEED2Ev) +STUB("LFCfPxGTF9w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE5beginEv) +STUB( + "LFDB+h5OUNw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEppEi) +STUB( + "LFFD4uals2I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEC2EPS8_) +STUB("LFLRtqqi4AQ", glSampleCoverage) +STUB("LFMU4pwACRQ", mono_class_get_methods) +STUB( + "LFNGiVQF9iM", + _ZN7WebCore28InspectorFrontendClientLocal18requestSetDockSideENS_23InspectorFrontendClient8DockSideE) +STUB( + "LFNbGrxObcY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEC1Ev) +STUB("LFSPFmGc9Hg", sceAgcDcbSetWorkloadsActive) +STUB("LFT2oKGSn28", + _ZN7WebCore17PageConsoleClient16takeHeapSnapshotEPN3JSC9ExecStateERKN3WTF6StringE) +STUB("LFYbwOGhCys", sceMbusCheckDriverCallback) +STUB( + "LFb631+BBx4", + _ZThn16_N9Inspector22InspectorDebuggerAgent14didParseSourceEmRKNS_19ScriptDebugListener6ScriptE) +STUB( + "LFbmcWn8vVE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEC2EPNS2_10LibContextE) +STUB("LFbwY8r50o8", sceKernelLwfsAllocateBlock) +STUB("LFo00RWzqRU", sceSystemServiceChangeMemoryClock) +STUB("LFrTJZYgkj4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE8copyFromERKS7_) +STUB("LFwPIV+K9nA", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectIdC2ERS5_) +STUB("LG1YW1Uhkgo", sceHttpSetEpollId) +STUB("LG2QVcYXqqo", _ZN7WebCore15DeferredPromise6rejectENS_9ExceptionENS_15RejectAsHandledE) +STUB("LG6O0oW9bQU", posix_spawn_file_actions_adddup2) +STUB( + "LG8emJ-E0AQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEEC1Ev) +STUB("LG9JJ-j8rSE", ulocimp_toBcpType_67) +STUB("LGEIdgILQek", sceNpManagerPrxStartVsh) +STUB( + "LGEmJwVec28", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEC2Ev) +STUB( + "LGPkL2JPiLQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEEaSERKSA_) +STUB("LGTKL9VT2DM", sceCustomMusicCoreBgmStart) +STUB("LGch87zTS-4", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_16NetStateDetailedEE3getEv) +STUB("LGfu3uVGjDY", WKAccessibilityRootObject) +STUB("LGgxtVdxaLY", + _ZN15AbstractStorage13YoutubeFolder13RemoveContentERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("LGhpaoJcPiQ", _ZN7WebCore21DiagnosticLoggingKeys17userZoomActionKeyEv) +STUB("LGiUQAdAxTQ", glTexStorage2D) +STUB( + "LGkB+6CseZk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEC1ERS7_) +STUB("LGls0LhQSGY", sceDepthEnableHeteroModeAndGenerateInformation) +STUB( + "LGmA0KO4hf8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "LGoIig-3YdA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEEaSERSA_) +STUB( + "LGqUC6ki2+w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEC2EPS8_) +STUB( + "LGqi4cI1xD0", + _ZN7WebCore22StorageEventDispatcher36dispatchSessionStorageEventsToFramesERNS_4PageERKN3WTF6VectorINS3_6RefPtrINS_5FrameENS3_13DumbPtrTraitsIS6_EEEELm0ENS3_15CrashOnOverflowELm16EEERKNS3_6StringESG_SG_SG_RKNS_18SecurityOriginDataE) +STUB( + "LGtsJ+KXt-4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEixEm) +STUB("LGyjRmwUZ-g", rgctx_fetch_trampoline_rgctx_21_p) +STUB( + "LH+9+WOtQEI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEEC1ERSA_) +STUB( + "LH39Nyw45NQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEdeEv) +STUB( + "LH53HDAZScs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEEC2ERSA_) +STUB( + "LH8jgRi01+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("LHDoRWVFGqk", sceFontDeleteGlyph) +STUB("LHFXRrlTPD8", sceAgcDcbSetCxRegisterDirect) +STUB("LHSZA0ujcbM", + _ZN15AbstractStorage10YoutubeAPI5StartERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB( + "LHTgbAvuw+Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "LHUuxs0A6+g", + _ZN3JSC8JSObject17defineOwnPropertyEPS0_PNS_9ExecStateENS_12PropertyNameERKNS_18PropertyDescriptorEb) +STUB( + "LHWrFdp3FZ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEEC2ERKSA_) +STUB( + "LHYyVFBNwHA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEC1Ev) +STUB("LHZtCT2W1Pw", sceNpCreateSema) +STUB( + "LHaubdMZbG8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEC2Ev) +STUB("LHd3WR1-QIs", ucfpos_open_67) +STUB("LHd3XdHQDo4", + _ZNK3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends8haslimitEv) +STUB( + "LHdM27Zie9c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEE11release_refEv) +STUB( + "LHdw3CvviGc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "LHj078MoLP0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEdeEv) +STUB( + "LHlkjwOflo0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEEptEv) +STUB("LHqFYb+U52E", sceFiosExists) +STUB( + "LHrQ+cfApGY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("LHuSmO3SLd8", sceNpTrophyGetTrophyUnlockState) +STUB("LI228aO7fig", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountIdC1ERS5_) +STUB("LI2Jh9JT7Js", + _ZNK3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallback12geteventTypeEv) +STUB("LIB9DiyTbJk", _ZN7WebCore14SocketProviderD1Ev) +STUB("LIBEeNNfeQo", sceUserServiceSetGlsBroadcastService) +STUB( + "LIF86u-Myk4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEED1Ev) +STUB("LIGEX1-8Sc8", YGEdgeToString) +STUB("LIGGPWn25+U", _ZN3JSC18ErrorHandlingScopeC2ERNS_2VME) +STUB("LIH2mH9tzro", sceCesUtf16ToEucJp) +STUB("LIOmTtP4YK8", _ZTVN3WTF8JSONImpl9ArrayBaseE) +STUB( + "LIRfmy4CPbg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("LIS2n5ur2HY", _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_9ImageDataE) +STUB( + "LIUCoPc0zuU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("LIVclwLLnyM", sceMatReleasePhysicalMemory) +STUB("LIWm1FI-XWo", _ZN3sce7Toolkit2NP2V210Tournament12EventDetails5resetEv) +STUB("LIa9LkJX6hk", _ZN3JSC7Symbols29replaceUsingRegExpPrivateNameE) +STUB("LIa9qzdqcgQ", _ZN7WebCore8SVGNames8fromAttrE) +STUB( + "LIhyUta9ON4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE7popBackEv) +STUB( + "LIioexCGNq4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE5clearEv) +STUB( + "LIqAaYGQMRA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE17getResponseHeaderERSE_) +STUB( + "LIsJpy+83vI", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "LIy5bSy48IE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEE21intrusive_ptr_add_refEPS7_) +STUB( + "LJ1sm2BabMw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE8capacityEv) +STUB( + "LJ46ry8POk4", + _ZN3sce2Np9CppWebApi14SessionManager2V127ResponsePlayerSessionPlayer8fromJsonERKNS_4Json5ValueE) +STUB( + "LJ5NNpcT-v0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEEcvbEv) +STUB( + "LJ74k1s9Tnk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("LJ8XAk5LI-0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119ChildActivityStatusEEeqERKS7_) +STUB("LJ9eQ5Z7Wmo", glPolygonOffset) +STUB("LJAhfaa6+U4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session8SessionsEEC1Ev) +STUB("LJDwdSNTnDg", sceKernelDeleteUserEvent) +STUB("LJGdHRE3ui0", sceHmdGetDistortionWorkMemorySizeFor2d) +STUB("LJL23bfwYgQ", _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEED1Ev) +STUB("LJNqwiDWTm0", cairo_clip_extents) +STUB( + "LJPvyx-2hic", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEEC1ERKSA_) +STUB("LJTtb7xKzkY", scePfsPread) +STUB("LJVcP+0wRIk", sceKernelGetFlagedUpdaterForRcmgr) +STUB("LJYiiIS4HB0", sceNetCtlSetErrorNotificationEnabledIpcInt) +STUB( + "LJZhUhGxMLg", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi35ParameterToSetGameSessionPropertiesD2Ev) +STUB("LJaVcBjiivQ", _ZNK7WebCore15SecurityContext14securityOriginEv) +STUB( + "LJcptjXRgAQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("LJgDPypWO8Y", sceDeci4hDrfpChstat_utimens_fuse_fullpath) +STUB("LJj90HDolFE", _ZN9Inspector25NetworkFrontendDispatchernaEm) +STUB("LJl2kInnv84", _ZN7WebCore9HTMLNames7maxAttrE) +STUB("LJn5UlaZvI8", _ZN3sce7Toolkit2NP2V210Tournament24OfficialBroadCastDetailsC2ERKS4_) +STUB("LJpQs+W-q+g", _ZN3sce7Toolkit2NP2V23TUS19FriendsDataStatuses5resetEv) +STUB( + "LJsjoVNV7Uw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEEaSERKSA_) +STUB("LJvHO3uCNm4", _ZN3sce2np10Cancelable10IsCanceledEv) +STUB("LK9pyJxDphE", init_at_thread_exit_mutex) +STUB("LKCgR3aVJwM", mono_class_get_interfaces) +STUB( + "LKD-Mgz9RDY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEEptEv) +STUB("LKEEAYE-RgY", _ZNK15AbstractStorage15FacebookContent10GetServiceEv) +STUB( + "LKGqbJuEQdM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEED1Ev) +STUB("LKH25aamnoc", __bigtens_D2A) +STUB( + "LKKXHzM-L3Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("LKLoO7GwnFE", _ZN7WebCore9HTMLNames12onunloadAttrE) +STUB( + "LKMAGkLFh8E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE3endEv) +STUB("LKMVeWFdRNk", WKBundleBackForwardListItemIsInBackForwardCache) +STUB( + "LKMyzOgl8Q0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEED2Ev) +STUB("LKNrK31L6ck", + _ZN3sce7Toolkit2NP2V210Tournament7Request18GetRegisteredTeams17DEFAULT_PAGE_SIZEE) +STUB( + "LKP+XIYf5KM", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetrics17setPercentileRankERKi) +STUB("LKRatXLV85k", sceNpMatching2SignalingEnableManualUdpMode) +STUB("LKRfjglGlSA", Java_java_awt_GnmImage_nativeDrawImageScaled) +STUB("LKXfw7VJYqg", scePadVirtualDeviceGetRemoteSetting) +STUB("LKZcmQ6G+v0", _ZN9Inspector24RuntimeBackendDispatcherD0Ev) +STUB("LKaCCu1QZ7Q", _ZN9Inspector8Protocol3CSS11CSSProperty8ParsedOkE) +STUB("LKmBevIUY+Q", _ZN3sce7Toolkit2NP2V212ActivityFeed6ActionD1Ev) +STUB("LKo1uAeaous", __cxx_global_var_init .26) +STUB( + "LKoXZTCxczQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "LKpjgxTTDiE", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi42ParameterWithBinaryRequestBodyToUploadDataC1Ev) +STUB("LKuWUrYf-kk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V117InvitableUserTypeEEneERKS7_) +STUB("LL+9qdwMrhs", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEEC1ERKS6_) +STUB("LL2YvYyIX-0", mono_aot_Sce_Vsh_Stickerplt_end) +STUB("LL7brbHFNd4", _LMBCSData3_67) +STUB("LL87yttK-sM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEED1Ev) +STUB("LL8N+X6DA-4", tls_config_free) +STUB("LL9z5QvmwaA", _ZN3sce2np7HttpUriC1EP16SceNpAllocatorEx) +STUB( + "LLDARC69Yjw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE3endEv) +STUB("LLImQzzVASc", _ZNK9Inspector17ScriptDebugServer30canDispatchFunctionToListenersEv) +STUB( + "LLJTma-7XXQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEeqERKS9_) +STUB("LLNqa6vgVlo", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia11ScreenshotsEE3getEv) +STUB( + "LLRbAwDQPbg", + _ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForReadC1EPNS1_6Common10LibContextE) +STUB( + "LLTMSyTmaf4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEE5resetEPS9_) +STUB("LLUjcqQdN4I", delegate_virtual_invoke_11_p) +STUB( + "LLV4uk6ZnYg", + _ZN7WebCore26MessagePortChannelRegistry27didCreateMessagePortChannelERKNS_21MessagePortIdentifierES3_) +STUB("LLXj3TaYsJY", + _ZN23sceMetadataReaderWriter20LoadedParserInfoList14registerParserEPKNS_10ParserInfoE) +STUB("LLY6TM0a9Ss", __asan_describe_address) +STUB( + "LLYbY++LJEY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEED2Ev) +STUB("LLYe0XHcjJI", sceAppInstUtilAppProhibitDownloadInstall) +STUB("LLdnqVnnNBQ", _ZN3sce7Toolkit2NP2V24Core4initERKNS3_7Request10InitParamsE) +STUB( + "LLhw7xA1cv4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEdeEv) +STUB("LLn3yxuFb3A", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISbIcSt11char_traitsIcENS2_IcEEEE8allocateEmPKv) +STUB("LLpDoojuLDg", _ZN3JSC14constructArrayEPNS_9ExecStateEPNS_9StructureEPKNS_7JSValueEj) +STUB("LLpq5YDH2Rs", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession24unsetDisableSystemUiMenuEv) +STUB( + "LLqUajPlLwk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEmmEi) +STUB( + "LLrp4B0+SWw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE5beginEv) +STUB("LLssoYjMOow", _ZNSt9type_infoD1Ev) +STUB("LLyFtEN3cEA", WKPreferencesGetAuthorAndUserStylesEnabled) +STUB( + "LM3QwehNvk0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEC1EPS8_) +STUB( + "LM4CDcxonZs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEaSERS7_) +STUB( + "LM6THmgfSBs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE5beginEv) +STUB( + "LMHc1tg0hXU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEC2ERS7_) +STUB( + "LMKYvOkzyB4", + _ZN7WebCore4Page24findStringMatchingRangesERKN3WTF6StringENS1_9OptionSetINS_14FindOptionFlagEEEiRNS1_6VectorINS1_6RefPtrINS_5RangeENS1_13DumbPtrTraitsISA_EEEELm0ENS1_15CrashOnOverflowELm16EEERi) +STUB( + "LMNUFTJ+2OM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEEC1ERKSA_) +STUB("LMP8shFKvFw", _ZN3sce7Toolkit2NP2V212NetworkUtils12BandwithInfo5resetEv) +STUB("LMSQUTxmGVg", sceSaveDataSyncCloudList) +STUB("LMSZTJ-N76U", p5_32) +STUB("LMXftlH0v2Y", WKIconDatabaseRemoveAllIcons) +STUB("LMZ77TNeslg", sceCesUtf32ToEucKr) +STUB( + "LMbq1RLEOM0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEE11release_refEv) +STUB("LMlWs+oKHTg", sceHmdInternalIsMiniAppVr2d) +STUB( + "LMm0vrqPnik", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("LMpATlCGOzA", __asan_exp_load8_noabort) +STUB( + "LMpRWV5XyrQ", + _ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody19setComparedDateTimeERK10SceRtcTick) +STUB("LMpYPVSXRiI", ucal_getGregorianChange_67) +STUB( + "LMw4d3nbYfY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEC1EPKS8_) +STUB( + "LN2PdsxVp4k", + _ZN9Inspector20CSSBackendDispatcherC1ERNS_17BackendDispatcherEPNS_27CSSBackendDispatcherHandlerE) +STUB("LN2bC6QtGQE", _ZNSt14numeric_limitsIxE6digitsE) +STUB("LN3Zcb72Q0c", sceRtcGetCurrentAdNetworkTick) +STUB("LN5Y6hjwwZs", mono_aot_Sce_Vsh_Sl2_Sl2Deliverjit_code_start) +STUB( + "LN6dLCq4Cqs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEE3getEv) +STUB( + "LN8uujPz99c", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE11getResponseERS4_) +STUB( + "LN9XcsQE-9U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEcvbEv) +STUB("LNBOic2ApA4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEEC2EPS5_) +STUB("LNBomKWKUtA", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching5RoomsEED1Ev) +STUB("LNCmtRaszj8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEED1Ev) +STUB("LNIu4oY7Kho", _ZN3sce7Toolkit2NP2V29Challenge13ChallengeDataC2ERKS4_) +STUB("LNM0XBCnyKo", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119BandwidthProperties8fromJsonERKNS_4Json5ValueE) +STUB("LNNcOPldstA", sceAppInstUtilGetAddcontInfoList2) +STUB( + "LNXA6xP0KoA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEC2EPS8_) +STUB("LNlDAiLcUdA", uloc_getLineOrientation) +STUB("LNuuQgbgxCE", + _ZN7WebCore18AdClickAttribution31convertAndGetEarliestTimeToSendEONS0_10ConversionE) +STUB( + "LNvKe0DsfI4", + _ZN3sce2Np9CppWebApi14SessionManager2V127GetGameSessionsResponseBody8fromJsonERKNS_4Json5ValueE) +STUB("LNwdUejY72c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEC1Ev) +STUB("LNzAovAnOd8", FcPatternAddInteger) +STUB( + "LO-YGXANCrY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE8pushBackERKS8_) +STUB("LO2TloLGBk4", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V111OfferStatusEEC1EPS6_) +STUB( + "LO37CIW1qd8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEaSERKS7_) +STUB( + "LO4-DWz6N8Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEmmEi) +STUB("LO6XXCwAPyU", _ZN3WTF10StringImpl28convertToUppercaseWithLocaleERKNS_10AtomStringE) +STUB("LO70m1BiJPM", _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead15maxPlayersIsSetEv) +STUB( + "LO92aaR5rgU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEEC1ERSA_) +STUB("LO9SEq5ZPhM", _ZN3JSC7Symbols34triggerPromiseReactionsPrivateNameE) +STUB( + "LOGmnv0VUV8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("LOKaLcKBz0E", monoeg_g_ptr_array_add) +STUB( + "LOMkZeeXWMs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE8pushBackERKS8_) +STUB("LONFoMoQIpY", _ZN7WebCore9HTMLNames17aria_valuemaxAttrE) +STUB( + "LOPoNwieUwA", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi24ParameterToReportResults10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_20ReportResultsRequestEEE) +STUB("LORVxCVAUA8", ucase_toFullFolding_67) +STUB("LORumMmKX+0", _ZN3WTF11Persistence7Encoder6encodeEm) +STUB( + "LOS+BJKayKA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEC1Ev) +STUB("LOS4KcdYH4U", _ZN15AbstractStorage11LocalFolder5CloseEv) +STUB( + "LOT9XOrWDXA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEC1Ev) +STUB("LOXtzVeGnDg", _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead13setMaxPlayersERKi) +STUB("LOdAMm2YXIs", _ZN3sce3Xml6StringC2EPKcm) +STUB("LOgEfXqoLL0", WKURLRequestCopySettingHTTPBody) +STUB( + "LOjuuNiHSj4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEptEv) +STUB("LOoCMH7rHLE", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V18Variable14prevValueIsSetEv) +STUB( + "LOr5RB9I1Wg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEaSERS7_) +STUB("LOrGILFwIlA", _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeIPcPvEEC2ERKS7_) +STUB( + "LP3-8wzeg2Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEppEi) +STUB("LP5RvgCb3AA", eglGetCurrentSurface) +STUB("LP64B-0dbUs", _ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody14getRulesetNameEv) +STUB("LP9eSYFLKEM", mono_aot_Sce_Vsh_EventAppplt_end) +STUB( + "LPDIcCKlYGA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEEdeEv) +STUB( + "LPH4FmJlvZE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEE7add_refEv) +STUB( + "LPHn8Rq9dps", + _ZN3sce2Np9CppWebApi14SessionManager2V113ErrorResponse8setErrorERKNS1_6Common12IntrusivePtrINS3_5ErrorEEE) +STUB( + "LPKBFqztg3U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE6resizeEj) +STUB( + "LPQYhnq1L5Q", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB("LPR1Xoax82w", _ZNK7WebCore12SharedBuffer7decoderEv) +STUB( + "LPRr40DzhbA", + _ZN15AbstractStorage14StorageManager17NotifySetMetadataERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("LPUK+vGlqjI", mono_metadata_decode_value) +STUB( + "LPWbhDrG2ts", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEEC2EPNS2_10LibContextE) +STUB("LPXrs0psMG8", + _ZNK7WebCore5Range20absoluteBoundingRectEN3WTF9OptionSetINS0_20BoundingRectBehaviorEEE) +STUB("LPZdtf7++jE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEC2Ev) +STUB("LPaSs5QykuE", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V115LastUpdatedUser13unsetOnlineIdEv) +STUB("LPay9JfP+HU", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_19ProductInfoDetailedEE3getEv) +STUB( + "LPdbzerv5ac", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEC1ERS7_) +STUB( + "LPfWO3fLLj0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("LPfoZwlYzkU", mono_btls_x509_lookup_by_subject) +STUB( + "LPkTtS+TFU0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEmmEi) +STUB("LPlPRM2ATjE", _ZNK7WebCore18RenderLayerBacking11contentsBoxEv) +STUB("LPnzbzcZ924", fuse_fs_getxattr) +STUB("LPpUAOnfyxg", JSValueProtect) +STUB("LPskSecgPIg", Java_sun_awt_GnmUtils_getBackgroundEngine) +STUB("LPtlB241JSg", FT_Get_Kerning) +STUB( + "LPuBzzxrqYo", + _ZN3sce2Np9CppWebApi14SessionManager2V135PostGameSessionsResponseBodyFactory7destroyEPNS3_28PostGameSessionsResponseBodyE) +STUB("LPvzznljwQo", _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V318PsnWebErrorWrapperD1Ev) +STUB("LPzYZ+FR0BI", sceCesRefersUcsProfileCp1252) +STUB("LPzmQHV7qEo", WKFrameHandleGetFrameID) +STUB("LQ1mr+-wJaQ", + _ZNK7WebCore14SecurityOrigin33isMatchingRegistrableDomainSuffixERKN3WTF6StringEb) +STUB("LQ3kaw4CTPw", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus20lastUpdatedUserIsSetEv) +STUB("LQ6CoHcp+ug", sceNpTusGetMultiSlotDataStatusForCrossSaveAsync) +STUB("LQ6hXmvrrqs", llvm_throw_corlib_exception_abs_trampoline) +STUB("LQ9g9lYxgmc", sceVideoStreamingEngineMediaKeySystemAccessSetCdmStorageConfig) +STUB("LQDkC+LFW+0", _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead15unsetSearchableEv) +STUB("LQE3S6WxkDc", _ZN12video_parser17cVideoProfilerMp418_getFileProfileVWGEP17ff4_com_fprf_info) +STUB("LQHIxeqahlg", mono_profiler_install_code_buffer_new) +STUB( + "LQMGHYVjGAc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE3endEv) +STUB("LQQN0SwQv8c", sceGnmSdmaFlush) +STUB( + "LQQfP1JPwjY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEC2Ev) +STUB( + "LQX932wHK5w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE5clearEv) +STUB("LQXc-KZXeHU", __asan_stack_malloc_10) +STUB("LQe0fmFC36Q", _ZN12video_parser17cVideoProfilerMp4D0Ev) +STUB( + "LQjtBbdKV5U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEEdeEv) +STUB("LQouFiom26k", _ZN7WebCore22EmptyFrameLoaderClientD0Ev) +STUB("LQtzqghKQm4", sceGnmSqttGetGpuClocks) +STUB("LQuG7-fTAII", _ZN3sce7Toolkit2NP2V211SharedMedia11Screenshots8deepCopyERKS4_) +STUB( + "LQvamxROa-U", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB("LR06GK7Rrw0", _ZN3sce7Toolkit2NP2V27Session14InvitationDataD1Ev) +STUB("LR5cwFMMCVE", sceNpCommerceDialogUpdateStatus) +STUB( + "LR71EwJ485o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("LR8PD2qqKXM", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119BandwidthProperties6toJsonERNS_4Json5ValueEb) +STUB( + "LR8emOxcN8o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEC2Ev) +STUB("LRDCp97A9HM", _ZN9Inspector25TimelineBackendDispatcherD1Ev) +STUB("LRDUvLHRY5A", _ZN7WebCore9DOMWindow5focusEb) +STUB("LRGBxMVkwow", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEEC2EPS6_) +STUB( + "LRIgm1q2Yw4", + _ZN3sce7Toolkit2NP9Utilities6FutureISt4listINS1_11TusVariableENS1_15AppSTLAllocatorIS5_EEEEC2Ev) +STUB("LRLYmsAD79E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEED2Ev) +STUB( + "LRMKjBh3vOw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE8pushBackERKS8_) +STUB( + "LRP+Y9NHGfw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEdeEv) +STUB("LRPd-7N25a8", umutablecptrie_get) +STUB( + "LRSELmSzbJI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEmmEv) +STUB( + "LRZKTRiALac", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEdeEv) +STUB("LRjPCtnBg4c", _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeDataD2Ev) +STUB("LRllj8g+OPw", _ZN9Inspector22InspectorDebuggerAgent20didClearGlobalObjectEv) +STUB("LRlzqaA4h8I", _ZN3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBody10getPlayersEv) +STUB( + "LRsTjrt93tQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("LRz04P5K1Ao", WKWebsitePoliciesSetDataStore) +STUB("LS+eIyIPVgM", _ZN7WebCore15DatabaseTracker5quotaERKNS_18SecurityOriginDataE) +STUB("LSBc3No+mfM", _ZN3JSC4Heap19isCurrentThreadBusyEv) +STUB("LSCqsMBsDt8", _ZN7WebCore12GridPosition24setMaxPositionForTestingEj) +STUB( + "LSEtVU6KxhU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEneERKS9_) +STUB( + "LSHuxNtYMxU", + _ZN7WebCore4Page8goToItemERNS_11HistoryItemENS_13FrameLoadTypeENS_27ShouldTreatAsContinuingLoadE) +STUB( + "LSJ2LxOOPns", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEaSERKS9_) +STUB( + "LSMJpza0cyY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("LSMxYKlwfW4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEC2ERKS7_) +STUB("LSN9eaPHt8g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEE3getEv) +STUB( + "LSNWu2NyGjY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEptEv) +STUB("LSO5numqOP8", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEE3getEv) +STUB("LSQ3xApEoxY", sceNpServiceCheckerIntFinalize) +STUB("LSUFVBv38hw", g_slist_free_1) +STUB( + "LSVatTh5hM0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEEC2EPKS6_) +STUB("LSXECOKlQN8", sceSdmaKickQueue) +STUB("LSXwKvlefUA", _ZN7WebCore9AnimationC1Ev) +STUB( + "LSeuwzA2Rqs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEC2EPS8_) +STUB( + "LSfLxGa4D64", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE21intrusive_ptr_add_refEPS9_) +STUB("LSftlcUV8-U", _ZN12video_parser18cMp4FFLHndlManager10unuseTrackEj) +STUB("LSinoSQH790", sceJpegDecParseHeader) +STUB("LSp+r7-JWwc", _FDclass) +STUB("LSt2Pfp9GRw", sceVnaNotify) +STUB("LSxaF7YhbHs", _ZN9Inspector25DebuggerBackendDispatcherD0Ev) +STUB("LSzyZDIMMKw", _ZN7WebCore11MathMLNames14fontfamilyAttrE) +STUB("LT+yRQKusbQ", mono_aot_Sce_Vsh_AppInstUtilWrappermethod_addresses) +STUB("LT0N1oI1jWo", mono_g_hash_table_foreach) +STUB("LT7Sl39rL8k", Java_java_awt_GnmImage_nativeSetRGB) +STUB("LT8QlHtk4+g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEEC2Ev) +STUB( + "LTB6cjKxnjg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE5clearEv) +STUB( + "LTD-XgDvhyc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEED1Ev) +STUB("LTE1dovGMro", _ZNK7WebCore16HTMLInputElement11valueAsDateEv) +STUB( + "LTErBQDUG2s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEE11release_refEv) +STUB( + "LTItwYh12H0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEeqERKS9_) +STUB( + "LTMpVHAkgdw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE3endEv) +STUB("LTN7DTYCB3c", _ZN3sce7Toolkit2NP2V28Commerce7Request21DisplayCheckoutDialogD2Ev) +STUB("LTSwPfEGg0U", mono_aot_I18N_MidEastunbox_trampolines_end) +STUB("LTVZIIDuWz8", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_22ConsumeChallengeResultEED1Ev) +STUB("LTXWL-kuxGM", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEEptEv) +STUB( + "LTfMaJRfZWU", + _ZN7WebCore17PageConsoleClient9timeStampEPN3JSC9ExecStateEON3WTF3RefIN9Inspector15ScriptArgumentsENS4_13DumbPtrTraitsIS7_EEEE) +STUB("LTg6ajV2grA", _ZNK3sce2np8JsonBool3GetEv) +STUB("LTgAhSl8UAY", mono_aot_ReactNative_Components_Vshjit_code_start) +STUB( + "LThsyIX2lmo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEE11release_refEv) +STUB( + "LTmX-Olvk8M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "LTmoz212qP4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEplEm) +STUB("LTov9gMEqCU", _ZNSt8ios_base7_AddstdEPS_) +STUB( + "LU3d6UcqDVU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("LU4M2+VIi8U", _ZN9Inspector14InspectorAgentdaEPv) +STUB("LU7XLwVj1NU", _ZN7WebCore9HTMLNames5h4TagE) +STUB( + "LUAAl3hE9k0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEptEv) +STUB("LUARjf-LuyQ", _ZN7WebCore15HTMLFormElement10setEnctypeERKN3WTF6StringE) +STUB( + "LUBXPa+sUVk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEE11release_refEv) +STUB("LUD+ubNceFU", __tsan_atomic_signal_fence) +STUB("LUD7lFC2li4", _ZN3WTF6String26fromUTF8WithLatin1FallbackEPKhm) +STUB("LUHcIB+ROt8", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEEixEm) +STUB("LUMQZWNH0e8", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeINS1_11TusVariableEPvEEeqERKS7_) +STUB( + "LUOpCaXThQc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEC1EPS8_) +STUB( + "LUPPvHWuCN0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEC1Ev) +STUB("LUWh4Vaivfk", _ZN7WebCore22SocketStreamHandleImpl13platformCloseEv) +STUB("LUa+RfJHTwQ", _ZN7WebCore8JSPath2D4infoEv) +STUB( + "LUcOf76+OxY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEEC1ERSA_) +STUB( + "LUdU7y7dFnk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("LUgpodNR61M", sceSystemServiceUsbStorageGetDeviceInfo) +STUB("LUh-6rZhniA", cairo_set_scaled_font) +STUB("LUjF0ML2Xjs", _ZN23sceMetadataReaderWriter10ParserInfoC2ERKS0_) +STUB("LUjH5cqxZqE", GCC_except_table104) +STUB( + "LUoZYlw5EnU", + _ZN9Inspector21HeapBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "LUsIlWwkaNI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "LUsNaHE91G4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEixEm) +STUB( + "LUstzT782kI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE5beginEv) +STUB( + "LUtPsNvJclE", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEED1Ev) +STUB( + "LUtUkJMLE90", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_18SessionInformationENS1_15AppSTLAllocatorIS5_EEEEC2Ev) +STUB( + "LUvjGNEPg2Y", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessionsD1Ev) +STUB("LUwvy0MOSqw", sceNpTusGetFriendsDataStatusAsync) +STUB("LV0kAZ2JnWs", mono_aot_Mono_Cairounbox_trampolines_end) +STUB( + "LV20WbrZcw4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToSetMultiVariablesByUseraSERS5_) +STUB("LV2FB+f1MJE", _ZNSt14_Num_ldbl_base9is_signedE) +STUB("LV4hFZ+e7kM", il2cpp_thread_get_stack_depth) +STUB( + "LVCd5Hi6A1Q", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_8Timeline9EventTypeEEESt8optionalIT_ERKN3WTF6StringE) +STUB( + "LVGCew3mT6c", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions30unsetxPsnAcceptPlatformNamePs5Ev) +STUB("LVGgaxXVnYg", _ZTVN7WebCore24FrameDestructionObserverE) +STUB("LVLIVeh4TCc", _ZN6WebKit12ChildProcess23messageSenderConnectionEv) +STUB("LVLwSxJwwnw", glGetVertexAttribIuiv) +STUB( + "LVOYeZBLnPk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE4sizeEv) +STUB("LVYGEGM0tCs", sceDeci4hDrfpRemove) +STUB("LVZiF4jS2MU", _ZN3sce2Np9CppWebApi6Common9RefObject6AddRefEv) +STUB( + "LVaeyN0gYh8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEED1Ev) +STUB("LVb-RgymeuY", WKBundlePageOverlayClear) +STUB("LVir94aOS4c", _Z37sceGpuDebuggerSetGlobalExceptionsMaskj) +STUB("LVjM0Tcnov0", _ZN9Inspector40ApplicationCacheBackendDispatcherHandlerD2Ev) +STUB("LVlahWlGJrQ", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEED1Ev) +STUB("LVlnyg0iHyM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEEC1Ev) +STUB("LVo4U7X9KhY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEED2Ev) +STUB("LVoWI6jNuKc", mono_aot_Sce_Vsh_Np_Papcunbox_trampolines_end) +STUB("LVut7lXu51g", _ZN3WTF21LineBreakIteratorPool10sharedPoolEv) +STUB("LVxecXu4l7U", _log10_impl) +STUB("LVxr4NrZtKw", _ZN7WebCore9HTMLNames10srcdocAttrE) +STUB( + "LW1z0Vxwhvg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEmmEi) +STUB("LW7Jgpp07Xs", ucnv_cbToUWriteUChars) +STUB("LWFKuGFkToI", mono_aot_Sce_Vsh_PsnUtiljit_code_end) +STUB("LWFPkCwPUTA", mono_aot_Sce_Vsh_Np_Pbtcjit_code_end) +STUB("LWGDlFquGeo", WKWebsiteDataStoreSetStatisticsCacheMaxAgeCap) +STUB("LWIrVUh8HTA", _ZN3JSC6RegExp5matchEPNS_14JSGlobalObjectERKN3WTF6StringEj) +STUB("LWIvo3PDBPo", ubrk_setUText_67) +STUB("LWJUq5ljyUY", _ZN7WebCore11JSDOMMatrix9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("LWQpWHOSUvk", sceHmdInternalIsCommonDlgVr2d) +STUB("LWRGLruTUN8", _ZN3sce2Np9CppWebApi12Leaderboards2V15Entry19setRecordedDateTimeERK10SceRtcTick) +STUB("LWTpvj9Lt1A", uspoof_open_67) +STUB( + "LWTrfDzAZP0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE6resizeEj) +STUB( + "LWYunW+Oq2o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEE5resetEPS6_) +STUB( + "LWaOOFmmDzk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEEdeEv) +STUB( + "LWb2Qy3gI7s", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEC2EPS8_) +STUB( + "LWcY2Nlkcmc", + _ZThn16_N9Inspector22InspectorDebuggerAgent21breakpointActionProbeERN3JSC9ExecStateERKNS_22ScriptBreakpointActionEjjNS1_7JSValueE) +STUB("LWi3TIIIXtE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEEixEm) +STUB( + "LWiH5I1QDB0", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("LWigPJi97Ak", mono_aot_Sce_PlayStation_Orbis_Speechmethod_addresses) +STUB("LWjH6SZSrtg", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead25getJoinableSpecifiedUsersEv) +STUB("LWpPLSOJxCs", _ZThn16_N9Inspector22InspectorDebuggerAgent7stepOutERN3WTF6StringE) +STUB( + "LWvN9tXtNFM", + _ZN9Inspector18InjectedScriptBaseC1ERKN3WTF6StringEN10Deprecated12ScriptObjectEPNS_20InspectorEnvironmentE) +STUB("LWwJRVP1mgE", jpeg_fdct_6x3) +STUB( + "LWy23kfaDBA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEED1Ev) +STUB( + "LWyhmnwDgSY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("LXADzTIzM9I", sceNetCtlApGetInfo) +STUB( + "LXBN73cyum8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("LXDS4-UXiA0", mono_metadata_user_string) +STUB("LXHkrCV453o", sceNpTitleMetadataIntGetNpTitleId) +STUB("LXKj9081AuY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEEneERKS7_) +STUB( + "LXQusfj08zE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEEC2ERKSA_) +STUB("LXSxok-AfFY", _ZNK7WebCore13GraphicsLayer15layerTreeAsTextEj) +STUB("LXYJ384Fq2E", sceDebugGetUltQueueDataResourcePoolInfo) +STUB( + "LXgilY5ronY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE21intrusive_ptr_sub_refEPS9_) +STUB("LXlmS6PvJdU", sceSigninDialogTerminate) +STUB( + "LXn-nl8cO0k", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEdeEv) +STUB( + "LXo-OIaiUIo", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("LXo1tpFqJGs", sceKernelMemoryPoolDecommit) +STUB( + "LXppT-p0ojg", + _ZN9Inspector23TargetBackendDispatcherC1ERNS_17BackendDispatcherEPNS_30TargetBackendDispatcherHandlerE) +STUB("LXqt47GvaRA", sceLibcInternalSetMallocCallback) +STUB("LXxEsOsIa5g", u_isprint) +STUB( + "LXz1dClb7fA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE8copyFromERKS9_) +STUB("LY+KCdbXz8E", ubidi_isBidiControl_67) +STUB( + "LY-D6umDD70", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEneERKS9_) +STUB( + "LY01Qon53-U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE7reserveEi) +STUB("LY5usftTFhU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEEaSERKSA_) +STUB("LY9WTNL2bZ8", GCC_except_table7) +STUB("LYATPVwT1+c", sceVideoCoreSyncSendRequest) +STUB( + "LYJaIDL1NKo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE8capacityEv) +STUB("LYNNj5rNb7w", _ZNK7WebCore12SettingsBase17fantasyFontFamilyE11UScriptCode) +STUB( + "LYNXavq6WGs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEdeEv) +STUB("LYVV9z8+owM", sceGameUpdateCheck) +STUB( + "LYa56sqrJ-4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("LYb3RDkT2js", _ZN3sce7Toolkit2NP2V28Commerce23ServiceEntitlementLabelC2Ev) +STUB("LYbbZxXNAns", mdbg_service) +STUB( + "LYhorXcUqHg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEE11get_deleterEv) +STUB( + "LYlrk-s-KBQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEC2Ev) +STUB("LYn6kxpm6SY", _ZNK3sce2Np9CppWebApi11UserProfile2V114PersonalDetail13getMiddleNameEv) +STUB("LYo3GhIlB38", sceLibcMspaceCalloc) +STUB( + "LYt9FMI-vz0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEED0Ev) +STUB( + "LYtPuYdtjpM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEEC2ERSA_) +STUB( + "LYuaixmyEpM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEC1Ev) +STUB("LYzR6YTZDAY", + _ZN7WebCore13GraphicsLayer12replaceChildEPS0_ON3WTF3RefIS0_NS2_13DumbPtrTraitsIS0_EEEE) +STUB("LZ+z6gFSoVs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEEC2Ev) +STUB( + "LZ0jN7vHpKQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEEC1ERSA_) +STUB( + "LZ34-59n0h0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEEC2ERKSA_) +STUB( + "LZ3vIzCjVAo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEC1EPS8_) +STUB("LZ99pcmYqck", mono_runtime_exec_main) +STUB("LZAYQ1Cjs9s", __sanitizer_unaligned_store16) +STUB("LZBANaFbPqM", sceRegMgrCheckError) +STUB( + "LZDipMOi3vs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEC1EPS8_) +STUB( + "LZOMFoc3PpE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE21intrusive_ptr_sub_refEPS9_) +STUB("LZOP3XfTD9s", _ZN3sce7Toolkit2NP2V27Session7Session8deepCopyERKS4_) +STUB("LZPPDIgoaGg", _ZN3sce7Toolkit2NP2V27Session20LocalizedSessionInfoC2Ev) +STUB("LZTq4tfa24A", SwCtrlManagerCheckInitialize) +STUB("LZXEup0dILE", JSContextThreadYield) +STUB("LZjggkTtpHk", _ZN12video_parser5vpcom5WriteE) +STUB( + "LZlPz3qfTug", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEC1EPS7_PFvS9_EPNS2_10LibContextE) +STUB("LZlnmcG6iO8", _ZN3sce3pss5orbis9framework14PsmDelegateObj15AllocatePointerEv) +STUB("LZmvUdPxtWA", __tsan_write1_pc) +STUB( + "LZngR75DbGo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEE11get_deleterEv) +STUB("LZqSlU-3M0s", _ZN7bmalloc11AllIsoHeapsC1ERKSt11scoped_lockIJNS_5MutexEEE) +STUB("LZqa+qZvE1s", _ZN7WebCore7JSRange11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("LZs6hfPMnso", sceLncUtilGetResultLaunchAppByTitleId) +STUB( + "LZuH0D-x0Xs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEEC2EPSA_PFvSC_EPNS2_10LibContextE) +STUB( + "LZvCj5Gc6oI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE7reserveEi) +STUB("LZwZV0R1gd8", _ZN7WebCore9MediaList12deleteMediumERKN3WTF6StringE) +STUB("LZyPi2q90gA", _ZN3WTF3URL7setPathENS_10StringViewE) +STUB("LZygPtbSwMc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE6resizeEj) +STUB("La+ITqd79fs", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEE7get_refEv) +STUB( + "La2yo1HDzfQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEE11release_refEv) +STUB( + "La3-JlVy40k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEEC1Ev) +STUB("La5vpLrhfks", _ZN7WebCore9URLParser23maybeCanonicalizeSchemeERKN3WTF6StringE) +STUB("La79ycxEQqU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE6resizeEj) +STUB("La7xW-jcZwQ", tcsetattr) +STUB("La8MogjEivk", mono_aot_Sce_Vsh_ProfileCacheunbox_trampolines) +STUB("La9EkPp593w", _ZN13MsvMetaEditor8compact4EjPh) +STUB( + "LaAIXO3zShc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEE3getEv) +STUB("LaHzixM8byk", sceClPthreadMutexLock) +STUB( + "LaM8sbn75c0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEaSERKS9_) +STUB("LaPaA6mYA38", _Mtxdst) +STUB( + "LaRW03hHano", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "LaV5QJX5LK8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEaSERS7_) +STUB("Laac0S4FuhE", sceSystemStateMgrEnterStandby) +STUB("LaelDFxAfXE", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container16releaseDateIsSetEv) +STUB("LalIYNE3-Fk", _ZN3sce7Toolkit2NP2V28Commerce11SubCategory13IMAGE_URL_LENE) +STUB("Lap11plzUDE", sceBgftServiceIntDownloadGetApplicationDataSize) +STUB("LapIb799SSE", scePthreadTestcancel) +STUB( + "Lapxh2FY8Go", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "LaqyDjSQD+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEaSERKS7_) +STUB( + "LarGcv2d+lU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE5clearEv) +STUB("LarGdGoNVn0", _ZN3sce7Toolkit2NP21TusGetDataInputParamsC1Ev) +STUB("Lawzlk-rJE4", rgctx_fetch_trampoline_rgctx_8_p) +STUB("LazJT1ZrQys", sceTextToSpeech2RegisterTextConversionItem) +STUB("Lb-4TJuvwfw", _ZN3sce7Toolkit2NP29ConsumeEntitlementInputParamsC2Ev) +STUB("Lb-f4s+SVXM", + _ZN3sce2Np9CppWebApi13InGameCatalog2V513ContentRating8fromJsonERKNS_4Json5ValueE) +STUB( + "Lb1GP0ffkEs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE4termEv) +STUB("Lb2FOzAwQJU", u_locbund_init_67) +STUB( + "Lb4R-u90qM4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB("Lb7QyteBpOU", + _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest8fromJsonERKNS_4Json5ValueE) +STUB("Lb8q7WWmrlQ", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle8fromJsonERKNS_4Json5ValueE) +STUB("LbC-L0jrSlo", __sanitizer_get_current_allocated_bytes) +STUB("LbEI-Sst+vs", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEEplEm) +STUB( + "LbEfT9z4SLs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEixEm) +STUB("LbEkNArPMrw", _ZN3JSC8Debugger15setBlackboxTypeEmN3WTF8OptionalINS0_12BlackboxTypeEEE) +STUB("LbHgD9w6uAE", sceMbusRemoveProxy) +STUB( + "LbK-7bz3U+8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEEdeEv) +STUB( + "LbKds73K1O4", + _ZN3sce2Np9CppWebApi7Matches2V129RequestMatchStatisticsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_22RequestMatchStatisticsEEE) +STUB("LbLiLA2biaI", _LXp_mulx) +STUB("LbPy1SVqEr4", _ZN3sce7Toolkit2NP2V27Session8Sessions5resetEv) +STUB("LbQ-jU9jOsk", sceUserServiceGetGlsCameraBrightness) +STUB("LbRK+D2JBdU", mono_bitset_copyto) +STUB("LbW3QuhQMMA", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_20ChallengeRecvDetailsEE9constructEPS3_RKS3_) +STUB("LbWS4xY+szs", WKPageGetMainFrame) +STUB("LbYos1NcEMA", _ZN12video_parser13cVideoPathMgv10InitializeEv) +STUB( + "Lbafrg1l0Vg", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_34DetailedProductInfoListInputParams9ProductIdEEC1ERKS5_) +STUB("LbdWSchBrOg", mono_class_is_assignable_from) +STUB( + "LbfXIdP82pI", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions9setfieldsENS1_6Common12IntrusivePtrINS6_6VectorINS6_6StringEEEEE) +STUB( + "LbhH9NeB93I", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi27getPlayerSessionInvitationsEiRKNS4_38ParameterToGetPlayerSessionInvitationsERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_54GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("LbjWfxY1jUo", _ZN7CoreIPC15ArgumentDecoder6decodeERm) +STUB( + "LbkmivkVG+4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE3endEv) +STUB("LbmZ+exvSQQ", _ZN3sce7Toolkit2NP2V27Ranking8TempRankaSERKS4_) +STUB( + "LbpZ-huwIv4", + _ZN3WTF12base64EncodeEPKvjRNS_6VectorIcLm0ENS_15CrashOnOverflowELm16ENS_10FastMallocEEENS_18Base64EncodePolicyE) +STUB("LbpqGC7ELHs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE3endEv) +STUB("LbstfuAwMhQ", sqlite3_wal_checkpoint_v2) +STUB("Lc-l1GQi7tg", _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +STUB("Lc214aXWRgg", _ZN3JSC12addErrorInfoEPNS_9ExecStateEPNS_8JSObjectEb) +STUB("Lc4uvrrd2oE", mono_debug_print_vars) +STUB( + "LcF2h4jSoN0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEeqERKS9_) +STUB("LcHsLn97kcE", _WGetfloat) +STUB("LcMJhTa9y+c", _ZN3JSC19SourceProviderCacheD2Ev) +STUB( + "LcNBdoTaZUw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEEC1EPS8_PNS2_10LibContextE) +STUB("LcOZBHGqbFk", scePthreadRwlockattrGetpshared) +STUB( + "LcUMDZz1qHc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEC1Ev) +STUB("LcVrcRM3OxU", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession22getDisableSystemUiMenuEv) +STUB("LcWGak3Mp3c", WKBackForwardListItemCopyURL) +STUB("LcWsOD7iZTw", + _ZN3sce2Np9CppWebApi14SessionManager2V115SearchConditionC1EPNS1_6Common10LibContextE) +STUB( + "LcYxGlx9ZiY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEE7get_refEv) +STUB("LchJVpQsvgk", + _ZN3sce7Toolkit2NP8Commerce9Interface19displayDownloadListERNS1_23DownloadListInputParamsEb) +STUB( + "Lck7IYcq+ss", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "LcnlZ+j1Ki4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEE7get_refEv) +STUB("LcoiDhKoj94", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEC2Ev) +STUB( + "LcpGxUvT5E0", + _ZN7WebCore11DisplayList15DrawNativeImageC1ERKN3WTF6RefPtrI14_cairo_surfaceNS2_13DumbPtrTraitsIS4_EEEERKNS_9FloatSizeERKNS_9FloatRectESF_RKNS_20ImagePaintingOptionsE) +STUB( + "LcpmRGaA+Tc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("Lcqty+QNWFc", sceFiberStartContextSizeCheck) +STUB( + "LcuNMwTHr7A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEcvbEv) +STUB( + "LcvYvbXr8PE", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBody10setPayloadEPKc) +STUB("Lcwli-n-8mE", JSObjectCopyPropertyNames) +STUB("Ld-gfQ6mQJg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEC1ERS7_) +STUB( + "Ld1l+QHINM8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEC1EPS8_) +STUB( + "Ld1xQAiZyx8", + _ZN3JSC11SlotVisitor25addParallelConstraintTaskEN3WTF6RefPtrINS1_10SharedTaskIFvRS0_EEENS1_13DumbPtrTraitsIS6_EEEE) +STUB("Ld43hIDlfoA", mono_class_min_align) +STUB("LdAhxF8siFI", _ZN3sce2Np9CppWebApi11Matchmaking2V19Submitter14unsetAccountIdEv) +STUB( + "LdMEnAYgErk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE5beginEv) +STUB("LdOGV6ohqHw", mono_aot_Sce_Vsh_Gls_NativeCallmethod_addresses) +STUB( + "LdQ4BTOvFRw", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29putPlayerSessionsNonPsnLeaderEiRKNS4_40ParameterToPutPlayerSessionsNonPsnLeaderERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB("LdSTmOZ-KDs", cairo_matrix_transform_point) +STUB( + "LdTD+uZoJ-Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB( + "LdViLKVTHnc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEE3getEv) +STUB("Ldcx6Bfgxuc", WKBundleNavigationActionGetTypeID) +STUB("LddfS0Uiwr0", WKPageSetPageContextMenuClient) +STUB( + "LdinZWHlW1E", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "LdkRYOvB25E", + _ZN9Inspector20CSSBackendDispatcher16forcePseudoStateElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("LdoClcIfyIo", _ZN3sce7Toolkit2NP2V210Tournament24OfficialBroadCastDetailsD1Ev) +STUB( + "Ldrg0A1-WWE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("LduejRgJJi0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEC2Ev) +STUB( + "Le--uzycRZs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEEC1Ev) +STUB( + "Le-UP0Bz67Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEC2EPS8_) +STUB( + "Le-ik-R+SLA", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12string2IsSetEv) +STUB("Le0QS6QTxds", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEED1Ev) +STUB("Le1v5-mCWAA", rgctx_fetch_trampoline_rgctx_54) +STUB("Le7mifAKPRU", _ZNK3WTF10StringImpl8endsWithEDs) +STUB( + "Le7zdYi1Avw", + _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicket26getsubmitTicketRequestBodyEv) +STUB( + "LeE0ALJS26c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEC2EPS8_) +STUB( + "LeIumJWZxHo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE3endEv) +STUB("LeLYa92tlHA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEcvbEv) +STUB( + "LeTZQK-napc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE3endEv) +STUB("LeU-8RZY5cA", mono_gc_set_write_barrier) +STUB("LeU1W3saPaM", _ZNK7WebCore12NamedNodeMap6lengthEv) +STUB("LeXBTikMUko", sceVisionManagerSetCallbackForUpdateRecog) +STUB( + "Lef6BwtTVbY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEEcvbEv) +STUB( + "LejlAr7khm8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEeqERKS9_) +STUB( + "LejmSSkrTA8", + _ZN3JSC12profiledCallEPNS_9ExecStateENS_15ProfilingReasonENS_7JSValueENS_8CallTypeERKNS_8CallDataES3_RKNS_7ArgListERN3WTF8NakedPtrINS_9ExceptionEEE) +STUB( + "LekknwlhKXE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE3endEv) +STUB("LepGrgk77sM", sceAgcDriverGetOwnerName) +STUB("LeqII4J8VMQ", + _ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody18getUpdatedDateTimeEv) +STUB("LessaRjnGM4", mono_md5_init) +STUB( + "LevP0gMvSko", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEppEv) +STUB( + "LeyIa+NkTp8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("Lf-C-Kw1nFw", __tsan_atomic128_fetch_and) +STUB( + "Lf0CLaJj+lg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEneERKS9_) +STUB("Lf3DeGWC6xg", sceImeCheckFilterText) +STUB("Lf6h5krl2fA", _ZNSt8numpunctIcED0Ev) +STUB( + "Lf7cjRupKNU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEC1Ev) +STUB( + "Lf7xAk81IL0", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebErrorC1EPNS1_6Common10LibContextE) +STUB( + "Lf85Dw2g0PM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEE7get_refEv) +STUB("Lf8ne3hMj2Q", mono_assembly_fill_assembly_name) +STUB("LfJza3uFV2k", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEEC2Ev) +STUB("LfMY9H6d5mI", _ZTSSt7_MpunctIcE) +STUB("LfOVpdFit+Q", sceHttpCacheSystemInit) +STUB( + "LfPJj2RfuWU", + _ZN3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform19setUsePlayerSessionERKb) +STUB( + "LfRvacYeKEI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("LfZcWFkd3xg", WKPageClearAdClickAttribution) +STUB( + "LfcmPHqLZBs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("LfdKymUNa+s", _ZN3JSC19HeapSnapshotBuilder4jsonESt8functionIFbRKNS_16HeapSnapshotNodeEEE) +STUB("LferlGyfxiw", sqlite3_busy_timeout) +STUB("Lff3w6OBJWY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEEneERKS7_) +STUB("LffcWEebPwg", sceLoginMgrServerNotifyShellUIState) +STUB("Lffcxao-QMM", sceHttpDbgEnableProfile) +STUB("LfjVIt9q60k", + _ZNK7WebCore9FrameView23absoluteToDocumentPointENS_10FloatPointEN3WTF8OptionalIfEE) +STUB("Lfjae+MH6xg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session7SessionEEC1Ev) +STUB("Lfpgr7swjXk", rgctx_fetch_trampoline_mrgctx_103) +STUB( + "LftoJYRMngk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEE7add_refEv) +STUB("LfxJWd0yncY", sceAvControlGetPuType) +STUB("LfySO1iWq18", _ZN3sce7Toolkit2NP2V28Matching7Request10CreateRoom23LOWEST_DISPLAY_PRIORITYE) +STUB("LfyUi-LkdCk", FT_Stroker_GetBorderCounts) +STUB("LfyZztvGXnI", _ZN3sce2Np9CppWebApi6Common6VectorIlED1Ev) +STUB( + "Lg+JrtvukhE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEC2Ev) +STUB("Lg+NCE6pTwQ", sceNpProfileDialogInitialize) +STUB("Lg0s8p6Unl4", GCC_except_table435) +STUB("Lg0wFD5wTE4", _ZN7WebCore8SVGNames9colorAttrE) +STUB("Lg2ahtGW9jU", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicketaSERS5_) +STUB("Lg2isla2XeQ", sceGnmSdmaCopyLinear) +STUB("Lg5mNqy1zdQ", sceNpPushIntRegisterNotificationPacketCallback) +STUB("Lg6bTk9qyaM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEED2Ev) +STUB("Lg9Oo7x-xUQ", _ZN3JSC7Symbols36putGeneratorInternalFieldPrivateNameE) +STUB("LgC+bA2tQUg", _ZNK7WebCore11MediaPlayer21videoDecodedByteCountEv) +STUB("LgEOl4hz0xI", _ZN3sce2Np9CppWebApi6Common6VectorImE6insertENS2_13ConstIteratorImEERKmRS6_) +STUB("LgHcuCJgiEU", delegate_virtual_invoke_imt_14) +STUB("LgPxdgZH6Gk", __tsan_unaligned_write16) +STUB( + "LgR7sYI7QEM", + _ZN3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyD2Ev) +STUB( + "LgVl-GhD6Hs", + _ZNK3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBody10getPayloadEv) +STUB( + "LgWAO+pTcjs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEED2Ev) +STUB("Lge4s3h8BFA", sceUserServiceSetGlsTtsFlags) +STUB("LggxI-FSP-I", _ZN3sce7Toolkit2NP2V28Matching7Request20SetInitConfigurationD2Ev) +STUB( + "Lgi+WTpq0iQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEE11get_deleterEv) +STUB("Lgi5A4fQwHc", sceUserServiceGetIsRemotePlayAllowed) +STUB("LgiJQS-6LzU", _ZN7WebCore22EmptyFrameLoaderClient23didRestoreFromPageCacheEv) +STUB("Lglf9fWKyGY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEE7add_refEv) +STUB("Lgn3VirnPms", + _ZN7WebCore13StyledElement22setInlineStylePropertyENS_13CSSPropertyIDERKN3WTF6StringEb) +STUB( + "LgpsNrWuTd4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEC2EPS8_) +STUB( + "LgsQ+ZMnuQY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "LgtB2H8xcfc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE3endEv) +STUB("LguFTXgg94k", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEEC1EPNS2_10LibContextE) +STUB( + "Lgv0Omq5YpM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEC1EPS7_PNS2_10LibContextE) +STUB("Lgv4M9z-cNI", AnnotateIgnoreSyncEnd) +STUB( + "Lgw4BO0E6ng", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEC1ERKS7_) +STUB("Lh3eg9Z0woA", _ZN9Inspector21InspectorRuntimeAgent19setSavedResultAliasERN3WTF6StringEPKS2_) +STUB( + "Lh7is9Vfyiw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("Lh91unM2gh4", ucnv_swapAliases_67) +STUB("LhA0xOsWGDo", _ZN7WebCore9HTMLNames13compositeAttrE) +STUB("LhCPctIICxQ", sceNpMatching2GetServerId) +STUB( + "LhIiQe1O3Fo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEC1EPS8_) +STUB("LhIn1985uhc", __asan_get_current_fake_stack) +STUB("LhJ0aGaa4Xg", mono_aot_Sce_Vsh_Stickerunbox_trampolines) +STUB("LhLaRhmF6ro", _ZN7WebCore20TransformationMatrix6rotateEd) +STUB("LhP92xllE7o", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE6resizeEj) +STUB( + "LhSxfHwsyFA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEppEv) +STUB("LhVX0MoZqvQ", _ZN7WebCore27createLegacyEditingPositionERKNS_13BoundaryPointE) +STUB("LhXkgyXa0kI", uprv_floor) +STUB("LhZxfioBop4", rgctx_fetch_trampoline_mrgctx_69) +STUB("Lha-94wxunU", _ZN3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead13unsetPlatformEv) +STUB( + "LhdYfba2SjE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEE3getEv) +STUB("LhiUdPKY2qo", sceRegMgrSetbin) +STUB("Lhm5gwStMBY", + _ZN7WebCore22EmptyFrameLoaderClient28blockedByContentBlockerErrorERKNS_15ResourceRequestE) +STUB("LhsYYYyPdgs", _ZN3sce2Np9CppWebApi13InGameCatalog2V55Image11unsetFormatEv) +STUB( + "LhszWr6Dsc4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEED2Ev) +STUB( + "LhyoZVgViNw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEE7get_refEv) +STUB( + "Li6B3sulH3g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEE3getEv) +STUB("Li6RJZ33xIs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEED2Ev) +STUB("Li7qIUy8mks", _ZN10MsvUpdaterC2Ev) +STUB( + "LiDCMw3NOXY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEcvbEv) +STUB("LiDMCDVUaVU", AnnotatePCQGet) +STUB("LiDrqUJ3C+M", Java_sun_reflect_NativeConstructorAccessorImpl_newInstance0) +STUB("LiJyR7R9j9s", _ZN3WTF21MemoryPressureHandler13releaseMemoryENS_8CriticalENS_11SynchronousE) +STUB("LiPdHhuzpC8", _UIx86_64__mempool_alloc) +STUB( + "LiY1B2qT2Vo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEppEi) +STUB("LiZK5PkEeMY", EVP_PKEY_new) +STUB("LiZvA-SjCko", JSValueIsSymbol) +STUB( + "Lil2gF-1-2E", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("LilbhN7PAuk", _ZN7WebCore16HTMLInputElement10setCheckedEb) +STUB( + "Lilyf21g94I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("LitdtRdaC1k", _ZN3sce2Np9CppWebApi14SessionManager2V112NonPsnLeader13setPlayerNameEPKc) +STUB( + "Lix8kZ2pg7c", + _ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBodyC2EPNS1_6Common10LibContextE) +STUB( + "LixAMMvVYvM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("LizLWDLOZt4", _ZN7bmalloc15IsoHeapImplBase11scavengeNowEv) +STUB("Lj0pi48ul+o", + _ZN7WebCore24CoordinatedGraphicsLayer20setChildrenTransformERKNS_20TransformationMatrixE) +STUB( + "Lj1sT6JdilQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEED1Ev) +STUB( + "Lj3kSumSBvU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEEC2ERSA_) +STUB( + "Lj4DWFRIR3I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEC2EPS6_PNS2_10LibContextE) +STUB("Lj6Y0b3r4o4", ucal_inDaylightTime_67) +STUB("Lj6szd-GsJQ", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed4FeedEE3setEv) +STUB( + "LjDZAa+Eliw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEEC1ERSA_) +STUB("LjHvU9MgEwM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed13UsersWhoLikedEEC1Ev) +STUB("LjHzi7xjvUs", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEED2Ev) +STUB( + "LjI8uSFofe4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEmmEi) +STUB("LjInm72jEuo", _ZN3WTF17TextBreakIteratorC1ENS_10StringViewENS0_4ModeERKNS_12AtomicStringE) +STUB( + "LjOFedv7oVU", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData22getxPsnAtomicOperationEv) +STUB("LjbLu40rcXM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEE5resetEPS6_) +STUB("LjdLRysHU6Y", sceHmdReprojectionSetOutputMinColor) +STUB( + "Ljn4Ibi77BU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE3endEv) +STUB("LjoYwmMxdek", _ZN7WebCore11DisplayList5ScaleD0Ev) +STUB("LjwbHpEeW0A", sceRudpPollDestroy) +STUB("Ljxna5SYtvg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEixEm) +STUB("Lk1yMAgOGTs", _Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm14CpfPerfCounterE) +STUB("Lk6zcChMMfw", _ZNK3WTF10StringImpl16hasInfixEndingAtERKS0_j) +STUB("LkBkse9Pit0", sceHmdInternalSetPortConnection) +STUB("LkOFUiblGSk", _ZN3sce3Xml3Dom15DocumentBuilder20setSkipIgnorableTextEb) +STUB( + "LkOJXBEX9hg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEE11get_deleterEv) +STUB("LkOgJS6ES+w", + _ZN7WebCore21WheelEventTestMonitor33setTestCallbackAndStartMonitoringEbbON3WTF8FunctionIFvvEEE) +STUB("LkTU+9lx+Bg", sceBdSchedGetState) +STUB( + "LkWcT6ptIw8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEC2ERKS7_) +STUB("LkZ-XYvmwqE", _ZNK3sce2Np9CppWebApi11UserProfile2V16Avatar8urlIsSetEv) +STUB("Lkdm2yqZN1c", _ZN3sce2np18MemoryStreamWriterC1EPvm) +STUB("Lkf86B98qPc", sceAgcGetPacketSize) +STUB( + "LkjXaD5T8rk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEE7get_refEv) +STUB("LkjsozmDq2Q", _ZNK3sce2Np9CppWebApi13InGameCatalog2V511ErrorEntity6toJsonERNS_4Json5ValueEb) +STUB("LkkWakMW2RA", _ZN7WebCore9HTMLNames11onabortAttrE) +STUB("Lkox4DrvpWU", _ZNK7WebCore11RenderLayer35isTransparentRespectingParentFramesEv) +STUB("Lkshkij4gp8", _ZNK7WebCore18TextureMapperLayer15fixedToViewportEv) +STUB( + "LkurBzgFeJA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEE7add_refEv) +STUB( + "Lkx5W5Yh+4s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEC1ERS7_) +STUB("Ll5gO+4szVs", WKArrayGetItemAtIndex) +STUB("Ll7geN7OE0c", _ZN7Nicosia29ImageBackingTextureMapperImpl10takeUpdateEv) +STUB( + "Ll8QHgawiY8", + _ZN9Inspector24CanvasFrontendDispatcher11canvasAddedEN3WTF6RefPtrINS_8Protocol6Canvas6CanvasENS1_13DumbPtrTraitsIS5_EEEE) +STUB("LlCP8+zNfPo", sceM4aacEncFlushEx) +STUB("LlFmfrkpjW0", sceShellCoreUtilFormatHddForRestore) +STUB("LlKEaAPfV4Y", uhash_initSize_67) +STUB( + "LlKPqS4qhuA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("LlM3ydj7W1s", FT_Select_Size) +STUB("LlSOFV-f2JU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEED2Ev) +STUB("Llb63HwT4pE", nn_errno) +STUB( + "LlhhVcMMUkE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("LliPs3y6os0", _ZNK3sce2Np9CppWebApi6Common6VectorIiE8capacityEv) +STUB("LlmmrLyssoY", _ZN7WebCore16HTMLMediaElement15clearMediaCacheERKN3WTF6StringENS1_8WallTimeE) +STUB("LlodCMDbk3o", sceRtcInit) +STUB("Llv693Nx+nU", sceUserServiceSetFileSelectorSortTitle) +STUB("Llx16-4OS+0", + _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse22getMatchStartTimestampEv) +STUB("LlyS9GN1Lnk", mono_debug_set_data_table_hash) +STUB("Lm5dWz4ye20", _ZN3sce2Np9CppWebApi6Common6BinaryC2EPNS2_10LibContextE) +STUB( + "Lm9bZUHsDWs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEED2Ev) +STUB("Lm9v7UGU0RM", Java_java_awt_GnmGraphicsDevice_getScreenWidth) +STUB("LmAqwKsb97g", _ZNK7WebCore12SharedBuffer23hintMemoryNotNeededSoonEv) +STUB( + "LmDfWMywi5o", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEeqERKS9_) +STUB("LmDhtl0kAz4", _ZN23sceMetadataReaderWriter8MetadataC2EPFPvmEPFvS1_E) +STUB( + "LmJSSZ7UO48", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEE7add_refEv) +STUB( + "LmWB8sGuM1A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEEaSERSA_) +STUB("LmXBi7gEjfI", c00) +STUB("LmXIpdHppBM", __eqsf2) +STUB("LmXR95K9aqY", WKBundlePageGetTypeID) +STUB( + "LmXeeSegx2c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "LmeyLIReikw", + _ZNK3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfiles13isInitializedEv) +STUB("LmjxPORjjyo", __sanitizer_get_allocated_size) +STUB("Lmklt3OHfSU", + _ZNSt9_FacetptrISt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEE6_PsaveE) +STUB("Lmtc9GljeUA", sceNpScoreGetGameDataByAccountId) +STUB("LmuZPYQ+aFc", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V15Error14getReferenceIdEv) +STUB( + "LmxhwqFmYyM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEEcvbEv) +STUB( + "Ln3S92SBuRs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEE11get_deleterEv) +STUB( + "Ln6xY9a2IpI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEixEm) +STUB("Ln9I6YfmYJU", ft_glyphslot_alloc_bitmap) +STUB("LnFf5ShUn3E", sceDeci4hDrfpClose_fuse) +STUB("LnIh3mg-y3o", _ZN25MmsFileUpdaterFsOperation11seekTmpFileEmb) +STUB("LnIn2A6j-Gc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEE11release_refEv) +STUB( + "LnQqQ1LyC4E", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData37hasxPsnTcsComparedLastUpdatedDateTimeEv) +STUB( + "LnSiWhW8h3A", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitationsC1ERS5_) +STUB("Lngv2Zg6Zfc", _ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_18SessionInformationEE8max_sizeEv) +STUB("LnjjzlJ+L5c", _ZN3sce2np8NpCommId5ClearEv) +STUB( + "LnoiVYVxBaY", + _ZN7WebCore12ChromeClient20requestStorageAccessEON3WTF6StringES3_mmONS1_17CompletionHandlerIFvbEEE) +STUB( + "LntpPvg2i8M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("Lnu5VubYagc", _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse8getTasksEv) +STUB("Lnuqes9pmSk", jcopy_block_row) +STUB( + "LnwFnTqGvqo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEEaSERKSA_) +STUB( + "Lnx+6CxC9Vg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEC2Ev) +STUB( + "LnxlnlpEJ7I", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEdeEv) +STUB("Lnzqj7zDJho", WKUserContentURLPatternMatchesSubdomains) +STUB( + "Lo3N8y34Qi4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEC2EPS8_) +STUB( + "Lo8Xqc7nx30", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEE7add_refEv) +STUB( + "LoAw3zk58OM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEC1ERS7_) +STUB( + "LoCHHnSnfko", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEC2Ev) +STUB("LoCI65aPYYU", _ZN3sce7Toolkit2NP2V210Wordfilter16SanitizedComment5resetEv) +STUB( + "LoCzEb5vQMI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEC1EPS8_) +STUB("LoERcmdhZ80", _ZN3JSC7Symbols30allocateUint32ArrayPrivateNameE) +STUB( + "LoFqZDLsfEc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB("LoG5g70ctTU", _ZN4Manx8X509name13getNumOfItemsENS0_12X509NameTypeE) +STUB("LoGCzyaqki8", + _ZN3sce7Toolkit2NP2V29Messaging22GameDataMessageDetails25MAX_SIZE_DATA_DESCRIPTIONE) +STUB( + "LoO6NRT350k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEC1EPNS2_10LibContextE) +STUB("LoVMVrijVOk", sceNpScoreGetBoardInfo) +STUB( + "LoWd9jqfWKE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEC1Ev) +STUB( + "LoeqqBtDf+Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEEC1Ev) +STUB( + "LogMnsodV+Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEEaSERKSA_) +STUB( + "Lohpoj0CgRU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEED2Ev) +STUB("LonHHN98tMI", FT_Add_Module) +STUB( + "LonK-ilSBbE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEEC2EPNS2_10LibContextE) +STUB("LonQb19FyF4", _ZN3sce2Np9CppWebApi6Common6VectorIdEC2EPNS2_10LibContextE) +STUB("LosLlHOpNqQ", scePlayGoSetLanguageMask) +STUB("LotC9rVP3Lo", _ZN3sce2np9JsonValueD0Ev) +STUB( + "LotMMhPqWp0", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayerC1Ev) +STUB("Lota-iiR+8M", sceCesUcsProfileInitBig5Cp950) +STUB("LoxW4s4iDtI", sceLncUtilLaunchByName2) +STUB("LozEOU8+anM", sceAudioInInput) +STUB("Lp0qUez+2Oc", mono_aot_Sce_Vsh_DataTransfermethod_addresses) +STUB("Lp9dfZ9nK9c", ucnv_setDefaultName_67) +STUB( + "LpAj7UOsLsE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEneERKS9_) +STUB("LpEDTvRF2GU", _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody11setTicketIdEPKc) +STUB("LpI1Qlzmpco", _ZN7WebCore11DisplayList11ClearShadowD2Ev) +STUB( + "LpSt7VAlkr4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEaSERKS9_) +STUB("LpYGs4wM4wY", _ZN3JSC13iteratorCloseEPNS_9ExecStateENS_15IterationRecordE) +STUB( + "LpYaRuJ8wh4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEEC2Ev) +STUB( + "LpYkrAqkhl4", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsC1EPNS1_6Common10LibContextE) +STUB("LpZwQfEgtgk", _ZN3sce7Toolkit2NP2V23TUS7Request12TusUserInputD2Ev) +STUB("LpfRp+-sitI", sceNpPush2UnregisterExtendedDataFilter) +STUB( + "LphhoDrpPUg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("Lppmvb1S2gw", _ZN7WebCore11FrameLoader17HistoryController14setCurrentItemERNS_11HistoryItemE) +STUB( + "Lpunr959jRk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEneERKS9_) +STUB("LpxdSc7EQM4", _ZN2GK9PlayerPSN15requestClientIdEv) +STUB("Lq4BmOdXeks", _ZN3sce2Np9CppWebApi11Matchmaking2V110UserTicketD2Ev) +STUB("Lq7ryOJ78Sg", _ZN3sce2Np9CppWebApi14SessionManager2V114RepresentativeD2Ev) +STUB("LqBKASoabtM", sceEsvmEngineMediaKeySystemAccessSetCdmStorageConfig) +STUB( + "LqCRfxFaoH0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE5clearEv) +STUB("LqCiDsdcKRw", _ZN3JSC2VM18setBucketSpaceSlowEv) +STUB("LqGXW9vld38", monoeg_g_hash_table_insert_replace) +STUB("LqMTHIRzmYc", _ZTV12Mp4Retriever) +STUB( + "LqZoyabS2lE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB( + "Lqac0drpzgU", + _ZN3sce2Np9CppWebApi14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyC1EPNS1_6Common10LibContextE) +STUB("Lqbu-g9AFZo", nn_bind) +STUB("LqcMfJHJHzk", _ZNK3JSC7JSValue4dumpERN3WTF11PrintStreamE) +STUB("LqclbpVzRvM", sceFontGraphicsSetupFillMethod) +STUB("LqdDZa4McOI", + _ZN3sce2Np9CppWebApi7Matches2V119CreateMatchResponseC1EPNS1_6Common10LibContextE) +STUB( + "LqeiIwTzgN8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEED2Ev) +STUB( + "Lqli9541WIE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "LqnQu29fBdQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "Lqo2jEqgfwU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEppEv) +STUB("Lqo5NiuZSnM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEED2Ev) +STUB("Lqp4EDIRXSo", sceShareUtilityOpenShareMenu) +STUB("LqsYUDHb2DY", SwReset) +STUB("LqvNn+dsaI0", sceVideoCoreSetAudioMute) +STUB( + "Lqvs8GX6-J4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE7reserveEi) +STUB("LqwTsrK-NUw", _ZN7WebCore16VisibleSelectionC2ERKNS_5RangeENS_9EAffinityEb) +STUB( + "Lr2f0CT3dnQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEeqERKS7_) +STUB("Lr3a15XWIGw", _ZNK7WebCore13CSSImportRule4hrefEv) +STUB("Lr8ovHH9l6A", sceMsgDialogGetResult) +STUB("Lr91kLn38uM", curl_mprintf) +STUB("LrCdNgQvy2o", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyD2Ev) +STUB("LrDN5JMSdAY", mono_event_get_parent) +STUB( + "LrE8XzvDfhw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE8copyFromERKS9_) +STUB( + "LrEHkzcKEmw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEED1Ev) +STUB("LrG5rDRT-Bk", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11InvitationsEE5resetEv) +STUB("LrHAUym-r-g", _ZN3sce7Toolkit2NP2V212ActivityFeed13UsersWhoLiked8deepCopyERKS4_) +STUB("LrKTHvwbMM0", _ZN9Inspector24TargetFrontendDispatcherdlEPv) +STUB( + "LrPszJBH+j4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEE3getEv) +STUB("LrT15KUYBvc", cairo_image_surface_get_format) +STUB("LrVLyMhdlF4", _ZN9Inspector24TargetFrontendDispatchernwEmPv) +STUB( + "LrVUzvPv9n8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("LrXu7E+GLDY", _FZero) +STUB( + "Lrc1HbTI6lA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEED1Ev) +STUB( + "LreB6YxEfKo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE3endEv) +STUB("LredT8zbSlk", WKPageRunJavaScriptAlertResultListenerGetTypeID) +STUB("Lrelj2uF1Lc", sceMbusSetScratchData) +STUB("LrfNXipg+GM", + _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchStatusRequest19unsetNpServiceLabelEv) +STUB("LrhrFIcj6Zg", rgctx_fetch_trampoline_mrgctx_90_p) +STUB("Lrl-feo81C8", g_convert) +STUB("Ls+C7--QDuo", sceFaceTrackerGetUserFeature) +STUB( + "Ls+G-4uO8vQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("Ls3rKzckGXQ", scePatchCheckerEnableAutoDownload) +STUB("Ls4eWDrbNmg", sceNpUtilXmlGetOneChar) +STUB("Ls4tzzhimqQ", strcat) +STUB( + "LsB0evBhi54", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEC1Ev) +STUB("LsB538+IPrE", FT_Property_Set) +STUB("LsF2GYgfHWY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEdeEv) +STUB( + "LsHFX27nLkQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("LsLcH1FitXw", _ZN3sce2Np9CppWebApi7Matches2V116JoinMatchRequest10getPlayersEv) +STUB( + "LsUk2A2-nRw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("LsUk5LsyhDs", _ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody12playersIsSetEv) +STUB("LsVLIew2D-w", WKPreferencesSetVisibleDebugOverlayRegions) +STUB("LsWB0JM1C6k", _ZThn120_N7WebCore16HTMLMediaElement5pauseEv) +STUB("LsaZNLQQwUY", _ZNK7WebCore11MediaPlayer7preloadEv) +STUB( + "LscaQ4auCU8", + _ZN3JSC15encodeCodeBlockERNS_2VMERKNS_13SourceCodeKeyEPKNS_17UnlinkedCodeBlockEiRNS_18BytecodeCacheErrorE) +STUB( + "LsmptPcRLh0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEED1Ev) +STUB( + "Lsrq3Xi9TyM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEE5resetEPS9_) +STUB("Lsu4XJJ3V2o", FcLangSetAdd) +STUB("Lsvo3HZpVVI", sceNpManagerUtilGetVshScopeList) +STUB("LsyswTUNTRs", FT_Matrix_Multiply_Scaled) +STUB( + "Lt-pvpkUkvQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE5beginEv) +STUB("Lt3sf9ROn9Y", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE5beginEv) +STUB("Lt4407UMs2o", _ZNSt7collateIcED0Ev) +STUB( + "Lt5MgVFYPow", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStats16setincludeFieldsEPKc) +STUB( + "Lt7W3EUaGzg", + _ZN7WebCore9FrameView13paintContentsERNS_15GraphicsContextERKNS_7IntRectENS_6Widget25SecurityOriginPaintPolicyE) +STUB("Lt7u5PXrxpc", + _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponseC2EPNS1_6Common10LibContextE) +STUB("LtA5aM-3lbw", _ZN7WebCore20GraphicsContextStateC2Ev) +STUB("LtBBDJEZXhY", u_isalpha) +STUB("LtF-jTMby10", Java_sun_awt_GnmUtils_createEqueue) +STUB("LtGMfy0pCj4", sceLncUtilGetAppCategoryType) +STUB( + "LtIV8N5IYo0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEC2EPS6_PNS2_10LibContextE) +STUB( + "LtIb04-6k20", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE3endEv) +STUB( + "LtMaTuMXEWY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEE7get_refEv) +STUB("LtTA7DK81HU", utext_copy_67) +STUB("LtTLpfZx9hU", _ZNK3sce2Np9CppWebApi14SessionManager2V15Error11sourceIsSetEv) +STUB("LtTouSCZjHM", sceAgcCbNop) +STUB( + "LtXxp9OpEPI", + _ZN7WebCore16HTMLTableElement8setTFootEON3WTF6RefPtrINS_23HTMLTableSectionElementENS1_13DumbPtrTraitsIS3_EEEE) +STUB("LtYqw9M23hw", sceNpIntGetNpTitleIdSecret) +STUB("LtaP8denrAU", sceCesSJisToUcs2) +STUB( + "Ltcpm4rzI7o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEE11release_refEv) +STUB("LtdI8pVuGvY", mono_image_load_file_for_image) +STUB( + "LtdUj1hXNVM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEC2Ev) +STUB( + "LtjRDJcVKMY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEED1Ev) +STUB("LtkeQwMIEWY", sceNpRtcParseRFC3339) +STUB( + "LttHAxzE0Fc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE8pushBackERKS8_) +STUB( + "LtujYbXWVhk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEppEi) +STUB("Lty4XOWZ-eM", _ZN3JSC7Symbols20findIndexPrivateNameE) +STUB( + "Lu2BBe84jTI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEptEv) +STUB("Lu44f2ODjhg", _ZN3IPC15ArgumentDecoder6decodeERt) +STUB("LuATVidxU1M", _ZN12video_parser18cMp4FFLHndlManager20getFF4UBoxSearchHndlEyy) +STUB("LuDSC7EdhME", _ZN7WebCore12TextEncodingC2EPKc) +STUB("LuLTRt0rfTw", _sceUltWaitingQueueResourcePoolOptParamInitialize) +STUB( + "LuNRk6mxxuk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEE11get_deleterEv) +STUB("LuP1plTAR7g", glOrbisTexImageResourceSCE) +STUB( + "LuRoYDoLJ-E", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEplEm) +STUB( + "LuT6vcKVrPw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEdeEv) +STUB( + "LuUFO1VXhN0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEEdeEv) +STUB( + "LuW755ohUDc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "LuXb10rWt6I", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEEiRNS2_10LibContextEPT_m) +STUB( + "LuaAu53gLeg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEED2Ev) +STUB( + "Luci1n5U3ZE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE21intrusive_ptr_sub_refEPS9_) +STUB("Ludc0ycnXxQ", _ZNK7WebCore15HTTPHeaderField5valueEv) +STUB("LudizOI9A8w", mono_get_exception_serialization) +STUB("LueZxsZ3MzI", uprv_decNumberQuantize_67) +STUB( + "Luf4zM3nH40", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("LuiHf1-7Ljo", _ZN7WebCore8SVGNames10animateTagE) +STUB( + "Luk2AHoGZco", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEEC2ERKSA_) +STUB( + "LuxmK0eYueA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEC2EPKS8_) +STUB("LuyOly5kVs4", rgctx_fetch_trampoline_rgctx_74) +STUB("Lv+HgpCH0l4", _ZNK7WebCore5Frame6pageIDEv) +STUB("Lv+ojj9G798", mono_aot_System_Web_Servicesunwind_info) +STUB("Lv1AbBshtNo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEE7add_refEv) +STUB( + "Lv4LA-Au71Y", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "Lv6RbMZX5vM", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("Lv7nelJ547U", __cxx_global_var_init .30) +STUB( + "LvGBqqNITeU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEcvbEv) +STUB("LvLMwrQ0tdc", SHA224_Update) +STUB("LvLdnjxdEVQ", sceVideoCoreInterfaceDestroyCanvasContext) +STUB("LvLuiirFk8U", __atomic_fetch_or_1) +STUB( + "LvOINVROtwU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("LvS3WmcWVuI", _ZN3sce7Toolkit2NP22CreateNpSessionRequestC1Ev) +STUB("LvSzmTZ0Mss", ucnv_toUChars) +STUB("LvYa+e31sn0", _ZL19get_type_info_entryP15_Unwind_ContextP13dwarf_eh_lsdai) +STUB( + "LvdVUr6s1Qo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("Lve0jCux1P0", _ZN7WebCore20TransformationMatrix10rectToRectERKNS_9FloatRectES3_) +STUB("LviQNhT7V9I", sceVideoCoreGetPlayStatus2) +STUB( + "LvrHBzGAlpQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEE5resetEPS9_) +STUB( + "Lvv0FhW0b-0", + _ZN3JSC16profiledEvaluateEPNS_14JSGlobalObjectENS_15ProfilingReasonERKNS_10SourceCodeENS_7JSValueERN3WTF8NakedPtrINS_9ExceptionEEE) +STUB("Lw1mm+b3Wpc", _ZN7WebCore11MathMLNames10mfencedTagE) +STUB( + "Lw3Lm07OBn8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEC2EPS8_) +STUB("Lw3aQwNM3Mo", _ZN7WebCore16MIMETypeRegistry29isSupportedJavaScriptMIMETypeERKN3WTF6StringE) +STUB( + "Lw3y-bVEGLA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEneERKS9_) +STUB( + "Lw4mW6vvqk0", + _ZN7WebCore11JSImageDataC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_9ImageDataENS6_13DumbPtrTraitsIS8_EEEE) +STUB("Lw6seBkJxu0", _ZN3sce2Np9CppWebApi7Matches2V119RequestInGameRoster10getPlayersEv) +STUB("Lw8wfmCaxlQ", sceSrcUtilityGetDelaySamples) +STUB( + "LwCHbXPtY34", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEC1Ev) +STUB( + "LwCqsh1RVZ4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("LwG8g3niqwA", sceKernelDlsym) +STUB("LwGrNk25QbE", _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeDataD1Ev) +STUB( + "LwI-9ZUlXAY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEixEm) +STUB( + "LwJGTys4-Sk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("LwOTtPShu1A", mono_aot_Sce_Vsh_Orbis_CdlgServerNpCommercejit_code_end) +STUB( + "LwQXzyPBIrk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEE7get_refEv) +STUB("LwQztOS2lSA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEmmEv) +STUB( + "LwSiGRM82As", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEEC2ERS9_) +STUB( + "LwWrug-t35M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "Lwd4VQHnUTc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE3endEv) +STUB( + "LwdCNKfPGB0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEEC2ERKS9_) +STUB( + "LwfEy9FPDms", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEmmEv) +STUB("LwfoWagdxPw", _ZN7WebCore18ImageBufferBackendD2Ev) +STUB("LwiybUx9yTw", _ZNK7WebCore24CachedResourceHandleBasentEv) +STUB("LwjKjkJmfcQ", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_21AbortGameDataResponseEED1Ev) +STUB( + "Lwp5PMmmli0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEEaSERSA_) +STUB("LwtBQ63orO8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V114SearchOperatorEEC2EPS6_) +STUB( + "LwuoPy3q2iA", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB( + "LwvG8eybHA0", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesC1EPNS1_6Common10LibContextE) +STUB("Lx2UnhxxNjM", _ZN3WTF14FileSystemImpl18getVolumeFreeSpaceERKNS_6StringERm) +STUB("Lx7IowQuyG0", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V18PlatformEEC2Ev) +STUB("LxB5h8w0zVI", ASN1_INTEGER_get) +STUB("LxDpuRLJHw0", mono_declsec_flags_from_method) +STUB("LxEGbb7O+SA", WKContextGetProcessModel) +STUB("LxGIYYKwKYc", rint) +STUB( + "LxGwo7yFOIE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("LxIacrWiJ3w", sceKernelRdup) +STUB("LxKs-IGDsFU", _ZNSt7collateIwE5_InitERKSt8_Locinfo) +STUB( + "LxPT6xeOc3I", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEdeEv) +STUB("LxcEU+ICu8U", feof) +STUB( + "Lxd6Tqm4FBw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEED2Ev) +STUB("LxfJIY3ZpY4", u_vsnprintf_67) +STUB("LxfVKLcwdtE", sceVnaSetInputDevice) +STUB("LxfdtqlGEEI", _ZN7WebCore10JSLocation13visitChildrenEPN3JSC6JSCellERNS1_11SlotVisitorE) +STUB("LxgWXY73QBc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEED1Ev) +STUB("Lxgze5-E3uQ", sceFiosGetSuspendCount) +STUB("Lxk6KBx9R2Y", _ZN7WebCore17DOMImplementation18createHTMLDocumentERKN3WTF6StringE) +STUB("LxkJXQ1xY0M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEC1ERS7_) +STUB( + "Lxlc+SwCt98", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "Lxz430qYVnM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEE7get_refEv) +STUB( + "Ly-XIFcaOZg", + _ZN3sce2Np9CppWebApi13InGameCatalog2V520ContentRatingFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_13ContentRatingEEE) +STUB( + "Ly4ERnoHvAc", + _ZN3sce2Np9CppWebApi14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBody10getPlayersEv) +STUB( + "Ly6V88vbx-A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEE7get_refEv) +STUB( + "Ly9vpaDZhhw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE4sizeEv) +STUB( + "LyAhubwamUI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEEC2ERKSA_) +STUB( + "LyBQLole83Y", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE5emptyEv) +STUB( + "LyF4wnizxrk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEE3getEv) +STUB( + "LyGFPzTlrIc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEEC2ERKS9_) +STUB("LyLvydnxMpQ", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V18Variable12setPrevValueERKl) +STUB("LyOypNLMoz0", hb_font_funcs_make_immutable) +STUB( + "LyP2khlQ1Vo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEE11get_deleterEv) +STUB("LyRrwIE5yMA", _ZN7WebCore10Pasteboard20typesSafeForBindingsERKN3WTF6StringE) +STUB("LyT+ncBHMW8", _ZN3sce3pss5orbis9framework12PsmStringObj6ToUtf8Ev) +STUB("LyXzCtzleAQ", sceUserServiceGetGlsLfpsSortOrder) +STUB("LyiYFmzddAU", _ZN3JSC16SymbolTableEntry16freeFatEntrySlowEv) +STUB( + "LyjJBsrgvsI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEC1EPKS8_) +STUB( + "LyjtRSXbiYc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "LynJU7REpCM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE3endEv) +STUB("LyopcaFAuYE", scePlayReadyApiVersion) +STUB( + "LyqlvK9QPqE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("Lyx2DzUL7Lc", fmaxf) +STUB("Lz1QWf3VBhU", _ZN7WebCore14SocketProviderD0Ev) +STUB( + "Lz4PitW6VhE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEC1Ev) +STUB("Lz5AYtGxIFI", sceMbusNotifyBtDisconnection) +STUB( + "Lz65LFhfh44", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "LzSL8QYmtU8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("LzScIve1BCQ", _ZN3JSC8Debugger21clearDebuggerRequestsEPNS_14JSGlobalObjectE) +STUB("LzcJ0RIItxI", _ZN9Inspector28HeapBackendDispatcherHandlerD1Ev) +STUB("LzgQdmYCow4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEEC2ERS9_) +STUB( + "LziGgq8eqVc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEppEv) +STUB("Lzj4ws7DlhQ", _ZNSt7_MpunctIcED0Ev) +STUB( + "LzkXvHVj5lk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEC1Ev) +STUB("LzkaFSvLI38", _ZN6WebKit12ChildProcessD1Ev) +STUB( + "LzlGiBOZQMw", + _ZN3sce2Np9CppWebApi14SessionManager2V151PatchGameSessionsSearchAttributesRequestBodyFactory7destroyEPNS3_44PatchGameSessionsSearchAttributesRequestBodyE) +STUB("LzmHDnlcwfQ", sceFontGetLibrary) +STUB( + "Lzo0fUo0Ooc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEED2Ev) +STUB("LzrIP543zJ4", _ZN7WebCore11FetchLoaderD0Ev) +STUB("LzrlqPj88rM", sceFsUfsMkLwfs) +STUB("LzwYYN7rruQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEE7get_refEv) +STUB( + "M+-OgZquLPY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEppEv) +STUB("M+2LiCRrhEM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEE7get_refEv) +STUB( + "M+44Afz7Meo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEEptEv) +STUB("M+8k7J+5LSk", WKPageSetDebugPaintFlags) +STUB("M+AMxjxwWlA", _ZNSt14numeric_limitsIcE9is_signedE) +STUB("M+ApfvAXtGM", _ZNK7WebCore27AuthenticationChallengeBase15protectionSpaceEv) +STUB("M+BfgdgsOd0", sceShellCoreUtilIsAppLaunched) +STUB( + "M+Cb46eHecg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "M+D3Cnwwfp0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("M+EM-xG11lE", jpeg_idct_5x10) +STUB("M+ElTgUSbuc", _ZN7WebCore18TextureMapperLayer16setTextureMapperEPNS_13TextureMapperE) +STUB("M+F+0jd4+Y0", _ZNSt14_Num_ldbl_base11round_styleE) +STUB( + "M+H54Yqzq84", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEE21intrusive_ptr_sub_refEPS7_) +STUB("M+HQlnym0PY", _ZN3JSC15WeakHandleOwnerC2ERKS0_) +STUB("M+J5CR0IjHI", _ZN3JSC19HeapSnapshotBuilder10appendNodeEPNS_6JSCellE) +STUB( + "M+K0polOw5U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEaSERKS9_) +STUB("M+PHeA8BHpo", Java_java_io_ObjectInputStream_bytesToDoubles) +STUB( + "M+QKXg9CNkY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEC2EPS6_PNS2_10LibContextE) +STUB( + "M+RRVvkMnKk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEEptEv) +STUB( + "M+VBRIQVzAY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEdeEv) +STUB("M+XOGquY4SY", _ZN7WebCore22EmptyFrameLoaderClientaSERKS0_) +STUB("M+ZTsbhxKpM", sceVorbisDecComment) +STUB("M+bKURAEUWQ", _ZNK7WebCore12TextIterator5rangeEv) +STUB("M+clD3pQf5E", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus11setDataSizeERKl) +STUB("M+n8OTEs3zY", _ZN3sce3pss4core8graphics16InitializeCsharpEPK19ScePsmConfiguration) +STUB( + "M+pl5vYWz-g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE7reserveEi) +STUB( + "M+zyq9sTt2g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB("M-4MjPhNKlw", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersC2ERS5_) +STUB("M-7DI8ISBpo", + _ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody17getNpServiceLabelEv) +STUB("M-7b4noXQUE", sceSystemServiceAcquireBgmCpuBudget) +STUB( + "M-H35DvnOks", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEC2ERKS7_) +STUB("M-H6PyRy-Ng", _ZN7WebCore8SVGNames20yChannelSelectorAttrE) +STUB("M-JkRj7X+No", sceVideoOutControlHdcpEncryption) +STUB("M-KRaPj9tQQ", _ZNSt9_Num_base8digits10E) +STUB( + "M-KlvVj8nGs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC2Ev) +STUB("M-LvbOAOGog", _ZNK3JSC17DebuggerCallFrame9thisValueEv) +STUB("M-M64qo47+Y", _ZNK3sce2Np9CppWebApi14ConnectAccount2V28PSNError6toJsonERNS_4Json5ValueEb) +STUB("M-QrHhhM3iU", _ZN3sce2Np9CppWebApi14SessionManager2V115SearchCondition10unsetValueEv) +STUB("M-VFI2DJWQA", sceAmprAmmCommandBufferUnmap) +STUB( + "M-Vm6+jTXJ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("M-YU1vNflLA", _ZTVN9Inspector23CanvasBackendDispatcherE) +STUB("M-aG2xrDafY", _ZN7WebCore16HTMLMediaElement19originsInMediaCacheERKN3WTF6StringE) +STUB( + "M-aMqegFFX8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEE5resetEPS9_) +STUB("M-cv6Alcfck", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEEmmEv) +STUB("M-ebS4MrKG8", _ZN22MmsMdCommonFsOperation13destroyBufferEv) +STUB( + "M-hpuyrH3PI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEeqERKS9_) +STUB( + "M-j+UAPQzEQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEEptEv) +STUB("M-mpR475+UY", sceVencSetDecodedFrame) +STUB( + "M-ognm+pj7Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEneERKS9_) +STUB( + "M-sRggxg3LY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEC1EPNS2_10LibContextE) +STUB("M-tWavI4cgg", _ZN3sce4Json5Value9setParentEPKS1_) +STUB( + "M09JT5auM+4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEmmEv) +STUB( + "M0AnTwKwHIg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEplEm) +STUB("M0CpWNzV-1o", sceSystemServiceUsbStorageRegisterCallbackForMapUnavailable) +STUB("M0Jx255A3Mo", uchar_swapNames) +STUB("M0QKpW7MKJY", WKContextConfigurationProcessSwapsOnNavigation) +STUB( + "M0RsL4kliIY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSB_) +STUB("M0SL7jvjcRM", _ZN3sce7Toolkit2NP2V211SharedMedia10BroadcastsC1ERKS4_) +STUB( + "M0bUfl4no6M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEppEv) +STUB("M0m0BafMFfg", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_6TicketEEC1Ev) +STUB("M0n7l76UVyE", _ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2EPKcm) +STUB( + "M0nE52+tC1I", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEcvbEv) +STUB("M0nMIe5GRfw", _ZN7CoreIPC15ArgumentEncoder13addAttachmentERKNS_10AttachmentE) +STUB("M0ttm8h7SKA", sceAgcAcbDmaDataGetSize) +STUB("M0wAVaGtgog", _ZN3JSC7Symbols18isArrayPrivateNameE) +STUB( + "M0wSBgcn8pQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEdeEv) +STUB("M0xRdNUa-ks", mono_runtime_object_init) +STUB("M0yz1LPGSaE", _ZN3WTF10StringImpl20createWithoutCopyingEPKhj) +STUB("M0z6Dr6TNnM", sceKernelReportUnpatchedFunctionCall) +STUB("M1+Xfg-PGkA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V19JoinStateEEneERKS7_) +STUB( + "M1-w4U8-fuw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEC1EPS6_PNS2_10LibContextE) +STUB( + "M12XO5PRGUI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEeqERKS9_) +STUB("M156RuYoUbU", FT_Load_Glyph) +STUB("M16uOyvsNr0", sceMbusAddAudioOutHandleAttribute) +STUB( + "M19yqsc5VIs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEmmEv) +STUB( + "M1CvsjqkJhs", + _ZN7WebCore31CrossOriginPreflightResultCache16canSkipPreflightERKN3WTF6StringERKNS1_3URLENS_23StoredCredentialsPolicyES4_RKNS_13HTTPHeaderMapE) +STUB("M1EJrOWnLuk", scePsmReadConfigurationFile) +STUB("M1Gma1ocrGE", scePlayGoOpen) +STUB( + "M1LnjRscx-w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEED2Ev) +STUB( + "M1MYO9xKmPs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEdeEv) +STUB("M1OFnlIAH-8", WKPreferencesSetTextAreasAreResizable) +STUB("M1OcbXuUDmU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEED2Ev) +STUB("M1TvFst-jrM", sceRtcConvertUtcToLocalTime) +STUB( + "M1UcYxGccvg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEE3getEv) +STUB("M1bySqqCrUc", mono_aot_Sce_Vsh_AppContentUtilWrapperjit_code_start) +STUB("M1jmeNsWVK8", _ZTIPc) +STUB( + "M1n+xu5mwyo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("M1nLQ3KYhdU", _ZN3JSC24JSPropertyNameEnumerator6s_infoE) +STUB("M1oyrqKQAK8", _ZNK7WebCore21UserContentURLPattern7matchesERKN3WTF3URLE) +STUB("M1ps1PTXL0Y", uprv_getInfinity_67) +STUB("M1qebHGl8jk", _ZN7WebCore12ChromeClient28setUpPlaybackControlsManagerERNS_16HTMLMediaElementE) +STUB( + "M1rWv0Tlcak", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToSetMultiVariablesByUser13isInitializedEv) +STUB( + "M1wIWM7-p1I", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("M1xC101lsIU", _Geterrno) +STUB("M20sd1vw+K0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEEmmEi) +STUB( + "M24LjfLKrOE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE6resizeEj) +STUB("M27ezF1iANs", glBlitFramebuffer) +STUB("M2BUB+DNEGE", sceNpWebApiCreateExtdPushEventFilter) +STUB("M2I-F2kRVDg", sr11) +STUB("M2LmqcXxnGA", + _ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody20unsetUpdatedDateTimeEv) +STUB( + "M2McEOHa-tk", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "M2PK7YTSDLo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "M2VtCruk-Bw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "M2YUG8B68AM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEEC1ERKSA_) +STUB("M2ZF-ClLhgY", sceErrorDialogOpen) +STUB("M2bGWSqt764", vfwprintf) +STUB("M2bRppC+oQw", __tsan_mutex_destroy) +STUB("M2dlUKAGMNM", _ZN7WebCore16VisibleSelectionC1Ev) +STUB("M2eV2Ax+Wa4", WKPreferencesSetPageVisibilityBasedProcessSuppressionEnabled) +STUB("M2isEnSzn6c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEC2Ev) +STUB( + "M2rF+ma3KdE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEcvbEv) +STUB("M2tnzBxypQM", delegate_virtual_invoke_12_p) +STUB("M3-8ClQTyOc", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIiEeqERKS4_) +STUB( + "M3-zZxof05s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEaSERKS7_) +STUB( + "M33TKZDr-G8", + _ZN9Inspector14InjectedScript13getPropertiesERN3WTF6StringERKS2_biibRNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime18PropertyDescriptorEEENS1_13DumbPtrTraitsISC_EEEE) +STUB("M34a21aBdv0", + _ZNK3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer16customData1IsSetEv) +STUB("M3ER4aQZimk", sceKernelStreamWriteCreate) +STUB("M3OkENHcyiU", sceSigninDialogClose) +STUB("M3PbaU7mZ7M", _ZN4Manx5Mutex4lockEv) +STUB( + "M3Qe4kEI9Sc", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21deleteMultiDataByUserEiRKNS4_32ParameterToDeleteMultiDataByUserERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB("M3RIQfv8j-U", sr09) +STUB( + "M3X3PwJCpuY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "M3bFn9VTm5U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEE21intrusive_ptr_add_refEPS7_) +STUB( + "M3cLKAzBRsk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE5eraseENS2_8IteratorIS6_EERS9_) +STUB( + "M3coAqhC038", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEC1Ev) +STUB("M3d3At918CI", _ZN3JSC7Symbols33promiseRejectionHandlePrivateNameE) +STUB( + "M3dmYxVjHR8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE8capacityEv) +STUB( + "M3eBcnW81ck", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEC1EPS8_) +STUB("M3fhHHrL1Gw", ucsdet_getAllDetectableCharsets_67) +STUB( + "M3gtrXWqJyI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE4sizeEv) +STUB("M3nB2b1kxnQ", _ZN3JSC19InlineWatchpointSet7freeFatEv) +STUB( + "M3pe9BNP27o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEC1EPKS8_) +STUB("M3u0GOCnJBU", _ZN3sce7Toolkit2NP2V27Session8SessionsC2ERKS4_) +STUB("M3wFXbYQtAA", sceNpUnregisterStateCallbackA) +STUB("M3wvfsvGb1s", _ZN3sce7Toolkit2NP2V212EventsClient10EventColorD1Ev) +STUB("M3zkWIxtrOQ", _ZN7WebCore21ContentSecurityPolicyD1Ev) +STUB( + "M40FpurAsbE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEEaSERSA_) +STUB("M41cWFIOyaw", mono_aot_Sce_Vsh_ShellCoreUtilWrapperjit_code_start) +STUB( + "M42LrQl+gmw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "M441QxXLDiw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("M46QgdVPQnM", umutablecptrie_close_67) +STUB("M47IaAVmeZA", + _ZN7WebCore12SharedBuffer6appendEON3WTF6VectorIcLm0ENS1_15CrashOnOverflowELm16EEE) +STUB( + "M48VnPVnPOg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE7popBackEv) +STUB("M4AQDDBAdoQ", _ZN7WebCore11HistoryItemC2ERKN3WTF6StringES4_S4_NS_25BackForwardItemIdentifierE) +STUB( + "M4Bl9g1S8eY", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126MatchCompletionRateFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_19MatchCompletionRateEEE) +STUB( + "M4CSmLdgPfI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEC2ERS7_) +STUB("M4Jima9IsvA", _ZN3JSC4Yarr11YarrPatternC2ERKN3WTF6StringENS_11RegExpFlagsERNS0_9ErrorCodeEPv) +STUB("M4K8XwzqwOs", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V18VariableD1Ev) +STUB("M4LYATRhRUE", sceNgs2RackGetInfo) +STUB( + "M4UV637Bp88", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEC1EPS6_PNS2_10LibContextE) +STUB("M4XlLFnzQaQ", sceNpEntitlementAccessPollUnifiedEntitlementInfo) +STUB("M4YYbSFfJ8g", setenv) +STUB( + "M4ZeFvdJlrQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "M4gVw0mlsNc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE5emptyEv) +STUB("M4pw1uAHYwU", _ZN3JSC7Symbols35typedArraySubarrayCreatePrivateNameE) +STUB( + "M4tFCcRYFhk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE6resizeEj) +STUB("M4xKWUytNMo", sceVrServiceDialogTerminate) +STUB( + "M4ylZ2Misrc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEED2Ev) +STUB( + "M4zHruzjOsA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEC2EPKS8_) +STUB( + "M4zSJyT4Abg", + _ZN3sce7Toolkit2NP2V27NpUtils17checkAvailabilityERKNS3_7Request17CheckAvailabilityEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB( + "M5+vUhScXUA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEED1Ev) +STUB( + "M50fzoFfOIA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEC2Ev) +STUB( + "M53712Om+hc", + _ZN7WebCore11JSDOMWindow3putEPN3JSC6JSCellEPNS1_9ExecStateENS1_12PropertyNameENS1_7JSValueERNS1_15PutPropertySlotE) +STUB("M57SzXaZWI0", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEEC2Ev) +STUB("M57e7fPYrR8", _ZN3IPC15ArgumentDecoder6decodeERb) +STUB("M581hEXTfZo", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEEC2ERS7_) +STUB("M5DxRze+xzs", _ZN7WebCore11MathMLNames5miTagE) +STUB( + "M5FmK3NmwK0", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Runtime15PropertyPreview4TypeEEESt8optionalIT_ERKN3WTF6StringE) +STUB( + "M5JRhfoHsPM", + _ZN9Inspector20CSSBackendDispatcher22getInlineStylesForNodeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("M5Jyo9TKYPI", sceNpUtilityTerm) +STUB("M5KJmq-gKM8", jnf) +STUB( + "M5Nc+bXgpAA", + _ZN9Inspector21InspectorRuntimeAgent24getDisplayablePropertiesERN3WTF6StringERKS2_PKbRNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime18PropertyDescriptorEEENS1_13DumbPtrTraitsISE_EEEERNS8_INSA_INSC_26InternalPropertyDescriptorEEENSF_ISK_EEEE) +STUB("M5RyY1L1RDI", __tsan_switch_to_fiber) +STUB("M5UcH7dhJNw", mono_btls_x509_name_print_string) +STUB( + "M5ZibCzWrM4", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBody16unsetInvitationsEv) +STUB( + "M5Zxha3Y-dg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("M5dtVv0ln5Q", FTA_Remove_Module_smooth) +STUB( + "M5lMr-PhjMM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB("M5puyr6kdfI", _ZN3JSC16JSStrictFunction6s_infoE) +STUB( + "M5s0JTah4qM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEptEv) +STUB("M5xhwYV0fsM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEixEm) +STUB( + "M5zIAMueMQ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEaSERKS7_) +STUB( + "M623Kz2DegA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEED2Ev) +STUB("M62jLpTKqaA", _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities8Activity13getActivityIdEv) +STUB("M666JyEakIQ", WKPreferencesGetNeedsStorageAccessFromFileURLsQuirk) +STUB( + "M69tYynt1NE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEppEi) +STUB( + "M6EerIgOzW4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("M6EnOWTxshU", _ZN4Manx6CookienwEm) +STUB("M6Fzke-gRV0", _cosf_impl) +STUB( + "M6QbxqVTnxQ", + _ZN7WebCore25WebSocketChannelInspector33willSendWebSocketHandshakeRequestEPNS_8DocumentERKNS_15ResourceRequestE) +STUB( + "M6VDUk8LJcw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEC2EPS8_) +STUB( + "M6d-9stcaLk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEEC2ERSA_) +STUB("M6fCazmaYRo", delegate_virtual_invoke_3) +STUB("M6ggviwXpLs", sceRudpPollWait) +STUB( + "M6h-BwqvIeA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEeqERKS9_) +STUB("M6nCy6H8Hs4", _Atqexit) +STUB( + "M6nodgmlkxg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("M6pA5g2mR0E", _Z27VideoPlayerVcs_SetLoopRangeimm) +STUB("M6qiY0nhk54", sceLibcHeapSetTraceMarker) +STUB( + "M6sjaHfyc9w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEC1EPS8_) +STUB("M6vHGJbOBC4", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V219WebApiFilterRequestC1EPNS1_6Common10LibContextE) +STUB("M6w-7bUrYGE", _ZN7WebCore11DisplayList17DrawFocusRingPathC1ERKNS_4PathEffRKNS_5ColorE) +STUB("M6wp6+JUSRI", sceCompositorSetIndirectCompositionCommand) +STUB("M6znLNy5P-k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEEmmEv) +STUB("M7+3rTaF1Bk", sceUlpMgrVshReadEvent) +STUB( + "M7-CqYy9wAE", + _ZN3JSC8JSObject17defineOwnPropertyEPS0_PNS_14JSGlobalObjectENS_12PropertyNameERKNS_18PropertyDescriptorEb) +STUB("M704rXTcR0U", _ZN7WebCore14JSVMClientData15initNormalWorldEPN3JSC2VME) +STUB("M72CrQTjE5A", mono_aot_Sce_Vsh_WebViewDialogjit_code_end) +STUB("M76dl-GnCs8", sceMusicPlayerServiceNextTrack) +STUB("M79DgA3XnF8", _ZTVN7WebCore11DisplayList20DrawTiledScaledImageE) +STUB("M7A+l4pYZYE", sceDeci4hDrfpOpen) +STUB("M7FIVsvMulQ", sceUpsrvUpdateGetEulaStrLen) +STUB("M7H19Nse748", _ZN7WebCore8SVGNames13clip_ruleAttrE) +STUB("M7KmRg9CERk", jrand48) +STUB( + "M7WJUg-LMck", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("M7ZzlDi-pH8", ucurr_getDefaultFractionDigitsForUsage) +STUB("M7c9P1DiVjE", _ZN9Inspector14ConsoleMessagenaEmPv) +STUB("M7eRY+R01tQ", _ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody11getLocationEv) +STUB( + "M7i4piz9Lm4", + _ZN3sce7Toolkit2NP6Events9Interface15getEventDetailsEPKNS1_23EventInformationRequestEPNS1_9Utilities6FutureINS1_16EventInformationEEEb) +STUB("M7mvWG7IyPw", _ZN7WebCore11DisplayList4ClipD0Ev) +STUB("M7nvMGJySqk", _ZN9Inspector26TimelineFrontendDispatchernwEmPv) +STUB("M7o1DcnrzY4", _ZN7WebCore16ResourceResponseC2ERKN3WTF3URLERKNS1_6StringExS7_) +STUB("M7qwhVoqyko", sceAppInstUtilAppGetCustomThemeInfo) +STUB("M7xXaEUT0AM", sceCesUtf8ToSJis) +STUB("M7zDhMX8ddM", _ZN7WebCore19HTMLTableColElement7setSpanEj) +STUB("M8+wbBy-2n0", _ZN7WebCore13MIMETypeCachedlEPv) +STUB("M829RJ26qMA", JSRemoteInspectorSetParentProcessInformation) +STUB( + "M85bkfDYbx8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEED2Ev) +STUB("M86y4bmx+WA", _ZTSb) +STUB( + "M8CSk3tNci8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEaSERS7_) +STUB("M8CnXs6+v6I", _ZN7WebCore14MicrotaskQueueC1Ev) +STUB("M8L0bOIkLh4", _ZN9Inspector22InspectorDebuggerAgent23setAsyncStackTraceDepthERN3WTF6StringEi) +STUB("M8LF3jjsskg", _ZN3JSC4Yarr9interpretEPNS0_15BytecodePatternERKN3WTF6StringEjPj) +STUB("M8MMEkTAmSk", + _ZN7WebCore10ScrollView36scrollOffsetChangedViaPlatformWidgetERKNS_8IntPointES3_) +STUB( + "M8NjIIjHLP4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE8copyFromERKS9_) +STUB( + "M8QNhP1in8g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEC1ERKS7_) +STUB( + "M8Qbn8mWsb4", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_13WhoLikedStoryENS1_15AppSTLAllocatorIS5_EEEEC1Ev) +STUB("M8VZ3iIlmyg", setgroups) +STUB( + "M8XfcZV0pkw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("M8XjMzOr1aY", _ZNK15AbstractStorage14TwitterService14GetServiceTypeEv) +STUB("M8Z-Nl2VMdM", _ZN3sce7Toolkit2NP2V28Commerce7Request25DisplayDownloadListDialogC1Ev) +STUB( + "M8dO9HVLaOA", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "M8g46R4q1mk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEC1EPNS2_10LibContextE) +STUB("M8icY9OwkKs", sceNpEntitlementAccessRequestServiceEntitlementInfo) +STUB("M8m6+Xnz9Ds", sceFiosPathNormalize) +STUB( + "M8mVT-WCfAk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEC2EPS8_) +STUB("M8mhZ0K1zNE", _ZNK7WebCore4Text9wholeTextEv) +STUB("M8nDCr49uyU", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEEC1Ev) +STUB("M8pHNPzTrBU", _ZN3sce2Np9CppWebApi7Matches2V121ResponsePlayerResultsD2Ev) +STUB( + "M8pZ7hdjAHg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEEC1ERKSA_) +STUB("M8vS+e2ktqg", mono_aot_System_Coreunwind_info) +STUB( + "M8xDbD+oYGM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE23clearOnFinishedCallbackEv) +STUB("M8ySIkxecJ4", OCSP_BASICRESP_free) +STUB("M8zfv6JPj8A", _ZN2sh8DestructEPv) +STUB( + "M9-IYHzVvTc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEC2Ev) +STUB("M94SjXo-UVA", FTA_Support_Renderer_Smooth_Lcd) +STUB("M97BIVb8Vs8", + _ZNK7WebCore6Quirks61shouldUseLegacySelectPopoverDismissalBehaviorInDataActivationEv) +STUB("M9C74OaaivY", _ZN3sce7Toolkit2NP2V29Challenge10ChallengesC2ERKS4_) +STUB("M9CtYe8dyUQ", mono_aot_Sce_Vsh_GriefReportStorageunbox_trampolines) +STUB( + "M9EDyZHL-hI", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB( + "M9F-anYY+RM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE21intrusive_ptr_sub_refEPS7_) +STUB("M9G58ZJkHUw", _ZN7WebCore21MediaRecorderProviderC1ERKS0_) +STUB( + "M9GTqNENo5U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEaSERKS9_) +STUB( + "M9H1cruqJo8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "M9OyC7kX0qU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEEptEv) +STUB("M9PNUN4QjQA", sceKernelWriteWaitOnCounterCommand) +STUB( + "M9RaVTuzCI4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEEC2Ev) +STUB("M9RtXpjSYtE", scePigletSetConfigurationVSH) +STUB("M9T9g4aScws", _ZN3JSC18BytecodeCacheErroraSERKNS_11ParserErrorE) +STUB("M9WTdcmeIOU", sceVnaGetVoiceDataCollectionSettingsAsync) +STUB("M9XZVQjNk8E", _ZNK7WebCore6Editor17shouldDeleteRangeEPNS_5RangeE) +STUB( + "M9ZF6NkCbfs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE8capacityEv) +STUB("M9Zur3ydU6g", sceSrcUtilityResample) +STUB( + "M9dJFFyqmCs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEED2Ev) +STUB( + "M9kBiG-fNUA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE21intrusive_ptr_sub_refEPS9_) +STUB("M9kQOmiczSI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEdeEv) +STUB("M9lakfS0LP4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEEC1ERKSA_) +STUB("M9noOXMhlGo", sceUserServiceSetFileBrowserFilter) +STUB( + "M9oOPAKYIms", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEEptEv) +STUB("M9pQ6esgGDM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEC2Ev) +STUB("M9sasBW1kWI", _ZN7WebCore9HTMLNames25onwebkitendfullscreenAttrE) +STUB("M9wKVlQLlos", _ZN7WebCore11RenderTheme9singletonEv) +STUB("M9xBwzqxry4", ucol_open_67) +STUB("M9yBzRKkjPc", sceAgcDriverGetResourceName) +STUB("M9z1YhPCH98", sceNpUniversalDataSystemIntRecordObjectSetInt64) +STUB("M9zgYti+txM", + _ZN3sce2Np9CppWebApi14ConnectAccount2V214PSNError_error8fromJsonERKNS_4Json5ValueE) +STUB( + "MA+34AGJjM0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEEaSERKSA_) +STUB("MA0+9ZdsOAs", delegate_invoke_impl_target_9) +STUB( + "MA1voKbveBw", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi17updateMatchDetailEiRKNS4_28ParameterToUpdateMatchDetailERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB("MA4fsBvIXjA", + _ZN12video_parser17cVideoProfilerMp411_addElementERNS_7cVpListINS_13VpMediaInfo_tEjEERS2_) +STUB( + "MA7dkTiHa84", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEC2EPS6_PNS2_10LibContextE) +STUB("MA9vSt7JImY", sceNpScoreGetRankingByRangeA) +STUB("MAAhaEVUpks", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12FriendsRanksEE12deepCopyFromERS7_) +STUB( + "MACG7krBIGg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE8copyFromERKS9_) +STUB("MAI5R6vc7Ck", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error12unsetMessageEv) +STUB("MATfP6N7eII", _Locale2) +STUB( + "MAXlctbiwMs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("MAaAR4xBNVY", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE8copyFromERKS7_) +STUB("MAalgQhejPc", _ZNSt23_Generic_error_categoryD1Ev) +STUB( + "MAc8-EId61U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("MAfh8fD31XQ", ures_getUTF8StringByKey_67) +STUB("MAmLGadodRE", WKPageReload) +STUB("MApHziT-St4", FcFontSort) +STUB("MApY6W9PMHM", _ZN3IPC15ArgumentEncoder6encodeEi) +STUB("MAqDIzmTVhQ", _ZN3sce2Np9CppWebApi6Common6VectorIiE7popBackEv) +STUB( + "MAsAAqCpVG0", + _ZN3sce7Toolkit2NP7Ranking9Interface16registerGameDataEPKNS1_23RegisterGameDataRequestEPNS1_9Utilities6FutureINS1_24RegisterGameDataResponseEEEb) +STUB("MB-MyMoHx8I", _ZN3JSC7Symbols18flatMapPrivateNameE) +STUB("MB1VCygerRU", _ZNSt13basic_ostreamIwSt11char_traitsIwEE6sentryD2Ev) +STUB("MB3EExhoaJQ", CERT_checkCertificateIssuer2) +STUB( + "MB6gwF0xegw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEE11get_deleterEv) +STUB("MBD3R5w2nho", _ZN7WebCore23CoordinatedImageBacking7addHostERNS0_4HostE) +STUB( + "MBFyEZqP-kM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEE11release_refEv) +STUB( + "MBHZ07OoGeI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE3endEv) +STUB("MBIrQeS3ILw", WKContextGarbageCollectJavaScriptObjects) +STUB("MBJYKbOvmo8", _ZN3JSC7Symbols15thenPrivateNameE) +STUB("MBMa6EFu4Ko", sceGnmValidateResetState) +STUB( + "MBQlHsLb1CM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE3endEv) +STUB("MBYc6kmK11g", _ZN3sce7Toolkit2NP15AppSTLAllocatorIcE8allocateEmPKv) +STUB("MBi5D9Wuwqo", _ZN15AbstractStorage14TwitterContentD2Ev) +STUB("MBjBkaF-9IE", sceCesEucKrToUtf32be) +STUB("MBlv8YWoyOk", sceVideoOutAddBufferAttributeOption) +STUB( + "MBpF3vC+QVk", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi22ParameterToCreateMatch21setcreateMatchRequestENS1_6Common12IntrusivePtrINS3_18CreateMatchRequestEEE) +STUB("MBq0U407794", YGNodeStyleGetHeight) +STUB("MBqJzcMpTOQ", _ZN3JSC22DeferredWatchpointFire7fireAllEv) +STUB( + "MBrpYIAhuFg", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE5getIdEv) +STUB("MBuItvba6z8", sceKernelReleaseDirectMemory) +STUB("MBvOb2GxOPg", _ZN7WebCore26MessagePortChannelRegistryD1Ev) +STUB("MBwkZncofuk", WKUserMediaPermissionCheckSetUserMediaAccessInfo) +STUB( + "MC6Cl5bvYv4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEC1Ev) +STUB("MC84ca4Rv3g", WKBatteryManagerProviderUpdateBatteryStatus) +STUB( + "MCAsOwSWmdk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEixEm) +STUB("MCC-f9Vdrok", JSSynchronousGarbageCollectForDebugging) +STUB("MCCQhElIfYo", _ZN3WTF9BitVector7setSlowERKS0_) +STUB( + "MCHQBFLC8AQ", + _ZN3sce2Np9CppWebApi11Matchmaking2V120PlayerForReadFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_13PlayerForReadEEE) +STUB("MCHUB4D8fqw", _ZN7WebCore14ScrollableArea22invalidateScrollCornerERKNS_7IntRectE) +STUB("MCJ8SkzsQxY", sceVideoOutLatencyMeasureSetStartPoint) +STUB("MCL6jlaptWw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEC1ERKS7_) +STUB("MCLGkfBmw4c", sceNpXmlParseInit) +STUB("MCPXVnQrz7Q", _Z19Ime_ConfigGetNativeimjRi) +STUB("MCPsmT2jOnM", _ZNK7WebCore13HitTestResult19isDownloadableMediaEv) +STUB("MCXbvH462z4", _ZN7WebCore9endOfWordERKNS_15VisiblePositionENS_9EWordSideE) +STUB( + "MCZ12c35mP4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE7reserveEi) +STUB( + "MCZjpQpxIZs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEC2Ev) +STUB("MCdZ06CSUOc", sceKernelCallIndirectBuffer2) +STUB("MCfbh3JL63A", _ZNK7WebCore8Document21selectedStylesheetSetEv) +STUB("MCjFh5R9IPI", _ZN3sce7Toolkit2NP2V210Tournament5MatchC1ERKS4_) +STUB("MCjmAHDZC+w", _ZN3sce7Toolkit2NP2V28Presence12Notification14PresenceUpdateaSERKS5_) +STUB( + "MCmfghdNtKU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEED2Ev) +STUB("MCnMnMU64e0", _ZN9Inspector24ConsoleBackendDispatcherD2Ev) +STUB( + "MCofF34CUQU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEE11release_refEv) +STUB("MCrm7EZmqHU", _ZN3sce7Toolkit2NP2V211SharedMedia14CommonMetadataD1Ev) +STUB("MCt4zuyBOb4", __ubsan_handle_shift_out_of_bounds) +STUB( + "MCtJ9D7B5Cs", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERe) +STUB( + "MCyBKbftquM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "MCyFMuXepF0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEptEv) +STUB("MD0r8vzTkgo", _ZN3sce7Toolkit2NP2V27Session16FixedSessionDataC1Ev) +STUB( + "MD2ebuML5kE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEC1EPS8_) +STUB("MD4QBE77KXY", _ZNK7WebCore8Document14bodyOrFramesetEv) +STUB( + "MDChuiTPw6Y", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("MDIC0vj1JZc", Java_java_io_RandomAccessFile_readBytes) +STUB("MDKCFT4GBmI", UCNV_TO_U_CALLBACK_STOP_59) +STUB("MDLD5Ly94Xk", sceAgcCbSetUcRegisterRangeDirect) +STUB("MDNtMScojMs", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V18PlatformEEptEv) +STUB("MDRmrDYppcA", _ZN7WebCore11MathMLNames12semanticsTagE) +STUB( + "MDS4M264Evk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEED1Ev) +STUB( + "MDae5mCll7Y", + _ZNK3sce2Np9CppWebApi14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBody6toJsonERNS_4Json5ValueEb) +STUB("MDapjMih-wI", mono_thread_set_max_threads) +STUB("MDbg-oAj8Aw", sceNetConfigWlanBackgroundScanQuery) +STUB("MDc5cd8HfCA", sceRtcTickAddHours) +STUB("MDczH3SxE9Q", sceNpManagerIntGetUserIdByNpId) +STUB("MDgMnL6At94", curl_slist_append) +STUB( + "MDimvIHe1AU", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE5getIdEv) +STUB( + "MDjKwfHPgz4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB("MDm1UeNYKos", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEE5resetEPS6_) +STUB("MDo32-D9KvU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEC2Ev) +STUB("MDoERBBOQmA", res_read_67) +STUB("MDr9u8cF6sg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEC1ERS7_) +STUB( + "MDrKFjj02l0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEC1Ev) +STUB("ME+KyIgladA", _ZN9Inspector21InspectorRuntimeAgentD2Ev) +STUB("ME0ImfgjmL0", sceAvSettingDebugSetDiagState) +STUB("ME1eUot7+Qw", sceAgcDriverGetRegShadowInfoAgr) +STUB("ME2+4NP17WE", mono_aot_Sce_Vsh_MorpheusUpdWrapperunbox_trampolines) +STUB("ME5vQjjzBNg", JSObjectMakeArrayBufferWithBytesNoCopy) +STUB( + "ME5vkNDLprk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEdeEv) +STUB( + "ME8vMJaEq-w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEE21intrusive_ptr_add_refEPS7_) +STUB("MEAmHMynQXE", sceFontGraphicsSetupLocation) +STUB("MEE4xlWGmaY", mspace_memalign) +STUB("MEHclURJzvg", rgctx_fetch_trampoline_rgctx_22) +STUB( + "MEHgsOaTrJE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEEcvbEv) +STUB("MEHh2nvwDnM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEEC1ERS9_) +STUB("MEJ7tc7ThwM", sceCoredumpAttachMemoryRegionAsUserFile) +STUB( + "MEL+OXI+YCg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEC2ERKS7_) +STUB("MELi-cKqWq0", _ZSt19_Xbad_function_callv) +STUB("MEO6XKmpYRI", + _ZN7WebCore32ScrollingStateFrameScrollingNode37setFixedElementsLayoutRelativeToFrameEb) +STUB( + "MEU5nIeF5Lk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEE7get_refEv) +STUB("MEW-500sD1I", sceCtrlpSetPlayData) +STUB("MEWjebIzDEI", sceFontFtSetAliasPath) +STUB("MEYMyfJxWXg", _ZN3sce2np6ThreadD0Ev) +STUB( + "MEc1hQitclw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEaSERKS9_) +STUB("MEf+3X04AJg", _ZNK3sce2Np9CppWebApi6Common6String6lengthEv) +STUB( + "MEkE3UdKQ1U", + _ZN9Inspector28DOMDebuggerBackendDispatcher28setInstrumentationBreakpointElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("MEksKX3uX4o", _ZN7WebCore12JSTimeRanges7destroyEPN3JSC6JSCellE) +STUB( + "MEkvsEtBQa4", + _ZN3sce2Np9CppWebApi14SessionManager2V157PostPlayerSessionsSessionIdInvitationsResponseBodyFactory7destroyEPNS3_50PostPlayerSessionsSessionIdInvitationsResponseBodyE) +STUB( + "MEpbG4uAkLM", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("MEted8DT97Y", _ZN3JSC4Yarr17RegularExpressionC1ERKS1_) +STUB("MEuF5zm-r4o", + _ZN3sce3pss5orbis9framework12PsmFramework24RegisterPInvokeCallTableEPKNS2_15PsmLibraryEntryE) +STUB("MEw3W8PmhtQ", + _ZN3sce2Np9CppWebApi7Matches2V121ResponseTeamStatistic8fromJsonERKNS_4Json5ValueE) +STUB( + "MF2ZvC+5bmU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEED2Ev) +STUB( + "MF4XklFVDYs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEE7get_refEv) +STUB("MF5Iqk2sIv8", _ZN3sce7Toolkit2NP2V24Auth7Request11GetAuthCodeD1Ev) +STUB( + "MF6NaRwanWE", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Network9Initiator4TypeEEESt8optionalIT_ERKN3WTF6StringE) +STUB("MF8lq+JsFCc", sdb_single_step_trampoline_p) +STUB( + "MFJTz0vmS0U", + _ZN3sce7Toolkit2NP2V29Challenge16consumeChallengeERKNS3_7Request16ConsumeChallengeEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("MFNoFK5h6ZA", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEEC2ERKS7_) +STUB( + "MFNzWhydzjg", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEEiRNS2_10LibContextEPT_m) +STUB("MFPYwGYXSa0", delegate_virtual_invoke_5) +STUB("MFTmuksR2zk", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16UnlockedTrophiesEE12deepCopyFromERS7_) +STUB("MFe91s8apQk", log1pf) +STUB( + "MFhFvw5pJh8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEE11get_deleterEv) +STUB("MFk1R-JEDFw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEaSERKS7_) +STUB("MFkiGi5kd5s", __ubsan_handle_vla_bound_not_positive_abort) +STUB("MFnPTtcUaaI", _ZN7WebCore9FrameView20enterCompositingModeEv) +STUB( + "MFoysAc7xj0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("MFp9FnJC7ZU", _ZN3IPC15ArgumentDecoder29decodeVariableLengthByteArrayERNS_13DataReferenceE) +STUB( + "MFpYuGDj1z4", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEEiRNS2_10LibContextEPT_m) +STUB("MFqdrWyu9Ls", _ZNSt14numeric_limitsIfE12max_digits10E) +STUB("MFryBDONqzI", _ZN4Manx9X509chain5getAtEi) +STUB( + "MFwobPcfZLE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEED2Ev) +STUB("MG+ObGDYePw", sceUserServiceGetTopMenuTutorialFlag) +STUB( + "MG+REMAN5+I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("MG4i0+m-FBI", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEE3getEv) +STUB( + "MGDBeULs4GM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEC2EPKS8_) +STUB("MGEIQsujKaY", FT_GlyphLoader_CheckSubGlyphs) +STUB("MGK72ntlRiw", mono_aot_Sce_Vsh_GriefReportStorageunbox_trampolines_end) +STUB("MGMwq9DNMyE", cairo_region_create) +STUB("MGUslo9y4pk", _ZN7WebCore9FrameView39setViewportConstrainedObjectsNeedLayoutEv) +STUB("MGVUejAWRxo", _ZN7WebCore9HTMLNames13uiactionsAttrE) +STUB("MGXBh0CTu8w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEEC2EPS6_) +STUB("MGi5VM-Lfq8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEED2Ev) +STUB("MGj6SADnkQ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEC2Ev) +STUB("MGkAS4ncQ90", sceAudioOutSysOpen) +STUB( + "MGpMZZwxFWc", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditions39getsetVariableWithConditionsRequestBodyEv) +STUB("MGrj20+EK+U", __sys_opmc_enable) +STUB( + "MGsRyeabMac", + _ZN7WebCore26PresentationOrderSampleMap36findSampleContainingPresentationTimeERKN3WTF9MediaTimeE) +STUB("MGvSJEHwyL8", sceNpTusTryAndSetVariableForCrossSave) +STUB("MH+31L9wv9A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEC1Ev) +STUB("MH0LyghLJEE", _ZN3sce2np14JsonDocBuilderD2Ev) +STUB("MH1gKTVEziY", sceRegMgrPrivateStorageRead) +STUB("MH3ye94AkZc", JSObjectGetPrivate) +STUB("MH56CdAJmFA", _ZN3JSC8JSObject22ensureArrayStorageSlowERNS_2VME) +STUB("MHA0XR2YHoQ", _ZNSt10bad_typeidD0Ev) +STUB( + "MHHjIYX6gMs", + _ZN9Inspector21PageBackendDispatcher12deleteCookieElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "MHJ6RQMQQoY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEED2Ev) +STUB("MHK8HDxQ164", sceVnaDisableAgentGui) +STUB( + "MHKgrUzZT8k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEEC2ERKSA_) +STUB( + "MHKqp9DcHxg", + _ZN7WebCore13createWrapperEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_4NodeENS5_13DumbPtrTraitsIS7_EEEE) +STUB("MHNehRu9aiA", _ZNK7WebCore12ISOWebVTTCue7cueTextEv) +STUB( + "MHPGkqGzrfI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEED1Ev) +STUB("MHUY7dC9vrM", scePatchCheckerCreateHandler) +STUB("MHVO5QnXNWM", _ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody10getPlayersEv) +STUB( + "MHViGeMRIts", + _ZN7WebCore11MemoryCache26removeResourcesWithOriginsEN3PAL9SessionIDERKN3WTF7HashSetINS3_6RefPtrINS_14SecurityOriginENS3_13DumbPtrTraitsIS6_EEEENS3_11DefaultHashIS9_EENS3_10HashTraitsIS9_EEEE) +STUB("MHicrkby+nk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEEmmEv) +STUB("MHka7tKNkyM", g_PS4TitleTrial) +STUB("MHp1WISR7bE", sceMbusStartAudioOutSharePlay) +STUB("MHur6qCsUus", sceAjmFinalize) +STUB("MHwQiqUEBwQ", _ZNK7WebCore8Position28offsetForPositionAfterAnchorEv) +STUB("MHwSw6gob9Q", _ZN7WebCore9HTMLNames33x_apple_data_detectors_resultAttrE) +STUB( + "MHx408JKMA0", + _ZN9Inspector20CSSBackendDispatcher33getSupportedSystemFontFamilyNamesElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("MHyK+d+72V0", _LErf_small) +STUB( + "MI+cuLq-ZII", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26RecordScoreResponseHeaders21intrusive_ptr_add_refEPS5_) +STUB("MI-5xGznrRM", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData8hasrangeEv) +STUB( + "MI-VXtcjZ2I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEC2EPKS8_) +STUB("MI2VmBx2RbM", sceNgs2RackRunCommands) +STUB("MI644fh8dHg", vzone_setTZURL_67) +STUB( + "MI6T8Pu-9k4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEaSERS7_) +STUB( + "MIIb-xBxouM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE3endEv) +STUB("MIKMQltVsW4", _ZN3WTF11Persistence5CoderINS_10AtomStringEE6encodeERNS0_7EncoderERKS2_) +STUB("MIKN--3fORE", _ZNSt15_Num_float_base12has_infinityE) +STUB("MILjKGAy8dw", _ZN7WebCore9URLParser15isSpecialSchemeERKN3WTF6StringE) +STUB("MIOD07xm8co", _ZN3sce7Toolkit2NP2V26Friend15FriendsOfFriend8deepCopyERKS4_) +STUB("MIODyYLdDQ8", jpeg_fdct_14x14) +STUB( + "MIPj1cd+tJU", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayerC1ERS5_) +STUB( + "MITwlOIqwxk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEE11get_deleterEv) +STUB( + "MIXCRVyjtOw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "MIY5j4PkXDc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB( + "MIc+dUJvnpY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "MIfbMiynbD4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB("MIhikBMCwfg", uprv_decContextRestoreStatus_67) +STUB( + "MIhuOJ4uewo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE3endEv) +STUB( + "MIlPJ4TJWF8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEE5resetEPS9_) +STUB("MIvGFlW3XyI", _ZN14OpaqueJSStringD1Ev) +STUB("MIwCdFQOMJM", png_get_PLTE) +STUB("MIwj46zsvb8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEED2Ev) +STUB( + "MIy-l-ng+4U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEED1Ev) +STUB("MIyMPw7YTGM", _ZN3sce4Json5ArrayD2Ev) +STUB( + "MJ+NqVQ-3z8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEE11release_refEv) +STUB( + "MJ-Rd3raUAA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE6resizeEj) +STUB("MJ0DA68CATI", sdb_breakpoint_trampoline) +STUB( + "MJ0XlTHa024", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("MJ1eomELrns", _ZNK3sce2Np9CppWebApi7Matches2V113RemovedPlayer9getReasonEv) +STUB("MJ8LvCFSlN4", mono_metadata_typedef_from_method) +STUB("MJ8jW45b-Ws", _ZN7WebCore8JSDOMURLC2ERKS0_) +STUB("MJAGcIT3D1w", _ZN4Manx19getFontWeightOffsetEPKwj) +STUB("MJDBDz89RlE", ucal_getWeekendTransition_67) +STUB("MJG69Q7ti+s", sceGnmDebuggerWriteGds) +STUB("MJGq3iAg210", _ZN3sce7Toolkit2NP2V23TUS7Request19AddToAndGetVariableD1Ev) +STUB("MJHB1CRpoQ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEC1ERKS7_) +STUB( + "MJJkC57w49Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEE7get_refEv) +STUB("MJLClsQPFb4", il2cpp_gchandle_free) +STUB( + "MJNPMEhbJn8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "MJNYriZdhHk", + _ZN9Inspector14InjectedScript18getFunctionDetailsERN3WTF6StringERKS2_RNS1_6RefPtrINS_8Protocol8Debugger15FunctionDetailsENS1_13DumbPtrTraitsIS9_EEEE) +STUB("MJP2vvOKllQ", _ZN15AbstractStorage14YoutubeContent4ReadEPvlPl) +STUB("MJVrwM6aTTk", FTA_Remove_Module_t1cid) +STUB( + "MJW1A8aQV7o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEEdeEv) +STUB( + "MJXyclPlMRA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEeqERKS9_) +STUB( + "MJYvUugI8zs", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser9getoffsetEv) +STUB("MJZfriWXvpE", Java_com_sony_bdjstack_org_bluray_vfs_VFSManagerImpl_proxyRequestUpdating) +STUB( + "MJgH6qLqo-Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEptEv) +STUB( + "MJibaWRIxzs", + _ZN3sce2Np9CppWebApi14SessionManager2V137PostPlayerSessionsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_30PostPlayerSessionsResponseBodyEEE) +STUB( + "MJqB5wS5gCc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE7reserveEi) +STUB( + "MJqDoceDtd4", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsers35hasxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB( + "MJtjOIs1t+k", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE8capacityEv) +STUB("MJvSN5pMA6s", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification16NewInGameMessageEE5resetEv) +STUB("MJyvNO3YKBE", _ZN7WebCore26contextMenuItemTagOpenLinkEv) +STUB("MK1aO5cRUuM", _ZNK7WebCore20ResourceResponseBase6isHTTPEv) +STUB("MK1qulhNXpY", _ZN7WebCore9URLParser24internalValuesConsistentERKNS_3URLE) +STUB( + "MK5JFn1Vm3I", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEaSERKS9_) +STUB("MK69vvVcPWo", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEEptEv) +STUB("MK6icTZ9QCE", _ZN7WebCore8SVGNames22underline_positionAttrE) +STUB("MK7VSG9UAQs", _ZN7WebCore9HTMLNames9selectTagE) +STUB( + "MK7qJxiIl+0", + _ZN9Inspector20DOMBackendDispatcher13highlightQuadElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "MK8aFRu0E2A", + _ZN3JSC23JSModuleNamespaceObject14finishCreationEPNS_14JSGlobalObjectEPNS_20AbstractModuleRecordEON3WTF6VectorISt4pairINS_10IdentifierENS3_10ResolutionEELm0ENS5_15CrashOnOverflowELm16ENS5_10FastMallocEEE) +STUB( + "MKZc7Lrb0S8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEC2EPS8_) +STUB( + "MKcLm+tS+Hw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEEaSERKSA_) +STUB("MKcYQKdqZFg", sceSdecDestroySw2) +STUB("MKhFWAdCyCw", _ZN3WTF12isMainThreadEv) +STUB( + "MKnPwAQXf4k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEE11get_deleterEv) +STUB("MKp5yvGuZNY", _ZN3sce2Np9CppWebApi6Common8IteratorIdEmmEv) +STUB( + "MKq-gHxfTXE", + _ZN7WebCore15JSDOMWindowBase38moduleLoaderCreateImportMetaPropertiesEPN3JSC14JSGlobalObjectEPNS1_9ExecStateEPNS1_14JSModuleLoaderENS1_7JSValueEPNS1_14JSModuleRecordES8_) +STUB( + "MKq57TLXSJY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE21intrusive_ptr_add_refEPS9_) +STUB("MKqFATgSrb8", _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities13ErrorResponse8getErrorEv) +STUB("MKqzHRl6vRc", _ZN7WebCore11FrameLoader6reloadEN3WTF9OptionSetINS_12ReloadOptionEEE) +STUB("MKw651XOeSY", sceFsTransactionSaveDataInitMountOpt) +STUB( + "ML-0SqS8vqs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEC2ERKS7_) +STUB( + "ML2bVoSo9bk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEppEi) +STUB("MLA06oNfF+4", scePadSetConnection) +STUB( + "MLANZAbEQsA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEEC1ERSA_) +STUB( + "MLC2RUeNqco", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("MLHevXfgHfw", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicketaSERS5_) +STUB("MLNoiVNdF1Q", WKPreferencesCreateWithIdentifier) +STUB("MLQEfkLoO24", _ZN7WebCore9HTMLNames11colgroupTagE) +STUB( + "MLTGlp9tCpg", + _ZN7WebCore31rejectPromiseWithExceptionIfAnyERN3JSC14JSGlobalObjectERNS_17JSDOMGlobalObjectERNS0_9JSPromiseERNS0_10CatchScopeE) +STUB( + "MLUL1EwZF8Q", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("MLWl90SFWNE", _ZdaPv) +STUB("MLd1-dYe1fM", JNU_ThrowIllegalAccessError) +STUB("MLg5omn7y8E", mono_aot_Sce_PlayStation_Jsonmethod_addresses) +STUB( + "MLhE8ZbKfUU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEplEm) +STUB("MLhr0BQ3148", _ZN12video_parser7cVpUtil22vp_ff4_fsize_by_threadEPvPm) +STUB("MLkhaMBtelc", _ZN3JSC9parseDateEPNS_9ExecStateERNS_2VMERKN3WTF6StringE) +STUB( + "MLoiXoQ+GwI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEEdeEv) +STUB( + "MLs00+ZTHn0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("MLvYI86FFAo", sceGameLiveStreamingSetStandbyScreenResource) +STUB("MLzVQcAOFYI", delegate_virtual_invoke_30_p) +STUB("MM-aVBE7p-A", inflateInit2_) +STUB("MM19R5iBEYs", _ZL19_sceLibcDeleteArrayPv) +STUB("MM4H2zXQPNk", _ZNK7WebCore11JSDOMWindow7wrappedEv) +STUB("MM4IZSEYytQ", sceAgcDriverSetHsOffchipParam) +STUB("MM5K3T5KE-A", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_6NpUserEED2Ev) +STUB( + "MM5QVqPjpfc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "MM6oSu+HFsM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEED2Ev) +STUB( + "MM8VpZAWCUg", + _ZN3JSC12RegExpObject27getOwnNonIndexPropertyNamesEPNS_8JSObjectEPNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB( + "MMBhCo5VFX0", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemPropertiesC2ERS5_) +STUB("MMJCZwnytHo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEcvbEv) +STUB( + "MMPIjuMdXX8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEppEi) +STUB("MMQEeN0OgJM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament6EventsEEC2Ev) +STUB("MMSo+k+Wp0Y", sysKernelGetLowerLimitUpdVersion) +STUB( + "MMaE7LYXwGo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEC2ERS7_) +STUB("MMbG34X+eNs", _ZN7WebCore11DisplayList14DrawTiledImageD2Ev) +STUB( + "MMcuZcG0EaI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEaSERKS7_) +STUB( + "MMkVZ-AAeEU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("MMlmJAL7N5w", sceAgcDcbSetBaseDrawIndirectArgsGetSize) +STUB( + "MMovFLAzcoc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEE7get_refEv) +STUB( + "MMz3pWjeeqA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "MN52lDJFfVg", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt4listINS1_11TusVariableENS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv) +STUB( + "MN5F5ucypFc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEC1EPS8_) +STUB("MN9C7fbwHgc", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEEixEm) +STUB("MNCU93-OqtA", _Ux86_64_getcontext_trace) +STUB( + "MNEfzlZE4fE", + _ZN9Inspector24BrowserBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("MNNHLFgBTWk", _ZN3sce2Np9CppWebApi11UserProfile2V16AvatarC1EPNS1_6Common10LibContextE) +STUB("MNOd-1mcngE", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISbIcSt11char_traitsIcENS2_IcEEEE10deallocateEPS6_m) +STUB( + "MNS0nTTIHxA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEEdeEv) +STUB( + "MNY4C23M+zo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEplEm) +STUB( + "MNg1kWyEqz4", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeOnlineId2AccountIdBatchC2ERS5_) +STUB("MNgJUSsjkN4", GCC_except_table480) +STUB("MNizOHoGCjA", _ZN3sce7Toolkit2NP24InviteJoinSessionRequestC1Ev) +STUB("MNu0IMCZZ6A", _ZN3JSC6JSCell9getObjectEv) +STUB( + "MNxR8QzyirQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("MO+pcJ8qSnA", mono_aot_Sce_Vsh_RemotePlayjit_got) +STUB( + "MO0-lulAxGQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEE5resetEPS7_) +STUB( + "MO1Ri66vI5Q", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V125NatConnectivityProperties8fromJsonERKNS_4Json5ValueE) +STUB("MO24vDhmS4E", sceFontCreateString) +STUB( + "MO2qZLzVsW8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEEC2ERKSA_) +STUB( + "MO3RnYG2rjQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEE11get_deleterEv) +STUB( + "MO41G7UHeI8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("MO9u2gZRZxs", coil_getpwuid) +STUB("MOBxtefPZUg", _ZNSt9exceptionD2Ev) +STUB( + "MOC0vcbOCkY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEEC1Ev) +STUB("MOI4fLJNNiM", initCommInfo) +STUB("MOISxAYBtc0", SSL_SESSION_up_ref) +STUB( + "MOOg3n8CKHk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEEC2ERKSA_) +STUB("MOQbl+Lx7OY", _ZNK15AbstractStorage17DailymotionFolder10GetServiceEv) +STUB("MORUfrvJ-Os", _ZNSo5_OsfxEv) +STUB("MOWLKgtwO-4", _Z38sceGpuDebuggerSetEnabledExceptionsMaskPN3sce3Gnm16HsStageRegistersEj) +STUB( + "MOXCjhcNJqA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "MOZPki2SBaw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEdeEv) +STUB("MOa8W2eTAAw", sceAppInstUtilGetAddons) +STUB( + "MObemTtM61g", + _ZN3sce7Toolkit2NP9Interface16registerClientIdERKSbIcSt11char_traitsIcENS1_15AppSTLAllocatorIcEEE) +STUB( + "MObuWNuwKTo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE3endEv) +STUB("MOgriHboL2M", _ZN23sceMetadataReaderWriter9freeValueEPNS_5ValueEPFvPvE) +STUB( + "MOjoTJV36qE", + _ZN7WebCore24DocumentMarkerController13removeMarkersERKNS_11SimpleRangeEN3WTF9OptionSetINS_14DocumentMarker10MarkerTypeEEENS_32RemovePartiallyOverlappingMarkerE) +STUB("MOlJpHFIPgg", _ZN3JSC27UnableToDeletePropertyErrorE) +STUB("MOmcfTi41Fk", mono_event_get_add_method) +STUB("MOntr1+ZsRE", _ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamRankResult5resetEv) +STUB("MOoNN8EUkx8", + _ZNK3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayer16getJoinTimestampEv) +STUB("MOp-AUhdfi8", sceHttp2WaitAsync) +STUB("MOs7fkdTq00", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging24GameDataMessageThumbnailEE3getEv) +STUB("MOs8PnGhPHU", _ZN3sce3Xml3Dom8Document10insertNodeENS1_6NodeIdES3_S3_) +STUB( + "MOsscu9f3Bo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEE3getEv) +STUB("MP-fc9gjO9g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEcvbEv) +STUB("MP2jbbcZGlg", rgctx_fetch_trampoline_rgctx_94_p) +STUB("MP5SORCUT6Q", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlotaSERS5_) +STUB("MP78udfnuS8", + _ZN7WebCore15GraphicsContext15drawLineForTextERKNS_9FloatRectEbbNS_11StrokeStyleE) +STUB("MP9Us74O-mg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEE11get_deleterEv) +STUB("MPAjibFezzE", _ZNK7CoreIPC15StringReference6encodeERNS_15ArgumentEncoderE) +STUB( + "MPEzEKS8ZMM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEC2Ev) +STUB( + "MPIqZwtAATk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEC2EPS8_) +STUB("MPKHHGbsMzI", mono_type_is_void) +STUB("MPKwsjbe3S8", _ZN7WebCore21NetworkStorageSession10getCookiesERKNS_3URLE) +STUB( + "MPLhKJ56uVM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEmmEv) +STUB("MPQDL+np6mI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData9terminateEv) +STUB("MPUvOTneByk", WKInspectorAttach) +STUB("MPYmtcrGwQw", EVP_aes_128_wrap) +STUB("MPdJ0tuv3O0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12BlockedUsersEE5resetEv) +STUB("MPe0EeBGM-E", scePlayGoTerminate) +STUB("MPhCP85gRP4", sceVorbisDecPcmTell) +STUB("MPlmLG4ouKU", _ZN3sce7Toolkit2NP2V210Tournament7Request19GetRegisteredRosterC1Ev) +STUB("MPlv0h7F8XU", _ZN7WebCore18JSHTMLVideoElement9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("MPq-Z-M4Xa4", sceRnpsAppMgrFinishUrlRequest) +STUB( + "MPqiXniB8Wc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE8copyFromERKS9_) +STUB("MPv4gGj4a4I", _ZN9Inspector30WorkerBackendDispatcherHandlerD0Ev) +STUB("MPzxCExHP4Q", g_queue_push_head) +STUB("MQ8yA7tOMPU", mono_aot_System_Net_Httpjit_got) +STUB( + "MQCz1XFMyMI", + _ZN7WebCore11BitmapImageC1EON3WTF6RefPtrI14_cairo_surfaceNS1_13DumbPtrTraitsIS3_EEEEPNS_13ImageObserverE) +STUB("MQDRIgsYIBY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEC2Ev) +STUB("MQFPAqQPt1s", __cxa_decrement_exception_refcount) +STUB("MQG2fUZlhWY", _ZN7WebCore9HTMLNames17indeterminateAttrE) +STUB("MQI+nL6CJkU", WKContextPreconnectToServer) +STUB("MQJQCxbLfM0", _ZNSt8numpunctIwEC2ERKSt8_Locinfomb) +STUB( + "MQJpj2hKv90", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEptEv) +STUB("MQKw1ar2Lak", _ZN7WebCore11XPathResultD1Ev) +STUB("MQSscu7l3pg", _ZN13MsvMetaEditor12getChunkInfoEjPm) +STUB("MQZ5eEw6RLk", _ZN3JSC19iteratorForIterableEPNS_14JSGlobalObjectENS_7JSValueE) +STUB("MQaz32JQzWE", _ZN7WebCore14ReadableStream11isDisturbedERN3JSC14JSGlobalObjectENS1_7JSValueE) +STUB("MQctua+I2DE", _ZN3WTFeqERKNS_7CStringEPKc) +STUB( + "MQgeow16KT8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEC2Ev) +STUB( + "MQjASpmw8NQ", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyC1EPNS1_6Common10LibContextE) +STUB("MQkFqdChuic", sceCesEucCnToUtf16) +STUB("MQkHDx1VM2c", GCC_except_table334) +STUB("MQkxI-gYPbs", + _ZN7WebCore26propagateExceptionSlowPathERN3JSC9ExecStateERNS0_10ThrowScopeEONS_9ExceptionE) +STUB("MQmRcn1Mm+k", mono_aot_System_Coreplt_end) +STUB("MQpaKvkgDqE", Java_java_lang_Runtime_freeMemory) +STUB("MQq0QINXToQ", _ZN3sce7Toolkit2NP2V23TUS15TusDataStatusesD2Ev) +STUB( + "MQvGZiuNnmM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "MQw405E9za8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEC2Ev) +STUB( + "MQwLFHMHYXA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("MQxDxBzWz40", _ZN3sce4Json5Array10push_frontERKNS0_5ValueE) +STUB("MQz00+BgIaM", mono_image_is_dynamic) +STUB("MR--eBzfvkg", _ZN7WebCore21convertToIntegerClampIaEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB("MR221Mwo0Pc", sceKernelJitCreateAliasOfSharedMemory) +STUB("MR6Uwy1V8+o", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError9getErrorsEv) +STUB("MR9LTCdGd4s", _ZN7WebCore4toJSEPN3JSC9ExecStateERNS_9DOMWindowE) +STUB("MRAIoJp2Qno", _ZN3sce2Np9CppWebApi6Common6String7replaceEmmRS3_) +STUB( + "MRBvnTwb-FI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEC2Ev) +STUB( + "MRCZlviJOl0", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody8fromJsonERKNS_4Json5ValueE) +STUB( + "MRE-OBqLdvo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEmmEi) +STUB("MRGoMKt8Wr0", _ZN7WebCore16SQLiteFileSystem29ensureDatabaseDirectoryExistsERKN3WTF6StringE) +STUB("MRPjPRjYHnI", _ZN7WebCore16HTMLInputElement8setWidthEj) +STUB("MRVnLsn-GRI", sceShellCoreUtilActivateStart) +STUB("MRWmhIY5G1A", _ZN7WebCore11RemoteFrameC1EONS_21GlobalFrameIdentifierE) +STUB( + "MReDoY7huLU", + _ZN8meta_gen11MsvPromoter29setKeyValue_TBLI_LanguageTypeENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti) +STUB("MReN-ksLzMA", _ZN7WebCore16HTMLTitleElement7setTextERKN3WTF6StringE) +STUB( + "MReOtSpt47Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEppEi) +STUB( + "MRgXxh+UA5o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEE11get_deleterEv) +STUB( + "MRixleFeivI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEmmEi) +STUB( + "MRjgzQmOHdw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEE11get_deleterEv) +STUB( + "MRucmGaXSwQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEaSERKS9_) +STUB("MRvxXiuRnXM", il2cpp_field_get_name) +STUB( + "MRwiBFUbp1A", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V333CommunicationRestrictionStatusApi33getCommunicationRestrictionStatusEiRKNS4_44ParameterToGetCommunicationRestrictionStatusERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_38CommunicationRestrictionStatusResponseEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("MRy7yqFgcoM", mono_aot_Sce_Vsh_Sl2_Sl2Commonmethod_addresses) +STUB("MS1pIganM04", _ZN3sce7Toolkit2NP2V28Commerce7ProductD1Ev) +STUB("MSJw0mUj+lU", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchStatusC1Ev) +STUB( + "MSKmNCFdFiA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("MSMPXUL5AuM", _ZN3sce2np12StreamReader8SkipDataEPNS0_6HandleElPl) +STUB( + "MSMVhP0yuxc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB( + "MSOc6b-k-UY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEdeEv) +STUB( + "MSQ0vXQjHpU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE3endEv) +STUB("MSRPfRgj8d4", _ZN7WebCore18JSHTMLImageElementD1Ev) +STUB( + "MSSvHmcbs3g", + _ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE7_GetcatEPPKNSt6locale5facetEPKS5_) +STUB("MSWZmqyr3eM", sceVideoStreamingEngineMediaKeySystemAccessCreateMediaKeys) +STUB("MSc0D-mQVtk", JVM_CompilerCommand) +STUB("MSebmTme2C0", __asan_report_exp_load2_noabort) +STUB("MSkdJuOJp4w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEppEi) +STUB("MSkk+-3JTl0", mono_aot_Sce_Vsh_KernelSysWrapperunwind_info) +STUB( + "MSo9B12pbko", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEppEi) +STUB("MSqdXQIk4no", _ZNK3sce2Np9CppWebApi6Common6VectorIlE8capacityEv) +STUB("MSr9DE8l0Sc", u_strToUTF8WithSub) +STUB("MSs83LRZpEk", _ZNK7WebCore15AffineTransform6yScaleEv) +STUB("MSsDM4u1jQw", + _ZNK7WebCore21NetworkStorageSession41resourceLoadStatisticsDebugLoggingEnabledEv) +STUB("MSsQ8vWmLNY", SSL_CTX_sess_set_new_cb) +STUB("MSviGgtBw6I", _ZN3sce7Toolkit2NP2V212ActivityFeed7StoryIdC2Ev) +STUB( + "MSwJ-kNGbVM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEptEv) +STUB( + "MSx7xuaKqpQ", + _ZN3WTF12base64EncodeEPKvjRNS_6VectorIcLm0ENS_15CrashOnOverflowELm16EEENS_18Base64EncodePolicyE) +STUB("MSxsktnjRgA", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead28getExclusiveLeaderPrivilegesEv) +STUB("MT0GwLN0a44", __asan_unregister_elf_globals) +STUB("MT2cyJG+xdo", g_hash_table_iter_next) +STUB("MT8a0F5w8sA", g_markup_parse_context_end_parse) +STUB("MT8d1WU9F+w", uprv_eastrncpy_67) +STUB("MT9twjEmWVw", _ZN3sce7Toolkit2NP2V28Commerce14ProductDetails8deepCopyERKS4_) +STUB("MTEBJdi3YNQ", sceUrlConfigResolverGetAppConfig) +STUB( + "MTEF3QmKH-k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE8copyFromERKS9_) +STUB( + "MTG+IofmFUg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEeqERKS9_) +STUB("MTHPbVoNR0A", sceImeBackendEnterCharacter) +STUB( + "MTNJaM6vQrs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE21intrusive_ptr_add_refEPS9_) +STUB("MTQC2bPeb6A", + _ZN3sce2Np9CppWebApi7Matches2V124RequestCompetitiveResultC2EPNS1_6Common10LibContextE) +STUB( + "MTUhCwQLT+Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEC2EPKS8_) +STUB("MTaAdeZUa8U", _ZNK7WebCore4Attr5valueEv) +STUB("MTi5uCmhFno", _ZN3WTF11Persistence7Encoder21encodeFixedLengthDataEPKhm) +STUB("MTifeU5UIeo", mono_jit_compile_method_inner) +STUB("MTj6g10WAsY", Java_java_io_UnixFileSystem_canonicalize0) +STUB("MTnuKt7HiN0", sceLibcBacktraceSelf) +STUB( + "MToBie040R8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE21intrusive_ptr_add_refEPS9_) +STUB("MTsj0uviO-g", _ZN7WebCore8SVGNames15arabic_formAttrE) +STUB("MTxxrOCeSig", sceVideoOutSetWindowModeMargins) +STUB("MTzWc9nxOy4", sceNpManagerIntSetRequestHeader) +STUB("MU-bCa0CaEs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE4sizeEv) +STUB( + "MU19RqPz7rQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC1Ev) +STUB("MU25eqxSDTw", _Sinh) +STUB( + "MU53gSfa4sU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEC1EPS6_PNS2_10LibContextE) +STUB("MUA8037Rmu4", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119PlayStyleProperties12setOpenEndedERKi) +STUB("MUBSdqqX-JM", _ZN3sce7Toolkit2NP2V27Session21ChangeableSessionDataD1Ev) +STUB("MUBehB39EUM", _ZNK7WebCore7IntRect10intersectsERKS0_) +STUB( + "MUCLbntcHBg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEmmEi) +STUB("MUE2CMLW-74", rgctx_fetch_trampoline_rgctx_29_p) +STUB( + "MUH5PQpdKo4", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody24unsetDisableSystemUiMenuEv) +STUB("MUMPpV8t3bg", _ZN7WebCore19ResourceRequestBase6setURLERKN3WTF3URLE) +STUB( + "MUNse5ZboJ4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEC2Ev) +STUB( + "MUTsDZWOrY4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEppEv) +STUB( + "MUVmG9ooOxk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("MUVvRbWZJhM", _ZN7WebCore16JSStringCallbackC1EPN3JSC8JSObjectEPNS_17JSDOMGlobalObjectE) +STUB( + "MUboy2JW6lo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "MUfRnfkRncU", + _ZN7WebCore14SocketProvider22createWebSocketChannelERNS_8DocumentERNS_22WebSocketChannelClientE) +STUB("MUj0IV6XFGs", sceNpUtilGetFakeDisplayNameMode) +STUB("MUjC4lbHrK4", fflush) +STUB("MUlXrcCBGO0", _ZNK7WebCore16HTMLInputElement11isWeekFieldEv) +STUB("MUpSmygnJSM", _ZNK3WTF10AtomString23convertToASCIILowercaseEv) +STUB( + "MUsSWc50oJM", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities14UserActivitiesC1EPNS1_6Common10LibContextE) +STUB("MUsfdluf54o", sceFontGraphicsDrawVertexesGlyph) +STUB("MUyBSmwGR3w", + _ZN7WebCore11DisplayList14DrawingContextC2ERKNS_9FloatSizeEPNS0_8Recorder8ObserverE) +STUB("MUyK4dE-KB8", WKPreferencesSetAllowCrossOriginSubresourcesToAskForCredentials) +STUB("MUyT8HsKtfA", __asan_init_v5) +STUB("MUyZpNLfV3I", _ZN3sce3pss5orbis9framework23TerminatePsmEventCsharpEv) +STUB( + "MV+27ZE20sg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEE7add_refEv) +STUB("MV3oV0Vfy3g", mono_aot_Sce_Vsh_Np_Managerjit_code_end) +STUB("MV4cd4A47lA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEED2Ev) +STUB("MV8JpKlSOlI", _ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBodyD1Ev) +STUB("MV8Ydp9MSdU", scePerfTraceAprNameCreate) +STUB("MVBIkqTa8MI", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate13perGenreIsSetEv) +STUB( + "MVBpO7ji0Z0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEE3getEv) +STUB( + "MVExpBYTEow", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("MVF+elex8Sw", sceLncUtilGetAppId) +STUB( + "MVKKP+iaJQ4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE5clearEv) +STUB("MVLT+C8MhRw", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session8SessionsEED2Ev) +STUB( + "MVOXNZ87e6E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEEptEv) +STUB("MVPtIf3MtL8", __floatdixf) +STUB("MVRkviV4jJw", X509_STORE_free) +STUB( + "MVRze1yeXZg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEC2EPKS8_) +STUB( + "MVT-45hpSEw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEEcvbEv) +STUB("MVY+jtY-WiQ", _ZN3sce2npneERK10SceRtcTickRKNS0_4TimeE) +STUB( + "MVYJNQ-6oIs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("MVbmLASjn5M", sceRudpPollCreate) +STUB("MVfGFf5tBf4", sceCesUtf32ToSJis) +STUB("MVgF-65FS5Y", _ZN7WebCore17JSHTMLLinkElement9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("MVgJcQQadJE", Java_sun_awt_GnmUtils_setDefaultFontHandle) +STUB("MVnBE8RX6Bw", _ZN8meta_gen11MsvPromoter17retrievePhotoInfoEv) +STUB("MVoB+R58FKc", _ZN3sce7Toolkit2NP2V27Session9SessionIdD2Ev) +STUB("MVpW7W1+7cE", _ZN9Inspector20InspectorTargetAgentnwEmPv) +STUB("MVs+O5uTjkM", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEE3getEv) +STUB("MVtXW0NChdc", AnnotateIgnoreReadsBegin) +STUB("MW+T6ZCK7wo", sceApplicationSignalShellCoreHeartBeat) +STUB( + "MW0-yTZ7z98", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEE3getEv) +STUB( + "MW2vsmob5Wk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEC2EPKS8_) +STUB( + "MW3kxAm1Np4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable8setOwnerERKNS1_6Common12IntrusivePtrINS3_5OwnerEEE) +STUB("MW5ygoZqEBs", sceNpTrophyConfigGetTrophySetVersion) +STUB("MW9gc-4D6xw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEaSERS7_) +STUB("MWIpAB8h3ls", _ZN7WebCore23ISOSchemeInformationBoxD2Ev) +STUB( + "MWLNEunXhEs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEC2Ev) +STUB("MWPOkqzYss0", sceNpAllocateKernelMemoryNoAlignment) +STUB("MWQQeS9F9Hg", _ZN9Inspector30CanvasBackendDispatcherHandlerD2Ev) +STUB( + "MWaGyeKEBjc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE3endEv) +STUB("MWiElSNE8j8", sceAgcDcbWaitUntilSafeForRendering) +STUB( + "MWikEhaN1ZE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB( + "MWk8ceW4CVI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEC1Ev) +STUB( + "MWqWyltICms", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEplEm) +STUB("MX2E9j1byjA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEdeEv) +STUB( + "MX36SQGKRS8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "MX3qnIFDTtE", + _ZN3sce7Toolkit2NP2V27NpUtils19displaySigninDialogERKNS3_7Request19DisplaySigninDialogEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB( + "MX8BlYy5SII", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("MX8nuAZHx+k", mono_custom_attrs_from_method) +STUB("MX9WiAJ36BU", sceSystemServiceReleaseBgmCpuBudget) +STUB("MXDmNHNZdHE", _ZN7WebCore6WidgetD0Ev) +STUB("MXGGDS9QbsQ", sceVisionManagerRequestFindPadCorrespondRegion) +STUB("MXKJaV1ITyw", sceNpTrophySystemRegisterTitleSyncedCallback) +STUB("MXNqbivQZxY", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13integer7IsSetEv) +STUB("MXOk+ACfs0I", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEE3getEv) +STUB( + "MXQVnX5IfWs", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("MXRNWnosNlM", sqrt) +STUB("MXRQZvQVjK0", scePssPadrGetOutputPortCount) +STUB( + "MXUr27s8JDA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEC2EPS8_) +STUB( + "MXZkNADeB5M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE8pushBackERKS8_) +STUB( + "MXakKx9ktts", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB( + "MXcF5LJjxR8", + _ZN9Inspector21InjectedScriptManager20createInjectedScriptERKN3WTF6StringEPN3JSC14JSGlobalObjectEi) +STUB("MXeJfEtHSwo", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE8copyFromERKS7_) +STUB("MXgrzq0nh1Q", FT_Get_CMap_Format) +STUB("MXiB2BG3Img", mono_aot_System_Data_Services_Clientmethod_addresses) +STUB("MXnDGB12oKg", _ZTVN15AbstractStorage7ServiceE) +STUB("MXrDCSnud9Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEC2Ev) +STUB( + "MXvlX-uFt8A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEppEi) +STUB( + "MXzkRg7rbAo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEaSERKS8_) +STUB("MY0CSk24EcY", _ZN3sce2np10JsonNumber6SetNumEl) +STUB( + "MY7cbaLIO0U", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_11DOMDebugger17DOMBreakpointTypeEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB( + "MY8r0FvImQQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE5beginEv) +STUB( + "MYA99MUOv6I", + _ZN7WebCore21SerializedScriptValue11deserializeERN3JSC9ExecStateEPNS1_14JSGlobalObjectERKN3WTF6VectorINS6_6RefPtrINS_11MessagePortENS6_13DumbPtrTraitsIS9_EEEELm0ENS6_15CrashOnOverflowELm16EEENS_22SerializationErrorModeE) +STUB("MYCRRmc7cDA", _ZNSt13basic_filebufIcSt11char_traitsIcEED0Ev) +STUB("MYEO5Y7ItYk", sceDtcpIpPoolAsync) +STUB( + "MYR4g-WHxC8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEeqERKS9_) +STUB( + "MYRX3ENlsTo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEEaSERKSA_) +STUB("MYRtYhojKdA", sceGnmResetVgtControl) +STUB("MYTk6pjtuaI", sceCustomMusicServiceInitialize) +STUB( + "MYWGcogoxsw", + _ZN9Inspector25DebuggerBackendDispatcher6createERNS_17BackendDispatcherEPNS_32DebuggerBackendDispatcherHandlerE) +STUB("MYX3UGOmPME", __asan_stack_malloc_0) +STUB( + "MYcaoiTNSqk", + _ZN9Inspector19InspectorAuditAgent3runERN3WTF6StringERKS2_PKiRNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISB_EEEERNS1_8OptionalIbEE) +STUB("MYd7F5R6ryw", _ZNK7WebCore20ResourceResponseBase14httpStatusTextEv) +STUB( + "MYhbfW1IWEM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEC1Ev) +STUB( + "MYinvd261kM", + _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile17setPersonalDetailERKNS1_6Common12IntrusivePtrINS3_14PersonalDetailEEE) +STUB("MYiveR15NCk", + _ZN3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinitionC2ERS5_) +STUB("MYj6qtpieto", sceCesRefersUcsProfileCp862) +STUB("MYkYhqa6qOQ", _ZN7WebCore12JSAudioTrack14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB("MYnZJQWLNog", _ZN7WebCore9FrameView26adjustPageHeightDeprecatedEPffff) +STUB("MYonML9r0sQ", _ZN3sce3Xml13AttributeListC2Ev) +STUB("MYopeEAoQeU", _ZN9Inspector22HeapFrontendDispatcherdaEPv) +STUB( + "MYqdxohPjCU", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetrics27getCompletionRatePerReasonsEv) +STUB( + "MYrwqmH8weA", + _ZZSt9MakefacetISt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEESt8_LocinfoERT_T0_E3buf) +STUB("MYsX7Hlp408", + _ZNK3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsers8haslimitEv) +STUB( + "MYvZXDQG53k", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC2ERKSC_) +STUB("MYx2+uJh310", _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error7getPathEv) +STUB( + "MZ9kYOPD8pc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE8capacityEv) +STUB("MZBcnC4ADUQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEE7add_refEv) +STUB( + "MZJlleskobo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE8capacityEv) +STUB( + "MZKB9atW+xk", + _ZN12video_parser13cVideoMetaMP416getThumbnailInfoENS_9VP_LANG_eENS_15VP_SEARCH_OPT_eEPNS_18VpThumbnailInfo_t_E) +STUB("MZLYhTu5Zss", YGNodeStyleSetMinHeightPercent) +STUB("MZNMYmg5V8A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEC2Ev) +STUB("MZO7FXyAPU8", remove) +STUB("MZOeWhAklyk", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging24GameDataMessageThumbnailEE5resetEv) +STUB( + "MZXws4leybU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEC2ERKS7_) +STUB("MZYFiWV1mcw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEcvbEv) +STUB("MZZ0g9Y7pBc", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyD2Ev) +STUB("MZb0GKT3mo8", socketpair) +STUB("MZbcWoK2x6s", sceTsCloseFile) +STUB( + "MZdPfTkA+uc", + _ZN3JSC26evaluateWithScopeExtensionEPNS_14JSGlobalObjectERKNS_10SourceCodeEPNS_8JSObjectERN3WTF8NakedPtrINS_9ExceptionEEE) +STUB("MZhulHApZ4k", _ZN3sce7Toolkit2NP2V23TUS7Request12SetVariables23MAX_VARIABLE_REAL_SLOTSE) +STUB( + "MZjLtTn5WuI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEC2EPS6_PNS2_10LibContextE) +STUB("MZlSq39lOVU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEEC2Ev) +STUB("MZoXNYeIQac", _ZN3sce7Toolkit2NP2V28Commerce12SubContainerD2Ev) +STUB( + "MZvpXwZXlco", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("MZwVUpbX+ko", GCC_except_table43) +STUB( + "MZwkZShkJkA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEED2Ev) +STUB("MZxH8029+Wg", sceUserServiceIsLoggedIn) +STUB( + "Ma+EFthU1JM", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEiRNS2_10LibContextEPT_m) +STUB( + "Ma3zQSNipOQ", + _ZN9Inspector15ScriptArgumentsC1EPN3JSC14JSGlobalObjectEON3WTF6VectorINS1_6StrongINS1_7UnknownELNS1_30ShouldStrongDestructorGrabLockE0EEELm0ENS4_15CrashOnOverflowELm16ENS4_10FastMallocEEE) +STUB("Ma7+aWJsXow", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRanking9terminateEv) +STUB( + "Ma7K22UoiSU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEmmEv) +STUB("MaAqY5ufzmk", CryptographyDecryptAES128GCM) +STUB( + "MaAtc6p2osk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("MaCKSOQDtyU", sceKernelGetUtokenFakeSharefactoryForRcmgr) +STUB( + "MaH3QINokMc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEED2Ev) +STUB( + "MaSUIhvw5zk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE5beginEv) +STUB( + "MaSYk4D3OgU", + _ZN3JSC8Bindings13RuntimeObjectC2ERNS_2VMEPNS_9StructureEON3WTF6RefPtrINS0_8InstanceENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "MaUQE0uD6xc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE5beginEv) +STUB("MaVrz79mT5o", sceCompanionUtilGetRemoteOskEvent) +STUB("Maa-feacM3k", _ZN7WebCore11JSDOMWindow14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB("Maevy+QFc0Q", mono_aot_Sce_Vsh_VideoPlayermethod_addresses) +STUB("MafDsPXgY6k", FcCharSetMerge) +STUB( + "Makq24q4dl0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("Mal4dASAIJc", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Error16referenceIdIsSetEv) +STUB( + "MamsTqSpkug", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEC2Ev) +STUB("MapHTgeogbk", sceAudioOutPtClose) +STUB( + "MawEE+jRLiU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("MawW5O1q5+I", uprv_decNumberDivideInteger_67) +STUB("Mb17d0l5rU8", WKUserContentControllerGetTypeID) +STUB("Mb2fweNBShA", _ZN3WTF13MetaAllocator8allocateERKNS_6LockerINS_4LockEEEm) +STUB("Mb7-DoEC+nE", _ZN7WebCore15GraphicsContextD1Ev) +STUB("Mb83Py2nhOI", mono_allocator_malloc0) +STUB("Mb8544CyqRs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEC2Ev) +STUB("MbBZeS2I+14", _ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEED1Ev) +STUB("MbELgaqJ8Ow", WKConnectionGetTypeID) +STUB( + "MbEbmtpWW3s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEcvbEv) +STUB("MbG960RyHgM", _ZN12Mp4Retriever20getSizeConvertToUtf8EPtmb) +STUB( + "MbIFHXMqABo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE3endEv) +STUB( + "MbIQcnHcTl8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEED2Ev) +STUB("MbRESFjT2kM", _ZN3JSC7Symbols27promiseStateMaskPrivateNameE) +STUB( + "MbTiTppQG-Y", + _ZN3JSC10JSDataView6createEPNS_9ExecStateEPNS_9StructureEON3WTF6RefPtrINS_11ArrayBufferENS5_13DumbPtrTraitsIS7_EEEEjj) +STUB("MbTt1EHYCTg", scePadSetButtonRemappingInfo) +STUB( + "MbWCMf0K0CM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEED1Ev) +STUB("MbWRVt5-GTA", _ZN7WebCore21convertToIntegerClampIaEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB( + "MbZCL33HWTQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "MbfrTiC1oNc", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsC2EPNS1_6Common10LibContextE) +STUB( + "Mbh8U-m1FAQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEC1ERS7_) +STUB("MblG6gHJMxc", _ZN3sce2np13JsonDocParser11onEndObjectEjj) +STUB("MbnDtkeauHk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEED1Ev) +STUB( + "Mbp6BENdpNc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("Mbs+zXxsuzE", ures_getAllItemsWithFallback_67) +STUB("MbtQ1L1gSik", _ZN12video_parser5vpcom3rtc12TickAddHoursEPmPKmi) +STUB("MbuvuN84TNc", _ZN7WebCore10FileHandle5closeEv) +STUB( + "MbxWoCNcbcs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEppEv) +STUB("MbxXP+N3yEs", _ZZSt9MakefacetISt8messagesIwESt8_LocinfoERT_T0_E3buf) +STUB("MbyzvFGqmGA", _ZN12video_parser26_isBetterArtworkResolutionEjjjj) +STUB("Mc-9bwQuK6o", _ZN7WebCore16HTMLInputElement12setRangeTextERKN3WTF6StringE) +STUB("Mc-kd+u8La0", _ZN3sce7Toolkit2NP2V210Tournament14RegisteredUserC2Ev) +STUB("Mc2XUrsTBqM", _ZNK3WTF10StringView21findIgnoringASCIICaseERKS0_) +STUB("McB2Heezh+4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEppEi) +STUB( + "McGJpdRFFFI", + _ZN3sce2Np9CppWebApi14SessionManager2V143GetFriendsPlayerSessionsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_6FriendEEEEEPNS9_INS3_36GetFriendsPlayerSessionsResponseBodyEEE) +STUB("McGuqAgTMRE", + _ZN3sce2Np9CppWebApi14ConnectAccount2V215AccountLinksApi28ParameterToDeleteAccountLinkC2ERS5_) +STUB("McIgA9-PB14", g_PS4InitializationFlags) +STUB("McJ3CbMD86Y", __sync_fetch_and_add_16_internal) +STUB( + "McObzqIaHKw", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearch10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_33PostGameSessionsSearchRequestBodyEEE) +STUB( + "McOzrhvTW-U", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("McPcQ+8HesY", _ZN7WebCore23CoordinatedBackingStore24adjustedTransformForRectERKNS_9FloatRectE) +STUB("McQdg5+JTcc", _ZN7WebCore14SecurityPolicy27resetOriginAccessAllowlistsEv) +STUB("McQngaQMMEY", _ZNK3sce2Np9CppWebApi7Matches2V120RequestTeamStatistic10statsIsSetEv) +STUB( + "McRvxtArlnQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE5emptyEv) +STUB("McUBYCqjLMg", _ZNSt10moneypunctIwLb0EEC1Em) +STUB("McYmUpQ3-DY", sceHttp2SetCookieSendCallback) +STUB( + "McaGKOZBuHw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEC1Ev) +STUB("McaImWKXong", _Cnd_timedwait) +STUB("McgMZ1InSTQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEE11release_refEv) +STUB( + "Mcp4D4bmxak", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEEcvbEv) +STUB( + "McpzinoB31k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEE7get_refEv) +STUB("McsGnqV6yRE", _ZdlPvRKSt9nothrow_t) +STUB( + "McsZaeCG898", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEppEv) +STUB( + "Mcu5fXHikuY", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session12Notification18InvitationReceivedEE12deepCopyFromERS8_) +STUB("McuCzcsjs2I", Java_com_sony_bdjstack_org_dvb_dsmcc_FileCacheManager_unload) +STUB("McwygCOJbOg", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEdeEv) +STUB( + "McxH7KDCikA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEixEm) +STUB( + "Md+2jlNXmm0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEE7get_refEv) +STUB("Md+HYkCBZB4", CA_MGMT_extractKeyBlobEx) +STUB("Md-DJ7vagYE", _ZTVN7WebCore11DisplayList8SetStateE) +STUB("Md6zUKrFwN0", _ZN3sce7Toolkit2NP15AppSTLAllocatorItE7destroyEPt) +STUB("Md7Mdkr8LBc", sceSharePlayGetEvent) +STUB("MdHkBoOP6Nc", mono_aot_Sce_Vsh_Sticker_StickerLibAccessorjit_got) +STUB("MdOJ95aS63I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEEC1EPS6_) +STUB("MdQcEXxlqLo", _ZN7WebCore16DOMGuardedObjectC1ERNS_17JSDOMGlobalObjectERN3JSC6JSCellE) +STUB("MdSI82hHt0E", scePerfPmcSetCounter) +STUB( + "MdU1USf5vnk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE7popBackEv) +STUB("MdV0akauNow", sceHmdReprojectionDebugGetLastInfo) +STUB("MdZjPzsvZ3Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEED2Ev) +STUB( + "MdbxQD4bMZs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE4sizeEv) +STUB("MddMup7PwZk", WKBundleScriptWorldMakeAllShadowRootsOpen) +STUB( + "Mddu8rVFOWo", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V112ErrorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5ErrorEEE) +STUB( + "Mdfvp6kSGBc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB( + "MdlS0tefrrU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEppEv) +STUB("MdnO3bWFyMk", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEEdeEv) +STUB("MdpEzweRN2E", _ZN7WebCore16ScriptController29cleanupScriptObjectsForPluginEPv) +STUB( + "MdrT-ddsl+E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEppEv) +STUB( + "MdtlbsGo7c4", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToSendGameSessionMessageaSERS5_) +STUB("MdwNDttw5ns", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE6resizeEj) +STUB( + "Me8RKyweHPI", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26RecordScoreResponseHeaders24setXPsnAtomicOperationIdERKNS1_6Common6StringE) +STUB("MeAJyg5gq58", WKPreferencesGetSimpleLineLayoutDebugBordersEnabled) +STUB("MeDV9vaNsbA", _ZN3sce7Toolkit2NP2V27Session20LocalizedSessionInfoD2Ev) +STUB( + "MeGNs851SRY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEixEm) +STUB("MeM0QvOkJUA", _ZNK7WebCore18ParsedContentRange11headerValueEv) +STUB( + "MeMbeGNF8-Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "MeNQyI3403A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEC2Ev) +STUB("MeQzsrxMF8o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEppEv) +STUB("MeT81dgytRg", _ZN7WebCore11DOMRectListD1Ev) +STUB("MeUgPv9530A", _ZN7WebCore21convertToIntegerClampIsEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB( + "MeZ35ifPro8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEE7get_refEv) +STUB("Meb-40MUkYM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEC2EPS8_) +STUB("MeboioVomns", sceShellCoreUtilSetGpuLoadEmulationMode) +STUB("MecB8wAHCfE", _ZN3sce2np10CancelLockC2Ev) +STUB("MejItkj1J4c", _ZN3WTF10StringImpl7replaceEjjPS0_) +STUB("MekE+46X-+A", locale_getKeywords_67) +STUB("MeoNGqEj5JA", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session7SessionEED1Ev) +STUB("MeogIIr66Ew", + _ZN7WebCore19MediaQueryEvaluatorC2ERKN3WTF6StringERKNS_8DocumentEPKNS_11RenderStyleE) +STUB( + "MetKTdbKE4M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEC1ERKS7_) +STUB("MetMOQVd8HY", sceAgcDriverAcquireRazorACQ) +STUB( + "MewJqUayY3o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEmmEi) +STUB("Mex9YQBJEAk", __tsan_atomic32_exchange) +STUB( + "Mf55cfs7eIo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE23clearOnFinishedCallbackEv) +STUB( + "MfBeztScwxA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEC1EPS8_) +STUB("MfDb+4Nln64", sceNpUniversalDataSystemEventPropertyObjectSetString) +STUB("MfE6TL7FiRc", WKWebsiteDataStoreConfigurationCopyCookieStorageFile) +STUB("MfJ3R1TdXCY", _ZN7Nicosia6Buffer6createERKN7WebCore7IntSizeEj) +STUB( + "MfMexnAYKf4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "MfSihU1Hbuk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEC1EPNS2_10LibContextE) +STUB( + "Mfbn+OAItMk", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats12setPlayStyleERKNS1_6Common12IntrusivePtrINS3_9PlayStyleEEE) +STUB("MfbsiQU271E", _ZN7WebCore16VisibleSelectionC2ERKNS_15VisiblePositionEb) +STUB( + "Mff8heQagc8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEEC1ERKS9_) +STUB("MffI7wLS6TM", _ZN3WTF8WordLock10unlockSlowEv) +STUB("MfhhrFtlFV0", _ZN7WebCore8SVGNames10feBlendTagE) +STUB("Mfl7dPUz9kE", _ZN3WTF19isFastMallocEnabledEv) +STUB( + "MfmCCRkBr-Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("MfyPz2J5E0I", _ZTVSt10moneypunctIcLb1EE) +STUB("MfzvOi79SoA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V124RequestCooperativeResultEEmmEi) +STUB("Mg-IhL6SWfg", _ZN3sce2np7RingBuf4ReadEPvm) +STUB("Mg3P1Z4Xavs", sceShellCoreUtilGetCloudClientStatus) +STUB("Mg3qhAB1MeE", _ZN23sceMetadataReaderWriter7Storage16extractThumbnailERKSsjRNS_9ThumbnailE) +STUB( + "Mg6f3piaihA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEdeEv) +STUB("Mg7vEHsNV9s", __asan_storeN) +STUB("MgBIXUkGtpE", sceUserServiceSetForegroundUser) +STUB("MgGf6CnqHZc", _ZN3sce3pss5orbis9framework8PsmEvent8FinalizeEv) +STUB("MgIRnraUCes", _ZN3sce7Toolkit2NP2V23TUS15TusDataStatusesD1Ev) +STUB("MgWFF4t6fCs", mono_aot_System_Web_Servicesunbox_trampolines) +STUB( + "MgXSbe9fWfw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("MgY8paIXi7A", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy17TrophyPackSummaryEE3setEv) +STUB( + "MgYYGIiiFHg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEEaSERSA_) +STUB( + "MgZd744xHpo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEC2Ev) +STUB( + "MgaR2k+QA8o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEC1Ev) +STUB( + "MgaVDvlEGxU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEED2Ev) +STUB("MgkNIcmCFyI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody17setNpServiceLabelERKj) +STUB("MgoCWG84OF8", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE3endEv) +STUB("MgsTa76wlEk", sceNpWebApi2AddWebTraceTag) +STUB( + "MgtYpv6S9Xo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEeqERKS9_) +STUB("Mgy7OEaxxLQ", bdjbg_unlock) +STUB("MgyEz5SwXAI", WKBundlePageCopyContextMenuAtPointInWindow) +STUB("Mgzn4F-H1A0", scePlayReadyCdmiCreateMediaKeySystemAccess) +STUB( + "Mh-gBtUdMus", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEED2Ev) +STUB( + "Mh0PFqKF+tA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEEdeEv) +STUB("Mh1pgCXbRu8", _tiny) +STUB("Mh4YoQ4Y57s", hb_font_funcs_set_glyph_func) +STUB("MhC53TKmjVA", sysctlbyname) +STUB( + "MhFuXG+3MdY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEC1EPNS2_10LibContextE) +STUB("MhG9BMS7pSQ", WKContextSetFontAllowList) +STUB( + "MhMNLxT8xOU", + _ZN7WebCore11MediaPlayer17getSupportedTypesERN3WTF7HashSetINS1_6StringENS1_24ASCIICaseInsensitiveHashENS1_10HashTraitsIS3_EEEE) +STUB("MhT2ZkqglBQ", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEEC2ERKS6_) +STUB( + "MhUPqeh0ThA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEplEm) +STUB("MhXub7fXkKw", _ZN7WebCore15XPathNSResolverD0Ev) +STUB("MhZcX2IyZKM", WKArrayGetSize) +STUB("Mhbyf-QjRxk", _ZN3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBodyD1Ev) +STUB("MhdUhQtAIYk", jpeg_save_markers) +STUB("MhfikztCjT4", + _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSessionC2EPNS1_6Common10LibContextE) +STUB( + "Mhh9ltTRRWY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEeqERKS9_) +STUB( + "MhnPUqFtcdY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE3endEv) +STUB("MhoQUt4Yglc", _ZN7WebCore19JSDOMMatrixReadOnly7destroyEPN3JSC6JSCellE) +STUB("MhpB9xwh2v8", _ZN3sce2Np9CppWebApi7Matches2V118RequestMatchPlayerD2Ev) +STUB("MhwjOpS8A4I", _ZN3sce7Toolkit2NP2V212EventsClient15EventUserStatusD2Ev) +STUB("MhwxKkUqlZ0", ulocimp_getLanguage_67) +STUB("MhymOvp1NkU", curl_easy_send) +STUB( + "Mi058iyuLsg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEaSERS7_) +STUB("Mi0qwCb+rvo", sceSystemServiceDisableSuspendNotification) +STUB( + "Mi1Uu4dnMog", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEmmEi) +STUB("Mi4qylfd1i4", _ZN3sce7Toolkit2NP2V23TUS7Request12GetVariablesD2Ev) +STUB("Mi4r5+lZAxg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEC1ERS7_) +STUB("Mi9-CweviUo", sceShellCoreUtilNavigateToLaunchedApp) +STUB("MiBGaMikflk", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth8AuthCodeEE3setEv) +STUB("MiCHCcLzePU", _ZN3sce7Toolkit2NP2V24Core12ResponseDataD2Ev) +STUB("MiEScFB0La8", _ZN9Inspector25ConsoleFrontendDispatcher15messagesClearedEv) +STUB("MiFP5xEGdw4", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyD2Ev) +STUB("MiLqYGxS1ck", _ZNK3sce2Np9CppWebApi7Matches2V117LeaveMatchRequest19npServiceLabelIsSetEv) +STUB( + "MiNSXHzLnL0", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124NatConnectivityToMetricsC2EPNS1_6Common10LibContextE) +STUB("MiQralGSkeo", _ZN7WebCore11DisplayList18FillCompositedRectD0Ev) +STUB("MiR3rQFLTmU", _ZN7WebCore6Path2DnwEmPv) +STUB( + "MiT-Gzi-ddw", + _ZN9Inspector14ConsoleMessageC1EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelERKN3WTF6StringEONS5_3RefINS_15ScriptCallStackENS5_13DumbPtrTraitsISA_EEEEm) +STUB( + "MiTrN-LpRDE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEED2Ev) +STUB("MiUxeleLYUc", sceFsMountPprPkg) +STUB( + "MiVpskAS+0o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEixEm) +STUB("MiaWyyYAoWw", _ZNK3sce2np14JsonObjectImpl5CloneEP14SceNpAllocator) +STUB( + "MibzrYlFa+w", + _ZN7WebCore25validatePreflightResponseERKNS_15ResourceRequestERKNS_16ResourceResponseENS_23StoredCredentialsPolicyERNS_14SecurityOriginERN3WTF6StringE) +STUB("Midd3txC-9g", _ZN3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer12unsetNatTypeEv) +STUB( + "Midr+lOtY8A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEE7get_refEv) +STUB("Mif6IzBa0hc", sceFiosFHGetPath) +STUB("MilSVS0uHvA", sceDebugGetThreadList) +STUB("MimkniqIX-U", ucnv_getAvailableName) +STUB("Mio-My1B0Ek", RemotePlayGetRemoteplayStatus) +STUB( + "Mio2oGP+aqg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE5emptyEv) +STUB( + "MivhFzZyQuY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEC2Ev) +STUB("MiwGk7+zWfY", _ZN12video_parser10cVideoPathC1EPKc) +STUB( + "MiyY62qvYU0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE8copyFromERKS9_) +STUB("Mj-2b4AI7FA", sceAppInstUtilGetAppEmptySlot) +STUB("Mj3ajE5aL9w", _ZN3JSC7Symbols24ModuleSatisfyPrivateNameE) +STUB( + "Mj6rcc2YbdQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEC2EPS8_) +STUB( + "Mj74mfQ0ZNc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE8pushBackERKS8_) +STUB("MjBf1mBhxsg", _ZN23sceMetadataReaderWriter15ParserInfoTableC1Ev) +STUB("MjBs6RialfM", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110TaskStatusEEneERKS7_) +STUB("MjCtOsXb+-E", mono_debug_domain_unload) +STUB("MjH7MOV6LVk", sceCompositorGetDmemOffset) +STUB( + "MjIBdbalvzY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE7reserveEi) +STUB( + "MjIP4UJEEbE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE5clearEv) +STUB("MjKAjGkB7Mk", _ZNK7WebCore4Page20renderingUpdateCountEv) +STUB("MjOFdwXYRKY", sceNpServiceCheckerIntGetAvailabilityList) +STUB("MjPTQjmZdvg", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110TaskStatusEEeqERKS7_) +STUB("MjS9-ZP4CW0", _ZN7WebCore8SVGNames13interceptAttrE) +STUB("MjUP4yticC8", _ZN7WebCore11MathMLNames8msqrtTagE) +STUB( + "MjXmJsmG6QQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE6resizeEj) +STUB("MjY5-KgXnuk", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12RangeOfRanksEE3setEv) +STUB("MjYzx34cnmE", CreateWebApiLibCtx) +STUB("MjqzYLK2kJA", _ZN3JSC13RuntimeMethod14finishCreationERNS_2VMERKN3WTF6StringE) +STUB("MjxA6y7tetw", _ZN3JSC15ArrayBufferViewD0Ev) +STUB( + "Mk0WVkltKYA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("Mk8fJasEEA4", sceMbusSetThreadParam) +STUB( + "MkGDXe1qqV0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("MkGUMQt7MBE", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry12commentIsSetEv) +STUB("MkJD9O9pXvI", _ZN3WTF8JSONImpl5Value4nullEv) +STUB("MkKcrZ9pT0Q", _ZN7WebCorelsERN3WTF10TextStreamERKNS_5ColorE) +STUB("MkSYr+wZN-A", _ZN3sce7Toolkit2NP2V24Auth7Request10GetIdTokenC1Ev) +STUB( + "MkSmI8WCSvM", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi22getLargeDataByObjectIdEiRKNS4_33ParameterToGetLargeDataByObjectIdERNS1_6Common21DownStreamTransactionINS8_12IntrusivePtrINS4_37GetLargeDataByObjectIdResponseHeadersEEEEE) +STUB( + "Mkc8KzIsU84", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEE11get_deleterEv) +STUB("MkccIFpDqzM", + _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest19unsetNpServiceLabelEv) +STUB( + "MkeiQIax3Wk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEaSERS7_) +STUB("MkpOPYf0iTg", WKPreferencesSetAuthorAndUserStylesEnabled) +STUB("Mkr+ZvMqMPE", _ZNK7WebCore8Document6pageIDEv) +STUB( + "MkrGXK8Nn9k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEaSERKS7_) +STUB("MkteO+mQQlA", umsg_format_67) +STUB( + "Mku7vY09A9A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEEcvbEv) +STUB("Mkwup89ipAA", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed12SharedVideosEE3getEv) +STUB( + "Mky-Cerdck8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEppEi) +STUB("Mky-ZoEdhx0", _ZTVN7WebCore17NowPlayingManagerE) +STUB( + "Ml0nn8E9YLQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB( + "Ml1kQL4oaEQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEeqERKS9_) +STUB("Ml1z3dYEVPM", _ZTIPKa) +STUB( + "Ml1zk5bprs0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEC2Ev) +STUB("Ml2AWsoMI0E", mono_privileges_finish_init) +STUB("Ml2ev6IagrQ", _ZTVN8meta_gen12JpegPromoterE) +STUB("Ml8geH28fSo", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEEptEv) +STUB("MlD7yUCWb4k", mono_aot_Sce_Vsh_PatchCheckerClientWrapperjit_got) +STUB("MlEw1feXcjg", sceAgcQueueEndOfPipeActionPatchData) +STUB( + "MlNpbHEo9ig", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEEiRNS2_10LibContextEPT_m) +STUB("MlO+RK1HoyI", _ZNK7WebCore26IdentityTransformOperation10isIdentityEv) +STUB("MlSHagwBWI4", _ZN3WTF9URLParser14allValuesEqualERKNS_3URLES3_) +STUB( + "MlSU0FGCjAc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEC2Ev) +STUB("MlUvz++Cn7s", _ZN12video_parser18cMp4FFLHndlManager16_adjustTrackInfoEjb) +STUB("MlW6deWfPp0", sceUsbdCheckConnected) +STUB( + "MlaFVSz8BkU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("MljG2BSqkMY", _ZNK15AbstractStorage14TwitterContent13GetCapabilityEv) +STUB("Mlo+OHFpOeY", sceSpPthreadDetach) +STUB( + "MlpBkpjZJd8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEE7get_refEv) +STUB("MlqeBoQNTJE", _ZNK7WebCore11HistoryItem3urlEv) +STUB("MltFJdH0xRM", sceDbgUserChannelVPrintf) +STUB("MltQyQYOELc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEdeEv) +STUB( + "MluX520iyZU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE5emptyEv) +STUB( + "Mlva15OYe0Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEEaSERKSA_) +STUB("Mlvh5ez2wEY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEC1Ev) +STUB("MlyjmFK8nvA", _ZN3sce7Toolkit2NP2V28Matching12Notification14NewRoomMessageC1Ev) +STUB("Mm-YpRJuHks", ucsdet_enableInputFilter_59) +STUB("Mm4+PSflHbM", sceUserServiceGetGlsBroadcastChannel) +STUB( + "Mm6sE-rYvk0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEC2EPKS8_) +STUB( + "Mm9t-TLusNs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEEcvbEv) +STUB("MmCFL5GXGL8", WKContextWarmInitialProcess) +STUB("MmFRBBJMUlw", WTFWillLogWithLevel) +STUB( + "MmGu1MX-riY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEEC2Ev) +STUB( + "MmJGKpfVpZo", + _ZN7WebCore26PresentationOrderSampleMap35findSamplesBetweenPresentationTimesERKN3WTF9MediaTimeES4_) +STUB("MmLPD+9OwFI", sceNpSnsTwitchDeleteRequest) +STUB("MmMqAYqsu84", _ZN3JSC14throwTypeErrorEPNS_9ExecStateERNS_10ThrowScopeERKN3WTF6StringE) +STUB("MmPLNZcKMEc", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku7getNameEv) +STUB("MmSyyiaXiho", _ZN7WebCore14JSWebAnimationD2Ev) +STUB("MmTshn7gIgU", _Unwind_GetCFA) +STUB("Mmk-CnQ+MxA", _ZN3sce7Toolkit2NP2V27Ranking7Request11SetGameDataC1Ev) +STUB("MmpF1XsQiHw", sceAjmBatchInitialize) +STUB("MmtcuGpE7uo", ucol_getRulesEx_67) +STUB( + "MmwenFvDNdA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEC1Ev) +STUB( + "Mn0aTy0qzco", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "Mn23SRFeR5Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEC2ERKS7_) +STUB("Mn4XNDg03XY", sceNgs2RackGetUserData) +STUB( + "Mn59nmZsyB8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEE3getEv) +STUB( + "Mn5J4RS6VbQ", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeaders17unsetLastModifiedEv) +STUB("Mn8ipkjNf-E", _ZN3sce2np14JsonNumberImpl5ClearEv) +STUB("MnBopnIaDzQ", scePssInternalKeyboardGetUTF8Chars) +STUB( + "MnFQRdyEFHk", + _ZNK7WebCore9CookieJar13getRawCookiesERKNS_8DocumentERKN3WTF3URLERNS4_6VectorINS_6CookieELm0ENS4_15CrashOnOverflowELm16ENS4_10FastMallocEEE) +STUB( + "MnGmZBb9LBA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEC1EPKS8_) +STUB( + "MnHAKjK-ovw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEEC2Ev) +STUB( + "MnHELoUII3o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEEC2ERSA_) +STUB("MnJYzxTchUY", _ZNK3WTF8JSONImpl10ObjectBase10memoryCostEv) +STUB( + "MnNXyyktogo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEEptEv) +STUB("MnQLt6LlgIU", _ZN7WebCore11RenderLayer21simulateFrequentPaintEv) +STUB("MnUYAs2jVuU", sceFontGraphicsUpdateFillRates) +STUB( + "Mnc3Os+mgYM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEED1Ev) +STUB( + "MndBi7G8GqI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEC2Ev) +STUB("Mnf5YJkQX7s", _ZN15AbstractStorage14TwitterContent8SeekByteEliPl) +STUB("Mnf6Y9OxwXQ", YGNodeStyleSetFlex) +STUB("MnhsfZgm-GE", _ULx86_64_get_proc_info) +STUB( + "Mnihl9WP9T4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEppEi) +STUB("Mniutm2JL2M", _ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2ERKSt8_Locinfom) +STUB("Mnjk3yiKoDQ", _ZN3sce2np9JsonValue9SetStringEPKNS0_10JsonStringE) +STUB("MnlqH3VAJxU", glCopyTexSubImage2D) +STUB( + "MnnUvHCJZlo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE7popBackEv) +STUB( + "Mnoe9eeyylY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEneERKS9_) +STUB( + "Mnp3qDir4NU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB( + "Mnpd5bSEIaw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEeqERKS9_) +STUB("MnqoHt0rzQ0", _ZNK3sce2Np9CppWebApi13InGameCatalog2V55Error9codeIsSetEv) +STUB( + "MnsMFCD+aSw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE21intrusive_ptr_add_refEPS9_) +STUB("MnwP4x1EZC8", _ZN3sce2Np9CppWebApi15ProfanityFilter2V219WebApiFilterRequest7setTextEPKc) +STUB( + "Mo+M12eIEIA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "Mo2gPjvHXOU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "Mo4IQuIGa7U", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("Mo4KJwvZPxc", _ZN7WebCore17LibWebRTCProviderD1Ev) +STUB("Mo6K-pUyNhI", _ZNKSt7codecvtIDsc9_MbstatetE11do_encodingEv) +STUB("Mo6V5akY7o8", YGInteropSetLogger) +STUB( + "MoE0H8wnnK4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEC1Ev) +STUB("MoEXecwSGLk", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product11setAgeLimitERKi) +STUB( + "MoFcVpV4+js", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEEC1Ev) +STUB("MoG-8EACnb8", + _ZN3sce2Np9CppWebApi14SessionManager2V116FromNonPsnMemberC1EPNS1_6Common10LibContextE) +STUB("MoHLiE7Llw4", fuse_fs_chmod) +STUB( + "MoJvHLRLuX4", + _ZN9Inspector27DOMStorageBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) +STUB("MoUJZiDoHMk", _ZN15AbstractStorage15HttpTransactionD2Ev) +STUB("MoX2YEntKao", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEEppEv) +STUB( + "MoYwcjJwYI8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("MoaZ6-hDS-k", SSL_send) +STUB( + "MopzDd9q3sA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEE7add_refEv) +STUB( + "MosmRj5LPwY", + _ZN7WebCore11FileChooser11chooseFilesERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEES8_) +STUB("Mou7xgx4q3U", _ZN12video_parser5vpcom3rtc10IsLeapYearEPKm) +STUB( + "MoumXijG6aw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEEC2Ev) +STUB("Mp+8ZDMhKPY", __asan_stack_free_6) +STUB("Mp+8pHkZWkc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEED1Ev) +STUB("Mp0ge-sJQ+U", _ZN3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer11setPlayerIdEPKc) +STUB("Mp2Lv8FL1sM", mono_btls_x509_name_hash_old) +STUB("Mp8DPb3M4I0", _ZN3sce4Json17InitParameterRttiC2EPNS0_14AllocParamRttiEPvm) +STUB("MpD0hOKBNJE", JSContextGroupAddHeapFinalizer) +STUB("MpDe8KtUJ7s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEC2Ev) +STUB("MpI2NyWcgaQ", _ZN7WebCore11DisplayList17DrawFocusRingPathD0Ev) +STUB( + "MpJ14wtVllQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEEaSERSA_) +STUB( + "MpJc+Fb2LwQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("MpKSBaYKluo", sceFontControl) +STUB( + "MpN7UZenmPc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEixEm) +STUB( + "MpRmfpkQWEA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("MpS9siAhaVs", rgctx_fetch_trampoline_rgctx_110) +STUB( + "MpTPCYHSEmc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEE5resetEPS6_) +STUB( + "MpU656q-0+8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE5clearEv) +STUB("MpUzIfTxkOo", mono_aot_System_Transactionsunbox_trampolines_end) +STUB("MpVt9mcsYuY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE5beginEv) +STUB("MpXK+QLRpwU", sceUsbStorageDialogUpdateStatus) +STUB( + "MpXakmQ1h5A", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEneERKS9_) +STUB("MpawErU2weY", _ZN7WebCore9HTMLNames18webkitdropzoneAttrE) +STUB( + "MpbveJ7yKaU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEEC1ERKSA_) +STUB("Mpd+1O6TFRI", _ZN3sce7Toolkit2NP2V211UserProfile7Request27GetVerifiedAccountsForTitleD2Ev) +STUB("MpiTv3MErEQ", _ZTIj) +STUB("MpncRjHNYRE", sceGnmDriverInternalRetrieveGnmInterfaceForGpuException) +STUB( + "Mpq7uEoxZ64", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEC2EPS8_) +STUB("MpqLCvEptrg", WKPreferencesGetCoverAreaMultiplier) +STUB( + "MpuTEchXlcQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "MpvGnkGedOo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE4sizeEv) +STUB("MpxhMh8QFro", fwrite) +STUB("Mq1XMzaL-ZA", _ZN3sce2Np9CppWebApi11Matchmaking2V113ErrorResponseD2Ev) +STUB("MqAdbRMdNz4", sceAgcLinkShaders) +STUB("MqCU5ZdxHrI", mono_aot_Sce_PlayStation_HighLevel_UI2Platformunbox_trampoline_addresses) +STUB( + "MqLIXYTJPR8", + _ZNK7WebCore11FontCascade5widthERKNS_7TextRunEPN3WTF7HashSetIPKNS_4FontENS4_11DefaultHashIS8_EENS4_10HashTraitsIS8_EEEEPNS_13GlyphOverflowE) +STUB("MqLM8CBC9FM", _ZN7WebCore21PlatformKeyboardEvent23getCurrentModifierStateERbS1_S1_S1_) +STUB("MqLQZfPWtnQ", rgctx_fetch_trampoline_mrgctx_39) +STUB("MqOttL-azXk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEED1Ev) +STUB("MqRDuIXWHBM", UDataMemory_init_67) +STUB("MqUN1wdWe7E", __asan_set_shadow_f3) +STUB("MqYiFgLUmnE", _ZN3JSC7Symbols24setBucketHeadPrivateNameE) +STUB("MqbKqHBdgjk", _ZN7WebCore7Element11setTabIndexEi) +STUB("MqeMaVUiyU8", wcscat_s) +STUB("Mqfjd9XhyKA", _WCostate2) +STUB("MqjgIzSKi+Q", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V15OwnerD1Ev) +STUB( + "Mql7eD2JzcQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEppEi) +STUB("Mqp3lJ+sjy4", sceNpMatching2Terminate) +STUB( + "MqrcU0srmr8", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEEiRNS2_10LibContextEPT_m) +STUB( + "Mr+dWcdbZfU", + _ZN9Inspector20InjectedScriptModule14ensureInjectedEPNS_21InjectedScriptManagerEPN3JSC9ExecStateE) +STUB("Mr1IgQaRff0", sceSystemServiceDisablePersonalEyeToEyeDistanceSetting) +STUB("Mr3c8XddszE", sceMbusStopAudioOutSharePlay) +STUB("Mr8uY9qWSy0", mono_aot_Sce_Vsh_EventServiceWrapperunbox_trampolines) +STUB("MrD4mo080zE", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku7setTypeEPKc) +STUB( + "MrDMYdZbwz0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE8capacityEv) +STUB( + "MrETDJKQsGc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEixEm) +STUB("MrFAGlGu+Ro", _ZN7WebCore14CachedResource12removeClientERNS_20CachedResourceClientE) +STUB("MrGWnhAa+5U", _ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamTournamentD1Ev) +STUB("MrJUmRrcu5A", _ZN7WebCore22EmptyFrameLoaderClient29hasFrameSpecificStorageAccessEv) +STUB("MrJpmTBGrUc", _ZN2sh14ShaderVariableD1Ev) +STUB( + "MrPGf1uQvFY", + _ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead7setFromERKNS1_6Common12IntrusivePtrINS3_10FromMemberEEE) +STUB( + "MrPrcUoYLnU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEEaSERKSA_) +STUB("MrRFrdgpsx8", sceFiosFHTell) +STUB( + "MrSDYHuc4yM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEEC1Ev) +STUB( + "MrSP24GQaWw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEC2EPNS2_10LibContextE) +STUB("MrU1N8c0NCU", _ZN12video_parser13cVideoPathMgv8FinalizeEv) +STUB("MrUOZGxjKw8", sceMusicCoreServerUnregistEventCallback) +STUB("MrWB4OdN3qI", _ZN7WebCore11JSImageData7destroyEPN3JSC6JSCellE) +STUB( + "MrZ6dH4cBxA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("MraPqKgx2ao", _ZN3JSC17DebuggerCallFrame20sourceIDForCallFrameEPNS_9ExecStateE) +STUB("Mre+EXVSlk0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEC2Ev) +STUB("Mri-l8u7dGs", _ZN3JSC8JSBigInt9rightTrimEPNS_14JSGlobalObjectE) +STUB("MrlgTA1DfK0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEdeEv) +STUB("Mrp3OVQ9jI4", WKWebsiteDataStoreClearBundleIdentifierInNetworkProcess) +STUB("Ms+EFiENxwc", __sanitizer_get_number_of_counters) +STUB("Ms0cLK8sTtE", sceRudpFlush) +STUB("Ms1rafqS5xc", _ZN3sce7Toolkit2NP2V27Session18AvailablePlatformsD1Ev) +STUB( + "Ms6h3Dsc790", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEC2EPKS8_) +STUB("MsCjNokrgzw", sqlite3_bind_text) +STUB( + "MsHKL9vZUQw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE5beginEv) +STUB( + "MsKCRA9QJZY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEED1Ev) +STUB("MsLvSo7kA-8", _ZN3JSC8JSObject10putByIndexEPNS_6JSCellEPNS_9ExecStateEjNS_7JSValueEb) +STUB( + "MsMEqolz1no", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE3endEv) +STUB("MsMOdxWfbwQ", _ZNK3sce4Json5Value8getValueERKNS0_6StringE) +STUB("MsQ1UIG7qsQ", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE5beginEv) +STUB( + "MsRgUy5VRr4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEEcvbEv) +STUB("MsYhMFXeYVY", mono_aot_System_Xmlmethod_addresses) +STUB( + "MsZr4Y9YsYU", + _ZN7WebCore18JSHTMLImageElement6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_16HTMLImageElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB("MsaFhR+lPE4", sceNpWebApi2PushEventCreateFilter) +STUB("MscERR8fj+g", _ZN3JSC17processConfigFileEPKcS1_S1_) +STUB("MsfV1B5yOIQ", SSL_CTX_get_cert_store) +STUB("Msg6ByVQ+u4", YGNodeStyleGetFlexGrow) +STUB( + "MsiO1iD7Ehs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("MslXMQq0rvE", _ZN7WebCore6DOMURLD1Ev) +STUB( + "MsvA3hQAUlU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEEC1ERSA_) +STUB( + "Msy3bJhzyjU", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEEC1ERKSC_) +STUB( + "Mt-+B1a64PA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE21intrusive_ptr_add_refEPS9_) +STUB("Mt0EF2PRj1E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEEC1EPS5_PFvS7_EPNS2_10LibContextE) +STUB( + "Mt3+Q6c3ehw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEC2EPNS2_10LibContextE) +STUB("Mt4QHHkxkOc", sceVideoOutGetEventCount) +STUB("Mt7JB3lOyJk", sceAudioOutSparkControlSetEqCoef) +STUB("Mt7YT3Eg06E", _ZNK7WebCore12RenderObject14enclosingLayerEv) +STUB("MtBchJFDxdU", sceMbusDumpDeviceInfo) +STUB( + "MtDfk5Pmh1I", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser27unsetusePlayerSessionFilterEv) +STUB("MtE3Me0UJKc", sceUserServiceSetPbtcTuesdayHoursEnd) +STUB("MtIhR5hmEPo", _ZN3sce2np13JsonArrayImplC1EP14SceNpAllocator) +STUB( + "MtJqt-m7XzY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEeqERKS9_) +STUB("MtLNiHnY2Qg", + _ZN3sce2Np9CppWebApi13InGameCatalog2V514ContainerMediaC1EPNS1_6Common10LibContextE) +STUB("MtQVEn55dv8", sceUserServiceGetVoiceAgentTtsSpeed) +STUB( + "MtR8ggC--RU", + _ZN3JSC17MarkingConstraintC2EN3WTF7CStringES2_NS_20ConstraintVolatilityENS_21ConstraintConcurrencyENS_21ConstraintParallelismE) +STUB( + "MtWSBDQDGNY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEC1EPS9_) +STUB("MtcHqXAlc6w", _ZN7WebCore12ChromeClient25enterFullScreenForElementERNS_7ElementE) +STUB( + "MtdCbZTVzS0", + _ZN15AbstractStorage18DailymotionStorage7GetItemERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_4ItemEE) +STUB("Mtgxq87OiqQ", _ZN7WebCore13JSHTMLElement15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "MthsTuzbCI4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEeqERKS9_) +STUB("MtlV-fYy3gk", WKPreferencesGetProcessSwapOnNavigationEnabled) +STUB("MtpIAcDR9sA", sceMbusRemoveCameraAppModuleFocus) +STUB( + "MtsqEVRv7eE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("MttRWVSxgqs", mono_aot_Sce_Vsh_Np_ServiceChecker2jit_code_end) +STUB("MtuVljq6Sq8", _ZNK7WebCore16HTMLMediaElement27webkitClosedCaptionsVisibleEv) +STUB("MtzQ2YWZoKE", _ZNK3sce2Np9CppWebApi7Matches2V118CreateMatchRequest15getInGameRosterEv) +STUB("Mu+y6pZP2nw", _ZN7WebCore26ContextDestructionObserverD1Ev) +STUB( + "Mu0QIm6IAt8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE8capacityEv) +STUB( + "Mu2CRU99C-o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEE3getEv) +STUB("Mu2upxmY2C8", FT_Bitmap_Done) +STUB( + "Mu31rBh067k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEC2Ev) +STUB("Mu6MqNsmDnI", + _ZN7WebCore10JSLocation21deletePropertyByIndexEPN3JSC6JSCellEPNS1_14JSGlobalObjectEj) +STUB("Mu7oV6kVFkM", _ZN3JSC7Symbols22starDefaultPrivateNameE) +STUB("MuACiCSA8-s", _ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED2Ev) +STUB("MuBCFAVXErM", _ZN7WebCore16HTMLInputElement24setAutoFilledAndViewableEb) +STUB( + "MuCK2dbPh+I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEEC2ERKSA_) +STUB("MuFV0RfuzyI", mono_shared_hashtable_new_gc) +STUB( + "MuJ7dnsrzOc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEC2EPS8_) +STUB("MuJbKzMKMyQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEC1Ev) +STUB("MuMnDaXBTm0", sceFiosOverlayRemove) +STUB("MuOn+V0DYcI", sceAppInstUtilGetAddcontInfoList3) +STUB("MuTCNpW9Tn4", _ZN7WebCore24CoordinatedGraphicsLayer15setNeedsDisplayEv) +STUB("MuTrHdEpPig", _ZN3sce7Toolkit2NP2V28Matching7Request13GetAttributesD2Ev) +STUB( + "Muc6k+PW6oU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE3endEv) +STUB("MuceKKIp+HU", _ZNK3sce2Np9CppWebApi7Matches2V113RemovedPlayer6toJsonERNS_4Json5ValueEb) +STUB( + "MueCEtH4-EA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("MuhHEQiI6hQ", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEEixEm) +STUB("MunXnAvdt8U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEaSERS7_) +STUB( + "MunvRaffJCQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE8copyFromERKS9_) +STUB("Muo7lemMhI8", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking8TempRankEED2Ev) +STUB("Mv1zUObHvXI", sceKernelGetSystemSwVersion) +STUB( + "MvARkYtNR3I", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEneERKS9_) +STUB("MvKCcL1450I", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V110UpdateModeEEptEv) +STUB( + "MvKDD4VRR7Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEEdeEv) +STUB("MvKToaKANpw", _ZNK3WTF10StringImpl25endsWithIgnoringASCIICaseEPKS0_) +STUB( + "MvLIVkuYGdU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE8capacityEv) +STUB( + "MvMlC0IZECA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEptEv) +STUB("MvNSFlPuexQ", sceDeci4hDrfpChstat_chmod_fuse_fullpath) +STUB( + "MvR9Ssc80wo", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("MvYSTL7GTks", ucal_getKeywordValuesForLocale_59) +STUB( + "MvYkYewNrJU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("MvbIJ1nE4dk", _ZN3JSC23SimpleMarkingConstraintD2Ev) +STUB( + "Mvcaa5i9aq0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEE3getEv) +STUB("MvdnffYU3jg", remainderl) +STUB("Mvelza69ra4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEEC1EPNS2_10LibContextE) +STUB("MvgmWLuycpI", _ZN4Manx6System21defaultThreadPriorityEv) +STUB( + "MvhZDteFo28", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEptEv) +STUB("MviIPALs6os", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEdeEv) +STUB("Mw3phfO0pLI", sceFsUfsAllocateTrophyData) +STUB( + "Mw4-wMrUTL0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEEptEv) +STUB( + "Mw5z1sOf3fc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEED2Ev) +STUB("Mw7nQ6TLQAM", mono_aot_Sce_Vsh_AppDbWrapperplt_end) +STUB("Mw84qLwnIs4", _ZN3WTF14aboutSrcDocURLEv) +STUB("Mw9Tmw6Yjhg", _ZN3JSC24createStackOverflowErrorEPNS_14JSGlobalObjectE) +STUB("Mw9mRQtWepY", sceAudio3dPortDestroy) +STUB("MwAYknEWfAU", _ZN3sce2np13NpAccessTokenC1ERKS1_) +STUB("MwAySqTo+-M", _ZNKSt12codecvt_base11do_encodingEv) +STUB("MwCLoXhvaZA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStats9terminateEv) +STUB( + "MwOoiq+4u20", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEppEv) +STUB("MwS6Kg7Kkk4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEEC1EPS4_PNS2_10LibContextE) +STUB("MwUsyUGVE4w", T5lo) +STUB( + "MwYmBBEvMjM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("MwZxFoHb6Gk", + _ZNK3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer17pushContextsIsSetEv) +STUB("MwbaZTaFtrM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE8copyFromERKS7_) +STUB("MwcHR8xIR2w", sceNpGriefReportCdInit) +STUB("MwcIddgXCRE", _ZN3sce7Toolkit2NP2V27Session9SessionIdD1Ev) +STUB("MwhHNKdBXq8", sceKernelOpenSema) +STUB("MwiKdf6QFvI", __atomic_compare_exchange_2) +STUB("MwmHz8pAdAo", sceNgs2RackGetVoiceHandle) +STUB("MwnE05WFkcQ", _ZN3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer11setOnlineIdEPKc) +STUB("Mwr-lR7-oUs", WKCredentialCopyUser) +STUB( + "MwrKXFEXrEk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEneERKS9_) +STUB( + "MwzcrouCfLs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEppEi) +STUB("Mx3rNOp2EIk", _ZN3sce2Np9CppWebApi11Matchmaking2V19AttributeC2EPNS1_6Common10LibContextE) +STUB("Mx6wrcdGC2w", + _ZN3sce2np3ipc13ServiceClientC2EPNS1_17ServiceIpmiClientEPKNS1_17ServiceClientInfoE) +STUB( + "Mx7vRtClGPQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEE3getEv) +STUB("MxDsAIPWad4", _ZN7WebCore23CoordinatedBackingStoreC1Ev) +STUB("MxGDaM0UkSY", + _ZN9Inspector13AgentRegistry29willDestroyFrontendAndBackendENS_16DisconnectReasonE) +STUB("MxGclWMtl4g", _ZTSSt10moneypunctIwLb0EE) +STUB("MxL-4GUnzwE", _ZN3JSC26UnlinkedFunctionExecutable6s_infoE) +STUB( + "MxN05s+aOMA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("MxPKmADhnKg", _ZN3sce2np13JsonArrayImpl9SetParentEPNS0_9JsonValueE) +STUB("MxQL3TO6K-o", rgctx_fetch_trampoline_mrgctx_28_p) +STUB("MxUMKvlNdno", JVM_LatestUserDefinedLoader) +STUB("MxXZ-poqGNs", sceLncUtilBlockingGetEventForDaemon) +STUB("MxZ4Lc35Rig", _Readloc) +STUB("MxmYa9wUIWk", _ZN7WebCore4FontD2Ev) +STUB( + "Mxq0NGzrVgI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEC2EPS9_) +STUB( + "Mxw+uAAG3kw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEptEv) +STUB( + "My-+nMOaVt0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE4sizeEv) +STUB("My8OsbYYCWw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEE7add_refEv) +STUB( + "My8PARPZ9Rw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEED2Ev) +STUB( + "My8vS83llKk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("MyBXslDE+2o", sceSystemServiceChangeMemoryClockToBaseMode) +STUB("MyDvxh8+ckI", sceSystemServiceActivateHevcSoftGetStatus) +STUB( + "MyGUH7kP8aM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEC2EPS8_) +STUB( + "MyLQLMsW1oQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEE11get_deleterEv) +STUB("MyM-PBaGyn4", _ZN9Inspector21InspectorRuntimeAgent21injectedScriptManagerEv) +STUB("MyQ65g12NMo", sceSlimglServerSetupSocketPairingBy) +STUB( + "MyTAgawfHoo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE8pushBackERKS8_) +STUB( + "MyVxGka74FM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE3endEv) +STUB("MyWHEcabpq0", _ZN3sce7Toolkit2NP2V27Session17SessionInfoUpdateD1Ev) +STUB("MyWOI829pJM", _ZN12video_parser17cVideoProfilerMp4D1Ev) +STUB("MyWQtdtQ0wU", _ZN3JSC16createRangeErrorEPNS_9ExecStateERKN3WTF6StringE) +STUB( + "MyWUKHtin-E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE21intrusive_ptr_sub_refEPS9_) +STUB("MyZwPRUnPDg", _ZNK7WebCore4Page23diagnosticLoggingClientEv) +STUB("MybHsH8cii0", WKHitTestResultGetElementBoundingBox) +STUB( + "MyblgOuM-M8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEC1Ev) +STUB("MycPX0koegg", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEED1Ev) +STUB("MyfwaDGFm00", mono_aot_Sce_Vsh_Np_AppInfounbox_trampolines_end) +STUB( + "Myho53DnrGM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE6resizeEj) +STUB( + "MylwUQdAZHk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEaSERKS9_) +STUB("MyoK4fioe0o", _ZNK3sce2np10JsonNumber3GetEPl) +STUB( + "MyoRuiAoVMw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEneERKS9_) +STUB("Myp3FtCMlpU", + _ZNK3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectator16getJoinTimestampEv) +STUB( + "MysTofhOAjo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEixEm) +STUB("Myvbbodp9dU", _ZN7WebCore17SQLiteTransactionD2Ev) +STUB("MyyhVXryovc", glGetUniformBlockIndex) +STUB("Mz5j0aJUhkA", + _ZN7WebCore17FrameLoaderClient38shouldForceUniversalAccessFromLocalURLERKNS_3URLE) +STUB( + "Mz7-QLroPXc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEEdeEv) +STUB( + "Mz8JVkok804", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEEC2ERKSA_) +STUB( + "Mz8p+Qnk54M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEC2Ev) +STUB("Mz9fOjWreBE", u_getPropertyName_67) +STUB("MzA1YrRE6rA", sceNetConfigCleanUpAllInterfaces) +STUB("MzFBrwVAgns", _ZN3NTF18URLResponseMessageD0Ev) +STUB("MzFpCzbEvxw", mono_reflection_type_from_name) +STUB("MzL0+TU5AIU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V115SearchAttributeEEaSERKS7_) +STUB("MzTa7VLjogY", sceNgs2RackLock) +STUB("MzVmbq2IVCo", sceUserServiceGetIsQuickSignup) +STUB("MzZ1vXfWlaY", _ZN9Inspector26TimelineFrontendDispatcher16recordingStoppedEd) +STUB( + "MzZF67eiL-E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEEdeEv) +STUB( + "Mzbc8Wo9IXk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE5beginEv) +STUB("MzgS-gyYwgY", _ZNK7WebCore15AffineTransform8mapPointERKNS_8IntPointE) +STUB("MzkrJ8VJuP4", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V15OwnerC1EPNS1_6Common10LibContextE) +STUB("MzpjLnMjdwE", WKBundleScriptWorldClearWrappers) +STUB("MzsdXuP-TTs", _ZNK7WebCore24RotateTransformOperation5angleEv) +STUB("MzsycG6RYto", c32rtomb) +STUB("Mzy1jm11FKg", + _ZN3JSC15ArrayBufferViewC2EON3WTF6RefPtrINS_11ArrayBufferENS1_13DumbPtrTraitsIS3_EEEEjj) +STUB("Mzzz2HPWM+8", sceHmdInternalSetM2LedOn) +STUB("N++s7FDbgfY", _ZN7WebCore25contextMenuItemTagOutlineEv) +STUB("N+-DuH-uzL0", mono_loader_init) +STUB( + "N+11T2ZqkXE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEEdeEv) +STUB("N+2oRHGeT0E", _ZN7WebCore17JSDOMRectReadOnly9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("N+6icO7uEd0", _ZN7WebCore4Page12setGroupNameERKN3WTF6StringE) +STUB( + "N+75PgVkP5U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEE7add_refEv) +STUB( + "N+B57mNcP7I", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer36unsetxPSNSESSIONMANAGERREQUESTORIGINEv) +STUB("N+G3Gxequt0", tls_error) +STUB("N+IGrhdl5FU", mono_mempool_alloc) +STUB("N+JkZ-EmyFQ", _ZN7WebCore17NowPlayingManagerD0Ev) +STUB("N+Lz1rGQtyg", + _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchStatusRequest9setStatusERKNS3_12UpdateStatusE) +STUB("N+UDju8zxtE", CERT_STORE_addCertAuthority) +STUB( + "N+e8X1X-EkQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "N+eOQYtXRPo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE5beginEv) +STUB("N+icA-jvTHs", WKBundleFrameCallShouldCloseOnWebView) +STUB("N+ii1KIbXtA", uprv_decNumberLog10_67) +STUB("N+mr7GjTvr8", sceNpAuthCreateAsyncRequest) +STUB( + "N+on7nb0N7w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEEC1ERSA_) +STUB("N+upxnXuFPs", _ZN3WTF9MediaTimemIERKS0_) +STUB( + "N+uuxyqdvFo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEC1Ev) +STUB("N+vcSXzdOJY", _ZN7WebCore13endOfDocumentEPKNS_4NodeE) +STUB( + "N-+fJ-Zq1hw", + _ZNK3sce7Toolkit2NP9Utilities6FutureISbIcSt11char_traitsIcENS1_15AppSTLAllocatorIcEEEE17getAdditionalInfoEv) +STUB( + "N-+xRl3fSzQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE6resizeEj) +STUB("N-2TDcPqToU", JNU_GetStaticFieldByName) +STUB("N-2qBJYv6lw", _ZNK3sce3Xml3Dom8NodeList8findItemENS1_6NodeIdE) +STUB( + "N-8AL1MeRAI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE5beginEv) +STUB( + "N-8VPlM4qYc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("N-BzGK0zsVs", mono_debug_close_image) +STUB("N-FSPA4S3nI", sceAmprCommandBufferSetBuffer) +STUB("N-ICz11vKk4", _ZN3sce7Toolkit2NP2V29Challenge13ChallengeDataD2Ev) +STUB( + "N-JJD0ZATp4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEneERKS9_) +STUB("N-KhZY11lPs", _ZN3sce2Np9CppWebApi7Matches2V113RemovedPlayerC1EPNS1_6Common10LibContextE) +STUB("N-KiTa5Ftg4", _ZN3sce2Np9CppWebApi6Common8IteratorIdEC2Ev) +STUB( + "N-dSB7UQMyM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEE7get_refEv) +STUB( + "N-f2aje1q4A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEaSERKS9_) +STUB("N-hQe7tI61U", sceNpTrophySystemGetTrpGroupIcon) +STUB("N-lB7jHa8Hw", il2cpp_method_get_name) +STUB( + "N-nJ6wPieCk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE5beginEv) +STUB("N-t6bvimom4", sceAudiodReportRegisterHandler) +STUB( + "N-v44712U9o", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE5beginEv) +STUB("N-vYBcgpQS4", WKBundleGetAppCacheUsageForOrigin) +STUB("N-wvaQnlXb0", sceHeadTrackerInitialize) +STUB("N-xzO5-livc", sceUserServiceSetGlsCameraBgFilter) +STUB("N-yu8uguYHk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEED2Ev) +STUB("N0+x3Spg1YQ", _ZN3sce7Toolkit2NP2V23TUS7Request18GetUsersDataStatusC2Ev) +STUB("N006EqHHvV4", _UTF16LEData_67) +STUB( + "N0085zjTsPk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("N03wZLr2RrE", _ZNSt15_Num_float_base14is_specializedE) +STUB("N09SXXRD6VI", png_write_row) +STUB("N0A1unSU8pw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEaSERKS7_) +STUB( + "N0ACqxdL4w8", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_errorC2EPNS1_6Common10LibContextE) +STUB("N0BIy-itl-A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEmmEv) +STUB("N0CijQdB1Jc", + _ZN15AbstractStorage12LocalStorage5ChModERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEt) +STUB("N0EHkukBz6Q", _ZTSSt13messages_base) +STUB("N0FoGXAXViI", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V113ErrorResponse8fromJsonERKNS_4Json5ValueE) +STUB( + "N0H2z6N6nbc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEEaSERKSA_) +STUB("N0I2MSzYs1I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEED1Ev) +STUB("N0NlOnbnMKg", _ZN7WebCore6Path2DnaEmPv) +STUB("N0RPPNRNWX4", ultag_isUnicodeLocaleKey_67) +STUB("N0U6ySGTkHI", + _ZN7WebCore11DisplayList8ReplayerC2ERNS_15GraphicsContextERKNS0_11DisplayListEPNS1_8DelegateE) +STUB("N0V2-p-0hAM", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectIdD1Ev) +STUB("N0WdFbK+yIg", delegate_virtual_invoke_imt_30_p) +STUB( + "N0Zhc7S4h-c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEE5resetEPS9_) +STUB( + "N0aJWObS44c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEE5resetEPS9_) +STUB("N0alkBnyqYQ", mono_shared_mempool_new) +STUB("N0auHhPnJyg", _ZN7WebCore9HTMLNames5ulTagE) +STUB("N0b-Kky0vyc", sceVshAvcapReadUserdata) +STUB("N0b9fruhqcs", _ZN3sce7Toolkit2NP2V24Core17CustomRequestBaseaSERKS4_) +STUB( + "N0cuQxzTiDk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEC1EPNS2_10LibContextE) +STUB( + "N0dfo1RIxXg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEdeEv) +STUB( + "N0gwE8r9SEE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEaSERKS9_) +STUB( + "N0hIaQykVSI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("N0iF180VjGk", sceNpLookupNetCensorComment) +STUB("N0iXfw1xf1Q", _ZN4IPMI4impl10ClientImplC2Ev) +STUB("N0pjMzLO+gU", _ZNK7WebCore22EmptyFrameLoaderClient9sessionIDEv) +STUB("N0v1-dO37MA", YGNodeStyleGetDirection) +STUB("N0wmoVhLuFA", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEEC1Ev) +STUB("N10M2hixaiA", mono_aot_System_Runtimeunbox_trampolines_end) +STUB("N13NkeOmCiU", _ZN7WebCore25encloseRectToDevicePixelsERKNS_9FloatRectEf) +STUB( + "N13stJDRU5I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE8copyFromERKS9_) +STUB("N17AK88NdD0", sceVideoOutCursorSetPosition) +STUB( + "N18Hj0DBC3w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEppEi) +STUB("N1AE5kZeN98", _ZN7WebCore15XPathExpression8evaluateERNS_4NodeEtPNS_11XPathResultE) +STUB("N1EBMeGhf7E", sceFontSetScalePixel) +STUB("N1Fa3I-h3+s", _ZN7WebCore11JSImageDataC2ERKS0_) +STUB( + "N1OzvTSKGRE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEmmEv) +STUB("N1PhQhZsKdE", sceHandTrackerGetDataMemorySize) +STUB("N1S26TrBLLk", FT_Get_Font_Format) +STUB("N1UoRAKiqjU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEEC1EPNS2_10LibContextE) +STUB( + "N1VZUoOe-sc", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "N1VqUWz2OEI", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERj) +STUB("N1ZDxe3M4sA", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOffer10setofferIdEPKc) +STUB("N1bEoJ4SRw4", sceVideoOutConfigureOutputMode_) +STUB("N1dFmppU9j0", sceRemotePlayClientTerminateStreaming) +STUB( + "N1e5cRoHksE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEaSERSA_) +STUB("N1fabnpJD1o", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_21AbortGameDataResponseEE3getEv) +STUB("N1g1IhlobJQ", + _ZN3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator12setAccountIdEPKc) +STUB("N1gnYosdK7Q", _ZN3sce2np10EventQueue4dtorEv) +STUB("N1iB3I8VXis", _ZN3sce3Xml3Dom15DocumentBuilder5parseEPKNS0_6StringEb) +STUB( + "N1rKdeTQ22s", + _ZN7WebCore23indexForVisiblePositionERKNS_15VisiblePositionERN3WTF6RefPtrINS_13ContainerNodeENS3_13DumbPtrTraitsIS5_EEEE) +STUB("N1rt2nzLpnM", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V112TicketStatusEEC2Ev) +STUB( + "N1sSXExsa90", + _ZN15AbstractStorage17DailymotionFolder10NewContentERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_7ContentEE) +STUB("N1umF0G2dII", __tsan_testonly_barrier_init) +STUB("N1zFsJSEKno", _Z28scePlayGoDevReleaseHashTablev) +STUB("N2+zBtGZIDw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEEptEv) +STUB( + "N23FocGkWvw", + _ZN7WebCore28InspectorFrontendClientLocal17setAttachedWindowENS_23InspectorFrontendClient8DockSideE) +STUB( + "N29qs9Fnhy0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEEC1Ev) +STUB( + "N2I7rJT48y0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEaSERKS7_) +STUB("N2JW1vN+M8w", mono_aot_Sce_Vsh_Accessor_Dbunwind_info) +STUB("N2Jbx4tIaQ4", sceNpWebApiIntCreateRequest) +STUB("N2O4kbSD1s4", sceCesSJisToUtf16) +STUB("N2OjwJJGjeQ", freeifaddrs) +STUB("N2P3D8o2N7o", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData10unsetrangeEv) +STUB("N2TrOzxQ9Ww", delegate_virtual_invoke_imt_7_p) +STUB("N2TxrmwiPxg", _ZNK7WebCore27PlatformMediaSessionManager30applicationWillEnterForegroundEb) +STUB("N2VV+vnEYlw", _ZTIN10__cxxabiv120__si_class_type_infoE) +STUB("N2Y7A+WiJhQ", u_hasBinaryProperty_67) +STUB( + "N2ZPBAvQ4P4", + _ZN7WebCore18JSHTMLVideoElementC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_16HTMLVideoElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB("N2eLYNTB2w0", _ZN3sce7Toolkit2NP2V212ActivityFeed5Story17CREATION_DATE_LENE) +STUB("N2f485TmJms", _ZNSt8ios_base7failureD1Ev) +STUB("N2gVimIzSWI", _ZN3sce7Toolkit2NP2V210Tournament15RegisteredUsersC1Ev) +STUB("N2o9rIY7NHI", _ZN7WebCore8SVGNames21contentScriptTypeAttrE) +STUB("N2xzUyENlCU", _ZNK3sce2Np9CppWebApi11UserProfile2V112BasicProfile11getOnlineIdEv) +STUB("N33hhCLUt54", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_13NetStateBasicEE3getEv) +STUB("N34j01abxh4", GCC_except_table416) +STUB("N38TrbHlwaQ", monoeg_g_get_tmp_dir) +STUB("N39BtoMLsU4", WKPreferencesGetPageCacheEnabled) +STUB( + "N39f4FDyLrE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEC2EPS6_PNS2_10LibContextE) +STUB("N39w8gCDtOM", WKPreferencesGetMockScrollbarsEnabled) +STUB("N3FB4r8JoRE", sceNpUtilCanonicalizeNpIdForPsp2) +STUB("N3FMw0o2nBQ", GCC_except_table10) +STUB( + "N3GNXvHFQLY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEC2EPKS8_) +STUB("N3IOS3hGc0M", _ZN7WebCore15rangeOfContentsERNS_4NodeE) +STUB( + "N3KtZrWVnHI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "N3Lgk0-Gh94", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("N3O5khw1t6Y", _ZN7WebCore16HTMLMediaElement5pauseEv) +STUB("N3PR7oSa5hs", UseSharedSpaces) +STUB("N3Uks6kHwI0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE5beginEv) +STUB( + "N3Vpo3kNjLc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEED2Ev) +STUB("N3XmHcFEPIs", rgctx_fetch_trampoline_mrgctx_122) +STUB("N3bGYLHZl48", WKContextGetResourceCacheManager) +STUB("N3dPQZbNQPI", sceCesUcsProfileInitEucJpCp51932) +STUB("N3dSIfd3-yQ", mono_aot_Sce_Vsh_VideoEdit_Wrapperplt_end) +STUB("N3h7zyMwHWU", + _ZN7WebCore21DiagnosticLoggingKeys49successfulSpeculativeWarmupWithoutRevalidationKeyEv) +STUB( + "N3hDSdJBkew", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEdeEv) +STUB( + "N3lTjrCJIFg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE5beginEv) +STUB("N3odb7HTKqE", Java_java_net_SocketOutputStream_init) +STUB( + "N3pmBZlD7ok", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("N3tAHlBnowE", sceNpUtilBuildTitleId) +STUB("N3zszBFN9bI", mono_string_equal) +STUB( + "N486eQ-hk8o", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE18getResponseHeadersERSA_) +STUB("N4AToF3po08", sceSysUtilSendSystemNotificationWithAppName) +STUB( + "N4DzXTDDZw4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEEptEv) +STUB("N4KQNE+qIp8", _ZN9Inspector27PerGlobalObjectWrapperWorldD1Ev) +STUB("N4NG9j8mdzo", sceVencQueryMemorySize) +STUB("N4QsuwxwiS8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE21intrusive_ptr_sub_refEPS7_) +STUB("N4RkyJh7FtA", sceSystemServiceKillApp) +STUB( + "N4STTO9x1rE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEEC2Ev) +STUB("N4Tq8PMMHeM", delegate_virtual_invoke_14_p) +STUB("N4UfjvWJsMw", sceHttp2CreateCookieBox) +STUB( + "N4Y+STUJmE4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEixEm) +STUB("N4YN4JxKa6U", _ZNK3JSC8JSObject8toNumberEPNS_9ExecStateE) +STUB("N4Yxi6TOLcI", _ZTVN9Inspector24RemoteControllableTargetE) +STUB( + "N4ZMPH8OXEM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEED1Ev) +STUB("N4ZsJ0isMVY", _ZN3sce2Np9CppWebApi7Matches2V14TaskD1Ev) +STUB("N4b-kiqQHyg", _ZN7WebCore9FrameView18setViewExposedRectESt8optionalINS_9FloatRectEE) +STUB("N4dVm7KpE+g", mono_aot_Sce_Vsh_Np_ServiceChecker2plt_end) +STUB( + "N4kEztafQCs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEEC2ERKS9_) +STUB("N4mBXKAqz+o", _ZN3JSC4Heap19stopIfNecessarySlowEv) +STUB( + "N4n8wCrY1mY", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi42ParameterToPutGameSessionsSearchAttributesC1ERS5_) +STUB("N4qrFLcXLpY", sceUserServiceSetThemeBgImageWaveColor) +STUB( + "N4ruWYXT1jo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEE6assignEPS7_PFvS9_EPNS2_10LibContextE) +STUB("N4sg4khVh0w", u_fsetcodepage_67) +STUB( + "N4x4cRUbvl0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEEdeEv) +STUB( + "N4xgR7ON6cQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE8pushBackERKS8_) +STUB( + "N5-lkYpvKsY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEC1EPNS2_10LibContextE) +STUB("N54dyckyj2Q", sceMusicCoreServerGetCoreInfo) +STUB( + "N59uGTx+ago", + _ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead8fromJsonERKNS_4Json5ValueE) +STUB("N5CYvjCZL0s", _ZN3JSC7Symbols27performIterationPrivateNameE) +STUB( + "N5K6VCK7Z6k", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEplEm) +STUB("N5KDtkIjjJ4", sceVideoOutUnregisterBuffers) +STUB("N5MfKCnNl04", _ZN15AbstractStorage14FacebookFolderD1Ev) +STUB("N5NCHzbSmBA", mono_aot_Sce_Vsh_KernelSysWrapperplt_end) +STUB("N5RpW-mk9mE", __asan_report_exp_load_n) +STUB("N5SO+nV+YxU", Java_com_sony_gemstack_io_factories_ps_PSAttributes_n_1getAttributes) +STUB( + "N5Wo46EikAI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEEdeEv) +STUB( + "N5Xk+G5DDJ4", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed14PlayedWithFeedEE19setCustomReturnCodeEi) +STUB("N5nZ3wQw+Vc", _ZNSt9type_infoD0Ev) +STUB("N5xN0QU9QR0", _ZN3sce2Np9CppWebApi6Common8IteratorImEaSERKS4_) +STUB("N5yPp5dHBQE", curl_easy_reset) +STUB("N61c8+bAHYA", _ZN7WebCore11DisplayList6SetCTMD2Ev) +STUB("N64zIkwmxG0", + _ZN7WebCore15StringTruncator13rightTruncateERKN3WTF6StringEfRKNS_11FontCascadeERfbf) +STUB("N6Bb9tOzbOE", _ZN7WebCore20TransformationMatrix5blendERKS0_d) +STUB("N6C0yWHObPE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEED2Ev) +STUB( + "N6E5TEfV8yM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEixEm) +STUB( + "N6HRMBBnPG0", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V312ErrorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5ErrorEEE) +STUB("N6ID0KNnzY8", sceCompositorGetSystemSize) +STUB("N6JHDaGTItI", _ZN7WebCore9CookieJarD0Ev) +STUB("N6KMnavOzzk", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_18GameCustomDataItemEE3getEv) +STUB("N6Oy-EjduiY", sceAvPlayerSetAvailableBandwidth) +STUB("N6RNRFAzcI8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE6resizeEj) +STUB( + "N6RUTJkSwEg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEppEi) +STUB("N6SkkX1GkFU", _ZN3sce2np8NpCommIdC1ERKS1_) +STUB("N6T9zuarUZI", ufmt_close_67) +STUB("N6VYBFSOZxg", upvec_compact_67) +STUB("N6Y0fJoacEU", WKPreferencesGetDeferredCSSParserEnabled) +STUB("N6Zxk80Ewgs", WKPageConfigurationGetTypeID) +STUB( + "N6dcmbAdzrc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEE3getEv) +STUB("N6jdzDR6Zpk", _ZN7WebCore15DatabaseTracker28deleteDatabasesModifiedSinceEN3WTF8WallTimeE) +STUB( + "N6jyiwlBMdc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE3endEv) +STUB("N6lOuDxmAiU", sceDebugIpmiGetClientKidListByServerKid) +STUB("N6pFrcdbrwc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEEdeEv) +STUB("N6qkPfyi6-g", _ZN3sce7Toolkit2NP24SendInGameMessageRequestC1Ev) +STUB( + "N73vg9P-UC4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEC2Ev) +STUB("N74RfOdH1jU", linear_search) +STUB( + "N77KqKyC8gA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEC2EPS8_) +STUB("N788WAPK-i8", _ZN3sce7Toolkit2NP29ConsumeEntitlementInputParamsC1Ev) +STUB("N78X77MbMH8", + _ZN12video_parser5vpcom10_ReadAsyncEPNS_8_vp_fileEPvjPijS3_PFNS_11VP_RESULT_eES2_S3_jS4_S3_E) +STUB("N78gkQzXRL4", _ZN3sce4Json6StringC2EPKc) +STUB("N78k-Vryooc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEED1Ev) +STUB("N7M3+N-sBCw", sceAgcDcbPushMarkerSpan) +STUB("N7PrM+lPMW0", sceCompositorGetCanvasHandle) +STUB( + "N7VGnpnlfKU", + _ZN3sce2Np9CppWebApi11Matchmaking2V116SubmitterFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_9SubmitterEEE) +STUB( + "N7dofZ1DpIY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEixEm) +STUB("N7gOJ1+zbhQ", _ZN7WebCorelsERN3WTF10TextStreamERKNS_15ScrollAlignmentE) +STUB("N7gzoBpy+vc", png_save_uint_32) +STUB( + "N7kThMOy1bY", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13boolean2IsSetEv) +STUB("N7kmCi5hOdc", _ZN7WebCore12PrintContext27computeAutomaticScaleFactorERKNS_9FloatSizeE) +STUB( + "N7pZuFOjf3A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEC2ERKS7_) +STUB( + "N7qO-6ocCZs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEEC1ERSA_) +STUB("N7syg-kTPJY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEED2Ev) +STUB("N7tpsjWQ87s", scePadVirtualDeviceAddDevice) +STUB("N7wKmIrVYZc", _ZN3JSC7Symbols17returnPrivateNameE) +STUB("N7xnOTDMh1s", _ZN7WebCore20NetworkStateNotifier6onLineEv) +STUB("N7yf+u-Qonw", + _ZN3sce7Toolkit2NP2V29Messaging7Request37DisplayReceivedGameDataMessagesDialogD2Ev) +STUB( + "N7yubAqWTK0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("N7z+Dnk1cS0", _ZNKSt7codecvtIcc9_MbstatetE7unshiftERS0_PcS3_RS3_) +STUB("N8-Q87pRWMw", _ZNSt10_Ref_countIN15AbstractStorage15FacebookContentEED1Ev) +STUB("N84qS6rJuGI", _ZTSPe) +STUB("N88-2IGP1a4", mono_aot_Mono_Dynamic_Interpreterunbox_trampoline_addresses) +STUB("N8AI8oHmBc8", u_strpbrk_67) +STUB("N8CArZl3roY", ucal_setDefaultTimeZone_67) +STUB( + "N8ECfP3wmpM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE8pushBackERKS8_) +STUB("N8JLogCXQcQ", + _ZN3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession16unsetSessionNameEv) +STUB("N8KLCZc3Y1w", _ZTSx) +STUB( + "N8KbL-Cm1oU", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot9getslotIdEv) +STUB( + "N8LWXRFFfcg", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer17setacceptLanguageEPKc) +STUB( + "N8Mduunm45s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEE11release_refEv) +STUB("N8PebyNzMzk", _ZN7WebCore18JSHTMLVideoElement9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB( + "N8QAfvo4NzE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "N8R7SViwY6Y", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "N8RntiT0zDY", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeaders15hasCacheControlEv) +STUB("N8VXirxuU5w", _ZN3sce7Toolkit2NP2V24Core7Request16ThreadProperties14STACK_MIN_SIZEE) +STUB("N8Vkx5mZL3Q", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEEdeEv) +STUB( + "N8X38WX+rYU", + _ZN7WebCore6Editor22writeImageToPasteboardERNS_10PasteboardERNS_7ElementERKN3WTF3URLERKNS5_6StringE) +STUB( + "N8cvDK8qKSw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEC2EPS8_) +STUB( + "N8d4B4H2KRw", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetrics6toJsonERNS_4Json5ValueEb) +STUB("N8ff+sy7SEU", _ZN3sce7Toolkit2NP2V211UserProfile10NpProfilesD1Ev) +STUB( + "N8s7itVpQBM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE5beginEv) +STUB("N91V1f4JbbA", _ZN7WebCore12SharedBufferC2EONS_10FileSystem14MappedFileDataE) +STUB("N93Nb5-YJsw", WKContextPostMessageToInjectedBundle) +STUB("N97GDILF77Y", bemp2sys_packetizer_init) +STUB( + "N9AdsPcm5qc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEmmEi) +STUB( + "N9DsGv73MT4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEEC1ERKSA_) +STUB("N9IMYkCSZSk", uset_open_67) +STUB("N9K6D-eO6UI", sceFaceTrackerGetDefaultConfig) +STUB("N9KKC6Q8mhg", SSL_set_session) +STUB("N9LD0odT-kI", sceVdecwrapResetDecoder) +STUB( + "N9R+UD9rBhg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEEC1EPKS6_) +STUB("N9SrpMINuLw", sceKernelClearBootReqNotifyCount) +STUB("N9TCWgQlV1U", _ZN3sce2Np9CppWebApi12Leaderboards2V113ErrorResponseD2Ev) +STUB("N9ThRp3A3SU", mono_debug_il_offset_from_address) +STUB( + "N9XqGSdUYYs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEC1Ev) +STUB("N9YwXumgOfo", sceMatMemoryPoolDecommit) +STUB("N9aQAacxzfQ", _ZN7WebCore10FileSystem13listDirectoryERKN3WTF6StringES4_) +STUB( + "N9dw2Ui9LJc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEED1Ev) +STUB( + "N9gzGHKbtP4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEmmEv) +STUB( + "N9jUpAxISno", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi26setPlayerSessionPropertiesEiRKNS4_37ParameterToSetPlayerSessionPropertiesERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB( + "N9jV0y31xMg", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlot9getslotIdEv) +STUB( + "N9n0qgMigps", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEED2Ev) +STUB("N9roSC2MBLU", mono_aot_Sce_Vsh_Np_ServiceChecker2jit_got) +STUB( + "N9vXsUsR2WA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEE11release_refEv) +STUB( + "N9zNETnd3js", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEC1Ev) +STUB("NA-qlFKvMOU", u_versionFromString) +STUB("NA46RXga9OQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE5beginEv) +STUB("NA5D9n4TpzE", _ZN3JSC16SamplingProfiler17stackTracesAsJSONEv) +STUB("NA92tSxkAaM", _ZN7WebCore8SVGNames15stitchTilesAttrE) +STUB("NACNNE+74fo", + _ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer11setPlatformEPKc) +STUB("NADMbD5Adow", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicketD2Ev) +STUB( + "NADWq+H9kns", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEixEm) +STUB("NASakyO6sMo", _ZN7WebCore8JSDOMURL14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB( + "NAVPJmN1qoE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE8pushBackERKS8_) +STUB( + "NAZ27WCrKkk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEixEm) +STUB( + "NAakmRoBF-o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("NAbNV6OSGEc", mono_aot_Mono_Cairojit_code_start) +STUB("NAdhuyVwGqs", _ZN3sce7Toolkit2NP2V28Matching7Request10CreateRoom24MAX_SIZE_CHANGEABLE_DATAE) +STUB("NAgzpjKKDGg", _ZN7WebCore17PageConsoleClient4timeEPN3JSC9ExecStateERKN3WTF6StringE) +STUB("NAmyHeO0dvY", _ZN3sce7Toolkit2NP2V27Session7Request7GetInfoD1Ev) +STUB("NApYynEzlco", _Dnorm) +STUB( + "NAuf9W6vBEg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEixEm) +STUB( + "NAwpmWZSOtk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEC1Ev) +STUB( + "NAxB0+wLIhs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEEC1Ev) +STUB( + "NB0mXdlRc5k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEC1EPS8_) +STUB("NB1Y2kA2jCY", sceHmdSetupDialogInitialize) +STUB( + "NB1gyiJJhEM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEC1EPS8_) +STUB("NB5lJxGW9Ro", WKGeolocationManagerProviderDidChangePosition) +STUB("NB6f-iHahKI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEEC2ERS7_) +STUB("NB9-D-o3hN0", sceUserServiceSetGlsTtsPitch) +STUB( + "NB9kUK10Vnw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "NBAgitclf60", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE5eraseENS2_8IteratorIS9_EERSC_) +STUB( + "NBGf7IAvuT0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE5emptyEv) +STUB("NBHornhSSBk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEC1Ev) +STUB("NBK1rc2pqGg", sceVideoNativeExtEssential_DestroyDecInstance) +STUB( + "NBMBahOQQB8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("NBSv1TK3DWU", _Z28sendIpmiInvokeAsyncMethodResiiiiiPKN4IPMI8DataInfoEb) +STUB( + "NBTE1k7eEys", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEED1Ev) +STUB( + "NBWG-mpnji4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEEC1ERS9_) +STUB( + "NBXUNJ09GJU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEC1Ev) +STUB("NBcu2DCofTw", _ZN3WTF17double_conversion23StringToDoubleConverter13StringToFloatEPKcmPm) +STUB("NBcz0Vr99eQ", il2cpp_set_data_dir) +STUB("NBegBgxEw08", + _ZN12video_parser18cProfileCheckerMp419_isPlayableAudioAACERKNS_13VpMediaInfo_tE) +STUB("NBgXD4SrmfY", _ZN7WebCore11DisplayList8DrawLineC2ERKNS_10FloatPointES4_) +STUB( + "NBiiqxQHtZo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEEdeEv) +STUB("NBjin8TOnnA", WKBundlePageOverlayGetTypeID) +STUB( + "NBuSCVX83ds", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "NBuilbVaR18", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEEC2Ev) +STUB("NBymTwgR3WQ", _ZN3sce2Np9CppWebApi7Matches2V118RequestTeamResults10unsetScoreEv) +STUB("NC4MSB+BRQg", strncat_s) +STUB("NC762sOoy-g", WKBundleFrameGetContentBounds) +STUB( + "NC9HWg9pfYs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEE3getEv) +STUB( + "NCAJrUYVzzs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE21intrusive_ptr_add_refEPS9_) +STUB("NCEb7FCfmwE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEED2Ev) +STUB( + "NCFn3rGtED0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEED1Ev) +STUB("NCHVBc1E3+c", _ZNK7WebCore8Location4hostEv) +STUB( + "NCIRE95krsQ", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence12Notification14PresenceUpdateEE19setCustomReturnCodeEi) +STUB("NCJjnW5g59Q", _ZN3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectatorD1Ev) +STUB("NCP3bLGPt+o", sceNpMatching2GrantRoomOwner) +STUB( + "NCTn5LeS6EA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEEaSERSA_) +STUB("NCe1Kgd6Jlo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEED1Ev) +STUB("NCmJRtMzQLk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEE11release_refEv) +STUB( + "NCnDvEDsaio", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB( + "NCo55dHmPRk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEEC1ERKS9_) +STUB( + "NCsvKBnINqk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "NCui6QkdUEU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "NCzvEueb1tM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEC2ERS7_) +STUB("ND+7k58SVFE", scePerfPmcMcSeqSetCounter) +STUB("ND2LqMQOzQs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE5beginEv) +STUB( + "ND4vTtL6ceA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB("NDAHXMuRQ5M", _ZNK7WebCore13GraphicsLayer26backingStoreMemoryEstimateEv) +STUB("NDExGWt1HdE", mono_threads_enter_gc_unsafe_region_unbalanced) +STUB("NDFvu6iq9PE", WKPreferencesSetTabToLinksEnabled) +STUB( + "NDJNnr29Eh8", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEiRNS2_10LibContextEPT_m) +STUB("NDNujUEAyS4", sceVideoCoreAbortRequest) +STUB("NDOLSTFT1ns", __feenableexcept) +STUB( + "NDUbtN+5DjA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEC1EPS6_PNS2_10LibContextE) +STUB( + "NDWGKBrHKbM", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEED2Ev) +STUB( + "NDYFR6iSXR8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEEptEv) +STUB("NDbQMSkpoXg", sceMatSetPrtAperture) +STUB("NDcSfcYZRC8", malloc_usable_size) +STUB("NDdx1EP18kM", + _ZN3sce7Toolkit2NP2V29Challenge7Request21GetReceivedChallenges21MAX_NUM_CHALLENGE_IDSE) +STUB( + "NDecA6TqMWI", + _ZN7WebCore21JSRemoteDOMWindowBaseC2ERN3JSC2VMEPNS1_9StructureEON3WTF6RefPtrINS_15RemoteDOMWindowENS6_13DumbPtrTraitsIS8_EEEEPNS_13JSWindowProxyE) +STUB("NDeifpoQvKE", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsD1Ev) +STUB( + "NDfv8voZjPU", + _ZN7WebCore14LoggedInStatus6createERKNS_17RegistrableDomainERKN3WTF6StringENS0_19CredentialTokenTypeENS0_18AuthenticationTypeE) +STUB("NDho6fEIMSk", _ZN3sce2Np9CppWebApi6Common6VectorIjE7popBackEv) +STUB("NDnuLyNDr0s", mono_aot_Sce_Vsh_UserServiceWrapperplt_end) +STUB( + "NDsGZA8ppAQ", + _ZN9Inspector33ApplicationCacheBackendDispatcherC2ERNS_17BackendDispatcherEPNS_40ApplicationCacheBackendDispatcherHandlerE) +STUB("NDsTaWhoVQI", BN_new) +STUB("NDvMOmW2dH0", _ZN3WTF10StringImpl23convertToASCIIUppercaseEv) +STUB("NE+wEY8+0nc", _ZN7WebCore10FileSystem8openFileERKN3WTF6StringENS0_12FileOpenModeE) +STUB( + "NE6MdQl8Bkc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEC1EPS8_) +STUB( + "NE7+rjDCD4o", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEixEm) +STUB( + "NECMvzMD4vY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "NEEW004kTVA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEEC2ERSA_) +STUB( + "NETV3Pkxu1U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEE11release_refEv) +STUB("NEWQfiblmOM", _ZN7WebCore8JSPath2DC1ERKS0_) +STUB( + "NEYuVqTXo4M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEED1Ev) +STUB( + "NEdhpyHgRsk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("NEemVJeMwd0", _ZNKSt8bad_cast8_DoraiseEv) +STUB( + "NEgCLV3iB+U", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils16NetStateDetailedEE19setCustomReturnCodeEi) +STUB( + "NEmJuozMA2U", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_11EntitlementENS1_15AppSTLAllocatorIS5_EEEED2Ev) +STUB( + "NEnVsoss6qA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEC2EPNS2_10LibContextE) +STUB("NEp8deTHgK4", _ZN3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate13unsetTeamNameEv) +STUB("NEpzmuIn-fQ", _ZN3sce2np9HttpTrans6IsInitEv) +STUB( + "NEqo9uFTbng", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEEdeEv) +STUB("NEtnusbZyAs", sceNetCtlGetResultIpcInt) +STUB( + "NEvSfnU+AZU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEC1EPNS2_10LibContextE) +STUB( + "NEy-VXdEjO8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEED1Ev) +STUB( + "NEyCQrYs6Jw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEED2Ev) +STUB( + "NEyVgZ9GXKM", + _ZN3sce2Np9CppWebApi11Matchmaking2V125PlayerForOfferReadFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_18PlayerForOfferReadEEE) +STUB( + "NEz-KecPe68", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEC2ERS7_) +STUB("NEzrN-XLbQI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEED1Ev) +STUB("NF1s99Jgzow", _ZNK7WebCore9FrameTree10childCountEv) +STUB( + "NF1yK-bmqOg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE3endEv) +STUB("NF2Fp0E+ckg", _ZN3NTF17URLRequestDataJob6cancelEv) +STUB("NF39IMkQjhE", ucol_countAvailable_59) +STUB("NF3f0EQqjms", mono_aot_ClassLibrary1unwind_info) +STUB("NF3jGh0iO4Q", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEEixEm) +STUB( + "NF68mMMGT98", + _ZN3sce2Np9CppWebApi14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBody8fromJsonERKNS_4Json5ValueE) +STUB("NF8-2Zm83GU", + _ZN3sce7Toolkit2NP2V211SocialMedia7Request12ActionLinkFb24MAX_ACTION_LINK_NAME_LENE) +STUB("NF8XcojGF08", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEEC1EPS5_PFvS7_EPNS2_10LibContextE) +STUB("NFAhHKyMnCg", _ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE) +STUB("NFBhB2pvweA", _ZN4IPMI4impl11SessionImpl13setSessionKeyEj) +STUB( + "NFCaDW0mrFI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEppEi) +STUB( + "NFDZl-dUXVc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEC1EPS8_) +STUB( + "NFK9JY4IXgA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEE7get_refEv) +STUB("NFLZY+fVG-g", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEEptEv) +STUB("NFLs+dRJGNg", memcpy_s) +STUB("NFMPkcE9feI", _ZN7WebCore11MediaPlayer24setClosedCaptionsVisibleEb) +STUB( + "NFO4j-UV9v8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "NFOpTpQBrc8", + _ZN9Inspector23WorkerBackendDispatcherC2ERNS_17BackendDispatcherEPNS_30WorkerBackendDispatcherHandlerE) +STUB("NFStvFM+bIw", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V510AnnotationEEptEv) +STUB( + "NFVKmi4OSkQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("NFWAeJfYRwI", fuse_fs_lock) +STUB("NFbPqc4Y2gM", WKPreferencesGetScreenFontSubstitutionEnabled) +STUB( + "NFbmb9vtEuM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE8capacityEv) +STUB("NFecWyGuuMk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEEppEv) +STUB( + "NFfLTZxLqu8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEE11release_refEv) +STUB("NFftkkXV3ns", PKCS7_free) +STUB( + "NFjUN9CCnoA", + _ZN7WebCore16DeviceMotionData6createEON3WTF6RefPtrINS0_12AccelerationENS1_13DumbPtrTraitsIS3_EEEES7_ONS2_INS0_12RotationRateENS4_IS8_EEEESt8optionalIdE) +STUB( + "NFlJyoPBDmU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE21intrusive_ptr_add_refEPS9_) +STUB("NFreX0aMUyY", _ZNK3sce2Np9CppWebApi11UserProfile2V112BasicProfile12aboutMeIsSetEv) +STUB("NFwh-J-BrI0", sceRazorCpuInitializeGpuMarkerContext) +STUB("NFxDIuqfmgw", scalblnl) +STUB("NG+D00RsX1Y", SSL_CTX_set_min_proto_version) +STUB( + "NG-lbm2BAKU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEptEv) +STUB("NG1phipELJE", _ZSt13set_terminatePFvvE) +STUB("NG5BY8rlbLw", _ZNK7WebCore21NetworkStorageSession18cookieAcceptPolicyEv) +STUB( + "NG60X2NQyuc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEC2EPKS8_) +STUB("NG7OgYsgcF8", FT_Outline_New_Internal) +STUB( + "NG983jZ9mos", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearch13isInitializedEv) +STUB( + "NGBF3szOnt8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEC2EPS6_PNS2_10LibContextE) +STUB("NGCeFUl5ckM", sceNpTusGetMultiSlotDataStatusVUser) +STUB( + "NGD5QKbcm9M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEC2EPKS8_) +STUB( + "NGNSgj5QRDE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEE11get_deleterEv) +STUB( + "NGRwo5tUt34", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("NGS0taBPEQg", __cxx_global_var_init .17) +STUB("NGTkAHTkViY", curl_easy_strerror) +STUB("NGTwQDHsPsQ", ucptrie_getRange_67) +STUB("NGYgShA2SkI", _ZN3sce7Toolkit2NP2V27Session10InvitationC1Ev) +STUB("NGaR2vt2da4", _ZNK3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer11getPlayerIdEv) +STUB("NGf0AZECwU0", mono_aot_JSC_Netunwind_info) +STUB("NGfsoXi2arU", _ZN7WebCore11DisplayList11SetLineJoinD0Ev) +STUB("NGjHS-+WpA4", sceCesUtf16beToMbc) +STUB("NGmLCaIz2mA", _ZL14free_exceptionPc) +STUB("NGpv+Db5ZfQ", mono_aot_Sce_Vsh_Np_RifManagerplt_end) +STUB( + "NGxpDUTl6J8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE5beginEv) +STUB("NGyEl5aT4fc", sceVideoOutDriverGetBufferLabelAddress) +STUB("NH0FHC1fkDU", g_strerror) +STUB( + "NH0Pc14g6NQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEE3getEv) +STUB( + "NH5at7ok2SQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEEC2Ev) +STUB( + "NH6l5zc5Aqw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEptEv) +STUB("NH8C4UTIAG0", _ZN7WebCore15GraphicsContext4clipERKNS_9FloatRectE) +STUB( + "NHAm6v+NDAI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "NHFooSnrS0E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEppEi) +STUB( + "NHIDoWvNhl8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("NHP5ZtmRktA", il2cpp_format_exception) +STUB( + "NHQ3gDcgVnU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEeqERKS9_) +STUB( + "NHRdkqJlG7A", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEptEv) +STUB( + "NHU99s0UG6A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "NHV4oN2sbdk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEC2Ev) +STUB("NHXXBidSb6Y", EVP_PKEY_CTX_ctrl) +STUB( + "NHXj3JBUvsc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEC2EPS8_) +STUB("NHbQrWA9ous", g_JSScriptFetchParametersPoison) +STUB("NHePel-6CXU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEEC1EPKS6_) +STUB( + "NHh+Omcj4T8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("NHjHSABXkLo", sceMatFreePoolMemory) +STUB("NHsN2nJAVmM", _ZN3sce3Xml3Dom6NodeIdneES2_) +STUB("NHvpCXsxeek", mono_g_hash_table_replace) +STUB("NHx9pxHiSbU", __init_array_start) +STUB("NHxNdZ18H+E", uregex_clone_67) +STUB("NHxpE45ygfQ", glFramebufferTextureLayer) +STUB("NI0zZ27Gxms", Java_sun_misc_Signal_raise0) +STUB("NI51esCzmIs", sceValidationGpuGetVersion) +STUB( + "NID-hBPPmaY", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119NatConnectivityFromC1EPNS1_6Common10LibContextE) +STUB("NIH35yrD3TY", _ZN7WebCore19JSDOMImplementation9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB( + "NIHO2YQXJo8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEC2EPNS2_10LibContextE) +STUB("NIKqUIU67Fk", _ZN7WebCore9HTMLNames9strikeTagE) +STUB( + "NIPUv7Lx9s8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEptEv) +STUB( + "NIeBgP+6G7A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE8pushBackERKS8_) +STUB("NIfFNcyeCTo", feraiseexcept) +STUB("NIhRLDvGXME", _ZN3JSC19HeapSnapshotBuilderC1ERNS_12HeapProfilerE) +STUB( + "NImKbNF2qsU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEmmEi) +STUB("NInMZRpAc3g", + _ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends11unsetoffsetEv) +STUB("NIpv7Nj-V64", _ZNK3sce2Np9CppWebApi7Matches2V113ChildActivity17availabilityIsSetEv) +STUB("NIq7Ht4pOnw", _ZN7WebCore17FrameLoaderClient26dispatchWillChangeDocumentERKN3WTF3URLES4_) +STUB("NIqVcyjgdjA", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE8copyFromERKS7_) +STUB( + "NJBiQPzPrIE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("NJHE0mnO0NA", sceAvControlGetPuStatus) +STUB("NJOqfXcR-gw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEcvbEv) +STUB("NJP+6AtDiU8", _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_8DocumentE) +STUB("NJPVh06vbSg", ucol_countAvailable_67) +STUB( + "NJQYeoX0Zsw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEE7add_refEv) +STUB("NJYAQeP3z7c", sceLncUtilSetControllerFocusPermission) +STUB("NJZ8oouT55s", unumsys_isAlgorithmic_59) +STUB("NJam1-F7lNY", sceAudioInGetHandleStatusInfo) +STUB("NJbSEeeYv9M", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V19JoinStateEEmmEi) +STUB( + "NJclZbZMRGA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEC2Ev) +STUB( + "NJfyDUcERYc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE3endEv) +STUB("NJgThNt+gmg", _ZN7WebCore9HTMLNames16aria_rowspanAttrE) +STUB("NJmb6+w9kpI", uscript_isCased_67) +STUB("NJpUvo+rezg", sceUserServiceSetParentalDvdRegion) +STUB("NJsu0fy42TY", _ZN7WebCore6Path2DnwEm) +STUB("NJt4CMd3J74", _ZN9Inspector24CanvasFrontendDispatchernwEm) +STUB("NJtKruu9qOs", + _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecx) +STUB( + "NJw4sqe8Ci0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE5beginEv) +STUB( + "NK+6hN++9rA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "NK0FXcY4JBA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEE11get_deleterEv) +STUB( + "NK6CqaGTEkQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEptEv) +STUB("NK7Rzqtr2rA", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119SubtaskAvailabilityEEppEi) +STUB("NK9LrYDJwsY", _ZN3sce7Toolkit2NP2V27Ranking10UsersRanksC2ERKS4_) +STUB( + "NKBniw+yZ0I", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB("NKCwS8+5Fx8", sceNpWebApi2SendMultipartRequest) +STUB("NKF4F8SQyx4", wait3) +STUB("NKIzURsgV7I", sceAgcGetGsOversubscription) +STUB("NKJMUghVqMk", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request7GetFeedC1Ev) +STUB("NKNYJptJYtY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEC1Ev) +STUB("NKOyGh1jHWE", mono_aot_Sce_Vsh_Gls_NativeCallunbox_trampoline_addresses) +STUB( + "NKP6ONc0Yds", + _ZN7WebCore24passesAccessControlCheckERKNS_16ResourceResponseENS_23StoredCredentialsPolicyERKNS_14SecurityOriginEPKNS_37CrossOriginAccessControlCheckDisablerE) +STUB("NKWWyWgw5Us", _ZN7WebCore21DiagnosticLoggingKeys27canceledLessThan2SecondsKeyEv) +STUB( + "NKZfEyP3wWE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEppEv) +STUB("NKbUhZWU1Fc", sceSystemServiceGetRecentLotusPushedButton) +STUB( + "NKbwQhAiAec", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE7reserveEi) +STUB("NKf0eZBkuXQ", utrans_transUChars_67) +STUB( + "NKf7DfLLoMs", + _ZN3sce2Np9CppWebApi12Leaderboards2V112EntryFactory6createEPNS1_6Common10LibContextERKmiiRK13SceNpOnlineIdiliPNS5_12IntrusivePtrINS3_5EntryEEE) +STUB("NKg-qME4uN0", _ZN7WebCore21BlobDataFileReference6createERKN3WTF6StringES4_) +STUB("NKjxHXOzeu8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEEixEm) +STUB( + "NKnNOT89Sy8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEEC1ERKSA_) +STUB("NKquI3oYzZk", _ZN3JSC18ErrorHandlingScopeC1ERNS_2VME) +STUB("NKrjlO4HBhg", FcPatternGetCharSet) +STUB( + "NL-s6Er+hFg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE7popBackEv) +STUB( + "NL1T3NfnYgM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEppEi) +STUB( + "NL52qhSDtC4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEmmEi) +STUB("NL6CCjSnAM4", _ZN7WebCore12PrintContextD1Ev) +STUB( + "NL72Tiq6XMg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("NL836gOLANs", fopen_s) +STUB( + "NL892otRu+4", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("NLA7bmDS1jc", FTA_Add_Module_smooth_lcd) +STUB("NLBSL1XaedQ", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE4sizeEv) +STUB("NLBl+ZxCYGU", _ZN3JSC19ArrayBufferContentsC1Ev) +STUB("NLFkRAoM9og", _ZNK3WTF6String6toUIntEPb) +STUB("NLHWcHpvMss", _ZNSt14numeric_limitsIeE6digitsE) +STUB("NLJ-Wr9aNww", _ZNK7WebCore11MediaPlayer8referrerEv) +STUB("NLKuHbD5Y-w", mono_aot_Sce_Vsh_Registrymethod_addresses) +STUB( + "NLO8s4jB0E4", + _ZN7WebCore27AuthenticationChallengeBaseC1ERKNS_15ProtectionSpaceERKNS_10CredentialEjRKNS_16ResourceResponseERKNS_13ResourceErrorE) +STUB( + "NLRDFm0y1xw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEEaSERSA_) +STUB("NLU07MHnIJU", + _ZN3sce2Np9CppWebApi13InGameCatalog2V521ContainerMediaFactory7destroyEPNS3_14ContainerMediaE) +STUB("NLVNKf-V5C4", izrule_getPreviousStart_67) +STUB("NLW0QcvJY-E", sceCesRefersUcsProfileIso8859_15) +STUB("NLZn1CjVwOc", mono_aot_Sce_Vsh_Sl2_Sl2Clientplt_end) +STUB("NLgKJv4-oTc", _ZN3sce7Toolkit2NP2V28Presence12Notification14PresenceUpdateD2Ev) +STUB("NLiNjTWiu60", mono_aot_Mono_Data_Sqliteunbox_trampolines) +STUB("NLlg0zchmas", mono_aot_Sce_Vsh_Np_ServiceCheckerplt_end) +STUB("NLq2b1jOaN0", sceKernelFutimes) +STUB("NLwJ3q+64bY", _ZSt7nothrow) +STUB( + "NLwPhYhfiro", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("NLwiYXdX5WU", FT_Get_CID_From_Glyph_Index) +STUB( + "NLzK2OkBWL4", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB( + "NM+MmoLr44E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEE3getEv) +STUB("NM2sfG425Ks", _ZN7WebCore15GraphicsContext10strokePathERKNS_4PathE) +STUB("NM3Xq8OE9nQ", _ZN3sce2Np9CppWebApi6Common6VectorIiEC2Ev) +STUB( + "NM3lPL0+Fdg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEEC2ERSA_) +STUB("NMD61i-MF2g", sceVencCoreUnmapTargetMemory) +STUB( + "NMDZGmjcDD4", + _ZN3sce2Np9CppWebApi14SessionManager2V125MatchmakingForReadFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_18MatchmakingForReadEEE) +STUB("NMGQ9M3+kXM", mono_aot_Sce_Vsh_DbRecoveryUtilityWrapperjit_code_end) +STUB("NMIpue9XcQk", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_6NpUserEE10deallocateEPS3_m) +STUB( + "NMJDwRjH-Ww", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEED1Ev) +STUB( + "NMJLPhqjUVc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEaSERKS9_) +STUB("NMLyLT3wXnI", _ZN3sce2Np9CppWebApi6Common8IteratorIfEmmEi) +STUB( + "NMMIJ31zSo8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEEaSERKSA_) +STUB("NMOVEHgUThY", WKPreferencesSetCSSAnimationTriggersEnabled) +STUB("NMQahLvHDPo", _ZN7WebCore15DatabaseTracker7originsEv) +STUB("NMTIQpo3uXs", _ZN9Inspector21DOMFrontendDispatcher21characterDataModifiedEiRKN3WTF6StringE) +STUB("NMTiOd+4pxo", ucal_setTimeZone_67) +STUB("NMURBPNOLS8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEED1Ev) +STUB("NMVul0SW15I", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE21intrusive_ptr_add_refEPS7_) +STUB("NMXJOYzVUWk", _ZNK7WebCore6Editor30fontAttributesAtSelectionStartEv) +STUB( + "NMecsQvQOns", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("NMiyX4Ssiwk", _ZN2sh11GetUniformsEPv) +STUB( + "NMjJxeEzXH0", + _ZN3sce2Np9CppWebApi7Matches2V121ResponseTeamStatistic8setStatsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_19AdditionalStatisticEEEEE) +STUB("NMo4nPfv1BY", rgctx_fetch_trampoline_mrgctx_108) +STUB( + "NMpX0NkbJqQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEEC1EPSA_PFvSC_EPNS2_10LibContextE) +STUB( + "NMtDf5GMwo0", + _ZNK7WebCore21ContentSecurityPolicy27allowChildContextFromSourceERKN3WTF3URLENS0_24RedirectResponseReceivedE) +STUB( + "NMtN3jrQM74", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("NMyIQ9WgWbU", scePthreadAttrGetschedpolicy) +STUB( + "NN+tmVklAX0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEEC2ERKSA_) +STUB("NN01qLRhiqU", rename) +STUB("NN6kXDW5Y5o", _ZN3JSC19ArrayBufferContentsC2EOS0_) +STUB( + "NN6u+QH9-pA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEE5resetEPS6_) +STUB("NN9JxDCjVZA", mono_aot_Sce_Vsh_LncUtilWrapperjit_code_start) +STUB( + "NNAjMH3G-u4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEC2Ev) +STUB("NNDEWeeM7yM", sceSdecCreateSw2) +STUB( + "NNEh8dBI0Wc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE5beginEv) +STUB("NNIZ-FMyz3M", sceAmprMeasureCommandSizeNop) +STUB( + "NNS0CE4ZeqA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEED2Ev) +STUB( + "NNS2NhnzCRs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEixEm) +STUB("NNVf18SlbT8", sceNpWebApi2PushEventCreatePushContext) +STUB( + "NNbViWnK7Ss", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser11unsetoffsetEv) +STUB("NNblpSGxrY8", sceUserServiceGetImePointerMode) +STUB("NNcJnwqxmjY", png_create_write_struct_2) +STUB("NNgiV4T+akU", sceHmdSetupDialogOpen) +STUB("NNjvrpPKrB8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEppEi) +STUB("NNpH54FkYk8", vzone_getOffset3_67) +STUB("NNtFaKJbPt0", _close) +STUB("NNtRrAFE6+U", _ZN7WebCore21JSCSSStyleDeclarationC2ERKS0_) +STUB( + "NO+TofS1w8k", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEeqERKS9_) +STUB("NO-Hz4JBKAM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEptEv) +STUB("NO1ls6lDS7U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEaSERKS7_) +STUB("NO1vEteQ8tQ", jinit_huff_decoder) +STUB( + "NO7MT-BTk4o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEE5resetEPS8_) +STUB("NO8LGTKyCTk", _ZN3JSC23AbstractSamplingCounter4dumpEv) +STUB( + "NO8cOlsQGH4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEEC2ERS8_) +STUB("NO9mhkI0uzY", _ZN7WebCore29PerspectiveTransformOperationD0Ev) +STUB( + "NOAI0W44R5Y", + _ZN7WebCore32ScrollingStateFrameScrollingNode33setScrollBehaviorForFixedElementsENS_30ScrollBehaviorForFixedElementsE) +STUB("NOAMxY2EGS0", scePlayGoDialogGetStatus) +STUB( + "NOHASaS8bcU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE3endEv) +STUB("NOIkOvm4mfI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed4FeedEE5resetEv) +STUB("NOL3hrPcMVU", _ZN2GK9PlayerPSN14testConnectionEv) +STUB( + "NOPWPlcquxo", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEEiRNS2_10LibContextEPT_m) +STUB( + "NOQkvXHlThE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEE5resetEPS6_) +STUB("NOY+FOyu7fs", Java_java_awt_GnmImage_nativeSetDirectColorModelPixels) +STUB( + "NOZmz+4Pi7k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEC1Ev) +STUB("NOaB7a1PZl8", _ZN6Dinkum7threads21thread_resource_errorD1Ev) +STUB("NObsUCdW7IE", _ZN9Inspector21InspectorRuntimeAgentdlEPv) +STUB( + "NOfBZRER1+I", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEC1EPS8_) +STUB( + "NOkd9rOy3UY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEmmEv) +STUB("NOmLjKNQLdQ", _ZN3sce2Np9CppWebApi14SessionManager2V16Friend12setAccountIdERKm) +STUB("NOqm61upXl4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEC1ERKS7_) +STUB("NOsUmPti3g4", RSA_generate_key_ex) +STUB("NOu9itnXeX8", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18GameCustomDataItemEED1Ev) +STUB("NOukH+xMwcs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEC1ERS7_) +STUB("NOxmVOgCkpg", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getMixerPanLR) +STUB("NP1fS5Qz4iI", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEEdeEv) +STUB( + "NP3iI35cyfo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "NP3rkzV86tc", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEEC2ERKSB_) +STUB("NP5gxDeYhIM", sceNetSyncWait) +STUB("NP9epR7FyMk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEE5resetEPS6_) +STUB( + "NPDV4JViIlo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEC2EPKS8_) +STUB( + "NPEDGH8cDos", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE5emptyEv) +STUB("NPIf8oAxOuM", WKPageSetAllowsRemoteInspection) +STUB("NPMt5bmtAuw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE3endEv) +STUB("NPQwYFqi0bs", sceHmdGetFieldOfView) +STUB("NPR0FXwWrD8", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEED2Ev) +STUB( + "NPR8h5mMc8A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEEC2Ev) +STUB("NPRRPNKDBN0", _sceUltSemaphoreOptParamInitialize) +STUB( + "NPRfjeLVxTE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE8capacityEv) +STUB("NPVjik59zT0", _ZN7WebCore9FrameView12isScrollableENS0_13ScrollabilityE) +STUB( + "NPYN89qO2Ks", + _ZN15AbstractStorage14YoutubeStorage7GetItemERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_4ItemEE) +STUB("NPZUCqnwWOc", rgctx_fetch_trampoline_rgctx_31) +STUB("NPa41C-81as", uregex_replaceAll_67) +STUB("NPbIhNzp7tY", _ZN7WebCore4IconD2Ev) +STUB("NPhw0UXaNrk", sceNpSignalingTerminate) +STUB("NPm90V3xkv4", _ZN4Manx6Screen6heightEv) +STUB("NPnv7qm0Bv8", sceAppInstUtilGetInstallProgress) +STUB( + "NPp-O2j8kDY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEEaSERKSA_) +STUB("NPr7arR8X0k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEED1Ev) +STUB("NPrfVdMDoWI", sceIduUtilGetSettingInt) +STUB( + "NPt9IXmxXfY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEixEm) +STUB( + "NPvuvE+miI4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEE3getEv) +STUB( + "NPz48iZPmLg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEC2Ev) +STUB("NPzB4u7iNOw", sqlite3_column_decltype) +STUB( + "NQ4SAyyv9yk", + _ZN9Inspector18InspectorHeapAgent29dispatchGarbageCollectedEventENS_8Protocol4Heap17GarbageCollection4TypeEN3WTF7SecondsES6_) +STUB("NQ5nJf7eKeE", sceFontGraphicsDrawRegionShape) +STUB("NQ81EZ7CL6w", _ZNKSt7codecvtIDic9_MbstatetE16do_always_noconvEv) +STUB("NQ8MHu1HB8E", _ZN12video_parser5vpcom6StringpLERKS1_) +STUB( + "NQB7JnLzVrY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("NQIw7tzo0Ow", sceNpTusDeleteMultiSlotVariableAAsync) +STUB("NQJ7AZW3ipk", sceNetCtlApCpStart) +STUB("NQVhUHqbPPY", il2cpp_register_log_callback) +STUB( + "NQW6QjEPUak", + _ZZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8_GetifldEPcRS3_S6_NSt5_IosbIiE9_FmtflagsERKSt6localeE4_Src) +STUB( + "NQWo-MPWqgg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEC2EPKS8_) +STUB("NQWr2E-ARbs", mono_aot_Sce_Vsh_Np_Pbtcjit_got) +STUB("NQY2wMTV0ms", sceLoginMgrServerUpdateUserIdRalatedToPadUniqueId) +STUB( + "NQaixWG898Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEC2EPS6_PNS2_10LibContextE) +STUB("NQao9f52Vtc", _ZThn24_N7WebCore19MediaResourceLoaderD0Ev) +STUB( + "NQbkoX+0UJc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEEC1ERKSA_) +STUB("NQcS-Y0DyQ4", _ZN3JSC4Heap20fullActivityCallbackEv) +STUB("NQgf+kO3ZRg", _ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEE7popBackEv) +STUB("NQr8Sq8G19U", s18) +STUB("NQsVwrhhf1Q", _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEED1Ev) +STUB("NQvgMXcGmjs", _ZNK7WebCore24CoordinatedGraphicsLayer2idEv) +STUB( + "NQyzOBm1apc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("NR1J0N7L2xY", sceRtcTickAddDays) +STUB("NR6txoDIsrg", _ZN3JSC18ErrorHandlingScopeD2Ev) +STUB("NRAwSG4sMSQ", sceBgftServiceDownloadRegisterTaskByStorage) +STUB("NRF4gBL1p9o", WKFormSubmissionListenerContinue) +STUB("NRFTfFBU180", udat_getCalendar_67) +STUB("NRH4YPmVa28", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEmmEv) +STUB( + "NRJf6iqrRTw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEC1Ev) +STUB("NRJt6i0oMUI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEED2Ev) +STUB("NRPEF7lw+Lk", _ZNK7WebCore17FrameLoaderClient25shouldLoadMediaElementURLERKN3WTF3URLE) +STUB("NRRDP1662D8", uregex_useAnchoringBounds_67) +STUB( + "NRUy9MCPBJI", + _ZN3WTF10ParkingLot21parkConditionallyImplEPKvRKNS_12ScopedLambdaIFbvEEERKNS3_IFvvEEERKNS_24TimeWithDynamicClockTypeE) +STUB( + "NRX8fDa7344", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB( + "NRZLFqOs-T4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEEC1ERSA_) +STUB("NRZcHxWQOsw", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V113SubtaskStatusEEC2Ev) +STUB("NRe2Dtymlmk", sceFiosCacheFlushSync) +STUB("NRo0UojZnJY", __start__Zpreinit_array) +STUB("NRoSvM1VPm8", SSL_getSessionCache) +STUB("NRtszc6OYPQ", _ZN7WebCore14PluginDocument12pluginWidgetEv) +STUB("NRwbrebG1RI", _ZN7WebCore29PerspectiveTransformOperation6createERKNS_6LengthE) +STUB( + "NRz2l9gx6WI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEmmEi) +STUB( + "NS+E13bVVBY", + _ZN3sce7Toolkit2NP8Sessions9Interface4joinEPKNS1_20JoinNpSessionRequestEPNS1_9Utilities6FutureINS1_20NpSessionInformationEEEb) +STUB("NS-XWAN9uoc", sceLncUtilForceKillLocalProcess) +STUB("NS1sEhoj-B0", sceNpManagerIntGetParentalControlInfo) +STUB("NS2+OsvRn6c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V124RequestCooperativeResultEEC2EPS6_) +STUB("NS6vfc8F5qM", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetBoolean2Ev) +STUB( + "NS8-ZugESfE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB("NSAdITijwd0", _ZN3sce2np10JsonString3SetEPKc) +STUB("NSH-C-OmoNI", sceGameUpdateTerminate) +STUB("NSHP+uUvvgQ", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEEmmEv) +STUB("NSJH9sxtgw4", mono_aot_Sce_Vsh_ProfileCachejit_got) +STUB("NSQ+9ZQvOZI", + _ZN3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform12setSessionIdEPKc) +STUB("NSSIE2FuBsA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEC1ERKS7_) +STUB("NSZr1FsBLzY", __tsan_atomic16_fetch_sub) +STUB("NSchQpAzJH8", _ZN3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer14unsetAccountIdEv) +STUB( + "NSgnzcPIWYY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEEC1ERSA_) +STUB( + "NSgp-JOgQFI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEED1Ev) +STUB( + "NSm+tycdbA4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEmmEv) +STUB("NSr2oCOPb9c", _ZN9Inspector15RemoteInspector12startEnabledE) +STUB( + "NSvsKSChyfk", + _ZN3sce2Np9CppWebApi14SessionManager2V131ResponsePlayerSessionInvitationC2EPNS1_6Common10LibContextE) +STUB("NSw6bEcrtWo", sceKernelGetPagingStatsOfAllObjects) +STUB("NSyZkX1jPUw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEEC1ERS9_) +STUB("NT7QROKXFRY", _ZN7WebCore5Range11setEndAfterERNS_4NodeE) +STUB( + "NT8rjQc1zyI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEC2Ev) +STUB( + "NT949SpZaFg", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEEiRNS2_10LibContextEPT_m) +STUB("NTBsVHURcR4", _ZN3sce2Np9CppWebApi14SessionManager2V16Friend19unsetPlayerSessionsEv) +STUB( + "NTELx+nQzhw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEEdeEv) +STUB("NTIbBpSH9ik", sceHmdReprojectionAddDisplayBuffer) +STUB( + "NTJ9fNerZSQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("NTK-RerXvZ4", WKWebsitePoliciesGetPopUpPolicy) +STUB( + "NTKHHUT8bT4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE8copyFromERKS9_) +STUB("NTLwhm+Wfk8", WKGeolocationManagerProviderDidFailToDeterminePositionWithErrorMessage) +STUB("NTNdYQluihk", __sys_resume_internal_hdd) +STUB( + "NTP1ywSOtmM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEC2EPKS8_) +STUB("NTPZ5GZIA6U", _ZN3sce2np3ipc17ServiceIpmiClient7ConnectEPKvm) +STUB("NTPazlahrDs", sceCesRefersUcsProfileCp852) +STUB("NTUHXImziBk", _ZN3JSC16slowValidateCellEPNS_14JSGlobalObjectE) +STUB("NTV7JIcSG3s", _ZN7WebCore17JSDOMRectReadOnly14finishCreationERN3JSC2VME) +STUB("NTVC2fTE9Fc", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead21unsetCreatedTimestampEv) +STUB("NTVcGeQgj3g", _ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEE5eraseENS2_8IteratorIS4_EERS7_) +STUB("NTXEVsMy-bk", _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15Error10setMessageEPKc) +STUB("NTXrRhO8eHY", Java_com_sony_gemstack_org_dvb_application_AppProxyImpl_n_1stop) +STUB( + "NTY7MAqUV0k", + _ZN7WebCore17PageConsoleClient10screenshotEPN3JSC14JSGlobalObjectEON3WTF3RefIN9Inspector15ScriptArgumentsENS4_13DumbPtrTraitsIS7_EEEE) +STUB("NTZQvLHaS48", + _ZN8meta_gen11MsvPromoter17prepareUpdateModeEP22MsvPromoteInnerContextP19MsvStorageInterfacem) +STUB( + "NTcOTrw3OhU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEC2EPS8_) +STUB( + "NTd-bNSZ-WY", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB( + "NTd9jbKsKWQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEdeEv) +STUB("NTgfThqgbak", uset_addAllCodePoints_67) +STUB( + "NTjzmQQSCiU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEeqERKS9_) +STUB("NTk6ybedvh8", debug_init) +STUB( + "NTkKbgGqvEw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEE11release_refEv) +STUB("NTkdvODRVXA", kmq_unlink) +STUB("NTlX451IQBY", _ZN3JSC18GCActivityCallback11willCollectEv) +STUB( + "NTnZ6dEQ-xo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEmmEi) +STUB("NTttBlD2Xbk", sceShellCoreUtilGetCrashReportResult) +STUB( + "NTuEbbLnmjw", + _ZN7WebCore11DisplayList23FillRectWithRoundedHoleC1ERKNS_9FloatRectERKNS_16FloatRoundedRectERKNS_5ColorE) +STUB("NTxYYqJAu5M", pR8) +STUB("NU+vqk55Ts4", monoeg_g_list_remove) +STUB("NU-T4QowTNA", _ZSt18_Xinvalid_argumentPKc) +STUB("NU1VKlqKDrA", _ZN3sce3Xml13AttributeListC1ERKS1_) +STUB("NU3ckGHMFXo", sceNpCommerceDialogClose) +STUB( + "NU3hnL+BDoQ", + _ZN7WebCore22EmptyFrameLoaderClient20setMainDocumentErrorEPNS_14DocumentLoaderERKNS_13ResourceErrorE) +STUB( + "NU9kWmDTZvw", + _ZN3sce2Np9CppWebApi14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBody13setSpectatorsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_29RequestPlayerSessionSpectatorEEEEE) +STUB("NUGUbb-AhYQ", _ZNK3sce2Np9CppWebApi14SessionManager2V111GameSession6toJsonERNS_4Json5ValueEb) +STUB( + "NUKnIPTIUWs", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemProperties10initializeEPNS1_6Common10LibContextEPKcSA_NS6_12IntrusivePtrINS3_53PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEE) +STUB( + "NUNKijqVBLw", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ErrorResponseFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_5ErrorEEEPNS8_INS3_13ErrorResponseEEE) +STUB("NUNZTPajen8", ulocimp_toLanguageTag) +STUB("NUPyuyGnfpg", + _ZN7WebCore22EmptyFrameLoaderClient23cannotShowMIMETypeErrorERKNS_16ResourceResponseE) +STUB("NURZg4GSybE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEC2ERKS7_) +STUB("NUS5Kg6a7Ak", _ZN3sce7Toolkit2NP2V24Core8ResponseINS3_5EmptyEE19setCustomReturnCodeEi) +STUB( + "NUU662ZeQu4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEC2Ev) +STUB("NUWqWguYcNQ", sceAudioInSetPortStatuses) +STUB("NUaLW57Xu7U", _ZN7WebCore12BlobDataItem11toEndOfFileE) +STUB("NUbq2aNGojo", curl_easy_init) +STUB( + "NUceqD7bn+U", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE11getResponseERS8_) +STUB("NUeBrN7hzf0", sceImeDialogInit) +STUB("NUkBGOZARi4", sceFiosTimeGetCurrent) +STUB("NUmwOMyRjl8", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_19ProductInfoDetailedEE10deallocateEPS3_m) +STUB("NUqTqq4FiBU", ucnv_cbToUWriteUChars_67) +STUB("NUqcZ7pzVuI", SSL_peek) +STUB("NUqwHobH5SY", _ZN7WebCore20TransformationMatrix7scale3dEddd) +STUB("NUrm6cC5TlU", WKPluginSiteDataManagerClearAllSiteData) +STUB("NUvrURzyxJE", _Ux86_64_strerror) +STUB( + "NUxnriYUuio", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUseraSERS5_) +STUB("NV-j5hMNhWA", mono_aot_System_Xmlunbox_trampoline_addresses) +STUB("NV1hReHpVgo", _ZN9Inspector28InspectorScriptProfilerAgentnwEmPv) +STUB( + "NV9bWnoea7A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEEaSERSB_) +STUB("NVCBWomXpcw", _ZTIPKDh) +STUB( + "NVCTjIsKKcs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE5clearEv) +STUB( + "NVCwHEK3LPQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "NVCzm04+M2Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEEaSERKS9_) +STUB("NVDXiUesSbA", sceAjmBatchCancel) +STUB( + "NVEslIaQEm0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEC2Ev) +STUB("NVITuK83Z7o", sceCameraSetProcessFocusByHandle) +STUB( + "NVOc2p2H2Lc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEE3getEv) +STUB( + "NVSjdgSVRwk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEmmEi) +STUB( + "NVUDGkZarEM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEEdeEv) +STUB( + "NVYOh4DGveo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEixEm) +STUB( + "NVYkAS3xcZI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEptEv) +STUB("NVadfnzQhHQ", exp) +STUB( + "NVbQxLyF5Tg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE5clearEv) +STUB( + "NViIl5EM44E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEmmEi) +STUB("NVjEy07nN2o", WKBundlePageIsSuspended) +STUB("NVkKQ0n1t8U", _ZN9Inspector24CanvasFrontendDispatcherdaEPv) +STUB("NVkvr2YnP8A", uprv_isNaN_67) +STUB("NVosi5pjeYc", _ZNK7WebCore17JSHTMLLinkElement7wrappedEv) +STUB( + "NVp775nrB1o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEC2Ev) +STUB( + "NVrBoFud5BM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEC2EPS8_) +STUB("NVsPBrf4TV8", _ZN7WebCore29DeprecatedCSSOMPrimitiveValue14setStringValueEtRKN3WTF6StringE) +STUB("NVuvsPgTXto", FT_Get_PFR_Advance) +STUB( + "NW+7OzWrPX0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEneERKS9_) +STUB("NW+Hxkmylr4", scePerfPmcUmcSetCounter) +STUB("NW4U-4dzVIU", _ZN9Inspector21InjectedScriptManager22discardInjectedScriptsEv) +STUB("NW9BSFshygk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEED1Ev) +STUB("NWAFbl1tF0E", sceIduUtilInitialize) +STUB("NWB-BVBCHxk", _ZN15AbstractStorage11LocalFolder13writeExternalESt10shared_ptrINS_7ContentEE) +STUB( + "NWCf+u4ODxo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("NWCnYpBxYZw", sceVisionManagerApplyCalibrateHmdResult) +STUB( + "NWCvsASpC-A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE5clearEv) +STUB("NWIItqDdYTQ", _ZN3WTF20ConcurrentPtrHashSetD1Ev) +STUB("NWNqC6fUl9w", mono_trace_set_printerr_handler) +STUB( + "NWSZgHNylpw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEE7add_refEv) +STUB( + "NWWPFOWyK3E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEptEv) +STUB("NWYSfFwdCvI", WKContextTerminateServiceWorkerProcess) +STUB("NWZbcznrH4E", + _ZN9Inspector24TargetFrontendDispatcher26didCommitProvisionalTargetERKN3WTF6StringES4_) +STUB( + "NWbKvC-fDDw", + _ZN7WebCore26MessagePortChannelRegistry22takeAllMessagesForPortERKNS_21MessagePortIdentifierEON3WTF8FunctionIFvONS4_6VectorINS_23MessageWithMessagePortsELm0ENS4_15CrashOnOverflowELm16EEEONS5_IFvvEEEEEE) +STUB("NWdose11w3Y", _atan2f_f4) +STUB( + "NWgPn+Svnz4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEEC1Ev) +STUB("NWgz65NNNyo", _ZN3sce7Toolkit2NP2V27Session12Notification18InvitationReceivedC1Ev) +STUB("NWjpX2ZPOd4", _ZN7WebCore9HTMLNames16scrollamountAttrE) +STUB("NWkQuTKN66I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEC2ERKS7_) +STUB("NWmeobdEfhE", __sanitizer_unaligned_load64) +STUB( + "NWrJaFWaGAQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("NWtTN10cJzE", sceLibcHeapGetTraceInfo) +STUB("NWtf77WCXJs", sceNpLookupNetSetTimeout) +STUB("NWwYyioNHuY", utext_next32) +STUB("NX97Y+Gvytw", ucnv_setFallback_67) +STUB("NXA-ZwQ-C-8", + _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi21ParameterToLeaveMatch13isInitializedEv) +STUB("NXKFbxr0xFI", WKContextConfigurationSetProcessSwapsOnWindowOpenWithOpener) +STUB("NXKsxT-x76M", _ZTSSt12codecvt_base) +STUB( + "NXM6+WxYzpk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEEcvbEv) +STUB( + "NXNkCLc8LRE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEplEm) +STUB("NXRdaSk0GlI", sceCesRefersUcsProfileCp1258) +STUB("NXTsS4UWBbY", _ZN3WTF11Persistence7Encoder6encodeEb) +STUB( + "NXV0Xm4qQEs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEC2EPS6_PNS2_10LibContextE) +STUB("NXb7JT5Tswk", _ZThn8_N6WebKit17ChildProcessProxyD1Ev) +STUB( + "NXeaI-+8AdA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBodyC1EPNS1_6Common10LibContextE) +STUB( + "NXfzwIcsXiM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEED1Ev) +STUB( + "NXjLqAWR--M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEEcvbEv) +STUB("NXjNMHQVizI", + _ZN9Inspector22InspectorDebuggerAgent8didPauseERN3JSC9ExecStateENS1_7JSValueES4_) +STUB( + "NXpZL0G4Spw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "NXx1FRANL8g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEmmEv) +STUB( + "NY0+wFYh3DI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEaSERKS9_) +STUB("NY34yXxoq7Q", _ZN7WebCore7Element11offsetWidthEv) +STUB("NY4+MTKUyuM", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetAccountId2OnlineIdC1ERS5_) +STUB( + "NYCx2TU-+jM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("NYD1q3qp-FM", _ZNK7WebCore11CSSPageRule12selectorTextEv) +STUB( + "NYDfPNMMCXw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEEptEv) +STUB("NYDsL9a0oEo", sceImeDicAddWord) +STUB( + "NYIdgQKy4fs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEED1Ev) +STUB("NYKHwjOfDj0", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEEppEi) +STUB( + "NYLgoVEDD2c", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEplEm) +STUB("NYNF8PwYuFI", _ZN3sce7Toolkit2NP2V210Tournament18OneVsOneTournamentC2ERKS4_) +STUB( + "NYOTZcvFdm8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE21intrusive_ptr_add_refEPS9_) +STUB("NYPjEbI1GIs", _ZN7WebCore9HTMLNames6imgTagE) +STUB("NYQSe+APp8U", png_set_tRNS_to_alpha) +STUB("NYS8X+sCnNI", delegate_virtual_invoke_imt_15) +STUB( + "NYXe+lldfh0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEED2Ev) +STUB( + "NYZmaDNh0jM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE5beginEv) +STUB( + "NYdAHLx0fgQ", + _ZN3sce2Np9CppWebApi7Matches2V113ErrorResponse8setErrorERKNS1_6Common12IntrusivePtrINS3_5ErrorEEE) +STUB( + "NYfV6QOpq94", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEE7add_refEv) +STUB("NYl0kNUtBJM", _ZN3sce7Toolkit2NP2V23TUS7Request12SetVariablesD2Ev) +STUB("NYsqV11YzEU", _ZN3sce7Toolkit2NP2V212EventsClient7Request9GetEventsC2Ev) +STUB("NYvWcpuMIv4", mono_aot_Sce_PlayStation_Imejit_code_start) +STUB( + "NYxVaKL2QpM", + _ZN7WebCore21SerializedScriptValueC1EON3WTF6VectorIhLm0ENS1_15CrashOnOverflowELm16EEESt10unique_ptrINS2_IN3JSC19ArrayBufferContentsELm0ES3_Lm16EEESt14default_deleteIS9_EE) +STUB( + "NZ-hqw09Xlg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE5beginEv) +STUB( + "NZ2HFbENJYM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEneERKS9_) +STUB("NZ3i39W4liI", _ZN7WebCore8SVGNames10radiusAttrE) +STUB( + "NZ6G0HKT-ac", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEEptEv) +STUB("NZMWDTSdPXM", _ZNK3sce3Xml3Dom8Document13getAttributesENS1_6NodeIdEPNS1_8NodeListE) +STUB("NZMf2UdVa-8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEC1ERKS7_) +STUB("NZNXLU+1aKY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V117InvitableUserTypeEEppEi) +STUB("NZRIo84yhgY", _ZN3WTF6Thread12getRegistersERNS_17PlatformRegistersE) +STUB( + "NZUDpJ3BReg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE5beginEv) +STUB("NZUMI66mbqg", delegate_virtual_invoke_29_p) +STUB( + "NZW5PD2-YQg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEE7add_refEv) +STUB("NZWLG-imDlU", sceShellCoreUtilGetHidConfigName) +STUB("NZemRl2yal4", _ZN7WebCore13AXObjectCache11getOrCreateEPNS_4NodeE) +STUB( + "NZf1cTzVJc0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEEC2ERSA_) +STUB( + "NZiGys4j+Ew", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE8copyFromERKS9_) +STUB("NZjxIjwuSuQ", _ZNK7WebCore6Chrome4showEv) +STUB( + "NZoIm1F6Hc8", + _ZN7WebCore12EventHandler47handleKeyboardSelectionMovementForAccessibilityERNS_13KeyboardEventE) +STUB("NZpuVlNXIdI", if_nametoindex) +STUB("NZqOchN6k78", mono_method_header_get_num_clauses) +STUB("NZu1Z2k14DM", sceAudioOut2LoContextSetAttributes) +STUB( + "NZwKANBDA1k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEEC2ERSA_) +STUB("NZzGCld59m4", mono_aot_System_Runtime_Extensionsunbox_trampoline_addresses) +STUB("Na+M1AcLjdw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEC1ERS7_) +STUB( + "Na-3osFAmR8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEE5resetEPS9_) +STUB("Na-iJFh1gZg", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V114ResultsVersionEEC1EPS6_) +STUB("Na07CVDc030", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V115FrequentlyMutedD1Ev) +STUB("Na1pumbat0U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEE5resetEPS6_) +STUB("Na3nVLeG-cU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEE7get_refEv) +STUB("Na9vQQ1mXXs", JVM_GetDeclaringClass) +STUB( + "NaCmgKItIgo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEED1Ev) +STUB( + "NaEifNruVcg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEppEv) +STUB("NaGc6KEsNxs", + _ZN7WebCore22throwArgumentTypeErrorERN3JSC14JSGlobalObjectERNS0_10ThrowScopeEjPKcS6_S6_S6_) +STUB( + "NaO0844ZpQE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEmmEv) +STUB( + "NaQ-e2QEBRs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("NaXbHLVlAsk", rgctx_fetch_trampoline_mrgctx_84) +STUB("NaYyo8flntU", + _ZN7WebCore20SVGPathStringBuilder6lineToERKNS_10FloatPointENS_18PathCoordinateModeE) +STUB("NaZ0m-8DO-w", _ZN3sce7Toolkit2NP2V212ActivityFeed7StoryIdC1Ev) +STUB( + "NaZRMdDqatk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE8copyFromERKS9_) +STUB("Naac4Bjq3es", _ZN7WebCore11MathMLNames11voffsetAttrE) +STUB("Nab6bIqxc84", _ZN7WebCore15FocusController9setActiveEb) +STUB( + "NabDZBC8mVc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE3endEv) +STUB( + "NalWW2AA3+o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEED1Ev) +STUB("Naoh3hA7F7g", _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequestD1Ev) +STUB( + "Navooa1v5WI", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V124BandwidthUpstreamMetrics20getStandardDeviationEv) +STUB("NawEAOCyvU0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEEppEi) +STUB("NawdcanSzD8", _ZN3JSC14JSGlobalObject4initERNS_2VME) +STUB( + "NayBflVMuEc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "NayPeKgfeXM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeaders21intrusive_ptr_add_refEPS5_) +STUB( + "Nb2cTa5osEc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE21intrusive_ptr_add_refEPS9_) +STUB("Nb51AlC1Bk8", _ZN7WebCore9HTMLNames13itemscopeAttrE) +STUB("Nb54SFRp7Mw", _ZN3sce3pss5orbis5video14VideoPlayerVcs21VideoCoreSetLoopRangeEmm) +STUB("NbA1zSCZ6dw", JVM_GetStackAccessControlContext) +STUB("NbAIGJRR+9c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEE7add_refEv) +STUB( + "NbHdHSXwuR0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE10setContextEPNS2_10LibContextE) +STUB("NbJPSHOrNEA", _ZNK7WebCore16HTMLVideoElement10videoWidthEv) +STUB("NbMwXYcno7g", WKPageIsPinnedToRightSide) +STUB( + "NbOC0kNuJj4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEC1EPS6_PNS2_10LibContextE) +STUB( + "NbYyhAPhggs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEppEi) +STUB("NbafDOCadvM", scePerfTraceAmmEnable) +STUB("Nbc5iV32hr0", _ZN3sce2Np9CppWebApi6Common6VectorIlE5eraseENS2_13ConstIteratorIlEERS6_) +STUB( + "NbdAYfd1QTY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEC2EPS6_PNS2_10LibContextE) +STUB( + "NbgCL3B0kBw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEppEv) +STUB("Nbn8bzYVDuk", sceBgftServiceIntDownloadDebugDeleteBgftEnvFile) +STUB("NbtiS8+eMPo", _ZN3JSC7Symbols31putByIdDirectPrivatePrivateNameE) +STUB("NbvQTSHt540", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_28ActivityFeedSharedVideoStoryEEC2Ev) +STUB("NbxTfUKO184", sceHmdInternalSetIpdSettingEnableForSystemService) +STUB("Nc+fKRms9mY", utf8_nextCharSafeBody_67) +STUB( + "Nc-qAd4IyJQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEE5resetEPS9_) +STUB( + "Nc2VuqhVpXM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEEaSERSA_) +STUB("Nc4OHQvmIOM", _ZNK7WebCore20ResourceResponseBase6sourceEv) +STUB("Nc9lnu9tvfM", __asan_exp_load1) +STUB("NcAWoTAS4VY", _ZN3sce2Np9CppWebApi6Common13ConstIteratorImEC1EPm) +STUB("NcCsEd0v9bM", _ZN9Inspector26TimelineFrontendDispatchernaEmPv) +STUB( + "NcDhXVM8JI0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEC2Ev) +STUB( + "NcDm4TqmKuk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE4sizeEv) +STUB("NcKEZTQFsM4", _ZN3JSC15JSArrowFunction6s_infoE) +STUB("NcVtS5qj+Ns", _ZN3WTF31sixCharacterHashStringToIntegerEPKc) +STUB( + "NcWFbW3oAYk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEED1Ev) +STUB("NcXzutaTRe8", + _ZN9Inspector21InjectedScriptManager20createInjectedScriptERKN3WTF6StringEPN3JSC9ExecStateEi) +STUB( + "NcYTk2TjbqI", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi42ParameterToPutGameSessionsSearchAttributes12getsessionIdEv) +STUB("NcZqFTG-RBs", __fixunssfsi) +STUB("NcaU9NEf4hc", ucnvsel_open_67) +STUB("NcaWUxfMNIQ", sceKernelMapNamedDirectMemory) +STUB("Ncel8t2Rrpc", _ZNK3sce4Json5Value8toStringERNS0_6StringE) +STUB( + "NckGnACZspM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEixEm) +STUB("Ncmk3NGNd5w", _ZN3NTF21ResourceRequestLogger9AdminPageD0Ev) +STUB( + "NcnC7S6s1F4", + _ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors27getValidationConstraintInfoEv) +STUB("NcnbHs2i-6U", + _ZN7WebCore24CoordinatedGraphicsLayer39tiledBackingStoreHasPendingTileCreationEv) +STUB( + "NcsV4oBwn4c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("NcuyC-lqbs4", _ZNK9Inspector15RemoteInspector6Client14browserVersionEv) +STUB("Ncv7ElzJi3A", _ZN3sce3pss4core9resources15ResourceManagerC1EPK11_MonoStringb) +STUB( + "Ncz63Ja6EEU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEC2ERKS7_) +STUB("Nd-Z62NLB0E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEEcvbEv) +STUB("Nd-u09VFSCA", sigdelset) +STUB( + "Nd20IMKj2WE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEE5resetEPS9_) +STUB("Nd2Y2X6oR18", _WCostate) +STUB("Nd91WaWmG2w", sceNetResolverStartNtoa) +STUB( + "NdAMsBExv48", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "NdBqXtlmBY4", + _ZN7WebCore16ScriptController46executeUserAgentScriptInWorldIgnoringExceptionERNS_15DOMWrapperWorldERKN3WTF6StringEb) +STUB("NdGinrpcn5M", EVP_MD_CTX_destroy) +STUB( + "NdIyo16cHz4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEED1Ev) +STUB("NdKzlFl6lqs", _ZL34_sceLibcDeleteArrayWithSizeNothrowPvmRKSt9nothrow_t) +STUB("NdLMXCijWLs", _ZN12video_parser13cVideoPathMgvC2EPKc) +STUB("NdPPsuDC5ko", _ZN7WebCore11JSImageData9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("NdQZBWXlDKA", _ZN3sce7Toolkit2NP2V210Tournament12GenericEvent5resetEv) +STUB("NdSsA-n06g8", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEED2Ev) +STUB( + "NdTMO0v3JZY", + _ZN3sce7Toolkit2NP2V211UserProfile27getVerifiedAccountsForTitleERKNS3_7Request27GetVerifiedAccountsForTitleEPNS2_4Core8ResponseINS3_10NpProfilesEEE) +STUB("NdU-LyVKPZ4", _ZN7WebCore14StyleSheetList4itemEj) +STUB("NdWzfgKOb6k", _ZN12video_parser17cTsFFLHndlManager10initializeEv) +STUB( + "Ndce1d7+nl8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE21intrusive_ptr_add_refEPS7_) +STUB("Ndd5CAeDd4g", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEED1Ev) +STUB( + "NddPYa3v1P8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEC1EPS8_) +STUB("NddXgDF0hiQ", __tsan_atomic64_fetch_sub) +STUB("NdeDffcZ-30", _ZN10__cxxabiv129__pointer_to_member_type_infoD0Ev) +STUB( + "NdeXCLko2vU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "Ndiu+0av9SY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEE5resetEPS9_) +STUB("NdjHlwRuV08", il2cpp_gc_collect_a_little) +STUB( + "NdnI3VGyrdw", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC2ERKSA_) +STUB("NdsHawcRBNk", _ZNK3sce2Np9CppWebApi7Matches2V117ResponseMatchTeam13teamNameIsSetEv) +STUB("NdvAi34vV3g", freopen_s) +STUB("Ndvm8s28Gyc", cairo_fill) +STUB("NdwTujp8suw", _ZNK3sce2Np9CppWebApi6Common6VectorIfE8capacityEv) +STUB( + "NdweAY0f+E4", + _ZN3sce2Np9CppWebApi14SessionManager2V143UsersPlayerSessionsInvitationForReadFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_36UsersPlayerSessionsInvitationForReadEEE) +STUB( + "NdxBdJKKr-Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEE7add_refEv) +STUB( + "NdxgUhxWDhI", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersC1Ev) +STUB("Ndzcn-GaWbA", _ZNK3sce2Np9CppWebApi7Matches2V113ChildActivity11statusIsSetEv) +STUB("Ne1RmMt+qcY", _ZN7WebCore9HTMLNames17oncontextmenuAttrE) +STUB( + "Ne2N+4xal9I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("Ne3dsbalqmU", ucnv_resetFromUnicode_67) +STUB("Ne4O3r4CdjI", arch_test) +STUB("Ne6w9SgJp1A", mono_guid_to_string) +STUB("Ne8m91Q1Hts", _ZN7WebCore4Page25notifyToInjectUserScriptsEv) +STUB("NeBDtHVZg2Q", fuse_session_process) +STUB("NeBjCy2urKA", _ZN7WebCore12JSTimeRanges14finishCreationERN3JSC2VME) +STUB( + "NeDmLkJd-6g", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE4sizeEv) +STUB( + "NeFAPuc2Yrk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("NeFcuoEHnUo", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4RoomEED1Ev) +STUB("NeMAgSIPdzI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEC1Ev) +STUB( + "NeR-Lma9T3o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEED1Ev) +STUB("NeWnBQdUy2M", _ZN12video_parser13cVideoMetaVWG13getChapterNumERjPj) +STUB("NeYe5cZQXg8", _ZN3WTF11OSAllocator6commitEPvmbb) +STUB("NeZN3QWAx58", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging24GameDataMessageThumbnailEED1Ev) +STUB( + "NeZyJUz5fsk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEED2Ev) +STUB( + "NeeQtw8+OnU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEaSERS7_) +STUB("NegL0oldf78", _ZN7WebCore3URL24removeFragmentIdentifierEv) +STUB( + "Nehpdp3vT2Q", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging24GameDataMessageThumbnailEE19setCustomReturnCodeEi) +STUB("NeiFvKblpZM", _ZNSt13basic_filebufIwSt11char_traitsIwEE9pbackfailEi) +STUB("Nel-GFCUxPo", il2cpp_set_config_dir) +STUB("NemJZHYD8XU", mono_aot_Sce_Vsh_UserServiceWrapperjit_code_end) +STUB("NeopmYshD0U", _ZN3sce2np9WorkQueue7DestroyEv) +STUB("Neqr3RjImvE", sceDevUsbTermHost) +STUB("NesIgTmfF0Q", bsearch) +STUB("NetEd5QBLRw", _ZN3WTF22FastBitVectorWordOwner10resizeSlowEm) +STUB("NewD1IkVMeU", _sceLibcMspaceUnlock) +STUB("NeyR34Tm1Uk", ulist_resetList) +STUB("Nf-3KbWOjq8", mono_aot_Sce_Vsh_ShareGuideSceneunbox_trampoline_addresses) +STUB( + "Nf-OGV9Nx6I", + _ZN7WebCore14FrameSelection15revealSelectionENS_19SelectionRevealModeERKNS_15ScrollAlignmentENS_18RevealExtentOptionE) +STUB( + "Nf1GV4BEsgc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEmmEv) +STUB( + "Nf28AE79SCQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser28hasxPsnAcceptPlatformNamePs5Ev) +STUB( + "Nf3pbNXblvc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("Nf5A2l7psQU", Java_java_net_PlainSocketImpl_socketSetOption) +STUB( + "Nf9YCoNx08I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEED2Ev) +STUB("NfBil2N34BE", _ZN7WebCore9HTMLNames15onmousemoveAttrE) +STUB( + "NfCYt8JeNDw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEE21intrusive_ptr_add_refEPS7_) +STUB( + "NfCumQGInZo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEC2EPNS2_10LibContextE) +STUB("NfGO57hqUEw", ubrk_open) +STUB("NfHcA2Xq-E8", _ZN11GvMp4Parser6Common11Utf8ToUtf16ERKSsPSbIwSt11char_traitsIwESaIwEEi) +STUB("NfPblxnb4rw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEED2Ev) +STUB("NfQzhqChQqM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEC1ERKS7_) +STUB("NfSMc-E4OA0", WKImageGetSize) +STUB("NfSNgSBygmI", + _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse20getMatchEndTimestampEv) +STUB( + "NfUt4Qi5i84", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEEC2ERSA_) +STUB("NfVkg4yXRyA", __ubsan_handle_type_mismatch_v1_abort) +STUB("NfZz19Zp+Xc", sceCtrlpPlayStart) +STUB("Nfev+xcWn9M", WKPreferencesSetPageCacheEnabled) +STUB( + "NfhVP6--vro", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB("NfhXX6LFmj8", _ZN3sce2np13RingBufMemory4dtorEv) +STUB( + "NfiXzLQlx7g", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_13WhoLikedStoryENS1_15AppSTLAllocatorIS5_EEEED1Ev) +STUB("NfpZWHee0EA", sceUserServiceGetNotificationSettings_3) +STUB( + "NftlGiMvrgE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("NftpnkfNHrU", uspoof_check2UnicodeString_67) +STUB("NfvOrNzy6sk", sceGnmInsertDingDongMarker) +STUB("Ng44JwRk03M", _ZN3sce2np10JsonNumber3SetEm) +STUB( + "Ng4qbgaZ+uY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("NgCYLj0lVYw", _ZN3WTF5sleepERKNS_24TimeWithDynamicClockTypeE) +STUB("NgRc1ZDtwUQ", _ZN7WebCore21BlobDataFileReferenceC2ERKN3WTF6StringE) +STUB( + "NgS7jQbnF2A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEC1EPNS2_10LibContextE) +STUB("NgTYaNYsSsk", _ZN9Inspector25NetworkFrontendDispatcher15webSocketClosedERKN3WTF6StringEd) +STUB("NgXAYab6u-Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEC1ERS7_) +STUB( + "NgXPyiUwwws", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEC1EPKS8_) +STUB("NgbGlUcx6ug", sceDataTransferTargetRequestPrepareTransferProgress) +STUB("Ngehyt8t0PI", _ZN3sce7Toolkit2NP2V212NetworkUtils13NetStateBasicC1Ev) +STUB("Ngfl7wTF7M0", _ZN15AbstractStorage7ServiceD2Ev) +STUB( + "NghKsVhFqJw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEixEm) +STUB("NghWEUXp1qM", sceAgcDriverGetResourceBaseAddressAndSizeInBytes) +STUB("Nglhvmk-fvk", + _ZNK3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBody14getRulesetNameEv) +STUB("NgmVnrLUHaI", monoeg_g_clear_error) +STUB( + "Ngp0XMpWkmA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("NgxfVG1k2Vg", _ZNK3JSC9JSPromise9isHandledERNS_2VME) +STUB( + "Nh4K5K448Q4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEEC1Ev) +STUB("Nh4PUcHge7E", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia10BroadcastsEE3setEv) +STUB( + "Nh4jAnG6-UI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEEptEv) +STUB("Nh7Selwn6nk", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku10unsetLabelEv) +STUB( + "Nh7hHt1OEzU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEEcvbEv) +STUB("Nh8pdKLdMJY", sceBdSchedConfigure) +STUB("Nh9Q94rfbaI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEE11get_deleterEv) +STUB( + "NhDcICYJo24", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorI16SceNpTusVariableNS1_15AppSTLAllocatorIS5_EEEED1Ev) +STUB("NhFkj3B10qM", sceVideoArbitrationAcceptEvent) +STUB("NhL5qID2iho", sceKernelAddCpumodeEvent) +STUB( + "NhMBtG1EGsk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB( + "NhMPUOWSyXA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "NhN6gF6HAWc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE5emptyEv) +STUB("NhNE1t4tsVU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12RoomPingTimeEED2Ev) +STUB("NhPkY3V8E+8", sceVrTrackerSetExtendedMode) +STUB("NhQT1n5Czfs", _ZN3sce2np8JsonNullC1EP14SceNpAllocator) +STUB( + "NhRJ-KoPw8A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEE11release_refEv) +STUB("NhU+N-QCz9w", WKPreferencesSetJavaScriptCanAccessClipboard) +STUB("NhaGXEDsWEc", _ZN4IPMI4impl11SessionImplD0Ev) +STUB("NhaQPBB7F3k", sceDebugGetUlObjectList) +STUB( + "Nheej61w4rQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEE7get_refEv) +STUB("NhfGzIsyZ7g", Java_java_lang_ClassLoader_findBootstrapClass) +STUB( + "NhfUs-pauQU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEE11get_deleterEv) +STUB( + "NhgLpXyt8Xw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "Nhhh+DoV3Vk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "Nhn04bm2zXM", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V110Reputation10setPerGameERKNS1_6Common12IntrusivePtrINS3_20ReputationPropertiesEEE) +STUB("NhpspxdjEKU", _nanosleep) +STUB( + "NhrwmhFfe1o", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V324ValidationConstraintInfo6toJsonERNS_4Json5ValueEb) +STUB("Nhv+GGUIKPI", + _ZN9Inspector22InspectorDebuggerAgent26setPauseForInternalScriptsERN3WTF6StringEb) +STUB( + "Nhw0sVuNmAA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEC2Ev) +STUB( + "NhxFtJ18nPQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEE5resetEPS6_) +STUB("Nhxy2NmQhbs", sceNpManagerIntGetUserIdByOfflineAccountId) +STUB("NhyOMK5FxAk", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS7TusDataEE3getEv) +STUB("Nhyhn2JgQ1M", _ZN9Inspector22HeapFrontendDispatchernwEm) +STUB( + "NhytvQCcnPQ", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEEiRNS2_10LibContextEPT_m) +STUB("Ni6j+eh9Hlk", sceShellUIUtilLaunchByUri) +STUB("Ni79apw1wDg", + _ZN7WebCore18JSHTMLVideoElement14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB("Ni9JZIREOv4", + Java_com_sony_bdjstack_org_bluray_ui_FrameAccurateAnimationClock_getMicroSeconds) +STUB("NiE8eucIQuY", + _ZN3sce2Np9CppWebApi11Matchmaking2V127ListUserTicketsResponseBody12unsetTicketsEv) +STUB( + "NiFQZhR1sCs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEaSERS7_) +STUB( + "NiKFj9p3bx8", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("NiLTVySxE+M", _ZTVN7WebCore14SocketProviderE) +STUB("NiTGNLkBc-Q", sceUserServiceGetDeletedUserInfo) +STUB( + "NiV9OwU4DeE", + _ZN7WebCore15UserInputBridge21handleMousePressEventERKNS_18PlatformMouseEventENS_11InputSourceE) +STUB("NiXh3NYq+EI", + _ZN15AbstractStorage15FacebookStorage11SetMetadataEPN23sceMetadataReaderWriter8MetadataE) +STUB( + "Nip+FRfvDHU", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi25changePlayerSessionLeaderEiRKNS4_36ParameterToChangePlayerSessionLeaderERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB( + "Nis6DXAybyA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEE3getEv) +STUB( + "Nit-8fKhoe4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEE11release_refEv) +STUB("NiwMhCbg764", sceUserServiceSetImePredictiveTextEnabled) +STUB( + "Niy0vw1naTw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEppEv) +STUB("Niz5Bj08+f8", _ZNK7WebCore16HTMLLabelElement4formEv) +STUB("NizKX0O0WL4", WKPreferencesSetShowsURLsInToolTipsEnabled) +STUB("NizpTB4K3bs", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product13unsetAgeLimitEv) +STUB("Nj-+klMfmSA", WKContextConfigurationSetDiskCacheDirectory) +STUB("Nj-ZUVOVAvc", sceFontGraphicsSetupScaling) +STUB("Nj40sbvN+pk", _ZN9Inspector27DOMBackendDispatcherHandlerD0Ev) +STUB( + "Nj60YOBLjGk", + _ZN7WebCore22EmptyFrameLoaderClient22dispatchWillSubmitFormERNS_9FormStateEON3WTF8FunctionIFvvEEE) +STUB("NjA4aGGrW4k", _ZN9Inspector22InspectorDebuggerAgent20setBreakpointsActiveERN3WTF6StringEb) +STUB( + "NjAN1RmAwIo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE5beginEv) +STUB( + "NjDbsTHlHRM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEdeEv) +STUB("NjEMsEjXlTY", sceUserServiceGetPbtcTzOffset) +STUB( + "NjGniKKlrjM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEC1EPS8_) +STUB( + "NjHQcv0QWkY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEEC2Ev) +STUB( + "NjICQg-x7m8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("NjJfVHJL2Gg", _ZNSt12length_errorD2Ev) +STUB( + "NjL75kO9dHA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE7popBackEv) +STUB( + "NjSRsYUYphY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEaSERKS7_) +STUB( + "NjT93-KPrpc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "NjU0EXN-lVw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE8copyFromERKS9_) +STUB( + "Njas+XM6eDQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEC2Ev) +STUB("Njb9k8yeloc", _ZN9Inspector22InspectorDebuggerAgent26cancelPauseOnNextStatementEv) +STUB("NjgVxHRHAQA", sceVdecwrapSyncDecode) +STUB("NjhK36GfEGQ", sceUserServiceGetShareDailymotionAccessToken) +STUB("NjhW50dNxss", WKRenderLayerGetBackingStoreMemoryEstimate) +STUB("NjhuM7DQT08", sceHttpCacheClear) +STUB("Njk1vr6oNSQ", _ZN3JSC24getCalculatedDisplayNameERNS_2VMEPNS_8JSObjectE) +STUB("NjxgeprW2uw", _ZN7WebCore18ParsedContentRangeC1ERKN3WTF6StringE) +STUB("NjxyTgN7dI4", rgctx_fetch_trampoline_mrgctx_12_p) +STUB("Nk-XIvILlUQ", _ZN9Inspector24WorkerFrontendDispatcher13workerCreatedERKN3WTF6StringES4_S4_) +STUB("Nk0yHh5qzes", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE4sizeEv) +STUB("Nk4Tg0Ei-ok", _ZThn120_NK7WebCore16HTMLMediaElement6volumeEv) +STUB("Nk4cSaWHON0", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V110UpdateModeEEC1EPS6_) +STUB( + "Nk5dOL7R3rs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "Nk5eLqHjvZU", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot13setaccountIdsEPKc) +STUB("NkDv+zQRTXw", WKContextSetJavaScriptConfigurationFileEnabled) +STUB( + "NkE0m7BtqUY", + _ZN3sce2Np9CppWebApi14SessionManager2V129PlayerSessionSpectatorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_22PlayerSessionSpectatorEEE) +STUB("NkEITXscsR4", WKRenderObjectGetElementClassNames) +STUB("NkFH5mAgFjE", _ZNK7WebCore11MediaPlayer25renderingCanBeAcceleratedEv) +STUB("NkJwDzKmIlw", sceAvPlayerClose) +STUB( + "NkMn8SdEeJg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "NkWILw8VjSA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEmmEi) +STUB("NkX2o0d4s4g", _ZN3sce7Toolkit2NP2V211SharedMedia6VideosC1Ev) +STUB("NkYzPGeuIVI", uhash_hashUnicodeString) +STUB("NkZzz2hl0e0", CRYPTO_set_add_lock_callback) +STUB("Nka8F65ISv8", + _ZNK3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator11getPlatformEv) +STUB( + "NkdF8DH6S9Y", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesC2EPNS1_6Common10LibContextE) +STUB("Nke5i4JrRps", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE7reserveEi) +STUB( + "NkoP7GabqIg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEaSERS7_) +STUB( + "NkpJ6zsg-ag", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody19unsetNpServiceLabelEv) +STUB("NkqH32IMG2A", WKBundlePageCreateSnapshotInDocumentCoordinates) +STUB("NkrVkicZ0kg", mono_aot_System_ServiceModelunwind_info) +STUB( + "Nktl8DSlKZU", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_15CategoryInfoSubENS2_IS4_EEEE9constructEPS6_RKS6_) +STUB("NkwTho+Hhpc", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Wordfilter16SanitizedCommentEEC2Ev) +STUB("NkxjxXuggvE", mono_aot_Sce_PlayStation_HighLevel_UI2Platformunbox_trampolines) +STUB( + "Nl04JOaCw-o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB("Nl2rJlORyIc", + _ZN7WebCore14ScrollableArea24setScrollbarOverlayStyleENS_21ScrollbarOverlayStyleE) +STUB("Nl6si1CfINw", _ZNSt13basic_filebufIcSt11char_traitsIcEE9underflowEv) +STUB("NlCqp-s1Btc", + _ZN7WebCore19MediaResourceLoaderC1ERNS_8DocumentERNS_16HTMLMediaElementERKN3WTF6StringE) +STUB( + "NlGyvYDyL7Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEC1EPS8_) +STUB("NlH6gh-b+Og", pio4_hi) +STUB( + "NlHNv-gS9PQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEmmEi) +STUB( + "NlJrVWZHUZk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("NlK6x9Fl+Xw", mono_aot_Sce_Vsh_Db_Sharedjit_code_end) +STUB("NlMX-au+A9M", _ZN9Inspector35DOMDebuggerBackendDispatcherHandlerC2ERKS0_) +STUB("NlNECoHFua0", sceBackupRestoreUtilGetRequiredSize) +STUB("NlO5Qlhjkng", sceFontCreateGraphicsServiceWithEdition) +STUB( + "NlQkxEcVfRU", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot10initializeEPNS1_6Common10LibContextEi) +STUB("NlS2R9vXK0o", WKPreferencesGetCaptureVideoInGPUProcessEnabled) +STUB("NlT0kn6pE0I", _ZN3sce7Toolkit2NP2V24Core5EmptyD1Ev) +STUB("NlTtYet81fQ", isobmf_memmanager_set) +STUB("NlVZCg6WmYM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEC2EPS8_) +STUB( + "NlXWVHo+9lI", + _ZN7WebCore14DocumentLoader22sendCSPViolationReportEON3WTF3URLEONS1_3RefINS_8FormDataENS1_13DumbPtrTraitsIS5_EEEE) +STUB("NlYNCN-SYps", sceRegMgrPrivateStorageIsNvsChange) +STUB( + "NlYQtxyE098", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEEaSERSA_) +STUB("NlZPkTwdapU", uloc_isRightToLeft) +STUB("Nlaiw-rj+WI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V511ContentTypeEEaSERKS7_) +STUB("NlcMaGX2z24", coil_wait_semaphore) +STUB( + "NldKUjNYILc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("Nlev7Lg8k3A", sceNetInit) +STUB("NlgA2fMtxl4", _ZTIe) +STUB( + "Nm-4OqGCdV8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEEC2ERKSA_) +STUB("Nm-U+BAjCkY", JSStringRelease) +STUB("Nm2BhAwYNFk", + _ZN3sce3Job10JobManager27calculateRequiredMemorySizeEPKNS1_21MemorySizeQueryParamsE) +STUB( + "Nm7eB5LxLrk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEEC1ERKSA_) +STUB( + "NmAY7pz2gac", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEC2Ev) +STUB( + "NmDmI+evBn8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEED2Ev) +STUB( + "NmIH8TbXLeQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("NmJS8seltks", __diff_D2A) +STUB("NmN7-XSVkU0", WKPreferencesSetMockCaptureDevicesEnabled) +STUB("NmPRRG5HVj4", sceMusicFwSkipNext) +STUB( + "NmUGa703Uz4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE28getResponseInformationOptionEv) +STUB( + "NmVyf91ZMdI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEdeEv) +STUB("Nmezc1Lh7TQ", malloc_get_malloc_state) +STUB("NmjMsdP9qyo", il2cpp_free) +STUB("Nmmm-TDfzg4", _ZN7WebCore8SVGNames18stroke_linecapAttrE) +STUB( + "NmnFKPe6jXQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEE3getEv) +STUB("NmoY1elGnu4", _ZN7WebCore20ISOOriginalFormatBoxC2ERKS0_) +STUB( + "Nmp0wBy2+vU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEplEm) +STUB( + "NmrbKXvsq9U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEED2Ev) +STUB("Nmtr628eA3A", _ZSt14_Random_devicev) +STUB("Nmy96vm1DwM", + _ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchStatusRequest19npServiceLabelIsSetEv) +STUB("NmyFwB4EyXc", _ZN3sce7Toolkit2NP2V29Messaging7Request20GameDataMessageImageD2Ev) +STUB("NmznqxwfKLg", _ZN3JSC7Symbols37asyncGeneratorQueueDequeuePrivateNameE) +STUB( + "Nn+8Io1qLtM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEEC2ERSA_) +STUB("Nn3ckjFKSZ8", _ZN3sce7Toolkit2NP2V212EventsClient9EventDataD2Ev) +STUB("Nn5J4GREzec", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEEC2Ev) +STUB( + "Nn6WccbC6Jc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEeqERKS9_) +STUB("Nn6eNKOy98M", WKPageSetRubberBandsAtTop) +STUB("Nn6wuDLGtSQ", + _ZN3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsersaSERS5_) +STUB("Nn7zKwnA5q0", scePlayGoGetToDoList) +STUB("Nn9MKwOzC8w", _ZN7WebCore14SchemeRegistry34registerURLSchemeAsDisplayIsolatedERKN3WTF6StringE) +STUB("NnBSAe-M3Dg", ustrcase_map_67) +STUB( + "NnGJX86iuT4", + _ZN3sce2Np9CppWebApi14SessionManager2V134ResponsePlayerSessionPlayerFactory7destroyEPNS3_27ResponsePlayerSessionPlayerE) +STUB("NnK6dStQJ04", Java_com_sony_bdjstack_javax_media_controls_SoundManager_getGainDB) +STUB("NnKhlMJtIsI", sceAmprAmmSubmitCommandBuffer3) +STUB( + "NnN5ZrxhZCM", + _ZN7WebCore20ResourceLoadObserver42setRequestStorageAccessUnderOpenerCallbackEON3WTF8FunctionIFvRKNS1_6StringEmS5_bEEE) +STUB("NnNaWa16OvE", _ZNSt11range_errorD1Ev) +STUB("NnO3pHt2WH4", _ZN12video_parser5vpcom4ReadE) +STUB("NnQyH6b78XQ", _ZNK7WebCore12ChromeClient26createScrollingCoordinatorERNS_4PageE) +STUB("NnRKjf+hxW4", sceHmdInternalSetLedOn) +STUB("NnRO7tgv4Ok", _ZN9Inspector34ApplicationCacheFrontendDispatchernwEmPv) +STUB( + "NnZsIiXgZMg", + _ZN3sce2Np9CppWebApi11Matchmaking2V116SubmitterFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_9SubmitterEEE) +STUB("Nnc7Lw5Nl9Q", rgctx_fetch_trampoline_mrgctx_91_p) +STUB("Nnfu0ZOKRkY", + _ZN3sce3pss5orbis5input12InputManager18SetAnalogStickModeENS2_15AnalogStickModeE) +STUB( + "NnlHLH6KDS0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEC2EPS6_PNS2_10LibContextE) +STUB( + "NnlbhK8J1Vo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE5beginEv) +STUB( + "NnnKX8TLhoY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEC2EPNS2_10LibContextE) +STUB( + "Nnt9MKPMIY4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("NntlsAHoYXg", _ZN12video_parser17cVideoOperatorM4vC2EPKc) +STUB( + "NnvQm+ggSAE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEEC2Ev) +STUB("NnvYm9PFJiw", sceUserServiceGetPbtcMondayDuration) +STUB( + "NnxAr9XY1sw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEE7get_refEv) +STUB("NnxzMmD8XJo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEptEv) +STUB("NnyxquMLrYg", uprv_malloc) +STUB("No2407W5Jes", _ZNK7WebCore21BackForwardController18canGoBackOrForwardEi) +STUB("No7x9VUQX28", _ZN3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreateD1Ev) +STUB("NoAtTlpb3tg", WKBundleAddUserStyleSheet) +STUB("NoFT7fKF+5Y", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getBoolean2Ev) +STUB( + "NoKR+1IGa4k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEmmEi) +STUB( + "NoSMkgO7H9U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE5emptyEv) +STUB("NoTstVRO3qE", sceSdecResetSwHevc) +STUB( + "NoVHMh626eM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEppEv) +STUB( + "NoY8KIHlJkE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEneERKS9_) +STUB( + "NoYECcESkGc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("NobVwD8qcQY", sceNpTrophySystemDebugLockTrophy) +STUB( + "NogZSPF5xTI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEE5resetEPS9_) +STUB( + "NoiExufv9vw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE5clearEv) +STUB("NoiQq1S05ZU", rgctx_fetch_trampoline_mrgctx_30_p) +STUB("Noj9PsJrsa8", wmemmove) +STUB("NomnFPQmVmY", _ZN15AbstractStorage10YoutubeAPI8termHttpEv) +STUB( + "NoqWHz7E0y0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEE11get_deleterEv) +STUB("NoqkpEtFXFc", _ZN3sce7Toolkit2NP2V212ActivityFeed14PlayedWithFeedD1Ev) +STUB("NorEV0Cl9IA", fuse_req_interrupted) +STUB("NorsOA02n5Q", Java_sun_awt_GnmUtils_getPrimaryEngine) +STUB("NoxZswTJHP0", sceFsInitMountTrophyDataOpt) +STUB( + "NoyANF1TYmg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("Np-E0FZrqkQ", WKAXObjectCopyURL) +STUB("Np7OSJ3McmY", + _ZNK3sce7Toolkit2NP15AppSTLAllocatorISt6vectorI16SceNpTusVariableNS2_IS4_EEEE8max_sizeEv) +STUB("NpBAZ0MA8l8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEE3getEv) +STUB( + "NpEKChYyGeY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEEC1ERKSB_) +STUB("NpEYVDOyjRk", sceUserServiceGetGlsBroadcastersComment) +STUB("NpEbHxYwXyk", _ZN3sce7Toolkit2NP2V27NpUtils12Notification15UserStateChangeC2Ev) +STUB("NpFXqFyIxOY", _ZN7WebCore21MediaRecorderProviderC2Ev) +STUB( + "NpFygFoRTWo", + _ZN3sce2Np9CppWebApi14SessionManager2V130PostPlayerSessionsResponseBody8fromJsonERKNS_4Json5ValueE) +STUB("NpHpKPWNh1M", WKPreferencesSetDiagnosticLoggingEnabled) +STUB("NpLBpgVV7PU", munlockall) +STUB( + "NpLGWilTpac", + _ZN3sce2Np9CppWebApi6Common23UpDownStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC1ERKS8_) +STUB( + "NpNRfx3niN4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEE7get_refEv) +STUB( + "NpQNkpOnBBQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEEC1Ev) +STUB("NpR-8-saS2E", ubidi_getReorderingOptions_67) +STUB("NpTcFtaQ-0E", sceNetCtlApUnregisterCallback) +STUB("NpZgHPIJ-Kw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEC1EPS8_) +STUB("NpcegFLFQpg", sceLibSecureCryptographyMessagePaddingSize) +STUB("NpfpcLf5PYM", scePthreadBarrierattrSetpshared) +STUB( + "NphVpgnyN24", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE8copyFromERKS9_) +STUB("NpktddOeWoM", sceDeci4hDrfpChstat) +STUB("NpoueTI6ifE", _ZN6WebKit17ChildProcessProxy14fromConnectionEPN7CoreIPC10ConnectionE) +STUB("NpqX-u41+kA", _ZN7WebCore12DataTransferD1Ev) +STUB("NpyvCyD8wCE", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationProperties12setWelcomingERKi) +STUB("Nq+JpyOhocI", mono_aot_Microsoft_CSharpjit_code_end) +STUB( + "Nq0I6oiHOUs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE3endEv) +STUB( + "Nq0gp5m4byo", + _ZN3sce2Np9CppWebApi13InGameCatalog2V532ContentInteractiveElementFactory7destroyEPNS3_25ContentInteractiveElementE) +STUB("NqAbR6zFA64", WKPageLoadURLRequest) +STUB("NqCD8n5dq+Y", sceUpsrvUpdateCheckDoCheckSystemWithPupInfo) +STUB("NqFgikJQYcg", utext_openReplaceable_67) +STUB("NqMgmxSA1rc", _ZNSt17bad_function_callD2Ev) +STUB("NqPxpqLl8W0", _ZN3sce7Toolkit2NP2V28Commerce10Containers8deepCopyERKS4_) +STUB("NqTjmoN0lj8", sceClAudiodecCreateDecoder) +STUB("NqUcrCZ7+f4", _ZN7WebCore36ISOProtectionSystemSpecificHeaderBoxC1ERKS0_) +STUB("NqV8ddwLaiY", JSStringGetUTF8CString) +STUB("NqV8zMoVdAs", _ZN3WTF9MediaTime11invalidTimeEv) +STUB("NqaOL3bONv0", ucnv_toUnicode_59) +STUB( + "Nqc8HjHHjIo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEC2EPS8_) +STUB("NqcXH1RdRfk", _ZN3sce7Toolkit2NP2V28Matching7Request8JoinRoom23MIN_SESSION_INDEX_VALUEE) +STUB( + "NqdYdSAguzE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE3endEv) +STUB("NqkTzemliC0", sceGameLiveStreamingApplySocialFeedbackMessageFilter) +STUB("Nqla0jO15A8", _ZN7WebCore6Editor5pasteENS0_20FromMenuOrKeyBindingE) +STUB( + "NqoGDM7dSPs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE5beginEv) +STUB("Nqq1m6xzNmw", _ZN7WebCore11MathMLNames5mnTagE) +STUB( + "NquJT5wnDI8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEC2Ev) +STUB( + "Nqw71l5GxLQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEED2Ev) +STUB("Nqx7xm6ZKm0", _ZN3JSC14JSRunLoopTimer13timeUntilFireEv) +STUB("NqxMleeTiLs", sceRegMgrGetBin) +STUB("Nr+GiZ0tGAk", _ZTSSt8ios_base) +STUB("Nr273YqaAvo", sceDebugIpmiGetServerWaitingThreadList) +STUB("Nr2RJUhjrx4", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE7reserveEi) +STUB("Nr6Z+mAq23A", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEE3getEv) +STUB("NrDMe8zeAg0", _ZN3sce7Toolkit2NP2V27Ranking7Request15GetRangeOfRanks9MAX_RANGEE) +STUB("NrEX6bDyN58", _ZN7WebCore6Editor24advanceToNextMisspellingEb) +STUB("NrIDEB1y-e0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEC2ERS7_) +STUB("NrKtvW0gC-Q", _ZNK7WebCore8Document28characterSetWithUTF8FallbackEv) +STUB( + "NrLLQkdYaYI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEaSERKS7_) +STUB("NrLOPMOGt20", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE5beginEv) +STUB("NrOueQY3scw", + _ZN7WebCore18JSHTMLMediaElement15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "NrSeqxW-S2k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEEC2ERSA_) +STUB( + "NrSfumzZ+Og", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEC2Ev) +STUB("NrT3OAlCaEk", _ZTVN15AbstractStorage14YoutubeServiceE) +STUB("NrX7r94WRds", makeUlpNtfHdrNoFragment) +STUB("NrYgf5Tu5HU", mono_btls_x509_verify_param_set_mono_flags) +STUB( + "NrYssbbs2ZI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("NrZz0ZgQrao", SSL_recvPending) +STUB("NrrqPgLMESA", _ZN3sce7Toolkit2NP2V212EventsClient10EventColorD2Ev) +STUB( + "Nrz5TF4WIck", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeaders21intrusive_ptr_add_refEPS5_) +STUB("Ns+Q-IBcpuQ", _ZThn136_NK7WebCore16HTMLMediaElement5mutedEv) +STUB("Ns0SeI2eKaU", WKURLResponseGetTypeID) +STUB("Ns6xlJ7gKek", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEE11release_refEv) +STUB("Ns8YtHWBLyk", _ZN7WebCore19ResourceRequestBase11setPriorityENS_20ResourceLoadPriorityE) +STUB("Ns9a-LjOcDw", FTA_Support_Renderer_Smooth_Lcdv) +STUB("NsCAJ5a7zzM", _ZL14report_failure19_Unwind_Reason_CodePN10__cxxabiv115__cxa_exceptionE) +STUB("NsFZqlmmZ9E", cairo_matrix_transform_distance) +STUB( + "NsGIw0R2afs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("NsJycqh1KFs", WKProtectionSpaceGetIsProxy) +STUB( + "NsKINpvDCiw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEC1EPS6_PNS2_10LibContextE) +STUB("NsLC7fQfV5k", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEEdeEv) +STUB("NsMX6HW4wcI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEptEv) +STUB("NsNG602kFss", uloc_countAvailable_67) +STUB("NsRv+sKcZ6Y", WKViewIsFullScreen) +STUB( + "NsYEVzZjF7M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEE5resetEPS6_) +STUB( + "NsfSXK7ymJI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEED1Ev) +STUB( + "NshkLgovd8w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("Nsle20GAXvE", _ZN3WTF7CStringC1EPKcm) +STUB( + "NsrRRecrE64", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEixEm) +STUB("NsvNBGoyTLo", _ZNK7WebCore17HTMLCanvasElement17displayListAsTextEj) +STUB( + "NsznnDBw024", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEED2Ev) +STUB("Nt-NqCbSe9c", _ZN3WTF15AutomaticThreadD1Ev) +STUB("Nt1runsPVJc", sceNpTusAddAndGetVariableAVUser) +STUB("Nt6eyVKm+Z4", + _ZNKSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewPK2tmcc) +STUB("Nt7Cij4dVU4", __wrap_mmap) +STUB("NtBJpphF4R0", _ZNK7WebCore22CSSAnimationController33allowsNewAnimationsWhileSuspendedEv) +STUB( + "NtCeYezgydI", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEEiRNS2_10LibContextEPT_m) +STUB("NtGKjmV+ib4", il2cpp_image_get_name) +STUB( + "NtGRV98a104", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEEcvbEv) +STUB("NtGXIiSuvCc", _ZN13MsvMetaEditor19getModificationTimeEP2tm) +STUB("NtHCBzSqxgo", sceLoginMgrServerTerminate) +STUB("NtJRF4ZYnGQ", __asan_report_store4) +STUB("NtOA+0RApBg", sceKernelIccGetUSBPowerState) +STUB( + "NtOgzZSfvFI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEED1Ev) +STUB("NtXRa3dRzU0", sceVideodec2GetPictureInfo) +STUB( + "NtXgpKSWPFc", + _ZN3sce2Np9CppWebApi7Matches2V126RequestInGameRosterFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_19RequestInGameRosterEEE) +STUB("NtZqoErk7n4", _ZN7WebCore11JSMediaList9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("Ntg7gSs99PY", _ZNSt13_Num_int_base10is_boundedE) +STUB("NtjY-lZG4ss", ubrk_setText) +STUB("NtlWM0ZU2wY", _ZNK7WebCore11MediaPlayer27languageOfPrimaryAudioTrackEv) +STUB( + "Nto+wUVBOe8", + _ZN3sce2Np9CppWebApi14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBody16unsetCustomData1Ev) +STUB( + "NtoFiNABIqU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("NtqD4Q0vUUI", _ZN10__cxxabiv120__function_type_infoD2Ev) +STUB("NtsHoOq2ao4", _ZThn8_N3sce2np9LocalFile4ReadEPNS0_6HandleEPvmPm) +STUB("NtsiAMxyp2E", _ZN7WebCore14CredentialBaseC1ERKN3WTF6StringES4_NS_21CredentialPersistenceE) +STUB( + "NtvNmQSZpC4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEEC1Ev) +STUB( + "Ntx1WPVD5sg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEC1EPNS2_10LibContextE) +STUB("Nu3OmacPbeA", _ZN7WebCore9FetchBody12fromFormDataERNS_8FormDataE) +STUB("NuEjeN8WCBA", sceHmdInternal3dAudioSendData) +STUB("NuG3IeWktro", mono_get_exception_argument) +STUB( + "NuI7pZAsi7Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEE11release_refEv) +STUB("NuJT-nmTqrI", sceMusicPlayerServicePreviousTrack) +STUB("NuTNdlvrugI", sceVideoStreamingEngineDestroyMediaKeySystemAccess) +STUB("NuVWQhHZ26o", udatpg_getDecimal_67) +STUB("NuWJOndFtDI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEED1Ev) +STUB( + "NuX12WFvMBA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEC2Ev) +STUB( + "NuXYSpTO+6A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEcvbEv) +STUB( + "NuZCBrkoV0s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEE5resetEPS9_) +STUB( + "Nuaa0qKXFS0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEplEm) +STUB("NuanhoyflKA", sceNetApctlClearEvent) +STUB("NudbP5i-PSE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116JoinableUserTypeEEmmEv) +STUB("NugBItcC7YY", _ZN7WebCore25computeViewportAttributesENS_17ViewportArgumentsEiiifNS_7IntSizeE) +STUB("Nuhv71YjC+g", sceVisionManagerGetResultOfFindUser) +STUB("Nuil-LF3EYQ", WKContextGetSharedProcessContext) +STUB("Nunf53TmlV4", JNU_ThrowByNameWithLastError) +STUB("NuydofHcR1w", feof_unlocked) +STUB("Nv-vzUQgeMU", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V116TaskAvailabilityEEmmEi) +STUB( + "Nv1OTth+FWg", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities13setaccountIdsENS1_6Common12IntrusivePtrINS7_6VectorINS7_6StringEEEEE) +STUB("Nv5oO486pSE", sceBgftServiceDownloadFindTaskByContentId) +STUB( + "Nv7ql98hdqI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEEC1Ev) +STUB("Nv8c-Kb+DUM", sceVideoOutIsOutputSupported) +STUB("Nv9RRgkwewY", WKWebsiteDataStoreConfigurationCopyWebSQLDatabaseDirectory) +STUB("NvAUu9pfWvA", utrie2_freeze_67) +STUB( + "NvBiUZDPnXI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEppEv) +STUB("NvD7vqlu22E", _ZN3WTF10StringImpl17utf8ForCharactersEPKDsjNS_14ConversionModeE) +STUB("NvF3fC7a568", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEE11get_deleterEv) +STUB( + "NvHP8v5kqk0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEdeEv) +STUB("NvHjFkx2rnU", sceNpTusGetMultiUserDataStatus) +STUB( + "NvHkiVcRu34", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "NvMxyjVu1t8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEC1ERS7_) +STUB("NvP5JGUWBpk", ucsdet_detectAll_67) +STUB("NvRYDns8Ydc", sceKernelSuspendProcess) +STUB("NvSKi+AG++g", _ZN15AbstractStorage14TwitterService13SearchStorageEv) +STUB( + "NvT2S8j5fiQ", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariable31setaddAndGetVariableRequestBodyENS1_6Common12IntrusivePtrINS3_28AddAndGetVariableRequestBodyEEE) +STUB( + "NvV--345al4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEC1Ev) +STUB("NvVqG8w2D7c", _ZN7WebCore18PrewarmInformationaSERKS0_) +STUB( + "NvkdVxxbZLs", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi42ParameterToPutGameSessionsSearchAttributesD1Ev) +STUB("NvkkaV8h5vk", ucol_strcollIter_67) +STUB("NvpjH1FzwVc", _ZNSt9basic_iosIwSt11char_traitsIwEE5clearEj) +STUB("NvqV7zrTtVA", _ZN3sce7Toolkit2NP2V29Challenge13ChallengeDataC2Ev) +STUB( + "NvtO9gwPi2I", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB("Nvu+-KKztN4", _ZN3WTF13printInternalERNS_11PrintStreamEf) +STUB( + "NvwS+4TPIqE", + _ZN7WebCore21JSCSSStyleDeclaration18getOwnPropertySlotEPN3JSC8JSObjectEPNS1_14JSGlobalObjectENS1_12PropertyNameERNS1_12PropertySlotE) +STUB( + "NvwWqxYNrJ0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEE11release_refEv) +STUB( + "NvwiiY1ep6o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEppEv) +STUB("Nvwr7UfPzfE", WKWebsiteDataStoreSetResourceLoadStatisticsToSameSiteStrictCookiesForTesting) +STUB( + "NvywrFkIkKs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE6resizeEj) +STUB("Nvzn9mIoIUw", sceDeci4hDrfpClose) +STUB("Nw0ilSm8FxY", FcCharSetDestroy) +STUB("Nw0ioCQ9tbc", BN_hex2bn) +STUB( + "Nw4Fzd9xlEA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("Nw7Khobn4bY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEEptEv) +STUB("NwADCEaYt9g", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11ProductInfoEEC2ERKS4_) +STUB("NwKqfiRr+5w", u_UCharsToChars_67) +STUB("NwL-F14BzCo", _ZSt9use_facetISt10moneypunctIcLb1EEERKT_RKSt6locale) +STUB("NwMHWqfNEmg", _ZNK3WTF6String8toDoubleEPb) +STUB("NwOHMRM2Ppw", sceFiosFileExistsSync) +STUB( + "NwPFgee1YpI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB( + "NwQFFoAkox0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE5clearEv) +STUB("NwRNxHDt8jE", _ZN10Deprecated11ScriptValueC1ERN3JSC2VMENS1_7JSValueE) +STUB("NwSOm8XB7h0", uspoof_setAllowedUnicodeSet_67) +STUB("NwT2R5lo8P8", sceSystemServiceGetAppIdOfRunningBigApp) +STUB("NwUvd0AYGDI", _ZN3JSC6JSCell11analyzeHeapEPS0_RNS_12HeapAnalyzerE) +STUB("NwVVIm9MVzo", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13SessionMemberEEC2Ev) +STUB("NwWU0vvhPTc", sceSpPthreadAttrSetschedparam) +STUB( + "Nwav2KlgNnU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("Nwcnlf2Mcz4", _ZNK7WebCore24CoordinatedGraphicsLayer15fixedToViewportEv) +STUB("Nwd5R6GbF3g", uhash_deleteHashtable) +STUB( + "NweuwADAEuk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEED1Ev) +STUB( + "NwkrtMiUM9w", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("NwnJ8AZrQ7o", ShConstructCompiler) +STUB("Nwnql7q5-Qw", t1_cmap_expert_class_rec) +STUB( + "Nwp+BkprK4A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEE11release_refEv) +STUB("NwvfHnrBpFg", _ZN3JSC7Symbols35InspectorInstrumentationPrivateNameE) +STUB("NwwkHSVFYBA", sceRegMgrDrvGetUpdateCnt) +STUB("NwwwHqq66Gk", _ZN3sce7Toolkit2NP2V210Tournament18OneVsOneRankResult8deepCopyERKS4_) +STUB("Nx+FM+bz0ZQ", sceNpManagerIntBindByJson) +STUB("Nx-5J9GrUcE", _sceNpFreeImpl) +STUB("Nx-F5v0-qU8", asinl) +STUB( + "Nx2eWZAFiHg", + _ZN3sce2Np9CppWebApi7Matches2V134ResponseTeamMemberStatisticFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_27ResponseTeamMemberStatisticEEE) +STUB( + "Nx3lheRKr+I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE7popBackEv) +STUB("Nx4k-7yySd0", _ZN7WebCore12GCController13deleteAllCodeEN3JSC19DeleteAllCodeEffortE) +STUB( + "Nx5I0XcEDN0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEEaSERSA_) +STUB("Nx5tOvL4edo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEED1Ev) +STUB("Nx5tez4siL4", _ZN3sce4Json5Value13referUIntegerEv) +STUB("Nx8n4sut9ZI", _ZN3JSC17JSInternalPromise4thenEPNS_9ExecStateEPNS_10JSFunctionES4_) +STUB( + "Nx98J393ujE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE8copyFromERKS9_) +STUB( + "Nx9grG24Mk0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEEC1ERKSA_) +STUB("NxEI1KByvCI", sceRtcParseDateTime) +STUB( + "NxFsimLnkSU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("NxGqPyUKd7U", _ZN7WebCore16MIMETypeRegistry26getSupportedMediaMIMETypesEv) +STUB("NxInt3qBDpE", mono_domain_get_friendly_name) +STUB("NxKYXPb-CHA", _ZNK7WebCore13HitTestResult16altDisplayStringEv) +STUB( + "NxOoznzWYcI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEC1ERKS7_) +STUB("NxRWB2-tnmU", _ZN3sce7Toolkit2NP2V27Session13SessionMemberD1Ev) +STUB("NxRzfIUoR1M", YGNodeStyleGetMargin) +STUB("NxSdL9t-KXk", sceAvPlayerStartEx) +STUB( + "NxW6c83jofk", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeOnlineId2AccountIdBatch5getidEv) +STUB("NxYHZp+nx9Q", _ZTVN7WebCore11DisplayList4SaveE) +STUB("NxZPqCG8Qbk", fuse_fs_write) +STUB("NxcBoTOpcOM", ucal_set_67) +STUB( + "NxiiCijYj6w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE7popBackEv) +STUB("NxjPl1n6gM8", _ZN7WebCore11MathMLNames12mscarriesTagE) +STUB("NxpL9p+1VzE", _ZN3JSC7Symbols30requestImportModulePrivateNameE) +STUB( + "NxqdOjeEiZQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE6resizeEj) +STUB("Nxr4dKZoP3A", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEEcvbEv) +STUB( + "NxuI4CjyKK4", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions18hasjoinStateFilterEv) +STUB("NxuvrmHgR3Q", + _ZNK3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsers13isInitializedEv) +STUB( + "Nxy9mn1erJk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable18setLastUpdatedUserERKNS1_6Common12IntrusivePtrINS3_15LastUpdatedUserEEE) +STUB("Ny+M+-DRRwQ", mono_aot_Sce_PlayStation_Coreplt) +STUB( + "Ny4rLmDDxtg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("Ny9Bf1O0zpE", _ZTVN7WebCore11DisplayList23FillRectWithRoundedHoleE) +STUB( + "NyDQr1M2ePA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEeqERKS9_) +STUB( + "NyEljYHRpi0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "NyGNLKPz8LE", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("NyGp+zj5fio", _ZN3sce7Toolkit2NP2V26Friend12Notification15BlocklistUpdateC2ERKS5_) +STUB("NyHpSM1kzEg", sceClNetPoolCreate) +STUB("NyJXNUqkQUU", + _ZN3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayer16unsetCustomData1Ev) +STUB( + "NyLDv4dPdv8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE3endEv) +STUB( + "NyLcloCieOU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEixEm) +STUB( + "NyMWW9gApq8", + _ZN7WebCore22TextureMapperAnimationC2ERKN3WTF6StringERKNS_17KeyframeValueListERKNS_9FloatSizeERKNS_9AnimationEbNS1_13MonotonicTimeENS1_7SecondsENS0_14AnimationStateE) +STUB("NyMuSAsPS6M", _ZZSt9MakefacetISt5ctypeIwESt8_LocinfoERT_T0_E3buf) +STUB( + "NyNDXNze7cY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB("NyQ1zvjWDBQ", _ZN7WebCore27TranslateTransformOperationD0Ev) +STUB("NyW8HUDoNiw", ucnv_getCanonicalName_59) +STUB("NyXPIq7y1w4", _ZN7WebCore9HTMLNames6delTagE) +STUB("NyZx5EzS4-U", _ZN7WebCore4toJSERNS_12VoidCallbackE) +STUB("NyeruO1f0vI", mono_create_jump_trampoline) +STUB( + "NykNF4E1DDI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "Nyl9Y9b1RPg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEED1Ev) +STUB( + "NylBy9V1MQk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEC1EPS6_PNS2_10LibContextE) +STUB("Nyn0ihCdeFw", mono_aot_Sce_Vsh_VideoFramework_Platformunbox_trampolines) +STUB( + "NyvGkBH0LFc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEEC2ERSA_) +STUB( + "NywRfpP34N4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE6resizeEj) +STUB("NywdIDwBgIo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V511ContentTypeEEC1EPS6_) +STUB("NywmpjNOeGI", _ZN7WebCore7Element20bindingsOffsetParentEv) +STUB( + "NyxQlyGbQU8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEaSERS7_) +STUB("NyyYy9owM7s", _ZN7WebCore9HTMLNames12onseekedAttrE) +STUB("NyyZRfv2B3M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEC1ERS7_) +STUB( + "Nz-7pqCLhMM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEC1EPNS2_10LibContextE) +STUB("Nz-ZE7ur32I", sceNpMatching2DestroyContext) +STUB("Nz-fKkdoNBE", _ZN3sce7Toolkit2NP13SessionMemberC2Ev) +STUB( + "Nz0fKV5lYUY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEC1EPS8_) +STUB( + "Nz3+y0tHFMs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("Nz7J62MvgQs", ungetwc) +STUB("Nz8gFpD8DdY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V114SearchOperatorEEaSERKS7_) +STUB( + "NzB4quhU+74", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEmmEv) +STUB( + "NzD+IZ8FnMo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEED1Ev) +STUB("NzKd6vwJdpo", __ubsan_handle_mul_overflow_abort) +STUB("NzME1DayPd4", _ZN3sce7Toolkit2NP2V24Core5EmptyD2Ev) +STUB( + "NzRERO+6l48", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEmmEi) +STUB("NzUX4yf7ccQ", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEED1Ev) +STUB( + "NzWvj80M-LM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEEptEv) +STUB("NzaN0+09Q+c", Java_com_sun_havi_ui_FreeTypeFontFace_pGetFontFamily) +STUB("NzalMywlwTU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed12SharedVideosEEC2Ev) +STUB("NzfmwRJMXGg", unum_applyPattern_67) +STUB( + "Nzg0qNnXV5M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEaSERKS9_) +STUB("Nzg8TGr4tpQ", sceDeci4hDrfpCreate) +STUB( + "NzhSDPQausw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "Nzjgw3Xmyss", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEppEi) +STUB("NzjyulmBj0k", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEED1Ev) +STUB( + "NznCdoOhdQk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEixEm) +STUB("Nzr1l05aG2k", sceBgftServiceIntGetTaskInfoValueInt) +STUB("Nzs7G5rtqmA", sceFsUnbindApplication) +STUB( + "NzwfZXrMeXg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEED1Ev) +STUB("O+-Cio3L0Uk", + _ZNK3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse6toJsonERNS_4Json5ValueEb) +STUB( + "O+0DHMjWE6I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEE7get_refEv) +STUB( + "O+0Qp6WH6Jg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEeqERKS9_) +STUB( + "O+5GCiCEOSA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEmmEi) +STUB("O+61EvEsRfM", __ubsan_handle_negate_overflow) +STUB( + "O+6xrsVf66M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "O+BhK+Q2scE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("O+Bv-zodKLw", __muldf3) +STUB("O+DBCe0EXGM", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE3endEv) +STUB("O+FeLkOM7w0", + _ZN3sce2np9HttpTrans4InitERKNS0_12HttpTemplateEPNS0_18HttpConnectionPoolEiPKcS8_tS8_m) +STUB("O+JTn8Dwan8", CA_MGMT_reorderChain) +STUB("O+JwO5JPIW4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEEC2EPNS2_10LibContextE) +STUB("O+MKIQG6G6M", _ZN7WebCore24DeprecatedGlobalSettings24setUsesOverlayScrollbarsEb) +STUB( + "O+QwbG9uci4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE10setContextEPNS2_10LibContextE) +STUB("O+Rk6bioKMY", _ZN4IPMI4impl10ServerImpl13createSessionEPPNS_7SessionEPvS5_) +STUB("O+SSFahV2nI", Java_sun_awt_GnmUtils_postKeyEvent) +STUB("O+V8aQNoq4g", mono_aot_Sce_Vsh_MyGameListunbox_trampoline_addresses) +STUB("O+VoB8m5MXA", _ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody10setCommentEPKc) +STUB("O+asNfpe7qQ", _ZN3sce7Toolkit2NP2V24Core7Request21NpToolkitCallbackInfoC1Ev) +STUB("O+bf0qU+mvc", _ZN12video_parser17cVideoProfilerMp4C2EPNS_18cMp4FFLHndlManagerE) +STUB( + "O+bftBcO7l4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEEC1ERSA_) +STUB("O+e+IS12924", _ZN7WebCore13MediaStrategyC2Ev) +STUB("O+fbNsSxg4g", mono_aot_Sce_Vsh_DbPreparationWrapperunbox_trampoline_addresses) +STUB("O+hU3FfT1Ps", _ZN24ScePssDecoderAtrac_orbis19BufferedDecodeChunkEPKhjRjPsjS2_S2_) +STUB( + "O+i3iXz225w", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEE3getEv) +STUB( + "O+jxTmjUCFw", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12setInteger10ERKi) +STUB( + "O+qi2rQEM7c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEmmEi) +STUB("O+qpxyoYh7Q", mono_string_hash) +STUB("O+sosGII4Is", mono_reflection_get_custom_attrs) +STUB( + "O+vEFUtMWok", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEmmEv) +STUB( + "O+yMRk556lw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE8capacityEv) +STUB("O-2TTjhWw10", sceNpPushIntGetConnectionState) +STUB("O-3ISZkWmqY", ucnv_getStandardName) +STUB("O-3tGO0pmBM", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEED2Ev) +STUB("O-5YTdPcBXw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V124RequestCooperativeResultEEneERKS7_) +STUB("O-7nHKgcNSQ", sceGnmGetCoredumpProtectionFaultTimestamp) +STUB( + "O-Dh6208rww", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEneERKS9_) +STUB("O-Ge-E8ZmKg", mono_aot_Sce_Vsh_Np_Pbtcunbox_trampolines) +STUB( + "O-LYXwZ4Mv0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEEaSERSA_) +STUB("O-LhCTj5bqM", __got_plt_start) +STUB( + "O-P35ma+ht8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE21intrusive_ptr_add_refEPS9_) +STUB("O-Q3I-ZthsY", sceAppInstUtilAppUnInstallForRemote) +STUB("O-QWnOr1bH8", _ZN3JSC14JSGlobalObject7destroyEPNS_6JSCellE) +STUB("O-VDfGLU7x0", jpeg_idct_ifast) +STUB("O-XrdtYIqdY", _ZN7WebCore11JSImageData6s_infoE) +STUB("O-ZI7tPijow", utrace) +STUB( + "O-a085gJxDY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEC2Ev) +STUB("O-d+-FROcZk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE5beginEv) +STUB( + "O-fW3bUQ3Ao", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayer9terminateEv) +STUB("O-hEvSnv2o4", __sys_is_development_mode) +STUB( + "O-luFK8hQqc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEEC1ERSA_) +STUB("O-mPWWK7-Zo", _ZNSt15basic_streambufIwSt11char_traitsIwEE9underflowEv) +STUB( + "O-mrsnNqVSI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE8pushBackERKS8_) +STUB( + "O-vHrfHbWhY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEneERKS9_) +STUB( + "O-wwcbiyrvA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("O-xKH2IM6-o", _ZN25MmsFileUpdaterFsOperationD0Ev) +STUB("O-yD-vQbaEE", _ZN7WebCore12PrintContext16computedPageSizeENS_9FloatSizeENS_9RectEdgesIfEE) +STUB("O02W1w+o6SQ", _ZN7WebCore28InspectorFrontendClientLocal13showResourcesEv) +STUB( + "O06XknCI53c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEC2Ev) +STUB("O07DufTIoyo", at_thread_exit_mutex) +STUB( + "O08W795It+s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEaSERS7_) +STUB("O0Bti1rW6eM", mono_aot_System_Coreplt) +STUB("O0EG+VLus-I", _ZN3JSC2VM6createENS_8HeapTypeEPN3WTF7RunLoopE) +STUB("O0HKvHEni4A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEdeEv) +STUB("O0LfokyVHKY", mono_domain_unload) +STUB( + "O0Lhr+o6tCQ", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser9hasfieldsEv) +STUB("O0Nl4aaCceQ", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_skipToPlayListMark) +STUB( + "O0QXINt0CE0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEEC2Ev) +STUB("O0S96YnD04U", sceGnmGetResourceName) +STUB( + "O0St2xPoin4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "O0WtWFyCrvk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("O0YiYsUaleQ", WKOpenPanelResultListenerCancel) +STUB( + "O0biU3IOMzQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEE11release_refEv) +STUB("O0fI61Q4Gm8", mono_aot_Sce_PlayStation_Orbisjit_got) +STUB("O0fWAnaqyX8", _ZN13MsvMetaEditor15SwapUTF16EndianEPwPKwi) +STUB( + "O0j0ClGCg3Q", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEEC1ERKSF_) +STUB("O0j9L0-HMM4", _ZN3sce7Toolkit2NP2V29Challenge7Request13SendChallengeD1Ev) +STUB("O0mtfoE5Cek", sceUserServiceGetVibrationEnabled) +STUB( + "O0owSkBTI+o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEC1Ev) +STUB("O0pcTMxA38I", __tsan_atomic32_load) +STUB( + "O0rVDeAY-Qs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEC1EPKS8_) +STUB("O0tH0+3G4GU", _ZN3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer12setAccountIdEPKc) +STUB("O0u43HQhnAE", _ZN9Inspector20InjectedScriptModuleD1Ev) +STUB("O1+7tMw8oIo", scePsmMountDirectory) +STUB("O12-uwOjxUY", mono_btls_ssl_ctx_set_verify_param) +STUB( + "O13xmJlJQ2s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEE11get_deleterEv) +STUB( + "O14Keym1h2U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEEC1EPS4_PFvS6_EPNS2_10LibContextE) +STUB("O172A7JvUxE", _ZN7WebCore15AffineTransformC2Ev) +STUB("O19gIiIute4", sceMatUnmapMemory) +STUB("O1AvlQU33pI", _ZN3sce2np5MutexC1Ev) +STUB("O1Djg3YeTLU", sqlite3_get_autocommit) +STUB( + "O1Dtwu9R9ME", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEC2EPS8_) +STUB( + "O1E-dt6aAZI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEC1Ev) +STUB("O1N7Y2ilplo", fuse_session_exited) +STUB("O1O7B4TwnfQ", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities26GetUsersActivitiesResponseD1Ev) +STUB( + "O1TvvhgJzAI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "O1VW4WkdGr8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEC1Ev) +STUB( + "O1WpwwWWtUE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEE7get_refEv) +STUB("O1Xix43qmBs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEEeqERKS7_) +STUB( + "O1dAUcUPsOg", + _ZN3sce2Np9CppWebApi7Matches2V126ResponseMatchPlayerFactory6createEPNS1_6Common10LibContextEPKcNS3_10PlayerTypeEbPNS5_12IntrusivePtrINS3_19ResponseMatchPlayerEEE) +STUB("O1eMKYxVlTs", ucnv_toUnicode) +STUB("O1ecX4iuwO8", mono_config_parse) +STUB( + "O1f8pjeyqMs", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10getString3Ev) +STUB("O1hO8MlVK2I", _ZN3sce2np18HttpConnectionPool13GetConnectionERKNS0_12HttpTemplateEPKcS6_tPi) +STUB("O1i2y1YXwew", ENGINE_init) +STUB("O1lQ2+do5r4", _ZN4IPMI6Client6ConfigC1Ev) +STUB("O1nURsxyYmk", sceUserServiceGetGlsCameraTransparency) +STUB("O1uwoqazS2A", _ZN3sce4Json12MemAllocatorD1Ev) +STUB("O2555v+m930", __tsan_write8) +STUB("O26IVm7mg78", mono_aot_Sce_Vsh_CloudClientjit_got) +STUB("O29yxu+Ryc0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17SetGameDataResultEE5resetEv) +STUB("O2BqIB6Lx44", WKViewSetPageScaleFactor) +STUB("O2CzojXKt+Y", Java_java_net_PlainSocketImpl_socketCreate) +STUB("O2FhzBmFTEk", _ZN3JSC9JSPromise15rejectAsHandledEPNS_14JSGlobalObjectEPNS_9ExceptionE) +STUB("O2MUM522wd4", _ZN7WebCore15AffineTransformC2Edddddd) +STUB("O2NMJeJjx9E", _ZN3JSC2VM19sourceCodeSpaceSlowEv) +STUB("O2W8UiBdLWk", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V18Variable24lastUpdatedDateTimeIsSetEv) +STUB("O2WCv5FPz1c", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament6EventsEE12deepCopyFromERS7_) +STUB("O2XMxxTJU8w", WKPageDidDenyPointerLock) +STUB("O2dvtjs5sWU", WKPlugInInformationReplacementObscuredKey) +STUB( + "O2feFoNGn2o", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEeqERKS9_) +STUB("O2mP3Fu1QUo", g_slist_free) +STUB("O2p7K6EmzhY", _ZNK3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap15isRecycledIsSetEv) +STUB("O2rgVi8YyOg", sceUsbStorageDialogTerminate) +STUB("O2t1Dm4eMig", sceNpSnsDailymotionDialogOpen) +STUB("O2wxIdbMcMQ", + _ZGVZNSt13basic_filebufIwSt11char_traitsIwEE5_InitEP7__sFILENS2_7_InitflEE7_Stinit) +STUB( + "O3-Ogg4SUWM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "O31MgcpH0q4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEdeEv) +STUB( + "O3CLygs4lPY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("O3FM2WXIJaI", sceAudioOutChangeAppModuleState) +STUB("O3HjB2izk9o", sceVisionManagerGetResultOfFindFace) +STUB( + "O3KXrVEuHTU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "O3MJnKnW7Gw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEC1ERKS7_) +STUB("O3OzglNHPlU", ubidi_getMaxValue_67) +STUB( + "O3SJavDnt7M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEE5resetEPS9_) +STUB("O3YLX2pzow4", _ZNK7WebCore18AdClickAttribution13urlForTestingERKN3WTF3URLE) +STUB( + "O3c2vssz+nI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEaSERKS7_) +STUB( + "O3du3YcB2hw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE5beginEv) +STUB("O3f1sLMWRvs", sceAudiodecCreateDecoder) +STUB( + "O3fO3fpNhNE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEC1ERKS7_) +STUB("O3irWUQ2s-g", sceSystemServiceEnablePersonalEyeToEyeDistanceSetting) +STUB( + "O3yj0ZUpNHc", + _ZN9Inspector25DatabaseBackendDispatcher10executeSQLElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("O3zT1gO1ZNM", u_isWhitespace) +STUB("O3zsJKHPpNk", _ZN12video_parser5vpcom3rtc21GetCurrentNetworkTickEPm) +STUB( + "O40DEaVirhI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEEaSERSA_) +STUB("O42ZlBvIPMM", sceNpAsmClientGetServiceBaseUrl) +STUB( + "O43meBkokSo", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEEC1ERKSC_) +STUB( + "O45f70qQ1rs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEneERKS9_) +STUB("O45k4G7xU28", _ZNK3WTF8JSONImpl5Value4typeEv) +STUB("O48cBQ3esqw", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEEcvbEv) +STUB("O4Hp2kw9q4U", mono_aot_Sce_Vsh_SessionInvitationunbox_trampolines_end) +STUB( + "O4JnrYhtn68", + _ZN7WebCore21ComplexTextController14ComplexTextRunC2ERKN3WTF6VectorINS_9FloatSizeELm0ENS2_15CrashOnOverflowELm16ENS2_10FastMallocEEERKNS3_INS_10FloatPointELm0ES5_Lm16ES6_EERKNS3_ItLm0ES5_Lm16ES6_EERKNS3_IjLm0ES5_Lm16ES6_EES4_RKNS_4FontEPKDsjjjjb) +STUB("O4L+0oCN9zA", _FSinh) +STUB("O4LAoN2b7y4", ScePsmMonoStringChars) +STUB( + "O4LOr9QpGhE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEC1EPS6_PNS2_10LibContextE) +STUB("O4LYGcm5vsU", mono_get_exception_argument_null) +STUB("O4Lg9Y3gYFg", ScePsmMonoRuntimeQuit) +STUB( + "O4NlYjpY16c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEEC1Ev) +STUB("O4PQrbyLS7k", _ZNK7WebCore13KeyboardEvent8charCodeEv) +STUB("O4PdREOwMNg", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V114ResultsVersionEEppEi) +STUB("O4Tp-v1p3tc", rgctx_fetch_trampoline_mrgctx_61) +STUB("O4WyTyZBkUA", _ZN12video_parser5vpcom8datetime8DateTime11time_formatE) +STUB( + "O4YGr9Vcnno", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEaSERKS7_) +STUB("O4ZJfw-mmKg", _ZN7WebCore24FrameDestructionObserver14frameDestroyedEv) +STUB( + "O4j0dTeiLf0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEE7add_refEv) +STUB("O4j79wmZzSw", mono_thread_detach_if_exiting) +STUB("O4mPool-pow", _ZNSt10filesystem7_ResizeEPKcm) +STUB( + "O4t74-yuCkY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEEcvbEv) +STUB( + "O4tMT-OwghM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE5clearEv) +STUB("O4tvCPW+ezE", YGNodeStyleGetMinWidth) +STUB("O4uuDAmh9Jk", xmlGetDocEntity) +STUB("O4x1B7aXRYE", sceSystemServiceIsEyeToEyeDistanceAdjusted) +STUB("O50HlhgEXZE", _ZNK3JSC8Debugger30hasHandlerForExceptionCallbackEv) +STUB("O51Z4cnLYDk", _ZN9Inspector20InspectorTargetAgent13targetCreatedERNS_15InspectorTargetE) +STUB( + "O51iiM+JRHg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE21intrusive_ptr_add_refEPS7_) +STUB("O57F5ikhGxo", sceVideoOutSysIsUserStatusSystemDefault) +STUB("O58MRjxEdoI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEEC1ERKS7_) +STUB( + "O5AKzAwTiRU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEE11get_deleterEv) +STUB( + "O5CP-bkLNKw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "O5Hxd1kB4XI", + _ZN3JSC15WeakHandleOwner26isReachableFromOpaqueRootsENS_6HandleINS_7UnknownEEEPvRNS_11SlotVisitorEPPKc) +STUB("O5IwLWfx+s4", + _ZN7WebCore6Editor10insertTextERKN3WTF6StringEPNS_5EventENS_18TextEventInputTypeE) +STUB("O5NQ1vCKL2A", ures_getByKeyWithFallback) +STUB( + "O5O5H2p3Sh8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE8capacityEv) +STUB("O5OcbI7EiiQ", _ZNK3JSC10JSFunction23isHostFunctionNonInlineEv) +STUB("O5Q8hayVFxo", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEE11release_refEv) +STUB("O5QkjyiPM4c", _ZN3sce2npneERK20SceNpCommunicationIdRKNS0_8NpCommIdE) +STUB("O5SjRjMIHuw", _ZN3sce7Toolkit2NP2V29Challenge7Request21GetChallengeThumbnailD2Ev) +STUB("O5V7vqDFYp8", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament5EventEED2Ev) +STUB( + "O5VSsdG2oVo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEED1Ev) +STUB("O5W17USgl2A", JVM_GetClassDeclaredConstructors) +STUB("O5XvFuIJg4Y", _ZN7WebCore26ISOProtectionSchemeInfoBoxC2Ev) +STUB( + "O5foHMotRp8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEC1Ev) +STUB("O5iNqqoDzCo", mono_aot_Sce_Vsh_AppInstUtilWrapperplt) +STUB( + "O5uCFe7Q1ug", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEEdeEv) +STUB("O5x-G9Rqwx4", sceCamera2SetConfig) +STUB("O6+PZJivf3M", _ZN3sce7Toolkit2NP23EventInformationRequestC1Ev) +STUB("O620wuQYP-U", udat_setSymbols_67) +STUB("O6BYEzjncVc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEptEv) +STUB("O6FLa+Qpd8U", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE5clearEv) +STUB("O6IW1-Dwm-w", sceUserServiceGetAccessibilityZoomFollowFocus) +STUB("O6LEoHo2qSQ", _Atomic_fetch_and_8) +STUB( + "O6MnaPdLI2Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEED2Ev) +STUB("O6Qyk6FU3Wg", _ZN7CoreIPC15ArgumentDecoder6decodeERh) +STUB("O6bomYHZ7ps", _ZN3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsTouchResponseBodyD1Ev) +STUB("O6bxDsGmlvg", _ZN9Inspector22InspectorDebuggerAgent11didContinueEv) +STUB( + "O6dBS7RIyPw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEEaSERSA_) +STUB( + "O6gGVBE6UE4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("O6gKl8uvGyE", sched_getparam) +STUB("O6lWW7BbeuM", _ZN7WebCorelsERN3WTF10TextStreamENS_22AlphaPremultiplicationE) +STUB("O6mx-Cw0M2U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEEC2Ev) +STUB("O6o0SokhfKc", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi28ParameterToDeleteGameSessionC1ERS5_) +STUB( + "O6oMX2SGXI4", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUser12getaccountIdEv) +STUB( + "O6v6D+Oi2K4", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "O6vMYaoPsGA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEED1Ev) +STUB("O6yZtj-d5tI", _ZN3sce2Np9CppWebApi14SessionManager2V12ToD2Ev) +STUB("O7+e1z85zho", WKDictionaryIsMutable) +STUB( + "O7+v7DbC3Ug", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("O743CFnjeqU", _ZN3JSC16setNeverOptimizeEPNS_9ExecStateE) +STUB("O78qUKx7NuE", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku25getDisplayPlusUpsellPriceEv) +STUB( + "O7Dr8CsGATY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE8capacityEv) +STUB( + "O7Fa6a7xajk", + _ZNK3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionNonPsnPlayer6toJsonERNS_4Json5ValueEb) +STUB("O7Fdd+Oc-qQ", sceImeVshUpdateContext) +STUB("O7GtbAGB85A", __libunwind_Unwind_GetDataRelBase) +STUB( + "O7HZrYk+IOg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEEcvbEv) +STUB("O7LqfJ24JqM", _ZN9Inspector22PageFrontendDispatcher14loadEventFiredEd) +STUB("O7Qxy-AVyhY", + _ZN3sce2Np9CppWebApi11Matchmaking2V127ListUserTicketsResponseBodyC1EPNS1_6Common10LibContextE) +STUB("O7WlaO97OAs", _ZNK3WTF9MediaTime7isValidEv) +STUB("O7dIZQrwVFY", sceWebBrowserDialogOpenForPredeterminedContent) +STUB("O7i9LDSwWKY", _ZN7WebCore7JSRangeaSERKS0_) +STUB("O7ivIf9AIFI", sceNpManagerIntGetGameTitleTokenA) +STUB( + "O7lIAGERevo", + _ZN7WebCore24PerformanceLoggingClient35synchronousScrollingReasonsAsStringEN3WTF9OptionSetINS_26SynchronousScrollingReasonEEE) +STUB("O7mBiZ4ZHj0", mono_aot_System_Transactionsjit_code_end) +STUB( + "O7nXO7rF340", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEEaSERKSA_) +STUB("O7pLyzGq+Sk", mono_aot_Sce_Vsh_SysUtilWrapperjit_code_start) +STUB("O7svMQwjr+w", + _ZN7WebCore6LengthC1EON3WTF3RefINS_16CalculationValueENS1_13DumbPtrTraitsIS3_EEEE) +STUB( + "O7trcBs3d5g", + _ZN7WebCore21NetworkStorageSession29setAllCookiesToSameSiteStrictERKNS_17RegistrableDomainEON3WTF17CompletionHandlerIFvvEEE) +STUB("O7uYizNGoLY", _ZN3sce2Np9CppWebApi14SessionManager2V118MatchmakingForRead10setOfferIdEPKc) +STUB( + "O7wZyzcFn1Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEC1EPS8_) +STUB( + "O7wf199ua1Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEE11get_deleterEv) +STUB("O7zxyNnSDDA", _LDenorm) +STUB( + "O8-UUbni23w", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEptEv) +STUB( + "O80FKkO4ZmU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEC1Ev) +STUB("O80NrhUOPGY", sceNpCheckPremium) +STUB("O81B1G4VdKw", + _ZN7WebCore24RotateTransformOperationC2EddddNS_18TransformOperation13OperationTypeE) +STUB("O81S7lsv5Jo", mono_aot_Mono_Data_Sqlitejit_code_start) +STUB("O86rgZ2azfg", sceNpUtilGetFakeRateLimit) +STUB( + "O898AiUiwhQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEixEm) +STUB( + "O89hkjFXMic", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "O8C0IG2c5yo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEppEi) +STUB( + "O8FTnvJqCfE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEcvbEv) +STUB("O8Fk4w5MWss", sceNetCtlGetStateV6IpcInt) +STUB( + "O8IeOsMBTeE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEptEv) +STUB("O8JQTZNhP5g", _ZN7WebCore9HTMLNames9sizesAttrE) +STUB("O8ONJV3b8jg", sceUserServiceGetHmuZoom) +STUB("O8PA5Gz3ZTM", _ZN3sce7Toolkit2NP3TUS9Interface7setDataERNS1_21TusSetDataInputParamsEb) +STUB("O8PXKj+4L8Y", sceNpIpcUnregisterCallback) +STUB("O8S9GxUH2Eo", _ZNK7WebCore37BasicComponentTransferFilterOperationeqERKNS_15FilterOperationE) +STUB( + "O8UjNecdd2Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEppEv) +STUB("O8VzxabzOZg", + _ZThn24_N9Inspector22InspectorDebuggerAgent8didPauseEPN3JSC14JSGlobalObjectENS1_7JSValueES4_) +STUB( + "O8b6X94q764", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEE5resetEPS9_) +STUB("O8b7eEqHEmQ", + _ZThn16_N9Inspector22InspectorDebuggerAgent8didPauseERN3JSC9ExecStateENS1_7JSValueES4_) +STUB( + "O8cYulvUo5s", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEptEv) +STUB("O8f7wT29CrE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE5clearEv) +STUB( + "O8hkujPC5Zo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEC2ERKS8_) +STUB("O8pOpFkBxF4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEEeqERKS7_) +STUB( + "O9+cbledWa4", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfiles18unsetincludeFieldsEv) +STUB("O91VRI218wU", scePlayReadyCdmiGetMediaKeyCount) +STUB( + "O95ij+4uvh8", + _ZN7WebCore18JSHTMLInputElement6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_16HTMLInputElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB("O997laxY-Ys", sceFontStyleFrameSetScalePoint) +STUB("O9APctbRuKg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEED2Ev) +STUB( + "O9Bmj0up0Bw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEptEv) +STUB( + "O9EbgXzGG7Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEaSERS7_) +STUB("O9FEJnAiVaE", mono_aot_I18N_Westunbox_trampolines) +STUB("O9Ia6hjJA5w", _ZN3sce7Toolkit2NP2V24Core18CustomResponseDataC1ERKS4_) +STUB("O9KT9QCDr7A", _ZN3sce2Np9CppWebApi7Matches2V128RequestTemporaryMatchResultsD1Ev) +STUB( + "O9LkZ6d8ENQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("O9OAEFpktTg", _ZN7WebCore9HTMLNames5rtTagE) +STUB("O9RiaUMragE", umsg_close_67) +STUB("O9UVJLeLOos", mono_aot_Sce_Vsh_Np_AppLaunchLinkplt_end) +STUB("O9XPhYPJlcU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEE3getEv) +STUB("O9YsW44maCs", _ZN7WebCore17ResourceErrorBase7setTypeENS0_4TypeE) +STUB("O9atrqUK6DQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEE11release_refEv) +STUB("O9dQZAOtOAk", _ZN7WebCore4Path18ensurePlatformPathEv) +STUB("O9hSt82BLvI", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE3endEv) +STUB( + "O9jddgBJS3E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEC2EPS8_) +STUB("O9k0o6Iqejs", WKBundleNodeHandleGetHTMLInputElementAutoFillButtonType) +STUB("O9kQ8LYao1Q", Java_java_lang_StrictMath_IEEEremainder) +STUB("O9khDcH-4+g", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE8copyFromERKS7_) +STUB( + "O9oOxTnwe2I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE8copyFromERKS9_) +STUB("O9oxFoJ0v9M", SSL_load_error_strings) +STUB("O9ync3F-JVI", sceHttp2DeleteCookieBox) +STUB( + "OA1NHZAXX4I", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEEdeEv) +STUB("OA23XrcD9DA", Java_java_net_NetworkInterface_getByIndex0) +STUB("OA6FbORefbo", sceCompanionHttpdInitialize2) +STUB("OA7xpGDL8sY", sceKernelGetExtLibcHandle) +STUB("OA8f3KF9JsM", sceNpUtilGetNpTestPatch) +STUB("OADeCVcqoYg", ulist_addItemBeginList_67) +STUB("OADyYeWx-ec", mono_aot_ReactNative_Modules_Vsh_Gct_Telemetryjit_code_end) +STUB("OAE3YU396YQ", _FLogpoly) +STUB( + "OAEONWv8Smk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEED2Ev) +STUB("OAFgPnD3Mh0", _ZN3JSC22EdenGCActivityCallback9deathRateERNS_4HeapE) +STUB("OAFz3KoG-gA", u_strFromJavaModifiedUTF8WithSub) +STUB( + "OAIIfZsZ65E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEE7get_refEv) +STUB("OALd6SmF220", sceUserServiceSetGlsBroadcastChannel) +STUB( + "OALx+JV8WL0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEEptEv) +STUB("OANH5P9lV4I", sceUserServiceSetShareDailymotionRefreshToken) +STUB("OANLrQK9dXw", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEEcvbEv) +STUB("OANiyfEXH5w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119ChildActivityStatusEEC1EPS6_) +STUB( + "OAO2JTA4Sxs", + _ZN9Inspector20DOMBackendDispatcher4undoElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("OAVfIecKZM0", _ZN3sce7Toolkit2NP2V212ActivityFeed15PlayedWithStoryC2ERKS4_) +STUB("OAVwxuKdkFE", scePerfTracePmCreate) +STUB("OAWKIXxSRSc", _ZN7WebCore26IdentityTransformOperationD2Ev) +STUB("OAYlRRKyyMQ", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setSubtitleDefaultLang) +STUB("OAYoSP3cLdU", mono_aot_Sce_Vsh_Np_Pbtcmethod_addresses) +STUB( + "OAa5+zN8D4Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEE3getEv) +STUB( + "OAbGS40OuLw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEE3getEv) +STUB( + "OAcjWbWs-Vo", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12unsetString5Ev) +STUB("OAcoYqdGDmQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_17TitleCloudStorage2V19ConditionEEaSERKS7_) +STUB( + "OAgxlv1RTYg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE21intrusive_ptr_add_refEPS9_) +STUB("OAjyHghTAKM", _ZN7WebCore23JSHTMLOptionsCollection9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("OAmWq+OHSjw", scePthreadSetcancelstate) +STUB( + "OApuriXmD-Q", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEeqERKS9_) +STUB( + "OArDfi-caPc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEE21intrusive_ptr_add_refEPS7_) +STUB( + "OAyEQt9iVhY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEdeEv) +STUB( + "OB2teyVRfl4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "OB3MO5xc1TM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEED1Ev) +STUB("OB6sExtRBa4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredTeamsEED2Ev) +STUB( + "OB8CnjXkY08", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEE5resetEPS6_) +STUB( + "OB8QoElr-Oo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEC2Ev) +STUB("OBBXS-xziVU", mono_aot_System_IO_Compressionjit_code_start) +STUB( + "OBFGARdEiOM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEEaSERSA_) +STUB( + "OBO03ML-v58", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEEaSERKSA_) +STUB("OBPBTyAsP9I", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession6toJsonERNS_4Json5ValueEb) +STUB( + "OBSA+WqoUSU", + _ZN3sce2Np9CppWebApi14SessionManager2V133PlayerSessionMemberForReadFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_26PlayerSessionMemberForReadEEE) +STUB("OBTub+wi-xA", _ZN12video_parser18cMp4FFLHndlManager14getFF4DrefHndlEj) +STUB( + "OBZ1sSYEpww", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEE11release_refEv) +STUB("OBbhBuxmNpQ", _ZN7WebCore20LowPowerModeNotifierD1Ev) +STUB("OBe3lrnPD8A", + _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse15setGroupingTypeERKNS3_12GroupingTypeE) +STUB("OBwl-d2wkJ0", _ZN3JSC15WeakHandleOwner8finalizeENS_6HandleINS_7UnknownEEEPv) +STUB("OBxd2d6mdOA", + _ZN3JSC19reifyStaticAccessorERNS_2VMERKNS_14HashTableValueERNS_8JSObjectENS_12PropertyNameE) +STUB( + "OC-FfsdgaTw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE3endEv) +STUB("OC-U7LadwqI", _ZN7WebCore14ScrollableAreaD1Ev) +STUB("OC45k1rMqoI", rgctx_fetch_trampoline_mrgctx_54_p) +STUB( + "OC54FoBrmeo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEmmEv) +STUB( + "OC8XtioJX4A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEC2Ev) +STUB("OCBgDidMOrU", _ZN3WTF15base64URLDecodeEPKcjNS_33SignedOrUnsignedCharVectorAdapterE) +STUB( + "OCY4bj7foBU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEC2ERKS7_) +STUB("OCYLblWDOeY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEC2Ev) +STUB("OCYZhc6hRPc", _ZN10MsvUpdaterD1Ev) +STUB("OCbJ96N1utA", _Thrd_lt) +STUB( + "OCc4mHtouwU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEptEv) +STUB("OChQCtmV3uU", fuse_opt_add_opt_escaped) +STUB( + "OCkJ-6EhcuM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEC1Ev) +STUB( + "OCkMuKlsBy0", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26joinGameSessionAsSpectatorEiRKNS4_37ParameterToJoinGameSessionAsSpectatorERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_53PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("OCozl1ZtxRY", sceNpTusDeleteMultiSlotDataAsync) +STUB("OCteYQ6w5Ok", WKPageSetAddsVisitedLinks) +STUB("OCwIwUmjJDg", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE3endEv) +STUB( + "OD+3rKw9z6c", + _ZZSt9MakefacetISt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEESt8_LocinfoERT_T0_E3buf) +STUB( + "OD0hLeGfmHE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEeqERKS9_) +STUB( + "OD0u88wuP78", + _ZN7WebCore19ResourceRequestBase11setHTTPBodyEON3WTF6RefPtrINS_8FormDataENS1_13DumbPtrTraitsIS3_EEEE) +STUB("OD56nOZAtdU", _ZN3sce7Toolkit2NP9Interface4initERNS1_10ParametersEb) +STUB( + "OD5KclGpRVw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEmmEv) +STUB( + "ODA+H9x-RKc", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi44ParameterToPatchGameSessionsSearchAttributesD1Ev) +STUB("ODC4-mOiwl0", sceBgftServiceIntTerm) +STUB("ODEeJ1GfDtE", sceGnmDriverInternalRetrieveGnmInterface) +STUB("ODGONXcSmz4", ignore_handler_s) +STUB("ODIqV2uMnZA", mini_install_runtime_callbacks) +STUB("ODJK2sn9w4A", sceAvPlayerEnableStream) +STUB("ODLJ3fSm3i4", WKOriginDataManagerDeleteEntriesForOrigin) +STUB( + "ODPFaU1ZBa4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEE7get_refEv) +STUB( + "ODRrJdEIV94", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetInteger8Ev) +STUB( + "ODZh5zCuc9E", + _ZNK7WebCore14ScrollableArea26visibleContentRectInternalENS0_36VisibleContentRectIncludesScrollbarsENS0_26VisibleContentRectBehaviorE) +STUB("ODZt6citcrg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEmmEi) +STUB( + "ODcGVJflnh4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE21intrusive_ptr_sub_refEPS9_) +STUB("ODdwfVdueoE", _ZN7WebCore11MathMLNames13mlabeledtrTagE) +STUB( + "ODfllcIdaDg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEEptEv) +STUB( + "ODiqVDnmYZA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEC1ERKS8_) +STUB("ODlm57o3SdA", _ZNK7WebCore18PlatformTimeRanges3endEj) +STUB("ODnWjm8LPFI", _ZN4Manx11MediaPlayer6updateEd) +STUB("ODo1XDHSsx0", _ZNK9Inspector17BackendDispatcher17hasProtocolErrorsEv) +STUB("ODpFsJfkuvI", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead24unsetDisableSystemUiMenuEv) +STUB("ODqPXCqOhJs", _ZN23sceMetadataReaderWriter8MetadataaSERKS0_) +STUB("ODrGh3I0-20", _ZN12Mp4Retriever14processEsdsBoxEv) +STUB( + "ODw17xlWH-Y", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeaders15hasCacheControlEv) +STUB("ODx7UiCP0gQ", _ZN7WebCore16MIMETypeRegistry29preferredExtensionForMIMETypeERKN3WTF6StringE) +STUB( + "OE0xyFSKJPs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEEC1ERSA_) +STUB("OE2yx62x5DM", _ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEEC1Ev) +STUB("OE3Lt7ek-2Y", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE5beginEv) +STUB( + "OE69ZuEIeuY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "OE6wXzZm7jc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEEC2ERSA_) +STUB("OEEp03n6yzc", YGLogLevelToString) +STUB( + "OEIMtrcxbMQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEC2Ev) +STUB( + "OENSn9GL3x8", + _ZN3sce2Np9CppWebApi14SessionManager2V150PutPlayerSessionsSessionIdLeaderRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_43PutPlayerSessionsSessionIdLeaderRequestBodyEEE) +STUB( + "OEOS7OE3Tv4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEEC2ERKSA_) +STUB("OEP1yV1d0Kw", _ZN3JSC9JSPromise6rejectEPNS_14JSGlobalObjectEPNS_9ExceptionE) +STUB( + "OEQV21Lhkug", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEE3getEv) +STUB("OEbAPUz0hiw", _ZN3sce7Toolkit2NP2V26Trophy7Request6UnlockD2Ev) +STUB( + "OEbCNr9dISs", + _ZN9Inspector20CSSBackendDispatcher12setStyleTextElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("OEdu+lsMIho", _ZN7WebCore13GraphicsLayerC2ENS0_4TypeERNS_19GraphicsLayerClientE) +STUB( + "OEeagyRviF4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE3endEv) +STUB( + "OEgB9mWw-p8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEppEv) +STUB("OEiVDwLURmI", u_memrchr32) +STUB( + "OEjgKCmWoUg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE8capacityEv) +STUB( + "OEkhSmyxNVM", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer34getxPSNSESSIONMANAGERREQUESTORIGINEv) +STUB("OElVA+B5PAg", _ZN7WebCore14ResourceHandleD2Ev) +STUB("OEsO-6FT+04", sceAvSettingSet2dVrMode) +STUB("OEtF-8T3cN8", _ZN7WebCore12ISOWebVTTCueC1ERKN3WTF9MediaTimeES4_) +STUB("OEvLeDCM0iw", sceNpUniversalDataSystemIntDestroyHandle) +STUB("OEzYpcVNB5Q", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_15TrophyGroupInfoEED2Ev) +STUB("OEzZq+ThEio", sceTsGetSeekWindow) +STUB( + "OF2t+HeWA2c", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE4sizeEv) +STUB("OF394ni0C-c", sceAudioOut2ArbitrationInitialize) +STUB("OF6uR63q+Ss", WKFrameGetWebArchive) +STUB( + "OF7ffdNe4Dg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("OF8D1S5kgMw", sceKernelUnsetDipsw) +STUB( + "OF8URE0BZxI", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEEiRNS2_10LibContextEPT_m) +STUB("OFBPEpbqUIQ", Java_com_sony_gemstack_resources_ResourceManager_hasStream) +STUB( + "OFND5KqjwZQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEppEi) +STUB( + "OFPF1oCqN-E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEE5resetEPS8_) +STUB("OFTHvLr4nRQ", _ZN3sce7Toolkit2NP11TusVariableC2Eil) +STUB( + "OFUPL4Enbf8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE4sizeEv) +STUB( + "OFUSj7Ew6Sk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEeqERKS9_) +STUB( + "OFcE+RD7s6U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEEcvbEv) +STUB("OFhg9OV+--M", sceBgftServiceIntDebugPlayGoIsSetFreeZone) +STUB("OFiFmfsADas", sceNpUtilGetNpLanguageCode) +STUB( + "OFj7BPMNEVU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEED1Ev) +STUB( + "OG2iBQMguW4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEppEv) +STUB("OG2w7MzRXm0", JVM_InitProperties) +STUB("OG4RsDwLguo", munlock) +STUB( + "OG8CjKNXrj0", + _ZN3sce2Np9CppWebApi12Leaderboards2V130RecordScoreResponseBodyFactory6createEPNS1_6Common10LibContextEiiPNS5_12IntrusivePtrINS3_23RecordScoreResponseBodyEEE) +STUB("OG8xRaGIpqk", tcflow) +STUB("OGAnhdA1OMk", _ZN7WebCore23CoordinatedBackingStoreD0Ev) +STUB("OGAx4xe5WUY", _ZN3sce7Toolkit2NP2V212NetworkUtils12BandwithInfoC2Ev) +STUB( + "OGHdNqpeeu4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEC1Ev) +STUB( + "OGLV0ovqMyY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEEaSERKSA_) +STUB( + "OGOpn50MobE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEC2Ev) +STUB( + "OGOyvDWmMr0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEEcvbEv) +STUB( + "OGP3P+eQBCg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("OGPOVyvRKkw", _ZN7WebCore27DocumentTimelinesController17suspendAnimationsEv) +STUB("OGQkWY0JBkg", _ZN3JSC8Debugger6attachEPNS_14JSGlobalObjectE) +STUB("OGTJBwZ6-tA", unum_parse_67) +STUB( + "OGUd7eBqb1E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEE3getEv) +STUB("OGVdXU3E-xg", wprintf) +STUB( + "OGW4AoKB7Vk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEaSERKS7_) +STUB("OGY9U9yYKkM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEEC2Ev) +STUB("OGZSxjJTIxk", _ZN3sce7Toolkit2NP2V211SharedMedia7Request14GetScreenshots13MAX_PAGE_SIZEE) +STUB("OGbIAqBmjzw", WKDatabaseManagerSetClient) +STUB("OGcDdde1fY4", usearch_preceding_67) +STUB("OGkMxA47TfQ", uhash_find_67) +STUB( + "OGnz--d7ZT0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEplEm) +STUB("OGrbPHHcWHM", _ZN9Inspector21InspectorConsoleAgent12setHeapAgentEPNS_18InspectorHeapAgentE) +STUB( + "OGxhLorBKW8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB( + "OGy0iKPHKas", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEC2EPNS2_10LibContextE) +STUB("OGybVuPAhAY", reallocalign) +STUB("OH5zZpRwHFU", WKHitTestResultCopyAbsoluteLinkURL) +STUB( + "OH8nQp9GRRA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEmmEv) +STUB("OHAXsubMk70", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats14unsetBandwidthEv) +STUB("OHB8JMPwnRI", rgctx_fetch_trampoline_mrgctx_113_p) +STUB( + "OHBck1fligc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("OHCO6MMFvdQ", sceNpAppLaunchLink2IntAbortRequest) +STUB("OHGLV7ThG1A", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament5EventEEC2Ev) +STUB("OHKoGVZ7xKA", glDeleteQueries) +STUB("OHRe9fSuJmQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V116TaskAvailabilityEEeqERKS7_) +STUB( + "OHTMLBsN61s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "OHUBd0pt2wo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEE11release_refEv) +STUB( + "OHXy6NuoXro", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("OHYf869ide4", _ZN3sce7Toolkit2NP2V23TUS16FriendsVariables8deepCopyERKS4_) +STUB("OHbreFrJVPg", _ZN3sce7Toolkit2NP2V28Commerce8CategoryC2Ev) +STUB("OHgp1uE8P2c", cairo_transform) +STUB("OHhpUrKfgj8", _ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEEixEm) +STUB("OHjgoIInnmU", sceVisionManagerSetCallbackForUpdateCalibrateStereoCameraResult) +STUB("OHl4kz+OCws", sceFiosFHPreadvSync) +STUB("OHmFhMNp2go", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEEneERKS7_) +STUB("OHnnkrUcShM", sceVideoOutDriverTriggerEvent) +STUB( + "OHqBQHW8BbM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEC2EPS8_) +STUB("OHzTpeBWsEg", _g_sceLibcExitthread) +STUB("OI-UUz7zMzo", WKAddMockMediaDevice) +STUB("OI2GFS9ZyFQ", + _ZN3sce2Np9CppWebApi14SessionManager2V127PostGameSessionsRequestBody15getGameSessionsEv) +STUB("OI2Gl1qYpbY", WKPreferencesSetEditableLinkBehavior) +STUB( + "OI4j-lviwSM", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("OI5xij0logA", _ZN3sce2np8JsonBool3SetEb) +STUB("OI989Lb3WK0", _ZTSSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE) +STUB("OIBi9qYv-AQ", _ZN3JSC8Bindings13RuntimeObject11fieldGetterEPNS_9ExecStateElNS_12PropertyNameE) +STUB( + "OIFuIisFJuY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEC1EPKS8_) +STUB("OIGbkgGOu6E", sceFiosIOFilterPsarcDearchiver) +STUB("OIIm19xu+NM", sceGameLiveStreamingGetProgramInfo) +STUB("OINC0X9HGBY", sceFontGetCharGlyphCode) +STUB("OITH4TZEdRY", sceApplicationLocalProcessKill2) +STUB("OIWOB9zHruU", _ZN4Manx8ImeEventC2ENS0_12ImeEventTypeEPKcji) +STUB("OIXi8Pimjbc", X509_STORE_CTX_new) +STUB( + "OIY98SOu5WI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEdeEv) +STUB( + "OId0RT2ttQQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEEC1ERSA_) +STUB("OIdCMA7vGHA", _ZN3sce2np4NpIdC2Ev) +STUB( + "OIeJLiTg7p4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "OIjaPU6DAkc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEneERKS9_) +STUB("OIkxYVnWgAE", _ZN7WebCore23standardUserAgentForURLERKNS_3URLE) +STUB( + "OIodTzCXFL8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEE3getEv) +STUB("OIp5AZlyjEc", _ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetailD2Ev) +STUB( + "OIvAnAUdbQ8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("OIypNkAP7ik", _ZN7WebCore16BlobRegistryImpl23registerBlobURLForSliceERKN3WTF3URLES4_xx) +STUB("OJ+13SCOxgI", u_isULowercase) +STUB( + "OJ9AB-wj8aI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE6resizeEj) +STUB( + "OJAjt1Oome0", + _ZN3JSC23JSModuleNamespaceObject14finishCreationEPNS_9ExecStateEPNS_14JSGlobalObjectEPNS_20AbstractModuleRecordEON3WTF6VectorISt4pairINS_10IdentifierENS5_10ResolutionEELm0ENS7_15CrashOnOverflowELm16EEE) +STUB("OJDd75NGcWI", JVM_GetMethodIxModifiers) +STUB( + "OJG1uNGKaFg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEED2Ev) +STUB("OJHwwDiTNqk", mono_get_exception_reflection_type_load) +STUB( + "OJKHfmDHwvA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEEC1Ev) +STUB("OJPTonqdg0I", _ZN3sce4Json6ObjectC1Ev) +STUB("OJPn-YR1bow", _ZTIPv) +STUB("OJSHpgwtpXs", _ZN3sce2Np9CppWebApi7Matches2V119CreateMatchResponseD1Ev) +STUB( + "OJXwc54M94o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE6resizeEj) +STUB( + "OJb76NLmCsQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEaSERKS9_) +STUB( + "OJd0bIxwg0E", + _ZN7WebCore9FrameView32computeUpdatedLayoutViewportRectERKNS_10LayoutRectES3_RKNS_10LayoutSizeES3_S6_RKNS_11LayoutPointES9_NS0_24LayoutViewportConstraintE) +STUB("OJdF2YETwS0", _ZN3sce2np13JsonDocParser12onStartArrayEjj) +STUB("OJf3vCckPAM", sceAmprAmmSubmitCommandBuffer2) +STUB("OJggewsMVbM", _ZN3NTF3URLD1Ev) +STUB( + "OJhADckiQw4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEEcvbEv) +STUB("OJiHNjSOguc", curl_strnequal) +STUB("OJjm-QOIHlI", sceLibcMspaceMalloc) +STUB("OJnJ+0Hi9S0", + _ZN7WebCore27PlatformMediaSessionManager12restrictionsENS_20PlatformMediaSession9MediaTypeE) +STUB("OJtPQIu4A14", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12unsetString7Ev) +STUB( + "OJuFV3IDHZI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi25setVariableWithConditionsEiRKNS4_36ParameterToSetVariableWithConditionsERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_8VariableEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("OJxVHWNnMFA", JVM_ResumeThread) +STUB( + "OK+Ggpve7B0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEEdeEv) +STUB("OK4Ot0ue7J0", _ZN3sce4Json5ValueC2Eb) +STUB( + "OK5wx6DGH-Y", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("OK7SJat0qwI", _Z20WTFCrashWithInfoImpliPKcS0_imm) +STUB("OK9v6q9l8j0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEC2Ev) +STUB( + "OKGOhJOD1OM", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession9setMemberERKNS1_6Common12IntrusivePtrINS3_32RequestPlayerSessionMemberPlayerEEE) +STUB( + "OKHuNpLYtnw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEE5resetEPS6_) +STUB( + "OKI1yDfb54g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEEdeEv) +STUB("OKIt8T8O20c", ucptrie_close_67) +STUB("OKJEUM6XeNo", seed48.par0) +STUB( + "OKJttlkSxy4", + _ZN3sce2Np9CppWebApi14SessionManager2V160PostGameSessionsSessionIdMemberSpectatorsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_53PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEE) +STUB("OKLpKlnQmCM", scePerfTraceGetInfo) +STUB( + "OKQ5O1eOqJI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE5beginEv) +STUB( + "OKRE+kY1obk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEptEv) +STUB("OKRKItW2uYo", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_skipToNextLinkPoint) +STUB( + "OKSHsaGDqbg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEaSERKS9_) +STUB("OKSitHINiig", _ZN7WebCore20ResourceResponseBaseC2ERKNS_3URLERKN3WTF6StringExS7_) +STUB( + "OKUO-7+ScCo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEptEv) +STUB("OKX5-OHw1rE", sceCesUtf32leToSbc) +STUB("OKY9HFtnEWQ", _ZN3sce7Toolkit2NP2V29Messaging16GameDataMessages5resetEv) +STUB("OKaYwlwKZG4", _ZN7WebCore15JSFetchResponseD1Ev) +STUB("OKcQnF14KGA", _ZN11GvMp4Parser6Common11Utf8ToUtf16EPKcPSbIwSt11char_traitsIwESaIwEE) +STUB("OKgwVQ7WdH8", ulistfmt_formatStringsToResult_67) +STUB( + "OKlgScW51uQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEE7add_refEv) +STUB("OKmed1IGJkI", mono_aot_Sce_Vsh_Np_Snsplt) +STUB( + "OKmoRwuiKE4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEEC2ERSA_) +STUB("OKrc5AyAqtM", _ZNK7WebCore20ResourceResponseBase29cacheControlContainsImmutableEv) +STUB("OKuCgQvFoW0", _ZN3sce2Np9CppWebApi15Personalization2V15ErrorD1Ev) +STUB("OL2CJ2idmhk", scePadVrControllerGetTriggerEffectState) +STUB("OL6P62kBuqU", EC_GROUP_get_degree) +STUB( + "OL6gFp2-hVc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEED1Ev) +STUB("OL7DU1kkm+4", _ZN3sce2np9NpTitleIdC2Ev) +STUB("OLC0QBXKywQ", _ZN3JSC8DebuggerD0Ev) +STUB( + "OLEHVEWGiag", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEEC1ERKSA_) +STUB("OLJeoMFzvEA", _ZN3JSC7JSProxy17preventExtensionsEPNS_8JSObjectEPNS_9ExecStateE) +STUB("OLMJwrBsDng", _ZN7WebCore20ResourceResponseBase11setMimeTypeERKN3WTF6StringE) +STUB("OLNWcsoTaHs", + _ZSt9use_facetISt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale) +STUB("OLgCzPhsacA", _ZNK3sce2Np9CppWebApi11UserProfile2V114PersonalDetail14getDisplayNameEv) +STUB( + "OLhOngz1axA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "OLjKj51DcVw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEplEm) +STUB("OLjWAHqXXt4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEE5resetEPS6_) +STUB("OLlUEP0Jdzs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEE7add_refEv) +STUB( + "OLlitVFUdTI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEneERKS9_) +STUB("OLmxlvBbU2I", mono_aot_Sce_Vsh_Lxjit_code_start) +STUB( + "OLrQ2pdASmA", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEEiRNS2_10LibContextEPT_m) +STUB("OLrc+SojAec", _ZNK7WebCore17CSSPrimitiveValue13getFloatValueEt) +STUB( + "OLskRHlJjUY", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB( + "OLyyC8aBMwg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEC2EPS8_) +STUB("OM0FnA7Tldk", _ZNSt10moneypunctIwLb1EED1Ev) +STUB("OM8XPyh1Dc4", _ZN3JSC22EdenGCActivityCallbackD0Ev) +STUB("OM8mhVVwEzU", sceCesUtf16leToEucCn) +STUB("OMAYDli-mdA", + _ZNK7WebCore6Quirks70shouldSuppressAutocorrectionAndAutocaptializationInHiddenEditableAreasEv) +STUB("OMDRKKAZ8I4", sceKernelDebugRaiseException) +STUB( + "OMHxHUH+8mU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE3endEv) +STUB( + "OMMTRQ0fOrs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEmmEv) +STUB("OMRXFxNyGBk", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_15CategoryInfoSubENS2_IS4_EEEEC1Ev) +STUB("OMS9LlcrvBo", sceCameraClose) +STUB("OMSlY-esvcE", _ZNSt9basic_iosIwSt11char_traitsIwEEC1EPSt15basic_streambufIwS1_E) +STUB( + "OMUAJ2b1d-U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEC2EPKS8_) +STUB("OMYRTU0uc4w", sceRudpTerminate) +STUB( + "OMZHALLYMFk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEE11get_deleterEv) +STUB("OMbBieZ6emQ", sceVideoCoreGetCanvasHandle) +STUB( + "OMdlJxQzRUY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE3endEv) +STUB("OMmHcRMQOAc", _ZN7WebCore11DisplayList14ConcatenateCTMD2Ev) +STUB( + "OMoBM+P8C+o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEE7get_refEv) +STUB("OMpbbxaX92o", jpeg_open_backing_store) +STUB("OMq2WoEtX+w", + _ZN3sce2Np9CppWebApi14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyD1Ev) +STUB( + "OMqua-QAr6E", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEneERKS9_) +STUB( + "OMyLOGiOJvU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEEaSERKSA_) +STUB("ON26vhraMMU", glLinkProgram) +STUB("ON3UHfeC58A", _ZN3sce2Np9CppWebApi6Common6VectorIdE5eraseENS2_13ConstIteratorIdEERS6_) +STUB( + "ON3xVa6gu6E", + _ZN7WebCore23CoordinatedImageBacking6createERNS0_6ClientEON3WTF3RefINS_5ImageENS3_13DumbPtrTraitsIS5_EEEE) +STUB("ON5571M4250", _ZN7WebCore13JSHTMLElement6s_infoE) +STUB("ON7Sf5XEMmI", sceNpInGameMessageSendData) +STUB("ON9Y68DGNYo", sceClHttpReadData) +STUB("ONHCFGvD0vw", _ZN7WebCore12TextIteratorD2Ev) +STUB("ONIHa3g3Qas", _ZN7WebCore12JSAudioTrack6s_infoE) +STUB("ONIhJ+wHKWI", _ZN7WebCore21MediaRecorderProvidernaEm) +STUB("ONKRGoUeF+o", __asan_load8) +STUB( + "ONLVhUaoSKA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEE3getEv) +STUB("ONNjULAZbZo", _ZN3WTF6String8truncateEj) +STUB( + "ONOoiducsJo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEE3getEv) +STUB("ONP3yMmi1bI", + _ZN7WebCore22throwArgumentTypeErrorERN3JSC9ExecStateERNS0_10ThrowScopeEjPKcS6_S6_S6_) +STUB("ONSgZ31uw40", _ZN9Inspector22InspectorDebuggerAgent17setOverlayMessageERN3WTF6StringEPKS2_) +STUB("ONSpkBe0x1E", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119SubtaskAvailabilityEEneERKS7_) +STUB("ONSxopNmk90", _ZN15AbstractStorage14FacebookFolder6RemoveEb) +STUB("ONT8As5R1ug", _ZNK3sce4Json5Value8getArrayEv) +STUB( + "ONTpKsB5Z70", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12string7IsSetEv) +STUB("ONUP+hSzhqw", WKPreferencesGetLocalStorageEnabled) +STUB( + "ONXI13HkVkY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEC2EPS8_) +STUB("ONXrD9F8ExY", _ZN7WebCore11MediaPlayer10cancelLoadEv) +STUB( + "ONYmhf4+VGs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE5emptyEv) +STUB("ONaXqeUPwdE", _ZN4Manx11MediaPlayerC2EPNS_17MediaPlayerClientE) +STUB( + "ONfOCHSHobs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEixEm) +STUB("ONgEITYl9mA", _ZN3sce2npneERKNS0_9NpTitleIdERK12SceNpTitleId) +STUB("ONmSYoJQgIE", sceNetApctlGetResult) +STUB( + "ONpnSWBv3pA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("ONqfnVimxZU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEED1Ev) +STUB( + "ONqoxFbzAHY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEC1ERKS7_) +STUB("ONyH3TlLDx0", sceHidControlConnectHandle) +STUB("OO3V65nvIVw", sceValidationGpuInitContext) +STUB("OO5BYpLFhps", WKContextAccessibilityEnabled) +STUB("OO5r3tJuV1I", _ZNK3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate13teamNameIsSetEv) +STUB( + "OO6K8x0dJcQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("OO6LsNticAw", _ZN3sce7Toolkit2NP2V28Matching12Notification14NewRoomMessageD2Ev) +STUB( + "OO9ChkFWJjg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("OOC9ufkAGWE", _ZN3WTF7RunLoop4mainEv) +STUB("OOF0YO73GTA", sceVideoOutSysSetDimmer) +STUB("OOFxrMY+mfI", sceVideoRecordingStop) +STUB("OOG8rWDHURY", u_strToLower_59) +STUB("OOGKeH9U85M", _ZNK7WebCore24RotateTransformOperation1zEv) +STUB("OOI5nqLihBw", glGetStringi) +STUB( + "OOLhkccWFKI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEC1EPS6_PNS2_10LibContextE) +STUB("OONgpXDsjFI", _sceLibcFree) +STUB("OOQwdJebDxQ", _ZNK7WebCore12ChromeClient22layerTreeStateIsFrozenEv) +STUB("OOTZze9igVc", _ZN3PAL8KillRing7prependERKN3WTF6StringE) +STUB("OOY9+ObfKec", sceNpWebApi2ReadData) +STUB("OOo4Dxqj8wQ", _ZN7WebCore8Document18registerCollectionERNS_14HTMLCollectionE) +STUB("OOrLKB0bSDs", sceSharePlayGetCurrentConnectionInfo) +STUB("OOuvHKTu4Oc", sceFiosDirectoryExistsSync) +STUB("OOyJZM20FTk", _ZN3sce7Toolkit2NP2V212ActivityFeed13ButtonCaptionC2Ev) +STUB("OP+iChnwfIE", _ZN7WebCore6ISOBoxD1Ev) +STUB("OP-5v92RXRc", _ZN3WTF6Thread31setCurrentThreadIsUserInitiatedEi) +STUB("OP-VhFdtkmo", CERT_isRootCertificate) +STUB("OP-xJR9Y+G0", WKNotificationCopyTag) +STUB("OP361Y8dT4k", mono_aot_Sce_Vsh_PsnUtilplt_end) +STUB("OP6cnN8qBtQ", _ZN3JSC2VM18ensureHeapProfilerEv) +STUB("OP9D9HFijUA", u_isalpha_67) +STUB("OPGM9euoiqg", _ZNK3sce2np13JsonArrayImpl8freeItemEPNS1_4ItemE) +STUB( + "OPHEa9e6pw4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEEC1ERKS9_) +STUB( + "OPKuqOIybQE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE5beginEv) +STUB("OPMu8xYvBSY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE5beginEv) +STUB("OPN9PVTH72w", _ZN7WebCore28convertToIntegerEnforceRangeIsEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB( + "OPTFqFpsXSI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "OPUJwJ2nvTQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEneERKS9_) +STUB("OPZlEmsrHyI", _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse10tasksIsSetEv) +STUB("OPbaECtQyog", mono_create_jit_trampoline) +STUB( + "OPk+VfpeCek", + _ZN3JSC7JSProxy25getStructurePropertyNamesEPNS_8JSObjectEPNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("OPlwVA8-vjg", _ZN3JSC7Symbols17concatPrivateNameE) +STUB( + "OPmYZBzb9dw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEC2EPS8_) +STUB( + "OPsw5wVw9Zc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEE11get_deleterEv) +STUB("OPz4fh0MpFo", rgctx_fetch_trampoline_rgctx_62) +STUB( + "OQ0tq+dXke0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEcvbEv) +STUB( + "OQ3JLfYJboE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE8pushBackERKS8_) +STUB( + "OQ4XzD5c9b8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEC2EPS8_) +STUB("OQBu00sK6sc", _ZNK3WTF6String23convertToASCIILowercaseEv) +STUB( + "OQEWvnn7t58", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEneERKS9_) +STUB( + "OQGMOWG8esI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEC2EPS6_PNS2_10LibContextE) +STUB("OQJl4-I14Mk", _ZNK7WebCore15AffineTransform10isIdentityEv) +STUB( + "OQJnJARMoss", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEC1ERKS7_) +STUB("OQK15N2qqpc", _ZN7WebCore12SharedBufferC2EPKcm) +STUB( + "OQKn4GFbKPQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEmmEv) +STUB( + "OQOP+esEiNo", + _ZN9Inspector17ScriptDebugServer29dispatchBreakpointActionProbeEPN3JSC9ExecStateERKNS_22ScriptBreakpointActionENS1_7JSValueE) +STUB("OQPdKUpXO+U", sceCesRefersUcsProfileGbT1988) +STUB("OQTgEXyihvA", sceAgcSetAmmSemaphoreMemory) +STUB("OQTweRLgFr8", sceNpEventGetCurrentNetworkTick) +STUB("OQYQvowtC6I", WKPageAreScrollbarAnimationsSuppressed) +STUB("OQiPXR6gfj0", _ZN3sce2np4Cond6SignalEv) +STUB( + "OQl-6kqIdGo", + _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody30exclusiveLeaderPrivilegesIsSetEv) +STUB("OQorbmM+NbA", _ZNSt14numeric_limitsItE8digits10E) +STUB( + "OQqG5f0CAzM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEC2Ev) +STUB("OQqeOhtQfdI", mono_stack_walk) +STUB("OQuRjEC8eeY", _ZNK7WebCore7Element14getAttributeNSERKN3WTF12AtomicStringES4_) +STUB("OR-4zyIi2aE", + _ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_bRSt8ios_basecRKSs) +STUB("OR0yR3we3RQ", _ZN7WebCore8SVGNames15font_familyAttrE) +STUB( + "OR3KT0hF+bc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEmmEi) +STUB( + "OR5JE8-tTvM", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeaders15getCacheControlEv) +STUB("OR6-CZL+oOw", glGenTextures) +STUB( + "OR7ZHDTYqpE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEE7get_refEv) +STUB("ORAHeHtYAw4", GCC_except_table401) +STUB( + "ORBN0+ksBjI", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEEiRNS2_10LibContextEPT_m) +STUB( + "OREAuHNsB9Y", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("ORFGeoriOFQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEdeEv) +STUB( + "ORKc2IPjinw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEaSERKS9_) +STUB( + "ORM7PgDMMns", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEE7add_refEv) +STUB( + "ORPNNyE8seM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "ORPOtRG66-o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEE3getEv) +STUB( + "ORRZE9zH9bI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEppEv) +STUB("ORRr3FoycIg", _ZNK7WebCore24MatrixTransformOperation27isAffectedByTransformOriginEv) +STUB("ORWsxIbk4TE", sceAgcCondExecPatchSetEnd) +STUB("ORb5KNUuMrQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEptEv) +STUB( + "OResfE1S0wE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEmmEv) +STUB("ORiU0t9ZnwE", sceDepthHandCandidateTrackerGetResult) +STUB( + "ORkLU1jPhII", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEEC2ERKSA_) +STUB( + "ORnvYg3vDCI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEptEv) +STUB("ORp6k8F2PdA", __strtord) +STUB("ORspsWDXPps", sceShareSetContentParamForApplicationTitle) +STUB("ORtxNAsujC8", JSObjectGetGlobalContext) +STUB("ORvMIrGbh5s", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredUsersEE5resetEv) +STUB("ORxxAa6qnAA", sceVorbisDecSetDecodePriority) +STUB("ORyiaqjd0AE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEEC1Ev) +STUB( + "ORzX357TrNs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEE3getEv) +STUB( + "OS0yrUpOnSE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEaSERKSA_) +STUB("OS2EuVvqy6g", WKPageLookUpFrameFromHandle) +STUB("OS2jyRXbgfM", _ZNK3sce2Np9CppWebApi13InGameCatalog2V513ContentRating8urlIsSetEv) +STUB("OS67zhti6KQ", WKPageGroupRemoveUserContentFilter) +STUB("OS7yY7NTTok", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEixEm) +STUB( + "OS8oVrYQ2ic", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEneERKS9_) +STUB( + "OSEDFI-QW+Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEEaSERKSA_) +STUB("OSIc8B70DD8", JVM_GetClassFieldsCount) +STUB( + "OSNDPX2dzX4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("OSQfwLqtTkE", _ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriendsC1ERS5_) +STUB("OSb9z7LMyzo", __asan_report_store8) +STUB("OSe-+quaoLc", JVM_GetClassConstantPool) +STUB("OSeukUernt4", _ZN7WebCore9HTMLNames18aria_multilineAttrE) +STUB( + "OSfQVha6XpI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("OSpgVy3hgZI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence8PresenceEED2Ev) +STUB("OSqOny+kPrA", sceCompositorSetCursorImageAddress) +STUB( + "OSyVhg41vCA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEEaSERSA_) +STUB("OT1pwqHrDKg", _ZN3PAL12CryptoDigestD1Ev) +STUB("OTA3SrTEtog", sceDataTransferTargetRequestGetDeviceInfoApplication) +STUB("OTEIKEEfBOQ", _ZN3sce2np10JsonNumberC1EP14SceNpAllocator) +STUB( + "OTQRxO5GP0o", + _ZN3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResults20setTeamMemberResultsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_23RequestTeamMemberResultEEEEE) +STUB( + "OTSPzyE6VTQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE5startEPNS2_10LibContextE) +STUB("OTUgSuFXpNE", _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeIPcPvEE9constructEPS6_RKS6_) +STUB("OTYijt1nJSg", _ZN7WebCore13QualifiedName17QualifiedNameImplD1Ev) +STUB( + "OTazomxzCAE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEC2EPS7_PFvS9_EPNS2_10LibContextE) +STUB("OTb0Mg+1i1k", sceImeCheckUpdateTextInfo) +STUB("OTb0kHrf1pE", scePthreadSingle) +STUB("OTilStjd9L8", sceNpSessionSignalingGetLocalNetInfo) +STUB("OTjiNjxPQDQ", _ZTVN7WebCore11DisplayList10StrokePathE) +STUB( + "OTnkAIZMwPI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE21intrusive_ptr_add_refEPSA_) +STUB("OTxzGv91HD8", _ZN3JSC10callSetterEPNS_9ExecStateENS_7JSValueES2_S2_NS_8ECMAModeE) +STUB("OU1YgSmh-5c", _ZN3JSC8JSObject4sealERNS_2VME) +STUB("OU2YuBjf2i8", sceDataTransferRequestGetSavedataInfoPS4) +STUB( + "OU4yRqcxCmc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEaSERKS8_) +STUB( + "OUCa6OZ6r0o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEppEi) +STUB("OUDdcf1tv80", _ZN3sce3Xml11InitializerD1Ev) +STUB( + "OUEqufjwyZE", + _ZN3sce2Np9CppWebApi14SessionManager2V147PutPlayerSessionsNonPsnLeaderRequestBodyFactory7destroyEPNS3_40PutPlayerSessionsNonPsnLeaderRequestBodyE) +STUB("OUFEt0Tk5NU", JVM_DTraceDispose) +STUB( + "OUJrl8GTivU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB( + "OUKmWdIEgOM", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities26GetUsersActivitiesResponse8setUsersERKNS1_6Common6VectorINS6_12IntrusivePtrINS4_14UserActivitiesEEEEE) +STUB("OULgIo1zAsA", sceUsbdUnrefDevice) +STUB("OUMr1+NpJU8", SwCtrlSinkCancel) +STUB("OUNAeEXjlm4", _ZN7WebCore3URL7setPathERKN3WTF6StringE) +STUB( + "OUWIVEeqrwY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("OUWXJecX9ag", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEEC2EPKS6_) +STUB("OUX-dGMRopg", mono_get_exception_divide_by_zero) +STUB("OUYYl+QEzZc", sceDebugGetProcessList) +STUB( + "OUZOpzb8yY0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("OUfK6H-mZ8Y", _ZN7WebCore9HTMLNames27onwebkitwillrevealrightAttrE) +STUB( + "OUguF+rU3ww", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEppEi) +STUB("OUrM7JZcRSg", sceMbusUnregisterDriver) +STUB("OUsSUrUr+ek", rgctx_fetch_trampoline_rgctx_96) +STUB( + "OUte3Yii6sU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEED2Ev) +STUB( + "OUuIQ52apko", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE5abortEv) +STUB( + "OV+MKKnbEYM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEC1ERS7_) +STUB( + "OV1allPlgHI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEaSERKS9_) +STUB("OV2vAddDaa4", _ZN7WebCore9HTMLNames8inputTagE) +STUB( + "OV9e1LI0F5o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEED2Ev) +STUB("OVAMxV7CoRE", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15CategoryInfoSubEE8allocateEmPKv) +STUB("OVD8IJm1crQ", _ZN7WebCore4Node6removeEv) +STUB( + "OVEogOT8jYU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEppEi) +STUB("OVEwfzP5CHQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEEneERKS7_) +STUB( + "OVG39sQqW8M", + _ZN3sce2Np9CppWebApi14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBody8fromJsonERKNS_4Json5ValueE) +STUB( + "OVGUYIRZI9U", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody19getLeaderPrivilegesEv) +STUB("OVH5Rc8SZ0U", _ZNK7WebCore14SecurityOrigin14isSameOriginAsERKS0_) +STUB("OVIZEj4pco4", rgctx_fetch_trampoline_mrgctx_14) +STUB( + "OVJ0zh2p+o0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE3endEv) +STUB( + "OVM1X4xwX0g", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13boolean7IsSetEv) +STUB("OVNpYTRqN74", sceSocialScreenTerminate) +STUB("OVQXcjKPf8M", _ZNK9Inspector22RemoteInspectionTarget26automaticInspectionAllowedEv) +STUB("OVT027YDip0", _ZTVN9Inspector28PageBackendDispatcherHandlerE) +STUB("OVV379uPphQ", mini_free_jit_domain_info) +STUB("OVWIH7kpWNA", _ZN3WTF10TextStreamlsEx) +STUB("OVaGBwQZ378", sceMusicCoreServerSetAutoPlay) +STUB("OVdVBcejvmQ", sceUserServiceGetRegisteredHomeUserIdList) +STUB("OVjZSfT7QFM", _ZN9Inspector22RemoteInspectionTarget13setIndicatingEb) +STUB( + "OVjshbGbt7g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE3endEv) +STUB("OVkYHR+3l+o", _ZN7WebCore10FileHandleC2ERKN3WTF6StringENS_10FileSystem12FileOpenModeE) +STUB("OVnGRNRkT+k", tzone) +STUB("OVqW4uElSrc", _FXp_invx) +STUB( + "OVsvmF7lYPQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEC1Ev) +STUB("OVths0xGfho", sceAvPlayerSetLooping) +STUB("OVuwx4R7Rxc", _ZN3PAL8KillRing16startNewSequenceEv) +STUB( + "OVzup88jB1w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEED2Ev) +STUB( + "OW0SLrs6odM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE8pushBackERKS8_) +STUB("OWAU-hYF2ZU", _ZN3JSC9CallFrame13describeFrameEv) +STUB("OWCJUmrWH1g", sceContentExportFromFile) +STUB("OWJ6aemCVZE", _ZN7WebCore9HTMLNames7forAttrE) +STUB( + "OWJxZwlgEnU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE8capacityEv) +STUB("OWKvDJfD4M4", _ZNKSt9basic_iosIwSt11char_traitsIwEE6narrowEwc) +STUB( + "OWNFbcaOHIk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEEC1EPNS2_10LibContextE) +STUB( + "OWO5cpNw3NA", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERb) +STUB( + "OWQoxid8WNw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEC2ERKS7_) +STUB("OWQwWpOwPKI", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead13setMaxPlayersERKi) +STUB("OWU6H65+LLk", sceCompositorSetAgcContextCommand) +STUB("OWW1BedCjHY", uprv_ebcdictolower_67) +STUB( + "OWYpiV98zto", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEneERKS9_) +STUB("OWZ3ZLkgye8", __nesf2) +STUB("OWbX4UakOPI", _ZN7WebCore11HistoryItemC2ERKN3WTF6StringES4_) +STUB("OWf8hAqC1sk", GCC_except_table169) +STUB( + "OWgBI2ZiSLg", + _ZNK7WebCore19InspectorController12getHighlightERNS_9HighlightENS_16InspectorOverlay16CoordinateSystemE) +STUB( + "OWivQHvEblw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEppEi) +STUB( + "OWjFecPjeZE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEppEv) +STUB("OWnw-Bc1+ZM", _ZN7WebCore16g_commonVMOrNullE) +STUB("OWpK2Dj6-R8", + _ZN7WebCore26MessagePortChannelRegistry25messagePortChannelCreatedERNS_18MessagePortChannelE) +STUB("OWpkJFrvEfw", rgctx_fetch_trampoline_mrgctx_6) +STUB( + "OWs1NndUOhY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEE7get_refEv) +STUB("OX-s5D0nKW8", _ZN9Inspector27InspectorFrontendDispatcherdaEPv) +STUB( + "OX0YVIAHayc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEEC1Ev) +STUB( + "OX6ahuhWTJs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE10setContextEPNS2_10LibContextE) +STUB( + "OX7q73zKlP4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEC2Ev) +STUB( + "OX8lJKYcFQo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEED2Ev) +STUB( + "OX9SKcSFJQY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("OX9wtyjVAJY", sceKernelGetBudget) +STUB("OXBVYy6NRIM", _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScoreC2Ev) +STUB( + "OXBwnfmtAfY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("OXDc0KCnUhs", sceAgcGetStaticBuffer) +STUB( + "OXN9DImnnTs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEC1Ev) +STUB("OXUBJTOLBeI", + _ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForRead16getNonPsnPlayersEv) +STUB("OXXX4mUk3uk", sceNetConnect) +STUB( + "OXYxOamy2BI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEC1EPS6_PNS2_10LibContextE) +STUB("OXc1BksfEIg", _ZNK4IPMI6Server6Config29estimateTempWorkingMemorySizeEv) +STUB( + "OXcoFZ9XlCY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEmmEv) +STUB("OXdFEkUtslc", _ZN7WebCore21PageOverlayController26didChangeDeviceScaleFactorEv) +STUB( + "OXgCregq1hs", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Runtime13ObjectPreview7SubtypeEEESt8optionalIT_ERKN3WTF6StringE) +STUB( + "OXhOvTi+Rgc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEppEi) +STUB("OXhWQp2ZA9s", scePlayReadyBufferFree) +STUB("OXkQU0s4pB8", _ZThn96_N7WebCore18HTMLMarqueeElement4stopEv) +STUB("OXkzGA9WqVw", _ZTSPm) +STUB("OXmauLdQ8kY", atan) +STUB( + "OXnJB4a2d+I", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("OXwThjrwg3Q", mono_aot_I18N_Westplt) +STUB( + "OXxr80Qn3Uc", + _ZN3WTF12base64DecodeERKNS_6VectorIcLm0ENS_15CrashOnOverflowELm16EEENS_33SignedOrUnsignedCharVectorAdapterEj) +STUB( + "OXztBgvneTc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEC1Ev) +STUB( + "OY0nekZqpkA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE5beginEv) +STUB( + "OY1qo8qaeos", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE8pushBackERKS8_) +STUB( + "OY2gkH79Tpc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("OY3FZCTqNGM", _ZN7WebCore12GCController19deleteAllLinkedCodeEN3JSC19DeleteAllCodeEffortE) +STUB("OY45Lg9RoUA", _ZN3JSC7Symbols28allocateInt8ArrayPrivateNameE) +STUB( + "OY5mqEBxP+8", + _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8get_dateES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm) +STUB("OY8v8WDzn3s", sceFiosFileExists) +STUB("OYBiWgeGpPo", sceAgcSdmaClose) +STUB( + "OYCZHcK+hDc", + _ZN9Inspector21HeapBackendDispatcher13startTrackingElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "OYDhup-hRsQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEC1EPS8_) +STUB( + "OYEb-9hIH+o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("OYHAbO09+pw", _ZTVN7WebCore37CrossOriginAccessControlCheckDisablerE) +STUB( + "OYIUDJnmzcE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEEcvbEv) +STUB( + "OYOeKdm6Jrg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("OYYVq9oiK2g", _ZN3JSC23SimpleMarkingConstraintD0Ev) +STUB( + "OYZZTgFJOwE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEptEv) +STUB( + "OYZfI+1rOi0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE3endEv) +STUB( + "OYdP0wTtGYA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsC1EPNS1_6Common10LibContextE) +STUB("OYfinD0QrEE", uspoof_getAllowedLocales_67) +STUB("OYmnApJ9q+U", sceSaveDataGetUpdatedDataCount) +STUB( + "OYoX-8ejY9s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("OZ0w4N914Uo", WKNotificationManagerGetTypeID) +STUB("OZ1jI9aVLJM", + _ZN3sce2Np9CppWebApi11UserProfile2V121PersonalDetailFactory7destroyEPNS3_14PersonalDetailE) +STUB("OZ3E5DBD-TU", mono_aot_I18N_CJKplt) +STUB( + "OZ5tLCp229s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEEaSERKSA_) +STUB( + "OZBHhK5oA3E", + _ZN3sce2Np9CppWebApi13InGameCatalog2V522ContainerRatingFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_15ContainerRatingEEE) +STUB("OZBKii+KboY", sceVorbisDecSerialNumber) +STUB( + "OZGAX6PHoWk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEED1Ev) +STUB("OZJNoj2ojXA", mono_aot_ReactNative_Vsh_Commonplt_end) +STUB("OZM2JS-25R0", _ZN3JSC13RuntimeMethod12lengthGetterEPNS_9ExecStateElNS_12PropertyNameE) +STUB( + "OZMEI+fdypc", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEEiRNS2_10LibContextEPT_m) +STUB("OZMNneOln4A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEaSERKS7_) +STUB("OZObyI1LBiA", _ZN3JSC14JSGlobalObjectD1Ev) +STUB("OZOh7OPG41I", aio_return) +STUB( + "OZP+S5U6cgM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE8pushBackERKS8_) +STUB("OZRKJ9f3xSo", + _ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE5_InitERKSt8_Locinfo) +STUB("OZRYdUqFYQs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEppEv) +STUB("OZTedKNUeFU", sceNpManagerIntGetUserIdByAccountId) +STUB("OZXccaIGYLs", Java_com_sony_bdjstack_javax_media_controls_SoundManager_setPanningFR) +STUB("OZY0GVtb+Ck", _ZN7WebCore11MathMLNames11displayAttrE) +STUB( + "OZZoMxUSM+8", + _ZN3sce7Toolkit2NP2V28Presence11getPresenceERKNS3_7Request11GetPresenceEPNS2_4Core8ResponseINS3_8PresenceEEE) +STUB( + "OZaf29c7GUM", + _ZN3sce2Np9CppWebApi7Matches2V130ResponseMatchStatisticsFactory7destroyEPNS3_23ResponseMatchStatisticsE) +STUB("OZd9hHmLUgM", _ZN9Inspector20DOMBackendDispatcherD2Ev) +STUB("OZhpjfsAIS8", _ZN3JSC10Identifier3addEPNS_9ExecStateEPKc) +STUB("OZkvQEgICVc", SSL_CTX_set1_groups_list) +STUB( + "OZmyshYqcts", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEC1EPS8_) +STUB("OZpARF+Fvsw", _ZNK7WebCore5Range8toStringEv) +STUB( + "OZqbz+zNHRQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEC1EPNS2_10LibContextE) +STUB("OZsHC5I-oGM", _ZN7WebCore8SVGNames8clipAttrE) +STUB( + "OZyt6CWUuWs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEC2Ev) +STUB( + "Oa-Hglz+X00", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE5beginEv) +STUB( + "Oa1HJ6dio4I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEE11release_refEv) +STUB("Oa2bbI-pj+w", _ZN7WebCore11JSDOMMatrix11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("Oa4DkE23caQ", _ZN7WebCore14SQLiteDatabase11tableExistsERKN3WTF6StringE) +STUB("Oa8DwUsT8yg", WKOpenPanelParametersCopySelectedFileNames) +STUB("Oa8FsI1SXdg", _ZN3sce7Toolkit2NP2V211SocialMedia7Request21PostMessageToFacebookC1Ev) +STUB("Oa8TdN+xZWg", sceClPthreadMutexattrSetprotocol) +STUB("OaB0qzbupVo", YGConfigCopy) +STUB("OaBNSvmGtv4", _ZN7WebCore11DisplayList10StrokeRectD1Ev) +STUB( + "OaBd4xHXB5o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEC1EPS8_) +STUB("OaGIltRoqiQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEC1Ev) +STUB( + "OaLJgYtWtco", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12setBoolean10ERKb) +STUB( + "OaP-JMgoty8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("OaQI1HqFAtk", sceDbgSetMinimumLogLevel) +STUB( + "OaRR2gNwNPw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "OaS2gtTVT1o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEC1EPS8_) +STUB("OaVel22lABE", _ZN3sce7Toolkit2NP2V28Commerce8Category13IMAGE_URL_LENE) +STUB("OaWw+IVEdbI", sceCompanionHttpdRegisterRequestCallback) +STUB("Oac+zl92KDY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE5beginEv) +STUB("Oad+nopFTTA", sceNpManagerIntGetMAccountId) +STUB("Oad3rvY-NJQ", sceNpHasSignedUp) +STUB( + "OalobYxbi2M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEE11get_deleterEv) +STUB("Oao4xhTBIuA", addCommInfoList) +STUB("OaqGMFRrnuc", _ZN3sce7Toolkit2NP17FriendRankRequestC2Ev) +STUB( + "OavW2uQ0Uy0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEEcvbEv) +STUB("Ob-7kQFbviA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEaSERS7_) +STUB( + "Ob2bFCVwBrw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEneERKS9_) +STUB("Ob34lg2OTG0", sceDseehxFlush) +STUB("Ob7nUchI0fc", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112UpdateStatusEEC1Ev) +STUB( + "Ob8wmH3I9YU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("ObBWSo94AQg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEEaSERKS7_) +STUB( + "ObFjw5Pvjx0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE6isBusyEv) +STUB( + "ObIBEIlGgPs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEED2Ev) +STUB("ObIste7hqdk", sceCameraGetExposureGain) +STUB("ObL9avwXu98", u_strFromUTF32_67) +STUB( + "ObM1SFN4qm0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEppEi) +STUB("ObMQ-BnbLTw", mono_aot_System_Runtime_Extensionsmethod_addresses) +STUB("ObUpJImTS-s", _ZN7WebCore11MathMLNames17definitionURLAttrE) +STUB( + "ObWmUHnNJm8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("ObWxi4aV0Fs", + _ZN7WebCore17JSDOMRectReadOnly9serializeERN3JSC14JSGlobalObjectERS0_RNS_17JSDOMGlobalObjectE) +STUB("Obbg4JThVYQ", _ZN3sce10CanvasUtil5flushEv) +STUB("ObdBkrZylOg", _ZTSSt18bad_variant_access) +STUB("Obg5jzvJ3Po", _ZN7WebCore18JSHTMLImageElementC1ERKS0_) +STUB("ObitwxybGKk", SSL_CIPHER_get_version) +STUB( + "Obk70NrrdJI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("ObkDGDBsVtw", sceFontStringGetTerminateCode) +STUB("ObpPwWnpM8I", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEEC1ERS7_) +STUB("Obpp+5fUIEU", unorm2_getDecomposition) +STUB("Obwmfjc8qOs", _ZNK7WebCore15ContextMenuItem7checkedEv) +STUB( + "ObxiBfgwVLQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE8pushBackERKS8_) +STUB( + "Oc-wf15M4C4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEdeEv) +STUB( + "Oc0U97RJO7Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEppEi) +STUB("Oc4wsNJNskY", _ZNK3sce2Np9CppWebApi11UserProfile2V112BasicProfile13onlineIdIsSetEv) +STUB( + "Oc72WHTKrL4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEneERKS9_) +STUB("Oc76D429atM", mono_aot_Sce_Vsh_VideoFramework_Platformunwind_info) +STUB("OcA+TJ9AjOo", __ubsan_handle_nullability_return_v1) +STUB("OcAgPxcq5Vk", _ZN3sce4Json12MemAllocatorD2Ev) +STUB( + "OcDsU5hrZzc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEdeEv) +STUB( + "OcE+KlgaHo8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEixEm) +STUB("OcJv92xrnOs", vzone_equals_67) +STUB( + "OcN+3CKzJtk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE8capacityEv) +STUB("OcNMmxWmSD0", _ZN8meta_gen13TiffRetrieverD0Ev) +STUB("OcPl1XthUtg", rgctx_fetch_trampoline_rgctx_77_p) +STUB("OcQybQejHEY", sceVideoOutGetBufferLabelAddress) +STUB("OcRqL+3uS20", ucol_mergeSortkeys_67) +STUB( + "OcVO-RhINUY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEEC1EPS8_PNS2_10LibContextE) +STUB("OcXqr0lwnSc", _ZNK7WebCore5Range21compareBoundaryPointsENS0_10CompareHowERKS0_) +STUB("OcYUj6hnhCo", _ZN3sce7Toolkit2NP2V27Session11InvitationsC2ERKS4_) +STUB( + "OcYj2-nIW1I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEEC1EPS6_PNS2_10LibContextE) +STUB("OcZJcxANLfw", CERT_STORE_addTrustPoint) +STUB( + "Ocaficj17j0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEC1ERS7_) +STUB( + "OcefDxTkkxQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("Ocf081WpBpA", sceHmd2ReprojectionBeginFrame) +STUB("OchgDaLOOUo", delegate_virtual_invoke_2_p) +STUB("OcllHFFcQkI", sceNpTrophySystemGetGroupIcon) +STUB( + "OclxlhLwZfE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEeqERKS9_) +STUB("OcnSddPkQns", sceNpManagerIntGetGameTitleBanInfo) +STUB("Ocr34X-hRec", + _ZN3sce7Toolkit2NP2V29Messaging7Request19SendGameDataMessage19MAX_SIZE_ATTACHMENTE) +STUB("OcwbcLWLjAQ", WKSecurityOriginCopyHost) +STUB("OczGlIC+mBw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEC1ERKS7_) +STUB("Od08tUabWSo", _ZNK3sce2Np9CppWebApi6Common8IteratorImEeqERKS4_) +STUB("Od0KHyB+f40", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEaSERKS7_) +STUB( + "Od0gzgg-A+Q", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE5abortEv) +STUB("Od0uMJZoVWg", sceKernelGetTraceMemoryStats) +STUB( + "Od1fcGKeZY8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEC2EPNS2_10LibContextE) +STUB("Od2NaV700Ek", sceCesSJisCodeToJisX0208) +STUB( + "Od3NXzsLAv0", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getBoolean9Ev) +STUB( + "OdAUR52nDko", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE13getLibContextEv) +STUB( + "OdAZYnlCMcw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE5eraseENS2_8IteratorIS6_EERS9_) +STUB("OdIsrLAknok", _ZNK3sce2Np9CppWebApi11UserProfile2V113BasicPresence14inContextIsSetEv) +STUB( + "OdKArYEV0I4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE17getNpWebApi2ReqIdEv) +STUB("OdLStdJy+1E", + Java_com_sony_bdjstack_javax_media_controls_VideoSystem_getScreenConfigurationId) +STUB( + "OdM2FhFYn9Q", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEptEv) +STUB( + "OdM9oG4E9Cc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEptEv) +STUB("OdPGT4016Pc", + _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToCancelTicket11getticketIdEv) +STUB("OdQjCCT0Mzo", JVM_ResolveClass) +STUB("OdRcux-QXm8", sceNpPush2RegisterNotificationExCallback) +STUB("OdTS2QXIVos", sceUlpMgrQueueTryPop) +STUB( + "OdVFerEd2N4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEC2EPS8_) +STUB( + "OdcR6zpBRK8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEC2EPS8_) +STUB("OdiXSuoIK7c", sceUserServiceGetParentalGame) +STUB("OdjdBljvxmg", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIlEC1EPl) +STUB( + "OdnPRTkd+fY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEED2Ev) +STUB("OdnfwPg6zUo", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry9pcIdIsSetEv) +STUB( + "OdrwFx8Gn4c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE7popBackEv) +STUB("OduSHBukAnk", mono_btls_x509_verify_param_get_flags) +STUB("OdutVIwsfoc", scePlayReadyLicenseAcqProcessResponse) +STUB("OdvMJCV7Oxo", __floatunsidf) +STUB( + "OdvqiJteUag", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE21intrusive_ptr_add_refEPS7_) +STUB("OdzLUcBLhb4", __floatuntixf) +STUB( + "Oe+-NWyisuA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEE11release_refEv) +STUB( + "Oe0fFlEXSbQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE6resizeEj) +STUB( + "Oe1W+jARzBQ", + _ZN3sce2Np9CppWebApi7Matches2V119RequestInGameRoster10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_18RequestMatchPlayerEEEEE) +STUB("Oe33uOtx7sI", WKBundleHitTestResultMediaHasAudio) +STUB( + "Oe5j5KSIZkM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "Oe69+uTtQhs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEE5resetEPS8_) +STUB("OeEFtpgl3Cs", mono_domain_owns_vtable_slot) +STUB("OeGeb9Njons", CERT_setKeyFromSubjectPublicKeyInfoCert) +STUB("OeHaG1J3EHQ", + _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi24ParameterToReportResults23getreportResultsRequestEv) +STUB("OeJdPEmLYX4", sceUsbStorageGetdentsRead) +STUB("OeJoyBxAlEk", + _ZNK3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayer11getPlatformEv) +STUB("OeNH41MA2Vs", FT_Open_Face) +STUB("OePBlYUkbMQ", _ZN3sce2Np9CppWebApi7Matches2V14TaskC2EPNS1_6Common10LibContextE) +STUB( + "OeRyarhBM5s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE7popBackEv) +STUB("OeSHakP2sw8", _Z29PsmGraphicsGetGraphicsContextv) +STUB("OeZaNLCgxdA", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable9getSlotIdEv) +STUB("OecFSm0BxdI", sceSpPthreadMutexUnlock) +STUB("OenefAIiO3o", uprv_pathIsAbsolute) +STUB("Oeo9tUbzW7s", _ZNSt7codecvtIDsc9_MbstatetED1Ev) +STUB("OeqSCnaIHyA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEE7add_refEv) +STUB("OevCZ8MRkV8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEdeEv) +STUB( + "OevmrtUEB4U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEC1Ev) +STUB( + "Of-+-eHkyVA", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeaders6createEPNS1_6Common10LibContextERNS6_12IntrusivePtrIS5_EEl) +STUB( + "Of343XopKE0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEppEv) +STUB("Of3LWhvVMbw", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo12setaccountIdEPKc) +STUB( + "Of4xukikvEk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("Of6ahH4L2Lg", _ZN9Inspector8Protocol3CSS11CSSProperty8ImplicitE) +STUB( + "Of78a+6ubss", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEEaSERSA_) +STUB( + "Of9qTRNMgbk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEE3getEv) +STUB( + "OfE+cft2qCg", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSessionIdRequestBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_37PatchGameSessionsSessionIdRequestBodyEEE) +STUB( + "OfE7ABcyLp8", + _ZN9Inspector21InspectorRuntimeAgent10saveResultERN3WTF6StringERKNS1_8JSONImpl6ObjectEPKiRSt8optionalIiE) +STUB( + "OfEhYLxS6h4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEC1EPS6_PNS2_10LibContextE) +STUB("OfNANruoaxs", sceCesUcs2StrToMbcsStr) +STUB("OfP1a5uBcs4", _ZN7WebCore24CoordinatedGraphicsLayer14setPreserves3DEb) +STUB("OfRb3huEPX8", sceDataTransferAbortSearchPS4) +STUB( + "OfSm8N8i+XA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE6finishEv) +STUB( + "OfTx-jdnzYk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEE11release_refEv) +STUB( + "OfYbTC-dntY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEE7add_refEv) +STUB("OfZnFLuX8+g", WKPreferencesSetCustomPasteboardDataEnabled) +STUB("OffDHonzAk4", _ZN7WebCore14FrameSelection5clearEv) +STUB("Ofhy8Ky4rEk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBodyC1EPNS1_6Common10LibContextE) +STUB( + "OfiCi4C52QI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEE11release_refEv) +STUB( + "Oflukn5jrA8", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13integer7IsSetEv) +STUB( + "OfmCcRe9vXQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEneERKSA_) +STUB("Ofn28iC8bf4", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE5clearEv) +STUB( + "OfoFMihbjPM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEEcvbEv) +STUB( + "OfpJ406dj-g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEE5resetEPS6_) +STUB("OfrPlrwzl4U", sceKernelSetDirectMemoryType) +STUB( + "OfslkynqnAM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("Ofug7g2Vga8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE7reserveEi) +STUB("OfwgHjJZyGo", WKBundleFrameCopyChildFrames) +STUB("OfyYPsBqmlA", _ZN7WebCore8SVGNames15startOffsetAttrE) +STUB("Ofz1AcKLESA", png_free) +STUB("Og72vvutsLE", t1_cmap_standard_class_rec) +STUB("Og8Jxy7oFkc", vzone_getStaticClassID_67) +STUB("OgEd4N62-dg", _ZNK7WebCore9DOMWindow16getComputedStyleERNS_7ElementERKN3WTF6StringE) +STUB("OgFczHko0w8", FT_Done_Face) +STUB( + "OgGEBDAygy8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEdeEv) +STUB("OgITQ+1PtOs", _ZN7bmalloc29StaticPerProcessStorageTraitsINS_9DebugHeapEE7Storage7s_mutexE) +STUB("OgIbLp+FJ2I", _ZNK3sce2Np9CppWebApi13InGameCatalog2V520ContainerRatingCount10countIsSetEv) +STUB( + "OgXfLo73zak", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("OgbHYgjDBL4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS25AtomicAddToAndGetVariableEEC2Ev) +STUB("OgbbbsOtwlE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEEC1Ev) +STUB("Ogg09NLOW3w", qS8) +STUB( + "OgkQofp6OlE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE5beginEv) +STUB( + "OgpJx7QK-o8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE3endEv) +STUB( + "OgsU21lxIP8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEEC2ERKSA_) +STUB("Ogv4Wb987TI", ucasemap_open_67) +STUB("OgzRrdWr8uA", ScePsmMonoDomainAssemblyOpen) +STUB("Oh2pbnCuyyo", mono_get_exception_synchronization_lock) +STUB("Oh7gYN7bdHE", Java_java_io_RandomAccessFile_write0) +STUB( + "Oh85nlQ7ZRw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEptEv) +STUB("OhC6hmD2VYw", _ZN7WebCore16HTMLTableElement7tBodiesEv) +STUB("OhCsIjzr63s", jinit_compress_master) +STUB("OhDth-x4CUo", _ZN7WebCore24CoordinatedGraphicsLayer23setContentsToSolidColorERKNS_5ColorE) +STUB("OhGxI60LXPo", _ZN7WebCore11DisplayList20FillRectWithGradientD1Ev) +STUB( + "OhSNme4WYSc", + _ZN15AbstractStorage18DailymotionStorage10GetContentERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_7ContentEE) +STUB("OhVJO3fn7dk", WKPreferencesGetCompositingRepaintCountersVisible) +STUB("OhYkDcFPfIU", mono_config_get_os) +STUB( + "OhbgCSnMWko", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEC2EPS8_) +STUB("OhcScS4BHoM", _ZN3sce2Np9CppWebApi7Matches2V15Error16unsetReferenceIdEv) +STUB("OheijxY5RYE", sceNpTusGetFriendsDataStatusAAsync) +STUB( + "Ohf9o1fkq3Y", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEixEm) +STUB( + "Ohfnt2KnL2w", + _ZNK3WTF8JSONImpl10ObjectBase8getValueERKNS_6StringERNS_6RefPtrINS0_5ValueENS_13DumbPtrTraitsIS6_EEEE) +STUB("Ohhjm+gd9gQ", _ZN4Manx20getGenericFamilyTypeEPKwj) +STUB( + "OhixsN6Cy+A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEptEv) +STUB("OhjI6QXJreQ", mono_declsec_flags_from_assembly) +STUB( + "OhkeVbfkams", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEC2Ev) +STUB("OhmAoBvGMd4", _ZN7WebCore21UserContentController17removeUserScriptsERNS_15DOMWrapperWorldE) +STUB( + "OhnH8C16wZc", + _ZN7WebCore8JSPath2D6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_6Path2DENS6_13DumbPtrTraitsIS8_EEEE) +STUB("OhosHihGcns", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEC2ERS7_) +STUB("OhpofCxYOJc", _ZN3sce2np6HandleC2Ev) +STUB( + "OhvMpLJgpYU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEED1Ev) +STUB("Ohz9GetZorI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEdeEv) +STUB( + "OhzOcm4c4bU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE10setContextEPNS2_10LibContextE) +STUB( + "Oi2e9CZ2R4A", + _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product12setPublisherERKNS1_6Common12IntrusivePtrINS3_9PublisherEEE) +STUB("Oi5C+LYICRE", _ZN3sce7Toolkit2NP2V28Presence16PlatformPresenceC2Ev) +STUB("Oi7FzRWFr0Y", scePadSwitchConnection) +STUB("Oi7Mkc2qiew", sceKernelGetBuildNumber) +STUB("Oi8niAD8r1M", ublock_getCode) +STUB("Oi9NaDuGjZg", mono_aot_Sce_Vsh_Gls_NativeCalljit_code_start) +STUB("OiFojfr3MuQ", mono_aot_Sce_Vsh_Webbrowser_XdbWrappermethod_addresses) +STUB("OiJIorOeuOI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEED2Ev) +STUB( + "OiJmaYG+v2s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "OiPzasyQqVE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEED1Ev) +STUB("OiQkT8AUD5k", AacsModuleStart) +STUB( + "OiT8pniW1pA", + _ZN7WebCore14DOMCacheEngine15queryCacheMatchERKNS_15ResourceRequestES3_RKNS_16ResourceResponseERKNS_17CacheQueryOptionsE) +STUB("OiiwNT7WRG8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEE11release_refEv) +STUB( + "OijAMUWCgPQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEixEm) +STUB( + "OijgX+3zps8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEE11release_refEv) +STUB("OilqfSGtoCk", _ZNK7WebCore6ISOBox12extendedTypeEv) +STUB("Oin1rCnQQN4", Java_java_lang_ClassLoader_00024NativeLibrary_unload) +STUB( + "OiqbmBScZ24", + _ZN9Inspector25DebuggerBackendDispatcher19evaluateOnCallFrameElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("OiunYlyJUvc", sem_unlink) +STUB("OixjiRExi6g", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTicketsC2ERS5_) +STUB("Oj1ll4bR580", _ZN3JSC11ArrayBuffer6createEPKvj) +STUB( + "Oj1vw2MtlEo", + _ZN3sce2Np9CppWebApi7Matches2V123JoinMatchRequestFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_16JoinMatchRequestEEE) +STUB("Oj6EZyXtQkk", sceApplicationSwitchToBaseMode) +STUB("Oj7MxlWKKjM", WKPageSetSession) +STUB("OjJcnVmKx9M", _ZN7WebCore12NamedNodeMap12setNamedItemERNS_4AttrE) +STUB( + "OjRPaXBctPQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEeqERKS9_) +STUB("OjTEJo7cfRE", scePadDisableTriggerEffect) +STUB("OjWstbIRPUo", __Ux86_64_setcontext) +STUB( + "OjYDGvqp8w4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEE3getEv) +STUB("OjavHx3T3gE", utrans_countAvailableIDs_67) +STUB("OjcLbk3jcp8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEE3getEv) +STUB("OjeXFhn2-9Q", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIdEppEi) +STUB("Ojfqg2IfSu4", delegate_virtual_invoke_imt_m_17_p) +STUB("OjlHVH8jjsw", SSL_get0_param) +STUB( + "OjnQ9hxfWXw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE6resizeEj) +STUB("OjoP+2xDY5c", sceNpManagerIntRevalidatePasswordOld) +STUB( + "OjpRYo6VTMw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEptEv) +STUB( + "OjqMdFvqVwo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("OjzayySo58A", _ZN7WebCore28InspectorFrontendClientLocalD2Ev) +STUB("Ok+SYcoL19Y", gets) +STUB("Ok-Mh2OnkYs", _ZN12video_parser17cVideoProfilerMp4C1EPNS_18cMp4FFLHndlManagerE) +STUB("Ok2Nxka7qI4", sceAmprAmmMeasureAmmCommandSizeModifyMtypeProtect) +STUB("Ok35SiBrHA4", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead30unsetReservationTimeoutSecondsEv) +STUB("Ok3Hu4DWmpU", glGetUniformIndices) +STUB("Ok6T9b6gcl4", Java_java_net_PlainSocketImpl_socketSetOption0) +STUB("Ok8KPy3nFls", iswlower) +STUB( + "Ok8j4nv0+sQ", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC1ERKSA_) +STUB( + "OkH1-DvaFxY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("OkLAycBUJfs", _ZN3sce2np14HttpConnectionD1Ev) +STUB("OkLQk5cGcDM", _ZN7WebCore9HTMLNames10sectionTagE) +STUB("OkOaa3JP3j0", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18GameCustomDataItemEE7addressERS3_) +STUB("OkYxbdkrv64", _ZTIPDs) +STUB( + "OkZTosDEz0M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE21intrusive_ptr_sub_refEPSA_) +STUB("OkbxW1PzpCQ", rgctx_fetch_trampoline_rgctx_117_p) +STUB( + "OkcBizX+qcU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEED2Ev) +STUB( + "OkgMGQKig+g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEC1EPS8_) +STUB("Okiw6xdoX00", _ZN3JSC16SamplingProfiler18reportTopBytecodesERN3WTF11PrintStreamE) +STUB( + "OkkGKxzNJOs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEEaSERSA_) +STUB( + "OkmShGtcTj8", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("Oks6jtLY7iE", _ZN3sce7Toolkit2NP2V212ActivityFeed4FeedC1Ev) +STUB("OkvUnvdJsW8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE3endEv) +STUB( + "OkyDTpNKHoI", + _ZThn16_N9Inspector21InspectorRuntimeAgent36getRuntimeTypesForVariablesAtOffsetsERN3WTF6StringERKNS1_8JSONImpl5ArrayERNS1_6RefPtrINS4_7ArrayOfINS_8Protocol7Runtime15TypeDescriptionEEENS1_13DumbPtrTraitsISD_EEEE) +STUB("Ol0O8DvpWyk", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils16NetStateDetailedEE3setEv) +STUB( + "Ol6a4N4jJOI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB("OlEC7i75Zr4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEC2Ev) +STUB("OlFgKnBsALE", sceGnmSdmaCopyWindow) +STUB( + "OlH1UyhHvgQ", + _ZN7WebCore16BlobRegistryImpl18appendStorageItemsEPNS_8BlobDataERKN3WTF6VectorINS_12BlobDataItemELm0ENS3_15CrashOnOverflowELm16ENS3_10FastMallocEEExx) +STUB("OlHCQOhz8AE", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V112TicketStatusEEmmEi) +STUB( + "OlLdKPlW4vo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEaSERKS7_) +STUB( + "OlMxxnDBfEg", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi26RecordScoreResponseHeaders24getXPsnAtomicOperationIdEv) +STUB( + "OlR31NI-DCY", + _ZN7WebCore24redirectChainAllowsReuseENS_24RedirectChainCacheStatusENS_28ReuseExpiredRedirectionOrNotE) +STUB("OlTjuwdzeSo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE5clearEv) +STUB("OlWlPHKbAh4", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_33ActivityFeedSharedScreenshotStoryEE7addressERKS3_) +STUB("Olb6L5-YCBE", JSRunLoop) +STUB( + "OlbT7mQEM3A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEC2EPNS2_10LibContextE) +STUB( + "OliHLffcLLU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEED1Ev) +STUB( + "OlkGBMNxkeI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEC1EPNS2_10LibContextE) +STUB("Oln7BoRAMx4", __cmp_D2A) +STUB( + "OlnkkXyXkgk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEED1Ev) +STUB( + "OlqsnXPRhHA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("OlscS7C2kGU", + _ZN3JSC8Bindings13RuntimeObject14deletePropertyEPNS_6JSCellEPNS_9ExecStateENS_12PropertyNameE) +STUB("Olwu-7rrX7A", _ZN7WebCore15HTMLBaseElement7setHrefERKN3WTF12AtomicStringE) +STUB( + "Olyq3AvGc-I", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEC1Ev) +STUB( + "Om+4efeKMV8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEC1EPS6_PNS2_10LibContextE) +STUB("Om2ww9GOmes", FcPatternDel) +STUB( + "Om5ISfFuvbQ", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS5_INS7_9RecordApi26RecordScoreResponseHeadersEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISE_SF_EE) +STUB("Om7GCXZ3ygM", _ZN9Inspector22InspectorDebuggerAgent6enableEv) +STUB( + "Om8O3W5nL+U", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeaders21intrusive_ptr_add_refEPS5_) +STUB("OmDPJeJXkBM", _WStoll) +STUB( + "OmEdX81dTpc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC2ERSA_) +STUB("OmG2nD41vow", Java_sun_awt_DownloadedFont_loadFromMemoryFinish) +STUB("OmG3YPCBLJs", sceLibcPafMspaceMallocStatsFast) +STUB("OmJ5HIMLuNg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEED1Ev) +STUB( + "OmR6AUTosbU", + _ZN3WTF24acquireLineBreakIteratorENS_10StringViewERKNS_10AtomStringEPKDsjNS_21LineBreakIteratorModeE) +STUB( + "OmUs2elHCGE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("OmZzIsewh64", mono_btls_x509_crl_get_by_cert) +STUB("Ome5M+MTuwY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament16RegisteredRosterEEC2Ev) +STUB("OmecxEgrhCs", __asan_option_detect_stack_use_after_return) +STUB( + "OmghrWlBYUE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEC1ERKS7_) +STUB("OmpWcoPbFCc", _ZN3sce7Toolkit2NP2V24Core7Request21NpToolkitCallbackInfoD2Ev) +STUB("OmqNjUWcjoQ", uprv_getInfinity) +STUB("Omr9X+YmT7I", sceKernelAprSubmitCommandBuffer_TEST) +STUB("Oms065qIClY", sceSystemServiceReleaseFb0) +STUB("OmxJF0FvwWc", FTA_Remove_Module_winfonts) +STUB("On1X7TiPc9s", _ZN7WebCore17JSHTMLLinkElement6s_infoE) +STUB("On4LzFMH93c", _ZN7WebCore11MediaPlayer28setPreferredDynamicRangeModeENS_16DynamicRangeModeE) +STUB("On5Zzm0ftIc", _ZN7WebCore11DisplayList9TranslateC2Eff) +STUB( + "On6G2o3XkhY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE5beginEv) +STUB( + "On6gOmq+8y0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEppEi) +STUB( + "On9D5hGEwBI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEEC2Ev) +STUB("OnDKIoGiZqs", _ZN7WebCore9HTMLNames10detailsTagE) +STUB( + "OnDs7j3XvcY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE21intrusive_ptr_sub_refEPS9_) +STUB("OnFvmA5G+Y8", _ZN7WebCore11toDisplayP3ERKNS_15LinearDisplayP3IfEE) +STUB("OnHQSrOHTks", _PJP_C_Copyright) +STUB( + "OnKbAiejp14", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEC1EPKS8_) +STUB("OnOrY8PLUjs", + _ZN7WebCore27ContentSecurityPolicyClient26willSendCSPViolationReportERNS_7CSPInfoE) +STUB( + "OnQR2h1CwbY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEE21intrusive_ptr_sub_refEPS7_) +STUB("OnRiwSaBWME", _ZNK7WebCore17HTMLScriptElement11crossOriginEv) +STUB( + "OnYq6QdxD74", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEaSERKS9_) +STUB("OnYqOSVaU2E", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt6vectorI16SceNpTusVariableNS2_IS4_EEEEC1Ev) +STUB("OnZomlTnCwE", ucnv_cbFromUWriteSub_67) +STUB( + "Onj+Mfcmrzg", + _ZN7WebCore11MediaPlayerC1ERNS_17MediaPlayerClientENS_16MediaPlayerEnums21MediaEngineIdentifierE) +STUB( + "OnmHOS85r4U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEC2ERKS7_) +STUB("OnnrdOwyBi0", _ZN3JSC14JSGlobalObject6s_infoE) +STUB("OnoZKqFGNjA", EVP_EncryptUpdate) +STUB("OnuHco+scT8", sceFontGraphicsProcessWaitSequence) +STUB( + "Ony+vkzAa3g", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("OnzGBf2v5bg", _ZN3sce2Np9CppWebApi14ConnectAccount2V212PartnerToken12setExpiresInERKl) +STUB("Oo-Thm6SQPA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEcvbEv) +STUB("Oo-hIEH2WdI", _ZN7WebCore17FrameLoaderClientnwEmPv) +STUB("Oo0S5PH7FIQ", sceVoiceEnd) +STUB( + "Oo1PStCcw0Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEC2EPKS8_) +STUB("Oo1r8jKGZQ4", _ZNSt7collateIcEC1Em) +STUB( + "Oo2-qEXTDY0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("Oo6kgzJILqc", __tsan_mutex_create) +STUB( + "Oo727NKbdAA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEaSERKS7_) +STUB( + "Oo7oX7M3wnA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEC2EPS8_) +STUB("OoB1PunuaxY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEcvbEv) +STUB("OoK0Ah0l1ko", _ZN3sce2np6Thread4InitEPKNS1_5ParamE) +STUB("OoOcl7cXBC8", _ZN3WTF10TextStream8endGroupEv) +STUB( + "OoOg61nPhL8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEED2Ev) +STUB("OoPvtIr03Tc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ChildActivityAvailabilityEEptEv) +STUB( + "OoQlWcH-Kug", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "OoSsuUyGSv0", + _ZN7WebCore24DocumentMarkerController14markersInRangeERKNS_11SimpleRangeEN3WTF9OptionSetINS_14DocumentMarker10MarkerTypeEEE) +STUB("OoTjfxl8-wI", sceNpSnsFacebookCreateRequest) +STUB( + "Ooav5oMG2Xg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEC2EPS8_) +STUB("OocnfcUM7Bk", _ZN3JSC11VMInspector23currentThreadOwnsJSLockEPNS_2VME) +STUB( + "OoiGOYVfwmg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEaSERKS9_) +STUB("OokInMhyhn8", _ZNK3sce2Np9CppWebApi7Matches2V119ResponseTeamResults9getTeamIdEv) +STUB("OonUxX6jVHU", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_6NpUserEED2Ev) +STUB("Oor7ukCXZOE", FcConfigDestroy) +STUB("Op4FMZd6Ej8", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession17getExpirationTimeEv) +STUB("Op5E4tzSoiU", sceKernelSwitchToNativeMode) +STUB("Op8TBGY5KHg", pthread_cond_wait) +STUB("OpAJ6yqzRIQ", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi27ParameterToLeaveGameSessionC2Ev) +STUB("OpC9gfPLl5g", o2i_ECPublicKey) +STUB( + "OpHW6PG0kBU", + _ZN9Inspector25DebuggerBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) +STUB( + "OpHuC8A1n8Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEC2Ev) +STUB("OpOYF-YC+OA", _ZN7WebCore8SVGNames7maskTagE) +STUB("OpP372F42eg", _ZN3sce2Np9CppWebApi7Matches2V125ResponseCompetitiveResult16unsetTeamResultsEv) +STUB( + "OpPi0P3UdRE", + _ZN3JSC12TypeProfiler36typeInformationForExpressionAtOffsetENS_28TypeProfilerSearchDescriptorEjlRNS_2VME) +STUB( + "OpZ5YasmMlk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEEcvbEv) +STUB("OpaOi6NGe9g", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament7BracketEEC1Ev) +STUB("OpcGwZFMmHs", _ZN3WTF18ParallelHelperPool13ensureThreadsEj) +STUB( + "OpeWUqciHrc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEE11release_refEv) +STUB( + "OpesJb2Aabc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("Opg4di-td2c", WKPreferencesGetAggressiveTileRetentionEnabled) +STUB( + "OpkaYcCmZJE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE7reserveEi) +STUB("Opn0dUvVw5M", _ZN9Inspector8Protocol16InspectorHelpers20getEnumConstantValueEi) +STUB("OpnuHE0j6kE", _ZN7WebCore16VisibleSelectionC1ERKNS_11SimpleRangeENS_9EAffinityEb) +STUB( + "OppFZoYkVUI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEE11release_refEv) +STUB("OpuQOnIqZHw", sceVshAvcapOpenAudio) +STUB("OpxATprcZSo", jpeg_idct_7x7) +STUB("OpyolX6RwS0", sceGnmSqttSwitchTraceBuffer) +STUB("Oq-KLpNjd1U", _ZN7WebCore11MediaPlayer10readyStateEv) +STUB("Oq0rbMLDllI", + _ZN3sce2Np9CppWebApi14SessionManager2V125ResponseGameSessionPlayerC2EPNS1_6Common10LibContextE) +STUB("Oq5aepLkEWg", _ZN3sce2np8WorkItem6CancelEi) +STUB( + "Oq7Ich7nnp8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEED1Ev) +STUB("OqA30GvDJP0", _ZN7WebCore11DisplayList11DrawEllipseD2Ev) +STUB("OqD2LjbJsAA", sceMoveIsValidHandle) +STUB( + "OqDeBtNDIAk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEEaSERSA_) +STUB("OqICoewmNZA", sceVnaStopAnalyze) +STUB("OqMHgjFp06I", _ZN3sce7Toolkit2NP2V28Commerce8CategoryD1Ev) +STUB("OqPy5+E3JrY", _ZThn16_N9Inspector19InspectorAuditAgentD0Ev) +STUB("OqQKX0h5COw", sceFontTextSourceSetWritingForm) +STUB("OqaxEkRhr+8", FT_Get_PFR_Metrics) +STUB("Oqc2X663Vqc", _ZN10Deprecated25ScriptCallArgumentHandler14appendArgumentEx) +STUB( + "Oqeuo71PkrI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEE5resetEPS9_) +STUB("Oqfphi8E-Hc", _ZNK3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate12natTypeIsSetEv) +STUB( + "OqgABoZO888", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "Oql4IKlOA4w", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEE3getEv) +STUB( + "OqlqIesqYl8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("OqmzSQH+gMQ", _ZN10Deprecated11ScriptValueC1Ev) +STUB("Oqnl5eGoYbM", _ZNK3sce2Np9CppWebApi7Matches2V118RequestMatchPlayer14accountIdIsSetEv) +STUB( + "OqonQrpjRsY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEeqERKS9_) +STUB("OqpGu9soa5g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEED1Ev) +STUB("OqyS5QS9TUQ", Java_com_sony_bdjstack_org_bluray_vfs_VFSManagerImpl_proxyPrepareUpdating) +STUB( + "Oqzh8wyd-fM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEE5resetEPS9_) +STUB( + "Or+uVMoHADk", + _ZN9Inspector20DOMBackendDispatcher35setAllowEditingUserAgentShadowTreesElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("Or5lEE+bzNE", mono_aot_Sce_PlayStation_Orbis_Speechjit_got) +STUB("Or5qGUqr53A", _ZN9Inspector21InjectedScriptManagerdlEPv) +STUB("OrBToEv9m5Y", _ZN7WebCore9HTMLNames12languageAttrE) +STUB( + "OrMxRlr0aEg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEcvbEv) +STUB( + "OrNZTZb11yc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEC1EPS8_) +STUB("OrPeJ6qQgw4", _ZN7WebCore19ResourceRequestBase15clearHTTPOriginEv) +STUB( + "OrRw-EnJZ0E", + _ZN3sce2Np9CppWebApi14SessionManager2V136GetPlayerSessionsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_29GetPlayerSessionsResponseBodyEEE) +STUB("OrT87qTQ6iA", fuse_kern_chan_new) +STUB( + "OrWpmEZUJAI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEE5resetEPS9_) +STUB("OrZ9cX7aggs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEppEi) +STUB("OrZuJTph3mc", sceNpRemotePlaySessionSignalingCreateJoinSession) +STUB( + "Orf2rx4UpaQ", + _ZN7WebCore22StorageEventDispatcher34dispatchLocalStorageEventsToFramesERNS_9PageGroupERKN3WTF6VectorINS3_6RefPtrINS_5FrameENS3_13DumbPtrTraitsIS6_EEEELm0ENS3_15CrashOnOverflowELm16ENS3_10FastMallocEEERKNS3_6StringESH_SH_SH_RKNS_18SecurityOriginDataE) +STUB("Ori3CK8Sx6g", cairo_set_line_join) +STUB("OriLXguAbyU", delegate_virtual_invoke_imt_11_p) +STUB( + "OrigG+IpN9E", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEdeEv) +STUB( + "Orm7c8fQw-s", + _ZN3sce7Toolkit2NP6Trophy9Interface18trophyRetrieveGameEPNS1_9Utilities6FutureINS1_14TrophyGameInfoEEEbi) +STUB("OrrXBYSyN+o", _ZN7WebCore21DiagnosticLoggingKeys18unlikelyToReuseKeyEv) +STUB("OrueJqG2sy8", ucal_setDateTime_67) +STUB("OrxTn8o9gRw", _ZN3JSC8Debugger17debuggerParseDataEmPNS_14SourceProviderE) +STUB("Os-PsgTwa7Y", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament7BracketEE12deepCopyFromERS7_) +STUB("Os0sZN9FHAc", YGNodeLayoutGetRight) +STUB("Os1rxlZYt-Y", glGetActiveUniformsiv) +STUB( + "Os22v74VJ6I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEppEi) +STUB( + "OsAmT5z22q8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUserC1Ev) +STUB("OsBH3E1PyQg", mono_install_load_aot_data_hook) +STUB("OsFExy0GoM8", _ZN12video_parser17cVideoOperatorMnvD0Ev) +STUB( + "OsFzD7RSPbw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEdeEv) +STUB("OsHOdYCHYmA", + _ZN7WebCore12ChromeClient35enterVideoFullscreenForVideoElementERNS_16HTMLVideoElementEjb) +STUB("OsHZUMpUq78", __asan_stack_free_8) +STUB("OsRRuAQRHew", Java_java_util_zip_ZipFile_open) +STUB("OsScTvpp46k", mono_aot_Sce_PlayStation_Orbisunbox_trampoline_addresses) +STUB( + "OsasXT0r-CU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("Osl3-BsmjZA", _ZN3WTF7CString11mutableDataEv) +STUB("Osmwk6YeU4Y", _ZN12video_parser5vpcom3rtc14TickAddSecondsEPmPKml) +STUB("OsoVbh4-SN0", sceDataTransferTargetGetFailedUsers) +STUB( + "OsvKLrkB5ks", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "Osyaxa-SUqk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB( + "Ot0O-g+FzY4", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("Ot1DE3gif84", sceRtcGetCurrentDebugNetworkTick) +STUB("Ot1iqePgqhc", _ZNK7WebCore4Page9selectionEv) +STUB( + "Ot3NaKHgMBo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("Ot3u9DvTpq4", YGNodeStyleSetFlexGrow) +STUB("Ot6Xfs+KjC4", _ZN3JSC32JSDestructibleObjectHeapCellTypeC1Ev) +STUB("Ot7eG9q1h10", mono_aot_I18N_Otherplt_end) +STUB("Ot9s3ECMu5s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEC1ERS7_) +STUB("OtDp-kpea2Q", sceFsISSchedStatCurrentThread) +STUB( + "OtEtHfMgSuk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEEcvbEv) +STUB("OtHCBIW+1UM", _ZN7WebCore11EventRegionC1Ev) +STUB("OtIFZ-p-KKU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEC1ERS7_) +STUB( + "OtMMAerdZRs", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyC1EPNS1_6Common10LibContextE) +STUB( + "OtO6ofBwYR0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEC1EPNS2_10LibContextE) +STUB( + "OtUHQHtzVQY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEE11release_refEv) +STUB("OtUqYAzW0GM", sceNpAsmClientGetNpComInfo) +STUB( + "OtYYlwEnvLo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE3endEv) +STUB( + "OtdtgoutzT4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEC2EPS6_PNS2_10LibContextE) +STUB( + "Otf3a+pebX8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEC2EPS8_) +STUB( + "Otk1nUlCfoE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "OtxNengjrmU", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("Ou3iL1abvng", __stack_chk_fail) +STUB("Ou6QdDy1f7g", _Atomic_flag_test_and_set) +STUB( + "Ou6gFQPZuYA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEC2EPS8_) +STUB( + "Ou7GV51-ng4", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERx) +STUB( + "OuANLg6HL6U", + _ZN9Inspector28DOMDebuggerBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) +STUB( + "OuCUMQWZZSo", + _ZN9Inspector25NetworkFrontendDispatcher22webSocketFrameReceivedERKN3WTF6StringEdNS1_6RefPtrINS_8Protocol7Network14WebSocketFrameENS1_13DumbPtrTraitsIS8_EEEE) +STUB( + "OuGM0G9N0-A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEE11release_refEv) +STUB("OuK3RAoCf4Y", uidna_openUTS46_59) +STUB("OuKB8iuPqNE", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData10hasifMatchEv) +STUB("OuKg+kRDD7U", pthread_rwlockattr_setpshared) +STUB("OuP9lNCYYxQ", Java_java_lang_SecurityManager_classLoaderDepth0) +STUB("OuRXgQzcKhQ", X509_get_ext) +STUB("OuTvXLhxQgw", _ZNK3sce2Np9CppWebApi14SessionManager2V117SearchGameSession12getSessionIdEv) +STUB("OuUrEfhYDdo", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_15CategoryInfoSubENS2_IS4_EEEEC1ERKS7_) +STUB("OuVGXFusQvs", WKBundleFrameCreateHitTestResult) +STUB("OuXDqqrOGP8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEEC1ERS9_) +STUB("OucBlCU37BI", GetUsbDeviceListArray) +STUB("Oue4aH7GqYs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEdeEv) +STUB("OufFIenC01c", WKPageUseFixedLayout) +STUB("Ouhaeks2MYo", mono_method_desc_search_in_class) +STUB( + "OujZdsvFRDU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEC1Ev) +STUB("OukNoRur97E", _ZN3sce2np9SemaphoreD2Ev) +STUB( + "OunDtJo44Uw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEEaSERKSA_) +STUB("OuoPEz9-UwA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEEaSERS9_) +STUB("OuoVW-SJiZQ", _ZNK3WTF11Persistence7Decoder28bufferIsLargeEnoughToContainEm) +STUB("OutzOzZp6-w", FTA_Remove_Module_otvalid) +STUB( + "OuwjG09ZAPg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE21intrusive_ptr_sub_refEPSA_) +STUB("OuygGEWkins", sceHmdReprojectionInitialize) +STUB("Ouz5Q8+SUq4", _Stoxflt) +STUB("Ouz5ybi7b0c", _ZN7WebCore8JSPath2D9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("OuzRGuO0rv0", _ZNK3sce2Np9CppWebApi6Common6String4findERKS3_m) +STUB("OuzfLfU4tLU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEE3getEv) +STUB( + "Ov+LMc0ZMk8", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_9Recording4TypeEEESt8optionalIT_ERKN3WTF6StringE) +STUB("Ov+bca0VCio", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V124NatConnectivityToMetrics14getSuccessRateEv) +STUB( + "Ov+uJel0rQQ", + _ZN9Inspector23CanvasBackendDispatcher19requestShaderSourceElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "Ov5DzFXifY0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEE11release_refEv) +STUB("Ov8hs+c1GNY", sceUserServiceSetGlsLiveQuality5) +STUB( + "Ov8nlzFinac", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEC1EPS6_PNS2_10LibContextE) +STUB( + "OvButtaVWD8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "OvC9xxjO8tc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEmmEv) +STUB( + "OvD2qRDZVEw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEppEv) +STUB("OvEWiY4r26g", _ZN7WebCore9HTMLNames10vspaceAttrE) +STUB( + "OvJWv2vcRaY", + _ZN8meta_gen11MsvPromoter24setKeyValue_TBLI_ProtectENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti) +STUB( + "OvStpPCEbbE", + _ZN3JSC8JSObject38putDirectIndexSlowOrBeyondVectorLengthEPNS_14JSGlobalObjectEjNS_7JSValueEjNS_18PutDirectIndexModeE) +STUB("OvTLUSlWifE", _ZN7WebCore36ISOProtectionSystemSpecificHeaderBox11boxTypeNameEv) +STUB( + "OvTcyflKnsQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEE11get_deleterEv) +STUB("OvTzQTvO2eA", sceFsCheckFormat) +STUB("OvUHRdN8wEk", GCC_except_table110) +STUB("OvVp7GMRnMI", _ZN7WebCore17MouseRelatedEvent7offsetXEv) +STUB( + "OvWqugPoj+k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEEC1ERKSA_) +STUB( + "OvYTGpbeUyQ", + _ZN3sce2Np9CppWebApi14IdentityMapper2V319AccountIdMapFactory6createEPNS1_6Common10LibContextERKmPNS5_12IntrusivePtrINS3_12AccountIdMapEEE) +STUB( + "OvYgnGH-YPk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("Ovb2dSJOAuE", strcmp) +STUB("OvbYtSGnzFk", __cmpdi2) +STUB( + "OvgA9cAjXns", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEED1Ev) +STUB("OviE3yVSuTU", _FEps) +STUB("OvsK57sLpQE", sceUlpMgrRegisterProtocol) +STUB("Ovt7AP-GfM4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEdeEv) +STUB( + "Ovuffw32ExY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEC1ERS7_) +STUB( + "OvvkxmoenUA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEED2Ev) +STUB( + "Ow+1x9B1ZHo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "Ow20oyIVorU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEixEm) +STUB("Ow27qMGiCBU", _ZN3WTF4SHA116computeHexDigestEv) +STUB("Ow348nbrI1I", sceAvSettingChangeOutputMode) +STUB( + "Ow53KHkcowI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEE7add_refEv) +STUB( + "Ow53YXkhW1A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEEdeEv) +STUB("Ow5kOQXiuSI", _ZN3JSC8Bindings13RuntimeObject11getCallDataEPNS_6JSCellERNS_8CallDataE) +STUB("Ow5mMPNmDGI", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo9getslotIdEv) +STUB( + "Ow8jTghMuRg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEC2ERS7_) +STUB( + "Ow8t4mj9b8g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEC2ERKS7_) +STUB("OwBDhaEhPzM", monoeg_g_list_append) +STUB("OwEucHOFqIo", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfileC2Ev) +STUB("OwFnPIKTBSk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEC1Ev) +STUB( + "OwHMBmcSo7U", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("OwVWMhieaHs", WKWebsiteDataStoreSetStatisticsIsRunningTest) +STUB( + "OwW7MKt74nE", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V127ReputationPropertiesFactory6createEPNS1_6Common10LibContextEiiiiiPNS5_12IntrusivePtrINS3_20ReputationPropertiesEEE) +STUB("Owa0jK8oppw", monoeg_g_hash_table_destroy) +STUB("OwbUIyxkkzg", mono_aot_Sce_Vsh_PsnMessageUtiljit_code_start) +STUB("OwcpepSk5lg", _ZNSt14numeric_limitsIxE8digits10E) +STUB("OwdCvNr3VXs", _ZN7WebCore12SharedBufferC2EON3WTF14FileSystemImpl14MappedFileDataE) +STUB( + "OweGskYmpu0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEC1EPKS8_) +STUB("OwfBD-2nhJQ", _ZTVSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE) +STUB( + "OwhkRKoIMHA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEEcvbEv) +STUB("OwjivtyfODU", sceKernelDeleteCpumodeEvent) +STUB("OwlBB-t-+SY", GCC_except_table101) +STUB("OwsjgCQyZUI", _ZN3sce2npneERK16SceNpTitleSecretRKNS0_13NpTitleSecretE) +STUB("OwtHG1s9WyQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEEaSERKS9_) +STUB("Oww35T-VZ34", _ZN9Inspector15RemoteInspector11setupFailedEj) +STUB("OwyHvMkCWP8", _ZN3WTF13printInternalERNS_11PrintStreamEl) +STUB("Ox-eSG-7e34", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicket9unsetviewEv) +STUB("Ox9i0c7L5w0", scePthreadRwlockRdlock) +STUB("OxDS41BqXws", _ZN9Inspector21CSSFrontendDispatcher17styleSheetRemovedERKN3WTF6StringE) +STUB("OxEIUqkByy4", pthread_mutex_getyieldloops_np) +STUB("OxGTTzJWSRQ", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_11CountryInfoEE3getEv) +STUB("OxI6k0G6RlU", sceNpManagerIntNotifyPlusFeature) +STUB("OxIG2zZW0Kw", unorm2_append) +STUB("OxJrPp8clPA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEEppEv) +STUB("OxLHJgWGubE", _ZN3sce7Toolkit2NP2V24Core7Request16ThreadPropertiesD2Ev) +STUB( + "OxLM2TWdyoU", + _ZN3JSC7JSProxy25getStructurePropertyNamesEPNS_8JSObjectEPNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("OxO+V0ouoS4", _ZN3sce4Json6Object8iteratorC2Ev) +STUB("OxRLrX7ibvM", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_7NpUsersEEC2Ev) +STUB( + "OxS4gRy0oyY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEEC2ERSA_) +STUB("OxV2cTcE3xs", _ZN3sce2Np9CppWebApi7Matches2V120RequestPlayerResults7setRankERKi) +STUB("OxcbjdWrK-o", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12BandwithInfoEEC2Ev) +STUB( + "OxeNeflLGhc", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi42ParameterWithBinaryRequestBodyToUploadDataD1Ev) +STUB("OxhIB8LB-PQ", pthread_create) +STUB("OxmRyHnBurE", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_17MessageAttachmentEE3getEv) +STUB("OxtSoOEVx64", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEE11get_deleterEv) +STUB( + "Oy4by+G78Zo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEEC1EPS8_PNS2_10LibContextE) +STUB("Oy52YlgLGxA", _ZN7WebCore10TimeRangesC2Ev) +STUB("Oy6IpwgtYOk", lseek) +STUB("Oy92GWEKFIQ", + _ZN7WebCore22EmptyFrameLoaderClient50dispatchDidReceiveServerRedirectForProvisionalLoadEv) +STUB("Oy9Xuaw3bQ8", mono_assembly_setrootdir) +STUB( + "OyAGuxnrH6o", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEptEv) +STUB( + "OyAW4YqsZD0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("OyEkVRNrR7s", _ZN3sce7Toolkit2NP2V212NetworkUtils12BandwithInfoD1Ev) +STUB( + "OyG8-a6ypWk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEEC2Ev) +STUB( + "OyHjrgdqIWg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEE11release_refEv) +STUB("OyNM6zDYiTo", _ZN9Inspector15RemoteInspector14registerTargetEPNS_24RemoteControllableTargetE) +STUB("OyOAu7mqmos", fuse_get_context_compat22) +STUB("OySMIASmH0Y", sceUserServiceGetNpAge) +STUB("OyVqOeVNtSk", sceAudio3dPortClose) +STUB( + "OyX2lR7IxV4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEC2EPS8_) +STUB( + "Oye5gt8RyjQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEEC2Ev) +STUB( + "OylAXctXTlU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEC1EPKS8_) +STUB( + "OylO3B2fCE0", + _ZN3sce7Toolkit2NP2V212ActivityFeed14postPlayedWithERKNS3_7Request14PostPlayedWithEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("OypvNf3Uq3c", _ZNSt14overflow_errorD2Ev) +STUB( + "Oyq3F29XQ2E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE8pushBackERKS8_) +STUB( + "Oyqymks-JQI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("OyrA1qLyRbE", PubSubCreateContext) +STUB( + "OywagC3ISIc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEmmEi) +STUB("OyxRC7GT4Es", sceVdecCoreSyncDecode) +STUB( + "Oyzb0r+8h7E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE10setContextEPNS2_10LibContextE) +STUB("Oyzf6kDk6Ns", cairo_pop_group_to_source) +STUB( + "Oz+XKhV+ByE", + _ZN3sce2Np9CppWebApi14SessionManager2V150GetUsersAccountIdPlayerSessionsResponseBodyFactory7destroyEPNS3_43GetUsersAccountIdPlayerSessionsResponseBodyE) +STUB( + "Oz-GVLZIs8k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEC2Ev) +STUB( + "Oz5tpCZoK+s", + _ZN7WebCore17PageConsoleClient10addMessageEN3JSC13MessageSourceENS1_12MessageLevelERKN3WTF6StringEONS4_3RefIN9Inspector15ScriptCallStackENS4_13DumbPtrTraitsISA_EEEE) +STUB("OzE-5G8NTN8", _ZNK3JSC16ScriptExecutable8lastLineEv) +STUB("OzJfg7CVeTs", _ZN7WebCore15AffineTransform5scaleERKNS_9FloatSizeE) +STUB("OzKvTvg3ZYU", sceNpAbortRequest) +STUB( + "OzLn5sVseRQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEC2EPNS2_10LibContextE) +STUB("OzLx1hQ0HLg", + _ZN7WebCore11HistoryItem31setShouldOpenExternalURLsPolicyENS_28ShouldOpenExternalURLsPolicyE) +STUB("OzMC6yz6Row", _ZTSm) +STUB("OzMS0BqVUGQ", _ZNKSt12bad_weak_ptr4whatEv) +STUB("OzSgRd8xkGM", u_setTimeZoneFilesDirectory_67) +STUB("OzY7NHs2BT0", _ZN7WebCore12ChromeClient25handleAutoFillButtonClickERNS_16HTMLInputElementE) +STUB("Ozhx1sJpIqQ", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11SessionDataEE12deepCopyFromERS7_) +STUB( + "OziDOXsIdUo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEEC1ERSA_) +STUB("Ozk+Z6QnlTY", _ZSt7_MP_RemPyy) +STUB( + "OzmuObrxBrA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEC2Ev) +STUB( + "OznFy9ajEUw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE7reserveEi) +STUB( + "Ozq5zNLo6RI", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponse8fromJsonERKNS_4Json5ValueE) +STUB("OzsnvV0TdHA", _ZNK7WebCore20ISOOriginalFormatBox10dataFormatEv) +STUB( + "OzwWhst3b6U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEmmEi) +STUB("P+0ePpDfUAQ", sceNetAddrConfig6Stop) +STUB("P+1ao3kggiw", _ZN12Mp4Retriever13processEsDescERPhii) +STUB( + "P+3r2zgKoqY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEC1Ev) +STUB("P+7-lg5ASRQ", _ZN3sce7Toolkit2NP2V212NetworkUtils12Notification14NetStateChangeaSERKS5_) +STUB("P+9UQOe1F2g", sceMouseGetHandle) +STUB("P+9gve1oMNc", delegate_virtual_invoke_9_p) +STUB( + "P+Ac1OZcfuw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEdeEv) +STUB("P+Hm5enx01Y", cairo_mesh_pattern_set_corner_color_rgba) +STUB("P+L2EGdprKk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEED2Ev) +STUB("P+O-4XCIODs", SSL_ASYNC_initServer) +STUB( + "P+PyF7x8RZY", + _ZN3sce7Toolkit2NP8Matching9Interface31getAdditionalSessionInformationEPNS1_28AdditionalSessionInfoRequestEPNS1_9Utilities6FutureINS1_28AdditionalSessionInformationEEEb) +STUB("P+QOsZCRg1A", ulist_getNext) +STUB("P+QUhowsumc", _ZN3sce2Np9CppWebApi6Common13ParameterBase20setWebtraceTagHeaderEPKc) +STUB("P+Rav2FdFSo", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110ResultTypeEEC2Ev) +STUB("P+RwmMQvqvA", sceCesRefersUcsProfileCp1257) +STUB("P+T9JtolZRw", _ZN7WebCore11FrameLoader6openerEv) +STUB( + "P+TjJLPxhUw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEC2EPKS8_) +STUB("P+YZTvx70k4", _ZTVN3JSC19HeapSnapshotBuilderE) +STUB("P+ZjKSLi5lg", + _ZN15AbstractStorage13YoutubeFolderC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) +STUB("P+bTZBk3z08", scePssCameraGetCameraConnection) +STUB("P+cIOdeN6ig", X509_VERIFY_PARAM_set1_ip_asc) +STUB( + "P+dft5JePfI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEE11get_deleterEv) +STUB("P+f2tgVi++w", _ZN12video_parser5vpcom6MallocE) +STUB("P+hgu937lFs", hb_buffer_add_utf16) +STUB( + "P+hhuNQtlN8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEEaSERKSA_) +STUB("P+q1OLiErP0", _ZNKSt7codecvtIcc9_MbstatetE5do_inERS0_PKcS4_RS4_PcS6_RS6_) +STUB( + "P+r1bnoSZEw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEE11release_refEv) +STUB("P+vTxd9BM2Q", GCC_except_table198) +STUB("P+w-H1l0kaI", uprv_decNumberScaleB_67) +STUB("P+zMqXom43M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEC2ERKS8_) +STUB( + "P+zdLoOUrXo", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("P--EhS6lDxw", _ZN7WebCore12JSTimeRanges14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB( + "P-4jpaK85V4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEEaSERKSA_) +STUB( + "P-6ZeRTRR5Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEEC1Ev) +STUB("P-7MVfzvpsM", sceCameraSetSharpness) +STUB("P-8awVLZpDw", _ZN7WebCore5ColoraSERKS0_) +STUB( + "P-DIfWP2WnY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEE11release_refEv) +STUB("P-DYctUODfM", _ZN7WebCore16NetworkSendQueue7enqueueEON3WTF7CStringE) +STUB( + "P-FhJEpBQEs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEC2EPKS8_) +STUB( + "P-FzsGKXYno", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEC2EPS8_) +STUB("P-HGfOZxkgU", _ZN3WTF13printInternalERNS_11PrintStreamEPKc) +STUB( + "P-HXoN945gk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEC2EPNS2_10LibContextE) +STUB("P-KCpYVj4dQ", bp) +STUB( + "P-NYYIs-cOo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE8capacityEv) +STUB( + "P-OkVK1lUUw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEE11get_deleterEv) +STUB("P-QRJAEQCSo", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V510AnnotationEEmmEv) +STUB("P-SlUALcYlM", _ZNK3sce2np10JsonObject8GetFieldEPKc) +STUB("P-T-RQ+3D1s", _ZNK7WebCore15HTMLBaseElement4hrefEv) +STUB("P-Tbv5G7L24", _ZN3JSC7Symbols26ModuleTranslatePrivateNameE) +STUB("P-Tq6lGgQUs", _ZN3sce7Toolkit2NP2V28Presence7Request19LocalizedGameStatusD1Ev) +STUB( + "P-V5KkJTbK0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEEC2ERKS9_) +STUB( + "P-WuZC+fYQU", + _ZN9Inspector33ApplicationCacheBackendDispatcher19getManifestForFrameElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("P-X-pyb+DqQ", _ZN7WebCore18JSHTMLImageElementD2Ev) +STUB("P-Zhj99ghLM", _ZNK7WebCore11MediaPlayer5endedEv) +STUB("P-ZqoL-NExI", + _ZN3sce2Np9CppWebApi14SessionManager2V116FromNonPsnMember8fromJsonERKNS_4Json5ValueE) +STUB("P-a-cc3ydug", YGNodeStyleSetPaddingPercent) +STUB("P-awBIrXrTQ", sceSystemServiceActivateHevcSoftTerm) +STUB("P-emrwPsot8", mono_aot_Sce_Vsh_GameListRetrieverWrapperunwind_info) +STUB( + "P-ieYKfk9jA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEixEm) +STUB( + "P-iuw1smvw0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("P-mrAc2R7PQ", _ZN4Manx14NetworkProfile9getStringENS_14SettingOptTypeE) +STUB( + "P-t6su3FmZs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEptEv) +STUB( + "P-uEQ-BffY0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEEC1Ev) +STUB( + "P01HtOfxTtE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEE11release_refEv) +STUB("P01hbLcSwL8", _ZN9Inspector31RuntimeBackendDispatcherHandlerD0Ev) +STUB("P02oAVAxens", sceVnaStartAnalyze) +STUB("P0383AW3Y9A", _ZNSt5ctypeIwED1Ev) +STUB("P04LQJQZ43Y", sceHmdInternalGetDeviceInformationByHandle) +STUB("P04ZezDSgk0", sceHeadTrackerUpdate) +STUB( + "P04kqB3lBko", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "P06XnxTpQrQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEED1Ev) +STUB("P08aaBrZn+c", sr03) +STUB( + "P08jjQRCj8o", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE4sizeEv) +STUB("P0DKy-qX4Ps", rgctx_fetch_trampoline_rgctx_127) +STUB( + "P0J-IzEH29I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEED2Ev) +STUB( + "P0M0YeyW+Lo", + _ZN7WebCore15JSSVGSVGElement6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_13SVGSVGElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB("P0TnSslRfw8", delegate_virtual_invoke_12) +STUB("P0V8cbW+Z-E", _ZNK9Inspector15RemoteInspector21hasActiveDebugSessionEv) +STUB( + "P0XhLb9v3Ek", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEE3getEv) +STUB("P0aGhG6WCo0", mono_aot_JSC_Netunbox_trampolines) +STUB( + "P0dHShpb0Ic", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE7reserveEi) +STUB( + "P0iS-Z3SJ7U", + _ZN7WebCore24CoordinatedGraphicsLayer21computePixelAlignmentERNS_10FloatPointERNS_9FloatSizeERNS_12FloatPoint3DES4_) +STUB("P0jjY6bxakI", __sys_dynlib_get_list2) +STUB( + "P0kWAW11ryo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEEC2Ev) +STUB("P0mseHxZBwA", _ZN7WebCore12EventHandler21handleMousePressEventERKNS_18PlatformMouseEventE) +STUB( + "P0nBeo6UF-Q", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody12setVariablesERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_18IdempotentVariableEEEEE) +STUB("P0nO6i13G+0", _ZN3NTF21ResourceRequestLogger9AdminPage4htmlEv) +STUB("P0nRNq2s9yM", _ZN15AbstractStorage11LocalFolderD0Ev) +STUB("P0pBar5X0uA", + _ZN3sce2Np9CppWebApi7Matches2V126RequestTeamMemberStatisticC2EPNS1_6Common10LibContextE) +STUB("P0uFWnN7IWs", _ZN7Nicosia5SceneD2Ev) +STUB("P0vACtrVWtw", _ZNK7WebCore14DocumentLoader12subresourcesEv) +STUB( + "P0yxZ-j4cwE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEE7get_refEv) +STUB("P11NTE-UQXM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE8copyFromERKS7_) +STUB("P12aEEi4s4E", WKHitTestResultCopyAbsoluteImageURL) +STUB("P14ATpXc4J8", sceSslCreateSslConnection) +STUB("P15JPrJR0hY", unum_getSymbol_59) +STUB("P17jonIyIB8", _ZN4IPMI4impl10ServerImpl13runDispatcherEPvm) +STUB("P191XrgQkgM", g_get_user_name) +STUB("P1CugZ99Uzc", sceAgcDcbEndOcclusionQueryGetSize) +STUB( + "P1De3KPWUDk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEE7add_refEv) +STUB( + "P1H6kZsQVhs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEC1Ev) +STUB( + "P1L-g98OIQY", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getBoolean3Ev) +STUB("P1MS5WSNAjY", usearch_setOffset_67) +STUB( + "P1NfjjLSBUo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEC2Ev) +STUB( + "P1SOorM5x7A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEED2Ev) +STUB("P1T4OHkwjKg", mono_aot_System_Runtime_Serializationunwind_info) +STUB( + "P1aOKThI9pk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEaSERKS7_) +STUB("P1bIHoga4jE", sceVideoOutDriverGetEopHandle) +STUB( + "P1bQwZGkhRs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE5beginEv) +STUB("P1cH+hz2GyE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEEaSERS9_) +STUB( + "P1jT7bHXADg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEED1Ev) +STUB( + "P1maMW4JVEY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEC1EPNS2_10LibContextE) +STUB( + "P1qcQXocrO4", + _ZN3sce2Np9CppWebApi15Personalization2V118ErrorEntityFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_11ErrorEntityEEE) +STUB( + "P1rAe+hodFg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEE3getEv) +STUB("P1su7LBMSUw", sceLoginMgrServerLoginServiceGetRequestParam) +STUB("P1xs1VUzcj0", AnnotateExpectRace) +STUB("P1yolimtkbU", sceFsDevpfsDeregisterEvent) +STUB( + "P2+B5JnxVkM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEED2Ev) +STUB( + "P2+GP4bkjis", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE21intrusive_ptr_add_refEPS7_) +STUB("P21OxFwKDac", _ZN3sce7Toolkit2NP2V26Trophy7Request20GetTrophyPackSummaryD1Ev) +STUB( + "P29LXIeeNZY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE5beginEv) +STUB("P2GaYQ7Y4lg", _ZN3PAL13SleepDisablerC2EPKcNS0_4TypeE) +STUB("P2IjaGD66NE", cairo_font_options_copy) +STUB("P2M834ekYIw", _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_7DOMRectE) +STUB("P2O3gx3qsmY", rgctx_fetch_trampoline_mrgctx_102_p) +STUB("P2QIyj9sjR0", _ZN3JSC16setNeverOptimizeEPK15OpaqueJSContextPK13OpaqueJSValue) +STUB("P2QLsX2dKfw", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats18getFrequentlyMutedEv) +STUB("P2S3--pUqtw", _ZN7WebCore12JSTimeRangesD2Ev) +STUB( + "P2SgI98dnlk", + _ZN3sce2Np9CppWebApi14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBody16unsetInvitationsEv) +STUB("P2SmsaHHQRM", + _ZN7WebCore9CookieJarC1EON3WTF3RefINS_22StorageSessionProviderENS1_13DumbPtrTraitsIS3_EEEE) +STUB("P2YwyQoFkPM", _ZN8meta_gen11MsvPromoter22retrieveAudioCodecInfoEv) +STUB( + "P2aWpV01QJ4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "P2awWOJZBC0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEEaSERKSA_) +STUB( + "P2bH9wk9FzQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("P2cGbJ5nD1w", _ZNK3sce2np10JsonNumber6GetNumEPm) +STUB( + "P2dWVeUNHwY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEplEm) +STUB( + "P2g13CR6WNw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEED2Ev) +STUB( + "P2m+E-1dt20", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEC1Ev) +STUB("P2sq9TH-fEA", _ZNK7WebCore11FrameLoader10isCompleteEv) +STUB("P2vpb9aWXtI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEC2Ev) +STUB( + "P2y1IlzY9eo", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEiRNS2_10LibContextEPT_m) +STUB( + "P3+Jzvo8ie4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEC1Ev) +STUB("P330P3dFF68", Need_sceLibc) +STUB("P38JvXuK-uE", fegettrapenable) +STUB("P38mNmonvHs", scePlayReadyMemRealloc) +STUB("P3AeWBvPrkg", sce_net_in6addr_loopback) +STUB( + "P3BFNzWVioc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("P3BsMTTfmZU", _ZNK15AbstractStorage12LocalContent7GetStatEPNS_4StatE) +STUB("P3CKnw57rHI", _ZN8meta_gen13JpegRetriever16GetPointerToTextEPKhjPPcPj) +STUB("P3DleBvp41I", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_6NpUserEE3getEv) +STUB( + "P3E1U9d4-0M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("P3G4jIsxkZg", sceFontGraphicsTextureGetSurface) +STUB("P3J6QhgFdXQ", JNU_ThrowIOException) +STUB( + "P3LczZ7wR7E", + _ZN3sce2Np9CppWebApi14SessionManager2V131JoinedPlayerSessionWithPlatformC2EPNS1_6Common10LibContextE) +STUB("P3NGPgoeLII", _ZN3WTF17double_conversion23StringToDoubleConverter14StringToDoubleEPKcmPm) +STUB( + "P3OXRjNwtSE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEC2EPS8_) +STUB("P3anr7ige48", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBodyC2EPNS1_6Common10LibContextE) +STUB("P3dTfZ0gFvQ", _ZN7WebCore21JSRemoteDOMWindowBase25s_globalObjectMethodTableE) +STUB("P3daBLFFREw", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainerC1Ev) +STUB( + "P3gUyz0kWxw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE4sizeEv) +STUB("P3oItRLweeg", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124NatConnectivityToMetricsD2Ev) +STUB("P3tcguA8xus", __ubsan_handle_out_of_bounds) +STUB("P41kTWUS3EI", scePthreadGetschedparam) +STUB( + "P43y5NESKKs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEneERKS9_) +STUB("P44iOLZzpwU", + _ZN7WebCore12SettingsBase18setFixedFontFamilyERKN3WTF12AtomicStringE11UScriptCode) +STUB( + "P46utwq+KRQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB("P48gb1E+oo0", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container14publisherIsSetEv) +STUB("P4AZdmrG9iQ", _ZN7WebCore8Settings37setScrollingPerformanceLoggingEnabledEb) +STUB("P4BojBRzdy4", GCC_except_table300) +STUB("P4HU0NvfOtk", _ZN3JSC11VMInspector22dumpCellMemoryToStreamEPNS_6JSCellERN3WTF11PrintStreamE) +STUB("P4OkrF+7hsM", _ZNK3sce2Np9CppWebApi11UserProfile2V114PersonalDetail20profilePicturesIsSetEv) +STUB( + "P4Tlb6gPNU4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEC2Ev) +STUB("P4VhCJbgaOw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEC1Ev) +STUB("P4X4vGiFtNw", _ZN4Manx9tailmatchEPKcS1_) +STUB("P4YpPziLBd4", sceNpGlobalHeapGetAllocatorExPtr) +STUB("P4Z2cWdzO5o", sk_pop_free) +STUB("P4bb6JxoBdE", JSWeakObjectMapRemove) +STUB( + "P4er0pNcQBY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEmmEi) +STUB( + "P4f9nZApU7s", + _ZN3WTF20ParallelHelperClient7setTaskEONS_6RefPtrINS_10SharedTaskIFvvEEENS_13DumbPtrTraitsIS4_EEEE) +STUB( + "P4fSIJn1i48", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "P4lAd0bUyF4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEED2Ev) +STUB("P4pAkAj-+U0", mono_assembly_addref) +STUB("P4q5pGTwqw0", WKPageConfigurationSetBackgroundCPULimit) +STUB( + "P4qh57k+TXs", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEEC1ERKSC_) +STUB( + "P4sWQuI4WLQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEptEv) +STUB("P4z5uq2vHzk", + _ZN3sce7Toolkit2NP9NpTitleId14setTitleSecretERK12SceNpTitleIdRK16SceNpTitleSecret) +STUB("P4zZXE7bpsA", sceNetBandwidthControlSetDefaultParam) +STUB( + "P5-A9vsDU6s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEE3getEv) +STUB("P50d7oZFzWw", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_11CountryInfoEED1Ev) +STUB( + "P54Sjj9YzP4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEneERKS9_) +STUB("P563r-eGAh4", sceLncUtilRaiseException) +STUB( + "P569zeD7Qgo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEcvbEv) +STUB("P5AY0AQt8MU", _ZN12video_parser7cVpUtil14vp_ff4_strncmpEPvPKcS3_m) +STUB( + "P5EjMD5fics", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEC1Ev) +STUB("P5I4gn0zYfs", __cxx_global_var_init .4) +STUB("P5LQYLxCX44", mono_aot_I18Nunbox_trampoline_addresses) +STUB("P5MUr8Lot6U", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container14setDescriptionEPKc) +STUB("P5N5znXLNUM", _ZN3sce7Toolkit2NP2V24Core7Request10InitParamsD2Ev) +STUB("P5PrmNqXS1Y", _ZN3JSC23MacroAssemblerX86Common18s_sse4_2CheckStateE) +STUB("P5Tr3gQgcp8", Java_com_sony_bdjstack_core_CoreXletContext_n_1notifyDestroyed) +STUB( + "P5W+taaWVgw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEeqERKS9_) +STUB("P5b86RAAMx4", sceApplicationGetCanvasHandleByApplicationLocalPid) +STUB("P5csbQB7tDs", WKDatabaseManagerGetDatabaseDetailsCurrentUsageKey) +STUB("P5dPeiLwm-M", sceImeConfigSet) +STUB("P5e53dTYzI0", sceVideoCoreAsyncSendRequest) +STUB("P5gxJLwyQFw", mono_bounded_array_class_get) +STUB("P5hjbjUCnqM", _ZN3JSC13WatchpointSet11fireAllSlowERNS_2VMEPKc) +STUB( + "P5mDlGPLSUU", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC1Ev) +STUB("P5mzaARyans", JNU_ThrowIllegalAccessException) +STUB("P5pdoykPYTk", sceHttpReadData) +STUB("P5slpXsXy04", sceLibSecureRemoveHash) +STUB( + "P5u0tWX34Tw", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSessionIdRequestBodyFactory7destroyEPNS3_37PatchGameSessionsSessionIdRequestBodyE) +STUB("P5vMn5NRcks", _ZN3sce7Toolkit2NP2V27Session7Request6UpdateC1Ev) +STUB("P5wdogQ-H6o", YGNodeSetPrintFunc) +STUB("P66BWCp8Ps4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEEdeEv) +STUB("P67QGjv0uSA", WKFramePolicyListenerUseInNewProcess) +STUB("P6A3ytpsiYc", sceHttpDeleteConnection) +STUB("P6DuZ6UTmmk", _ZN7WebCore14JSVoidCallbackC2EPN3JSC8JSObjectEPNS_17JSDOMGlobalObjectE) +STUB("P6Fc747iUjI", _ZN7WebCore15PasteboardImageC2Ev) +STUB("P6LPhROP9zM", rgctx_fetch_trampoline_mrgctx_127) +STUB( + "P6NRugbIEOk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("P6QUZKaAh6g", _WLdtob.inf) +STUB("P6RoADVaWGM", _ZN3JSC7Symbols21loadModulePrivateNameE) +STUB( + "P6Sxd5JTvtQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEE5resetEPS6_) +STUB("P6WOAeb0lJ8", ft_corner_is_flat) +STUB( + "P6YJ-GvdVf0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("P6Yiba6u7cc", scePfsPreadDecompressBlock) +STUB( + "P6ZMLf1qIVQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEC1Ev) +STUB("P6aCGp6wCt8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE5beginEv) +STUB( + "P6bbdBhNoH4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEmmEi) +STUB("P6dUEXUHXjo", sceKernelSetCallRecord) +STUB( + "P6eb93gKI9I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEEC1EPS8_PNS2_10LibContextE) +STUB( + "P6fEm9IZ3QY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEE11release_refEv) +STUB("P6fVk0LPubc", NpStateManagerRtcSetTick) +STUB("P6fkTotWFEg", sceNpAsmClientGetNpComInfo2A) +STUB( + "P6gQ9HIjJpM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE5emptyEv) +STUB("P6lAFGsZE9Q", wpe_pasteboard_string_free) +STUB("P6lcDr1Z3dM", _ZN7WebCore9HTMLNames21aria_errormessageAttrE) +STUB("P6mctRuryDY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEEC1ERKS7_) +STUB("P6nwSxCF8uE", mono_image_get_table_rows) +STUB( + "P6nyDDbDYhE", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetrics8fromJsonERKNS_4Json5ValueE) +STUB( + "P6oRKW4NWSw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE7reserveEi) +STUB("P6piso307SE", sceNpNotifyPremiumFeature) +STUB( + "P6uaHZjCnAQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12string7IsSetEv) +STUB( + "P6yv7XTmO84", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE5emptyEv) +STUB( + "P7-0yHtE12k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEmmEi) +STUB("P71fvnHyFTQ", sceSystemServiceRequestToChangeRenderingMode) +STUB("P72uwJlJjX4", _ZN4IPMI6ServerC2Ev) +STUB( + "P77IY4z83vk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEEC1Ev) +STUB( + "P77V1jDFKvw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEEptEv) +STUB("P7CvsMqVTPo", _ZN7WebCore11MediaPlayerC2ERNS_17MediaPlayerClientE) +STUB( + "P7Gx3KmUoPA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "P7Hb12inrhQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("P7Ibge-VoSQ", _ZNK3JSC7JSValue19toWTFStringSlowCaseEPNS_14JSGlobalObjectE) +STUB( + "P7MfzTCEMJ4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEdeEv) +STUB("P7Q2NjKAl60", JVM_GetCPClassNameUTF) +STUB( + "P7UcaJAFtpw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("P7Ut3iZu-f8", uhash_puti_67) +STUB( + "P7W+eeku72Y", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEixEm) +STUB( + "P7X8PePB7ro", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEEiRNS2_10LibContextEPT_m) +STUB( + "P7XnEkvYakU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEE7add_refEv) +STUB("P7Z0FByLPRw", Java_java_awt_GnmImage_nativeSetRGBArray) +STUB( + "P7ZQ+bqg-6k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEmmEv) +STUB( + "P7atUgtye6A", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE5beginEv) +STUB("P7ffGUoQ824", _ZN7WebCore11EventTarget24dispatchEventForBindingsERNS_5EventE) +STUB("P7gLTdgFSDQ", _ZN7WebCore18ScrollingStateTreeC1EPNS_25AsyncScrollingCoordinatorE) +STUB("P7hXEsJitHc", mono_declsec_get_linkdemands) +STUB( + "P7kIjHVgHQ4", + _ZN9Inspector24BrowserBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) +STUB("P7l9+yBL5VU", _ZTSSt12bad_weak_ptr) +STUB("P7mHOXXw6b8", _ZN3sce7Toolkit2NP2V212ActivityFeed5MediaC2Ev) +STUB( + "P7r-gO79fuU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEC2Ev) +STUB( + "P7rAGeMfEZk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEEptEv) +STUB("P7s2WVUikNU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEED1Ev) +STUB( + "P7t5lGbkSZE", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM18LiveRegionRelevantEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB( + "P7tMBqiUI3E", + _ZN8meta_gen11MsvPromoter23setKeyValue_TBLI_OffsetENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti) +STUB("P7vPDE-pNrw", metadata_alloc) +STUB("P7x43vs+Yck", ulistfmt_closeResult_67) +STUB("P84DgVeO6RE", _ZN7WebCore11MathMLNames9mstyleTagE) +STUB("P87dJGbKIaE", udatpg_getFieldDisplayName_67) +STUB("P8D+n5jin08", _ZNK7WebCore5Color7cssTextEv) +STUB("P8F2oavZXtY", _ZNSt8ios_baseD2Ev) +STUB( + "P8H6CcFOPKc", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V112StatsFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_5StatsEEE) +STUB("P8QD9lY82pI", _ZN7WebCore11MediaPlayerC1ERNS_17MediaPlayerClientE) +STUB( + "P8VdZ-naNVQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB( + "P8Xh0-7Itww", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "P8cxvCg0D0I", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectator12setsessionIdEPKc) +STUB( + "P8hXFXDXj8o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEmmEi) +STUB("P8hfXGY4+2U", + _ZNK7WebCore16DocumentTimeline48numberOfAnimationTimelineInvalidationsForTestingEv) +STUB( + "P8mW9mjSCP4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEEaSERS9_) +STUB("P8pOQNMw7pQ", _ZNK3sce2Np9CppWebApi6Common6VectorImE5emptyEv) +STUB("P8x+Onl4oPA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStatsC1Ev) +STUB("P8y9OgqOGts", WKBundleFrameGetPage) +STUB("P9+90HStC44", sceVisionManagerClose) +STUB("P9-3hpI-YCg", uloc_getDisplayKeyword_67) +STUB("P998ZUmJxX8", uidna_nameToASCII_UTF8_67) +STUB( + "P9BQIwO++10", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE7reserveEi) +STUB("P9Bggzmp21Q", __sanitizer_verify_contiguous_container) +STUB( + "P9Lj4GsBw5o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEC1ERS7_) +STUB("P9M5RftRHFE", sceKernelDebugGetSdkLogText) +STUB( + "P9Pe6MpybxE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEEcvbEv) +STUB("P9QB1NK29Yg", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIiEC2EPKi) +STUB( + "P9SUh0BqrAY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEE11get_deleterEv) +STUB( + "P9Tm-o0KYfo", + _ZN7WebCore19StorageQuotaManager24requestSpaceOnMainThreadEmON3WTF17CompletionHandlerIFvNS0_8DecisionEEEE) +STUB("P9VdJPTTQuc", Java_org_havi_ui_HFontCapabilities_pIsCharAvailable) +STUB("P9XP5U7AfXs", _ZNSt14numeric_limitsIjE9is_signedE) +STUB("P9Yn0hz8IJs", _ZN7WebCore4Attr8setValueERKN3WTF12AtomicStringE) +STUB( + "P9Zj2mZ-Qy4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("P9ZouL3BMOs", _ZNSt15basic_streambufIcSt11char_traitsIcEE6setbufEPci) +STUB("P9ZvccrFXwM", _ZN7WebCore9HTMLNames25onwebkitwillrevealtopAttrE) +STUB("P9a-HzKGYXY", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi32ParameterToPostGameSessionsTouchC2Ev) +STUB( + "P9asU7VeJEQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEdeEv) +STUB("P9bHf+GJkCc", _ZN7WebCore11FontCascadeC2Ev) +STUB("P9c-vF6a-hc", SSL_get_shutdown) +STUB( + "P9h4bW5cUds", + _ZNK3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE11getResponseERS8_) +STUB("P9iKqxAGeck", sceGnmDriverInternalRetrieveGnmInterfaceForResourceRegistration) +STUB("P9o3V+9nJT0", ulocimp_addLikelySubtags) +STUB( + "P9puV0mbhr8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEE7add_refEv) +STUB("P9spyVa2GVU", _ZN15AbstractStorage15FacebookServiceC1Ev) +STUB("P9v+xD9gBQU", sceEditMp4Unite) +STUB("P9vsWZVDqJ8", _ZN9Inspector28PageBackendDispatcherHandlerD1Ev) +STUB("P9y39Inv-Dw", _ZN3WTF22charactersToUIntStrictEPKDsmPbi) +STUB("P9zf9u5VjMg", _ZN3sce7Toolkit2NP28GameCustomDataMessageRequestC1Ev) +STUB("PA+PwQax14c", + _ZN7WebCore22CSSAnimationController33animationsAreSuspendedForDocumentEPNS_8DocumentE) +STUB("PA-dsPwxOIw", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V15Error9getSourceEv) +STUB("PA2tm+3SinE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE8capacityEv) +STUB("PA3hKfVqH00", WKPreferencesGetAriaReflectionEnabled) +STUB( + "PA5AXQpseto", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("PA6ZwQM5tNQ", sceKernelIccGetPowerOperatingTime) +STUB("PA9VYFAVKIE", _ZN3sce2np8SelectorD2Ev) +STUB( + "PAFhH7aqxMk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEEcvbEv) +STUB( + "PAGzbG+nz7M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "PAP2TT7JJnM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEixEm) +STUB( + "PAPQePEBoQA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("PAZLRuN7rC8", _ZN7WebCore37CrossOriginAccessControlCheckDisablerC2ERKS0_) +STUB("PAZOYm4r4m0", _ZN3sce7Toolkit2NP2V28Matching7Request10CreateRoomC1Ev) +STUB("PAa6cUL5bR4", sceHmdReprojectionStopLiveCapture) +STUB("PAb1VdKhVbc", monoeg_g_get_home_dir) +STUB("PAcXDENC3IM", _ZN7WebCore4PageC1EONS_17PageConfigurationE) +STUB("PAdGdm0C67E", _ZN3JSC7Symbols19argumentPrivateNameE) +STUB( + "PAeYhpA6q3g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEmmEv) +STUB("PAjnisXS1CY", __start__Zdynamic) +STUB("PAk68TghXqI", + _ZN12video_parser13cVideoMetaMP411getMetadataENS_12VP_META_TYPEEjjPNS_12VpMetadata_tE) +STUB("PAkQucLJN0c", _ZN15AbstractStorage10YoutubeAPIC2Ev) +STUB( + "PAmloppFNCk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEC1EPS6_PNS2_10LibContextE) +STUB("PAp-xS1m7bI", _ZN3WTF16codePointCompareENS_10StringViewES0_) +STUB( + "PApuj9umFKY", + _ZN3sce2Np9CppWebApi14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyD1Ev) +STUB("PApwEcGpdyM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12BlockedUsersEEC2Ev) +STUB( + "PAq9r9aZw+4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEppEv) +STUB("PAytDtFGpqY", sceRazorCpuFiberSwitch) +STUB( + "PB+UhgHKnH0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC1Ev) +STUB( + "PB+XLIrZI2U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEEC1Ev) +STUB("PB1MYYPazW0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEppEi) +STUB( + "PB2-+pu9U7o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("PB4GG2sug-o", _ZNK3JSC8Debugger19pausingBreakpointIDEv) +STUB("PB7axpunmvY", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIiE21intrusive_ptr_add_refEPS4_) +STUB("PB9gxvI5EDE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEEppEv) +STUB("PBP4KSDTyII", + _ZN7WebCore13JSDOMRectList15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB( + "PBTWwvK9oXg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEneERKS9_) +STUB("PBY5evsCMBU", _ZNK7WebCore5Range20absoluteBoundingRectENS0_27RespectClippingForTextRectsE) +STUB("PBaIk4KJOtE", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead23unsetSupportedPlatformsEv) +STUB("PBaw6UXhTVc", jvmciHotSpotVMIntConstants) +STUB("PBbZjsL6nfc", _ZNSt4_Pad7_LaunchEPKcPP7pthread) +STUB( + "PBc4LFKaGVw", + _ZN9Inspector8Protocol13BindingTraitsINS0_8Debugger8LocationEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE) +STUB("PBcrVpEqUVY", sceAudioPropagationSourceCalculateAudioPaths) +STUB( + "PBdqTnLnokM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "PBf1EzTOEHM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEC1EPS6_PNS2_10LibContextE) +STUB("PBfjo+Yme7I", _ZN3sce2np7HttpUriC1EP14SceNpAllocator) +STUB("PBkQ+zJctP8", delegate_virtual_invoke_0_p) +STUB("PBmrW72wbPQ", scePlayerSelectionDialogUpdateStatus) +STUB("PBnSCvBN1zE", _ZN3WTF14RefCountedBase33areThreadingChecksEnabledGloballyE) +STUB( + "PBp-IKluEjI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEaSERKS7_) +STUB( + "PBrbdoKBGQU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEC2Ev) +STUB( + "PBrdYjoh-nU", + _ZN3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate19setPlayerAttributesERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_9AttributeEEEEE) +STUB( + "PBwwr8j9ShY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("PBx-XlfKxGA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEEC1ERKSA_) +STUB( + "PC-ixW+85EE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEixEm) +STUB("PC0gS0pL-qo", _ZN3JSC7Symbols36allocateUint8ClampedArrayPrivateNameE) +STUB("PC4jq87+YQI", sceGameLiveStreamingCheckCallback) +STUB("PC5Gpw2wImU", _ZN3sce7Toolkit2NP17FriendInfoRequestC1Ev) +STUB("PC5SGAQZ0lI", mono_aot_Sce_Vsh_VoiceMsg_VoiceMsgWrapperplt_end) +STUB( + "PC8pPPSCUMA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEptEv) +STUB("PC9bwLmXqxE", mono_aot_Sce_Vsh_Orbis_BgftAccessorplt) +STUB( + "PCAfc7oIgzM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEED1Ev) +STUB("PCFtlcOHfW4", sceNpTrophy2SystemAbortHandle) +STUB("PCOqpXwEzTo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEED2Ev) +STUB("PCUtZJQaf9U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEdeEv) +STUB( + "PCcpLHLdoO4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE8copyFromERKS9_) +STUB("PCe-c5KNG38", _ZN3WTF25fastMallocDumpMallocStatsEv) +STUB( + "PCfXVYf+9GU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEE7add_refEv) +STUB("PCgbanhN-MU", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V18Variable10unsetValueEv) +STUB("PCrlWY8BQ6k", fuse_fs_ioctl) +STUB("PCxVKCqLizM", _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEED2Ev) +STUB("PCzV4YAnhuo", + _ZN3JSC8JSObject26setPrototypeWithCycleCheckERNS_2VMEPNS_9ExecStateENS_7JSValueEb) +STUB( + "PD0Wgo19Smc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEED1Ev) +STUB( + "PD38Zv5qEiY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEEptEv) +STUB( + "PD3zHVs8L0A", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEeqERKS9_) +STUB("PD49UhStsJI", unorm2_spanQuickCheckYes) +STUB( + "PD4L4BPhIco", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "PD5VwSZaYH4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEED1Ev) +STUB("PD5bnBTsv6Y", sceContentSearchGetContentLastUpdateId) +STUB("PD9kUBVe8JE", + _ZNK3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayer16customData1IsSetEv) +STUB("PDCAfPz5LXI", unorm2_getNFKDInstance_59) +STUB("PDD7gmqbnKE", sceNpSnsIntFbGetTitleInfo) +STUB( + "PDPEnAtA1YQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE8pushBackERKS8_) +STUB("PDQbEFcV4h0", _FQuadph) +STUB("PDSIezqtTHc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEEC2ERKSA_) +STUB("PDSPK1UFA9o", mono_btls_x509_crl_get_by_serial) +STUB("PDX01ziUz+4", _ZSt13_Syserror_mapi) +STUB("PDXr1jrDajY", delegate_invoke_impl_target_5_p) +STUB( + "PDZ6SLg1r+U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEC1Ev) +STUB("PDasby6lhDo", _ZN3sce2Np9CppWebApi7Matches2V125ResponseCompetitiveResult14getTeamResultsEv) +STUB("PDkapOwggRw", sceNetBandwidthControlGetPolicy) +STUB("PDkib0zyABg", _ZNK3sce4Json14InitParameter225getSpecialFloatFormatTypeEv) +STUB("PDu2PNjfb1M", scePlayReadyReset) +STUB("PDxS48xGQLs", sceHttpSetChunkedTransferEnabled) +STUB( + "PE26lORXmTE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEptEv) +STUB("PE2zHMqLSHs", sceAudioOut2ContextAdvance) +STUB("PE5l8BPZrRY", sceNpTrophySystemGetTrpTrophyConfig) +STUB( + "PE804tx+VoI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEE5resetEPS6_) +STUB("PEAZaQLLjnY", WKWebsiteDataStoreConfigurationCopyLocalStorageDirectory) +STUB("PEI-+9NQV6s", + _ZN7WebCore10Pasteboard33writeTrustworthyWebURLsPboardTypeERKNS_13PasteboardURLE) +STUB("PERc71DuaAs", _ZNK3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer11getOnlineIdEv) +STUB( + "PET-nt69-D0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("PEU-SAfo5+0", _LDtento) +STUB("PEVZ9ZJMX1U", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product16descriptionIsSetEv) +STUB("PEWusNk7cIM", WKIconDatabaseCopyIconURLForPageURL) +STUB( + "PEY9I9cM8Ik", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("PEYQJa+MWnk", sceFontGraphicsFillPlotSetMapping) +STUB("PEdJOnkuC-M", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEEaSERS6_) +STUB("PEdNEWhkMww", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE3endEv) +STUB("PEe0R7gBHbc", sceSocialScreenDialogInitialize) +STUB("PEggcTbDlfE", hb_buffer_reset) +STUB( + "PEh4cSZnSg4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("PEjv7CVDRYs", sceFontDestroyWritingLine) +STUB("PElQ++HoFH4", + _ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer15getPushContextsEv) +STUB("PEo09Dkqv0o", sceNpTrophyIntGetTrpIconByUri) +STUB( + "PEpsnLRM+s8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot19unsetnpServiceLabelEv) +STUB("PEu-h2Pqk6k", + _ZN15AbstractStorage18DailymotionContent13writeExternalESt10shared_ptrINS_7ContentEE) +STUB("PEuuRn6zhF4", _ZN15AbstractStorage7ServiceD1Ev) +STUB("PEzlVi7C+-8", ucal_openTimeZoneIDEnumeration_67) +STUB( + "PF4QcDVINbs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "PFAIrMV0t8M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEED2Ev) +STUB("PFJlDy+Jeb0", _ZN7WebCore9HTMLNames13playcountAttrE) +STUB( + "PFJqzzQX6Do", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEC2Ev) +STUB( + "PFNcaAzGJTU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "PFQnwI04Jwo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEEptEv) +STUB("PFRl8SmSW+4", sceCamera2Initialize) +STUB("PFT2S-tJ7Uk", sceFiberSwitch) +STUB("PFV++xTU7Sk", _ZN3JSC11VMInspector9dumpStackEPNS_9ExecStateEj) +STUB("PFec14-UhEQ", scePadVirtualDeviceDeleteDevice) +STUB("PFfR4JFlCAM", sceAppInstUtilGetPrimaryAppSlot) +STUB( + "PFgPpYvs72o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEEptEv) +STUB( + "PFo4pO4NKAI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEeqERKS9_) +STUB("PFto-dqmGdE", _ZN3JSC6Symbol6createERNS_2VMERN3WTF10SymbolImplE) +STUB("PFu3-HrRrkA", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V314MissingElement9unsetNameEv) +STUB("PFveWxbvS2g", mono_metadata_parse_marshal_spec) +STUB("PFxpQ6lkQP0", d2i_RSA_PUBKEY) +STUB("PG-2ZeVVWZE", _ZN6Dinkum7threads10lock_errorD0Ev) +STUB("PG4HVe4X+Oc", _LErfc) +STUB("PG6C3+Y2PG4", _ZN3sce3Xml10SimpleDataC1EPKcm) +STUB( + "PG9WHTVGC0I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEEaSERSA_) +STUB( + "PGAJrNNVbW0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEED1Ev) +STUB( + "PGEM7Lf5q+Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEC2EPKS8_) +STUB( + "PGFm-7PMSCM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEplEm) +STUB("PGHjjtZxKvs", sceShellCoreUtilPreNotifyOfGameLiveStreaming) +STUB( + "PGJvwH4eOA4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE3endEv) +STUB("PGLtQ31bblg", psl_load_file) +STUB("PGRYlJHDzro", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEptEv) +STUB( + "PGUW4zAmP8Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEC2Ev) +STUB( + "PGVcTwEhYLg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEplEm) +STUB( + "PGWJkd20W3E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "PGan2BhHHRQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEE11get_deleterEv) +STUB("PGbdeeOVRRU", _ZNK3sce2Np9CppWebApi6Common6Binary4sizeEv) +STUB("PGcxtCMq4cg", _ZN7WebCore4Page25suspendScriptedAnimationsEv) +STUB("PGd27ScL108", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEC2Ev) +STUB("PGhQHd-dzv8", sceKernelMmap) +STUB( + "PGhuIJpbtBE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEC1EPKS9_) +STUB("PGjg1W29DPM", delegate_virtual_invoke_32_p) +STUB("PGlO4u5duZc", ShDestruct) +STUB("PGsAGnnRstY", sceShellCoreUtilIsEyeToEyeDistanceAdjusted) +STUB("PGsWNnS7CE8", SSL_get_ex_new_index) +STUB("PGtPAOHyWqk", _ZN3JSC23errorMesasgeForTransferEPNS_11ArrayBufferE) +STUB( + "PGttEJNabMo", + _ZN7WebCore27PlatformMediaSessionManager37processDidReceiveRemoteControlCommandENS_20PlatformMediaSession24RemoteControlCommandTypeEPKNS1_21RemoteCommandArgumentE) +STUB("PGvCCp4g8gg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEED1Ev) +STUB("PGxMwm8uS0Y", sceAc3EncCreateEncoder) +STUB("PGyCIh2cxS0", _ZN7WebCore16HTMLStyleElement11setDisabledEb) +STUB("PH3hLA235Sk", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountIdC2ERS5_) +STUB("PH8EqfJlRE0", + _ZN3sce7Toolkit2NP8Commerce9Interface16voucherCodeInputERKNS1_18VoucherInputParamsEb) +STUB( + "PH9+5MKuuhk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "PHHg73TuHrE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEppEv) +STUB("PHRTGhoH5bQ", uregex_splitUText_67) +STUB("PHUWlwS59cM", _ZNK7WebCore17CSSPrimitiveValue13primitiveTypeEv) +STUB( + "PHUbQnQTxsw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEE5resetEPS6_) +STUB("PHVPK9wRYjI", _ZN7WebCore11HistoryItem19childItemWithTargetERKN3WTF6StringE) +STUB("PHWvRXbOnYs", _ZN3sce2np20BufferedStreamReaderD2Ev) +STUB( + "PHYTh3gyiM8", + _ZN9Inspector24ConsoleBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("PHZWPDcDRdM", sceVisionManagerGetHitCountOfRegisterUserData) +STUB( + "PHbtG-HjfM4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEED1Ev) +STUB("PHjc4hRWNiI", GCC_except_table19) +STUB("PHlBJ4I43Uc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEEplEm) +STUB("PHnuI4LhuRk", sceSaveDataDirNameSearch2) +STUB("PHrpHMSU8Cs", sceNpStrncpyToBuf) +STUB("PHs-EtAF2zU", _ZN7WebCore26Matrix3DTransformOperationD2Ev) +STUB("PHsU7rOQ7nw", + _ZN3JSC17DeferredWorkTimer26hasDependancyInPendingWorkEPNS_8JSObjectEPNS_6JSCellE) +STUB("PHu9FjhTURQ", WKDictionaryRemoveItem) +STUB("PI1X7RZGbYo", _ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody9getStatusEv) +STUB("PI4bieTfnks", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product23contentDescriptorsIsSetEv) +STUB( + "PI70cGkuqZc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEmmEi) +STUB("PI71BfdD3s4", cmemory_cleanup_67) +STUB("PI7Qn4yLaFs", _ZN7WebCore12ChromeClient20didRemoveMenuElementERNS_15HTMLMenuElementE) +STUB("PI7jIZj4pcE", sceRandomGetRandomNumber) +STUB("PI8LNlzz5gw", mono_aot_Sce_Vsh_AutoMounterWrapperjit_got) +STUB("PI8Y5JaP98o", _ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest15getMatchResultsEv) +STUB( + "PIAT+Ri5K1E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEptEv) +STUB( + "PICeLa8CPnE", + _ZN7WebCore8Document59setHasRequestedPageSpecificStorageAccessWithUserInteractionERKNS_17RegistrableDomainE) +STUB( + "PICoGW38HWg", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_4Page16CoordinateSystemEEESt8optionalIT_ERKN3WTF6StringE) +STUB("PIK13YXRoWc", mono_metadata_decode_blob_size) +STUB( + "PILoN-UvN84", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEmmEv) +STUB("PIMBemCylmg", _ZNK3sce2Np9CppWebApi7Matches2V120ResponseInGameRoster6toJsonERNS_4Json5ValueEb) +STUB("PIQyyLSozEk", _ZN3sce7Toolkit2NP2V24Auth7IdTokenD1Ev) +STUB("PIWqhn9oSxc", sceNetAccept) +STUB("PIYEFT1iG0Y", _sceNpManagerReallocImpl) +STUB( + "PIa68ZxYkx4", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEEiRNS2_10LibContextEPT_m) +STUB("PIa6V635TSQ", _ZN7WebCore13MIMETypeCachenwEm) +STUB( + "PIdj+3TJ6Dg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEmmEv) +STUB("PIkJmU2Kv1U", Java_com_sony_bdjstack_org_bluray_bdplus_StatusImpl_set) +STUB("PIlpEP8Swsg", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEEC2Ev) +STUB("PIm+ViYYaFI", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIjEeqERKS4_) +STUB( + "PImnGVvsLKE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE3endEv) +STUB("PIphBsmR4Uc", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEED2Ev) +STUB( + "PIpwTTpFCnw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEE7get_refEv) +STUB("PIsq-2vzDVw", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEEdeEv) +STUB("PIt3ROlWOic", RemotePlayGetConnectionStatus) +STUB("PIt9WYaoBqU", __sys_opmc_set_hw) +STUB("PIw2ZEh6JyI", sceFiosDLLInitialize) +STUB("PJ2UDX9Tvwg", _ZNKSt7codecvtIDic9_MbstatetE5do_inERS0_PKcS4_RS4_PDiS6_RS6_) +STUB("PJ3AspBM8Mo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEptEv) +STUB( + "PJ3Ueidi2AM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEE7get_refEv) +STUB( + "PJ5FRYZ1fXU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEC2Ev) +STUB("PJ69TxDrc4U", __ubsan_handle_vla_bound_not_positive) +STUB( + "PJ7BmffSGtM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "PJB+H4zM15M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "PJEWc1S-NbE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEE3getEv) +STUB("PJLM4U9Lwvw", _ZN3JSC7Symbols46typedArrayClampArgumentToStartOrEndPrivateNameE) +STUB( + "PJPIXtFqKBM", + _ZN3sce2Np9CppWebApi7Matches2V131UpdateMatchStatusRequestFactory6createEPNS1_6Common10LibContextENS3_12UpdateStatusEPNS5_12IntrusivePtrINS3_24UpdateMatchStatusRequestEEE) +STUB("PJSbVdbIOug", _ZN7WebCore8Gradient15setSpreadMethodENS_20GradientSpreadMethodE) +STUB("PJT6Jhs3y+4", _ZN7WebCore16threadGlobalDataEv) +STUB( + "PJUBtk0O0Q8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEEdeEv) +STUB( + "PJUZmxAdMag", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE21intrusive_ptr_sub_refEPS9_) +STUB("PJVB7d7YJpE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ResponseCooperativeResultEEeqERKS7_) +STUB("PJW+-O4pj6I", _thread_init) +STUB("PJWIn74HPHI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEppEi) +STUB( + "PJYDjH8b5Hg", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api12cancelTicketEiRKNS4_23ParameterToCancelTicketERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB( + "PJZkVwi78pk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEED2Ev) +STUB( + "PJa35tDYmCM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE5beginEv) +STUB("PJbEp5uOjKk", _ZN3sce7Toolkit2NP2V26Trophy16TrophyPackTrophyC1Ev) +STUB("PJbHeFfX8zI", _ZN7WebCore9HTMLNames5dtTagE) +STUB( + "PJbpTtVvul0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEEC1EPS6_PNS2_10LibContextE) +STUB( + "PJld4Z+-diA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "PJmr272zC8g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEEaSERKSA_) +STUB("PJoU4dkSJME", _ZN3sce2Np9CppWebApi7Matches2V120ResponseInGameRoster10unsetTeamsEv) +STUB( + "PJqvylWRgyc", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfile10initializeEPNS1_6Common10LibContextEPKc) +STUB( + "PJrjGWF25H8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEED2Ev) +STUB( + "PK1A1F6fvaw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEptEv) +STUB("PKFofTYGGJ8", _ZN9Inspector26TimelineFrontendDispatcher26programmaticCaptureStoppedEv) +STUB("PKGMqoQ2uCc", _ZNK7WebCore31BasicColorMatrixFilterOperation5cloneEv) +STUB("PKHZK960qZE", sceUserServiceSetThemeWaveColor) +STUB("PKIFp-zoy0c", _ZN7WebCore9HTMLNames13onemptiedAttrE) +STUB("PKJcFUfhKtw", sceLibcPafMspaceMemalign) +STUB("PKKQ-Ph0qDs", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament7BracketEE5resetEv) +STUB( + "PKNzIsv8V-4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEeqERKS9_) +STUB("PKW7W-yst78", sceVnaNotifyStatus) +STUB( + "PKWKUQXskT0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEeqERKS9_) +STUB("PKXFvrrnY+g", Java_org_dvb_event_EventManager_postAWTEvent) +STUB( + "PKZLsgp3V0E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE3endEv) +STUB( + "PKZOKLLg6oo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB("PKaE-B7gmy8", mono_install_assembly_search_hook) +STUB("PKaqqJ0gWgM", _ZNK3sce2Np9CppWebApi7Matches2V116JoinMatchRequest19npServiceLabelIsSetEv) +STUB("PKc8ZSZA2bs", _ZN3sce7Toolkit2NP2V28Matching7Request11SetRoomInfoC1Ev) +STUB( + "PKdNGNs+z84", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEmmEi) +STUB("PKg59uLpHNI", sceKernelIsAssistMode) +STUB( + "PKt85ilyXFw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE10setContextEPNS2_10LibContextE) +STUB("PKuN8-8+6As", _ZTVN8meta_gen13JpegRetrieverE) +STUB( + "PKwMg6vsQn0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE3endEv) +STUB("PL10NiZ0XNA", sceNpManagerIntGetUserList) +STUB("PL20kjAXZZ4", sceSaveDataGetAutoUploadRequestInfo) +STUB("PL2LcQggy9Q", _ZN9Inspector32DatabaseBackendDispatcherHandlerC2Ev) +STUB("PL3qWsgfJ-Q", _ZN7WebCore9HTMLNames11archiveAttrE) +STUB("PL4A0gKcB08", JNU_ThrowIOExceptionWithLastError) +STUB( + "PL5+d6AMyZc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "PL5gk1ieSJk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEED1Ev) +STUB("PLB43X1Abmk", _ZN3sce2Np9CppWebApi12Leaderboards2V15Entry11setObjectIdEPKc) +STUB( + "PLBx22owBxU", + _ZN9Inspector21DOMFrontendDispatcher16shadowRootPushedEiN3WTF6RefPtrINS_8Protocol3DOM4NodeENS1_13DumbPtrTraitsIS5_EEEE) +STUB( + "PLG1llJu9ZU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEE11release_refEv) +STUB("PLIkDz0bOeI", _ZNK7WebCore8Document12lastModifiedEv) +STUB( + "PLIzZkWU92M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEED1Ev) +STUB( + "PLJIym04GSs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEaSERS7_) +STUB( + "PLM3qPPdpu4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE7popBackEv) +STUB("PLN3vUYYQ3I", WKPreferencesGetPageCacheSupportsPlugins) +STUB( + "PLRFgcSUQuI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("PLSbJxLKy9I", _ZN3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayerD2Ev) +STUB( + "PLYYitbVlWs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEC2EPNS2_10LibContextE) +STUB( + "PLZUqgm2YEU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEE3getEv) +STUB( + "PLc2BbFrI-M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEEC2Ev) +STUB("PLcqkyzTIeY", _ZN7WebCore6Editor29toggleContinuousSpellCheckingEv) +STUB( + "PLglu2g1qAQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEEC2ERSA_) +STUB("PLisNcatYEU", _ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead14unsetAccountIdEv) +STUB( + "PLkqADlydxs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEC1EPS8_) +STUB("PLmtI+AEijg", _ZN3NTF21ResourceRequestLogger9AdminPageC1EPKc) +STUB("PLnBrDuEl1Y", WKPreferencesSetFetchAPIKeepAliveEnabled) +STUB("PLq-2ecJl0k", _ZN3JSC11checkSyntaxERNS_2VMERKNS_10SourceCodeERNS_11ParserErrorE) +STUB("PLrCgkwlBtA", + _ZN7WebCore12EventHandler31passMouseMovedEventToScrollbarsERKNS_18PlatformMouseEventE) +STUB("PLwobQnVlaI", _ZN3sce2Np9CppWebApi6Common6VectorImE21intrusive_ptr_sub_refEPS4_) +STUB( + "PLxRdMZRdX0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEEC2EPS8_PNS2_10LibContextE) +STUB("PM-Nw6lhP40", _ZN3sce7Toolkit2NP2V211UserProfile10NpProfilesaSERKS4_) +STUB("PM0QT9XMliE", uprv_isInvariantString) +STUB( + "PM1KOLG1hUA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("PM1fDWT9YJs", _LMBCSData18_67) +STUB("PM25zHyWlHE", dll_size) +STUB("PM3IZCw-7m0", sceNpAuthSetTimeout) +STUB("PM4rwFC4HMg", _ZN3JSC7Symbols36symbolAsyncIteratorGetterPrivateNameE) +STUB("PM58j4m17Gw", nsff_FreeString) +STUB("PMAYiRpjoMY", PSNowSetAuthCodes) +STUB("PMJFe1TkKwY", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIiEC1EPKi) +STUB( + "PMM6rJXOQYQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE3endEv) +STUB("PMPlHieEI3A", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setInteger3ERKi) +STUB("PMR8LWo7apw", sceNpUniversalDataSystemDestroyRecordObject) +STUB("PMSdgrdlH7o", + _ZN3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayerC1EPNS1_6Common10LibContextE) +STUB( + "PMUeO0IcRRc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("PMV5ttdLZq8", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10getString2Ev) +STUB("PMVehSlfZ94", sceImeKeyboardClose) +STUB("PMX1wD5abbk", _ZN7WebCore10JSNodeList9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("PMbLhDS0I0A", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEEC1Ev) +STUB("PMcRoN6u774", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession18unsetSwapSupportedEv) +STUB("PMgwpqaW9Nc", _ZTVN7WebCore21MediaRecorderProviderE) +STUB( + "PMhjniLwZYs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE7reserveEi) +STUB( + "PMrJxrnZsEM", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("PMsge+8fcWI", _ZN7WebCore4Page36suspendActiveDOMObjectsAndAnimationsEv) +STUB("PMx7N4WqNdo", sceGameLiveStreamingGetSocialFeedbackMessages) +STUB("PMyutpVD0kU", ubrk_last_67) +STUB("PMzS9WG8Thc", getSeqNumForNtfbyCommInfo) +STUB("PN+pdhvYcb0", uprv_pow) +STUB("PN1Nt4s5mc4", _ZNK3sce2Np9CppWebApi6Common8IteratorIiEdeEv) +STUB("PN3W85tGUYw", WKPreferencesSetSelectTrailingWhitespaceEnabled) +STUB("PNDDxnqqtk4", sceNetConfigWlanGetDeviceConfig) +STUB("PNEjNoAufF8", _ZNK3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error12messageIsSetEv) +STUB("PNF4BV+QsUU", _ZN7WebCore15JSEventListener6createEPN3JSC8JSObjectES3_bRNS_15DOMWrapperWorldE) +STUB("PNFItGG-jRY", sos_memory) +STUB( + "PNHC0S3mEuc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "PNKMWAVX3eY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEppEv) +STUB( + "PNKVL8TflLo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEED2Ev) +STUB( + "PNN73FHGQas", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE3endEv) +STUB("PNO0IUA8nwc", scePigletHeapGetInfo) +STUB("PNO2xlDVdzg", sceSystemServiceActivateHevcSoftStart) +STUB("PNO3Uc5Z4do", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging16GameDataMessagesEE5resetEv) +STUB( + "PNP2+sr9tmQ", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_6Canvas11ContextTypeEEESt8optionalIT_ERKN3WTF6StringE) +STUB("PNRFNMQs7aU", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_6NpUserEE7addressERKS3_) +STUB( + "PNRmGRtTK-I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEC2Ev) +STUB("PNVchzvHmGw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEEC1EPKS6_) +STUB("PNb0xz446Ns", sceSaveDataManualDelete) +STUB( + "PNcOG9Mu8L4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE7reserveEi) +STUB("PNceMgBgrIQ", scePadSetFeatureReport2) +STUB("PNf0G7gvFHQ", sceGnmDebuggerHaltWavefront) +STUB("PNfswygjL7s", mono_aot_I18N_MidEastplt) +STUB("PNnRwMlCVlc", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEEdeEv) +STUB("PNqEXeufWKw", _ZN12video_parser5vpcom4TermEv) +STUB("PNskqaHcyys", mono_aot_Mono_Data_Sqlitejit_got) +STUB( + "PO+LYVgtsiY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEC1EPS8_) +STUB( + "PO+QjRv9jlQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "PO3gway-zso", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEC2EPNS2_10LibContextE) +STUB( + "PO6lqjoZXbU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEptEv) +STUB("PO9tOKyviYI", sceVideoDecoderArbitrationInitialize) +STUB( + "POA9V9TJ+uQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEC1ERS7_) +STUB("POBwwpS41c4", _ZN7WebCore10FileSystem14MappedFileDataC1ERKN3WTF6StringERb) +STUB("POFWDeJHrvg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEC2ERKS7_) +STUB("POGf-hXBSYE", fuse_reply_bmap) +STUB("POJ0azHZX3w", sceHttpSetSocketCreationCallback) +STUB("POMFOJXVHwU", + _ZNK3JSC8JSObject11toPrimitiveEPNS_14JSGlobalObjectENS_22PreferredPrimitiveTypeE) +STUB("POMV+y+5h9I", _ZN12video_parser17cVideoProfilerMp417_getVideoCodecVWGEPNS_13VpMediaInfo_tE) +STUB( + "POUkZJl6-lE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEeqERKS9_) +STUB("POVfvCDcVUw", sceUserServiceGetThemeBgImageWaveColor) +STUB( + "POZguOFpv-Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "POa8-RCbBQ0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEC1EPS8_) +STUB("POgR2HblAXE", mono_class_get_element_class) +STUB( + "POi-OXZI8c0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE8copyFromERKS9_) +STUB("POlo1MbEWbI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEcvbEv) +STUB("POlp7a5VJeE", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeaders7destroyEPS5_) +STUB( + "POoI65bGCq8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE21intrusive_ptr_add_refEPS9_) +STUB("POq8+5-inHY", glUniform1f) +STUB( + "POqtG8osNzs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE5beginEv) +STUB("POrSEl8zySw", sceNetConfigSetIfaddr6WithFlags) +STUB("POuAfbIdOvc", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15PlayedWithStoryEEneERKS4_) +STUB("POwFDKnjvj8", _ZN3sce2Np9CppWebApi7Matches2V17Subtask8fromJsonERKNS_4Json5ValueE) +STUB("POwLLYzZufU", kldnext) +STUB( + "POy1EJ1Bkcw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEE5resetEPS6_) +STUB("PP-v0hVUPGw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEEptEv) +STUB("PP0D1dCZQe4", + _ZThn24_N9Inspector22InspectorDebuggerAgent26setPauseForInternalScriptsERN3WTF6StringEb) +STUB( + "PP84R0U67j0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEC1Ev) +STUB("PP8U6b5x+ys", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE8pushBackERKS6_) +STUB("PP8lun2rCEU", + _ZN3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate19getPlayerAttributesEv) +STUB("PP9jx8s0574", sceNpScoreGetGameDataByAccountIdAsync) +STUB("PP9nZxpSKLY", sceUltQueueDestroy) +STUB( + "PPB-UiLyR-8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEEC2ERKSA_) +STUB("PPCqsD8B5uM", sceHmdInternalGetDeviceStatus) +STUB( + "PPDIeeuz2B8", + _ZN9Inspector24NetworkBackendDispatcher20interceptWithRequestElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("PPFaXycu-Ek", + _ZNK7WebCore37CrossOriginAccessControlCheckDisabler36crossOriginAccessControlCheckEnabledEv) +STUB("PPOQBfvrMIQ", sqlite3_column_int64) +STUB( + "PPQIbsfEk2Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEppEi) +STUB("PPQxiE4lbyY", sceShellCoreUtilGetSupportSiteURL) +STUB("PPRCIaNpJJY", sceRegMgrNonSysSetInt) +STUB( + "PPcgiMP25Mc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEixEm) +STUB("PPd5fKTn3XY", WKPreferencesSetArtificialPluginInitializationDelayEnabled) +STUB("PPdIvXwUQwA", __udivmodsi4) +STUB("PPf2yjHeEKo", + _ZSt9use_facetISt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale) +STUB( + "PPlEzb7KS6U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "PPmzzPlkR8k", + _ZN3sce2Np9CppWebApi14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyD2Ev) +STUB( + "PPqJEEStA1o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEEC2Ev) +STUB("PPxlIafpPdw", _ZN15AbstractStorage15FacebookService13SearchStorageEv) +STUB("PQ+SjXAg3EM", sceSystemServiceDisableSuspendConfirmationDialog) +STUB("PQ-5ptU4mbQ", _ZN3sce2Np9CppWebApi6Common15DefaultResponseD2Ev) +STUB( + "PQ2k2UKtYcI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEppEi) +STUB("PQ3n7JgVcUw", _ZN9Inspector21CSSFrontendDispatcher23mediaQueryResultChangedEv) +STUB( + "PQ4VwNJWkWw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "PQBsEfSgKY4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEmmEv) +STUB("PQDFxcnqxtw", sceNpInGameMessageSendDataA) +STUB( + "PQDahTUHtXw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEE7get_refEv) +STUB( + "PQF9oMfTEyw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEEaSERS9_) +STUB( + "PQQO6s4khAI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB( + "PQRPX5zVV4Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEppEi) +STUB("PQS29ynWmeE", _ZN7WebCore14isPublicSuffixERKN3WTF6StringE) +STUB( + "PQTBTmni0JA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEEC1ERKSA_) +STUB("PQThkNA69ik", _ZN12video_parser7cVpUtil12vp_ff4_freadEPvS1_mPm) +STUB("PQY5whlq2VE", __tsan_atomic16_compare_exchange_strong) +STUB( + "PQZ+NlJivDo", + _ZN3JSC23setUpStaticFunctionSlotERNS_2VMEPKNS_9ClassInfoEPKNS_14HashTableValueEPNS_8JSObjectENS_12PropertyNameERNS_12PropertySlotE) +STUB("PQZxWNUctI8", mono_trace_set_logdest_string) +STUB( + "PQcJeGJZ1OI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "PQcQSTeW1Ro", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEplEm) +STUB( + "PQcaUzT7p6Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE21intrusive_ptr_sub_refEPS9_) +STUB("PQdMh289T3E", _ZNK7CoreIPC15ArgumentDecoder28bufferIsLargeEnoughToContainEjm) +STUB("PQeOxm6JYws", _ZN3sce7Toolkit2NP2V23TUS7Request18GetFriendsVariableD2Ev) +STUB( + "PQg7VN-U+48", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEC2EPNS2_10LibContextE) +STUB( + "PQjGSTRLaeI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEC1EPS6_PNS2_10LibContextE) +STUB("PQjJU9esAq4", _ZNK3sce2Np9CppWebApi7Matches2V118RequestTeamResults22teamMemberResultsIsSetEv) +STUB("PQjqXIif6yM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ResponseCooperativeResultEEppEi) +STUB( + "PQkUxpwAY-I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEEC2EPS6_PNS2_10LibContextE) +STUB("PQlF4cjUz9U", sceUserServiceGetIPDLeft) +STUB("PQpV7EQ5L3A", _ZN7WebCore22EmptyFrameLoaderClient21dispatchDidFinishLoadEv) +STUB("PQs7HeqsI0c", _ZN3sce7Toolkit2NP2V24Core7Request23ServerPushNotificationsD1Ev) +STUB( + "PQsS9GcFR-Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "PQtQhgROP+A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEaSERKS9_) +STUB( + "PQx5xsVI0VA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "PR56YppYSZ8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE5beginEv) +STUB("PR5k1penBLM", _ZN3sce4Json11Initializer9terminateEv) +STUB( + "PR5rGkPPgWo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE6resizeEj) +STUB("PR6R2A-+DgY", _ZN3sce7Toolkit2NP2V210Tournament13OneVsOneMatchC2ERKS4_) +STUB("PR8r-TCBz0U", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus11slotIdIsSetEv) +STUB("PR9JxM5XUHw", _ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBodyD2Ev) +STUB("PRCdgKxu5a0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEC2Ev) +STUB("PRGCDAuvO4U", _ZN3sce7Toolkit2NP2V26Friend7Request15GetBlockedUsersD1Ev) +STUB("PRHvPaEQU9Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEE5resetEPS6_) +STUB("PRP-T2UVdp8", _ZN3sce7Toolkit2NP15AppSTLAllocatorIiEC1Ev) +STUB("PRWDDCYpsDQ", _ZNK3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResults8getScoreEv) +STUB("PRWr3-ytpdg", CRYPTO_initAsymmetricKey) +STUB( + "PRe4tjeFmD0", + _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities13getaccountIdsEv) +STUB("PRfVGYzxSCI", _ZN3sce3pss5orbis9framework12PsmStringObj17NewAndStoreStringEPvPc) +STUB("PRgHC6mMgw8", rgctx_fetch_trampoline_rgctx_116_p) +STUB("PRi-5flaksc", _ZN7WebCore16convertToIntegerImEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB( + "PRlBEyL2UVM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB("PRr6iSMdkuE", _ZN3sce2Np9CppWebApi7Matches2V119RequestInGameRoster8getTeamsEv) +STUB( + "PRssn14aTLQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEC2Ev) +STUB("PRt5TR3b1NE", _ZN7WebCore26ContextDestructionObserverD2Ev) +STUB("PRutb7r2aio", + _ZN3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMapC1EPNS1_6Common10LibContextE) +STUB( + "PRv6jpF+Xek", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEC2EPS8_) +STUB("PRx4LhivrkU", _ZN3sce2Np9CppWebApi7Matches2V122RequestMatchStatistics19getPlayerStatisticsEv) +STUB("PS2fWS-1dEw", _ZN7WebCore11DisplayList13SetMiterLimitD2Ev) +STUB("PS5hxxGEVB8", sceKernelResumeDirectMemoryRelease) +STUB("PS5n3xxFDXQ", WKBundlePageGetBackingScaleFactor) +STUB( + "PS8lGsEqK8Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEED2Ev) +STUB("PSAw7g1DD24", _ZNSt7collateIwEC2EPKcm) +STUB( + "PSE8doWlSX4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEC1EPKS8_) +STUB("PSHaxUsfYg8", sceAvSettingWaitCallback) +STUB("PSIKYreudgY", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V18RelationEEC1EPS6_) +STUB("PSJDZKA4zFk", mono_aot_Sce_Vsh_DataTransferunbox_trampolines) +STUB("PSK+Eik919Q", sceWebBrowserDialogClose) +STUB( + "PSM+drg-048", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEeqERKS9_) +STUB("PST8vMLJBmI", ucptrie_internalGetRange_67) +STUB("PSZR9gFmrHQ", _ZNK3JSC12PropertySlot14functionGetterEPNS_14JSGlobalObjectE) +STUB( + "PSa53jDhTEA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEmmEi) +STUB( + "PSjy7gaxRfo", + _ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody21setLargeDataSizeLimitERKl) +STUB( + "PSlwLMNCglI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEC1ERKS7_) +STUB("PSnjmmsNZKM", _ZN7WebCore9HTMLNames18aria_valuetextAttrE) +STUB("PSptxtJVbv4", sceNpBandwidthTestShutdownInt) +STUB("PSqt1KLK7o0", eglCreateWindowSurface) +STUB("PSrsDjizhM0", sceCtrlpGetMode) +STUB("PStpLp3-9Tk", rgctx_fetch_trampoline_rgctx_45_p) +STUB( + "PT0KFqyWZ4Y", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB( + "PT6DRfzbUvk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE7popBackEv) +STUB( + "PT6YbQVY2ms", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_28ActivityFeedSharedVideoStoryENS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv) +STUB( + "PTDDXmOn6uU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEEC2Ev) +STUB( + "PTLlPYHuvh0", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfiles16setincludeFieldsEPKc) +STUB( + "PTMRrtSnXV8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEixEm) +STUB("PTQNVqrk8Wo", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12Notification14NetStateChangeEEC2Ev) +STUB( + "PTVl3ngyXnE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE5emptyEv) +STUB( + "PTdhkxtDUYg", + _ZN7WebCore11DisplayList20DrawTiledScaledImageC2ERNS_5ImageERKNS_9FloatRectES6_RKNS_9FloatSizeENS2_8TileRuleESA_RKNS_20ImagePaintingOptionsE) +STUB("PTf-FJo+ApE", _ZN3WTF10StringImpl8endsWithEPS0_) +STUB("PTiFIUxCpJc", sceHttpSetRequestContentLength) +STUB( + "PTnAc4g3ICE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEC2EPS6_PNS2_10LibContextE) +STUB( + "PTqd4UFMS9w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEEC2ERSA_) +STUB("PTrYtP4u8fg", _ZN7WebCore15FontDescriptionC2Ev) +STUB( + "PTuPYlnQVRg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE21intrusive_ptr_add_refEPS7_) +STUB("PTvMKfzjWQo", __ubsan_handle_divrem_overflow_abort) +STUB( + "PTzDHJEpjQk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEED1Ev) +STUB("PU63bc-sDf8", s01) +STUB("PUB57IIPJ9w", cmp_era_date) +STUB( + "PUDXsBxtSSY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEC1Ev) +STUB( + "PUE-yUIPKe8", + _ZN3sce7Toolkit2NP2V211SharedMedia13getBroadcastsERKNS3_7Request13GetBroadcastsEPNS2_4Core8ResponseINS3_10BroadcastsEEE) +STUB("PUEZ-nkeRic", _ZN3WTF8JSONImpl9ArrayBase9pushArrayEONS_6RefPtrIS1_NS_13DumbPtrTraitsIS1_EEEE) +STUB("PUJjqZtwfLM", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge10ChallengesEE12deepCopyFromERS7_) +STUB("PUOdclQdsA8", JVM_Listen) +STUB( + "PUQsEPL6V3Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEE11release_refEv) +STUB( + "PUTnX4bZjqs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEED2Ev) +STUB("PUV6qvRaqCE", _ZNK15AbstractStorage14TwitterStorage10GetServiceEv) +STUB("PUWsSB3HNEE", ulocdata_getCLDRVersion_67) +STUB( + "PUZeJjQMZKw", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead19setSearchAttributesERKNS1_6Common12IntrusivePtrINS3_16SearchAttributesEEE) +STUB("PUhHuHSWTnU", mono_aot_Sce_PlayStation_BclExtensionsunbox_trampoline_addresses) +STUB( + "PUhVA8yn4Hw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("PUkoDl8QRKo", _ZN7WebCore9HTMLNames10oncopyAttrE) +STUB("PUnaOnE5qv4", ErrorDialogClose) +STUB( + "PUove9IxQjA", + _ZN9Inspector26LayerTreeBackendDispatcher26reasonsForCompositingLayerElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("PUp9TlmpDys", _ZN7WebCore35isEndOfEditableOrNonEditableContentERKNS_15VisiblePositionE) +STUB("PUqCtFwnNvA", _ZThn8_N3sce2np9HttpTransD1Ev) +STUB( + "PUs0x75WeJM", + _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container11setChildrenERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_7ProductEEEEE) +STUB("PUsOFHI1iBo", _ZN7WebCore16HTMLOListElement19setStartForBindingsEi) +STUB("PUsttHs+PRw", _LMBCSData2_67) +STUB("PUwe0bHr1pU", uset_addRange_59) +STUB("PUyCL2afOCU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEC2EPS6_) +STUB( + "PUzRm1isMPs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("PV4sdhRAjA4", _ZN3WTF10StringImpl22createStaticStringImplEPKcj) +STUB("PV6kXcSMqRs", ztrans_adoptFrom_67) +STUB("PVBHZjcjzo0", _ZN7WebCore15SQLiteStatement10bindDoubleEid) +STUB("PVEHz-12z7w", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_24RegisterGameDataResponseEE17getAdditionalInfoEv) +STUB("PVGkLk5i0Lc", _ZN7WebCore7Element18boundingClientRectEv) +STUB("PVIoDan63h0", _ZN7WebCore15HTMLFormElement9setActionERKN3WTF6StringE) +STUB("PVQaWsZozNw", uset_isEmpty_67) +STUB( + "PVSgjJeZzQ4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE7reserveEi) +STUB("PVT+fuoS9gU", sceGnmDeleteEqEvent) +STUB("PVV6vSXtXwE", _ZN14OpaqueJSString9tryCreateERKN3WTF6StringE) +STUB("PVVsRmMkO1g", sceNpGetSystemClockUsec) +STUB("PVX51Pp3iFo", _ZN9Inspector15RemoteInspector12updateTargetEPNS_24RemoteControllableTargetE) +STUB( + "PVbmOgtglig", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE7popBackEv) +STUB("PVl7TKdKzBU", _ZN12video_parser5vpcom6StringeqERKS1_) +STUB("PVun5K6ohaI", _ZN23sceMetadataReaderWriter11gvMp4Parser19gvMp4ParserFinalizeEv) +STUB("PVyQjWwltLM", _ZN3sce7Toolkit2NP16LikeStoryRequestC1Ev) +STUB( + "PVyvJB4PcHg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEE3getEv) +STUB("PVzly3pzYG8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEEdeEv) +STUB( + "PW2IbQ27op8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("PW2MMvr+fKM", sceVideoCoreSyncAddStream) +STUB("PW3pfHwnzDA", rgctx_fetch_trampoline_rgctx_63) +STUB( + "PW9qqMwfCUE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEeqERKS9_) +STUB( + "PWB73gM3+pw", + _ZN7WebCore15JSDOMWindowBase17moduleLoaderFetchEPN3JSC14JSGlobalObjectEPNS1_9ExecStateEPNS1_14JSModuleLoaderENS1_7JSValueES8_S8_) +STUB( + "PWBfEpSHJHo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "PWCn1sHHua8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "PWDgQnNKGaA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("PWEUl-4tXqg", glPigletGetShaderBinarySCE) +STUB("PWFePkVdv9w", _ZNKSt7_MpunctIwE16do_positive_signEv) +STUB( + "PWH2q-S1mFw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEC2Ev) +STUB("PWIkEe+Sfuo", AnnotateBenignRaceSized) +STUB("PWK6yVIGNuY", uscript_hasScript) +STUB("PWV8x6XJZjk", ScePsmMonoAssemblyOpenFull) +STUB("PWXBTy10y+w", g_queue_is_empty) +STUB("PWaO8OLOqvE", _ZNK7WebCore6Widget23convertToContainingViewERKNS_8IntPointE) +STUB("PWaaV5FWHFw", ucnv_openCCSID_67) +STUB( + "PWavCc6YwUI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "PWc9leqAQf4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEC1EPS8_) +STUB("PWm9MyJJVqU", _ZN3sce4Json5ValueC2ENS0_9ValueTypeE) +STUB("PWmDp8ZTS9k", _Getint) +STUB( + "PWnPsaIbiNY", + _ZN3sce2Np9CppWebApi7Matches2V112ErrorFactory6createEPNS1_6Common10LibContextEiPKcPNS5_12IntrusivePtrINS3_5ErrorEEE) +STUB("PWokFqab5q4", sceVoiceQoSReadPacket) +STUB( + "PWthJlynYho", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEC1EPNS2_10LibContextE) +STUB("PWzIeSR0K-Q", _ZNK7WebCore12DOMTokenList5valueEv) +STUB( + "PX+IThZZ2Zk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEptEv) +STUB("PX2JkQE8Fx8", _ZN7WebCore11DisplayList10StrokeRectD2Ev) +STUB("PX8-UX+Mmq4", _ZN3sce7Toolkit2NP2V26Friend12BlockedUsersD2Ev) +STUB( + "PX8DKY9A5+g", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB( + "PX9ZL1spQoY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEEaSERSA_) +STUB("PXIHOuLUN40", _ZNK3sce4Json6String7compareERKS1_) +STUB( + "PXJsM5nAj+U", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEiRNS2_10LibContextEPT_m) +STUB( + "PXRHeT0uo4Y", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V124BandwidthUpstreamMetrics6toJsonERNS_4Json5ValueEb) +STUB("PXVZ3lnjoWE", _ZN3JSC7Symbols16isMapPrivateNameE) +STUB("PXVsMHK5Blk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEEC1EPS5_PNS2_10LibContextE) +STUB("PXYRoOPOyTc", _ZN12Mp4Retriever14processMdhdBoxEv) +STUB("PXbVNuUqELQ", sceDepthHasCalibrationData) +STUB( + "PXegMkySLao", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("PXhJgp-x89w", + _ZN3JSC17DeferredWorkTimer16scheduleWorkSoonEPNS_8JSObjectEON3WTF8FunctionIFvvEEE) +STUB("PXlA0M8ax40", sceFontGlyphGetGlyphForm) +STUB("PXmLYh0zF14", _ZNK3sce3Xml3Dom8Document13getFirstChildENS1_6NodeIdE) +STUB("PXoD+IoA-uQ", + _ZN3JSC8JSObject23putDirectCustomAccessorERNS_2VMENS_12PropertyNameENS_7JSValueEj) +STUB("PXtTCOohxj0", sceMatMspaceDestroy) +STUB( + "PXw9k9HgmSg", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE11hasResponseEv) +STUB("PY+lfybvVfU", _ZN3sce7Toolkit2NP2V24Core13CallbackEventC1ERKS4_) +STUB("PY+mmDxGOAg", WKTextCheckerContinuousSpellCheckingEnabledStateChanged) +STUB("PYBehFWVd60", _ZN3sce2np14JsonDocBuilder12BuildBufSizeEv) +STUB("PYC1MqlPgbc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEC2ERKS7_) +STUB( + "PYCOxvGki5Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE7popBackEv) +STUB( + "PYF8N0OS8XQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEeqERKS9_) +STUB("PYFS1H70bDs", sceNpWordFilterDeleteRequest) +STUB("PYGOcZf93e8", il2cpp_string_is_interned) +STUB("PYJ+DaIvLlA", + _ZN7WebCore8JSPath2D15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB( + "PYKWL6Itrj0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEC1EPS8_) +STUB( + "PYLBmmTsxuk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEC2Ev) +STUB( + "PYaLhZlTiCI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEEC2ERKS9_) +STUB( + "PYbW23ovF8Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEE5resetEPS9_) +STUB( + "PYcM1HCgAxY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEC2EPKS8_) +STUB( + "PYcXxp47suE", + _ZN7WebCore21JSCSSStyleDeclaration25getOwnPropertySlotByIndexEPN3JSC8JSObjectEPNS1_14JSGlobalObjectEjRNS1_12PropertySlotE) +STUB("PYcZNLAIBnU", sceVideoOutSysGetDeviceCapabilityInfoByBusSpecifier_) +STUB("PYdkdhtQ+bw", ubrk_current_59) +STUB( + "PYfJY05L3CQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE21intrusive_ptr_sub_refEPS9_) +STUB("PYfXsUMOaic", _ZN9Inspector33LayerTreeBackendDispatcherHandlerD2Ev) +STUB( + "PYfl0pJbe38", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEE11get_deleterEv) +STUB("PYfpZR9hxdQ", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed14PlayedWithFeedEEC2Ev) +STUB( + "PYjhrZEAG4U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEmmEv) +STUB( + "PYpaNaFzJYg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEC2EPNS2_10LibContextE) +STUB("PYpjB0tyAZg", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorImEptEv) +STUB("PYqhIaBQ4T4", _ZN9JITBridge16initializeFromVMEPKcPPcPKNS_11RestartDataE) +STUB( + "PYuC58kHa3M", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEeqERKS9_) +STUB("PYwVp6yeFp0", X509_STORE_CTX_init) +STUB( + "PZ-8CMktLUM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE17getNpWebApi2ReqIdEv) +STUB( + "PZ-pSFT+DkY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEEC2Ev) +STUB( + "PZ1qZzRSmAE", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB( + "PZ3gdKr-lpo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE6resizeEj) +STUB( + "PZDLEQscRaE", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("PZEeC9wi0qo", _ZNK7WebCore16HTMLInputElement6heightEv) +STUB("PZKgT9x9Pqg", _ZN3sce7Toolkit2NP2V23TUS7Request19AddToAndGetVariableC1Ev) +STUB( + "PZQafG8P7oI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE21intrusive_ptr_add_refEPS9_) +STUB("PZQidcQkPQA", _ZNK3WTF7SecondsmiERKNS_24TimeWithDynamicClockTypeE) +STUB("PZReJzJ09L4", _ZN3sce7Toolkit2NP2V24Core7Request11MemoryPools20NET_MEM_DEFAULT_SIZEE) +STUB("PZSoY8j0Pko", scePadGetFeatureReport) +STUB("PZSrBx2jITw", EC_KEY_get0_private_key) +STUB( + "PZWRkvQYGvs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "PZYIJF6OKB4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEC1EPNS2_10LibContextE) +STUB("PZZ887t9Ia4", _ZN3JSC7Options9setOptionEPKc) +STUB("PZhz+vjp2CM", sceNpManagerIntSetTimeout) +STUB("PZiaHyBor4Y", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyleD2Ev) +STUB("PZigqoOxRjc", _ZN3sce7Toolkit2NP2V210Tournament18OneVsOneRankResultC1Ev) +STUB("PZku4ZrXJqg", sceKernelCancelEventFlag) +STUB("PZl4PCwi7eA", _ZN13MsvMetaEditor17updateChunkOffsetEi) +STUB("PZlpwRuzFII", WKBundlePageOverlayCreate) +STUB("PZnzfneCpcI", _ZN9Inspector34ApplicationCacheFrontendDispatcherC2ERNS_14FrontendRouterE) +STUB("PZoM-Yn6g2Q", __atomic_fetch_xor_2) +STUB( + "PZosZck9eQU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEC1ERKS7_) +STUB("PZrdbMOqv-E", WKPreferencesSetDoNotTrack) +STUB("PZtD8PmirVs", _ZN7bmalloc3api14enableMiniModeEv) +STUB( + "PZx4S+Xmbf8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEC1EPS6_PNS2_10LibContextE) +STUB("PZyF8v8vWmo", WKInspectorShow) +STUB("PZzcUP8YYkg", WKContextGetApplicationCacheManager) +STUB( + "PZzx6EaKZLY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSC_) +STUB("Pa+yxIZow48", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEaSERKS7_) +STUB( + "Pa1YPzymIAo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEppEv) +STUB( + "Pa8aSaa01To", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("PaCJ0O1vzb4", + _ZNK3sce2Np9CppWebApi14SessionManager2V123MemberWithMultiPlatform12getAccountIdEv) +STUB("PaCJ9nCgYE0", _ZN3JSC11createErrorEPNS_9ExecStateERKN3WTF6StringE) +STUB("PaClLJdOLbk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEE5resetEPS6_) +STUB("PaDk9bdmdhU", FT_Request_Size) +STUB( + "PaFLeSp62Dc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE5beginEv) +STUB("PaFw9w6f808", sceGnmDebuggerWriteSqIndirectRegister) +STUB("PaG1xovlZvk", _ZN3JSC14ProtoCallFrame17setPaddedArgCountEj) +STUB("PaHMZnyoHwg", sceVisionManagerRequestHeadDetection) +STUB( + "PaKtQhFVv7M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEC2Ev) +STUB("PaSEtyxiC0o", cairo_identity_matrix) +STUB( + "PaSt8KCYZqM", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB("PaWM1Sx9K9w", _ZN4Manx11MediaPlayer8bufferedERfS1_) +STUB("PaX1Sk7j+bk", mono_aot_Sce_Vsh_UsbStorageSceneplt) +STUB("Paa9dgHnHpQ", sceDepthInitialize) +STUB( + "Pace4fcdw2U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEC2Ev) +STUB("PacfzIbFdNg", usearch_search_67) +STUB("PafRf+sxnwA", sceNpManagerIntRemovePlusMemberTypeCallback) +STUB("PagHtqiYnQg", sceAvSettingGetCurrentOutputMode) +STUB( + "PapIxJYyhbU", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V136ConnectionQualityWiredMetricsFactory7destroyEPNS3_29ConnectionQualityWiredMetricsE) +STUB( + "Pay966az26k", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEE3getEv) +STUB("Pays4s+a5y8", _ZN7WebCore8Settings29setAuthorAndUserStylesEnabledEb) +STUB( + "Pb-LQRTKDHg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("Pb0RYpBlYXc", _ZTVN7WebCore11DisplayList16DrawLinesForTextE) +STUB("Pb1d+j-bBSc", sceHmd2ReprojectionGetMirroringWorkMemorySizeAlign) +STUB( + "Pb2XGGW9h1M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("Pb37sbtje74", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE5beginEv) +STUB("Pb4ZbPFaVQ8", _ZN7WebCore15DatabaseManager10initializeERKN3WTF6StringE) +STUB( + "Pb4fhyHGoyo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEaSERS7_) +STUB("Pb8eru9c+lw", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi27ParameterToLeaveGameSessionD1Ev) +STUB("PbAUNzvCsCU", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification11RefreshRoomEE3setEv) +STUB("PbCV7juCZVo", _ZNSt10filesystem10_Copy_fileEPKcS1_) +STUB( + "PbFu2lguZ0Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEC2EPKS6_) +STUB("PbJcgQdU4CY", _ZN9Inspector14FrontendRouter22disconnectAllFrontendsEv) +STUB("PbYhP6Fz+us", mono_aot_Sce_Vsh_Passcodeunbox_trampolines) +STUB("Pbdz8KYEvzk", sceFontGraphicsUndefineIndexedVertexesGlyphs) +STUB("PbgnspbyMZA", _ZN3sce7Toolkit2NP2V29Messaging12Notification16NewInGameMessageC2ERKS5_) +STUB("PbiFMWQuGuI", _ZNK7WebCore9TreeScope26ancestorElementInThisScopeEPNS_7ElementE) +STUB("PbjqN0JPi5M", u_vfprintf_67) +STUB( + "PbjxTY8FhmY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEEC1EPNS2_10LibContextE) +STUB( + "Pbmd+84lZL4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEE3getEv) +STUB("Pbp5FkR35mI", _ZN3PAL19fileSizeDescriptionEm) +STUB( + "Pbps2hA1fFQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEC1ERS7_) +STUB( + "PbuUz1MJEXY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEEC2ERS9_) +STUB("PbxGVfOvUQY", sceFiosFHPwrite) +STUB( + "PbyN2ILmHlY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE7popBackEv) +STUB( + "Pc1YZeWoUN0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "Pc1d6ug+ZVQ", + _ZN3JSC11createErrorEPNS_9ExecStateENS_7JSValueERKN3WTF6StringEPFS4_S6_S6_NS_11RuntimeTypeENS_13ErrorInstance28SourceTextWhereErrorOccurredEE) +STUB("Pc45jNZ5K98", _ZN12video_parser5vpcom8datetime8DateTime9DayOfWeekEttt) +STUB("Pc4z1QjForU", sceVoiceGetMuteFlag) +STUB("Pc92TjYbXpc", sceHidControlGetSparkState) +STUB( + "PcCYsNX+7Do", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEED1Ev) +STUB( + "PcGkS2zg1-k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEmmEi) +STUB( + "PcH2Q-teFNc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEEC2Ev) +STUB("PcJ5DLzZXSs", sceSystemStateMgrStartRebootTimer) +STUB("PcKApW9kVoQ", _recvmsg) +STUB("PcNVQFAuqbk", delegate_virtual_invoke_imt_7) +STUB("PcNaMEuQPh0", _ZN3sce7Toolkit2NP2V26Trophy7Request13SetScreenshotD2Ev) +STUB("PcOXjZjsab4", _ZN7WebCore6Widget12setFrameRectERKNS_7IntRectE) +STUB("PcP1nxOoL+4", sceVideoCoreGetPlayStatus) +STUB("PcT-A0bz7N8", _ZN7WebCore18PlatformTimeRangesD2Ev) +STUB("PcVhh7YEil4", mono_aot_appunbox_trampolines_end) +STUB("Pca2ZXDVYew", _ZN4Manx3Ssl10SslContextD0Ev) +STUB("Pcb8d33eJhM", Java_java_lang_reflect_Array_setLong) +STUB("PccynQ5NdVQ", _ZN3sce2np10JsonNumber6SetNumEj) +STUB("PcdLABhYga4", sceNetAllocateAllRouteInfo) +STUB("Pcg6xQUhq9E", _ZNK3sce4Json14InitParameter217getFileBufferSizeEv) +STUB("PcgRdxUZ03o", _ZN3sce2Np9CppWebApi14SessionManager2V15ErrorC2EPNS1_6Common10LibContextE) +STUB( + "PcgZWXF7hMg", + _ZN3sce2Np9CppWebApi14SessionManager2V159PostPlayerSessionsSessionIdSessionMessageRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_52PostPlayerSessionsSessionIdSessionMessageRequestBodyEEE) +STUB("Pcq7UoYAcFE", sceLibcPafMspaceCheckMemoryBounds) +STUB("PcudeTUiShQ", _ZNK3WTF10StringImpl18tryGetUtf8ForRangeEjjNS_14ConversionModeE) +STUB( + "PcvX5X0q9wI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEC2Ev) +STUB("Pd18Dkr4qoo", mono_aot_Sce_Vsh_MimeTypeplt) +STUB("Pd2AvWnip5Y", recvtbl) +STUB( + "Pd3pVezj150", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEdeEv) +STUB("Pd5A5doC5rA", _ZNK3sce2Np9CppWebApi7Matches2V119RequestInGameRoster12playersIsSetEv) +STUB("Pd7KtJ1gybk", link) +STUB( + "PdDpbnyAxr4", + _ZN7WebCore11JSDOMWindow3putEPN3JSC6JSCellEPNS1_14JSGlobalObjectENS1_12PropertyNameENS1_7JSValueERNS1_15PutPropertySlotE) +STUB( + "PdEryvW+7WY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEE7add_refEv) +STUB( + "PdFvHywfLMo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEE7add_refEv) +STUB( + "PdI7xcMEoPk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEED1Ev) +STUB( + "PdJLZunlqK4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEC1Ev) +STUB( + "PdJw2ia8i2g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEED2Ev) +STUB("PdTLkNrBgvg", _ZN3NTF17URLRequestFileJobC1Ev) +STUB( + "PdVE9xHBcwY", + _ZN3sce2Np9CppWebApi7Matches2V128ResponseTeamStatisticFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_21ResponseTeamStatisticEEE) +STUB("PdWicphhWgg", glFenceSync) +STUB("PdYx470F6B8", sceNpAppLaunchLink2IntGetCompatibleTitleIdList) +STUB("PdcdDVD-1VQ", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V13Mmr13unsetPerGenreEv) +STUB("Pdgml4rbxYk", cpuset_getaffinity) +STUB( + "Pdh9-NGvL4k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE6resizeEj) +STUB( + "PdiPOkTx27s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEED2Ev) +STUB("Pdj54NJ5P+4", sceDebugGetSystemStatusBlob) +STUB( + "PdjZbR+F6II", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEED2Ev) +STUB( + "PdlXdHLdinQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEED2Ev) +STUB("PdnFCFqKGqA", _FCosh) +STUB("PduV0fym+xE", _ZN3WTF14FileSystemImpl8hardLinkERKNS_6StringES3_) +STUB("PdwTVolubW4", sceVorbisDecPcmSeekPage) +STUB("PdzHTafDY3E", _ZN7WebCore8SVGNames17vert_origin_yAttrE) +STUB("Pe-Hr78sPkQ", _ZN3sce7Toolkit2NP17PlayedWithRequestC2Ev) +STUB( + "Pe2ayJf1BoE", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_15PlayedWithStoryENS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv) +STUB("Pe9fHKX7krE", _ZN3sce2np9HttpTransD0Ev) +STUB("PeAyBjC5kp8", sceNpTrophyIntGetRunningTitles) +STUB( + "PeK2iTZ4wXA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE8copyFromERKS9_) +STUB("PeO5DtuCnv4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEppEv) +STUB("PeTaOgXASCo", _ZNK7WebCore18PlatformTimeRanges4dumpERN3WTF11PrintStreamE) +STUB("PeUUCAS9Kso", sceVideoOutConfigureLayout) +STUB("PeVBz3ApziU", + _ZN3sce2Np9CppWebApi14IdentityMapper2V342PsnWebError_error_validationConstraintInfo6setKeyEPKc) +STUB("PeVxngwyZI8", unum_setContext_67) +STUB( + "PeiuVQ7NA3k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEE11get_deleterEv) +STUB("PekkQqYyI68", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEE11release_refEv) +STUB( + "Penz+56LOYs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "Peo1zFXdRzY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEC1EPS6_PNS2_10LibContextE) +STUB("PexfHz4VoJM", _ZN7WebCore22RuntimeEnabledFeatures14sharedFeaturesEv) +STUB("Pf-StbYH98s", _ZN15AbstractStorage10YoutubeAPID2Ev) +STUB("Pf0ke26Zigo", WKRectGetValue) +STUB("Pf4LG6AfvPc", Java_java_lang_reflect_Array_setBoolean) +STUB("Pf6JfPjQq-w", + _ZN7WebCore15StringTruncator20rightClipToCharacterERKN3WTF6StringEfRKNS_11FontCascadeERfbf) +STUB( + "Pf7ql1xBLmU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE4termEv) +STUB( + "Pf9RPjNNlQ4", + _ZN9Inspector21InspectorRuntimeAgent5parseERN3WTF6StringERKS2_PNS_8Protocol7Runtime15SyntaxErrorTypeERNS1_8OptionalIS2_EERNS1_6RefPtrINS7_10ErrorRangeENS1_13DumbPtrTraitsISE_EEEE) +STUB("PfBVKm1Magc", _ZNK3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead12getAccountIdEv) +STUB( + "PfDPd2AzdX4", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetrics18getConfidenceScoreEv) +STUB("PfJQBFuXEBs", sceCesEucKrToUtf16) +STUB( + "PfN-ltCCZaU", + _ZN7WebCore39cleanHTTPRequestHeadersForAccessControlERNS_15ResourceRequestEN3WTF9OptionSetINS_29HTTPHeadersToKeepFromCleaningEEE) +STUB( + "PfOW9QWxsxc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEaSERKS9_) +STUB("PfQ+f6ws764", sceNpWebApiDeleteServicePushEventFilter) +STUB("PfRJjBbTwOw", rgctx_fetch_trampoline_rgctx_82) +STUB( + "PfRQfQdc7G8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEplEm) +STUB("PfSTDCgNMgc", sceNpWebApiRegisterPushEventCallback) +STUB("Pfb83SkQ0gQ", sceRnpsAppMgrRegisterShellUI) +STUB("PfccT7qURYE", ioctl) +STUB( + "Pff9L29Cce4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEmmEv) +STUB("PfjnSfKLFMU", _ZN3sce7Toolkit2NP2V24Auth8AuthCode8deepCopyERKS4_) +STUB("PfoEKUy-xIM", mono_aot_I18N_Rareplt_end) +STUB("PfoKAY2M0QE", sceVideoCoreInterfaceWaitCanvasFlip) +STUB("PfoqqnKHFho", _ZN3sce2Np9CppWebApi14SessionManager2V112JoinableUser12setAccountIdERKm) +STUB("PfrOKhBNw2Q", _ZN3sce2Np9CppWebApi7Matches2V117LeaveMatchRequest8fromJsonERKNS_4Json5ValueE) +STUB( + "Pfs2odTfJ-0", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Runtime13ObjectPreview4TypeEEEN3WTF8OptionalIT_EERKNS6_6StringE) +STUB("Pft+NpFz9z4", _ZNK7WebCore10ScrollView42documentScrollPositionRelativeToViewOriginEv) +STUB( + "PfwtefDLVfw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEEC2ERKSA_) +STUB( + "PfzhaLrZ1O8", + _ZN7WebCore17FrameLoaderClient23getLoadDecisionForIconsERKN3WTF6VectorISt4pairIRNS_8LinkIconEmELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB( + "Pg4Bpti8tqA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE5emptyEv) +STUB("PgAf0Wwv4ZQ", sceSlimglClientMonitorServerEnd) +STUB( + "PgGlOD1xUxE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEptEv) +STUB("PgGve9EvhPE", sceKernelGetHwSerialNumber) +STUB( + "PgIRjGYJi6Q", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEplEm) +STUB( + "PgKIj7-idEU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "PgKOghaUzuE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "PgMA4Vpxvlo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("PgNI+j4zxzM", sce_net_in6addr_nodelocal_allnodes) +STUB( + "PgSY6kr4vxk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE7reserveEi) +STUB( + "PgSaA43nlDw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "PggA7FIAXDY", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("PgiCaoqRKKc", _ZN3sce2np4Time10AddSecondsEl) +STUB("PgiTG7nVxXE", _ZNSt10moneypunctIcLb1EE2idE) +STUB("PgjXRsgiZRU", sceMusicFwGetMuted) +STUB("PglLaOawgMs", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer10getuseFreeEv) +STUB("Pglk7zFj0DI", sceNpGetSdkVersion) +STUB("PgluMrqMCsI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEEixEm) +STUB( + "PgsU-b86bWc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEC1EPS8_) +STUB("PgsapqTNwkg", _ZN12video_parser7cVpUtil14vp_ff4_memmoveEPvS1_mPKvm) +STUB("Pgt0gg14ewU", CA_MGMT_allocCertDistinguishedName) +STUB("PgyNd-jLu7Q", _ZTVN7WebCore28BackingStoreBackendCairoImplE) +STUB("Ph2MVCGrKnE", _ZN3sce7Toolkit2NP2V26Trophy7Request18GetTrophyPackGroup13INVALID_GROUPE) +STUB("Ph3msbMf67E", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEEcvbEv) +STUB( + "Ph5JMKiX0JA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE21setOnFinishedCallbackEPFvliS6_PvEPFvliSD_ESD_) +STUB( + "PhF8OCvqF70", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEEaSERSA_) +STUB( + "PhH0JtC3wyI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEEC2ERSA_) +STUB("PhIREokl5jw", _ZN7WebCore9HTMLNames7nobrTagE) +STUB("PhM-93-E9p8", _ZN7WebCore19toAutofillFieldNameERKN3WTF10AtomStringE) +STUB( + "PhPCK-Hf2Sg", + _ZN3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBody11setLocationERKNS1_6Common12IntrusivePtrINS3_8LocationEEE) +STUB( + "PhSP8JkxzgQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEE5resetEPS9_) +STUB( + "PhTR98wtFCg", + _ZN7WebCore28getDefaultWebCryptoMasterKeyERN3WTF6VectorIhLm0ENS0_15CrashOnOverflowELm16ENS0_10FastMallocEEE) +STUB("PhXZbj4wVhE", sceUserServiceGetAppSortOrder) +STUB("PhaB8j60MX0", + _ZNK3JSC8Debugger36handleExceptionInBreakpointConditionEPNS_14JSGlobalObjectEPNS_9ExceptionE) +STUB("PhaCI6xuby4", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_6NpUserEED1Ev) +STUB("Phf1BeT85t0", _ZN3sce2Np9CppWebApi14ConnectAccount2V212PartnerToken12setTokenTypeEPKc) +STUB( + "PhkmqQQ2gBI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEE7get_refEv) +STUB("PhnNN0UEV6Y", sceAudioOutExGetMonitorInfo) +STUB( + "PhsQLxwcDaI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariable9terminateEv) +STUB( + "PhyeW+9ijRE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEEC2Ev) +STUB("Pi3K47Xw0ss", sceSystemServiceRegisterDaemon) +STUB("Pi6AW0gO3bI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEEC2Ev) +STUB("PiBUc0A-h7M", mono_aot_platformunbox_trampolines) +STUB("PiJDZsxlKTc", _ISCIIData_67) +STUB( + "PiKz+neakeE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("PiMLXWchQjY", mono_disable_jit_time_log) +STUB("PiR0tiTnNbM", _ZN3sce4Json6String6resizeEm) +STUB( + "PiTXx78dkbo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEED2Ev) +STUB("PiTp8yJA66w", __tsan_atomic8_exchange) +STUB("PiVXIX6zE6g", _ZN7WebCore20TransformationMatrix11translate3dEddd) +STUB("PiYbgSiNYTU", _ZN3sce7Toolkit2NP2V24Auth7IdTokenC1Ev) +STUB( + "PiZeyClurI4", + _ZN7WebCore16MIMETypeRegistry16allowedMIMETypesERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEES8_) +STUB("Piaf9uSYkTw", _ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_13SessionMemberEE8max_sizeEv) +STUB("PiajzJbyAUU", _ZN7WebCore16MIMETypeRegistry24isSupportedImageMIMETypeERKN3WTF6StringE) +STUB( + "PibUYJZCKsY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("PibmKHRQ6o4", _ZN3sce2np13JsonArrayImpl7AddItemEPKNS0_9JsonValueE) +STUB( + "PilXF3qeZGY", + _ZN3sce2Np9CppWebApi14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyD1Ev) +STUB( + "PinRPBASNQc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEEC2ERS8_) +STUB("Pip4E4FFnl4", sceAppInstUtilGetMainAppTitleIdForSP) +STUB("PiqUFSb3lME", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V125NatConnectivityPropertiesD1Ev) +STUB( + "Pius-5zMeJI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE8copyFromERKS9_) +STUB("PivWP53ZNpg", + _ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody6toJsonERNS_4Json5ValueEb) +STUB( + "Pizp19rhNKs", + _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody21joinableUserTypeIsSetEv) +STUB( + "Pj4M-cTZQ1U", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("Pj8CwRqcOIk", sceRegMgrCntlStopHdd) +STUB("Pj8asGd55jA", cairo_save) +STUB( + "PjBvrx1BrXE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEppEv) +STUB("PjCUXhgjQWU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEaSERS7_) +STUB("PjH5dZGfQHQ", _ZNSt13basic_filebufIwSt11char_traitsIwEE8overflowEi) +STUB("PjJl7n8fBOw", _ZN3sce7Toolkit2NP2V24Core15MemoryPoolStatsD2Ev) +STUB("PjPjBpqrCsk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEdeEv) +STUB( + "PjR1789j8-0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEC1ERKS7_) +STUB("PjS5uASwcV8", sceVideoOutSetBufferAttribute2) +STUB( + "PjSNbpy6b+4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "PjSpYoWjk-8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEeqERKS9_) +STUB( + "PjWA+oX7lQM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEE11get_deleterEv) +STUB( + "PjWWA4MpFFM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEED1Ev) +STUB("PjZH0eJrV2o", Java_com_sony_bdjstack_javax_media_controls_SoundManager_start) +STUB("PjaLsEBLxZM", rgctx_fetch_trampoline_mrgctx_2_p) +STUB( + "PjbKiBhuYDs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("Pjc+g20VjsI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEEmmEv) +STUB("PjcqP0lC4U8", _ZNK7WebCore13GraphicsLayer18getDebugBorderInfoERNS_5ColorERf) +STUB("PjgFQh4K4ic", RSA_verify_PKCS1_PSS) +STUB( + "Pji3V23E1vY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("Pjjg+htjN1Q", _ZN7WebCore21JSCSSStyleDeclaration9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("PjlYLdMXkbY", + _ZNK3sce2np14JsonObjectImpl16fieldSetAddFieldEPNS1_8FieldSetEPKcPKNS0_9JsonValueE) +STUB("Pjm5rPUOZcg", _ZN3sce7Toolkit2NP2V212NetworkUtils16NetStateDetailedD1Ev) +STUB("PjtNjwtAm4A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEED1Ev) +STUB( + "PjutmGKTYYk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEptEv) +STUB("PjvLIYbR0dQ", + _ZN3sce7Toolkit2NP2V29Messaging7Request27GetReceivedGameDataMessages13MAX_PAGE_SIZEE) +STUB( + "PjvyEeCW1iY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEC2EPKS8_) +STUB( + "PjwW7BRPNNI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEC1ERKS7_) +STUB("PjwbqtUehPU", _ZSt19_Throw_future_errorRKSt10error_code) +STUB("Pjwx-8rnLT8", sceAvSettingIsVrSupportedByHdmiMonitorInfo2) +STUB( + "Pk6qU699jek", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE5emptyEv) +STUB( + "Pk8hfvqWG-0", + _ZN9Inspector23CanvasBackendDispatcher27requestCSSCanvasClientNodesElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("PkCPXmop-Eo", SSL_check_private_key) +STUB("PkGZZi1G2Gw", cairo_clip) +STUB("PkHNx0qXm-M", jpeg_fdct_5x5) +STUB( + "PkJTic9Y9z4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("PkKivtUQ5Mc", _ZN7WebCore36ISOProtectionSystemSpecificHeaderBox5parseERN3JSC8DataViewERj) +STUB( + "PkOxC--b9aM", + _ZN15AbstractStorage14TwitterStorage10GetContentERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_7ContentEE) +STUB("PkPhUiq-uJ4", mono_aot_Sce_Vsh_ShareGuideScenejit_code_start) +STUB("PkRTWNBI4IQ", sceSystemServiceActivateMpeg2Init) +STUB("PkS44IGrDkM", pthread_timedjoin_np) +STUB("PkdLsRA4ON0", sceGameCustomDataDialogUpdateStatus) +STUB("Pkhe5Qcq++0", glClearColor) +STUB( + "PkiChLLkO3g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEED1Ev) +STUB("PkjUsxE3cIU", _ZN3sce2Np9CppWebApi12Leaderboards2V112ErrorFactory7destroyEPNS3_5ErrorE) +STUB( + "Pkmgb7aHYfY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEE7add_refEv) +STUB( + "PkogzrOOpfU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEppEi) +STUB("Pkx0lwWVzmQ", sceNetConfigWlanInfraGetRssiInfo) +STUB("Pl+MvjZGQZ0", _ZN3sce7Toolkit2NP2V210Tournament14RegisteredTeamC1ERKS4_) +STUB("Pl0MvaNRpQM", nsnp_SetLicense) +STUB("Pl1+a02ZdbY", fuse_read_cmd) +STUB( + "Pl2rC3odlUQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEppEv) +STUB( + "Pl9eUn2ogjA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE7reserveEi) +STUB( + "Pl9estppCus", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "PlA5F5t-T5A", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_28ActivityFeedSharedVideoStoryENS1_15AppSTLAllocatorIS5_EEEED1Ev) +STUB( + "PlBqyQG8tWo", + _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody16getMaxSpectatorsEv) +STUB("PlDgAP2AS7M", _Wctype) +STUB("PlEm4beEuzU", mono_aot_Sce_Vsh_FileSelectorjit_code_end) +STUB("PlJvKz-RQMU", _ZN4Manx4Pipe5closeEi) +STUB( + "PlM8QvuGgq8", + _ZN9Inspector20DOMBackendDispatcherC2ERNS_17BackendDispatcherEPNS_27DOMBackendDispatcherHandlerE) +STUB("PlVbL+8eODs", u_versionFromString_67) +STUB("PlYC5e5SHlE", _ZN7WebCore11MathMLNames17linethicknessAttrE) +STUB("PlbtsaqomCQ", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEED2Ev) +STUB("Plf-L-WEaok", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge18ChallengeThumbnailEE12deepCopyFromERS7_) +STUB("Plg0ULGTHrY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEEC1ERS6_) +STUB( + "Plggp-cNg+w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE7popBackEv) +STUB("Plgh0aSAqgE", AnnotateNoOp) +STUB( + "PljvwIWp+6E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEED1Ev) +STUB("Plm0DSilV0U", _ZN3sce7Toolkit2NP2V28Matching7Request7GetDataC1Ev) +STUB("PlmVIwQdarI", uuidgen) +STUB( + "PlmysXlZLXQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE6resizeEj) +STUB( + "PlpUlUVPvKs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEC2ERS7_) +STUB( + "Plqd66h4PH0", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi44ParameterToPatchGameSessionsSearchAttributes47getpatchGameSessionsSearchAttributesRequestBodyEv) +STUB("Plt0pAFPLEA", uloc_getLocaleForLCID_67) +STUB("PltJvsE1R5U", + _ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody18getStartSerialRankEv) +STUB("Pm1Yrupb4UI", sceCesSJisPutCode) +STUB("Pm62TDoZhmw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEC2Ev) +STUB( + "PmCmHvVvky4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEC2EPS8_) +STUB("PmDQ3uGuWUI", waitid) +STUB("PmI7ucuTG-U", + _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody20unsetUpdatedDateTimeEv) +STUB("PmL-TwKUzXI", pthread_mutexattr_getpshared) +STUB( + "PmLxlbiX2Gk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEC2Ev) +STUB("PmMi+EcpbpM", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry13getSerialRankEv) +STUB("PmNFmqCvcBo", _ZN3sce2np18HttpConnectionPool13FindRemovableEv) +STUB("PmO0p3Yh6-0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEixEm) +STUB( + "PmQt+EUQlmA", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("PmW8tQ5KXZU", + _ZN7WebCore28convertToIntegerEnforceRangeImEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB("PmYkO9PkI48", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEEneERKS7_) +STUB("PmZfv0lup1c", lutimes) +STUB( + "Pme9AKbb-aI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEEcvbEv) +STUB( + "PmiZ2KHvbEY", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeaders21intrusive_ptr_sub_refEPS5_) +STUB( + "Pmnnk3GmlBI", + _ZN9Inspector8Protocol13BindingTraitsINS0_8Debugger15FunctionDetailsEE11runtimeCastEON3WTF6RefPtrINS5_8JSONImpl5ValueENS5_13DumbPtrTraitsIS8_EEEE) +STUB( + "PmoDYbfb0As", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEED2Ev) +STUB("Pms894z0DiA", ucnv_fromUnicode_67) +STUB("PmsH4f3z8Yk", _ZN3sce2np3ipc17ServiceIpmiClientD0Ev) +STUB("Pmww3qbPTXI", am_pm) +STUB("PmyrbbJSFz0", sceNpWebApi2PushEventUnregisterPushContextCallback) +STUB( + "Pmzfl-YOkdU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEED1Ev) +STUB("Pn+RLbJ8UxY", mono_install_assembly_preload_hook) +STUB("Pn2dnvUmbRA", _Atomic_fetch_and_4) +STUB("Pn2yl7Yi2e4", WKPageConfigurationGetPageGroup) +STUB("Pn55KHIISzQ", mono_aot_Microsoft_CSharpplt_end) +STUB("Pn5ejKkYino", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_17TitleCloudStorage2V19ConditionEEC1EPS6_) +STUB( + "Pn77BeNF79U", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody23unsetTotalVariableCountEv) +STUB("PnEf59WpcxE", jinit_memory_mgr) +STUB("PnF5lM3QO5o", _ZN3sce7Toolkit2NP2V28Commerce10DescriptorD2Ev) +STUB( + "PnKT6R6JJfY", + _ZN7WebCore10StorageMap11importItemsERKN3WTF7HashMapINS1_6StringES3_NS1_10StringHashENS1_10HashTraitsIS3_EES6_EE) +STUB("PnLJibQS9wc", _ZN24scePssCAudioSourcePlayer9SetVolumeEfjj) +STUB("PnM1RtWwuQQ", _ZN7WebCore10FileSystem11getFileSizeERKN3WTF6StringERx) +STUB( + "PnRxpmg91oE", + _ZN3sce7Toolkit2NP2V28Matching11searchRoomsERKNS3_7Request11SearchRoomsEPNS2_4Core8ResponseINS3_5RoomsEEE) +STUB( + "PnS3OVKcuCg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB("PnTVY89MIWQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEEC2EPS5_PNS2_10LibContextE) +STUB( + "PnWl6769fkU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEmmEv) +STUB("PnbfogQQRus", _ZN9Inspector15RemoteInspector19sendMessageToRemoteEjRKN3WTF6StringE) +STUB("Pnc6YCGGCLs", __asan_store1) +STUB( + "PnfXpJT6WMQ", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyC2EPNS1_6Common10LibContextE) +STUB("PnfhEsZ-5uk", _Atomic_fetch_and_2) +STUB( + "Png2PqauR34", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEEC2ERSA_) +STUB("PnopWZwal4g", mono_aot_Sce_Vsh_AppDbWrapperjit_code_end) +STUB("PnslheyT+CQ", _ZN3JSC14JSGlobalObject13clearRareDataEPNS_6JSCellE) +STUB( + "PntCHBbMMvk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEC1EPS8_) +STUB( + "PnxKtL3GAWs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEEC2ERSA_) +STUB("PnyncWpDho8", _ZN3sce2Np9CppWebApi6Common6VectorIdED1Ev) +STUB( + "Po+yMubJvcU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB("Po-3sCgpU9c", _ZN9Inspector22InspectorDebuggerAgent20setSuppressAllPausesEb) +STUB("Po2PGyK-DwM", _ZN3JSC20waitForVMDestructionEv) +STUB("Po4ZjIgKP3Y", mono_monitor_exit) +STUB("Po8kyd3DlIw", FT_Stroker_Rewind) +STUB("PoGof-Lb4mw", _Z38sceGpuDebuggerSetEnabledExceptionsMaskPN3sce3Gnm16CsStageRegistersEj) +STUB( + "PoHvMs4v0oM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEC1EPS6_PNS2_10LibContextE) +STUB( + "PoMkBfuweq4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEE5resetEPS9_) +STUB("PoNpBtcE2WM", _ZNK3sce7Toolkit2NP9Utilities6FutureI7SceNpIdE17getAdditionalInfoEv) +STUB("PoPlzSr6JaQ", _ZN7WebCore21SQLiteDatabaseTracker35decrementTransactionInProgressCountEv) +STUB( + "PoQTm3DJn+E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE5beginEv) +STUB("PoT9ByTU4ws", curl_mime_data_cb) +STUB("PoT9sdk4N18", _ZN3WTF10StringImpl7replaceEDsPS0_) +STUB("PoUnroC+e4c", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBodyD2Ev) +STUB( + "PoWNhZLzMJM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "Poe6uclc82E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEC2Ev) +STUB("PoeH5eI+ozw", sceAvSettingCallbackFuncsInit) +STUB("PofiC1Z9Z+M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEaSERKS7_) +STUB("Pogmt0dlTkU", sceShareFactoryUtilBackToGameFromShareFactory) +STUB("PonjVrfsY5g", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEEplEm) +STUB("PooCGWbZmrg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEE7add_refEv) +STUB("Poroalj+js4", mono_lookup_pinvoke_call) +STUB("PosUi-wH830", _Z34sceGpuDebuggerUnregisterShaderCodePKN3sce3Gnm16VsStageRegistersE) +STUB( + "PosWMc9A4-M", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEptEv) +STUB("PosyHI1Qm2A", png_set_palette_to_rgb) +STUB("PoyC2Xihreo", mono_aot_I18N_MidEastunbox_trampoline_addresses) +STUB("Pp-vZnBIOY4", mono_mempool_new_size) +STUB( + "Pp1Bi76tQE4", + _ZN7WebCore21WheelEventTestTrigger40setTestCallbackAndStartNotificationTimerEON3WTF8FunctionIFvvEEE) +STUB("Pp2US+ss9Sw", mono_aot_Sce_Vsh_Sl2_Sl2Clientunbox_trampolines_end) +STUB("Pp9o-vFsZxc", RemotePlayGetConnectHistory) +STUB("PpEwl0ilHfA", GCC_except_table125) +STUB("PpGCVL9tJVg", uregex_find_67) +STUB( + "PpONiIGBllY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEEptEv) +STUB("PpR7I7RCsY0", _ZN3sce4Json6Parser11parseNumberERNS0_5ValueERNS0_11InputStreamEPS2_) +STUB("PpVBSdRazkc", sceAppInstUtilAppCancelGetAllAppSize) +STUB("PpVPmeyqKTU", uhash_compareLong_67) +STUB("PpXQBPUd1t4", _ZN3sce7Toolkit2NP2V27Ranking8TempRankC1ERKS4_) +STUB( + "PpXl-9OTjBQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEC2Ev) +STUB( + "PpYiE4tpcJw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEEaSERKSA_) +STUB("PpbaIOEJ-Qw", sceDataTransferTargetRequestGetUsers) +STUB("Pph0Anbgy3w", _ZN7WebCore17JSHTMLLinkElementD1Ev) +STUB("PphZdSYxF0A", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEEdeEv) +STUB( + "PpmsWwfTXaQ", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser13isInitializedEv) +STUB("Ppoo4x3g3o0", + _ZN3sce2Np9CppWebApi14SessionManager2V124PlayerSessionPushContextC2EPNS1_6Common10LibContextE) +STUB("PpwmhWPNmq4", mono_class_get_nested_types) +STUB("PpzhX1tTFJ8", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18GameCustomDataItemEE9constructEPS3_RKS3_) +STUB("Pq2t9rer-eU", jpeg_write_scanlines) +STUB( + "Pq3IW5WuNno", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEptEv) +STUB("Pq3eUDHuJeA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEE11release_refEv) +STUB( + "Pq4PkG0x1fk", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERm) +STUB( + "Pq4ZFyg3TbE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEEcvbEv) +STUB("Pq89GcAEVlY", uhash_count_67) +STUB("Pq8d3VGRQsE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEC2Ev) +STUB("PqCY25FMzPs", sceNpWebApiUnregisterExtdPushEventCallback) +STUB( + "PqCagVc4p7c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEE11release_refEv) +STUB("PqF+kHW-2WQ", tolower) +STUB("PqF42XCkG2M", _ZTVN7WebCore21ISOTrackEncryptionBoxE) +STUB("PqGi4bJ8EVU", _ZN3sce7Toolkit2NP2V27Ranking12FriendsRanks8MAX_PCIDE) +STUB("PqItRlA8jh8", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_22FriendsRankInformationEE3getEv) +STUB("PqJuCpzlGlo", uregex_openUText_67) +STUB("PqNJHQetrCU", _ZN3sce7Toolkit2NP2V28Matching7Request11SetRoomInfo24MAX_SIZE_CHANGEABLE_DATAE) +STUB("PqRL6RZQt2w", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEEC2EPNS2_10LibContextE) +STUB( + "PqRaRV11Bow", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEEcvbEv) +STUB( + "PqRoVXyPIWA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEptEv) +STUB( + "PqSY4P0AdQk", + _ZN3sce2Np9CppWebApi14SessionManager2V160PatchGameSessionsSessionIdMembersAccountIdRequestBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_53PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEE) +STUB("PqTXHcj8G7U", WKBundlePageIsControlledByAutomation) +STUB( + "PqU57Nb3I44", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "PqUyPPY9QEE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("PqYIuqUdMMU", scePlayReadyLicenseGetExpirationTime) +STUB("PqZUVw-1dv0", _ZN3WTF7Unicode43convertUTF8ToUTF16ReplacingInvalidSequencesEPKcS2_PPDsS3_Pb) +STUB("Pqaa4LmXt2U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEEC2Ev) +STUB("Pqc4zU17hDA", mono_aot_Sce_PlayStation_PUIPlatformjit_code_start) +STUB("PqcqrLmWuXI", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setAutoplayPlayList) +STUB( + "Pqi36WuD7gg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEE7add_refEv) +STUB("PqlxOq+k02o", scePadTrackerReadState) +STUB( + "Pqo+CMWu3a4", + _ZN3sce2Np9CppWebApi14SessionManager2V133PlayerSessionMemberForReadFactory7destroyEPNS3_26PlayerSessionMemberForReadE) +STUB("Pqt3YpFSHgI", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_6NpUserEE3getEv) +STUB( + "PqtGZPrM+h8", + _ZN7WebCore19JSDOMMatrixReadOnly15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB( + "Pqttckyxsqk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("Pqwjp163cEk", mono_aot_Sce_PlayStation_PUIjit_code_start) +STUB( + "Pqx7PQBdDiU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEED2Ev) +STUB("Pqxglq1oKec", sceAgcDriverGetPaDebugInterfaceVersion) +STUB( + "PqyQyW0wqk0", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("Pr+3cKCW-Vk", + _ZN7WebCore21ContentSecurityPolicyC2EON3WTF3URLEPNS_27ContentSecurityPolicyClientE) +STUB("Pr1yLzUe230", _ZNSt7_MpunctIwEC2Emb) +STUB("Pr3eI2uGgvU", FT_Get_CID_Registry_Ordering_Supplement) +STUB( + "Pr8MLz5h7PU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEC1EPS8_) +STUB("Pr98fHFIZlQ", _ZN3WTF14FileSystemImpl8moveFileERKNS_6StringES3_) +STUB( + "PrBoXsdv3a0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEE11get_deleterEv) +STUB("PrCMWi4BcYk", _ZNK7WebCore12ChromeClient21plugInStartLabelTitleERKN3WTF6StringE) +STUB("PrJHmpsK7vo", _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse10unsetTasksEv) +STUB("PrJYoqk6pNw", fuse_reply_ioctl) +STUB( + "PrPI0hbm8E4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEE7add_refEv) +STUB("PrRtLDapA08", sceBgftServiceIntDownloadRestartTask) +STUB( + "PrXTLGjNrwM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEC2EPKS8_) +STUB("PrYIk5NQ50E", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia11ScreenshotsEE12deepCopyFromERS7_) +STUB("PrZtZyFwM6c", FT_Vector_Transform_Scaled) +STUB("PrbcDXkEA6k", uset_freeze_67) +STUB("PrdHuuDekhY", scePthreadKeyDelete) +STUB( + "PrgqcTMIvgw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE8pushBackERKS8_) +STUB("PrjTtnup+U8", _ZN7WebCore9JSDOMRect15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "Prlw2-iJncI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEneERKS9_) +STUB("PrsNSEVDb4Q", mono_aot_Sce_Vsh_Np_Tmdbunbox_trampoline_addresses) +STUB("PrsRaaSO-X0", sched_rr_get_interval) +STUB( + "PrzTcx8qYY4", + _ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRanking24getgetRankingRequestBodyEv) +STUB("Ps-LDe8FIUo", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError9setSourceEPKc) +STUB( + "Ps0acy3fX5A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEC1EPS8_) +STUB("Ps0mzMxBXNI", _ZN7WebCore12SettingsBase35defaultContentChangeObserverEnabledEv) +STUB("Ps1TTqYNGoI", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStatsC1ERS5_) +STUB("Ps27x3RJ0DI", _ZN8meta_gen11MsvPromoter27convMediaTypeAudioFromCodecEN9db_schema9CodecTypeE) +STUB( + "Ps5Kohiaz90", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "Ps6SSNfoIkM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "PsA6vyppS58", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEE7add_refEv) +STUB("PsAoq8wsPM4", _ZN3sce2Np9CppWebApi14SessionManager2V115SearchCondition8setValueEPKc) +STUB("PsCl19Fe6qg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia6VideosEED2Ev) +STUB( + "PsDs+nTjxtk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEC2EPNS2_10LibContextE) +STUB("PsLi2cH8zn4", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11TusVariableEE8allocateEmPKv) +STUB("PsNHxNh4l8I", _ZN12video_parser5vpcom9WaitAsyncE) +STUB("PsOYc1N06NI", mono_aot_Sce_PlayStation_HighLevel_UI2jit_got) +STUB("PsP6LYRZ7Dc", _ZN3sce2np9LocalFile4ReadEPNS0_6HandleEPvmPm) +STUB("PsPv-KHIYzw", u_strtok_r_67) +STUB("PsS7k7Wqyew", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V511ContentTypeEEmmEi) +STUB("PsSJSHGdNOg", __trailz_D2A) +STUB( + "PsTkaDmW+fk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE5eraseENS2_8IteratorIS6_EERS9_) +STUB( + "PsWpdvirejU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEEC1Ev) +STUB("PsX657reZeo", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus11getDataSizeEv) +STUB("Psa+mnQ+wRg", audiodeccpuinternal_core_ops_lpcm_dvd2) +STUB("PsbQqQVbXh0", uloc_getScript_67) +STUB("PscCiEFSU-8", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_15CategoryInfoSubENS2_IS4_EEEEneERKS7_) +STUB("PsjIb1R2yXg", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead18swapSupportedIsSetEv) +STUB( + "PsjyxtJXbRw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEeqERKS9_) +STUB("Psl9mfs3duM", sceUserServiceInitializeForShellCore) +STUB( + "PsoVfMQJUF8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEneERKS9_) +STUB( + "PspcvfMocB4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEptEv) +STUB("PsrRUg671K0", __cxa_increment_exception_refcount) +STUB( + "Pstaa-3RPTA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEEaSERSA_) +STUB( + "Pt-BuKAeNxo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEEcvbEv) +STUB("Pt3b-KLxaQU", _ZTVN9Inspector31RuntimeBackendDispatcherHandlerE) +STUB("Pt3o1t+hh1g", CERT_getCertSignAlgoType) +STUB( + "Pt4Sc1USKFE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEED1Ev) +STUB( + "Pt8Tc4OH58I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEEC2Ev) +STUB("PtEWqXYD3ZQ", ucol_strcoll_67) +STUB("PtFg1zs3XQA", sceShareUtilityAdvanceWakeUpShareMenuForShareContent) +STUB("PtI6Z08-raU", _ZN7WebCore11SimpleRangeC2ERKNS_13BoundaryPointES3_) +STUB( + "PtIOCO0KarE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEneERKS9_) +STUB( + "PtJWPWsDPCY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB( + "PtJiYJWjBcc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEC2EPS8_) +STUB("PtLL62KSqNE", _ZN7WebCore18PerformanceLogging17physicalFootprintEv) +STUB("PtMd00-9AuM", _ZN7WebCore9URLParser14allValuesEqualERKNS_3URLES3_) +STUB("PtN+ACVD+CE", utrie2_serialize_67) +STUB( + "PtTM2UxOgp4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEE7get_refEv) +STUB("PtWVzynOB3I", Java_com_sony_bdjstack_org_bluray_vfs_VFSManagerImpl_proxyIsEnabledClip) +STUB("Pta-SdNQn2g", _ZN3sce7Toolkit2NP2V23TSS7Request7GetDataD2Ev) +STUB( + "Ptcr-bB56oI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEC1EPNS2_10LibContextE) +STUB("Ptlts326pds", sceAudioOutGetLastOutputTime) +STUB("Ptmkf9UnWBg", sceVoiceChatRegisterHandlers) +STUB( + "PtoGPUb80Q4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB("PtsB1Q9wsFA", setlocale) +STUB( + "Ptu4uR0H1uI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEE7get_refEv) +STUB("Pu-M8H+21Ko", _ZN7WebCore10FileSystem17encodeForFileNameERKN3WTF6StringE) +STUB("Pu16MviGh5o", WKAuthenticationDecisionListenerCancel) +STUB("Pu24S09J+MQ", cairo_surface_flush) +STUB("Pu5Yd9+FY9Y", eglGetError) +STUB( + "Pu6Jy9kBoEo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEC1Ev) +STUB( + "Pu96NKzdQVM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE8capacityEv) +STUB("PuDAgZ9hPeA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEE5resetEPS6_) +STUB("PuDSuZC0-7M", _Z21scePlayGoDevTerminatev) +STUB("PuDr2i2SilM", sceS3dConversionOpen) +STUB( + "PuF6eeHnVa0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEE7get_refEv) +STUB("PuHSEX2BUes", + _ZN23sceMetadataReaderWriter18registerParserInfoERKSt6vectorINS_10ParserInfoESaIS1_EE) +STUB("PuLoqDSNPPw", u_terminateChars) +STUB( + "PuQVBIh7Djw", + _ZNK7WebCore21NetworkStorageSession10hasCookiesERKNS_17RegistrableDomainEON3WTF17CompletionHandlerIFvbEEE) +STUB("PucPVglZM04", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils13NetStateBasicEE5resetEv) +STUB("PujNSvz9X1o", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE8pushBackERKS6_) +STUB("PumHNIPjJZg", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE5clearEv) +STUB( + "Pup776bkZzI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEEC2Ev) +STUB("PupARq13wKE", _ZNK3sce2Np9CppWebApi13InGameCatalog2V525ContentInteractiveElement7getNameEv) +STUB( + "PuvUg4ryuVE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("Puyh-qwnMdI", _ZNK3WTF8JSONImpl10ObjectBase10getBooleanERKNS_6StringERb) +STUB("Pv7+GRZsYzk", _ZN3sce7Toolkit2NP9Utilities6FutureI13SceNpOnlineIdEC1Ev) +STUB("Pv800bxWr5I", __asan_report_exp_store8_noabort) +STUB("PvA6Ayn4Kjk", WKBundleFrameHasHorizontalScrollbar) +STUB( + "PvC7z2pqqQI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEE7add_refEv) +STUB("PvCNusrp9xQ", FT_GlyphLoader_New) +STUB("PvDT3ZGpEeo", _ZN3sce2Np9CppWebApi6Common8IteratorINS2_6StringEEC2Ev) +STUB( + "PvEnnkxZI98", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEppEi) +STUB("PvGTq9AGFfk", _ZN3sce2np12WorkerThreadD1Ev) +STUB("PvIP303tQx4", sceDbgGetModuleList) +STUB("PvJ9H9YgUME", sceCustomMusicCoreBgmOutput) +STUB( + "PvMMNXrou90", + _ZN3WTF20ParallelHelperClient17runTaskInParallelEONS_6RefPtrINS_10SharedTaskIFvvEEENS_13DumbPtrTraitsIS4_EEEE) +STUB("PvP3AczVrzY", _ZNK7WebCore11MediaPlayer8hasVideoEv) +STUB("PvR1kzb7Nrg", _ZN3JSC31numberOfStaticOSRExitFuzzChecksEv) +STUB("PvXIwJfJvnU", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V18VariableC1EPNS1_6Common10LibContextE) +STUB("PvdIpHXplvI", mono_aot_Sce_Vsh_SyscallWrappermethod_addresses) +STUB("Pvdmf9PX-2M", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEC1Ev) +STUB("Pvec+0gRArw", _ZN3sce7Toolkit2NP2V26Trophy16TrophyPackTrophyC2Ev) +STUB( + "Pvh67seesy8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEC1Ev) +STUB( + "PvizYcVs3Zc", + _ZN9Inspector17BackendDispatcher27registerDispatcherForDomainERKN3WTF6StringEPNS_29SupplementalBackendDispatcherE) +STUB("Pvj0yOEI-7k", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersC1ERS5_) +STUB( + "Pvl268VFtsI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEE7get_refEv) +STUB("Pvol6lyrgk0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEED2Ev) +STUB("PvpwQ0vg3Cg", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session8SessionsEE19setCustomReturnCodeEi) +STUB("PvrwL+UcYEk", u_strToUpper_67) +STUB("PvsVckzC6Sg", _ZN4Manx8X509cinfD2Ev) +STUB( + "Pvt4DTArgxI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("PvyFzyJLLgQ", _ZN9Inspector33ApplicationCacheBackendDispatcherD2Ev) +STUB( + "Pw+Ub7lnzc8", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13integer3IsSetEv) +STUB( + "Pw-lLCT5sPk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEE11release_refEv) +STUB("Pw6DvB9u7vA", scePerfPmcReset) +STUB( + "PwB1c7pgIlc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("PwCZ85kBsRw", _ZN3JSC7Symbols23mapBucketKeyPrivateNameE) +STUB( + "PwLGdbGa+U8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("PwORPTB4P9M", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V16StatusEEC2Ev) +STUB( + "PwQCqvOVDAg", + _ZNK3sce2Np9CppWebApi14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBody14getCustomData1Ev) +STUB( + "PwQni5t6JLE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("PwWeQF-n0W0", infoLock) +STUB( + "PwZ4YK9rkv8", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeaders21intrusive_ptr_add_refEPS5_) +STUB("PwZEP8ZBK2Y", sceFontGraphicsAgcDrawupFillTextureImage) +STUB( + "PwZd8HUxm2s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEE5resetEPS9_) +STUB("PwdjZ112xLU", sceDeci4hDrfpGetOption) +STUB("PwmjM-dGut4", sceRegMgrSrvCnvRegionStr) +STUB( + "PwnFDv2gBdY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEE5resetEPS6_) +STUB( + "PwrfP9qiRys", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE8copyFromERKSA_) +STUB("Pws2kuMDk4I", + _ZNK3sce2Np9CppWebApi14SessionManager2V117SearchGameSession6toJsonERNS_4Json5ValueEb) +STUB("PwsHbErG+e8", sceSslDisableVerifyOption) +STUB("Px0hid2-QVI", mono_aot_ClassLibrary1method_addresses) +STUB("Px0miD2LuW0", sceRudpGetNumberOfPacketsToRead) +STUB("Px0wgRdxxYI", mono_aot_System_IO_Compressionunbox_trampolines) +STUB("Px3PC4lV3pc", _ZN15AbstractStorage12LocalContentD1Ev) +STUB("Px7+XlVanjA", _ZN7WebCore6Editor18confirmCompositionEv) +STUB("PxEFhy0d5v8", sceAgcDcbClearState) +STUB("PxKWV2fVAps", sceAgcAcbDispatchIndirectGetSize) +STUB( + "PxOLwoKuvQk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEppEv) +STUB("PxOT2VtTt7k", g_hash_table_insert_replace) +STUB("PxP1PFdu9OQ", __udivsi3) +STUB("PxSR9UfJ+SQ", sceFontSetScriptLanguage) +STUB( + "PxUq3rI6YGk", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V331ValidationConstraintInfoFactory7destroyEPNS3_24ValidationConstraintInfoE) +STUB( + "PxYOprqAwI4", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeAccountId2OnlineIdBatch10initializeEPNS1_6Common10LibContextENS6_12IntrusivePtrINS6_6VectorINS6_6StringEEEEE) +STUB("PxaOio84EGs", _ZN8meta_gen11MsvPromoter22retrieveVideoCodecInfoEv) +STUB( + "Pxe-GbIzIKQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEdeEv) +STUB( + "PxgyC-oamxQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEC1EPKS8_) +STUB( + "PxhHYdEzz5A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("PxmFpF49OLg", mono_aot_Sce_Vshjit_got) +STUB( + "PxnOAZEbyAo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEmmEi) +STUB("PxpHnt2AM8k", _ZN3JSC11VMInspector9dumpStackEPNS_2VMEPNS_9CallFrameEj) +STUB("Pxx1uH51g-E", sceAvSettingOpenLoopbackBuffers) +STUB("Py+Dast40bs", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V19JoinStateEEppEi) +STUB( + "Py-PldqZEwk", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "Py0W-n41Pe4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEdeEv) +STUB("Py0XtCoi5IU", sceMusicPlayerServiceReceiveEvent) +STUB( + "Py1LYfTlc98", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEmmEv) +STUB( + "Py7OkV07HKU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("Py8HlsNrKVc", CmdfullpathThread) +STUB("Py8hBfDOUB8", FTC_Node_Unref) +STUB( + "Py9j9prt0c0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE5beginEv) +STUB("PyAkLlm5O98", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUserD2Ev) +STUB("PyB-b1aYveg", sceFontGetCharVariationGlyphCode) +STUB("PyBQnBEiOmE", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE5clearEv) +STUB("PyDpx1eHD8Y", sceHmdGetEyeStatus) +STUB("PyFQ+tpKjuc", _ZN7bmalloc15IsoHeapImplBaseC2ERNS_5MutexE) +STUB("PyGadhn+UW4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed12SharedVideosEEC1Ev) +STUB("PyJwedJxbv0", Java_com_sony_bdjstack_security_aacs_AACSOnline_checkPermission) +STUB("PyMbL9F2oBY", _ZN3sce4Json5Value9serializeEPFiRNS0_6StringEPvES4_) +STUB("PyNH7p4LVw8", sceLncUtilIsActiveCdlg) +STUB("PyO5rPUsqi4", _ZN7WebCore24CoordinatedGraphicsLayer38updateContentBuffersIncludingSubLayersEv) +STUB("PyUIXiudO3U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEC1Ev) +STUB( + "PyYsidxhGcY", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEiRNS2_10LibContextEPT_m) +STUB( + "PyfDtfwYobk", + _ZN3sce2Np9CppWebApi14SessionManager2V145RequestCreatePlayerSessionNonPsnPlayerFactory6createEPNS1_6Common10LibContextEPKcS9_PNS5_12IntrusivePtrINS3_38RequestCreatePlayerSessionNonPsnPlayerEEE) +STUB("PysF6pUcK-o", CA_MGMT_freeCertificate) +STUB( + "PysqRdG2nnQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB("Pyu7Zyt6XUE", _ZN3WTF25activateSignalHandlersForENS_6SignalE) +STUB("PyySvnK-JGM", WKContextMenuCopySubmenuItems) +STUB("Pyz55DYmOrI", curl_mvaprintf) +STUB( + "PyzmKd8rqIE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE21intrusive_ptr_sub_refEPS9_) +STUB("Pz262plj20w", FT_Outline_GetInsideBorder) +STUB( + "Pz6hb6j0PLg", + _ZN7WebCore14SecurityPolicy32removeOriginAccessWhitelistEntryERKNS_14SecurityOriginERKN3WTF6StringES7_b) +STUB("PzDtD6eBXIM", sceSaveDataGetBoundPsnAccountCount) +STUB("PzF+L5zXoyg", sceVdecswGetHevcPictureInfo) +STUB( + "PzKTioj6LP8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEEC1ERKSA_) +STUB( + "PzLUwQXc7VM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEptEv) +STUB("PzOv16iXyDg", WKBundlePageResetApplicationCacheOriginQuota) +STUB("PzQvrSllhrE", _ZN7WebCore22EmptyFrameLoaderClient25dispatchDidBecomeFramesetEb) +STUB("PzSuY2qbyK0", _ZN3JSC10JSDollarVM6s_infoE) +STUB("PzTaeImZ7Qc", _ZN3JSC9JSPromise15resolvedPromiseEPNS_14JSGlobalObjectENS_7JSValueE) +STUB("PzWdgYWu5jY", ubidi_getRuns_67) +STUB("PzWiGzGFE+s", _Tolotab2) +STUB("PznfSvchYJ8", _ZN3sce2np18HttpConnectionPoolC1EP16SceNpAllocatorEx) +STUB("Q+0gwJDXOoc", _ZN3sce7Toolkit2NP2V28Presence12Notification14PresenceUpdate5resetEv) +STUB( + "Q+0k1gMAsWg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEEaSERKS9_) +STUB( + "Q+6s+TQjKD0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("Q+85zvk4FB8", _ZN7WebCore20DeprecatedCSSOMValue7destroyEv) +STUB("Q+B+nBqzer4", RAND_file_name) +STUB("Q+C68R80ZtA", _ZN7WebCore9HTMLNames12onselectAttrE) +STUB("Q+CMOdoSuf0", sceMusicCoreServerTryLoadCore) +STUB("Q+IdDa+f7P4", _ZN3WTF9MediaTimenwEm) +STUB( + "Q+N53ON8YeI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEEC2ERSA_) +STUB("Q+SDBl-5rmk", sceKernelIsDisableRazor) +STUB("Q+Wny7kcQkk", _ZNK7WebCore9DOMWindow8locationEv) +STUB("Q+XYJJN+O4g", u_fclose_67) +STUB("Q+ZnPMGI4M0", _ZN6Dinkum7threads21thread_resource_errorD0Ev) +STUB( + "Q+an+p-4TaY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEC2EPKS8_) +STUB( + "Q+bu+FUpCqI", + _ZN9Inspector20DOMBackendDispatcher17highlightNodeListElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "Q+gB3-eGEsU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEC2EPS6_PNS2_10LibContextE) +STUB( + "Q+ibG3L3mRM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEE3getEv) +STUB("Q+kAEiiSDi0", jpeg_set_quality) +STUB("Q+mSQ2U6wWY", sceNpSnsIntYtRefreshMasterToken) +STUB( + "Q+mysfonf+A", + _ZN3sce2Np9CppWebApi14SessionManager2V119JoinableUserFactory6createEPNS1_6Common10LibContextERKmPNS5_12IntrusivePtrINS3_12JoinableUserEEE) +STUB("Q+r59ulWFF0", mono_aot_Sce_Vsh_BackupRestoreUtilplt_end) +STUB("Q+sieaGCYKk", _ZN3sce7Toolkit2NP18SessionInformationC2Ev) +STUB("Q+uw1RI+-0A", mono_aot_ReactNative_Modules_Vshjit_code_end) +STUB( + "Q+vWF9PKFkg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEED1Ev) +STUB("Q+xU11-h0xQ", sqrtf) +STUB("Q+ysHCIzphI", FT_MulDiv) +STUB( + "Q-+ToH0d7dw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEptEv) +STUB( + "Q-3Y4xy4y4c", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEdeEv) +STUB("Q-3oVPDGaSg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEEC1EPS6_) +STUB("Q-5qZKzhqeQ", _ZNK3sce2Np9CppWebApi6Common6VectorIlE4sizeEv) +STUB("Q-8duzyUNn0", sysKernelGetIntdevModeForInternalLibc) +STUB("Q-8lQCGMj4g", _ZNKSt7collateIcE7compareEPKcS2_S2_S2_) +STUB("Q-AesC937KM", swapon) +STUB("Q-DnYHz-WO8", _ZN12video_parser14cVideoOperator22getRelativeFileExtListEv) +STUB( + "Q-EqLnxcZMo", + _ZN7WebCore16FrameLoadRequestC2ERNS_8DocumentERNS_14SecurityOriginEONS_15ResourceRequestERKN3WTF6StringENS_20InitiatedByMainFrameERKNS7_10AtomStringERKNS_17SystemPreviewInfoE) +STUB( + "Q-Fk6F9Ca1s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEE11get_deleterEv) +STUB("Q-GfRQNi66I", posix_spawnattr_getpgroup) +STUB( + "Q-GukwstEAI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("Q-JroQdKRfM", scePrecompiledShaderEntries) +STUB( + "Q-L0trYF9ZU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEE11release_refEv) +STUB( + "Q-LLB987Fxs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEC1Ev) +STUB( + "Q-OalOkopvs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEE11release_refEv) +STUB("Q-T1Bl8F0NU", _ZNK3JSC6JSCell12toObjectSlowEPNS_9ExecStateEPNS_14JSGlobalObjectE) +STUB("Q-UPpTk+jlQ", uprops_getSource_67) +STUB("Q-bLp+b-RVY", fesetenv) +STUB("Q-dpWphd3xE", __asan_handle_no_return) +STUB( + "Q-hGoq4b928", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEC2Ev) +STUB("Q-inJAofRsY", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEEdeEv) +STUB( + "Q-jJkEplAP4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("Q-m9mL4Yznw", sceDbgClearHardwareBreakPoint) +STUB("Q-nfTbHkYNQ", sceVshAvcapGetStaticInfo) +STUB("Q-ryXoj4ez0", _ZNK3sce3Xml3Dom8NodeList4itemEj) +STUB("Q-tHyIAe8sA", rgctx_fetch_trampoline_rgctx_81_p) +STUB( + "Q-tT44UeOGI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEC2Ev) +STUB("Q-u6dljYZ9o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEC1Ev) +STUB( + "Q-v9YJNtCBo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEEcvbEv) +STUB("Q01bWyOPayI", _ZN3JSC19HeapSnapshotBuilderD1Ev) +STUB("Q07J7XpvhrU", sceAmprAmmGiveDirectMemory) +STUB("Q0Avi9kebsY", sceNpScoreGetBoardInfoAsync) +STUB( + "Q0Bjn2jHN4M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("Q0C9YHqdzNc", _ZN9Inspector25ConsoleFrontendDispatcher25messageRepeatCountUpdatedEi) +STUB("Q0DOEo6XxTI", _ZN7WebCore12SharedBufferC2EPKhm) +STUB("Q0ERc7GP3fc", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product16contentTypeIsSetEv) +STUB("Q0EsssH7tiw", _ZN7WebCore11JSDOMWindow13visitChildrenEPN3JSC6JSCellERNS1_11SlotVisitorE) +STUB( + "Q0F0HHKJKa8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEmmEi) +STUB("Q0GMhmZTn6A", _ZN6WebKit17ChildProcessProxy7connectEv) +STUB("Q0GjAmlMAzE", _ZN7WebCore15SQLiteStatement13getColumnTextEi) +STUB("Q0Ockqsjzp0", + _ZN7WebCore18isStartOfParagraphERKNS_15VisiblePositionENS_27EditingBoundaryCrossingRuleE) +STUB("Q0Q4w5um2vY", g_shell_quote) +STUB("Q0VsWTapQ4M", _ZNKSt22_Future_error_category4nameEv) +STUB( + "Q0W3ScpoJN8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEmmEv) +STUB("Q0Wxk8nDIew", _ZN7WebCore17PageConsoleClientnaEm) +STUB( + "Q0fKqfQeXnI", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScore22setxPsnAtomicOperationENS5_19XPsnAtomicOperationE) +STUB("Q0kH-Vmn50Y", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetInteger7Ev) +STUB( + "Q0nDgIXoimw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEEdeEv) +STUB("Q0ng4sWj2E8", _ZN3sce4Json6Object4PairD1Ev) +STUB("Q0qr9AyqJSk", sceKernelGetEventFflags) +STUB("Q0rWMr9ONVw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEED1Ev) +STUB("Q0v3WNMvbvk", _ZN7WebCore22SkewTransformOperationD2Ev) +STUB( + "Q0zfolaJis8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEcvbEv) +STUB("Q10zljdilhw", _ZN9Inspector22AuditBackendDispatcherD0Ev) +STUB("Q13L4R2-JYU", WKBundleNodeHandleGetHTMLInputElementAutofilled) +STUB( + "Q14AG3byKvU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE5beginEv) +STUB( + "Q15q3jMTauY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEC2EPS8_) +STUB("Q17eavfOw2Y", _ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE) +STUB("Q182x0rT75I", sceNpTrophySystemBuildTitleIconUri) +STUB("Q19pQ5raShA", _ZL33__orbis_default_terminate_handlerv) +STUB("Q1BL70XVV0o", _ZSt18uncaught_exceptionv) +STUB("Q1GII-96g0E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEcvbEv) +STUB( + "Q1JcaXOVUZM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "Q1NlnOFVnSY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE4sizeEv) +STUB("Q1PLuSTqHHU", _ZN3sce3Xml3Sax6Parser26setSkipIgnorableWhiteSpaceEb) +STUB( + "Q1WNakfGV08", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitationsC1Ev) +STUB("Q1WgqFdYEjI", _ZN7WebCore11MathMLNames10msubsupTagE) +STUB( + "Q1Yzs5b+ZkQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEC2EPNS2_10LibContextE) +STUB( + "Q1biUohzrHE", + _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession21setSupportedPlatformsERKNS1_6Common6VectorINS5_6StringEEE) +STUB("Q1cAujaJc48", ucol_setText_67) +STUB("Q1qTdcc0SIU", g_strfreev) +STUB("Q1xklO-HjOQ", _ZN7WebCore17PageConsoleClientnaEmPv) +STUB( + "Q200Pn7aHfM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEED1Ev) +STUB("Q20e8xqJqc8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEdeEv) +STUB( + "Q27EYq6CELQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "Q27K98jb8jU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEC2EPKS8_) +STUB("Q29NWnvK6OI", sceDebugDestroyScratchDataArea) +STUB("Q29SbHgHtLg", + _ZN6WebKit12ChildProcess18addMessageReceiverEN3IPC15StringReferenceEmRNS1_15MessageReceiverE) +STUB("Q29tvAZCO+Q", _ZN3sce2Np9CppWebApi7Matches2V113RequestMemberD1Ev) +STUB("Q2CwxSiU3hI", _ZN3sce7Toolkit2NP2V210Tournament15RegisteredUsersC2ERKS4_) +STUB( + "Q2CxkpPNqDI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("Q2RLQTGtprY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEC1Ev) +STUB("Q2S-VY3-ppo", scePlayReadyCdmiDestroyMediaKeys) +STUB("Q2UmHdK04c8", sceNpTusAddAndGetVariableAsync) +STUB("Q2V+iqvjgC0", vsnprintf) +STUB( + "Q2XM6JS7ExU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE21intrusive_ptr_sub_refEPS9_) +STUB("Q2Z+6uNGCEo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEED2Ev) +STUB("Q2aiC5km68I", + _ZN15AbstractStorage15FacebookStorageC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("Q2alI2Oi1wE", MASSMCTerminate) +STUB( + "Q2bZbHH-xRs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEEptEv) +STUB( + "Q2eINeB+hUI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEE7get_refEv) +STUB("Q2fjKDMTJ+Q", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE3endEv) +STUB( + "Q2jbv3GGkR0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEED1Ev) +STUB("Q2lC2jg+CZk", _ZN3JSC8FreeList14initializeListEPNS_8FreeCellEmj) +STUB( + "Q2mC5l6I5lY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEC2Ev) +STUB( + "Q2mhzhitWSw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE7reserveEi) +STUB("Q2p7ULYnJZo", _ZNK7WebCore16VisibleSelection17isContentEditableEv) +STUB("Q2r4AKLMrac", _ZN7WebCore11MediaPlayer24firstVideoFrameAvailableEv) +STUB("Q2sTPN-hnYw", _ZN15AbstractStorage14TwitterContentD1Ev) +STUB( + "Q2ut2hKGH2o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "Q2wCJ66cp8s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEED1Ev) +STUB("Q2y5IqSDZGs", pthread_attr_setcreatesuspend_np) +STUB("Q3+A6eRgQzM", uprv_decNumberSameQuantum_67) +STUB("Q3+xtcTxlkg", mono_field_get_data) +STUB("Q3-0HGD3Y48", __atomic_fetch_and_1) +STUB("Q30SZqLk4Lw", Java_com_sun_havi_ui_FreeTypeFontFace_pReleaseFontFace) +STUB("Q30w46WtYQw", sceKernelGetResidentCount) +STUB("Q320Fsv7OvQ", _ZN3sce7Toolkit2NP2V211SharedMedia7Request13GetBroadcasts17DEFAULT_PAGE_SIZEE) +STUB( + "Q34Cm7qjZSY", + _ZN3sce2Np9CppWebApi11UserProfile2V131GetBlockingUsersResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_24GetBlockingUsersResponseEEE) +STUB("Q37js-as5KQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEED2Ev) +STUB( + "Q3BgPZV76ok", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB( + "Q3GZzEIP6jI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEC1ERKS7_) +STUB( + "Q3S5Htl16xc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEppEi) +STUB("Q3UTw+t9xfg", _ZTv0_n48_N25MmsFileUpdaterFsOperation8openFileEPKc) +STUB("Q3VBxCXhUHs", memcpy) +STUB("Q3YIaCcEeOM", _ZTSSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE) +STUB("Q3ZDbJ3QzkY", _ZN7WebCore11FrameLoader21clearTestingOverridesEv) +STUB( + "Q3a+Cfl8gaM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEED2Ev) +STUB("Q3dyFuwGn64", sceAjmModuleRegister) +STUB( + "Q3fXsC5MnVM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEED2Ev) +STUB( + "Q3lOEpxSe1Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE8copyFromERKS9_) +STUB("Q3lUkATgLwE", u_charDigitValue_67) +STUB("Q3nwDzPdcL0", rgctx_fetch_trampoline_mrgctx_76_p) +STUB("Q3q-Iqk-Sqg", _ZNK7WebCore30InvertLightnessFilterOperationeqERKNS_15FilterOperationE) +STUB("Q3qL-o84l30", _ZN3JSC8Debugger12atExpressionEPNS_9CallFrameE) +STUB( + "Q3sTQqCfVSg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE4sizeEv) +STUB("Q3utJvma4Mo", sceSystemServiceSetNoticeScreenSkipFlag) +STUB("Q43Qwcd7W-Q", WKContextSetWebSecurityFilter) +STUB( + "Q49E8rXwtWM", + _ZN3JSC14StructureCache32emptyObjectStructureForPrototypeEPNS_14JSGlobalObjectEPNS_8JSObjectEjbPNS_18FunctionExecutableE) +STUB( + "Q4Bld0u+zJs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "Q4EVYT9NgzM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEptEv) +STUB("Q4GAFaW6NbQ", _ZNK7WebCore18JSHTMLImageElement7wrappedEv) +STUB("Q4PE3rWPS6Y", isobmf_box_getnextbox) +STUB("Q4PK8px9cto", JVM_SendTo) +STUB("Q4TyaIExNks", mono_get_exception_missing_field) +STUB("Q4Tyqr9IOGY", _ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_6DOMURLE) +STUB( + "Q4XCUj8029k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEC2Ev) +STUB("Q4f93lSW0lk", _ZN9Inspector14FrontendRouter15connectFrontendERNS_15FrontendChannelE) +STUB("Q4gZDtJ8CHI", _ZN7WebCore9HTMLNames17aria_valuenowAttrE) +STUB("Q4idRxWlzjM", _ZNK3WTF6String5toIntEPb) +STUB("Q4lonvz8bSg", WKWebsitePoliciesSetCustomHeaderFields) +STUB( + "Q4o5RELMEPs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("Q4qBuN-c0ZM", sceNetSocket) +STUB( + "Q4rHQZK-qJY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE8copyFromERKS9_) +STUB("Q4rRL34CEeE", sinf) +STUB( + "Q4ufTc0B2TE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEE11release_refEv) +STUB("Q4xbTVz7CQ4", _ZN3NTF3URL7setPortEt) +STUB("Q5+nvLyoPAc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEE7get_refEv) +STUB( + "Q50PAzd1-Q4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEixEm) +STUB("Q52EZcRwx2w", _ZN3sce7Toolkit2NP2V27NpUtils7Request22GetOnlineIdByAccountIdC2Ev) +STUB("Q52xwSU9Xd0", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEEC2Ev) +STUB( + "Q5I3eObhEcU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEppEi) +STUB("Q5IWykchiD8", _ZN3WTF14FileSystemImpl34stringFromFileSystemRepresentationEPKc) +STUB("Q5NwWWuerbQ", _ZNK7WebCore11HistoryItem14alternateTitleEv) +STUB( + "Q5SiTvVQKKY", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V145MatchCompletionRateDisconnectedMetricsFactory6createEPNS1_6Common10LibContextEiPNS5_12IntrusivePtrINS3_38MatchCompletionRateDisconnectedMetricsEEE) +STUB( + "Q5Tk9RRrQdo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEEcvbEv) +STUB("Q5Um9Yri-VA", sceUserServiceGetPbtcMode) +STUB("Q5WUaCRP4gY", __stop__Ztext) +STUB("Q5anwCDbf5E", mono_aot_Newtonsoft_Json_PlayStationjit_got) +STUB("Q5b2Rs4keVk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEE5resetEPS6_) +STUB( + "Q5d29JbhmrU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEE11release_refEv) +STUB( + "Q5ecKT+rXI0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE21intrusive_ptr_add_refEPS9_) +STUB("Q5iApPgFAXQ", mono_aot_System_Reactive_Coreunwind_info) +STUB("Q5kgx9+xeQU", _ZN7WebCore14ProcessWarming22prewarmWithInformationERKNS_18PrewarmInformationE) +STUB( + "Q5mx-jF5FiI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEaSERKS9_) +STUB( + "Q5n0OuUtbEM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEEaSERKSA_) +STUB("Q5py3m4I8SA", sceTsGetAvailableBW) +STUB("Q5uMGTK4u7E", mono_get_exception_execution_engine) +STUB("Q5uQeScvTPE", sceNpTusGetMultiUserVariableForCrossSave) +STUB( + "Q60io-UQSu8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("Q61lq0fExLE", mono_aot_Sce_Vsh_VideoEdit_Wrapperunbox_trampolines_end) +STUB("Q64RmYv-DJM", _ZNK3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer11getOnlineIdEv) +STUB( + "Q64dMvbFxBM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE3endEv) +STUB("Q66U8FdrMaw", scePadGetBluetoothAddress) +STUB("Q67JnR8E4ws", ures_getKey_67) +STUB( + "Q6BNVCkZKrE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEC2ERS7_) +STUB("Q6GhEnkh2+c", _ZN3JSC8JSObject28allocateMoreOutOfLineStorageERNS_2VMEmm) +STUB( + "Q6J7DAtr0Fk", + _ZN7WebCore6Editor14setCompositionERKN3WTF6StringERKNS1_6VectorINS_20CompositionUnderlineELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEERKNS5_INS_20CompositionHighlightELm0ES7_Lm16ES8_EEjj) +STUB("Q6JU2lTQS1U", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V111OfferStatusEEneERKS7_) +STUB("Q6OKS0BRf0A", eglWaitClient) +STUB( + "Q6PRMt1IpLg", + _ZN7WebCore20UserGestureIndicatorC1EN3WTF6RefPtrINS_16UserGestureTokenENS1_13DumbPtrTraitsIS3_EEEE) +STUB("Q6T-zIblNqk", sceNetDhcpdStart) +STUB("Q6ZMGESvwVY", _ZN7WebCore8SVGNames6inAttrE) +STUB( + "Q6bs2-rX9Ms", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB("Q6e57L2Vat8", WKIconDatabaseCheckIntegrityBeforeOpening) +STUB( + "Q6f-t2dL0HQ", + _ZN9Inspector24NetworkBackendDispatcher22setInterceptionEnabledElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "Q6fFKJyMxro", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13boolean5IsSetEv) +STUB( + "Q6h92dWE62g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEEC2Ev) +STUB("Q6hZkYPaikk", ulist_getListFromEnum_67) +STUB("Q6oqEnefZQ8", __atomic_load_n) +STUB("Q6rtQMOR-UA", scePerfTracePmStart) +STUB( + "Q6uZr7WwiQw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "Q6vUUPnen-M", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi11createMatchEiRKNS4_22ParameterToCreateMatchERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_19CreateMatchResponseEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("Q6xyruheFCE", cairo_pattern_create_for_surface) +STUB( + "Q6yp8d4GZx4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("Q71VA70Qzk4", + _ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForReadD1Ev) +STUB("Q72V+IYh3yY", _ZN12video_parser17cVideoProfilerMp418_createMediaCommonEjPNS_13VpMediaInfo_tE) +STUB( + "Q72lGf1Ckis", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEED1Ev) +STUB( + "Q7BPAJC0pFw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEppEi) +STUB( + "Q7Dxw43VhSo", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeaders15setLastModifiedERKNS1_6Common6StringE) +STUB("Q7Il+H6Ujl4", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE3endEv) +STUB( + "Q7JVHmD8xAo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB( + "Q7K-Wmcak1c", + _ZN10Deprecated18ScriptFunctionCallC1ERKNS_12ScriptObjectERKN3WTF6StringEPFN3JSC7JSValueEPNS8_9ExecStateES9_NS8_8CallTypeERKNS8_8CallDataES9_RKNS8_7ArgListERNS4_8NakedPtrINS8_9ExceptionEEEE) +STUB( + "Q7LUAsM577s", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE21intrusive_ptr_sub_refEPS7_) +STUB("Q7NYkIALAEs", _ZN3sce7Toolkit2NP2V29Challenge7Request13SendChallenge18MAX_SIZE_DATA_NAMEE) +STUB("Q7Os4HE9wgg", _ZN3sce7Toolkit2NP2V28Matching7Request11SetRoomInfo24HIGHEST_DISPLAY_PRIORITYE) +STUB("Q7QU8cdMbzM", _ZN3JSC12BigIntObject14finishCreationERNS_2VMENS_7JSValueE) +STUB( + "Q7ZYtMZVOxI", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ImageFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_5ImageEEE) +STUB("Q7b6ZKyFsL0", _ZN3sce2Np9CppWebApi7Matches2V113RequestMember8fromJsonERKNS_4Json5ValueE) +STUB( + "Q7bNVN892Uw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEEC1EPS6_PNS2_10LibContextE) +STUB( + "Q7cUiHfdgMM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEneERKS9_) +STUB("Q7ee2Uav5f8", sceNetConfigWlanAdhocSetExtInfoElement) +STUB("Q7fnpdkjBp0", sceNpAsmClientGetCacheControlMaxAge) +STUB("Q7kSVKlMJmA", _ZN3JSC11VMInspector13dumpRegistersEPNS_9CallFrameE) +STUB( + "Q7nHpTv+iiI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEC1ERS7_) +STUB("Q7obvY7jbqQ", WKPageConfigurationGetWebsiteDataStore) +STUB("Q7qMw7QHnjQ", mono_aot_Sce_Vsh_Np_Pbtcunbox_trampolines_end) +STUB( + "Q7qX-Soe3QA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEptEv) +STUB("Q7qj97IDGtU", sceBgftServiceDownloadStartTaskAll) +STUB( + "Q7sOg-BweiU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEC1EPNS2_10LibContextE) +STUB("Q7t4VEYLafI", sceGnmValidationRegisterMemoryCheckCallback) +STUB("Q7xhl0uQYgE", mono_aot_ReactNative_Modules_Vshunbox_trampolines_end) +STUB("Q7y-M7olJkc", WKBundleBackForwardListItemIsSame) +STUB("Q7zIiq3mf+M", fuse_session_loop_mt) +STUB("Q7zyGfEmODE", sr06) +STUB("Q8-xUM+RO48", _ZNK7WebCore24CoordinatedGraphicsLayer13platformLayerEv) +STUB("Q838nnG0kxQ", WKPreferencesGetPeerConnectionEnabled) +STUB( + "Q85xmGnRnd4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEppEi) +STUB( + "Q87YmK+AnO8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEEC2Ev) +STUB("Q88wDUoIWYg", u_strcmp_67) +STUB( + "Q8A4cdIzgVw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE6resizeEj) +STUB("Q8C2Oyeh+yA", _ZN3sce2Np9CppWebApi7Matches2V124RequestCompetitiveResultD1Ev) +STUB("Q8CtPGQDhhI", _ZN7WebCore13AXObjectCache18rootObjectForFrameEPNS_5FrameE) +STUB("Q8DZkKQ-SYc", sceAudioOut2LoContextGetQueueLevel) +STUB("Q8Ic-dIQ1S0", _ZN3sce2Np9CppWebApi14SessionManager2V16Friend8fromJsonERKNS_4Json5ValueE) +STUB("Q8O7uuSCN8w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEE5resetEPS6_) +STUB("Q8P3U9F8p-Y", u_charFromName) +STUB( + "Q8PbGtLOqaE", + _ZN7WebCore13GraphicsLayer11setChildrenEON3WTF6VectorINS1_3RefIS0_NS1_13DumbPtrTraitsIS0_EEEELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("Q8Y0ntVp-GY", u_getBinaryPropertySet) +STUB("Q8Zqv9vJYjA", _ZNK3sce2Np9CppWebApi14SessionManager2V12To12getAccountIdEv) +STUB("Q8aMwRPUcEg", zrule_isEquivalentTo_67) +STUB( + "Q8aqv9Q4eVw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEC1EPS6_PNS2_10LibContextE) +STUB( + "Q8evp6qZjBI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEC2EPS8_) +STUB( + "Q8jkqxtSRvg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEE11release_refEv) +STUB("Q8ooECPD-lo", _ZNK3sce2Np9CppWebApi11UserProfile2V112BasicProfile11getRelationEv) +STUB( + "Q8pcxu+cZ4A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE5beginEv) +STUB( + "Q8ppY2hvvIw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEC1EPS6_PNS2_10LibContextE) +STUB("Q8pvJimUWis", __isfinitef) +STUB( + "Q8qj5WtPfos", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEEC1ERKS9_) +STUB("Q8sFHUENyP8", _ZN3sce2np10NpOnlineId13GetNpOnlineIdEiP13SceNpOnlineId) +STUB("Q8skQqEwn5c", sceVrTrackerUnregisterDevice) +STUB( + "Q8wuJXvxrkw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEED1Ev) +STUB( + "Q93tp+nF9HE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEEC1ERKSA_) +STUB("Q95JDAMcB6I", _ZN7WebCore15createLiveRangeERKNS_11SimpleRangeE) +STUB( + "Q99wm1uFrds", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData23unsetxPsnNpServiceLabelEv) +STUB("Q9DhUQxNCwI", pthread_switch_add_np) +STUB( + "Q9J6OIjoD3w", + _ZN3sce2Np9CppWebApi11Matchmaking2V113ErrorResponse8setErrorERKNS1_6Common12IntrusivePtrINS3_5ErrorEEE) +STUB( + "Q9JGBAFVRME", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEE7add_refEv) +STUB("Q9JlHD9irBw", + _ZNK3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_11TusVariableENS2_IS4_EEEE8max_sizeEv) +STUB( + "Q9OAOCizNPU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEE5resetEPS9_) +STUB("Q9OqSnIH-P8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEEC2EPS6_) +STUB("Q9PafwAucU0", scePlayReadyMemFree) +STUB("Q9UQ4bhpbL8", udat_getNumberFormat_67) +STUB( + "Q9Y26Z2Pigo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEC2EPS6_PNS2_10LibContextE) +STUB("Q9fMszRCKdM", udatpg_setDateTimeFormat_67) +STUB("Q9hX1-Upy2c", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEEC2ERS5_) +STUB("Q9iWC5cyPPU", ucptrie_getValueWidth) +STUB( + "Q9mM8D1M3zM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEC2EPS8_) +STUB("Q9pxkxUSS7s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEcvbEv) +STUB( + "Q9tU00tOwKw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEC1ERKS7_) +STUB( + "Q9uuM5YBkIk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEaSERKS8_) +STUB("Q9v0SoVlNwA", _ZNK9Inspector15ScriptCallFrame10lineNumberEv) +STUB( + "Q9ziXaC7VnI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEC2EPS6_PNS2_10LibContextE) +STUB( + "QA+f1SSA+ww", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEptEv) +STUB( + "QA17HSEdKfg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE5clearEv) +STUB( + "QA47I7yFKbo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEmmEi) +STUB("QA4QDsY+cQA", delegate_virtual_invoke_imt_m_5) +STUB( + "QA5-6GEOcz4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEdeEv) +STUB("QA5h6Gh3r60", sceGnmSqttSelectTarget) +STUB( + "QA6By+bQDGg", + _ZNK7WebCore21ContentSecurityPolicy30upgradeInsecureRequestIfNeededERNS_3URLENS0_19InsecureRequestTypeE) +STUB("QA6wRe52nLI", _ZNK7WebCore14DocumentLoader18mainResourceLoaderEv) +STUB("QA9Qupz3Zjw", sceMouseGetDeviceInfo) +STUB( + "QAA3KJyXHXw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEC2EPS8_) +STUB( + "QAAUvoPv2tY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEEaSERSA_) +STUB("QABMTc77l10", _ZN9Inspector21CSSFrontendDispatchernaEmPv) +STUB("QAH1ofI97vU", sceUltSemaphoreAcquire) +STUB( + "QAHjz9jk4DI", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("QAMQmwHoWDA", mono_debug_symfile_is_loaded) +STUB( + "QAOa9ocinns", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEC2EPS8_) +STUB("QASwMoD8UFw", _ZN12video_parser5vpcom8_GetstatEPcPNS0_12VP_FILE_STATE) +STUB( + "QAXlroxEPKk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot9setoffsetEi) +STUB("QAYY-MXynHM", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIlEC1EPKl) +STUB( + "QAYzA8woUY0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEED2Ev) +STUB("QAZtKuy2wIg", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody8getLimitEv) +STUB("QAd+04l6lYY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE8pushBackERKS6_) +STUB( + "QAi5M2UbDog", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEEC1ERSA_) +STUB( + "QAl7ecPnB7c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "QAq7KXD3NOs", + _ZN3sce2Np9CppWebApi14SessionManager2V140PostGameSessionsSearchRequestBodyFactory7destroyEPNS3_33PostGameSessionsSearchRequestBodyE) +STUB("QAqrH2Vp99k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEEaSERSA_) +STUB("QAtIMIg9bXk", _ZN7WebCore13JSHTMLElement4infoEv) +STUB("QB0CUuGxDR8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V115LastUpdatedUserC2EPNS1_6Common10LibContextE) +STUB("QB6DeJpqMbg", uprv_compareInvAscii_67) +STUB("QB7c2b7odds", sceNpPush2PollUserPresenceOfflineEvent) +STUB("QBA+njDpP7A", _ZN7WebCore4Page19setFullscreenInsetsERKNS_9RectEdgesIfEE) +STUB( + "QBFIs-qSn00", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEEaSERKSA_) +STUB("QBFoAIjJoXQ", sceVoiceSetVolume) +STUB("QBLzc0izFLc", sceUserServiceGetParentalContentControl) +STUB( + "QBVKsLcveBU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEC2EPKS8_) +STUB("QBW1-h74Tfk", + _ZNK3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayer16customData1IsSetEv) +STUB( + "QBX+C3GBqFw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEaSERKS9_) +STUB("QBbo2kzANmQ", g_VideoOutInitialWidth) +STUB("QBcAfwrr094", glClearStencil) +STUB("QBi7HCK03hw", sceKernelClockGettime) +STUB("QBlJ4XEOzlI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEdeEv) +STUB("QBp4IOFhbaA", _ZN7WebCore11HistoryItemC1ERKN3WTF6StringES4_S4_) +STUB( + "QBqp2RtWmmM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB("QBuuTInbLwU", _ZN7WebCore9HTMLNames14cellborderAttrE) +STUB("QBxEKuvS1Tk", rgctx_fetch_trampoline_mrgctx_75_p) +STUB("QByiQ+otd5o", _ZN7WebCore21ISOTrackEncryptionBox11boxTypeNameEv) +STUB("QBzq0D46oqg", _ZNK3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectator11getOnlineIdEv) +STUB("QC1CTAazPeI", ucnv_getCanonicalName_67) +STUB("QC4PkCVGPxE", + _ZN3sce2Np9CppWebApi13InGameCatalog2V513ContentRatingC2EPNS1_6Common10LibContextE) +STUB("QC5YZf-yNlA", g_string_append_vprintf) +STUB( + "QC81kxMghf4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEC1EPS8_) +STUB("QC82iL3WjnE", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12FriendsRanksEE19setCustomReturnCodeEi) +STUB("QC8pCaMv8bQ", Java_java_lang_StrictMath_pow) +STUB("QCEx-zcrjKQ", SSL_CTX_set_msg_callback) +STUB("QCHORyo4-Aw", cff_driver_class) +STUB( + "QCHc-hmLYBg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEE11release_refEv) +STUB("QCO1zjUwhyE", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_23NpIdListRankInformationEEC2Ev) +STUB( + "QCPK3TGd9EY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE10setContextEPNS2_10LibContextE) +STUB("QCPpnv99SMo", nn_strerror) +STUB( + "QCWsnSbDg5A", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("QCaXux9w7vo", sceDataTransferTargetAbortDeactivate) +STUB("QCbvCx9HL30", sceNetDuplicateIpStop) +STUB( + "QCdmSBwrAC8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE5clearEv) +STUB("QCfjI087HUI", utext_replace) +STUB("QClLWeqI1F4", + _ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionMemberPlayer12unsetPlayersEv) +STUB( + "QClf0BXRqP0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEE5resetEPS7_) +STUB("QCoJWgm3irY", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorImEneERKS4_) +STUB("QCqEjslTj40", _ZNK3JSC12StackVisitor5Frame9sourceURLEv) +STUB("QCqMm6zIRvI", _ZNK10__cxxabiv117__class_type_info11can_cast_toEPKS0_) +STUB( + "QCrbX2QApDM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEC2ERKS7_) +STUB( + "QCtub50RL+0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "QCug0OdrZ5E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEE11release_refEv) +STUB("QCzOmgxL95I", _ZN3sce7Toolkit2NP15AppSTLAllocatorI16SceNpTusVariableEC2ERKS4_) +STUB("QCzTGdphrgY", strtod.fpi) +STUB( + "QD199eLQhhc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEE11get_deleterEv) +STUB("QD1pgB8owo8", _ZN9Inspector21InjectedScriptManager19clearExceptionValueEv) +STUB( + "QD7BgJajBY0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEC1ERKS7_) +STUB( + "QD8G-bVvaco", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEmmEv) +STUB( + "QDIB6xSqx7A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("QDIV2FMX+E0", _ZN7WebCore8SVGNames7relAttrE) +STUB( + "QDKI6U6a4Tc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEC1EPS8_) +STUB("QDMpdglDPoo", sceGpuTraceParametersSetMemorySize) +STUB( + "QDOiioH6jLU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEmmEv) +STUB( + "QDRl1HtV8W0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEED1Ev) +STUB("QDTcvCqSzsw", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_6NpUserEEC1Ev) +STUB( + "QDU+3WESZ4A", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB( + "QDU5Oac+PEU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE5clearEv) +STUB( + "QDXtj-dHjG8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("QDcMlwB5zx4", mono_aot_Newtonsoft_Json_PlayStationunbox_trampoline_addresses) +STUB("QDd+ZCqkO2w", mono_metadata_parse_method_signature) +STUB( + "QDecfPnPA3M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE5beginEv) +STUB( + "QDjbU71hTJg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEmmEi) +STUB("QDlnJL6stA0", _ZN3sce2np13NpTitleSecretD2Ev) +STUB( + "QDumC55Jk7Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEED1Ev) +STUB("QDzm7SL-4So", utrie2_close) +STUB("QE94oD7E9b4", sceVnaSetLanguageSettings) +STUB("QEE5Rka89jA", _ZN3sce2Np9CppWebApi7Matches2V123ResponseMatchStatisticsD1Ev) +STUB( + "QEH+5M+EJEA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEC2EPS7_PFvS9_EPNS2_10LibContextE) +STUB("QEHeEZGfFs4", _ZN3JSC2VM14throwExceptionEPNS_14JSGlobalObjectEPNS_8JSObjectE) +STUB("QEIJRZErmxQ", sceMusicPlayerServiceRemoveTrackEntry) +STUB("QEJb02PKBYY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament5EventEED1Ev) +STUB("QEJbtimMBkk", AnnotateTraceMemory) +STUB("QENc8TerxpA", __remainderf) +STUB( + "QERO-LCkcAQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("QETncndH+xI", monoeg_g_string_append_printf) +STUB( + "QEaa9sASciU", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12string3IsSetEv) +STUB("QEiuHxjungc", sceVideoOutSysModeIsVr) +STUB("QEmN+9a1big", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEEixEm) +STUB("QEppJQAXTjk", _ZN7WebCore19MediaResourceLoaderD1Ev) +STUB("QEr-PxGUoic", _LXp_addh) +STUB("QEsMC+M3yjE", sceGnmSpmSetDelay) +STUB( + "QExEnnMAekM", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitations52getpostPlayerSessionsSessionIdInvitationsRequestBodyEv) +STUB("QF0MnNtuTzc", uhash_close) +STUB( + "QF8bsq9QSx0", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26RecordScoreResponseHeaders21intrusive_ptr_sub_refEPS5_) +STUB("QF8lLtGddXM", GCC_except_table63) +STUB("QFCvRLoLMfY", WKWebsiteDataStoreSetStatisticsCrossSiteLoadWithLinkDecoration) +STUB( + "QFDeCjTLT4w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEppEv) +STUB( + "QFE3c-4xZNU", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemProperties9terminateEv) +STUB("QFIQ6QvLjIk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEC2Ev) +STUB( + "QFIXtobcZ9g", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEEiRNS2_10LibContextEPT_m) +STUB("QFJCN+emlOs", scePlayReadyDomainCertEnumFini) +STUB("QFJF0ID5uZ0", _ZN12video_parser17cVideoOperatorEtsC1EPKc) +STUB( + "QFLOz5JS7JY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE5clearEv) +STUB( + "QFMKzRQq4Gk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEC2Ev) +STUB("QFPjG6rqeZg", sceNetResolverConnectDestroy) +STUB("QFQlVeu1W60", _ZN3JSC9Structure25nonPropertyTransitionSlowERNS_2VMEPS0_NS_14TransitionKindE) +STUB( + "QFXnfQu5AwU", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSessionIdRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_37PatchGameSessionsSessionIdRequestBodyEEE) +STUB("QFYVZvAJNC8", _ZN3sce2np8JsonFileD2Ev) +STUB( + "QFYi8Lgobn4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("QFaV4ocOB+Y", Java_com_sony_gemstack_org_dvb_application_AppsDatabaseImpl_n_1isAvailable) +STUB( + "QFbXjGZTmcU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEE5resetEPS9_) +STUB("QFeogJb6mOQ", _ZN12video_parser13cVideoPathMsvD1Ev) +STUB( + "QFgLchPjGP0", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyD2Ev) +STUB("QFj6QQ4cxXU", _ZN9Inspector18InjectedScriptHostC1Ev) +STUB("QFoFJWkAyGs", _ZNK7WebCore8Document27areFullscreenControlsHiddenEv) +STUB("QFpoqRAZMo0", ucnv_io_countKnownConverters) +STUB("QFuju2AaGMs", mono_sha1_get_digest) +STUB("QFx5cPYgu3U", JSObjectMakeDeferredPromise) +STUB("QFx6geRbV5Q", sceVnaUtilGetSupportedLanguageList) +STUB( + "QGJq7UvW018", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE5clearEv) +STUB("QGKNBmGRZZE", _ZN7bmalloc15availableMemoryEv) +STUB("QGKXBRNQtXw", WKBundlePageSetFooterBanner) +STUB("QGL+VQEX8lo", sceAvSettingSetHdcpMode) +STUB("QGN2n4c8na4", sceNpPush2CreateUserContext) +STUB("QGN8eGq6hbs", sceVnaGetSupportedLanguageInfo) +STUB("QGOqGPnk5a4", sceNetPppoeStart) +STUB("QGS8s73UyZ4", _ZN3sce2np10JsonNumber3SetEj) +STUB("QGSIlqfIU2c", _ZNKSt8numpunctIcE13thousands_sepEv) +STUB( + "QGV9f-4v4-s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEEC2Ev) +STUB("QGapMFsXa8c", mono_aot_Sce_Vsh_Np_IdMapperjit_code_end) +STUB("QGapaf1-Pp0", _ZNK9Inspector22RemoteInspectionTarget20remoteControlAllowedEv) +STUB("QGc21vGbU+c", ucnv_toUCountPending) +STUB("QGkJzBs3WmU", _ZTVNSt6locale7_LocimpE) +STUB("QGlyLx75ZyU", _ZN7Nicosia16SceneIntegration13requestUpdateEv) +STUB("QGmBfK8pd1o", _ZN3WTF9MediaTimeD1Ev) +STUB("QGovXLECroc", sceSaveDataDeleteBackupData) +STUB( + "QGqn18wIhT4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEmmEv) +STUB( + "QGxBoGah9yU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEppEv) +STUB("QGz9SzO3qoI", + _ZN3JSC8Debugger16toggleBreakpointEPNS_9CodeBlockERNS_10BreakpointENS0_15BreakpointStateE) +STUB("QH2emcgeFck", FT_Outline_New) +STUB( + "QH2kQyiArCs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEmmEi) +STUB( + "QH3fZkXZk48", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEppEv) +STUB("QH664gYg5n8", + _ZN7WebCore10Pasteboard14writePlainTextERKN3WTF6StringENS0_18SmartReplaceOptionE) +STUB( + "QHB7y0-xBsA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEC2Ev) +STUB("QHCu2HZdZOk", _ZN3JSC7Symbols35asyncGeneratorResumeNextPrivateNameE) +STUB("QHEUodxiGA8", utrie2_set32ForLeadSurrogateCodeUnit_67) +STUB("QHFJB2F0p3k", sceGameCustomDataDialogOpenA) +STUB( + "QHH-xWK6jKw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEppEv) +STUB("QHJjFbPJmzc", mono_aot_Sce_Vsh_VideoRecordingWrapperjit_code_start) +STUB( + "QHLFAVF0SoY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE5beginEv) +STUB("QHMWAbrORlI", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIiEppEv) +STUB("QHOhqicPZ1s", _ZN3JSC8JSObject17preventExtensionsEPS0_PNS_9ExecStateE) +STUB("QHSbn+zesvk", _ULx86_64_dwarf_search_unwind_table) +STUB("QHTLo69uRWI", _ZN9Inspector22PageFrontendDispatcherdlEPv) +STUB("QHVNTB8hjCc", _ZN3sce7Toolkit2NP2V23TUS7TusDataC1Ev) +STUB("QHaMM3hoxqk", _ZN3WTF14AtomStringImpl3addEPKDsj) +STUB("QHbjiu2vkZo", jpeg_fdct_6x12) +STUB("QHeHiJ-KQx4", _ZN10MonoDomain3GetEv) +STUB( + "QHfo5oY2-yI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "QHjRw72-XyU", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V124NatConnectivityToMetrics18getConfidenceScoreEv) +STUB( + "QHl5g00GrTQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEED2Ev) +STUB("QHo8UyNlC1o", _ZZSt9MakefacetISt7codecvtIcc9_MbstatetESt8_LocinfoERT_T0_E3buf) +STUB("QHq2ylFOZ0k", sceAudioOutSetConnectionsForUser) +STUB( + "QI+7dBjO9Ac", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEC2ERKS7_) +STUB( + "QI+dVXRggbs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE8pushBackERKS8_) +STUB( + "QI-WRibBSwc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEplEm) +STUB("QI-x0SL8jhw", acosf) +STUB("QI10G7iFT6s", + _ZN3sce2Np9CppWebApi13InGameCatalog2V520ContainerRatingCountC1EPNS1_6Common10LibContextE) +STUB("QI6ArERn7Tk", sceVnaGetFeedbackStatus) +STUB("QI71uEZ8eUQ", rgctx_fetch_trampoline_rgctx_26) +STUB("QI72hdEHB90", sceFsBindPackages) +STUB("QI8GVJUy2ZY", sceCameraSetHue) +STUB("QIBJY7pQ-Yw", sceDevUsbInitHost) +STUB( + "QIF0IGbJmp8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEdeEv) +STUB( + "QILgXEZAVZQ", + _ZN7WebCore20ExtensionStyleSheets17addUserStyleSheetEON3WTF3RefINS_18StyleSheetContentsENS1_13DumbPtrTraitsIS3_EEEE) +STUB("QIM5rKGsIxo", ucnv_getNextUChar) +STUB( + "QIPjjJURlDI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("QIXCsbipds0", sceAgcDcbRewindGetSize) +STUB("QIY-792x6og", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEC1Ev) +STUB("QIaL3L6nQc4", ucol_equal_67) +STUB("QIcDUVSdXw0", sceCesUcsProfileInitEucJpX0208Ss2) +STUB("QIdqG9iFqwI", _ZN3WTF6Thread13mayBeGCThreadEv) +STUB( + "QIhqADWeSAU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEE5resetEPS6_) +STUB("QIkZhXvpyO4", WKUserScriptGetInjectionTime) +STUB( + "QIlxTlIxPTg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("QIokjkyGwck", ucnv_getStarters_67) +STUB( + "QIs7mnMHjW8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEEaSERKSA_) +STUB( + "QIsioRAS2k4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEE11release_refEv) +STUB("QIwTFdEssJw", _ZN7WebCore9HTMLNames5h5TagE) +STUB( + "QIyHhGijyH4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("QIz+d0g1wUg", sceBgftServiceIntPatchGoGetState) +STUB( + "QJ+67fstRpI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEE11get_deleterEv) +STUB("QJ5xVfKkni0", wmemcmp) +STUB("QJ6mF2xRR5w", SSL_CTX_set_session_id_context) +STUB( + "QJ8qFX7GqgQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("QJCcZ0vgv54", _ZN7WebCore14SQLiteDatabase16runVacuumCommandEv) +STUB("QJFPNrgcuCo", _ZThn120_NK7WebCore16HTMLMediaElement8durationEv) +STUB( + "QJGhyVKzcdc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE7reserveEi) +STUB( + "QJHPG83Q9xY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("QJJ-4Dgm8YQ", _ZTv0_n24_NSoD0Ev) +STUB( + "QJNoYvY2DdQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEC2EPS8_) +STUB("QJWQZHC0y4Q", + _ZN3sce7Toolkit2NP2V26Trophy6unlockERKNS3_7Request6UnlockEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("QJbV3vfBQ8Q", sceNetConfigSetIfaddr6) +STUB( + "QJc86gUk0i8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("QJg5k0068AE", _ZN3sce7Toolkit2NP9Utilities6FutureI24SceNpBandwidthTestResultE3getEv) +STUB("QJjPjlmPAL0", sceGnmGetOwnerName) +STUB("QJn-vuGxuho", Java_java_lang_reflect_Array_set) +STUB("QJoy9fsuHnk", _ZN3sce7Toolkit2NP2V23TUS16FriendsVariablesC1Ev) +STUB("QJqqNEtZ8fc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEC2ERKS7_) +STUB("QJxnRATldPc", WKBundleNodeHandleCreate) +STUB("QJy6V9QAXXE", sceProprietaryVoiceChatHelperSetVoiceChatState) +STUB("QK-dmxAhbJ8", _ZN3WTF6Thread20numberOfThreadGroupsEv) +STUB("QK8VQzBcRG4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils13NetStateBasicEED1Ev) +STUB( + "QK9X7oZ8-Xc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("QKDW6sURZ9Q", mono_aot_Sce_Vsh_PartyCommonunbox_trampolines) +STUB( + "QKGaCjsem48", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEC2EPNS2_10LibContextE) +STUB("QKJB8Io+XPU", Java_java_io_FileInputStream_read0) +STUB("QKN0Iu6Ujgg", _ZN3WTF9MediaTime8zeroTimeEv) +STUB("QKXk1l0g0fY", _ZN7WebCore20ResourceResponseBase17setHTTPStatusTextERKN3WTF6StringE) +STUB( + "QKZ5-z-Halk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEE5resetEPS9_) +STUB("QKd0qM58Qes", sceKernelStopUnloadModule) +STUB( + "QKmO0Oe+Zl8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE5beginEv) +STUB( + "QKrNgVo170o", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("QKsI9N7K1zE", sceFiosStat) +STUB( + "QKsXUcA3Xqs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEC1EPS6_PNS2_10LibContextE) +STUB("QL+3q43NfEA", tanl) +STUB( + "QL6AesIr6Eo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("QLDcLR7Pzbg", _ZN4IPMI6ClientD2Ev) +STUB("QLHb6Lpy4kE", WKSizeCreate) +STUB( + "QLJyK+nRNXg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEppEv) +STUB( + "QLRGegTGpSE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEeqERKS9_) +STUB( + "QLRWZb3UZdw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEeqERKS7_) +STUB( + "QLSN+fvZWd0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEED1Ev) +STUB( + "QLSjfsGVbg0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEdeEv) +STUB("QLTAClsl5oM", rgctx_fetch_trampoline_rgctx_3) +STUB( + "QLahbQxBWjg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEC1EPS7_PFvS9_EPNS2_10LibContextE) +STUB("QLcy5UgKqxU", WKPreferencesGetIsNSURLSessionWebSocketEnabled) +STUB("QLdG7G-PBZo", sceGnmGpuPaDebugEnter) +STUB( + "QLeIK5tpVUU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEC1EPNS2_10LibContextE) +STUB( + "QLfDPMMO6WU", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS2_6VectorINS5_INS1_13InGameCatalog2V59ContainerEEEEEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISG_SH_EE) +STUB( + "QLg7rHULmi8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE10setContextEPNS2_10LibContextE) +STUB( + "QLkStITh7Uw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEptEv) +STUB( + "QLkr0qkx+ZY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEED1Ev) +STUB( + "QLneOexu3-w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEC1Ev) +STUB("QLqM1r9nPow", _ZTISt22_System_error_category) +STUB("QLsj+YmMqu0", _ZN3JSC19HeapSnapshotBuildernwEm) +STUB( + "QLt4wwgs9Nw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE8capacityEv) +STUB("QLufrpMhxjM", psl_str_to_utf8lower) +STUB("QLvvlBPqRLs", mono_btls_x509_lookup_peek_lookup) +STUB( + "QLwadMOEPvE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE21intrusive_ptr_sub_refEPS9_) +STUB("QLzJT6sH5nI", + _ZN15AbstractStorage14TwitterStorageC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("QLzOwOF0t+A", sceGnmSqttWaitForEvent) +STUB( + "QM+qJFKM17c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEE7get_refEv) +STUB( + "QM2MCef2ffM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEED1Ev) +STUB("QMBmWhDFKvA", _ZN12video_parser13cVideoMetaVWG13_changeEndianENS_12VP_META_TYPEEPvj) +STUB("QMFyLoqNxIg", setvbuf) +STUB("QMHNcV-DHGE", TerminateLib) +STUB("QMKiWatcAFI", _ZNK3WTF24TimeWithDynamicClockTypemiERKS0_) +STUB("QMLPrsdMwMQ", + _ZN7WebCore21DiagnosticLoggingKeys45wastedSpeculativeWarmupWithoutRevalidationKeyEv) +STUB("QMOBaF2YyFU", _ZN3sce7Toolkit2NP2V29Messaging24GameDataMessageThumbnailC2Ev) +STUB( + "QMOpDx9k6aw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE4termEv) +STUB( + "QMbYTNSoNts", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEC2EPS8_) +STUB("QMef9Z23VHQ", jpeg_copy_critical_parameters) +STUB("QMfpxQG9Tto", sceCesRefersUcsProfileCp861) +STUB( + "QMk5U13Jdus", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEptEv) +STUB("QMmcxCtvFYo", _ZNK3sce2Np9CppWebApi14SessionManager2V15Error10getMessageEv) +STUB("QMp7-W19WDs", rgctx_fetch_trampoline_mrgctx_104) +STUB( + "QMtVCPSH+qA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEE7get_refEv) +STUB( + "QMwAYzlvMy8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "QMz8PQVuxa0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("QN-BpZYsomU", sceDebugIpmiGetClientKidList) +STUB("QN0bWxhaUFk", sceMbusIsBgmProhibited) +STUB("QN1i7GqlP7g", scePlayReadyBufferInitWithData) +STUB("QN7bxzzZsYs", _ZNK7WebCore19ProtectionSpaceBase5realmEv) +STUB("QN88Myk77SI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEC2EPS8_) +STUB( + "QN9fR+3n7AA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEE3getEv) +STUB("QNAIWEkBocY", _ZTISt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE) +STUB( + "QNF9ERM8L9I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEC1Ev) +STUB("QNO1olxrfBU", sceVencSetReferenceFrameInvalidationConfig) +STUB( + "QNV+AY7VtrU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEEC1ERKSA_) +STUB("QNVdial10HI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEC2ERKS7_) +STUB("QNfeQkXbKk8", JSStringCreateWithCharactersNoCopy) +STUB("QNg8KGixrzg", sceVideoRecordingCopyBGRAtoNV12) +STUB( + "QNgg1huXSW8", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi16leaveGameSessionEiRKNS4_27ParameterToLeaveGameSessionERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB("QNjGUdj1HPM", sceKernelIsDevKit) +STUB("QNk7qD4dlD4", sceUserServiceGetLoginFlag) +STUB( + "QNn31HXaA-c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEED2Ev) +STUB( + "QNod6TYBSkk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE7popBackEv) +STUB("QNop2YAtIDE", sceShareGetCurrentStatus) +STUB( + "QNpeGOb3qzY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEEdeEv) +STUB( + "QNrLUg4Y710", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEC1EPS8_) +STUB( + "QNvxsN1KWxY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEC2Ev) +STUB("QNwdOK7HfJU", vwscanf) +STUB("QNyUWGXmXNc", strtoumax) +STUB("QO-8jWvosGs", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE5clearEv) +STUB("QO5iuHMTu2o", res_countArrayItems) +STUB("QO6Q+6WPgy0", _ZNSt14numeric_limitsIsE6digitsE) +STUB("QO7+2E3cD-U", sceNetConfigDelRoute) +STUB( + "QOBzvdl8nqw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEEC2ERKSA_) +STUB("QOF5Ykr30DI", _ZN3JSC8Debugger15didRunMicrotaskEv) +STUB("QOHvB2B1V1A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEmmEv) +STUB( + "QOL+JRZ6xFo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "QON86ljW3wg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("QOQ5LTPxvK4", _ZN9Inspector27LayerTreeFrontendDispatchernaEmPv) +STUB("QOQtbeDqsT4", sceAudioOutOutput) +STUB("QOSkS+V5Me8", _ZN7WebCore9FrameView13setNodeToDrawEPNS_4NodeE) +STUB("QOYZRDPTq94", _ZN9Inspector33LayerTreeBackendDispatcherHandlerD1Ev) +STUB( + "QOZVcEDl9mg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB( + "QOh-PlkFEUw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEE7add_refEv) +STUB("QOhW9oRkdLE", _Z21VideoPlayerVcs_CreatePiP11_MonoStringiiiiii) +STUB("QOk++aq2490", __i2b_D2A) +STUB("QOmIaoXFNig", _ZNK3sce3Xml4Attr8getValueEv) +STUB("QOnw13KJCyA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V124RequestCooperativeResultEEC1Ev) +STUB( + "QOq4jO4LH58", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEE5resetEPS6_) +STUB("QOwNdOdlkw0", WKBundleSetAllowFileAccessFromFileURLs) +STUB( + "QOytP-lid+I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEEC1Ev) +STUB( + "QOzWBuxaP60", + _ZN9Inspector26AnimationBackendDispatcher13startTrackingElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("QP4WA9hEAtM", sceFsExfatMkfsExternalHdd) +STUB("QP99f0+e+B4", _ZN7WebCore8Settings38setShowRepaintCounterInspectorOverrideEN3WTF8OptionalIbEE) +STUB( + "QPCaN-A2KpY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEC2EPS8_) +STUB("QPDDhGO4EB8", g_dir_read_name) +STUB( + "QPFQ+uhOYSo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("QPNELEk9zkI", _ZN15AbstractStorage4ItemD1Ev) +STUB("QPNJqnKTh9Y", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce8ProductsEE19setCustomReturnCodeEi) +STUB( + "QPOSLdyVThw", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("QPOc37Cy-oU", _ZNK7WebCore6Widget25convertFromContainingViewERKNS_9FloatRectE) +STUB("QPSy+6jSLA8", _ZTT13MsvMetaEditor) +STUB( + "QPULTU4vOcQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEED1Ev) +STUB("QPX9GSUEt-k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEC2ERS7_) +STUB( + "QPYfXzIdwtc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEEneERKS7_) +STUB("QPh+yb2Y8AQ", FTA_Export_Module_type1) +STUB("QPhmpCzlKME", _ZN4Manx3Ssl10initializeEv) +STUB( + "QPm05rlPelU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("QPpLWgXyIu0", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEEC1Ev) +STUB("QPrUtwNPGhI", uscript_getUsage) +STUB( + "QPrwYQBwbdY", + _ZN3sce2Np9CppWebApi14SessionManager2V127PostGameSessionsRequestBody15setGameSessionsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_18RequestGameSessionEEEEE) +STUB("QPydzIZAUdU", WKWebsiteDataStoreConfigurationSetLocalStorageDirectory) +STUB("QQ+2HEyYLt8", _ZN7WebCore20TransformationMatrix8rotate3dEddd) +STUB("QQ+5GjIApTM", _ZN7WebCore20UserGestureIndicator21processingUserGestureEv) +STUB("QQ-PJT-vaGA", monoeg_g_log_set_fatal_mask) +STUB("QQ-Uvefa1Hg", _ZN3sce7Toolkit2NP2V210Tournament14RegisteredTeamD1Ev) +STUB( + "QQ3+qIN9s94", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEC1EPS8_) +STUB( + "QQ9-G4XbORo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("QQCqBHk79sI", _ZN3sce2npneERKNS0_8NpCommIdES3_) +STUB( + "QQGEgR7vMtg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEE7add_refEv) +STUB("QQQRY+xPqdk", _ZN7WebCore9HTMLNames12sortableAttrE) +STUB("QQastm3gp-U", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE5emptyEv) +STUB("QQdPV66dHBg", + _ZN3sce2Np9CppWebApi14SessionManager2V131ResponseGameSessionMemberPlayer10getPlayersEv) +STUB("QQhOQ9TdYtk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEmmEv) +STUB("QQitgMbzdBg", _ZN3JSC2VM27intlDateTimeFormatSpaceSlowEv) +STUB("QQjw8V1NjqM", _ZN9Inspector21InspectorConsoleAgent7disableERN3WTF6StringE) +STUB("QQl7yDhS98g", _ZN3sce7Toolkit2NP2V23TUS7Request18GetUsersDataStatusC1Ev) +STUB("QQlTIb72qjo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEE7add_refEv) +STUB("QQlaRvQNenY", _ZN7WebCore17JSDOMRectReadOnlyD1Ev) +STUB( + "QQnEV70dXKQ", + _ZN9Inspector17ScriptDebugServer12sourceParsedEPN3JSC9ExecStateEPNS1_14SourceProviderEiRKN3WTF6StringE) +STUB( + "QQp6Vz2tptU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEC1EPKS8_) +STUB("QQsnQ2bWkdM", _ZTISt4_Pad) +STUB( + "QQweaZWLPFM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEptEv) +STUB("QQwtijo98qI", WKRenderObjectGetTextLength) +STUB("QQzfcRrIGFw", sceDataTransferTargetRequestEndTransfer) +STUB("QR-okPoaCEk", __start__Zplt) +STUB( + "QR0ljR3cI6w", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE4sizeEv) +STUB( + "QR1lSKmQ044", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEaSERS7_) +STUB("QR7J7eYZOkI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEED1Ev) +STUB( + "QR7bvHMOdvA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "QR9sKbkzEs4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE5beginEv) +STUB("QRBvP7MZPgU", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEEC2Ev) +STUB("QREvgSOUoXg", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStatsaSERS5_) +STUB("QRJ087uRRSc", ucol_closeElements_67) +STUB("QRO9p-E0uPg", pa_set_functions) +STUB( + "QRQTQw1VxDI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEC2EPKS8_) +STUB("QRUnq01DRc0", + _ZN15AbstractStorage12LocalStorage15RemoveRecursiveERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("QRVGV6+ykOU", _ZN9Inspector19InspectorAuditAgentD0Ev) +STUB("QRcEFas2wuI", _ZN3sce7Toolkit2NP2V28Matching7Request10CreateRoomC2Ev) +STUB("QRd10kzHzxA", SSL_CTX_set_client_cert_cb) +STUB("QRdE7dBfNks", pthread_resume_user_context_np) +STUB( + "QRiHW5neFfI", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEiRNS2_10LibContextEPT_m) +STUB("QRj4pcepQAk", _ZN7WebCore4Page22nonFastScrollableRectsEv) +STUB("QRklMF4pJnU", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE5beginEv) +STUB("QRlEy2O0YUg", _ZN3sce7Toolkit2NP2V211SharedMedia10ScreenshotD2Ev) +STUB("QRlvaphJOUs", utrie_swap_67) +STUB("QRnz-VjPrkY", _ZN15AbstractStorage12SerializableC2Ev) +STUB( + "QRoCGttRG28", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEC2Ev) +STUB("QRrOdPTOqq4", + _ZN3sce7Toolkit2NP2V210Tournament7Request18GetRegisteredUsers17DEFAULT_PAGE_SIZEE) +STUB( + "QRwJH5xf11c", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE8capacityEv) +STUB("QRyzd3Sx+AI", _ZN3JSC9CodeBlockD2Ev) +STUB( + "QS2KqPg9z5Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB("QS7CASjt4FU", _ZNSt12length_errorD0Ev) +STUB( + "QS7XBK-BDHk", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("QSDUcGAdbXU", _ZN3JSC12StackVisitorC2EPNS_9ExecStateEPNS_2VME) +STUB("QSDh0XIfPuo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEC2Ev) +STUB("QSE-2TsMW0M", _ZNK7WebCore19UIEventWithKeyState16getModifierStateERKN3WTF6StringE) +STUB( + "QSHlXSXixws", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEC2EPS8_) +STUB("QSN--J1G8kw", delegate_virtual_invoke_imt_22_p) +STUB("QSQ5LUbIA2Q", _ZN7WebCore5RangeD2Ev) +STUB("QSRjO+sqoFU", _ZN3WTF12CountingLock8lockSlowEv) +STUB("QSTBbjtT6h4", rgctx_fetch_trampoline_mrgctx_33_p) +STUB("QSW3mB08bkc", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V115CompetitionTypeEEmmEi) +STUB("QSWpsSZDHig", _ZN7WebCore12PrintContextD0Ev) +STUB("QSZyNI5Q2rI", WKOriginDataManagerDeleteEntriesModifiedBetweenDates) +STUB("QSda71kFpIM", _Z28sceMatAgcRegisterGdsResourcemmjmPKcjm) +STUB("QSfaClY45dM", _Xbig) +STUB( + "QSkidpGd5RE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEEaSERKSA_) +STUB("QSmT3attiVg", sceVideoOutSysCursorRelease) +STUB("QSmVPEK+1rk", _ZN7WebCore12TextIterator11rangeLengthEPKNS_5RangeEb) +STUB("QSpui5WFQBU", _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody10setOfferIdEPKc) +STUB( + "QSr-tbtpjnU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "QStRe0kkaJ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "QStfFFoEd+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEE5resetEPS6_) +STUB( + "QSyVGX2GyXQ", + _ZN9Inspector24BrowserBackendDispatcher6createERNS_17BackendDispatcherEPNS_31BrowserBackendDispatcherHandlerE) +STUB( + "QSz4uPiC-oo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEED1Ev) +STUB("QSzdUqTrd-s", _ZNK7WebCore24MatrixTransformOperation5cloneEv) +STUB("QT1h9iol+Bk", _ZNK7WebCore18HTMLMarqueeElement11scrollDelayEv) +STUB("QT3HL3shrsk", _ZN7WebCore11DisplayList11DisplayList5clearEv) +STUB("QT3ve5whb04", _ZN7WebCore25previousParagraphPositionERKNS_15VisiblePositionEi) +STUB("QT43BD-IWqY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE6resizeEj) +STUB("QT4GdEZTkao", _ZNK7WebCore9FrameTree11scopedChildERKN3WTF12AtomicStringE) +STUB("QT4ZkyYJd2k", prout) +STUB("QT5VMCd+e-s", _ZN7WebCore3URL23fakeURLWithRelativePartERKN3WTF6StringE) +STUB("QTAkqg5qRL8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE5beginEv) +STUB( + "QTCPj6M-Xmo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEC1Ev) +STUB( + "QTDIn+GsO30", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEmmEi) +STUB( + "QTDcKNXs17I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE4sizeEv) +STUB( + "QTHdSYNSo8k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEppEv) +STUB( + "QTIRvZbrnX4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEplEm) +STUB("QTIefScNLhk", _ZN3sce2Np9CppWebApi14SessionManager2V12To8fromJsonERKNS_4Json5ValueE) +STUB("QTPBZrsYy5M", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEED2Ev) +STUB("QTY0nfQdmSs", sec_hand) +STUB("QTY9qczIcA8", __start__Zfini_array) +STUB("QTYL0dOEpvY", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container11unsetRatingEv) +STUB("QTd2HZrtE-0", __asan_stack_malloc_always_2) +STUB("QTg20GyF27Y", _ZN3JSC8JSObject33prototypeChainMayInterceptStoreToERNS_2VMENS_12PropertyNameE) +STUB("QTgRx1NTp6o", _ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED1Ev) +STUB("QTlT1P84RL8", _ZN7WebCore14StaticNodeListdlEPv) +STUB("QTov2+OHqgk", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanityC2Ev) +STUB("QTpgnwUVRWw", sceDebugWriteProcessMemory) +STUB("QTqSm4Y9PlM", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V13Mmr17unsetPerFranchiseEv) +STUB("QTtY6lB7P40", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V117InvitableUserTypeEEC2EPS6_) +STUB("QTygOIlgkjY", _ZN3JSC17DeferredWorkTimerD1Ev) +STUB("QU+H7JmTZ+o", _ZN7bmalloc29StaticPerProcessStorageTraitsINS_11EnvironmentEE7Storage7s_mutexE) +STUB("QU15xIMvIcY", _ZNK7WebCore12ChromeClient21plugInExtraStyleSheetEv) +STUB("QU2M1pPNbaY", sceHmd2Terminate) +STUB("QU2RS5gXYEU", _ZN7WebCore24CoordinatedGraphicsLayer18setContentsToImageEPNS_5ImageE) +STUB("QU47ftPwyZ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEEC2Ev) +STUB( + "QU4gBqAEVtM", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("QU57kCwF81U", sceKernelSetAppState) +STUB("QU5Yp2tSKLA", + _ZN3sce2Np9CppWebApi12Leaderboards2V127RecordLargeDataResponseBody8fromJsonERKNS_4Json5ValueE) +STUB( + "QUJD3ow+ARM", + _ZN9Inspector21PageBackendDispatcher6createERNS_17BackendDispatcherEPNS_28PageBackendDispatcherHandlerE) +STUB("QUMw9Z2Ia1I", WKPageGetInspector) +STUB( + "QUOUspKo4wk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEE11get_deleterEv) +STUB( + "QUPJaMt+IJQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE3endEv) +STUB("QUQ4Y29UuLg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEED1Ev) +STUB("QUQc1y0KW+8", Java_org_blurayx_s3d_ui_DirectDrawS3D_initIDs) +STUB( + "QUT3wXrb3ZE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "QUU5V-o-NTI", + _ZN3sce7Toolkit2NP2V28Matching23setMembersAsRecentlyMetERKNS3_7Request23SetMembersAsRecentlyMetEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB( + "QUcjlO7FiAc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEE11get_deleterEv) +STUB("QUcoh-eLixA", Java_java_io_ObjectStreamClass_hasStaticInitializer) +STUB("QUeUgxy7PTA", _ZNSt20_Future_error_objectIiE14_Future_objectE) +STUB( + "QUmM9IbywAs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEmmEi) +STUB( + "QUmitowNUQ8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEppEv) +STUB("QUnwy1gcfNA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEEC1EPNS2_10LibContextE) +STUB( + "QUq6nWy8tiw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("QUz09q1WeTA", _ZN3JSC7Symbols17padEndPrivateNameE) +STUB("QV2vL3tTVCk", fuse_fs_releasedir) +STUB("QV8aHn1TRXQ", _ZN12video_parser7cVpUtil10SwapEndianEPhS1_i) +STUB( + "QV9JfmXsW8E", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "QV9ipyXjeG4", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM23AccessibilityProperties7InvalidEEESt8optionalIT_ERKN3WTF6StringE) +STUB("QVEHPhY6UHo", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEED1Ev) +STUB( + "QVNPfGFLWpI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE8pushBackERKS8_) +STUB("QVWsX01n08M", uprv_tzname) +STUB( + "QVZAQnXGDds", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEED2Ev) +STUB( + "QVdStfu1ZzQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEC2EPKS8_) +STUB("QVi49cXcHNc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEEneERKS7_) +STUB( + "QVkTKOLN00w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEED2Ev) +STUB( + "QVm5Dwvyn4k", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEneERKS9_) +STUB( + "QVn2F1vCNLE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE10setContextEPNS2_10LibContextE) +STUB( + "QVr+kByGj8U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE5beginEv) +STUB("QVsYsUEgbHo", _ZN3sce2Np9CppWebApi7Matches2V117LeaveMatchRequestC2EPNS1_6Common10LibContextE) +STUB("QVsk3fWNbp0", _Atomic_fetch_add_8) +STUB( + "QVyn7MCAeJI", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot11hassortModeEv) +STUB("QVysh-6PW30", mono_aot_Sce_Vsh_DbRecoveryUtilityWrapperunbox_trampoline_addresses) +STUB("QW+eAUlZtBk", _ZN7WebCore19TextResourceDecoderD2Ev) +STUB("QW-f9vYgI7g", __negvti2) +STUB( + "QW1J1xp9Xrw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEixEm) +STUB("QW22kVUoBIg", _ZN7WebCore9HTMLNames8audioTagE) +STUB("QW2jL1J5rwY", _ZNSt6locale5facet9_RegisterEv) +STUB( + "QW3JQiLvMsc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE8pushBackERKS8_) +STUB("QW4yYJ7mHmc", udat_getAvailable_59) +STUB("QW7NonbfeFk", sceNpSnsIntLinkedStatus) +STUB("QWAd+Vrr4mY", _ZN7WebCore11MediaPlayer21characteristicChangedEv) +STUB("QWCTbYI14dA", _FInf) +STUB("QWGdqfZlfhU", sceCesIso2022UcsContextInitCopy) +STUB("QWHryB0DYao", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V324ValidationConstraintInfo8setValueEPKc) +STUB( + "QWK3AvlDP9U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEED1Ev) +STUB( + "QWKL5+i4EOU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("QWNExBJEeqQ", _ZN3sce7Toolkit2NP2V24Core11RequestBaseC1ERKS4_) +STUB( + "QWOGSxl3ypU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE8copyFromERKS9_) +STUB("QWOYdF57X1A", _ZN7WebCore9HTMLNames19webkitimagemenuAttrE) +STUB( + "QWRYQMQSpIc", + _ZN3sce2Np9CppWebApi6Common18ResponseHeaderBase14getHeaderValueEPKcRNS2_12IntrusivePtrINS2_6StringEEE) +STUB( + "QWSiZJDtguI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE3endEv) +STUB("QWSxBzf6lAg", sceSslSetMinSslVersion) +STUB("QWV5S0xkefw", sceCesUtf32ToSbc) +STUB("QWVJAvJhcoE", sceMbusDebugAcquireControlWithStateFlag) +STUB("QWVrYTt602Y", goby_GetDUIDParameters) +STUB( + "QWXijQ2rd+k", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "QWal9MoUPrI", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextEm) +STUB( + "QWflddymuoo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEEC1ERSA_) +STUB("QWjCa7nkT-g", YGNodeLayoutGetHadOverflow) +STUB("QWjMJgXT2OU", _ZN3sce7Toolkit2NP2V28Commerce10CategoriesC2Ev) +STUB( + "QWk4nlxhOvw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEppEv) +STUB( + "QWkzZh39rFg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEplEm) +STUB("QWlZu1JZOww", _ZN3sce2np9LocalFileC1Ev) +STUB( + "QWpIaYhNQEI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEEcvbEv) +STUB( + "QWqlw8dhEgk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("QWsI1yrvI-0", _ZN3sce7Toolkit2NP2V23TUS7Request12SetVariables18MAX_VARIABLE_SLOTSE) +STUB("QWuf0CHcDMM", _ZN3JSC7JSProxy12toStringNameEPKNS_8JSObjectEPNS_9ExecStateE) +STUB("QWyrJcVFiOc", _ZN3JSC17checkModuleSyntaxEPNS_9ExecStateERKNS_10SourceCodeERNS_11ParserErrorE) +STUB( + "QWzRMGiS5Qc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE8pushBackERKS8_) +STUB("QX2T-A54XgA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEC2Ev) +STUB( + "QX4q2qJnoQ8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEptEv) +STUB("QX6b+NQ1NE8", _ZN7WebCore17CharacterIteratorC2ERKNS_11SimpleRangeEt) +STUB( + "QXBvsq-Drq8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEC2EPNS2_10LibContextE) +STUB("QXJCcrXoqpU", _ZNSt8ios_base5clearENSt5_IosbIiE8_IostateEb) +STUB("QXKhAYE8iuA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEEC2EPS5_PNS2_10LibContextE) +STUB("QXLG4UDWLEI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEC1Ev) +STUB( + "QXM89CO5yc8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("QXUHGgXn4JA", + _ZN3sce4Json6Parser11parseStringERSbIcSt11char_traitsIcENS0_8StlAllocIcEEERNS0_11InputStreamE) +STUB("QXUqB4DXp+g", _ZN3sce7Toolkit2NP2V24Core7Request21BehaviorModificationsD1Ev) +STUB("QXXRejGXJrc", WKPageReloadFromOrigin) +STUB("QXXnHWBzqOI", delegate_virtual_invoke_imt_32) +STUB("QXah3pw5xfc", _ZN3sce2Np9CppWebApi7Matches2V120ResponseInGameRoster8getTeamsEv) +STUB("QXd85nHKgTc", sceDtcpIpByteSeekAsync) +STUB("QXdPjIdqfxQ", _ZN3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferReadD1Ev) +STUB("QXfo5aARpSM", _ZN7WebCore9HTMLNames13oncanplayAttrE) +STUB("QXmqerVwWZM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEptEv) +STUB( + "QXnPEosiCkQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEeqERKS9_) +STUB( + "QXoN8WJ6Elc", + _ZN9Inspector26AnimationBackendDispatcherC2ERNS_17BackendDispatcherEPNS_33AnimationBackendDispatcherHandlerE) +STUB("QXotoJX1SW0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE21intrusive_ptr_sub_refEPS7_) +STUB("QXs-iB-q5Vs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEaSERKS7_) +STUB( + "QXxvpwWnXXg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEC2Ev) +STUB( + "QY01WTzGJiE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "QY0qEBObEx4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB( + "QY6qdRRdOTA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEneERKS9_) +STUB( + "QYArT1KuLXI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB( + "QYGnzpe1q-s", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("QYIZ6DSdSbU", _ZTv0_n32_N12Mp4Retriever8readFileEjPv) +STUB("QYK82jUjOMI", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V113RatingFactory7destroyEPNS3_6RatingE) +STUB("QYSES3tXUHM", uloc_getKeywordValue) +STUB( + "QYlL9rgasGs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEEC2ERKSA_) +STUB("QYla1Q8NXmk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEEmmEv) +STUB("QYmN7jpRtDY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEaSERKS7_) +STUB( + "QYoIjOKEl8I", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("QYrbXmYNKtc", Java_sun_awt_GnmUtils_bdjbgFree) +STUB( + "QYtwnl6f1Do", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEppEv) +STUB("QYu1OUlAGD0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEmmEi) +STUB("QYuJju6ucf8", _ZNK3WTF6String18simplifyWhiteSpaceEv) +STUB( + "QYwFL46iKSA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEED1Ev) +STUB("QYz4VP6wsuQ", WKWebsiteDataStoreDoesStatisticsDomainIDExistInDatabase) +STUB("QZ3WWIhtNbE", sceKernelGetQafExpirationTimeNotbeforeForRcmgr) +STUB("QZAlNwncxQQ", udat_countAvailable_59) +STUB("QZCeqsF+qok", _ZN7WebCore8SVGNames13mask_typeAttrE) +STUB( + "QZDn+OxdrLc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "QZEB81IoyRo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE8copyFromERKS9_) +STUB( + "QZGyC3oDZJs", + _ZN3sce2Np9CppWebApi14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayer14setCustomData1EPKvm) +STUB( + "QZH1uS8cmpY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEEC1ERKSA_) +STUB( + "QZH9MeqkKHI", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEEiRNS2_10LibContextEPT_m) +STUB( + "QZJ4kR2fyqs", + _ZN3sce7Toolkit2NP7Ranking9Interface11getGameDataEPKNS1_18GetGameDataRequestEPNS1_9Utilities6FutureINS1_19GetGameDataResponseEEEb) +STUB("QZMGBB9-+20", + _ZN3sce2Np9CppWebApi7Matches2V133RequestTemporaryCompetitiveResult18unsetPlayerResultsEv) +STUB("QZP6I9ZZxpE", clock) +STUB( + "QZSH+MC7NMc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEEaSERKSA_) +STUB( + "QZU3FuAZN8A", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE5eraseENS2_8IteratorIS6_EERS9_) +STUB("QZaLNZ58fUE", sceDebugDestroyPerfScratchDataArea) +STUB("QZb07KKwTU0", _ZNSt8ios_base4Init9_Init_cntE) +STUB("QZbGw27ZKRw", ucnv_getStarters) +STUB("QZdY0rHz0n0", _ZNK7WebCore10ScrollView15fixedLayoutSizeEv) +STUB("QZdZ5Su9d48", + _ZN7WebCore13StyledElement22setInlineStylePropertyENS_13CSSPropertyIDEdNS_11CSSUnitTypeEb) +STUB("QZeAwJfax5A", __tsan_testonly_shadow_stack_current_size) +STUB( + "QZf7F7rSt8A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEEC1ERKS9_) +STUB("QZg17ZNOwtc", _ZN7WebCore14SQLiteDatabase12lastErrorMsgEv) +STUB( + "QZgpk214ZzM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEC2EPNS2_10LibContextE) +STUB("QZiWQ5Iaqjc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEmmEv) +STUB("QZmUmyKx21g", rgctx_fetch_trampoline_mrgctx_46) +STUB("QZmZBPjOsSI", _ZN3sce7Toolkit2NP2V27Ranking10UsersRanks14MAX_NUM_BOARDSE) +STUB("QZmZZcAyXHI", + _ZN7CoreIPC10Connection22processIncomingMessageEN3WTF10PassOwnPtrINS_14MessageDecoderEEE) +STUB("QZpXoz9wjbE", sceNpManagerIntClearUsedFlag) +STUB("QZrHxVWrlbQ", _ZN7WebCore12JSStyleSheet9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("QZtLzqKvmi8", _ZNK7WebCore21NetworkStorageSession29resourceLoadStatisticsEnabledEv) +STUB("QZuEIDVT42s", FcPatternReference) +STUB( + "QZuJ6+zFO34", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEEC2ERKSA_) +STUB( + "QZx9bh0Ih3Q", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("QZy+KmyqKPU", sceSharePlaySetMode) +STUB( + "Qa08I0D+wj4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEEC1EPS5_PFvS7_EPNS2_10LibContextE) +STUB("Qa3+Z8ANo+M", uspoof_clone_67) +STUB("Qa6HUR3h1k4", __fixunssfdi) +STUB( + "QaEsQUw0ZYM", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot9getoffsetEv) +STUB("QaGs1ek6hCE", YGNodeStyleSetHeight) +STUB("QaLXUjWq5uw", _ZN3sce4Json5ValueC2ERKSbIcSt11char_traitsIcENS0_8StlAllocIcEEE) +STUB("QaNOFgHQPko", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEptEv) +STUB("QaTrhMKUT18", nexttowardf) +STUB("QaTuZTNPygQ", sceNpGriefReportReadReportItem) +STUB( + "QaTvlOUkQ1I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("QaauH67Wek4", ucnv_getFromUCallBack) +STUB( + "QabTWh5HGCo", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi44ParameterToPatchGameSessionsSearchAttributes12getsessionIdEv) +STUB("QafxeZM3WK4", sceNpWebApi2PushEventDeletePushContext) +STUB( + "QaiAY7iEYYw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE21intrusive_ptr_sub_refEPS7_) +STUB("QalEczzSNqc", _Makewct) +STUB( + "QalGueWdr5s", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE8capacityEv) +STUB("QasPTUPWVZE", sceHmdInternalAnotherScreenClose) +STUB( + "Qatok-HAxNs", + _ZN12video_parser13cVideoMetaVWG12_getMetadataENS_12VP_META_TYPEENS_9VP_LANG_eENS_15VP_SEARCH_OPT_eEPPNS_12VpMetadata_tE) +STUB( + "QaxFIkW6VX8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "QayUI5RkvbA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB( + "QaynXlxYhQ8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot11setsortModeENS5_8SortModeE) +STUB("Qazy8LmXTvw", ftell) +STUB("Qb7A-rE0Afc", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredUsersEED2Ev) +STUB( + "Qb7QAqTq9VQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("Qb86Y5QldaE", __atomic_fetch_add_1) +STUB( + "Qb8iKcAILXY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEEcvbEv) +STUB("Qb9iiPz6Y24", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEED1Ev) +STUB("QbCEPDhR9WU", _ZN3sce2Np9CppWebApi6Common13ParameterBaseC1Ev) +STUB("QbCzhZP8GRo", _ZN7WebCore9HTMLNames6bdoTagE) +STUB("QbD+eENEwo8", scePngDecDelete) +STUB( + "QbH2-zM7fWI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEplEm) +STUB("QbKmf+2+cR0", _ZN15AbstractStorage14StorageManager11GetInstanceEv) +STUB( + "QbLJ+fHJONg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEC2Ev) +STUB( + "QbP+Qr9wdno", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody16setComparedValueERKl) +STUB("QbPQRS6SdrY", mono_g_hash_table_find) +STUB( + "QbRTbpTYaeQ", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V127ReputationPropertiesFactory7destroyEPNS3_20ReputationPropertiesE) +STUB("QbVEZKbFkYY", _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody14unsetSubmitterEv) +STUB( + "Qbb23DYos1c", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEneERKSA_) +STUB("QbdkmhQQfIM", sceKernelGetCpuUsageProc2) +STUB("QbegXjA71IY", _ZN7WebCore4Page15updateRenderingEv) +STUB( + "QbmESu9kcQE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEED1Ev) +STUB( + "QbmqQULn7XE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEED1Ev) +STUB("QbrU0cUghEM", sceJpegEncEncode) +STUB( + "Qbs43w-mbUo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC2ERSA_) +STUB("QbsJwXsd+YA", _ZN7WebCore15StringTruncator5widthERKN3WTF6StringERKNS_11FontCascadeE) +STUB( + "Qc0sD62e+V8", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEiRNS2_10LibContextEPT_m) +STUB( + "Qc1CIznhHKY", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "Qc4j2D7P2pM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE5emptyEv) +STUB( + "Qc5xBXQxxcI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEE7get_refEv) +STUB("Qc7JdXm7QLA", WKPageLoadAlternateHTMLStringWithUserData) +STUB("Qc8kyzCZj+M", sceVisionManagerGetResultOfFindPad) +STUB( + "QcDhmaSpxAk", + _ZN3sce2Np9CppWebApi7Matches2V133RequestTeamMemberStatisticFactory7destroyEPNS3_26RequestTeamMemberStatisticE) +STUB( + "QcHBTWQf1Fo", + _ZN9Inspector14ConsoleMessageC2EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelEON3WTF6VectorINS5_12JSONLogValueELm0ENS5_15CrashOnOverflowELm16ENS5_10FastMallocEEEPNS1_14JSGlobalObjectEm) +STUB( + "QcIPtGbfIDg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEE11get_deleterEv) +STUB( + "QcImFaI26pw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEED1Ev) +STUB("QcJ5pqrC-Q8", sceShellCoreUtilFormatHdd) +STUB("QcLrpGJk8Og", mono_aot_Sce_Vsh_SysfileUtilWrapperplt_end) +STUB("QcMC4x9rNsA", SSL_CTX_set_default_passwd_cb) +STUB("QcSwp3zeAWg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEE5resetEPS6_) +STUB("QcXiIoJS63M", _WPrintf.fbit) +STUB("QccCtGbkw34", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEEC2Ev) +STUB("QcdVbBxIJnk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEED2Ev) +STUB( + "QcdZFgNSs7U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("Qce-fO+SEwk", _ZN7WebCore8Document24createElementForBindingsERKN3WTF10AtomStringE) +STUB( + "QcijamyjTjU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE6resizeEj) +STUB( + "QcioeGqFEKM", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("Qcl-EK7z6OI", _ZN7WebCore9HTMLNames10nohrefAttrE) +STUB("QclxYY9R7Us", _ZN7WebCore17valueToByteStringERN3JSC9ExecStateENS0_7JSValueE) +STUB("QcmHLO2n7mk", sceAgcDriverSuspendPointSubmit) +STUB( + "Qcq69vPNZ3U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE5beginEv) +STUB("QctMzHHZSfc", + _ZN3sce2Np9CppWebApi7Matches2V121ResponsePlayerResultsC1EPNS1_6Common10LibContextE) +STUB("QcteRwbsnV0", usleep) +STUB("QcyxKYyh9Ag", + _ZThn16_N9Inspector22InspectorDebuggerAgent16removeBreakpointERN3WTF6StringERKS2_) +STUB( + "QczaT3pGqI4", + _ZN3JSC8JSObject23putDirectNativeFunctionERNS_2VMEPNS_14JSGlobalObjectERKNS_12PropertyNameEjNS_14NativeFunctionENS_9IntrinsicEj) +STUB("Qd2AxiAf9TU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12BandwithInfoEED1Ev) +STUB( + "Qd5IO1Fh4mo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEEC2ERKSA_) +STUB("Qd6zUdRhrhs", _ZTIt) +STUB("Qd82hf7axI8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEED2Ev) +STUB( + "Qd8u-XqDpZw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEEC1ERSA_) +STUB( + "Qd9zGKgGd-A", + _ZN3sce2Np9CppWebApi7Matches2V135RequestTemporaryMatchResultsFactory7destroyEPNS3_28RequestTemporaryMatchResultsE) +STUB( + "QdCgzmcIP3U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEED1Ev) +STUB( + "QdDlfPJDeCM", + _ZN3sce2Np9CppWebApi14SessionManager2V130PostPlayerSessionsResponseBodyC2EPNS1_6Common10LibContextE) +STUB("QdE7Arjzxos", jn) +STUB("QdGSeOEgazg", uhash_iget_67) +STUB("QdJuRykblXA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEC1ERKS7_) +STUB("QdPT7uDTlo0", + _ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE5_InitERKSt8_Locinfo) +STUB("QdPk9cbJrOY", _ZTSPKl) +STUB("QdQANJENCeA", mono_aot_Sce_Vsh_MarlinDownloaderWrapperplt_end) +STUB("QdQSnR1KReU", _ZN3sce2Np9CppWebApi14ConnectAccount2V214PSNError_error16unsetReferenceIdEv) +STUB("QdRNoSm4iTc", mono_trampolines_init) +STUB( + "QdSnOK4Am1M", + _ZN7WebCore11DisplayList23FillRectWithRoundedHoleC2ERKNS_9FloatRectERKNS_16FloatRoundedRectERKNS_5ColorE) +STUB( + "QdU3cirVIdE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEED1Ev) +STUB( + "QdVF2oXHoN8", + _ZN3sce2Np9CppWebApi14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyC2EPNS1_6Common10LibContextE) +STUB("QdVNaMjGJXQ", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18SessionInformationEE10deallocateEPS3_m) +STUB("QdYNXcesqSo", _ZN7bmalloc15IsoHeapImplBase13isNowFreeableEPvm) +STUB("Qdc6BFn-x4I", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS7TusDataEED2Ev) +STUB( + "Qdf+mWEH8go", + _ZN3sce2Np9CppWebApi11UserProfile2V125GetPublicProfilesResponse11setProfilesERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_12BasicProfileEEEEE) +STUB("Qdi2LEjc9kc", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V115CompetitionTypeEEC2Ev) +STUB( + "QdjltHtjuQo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE3endEv) +STUB("Qdp1-2HijVI", _ZN7WebCore6JSNode15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "Qds+93clia4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEptEv) +STUB( + "QdvzOt02bTw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEC2EPS8_) +STUB("Qdysz7zezzU", _ZN3sce7Toolkit2NP2V28Commerce7Request25ConsumeServiceEntitlementD2Ev) +STUB( + "Qdz2RF08nGo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEC1Ev) +STUB( + "Qe25DRn6Au4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEC2EPNS2_10LibContextE) +STUB("Qe6j+GKxHPM", _ZN9Inspector21createScriptArgumentsEPN3JSC9ExecStateEj) +STUB( + "Qe7EfP5-JmY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEneERKS9_) +STUB("Qe7QZh1+Euc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEaSERS7_) +STUB("Qe9h7649MnQ", uloc_getDisplayKeywordValue_67) +STUB("QeB+bflf6s0", _ZN7WebCore4PathC2Ev) +STUB( + "QeB93J67B1E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "QeCJ5IHPzXA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("QeIO6lHJSX0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament7BracketEE3getEv) +STUB("QeNz-3rS7-A", _ZN7WebCore9HTMLNames19aria_dropeffectAttrE) +STUB( + "QeO7GQrfXnU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEppEv) +STUB("QePTj8Bkvts", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEmmEi) +STUB("QeQibJLMEhw", JVM_MonitorNotify) +STUB("QeWbPeL8+MY", _ZNSt9basic_iosIwSt11char_traitsIwEE4moveEOS2_) +STUB("QeY+b9kqhIc", mono_aot_Sce_Vsh_Accessor_Db_Notifyplt_end) +STUB("QeaZORfh9GA", sceAjmInstanceGetSize) +STUB("Qec8236BDfI", rgctx_fetch_trampoline_mrgctx_119_p) +STUB( + "QeeZ7AZJlgQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13boolean8IsSetEv) +STUB( + "Qej6ODgcGxs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("QepwD4qOdkc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEC1ERS7_) +STUB("Qes3yAv5YkY", uset_spanUTF8_67) +STUB("Qet2dO4FNbM", uloc_getISO3Language) +STUB( + "QevXP+WyiPU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("QevnT7bvzm0", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11UserProfile10NpProfilesEE19setCustomReturnCodeEi) +STUB("QeywqWaV4EU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEmmEi) +STUB("Qf7JVe4YMQ8", _ZN7WebCore13GraphicsLayerD1Ev) +STUB("Qf91WH8Hta0", WKContextConfigurationCopyCookieStoragePath) +STUB("QfB2HoxkyXw", _ZN3sce3Xml3Dom8Document14createTextNodeEPKNS0_6StringE) +STUB("QfBKuqPXKZo", + _ZN7WebCore28InspectorFrontendClientLocal8Settings14deletePropertyERKN3WTF6StringE) +STUB("QfBibggI2M0", _ZN3PAL13SleepDisablerD0Ev) +STUB("QfNXBrKZeI0", sceAudio3dReportRegisterHandler) +STUB( + "QfOirXd-myw", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEiRNS2_10LibContextEPT_m) +STUB("QfPuSqhub7o", _ZSt7_MP_AddPyy) +STUB( + "QfRPwnow68E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEE7add_refEv) +STUB("QfRYjyv9Ews", _ZN7WebCore15JSSVGSVGElement9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("QfYasZZPvoQ", sceUserServiceSetUserGroupName) +STUB( + "Qfaa7GQwhE8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("QfbB4i5JCvk", _ZN4IPMI7SessionD1Ev) +STUB("QfcDJbA0V0E", _ZN7WebCore12SharedBufferD1Ev) +STUB( + "QfdBrsux0QQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE5beginEv) +STUB("QfgcM9i1GVI", _ZN7WebCore20ResourceHandleClientD1Ev) +STUB("QflGzVw8KlA", WKBundleNodeHandleSetHTMLInputElementAutoFilledAndViewable) +STUB( + "QflaKsu3Nes", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEE7add_refEv) +STUB( + "QfmjwkcKMHc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("Qfsmqs-bHeY", _ZN3sce2np9HttpTrans16AddRequestHeaderEPKcS3_) +STUB("QfwVO8iUY1I", _ZNK3sce2Np9CppWebApi14SessionManager2V112NonPsnLeader6toJsonERNS_4Json5ValueEb) +STUB( + "QfwvoJHnByE", + _ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_19PlayerSessionPlayerEEE) +STUB("QfxPI-N1Kd4", UCNV_FROM_U_CALLBACK_ESCAPE_67) +STUB( + "Qg-EgRtf2as", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("Qg-a0Y9KfXY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V115SearchAttributeEEppEv) +STUB( + "Qg-b-j8dTZY", + _ZN7WebCore7JSRangeC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_5RangeENS6_13DumbPtrTraitsIS8_EEEE) +STUB("Qg0OTWsKChk", delegate_virtual_invoke_18) +STUB( + "Qg1LpTw6C-o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "Qg4DeZLBqJw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("Qg50ik598bk", _ZN7bmalloc5Cache27reallocateSlowCaseNullCacheENS_8HeapKindEPvm) +STUB( + "Qg8lkP+v+e8", + _ZN3sce2Np9CppWebApi7Matches2V131UpdateMatchDetailRequestFactory7destroyEPNS3_24UpdateMatchDetailRequestE) +STUB( + "QgAx+JeCt30", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("QgBCeJN0fsA", _Z32SoundPlayer_MoveSurroundPanAngleifhd) +STUB( + "QgDQIKwkgh8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEC1Ev) +STUB( + "QgFpbd1z13k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEED2Ev) +STUB( + "QgJKv4YDwZM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEaSERKS7_) +STUB( + "QgNyrC5sOsM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEE3getEv) +STUB("QgYNuXSeipk", _ZN3sce7Toolkit2NP2V24Core18CustomResponseDataD1Ev) +STUB("QgdmkoZr7k4", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfoC2Ev) +STUB("QgiQ3iIV4Qs", _ZNK3JSC7JSValue16toObjectSlowCaseEPNS_9ExecStateEPNS_14JSGlobalObjectE) +STUB("QgmOCqm-cDA", _ZN12video_parser12cVpFileCache10initializeEPKcbi) +STUB( + "Qgn0Uhg+EJQ", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot9hasoffsetEv) +STUB("QgnaYvwDlPs", FT_List_Up) +STUB( + "QgsGTSdkgwQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE8capacityEv) +STUB("QgsKEUfkqMA", sceKernelGetModuleInfo2) +STUB( + "QgyYllrnIDE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE8copyFromERKS9_) +STUB( + "QgzBW8g-JTw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEmmEi) +STUB("Qh1UAOFX6e8", __asan_report_load2) +STUB( + "Qh2LaYrhVck", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE6resizeEj) +STUB( + "Qh6WdMvbAKU", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSessionC1ERS5_) +STUB("QhA0vdyK3yU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEE3getEv) +STUB("QhCSvU20ErI", mono_reflection_get_custom_attrs_info) +STUB("QhCbS4X9Rl8", sceAgcDcbSetMarker) +STUB("QhE5QNIuCrM", mono_aot_Sce_Vsh_SystemLoggerWrapperjit_code_end) +STUB( + "QhG5KUt3Bs4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEE7get_refEv) +STUB("QhORYaNkS+U", _Atomic_is_lock_free_2) +STUB( + "QhP+ynlYaeo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEEC1ERSA_) +STUB("QhPDD513V0w", sceAgcDcbSetShRegisterDirectGetSize) +STUB("QhPk-dUzZ+E", mono_aot_System_Reactive_Interfacesjit_code_start) +STUB( + "QhUH-rDgIVg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEC2EPS8_) +STUB("QhUriMGHhGY", uprv_decContextStatusToString_67) +STUB("QhaSXpKs6zk", _ZN3sce2np13JsonDocParser10onEndArrayEjj) +STUB( + "QheHm+DWOJU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEC1EPNS2_10LibContextE) +STUB( + "Qhf6kz9mE-0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE3endEv) +STUB( + "Qhihnfy5GpY", + _ZN7WebCore16HTMLMediaElement25clearMediaCacheForOriginsERKN3WTF6StringERKNS1_7HashSetINS1_6RefPtrINS_14SecurityOriginENS1_13DumbPtrTraitsIS7_EEEENS1_11DefaultHashISA_EENS1_10HashTraitsISA_EEEE) +STUB("QhjrPkRPUZQ", sceCameraAccGetData) +STUB( + "QhnJlvhxNgs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE8copyFromERKS9_) +STUB("QhnyReteJ1M", sceGnmDrawInitDefaultHardwareState175) +STUB( + "Qhqfvwgs3GE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEC1Ev) +STUB("Qhuz6yCN910", _ZN7WebCore8JSDOMURL6s_infoE) +STUB("Qhv5ARAoOEc", sceKernelRemoveExceptionHandler) +STUB( + "Qhx9Wmm8HHk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEEC2ERKSA_) +STUB( + "Qhyv2iXvYzs", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V318PsnWebErrorFactory6createEPNS1_6Common10LibContextEiPNS5_12IntrusivePtrINS3_11PsnWebErrorEEE) +STUB( + "Qi1FyMAE7MY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE8pushBackERKS8_) +STUB("Qi5fpNt5+T0", _ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1Em) +STUB( + "QiAgTlMJB1E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEEC1ERSA_) +STUB( + "QiD1JwMHWok", + _ZN3sce7Toolkit2NP2V26Trophy23displayTrophyListDialogERKNS3_7Request23DisplayTrophyListDialogEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("QiHftM+R3s8", sceNpSnsDailymotionDialogUpdateStatus) +STUB("QiJFZRyM1dE", scePfsGetUncompressedSize) +STUB( + "QiMwrjLTm7A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEdeEv) +STUB("QiR-MMGpwEo", unum_format_67) +STUB( + "QiRIYSIb-tE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEE11get_deleterEv) +STUB( + "QiXXLo24qv0", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB( + "QieXHbgd05c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEC1EPNS2_10LibContextE) +STUB("Qignjmfgha0", sceRudpGetRemoteInfo) +STUB("QinR1G1+uq8", _ZN7WebCore9HTMLNames11progressTagE) +STUB("QipjH+VV2CU", sceKernelDebugGetPrivateLogText) +STUB( + "QiwbShmPQYc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEED2Ev) +STUB("QixixIG6YuQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEdeEv) +STUB("QiyMxujuZ5s", ucol_getFunctionalEquivalent_67) +STUB("QiyjwGiIndQ", _ZN7WebCore4Page16setDefersLoadingEb) +STUB( + "Qj0qBqsc3Gw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("Qj2wX5hFDq8", isobmf_decoder_query) +STUB("Qj3L4FECHVA", _ZN3sce7Toolkit2NP15NpIdListRequestC1Ev) +STUB("Qj6jvG7elwY", _ZNK3WTF13StringBuilder9canShrinkEv) +STUB( + "QjAVWeN-QSw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEED1Ev) +STUB("QjBI31SRm6g", _ZN3sce7Toolkit2NP2V24Core7Request16ThreadProperties16AFFINITY_DEFAULTE) +STUB("QjGCaJbRib4", sceConvertKeycodeGetCharacter) +STUB( + "QjGfyW53SRc", + _ZN9Inspector21PageBackendDispatcher15overrideSettingElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("QjIzWh5Dckc", _ZNK7WebCore3URL11isLocalFileEv) +STUB("QjLVJ3K2620", _ZNK3sce2Np9CppWebApi13InGameCatalog2V55Error11reasonIsSetEv) +STUB("QjNUYQbGoHA", sceNpUInt64ToStr) +STUB( + "QjRw3kreoME", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE4sizeEv) +STUB("QjSsikawHMQ", _ZN3sce7Toolkit2NP2V211SharedMedia6Videos8deepCopyERKS4_) +STUB( + "QjTd1D0vGg4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEC2EPNS2_10LibContextE) +STUB("QjWIY17d1wo", uloc_getName_67) +STUB( + "QjWzumLPKDo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEEaSERKSA_) +STUB("QjZ686Rwkkw", _ZN3sce7Toolkit2NP2V28Commerce19ServiceEntitlementsC1ERKS4_) +STUB("QjdENNJMdWg", _ZNK3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBody13locationIsSetEv) +STUB("Qjdcu2gi4YM", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEEdeEv) +STUB( + "Qjoa0UkeHyU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE5emptyEv) +STUB("QjqsTDTTSis", _ZN7WebCore24DeprecatedGlobalSettings32setResourceLoadStatisticsEnabledEb) +STUB("QjtYrbd1f2s", mono_aot_Sce_Vsh_Webbrowser_XutilWrapperunbox_trampolines_end) +STUB("QjuRBOGeWLA", uprv_getDefaultLocaleID) +STUB("QjwkT2Ycmew", scePadReadExt) +STUB("Qjwn1h+e6hw", WKPreferencesGetPunchOutWhiteBackgroundsInDarkMode) +STUB("Qk18Owuq1Yg", sceMbusDumpProcMediaInfo) +STUB("Qk34WD+gFes", _ZN12video_parser16cVideoContentMp415getMetaInstanceEPPNS_10iVideoMetaE) +STUB( + "Qk51htTAtDc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE21intrusive_ptr_add_refEPS9_) +STUB("Qk5ehOXWs4g", sceNpManagerIntParseJsonUserInfo) +STUB("Qk6kEJ0RJlM", sceCamera2SetAttribute) +STUB( + "QkKeZCHCFBg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEC1EPNS2_10LibContextE) +STUB( + "QkRggJfHvog", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEC1EPS8_) +STUB("QkRl7pART9M", sceVrTrackerInit) +STUB( + "QkWQPSR7dN4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("QkbX76awxwI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEEC1Ev) +STUB("QkhJo69RvO0", umsg_clone_67) +STUB("Qkl8-jYh4wo", g_ProGarlicHeapSize) +STUB("QklPP5q5JUY", backtrace) +STUB("Qkr5eAKn9zU", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12unsetString8Ev) +STUB( + "QkvJCCuVzYA", + _ZN3sce2Np9CppWebApi14IdentityMapper2V340PsnWebError_error_missingElementsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_33PsnWebError_error_missingElementsEEE) +STUB( + "QkyZhNF3W+o", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEneERKS9_) +STUB( + "QkymcocNbng", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB( + "Ql2SpziJmpI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("Ql2khPCjMMw", _ZN14OpaqueJSString6createEON3WTF6StringE) +STUB( + "Ql42Qs-344M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "Ql6l0oZX448", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEEC1ERKSA_) +STUB( + "Ql9zg89z+vg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE13getLibContextEv) +STUB( + "QlBTRLUZJXI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEC2ERKS7_) +STUB( + "QlBiiX5EWd8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEE11get_deleterEv) +STUB("QlBsNs+u6MU", _ZN3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator12unsetNatTypeEv) +STUB("QlFo-lidi-Q", _ZN7WebCore22EmptyFrameLoaderClient25setMainFrameDocumentReadyEb) +STUB( + "QlG4qvLqd1M", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119PlayStylePropertiesC2EPNS1_6Common10LibContextE) +STUB("QlJFn5By93U", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEEplEm) +STUB("QlJYE5aXxp0", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEEppEi) +STUB("QlLykQkbc0M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEdeEv) +STUB("QlM4v5qaKxc", mono_btls_x509_chain_new) +STUB("QlNn09fMG7w", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15CategoryInfoSubEEC1Ev) +STUB("QlP4t2SGZ4I", _ZN3sce2np10EventQueue10TryDequeueEPvm) +STUB("QlRJWya+dtE", sceNetConfigWlanApStart) +STUB( + "QlZtE7oirAw", + _ZN7WebCore20UserGestureIndicatorC2EN3WTF6RefPtrINS_16UserGestureTokenENS1_13DumbPtrTraitsIS3_EEEE) +STUB("QlaBcxSFPZI", _ZN3sce2np9EventFlag7DestroyEv) +STUB("QlcJbyd6jxM", _Stodx) +STUB("Qlcy3AKepzU", _ZNK3WTF3URL38stringWithoutQueryOrFragmentIdentifierEv) +STUB( + "Qlg-hW0JytY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEE7add_refEv) +STUB( + "QljxbCpMk6M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "QloyfdtFwRA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEC1Ev) +STUB( + "QlsctR9vjHs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB("QltDK6wWqF0", sceNetConfigEtherSetLinkMode) +STUB( + "QltmQm8o97U", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEiRNS2_10LibContextEPT_m) +STUB("Qltt2qSBU1I", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEptEv) +STUB("QlulDC0wf-Y", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEEptEv) +STUB("Qly1iycov-E", JSWeakCreate) +STUB( + "Qm+ZRA94F1o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEaSERKS9_) +STUB( + "Qm33epZnFIk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "Qm4XlaQEkQk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEE3getEv) +STUB( + "Qm9xIIMZOnc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEEcvbEv) +STUB( + "QmCIHYzVk9o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEC2EPS6_PNS2_10LibContextE) +STUB("QmDEFikd3VA", sceNpGetNavSdkVersion) +STUB("QmDUpqqIXAU", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEEC2Ev) +STUB("QmGv7hQbpfo", _ZN7WebCore28InspectorFrontendClientLocalD1Ev) +STUB("QmHTw0yTTwE", _ZNK7WebCore11HistoryItem6targetEv) +STUB( + "QmJtGtZ2Z+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEE11get_deleterEv) +STUB("QmKVnjK0Svk", YGNodeStyleSetJustifyContent) +STUB("QmPQDONMHdo", _ZN3sce7Toolkit2NP2V210Tournament18OneVsOneRankResultaSERKS4_) +STUB("QmQYwQ7OTJI", sceGameLiveStreamingSetInvitationSessionId) +STUB( + "QmRT5Qtbh7E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEC2EPS8_) +STUB("QmSKE-bAvvs", unw_backtrace) +STUB("QmfvaYpsOcI", sceAgcBranchPatchSetElseTarget) +STUB("Qmgc0XACzRg", FT_Stream_ExitFrame) +STUB("QmpZNJfjuNE", _ZNK7WebCore8FileList4itemEj) +STUB("QmppvsMTOPw", _ZN3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator11setPlatformEPKc) +STUB( + "QmseSlPw+tg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEdeEv) +STUB("QmzJX74yf3g", _ZN3sce7Toolkit2NP2V28Commerce10CategoriesC1Ev) +STUB("Qn1pHJsQ-8Y", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead16unsetCustomData1Ev) +STUB("Qn2uocvTkqU", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V117ResponseMatchTypeEEmmEv) +STUB("Qn5JIRI6ZNU", sceLncUtilRegisterCdlgSharedMemoryName) +STUB("Qn83xIhFHK8", _ZN3sce2Np9CppWebApi7Matches2V111AddedPlayer9setTeamIdEPKc) +STUB( + "QnBTr3NlNRo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEE7get_refEv) +STUB("QnBZjF9n3Zw", uprv_fmax_67) +STUB("QnEIB82bFK0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEcvbEv) +STUB( + "QnG7AKNnigk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEdeEv) +STUB("QnHV-MinFak", mono_aot_Sce_Vsh_Messages_DbAccessLibplt_end) +STUB( + "QnHXfPQ5ABw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEneERKS9_) +STUB("QnO8zMmKcGE", sceNpManagerIntGetOnlineIdByAccountId) +STUB("QnVUfOkyRDw", sceFsCheckSingleUser) +STUB( + "QnXMK8xOqYg", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "QnXc4uUK9f4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEppEi) +STUB( + "QnZH0fmU0PQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("Qnekxl2yDpg", _ZN3sce2Np9CppWebApi6Common6VectorImED2Ev) +STUB("QnfSjWrFiVQ", _ZN7WebCore11ContentType15codecsParameterEv) +STUB("QngFswyN40A", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEEaSERKS7_) +STUB("Qni0CoOBDkU", _ZN3PAL12CryptoDigestD2Ev) +STUB("QnocxaQBZOM", _ZN7WebCore13GraphicsLayer16resumeAnimationsEv) +STUB("Qnrl8KUtVGs", _ZNK7WebCore15AffineTransform6xScaleEv) +STUB("Qnu2x6d29lo", sceFsInitUmountDownloadDataOpt) +STUB( + "Qnx3M8fc8nk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEC1EPS6_PNS2_10LibContextE) +STUB("QnzT-RV-x4U", bdjbg_display) +STUB( + "QnzmsWuLA8w", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicket26setsubmitTicketRequestBodyENS1_6Common12IntrusivePtrINS3_23SubmitTicketRequestBodyEEE) +STUB("Qo5w7diEjPM", _ZN3JSC7Symbols14matchAllSymbolE) +STUB("Qo61yIzZCes", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V113SubtaskStatusEEppEi) +STUB("Qo9NUXpDUs8", mono_stringify_assembly_name) +STUB("Qo9qR7v5zO4", sceNpUniversalDataSystemEventPropertyArraySetUInt64) +STUB("QoBYcBsP0gs", _ZN7WebCore11DisplayList23FillRectWithRoundedHoleD2Ev) +STUB("QoCqlmluEX0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEEptEv) +STUB( + "QoHiXTAnJgQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("QoItjQ1VB1E", WKPageSetMediaCaptureEnabled) +STUB( + "QoKCzAlihtw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("QoMN8tdi8K0", sceDebugReadProcessMemory) +STUB("QoPxBovZVdU", mono_aot_Sce_Vsh_Gls_GlsSharedMediaViewmethod_addresses) +STUB("QoZ-IQbyN3Q", WKPreferencesGetHighlightAPIEnabled) +STUB("Qoo175Ig+-k", _ZSt21_sceLibcClassicLocale) +STUB("QopdnxJ22Y0", rgctx_fetch_trampoline_rgctx_115_p) +STUB("QosagZvWvRk", utf8_back1SafeBody) +STUB( + "QossXdwWltI", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERl) +STUB( + "QozXCF+pLWU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEEptEv) +STUB("QozaBxKmsl8", _ZN3sce2Np9CppWebApi7Matches2V120RequestTeamStatistic10unsetStatsEv) +STUB( + "Qp8gehFlIWo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEptEv) +STUB("QpFhGrmIqhE", _ZN9Inspector26DatabaseFrontendDispatcherC2ERNS_14FrontendRouterE) +STUB( + "QpH0R-AxsmI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB( + "QpHZj6UDWAo", + _ZN3sce2Np9CppWebApi14SessionManager2V123FromNonPsnMemberFactory6createEPNS1_6Common10LibContextEPKcS9_PNS5_12IntrusivePtrINS3_16FromNonPsnMemberEEE) +STUB( + "QpIn4C0PsW0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEED1Ev) +STUB("QpLg0Rw236s", rgctx_fetch_trampoline_rgctx_69_p) +STUB("QpLyVEq8xcU", _ZN3sce7Toolkit2NP2V23TUS15TusDataStatusesC1ERKS4_) +STUB( + "QpMHXheAO+I", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEC2EPS8_) +STUB( + "QpPQi6zmpTc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("QpQN5xlV+7w", _ZN3WTF14FileSystemImpl18unlockAndCloseFileEi) +STUB( + "QpTSkLfXao4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEEdeEv) +STUB("QpUt5nA1qW8", g_list_sort) +STUB( + "QpXLPv7kbwE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEC2EPNS2_10LibContextE) +STUB( + "QpXrlLWSrO0", + _ZN3sce2Np9CppWebApi14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyC1EPNS1_6Common10LibContextE) +STUB("QpaYYDZ84Gk", _ZN7WebCore10StorageMap10removeItemERKN3WTF6StringERS2_) +STUB("Qpai5OJqAcw", + _ZN3JSC7JSValue14putToPrimitiveEPNS_9ExecStateENS_12PropertyNameES0_RNS_15PutPropertySlotE) +STUB("QpboSQGoQEQ", mono_bitset_clone) +STUB( + "Qpbp-NfAyDg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEC2EPS8_) +STUB("QpeSMH-lx+s", _ZN7WebCore11DisplayList8FillPathD1Ev) +STUB("QpeaElnNU7k", _ZNK7WebCore18TextureMapperLayer18contentsAreVisibleEv) +STUB( + "QpmMVMiXBwg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEC1EPS6_PNS2_10LibContextE) +STUB( + "Qpuv8MTmuaE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "Qpy625t07sE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEEC2ERKSA_) +STUB( + "Qq0PttvPJfM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB("Qq0o-+hobOI", SSL_ASYNC_sendMessagePending) +STUB( + "Qq1jf8PVzJ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE7reserveEi) +STUB("Qq1lpVgGOuU", _ZN7CoreIPC14MessageEncoder16setIsSyncMessageEb) +STUB("Qq2IvpqyXG0", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V18RelationEEppEv) +STUB("Qq52iAV5GtU", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetInteger8Ev) +STUB("Qq7QVI4+x7I", sceValidationGpuDisableDiagnostics) +STUB("Qq8SfuJJJqE", sceHttpParseStatusLine) +STUB("QqBWUNEfIAo", _ZNSs6appendEmc) +STUB("QqWHJKwnsoE", _Atfuns) +STUB("QqZ1A3vukFM", sceUserServiceGetGlsAnonymousUserId) +STUB( + "QqbIoOzBkoc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEC1ERKS7_) +STUB( + "QqdNJOwI2ro", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEEaSERKSA_) +STUB("QqeaLJnRTGc", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEEppEv) +STUB("QqgTQQdzEMY", sceAudio3dPortGetBufferLevel) +STUB("Qqj4q9TpYfA", GCC_except_table273) +STUB("QqmhNIwiNJg", __asan_current_error_report) +STUB( + "Qqmr256II1Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEC1EPNS2_10LibContextE) +STUB("QqoW686wrAM", sceNpManagerStartVsh) +STUB("QqpfWlTG5ZQ", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error23setValidationConstraintEPKc) +STUB("QqsjNQBvgq0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia6VideosEE5resetEv) +STUB("Qqvr9AsaYhk", mono_aot_System_ServiceModeljit_code_start) +STUB("QqxBetgJH+g", sceKernelReadv) +STUB("Qr-oWwgS12k", _ZN3JSC14setNeverInlineEPK15OpaqueJSContextPK13OpaqueJSValue) +STUB("Qr1QQ5k4S-M", uloc_addLikelySubtags_67) +STUB("Qr1agrvN7Qw", _ZNK7WebCore8Document42shouldBypassMainWorldContentSecurityPolicyEv) +STUB("Qr4mig14Vig", _ULx86_64_local_addr_space_init) +STUB( + "QrCZ-rZOl1g", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEeqERKS9_) +STUB( + "QrDEj4KO7kk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEE5resetEPS9_) +STUB( + "QrHS8a7KF6g", + _ZN3sce2Np9CppWebApi14IdentityMapper2V318PsnWebErrorFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_17PsnWebError_errorEEEPNS8_INS3_11PsnWebErrorEEE) +STUB( + "QrLh3iWyUYw", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsersC1ERS5_) +STUB("QrRGh27dwGo", _ZN3JSC8JSObject19calculatedClassNameEPS0_) +STUB( + "QrSLJXuDEqc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB("QrX8HQgwS84", _ZNK7WebCore9DOMWindow5frameEv) +STUB("QrZZdJ8XsX0", fputs) +STUB("QrgCXx1MY1w", sceNpUniversalDataSystemIntRecordArraySetInt64) +STUB("Qrj4c+61z4A", sceAgcSetShRegIndirectPatchSetAddress) +STUB("QrkSDLq+AtM", mono_aot_System_ComponentModel_DataAnnotationsmethod_addresses) +STUB("QrnsxgT0v0A", _ZNSt9_Auto_cndD1Ev) +STUB("Qrt9Cn1bpvA", _ZN3sce7Toolkit2NP2V29Messaging25GameDataMessageAttachmentD1Ev) +STUB( + "QruVgkKV1zo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEC2EPS8_) +STUB("QrulaA1mWGk", mono_domain_set_internal) +STUB("QrzsrnqGy9g", sceMatAlloc) +STUB("Qs0wWulgl7U", sceMouseInit) +STUB( + "Qs0zpdYuUpA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("Qs1P8UBKBK4", + _ZN7WebCore27startObservingCookieChangesERKNS_21NetworkStorageSessionEON3WTF8FunctionIFvvEEE) +STUB("Qs1xtplKo0U", sceAmprAprCommandBufferDestructor) +STUB( + "Qs4uK3cVbQI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("QsAqlMibERc", rgctx_fetch_trampoline_rgctx_28) +STUB( + "QsCKC86-mx0", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V129UploadDataResponseBodyFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_22UploadDataResponseBodyEEE) +STUB( + "QsJHf+DKsgc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEED2Ev) +STUB("QsLhZ+8WvSM", sceLncUtilReleaseCpuBudgetOfInGameStore) +STUB( + "QsM5kB08sFg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEC2EPS6_PNS2_10LibContextE) +STUB("QsMOCBGAXkw", + _ZN3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectatorC1EPNS1_6Common10LibContextE) +STUB("QsQXic2xPs4", _ZN7WebCore10JSDocument14finishCreationERN3JSC2VME) +STUB("QsSS-qvdZYA", _ZN7WebCore14MicrotaskQueue26performMicrotaskCheckpointEv) +STUB( + "QsU8dz9UQ-I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEE5resetEPS6_) +STUB("QsZt9gE5UxI", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead20unsetNonPsnSupportedEv) +STUB("QseaYxKYBdo", _ZN9Inspector8Protocol8Timeline13TimelineEvent8ChildrenE) +STUB( + "QshJ44LIxAk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEED2Ev) +STUB("QslA6pR7Dzg", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_18SessionInformationEEC2Ev) +STUB("QslKfV15MYY", _ZN7WebCore16convertToIntegerItEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB( + "Qsm4lc7Z-OU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEEaSERSA_) +STUB( + "Qsw5iOv5DiE", + _ZN7WebCore26propagateExceptionSlowPathERN3JSC14JSGlobalObjectERNS0_10ThrowScopeEONS_9ExceptionE) +STUB( + "QswoQp51Emc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEC1EPS8_) +STUB("Qsxbb+aty0U", __getcwd) +STUB( + "Qt1CHouS2HI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "Qt1VnMWSvlc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEEC2ERSA_) +STUB("Qt258HCMr6Y", mono_aot_Sce_Vsh_SQLiteAuxjit_code_start) +STUB("Qt5dRC9AsTY", uhash_put_67) +STUB( + "Qt7M8YLojMo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEE7add_refEv) +STUB("Qt9boXdmgvY", _ZNK3JSC8Debugger14reasonForPauseEv) +STUB("QtCPGohNzqI", _ZN3WTF22CrossThreadTaskHandlerC2EPKcNS0_25AutodrainedPoolForRunLoopE) +STUB( + "QtCskFNGcsA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEEC2ERSA_) +STUB("QtDocSK4On4", _ZN7WebCore9HTMLNames13precisionAttrE) +STUB("QtEl0Z5ogAE", _ZN3JSC22optimizeNextInvocationENS_7JSValueE) +STUB("QtHQhOyFNU4", mono_exception_from_name_domain) +STUB( + "QtKvWFVcKcI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEC1EPS8_) +STUB("QtLhuYZf9jg", sceKernelGetBackupRestoreMode) +STUB( + "QtPWv+VhvUk", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountId9terminateEv) +STUB( + "QtSlVGV5DTo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("QtZuDpfJXlU", _ZN3sce7Toolkit2NP2V28Presence8Presence8deepCopyERKS4_) +STUB("QtfJhsE1x-M", sceSystemServiceGetAppCategoryType) +STUB("QtfzmrF+Gpc", xmlFreeParserCtxt) +STUB( + "QtkAzdiUeKA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEC2EPS9_) +STUB("Qto35wAZm9M", uprv_decNumberFMA_67) +STUB("QtpKcwqAQgo", _ZN3sce7Toolkit2NP2V212ActivityFeed15PlayedWithStory19DESCRIPTION_MAX_LENE) +STUB("Qtqsbmgt1zc", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIlED1Ev) +STUB( + "QtraxrVaJyA", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUserC1ERS5_) +STUB( + "QtrdO4IOYGw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "QtwazfnTAhU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("Qu0IHkUM-ek", _ZN3JSC8SubspaceD1Ev) +STUB("Qu17+-JjbwI", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15PlayedWithStoryEEC1ERKS4_) +STUB( + "Qu48aS2ky8U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEC2ERS7_) +STUB("Qu4OtBMIDpU", _ZNK7WebCore7Element12hasAttributeERKN3WTF10AtomStringE) +STUB( + "Qu4cjEyfp6s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("QuAWXdMHi88", sceAudioOut2LoTerminate) +STUB("QuApZnMo9MM", sceAppContentSmallSharedDataMount) +STUB( + "QuB+5FMB-Xs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEC1EPKS8_) +STUB( + "QuBkvMhWM4s", + _ZN9Inspector14InjectedScript8evaluateERN3WTF6StringERKS2_S5_bbbbRNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsIS9_EEEERNS1_8OptionalIbEERNSE_IiEE) +STUB("QuF2rZGE-v8", vwprintf) +STUB( + "QuFo42+F9+o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEE11release_refEv) +STUB("QuI09j4a8-k", SSL_get_ex_data) +STUB("QuJYZ2KVGGQ", shm_open) +STUB( + "QuOTkwGLd7g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEED2Ev) +STUB("QuOaoOcSOw0", scePadGetVersionInfo) +STUB( + "QuTVAYkdq0M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEC1EPNS2_10LibContextE) +STUB("QuZkgn3rjsg", _ZN3JSC16throwSyntaxErrorEPNS_14JSGlobalObjectERNS_10ThrowScopeERKN3WTF6StringE) +STUB("QuZzFJD5Hrw", sceLibcPafMspaceMalloc) +STUB( + "QuclJT9Iapg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEE3getEv) +STUB("QufGZLVNl4U", _ZN3WTF20fastMallocStatisticsEv) +STUB( + "QugSjQtpkMY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEC2EPKS8_) +STUB("QuhXPuuafi0", _ZN3sce3Xml10SimpleDataC2Ev) +STUB("QunKyBzEeEg", mono_aot_Sce_PlayStation_HighLevel_UI2plt) +STUB("Qure-Bsk2fc", + _ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody18unsetMaxScoreLimitEv) +STUB("Qv+UvXhcDjE", _ZN7WebCore16convertToIntegerIaEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB( + "Qv+hFaUBkYI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE10setContextEPNS2_10LibContextE) +STUB("Qv2ZEBCYPaA", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEED2Ev) +STUB("Qv917g7goow", WKViewWillEnterFullScreen) +STUB( + "QvBShdnVG7k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEaSERKS9_) +STUB("QvDKJCLm2T0", _ZN3sce7Toolkit2NP2V23TUS16FriendsVariablesC2Ev) +STUB( + "QvEHUL-6Ock", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("QvEnQe-DZ5U", mono_aot_Sce_Vsh_Orbis_CdlgServerNpCommercejit_code_start) +STUB( + "QvGLVKaHnGQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE5emptyEv) +STUB( + "QvI00uUPQqE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEE7add_refEv) +STUB( + "QvMxcXXWjN4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEED2Ev) +STUB( + "QvTH-3qbgks", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEE11release_refEv) +STUB("QvUYLdPhylQ", sceLncUtilReleaseCpuBudgetOfExtraAudioDevices) +STUB("QvWOlLyuQ2o", _ZTIPDn) +STUB("QvXbiLqpn6c", sceSlimglClientStartIPC) +STUB( + "QvdMLAFijq8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEEdeEv) +STUB("QvfnqBjT-9w", _ZN3JSC12JSLockHolderC1EPNS_9ExecStateE) +STUB("QviDmlafc6I", _ZN9Inspector32ScriptProfilerFrontendDispatchernwEm) +STUB("QvmZaII5dNk", uset_openPattern_67) +STUB( + "QvogJmtKCXk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE8copyFromERKS9_) +STUB("QvqOkNK5ThU", _ZN3sce2np12NpHttpClientC1EP16SceNpAllocatorEx) +STUB("QvqxroOsOIo", __ubsan_handle_add_overflow) +STUB("QvsZxomvUHs", sceKernelNanosleep) +STUB( + "QvshHO8TPdw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEppEv) +STUB( + "Qw+JmWJP6Uo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEptEv) +STUB( + "Qw4axO4PpxE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEED2Ev) +STUB("Qw5CVIRhDyE", _ZN7WebCore12JSAudioTrack9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "Qw7WOLZLO1E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("Qw7q+AoxXZ4", GCC_except_table406) +STUB("Qw8tnUT83Mc", ucnv_getDefaultName_67) +STUB( + "QwCkdZ5gzLs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("QwGtVR91vl8", sceRegMgrPrivateStorageStart) +STUB("QwH-vJN8U7E", _ZN3sce2Np9CppWebApi6Common6String21intrusive_ptr_add_refEPS3_) +STUB( + "QwL73y7++C8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEaSERKS9_) +STUB("QwO4sr6XzSY", _ZThn16_N3sce2np10MemoryFile5WriteEPNS0_6HandleEPKvmPm) +STUB("QwOO7vegnV8", sceSaveDataGetSaveDataMemory2) +STUB( + "QwU-90EKHlQ", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser8haslimitEv) +STUB( + "QwUQ24+UAG0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE5beginEv) +STUB("QwaoDNOrBJ8", _ZN3sce7Toolkit2NP2V26Friend12Notification15BlocklistUpdateD1Ev) +STUB("QwbCXdumE84", curl_url) +STUB( + "Qwe1b+xjZMY", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("Qwf3hUUwZic", + _ZNK3sce2Np9CppWebApi14SessionManager2V116FromNonPsnMember6toJsonERNS_4Json5ValueEb) +STUB( + "Qwh66abKHJM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEED2Ev) +STUB( + "QwkSXslvXOs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEC1EPS8_) +STUB( + "Qwkk3ewAdnY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "QwtlSiJCuuQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEdeEv) +STUB( + "QwwfhtPOTWA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V135AddAndGetVariableRequestBodyFactory6createEPNS1_6Common10LibContextElPNS5_12IntrusivePtrINS3_28AddAndGetVariableRequestBodyEEE) +STUB( + "Qx1+MOcjfxg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("Qx7SkcgAzok", sceHmd2ReprojectionEnableMirroring) +STUB("Qx9IEu2LWGw", mono_aot_I18N_Westunbox_trampoline_addresses) +STUB( + "QxB6IX2hOYg", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE18getResponseHeadersERSB_) +STUB("QxBJF-G2v5k", sceHmd2ReprojectionSetParamWithBuffer) +STUB("QxC5oRcbXss", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEC2Ev) +STUB( + "QxDr12r-rOE", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetrics16getNumberOfTimesEv) +STUB("QxEcjnqPYyM", + _ZN12video_parser18cProfileCheckerMp424isPlayableVideoHMMPMpeg4ERKNS_13VpMediaInfo_tE) +STUB( + "QxJ+4QqUT1s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("QxOnOsL+H5M", jpeg_abort_decompress) +STUB( + "QxQ7j5N3quE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEaSERKS7_) +STUB("QxVVYhP-mvg", _ZN3sce4Json5Value3setEl) +STUB( + "Qxa9SH9no1s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEEC1Ev) +STUB("QxaNoUYvdls", _ZN7WebCore16VisibleSelectionC2ERKNS_11SimpleRangeENS_9EAffinityEb) +STUB("QxatxkNYNls", + _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest17setExpirationTimeERKi) +STUB("Qxf9w6r2Lkg", _ZNK7WebCore10RenderText16firstRunLocationEv) +STUB("QxhJs6zHUmU", sceHmdInternalCrashReportReadData) +STUB( + "QxiP6-UdmP4", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi44ParameterToPatchGameSessionsSearchAttributes13isInitializedEv) +STUB("QxjfcfBhEdc", _ZN3sce4Json5Value12referBooleanEv) +STUB("QxlDh1U5AI8", searchProtocolInfoListByProtocolNumber) +STUB("QxmSHBCuKTk", strtoul) +STUB( + "QxnFVuOuYqw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("QxqK-IdpumU", _Getpmbstate) +STUB( + "QxqaJXGqd7o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEC1EPS6_PNS2_10LibContextE) +STUB("QxtL3miUkVQ", _ZNK3sce2Np9CppWebApi11UserProfile2V16Avatar7getSizeEv) +STUB( + "QxyQJFjPo5A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEED2Ev) +STUB("QxzBHDWu-WM", + _ZN7WebCore12SettingsBase20setFantasyFontFamilyERKN3WTF12AtomicStringE11UScriptCode) +STUB("Qy-45Cj2ZOI", _Stoxflt.digits) +STUB( + "Qy11AE+x8jI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE4sizeEv) +STUB( + "Qy6ETWncdOg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEED2Ev) +STUB("QyAWkI0ffLQ", WKPageGetPaginationBehavesLikeColumns) +STUB("QyLuN1Mhk6Q", _ZN3JSC2VM17addImpurePropertyEPN3WTF17UniquedStringImplE) +STUB( + "QyQff1IhKe0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEE5resetEPS6_) +STUB( + "QyRXGfOIsCI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEE11release_refEv) +STUB("QyVMAhBAwrw", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku16isPlusPriceIsSetEv) +STUB("QyWWLY71cpQ", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEEixEm) +STUB( + "Qycd6F5QIL0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEneERKS9_) +STUB("Qyek420uZmM", sceNpTusGetMultiSlotDataStatusAsync) +STUB("QygCNNmbGss", sceHttp2ReadData) +STUB("QyhRhNGBQU4", _ZN3sce7Toolkit2NP9Utilities6FutureI19SceNpTrophyGameDataED1Ev) +STUB( + "QynGbjQ5mNY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE21intrusive_ptr_add_refEPS9_) +STUB("QyqgEUE95ns", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_33ActivityFeedSharedScreenshotStoryEEC2ERKS4_) +STUB("QyrxcdBrb0M", sceKernelGetKqueueFromEqueue) +STUB("QyuHptNshis", WKIconDatabaseGetTypeID) +STUB( + "QyvFZyEEJh0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEC1ERKS7_) +STUB("QyvqJWoYgL0", _ZN7WebCore9GLContextnwEm10NotNullTagPv) +STUB("QyxBxdNtkl8", mono_class_describe_statics) +STUB( + "Qyz6dc5SW8E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE5beginEv) +STUB("Qyz8VbxnaII", sceAmprAmmCommandBufferMultiMapWithGpuMaskId) +STUB("Qz6OvvsSneE", ures_getLocaleInternal) +STUB("Qz8l-upNOXM", _Z16WTFCrashWithInfoiPKcS0_im) +STUB("QzB4O+bJQyA", sceKernelAprResolveFilepathsToIdsAndFileSizesForEach) +STUB("QzBmSA8CV-c", _ZNK3sce2Np9CppWebApi7Matches2V113ErrorResponse8getErrorEv) +STUB( + "QzCQ6iakdm0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEC2Ev) +STUB( + "QzKntnYEOXc", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi41deletePlayerSessionJoinableSpecifiedUsersEiRKNS4_52ParameterToDeletePlayerSessionJoinableSpecifiedUsersERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB("QzMl0BNrkBo", mono_property_get_flags) +STUB( + "QzUsSpNap4g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE10setContextEPNS2_10LibContextE) +STUB("QzYuh6Ftszk", _ZNK7WebCore9FrameView27clientToLayoutViewportPointENS_10FloatPointE) +STUB("QzaA1qde-1c", WKBundlePageExtendIncrementalRenderingSuppression) +STUB( + "QzaDg6FyTQU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEptEv) +STUB("QzaREAE84mw", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V111OfferStatusEEmmEi) +STUB( + "QzcIVCPv9RM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE5emptyEv) +STUB( + "Qzd2filwkvs", + _ZN3sce7Toolkit2NP10Challenges9Interface11consumeItemEPKNS1_23ChallengeConsumeRequestEPNS1_9Utilities6FutureINS1_22ConsumeChallengeResultEEEb) +STUB("QzeIQXyavtU", sceUserServiceSetGlsTtsVolume) +STUB( + "QzfWMCqFE8w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEppEv) +STUB( + "QzhmPXGsNc8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEEptEv) +STUB( + "QznUYS2MBQ4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEmmEv) +STUB("QzoLmttapDA", bdjbg_destroy) +STUB( + "QzpKJkYagcQ", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB("QzrVu6VdC38", _log2f_impl) +STUB( + "QzwJqxVHduQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("QzySiql0nAE", _ZNK7WebCore18AdClickAttribution21hasHigherPriorityThanERKS0_) +STUB( + "R++wwewVT30", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEdeEv) +STUB("R+2FUI+qUB4", WKBundleNodeHandleGetHTMLTextAreaElementLastChangeWasUserEdit) +STUB( + "R+3Ccnpjj74", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("R+3WfaGkLTE", uset_openPatternOptions_67) +STUB("R+7Z45nY8A0", _ZN6WebKit12ChildProcess9terminateEv) +STUB("R+AMdZg0mkU", ucnv_enableCleanup_67) +STUB("R+G5do47KVg", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEEptEv) +STUB("R+Hmngc2cW0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE8copyFromERKS7_) +STUB( + "R+IJy1KVaj0", + _ZN7WebCore12SharedBuffer6createEON3WTF6VectorIhLm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("R+JSrG8sb5s", WKWebsiteDataStoreSetStatisticsTopFrameUniqueRedirectTo) +STUB( + "R+OHOmwsCwk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("R+ZL6IcGlXc", _ZN3sce2np14JsonObjectImpl8SetFieldEPKcPKNS0_9JsonValueE) +STUB("R+aBKlxV69c", _ZN7WebCore20LegacySchemeRegistry24registerURLSchemeAsLocalERKN3WTF6StringE) +STUB( + "R+bmUj3E3uA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEaSERKS7_) +STUB("R+jNNCjpVBc", _ZN3sce7Toolkit2NP2V210Tournament14RegisteredTeamaSERKS4_) +STUB("R+lZMziFVTQ", glGenQueriesEXT) +STUB( + "R+sNVF20lWg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEC2EPNS2_10LibContextE) +STUB("R+sqyC483ns", sceImeBackendModeCaretPrevious) +STUB( + "R+wJN-mHLi4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "R+xd5UurwbI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEptEv) +STUB( + "R+z3Go-sW9Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEEC2Ev) +STUB( + "R+zsiZEhM4c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEED2Ev) +STUB("R-26wEAR0KE", utext_moveIndex32) +STUB("R-4a9Yh4tG8", sceNetCtlApAppInitWpaKey) +STUB( + "R-7web+pc0o", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEplEm) +STUB("R-8BjN9slkA", uspoof_setAllowedChars_67) +STUB("R-8OgKvAmLA", tr_range_tab) +STUB( + "R-9BCfq6t80", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEeqERKS9_) +STUB( + "R-Dlyt7NDHg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE7popBackEv) +STUB("R-K4UH1DFAI", mono_aot_Sce_Vsh_Np_Commonunbox_trampolines_end) +STUB("R-PJ8yvNY-0", _ZN3sce7Toolkit2NP2V28Commerce10ContainersaSERKS4_) +STUB("R-Ps2uN7EFw", mono_aot_Sce_PlayStation_HighLevel_UI2unwind_info) +STUB( + "R-QDdYMgNys", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEaSERKS9_) +STUB("R-QjPBoo7fk", _ZN3sce13CanvasTexture12createRGB565Eii) +STUB("R-Uj-EZ9NZE", WKPreferencesGetJavaScriptCanOpenWindowsAutomatically) +STUB("R-dM6OKYLMQ", mono_get_corlib) +STUB( + "R-f-3UQq0uw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE5clearEv) +STUB( + "R-hRgcJqN5k", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE5emptyEv) +STUB("R-oVDMusYbc", sceFontGraphicsUpdateGlyphFill) +STUB("R-tyYMpYaxY", sceKernelAddWriteEvent) +STUB( + "R-vsMzjXXnI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEE5resetEPS9_) +STUB( + "R-xsvYA01AA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEED1Ev) +STUB( + "R-zA9AUrQek", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEE11release_refEv) +STUB("R0-hvihVoy0", nextafterl) +STUB( + "R00U+nHUD8w", + _ZN3sce2Np9CppWebApi14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyC1EPNS1_6Common10LibContextE) +STUB("R00q9P3BKAc", sceCompositorWaitEndOfRendering) +STUB("R013D1VIETQ", sceShellCoreUtilSignalUserInput) +STUB( + "R02QiWYvp74", + _ZN9Inspector20CSSBackendDispatcher25getSupportedCSSPropertiesElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "R061AvVklEc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC1ERSA_) +STUB( + "R09+AuLhOJg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEC2ERS8_) +STUB("R09g4LWY3To", ucol_tertiaryOrder_67) +STUB("R0C5rkcLyxg", _ZStL10_Call_funcPv) +STUB("R0HNwv8ngXY", WKErrorCopyWKErrorDomain) +STUB( + "R0JhbW+4vYU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE6resizeEj) +STUB("R0KW845D-BE", _ZNK3sce2Np9CppWebApi14SessionManager2V112JoinableUser12getAccountIdEv) +STUB( + "R0Q4Gb2MOpI", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeaderD1Ev) +STUB("R0TePTSHd2k", cairo_arc) +STUB("R0TfhbZMHm4", sceRemotePlayClientInitialize) +STUB("R0V-fx++5Cg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE7reserveEi) +STUB( + "R0W4nQ8Jiis", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEE11release_refEv) +STUB("R0XOxqrJoyU", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V114ResultsVersionEEneERKS7_) +STUB("R0ac5QOdlpo", _ZN3sce4Json5Value12referIntegerEv) +STUB( + "R0gzSGWTSNs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEneERKS9_) +STUB("R0lsCgrINWo", sceFaceAgeRangeEstimate) +STUB( + "R0lxeAPKCyo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEED2Ev) +STUB("R0omFuya2+Q", _ZN3NTF21ResourceRequestLogger5startEPv) +STUB("R0uK2q38QTo", _ZN3sce16CommonDialogUtil6Server9setResultEi) +STUB( + "R10PryV-lHc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEeqERKS9_) +STUB("R15hN8-oipQ", _ZNK7WebCore13GraphicsLayer18accumulatedOpacityEv) +STUB( + "R16zUjg8Mao", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "R18wqfTg-uw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEEC1EPS8_PNS2_10LibContextE) +STUB( + "R1BLpIZUPwc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("R1DxY7rNYKA", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEEaSERKS6_) +STUB("R1HCq1d3SEI", _ZN3sce2Np9CppWebApi7Matches2V119RequestInGameRoster12unsetPlayersEv) +STUB( + "R1ITHuTUMEI", + _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE16do_get_monthnameES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm) +STUB("R1Jvn8bSCW8", sceKernelDeleteSema) +STUB("R1NpaLgE9yU", rgctx_fetch_trampoline_mrgctx_70_p) +STUB( + "R1PJ6fhpmL0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("R1QjB5b1l-4", sceCesRefersUcsProfileIso8859_14) +STUB( + "R1Rn9rMBsBA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEEC1ERSA_) +STUB("R1SLegxzCGU", sceMusicPlayerServiceInsertTrackEntry) +STUB("R1T4i+DOhNY", sceFontGlyphRefersOutline) +STUB("R1UArToVtOY", _ZN9Inspector22RemoteAutomationTargetC2Ev) +STUB("R1UEueu9uyI", _ZN8meta_gen11MsvPromoter10InitializeEP22MsvPromoteInnerContext) +STUB("R1ePzopYPYM", sceSslGetNameEntryCount) +STUB("R1eprLUz9I8", _ZNK7WebCore13KeyboardEvent16getModifierStateERKN3WTF6StringE) +STUB("R1lHJegLAe8", _ZN3JSC11RegisterSet21macroScratchRegistersEv) +STUB("R1mZutnlTiM", FT_Stream_Seek) +STUB("R1nj8SOcBTI", _ZN7WebCore10TimeRanges6createEdd) +STUB("R1ovagwVSI4", _ZN4Manx7Network7reallocEPvm) +STUB( + "R1qZeu60XJU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEED1Ev) +STUB("R1s4ue5cubY", sceSdmaCopyWindowT2TNonBlocking) +STUB("R2+u4Jd0WSM", uprv_sortArray) +STUB( + "R23orAcz0pA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEixEm) +STUB( + "R27pt5KYpng", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEmmEi) +STUB("R2APVUi9BoQ", Java_java_awt_GnmGraphics_nativeFillRect) +STUB("R2Dd-vNhzFE", mono_signature_get_param_count) +STUB( + "R2GrM2WY5pE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("R2NQ5MbjVBQ", mono_aot_Sce_PlayStation_Coreunbox_trampolines) +STUB("R2OL8xlFSXo", WKMediaCacheManagerClearCacheForHostname) +STUB("R2QKo3hBLkw", _rtld_atfork_post) +STUB("R2QhMJAHmro", _ZN3sce7Toolkit2NP2V28Matching5RoomsC1ERKS4_) +STUB("R2RHWqvhRqQ", _ZN12Mp4Retriever11byte2bitNumEhhh) +STUB("R2VrnwV5rpk", _ZN7WebCore11FrameLoader14stopAllLoadersENS_26ClearProvisionalItemPolicyE) +STUB( + "R2WQfFm5jbo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("R2XV0ewj3dI", _ZN3sce3Xml3Dom15DocumentBuilder9terminateEv) +STUB("R2ZQAobL0VM", _ZN7WebCore17HTMLSelectElement11setMultipleEb) +STUB( + "R2azr1mmVu4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEaSERKS9_) +STUB("R2cSMyL69Bk", utf8_appendCharSafeBody) +STUB("R2dhCyaDT48", _ZN3sce3Xml11Initializer9terminateEv) +STUB( + "R2g5pu7Dwe0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE21intrusive_ptr_add_refEPS9_) +STUB("R2noUGyITvk", + _ZNSt9_FacetptrISt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEE6_PsaveE) +STUB("R2yDBfjSkHA", mono_aot_ReactNative_Debug_DevSupportunwind_info) +STUB("R302ljOk7tQ", _ZN3sce7Toolkit2NP2V211SharedMedia11ScreenshotsD1Ev) +STUB("R32KWyukT6U", uprv_decNumberAdd_67) +STUB( + "R344NhexpiM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE7releaseEv) +STUB( + "R34rX6mXKD0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEC1Ev) +STUB( + "R36adnRXFWg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE3endEv) +STUB( + "R3971zQT7us", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE7reserveEi) +STUB("R3A6XQIwzEg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEC1Ev) +STUB( + "R3L+JBooxmQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE8capacityEv) +STUB("R3LE7Aiw2io", TLS_client_method) +STUB("R3QGYKdeeYI", _ZN9Inspector20InspectorTargetAgent15targetDestroyedERNS_15InspectorTargetE) +STUB("R3T9kAASCKM", + _ZN3sce2Np9CppWebApi14ConnectAccount2V215AccountLinksApi28ParameterToDeleteAccountLinkC1Ev) +STUB("R3e71gr1u3E", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku23getDisplayOriginalPriceEv) +STUB("R3grMrGyJho", glGetInteger64i_v) +STUB( + "R3hJL1oxFXg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEixEm) +STUB( + "R3iI6GZXoyM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEppEv) +STUB("R3nFNsfiGUQ", + _ZN7WebCore4Page22removeLayoutMilestonesEN3WTF9OptionSetINS_15LayoutMilestoneEEE) +STUB( + "R3qOQNDu0fI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE7reserveEi) +STUB("R3vgMxMBgd0", mono_type_size) +STUB("R3zKVT9XEGU", mono_get_exception_not_implemented) +STUB("R44U7HWTcYs", _ZNK3sce2Np9CppWebApi14SessionManager2V115SearchCondition10valueIsSetEv) +STUB( + "R45OuqCl6l8", + _ZN7WebCore20ApplicationCacheHost25maybeLoadFallbackForErrorEPNS_14ResourceLoaderERKNS_13ResourceErrorE) +STUB( + "R4A1kPOxoNo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEEC2Ev) +STUB( + "R4DzZGxLRa8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEC2EPS8_) +STUB( + "R4Gm1SVxvyY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE5clearEv) +STUB( + "R4X6EoE+FuA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEmmEv) +STUB( + "R4XQS4JXM-4", + _ZThn16_N9Inspector22InspectorDebuggerAgent18continueToLocationERN3WTF6StringERKNS1_8JSONImpl6ObjectE) +STUB("R4YQI0YpbB0", sceFiosCacheFlushFileSync) +STUB("R4cvOCertOM", _ZN3JSC14ProtoCallFrame14needArityCheckEv) +STUB("R4nImuzOydg", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetailaSERS5_) +STUB( + "R4sodwLphl0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEmmEi) +STUB("R4uZL+lBhJQ", _ZTSPDh) +STUB("R4v+x9GJ4WA", + _ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForRead18unsetNonPsnPlayersEv) +STUB("R4xnWArcO14", mono_aot_Sce_Vsh_Sl2_Sl2Commonjit_code_end) +STUB("R4xzXGj2y74", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_28AdditionalSessionInformationEE3getEv) +STUB("R5+WvSLQgec", _ZN4Manx6Screen5widthEv) +STUB("R50rXm8Dd1k", mono_aot_Sce_Vsh_VrEnvironmentplt) +STUB("R58wTYuBl4A", mono_aot_Sce_Vsh_Np_AppInfojit_code_end) +STUB("R5CZ6wtr13w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEC2Ev) +STUB("R5OkM+JXNGU", mono_aot_Sce_Vsh_VoiceMsg_VoiceMsgWrapperjit_got) +STUB("R5QhFOlpzjo", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScore9terminateEv) +STUB( + "R5RLZuTS3m8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEmmEv) +STUB( + "R5RRY5ZCQSU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEeqERKS9_) +STUB("R5SS2IqIwQQ", GCC_except_table61) +STUB( + "R5UMy7LMszo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEC1Ev) +STUB("R5X1i1zcapI", _Atomic_fetch_or_4) +STUB( + "R5aG7DHXm5k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEED2Ev) +STUB( + "R5bEiV63whk", + _ZN3JSC23createBuiltinExecutableERNS_2VMERKNS_10SourceCodeERKNS_10IdentifierENS_16ConstructAbilityE) +STUB("R5cAR+yT+dw", _ZN12video_parser12cVpFileCache3RunEv) +STUB( + "R5eq9YUw-Zk", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEEiRNS2_10LibContextEPT_m) +STUB("R5hemoKKID8", sceAudioOutGetSystemState) +STUB("R5kWFrmHVCQ", _ZN3WTF5equalEPKNS_10StringImplEPKhj) +STUB( + "R5lmA0Rc3Fk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEaSERKSC_) +STUB("R5nRbLQT3oI", _ZN10__cxxabiv117__array_type_infoD0Ev) +STUB("R5rWHiU8BF4", _ZNK3WTF13StringBuilder10isAllASCIIEv) +STUB("R5yZepvlMy0", _ZN3JSC8Debugger16willRunMicrotaskEv) +STUB( + "R60dRZADj00", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEneERKS9_) +STUB("R625FTX73kc", + _ZN3sce2Np9CppWebApi14SessionManager2V119JoinableUserFactory7destroyEPNS3_12JoinableUserE) +STUB( + "R68O7ARj9Ek", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi24ParameterToReportResults23setreportResultsRequestENS1_6Common12IntrusivePtrINS3_20ReportResultsRequestEEE) +STUB("R6BLYam0rcE", _ZN3JSC7Symbols59defineEnumerableWritableConfigurableDataPropertyPrivateNameE) +STUB("R6IBc47qWnM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEEC2ERS6_) +STUB("R6MsE03xutI", _ZN3JSC4Heap7sweeperEv) +STUB("R6OYAmxPe-g", _ZN3sce7Toolkit2NP2V28Matching7Request8JoinRoom23LOWEST_DISPLAY_PRIORITYE) +STUB("R6RIy5e80SU", _ZN3JSC9Structure16allocateRareDataERNS_2VME) +STUB("R6Z7jRxaoxo", sceFontGraphicsSetupSlantShift) +STUB("R6ZajxSYd8E", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfoD1Ev) +STUB( + "R6angRZS0iE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE10setContextEPNS2_10LibContextE) +STUB( + "R6k5J0DE4Uo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE7popBackEv) +STUB("R6ldE-2ON1w", sceUserServiceGetPbtcPlayTimeLastUpdated) +STUB("R6mphKHvP7c", mono_aot_Sce_Vsh_Webbrowser_XutilWrappermethod_addresses) +STUB( + "R6o3I-+JnSI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE21intrusive_ptr_add_refEPS9_) +STUB("R6qlqXwfhZg", JVM_ConstantPoolGetStringAt) +STUB( + "R6wRnnl5fVg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEC2EPKS8_) +STUB( + "R6x4+uXxSJQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEE5resetEPS9_) +STUB( + "R6yDTWCJ12g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("R6yTbCLOMSI", _ZN3WTF10WorkerPoolC2ENS_12ASCIILiteralEjNS_7SecondsE) +STUB("R6z1xM3pW-w", sceGnmDriverTraceInProgress) +STUB( + "R71QzjbpjmY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE5beginEv) +STUB("R72NCZqMX58", _ZTSSt13basic_ostreamIwSt11char_traitsIwEE) +STUB("R74tt43xP6k", sceKernelAddHRTimerEvent) +STUB("R78-0PPJcBk", _ZNK7WebCore10StorageMap6lengthEv) +STUB("R78nGE2Drzw", sceNpUniversalDataSystemIntCreateRecordData) +STUB( + "R79nFgXnycM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB( + "R7DbysW1g98", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEC1ERS7_) +STUB("R7FDWtcN6f8", _ZN3sce4Json5Value9serializeERNS0_6StringE) +STUB( + "R7KC57md3TI", + _ZN7WebCore11EventTarget30removeEventListenerForBindingsERKN3WTF12AtomicStringEONS1_6RefPtrINS_13EventListenerENS1_13DumbPtrTraitsIS6_EEEEONS1_7VariantIJNS0_15ListenerOptionsEbEEE) +STUB("R7KrLur9byM", WKInspectorToggleJavaScriptDebugging) +STUB("R7LtNXr0LWo", _ZN3sce7Toolkit2NP2V29Messaging7Request22ConsumeGameDataMessageC2Ev) +STUB( + "R7MjjRSD8k0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEED1Ev) +STUB("R7NBRVO5ZCU", mono_aot_Sce_Facebook_CSSLayoutunwind_info) +STUB( + "R7P75aa1rXQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEppEv) +STUB( + "R7TJchcwA+M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "R7TKRuc6veM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEppEv) +STUB("R7Vl+eA3OiY", sceCesRefersUcsProfileCp869) +STUB("R7XLWikJQtg", _ZNK10Deprecated11ScriptValue7jsValueEv) +STUB("R7Xj-th93gs", sceKernelSetVmContainer) +STUB( + "R7Yzzco62Wc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEEptEv) +STUB("R7a+afuvYTU", _ZN3sce7Toolkit2NP2V27Session7Request17GetInvitationDataD2Ev) +STUB("R7d0F1g2qsU", sceAudioOut2ContextGetQueueLevel) +STUB( + "R7dKZgyTe6o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEEC2Ev) +STUB("R7ej2g+EmIk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEppEv) +STUB("R7qRZ88gZ70", uprv_decContextClearStatus_67) +STUB("R7sNS8fgJQU", _ZNK3JSC14JSGlobalObject22remoteDebuggingEnabledEv) +STUB("R7sOH7lIe8M", rgctx_fetch_trampoline_rgctx_20_p) +STUB("R7sTQjrakqE", _ZN7WebCore8Document19caretRangeFromPointEii) +STUB("R7uetrIM2yY", _ZN7WebCore8SVGNames11clipPathTagE) +STUB( + "R7vF64vMs84", + _ZN3sce7Toolkit2NP12ActivityFeed9Interface10postInGameEPKNS1_17PostInGameRequestEPNS1_9Utilities6FutureINS1_15ActivityStoryIdEEEb) +STUB( + "R7woYOzL7is", + _ZN7WebCore11DisplayList12PutImageDataC1ENS_22AlphaPremultiplicationERKNS_9ImageDataERKNS_7IntRectERKNS_8IntPointES2_) +STUB( + "R7za+GbmuiU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEmmEv) +STUB( + "R819-P60750", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEC1ERKS7_) +STUB( + "R850wZKLoQE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEC1ERKS7_) +STUB("R86sXhW699g", BIO_s_mem) +STUB("R8ARAGDCXwM", _ZNK3JSC8Debugger8isPausedEv) +STUB( + "R8DDvpkIsus", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEEeqERKS7_) +STUB( + "R8E-qnvESKc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEE5resetEPS6_) +STUB("R8EbyWx7TUs", _ZN3sce7Toolkit2NP2V212ActivityFeed7CaptionD1Ev) +STUB("R8LZytuJe2Y", sceDeci4hDrfpRemove_fuse) +STUB( + "R8POAtUD1kk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("R8RZC1ZIkzU", sceRemoteplayIsRemoteOskReady) +STUB("R8Rbwi6zED4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEEC2EPS4_PNS2_10LibContextE) +STUB( + "R8TBc2bC7oo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEE5resetEPS9_) +STUB("R8XVsCy8pIE", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_isPipSubtitleMode) +STUB( + "R8hYM9xCcJ4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEdeEv) +STUB("R8pxYSQQqcY", WKFrameStopLoading) +STUB("R8v5kdZ55mY", sceAudiodecCpuInternalQueryMemSize) +STUB("R8xUpEJwAA8", _ZNSt14numeric_limitsIfE14max_exponent10E) +STUB("R996H0YIhiQ", _ZN3sce4Json11Initializer24setAllocatorInfoCallBackEPFviNS0_9ValueTypeEPvES3_) +STUB("R9AdrFOK9Ng", _ZNK3sce2Np9CppWebApi7Matches2V119AdditionalStatistic6toJsonERNS_4Json5ValueEb) +STUB("R9CB6TmSpeU", _ZN4IPMI4impl10ClientImpl7destroyEv) +STUB( + "R9CWDJoum2Y", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEdeEv) +STUB("R9HHtazgMJY", _ZN7WebCore15DatabaseManager14setIsAvailableEb) +STUB( + "R9HRw-1Iv8k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEC1Ev) +STUB("R9I10DrUd0A", udat_formatForFields_67) +STUB("R9KfptVxClc", udata_getRawMemory) +STUB( + "R9OL37910l8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEE11get_deleterEv) +STUB("R9VdZjbxQi8", sceHttpCacheSystemClearAll) +STUB("R9X0jHsH64E", WKBundlePageCopyGroupIdentifier) +STUB("R9Xrr0Fvh14", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEC2Ev) +STUB("R9a1RL4FEBU", mono_aot_Sce_Vsh_Np_Tmdbjit_code_end) +STUB("R9aQ2Yw0Ylw", monoeg_g_ascii_strdown) +STUB("R9hKW5gfa9M", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119PlayStyleProperties12setChallengeERKi) +STUB("R9lA82OraNs", sceAppContentInitialize) +STUB( + "R9pvYPhgFaM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("R9uJB8bxFPM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEED1Ev) +STUB("R9udCL0w2aU", _ZTVN7WebCore11DisplayList11SetLineDashE) +STUB("R9vnyf-B1pU", sceUserServiceSetPbtcThursdayDuration) +STUB("RA2D9rFH-Uw", sceUsbdUnlockEvents) +STUB("RA8MVPl4va8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEC2Ev) +STUB("RAAMO4Iubm0", GCC_except_table286) +STUB("RAAuT3bFUqs", ucptrie_toBinary_67) +STUB("RADrqCDh-8s", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEEcvbEv) +STUB("RAFjId49lqw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEptEv) +STUB("RANPtoAYeAA", sceIduGetEnv) +STUB("RARARMv04ws", _ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBodyD1Ev) +STUB("RAcOLwTQyxc", _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_4FileE) +STUB( + "RAkEhLw9Hsw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "RAth-vQiVLo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "RAx-HMPCEWU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEC1EPNS2_10LibContextE) +STUB("RAyoefHN9Is", _ZN4Manx11StoragePath11sqlDatabaseEv) +STUB("RB0rwAfQF-o", mono_aot_Sce_Vsh_Np_ServiceCheckerjit_got) +STUB("RB3ratfpZDc", _ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED0Ev) +STUB("RB4oAA25qYk", _ZN7WebCore8SVGNames17feGaussianBlurTagE) +STUB( + "RB5LlxlbLPI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot10initializeEPNS1_6Common10LibContextEi) +STUB("RB6PPvd0ZBU", _ZN7WebCore11MathMLNames14maligngroupTagE) +STUB( + "RB7voJMuUZs", + _ZN7WebCore11DisplayList16DrawLinesForTextC2ERKNS_10FloatPointERKNS_9FloatSizeEfRKN3WTF6VectorIdLm0ENS8_15CrashOnOverflowELm16ENS8_10FastMallocEEEbb) +STUB("RBHW6ZontG4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEED2Ev) +STUB( + "RBJvYglKJXg", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("RBPhCcRhyGI", _Atomic_is_lock_free_1) +STUB("RBUWUb2gfXI", + _ZNK3sce2Np9CppWebApi7Matches2V125ResponseCompetitiveResult6toJsonERNS_4Json5ValueEb) +STUB("RBX1d-+nzpE", sceCesEucJpToUtf32le) +STUB("RBcs3uut1TA", strerror_r) +STUB("RBe47dO22EQ", utrie2_get32_67) +STUB("RBlEzB--JeA", sceLncUtilKillAppWithReason) +STUB( + "RBldcSTyedY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEC2Ev) +STUB( + "RBmqHCfHDbQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEED1Ev) +STUB("RBw+4NukeGQ", _ZNK3sce4Json5Value5countEv) +STUB("RC-fRnmp+Ms", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error20unsetMissingElementsEv) +STUB("RC3VBr2l94o", __floatunsisf) +STUB( + "RC67VafRUwg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEC2Ev) +STUB("RC8cRZRvHWI", mask) +STUB( + "RCAHSKnAgBE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEmmEv) +STUB("RCBpk+BtTRE", rgctx_fetch_trampoline_rgctx_61_p) +STUB("RCCY01Xd+58", sceNetResolverStartNtoaMultipleRecords) +STUB( + "RCDd8brzYLg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEED1Ev) +STUB("RCHAU-BQzVo", _ZN6WebKit12ChildProcess21terminationTimerFiredEv) +STUB( + "RCKl0mx5RQE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEC1Ev) +STUB("RCLmP0P4oHI", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V223FilterProfanityResponseC1EPNS1_6Common10LibContextE) +STUB( + "RCOCeiQyRL0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("RCQAffkEh9A", coshf) +STUB( + "RCQMEgIc9KM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "RCUMezg-me4", + _ZN7WebCore11JSDOMWindow25getOwnPropertySlotByIndexEPN3JSC8JSObjectEPNS1_14JSGlobalObjectEjRNS1_12PropertySlotE) +STUB("RCWKbkEaDAU", _ZNSt9_Num_base14is_specializedE) +STUB( + "RCWsuMQ46LM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("RCXObcgBLKs", _ZN3sce16CommonDialogUtil6Server13setFinishDataEPvm) +STUB("RCYAhgu7fG4", rgctx_fetch_trampoline_rgctx_18) +STUB( + "RCYtPOrOGqA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "RCbDQXFan6U", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayer28getxPsnAcceptPlatformNamePs5Ev) +STUB( + "RCfDdG08qgA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEC1EPS8_) +STUB( + "RCj32AqTDZc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEppEi) +STUB( + "RCoQR1zhe3g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "RCosUey3GEA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEED1Ev) +STUB("RCrjO1lzNRU", MvpHttpGet) +STUB("RCtcimZJgYs", _ZN7WebCore9HTMLNames17webkitairplayAttrE) +STUB("RCtiLzPYAgA", sceCtrlpGetAvailPlayBufferNum) +STUB("RCuGI7b3AF4", _ZNK3sce2np9JsonArray10GetItemNumEv) +STUB( + "RD1fG8whZgA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("RD3shWR4Vok", sceDebugGetApplicationInfo) +STUB( + "RD3xa7YGr7Y", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayer12getsessionIdEv) +STUB( + "RD4oAFw+Y3Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEmmEv) +STUB("RD6eyxmgANc", _ZZSt9MakefacetISt5ctypeIcESt8_LocinfoERT_T0_E3buf) +STUB("RD8uvBGzQDs", Java_java_io_FileOutputStream_openAppend) +STUB("RD9L4eg0m-c", EVP_aes_192_ctr) +STUB( + "RDB0VDGpsho", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEmmEi) +STUB("RDGYqqmyHWc", _ZNK7WebCore17SubresourceLoader15originalHeadersEv) +STUB("RDK-0B1uIJo", _ZN7WebCore18ScrollingStateTree23setHasChangedPropertiesEb) +STUB("RDLohIsn+xE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEED2Ev) +STUB("RDPTNEkwy7c", + _ZN7WebCore12SettingsBase22setSansSerifFontFamilyERKN3WTF10AtomStringE11UScriptCode) +STUB("RDRcOADhta8", _ZN3JSC8Bindings8Instance19createRuntimeObjectEPNS_9ExecStateE) +STUB("RDTVY96sNao", _ZN4Manx13WorkQueueImplD1Ev) +STUB("RDYHybvxuMs", mono_btls_x509_crl_get_issuer) +STUB( + "RDb3KnxFvXA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("RDc+qpc3rnE", mono_btls_x509_store_ctx_get_by_subject) +STUB( + "RDdlIEKB7lk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEE11get_deleterEv) +STUB("RDeUB6JGi1U", __paritydi2) +STUB("RDfERQQNKjA", mono_error_init) +STUB("RDjaBFHSfEc", _ZN9Inspector17ScriptDebugServernwEm10NotNullTagPv) +STUB( + "RDkxjU08zos", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEaSERKS9_) +STUB( + "RDmmId3pih0", + _ZN3sce2Np9CppWebApi14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBody8fromJsonERKNS_4Json5ValueE) +STUB("RDp5dfLonmA", _ZN7CoreIPC14MessageDecoder6createERKNS_13DataReferenceE) +STUB( + "RDvrWNdlWtA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEEaSERKSA_) +STUB( + "RDy6cEX4JPE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEC1EPNS2_10LibContextE) +STUB("RE2FpJnJOGw", _ZN7WebCore16MIMETypeRegistry28isSupportedTextTrackMIMETypeERKN3WTF6StringE) +STUB("RE3OPDj0GVk", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer8getlimitEv) +STUB("RE6e9Qvb9lc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEdeEv) +STUB( + "RE8sXyf4CsQ", + _ZN3WTF24acquireLineBreakIteratorENS_10StringViewERKNS_12AtomicStringEPKDsjNS_21LineBreakIteratorModeE) +STUB("RE9ECIrD-9U", _ZN9Inspector27PerGlobalObjectWrapperWorldaSERKS0_) +STUB("REFpZXGP3OQ", _ZN3sce7Toolkit2NP2V27Ranking12RangeOfRanksC2Ev) +STUB("REGQ4Jki6Ic", _ZN3sce2Np9CppWebApi6Common6VectorIlE6insertENS2_13ConstIteratorIlEERKlRS6_) +STUB("REIRIXzv-H0", sceLoginMgrServerDestroyUser) +STUB("REOBGOfo4WE", _ZN9Inspector33InspectorBackendDispatcherHandlerD0Ev) +STUB( + "REQPD8A184U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEmmEv) +STUB("RERXvPDMdhg", _ZN7WebCore12SharedBuffer5clearEv) +STUB( + "RESeX0gJ5oM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEC1EPKS8_) +STUB( + "RESfV72pjWM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEE5resetEPS6_) +STUB("RESi4lF3YfA", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToCancelTicketC1ERS5_) +STUB("REYJWfCzirY", uprv_tzname_67) +STUB("REZbDZa4btY", WKContextAddSupportedPlugin) +STUB("REcO7rLo0fA", _ZNK3sce3Xml3Dom8Document11getAttrNameENS1_6NodeIdE) +STUB("REfUTmTchMw", sceUsbdReleaseInterface) +STUB("REgXQWzINZI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEED2Ev) +STUB( + "REl3kkOgTkY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEdeEv) +STUB("REnav+kGq40", + _ZN15AbstractStorage18DailymotionStorage13GetRootFolderEPSt10shared_ptrINS_6FolderEE) +STUB( + "REoqsKCAmBg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB( + "REqg4OKOitw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEED1Ev) +STUB("REt+k0TeaKo", _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfileD1Ev) +STUB( + "REvI0UeN1Ck", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations34setxPSNSESSIONMANAGERINVITATIONIDSEPKc) +STUB( + "REy-v0NuqJM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEED1Ev) +STUB("RF1wYlwx+e8", sceVencCoreCreateEncoder) +STUB("RF74pnu5f-c", uloc_getDisplayName) +STUB("RF7J2VaHOfI", _ZN3sce7Toolkit2NP2V27Session7Request6CreateD2Ev) +STUB( + "RFDI5+hh-oE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEC1Ev) +STUB("RFIZF5hdFRs", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE7popBackEv) +STUB("RFIZToM9FcU", WKBundleBackForwardListGetTypeID) +STUB("RFIi20Wp9j0", sceHmdInternalGetDeviceInformation) +STUB("RFKbaZAsHKs", _ZN3WTF13printInternalERNS_11PrintStreamEPN3JSC9CodeBlockE) +STUB( + "RFLULxrz2C8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEED2Ev) +STUB("RFPtOY4ll4g", _ZN7WebCore10FileSystem23getFileModificationTimeERKN3WTF6StringE) +STUB("RFR-MQiu5AA", _ZN3sce2Np9CppWebApi6Common9RefObjectD2Ev) +STUB("RFa7xfC8-d4", _ZN7WebCore9HTMLNames18ongesturestartAttrE) +STUB("RFaqh8vAtb8", sceAvSettingSetHdmiGamutMetadata_) +STUB("RFdh1hdJPCk", + _ZNK3sce2Np9CppWebApi7Matches2V133RequestTemporaryCompetitiveResult6toJsonERNS_4Json5ValueEb) +STUB("RFlsu7nfopM", _wait4) +STUB("RFnKlYsiIb0", UCNV_TO_U_CALLBACK_ESCAPE) +STUB("RFnMq7-6lq8", + _ZN7WebCore37BasicComponentTransferFilterOperation5blendEPKNS_15FilterOperationEdb) +STUB( + "RFwwJNsOm60", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE3endEv) +STUB( + "RG1jzRp3Xkc", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12string8IsSetEv) +STUB( + "RG2humih50I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("RG4bcvS0caE", _ZNK7WebCore14CredentialBase11hasPasswordEv) +STUB("RG8VRsQoTls", SSL_write) +STUB("RGA+5Ya-Qv8", _ZN3sce7Toolkit2NP15AppSTLAllocatorIcE10deallocateEPcm) +STUB("RGA2eZZz3V4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE3endEv) +STUB( + "RGQo4G4q4tw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEC2ERKS7_) +STUB("RGUWI6ToaQM", + _ZN3sce7Toolkit2NP8Commerce9Interface13productBrowseERKNS1_19ProductBrowseParamsEb) +STUB("RGVOIIycuyA", T_CString_stringToInteger) +STUB("RGc3P3UScjY", _Wcsftime) +STUB("RGei0wl9pho", WKContextSetNetworkProxySettings) +STUB("RGhcbdr8c+I", _ZN3sce7Toolkit2NP2V28Matching7Request8JoinRoomC2Ev) +STUB("RGj3rAgPgf8", _ZN4Manx11MediaPlayer7seekingEv) +STUB( + "RGmaXWENyeA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "RGt1xx9gGr0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEppEi) +STUB("RGu7jejTEW4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEED2Ev) +STUB("RGuaevtZkjc", sceCesGbUcsProfileSetUdaMapping) +STUB( + "RGubjN6I4Qs", + _ZN9Inspector20DOMBackendDispatcher24pushNodeByPathToFrontendElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("RGyb4+EFqIA", _ZN3JSC12JSLockHolderD1Ev) +STUB( + "RH+1iwPzz9k", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScore22getxPsnAtomicOperationEv) +STUB( + "RH-vpY2uz88", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "RH08Afgpods", + _ZN9Inspector28DOMDebuggerBackendDispatcher19removeDOMBreakpointElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "RH0A+q5bmlw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEppEv) +STUB("RH1WScofYjE", _ZN3JSC8JSString6s_infoE) +STUB( + "RH3+35+M94Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEEC1ERSA_) +STUB( + "RH4Jf9UhIWQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEdeEv) +STUB( + "RH4idQq5G6A", + _ZN9Inspector8Protocol13BindingTraitsINS0_8Timeline13TimelineEventEE11runtimeCastEON3WTF6RefPtrINS5_8JSONImpl5ValueENS5_13DumbPtrTraitsIS8_EEEE) +STUB("RH6b8pg-P70", _ZThn16_N9Inspector22InspectorDebuggerAgent7disableERN3WTF6StringE) +STUB( + "RH7moZmtzWI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEE11release_refEv) +STUB("RHC5lPmkMNc", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Error8fromJsonERKNS_4Json5ValueE) +STUB("RHMsljiMafE", _ZN7CoreIPC13MessageSenderD2Ev) +STUB( + "RHOKkINmJiY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEEptEv) +STUB("RHPacseeIFg", __asan_report_exp_load2) +STUB("RHSENTKiysk", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEC2ERS7_) +STUB("RHT0OFNP1JA", _ZN3sce7Toolkit2NP2V29Messaging12Notification18NewGameDataMessageaSERKS5_) +STUB("RHV1W6LLOZQ", WKApplicationCacheManagerDeleteAllEntries) +STUB("RHXYK0iDICM", scePlayGoRequestNextChunk) +STUB("RHYJ7GKOSMg", sceCameraGetCalibrationData) +STUB("RHcv98ep3dg", uhash_hashCaselessUnicodeString_67) +STUB("RHemLB0DMKg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEEC2Ev) +STUB( + "RHk-nXA8TXs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEixEm) +STUB("RHk8mRlqPyY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEED2Ev) +STUB("RHngy4Yp0jI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEEC2ERKS6_) +STUB("RHpq9hQfTj8", BIO_ctrl) +STUB( + "RHqxMZyf44M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE3endEv) +STUB("RHsvSEeUd8s", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession22unsetInvitableUserTypeEv) +STUB("RI-PrwnYFdI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEEC2EPNS2_10LibContextE) +STUB( + "RIDT5VSAIfg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE10setContextEPNS2_10LibContextE) +STUB( + "RIEFJdEvTrs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEEC2Ev) +STUB( + "RILskcl6udw", + _ZN9Inspector21InspectorRuntimeAgent14callFunctionOnERN3WTF6StringERKS2_S5_PKNS1_8JSONImpl5ArrayEPKbSB_SB_RNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISF_EEEERSt8optionalIbE) +STUB("RIPYdMx8wZw", _ZNK3sce2np10JsonString6GetStrEv) +STUB("RIRv-1FA-yU", tt_cmap8_class_rec) +STUB("RIUBPb+3rEg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEE11get_deleterEv) +STUB("RIVWLt7NdUQ", _ZN7WebCore20HTMLFrameElementBase5widthEv) +STUB("RIX1IKndFDA", WKPreferencesSetDoNotTrackEnabled) +STUB("RIXLOUDwuUg", _ZNK7WebCore17ResourceErrorBase12isolatedCopyEv) +STUB( + "RIYWbHvV6qs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE21intrusive_ptr_add_refEPS9_) +STUB("RIa6GnWp+iU", strerror) +STUB("RIcNJWDYKhM", u_strToJavaModifiedUTF8) +STUB( + "RIgrrt15gNs", + _ZN3sce7Toolkit2NP2V26Friend22displayBlockUserDialogERKNS3_7Request22DisplayBlockUserDialogEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("RIkUZRadZgc", sqrtl) +STUB( + "RImJaEh77VU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEC1Ev) +STUB("RIthBDSYo4s", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_19ProductInfoDetailedEE7destroyEPS3_) +STUB( + "RIwIyIpahhI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEE7add_refEv) +STUB("RJ+khi-q6YY", _ZN7WebCore8PositionC2EPNS_4NodeEjNS0_10AnchorTypeE) +STUB( + "RJ7hBcp947E", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("RJ9NntjPcEs", DestroyWebApiLibCtx) +STUB( + "RJDtkBy35zk", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE11getResponseERSB_) +STUB( + "RJE+uhL7cnQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEE3getEv) +STUB( + "RJG+uzUY5qA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEppEv) +STUB( + "RJIL2VmCIjY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEC2Ev) +STUB("RJJ11crQyns", mono_object_get_virtual_method) +STUB("RJNjt4sw25w", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEED1Ev) +STUB("RJOlguLEy-E", _ZN3sce2np9HttpTrans21SetRequestContentTypeEPKc) +STUB("RJUKTuFlRt0", _ZN7WebCore16convertToIntegerIhEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB("RJVxGyv9mJU", _ZN23sceMetadataReaderWriter14StorageManagerC2Ev) +STUB("RJW3AojPP1A", JSContextGetGlobalObject) +STUB("RJX7T4sjNgI", sceUserServiceGetUserStatus) +STUB("RJYEfE+NO18", uprv_log_67) +STUB( + "RJdnF5MuSys", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE3endEv) +STUB("RJeOUN5ZbyI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEC2Ev) +STUB("RJivdUma7v8", + _ZN6WebKit17ChildProcessProxy21removeMessageReceiverEN7CoreIPC15StringReferenceEm) +STUB( + "RJkytIVWcpo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEC1EPS8_) +STUB("RJoV65JV8Do", _ZN3sce7Toolkit2NP2V23TSS7Request7GetDataC2Ev) +STUB("RJpgwkpDpW8", ucnv_toAlgorithmic_67) +STUB("RJq6QwvRFRY", mono_aot_Sce_Vsh_DataTransferunbox_trampolines_end) +STUB("RJtXkpCVfmA", glDetachShader) +STUB("RJvKATpMGRw", _ZN3sce7Toolkit2NP2V210Tournament18OneVsOneTournamentC2Ev) +STUB("RJz0iQpTa8M", png_set_background) +STUB("RKBVe9htEYY", mono_trace_set_log_handler) +STUB( + "RKFw97bU2cM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEE7add_refEv) +STUB( + "RKM1almchTo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEC2EPS8_) +STUB( + "RKPWVG-7u08", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("RKT0ePJg8Mg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEED2Ev) +STUB( + "RKW7eewWEJA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("RKar8juAzLM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE5beginEv) +STUB( + "RKcockUv5S0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEplEm) +STUB( + "RKivP6t+GfE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE5beginEv) +STUB("RKlOnSYZlt4", + _ZN7WebCore14FileIconLoader10iconLoadedEON3WTF6RefPtrINS_4IconENS1_13DumbPtrTraitsIS3_EEEE) +STUB( + "RKlnO4eFcjg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE8copyFromERKS9_) +STUB( + "RKp6WlbftnM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEptEv) +STUB("RKsafVZYCzQ", _ZN7WebCore8Document24createElementForBindingsERKN3WTF12AtomicStringE) +STUB("RKvygdQzGaY", _ZTIPKh) +STUB( + "RKzJJrLxGjE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEeqERKS9_) +STUB("RL2cAQgyXR8", sceFontGraphicsBeginFrame) +STUB("RL3x4gc1iT0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEE7get_refEv) +STUB( + "RL6kTr3RQ1E", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Runtime12RemoteObject4TypeEEESt8optionalIT_ERKN3WTF6StringE) +STUB("RLN3gRlXJLE", sceAcmBatchWait) +STUB("RLSQ14JhNhQ", JSGlobalObjectInspectorControllerDispatchMessageFromFrontend) +STUB("RLX+9a49tZU", WKBundlePageStopLoading) +STUB("RLX3bxGjrCQ", _ZN7bmalloc16isActiveHeapKindENS_8HeapKindE) +STUB("RLXAhRHJT04", GetCapabilities) +STUB("RLdcWoBjmT4", _Getpwctrtab) +STUB("RLf56F-WjKQ", sceUsbdKernelDriverActive) +STUB( + "RLfWNTdNIeY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEppEi) +STUB("RLhKBOoNyXY", sceWebBrowserDialogSetZoom) +STUB( + "RLkJv5xvMqk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEptEv) +STUB("RLrOsXrQe58", _ZN7WebCore18PlatformTimeRangesdlEPv) +STUB( + "RLyFL+6zRY8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("RM1Xb5Hcq4w", sceShellCoreUtilGetHidConfigNum) +STUB("RM21Fgm0ZvQ", FTA_Remove_Module_type42) +STUB("RM2ubi9qmu8", _ZN4Manx13WorkQueueImpl4initEv) +STUB( + "RM30eVp5IL8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEdeEv) +STUB( + "RM35a8uFre4", + _ZN3sce2Np9CppWebApi12Leaderboards2V129RecordScoreRequestBodyFactory6createEPNS1_6Common10LibContextElPNS5_12IntrusivePtrINS3_22RecordScoreRequestBodyEEE) +STUB("RM8EBKBbOFo", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13SessionMemberEE7addressERS3_) +STUB("RMDMvfUBN9I", _ZN3JSC22getUint8ArrayClassInfoEv) +STUB("RME+hkDnfiE", days) +STUB( + "RMJ9Bxq7Zvo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEED1Ev) +STUB( + "RMJOIcNoxrY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "RMQBiYYmoDg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "RMUFi56zx5s", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEneERKS9_) +STUB( + "RMaBJ-VDB2w", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEdeEv) +STUB( + "RMcwsFqcuXU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEC1Ev) +STUB( + "RMg2pbJekpg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEEptEv) +STUB("RMo7j0iTPfA", bcopy) +STUB( + "RMp1u7MXPgg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEEC2Ev) +STUB( + "RMq9q6ndxt0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEC1ERKS7_) +STUB("RMsqWTCmC7Y", + _ZN3JSC16InternalFunction14finishCreationERNS_2VMERKN3WTF6StringENS0_16NameAdditionModeE) +STUB( + "RMtQC0TMcIo", + _ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead20setInvitationInvalidERKb) +STUB("RMtznKnDOE0", mono_aot_Sce_Vsh_Lxunbox_trampolines) +STUB("RMv7LG+0dtU", _ZN7WebCore13AXObjectCache23canUseSecondaryAXThreadEv) +STUB("RN02UVCL9kU", sceUsbStorageClearFakeWriteProtection) +STUB( + "RN5WefhnX2I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("RN73hQUeNAc", _ZN3sce7Toolkit2NP2V28Commerce13CategoryLabelC1Ev) +STUB("RNAdd6DpntM", _ZN7WebCore16MIMETypeRegistry24isSupportedMediaMIMETypeERKN3WTF6StringE) +STUB( + "RNCvDyDOkkU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE3endEv) +STUB("RNFFmk6vm9o", _ZN7WebCore11JSDOMObjectC2EPN3JSC9StructureERNS1_14JSGlobalObjectE) +STUB("RNJz9ZaG11s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEaSERKS7_) +STUB( + "RNNkz44odFg", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12string2IsSetEv) +STUB( + "RNP2+PAVaZY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEmmEi) +STUB("RNPAItiMLIg", sceGnmDebugReset) +STUB( + "RNRWt4dBN4Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEplEm) +STUB("RNSsrxbVLSw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEmmEi) +STUB("RNT4niRc3wM", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicketC2ERS5_) +STUB( + "RNXyv5L46NM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEE11get_deleterEv) +STUB( + "RNfGmXKjliE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEppEv) +STUB("RNmYVYlZvv8", _ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2Em) +STUB("RNocx9CTnZY", __start__Zdynsym) +STUB("RNqLyINmGek", WKApplicationCacheManagerDeleteEntriesForOrigin) +STUB("RNr2kL13DVc", _ZN7WebCore13JSCSSRuleList9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("RNvD-cLT-y4", _ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession9getMemberEv) +STUB("RNvwFCVxg9U", mono_aot_Sce_Vsh_Passcodeplt) +STUB("RNzbF3jJ5jQ", ucnv_MBCSGetFilteredUnicodeSetForUnicode_67) +STUB("RO-MRURI76g", sceCesMbcsStrToUtf16Str) +STUB("RO-dsNEt4wk", _ZN7WebCore12ChromeClient26adjustLayerFlushThrottlingEj) +STUB("RO4bVWqJOcs", + _ZN7WebCore13GraphicsLayer16unparentAndClearERN3WTF6RefPtrIS0_NS1_13DumbPtrTraitsIS0_EEEE) +STUB("RO4gZEeNHgw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEC2ERS7_) +STUB("RO5WLOgWmkI", __asan_stack_malloc_5) +STUB( + "RODAb3WMxLY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEED2Ev) +STUB( + "ROIFnyBftG8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEEC1ERSA_) +STUB("ROILLZdYZPc", setregid) +STUB("ROIWYG+wkvg", s14) +STUB("RONWit6P118", _ZN3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead14unsetAccountIdEv) +STUB("ROOoy-+hydE", _ZN3sce7Toolkit2NP7RequestC2Ev) +STUB("RORo385pDeI", + _ZN7WebCore22EmptyFrameLoaderClient31interruptedForPolicyChangeErrorERKNS_15ResourceRequestE) +STUB("ROZ19SGsu0g", WKContextGetMemoryCacheDisabled) +STUB( + "RObzDeh5U2s", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "ROdn9Xj-wzM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEED2Ev) +STUB("ROhUj9dFD6Q", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12RoomPingTimeEE12deepCopyFromERS7_) +STUB("ROmH4NlodXE", _ZN3JSC22EdenGCActivityCallback12lastGCLengthERNS_4HeapE) +STUB("ROw6faazl58", uncompress) +STUB( + "ROxsZk+7ijA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEppEi) +STUB("ROzT8qmQcZU", JVM_LoadClass0) +STUB("RP-uCQo2rpo", + _ZN3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreateC2EPNS1_6Common10LibContextE) +STUB("RP1jn3FMAsU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEE7add_refEv) +STUB("RP5cXUjm48U", sceSlimglCompositorCreateIndirectRenderTarget) +STUB("RP7ijkGGx50", _ZNSt13basic_istreamIwSt11char_traitsIwEED1Ev) +STUB("RP8Vs1FD1w4", sceVnaSetVoiceDataCollectionSettingsAsync) +STUB("RP9ImTNDfP8", sceKernelIccSetCpuInfoBit) +STUB("RP9i-bN+790", _ZN9Inspector31BrowserBackendDispatcherHandlerD2Ev) +STUB("RPAHEYSOt1s", sceKernelWriteRemapIntoPrtCommand) +STUB("RPBPgmMvPZw", _ZN12video_parser17cVideoOperatorM4vD2Ev) +STUB("RPCAhx-aabE", sceAmprCommandBufferGetBufferBaseAddress) +STUB("RPCuYciZiwQ", + _ZNK7WebCore6Chrome12createWindowERNS_5FrameERKNS_14WindowFeaturesERKNS_16NavigationActionE) +STUB("RPK9c7LWhWA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEEC1ERS7_) +STUB("RPLKRR7vgYE", _ZN3WTF13MetaAllocator17addFreshFreeSpaceEPvm) +STUB("RPSIah8Ojvc", delegate_virtual_invoke_imt_28_p) +STUB("RPVTcq8iqTg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed14PlayedWithFeedEEC1Ev) +STUB( + "RPWgOEcmTX4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEEptEv) +STUB( + "RPXqGAn4VM0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEEcvbEv) +STUB( + "RPkuwSW44SI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("RPlLK+yvEAI", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification15BlocklistUpdateEE3setEv) +STUB( + "RPpsQf9bm8g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEC2EPS8_) +STUB( + "RPqHgpKp2BQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemProperties13isInitializedEv) +STUB( + "RPtuuEd2sAE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEED2Ev) +STUB( + "RPuoEzaK+B8", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer17unsetcontainerIdsEv) +STUB( + "RPuvN0hHu+o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEE11release_refEv) +STUB("RPv5L-o5qRQ", _ZN3sce2np13RingBufMemory4ctorEv) +STUB("RPydv-Jr1bc", sceImeOpen) +STUB("RQ0CG53TYao", _ZNK3JSC11ArrayBuffer5sliceEdd) +STUB("RQ3j4p7RBcw", WKBundlePageCreateScaledSnapshotInDocumentCoordinates) +STUB("RQ4bTUpHI9I", mono_profiler_install_jit_end) +STUB( + "RQ5qowgAQQo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE5beginEv) +STUB("RQ9gZWKQwH0", sceSaveDataDeleteTitle) +STUB( + "RQD5VVIt0Bw", + _ZN4IPMI6Server12EventHandler20onSyncMethodDispatchEPNS_7SessionEjPKNS_8DataInfoEjPNS_10BufferInfoEj) +STUB("RQEDMyxvLrI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEEC1EPS6_PNS2_10LibContextE) +STUB("RQFEW7ZfQJc", sceOpusDecCancel) +STUB("RQGUZHWVCLY", _ZN3WTF22CrossThreadTaskHandlerD1Ev) +STUB("RQMwF11AZKk", _ZN3JSC17JSInternalPromise6s_infoE) +STUB("RQOqDbk3bSU", sceSaveDataCheckBackupData) +STUB("RQQFg+c3lAg", + _ZNK3sce2Np9CppWebApi14SessionManager2V113ErrorResponse6toJsonERNS_4Json5ValueEb) +STUB("RQXDaYt-mDc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE4sizeEv) +STUB("RQXLbdT2lc4", logf) +STUB( + "RQYjkphShfo", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB( + "RQe4QtARX94", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "RQfqM1BZuoc", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "RQfy2Vvlyyw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEED1Ev) +STUB("RQgG57FfUJ4", _ZN7WebCore24FrameDestructionObserverC1EPNS_5FrameE) +STUB("RQpBshscViM", _ZNK3sce4Json5Value8toStringERSbIcSt11char_traitsIcENS0_8StlAllocIcEEE) +STUB("RQqcnQJszJI", WKPreferencesSetUniversalAccessFromFileURLsAllowed) +STUB("RQqqsn+NX-Q", mono_arch_enable_ssp) +STUB("RQrwzkCWZmE", _ZN7WebCore33createEmptyFrameNetworkingContextEv) +STUB("RQsI3W-p47I", _ZN3sce7Toolkit2NP2V210Tournament12MatchDetailsD1Ev) +STUB("RQtEqN965OU", _ZN12video_parser10cVideoPath14IsValidContentEv) +STUB("RQy7YuNRZaU", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersaSERS5_) +STUB( + "RQykBnvDDp4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEEaSERKSA_) +STUB("RR1fhpBoZ7w", u_strncpy) +STUB( + "RR4GzQnE2XU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEC1EPNS2_10LibContextE) +STUB("RR4novUEENY", scePadSetLightBar) +STUB("RRGLE10-qZM", _ZThn24_N7WebCore14XMLHttpRequestD0Ev) +STUB( + "RRJH3Fu-5qY", + _ZN7WebCore31forwardFunctionCallToBackingMapERN3JSC14JSGlobalObjectERNS0_9CallFrameERNS0_8JSObjectERKNS0_10IdentifierE) +STUB("RRKFcKQ1Ka4", sceUsbdControlTransfer) +STUB( + "RRKIllthm9c", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsersC2ERS5_) +STUB( + "RRNbLcgFBiA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEE7get_refEv) +STUB("RRQ6g5xn9MM", _ZN3sce7Toolkit2NP2V24Core18CustomResponseDataaSERKS4_) +STUB( + "RRSFBsBN3uU", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi44ParameterToPatchGameSessionsSearchAttributes12setsessionIdEPKc) +STUB("RRTxkkZOR88", _ZN7WebCore18TextureMapperLayernwEm10NotNullTagPv) +STUB("RRYOPpBTMmg", WKBundlePageAddUserStyleSheet) +STUB("RRcu0f3LC0c", _ZN3NTF17URLRequestMessageD1Ev) +STUB( + "RRiKyCwbbFA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE21intrusive_ptr_sub_refEPS9_) +STUB("RRnSj8h8VR4", pthread_rwlock_reltimedwrlock_np) +STUB("RRv+D+Yx84M", utrans_setFilter_67) +STUB( + "RRzBVSiYMlk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE3endEv) +STUB( + "RS+PvzV148E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEmmEi) +STUB("RS2NoxeEr38", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEEC1ERS7_) +STUB("RS4EviLDC8E", ucol_close_59) +STUB( + "RS4OaWn3Yaw", + _ZN7WebCore6JSNodeC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_4NodeENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "RS7LNx7nFL8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEEaSERSA_) +STUB( + "RS9pGAFLnto", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEE11get_deleterEv) +STUB("RSAX7ffj4kM", _ZN7WebCore17HTMLSelectElement8setValueERKN3WTF6StringE) +STUB( + "RSBBWtNzWeQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEE11get_deleterEv) +STUB( + "RSDkS3yxTAE", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V135FrequentlyMutedInGameMetricsFactory6createEPNS1_6Common10LibContextEiiiPNS5_12IntrusivePtrINS3_28FrequentlyMutedInGameMetricsEEE) +STUB("RSEWnJoasFU", _ZN7WebCore15HTTPHeaderFieldC1EON3WTF6StringES3_) +STUB("RSEX1eS1tCI", sceCompositorIsReady4K) +STUB("RSF02bBRXF4", delegate_virtual_invoke_imt_29) +STUB( + "RSFz80zdo2E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("RSK9MnAipBM", + _ZN3JSC15ArrayBufferViewC2EON3WTF6RefPtrINS_11ArrayBufferENS1_13DumbPtrTraitsIS3_EEEEj) +STUB( + "RSL5u2AlwVA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("RSa71yEfRqU", _ZN9Inspector33InspectorBackendDispatcherHandlerC2ERKS0_) +STUB("RSaXQ+J0c5s", TEEC_CloseSession) +STUB( + "RSfA85clWX4", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification11RefreshRoomEE19setCustomReturnCodeEi) +STUB( + "RSjv5oN3vL8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("RSmDOudNJyI", _ZNK3sce2Np9CppWebApi15Personalization2V111ErrorEntity10errorIsSetEv) +STUB( + "RSmlV84iNZI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "RSnvUYh+4ao", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEC1EPS8_) +STUB("RSnzCRbqwDU", sceNpPushIntUnregisterNotificationPacketCallback) +STUB("RSqDY6nRRjE", _ZN3sce2Np9CppWebApi7Matches2V122RequestPlayerStatisticD1Ev) +STUB( + "RSy-GlGQTqM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE8pushBackERKS8_) +STUB("RSyVVS5IdsM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEEC2EPNS2_10LibContextE) +STUB("RSypjIODiB4", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15PlayedWithStoryEEeqERKS4_) +STUB("RSysh8xErdY", unorm2_getNFCInstance_59) +STUB( + "RT+HTl2ebBk", + _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody16getSwapSupportedEv) +STUB("RT1YgWGxz-M", delegate_invoke_impl_target_5) +STUB("RT1smDIu+qo", ScePsmMonoThreadSuspendAllOtherThreads) +STUB("RT2It1wxQxg", _ZNSt9_FacetptrISt7codecvtIcc9_MbstatetEE6_PsaveE) +STUB( + "RT5vfGR8DMc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEC2Ev) +STUB( + "RTD8XIAFqdc", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody18unsetSwapSupportedEv) +STUB("RTDOsWWqdME", sceCameraGetSaturation) +STUB("RTGFH1Kf+h8", mono_get_exception_cannot_unload_appdomain) +STUB("RTGqPMrA3kY", _ZN3sce7Toolkit2NP2V26Friend7Friends5resetEv) +STUB("RTIIzthIpKE", _ZN12video_parser17cTsFFLHndlManager8finalizeEv) +STUB("RTJWnG6CHcE", udigs) +STUB("RTRzcT0eBrY", sceOpusSilkEncCreateEx) +STUB( + "RTUqVtf7w7w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEED1Ev) +STUB( + "RTZ6lwUCIjU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE4sizeEv) +STUB("RTZW4GbFgYU", _ZN7WebCore16JSStringCallbackC2EPN3JSC8JSObjectEPNS_17JSDOMGlobalObjectE) +STUB("RTrsbjUnFNo", sceUserServiceSetPbtcSaturdayDuration) +STUB("RTxFQhlbF+U", hb_ft_face_create_cached) +STUB( + "RTzesATSziM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEC1Ev) +STUB("RU-DTe1m7eY", _ZN3sce7Toolkit2NP2V212ActivityFeed4FeedC2Ev) +STUB( + "RU1SBkCjxQE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("RU1SaHyqexQ", _ZNK7WebCore9FrameView29minStableLayoutViewportOriginEv) +STUB( + "RU4ecqampHg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEmmEv) +STUB("RU6hHrrzpfc", sceNpEntitlementAccessRequestConsumableEntitlementInfo) +STUB("RU74kek-N0c", sceGnmLogicalCuMaskToPhysicalCuMask) +STUB("RUB6zNhQUJQ", + _ZNK7WebCore24CoordinatedGraphicsLayer28shouldDirectlyCompositeImageEPNS_5ImageE) +STUB("RUDZveSfFCA", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEEaSERS7_) +STUB( + "RUOU4r8NWRU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEppEv) +STUB("RUPepd6YjLU", _ZN9Inspector24ConsoleBackendDispatcherD1Ev) +STUB( + "RUQkLQHBnr8", + _ZN7WebCore27TranslateTransformOperationC2ERKNS_6LengthES3_S3_NS_18TransformOperation13OperationTypeE) +STUB("RUSt7cNzUR8", + _ZN8meta_gen11MsvPromoter23setKeyValue_TBLAVC_SizeENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB( + "RUTwONlE0H4", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEiRNS2_10LibContextEPT_m) +STUB( + "RUW9YM1mGaE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEixEm) +STUB( + "RUZA5-5hfvg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEEptEv) +STUB( + "RUaNV3oeXyQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("RUbJ1HDWEHs", glUniform3uiv) +STUB("RUcNFPANzTQ", mono_counters_enable) +STUB("RUeQqjr2P5s", + _ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody8fromJsonERKNS_4Json5ValueE) +STUB( + "RUenQ1WZQoA", + _ZN7WebCore19JSHTMLSelectElementC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_17HTMLSelectElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB("RUfFggMqyOE", uset_closeOver_67) +STUB("RUrWdwTWZy8", scePngEncDelete) +STUB("RUrfnne6Dds", sceUserServiceSetPbtcFridayDuration) +STUB("RUtAryHv2fI", sceDepth2SaveInternalBuffers) +STUB("RUu0-UmUmhs", _ZN3JSC22EdenGCActivityCallback9deathRateEv) +STUB("RV1C775PZV4", mono_g_hash_table_size) +STUB("RV6sGVpYa-o", _ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1ERKSt8_Locinfom) +STUB("RV7X3FrWfTI", wscanf_s) +STUB( + "RVApw0Y3MCA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("RVDooP5gZ4s", _ZTSNSt6locale5facetE) +STUB("RVFeL4V1-pM", + _ZN7WebCore4Page21markAllMatchesForTextERKN3WTF6StringENS1_9OptionSetINS_14FindOptionFlagEEEbj) +STUB( + "RVG4LQkb+5c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEC2Ev) +STUB( + "RVMgObGpiPA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("RVPyiv9G6nk", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEEaSERS7_) +STUB( + "RVQd+8U+kAU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEaSERKS9_) +STUB( + "RVS7O-kwzJg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEC2ERS7_) +STUB("RVSq2tsm2yw", sceUltQueuePop) +STUB("RVTSv7erUVw", _ZN9Inspector27PerGlobalObjectWrapperWorld10getWrapperEPN3JSC14JSGlobalObjectE) +STUB("RVWtUgoif5o", sceAudioOutMasteringTerm) +STUB( + "RVamJD-3nUU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE4sizeEv) +STUB("RVcpywSWsBc", _ZN3sce7Toolkit2NP2V27Session18AvailablePlatformsC1Ev) +STUB("RVgc5xyHc8E", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEEC2ERKS7_) +STUB( + "RVj9R+ryuQE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEE11get_deleterEv) +STUB( + "RVjM2p7+9WI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEED2Ev) +STUB("RVmEia0vXMI", _sceUltConditionVariableOptParamInitialize) +STUB( + "RVrbikjPXG8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEE7add_refEv) +STUB("RVucA2K22Vw", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V18RelationEEmmEi) +STUB("RVxb0Ssa5t0", pthread_cleanup_pop) +STUB("RW-GEfpnsqg", kevent) +STUB("RW1h2gf6vfI", _ZN9Inspector22InspectorDebuggerAgent24willStepAndMayBecomeIdleEv) +STUB("RW7oeSOy2H8", _ZN3JSC2VM19deleteAllLinkedCodeENS_19DeleteAllCodeEffortE) +STUB("RW96fIbhPBA", _ZNK7WebCore27TranslateTransformOperation1xEv) +STUB( + "RWF3XanVLTg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEppEv) +STUB("RWIkTdc5wzM", _ZN7WebCore27setPresentingApplicationPIDEi) +STUB("RWIuvdevaVs", _ZNK3sce2Np9CppWebApi7Matches2V118RequestMatchPlayer12getAccountIdEv) +STUB("RWNATmy2cug", sceMatReallocBegin) +STUB("RWWT2HmVAGQ", _ZN9Inspector22PageFrontendDispatcher19frameStartedLoadingERKN3WTF6StringE) +STUB( + "RWYT78-pi+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEEC2Ev) +STUB("RWaFrTQryGs", sceVencCoreSetPicParams) +STUB("RWc9kPMyEYU", glQueryCounterEXT) +STUB( + "RWdCmFtYRTk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEC1EPS8_) +STUB("RWepqJseSKI", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities5ErrorC1EPNS1_6Common10LibContextE) +STUB("RWfjXBukpYU", _ZN3WTF6Thread6detachEv) +STUB("RWgF9AZP7ng", _ZN8meta_gen11MsvPromoter23initializeVideoProfilerEPKc) +STUB( + "RWi9HwWWZ7A", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEeqERKS9_) +STUB("RWqyr1OKuw4", logbf) +STUB("RWskKQJRN+Q", mono_aot_Sce_Vsh_Np_Pbtcunbox_trampoline_addresses) +STUB("RWvkd9im294", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS3_18CustomResponseDataEE12deepCopyFromERS6_) +STUB( + "RX+7yCES5Bk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEED2Ev) +STUB("RX-ceAYoWpc", g_DisableAutoHideStartupImage) +STUB( + "RX3ADzW1hTA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEEC1ERSA_) +STUB("RX7XCNSaL6I", sceGnmValidateGetDiagnosticInfo) +STUB( + "RX8rZOfV1JY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEC1Ev) +STUB("RXAR0qKCmwY", + _Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm13CbPerfCounterE20SceRazorGpuBroadcast) +STUB("RXJlDu0LwKc", uprv_fabs) +STUB( + "RXJmqz2Bn-g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE7popBackEv) +STUB( + "RXLZEMp1F5k", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("RXNCDw2GDEg", sceNpPartyJoin) +STUB( + "RXR9m4AAYzk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEaSERS7_) +STUB("RXRWD6iVzvI", RemotePlayIsRemotePlaying) +STUB("RXVRxJBMUP8", _ZNK7WebCore14SecurityOrigin11toRawStringEv) +STUB("RXVv5h4UZRo", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEEptEv) +STUB("RXXBl6-iimo", sceVideoRecordingInit) +STUB("RXXqi4CtF8w", pthread_cond_destroy) +STUB( + "RXahLDItHas", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEC2EPS6_PNS2_10LibContextE) +STUB("RXdPqxVnrvo", _ZN3sce2np8HttpFileC2EP16SceNpAllocatorEx) +STUB( + "RXf0lXGc8mU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEC1EPS8_) +STUB("RXfZeZ+h06Y", OCSP_response_status_str) +STUB("RXfyT5sJE2I", Java_com_sony_gemstack_io_FilePath_n_1closedir) +STUB("RXqDO8n1lJI", _ZN3IPC13ArgumentCoderIN3WTF6StringEE6decodeERNS_15ArgumentDecoderERS2_) +STUB("RXqt13UAFeY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEC1ERS7_) +STUB("RXrpV6fdQ-Q", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE4sizeEv) +STUB("RY+HIZ+rrdo", sceProfileCacheGetAvatar) +STUB("RY0c7tYVBiw", sceVoiceQoSInitHQ) +STUB( + "RY8N2FqKkMc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEdeEv) +STUB( + "RY8W7MSfWt4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEptEv) +STUB("RY8mQlhg7mI", __cxa_current_primary_exception) +STUB("RYBw8PFGsuo", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V18SortModeEEC2EPS6_) +STUB("RYDvQkQCgJc", _ZN7WebCore9JSElement9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("RYFSl3aT2Pk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEE7add_refEv) +STUB( + "RYJpr9VvmXM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEC2EPKS8_) +STUB( + "RYSeg640sQM", + _ZN3sce2Np9CppWebApi14ConnectAccount2V216PartnerTokensApi26ParameterToGetPartnerToken24setdeepTokenVerificationEb) +STUB("RYTHR81Y-Mc", _ZNKSt7codecvtIDsc9_MbstatetE10do_unshiftERS0_PcS3_RS3_) +STUB( + "RYVcz85lDBA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE5clearEv) +STUB( + "RYcvHzKntE4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB("RYkJxZhFgZc", Java_java_util_zip_Adler32_updateBytes) +STUB("RYklApR9Iy4", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationProperties12setGoodSportERKi) +STUB("RYlvfQvnOzo", _ZTISt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE) +STUB("RYoCjxaRB-4", rgctx_fetch_trampoline_mrgctx_100) +STUB("RYoluOn04RM", _ZNK3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap12getAccountIdEv) +STUB( + "RYvUxdsaTKs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEC1EPKS8_) +STUB("RYwqCx0hU5c", _Tls_setup__Wctrans) +STUB("RYyp08kanVk", _ZN18MmsFileUpdaterBaseC2Ev) +STUB("RZ-5yg0821M", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEE11release_refEv) +STUB( + "RZ-JbGr1bXU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEED2Ev) +STUB( + "RZ-Mfs82FkI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEE11release_refEv) +STUB("RZ2K0KA6TvM", _ZN3sce7Toolkit2NP2V28Matching5RoomsD2Ev) +STUB( + "RZ4IP2Dlm8M", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEeqERKS9_) +STUB("RZ5glqNEI6g", _ZN9Inspector27AnimationFrontendDispatcherC2ERNS_14FrontendRouterE) +STUB("RZ8ra69Qkxw", sceCesUtf8StrToMbcsStr) +STUB("RZA5RZawY04", telldir) +STUB("RZG1q+gKmjY", _ZN3sce2Np9CppWebApi12Leaderboards2V123RecordScoreResponseBodyD1Ev) +STUB("RZHQT5QnVPQ", _ZN9Inspector27AnimationFrontendDispatcher16trackingCompleteEd) +STUB("RZHqKvX5z+E", _ZNK3WTF3URL11hostAndPortEv) +STUB( + "RZNvthVHWis", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEE11get_deleterEv) +STUB( + "RZP+Z-QJoFU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEED2Ev) +STUB("RZQ3FqvWEnM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEEppEi) +STUB("RZQAxhch46s", _ZN7WebCore14ResourceLoader6cancelERKNS_13ResourceErrorE) +STUB("RZQxMzPVW-E", _ZN3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead12setAccountIdERKm) +STUB("RZWbY4WHAwA", sceKernelStreamWriteRead) +STUB( + "RZYvTMuqmhw", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData22setxPsnAtomicOperationENS5_19XPsnAtomicOperationE) +STUB("RZZPzU921OY", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_19GetGameDataResponseEE3getEv) +STUB( + "RZcseJ3THfY", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer10initializeEPNS1_6Common10LibContextE) +STUB("RZdBACKeudU", jpeg_CreateDecompress) +STUB( + "RZgHPcZHQzg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEppEv) +STUB("RZjC-lS3nDA", mono_aot_Sce_Vsh_RequestShareScreenjit_code_end) +STUB("RZo2LO26+L0", _ZN3sce7Toolkit2NP2V28Presence7Request19LocalizedGameStatusC2Ev) +STUB("RZriUuCXgVM", _Z26Camera_GetConfigTypeNativeiPi) +STUB("RZsx7hJC89c", + _ZN9Inspector25NetworkFrontendDispatcher19webSocketFrameErrorERKN3WTF6StringEdS4_) +STUB("Ra0B8LgO4Pc", getSendEventQueueByProtocolNumber) +STUB("Ra0aX-0qGUI", ucol_getVersion_67) +STUB("Ra1fBgM+2Tk", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE3endEv) +STUB( + "Ra8zuotWvjE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE5beginEv) +STUB( + "RaNKprkS9EM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("RaS1Ihg3COs", _ZN3sce7Toolkit2NP2V27Session7Request4Join16HIGHEST_PRIORITYE) +STUB( + "RaSNM8Z5lW0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE5abortEv) +STUB("Raa-kQ7942Q", _ZNK7WebCore7Element14hasAttributeNSERKN3WTF10AtomStringES4_) +STUB( + "Rac1b+0vkR8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "RaeEIg9Sdww", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEE3getEv) +STUB("Raf7ROy36d8", _ZNK7WebCore9MediaList4itemEj) +STUB("Ragv7gx+39w", _ZN12video_parser18cMp4FFLHndlManager14getFF4MtsmHndlEv) +STUB( + "RalOJcOXJJo", + _ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8_GetmfldERS3_S5_bRSt8ios_basePw) +STUB("RalQF53QfXQ", + _ZN7WebCore8toStringERKN3WTF6VectorINS_11ProxyServerELm0ENS0_15CrashOnOverflowELm16EEE) +STUB( + "RamA7MHC9Ac", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEC1EPS7_PNS2_10LibContextE) +STUB("RaoIsjLEbgQ", _ZN7WebCore10FileSystem12fileMetadataERKN3WTF6StringE) +STUB("RapLtFkmE5I", mono_profiler_install_method_invoke) +STUB("RaqOVaWNQJc", scePerfPmcSelectEventProc) +STUB( + "RaqgmIhWALA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEppEv) +STUB("RaqxZIf6DvE", sceMouseOpen) +STUB( + "RatFQeKvheU", + _ZN7WebCore9JSElementC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_7ElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "RateiOgPhCY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE8copyFromERKS7_) +STUB("Rau9rXhtDUg", sceBgftServiceIntDebugPlayGoSnapshotByTitleId) +STUB("RawxplHcKrQ", udata_readInt32) +STUB( + "Razh14V35LM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEED2Ev) +STUB( + "Rb0+LGpUObM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEED2Ev) +STUB("Rb4Sk62o+1Q", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEEptEv) +STUB( + "Rb4oPfdBAFo", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V18Variable18setLastUpdatedUserERKNS1_6Common12IntrusivePtrINS3_15LastUpdatedUserEEE) +STUB("Rb6ziJKvCCQ", umask) +STUB( + "RbGsR3uLRKg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEC1ERS7_) +STUB("RbLbuKv8zho", sceAjmInstanceDestroy) +STUB( + "RbTF3pjYST4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEE7get_refEv) +STUB("RbUAP7aYvHE", WKPreferencesGetFontSmoothingLevel) +STUB( + "Rbdmek7BV5M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEEC1Ev) +STUB("Rbf6dJaQtbc", _ZNK12video_parser5vpcom8datetime8DateTime6FormatEPwmPKwb) +STUB( + "RbgsyV0rq3w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEC1EPKS8_) +STUB("Rbh94W0TnlI", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_28AdditionalSessionInformationEED2Ev) +STUB("RbkdMpk6elY", _Atdata) +STUB( + "Rbknq+kemEg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE8capacityEv) +STUB("RbrWM+2IhGY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEE11get_deleterEv) +STUB("RbuBuPUm5-0", _ZN7WebCore18pluginScriptObjectEPN3JSC14JSGlobalObjectEPNS_13JSHTMLElementE) +STUB("Rbvt+5Y2iEw", sceNetNtohs) +STUB("RbvteD35X-8", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product8getLabelEv) +STUB( + "RbxUhqWCoo0", + _ZN9Inspector31ScriptProfilerBackendDispatcher12stopTrackingElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("RbzWN8X21hY", _ZTVSt11range_error) +STUB("Rc0uh3lIoXQ", sceNpSnsFacebookDialogGetStatus) +STUB( + "Rc5xbDtZY90", + _ZN12video_parser13cVideoMetaVWG11getMetadataENS_12VP_META_TYPEENS_9VP_LANG_eENS_15VP_SEARCH_OPT_eEjPNS_12VpMetadata_tE) +STUB( + "Rc8hTBHbNmY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEEC2Ev) +STUB( + "RcAbi1u-Ato", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "RcBTKqKPrEM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "RcDwwXajsLE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEEptEv) +STUB("RcFwKLSom0s", uidna_toUnicode_67) +STUB("RcGZnakPiOk", sceNpSessionSignalingGetConnectionFromNetAddress) +STUB( + "RcJNizR0K-U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEaSERS7_) +STUB( + "RcX61OAYOKs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE7reserveEi) +STUB("RcYqTvQUDOc", _ZN12Mp4Retriever9ExtractI2EPh) +STUB("Rcdjc4l2uzc", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110PlayerTypeEEmmEi) +STUB( + "RchI2GKhhHI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEC1ERKS7_) +STUB("RcjGUqvRXZI", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi20ParameterToJoinMatch10setmatchIdEPKc) +STUB( + "Rclp1+7C+rQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEC1Ev) +STUB( + "RcqFX7l2A34", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEED1Ev) +STUB( + "RcqNI2+QvQM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEC2ERS7_) +STUB("Rcqpep1AOTM", _ZN9Inspector30CanvasBackendDispatcherHandlerD0Ev) +STUB( + "RcqsPn2xXI4", + _ZN3sce2Np9CppWebApi14SessionManager2V135RequestJoinGameSessionPlayerFactory6createEPNS1_6Common10LibContextEPKcS9_PNS5_12IntrusivePtrINS3_28RequestJoinGameSessionPlayerEEE) +STUB( + "RcsrDaGKrw8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEEC2Ev) +STUB( + "Rcudvqvuayg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEptEv) +STUB( + "Rcx2TMA68QU", + _ZN3sce2Np9CppWebApi14ConnectAccount2V215PSNErrorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_8PSNErrorEEE) +STUB("Rcz4V01xRBo", WKErrorCopyFailingURL) +STUB("Rd+aSW49Ajs", _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetail7hasviewEv) +STUB( + "Rd1qi4KqWgc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEcvbEv) +STUB("Rd27dqUFZV8", sceNpScoreGetRankingByNpIdAsync) +STUB("Rd2FBOQE094", sceNpTrophySystemBuildNetTrophyIconUri) +STUB( + "Rd8r1CYRUMU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEC2EPNS2_10LibContextE) +STUB("RdAvEmks-ZE", sceUserServiceSetGlsBroadcastUiLayout) +STUB("RdGRa17Q91g", _ZN7WebCore26ISOProtectionSchemeInfoBoxD0Ev) +STUB("RdHTTOCg41s", _ZNK15AbstractStorage12LocalContent13GetCapabilityEv) +STUB("RdHocm64Qfs", scePlayReadyReaderCommit) +STUB("RdOIqyIcMdY", _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody13unsetLocationEv) +STUB("RdP7GBs5Bhc", _ZN3JSC20TypedArrayControllerD1Ev) +STUB("RdRtBInu8gw", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi24ParameterToReportResultsC1Ev) +STUB( + "RdRtnAQVrqA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEE7get_refEv) +STUB( + "RdXIFxzNXAg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEE7add_refEv) +STUB( + "RdYWhLssfrc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEE5resetEPS9_) +STUB("RdYwz1mA4vw", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getBoolean1Ev) +STUB("RdZ+vytFX2c", __asan_on_error) +STUB( + "RdZcQytO3rI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("Rdbu24h2d0U", GCC_except_table530) +STUB("RdoI5GFNv5I", ucurr_register) +STUB("RdpmnHZ3Q9M", sceUserServiceGetDiscPlayerFlag) +STUB( + "RdpnvwEuFbA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEC1EPS8_) +STUB("RdrrejUMiJ0", FT_Done_Glyph) +STUB("RdsFVsgSpZY", sceNpAuthGetIdTokenV3) +STUB( + "RdyL2-f-S84", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEC1EPS8_) +STUB( + "Re+2vu1rsWQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEE7get_refEv) +STUB( + "Re0EOopQq2M", + _ZN9Inspector24RuntimeBackendDispatcher36getRuntimeTypesForVariablesAtOffsetsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("Re3Lpk8mwEo", _ZN10__cxxabiv129__pointer_to_member_type_infoD2Ev) +STUB( + "Re4+t35Osjw", + _ZN3sce2Np9CppWebApi14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyC2EPNS1_6Common10LibContextE) +STUB("Re5FGTBVpq8", __libunwind_Unwind_SetGR) +STUB( + "Re5Yrr1l3MQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEC1EPS8_) +STUB("Re8bzYza4+o", _ZN3sce2np9HttpTransC1EP14SceNpAllocator) +STUB("ReAKpCiSdJg", _ZN7WebCore10TreeWalker10firstChildEv) +STUB( + "ReB56ZBCrlI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEED1Ev) +STUB( + "ReDz5Ug3eAU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("ReG33TVjkmg", ubidi_openSized_67) +STUB( + "ReHaWgTSwrg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE21intrusive_ptr_sub_refEPS7_) +STUB( + "ReJOJwhpsLU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEED1Ev) +STUB("ReK9U6EUWuU", _ZNSt8_LocinfoC2ERKSs) +STUB( + "ReOTBNjACr0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE4sizeEv) +STUB("RePA3bDBJqo", erff) +STUB("ReQKurupflQ", hb_font_funcs_set_glyph_extents_func) +STUB( + "ReVMj0UAyfQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEEC1Ev) +STUB( + "ReWqrajsuK0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE3endEv) +STUB("ReavgQg6KU8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEEaSERS6_) +STUB( + "RelZbr0g0t0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEEdeEv) +STUB("RenI1lL1WFk", getsockname) +STUB("RenWwlxG9Tw", _ZN15AbstractStorage7ContentD0Ev) +STUB( + "RerM6RNv3WQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE3endEv) +STUB("RevDxuwYd4o", _ZN3WTF10StringImpl6createEPKhj) +STUB("Rf0XMVR7xPw", sceRemoteplaySetProhibition) +STUB( + "Rf16J+Gba5c", + _ZN7WebCore16NavigationActionC2ERNS_8DocumentERKNS_15ResourceRequestENS_20InitiatedByMainFrameENS_14NavigationTypeENS_28ShouldOpenExternalURLsPolicyEPNS_5EventERKN3WTF12AtomicStringE) +STUB("Rf1XDVI64Ck", + _ZN7WebCore20ScrollingCoordinator45setForceSynchronousScrollLayerPositionUpdatesEb) +STUB("Rf7JlmeY7AQ", mono_aot_Sce_Vsh_CloudClientunbox_trampolines_end) +STUB("RfCbjpui-2w", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getString10Ev) +STUB("RfDI9yBTxRM", _ZN7WebCore23ISOSchemeInformationBoxC2Ev) +STUB("RfEoZpq-3rU", _ZNK7WebCore17FrameLoaderClient11hasHTMLViewEv) +STUB("RfYAH7aupGY", _ZN7WebCore15AffineTransform15scaleNonUniformEdd) +STUB("RfZG5ulSg4g", _ZN23sceMetadataReaderWriter10jpegParser20jpegParserInitializeEv) +STUB("RfZauzDnpDk", _ZN12video_parser13cVideoMetaMP415setVideoContentEPNS_13iVideoContentE) +STUB( + "Rfe2Q530fd8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEC2EPS8_) +STUB("RfiA17kV+xs", sceNpUtilGetNpLanguageCodeStr) +STUB("RfjBlXjaZeo", JVM_RawMonitorCreate) +STUB( + "Rfm9T4Fhns0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE4sizeEv) +STUB("RfokKHMuOsE", sceNpAsmDeleteRequest) +STUB("RfpPDUaxVJM", _ZTVSt10moneypunctIwLb0EE) +STUB( + "RfxWyFo0HiU", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V138SetMultiVariablesRequestBody_variables11slotIdIsSetEv) +STUB("RfxdYHL5ZFM", _ZN3sce7Toolkit2NP15AppSTLAllocatorI13SceNpOnlineIdED2Ev) +STUB( + "Rfy85cjW584", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEC2Ev) +STUB( + "Rg+8JrVftJg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEEC2ERSA_) +STUB("Rg4-YsNA4kc", unumf_resultNextFieldPosition_67) +STUB("Rg6U0jZ1qqg", _ZNK7WebCore15VisiblePosition45lineDirectionPointForBlockDirectionNavigationEv) +STUB("Rg7MLXyCmtU", _ZNK7WebCore9SampleMap5emptyEv) +STUB( + "Rg8S0LEDYiY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE5beginEv) +STUB("Rg9KCjkElx4", _ZNK3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse17getPreviousOffsetEv) +STUB("RgBULe405TE", _ZN3sce7Toolkit2NP2V29Challenge9ChallengeC1Ev) +STUB("RgGW4f0ox1g", _ZN3sce2np5Mutex7DestroyEv) +STUB("RgJjmluR+QA", _ZTSSo) +STUB("RgKmNey20Ns", sceUltReaderWriterLockLockWrite) +STUB("RgMwHBEqK0o", _ZN7WebCore7JSRangeD1Ev) +STUB("RgOf8lbDWjE", JVM_GetStackTraceDepth) +STUB( + "RgOloU5fT14", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEC2EPKS8_) +STUB("RgPLWdJJGBM", _ZN7WebCore11DisplayList8ClipPathD1Ev) +STUB( + "RgU+E9bx-1w", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEdeEv) +STUB( + "RgUM03vf9zI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEE5resetEPS9_) +STUB( + "RgZweYMvEJY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEC1Ev) +STUB("RgfCYkjW7As", sceNpJsonParseBuf) +STUB("RghnEC6-6KE", _ZN15AbstractStorage14TwitterServiceD0Ev) +STUB("Rgi0wr6wpDI", scePsmKitFontConfigGetFontPath) +STUB("RgknKSTfDwg", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_6TicketEE3getEv) +STUB("RgminlbfK8E", sceEsvmEngineMediaKeySessionSetEventHandler) +STUB("RguMBf+bBTc", psl_suffix_count) +STUB( + "Rgxq+qmoFR4", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEED2Ev) +STUB( + "RgzoX0sv32Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEC2EPS6_PNS2_10LibContextE) +STUB("Rh1fNhr7hwk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEEC2ERSA_) +STUB( + "RhEPsjBlQ74", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("RhG8+YJU75Q", _ZN7WebCore15XPathExpressionD2Ev) +STUB( + "RhKON2shjYg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEEC2ERS9_) +STUB("RhL2wBT9qSA", delegate_virtual_invoke_8) +STUB("RhbZL2-rIZg", _ZN3NTF6ThreadC2Ev) +STUB("RhjnQ70obPw", sceNpManagerIntGetGameTicket) +STUB("RhnILZh8cXw", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessionsC1ERS5_) +STUB("Rhp7q0HZhqw", mono_aot_Sce_PlayStation_PUIPlatformunwind_info) +STUB("RhseoLtPKqw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEEmmEi) +STUB( + "RhyIzHcU0gg", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfile16setincludeFieldsEPKc) +STUB( + "Ri6YWJclZXE", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEiRNS2_10LibContextEPT_m) +STUB( + "Ri77akUPMvw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEE11release_refEv) +STUB( + "RiA-QbWEAbo", + _ZN3sce2Np9CppWebApi11Matchmaking2V128PlayerForTicketCreateFactory6createEPNS1_6Common10LibContextERKmNS3_8PlatformEPNS5_12IntrusivePtrINS3_21PlayerForTicketCreateEEE) +STUB("RiGtVtTErVk", _ZN3sce7Toolkit2NP2V210Tournament16RegisteredRosterC2ERKS4_) +STUB("RiLSQiJPWls", ucasemap_utf8ToLower_67) +STUB("RiM5eDPbnXE", WKContextConfigurationSetIndexedDBDatabaseDirectory) +STUB("RiMz3Wlmt8Q", + _ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody16rulesetNameIsSetEv) +STUB("RiR59NzRUDE", _ZTVN7WebCore11DisplayList22ApplyDeviceScaleFactorE) +STUB("RiVjquXrI-E", mono_aot_System_Xml_Serializationunbox_trampoline_addresses) +STUB("Ria88uULvfA", rgctx_fetch_trampoline_mrgctx_106) +STUB( + "Ribx14NdYW8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEaSERS7_) +STUB("RidOPwWxJes", _ZN7WebCore9DOMWindow4openERS0_S1_RKN3WTF6StringERKNS2_10AtomStringES5_) +STUB( + "Rif74LWfcXI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("Rih7HnIM3JQ", _ZN4IPMI6Client6Config24estimateClientMemorySizeEv) +STUB( + "RiiOt3DGjyU", + _ZN9Inspector15ScriptArguments6createERN3JSC9ExecStateEON3WTF6VectorINS1_6StrongINS1_7UnknownEEELm0ENS4_15CrashOnOverflowELm16EEE) +STUB( + "RiroA2KiNys", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("Rix4c1-MsHE", mono_aot_System_Netunbox_trampoline_addresses) +STUB( + "Rj1cdK6XqPY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE8pushBackERKS8_) +STUB( + "Rj3C1c2YSpo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEE5resetEPS9_) +STUB( + "Rj4ZReyQUd4", + _ZN3sce2Np9CppWebApi14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBody10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_26RequestPlayerSessionPlayerEEEEE) +STUB("Rj4qy44yYUw", __negdi2) +STUB( + "Rj5+FLclwHQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEC2Ev) +STUB("RjBsrMJgrjk", u_islower_67) +STUB("RjCz7r4tq1o", _ZN7WebCorelsERN3WTF10TextStreamERKNS_15AffineTransformE) +STUB("RjG7Uj67c8w", _ZN3sce7Toolkit2NP2V27Session7Request6Update15LOWEST_PRIORITYE) +STUB("RjGUg+dHHXM", _ZN3JSC2VM33unlinkedProgramCodeBlockSpaceSlowEv) +STUB("RjGdYjKDVA4", _ZN7WebCore9HTMLNames27onwebkitfullscreenerrorAttrE) +STUB("RjJanSh8LHo", _ZN25MmsFileUpdaterFsOperation12writeTmpFileEPKvm) +STUB( + "RjJopNcMfFc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEptEv) +STUB( + "RjLhZsKMoWg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE6resizeEj) +STUB("RjMlsR8EXrw", sceSaveDataTransferringMountPs4) +STUB( + "RjP6EdmFhuM", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectatorC1Ev) +STUB( + "RjPhhAMXXqU", + _ZN3JSC7JSProxy16getPropertyNamesEPNS_8JSObjectEPNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("RjRflLHq+zA", _ZNK7WebCore14FrameSelection21shouldChangeSelectionERKNS_16VisibleSelectionE) +STUB( + "RjStYGPGQcs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "RjVFqiZk0to", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEptEv) +STUB("RjWhdj0ztTs", _ZTISt9basic_iosIwSt11char_traitsIwEE) +STUB( + "RjbmUrQcU28", + _ZNK7WebCore33StickyPositionViewportConstraints32layerPositionForConstrainingRectERKNS_9FloatRectE) +STUB("Rjf8NliPAj8", _ZN7WebCore21NetworkStorageSession13getAllCookiesEv) +STUB("RjfcV4Putto", _ZTVN15AbstractStorage4ItemE) +STUB("RjgDFRWEuD8", _ZTVN9Inspector14InjectedScriptE) +STUB("RjhfMtr+HRI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEED2Ev) +STUB("Rji2OxXRDkU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEED1Ev) +STUB("RjmV+cXDxkI", _ZN7WebCore29PerspectiveTransformOperationC2ERKNS_6LengthE) +STUB( + "RjtW8OY7ZjE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE3endEv) +STUB("RjvIyaLoDHU", _ZN25MmsFileUpdaterFsOperation10AllocLargeEm) +STUB("Rjze+87fw+Q", u_catgets_67) +STUB( + "Rk-LaLv8rzI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody17setNpServiceLabelERKj) +STUB( + "Rk0rxWMwces", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEptEv) +STUB("Rk2dfLnFK5s", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEED1Ev) +STUB("Rk2hZO6aoNQ", _ZN7WebCore23CoordinatedImageBackingD2Ev) +STUB( + "RkMCBV-2U7M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEaSERKS9_) +STUB("RkNnZG+nFO0", mono_aot_Sce_Vsh_MarlinDownloaderWrapperunbox_trampolines) +STUB("RkNs5WxpMzg", sceDebugAttachProcess) +STUB( + "RkP8DPZXAdU", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V122LastUpdatedUserFactory7destroyEPNS3_15LastUpdatedUserE) +STUB("RkPddKR+4zY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEmmEv) +STUB("RkPmqEI8Vv0", mono_aot_System_Xml_Linqjit_code_start) +STUB("RkSFw3znsvI", mono_aot_file_info) +STUB("RkVBJ5-M1bo", _ZN23sceMetadataReaderWriter20LoadedParserInfoList13releaseParserEj) +STUB( + "RkWBvJZZ4xw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEED2Ev) +STUB( + "RkY8-Cq7t0w", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE5emptyEv) +STUB( + "RkaqMMDQJp4", + _ZN15AbstractStorage14YoutubeService23create_storage_instanceERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("RkdBEmqeOcw", WKPreferencesSetDataTransferItemsEnabled) +STUB("RkfkkJJ+QJg", mono_aot_platformjit_got) +STUB( + "RkiFQ64Mb8Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE8copyFromERKS9_) +STUB( + "RkjJTE0aF4I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE6resizeEj) +STUB("Rkt0bVyaa4Y", sceNpTrophySystemGetTrophyIcon) +STUB( + "RkwFKEYpBWU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE5beginEv) +STUB( + "Rl0N6IaKaHo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEEcvbEv) +STUB( + "Rl1lXrA8jiU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEC2Ev) +STUB( + "Rl357jbvh1A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEC2Ev) +STUB("Rl77jfResVg", _ZN3sce7Toolkit2NP2V210Tournament10TeamMemberD1Ev) +STUB("Rl7DmeuWZ08", _ZN7WebCore14ScrollableAreaD2Ev) +STUB("RlB3+37KJaE", _ZNSt12placeholders2_9E) +STUB( + "RlE2mhkZ72U", + _ZN7WebCore20ResourceHandleClient16didReceiveBufferEPNS_14ResourceHandleEON3WTF3RefINS_12SharedBufferENS3_13DumbPtrTraitsIS5_EEEEi) +STUB("RlGUiqyKf9I", lgammaf_r) +STUB( + "RlQz5S5A3xk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEmmEi) +STUB( + "RlRpmOAjzTk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE8capacityEv) +STUB( + "RlSeLrJl57Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEE3getEv) +STUB("RlZD6Qw4LMo", _Read) +STUB( + "RlZeP5kjzk0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEC2EPS6_PNS2_10LibContextE) +STUB("RlZwfEuRDx8", res_read) +STUB("RlewTNtWEcg", _WStodx) +STUB("RlhJVAYLSqU", sceLibcHeapUnsetTraceMarker) +STUB("RlnmEoT+BEA", _ZN7WebCore21DisplayRefreshMonitorC2Ej) +STUB("Rlr3YSixzLk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEcvbEv) +STUB("Rlx+bykm0r0", sceAgcDcbDrawIndexMultiInstanced) +STUB("Rm+hiwvSnxw", sceFiosDateToComponents) +STUB("Rm023prXGDw", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11InvitationsEED1Ev) +STUB( + "Rm2ugbiAr5g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEEC2EPS8_PNS2_10LibContextE) +STUB("Rm4ISbilvNY", _ZN7WebCore11MathMLNames8formAttrE) +STUB("Rm6Y9lnzm3c", WKBundlePageSetDefersLoading) +STUB( + "Rm7deMqNmmg", + _ZN3sce7Toolkit2NP2V28Commerce21displayJoinPlusDialogERKNS3_7Request21DisplayJoinPlusDialogEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("Rm8YmyDu82k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEEC1ERKS7_) +STUB( + "Rm9RKVc6bgI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEC1EPS8_) +STUB( + "RmDGFREFO-w", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("RmE3aE8WHuY", j0f) +STUB("RmH4XNEy58M", rgctx_fetch_trampoline_mrgctx_98) +STUB("RmJKkzZFNFA", scePlayerReviewDialogTerminate) +STUB("RmNxmcXzi0k", uidna_nameToUnicode_67) +STUB("RmRtBJpoHlA", sceVrServiceDialogUpdateStatus) +STUB("RmVwZgoPrJQ", mono_aot_System_Runtime_Extensionsjit_got) +STUB("RmaJwLtc8rY", sceAgcDcbSetBaseIndirectArgs) +STUB("RmbbHWTxhgM", _ZN7WebCore5Frame17setPageZoomFactorEf) +STUB("RmkXfBcZnrM", sceFontGlyphRenderImage) +STUB( + "RmmdswVWm1c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEmmEi) +STUB("RmnVV1kkssM", _ZN7WebCore9HTMLNames27onaccessiblecontextmenuAttrE) +STUB("Rmo9SeaFHJs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEEeqERKS7_) +STUB( + "RmqaDE7ZCBM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEE3getEv) +STUB( + "RmsVbOAI8Xg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEE7add_refEv) +STUB( + "RmvjkhQol34", + _ZN7WebCore24DocumentMarkerController38updateRectsForInvalidatedMarkersOfTypeENS_14DocumentMarker10MarkerTypeE) +STUB("Rn+JdhbkiEk", mono_aot_I18N_CJKjit_got) +STUB("Rn07lkgjN44", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody6toJsonERNS_4Json5ValueEb) +STUB("Rn32O5PDlmo", sceSystemServiceEnableSuspendConfirmationDialog) +STUB("RnAMRwEK40U", _ZN7WebCore11FrameLoader25detachFromAllOpenedFramesEv) +STUB("RnBhW7nM92c", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13WhoLikedStoryEE7addressERS3_) +STUB("RnDibcGCPKw", sceVideodec2QueryComputeMemoryInfo) +STUB( + "RnF0SafSl1A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEaSERS7_) +STUB("RnMFohgWKNo", bemp2sys_psdecoder_destroy) +STUB( + "RnOQ74LnhTM", + _ZN3sce2Np9CppWebApi14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyC1EPNS1_6Common10LibContextE) +STUB("RnOtQ1-DQSs", png_set_strip_16) +STUB("RnQP8brvnJc", sceDataTransferRequestRebootAuthPS4) +STUB("RnSBEHJuqXA", _ZN3NTF17URLRequestFileJobD0Ev) +STUB( + "RnV51MT9OU0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("RnVb156HcOw", _ZN3sce7Toolkit2NP2V211SharedMedia10ScreenshotD1Ev) +STUB("RnWfuqSPs2Y", ucnv_createConverterFromSharedData_67) +STUB("RnY2HTwqz3A", sceShellCoreUtilClearPsnAccountInfo) +STUB( + "RndEg1EDcg4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEaSERKSA_) +STUB( + "RnetrIdbHpQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("Rnf7NEqkmv0", _ZN3sce2np10JsonParserC2Ev) +STUB("RngO8QrVgsM", _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeIPcPvEEeqERKS7_) +STUB("RniTdMj3K24", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12setBoolean10ERKb) +STUB( + "RnkjCdM8eIk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEC1Ev) +STUB( + "RnofkgQIlrE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB("RnqlvEmvkdw", _malloc_finalize_lv2) +STUB( + "Ro--jSMhtX0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE6resizeEj) +STUB("Ro0z2gDLiGE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE7reserveEi) +STUB("Ro2ieAw9m3g", _ZN7WebCore26UserTypingGestureIndicatorC2ERNS_5FrameE) +STUB("Ro4sI9xgYl4", sceNpTrophySystemGetTrophyConfig) +STUB("RoG6zFjMczI", _ZN3WTF3URL7setHostENS_10StringViewE) +STUB("RoGYFndJkAU", _ZN7WebCore7RunLoop4mainEv) +STUB("RoHCyY7B6z0", _ZN3sce7Toolkit2NP2V24Core12ResponseBaseD2Ev) +STUB("RoIWhEt0jTg", _ZNK7WebCore11MediaPlayer13isVideoPlayerEv) +STUB( + "RoNvYGJ6MMg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE7popBackEv) +STUB( + "RoOulmakF2U", + _ZN3WTF33indexOfBestMatchingLanguageInListERKNS_6StringERKNS_6VectorIS0_Lm0ENS_15CrashOnOverflowELm16ENS_10FastMallocEEERb) +STUB( + "RoWEyP04vGM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB( + "RohovwYkYO8", + _ZNK7WebCore12RenderObject21localToContainerPointERKNS_10FloatPointEPKNS_22RenderLayerModelObjectEjPb) +STUB( + "RoiTvhwOekc", + _ZN3JSC41constructObjectFromPropertyDescriptorSlowEPNS_14JSGlobalObjectERKNS_18PropertyDescriptorE) +STUB( + "RolXukwAUco", + _ZN3sce2Np9CppWebApi7Matches2V125RequestMatchPlayerFactory6createEPNS1_6Common10LibContextEPKcNS3_10PlayerTypeEPNS5_12IntrusivePtrINS3_18RequestMatchPlayerEEE) +STUB( + "Ror82sJOqNo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEixEm) +STUB( + "RovQYAXDwGg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEEptEv) +STUB("RoxM-Cpzm9s", sceNpGriefReportWriteReportItem2) +STUB( + "RoxVwYopCmY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEEC2ERKSA_) +STUB("RoyFXHDuJm8", _ZN9Inspector14ConsoleMessage20autogenerateMetadataEPN3JSC9ExecStateE) +STUB("Rp0tk2oTsyo", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEEC2Ev) +STUB("Rp4f0JT5fv8", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSessionC1EPNS1_6Common10LibContextE) +STUB("Rp7ohevt4UA", monoeg_g_slist_concat) +STUB("Rp9iL14V1GI", _ZN3JSC20createReferenceErrorEPNS_9ExecStateERKN3WTF6StringE) +STUB("RpDhBSG4igY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10ContainersEE5resetEv) +STUB("RpEyMBxVQ6c", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request15GetSharedVideosD2Ev) +STUB( + "RpGJGA+cZPc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("RpHyuxGYUak", _ZN3sce2Np9CppWebApi6Common6VectorIlE7reserveEi) +STUB("RpQJJVKTiFM", sceKernelGetModuleInfoForUnwind) +STUB("RpRObgLAv5I", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching5RoomsEE12deepCopyFromERS7_) +STUB("RpT0YFb-mTs", _ZN23sceMetadataReaderWriter13KeyValueArray6expandEPFPvmEPFvS1_E) +STUB("RpTR+VY15ss", fmaf) +STUB( + "RpVPoZjwa6o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEppEv) +STUB("RpWWfCEs9xA", _ZN3sce2np9EventFlagD2Ev) +STUB( + "RpZ0fNjMKjA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEC1Ev) +STUB("RpawlmTpuT0", _ZNK3sce2Np9CppWebApi7Matches2V117LeaveMatchRequest6toJsonERNS_4Json5ValueEb) +STUB( + "Rpb4rNaPXXk", + _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody11setLocationERKNS1_6Common12IntrusivePtrINS3_8LocationEEE) +STUB( + "Rpegwa-NBss", + _ZN7WebCore16HTMLMediaElement25clearMediaCacheForOriginsERKN3WTF6StringERKNS1_7HashSetINS1_6RefPtrINS_14SecurityOriginENS1_13DumbPtrTraitsIS7_EEEENS_18SecurityOriginHashENS1_10HashTraitsISA_EEEE) +STUB("RphXg4BeVqQ", _ZN3sce7Toolkit2NP2V24Core11RequestBaseD1Ev) +STUB("RphzLPLLB24", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfileD1Ev) +STUB( + "RpjBDcbVUJE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE5beginEv) +STUB( + "RpmNuh1pVHc", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeaders6createEPNS1_6Common10LibContextERNS6_12IntrusivePtrIS5_EEl) +STUB("RpoSU2ZTsd4", _ZNK7WebCore16HTMLMediaElement8controlsEv) +STUB("RppFSTaZQuU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEC1ERKS7_) +STUB( + "Rpsf6Jr-Ws8", + _ZN3sce2Np9CppWebApi14ConnectAccount2V215PSNErrorFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_14PSNError_errorEEEPNS8_INS3_8PSNErrorEEE) +STUB( + "RpyCOV9Xclg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEC2Ev) +STUB("RpyEppnI3OI", _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead15searchableIsSetEv) +STUB("RpzLa-jjWnA", AES_set_encrypt_key) +STUB("Rq-mcimfzv8", mono_aot_Sce_Vsh_AppDbWrapperunbox_trampoline_addresses) +STUB( + "RqAteJF3ucM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEdeEv) +STUB("RqBXw-IeUdY", _ZN3WTF3MD5C2Ev) +STUB("RqBl+ySY4vo", sceTextToSpeechGetAudioDataImpl) +STUB("RqGNK8FGY6w", _ZNK7WebCore3URL8protocolEv) +STUB("RqGy2jv+mi4", jinit_forward_dct) +STUB( + "RqH-wRv3Eak", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB("RqKeKg76Z-E", mono_btls_x509_crl_ref) +STUB( + "RqNp99iunD8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("RqXSv8zF1A0", sceNpIsDevelopmentMode) +STUB("RqYz+BBCzSA", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18SessionInformationEEC2Ev) +STUB("RqcWVDCXZcY", eglCreatePbufferFromClientBuffer) +STUB("RqeErO3cFHU", _ZSt15set_new_handlerPFvvE) +STUB( + "RqecvRikR2A", + _ZN3sce7Toolkit2NP8Sessions9Interface18postInvitationDataEPKNS1_25PostInvitationDataRequestEPNS1_9Utilities6FutureIiEEb) +STUB("Rqm2OnZMCz0", sceNetCtlUnregisterCallback) +STUB("RqmKxBqB8B4", sceAudioOutGetInfoOpenNum) +STUB( + "Rqn6yA1A4zY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE5beginEv) +STUB( + "RqnomNr+HmM", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_8Timeline10InstrumentEEESt8optionalIT_ERKN3WTF6StringE) +STUB("RqoJBNCaLyo", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead21createdTimestampIsSetEv) +STUB( + "Rqr+gpN0EDw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEdeEv) +STUB("Rqr11daK9Y8", _ZN7WebCore21ISOTrackEncryptionBoxD1Ev) +STUB("RqrxNswlH8E", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets12setaccountIdEPKc) +STUB("Rqu9OmkKY+M", _ZNKSt7_MpunctIcE16do_negative_signEv) +STUB( + "Rqv1nNvg4ps", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEED2Ev) +STUB("RqvDF94RWtM", mono_aot_System_Reactive_Linqunbox_trampolines) +STUB("Rqx3LOJrTkU", uprv_decContextGetRounding_67) +STUB("Rr+boVQrSJ0", mono_object_new_from_token) +STUB( + "Rr-phKduf2I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEaSERKS7_) +STUB("Rr-uWbN4m3k", __wrap_fchown) +STUB( + "Rr-yrB6DDDk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEC2EPS8_) +STUB( + "Rr1p24Dyq+w", + _ZN3sce2Np9CppWebApi11UserProfile2V111PresenceApi17getBasicPresencesEiRKNS4_28ParameterToGetBasicPresencesERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_25GetBasicPresencesResponseEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB( + "Rr5ZbDFqTrs", + _ZN7WebCore20LegacySchemeRegistry57removeURLSchemeRegisteredAsBypassingContentSecurityPolicyERKN3WTF6StringE) +STUB("RrAO7vD8LOk", _ZN3sce7Toolkit2NP18GetUserNewsRequestC2Ev) +STUB("RrKEs-aY2dU", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEEixEm) +STUB("RrTAXQpHW-4", WKPreferencesGetInvisibleMediaAutoplayPermitted) +STUB("RrTMGyPhYU4", _ZNSt8messagesIwEC1ERKSt8_Locinfom) +STUB("RrcozTK0fHM", _ZN7WebCore11DisplayList15FillRoundedRectD1Ev) +STUB( + "RrfREJ703yU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("RrrkSeBmV6U", _ZN7WebCore11DisplayList13ClipOutToPathC2ERKNS_4PathE) +STUB("RrvyU1pjb9A", sceHmdReprojectionStartCapture) +STUB("Rrweo0oucwA", sceVnaGetVoiceOskOptInStatus) +STUB( + "Rs+371WBAGk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE6resizeEj) +STUB("Rs4sSDmju0M", + _ZN3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsersC1ERS5_) +STUB( + "RsBFJ7Pz06E", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("RsE1XZv-zxk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEED2Ev) +STUB("RsKVKhSWt28", sceMbusGetDeviceInfo_) +STUB("RsQ6zCBsa74", Java_java_io_FileDescriptor_sync0) +STUB( + "RsWQg-ioOLY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEE5resetEPS9_) +STUB("RsXKouwncL8", + _ZN8meta_gen11MsvPromoter12initKeyValueENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB("RsYAxp0AdKM", _ZN3sce7Toolkit2NP10IdDatabaseC1ERKNS1_15CommunicationIdERKNS1_9NpTitleIdEPKc) +STUB( + "RsYd99APlyQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "Rsbj2OmLu6s", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEptEv) +STUB("RscnkGyTvMg", uiter_previous32_67) +STUB( + "RsdW3XKwrSQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEE3getEv) +STUB("RseMy5PTCOo", _ZN3JSC11VMInspector8isInHeapEPNS_4HeapEPv) +STUB("RsiCFJMIGHw", sceLibSecureCryptographyDeleteContext) +STUB("RsiyvBXx3Bs", sceKernelStreamWriteWrite) +STUB( + "RsmfIkiavxs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEC1Ev) +STUB("RspeWYDJCJs", sceIduUtilSystemVersion) +STUB("RsqYVnhRk+w", _ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_23NpSessionInvitationInfoEE8max_sizeEv) +STUB("Rsrf1HN3218", _ZNK7WebCore6Editor9canDeleteEv) +STUB( + "RsxPAenI3VI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("Rt-mDWXgcEM", Java_java_lang_Throwable_getStackTraceDepth) +STUB( + "Rt1dwHwagns", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEEC1Ev) +STUB( + "Rt3Mnr67g7s", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeader12getsessionIdEv) +STUB("Rt3lL1byIzc", _ZN3WTF14AtomStringImpl3addEPNS_10StringImplEjj) +STUB("RtALSqAxYHw", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIfEppEi) +STUB( + "RtB+prGj9HU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEmmEi) +STUB("RtDRKO8oxg4", mono_aot_Sce_Vsh_Stickerunbox_trampolines_end) +STUB("RtIzL0k5tgA", _ZN3sce7Toolkit2NP2V28Commerce7Request21DisplayJoinPlusDialogC1Ev) +STUB("RtJ7a7UemgQ", sceCesMbcsStrGetUtf32Len) +STUB("RtLRV-pBTTY", pthread_attr_getschedpolicy) +STUB("RtYrWZBWJhU", _ZN7WebCore12JSAudioTrack15subspaceForImplERN3JSC2VME) +STUB("RtZTpGeo+2U", _ZN7WebCore21isBackForwardLoadTypeENS_13FrameLoadTypeE) +STUB( + "RteR2KNcdlY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEeqERKS9_) +STUB( + "RtgexpEgYHg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEdeEv) +STUB("Rthw9zEAbIM", _Z34sceGpuDebuggerUnregisterShaderCodePKN3sce3Gnm16GsStageRegistersE) +STUB("RtkYxZiFXw8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEC1Ev) +STUB( + "Rtn2Xw7gr0g", + _ZN7WebCore16NativeNodeFilterC2EPNS_22ScriptExecutionContextEON3WTF3RefINS_19NodeFilterConditionENS3_13DumbPtrTraitsIS5_EEEE) +STUB("RtnIyxc1rNQ", rgctx_fetch_trampoline_mrgctx_88) +STUB( + "RtqWbChL-AQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "RtsPZjAD4hU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEEC2ERKSA_) +STUB("Rttr2uVv9xA", ucnv_fromUCountPending) +STUB("RtwM77LoIrc", sceAvSettingNotifyProcessPostResume) +STUB("RtxH9zkZBJc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE7popBackEv) +STUB("Ru36fiTtJzA", scePthreadAttrGetstackaddr) +STUB("Ru5P+vR-vao", _ZNK7WebCore14DocumentLoader11subresourceERKN3WTF3URLE) +STUB( + "RuCs3IkoeiY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "RuJCLVlRJbk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEixEm) +STUB("RuMrq4gwRhQ", mono_aot_ReactNative_Vsh_Commonunbox_trampolines_end) +STUB("RuOU9dUyjLw", udata_setAppData) +STUB("RuRXBh3D8E0", _ZN9Inspector26AnimationBackendDispatcherD1Ev) +STUB("RuSca8rS6yA", sceImeVshSetSelectGeometry) +STUB( + "RuSjbeoChqY", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("RuTO+J0fvss", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEE11get_deleterEv) +STUB("RuVwHEW6dM4", sceNetConfigDelDefaultRoute) +STUB("RuX7cf41QQ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEED2Ev) +STUB("RujUxbr3haM", _ZN3sce4Json11InitializerD1Ev) +STUB( + "RunrlzwBOz0", + _ZN3sce7Toolkit2NP7Friends9Interface14getFriendslistEPNS1_9Utilities6FutureISt6vectorINS1_6NpUserENS1_15AppSTLAllocatorIS7_EEEEEb) +STUB( + "RuuALGxtN+U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE8pushBackERKS8_) +STUB( + "RuuASUQgnsE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEptEv) +STUB("Ruv+9ATolpg", Java_java_awt_GnmGraphics_disposePSD) +STUB( + "RuwWysCw8FA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEEaSERKSA_) +STUB("Rv4UH0cDulY", _ZN7WebCore24CoordinatedGraphicsLayer30deviceOrPageScaleFactorChangedEv) +STUB("Rv4kfpXDJok", g_string_printf) +STUB( + "Rv5nQWWU200", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB("Rv88hJSMFR4", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku7unsetIdEv) +STUB("RvFx7dv9ThU", FT_Stroker_ParseOutline) +STUB( + "RvH9AZ5rCkQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE5beginEv) +STUB( + "RvHMomqrfo8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "RvI41-inhYU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEC1Ev) +STUB( + "RvNzHNFyog8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEEaSERKSA_) +STUB( + "RvOx9BGP8xo", + _ZN7WebCore15SQLiteStatement21getColumnBlobAsVectorEiRN3WTF6VectorIhLm0ENS1_15CrashOnOverflowELm16EEE) +STUB("RvSjdfZQRMQ", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanityC1Ev) +STUB( + "RvTeyG3XiWQ", + _ZN9Inspector14InjectedScript8evaluateERN3WTF6StringERKS2_S5_bbbbRNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsIS9_EEEERbRSt8optionalIiE) +STUB( + "RvXewin0NPI", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getInteger9Ev) +STUB("RvXyHMUiLhE", sceFontOpenFontFile) +STUB("RvaVAKD9xD4", _ZN3JSC7JSProxy10putByIndexEPNS_6JSCellEPNS_14JSGlobalObjectEjNS_7JSValueEb) +STUB("RvdTub6h5Yc", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContaineraSERS5_) +STUB( + "Rvel0hbGLkc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE21intrusive_ptr_sub_refEPS9_) +STUB("RvepgCjo-VE", _ZN7WebCore13GraphicsLayer12replaceChildEPS0_S1_) +STUB("RvnbP6R6-Oc", _ZN3sce2Np9CppWebApi14SessionManager2V118LeaderWithOnlineIdD2Ev) +STUB("RvsFE8j3C38", y0) +STUB( + "RvtxTc-V0sE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEneERKS9_) +STUB("RvvvsJ-ilks", sqlite3_next_stmt) +STUB( + "Rvz-B1fXFEI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEEC2Ev) +STUB( + "Rw+7h8qK9K4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE5beginEv) +STUB( + "Rw-sJO4mrjI", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getBoolean6Ev) +STUB("Rw0L25eAWzQ", + _ZN3JSC21throwOutOfMemoryErrorEPNS_14JSGlobalObjectERNS_10ThrowScopeERKN3WTF6StringE) +STUB( + "Rw0lGSb+teE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEixEm) +STUB( + "Rw31DhaKoHI", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets28setxPsnAcceptPlatformNamePs5ENS5_25XPsnAcceptPlatformNamePs5E) +STUB("Rw4J-22tu1U", __signbit) +STUB( + "Rw4qpIaeTiM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEED2Ev) +STUB("RwFGJfFTjm4", _ZN22MmsMdCommonFsOperation8seekFileElb) +STUB( + "RwHme3uw13Y", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE3endEv) +STUB("RwTMau4aDsc", sceVshAvcapCreateSyncer) +STUB("RwUXr5EN1tQ", mono_aot_Sce_Vsh_FileSelectorAdvancejit_got) +STUB("RwXD8grHZHM", sceSslFreeSslCertName) +STUB("RwZPsC62+S8", udata_readInt32_67) +STUB("Rwe3Y6SOUGU", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt6vectorI16SceNpTusVariableNS2_IS4_EEEEeqERKS7_) +STUB("Rwe8bHavOL0", curl_msnprintf) +STUB( + "Rwgxs7tgagk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE7reserveEi) +STUB("RwiDAkmZDdk", _ZN3JSC17JSArrayBufferView6s_infoE) +STUB( + "RwiPV1nH+5k", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEdeEv) +STUB( + "RwiUrDYeifs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEEdeEv) +STUB( + "RwppYiXKTHg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEE11get_deleterEv) +STUB( + "RwqaVSgB-DE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("Rwt38wvN3Fw", _ZN7WebCore6Path2DdlEPv) +STUB("RwtKDS3Y0r8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE21intrusive_ptr_sub_refEPS7_) +STUB("RwumIOnuNgg", monoeg_g_strjoin) +STUB("RwxEnlbCkug", _ZN7WebCore22HTMLPlugInImageElement29setIsPrimarySnapshottedPlugInEb) +STUB( + "Rx098xv36AM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEdeEv) +STUB( + "Rx0G9HXgK5c", + _ZN7WebCore17FrameLoaderClient23getLoadDecisionForIconsERKN3WTF6VectorISt4pairIRNS_8LinkIconEmELm0ENS1_15CrashOnOverflowELm16EEE) +STUB("Rx4pkLP87t4", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE4sizeEv) +STUB( + "Rx654ztYkXg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "RxA6F3KGM+s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEE11get_deleterEv) +STUB("RxAe1wo8Xgs", _ZN3sce7Toolkit2NP2V23TUS7Request17TryAndSetVariableC2Ev) +STUB("RxDsxb4GOQU", NET_SetSockOpt) +STUB( + "RxESdmR+oEo", + _ZN9Inspector25DebuggerBackendDispatcher24continueUntilNextRunLoopElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "RxJn+UQFRd8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEE11get_deleterEv) +STUB("RxJnJ-HoySc", _ZNSt10moneypunctIcLb1EEC2EPKcm) +STUB("RxLYLPYPMBU", mono_class_interface_offset) +STUB("RxLscALFA00", _ZN7WebCore17HTMLCanvasElement26setTracksDisplayListReplayEb) +STUB( + "RxM-tHC8eP4", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions9getfieldsEv) +STUB("RxOid2QDjOY", _ZN7WebCore10FileSystem23getFileModificationTimeERKN3WTF6StringERl) +STUB( + "RxRHL0zOKdY", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayer12getsessionIdEv) +STUB("RxRtEFonL5U", _ZN3WTF23openLatin1UTextProviderEPNS_15UTextWithBufferEPKhjP10UErrorCode) +STUB( + "RxW3ewUY1X4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEE7get_refEv) +STUB( + "RxZpWhfKTr8", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersaSERS5_) +STUB("RxbpvVvQ20Q", _ZN7WebCore8Document10setFgColorERKN3WTF6StringE) +STUB("Rxedyw6GM4s", mono_print_jit_stats) +STUB( + "Rxmb6bKI+Js", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEplEm) +STUB("Rxo692-q6Ew", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session14InvitationDataEEC2Ev) +STUB( + "Rxym2sUJ3GI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEC1Ev) +STUB("Ry-7AGNI3Ek", _ZN3sce7Toolkit2NP2V28Commerce11SubCategoryC1Ev) +STUB("Ry2Bjw-gItY", _ZN7WebCore17JSDOMGlobalObject4infoEv) +STUB( + "Ry4AbP3VMVY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEC2EPKS8_) +STUB("Ry4u8KxkVY4", sceLncUtilIsShellUiFgAndGameBgCpuMode) +STUB( + "RyEzq+tAc+M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEE11release_refEv) +STUB( + "RyGqPlc0KLI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("RyH9AbKq4z8", sceUserServiceSetNotificationSettings_2) +STUB( + "RyJX9jv4BSE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEE11release_refEv) +STUB( + "RyQqk+nHYNA", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead9setMemberERKNS1_6Common12IntrusivePtrINS3_24GameSessionMemberForReadEEE) +STUB( + "RyWKwyrNWrA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "RyWO+DLG9cU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE5clearEv) +STUB( + "RyXj8wS5JSU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEixEm) +STUB( + "RyZtrdxap9g", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEeqERKS9_) +STUB("RyaN3XDQgE0", mono_aot_Sce_Vsh_SystemLoggerUtilWrapperplt_end) +STUB("Ryaa0CMieNs", sceMbusResolveByHandle) +STUB( + "RybKgkW3mVc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEE3getEv) +STUB( + "RykmGFW6zYY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEE5resetEPS6_) +STUB("Ryxg825BH5c", AnnotateUnpublishMemoryRange) +STUB("RyzZwc+IlKY", jpeg_default_qtables) +STUB("Rz+V6LHWtVY", g_ptr_array_add) +STUB("Rz00FuIBcIk", sceMbusDebugAcquireControlWithState) +STUB("Rz00kiTKypo", _ZN3sce4Json6String6appendERKS1_) +STUB("Rz1FOwuPhM8", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEEC2Ev) +STUB("Rz3BPMKO8aw", sceCesRefersUcsProfileGbT1988Tilde0x7e) +STUB("Rz4bj0OFlSc", + _ZN3sce2Np9CppWebApi7Matches2V120RequestTeamStatisticC2EPNS1_6Common10LibContextE) +STUB( + "Rz5M5L+9X9g", + _ZNK7WebCore9FrameView35convertFromContainingViewToRendererEPKNS_13RenderElementERKNS_7IntRectE) +STUB("Rz5fOEsYd7A", sceMusicCoreServerTriggerEventSync) +STUB("RzAvXcBNNiQ", _ZN3JSC4Heap31collectNowFullIfNotDoneRecentlyENS_15SynchronousnessE) +STUB( + "RzCHr5TmwcQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE5clearEv) +STUB("RzGLHpwR2+k", _ZN7WebCore17LibWebRTCProviderdaEPv) +STUB("RzIp2F6E1sE", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEdeEv) +STUB( + "RzJr+LF13gI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE8pushBackERKS8_) +STUB("RzLv+HR5E2A", _sceNpHeapStrndup) +STUB("RzM4ZhlKzPg", cairo_stroke_preserve) +STUB("RzP3g0KLcU0", mono_aot_Sce_Vsh_Np_Snsjit_code_start) +STUB( + "RzP6DS58dhA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEED2Ev) +STUB( + "RzPLcZu1yLY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEC1EPNS2_10LibContextE) +STUB( + "RzRsLY0gRWM", + _ZN7WebCore27AuthenticationChallengeBaseC2ERKNS_15ProtectionSpaceERKNS_10CredentialEjRKNS_16ResourceResponseERKNS_13ResourceErrorE) +STUB("RzbrOfSypGY", _ZNSt13basic_ostreamIwSt11char_traitsIwEE5_OsfxEv) +STUB( + "RzcF0C6HgcM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE3endEv) +STUB("RzgDJTjQst4", FT_Stream_GetULongLE) +STUB("RzkJnWJ9iOs", _ZN7WebCore20ResourceResponseBaseC2Ev) +STUB( + "RzkzW7iyGFI", + _ZNK7WebCore21NetworkStorageSession33hasHadUserInteractionAsFirstPartyERKNS_17RegistrableDomainE) +STUB( + "Rzlo3dK7LZA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEneERKS9_) +STUB( + "RznmmDjwqag", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "Rzo0Igx8swk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE5beginEv) +STUB( + "RzoMpIbidqg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEC2Ev) +STUB("RzpC7lMtWpc", _ZTVN9Inspector31ScriptProfilerBackendDispatcherE) +STUB("Rztm+4l7XEM", scePerfTraceAprNameStart) +STUB( + "RzvPDgtaG28", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEixEm) +STUB("Rzx5aXYaArw", GCC_except_table468) +STUB( + "Rzy+5A3NsXc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEeqERKS9_) +STUB( + "S+-pKKRhaqw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "S+1CxQje3PM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE6resizeEj) +STUB( + "S+AZUoBeZsg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB("S+AaqlJfcYs", uspoof_internalInitStatics_67) +STUB("S+BoWKxc3Ck", mono_assembly_load_full) +STUB( + "S+BuzuRAS0c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE8pushBackERKS8_) +STUB("S+DS7qbKNOo", _ZN7WebCore18throwThisTypeErrorERN3JSC9ExecStateERNS0_10ThrowScopeEPKcS6_) +STUB("S+EGYMBGJq8", _ZN15AbstractStorage12LocalService4StopEv) +STUB( + "S+HfZFjskXc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE3endEv) +STUB("S+NgTvWVJLA", sceImeBackendGetCandidateListSize) +STUB("S+OTMjuF3sk", _ZN7WebCore18PrewarmInformationD1Ev) +STUB( + "S+QjLuzIGbs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEC2EPS8_) +STUB("S+SW4ma583w", _ZN7WebCore27CSSComputedStyleDeclarationC2ERNS_7ElementEbRKN3WTF6StringE) +STUB("S+VELC8NeKY", ucsdet_setText_59) +STUB("S+Y25kH5Rn4", _ZN7WebCore16HTMLTableElement11createTBodyEv) +STUB( + "S+YQZNz+Tx8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEEC1ERKSA_) +STUB("S+ZcHjyG+RM", mono_string_intern) +STUB("S+a+rgnGX8A", _ZN3sce2np14CalloutContextD1Ev) +STUB("S+fnL7WPZq4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEED2Ev) +STUB( + "S+m99-MF3ws", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEC1EPS8_) +STUB("S+mOdmysfhw", sceVoiceChatRequestLeaveGameSessionVoiceChatChannel) +STUB("S+n0Md8Rjfw", FT_Stream_ReadUOffset) +STUB( + "S+n6NC5YfmY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("S+plqe4pVgs", png_read_update_info) +STUB("S+y2VGeuoGk", _ZNSt15basic_streambufIcSt11char_traitsIcEE5imbueERKSt6locale) +STUB( + "S+zkz9zJ168", + _ZThn16_N9Inspector18InspectorHeapAgent10getPreviewERN3WTF6StringEiRSt8optionalIS2_ERNS1_6RefPtrINS_8Protocol8Debugger15FunctionDetailsENS1_13DumbPtrTraitsISA_EEEERNS7_INS8_7Runtime13ObjectPreviewENSB_ISG_EEEE) +STUB("S-1GFNVykSk", _ZN7WebCore12PrintContext18computedPageMarginENS_9RectEdgesIfEE) +STUB("S-3U05lXJhk", WKPreferencesGetInteractiveFormValidationEnabled) +STUB( + "S-7kLToSY6U", + _ZN3sce2Np9CppWebApi14SessionManager2V161PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyFactory7destroyEPNS3_54PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyE) +STUB( + "S-ADy5+oaAs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEdeEv) +STUB("S-AQZoElaRM", sceKernelDebugSpawn) +STUB("S-CHuTQDMRo", mono_aot_Sce_Vsh_ProfileCacheunbox_trampoline_addresses) +STUB( + "S-CZNoYuSCI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEED2Ev) +STUB("S-E9i1KZSns", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi22ParameterToCreateMatchC2Ev) +STUB("S-Gdd1eIiKU", _ZN3sce2Np9CppWebApi7Matches2V121ResponseTeamStatistic8getStatsEv) +STUB("S-Gni2KIJRY", sceConvertKeycodeGetCharacterFromKeyboardData) +STUB("S-H0LH+F95I", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEE11get_deleterEv) +STUB( + "S-JBod0h2e0", + _ZN7WebCore20findClosestPlainTextERKNS_11SimpleRangeERKN3WTF6StringENS3_9OptionSetINS_14FindOptionFlagEEEm) +STUB( + "S-L0-v0OHQ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEED1Ev) +STUB("S-Qbep3ivy8", mono_aot_I18N_Otherplt) +STUB( + "S-VG3EVh0js", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEED1Ev) +STUB( + "S-YSwet345Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEE7get_refEv) +STUB( + "S-Z2oL+rzS4", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119BandwidthPropertiesC2EPNS1_6Common10LibContextE) +STUB("S-dDdz8yGM4", + _ZN3sce2Np9CppWebApi14SessionManager2V122GameSessionPushContext8fromJsonERKNS_4Json5ValueE) +STUB("S-j08-JqNfs", _ZN3sce7Toolkit2NP2V27Session13SessionMember16INVALID_PRIORITYE) +STUB( + "S-j7PUnhQmA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEplEm) +STUB( + "S-lvqno+GUk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEeqERKS9_) +STUB("S-rDUfQk9sg", sceAudioInGetGain) +STUB( + "S-sWPvzjRCo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEC1EPNS2_10LibContextE) +STUB( + "S-tuNnMKjfQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("S-xPXI+4q9E", WKNavigationDataCopyOriginalRequest) +STUB("S-yCfUunccY", vzone_openID_67) +STUB("S0-xo2nSQuA", _ZN3sce2np9JsonValue9SetParentEPS1_) +STUB("S08oVMvT-8c", _ZN3WTF22CrossThreadTaskHandler8postTaskEONS_15CrossThreadTaskE) +STUB("S0DCFBqmhQY", CA_MGMT_enumAltName) +STUB("S0ITgPRkfUg", sceHmdInternalGetDefaultLedData) +STUB("S0JwP2AFTTE", sceAudioPropagationRoomDestroy) +STUB( + "S0KDCMfCaNE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEED2Ev) +STUB( + "S0KuxRDiw2A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEppEv) +STUB( + "S0Qe+Hcbd8w", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V13Mmr11setPerGenreERKNS1_6Common12IntrusivePtrINS3_13MmrPropertiesEEE) +STUB( + "S0Suhy0BYmw", + _ZN3sce7Toolkit2NP8Commerce9Interface18getEntitlementListEPNS1_9Utilities6FutureISt6vectorINS1_11EntitlementENS1_15AppSTLAllocatorIS7_EEEEERKNS1_26GetEntitlementsInputParamsEb) +STUB("S0VqLNkW1D0", uspoof_getCheckResultChecks_67) +STUB("S0WDjcZLdqI", u_isupper) +STUB("S0Zc1NbQFJw", mono_btls_bio_write) +STUB( + "S0aSZBy6z-Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC2ERKSA_) +STUB( + "S0eOBYTuo4U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "S0eezyWBXHE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE8capacityEv) +STUB("S0mnCPikRiA", sceM4aacEncGetContext) +STUB( + "S0nGlgFXmuA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEneERKS9_) +STUB("S0r+ndWprDg", rgctx_fetch_trampoline_rgctx_77) +STUB( + "S0vNX6cVG0w", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEeqERKS9_) +STUB("S0vx8aP1vqI", WKPreferencesGetDisplayContentsEnabled) +STUB("S0wLwmc9bc8", sceMbusSetDuckingSetting) +STUB("S0xHRXabnnA", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_13NetStateBasicEEC1Ev) +STUB( + "S0ydZNZOPjs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE10setContextEPNS2_10LibContextE) +STUB( + "S1+WjLkg98M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE21intrusive_ptr_sub_refEPS9_) +STUB("S1GkePI17zQ", sceSaveDataDelete) +STUB("S1PBRKjSstQ", + _ZN7WebCore21PageOverlayController20uninstallPageOverlayERNS_11PageOverlayENS1_8FadeModeE) +STUB("S1RHanLRpFQ", mono_aot_System_ComponentModel_Compositionjit_code_end) +STUB("S1Uxf-lgJ-c", sceLoginServiceRequestDevices) +STUB("S1W4s+gnkwg", _ZN3sce2Np9CppWebApi6Common6String21intrusive_ptr_sub_refEPS3_) +STUB("S1X5IJ1chWw", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V110AvatarSizeEEppEv) +STUB( + "S1YwPDLG0TQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE8capacityEv) +STUB( + "S1Za8j-wNbE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEED2Ev) +STUB("S1aT011dBEk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE3endEv) +STUB( + "S1aV9pT3s1g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEC2EPKS8_) +STUB( + "S1bISWVMfd0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEmmEi) +STUB( + "S1e3nAbl4uY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEE7get_refEv) +STUB("S1fRUcLSvvk", delegate_virtual_invoke_imt_27_p) +STUB( + "S1jbwaPyNSc", + _ZN3sce2Np9CppWebApi14SessionManager2V149PutGameSessionsSearchAttributesRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_42PutGameSessionsSearchAttributesRequestBodyEEE) +STUB( + "S1mIZtMRZN0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE5clearEv) +STUB("S1o1C6yOt5g", sceUsbdGetActiveConfigDescriptor) +STUB("S1o6Tx6MVuk", _ZTVN15AbstractStorage14MemfileContentE) +STUB("S1pbGEIdW9E", _ZN3sce2Np9CppWebApi6Common6BinaryD1Ev) +STUB( + "S1pfy2btsPU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("S1rFjUrl7UQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE7reserveEi) +STUB("S2-4Sh3qnm8", sceKernelGetResourceLimit) +STUB("S21eZXZnFoU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEED1Ev) +STUB("S21xDIubeTQ", mono_aot_Sce_PlayStation_Orbisjit_code_end) +STUB( + "S25iUhIbjBg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE8capacityEv) +STUB( + "S28B0A43DoM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEptEv) +STUB( + "S2Bw3p6qK8E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEEaSERKSA_) +STUB("S2ESgvbzvXI", _ZN7WebCore11DisplayList7ClipOutD1Ev) +STUB("S2G9jJwRMqs", _ZN3WTF9MediaTimepLERKS0_) +STUB( + "S2LUIKNGlgg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEEC1ERSA_) +STUB( + "S2M91aqjyf0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEC1Ev) +STUB( + "S2NvRAYXtRY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "S2RXN6-XCUw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("S2Sb-NajDeo", WKBundleHitTestResultCopyURLElementHandle) +STUB("S2WZhTpkjW0", mono_aot_appplt) +STUB( + "S2XSWpYKU-g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEC1Ev) +STUB("S2XXSC1X2l8", _ZN3WTF6Thread6signalEi) +STUB("S2eiZ6gZnkI", _ZN7WebCore8SVGNames7lineTagE) +STUB("S2gJq55GuKE", _ZN7WebCore6Editor14simplifyMarkupEPNS_4NodeES2_) +STUB("S2gQI2nZ8FE", SHA512_Init) +STUB( + "S2ltgySzrmQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("S2mw3sYplAI", sceFontFtSupportPfr) +STUB( + "S2oTsS1StKw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEppEi) +STUB("S2pJMf00-sk", sceSdmaFlushAll) +STUB("S2yTg8ZqUtw", sceOpusSilkEncCancel) +STUB("S30QdAH56QA", _ZNK3sce2Np9CppWebApi7Matches2V15Error6toJsonERNS_4Json5ValueEb) +STUB("S32Y0XOGdA8", uregex_getUText_67) +STUB("S33W6I2T8x8", _ZN7WebCore4Node14removedLastRefEv) +STUB( + "S34UfmRsJtk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEED2Ev) +STUB( + "S35PM+JX140", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEmmEv) +STUB( + "S36EAZpNnPk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEC2EPS6_PNS2_10LibContextE) +STUB( + "S3CBJM5lTSg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEEcvbEv) +STUB("S3Et4iyZ0K0", _ZN3sce7Toolkit2NP9Utilities10FutureImpl6isBusyEv) +STUB("S3G7+rtcvUQ", WKContextConfigurationSetShouldConfigureJSCForTesting) +STUB( + "S3JxD633sV4", + _ZN3sce2Np9CppWebApi14SessionManager2V156PostPlayerSessionsSessionIdInvitationsRequestBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_49PostPlayerSessionsSessionIdInvitationsRequestBodyEEE) +STUB("S3K8VDKvQwY", mono_metadata_parse_signature) +STUB("S3TFbWf1qCs", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session14InvitationDataEED2Ev) +STUB( + "S3X83+NMcNU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEED1Ev) +STUB("S3ggPj1HPVw", _ZN3sce2Np9CppWebApi14SessionManager2V117SearchGameSessionD1Ev) +STUB("S3k+JisKvds", SwCtrlManagerFinalize) +STUB("S3kDP5UD+4M", _ZN3sce7Toolkit2NP2V210Wordfilter16SanitizedCommentC1Ev) +STUB("S3nFV6TR1Dw", __isnormall) +STUB("S3qFxKMTgKQ", sceSpPthreadMutexInit) +STUB("S3qv3zV6PHo", _ZN3sce7Toolkit2NP2V29Messaging7Request27GetGameDataMessageThumbnailC1Ev) +STUB("S3trkSjQj1I", _ZN3sce7Toolkit2NP21RegisterTrophyRequestC1Ev) +STUB("S3uUevXWEi8", + _ZNK3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_15CategoryInfoSubENS2_IS4_EEEE8max_sizeEv) +STUB("S3wUi9IrFAI", WKBundleSetGarbageCollectClient) +STUB("S3xZj35v8Z8", sceNpScoreSetTimeout) +STUB("S3yDQivx8Iw", _ZN7WebCore21DiagnosticLoggingKeys26entryRightlyNotWarmedUpKeyEv) +STUB( + "S4+Tha6KFm8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE4sizeEv) +STUB("S43+S0GsqLo", _ZN3sce7Toolkit2NP2V29Messaging25GameDataMessageAttachmentaSERKS4_) +STUB("S48+njg9p-o", sceFontGraphicsRegionInitCircular) +STUB("S49B+I96kpk", sceSaveDataCheckSaveDataVersionLatest) +STUB( + "S4AIXe73toY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("S4AjKz4bd3c", _ZN3sce7Toolkit2NP2V26Trophy7Request19GetTrophyPackTrophyD2Ev) +STUB("S4BqBfr+cb0", mono_aot_Sce_Vsh_AutoMounterWrapperunwind_info) +STUB("S4Gb7LzOGsQ", GCC_except_table553) +STUB("S4HGAVSpItw", usearch_handlePreviousExact_67) +STUB("S4MaguYG1IQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEaSERKS7_) +STUB( + "S4RnTCNxwak", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEC1Ev) +STUB( + "S4ULNBUnMfk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEC1Ev) +STUB("S4VSUxuFEbE", mono_aot_Sce_Vsh_Orbis_AbstractStoragemethod_addresses) +STUB("S4WTBF8WJQA", + _ZNK3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession14sessionIdIsSetEv) +STUB("S4XWKGFp+bc", sceKernelIsGenuineTestKit) +STUB("S4ZusEoBg28", _ZN3NTF17URLRequestFileJob3urlEv) +STUB("S4e0nGw74Lk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEC1Ev) +STUB( + "S4nF2BAjI7o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEmmEv) +STUB( + "S4ouYB1EXyM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB("S4per83VASY", sceAudiodecDecode2WithPriority) +STUB("S4qCVFS2p1Y", WKContextSetConnectionClient) +STUB("S4ssksOaXdo", _ZN7WebCore22protocolIsInHTTPFamilyERKN3WTF6StringE) +STUB( + "S4txuoFSiu8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE5beginEv) +STUB("S5-tk4jGzoc", _ZN3sce2Np9CppWebApi6Common6String4nposE) +STUB("S5272bFXxR8", _sceNpHeapStrdupImpl) +STUB("S54-qulDV-c", _ZN3JSC13JSSetIterator6s_infoE) +STUB("S56ra1+Tymg", sceLoginDialogOpen) +STUB( + "S5ALl2AHMGI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEED2Ev) +STUB("S5Et5SFHGdU", _ZL11_sceLibcNewm) +STUB( + "S5ItFc+7Cec", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB("S5JxQnoGF3E", _ZN3sce4Json6Parser5parseERNS0_5ValueEPKcm) +STUB("S5SRaPdeowU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEE7add_refEv) +STUB( + "S5T-VarsnYk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEEaSERS9_) +STUB("S5TOIvYsqtg", _ZN3sce7Toolkit2NP15AppSTLAllocatorIiED2Ev) +STUB("S5UioapzXKQ", _ZNK3sce2Np9CppWebApi13InGameCatalog2V55Image7getTypeEv) +STUB( + "S5WbPO54nD0", + _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tmPKcSE_) +STUB("S5Wg-7LnSeA", jpeg_idct_10x5) +STUB("S5XL3ThcqpQ", _ZN3NTF17URLRequestMessage8destructEPS0_) +STUB("S5akQDIp6sg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEC2ERKS7_) +STUB( + "S5cVeHziBhw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEEaSERSA_) +STUB("S5deBYqi9vc", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku18unsetOriginalPriceEv) +STUB("S5eMvWnbbXg", sceAppContentDownload0Shrink) +STUB( + "S5iFimbVhB0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEmmEi) +STUB("S5oYc-EzQnk", _ZNK3WTF6String4utf8ENS0_14ConversionModeE) +STUB("S5pL+zLvJPI", sceApplicationSetApplicationFocus) +STUB( + "S5sSmvxaLio", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEE7get_refEv) +STUB( + "S5wKaUyFzFI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEED2Ev) +STUB("S5wUrkE+I-E", ures_getLocaleByType) +STUB( + "S61+r56orEw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEC1EPS8_) +STUB( + "S643rg-YxlA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEC1ERKS7_) +STUB("S64uHO5fVL8", jpeg_free_small) +STUB( + "S69a7x8g7jM", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody30getComparedLastUpdatedDateTimeEv) +STUB("S6FZEnyltoU", _ZN3JSC8JSObject10putByIndexEPNS_6JSCellEPNS_14JSGlobalObjectEjNS_7JSValueEb) +STUB("S6G1p1bQBQo", sceCesBig5ToUtf8) +STUB("S6LHwvK4h8c", scalblnf) +STUB("S6MEVvJMtuk", mono_md5_update) +STUB("S6NzIicbleU", _ZN3WTF17PrivateSymbolImpl6createERNS_10StringImplE) +STUB("S6Sf-zsPTgc", _ZN7WebCore14StaticNodeListD2Ev) +STUB( + "S6UWQo+tDNM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEC2Ev) +STUB( + "S6V7XsyXHDI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEixEm) +STUB("S6VmHrSuXfc", _ZN3sce7Toolkit2NP2V212ActivityFeed9StoryUserC2Ev) +STUB("S6W8OlMcTz8", + _ZN3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallbackC2ERS5_) +STUB("S6Z573DNSJE", _ZN3JSC8Debugger16applyBreakpointsEPNS_9CodeBlockE) +STUB( + "S6ZRGCYDkvo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "S6a6qzBu2ss", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE8pushBackERKS8_) +STUB( + "S6iPL2AvARk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEEC2ERSA_) +STUB("S6ieIssLpCA", cairo_path_extents) +STUB("S6luQz76AQ4", _ZN3sce2np9SemaphoreD0Ev) +STUB("S6tMey2sRNM", _ZN3sce2Np9CppWebApi13InGameCatalog2V55Error9setSourceEPKc) +STUB( + "S6wE3h-0v4w", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEiRNS2_10LibContextEPT_m) +STUB("S6wlKLdicxQ", _ZN7WebCore16HTMLTableElement11createTFootEv) +STUB("S6ycXc7hCMQ", GCC_except_table64) +STUB( + "S7-2CKX8OZo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE10setContextEPNS2_10LibContextE) +STUB( + "S70jf1fQT00", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEptEv) +STUB( + "S74a8dYy6Og", + _ZN3sce2Np9CppWebApi14SessionManager2V19ToFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_2ToEEE) +STUB("S76vfDNu6eI", tcsetsid) +STUB("S7Afe0llsL8", _ZN3sce2np4UserC1Ev) +STUB("S7FMltXS0QM", _ZN3sce2np14JsonDocBuilderC2EPKNS0_9JsonValueE) +STUB("S7ILo+YCsOA", _ZN7WebCore17FrameLoaderClient37dispatchDidReachVisuallyNonEmptyStateEv) +STUB("S7J725TkK6E", WKContextConfigurationShouldCaptureAudioInUIProcess) +STUB("S7JSTuqsMMU", ustr_hashICharsN) +STUB("S7L4OYSnC0Q", EVP_PKEY_free) +STUB("S7Loz68r3RI", _ZNK7WebCore18PlatformTimeRanges13totalDurationEv) +STUB( + "S7MUipcyDp0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEEaSERSA_) +STUB("S7OVJvESBGc", sceDataTransferTargetRequestAbortSearch) +STUB( + "S7Oxlgv+21w", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBody8fromJsonERKNS_4Json5ValueE) +STUB( + "S7P1KX+ZjMI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE21intrusive_ptr_sub_refEPS9_) +STUB("S7QTn72PrDw", sceNpDeleteRequest) +STUB("S7VZWmI1u04", glIsFramebuffer) +STUB( + "S7WuGm8RY44", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer28getxPsnAcceptPlatformNamePs5Ev) +STUB( + "S7brPMfji4M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "S7d5-c7ZtAM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("S7g5563zuFU", _ZN19ScePssCMediaDecoder6DecodeEPKvjRjPvjS2_S2_) +STUB("S7h1031-wWw", sceMoveSetLightSphereForTracker) +STUB("S7kkgAPGxLQ", _ZNSt15_Num_float_base9is_signedE) +STUB("S7kvkV6SznU", _ZN7WebCore13getBackingSetERN3JSC14JSGlobalObjectERNS0_8JSObjectE) +STUB( + "S7lZsY4cSGs", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_11EntitlementENS1_15AppSTLAllocatorIS5_EEEEC2Ev) +STUB("S7oEA8nBDNI", uidna_IDNToASCII_67) +STUB( + "S7puumSmSho", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEEC1ERSA_) +STUB("S7qOCsWaBPY", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanityaSERS5_) +STUB("S7r7-hGiFO8", + _ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForRead13getSpectatorsEv) +STUB("S8-l0fcdnq4", _ZN12video_parser13cVideoMetaVWG18_createChapterInfoERj) +STUB( + "S83l3oBWCkk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEC1EPNS2_10LibContextE) +STUB("S83yx-vretc", _ZN3sce7Toolkit2NP2V24Core12ResponseBase9setLockedEb) +STUB( + "S84qRQ0bFpI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE8copyFromERKS9_) +STUB("S8667Ll-PjE", sceCesRefersUcsProfileIso8859_5) +STUB("S89vdgAwtIE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEC1Ev) +STUB("S8GFjCqPuUs", _ZN7WebCore9HTMLNames11dirnameAttrE) +STUB( + "S8HrNj7LJHI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEE5resetEPS6_) +STUB("S8KDfwsVl+A", _ZN7WebCore18DOMWindowExtensionD2Ev) +STUB( + "S8NC57PFC7U", + _ZN7WebCore24CoordinatedGraphicsLayer12replaceChildEPNS_13GraphicsLayerEON3WTF3RefIS1_NS3_13DumbPtrTraitsIS1_EEEE) +STUB( + "S8PJ2BgKgy8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEneERKS9_) +STUB("S8TLtKfZCfc", _ZTVN3sce2np9JsonValueE) +STUB("S8UkJo5W--s", _ZN3sce7Toolkit2NP2V27Session18AvailablePlatformsC2Ev) +STUB("S8aGuRbsV0A", Java_java_io_UnixFileSystem_checkAccess) +STUB( + "S8dHwZnK0g0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("S8e6HVhtyn0", _ZN7WebCore15AffineTransform9translateERKNS_10FloatPointE) +STUB("S8kp05fMCqU", _ZTSSt16nested_exception) +STUB("S8rXFsBP23Q", + _ZNK7WebCore6JSNode21pushEventHandlerScopeEPN3JSC14JSGlobalObjectEPNS1_7JSScopeE) +STUB( + "S8u6-fpUhE0", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayerD2Ev) +STUB( + "S8ujF8m7tbE", + _ZN3sce7Toolkit2NP2V26Trophy13setScreenshotERKNS3_7Request13SetScreenshotEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB( + "S8wQqlloFTo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEC1Ev) +STUB("S9+48-4+2wo", ucnv_getSubstChars) +STUB("S90Lr2Zf58E", T7hi) +STUB("S911A3deFpc", _ZNO3WTF6String12isolatedCopyEv) +STUB("S92YIyCCUhs", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIdEC1Ev) +STUB( + "S9B1yTBxlig", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEEC2ERSA_) +STUB("S9D8JSYIrjE", sceNpMatching2SetRoomDataInternal) +STUB("S9GxnkRjq7E", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_20ChallengeRecvDetailsEE10deallocateEPS3_m) +STUB("S9IH+kvDNU8", scePerfPmcSdfSetCounter) +STUB( + "S9LUM-obi7g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE7popBackEv) +STUB( + "S9M5HZAQeFM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEEC1ERSA_) +STUB("S9NQxKXLYMw", _ZNK9Inspector14ConsoleMessage6columnEv) +STUB( + "S9OFLX93530", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEC1Ev) +STUB( + "S9SfgHqlWcU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEED1Ev) +STUB( + "S9WtwOIjO5w", + _ZN9Inspector21DOMFrontendDispatcher13setChildNodesEiN3WTF6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol3DOM4NodeEEENS1_13DumbPtrTraitsIS8_EEEE) +STUB( + "S9dG+qdl+Ws", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB( + "S9dhMFUw7lA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEE3getEv) +STUB( + "S9f4oarMMV4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "S9iA0GU8Lv4", + _ZN9Inspector21InspectorConsoleAgent10stopTimingERKN3WTF6StringEONS1_3RefINS_15ScriptCallStackENS1_13DumbPtrTraitsIS6_EEEE) +STUB("S9lElfq7kSQ", _ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_11EntitlementEE8max_sizeEv) +STUB("S9pzhyNVdFE", WKURLIsEqual) +STUB("S9xDus0Cums", sceNpManagerIntAddSigninStateCallback) +STUB( + "S9xIdPfPV0o", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE5startEPNS2_10LibContextE) +STUB("S9xQe4IDLbY", _ZN7WebCore22EmptyFrameLoaderClient9userAgentERKNS_3URLE) +STUB( + "S9yqBoiuQlM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEE11get_deleterEv) +STUB("SA-aNM8Q2yA", __asan_stack_malloc_always_0) +STUB( + "SA4MeKESrgA", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer14haskeepHtmlTagEv) +STUB("SAB+QaBUXA8", WKViewPaint) +STUB("SAJaef7EP6A", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEED1Ev) +STUB( + "SAODcZ25Z3s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEppEv) +STUB("SAPt0LOoWnM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEC1Ev) +STUB("SARzA6SwKDE", mono_aot_Microsoft_CSharpjit_code_start) +STUB("SASG57dtO9s", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEEptEv) +STUB( + "SAay-pLdLLo", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEEiRNS2_10LibContextEPT_m) +STUB("SAd0Z3wKwLA", tanhf) +STUB( + "SAd9efR7cLk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEED2Ev) +STUB("SAeuSzwbUgY", JVM_CompileClass) +STUB( + "SAf1izaRAZs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEED2Ev) +STUB("SAfhzJPcjuk", sceAgcDriverRequestCaptureStart) +STUB( + "SAgiggg6sCQ", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("SAhNzX-dYF4", uregex_hasAnchoringBounds_67) +STUB("SAygzgTLuLg", unorm_normalize_67) +STUB("SB138NuKbpQ", _ZNK7WebCore8Position26trailingWhitespacePositionENS_9EAffinityEb) +STUB("SB2LzHAzJus", FTC_ImageCache_New) +STUB( + "SB3zg+5PZFM", + _ZN3sce2Np9CppWebApi14SessionManager2V159PostGameSessionsSessionIdMemberSpectatorsRequestBodyFactory7destroyEPNS3_52PostGameSessionsSessionIdMemberSpectatorsRequestBodyE) +STUB("SB7YXgR8WSE", sceUltGetReaderWriterLockInfo) +STUB( + "SB7Z6EVxtWk", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEEiRNS2_10LibContextEPT_m) +STUB("SBBEKHqvmNk", Java_java_lang_reflect_Array_getLong) +STUB( + "SBBILMusZlc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEEdeEv) +STUB( + "SBBTV3H8OdQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE5beginEv) +STUB("SBIme60FhnY", + _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead17joinDisabledIsSetEv) +STUB("SBJnmDKcWPw", _ZN3JSC7Symbols29allocateInt32ArrayPrivateNameE) +STUB("SBKru8dr72E", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEE7add_refEv) +STUB("SBOI-vjWAPY", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession18setNonPsnSupportedERKb) +STUB( + "SBQ0uFoUymc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEEptEv) +STUB("SBRpIeHuTtI", u_fputs_67) +STUB( + "SBVdlD8S7Gw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "SBcyc3suN+s", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUser10getslotIdsEv) +STUB("SBg0AtKqs5k", uhash_hashLong_67) +STUB("SBn5gEySZK4", _ZN7WebCore19ResourceRequestBase22clearHTTPAuthorizationEv) +STUB("SBs-VLsAl4E", ubrk_previous_59) +STUB("SBuVOyegEnA", _ZN7WebCore16HTMLTableElement11deleteTFootEv) +STUB("SBurFYk7M74", sceUserServiceGetGlsTtsVolume) +STUB("SBy9Yq-YiKc", mono_aot_System_Reactive_Linqunbox_trampolines_end) +STUB("SC0YIeezXfI", _ZNK7WebCore19MediaElementSession20behaviorRestrictionsEv) +STUB("SC58p5kvRVg", _ZN3WTF24isDefaultPortForProtocolEtNS_10StringViewE) +STUB( + "SC9OQAJiYzI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE7popBackEv) +STUB( + "SC9cGUg+Ph4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEneERKS9_) +STUB( + "SCC1DdJZ13k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEC1ERS7_) +STUB("SCC7QevtelE", GCC_except_table103) +STUB("SCCKYU88+9Y", + _ZN3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectator8fromJsonERKNS_4Json5ValueE) +STUB( + "SCJnJDnr+eg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEC1EPS8_) +STUB("SCKdCW7oVGs", _ZN3sce7Toolkit2NP28NpSessionDetailedInformationD1Ev) +STUB( + "SCNtiASCKBw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEmmEv) +STUB("SCSNVsQRpSw", _ZN3sce2Np9CppWebApi7Matches2V120ResponseInGameRoster10getPlayersEv) +STUB( + "SCVZeKb1ElY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEneERKS9_) +STUB("SCZi6aRgMA4", _ZN15AbstractStorage14FacebookFolder12create_albumEv) +STUB("SCdKl+0EnuQ", glHint) +STUB("SCh+k8yHj6k", usearch_setOffset_59) +STUB( + "SClFu9ZUgP8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE4termEv) +STUB("SCoAN5fYlUM", sceAgcDriverUnregisterAllResourcesForOwner) +STUB("SCoaMrvikBA", _ZN7WebCore13HitTestResult12setInnerNodeEPNS_4NodeE) +STUB("SCph4ZbkqzU", sceVrTracker2GetPlayAreaBoundaryGeometry) +STUB( + "SCuwi6RTbvE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE7reserveEi) +STUB("SCw7-qws4dU", WKWebsiteDataStoreConfigurationCopyResourceLoadStatisticsDirectory) +STUB("SD2U5LdC6vw", _ZStL5swfunRSt8ios_basei) +STUB("SD403oMc1pQ", _ZNSt8messagesIcEC1ERKSt8_Locinfom) +STUB("SD7oNCIQWvE", sched_getscheduler) +STUB("SD7sPC9B3-Q", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeINS1_11TusVariableEPvEEneERKS7_) +STUB( + "SDCKr+PlzXs", + _ZN3sce7Toolkit2NP3TUS9Interface12getVariablesEPNS1_9Utilities6FutureISt6vectorI16SceNpTusVariableNS1_15AppSTLAllocatorIS7_EEEEERNS1_21TusGetVarsInputParamsEb) +STUB( + "SDEQvKemFi8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEdeEv) +STUB( + "SDF5wwIVjPY", + _ZN7WebCore13createWrapperEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_4NodeENS5_13DumbPtrTraitsIS7_EEEE) +STUB( + "SDFCzwf+6WM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEEC2ERSA_) +STUB( + "SDFSGwuNt-Q", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemProperties12getaccountIdEv) +STUB( + "SDG8lgx16PQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEmmEi) +STUB( + "SDKuL-uVerY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEdeEv) +STUB("SDPzjFN7y4E", FTA_Support_Hinter_AutoFitter) +STUB("SDQnMUGaRsg", monoeg_g_ptr_array_foreach) +STUB("SDSatFdf8ug", sceCesGbToUcs2) +STUB("SDZExf6TW4I", _Z23VideoPlayerVcs_SetSpeedii) +STUB("SDZK3XYrvkk", WKWebsiteDataStoreSetAppBoundDomainsForTesting) +STUB( + "SDbXYy7HCdY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEE11release_refEv) +STUB( + "SDe9ruIEQLc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "SDfd0iWoMOE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE13goToProcessedEi) +STUB( + "SDgNKHkLtZ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "SDhtP5ONbhg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE3endEv) +STUB("SDkV9xhINKI", scePthreadBarrierattrInit) +STUB("SDoPm73tOyI", sceVideoOutGetPortStatusInfo_) +STUB("SDsiUijzXvE", mono_aot_Sce_Vsh_VideoPlayerplt_end) +STUB("SE+sQrvs7vQ", _ZN7WebCore16findIntersectionERKNS_10FloatPointES2_S2_S2_RS0_) +STUB( + "SE0NR3M79eQ", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi42ParameterWithBinaryRequestBodyToUploadData10initializeEPNS1_6Common10LibContextEPKci) +STUB("SE8Yc9sew5I", _ZN3sce2Np9CppWebApi14SessionManager2V15Error8fromJsonERKNS_4Json5ValueE) +STUB("SE8wOZcQFuc", _ZN3WTF6StringC2EPKDs) +STUB("SE9l3S6-4PI", _ZN12Mp4Retriever18m_mpegSearchStatusE) +STUB("SEJOlyfPEXQ", mono_aot_System_ComponentModel_Compositionjit_code_start) +STUB( + "SEKyW3js8VY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEED2Ev) +STUB( + "SEMcTcnMxHs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEEC2ERSA_) +STUB( + "SEOG3laA+rs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEEaSERSA_) +STUB( + "SEOMy2QvDjQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEE11release_refEv) +STUB("SEU9eYrQFsA", sceVideoCoreInterfaceSetCanvasId) +STUB("SEWTF76zSjk", _ZN3WTF11Persistence7Encoder6encodeEh) +STUB( + "SEWhIAC92mM", + _ZN7WebCore25deleteCookiesForHostnamesERKNS_21NetworkStorageSessionERKN3WTF6VectorINS3_6StringELm0ENS3_15CrashOnOverflowELm16EEE) +STUB( + "SEb8E3BUzj8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEC1EPKS8_) +STUB("SEdDsPBIjm4", _ZN4Manx14NetworkProfile3setENS_14SettingOptTypeEPKc) +STUB("SEdQo8CFmus", sceUsbdControlTransferGetSetup) +STUB("SEdzXWGyzjo", __sanitizer_contiguous_container_find_bad_address) +STUB("SEfLPEEpYyY", _ZN7WebCore16DOMGuardedObject7isEmptyEv) +STUB("SEgecjvVvtM", _ZN3sce3Xml3Dom15DocumentBuilderC1Ev) +STUB("SEggctIeTcI", sceAudio3dPortGetList) +STUB("SEjlISobHZQ", JVM_GetClassCPEntriesCount) +STUB( + "SElAuXJFIww", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEE21intrusive_ptr_add_refEPS7_) +STUB( + "SEnzcxgEr64", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEEC2ERKSA_) +STUB( + "SEv2cTLsQjI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("SF01Oj2K53g", _ZN15AbstractStorage18DailymotionContent4ReadEPvlPl) +STUB("SF1QQ6-x304", _ZNK7WebCore9FloatQuad13isRectilinearEv) +STUB("SF1VkTIGHoA", _ZN3sce3pss5orbis5video14VideoPlayerVcs21GetReadyStateForDebugEv) +STUB("SF47kB2MNTo", sceNetEpollCreate) +STUB("SF6wNPoF-y0", _ZN3sce7Toolkit2NP2V27Session7Request6Create10STATUS_LENE) +STUB( + "SFJffBphfsY", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEEC2Ev) +STUB("SFLp7Zjq3n8", WKAccessibilityEnableEnhancedAccessibility) +STUB("SFMU423YB0o", ucnv_resetToUnicode) +STUB("SFUXLmi3y7U", _ZN3JSC7Symbols25requestSatisfyPrivateNameE) +STUB("SFZYbH7eOnk", _ZN3sce2np13NpAccessTokenD0Ev) +STUB( + "SFgfcUnKz78", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEC1EPS8_) +STUB("SFjw4+HOVOQ", ktimer_create) +STUB( + "SFk8mfMEzS0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEEdeEv) +STUB("SFkKVDcl0ww", _ZNK3sce2Np9CppWebApi13InGameCatalog2V55Error7getCodeEv) +STUB("SFlW4kqPgU8", posix_spawnattr_setschedparam) +STUB( + "SFphE4esOYY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("SFuY4EfwLwE", cpp_demangle_read_number) +STUB("SFut4SyB1cY", sceUlpMgrGetNetmpListenSock) +STUB( + "SFvgRmDy9QM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE4initEv) +STUB("SFxTMOfuCkE", pthread_rwlock_tryrdlock) +STUB( + "SFxitbA2wnM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE21intrusive_ptr_sub_refEPS9_) +STUB("SFz5prdeR54", sceFsSetAttribute) +STUB("SFzDnsUdC4Y", FTC_ImageCache_Lookup) +STUB( + "SFzo39L-Hgo", + _ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime13ObjectPreview7SubtypeEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE) +STUB("SG4rhheZSpw", sceMusicFwGetLoop) +STUB("SGAQzmDIoqQ", _ZN7WebCore17CredentialStorage16clearCredentialsEv) +STUB( + "SGEb3trrZSM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEC2Ev) +STUB("SGKI9O+5F+g", ucurr_getDefaultFractionDigits_67) +STUB( + "SGRe5bJ+H6k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEEC1Ev) +STUB("SGSNz6luI2s", sceSpKernelGettimeofday) +STUB( + "SGW4XqdUSSM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEC1ERS7_) +STUB("SGdtwfblKXg", sceApplicationSpawnCommonDialog) +STUB( + "SGgysgV8M5A", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("SGhDIARE2aU", _ZN3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap14unsetAccountIdEv) +STUB("SGvlvQNtSpM", _ZThn16_N9Inspector21InspectorRuntimeAgent7disableERN3WTF6StringE) +STUB( + "SH1GYvUPTXI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEplEm) +STUB("SHAUfEIWSOM", sceDataTransferTargetRequestGetTitles) +STUB( + "SHELaeUUY3A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEED1Ev) +STUB("SHInb+l58Bs", SSL_releaseTables) +STUB("SHJjgTjicng", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_12CategoryInfoEE3getEv) +STUB( + "SHKjGz+o14c", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEeqERKS9_) +STUB( + "SHKtkCDxH6c", + _ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime12EntryPreviewEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE) +STUB("SHNlI0DFs6s", mono_aot_Sce_Vsh_Sl2_NativeQueueClientunbox_trampolines) +STUB("SHTQpizk+f8", mono_object_isinst) +STUB( + "SHV3DrkcDBw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "SHXfvciUwx4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEE11get_deleterEv) +STUB( + "SHhTTHLE4A8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEE7add_refEv) +STUB("SHlt7EhOtqA", fgetpos) +STUB("SHmLauSB1MU", _ZNK7WebCore15JSDOMWindowBase22scriptExecutionContextEv) +STUB("SHsgexv+WaE", rgctx_fetch_trampoline_rgctx_42_p) +STUB("SHtAad20YYM", _ZNK3sce4Json5Value7getTypeEv) +STUB("SHtstVxKix4", WKPreferencesSetForceFTPDirectoryListings) +STUB("SI++DtNK+-M", sceSysCoreGetEventCount) +STUB("SI3V3I2C+JY", umutablecptrie_fromUCPMap) +STUB("SI515zp9SEE", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V18PlatformEEppEi) +STUB("SIMyZiidVJI", _ZN3sce7Toolkit2NP2V28Matching7Request9LeaveRoomD1Ev) +STUB("SIR4MODbE-8", _ZNSt15basic_streambufIwSt11char_traitsIwEE7_UnlockEv) +STUB("SIRdgEH3wA4", sceKernelWriteWriteCounterCommand) +STUB("SIT3HlFU45o", mono_aot_Sce_Vsh_VideoPlayerplt) +STUB( + "SITgjK3EUFU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEneERKSA_) +STUB("SIUk+wWJO0w", UI_method_set_closer) +STUB("SIV74lgzM60", _ZN9JITBridge12ringDoorbellEiNS_8DoorbellE) +STUB("SIZrguvplN4", uloc_getCountry) +STUB("SIb1ZrHqPNI", _ZN3JSC11VMInspector17codeBlockForFrameEPNS_2VMEPNS_9CallFrameEj) +STUB("SIe1ZmW7e7s", _ZN3sce4Json5Value3setEm) +STUB( + "SIfz9dWu9Ks", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEE7get_refEv) +STUB("SIgZme0VK34", mono_debugger_run_finally) +STUB("SIibyT2wPaU", _ZNK7WebCore11MediaPlayer24supportsPictureInPictureEv) +STUB( + "SIlo3lZqAtc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("SIpg1p5GAT8", utrie_unserializeDummy_67) +STUB("SIqT0iWoeck", _ZN7bmalloc11EnvironmentC2ERKSt11scoped_lockIJNS_5MutexEEE) +STUB("SIs881ae+Us", _ZN7WebCore5Image6createERNS_13ImageObserverE) +STUB( + "SIwOQBw5MC8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEE11release_refEv) +STUB("SIyekYGjGW8", _ZN7WebCore10Pasteboard5clearEv) +STUB( + "SJ2-zvyZnrs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEneERKS9_) +STUB("SJ3i0DXP8vg", sceAjmBatchJobDecodeSplit) +STUB("SJ4QncjRIbY", _ZN7WebCore24CoordinatedGraphicsLayerD1Ev) +STUB( + "SJ5Gzy7LIG4", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivitiesD1Ev) +STUB( + "SJAwXCzP4oY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEppEv) +STUB( + "SJBKLQrHqFw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEppEv) +STUB("SJEuv7TxS5U", scin) +STUB("SJFDssaPktc", _ZN3sce2Np9CppWebApi11Matchmaking2V112ErrorFactory7destroyEPNS3_5ErrorE) +STUB("SJJia2hm2ig", _ZN3JSC14ProtoCallFrameC2Ev) +STUB("SJMLSxaYvWU", cairo_ft_scaled_font_unlock_face) +STUB("SJQ3wqgpjjc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEppEi) +STUB( + "SJQt-GoMKME", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEC1Ev) +STUB("SJWwfPd52Ug", _ZN6WebKit18NetworkProcessMainEiPPc) +STUB("SJZPlWOFp24", _ZN9Inspector25NetworkFrontendDispatchernaEmPv) +STUB("SJeYXrQ5qs8", _ZN7WebCore9HTMLNames23ongotpointercaptureAttrE) +STUB( + "SJfXz7BXqbw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEED2Ev) +STUB("SJr+OLPnyS4", u_charDirection_67) +STUB("SJs1SQziTrs", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEEC1ERKS6_) +STUB("SJux-9UF6Qo", _ZN3WTF15AutomaticThread4joinEv) +STUB("SK-S7daqJSE", sceNpAuthWaitAsync) +STUB( + "SK-rxk8oEIU", + _ZN9Inspector28InspectorScriptProfilerAgent27didCreateFrontendAndBackendEPNS_14FrontendRouterEPNS_17BackendDispatcherE) +STUB("SK0Syya+scs", _ZTIDn) +STUB( + "SK2UF3FYqM4", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("SKA58Ri8JUs", _ZN7WebCore8SVGNames16color_profileTagE) +STUB( + "SKGLjhnWLuQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEdeEv) +STUB( + "SKJKSdXakhc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE21intrusive_ptr_add_refEPS9_) +STUB("SKJQwgudGFg", sceNetCtlApDialogOpen) +STUB("SKJvjnm8gf8", delegate_virtual_invoke_0) +STUB("SKKTo1ngcis", _ZN3sce2np9JsonValueC2EP14SceNpAllocatorNS1_9ValueTypeE) +STUB("SKMDsFP5-Cs", NetCtlTermNative) +STUB( + "SKNVlM5RloY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE3endEv) +STUB( + "SKOodVygmws", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessions9terminateEv) +STUB( + "SKPoyFVAEug", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE5eraseENS2_8IteratorIS6_EERS9_) +STUB("SKUldaN3e2A", FTA_Remove_Module_raster5) +STUB("SKZ7PFisSuc", WKBundleHitTestResultCopyImage) +STUB("SKZfQMP+fgw", uscript_getSampleString_67) +STUB("SKdAMYXIPZU", mono_aot_Sce_Vsh_UpdateServiceWrapperplt) +STUB( + "SKipQ-+617c", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEEptEv) +STUB( + "SKjm5eEDXFQ", + _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody18setCreatedDateTimeERK10SceRtcTick) +STUB("SKlr+nCivO4", EVP_EncryptInit_ex) +STUB( + "SKpIW6rHuWI", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeaders21intrusive_ptr_add_refEPS5_) +STUB("SKq7NiL8fA8", sceAvSettingSimulateProcessOutputModeArbitration_) +STUB( + "SKs0M5V5YSI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEmmEv) +STUB( + "SKt5R8Fc84Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEppEv) +STUB( + "SKtA2pPXY6U", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEplEm) +STUB( + "SKtyjKhxcNg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEcvbEv) +STUB("SKvobx84-2Y", _ZN3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectatorD2Ev) +STUB("SKvxLm9t0OM", + _ZN7WebCore18TextureMapperLayer24paintUsingOverlapRegionsERKNS_25TextureMapperPaintOptionsE) +STUB( + "SKyAHkts6UE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEE11get_deleterEv) +STUB( + "SL0NjkUHiTE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEC2EPS8_) +STUB("SL6AQAnM5WU", scePigletSetConfiguration) +STUB( + "SL7lCZecuvA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEE11release_refEv) +STUB("SL98pRGwFko", + _ZNK3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate21playerAttributesIsSetEv) +STUB( + "SLALmISjAGE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "SLE6aoS-GtM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEC2EPNS2_10LibContextE) +STUB("SLJzHqnOERE", _ZN7WebCore32ScrollingStateFrameScrollingNode15setFooterHeightEi) +STUB("SLK65JLYrUE", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence8PresenceEEC1Ev) +STUB( + "SLKHfJOr4sw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE21intrusive_ptr_add_refEPS9_) +STUB("SLM4FXY2+D8", jpeg_idct_11x11) +STUB("SLPuaDLbeD4", _ZN3sce2np4Cond4WaitEj) +STUB("SLSp+Z+-W9Y", _ZNK7WebCore6Quirks25needsYouTubeMouseOutQuirkEv) +STUB( + "SLWp86zt+Co", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "SLY+OehEJJ0", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_20NpSessionInformationENS1_15AppSTLAllocatorIS5_EEEED1Ev) +STUB("SLZQS8nBQe4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEEaSERS9_) +STUB("SLmN+1BEUig", WKPageClearUserMediaState) +STUB("SLvuzd81niM", sceHmdGetDistortionWorkMemoryAlignFor2d) +STUB("SLwy1Gp0i08", rgctx_fetch_trampoline_rgctx_93_p) +STUB("SLxNhwWCSJE", _ZN3sce7Toolkit2NP15AppSTLAllocatorIcEC1Ev) +STUB("SM0Cf+K17Yw", _ZN3WTF21RefCountedLeakCounter24cancelMessageSuppressionEPKc) +STUB("SM7OEf11LCA", _ZN3sce2npneERKNS0_8NpCommIdERK20SceNpCommunicationId) +STUB( + "SM7e1RC1ueI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEaSERS7_) +STUB( + "SM8A-rZWths", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEED1Ev) +STUB("SM8dikCNcJg", _ZN7WebCore9HTMLNames25disableremoteplaybackAttrE) +STUB("SMAutLRmC5U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEE7get_refEv) +STUB("SMBeFW-E0gQ", _ZN7WebCore16HTMLTableElement13deleteCaptionEv) +STUB("SME4JBCrR2Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEC2Ev) +STUB( + "SMJ3ZI+lcnU", + _ZN7WebCore17JSDOMGlobalObjectC1ERN3JSC2VMEPNS1_9StructureEON3WTF3RefINS_15DOMWrapperWorldENS6_13DumbPtrTraitsIS8_EEEEPKNS1_23GlobalObjectMethodTableE) +STUB("SMN1c2XZjOg", _ZN3IPC15ArgumentDecoder6decodeERj) +STUB( + "SMRtoIblN54", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "SMUUdLaCh7E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEixEm) +STUB( + "SMVV9-tftEs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEaSERS7_) +STUB("SMWjd1XIZvc", mono_aot_System_Runtimemethod_addresses) +STUB("SMXKRrPDjFQ", scePlayReadyLicenseCount) +STUB("SMXx+EUireA", _ZN7WebCore21DiagnosticLoggingKeys24uncacheableStatusCodeKeyEv) +STUB( + "SMa6JH+-Kb8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEppEi) +STUB( + "SMa8dIHVJVE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEC2ERKS7_) +STUB( + "SMadOsCXLtQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB("SMbKDfT2xKA", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku9unsetNameEv) +STUB("SMevfKx0uXk", _ZN7WebCore26HTMLTextFormControlElement12setMaxLengthEi) +STUB("SMk2lpzuDmU", _ZNK7WebCore13HitTestResult12mediaIsVideoEv) +STUB("SMn1nTaD7kI", _ZN3sce7Toolkit2NP2V210Tournament7Request12SearchEventsD1Ev) +STUB( + "SMoTb+ejU6A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEC1Ev) +STUB( + "SMovo3JtVwM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEptEv) +STUB("SMr0Ma-uQt0", _ZNK7WebCore24MatrixTransformOperationeqERKNS_18TransformOperationE) +STUB("SMrFX4jl7qo", _ZN15AbstractStorage18DailymotionContent8SeekTimeElPl) +STUB("SMuOUDRFSw0", _ZN3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_errorD2Ev) +STUB( + "SN+LHhE0p6g", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE8capacityEv) +STUB("SN+Q1uBSOyI", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V116TaskAvailabilityEEC2EPS6_) +STUB("SN1NT+G1uTQ", monoeg_g_list_nth) +STUB("SN1RNalaWy8", rgctx_fetch_trampoline_mrgctx_36_p) +STUB("SN1ftgooArU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE8capacityEv) +STUB("SN4IgvT26To", _ZN3sce2np10JsonString6SetStrEPKc) +STUB( + "SN5ENfcrLUU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEED2Ev) +STUB("SN5oTjTdwlE", _ZN7WebCore6RegionC2EOS0_) +STUB("SN7rTPHS+Cg", sceSaveDataGetSaveDataCount) +STUB( + "SNIRgL67Tic", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEC1EPNS2_10LibContextE) +STUB("SNJKvTnMM8o", _ZN3sce7Toolkit2NP22UpdateAttributeRequestC1Ev) +STUB( + "SNPbJVG95ck", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEEC2Ev) +STUB( + "SNQKcoMZwaU", + _ZN3sce7Toolkit2NP6Trophy9Interface18trophyRetrieveListEPKNS1_25RetrieveTrophyListRequestEPNS1_9Utilities6FutureINS1_10TrophyInfoEEEb) +STUB("SNSLa0ggfpw", cairo_font_options_get_antialias) +STUB("SNT3Zpc+RwQ", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product14getDisplayNameEv) +STUB("SNXg0FqiboA", _ZN7WebCore6Editor7copyURLERKNS_3URLERKN3WTF6StringE) +STUB("SNdBm+sNfM4", __divxc3) +STUB("SNdZ+yGT2Tg", _ZN3JSC19disableSuperSamplerEv) +STUB("SNfmYlaoICc", mono_aot_System_Net_Http_WebRequestunbox_trampoline_addresses) +STUB("SNi0C-1dNr4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEdeEv) +STUB("SNwqnx6r3c8", _ZNK3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead10getNatTypeEv) +STUB("SNxP9g4ifrE", _ZN9Inspector22PageFrontendDispatcher19frameStoppedLoadingERKN3WTF6StringE) +STUB("SO-q9wKyVig", _ZN3sce7Toolkit2NP2V27Session7Request14SendInvitationC2Ev) +STUB( + "SO14q2XqPTU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEC2ERS7_) +STUB( + "SO92AhilxYs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEED1Ev) +STUB("SOAMmdlyaIc", sceAgcDriverCwsrSuspendAcq) +STUB("SOCxwiW2uqw", + _ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody15getNeedsTmpRankEv) +STUB("SOJbxOfhHuw", vzone_getNextTransition_67) +STUB("SOKQacNlDTw", _ZN7WebCore21DiagnosticLoggingKeys25failedLessThan2SecondsKeyEv) +STUB("SOMZ080N0wA", glIsSampler) +STUB( + "SOMj5TNznOc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEppEi) +STUB( + "SONfh19xWGI", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetBoolean4Ev) +STUB("SOVvUDCjLak", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus22setLastUpdatedDateTimeERK10SceRtcTick) +STUB("SOZzgxqVHIY", glVertexAttrib3f) +STUB("SOa1TPmDQJA", _ZN7WebCore12ISOWebVTTCue5parseERN3JSC8DataViewERj) +STUB( + "SOdOU-tce58", + _ZN3sce7Toolkit2NP11UserProfile9Interface27getPersonalDetailsAvailableEPNS1_9Utilities6FutureIbEEPKNS1_18UserProfileRequestEb) +STUB("SOgQGB2EsJs", _ZN7WebCore9HTMLNames9titleAttrE) +STUB( + "SOhViRaKYcM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE7reserveEi) +STUB("SOmyRqRpKIM", sceShellCoreUtilExecuteCrashReport) +STUB("SOo3Lwyglfo", sceAgcDriverHp3dLockStart) +STUB("SOsd9BOvA44", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEptEv) +STUB("SOx9LJtZNWw", sceIduUtilTerminate) +STUB("SP-7qOzwl7U", sceDebugInitForTest) +STUB("SP2010+gtqw", _ZN3sce2np12StreamWriter15WriteFilledDataEPNS0_6HandleEPNS0_9StreamCtxEcl) +STUB( + "SP2F5oh1mYw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEppEi) +STUB("SP2gwm36tlk", _ZN12video_parser22VpMpegvideoAvcParsePPSEPhiPNS_21VpMpegvideoAvcPPSCtrlE) +STUB( + "SP3JPOLT6b4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "SP93LYlWc9U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE6resizeEj) +STUB("SPFz9bHH5Kg", _ZN7WebCore9FontCache19fontForPlatformDataERKNS_16FontPlatformDataE) +STUB( + "SPIJ1E8ud1w", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("SPIYRBzCjIk", g_PS4TitleNPAgeRating) +STUB( + "SPIuLWBHlPQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEC1ERS7_) +STUB( + "SPPYTszg6LQ", + _ZN15AbstractStorage14MemfileContent14CreateInstanceESbIcSt11char_traitsIcENS_8StlAllocIcEEEPvm) +STUB("SPVkdqBsosQ", InitializeLib) +STUB("SPWCS7YkH5s", _ZN7WebCore24CoordinatedGraphicsLayer19setContentsTileSizeERKNS_9FloatSizeE) +STUB("SPfoDEd+Z-g", _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V113ErrorResponseD1Ev) +STUB("SPiW3NTO8I0", _ZTIPm) +STUB("SPiX3M2jYQU", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE7reserveEi) +STUB("SPjuCQXaTpU", _ZNK3sce2Np9CppWebApi6Common6VectorIdE5emptyEv) +STUB("SPlcBQ4pIZ0", _ZNSt14numeric_limitsIfE12min_exponentE) +STUB( + "SPpkFDZ5wsY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "SPsMWCLq9ZY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEplEm) +STUB("SPvSFDZ2WV4", sceSaveDataManualDownload) +STUB("SQ02ZA5E-UE", _ZNSt10filesystem10_File_sizeEPKc) +STUB( + "SQ09kiXiPdo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEC2Ev) +STUB("SQ4D6BHXn-E", _ZThn16_N9Inspector14InspectorAgent11initializedERN3WTF6StringE) +STUB( + "SQ5yd-Q3gnM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEptEv) +STUB("SQ7+L4f3Llc", mono_btls_x509_add_trust_object) +STUB("SQ9HlRcwJac", _ZN7WebCore4Page29startTrackingRenderingUpdatesEv) +STUB("SQG5BIoGODg", _ZNKSt9basic_iosIcSt11char_traitsIcEE6narrowEcc) +STUB("SQGetEuSblg", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product16getContentRatingEv) +STUB("SQGxZCv3aYk", signalcontext) +STUB("SQHmRTl7z3U", _ZN3JSC7Symbols15fillPrivateNameE) +STUB( + "SQJTHf1vDjI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "SQMjAiGtsiI", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession19setJoinableUserTypeERKNS3_16JoinableUserTypeE) +STUB("SQQ-6+Y+098", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend16FriendsOfFriendsEEC1Ev) +STUB("SQR1u6Zuzk0", _ZN7WebCore11DisplayList13ClipOutToPathD2Ev) +STUB("SQRcDBsMDZU", + _ZN3WTF14FileSystemImpl8openFileERKNS_6StringENS0_12FileOpenModeENS0_20FileAccessPermissionEb) +STUB("SQS9ybMNpAA", Java_java_util_zip_ZipFile_getTotal) +STUB("SQW8red2Ny4", _ZN7WebCore15JSFetchResponseD2Ev) +STUB( + "SQWTx-U8+mE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEC1EPS8_) +STUB("SQWusLoK8Pw", sceSaveDataDelete5) +STUB( + "SQY6UPHjGmo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEeqERKS9_) +STUB( + "SQeU+j+8NtQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("SQftAFjB69E", WKPreferencesSetForceSoftwareWebGLRendering) +STUB("SQgWFUmTTew", _ZN12video_parser5vpcom15_DirectoryCloseEPNS_8_vp_fileE) +STUB("SQiTQ1lBg8Y", mono_get_exception_security) +STUB( + "SQnPgvyxYM4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEeqERKS9_) +STUB("SQnU46IF77s", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE7popBackEv) +STUB("SQpEx4qQcpo", jpeg_idct_1x2) +STUB( + "SQukX2jYRXE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEppEi) +STUB( + "SR3BKonD8yk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEppEv) +STUB("SR402tUojfI", _ZN7WebCore8SVGNames6setTagE) +STUB( + "SR4p7f7RZak", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEED2Ev) +STUB( + "SR6WO5s0a+w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "SR76Quk0L9Y", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("SR9U4-+eibc", eglQuerySurface) +STUB("SRDI8vYT+54", vm_send_JitCompileMethod) +STUB( + "SRHskNsGqAk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEneERKS9_) +STUB("SRI6S9B+-a4", atof) +STUB("SRIMbZv6BZ8", + _ZN3sce2Np9CppWebApi7Matches2V122RequestPlayerStatisticC1EPNS1_6Common10LibContextE) +STUB( + "SROi03jXHGI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEED2Ev) +STUB("SRQSpP4QK5U", sceVideoOutUnregisterBufferAttribute) +STUB("SRSf+DNA1lA", dayPeriodRulesCleanup_67) +STUB( + "SRXwx--32Qs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("SRcYM5+KOLI", _ZN12video_parser18cMp4FFLHndlManager10initializeEv) +STUB("SRiMOSEjqN4", _ZN23sceMetadataReaderWriter13KeyValueArray7releaseEPFvPvE) +STUB( + "SRkrHNdA7Ac", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEppEi) +STUB( + "SRnRaBWJI1c", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEEcvbEv) +STUB("SRsYKZ4hi8k", Java_com_sun_bluray_ui_FAABaseComponent_waitVblank) +STUB( + "SRvh5hjMs2g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB("SRy12fPx14Q", _ZN3sce7Toolkit2NP2V24Auth7IdToken5resetEv) +STUB("SS8MBSmaC2c", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V223FilterProfanityResponse11unsetStatusEv) +STUB( + "SSATkjhduQM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEE5resetEPS8_) +STUB("SSCaczu2aMQ", sceFontDestroyString) +STUB("SSDCISi-VdI", _ZN3sce2Np9CppWebApi13InGameCatalog2V55Image7setTypeERKNS4_4TypeE) +STUB("SSDEc8k0zOs", scePsmGetConfiguration) +STUB("SSHyhY079SI", _ZN7WebCore9HTMLNames6bdiTagE) +STUB("SSI2xRfgKJo", png_set_interlace_handling) +STUB("SSLZ34cGwJ4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEixEm) +STUB("SSTsbTCkjEI", uspoof_getRecommendedSet_67) +STUB( + "SSWCFYDchLA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEC1ERS7_) +STUB("SSXeWFPsrNQ", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEEcvbEv) +STUB( + "SSkLcB7Qg10", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("SSlCLGevxB8", WKPreferencesGetApplePayCapabilityDisclosureAllowed) +STUB( + "SSnIGq5Gso0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEEptEv) +STUB( + "SSq9k4+mUxQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEppEv) +STUB( + "SSu0D7ESxRo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE21intrusive_ptr_add_refEPS9_) +STUB("SSvY6pTRAgk", _FDscale) +STUB("SSzqc35PoKY", _ZN3NTF5Mutex4lockEv) +STUB( + "ST6WlWKnIFg", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities14UserActivitiesC2EPNS1_6Common10LibContextE) +STUB( + "ST8ICT2xZcg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEE11release_refEv) +STUB("ST9AlDHhLlk", uloc_toUnicodeLocaleKey) +STUB("STB9dDI2Zic", ubidi_getLength_67) +STUB( + "STEXif0nA38", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE7popBackEv) +STUB( + "STHwmfsz468", + _ZN3sce2Np9CppWebApi14SessionManager2V111GameSession9setMemberERKNS1_6Common12IntrusivePtrINS3_31ResponseGameSessionMemberPlayerEEE) +STUB( + "STKRH5JMagA", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions35getxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB("STNAj1oxtpk", _ZTISt13basic_filebufIcSt11char_traitsIcEE) +STUB("STQ6R5heVjs", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE8pushBackERKS6_) +STUB("STRP8nL+j9w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEC1ERS7_) +STUB( + "STSh215IhuM", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitationsD1Ev) +STUB( + "STVNGdZmv0o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEEcvbEv) +STUB("STXna4FyqWw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEE7get_refEv) +STUB("STodwRyyjgc", mono_shared_mempool_destroy) +STUB("STrp1nbSFLw", _ZN7WebCore23computeSharedStringHashERKN3WTF6StringE) +STUB("STv6BjbPi+o", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIfEC1EPf) +STUB("SU0KTBJyQHA", mono_module_get_object) +STUB("SU7Tu7C4TYs", _ZNK7WebCore6Region8containsERKNS_8IntPointE) +STUB( + "SU7u8MkQ2tE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEmmEi) +STUB("SUEVes8gvmw", sceRudpSetEventHandler) +STUB( + "SULLM4YOY6E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("SUOUmSmPy5E", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry11getOnlineIdEv) +STUB("SUW6E2hG6Pc", _ZN3sce2Np9CppWebApi7Matches2V116RequestMatchTeam12unsetMembersEv) +STUB( + "SUXY-EW2uFo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEC1Ev) +STUB( + "SUYTMld04W4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEC1EPS6_PNS2_10LibContextE) +STUB( + "SUa2UG11Fos", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC1ERSA_) +STUB("SUbGVeFQQns", _ZN3JSC11FuzzerAgentD0Ev) +STUB("SUe+-Pqn50Q", _ZN7WebCore7IntSizeC2ERKNS_9FloatSizeE) +STUB("SUkHQFhWq0c", _ZN3JSC8JSObject12toStringNameEPKS0_PNS_9ExecStateE) +STUB( + "SUn-QAAV1Xw", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12unsetString3Ev) +STUB("SUrDM-br4Tw", _ZN3JSC6JSLock12DropAllLocksC2EPNS_2VME) +STUB("SUrUYDXudzg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS16FriendsVariablesEED1Ev) +STUB("SUrt1mgUxNI", _ZN7WebCore16VisibleSelectionC1ERKNS_15VisiblePositionES3_b) +STUB("SUuc7HQehIA", _ZNK7WebCore16HTMLMediaElement12isFullscreenEv) +STUB("SV1FfXSYquk", + _ZN7bmalloc29StaticPerProcessStorageTraitsINS_13HeapConstantsEE7Storage8s_objectE) +STUB("SV1G6Vt3Qk0", _ZN7WebCore12DataTransferD2Ev) +STUB("SVDoa5VNl94", _ZN23sceMetadataReaderWriter13KeyValueArray3getEiRSsRNS_5ValueERb) +STUB( + "SVDwJ5PzzWs", + _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse15setMatchResultsERKNS1_6Common12IntrusivePtrINS3_20ResponseMatchResultsEEE) +STUB("SVEG+1D7qHA", sceHmd2ReprojectionGetPredictedDisplayTime) +STUB( + "SVH9yiuYfaU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEC2Ev) +STUB( + "SVHeBgu8KLc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEE11release_refEv) +STUB("SVIcrS84xVo", WKPageHasMediaSessionWithActiveMediaElements) +STUB("SVIiJg5eppY", _Atomic_fetch_or_2) +STUB("SVJZcnz9QIc", Java_java_io_FileOutputStream_initIDs) +STUB("SVKhRhkc6dE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V117InvitableUserTypeEEC1Ev) +STUB("SVNngUR1ukY", _ZN3sce2np10JsonObjectD2Ev) +STUB( + "SVQ3q7TZ2NA", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchStatus27setupdateMatchStatusRequestENS1_6Common12IntrusivePtrINS3_24UpdateMatchStatusRequestEEE) +STUB("SVQtfFl6UZo", mono_debug_domain_create) +STUB( + "SVR5BKu6U0I", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEeqERKS9_) +STUB("SVRgZE-EAFs", _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead16unsetCustomData1Ev) +STUB("SVSxof5YKAc", _ZN7WebCore8Document24addMediaCanStartListenerERNS_21MediaCanStartListenerE) +STUB("SVVn5eaP+b4", Java_com_sony_bdjstack_init_Init_cleanup) +STUB("SVYZa9hbTh8", _ZN3WTF5MutexD1Ev) +STUB( + "SVdpZ5eDbpY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEC1Ev) +STUB( + "SVhnyDz7Bw0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEE11release_refEv) +STUB("SVi-taLrQAU", _ZN3JSC8JSObject21deletePropertyByIndexEPNS_6JSCellEPNS_14JSGlobalObjectEj) +STUB( + "SVkQKbvZoCY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEED2Ev) +STUB("SVsQArztR4E", _ZN3JSC8JSBigInt19tryCreateWithLengthERNS_2VMEj) +STUB("SVtmUw-TJR4", + _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_13FetchResponseE) +STUB("SVzX42lihr8", monoeg_g_markup_parse_context_end_parse) +STUB("SVzqxdTgx-k", _ZN7WebCore21JSCSSStyleDeclaration14finishCreationERN3JSC2VME) +STUB("SW0Iu2UQTgE", mono_class_get_events) +STUB("SW1qbFASHjQ", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_6NpUserEEC1ERKS4_) +STUB("SW1xFycyC90", _ZNK3JSC18BasicBlockLocation8dumpDataEv) +STUB("SW2O4nIcFmE", __asan_report_exp_load1_noabort) +STUB( + "SW4-wCKRHts", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEE3getEv) +STUB( + "SW5JMj1e9DY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE8copyFromERKS7_) +STUB("SW7SgFwOmu4", _ZN7WebCore28BackingStoreBackendCairoImplC2ERKNS_7IntSizeEf) +STUB("SW9I9IJqDw8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V113AttributeTypeEEC1EPS6_) +STUB("SWCsZrlJzas", _ZN4Manx3Ssl19loadRootServerCertsEPv) +STUB("SWEDAhIHkMI", _ZN7WebCore21DiagnosticLoggingKeys20needsRevalidationKeyEv) +STUB( + "SWJ0ppw6U-I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEEaSERKSA_) +STUB("SWK-+lhUK7s", sceFsWsFsck) +STUB("SWRH9B4oil8", sceG2PDialogInitialize) +STUB( + "SWTmyHIWqxU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEEptEv) +STUB("SWUBqIUFFjM", _ZN4Manx27monotonicallyIncreasingTimeEv) +STUB( + "SWVVMpjAvcQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEE5resetEPS8_) +STUB( + "SWVe+Akobhk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEED1Ev) +STUB("SWXJnhM8yqE", _ZN12video_parser5vpcom10CloseAsyncE) +STUB("SWYTZH9cZMo", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariableC2ERS5_) +STUB("SWeFX-VVGGY", Java_java_awt_GnmGraphicsDevice_openScreen) +STUB("SWejTyuxZXQ", _ZN7WebCore14JSWebAnimationC1ERKS0_) +STUB( + "SWnAQZ1-wTI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEcvbEv) +STUB("SWttaRw68f0", _ZTVN7WebCore11DisplayList8DrawLineE) +STUB( + "SWvK14fNyvo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "SWvayCZNs9c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEC2ERKS7_) +STUB("SX01ExQha2A", uhash_openSize_67) +STUB( + "SX1nLa9p2rg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE5beginEv) +STUB("SX2VlKarfpU", EVP_DigestInit_ex) +STUB("SX4ghJcVKuw", _ZN7WebCore24CoordinatedGraphicsLayer7setSizeERKNS_9FloatSizeE) +STUB("SX5I+XzH8HI", FT_Stream_ReadFields) +STUB("SX7d3xjTzIE", mono_aot_Sce_Vsh_RequestShareStorageWrapperjit_code_end) +STUB( + "SX7zx8Snn1E", + _ZN3sce2Np9CppWebApi11Matchmaking2V131SubmitTicketResponseBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_24SubmitTicketResponseBodyEEE) +STUB("SX8g3H2KeCw", + _ZN3sce2Np9CppWebApi14ConnectAccount2V214PSNError_errorC1EPNS1_6Common10LibContextE) +STUB( + "SX9IOde7tLo", + _ZN3sce7Toolkit2NP2V27Session6createERKNS3_7Request6CreateEPNS2_4Core8ResponseINS3_9SessionIdEEE) +STUB("SXBXJjJ5cq8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEE3getEv) +STUB("SXFEOiqnaXI", _ZN7WebCore17HistoryController18replaceCurrentItemEPNS_11HistoryItemE) +STUB( + "SXJ-X-sa3Mo", + _ZN3JSC8JSObject9getMethodEPNS_14JSGlobalObjectERNS_8CallDataERKNS_10IdentifierERKN3WTF6StringE) +STUB( + "SXJs6nkuxXM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEE11release_refEv) +STUB( + "SXT6RSC543w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("SXUNKr9Zkv0", sceNpUtilGetSystemLanguage) +STUB( + "SXUwU4aFRoI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEC1Ev) +STUB("SXXP5tKEDiE", + _ZNK3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V16Rating15getRatingNumberEv) +STUB("SXY74vB6xYk", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V16Rating15setRatingNumberERKi) +STUB( + "SXhRoowX7Qg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE13getLibContextEv) +STUB( + "SXrFAy2QWaM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEEC2ERSA_) +STUB( + "SXuPwswMs0I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEppEi) +STUB("SXw4dZEkgpA", sceGnmValidateDisableDiagnostics) +STUB( + "SY+ctdf-emY", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "SY8nDGLe8qc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEaSERKS9_) +STUB( + "SY8qeEnIQPA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEE11release_refEv) +STUB("SYAxuJLMTFM", WKPreferencesGetRequestAnimationFrameEnabled) +STUB( + "SYCwZXKZQ08", + _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE11do_get_dateES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm) +STUB( + "SYDoKt1eHWs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEEaSERKSA_) +STUB("SYFNsz9K2rs", _ZNSt13basic_filebufIcSt11char_traitsIcEE6setbufEPci) +STUB( + "SYP6lwfK7Wk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("SYSL4KtzcAU", sceShellCoreUtilCrashReportRequestCancel) +STUB( + "SYSmiTbdq9A", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEdeEv) +STUB("SYU6Z4blPB8", WKPreferencesGetAVFoundationNSURLSessionEnabled) +STUB( + "SYWFRuhKXOs", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi47ParameterWithBinaryRequestBodyToRecordLargeDataD1Ev) +STUB("SYYav-paXDc", _ZN7WebCore9HTMLNames16aria_grabbedAttrE) +STUB( + "SYYjcxTI6j4", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Network8Response6SourceEEEN3WTF8OptionalIT_EERKNS6_6StringE) +STUB("SYb4Kmj0u88", + _ZN15AbstractStorage4Item13ParseMetadataEPN23sceMetadataReaderWriter8MetadataES3_) +STUB("SYc9wxeZia8", CryptographyEncryptAES128GCM) +STUB( + "SYo0cly-xio", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEppEv) +STUB("SYoL1PVQ7bY", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error11statusIsSetEv) +STUB("SYqaqLuQU6w", sceSystemServiceIsBgmPlaying) +STUB("SYrtUA+ICMA", sceClPthreadMutexUnlock) +STUB( + "SYsKxeQHMDI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEE21intrusive_ptr_add_refEPS7_) +STUB("SYuiZEPIJOg", _ZN7WebCore22EmptyFrameLoaderClient17setCopiesOnScrollEv) +STUB("SYwCthkkxxU", _ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors9unsetPathEv) +STUB("SZ2uH5Abws8", sceLncUtilKillApp) +STUB( + "SZ3agftg7ew", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEE21intrusive_ptr_add_refEPS7_) +STUB("SZ7PeSKXe5k", _ZN3sce7Toolkit2NP2V212EventsClient12EventDetails8deepCopyERKS4_) +STUB( + "SZ9eCTzoowc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEEC1ERSA_) +STUB("SZA6z3kocjA", _ZN3WTF13StringBuilder12appendNumberEdjNS_29TrailingZerosTruncatingPolicyE) +STUB("SZByX9tGiQw", _ZN7WebCore9HTMLNames17onbeforeinputAttrE) +STUB( + "SZCZ-rIB1aA", + _ZN15AbstractStorage15FacebookStorage7GetItemERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_4ItemEE) +STUB( + "SZNN+J78THE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEaSERKS9_) +STUB( + "SZPtqsxK4h0", + _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse18setMatchStatisticsERKNS1_6Common12IntrusivePtrINS3_23ResponseMatchStatisticsEEE) +STUB( + "SZRkultYj4o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEED1Ev) +STUB("SZRzgfkPiGA", _ZN9Inspector29AuditBackendDispatcherHandlerC2ERKS0_) +STUB("SZSvjyBqJ3A", sceDtcpIpReadAsync) +STUB("SZSzzh0RQDU", uregex_lookingAt_67) +STUB( + "SZetXzS97ng", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEE3getEv) +STUB( + "SZh5EM+riOY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEEcvbEv) +STUB("SZk+FxWXdAs", __ucmpdi2) +STUB("SZoXIVonWXE", sceDataTransferTargetAbortSendSsoNew2Old) +STUB("SZpEJeI60T0", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEEptEv) +STUB("SZrEVfvcHuA", _Atomic_compare_exchange_strong_8) +STUB( + "SZsqvxaAao0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEC1EPNS2_10LibContextE) +STUB("SZxMhu3wpuk", _ZN3JSC7Symbols19subarrayPrivateNameE) +STUB( + "Sa+LWbzSNBA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEED2Ev) +STUB( + "Sa+uEIX2sL4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEppEi) +STUB("Sa3GpytgDho", _ZN3sce7Toolkit2NP2V29Messaging15GameDataMessageC2Ev) +STUB("Sa6+Js1giNA", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_17ActivityFeedStoryEEC1Ev) +STUB( + "Sa8gEQuXm1w", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEneERKS9_) +STUB( + "SaAI+pDT2kk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "SaDSLK-ezkM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEE5resetEPS9_) +STUB( + "SaF6TCQFh1Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "SaGrvkYanZ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEEC2ERKSA_) +STUB("SaH2W2GXp+U", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V115LastUpdatedUser6toJsonERNS_4Json5ValueEb) +STUB("SaIxbkJbS+I", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V514ContainerMedia6toJsonERNS_4Json5ValueEb) +STUB("SaJj4xMf2Sc", FT_Matrix_Multiply) +STUB("SaKib2Ug0yI", sceAppContentTemporaryDataGetAvailableSpaceKb) +STUB( + "SaOK6gI1Tf8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEC2EPNS2_10LibContextE) +STUB("SaRlqtqaCew", sceFontCharacterLooksWhiteSpace) +STUB( + "SaTAwo0Zmhc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB( + "SaTzLuXTWOU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEE5resetEPS6_) +STUB("SaUeq6ZA4Qc", uhash_hashUChars_67) +STUB("SaUr0yRMKrk", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V112OnlineStatusEEC2Ev) +STUB("SaZrQyvV5eA", _ZN3sce7Toolkit2NP21InvitationInfoRequestC2Ev) +STUB("SabBgh05rVc", _ZNK3sce2Np9CppWebApi7Matches2V116RequestMatchTeam11getTeamNameEv) +STUB("SapHB+u0OPE", _sceLibcRealloc) +STUB("SasO+gHvy1o", _ZTVN7WebCore12ISOWebVTTCueE) +STUB("SaxYL9qFVQA", _ZN7WebCore11MemoryCache20removeImageFromCacheERKNS_3URLERKN3WTF6StringE) +STUB("SaxilheI6kk", usearch_getCollator_59) +STUB( + "Sb1GVqtqgyQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEED1Ev) +STUB("Sb1wz6ZHr2A", _ULx86_64_lock) +STUB("Sb26PiOiFtE", _Isdst) +STUB( + "Sb4oWhcQdYA", + _ZN3sce2Np9CppWebApi14SessionManager2V162PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_55PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEE) +STUB("Sb5bAXyUt5c", sceGameLiveStreamingSetLinkCommentPreset) +STUB("SbAv6GgaToU", _ULx86_64_dwarf_find_save_locs) +STUB( + "SbI3OfMg5LY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE5beginEv) +STUB( + "SbJbxd7RaIk", + _ZN10Deprecated18ScriptFunctionCallC2ERKNS_12ScriptObjectERKN3WTF6StringEPFN3JSC7JSValueEPNS8_9ExecStateES9_NS8_8CallTypeERKNS8_8CallDataES9_RKNS8_7ArgListERNS4_8NakedPtrINS8_9ExceptionEEEE) +STUB( + "SbNxpkEL5Vw", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeaders21intrusive_ptr_sub_refEPS5_) +STUB( + "SbOHkCRAiXs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEC1EPNS2_10LibContextE) +STUB("SbU3dwp80lQ", sceVideoOutGetFlipStatus) +STUB("SbUkE4iXYM4", _ZN7WebCore17DOMImplementation18createDocumentTypeERKN3WTF6StringES4_S4_) +STUB("SbVE2B1+mzw", u_ispunct_59) +STUB( + "SbXrsdQ9bMc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE3endEv) +STUB( + "SbY0OC1pCy8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEE7get_refEv) +STUB( + "SbZWL1tns5o", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEneERKS9_) +STUB( + "SbatJyCeVJQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "Sbcvi-oXleA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "SbhDvR-Qpig", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEE11release_refEv) +STUB( + "SblVcdW5o2Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEC2Ev) +STUB("SbleT0oxFw0", sceCesUhcToUtf8) +STUB("Sblg9E+pDP4", _ZN3sce7Toolkit2NP2V27Ranking8TempRankC2ERKS4_) +STUB( + "SbnOw1CgoRY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEEC1ERKSA_) +STUB( + "SbrpFpaUQ+4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEED2Ev) +STUB("SbuY2jN+axQ", sceAgcUpdateInterpolantMapping) +STUB("Sbuip3CQ-+E", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE7popBackEv) +STUB("Sc0aAuyf+O0", _ZN3sce7Toolkit2NP2V29Messaging15GameDataMessageD1Ev) +STUB("Sc0lXhQG5Ko", + _ZNKSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewPK2tmPKwSB_) +STUB( + "Sc5KGaqt3bg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEmmEi) +STUB("ScEhE4Irdo8", scePerfPmcNbStart) +STUB( + "ScF5Evoq1Z4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEC1Ev) +STUB("ScILQ+zz87Y", _ZN3WTF8JSONImpl5Value6createEd) +STUB("ScRf1tFPLdI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEaSERKS7_) +STUB( + "ScUeb92zr9k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEE7get_refEv) +STUB("Scedp5ayLsM", _ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayerD2Ev) +STUB("ScfDTOqLOMw", _execvpe) +STUB("ScfnaxnQXn4", sceKernelReadDipswData) +STUB("ScomKec6UlE", _ZN3sce3pss5orbis5input12InputManager29GetControllerHandleByDeviceIdElPi) +STUB( + "ScpUX8KQSF0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("ScrpwXQHE9M", _ZThn24_N9Inspector22InspectorDebuggerAgent5pauseERN3WTF6StringE) +STUB( + "ScsaHi4PJ4E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEC2Ev) +STUB("SctIbAruiow", _ZN3sce7Toolkit2NP2V210Tournament16RegisteredRosterC1ERKS4_) +STUB( + "SczHqPT8awk", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V318PsnWebErrorFactory7destroyEPNS3_11PsnWebErrorE) +STUB( + "SczreOYtEx0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEeqERKS9_) +STUB( + "Sd3KVnqJLP0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEED1Ev) +STUB( + "Sd6L7byKV9g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE5clearEv) +STUB("Sd9lCybeKgM", _ZN7WebCore22HTMLFormControlElement14setFormEnctypeERKN3WTF6StringE) +STUB( + "SdDlbsFSkp0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEEC2ERKSA_) +STUB( + "SdFCJ83qiJQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("SdKk439pgjg", _ZNSt10filesystem8_StatvfsEPKcRNS_10space_infoE) +STUB("SdNiYQWjU6E", sceNpIntGetGamePresenceStatus) +STUB("SdXFaufpLIs", _ZNSt8numpunctIwE7_GetcatEPPKNSt6locale5facetEPKS1_) +STUB( + "SdXJaMAU8GI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEED1Ev) +STUB( + "SdZ9dpNQ5lA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEEptEv) +STUB( + "Sdb-IIQqyyM", + _ZN7WebCore21NetworkStorageSession45setPrevalentDomainsToBlockAndDeleteCookiesForERKN3WTF6VectorINS_17RegistrableDomainELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB( + "Sdfm7eE3q80", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEptEv) +STUB( + "SdlNIH5eZgQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEEcvbEv) +STUB("Sdm1lxP+5yA", _ZN7WebCore21InspectorFrontendHostC2EPNS_23InspectorFrontendClientEPNS_4PageE) +STUB("SdsTCHDTzyA", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13integer9IsSetEv) +STUB( + "Sdu30wzxJnY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE5beginEv) +STUB( + "SdyA25xqyko", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEmmEi) +STUB( + "Se-CDJ04I68", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEE11release_refEv) +STUB("Se-Zs6koGzk", sceVideoOutCursorSet2xMagnify) +STUB("Se3TVBPK02E", _ZN7WebCore18TextureMapperLayer12setMaskLayerEPS0_) +STUB( + "Se5EmIFFeko", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEED2Ev) +STUB("Se5eY7Xs5nk", sceNpIpcClientTerm) +STUB("Se6npBfGRw4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEED1Ev) +STUB("SeAHrRHOnxA", Java_java_awt_GnmGraphics_nativeDrawRect) +STUB("SeDXcAT9TEI", mono_aot_Sce_Vsh_Orbis_AbstractStorageunbox_trampolines) +STUB( + "SeKbE9w0lX0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEEC1ERSA_) +STUB( + "SeLFVNYlBOY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "SeNG0XY+tzo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEC1Ev) +STUB( + "SeTzXrN6-Qo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEE11release_refEv) +STUB( + "SeWu1wADnhw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEEC2ERKS9_) +STUB("SeX1Odru6ow", Java_java_lang_reflect_Array_setInt) +STUB( + "SeXcwHDNN2s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEED1Ev) +STUB("SeZ-dljlXn0", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getMaskedUOTable) +STUB("SeZxztzqUh8", _ZN3JSC14constructArrayEPNS_14JSGlobalObjectEPNS_9StructureEPKNS_7JSValueEj) +STUB("Seapstv46Oo", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session9SessionIdEE19setCustomReturnCodeEi) +STUB( + "SearduN6EiQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEE3getEv) +STUB("SebNCYsUpS4", mono_aot_Sce_Vsh_AutoMounterWrapperunbox_trampolines_end) +STUB( + "SeccwfyNaAQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEneERKS9_) +STUB("SeciUClG0ls", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEE6assignEPS4_PFvS6_EPNS2_10LibContextE) +STUB( + "SeeA1dRUym4", + _ZN3sce2Np9CppWebApi7Matches2V120ChildActivityFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_13ChildActivityEEE) +STUB("Sek97xtkj1g", il2cpp_stats_get_value) +STUB( + "SekJyq3e108", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEE11release_refEv) +STUB( + "SekOunkQmqo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEEC1ERSA_) +STUB( + "SelzY5pn-2g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEED2Ev) +STUB("Seo1AEkPCcU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12BandwithInfoEEC1Ev) +STUB("SeoDV-N8yBY", sceRnpsAppMgrCreateUrlRequest) +STUB("SeqaBjkh-Ao", mono_declsec_get_inheritdemands_method) +STUB("Sev444QPGAU", + _ZN7WebCore9FrameView27updateBackgroundRecursivelyERKN3WTF8OptionalINS_5ColorEEE) +STUB("SevrucGsarQ", rgctx_fetch_trampoline_mrgctx_59) +STUB("SexflgihwlY", png_set_packswap) +STUB( + "SeycQTUcyBM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEptEv) +STUB("Sf-l+WFQRTo", sceSlimglStartServer) +STUB("Sf1bfgS6Q7E", _ZN3sce7Toolkit2NP2V28Matching7Request11SearchRooms13MAX_PAGE_SIZEE) +STUB("Sf2hgm8aZfo", izrule_getFinalStart_67) +STUB("Sf6u84e0Qw4", _ZN3WTF9MediaTimeC1Eljh) +STUB("SfGVfyEN8iw", sceUserServiceSetAccessibilityKeyremapData) +STUB( + "SfGujvEh7HI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEEC2ERKSA_) +STUB( + "SfI7Zp3xyu0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEdeEv) +STUB("SfLr5McD14w", _ZN3JSC19HeapSnapshotBuilder4jsonEv) +STUB("SfMLraLeAvo", WKSecurityOriginCreateFromString) +STUB( + "SfODEW2zTXE", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemPropertiesC2Ev) +STUB("SfPuQO4vW9M", sceApplicationFinalize) +STUB("SfQIZcqvvms", strlcpy) +STUB("SfRTRZ1Sh+U", sceRazorCpuDisableFiberUserMarkers) +STUB("SfVLUyA1FAY", sceFsTransactionSaveDataMount) +STUB( + "SfXOhyl4xxU", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody18unsetMaxSpectatorsEv) +STUB("SfZOWiQmIuY", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product8getMediaEv) +STUB("SflEHNq6HG8", mono_aot_Sce_Vsh_SystemLoggerUtilWrapperunwind_info) +STUB("SfmbF51JL1Y", hb_font_funcs_set_glyph_h_advance_func) +STUB( + "SfnoiZDcDtw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEppEi) +STUB("SfpzC9zlYHE", _ZN3sce2Np9CppWebApi7Matches2V123RequestTeamMemberResult11setPlayerIdEPKc) +STUB("Sfr8N-9Sdhw", sceDseehxInit) +STUB( + "SfunN9-W7sQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE8capacityEv) +STUB("Sg68hTyo9Co", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEEmmEv) +STUB("SgIY-XYA2Xg", sceSaveDataRebuildDatabase) +STUB("SgQ4VrAnXOg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE8pushBackERKS6_) +STUB("SgSjKKwFmN8", FTC_SBit_Cache_Lookup) +STUB( + "SgVIoCpXzIY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEED1Ev) +STUB( + "SgZ12ETPzHU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEC1EPS8_) +STUB( + "Sgdt7nCNQ08", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemPropertiesaSERS5_) +STUB("Sggzq+yDkN4", + _ZN15AbstractStorage11LocalFolder12RemoveFolderERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) +STUB("Sgi+fOhrWUQ", sceVideoCoreInterfaceGetCanvasVideoBufferSize) +STUB("SgjMpyH9Z9I", scePthreadMutexattrGetprioceiling) +STUB("Sgkdh9L-kOI", _ZN3JSC7Symbols22Uint16ArrayPrivateNameE) +STUB("Sgo7wy9okFI", _ZN3sce2np9LocalFile8TruncateEl) +STUB("SgoBOhBOMzs", _ZN7WebCore9HTMLNames10targetAttrE) +STUB("Sgoz1K4G3xY", SSL_get0_alpn_selected) +STUB("Sh2l-tqTK68", RemotePlayConfirmDeviceRegist) +STUB("Sh4t0bGCdEg", _ZN7WebCore18SocketStreamHandleC2ERKNS_3URLERNS_24SocketStreamHandleClientE) +STUB( + "Sh62oBK9J8I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE7reserveEi) +STUB("Sh6Ue8RM0BY", sceCesEucJpUcsProfileSetSbcs) +STUB("Sh8SrJn6PkU", sceAppInstUtilJson) +STUB("Sh9CJq8BqGc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEEC2ERKS6_) +STUB("ShChva57wIM", sceCoredumpGetThreadContextInfo) +STUB("ShEeVbMHDK0", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku25unsetDisplayOriginalPriceEv) +STUB("ShFvx9095CY", sceSdmaEndQueueMode) +STUB("ShGBFuoSSsQ", sceNpEntitlementAccessPollServiceEntitlementInfo) +STUB( + "ShRM7C2T5SE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEC2EPS8_) +STUB("ShWGA1OTMoI", _ZNK7WebCore29PerspectiveTransformOperation27isAffectedByTransformOriginEv) +STUB("ShY882A3KL4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable24unsetLastUpdatedDateTimeEv) +STUB("ShYAICmwARw", _ZN4Manx14NetworkProfile3getENS_14SettingOptTypeE) +STUB( + "ShYRPeMdUtQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE5clearEv) +STUB("ShYWkgtHuA8", _ZN7WebCore5Event6createERKN3WTF12AtomicStringEbb) +STUB("ShYbbZFPrdU", _ZNK3JSC8JSString13equalSlowCaseEPNS_14JSGlobalObjectEPS0_) +STUB("ShZDGe2pqmk", _ZN9Inspector22RemoteInspectionTargetC2ERKS0_) +STUB("ShanbBWU3AA", _Thrd_start_with_name_attr) +STUB("ShbGcHuwSMk", _ZN3JSC4Heap16objectTypeCountsEv) +STUB("ShfFUIrkUkk", WKPreferencesGetRestrictedHTTPResponseAccess) +STUB( + "ShfrMJL3-6s", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEeqERKS9_) +STUB( + "Shg1KV-q4WA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEmmEv) +STUB( + "Shl1yWD1LfE", + _ZN3sce2Np9CppWebApi7Matches2V140RequestTemporaryCompetitiveResultFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_33RequestTemporaryCompetitiveResultEEE) +STUB("ShlQcYrzRF8", _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE10date_orderEv) +STUB("ShnEkrw8E8Y", sceBgftServiceDownloadQueryTask) +STUB( + "ShnfzcFoG+w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEmmEv) +STUB("ShnorGeiNfs", _ZN3sce7Toolkit2NP2V26Trophy15TrophyPackGroupC2ERKS4_) +STUB("Shr7bZq8QHY", sceNpSignalingGetPeerNetInfoA) +STUB("ShufOYuzN10", _ZN22MmsMdCommonFsOperation19readFileWithNoCacheEjPv) +STUB( + "Shwm8cRP3SA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEE11get_deleterEv) +STUB("ShwpckpQBkA", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product12unsetVersionEv) +STUB( + "ShxP0e23xbY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEixEm) +STUB( + "ShxtZk5Q1lU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEC2EPNS2_10LibContextE) +STUB( + "Shz+PoKB9Uw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEmmEi) +STUB("Si-V2tXCEKw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEC1Ev) +STUB("Si3-TJVqvlY", g_PS4TitleNPServiceId) +STUB("Si4sBM36Umc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEEplEm) +STUB( + "Si7yKXNvQ2s", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE4sizeEv) +STUB( + "SiD5x46bu20", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEE7get_refEv) +STUB("SiI9GcQUt5s", utrie_get32_67) +STUB("SiJJ2ssCwYY", + _ZN7WebCore19UserContentProvider54invalidateInjectedStyleSheetCacheInAllFramesInAllPagesEv) +STUB("SiOYqeFx8kU", uldn_open_67) +STUB( + "SidpYIN1fjw", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot8haslimitEv) +STUB("SioAjsFjL-Y", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEEixEm) +STUB("SirJwzKHMmQ", WKWebsiteDataStoreSetCacheModelSynchronouslyForTesting) +STUB("SitMQaXQ4+I", _ZN3JSC7Symbols30generatorResumeModePrivateNameE) +STUB("SiulcrStQPI", _ZN3sce2Np9CppWebApi15Personalization2V121GetAccessCodeResponse7setSaidEPKc) +STUB("Sj3fKG7MwMk", sceLibcHeapGetAddressRanges) +STUB("Sj5lbc4Y0mI", sceFiosDebugDumpFH) +STUB("Sj6AfkpQctM", mono_thread_hazardous_queue_free) +STUB("Sj7y+JO5PcM", posix_spawn_file_actions_addopen) +STUB( + "SjBh0klmHV4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEC2Ev) +STUB("SjBzzYgsPlM", _ZN3sce2Np9CppWebApi6Common18ResponseHeaderBaseD1Ev) +STUB("SjNoAv1glVM", _ZN7WebCore6Editor7CommandC2Ev) +STUB( + "SjRa0ubVKCo", + _ZThn16_N9Inspector21InspectorRuntimeAgent5parseERN3WTF6StringERKS2_PNS_8Protocol7Runtime15SyntaxErrorTypeERNS1_8OptionalIS2_EERNS1_6RefPtrINS7_10ErrorRangeENS1_13DumbPtrTraitsISE_EEEE) +STUB( + "SjTFLUmtpQY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEEaSERSA_) +STUB("SjUQXWH4oQc", _ZN9Inspector19InspectorAuditAgentnwEmPv) +STUB("SjUR30z0mo4", + _ZN7WebCore17JSHTMLLinkElement14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB("SjZwsoDk9zA", udata_openChoice) +STUB( + "Sjct2DaybkQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC1Ev) +STUB( + "SjfToK28huM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEC2EPNS2_10LibContextE) +STUB("Sjgoq0wcpm4", _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities5Error10getMessageEv) +STUB("SjhNfgXFUJs", _ZN3WTF11Persistence7EncoderlsEf) +STUB("Sjii1ZmA+cw", eglib_alloc) +STUB("Sjj0m6ZEy74", + _ZNK3sce2Np9CppWebApi7Matches2V122RequestPlayerStatistic6toJsonERNS_4Json5ValueEb) +STUB( + "SjqLYQYstV4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEmmEi) +STUB( + "SjquUVkMeiI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEC1EPS8_) +STUB( + "Sjsnk4uRAXI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEE11get_deleterEv) +STUB( + "SjvzCAwyoB0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE4sizeEv) +STUB( + "Sk0x5+1ED0Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEppEv) +STUB( + "Sk5Sb0lAu08", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE7reserveEi) +STUB("Sk8AdNQUDm8", _ZNK3sce2np10JsonNumber6GetNumEPi) +STUB( + "SkBjUodJ9y8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEED1Ev) +STUB("SkE5SnCFjQk", sceUserServiceSetNpAccountUpgradeFlag) +STUB("SkEwpiu3tZg", sceAjmBatchJobSetGaplessDecode) +STUB("SkGKtXQoaCI", sceNetApctlStart) +STUB("SkGtNek9SeI", _ZN3JSC4Yarr17RegularExpressionnaEmPv) +STUB( + "SkHlAFbcb1A", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE4sizeEv) +STUB("SkKczWHdklc", _ZN3sce4Json6ObjectC2Ev) +STUB("SkPHOwndKis", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEEdeEv) +STUB("SkQAFojjxQ4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEcvbEv) +STUB("SkRR6WxCTcE", _Thrd_create) +STUB( + "SkZvcnNUxhc", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer14setkeepHtmlTagEb) +STUB( + "SkdJ1Y-1cYY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEppEi) +STUB( + "SkjsVs2mLkc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEC1Ev) +STUB( + "Skk5yRkE4a8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEEaSERKSA_) +STUB("SknJO3Bt+-o", sceFaceTrackerInitialize) +STUB("SkpBP-sV1+c", _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEEixEm) +STUB("SkutDtgqJ9g", scePthreadBarrierattrGetpshared) +STUB( + "Skxr8Yx3Y9w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEC2ERKS7_) +STUB("Sl9pOAWrAV8", mono_debug_lookup_locals) +STUB( + "SlBqBwGiBSE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEED1Ev) +STUB("SlG1FN-y0N0", malloc_get_footer_value) +STUB("SlJmRKntSo8", rgctx_fetch_trampoline_rgctx_12) +STUB( + "SlMLGXNLtOM", + _ZN3sce2Np9CppWebApi14SessionManager2V147PutPlayerSessionsNonPsnLeaderRequestBodyFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_40PutPlayerSessionsNonPsnLeaderRequestBodyEEE) +STUB("SlVIGK1Kl38", sceAjmBatchJobEncode) +STUB("SlWnOIycbhU", ucnv_resetToUnicode_67) +STUB("Slh4bod3jBg", WKPreferencesGetEnableInheritURIQueryComponent) +STUB( + "Sll91vSiCXs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEE3getEv) +STUB("Slmz4HMpNGs", wcsncpy_s) +STUB( + "SlnsPzVyE3M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE7popBackEv) +STUB( + "SloQKMSA8Ic", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEC2EPS8_) +STUB( + "SlvlKAdTaqQ", + _ZN9Inspector25DebuggerBackendDispatcher23setAsyncStackTraceDepthElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("Slwr397kqnE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEC2ERKS7_) +STUB("SlxGzFV6+04", _ZNSt5ctypeIcE7_GetcatEPPKNSt6locale5facetEPKS1_) +STUB( + "Sm+nJstaUGU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("Sm3oDIlxp0o", _ZN7WebCore11DisplayList17FillRectWithColorC1ERKNS_9FloatRectERKNS_5ColorE) +STUB("Sm6dzXfc50Y", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIiEC2Ev) +STUB("Sm6n-8gnA5A", _ZNK7WebCore11HTMLElement15contentEditableEv) +STUB("Sm7qx9Bmbs8", delegate_virtual_invoke_imt_4) +STUB("Sm99ZdiUNuE", _ZN12video_parser14cVideoOperatorC2Ev) +STUB( + "SmFpN1hXpxI", + _ZN3JSC8Bindings13RuntimeObject18getOwnPropertySlotEPNS_8JSObjectEPNS_14JSGlobalObjectENS_12PropertyNameERNS_12PropertySlotE) +STUB( + "SmKBvc7Oo1U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEC2Ev) +STUB("SmLdzF-mHyM", mono_native_thread_create) +STUB( + "SmM0Qkj9nSg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEE11get_deleterEv) +STUB( + "SmRuMuhT3Zo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE7reserveEi) +STUB("SmSvNi1baX0", _ZN7WebCore4Page22removeLayoutMilestonesEj) +STUB("SmYrO79NzeI", abort_handler_s) +STUB("Smc0Zfi9srM", _ZN7WebCore9JSDOMRect6s_infoE) +STUB( + "SmefxL+Gp10", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEEC2ERSA_) +STUB("SmeximNcHHA", _ZN7WebCore22EmptyFrameLoaderClient24isEmptyFrameLoaderClientEv) +STUB("SmfaKdqI7YY", udata_getInfo_67) +STUB( + "SmgJ3S-AXTI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEC2EPS8_) +STUB("SmiBDj4lpKM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed4FeedEED1Ev) +STUB( + "Smio2NZdrp4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("SmkNomOOTio", _ZN7WebCore8SVGNames17color_profileAttrE) +STUB( + "SmtBNDda5qU", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERb) +STUB( + "SmwfXieeBw0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEE11release_refEv) +STUB("SmxDJwLGQzc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEdeEv) +STUB("Smy8175FjUE", _ZNK3sce2Np9CppWebApi7Matches2V119ResponseTeamResults22teamMemberResultsIsSetEv) +STUB("Sn-MpfGTN9w", sceOpusCeltDecDestroy) +STUB( + "Sn0a3uZBMS8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEeqERKS9_) +STUB("Sn1xBvMhSSs", _ZN12video_parser7cVpUtil13vp_ff4_mallocEPvm) +STUB("Sn3TCBWJ5wo", _ZTIo) +STUB("Sn3WBciBmSE", _ZN3WTF40registerDefaultPortForProtocolForTestingEtRKNS_6StringE) +STUB("SnAItvPSZM4", qR5) +STUB("SnAdybtBK3o", sceNpJsonParseBufInit) +STUB("SnBiExt9JLs", _ZN15AbstractStorage12LocalStorage12readExternalESt10shared_ptrINS_7ContentEE) +STUB( + "SnTL8hDEF84", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEED2Ev) +STUB("SnTlqvWCnP8", mono_btls_x509_lookup_up_ref) +STUB( + "SnXIYPIydfI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "SncvDP8g-PQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEdeEv) +STUB("SnhnFeqNSlk", _ZN3WTF8JSONImpl9ArrayBase10pushDoubleEd) +STUB("SnlaglxT1-4", WKPageGetPageCount) +STUB("SnncAgC-UTY", sceKernelDeleteAIO) +STUB("SnoQQWnGK9I", sceFiosOpWait) +STUB("Snq9yuqDfvY", _ZN7WebCore20RenderEmbeddedObject37setUnavailablePluginIndicatorIsHiddenEb) +STUB("SnsJfGiP3Bg", + _ZN3sce2Np9CppWebApi15Personalization2V121GetAccessCodeResponse12setExpiresAtERKl) +STUB("SnsZua35ngs", sceFontSetTypographicDesign) +STUB("SnvC4bHqy5w", Java_com_sun_bluray_ui_FAABaseComponent_createHandle) +STUB("Snyf4vc4Grg", _ZNK7WebCore15HTMLFormElement6lengthEv) +STUB("SnygE7NsqN8", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request11GetWhoLiked17DEFAULT_PAGE_SIZEE) +STUB( + "So0jzJiWB+I", + _ZN7WebCore22EmptyFrameLoaderClient27dispatchWillSendSubmitEventEON3WTF3RefINS_9FormStateENS1_13DumbPtrTraitsIS3_EEEE) +STUB( + "So3itcY7ASI", + _ZN12video_parser5vpcom10_OpenAsyncEPcS1_yPPNS_8_vp_fileEPNS0_23VP_FILE_RESOURCE_STATUSEPvPFNS_11VP_RESULT_eES3_S7_E) +STUB("So6gSmJMYDs", _ZNSt6locale7_LocimpD2Ev) +STUB("SoG+DGkodLE", _ZN3sce2Np9CppWebApi6Common8IteratorIiEC2Ev) +STUB("SoL29cX4NkA", __ubsan_handle_mul_overflow) +STUB("SoNnx4Ejxw8", _FDtento) +STUB("SoP0PapyyOc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEcvbEv) +STUB("SoQULIDd9V4", sceLncUtilGetAppIdOfRunningBigApp) +STUB("SoR-sSb9NXs", _ZN12video_parser17cVideoOperatorM4vD0Ev) +STUB("SoSlRguEq74", delegate_virtual_invoke_20_p) +STUB( + "SoTP6FrrBaA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEmmEi) +STUB("SoTv-6x935g", _ZTVN12video_parser17cVideoOperatorMp4E) +STUB("SoVXp6Al6wA", fuse_reply_poll) +STUB("SoWHuVW0gpU", sceTextToSpeech2Terminate) +STUB( + "SoWI0mxczxY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("SoZkxZkCHaw", sceKernelFcntl) +STUB("SobU2mRBRgE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE7reserveEi) +STUB("Socc-lFocbc", sceFiosFHReadv) +STUB("SoegtsYDreI", _ZNK3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap12getIsCurrentEv) +STUB( + "SofDiBXexNA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEEC2ERSA_) +STUB( + "Sol-IbjuEs8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE21intrusive_ptr_sub_refEPS9_) +STUB("Sol9Dxan-7I", _ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody12offerIdIsSetEv) +STUB("SolJKJMZ6O0", _ZN3sce7Toolkit2NP2V28Matching12Notification11RefreshRoom5resetEv) +STUB("SonsEmp2Hxo", uprv_compareInvEbcdicAsAscii) +STUB("Sopthb9ztZI", _malloc_thread_cleanup) +STUB("Soqya+3OJz0", pS3) +STUB("SowrYASQw5I", ucase_toFullLower) +STUB("SoxZWGb3l0U", sceUserServiceSetPbtcMondayDuration) +STUB( + "Soyk98t8ztw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEC2ERKS7_) +STUB("Soz18UPWo04", _ZN18MmsFileUpdaterBaseD2Ev) +STUB( + "Soz2CwTHt14", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEC2ERKS7_) +STUB( + "Sp-9Gdec8Ig", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEEC2Ev) +STUB("SpYe+0rfftE", _ZN3sce7Toolkit2NP2V28Commerce14ProductDetailsaSERKS4_) +STUB( + "SpadD3XYSts", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "Spb+NsnITs8", + _ZN3sce2Np9CppWebApi14SessionManager2V129PostPlayerSessionsRequestBody8fromJsonERKNS_4Json5ValueE) +STUB( + "SphBH0AU-c0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE17getResponseHeaderERSA_) +STUB( + "SphP5ZiLgfU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEC2Ev) +STUB( + "Sptv-eSQYCY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEE3getEv) +STUB("SpuLBXsLhn0", _ZNK7WebCore20ResourceResponseBase3ageEv) +STUB( + "SpuW4bfsqhk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEptEv) +STUB("Spw3-DvOJ8Y", _ZNK9Inspector18InjectedScriptBase20inspectorEnvironmentEv) +STUB("SpxLratrO1Q", sceVoiceQoSWritePacket) +STUB( + "SpyJv3+qKfY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEED2Ev) +STUB("Sq1DqijPveA", sceMbusSetScratchDataUpdatedEventMask) +STUB("Sq7E7Dwlq0w", WKResourceCacheManagerClearCacheForOrigin) +STUB("Sq7RXXjeA3U", JVM_FindClassFromCaller) +STUB( + "Sq940kXf4Mg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEC2Ev) +STUB("SqCGJaZoMJQ", _ZN7WebCore4File6createEPNS_22ScriptExecutionContextERKN3WTF6StringES6_S6_) +STUB("SqE7qal4kn8", mono_aot_Sce_Vsh_VrEnvironmentmethod_addresses) +STUB( + "SqGzcOi487A", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEeqERKS9_) +STUB( + "SqK2d6a1SJA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEdeEv) +STUB("SqPs2qGVqcQ", sceDebugGetSyncWaiterListForEQueueFd) +STUB( + "SqQ+kvs1pJM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEE11release_refEv) +STUB("SqVY7f9hfTg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12RangeOfRanksEED1Ev) +STUB( + "SqVZ+-eIAdU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEEC2ERKSA_) +STUB("SqcnaljoFBw", __atomic_fetch_add_8) +STUB( + "SqdDC7XnYl0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEptEv) +STUB("SqfL0YjlBiA", sceSulphaGetDefaultConfig) +STUB("SqfaljiIMTM", scePerfTraceAprNameAddBufferNotifyEvent) +STUB("SqjWWI7gk6Y", mono_property_get_name) +STUB( + "SqmqtVqcSoc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEC2EPS8_) +STUB( + "SqslwsP-Jnw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEeqERKS9_) +STUB( + "SqyFulslP-Q", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V116BandwidthFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_9BandwidthEEE) +STUB("Sr+YQoaMQds", _ZN9Inspector21CSSFrontendDispatcherC2ERNS_14FrontendRouterE) +STUB( + "Sr2qO7aMJvk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEC2EPNS2_10LibContextE) +STUB( + "Sr51T4lw-lM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEeqERKS9_) +STUB("Sr5agtY6Cto", mono_shared_hashtable_remove) +STUB("Sr7B6AB4ro0", _ZN7WebCore9HTMLNames13autofocusAttrE) +STUB("SrBEQHrcVyI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce19ServiceEntitlementsEEC2Ev) +STUB( + "SrEm1ZPRxIE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEmmEv) +STUB("SrHBQhBty6Y", sceImeBackendGetCandidateList) +STUB( + "SrIPL4JHPIM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEC1Ev) +STUB("SrMFw9O0PtM", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_20ChallengeRecvDetailsEEC2ERKS4_) +STUB("SrZqj8GEkmM", _ZN7WebCore28InspectorFrontendClientLocal8SettingsC2Ev) +STUB("SreZybSRWpU", _Cnd_init) +STUB( + "SrfAPIzcVFs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEC1Ev) +STUB( + "SrhH98pUtfI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEC1EPS8_) +STUB("Srhc9BV4BTk", + _ZN3sce2Np9CppWebApi7Matches2V124ResponseTeamMemberResultC1EPNS1_6Common10LibContextE) +STUB( + "SrnrNnsB7lA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB("SroeR0alBFk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEE7add_refEv) +STUB("SrscAtq6wpw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEED1Ev) +STUB("SrvkW9SlLuk", + _ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody20updatedDateTimeIsSetEv) +STUB( + "Ss0ZG97HsM4", + _ZN7WebCore13getRawCookiesERKNS_8DocumentERKNS_3URLERN3WTF6VectorINS_6CookieELm0ENS6_15CrashOnOverflowELm16EEE) +STUB("Ss3108pBuZY", _Nnl) +STUB( + "Ss75oMrhPgw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEC2EPNS2_10LibContextE) +STUB("Ss7pQku6zPY", _ZN7WebCore4PathD2Ev) +STUB("Ss7x--ugOPw", mono_btls_x509_store_ctx_new) +STUB( + "Ss8ugsU105M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE7reserveEi) +STUB( + "SsB0uHiY3RY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE5beginEv) +STUB("SsC-m-S9JTA", sceSystemServiceParamGetString) +STUB("SsGLKTfWfm0", sceNpTrophySystemGetUserFileInfo) +STUB( + "SsLlJ8zibxo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEEaSERSB_) +STUB("SsMBIYv9GNg", _ZN7WebCore7Element12setAttributeERKNS_13QualifiedNameERKN3WTF10AtomStringE) +STUB("SsRbbCiWoGw", sceFontSupportSystemFonts) +STUB("SsTZ4to2D2A", sceMusicCoreServerSetRepeatMode) +STUB("SsWMlIDPtqs", _ZN4Manx11MediaPlayer6pausedEv) +STUB("SsbDxo-RZfo", _ZN3WTF10StringView16GraphemeClusters8IteratorD1Ev) +STUB("SsdtIRQ5sIM", Java_java_io_RandomAccessFile_initIDs) +STUB( + "SskYsgTc5aY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEneERKS9_) +STUB("SsuAWVkQHvE", _ZN3sce7Toolkit2NP2V210Tournament15RegisteredUsersaSERKS4_) +STUB("SswtmBxwCo4", uldn_localeDisplayName_67) +STUB( + "Ssz15-evSMg", + _ZNK3sce2Np9CppWebApi14ConnectAccount2V216PartnerTokensApi26ParameterToGetPartnerToken12getpartnerIdEv) +STUB( + "St+wuNbUWhg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("St4apgcBNfo", _ZTIi) +STUB("St5sflz09Vs", rgctx_fetch_trampoline_rgctx_51) +STUB( + "St7EFyXfGJE", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions13isInitializedEv) +STUB("St9crw2jQg4", _ZNK7WebCore4Node18isDefaultNamespaceERKN3WTF12AtomicStringE) +STUB("St9nbxSoezk", clearerr) +STUB("StCY5gaFH-g", WKWebsiteDataStoreSetStatisticsLastSeen) +STUB("StIsvRLuhwQ", + _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes8fromJsonERKNS_4Json5ValueE) +STUB("StJaKYTRdUE", _ZNSt13basic_istreamIwSt11char_traitsIwEED0Ev) +STUB( + "StNNipfeIBQ", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "StOZq85Z1CE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "StPNl2qegag", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEC1EPNS2_10LibContextE) +STUB( + "StTvjqZwwhI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEixEm) +STUB( + "StUWvbTfpNE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEE5resetEPS6_) +STUB("StUsdXpZIa8", _ZN3WTF3URL32removeQueryAndFragmentIdentifierEv) +STUB("StXnL46JBH8", _ZNK7WebCore8Document20linkColorForBindingsEv) +STUB("Stf2igW2C9c", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIlEC2Ev) +STUB("Stn8WH8AdjM", _ZNK3WTF3URL14isHierarchicalEv) +STUB("Sto7R5fuKIE", _ZN3sce2Np9CppWebApi6Common6BinaryC1EPNS2_10LibContextE) +STUB( + "Stu0U8ANHvc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEptEv) +STUB("Stuq0Kimqek", _ZN15AbstractStorage14FacebookFolder5CloseEv) +STUB("SuBDgQswXgo", sceNpManagerIntRemoveActiveSigninStateCallback) +STUB("SuCCD+AZwCc", _ZN3sce2np4NpIdC1ERKS1_) +STUB("SuE90Qscg0s", sceHmdInternalDfuClose) +STUB("SuICKR3aa+Q", _ZN3JSC7Symbols23callFunctionPrivateNameE) +STUB( + "SuL5xDfljvY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("SuPA7yU+Nl0", _ZN7WebCore28convertToIntegerEnforceRangeIaEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB("SuUi5+0aDCI", mono_shared_hashtable_new_full) +STUB("SuY8jMvW97U", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13FriendsOfUserEEneERKS4_) +STUB( + "SubXC8tq7Dg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE8capacityEv) +STUB("SubkMx98zRY", sceNpManagerIntInitInternal) +STUB("Suc8W0QPxjw", _ZdaPvS_) +STUB( + "SuiY95xhNBc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEdeEv) +STUB( + "Sukor27TWD8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi42ParameterWithBinaryRequestBodyToUploadData14setRequestBodyEPKhm) +STUB( + "SuoJOUTw34A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE6resizeEj) +STUB( + "Suur-MUQ6rA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEC1EPS8_) +STUB("SuxRoXrFFq8", rgctx_fetch_trampoline_rgctx_112) +STUB( + "SuzEsCofxjw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEeqERKS9_) +STUB("SuzVGzgtJq4", Java_com_sony_gemstack_io_FilePath_n_1mkdir) +STUB("Sv2VdmEEAhA", JNU_SetStaticFieldByName) +STUB("Sv328nOfyDo", _ZN7WebCore24CoordinatedGraphicsLayer20didUpdateTileBuffersEv) +STUB("Sv6Ikb2tojM", _ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequest19setCancellationTimeERKi) +STUB("Sv7TbVAEqeQ", u_isbase) +STUB("Sv9cvPIyhDA", udata_closeSwapper_67) +STUB( + "SvAJtE1CPUM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEED2Ev) +STUB("SvD58x4BHnY", _ZN3sce2Np9CppWebApi13InGameCatalog2V513ContentRating9unsetNameEv) +STUB( + "SvE3+mF7OBI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "SvFdxFg-ddM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEE11get_deleterEv) +STUB("SvLBzVNYg24", _ZN7WebCore7Element15removeAttributeERKN3WTF12AtomicStringE) +STUB( + "SvO1B-yog4U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEED2Ev) +STUB("SvOponJOO4M", Java_com_sony_bdjstack_javax_media_controls_SoundManager_init) +STUB( + "SvPKTwK55DY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEE7add_refEv) +STUB( + "SvQyto9ZpvU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB("SvWJ6+35As8", fuse_fs_read) +STUB("SvYDbbSUsyM", _ZN3JSC7Symbols41copyDataPropertiesNoExclusionsPrivateNameE) +STUB("SvdXHHt2LLE", sceSocialScreenOpenSeparateMode) +STUB( + "Svjr4ITh8Gc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEC2EPS8_) +STUB( + "SvkCnFdkw64", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE4sizeEv) +STUB( + "Svp3Y7Wq7a8", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemPropertiesD2Ev) +STUB( + "SvpSNOkL5mA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "SvrzrZdC7fs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEED1Ev) +STUB("Svs9bAHtjxs", _ZN3sce7Toolkit2NP2V28Commerce7Request18DownloadListTargetD1Ev) +STUB("SvurnbAr6-g", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching5RoomsEE3getEv) +STUB( + "SvvPFNmLQUg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEED2Ev) +STUB("SvyFVfJ7rUY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEE11get_deleterEv) +STUB("Sw003+Uo9GY", _ZN3WTF15firstDayOfMonthE) +STUB( + "Sw2ssQZ5Bmo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("Sw5F9MFh-WA", sceCtrlpRecStart) +STUB("Sw6PgY-FsnY", _ZN15AbstractStorage14DailymotionAPID2Ev) +STUB("Sw6hs2iJZkU", EC_POINT_mul) +STUB( + "SwAw3X0PKuE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("SwB8EH71bIU", otv_module_class) +STUB("SwCCeuHoB+8", _ZN3WTF9dataLogFVEPKcP13__va_list_tag) +STUB("SwD2P2Z02k8", + _ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_19CSSStyleDeclarationE) +STUB( + "SwISXzy0SPI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEC2EPKS8_) +STUB("SwJ-E2FImAo", _Atomic_compare_exchange_strong_1) +STUB( + "SwNTIE7lkj4", + _ZN7WebCore22EmptyFrameLoaderClient31dispatchDidReachLayoutMilestoneEN3WTF9OptionSetINS_15LayoutMilestoneEEE) +STUB("SwVRb5Q7GCQ", _ZN7WebCore16HTMLVideoElement26webkitDisplayingFullscreenEv) +STUB("SwaiCKyvMn4", _ZN3sce7Toolkit2NP2V212ActivityFeed4Feed5resetEv) +STUB("SwclUBFijyg", rgctx_fetch_trampoline_rgctx_10_p) +STUB( + "SwerCQRQad0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEEaSERSA_) +STUB("SwhP2CM5UxU", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEEdeEv) +STUB( + "Swo2gLmbLc8", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("SworfA4Mkgs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEEC2EPS5_PNS2_10LibContextE) +STUB( + "Swqqhz0PLl4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEE7add_refEv) +STUB( + "SwqzBRVjURs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEEC2ERSB_) +STUB("Swr0nR99Vtk", _GLOBAL__sub_I_orbis_thread.cpp) +STUB("SwvK2+qAD64", _ZN3sce7Toolkit2NP2V29Challenge7Request16ConsumeChallengeC2Ev) +STUB("Sx3QJf26Y2o", _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26RecordScoreResponseHeadersD2Ev) +STUB("Sx4TTyrQccE", sceAppInstUtilAppUnInstall) +STUB( + "Sx7oH65VTR8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEixEm) +STUB("Sx8gcptQG8w", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error27getValidationConstraintInfoEv) +STUB( + "Sx9l7I5SN3I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("SxAScmvLxSM", _ZNK3sce2Np9CppWebApi11Matchmaking2V15Cause7getCodeEv) +STUB( + "SxH2xrgGrU0", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEiRNS2_10LibContextEPT_m) +STUB("SxI1qeVtadg", _Z23sceMatMapFlexibleMemoryPKvmii) +STUB( + "SxPExrUXNPI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("SxPu8PZuHuU", curl_multi_socket) +STUB("SxQprgjttKE", sceAudioInInit) +STUB("SxSEAtl-vow", sceDbgAddExternalTriggerEvent) +STUB("SxWVkTIB01Y", WKURLRequestCopyHTTPMethod) +STUB("SxYUo6o6mjo", sceSysUtilSendSystemNotificationWithDeviceId) +STUB( + "SxaP1hKzlic", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEneERKS9_) +STUB( + "SxbBlpmAx1I", + _ZN3JSC14JSGlobalObject3putEPNS_6JSCellEPS0_NS_12PropertyNameENS_7JSValueERNS_15PutPropertySlotE) +STUB( + "SxepPWtu51E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("Sxjbwl5-9+U", WKCertificateInfoCopyCertificateAtIndex) +STUB( + "Sxpj+4sHFOs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEED2Ev) +STUB("SxrNZhowomw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEE3getEv) +STUB("Sxs0gMc4giY", _ZNK7WebCore13HitTestResult34isOverTextInsideFormControlElementEv) +STUB("Sy08Admb8ks", _ZN3sce7Toolkit2NP19CheckoutInputParamsC2Ev) +STUB( + "Sy0Gq4XY4y0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEED2Ev) +STUB("Sy6xsvd7hhA", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession21leaderPrivilegesIsSetEv) +STUB("SyEPt6ALkw8", WKBundleShutdownProcess) +STUB( + "SyFKjlDgCt0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("SyIALURy2hA", mono_shared_mempool_invalidate) +STUB( + "SyKoOAROdBo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEEaSERKSA_) +STUB("SyLtMxQlS6M", curl_multi_fdset) +STUB("SyNGim8sCDQ", coil_set_keepsocket) +STUB("SyNP2iUHpYQ", UnLockCommInfoList) +STUB("SyPivvfm1ac", _ZN3JSC8JSObject19getEnumerableLengthEPNS_14JSGlobalObjectEPS0_) +STUB("SyQOI661UwU", _ZN9Inspector32ScriptProfilerFrontendDispatchernaEm) +STUB("SyRUCvwvszA", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus9unsetInfoEv) +STUB("SyaPNlB3Lvg", _ZNK3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error7getCodeEv) +STUB("Sygnk9dr5WQ", sceShareRegisterContentEventCallback) +STUB("SyilEZ5n3wU", + _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession16setMaxSpectatorsERKi) +STUB( + "SyjkxcAbV7k", + _ZN3JSC23JSModuleNamespaceObject18getOwnPropertySlotEPNS_8JSObjectEPNS_9ExecStateENS_12PropertyNameERNS_12PropertySlotE) +STUB("SykFcJEGvz4", sceUserServiceGetTopMenuNotificationFlag) +STUB("Symql6+eiQk", + _ZN7WebCore22EmptyFrameLoaderClient17objectContentTypeERKN3WTF3URLERKNS1_6StringE) +STUB( + "SypkWM3gLp4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEEaSERSA_) +STUB( + "SysX2RP7zsE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE5beginEv) +STUB("Syux0CUu4+M", Java_java_awt_GnmRobotHelper_createScreenCapture) +STUB("SyxdUakD7HU", _ZN3sce2np12NpTitleTokenD0Ev) +STUB( + "SyzF-QDqp30", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEE7add_refEv) +STUB( + "Sz3YQM6OXVo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("SzCcVbz1Mrs", _ZN3WTF14numberToStringEdRSt5arrayIcLm123EE) +STUB("SzGuqAJY2z8", rgctx_fetch_trampoline_mrgctx_89_p) +STUB( + "SzGz9Zko6BY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEeqERKS9_) +STUB("SzH17QYNUNE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEEC2EPNS2_10LibContextE) +STUB("SzHwla--cKk", + _ZN3sce7Toolkit2NP2V24Core7Request20DefaultRequestParams21SERVICE_LABEL_DEFAULTE) +STUB("SzMYaEpEi2U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEE5resetEPS6_) +STUB( + "SzP8gMcsZ1Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEixEm) +STUB( + "SzVlcXTG31E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEdeEv) +STUB("SzVtzX43TiY", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V113SubtaskStatusEEneERKS7_) +STUB("SzZIqDlPu0w", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11TusVariableEEeqERKS4_) +STUB("SzbDr5bOLN4", _ZN3JSC7Symbols25regExpTestFastPrivateNameE) +STUB("SzcVE36hmeQ", _ZN7WebCore8SVGNames21enable_backgroundAttrE) +STUB("SziEFoFj2ys", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEEC2EPNS2_10LibContextE) +STUB( + "SzjIF95rxDY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEppEi) +STUB("SzoBfmhKhKc", utrans_register_67) +STUB("Szp04yaBKyM", _ZN7WebCore18TextureMapperLayer10setFiltersERKNS_16FilterOperationsE) +STUB("SzqDdByXmm0", _ZN3sce2Np9CppWebApi10Activities2V114UserActivities5Error9setReasonEPKc) +STUB("SzqrFMDOe8U", il2cpp_class_get_properties) +STUB( + "SzuHbyaVog0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "T+2d4ONf4PM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEEdeEv) +STUB("T+7Dhd2xuAU", __asan_unregister_image_globals) +STUB( + "T+Ai8-dACss", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V136FrequentlyMutedInPartyMetricsFactory7destroyEPNS3_29FrequentlyMutedInPartyMetricsE) +STUB( + "T+B9qAqbrw4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V128SetMultiVariablesRequestBody12setVariablesERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_38SetMultiVariablesRequestBody_variablesEEEEE) +STUB("T+F4GKuY3oE", sceNpSnsIntCreateRequest) +STUB( + "T+IkbeASUqk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "T+NFqLoQ81o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "T+PggmKmFog", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB("T+SNEYc7XrI", + _ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody18setUpdatedDateTimeERK10SceRtcTick) +STUB("T+WD-TEHZhU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia11ScreenshotsEED1Ev) +STUB( + "T+cDvPEWupQ", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseD1Ev) +STUB( + "T+cSPvuoV2U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEE11get_deleterEv) +STUB( + "T+e5NOOpznw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEppEv) +STUB( + "T+h7igOPK-s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE8copyFromERKS9_) +STUB("T+j7sCWP7xk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEaSERS7_) +STUB("T+oUw8GT3Ys", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEC2EPS6_) +STUB( + "T+obHAT+ZuU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("T+zVxpVaaTo", _ZSt14_Cl_wcharnames) +STUB("T-+xooU3VvQ", scePigletReleaseSystemMemoryEx) +STUB("T-3TDydbyOI", unum_getContext_67) +STUB("T-4dkG2zCKQ", _ZN7WebCore8SVGNames8imageTagE) +STUB( + "T-6g7F31oKk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("T-GOS0yg738", WKPageRunBeforeUnloadConfirmPanelResultListenerCall) +STUB("T-KZ5XJers8", _ZN7WebCore8SVGNames15flood_colorAttrE) +STUB("T-Nl1Cy+TeU", WKPageGroupCopyIdentifier) +STUB( + "T-OS5XPOFIk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEneERKS9_) +STUB("T-Sd0h4xGxw", sceFontGraphicsAdjustFillRadialGradient) +STUB("T-V1czueebk", _ZN3sce7Toolkit2NP2V28Presence16PlatformPresenceC1Ev) +STUB("T-Z6jKt7uQY", uscript_getShortName_59) +STUB( + "T-bqIFFkFCM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE8capacityEv) +STUB( + "T-fNO6tJn0Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("T-iLbWI4WfU", WKViewSetViewPopupMenuClient) +STUB("T-jUc4FKpVU", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15PlayedWithStoryEED1Ev) +STUB("T-mGo9f3Pu4", sceHttpSetAutoRedirect) +STUB( + "T-rbI-3a+Zw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("T-rbL3qmaiM", il2cpp_gc_collect) +STUB("T-swaTyeKTo", uregex_regionStart_67) +STUB("T-tXk+GsUww", _ZN3sce7Toolkit2NP2V28Commerce7Request13GetContainersC1Ev) +STUB("T-uddfL1AmI", _ZNK3WTF10StringView10tryGetUtf8ENS_14ConversionModeE) +STUB( + "T-upLZuhfMw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("T-xpaIGNLXU", WKBundlePageDumpHistoryForTesting) +STUB( + "T-zLeFMlzGk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEplEm) +STUB( + "T0-fTF59kM4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "T01RUAs5OKo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE5beginEv) +STUB("T07KcAOlIeU", + _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE5_FfmtEPccNSt5_IosbIiE9_FmtflagsE) +STUB("T0AEgFJcnzc", _ZN7WebCore18TextureMapperLayernaEm) +STUB("T0BBBtOc7Y8", mono_aot_Sce_Vsh_Messages_DbAccessLibmethod_addresses) +STUB( + "T0CzqR5tLXE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEneERKS9_) +STUB( + "T0HAjdVhIKE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEEaSERS9_) +STUB("T0JOV6EajrA", cairo_mesh_pattern_move_to) +STUB( + "T0NcO72zaK0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE5beginEv) +STUB( + "T0OLnBLbU0Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE5clearEv) +STUB("T0R5EFfwaTg", _ZN3JSC12StackVisitor5Frame8sourceIDEv) +STUB("T0RtzSCY4FE", _ZNK7WebCore12WebAnimation14timeToNextTickEv) +STUB( + "T0UBbmuD6rk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEE11get_deleterEv) +STUB("T0VGBVk1sP0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS15TusDataStatusesEED2Ev) +STUB( + "T0YUDWDwH3o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE10setContextEPNS2_10LibContextE) +STUB("T0aVLlco4D8", WKPreferencesGetEncodingDetectorEnabled) +STUB( + "T0dUUmAgu9g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "T0gbtrGEEHk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEED1Ev) +STUB("T0jEvxnQE10", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEEcvbEv) +STUB("T0oW10Z-9Fw", _ZN7WebCore16JSXMLHttpRequest23visitAdditionalChildrenERN3JSC11SlotVisitorE) +STUB( + "T0sH7VHdDYo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEptEv) +STUB("T0ynQY3mH-0", sceVideoOutClearFlipMaster) +STUB( + "T1+P0MEg0Xk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEixEm) +STUB("T1-MFiUMm5I", GCC_except_table408) +STUB("T1-Z1I8I17o", _ZNK7WebCore11RenderStyle26colorByApplyingColorFilterERKNS_5ColorE) +STUB( + "T10WEq5MCLA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEC2Ev) +STUB("T10xlsNDjFU", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersD2Ev) +STUB( + "T167ZzpIqKw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE5abortEv) +STUB( + "T18+ZlmT8uQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEC1EPS6_PNS2_10LibContextE) +STUB( + "T1D+mYPLmMo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEE7get_refEv) +STUB( + "T1N-hVBvEGE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("T1PPlAh5vfw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEE5resetEPS6_) +STUB("T1YYqsPgrn0", _ZNSt14numeric_limitsIhE6digitsE) +STUB( + "T1cmtfSbv5A", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE13getLibContextEv) +STUB("T1eNlDYf7p0", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification11RefreshRoomEEC1Ev) +STUB( + "T1gHGMduF80", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEneERKS9_) +STUB("T1iBRWloVjg", MD4_Update) +STUB("T1kuF0NLUaw", _ZN3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectatorD1Ev) +STUB("T1lN-HZtmcs", ucln_cleanupOne) +STUB( + "T1sKGarkLag", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB("T1t68JwPqME", sceKernelGetUtokenWeakenedPortRestrictionForRcmgr) +STUB("T1vTG8NicGQ", Java_java_lang_reflect_Array_setByte) +STUB("T1wLnMJV2KE", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119PlayStyleProperties12getOpenEndedEv) +STUB("T204st1S50Q", scePlayReadyCdmiGenerateRequest) +STUB("T23YLQIlyFY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEED1Ev) +STUB( + "T27EfT9ODaE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEC2EPS6_PNS2_10LibContextE) +STUB("T2GDgYUO-GM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE7popBackEv) +STUB("T2GU7yBLQNA", WKPageGoForward) +STUB("T2IDImQGXhI", _ZN3sce7Toolkit2NP2V29Challenge10ChallengesaSERKS4_) +STUB( + "T2LbCOQdrlY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEE5resetEPS9_) +STUB( + "T2RMTQRTuYY", + _ZN7WebCore18setViewportFeatureERNS_17ViewportArgumentsEN3WTF10StringViewES3_bRKNS2_8FunctionIFvNS_17ViewportErrorCodeERKNS2_6StringEEEE) +STUB("T2S52YA15BU", _ZN3sce7Toolkit2NP17KickMemberRequestC2Ev) +STUB("T2T9cksAopA", _ZN3sce2Np9CppWebApi6Common6VectorIdE6insertENS2_13ConstIteratorIdEERKdRS6_) +STUB("T2UOKf00ZN0", sceNpPartyGetMembers) +STUB( + "T2gPtmknpmc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEEaSERKS9_) +STUB( + "T2kvH7KFOOE", + _ZN3sce2Np9CppWebApi14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyC1EPNS1_6Common10LibContextE) +STUB( + "T2o7POm-rGo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEC2EPKS8_) +STUB( + "T2uir2IRDXg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEEC1ERKSA_) +STUB("T2w3ndcG-+Q", _ZN3sce2np8HttpFileD0Ev) +STUB( + "T2xoPkWLbfo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEE5resetEPS6_) +STUB("T2zg0WBB5so", mono_aot_Mono_Data_Sqliteplt) +STUB( + "T3-aJQbPL6U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE8copyFromERKS9_) +STUB("T327+NdBshc", + _ZN7WebCore21JSCSSStyleDeclaration15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "T35FBGsLB5k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEC1Ev) +STUB("T3A0YY9cXws", ucol_openElements_67) +STUB("T3DDKCffyLU", mono_aot_System_Net_Http_WebRequestunbox_trampolines) +STUB("T3Go5GjqGNk", _ZN7WebCore24DeprecatedGlobalSettings24setMockScrollbarsEnabledEb) +STUB("T3ItUkVoAJI", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_19WordFilterSanitizedEED2Ev) +STUB( + "T3RrNjGWjAA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEED1Ev) +STUB("T3URYCmLEvc", + _ZNK3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectator16customData1IsSetEv) +STUB("T3W9Y-smgpk", mono_btls_ssl_ctx_is_debug_enabled) +STUB("T3WReElX4BY", _ZN3sce4Json5Array8iteratoraSERKS2_) +STUB("T3YKOiki1yk", _ZN3sce7Toolkit2NP2V26Friend16FriendsOfFriends5resetEv) +STUB( + "T3YdLl0U2wI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("T3aMt+-A-0Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V114SearchOperatorEEC1Ev) +STUB("T3cTLVtkJec", ulist_createEmptyList_67) +STUB( + "T3cngap1dWE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEC1EPS8_) +STUB("T3dnU8gEyFA", _ZNK3sce2Np9CppWebApi14IdentityMapper2V312AccountIdMap12getAccountIdEv) +STUB("T3eF0TQ84Ts", uset_removeString_67) +STUB("T3gLp2xSZis", WKRenderLayerGetCompositingLayerType) +STUB("T3n-PPwiKko", VerifyClass) +STUB( + "T3pOgpPYBCs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "T3rWof-ea9o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEppEi) +STUB("T40ztl-1Xdw", il2cpp_class_from_name) +STUB("T42BJPYedzA", _ZN3sce7Toolkit2NP2V29Challenge18ChallengeThumbnailD1Ev) +STUB("T42boWJRm-Q", _ZN3JSC12BigIntObject6s_infoE) +STUB("T48ikVhJ2eM", _ZN7WebCore18ParsedContentRangeC1Elll) +STUB("T4BHUjH773k", sceMouseExtensionSetConfig) +STUB("T4BiNWsLHtQ", sceVnaUtilInitialize) +STUB( + "T4D-IrtC2uc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEC2Ev) +STUB("T4J7pya-x4c", ucnv_setSubstString) +STUB( + "T4JQHQc79D0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEED2Ev) +STUB("T4KqGQgbNPA", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE5beginEv) +STUB("T4L2vVa0zuA", sceUserServiceGetVoiceRecognitionLastUsedOsk) +STUB("T4LQfIvEvl8", mono_aot_Sce_Cdlg_Platformplt_end) +STUB( + "T4Qvh94yAPM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE8copyFromERKS9_) +STUB("T4RZ2R4QNj8", _ZN7bmalloc15IsoHeapImplBasenaEmPv) +STUB("T4Rd8lv7SaU", sceCompositorSetFlipCommand2) +STUB( + "T4S6GbHkXUI", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_errorC1EPNS1_6Common10LibContextE) +STUB("T4UQhpiNn4E", sceRnpsAppMgrRecoverUfsImage) +STUB("T4UaFjUdbCo", _ZN7WebCore13AXObjectCache19enableAccessibilityEv) +STUB( + "T4VBdfYmBvE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEE3getEv) +STUB("T4WqXTOe+A4", sceUlpMgrVshFinalize) +STUB( + "T4YS-bEio5I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE3endEv) +STUB( + "T4aO3n+d7ic", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("T4gCsx-jtOI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEE7get_refEv) +STUB("T4jFoVqCZmA", NET_SockaddrEqualsInetAddress) +STUB("T4osaR3EDkI", sceKernelLwfsSetAttribute) +STUB("T4pnqZWxHco", __asan_load16) +STUB("T4t7EbNRa-Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEaSERKS7_) +STUB("T4ucGB8CsnM", sceVideoOutVrrUnpegFromFixedRate) +STUB("T4vOLGegdvQ", WKBundlePageConfirmComposition) +STUB("T4w31LJSLNo", _ZN7WebCore11DisplayList11DrawPatternD0Ev) +STUB("T589M5rT9iw", sceRemotePlayClientShowHomeScreen) +STUB("T59dz+-nR38", _ZN7WebCore6Editor7commandERKN3WTF6StringE) +STUB( + "T5NfXDZudTY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE7reserveEi) +STUB( + "T5OFqfz31ls", + _ZN7WebCore20UserGestureIndicatorC2EN3WTF8OptionalINS_26ProcessingUserGestureStateEEEPNS_8DocumentENS_15UserGestureTypeENS0_23ProcessInteractionStyleE) +STUB("T5OWyJevfHY", _ZN23sceMetadataReaderWriter8finalizeEv) +STUB( + "T5PBFSZkajA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEC2Ev) +STUB( + "T5TIxj8bH2w", + _ZN3sce2Np9CppWebApi14SessionManager2V131JoinedPlayerSessionWithPlatformC1EPNS1_6Common10LibContextE) +STUB("T5Vs1D2PClU", scePthreadMutexattrSetgen) +STUB( + "T5XPSPGD3ME", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEEC1ERSA_) +STUB("T5Y5L0Em2xw", _ZN7WebCore9TimerBaseC2Ev) +STUB( + "T5cEQg6YTJs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEE5resetEPS9_) +STUB( + "T5i4e9kL6LI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEEaSERKSA_) +STUB("T5khZWssY4A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEED1Ev) +STUB( + "T5mF4EXKHaU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE10setContextEPNS2_10LibContextE) +STUB("T5o+X-wW0AE", WKPreferencesSetDOMPasteAllowed) +STUB( + "T5s3L5oVv6U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEEC1ERSA_) +STUB( + "T5tp+VWDoHs", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB( + "T5x8nG7btEQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEC1EPS8_) +STUB("T61vWaA+d9Q", sceNpJsonParse2) +STUB( + "T64n2bzRmZQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE5beginEv) +STUB("T64o-315wbg", sceShareSetScreenshotOverlayImage) +STUB( + "T68mQdfIoY0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEC1Ev) +STUB("T6CVkdCDO7o", sceCompositorGetSystemAddress) +STUB( + "T6DR7R7k5yY", + _ZN8meta_gen11MsvPromoter24setKeyValue_TBLAVC_WidthENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB("T6DkmU7eTlg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEptEv) +STUB("T6FYjZXG93o", sceImeGetPanelPositionAndForm) +STUB( + "T6Hq2VWFIzo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("T6LrBljciS0", sceAvSettingNotifyProcessResume) +STUB("T6PgrfSegHY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEaSERKS7_) +STUB("T6a3cXf9a+s", _ZN9Inspector18InspectorHeapAgent12stopTrackingERN3WTF6StringE) +STUB("T6aBLn9qAKw", upvec_close_67) +STUB( + "T6ao+IlfzFY", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEiRNS2_10LibContextEPT_m) +STUB( + "T6bhSSTLzeU", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS5_INS7_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("T6cIWTdtu9w", _ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE3endEv) +STUB("T6dq8X4MjWk", mono_image_get_strong_name) +STUB("T6eEJ0yDotY", _ZN3sce2Np9CppWebApi7Matches2V123RequestTeamMemberResultD2Ev) +STUB( + "T6iopR5v16k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEC1EPS9_) +STUB("T6jaOV62tbI", _ZN9Inspector21RemoteInspectorServer9singletonEv) +STUB( + "T6oP7qjlMnY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE7reserveEi) +STUB("T6tnM1Uti4g", sceNpLookupNpId) +STUB("T6xuVw0KUJo", sceAgcDebugRaiseException) +STUB( + "T700EPcLMQc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEED1Ev) +STUB( + "T705Y+e3XZs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEixEm) +STUB("T70Qyzo51uw", sceUserServiceGetPbtcThursdayHoursStart) +STUB( + "T71vszAdLHI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE8copyFromERKS9_) +STUB("T72hz6ffq08", scePthreadYield) +STUB("T75otfFvxGA", u_fgetcx_67) +STUB("T7EoauKK+cM", _ZNK3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayer12getAccountIdEv) +STUB("T7I1KBLPAs4", + _ZN3sce2np13JsonDocParser11createValueEPNS0_9JsonValueENS0_10JsonParser9ValueTypeEPKc) +STUB( + "T7QLImGInhs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEE7get_refEv) +STUB( + "T7ZDKOb2640", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("T7jc4xaLMKo", ucurr_getName) +STUB("T7jpSs90834", _ZN7WebCore9HTMLNames6idAttrE) +STUB("T7nplsVsL2E", _ZN3JSC7Symbols34stringSubstringInternalPrivateNameE) +STUB("T7uvjt1f0HM", il2cpp_class_is_inflated) +STUB("T7uyNqP7vQA", tan) +STUB( + "T7vKrppbcig", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEdeEv) +STUB( + "T7wMUkA8NbI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("T7zncgvFweM", _ZNK7WebCore16HTMLImageElement8completeEv) +STUB( + "T85u2sPrKOo", + _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE11do_get_dateES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm) +STUB("T87yshnXkMU", mono_jit_set_aot_only) +STUB("T8A8MZcrjS4", scePlayReadyProfilePause) +STUB("T8BlFd-lMik", mono_aot_Sce_PlayStation_HighLevel_UI2jit_code_start) +STUB( + "T8Ck1sVF4u4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "T8DFlhGXUuM", + _ZN9Inspector21InspectorConsoleAgent18getLoggingChannelsERN3WTF6StringERNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Console7ChannelEEENS1_13DumbPtrTraitsISA_EEEE) +STUB("T8K2tZMk0O4", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15CategoryInfoSubEED1Ev) +STUB("T8KYHPs1JE8", sceMoveSetLightSphere) +STUB( + "T8KgSoXBsCI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEC1Ev) +STUB( + "T8QYmsnx2JY", + _ZN3sce2Np9CppWebApi14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBody8fromJsonERKNS_4Json5ValueE) +STUB("T8VkAKBOWl8", WKBundleSetJavaScriptCanAccessClipboard) +STUB( + "T8ZNwA0DtvA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE5emptyEv) +STUB("T8ZlojCdON0", sceKernelGetParentApp) +STUB("T8b+oe2DcgE", _ZNK7WebCore15VisiblePosition4nextENS_27EditingBoundaryCrossingRuleEPb) +STUB("T8epoPh-reg", _ZN12Mp4Retriever7loadBoxEv) +STUB("T8fER+tIGgk", select) +STUB("T8fOjmwNgOI", _ZNK3WTF8JSONImpl9ArrayBase9writeJSONERNS_13StringBuilderE) +STUB( + "T8gMdESDuNg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEEC2ERKSA_) +STUB("T8gUq8nzVrg", _ZN3sce7Toolkit2NP18UserProfileRequestC1Ev) +STUB("T8jV1atvgZY", _ZN3sce7Toolkit2NP2V210Tournament22TeamVsTeamMatchDetailsC2Ev) +STUB("T8jy0JWa210", sceCamera2GetHue) +STUB("T8lH8xXEwIw", _Atomic_fetch_sub_8) +STUB("T8mmyXkQxRE", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V111OfferStatusEEC2EPS6_) +STUB( + "T8mw3Nr9i+8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEC2Ev) +STUB( + "T8qsDTXBrOM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEC2EPNS2_10LibContextE) +STUB("T8r-IQC4Ir8", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE3endEv) +STUB( + "T8ukb53jIwc", + _ZN7WebCore6Editor15pasteAsFragmentEON3WTF3RefINS_16DocumentFragmentENS1_13DumbPtrTraitsIS3_EEEEbbNS_22MailBlockquoteHandlingE) +STUB("T8upMyvUPz0", sceFiosCachePrefetchFile) +STUB("T8vnV8tm9f0", + _ZNSt15basic_streambufIcSt11char_traitsIcEE7seekposESt4fposI9_MbstatetENSt5_IosbIiE9_OpenmodeE) +STUB("T8xEHO2Y+XU", sceAgcDriverAllocateToolMemoryForGpuReset) +STUB("T9-NuSHAvcQ", sceLoginServiceInitialize) +STUB("T94JbyFDzgY", _Write) +STUB( + "T996G7kIz7s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE7popBackEv) +STUB( + "T9A61bHHBP4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEEC1Ev) +STUB("T9LZVgaendA", _ZN3JSC2VM34unlinkedFunctionCodeBlockSpaceSlowEv) +STUB("T9OGLog7agk", mono_disasm_code) +STUB( + "T9OhZwk3U8o", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEneERKS9_) +STUB("T9QNcoIsEqs", _ZN7WebCore21ISOTrackEncryptionBoxC2Ev) +STUB( + "T9QP6K5Z+WM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("T9Y7kdTM9V4", _ZN7WebCore12SharedBufferC1Ev) +STUB("T9f0vjBcCjI", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_16NetStateDetailedEED1Ev) +STUB( + "T9fQOSVyChY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEEptEv) +STUB("T9fjQIINoeE", sceAgcQueueEndOfPipeActionPatchType) +STUB( + "T9kEEoh7W-4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB("T9n7NsRzQZQ", _ZN3sce2Np9CppWebApi6Common6VectorIiEC1EPNS2_10LibContextE) +STUB( + "T9uiElmaoFo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB( + "T9wNcRYsAOk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEE5resetEPS9_) +STUB("T9xeifEUF3w", sceShellCoreUtilUnmountAppRight) +STUB("T9yCBYaGDew", sceVdecCoreTrySyncDecodeWptr) +STUB("T9zZMfuHeN0", _ZN3JSC7Symbols21regExpExecPrivateNameE) +STUB("TA33hG8chaM", _ZNK3JSC12JSRopeString31resolveRopeToExistingAtomStringEPNS_14JSGlobalObjectE) +STUB("TA4NTYpt0uU", sceVnaGetWakeupPhraseInfoCount) +STUB("TA4rU9ZXgFM", _ZN4IPMI6Client6Config27AsyncMethodInvocationConfigC1Ev) +STUB("TA5PTLnmxas", _ZN3sce2Np9CppWebApi14SessionManager2V131ResponseGameSessionMemberPlayerD1Ev) +STUB("TABucyiW6AQ", scePadVrControllerReadCombinedState) +STUB("TAIH+ypi0Zg", _ZN7WebCore8SVGNames12additiveAttrE) +STUB("TAIhaLjmAlg", cairo_paint_with_alpha) +STUB("TAJqZTApovE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEEppEv) +STUB("TALvt3S7UpQ", _ZN7WebCore5Color11transparentE) +STUB("TAM4tVJxMNs", _ZN3sce7Toolkit2NP2V28Commerce16RatingDescriptorD1Ev) +STUB("TAPTWYaYf8Q", _ZN3sce4Json5Array8iteratorC1Ev) +STUB("TAUezVfCrKc", _ZN3sce2np13JsonDocParser12onObjectNameEjjPKc) +STUB( + "TAZ6piWMCr8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEC2ERS7_) +STUB("TAcqIuI0JjY", scePlayReadyCdmiGetConfiguration) +STUB( + "TAhERcIUOsI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEEC2ERSA_) +STUB("TAtHxpv9wEM", mono_aot_System_IO_Compression_FileSystemplt_end) +STUB("TB+cYQ89RiM", _ZN7WebCore15HTTPHeaderFieldC2EON3WTF6StringES3_) +STUB( + "TB2EH8AB25c", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEEptEv) +STUB( + "TB5KnZwOfGM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEppEi) +STUB("TB6bA40pAig", _ZN8meta_gen14ImageRetriever23CreateThumbnailFromFileEPcRf) +STUB("TB7J71se2I0", _ZN3sce7Toolkit2NP22BlockedListInfoRequestC1Ev) +STUB( + "TB9zuAEH1YI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB("TBAQFb1Gjzs", _ZN23sceMetadataReaderWriter11_storageHddE) +STUB("TBGBVDzPzh0", WKBundleNodeHandleGetRenderRect) +STUB( + "TBKvvBrgcPE", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer17unsetserviceLabelEv) +STUB( + "TBRqkBlKG5w", + _ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionMemberPlayer10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_27ResponsePlayerSessionPlayerEEEEE) +STUB( + "TBTSH1NR8hs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEC2ERS8_) +STUB( + "TBV6q98yypA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEEC2ERKSA_) +STUB("TBWW4aPfWcA", sceAjmBatchJobGetInfo) +STUB("TBeZQ0ZN6dg", WKNavigationResponseGetTypeID) +STUB("TBjFH+qUxVM", MD5) +STUB( + "TBn5VxXEaLU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("TBoSLF0Ro9g", WKPreferencesSetInspectorAdditionsEnabled) +STUB( + "TBpJutnkFkk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB("TC4eCNLv+ZI", _ZNK3sce2Np9CppWebApi7Matches2V15Error9getSourceEv) +STUB("TC9965WYLHM", WKURLRequestCreateWithWKURL) +STUB( + "TCFCMmT-OyE", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot8hasgroupEv) +STUB("TCGaocenYbg", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEEC1Ev) +STUB( + "TCJpUloY2bw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEEC1ERSA_) +STUB("TCL2XqRT68g", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging25GameDataMessageAttachmentEE3getEv) +STUB("TCLYB70X9OA", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V128SetMultiVariablesRequestBody14variablesIsSetEv) +STUB( + "TCMtYMfpCv0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEmmEv) +STUB("TCQOHlVGX+U", rgctx_fetch_trampoline_rgctx_98) +STUB("TCRmigbq7lc", FT_Render_Glyph) +STUB( + "TCRug7A0Iso", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEmmEi) +STUB( + "TCVEM3USLEc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEE11release_refEv) +STUB("TCZyE2YI1uM", sceNetShowRoute6WithMemory) +STUB( + "TCj7EKvTvhA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE7reserveEi) +STUB("TCkRD0DWNLg", sceNetGetpeername) +STUB("TCoxhC7dHcs", _ZN3sce7Toolkit2NP2V27Session20LocalizedSessionInfo10STATUS_LENE) +STUB( + "TCpMi+hGAhY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE21intrusive_ptr_sub_refEPS9_) +STUB("TCqT7kPuGx0", sceAppContentGetDownloadedStoreCountry) +STUB("TCsNanKP+U4", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE3endEv) +STUB("TCxkyZtQmF0", _ZN3IPC18MessageReceiverMap21removeMessageReceiverENS_15StringReferenceE) +STUB( + "TD-7tEowBHg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEixEm) +STUB( + "TD0wAuIQqqM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEplEm) +STUB("TD4yuUlRdTE", utext_close_67) +STUB("TDGzlNos7eM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEEC1EPNS2_10LibContextE) +STUB( + "TDHb1zxNzPc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "TDLjxlFwVgE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "TDMpxGpIMfg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEeqERKS9_) +STUB("TDRCoFObHro", _ZN7WebCore10StorageMap3keyEj) +STUB("TDRsCp3GG+g", mono_aot_Sce_Vsh_VideoRecordingWrapperjit_got) +STUB("TDXEkfbB7o8", _ZN3sce7Toolkit2NP2V27NpUtils7Request22GetAccountIdByOnlineIdD1Ev) +STUB( + "TDXGaTNdDbg", + _ZN3sce2Np9CppWebApi14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyC1EPNS1_6Common10LibContextE) +STUB("TDZC+Ww30ys", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus22getLastUpdatedDateTimeEv) +STUB("TDcSAy5LzTc", _ZN6WebKit17ChildProcessProxy26abortProcessLaunchIfNeededEv) +STUB("TDfQqO-gMbY", sceSslGetCaCerts) +STUB( + "TDfhatKH6bA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("TDhjx3nyaoU", _ZNSt7_MpunctIwEC2EPKcmbb) +STUB("TDly960ALRg", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats8mmrIsSetEv) +STUB("TDn0PWg7Jnk", mono_aot_System_Threading_Tasksunbox_trampoline_addresses) +STUB("TDoqRD+CE+M", sceNpTusGetFriendsDataStatusForCrossSave) +STUB("TDrGYoSkxMo", __sanitizer_cov_dump) +STUB("TDtCTYwcHIs", WKPreferencesGetUniversalAccessFromFileURLsAllowed) +STUB("TDuC6To9HJ8", _ZN3sce2np7Callout5StartEjPNS1_7HandlerE) +STUB( + "TDuxTuyLPIY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEE7add_refEv) +STUB("TDw66YLBpg0", _ZN3JSC11VMInspector13dumpCallFrameEPNS_9ExecStateEj) +STUB( + "TE+2sWIXI9M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEED1Ev) +STUB( + "TEABnd+G9tQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEC1EPS8_) +STUB("TEAq8iMH9O4", _ZN3JSC7Symbols23provideFetchPrivateNameE) +STUB( + "TECRh7NmqIA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB("TEFYZUChnps", u_fgetConverter_67) +STUB( + "TEIQaRsz7Nw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEED2Ev) +STUB("TEMThaOLu+c", _ZNSt14numeric_limitsIDiE9is_signedE) +STUB("TESmX5D-i54", sceDbgKeyboardOpen) +STUB("TEVrkWV4tsA", _ZN7WebCore16BlobRegistryImplD0Ev) +STUB("TEW3IKxYfXc", sceContentSearchSearchContent) +STUB("TEXK2RQkhx0", uenum_openFromStringEnumeration_67) +STUB("TEd4egxRmdE", mbrtoc32) +STUB("TEhXNTfZWlY", _ZN12video_parser17cVideoProfilerMp417_createAudioCodecEjPNS_13VpMediaInfo_tE) +STUB( + "TEj-be6rlEM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEC1EPS6_PNS2_10LibContextE) +STUB("TEmmurC3zow", _ZN3sce2np9JsonArrayC1EP14SceNpAllocator) +STUB("TEmyq2mz3QU", _ZN7WebCore16HTMLInputElement5filesEv) +STUB("TEsQ0HWJ8R4", sceUserServiceGetVolumeForGenericUSB) +STUB("TEtyeXjcZ0w", _ZNSt8numpunctIcEC1Em) +STUB("TEwqtzAmezo", ksem_init) +STUB("TExBVnSsbKQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEC2Ev) +STUB("TExVA41Gyh4", _ZNSt6vectorIN15AbstractStorage19FacebookFolderEntryESaIS1_EE9push_backEOS1_) +STUB( + "TEyAaT5mjKQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEED2Ev) +STUB("TF+uJ5OgjRE", mono_code_manager_new_dynamic) +STUB("TF1H5w8DeSo", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_19ProductInfoDetailedEE7addressERS3_) +STUB("TF7T1ARtN+4", _ZN3sce2Np9CppWebApi6Common8IteratorIjEppEv) +STUB( + "TFBq3+rs8Ek", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEeqERKS9_) +STUB("TFHm6-N6vks", _sceUltQueueDataResourcePoolCreate) +STUB( + "TFIH1gqO-RI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("TFJPWkwQ62Y", rgctx_fetch_trampoline_mrgctx_85) +STUB("TFMg6xiaT10", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEaSERS7_) +STUB("TFQd2WVF5tU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEaSERS7_) +STUB("TFTfPLH+Ue8", _ZN4IPMI4impl10ServerImpl14registerKeventEi) +STUB("TFaZLdYPbls", _ZNK7WebCore4Node18isDefaultNamespaceERKN3WTF10AtomStringE) +STUB("TFclhiSEXqI", WKNotificationCopyTitle) +STUB( + "TFoaFXf0vEQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE5beginEv) +STUB("TFomi8j7Tas", u_isISOControl_67) +STUB( + "TFsGPEgcYYw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("TFu1HTQqTsM", _ZNK7WebCore12RenderObject17useDarkAppearanceEv) +STUB("TFyU+KFBv54", sceNpEntitlementAccessGetAddcontEntitlementInfoList) +STUB("TFyVtXqnZrA", _ZN15AbstractStorage14YoutubeContentD1Ev) +STUB("TFyk1CYu0mo", + _ZN3sce7Toolkit2NP2V29Messaging7Request19SendGameDataMessage18MAX_SIZE_DATA_NAMEE) +STUB( + "TG0rdm+BHyw", + _ZN7WebCore14FrameSelection12setSelectionERKNS_16VisibleSelectionEN3WTF9OptionSetINS0_18SetSelectionOptionEEENS_23AXTextStateChangeIntentENS0_19CursorAlignOnScrollENS_15TextGranularityE) +STUB("TG3iqA3SgLs", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEE5resetEPS4_) +STUB("TG3r8b3sqqM", g_hash_table_size) +STUB("TGBn8YLhSro", _ZN3WTF13printInternalERNS_11PrintStreamEs) +STUB("TGEZzUWLbrc", sceAgcCbSetUcRegistersDirectGetSize) +STUB( + "TGIj8WnYMeY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE6resizeEj) +STUB("TGJ5bE+Fb1s", _ZN3sce2np9NpTitleIdD1Ev) +STUB( + "TGJ60786Vzs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEmmEv) +STUB( + "TGK5IJ35lzI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "TGMFdUSS3Uk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE5clearEv) +STUB( + "TGOtuGphLw0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE6resizeEj) +STUB("TGRaXM8tHdo", sceDeci4hDrfpReleaseBuffer) +STUB("TGSWFyxiuf8", _ZN3JSC2VM20setIteratorSpaceSlowEv) +STUB( + "TGTHFnXjdAU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEC1EPS6_PNS2_10LibContextE) +STUB("TGU99OcdkEw", WKPreferencesGetOfflineWebApplicationCacheEnabled) +STUB("TGYjQWpJ2Z8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEC1ERS7_) +STUB("TGaR23-2C1s", WKDatabaseManagerGetDatabaseDetailsModificationTimeKey) +STUB("TGf8Vh+xeHo", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEED1Ev) +STUB( + "TGfkgf2cxcc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEEC1Ev) +STUB( + "TGkFyuSBTEg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEEC2Ev) +STUB("TGqfADbxy1s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEED1Ev) +STUB("TGsos8ZCV8c", _ZN3sce3pss5orbis9framework24InitializePsmEventCsharpEv) +STUB("TGuMd7Mc+Bc", _ZN7WebCore13JSHTMLElement9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB( + "TGwWCLrzVYI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEC1EPS8_) +STUB("TGwl4fiL2JI", _ZN3sce7Toolkit2NP2V26Friend12BlockedUsersC1ERKS4_) +STUB("TGyF9uiUGQY", _ZN7WebCore18JSHTMLVideoElementC2ERKS0_) +STUB("TH+yGaroNWg", _ZN3sce7Toolkit2NP2V27Session14InvitationDataaSERKS4_) +STUB( + "TH0fU7SdDcg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEmmEv) +STUB("TH9idd-IFfM", _ZN3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator14unsetJoinStateEv) +STUB( + "THB-wvY+nNg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEE11get_deleterEv) +STUB( + "THFniQXBq9E", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi9joinMatchEiRKNS4_20ParameterToJoinMatchERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB( + "THH2KcDTK9Y", + _ZN8meta_gen11MsvPromoter30setKeyValue_TBLAVC_CreatedTimeENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB("THNzGIjuTFw", + _ZN3sce2Np9CppWebApi11UserProfile2V120BasicPresenceFactory7destroyEPNS3_13BasicPresenceE) +STUB("THO0RsxD6hY", png_get_color_type) +STUB( + "THOmjDDtWSM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEEC2EPSA_PNS2_10LibContextE) +STUB("THP8MYBpfG4", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEEptEv) +STUB("THUXn8n+dOE", _ZN3JSC48UnconfigurablePropertyChangeConfigurabilityErrorE) +STUB("THWDguS4dME", _ZNK7WebCore17HTMLOptionElement18ownerSelectElementEv) +STUB("THXrHBwZILE", _ZN7WebCore8SVGNames10orientAttrE) +STUB( + "THZ8PmUlCSo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEmmEi) +STUB( + "THavz+wPp8c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEC1EPNS2_10LibContextE) +STUB("THcHgZElshs", cairo_set_fill_rule) +STUB( + "THdc7lCzGOw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEE7add_refEv) +STUB("THf+FNX0FaA", + _ZN3sce2Np9CppWebApi15Personalization2V121GetAccessCodeResponse8fromJsonERKNS_4Json5ValueE) +STUB("THh1aXQLUk4", _ZN7WebCore10JSDocument4infoEv) +STUB("THhPk-FTXPk", _ZThn176_N7WebCore8Document8postTaskEONS_22ScriptExecutionContext4TaskE) +STUB( + "THiU2Zr+Efk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEmmEv) +STUB( + "THkDfcyZVfE", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEEiRNS2_10LibContextEPT_m) +STUB( + "THmPLO9ixAE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEEC1ERSA_) +STUB("THoqw25Bm4Y", vzone_writeSimple_67) +STUB( + "THybu+0Xr0E", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB( + "THykYEt8NQ0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("THz5e4CJP-Y", _ZN10MsvUpdater11getFilenameEmPc) +STUB("TI+djeSDh5s", _ZN15AbstractStorage14MemfileContent8SeekByteEliPl) +STUB("TI5ES3rnuTI", _ZN9Inspector32DebuggerBackendDispatcherHandlerD0Ev) +STUB("TI5Vxsw0xME", WKBundlePageGroupGetTypeID) +STUB( + "TI5eKFsWHfs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE5clearEv) +STUB("TI6pnb4Ova4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEEaSERKS6_) +STUB("TIC0-2sQ8ZY", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEEptEv) +STUB( + "TIE4VNpcdtE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEmmEv) +STUB("TIIXA2JOiOw", _ZTVN9Inspector21InspectorRuntimeAgentE) +STUB( + "TIW0+xA6C24", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEC2EPNS2_10LibContextE) +STUB("TIWikmyjjYo", WKBundleSetDatabaseQuota) +STUB("TIXhfLgeJHo", _ZN3sce7Toolkit2NP2V212EventsClient6EventsC1Ev) +STUB("TIcuE5Y+ViQ", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setTextSTStyle) +STUB( + "TIdDZeVUTJ4", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V333CommunicationRestrictionStatusApi44ParameterToGetCommunicationRestrictionStatusC1Ev) +STUB("TIdn+yGbJlo", glEnable) +STUB("TIhyl0S4i7g", sceNpUniversalDataSystemIntRecordObjectSetUInt32) +STUB("TIkDupljJqY", _ZNK7WebCore8Document7bgColorEv) +STUB( + "TImf0LCHuzY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEppEv) +STUB("TIr3rnF-1RA", sceUpsrvGetSystemExUpdateTaskState) +STUB( + "TIw+XqK-Gpc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEEaSERKSA_) +STUB("TIytAjYeaik", sceRazorCpuStartCaptureInternal) +STUB("TJ2NUsHORlU", _ZN4Manx11MediaPlayer7setSizeEii) +STUB( + "TJ3mnYXAZDk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("TJCAxto9SEU", sceNpTrophyRegisterContext) +STUB("TJFQFm+W3wg", finite) +STUB("TJG6tf+yJlY", sigqueue) +STUB( + "TJHyPe54bog", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEED2Ev) +STUB( + "TJIV4zGjz8o", + _ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends10initializeEPNS1_6Common10LibContextEPKc) +STUB( + "TJJq4xIwp8E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE8capacityEv) +STUB("TJNrs69haak", _ZN3sce2np5Mutex7TryLockEv) +STUB("TJPfcVnZnUk", _ZN7WebCore16TrackPrivateBasedaEPv) +STUB( + "TJR4JqECxTc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEE3getEv) +STUB( + "TJTD2180kNY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEC2Ev) +STUB("TJVkpK-C6G0", WKWebsiteDataStoreConfigurationSetMediaKeysStorageDirectory) +STUB( + "TJWgLu3k8xQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "TJXtHw5mkKY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEC1ERS7_) +STUB( + "TJZ2bDcI8Vo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEixEm) +STUB("TJbM4gtL7mU", + _ZN7WebCore22HistoricalVelocityData18velocityForNewDataENS_10FloatPointEdN3WTF13MonotonicTimeE) +STUB("TJdN+l3A1+U", _ZN7WebCore22HTMLFormControlElement13setFormActionERKN3WTF12AtomicStringE) +STUB( + "TJj-3+PiTW4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEmmEv) +STUB("TJkl66wcxuo", _ZN7WebCore8Settings18setFrameFlatteningENS_15FrameFlatteningE) +STUB("TJmXkFe3Cbo", WKWebsiteDataStoreConfigurationSetServiceWorkerRegistrationDirectory) +STUB("TJmeruk9Dh4", _ZN9Inspector21InspectorRuntimeAgentD1Ev) +STUB("TJoynmWee5U", mono_marshal_set_cached_stelemref_methods) +STUB("TJp3kdSGsIw", sceShellCoreUtilSetImposeStatusFlag) +STUB("TJpNIabD5xo", utext_openUTF8_67) +STUB( + "TJpytHEcGJU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEE5resetEPS9_) +STUB("TJqSgUEzexM", sceNpSetNpTitleIdVsh) +STUB( + "TJv+tIgDIMY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE7reserveEi) +STUB( + "TJz8sDUa6n4", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE5startEPNS2_10LibContextE) +STUB( + "TK-C+fGnZik", + _ZN3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinition17setnpServiceLabelEj) +STUB( + "TK0zq4F3y7c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEaSERS7_) +STUB("TK1i-05lxPA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE5beginEv) +STUB("TK6fX5Lm-6A", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy17TrophyPackSummaryEEC1Ev) +STUB("TK8KB0Wy-ug", _ZNK7WebCore12RenderInline16linesBoundingBoxEv) +STUB("TKAug7ne4Fg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEE7get_refEv) +STUB( + "TKD5e66jkBk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("TKEVthp9TPs", mono_aot_System_Runtime_Serializationplt) +STUB( + "TKIy5sWhKHQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEE5resetEPS9_) +STUB( + "TKJtLKKtNfs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB("TKLkmhUa4iQ", ucnv_toUChars_67) +STUB("TKMUic9rap4", uchar_addPropertyStarts_67) +STUB( + "TKPOlr6ECNg", + _ZN3sce2Np9CppWebApi7Matches2V124ResponseMatchTeamFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_17ResponseMatchTeamEEE) +STUB( + "TKSZiwV-U3U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE5clearEv) +STUB("TKU973CSMWc", _ZN3JSC2VM24apiValueWrapperSpaceSlowEv) +STUB("TKVlOCelO64", mono_aot_I18N_CJKunwind_info) +STUB("TKW+Hu5wGkA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEED1Ev) +STUB("TKYXtGzdYLw", _ZNK7WebCore9FrameTree20traverseNextRenderedEPKNS_5FrameE) +STUB("TKYsv0jdvRw", _ZNSt3pmr20set_default_resourceEPNS_15memory_resourceE) +STUB( + "TKanS4YSTRA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEppEi) +STUB("TKiWvcaXe-g", sceOpusCeltEncInitialize) +STUB("TKibH4lSX8s", _ZN7WebCore16BlobRegistryImpl17unregisterBlobURLERKNS_3URLE) +STUB("TKlRU+iE1Ic", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V15GroupEEmmEv) +STUB("TKpESwz2ZAc", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_33ActivityFeedSharedScreenshotStoryEEC1ERKS4_) +STUB( + "TKsaqbkb7FM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEEC2ERKSA_) +STUB("TL-B6uOba1A", sceFsISSchedUnmapStat) +STUB("TL1XjYe1xLo", _ZN7WebCore24notifyHistoryItemChangedE) +STUB("TL4WvNLVUW4", _ZN3WTF28setMainThreadCallbacksPausedEb) +STUB("TL86glUrmUw", sceSslSetAlpn) +STUB("TLBRRuix8Mc", ucnv_setFallback_59) +STUB("TLIFhMZosmw", CRYPTO_malloc) +STUB("TLJjJYmivbA", _ZN7WebCore18PrewarmInformationdlEPv) +STUB("TLK1GcvZ8Bk", _ZN7WebCore11DisplayList5ScaleC2ERKNS_9FloatSizeE) +STUB("TLV1JoLPNd8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEEppEv) +STUB("TLV4mswiZ4A", sceGnmDriverCaptureInProgress) +STUB( + "TLV53uwTPco", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEEC1ERKSA_) +STUB("TLWK+2sKnf8", WKBundlePageSetEditorClient) +STUB("TLWo+mfROq0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEaSERKS7_) +STUB("TLXASbZ8f9I", WKErrorGetSslVerificationResult) +STUB("TLar1HULv1Q", sceZlibInflate) +STUB("TLb+BQycN58", udatpg_getPatternForSkeleton_67) +STUB("TLbAlNRDi0k", _ZN3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap13setIsRecycledERKb) +STUB( + "TLgfUbY0sn8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("TLmzpgpiC5U", WKPreferencesGetJavaScriptCanAccessClipboard) +STUB("TLrDgrPYTDo", sceUserServiceIsUserStorageAccountBound) +STUB( + "TLtcnoX0u5E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("TLtpfRPpdi0", _Clearlocks) +STUB("TLvAYmLtdVw", _FRint) +STUB("TLx0qRyPmU8", _ZN7WebCore8SVGNames9circleTagE) +STUB("TLyH8l10x3Y", Java_java_util_zip_Inflater_setDictionary) +STUB("TM0Sj+Ebins", _ZN3sce4Json6Object4PairD2Ev) +STUB("TM0fFahw4Ls", uprv_decContextSetStatusFromString_67) +STUB( + "TM4SJG9CR1Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEEC2ERKSA_) +STUB("TM6aDNP6DoI", Java_java_io_UnixFileSystem_getLastModifiedTime) +STUB("TMD7qWwlvVU", Java_java_awt_GnmRobotHelper_doKeyActionNative) +STUB("TMEevWRaXyw", sceClPthreadJoin) +STUB("TMJMa-7HiyE", il2cpp_gc_enable) +STUB("TMK1MOeUsO0", _ZN3sce2Np9CppWebApi7Matches2V117LeaveMatchRequestD1Ev) +STUB( + "TMSHnf7QfvI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEEC2ERKSA_) +STUB("TMTliCpeSVI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEEmmEi) +STUB("TMXA-Mek+oc", sceDebugGetWaitingListOfUltCondvar) +STUB("TMhLRjcQMw8", _PathLocale) +STUB( + "TMjUF5vs1eY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "TMk08DeHjZA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE8copyFromERKS9_) +STUB("TMkXGsxzbNY", uhash_removei) +STUB( + "TMmNK3mjdF8", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEEiRNS2_10LibContextEPT_m) +STUB( + "TMoyEMoPfdk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEC1EPNS2_10LibContextE) +STUB("TMplM5ji62w", udat_toPatternRelativeTime_67) +STUB("TMrt-i4Gomg", _ZN7WebCore16CSSParserContextC2ERNS_8DocumentERKNS_3URLERKN3WTF6StringE) +STUB("TMssJ2CYX6o", mono_class_get_parent) +STUB("TMtqoFQjjbA", sceFontSetEffectSlant) +STUB("TMwYGNk+z3w", WKPreferencesGetAcceleratedCompositingEnabled) +STUB("TN2s4sryg+Q", Java_java_awt_GnmGraphics_nativeDrawArc) +STUB( + "TN5Z3GKsVJ8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE21intrusive_ptr_sub_refEPS9_) +STUB("TNBAZhJ1yKc", GCC_except_table52) +STUB( + "TNFvCbFICBM", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody18comparedValueIsSetEv) +STUB( + "TNGuKdtlrNg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("TNIVUy2LiBo", _ZNK3sce2Np9CppWebApi7Matches2V116JoinMatchRequest17getNpServiceLabelEv) +STUB("TNSE0nmNAYw", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEEdeEv) +STUB("TNSVDoXI0AM", mono_aot_mscorlibmethod_addresses) +STUB("TNZrG2iXikw", u_strCompareIter) +STUB("TNbQMd1lZxU", WKBundlePageCopyRenderTreeExternalRepresentation) +STUB("TNee-Ts08Ck", _ZN3JSC7Symbols18promisePrivateNameE) +STUB("TNexGlwiVEQ", _ZNKSt7codecvtIcc9_MbstatetE2inERS0_PKcS4_RS4_PcS6_RS6_) +STUB("TNo4xzYkEW0", _ZN7WebCore11DisplayList8RecorderD0Ev) +STUB("TNpVhxCBHCA", _ZN7WebCore13MIMETypeCache21supportsContainerTypeERKN3WTF6StringE) +STUB( + "TNtABxYBSaw", + _ZN9Inspector27DOMStorageBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("TNtArf4E2JA", mono_aot_Sce_Vsh_Np_Udsunwind_info) +STUB( + "TNv6Zn-BGqg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "TO0M-DADl-M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEE3getEv) +STUB("TO6C8Mw-kjo", _ZNK3JSC18PropertyDescriptor16isDataDescriptorEv) +STUB("TO8m+qmr3KM", _ZN3sce2Np9CppWebApi7Matches2V114ResponseMemberC1EPNS1_6Common10LibContextE) +STUB( + "TOKPx8XJuLo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEE11release_refEv) +STUB( + "TOQYTjCx2sA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("TOR8qssJ0Bw", monoeg_g_array_insert_vals) +STUB("TOSs7RMM3ls", mono_metadata_load_generic_params) +STUB("TOXlvmHeQO4", __remquol) +STUB("TOYFo8wa2h8", _ZN7WebCore13getBackingMapERN3JSC14JSGlobalObjectERNS0_8JSObjectE) +STUB("TObeC0zFAd0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth7IdTokenEE3setEv) +STUB("TOhg7P6kTH4", sceUsbdInit) +STUB("TOq04zeT-40", umsg_toPattern_67) +STUB( + "TOr6QUB6g6s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEED2Ev) +STUB( + "TOxm2dj0cww", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEplEm) +STUB("TOy1EeQB544", JVM_RegisterUnsafeMethods) +STUB( + "TOyWijguPVA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE10setContextEPNS2_10LibContextE) +STUB( + "TOz8+i2GAG8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEED2Ev) +STUB("TP3h6oFdmQ8", _ZN3sce7Toolkit2NP2V26Friend12BlockedUsersaSERKS4_) +STUB( + "TP4ZnVj9KsU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB( + "TP6ELN6H2Qc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEEC2Ev) +STUB("TP6INgQ6N4o", __swbuf) +STUB( + "TP6Nvf9+aWU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEC1Ev) +STUB( + "TP7n-FKBUwY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("TPGcdyuNVJM", _ZN7WebCore9HTMLNames10posterAttrE) +STUB("TPKIWtZkFU0", sceHttpCacheRetrieveWithMemoryPool) +STUB("TPKhRt1QIeE", FT_Stroker_ConicTo) +STUB("TPMbgIxvog0", sceNpGetAccountLanguageA) +STUB("TPSSbm1lXrU", + _ZN7WebCore15DeferredPromise6rejectENS_13ExceptionCodeERKN3WTF6StringENS_15RejectAsHandledE) +STUB("TPVebHEFB2s", sceMusicCoreServerSetTrackList) +STUB("TPYlzWierqc", _ZN3JSC18PropertyDescriptor11setWritableEb) +STUB("TPZwl6AOixY", mono_aot_Sce_Vsh_Np_RifManagerjit_code_start) +STUB( + "TPba+xuUogA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("TPg4nvciRvo", + _ZN3sce2Np9CppWebApi11Matchmaking2V127ListUserTicketsResponseBody8fromJsonERKNS_4Json5ValueE) +STUB("TPldTG849XM", _ZN7WebCore12WebAnimation9instancesEv) +STUB("TPmLbbXsRfs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEC1ERS7_) +STUB( + "TPnJ9WtiXrg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("TPplvBxaj8w", jpeg_calc_output_dimensions) +STUB("TPq0HfoACeI", _ZNKSt8messagesIwE4openERKSsRKSt6locale) +STUB( + "TQ+Oydd4w4A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("TQ-chrI6zwk", _ZN3sce7Toolkit2NP2V28Matching7Request10CreateRoomD1Ev) +STUB("TQ0twAGFKlQ", GCC_except_table446) +STUB( + "TQ12UwL0USE", + _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody19setTicketAttributesERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_9AttributeEEEEE) +STUB( + "TQ2rhs6m01g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEC2Ev) +STUB( + "TQ506qHhB94", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeaders15getCacheControlEv) +STUB("TQ6TGeYEz+g", p05) +STUB("TQAPGJNeD6E", mono_aot_Sce_Vsh_SyscallWrapperjit_got) +STUB("TQAgyCMIdV0", _ZN3JSC7Symbols34getPromiseInternalFieldPrivateNameE) +STUB("TQBi7LVgAgM", _sceNpHeapFreeImpl) +STUB("TQCA0u-vO2U", SwCtrlSinkStreamInitialize) +STUB("TQMEOWUAgsY", X509_STORE_up_ref) +STUB("TQMy+M3j0Fs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEED1Ev) +STUB( + "TQO7Teo2oxg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEEC2ERKSA_) +STUB("TQPr-IeNIS0", _Quad) +STUB( + "TQQ+Ue4CmPc", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEEiRNS2_10LibContextEPT_m) +STUB( + "TQYSkcc1skw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEEC1ERKSA_) +STUB("TQaogSaqkEk", sceImeSetCandidateIndex) +STUB("TQlnNfMQVQY", zrule_getDSTSavings_67) +STUB("TQqkCrMahCk", mono_aot_ReactNative_Modules_Vsh_Gct_Telemetryunbox_trampoline_addresses) +STUB("TQref3Gi6qM", + _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBodyC2EPNS1_6Common10LibContextE) +STUB( + "TQsroCMX8W4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE6resizeEj) +STUB("TQxbrxPdIxU", sceKernelGetResourceOne) +STUB("TQzUIRBLPqc", _ZN3sce7Toolkit2NP2V28Commerce10ContainersC1Ev) +STUB("TR5RhPFlDf0", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11UserProfile10NpProfilesEE12deepCopyFromERS7_) +STUB( + "TRAR41aQAcg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "TRDJgltsilA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEEC1ERSA_) +STUB( + "TRGMPa7M0nM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE5beginEv) +STUB("TRGSS0M-C5U", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V19Bandwidth9getGlobalEv) +STUB( + "TRGjNX5BJAU", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "TRIkTplzrsM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEC2EPS6_PNS2_10LibContextE) +STUB("TRKKq-jyzsg", _ZN3sce7Toolkit2NP2V212ActivityFeed7StoryIdD2Ev) +STUB( + "TRLQ5tq8+qk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEEC2ERSA_) +STUB("TRO721eVt4g", sceAgcDcbResetQueue) +STUB( + "TRWsS5bPI04", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("TRbUbU6biKg", sceAudioOutExGetLastOutputTime) +STUB( + "TRd7S9n3juU", + _ZN7WebCore8JSDOMURLC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_6DOMURLENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "TRdj37hYB5U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEC1EPKS8_) +STUB("TRgFHuli5Ns", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEED2Ev) +STUB( + "TRgLZjJpZw0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("TRiJ8YQTrwQ", JVM_DefineClassWithSourceCond) +STUB("TRjT6D-Pt2o", _ZN7WebCore17HTMLCanvasElement25setUsesDisplayListDrawingEb) +STUB("TRn3cMU4mjY", _ZNSt10moneypunctIcLb1EEC1ERKSt8_Locinfomb) +STUB( + "TRnNxoUlj70", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE8pushBackERKS8_) +STUB("TRzy0ckrqIg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEE5resetEPS6_) +STUB( + "TS3lzRCIUR8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEC2EPS8_) +STUB("TSBXwo1yQ1M", _ZN7WebCore12WorkerThread5startEON3WTF8FunctionIFvRKNS1_6StringEEEE) +STUB( + "TSFAMo9De0o", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEneERKS9_) +STUB("TSHraww6xQs", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE8pushBackERKS6_) +STUB( + "TSIzuYWxIDA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSC_) +STUB( + "TSJuFjH4H9g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE7reserveEi) +STUB("TSKvgSz5ChU", sceSystemGestureGetTouchEventByIndex) +STUB("TSL6wfivFms", _ZN3sce2Np9CppWebApi14SessionManager2V127ResponsePlayerSessionPlayerD2Ev) +STUB("TSM6whtekok", sceNetShutdown) +STUB("TSMc8vgtvHI", _ZTSPDi) +STUB("TSNILC5+3rE", mono_metadata_parse_array) +STUB( + "TSVDXTCydc8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "TSVRAZnl6To", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEC2EPS8_) +STUB( + "TSVnkXvlU3Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEE7add_refEv) +STUB( + "TSXoIqBlB-s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEC1EPS6_PNS2_10LibContextE) +STUB("TSZzWjvbJGE", sceSdecGetVersionSw) +STUB( + "TSiiysUwGac", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEE5resetEPS9_) +STUB( + "TSoQhYKyq5g", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE4sizeEv) +STUB("TSrREisrFnA", + _ZN3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayer14setCustomData1EPKvm) +STUB("TSsaPZ85eJo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEaSERS7_) +STUB( + "TSsbWhHsFTc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEdeEv) +STUB( + "TSwdnSfYyS4", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEEiRNS2_10LibContextEPT_m) +STUB( + "TSyjOdwWyxY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEEcvbEv) +STUB("TSzt0VlBA7o", _ZThn8_N3sce2np13JsonDocParser11onEndObjectEjj) +STUB("TT-E3Wna3O4", utext_isLengthExpensive) +STUB( + "TT0pJ7KN2qM", + _ZN3sce2Np9CppWebApi12Leaderboards2V129RecordScoreRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_22RecordScoreRequestBodyEEE) +STUB("TT4K6hxGZSY", _ZN7WebCore16CSSParserContextC1ERKNS_8DocumentERKN3WTF3URLERKNS4_6StringE) +STUB( + "TTBmKTpmWJY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEC1Ev) +STUB("TTG+LBz6KHk", _ZTVN4IPMI4impl11SessionImplE) +STUB( + "TTGRO2Ny0uc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("TTHhexfjJ1E", WKRenderLayerIsClipping) +STUB( + "TTKBdxWB-7E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEE11get_deleterEv) +STUB( + "TTKIeCaahYU", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer13isInitializedEv) +STUB("TTMT4FFg3zI", sceUpsrvUpdateDoUpdateWithHandler) +STUB( + "TTQ01dKglBo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEC1EPS8_) +STUB("TTUMmINnVCg", _Z22scePlayGoDevInitializeP21ScePlayGoDevInitParam) +STUB("TTVT7IBxsrM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody8setLimitERKi) +STUB( + "TTVisLtBunE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEeqERKS9_) +STUB("TTi1wXli58Q", sceEsvmEngineMediaKeySessionGenerateRequest) +STUB( + "TTiqvlKaNbM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "TTjkYSxhlyM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEplEm) +STUB( + "TTk6Lit3MgU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE10setContextEPNS2_10LibContextE) +STUB("TTlQMk6YTRM", _ZNK3WTF6String29charactersWithNullTerminationEv) +STUB( + "TTpw9I0Ab4I", + _ZN3sce2Np9CppWebApi14SessionManager2V136GetFriendsPlayerSessionsResponseBody8fromJsonERKNS_4Json5ValueE) +STUB( + "TTvCsxt9+54", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEptEv) +STUB( + "TTvl1L4YcS4", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot8hasgroupEv) +STUB("TTxUpyc0DI8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEE5resetEPS6_) +STUB( + "TTxjToMrxVg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEmmEi) +STUB( + "TU+xXRFMM2g", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB( + "TU-1V5ipEBo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("TU-d9PfIHPM", socket) +STUB( + "TU0eCP6FcB0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEplEm) +STUB("TU1vyo33xrs", ucnv_enableCleanup) +STUB("TU3Di8EftsU", mono_get_exception_thread_abort) +STUB( + "TU3y7ZaOK+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEE5resetEPS6_) +STUB("TU6Yl8+mT3c", u_setMemoryFunctions) +STUB("TU8QndXbCBg", _ZN7WebCore21UserContentURLPattern5parseERKN3WTF6StringE) +STUB("TUC9xC1YQjs", setpriority) +STUB( + "TUMsOIa3Ce0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("TUOY67as3-Y", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEEC1Ev) +STUB( + "TUPWiv-gZXM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE17getResponseHeaderERSB_) +STUB( + "TUUx66QRLO0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEC1EPS8_) +STUB( + "TUWEINiz31Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEixEm) +STUB("TUYoEUSlXss", SSL_get_certificate) +STUB("TUas95IjiX8", _ZN9Inspector22InspectorDebuggerAgent28clearDebuggerBreakpointStateEv) +STUB( + "TUbg5w1QQUk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEdeEv) +STUB("TUeiEyT6u9Y", mono_aot_Sce_Vsh_EventServiceWrapperunbox_trampolines_end) +STUB("TUf9SbYk2cs", _ZN9Inspector28DOMStorageFrontendDispatcherC1ERNS_14FrontendRouterE) +STUB( + "TUhLsIrDSiM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEC1EPS8_) +STUB( + "TUiY9iBaxXI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEneERKS9_) +STUB( + "TUkf77KWiEo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEE5resetEPS9_) +STUB("TUmlsjCjEQA", sceUpsrvUpdateCheckDoCheckSystemBeta) +STUB("TUnAHZhIAO4", _ZN7WebCore17JSDOMRectReadOnly15subspaceForImplERN3JSC2VME) +STUB( + "TUnX49erAaA", + _ZN7WebCore25validatePreflightResponseERKNS_15ResourceRequestERKNS_16ResourceResponseENS_23StoredCredentialsPolicyERKNS_14SecurityOriginEPKNS_37CrossOriginAccessControlCheckDisablerE) +STUB("TUpiRsYKtCo", sceFsDevpfsCreateForVSH) +STUB("TUuFEPFuHzk", sceMbusDebugEncodeApplicationStartupInfo) +STUB( + "TUucAlMhark", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE3endEv) +STUB("TUuiYS2kE8s", shutdown) +STUB( + "TUvss8-cofA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEE11get_deleterEv) +STUB("TV0vBdSa6OU", _ZN7WebCore8Document27createProcessingInstructionERKN3WTF6StringES4_) +STUB("TV3KKXZLUj4", sceNpIdMapperAccountIdToOnlineId) +STUB( + "TV6gD+CeBHE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEED2Ev) +STUB("TVCrpn1qdxM", _ZNK3sce2Np9CppWebApi13InGameCatalog2V517ContentDescriptor8urlIsSetEv) +STUB( + "TVIsUr5UFxc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEE5resetEPS8_) +STUB("TVM-aYIsG9k", sceAppContentAddcontEnqueueDownloadSp) +STUB( + "TVQ6UhW83ps", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("TVVlqC4KOco", _ZNK7WebCore19HTMLTextAreaElement12defaultValueEv) +STUB( + "TVWiuT874aw", + _ZN3sce2Np9CppWebApi14SessionManager2V137RequestPlayerSessionInvitationFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_30RequestPlayerSessionInvitationEEE) +STUB("TVYZIv-b2rc", _ZN3WTF28numberToFixedPrecisionStringEdjPcb) +STUB("TVZVCsGNj84", _ZN7WebCore8SVGNames4gTagE) +STUB("TVapRR2giTo", cff_cmap_encoding_class_rec) +STUB("TVd1j9BUoBs", _ZN4Manx8X509cinfC1EPKS0_) +STUB("TVe6T-UKcoc", sceMusicPlayerServiceGetPlayStatusExtension) +STUB("TVegDMLaBB8", sceVrTrackerGpuSubmit) +STUB("TVfbf1sXt0A", _ZSt4cerr) +STUB( + "TVfeSMIkEqc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEEdeEv) +STUB("TVfmD9Abq-w", __sce_debug_fingerprint_start) +STUB( + "TVgX6ZH+Ruc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEC1Ev) +STUB("TViD1EZXkNI", sceAudioOut2Set3DLatency) +STUB("TVn6aXbaNZE", _ZN7WebCore9HTMLNames5hrTagE) +STUB("TVpB5j70A6E", _ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody12commentIsSetEv) +STUB( + "TVqXHk2yDJM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEE5resetEPS6_) +STUB( + "TVrJGc5HGw8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEE11release_refEv) +STUB("TVz54sxiDF8", _Z32sceRazorGpuThreadTracePushMarkerPN3sce3Gnm17DrawCommandBufferEPKcj) +STUB( + "TW1pi3vYCmY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "TW2v7C2AWTc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE8pushBackERKS8_) +STUB("TW5cClea8P8", JVM_GetClassDeclaredFields) +STUB("TWBpd2oJ5Po", _ZN23sceMetadataReaderWriter13writeMetadataERKSsRKNS_8MetadataEjPS2_) +STUB("TWEfZQh62V8", _ZN7WebCore11DisplayList8ClipPathC2ERKNS_4PathENS_8WindRuleE) +STUB( + "TWK37p54V+g", + _ZN9Inspector21PageBackendDispatcher16searchInResourceElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("TWMdmWZVXVo", _ZN7WebCore18PrewarmInformationC1ERKS0_) +STUB("TWPUIv6uW-g", _ZNK7WebCore18TextureMapperLayer25isAncestorFixedToViewportEv) +STUB("TWPY1x1Atys", sceNpIntToHex) +STUB( + "TWPu9IvUGjw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "TWR+F00992s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEE3getEv) +STUB( + "TWS2G8F9zIA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB("TWUXKVxmn2E", _ZN7WebCore16HTMLInputElement21setShowAutoFillButtonENS_18AutoFillButtonTypeE) +STUB( + "TWWZGZravx0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("TWXUBxNYVN8", mini_get_debug_options) +STUB( + "TWYxUQkCCn0", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessions13isInitializedEv) +STUB( + "TWbJaV00hsI", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEiRNS2_10LibContextEPT_m) +STUB("TWe9e+Jmwz4", _ZNK7WebCore16HTMLMediaElement12playbackRateEv) +STUB("TWi-wZVp5Pc", sceGameCustomDataDialogGetResultA) +STUB("TWkaN5bipEA", _ZNK3JSC6JSCell9getStringEPNS_9ExecStateERN3WTF6StringE) +STUB("TWnxOQaUhBI", _ZNK3JSC4Yarr17RegularExpression13matchedLengthEv) +STUB("TWstzqFWGyo", sceCesUtf32beToSbc) +STUB("TWsueeM6bWo", _ZNK7WebCore8Document16styleRecalcCountEv) +STUB("TWtGBP-grBM", cairo_get_miter_limit) +STUB("TWvK7KRSnxw", mono_thread_cleanup) +STUB("TWvPsc6MkmA", sceDebugGetJobManagerInfo) +STUB("TWzf5iykiGw", ft_mem_strcpyn) +STUB( + "TX194V5gmu8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEEptEv) +STUB( + "TX2G2hAoWBw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEmmEv) +STUB("TXA24cfaqVQ", uregex_appendReplacementUText_67) +STUB("TXABsmiiqto", sceFiosOverlayAdd) +STUB("TXB+6dO21HM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ChildActivityAvailabilityEEC2EPS6_) +STUB("TXBMplXYS-8", mono_loader_unlock) +STUB("TXEHKpCJ-aE", u_getCombiningClass) +STUB("TXFFFiNldU8", getpeername) +STUB("TXJnPiKuTf8", _ZN3sce2np18MemoryStreamWriterD0Ev) +STUB("TXKpuJNdojc", + _ZN3sce2Np9CppWebApi14SessionManager2V124GameSessionMemberForRead15unsetSpectatorsEv) +STUB("TXL878caq4c", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_21AbortGameDataResponseEEC1Ev) +STUB("TXLb1h6iUz4", + _ZNK3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBody6toJsonERNS_4Json5ValueEb) +STUB("TXSNtR-LjE4", _ZN7WebCore18JSHTMLMediaElementC1ERKS0_) +STUB( + "TXVjLNUr7eI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB("TXVqxrKxbjw", _ZN3sce2np10JsonParser5ParseEPNS0_6HandleEPNS0_12StreamReaderE) +STUB("TXYHFRuL8UY", sceImeSetTextGeometry) +STUB("TXaOMYg-7Zg", _ZN3JSC7Symbols19includesPrivateNameE) +STUB( + "TXgm1sV2SkA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEmmEi) +STUB("TXhrTaaJM1Y", _ZN7WebCorelsERN3WTF10TextStreamENS_10ColorSpaceE) +STUB("TXiSnhNv9ng", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainerC2Ev) +STUB( + "TXlScxVUrSs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEEC1ERKSA_) +STUB("TXmUfk23SAk", _ZN7WebCore20ResourceLoadObserver9setSharedERS0_) +STUB( + "TXnfrn0t+vQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEEdeEv) +STUB("TXxiiiJLw6o", mono_aot_System_Corejit_code_end) +STUB("TXz-VD-fk2Y", _ZN7WebCore8SVGNames6rxAttrE) +STUB("TXzpCgPmXEQ", sceNpManagerIntGetClientCredentialAccessToken) +STUB( + "TY4I5LMyTZo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEC2EPKS8_) +STUB("TY5vzD-y6EA", _ZNK4IPMI4impl11SessionImpl16isPeerPrivilegedEv) +STUB( + "TY757QX+es4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE6resizeEj) +STUB("TY8-YB6+N2U", _ZN3JSC7Symbols17reducePrivateNameE) +STUB("TY9dzLeTPYU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEE11get_deleterEv) +STUB("TYAZ2ei0J18", _ZSt9use_facetISt7codecvtIDsc9_MbstatetEERKT_RKSt6locale) +STUB("TYE4irxSmko", toupper) +STUB("TYEr3zjqOxo", + _ZN7WebCore21JSTextTrackCueGeneric15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("TYMPK-S1pDk", mono_image_loaded) +STUB("TYN4NyoBiEs", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEEC2Ev) +STUB("TYP+vYIYVpg", _ZN7WebCore24DeprecatedGlobalSettings25setUsesMockScrollAnimatorEb) +STUB("TYVKHQWMtS4", _ZNK7WebCore11MediaPlayer4sizeEv) +STUB("TYWcrOKVg8E", _ZN3sce7Toolkit2NP2V27Session7Request32DisplayReceivedInvitationsDialogC2Ev) +STUB( + "TYXxQdZurSw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEC1EPS6_PNS2_10LibContextE) +STUB("TYefQL0fJXQ", rgctx_fetch_trampoline_mrgctx_95) +STUB("TYekc+AjR60", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEE5resetEPS6_) +STUB( + "TYj+odohMFg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEE3getEv) +STUB("TYlQxeGWIk4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEEC1EPS5_PNS2_10LibContextE) +STUB( + "TYo3VYhvktI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEEC1ERKSA_) +STUB( + "TZ+zJZaSA-o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("TZ59EniJlz0", + _ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest18getMatchStatisticsEv) +STUB( + "TZ59qzZYXtY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("TZ5K24vde6w", _ZN7WebCore9DOMWindow16registerObserverERNS0_8ObserverE) +STUB("TZBK+iB67G0", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfilesD2Ev) +STUB( + "TZOB8v0UTbk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE6isBusyEv) +STUB("TZORpCIbSpA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEE3getEv) +STUB("TZQbvfBrVgQ", _ZN12video_parser13cVideoPathMgv20GetMaclistEKBVersionEv) +STUB("TZSep4xB4EY", sceNpWebApiIntCreateServicePushEventFilter) +STUB( + "TZW6U9K8cYc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEED2Ev) +STUB("TZWR3p6XxXk", sceCamera2Stop) +STUB("TZYDxIdgRtg", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V324ValidationConstraintInfo6getKeyEv) +STUB("TZjF5DsZmAM", _ZN3sce7Toolkit2NP2V212NetworkUtils12Notification14NetStateChangeC1Ev) +STUB("TZnDVkP91Rg", sceWebBrowserDialogSetCookie) +STUB( + "TZo5s01wetw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEmmEi) +STUB("TZqb8E-j3dY", sceNgs2RackQueryInfo) +STUB("TZyuFeGuw9Y", _ZN3sce4Json5ValueC2ERKS1_) +STUB("Ta+JC0maV8o", WTFReportArgumentAssertionFailure) +STUB("Ta2tL2y1+u4", _ZN7WebCore28InspectorFrontendClientLocal21isProfilingJavaScriptEv) +STUB("Ta4QqYGkXZg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE7popBackEv) +STUB("Ta52bXx5Tek", sceUserServiceGetKeyboardType) +STUB("Ta8UauHm2Xo", _ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession13getSearchableEv) +STUB("Ta8V+gmIGrU", _ZNK3sce7Toolkit2NP9Utilities6FutureI24SceNpBandwidthTestResultE3getEv) +STUB("TaAWi4hX79Y", _ZN7WebCore9HTMLNames11checkedAttrE) +STUB("TaBfmPSAaTE", _ZN7WebCore14JSVoidCallback12callbackDataEv) +STUB("TaCxSAxB9U8", _ZN7WebCore20PasteboardCustomData5EntryC2EOS1_) +STUB("TaDmxqsJSnU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEEcvbEv) +STUB("TaFoNNX1N2k", _ZTVN7WebCore11DisplayList11SetLineJoinE) +STUB("TaGaLJiNIWI", utrans_getSourceSet_67) +STUB( + "TaJe0-tU4sU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEE11release_refEv) +STUB("TaLjWC7VaF8", _ZN4Manx8X509nameC2EPKS0_) +STUB( + "TaMLd-p1mnk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE5emptyEv) +STUB("TaNw7W25QJw", sceNpPartyGetMembersA) +STUB("TaQ5c-vBzNs", mono_aot_Sce_Vsh_SessionInvitationunbox_trampolines) +STUB( + "TaR534D7g6M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("TaXlTcqvxNI", sceHeadTrackerStop) +STUB( + "TaeE9kq1MPY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "TafssQgncMs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEEaSERS8_) +STUB("Taj2Bejna6U", fuse_fs_fsyncdir) +STUB( + "TajC46MS6+0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEEC2Ev) +STUB("TaoNtmMKkXQ", sceNgs2ModuleEnumConfigs) +STUB("TasWJCEWUlI", _ZNK7WebCore17ResourceErrorBase8lazyInitEv) +STUB("TaswYPAvtOQ", WKPreferencesGetAccessibilityObjectModelEnabled) +STUB("Tb-2eo3kue0", _ZN3sce7Toolkit2NP2V211SocialMedia7Request12ActionLinkFb11MAX_URL_LENE) +STUB("Tb-iOd+G2Zs", sceFaceTrackerStopTracking) +STUB("Tb2NxhCO51o", _ZN3JSC12isFromJSCodeEPv) +STUB("Tb8EQj-Yhq8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEE3getEv) +STUB( + "TbASWdIKZEo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEaSERKS7_) +STUB( + "TbAruCjHKhI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEneERKS9_) +STUB("TbBRZ2J+pxw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEC2Ev) +STUB( + "TbCRaUdbgDM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE5beginEv) +STUB( + "TbEm6j-m4Aw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEEC1Ev) +STUB("TbO9XCCGKCI", ucnv_flushCache) +STUB( + "TbOubgmlNf8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "TbVBnrz6Q+A", + _ZN3sce2Np9CppWebApi14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyC1EPNS1_6Common10LibContextE) +STUB("TbY1oq4RTOs", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS3_18CustomResponseDataEE19setCustomReturnCodeEi) +STUB( + "TbZhQodHqx4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE3endEv) +STUB("TbiFApiUGOE", rgctx_fetch_trampoline_mrgctx_82) +STUB( + "TbjGZNdD-A4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("TblUC9Y7yP0", _ZNSt12system_errorC1ERKS_) +STUB( + "TbmB9kr8uCo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEC1EPS8_) +STUB("TboE83AF4GM", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEEdeEv) +STUB("TbtJAJGjSyc", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsD1Ev) +STUB( + "Tbtt60lEMAc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEEC2Ev) +STUB("TbuLWpWuJmc", _Atomic_exchange_2) +STUB("Tc-hAYDKtQc", sceHttpSetResolveTimeOut) +STUB( + "TcFvS5cS5a0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEEC1Ev) +STUB( + "TcFyuZOe7DM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEC1EPS8_) +STUB( + "TcHdV+XPkTQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE3endEv) +STUB( + "TcMiFjRilZk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEE5resetEPS9_) +STUB( + "TcTmGoWQfbU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE5clearEv) +STUB( + "TcU8jBsD4GY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE5beginEv) +STUB( + "TcXPbsRsn1g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE8pushBackERKS9_) +STUB("TcXVGc-LPbQ", sceUsbdTryLockEvents) +STUB("TcazRMchOFs", _ZNK3JSC8JSObject11hasPropertyEPNS_14JSGlobalObjectENS_12PropertyNameE) +STUB( + "TcbSCinKOZo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE7popBackEv) +STUB("TcdJEJdDwpQ", + _ZN12video_parser17cVideoProfilerMp420_createSubtitleCodecEjPNS_13VpMediaInfo_tE) +STUB( + "TcfUXi6KpZs", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10getString4Ev) +STUB("TcpQ1Vf3-+M", _ZN3sce7Toolkit2NP2V23TUS7Request7GetDataD2Ev) +STUB("Tcrb96Nl0jc", ucsdet_getConfidence_67) +STUB("TcwEFnakiSc", sceNpCmpNpIdInOrder) +STUB( + "TcyMEZsEKGA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEmmEi) +STUB("Td-PJUT3DYQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEEeqERKS7_) +STUB( + "Td5qC5ZyMIs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEEC1ERSA_) +STUB( + "Td7IovZnmh8", + _ZN3sce2Np9CppWebApi14IdentityMapper2V311PsnWebError8setErrorERKNS1_6Common12IntrusivePtrINS3_17PsnWebError_errorEEE) +STUB("Td8wQ0FqTqg", _ZN7WebCore11MediaPlayer23beginSimulatedHDCPErrorEv) +STUB( + "Td9n7QnEAeU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "TdEXRg6HMhQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "TdFiy39uryU", + _ZN3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsTouchResponseBody8fromJsonERKNS_4Json5ValueE) +STUB("TdL8quj5nBc", mono_btls_x509_get_not_before) +STUB( + "TdLJN9I9Tyc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEEC2ERSA_) +STUB("TdLam7xSzmY", curl_multi_wakeup) +STUB("TdO4ul+fgFI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE3endEv) +STUB( + "TdRn-s0SaO4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE21intrusive_ptr_sub_refEPS9_) +STUB("TdTpGqx4cXY", WKDictionaryGetItemForKey) +STUB("TdYHiOLzctI", jpeg_idct_8x16) +STUB( + "Tdeqyz8zWnw", + _ZNK3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform21usePlayerSessionIsSetEv) +STUB("Tdg135n6cNQ", _ZN7WebCore9JSDOMRectD2Ev) +STUB( + "TdjJfEutwUI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEEC1ERKSA_) +STUB( + "TdjUv1NVR2I", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEneERKS9_) +STUB("Tdm0NGzRxxo", YGNodeGetChild) +STUB("TdntSxjU4sk", _ZNK3sce3Xml3Dom8Document10getSiblingENS1_6NodeIdE) +STUB("Tdx7WPaQCVA", _ZN3JSC2VM20uint32ArraySpaceSlowEv) +STUB("Te-IM+0JM9A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEE7add_refEv) +STUB("Te-OfFFSnBQ", _ZN7WebCore13JSDOMRectList9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB( + "Te38qJjmies", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE8capacityEv) +STUB("Te5DnUayCF0", _ZN23sceMetadataReaderWriter23registerParserInterfaceEjRKNS_15ParserInterfaceE) +STUB("Te7DHp8Gy2Y", + _ZN7WebCore16HTMLInputElement8setValueERKN3WTF6StringENS_22TextFieldEventBehaviorE) +STUB("TeE+ktl+Cw8", _ZNK7WebCore16HTMLInputElement11isTextFieldEv) +STUB("TeEgc2M+77E", _ZN3JSC2VM14throwExceptionEPNS_14JSGlobalObjectEPNS_9ExceptionE) +STUB( + "TeKSQ5dbR34", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEE5resetEPS6_) +STUB("TeKuYOUHoKU", _ZNK7WebCore23ScaleTransformOperation19isRepresentableIn2DEv) +STUB( + "TeOShgYK+sg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEE11get_deleterEv) +STUB("TeRbjukFE-c", _ZStL8s_pfacet) +STUB("TeYoK0Kka-M", _ZNK7WebCore18RenderLayerBacking23replayDisplayListAsTextEj) +STUB("Ted2YU9lv94", sceNpStrToUInt64) +STUB("TedsxQnLDb0", _ZN3sce7Toolkit2NP2V210Tournament12EventDetails8deepCopyERKS4_) +STUB( + "TegkuKHADqc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEptEv) +STUB("TehfTHUiaag", sceGpuTraceParametersSetGroup) +STUB( + "Teoa93VVs8o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEE11get_deleterEv) +STUB("TerdSx+FXrc", sceUserServiceSetGlsAnonymousUserId) +STUB( + "TetgGwMhdZw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21receiveResponseHeaderEv) +STUB("Tetq4yJ0ZO0", _ZN10Deprecated18ScriptFunctionCall4callEv) +STUB( + "TewV7EyzSS0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEixEm) +STUB("TexwmOHQsDg", sceVoiceSetBitRate) +STUB( + "TezykofhaXA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEC1EPS6_PNS2_10LibContextE) +STUB( + "Tf+ItzEhNdg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEE7add_refEv) +STUB("Tf9-yOJwF-A", sceAudioOutSysGetHdmiMonitorInfo) +STUB("TfAJKTnSU9s", fuse_fs_mknod) +STUB("TfB3QTQN-Ek", FT_Matrix_Invert) +STUB( + "TfK6NTSyTO8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEixEm) +STUB("TfKn1baD3IM", _ZNK3sce2Np9CppWebApi15ProfanityFilter2V219WebApiFilterRequest7getTextEv) +STUB( + "TfLDMQS3JKk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE7reserveEi) +STUB("TfOr8achxT4", coil_mspace_realloc) +STUB( + "TfQ+XrqfW6s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEC2ERS7_) +STUB( + "TfUzDZn8AkI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEaSERS7_) +STUB("TfVHoRVX2HM", sceShellCoreUtilAcquireRemotePlayCpuBudget) +STUB("TfZKex4laPM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEE11get_deleterEv) +STUB("TfbkNorL4C4", _ZN7WebCore21MediaRecorderProviderdlEPv) +STUB("Tfcc11eFKpQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V123MemberWithMultiPlatform11getPlatformEv) +STUB( + "Tfcgd8S3qRE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEE5resetEPS6_) +STUB( + "TffOsjfNe+U", + _ZN3JSC7JSArray17defineOwnPropertyEPNS_8JSObjectEPNS_14JSGlobalObjectENS_12PropertyNameERKNS_18PropertyDescriptorEb) +STUB( + "TflsWvkp-bo", + _ZN12video_parser13cVideoMetaVWG18_createArtworkInfoENS_9VP_LANG_eENS_15VP_SEARCH_OPT_eEPNS_13cVideoMetaMP418VpThumbnailInfoMP4E) +STUB("Tfn2AeqI08w", + _ZN15AbstractStorage15FacebookContent11SetMetadataEPN23sceMetadataReaderWriter8MetadataE) +STUB( + "Tg0eqcyRKpU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEneERKS7_) +STUB("Tg0xDBpwAJI", _ZN7WebCore18PrewarmInformationC2ERKS0_) +STUB( + "Tg625QrhDiM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEdeEv) +STUB("Tg8wM8zlz3I", scePerfPmcSdfStop) +STUB("TgAM--25Rbk", _ZN3sce2np9JsonValue8GetArrayEv) +STUB("TgBSz3-CPGI", _ZN12video_parser13cVideoPathMsv10InitializeEv) +STUB("TgEb5a+nOnk", _ZNSbIwSt11char_traitsIwESaIwEE5eraseEmm) +STUB("TgEm3F784RY", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_18SessionInformationEE3getEv) +STUB( + "TgJZ8SC+DnQ", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_8Timeline9EventTypeEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB( + "TgPD8M90wd4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEC2EPNS2_10LibContextE) +STUB( + "TgS0zMeBGcE", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_4Page12ResourceTypeEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB("TgZAdVnd03U", g_usleep) +STUB("TgalTeRthxU", mono_aot_Sce_PlayStation_Orbisjit_code_start) +STUB( + "TgbAtnPEwK8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE5clearEv) +STUB( + "TgbDcXibu+Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEE11get_deleterEv) +STUB( + "TgbQMi-3WEw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("TgiuZRy76qA", _ZN3sce7Toolkit2NP2V28Matching7Request17KickOutRoomMemberC1Ev) +STUB( + "Tgn-9hZ9QTU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB("TgoJkaoZ0IM", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product14platformsIsSetEv) +STUB("Tgr66MThOxA", _ZN3sce2np20BufferedStreamReaderD1Ev) +STUB("Tgs5zOUfQSc", sceShellCoreUtilPfAuthClientConsoleTokenClearCache) +STUB("TgsJjQqp+2k", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEptEv) +STUB("TgsQCnjycFE", _ZN3JSC7Symbols44stringIteratorFieldIteratedStringPrivateNameE) +STUB("TgsW7eXEdpA", glGetBufferParameteriv) +STUB( + "TgtDkGCIr3o", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB( + "Tgu9iZziZFw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB("TgyMj2hXBZ4", _ZN7WebCore18StyleSheetContentsD1Ev) +STUB("Tgzygvwza-4", uregex_pattern_67) +STUB( + "Th3iuNq5gQ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE21intrusive_ptr_sub_refEPS9_) +STUB("Th7C+5G0ycQ", _ZNK3JSC14ProtoCallFrame9thisValueEv) +STUB( + "Th7K+t01FZU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("ThCtZGX1l6c", rgctx_fetch_trampoline_mrgctx_39_p) +STUB("ThEu3ArmCaE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEED2Ev) +STUB("ThNb0pZMjQ8", _ZN7WebCore24RotateTransformOperationD1Ev) +STUB( + "ThPkgyV6NLA", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEiRNS2_10LibContextEPT_m) +STUB( + "ThWdf06C588", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEEptEv) +STUB( + "ThYjLXSEIak", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEmmEv) +STUB( + "ThcvoGmCYkE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEEC2EPSA_PFvSC_EPNS2_10LibContextE) +STUB("ThdmM0eqQn4", uldn_keyDisplayName_67) +STUB("ThedDEOFVNU", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13FriendsOfUserEEC2Ev) +STUB( + "Thhao-ChCdk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("ThiAGsBO+MQ", mono_aot_Sce_Vsh_Sl2_Sl2Commonjit_got) +STUB( + "ThkHU07+iQk", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setInteger8ERKi) +STUB( + "ThkzDejWYNE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEC2ERKS7_) +STUB("ThmeWvQXFUs", _ZN3sce7Toolkit2NP2V28Commerce19ServiceEntitlementsC2ERKS4_) +STUB( + "Thor6dD34rY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEcvbEv) +STUB( + "ThsPyaClskc", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeaderC2ERS5_) +STUB( + "Thynf3vNeCQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEEC1Ev) +STUB( + "ThzIULFaRsk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE3endEv) +STUB( + "Ti-BMFxAOTc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("Ti1E8o9ZswE", _ZN3JSC9Structure24materializePropertyTableERNS_2VMEb) +STUB("Ti1sqV+qCrw", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEEmmEi) +STUB("Ti67furXZ9o", WKContextSetAllowsAnySSLCertificateForServiceWorkerTesting) +STUB("Ti86LmOKvr0", _ZNSbIwSt11char_traitsIwESaIwEE5_CopyEmm) +STUB("TiAPv02ITxs", _ZN7WebCore24CachedResourceHandleBaseD2Ev) +STUB("TiAi8IPuJCE", mono_sha1_init) +STUB("TiC81-OKjpg", sceNpAsmClientGetServiceIdInfo) +STUB("TiCtkQ4z0IA", + _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities8Activity6toJsonERNS_4Json5ValueEb) +STUB("TiDaUZArrIc", _ZN15AbstractStorage14TwitterService5StartEv) +STUB( + "TiFVBTWnrSk", + _ZN3sce2Np9CppWebApi14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBody25setJoinableSpecifiedUsersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_12JoinableUserEEEEE) +STUB("TiGQD+9xXq4", _ZN3JSC6JSCell16getConstructDataEPS0_RNS_13ConstructDataE) +STUB( + "TiIPfPPyXQ8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEmmEv) +STUB("TiRnQB6S6dE", _ZN7WebCore6ISOBoxC1Ev) +STUB("TiTaYOe80UY", _ZN7WebCore19MediaResourceLoaderD2Ev) +STUB("Tib8zgDd+V0", sceUserServiceSetTopMenuNotificationFlag) +STUB("TihYh6wuMnk", _ZN3sce2Np9CppWebApi6Common8IteratorImEmmEv) +STUB( + "Tiit+5wJQRc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEppEi) +STUB( + "Tika+2u5A8k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE10setContextEPNS2_10LibContextE) +STUB( + "Tio4kwlTyZU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE8copyFromERKS9_) +STUB( + "TioTJl+hUes", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEEC2Ev) +STUB( + "TirjARYZwrw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEmmEv) +STUB("Tiv+2Y-jX1I", mono_aot_Sce_Vsh_Np_Webapiplt) +STUB( + "Tj+6XslnGeA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEptEv) +STUB("Tj09N7FCeV8", _ZNK7WebCore22CSSAnimationController24numberOfActiveAnimationsEPNS_8DocumentE) +STUB("Tj0zckWY-MU", _ZN3sce7Toolkit2NP2V210Tournament6EventsC2ERKS4_) +STUB( + "Tj7XegvwU0c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEED1Ev) +STUB( + "Tj9U3ZBd3LM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEC2EPKS8_) +STUB("TjAutbrkr60", sceNpWebApi2SetRequestTimeout) +STUB("TjC2KFGjKrU", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_21NotifyChallengeResultEE3getEv) +STUB("TjFMhY-LSnQ", sceNpRemotePlaySessionSignalingLeaveSession) +STUB("TjFa18GZZmE", uspoof_openCheckResult_67) +STUB("TjSJmL+4ZCU", _ZN7WebCore13OverflowEvent17initOverflowEventEtbb) +STUB("TjURD46vx-k", sceRegMgrBackupPullDataForPS4) +STUB( + "TjXWnt+JXqE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEaSERKS9_) +STUB("TjbZMMEp7Ws", searchCommInfoListByProtocolNumber) +STUB("Tjizhcx+zp0", + _ZNK3sce2Np9CppWebApi15Personalization2V121GetAccessCodeResponse6toJsonERNS_4Json5ValueEb) +STUB("TjknnMIGmxA", send_descriptor) +STUB("TjlVOBhft0M", _ZNK3sce2Np9CppWebApi7Matches2V111AddedPlayer11getPlayerIdEv) +STUB( + "Tjor0gBfhMI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE8copyFromERKS9_) +STUB( + "TjqtkjaD-j8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("Tjr5ksLUG1o", RemotePlayDisconnect) +STUB( + "TjzMEayKenc", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToSendPlayerSessionMessageD2Ev) +STUB("Tk010QnCaVQ", _ZN3sce3pss4core8graphics15DirectTexture2DC1EiiNS2_11PixelFormatEPv) +STUB("Tk0n2SC1sRs", mono_aot_JSC_Netplt) +STUB("Tk1ECWD4Lso", _ZNK7WebCore11MemoryCache16originsWithCacheEN3PAL9SessionIDE) +STUB( + "Tk3uc0W9nAw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEC2Ev) +STUB("Tk77UvH0Tak", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEEppEi) +STUB("Tk7jcSTwl7E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEEC1ERS9_) +STUB("TkASc9I-xX0", _sceUltQueueOptParamInitialize) +STUB( + "TkJLUpl5fSU", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsC1EPNS1_6Common10LibContextE) +STUB("TkMiHCQVW58", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEEC2EPS6_) +STUB( + "TkNcKBe5-Jw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEC2Ev) +STUB("TkP0HBaDqW8", delegate_virtual_invoke_imt_1) +STUB("TkScCUuSRfw", _ZThn64_NK7WebCore9FrameView21maximumScrollPositionEv) +STUB("TkTwUQTXIMA", _ZN7WebCore16MIMETypeRegistry26supportedNonImageMIMETypesEv) +STUB("TkV6Eb8ej6c", WKPreferencesSetMinimumFontSize) +STUB("TkXgKc9TOno", _ZN7WebCore10FileSystem15pathGetFileNameERKN3WTF6StringE) +STUB( + "Tka1-5YGfO0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE6insertENS2_8IteratorIS9_EERKS9_RSC_) +STUB( + "TkbsS3FAIDU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB("TkcANcGM0s8", sceHmdReprojectionQueryGarlicBuffAlign) +STUB("Tkcw9IDz4EQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116InitialJoinStateEEC2Ev) +STUB("Tkla3v2SbEs", dll_start) +STUB("TkmNJ8Chtow", mono_gc_wbarrier_set_arrayref) +STUB( + "TkohL+r6QEY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE3endEv) +STUB( + "Tks4mL++H5I", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE23clearOnFinishedCallbackEv) +STUB( + "TkwiGfFt39g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEED2Ev) +STUB("Tkycvx6Qgm0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEEC1ERS9_) +STUB( + "Tl0TJyjKANg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEE7add_refEv) +STUB("Tl6JPSIR7WE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEEaSERKS9_) +STUB( + "Tl6wjX6sgUs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEC1EPS8_) +STUB("Tl9boUt5VY8", _ZN3sce3pss4core7imaging4impl5Image6UnloadEv) +STUB("TlFXVNMm+7Y", _ZN6WebKit12ChildProcess20initializeConnectionEPN7CoreIPC10ConnectionE) +STUB( + "TlHydHjsJNg", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE11getResponseERS8_) +STUB( + "TlJy4fPq3nw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEptEv) +STUB("TlQge4CTO5k", Java_java_io_ObjectOutputStream_doublesToBytes) +STUB( + "TlSrnN-pYUY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEneERKS9_) +STUB("TlTgbo1pq8g", _ZN3JSC6RegExp5matchERNS_2VMERKN3WTF6StringEj) +STUB("TlX0LQPNYFs", _ZN7WebCore8Settings23setUsesBackForwardCacheEb) +STUB("TlbTYydth54", scePatchCheckerRequestCheckPatch) +STUB( + "TldoClSl8Ek", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE3endEv) +STUB("Tlfgn9TIWkA", _ZNSt14numeric_limitsIwE6digitsE) +STUB("TlnQUAAP9ys", WKDatabaseManagerDeleteAllDatabases) +STUB( + "TlrPjLBySds", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE7reserveEi) +STUB("Tlt9FSK3hfs", mono_aot_Sce_Vsh_FileSelectormethod_addresses) +STUB("TluZ7l2WnEU", mono_dl_fallback_unregister) +STUB( + "TlwvWM3X4tc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("TlyKGeybOro", + _ZNK3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer11getPlatformEv) +STUB( + "Tm67AEJ-Mco", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEmmEi) +STUB( + "Tm7ICrhEacA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEC2Ev) +STUB( + "Tm7nJ-5vX5E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEE11release_refEv) +STUB("Tm7ymvoC580", mono_btls_pkcs12_has_private_key) +STUB( + "Tm8Dm32OeC4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEC2EPS7_PNS2_10LibContextE) +STUB("Tm9bXhmwlMA", JSObjectMakeFunctionWithCallback) +STUB("TmClB7PqlYU", mono_aot_Sce_Vsh_Friendplt_end) +STUB( + "TmEi7VhIrx0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE5clearEv) +STUB("TmJ4gXZtvQ4", u_unescapeAt_67) +STUB( + "TmJpVfEDPo4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEED1Ev) +STUB( + "TmL8e1zj6cI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEEaSERKSB_) +STUB( + "TmO98uqZoE8", + _ZN9Inspector24NetworkBackendDispatcher15getResponseBodyElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("TmP+TElwgJw", _ZN12Mp4Retriever14processUdtaBoxEv) +STUB("TmPBJ3yc31U", _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities8Activity9getHiddenEv) +STUB( + "TmR01dpxjo0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEmmEv) +STUB( + "TmUswH80UkI", + _ZN9Inspector26DebuggerFrontendDispatcher6pausedEN3WTF6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol8Debugger9CallFrameEEENS1_13DumbPtrTraitsIS8_EEEENS0_6ReasonENS2_INS3_6ObjectENS9_ISD_EEEENS2_INS5_7Console10StackTraceENS9_ISH_EEEE) +STUB("TmVP8LzcFcY", sceImeClose) +STUB("TmbPSQNxdW0", sceAppInstUtilAppUnInstall2) +STUB( + "TmjQ0yfQa7M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE7popBackEv) +STUB("TmkVz5YgHg8", sceKernelEventLogWrite) +STUB("TmnhYAJKyHk", _ZNK3sce2Np9CppWebApi15Personalization2V15Error7getCodeEv) +STUB( + "TmtoPp3qC3I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEED1Ev) +STUB( + "Tmy-5RVHVQY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEC1Ev) +STUB("TmzFll8mofs", sceDebugGetProcessTimeCounter) +STUB("Tn-I7zTWVXs", _ZN7WebCore12SettingsBase37defaultDownloadableBinaryFontsEnabledEv) +STUB( + "Tn-ikOrIa1o", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE4sizeEv) +STUB( + "Tn1Ie1t2VRY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEeqERKS9_) +STUB( + "Tn3enK0KXAw", + _ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequest15setInGameRosterERKNS1_6Common12IntrusivePtrINS3_19RequestInGameRosterEEE) +STUB("Tn7VN5olSLE", delegate_virtual_invoke_10) +STUB("Tn8l+qMDk0c", _ZN7WebCore11DisplayList14DrawTiledImageD1Ev) +STUB( + "TnC+MS5Fmtg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE8pushBackERKS8_) +STUB("TnCgJO3CzGw", _ZN9Inspector20InjectedScriptModuleD0Ev) +STUB("TnEmXni08qk", + _ZNK3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponse17getTotalItemCountEv) +STUB( + "TnFMBYHrq1A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEC1EPS8_) +STUB("TnQqJsyek5o", sceNpAppLaunchLinkIntFinalize) +STUB( + "TnSbcuYGDP4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEC1EPKS8_) +STUB( + "TnTAxiRWceI", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("Tna53bt2UBo", jpeg_mem_src) +STUB( + "TnfrSDMjGSs", + _ZN3sce2Np9CppWebApi15Personalization2V110ContentApi12sendCallbackEiRKNS4_23ParameterToSendCallbackERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB( + "TnlB6zD1T8w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEC2Ev) +STUB( + "TnqhMyvzjHk", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi35ParameterToSetGameSessionPropertiesD1Ev) +STUB( + "TntyZaH44PU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEE7add_refEv) +STUB("TnublTBYXTI", _LXp_getw) +STUB("TnvxGzkFmbo", sceSysUtilSendAddressingSystemNotification) +STUB( + "TnxIADuWQI0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEE11release_refEv) +STUB("To+aKg1H1Bw", _ZN6WebKit17ChildProcessProxy9terminateEv) +STUB("To0+90ONW9w", _ZN9Inspector26DebuggerFrontendDispatcher19globalObjectClearedEv) +STUB("To1XvNOzjo0", _ZN3sce2np8NpCommIdC1ERK20SceNpCommunicationId) +STUB("To1xSj7RwM0", _ZN3sce2Np9CppWebApi14SessionManager2V130PostPlayerSessionsResponseBodyD2Ev) +STUB("To2P9hE6vWo", __tsan_atomic128_compare_exchange_val) +STUB("To9SoA7RsGQ", rgctx_fetch_trampoline_mrgctx_0_p) +STUB("To9mmGL+3G8", sceDbgLoggingHandler) +STUB( + "To9wxuscIFQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEC2ERS7_) +STUB( + "ToEZ74CG17Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("ToISj0q68Qg", sceKernelGetCpuUsageAll) +STUB("ToKKfC8tKIk", sceKernelGetUtokenDataExecutionForRcmgr) +STUB("ToOnyvbmDus", _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V318PsnWebErrorWrapperD2Ev) +STUB("ToTgULkheEM", _ZN7WebCore17JSDOMGlobalObject14finishCreationERN3JSC2VME) +STUB( + "ToWfh0MFOmk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE7popBackEv) +STUB( + "ToXbsBEVHqA", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEEiRNS2_10LibContextEPT_m) +STUB( + "ToYSB2QVtmw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEC1Ev) +STUB( + "TogiXj6KjI0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE8capacityEv) +STUB( + "TohbnSafrTY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEE7get_refEv) +STUB("ToofD1zfjMg", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicketC2Ev) +STUB( + "Toq6lVgjYvE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE10setContextEPNS2_10LibContextE) +STUB( + "TorbrvEMTd4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE21intrusive_ptr_add_refEPS9_) +STUB("TouVZjySf0A", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_15CategoryInfoSubENS2_IS4_EEEE7destroyEPS6_) +STUB("Tow5SoK0MRg", sceBgftServiceIntUploadQueryTask) +STUB("Tp+Q2ZxmFn4", _ZN9Inspector17BackendDispatcher12CallbackBaseD1Ev) +STUB("Tp+ZEy69mLk", sceAudiodecDeleteDecoder) +STUB("Tp-6H4FW01o", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V110ReputationD2Ev) +STUB("Tp13AgaoLcw", sceAppInstUtilAppUnInstallForMultiInstall) +STUB("Tp34V5MfLI4", _ZN7WebCore13MediaStrategyD2Ev) +STUB( + "Tp4fubFhrHU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE8copyFromERKS9_) +STUB( + "Tp7ptaLjJBE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEC1ERS7_) +STUB("TpASYcKz4l0", bdjbg_free) +STUB( + "TpE10yS6saQ", + _ZN3sce2Np9CppWebApi14SessionManager2V117FromMemberFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_10FromMemberEEE) +STUB( + "TpG4UGSHBDY", + _ZN3sce7Toolkit2NP2V212NetworkUtils19getBasicNetworkInfoERKNS3_7Request19GetBasicNetworkInfoEPNS2_4Core8ResponseINS3_13NetStateBasicEEE) +STUB( + "TpOlhTEMFAY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEppEi) +STUB("TpOrDHQ6jUo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEC2ERS7_) +STUB("TpQxwP5ZEOE", _ZN7WebCore5Frame14frameForWidgetERKNS_6WidgetE) +STUB("TpTiBtDPfm0", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEEixEm) +STUB("TpUvRkiNsxM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEC1Ev) +STUB("TpVvty4CQ+c", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110PlayerTypeEEmmEv) +STUB("TpeZWm8upgg", + _ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends8setorderENS5_5OrderE) +STUB( + "TpfQXprz5zE", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetrics18getConfidenceScoreEv) +STUB( + "TpfvhSnQbAg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB("TpifVffeesM", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEE3getEv) +STUB( + "TplG3ZskIsU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEC2Ev) +STUB( + "Tps0us229nI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEC1Ev) +STUB( + "Tq0FT8HmkJg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB("Tq1eanQWprg", _ZN3sce7Toolkit2NP2V28Commerce11SubCategory17CATEGORY_NAME_LENE) +STUB( + "Tq1oTpCqZq4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot9setslotIdEi) +STUB( + "Tq32TgIKrRI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB( + "Tq6A3jWrLjE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEC2Ev) +STUB( + "TqBrdVaJQ4w", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE5emptyEv) +STUB("TqF1tZVTXFM", WKPreferencesGetShouldDisplayTextDescriptions) +STUB("TqM6r76nfso", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE5clearEv) +STUB( + "TqaWsXjtPcw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "TqogWppHqAE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEC1Ev) +STUB("TqsXWuXHEdY", mono_string_empty) +STUB("TqvziWHetnw", _ZNSt12out_of_rangeD0Ev) +STUB("Tr-khnFGJqA", _ZN7WebCore27DeviceOrientationClientMockC1Ev) +STUB("Tr0u0p-T+x8", sceNpGlobalHeapInit) +STUB("Tr3E0umtcys", _ZN3sce2Np9CppWebApi6Common6VectorIfEC1Ev) +STUB("TrAA6DeB6I0", _cosl_impl) +STUB("TrH1VHsVvzM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEEC1EPKS6_) +STUB("TrIn0pwP01Y", _ZN15AbstractStorage11LocalFolder8NextItemEPSt10shared_ptrINS_4ItemEE) +STUB( + "TrKpGgE8XjY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEppEv) +STUB("TrR0p56n98w", _ZNK3sce2Np9CppWebApi7Matches2V111AddedPlayer15playerNameIsSetEv) +STUB("TrROKpRreHE", _ZNK7WebCore12ChromeClient26allowedCompositingTriggersEv) +STUB("TrRrJp+BxS4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEED1Ev) +STUB( + "TrTo9uVSNNY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "TrUMs38HaQQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB("TrXaiM5H9hE", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119PlayStyleProperties14setCompetitiveERKi) +STUB( + "TrZ6fkcQqIo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "TrbabvEFXvs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("TrdyIAAxZHw", WKContextSetPlugInAutoStartOriginHashes) +STUB("TreTCxjQBGE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEEC2ERKS5_) +STUB( + "TrjwMrfM0fM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("TrkhD4229FA", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session8SessionsEE12deepCopyFromERS7_) +STUB("TrobtFJRMl0", _ZN3sce2Np9CppWebApi11Matchmaking2V15Error7setCodeERKl) +STUB("Trpt2QBZHCI", sceVoiceQoSGetStatus) +STUB( + "TrrEtkIrqag", + _ZN3sce2Np9CppWebApi14IdentityMapper2V333PsnWebError_error_missingElementsC1EPNS1_6Common10LibContextE) +STUB("TrwAHMfEpsw", _ZN3WTF17StringPrintStream11tryToStringEv) +STUB("Ts-m2fpJCi8", u_getPropertyEnum_67) +STUB( + "Ts-nQ4c4kTg", + _ZN7WebCore22EmptyFrameLoaderClient33convertMainResourceLoadToDownloadEPNS_14DocumentLoaderERKNS_15ResourceRequestERKNS_16ResourceResponseE) +STUB("Ts1rKbGPoN4", CRYPTO_set_mem_functions) +STUB( + "Ts3Arew4ZXU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "Ts3rqJCZP0Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEE11get_deleterEv) +STUB("Ts9xjcY5wlQ", _ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error16unsetReferenceIdEv) +STUB("TsCf6iWDcSo", _ZN9Inspector25RuntimeFrontendDispatchernaEm) +STUB("TsE1-YELrQI", mono_aot_Sce_PlayStation_Orbis_Speechunbox_trampolines) +STUB( + "TsE8e7Fm2Y8", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetrics6toJsonERNS_4Json5ValueEb) +STUB("TsEaW5EA6iQ", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session9SessionIdEE5resetEv) +STUB("TsFjKDXSAEI", _ZN7WebCore18JSHTMLMediaElement4infoEv) +STUB( + "TsGF0E6TXSM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEC2EPNS2_10LibContextE) +STUB("TsGewdW9Rto", _ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE) +STUB("TsODPcApwGo", mono_digest_get_public_token) +STUB( + "TsOE88wHihI", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitations13isInitializedEv) +STUB("TsSEjJcBwNc", + _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetail10getmatchIdEv) +STUB("TsZjCztQNNs", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13FriendsOfUserEE7addressERS3_) +STUB( + "TsakQBwWFE8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB("Tsb8XW0A8bk", JNU_ClassThrowable) +STUB("TscmnlQLIAs", _ZN12video_parser7dump_brEPNS_21VpMpegvideoAvcBitreadE) +STUB( + "TshvASj-KFY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEC2Ev) +STUB( + "Tsm-Lx6GAw0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "TsnGxbh95Uk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "Tspg30CNITQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEE11get_deleterEv) +STUB("TsrS8nGDQok", siginterrupt) +STUB("TsrgvI3BfxY", jpeg_idct_15x15) +STUB("Tsxlf2iL0QI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEE5resetEPS6_) +STUB("Tt3ZSp9XD4E", _ZTSSt7codecvtIDic9_MbstatetE) +STUB("Tt4j3Agw6Tk", metadata_area) +STUB("Tt83gH4H0jc", _ZN3JSC7Symbols11splitSymbolE) +STUB("TtHBV0mH8kY", sceNpAsmClientGetRelatedGameNpTitleIdsResult) +STUB("TtItikWwBgs", sceSystemServiceGetAppId) +STUB("TtJ8lOeiQyU", _ZN7WebCore18TextureMapperLayernwEmPv) +STUB("TtV6Hg4hWo4", sceLibSecureCryptographyGetBlockSize) +STUB( + "TtX7D3DExU8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEptEv) +STUB( + "TtYifKtVkYA", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERy) +STUB( + "TtanwxkuhtI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEdeEv) +STUB( + "Ttbp7QK3sQ8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEneERKS9_) +STUB( + "TtetnFHAIRk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEC1ERKS7_) +STUB("Tth2lBBV2Cc", uprv_decNumberCopySign_67) +STUB( + "TtiUM8CuSLs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEE3getEv) +STUB("TtpAsho2z5E", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEE7add_refEv) +STUB("TtrU8O7z5eY", c19) +STUB("Tu-288s8YYg", sceMusicCoreServerGetPlayStatus_vsh) +STUB("Tu3AXeMFW04", _ZN3sce7Toolkit2NP13AttachmentURLC2Ev) +STUB("Tu9C+UslPp4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEC2ERKS7_) +STUB( + "Tu9OLh2qhJg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEE11get_deleterEv) +STUB("TuAOjJM7csM", _ZN7WebCore13JSHTMLElementC2ERKS0_) +STUB("TuCEXF-C5n0", delegate_virtual_invoke_imt_4_p) +STUB( + "TuD2kGkdkCo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE5beginEv) +STUB( + "TuD9dHiKjh8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEEaSERSA_) +STUB("TuExC-Sja8o", u_terminateUChar32s) +STUB("TuIEPzIwWcI", _ZGVNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE) +STUB("TuKJRIKcceA", _ZTSSt9basic_iosIcSt11char_traitsIcEE) +STUB("TuNDnlmOxTw", _ZN9Inspector25BrowserFrontendDispatcherC1ERNS_14FrontendRouterE) +STUB( + "TuUWbg8IqfU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("TuYK6TAg+UY", WKBundleNavigationActionGetEventMouseButton) +STUB("TuhGCIxgLvA", _ZNSt7codecvtIDic9_MbstatetED1Ev) +STUB( + "Tui-d98UM7o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEC1Ev) +STUB("TumAKF0QLX0", _ZN9Inspector21CSSFrontendDispatcherdlEPv) +STUB("Tuth2BRl4x0", _ZN3sce2np9SemaphoreC1Ev) +STUB("TuxbujwAe1M", Java_com_sony_bdjstack_init_Init_startCore) +STUB("Tuygbxm9F-A", _ZN3WTF10StringView16GraphemeClusters8IteratorC2EOS2_) +STUB("Tv0Ib4NgnH4", _Stoxflt.vals) +STUB("Tv0drkccu+8", _ZN3JSC17DeferredWorkTimer6createERNS_2VME) +STUB("Tv4PMhvwfW0", _ZN7WebCore18TextureMapperLayer9applyMaskERKNS_25TextureMapperPaintOptionsE) +STUB("Tv53+aRRcwY", _ZN7bmalloc15IsoHeapImplBaseD2Ev) +STUB( + "TvDHuSTr+mk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEeqERKS9_) +STUB( + "TvDx8mruo18", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEEaSERKSA_) +STUB( + "TvENoMeKy4Q", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEplEm) +STUB( + "TvHkrpffG+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEEC1Ev) +STUB("TvIFTanTJu0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEaSERKS7_) +STUB("TvLOxBx5J-Q", sceUpsrvGetCompletedTaskId) +STUB( + "TvTj+wvaKxU", + _ZN7WebCore20DecodeOrderSampleMap30reverseFindSampleWithDecodeKeyERKSt4pairIN3WTF9MediaTimeES3_E) +STUB("TvULx-g4ZK0", _ZN7WebCore9HTMLNames12onsubmitAttrE) +STUB( + "TvWVsg-2uvA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("TvXo6CimTsk", _ZN7WebCore17LibWebRTCProvidernwEm) +STUB( + "TvYxcLLiSxI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEptEv) +STUB( + "TvpCfaZLFBw", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi28ParameterToDeleteGameSession10initializeEPNS1_6Common10LibContextEPKc) +STUB( + "TvsDY6iM7WY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("TvyH3f84Fa0", ucnv_getStandardName_67) +STUB("Tvzz4P+TshA", _ZN3sce7Toolkit2NP2V24Auth8AuthCodeC1ERKS4_) +STUB( + "Tw2d5AeGs6w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("Tw5-nhpWs5I", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110TaskStatusEEppEi) +STUB("Tw6wqwLrpL8", rgctx_fetch_trampoline_rgctx_72) +STUB("Tw7N9P22h28", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V110ReputationD1Ev) +STUB("Tw8Hf+j+mTA", _ZN7WebCore22SkewTransformOperation5blendEPKNS_18TransformOperationEdb) +STUB( + "Tw9+RKkhz98", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("TwA2gtUXK7k", _ZN7WebCore13GraphicsLayer5clearERN3WTF6RefPtrIS0_NS1_13DumbPtrTraitsIS0_EEEE) +STUB( + "TwCWvZZpAcs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEmmEv) +STUB("TwCcJcd5-Q4", _ZN3JSC18NullGetterFunction6s_infoE) +STUB("TwELPoqW8tA", sceUserServiceGetEventFilterTeamEvent) +STUB("TwJivtnB3y8", delegate_invoke_impl_target_3) +STUB("TwLxp0uv5lM", WKWebsitePoliciesSetAutoplayPolicy) +STUB( + "TwNp57ufLks", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE3endEv) +STUB( + "TwNxwWHQviM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEEC1ERKSA_) +STUB( + "TwTwM9cuTGU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEE11get_deleterEv) +STUB("TwZTFfLJy9Q", mono_field_full_name) +STUB("Twb4U0IdSHQ", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getBoolean4Ev) +STUB( + "TwfH5MVvD8Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEE7get_refEv) +STUB("Twh1FF-iaUo", mono_aot_Sce_Vsh_ErrorDialogUtilWrapperjit_code_start) +STUB("TwjJAp-K-ts", _sceLibcMallocUsableSize) +STUB("TwjkDIPdZ1Q", sceNetDuplicateIpStart) +STUB("TwlpNb2TjhM", isobmf_decoder_decode) +STUB( + "Twmy+o4YoiA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE8copyFromERKS9_) +STUB("TwqZnaIjWv4", sceVrTracker2QueryMemory) +STUB("TwqdN6hlLyA", _ZN7WebCore11MediaPlayer12supportsTypeERKNS_28MediaEngineSupportParametersE) +STUB("TwtovUjOaxQ", + _ZN3sce3pss5orbis5input37InputManager_SetAnalogStickModeNativeENS2_15AnalogStickModeE) +STUB("TwuUzTKKeek", sceGameLiveStreamingSetDefaultServiceProviderPermission) +STUB( + "Twv2J+xbqTg", + _ZN7WebCore18PerformanceLogging21memoryUsageStatisticsENS_34ShouldIncludeExpensiveComputationsE) +STUB( + "Tx1SiRdkOmE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEEC2Ev) +STUB("Tx397pg8Has", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V114SearchOperatorEEC1EPS6_) +STUB( + "Tx40L0uI7xk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEeqERKS9_) +STUB("Tx5Y+BQJrzs", _ZTVSt13basic_filebufIwSt11char_traitsIwEE) +STUB( + "Tx6bZpRwNhQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEEC2ERKS9_) +STUB("Tx7TIiaynFE", _ZN7WebCore15AffineTransform12makeIdentityEv) +STUB("TxBSWS65aos", _ZN7WebCore22EmptyFrameLoaderClient19detachedFromParent3Ev) +STUB("TxDI56HeuOQ", _ZN7WebCore14DocumentLoaderD0Ev) +STUB("TxNwku-Iv8c", _ZN12video_parser7cVpUtil13vp_ff4_memsetEPvS1_im) +STUB( + "TxPpnR9tF2g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEEaSERSA_) +STUB("TxRlILZBGq8", _ZNSt9basic_iosIwSt11char_traitsIwEE4moveERS2_) +STUB( + "TxUl0ckmyVs", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Console13ChannelSourceEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB( + "TxUz1OzMVjs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEppEv) +STUB( + "TxV4M5Gy2Y8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE5emptyEv) +STUB("TxVzovyEODc", _ZThn16_N9Inspector21InspectorRuntimeAgentD1Ev) +STUB( + "TxYwOqG4v7A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEED2Ev) +STUB( + "TxeYu1ftSjs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEE7get_refEv) +STUB("TxgvG-hA-1s", _ZNK7WebCore9TreeScope16getElementByNameERKN3WTF12AtomicStringE) +STUB( + "TxqY3x-QPMA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEmmEv) +STUB( + "TxvosJH-YPY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "Txwucy76fGs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEdeEv) +STUB( + "Txylh3i0hYo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "Ty30i9F1qZg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEneERKS9_) +STUB( + "Ty35ywQe4kE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEEdeEv) +STUB( + "Ty4P3jK7jJE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEC1EPS6_PNS2_10LibContextE) +STUB("Ty9wanVDC9k", sceUserServiceSetEventUiFlag) +STUB("Ty9yDMxyJnE", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets18unsetrulesetFilterEv) +STUB("TyACAxDH3Uw", _sceNpIpcReallocImpl) +STUB("TyArPzU-zOw", _ZN3sce2Np9CppWebApi11Matchmaking2V15CauseD2Ev) +STUB("TyDhYWHXXvw", mono_string_empty_wrapper) +STUB("TyMorwJka5E", Java_com_sony_gemstack_core_CoreAppContext_n_1isInterrupted) +STUB("TyTI4dfrUpk", _ZN15AbstractStorage12LocalContent4OpenEit) +STUB( + "TyV9wlDEsIw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEptEv) +STUB( + "Tyknq8BhfpA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE5beginEv) +STUB("TyofLD4M0s4", _ZTVN7WebCore11DisplayList13SetMiterLimitE) +STUB("Typ5Xg0UqKY", EVP_PKEY_get0_DSA) +STUB( + "TyqXDvY5soQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEC1EPS7_PFvS9_EPNS2_10LibContextE) +STUB( + "TysWBtKauhM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEppEv) +STUB("TyudkY7CrGY", mono_aot_Sce_Vsh_SessionInvitationunbox_trampoline_addresses) +STUB("TywrFKCoLGY", sceSaveDataInitialize3) +STUB("TyxSlYIQimM", stat_set_DeciFuse) +STUB("TyyaYni97vQ", JSClassRelease) +STUB("Tyzq3UGlllM", sceVorbisDecPcmSeekPageLap) +STUB("TyzsoH-vx8o", sceKernelWriteUnmapCommand) +STUB( + "Tz0HMqQs2KY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEEC1Ev) +STUB("Tz3OEt87piQ", _ZN15AbstractStorage14YoutubeContent5FlushEv) +STUB("Tz4RNUCBbGI", _sceKernelRtldThreadAtexitIncrement) +STUB("Tz8--ueETvg", + _ZN3WTF14FileSystemImpl15fileIsDirectoryERKNS_6StringENS0_25ShouldFollowSymbolicLinksE) +STUB("TzArK917C68", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEEC1ERKS7_) +STUB("TzInlmRQcHw", WKWebsiteDataStoreIsStatisticsEphemeral) +STUB( + "TzKkbTRn0Os", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEED2Ev) +STUB("TzRXIsWDZ6A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEEmmEi) +STUB("TzRmKAkOwBw", scePrintDeciHeader) +STUB( + "TzUibJYKtcg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("TzUz6mzMq+o", _ZN9Inspector22InspectorDebuggerAgent8stepNextERN3WTF6StringE) +STUB("TzXiE0YCpTc", _ZN7WebCore15DOMWrapperWorldD1Ev) +STUB( + "TzY4piPD+L0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE7reserveEi) +STUB( + "TzYq4tWDY-E", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB( + "Tzce5YxoFWc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEC2ERKS8_) +STUB("TzeWlr2tLSg", _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26RecordScoreResponseHeadersC2Ev) +STUB("TzkL-nUWfaQ", sceCamera2SetSaturation) +STUB("Tzm-z36UYKg", FTA_Support_Renderer_Raster5) +STUB("Tzm0QegE0yE", _ZN3sce7Toolkit2NP2V29Messaging12Notification16NewInGameMessageaSERKS5_) +STUB("Tzmvl2b3kLA", openintr) +STUB("TzoWJFBjBW8", sceEditMp4Initialize) +STUB("Tzqjz3FdWKA", _ZNK7WebCore27PlatformMediaSessionManager26applicationDidBecomeActiveEv) +STUB("Tzr36Rs5Fj4", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_19ProductInfoDetailedEED1Ev) +STUB("Tzwul5AkAwE", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session9SessionIdEEC2Ev) +STUB("TzxDRcns9e4", _Rint) +STUB("Tzz6VPST4kY", sceMusicFwIsPlaying) +STUB("U+0WKVAePww", FT_Stream_Read) +STUB( + "U+4Av0W39W0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEixEm) +STUB( + "U+9gOvJWtL0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE3endEv) +STUB("U+EIpe2CXNo", _ZN3sce2Np9CppWebApi12Leaderboards2V14User8fromJsonERKNS_4Json5ValueE) +STUB( + "U+FoXrXyDXk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEE6assignEPS4_PFvS6_EPNS2_10LibContextE) +STUB( + "U+GANdEuZCg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEEptEv) +STUB("U+KkjgYPmDw", mono_btls_bio_flush) +STUB("U+LLXdr2DxM", sceFontGraphicsUpdatePositioning) +STUB( + "U+Vm01xvPMs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEixEm) +STUB( + "U+XWgXdZvSU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB( + "U+Xqr8wXQpY", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer39getxPSNSESSIONMANAGERREQUESTEXACTORIGINEv) +STUB( + "U+h+LTp3UDg", + _ZN9Inspector19InspectorAuditAgent27didCreateFrontendAndBackendEPNS_14FrontendRouterEPNS_17BackendDispatcherE) +STUB( + "U+lRqfia78U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEEaSERKSA_) +STUB("U+o+bGvUe24", + _ZN7WebCore14LoaderStrategy53intermediateLoadInformationFromResourceLoadIdentifierEm) +STUB("U+szDw1WBdE", mono_bitset_invert) +STUB("U+ztaGWf924", ulist_createEmptyList) +STUB("U-+7HsswcIs", sceNgs2SystemEnumRackHandles) +STUB( + "U-+RiRpytVo", + _ZN3sce2Np9CppWebApi6Common18ResponseHeaderBase6createEPNS2_10LibContextERNS2_12IntrusivePtrIS3_EEl) +STUB("U-3pvGonwTA", WKPageConfigurationSetRelatedPage) +STUB("U-8hReYn5+w", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend16FriendsOfFriendsEED1Ev) +STUB("U-CnbmeyYaA", sceHmd2ReprojectionQueryBufferSizeAlign) +STUB( + "U-EUJwY2AYk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE5beginEv) +STUB("U-GpMkWK3lY", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE6resizeEj) +STUB("U-IC2jmNJLg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12RoomPingTimeEE3getEv) +STUB( + "U-IFsK6ipPA", + _ZN7WebCore19JSHTMLSelectElementC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_17HTMLSelectElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "U-J5g5HlYgs", + _ZN7WebCore16NativeNodeFilterC1EPNS_22ScriptExecutionContextEON3WTF3RefINS_19NodeFilterConditionENS3_13DumbPtrTraitsIS5_EEEE) +STUB("U-Mgu8Pn9y0", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEED1Ev) +STUB("U-NH73HXl1A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEED2Ev) +STUB("U-RUnmJ4zL8", _ZN3WTF14FileSystemImpl13directoryNameERKNS_6StringE) +STUB( + "U-SQoj+Q9o0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "U-SoFdrzQA4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEC1Ev) +STUB("U-UjANPLJlM", _ZN7WebCore20SVGPathStringBuilderD1Ev) +STUB("U-VthU479-4", _ZN12video_parser5vpcom4TellE) +STUB("U-VxawApsG4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEC1ERKS7_) +STUB( + "U-ctjDMFcpc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEED0Ev) +STUB("U-dRlT0TFu4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEEaSERS7_) +STUB( + "U-fHHRsHzN8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody32unsetComparedLastUpdatedDateTimeEv) +STUB("U-fmGeHGul8", WKBundleFrameEnableMemoryInfo) +STUB("U-h8S+7q4f4", _ZN3WTF33canAccessThreadLocalDataForThreadERNS_6ThreadE) +STUB("U-iRov9SLpg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEptEv) +STUB( + "U-jNJPZp9FE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE3endEv) +STUB("U-mBkINoyOI", _ZN3sce2Np9CppWebApi6Common6VectorIjE8copyFromERKS4_) +STUB( + "U-nRQUUw2kQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEEC2ERSA_) +STUB("U-pDROUPL40", _ZN7WebCore21NetworkStorageSession16deleteAllCookiesEv) +STUB("U-t+RQEGPMI", il2cpp_shutdown) +STUB( + "U-uAPDRuLzY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEC2Ev) +STUB( + "U-x5Q3Y7oSs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "U03yxzm-SPc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB("U07X36vgbA0", sceUserServiceSetSystemLoggerHashedAccountIdParam) +STUB("U089pStD8Bw", u_isUWhiteSpace) +STUB("U0EOfsJ6Euw", _ZN4Manx21DisplayRefreshMonitor4stopEv) +STUB("U0FdtOUjUPg", _ZNSt9_Num_base15tinyness_beforeE) +STUB( + "U0GOo9F9Pzw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEC2EPS8_) +STUB("U0MQEKFNX0o", GCC_except_table227) +STUB("U0NKl-rjhYA", sceKernelIccGetCountTime) +STUB("U0TOSinfuvw", sceNpTrophySystemDestroyContext) +STUB( + "U0UZgsGu4gQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB( + "U0XNqbQUhJI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEC2EPKS8_) +STUB("U0YoWwgg8aI", _ZN3sce2np9WorkQueue4InitEPKNS0_6Thread5ParamE) +STUB( + "U0gdp3U2KBg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE4sizeEv) +STUB("U0i8CT7bRsg", _ZN3WTF3URL17removeCredentialsEv) +STUB( + "U0iAaRXf5vI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE7reserveEi) +STUB("U0ivfdKFZbA", sceAudioInSetSparkParam) +STUB("U0kpGF1cl90", sceVideodecDeleteDecoder) +STUB("U0l5R1vC1do", WKPreferencesGetDirectoryUploadEnabled) +STUB( + "U0q-VS5jUy4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEC1Ev) +STUB("U0vKYEnGQWk", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Wordfilter16SanitizedCommentEED1Ev) +STUB("U0xPrr5rnH4", WKProtectionSpaceCopyHost) +STUB("U0xhASDMK4Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEE5resetEPS6_) +STUB( + "U0zTJkIZG4U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEC1EPS8_) +STUB( + "U12MnXZXR4w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE21intrusive_ptr_sub_refEPS9_) +STUB("U12ian2FKBo", mono_profiler_install_gc) +STUB( + "U13OoNwG4H4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEED2Ev) +STUB("U15Y7wzfgOA", sceNpTcsIntDownloadData) +STUB("U1CBVMD42HA", _ZTISi) +STUB("U1M1KcuS+Bw", _ZN3JSC19HeapSnapshotBuilder16analyzeIndexEdgeEPNS_6JSCellES2_j) +STUB("U1OtsLR+8fQ", _ZNK7WebCore8Document22preferredStylesheetSetEv) +STUB( + "U1PRb713KN4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEC2Ev) +STUB( + "U1ZqNhRcAGU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE5eraseENS2_8IteratorIS9_EERSC_) +STUB("U1cMemn79TQ", _ZN3JSC7Symbols19isFinitePrivateNameE) +STUB( + "U1cmpQeL3Jo", + _ZN8meta_gen11MsvPromoter27setKeyValue_TBLAVC_IconSizeENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB("U1dZXAjkBVo", sceSystemStateMgrVshAutoUpdate) +STUB("U1dyXoMJpOU", _ZN3sce2Np9CppWebApi15Personalization2V121GetAccessCodeResponseD2Ev) +STUB( + "U1e6TIfxazY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEEC1EPS5_PFvS7_EPNS2_10LibContextE) +STUB( + "U1iO0hDvioE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "U1isJv-EwjM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEC2Ev) +STUB("U1kpHo3s3po", sceIduUtilGetAppVersion) +STUB("U1q6DrPbY6k", sceNetConfigWlanSetDeviceConfig) +STUB("U1t1SoJvV-A", sceUsbdRefDevice) +STUB("U1uukdMUipQ", _ZN7WebCore15SQLiteStatement14getColumnInt64Ei) +STUB("U1v1QqJ3hqk", _ZN3sce7Toolkit2NP2V28Presence12Notification14PresenceUpdateC2Ev) +STUB( + "U1vowYRBbvU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEppEi) +STUB("U2+GrgQDpOg", _ZN3sce7Toolkit2NP2V29Messaging22GameDataMessageDetailsC2Ev) +STUB("U2-E1yYvnxw", _ZN9Inspector13AgentRegistryC2Ev) +STUB( + "U20PDLCRx0A", + _ZN3sce7Toolkit2NP10Challenges9Interface16getChallengeDataEPKNS1_23ChallengeGetDataRequestEPNS1_9Utilities6FutureINS1_25ChallengeBinaryDataResultEEEb) +STUB("U20fbGbtjXg", _ZL27_sceLibcDeleteArrayWithSizePvm) +STUB( + "U26duBq8TsY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "U280LWXRI8Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEneERKS9_) +STUB("U28jAuLHj6c", sceSharePlayServerLock) +STUB( + "U2EQ3ESN8cU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE21intrusive_ptr_add_refEPS9_) +STUB("U2Ewy7tmla0", _ZN9Inspector27AnimationFrontendDispatchernwEm) +STUB("U2JJtSqNKZI", sceVideoOutGetEventId) +STUB("U2LcSWAxv6I", WKBundlePageGetRenderTreeSize) +STUB("U2RYH8aEjmk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEEC2Ev) +STUB( + "U2Rta9OJUNk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("U2aZV5ZkjyI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEED1Ev) +STUB("U2iepfgrDMg", sceM4aacEncCreateEncoder) +STUB("U2kjiIEZalE", MASSMASendMessage) +STUB("U2t+WvMQj8A", _ZNKSt8messagesIcE4openERKSsRKSt6locale) +STUB("U2tir7V8tzw", curl_multi_assign) +STUB("U2yI-GjuK2A", _ZNK7WebCore26Matrix3DTransformOperation6matrixEv) +STUB("U3-Cp8hLNg0", _ZN12video_parser14cVideoOperatorD2Ev) +STUB("U30AU92fWdU", sceNpManagerIntCheckNpStateA) +STUB( + "U391sOXnLVI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB("U3BVwQl2R5Q", sceCameraIsValidFrameData) +STUB("U3EQ4p0-HhY", WKStringGetTypeID) +STUB( + "U3Ii9DlmTdM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("U3LQpWjTAw8", + _ZN3JSC29constructArrayNegativeIndexedEPNS_9ExecStateEPNS_9StructureEPKNS_7JSValueEj) +STUB("U3MmjwQX0tU", _ZN9Inspector22InspectorDebuggerAgent19handleConsoleAssertERKN3WTF6StringE) +STUB("U3NHH12yORo", MOCANA_initMocana) +STUB("U3OO4tKsESc", _ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_errorD1Ev) +STUB("U3RyNP5dEpg", _ZN3sce7Toolkit2NP26GetEntitlementsInputParamsC1Ev) +STUB("U3Tnd2vCYRM", _ZNK7WebCore18RenderLayerBacking20compositingLayerTypeEv) +STUB("U3VOONgMD4k", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToCancelTicketaSERS5_) +STUB("U3VqZR0FZTE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEED2Ev) +STUB( + "U3Zd2HJHVQ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEE11get_deleterEv) +STUB("U3b5A2LEiTc", _ZNSt18bad_variant_accessD1Ev) +STUB("U3h6DTMoskc", _ZN3JSC25JSInternalPromiseDeferred6createEPNS_9ExecStateEPNS_14JSGlobalObjectE) +STUB( + "U3i5noAQ6Qs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB( + "U3jfIaK+yZk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEEC1ERSA_) +STUB("U3oQt6jgCX8", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOfferC1ERS5_) +STUB( + "U3uXudxUsZ0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE5emptyEv) +STUB("U3ua0NGm+jE", WKNotificationManagerProviderDidClickNotification) +STUB("U3vr-E1nYEc", _ZN3JSC7Symbols19fontsizePrivateNameE) +STUB("U3xnMqYSrnA", _ZNK3sce2Np9CppWebApi7Matches2V119ResponseTeamResults7getRankEv) +STUB("U4-jv3EFgUE", mono_aot_System_Windowsunbox_trampoline_addresses) +STUB( + "U406i97V834", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEE6assignEPS5_PFvS7_EPNS2_10LibContextE) +STUB("U41P7N8ZrsI", _ZN3JSC17DeferredWorkTimerD2Ev) +STUB("U44GbnRZ0NA", sceFiosOpGetAttr) +STUB("U44Hp7Y9Oz8", _ZN3sce2Np9CppWebApi6Common6VectorIlE3endEv) +STUB("U44f4Cpb0xg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEEppEv) +STUB( + "U44gQ-hBZ48", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE8pushBackERKS8_) +STUB("U467+mirSkM", d2i_ASN1_INTEGER) +STUB("U46NwOiJpys", sceVideoOutSubmitFlip) +STUB("U4Ajvh3L57k", cairo_get_antialias) +STUB("U4DB3Pubfr4", rgctx_fetch_trampoline_rgctx_42) +STUB("U4DkIVrpUq0", rgctx_fetch_trampoline_rgctx_66) +STUB( + "U4ERH3U6KoE", + _ZN3sce7Toolkit2NP2V27Session7getInfoERKNS3_7Request7GetInfoEPNS2_4Core8ResponseINS3_7SessionEEE) +STUB( + "U4FBT38oMxg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "U4GBBFKc8pM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEC1ERS7_) +STUB( + "U4J9hC7k-iE", + _ZNK7WebCore21NetworkStorageSession16hasStorageAccessERKNS_17RegistrableDomainES3_N3WTF8OptionalINS4_16ObjectIdentifierINS_19FrameIdentifierTypeEEEEENS6_INS_18PageIdentifierTypeEEE) +STUB("U4JP-R+-70c", _ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED2Ev) +STUB( + "U4Np8wLjGEE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEppEv) +STUB("U4XJUmHlBk8", EC_POINT_oct2point) +STUB( + "U4ZZBVsl6+E", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessions28setxPsnAcceptPlatformNamePs5ENS5_25XPsnAcceptPlatformNamePs5E) +STUB( + "U4ae3Y2ymvY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEE5resetEPS6_) +STUB("U4bW29e3GTI", upvec_getRow_67) +STUB("U4erA1GQP98", YGSetLogger) +STUB( + "U4fbcPQwKoE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEC1EPNS2_10LibContextE) +STUB("U4g7RC9mWd8", WKFrameCopyUnreachableURL) +STUB( + "U4teKCuG070", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEEC2ERSA_) +STUB("U4xTZLttCHM", sceNpPush2RegisterNotificationCallback) +STUB("U52BlHBvYvE", _Getmbcurmax) +STUB("U546k6orxQo", sceNgs2RackCreateWithAllocator) +STUB("U54NBtdj6UY", _ZNSt6_Mutex5_LockEv) +STUB( + "U58iutJ-1aI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEC2ERS7_) +STUB("U5BI7sfbbP8", usearch_setBreakIterator_67) +STUB("U5ExQGyyx9s", sceHttpsSetSslVersion) +STUB("U5Ga4rwjlD8", _ZN4Manx11MediaPlayer11naturalSizeERiS1_) +STUB("U5HG6wD4smU", sceKernelSetProcessPropertyString) +STUB("U5JdnyRtuWc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEptEv) +STUB( + "U5JqckYhAvk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEE21intrusive_ptr_add_refEPS7_) +STUB("U5L4v+VUyxQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEE11get_deleterEv) +STUB( + "U5LscP6crxU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEEC2Ev) +STUB("U5MA-3ocfxk", mono_aot_System_Windowsjit_got) +STUB("U5Mg10Dz2ec", + _ZN7WebCore18JSHTMLInputElement15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB("U5PbkU5XLhk", _ZN7WebCore16HTMLInputElement8stepDownEi) +STUB("U5TMDm715qE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEED2Ev) +STUB("U5b4rCFPOXg", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData12setaccountIdEPKc) +STUB("U5fQLmRdldA", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEEcvbEv) +STUB("U5i72PwSh3Y", YGUnitToString) +STUB("U5jINkeR58U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEptEv) +STUB("U5q+5THwQJY", WKPreferencesGetFullScreenEnabled) +STUB( + "U5zbMe-5x+4", + _ZN7WebCore17JSDOMRectReadOnlyC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_15DOMRectReadOnlyENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "U6+BDFWeM4g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEppEi) +STUB("U6+U2AYUe7Y", glEndQueryEXT) +STUB("U60DbIhuJvY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE5eraseENS2_8IteratorIS6_EERS9_) +STUB("U63E88xqBnQ", rgctx_fetch_trampoline_mrgctx_72_p) +STUB( + "U67bPBQmn1E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEC2Ev) +STUB( + "U6AKoIa5Byc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEC2EPS8_) +STUB( + "U6BMQj2eywg", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersC2ERS5_) +STUB( + "U6CFvC9iwUI", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicket28setxPsnAcceptPlatformNamePs5ENS5_25XPsnAcceptPlatformNamePs5E) +STUB( + "U6DKmilX0ng", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEdeEv) +STUB("U6GJnrlhoWA", GCC_except_table89) +STUB( + "U6InmoNyC0g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEppEi) +STUB( + "U6Kgaqpu9jo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEptEv) +STUB("U6NZO7+BIvg", _ZN7WebCore21ScriptDisallowedScope7s_countE) +STUB("U6PxwrRchl4", sceAmprAmmMeasureAmmCommandSizeMultiMap) +STUB("U6Qhv-QWXTc", sceFiosDirectoryCreateWithModeSync) +STUB("U6SNV+RnyLQ", pthread_mutexattr_getkind_np) +STUB("U6TtqBmL14A", _ZThn24_N9Inspector22InspectorDebuggerAgentD0Ev) +STUB("U6U8Yenax+Q", _ZN7WebCore7toSRGBAERKNS_4HSLAIfEE) +STUB("U6VdUe-PNAY", sceNpPartySendBinaryMessage) +STUB( + "U6YOWYqt+xM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEED2Ev) +STUB("U6enwdB7S-M", _ZN3JSC2VM20uint16ArraySpaceSlowEv) +STUB("U6h4e5JRPaQ", scePngDecParseHeader) +STUB( + "U6iVPZmfsbY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("U6kDY4BL1L4", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku16getOriginalPriceEv) +STUB("U6lrpHJgqYM", _ZN7WebCore8Document6embedsEv) +STUB("U6nmZcDpmW4", _ZN3sce7Toolkit2NP2V28Matching4Data8deepCopyERKS4_) +STUB( + "U6oPBhr7EQI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE5startEPNS2_10LibContextE) +STUB( + "U6uDbWcplZE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEneERKS9_) +STUB("U6zCblLII4w", glUniform2fv) +STUB("U6zG9zIIUPI", u_finit_67) +STUB("U727+5CA9nc", mono_custom_attrs_from_field) +STUB("U73QiDRpK9k", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeaders7getETagEv) +STUB( + "U73ooLZw7Cs", + _ZN3JSC23JSModuleNamespaceObject19getOwnPropertyNamesEPNS_8JSObjectEPNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB( + "U74T-1icv9Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE7popBackEv) +STUB( + "U76KaYSmGDs", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities10initializeEPNS1_6Common10LibContextENS7_12IntrusivePtrINS7_6VectorINS7_6StringEEEEE) +STUB("U79P-srDil8", _ZN3sce3Xml3Dom8Document10importNodeENS1_6NodeIdES3_PKS2_S3_) +STUB("U7CFssPZoT8", _ZN3sce2Np9CppWebApi6Common8IteratorIjEC2EPj) +STUB("U7GHMyvbSv0", _ZN7WebCore6JSFile11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("U7HgCKaRu4s", _ZN13OpaqueJSClassD1Ev) +STUB("U7IhU4VEB-0", iswprint) +STUB( + "U7K0TV500-Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEC1EPS8_) +STUB("U7NqWR0tCXk", + _ZN7WebCore28convertToIntegerEnforceRangeIjEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB( + "U7Q1hq-Fv9o", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEEC2ERKSB_) +STUB("U7QZzL5OgXM", _ZN7WebCore11DisplayList22BeginTransparencyLayerC2Ef) +STUB("U7UY7XgW1z4", _ZN7WebCore16JSStyleSheetList9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("U7XbaR+TNak", _ZN7WebCore23CoordinatedBackingStore10createTileEjf) +STUB( + "U7ZR8uItFZI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEE11release_refEv) +STUB( + "U7b47oANnsc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEdeEv) +STUB( + "U7d3dFDTfFg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEED2Ev) +STUB("U7i58uXSNy8", _ZN3sce7Toolkit2NP2V212ActivityFeed4FeedaSERKS4_) +STUB("U7jlRfLk4NI", g_memdup) +STUB("U7n0UvpCFFw", _ZNK3WTF15AutomaticThread19hasUnderlyingThreadERKNS_14AbstractLockerE) +STUB( + "U7nS2A5o1lA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("U7o+A03Tkr4", _ZNK7WebCore9FrameView12tiledBackingEv) +STUB("U883DGbsPFg", _ZNK3sce2Np9CppWebApi7Matches2V118CreateMatchRequest21cancellationTimeIsSetEv) +STUB("U8AQMlOFBc8", sceNpSignalingGetLocalNetInfo) +STUB("U8AYA5AU7Bk", mono_threads_exit_gc_safe_region) +STUB( + "U8ETnFW72v8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEdeEv) +STUB("U8IfNl6-Css", sceVoiceQoSInit) +STUB("U8JgzNHPmi0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEaSERS7_) +STUB("U8LOoQe7z3k", SSL_CTX_set_default_passwd_cb_userdata) +STUB( + "U8LnliM4fB0", + _ZN3sce7Toolkit2NP2V23TUS19addToAndGetVariableERKNS3_7Request19AddToAndGetVariableEPNS2_4Core8ResponseINS3_25AtomicAddToAndGetVariableEEE) +STUB("U8MQdPXpXyQ", qR2) +STUB( + "U8SxvajExOg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEppEv) +STUB( + "U8Y8mUG10kg", + _ZN3sce2Np9CppWebApi14SessionManager2V140ResponsePlayerSessionNonPsnPlayerFactory7destroyEPNS3_33ResponsePlayerSessionNonPsnPlayerE) +STUB("U8fG0vNLdHc", + _ZN3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayer16setJoinTimestampEPKc) +STUB( + "U8faoKjwEwY", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUser17setnpServiceLabelEj) +STUB( + "U8gcXgU2hns", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("U8mSNjJvgxk", _ZN4Manx11BundleOrbisC2Ev) +STUB("U8oNsRef+jI", sceCamera2GetAutoWhiteBalance) +STUB("U8pDVMfBDUY", __atomic_fetch_add_4) +STUB("U8plp-F3TwM", _Z24VideoPlayerVcs_SetVolumeii) +STUB( + "U8xuXpu43n4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB( + "U91nVo0lLWo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEE7add_refEv) +STUB( + "U927x2QTUtA", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody28getExclusiveLeaderPrivilegesEv) +STUB( + "U995Zr1LElQ", + _ZN3sce2Np9CppWebApi14SessionManager2V156PostGameSessionsSessionIdMemberPlayersRequestBodyFactory7destroyEPNS3_49PostGameSessionsSessionIdMemberPlayersRequestBodyE) +STUB( + "U9BlprTeCSY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE6insertENS2_8IteratorIS9_EERKS9_RSC_) +STUB( + "U9EWv5bWtlQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE3endEv) +STUB("U9Hu4RQD9Tk", _ZN3sce2Np9CppWebApi6Common8IteratorIfEaSERKS4_) +STUB("U9JcaWbbuAs", WKPreferencesSetMediaSourceEnabled) +STUB( + "U9QiJMy8SFA", + _ZN3sce2Np9CppWebApi7Matches2V123JoinMatchRequestFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_11AddedPlayerEEEEEPNS9_INS3_16JoinMatchRequestEEE) +STUB("U9Wy5uJh0RA", sceCompositorPrivacyMaskPushArea) +STUB("U9YhBfp05rc", _ZTSPo) +STUB("U9Zx4zmjR20", mono_string_new_size) +STUB("U9hX5ssnYZ4", sceNpPushRegisterExtendedDataFilter) +STUB("U9jTpf6wNco", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session7SessionEE12deepCopyFromERS7_) +STUB("U9kPT4g1mFE", sceHmdInternalSetHmuPowerControl) +STUB( + "U9nFW---jQ0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEC1Ev) +STUB("U9t5kJAWPnA", pthread_atfork) +STUB("U9ueyEhSkF4", sceAgcDriverRegisterDefaultOwner) +STUB("U9v5wQRT5mw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEEppEv) +STUB("UA1vg0fkE8U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEEC2EPKS6_) +STUB("UAA2-ZTmgJc", sceNpManagerIntGetActiveSigninState) +STUB( + "UAAvrt8x3m8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE5beginEv) +STUB( + "UADRrS1Q0NY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEC1EPS8_) +STUB("UAGrjSrAF1Y", sceAppInstUtilGetInstallProgressInfoForMultiDisc) +STUB("UAH9GuC-H8w", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead23getLocalizedSessionNameEv) +STUB( + "UAHitqBL4KE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE8capacityEv) +STUB("UANaR984E9s", u_isxdigit_67) +STUB("UANoAYAWFSQ", _ZNK3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error10getMessageEv) +STUB("UAOlVYEHLvI", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_26ActivityFeedCondensedStoryEE9constructEPS3_RKS3_) +STUB( + "UASHaM8DSoI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEEaSERKSA_) +STUB( + "UAXp7EEhacE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEE11release_refEv) +STUB("UAbDJUsS9GU", _ZN7WebCore9HTMLNames25aria_activedescendantAttrE) +STUB("UAgDqGJpiXI", _ZN7WebCore9HTMLNames24onwebkitspeechchangeAttrE) +STUB("UAjUnJZRjxA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEEC1Ev) +STUB("UAjZYIjP-aI", _ZNK7WebCore16HTMLImageElement3altEv) +STUB( + "UAo9o7N4Akc", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "UAp7-fePjkE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE5clearEv) +STUB("UApk0SArJjc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEED2Ev) +STUB("UAwAfORouyI", _ZN3WTF6StringC1EPKDsj) +STUB( + "UAyw8DSXiWw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB("UB2YPQtgz08", uregex_setRegion64_67) +STUB( + "UB3EJXOv90c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("UB3xm2ZyJl8", _ZN7WebCore16VisibleSelectionC1ERKNS_15VisiblePositionEb) +STUB("UBAEZ53oqzQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEE11get_deleterEv) +STUB("UBEiRuWypeA", isobmf_decoder_clear) +STUB("UBHaPGMhw4g", _ZN7WebCore8SVGNames7rectTagE) +STUB("UBJl1sGRmkg", JVM_AllocateNewObject) +STUB( + "UBMWEVzR54k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEC2EPKS8_) +STUB("UBO+tFHvcyE", sceMouseExtensionGetCursor) +STUB("UBOvPwgs85s", sceMbusReenableBgmForShellUi) +STUB( + "UBP7l1ykSLE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEptEv) +STUB( + "UBQgfJsCrfk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE7popBackEv) +STUB("UBR0MFdPxT0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEEC2EPKS6_) +STUB( + "UBVa4a1qkdU", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB( + "UBVzgY1dDXI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "UBWLqLqj2d4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEEC1ERKSA_) +STUB( + "UBgE7C9yEpE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEE7get_refEv) +STUB("UBkUa6+shnc", _ZN7WebCore9HTMLNames13translateAttrE) +STUB("UBtYSUByi3M", NetCtlGetStateNative) +STUB("UBuNTluTWOM", _ZN3sce2Np9CppWebApi11UserProfile2V16AvatarD1Ev) +STUB("UBv7FkVfzcQ", sceGnmGetResourceShaderGuid) +STUB( + "UBw3qphImXY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE7popBackEv) +STUB( + "UBwhx2KVKWY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE5beginEv) +STUB( + "UBxHaBNb71E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEEdeEv) +STUB("UC2vD95tn0k", + _ZN7WebCore15UserInputBridge20handleMouseMoveEventERKNS_18PlatformMouseEventENS_11InputSourceE) +STUB( + "UC4QfSOO530", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("UC703hx3DrM", WKPageSetMediaVolume) +STUB("UCCVQy0bw5A", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_17TitleCloudStorage2V19ConditionEEmmEi) +STUB("UCIWIg3MH7M", _ZN12video_parser10cVideoPath11GetFileNameEv) +STUB( + "UCP2iLoJU0w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEppEi) +STUB( + "UCQGoT5lcRw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE8copyFromERKS9_) +STUB("UCRtdzDT64U", _ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_19ProductInfoDetailedEE8max_sizeEv) +STUB( + "UCS3oE74tnE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEC1EPKS8_) +STUB( + "UCYbUgm38S8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEmmEi) +STUB( + "UCZnDlC+joI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE5clearEv) +STUB("UCbLOE6G4f4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEED2Ev) +STUB("UCjpTas5O3E", _FSnan) +STUB("UCkJEiS8Qb8", _ZN7WebCorelsERN3WTF10TextStreamENS_7LineCapE) +STUB( + "UCkMj9plCec", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE3endEv) +STUB( + "UCsP4SR3SLo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEED2Ev) +STUB( + "UCx2GlbLZN8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE5emptyEv) +STUB("UCy+pHHfiqY", WKOriginDataManagerGetOrigins) +STUB("UD-pIuhEuY0", _ZN7WebCore8SVGNames9switchTagE) +STUB("UD3voE5uO3k", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets9terminateEv) +STUB("UD6kA-ifx9c", ures_getLocaleByType_67) +STUB("UD7IFu7ML2U", FT_GlyphLoader_Add) +STUB("UDCI-WazohQ", _sigaction) +STUB("UDL-vqTXLdk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEC1ERS7_) +STUB( + "UDLYUwmanB0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEEaSERKS9_) +STUB("UDLzu3kE9Uk", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead15setJoinDisabledERKb) +STUB("UDQUp4iBK2A", _ZN9Inspector25DatabaseBackendDispatcherD0Ev) +STUB("UDYkHFjCgi0", + _ZNK7WebCore9CookieJar29cookieRequestHeaderFieldValueERNS_8DocumentERKN3WTF3URLE) +STUB("UDdJrxm79yU", _ZN7WebCore8SVGNames16fill_opacityAttrE) +STUB( + "UDhyoWgI8Uw", + _ZN7WebCore26HTMLTextFormControlElement17setSelectionRangeEiiNS_27TextFieldSelectionDirectionENS_19SelectionRevealModeERKNS_23AXTextStateChangeIntentE) +STUB("UDjh4MpTibc", WKTextCheckerChangeSpellingToWord) +STUB("UDjtBPqU1og", WKContextConfigurationSetFullySynchronousModeIsAllowedForTesting) +STUB("UDkcuEvZbRQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEcvbEv) +STUB("UDkeOtF5o-k", gp_set_functions) +STUB("UDqz+xeAyyg", mono_aot_Sce_PlayStation_Orbis_Speechplt) +STUB( + "UDrvvmPh4W8", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEiRNS2_10LibContextEPT_m) +STUB("UDsn+mGEUFM", mono_shared_hashtable_foreach) +STUB("UDt2fvipahE", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE5clearEv) +STUB("UDx67PTzB20", sceUserServiceGetIPDRight) +STUB("UE0xLHFNUYQ", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors20missingElementsIsSetEv) +STUB("UE3TL2jArKg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEC1ERKS7_) +STUB("UE3oF6rx8nk", _ZN7WebCore14LoaderStrategyD2Ev) +STUB("UE7jmEIbuzY", sceValidationGetVersion) +STUB("UE8HvkH-z1c", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEEC2ERS6_) +STUB("UE9FnlHY2ts", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119BandwidthPropertiesD2Ev) +STUB("UEBk9iGqhPo", WKPreferencesSetAccelerated2DCanvasEnabled) +STUB("UEJmRQ6PkSo", sceNpSessionSignalingCreateJoinActivate) +STUB("UEUyIWuf7t0", YGOverflowToString) +STUB( + "UEWbjFFpj1o", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData42hasxPsnTcsComparedLastUpdatedUserAccountIdEv) +STUB("UEaa-LdFZmw", _ZN6icu_678TimeZone14getCanonicalIDERKNS_13UnicodeStringERS1_RaR10UErrorCode) +STUB("UEbw3BTkqsc", _ZN3JSC4Yarr11YarrPatternC1ERKN3WTF6StringENS_11RegExpFlagsERNS0_9ErrorCodeEPv) +STUB("UEc2r2t5mEU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEE3getEv) +STUB("UEiVB1s+wBw", eglReleaseTexImage) +STUB( + "UEjqXMucYPI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEixEm) +STUB("UEkNI4VG8t0", getCommInfoListHead) +STUB("UEku+YMbPR0", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V13Mmr17perFranchiseIsSetEv) +STUB("UEnAHwUevzs", _sceLibcPosixMemalign) +STUB("UEnSKAL48eA", SSL_use_certificate_ASN1) +STUB( + "UEpdxzuPeCc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEED2Ev) +STUB("UEvmspb0Kvs", twom100) +STUB( + "UF-vqLRncWM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEC1EPS8_) +STUB( + "UF4ll1HEJbs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEE5resetEPS8_) +STUB("UF6H6+kjyQs", sceNetCtlCheckCallbackForLibIpcInt) +STUB( + "UFDCCOCTH-Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE8copyFromERKS9_) +STUB("UFDoqv4XXC0", sceVideoOutSysUpdateDisplayParameter) +STUB("UFFM-EaN9DY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEEC1ERKS7_) +STUB("UFKbZ7T8IB4", _ZNK9Inspector15ScriptArguments12globalObjectEv) +STUB("UFKprwxNhT8", wait4) +STUB("UFKtijmAhkM", _ZN3WTF11OSAllocator18releaseDecommittedEPvm) +STUB("UFLN-KNhzX0", sceSrcUtilityGetPriority) +STUB("UFNA9KplGvA", throw_exception_p) +STUB("UFO5kzp58nQ", _ZN3sce7Toolkit2NP2V26Friend7Request22DisplayBlockUserDialogD2Ev) +STUB( + "UFPHNHpKpbM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "UFQCvwDnbZs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEE3getEv) +STUB( + "UFSD78JiC9Y", + _ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForRead13setSpectatorsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_22PlayerSessionSpectatorEEEEE) +STUB("UFW1p-twkz0", mono_metadata_string_heap) +STUB("UFWP11H6EXk", ucnv_getToUCallBack) +STUB("UFb4eVjw-Sw", glBindBufferBase) +STUB("UFcyYDf+e88", sceImeDialogForTestFunction) +STUB("UFeYGCJ5zs8", _ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse10setAboutMeEPKc) +STUB("UFiQk867m7o", _ZNK7WebCore11MediaPlayer6clientEv) +STUB( + "UFjpJ7RmoeI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEEdeEv) +STUB( + "UFmXGXsTGpE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE5beginEv) +STUB( + "UFmiyW8-aLw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEdeEv) +STUB("UFonL7xopFM", sceCameraAudioClose) +STUB("UFpIkohgGKI", + _ZN7WebCore20DecodeOrderSampleMap37findSyncSamplePriorToPresentationTimeERKN3WTF9MediaTimeES4_) +STUB( + "UFrPUCW5rOQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEE11release_refEv) +STUB("UFsKD1fd1-w", _ZTISt8messagesIcE) +STUB("UFwDzfdUExo", _ZNK7WebCore19BlurFilterOperation5cloneEv) +STUB("UFxnk35JEsk", _ZN3sce7Toolkit2NP18UserProfileRequestC2Ev) +STUB("UFzKxNIuPO8", _ZN7WebCore15HTTPHeaderFieldaSERKS0_) +STUB( + "UG+bmbgSkxQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEE11get_deleterEv) +STUB("UG-C19utRbQ", _ZTVN9Inspector31ConsoleBackendDispatcherHandlerE) +STUB( + "UG1pDqHD2oI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEED1Ev) +STUB( + "UG4F+fkQfAA", + _ZN3JSC26evaluateWithScopeExtensionEPNS_9ExecStateERKNS_10SourceCodeEPNS_8JSObjectERN3WTF8NakedPtrINS_9ExceptionEEE) +STUB("UG6HJeH5GNI", _ZTSSt11regex_error) +STUB("UG9I-iHI-ME", sceShellCoreUtilFormatExternalHdd) +STUB( + "UGDIRlW+uuI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEE3getEv) +STUB( + "UGEyMKm8N3A", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB( + "UGNndNKnsUo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEEC1Ev) +STUB("UGTldPVEdB4", sceSaveDataDebugRemoveSaveDataRoot) +STUB( + "UGVD4wGVnQs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE8pushBackERKS8_) +STUB( + "UGYh+3N0mYo", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("UGcXquhVYrY", sceNpSessionSignalingGetGroupFromSessionId) +STUB("UGdSsj17Fm8", _ZN3JSC18PropertyDescriptor13setEnumerableEb) +STUB("UGittJii7dI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEED1Ev) +STUB( + "UGjBIPq+nXk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEC2Ev) +STUB("UGktEjxw9fI", mono_aot_System_Windowsunwind_info) +STUB("UGqx8TsyDAk", mono_path_canonicalize) +STUB("UGt10xOFSuk", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE8capacityEv) +STUB( + "UGth-fg3L9w", + _ZNK7WebCore10PluginData32supportsWebVisibleMimeTypeForURLERKN3WTF6StringENS0_18AllowedPluginTypesERKNS_3URLE) +STUB( + "UGwdeZ4WVlI", + _ZN3sce2Np9CppWebApi14SessionManager2V125RequestGameSessionFactory7destroyEPNS3_18RequestGameSessionE) +STUB( + "UH+GBgg2-IU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE8copyFromERKS9_) +STUB("UH0Vv05G2ac", _ZN3sce2Np9CppWebApi7Matches2V116RequestMatchTeamC1EPNS1_6Common10LibContextE) +STUB("UH3MitUBp-Q", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEEplEm) +STUB( + "UH5a6lcN4yI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE5clearEv) +STUB("UHABadEpXc0", _ZNK7WebCore3URL14fileSystemPathEv) +STUB("UHDiSFDxNao", sceGnmSqttFini) +STUB("UHFOgVNz0kk", sceAudio3dPortCreate) +STUB("UHKWuoeyuGw", Java_sun_awt_GnmUtils_waitEqueue) +STUB("UHNtAOU4gKA", _ZTVN12video_parser14cVideoOperatorE) +STUB("UHPYA2oZS2A", _ZN7WebCore13HitTestResultC2ERKS0_) +STUB( + "UHQvm4vrpgo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE5eraseENS2_8IteratorIS9_EERSC_) +STUB("UHQxE3HhTXA", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEEptEv) +STUB("UHRckAFcVCo", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEEC1EPKS4_) +STUB( + "UHSRukqITgA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEmmEi) +STUB("UHWSVvrtR7I", bemp2sys_memmanager_set) +STUB( + "UHZKOTg5MWQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEixEm) +STUB("UHbf2fZIrxk", _ZN3WTF22isMainThreadOrGCThreadEv) +STUB("UHfYYBDCtWA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEE3getEv) +STUB("UHj0GDTA2CU", _ZN3sce2np18MemoryStreamReaderC1EPKvm) +STUB( + "UHmxsDFtIQw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEC1EPS8_) +STUB("UHpjOFBvVvo", rgctx_fetch_trampoline_rgctx_17) +STUB("UHtck31QwGc", mono_aot_System_Coreunbox_trampolines_end) +STUB( + "UHuVwL2JW+4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEEdeEv) +STUB( + "UHvjptl5Zcs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE7popBackEv) +STUB("UHw5Wc6MsXE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEEaSERS7_) +STUB("UHyy-91bj-g", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification16NewInGameMessageEEC1Ev) +STUB("UI5t6Rx6s5I", sceNpLookupNetConvertJidToNpId) +STUB("UI66TMKWOpQ", _ZN4IPMI4impl10ServerImpl18searchSessionByPidEjPPNS0_11SessionImplE) +STUB( + "UI7XmkgiSj0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEEC2Ev) +STUB("UIAqKbVG7ek", _ZN7WebCore21DiagnosticLoggingKeys27networkCacheReuseFailureKeyEv) +STUB( + "UIFhNpPP-nI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE3endEv) +STUB( + "UIHtWMjvCDY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEaSERKS9_) +STUB("UILM6wa-UK8", ures_getVersionNumberInternal_67) +STUB( + "UIPQfmmjdl0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE5emptyEv) +STUB( + "UIPTgJxCeEs", + _ZN7WebCore14SocketProvider24createSocketStreamHandleERKN3WTF3URLERNS_24SocketStreamHandleClientEN3PAL9SessionIDERKNS1_6StringEPKNS_22StorageSessionProviderE) +STUB("UISQ-dQzw28", arc4random) +STUB("UIThXvXuJPA", _ZN7WebCore9IPAddress10getSinAddrEv) +STUB("UIU5m-5O68c", ucnv_setToUCallBack) +STUB( + "UIWKlcc9Uxo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEEC2ERKSA_) +STUB( + "UIhQQhg7rrE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEEC1ERSA_) +STUB( + "UIoJi+a04hI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE5clearEv) +STUB( + "UIoePjBWZWA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE6resizeEj) +STUB("UIrMxV07mL0", _ZN3sce2npleERK10SceRtcTickRKNS0_4TimeE) +STUB( + "UIuxelot96Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEEC1Ev) +STUB("UIyaYRFejv0", _ZN2sh14ShaderVariableC1ERKS0_) +STUB("UJ+Z7Q+4ck0", sceNetCtlRegisterCallback) +STUB("UJ8H+7kVQUE", sceNpWebApiGetConnectionStats) +STUB( + "UJBq-jnPr2Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEixEm) +STUB("UJCnhvq5YBs", sceKernelGetACInfoAllForCoredump) +STUB( + "UJD-5bQF6MQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "UJDDhjnVaN4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEptEv) +STUB("UJGUxEnLIMg", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_isSecondaryVideoAsyncStream) +STUB("UJLz0SzmXS8", _ZN3sce7Toolkit2NP2V28Commerce7Request13GetContainers17DEFAULT_PAGE_SIZEE) +STUB( + "UJMty5dIMBM", + _ZN3sce2Np9CppWebApi11Matchmaking2V112CauseFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_5CauseEEE) +STUB("UJQisAyEvSU", AES_ecb_encrypt) +STUB( + "UJQn1E2hOzI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("UJVOusdtHuU", WKBundleRemoveUserScript) +STUB("UJXHm7AkPK8", WKKeyboardEventMake) +STUB("UJY5koADQxk", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForReadC1EPNS1_6Common10LibContextE) +STUB( + "UJag4BLzCRo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEC2EPNS2_10LibContextE) +STUB("UJi6cABlLww", _Lseek) +STUB( + "UJj5YqPqKqI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE8copyFromERKS9_) +STUB("UJmtOZ+Msg0", _ZN3sce7Toolkit2NP2V28Presence16PlatformPresence18MAX_SIZE_GAME_DATAE) +STUB("UJnaiUeCe9Q", _ZN3WTF8JSONImpl5ValueC1Eb) +STUB("UJpKSy8JPuQ", mono_free_verify_list) +STUB( + "UJpX6FbM834", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE3endEv) +STUB("UJrQCyYpyic", fchflags) +STUB("UJvFjRAnQ2k", sceVorbisDecClear) +STUB("UJwNuMBcUAk", sceGnmSetGsShader) +STUB( + "UJwWj81EOzs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEE5resetEPS9_) +STUB( + "UK1fGCYDjQc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE7popBackEv) +STUB("UK2Tl2DWUns", sceKernelClose) +STUB( + "UK3vHMLAEU4", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB( + "UKGZ0rXzeEg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEED1Ev) +STUB("UKIFSGByp1Y", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15PlayedWithStoryEE10deallocateEPS3_m) +STUB("UKKtpWz--YA", _ZN3WTF10AtomString6numberEi) +STUB( + "UKNNIjqW-1I", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEE3getEv) +STUB("UKSkPc4YLt8", glClientWaitSync) +STUB( + "UKYE8NLmN2o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEC2EPKS8_) +STUB( + "UKbGLvkdiQM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEC1Ev) +STUB("UKcMPS5+rbs", _ZN7WebCore9HTMLNames7slotTagE) +STUB("UKeNl8mVbsc", cairo_surface_get_device_scale) +STUB( + "UKf6nfhYKV4", + _ZN3sce2Np9CppWebApi12Leaderboards2V122GetRankingResponseBody10setEntriesERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_5EntryEEEEE) +STUB( + "UKiZ94l-k7k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEE5resetEPS6_) +STUB("UKiyOkgxtWk", _ZN3sce7Toolkit2NP15AppSTLAllocatorI16SceNpTusVariableE7destroyEPS3_) +STUB( + "UKlRPNs9CcY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEEaSERKSA_) +STUB( + "UKok2P7OARY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEEcvbEv) +STUB( + "UKrb5xBvlZo", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V116PlayStyleFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_9PlayStyleEEE) +STUB( + "UKrpcCx+Bms", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEC1Ev) +STUB( + "UL+mT+gvjxQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEaSERKS8_) +STUB( + "UL2jvO4BW9s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE5clearEv) +STUB("UL2t5B-y5ck", _ZN7WebCore9HTMLNames9widthAttrE) +STUB("UL4Fviw+IAM", sceHttp2SetPreSendCallback) +STUB("UL5OW9HbCwA", _ZN3sce7Toolkit2NP2V26Friend12Notification16FriendlistUpdateaSERKS5_) +STUB("UL6Z5aGtmBw", _ZTVN9Inspector22RemoteInspectionTargetE) +STUB("UL7nmmoYEsU", _ZN7WebCore5Cairo11ShadowStateC2ERKNS_20GraphicsContextStateE) +STUB("UL7w-kUR+IA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEaSERKS9_) +STUB("UL9tFZJ4ajg", uprv_decNumberOr_67) +STUB("ULFfhAwkrUE", mono_aot_Sce_Vsh_Np_Snsplt_end) +STUB( + "ULGP4zu6khE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEC2Ev) +STUB( + "ULHkmOxQ0ss", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("ULNHQXciJ3s", hb_face_destroy) +STUB("ULOVCAVPJE4", CERT_STORE_findIdentityCertChainFirst) +STUB("ULXYAELxNqw", EVP_PKEY_decrypt_init) +STUB("ULdUj9IpWDs", _ZN3sce2Np9CppWebApi6Common8IteratorIlEppEi) +STUB( + "ULgYI+r7jS8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEE11get_deleterEv) +STUB("ULloaIOrzP4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEEdeEv) +STUB("ULmQDELpYyA", ubidi_getClass) +STUB( + "ULoGWxU3SaI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEEC1Ev) +STUB( + "ULs3neyks+c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE10setContextEPNS2_10LibContextE) +STUB( + "ULsa9kjcs+w", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE6isBusyEv) +STUB( + "ULu2QmTi1Xo", + _ZN3sce7Toolkit2NP3TSS9Interface15getDataFromSlotEPNS1_9Utilities6FutureINS1_7TssDataEEERKNS1_14TssInputParamsEb) +STUB("ULvXMDz56po", sceAmprCommandBufferClearBuffer) +STUB("ULvYg8y1Gfc", + _ZN9Inspector17BackendDispatcher12CallbackBaseC1EON3WTF3RefIS0_NS2_13DumbPtrTraitsIS0_EEEEl) +STUB( + "ULwF+cwQEfk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("ULxbwqiYYuU", sceCameraGetProductInfo) +STUB("UM57yzsO5MY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEEC1Ev) +STUB("UM5gRvPXUM8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEEdeEv) +STUB( + "UM5sJwwMUuI", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitations9terminateEv) +STUB("UM6KCdqJmqs", tt_cmap14_class_rec) +STUB("UM6rGQxnEMg", _ZNKSt8messagesIwE6do_getEiiiRKSbIwSt11char_traitsIwESaIwEE) +STUB("UM8rn9hRWrY", sceAgcDriverTmpInitIdhs) +STUB("UM9b9NunSrE", sceAgcDriverSetWorkloadsActive) +STUB("UMHYlgjFLUw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE4sizeEv) +STUB("UMIlrOlGNQU", sceSystemServiceGetParentSocket) +STUB("UMYP2dqDD2o", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEEdeEv) +STUB( + "UMaaFHW+an4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEplEm) +STUB( + "UMe3A33bsjA", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer14getserviceNameEv) +STUB("UMeDmpCpF40", glGetUniformLocation) +STUB("UMkUmoECbCc", _ZN7WebCore37CrossOriginAccessControlCheckDisablerD0Ev) +STUB("UMlVCy7RX1s", sceNetConfigDelDefaultRoute6) +STUB("UMm6gapfQN4", sceFsWsFetchFileMetadata) +STUB("UMp9i3cIZw0", _ZTv0_n24_N25MmsFileUpdaterFsOperationD1Ev) +STUB("UMpxor4AlKQ", sceSaveDataGetFormat) +STUB( + "UMq9bnHon+k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEmmEv) +STUB("UMqlHiqPQl0", mono_image_open_full) +STUB("UMskCYMRcXg", mspace_check_memory_bounds) +STUB("UMsvUfCKcrk", _ZN3WTF12AtomicString6numberEy) +STUB( + "UMvj1nNOqZc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEED1Ev) +STUB( + "UMwQCbIM1Nc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEEC1Ev) +STUB("UMwpmVfcJpU", _sceLibcInitialize) +STUB("UN1A7FriZLY", mono_btls_x509_lookup_get_type) +STUB( + "UNCSO3DTP2g", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser12setaccountIdEPKc) +STUB( + "UNKRtjBCvUE", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser10initializeEPNS1_6Common10LibContextEPKcSA_) +STUB("UNMEa+5lrUA", sceDeviceServiceQueryDeviceInfo_) +STUB("UNOrI4X5kz0", + _ZN7WebCore21PageOverlayController18installPageOverlayERNS_11PageOverlayENS1_8FadeModeE) +STUB("UNREoPNQFas", sceAppInstUtilAppUnInstallAddcont) +STUB("UNS2V4S097M", syslog) +STUB( + "UNVwl6m0+zE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEptEv) +STUB("UNWRtMKvBp4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEEC2ERKS9_) +STUB("UNYN4opWosk", _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse9setZoneIdEPKc) +STUB("UNaYJVOJwoY", _ZN3WTF24charactersToUInt64StrictEPKDsmPbi) +STUB("UNaphEVAupM", _ZN7WebCore21JSRemoteDOMWindowBase4infoEv) +STUB("UNmP8qXsa6s", FTC_Manager_Done) +STUB("UNnBsfjaOqY", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request14PostPlayedWithD2Ev) +STUB( + "UNpGWBoG-UQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEED1Ev) +STUB( + "UNtuE7dbCVU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEC1EPS8_) +STUB( + "UNw3OwLpAc8", + _ZN3sce2Np9CppWebApi14SessionManager2V135RequestJoinGameSessionPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_28RequestJoinGameSessionPlayerEEE) +STUB( + "UO+RkMf8hyM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEmmEi) +STUB("UO2a3+5CCCs", CERT_VerifyValidityTimeWithConf) +STUB( + "UO2y-LHMnhM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE5beginEv) +STUB( + "UO45-pyhR0k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEC2EPKS8_) +STUB("UOAJwlM34N4", _ZN7WebCore4Page23invalidateStylesForLinkEj) +STUB("UODyg3r3Uf8", sceCesRefersUcsProfileIso8859_16) +STUB( + "UOFL1r9wKRw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("UOJeGCvcnKc", mono_jit_set_aot_mode) +STUB("UOL9uOF61w8", umutablecptrie_open_67) +STUB("UOMssWsF9UU", WKGeolocationPositionCreate_b) +STUB("UOS1WFArdqY", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE3endEv) +STUB("UOSoUZBYVB0", Java_java_util_zip_Deflater_deflateBytes) +STUB("UOU5c7dyzPM", _ZN3sce7Toolkit2NP15AppSTLAllocatorI16SceNpTusVariableED2Ev) +STUB("UOVPAHM8ZHw", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12BlockedUsersEEC1Ev) +STUB( + "UOVfFCVMOKQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE8capacityEv) +STUB("UOeQZuXhzCQ", _ZN3sce2Np9CppWebApi13InGameCatalog2V55Error11unsetReasonEv) +STUB( + "UOhqdN6P1uE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEEaSERSA_) +STUB( + "UOjbrvBraWg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEC1ERS7_) +STUB("UOjiprYwVNw", sceTextToSpeech2Initialize) +STUB("UOnc-ErReHc", ucsdet_getDetectableCharsets_67) +STUB("UOpVe4rNPuI", _ZN7WebCore13QualifiedNameC1ERKN3WTF12AtomicStringES4_S4_) +STUB("UOqTPAObjdU", _ZNK3sce2Np9CppWebApi7Matches2V120ReportResultsRequest18getMatchStatisticsEv) +STUB( + "UOr2EUz8NOA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE21intrusive_ptr_add_refEPS9_) +STUB("UOz27kgch8k", __atomic_exchange_8) +STUB( + "UP+uj7-Eimo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE8capacityEv) +STUB("UP2vYQTFjzk", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils12Notification15UserStateChangeEED2Ev) +STUB( + "UPBOgEcUnvA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE8copyFromERKS9_) +STUB("UPDgXiV1Zp0", sceUserServiceGetPbtcTuesdayDuration) +STUB( + "UPGxqX8fHUg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEdeEv) +STUB( + "UPHoxq5jfbE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE5beginEv) +STUB("UPIGgqFNcgw", _ZN3sce2Np9CppWebApi11UserProfile2V15Error14setReferenceIdEPKc) +STUB( + "UPJZ+lj6lpU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEplEm) +STUB("UPPh+Ge66IY", sceNpUniversalDataSystemIntRecordArraySetArray) +STUB( + "UPQvIabu1HM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "UPUF7sHc60k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "UPVIV02XBtc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEC1EPNS2_10LibContextE) +STUB("UPVUFxCy6sY", ucnv_fromUnicode_59) +STUB("UPZWCH8qTM4", sceVideoOutCursorEnable) +STUB( + "UPZgNcxZGIs", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13integer2IsSetEv) +STUB("UPgSvUW-ymc", _ZN7WebCore9HTMLNames12multipleAttrE) +STUB("UPhOPaK4LF0", _ZN3sce2Np9CppWebApi6Common6VectorIlEixEm) +STUB( + "UPhP7g1EWsI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE6finishEv) +STUB("UPiqgAaHdtU", JSValueIsInstanceOfConstructor) +STUB("UPjyTBi78ow", + _ZNK7WebCore4Node18computeEditabilityENS0_22UserSelectAllTreatmentENS0_17ShouldUpdateStyleE) +STUB( + "UPqq2IAhhzc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE10setContextEPNS2_10LibContextE) +STUB("UPr0g-dqMUw", uloc_getDisplayLanguage) +STUB( + "UPtKaa2JMec", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEmmEi) +STUB("UQ+3Qu7v3cA", sceSslUnloadCert) +STUB("UQ5xmSJIDds", _ZNK3WTF8JSONImpl5Value8asDoubleERd) +STUB("UQ989EpPn8A", _ZN7WebCore12SettingsBase48defaultMediaContentTypesRequiringHardwareSupportEv) +STUB("UQEh72v4LI0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEC1ERKS7_) +STUB("UQGTw4xRlcM", sceAgcDcbSetUcRegistersIndirectGetSize) +STUB( + "UQLOia3yTW0", + _ZN9Inspector24RuntimeBackendDispatcherC2ERNS_17BackendDispatcherEPNS_31RuntimeBackendDispatcherHandlerE) +STUB("UQLpZuNkOj8", _ZN3sce7Toolkit2NP2V27Session14InvitationData13MAX_DATA_SIZEE) +STUB("UQPicLg8Sx8", _ZNSt9basic_iosIcSt11char_traitsIcEE4initEPSt15basic_streambufIcS1_Eb) +STUB("UQSdfLL7qxs", _ZNK3sce3Xml3Dom4Node13getFirstChildEv) +STUB("UQSpLQBdW-g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEED1Ev) +STUB("UQTSykySQ40", sceFsUmountGamePkg) +STUB("UQTlJjhosWw", __asan_get_report_pc) +STUB("UQUNLQP0SSU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEEppEi) +STUB("UQXwSt1e+Fw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEED1Ev) +STUB("UQZhMdb2bOQ", WKPreferencesGetFetchAPIKeepAliveEnabled) +STUB( + "UQe3A6KnmVs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEEC2EPS5_PFvS7_EPNS2_10LibContextE) +STUB( + "UQf6aqQ2m9E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("UQivQ0-tX1w", JVM_PrintStackTrace) +STUB( + "UQkO5ZdQHZY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEED2Ev) +STUB("UQm8o0lXdpk", _ZN3sce7Toolkit2NP21ReceiveMessageRequestC1Ev) +STUB( + "UQme-KNMMB4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEC2EPS8_) +STUB("UQnItjOX5D0", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_19ProductInfoDetailedEEC2Ev) +STUB("UQnpvrVrnBw", mono_trace_set_level_string) +STUB("UQpexYwe6as", sceUserServiceCreateUser) +STUB( + "UQshJCDUFg8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("UQvAI+-XHVs", mono_conc_hashtable_new) +STUB("UQzEKNbOEzI", _ZThn16_N9Inspector14InspectorAgentD0Ev) +STUB( + "UQzg1PX27Q8", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeaders24hasXPsnAtomicOperationIdEv) +STUB("UR0ttTtAHX8", ScePsmMonoGcSetHeapSizeLimit) +STUB( + "UR1fvBzmIbU", + _ZN7WebCore4Page13rangeOfStringERKN3WTF6StringERKNS1_8OptionalINS_11SimpleRangeEEENS1_9OptionSetINS_14FindOptionFlagEEE) +STUB( + "UR2jculFawU", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditions9setslotIdEi) +STUB("UR30bUSo1dc", _ZN3WTF8JSONImpl5ValueC2Ev) +STUB("UR3CUxyxH48", mono_aot_ClassLibrary1plt_end) +STUB( + "UR3jVRY-QkE", + _ZN3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsSearchRequestBody8fromJsonERKNS_4Json5ValueE) +STUB( + "UR3vlyUT2kY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "UR6RHkQv3Zw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEED2Ev) +STUB("URDgJcXhQOs", sceGnmInsertThreadTraceMarker) +STUB("URHY4Lp4CXU", _ZN3JSC2VM16weakMapSpaceSlowEv) +STUB("URNifsiKAk0", _ZN7WebCore10ScrollView18setFixedLayoutSizeERKNS_7IntSizeE) +STUB( + "URSfNwhz7o4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE5clearEv) +STUB("URUBvWtDFRU", WKBundleFrameCreateFrameHandle) +STUB("URX9azN77dU", _ZN3WTF24calculateLocalTimeOffsetEdNS_8TimeTypeE) +STUB("URX9kwFwkis", _ZN3WTF6StringC1ENS_12ASCIILiteralE) +STUB( + "URZ6Sn+EOD0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEmmEv) +STUB( + "URZOfbC4fzU", + _ZN3sce2Np9CppWebApi11UserProfile2V111PresenceApi28ParameterToGetBasicPresences10initializeEPNS1_6Common10LibContextEPKc) +STUB( + "URd2H7tRw8U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEED2Ev) +STUB("UReOIxlkMjo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEED1Ev) +STUB( + "URfYa6RYbBc", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("URfp+VPX-dY", _ZN8meta_gen13TiffRetriever20ProcessIfdOffsetDataEPhmPm) +STUB("URps7Oe7uZs", mono_aot_Sce_Vsh_Np_Tmdbplt) +STUB( + "URv4xkhHd2s", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEC2EPS8_) +STUB( + "URxENN44a6k", + _ZN7WebCore8Document56hasRequestedPageSpecificStorageAccessWithUserInteractionERKNS_17RegistrableDomainE) +STUB( + "US0idG1kCx0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEED1Ev) +STUB("US66MHNrjvs", fuse_fs_link) +STUB("US6tSm6hLtc", mono_class_get_property_token) +STUB("USAYguDxoTk", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119ChildActivityStatusEEppEv) +STUB( + "USAt1AFsnuM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEEC2ERKSA_) +STUB( + "USBUK82xUF0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE5beginEv) +STUB("USHNwEi-H9g", _ZN7WebCore11DisplayList8RecorderD2Ev) +STUB("USLhWp7sZoU", + _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewl) +STUB("USSPza+s5-I", _ZN7WebCore11JSDOMWindow15showModalDialogERN3JSC9ExecStateE) +STUB("USUuOd-dcYQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead16getMaxSpectatorsEv) +STUB("USVpRGc0dlA", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIfED2Ev) +STUB( + "USaUBdkrmOw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEeqERKS9_) +STUB( + "USbNAXIxjdg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEE11get_deleterEv) +STUB("UScMQLt-6I0", _ZN3sce2Np9CppWebApi7Matches2V121ResponsePlayerResults7setRankERKi) +STUB( + "USdahjl+U2w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "USeTpe5Y-Us", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEC2EPS8_) +STUB("USh443unLZ0", _ZN7WebCore19BlurFilterOperation5blendEPKNS_15FilterOperationEdb) +STUB("USiOybPUJ3c", mono_aot_Sce_Vsh_ShareServerPostWrapperjit_code_end) +STUB("USjT9W-Xdt0", mono_aot_Sce_Vsh_ShellUIUtilWrapperunbox_trampolines_end) +STUB("USu1bXHyG30", ubidi_reorderLogical_67) +STUB( + "USw7YPN27gE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEeqERKS9_) +STUB("USxp2eW0eLE", + _ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetailC1EPNS1_6Common10LibContextE) +STUB( + "USxx9zJQSOk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE21intrusive_ptr_add_refEPS9_) +STUB("UT1TIW2OXj8", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V15Error10getMessageEv) +STUB( + "UT2CzVFEw3s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "UT3CPxVppOo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEmmEv) +STUB("UT66OVmwC9s", _ZN3sce7Toolkit2NP2V211SharedMedia9BroadcastC1Ev) +STUB("UT8+lb5fypc", sceUserServiceSetParentalDvd) +STUB( + "UT8S9fPtNXk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEC1EPS6_PNS2_10LibContextE) +STUB("UT8x3GgcrzQ", WKBundlePageIsEditingCommandEnabled) +STUB( + "UTFyrqsfwsk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEEcvbEv) +STUB("UTR6wAkajxk", __sys_netabort) +STUB( + "UTWGpsRdUNk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE7reserveEi) +STUB("UTXH2LMXej8", _ZN7WebCore27PlatformMediaSessionManager13sharedManagerEv) +STUB("UTXzJbWhhTE", scePthreadAttrSetstacksize) +STUB( + "UTcubXpGZzc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEneERKS9_) +STUB("UTgM78YcROM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEC2Ev) +STUB( + "UTgqzannDso", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE17getNpWebApi2ReqIdEv) +STUB( + "UTpko62ZiLk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEE11release_refEv) +STUB("UTqrWB+1+SU", sceHmdInternalBindDeviceWithUserId) +STUB( + "UTrGi4UecsI", + _ZN3sce7Toolkit2NP8Matching9Interface11joinSessionEPKNS1_18JoinSessionRequestEPNS1_9Utilities6FutureINS1_18SessionInformationEEEb) +STUB("UTrpOVLcoOA", vsscanf) +STUB("UTrzzCUsH0w", + _ZNK7WebCore18ImageBufferBackend12getImageDataENS_22AlphaPremultiplicationERKNS_7IntRectEPv) +STUB("UTs3cCoXRz8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE7popBackEv) +STUB("UTsKij05zBY", _ZNK15AbstractStorage14YoutubeService14GetServiceTypeEv) +STUB( + "UTubvPzv1ac", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEC2EPNS2_10LibContextE) +STUB("UTumVjeIQtg", FT_Done_Memory) +STUB( + "UTwSIxgeLaQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEC2EPS8_) +STUB("UU-WJhJQWxQ", sceHttpCacheTerm) +STUB("UU0LS4-qsH4", _ZN3WTF16AtomicStringImpl3addEPNS_10StringImplEjj) +STUB("UU1v09JlHS0", rgctx_fetch_trampoline_rgctx_16) +STUB("UU20U-U-Nmk", _ZN7WebCore20UserGestureIndicator29processingUserGestureForMediaEv) +STUB("UU8OQd42DFk", _ZN3JSC18logTotalPhaseTimesEv) +STUB( + "UUEm4C-mxwc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEEC1Ev) +STUB("UUFTds0D4f8", ucln_lib_cleanup_67) +STUB("UUGJ8eCwfNo", _ZNK7WebCore11JSDOMWindow6windowERN3JSC14JSGlobalObjectE) +STUB("UUQSk5-w9gU", sceDepth2Submit) +STUB("UUXDikzOtWg", sceCesUcsProfileInitGb18030_2005) +STUB( + "UUYa92vdk50", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEED2Ev) +STUB( + "UUZqtUBNnXw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE8pushBackERKS8_) +STUB("UUdW7rv54G0", mono_aot_Sce_Vsh_DbPreparationWrappermethod_addresses) +STUB("UUhI+IUMrcE", sceNpAppInfoIntCheckAvailability) +STUB("UUikhajvVqo", psaux_module_class) +STUB("UUjwkH78wDI", + _ZN7WebCore11DOMRectListC1ERKN3WTF6VectorINS_9FloatRectELm0ENS1_15CrashOnOverflowELm16EEE) +STUB("UUriaXy7G90", sceFiosArchiveGetMountBufferSizeSync) +STUB("UUv-IJ5J3QY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEEC2Ev) +STUB("UUwnVHwsEzc", sceVnaCancelDownloadTts) +STUB("UUydNdNg5Aw", _ZN3sce3Xml6StringC2Ev) +STUB("UUzJQbV8i9k", _ZN7WebCore11JSDOMMatrix6s_infoE) +STUB( + "UV-N6y2GYp0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEC1EPS8_) +STUB("UV4m0bznVtU", posix_spawnattr_setflags) +STUB("UV79SQ4WYuQ", AnnotateRWLockDestroy) +STUB( + "UV9BshxzdAM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEE11get_deleterEv) +STUB("UV9J1wFYxE8", _ZN7WebCore12ChromeClientD1Ev) +STUB( + "UVApqtIiB3g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("UVBkipSD2sw", _ZNK3sce4Json6String4sizeEv) +STUB("UVCMLmS-Eas", sceVrTracker2SetCoordinateSystem) +STUB("UVDWssRNEPM", _Atomic_fetch_and_1) +STUB( + "UVE1ptJAj-c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEaSERKS9_) +STUB("UVEJfYtxiME", _ZNK7WebCore9ImageData4dataEv) +STUB("UVHQ5QOlN1s", _ZN3sce7Toolkit2NP15AppSTLAllocatorIcEeqERKS3_) +STUB("UVLmT9lzRYA", _ZN3sce2npeqERKNS0_4TimeES3_) +STUB( + "UVSTiiJfLjk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEC2EPS8_) +STUB("UVTzFxQLxRE", _ZN3sce7Toolkit2NP15AppSTLAllocatorI16SceNpTusVariableEeqERKS4_) +STUB("UVXRxttVOOw", _ZN7WebCore8Document15createElementNSERKN3WTF12AtomicStringERKNS1_6StringE) +STUB( + "UVYoDD+tCKY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE7reserveEi) +STUB("UVbUxKZBdk4", _ZN3sce7Toolkit2NP2V210Tournament14RegisteredUseraSERKS4_) +STUB("UVft3+rc06o", _ZTSN10__cxxabiv119__pointer_type_infoE) +STUB( + "UVfxIEi3teY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEaSERKS9_) +STUB("UVg1afOZLqs", _ZN7WebCore9HTMLNames11onerrorAttrE) +STUB("UVj7kM-SZzY", sceFiosStatisticsGet) +STUB("UVmXjh+wnUo", _ZN12video_parser5vpcom12UTF8stoSJISsEPKhjPhPj) +STUB("UVo9HdqYP2c", WKPreferencesSetAVFoundationEnabled) +STUB("UVsQe9e0Wo0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEixEm) +STUB("UVtHtHLSDN8", il2cpp_class_is_assignable_from) +STUB( + "UVu6w+J1FEY", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("UW1Gl2sOmjM", _ZN3sce7Toolkit2NP2V28Matching6WorldsC1Ev) +STUB( + "UW6gU8plsUQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE3endEv) +STUB("UWAbPAGUbT4", _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse13getResultTypeEv) +STUB("UWCrWQtUc5w", sceOpusCeltEncEncodeFloatWithPriority) +STUB( + "UWEuGmaqcuA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEE7get_refEv) +STUB( + "UWFs8yllzHk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "UWHfHWdqxzc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEppEv) +STUB( + "UWIQyDcz1hs", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions10initializeEPNS1_6Common10LibContextEPKc) +STUB("UWJ4sNYFRFc", ucol_swap_67) +STUB( + "UWKvazjhLN0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEE7add_refEv) +STUB("UWKzMNYXxKs", _ZNK3WTF9MediaTime9timeFlagsEv) +STUB( + "UWOPTMTnx1I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEEC2ERSA_) +STUB("UWQ3JZbb5bM", sceApplicationIsPrimaryProcess) +STUB("UWQJ3LjYU0o", WKPreferencesGetLinkPreloadEnabled) +STUB( + "UWQwOo1drgk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE5beginEv) +STUB( + "UWV6TvnX0wY", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("UWX7khvY9iw", OBJ_nid2sn) +STUB( + "UWYO83OtNuI", + _ZThn16_N9Inspector22InspectorDebuggerAgent18setBreakpointByUrlERN3WTF6StringEiPKS2_S5_PKiPKNS1_8JSONImpl6ObjectEPS2_RNS1_6RefPtrINS8_7ArrayOfINS_8Protocol8Debugger8LocationEEENS1_13DumbPtrTraitsISI_EEEE) +STUB( + "UWYpGAaonMU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE10setContextEPNS2_10LibContextE) +STUB("UWZbVSFze24", scePthreadMutexattrSetkind) +STUB("UWh5t-hCbzQ", sceMbusGetDeviceInfoByConditionForDeviceService) +STUB("UWhMu9onqGE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE5emptyEv) +STUB("UWiSJOFkezY", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEEC2Ev) +STUB("UWnY-csxdhk", png_set_invalid) +STUB("UWq4kiFcwuY", unorm2_hasBoundaryBefore_67) +STUB("UWtAGzsF4dY", _ZN3sce7Toolkit2NP2V210Tournament27TeamVsTeamTournamentDetailsD1Ev) +STUB("UWyL6KoR96U", _ZSt13_Xregex_errorNSt15regex_constants10error_typeE) +STUB("UX-UpLUZmic", _ZN3sce3pss4core8graphics14NativeGraphics20AllocateSystemMemoryEmm) +STUB( + "UX-aM5jCHCQ", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditions9getslotIdEv) +STUB("UX0nfjo7ACw", _ZNK7WebCore4Node19rootEditableElementEv) +STUB("UX5VJ-OZdTg", _ZN3WTF4Lock13safepointSlowEv) +STUB( + "UXBzQ2yZMJQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEEC2ERKSA_) +STUB("UXRgSH83N9Y", _ZNK3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse12getAccountIdEv) +STUB("UXS8VgAnIP4", _ZTSw) +STUB( + "UXVAdizVji8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEneERKS9_) +STUB( + "UXWUz4jph8c", + _ZN3sce2Np9CppWebApi14SessionManager2V151PatchGameSessionsSearchAttributesRequestBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_44PatchGameSessionsSearchAttributesRequestBodyEEE) +STUB("UXXBx+CzJe0", + _ZN3sce7Toolkit2NP2V211UserProfile9NpProfile38MAX_SIZE_VERIFIED_ACCOUNT_DISPLAY_NAMEE) +STUB( + "UXZhDlHMhQo", + _ZN3sce2Np9CppWebApi7Matches2V119RequestMatchResults20setCompetitiveResultERKNS1_6Common12IntrusivePtrINS3_24RequestCompetitiveResultEEE) +STUB("UXb6DTEPDkQ", _ZN3sce7Toolkit2NP15AppSTLAllocatorItE7addressERt) +STUB( + "UXfh0YNyQII", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEC2EPS6_PNS2_10LibContextE) +STUB( + "UXg+IiUG7aY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEE7add_refEv) +STUB( + "UXhxNXix1+Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEEC1ERKSA_) +STUB("UXiyfabxFNQ", sceNpTrophyIntNetSyncTitles) +STUB("UXl99AyR0Z4", _ZN3sce7Toolkit2NP6TicketC2Ev) +STUB( + "UXmxEhhSaYs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "UXoIiimES8c", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12unsetString6Ev) +STUB("UXpJplwPqd4", sceKernelCancelAIO) +STUB( + "UXprFYaZWnY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("UY0ocTXFieI", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification11RefreshRoomEEC2Ev) +STUB("UY123Q3mRZI", _ZN3WTF37canCurrentThreadAccessThreadLocalDataERNS_6ThreadE) +STUB("UYAD7sUQcYU", _ZN3sce2np9WorkQueue16WorkItemFinishedEPNS0_8WorkItemEi) +STUB("UYD2jkWiCr0", WKOpenPanelParametersGetMediaCaptureType) +STUB( + "UYF93hHX8eI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEED2Ev) +STUB("UYFiPan-LTA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEE11release_refEv) +STUB( + "UYM1zY-H-mc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEaSERKS9_) +STUB( + "UYMS+oJKWXM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB("UYN0J2Pg468", _ZN7WebCore7makeRGBEiii) +STUB("UYPxv8MIzGo", _ZN3sce2Np9CppWebApi6Common10initializeERKNS2_10InitParamsERNS2_10LibContextE) +STUB("UYQPI1KtTvo", _ZN3JSC26createIteratorResultObjectEPNS_9ExecStateENS_7JSValueEb) +STUB("UYQaSVs2HPc", _ZN7WebCore22EmptyFrameLoaderClient12didDetectXSSERKN3WTF3URLEb) +STUB("UYQtmAUXmCc", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku25setDisplayPlusUpsellPriceEPKc) +STUB("UYR9fcPXDUE", sceUserServiceGetFileBrowserSortTitle) +STUB("UYWBwps1yD4", sceUpsrvUpdateCheckDoCheckSystemExpBeta) +STUB("UYYxpQ7Yy2I", _ZN3sce7Toolkit2NP2V23TUS7TusData5resetEv) +STUB("UYgxVHhvMxw", _ZNK3WTF3URL12isAboutBlankEv) +STUB("UYh1S31dB8M", _ZN4Manx18getDefaultFontPathEv) +STUB("UYjiUSe9wPw", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V113ErrorResponseD1Ev) +STUB( + "UYk7FWbNhWw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEppEv) +STUB("UYlpfXiijCM", _ZNK7WebCore8Settings23webRTCEncryptionEnabledEv) +STUB("UYox8vUVm+8", _ZN7WebCore9HTMLNames10summaryTagE) +STUB("UYw6RlK7bcQ", scePlayerReviewDialogGetStatus) +STUB("UYwLsCYOWIA", _ZN3JSC7Symbols28regExpBuiltinExecPrivateNameE) +STUB( + "UYyF+OLDIG4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "UZ0k7T8XoEg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "UZ3oyHPJiss", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V117ConnectionQuality9setGlobalERKNS1_6Common12IntrusivePtrINS3_27ConnectionQualityPropertiesEEE) +STUB( + "UZ6U-r98iuE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEEaSERKSA_) +STUB( + "UZ8Q7e1BRYQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEC1EPNS2_10LibContextE) +STUB( + "UZA5N2FfJ9E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEC2EPS6_PNS2_10LibContextE) +STUB("UZF1v5n0o60", _ZN12video_parser13cVideoMetaVWG17getTimeZoneOffsetEPs) +STUB("UZJ68N9vpf4", mono_btls_x509_lookup_mono_init) +STUB("UZJnC81pUCw", putwc) +STUB( + "UZL8iR013xE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "UZMrXjJBv3Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEEC1ERSA_) +STUB( + "UZTIFVarFvo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEEaSERS9_) +STUB( + "UZVnbsgkQEk", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUser12getaccountIdEv) +STUB("UZbQjYAwwXM", sceAgcCbSetShRegistersDirect) +STUB("UZbuoykGKzE", _ZN15AbstractStorage7ContentC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("UZdBo5KLYoE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEED2Ev) +STUB( + "UZfOMRymaZM", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("UZjGAmHq1rY", mono_aot_Sce_Vsh_UserServiceWrapperplt) +STUB( + "UZnZhpALzFU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEppEi) +STUB("UZoHTWgeI9I", sceBgftServiceIntDownloadGetPatchProgress) +STUB("UZrHnfnijms", _ZN7WebCore11DisplayList11DrawingItemC2ENS0_8ItemTypeE) +STUB("UZu3hH7NfRc", _Mbcurmax2) +STUB( + "UZz7Noins2Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEaSERKS7_) +STUB("Ua0Ucb+dcNg", YGNodeStyleSetPadding) +STUB("Ua7uCi7wdeE", umutablecptrie_fromUCPTrie_67) +STUB("Ua86vx5IaDU", _ZN7WebCore13MIMETypeCache26isUnsupportedContainerTypeERKN3WTF6StringE) +STUB( + "UaDn7sumomc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEplEm) +STUB("UaLjloJinow", sceSharePlayTerminate) +STUB("UaRW96-F3t0", _ZN7WebCore8Document18createCDATASectionERKN3WTF6StringE) +STUB( + "UaZUQIvVC3A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEC2EPNS2_10LibContextE) +STUB("UaZZzXWsnic", generic_trampoline_generic_virtual_remoting) +STUB( + "Uam5n+4yqP0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEEC2Ev) +STUB("UaswxdHvEI8", _ZN25MmsFileUpdaterFsOperation11moveTmpFileEPKc) +STUB("UauwQL1Y4uE", _ZNK3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15Error14getReferenceIdEv) +STUB( + "UawvTgYWslY", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData22hasxPsnAtomicOperationEv) +STUB("UazrNFzZPRU", sceVideoOutGetVideoOutModeByBusSpecifier_) +STUB("Ub05p6lScXw", WKPreferencesGetAttachmentElementEnabled) +STUB("Ub1E3ls9MSU", _ZN3JSC8Bindings13RuntimeObject14finishCreationERNS_2VME) +STUB("Ub36be4JR2o", _ZStL9_New_hand) +STUB("Ub4JvxZ0KE4", _ZNK3WTF3URL16isMatchingDomainENS_10StringViewE) +STUB( + "Ub933ALe1HA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEEC1ERSA_) +STUB( + "UbFE3PyKjd8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEE7add_refEv) +STUB("UbHmZPp2tCU", _ZNK7WebCore9JSElement7wrappedEv) +STUB("UbM7HWXXV-A", jpeg_idct_2x1) +STUB("UbNLIB-+Daw", _ZN3sce2Np9CppWebApi11Matchmaking2V18LocationD2Ev) +STUB("UbQoYawOsfY", sceAvPlayerIsActive) +STUB( + "UbSsXroY5pQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE3endEv) +STUB("UbStlMKTBeU", sceNpServerErrorJsonParseInit) +STUB("UbTRJs48B30", mono_aot_Sce_Vsh_PartyCommonplt) +STUB( + "UbV0dzRBRKE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEE11get_deleterEv) +STUB("UbV8FoKdkbI", fuse_reply_entry) +STUB( + "UbXotK0wOII", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsers13isInitializedEv) +STUB( + "UbaVvbxn234", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEE3getEv) +STUB( + "UbfjpybOy3A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEED2Ev) +STUB( + "Ubh+zs+UR-Q", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEEiRNS2_10LibContextEPT_m) +STUB("UbhwnyRH7WQ", fuse_invalidate) +STUB( + "Ubi9vJesDQ4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE6resizeEj) +STUB( + "UbjNnuuOgCc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEptEv) +STUB( + "UblGY0beR58", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetBoolean2Ev) +STUB( + "UblPmAcKqqQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("UbnVmck+o10", mbsinit) +STUB("UbpJoR3X8JM", _ZN3sce7Toolkit2NP10Parameters12initStlAllocEPNS1_19AllocImplementationE) +STUB("UbpaHV1cB94", pfr_cmap_class_rec) +STUB( + "UbsLM8E0PDI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEixEm) +STUB("UbuTnKIXyCk", _ZNSt10moneypunctIcLb0EE4intlE) +STUB("Ubv+fP58W1U", sceNpInGameMessageGetMemoryPoolStatistics) +STUB("Uc+-Sx0UZ3U", _ZNKSt7codecvtIcc9_MbstatetE6do_outERS0_PKcS4_RS4_PcS6_RS6_) +STUB( + "Uc0W-S56sjk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEEC1ERKSA_) +STUB("Uc0s1YgeTo8", ulist_containsString) +STUB("Uc18WD18zKI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ChildActivityAvailabilityEEC1Ev) +STUB( + "Uc1NS6duGK4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE8copyFromERKS9_) +STUB("Uc5eSnk3dvE", _ZNK3sce2Np9CppWebApi11UserProfile2V113BasicPresence12getAccountIdEv) +STUB( + "Uc69iWEYH3k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEC2ERS7_) +STUB("Uc9uGPlZzTM", + _ZN3sce2Np9CppWebApi7Matches2V121ResponseTeamStatistic25unsetTeamMemberStatisticsEv) +STUB( + "UcKxpZmLd8A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "UcN8B+XBRT4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEE7get_refEv) +STUB("UcNlxVHe8-s", g_string_new_len) +STUB( + "UcPHrXzDnOM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEED1Ev) +STUB("UcPsMbfa-5Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEEcvbEv) +STUB("UcR6yz4F8Iw", _ZN3sce2Np9CppWebApi7Matches2V122RequestMatchStatistics19unsetTeamStatisticsEv) +STUB("UcV3V1tuOkw", _ZN3sce7Toolkit2NP2V211SharedMedia11ScreenshotsC1ERKS4_) +STUB( + "UcXAx1OJ5pc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEaSERS7_) +STUB("UcYuZkNhHI8", sceNpMatching2SignalingEstablishConnection) +STUB( + "UcYzhfKuUeU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEixEm) +STUB("UcdWvwMNS7A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEEC2Ev) +STUB("UcgUlPQHpz4", il2cpp_method_get_declaring_type) +STUB("UcgrPwX7k68", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V115FrequentlyMutedD2Ev) +STUB("UcjqpEduxGg", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo13isInitializedEv) +STUB( + "UcnHjdgXq9U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEED1Ev) +STUB("Uco1I0dlDi8", scePlayGoClose) +STUB("UcoanY+JWew", __asan_stack_malloc_always_9) +STUB("Ucsu-OK+els", pthread_attr_get_np) +STUB("UcuB0KUnMZc", _ZN25MmsFileUpdaterFsOperationC2Ev) +STUB("Ucwii+Cj3KA", _ZNK3sce2Np9CppWebApi11Matchmaking2V19Attribute6toJsonERNS_4Json5ValueEb) +STUB( + "UcxjnysoqHo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEE7get_refEv) +STUB("UcyA+RDgXHg", png_read_info) +STUB( + "Ucyzf+u-rg4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEEcvbEv) +STUB("Ud+1jEz8LWc", WKWebsiteDataStoreIsStatisticsGrandfathered) +STUB( + "Ud0C2lLJgA0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEeqERKS9_) +STUB( + "Ud3GrBcwsQg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEaSERS7_) +STUB( + "Ud4gDZJIY5w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEC1EPS8_) +STUB("Ud7j3+RDIBg", sceHmdSetupDialogUpdateStatus) +STUB("Ud8CbISKRGM", posix_spawn_file_actions_destroy) +STUB( + "UdAZNJb9uPU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEdeEv) +STUB( + "UdAqNrelvpo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "UdCTV6sbreA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEC2EPS8_) +STUB( + "UdFZBntDUNY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEEC2Ev) +STUB( + "UdImTy07hI0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEE3getEv) +STUB("UdKXYoeVDLc", + _ZN7WebCore21NetworkStorageSession29deleteAllCookiesModifiedSinceEN3WTF8WallTimeE) +STUB("UdP5qTZTQzw", SHA512_Update) +STUB( + "UdSy3DPSw2w", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEEiRNS2_10LibContextEPT_m) +STUB("UdUr+4Y1YJM", _ZNSt7_MpunctIcE8_GetvalsIcEEvT_PK5lconv) +STUB("UdZhN1nVYfw", sceUserServiceSetGlsBcTags) +STUB( + "Udc1pW1FC2U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEE3getEv) +STUB("UdfNGip9c-Q", mono_register_trampoline_funcs) +STUB("UdhQmx64-uM", _sceNpIpcCreateMemoryFromPool) +STUB("UdknvgT-snI", sceBackupRestoreUtilCancelGetRequiredSize) +STUB("UdkvoRZbg4M", scePerfPmcL3Start) +STUB( + "UdyEMWZ974Y", + _ZN3JSC23JSModuleNamespaceObject17defineOwnPropertyEPNS_8JSObjectEPNS_9ExecStateENS_12PropertyNameERKNS_18PropertyDescriptorEb) +STUB("UdyhGckrgr8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEE5resetEPS6_) +STUB( + "Udynf4VvUAk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEEcvbEv) +STUB("UdzGt24l9Jk", _ZN3sce7Toolkit2NP2V29Messaging7Request27GetReceivedGameDataMessagesC1Ev) +STUB("Ue+9QQsd6IU", _ZN9Inspector21InjectedScriptManager17injectedScriptForEPN3JSC14JSGlobalObjectE) +STUB( + "Ue2zGHdHi34", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEneERKS9_) +STUB( + "Ue697xQOzuc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEC1ERKS7_) +STUB("Ue8e7OGlvFA", _ZN3sce7Toolkit2NP2V212NetworkUtils12BandwithInfoC1ERKS4_) +STUB( + "Ue9DKZ4aF00", + _ZN3sce2Np9CppWebApi14SessionManager2V123FromNonPsnMemberFactory7destroyEPNS3_16FromNonPsnMemberE) +STUB("UeIv6aNXlOw", sceUserServiceGetPartyMuteList) +STUB("UeMkkibxFw4", _ZN7WebCore9HTMLNames16bgpropertiesAttrE) +STUB("UeOJlAxhp98", _ZN7WebCore15makeSimpleRangeERKNS_5RangeE) +STUB("UeSrsYzgEBA", ucol_openRules_67) +STUB( + "UeTMSaFyWwo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEC1Ev) +STUB("UeYdo-L+tuA", _ZN7WebCore18StyleSheetContents11parseStringERKN3WTF6StringE) +STUB("UeYiDCqHWuM", _ZNK7WebCore12RenderObject15localToAbsoluteERKNS_10FloatPointEjPb) +STUB("Uea1kfRJ7Oc", _ZTSSt15underflow_error) +STUB( + "UecmOMU6eQ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEC2EPS6_PNS2_10LibContextE) +STUB("UeeYJN-SzZ8", ASN1_STRING_length) +STUB("UefpI5bJ6ZE", mono_aot_Sce_Vsh_GriefReportStoragemethod_addresses) +STUB("UeihRnD6hks", _ZN3JSC4Yarr7replaceERN3WTF6StringERKNS0_17RegularExpressionERKS2_) +STUB("Ueld-PpRXEI", + _ZN15AbstractStorage14FacebookFolder13writeExternalESt10shared_ptrINS_7ContentEE) +STUB("UemBZJ0lp68", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V115CompetitionTypeEEmmEv) +STUB("UeuWT+yNdCQ", _ZN3sce4Json5ValueC1Eb) +STUB( + "Uev3aN41Qmo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "UewDz-LvLl8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE7popBackEv) +STUB( + "UewG8XTerAc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEptEv) +STUB( + "UewXZFD4sJs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEmmEi) +STUB("UexxLj2wLic", _ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEE21intrusive_ptr_add_refEPS5_) +STUB("UezlBvGQZUI", sceVisionManagerGetWorkingMemorySize) +STUB( + "Uf0-6G0YaLg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("Uf0TGTnxVXw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEEaSERKS7_) +STUB("Uf3h6DPcBvg", scePerfTraceSpmStart) +STUB( + "Uf52fsWc7CI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB("Uf6y9t5GHeQ", GetSrcIdList) +STUB("UfWqjplpGC8", sceCesUcs2ToBig5) +STUB( + "UfZ74Y8XxoI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEppEv) +STUB( + "UfcCP61hbgc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEEC1Ev) +STUB( + "UfehJmAGP7o", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE4sizeEv) +STUB("UffSEIbUYZQ", _ZN3sce7Toolkit2NP2V28Commerce8SkuLabelC1Ev) +STUB( + "Ufloc9Tc+iM", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinition13isInitializedEv) +STUB( + "UfnL9ZaxWd4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB("UfqFhYGfglI", _ZN12video_parser13cVideoPathMgv17GetMaclistEKBNameEPc) +STUB( + "UfsRXWY4AMU", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectator57setpostPlayerSessionsSessionIdMemberSpectatorsRequestBodyENS1_6Common12IntrusivePtrINS3_54PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEE) +STUB("UfuKEUkb3Ds", _ZN7WebCore15AffineTransform5flipYEv) +STUB( + "UfwE9BqfR5M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "Ufwc3crkabs", + _ZN3sce7Toolkit2NP8Commerce9Interface15getCategoryInfoEPNS1_9Utilities6FutureINS1_12CategoryInfoEEERKNS1_23CategoryInfoInputParamsEb) +STUB( + "UfyuijjgmHk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEdeEv) +STUB("Ug+PNtND8gI", _ZN7WebCore7Element9setPseudoERKN3WTF12AtomicStringE) +STUB("Ug-13mhenfY", _ZN7WebCore11DisplayList6RotateC2Ef) +STUB("Ug-4pREiQoY", _ZN3WTF31NonSharedCharacterBreakIteratorC1ENS_10StringViewE) +STUB("Ug-xd4ry1hg", _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead13setSearchableERKb) +STUB( + "Ug3C2uoowXw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE10setContextEPNS2_10LibContextE) +STUB( + "Ug3ZVoo8n9A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC1ERKSA_) +STUB("Ug6uMIR1xcs", _ZN7WebCore30InvertLightnessFilterOperationC2Ev) +STUB("Ug8pCwQvh0c", sceRtcIsLeapYear) +STUB("UgBZnAVCxpA", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging25GameDataMessageAttachmentEE3setEv) +STUB("UgHUbG2r7J8", _ZN3JSC7Symbols32linkAndEvaluateModulePrivateNameE) +STUB("UgHqkAUw1Ac", sceAvControlSetColorEffect) +STUB("UgIITEJeYRo", _ZN3WTFlsERNS_10TextStreamENS_7SecondsE) +STUB( + "UgOURVZjz7I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEC1Ev) +STUB("UgZ7Rhk60cQ", imaxabs) +STUB("UgdEMk7qL1w", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersC2Ev) +STUB( + "UgdgCvPhcgk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "Uge85FlZtFE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("UgeApjKttsM", WKPreferencesSetHyperlinkAuditingEnabled) +STUB("UgfS6HQA+H4", get_random) +STUB("UggFJR-Q6ZM", ucnv_MBCSGetType_67) +STUB("UglJIZjGssM", sceAgcDriverSubmitDcb) +STUB("UgmqDr1BCLw", _ZN3sce2np10JsonNumber6SetNumEi) +STUB("UgnGlHwXnYs", ucnv_countAvailable_67) +STUB( + "UgoycQguVwo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEC2Ev) +STUB( + "UgtM0Y+MdtY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEE3getEv) +STUB("Uh3L-l186q8", _ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody11setObjectIdEPKc) +STUB("Uh5MMgeF5OA", _ZN3JSC23JSModuleNamespaceObject6s_infoE) +STUB( + "Uh7Fq-87WkI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEC2Ev) +STUB("Uh9P9wZfvao", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE3endEv) +STUB("UhFPniZvm8U", sceHmdInternalGetHmuSerialNumber) +STUB( + "UhIwbJadfp4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEppEi) +STUB("UhKI6z9WWuo", _err) +STUB( + "UhL9Tf1Sl9A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEEC2ERSA_) +STUB( + "UhLEVaMa9lE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE3endEv) +STUB("UhLT15FEvI8", _ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchStatusRequest9getStatusEv) +STUB( + "UhMMOYr4stY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEC2Ev) +STUB("UhPDjkajj0I", _ZN7WebCore12JSAudioTrack15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "UhRXgyW25T8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEEC2ERKSA_) +STUB("UhTHf-qYOu4", ures_getVersionNumber) +STUB( + "UhUqaY+Sxxs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEeqERKS9_) +STUB("UhWPLgBLu4k", udata_openChoice_67) +STUB( + "UhZ0v17o8KI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE4sizeEv) +STUB( + "Uhevmvnsxi8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEE3getEv) +STUB("Uhf+rcxTY-k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEED1Ev) +STUB("UhiVFUeYzb8", _ZN3sce2Np9CppWebApi7Matches2V113ChildActivity13setActivityIdEPKc) +STUB("Uhlr4ATPsWQ", _ZN9Inspector14ConsoleMessagenwEm) +STUB("Ui+vqRGXVMs", _ZN3sce7Toolkit2NP2V29Challenge13ChallengeData8deepCopyERKS4_) +STUB("Ui-89z4-7t8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEdeEv) +STUB( + "Ui0XP2Bo6mo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE7reserveEi) +STUB("Ui7YFnSTCBw", _ZN3sce4Json6StringD2Ev) +STUB( + "UiCf8+o7wDk", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V314MissingElement8fromJsonERKNS_4Json5ValueE) +STUB( + "UiEH4ni4xis", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEC1EPKS8_) +STUB( + "UiETaU9jSdQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEC1Ev) +STUB("UiFgvjyircY", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_15CategoryInfoSubENS2_IS4_EEEEC2Ev) +STUB("UiHG+YgIFno", _ZN7WebCore9HTMLNames12controlsAttrE) +STUB("UiIGhwPoY88", WKBundleRemoveUserScripts) +STUB( + "UiJkFEkRgX4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEneERKS9_) +STUB("UiLRUGMj+CA", _ZN3sce7Toolkit2NP2V28Commerce12ProductLabelC2Ev) +STUB( + "UiMlxkG4-M4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE6resizeEj) +STUB("UiNRDVZcF5A", _ZN3sce7Toolkit2NP2V27Session7SessionD1Ev) +STUB("UiYyNSsGSA0", _ZNK7WebCore16HTMLMediaElement11crossOriginEv) +STUB( + "UijvjAVzWR8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE5emptyEv) +STUB("UikZHjy-nBw", _ZN7WebCore11MathMLNames13symmetricAttrE) +STUB( + "UinvUsdASJs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEED1Ev) +STUB( + "UitebwoKVQs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEC1EPS6_PNS2_10LibContextE) +STUB("UiuOtk07joA", _ZNK7WebCore12GridPosition15integerPositionEv) +STUB("Uiyy-woHSDA", WKPreferencesGetMainContentUserGestureOverrideEnabled) +STUB( + "Uj00XRrDz3c", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V136ConnectionQualityWiredMetricsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_29ConnectionQualityWiredMetricsEEE) +STUB("Uj4E1Axicy4", _ZN9Inspector31BrowserBackendDispatcherHandlerC2ERKS0_) +STUB( + "UjBlTjxTfsA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEeqERKS9_) +STUB("UjF55vAFTVs", qS2) +STUB( + "UjG4yNgtrhU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("UjRJjyvPT2A", _ZN12video_parser18cProfileCheckerMp421isPlayableVideoLengthEy) +STUB( + "UjRnyLVtJrQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEppEi) +STUB("UjTDE3AQCRg", _ZN3WTF7Unicode18convertUTF8ToUTF16EPKcS2_PPDsS3_Pb) +STUB( + "UjUPSlx8Hzc", + _ZN7WebCore14SecurityPolicy29addOriginAccessAllowlistEntryERKNS_14SecurityOriginERKN3WTF6StringES7_b) +STUB( + "UjcARt5DwXo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "UjeNF9tN8z0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEED1Ev) +STUB("UjemQJKxpr4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEC1Ev) +STUB("Ujf3KzMvRmI", memalign) +STUB("Ujg4fSVn+DA", delegate_invoke_impl_target_6) +STUB( + "UjjRIUSPNe8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEE7get_refEv) +STUB("UjkVLnP+n0M", sceNetGetInterfaceStats) +STUB( + "UjlnolnTtCE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEppEv) +STUB("UjnLeaBF3PM", _ZN3sce7Toolkit2NP2V27Session14SessionDetailsD2Ev) +STUB("UjpFU8Kcllw", _ZN7WebCore13QualifiedNameC2ERKN3WTF12AtomicStringES4_S4_) +STUB("UjxjrK3jn3k", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11EntitlementEE7addressERS3_) +STUB("Ujxz7ftKY44", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy15TrophyPackGroupEE3setEv) +STUB("Ujz25JX-jPM", sceShellCoreUtilSetSystemBGWaveColor) +STUB( + "UjzfTJDOUDs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE8pushBackERKS8_) +STUB("Uk2CVPYZDBI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersC1Ev) +STUB( + "Uk5LZyI6uuA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEneERKS9_) +STUB( + "Uk6QE1rjv+8", + _ZN3sce2Np9CppWebApi13InGameCatalog2V518ErrorEntityFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_11ErrorEntityEEE) +STUB( + "Uk7rSgi+l6c", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE4sizeEv) +STUB("UkEV4hvMo1E", sysctlnametomib) +STUB("UkKO8esUAM4", __tsan_create_fiber) +STUB("UkKfS3Bi7iY", _ZN25MmsFileUpdaterFsOperationD1Ev) +STUB( + "UkL4Bw+CMEw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEC1EPS8_) +STUB("UkMUIoj-e9s", sceFontGraphicsFillMethodInit) +STUB( + "UkPlkr-EIVs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEeqERKS9_) +STUB( + "UkRNTL1ntaQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE21intrusive_ptr_add_refEPS9_) +STUB("UkSUouA-9nk", _ZN7WebCore22SkewTransformOperationC2EddNS_18TransformOperation13OperationTypeE) +STUB( + "UkYaxgm977Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("UkchSX+i+tc", + _ZN7WebCore11FrameLoader22findFrameForNavigationERKN3WTF10AtomStringEPNS_8DocumentE) +STUB("Ukgz243vz6M", mono_aot_Sce_Vsh_FileSelectorunbox_trampolines_end) +STUB("UkhNxEGudWI", _ZN7WebCore7JSRangeC1ERKS0_) +STUB("Ukkysrh0wns", _ZN7WebCore17HistoryController26saveDocumentAndScrollStateEv) +STUB( + "UkshxYa8m7E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB("Uku2JpZmoqc", sceShellCoreUtilAccessibilityZoomUnlock) +STUB("Uku9X4466Kw", _ZN7WebCore9HTMLNames15onloadstartAttrE) +STUB("UkuLm7EGTDc", mono_aot_Sce_Vsh_SystemLoggerUtilWrapperunbox_trampoline_addresses) +STUB("UkvXd2jt++I", glBeginQueryEXT) +STUB( + "Ul1mtpPXkBk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEED2Ev) +STUB("Ul2GZtxXdTk", _ZNK15AbstractStorage11LocalFolder13GetCapabilityEv) +STUB( + "Ul3SoxZtZdk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEcvbEv) +STUB( + "Ul83qzgORj0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEneERKS9_) +STUB( + "UlDEea7JFSQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEC1EPNS2_10LibContextE) +STUB( + "UlH3YhuFO4o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEaSERKS8_) +STUB("UlJSnyS473g", _Tls_setup__Touptab) +STUB( + "UlKZ2xte9vg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEEC2Ev) +STUB( + "UlKgJfwGhmg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEC1EPS8_) +STUB( + "UlOeMnwYliI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("UlOv+A8qapg", jinit_c_coef_controller) +STUB( + "UlQSBk8DDBg", + _ZN9Inspector22ContentSearchUtilities38createRegularExpressionForSearchStringERKN3WTF6StringEbNS0_16SearchStringTypeE) +STUB("UlRGaUoA+04", _ZN7WebCore9HTMLNames14onpopstateAttrE) +STUB("UlRWdRwKURU", _ZN3sce7Toolkit2NP2V26Trophy17TrophyPackSummaryD2Ev) +STUB( + "UlYo8okxza4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEaSERS7_) +STUB( + "UlcZ4sTqzeE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEC2EPNS2_10LibContextE) +STUB( + "Ulcb8xSyTyg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("UlecUmQ3wcE", _ZN3sce3pss5orbis5video15VideoPlayerBase8SetSpeedEi) +STUB("Ulfh6EsndAA", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats22getMatchCompletionRateEv) +STUB("UlhmuaaTM9g", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_15TrophyGroupInfoEEC1Ev) +STUB( + "Uli+2fFXrTo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "UliVOwPuhts", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("UljHcoEA7HA", _ZN3sce7Toolkit2NP2V23TUS13TusDataBufferC2Ev) +STUB( + "Ulmks+wYHqo", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("Uln8FXVcVCY", + _ZN3sce2Np9CppWebApi14ConnectAccount2V216PartnerTokensApi26ParameterToGetPartnerTokenC1ERS5_) +STUB("UlqFuHxBk8o", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEptEv) +STUB( + "UlqS-0wcIa4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEED2Ev) +STUB( + "UlrFGydwCGc", + _ZN7WebCore12RenderObject19scrollRectToVisibleERKNS_10LayoutRectEbRKNS_26ScrollRectToVisibleOptionsE) +STUB("Ulu9vNs5vn8", goby_Fin) +STUB( + "UlucuHCm57w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEC2EPS8_) +STUB("UlzzM1VENZM", WKPreferencesSetDatabasesEnabled) +STUB( + "Um-0HDPaim0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEC2EPKS8_) +STUB("Um-RcJhrQYw", WKPreferencesSetUserInterfaceDirectionPolicy) +STUB("Um-jkyDy9rI", sceAgcDriverGetReservedDmemForAgc) +STUB( + "Um0PoSy6Nv0", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot13unsetsortModeEv) +STUB("Um1VUK4rrac", _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_6DOMURLE) +STUB( + "Um3GQParB2E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEED2Ev) +STUB("Um8wfeu9KeI", _ZNK7WebCore11MediaPlayer11currentTimeEv) +STUB("UmCvjSmuZIw", sceAudio3dInitialize) +STUB("UmG60jlTpUY", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEED2Ev) +STUB("UmKHZkpJOYE", sceFontGraphicsDrawupFillFlatColor) +STUB("UmNOWVCFFCM", _ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead10setNatTypeERKi) +STUB("UmNS0P0-ovs", u_getDataDirectory) +STUB("UmWgEp87BfA", Java_java_awt_GnmGraphicsEnvironment_cleanup) +STUB("UmXngHKB6is", sceKernelDeleteFileEvent) +STUB("UmfVPAXbsR0", _ZN3sce3Xml6StringC1EPKcm) +STUB("Umjbr4j7ORE", Java_java_awt_GnmImage_nativeDrawImage) +STUB( + "UmjgarC6Uk0", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead9setLeaderERKNS1_6Common12IntrusivePtrINS3_18LeaderWithOnlineIdEEE) +STUB("UmocAU9a2o0", uiter_setCharacterIterator_67) +STUB("UmonHP+s+AI", _ZN3JSC7Symbols36GeneratorResumeModeReturnPrivateNameE) +STUB("UmotadC824Y", mono_jit_info_get_code_start) +STUB("Umpn9l1IgMc", _ZN3sce7Toolkit2NP2V23TUS7Request16TusVariableInputD1Ev) +STUB("UmvsYsKYp8g", _ZN3sce7Toolkit2NP9Utilities6FutureI7SceNpIdED1Ev) +STUB( + "UmyzQqMgkEE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEC1Ev) +STUB("UmzxltBpiiY", _sceNpRealloc) +STUB("Un-Nm66asII", + _ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody16rulesetNameIsSetEv) +STUB("Un28DpZj4ec", _ZN3JSC12HeapAnalyzerD0Ev) +STUB( + "Un47YWdBJ+o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEC1EPS6_PNS2_10LibContextE) +STUB( + "UnCak1Ocjoc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEEC1ERKSA_) +STUB("UnGek4cGPCE", _ZN3JSC2VM24apiGlobalObjectSpaceSlowEv) +STUB( + "UnKW0ziFuiw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("UnNbTSm-mpI", mono_field_get_name) +STUB( + "UnOsjRN4HB8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEmmEi) +STUB("UnQDn+U-tC8", ucal_getDefaultTimeZone_59) +STUB( + "UnW5l1rwcco", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEC1EPNS2_10LibContextE) +STUB("UnXfEW-fb9A", _ZNKSt9basic_iosIwSt11char_traitsIwEE5rdbufEv) +STUB("UnYEP5JEDbE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEmmEv) +STUB("UnblfDLd7ic", g_direct_hash) +STUB( + "UncuJ-jwZmY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEneERKS9_) +STUB("UnoclCJsleA", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE3endEv) +STUB("Untg89NcROM", glClearBufferiv) +STUB( + "UnwAXWfmlZI", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody19dataStatusListIsSetEv) +STUB("UnwGZpezOmQ", mono_aot_Sce_Vsh_Sl2_Sl2Deliverunbox_trampolines) +STUB("Unwa3qG+jk0", Java_java_util_zip_ZipFile_getZipMessage) +STUB( + "UnyP91oLEw8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE3endEv) +STUB("UnydC8GhZ1Q", _ZNK7WebCore18JSHTMLInputElement7wrappedEv) +STUB("Uo9zGFMj74U", _ZN3sce7Toolkit2NP2V210Wordfilter7Request13FilterCommentD2Ev) +STUB("UoADU8-OPsg", uset_openPattern_59) +STUB( + "UoAT9geqY+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("UoBuWAhKk7U", sceGnmGetResourceUserData) +STUB( + "UoIYvRaEwBc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEE3getEv) +STUB( + "UoM9hRb+nWg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEplEm) +STUB("UoMZIQx7JiI", _ZN7WebCore11MediaPlayer24remoteEngineFailedToLoadEv) +STUB("UoQIKpCBUeY", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE6resizeEj) +STUB( + "UoTQUpXWHmc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEppEv) +STUB( + "UoUi-hbheoE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE7reserveEi) +STUB("UoYY0DWMC0U", sceGnmGetEqEventType) +STUB("UoaDfV72Frw", _ZN7WebCore27ContentSecurityPolicyClientD0Ev) +STUB( + "UoizUqs7dQQ", + Java_java_security_AccessController_doPrivileged__Ljava_security_PrivilegedAction_2Ljava_security_AccessControlContext_2) +STUB( + "UopIFBTpyJw", + _ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForRead10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_19PlayerSessionPlayerEEEEE) +STUB("Uoqdqe0Fgp8", mono_aot_System_Runtimeunwind_info) +STUB( + "Uot+0QBQsxg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEEdeEv) +STUB( + "Uot3Coha56k", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "UotNU4W0738", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("UoyxMN47fmw", _ZN7WebCore13MediaStrategyC1ERKS0_) +STUB("Up0zYyxuRLQ", _ZN3WTF17TextBreakIteratorC2ENS_10StringViewENS0_4ModeERKNS_10AtomStringE) +STUB("Up36PTk687E", sceVideoOutOpen) +STUB( + "Up96-qqjQPw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("UpER4IpzKH0", _ZN7WebCore10FileHandle5writeEPKvi) +STUB( + "UpJE4QToJKg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEaSERKS9_) +STUB( + "UpW3ydgCr5w", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_8Debugger5Scope4TypeEEEN3WTF8OptionalIT_EERKNS6_6StringE) +STUB("UpYEu5ZEqF4", _ZN7WebCore6JSNode6s_infoE) +STUB("UpYNlATxBKk", sceLncUtilIsHostBoot) +STUB( + "UpaGfnI6PEI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEptEv) +STUB( + "Updmo8DfFRs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEdeEv) +STUB("UpfMQXD5L4M", _ZN9Inspector32DatabaseBackendDispatcherHandler18ExecuteSQLCallbackD2Ev) +STUB("UpgqMv8GfOw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEC2Ev) +STUB( + "UpjoplvNixY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEED2Ev) +STUB("UpjyUovbfqA", mono_aot_Sce_Vsh_Stickerjit_code_end) +STUB("UpkfE2SNofE", sceNpIpcEndRequest) +STUB("UpnQ9-C9AKc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEEC1Ev) +STUB("UpnyuFw6xnY", _ZN3JSC8JSObject13estimatedSizeEPNS_6JSCellERNS_2VME) +STUB( + "UpqgbdW+br8", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEEiRNS2_10LibContextEPT_m) +STUB( + "Ups0O6xHeWc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("Upt4yMKJOZ0", + _ZN7WebCore16MIMETypeRegistry30appendFileExtensionIfNecessaryERKN3WTF6StringES4_) +STUB( + "UptYwni0qYE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEEdeEv) +STUB( + "Uq3rn7Tb0BA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEE11get_deleterEv) +STUB( + "Uq4mU+UCfmQ", + _ZN3sce2Np9CppWebApi14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBody8fromJsonERKNS_4Json5ValueE) +STUB("Uq5BGthgbl4", sigwaitinfo) +STUB("Uq5K8tl8I9U", _ZNSt6locale7classicEv) +STUB("Uq6LgTJEmQs", scePadGetDataInternal) +STUB("Uq8uW74rVpU", sceDeviceServiceTerminate) +STUB("UqDGjXA5yUM", munmap) +STUB("UqQul-BxITQ", _ZN3sce7Toolkit2NP2V27Session21ChangeableSessionDataC1Ev) +STUB("UqRUDBf7LmQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEE7get_refEv) +STUB("UqS6j-J-Y2c", WTFAnnotateHappensBefore) +STUB("UqSO97fYNAs", _ZN15AbstractStorage14MemfileContent5WriteEPKvlPl) +STUB("UqTrIWQfm7w", _ZN3sce7Toolkit2NP18JoinSessionRequestC1Ev) +STUB( + "UqbbaKxqxd4", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("UqhA2SigBj8", _ZN9Inspector21DOMFrontendDispatcherC1ERNS_14FrontendRouterE) +STUB( + "UqkwyMV24hI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEdeEv) +STUB("Uqkz9Cn89xo", Java_com_sony_bdjstack_ti_Database_getDiscId) +STUB("Uqn5KvU5tTQ", _ZNK3WTF24TimeWithDynamicClockType24approximateMonotonicTimeEv) +STUB("UqpuHPllTdE", _ZNK7WebCore9RenderBox25horizontalScrollbarHeightEv) +STUB( + "UqpwnpiKCSk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE6resizeEj) +STUB("Uqq9dvyF6nE", sceCesRefersUcsProfileIso8859_8) +STUB("Ur1V4uZ7vMY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEC1Ev) +STUB( + "Ur3X5IS6jeo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEdeEv) +STUB("Ur7AVsjdYyU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17SetGameDataResultEED2Ev) +STUB("Ur8R26QkYfs", _ZN3sce2Np9CppWebApi7Matches2V113ChildActivity17unsetAvailabilityEv) +STUB("UrBqrl7jqdk", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request13GetPlayedWithC1Ev) +STUB( + "UrCh38TFMqI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEC2EPS8_) +STUB("UrDhHj0xBLs", _ZN3sce3Xml13AttributeList10initializeEPKNS0_11InitializerE) +STUB("UrGQ+Gt1JRY", _ZN7WebCore4Page11forEachPageERKN3WTF8FunctionIFvRS0_EEE) +STUB("UrIl1bIUtak", _ZN3JSC14ProtoCallFrame29setArgumentCountIncludingThisEi) +STUB("UrJocI5M8GY", _ZN3sce2np8NpCommId5ParseEPS1_PKcm) +STUB( + "UrJtel5Gtks", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("UrN6mFAbgbA", sceUpsrvUpdateGetUpdateTaskMgrInfo) +STUB("UrRAqrfyFU0", _ZNK7WebCore9FrameView12footerHeightEv) +STUB( + "UrS8v3CJJs0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "UrTJC7lX0oI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("UrafQRzOxd4", WKPreferencesGetAcceleratedDrawingEnabled) +STUB( + "UrdPLFFG-rE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEEcvbEv) +STUB("UrhKY32NztY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEE7add_refEv) +STUB( + "UrhVlx658Zc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEC2Ev) +STUB( + "UriZs0lJ1Hc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEE11get_deleterEv) +STUB( + "UrpM2W+Mkx8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE5clearEv) +STUB("Urt2PjJmB-o", _ZN3WTF11OSAllocator16reserveAndCommitEmNS0_5UsageEbbb) +STUB( + "Us0F-sAARi8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEptEv) +STUB("Us6vIm-5258", + _ZN7WebCore17JSDOMRectReadOnly14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB( + "UsADtSZCXnM", + _ZN7WebCore17PageConfigurationC2EON3WTF9UniqueRefINS_12EditorClientEEEONS1_3RefINS_14SocketProviderENS1_13DumbPtrTraitsIS7_EEEEONS2_INS_17LibWebRTCProviderEEEONS6_INS_20CacheStorageProviderENS8_ISF_EEEE) +STUB( + "UsJ+12poR9I", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setBoolean1ERKb) +STUB( + "UsNBoBg8buw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEC2ERS7_) +STUB("UsTkXzNyTKk", mstate_table) +STUB( + "UsfSxM76VHs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEE5resetEPS8_) +STUB("UsiIDUBwAto", mono_log_open_syslog) +STUB("UskWpVWxSvg", sceNpArchTerm) +STUB("UsoNZ5gxEuo", _ZNK3sce2Np9CppWebApi14SessionManager2V114Representative12getAccountIdEv) +STUB("Usq0KAVki8I", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEptEv) +STUB( + "Ut3+LjzNeiU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEC2EPKS8_) +STUB("Ut7Ri-h-0l0", _ZN7WebCore17HTMLOptionElement8setLabelERKN3WTF6StringE) +STUB("Ut7U9CTBGxs", _ZN3JSC8Debugger17registerCodeBlockEPNS_9CodeBlockE) +STUB( + "Ut98rojLZ2Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "UtAOq4rwYQ8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEC1EPS8_) +STUB("UtDLjo9rPmw", _ZN7WebCore19UserContentProviderC2Ev) +STUB( + "UtEHtq4mc6U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEmmEv) +STUB("UtEV+oLbAe0", YGNodeStyleSetFlexDirection) +STUB( + "UtJeCMhzInM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEE11release_refEv) +STUB("UtO0OHMCgmI", sceKernelIsDevelopmentMode) +STUB( + "UtO4xbnLT44", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("UtObDRQiGbs", sceGnmDestroyWorkloadStream) +STUB( + "UtTetxvQ8Zg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEC1Ev) +STUB( + "UtWXkMUCBeA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE5beginEv) +STUB("UtXl-tmi7iw", scePlayerReviewDialogInitialize) +STUB( + "UtYZ6V54EpQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEppEi) +STUB("Utd-6hXTsFQ", sceNpEulaDialogCheckVersionAbort) +STUB("UteVS6B1ZrU", dlopen) +STUB("Uti3IOnyYgI", _ZTVN7WebCore16JSStringCallbackE) +STUB("Utj8Sh5L0jE", _ZNKSt8numpunctIwE16do_thousands_sepEv) +STUB("Utlzbdf+g9o", sceFontFtSupportTrueTypeGx) +STUB("UtpVXG+RzTc", sceRazorCpuEndArchiveFileAccess) +STUB("UtszJWHrDcA", sceKernelFchmod) +STUB("UtvF5urnmHc", _ZNK3sce2Np9CppWebApi11Matchmaking2V110UserTicket13ticketIdIsSetEv) +STUB("UtwP654XpTw", _ZN3JSC12GlobalJSLockD2Ev) +STUB("UtzbMjf4-iY", _ZNK3WTF6String7toInt64EPb) +STUB( + "Uu-OLqsHlL0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE8copyFromERKS9_) +STUB("Uu-iDFC9aUc", sceKernelGetEventError) +STUB("Uu4VU1bY2Eo", sceHmdGetDistortionMap) +STUB("Uu5RvjltDI4", uset_contains_67) +STUB("Uu7T82HN7wg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEE3getEv) +STUB( + "UuBFaViDmzA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEE3getEv) +STUB( + "UuE7s18UWCA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEEC1EPNS2_10LibContextE) +STUB("UuHE5QHmCgs", _ZN7WebCore24PointerCaptureController13cancelPointerEiRKNS_8IntPointE) +STUB( + "UuP68mjOTcg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE10setContextEPNS2_10LibContextE) +STUB( + "UuQPXCn-3LA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEC1Ev) +STUB( + "UuRXnW98nyk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEC1ERS8_) +STUB("UuSK1dFjjuQ", _ZN3sce7Toolkit2NP2V23TUS13TusDataBufferD2Ev) +STUB("UuVHsmfVOHU", _ZTVSt23_Generic_error_category) +STUB("UuVtnHmsJ6E", + _ZNK7WebCore23TextureMapperAnimations25hasActiveAnimationsOfTypeENS_18AnimatedPropertyIDE) +STUB( + "UuXKAFczFlo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEmmEv) +STUB("UuY-OJF+f0k", sceFontDettachDeviceCacheBuffer) +STUB("UuafD-kxYBs", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE21intrusive_ptr_add_refEPS7_) +STUB( + "UukG1sRgu7o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEC1EPS8_) +STUB("UukL0EXLQls", sceLncUtilFinishSpecialResume) +STUB("UukOy6kz+VM", RSA_size) +STUB( + "UuostthC0sU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEE7add_refEv) +STUB("UuqKDcmMtAs", YGNodeLayoutGetBottom) +STUB("UuxN+dMXUc8", monoeg_g_ascii_tolower) +STUB( + "UuzzlUxBdZU", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("Uv+1RNg62iU", sceSpNetErrnoLoc) +STUB("Uv1IQpTWecw", _ZN3sce2np9EventFlagC2Ev) +STUB("Uv5i4e38ito", mono_aot_Sce_Vsh_DbPreparationWrapperjit_code_start) +STUB( + "Uv6KhYrdopE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("UvBKtxGZG2M", sceVencCoreMapTargetMemoryByPid) +STUB("UvDQq9+QMuI", _ZN3sce2np3ipc14service_client11TermServiceEi) +STUB("UvH0srCBqEI", mono_win32_compat_MoveMemory) +STUB("UvHn-Oa-dfw", _ZN3WTF6Thread5s_keyE) +STUB( + "UvJ5qthUUWs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEppEv) +STUB("UvL4tfruRO4", _ZN7WebCore12EditingStyleD2Ev) +STUB("UvLGkjrZlss", g_utf8_strdown) +STUB("UvMSpJJz80s", sceCesUtf32beToSJis) +STUB("UvT1SCfBOiU", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setString10EPKc) +STUB("UvTehqnqtyY", _ZN3sce7Toolkit2NP2V24Core7Request10TermParamsD2Ev) +STUB("UvU6Uh2YH-s", + _ZN7WebCore11CryptoKeyEC12generatePairENS_25CryptoAlgorithmIdentifierERKN3WTF6StringEbi) +STUB( + "UvcsBBq890s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE7reserveEi) +STUB("UvcvKaFvupA", sceGameUpdateCreateRequest) +STUB( + "Uvk4n2QfySY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB("UvtA3FAiF4Y", sceVideodec2ReleaseComputeQueue) +STUB( + "UvuJlJvmc9k", + _ZN3sce2Np9CppWebApi14SessionManager2V119NonPsnLeaderFactory6createEPNS1_6Common10LibContextEPKcS9_PNS5_12IntrusivePtrINS3_12NonPsnLeaderEEE) +STUB( + "UvuLZAsA2R0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEEC2EPS8_PNS2_10LibContextE) +STUB("UvxHBngd1H8", _ZN9Inspector21DOMFrontendDispatcherdlEPv) +STUB("Uw+BZJpflxk", FT_Alloc) +STUB("Uw+N2MbMav8", _ZN7WebCore6Path2D7addPathERS0_ONS_15DOMMatrix2DInitE) +STUB("Uw3OTZFPNt4", _ZNSt6_WinitD1Ev) +STUB( + "Uw7I9b25sZ4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEED1Ev) +STUB( + "UwDX6LdfsEs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEEaSERKSA_) +STUB("UwFfyhgQ4vM", _ZN3JSC37parseDateFromNullTerminatedCharactersERNS_2VMEPKc) +STUB("UwMYQFss8oM", WKFrameCopyMIMEType) +STUB( + "UwRBI4mzATA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEmmEv) +STUB("UwVBVVYBr38", _sceNpIpcDefaultReallocImpl) +STUB("UwW9XcZWH0c", uspoof_closeCheckResult_67) +STUB("UwdgT7v98sA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE8pushBackERKS6_) +STUB( + "Uwg01C9-q38", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEEdeEv) +STUB("UwgBRss72dY", _ZNK3sce3Xml3Dom4Node13getParentNodeEv) +STUB( + "UwhPJx5CI78", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEeqERKS9_) +STUB("Uwkiwe8UVz8", _ZN3WTF8JSONImpl5ValueD0Ev) +STUB("UwsLZn4ICsk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEptEv) +STUB("Uwxgnsi3xeM", pthread_rwlock_setname_np) +STUB("Uwy5H0xJugI", _ZN7WebCore11BidiContext6createEh14UCharDirectionbNS_19BidiEmbeddingSourceEPS0_) +STUB("Uwz2YQcEGgI", _ZN8meta_gen14ImageRetrieverD2Ev) +STUB( + "Ux0pBwcDQMs", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEEC1EPNS2_10LibContextE) +STUB("Ux3CF2+f4-0", u_printf_u_67) +STUB("Ux6XxakVN+8", cairo_mesh_pattern_begin_patch) +STUB("Ux9FW2n+EfE", + _ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse19unsetPersonalDetailEv) +STUB("UxAXjXypYBY", uenum_next_59) +STUB("UxDr1iQixuQ", JSStringIsEqual) +STUB("UxEqityd8NQ", _ZN3sce2Np9CppWebApi7Matches2V111AddedPlayerD2Ev) +STUB("UxOJvGmy3mA", sceNpAsmDeleteConnection) +STUB("UxRFBHALbSI", _ZNK7WebCore14ScrollableArea18scrollbarIntrusionEv) +STUB("UxV5adxfBFg", sceVdecCoreQueryFrameBufferInfo) +STUB("UxVK4voIpTw", _ZN3NTF18URLResponseMessageD2Ev) +STUB( + "UxXktFvqJ6M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEED1Ev) +STUB("UxZIBFip8Eg", mono_aot_Sce_Vsh_SyscallWrapperjit_code_end) +STUB( + "UxdvJ7rLoSg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE6resizeEj) +STUB( + "UxiCkgYvaDY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE5beginEv) +STUB( + "UxiF1uDl7FU", + _ZN7WebCore18JSHTMLMediaElementC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_16HTMLMediaElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB("UxjPI7oB6BU", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsD1Ev) +STUB( + "UxkPOtAUc0g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("Uxqkdta7wEg", sceCoredumpSetUserDataType) +STUB("UxrSdH6jA3E", sceUserServiceGetSaveDataAutoUpload) +STUB( + "UxvTHnxnbXI", + _ZN8meta_gen11MsvPromoter27setKeyValue_TBLAVC_IconPathENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB( + "Uy+spyud5AY", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUser17setnpServiceLabelEj) +STUB("Uy8CCbsMGlA", _ZN7WebCore9HTMLNames12tabindexAttrE) +STUB( + "UyLQtowh2M0", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13string10IsSetEv) +STUB("UyUHeYA21sg", _ZN3sce2np10NpOnlineIdD1Ev) +STUB("UyVVO5GxZl4", _ZN15AbstractStorage14YoutubeServiceC1Ev) +STUB("UyVXfHe1CxY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEEC2ERKS6_) +STUB("Uybzrh+1nJE", WKSessionStateCopyData) +STUB("Uyfpss5cZDE", __mulvdi3) +STUB("UymfdiDxYdE", + _ZNK3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession6toJsonERNS_4Json5ValueEb) +STUB( + "UyorlOyF-K8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEC2ERS7_) +STUB( + "UyqM3rCItCQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEEC2Ev) +STUB("Uyss1eAFtWo", ktimer_delete) +STUB( + "Uyt4YvVLyTE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "Uz5JhHH5z5o", + _ZN3JSC8JSObject25getStructurePropertyNamesEPS0_PNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("Uz6Z0Xm9uTU", _ZTVN9Inspector18InjectedScriptBaseE) +STUB( + "Uz7VN9rThJ4", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V342PsnWebError_error_validationConstraintInfo8getValueEv) +STUB("UzBy6NOpz74", sceVnaSetKeyPhraseCategoryEnable) +STUB("UzEiHUpYCHM", sceVencCoreDeleteEncoder) +STUB("UzHiA8D2Pt8", __tsan_atomic8_fetch_add) +STUB("UzOOayOyogU", _ZN7WebCore23AuthenticationChallengeaSERKS0_) +STUB("UzT-6N3lHz8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEEC1Ev) +STUB( + "UzTDM25lxHg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEC2Ev) +STUB( + "UzU2Exfq1M8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEED1Ev) +STUB("UzUC8jH1fGs", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16TrophyPackTrophyEED2Ev) +STUB("UzUQwo6GPQQ", + _ZN7WebCore15StringTruncator12leftTruncateERKN3WTF6StringEfRKNS_11FontCascadeERfbf) +STUB( + "UzUvmg26fG8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEmmEv) +STUB( + "UzX0wfNRycs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE17getResponseHeaderERSB_) +STUB( + "UzcHWkCZCWI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEC1Ev) +STUB( + "UzgaOFxzQ+M", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEdeEv) +STUB("UzicyYogKeg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEEaSERKS7_) +STUB( + "UzjlzhV+NdY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEeqERKS9_) +STUB("Uzl9KIIajHs", JNU_ClassClass) +STUB("UzmR8lOfyqU", _ZNKSt7_MpunctIwE13do_neg_formatEv) +STUB("Uzn+AyzB+bk", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError14getReferenceIdEv) +STUB( + "UzovCXRh+Rg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEE5resetEPS9_) +STUB( + "UzqasxfFoKY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEED2Ev) +STUB("Uzr3-wYLS4Q", Java_com_sun_havi_ui_FreeTypeFontFace_pLoadFontFace) +STUB("UzxpjXk1rBk", _ZN7WebCore12HTMLDocument5widthEv) +STUB("Uzy4bEG4Zdo", _ZN3WTF3MD58checksumERSt5arrayIhLm16EE) +STUB("UzyfSZmeZHE", _ZN9Inspector17ScriptDebugServernaEmPv) +STUB("V++vjESqpWU", sceAudioLatencyEstimationInitialize) +STUB("V+3xSdbGAn4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEC1ERS7_) +STUB( + "V+6e20ykpwk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "V+6tlp3OF0g", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearchC2Ev) +STUB( + "V+9cHSHFmLw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEEcvbEv) +STUB("V+CdBngDepo", _ZN7WebCore15JSFetchResponse14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB("V+Cf6NO17IM", _ZN12video_parser16cVideoContentMp410initializeEv) +STUB( + "V+Cixw4RXOw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE8capacityEv) +STUB( + "V+F2j7pxUPw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEppEv) +STUB("V+JoAK-i-7I", _ZTVN3JSC11FuzzerAgentE) +STUB( + "V+K2yNJJ6jo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEED2Ev) +STUB("V+L4ywAV7xU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEEmmEv) +STUB("V+P9rsOiLmM", sceCesUtf16leToMbc) +STUB("V+TVN7J5JbA", sceSysUtilSendWebDebugNotificationRequest) +STUB( + "V+UC6m5GDMQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEEC1Ev) +STUB("V+c0E+Uqcww", _ZNKSt5ctypeIwE9do_narrowEwc) +STUB("V+e91nhyVdw", rgctx_fetch_trampoline_mrgctx_16_p) +STUB("V+eA4em3HNg", mono_btls_pkcs12_get_private_key) +STUB( + "V+fI59KLLTk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEEC2ERKSA_) +STUB("V+gyrfRGzm4", _ZN7WebCore17CredentialStorage3getERKN3WTF6StringERKNS1_3URLE) +STUB("V+nPRqUu3gE", _ZN3JSC14constructArrayEPNS_14JSGlobalObjectEPNS_9StructureERKNS_7ArgListE) +STUB("V+rtj0bEy9o", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session14InvitationDataEEC1Ev) +STUB("V+xww3j9tfI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEE7get_refEv) +STUB( + "V--3g9o1NtM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEED1Ev) +STUB("V--R8X+-0Ns", generic_trampoline_vcall) +STUB("V-2CJD45Y5o", _ZN3sce7Toolkit2NP2V210Tournament15RegisteredTeamsC1Ev) +STUB("V-5cjs+9kI0", sceShellCoreUtilNotificationCancelForIDU) +STUB("V-8pZsp4-C8", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEEC1EPS6_) +STUB( + "V-9HFNRPW8w", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEptEv) +STUB( + "V-AiGJjk7iM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEEC1ERSA_) +STUB( + "V-B2GLMvw0c", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE17getNpWebApi2ReqIdEv) +STUB("V-BU6eoSsKo", WKURLResponseCopyMimeType) +STUB("V-DUYmkNleQ", sceKernelMapperSetPageTablePoolOccupancyNotificationThreshold) +STUB( + "V-FGBJP5jIw", + _ZN3JSC8Bindings13RuntimeObject14deletePropertyEPNS_6JSCellEPNS_14JSGlobalObjectENS_12PropertyNameERNS_18DeletePropertySlotE) +STUB("V-MVdsP0qyU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE8capacityEv) +STUB("V-PeYfVNu98", _ZN7WebCore11FrameLoader17stopForUserCancelEb) +STUB("V-U46KZnn+I", _ZNK3sce2Np9CppWebApi13InGameCatalog2V511ErrorEntity10errorIsSetEv) +STUB("V-V1DWGaPr4", jinit_huff_encoder) +STUB( + "V-Ye4cFjiRM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEC2Ev) +STUB("V-YoqTufxnY", WKBundleBackForwardListItemIsInPageCache) +STUB( + "V-Zi-zOpL6k", + _ZN3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectator8fromJsonERKNS_4Json5ValueE) +STUB("V-dofRUSIAs", scePerfPmcSdfSelectEvent) +STUB("V-fPa0Bhh0w", _ZN3WTF20ConcurrentPtrHashSet7addSlowEPNS0_5TableEjjjPv) +STUB("V-hRAYX7T4w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEixEm) +STUB( + "V-if5aVCwR0", + _ZN7WebCore26MessagePortChannelRegistry22takeAllMessagesForPortERKNS_21MessagePortIdentifierEON3WTF17CompletionHandlerIFvONS4_6VectorINS_23MessageWithMessagePortsELm0ENS4_15CrashOnOverflowELm16ENS4_10FastMallocEEEONS4_8FunctionIFvvEEEEEE) +STUB("V-krvBJ56UY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEEmmEi) +STUB( + "V-mK6N04LRU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEppEv) +STUB("V-mtHgKabwI", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessionsC2Ev) +STUB("V-noPEjSB8c", sceHttpTryGetNonblock) +STUB("V-qTPLotsIk", _ZN7WebCore22EmptyFrameLoaderClient14recreatePluginEPNS_6WidgetE) +STUB("V-uEeFKARJU", sceSaveDataDialogProgressBarInc) +STUB( + "V-xLDlIaeMA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEEC2ERKSA_) +STUB("V-zyId3-sG0", _ZN7WebCore17DebugPageOverlays15settingsChangedERNS_4PageE) +STUB("V0+T-rQTbe0", _ZN7WebCore27screenSupportsExtendedColorEPNS_6WidgetE) +STUB("V02oFv+-JzA", __isinf) +STUB( + "V04eKhHbCBc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE10setContextEPNS2_10LibContextE) +STUB( + "V0AQrF60SVA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE3endEv) +STUB("V0EEd3DZsj8", _ZNK7WebCore27ScriptedAnimationController17throttlingReasonsEv) +STUB("V0N1qq7ikUc", sqlite3_errmsg) +STUB( + "V0O+xIpb6YM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEmmEi) +STUB( + "V0PcSYDY9ZA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEED2Ev) +STUB("V0X-mrfdM9E", imaxdiv) +STUB("V0a2VncsRVg", _ZN23sceMetadataReaderWriter13ParserManager11_loadParserEPKNS_10ParserInfoEj) +STUB( + "V0d2dz526rQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEmmEv) +STUB("V0dY21JIhV0", NET_Bind) +STUB( + "V0eXznmeG7I", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Runtime13ObjectPreview7SubtypeEEEN3WTF8OptionalIT_EERKNS6_6StringE) +STUB("V0ey5Vz5F7k", sceKernelSetBaseModeClock) +STUB( + "V0kTwI7Edvw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE5beginEv) +STUB( + "V0mB3kD5rJ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEC1Ev) +STUB( + "V0q-qmuAZkE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "V0rY+DfuHcc", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessions10initializeEPNS1_6Common10LibContextENS6_12IntrusivePtrINS3_27PostGameSessionsRequestBodyEEE) +STUB( + "V0u4BGGmovs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE7reserveEi) +STUB("V0wO52M81nE", _malloc_init_replaced) +STUB( + "V0yNtlTPvVg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEE3getEv) +STUB( + "V1+y6My2DTE", + _ZN7WebCore17PageConsoleClient7timeLogEPN3JSC14JSGlobalObjectERKN3WTF6StringEONS4_3RefIN9Inspector15ScriptArgumentsENS4_13DumbPtrTraitsISA_EEEE) +STUB("V11X+ydDfNE", udata_getLength_67) +STUB( + "V11i2ftSnDI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEC1EPS8_) +STUB("V12DdBWf8Xk", _ZN3JSC12BigIntObject6createERNS_2VMEPNS_14JSGlobalObjectENS_7JSValueE) +STUB( + "V1BWJUCUZls", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB( + "V1FTmJ2T3Aw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEE11get_deleterEv) +STUB("V1NPZeXfJaw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEEC2ERKS6_) +STUB("V1THGaJc23o", AacsPermissionGetNonce) +STUB( + "V1WL64rVy+8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEC2Ev) +STUB("V1XNGDVRh9M", + _ZNK3sce2Np9CppWebApi14SessionManager2V125ResponseGameSessionPlayer11getPlatformEv) +STUB( + "V1Y+BqtpSHM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEaSERKS7_) +STUB( + "V1cbmejC3So", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEptEv) +STUB("V1f-bRIanh4", sceFaceAllParts) +STUB( + "V1f0VVqzHgU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEC2EPNS2_10LibContextE) +STUB("V1fDKoGEXc4", + _ZN7WebCorelsERN3WTF10TextStreamERKNS0_6VectorImLm0ENS0_15CrashOnOverflowELm16EEE) +STUB("V1hVgILKsPk", __tsan_atomic8_compare_exchange_weak) +STUB("V1hf3XuxJXE", _ZN7WebCore9Scrollbar22maxOverlapBetweenPagesEv) +STUB("V1iadzLicyM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEC1Ev) +STUB( + "V1jgl1b2Qog", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEED1Ev) +STUB("V1qaf8ngY58", WKContextGetDatabaseProcessIdentifier) +STUB( + "V2+oz7iugck", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEEdeEv) +STUB( + "V2-g2n3TgnU", + _ZN3sce7Toolkit2NP3TUS9Interface7getDataEPNS1_9Utilities6FutureINS1_13TusDataOutputEEERNS1_21TusGetDataInputParamsEb) +STUB("V23RslccaX0", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_17ActivityFeedStoryEE7addressERS3_) +STUB("V23qt24VPVs", _ZSt17iostream_categoryv) +STUB( + "V245Pw9++FE", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayerC2ERS5_) +STUB("V25-9U+YauY", sceLncUtilRegisterDaemon) +STUB( + "V26BJMCkdzY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEE5resetEPS9_) +STUB( + "V27QHoEy6MY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEC1Ev) +STUB("V2FADWSgkTs", _ZN3JSC7Symbols49hasObservableSideEffectsForRegExpSplitPrivateNameE) +STUB( + "V2FGmMLPi4U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEEaSERKSA_) +STUB("V2FICbvPa+s", + _ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE5_InitERKSt8_Locinfo) +STUB( + "V2FUzaRw9rM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEE3getEv) +STUB( + "V2H58cIm5Io", + _ZN3sce2Np9CppWebApi14SessionManager2V138ResponseGameSessionMemberPlayerFactory7destroyEPNS3_31ResponseGameSessionMemberPlayerE) +STUB("V2JbrOdI4B0", _ZN7WebCore8PositionC2EPNS_4NodeENS0_10AnchorTypeE) +STUB( + "V2K2VlJk-t8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEE11release_refEv) +STUB( + "V2NelZNoJwI", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE5startEPNS2_10LibContextE) +STUB( + "V2QNrRHA6xE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEplEm) +STUB( + "V2W3tE2r9pY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE3endEv) +STUB("V2bpSABaYUU", Java_java_util_zip_ZipFile_close) +STUB("V2ccriI8lGw", _ZTVN7WebCore16ISOSchemeTypeBoxE) +STUB("V2gYfWoTUck", delegate_virtual_invoke_imt_m_17) +STUB("V2k1Ff-ujM8", _ZNK7WebCore13HitTestResult5titleERNS_13TextDirectionE) +STUB("V2kuweV0Cr8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEEmmEi) +STUB( + "V2oz6dB1Ja4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEC1EPKS8_) +STUB("V2tEGjKjcys", _ZN12video_parser5vpcom11Utf8ToUtf16ERKSsPSbIwSt11char_traitsIwESaIwEE) +STUB("V2u3WLrwh64", _sceUltUlthreadRuntimeOptParamInitialize) +STUB("V2uSL8jTxuk", Java_java_awt_GnmImage_disposePSD) +STUB( + "V2v-DcOhK4E", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEdeEv) +STUB("V2vIY+DgXA4", _ZN7WebCore9HTMLNames17aria_requiredAttrE) +STUB( + "V2xsWdRAQ3M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("V3+Mhdoz5B0", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEEaSERKS5_) +STUB("V31V01UiScY", sceGnmUpdateVsShader) +STUB("V33OnT9rA9c", _ZN3sce7Toolkit2NP2V24Core7Request11MemoryPoolsD2Ev) +STUB("V350H0h35IU", sceLncUtilAcquireCpuBudgetOfExtraAudioDevices) +STUB("V38nfJwXYhg", _sceNpIpcGetNpMemAllocator) +STUB("V3JPunq-L+M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEE3getEv) +STUB("V3Ky6zD8Slc", _ZN7WebCore21DiagnosticLoggingKeys14streamingMediaEv) +STUB("V3LWuS3ydP0", ucol_restoreVariableTop_67) +STUB("V3MTOWGL8tA", _ZN15AbstractStorage18DailymotionStorageD0Ev) +STUB( + "V3P+mjC9hH4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEED2Ev) +STUB( + "V3RntEukCjg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEEC1Ev) +STUB("V3VXTMCB7tw", _ZN3JSC2VM23jsModuleRecordSpaceSlowEv) +STUB("V3WoypYTUXA", __asan_report_exp_load8_noabort) +STUB( + "V3a8vMVmz+4", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEiRNS2_10LibContextEPT_m) +STUB( + "V3bHGawg7iQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEE11get_deleterEv) +STUB( + "V3cmr-NIoVY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEptEv) +STUB("V3fRK9330D4", _ZN3sce2Np9CppWebApi14SessionManager2V111GameSessionD1Ev) +STUB("V3iH4x0aEfA", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEEC2ERS7_) +STUB("V3nNG5UeEc8", mono_aot_Sce_Vsh_VoiceAndAgentjit_code_start) +STUB("V3tQFBTBqz0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEED2Ev) +STUB("V3u5+R-AuOM", + _ZN3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallback9terminateEv) +STUB("V3x+8S9k1vc", sceHidControlDisconnectDevice) +STUB( + "V3zR4Z6K2z8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEEaSERKSA_) +STUB( + "V4-BbeCZl04", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEC1ERS7_) +STUB("V4-iHxwpOM0", _ZN3sce2Np9CppWebApi13InGameCatalog2V55ErrorD1Ev) +STUB("V40EB7BewjU", _ZN7WebCore9HTMLNames13mayscriptAttrE) +STUB( + "V40LvJpopjE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEEC1ERKSA_) +STUB("V43l3qXnB+U", _ZN7WebCore11FrameLoader4loadEONS_16FrameLoadRequestE) +STUB("V48dWp8abf4", uprv_round) +STUB( + "V493u5WfvMQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEC1EPNS2_10LibContextE) +STUB("V4EVrruHuy8", sceNpLookupPollAsync) +STUB("V4NACG6kcrM", mono_aot_ReactNative_Vsh_Commonjit_code_start) +STUB("V4SWGM57RXc", + _ZN7WebCore12SettingsBase18setSerifFontFamilyERKN3WTF12AtomicStringE11UScriptCode) +STUB("V4T4zWxST6E", _ZN7WebCore27parseHTMLNonNegativeIntegerEN3WTF10StringViewE) +STUB("V4c2fjAX9fQ", sceS3dConversionClose) +STUB("V4cCe7khGVc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEdeEv) +STUB("V4dzNqR49bc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEEppEi) +STUB( + "V4gavuSGsKE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEppEv) +STUB( + "V4gr0hqsUTs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("V4mP3W6KOqI", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V110AvatarSizeEEmmEi) +STUB( + "V4nVFOt1EXU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEC2Ev) +STUB( + "V4uwVObZi1s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEED1Ev) +STUB("V5+PiQVi82U", _ZNK7WebCore16VisibleSelection19rootEditableElementEv) +STUB("V58G-aX6JoM", _ZN7WebCore6Editor4copyEv) +STUB("V5AfEkvBsY0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEptEv) +STUB("V5BN4+l-Pjw", _atanf_f4) +STUB( + "V5DKnNCi8fU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "V5GheyBg3lk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEC1ERS7_) +STUB( + "V5IseHPaYr4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("V5JnIYWTZR4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEEC2EPKS6_) +STUB("V5LOdBy2xyo", + _ZN3sce7Toolkit2NP2V29Messaging7Request19SendGameDataMessage18MAX_NUM_RECIPIENTSE) +STUB("V5NGN4l-iUY", _ZN9Inspector22InspectorDebuggerAgent13didBecomeIdleEv) +STUB("V5NNlbE52Zc", _ZN7WebCore11MediaPlayernaEm) +STUB("V5NUMrn5cEQ", sceContentBinderInitialize) +STUB("V5Owzs7E5Oo", _ZN3sce7Toolkit2NP2V211SocialMedia7Request21PostMessageToFacebookC2Ev) +STUB( + "V5TFFyMXpmQ", + _ZN7WebCore18TextureMapperLayer11setChildrenERKN3WTF6VectorIPS0_Lm0ENS1_15CrashOnOverflowELm16EEE) +STUB( + "V5WF65FHXfw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("V5XMPrrztCo", WKContextSetHTTPProxy) +STUB("V5aLJtdfYI4", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEEmmEv) +STUB( + "V5dsUz5aDhw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE21intrusive_ptr_add_refEPS9_) +STUB("V5hnzEc+ewM", _ZN3JSC8JSObject21deletePropertyByIndexEPNS_6JSCellEPNS_9ExecStateEj) +STUB( + "V5lcQuSCrk4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEE5resetEPS9_) +STUB( + "V5ogfzlMbvg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEC2EPS8_) +STUB("V5ojK9mvCJI", png_save_uint_16) +STUB("V5q6gvEJpw4", sceNetResolverConnectCreate) +STUB("V5s5sDu-kDM", bemp2sys_packetizer_destroy) +STUB( + "V5unnIPd8ro", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("V5xX2eroaWY", _ZN3sce2np14JsonDocBuilder23EscapeJsonStringBufSizeEPKc) +STUB("V5xjNBpCr6Q", mono_object_get_size) +STUB("V6+qPLSEH1M", mono_aot_Sce_PlayStation_HighLevel_UI2Platformmethod_addresses) +STUB("V6-nqm2437U", _ZN7WebCore16valueToUSVStringERN3JSC9ExecStateENS0_7JSValueE) +STUB( + "V61kzVkznGY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEC1EPS8_) +STUB("V62E2Q8bJVY", _ZSt9_LStrxfrmIcEmPT_S1_PKS0_S3_PKSt8_Collvec) +STUB( + "V62Q44Ozbog", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("V66G+Qvakco", u_getVersion_59) +STUB( + "V6CqmA8yB5U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE8capacityEv) +STUB( + "V6DJYSlYkA4", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEEiRNS2_10LibContextEPT_m) +STUB( + "V6IrBr-IGTA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEEC1ERKSA_) +STUB("V6KSpKv9XJE", sceNpMatching2CreateJoinRoomA) +STUB( + "V6KkMDjkZzg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEEC1ERSA_) +STUB( + "V6P50SOgnB4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "V6TaKLOpPUs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEED2Ev) +STUB( + "V6Y14rvV5ts", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE5clearEv) +STUB("V6bbJxUut8A", u_terminateWChars_67) +STUB( + "V6eGymPvkEE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("V6fVkEahkLM", glMapBufferRange) +STUB( + "V6fk7QAwSQo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("V6frA+LevAI", _ZN7WebCore9DOMWindowD0Ev) +STUB("V6iaCNU2KGo", GCC_except_table232) +STUB("V6jvzQi5EQc", sceNpManagerIntRemoveUserStateCallback) +STUB("V6tH9Unpqyw", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Publisher6toJsonERNS_4Json5ValueEb) +STUB( + "V6vyj3KdRXg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEEC2ERSA_) +STUB( + "V6w9vuGK8os", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEC2Ev) +STUB( + "V7+FCYe-tCQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE8copyFromERKS9_) +STUB( + "V72waql0ttI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEaSERKS9_) +STUB("V74wGlzI6K4", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13FriendsOfUserEE7destroyEPS3_) +STUB("V75N47uYdQc", _ZN3sce2np6ObjectnaEmR14SceNpAllocator) +STUB( + "V78OWGRvNZI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE10setContextEPNS2_10LibContextE) +STUB("V799utsuUVg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEC1Ev) +STUB("V7BQGxc2Ll0", scePfsGetWorkBufferSize) +STUB( + "V7C75frO4WE", + _ZN3IPC18MessageReceiverMap19dispatchSyncMessageERNS_10ConnectionERNS_14MessageDecoderERSt10unique_ptrINS_14MessageEncoderESt14default_deleteIS6_EE) +STUB("V7GQTEeUfhw", sceAmprCommandBufferWaitOnAddress) +STUB("V7R+CUqEAZw", _ZN7WebCore12SettingsBase18setFixedFontFamilyERKN3WTF10AtomStringE11UScriptCode) +STUB("V7YMgrTQERg", utext_isWritable) +STUB( + "V7YhUQ+eU3Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEED1Ev) +STUB("V7ZG7V+dd08", sceUserServiceGetGlsAccessTokenUstream) +STUB("V7Zs0n4FEKs", WKAuthenticationChallengeGetProtectionSpace) +STUB("V7aIsVIsIIA", + _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewd) +STUB( + "V7cQ4LeFM1w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEmmEv) +STUB( + "V7dvXyHKq64", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEE5resetEPS9_) +STUB( + "V7jkbn7Fq9s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB("V7mv23wwswQ", sceBgftServiceDownloadRegisterTask) +STUB("V7pB9s2vJY8", WKPageLoadHTMLStringWithUserData) +STUB("V7q2nQQj-Ow", d2i_PKCS12_bio) +STUB( + "V7skHFW2Gsw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEdeEv) +STUB( + "V7wftIS4d5o", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayerC2Ev) +STUB( + "V7z+5whQmS0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEC2EPS6_PNS2_10LibContextE) +STUB("V8+1ou-xTMI", _ZN12video_parser13cVideoPathMgv10GetEKBNameEPci) +STUB( + "V86XwpBrzzk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEEptEv) +STUB("V885Latyg4I", _ZN3JSC6JSLock4lockEv) +STUB( + "V89XesW82mc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "V8DPX84DHZ4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE21intrusive_ptr_add_refEPS9_) +STUB("V8Gp3017EiY", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate6toJsonERNS_4Json5ValueEb) +STUB( + "V8L71ZOmFaU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEdeEv) +STUB("V8OpV9dNHLg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEptEv) +STUB( + "V8Shfpd9MAM", + _ZN3sce2Np9CppWebApi14SessionManager2V140ResponsePlayerSessionMemberPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_33ResponsePlayerSessionMemberPlayerEEE) +STUB( + "V8XjfqDM1SM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("V8ZA3hHrAbw", sceNpTusGetMultiUserVariableAVUserAsync) +STUB("V8bSjLQH174", + _ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody15unsetUpdateModeEv) +STUB("V8bfkfmBVxo", JSGarbageCollect) +STUB( + "V8fi8R72O2k", + _ZN3JSC14JSGlobalObject18getOwnPropertySlotEPNS_8JSObjectEPS0_NS_12PropertyNameERNS_12PropertySlotE) +STUB("V8i2vIgKigI", _ZN7WebCore14SecurityPolicy18shouldHideReferrerERKN3WTF3URLERKNS1_6StringE) +STUB("V8nobDgo4X0", _ZN7WebCore26MessagePortChannelRegistryC2ERNS_26MessagePortChannelProviderE) +STUB("V8pA5bIDNO0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE5clearEv) +STUB("V8sTDUESRVE", WKURLResponseHTTPStatusCode) +STUB("V8zJYd4ehmw", cpp_demangle_read_type) +STUB( + "V8zLQVo5sxE", + _ZN7WebCore15GraphicsContext9drawImageERNS_5ImageERKNS_10FloatPointERKNS_20ImagePaintingOptionsE) +STUB("V9-Tsgb8r3E", _ZN7WebCore11WindowProxy12setDOMWindowEPNS_17AbstractDOMWindowE) +STUB("V94pLruduLg", _malloc_postfork) +STUB("V95p6e6FXys", _ZN7WebCore13MIMETypeCache23staticContainerTypeListEv) +STUB( + "V9Aa7HQdnww", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEC2EPS8_) +STUB( + "V9AqfNjFYUA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEEC1EPS8_PNS2_10LibContextE) +STUB( + "V9F5jkmZVHo", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB( + "V9LTPFbQX9o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("V9LadIvu5Ko", sceShellCoreUtilGetCrashReportInfoForBootStart) +STUB( + "V9Sd1FLPp24", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEE11release_refEv) +STUB("V9ThtCzV4Zc", _ZN3JSC10Identifier4fromERNS_2VMEj) +STUB("V9XykMPn9zg", _ZN10Deprecated12ScriptObjectC2EPN3JSC9ExecStateEPNS1_8JSObjectE) +STUB("V9b3HfN19vM", sceShellCoreUtilGetAppEnterButtonAssign) +STUB( + "V9dhS3U7Du8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEED1Ev) +STUB( + "V9fZNUDE2LE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEeqERKS7_) +STUB( + "V9gsJUeSNfA", + _ZN3WTF12base64DecodeERKNS_6VectorIcLm0ENS_15CrashOnOverflowELm16ENS_10FastMallocEEENS_33SignedOrUnsignedCharVectorAdapterEj) +STUB("V9ilTuioj3o", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_22FriendsRankInformationEEC1Ev) +STUB( + "V9nCQUxVVDg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEppEv) +STUB( + "V9oW1Yu3pg8", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectator12getsessionIdEv) +STUB( + "V9qPdMFiPQQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("V9rB2CzLQbE", _ZN3JSC41DeferredStructureTransitionWatchpointFireD1Ev) +STUB( + "V9rJ9DUYhxI", + _ZN3sce2Np9CppWebApi13InGameCatalog2V532ContentInteractiveElementFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_25ContentInteractiveElementEEE) +STUB( + "V9tcgup4L2Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE21intrusive_ptr_add_refEPS9_) +STUB("V9up2Gy6Z28", umutablecptrie_set) +STUB( + "V9yO0FsYFno", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot7setsortENS5_4SortE) +STUB( + "V9ytFlEPzsE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEdeEv) +STUB("VA+7ajPhop8", _ZN7WebCore16ScriptController11createWorldEv) +STUB( + "VA4wWDVI8Rg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEEaSERKSA_) +STUB("VADc3MNQ3cM", signal) +STUB("VADzOXy1fBM", mono_pagesize) +STUB("VALOmUGH78g", _ZN7WebCore16comparePositionsERKNS_8PositionES2_) +STUB("VANh7N2knZg", _ZN7WebCore12KeyedDecoder7decoderEPKhm) +STUB("VANhIWcqYak", sceAppContentAddcontMount) +STUB( + "VAPRywt-LB0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEppEi) +STUB( + "VARxATXkh2A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("VASPkNGtNOk", _ZN7WebCore11ContentTypeC1EON3WTF6StringE) +STUB("VASyM6CAIZA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEcvbEv) +STUB( + "VAXodyI8L5Y", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEptEv) +STUB( + "VAbFNmSXXkk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSC_) +STUB( + "VAcjQnO8+Q8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEEaSERSA_) +STUB( + "VAi47jXFSSg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEC2EPKS8_) +STUB("VAlir52gpQI", sceVideoOutAddBufferHdrPrivilege) +STUB("VAp1Vvr430g", uset_getItemCount_67) +STUB("VAu-pJqyjnQ", _ZN7WebCore8SVGNames17attributeNameAttrE) +STUB("VAy2wlopYGE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEE11release_refEv) +STUB("VAyyCip8dVk", sceAudioInVmicSetMute) +STUB("VAzfxqDwbQ0", sceAudioInSetMode) +STUB("VAzreXRP06E", unorm2_getNFKCCasefoldInstance_67) +STUB("VAzswvTOCzI", unlink) +STUB("VB-BtuIW8Xc", sceKernelAprResolveFilepathsWithPrefixToIdsForEach) +STUB( + "VB0wOm7TJ5s", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("VB1MYFFuaL4", _ZN7WebCore6Path2D6createERKN3WTF6StringE) +STUB("VB4SH73Kf5E", scePlayReadyNewDecryptContext) +STUB("VB75ZVdylrU", _ZN7WebCore21DiagnosticLoggingKeys34resourceLoadStatisticsTelemetryKeyEv) +STUB("VB7RdVVGl7A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEC1Ev) +STUB( + "VB7bBqmdr08", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEC1EPS6_PNS2_10LibContextE) +STUB("VB9tc0vbAVA", + _ZN15AbstractStorage15FacebookContent6RenameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("VBA3H7mYG70", cairo_mesh_pattern_end_patch) +STUB( + "VBK3NKVdWiM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "VBNIeRIzQbg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE21intrusive_ptr_add_refEPS9_) +STUB("VBNYE1MPf4I", glIsTransformFeedback) +STUB( + "VBQ0WmTScTc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEE11release_refEv) +STUB("VBQ1AC5ho9g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEC1Ev) +STUB( + "VBTrSjIx7PM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEeqERKS9_) +STUB("VBYw7bb1gEk", sceCustomMusicCoreGetBgmAuthorityStatus) +STUB("VBZtcFn7+aY", _sceNpIpcMallocImpl) +STUB("VBi3vzGVTyI", _ZN7WebCore15ActiveDOMObjectD2Ev) +STUB("VBj2uvLGI9g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEEC2EPS5_PNS2_10LibContextE) +STUB("VBpaH-iDg48", WKNavigationDataCopyNavigationDestinationURL) +STUB( + "VBrX7Clwy90", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("VC0W4xnS3Jk", udtitvfmt_open_67) +STUB("VC6kNhdcrYk", _Z16WTFCrashWithInfoiPKcS0_immm) +STUB("VC8PCwSx3g0", CheckSystemEvents) +STUB("VC8mAF2GtbE", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Publisher7getNameEv) +STUB("VC9Kk+u2Xzc", _ZN3sce3pss4core9threading4CondD2Ev) +STUB("VCGPeZaDhfM", _ZN3sce7Toolkit2NP2V24Core18CustomResponseDataD2Ev) +STUB("VCGQTBzMqGU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEC1ERS7_) +STUB("VCGqQRWZISg", fuse_session_next_chan) +STUB("VCIAd+nrADw", deflateBound) +STUB( + "VCJgJD1PVsA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE5beginEv) +STUB( + "VCK7wX1Nw-s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEEC1ERKSA_) +STUB( + "VCLc0Ov9JNI", + _ZN7WebCore26ActiveDOMCallbackMicrotaskC1ERNS_14MicrotaskQueueERNS_22ScriptExecutionContextEON3WTF8FunctionIFvvEEE) +STUB("VCOpGe0nihg", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEEC1Ev) +STUB( + "VCP9MNAjpxg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "VCRRs6Lox3g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "VCTNOMlPXEM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEEC1ERKSA_) +STUB( + "VCYzzd9wKQQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEaSERS7_) +STUB( + "VCfcpWUN8M4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEE7get_refEv) +STUB("VCgcocFdS5w", mono_image_init_name_cache) +STUB("VClCrMDyydE", _ZNSt7collateIcEC2EPKcm) +STUB( + "VCqicVHWufs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEC2Ev) +STUB( + "VCvM4g4L0es", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "VCvxULirLZg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("VCwNSNy3NR0", sceLncUtilIsSpeculativeLaunch) +STUB( + "VCyWVrk5Mb0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEE5resetEPS6_) +STUB( + "VCzLcpc9JPw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEmmEv) +STUB("VD68PSPegTI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TSS7TssDataEE3setEv) +STUB("VD7TJRp5dt8", + _ZN9Inspector21InspectorConsoleAgent5countEPN3JSC14JSGlobalObjectERKN3WTF6StringE) +STUB( + "VD7fxSE99c4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEmmEi) +STUB("VDBGAec4akw", __asan_report_error) +STUB("VDCjbx5VPwI", uhash_compareChars_67) +STUB( + "VDEh6DG5rJU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEC2Ev) +STUB("VDHk4HzzbhQ", _ZNK7WebCore26Matrix3DTransformOperation19isRepresentableIn2DEv) +STUB("VDQuCfsvi9s", mono_aot_Sce_PlayStation_HighLevel_UI2method_addresses) +STUB("VDUrN8ZSqBk", + _ZNK3sce2Np9CppWebApi7Matches2V122RequestMatchStatistics21playerStatisticsIsSetEv) +STUB("VDVES0T5iHI", sceDeci4hDrfpWaitRes) +STUB( + "VDVvPcDvmtA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "VDan9Rs1buo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEC1Ev) +STUB("VDaygNXQnho", sceDebugGetProcessResourceStatData) +STUB("VDci3kAJZ08", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEEC1EPS6_) +STUB("VDf83PLBqk0", WKPreferencesGetJavaEnabledForLocalFiles) +STUB("VDp9PU43d60", _ZN12video_parser16cVideoContentMp48finalizeEv) +STUB("VDrKsDIR2ow", _ZN3JSC7Symbols16ArrayPrivateNameE) +STUB( + "VDv4UrXnxF4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE3endEv) +STUB( + "VE0t9-z8Vyo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEEC2ERKSA_) +STUB("VE5H1R2ltas", _ZNK3sce2Np9CppWebApi11UserProfile2V15Error6toJsonERNS_4Json5ValueEb) +STUB("VE93qPBHiso", _ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamRankResultD2Ev) +STUB( + "VEBbZlrjwY4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEED1Ev) +STUB("VECfwlY2DUM", mono_aot_Sce_Vsh_BackupRestoreUtilunwind_info) +STUB( + "VECrpcxwgj8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("VEDMaQmJZng", sceAmprCommandBufferGetType) +STUB("VEGu4dixjUg", sceAgcDcbJumpGetSize) +STUB("VEHP-JHIfR4", _ZN7WebCore11FrameLoader26reloadWithOverrideEncodingERKN3WTF6StringE) +STUB("VET8UnnaQKo", _ZNSt13_Num_int_base8is_exactE) +STUB("VETRexG+5Q0", usearch_setText_67) +STUB("VEUKQumI5B8", sceUserServiceSetGlsAccessTokenNiconicoLive) +STUB("VEVhZ9qd4ZY", sceAudio3dPortPush) +STUB("VEVxAte4uHU", _ZN3sce2Np9CppWebApi6Common6VectorIfE7reserveEi) +STUB("VEaaAp9bSO4", + _ZNK3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator12natTypeIsSetEv) +STUB( + "VEcHKl63C4I", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEE3getEv) +STUB("VEiOkNOlgew", scePssKeyboardGetUTF8Chars) +STUB( + "VEsntLRvHQY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEptEv) +STUB("VEt5sT+gYB8", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_19GetGameDataResponseEEC2Ev) +STUB( + "VF2-8-+gl+E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEED1Ev) +STUB( + "VF2AmkYy2ho", + _ZN3JSC19HeapSnapshotBuilder23analyzePropertyNameEdgeEPNS_6JSCellES2_PN3WTF17UniquedStringImplE) +STUB("VF5HDDm3ZMk", _ZN9Inspector35DOMDebuggerBackendDispatcherHandlerD0Ev) +STUB( + "VF5biNDP4Fw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEC1EPS6_PNS2_10LibContextE) +STUB( + "VFH2ZgnFD+o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEC2EPS8_) +STUB( + "VFIb1XVcheg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEC2EPNS2_10LibContextE) +STUB("VFM4TzMTUPI", _ZN3sce7Toolkit2NP2V28Commerce7Request11GetProductsD1Ev) +STUB( + "VFPhg6tlzd0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEmmEi) +STUB( + "VFbgrz0ynL4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEEaSERS9_) +STUB("VFfDN9+bjC4", scePerfTraceAmmAddBufferNotifyEvent) +STUB( + "VFhXAsVgNlE", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUserC2Ev) +STUB( + "VFhm5SL5SI8", + _ZN7WebCore17setCookiesFromDOMERKNS_21NetworkStorageSessionERKNS_3URLERKNS_12SameSiteInfoES5_St8optionalImESA_RKN3WTF6StringE) +STUB("VFmr-b1b1aI", _ZN3sce7Toolkit2NP2V26Friend7Request26DisplayFriendRequestDialogD2Ev) +STUB("VFpWjpp5dmA", u_strFromUTF8Lenient_67) +STUB( + "VFqIGErEfFk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEC1EPS6_PNS2_10LibContextE) +STUB("VFqinamj94I", mono_shared_ptr_array_get_allocator) +STUB("VFr1+v+P8+c", _ZNK3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead13ticketIdIsSetEv) +STUB( + "VFuG8dhlnUk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEppEi) +STUB("VFvo8Ldr2iw", _ZN7WebCore16enclosingIntRectERKNS_9FloatRectE) +STUB("VFvyuEBlp+A", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session9SessionIdEE3getEv) +STUB("VG3Rtl3ocb8", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend16FriendsOfFriendsEE3getEv) +STUB("VG7lK9I4bJw", sceAppInstUtilRegisterDownload) +STUB("VGIGa3MoPyM", _ZNSt9basic_iosIcSt11char_traitsIcEE5rdbufEPSt15basic_streambufIcS1_E) +STUB("VGKLPKlIqIU", _ZN3sce7Toolkit2NP2V210Tournament6EventsaSERKS4_) +STUB( + "VGKPkYm7q-M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("VGKwVCuBK3A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEC2Ev) +STUB("VGM-tqObL7A", _ZN3sce7Toolkit2NP2V28Presence7Request11SetPresenceD2Ev) +STUB( + "VGQb6ore6XI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEixEm) +STUB( + "VGWsri8JD9o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEC2EPKS8_) +STUB("VGX61DLo18s", _ZN7WebCore11DisplayList8DrawPathD1Ev) +STUB("VGcTl36kCDs", _ZN7Nicosia16SceneIntegration6ClientC2Ev) +STUB("VGeMQyJfTuU", delegate_virtual_invoke_16) +STUB("VGhcd0QwhhY", _Divide) +STUB( + "VGiaSqCcVvY", + _ZN9Inspector25BrowserFrontendDispatcher17extensionsEnabledEN3WTF6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Browser9ExtensionEEENS1_13DumbPtrTraitsIS8_EEEE) +STUB("VGkEj4d6-Kg", sceAmprMeasureCommandSizeSetMarker) +STUB("VGo1QvqCjtI", _ZN3sce7Toolkit2NP2V210Tournament7BracketaSERKS4_) +STUB("VGoT9JozCrc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEcvbEv) +STUB("VGpnGK+DopE", _ZN3sce2Np9CppWebApi6Common8IteratorINS2_17ParameterBaseImpl6KeySetEEmmEv) +STUB("VGqUzjttelw", g_get_tmp_dir) +STUB("VGsLj5rElVo", _ZNK7WebCore9InlineBox14caretMinOffsetEv) +STUB("VGxzgRUu1vk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119SubtaskAvailabilityEEdeEv) +STUB("VH5El5MNmc8", _ZN3sce2Np9CppWebApi6Common6VectorIdEC1EPNS2_10LibContextE) +STUB("VH9dsKpQTmk", _ZN3sce4Json5ValueC2ERKNS0_5ArrayE) +STUB( + "VHAFmqBeZmg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE8capacityEv) +STUB("VHBH+p1IqKU", _ZN7WebCore21NetworkStorageSession12deleteCookieERKNS_6CookieE) +STUB("VHBnRBxBg5E", _ZNSt8numpunctIwED0Ev) +STUB("VHCS3rCd0PM", sceKernelAddReadEvent) +STUB("VHDy7H4aYSg", mono_code_manager_size) +STUB("VHGBWkTe0Jg", sceSysUtilSendAddressingSystemNotificationWithUserName) +STUB( + "VHLSt60bfn0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEE5resetEPS8_) +STUB( + "VHOR2UeeIWw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEC1Ev) +STUB("VHPdajEPdLY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEixEm) +STUB( + "VHgJJXdbXT8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEEC2Ev) +STUB( + "VHiddOcTf-U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEEptEv) +STUB( + "VHsSNIvLwIU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEC1EPNS2_10LibContextE) +STUB("VHxoAYeD2q4", WKPageSetMockCameraOrientation) +STUB( + "VHzmbh-q4w4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEmmEi) +STUB( + "VI0E8b9xShA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE5clearEv) +STUB("VI3gttku1zA", qR8) +STUB("VI6J2nGI3uk", _ZN3sce7Toolkit2NP2V28Commerce8Products8deepCopyERKS4_) +STUB("VI8AHrfLdqY", _ZNK3sce2np10EventQueue6IsInitEv) +STUB("VI8kZGN3A2A", WKPreferencesSetApplePayCapabilityDisclosureAllowed) +STUB("VICcBVaQSiE", u_isgraphPOSIX_67) +STUB("VIJcKtk4O+0", _ZN3sce2Np9CppWebApi11Matchmaking2V18LocationC2EPNS1_6Common10LibContextE) +STUB( + "VIMt+nswLzc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEE11get_deleterEv) +STUB("VISJGrCmQw8", _ZN7WebCore21DiagnosticLoggingKeys21simulatedPageCrashKeyEv) +STUB("VIVM+dMLyGE", __cxx_global_var_init .10) +STUB("VIXJDyUZt1I", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyleC1EPNS1_6Common10LibContextE) +STUB( + "VIeDgKdcSb8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("VIhs00kBVUc", uhash_close_67) +STUB( + "VIk8LuJJOU0", + _ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime15PropertyPreview4TypeEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE) +STUB("VItTwN8DmS8", sceVrTrackerNotifyEndOfCpuProcess) +STUB("VIyx10sLh3A", _ZN13MsvMetaEditor13updateMoovBoxEi) +STUB("VJ+j5jNdvfM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEED1Ev) +STUB( + "VJ2mnvJJswk", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead30unsetExclusiveLeaderPrivilegesEv) +STUB( + "VJ4IVPxf7Ko", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEppEi) +STUB( + "VJ6F0D55chE", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("VJ6oMq-Di2U", sceUsbdOpen) +STUB( + "VJ85ICCJgww", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEcvbEv) +STUB("VJ9ZkgzX2yw", Java_java_lang_Class_isInstance) +STUB("VJB8YwoCPSA", _ZN3sce7Toolkit2NP2V24Core7Request16ThreadPropertiesD1Ev) +STUB( + "VJBfBhk2DYE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("VJFsO+gjT+c", _ZN7WebCore11MediaPlayer20cachedResourceLoaderEv) +STUB( + "VJH6I637I+U", + _ZN9Inspector23WorkerBackendDispatcher11initializedElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "VJHjavWxw6Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("VJJBmnvGCeY", rgctx_fetch_trampoline_rgctx_0_p) +STUB( + "VJJOMpeBHrw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEED2Ev) +STUB("VJL9W+nOv1U", _ZTSPy) +STUB("VJLeeum0i2c", _ZN3sce7Toolkit2NP2V29Challenge10ChallengesD1Ev) +STUB("VJNjFtqiF5w", sceGnmSetHsShader) +STUB( + "VJPXKThEfV8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEC2EPNS2_10LibContextE) +STUB( + "VJQm2SgfHzc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE8pushBackERKS8_) +STUB( + "VJSnTc3sCJU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEC1Ev) +STUB( + "VJXRbhMStkA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEC1EPKS8_) +STUB( + "VJZTFe794zM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEE11release_refEv) +STUB( + "VJe76PIeNJE", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt6vectorI16SceNpTusVariableNS2_IS4_EEEE9constructEPS6_RKS6_) +STUB( + "VJgQcGUc-B8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEC2EPNS2_10LibContextE) +STUB("VJllTLLEkDg", JVM_GetMethodIxSignatureUTF) +STUB("VJnNFXSl2m0", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getBoolean3Ev) +STUB("VJr3CZDDqrY", _ZNK3sce2np9JsonValue9GetObjectEv) +STUB("VJrJhU5mNtU", _ZNSt10_Ref_countIN15AbstractStorage15FacebookContentEE8_DestroyEv) +STUB("VJrjzip5g3Y", _ZTVN9Inspector29AuditBackendDispatcherHandlerE) +STUB("VJskAYzgnS8", _ZN3sce2Np9CppWebApi6Common8IteratorINS2_17ParameterBaseImpl6KeySetEEC2EPS5_) +STUB("VJuJyZgaHbo", _ZN7WebCore8PositionC2EPNS_4NodeEiNS0_10AnchorTypeE) +STUB( + "VJz64FrlA1c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEE6assignEPSA_PFvSC_EPNS2_10LibContextE) +STUB("VK+BaGSZH+c", _ZNK7WebCore9FrameView29maxStableLayoutViewportOriginEv) +STUB( + "VK3rxu0Vp8I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEE7get_refEv) +STUB( + "VK9IblBX6O0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEC2Ev) +STUB("VK9NVpaWIeM", aval) +STUB("VKC6PT6jWc4", _ZN3JSC2VM26nativeStdFunctionSpaceSlowEv) +STUB( + "VKCEKeDl77E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEE11get_deleterEv) +STUB( + "VKCw+sKJhag", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEptEv) +STUB("VKDK5JI5otg", u_versionToString_67) +STUB( + "VKEtFC3W-TI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEED2Ev) +STUB("VKGrvdAjGQI", translateErrorCode) +STUB("VKJiHsvURZA", _ZN7WebCore15AsyncFileStream11openForReadERKN3WTF6StringExx) +STUB("VKK37znkCcs", _ZN7WebCore9HTMLNames26onwebkitmouseforcedownAttrE) +STUB( + "VKLYvpUMdqw", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB( + "VKLeTjh5YMw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("VKM8BmTTGd0", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEEcvbEv) +STUB("VKOM+R2KVYk", _ZN7Nicosia6BufferD1Ev) +STUB( + "VKOqNtKhKBI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEixEm) +STUB("VKQ8pi4466g", sceFiosArchiveMountWithOrder) +STUB( + "VKU4S6KyWmo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("VKUbEvFj-Uk", rgctx_fetch_trampoline_mrgctx_26) +STUB("VKZKhUg0vyU", sceMbusUserLogout) +STUB( + "VKaRucCPRyU", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("VKcCVjFAh9Q", JVM_TraceInstructions) +STUB( + "VKdXFE7ualw", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERPv) +STUB("VKfmXO7iB74", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEC2Ev) +STUB("VKkzGCNQtE4", _ZN3sce7Toolkit2NP2V24Core24NpToolkitMemoryPoolStatsC1Ev) +STUB( + "VKlPBv7jN6A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEEdeEv) +STUB("VKxq9vTrR2w", WKPreferencesGetLogsPageMessagesToSystemConsoleEnabled) +STUB( + "VKy4NqX3tFQ", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToSetMultiVariablesByUser12getaccountIdEv) +STUB("VL-y0DwK+LE", rgctx_fetch_trampoline_rgctx_69) +STUB("VL6s6xtBiGQ", _ZN7WebCore9FrameView17willEndLiveResizeEv) +STUB("VL88wo7PUb0", _ZN7WebCore14FrameSelectionC1EPNS_5FrameE) +STUB( + "VLArumrPZFU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEC2EPNS2_10LibContextE) +STUB("VLB2F2owln0", sceLoginMgrServerConvertToUserId) +STUB("VLD5cTfiN0o", _ZNK7WebCore18TextureMapperLayer10hasFiltersEv) +STUB("VLDUPKmw5L8", sceRtcSetCurrentDebugNetworkTick) +STUB("VLDXB+ZuNNc", uset_spanBack_67) +STUB( + "VLFwjua2N34", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEC2Ev) +STUB( + "VLPn9tLjUQo", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V129MatchCompletionRateProperties18getConfidenceScoreEv) +STUB("VLcfvEQBrj4", sceVencCoreSetInputFrameByPid) +STUB("VLdVf0HVlO0", _ZN3sce7Toolkit2NP2V29Messaging7Request17LocalizedMetadataD2Ev) +STUB( + "VLdWbosdsyM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEppEi) +STUB("VLesLWTy9xI", umsg_autoQuoteApostrophe_67) +STUB("VLexNaeTp84", _ZTVN9Inspector30TargetBackendDispatcherHandlerE) +STUB("VLfkshqDYcI", mono_aot_Sce_Vsh_PatchCheckerClientWrapperjit_code_start) +STUB("VLgDXl6KoyA", _ZN12video_parser13cVideoMetaMP411_initializeEv) +STUB( + "VLkuixnVdho", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEEC1ERKSA_) +STUB( + "VLlzWPMspOA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEED1Ev) +STUB("VLnKXl6P18o", mono_aot_Sce_Vsh_Messagesunwind_info) +STUB( + "VLoxoJeUryo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEmmEi) +STUB("VLvKI1JQntk", SSL_set_fd) +STUB("VM+CXTW4F-s", _ZN3sce2np5Mutex4LockEv) +STUB("VM3ElRGJqT0", sceVnaWaitReady) +STUB( + "VM84CVXjQwM", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEEiRNS2_10LibContextEPT_m) +STUB( + "VMBhTho7tao", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE5beginEv) +STUB("VMEZoRPLZU0", _ZN12video_parser7cVpUtil14vp_ff4_strncpyEPvPcmPKcm) +STUB("VMJRsVYg4sg", _ZThn120_NK7WebCore16HTMLMediaElement12isFullscreenEv) +STUB("VMM7wQBZoBk", sceSocialScreenInitializeSeparateModeParameter) +STUB("VMOyIG83Jtg", sceOpusCeltDecInitialize) +STUB("VMU-PzOLWqk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEEdeEv) +STUB( + "VMUfnpd74nk", + _ZN3sce7Toolkit2NP2V29Messaging17sendInGameMessageERKNS3_7Request17SendInGameMessageEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("VMW3ENMqIHc", ucol_looksLikeCollationBinary_67) +STUB( + "VMcP8FKDTuk", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129MatchCompletionRateProperties15setDisconnectedERKNS1_6Common12IntrusivePtrINS3_38MatchCompletionRateDisconnectedMetricsEEE) +STUB("VMfdd6k7stI", _ZThn64_NK7WebCore9FrameView12footerHeightEv) +STUB( + "VMhoSK6ucfc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEEdeEv) +STUB("VMjIo2Z-aW0", sceNpRtcConvertToPosixTime) +STUB("VMrJHWuCy3Q", _ZN7WebCore16ISOSchemeTypeBoxC2Ev) +STUB( + "VMt29Q2YlSA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEixEm) +STUB("VMv85Hi8Jfc", JVM_RaiseSignal) +STUB( + "VN+Vjou8QrE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "VN-Kq-MIE08", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEEC2ERKSA_) +STUB("VN-p-GssHww", _ZN3sce7Toolkit2NP15AppSTLAllocatorIiEC2ERKS3_) +STUB( + "VN0nMVqluzo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEaSERKS7_) +STUB("VN1M7jo-ArE", _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody12unsetPlayersEv) +STUB("VN2NCGEWVuk", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V18SortModeEEmmEv) +STUB("VN4sywtV7RE", _ZN7WebCore6ISOBoxnaEm) +STUB("VN5TX+cUFf4", WKBundleDOMWindowExtensionGetFrame) +STUB("VN8pklcPswo", _ZN7WebCore8SVGNames9markerTagE) +STUB( + "VNAZIR9VAC8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "VNDfZz6okKc", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("VNHXByo1yuY", _ZTSSt11logic_error) +STUB("VNKdE2Dgp0Y", _ZN3sce2np6Thread5StartEv) +STUB("VNKtrqYAKFo", mono_aot_Sce_PlayStation_Imeunwind_info) +STUB( + "VNOKCCoFfB8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEmmEv) +STUB( + "VNPrzyruvHk", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsC2EPNS1_6Common10LibContextE) +STUB( + "VNQJ+5BWkJM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEEC2ERKSA_) +STUB("VNSppWn6oFo", ucol_primaryOrder_67) +STUB("VNaqectsZNs", _ZNSt13basic_filebufIcSt11char_traitsIcEE4syncEv) +STUB( + "VNcuLftLBT8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEdeEv) +STUB( + "VNpQEyV26pw", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("VNxQDribm3k", Java_com_sony_bdjstack_org_dvb_event_Init_registerKeyEventCallback) +STUB("VO3ohg4M0Dc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEC1Ev) +STUB( + "VO9oSNn7uJU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE5emptyEv) +STUB( + "VOA4ks08heM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE3endEv) +STUB("VOAn4bVuN6I", il2cpp_field_get_offset) +STUB("VOBg+iNwB-4", strtoll) +STUB("VOHLzdv2qls", _ZN3WTF8JSONImpl9ArrayBase3endEv) +STUB( + "VOI-2uhETB0", + _ZN9Inspector28InspectorScriptProfilerAgent29willDestroyFrontendAndBackendENS_16DisconnectReasonE) +STUB("VOKOgR7L-2Y", lrint) +STUB("VOMSpd9+vxU", sceAgcDriverSetResourceUserData) +STUB("VONoNYdWFEM", mono_utf8_from_external) +STUB("VOOKKun85lw", kldfind) +STUB("VOOdPJPzXow", _ZN3sce2Np9CppWebApi7Matches2V121ResponseTeamStatistic10unsetStatsEv) +STUB("VOSeH8BIUkE", WKPreferencesGetDeveloperExtrasEnabled) +STUB( + "VOUsL11hUvI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE4initEv) +STUB("VOXyk0mNna4", udat_format_59) +STUB("VOclFUxMNQ0", sceUserServiceSetParentalContentControl) +STUB("VOd07RpvZVg", _ZN7WebCore9HTMLNames17aria_colindexAttrE) +STUB("VOfYwMMH8B0", ures_getUTF8String_67) +STUB("VOffDjveSnE", _ZN7WebCore26HTMLTextFormControlElement17setSelectionStartEi) +STUB( + "VOfxYECIBRI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEppEi) +STUB("VOqOyDAi098", sceNpGriefReportDeleteClient) +STUB("VOx8NGmHXTs", sceKernelGetCpumode) +STUB("VOzeHL04Ws0", mono_profiler_install_runtime_initialized) +STUB("VP9vMj-bZ6U", _ZN3sce7Toolkit2NP2V211SocialMedia7Request12ActionLinkFbC1Ev) +STUB( + "VP9z80OCf7c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEEC2ERS9_) +STUB( + "VPKQIlZX9IA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEmmEv) +STUB("VPS+8B9h3Jw", _ZN7WebCore8SVGNames13maskUnitsAttrE) +STUB( + "VPSllOtn7+Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE7reserveEi) +STUB("VPVYBR6zPag", WTFReportAssertionFailureWithMessage) +STUB( + "VPZ7N9P4O58", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEC1Ev) +STUB("VPbJwTCgME0", srand) +STUB("VPcTGA-LwSo", + _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basece) +STUB("VPfybmOmpzs", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEEptEv) +STUB("VPgPm-9j054", glFlush) +STUB( + "VPlo5l1bSjk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEneERKS9_) +STUB( + "VPo33sOgkMw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEeqERKS9_) +STUB( + "VPoPXV5riog", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEeqERKS9_) +STUB("VPoyhwkr0To", _ZN3sce7Toolkit2NP2V210Tournament14RegisteredTeamC2ERKS4_) +STUB( + "VPvEVK1TC+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("VPvnC1oedsk", _ZN3sce7Toolkit2NP2V29Messaging16GameDataMessages8deepCopyERKS4_) +STUB("VPwB1qXbdYU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEE3getEv) +STUB( + "VPwtVaI2jbg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEEaSERKSA_) +STUB("VQ+5kAqsE2Q", sceCameraSetConfig) +STUB( + "VQ+XGCLH4PY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEC2Ev) +STUB("VQ+YCG+lc6o", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V114ResultsVersionEEC1Ev) +STUB( + "VQ20X-dyK5c", + _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities8getlimitEv) +STUB( + "VQ6g5RZWZqc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEE5resetEPS9_) +STUB("VQ7n0xu+p2Y", _ZN3sce2Np9CppWebApi6Common8IteratorIiEmmEi) +STUB("VQ8e5t8vtYg", sceFiosFileDelete) +STUB( + "VQKfg6VE5sE", + _ZN7WebCore21SerializedScriptValueC1EON3WTF6VectorIhLm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEESt10unique_ptrINS2_IN3JSC19ArrayBufferContentsELm0ES3_Lm16ES4_EESt14default_deleteISA_EE) +STUB("VQRWOxYGays", sceShellCoreUtilNotificationRequestedForIDU) +STUB("VQV1bLZ7Zbc", _ZN7WebCore6Editor18confirmCompositionERKN3WTF6StringEj) +STUB( + "VQVtxZnpH7A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "VQXPeqGIj+4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEC1Ev) +STUB("VQXe0oQZ2f0", _ZNK3sce2Np9CppWebApi6Common8IteratorIlEeqERKS4_) +STUB( + "VQZUcy22syg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEixEm) +STUB("VQaxSGkf7p0", _ZN3sce7Toolkit2NP2V27Ranking7Request15GetFriendsRanks8MIN_PCIDE) +STUB("VQazhIc2Byo", _ZN3sce7Toolkit2NP15AppSTLAllocatorIiEC1ERKS3_) +STUB( + "VQbTflr1Tac", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("VQdgp9DOFXs", + _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets12getaccountIdEv) +STUB("VQi978CDW4E", monoeg_g_printerr) +STUB("VQl16Q+qXeY", sceNetCtlApRpGetInfo) +STUB("VQl9IElnuxc", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE7reserveEi) +STUB("VQmMXLJJlDI", il2cpp_gc_get_heap_size) +STUB("VQuPtxb4AFM", _ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead13unsetTeamNameEv) +STUB( + "VQwkq5MzCio", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEeqERKS7_) +STUB( + "VR0xcl9Avqg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEEC1ERKSA_) +STUB( + "VR1BFCdyMQ4", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "VR7Ojk8pwq0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE3endEv) +STUB("VR8wRiEUO7M", _ZN3JSC7Symbols16isNaNPrivateNameE) +STUB("VR9vkpt+2Iw", _ZN7WebCore9JSDOMRect14finishCreationERN3JSC2VME) +STUB( + "VR9y1PSUcAw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEEC2ERKSA_) +STUB( + "VRBb7oHj0yQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEmmEv) +STUB( + "VRC5+UdUWLY", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getString10Ev) +STUB("VRFd3diReec", sceFontTextSourceRewind) +STUB( + "VRFph6TUBu0", + _ZN9Inspector24ConsoleBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) +STUB("VRTWT-QyMvA", __ubsan_handle_load_invalid_value_abort) +STUB( + "VRUsWA5abHw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEC1EPNS2_10LibContextE) +STUB("VRWvCz180Rk", _ZN7WebCore8Document15createAttributeERKN3WTF6StringE) +STUB("VRX+Ul1oSgE", _Atomic_store_1) +STUB("VRXZ3vcKuuk", _ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody11getObjectIdEv) +STUB( + "VRc1RDxvN0M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEE5resetEPS9_) +STUB("VRcFONlisaQ", _ZN3JSC7Symbols29newPromiseReactionPrivateNameE) +STUB("VRiw2H0fEj4", _ZN3sce7Toolkit2NP2V27Session7Request14SendInvitation21MAX_SIZE_USER_MESSAGEE) +STUB("VRjYxJUaGag", _ZN7WebCore15GraphicsContext12setFillColorERKNS_5ColorE) +STUB( + "VRjczjp9+d4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEE5resetEPS9_) +STUB( + "VRuf47oE9Q8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("VRw1k+qjkyI", il2cpp_class_is_generic) +STUB("VS19Pt55rWk", _ZN3JSC9Structure25attributeChangeTransitionERNS_2VMEPS0_NS_12PropertyNameEj) +STUB("VS45LnNqyCo", sceKernelGetCpuUsageProc) +STUB("VS6SZC9OpwA", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119ChildActivityStatusEEC1Ev) +STUB("VSK+iJBUfK8", _ZN3NTF15DNSPrefetchImplD2Ev) +STUB("VSQR9qYpaCM", sceUserServiceGetPsnPasswordForDebug) +STUB("VSVkGnZxXZU", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi24ParameterToReportResultsC2Ev) +STUB( + "VSg-ttBX8xk", + _ZN9Inspector31RuntimeBackendDispatcherHandler20AwaitPromiseCallback11sendSuccessEON3WTF6RefPtrINS_8Protocol7Runtime12RemoteObjectENS2_13DumbPtrTraitsIS6_EEEERNS2_8OptionalIbEERNSB_IiEE) +STUB("VSk+sij2mwg", _ZNSt10filesystem20_Set_last_write_timeEPKcl) +STUB("VSnEgdb7HZw", mono_aot_Sce_Vsh_Db_Sharedjit_code_start) +STUB("VSpD4krAZGg", _ZN3sce2np13JsonArrayImplD2Ev) +STUB( + "VSv1lvuk7oE", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setInteger8ERKi) +STUB("VSw18Aqzl0U", sceFontStyleFrameGetResolutionDpi) +STUB( + "VT6MyHEcjq8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEaSERKS9_) +STUB( + "VTBTfM8gRR4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEC2EPNS2_10LibContextE) +STUB("VTGe0J2-TLs", g_hash_table_destroy) +STUB("VTGtCdRCNLI", _ZN3WTF10StringImpl5toIntEPb) +STUB("VTKezfYu-v4", _ZN3sce3Job10JobManager24setPersistentThreadCountEj) +STUB("VTLnwPu6bU8", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_20ChallengeRecvDetailsEEC2Ev) +STUB("VTMSXJ7D0dA", mono_aot_Mono_Securityjit_got) +STUB("VTOy5uQvK7E", _ZNK3WTF8JSONImpl10ObjectBase5beginEv) +STUB( + "VTP-lgGl8VQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE8pushBackERKS8_) +STUB( + "VTRvD3XKw+w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("VTZ+4rVcoJM", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEEptEv) +STUB( + "VTlC-LgRLDQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEeqERKS9_) +STUB( + "VTqsCT2TrPQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE6resizeEj) +STUB( + "VTuC1cqA9oU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEE11get_deleterEv) +STUB("VTw9dgPJup4", _ZN3JSC6JSLockD1Ev) +STUB( + "VTx-kE3gE3M", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEixEm) +STUB( + "VTyGWD5K3lI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "VU4kpdBtsfI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("VU7sCzkG5po", sceVideoCoreAsyncAddStream) +STUB("VU9AJf1AaH4", sceDebugIpmiGetServerDispatchInfo) +STUB( + "VUGnguknIFk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEEdeEv) +STUB("VUHUasztbUY", sceNpGlobalHeapGetAllocatorEx) +STUB("VUHgtZo50Xo", _ZN7WebCore20ResourceHandleClientC2Ev) +STUB( + "VUJP4L6jeeA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEC2EPS8_) +STUB("VUK2MHOGkR8", _Strxfrmx.initial) +STUB( + "VUKTRbe7XG4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEppEi) +STUB("VULFTpwEXW0", WKContextSetInjectedBundleClient) +STUB("VUMO2kAbo7w", sceAudiodecDecodeWithPriority) +STUB("VUOgrSpFbh8", _ZN3sce2Np9CppWebApi14SessionManager2V16FriendD1Ev) +STUB( + "VUQFPZrikBA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("VUT1ZSrHT0I", pthread_attr_getdetachstate) +STUB( + "VUTJgiKf8kk", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEiRNS2_10LibContextEPT_m) +STUB("VUUXtGDlUyU", _ZN7WebCore9FloatRect6extendERKNS_10FloatPointE) +STUB("VUW2V9cUTP4", sceSharePlayNotifyForceCloseForCdlg) +STUB( + "VUnflGyMrTY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "VUo5W7QJXpE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEEcvbEv) +STUB( + "VUp4wxc-a8k", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("VUt75MJDQeE", _ZN3WTF10StringImpl19createUninitializedEjRPh) +STUB("VUtibKJCt1o", getopt) +STUB( + "VUvKCO2F5v8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEEdeEv) +STUB( + "VUzcrAe3zkk", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("VUzjXknPPBs", mbstowcs) +STUB( + "VV-EjyxJkWM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEdeEv) +STUB( + "VV-RgL2vPnc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEEC1Ev) +STUB("VV416qAP6GE", uregex_flags_67) +STUB("VV5P3L0DrP0", _ZNK7WebCore16HTMLInputElement13isNumberFieldEv) +STUB( + "VVA8Nn1CWw8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "VVALeUnRsrI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEC1Ev) +STUB("VVDUxERNatk", ft_smooth_lcd_renderer_class) +STUB( + "VVFTXqsAQuM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEE7add_refEv) +STUB("VVFyO8944DI", sceBgftServiceIntDownloadRegisterTask) +STUB("VVJTdpEEI+g", WKPreferencesGetPlugInSnapshottingEnabled) +STUB("VVK0w0uxDLE", _ZNSt14numeric_limitsIcE8digits10E) +STUB( + "VVKQCCyv0Hc", + _ZN7WebCore20RenderEmbeddedObject44setPluginUnavailabilityReasonWithDescriptionENS0_26PluginUnavailabilityReasonERKN3WTF6StringE) +STUB( + "VVNqKCMGKTs", + _ZN9Inspector24RuntimeBackendDispatcherC1ERNS_17BackendDispatcherEPNS_31RuntimeBackendDispatcherHandlerE) +STUB("VVR2dI1029A", _ZN7WebCore19MediaResourceLoaderD0Ev) +STUB( + "VVRVGwdMtoM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "VVUyjRjhdso", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEEC2ERKSA_) +STUB( + "VVW2pTvn2K4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEE7get_refEv) +STUB("VVWPUyolcGQ", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend7FriendsEED1Ev) +STUB( + "VVccj0le43s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEEC2ERKSA_) +STUB("VVfVZtON9ZU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEC1ERS7_) +STUB("VVfxa65sWF0", FTA_Export_Module_smooth) +STUB("VVgqI3B2bfk", _FNan) +STUB( + "VVi2+kwIbCc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEC1ERS7_) +STUB("VVjBwWLDO1E", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12BandwithInfoEE3setEv) +STUB( + "VVru0YJvvCM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "VVsQrTOSer8", + _ZN3sce2Np9CppWebApi7Matches2V127ResponseInGameRosterFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_20ResponseInGameRosterEEE) +STUB("VVvFh51o20s", sceHmd2ReprojectionEnableVrMode) +STUB("VVzGt0RzJZc", _ZNK7WebCore22EmptyFrameLoaderClient24isEmptyFrameLoaderClientEv) +STUB( + "VW+Fo-JVvOk", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOffer10initializeEPNS1_6Common10LibContextEPKc) +STUB("VW3TVZiM4-E", sceKernelFtruncate) +STUB("VW4GD-TaIUc", FT_Library_SetLcdFilter) +STUB("VW8s48m0Ieo", _ZN7WebCore10Pasteboard15canSmartReplaceEv) +STUB("VW9va3uKErc", _ZN3sce7Toolkit2NP20ChallengeRecvDetailsC2Ev) +STUB("VWDTsxY0WmY", JVM_GetEnclosingMethodInfo) +STUB("VWJtvXhQaUY", _ZN7WebCore6ISOBoxD2Ev) +STUB("VWOc5KnleQ0", sceNpFreeImpl) +STUB("VWW3af5-a08", _ZNK7WebCore10TimeRanges6lengthEv) +STUB("VWYE8A-vFGI", _ZN7WebCore15ContextMenuItemD1Ev) +STUB( + "VWaaBekWBQw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE8copyFromERKS9_) +STUB("VWbjB+zNNKg", _ZN7WebCore10TimeRangesC1Ev) +STUB("VWcTu8wKwlQ", _sceNpAllocatorRealloc) +STUB("VWeJdsrkbc4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEC1Ev) +STUB("VWgph+g1ktA", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session9SessionIdEE3setEv) +STUB("VWkMiSoXKSM", uregex_find64_67) +STUB( + "VWnJ86EVDBk", + _ZNK3sce2Np9CppWebApi14ConnectAccount2V215AccountLinksApi28ParameterToDeleteAccountLink12getpartnerIdEv) +STUB("VWq4YfFcCz0", glVertexAttribI4iv) +STUB("VWsNqcHO-qw", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V15Error11unsetReasonEv) +STUB( + "VWxM+SA3qUM", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEEiRNS2_10LibContextEPT_m) +STUB("VWz+QkA9f70", _ZNK7WebCore17HTMLCanvasElement23replayDisplayListAsTextEj) +STUB( + "VX-hO8IBML8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE8copyFromERKS9_) +STUB( + "VX2le5UmW8w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("VX6e2rw20rI", _ZN4Manx5MutexD2Ev) +STUB("VXA8STT529w", sceSystemServiceActivateHevcAbort) +STUB("VXCKaIC4e9g", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEED1Ev) +STUB("VXCrWaKkrh4", + _ZN9Inspector17ScriptDebugServer19dispatchDidContinueEPNS_19ScriptDebugListenerE) +STUB( + "VXF8QorC1tg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEE7get_refEv) +STUB("VXMgwb1wsPU", _ZN3WTF6String19formatWithArgumentsEPKcP13__va_list_tag) +STUB("VXNM++PRHMs", _ZN3sce7Toolkit2NP2V28Commerce7Request14CheckoutTargetD2Ev) +STUB( + "VXNgxHqQJXQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("VXRQVSn69Ow", jpeg_destroy_decompress) +STUB("VXTw7s-HmtU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEC2ERS7_) +STUB( + "VXYATsiu1BY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEE7get_refEv) +STUB( + "VXZI-vY3Y5U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("VXdkxm-AaIg", sceUserServiceSetPbtcPlayTimeLastUpdated) +STUB( + "VXdmGoViR0k", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE21intrusive_ptr_add_refEPS7_) +STUB("VXeWgKgP2Fo", _ZN3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap8fromJsonERKNS_4Json5ValueE) +STUB( + "VXhZ30kVvAE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEppEv) +STUB("VXkJ-hHNGAw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEC1ERS7_) +STUB( + "VXm5RXt+uJ0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB("VXngsm4dulg", WKMediaSessionMetadataGetTypeID) +STUB("VXphZwa1OVc", scePktMgrSetUlpNtfPayloadCommonNotification) +STUB( + "VXuBnqrXhS4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("VXxFEH7Ks-M", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError14setReferenceIdEPKc) +STUB("VXxylRE34KU", glPauseTransformFeedback) +STUB("VXzAXY+RUM4", _ZN9Inspector21CSSFrontendDispatchernwEmPv) +STUB( + "VY3od28ivUE", + _ZN3JSC12StringObject25getOwnPropertySlotByIndexEPNS_8JSObjectEPNS_9ExecStateEjRNS_12PropertySlotE) +STUB("VY50gOO5WV0", _ZN3sce7Toolkit2NP19RangeOfRanksRequestC2Ev) +STUB( + "VY6hVtJrJIs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("VY8Xji9cAFA", _sceNpIpcFreeImpl) +STUB("VYD7kpjz6i4", ustrcase_internalFold_67) +STUB( + "VYGp+Vfseg0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("VYMBNhVLG9Q", ucnv_getToUCallBack_67) +STUB( + "VYMKjkReJkY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEC1EPS8_) +STUB("VYMxTcBqSE0", sceHttp2SetTimeOut) +STUB( + "VYOCpZSj2Qw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEEptEv) +STUB( + "VYOc0MmQXFI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEC1EPKS8_) +STUB("VYQqKZrhPn4", _ZN3WTF8JSONImpl9ArrayBaseC2Ev) +STUB("VYQwFs4CC4Y", _Mtx_current_owns) +STUB( + "VYSUbMqPltw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE6insertENS2_8IteratorIS9_EERKS9_RSC_) +STUB("VYVoDE4fzAM", _ZN3sce7Toolkit2NP15AppSTLAllocatorISbIcSt11char_traitsIcENS2_IcEEEEC2Ev) +STUB( + "VYbHr8Xemoc", + _ZN7WebCore19ProtectionSpaceBaseC1ERKN3WTF6StringEiNS_25ProtectionSpaceServerTypeES4_NS_35ProtectionSpaceAuthenticationSchemeE) +STUB( + "VYbbgPbReGU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE3endEv) +STUB( + "VYd-tVxHd8o", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE4sizeEv) +STUB("VYm07VXDEoc", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V113AttributeTypeEEptEv) +STUB( + "VYnEAuI89l0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEE7get_refEv) +STUB( + "VYqdZLg7j1E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEC2Ev) +STUB("VYr9MulZEz0", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorImEeqERKS4_) +STUB("VYregTxIdLU", g_filename_to_uri) +STUB("VYua99Iuhg0", umutablecptrie_clone_67) +STUB("VYw7Gi8ikzE", WKViewHandleMouseEvent) +STUB( + "VYz4Rw2KU6E", + _ZN7WebCore18TextureMapperLayer21computeOverlapRegionsERNS_6RegionES2_NS0_22ResolveSelfOverlapModeE) +STUB("VZ+GFPa1Zyw", sceBackupRestoreUtilDeleteBackupData) +STUB("VZ13+XP9H0Y", Java_com_sony_gemstack_resources_ResourceManager_releaseStream) +STUB( + "VZ62smr0wCk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEdeEv) +STUB("VZ8lAeAnaDQ", sceNpUniversalDataSystemPostRecordData) +STUB("VZEQleBEe-A", _ZN12video_parser13cVideoPathMsv8FinalizeEv) +STUB("VZF7dCw7zNo", _ZN3WTF20ConcurrentPtrHashSetD2Ev) +STUB("VZFGsR6ptpg", __asan_report_load2_noabort) +STUB("VZFw+xSe6Mo", UCNV_FROM_U_CALLBACK_ESCAPE) +STUB("VZGUBDl2k0c", + _ZN3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession13unsetPlatformEv) +STUB("VZJ8IF37uuw", _ZN7WebCore15reportExceptionEPN3JSC9ExecStateENS0_7JSValueEPNS_12CachedScriptE) +STUB("VZJhL9rau08", sceDepthSetPreFilterParameter) +STUB( + "VZLFgbfdXHU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEC1EPKS8_) +STUB( + "VZMFn2s0rGA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE4sizeEv) +STUB("VZPXaaxp9xc", sceKernelWriteRemapCommand) +STUB("VZRT4LgG4w8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEaSERKS7_) +STUB("VZRzMxjltTE", _ZN7WebCore18PrewarmInformationnwEm) +STUB( + "VZffhV2432Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEED1Ev) +STUB("VZgoeBxPXUQ", sce_net_dummy) +STUB("VZidxi2cYh0", sceAudioOut2MasteringGetState) +STUB("VZkUzpN-EW8", _ZN3WTF3ICU12majorVersionEv) +STUB("VZm+8Z6WbEM", ucnv_canCreateConverter_67) +STUB("VZnhn2pTg2k", _ZTVN3JSC37JSSegmentedVariableObjectHeapCellTypeE) +STUB("VZq+BJtqlkk", _ZN9Inspector24WorkerFrontendDispatcher13workerCreatedERKN3WTF6StringES4_) +STUB("VZq4vb1hktQ", mono_get_int32_class) +STUB( + "VZr2fEqYT1Y", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEEC1ERKSC_) +STUB("VZroxfK-OjE", sceAudiodecDeleteDecoderEx) +STUB("VZt2FyTRUig", _ZN12video_parser7cVpUtil23vp_ff4_fclose_by_threadEPv) +STUB("VZwjC-5cUKg", sceCesUtf32leToUhc) +STUB( + "VZxBaIMaCBQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEC1ERS7_) +STUB("VZz0wPuDwuk", mono_runtime_class_init) +STUB("Va+bdYe+K1c", uprv_decNumberCompareTotalMag_67) +STUB("Va5FJ6TmNCw", _ZN3sce4Json6String6appendEPKc) +STUB( + "Va6YTQR7IVQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("Va9rLemqS1c", _ZN7WebCore18AdClickAttribution20markConversionAsSentEv) +STUB("VaFeRSf0WHs", _ZN3sce2np16StreamReadBufferixEi) +STUB( + "VaH9rkmQHYo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEdeEv) +STUB("VaaDMrsOTJQ", _ZTVN15AbstractStorage12SerializableE) +STUB( + "VaaXb7Lg9Jg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEC2EPKS8_) +STUB("VabrcAOJIkM", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setStopPosition) +STUB("VacOt-VWmg0", mono_aot_Sce_Vsh_Themeunbox_trampoline_addresses) +STUB( + "VajWvgZOf4c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEE5resetEPS6_) +STUB("ValV+RKC9yw", JSWeakRetain) +STUB("Valx7LM0atw", _ZN3sce7Toolkit2NP2V28Commerce7Request26SetPsStoreIconDisplayStateD2Ev) +STUB("Var4TxJ5V6M", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessionsC2Ev) +STUB( + "Vas2eInFOZM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEppEv) +STUB( + "Vb3Xkb4A1mw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEED1Ev) +STUB( + "Vb45XvEZQVE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB("Vb6WnvCC7Jg", _ZN7WebCore8SVGNames19font_face_formatTagE) +STUB( + "VbA8W+rMrXw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("VbEHW7RrJ+w", sceShellCoreUtilGetVersionNumberOfCameraCalibrationData) +STUB("VbEKRLldQiM", _ZN7WebCore18JSHTMLVideoElement15subspaceForImplERN3JSC2VME) +STUB("VbEt9RG6jqA", _ZN7WebCore9HTMLNames14onpageshowAttrE) +STUB("VbFjEs--uiA", _ZNK3sce4Json6StringeqEPKc) +STUB( + "VbGgC5XQiVY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEC2Ev) +STUB( + "VbIk4Ifv8i8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEEptEv) +STUB("VbIkV4JS3PE", _ZN7WebCore6ISOBoxnwEmPv) +STUB( + "VbJZLXgrBLs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEEptEv) +STUB( + "VbKb1mIcE5k", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemPropertiesC2Ev) +STUB("VbLgxsvib+g", rgctx_fetch_trampoline_mrgctx_40_p) +STUB("VbNV-OKwSoo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEEC2ERS9_) +STUB("VbQ6miDAeP0", il2cpp_monitor_enter) +STUB( + "VbTarbK3mOE", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Wordfilter16SanitizedCommentEE19setCustomReturnCodeEi) +STUB("VbTwUkpvqCo", Java_java_io_FileInputStream_open0) +STUB("VbWtH3zLRIs", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEE3getEv) +STUB( + "VbXedEdYBds", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEC2Ev) +STUB( + "VbZ1QQAYHqY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE5emptyEv) +STUB( + "Vbb2mdkk7YI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEEaSERSA_) +STUB("VbczgfwgScA", _WFrprep) +STUB( + "VbdE7DQUugY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEE11release_refEv) +STUB("Vbeoft607aI", + _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecy) +STUB( + "VbgKQV7uteM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE7popBackEv) +STUB( + "VbjKIEHDEh0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEC1EPS8_) +STUB("VbqVvelTDGI", _ZN7WebCore4Page23dispatchAfterPrintEventEv) +STUB("VbrTamW6dJs", sceKernelGetUtokenSaveDataRepairForRcmgr) +STUB("Vbs1JenCbRg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEEC1ERS7_) +STUB( + "VbuMfjgZqNY", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlot10initializeEPNS1_6Common10LibContextEPKci) +STUB( + "VbvohmbUy+c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEmmEi) +STUB("Vbx1HlmSMf0", _ZN7WebCore9GLContext20createSharingContextERNS_15PlatformDisplayE) +STUB("Vbx62ND4j4Y", _ZN7WebCore10XLinkNames11actuateAttrE) +STUB( + "VbyQr1LXfi8", + _ZN3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsSearchRequestBodyC1EPNS1_6Common10LibContextE) +STUB( + "Vc0MP8yAE-0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEppEv) +STUB("Vc2tb-mWu78", CA_MGMT_convertKeyBlobToPKCS8Key) +STUB( + "Vc7Ak9nKgqY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB("Vc8lIZRBjHw", sceFsUfsMkfsForSystem) +STUB("VcDzy9LLnYg", _ZN9Inspector14InjectedScriptC2ERKS0_) +STUB("VcE+gXSwFXI", sceAudioOutExConfigureOutput) +STUB( + "VcFAc17MkFM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("VcKj43HAQDk", RSA_public_encrypt) +STUB( + "VcMKlUPuqYw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEEptEv) +STUB( + "VcNsDlVXOHc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEptEv) +STUB( + "VcOl2IEBRwc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEEC2Ev) +STUB("VcRUlHEZAaE", _ZN3sce7Toolkit2NP2V27Session7Request6Search9MAX_USERSE) +STUB("VcS+9NxwzBM", + _ZN3sce2Np9CppWebApi7Matches2V124RequestCompetitiveResultC1EPNS1_6Common10LibContextE) +STUB("VcTDaz1OaSQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEE5resetEPS6_) +STUB("VcY8ZwqPRVE", udat_formatCalendar_67) +STUB("Vcc3cGhXO2U", sceVnaRequestDialogTts) +STUB("VccvcyIQuLM", _ZNK3sce2Np9CppWebApi14SessionManager2V113ErrorResponse8getErrorEv) +STUB( + "VcdA7UkL3fo", + _ZThn176_N7WebCore8Document17addConsoleMessageEOSt10unique_ptrIN9Inspector14ConsoleMessageESt14default_deleteIS3_EE) +STUB("VcdDw5-pPIw", _ZN3sce2Np9CppWebApi7Matches2V113RequestMemberC1EPNS1_6Common10LibContextE) +STUB("VciNhyNZkTs", _ZNK3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error6getTidEv) +STUB("VcpxjbyEpuk", sceFontGraphicsDrawupFillLinearGradient) +STUB( + "VcrudLOut18", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE5emptyEv) +STUB( + "Vcu1gB19CxA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("VcymGy+2WW4", _ZN18ScePssDecoderHevag9TerminateEv) +STUB( + "Vd1qAFfOBuQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("Vd4gElytvJs", WKStringCopyJSString) +STUB("Vd51PyZZxu8", VerifyClassForMajorVersion) +STUB( + "Vd9ZiwV4v9o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "VdCfZjw8V14", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEE11get_deleterEv) +STUB( + "VdDtp0wNGJ8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEmmEi) +STUB("VdJ+N1xU5jg", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE8capacityEv) +STUB( + "VdJM9nQNn8U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEC1EPNS2_10LibContextE) +STUB("VdJaqaYRrL0", mono_custom_attrs_from_event) +STUB( + "VdK0+zNEH5E", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getInteger1Ev) +STUB("VdN2hNRay+E", sceFiosGetAllOps) +STUB("VdXIDAbJ3tQ", settimeofday) +STUB("VdYoc9kGeyA", _ZNK3sce3Xml3Dom8NodeListixEj) +STUB( + "VdjJFagyPDA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE4sizeEv) +STUB("Vdl7Az+HVBs", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE8copyFromERKS7_) +STUB("Vdm5qt3ga9U", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEEC1Ev) +STUB("VdpqcDG0YtU", _ZNK7WebCore11FrameLoader17networkingContextEv) +STUB("VdsaiAF6j8Q", _ZN3sce7Toolkit2NP2V29Messaging25GameDataMessageAttachmentD2Ev) +STUB( + "Ve+GSbTFyKQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEmmEi) +STUB("Ve-npIABD0g", _ZN7WebCore18JSHTMLMediaElementC2ERKS0_) +STUB( + "Ve4vCA++9j0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEED2Ev) +STUB("Ve56cuYxhvk", + _ZN7WebCore11JSDOMWindow22visitOutputConstraintsEPN3JSC6JSCellERNS1_11SlotVisitorE) +STUB( + "VeAJ1TGp0i4", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionProperties42getpatchPlayerSessionsSessionIdRequestBodyEv) +STUB("VeCmF-zmmy0", mono_aot_System_ServiceModel_Webjit_got) +STUB( + "VeColKe+8wU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEixEm) +STUB( + "VeDGPahHe1c", + _ZNK3sce2Np9CppWebApi14SessionManager2V131JoinedPlayerSessionWithPlatform6toJsonERNS_4Json5ValueEb) +STUB("VeF6Z+WeJ84", WKPreferencesSetMenuItemElementEnabled) +STUB("VeFczL9MmuU", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V312ErrorFactory7destroyEPNS3_5ErrorE) +STUB("VeHY6z24kSw", _ZN8meta_gen12JpegPromoter8FinalizeEP19PromoteInnerContext) +STUB( + "VeJKlGBtEPo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE7popBackEv) +STUB( + "VeLtIbQ1NWA", + _ZN7WebCore14StaticNodeListC2EON3WTF6VectorINS1_3RefINS_4NodeENS1_13DumbPtrTraitsIS4_EEEELm0ENS1_15CrashOnOverflowELm16EEE) +STUB("VeSd8Ra6b6Y", _ZN7WebCore8Document22createDocumentFragmentEv) +STUB( + "VeVRWpuvRDw", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEEiRNS2_10LibContextEPT_m) +STUB("VeZ+P1zAIA0", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container6toJsonERNS_4Json5ValueEb) +STUB("VeZxBVHd8bc", mono_counters_on_register) +STUB("Vea9SZDM3Ao", ucnv_io_stripASCIIForCompare_67) +STUB("VecRKuKdXdo", _Quadph) +STUB( + "VedrxNLnZE8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEmmEi) +STUB("VehaKjlHG2c", WKPreferencesSetThreadedScrollingEnabled) +STUB("VeiZKFxdh8k", sceAudioLatencyEstimationAddData) +STUB( + "VekcO4txY-Q", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE18getResponseHeadersERSB_) +STUB("VenLJSDuDXY", _ZTSs) +STUB("Veo1PbQZzG4", sceUserServiceGetNpAccountUpgradeFlag) +STUB( + "Veogpdda2yA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE4sizeEv) +STUB("VeokaFZi7KY", _ZN3sce7Toolkit2NP2V28Matching7Request12SearchClauseC2Ev) +STUB( + "VepYkYmt+i8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEC1EPS6_PNS2_10LibContextE) +STUB("VetLqj2MlaA", _ZNK7CoreIPC13DataReference6encodeERNS_15ArgumentEncoderE) +STUB("VetwGOzhUI4", + _ZN3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsSearchRequestBody13getConditionsEv) +STUB("Vf1Aprnl3pY", il2cpp_gc_disable) +STUB("Vf2f-RztCOQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE8capacityEv) +STUB("Vf3hiuRoQs0", recvtbl_init) +STUB("Vf68JAD5rbM", _ZNKSt5ctypeIwE9do_narrowEPKwS2_cPc) +STUB( + "Vf97dyOY8cQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEED2Ev) +STUB( + "VfAcPFmPQkc", + _ZNK3sce2Np9CppWebApi14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBody6toJsonERNS_4Json5ValueEb) +STUB( + "VfBBDcKdt9E", + _ZN9Inspector25DebuggerBackendDispatcher20setBreakpointsActiveElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "VfKvVH2f9tU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEeqERKS9_) +STUB( + "VfLxmnHZ+pQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEE7get_refEv) +STUB("VfNA5ggBpZU", _ZN8meta_gen12JpegPromoter12SetAllValuesEv) +STUB("VfRSmPmj8Q8", sceNpRegisterStateCallback) +STUB( + "Vfbc0-x9wj0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEED1Ev) +STUB( + "VfcIFooE394", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEC2EPS8_) +STUB( + "Vfdwc704qLE", + _ZN3sce2Np9CppWebApi14SessionManager2V132PlayerSessionNonPsnPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_25PlayerSessionNonPsnPlayerEEE) +STUB("VfeN+Qhr3iY", mono_aot_Sce_Vsh_MarlinDownloaderWrapperplt) +STUB("Vffv7VcV358", _ZNK7WebCore22ResourceLoadStatistics8toStringEv) +STUB("VfgpUJUPTHQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEEcvbEv) +STUB("VfhkR2KTrV8", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_20ChallengeRecvDetailsEED2Ev) +STUB("VfrLixb1FUQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEE3getEv) +STUB("VfrdBRicGBA", _ZNK9Inspector14InjectedScript14wrapCallFramesEN3JSC7JSValueE) +STUB("VfsML+n9cDM", log1p) +STUB("Vft6N0EvQsw", sceHeadTrackerStart) +STUB("VftQ8boh33k", __tsan_atomic128_load) +STUB("Vg0Brc6Vh44", _ZStL6stdstr) +STUB( + "Vg8j3K23G7A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEppEv) +STUB("VgBVzWtJRA4", uregex_groupNumberFromName_67) +STUB("VgF2dcT-nd0", uloc_setKeywordValue_67) +STUB("VgGZ6GA6bQU", mono_aot_Sce_Vsh_AppContentUtilWrappermethod_addresses) +STUB( + "VgM5ftwIlec", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE4sizeEv) +STUB("VgMNL1wWxug", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEEptEv) +STUB( + "VgOSx4kc4to", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEED2Ev) +STUB( + "VgOz+bXEZUo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE5beginEv) +STUB("VgQFrQYIkZ8", _ZN12video_parser13cVideoPathEtsC2EPKc) +STUB("VgTgCOGMoeE", _ZN12video_parser5vpcom3rtc21ConvertUtcToLocalTimeEPKmPm) +STUB( + "VgX8gvTIisQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEC2ERS7_) +STUB("VgYczPGB5ss", sceNpGetUserIdByAccountId) +STUB( + "Vgbv7Nv6Q5U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEE7get_refEv) +STUB("VghGSTR7j2U", _ZN7WebCore21DiagnosticLoggingKeys15isAttachmentKeyEv) +STUB( + "Vgi7p-BWC7Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEC1Ev) +STUB("Vgoc68RH3ZE", _ZN3sce7Toolkit2NP2V28Commerce8Category8deepCopyERKS4_) +STUB("VgsWDKLc6v4", scePerfTraceDeleteBufferNotifyEvent) +STUB( + "VgwQsPduEoQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("VgxOLtCz-6s", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116JoinableUserTypeEEptEv) +STUB( + "Vh-bGes7WKU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEaSERKS9_) +STUB("Vh1bhUG6mSs", sceNpInGameMessagePrepare) +STUB( + "Vh9+Ac6muX8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE21intrusive_ptr_sub_refEPS7_) +STUB("Vh9YqkzXdzE", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119BandwidthPropertiesD1Ev) +STUB( + "VhFkbp4l2d0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE5eraseENS2_8IteratorIS6_EERS9_) +STUB("VhKnWhtDDEg", _ZNK3sce2Np9CppWebApi11Matchmaking2V110UserTicket9getStatusEv) +STUB("VhLnEiTuuWo", sceAgcDriverUserDataGetPacketSize) +STUB( + "VhN-f6s-C3g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEppEi) +STUB("VhPqx7G+T2M", _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead16unsetMatchmakingEv) +STUB("VhWBqIWDSj4", mono_debug_init) +STUB("VhWD7ylSQu8", + _ZNK3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody16getMaxScoreLimitEv) +STUB("VhXAk2UQP5s", _ZN7WebCore9FrameView31setVisualUpdatesAllowedByClientEb) +STUB("VhZgpZ6v1nI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEE5resetEPS6_) +STUB( + "VhcO5ZV4APE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEixEm) +STUB( + "VhdkLB9NWXM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEeqERKS9_) +STUB("VheCZrwJ7hg", _ZN9Inspector15RemoteInspector24updateClientCapabilitiesEv) +STUB("VhfrUFgM6bM", + _ZNK7WebCore9FrameView27windowClipRectForFrameOwnerEPKNS_21HTMLFrameOwnerElementEb) +STUB( + "Vhk3AIgeB5g", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "Vhov-cAztFE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE8pushBackERKS8_) +STUB( + "VhvyRUZ2nXk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEixEm) +STUB("VhwtC33fcrw", _ZN7WebCore9JSDOMRectC1ERKS0_) +STUB("VhyjwJugIe8", _ZNKSt7_MpunctIcE14do_curr_symbolEv) +STUB("Vi0Wp2wu-Mo", coil_get_http_proxy) +STUB("Vi2kKC0CNtc", _ZN3sce7Toolkit2NP2V28Matching7Request14SendInvitationC2Ev) +STUB( + "Vi48XDpvR-M", + _ZN7WebCore4Page24setCORSDisablingPatternsEON3WTF6VectorINS_21UserContentURLPatternELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("Vi7znQEB6AM", _ZN3sce7Toolkit2NP2V24Core7Request10TermParamsC2Ev) +STUB( + "Vi8gq0BCa4I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEE5resetEPS9_) +STUB( + "Vi9BXA-h52A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEC2Ev) +STUB("ViAnQdttzLY", _ZTVN7WebCore19MediaResourceLoaderE) +STUB( + "ViBgI3N-3Rs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB("ViCKQcpZnRc", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_8TempRankEEC2Ev) +STUB("ViFBLRl0424", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_19ProductInfoDetailedEE7addressERKS3_) +STUB("ViGl7v+BjKc", sceS3daSendData) +STUB("ViHXU52nAU4", _ZNK7WebCore9TreeScope23ancestorNodeInThisScopeEPNS_4NodeE) +STUB( + "ViJ57i-5oHY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEC1Ev) +STUB( + "ViLjZJ6F-NA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEEaSERSA_) +STUB( + "ViMTtUPK60s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEC1EPS8_) +STUB("ViQtP2aCANc", mono_aot_Sce_Vsh_Np_Asmunbox_trampoline_addresses) +STUB( + "ViUSY3W1tC0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEdeEv) +STUB( + "ViV0J9p4gU4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE5emptyEv) +STUB("ViY5K4a-9ec", _ZN3sce7Toolkit2NP21InvitationListRequestC1Ev) +STUB("VinlCA8Vkg8", sceKernelTerminateProcess) +STUB( + "ViobeO-fDLs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEneERKS9_) +STUB("ViqMLDD7f5A", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V18PlatformEEmmEi) +STUB("Viv12czuiVY", _ZN7WebCore11JSDOMWindow15subspaceForImplERN3JSC2VME) +STUB( + "VizQotMiGrI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB("Vj+KUu5khTE", _ZNSt12placeholders2_7E) +STUB("Vj-F8HBqi00", sceFontSetGraphicsErrorCallback) +STUB( + "Vj0jhZiy9p4", + _ZN3sce7Toolkit2NP9Utilities6FutureISt4listINS1_11TusVariableENS1_15AppSTLAllocatorIS5_EEEED1Ev) +STUB( + "Vj0zD1Po36U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEE7add_refEv) +STUB( + "Vj2uSYd5S0M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE8pushBackERKS8_) +STUB("Vj3x-1To4sQ", JSGlobalContextGetIncludesNativeCallStackWhenReportingExceptions) +STUB( + "Vj4D93g7OwU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEEC2EPS6_PNS2_10LibContextE) +STUB("Vj7HiXK-tTg", _ZN3sce2np12HttpTemplateC1Ev) +STUB("Vj9yHRW-BTE", _ZN7WebCore17PageConsoleClientnwEm) +STUB("VjBtg5Btl94", sceKernelSetFsstParam) +STUB("VjCxH+jj2aY", _ZN7WebCore9HTMLNames11noshadeAttrE) +STUB( + "VjEF+wSPjsc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("VjLkKY0CQew", sceUserServiceGetHoldAudioOutDevice) +STUB("VjU+hFkdHyg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119SubtaskAvailabilityEEptEv) +STUB( + "VjU9XzKj5H0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEdeEv) +STUB("VjVukb2EWPc", sceNpWebApiIntRegisterServicePushEventCallback) +STUB("VjWR6g9qL2k", sceKernelReserve2mbPage) +STUB( + "VjY7puUvVAY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("VjbT-tj7BHk", + _ZNK3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V113ErrorResponse8getErrorEv) +STUB("VjdHOW8p4Q4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEdeEv) +STUB( + "Vje+IjAPQ6c", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEdeEv) +STUB("VjhsmxpcezI", sceAudiodecInitLibrary) +STUB("Vjmqapc9BCM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE3endEv) +STUB("VjthMfexIg0", _ZN7WebCore6Editor9copyImageERKNS_13HitTestResultE) +STUB( + "Vjv+I-aNWFU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE5beginEv) +STUB( + "VjzJ3QhfOh8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE5beginEv) +STUB( + "Vk-9HMEErLw", + _ZN3sce2Np9CppWebApi14SessionManager2V131RequestGameSessionPlayerFactory6createEPNS1_6Common10LibContextEPKcS9_PNS5_12IntrusivePtrINS3_24RequestGameSessionPlayerEEE) +STUB("Vk00y0+BWJY", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_checkRate) +STUB("VkBn3M7Hemw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE5emptyEv) +STUB("VkBp9YPOcOw", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats24unsetMatchCompletionRateEv) +STUB("VkLNWDUZmcs", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia10BroadcastsEE12deepCopyFromERS7_) +STUB("VkP5m3TmVTw", il2cpp_class_is_interface) +STUB("VkTAsrZDcJ0", sigfillset) +STUB( + "VkWHJatVtvE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEmmEi) +STUB( + "Vkhewx6tULs", + _ZN7WebCore26PresentationOrderSampleMap43reverseFindSampleContainingPresentationTimeERKN3WTF9MediaTimeE) +STUB( + "Vkj4ig9TdTM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEED1Ev) +STUB( + "VkkeAVEbxzE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEED1Ev) +STUB("Vkkhy8RFIuk", sceHmdDistortionGetWideNearCorrectionCommand) +STUB( + "Vkp71L9UOC8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEED0Ev) +STUB("VkqLPArfFdc", sceImeKeyboardGetInfo) +STUB( + "VkqilTtSq7U", + _ZNK3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead14sessionIdIsSetEv) +STUB( + "Vks81ja8VBI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEC2Ev) +STUB("VktOEpV48Zg", sceIduUtilSetSettingBin) +STUB("Vku4big+IYM", sceCompanionHttpdGetEvent) +STUB("VkuqrdPi5Gc", _ZN3WTF8JSONImpl5ValueD2Ev) +STUB("VkzubmxnY7s", _ZN15AbstractStorage14YoutubeStorageD0Ev) +STUB( + "Vl1FusNnfvc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEppEi) +STUB( + "Vl5wjPHTsHw", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle10setPerGameERKNS1_6Common12IntrusivePtrINS3_19PlayStylePropertiesEEE) +STUB("VlAQIgXa2R0", sceScreenShotGetDrcParam) +STUB("VlBT16890mA", sceAudioPropagationSystemSetRays) +STUB("VlDpPYOXL58", __floattisf) +STUB( + "VlEoW+iiU2o", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("VlKw6-tujEM", _ZN3sce2Np9CppWebApi7Matches2V116JoinMatchRequest8fromJsonERKNS_4Json5ValueE) +STUB("VlL7D8EyZ1M", _ZN9Inspector14ConsoleMessagenaEm) +STUB("VlLUrQooQaw", g_get_prgname) +STUB("VlNJHzNQNFU", _ZNK7WebCore11EventRegioneqERKS0_) +STUB( + "VlXZQKWNX1k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEC2Ev) +STUB("VlZAxyVKJfs", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE5beginEv) +STUB("Vla-Z+eXlxo", sceLibcMspaceFree) +STUB("Vlaj1gwmIFA", sceAgcDriverSetupAsyncGraphics) +STUB( + "VlcNpqm2iyQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("VljXeIAPJoA", _ZNK7WebCore20ResourceResponseBase3urlEv) +STUB("VllPYdyh54A", _ZN3sce7Toolkit2NP2V27Ranking17GetGameDataResultC2ERKS4_) +STUB("VlnUVT4Q3rI", CurlSendRequest) +STUB( + "Vlqk1O38DN4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEED2Ev) +STUB( + "Vlz-+xklsHM", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanity22setwebApiFilterRequestENS1_6Common12IntrusivePtrINS3_19WebApiFilterRequestEEE) +STUB("Vm2-mAf4-AQ", _ZN9MmsMp4BoxD2Ev) +STUB( + "Vm3EFD+Monk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEC2Ev) +STUB( + "VmA3nUW-24Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEmmEv) +STUB( + "VmD4gGWce3M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEC1Ev) +STUB( + "VmEFxiVLkoM", + _ZN3sce2Np9CppWebApi7Matches2V131ResponseTeamMemberResultFactory7destroyEPNS3_24ResponseTeamMemberResultE) +STUB("VmIq47V4LYg", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110PlayerTypeEEC1Ev) +STUB("VmOyIzWFNKs", _ZNSt14numeric_limitsIdE14max_exponent10E) +STUB("VmQkpRjBp3s", sceRegMgrToolDataCheckGet) +STUB( + "VmVagdnSNdY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEED2Ev) +STUB("VmW0Tdpy420", sceAgcDcbWaitRegMem) +STUB( + "VmWnzbBqhuQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE5emptyEv) +STUB("VmXnBWaMlfs", _ZN3sce7Toolkit2NP2V212ActivityFeed6ActionD2Ev) +STUB("VmZ+5e2vHUo", _ZN3sce7Toolkit2NP2V210Tournament15RegisteredTeams8deepCopyERKS4_) +STUB("VmZ5-w-K2Zc", u_terminateUChar32s_67) +STUB("Vmec-LIL5G4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE5beginEv) +STUB( + "Vmf+BjC5PSs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE3endEv) +STUB("VmmhD8S48rM", _ZN3sce7Toolkit2NP2V212ActivityFeed6Action19MAX_BUTTON_CAPTIONSE) +STUB("VmoWTH9Nc+s", Java_java_util_TimeZone_getSystemGMTOffsetID) +STUB("Vmog0fe2m+E", sceMoveTrackerPlayGetImages) +STUB("VmqSnjZ5mE4", sceHttpDbgSetPrintf) +STUB("VmqsS6auJzo", _ZNSt5ctypeIwE2idE) +STUB( + "VmsCt8QcNxU", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("VmtJUV5zT+M", mono_aot_System_IO_Compressionunwind_info) +STUB( + "VmvaI+RZTlI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEE11release_refEv) +STUB("VmyZaBLnw0Y", utext_openConstUnicodeString_67) +STUB( + "Vn-LzzTB+xY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEED2Ev) +STUB("Vn2oEf52pKI", mono_aot_Sce_Vsh_Sl2_Sl2Clientmethod_addresses) +STUB("Vn3Vg9eIOzk", + _ZNK3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead6toJsonERNS_4Json5ValueEb) +STUB( + "Vn4-DjtH6XY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE8pushBackERKS8_) +STUB( + "Vn5V6nYUKQg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEppEv) +STUB("Vn5YcS44TwY", ztrans_openEmpty_67) +STUB( + "Vn6ks6XTMtQ", + _ZN9Inspector19InspectorAuditAgent19populateAuditObjectEPN3JSC14JSGlobalObjectERNS1_6StrongINS1_8JSObjectELNS1_30ShouldStrongDestructorGrabLockE0EEE) +STUB("Vn6oqwo6r2A", _ZN3sce7Toolkit2NP2V212ActivityFeed5MediaD1Ev) +STUB( + "Vn8i8biyz2o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEEC2Ev) +STUB("VnBhrXIJFNc", uregex_end_67) +STUB("VnBpPEefyl0", udata_openSwapper) +STUB( + "VnCeoJhWujA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEcvbEv) +STUB( + "VnFb4Lfgd1Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEC2EPS8_) +STUB("VnLOgQrMkco", _ZNK3JSC8JSObject11hasPropertyEPNS_9ExecStateEj) +STUB("VnQolo6vTr4", _ZN3sce2np9WorkQueue5StartEv) +STUB( + "VnUZBkL5ihs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("VnapSGACOBU", __wrap_link) +STUB( + "VnglUKTbq2g", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE3endEv) +STUB("Vni+f8M46JY", rgctx_fetch_trampoline_mrgctx_119) +STUB( + "Vnj-Bkh+Bg0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEC1ERS7_) +STUB("Vnj7Ahtg1Zc", _ZNK7WebCore17ActiveDOMCallback17canInvokeCallbackEv) +STUB( + "VnjjB78RfuI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "VnjtpVVD63Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE3endEv) +STUB( + "VnngGyk0Wew", + _ZN3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatformC1EPNS1_6Common10LibContextE) +STUB("VnqBArPbLB4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEE5resetEPS6_) +STUB("VnvLMnyTWKM", + _ZN3sce2Np9CppWebApi14ConnectAccount2V215AccountLinksApi28ParameterToDeleteAccountLinkaSERS5_) +STUB("Vo-n3W7egKM", _ZN3sce7Toolkit2NP2V212ActivityFeed9StoryUserD2Ev) +STUB("Vo1FHbLwrgw", _ZN7WebCore9HTMLNames9vlinkAttrE) +STUB("Vo1qeT4JY6I", sceKernelGetUtokenUseSoftwagnerForRcmgr) +STUB( + "Vo3OWY+Pr9Q", + _ZN9Inspector21InspectorConsoleAgent27didCreateFrontendAndBackendEPNS_14FrontendRouterEPNS_17BackendDispatcherE) +STUB("Vo5V8KAwCmk", sceSystemServiceHideSplashScreen) +STUB("Vo8rvWtZw3g", truncf) +STUB( + "Vo9TEAjPDzQ", + _ZN12video_parser17cVideoProfilerMp417_getVideoCodecAVCER33ff4_play_visual_sample_entry_infoPvPNS_17VpVideoCodecAVC_tE) +STUB( + "VoBUnnKmtZ4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE7reserveEi) +STUB( + "VoCHezBUtTM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("VoE7oXGwqBc", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEEcvbEv) +STUB("VoUwme28y4w", _ZSt18_String_cpp_unused) +STUB("VoX9InuwwTg", sceAudioInDeviceOpen) +STUB("VoXRcLMOH7w", sceFiosPathcmp) +STUB("VobCxKYaPNk", _ZN12video_parser14cVideoOperatorC2EPKc) +STUB( + "Vod+Xb13yb4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEC1Ev) +STUB("Vog+2+jBSoQ", mono_btls_x509_free) +STUB( + "VogoRxRpcO4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEppEv) +STUB( + "VohNK6-hfsk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "VohgZ9+XrVg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEE7get_refEv) +STUB( + "VokcGDcduZs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEE7get_refEv) +STUB("Voo7LR5dQVs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEE7get_refEv) +STUB("Vov9fE6FD1c", glGetTexParameteriv) +STUB("Vovji77EPlo", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE7reserveEi) +STUB( + "VowIE5quxTU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEC1Ev) +STUB("Voy9h9jZKi0", + _ZNK3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse19personalDetailIsSetEv) +STUB("VoyTsrKlfdg", _ZN3JSC18GCActivityCallbackD1Ev) +STUB("VozymYWJbtU", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request13GetPlayedWithD1Ev) +STUB( + "Vp48X1IAGLI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE3endEv) +STUB("Vp4uzTQpD0U", sceFontGraphicsSetVertexesGlyphScale) +STUB("Vp9BxZZZykQ", __asan_exp_loadN_noabort) +STUB("VpBDJNUL7Gw", _ZNK3JSC23VariableWriteFireDetail4dumpERN3WTF11PrintStreamE) +STUB( + "VpCqPhNq3s8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "VpF8UswxdLw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEixEm) +STUB("VpMTrmtXHPE", WKPreferencesSetDOMTimersThrottlingEnabled) +STUB("VpQBXbaHXOo", _ZNK3sce4Json6String5rfindEPKcm) +STUB("VpRmC6zo1wQ", sceSaveDataDeleteProspero) +STUB("VpTB5N6G-0o", _ZN7WebCore23AuthenticationChallengeC2ERKS0_) +STUB( + "VpTd1NkurnA", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12string1IsSetEv) +STUB("VpVK5yiU1UE", _ZN15AbstractStorage12LocalContentD0Ev) +STUB("VpW3ZH9ZKxY", BN_num_bits) +STUB("VpYF1vk9rbc", _ZN3sce7Toolkit2NP15AppSTLAllocatorIcE7addressERc) +STUB("Vpb7K6EYJJk", WKBundlePageSimulateMouseUp) +STUB("VpiyRGGF0Og", _Z32sceGpuDebuggerRegisterShaderCodePKN3sce3Gnm16HsStageRegistersEjPKc) +STUB("VpnRVAozBCQ", WKPreferencesSetSnapshotAllPlugIns) +STUB("VpslPflOWdM", WKContextMenuItemCreateAsSubmenu) +STUB( + "VpteAyGpRCg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE7reserveEi) +STUB("VpwLNOF8xpM", uspoof_openFromSource_67) +STUB("VpwhOe58wsM", + _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewl) +STUB("VpwymQiS4ck", _ZNSt15basic_streambufIcSt11char_traitsIcEE6xsgetnEPci) +STUB("Vpybd+KKqpU", _ZNK3sce2Np9CppWebApi15Personalization2V15Error9getSourceEv) +STUB("Vq-u6CrL6wY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEEaSERKS6_) +STUB("Vq8Y0nLGy74", sceOpusSilkEncDestroy) +STUB("Vq9LKkPXkIQ", _ZN3sce2np10CancelLockC1Ev) +STUB("Vq9e5f1ITkU", _ZN3sce7Toolkit2NP2V211SharedMedia9Broadcast18MAX_LEN_CHANNEL_IDE) +STUB("VqA-t-2aCMY", JVM_GetDeclaredClasses) +STUB("VqAPI9ZTizI", _ZN3sce2Np9CppWebApi11Matchmaking2V15ErrorD2Ev) +STUB("VqC3rnfDul0", _ZN7WebCore9IPAddressC1ERK11sockaddr_in) +STUB("VqCI8pEH8e8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEEC2ERS6_) +STUB("VqEMuCv-qHY", pthread_rwlockattr_getpshared) +STUB( + "VqJnRoVDdVs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEC2EPKS8_) +STUB( + "VqPNxs5kJR4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE8pushBackERKS8_) +STUB("VqQZt-E914s", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEEC2EPS4_) +STUB( + "VqWI9SyutcE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEaSERKS7_) +STUB("VqZX7POg2Mk", sceNpMatching2SearchRoom) +STUB("VqavhbVCsuU", __kernel_tanl) +STUB("VqcOL-f+Pu8", udat_countSymbols_67) +STUB("VqhvM-d3wCI", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIlEC1Ev) +STUB("VqjRqQgFDZk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEcvbEv) +STUB("Vqk2JMa6AP4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEED2Ev) +STUB("Vqr5qjh+JsY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEE3getEv) +STUB("Vqs5txv04ew", _ZN3sce7Toolkit2NP2V23TUS12TusVariables8deepCopyERKS4_) +STUB("VquwU0HwVP4", Java_java_lang_System_setIn0) +STUB("VqxSQUpGnkY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEC1ERKS7_) +STUB( + "Vr5TZ8krd30", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEE3getEv) +STUB( + "Vr5rk9Sc6eI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEmmEi) +STUB("VrHckxAPXfU", _ZThn16_N9Inspector21InspectorRuntimeAgent19disableTypeProfilerERN3WTF6StringE) +STUB("VrIbNi47c+o", + _ZN7WebCore18TextureMapperLayer23setContentsClippingRectERKNS_16FloatRoundedRectE) +STUB("VrJb1YjehwI", WKApplicationCacheManagerGetTypeID) +STUB("VrN20sLNYT8", _ZN7WebCore14ResourceLoader31didBlockAuthenticationChallengeEv) +STUB("VrNHY6-8IQM", _ZN3JSC8Debugger18didReachBreakpointEPNS_9ExecStateE) +STUB( + "VrNbyJE2gDo", + _ZN3sce7Toolkit2NP14GameCustomData9Interface12getThumbnailEPKNS1_30GameCustomDataThumbnailRequestEPNS1_9Utilities6FutureINS1_17MessageAttachmentEEEb) +STUB("VrO8+pzlpTU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth7IdTokenEE5resetEv) +STUB("VrOadwAC89o", _ZN7WebCore28InspectorFrontendClientLocal15canAttachWindowEv) +STUB("VrPWNYIghHM", mono_aot_Sce_Vsh_GameCustomDataunwind_info) +STUB("VrSRU7-K3D8", _ZNK3sce2Np9CppWebApi6Common8IteratorIjEeqERKS4_) +STUB("VrWK7GksARg", scePlayReadyFreeDecryptContext) +STUB("VrWUXy1gqn8", _ZSt10_Rng_abortPKc) +STUB("VrXGNMTgNdE", _ZNSt13basic_filebufIwSt11char_traitsIwEE5uflowEv) +STUB("VrYn7rkjRYU", sceDeci4hDrfpOpendir) +STUB("Vrab2WK1mgk", FT_Face_GetCharVariantIsDefault) +STUB("VrbMpjHagTs", _ZN7WebCore30InspectorInstrumentationPublic17s_frontendCounterE) +STUB("VrbjBw4B52U", freeSystemMemory) +STUB("Vrdrxhj+Ijg", WKPageCopyCustomTextEncodingName) +STUB("Vrhtx3xfdK8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE6resizeEj) +STUB( + "VrkeQc84og8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEED1Ev) +STUB( + "VrmP11iLJ-E", + _ZN7WebCore14FormController19referencedFilePathsERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("VrvpoJEoSSU", sceSystemServiceGetTitleWorkaroundInfo) +STUB( + "VrwA3SHuIvA", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEEC2ERKSC_) +STUB( + "Vs1HI2Egl+c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEC2EPKS8_) +STUB("Vs5YhCzlKpw", _ZN4Manx13WorkQueueImpl26registerSocketEventHandlerEiPNS_9WorkQueue8FunctionE) +STUB("VsJCpXqMPJU", _ZNKSt8numpunctIwE8groupingEv) +STUB( + "VsLULvxpYcc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEC2ERS7_) +STUB("VsNuCz1kMS8", _ZN7WebCore9HTMLNames15playsinlineAttrE) +STUB("VsP3daJgmVA", _Cnd_broadcast) +STUB( + "VsPYqFxZpzo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEED2Ev) +STUB( + "VsPqCxfe8y0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEEaSERSA_) +STUB("VsQFi9sWc88", _ZN3WTF5equalEPKNS_10StringImplEPKh) +STUB("VsRcCqasvZM", mono_metadata_blob_heap) +STUB( + "VsUc9+EjVcw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE8copyFromERKS9_) +STUB("VsVD7+SYlNc", sceFaceTrackerRegisterUser) +STUB("VsVz0tFoLmg", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE3endEv) +STUB( + "VsXorUNiEuc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("VsdqnfsmpNc", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_23NpSessionInvitationInfoEED2Ev) +STUB("Vsj50ZwNUFM", _ZN3sce2npeqERKNS0_13NpTitleSecretERK16SceNpTitleSecret) +STUB("VsjLgu8EHe8", _ZN7WebCore8Settings32setShouldAllowUserInstalledFontsEb) +STUB( + "VsoTCMo9gFk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEptEv) +STUB("Vss-cCTPQyE", _ZN3sce7Toolkit2NP2V28Commerce7Request14CheckoutTargetC2Ev) +STUB( + "VsuVxnckM4Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEEC1ERSA_) +STUB("VsvqCSrlioE", _ZN3sce7Toolkit2NP2V28Matching5RoomsD1Ev) +STUB( + "VsvtWWtygzE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEEC2ERKSA_) +STUB( + "VszTcTM8sKs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE7popBackEv) +STUB( + "Vt1Mu7NKX1s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEED1Ev) +STUB("Vt1kIfFn28M", _ZN9Inspector33InspectorBackendDispatcherHandlerD2Ev) +STUB("Vt77FkhdQZQ", _ZN3sce7Toolkit2NP2V27Ranking8TempRankD1Ev) +STUB("Vt7cY54eO1s", _ZN23sceMetadataReaderWriter20LoadedParserInfoList6getNumEv) +STUB("VtFCouWs9cA", _ZN7bmalloc11AllIsoHeapsC2ERKSt11scoped_lockIJNS_5MutexEEE) +STUB( + "VtFdDduqUo0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEneERKS9_) +STUB("VtFxCq4qw3c", _ZN12video_parser10cVideoPath13GetDeviceNameEv) +STUB("VtIALaaibVM", mono_aot_Sce_Vsh_Messagesplt_end) +STUB( + "VtKX120KVgU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEmmEv) +STUB("VtLCmCa4-IQ", SSL_CTX_set_quiet_shutdown) +STUB( + "VtLWVzMeVac", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_6NpUserENS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv) +STUB("VtRkfsD292M", fegetexcept) +STUB("VtRzSXM66qs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE4sizeEv) +STUB("VtbT4mcP-10", + _ZN8meta_gen11MsvPromoter20setKeyValueTBLTTitleENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti) +STUB("VteK1e0o0fY", nsnp_ActionCheck) +STUB( + "VtfSUQ9Z2B8", + _ZN3sce2Np9CppWebApi12Leaderboards2V128GetRankingRequestBodyFactory7destroyEPNS3_21GetRankingRequestBodyE) +STUB( + "VthkhTUaI4w", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE8capacityEv) +STUB( + "Vtl5U83F8Ak", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEEdeEv) +STUB( + "VtmJ55ZvVKk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "VtoD9YBLmR4", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody6toJsonERNS_4Json5ValueEb) +STUB("VtuocElDPtM", _ZN13MsvMetaEditor9tellFileXEv) +STUB( + "VtxOzdCI3CU", + _ZN3sce2Np9CppWebApi7Matches2V125ResponseCompetitiveResult14setTeamResultsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_19ResponseTeamResultsEEEEE) +STUB("VtyS8XLBqNE", sceNpSnsFacebookGetAccessToken) +STUB( + "VuAZPAfWAQM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEdeEv) +STUB("VuC0CBsgzIU", _ZN7WebCore12SharedBufferC1EON3WTF14FileSystemImpl14MappedFileDataE) +STUB("VuFdyUE9Vgo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEEC1EPS6_) +STUB("VuKbx6zlEG4", scePlayerReviewDialogGetResult) +STUB( + "VuKgUh0YEPg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "VuM0Gq3lx5U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("VuMMb5CfpEw", wcsxfrm) +STUB("VuNAygCVMS0", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V114ResultsVersionEEmmEv) +STUB("VuUZiw6lcDM", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V113ErrorResponseC2EPNS1_6Common10LibContextE) +STUB( + "VuVBj17ypgU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEneERKS9_) +STUB("VuW2xk1On78", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEE11release_refEv) +STUB("VuWLZlrJGAI", + _ZN3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsersC2ERS5_) +STUB("VuXwi7W32Y4", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEEptEv) +STUB( + "VuYXwqxmDqs", + _ZN3sce2Np9CppWebApi13InGameCatalog2V520ContentRatingFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_13ContentRatingEEE) +STUB("Vub52619U9Q", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEE7add_refEv) +STUB("Vubr42yhipE", _ZNK7WebCore8Document4bodyEv) +STUB("VuddC0lOQ9s", _ZN7WebCore15DatabaseTracker13isInitializedEv) +STUB("VupGFa09Gh8", _ZN7WebCore9HTMLNames31onwebkitmouseforcewillbeginAttrE) +STUB("Vurct5c9rO8", _ZN3sce2Np9CppWebApi7Matches2V118AddedPlayerFactory7destroyEPNS3_11AddedPlayerE) +STUB( + "VusCW4L5M0A", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB( + "VutI7mNZw8k", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEEptEv) +STUB( + "Vv+XEVmzZF4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEE7get_refEv) +STUB("Vv+jb7KJM9s", mono_mempool_alloc0) +STUB( + "Vv+r6l8KTNs", + _ZN7WebCore24DocumentMarkerController23renderedRectsForMarkersENS_14DocumentMarker10MarkerTypeE) +STUB("Vv6rsGkhZzU", _ZN3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatformD2Ev) +STUB("VvAMtxBHcZc", ScePsmMonoStringToUtf8) +STUB("VvDiRHz3WQk", OBJ_create) +STUB("VvJf84s5lHM", _ZNSt9basic_iosIcSt11char_traitsIcEEC1EPSt15basic_streambufIcS1_E) +STUB("VvNl5Yy0A6U", pthread_mutexattr_getgen_np) +STUB("VvTx2Tv+SY0", _ZN3sce7Toolkit2NP2V211UserProfile9NpProfile28MAX_SIZE_PROFILE_PICTURE_URLE) +STUB("VvaRHKvH0cU", _ZN7WebCore21DiagnosticLoggingKeys26failedMoreThan20SecondsKeyEv) +STUB("Vvdo5nXj3oU", _ZN3WTF22charactersToUIntStrictEPKhmPbi) +STUB("VvkbP1qGadM", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112GroupingTypeEEC1EPS6_) +STUB( + "VvnoG5NoLp0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEdeEv) +STUB( + "VvqMbi-ocVY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "VvqamXBneSE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEED2Ev) +STUB( + "Vvz1QRGjbu8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("Vw+gFlE70Rc", ucnv_fromUWriteBytes_67) +STUB( + "Vw03kdKZUN0", + _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tmcc) +STUB("Vw1eCDkdnCA", + _ZN3WTF13StringBuilder25extendBufferForAppending8ENS_7CheckedIiNS_14RecordOverflowEEE) +STUB( + "Vw5M5bg7a9k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "Vw7Gn9YKJb8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE7popBackEv) +STUB("Vw8Hg1CN028", sceUsbdEventHandlerActive) +STUB("VwAYij35rOo", il2cpp_field_static_set_value) +STUB("VwF4r--aouQ", sceUserServiceGetPbtcWednesdayDuration) +STUB( + "VwGAxuunru0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEplEm) +STUB( + "VwH4W14dB4w", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEdeEv) +STUB("VwJ5L0Higg0", sceNpWebApiGetHttpResponseHeaderValue) +STUB("VwMs8W4zc7k", mono_gc_toggleref_register_callback) +STUB( + "VwXQ32JheaU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("VwaGH4DPYxg", + _ZN9Inspector22ContentSearchUtilities26findStylesheetSourceMapURLERKN3WTF6StringE) +STUB("VwadwBBBJ80", sceSaveDataUmountWithBackup) +STUB("Vwc+L05e6oE", scePthreadSemDestroy) +STUB( + "Vwd87M1893E", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEiRNS2_10LibContextEPT_m) +STUB("VwdSDjyPJ6s", _ZN9Inspector15RemoteInspector6ClientC2Ev) +STUB( + "Vwe4xUPqBrU", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("VwkgbfMINsc", _ZN3sce3Xml13AttributeListD2Ev) +STUB("Vwkje933MBg", _ItL_pS5) +STUB("Vwp2xkMeMKA", localtime_r) +STUB( + "Vwq-jdC+1T4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEC2EPS8_) +STUB( + "Vwq5rECesT0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE5emptyEv) +STUB("VwqoXNdHHNA", _ZN7WebCore11MediaPlayer11muteChangedEb) +STUB( + "VwtsvzMN7Jk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEEdeEv) +STUB( + "VwzOXrkEN8Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEaSERKS9_) +STUB( + "Vx+8N9cB+q8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "Vx3dOMIoWm4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEEC1ERKSA_) +STUB("Vx97KCUtnBo", _ZNK7WebCore6Editor7Command5stateEPNS_5EventE) +STUB( + "VxBIRxeYwPk", + _ZN3sce2Np9CppWebApi14SessionManager2V148GetUsersAccountIdGameSessionsResponseBodyFactory7destroyEPNS3_41GetUsersAccountIdGameSessionsResponseBodyE) +STUB( + "VxF0+-C8jrg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("VxG0990tP3E", wcsncat_s) +STUB("VxJZcA4mtbU", mono_gc_get_used_size) +STUB("VxJj5rJX3iA", monoeg_g_strdup_printf) +STUB("VxKQGrudnzk", _ZN3sce2np18MemoryStreamWriter5WriteEPNS0_6HandleEPKvmPm) +STUB( + "VxKeSwoeJz0", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi42ParameterWithBinaryRequestBodyToUploadDataC2Ev) +STUB("VxLqzOIfKeY", __lo0bits_D2A) +STUB("VxM2SglJnR0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10ContainersEED2Ev) +STUB("VxObo0uiafo", _ZTSSt10money_base) +STUB("VxRZE4CZQw8", sceShellCoreUtilTriggerPapcRecalculation) +STUB( + "VxUhy2LCohA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEE7get_refEv) +STUB("VxWJ7DUrEIQ", sceShellCoreUtilGetProgressOfFormatExternalHdd) +STUB("VxXBo11wZ68", _ZN15AbstractStorage12LocalStorage14GetStorageSizeEPlS1_S1_) +STUB("VxYFhw1rdN0", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEEC1ERKS6_) +STUB("Vxa9q26hgS4", ubidi_getCustomizedClass_67) +STUB("Vxaun6aQclg", _ZN22MmsMdCommonFsOperation11readToCacheEmj) +STUB( + "Vxf41Q97oI8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE21intrusive_ptr_add_refEPS9_) +STUB("VxjXt8G-9Ns", sceNpPushUnregisterExtendedDataFilter) +STUB( + "VxmUwUiTxQ4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEmmEi) +STUB("VxoMWVH-lxg", _ZNK7WebCore8Document31displayStringModifiedByEncodingERKN3WTF6StringE) +STUB("VxyKwZkPqu4", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getGPR) +STUB("Vy-qRLNKtFU", _ZN3sce2Np9CppWebApi11UserProfile2V16Avatar6setUrlEPKc) +STUB( + "Vy5GVRt9OJY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEC2Ev) +STUB( + "Vy5SAP-Zxfc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEE3getEv) +STUB("Vy6tew6SeVU", psl_suffix_wildcard_count) +STUB( + "Vy84kBX7cbc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEptEv) +STUB("VyCn9EVJGlU", _ZN3sce2np10JsonNumber6SetNumEPKc) +STUB( + "VyCoVdVOx6E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEEC2EPS6_PNS2_10LibContextE) +STUB( + "VyEC6MZ8Gn8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEEC2ERKSA_) +STUB( + "VyGssizEm54", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEeqERKS9_) +STUB( + "VyIX0d9yKGQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEED2Ev) +STUB("VyKZGaC+ugc", _ZN7WebCore17toLinearDisplayP3ERKNS_9DisplayP3IfEE) +STUB( + "VyLFv-rmsOA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEEC1Ev) +STUB( + "VyOHMLNkbNs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("VyRD9BRegrw", utext_previous32From_67) +STUB( + "VyVuDQ4n61E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEC1EPNS2_10LibContextE) +STUB( + "VyZ-kJ6O5eo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEED2Ev) +STUB("VyZfeEo8tqc", mono_thread_suspend_all_other_threads) +STUB("Vya8j6NTYkA", _ZN3sce2Np9CppWebApi14SessionManager2V115SearchCondition9getValuesEv) +STUB( + "VybBKtTniZo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEcvbEv) +STUB("VyeMG5If2f8", _ZN9Inspector22RemoteAutomationTarget11setIsPairedEb) +STUB( + "VyheceWrlmI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEE3getEv) +STUB( + "VykEXsDjCnE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEC1ERKS7_) +STUB( + "VylFE4PVOCU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEE5resetEPS6_) +STUB("VyxKS1qRxDk", sceUlpMgrVshUninstallCmd) +STUB("VyyGOGGVouY", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEED2Ev) +STUB( + "VyzQ5T1KH-E", + _ZN7WebCore21WheelEventTestTrigger27removeTestDeferralForReasonEPKvNS0_22DeferTestTriggerReasonE) +STUB("Vz+qoK9rdyA", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getAlignedSubtitle) +STUB("Vz0SRbyhwxA", uprv_ebcdicToLowercaseAscii_67) +STUB("Vz64pb7ffJk", mono_aot_Sce_Vsh_VideoFramework_Platformmethod_addresses) +STUB( + "Vz7ZPoEyb7A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEptEv) +STUB( + "Vz8lvMb5Juw", + _ZN9Inspector20DOMBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) +STUB("VzBZRNTbSe8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEEneERKS7_) +STUB("VzFMGaWrlAI", _ZNK3JSC8JSObject11hasPropertyEPNS_9ExecStateENS_12PropertyNameE) +STUB("VzJ+wuTOprM", _ZN3WTF10StringImpl11reverseFindEDsj) +STUB( + "VzPJITGA850", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "VzQycdgaLpw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE8pushBackERKS8_) +STUB("VzSHT3URAAY", YGConfigSetPointScaleFactor) +STUB("VzSg0xUeDtw", __tsan_atomic32_fetch_sub) +STUB( + "VzZIOWx4fRY", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBodyC2EPNS1_6Common10LibContextE) +STUB("VzaJYPlzMMc", _ZTVN3WTF8JSONImpl10ObjectBaseE) +STUB( + "Vzi7QNKqQa8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEmmEv) +STUB("Vzl66WmfLvk", sceKernelMemoryPoolCommit) +STUB("Vzob5RCgfnY", _ZN3sce2np18HttpConnectionPool4InitEi) +STUB("Vzp+LwIEg3o", + _ZN15AbstractStorage10YoutubeAPI6ResumeERSbIcSt11char_traitsIcENS_8StlAllocIcEEERlm) +STUB("VzxN3tOouj8", sceNpTusSetDataA) +STUB("W+-F1p6av2g", sceUpsrvUpdateStartUpdateTask) +STUB( + "W+-RA2Vn-cc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEC1Ev) +STUB("W+2HQAGdPuU", __asan_register_elf_globals) +STUB( + "W+349XAmB8o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEC2Ev) +STUB( + "W+88Pbe6zYQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEE7get_refEv) +STUB( + "W+ACV7LDgeI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEED1Ev) +STUB("W+FQt2MUK+4", WKURLCreateWithBaseURL) +STUB( + "W+Iu03kWy+4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEeqERKS9_) +STUB( + "W+J7ciyOKIU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEppEv) +STUB("W+JmcR22LQo", _ZN3sce7Toolkit2NP2V28Matching6Member18getMemberAttributeEPKc) +STUB("W+KOtirSb7U", _ZNK7WebCore16TrackPrivateBase5labelEv) +STUB( + "W+MqOXimmpE", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEiRNS2_10LibContextEPT_m) +STUB( + "W+OVJl-IxEk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEC2Ev) +STUB( + "W+P4aMC9Pao", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE5beginEv) +STUB("W+QrDTbhLkg", sceCesUtf32leToMbc) +STUB("W+TGgcnH-Kk", sceVdecswGetDecodeOutput) +STUB( + "W+UxCtLO0AI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEED2Ev) +STUB( + "W+VEHreLGRg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEEC2ERSA_) +STUB("W+VrzBY+LBA", sceApplicationNotifyCoredumpRequestEnd) +STUB("W+W0GfCiB8Q", GCC_except_table223) +STUB("W+XKQCLr724", _ZN7WebCore17CredentialStorage3getERKN3WTF6StringERKNS_3URLE) +STUB( + "W+aj8nyPyJE", + _ZN7WebCore11DisplayList8RecorderC1ERNS_15GraphicsContextERNS0_11DisplayListERKNS_20GraphicsContextStateERKNS_9FloatRectERKNS_15AffineTransformEPNS1_8ObserverE) +STUB( + "W+eaXpQ1YMU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEEC1EPS8_PNS2_10LibContextE) +STUB( + "W+es4Dlgpyc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEEaSERKSA_) +STUB("W+h5wzGN-IA", mono_aot_Sce_Vsh_ShareServerPostWrapperunbox_trampoline_addresses) +STUB("W+insDsEG98", _ZN7WebCore8SVGNames21overline_positionAttrE) +STUB( + "W+jZWL68ARc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEE7get_refEv) +STUB("W+jyDVS+594", curl_share_strerror) +STUB("W+ldaqlZSFs", _ZN3sce7Toolkit2NP2V210Wordfilter7Request13FilterCommentC1Ev) +STUB("W+lrIwAQVUk", _FXp_mulh) +STUB( + "W+nizAXipFA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "W+uipM8JBWk", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29getJoinedPlayerSessionsByUserEiRKNS4_40ParameterToGetJoinedPlayerSessionsByUserERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_43GetUsersAccountIdPlayerSessionsResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("W+vyB7dzKsQ", Java_com_sony_bdjstack_core_AppCacheManager_close) +STUB( + "W-+VFOyreJE", + _ZN3sce2Np9CppWebApi14SessionManager2V162PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyFactory7destroyEPNS3_55PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyE) +STUB("W-0xwY0ZMjw", sceNpUniversalDataSystemDestroyEventPropertyArray) +STUB("W-1-yJl+8K8", _ZN7Nicosia5Scene5StateC1ERKS1_) +STUB( + "W-1Je2xTXzM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("W-26Z41tH7I", ucfpos_constrainField_67) +STUB("W-2WOXEHGck", sceFontWritingRefersRenderStep) +STUB("W-2Z-MZ8kh0", _ZN3sce7Toolkit2NP2V29Challenge18ChallengeThumbnail18MAX_SIZE_THUMBNAILE) +STUB( + "W-5oG6MPG6M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEmmEi) +STUB( + "W-9Og-RToOs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("W-ACkskGXtw", _ZNK3JSC8Profiler8Database4saveEPKc) +STUB("W-N1uRtrfzk", _ZNSt15basic_streambufIwSt11char_traitsIwEE6setbufEPwi) +STUB("W-NaDFVq+kE", _ZN13MsvMetaEditor13updateMfraBoxEi) +STUB( + "W-T+N6vdiUI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEEC1ERKSA_) +STUB("W-T-amhWrkA", _LPlsw) +STUB("W-U8F5o2SHg", sceSystemServiceActivateMpeg2GetStatus) +STUB( + "W-XnVGowqKA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEED2Ev) +STUB("W-Z8wWMBnhk", sceNgs2VoiceGetOwner) +STUB( + "W-ZEZnw7VTw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEEC1ERSA_) +STUB("W-cGzhINllg", _ZN7WebCore15JSDOMWindowBase14finishCreationERN3JSC2VMEPNS_13JSWindowProxyE) +STUB("W-gBIML-KZU", dllockinit) +STUB("W-oLY1TOyv4", _ZN7WebCore12JSTimeRanges9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "W-sTjS+-thA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE8capacityEv) +STUB("W-tsWtMCboE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEEptEv) +STUB( + "W-y4Qc546js", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("W-yXgQmaozU", _ZN3sce3Job10JobManager27getSequenceFactoryInterfaceENS1_8PriorityE) +STUB("W0+iOqC0lEo", _ZN15AbstractStorage18DailymotionContent4OpenEit) +STUB( + "W018siPGg-A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "W019UJqDM7A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEEC1Ev) +STUB( + "W04zeKu27w8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEdeEv) +STUB("W0Aa+HAwN6U", syscall) +STUB("W0Bncz4CUaQ", + _ZNK3sce2Np9CppWebApi7Matches2V121ResponseTeamStatistic6toJsonERNS_4Json5ValueEb) +STUB( + "W0DPrlLJPUA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEC1EPNS2_10LibContextE) +STUB( + "W0EW+IVYv+w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEC1EPS9_) +STUB( + "W0GOa7LUavI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEC2Ev) +STUB("W0HLn3b9hYw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEEneERKS7_) +STUB("W0Hpm2X0uPE", scePthreadSetprio) +STUB("W0LDpQC9veI", + _ZN23sceMetadataReaderWriter17getParserInfoListERSt6vectorINS_10ParserInfoESaIS1_EE) +STUB("W0NXxBnfZpA", sceDiscMapBitmapInfoServerStop) +STUB( + "W0OflGg278I", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEE3getEv) +STUB("W0RPTmyiPXs", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V115LastUpdatedUserD2Ev) +STUB("W0SsxHQUhGs", sceS3daClose) +STUB( + "W0T7AnU15EM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEEC1ERKSA_) +STUB( + "W0UUdXVXGJU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("W0VIYdCm9lY", sceFsISSchedConfigCurrentThread) +STUB("W0VwyqKSJy4", + _ZN7WebCore14ScrollableArea15didAddScrollbarEPNS_9ScrollbarENS_20ScrollbarOrientationE) +STUB("W0WEyog0f74", sceAgcAcquireMemSetEngine) +STUB( + "W0WNrK6rzeg", + _ZN7WebCore18JSHTMLImageElementC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_16HTMLImageElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "W0WeAGltmhs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEEC1ERSA_) +STUB("W0YEmumsrqo", mono_aot_Sce_PlayStation_Jsonjit_code_start) +STUB("W0YWLVDndx0", sceNpRtcFormatRFC3339) +STUB("W0c2iL1rKmI", _ZN7WebCore24CoordinatedGraphicsLayer29setNeedsVisibleRectAdjustmentEv) +STUB( + "W0hBEM3stRg", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEEC2Ev) +STUB("W0iQAbGaTBg", sceVideoOutGetCurrentOutputMode_) +STUB("W0j6vCxh9Pc", _ZSt16_Throw_Cpp_errori) +STUB( + "W0kWelqcTzU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE7popBackEv) +STUB("W0owwPgCHfg", _ZN3JSC4Yarr17RegularExpressionC2ERKS1_) +STUB("W0pMeMwIMMI", _ZN7WebCore9HTMLNames8kindAttrE) +STUB( + "W0q1zJvEOFQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEcvbEv) +STUB( + "W0vG9A4eqxU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEC2EPNS2_10LibContextE) +STUB("W0w8TGzAu0Q", _ZNSt8messagesIcEC1EPKcm) +STUB( + "W0xjic27Y6w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("W0xkN0+ZkCE", kill) +STUB("W0yjXro3i4E", png_set_crc_action) +STUB( + "W11s684ywaM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEE11get_deleterEv) +STUB("W12G2P+s074", _ZN3sce2Np9CppWebApi12Leaderboards2V122GetRankingResponseBody10getEntriesEv) +STUB("W17CX8bEsI4", GetAccountIdA) +STUB("W1C0BHjZuDA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEEC2EPNS2_10LibContextE) +STUB("W1Etj-jlW7Y", sceGnmInsertPushMarker) +STUB("W1FTmdB9jPE", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_15CategoryInfoSubENS2_IS4_EEEE7addressERS6_) +STUB("W1JiCEsLYvo", _ZN12video_parser13cVideoMetaMP418getMetadataBufSizeENS_12VP_META_TYPEEjPj) +STUB("W1NHvs8NlF0", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12unsetString4Ev) +STUB( + "W1QKyOKm+Co", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEptEv) +STUB("W1SOwxlIT-c", mono_aot_Sce_Vsh_RemotePlayjit_code_start) +STUB("W1TMB89OLb4", _ZN3sce7Toolkit2NP2V212NetworkUtils7Request22GetDetailedNetworkInfoC1Ev) +STUB("W1Y0eBHhb1w", _ZNK7WebCore18TextureMapperLayer9isVisibleEv) +STUB( + "W1atfZNg76M", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlot17hasnpServiceLabelEv) +STUB( + "W1il3rOjVmo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE21intrusive_ptr_sub_refEPS9_) +STUB("W1k-LFOLK0w", JVM_RawMonitorEnter) +STUB( + "W1yZfFdwDJk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEC2ERKS7_) +STUB( + "W1zF0Tniuw0", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData42getxPsnTcsComparedLastUpdatedUserAccountIdEv) +STUB( + "W2+NxxjVm2I", + _ZN7WebCore20ExtensionStyleSheets29addAuthorStyleSheetForTestingEON3WTF3RefINS_18StyleSheetContentsENS1_13DumbPtrTraitsIS3_EEEE) +STUB("W23xoqC6shA", _ZN7CoreIPC10AttachmentC1Ei) +STUB( + "W24rQK9P9gE", + _ZN3sce7Toolkit2NP14GameCustomData9Interface10getMessageEPKNS1_28GameCustomDataMessageRequestEPNS1_9Utilities6FutureINS1_21GameCustomDataMessageEEEb) +STUB( + "W25Z-xPztzs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEE11get_deleterEv) +STUB( + "W26qyhTB72s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEC2EPNS2_10LibContextE) +STUB("W29W3Xd82aI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEED1Ev) +STUB("W2D0GnkDQoY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16UnlockedTrophiesEEC1Ev) +STUB("W2G-yoyMF5U", scePadSetVibrationMode) +STUB("W2IBa2bS4-0", uhash_hashUnicodeString_67) +STUB( + "W2JIah-nUWY", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemPropertiesC2ERS5_) +STUB("W2LcBaEy2qc", fuse_reply_err) +STUB("W2MzrWix2mM", _ZTVN3sce16CommonDialogUtil6ClientE) +STUB("W2NBQBKWjJk", decode_fp_to_double) +STUB("W2WHDUt6O9A", sceLncUtilGetCdlgStatus) +STUB("W2hEXaTJSb4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging16GameDataMessagesEE3setEv) +STUB("W2jeMfa3etw", WKWebsiteDataStoreGetFetchCacheOrigins) +STUB("W2qE6sLTyWQ", _ZN7WebCore21DiagnosticLoggingKeys24unsupportedHTTPMethodKeyEv) +STUB("W2u-cvNkvOY", sceKernelInitializeDipsw) +STUB( + "W2ub4nFPKng", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEED2Ev) +STUB("W2xTZFf+RzE", _ZN3JSC19ArrayBufferContents5clearEv) +STUB("W31HMY23RKg", sceDataTransferTargetAbortTransferSpeed) +STUB( + "W36QpKCa4+k", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEEaSERKSF_) +STUB("W39EKJrf790", sceHeadTrackerUpdateDebug) +STUB("W39o5yn84VA", _ZN3sce2np9JsonValue7SetBoolEPKNS0_8JsonBoolE) +STUB("W39wYLkcbbk", _ZN7WebCore21DiagnosticLoggingKeys25failedLessThan5SecondsKeyEv) +STUB("W3GNBOiLha8", _ZN3sce7Toolkit2NP2V28Matching26MemberSignalingInformationC2Ev) +STUB( + "W3IelcJFbFo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("W3OAYWACf6w", _ZN3JSC19g_superSamplerCountE) +STUB("W3QNjZJAKKA", _ZNK3sce2Np9CppWebApi14SessionManager2V112NonPsnLeader13getPlayerNameEv) +STUB("W3VXXbPyZoA", _ZN7WebCore21DiagnosticLoggingKeys18nonVisibleStateKeyEv) +STUB( + "W3gdQ8MkwKA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEE7get_refEv) +STUB("W3neFYAvZss", sceUserServiceGetGlsIsMuteEnabled) +STUB( + "W3oIORFARoU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE8copyFromERKS9_) +STUB("W3oNrewI7bc", sceUserServiceSetPbtcThursdayHoursEnd) +STUB("W3rwsG+URiA", _ZNK3sce2Np9CppWebApi14SessionManager2V116FromNonPsnMember13getPlayerNameEv) +STUB( + "W3vvKmaYPGs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE8pushBackERKS8_) +STUB("W4+9PcY8CCI", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyleD1Ev) +STUB( + "W4+AmT75iOA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEC1EPNS2_10LibContextE) +STUB("W41pz-jsAq8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V114SearchOperatorEEppEi) +STUB( + "W48gC1kr8Vg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEC1ERKS7_) +STUB( + "W4A-OV3xKto", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEdeEv) +STUB( + "W4AmxhgJJbQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEE3getEv) +STUB( + "W4AuaAJnpeg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE7reserveEi) +STUB( + "W4C+6-AR6C0", + _ZN3sce2Np9CppWebApi11UserProfile2V132GetPublicProfilesResponseFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_12BasicProfileEEEEEPNS9_INS3_25GetPublicProfilesResponseEEE) +STUB( + "W4R+gJEcgkY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEEC1EPSA_PFvSC_EPNS2_10LibContextE) +STUB( + "W4UQhu7BMTE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB("W4VgbZxcD4U", _ZN7WebCore9HTMLNames7timeTagE) +STUB( + "W4aHInrAM9c", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEixEm) +STUB("W4aQq8xZ-vg", _ZSt9_Ios_init) +STUB("W4dWT4cy+ek", _ZTv0_n24_N12Mp4RetrieverD0Ev) +STUB("W4e8obm+w6o", sceFontGraphicsUpdateColorRates) +STUB( + "W4hwggXmTfY", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations12getaccountIdEv) +STUB("W4kZjfF08xU", sceContentBinderIsUpdated) +STUB( + "W4lYghWo6AM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEptEv) +STUB("W4pF20x4FSQ", _ZN3WTF13StringBuilder12appendNumberEy) +STUB( + "W4tcWjchOzI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEED2Ev) +STUB("W4vhaG7GsbI", _ZN7WebCore29SQLiteStatementAutoResetScopeD2Ev) +STUB("W4wDYvCxkcY", mono_aot_Sce_Vsh_GriefReportStorageplt) +STUB("W4wZBtT4Ta0", _ZN3sce2Np9CppWebApi7Matches2V121ResponseTeamStatisticD1Ev) +STUB( + "W4x1QDGjSLw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEE7get_refEv) +STUB( + "W4xAZU6nKyg", + _ZN7WebCore22EmptyFrameLoaderClient39dispatchDecidePolicyForNavigationActionERKNS_16NavigationActionERKNS_15ResourceRequestERKNS_16ResourceResponseEPNS_9FormStateENS_18PolicyDecisionModeENS_21PolicyCheckIdentifierEON3WTF8FunctionIFvNS_12PolicyActionESD_EEE) +STUB( + "W4xZF-Prz1U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEE11release_refEv) +STUB( + "W5Bh4KXmDAk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEppEv) +STUB("W5HtGRCZ1iE", sceShellCoreUtilGetSystemBGWaveColor) +STUB( + "W5Jn4jOO0dI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE21intrusive_ptr_add_refEPS6_) +STUB("W5Ol-hqEj0c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEC1ERKS7_) +STUB("W5OtP+WC800", _ZNKSt5ctypeIcE8do_widenEPKcS2_Pc) +STUB("W5Q4F98y+go", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEEC1ERKS7_) +STUB("W5RgPUuv35Y", sceUserServiceGetNpLoginId) +STUB("W5TkSWFRywY", + _ZN3sce2Np9CppWebApi7Matches2V127ResponseTeamMemberStatisticC1EPNS1_6Common10LibContextE) +STUB("W5VYncHdreo", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8_GetffldEPcRS3_S6_RSt8ios_basePi) +STUB( + "W5W9PUPPHkk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEC1Ev) +STUB("W5YAK5pO9eY", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEEptEv) +STUB( + "W5beQA1NaXU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEE11release_refEv) +STUB("W5iJUafU8r4", sceEditMp4GetStatus) +STUB( + "W5isESLwQvQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEaSERKS9_) +STUB("W5k0jlyBpgM", _ZN10__cxxabiv121__vmi_class_type_infoD0Ev) +STUB( + "W5kOjAQSvAw", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeaders21intrusive_ptr_add_refEPS5_) +STUB("W5odh9Zt7bM", _ZN23sceMetadataReaderWriter16g_storageManagerE) +STUB("W5pdIiQSrmY", SpeechTerminate) +STUB("W5srRHY7pAE", _ZN3sce7Toolkit2NP19FriendOfUserRequestC1Ev) +STUB( + "W5syaKVaFBM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEixEm) +STUB("W5tL-FE60Sw", scePlayReadyDomainLeaveProcessResponse) +STUB( + "W5tu7zepz28", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEeqERKS9_) +STUB("W5z4eZrjEas", sceAgcDriverRegisterResource) +STUB("W5zgLuJ-xXU", _ZThn24_NK9Inspector28InspectorScriptProfilerAgent18isAlreadyProfilingEv) +STUB("W6+fHPVq9Sc", WKBundleHitTestResultMediaIsInFullscreen) +STUB( + "W65MyuwKXSc", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("W66Kqtt0xU0", sceFontGraphicsFillRatesSetMapping) +STUB("W677AU+YzFg", mono_aot_System_IO_Compression_FileSystemplt) +STUB("W68i7pE-eUw", _ZN3sce7Toolkit2NP2V26Friend7Request19GetFriendsOfFriends15MAX_ACCOUNT_IDSE) +STUB("W6EkvwOudr0", _Printf.fchar) +STUB("W6OrTBO95UY", scePthreadMutexIsowned) +STUB("W6SiVSiCDtI", sceLibcMspaceDestroy) +STUB( + "W6Xr07s5Ufs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEED1Ev) +STUB("W6aAXGX+Q8g", mono_aot_Mono_Cairoplt) +STUB( + "W6fWXx3pex8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEptEv) +STUB( + "W6hTRYkPt6U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEE11get_deleterEv) +STUB("W6iWw8aUQtA", sceNpUtilityInit) +STUB( + "W6kaUkemy7w", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE8capacityEv) +STUB("W6mJpSIWRcw", _ZN3sce7Toolkit2NP2V23TUS7TusDataC1ERKS4_) +STUB( + "W6puTyqxvT8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEC2Ev) +STUB("W6qgdoww-3k", _ZNSt14numeric_limitsIfE6digitsE) +STUB("W6uqyYgfehY", + _ZNK7WebCore14ScrollableArea18visibleContentRectENS0_26VisibleContentRectBehaviorE) +STUB( + "W6wgr-OJv5Q", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody14unsetBoolean10Ev) +STUB("W6xikDYGnmQ", rgctx_fetch_trampoline_rgctx_2_p) +STUB("W7-g4MzIBm4", _ZN3sce2Np9CppWebApi13InGameCatalog2V515ContainerRating10unsetCountEv) +STUB("W72B9ylU2JA", _ZN3sce4Json18InitParameterRtti216setAllocatorRttiEPNS0_14AllocParamRttiEPv) +STUB("W76h1+y9Fcc", _ZN7WebCore7Element12setAttributeERKNS_13QualifiedNameERKN3WTF12AtomicStringE) +STUB("W7AEl27VD+o", ucase_tolower) +STUB("W7EnziA8B5Y", _ZN3sce2Np9CppWebApi11Matchmaking2V19SubmitterC2EPNS1_6Common10LibContextE) +STUB("W7F1oU5ivq0", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V15Error9setReasonEPKc) +STUB("W7JEXgyp5xY", _ZN3sce7Toolkit2NP2V28Commerce9ContainerD2Ev) +STUB("W7JUaEGA9Bc", unumsys_close_67) +STUB("W7Ld-MBN2zE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEEC2Ev) +STUB("W7OzMpRm4Aw", _ZN3sce7Toolkit2NP19AllocImplementationD1Ev) +STUB( + "W7QiJ1XbGQI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEC2EPKS8_) +STUB( + "W7QmaAaLP6E", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEdeEv) +STUB("W7SNhSZ-YdI", u_strcat) +STUB( + "W7UJfqV7Bok", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "W7UhjTS6fDI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE7popBackEv) +STUB( + "W7V0pqBz0b4", + _ZN9Inspector14ConsoleMessageC2EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelERKN3WTF6StringES8_jjPNS1_14JSGlobalObjectEm) +STUB( + "W7VW--M5Zes", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEEC2EPSA_PNS2_10LibContextE) +STUB( + "W7bQ8Y9fHOk", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Console13ChannelSourceEEESt8optionalIT_ERKN3WTF6StringE) +STUB( + "W7bWGfO8x-Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE10setContextEPNS2_10LibContextE) +STUB("W7cY9F4nr-g", mono_btls_ssl_ctx_set_ciphers) +STUB( + "W7e7AX6000k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE7reserveEi) +STUB("W7hjXKsdJ4I", sceNpUniversalDataSystemIntRecordObjectSetInt32) +STUB("W7jH8oC9B1c", sceAppInstUtilGetAppMoveProgressInfo) +STUB("W7jWOTfJPos", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEC2Ev) +STUB("W7lVXLeq74I", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE21intrusive_ptr_add_refEPS7_) +STUB( + "W7qh8MIYAWM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEplEm) +STUB("W7xPVJvLBJo", mono_aot_Sce_Vsh_GriefReportunbox_trampolines) +STUB("W7xZ3RWOiKI", _ZN3sce7Toolkit2NP2V27Session17SessionInfoUpdateC2Ev) +STUB("W80hs0g5d+E", sceFontGraphicsRegionInit) +STUB("W80mmhRKtH8", CA_MGMT_extractBasicConstraint) +STUB("W80wtyya6DE", mono_aot_Sce_Vsh_Np_Pbtcplt) +STUB("W82U1g0Smzs", _ZN7WebCore9FrameTree9clearNameEv) +STUB("W849NdAuFHQ", sceDebugIpmiGetTidListByDump) +STUB("W86jdG0c7xo", rgctx_fetch_trampoline_rgctx_91_p) +STUB( + "W8A90wMF+HQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE10setContextEPNS2_10LibContextE) +STUB("W8G9XqqbbT8", rgctx_fetch_trampoline_rgctx_114) +STUB( + "W8LNtgtsUJA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEE3getEv) +STUB( + "W8Z+Cy5gtb0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEEC2EPS8_PNS2_10LibContextE) +STUB("W8ZnpoQJayk", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification16FriendlistUpdateEEC1Ev) +STUB("W8f1adVl+48", _dup2) +STUB("W8lCEPAaisw", ucasemap_getOptions_67) +STUB("W8peIGAlB+M", _ZN3JSC8JSBigInt10createZeroEPNS_14JSGlobalObjectE) +STUB( + "W8qAqA-NDI4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEplEm) +STUB("W8sT06mz6bg", _ZN12video_parser17cVideoProfilerMp417_getAudioCodecVWGEPNS_13VpMediaInfo_tE) +STUB("W8t37A5J90M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116InitialJoinStateEEppEi) +STUB("W8tdMlttt3o", _Rteps) +STUB( + "W8xBSoxfiRU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB("W8zbyPhnRTc", _ZN3JSC7Symbols18finallyPrivateNameE) +STUB("W9-a7neoGvU", _ZN3sce2Np9CppWebApi11UserProfile2V16Avatar9unsetSizeEv) +STUB( + "W98Pf-UI4S4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEEptEv) +STUB( + "W99IHj03a20", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEEC1ERKSA_) +STUB("W9Dv01kgG+U", Java_java_util_zip_ZipFile_freeEntry) +STUB("W9Mm61ahvSA", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredTeamsEE19setCustomReturnCodeEi) +STUB("W9NPrRY-TQE", _ZTVN9Inspector31NetworkBackendDispatcherHandlerE) +STUB( + "W9PIRAMm9-Q", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126PlayStylePropertiesFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_19PlayStylePropertiesEEE) +STUB("W9Pq5q+bFC0", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_23NpSessionInvitationInfoEE3getEv) +STUB("W9VSuYfuzAI", _ZNK7WebCore18SecurityOriginData8toStringEv) +STUB( + "W9ibgZyeBKU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("W9lYgVU32Ro", _ZN7WebCore21NetworkStorageSession16flushCookieStoreEv) +STUB("W9oHsE8wkhE", + _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse21unsetCancellationTimeEv) +STUB( + "W9qJdIRd5rY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("W9rgXyvfzxI", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V117ConnectionQuality11globalIsSetEv) +STUB("WA+BL66sfO8", _ZN7CoreIPC14MessageEncoder6createENS_15StringReferenceES1_m) +STUB("WA+hOuCXEwA", ucal_openCountryTimeZones_67) +STUB( + "WA-Rz+Fbwqg", + _ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody18unsetMaxSpectatorsEv) +STUB( + "WA1YuBVbr8U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEED1Ev) +STUB( + "WA3pfR3aQWU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEC2Ev) +STUB("WA5aABD-JnA", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge18ChallengeThumbnailEE5resetEv) +STUB("WA65n4qVly0", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession22invitableUserTypeIsSetEv) +STUB("WA99GF74vT4", mono_image_get_entry_point) +STUB("WAIqT36MwJU", sceCesMbcsStrGetUcs2Len) +STUB("WAKEa6sKXJM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEED1Ev) +STUB("WANdfnEf9aw", uidna_labelToASCII_67) +STUB( + "WAOAQjKD6nA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("WAPkmrXx2o8", _ZNKSt7codecvtIwc9_MbstatetE5do_inERS0_PKcS4_RS4_PwS6_RS6_) +STUB("WARiQbzH7G4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEE3getEv) +STUB("WAat5MtCKpc", _ZN3sce2np8HttpFileD2Ev) +STUB( + "WAc59ifj6cw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE5clearEv) +STUB("WAkJKSa7fVU", mono_parse_options_from) +STUB("WAqrNQdt5qM", sceVnaStartKeyPhraseDetection) +STUB("WAzDJLd9Obo", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEEC2EPNS2_10LibContextE) +STUB("WAzWTZm1H+I", sceSaveDataTransferringMount) +STUB("WB0zfyMfYjk", sceKernelDebugPackageCorrupted) +STUB("WB2EKA1AdmM", cpp_demangle_read_uqname) +STUB("WB44+aPr3H4", _ZN3sce2Np9CppWebApi6Common6StringC2Ev) +STUB("WB66evu8bsU", sceKernelGetCompiledSdkVersion) +STUB("WBAO6-n0-4M", sceAudioOutAttachToApplicationByPid) +STUB("WBAnuHWNTP4", __kernel_cosl) +STUB("WBDbmI91FYs", _ZN3sce7Toolkit2NP2V27Session7Request17GetInvitationDataD1Ev) +STUB("WBNBaj9XiJU", sceFontCreateGraphicsDevice) +STUB("WBPErtBvp0M", scePlayReadyDomainLeaveGenerateChallenge) +STUB("WBQJDbBxH3E", sceDbgEnableExtraHeapDebugInfo) +STUB("WBQej5HVEvw", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEEppEv) +STUB( + "WBTY70wPH-s", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEppEv) +STUB("WBVzoUI6EiQ", _ZNSt9basic_iosIwSt11char_traitsIwEED2Ev) +STUB("WBWzsRifCEA", sem_trywait) +STUB("WBZrUaQY+EU", sceVideoOutHdmiMonitorInfoIsSupportedVideoOutMode_) +STUB("WBb17KuYpi0", + _ZN7WebCore15GraphicsContext15drawLineForTextERKNS_10FloatPointEfbbNS_11StrokeStyleE) +STUB("WBd4dKmJwJ0", _ZN12video_parser23VpMpegvideoMp4aParseDSIEPhiPNS_23VpMpegvideoMp4aDSIParamE) +STUB("WBdfglqfJBw", _ZN3sce7Toolkit2NP2V28Commerce7Request25ConsumeServiceEntitlementD1Ev) +STUB("WBeIG8BMvvQ", delProtocolInfoList) +STUB("WBgTbIYvODM", sceAt9EncEncode) +STUB("WBh3zfrjS38", sceNpTusGetMultiUserDataStatusAVUserAsync) +STUB( + "WBkH-ZvwBZw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEC1EPKS8_) +STUB("WBl4xQV+Nnk", kldunload) +STUB( + "WBoFapp-Io0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEC2Ev) +STUB("WBpqRt2gths", _ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_14XMLHttpRequestE) +STUB("WBxQfbet+nY", _ZN3WTF5MutexD2Ev) +STUB("WBxSQQ87efk", _ZN3sce7Toolkit2NP2V27Ranking12FriendsRanksC2ERKS4_) +STUB("WBzT8xAJYuo", mono_runtime_resource_limit) +STUB( + "WBzrDNqEOK4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE28getResponseInformationOptionEv) +STUB("WC1M6Pb+YEg", _ZN3JSC9Integrity14auditCellFullyERNS_2VMEPNS_6JSCellE) +STUB("WC216DD3El4", scePngDecDecode) +STUB("WC45U1JPW94", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE5beginEv) +STUB("WC7s95TccVo", sceFontGraphicsSetupGlyphFill) +STUB("WCGKU7ZOFU4", _ZNK3sce2Np9CppWebApi11UserProfile2V112BasicProfile23getIsOfficiallyVerifiedEv) +STUB("WCMjIvYqQl8", + _ZN7WebCore17PageConsoleClient10profileEndEPN3JSC14JSGlobalObjectERKN3WTF6StringE) +STUB( + "WCNy8ITBxZg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEC1Ev) +STUB("WCPKQC-I3ko", _ZN3sce7Toolkit2NP2V210Tournament20OneVsOneMatchDetails5resetEv) +STUB( + "WCPgXdpXXgY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEE7get_refEv) +STUB("WCRkgSz3mwA", GCC_except_table48) +STUB( + "WCT3D-HlAlM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("WCTsqoUEsTc", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed14PlayedWithFeedEED1Ev) +STUB("WCV0pmdA2pI", _ZN9Inspector14InjectedScript13inspectObjectEN3JSC7JSValueE) +STUB("WCYxrEsEjRI", _ZN7WebCore19JSHTMLSelectElement9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("WCayTgob7-o", sceNgs2VoiceGetPortInfo) +STUB("WCdM2x3oSxY", _ZNK3sce2Np9CppWebApi7Matches2V111AddedPlayer14accountIdIsSetEv) +STUB("WCfhxDeLGEs", sceCesRefersUcsProfileIso8859_11) +STUB("WCiQJB99pNg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEC1Ev) +STUB("WCrQ7baRnjE", _ZN3WTF10TextStreamlsEl) +STUB("WCsCHu0CyKY", _ZN3sce7Toolkit2NP2V210Tournament7BracketC2ERKS4_) +STUB("WCvMD6FtxcY", sceDeci4hDrfpRmdir) +STUB("WCzd3cxhubo", sceNpTusDeleteMultiSlotVariableVUserAsync) +STUB("WCzf02AY1FY", sceAppInstUtilAppUnInstallByUser) +STUB( + "WD-ColoRz7U", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "WD-kJ50N4aE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE7popBackEv) +STUB( + "WD4aqU0ocLA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V128SetMultiVariablesRequestBody19unsetNpServiceLabelEv) +STUB( + "WD6QZZBYhFg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEC2Ev) +STUB( + "WD8D2oq3huc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEixEm) +STUB( + "WDAxex-ETAs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "WDBHiwSX+bw", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_9Recording9InitiatorEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB("WDC9gVPN5Dw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEEC2EPS5_PFvS7_EPNS2_10LibContextE) +STUB( + "WDCF51UKivs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEptEv) +STUB("WDF7Xbc3hqA", _ZN3JSC8Debugger16removeBreakpointEm) +STUB("WDG0ZqpjoPY", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Error10getMessageEv) +STUB( + "WDJNmBGIuL8", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_11ProductInfoENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB( + "WDJnFzKT9ik", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEppEi) +STUB("WDKiJXAErgs", _ZN3JSC7Symbols32fulfillWithoutPromisePrivateNameE) +STUB("WDKzMM-uuLE", _ZNSt22_Future_error_categoryD0Ev) +STUB( + "WDPCEYrYJTE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEC1EPNS2_10LibContextE) +STUB("WDXCvc2O4hU", _ZNK7WebCore26HTMLTextFormControlElement21lastChangeWasUserEditEv) +STUB( + "WDXPNP2syeA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToSetMultiVariablesByUserC1Ev) +STUB("WDZ4PiF5f+E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEEC2EPKS6_) +STUB("WDZBKpiZOIo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEEC1Ev) +STUB("WDZgjwCSKFs", _ZN7WebCore16VisibleSelection22expandUsingGranularityENS_15TextGranularityE) +STUB("WDbZ1WsOBxc", _ZN7WebCore20LegacySchemeRegistry15isBuiltinSchemeERKN3WTF6StringE) +STUB("WDgrsyO-050", _ZN7WebCore22EmptyFrameLoaderClient31dispatchDidReachLayoutMilestoneEj) +STUB( + "WDh4uSOylno", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEC1EPS8_) +STUB( + "WDhdRDt5Cqc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEE5resetEPS6_) +STUB("WDjBY4VN+Pk", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEEptEv) +STUB( + "WDk+oSOpydY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "WDoR30qJAug", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEC1EPS8_) +STUB("WDpobjImAb4", wcsstr) +STUB("WDszmSbWuDk", sceKernelAddUserEventEdge) +STUB("WDvmrf+Kn3Y", _ZN3JSC7Symbols24generatorThisPrivateNameE) +STUB("WE0-4xvquLU", + _ZN3sce2Np9CppWebApi7Matches2V121ResponsePlayerResultsC2EPNS1_6Common10LibContextE) +STUB("WE03NFCufbs", WKContextGetOriginDataManager) +STUB( + "WECWCayQVcQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "WEEilwQPEtQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEED1Ev) +STUB("WEFfPZlSIJs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEcvbEv) +STUB( + "WEG4kxCoWDA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEaSERKS9_) +STUB( + "WEJncztFf04", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEC2ERKS7_) +STUB( + "WEKtamcbO64", + _ZN7WebCore26PresentationOrderSampleMap39findSampleStartingAfterPresentationTimeERKN3WTF9MediaTimeE) +STUB("WEOesaZ5EP4", _ZTVN9Inspector23TargetBackendDispatcherE) +STUB("WEVBe0m-ZBo", _ZN3WTF15AutomaticThreadD0Ev) +STUB("WEVIlPFp9Rk", _ZN7WebCore10FileHandle6printfEPKcz) +STUB( + "WEVlFv6cxgI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEC1Ev) +STUB( + "WEZJd8dOm-g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("WEaj30cTtgk", _ZNK7WebCore11HistoryItem27shouldRestoreScrollPositionEv) +STUB("WEd+Yfs8auY", _ZN7WebCore15UserInputBridge12tryClosePageENS_11InputSourceE) +STUB("WEd2137pGp8", _ZN7WebCorelsERN3WTF10TextStreamERKNS_10LayoutUnitE) +STUB( + "WEhtKpiM33w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEEC2ERSA_) +STUB("WEjkgLN1UKo", _logf_impl) +STUB("WEmazaGjnlc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEC2Ev) +STUB( + "WEn+SF5N1JM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEE3getEv) +STUB("WEnpMBnXS7w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEE11release_refEv) +STUB( + "WEqWXhQFP7Y", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions7hasviewEv) +STUB( + "WEyrkrnR2KI", + _ZN3sce2Np9CppWebApi14SessionManager2V134PostGameSessionsSearchResponseBody8fromJsonERKNS_4Json5ValueE) +STUB("WF+3cg6PnfU", _ZN3sce7Toolkit2NP18SessionInformation5resetEv) +STUB( + "WF4JKfQVHqg", + _ZN7WebCore32ScrollingStateFrameScrollingNode23setEventTrackingRegionsERKNS_20EventTrackingRegionsE) +STUB("WF4fBmip+38", vfwscanf) +STUB( + "WF6q2ea6sjY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEED1Ev) +STUB( + "WF7CmdQTCwc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEED2Ev) +STUB( + "WF897AyurMQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("WFC4RUl+bm0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEEC1EPNS2_10LibContextE) +STUB("WFIiSfXGUq8", scePadOpenExt) +STUB("WFLFSRXPRn0", WKNotificationCopyIconURL) +STUB("WFQ5IKTMQs0", _ZNK3WTF24TimeWithDynamicClockType19approximateWallTimeEv) +STUB( + "WFSZqolWiHw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEneERKS9_) +STUB("WFTApdf-HJE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEdeEv) +STUB("WFTOZxDfpbQ", _ZNSt13_Num_int_base14is_specializedE) +STUB("WFampmsesU4", _ZN3sce7Toolkit2NP2V28Commerce11SubCategoryD1Ev) +STUB("WFcfL2lzido", sceKernelQueryMemoryProtection) +STUB("WFp9BrIB-H4", _ZN7WebCore9FloatRect11fitToPointsERKNS_10FloatPointES3_S3_S3_) +STUB("WFq71Jyf+ww", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEaSERKS9_) +STUB("WFrVvA9uHU0", _ZN3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsersD2Ev) +STUB( + "WFsAdy74PB4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEE11release_refEv) +STUB( + "WFu+VAJ-NOs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB( + "WFu8BgTppXM", + _ZN3sce2Np9CppWebApi14SessionManager2V132PlayerSessionNonPsnPlayerFactory6createEPNS1_6Common10LibContextEPKcS9_S9_PNS5_12IntrusivePtrINS3_25PlayerSessionNonPsnPlayerEEE) +STUB( + "WFvjv9dwLD8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEE7add_refEv) +STUB( + "WFxD6xIzoSo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEaSERKS9_) +STUB("WG+m1SapaEk", _ext_cleanup) +STUB("WG0FogBKXRU", mono_aot_Sce_Vsh_Np_Udsunbox_trampolines_end) +STUB( + "WG1BVDzWrQg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEixEm) +STUB( + "WG4+JsRPa3k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEE7get_refEv) +STUB("WG75PDz2IPY", Java_java_util_zip_Deflater_getAdler) +STUB("WG7lrmFxyKY", _ZTSSt9type_info) +STUB( + "WGBJW-dErKY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEdeEv) +STUB( + "WGBV9zDbxHE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEE5resetEPS9_) +STUB("WGD6fCc9rzM", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_26ActivityFeedCondensedStoryEEC2Ev) +STUB("WGDthafHGRA", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container14unsetPublisherEv) +STUB("WGF5RauN6o8", _ZN3sce7Toolkit2NP2V210Tournament22TeamVsTeamMatchDetailsC2ERKS4_) +STUB("WGKQ359T744", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEppEv) +STUB("WGMIvi5pBKg", _ZN3sce2Np9CppWebApi7Matches2V119ResponseTeamResults22unsetTeamMemberResultsEv) +STUB("WGQ1H+AetkE", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable22getLastUpdatedDateTimeEv) +STUB( + "WGRFwbx44y4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE5beginEv) +STUB("WGRwdawKWFg", mono_image_get_guid) +STUB( + "WGU+pJ2JIrc", + _ZN7WebCore24TemporarySelectionChangeC1ERNS_8DocumentEN3WTF8OptionalINS_16VisibleSelectionEEENS3_9OptionSetINS_24TemporarySelectionOptionEEE) +STUB("WGXOvoUwrOs", sceUserServiceGetCreatedVersion) +STUB( + "WGZBhTG3AUM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE3endEv) +STUB( + "WGZiyfpqtqI", + _ZN7WebCore7UIEvent11initUIEventERKN3WTF12AtomicStringEbbONS1_6RefPtrINS_11WindowProxyENS1_13DumbPtrTraitsIS6_EEEEi) +STUB("WGa5Oh8Kd8E", _ZN15AbstractStorage18DailymotionStorageD2Ev) +STUB("WGibJM7B4k4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEEC2ERS6_) +STUB("WGpHmUU-UoU", _ZN7WebCore21DiagnosticLoggingKeys28isReloadIgnoringCacheDataKeyEv) +STUB( + "WGq5at5n7TQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEC2EPKS8_) +STUB("WGzXiFzpXQQ", _ZN3sce2Np9CppWebApi13InGameCatalog2V520ContainerRatingCount10unsetCountEv) +STUB("WH0fAB8IaaA", _ZNK3WTF10StringImpl10startsWithEPKcj) +STUB( + "WH12l2QGXqI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEaSERKS7_) +STUB("WH4lL5q58HY", il2cpp_string_new_utf16) +STUB("WH6O4hriE-0", sceShellCoreUtilGetSplashScreenState) +STUB( + "WH6fUUj9cAQ", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUserD1Ev) +STUB("WH6phgWx6TI", hb_font_set_funcs) +STUB( + "WH7XEZ+J0eA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEC1EPS8_) +STUB("WHFODBOGoB4", _ZN3JSC2VM21symbolObjectSpaceSlowEv) +STUB( + "WHKEG4yjZRY", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersaSERS5_) +STUB("WHLVam6hZZ4", sceNpSnsTwitchGetAccessToken) +STUB( + "WHNNeWu9Y+0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE5beginEv) +STUB("WHXv+GaKSXc", delegate_virtual_invoke_imt_m_19_p) +STUB( + "WHat-RigiCY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEC2EPS8_) +STUB("WHbCMRxlzCk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEEaSERS7_) +STUB( + "WHeoeqBBtlY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEC1EPS8_) +STUB("WHfJAqAkTK4", sceDeci4hDrfpReserveBuffer) +STUB( + "WHijXHd-mJg", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi47ParameterWithBinaryRequestBodyToRecordLargeData10initializeEPNS1_6Common10LibContextEiNS4_26ParameterToRecordLargeData19XPsnAtomicOperationEPKcPKhm) +STUB("WHqXGsSe+1w", _Z16WTFCrashWithInfoiPKcS0_imm) +STUB("WHqhzve17Eg", _ZNK7WebCore16HTMLInputElement11isDateFieldEv) +STUB( + "WHyVXNNOQCY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEcvbEv) +STUB( + "WI0pT1qPXvI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE3endEv) +STUB( + "WI6e-CMmlOI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE8pushBackERKS8_) +STUB("WIEUJ61AwvU", sceShellCoreUtilIsScreenSaverOn) +STUB("WIGwUmVdp+Y", glGetQueryObjectui64vEXT) +STUB("WILUF-jNJkA", s) +STUB( + "WIMIOtyeVnI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB( + "WIMKbdeB318", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEmmEv) +STUB("WIO3e7dTaik", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEED2Ev) +STUB("WISL-JH-6Ic", sceShellCoreUtilGetAppData) +STUB( + "WIUQ2tO7aJE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "WIV01QS+xsc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEE3getEv) +STUB("WIWV1Qd7PFU", sceUltWaitingQueueResourcePoolGetWorkAreaSize) +STUB("WIfhTh-Bn4Q", _ZN3sce7Toolkit2NP2V28Matching12Notification11RefreshRoomaSERKS5_) +STUB("WIg11rA+MRY", drand48) +STUB("WIg6SqKzm+I", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_8TempRankEE17getAdditionalInfoEv) +STUB( + "WIjAIu9I0I4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEE3getEv) +STUB("WIjYGtKMXEY", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Error10setMessageEPKc) +STUB( + "WIjtuszLN0A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEC2EPS8_) +STUB("WIkuITeINl8", sceDebugCreatePerfScratchExecutableArea) +STUB("WIlLwVKWows", sceDepth2SetRoi) +STUB( + "WIohpBgDjuE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEE7get_refEv) +STUB("WIvTHYs7ZQQ", FT_New_GlyphSlot) +STUB( + "WIxiNVXHf2s", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEC2Ev) +STUB("WIy-IYyHXE4", Java_com_sony_bdjstack_core_CoreApp_getClasspathExtension) +STUB( + "WIyqlT34+mI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC1ERSA_) +STUB("WJ3jVfDhetY", _Z30Camera_IsCameraConnectedNativeiPb) +STUB("WJ3rqFwymew", sceRtcFormatRFC3339) +STUB("WJ4Wk+Gmx7Q", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEEptEv) +STUB("WJ4ngusnbac", _ZN3JSC7Symbols42AsyncGeneratorSuspendReasonNonePrivateNameE) +STUB( + "WJ81qFR8Kw8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("WJ9t6p4+b7Y", _ZN3sce7Toolkit2NP2V210Tournament14RegisteredUserC1Ev) +STUB("WJGLmpR8pYs", mono_aot_Sce_Vsh_Np_Asmjit_got) +STUB( + "WJIjmhsQgNY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE5abortEv) +STUB( + "WJKDBZxiTjU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEEptEv) +STUB("WJKHII-Mjrk", _ZN7WebCore8SVGNames14alphabeticAttrE) +STUB("WJLWjZr-X+E", YGNodeStyleGetDisplay) +STUB( + "WJRdNpAmQ2o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEEaSERSA_) +STUB("WJSMAYu7bIc", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V110Reputation8fromJsonERKNS_4Json5ValueE) +STUB("WJSeWoz-Ew0", _ZNK7WebCore18TextureMapperLayer16adjustedPositionEv) +STUB("WJTGKfpoa1Q", _ZN3sce3pss4core14IntHandleTable13NextIntHandleEv) +STUB("WJU5VlsbNAc", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOfferC2Ev) +STUB("WJU9B1OjRbA", _ZTVN6Dinkum7threads10lock_errorE) +STUB("WJV0RYOEc-E", sceNpManagerIntPsnCoreInternalTest) +STUB("WJXuUnREXZ4", _ZN3JSC18enableSuperSamplerEv) +STUB( + "WJZ8vQtZvGs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEdeEv) +STUB("WJkpnZkmw9Q", + _ZN7WebCore17cacheDOMStructureERNS_17JSDOMGlobalObjectEPN3JSC9StructureEPKNS2_9ClassInfoE) +STUB("WJm3lpREZjA", monoeg_g_ptr_array_remove_index) +STUB("WJvZT3w0hJU", _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeIPcPvEE8allocateEmPKv) +STUB("WJwr++p078o", _ZN3sce7Toolkit2NP2V26Trophy16UnlockedTrophies19MAX_NUMBER_TROPHIESE) +STUB( + "WK0W9fbBKCY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEC2ERKS7_) +STUB("WK24j1F3rCU", _ZNSt8numpunctIcEC1EPKcmb) +STUB("WKAIMotTzDs", sceCompositorSetScalingLayoutInfo) +STUB("WKAXJ4XBPQ4", scePthreadCondWait) +STUB( + "WKEwM4kuIns", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("WKFZri7s-Wo", pio4_lo) +STUB("WKFvkCZNYOo", sceSdecDestroySwHevc) +STUB("WKL2HBZDsgw", _ZN3sce2Np9CppWebApi6Common6VectorIiE10setContextEPNS2_10LibContextE) +STUB("WKL8fvTTX2I", _ZThn16_N9Inspector21InspectorRuntimeAgent13releaseObjectERN3WTF6StringERKS2_) +STUB("WKLgUAHhFxs", _ZN9Inspector31NetworkBackendDispatcherHandlerD2Ev) +STUB("WKOxC3orqKk", _ZN3WTF10StringView16GraphemeClusters8IteratorC1EOS2_) +STUB("WKSbBGEdSCs", JVM_Lseek) +STUB("WKUanh-oVyc", WKPluginInformationPluginspageAttributeURLKey) +STUB("WKYgMnUvhdA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEC1ERKS7_) +STUB( + "WKZ9SpD03ug", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEC1Ev) +STUB("WKcm4PeyJww", sceNpWebApiAbortHandle) +STUB( + "WKd4AEZV2-8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("WKpL8I4AQns", _ZN3sce2Np9CppWebApi6Common6VectorIjED2Ev) +STUB("WKqHz0DYzN0", rgctx_fetch_trampoline_mrgctx_27_p) +STUB("WKwHWrPWJE0", _ZN3JSC18sanitizeStackForVMEPNS_2VME) +STUB("WKwiPRJSaZc", AnnotateBenignRace) +STUB("WKxOVIkISxA", sceShellCoreUtilGetSystemBGState) +STUB("WL+wN+apItI", monoeg_g_hash_table_remove) +STUB("WL2PIOhJfQs", sceCesUtf32ToUhc) +STUB("WL3-5Uysf2s", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEEaSERKS6_) +STUB( + "WL5nOpm4gkQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEED2Ev) +STUB("WLEmFxnh71I", WKPreferencesGetSimpleLineLayoutEnabled) +STUB("WLErcZgv+K4", rgctx_fetch_trampoline_mrgctx_120_p) +STUB( + "WLGE9j6rSMs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEEC1ERKSA_) +STUB("WLHs+P4YVIc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEEC1ERS6_) +STUB("WLQGuoVmdMQ", sceBgftServiceIntDebugPlayGoRevertToSnapshot) +STUB("WLSXZDoXJIk", _ZN7WebCore12JSTimeRanges6s_infoE) +STUB("WLUZ8bqG5kU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEptEv) +STUB( + "WLWoiRRFFYw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEC1EPS8_) +STUB( + "WLY-vZRhYN8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEixEm) +STUB("WLaUXcixYPw", _ZNK3sce3Xml13AttributeList12getAttributeEj) +STUB("WLc7oPjEIoo", mono_btls_x509_verify_param_can_modify) +STUB( + "WLdDxIWd3GE", + _ZNK7WebCore21NetworkStorageSession18shouldBlockCookiesERKNS_15ResourceRequestEN3WTF8OptionalINS4_16ObjectIdentifierINS_19FrameIdentifierTypeEEEEENS5_INS6_INS_18PageIdentifierTypeEEEEENS_35ShouldRelaxThirdPartyCookieBlockingE) +STUB( + "WLhAoA3oLfE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEE6assignEPS7_PFvS9_EPNS2_10LibContextE) +STUB( + "WLhbWeUEW9o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEppEv) +STUB( + "WLhhjC7-z2s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB("WLi0ClUXIVk", sceFsUmountLwfs) +STUB("WLmpwqWbSnI", g_ascii_strncasecmp) +STUB( + "WLoO-knTlR4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE4sizeEv) +STUB("WLoOrEfsob4", UCNV_TO_U_CALLBACK_STOP) +STUB( + "WLsxpNK0wZw", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser12setaccountIdEPKc) +STUB("WLtt3cCKTB8", __remquof) +STUB("WLvcNvgAd-o", _ZN3sce7Toolkit2NP2V210Tournament14RegisteredTeam8deepCopyERKS4_) +STUB("WLwUxYj3jAc", sceNpSnsDailymotionDialogInitialize) +STUB("WLxUN2WMim8", sceImeSetCaret) +STUB( + "WLyQ2GBZ6iU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEEC1Ev) +STUB( + "WLzX4-Q4Wrg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("WM+2GjrydWU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEEC2EPS6_) +STUB("WM280zkYArQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEdeEv) +STUB("WM4KfSxNA3I", CryptographyEncryptAES128CBC) +STUB("WM5DPO-LryU", _ZN3sce2npeqERKNS0_13NpTitleSecretES3_) +STUB("WM9zQ4pPzXU", _ZNK3sce2Np9CppWebApi11Matchmaking2V110UserTicket6toJsonERNS_4Json5ValueEb) +STUB( + "WMARH5lpmlw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEeqERKS9_) +STUB("WMBup7YfG1I", _ZThn136_N7WebCore16HTMLMediaElement14beginScrubbingEv) +STUB( + "WMCj8rPWa4U", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V333CommunicationRestrictionStatusApi44ParameterToGetCommunicationRestrictionStatusC1ERS5_) +STUB("WMCwnOQzHs4", mono_aot_Sce_Vsh_AutoMounterWrapperplt) +STUB("WME1vtuIAzc", _ZNK3WTF9MediaTime7toFloatEv) +STUB( + "WMESc0VWYg8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEED1Ev) +STUB( + "WMGKmhyaYEA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEEC2EPS8_PNS2_10LibContextE) +STUB("WMKbU8yw9co", mono_aot_Sce_Vsh_Sl2_Sl2Delivermethod_addresses) +STUB( + "WMShatqan74", + _ZN3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsTouchResponseBodyC2EPNS1_6Common10LibContextE) +STUB( + "WMTLDy7d4xQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEEC1ERSA_) +STUB("WMUF6eteYNA", _ZN7WebCore17HTMLSelectElement4itemEj) +STUB("WMV2-2v7vDQ", _ZN3PAL9SessionID27generatePersistentSessionIDEv) +STUB("WMbGhVwMBrQ", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils13NetStateBasicEEC1Ev) +STUB( + "WMhTQ5eQQpw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("WMhw0IVNNC8", sceVdecCoreTrySyncDecodeOutputSw) +STUB("WMiHOVv7EKo", _ZNK7WebCore24RotateTransformOperation19isRepresentableIn2DEv) +STUB("WMm7geoOfRo", sceCesRefersUcsProfileCp1256) +STUB("WMmW8ChmYdE", _ZN7WebCore16HTMLInputElement11selectColorEN3WTF10StringViewE) +STUB( + "WMnSX+C+qwk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("WMpTxKngZOg", xmlCreatePushParserCtxt) +STUB("WMw8eIs0kjM", _ZNKSt10bad_typeid8_DoraiseEv) +STUB( + "WMxCdey-GsU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE5clearEv) +STUB("WN1v3xYoGDw", sceShellCoreUtilDownloadHidConfigFileFromServer) +STUB( + "WN26C5qp7ZY", + _ZN3JSC4Heap20addMarkingConstraintESt10unique_ptrINS_17MarkingConstraintESt14default_deleteIS2_EE) +STUB("WN5y0dZmRH4", monoeg_g_dir_read_name) +STUB("WN6O1SjvVRo", _ZN9Inspector27PerGlobalObjectWrapperWorldC2ERKS0_) +STUB("WN7-38hHiLk", + _ZNK3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectator14getCustomData1Ev) +STUB( + "WN70-HsdL4I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEixEm) +STUB( + "WN8MUUVljFU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEE3getEv) +STUB( + "WNF-ku3GFgQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB("WNFkVo3VqCo", mono_assembly_load_module) +STUB("WNFlHZuJ8iU", _ZN3sce7Toolkit2NP2V210Tournament17OfficialBroadCastC2ERKS4_) +STUB("WNHbacTXPrw", sceDataTransferTargetGetTransferProgress) +STUB("WNIV7+VKQaA", sceVideoCoreInterfaceInitializeInterface) +STUB("WNK0UpGK8Ws", _ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriendsC1Ev) +STUB( + "WNMSNT4IONM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEneERKS9_) +STUB( + "WNPYDTZMbCw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE7popBackEv) +STUB( + "WNTvpooyj-s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEppEi) +STUB("WNXNRq0O8PY", _ZN3WTF14FileSystemImpl9closeFileERi) +STUB("WNbGogbL2TY", JNI_OnLoad) +STUB( + "WNfKSQqw4sk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "WNixNYSa540", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE5clearEv) +STUB("WNmE+qXnYtg", sceNpManagerIntGetWebAppToken) +STUB("WNrURc2cQKE", __asan_stack_free_1) +STUB( + "WNsX8jbshEU", + _ZN3sce2Np9CppWebApi14SessionManager2V130RequestPlayerSessionInvitationC2EPNS1_6Common10LibContextE) +STUB("WNtLIzIZfoU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEppEi) +STUB( + "WNuUCppVYj0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEE6assignEPS7_PFvS9_EPNS2_10LibContextE) +STUB("WNxCIjZdcTo", sceMbusDisconnectDevice) +STUB("WNy4x8pRMSg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEED2Ev) +STUB("WNyjOWq8-Vk", sceAgcDriverGetSetWorkloadCompletePacketSize) +STUB( + "WNyoHCf5-zg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEppEi) +STUB("WO0EaJJT4Dk", _ZN15AbstractStorage18DailymotionContent5CloseEv) +STUB( + "WOL3DSY+JUE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEEC1ERS8_) +STUB("WOQwRd6ifs8", _ZN3sce7Toolkit2NP2V210Tournament25BracketInformationOfMatchC1ERKS4_) +STUB( + "WOURlEkgPj0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEED1Ev) +STUB("WOWhhNf1a7A", _ZN3NTF21URLRequestFormElement4typeEv) +STUB("WOaDAsiURis", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEEplEm) +STUB("WOacvEO6fhk", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanityD1Ev) +STUB("WOjpm4i--Y4", sqlite3_errstr) +STUB("WOnjgn0fFpQ", _ZN3sce3web16InitializeCsharpEm) +STUB("WOpgqv-wJEY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEC1ERS7_) +STUB("WOtHs6-3ft8", _ZN7WebCore20TransformationMatrix6blend2ERKS0_d) +STUB( + "WOvfGyHnKJc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEneERKS9_) +STUB( + "WOy0raHpzxs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEneERKS9_) +STUB( + "WP3ieb1BkXc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEppEi) +STUB("WPBiUIzH4z4", sceWorkspaceApplyUpdate) +STUB("WPBkj5Km-fU", mono_aot_Sce_Vsh_MimeTypeunwind_info) +STUB("WPC2olPWOtE", _ZN3sce7Toolkit2NP2V210Tournament10TournamentD2Ev) +STUB("WPIB7zBWxVE", scePadGetMotionSensorPosition) +STUB("WPMGBc4K03Y", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence12Notification14PresenceUpdateEE5resetEv) +STUB("WPMkuXW1O7o", mono_aot_Sce_Vsh_WebViewDialogplt) +STUB("WPQDATc5Ozs", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119ChildActivityStatusEEppEi) +STUB("WPSr7BikUnE", + _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody24setNeedsRecordedDateTimeERKb) +STUB( + "WPUOwFZu7UQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE4sizeEv) +STUB( + "WPUPF-anHIQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEE5resetEPS6_) +STUB("WPXxdWF+FgQ", WKPreferencesGetUseGiantTiles) +STUB( + "WPZAiIP+hoI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("WPZPyKB1qYY", _ZN7WebCore6Editor7CommandC1Ev) +STUB("WPfUw-edN-s", __ubsan_handle_nonnull_return_v1_abort) +STUB( + "WPmql8csrEc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEE5resetEPS9_) +STUB( + "WPrALw-f8v4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEixEm) +STUB("WPrktCwd+iw", res_getPublicType) +STUB( + "WPsHeJ4zpmI", + _ZN9Inspector25NetworkFrontendDispatcher18webSocketFrameSentERKN3WTF6StringEdNS1_6RefPtrINS_8Protocol7Network14WebSocketFrameENS1_13DumbPtrTraitsIS8_EEEE) +STUB("WPv7o3ukQSI", _ZNK3sce2Np9CppWebApi13InGameCatalog2V55Error12messageIsSetEv) +STUB("WPvQCdvn+6U", + _ZN9Inspector20InspectorTargetAgentC1ERNS_14FrontendRouterERNS_17BackendDispatcherE) +STUB("WPvvEKLEX2c", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicketC1Ev) +STUB("WPyTFrUZMxQ", + _ZN15AbstractStorage12LocalStorage9SerializeESt10shared_ptrINS_7ContentEES1_INS_4ItemEE) +STUB("WPyn5rEy2DE", _ZNK3sce3Xml3Dom8Document9getStatusEv) +STUB( + "WQ-M-6pEo3A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEEC1ERSA_) +STUB("WQ-l-i2gJko", sceUserServiceSetVolumeForSidetone) +STUB( + "WQ0nGarhFOE", + _ZN9Inspector20CSSBackendDispatcher17setStyleSheetTextElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "WQ1zSfz7AJM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEEdeEv) +STUB("WQ6AFryD-OM", _ZNK7WebCore21PageOverlayController24documentOverlayRootLayerEv) +STUB( + "WQ7tWY9mhiI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE21intrusive_ptr_sub_refEPS9_) +STUB("WQHqbbvC9O4", _ZNK3WTF9MediaTimemlEi) +STUB( + "WQK8hN6ZRh4", + _ZNK7WebCore18ImageBufferBackend15copyImagePixelsENS_22AlphaPremultiplicationENS_11ColorFormatEjPhS1_S2_jS3_RKNS_7IntSizeE) +STUB("WQQlL0n2SpU", _ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED0Ev) +STUB( + "WQSvl8cO-6o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEEC2ERKSA_) +STUB("WQTNdq5mPFM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEdeEv) +STUB("WQVNCJkcmXc", sceAvSettingIsSupportedHdcpVersionByHdmiMonitorInfo) +STUB("WQXG5v4x1Gc", uspoof_setChecks_67) +STUB("WQYKEfGNsZA", __tsan_testonly_barrier_wait) +STUB( + "WQYWXu392Ro", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE6isBusyEv) +STUB( + "WQZrU3IZwm0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("WQbIW7cm-Bc", sceBgftServiceInit) +STUB("WQbjb+C736Q", _ZN3JSC11ArrayBuffer9tryCreateERS0_) +STUB("WQgbF+HzrPE", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationProperties18setNumberOfMatchesERKi) +STUB("WQhzwyaq4i8", sceAudiodReportLoudness) +STUB( + "WQjhOVnmErI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEE7add_refEv) +STUB("WQlN7uMwr+o", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V224TestForProfanityResponse8fromJsonERKNS_4Json5ValueE) +STUB( + "WQoKwfZOSG4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEC2EPS8_) +STUB( + "WQpWuCWWLqU", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi15recordLargeDataEiRKNS4_47ParameterWithBinaryRequestBodyToRecordLargeDataERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_27RecordLargeDataResponseBodyEEENSA_INS4_30RecordLargeDataResponseHeadersEEEEE) +STUB("WQrEeR00GGo", _ZN7WebCore18JSHTMLImageElement6s_infoE) +STUB("WQszar0JVgQ", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge13ChallengeDataEEC1Ev) +STUB("WQtNbhFvxio", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE7popBackEv) +STUB("WQuiyk8ZL6M", uprv_copyEbcdic_67) +STUB("WQyodZEzeoM", Java_com_sony_gemstack_io_FilePath_n_1opendir) +STUB("WR19W1gFzTc", xmlInitParser) +STUB( + "WR2p+F-Xf3g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEC1EPS8_) +STUB("WR4mjQeqz6s", _ZN3sce2np14CalloutContextD0Ev) +STUB("WR6Qai2xB+A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE3endEv) +STUB("WR6ho9coRQ4", _ZNK7WebCore17HTMLAnchorElement6originEv) +STUB("WR7XsLdjcqQ", sceHmdInternalCheckS3dPassModeAvailable) +STUB( + "WR8Z3LU+dMQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE3endEv) +STUB("WRBCEhbuHHQ", _ZNK7WebCore10TimeRanges3endEj) +STUB("WRI6UbE+nNE", _Z34VideoPlayerVcs_GetBufferedPositioniPmS_) +STUB( + "WRM2faTaBTo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEEaSERKSA_) +STUB( + "WRVOXjyNeNM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("WRVY82uPSvU", _ZNK3sce2Np9CppWebApi14SessionManager2V111GameSession9getMemberEv) +STUB( + "WRVrkkOm2xE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("WRfSxgIk43M", _ZN9Inspector32TimelineBackendDispatcherHandlerD2Ev) +STUB( + "WRiVOEl8rIQ", + _ZN7WebCore11MediaPlayer25clearMediaCacheForOriginsERKN3WTF6StringERKNS1_7HashSetINS1_6RefPtrINS_14SecurityOriginENS1_13DumbPtrTraitsIS7_EEEENS1_11DefaultHashISA_EENS1_10HashTraitsISA_EEEE) +STUB( + "WRnJyziDLxk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEC2EPKS8_) +STUB("WRneJseWY0A", fuse_fs_utimens) +STUB( + "WRo8-qJatdA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEC2Ev) +STUB( + "WRrSjdirJTI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEED1Ev) +STUB("WRvDk2syatE", sceNetCtlRegisterCallbackForLibIpcInt) +STUB("WRw+RVYo7jA", mono_aot_Sce_Vsh_Np_ServiceCheckerunbox_trampoline_addresses) +STUB("WS+7Pxb5gNg", glUniform4iv) +STUB( + "WS3XkDdBnXY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE8copyFromERKS9_) +STUB( + "WS4gB6ndjLA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEE3getEv) +STUB( + "WS5mdU3+Iy8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE6resizeEj) +STUB( + "WS6b8Op6n-E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEC2EPS8_) +STUB("WS7uPTZ0WCs", sceKernelSetBesteffort) +STUB( + "WSAUGNqRyfU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "WSCaPL9Cbeo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEC2EPS8_) +STUB( + "WSHfqGShWpw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEdeEv) +STUB( + "WSJ+AsYOeNk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("WSOAkqohyZ4", EVP_DigestSignInit) +STUB("WSOqB5LYtPc", mono_aot_Sce_Vsh_Np_AuCheckunwind_info) +STUB("WSOuge5IsCg", _ZN3sce4Json14InitParameter2C1Ev) +STUB("WSQxnAVLKgw", sceNpServerErrorJsonParse) +STUB("WSR3IB4T2Es", mono_g_hash_table_insert) +STUB("WSSLio6zQ9I", _ZN12Mp4Retriever15processMetaYearEv) +STUB( + "WSVEq326md0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEeqERKS9_) +STUB("WSYdDVzo0mY", mono_aot_Sce_Vsh_ErrorDialogUtilWrapperunwind_info) +STUB("WSaroeRDE5Q", _LXbig) +STUB("WScz3+NnifQ", u_strcpy) +STUB("WSdjcfSKkSI", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V113SubtaskStatusEEC2EPS6_) +STUB("WSiZNjSOyqM", + _ZN7WebCore22EmptyFrameLoaderClient23dispatchDidReceiveTitleERKNS_19StringWithDirectionE) +STUB("WSjbYbR2LJ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEEC2Ev) +STUB( + "WSjv5a82BRo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEC1EPKS8_) +STUB( + "WSm2C3szBls", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEC2EPS6_PNS2_10LibContextE) +STUB("WSqWRn8oiXA", delegate_virtual_invoke_26) +STUB("WT-5NKy42fw", sceKernelAprResolveFilepathsToIds) +STUB("WT4k6XEZ8Eo", + _ZNK3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer10getNatTypeEv) +STUB("WT5hOLhCPUg", sceNpUniversalDataSystemIntDeleteAllData) +STUB( + "WT6YUgogPQ4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEC2Ev) +STUB( + "WT77mtL6tmE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEEC2Ev) +STUB( + "WT8JIIvNtx0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB("WTDVVUMuZo0", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V125NatConnectivityProperties11getFromNat2Ev) +STUB("WTJCJgIaCqw", Java_sun_awt_image_PNGImageDecoder_decodeColor83) +STUB( + "WTLNVcgSwCI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEC2ERKS7_) +STUB("WTOiJ2zqWjk", sqlite3_create_function) +STUB("WTXZNEeVd0M", llvm_throw_corlib_exception_abs_trampoline_p) +STUB( + "WTZ8yHze-iE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "WTlehjhlytk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "WTnDTMDPZ8o", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivitiesC2Ev) +STUB( + "WTrVHndLM3I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE5emptyEv) +STUB( + "WTt9y7MJxsU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEED1Ev) +STUB("WTtYf+cNnXI", _ZN3sce4Json5ValueD1Ev) +STUB("WTtl0nhAMNU", _ZN3sce7Toolkit2NP2V27Session7Request14SendInvitationD2Ev) +STUB("WTz-MXsYDy4", _ZN3sce7Toolkit2NP2V27Session7Request6Create17MAX_LOCALIZATIONSE) +STUB( + "WU-IsZ1th88", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE7reserveEi) +STUB( + "WU4eHoqbTKg", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("WU5s+cPzO8Y", sceUserServiceSetHmuBrightness) +STUB("WU9IUHm2Kgs", _ZN7WebCore6ISOBoxC2Ev) +STUB("WUASruwvl+E", _ZN7WebCore7IntSizeC1ERKNS_9FloatSizeE) +STUB( + "WUAj5Dx39Jk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE21intrusive_ptr_add_refEPS9_) +STUB("WUCtKFZt6a0", _ZN3sce7Toolkit2NP2V210Tournament7Request19GetRegisteredRosterD2Ev) +STUB( + "WUKRhjNO8vE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEC1EPS8_) +STUB("WUKXnNDqQrM", ScePsmMonoArrayLength) +STUB("WULWTEqDWFE", _ZN3JSC16SamplingProfiler18reportTopBytecodesEv) +STUB("WUXkX70ly+8", sceAppInstUtilAppUnInstallTheme) +STUB("WUZiQnZvttc", i2a_ASN1_OBJECT) +STUB("WUa0o9AnJFg", _ZN7WebCore12TextEncodingC1ERKN3WTF6StringE) +STUB("WUan2x6u318", _ZN7WebCore19ProtectionSpaceBaseC2Ev) +STUB("WUjJDLwXn2g", _ZN3sce2Np9CppWebApi7Matches2V113ErrorResponseD2Ev) +STUB("WUnKWYhxIvQ", _ZN9Inspector17ScriptDebugServerD0Ev) +STUB( + "WUnYtNpXkdk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE3endEv) +STUB("WUnaxQ1WUBc", _ZNK3sce2Np9CppWebApi6Common6VectorIiE3endEv) +STUB("WUofQBeNwlo", _ZTVN7WebCore26ContextDestructionObserverE) +STUB( + "WUowt9SHwdo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEC1Ev) +STUB( + "WUqVrto4TxI", + _ZN7WebCore27verifyVaryingRequestHeadersEPNS_21NetworkStorageSessionERKN3WTF6VectorISt4pairINS2_6StringES5_ELm0ENS2_15CrashOnOverflowELm16ENS2_10FastMallocEEERKNS_15ResourceRequestE) +STUB("WUuB5pmqW1Y", _ZN7WebCore11FrameLoader4initEv) +STUB("WUvblia5rz0", unum_setAttribute_59) +STUB("WUxUtR32MK8", mono_free_bstr) +STUB("WV1GwM32NgY", sceNpWebApi2PushEventCreateHandle) +STUB("WV94zKqwgxY", _ZTIPKb) +STUB( + "WV9y653hEmc", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody23totalVariableCountIsSetEv) +STUB("WVB9rXLAUFs", _ZNSt12placeholders3_18E) +STUB("WVBXdDlF1TE", sceEditMp4InitializeParam) +STUB( + "WVDUiyblJXA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEE11release_refEv) +STUB("WVDyhysv8q4", EC_KEY_generate_key) +STUB( + "WVF0t59elu0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEeqERKS9_) +STUB("WVGf2ERH8OU", _ZZSt9MakefacetISt10moneypunctIcLb0EESt8_LocinfoERT_T0_E3buf) +STUB("WVJ0DkjalaY", _ZN3sce7Toolkit2NP2V27Ranking17SetGameDataResultD1Ev) +STUB("WVMixvMa1+U", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEdeEv) +STUB("WVOATYV-3LU", _ZN3sce7Toolkit2NP9Utilities10FutureImplC2Ev) +STUB("WVX-Js2vLRI", _ZN3sce7Toolkit2NP2V29Challenge7Request21GetReceivedChallengesD1Ev) +STUB("WVZBP4IyM+E", + _ZN3sce4Json14InitParameter225setSpecialFloatFormatTypeENS0_22SpecialFloatFormatTypeE) +STUB("WVa-nh2q9BA", _ZN3JSC7Symbols31setIteratorFieldKindPrivateNameE) +STUB( + "WVg1z8-3Lus", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "WVgFWsKCf5w", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEEcvbEv) +STUB("WViwxtEKxHk", _ZNSt6locale7_LocimpC1ERKS0_) +STUB( + "WVkUSdv9eEk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEE11get_deleterEv) +STUB( + "WVlhjgG+ffY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("WVox2rwGuSc", sceCameraGetGamma) +STUB( + "WVqL8iJyUYs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEaSERS7_) +STUB("WVvP4zYXIaM", mono_aot_Sce_Vsh_DbRecoveryUtilityWrapperunbox_trampolines) +STUB("WW0Ng3GyPZk", Java_com_sony_gemstack_io_FilePath_n_1delete) +STUB("WW0jvCgA3f8", YGFloatIsUndefined) +STUB("WW0x+WVuT58", _ZNK3JSC11RegisterSet4dumpERN3WTF11PrintStreamE) +STUB("WW1TS2iz5yc", sceAudio3dTerminate) +STUB("WW1zKfNo6HI", sceMbusAddHandleByDeviceId) +STUB("WWBe8NYcfrs", _ZNK7WebCore9FrameView15topContentInsetENS_10ScrollView19TopContentInsetTypeE) +STUB("WWD2urqNMXs", __atexit) +STUB( + "WWEkTivc9E4", + _ZN9Inspector33ApplicationCacheBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("WWFehMyUrbs", mono_valloc_aligned) +STUB("WWL+CtFOBsU", g_list_append) +STUB("WWL13g00ZV8", _ZN12video_parser18cProfileCheckerMp410initializeEPNS_18cMp4FFLHndlManagerE) +STUB( + "WWMFe6wo4VU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "WWObrB1h1NU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEE11release_refEv) +STUB( + "WWPBSO93DCc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE7reserveEi) +STUB( + "WWQ53Tb+heo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEC1Ev) +STUB("WWUMGjCrqyo", mono_bitset_equal) +STUB("WWW4bvT-rSw", _ZN3sce2np9EventFlagD1Ev) +STUB("WWYEGiXtmTk", mono_gc_wbarrier_arrayref_copy) +STUB("WWhgn+U8fLI", mono_aot_Mono_Cairounbox_trampolines) +STUB("WWiGuh9XfgQ", sceErrorDialogUpdateStatus) +STUB("WWpgP5pqtZ0", _ZN4IPMI4impl11SessionImplC1Ev) +STUB("WWtCL5lzi7Y", sceInvitationDialogClose) +STUB("WWuvY2Ct4qM", _ZN3JSC7JSProxy12getPrototypeEPNS_8JSObjectEPNS_9ExecStateE) +STUB("WWz2luXDNjg", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_25ReceivedInGameDataMessageEE17getAdditionalInfoEv) +STUB( + "WX0zzRD99Y4", + _ZN3sce2Np9CppWebApi7Matches2V120ReportResultsRequest18setMatchStatisticsERKNS1_6Common12IntrusivePtrINS3_22RequestMatchStatisticsEEE) +STUB("WX1jdkhfmw8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEaSERS8_) +STUB( + "WX326jLN2zU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEEC2Ev) +STUB( + "WX3XLDlbOjY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("WX4JipKAHr4", _ZN3JSC7Symbols27MAX_SAFE_INTEGERPrivateNameE) +STUB("WXAgJe8+pqA", _ZN3sce2Np9CppWebApi6Common6VectorIiEC2EPNS2_10LibContextE) +STUB("WXF2ihRF+B8", _ZNK3sce4Json5Array3endEv) +STUB( + "WXJLDnZpfXU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEC1ERS7_) +STUB("WXKRNJq2jbY", _ZN7WebCore17JSDOMRectReadOnly9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("WXMhENV2NcA", sceAudioPropagationPortalSetAttributes) +STUB("WXOcRM0qa1g", _ZN3sce2Np9CppWebApi6Common6VectorIlE10setContextEPNS2_10LibContextE) +STUB("WXOoCK+kqwY", _ZNKSt5ctypeIcE10do_tolowerEc) +STUB("WXRruhGp9dI", _ZN3sce2np18MemoryStreamReaderC2EPKvm) +STUB("WXXV-yTO+QQ", u_sprintf_u_67) +STUB("WXXsPHkag14", sceDepthSetRectificationInformation) +STUB("WXg9MX8BXPg", SSL_set_SSL_CTX) +STUB( + "WXh6RjDuW4A", + _ZN3sce7Toolkit2NP8Sessions9Interface6createEPKNS1_22CreateNpSessionRequestEPNS1_9Utilities6FutureINS1_20NpSessionInformationEEEb) +STUB("WXligU9ULbc", ndigs) +STUB( + "WXmmUfrcMvQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE8copyFromERKS9_) +STUB( + "WXrYgpKuld0", + _ZN3JSC8JSObject24getOwnPropertyDescriptorEPNS_9ExecStateENS_12PropertyNameERNS_18PropertyDescriptorE) +STUB( + "WXwBOxNor8s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("WXxadnoOV08", scePsmInitialize) +STUB( + "WXzZAJmEGjU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEC2EPS6_PNS2_10LibContextE) +STUB("WY4LqfgjsJY", GCC_except_table333) +STUB( + "WY4yxguhVNY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE3endEv) +STUB( + "WY6vfS60s7E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE7reserveEi) +STUB("WY7615THqKM", _ZTIPKt) +STUB("WY8bn42LPDw", _ZN3sce2Np9CppWebApi7Matches2V119ResponseTeamResultsD2Ev) +STUB("WYCNbP+Q9kc", sceKernelGetAppState) +STUB( + "WYCVXfso7JQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEppEv) +STUB("WYIG6fhLh0E", sceAppInstUtilAppSetRemasterInstallType) +STUB( + "WYLQSGGOdmw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE8copyFromERKS9_) +STUB("WYTloIxmAjs", _ZN7WebCore8Document12lastModifiedEv) +STUB("WYWJIM3mt+M", _ZN9Inspector21InspectorConsoleAgentnwEm) +STUB("WYWf+rJuDVU", _ZTSSt13basic_filebufIcSt11char_traitsIcEE) +STUB( + "WYZEbYtF1u4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE8copyFromERKS9_) +STUB( + "WYdsQyln9-g", + _ZN3sce2Np9CppWebApi14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBody13getSpectatorsEv) +STUB( + "WYmbWguMnBU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEixEm) +STUB("WYqdpOzCkgk", _ZN3JSC7Symbols34regExpProtoGlobalGetterPrivateNameE) +STUB("WYszaHaIkWs", sceHttp2WebSocketSendTextMessageAsync) +STUB( + "WYtB8SmzDWY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE8copyFromERKS9_) +STUB("WYtEjQIlrDY", _ZN9Inspector15ScriptCallStackD2Ev) +STUB("WYwgHnzZDzc", sceOpusCeltEncGetSize) +STUB("WYxBg4jHNWY", _ZN3JSC16InternalFunction16getConstructDataEPNS_6JSCellERNS_13ConstructDataE) +STUB( + "WZ0Mep6qYvA", + _ZN3sce2Np9CppWebApi14SessionManager2V157PostPlayerSessionsSessionIdInvitationsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_50PostPlayerSessionsSessionIdInvitationsResponseBodyEEE) +STUB("WZ3eQ1DV7l0", sceAppInstUtilGetAddcontInstalledStatus) +STUB( + "WZ5BAySy784", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEppEi) +STUB( + "WZ8VOPZxA7U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEE5resetEPS9_) +STUB("WZ9vkyIyxLI", uprv_compareASCIIPropertyNames) +STUB("WZCBPnvf0fw", CERT_decryptRSASignatureBuffer) +STUB("WZPEDVLBj1Q", __fini_array_start) +STUB( + "WZPJRL1ipLE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE7reserveEi) +STUB( + "WZPlwfX8XGc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEE7add_refEv) +STUB( + "WZR9+QO+YUs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB("WZS2R8tyaOg", rgctx_fetch_trampoline_rgctx_0) +STUB("WZZvv8wv7uc", + _ZN3sce2Np9CppWebApi14ConnectAccount2V212PartnerToken8fromJsonERKNS_4Json5ValueE) +STUB( + "WZg4ZeyEsUQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEC1Ev) +STUB("WZhVtxHy5Hk", WKPreferencesSetEnableInheritURIQueryComponent) +STUB( + "WZjTvWW8Dk4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEE11release_refEv) +STUB( + "WZkrYDsiPSM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE4sizeEv) +STUB( + "WZlJKTC2P9E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEE3getEv) +STUB("WZpxnSAM-ds", sceCameraGetDeviceInfo) +STUB("WZqwoPoMzFA", _ZN3sce2np4Time15GetNetworkClockEPS1_) +STUB( + "WZsN31syuzI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE21intrusive_ptr_add_refEPS9_) +STUB("WZuPFqNHaW4", + _ZN7WebCore22EmptyFrameLoaderClient26updateCachedDocumentLoaderERNS_14DocumentLoaderE) +STUB( + "WZv9wksgCMQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEED1Ev) +STUB("WZwMXG5Zxus", _ZN3sce2Np9CppWebApi7Matches2V119AdditionalStatistic11setStatsKeyEPKc) +STUB("WZxOUvtYcKY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEE5resetEPS6_) +STUB( + "WZxsNG7Rh94", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEED2Ev) +STUB("Wa+taop41-Q", _ZThn24_N7WebCore19MediaResourceLoaderD1Ev) +STUB( + "Wa1yYl75VwY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE5beginEv) +STUB( + "Wa3BerY29og", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditionsaSERS5_) +STUB("Wa7dSfVTJLM", _ZN3sce2Np9CppWebApi14SessionManager2V114RepresentativeD1Ev) +STUB("Wa9BXL+N09Q", + _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetail17getnpServiceLabelEv) +STUB("WaA+akXnqK4", _ZN7WebCore15HitTestLocationC1ERKS0_) +STUB("WaHZGp0Vn2k", sceUserServiceGetThemeWaveColor) +STUB("WaNQzws1ATU", _ZN3sce2npeqERKNS0_8NpCommIdERK20SceNpCommunicationId) +STUB( + "WaRZXj-Zhro", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEC1ERKS7_) +STUB( + "WaRk1Z1z41U", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE4initEv) +STUB("WaSFJoRWXaI", sceFontCreateRendererWithEdition) +STUB("WaThXSvAQNc", is_in_sandbox) +STUB( + "WaUtx-lXxfY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEC2Ev) +STUB( + "WaWUUX5apvU", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_19ProductInfoDetailedENS1_15AppSTLAllocatorIS5_EEEED2Ev) +STUB("WaWlT5q22s0", + _ZN23sceMetadataReaderWriter15ParserInfoTable13getParserInfoEjPPNS_10ParserInfoE) +STUB("WaXhumPFhkw", uset_addRange_67) +STUB("WaZe-luePI0", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEEC2Ev) +STUB( + "Wac3JGa9YA4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEEC1Ev) +STUB("WafE0kWDpzM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils5IdMapEE5resetEv) +STUB("WagIB6qtn6Q", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEE3getEv) +STUB("WagrudZDspY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEEmmEv) +STUB( + "WahSwJI1CYY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("WaiXnGo3CkU", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_20ChallengeRecvDetailsEEeqERKS4_) +STUB("WaixXFWUcAY", sceCesUtf8ToBig5) +STUB( + "WalrpOg7gxc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEE7get_refEv) +STUB("Warhyt8CpOY", il2cpp_class_get_parent) +STUB( + "WavxGOi7t+0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "Wax7O8UPmqA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE8copyFromERKS9_) +STUB( + "WaxdYMXc4fk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEneERKS9_) +STUB("WazjLwlcuE8", _ZN9Inspector21InspectorRuntimeAgent7disableERN3WTF6StringE) +STUB("Wb+sAKJQnGc", _ZN3NTF26URLRequestUndefinedMessage6createEv) +STUB( + "Wb+u6DlluwM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEEC2ERKSA_) +STUB("Wb5DMLak0yg", WKContextAllowSpecificHTTPSCertificateForHost) +STUB("Wb664WLzebs", _ZNK7WebCore12EventHandler27capsLockStateMayHaveChangedEv) +STUB("WbBz4Oam3wM", _ZTISt13messages_base) +STUB( + "WbCQ1ST3-wg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEEC2Ev) +STUB( + "WbIr4Spv0wA", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody19npServiceLabelIsSetEv) +STUB("WbJ-j+ZAspY", unorm_next_67) +STUB("WbJQXfpx-TY", SceDrfpIncrFragNo) +STUB( + "WbNEhjiaWXk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEppEi) +STUB("WbOJP2JWG+o", _ZN7WebCore24MatrixTransformOperationC1ERKNS_20TransformationMatrixE) +STUB("WbZyW96-ibM", _ZN7WebCore4Page23invalidateStylesForLinkEm) +STUB("Wbc2rRVtpYE", _ZN7WebCore10FileHandle4openERKN3WTF6StringENS_10FileSystem12FileOpenModeE) +STUB( + "WbedouXEV78", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE7popBackEv) +STUB("WbiP5Ed-hIo", _ZN7WebCore8Document20queryCommandIndetermERKN3WTF6StringE) +STUB("Wbrv09Q1jhE", _ZN3sce7Toolkit2NP2V29Messaging7Request20GameDataMessageImage14IMAGE_MAX_SIZEE) +STUB("Wbu33Mefwoo", uset_isFrozen_67) +STUB( + "WbyIzhn0jvE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE4sizeEv) +STUB("Wc3aCwYB5Go", sceNpManagerIntClearVshToken) +STUB("Wc3c-XGj0cg", sceUpsrvGetNextUpdateCheckDateTime) +STUB( + "Wc4Qv3R01WE", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB( + "Wc7XElcQcPg", + _ZNK3sce2Np9CppWebApi14SessionManager2V132RequestPlayerSessionMemberPlayer6toJsonERNS_4Json5ValueEb) +STUB( + "WcBwuTNPY4A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEC2Ev) +STUB("WcLP8wPB9X4", _ZN3sce2np8NpCommId5BuildERKS1_Pcm) +STUB("WcS0UlLIynU", mono_aot_Sce_PlayStation_Imeplt_end) +STUB( + "WcWjicYmxeI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "WcYBDXc+ptE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEdeEv) +STUB("WcfJXQ2NFP4", _ZN3sce2np4NpIdD1Ev) +STUB( + "WchUUfy1Dcc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEC2Ev) +STUB( + "WcjkD1iprCU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEdeEv) +STUB("WcmZSfOjKrc", _ZNK7WebCore15JSSVGSVGElement7wrappedEv) +STUB("Wcxf0oXSVzQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEEC2ERS7_) +STUB( + "WcyYuKw7ZSY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEED2Ev) +STUB( + "Wd-NLf18xWQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEppEi) +STUB( + "Wd-pB5LIO+k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEC1Ev) +STUB( + "WdAab1qKde8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE8copyFromERKS9_) +STUB("WdBxzIdie+w", WKBundleNodeHandleSetHTMLInputElementAutofilled) +STUB("WdCUUJLQodM", sceNpTrophySystemGetDbgParam) +STUB("WdCwmDiTuFE", ucnv_getPlatform) +STUB( + "WdG0bfPQ7Zo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB("WdHzHT7Oa-s", _ZN3sce7Toolkit2NP2V212ActivityFeed6Action11URL_MAX_LENE) +STUB("WdK-Teg0wGs", _ZNK3sce2Np9CppWebApi7Matches2V120RequestPlayerResults8getScoreEv) +STUB("WdQsV86yC8M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEixEm) +STUB( + "WdTBMxIUtoM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("WdWD5q2LfyA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEC2ERS7_) +STUB( + "WdcQQVlNxcs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE8pushBackERKS8_) +STUB("Wdcyv8XRLIs", _ZN7WebCore24CoordinatedGraphicsLayer18setFixedToViewportEb) +STUB("WdgNKFD3V+c", _ZNK7WebCore9DOMWindow12nowTimestampEv) +STUB("WdgU1YXvwUY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEEeqERKS7_) +STUB("Wdjktr3c55c", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku16setOriginalPriceERKi) +STUB( + "Wdk3GULN2nk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEppEi) +STUB( + "Wdk9Huv89tQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEC2EPNS2_10LibContextE) +STUB("Wdlx0ZFTV9s", sceNgs2SystemSetLoudThreshold) +STUB("Wdnzvr-K5ow", searchCommInfoListBySock) +STUB("WdvqDYmBK3g", _ZNK3JSC6JSCell9getStringEPNS_9ExecStateE) +STUB("WdyC1bhGOAc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEEC1Ev) +STUB("WdzlW3CX4uk", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEEC2Ev) +STUB( + "We01BOPaiBk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB( + "We1UBhvK274", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "We2AoCHlZo0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE5clearEv) +STUB( + "We2H9no4Mxk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser9unsetsortEv) +STUB( + "We5zMb3WBJQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEEcvbEv) +STUB( + "We6Za4siYpg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("We7gQkqiVwY", _ZN4Manx5MutexC2Ev) +STUB("We80-1Wp+Ek", _ZN3JSC17JSInternalPromise4thenEPNS_14JSGlobalObjectEPNS_10JSFunctionES4_) +STUB("WeNDiZnkqwc", + _ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer11setPlatformEPKc) +STUB( + "WeQpWb13-vk", + _ZN9Inspector20DOMBackendDispatcher16setInspectedNodeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("WeZCXuG60OQ", ErrorDialogInit) +STUB("WebhFUlKfx4", _ZTVN3WTF22CrossThreadTaskHandlerE) +STUB("Wefycfipvcc", rgctx_fetch_trampoline_mrgctx_108_p) +STUB("WehD1u87rlM", _ZN3JSC9ExecState13describeFrameEv) +STUB("Wel+vG0jCt0", Java_java_io_RandomAccessFile_read0) +STUB("WemdQZJ8Ets", _ZN4IPMI6Server12EventHandler15onSessionKilledEPNS_7SessionE) +STUB("WepVJVZ8cpA", _ZN3sce7Toolkit2NP2V27Session9SessionIdC1Ev) +STUB("WerRlm8NBuE", sceDebugIpmiGetKidInfoListForCoredump) +STUB("WerviCFtn04", _ZN9Inspector20InspectorTargetAgentD0Ev) +STUB("WeuDjj5m4YU", sceHttp2AuthCacheFlush) +STUB("Wf+VUrny3Fk", scePlayReadyLicenseDelete) +STUB("Wf2HY1HK1m0", _ZN4Manx8X509nameC1EPKS0_) +STUB("Wf6-PNCyY20", scePadVrControllerSetVibrationMode) +STUB("Wf805BVRegg", _ZN3sce2Np9CppWebApi12Leaderboards2V15Error8fromJsonERKNS_4Json5ValueE) +STUB("Wf8AS4IEmVw", _ZN7WebCore15AffineTransform5shearEdd) +STUB( + "Wf8UPh4tq1g", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo10initializeEPNS1_6Common10LibContextEPKciNS6_12IntrusivePtrINS3_22SetDataInfoRequestBodyEEE) +STUB("WfAiBW8Wcek", sceAjmBatchErrorDump) +STUB( + "WfLD8fGAQhc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("WfOpebGvDrk", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend7FriendsEE12deepCopyFromERS7_) +STUB("WfQSx6ym2D4", _ZN3sce2Np9CppWebApi6Common8IteratorIiEmmEv) +STUB("WfVbbAc4Mtw", _ZN3sce7Toolkit2NP20RegisterScoreRequestC2Ev) +STUB("WfXvBs9lIQ0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEaSERKS9_) +STUB("WfbtnyN65i0", _ZN3JSC14ProtoCallFrameaSERKS0_) +STUB( + "WfehSCu7pzE", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessions31hasxPSNSESSIONMANAGERACCOUNTIDSEv) +STUB( + "Wfi9fUeFdWE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEED1Ev) +STUB( + "Wfiq93CqG9A", + _ZN7WebCore18WorkerScriptLoader22validateWorkerResponseERKNS_16ResourceResponseENS_12FetchOptions11DestinationE) +STUB("Wfr3Ss7wSPg", sceUlpMgrVshNextChunkCmd) +STUB("WfsErGF2NGY", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setPrimaryAudioLang) +STUB( + "Wfu6MeokEPs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEptEv) +STUB( + "WfwZnCzkzBE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEneERKS9_) +STUB("WfyPFjoj30k", sceFsDevpfsA53IocGetBuildMetadataStatus) +STUB( + "WfyltGHHJHg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEmmEv) +STUB("Wfzh10yFbVM", + _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody19unsetNpServiceLabelEv) +STUB("Wg-SBhw2nm8", _ZN3WTF7RunLoop4stopEv) +STUB("Wg-w8xjMZA4", sceRemoteplayNotifyPinCodeError) +STUB("Wg5+Z8scBLg", _ItL_atanlo) +STUB( + "WgA3lqGRqZ4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEC2EPNS2_10LibContextE) +STUB("WgCZ0HyfQ3I", _ZN3WTF15AutomaticThread14threadDidStartEv) +STUB( + "WgD89Uxautc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEC1EPS8_) +STUB( + "WgGbm19BGAk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEC1Ev) +STUB("WgKbCCA4IHY", SSL_CTX_set_verify) +STUB("WgR3W2vkdoU", sceFontGlyphGetOutlineVertexes) +STUB("WgVSxcwhSgs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEC2Ev) +STUB( + "WgZM6M5WzzU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEixEm) +STUB( + "WgZOdtPlJW0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEC2EPS7_PNS2_10LibContextE) +STUB( + "WgdzVQJ47Ts", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEdeEv) +STUB("Wgeoc8Zk6dk", _ZNSt15basic_streambufIcSt11char_traitsIcEE9pbackfailEi) +STUB( + "WglSpXP2XEs", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessionsC2ERS5_) +STUB("WglfPILk1u0", mono_aot_Sce_Vsh_RnpsAppMgrWrapperjit_got) +STUB("WgmTo8l6bAM", _ZN7WebCore4PathC2ERKS0_) +STUB("WgnhUx36Hdg", mono_aot_Sce_PlayStation_PUIplt_end) +STUB("WgodWdqVKo0", mono_aot_Sce_Vsh_Sl2_Sl2Commonunwind_info) +STUB("Wgptd+IJcp0", scePlayReadyReaderRetrieveOpaqueContent) +STUB("Wgw2LeWBk4A", _ZNK3sce2Np9CppWebApi7Matches2V120ResponseMatchResults20getCompetitiveResultEv) +STUB( + "Wh2-BPMYsmE", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi35ParameterToSetGameSessionProperties9terminateEv) +STUB("Wh7HbV7JFqc", getrlimit) +STUB( + "Wh9VS3-gejo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEneERKS9_) +STUB("WhAKu441AFs", JVM_GetCPMethodSignatureUTF) +STUB("WhCc1w3EhSI", _sceKernelSetThreadAtexitReport) +STUB("WhESSNwlm08", ulist_getListSize) +STUB("WhHAwtSeEVY", + _ZN7WebCore16FontCascadeFonts23realizeFallbackRangesAtERKNS_22FontCascadeDescriptionEj) +STUB("WhIdEVFHHSo", sceSystemModalDialogClose) +STUB( + "WhOYEoEEuho", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEC1ERS7_) +STUB("WhQDXYtcw18", sceUserServiceGetVoiceAgentEnable) +STUB( + "WheFSRlZ9JA", + _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE5_IfmtEPcPKcNSt5_IosbIiE9_FmtflagsE) +STUB("WheHjM1+teg", + _ZN3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBody14setRulesetNameEPKc) +STUB("WhgyN04dHCk", _ZNK7WebCore6Editor7Command7executeERKN3WTF6StringEPNS_5EventE) +STUB("WhilT63upyA", sceUpsrvUpdateGetBetaAgreementUrl) +STUB("Whtzzq5wrwQ", _ZN3sce2Np9CppWebApi15Personalization2V111ErrorEntityD1Ev) +STUB("WhzDsWhWcoU", _ZN3sce7Toolkit2NP2V23TUS13TusDataStatusC1Ev) +STUB( + "Wi+-R48keDc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "Wi-6yovMTE8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V135AddAndGetVariableRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_28AddAndGetVariableRequestBodyEEE) +STUB("Wi006FBIy8s", Java_java_lang_StrictMath_log) +STUB("Wi4Jjwa3NJA", uhash_hashChars_67) +STUB( + "Wi5rozag-to", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEaSERS7_) +STUB("Wi6pRLPS8cc", sceG2PDialogGetStatus) +STUB("Wi7DtlLV+KI", sceAjmModuleUnregister) +STUB( + "Wi7m09iBixI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEC2EPS6_PNS2_10LibContextE) +STUB("Wi82ArQtAwg", sceAgcGetRegisterDefaults) +STUB( + "Wi8WTlleNlk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEEcvbEv) +STUB("Wi9eDU54UCU", SSL_init) +STUB("Wi9efrgaHw4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE4sizeEv) +STUB( + "WiCcGqp6Qzk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEE7add_refEv) +STUB("WiDOyYEC1I8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEaSERKS7_) +STUB("WiGKINCZWkc", sceMouseDeviceOpen) +STUB("WiH8rbVv5s4", _ZNSt9bad_allocD2Ev) +STUB("WiHMx2bAvlI", WKBundlePageStartMonitoringScrollOperations) +STUB("WiLSvVuUcpE", _ZNK3sce2Np9CppWebApi14SessionManager2V110FromMember11getPlatformEv) +STUB("WiLcZIhhlio", _ZNK3sce2Np9CppWebApi7Matches2V119AdditionalStatistic13getStatsValueEv) +STUB("WiMuuKGRuaw", s_useStdThreadStackSize) +STUB( + "WiRgqOHDkGg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEixEm) +STUB( + "WiUfInbfjxI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEED2Ev) +STUB("WiUy3dEtCOQ", _ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED1Ev) +STUB( + "WiVkiHPAU8k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEC1EPS8_) +STUB("WibKAz3q11k", + _ZNK3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer12getJoinStateEv) +STUB("Wick8AYnkiI", _ZN3sce2np18HttpConnectionPoolC2EP14SceNpAllocator) +STUB("Wie1csFXZEo", + _ZNK3sce2Np9CppWebApi14SessionManager2V124PlayerSessionPushContext16getPushContextIdEv) +STUB("WihB9X5JacM", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V15Error14setReferenceIdEPKc) +STUB( + "WilVuwdJbtw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEE7get_refEv) +STUB("WirWWwULaRQ", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets19unsetplatformFilterEv) +STUB("WisAKbUAQO0", WKBundleNodeHandleCopyVisibleRange) +STUB("Wit4LjeoeX4", sceWebBrowserDialogGetEvent) +STUB( + "WitXeVIevoI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEEdeEv) +STUB( + "Wiw4wVD+Wxw", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS5_INS7_7DataApi25UploadDataResponseHeadersEEEEEiRNS2_19UpStreamTransactionIT_T0_EE) +STUB("Wixm7ST0Syw", _ZNK3sce2np10JsonString9GetLengthEv) +STUB( + "Wj3gmy+KK98", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEppEv) +STUB("Wj4zVVejNOE", sceHmdGetFieldOfView2d) +STUB( + "Wj7is0Zkxsk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "Wj90gsyFXBg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEixEm) +STUB( + "WjBac8UGVUI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEC2Ev) +STUB("WjChQ3sh+qQ", Java_com_sony_bdjstack_javax_media_controls_SoundManager_getGainMute) +STUB("WjCzYA2xydA", _ZN3JSC27objectPrivateFuncInstanceOfEPNS_9ExecStateE) +STUB("WjDaZHB1cS8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE7reserveEi) +STUB( + "WjDbY5hLcdc", + _ZN3sce2Np9CppWebApi14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyD1Ev) +STUB("WjESEDn5AEk", WKPageGetTypeID) +STUB("WjHT5TmV0TQ", sceSocialScreenDialogGetResult) +STUB("WjKbVlARycE", sceDebugGetProcessCoredumpHandlerEventBlob) +STUB( + "WjNLArA3W-M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("WjS1oe87jNk", _ZN3sce7Toolkit2NP2V26Trophy17TrophyPackSummaryD1Ev) +STUB("WjTI2Z1q3FA", + _ZNK7WebCore17FrameLoaderClient47allowsContentJavaScriptFromMostRecentNavigationEv) +STUB("WjWEBD4uZnU", mono_inst_name) +STUB( + "WjaRIYMNvvo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEmmEv) +STUB( + "Wjbj4ha5NS4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "WjejDpHFDqk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE5startEPNS2_10LibContextE) +STUB( + "Wjhr-vyWIJo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "WjiQn1LNaCY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE3endEv) +STUB("WjjY3Mi2y2g", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE5beginEv) +STUB("WjmpkQZMzQY", _ZN3sce2Np9CppWebApi13InGameCatalog2V517ContentDescriptor6setUrlEPKc) +STUB("WjruZhCEgss", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEC2Ev) +STUB("WjvvtaniDhE", _ZN3JSC8Debugger15clearParsedDataEv) +STUB( + "WjxPWumvo9Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEC2EPS8_) +STUB("Wk00PLpcA8M", _ZNK7WebCore14ScrollableArea12scrollOffsetEv) +STUB( + "Wk2pQM-Zs8U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEC2Ev) +STUB( + "Wk6WBuhZ1iw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB( + "Wk6ZboBDDXY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEC2Ev) +STUB( + "Wk80eUxL7to", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEE5resetEPS6_) +STUB("Wk9ZHUfZ-Lk", ubrk_isBoundary_67) +STUB("WkAsdy5CUAo", _ZNSt8_Locinfo8_AddcatsEiPKc) +STUB("WkC8Kl9iybw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEC2Ev) +STUB( + "WkCb92DWBNQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "WkGWeItozyc", + _ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody15unsetSearchableEv) +STUB( + "WkKMqqrOp6k", + _ZN9Inspector33ApplicationCacheBackendDispatcher22getFramesWithManifestsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "WkUYVr-HCmo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEeqERKS9_) +STUB("WkUlp2cRBGg", sceNpIpcClientTermInternal) +STUB("WkUqYTkTzeI", _ZNK7WebCore15VisiblePosition8previousENS_27EditingBoundaryCrossingRuleEPb) +STUB("WkVj23rFUR8", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13FriendsOfUserEE9constructEPS3_RKS3_) +STUB("WkVyoM7fyO4", WKContextConfigurationCopyWebSQLDatabaseDirectory) +STUB("WkYnBHFsmW4", __isnormalf) +STUB("WkYtyOg30do", sceVideoOutSetFlipMaster) +STUB("WkZpN6r-c+A", _ZN3WTF31equalIgnoringFragmentIdentifierERKNS_3URLES2_) +STUB("WkdkfQun1gc", sceCompositorSystemConfig) +STUB("Wker5d+4eTc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEE11get_deleterEv) +STUB("WkjdgojiCdQ", audiodeccpuinternal_core_ops_flac2) +STUB("WkkeywLJcgU", wcslen) +STUB("WkmRWGmkwyY", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIfED1Ev) +STUB("WkoNcCX2OV4", _ZN7WebCore10JSDocument9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB( + "WksDLUgLxyM", + _ZN3JSC8Bindings13RuntimeObject3putEPNS_6JSCellEPNS_9ExecStateENS_12PropertyNameENS_7JSValueERNS_15PutPropertySlotE) +STUB( + "WktfrhSU8bM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE5emptyEv) +STUB("WkvclTMjNdI", sceNpMatching2SignalingGetPort) +STUB("WkwEd3N7w0Y", sceKernelInstallExceptionHandler) +STUB("Wl0OUqhLPnk", WKPageClearSelection) +STUB( + "Wl1PmfOst2o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEmmEi) +STUB( + "Wl2gGA34Iq0", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemProperties12getaccountIdEv) +STUB("Wl2o5hOVZdw", sceKernelPrintBacktraceWithModuleInfo) +STUB("Wl3sypoj-fA", sceDeci4hDrfpFchstat) +STUB("Wl4FiI4qKY0", sceFontGraphicsSetupFillRates) +STUB( + "Wl8182R3qYU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEneERKS9_) +STUB( + "WlBBtkMRe9s", + _ZN7WebCore20SVGPathStringBuilder12curveToCubicERKNS_10FloatPointES3_S3_NS_18PathCoordinateModeE) +STUB("WlFOMTjIwrc", WKPageLoadURLRequestWithUserData) +STUB("WlFt-qUORdo", JVM_GetInterfaceVersion) +STUB( + "WlFtJDxjSiU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("WlG9NNIrcok", _ZN7WebCore12RenderObject17absoluteTextRectsERKNS_11SimpleRangeEb) +STUB("WlGbGwnNLkY", _ZN7bmalloc29StaticPerProcessStorageTraitsINS_11AllIsoHeapsEE7Storage8s_memoryE) +STUB("WlNzzgO5pbc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEE7add_refEv) +STUB( + "WlOAVxoNa6A", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V318PsnWebErrorWrapper8setErrorERKNS1_6Common12IntrusivePtrINS3_11PsnWebErrorEEE) +STUB("WlOahdw8-Yk", _ZN23sceMetadataReaderWriter13ParserManagerC2Ev) +STUB("WlRy47jghy8", WKBundleNodeHandleGetTypeID) +STUB( + "WlW6Nk-ua5E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEE5resetEPS8_) +STUB("WlWaIO0q+1I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEC1ERS7_) +STUB( + "WlWrPbrF-gc", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V127ConnectionQualityPropertiesC2EPNS1_6Common10LibContextE) +STUB( + "Wle1PeE+SCs", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("WleW1S5dwN0", rgctx_fetch_trampoline_mrgctx_1_p) +STUB( + "WlfNdEmOh40", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "WlfyBqgFeQs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEED1Ev) +STUB( + "WljbBxL-zbs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("Wlq938dAKkE", rgctx_fetch_trampoline_mrgctx_73_p) +STUB("Wlrs7NEHJgE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEE3getEv) +STUB( + "WlwxPyZwm-Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE3endEv) +STUB( + "Wlx2G02kEtQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("WlyEA-sLDf0", sceKernelTruncate) +STUB( + "WlybyPQtrXw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEED2Ev) +STUB( + "WlzRxc3pgjk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEE3getEv) +STUB("Wm0y-9IRE8I", u_setMutexFunctions) +STUB( + "Wm4jbQyYZOE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEmmEv) +STUB( + "Wm96NnEepxc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEC1ERS7_) +STUB("WmAKU9P4PkE", _ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetail13setMiddleNameEPKc) +STUB( + "WmARSMLIsII", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setInteger9ERKi) +STUB("WmAc2MEj6Io", sceAgcDcbDmaData) +STUB("WmJOCQ0NwOw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEE3getEv) +STUB( + "WmSB2Ma+WK4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEmmEi) +STUB( + "WmWLkS27FxE", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "WmWgsK0B954", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEplEm) +STUB("WmYDzdC4EHI", sceImeParamInit) +STUB("WmYrwvOzOuM", _ZN7WebCore6ISOBoxnwEm) +STUB( + "WmZe8YeM5G0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("WmdfFp6+niw", mono_aot_Sce_PlayStation_BclExtensionsmethod_addresses) +STUB("WmknbtEBGi8", _ZN3JSC7Options10initializeEv) +STUB( + "Wmn1n5XA8DE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE10setContextEPNS2_10LibContextE) +STUB("WmpYOowrcIE", _ZN9Inspector29SupplementalBackendDispatcherD0Ev) +STUB("WmpzhNeeee4", _ZN12Mp4Retriever20processUuidId3v23BoxEv) +STUB( + "WmsxlwbABS4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEeqERKS9_) +STUB("WmtG1QJQitU", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEEptEv) +STUB("WmzLsYNgA9E", sceDeci4hDrfpRecv) +STUB( + "Wn+4u3sZIKM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE21intrusive_ptr_sub_refEPS9_) +STUB("Wn-+887Lt2s", sceNetCtlGetScanInfoBssidIpcInt) +STUB( + "Wn1MS3LKjPs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEE11release_refEv) +STUB( + "Wn1WPosz5lU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE21intrusive_ptr_add_refEPS9_) +STUB("Wn4m8z8Usnc", Java_java_awt_GnmGraphicsEnvironment_nativeSetWindow) +STUB("Wn6I3wVATUE", daemon) +STUB("WnA+PWS1G+c", _ZN7WebCore12ChromeClient30supportsVideoFullscreenStandbyEv) +STUB("WnAwkFdHB7o", u_unescape_67) +STUB("WnB0zujGTmE", _ZN3sce7Toolkit2NP9Utilities6FutureI16SceNpTusVariableEC1Ev) +STUB("WnBX1Y9Tdi0", fuse_notify_poll) +STUB( + "WnDNXOqq1FE", + _ZN7WebCore15UserInputBridge17scrollRecursivelyENS_15ScrollDirectionENS_17ScrollGranularityENS_11InputSourceE) +STUB("WnE13Ud-i1s", __ubsan_current_error_report) +STUB("WnE1cxQELbY", _ZN15AbstractStorage4ItemD2Ev) +STUB("WnFucAobvQo", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312AccountIdMap8fromJsonERKNS_4Json5ValueE) +STUB("WnKkAvrrmFM", _ZN7WebCore10ScrollView8addChildERNS_6WidgetE) +STUB( + "WnMssl-k6vA", + _ZN3JSC6RegExp5matchEPNS_14JSGlobalObjectERKN3WTF6StringEjRNS3_6VectorIiLm0ENS3_15CrashOnOverflowELm16ENS3_10FastMallocEEE) +STUB("WnNwZLFh9Io", _ZN3JSC7Symbols17toStringTagSymbolE) +STUB( + "WnO5ZKN7EJk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEC2EPKS8_) +STUB( + "WnOO+2F+y3c", + _ZN7WebCore37BasicComponentTransferFilterOperation6createEdNS_15FilterOperation13OperationTypeE) +STUB( + "WnWKxDgyztg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("WnazLmcrKBo", _ZN12video_parser7cVpUtil12vp_ff4_fseekEPvli) +STUB("WnbSXH4ysd4", _ZN7WebCore9HTMLNames13blockquoteTagE) +STUB("WnbVnvSPKXE", uprv_calloc) +STUB( + "Wne7WT-eWhw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEED2Ev) +STUB( + "Wnfzger3HKM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE7popBackEv) +STUB("WnoWbDsLL6A", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEEC1Ev) +STUB("Wnp1OVcrZgk", sceAvPlayerGetAudioData) +STUB( + "WnrLuCs8pOo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("WntRKhYTmZw", _ZN3sce4Json19InternalInitializerC1Ev) +STUB( + "Wnu-RsvLYlw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE3endEv) +STUB( + "WnxnWecMsGo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEppEi) +STUB("Wo-8R8c0Zoo", + _ZNK3sce2Np9CppWebApi14SessionManager2V127ResponsePlayerSessionPlayer6toJsonERNS_4Json5ValueEb) +STUB("Wo1Sfjy-hKk", _ZN3JSC23getUint32ArrayClassInfoEv) +STUB( + "Wo4X+JtIO4w", + _ZN3sce7Toolkit2NP8Sessions9Interface5leaveEPKNS1_16NpSessionRequestEPNS1_9Utilities6FutureIiEEb) +STUB( + "WoASn1-8MUg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEEcvbEv) +STUB( + "WoAnjCCYkwI", + _ZN9Inspector32ScriptProfilerFrontendDispatcher16trackingCompleteEN3WTF6RefPtrINS_8Protocol14ScriptProfiler7SamplesENS1_13DumbPtrTraitsIS5_EEEE) +STUB( + "WoB4ricG2A8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEdeEv) +STUB("WoBSIp8w+R8", ures_getNextResource_67) +STUB("WoCt9o2SYHw", _ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED1Ev) +STUB("WoFUqVndTak", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEE7get_refEv) +STUB("WoFp77mNyw0", _ZN3sce2np9HttpTrans21GetResponseStatusCodeEPNS0_6HandleEPi) +STUB("WoL8Z8L9FRM", _ZNK3sce2Np9CppWebApi7Matches2V119RequestMatchResults20getCooperativeResultEv) +STUB( + "WoM5M38rDuA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEmmEv) +STUB("WoRHf6Ze3sw", utext_moveIndex32_67) +STUB( + "WoTOluC5rV8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEED1Ev) +STUB( + "WoTweSyuqao", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE7reserveEi) +STUB("WoaqjY1ccEo", _ZN3sce2np11NpHttpTrans21SetRequestAccessTokenEPNS0_6HandleE) +STUB( + "WohYT57mACk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEC1Ev) +STUB("WokVIWzuBos", _ZN7WebCore12JSAudioTrack23visitAdditionalChildrenERN3JSC11SlotVisitorE) +STUB("WonrTtRP77U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEEaSERS7_) +STUB( + "WoqkxOFUFNo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEptEv) +STUB( + "WorVwDY-ME4", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V113ErrorResponse8setErrorERKNS1_6Common12IntrusivePtrINS3_5ErrorEEE) +STUB("WotfHuA97u4", sceIduUtilGetDiskSpaceStats) +STUB( + "Wovh+WTRa+s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEC2Ev) +STUB("Wp+C91igTkE", sceNpSnsIntTwGetSystemAccessToken) +STUB( + "Wp+bgq-m+CM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE10setContextEPNS2_10LibContextE) +STUB("Wp1GIhLA9uA", sceFsNsfsUmount) +STUB( + "Wp2Gh5NE71E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEE7get_refEv) +STUB("Wp7dyH-WjjM", _ZNK23sceMetadataReaderWriter8Metadata9dumpValueEv) +STUB( + "Wp87nsNxGiA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "Wp89y6zGg2s", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEC1Ev) +STUB("Wp8zHTocS5E", sceUsbStorageTerm) +STUB( + "WpAliLBlSKU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEC1Ev) +STUB("WpCAYAehgsk", _ZN3sce7Toolkit2NP2V212ActivityFeed14PlayedWithFeedC1ERKS4_) +STUB("WpKEiNcP9fk", + _ZN3sce2Np9CppWebApi14SessionManager2V115LocalizedString18setDefaultLanguageEPKc) +STUB("WpNcYUoJe74", sceGpuTraceStart) +STUB("WpOA+METUbw", _ZN7WebCore28InspectorFrontendClientLocal8SettingsD2Ev) +STUB("WpOVRhZTKJw", _ZN12Mp4Retriever14processMdiaBoxEv) +STUB("WpSu15AKAh4", ulocdata_getLocaleDisplayPattern_67) +STUB( + "WpTMMnPIdMw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE5eraseENS2_13ConstIteratorIS9_EERSC_) +STUB( + "WpeYwGPqIRk", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124NatConnectivityToMetrics8fromJsonERKNS_4Json5ValueE) +STUB("WpfgqL8ubzU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEC1ERS7_) +STUB("WpgesOm4xX8", sceDepth2Initialize) +STUB( + "WpoQBxVRdvc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEEC1ERSA_) +STUB("Wpot2z3KPyU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEC2Ev) +STUB("WprqEZQd8e0", sceAudioOutAssignHRTF) +STUB( + "WpyHhX-J-k4", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeaders6createEPNS1_6Common10LibContextERNS6_12IntrusivePtrIS5_EEl) +STUB("Wq2qTfZyJpo", sceFsSysStorageGetStatus) +STUB("Wq4RNB3snSQ", sceHttpGetNonblock) +STUB("Wq9Klhhem4E", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge18ChallengeThumbnailEED1Ev) +STUB( + "Wq9YlYvcNbQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("WqAN91S1zE4", + _ZN3sce2Np9CppWebApi14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyD1Ev) +STUB("WqAayyok5p0", sceImeVshUpdate) +STUB( + "WqB4FBI3mtQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("WqDGv5ILjDI", _ZN7WebCore13HitTestResultC2Ev) +STUB("WqDYv9bWc1E", png_destroy_read_struct) +STUB("WqHfqjSXV0k", mono_set_dirs) +STUB( + "WqOdJl5Ozks", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEC2EPS8_) +STUB("WqSxu7Had0Q", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16UnlockedTrophiesEE5resetEv) +STUB("WqV-TtAY0Fc", sceVideoCoreChangeDisplaySize) +STUB("WqXCb6la+Gs", _ZN7WebCore11JSTextTrack9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB( + "WqaO8-zdo+I", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEptEv) +STUB("Wqbmub94nLE", WKPreferencesGetWebAudioEnabled) +STUB("Wqd2YPTEZOQ", _ZN3sce7Toolkit2NP2V212EventsClient13EventDurationC1Ev) +STUB("Wqdwk217NiM", _ZN3sce2Np9CppWebApi13InGameCatalog2V514ContainerMediaD1Ev) +STUB("WqfoS9r2UU4", _ZN9Inspector21PageBackendDispatcherD2Ev) +STUB("WqhrteSfDVI", sceFsLvdAttachPartiallyCryptedDownloadData) +STUB( + "WqiOCaxRWfo", + _ZN3JSC7JSProxy23getGenericPropertyNamesEPNS_8JSObjectEPNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("WqjalTU4ao8", _ZN7CoreIPC10Attachment6decodeERNS_15ArgumentDecoderERS0_) +STUB("WqnB6ITORdg", WKAccessibilityFocusedObject) +STUB("WqqA2zraxGw", _ZN7WebCore8JSPath2D14finishCreationERN3JSC2VME) +STUB("WqtJrLRSJ38", _ZN9Inspector18InspectorHeapAgent27nodeForHeapObjectIdentifierERN3WTF6StringEj) +STUB( + "WqurSaJqeMM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEaSERKSA_) +STUB("WqzBma32q5c", _ZN9Inspector21DOMFrontendDispatcher23willRemoveEventListenerEi) +STUB("Wr19x-stzkg", _ZNK3sce2np14JsonObjectImpl8GetFieldEPKc) +STUB("Wr3nsor1aNc", cairo_get_target) +STUB("Wr5KVtyVDG0", sceHmdInternalAnotherScreenGetAudioStatus) +STUB("WrJ90gehEag", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE5clearEv) +STUB( + "WrJIoUcoGgs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("WrJvcq8OhGc", _ZN6Dinkum7threads10lock_errorC1Ev) +STUB("WrOLvHU0yQM", pthread_setspecific) +STUB( + "WrQw1Oqo2L4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEdeEv) +STUB("WrVbuRtQ9CM", _ZNK7WebCore14SecurityOrigin10canDisplayERKN3WTF3URLE) +STUB("WrdP9Zxx3lQ", sceAgcDcbDrawIndexAutoGetSize) +STUB("Wrec90FZeUo", _ZN3sce2Np9CppWebApi12Leaderboards2V15Entry13unsetObjectIdEv) +STUB( + "Wri5KLp6Q9Y", + _ZNK3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody17joinDisabledIsSetEv) +STUB("WrqBnG7nbZ4", _ZN3sce7Toolkit2NP2V26Friend15FriendsOfFriend5resetEv) +STUB( + "WrrSCdDxok0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("Wrw1Z7leplo", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15StatsD2Ev) +STUB("WrxDYHYZaLg", __asan_current_error_report_size) +STUB("WrxTlVukzt8", _ZN3sce7Toolkit2NP2V27Session8SessionsC1ERKS4_) +STUB("WrxoRMexqRU", fuse_fs_open) +STUB("Ws0Qz5xJyVk", mono_aot_Sce_Vsh_Np_Commonplt_end) +STUB( + "Ws0pRF+kvkk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("Ws4FsomU1OQ", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15PlayedWithStoryEE8allocateEmPKv) +STUB( + "Ws5SFjH9sYA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEC2EPNS2_10LibContextE) +STUB( + "Ws9Mr1MtNKo", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE21intrusive_ptr_sub_refEPS7_) +STUB("WsAtWvLkO7Q", lchown) +STUB("WsBJZWjWhmc", _ZN7WebCorelsERN3WTF10TextStreamERKNS_16VisibleSelectionE) +STUB("WsEitd57LfE", _ZNK7WebCore27ScriptedAnimationController8intervalEv) +STUB("WsGR1gzifpE", sceAvControlSetDefaultVideoOutMode) +STUB( + "WsGUjPVtqas", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB( + "WsO1sVRk2rE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "WsP8Q8ofNLs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEC2EPKS8_) +STUB( + "WsSC5V8scvE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEppEv) +STUB("WsWNyw1KycE", _ZNK3WTF3URL39fragmentIdentifierWithLeadingNumberSignEv) +STUB( + "WsY15EjW9tY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("WsZsB6iT9nY", + _ZN7WebCore21WheelEventTestTrigger19deferTestsForReasonEPKvNS0_22DeferTestTriggerReasonE) +STUB( + "WsemN8R9tRk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEEC1ERKSA_) +STUB("WsjhHYwSTkc", _ZThn8_N7WebCore26ActiveDOMCallbackMicrotaskD1Ev) +STUB("WslcK1FQcGI", sceKernelIsNeoMode) +STUB( + "WsoHrQqq1Ag", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_15PlayedWithStoryENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB( + "WssXZNMBHRI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB("WsxsmOSPno4", _ZNK3sce7Toolkit2NP9Utilities6FutureI18SceNpTssDataStatusE17getAdditionalInfoEv) +STUB("WszCjTAdGLg", YGNodeLayoutGetPadding) +STUB("Wt+5HR0R1Qw", WKBundlePageSetFormClient) +STUB( + "Wt-EeW4Giqw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEE11get_deleterEv) +STUB("Wt4UzkFSXI8", _ZN7WebCore36ISOProtectionSystemSpecificHeaderBoxC1Ev) +STUB( + "Wt7ZGpKT5dg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEmmEi) +STUB("Wt81UxzbmG8", _ZN9Inspector18InspectorHeapAgent6enableERN3WTF6StringE) +STUB("WtGT3EXh+7c", + _ZN3IPC18MessageReceiverMap15dispatchMessageERNS_10ConnectionERNS_14MessageDecoderE) +STUB("WtLVPoqLGdI", mono_metadata_translate_token_index) +STUB("WtLXuyKk4sc", _ZN3WTF8JSONImpl10ObjectBaseC2Ev) +STUB("WtNGl+am6WU", mono_aot_Sce_Vsh_Np_Managerunwind_info) +STUB("WtOeSfg+H2Y", _ZN3sce2Np9CppWebApi14SessionManager2V15Error9setSourceEPKc) +STUB("WtOs6cUbrx8", sceNpSessionSignalingGetGroupInfo) +STUB("WtR7OVvUgSo", get_page_table_stats) +STUB("WtTZKbENx4o", FcObjectSetDestroy) +STUB("WtUhKq4y6xE", mono_aot_Sce_PlayStation_HighLevel_UI2Platformplt) +STUB( + "WtVuiQxiS4E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB("WtWSMp-rhOU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEEaSERKS7_) +STUB( + "WtYJRC0ndgk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "Wtl8SO65aAw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEE11release_refEv) +STUB("Wto-jaSqqdY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEE7add_refEv) +STUB("WtsuDMvVw-I", sceNpManagerIntCheckGameNpAvailabilityWithPid) +STUB("WtwJKh+NPQU", WKPageSuspendActiveDOMObjectsAndAnimations) +STUB("WtzOC5HWba0", mono_gc_collect) +STUB("Wu+zDz8VIFk", sceLncUtilGetAppIdOfBigApp) +STUB("Wu-urs6MMpQ", _ZN3sce4Json6Object4PairC2Ev) +STUB( + "Wu2f5I+EwOQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "Wu6uY3z5PzY", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V125NatConnectivityProperties6toJsonERNS_4Json5ValueEb) +STUB("Wu7C73GjWwk", _ZNK7WebCore7Element14hasAttributeNSERKN3WTF12AtomicStringES4_) +STUB("WuAPUwIvKIo", ucptrie_close) +STUB( + "WuBlSCYKEvE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEEC1Ev) +STUB( + "WuDMDdhQgRQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEE7add_refEv) +STUB("WuFNFYQX3NA", curl_multi_wait) +STUB( + "WuFkhfzmkXs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEeqERKS9_) +STUB("WuGbplp8Gtg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEppEi) +STUB( + "WuHl28C+7k0", + _ZN9Inspector34ApplicationCacheFrontendDispatcher29applicationCacheStatusUpdatedERKN3WTF6StringES4_i) +STUB("WuMO8w+KGqI", mono_btls_error_get_error) +STUB("WuMbPBKN1TU", log10) +STUB("WuPogMzMEBg", mono_aot_Sce_Vsh_RequestShareStorageWrapperunbox_trampolines) +STUB( + "WuQAWT8kYek", + _ZNK3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead17invitationIdIsSetEv) +STUB( + "WuV14FzDwFY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEC2EPS8_) +STUB("Wudg3Xe3heE", sceAppInstUtilAppInstallTitleDir) +STUB("WudmiYuePRQ", _ZN3JSC19HeapSnapshotBuilder15setLabelForCellEPNS_6JSCellERKN3WTF6StringE) +STUB("Wufu-c6ksJc", mono_dl_fallback_register) +STUB("WunW7G5bHYo", sceUserServiceGetPbtcMondayHoursStart) +STUB("Wut42WAe7Rw", _ZNSt10filesystem18_Xfilesystem_errorEPKcRKNS_4pathES4_St10error_code) +STUB("WuuUhuKOxwQ", sceInvitationDialogGetResultA) +STUB("WuwbH5nNVmA", sceVshAvcapOpenUserdata) +STUB( + "Wv+o3CNaVQI", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUser10getslotIdsEv) +STUB( + "Wv1Rz8Hw1Iw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEEptEv) +STUB( + "Wv4DNpMM1dA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEE7get_refEv) +STUB( + "Wv6JQ-QHlx0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEE5resetEPS9_) +STUB( + "WvBhg2huycc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEEaSERSA_) +STUB("WvEu7yl3Ivg", sceKernelAprGetFileSize) +STUB("WvK154bGMfQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEED1Ev) +STUB("WvLsYBhq6RQ", _ZN7WebCore11iBeamCursorEv) +STUB("WvM21J1SI0U", sceUserServiceGetGlsBroadcastersCommentColor) +STUB("WvMdHc2BUjc", _ZN3WTF21MemoryPressureHandler12ReliefLogger16s_loggingEnabledE) +STUB("WvNZUdSvf6E", _ZN7WebCore28InspectorFrontendClientLocal8SettingsC1Ev) +STUB("WvR75y91dkA", ShGetActiveAttrib) +STUB("WvSPUfNQ1js", fuse_fs_init) +STUB( + "WvSqbot1O0I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB("WvVGWsycG8M", mono_threads_assert_gc_safe_region) +STUB( + "WvWLtGwWe08", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("WvZ0TKnp0mI", Java_java_lang_Package_getSystemPackage0) +STUB("WvZllaEpQmU", WKPreferencesSetWebRTCLegacyAPIEnabled) +STUB("WvbSe0rJDbI", _ZN3sce2np13JsonArrayImpl5ClearEv) +STUB("WvdR33NV7tA", EC_KEY_get0_public_key) +STUB("WvfpvB7jUig", _ZN7WebCore10handCursorEv) +STUB( + "WvldZq5kMuI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEE5resetEPS9_) +STUB("Wvm90I-TGl0", vfwscanf_s) +STUB( + "Wvqi1+xYY84", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEC1EPS8_) +STUB("WvrKKVTYKUk", WKPageConfigurationGetPreferences) +STUB("WvrkJR4lSmU", + _ZNK7WebCore22EmptyFrameLoaderClient32representationExistsForURLSchemeERKN3WTF6StringE) +STUB("WvuRaahcTfA", sceSlimglCompositorSetPostEventCommand) +STUB("WvuVzV2y5Ps", _ZN3JSC7Symbols16blinkPrivateNameE) +STUB("WvwzlUxb+es", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V113MmrPropertiesD2Ev) +STUB( + "WvzIMvjCp0g", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "Ww+JDt-JBn8", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearchD2Ev) +STUB( + "Ww+RDdxCaeQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEaSERKS7_) +STUB( + "Ww1ET45SBrE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE5beginEv) +STUB("Ww2Gpga45Zc", sceKernelGetIoreq) +STUB( + "Ww8Bx8q2CLo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("WwCE+zCxsaA", _ZN3JSC8Bindings10RootObjectD1Ev) +STUB("WwF0GlnjRpE", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEE3getEv) +STUB( + "WwH0v4cSDPg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEED2Ev) +STUB( + "WwIceVwiS1s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEmmEv) +STUB( + "WwOyktUfsbE", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V345CommunicationRestrictionStatusResponseFactory6createEPNS1_6Common10LibContextEbPNS5_12IntrusivePtrINS3_38CommunicationRestrictionStatusResponseEEE) +STUB( + "WwRNf9TN1jU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEC1EPKS8_) +STUB("WwRRAkhjARM", pthread_barrier_setname_np) +STUB("WwU55zoaAME", X509_VERIFY_PARAM_set_hostflags) +STUB( + "WwUFnozdU8w", + _ZN3sce2Np9CppWebApi14SessionManager2V130RequestPlayerSessionInvitation5setToERKNS1_6Common12IntrusivePtrINS3_2ToEEE) +STUB("WwV9Mv0aV2A", linkat) +STUB( + "WwVmSB2PBEY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEC2ERS7_) +STUB( + "WwbYqRfhE6g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEC2Ev) +STUB( + "WwfdfllsjiE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEED1Ev) +STUB("Wwg0QH+oUSs", _ZN7WebCore9JSElement15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("WwgAg+bIoUY", mono_aot_Sce_Vsh_SQLiteplt) +STUB("WwioUeN2nGM", _ZN7WebCore9HTMLNames9objectTagE) +STUB("Wwj6HbB2mOo", sceHttp2SetAuthInfoCallback) +STUB("WwmQfJYWI4M", _ZNK3sce2Np9CppWebApi6Common8IteratorIfEneERKS4_) +STUB("Wwon-hr4q14", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setInteger9ERKi) +STUB("WwtboQmJ37U", sceSpNetResolverStartNtoa) +STUB( + "WwujilB7umQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE5emptyEv) +STUB( + "WwvwwyUaAEE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEC2Ev) +STUB("WwwFtuQcJaE", _ZN7WebCore17FrameLoaderClientnwEm) +STUB( + "Wwy75k2NaEQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB( + "WwyTYtPw5vQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEptEv) +STUB("WwzNbMVtOJA", sceSpPthreadAttrInit) +STUB("Wx-OoV3PsFY", S1lo) +STUB("Wx2+2t1mX1E", __sys_netgetsockinfo) +STUB( + "Wx28bpar4pI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEmmEi) +STUB( + "WxCtx0stz04", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEE11get_deleterEv) +STUB( + "WxE7-ODf-0Q", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEEC2Ev) +STUB("WxG8d887NM8", _ZN7WebCore18CustomHeaderFieldsC1Ev) +STUB( + "WxHQYAAF7RA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE8copyFromERKS9_) +STUB( + "WxLwWxd53kE", + _ZN7WebCore11DisplayList8RecorderC2ERNS_15GraphicsContextERNS0_11DisplayListERKNS_20GraphicsContextStateERKNS_9FloatRectERKNS_15AffineTransformEPNS1_8ObserverE) +STUB("WxQ-nbumKpM", _ZN4IPMI6Client6Config26SyncMethodInvocationConfigC2Ev) +STUB( + "WxQdWvfffuY", + _ZN9Inspector22InspectorDebuggerAgent15searchInContentERN3WTF6StringERKS2_S5_PKbS7_RNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol12GenericTypes11SearchMatchEEENS1_13DumbPtrTraitsISE_EEEE) +STUB( + "WxR6XZokf1M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "WxRVxme7cp4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEmmEv) +STUB("WxRwwM9qdHo", sceNetApctlCheckCallback) +STUB("WxU7ZQWahK0", _ZN3sce7Toolkit2NP9Utilities6FutureI13SceNpOnlineIdE3getEv) +STUB("WxVd11+n+HQ", _ZN7WebCore8Settings24setTextAreasAreResizableEb) +STUB("WxXXVDHBAt4", _ZNK7WebCore24RotateTransformOperationeqERKNS_18TransformOperationE) +STUB("Wxbg5x3pTXA", sceNpUniversalDataSystemEventPropertyObjectSetArray) +STUB("Wxg1CAla8sM", __asan_stack_malloc_always_4) +STUB("WxgH0vvD708", WKContextSetDomainRelaxationForbiddenForURLScheme) +STUB("WxislcDAW5I", sceNetShowNetstat) +STUB("WxsnAsjPF7Q", sceHmdInternalSeparateModeGetAudioStatus) +STUB("Wxxagqnh8Cg", _ZN3sce7Toolkit2NP2V212ActivityFeed4FeedD1Ev) +STUB("Wxxk5GbijWc", _ZN7WebCore8Settings24setVisualViewportEnabledEb) +STUB("Wy6h5x4u-jE", _ZN3JSC7Symbols36mapIteratorFieldMapBucketPrivateNameE) +STUB("WyBfxlL4J5E", + _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest20unsetMatchStatisticsEv) +STUB( + "WyBumX3C4BI", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyD1Ev) +STUB("WyGkGjCMbhc", _ZN3sce3Xml12MemAllocatorD1Ev) +STUB("WyM9gQyPCvk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEC2ERS7_) +STUB("WyPdBHkHO7o", sceHmdGetDistortionCorrectionCommandApprox) +STUB( + "WyQ9r2r9S4w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE5beginEv) +STUB( + "WyTik9Fe8tg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEED2Ev) +STUB( + "WyUGMSJ+iaY", + _ZNK7WebCore14FrameSelection31getClippedVisibleTextRectanglesERN3WTF6VectorINS_9FloatRectELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEENS0_19TextRectangleHeightE) +STUB("WycWSIPGe0A", mono_aot_Sce_Vsh_Sl2_Sl2Deliverplt) +STUB("Wyh34qiSCN0", _ZN9Inspector24RemoteControllableTargetD1Ev) +STUB( + "WyhSghJXP-0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEE5resetEPS9_) +STUB("WyjerIFpJ6A", ucnv_swap) +STUB("WymRosuh07Y", ubrk_openBinaryRules) +STUB("WypjBw-l+pE", sceMusicPlayerServiceInitialize) +STUB( + "Wypx4KnXlPc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEEC1ERSA_) +STUB("Wyq5vdibU8Q", _ZL10parse_lsdaP15_Unwind_ContextPh) +STUB( + "WywAFglkLug", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody19unsetNpServiceLabelEv) +STUB("WywlusFissg", _ZN3sce2np8NpCommIdC2ERK20SceNpCommunicationId) +STUB("Wz-4JZfeO9g", sceSaveDataClearProgress) +STUB("Wz1HOtORjDs", _ZNK7WebCore12ChromeClient13underlayColorEv) +STUB("Wz2LIel-2WU", ibuf) +STUB("Wz4c0yBD-tA", sceClHttpDeleteConnection) +STUB("Wz5ygglZSsc", Java_java_lang_reflect_Proxy_defineClass0) +STUB( + "Wz7FeYPE0UQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEED1Ev) +STUB("Wz8T1vbjO54", mono_btls_x509_lookup_by_fingerprint) +STUB("Wz8sl6Q2sQA", mono_aot_System_Transactionsjit_code_start) +STUB("Wz9CvcF5jn4", _Getzone) +STUB("WzB-xu4+A4c", _ZN3sce2Np9CppWebApi6Common8IteratorIfEC1EPf) +STUB( + "WzDVT8sa05Q", + _ZN3sce2Np9CppWebApi14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBody11setPlatformEPKc) +STUB( + "WzHJdgmVfi4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEC1Ev) +STUB("WzKEl0hf1yM", mono_thread_init) +STUB( + "WzM2QIMJhO8", + _ZN7WebCore19unitedBoundingBoxesERKN3WTF6VectorINS_9FloatQuadELm0ENS0_15CrashOnOverflowELm16ENS0_10FastMallocEEE) +STUB("WzOBQR6MNWA", sceFacePartsResultCheck) +STUB( + "WzOu1buFlxg", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("WzYkM53NpFM", _ZN7WebCore11MemoryCache13setCapacitiesEjjj) +STUB("WzdF5qicf-Y", mono_method_header_get_locals) +STUB( + "WzfuOeS-UFs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("Wzjq+VE4JoE", sceClKernelSetEventFlag) +STUB( + "Wzp3oVo+EJA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "Wzqt1To8ZQU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEED1Ev) +STUB( + "WzsH8qAYBbI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEC1Ev) +STUB("Wztwg+APnsg", _ZN3JSC13WatchpointSetD2Ev) +STUB("Wzv6dngR-DQ", sceNetDhcpStart) +STUB( + "Wzz-DG-PdAc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEaSERKS9_) +STUB( + "X+0dEC9bbrY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEC1Ev) +STUB( + "X+42FzDbwNo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE5beginEv) +STUB("X+7rIfY97Ps", sceFiosOpGetError) +STUB("X+BrzKqtupE", JSValueIsNull) +STUB( + "X+D5rYHxZIU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEED1Ev) +STUB("X+GUHRxWSq4", _ZN3WTF20ParallelHelperClient6finishEv) +STUB("X+IEfDyFu2Y", ScePsmMonoClassGetMethodFromName) +STUB( + "X+IUqzM7zIs", + _ZN3sce2Np9CppWebApi14SessionManager2V130ResponsePlayerSessionSpectator8fromJsonERKNS_4Json5ValueE) +STUB( + "X+KuKKzrPsQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEC2EPS8_) +STUB("X+M4zlx7qZQ", _ZN3JSC8JSObject19getEnumerableLengthEPNS_9ExecStateEPS0_) +STUB( + "X+RhHzkWfeE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEC1EPS6_PNS2_10LibContextE) +STUB("X+SW70wqg7g", + _ZNK3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponse6toJsonERNS_4Json5ValueEb) +STUB( + "X+VW5fzlaFw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEC2EPS8_) +STUB( + "X+YIUvjKUDk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEeqERKS9_) +STUB( + "X+rOIiKkyZU", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessions30unsetxPsnAcceptPlatformNamePs5Ev) +STUB("X+wFuU7z+jM", _ZN3sce2Np9CppWebApi14SessionManager2V130PostPlayerSessionsResponseBodyD1Ev) +STUB( + "X-0+-JhF+kE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEC1EPS8_) +STUB("X-2V3EejMes", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEEplEm) +STUB( + "X-34BewWRf0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("X-7JJLOUmds", mono_arch_set_nullified_class_init_trampoline) +STUB("X-8c6o3bp9c", GCC_except_table330) +STUB( + "X-8kQaMwNiI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "X-90MoIkxWY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEC1Ev) +STUB("X-AQLtdxQOo", sceAudioInDeviceIdOpen) +STUB("X-FJ6SWdwv0", _ZN7WebCore8SVGNames15orientationAttrE) +STUB( + "X-MTiypCxNU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE21intrusive_ptr_sub_refEPS9_) +STUB("X-NZ7FdbOOk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEED2Ev) +STUB("X-Nm5KLREeg", sceAgcDriverRegisterOwner) +STUB( + "X-P5H13p44g", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEED1Ev) +STUB("X-PsPrn-cCM", mono_aot_Sce_Vsh_VideoPlayerunbox_trampolines_end) +STUB("X-WHexCbxcI", sceNpManagerIntLoginSetSsoToken) +STUB("X-e+klYtSvs", WKBundleFrameEnableThrottlingByTileCount) +STUB("X-htNRhXKIo", _ZN7WebCore24CoordinatedGraphicsLayer14syncAnimationsEv) +STUB("X-ncAvI14sg", RSA_public_decrypt) +STUB( + "X-ntg2WOYHE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "X-q0fwqBGjc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEixEm) +STUB( + "X-q19KfqaBs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEptEv) +STUB("X-rqVhPnKJI", CERT_getCertificateSubject2) +STUB( + "X-s53lS1dhA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "X-t4ju5-qFI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEC1Ev) +STUB("X-ug74xN4-g", mono_aot_platformplt_end) +STUB( + "X-wMVYlgGdg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE6resizeEj) +STUB("X-zcz5I02rs", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13SessionMemberEEC2ERKS4_) +STUB( + "X011FLAcsPM", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V112ErrorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5ErrorEEE) +STUB("X01Lt6CUddw", _ZN15AbstractStorage15FacebookContentD1Ev) +STUB("X04i3BhDv0I", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getBoolean8Ev) +STUB("X07iZGiYyuI", _ZN3sce7Toolkit2NP2V24Core7Request16TerminateServiceC2Ev) +STUB("X0GioSb2T2c", + _ZN7WebCore37BasicComponentTransferFilterOperationC1EdNS_15FilterOperation13OperationTypeE) +STUB("X0HZNbSiqyg", sceTextToSpeech2Open) +STUB( + "X0Kte3FXLlE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEC2EPNS2_10LibContextE) +STUB("X0LA0nb5WIc", uloc_getLanguage_67) +STUB("X0MVSZ4VM2Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEdeEv) +STUB("X0R99DXhScw", sceShareFactoryUtilInitialize) +STUB( + "X0TFVdDd0PQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEixEm) +STUB( + "X0ZoFmgVr44", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEEaSERSA_) +STUB( + "X0bIesECj5A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEEdeEv) +STUB( + "X0crI6LKpcs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEED2Ev) +STUB( + "X0fcDNllzJQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEEC1Ev) +STUB("X0k5NNO6f-g", _ZN7WebCore11DisplayList8ClipPathC1ERKNS_4PathENS_8WindRuleE) +STUB("X0nkrNWnqmk", rgctx_fetch_trampoline_mrgctx_112) +STUB( + "X0o1emCA-P8", + _ZN3sce2Np9CppWebApi14SessionManager2V160PatchGameSessionsSessionIdMembersAccountIdRequestBodyFactory7destroyEPNS3_53PatchGameSessionsSessionIdMembersAccountIdRequestBodyE) +STUB("X0qihLAlOBs", _ZTVN12video_parser17cVideoOperatorMnvE) +STUB("X0qq2MNZiVk", _ZNK3sce2Np9CppWebApi14SessionManager2V112NonPsnLeader11getPlayerIdEv) +STUB( + "X0r2hrj9Zq8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEC2ERS7_) +STUB("X0vEo7cZamA", _ZN3sce2np13NpTitleSecret5ClearEv) +STUB( + "X0y7x0Zosso", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEdeEv) +STUB( + "X13gIVTTXFM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEED1Ev) +STUB("X152zTK+hgM", _ZN7WebCore12GCController18garbageCollectSoonEv) +STUB("X15BbHVE+80", _ZN7WebCore16HTMLTableElement9insertRowEi) +STUB("X169CE6G3Y4", sceAmprAprCommandBufferMapEnd) +STUB( + "X16F2WQkIEI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEE6assignEPS5_PFvS7_EPNS2_10LibContextE) +STUB("X16Vec2WnqI", sceSlimglClientPulse) +STUB("X17DF4uF7Co", _ZN3sce7Toolkit2NP2V27Session7Request6CreateC1Ev) +STUB( + "X18C9TW2fic", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE21intrusive_ptr_sub_refEPS9_) +STUB("X1C-YhubpGY", _ZNSt12placeholders2_3E) +STUB("X1DNtCe22Ks", _ZSt9_LStrcollIcEiPKT_S2_S2_S2_PKSt8_Collvec) +STUB( + "X1DWFsIOSak", + _ZN7WebCore16BlobRegistryImpl26writeBlobsToTemporaryFilesERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16EEEONS1_8FunctionIFvS7_EEE) +STUB("X1G4kkN2R-8", sceNpSignalingCancelPeerNetInfo) +STUB( + "X1JE3HkJST8", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi17getPublicProfilesEiRKNS4_28ParameterToGetPublicProfilesERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_25GetPublicProfilesResponseEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("X1NXjHDq918", _ZN7WebCore12NamedNodeMap5derefEv) +STUB("X1OqjWAM7NM", _ZN7WebCore15DatabaseTracker29deleteAllDatabasesImmediatelyEv) +STUB("X1Pb5mr7kgk", AnnotateRWLockReleased) +STUB("X1PsAOE5YU8", sceCesUtf16leToBig5) +STUB("X1QtBligH2Y", _ZN3JSC12JSLockHolderC1EPNS_14JSGlobalObjectE) +STUB("X1SYe8TIGOc", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry11getObjectIdEv) +STUB( + "X1XWeoH5190", + _ZN3sce7Toolkit2NP2V29Challenge16getChallengeDataERKNS3_7Request16GetChallengeDataEPNS2_4Core8ResponseINS3_13ChallengeDataEEE) +STUB("X1bFhjwBxXU", _ZNK7WebCore22EmptyFrameLoaderClient12blockedErrorERKNS_15ResourceRequestE) +STUB( + "X1c350l8Jao", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEC1EPKS8_) +STUB( + "X1i+h1jZxBE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEC2EPKS8_) +STUB( + "X1k2NvkAMGc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEC1EPS8_) +STUB( + "X1kzrBxekD0", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "X1l6OBe7+qE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEixEm) +STUB( + "X1pRJOIKshw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEaSERKS7_) +STUB("X1q9jPv+MMM", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18SessionInformationEE7addressERKS3_) +STUB("X1vBIfxrUjs", _ZN7WebCore25JSDeprecatedCSSOMRGBColor9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB( + "X2-PcwW-fLs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEEaSERKSA_) +STUB( + "X200i7q7bms", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEED2Ev) +STUB("X20cr8FFQkI", WKPageGetAllowsRemoteInspection) +STUB("X23-bMY6HME", _ZN7WebCore21BackForwardController11currentItemEv) +STUB("X26HnO3yPb8", _ZN9Inspector28InspectorScriptProfilerAgentnwEm10NotNullTagPv) +STUB( + "X26ZFxDMwz4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEC1Ev) +STUB("X27Xi-oUxkQ", mono_metadata_token_from_dor) +STUB( + "X28FxhZbl3E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "X2CqtBFnW98", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEE11get_deleterEv) +STUB( + "X2FR7e8Pv4A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEEC1Ev) +STUB("X2K34ExGOBY", _ZN7WebCore8Document19updateStyleIfNeededEv) +STUB( + "X2KF1CXThp8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEC2Ev) +STUB("X2LhSaEfd-U", jpeg_natural_order3) +STUB("X2UKYjIeWY8", ucase_isCaseSensitive) +STUB("X2Vl3yU19Zw", sceFontGraphicsDrawingFinish) +STUB("X2YwmzkrrcQ", _ZN7WebCore15JSFetchResponseC2ERKS0_) +STUB("X2aGBDIpZDE", _ZNK7WebCore20DeprecatedCSSOMValue7cssTextEv) +STUB( + "X2avi-WGNVY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEC1EPS6_PNS2_10LibContextE) +STUB("X2gTVDity6o", mono_aot_Sce_Vsh_JsExtensionmethod_addresses) +STUB("X2kEvJBix2Q", unorm2_isInert) +STUB( + "X2lVKLlddME", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEEdeEv) +STUB("X2rlBpsGwf8", + _ZN3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap11setOnlineIdERK13SceNpOnlineId) +STUB( + "X2vnepwubjo", + _ZN7WebCore15ContextMenuItemC1ENS_19ContextMenuItemTypeENS_17ContextMenuActionERKN3WTF6StringEPNS_11ContextMenuE) +STUB("X2wfcFYusTk", _ZNSt11regex_errorD2Ev) +STUB("X2xRfr1XBMY", _ZN3sce7Toolkit2NP2V210Tournament7Request10TeamFilterC1Ev) +STUB("X3-FoxLd4a8", __sync_fetch_and_xor_16_internal) +STUB("X33tJyO5k+E", _ZN9Inspector27CSSBackendDispatcherHandlerD2Ev) +STUB( + "X368bBrCPpk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEmmEi) +STUB("X37PZSA8a34", sceCesUhcToUtf32) +STUB("X38zwtm0yzw", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead24disableSystemUiMenuIsSetEv) +STUB( + "X3AzeTy2Z8E", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEptEv) +STUB("X3BWlTuErbk", sceVoiceChatRequestJoinPlayerSessionVoiceChatChannel) +STUB("X3DrtC2AZCI", _ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1Em) +STUB("X3L4jbWOtkc", JSStringRetain) +STUB( + "X3N28iSmuAg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEppEi) +STUB( + "X3UeHS0PaTA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEED2Ev) +STUB( + "X3bUoME-FlM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEEC1Ev) +STUB("X3fVqGRmaSk", + _ZNK3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer12getAccountIdEv) +STUB( + "X3fntOdeSuo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("X3gCQDtFUGo", _ZTVN7WebCore20ResourceHandleClientE) +STUB("X3glbGOmnRI", _ZN3sce7Toolkit2NP23ChallengeGetItemRequestC2Ev) +STUB("X3ir9Mseh44", _ZThn136_N7WebCore16HTMLMediaElement12endScrubbingEv) +STUB( + "X3j5t81k17Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEC1ERKS8_) +STUB("X3jpcPC7V48", _ZN15AbstractStorage15FacebookContent4OpenEit) +STUB("X3xFNY5k+MQ", _ZN9Inspector24WorkerFrontendDispatchernwEmPv) +STUB( + "X3y-e5wSBms", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEEC1ERKSA_) +STUB( + "X3yY-V3KVs4", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayer30unsetxPsnAcceptPlatformNamePs5Ev) +STUB("X4-OCWkADJg", i2t_ASN1_OBJECT) +STUB("X409nw2B+A0", _ZNK3sce7Toolkit2NP2V24Core12ResponseData14getInitializedEv) +STUB("X41cYKFlQv8", sceAppInstUtilAppGetSize) +STUB("X47s4AamPGg", sceNpTrophySystemGetTitleFileStatus) +STUB("X4MYzukPc3g", sceSaveDataDirNameSearchPs4) +STUB( + "X4Ner4pHzig", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE3endEv) +STUB("X4NiektK72E", _ZN3sce3Xml13AttributeListD1Ev) +STUB( + "X4RQPc2tnJ0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "X4YEoz22XJI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEmmEi) +STUB("X4elOoiAtB4", sceNpAppLaunchLinkIntGetCompatibleTitleIdNum) +STUB("X4gWWP1iYGc", mono_aot_Sce_Vsh_Orbis_BgftAccessormethod_addresses) +STUB("X4iLAV+x2NE", _ZN3JSC2VM33templateObjectDescriptorSpaceSlowEv) +STUB("X4oTxmv5Zxo", Java_com_sony_bdjstack_org_bluray_vfs_VFSManagerImpl_proxyDisableClip) +STUB("X4pGci2dAvc", _ZNK3JSC14CellAttributes4dumpERN3WTF11PrintStreamE) +STUB( + "X4y+CsWPeoE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEEC1ERSA_) +STUB("X5-JFMmDOKQ", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_11CountryInfoEEC2Ev) +STUB( + "X510jAtyfhk", + _ZN7WebCore34forwardAttributeGetterToBackingMapERN3JSC14JSGlobalObjectERNS0_8JSObjectERKNS0_10IdentifierE) +STUB( + "X519EQ-lb14", + _ZN3sce2Np9CppWebApi7Matches2V132ResponseCompetitiveResultFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_25ResponseCompetitiveResultEEE) +STUB("X52vXnVvtpE", sceNpManagerIntGetParentalControlInfoNB) +STUB( + "X53JMUphRow", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEEC2Ev) +STUB("X53w3lTzX-w", _ZN7WebCore4Page27applicationWillResignActiveEv) +STUB( + "X56YA96T+ok", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("X5ABBrXF9UI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEED2Ev) +STUB("X5F-dSXoUUw", _sceDepthSetHeteroMode) +STUB("X5FCp6scKms", sceMusicCoreServerInitialize) +STUB("X5On-7hVCs0", sceUserServiceGetGlsLiveQuality3) +STUB( + "X5PU1q+-dB4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEppEi) +STUB("X5QdYSDZjik", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11EntitlementEE7destroyEPS3_) +STUB("X5S-iJhhOBg", _ZN3sce7Toolkit2NP2V24Core7Request16ThreadProperties15PRIORITY_LOWESTE) +STUB( + "X5UziZEssdE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "X5VxIeToqwU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE4sizeEv) +STUB("X5aORxorEl8", mono_counter_get_variance) +STUB( + "X5cW0ovz3qg", + _ZN9Inspector24ConsoleBackendDispatcher18getLoggingChannelsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "X5e9GK4yISU", + _ZN3sce2Np9CppWebApi14SessionManager2V135PostGameSessionsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_28PostGameSessionsResponseBodyEEE) +STUB( + "X5eFDUWCVS4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEC2EPS6_PNS2_10LibContextE) +STUB("X5klQOiJmiA", mono_aot_Sce_Vsh_SQLiteAuxunwind_info) +STUB("X5krCatftqo", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110ResultTypeEEaSERKS7_) +STUB( + "X5n7HJbdzRg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEC2EPKS8_) +STUB("X5rJZNDZ2Ss", sceUserServiceGetPasscode) +STUB( + "X6-6lTICZOQ", + _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product8setMediaERKNS1_6Common12IntrusivePtrINS3_14ContainerMediaEEE) +STUB("X60kEhH2czY", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session12Notification18InvitationReceivedEEC2Ev) +STUB("X62s7-3mQYs", _ZN7WebCore16UserGestureTokenD1Ev) +STUB( + "X639EzdoLmk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "X64NXXnmFJY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEC2ERS7_) +STUB("X64Wjxgh1L4", cairo_surface_mark_dirty_rectangle) +STUB("X65a9+MTd9U", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container10mediaIsSetEv) +STUB("X67RLMWgJC0", + _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequestC2EPNS1_6Common10LibContextE) +STUB("X69UlAXF-Oc", _ZNSt10moneypunctIwLb1EEC1Em) +STUB("X6AKrGoJOU0", _ZN3sce3pss4core14IntHandleTable5mutexE) +STUB( + "X6LX5Y64yRQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEE5resetEPS6_) +STUB("X6NVkdpRnog", _ZN3sce2np9WorkQueueC1Ev) +STUB( + "X6U1h1tC+1k", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("X6UDGvey0sQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEEneERKS7_) +STUB( + "X6UvwRxTuII", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEC1Ev) +STUB("X6VaElvCf3E", _ZNK7WebCore3URL11hostAndPortEv) +STUB( + "X6aGcPw0m3M", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("X6bNI-ZFA9A", _ZN8meta_gen13JpegRetriever18apexValue2apertureEd) +STUB( + "X6dbLi3y+jQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEptEv) +STUB( + "X6eGDHQuHNQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE21intrusive_ptr_add_refEPS9_) +STUB("X6emt+LbSEI", sceNpIntSetPlatformType) +STUB("X6rA6rHVjTU", SSL_CTX_clear_chain_certs) +STUB( + "X6tnt8BaI70", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEmmEv) +STUB( + "X6y9uriwu+s", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEdeEv) +STUB("X6yCBYPP7HA", sceGnmSqttInit) +STUB( + "X7294x828J0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEED2Ev) +STUB("X74NRPVnffM", SetCurrentSrcId) +STUB( + "X75yNJpVbQE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEC2EPS6_PNS2_10LibContextE) +STUB("X76Nuvruiqk", uloc_forLanguageTag_67) +STUB("X79uU+sZkdQ", sceKernelSflashSetWritePrio) +STUB("X7A21ChFXPQ", __floatsidf) +STUB("X7Cfsiujm8Y", sceAudioOutSetUsbVolume) +STUB("X7CjrEGDW6U", _ZN7WebCore17LibWebRTCProvider19unregisterMDNSNamesEm) +STUB("X7DvbKq4Mds", sceBgftServiceIntPlayGoIsPaused) +STUB("X7Jm8TyDTXk", + _ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer12setAccountIdEPKc) +STUB("X7KiyNvneoQ", _ZN3JSC7Symbols24setBucketNextPrivateNameE) +STUB("X7OfX+xKjbQ", + _ZN3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBodyC1EPNS1_6Common10LibContextE) +STUB( + "X7TTlhEry-I", + _ZN7WebCore19JSHTMLSelectElement3putEPN3JSC6JSCellEPNS1_14JSGlobalObjectENS1_12PropertyNameENS1_7JSValueERNS1_15PutPropertySlotE) +STUB("X7VrykTwwkw", _ZN3sce2Np9CppWebApi6Common6VectorIlE21intrusive_ptr_add_refEPS4_) +STUB("X7X+SbzvN3U", _ZN3sce2Np9CppWebApi6Common6VectorIjE10setContextEPNS2_10LibContextE) +STUB("X7ZMMq6Amf0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEcvbEv) +STUB("X7drz43PfRM", mono_print_method_from_ip) +STUB( + "X7ej99-J2p0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEED1Ev) +STUB("X7gTF-zHNOI", _ZN9Inspector25DatabaseBackendDispatcherD2Ev) +STUB("X7gbPHVoNEw", u_strToUTF32WithSub) +STUB( + "X7ioNtnvkS4", + _ZN3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform8fromJsonERKNS_4Json5ValueE) +STUB( + "X7iwxOfrb28", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE18getResponseHeadersERSB_) +STUB("X7iya0Mw+To", _ZN4IPMI4impl11SessionImplD2Ev) +STUB( + "X7niXMpXE2I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("X7pDV+6BR6Y", _ZN3JSC6JSLock12DropAllLocksD2Ev) +STUB("X7tWmHNtoKg", sceVideoOutSysSetDimmer2) +STUB( + "X7zCAF1yREE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEmmEi) +STUB( + "X8+zkVtT8fI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE8pushBackERKS8_) +STUB("X80KSZQwiMk", delegate_virtual_invoke_28_p) +STUB("X81IlwML0HU", uset_removeAllStrings_67) +STUB("X82UupFuwYw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEEC1ERS7_) +STUB("X82kR0K5yI0", _ZNK3sce2Np9CppWebApi7Matches2V116RequestMatchTeam13teamNameIsSetEv) +STUB("X86Q0qQJ1m0", __sys_netgetiflist) +STUB("X89dXBu6bfY", uprv_add32_overflow_67) +STUB("X8FN-5Nk-yE", sceVideoOutSysAddSetModeEvent) +STUB( + "X8FTlX35kgw", + _ZN3sce2Np9CppWebApi14SessionManager2V131PlayerSessionPushContextFactory7destroyEPNS3_24PlayerSessionPushContextE) +STUB("X8HJTL5AfLU", uprv_strdup_67) +STUB( + "X8K+c22k7Is", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "X8MCQUvweDs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEaSERS7_) +STUB("X8OUaccS0g8", _ZN7WebCore8SVGNames20patternTransformAttrE) +STUB("X8P98KCZr+Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEEC2EPS6_) +STUB("X8PFsyb2UTk", sceVoiceChatUnregisterMicEventHandler) +STUB("X8TDSJIPZUA", _ZNK3WTF3URL12isolatedCopyEv) +STUB("X8WERsB8c6o", _ZNK3sce2Np9CppWebApi15ProfanityFilter2V223FilterProfanityResponse9getStatusEv) +STUB( + "X8Y2V9waHrk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEdeEv) +STUB("X8YZWdgpCTs", _ZN7WebCore4Node10renderRectEPb) +STUB("X8bM2L-G59E", _ZN4IPMI4impl10ClientImpl11getUserDataEv) +STUB("X8cyHuqlfSI", searchCommInfoListById) +STUB( + "X8ffU+nSVVo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEeqERKS9_) +STUB("X8gYbyLG1wk", sceLncUtilSetControllerFocus) +STUB( + "X8glqa-XRGI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE10setContextEPNS2_10LibContextE) +STUB( + "X8rPkxLXS6M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEE7get_refEv) +STUB("X8swyKBlbVk", _ZN7WebCore9PageCache10setMaxSizeEj) +STUB( + "X8uNKyVpR1I", + _ZN3sce7Toolkit2NP2V27Session7getDataERKNS3_7Request7GetDataEPNS2_4Core8ResponseINS3_11SessionDataEEE) +STUB("X8vDO398aQY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend16FriendsOfFriendsEE5resetEv) +STUB("X9+pzrGtBus", sceFontFtSupportType42) +STUB("X96HSaEKPYI", _ZN4Manx8X509cinf7subjectEv) +STUB( + "X97F1bSQGRo", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V136ConnectionQualityWiredMetricsFactory6createEPNS1_6Common10LibContextEidiPNS5_12IntrusivePtrINS3_29ConnectionQualityWiredMetricsEEE) +STUB("X9CqyP164Hc", sceNpUtilGetNpLanguageCode2) +STUB("X9D8WWSG3As", _ZNSt8ios_baseD1Ev) +STUB( + "X9Ftp0u4TTc", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetBoolean1Ev) +STUB("X9GXg6Y4eFU", JSObjectGetTypedArrayByteOffset) +STUB("X9Jgur0QtLE", sceUserServiceSetNotificationSettings) +STUB( + "X9K0T1eBP3A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEixEm) +STUB("X9LFUjOdf+8", + _ZN7WebCore22EmptyFrameLoaderClient30dispatchDidFailProvisionalLoadERKNS_13ResourceErrorE) +STUB("X9Omw9dwv5M", sceGnmSetEmbeddedPsShader) +STUB("X9OuYB-jm2A", _ZN9Inspector25NetworkFrontendDispatcher16webSocketCreatedERKN3WTF6StringES4_) +STUB("X9W9plO1GdQ", sceAvControlIsSuspendedProcessOutputModeAvailable) +STUB( + "X9WJgHHeGzM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE21intrusive_ptr_add_refEPS9_) +STUB("X9Zxl4QVLqM", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13FriendsOfUserEE10deallocateEPS3_m) +STUB("X9elh51SOlo", + _ZN7WebCore31BasicColorMatrixFilterOperationC2EdNS_15FilterOperation13OperationTypeE) +STUB("X9fJ5v+b+p0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredTeamsEED1Ev) +STUB("X9g+mUuwvu4", mono_field_from_token) +STUB( + "X9hfd0RTsfc", + _ZN7WebCore12JSTimeRangesC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_10TimeRangesENS6_13DumbPtrTraitsIS8_EEEE) +STUB("X9k7yrb3l1A", sceFontGraphicsDrawupFillRadialGradient) +STUB( + "X9p5+08scgY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEC2EPNS2_10LibContextE) +STUB("X9pIz-invoc", mono_aot_Sce_Vsh_Np_Commonjit_got) +STUB("X9sELSrqkw8", mono_aot_ReactNative_Debug_DevSupportjit_code_end) +STUB("X9tXcvo8Mnw", WKViewSetFocused) +STUB( + "X9upOsYZ6ds", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEC1ERKS7_) +STUB("X9wbEGzDPr8", _ZN3JSC8JSBigInt16createWithLengthEPNS_14JSGlobalObjectEj) +STUB("X9xDL5vo1Ng", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEE5resetEPS6_) +STUB( + "X9xmX6UCHnM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEeqERKS9_) +STUB("XA+MKRXav1U", _ZN3JSC16InternalFunctionC2ERNS_2VMEPNS_9StructureENS_14NativeFunctionES5_) +STUB("XA+llCabg8g", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_33ActivityFeedSharedScreenshotStoryEEC1Ev) +STUB("XA09tbCsAyk", fuse_chan_fd) +STUB("XA8u58D+lbk", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product16unsetReleaseDateEv) +STUB("XABg0vypnik", _ZN3JSC6JSLockD2Ev) +STUB("XAF7SiZDFto", _ZN7WebCore18JSHTMLVideoElementC1ERKS0_) +STUB("XAJVvSm-llo", WKPreferencesGetDialogElementEnabled) +STUB("XAKDgxcra6k", arch_init_gc) +STUB("XAXEc1-6iHk", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V16Rating8fromJsonERKNS_4Json5ValueE) +STUB("XAchpNCJkCQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEaSERS7_) +STUB("XAgzGK6X68A", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_7TssDataEE17getAdditionalInfoEv) +STUB("XAk7W3NcpTY", _ZN10__cxxabiv117__class_type_infoD0Ev) +STUB("XAmDowAQhFs", sceNpAppInfoIntCheckServiceAvailabilityA) +STUB("XAnWljFnlRo", mono_counter_get_unit) +STUB("XAqAE803zMg", _Atomic_load_1) +STUB("XAqBKPLfJnQ", _ZN9Inspector28InspectorScriptProfilerAgentD1Ev) +STUB("XAr8Ye8x-5k", + _ZN3WTF20ParallelHelperClientC2EONS_6RefPtrINS_18ParallelHelperPoolENS_13DumbPtrTraitsIS2_EEEE) +STUB("XArRxgQY+cg", + _ZN15AbstractStorage12LocalContent13ParseMetadataEPN23sceMetadataReaderWriter8MetadataES3_) +STUB("XAsktbrwtRY", _ZSt9use_facetISt8numpunctIwEERKT_RKSt6locale) +STUB( + "XAvYbSBn06Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEmmEi) +STUB("XAzZo12sbN8", scePthreadMutexSetprioceiling) +STUB( + "XB-5OVDwh6Y", + _ZN7WebCore16BlobRegistryImpl19writeBlobToFilePathERKNS_3URLERKN3WTF6StringEONS4_8FunctionIFvbEEE) +STUB("XB-EN3hFrS4", _ZN15AbstractStorage10YoutubeAPI8initHttpEv) +STUB("XB4m+USaFdg", ucnv_resetFromUnicode) +STUB( + "XB96-o9ohxA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEE11get_deleterEv) +STUB("XBBAzFHUxSk", _rand) +STUB("XBFr1zrK8W0", _ZN7WebCore11DisplayList17FillRectWithColorC2ERKNS_9FloatRectERKNS_5ColorE) +STUB("XBGBrCF5WWU", mono_object_describe) +STUB("XBGl9HsG7rs", _ZN3JSC17DebuggerCallFrame20sourceIDForCallFrameEPNS_9CallFrameE) +STUB( + "XBH7I63Ckgw", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10setString5EPKc) +STUB("XBOleUDAjgQ", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIjEmmEi) +STUB("XBPTNNG3M6o", _ZN12video_parser17cVideoProfilerMp419_releaseMediaCommonEPNS_13VpMediaInfo_tE) +STUB( + "XBPVyA0odOI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEED2Ev) +STUB("XBSnYcicz0w", GCC_except_table402) +STUB( + "XBTbWCMVcCY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE7releaseEv) +STUB("XBUZwzWAHa4", _ZN3sce7Toolkit2NP2V23TUS7Request18GetFriendsVariableC1Ev) +STUB("XBUjLdh8acQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEE7get_refEv) +STUB( + "XBbcS3dfNUI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEE3getEv) +STUB("XBeeGMsUfMY", _ZN3JSC4Yarr17RegularExpressiondlEPv) +STUB("XBlKK5ijWI8", _ZNK15AbstractStorage14MemfileContent10GetServiceEv) +STUB( + "XBm7Zff7toY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEED1Ev) +STUB("XBmd6G-HoYI", _ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2EPKcm) +STUB( + "XBpkbesjGAU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("XBppavaJGS0", sceFsNsfsMountWithFlags) +STUB("XBtM8+wHGFg", _ZN3NTF5Cache16DiskCacheManagerC2Ev) +STUB("XBttJJYTgJg", _ZN3sce7Toolkit2NP2V28Commerce9ContainerD1Ev) +STUB("XBzzdzT3qyg", _ZN3sce2np13NpTitleSecretD1Ev) +STUB("XC1yQikEvCg", _ZN3sce7Toolkit2NP2V27Ranking7Request11GetGameData8MAX_PCIDE) +STUB("XC2CuQMB9js", sceMatReallocEnd) +STUB("XC8AObh99VY", u_charMirror_67) +STUB("XC9wM+xULz8", sceAvPlayerJumpToTime) +STUB("XCD6zBOkiIM", sceVnaInitialize) +STUB("XCPofynD064", _ZN3sce7Toolkit2NP2V212EventsClient6EventsD2Ev) +STUB( + "XCRhaQXlVnA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE7popBackEv) +STUB( + "XCTFthigrUg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "XCVIIKoUvBs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEED1Ev) +STUB("XCaHXZDgzVk", _ZN3PAL12CryptoDigest11computeHashEv) +STUB("XCae-VCLyPs", _ZN3WTF14FileSystemImpl23getFileModificationTimeERKNS_6StringE) +STUB("XCevsdlvMmE", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend7FriendsEEC2Ev) +STUB("XCfx5iUbPN0", mono_btls_x509_store_from_ctx) +STUB( + "XCgALtRtzLs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("XCtZ7a2WqSc", _ZN3NTF15DNSPrefetchImplD0Ev) +STUB("XCtf+23QT0k", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus9getSlotIdEv) +STUB("XCuA-GqjA-k", in6addr_loopback) +STUB("XCuZoBSVFG8", sceRazorCpuNamedSync) +STUB( + "XCuqn4H45pg", + _ZN3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsSearchRequestBody13setConditionsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_15SearchConditionEEEEE) +STUB("XCv0qOUtAu8", sk_pop) +STUB( + "XD+Ti8mup58", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEC2Ev) +STUB("XD+gBXTYnbI", ufmt_getDate_67) +STUB("XD0q0X8rQ20", mono_btls_x509_store_from_ssl_ctx) +STUB("XD3mDeybCnk", scePthreadRwlockTryrdlock) +STUB( + "XD6e9lI0okE", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V115VariableFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_8VariableEEE) +STUB("XD9FmX1mavU", _ZNSt10filesystem11_EquivalentEPKcS1_) +STUB( + "XDCDAVLw-no", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEeqERKS9_) +STUB( + "XDCWVd5XBh4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEmmEi) +STUB("XDGOJE-m834", WKBundleFrameSuspendAnimations) +STUB( + "XDHuuECqGg8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEmmEi) +STUB("XDLVe8Wq47E", sceCloudClientSetAuthCodes) +STUB("XDO3Vper8w8", + _ZN9Inspector24CanvasFrontendDispatcher27cssCanvasClientNodesChangedERKN3WTF6StringE) +STUB( + "XDPPumKA+g4", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "XDSBXKyp4GM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEC2EPS6_PNS2_10LibContextE) +STUB("XDV0Tog0T84", _ZN3JSC20MarkedArgumentBuffer10slowAppendENS_7JSValueE) +STUB("XDWGYMk3eYY", mono_aot_Sce_Vsh_MorpheusUpdWrappermethod_addresses) +STUB( + "XDZ2G8gtxnE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEmmEi) +STUB("XDai-Nru7f8", uprv_ceil) +STUB("XDdMkcoXOGE", _ZN7WebCore37WidgetHierarchyUpdatesSuspensionScope11moveWidgetsEv) +STUB( + "XDdeeZ4-IzE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEixEm) +STUB( + "XDimBw0+yLc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEaSERS8_) +STUB("XDm4jTtoEbo", _ZNSt8numpunctIwED2Ev) +STUB("XDncXQIJUSk", sceNpGetOnlineId) +STUB("XDokHc-av+U", _ZN15AbstractStorage15FacebookContent5CloseEv) +STUB( + "XDvS4kDZW-c", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB("XE0pNXwREeY", WKPreferencesGetWebSQLDisabled) +STUB("XE18t1sfj-s", _ZNK7WebCore17HTMLSelectElement6lengthEv) +STUB("XE2bw4kaIi8", _ZN7WebCore7JSRange6s_infoE) +STUB( + "XE9AoGsKLU8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEEC1ERKSA_) +STUB("XEAXELFbtK8", _ZN3sce7Toolkit2NP2V212NetworkUtils13NetStateBasicaSERKS4_) +STUB("XECwgo2nbek", sceKernelDebugGetAppStatus) +STUB("XEGAcOsiVfQ", sceAvSettingDriverUpdateStatus) +STUB("XELByF7MVUg", _ZN12video_parser5vpcom3rtc22FormatRFC3339LocalTimeEPcPKm) +STUB( + "XELFeJUaitM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEC2Ev) +STUB("XEM1xOAHA3k", _ZTVN9Inspector33InspectorBackendDispatcherHandlerE) +STUB("XEP8UAJb604", _ZN3sce7Toolkit2NP2V27Session7Request6Create15LOWEST_PRIORITYE) +STUB("XEPf4yyKUyk", sceNpManagerIntOnlineId2NpId) +STUB("XEQnUXQ6MOw", sceNpIpcIsInit) +STUB( + "XESg4FIGqTY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE3endEv) +STUB("XEUrIeCJiVs", sceVideoDecoderArbitrationAcceptEvent) +STUB("XEXFdmQj5oI", _ZN3sce2np7CalloutC1EPNS0_14CalloutContextE) +STUB( + "XEXyBagBEO4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEE11get_deleterEv) +STUB("XEZfusUy83U", _ZN3sce7Toolkit2NP24CheckAvailabilityRequestC1Ev) +STUB( + "XEc+e2vA9FY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE10setContextEPNS2_10LibContextE) +STUB("XEcXPJP9+70", _ZN3sce2np10Cancelable18SetCancelErrorCodeEi) +STUB("XEd85nz+-5g", uhash_compareCaselessUnicodeString) +STUB("XEfIP+rRCsM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEE7add_refEv) +STUB("XEgdhGfqRpI", sceUserServiceSetEventSortTitle) +STUB("XEhe6ysUIws", UDatamemory_assign_67) +STUB( + "XEia7eEBnbU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEE11release_refEv) +STUB( + "XEkzKOWJW4g", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V135AddAndGetVariableRequestBodyFactory7destroyEPNS3_28AddAndGetVariableRequestBodyE) +STUB("XEncuQcKGeQ", WKAXObjectCopyHelpText) +STUB("XEzAnNpXVaw", _ZN9Inspector14InspectorAgentD0Ev) +STUB( + "XEzRfZdYBjQ", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions11unsetfieldsEv) +STUB("XFGcl9DVEH4", rgctx_fetch_trampoline_rgctx_34) +STUB("XFKztg2ppsE", _ZN7WebCore22TextureMapperAnimationC1ERKS0_) +STUB( + "XFMxCYLAQI0", + _ZN7WebCore14DocumentLoader17addConsoleMessageEN3JSC13MessageSourceENS1_12MessageLevelERKN3WTF6StringEm) +STUB( + "XFOITbbxiP8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE3endEv) +STUB( + "XFQNeE+EwJU", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V226WebApiFilterRequestFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_19WebApiFilterRequestEEE) +STUB( + "XFSXQUpWNZk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "XFX81Dwc4Ks", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEE5resetEPS9_) +STUB("XFYItOxS6r0", sceApplicationInitialize) +STUB("XFcKXHzbOGw", delegate_virtual_invoke_imt_6) +STUB( + "XFdPk9JCWkc", + _ZN9Inspector21InspectorRuntimeAgent12awaitPromiseERKN3WTF6StringEPKbS6_S6_ONS1_3RefINS_31RuntimeBackendDispatcherHandler20AwaitPromiseCallbackENS1_13DumbPtrTraitsIS9_EEEE) +STUB("XFh0C66aEms", _ZNSt12future_errorD2Ev) +STUB("XFhz65JSkXw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEEeqERKS7_) +STUB("XFkeGc4PmZo", + _ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBodyC1EPNS1_6Common10LibContextE) +STUB("XFo3ZOD4wKo", _ZN9Inspector25NetworkFrontendDispatcherC2ERNS_14FrontendRouterE) +STUB( + "XFtb1SiTE6M", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB( + "XFvgdMzzhZM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEC1EPS6_PNS2_10LibContextE) +STUB( + "XFvukJ8BG8o", + _ZN9Inspector18InspectorHeapAgent10getPreviewERN3WTF6StringEiRNS1_8OptionalIS2_EERNS1_6RefPtrINS_8Protocol8Debugger15FunctionDetailsENS1_13DumbPtrTraitsISA_EEEERNS7_INS8_7Runtime13ObjectPreviewENSB_ISG_EEEE) +STUB("XFzE+ADPW-8", __strtodg) +STUB("XFzOqbUuFRs", mono_aot_Sce_Vsh_Np_Trophyplt_end) +STUB( + "XFzf4GhJqa0", + _ZN9Inspector24ConsoleBackendDispatcherC1ERNS_17BackendDispatcherEPNS_31ConsoleBackendDispatcherHandlerE) +STUB( + "XG4YFRN8H0o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE10setContextEPNS2_10LibContextE) +STUB("XGAUPqQqbK8", _ZTSPKDh) +STUB("XGEHHETh5UE", mono_aot_Sce_Vsh_Messagesplt) +STUB( + "XGFCZ8cHQ-g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEED2Ev) +STUB("XGFUYNNqFOQ", __fini_array_end) +STUB("XGKzkI4ljaI", _ZN3sce7Toolkit2NP2V211SharedMedia10ScreenshotC2Ev) +STUB("XGNIEdRyYPo", __cleanup) +STUB("XGOSij8+p18", _ZN18MmsFileUpdaterBase18RegenerateMetadataEP4xMMSPKc) +STUB("XGP2MNQH0o8", _ZN7WebCore21BlobDataFileReferenceD0Ev) +STUB("XGQXIktEVGU", udat_toCalendarDateField_67) +STUB("XGUaUPjBukI", Java_java_awt_GnmFontMetrics_loadFont) +STUB("XGVABnpNksQ", ft_corner_orientation) +STUB( + "XGYC8bMAArE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEED2Ev) +STUB("XGadXf2ePDo", mono_object_get_class) +STUB("XGbtZD7umgM", Java_java_lang_StrictMath_acos) +STUB("XGcNn1LamZk", scePlayReadyCdmiGetSessionId) +STUB("XGggY5Z8CUk", _ZN3sce2Np9CppWebApi6Common8IteratorIjEmmEi) +STUB( + "XGkENIezCB0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEdeEv) +STUB( + "XGl0T3rWh28", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanity9setlocaleEPKc) +STUB("XGnuIBmEmyk", strndup) +STUB("XGrX-JLFi6Y", _ZNK7WebCore8Document21isAnimatingFullScreenEv) +STUB( + "XGtCMJ-e8V4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEC1Ev) +STUB( + "XGtRCKdZ55U", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB( + "XGw98Tnm9CQ", + _ZN7WebCore17PageConsoleClient23messageWithTypeAndLevelEN3JSC11MessageTypeENS1_12MessageLevelEPNS1_9ExecStateEON3WTF3RefIN9Inspector15ScriptArgumentsENS6_13DumbPtrTraitsIS9_EEEE) +STUB("XGxXS135WR8", sceShellCoreUtilGetAppEnableTTS) +STUB( + "XGzSMI+hLVs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("XH-rVgQk7oE", mono_get_exception_thread_state) +STUB("XH07lCyBXBU", mono_aot_System_Reactive_Interfacesjit_got) +STUB("XH0t5lTW1HY", _ZTVN7WebCore9DOMWindowE) +STUB("XH0yo062xuk", mono_btls_ssl_get_cipher) +STUB("XH2M0C5vXwE", + _ZN7WebCore11JSImageData15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB("XHFOaK4Bnt0", _ZN12video_parser5vpcom9ReadAsyncE) +STUB( + "XHGiMiKTeQE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEptEv) +STUB( + "XHKvKmQfOKA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("XHPiBhqR0zc", JNU_MonitorWait) +STUB("XHTZO06td-o", ulocdata_getMeasurementSystem_67) +STUB( + "XHVQ4a+1Y1A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEC2EPKS8_) +STUB( + "XHY0WLXVpcs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "XHZGQOkZe98", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEC2EPS6_PNS2_10LibContextE) +STUB( + "XHZqSbkxRJU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE21intrusive_ptr_sub_refEPS7_) +STUB( + "XHbH8NAO4gY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE21intrusive_ptr_add_refEPS9_) +STUB("XHd2MpdKP2I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE3endEv) +STUB("XHl38ZNknbs", sceAudioOut2MasteringInit) +STUB( + "XHlp+1cI0kw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE5clearEv) +STUB( + "XHmtsAqpi4I", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("XHnm54FAso4", _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead14getCustomData1Ev) +STUB( + "XHt7aWIr-KA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "XHvZ1H1mkUQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEED2Ev) +STUB("XHzAsOyfJcI", _ZN7WebCore12JSAudioTrack9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB( + "XI+NLpHECcY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE3endEv) +STUB("XI0YDgH8x1c", remquo) +STUB("XI2J3o+cnl8", _ZNK7WebCore16HTMLMediaElement7preloadEv) +STUB( + "XI2i9ZxfmZk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "XI4cU7yJLUg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEC2Ev) +STUB("XIAOofO0nN4", JSRunLoopIterateCurrentRunLoop) +STUB("XICCkbXViRo", _ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetail20unsetProfilePicturesEv) +STUB( + "XICiW-A2fDA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "XID9r3z-brk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEC1EPNS2_10LibContextE) +STUB( + "XIEUr4zR7ng", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE8copyFromERKS9_) +STUB("XIGorvLusDQ", sceFontSetupRenderEffectWeight) +STUB( + "XIIR+3nfQ70", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEE11release_refEv) +STUB( + "XIJzWyUz9I0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEC2Ev) +STUB("XIKVdH7HuBg", _ZN9Inspector22InspectorDebuggerAgentdlEPv) +STUB( + "XIKgiYCKhYM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB( + "XIMYzGyu+pc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("XIPPPwj5i9A", scePssCAudIsStopped) +STUB( + "XIR0QSOmg3E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEppEi) +STUB( + "XIRhFvAgafQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEEaSERKS9_) +STUB("XITKbTGdwMo", _ZN7WebCore11DisplayList6SetCTMD0Ev) +STUB("XIU-YfHVjk8", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V15Error7setCodeERKi) +STUB("XIZ0O84wH-Y", sceNpRemotePlaySessionSignalingInitialize) +STUB( + "XIbPgvWjPMU", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setBoolean5ERKb) +STUB( + "XIbXIDTEUpo", + _ZN3sce7Toolkit2NP2V24Auth11getAuthCodeERKNS3_7Request11GetAuthCodeEPNS2_4Core8ResponseINS3_8AuthCodeEEE) +STUB( + "XIcE3gM7rrc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("XIcaq-UKoo4", _ZN3JSC15typedArrayModesE) +STUB("XIckVUXyJsE", WKContextClearSupportedPlugins) +STUB("XIeFii2fjE0", mono_aot_Sce_Vsh_LncUtilWrapperunbox_trampolines) +STUB("XIkYgmejQxc", _ZN4Manx10FontStream5closeEPv) +STUB( + "XIpXk+8CxoM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEC2EPS8_) +STUB( + "XIqYnndhZ-g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEC2ERKS7_) +STUB("XIrhMUhXUVA", mono_aot_ClassLibrary1unbox_trampolines_end) +STUB( + "XIuhm4bZmlc", + _ZN9Inspector21InspectorRuntimeAgent13getPropertiesERN3WTF6StringERKS2_PKbS7_RNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime18PropertyDescriptorEEENS1_13DumbPtrTraitsISE_EEEERNS8_INSA_INSC_26InternalPropertyDescriptorEEENSF_ISK_EEEE) +STUB( + "XIwauoj0gDo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "XJ2VnPzEkfA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE5clearEv) +STUB("XJ4KxOknPSU", _ZN7WebCore18TextureMapperLayerD2Ev) +STUB("XJ4LnPh2Uj8", ucnv_getAlias_67) +STUB("XJ4QyhkAklc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEE5resetEPS6_) +STUB( + "XJCjJI1HnjQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEmmEv) +STUB("XJDj2H8Wdpo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEC2Ev) +STUB( + "XJEC8EXuR7k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEC1EPKS8_) +STUB("XJFu7wsA10k", _ZNK3JSC12JSRopeString25resolveRopeToAtomicStringEPNS_9ExecStateE) +STUB("XJLGUoS-3wI", WKPageClearWheelEventTestMonitor) +STUB("XJT39Czi22Q", _ZN7WebCore15JSFetchResponseC1ERKS0_) +STUB( + "XJUyZwVe+ps", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEC1Ev) +STUB( + "XJWSy+HoWws", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("XJXCsYEnXx4", _ZN3JSC7Symbols27newRegistryEntryPrivateNameE) +STUB( + "XJgNAy-wuSw", + _ZN3sce2Np9CppWebApi14IdentityMapper2V342PsnWebError_error_validationConstraintInfoC1EPNS1_6Common10LibContextE) +STUB( + "XJgnK79512c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEE7get_refEv) +STUB("XJkMmfVMHQk", _ZN3JSC7JSArray6s_infoE) +STUB("XJkTT4Wu2MU", JVM_OnExit) +STUB("XJp2C-b0tRU", acoshf) +STUB( + "XJslViD9nuM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE5beginEv) +STUB( + "XJu5sH2arbY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEppEv) +STUB("XJwRXHlO7h0", mono_aot_Sce_Vsh_GriefReportjit_code_start) +STUB("XJz9g72ot8k", mono_aot_System_Runtimeunbox_trampoline_addresses) +STUB("XK+J28qoso8", _ZN9Inspector15RemoteInspectorC1Ev) +STUB("XK0QhOV4vig", mono_aot_Systemplt) +STUB("XK2J+8QMYXw", _ZL18_sceLibcNewNothrowmRKSt9nothrow_t) +STUB("XK2R46yx0jc", coshl) +STUB( + "XK4biE83FCY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEC1EPS6_PNS2_10LibContextE) +STUB("XK6HqfROnqs", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_18SessionInformationEED2Ev) +STUB("XKCN4gpeYsM", sceAudioPropagationSystemUnregisterMaterial) +STUB("XKDzFiGAvhU", sceLibSecureCryptographyMessagePadding) +STUB("XKEPEc+EDA8", ucol_next_67) +STUB( + "XKFtO1TPH8M", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBody8fromJsonERKNS_4Json5ValueE) +STUB("XKKuA6VkSRc", sceAgcAcbAtomicMem) +STUB( + "XKNMQAOcN4k", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEplEm) +STUB("XKRegsFpEpk", catchReturnFromMain) +STUB( + "XKV0tr6VWPc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("XKVRBLdw+7I", _ZN3sce2np9NpTitleIdD2Ev) +STUB("XKZPrb4Pfqg", _ZNK7WebCore14HTMLCollection13namedItemSlowERKN3WTF10AtomStringE) +STUB("XKbeIT1wH7A", _ZNK3WTF10StringImpl10startsWithEDs) +STUB("XKdprgRLQy4", curl_url_set) +STUB("XKe-AxbD9No", + _ZN3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponseC2EPNS1_6Common10LibContextE) +STUB("XKenFBsoh1c", _Atomic_fetch_xor_8) +STUB( + "XKfOtdx0ILE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE3endEv) +STUB( + "XKfQSrsePwU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEC2ERKS7_) +STUB("XKfh4naaANE", sceFontSelectGraphicsAgc) +STUB("XKmnVF+sQpw", + _ZN8meta_gen11MsvPromoter21setKeyValue_TBLI_SizeENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti) +STUB("XKx1FrqszfM", _ZN4IPMI4impl10ServerImpl29notifyKeventForServerShutdownEv) +STUB( + "XL-0I0BYLT0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("XL0WwUJoQPg", sceSharePlayNotifyOpenQuickMenu) +STUB("XL8+BUqjB1w", _ZN3sce4Json5Value3setERKS1_) +STUB( + "XL8CPWerGpI", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_19ProductInfoDetailedENS1_15AppSTLAllocatorIS5_EEEEC2Ev) +STUB( + "XLDdP3+ELyM", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId17setnpServiceLabelEj) +STUB( + "XLHQaUHEaiA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEED2Ev) +STUB( + "XLHQlalTBX8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V143SetVariableWithConditionsRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_36SetVariableWithConditionsRequestBodyEEE) +STUB("XLIYwMUXO4Y", _ZN7WebCore9FontCache10invalidateEv) +STUB("XLKvbi51E3g", mono_aot_Sce_Vsh_MarlinDownloaderWrapperjit_got) +STUB("XLOJqO86FZU", _ZN13MsvMetaEditor10writeFileXEjPv) +STUB( + "XLWbneL1V1o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("XLe2Z6Pjruo", __asan_poison_memory_region) +STUB("XLjHc156KzU", _ZN7WebCore17FrameLoaderClient26dispatchWillChangeDocumentERKNS_3URLES3_) +STUB("XLlxJWGgUcc", _ZN7WebCore6Editor7outdentEv) +STUB("XLnyLKPZfRM", _ZN3sce2Np9CppWebApi7Matches2V17Subtask13setActivityIdEPKc) +STUB("XLpPRMl5jro", _ZN3sce2npeqERK10SceRtcTickRKNS0_4TimeE) +STUB( + "XLpvq7TVf94", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEppEi) +STUB( + "XLq0SPbMa8A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEC2Ev) +STUB("XLvJTbeeirw", WKPreferencesSetInspectorUsesWebKitUserInterface) +STUB("XLyXJqFsd5M", JVM_DefineModule) +STUB( + "XM5XvH6y8hE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEE11get_deleterEv) +STUB("XM6DYkaGBcM", _Z27SoundPlayer_MoveSurroundPanifhfd) +STUB("XMFJE+2zZIc", + _ZN3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsers11unsetoffsetEv) +STUB( + "XMGEUp0unH8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEE3getEv) +STUB("XMIv42L5bEA", _ZN3sce2np9WorkQueue4ctorEv) +STUB("XMIzTLufzgA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE21intrusive_ptr_sub_refEPS7_) +STUB("XMJPvWiQWd4", _ZN9Inspector22InspectorDebuggerAgentD0Ev) +STUB( + "XMKJ1u4muc8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEC1ERS7_) +STUB( + "XMKqoYSG1ZE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "XMPmjIgxBPc", + _ZN7WebCore19ResourceRequestBase50setResponseContentDispositionEncodingFallbackArrayERKN3WTF6StringES4_S4_) +STUB("XMR5p-AA5AQ", _ZN4IPMI4impl11SessionImpl9tryGetMsgEjPvPmm) +STUB("XMRuseUohrU", _ZN3sce7Toolkit2NP2V210Tournament17TournamentEventIdC1Ev) +STUB("XMTGMU8kQFc", _ZN7WebCore11FileChooser10chooseFileERKN3WTF6StringE) +STUB("XMTsIKI3OKs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEE5resetEPS6_) +STUB( + "XMbQyFr5Tbw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEC2EPS8_) +STUB( + "XMc1qvI9AWA", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB("XMcnrYJ8wjs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119SubtaskAvailabilityEEeqERKS7_) +STUB("XMcwBJDzS48", + _ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer16unsetCustomData1Ev) +STUB("XMh3kJRY714", mono_shared_hashtable_iter_init) +STUB("XMhF0ukO7m4", _Z23Ime_DicDeleteWordNativeimP11_MonoStringS0_) +STUB("XMm2f1aJWNg", UCNV_FROM_U_CALLBACK_STOP_67) +STUB("XMpTONJWZr0", _ZN3sce2Np9CppWebApi7Matches2V111AddedPlayerC2EPNS1_6Common10LibContextE) +STUB( + "XMqN2K-9s0Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEE21intrusive_ptr_sub_refEPS7_) +STUB("XMtO-VQEsUg", delegate_virtual_invoke_imt_m_16) +STUB( + "XMthHH-sne4", + _ZN3sce2Np9CppWebApi14SessionManager2V168PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_61PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEE) +STUB( + "XMwJrAGMTig", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEaSERKS9_) +STUB("XMyaaMt9knk", _ZN7WebCore19InspectorController13setIndicatingEb) +STUB("XN+Iuu7XsM8", sceAgcDcbSetZPassPredicationEnableGetSize) +STUB("XN-ohv4INIA", bemp2sys_tsdecoder_release) +STUB( + "XN2v+nFqQLk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEEdeEv) +STUB( + "XN76aT1V6Yw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEC2Ev) +STUB( + "XN7sNlfq7as", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEC2EPNS2_10LibContextE) +STUB("XNArvUsT18s", sceKeyboardGetConnection) +STUB("XNI05qkxZBs", _ZN10MsvUpdater10InitializeEv) +STUB("XNIDoe5nRnU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE8capacityEv) +STUB( + "XNIxKC04FKY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEEC2ERKSA_) +STUB("XNKKeDz98eo", _ZN3sce7Toolkit2NP2V210Tournament18OneVsOneTournamentC1Ev) +STUB("XNPIPZ4gWVk", _ZNSt9basic_iosIwSt11char_traitsIwEEC2Ev) +STUB("XNUoD2B9a6A", sceHttpSetCookieEnabled) +STUB("XNX-qhGAerk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEaSERS7_) +STUB("XNZA9DDHP1o", _ZN9Inspector14InspectorAgentnaEmPv) +STUB( + "XNZhWpsYy7s", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEixEm) +STUB("XNbrdwCsZ9A", sceAgcDriverDestroyQueue) +STUB("XNtZ16LIhf0", sceVideoOutHdmiMonitorInfoIsSupportedHdcpVersion) +STUB("XNux2a0QhQ8", _ZN7bmalloc6IsoTLS13ensureEntriesEj) +STUB( + "XNzcp7vs4TE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEixEm) +STUB("XO38UomdSZk", Java_java_lang_Object_getClass) +STUB("XO3N4SBvCy0", _ZNSt20bad_array_new_lengthD1Ev) +STUB("XO4N7T+SAwc", _ZN3JSC12StackVisitorC1EPNS_9ExecStateEPNS_2VME) +STUB( + "XO6hIhC1rw4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEaSERKS7_) +STUB("XO9ihAZCBcY", _ZTIa) +STUB( + "XO9uv1nTUXo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEneERKS9_) +STUB("XOEdRCackI4", _ZNSt12placeholders3_16E) +STUB("XOHmQ9KpwxA", _ZNK7WebCore21WheelEventDeltaFilter13filteredDeltaEv) +STUB("XOHuxymbtck", _ZN9Inspector14InjectedScript10saveResultERN3WTF6StringERKS2_RSt8optionalIiE) +STUB("XONMf5+FMp0", _ZN7WebCore8SVGNames16v_alphabeticAttrE) +STUB( + "XOYbnvXdb0I", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEC1EPS8_) +STUB("XOdM8G4JgYY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE7reserveEi) +STUB("XOgjMgZ3fjo", _ZNSt8numpunctIwEC1Em) +STUB( + "XOjuwMVSGas", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("XOkMDt26lm4", _ZN7WebCore24DeprecatedGlobalSettings19gManageAudioSessionE) +STUB( + "XOnCGH9g-vo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEC1Ev) +STUB( + "XOpVUYvx4Rs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "XOut1+BOh90", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE8copyFromERKS9_) +STUB( + "XOyKvBlrieg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEED2Ev) +STUB("XOzszO4ONWU", sceNpTusGetData) +STUB("XP-0pFAwkLI", _ZN7WebCore8JSDOMURL13visitChildrenEPN3JSC6JSCellERNS1_11SlotVisitorE) +STUB("XP0-oV-XvpY", _ZNK3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error16referenceIdIsSetEv) +STUB("XP7S05gKWoM", sceSystemLogger2SetLog) +STUB("XP9P8ExXwVY", _ZN7WebCore16HTMLInputElement15setValueForUserERKN3WTF6StringE) +STUB("XPAX+91ERb0", + _ZSt9use_facetISt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale) +STUB( + "XPBlmp57gYg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE21intrusive_ptr_sub_refEPS7_) +STUB("XPC8EyEuvyk", sceVoiceQoSGetLocalEndpoint) +STUB( + "XPEJ138Sf0Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEC2EPS8_) +STUB("XPIiw58C+GM", sceRtcTickAddMicroseconds) +STUB( + "XPKxa7UoRQ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("XPOKrkECPJg", _ZTVN9Inspector22RemoteAutomationTargetE) +STUB("XPONfo+3mzg", _ZN3JSC8Bindings13RuntimeObject11getCallDataEPNS_6JSCellE) +STUB( + "XPPwGrOKAwI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEC2EPS8_) +STUB("XPRyDKbZgSg", _ZN7WebCore9FrameView31enableSizeToContentAutoSizeModeEbRKNS_7IntSizeE) +STUB("XPVOBiZkA4g", _ZN3sce7Toolkit2NP2V28Commerce7Request29DisplayVoucherCodeInputDialogC2Ev) +STUB("XPfbbAPo7QQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEEmmEv) +STUB( + "XPjLUNYy0bA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEC2Ev) +STUB( + "XPkpjN985E0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEED1Ev) +STUB("XPlTYt2TOg0", sysc_s00) +STUB( + "XPno0+yGinM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEED2Ev) +STUB("XPnpT9nRfAs", mono_btls_pkcs12_new) +STUB("XPpjBuVLPVA", _ZNK7WebCore13MIMETypeCache11isAvailableEv) +STUB("XPrliF5n-ww", vwprintf_s) +STUB("XPrn0-EWJu4", g_snprintf) +STUB("XPtW45xiLHk", sceHttp2SetSendTimeOut) +STUB("XPtc6krrgeE", _ZN7WebCore24CoordinatedGraphicsLayer37flushCompositingStateForThisLayerOnlyEv) +STUB( + "XPtvxL-B8pM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEEaSERSA_) +STUB( + "XPvppBerRas", + _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicket28getxPsnAcceptPlatformNamePs5Ev) +STUB( + "XPw8qCUNvPY", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB( + "XPxNYsOPUkc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEEdeEv) +STUB("XPxm3cJ1It4", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V15Error10setMessageEPKc) +STUB("XQ+cgNIT8Z0", WKContextConfigurationCopyWebProcessPath) +STUB("XQ1A9VPIigU", sceKernelSflashGetWritePrio) +STUB("XQ3WZvZDGGM", _ZN7WebCore11MathMLNames10accentAttrE) +STUB( + "XQ6xAb-Xo3g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE8pushBackERKS8_) +STUB("XQ79w+11C78", _ZN7WebCore13MIMETypeCacheC1Ev) +STUB("XQ8C8y+de+E", sceKernelAioSubmitWriteCommands) +STUB("XQCyh-jRkak", mono_aot_Sce_Vsh_Np_Tmdbmethod_addresses) +STUB("XQFE8Y58WZM", _warn) +STUB("XQKghntbq6E", _ZN3WTF22CrossThreadTaskHandler4killEv) +STUB("XQMhx9+Xc1M", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetBoolean5Ev) +STUB("XQP7zQTiRgY", _ZN3sce2Np9CppWebApi14SessionManager2V131ResponsePlayerSessionInvitationD2Ev) +STUB("XQQ6p4SAdOw", _ZN7WebCore24FrameDestructionObserverD1Ev) +STUB("XQRCgqivVxY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEC2Ev) +STUB("XQSUbbnpPBA", sceNpPartyCreateA) +STUB("XQTth-+arz8", + _ZN3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponse17setPreviousOffsetERKi) +STUB("XQZkyJMxI18", glColorMask) +STUB("XQbd3lyks0c", pcf_driver_class) +STUB("XQg8Mv1VjjM", _ZN9Inspector15RemoteInspector19updateTargetListingEj) +STUB("XQi4nioAE48", mono_aot_Sce_Vsh_ShareServerPostWrapperplt) +STUB("XQiKLlg7HSo", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeDataC2ERS5_) +STUB( + "XQjOIvdVVVE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEcvbEv) +STUB( + "XQmRVW9K60s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEEC2ERKSA_) +STUB( + "XQskj3NtW-8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEE7add_refEv) +STUB( + "XR6-+FpxpIA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "XR7UHMrZ1xE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEE7add_refEv) +STUB("XRFchqddEVU", sceNpManagerIntGetPlusMemberTypeNB) +STUB("XRHBB0qMkvs", sceVideoCoreMediaSourceGetPlaybackQuality) +STUB("XRHQnXGV0lk", _ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error7setCodeERKi) +STUB("XRKYMC7xXU8", _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEEC2Ev) +STUB("XRO4Hwv58jw", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10CategoriesEE19setCustomReturnCodeEi) +STUB("XRSJGYwX4fg", _ZN7WebCore4Page52updateStyleForAllPagesAfterGlobalChangeInEnvironmentEv) +STUB( + "XRSMj7oRck0", + _ZN3sce7Toolkit2NP2V29Challenge21getReceivedChallengesERKNS3_7Request21GetReceivedChallengesEPNS2_4Core8ResponseINS3_10ChallengesEEE) +STUB("XRUOmQhnYO4", sceFontGraphicsSetupPositioning) +STUB("XRWDGSuaBfs", _ZN3sce2Np9CppWebApi11Matchmaking2V127ListUserTicketsResponseBody10getTicketsEv) +STUB( + "XRX0x8ScSiQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB("XRZROxNRboc", _ZN3sce7Toolkit2NP10IdDatabaseC1ERKNS1_15CommunicationIdE) +STUB( + "XRf5KB2J3NM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("XRh9f8Lkt+E", GCC_except_table483) +STUB("XRmIkQ5gbwA", _ZN9Inspector24RemoteControllableTargetC2ERKS0_) +STUB("XRpCWUw66Y0", _ZN7WebCore10JSLocation9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("XRpM9tQecCU", sceNpManagerIntLoginCheckSignin) +STUB("XRxuwvN++2w", _ZTSSt12system_error) +STUB( + "XRytZS9MY1A", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody32comparedLastUpdatedDateTimeIsSetEv) +STUB("XS+NkypC0zY", ucal_isWeekend_67) +STUB("XS-eY7KRqjQ", sceNpManagerIntGetAccountId) +STUB("XS1XH14cemc", glDrawArraysInstanced) +STUB( + "XS1lnwj3Xg0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE21intrusive_ptr_add_refEPS9_) +STUB("XS3kGVt4q+4", pthread_mutex_setprioceiling) +STUB( + "XS41sjkpwyU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEC2EPS6_PNS2_10LibContextE) +STUB("XS46YdXa2r0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEEC2EPKS6_) +STUB( + "XS6NSdC15QA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEptEv) +STUB( + "XS6uYOTwkv0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEppEv) +STUB("XS8CSiOlDVI", _ZNK9Inspector15AsyncStackTrace20buildInspectorObjectEv) +STUB("XSCuIaz-uDc", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container17setTotalItemCountERKi) +STUB("XSHcHCXC1iE", sceVshAvcapUpdateSyncer) +STUB("XSIviLEaElw", rgctx_fetch_trampoline_rgctx_87) +STUB("XSJjxUXOlrU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE3endEv) +STUB("XSK4jllLpbM", WKBackForwardListGetItemAtIndex) +STUB( + "XSL7F7YUPg0", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetrics17setPercentileRankERKi) +STUB( + "XSNXVgFDwD8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEC2EPKS8_) +STUB("XSORdD3uW6w", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE5emptyEv) +STUB( + "XST1B4VIXsY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEeqERKS9_) +STUB( + "XSXbxk--nm4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEEC2ERSA_) +STUB("XSXteKISekw", _ZN3JSC11SlotVisitor10appendSlowEPNS_6JSCellEN3WTF10DependencyE) +STUB("XSYZ7Ac3HBQ", _ZN15AbstractStorage14YoutubeContent6RemoveEv) +STUB( + "XSeRSYoExMM", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot8getlimitEv) +STUB( + "XSiZViqm1zo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB("XSjr+FjsU4s", sceUltGetWaitingQueueResourcePoolInfo) +STUB("XSklDEOgVfA", uhash_setValueComparator_67) +STUB("XSmzzytKSNM", WKMediaCacheManagerGetTypeID) +STUB("XSo+Uz2N2Ko", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEEppEv) +STUB("XSqDLKpP88U", YGNodeStyleSetAlignContent) +STUB("XStmVdN3R7Y", _ZNK3WTF6String57convertToLowercaseWithoutLocaleStartingAtFailingIndex8BitEj) +STUB( + "XSwsDVx1qRI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEC2ERS7_) +STUB( + "XT-pvasOXEA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE7reserveEi) +STUB("XT3Bl1yLMQY", ubidi_getProcessedLength_67) +STUB( + "XT77oBBFAzU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEC1Ev) +STUB( + "XTA7yQ7CM8g", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEptEv) +STUB("XTAfJodT1aY", u_totitle_59) +STUB( + "XTLg3yMIZPM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEEaSERSA_) +STUB("XTRBMujlKzo", _ZN7WebCore36registerMemoryReleaseNotifyCallbacksEv) +STUB("XTT1Nti7nks", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEEC1EPS6_) +STUB("XTV1xv3H4qw", sceSystemServiceUsbStorageRequestMap) +STUB( + "XTVujcX2uI8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEE7add_refEv) +STUB("XTWR0UXvcgs", sceAppContentGetEntitlementKey) +STUB("XTXSfTQSTZg", delegate_virtual_invoke_imt_21_p) +STUB("XTi+x-uTX9o", sceNpJsonParse2Init) +STUB( + "XTtbURTu+bY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEeqERKS9_) +STUB("XTte3f-lcqc", + _ZN12video_parser13cVideoMetaVWG18_createArtworkInfoEjPNS_13cVideoMetaMP418VpThumbnailInfoMP4E) +STUB( + "XTvZlhkRXJM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEC2EPS8_) +STUB( + "XTx5pikRF3M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEE5resetEPS6_) +STUB( + "XU-gAZbXLh8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEED1Ev) +STUB("XU09rxYociQ", locale_get_default_67) +STUB("XU0jjbaFz2c", __ubsan_default_options) +STUB( + "XU4cJFmw-CU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE21intrusive_ptr_add_refEPS9_) +STUB("XU4yLKvcDh0", __divti3) +STUB("XUBgIGb3ae0", WKPageSetMuted) +STUB("XUCjhejJvPc", _ZN3sce2np8WorkItem10SetRunningEv) +STUB("XUIRDnty7Ik", _Open) +STUB("XUIWT5yKPuc", sceDebugGetDLLoadFlag) +STUB("XURNRY1n3kg", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13string10IsSetEv) +STUB("XUT0dUajUrA", ures_getType) +STUB("XUT7ad-BUMc", sceUserServiceGetKeyRepeatSpeed) +STUB( + "XUU5cXIFS48", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEE5resetEPS9_) +STUB("XUWtxI31YEY", sceUsbdControlTransferGetData) +STUB( + "XUYWiEl3174", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE6resizeEj) +STUB( + "XUdYQEQxaQg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEaSERKS7_) +STUB( + "XUeWyaje50Q", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB("XUfSWpLhrUw", sceFontGlyphGetMetricsForm) +STUB( + "XUfprNsvyec", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_17ActivityFeedStoryENS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv) +STUB("XUjdsSTTZ3U", sceNpWebApiDeleteContext) +STUB("XUn40t5nGcs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEEC1EPS5_PNS2_10LibContextE) +STUB( + "XUobWasMG4E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE7popBackEv) +STUB("XUotbPaIblI", _ZN3sce7Toolkit2NP2V212NetworkUtils13NetStateBasicD2Ev) +STUB( + "XUqmCkwJZLI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEeqERKS9_) +STUB( + "XUrLgXejeuk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEE7get_refEv) +STUB("XUs40umcJLQ", _ZNSt10moneypunctIwLb1EE2idE) +STUB("XUuBQcsWRlA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsD1Ev) +STUB("XUxhGAFCMvU", _ZN7WebCore21SerializedScriptValueD2Ev) +STUB("XV+i9UTTxVs", + _ZN7WebCore23ScaleTransformOperation6createEddNS_18TransformOperation13OperationTypeE) +STUB( + "XV-VUeVQkiE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "XV5-EccXFPQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEC1EPNS2_10LibContextE) +STUB("XV5VxoDMkcU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16UnlockedTrophiesEE3setEv) +STUB( + "XV5kDzUO6GM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEppEi) +STUB( + "XV8EIwVXQBs", + _ZN3sce2Np9CppWebApi14SessionManager2V136PostPlayerSessionsRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_29PostPlayerSessionsRequestBodyEEE) +STUB("XV8vv-Gfbbs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEdeEv) +STUB( + "XVAUAC4GFpI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEC1ERKS7_) +STUB( + "XVDbzsuGL-k", + _ZN3sce2Np9CppWebApi14SessionManager2V136RequestPlayerSessionSpectatorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_29RequestPlayerSessionSpectatorEEE) +STUB("XVEJEHjT5SM", _ZN3sce2Np9CppWebApi13InGameCatalog2V525ContentInteractiveElementD1Ev) +STUB( + "XVGsAHQSgCo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEC1Ev) +STUB("XVIG0ICGRpM", WKUserContentURLPatternGetTypeID) +STUB("XVJz3NiDM90", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEEC2EPS5_PNS2_10LibContextE) +STUB("XVL8So3QJUk", connect) +STUB("XVMW7SSyhiI", WKStringIsEqual) +STUB("XVQ3cf0BdQ0", u_isdigit) +STUB( + "XVTcqsvR0z8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEED1Ev) +STUB("XVTxLOIKaQg", mono_thread_hazardous_try_free_all) +STUB( + "XVXcCQA7Dqs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEC2EPS8_) +STUB("XVb+0NN54gc", _ZN3WTF10StringImpl20createWithoutCopyingEPKDsj) +STUB( + "XVeAYgXeGvE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE8copyFromERKS9_) +STUB( + "XVfl-HDND1k", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC2Ev) +STUB("XVi1ujRbz4o", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEEC2Ev) +STUB( + "XVsf1QQSqko", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEEC1ERKSA_) +STUB( + "XVtB8TokG1A", + _ZN3sce2Np9CppWebApi14IdentityMapper2V331PsnWebError_error_errorsFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_24PsnWebError_error_errorsEEE) +STUB("XVu4--EWzcM", _ZNKSt17bad_function_call4whatEv) +STUB("XVx6JyC0Mv4", inflateEnd) +STUB( + "XW0eqVFxo7k", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersC2ERS5_) +STUB("XW1+EtPFPAM", sceOpusCeltEncCtl) +STUB("XW5vEWWMoro", u_sprintf_67) +STUB("XW73Ink4DfA", _ZNK7WebCore13HitTestResult11textContentEv) +STUB("XW9ZZ62FpMk", cpp_demangle_read_expr_primary) +STUB("XW9bCLxgW10", WKContextConfigurationGetUserId) +STUB( + "XWJVa8nXAqA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEC2Ev) +STUB( + "XWJpJef97fM", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEED1Ev) +STUB("XWT5DdiEUMc", Java_java_io_ObjectOutputStream_getObjectFieldValue) +STUB( + "XWUsJlAzkGo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEneERKS9_) +STUB( + "XWeiBb0SvkU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEEaSERSA_) +STUB( + "XWiSTqYqP9M", + _ZN3sce2Np9CppWebApi7Matches2V126ResponseMatchPlayerFactory7destroyEPNS3_19ResponseMatchPlayerE) +STUB("XWreHmEfxDo", _ZN7WebCore36ISOProtectionSystemSpecificHeaderBoxC2ERKS0_) +STUB("XWxoDpinZso", _ZNSt9basic_iosIcSt11char_traitsIcEEC2Ev) +STUB( + "XWyKAz4u0EU", + _ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime12RemoteObject7SubtypeEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE) +STUB( + "XWzX9b+mlA4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEptEv) +STUB("XX+xiPXAN8I", _ZNKSt7_MpunctIwE16do_thousands_sepEv) +STUB( + "XX1XQbzi4dc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE4sizeEv) +STUB("XX2pm0bprEc", tt_cmap10_class_rec) +STUB("XX6wlxpHyeo", sceMoveClose) +STUB("XX9KWzJvRf0", vfwprintf_s) +STUB("XX9tocaUX+g", cairo_append_path) +STUB("XXBFc-HPUFw", _ZN3sce2Np9CppWebApi6Common6VectorImE5eraseENS2_8IteratorImEERS6_) +STUB("XXBlgWd3W6k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEED2Ev) +STUB( + "XXI+iyX8r2M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEE7add_refEv) +STUB("XXLEcrf3wAA", WKOriginDataManagerDeleteAllEntries) +STUB( + "XXQLcJXZpuE", + _ZN7WebCore21JSCSSStyleDeclaration3putEPN3JSC6JSCellEPNS1_9ExecStateENS1_12PropertyNameENS1_7JSValueERNS1_15PutPropertySlotE) +STUB("XXRzqV3pzoE", Java_java_lang_reflect_Array_getInt) +STUB( + "XXULbuRiql4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("XXW8Dyuomwk", il2cpp_current_thread_walk_frame_stack) +STUB("XXf35+bs6iw", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer10setuseFreeEb) +STUB("XXiGcYa5wtg", _ZNSt9_Num_base11round_styleE) +STUB("XXiJQqFMwl8", _ZN3WTF6StringC2EPKh) +STUB("XXir7OS9S7M", + Java_com_sony_gemstack_org_dvb_application_AppsDatabaseImpl_n_1getAvailableAppIds) +STUB("XXsm0L-gVsY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEE11release_refEv) +STUB( + "XXsoVBMJgPE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEmmEv) +STUB( + "XXtd9tn++mg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("XY14n3jNIpE", sceNpUniversalDataSystemEventPropertyArraySetObject) +STUB("XY21x3P2TtM", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_17MessageAttachmentEEC1Ev) +STUB( + "XY3TRr3LOSQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "XYBYXuOscBM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEEC1ERKSA_) +STUB("XYE4FQ4C4lI", _ZN3JSC2VM8whenIdleESt8functionIFvvEE) +STUB( + "XYPqsYRgoaY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEED2Ev) +STUB( + "XYTyApmCiO4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEC1Ev) +STUB("XYZ3JHRb7iU", sceBackupRestoreUtilPrepareBackup) +STUB( + "XYgjhOtbhW4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("XYihcfyT3II", monoeg_g_get_current_dir) +STUB("XYm1wQQEDc0", sceContentBinderTerminate) +STUB( + "XYoZ5WZnf-A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("XYqrcE4cVMM", _ZTSSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE) +STUB("XYqzGj07i5U", + _ZN9Inspector22InspectorDebuggerAgent19failedToParseSourceERKN3WTF6StringES4_iiS4_) +STUB( + "XYsrkusoZFk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "XZ+s9Jc9ic8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEEC1Ev) +STUB("XZ5QUzb4ae0", sceHmdReprojectionStartLiveCapture) +STUB( + "XZ96rdst+OA", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeaders17unsetLastModifiedEv) +STUB("XZB2-9dSghM", glCompressedTexSubImage2D) +STUB("XZDAjSe6MZs", mono_aot_ClassLibrary1jit_code_start) +STUB("XZGjSjFPdtw", _ZN7WebCore16MIMETypeRegistry27getUnsupportedTextMIMETypesEv) +STUB("XZMZpyxRIQA", jpeg_fdct_16x16) +STUB("XZNi3XtbWQ4", _ZNSt8numpunctIwE2idE) +STUB( + "XZOrI+YRIE4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEE7add_refEv) +STUB("XZTZqqSVGlY", _ZNK3sce2np9NpTitleId7IsEmptyEv) +STUB( + "XZXy1UwLnmI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEE7get_refEv) +STUB("XZc+RQCv5ik", sceCompositorSetVrMode) +STUB( + "XZc2xnl3-78", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEdeEv) +STUB( + "XZcZphcWK2Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("XZfBNdoXajQ", uregex_open_67) +STUB("XZlysiYiszY", _ZN3JSC16CompleteSubspaceD1Ev) +STUB("XZmo+u-eLBg", scePerfTraceIoControllerDelete) +STUB("XZqv4gIsqTU", _ZN7WebCore16HTMLInputElement16setIndeterminateEb) +STUB( + "XZvR4GJ4x74", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB("XZwIW0grKdM", ucnv_io_getConverterName_67) +STUB( + "XZxWQmFnnC0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("XZzWt0ygWdw", _ZTISt16invalid_argument) +STUB("Xa1igyHioag", sceNpPushStopNotificationA) +STUB("Xa2lDjDv3L4", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus18getLastUpdatedUserEv) +STUB("Xa3DExzD5do", sceNpIpcStopReceiveEvent) +STUB("Xa4Kt1r84HM", _ZN7bmalloc8FreeListC1Ev) +STUB("XaC9s-Nr2u4", sceLncUtilResumeLocalProcess) +STUB( + "XaD+otDoXvA", + _ZN3sce2Np9CppWebApi15Personalization2V110ContentApi13getAccessCodeEiRNS1_6Common11TransactionINS5_12IntrusivePtrINS3_21GetAccessCodeResponseEEENS7_INS5_18ResponseHeaderBaseEEEEE) +STUB( + "XaDfZsDDCg0", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi35ParameterToSetGameSessionPropertiesC2ERS5_) +STUB("XaH5R+xZzOE", umutablecptrie_setRange_67) +STUB( + "XaIri-0ZNyA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEC1Ev) +STUB("XaKJqdhjD88", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS7TusDataEED1Ev) +STUB("XaPGfoqZcT8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEC1Ev) +STUB("XaPHWw1bZDE", _ZN7WebCore9HTMLNames19webkitdirectoryAttrE) +STUB("XaSxLBnqcWE", _ZNKSt7collateIcE9transformEPKcS2_) +STUB("XadSeFx0sW4", _ZN3WTF11Persistence7EncoderD2Ev) +STUB("Xadpbt8wQXo", WKPageGetSessionBackForwardListItemValueType) +STUB("XagGonXg1p0", _ZNK7WebCore12ChromeClient19isEmptyChromeClientEv) +STUB( + "Xak9xDnbzrM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEixEm) +STUB( + "Xap6+lMvhjo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE5beginEv) +STUB("XaqWcRBnceI", WKPageRunJavaScriptPromptResultListenerGetTypeID) +STUB( + "XarIgT72mQQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("XarSmMr1Rf0", _ZN3sce3Xml13AttributeList5clearEv) +STUB("XatOH5GIHrk", _ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionMemberPlayerD2Ev) +STUB( + "XayT1ffpWOQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE8pushBackERKS8_) +STUB( + "Xb+6t+80cjc", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("Xb+pS36gbDM", _Z28checkAttributeNameDuplicatesmPN3sce7Toolkit2NP2V28Matching9AttributeE) +STUB("Xb1jumQeo0g", _ZN7WebCore13ContainerNode13querySelectorERKN3WTF6StringE) +STUB("Xb2Y38dkh10", ScePsmMonoGetExceptionOutOfMemory) +STUB("Xb2ez5SqR38", sceAvSettingTerm) +STUB("Xb3pBz5vl9E", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13WhoLikedStoryEE7addressERKS3_) +STUB("Xb4BaqIusJk", _ZN7WebCore13HitTestResultC1ERKS0_) +STUB("Xb8wCHkcTNE", _ZN7WebCore12TextIteratorC1ERKNS_11SimpleRangeEt) +STUB("Xb9FhMysEHo", _ZNSt9_Num_base5radixE) +STUB("XbBoGslgGRA", _ZN7WebCore11DisplayList8DrawLineC1ERKNS_10FloatPointES4_) +STUB("XbD-A2MEsS4", _ZNSt15_Num_float_base10is_boundedE) +STUB("XbEM58kMYFc", _ZNK10__cxxabiv117__class_type_info7cast_toEPvPKS0_) +STUB("XbFyGCk3G2s", _ZTVSt10moneypunctIcLb0EE) +STUB("XbIM-AEDVXs", _ZN3sce7Toolkit2NP2V212EventsClient5EventaSERKS4_) +STUB( + "XbIVO9ZhbGI", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_4Heap17GarbageCollection4TypeEEESt8optionalIT_ERKN3WTF6StringE) +STUB( + "XbJQevMot3c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEC1Ev) +STUB( + "XbNgcd50ntY", + _ZN3sce2Np9CppWebApi14SessionManager2V120ErrorResponseFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_5ErrorEEEPNS8_INS3_13ErrorResponseEEE) +STUB("XbR6JVGM+0U", _ZN3WTF14isVersion4UUIDENS_10StringViewE) +STUB("XbVXpf5WF28", wcsftime) +STUB("XbY-F+-JJ4c", _ZN7WebCore6FourCCC2Ej) +STUB("XbbJC3E+L5M", sceSystemServicePowerTick) +STUB("XbhG61+Xw7Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEEaSERS7_) +STUB("XbkjbobZlCY", sceNpTrophyCreateContext) +STUB("Xbl-LYVFNEE", _ZN3sce4Json5Value21setNullAccessCallBackEPFRKS1_NS0_9ValueTypeEPS2_PvES6_) +STUB( + "XboVnyLBlk4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE4sizeEv) +STUB("XbqseEumf+g", mono_aot_System_Data_Services_Clientunbox_trampolines) +STUB( + "XbrKOiSkILQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "XbrWYXJr0Xo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEED2Ev) +STUB("XbrwyYgsPSY", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEED1Ev) +STUB("XbtmAGrMGZM", WKPreferencesSetMetaRefreshEnabled) +STUB("Xbwk6lRTyrw", + _ZN7WebCore19ResourceRequestBase18addHTTPHeaderFieldENS_14HTTPHeaderNameERKN3WTF6StringE) +STUB( + "Xby7CfYHtvw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE6insertENS2_8IteratorIS9_EERKS9_RSC_) +STUB("Xc+bwbBPK00", sceSdmaInitialize) +STUB("Xc-SooizcFA", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead18maxSpectatorsIsSetEv) +STUB("Xc4DdOzT7M4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEC1Ev) +STUB( + "Xc6X733oSTw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEaSERKS9_) +STUB("Xc9UIzbBZr8", _ZNK3sce2Np9CppWebApi7Matches2V113ChildActivity13getActivityIdEv) +STUB("XcBiw4sFIS4", + _ZNK3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends8hasorderEv) +STUB("XcEf7b3gYfM", _ZN7WebCore5Style5Scope8resolverEv) +STUB( + "XcEiBmjQ7Tw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEixEm) +STUB( + "XcG+z0SSsmY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("XcJKS+rDcdw", __any_on_D2A) +STUB( + "XcLVqeVgCoE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEEC2Ev) +STUB( + "XcNd6zNG8sA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEE11get_deleterEv) +STUB("XcPWMTDSSwY", _ZN7WebCore8SVGNames16animateMotionTagE) +STUB( + "XcWGfy2kTdI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE21intrusive_ptr_sub_refEPS9_) +STUB("XcZcIM5Jyqs", _ZN7WebCore11FontCascadeaSERKS0_) +STUB( + "XcdA8K7ohbQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEppEi) +STUB("Xcj8VTtnZw0", sceAudioOutExSystemInfoIsSupportedAudioOutExMode) +STUB( + "XcjNNPkqIfs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEixEm) +STUB("Xcm2HcRmQ2Y", _ZN3sce7Toolkit2NP2V27Session7SessionaSERKS4_) +STUB( + "XcrjrVFiZ5Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEC1EPKS8_) +STUB("Xct67SexTbk", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification16NewInGameMessageEE3setEv) +STUB("XcuCO1YXaRs", _ZNSt13basic_filebufIwSt11char_traitsIwEED1Ev) +STUB( + "XcukkXeBhA0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEmmEi) +STUB("XcxCinpG2E8", Java_java_awt_GnmImage_nativeGetRGBArray) +STUB("XcyG4XGUaTo", _ZN3sce2Np9CppWebApi7Matches2V117ResponseMatchTeam8fromJsonERKNS_4Json5ValueE) +STUB( + "Xd2X7yQhTKk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "Xd6iEm8Qc84", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "Xd9PznNp36g", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEptEv) +STUB( + "Xd9wjes-HxU", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToSendGameSessionMessage9terminateEv) +STUB("XdC7Z3tLhxs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEE11get_deleterEv) +STUB("XdSgv+tiDm8", _ZN3WTF6String6appendEw) +STUB("XdVip7yM6e0", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEE11get_deleterEv) +STUB( + "XdaOvXc7jwY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEC1Ev) +STUB("XdbxA93DS90", _ZNK3sce2Np9CppWebApi7Matches2V117ResponseMatchTeam12membersIsSetEv) +STUB("Xdei8rhnnt4", _ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error11unsetReasonEv) +STUB("Xdf1v-qy1gg", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEED1Ev) +STUB("XdnNymUKO+g", + _ZN7WebCore21NetworkStorageSession44setResourceLoadStatisticsDebugLoggingEnabledEb) +STUB("Xdnlno2cAEA", AMDTEE_DLM_FetchDebugStrings) +STUB("XdoL3vp1b+M", GCC_except_table532) +STUB("XdqOC4boOsU", mono_gc_register_finalizer_callbacks) +STUB("XdqiE4oZJ9U", _ZNK3WTF6String14toIntPtrStrictEPbi) +STUB("XdvNKwJ7h50", _ZNK7WebCore4Node11textContentEb) +STUB("Xdx3AqXUSPw", + _ZN15AbstractStorage18DailymotionStorage7IsExistERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("Xe-GK0b2Ahc", _ZN12video_parser18cMp4FFLHndlManagerC2EPKc) +STUB("Xe-vzCJeV3Y", glDrawElements) +STUB( + "Xe1MFN+YRoM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEC1Ev) +STUB("XeCZTzqIk2k", _ZN3sce2np8NpCommIdD0Ev) +STUB( + "XeCgTZeNnIA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB("XeDDK0xJWQA", sceAudio3dPortOpen) +STUB("XeF87aUWCGM", mono_aot_System_Numericsunbox_trampolines) +STUB("XeGcNdNELYY", GCC_except_table65) +STUB("XeIRR713LsI", sqlite3_bind_text16) +STUB( + "XeJcYFZy9ec", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEC1Ev) +STUB( + "XeLSWV6VZDc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE6resizeEj) +STUB("XeOfe7xlbuY", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getMixerMute) +STUB( + "XeSPStC4p-c", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEeqERKS9_) +STUB("XeTqw+0Zl10", scePthreadSetName) +STUB("XeWcqOI9ivc", _ZNK3sce2Np9CppWebApi15Personalization2V15Error10getMessageEv) +STUB("XebrHgPOUj0", Java_java_util_zip_Deflater_reset) +STUB( + "XecBS55ap2A", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEneERKS9_) +STUB("XecZ0RjDNQs", _Z34sceGpuDebuggerUnregisterShaderCodePKN3sce3Gnm16HsStageRegistersE) +STUB("XehY2ByHIy4", udat_set2DigitYearStart_67) +STUB( + "XekdYSEFSx4", + _ZN7WebCore19JSHTMLSelectElement19getOwnPropertyNamesEPN3JSC8JSObjectEPNS1_9ExecStateERNS1_17PropertyNameArrayENS1_15EnumerationModeE) +STUB("Xelhwqhd5Wo", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V18Variable9setSlotIdERKi) +STUB("XepdqehVYe4", closedir) +STUB("XesihwAcYKE", sceAppInstUtilGetInsertedDiscTotal) +STUB( + "Xexr4T7Q6Kg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE10setContextEPNS2_10LibContextE) +STUB( + "Xf-ThibHWwk", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser18getjoinStateFilterEv) +STUB("Xf2JqV9Xj2w", sceRegMgrRecoverRegNvs) +STUB( + "Xf2K3tHCIe0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEEdeEv) +STUB("Xf97gAOO6q4", _ZN7WebCore8SVGNames8refYAttrE) +STUB( + "Xf9SA7rm2Ew", + _ZN7WebCore10JSDocumentC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_8DocumentENS6_13DumbPtrTraitsIS8_EEEE) +STUB("XfA7awKPOpA", mono_aot_ReactNative_Components_Vshplt) +STUB("XfDIbreshOw", _ZThn664_N7WebCore24CoordinatedGraphicsLayerD0Ev) +STUB( + "XfDs+y7q6Iw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEC2Ev) +STUB("XfKcSLbdHkU", _ZN3NTF21ResourceRequestLogger9AdminPage4sizeEv) +STUB("XfU-mgSY7Zo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEEC1EPS6_) +STUB("XfV-XBCuhDo", sceNetInfoDumpStop) +STUB("XfWV-hmpFbA", + _ZN3sce2Np9CppWebApi14SessionManager2V124GameSessionMemberForRead8fromJsonERKNS_4Json5ValueE) +STUB("XfXLXrlAKWE", + _ZN3JSC23JSModuleNamespaceObject10putByIndexEPNS_6JSCellEPNS_9ExecStateEjNS_7JSValueEb) +STUB( + "XfZiz1g-NnY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE4sizeEv) +STUB("XfcgJB6V2a0", ft_mem_realloc) +STUB("XfdgmVGydYU", _ZN3sce7Toolkit2NP2V24Core14removeCallbackERKNS3_7Request14RemoveCallbackE) +STUB("XfjRijeQEDo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEED1Ev) +STUB("XfkRdXaOgWQ", _ZN3JSC2VM12isInMiniModeEv) +STUB( + "XfmiwuQ9zsg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEC2EPNS2_10LibContextE) +STUB("XfqOSandGfA", _ZN3PAL8KillRing6appendERKN3WTF6StringE) +STUB("XfuJkCbToVA", sceBgftServiceIntGetTaskInfoValueStringIndex) +STUB( + "XfzRS3gSO9U", + _ZN7WebCore19JSDOMMatrixReadOnlyC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_17DOMMatrixReadOnlyENS6_13DumbPtrTraitsIS8_EEEE) +STUB("Xg1oN7sylko", uprv_decContextSetRounding_67) +STUB( + "Xg77FjOHAnw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEEaSERKSA_) +STUB("Xg7dJekKeHM", sceNpManagerIntCheckGameNpAvailability) +STUB("Xg9M+lx4LcY", sceValidationGpuInit) +STUB( + "XgAT3KhHv2o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEE7add_refEv) +STUB("XgGAt7u+y3I", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setInteger4ERKi) +STUB("XgNi+47zG0M", rgctx_fetch_trampoline_rgctx_102_p) +STUB("XgSP7YfpXs4", _ZN3sce2Np9CppWebApi13InGameCatalog2V55ErrorC1EPNS1_6Common10LibContextE) +STUB( + "XgTZbDTvQio", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEdeEv) +STUB("XgW5an9l9X8", delegate_virtual_invoke_imt_19) +STUB("Xgc4BXQGhqA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEED2Ev) +STUB("Xgd7m6JY3jU", ScePsmMonoJitInitVersion) +STUB("XgebXd4f46A", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce8ProductsEE3setEv) +STUB("XgehYXFKMDs", WKContextCreateWithConfiguration) +STUB("Xgh9r7Su1oI", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15ErrorC1EPNS1_6Common10LibContextE) +STUB("XghI4vmw8mU", _ZNSt8messagesIwE7_GetcatEPPKNSt6locale5facetEPKS1_) +STUB( + "XghyDM29XPU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE17getResponseHeaderERSB_) +STUB( + "XglZNSTDi+M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE8copyFromERKS9_) +STUB("XgmUR6WSeXg", _ZNSt11range_errorD2Ev) +STUB("Xgsi0nAQvNU", sceVnaInitializeForParty) +STUB("XguLcfcFtU4", g_log_set_fatal_mask) +STUB("XgvSuIdnMlw", sceSaveDataGetParam) +STUB("XgzSvOi2mv4", _ZN15AbstractStorage15FacebookContent5WriteEPKvlPl) +STUB("Xh-MGL8UMuw", _ZN3sce7Toolkit2NP2V28Commerce12ProductLabelD1Ev) +STUB("Xh5o-FMSmeU", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead16getSwapSupportedEv) +STUB( + "Xh5oMZsw3o8", + _ZN7WebCore24createFragmentFromMarkupERNS_8DocumentERKN3WTF6StringES5_NS_19ParserContentPolicyE) +STUB("Xh9mQftH0uk", _ZN3NTF3Ssl10initializeEv) +STUB("XhAvwL0MbWs", uspoof_areConfusable_67) +STUB( + "XhCe6wdkqbE", + _ZN3JSC7JSProxy18getOwnPropertySlotEPNS_8JSObjectEPNS_14JSGlobalObjectENS_12PropertyNameERNS_12PropertySlotE) +STUB("XhG6meNDLuI", _ZTVN7WebCore14LoaderStrategyE) +STUB( + "XhIcun3hgAo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE5beginEv) +STUB("XhKLZGy+Ymk", mono_object_unbox) +STUB("XhLRFm-1jKY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth8AuthCodeEE19setCustomReturnCodeEi) +STUB( + "XhLlMoXIAOI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE5clearEv) +STUB( + "XhO5o9NelSA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("XhQ9AFaiQ4c", _ZNK7WebCore9FrameView24effectiveFrameFlatteningEv) +STUB( + "XhRkFo14kgM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("XhWHn6P5R7U", pthread_rwlock_trywrlock) +STUB("XhdnPX5bosc", _ZNSt10moneypunctIcLb1EE4intlE) +STUB( + "Xhf0AQBCbMs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE7reserveEi) +STUB("XhhOOhZwyNI", mono_aot_Sce_Vsh_AppContentUtilWrapperjit_got) +STUB("XhhpFRHeOTU", + _ZN3sce2Np9CppWebApi7Matches2V127ResponseTeamMemberStatisticC2EPNS1_6Common10LibContextE) +STUB("Xhib3X98rNE", sceIduUtilRegisterFlag) +STUB("XhoOjXnv+QQ", sceBluetoothHidGetReportDescriptor) +STUB( + "XhqeBV5Q0Lw", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("XhrUc+9K1xQ", _ZN3WTF11OSAllocator23hintMemoryNotNeededSoonEPvm) +STUB("XhtA7xfRco0", GCC_except_table458) +STUB("XhwSbwsBdx0", _ZNSt7codecvtIcc9_MbstatetEC1Em) +STUB( + "XhwUV2JKeQY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEC1EPKS8_) +STUB( + "Xhx7FSEG0W4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEC1EPS8_) +STUB( + "XhzJJ9BVlUI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEmmEv) +STUB("XiBOHSoKM40", _ZN3JSC13JSONStringifyEPNS_9ExecStateENS_7JSValueEj) +STUB( + "XiENKvn-F5A", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12string8IsSetEv) +STUB("XiIG6UoL0v8", _ZN3sce7Toolkit2NP2V24Core18CustomResponseDataC1Ev) +STUB("XiMJ2PVc9UU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEC2ERKS7_) +STUB("XiMnw9g4tsI", _ZN9Inspector15InspectorTarget6resumeEv) +STUB( + "XiMw9WSc0Jk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE8pushBackERKS8_) +STUB("XiNGBFEOnDs", WKRenderObjectGetTypeID) +STUB( + "XiOC8IS5yDU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB( + "XiQPKd-8Now", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEppEi) +STUB( + "XiVPF-nBAKk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEC1EPS8_) +STUB("XiVlol7yD+k", WKViewSetBackgroundColor) +STUB("XiW+HeIE8i0", _ZN3sce7Toolkit2NP2V212EventsClient7Request9GetEventsD1Ev) +STUB( + "XicCtrb6GOU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEEptEv) +STUB( + "Xijw749qZ0o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEED2Ev) +STUB( + "Xik1P9ap5xk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE5beginEv) +STUB("XilOsTdCZuM", _ZNSt14overflow_errorD1Ev) +STUB("XioV6Fg-zL0", _ZTVN12video_parser17cVideoOperatorEtsE) +STUB( + "Xiwqspqv6K8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEEptEv) +STUB("XiyzNZ9J4nQ", sceGnmSetWaveLimitMultipliers) +STUB("XizLtTVul4o", ubrk_setText_67) +STUB("Xj8kHYwCcFQ", _ZN3JSC7Symbols33hasOwnPropertyFunctionPrivateNameE) +STUB( + "Xj9CGv9JJko", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE5beginEv) +STUB("XjCrATC+irM", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEEptEv) +STUB("XjE+IbsJrxE", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_21NotifyChallengeResultEEC2Ev) +STUB("XjFJmnulHr4", g_DateInstancePoison) +STUB("XjGem6+kn7U", sceLncUtilGetCdlgType) +STUB("XjJ0Sbja0aE", _ZN19ScePssCMediaDecoder14BufferedDecodeEPKvjRjPvjS2_S2_) +STUB("XjPKRVHsRdg", _UTF16v2Data_67) +STUB( + "XjWkWxkgEEo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEC1EPS6_PNS2_10LibContextE) +STUB("XjXZHOr9xQA", mono_domain_try_unload) +STUB("XjXfxzLkfds", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEEneERKS7_) +STUB("XjYBS3oMy4U", _ZN15AbstractStorage18DailymotionStorage14GetStorageSizeEPlS1_S1_) +STUB("XjaoS4PSpkg", rgctx_fetch_trampoline_rgctx_126_p) +STUB( + "XjcaV4WJej8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE3endEv) +STUB("XjdUq9LgZcU", EVP_aes_192_cfb8) +STUB( + "XjfaMghuxdk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEEC1ERKSA_) +STUB( + "Xjm04fAF6Kw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEptEv) +STUB("XjmU-UvchPg", _ZN9Inspector25ConsoleFrontendDispatchernaEmPv) +STUB("Xjoosiw+XPI", sceKernelUuidCreate) +STUB("Xjp5vdWBYSM", + _ZN3JSC13RuntimeMethodC2EPNS_14JSGlobalObjectEPNS_9StructureEPNS_8Bindings6MethodE) +STUB("XjqmNLGyLOg", sceVideoOutSysUpdateScalerParameters) +STUB("Xjsr0jpqOlg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament6EventsEED2Ev) +STUB("XjyTX8zTuEY", _ZN7WebCore9HTMLNames13aria_liveAttrE) +STUB("Xk+Fm+YTF2c", _ZNK7WebCore4Path5applyERKN3WTF8FunctionIFvRKNS_11PathElementEEEE) +STUB("Xk11NQCzAkA", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorImEplEm) +STUB("Xk2hz9HAdYQ", sceBdSchedStartGame) +STUB("Xk7IZcfHDD8", _ZNKSt7codecvtIcc9_MbstatetE9do_lengthERS0_PKcS4_m) +STUB("Xk7pXSVYt5Q", _ZN3JSC8Bindings10RootObjectD0Ev) +STUB( + "XkC+TwRutXo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("XkD6O-jcO24", d2i_X509_bio) +STUB("XkEs5rH1bSk", sceKernelGetCpuUsageThread) +STUB( + "XkEuIlnuEN8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEEaSERS9_) +STUB( + "XkHViVmoDHY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEppEv) +STUB("XkT6YSShQcE", _WLitob) +STUB( + "XkUD1rRG1kg", + _ZN3sce2Np9CppWebApi14SessionManager2V132ResponseGameSessionPlayerFactory6createEPNS1_6Common10LibContextERKmPKcPNS5_12IntrusivePtrINS3_25ResponseGameSessionPlayerEEE) +STUB("XkZ2V6beUDs", + _ZN3JSC22generateModuleBytecodeERNS_2VMERKNS_10SourceCodeEiRNS_18BytecodeCacheErrorE) +STUB("XkZ7aJ4mICw", glUniform1ui) +STUB("Xkafe+CTK28", _ZN3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayerD1Ev) +STUB( + "XkdGinZ2HtA", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessionsC1Ev) +STUB("XkgQotEtIhI", _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequestD2Ev) +STUB("Xkn6VoN-wuQ", sceNpLwCondSignal) +STUB( + "XknjXlHkZvk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEC2EPNS2_10LibContextE) +STUB("XknvW3U931c", + _ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_errorC1EPNS1_6Common10LibContextE) +STUB( + "Xkpd+CwD9mA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEEptEv) +STUB("Xkq8nvo4tKg", _ZN3sce4Json9RootParamC1Ev) +STUB("Xksn+zj4x60", _ZN7WebCore20PasteboardCustomData5EntryaSERKS1_) +STUB( + "XkuEWzTOHLo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEED2Ev) +STUB("XkvjXpuyzLs", _ZNK7WebCore6Editor31contextRangeForCandidateRequestEv) +STUB("XkwgiO1jgGw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V117InvitableUserTypeEEaSERKS7_) +STUB("Xl0KWvN7TJI", mono_btls_pkcs12_up_ref) +STUB("Xl3RItA-Euc", _ZN7WebCore8Document5formsEv) +STUB( + "XlElXM6Ycvo", + _ZN7WebCore17LibWebRTCProvider16registerMDNSNameEN3WTF16ObjectIdentifierINS_22DocumentIdentifierTypeEEERKNS1_6StringEONS1_17CompletionHandlerIFvONSt12experimental15fundamentals_v38expectedIS5_NS_17MDNSRegisterErrorEEEEEE) +STUB("XlGEzCqlHpI", _ZN3sce2npneERKNS0_4UserERKi) +STUB("XlGLCLRDNMc", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIdEC1EPKd) +STUB( + "XlGMZGdTcP0", + _ZN9Inspector25DebuggerBackendDispatcher6resumeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("XlIysvPfuNQ", _ZN7WebCore22EmptyFrameLoaderClient29dispatchDidFinishDocumentLoadEv) +STUB("XlMZuT6JLcY", _ZNK7WebCore12NamedNodeMap12getNamedItemERKN3WTF12AtomicStringE) +STUB("XlNp7jzGiPo", sceAgcDriverSetTFRing) +STUB( + "XlS+WFhaxeI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEppEv) +STUB( + "XlSp3y+wubo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEC2Ev) +STUB("XlTZ9VGHvn8", _ZTVN7WebCore22SkewTransformOperationE) +STUB("XlTwFUI6oSI", WKContextGetKeyValueStorageManager) +STUB("XlWbvieLj2M", _ZNK3sce4Json5ValueixEm) +STUB("XlXEfagRJQo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEC2Ev) +STUB("XlcBqhyaJyI", sceShellCoreUtilDeleteDiscInstalledTitleWorkaroundFile) +STUB("XlhzNO7Ngfk", _ZN7WebCore8SVGNames7fontTagE) +STUB("XlilL8pvETQ", _ZN7WebCore8SVGNames5yAttrE) +STUB( + "XllZq+g-S6U", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE23clearOnFinishedCallbackEv) +STUB( + "Xlm3CSuwSdY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE4termEv) +STUB( + "Xlq+0ln3o1M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEE7add_refEv) +STUB("XlzFT8nnAMU", _ZNK3sce3Xml3Dom8Document14getSkippedTextENS1_6NodeIdE) +STUB( + "Xm8Et75Z5y8", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("XmAquprnaGM", __sync_fetch_and_and_16) +STUB( + "XmGN9B+MniY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("XmJwv9OLio8", _ZN7WebCore7Element7closestERKN3WTF6StringE) +STUB( + "XmLaKtWbk90", + _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody18swapSupportedIsSetEv) +STUB("XmUO6H1GyR4", ucnv_openPackage_67) +STUB( + "XmVDTFDVu+Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEEaSERKSA_) +STUB( + "XmWKYOtgHOw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE21intrusive_ptr_add_refEPS9_) +STUB("XmZD0up1Q8Q", _ZN15AbstractStorage12LocalServiceD1Ev) +STUB("Xma8yHmV+TQ", sceNetConfigWlanAdhocJoin) +STUB("XmdBAiAQqK8", _ZNK7WebCore5Range14intersectsNodeERNS_4NodeE) +STUB("XmjZke1qGYI", _ZN3JSC7Symbols32asyncGeneratorEnqueuePrivateNameE) +STUB( + "XmoAcaRfB-M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE7popBackEv) +STUB("XmrJmyhEWA0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEaSERS7_) +STUB("Xmsz9ffM-9g", FcPatternGet) +STUB("XmvdN3atbXY", sceVoiceQoSGetConnectionAttribute) +STUB( + "XmyK8eUAop4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEC2ERS7_) +STUB( + "Xn+Qo3NTLws", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("Xn-eH9-Fu60", sceSystemServiceSetOutOfVrPlayAreaFlag) +STUB("Xn2TA2QhxHc", sceNetInetPtonEx) +STUB( + "Xn8idrPoq0o", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10getString3Ev) +STUB("XnCul31fdJ0", _ZNK7WebCore12SharedBuffer4copyEv) +STUB( + "XnGmEQMiEKQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEmmEi) +STUB( + "XnIk4zTAC+Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEC1Ev) +STUB( + "XnMdwsE72gs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEED1Ev) +STUB("XnVFbq-Qc9I", sceLibSecureCryptographyGetKeySize) +STUB("XnVpABVrzQs", u_getPropertyValueName_67) +STUB("XneHuxdjRAk", sceClPthreadCondWait) +STUB( + "XngvxdFvUeI", + _ZN3sce2Np9CppWebApi14SessionManager2V112ErrorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5ErrorEEE) +STUB( + "XnkWQnGkVy8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEixEm) +STUB("Xnrfb2-WhVw", strnstr) +STUB("Xntd0cTWi0o", wpe_pasteboard_string_vector_free) +STUB( + "XnykBuve46o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("Xo3ypKAGtNk", _ZN7WebCore10ScrollView11removeChildERNS_6WidgetE) +STUB( + "Xo4pzg0PptM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEixEm) +STUB("Xo9MQFVHpAQ", sceLoginMgrServerInitializeSharePlayAllowPadOperation) +STUB( + "XoAWq79BCPM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE7reserveEi) +STUB("XoC1V7O78uQ", _ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead12unsetNatTypeEv) +STUB("XoE2OavjV18", _ZN7WebCore8SVGNames19feConvolveMatrixTagE) +STUB("XoE3RH-Y4hI", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V113SubtaskStatusEEaSERKS7_) +STUB("XoFtVU00iXs", _ZN7WebCore7Element23offsetParentForBindingsEv) +STUB("XoG-kSg91Dw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE3endEv) +STUB( + "XoGbuJcPDsE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEplEm) +STUB("XoHSovEBWgI", u_fstropen_67) +STUB("XoRHMuRz18I", _ZN7WebCore9HTMLNames11noframesTagE) +STUB("XoZQsuMBkOw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEC1Ev) +STUB("XoZqM9IBP+M", JSContextGroupAddMarkingConstraint) +STUB( + "XodFJ7w7yoo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEmmEi) +STUB( + "XodHEv36tFs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEEC2Ev) +STUB("XodZGaBbsQY", __libc_free_tls) +STUB("XoeWzXlrnMw", sceVrTrackerGetTime) +STUB("XohCilNL5EA", _ZN3sce7Toolkit2NP2V23TUS7Request18GetUsersDataStatusD1Ev) +STUB("XoqhvWYzuvU", _ZN7WebCore18isEditablePositionERKNS_8PositionENS_12EditableTypeE) +STUB("Xorc5+tFQm8", _ZN7WebCore30InvertLightnessFilterOperationC1Ev) +STUB( + "XoslVo1OIEU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE5clearEv) +STUB("XowhukYxBhY", _ZN7WebCore18JSHTMLVideoElement4infoEv) +STUB( + "Xp2kMqtxYT8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEE11get_deleterEv) +STUB("Xp4D7IRIHE0", _ZN7WebCore19AccessibilityObject21ariaRoleToWebCoreRoleERKN3WTF6StringE) +STUB( + "Xp55TleH9Zo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEEptEv) +STUB( + "Xp7EaIKtmFM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEEptEv) +STUB( + "Xp7e6nvOstg", + _ZN3sce7Toolkit2NP2V29Challenge21getChallengeThumbnailERKNS3_7Request21GetChallengeThumbnailEPNS2_4Core8ResponseINS3_18ChallengeThumbnailEEE) +STUB("Xp85BP3+BBI", sceAmprMeasureCommandSizeNopWithData) +STUB("Xp92SsA5atA", _ZN3sce2np7HttpUri5ParseEPS1_PKc) +STUB("Xp9Px0V0tas", sceUserServiceGetGlsIsTwitterEnabled) +STUB("XpA3dnvjl8w", FTA_Add_Module_smooth) +STUB("XpAJ1Ckg-q4", CMAC_Update) +STUB("XpBGDtzmgXU", _ZN3sce7Toolkit2NP2V24Auth7Request11GetAuthCodeC2Ev) +STUB( + "XpRdfHeSPzI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEC2Ev) +STUB("XpTLX6bkH5Y", rgctx_fetch_trampoline_rgctx_2) +STUB( + "Xpbybm7WfoA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEneERKS9_) +STUB( + "XpfXC1mF8Ho", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEdeEv) +STUB( + "XpgnOmaZj4I", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEptEv) +STUB("XphPcB0md7w", __hexdig_init_D2A) +STUB("XpuZT1pS47A", sceLoginMgrServerGetMorpheusRequiredUserId) +STUB("Xpw6n1YlWu8", jpeg_start_compress) +STUB("XpzE8aLKBfQ", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V18Variable20unsetLastUpdatedUserEv) +STUB("Xq-82jMGxFM", + _ZN3sce2Np9CppWebApi11UserProfile2V111PresenceApi28ParameterToGetBasicPresencesD2Ev) +STUB( + "Xq-kDNoE6tQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB("Xq5WmbwPTnQ", sceAgcDriverTriggerCapture) +STUB("XqCDWDUJ7pI", + _ZNK3sce2Np9CppWebApi7Matches2V133RequestTemporaryCompetitiveResult16teamResultsIsSetEv) +STUB( + "XqETSIt6E8s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEE7get_refEv) +STUB("XqGqV5D9GmQ", _ZN3JSC7Symbols15execPrivateNameE) +STUB("XqLLsvl48kA", sceNpTrophySystemGetUserFileStatus) +STUB( + "XqLRjTothgA", + _ZN7WebCore26MessagePortChannelRegistryC2EON3WTF8FunctionIFvRKNS_21MessagePortIdentifierENS1_16ObjectIdentifierINS_21ProcessIdentifierTypeEEEONS1_17CompletionHandlerIFvNS_26MessagePortChannelProvider11HasActivityEEEEEEE) +STUB("XqLvpNjc4Wc", _ZN3JSC19HeapSnapshotBuilder23getNextObjectIdentifierEv) +STUB( + "XqMM9TjEzlo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "XqRjXI8iMyA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("XqSdt4En0Vs", _ZN3sce7Toolkit2NP2V27NpUtils5IdMapD2Ev) +STUB("XqVrFxjoXKo", sceFsExtUSBSchedInsertForHDD) +STUB("XqYRHc4aw3w", sceCameraGetLensCorrection) +STUB( + "XqZWRFQy48k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEmmEi) +STUB("XqbpfYmAZB4", _ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2Em) +STUB( + "Xqe9YUgRktc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE10setContextEPNS2_10LibContextE) +STUB("XqglluaECqM", _ZN3JSC7Symbols29advanceStringIndexPrivateNameE) +STUB("XqiAwG3iE0c", _ZN3JSC8Debugger23recompileAllJSFunctionsEv) +STUB("XqiuPR7CeJU", EVP_sha1) +STUB("Xqkm-gipJ3c", _Z17receiveIpmiPacketiPvmPiS0_) +STUB("XqlDErOlc3g", vm_send_MonoGlobals) +STUB( + "XqnVoHZmOew", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEEC1ERKSA_) +STUB( + "Xqp3KzXQib8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEC1ERKS7_) +STUB( + "XqpV2WaDqhQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("XqrQ3ZGNRaY", udatpg_setDecimal_67) +STUB( + "Xqyb1wynnTI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE7popBackEv) +STUB("Xqztbdc69c4", _ZN7WebCore8Document17createAttributeNSERKN3WTF12AtomicStringERKNS1_6StringEb) +STUB("Xr-8XNv8wr4", _ZNK10__cxxabiv121__vmi_class_type_info11can_cast_toEPKNS_17__class_type_infoE) +STUB("Xr4pio56GGQ", _Unwind_SetGR) +STUB("Xr8AbhKuU30", _ZN12video_parser5vpcom13DirectoryOpenE) +STUB( + "XrI+Gx0UUDw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEED1Ev) +STUB( + "XrJeObBR+l8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEED1Ev) +STUB( + "XrMI2-B3zHo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEED2Ev) +STUB("XrTJtDbKnHg", _ZN9Inspector24CanvasFrontendDispatcher19canvasMemoryChangedERKN3WTF6StringEd) +STUB("XrUzZidh3K4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEC1Ev) +STUB("XrXDALeK73M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEEppEi) +STUB("XrXTtRA7U08", _LRecip) +STUB( + "XrgR5ZI+Pjg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEE3getEv) +STUB( + "XrhR7XG64iY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEC2Ev) +STUB("XrmqhAFeRW4", + _ZN7WebCore24StorageNamespaceProvider22setSessionIDForTestingERKN3PAL9SessionIDE) +STUB("Xrp3WNFryrE", u_strToUTF32_59) +STUB( + "Xrq4PZqsmQw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEEdeEv) +STUB( + "XrsOok2uZBk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEEptEv) +STUB("Xru92wHJRmg", sceVideoOutAddVblankEvent) +STUB( + "XrxgsyNCBfI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEdeEv) +STUB( + "XryYKxv4zTE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("Xrze4QPhgo4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEppEv) +STUB("Xs1WTmS4fjk", _ZN12video_parser17cTsFFLHndlManagerC2EPKc) +STUB( + "Xs5IRISYp7E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEED1Ev) +STUB("Xs9hdiD7sAA", pthread_setschedparam) +STUB("XsD3FlWj15A", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE3endEv) +STUB("XsDPaQ2pLiY", WKBundlePageSetUIClient) +STUB( + "XsDpfOePHVY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEC2EPS8_) +STUB( + "XsHY2k1X8a8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEEcvbEv) +STUB("XsO2CUN9oyQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE5clearEv) +STUB( + "XsXKmOCbguY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE8pushBackERKS8_) +STUB( + "XsY6EDC-8uM", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeAccountId2OnlineIdBatchD1Ev) +STUB("Xsc9aCcooDU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEC2Ev) +STUB( + "XscET2Ei61I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEE5resetEPS6_) +STUB( + "XscoWc8J+zY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE21intrusive_ptr_add_refEPS9_) +STUB("XsfCncK1ixk", WKWebsiteDataStoreIsStatisticsRegisteredAsSubFrameUnder) +STUB( + "XshHSl+A4p8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEEdeEv) +STUB( + "XsnOLeXSjjk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEE7get_refEv) +STUB("Xsre+404K7A", _ZN7WebCore8SVGNames21gradientTransformAttrE) +STUB("XsyWE4CSjRY", _ZN3WTF11Persistence7Encoder21updateChecksumForDataERNS_4SHA1EPKhm) +STUB("Xt+SprLPiVQ", CA_MGMT_enumCrl) +STUB( + "Xt+md5RfoA0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEC2Ev) +STUB("Xt0Jraw1eu4", _ZN7WebCore24CoordinatedGraphicsLayer12setMaskLayerEPNS_13GraphicsLayerE) +STUB("Xt2cS8a6Xj4", _ZN7WebCore18PlatformTimeRangesC2ERKN3WTF9MediaTimeES4_) +STUB( + "Xt4NG8FiUSs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE6resizeEj) +STUB( + "Xt7NxbnOrlE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("XtAANmF2Ulc", _ZN3sce7Toolkit2NP2V28Presence12Notification14PresenceUpdateC1ERKS5_) +STUB("XtCBdZx6Mpo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEdeEv) +STUB("XtClSOC1xcU", sceNetBweCheckCallbackIpcInt) +STUB("XtFyTKi22Sc", _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRankingD1Ev) +STUB("XtJFhdWtv7A", mono_aot_Sce_Vsh_DiscPlayerunbox_trampoline_addresses) +STUB( + "XtKvu-c5ZcE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEC2EPS8_) +STUB( + "XtOl9KAhjh0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE5beginEv) +STUB("XtP9KKwyK9Q", _ZTISt12bad_weak_ptr) +STUB( + "XtSw528ZdJg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEEC2ERKSA_) +STUB( + "XtZrvw-ObB0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "XtaxBCCwMwc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEE11get_deleterEv) +STUB("Xte9Io0K-yQ", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4RoomEE3setEv) +STUB("XtqRfeG-eRE", _ZNK3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15Error12messageIsSetEv) +STUB("Xu6bdKSXf5w", _ZN3sce7Toolkit2NP2V210Tournament12MatchDetails8deepCopyERKS4_) +STUB("Xu80SX8RNxw", _ZN8meta_gen13JpegRetriever20JPEGPROM_HOUR_OFFSETE) +STUB( + "XuAy0vYmKx8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE21intrusive_ptr_add_refEPS9_) +STUB("XuJAJecAwbM", sceDebugIpmiGetChannelWaitingThreadList) +STUB("XuN6ckgISpo", _ZN13MsvMetaEditor8compact8EmPh) +STUB("XuNOIRPz7Os", CurlMultiQueueRequest) +STUB( + "XuOPnyNewyM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEEC2Ev) +STUB("XuSGBkZXvkY", _ZN7WebCore22EmptyFrameLoaderClient14cancelledErrorERKNS_15ResourceRequestE) +STUB( + "XuVY56j7GM0", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_51PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEE) +STUB("XuXDVIamUmU", _ZN3JSC2VM24intlPluralRulesSpaceSlowEv) +STUB( + "XuZjVE6824A", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("XuZn1qUezkE", WKBackForwardListGetTypeID) +STUB("XuiSa0e8NQs", WKWebsiteDataStoreRemoveITPDataForDomain) +STUB("XujojypwYYc", __sys_dl_get_list) +STUB("XukP1j-OjCQ", sr04) +STUB( + "Xukc0fYdfHo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("XulaVOa6IwA", sceVideoRecordingGetVideoOutMode) +STUB("Xulxz8sifac", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEE5resetEPS5_) +STUB("XunKPED2zLE", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18SessionInformationEEC1Ev) +STUB("XuqmYJfdEzI", sceFaceTrackerAddUserFeature) +STUB("Xusa19jU2dE", _ZN3JSC8JSObject30convertToUncacheableDictionaryERNS_2VME) +STUB( + "Xuser1dx7UM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEEaSERKS9_) +STUB("XuwLcdlmrS4", __asan_poison_stack_memory) +STUB( + "XuzIfKtDe6I", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEEiRNS2_10LibContextEPT_m) +STUB("XuziIaZ0ieg", _ZN7CoreIPC15ArgumentDecoder6decodeERb) +STUB("Xv+0BhQZN9g", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEEppEv) +STUB("Xv7gsbvyLsM", _ZN7WebCore8FormData16prepareForUploadEv) +STUB("XvA5KS56wcs", sceInvitationDialogInitialize) +STUB( + "XvGHXWpY4r4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE10setContextEPNS2_10LibContextE) +STUB("XvLbJb5jTh4", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product31contentInteractiveElementsIsSetEv) +STUB( + "XvMCVMlukNM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEC1Ev) +STUB("XvMSyv0qVBc", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13FriendsOfUserEEC1Ev) +STUB( + "XvPFm2tF0wI", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEEiRNS2_10LibContextEPT_m) +STUB("XvPtgoXrjnM", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE8pushBackERKS6_) +STUB("XvSvS6FCnVI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE4sizeEv) +STUB("XvVca2CQ6vQ", _ZN7WebCore8SVGNames20feDisplacementMapTagE) +STUB( + "XvYmGRV2O38", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEmmEi) +STUB("Xva83fZZ7D4", sceImeBackendGetCaretIndex) +STUB("XvfHZol5M80", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable8getValueEv) +STUB("XvfPzcP3Aq8", _ZN3JSC8DebuggernwEm) +STUB( + "XvguxuYcpng", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("XvhwS43SKN8", sceNpSnsYouTubeDialogGetResult) +STUB( + "XvjGsM6WBy8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody37unsetComparedLastUpdatedUserAccountIdEv) +STUB("XvpvmtjZr6s", mono_aot_Sce_Vsh_RnpsAppMgrWrapperunwind_info) +STUB("XvuKaNDHIWA", _ZN7WebCore17FrameLoaderClient30updateGlobalHistoryItemForPageEv) +STUB("XvwBxPGMX9A", __asan_store16_noabort) +STUB("Xvwa-06MMT8", _ZN3sce2Np9CppWebApi6Common6VectorIfE8pushBackERKf) +STUB( + "Xvxj6qTdeJs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEdeEv) +STUB("Xvz2YKjejK8", monoeg_g_strndup) +STUB("Xw2GRLZZITY", ucptrie_getType_67) +STUB("Xw6MRw0otvY", _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForReadD1Ev) +STUB( + "Xw8NIUn3Mmo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE3endEv) +STUB("XwCQlCYd7Zs", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth7IdTokenEE19setCustomReturnCodeEi) +STUB("XwDl05sLITI", mono_aot_Sce_Vsh_Themeunwind_info) +STUB("XwLA5cTHjt4", __gxx_personality_v0) +STUB("XwQprd-SN94", _ZNK7WebCore11MediaPlayer35platformVolumeConfigurationRequiredEv) +STUB("XwRd4IpNEss", _FRteps) +STUB("Xwe5zUiM0Yg", Java_java_util_zip_ZipFile_startsWithLOC) +STUB("Xweb+naPZ8Y", sceNpWebApi2GetMemoryPoolStats) +STUB("XwguU8D076E", uprv_decNumberZero_67) +STUB( + "XwkqckJcVL8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEeqERKS9_) +STUB("Xwt6c0oYcOE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE5beginEv) +STUB( + "XwueuOfD+Q8", + _ZN7WebCore8Document17addConsoleMessageEN3JSC13MessageSourceENS1_12MessageLevelERKN3WTF6StringEm) +STUB("XwyKrGzWNag", _ZN7WebCore9AnimationD2Ev) +STUB("Xx+NgwGbYk4", sceGpuExceptionRemoveRazorHandler) +STUB("Xx0dItTuoRM", WKPreferencesGetMediaSourceEnabled) +STUB("Xx974EW-QFY", sceFontSelectRendererFt) +STUB("XxMEGHeTJ6A", _ZN7WebCore8SVGNames20feDiffuseLightingTagE) +STUB("XxX+8OB3pRA", Java_com_sony_gemstack_org_dvb_application_AppProxyImpl_n_1load) +STUB("XxehMXhiJoQ", sceVencCoreSetPictureType) +STUB("XxfxrsCBl5o", WKPageSetScrollPinningBehavior) +STUB( + "XxnIqHUeDks", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("XxoF7-Yj5Pg", _ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayerD1Ev) +STUB("XxpHVIw5W9Q", _ZN7WebCore8SVGNames16feColorMatrixTagE) +STUB("XxsPrrWJ52I", _ZNKSt8messagesIcE3getEiiiRKSs) +STUB( + "Xxt-WqqlrJ0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE10setContextEPNS2_10LibContextE) +STUB( + "XxyP0VpcB0M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEEC2Ev) +STUB("Xy24q3qh8eQ", _ZNK7WebCore18DOMWindowExtension5frameEv) +STUB("Xy4cdu44Xr0", CERT_enumerateCRLAux) +STUB("Xy4rq8gpYHU", sceUserServiceSetFileBrowserSortContent) +STUB("Xy5YsYFZYIo", fuse_main_real_compat25) +STUB("XyAHGBvo1R8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEmmEi) +STUB("XyDgzkScDVQ", _ZNK3WTF10StringView21findIgnoringASCIICaseERKS0_j) +STUB( + "XyI4tyR51yI", + _ZN8meta_gen11MsvPromoter25setKeyValue_TBLV_MarlinIdENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB("XyJPhPqpzMw", _ZNSt4_PadD1Ev) +STUB("XyKw6Hs1P9Y", _ZNSt10filesystem6_ChmodEPKcNS_5permsE) +STUB("XyLpGP1eO2k", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils16NetStateDetailedEEC2Ev) +STUB("XyVSidTteHI", jvmciHotSpotVMTypes) +STUB("XyX1104ACcU", __tsan_acquire) +STUB( + "XyYtMcULDno", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEC1ERS7_) +STUB("XydkUpianuM", _ZN7WebCore9HTMLNames9centerTagE) +STUB( + "XykCBfkGuxc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEC2EPS8_) +STUB("XymOM0uQO8o", udtitvfmt_formatCalendarToResult_67) +STUB( + "Xyn985t5098", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "XyoOMsRe3GI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("XypLQD+W1HM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEptEv) +STUB("XypQPgXg0KE", _ZNK7WebCore16HTMLInputElement10isURLFieldEv) +STUB("XyvQv2qjUng", sceNpPushIntEndInactive) +STUB( + "Xyx0Zc0gs28", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEEptEv) +STUB( + "XyxFBd0B+UQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEeqERKS9_) +STUB("XyzcK+7svlc", GCC_except_table367) +STUB("Xz1rPddzDVg", _ZN7WebCore11JSDOMWindow14finishCreationERN3JSC2VMEPNS_13JSWindowProxyE) +STUB( + "Xz6dYA6DPiA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEC1EPS8_) +STUB( + "Xz7eSxsUubY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE7popBackEv) +STUB("Xz8I-jW1h-8", mono_aot_Sce_Vsh_Themeplt_end) +STUB("XzBpmNFa5uc", _ZN7WebCore11MediaPlayerD1Ev) +STUB( + "XzHv889WHkA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEE11release_refEv) +STUB("XzMossODjv8", _ZN7WebCore16BlobRegistryImpl23registerBlobURLForSliceERKNS_3URLES3_xx) +STUB("XzX7xkCot04", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEC1Ev) +STUB("XzaB+3b5LII", _ZN7WebCore9HTMLNames7fontTagE) +STUB("XzcH41rrOC0", UDataMemory_normalizeDataPointer_67) +STUB( + "XzdVu68uciM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEEC1ERS9_) +STUB( + "Xzez-K4wpcw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEmmEv) +STUB( + "XzlKjlRP8c4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEED1Ev) +STUB("XzmyKMq+H-I", _Z24Ime_GetDicWordListNativeimPP11_MonoStringS1_) +STUB( + "Xzo2Nq9GflA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEptEv) +STUB("Xzpfd5uJNNk", WKBundlePageStopExtendingIncrementalRenderingSuppression) +STUB("XzsY92t2shU", _ZN3JSC8Debugger11atStatementEPNS_9ExecStateE) +STUB( + "Xztq5XmEJeA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEptEv) +STUB("Xzy0onDzSAc", _ZN3sce4Json6MallocEm) +STUB("Y+-YGNm6Gas", scePlayReadyReaderDecrypt) +STUB( + "Y+04igRCce4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE8capacityEv) +STUB("Y+75-LnHTVo", _ZN3sce3Xml4AttrC2Ev) +STUB("Y+Cj0GwkL8w", sceCesIso2022StrGetUtf32Len) +STUB("Y+E+Xo5zmWs", + _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchStatusRequest8fromJsonERKNS_4Json5ValueE) +STUB("Y+F8BWbx21Q", mono_aot_Sce_Vsh_UsbStorageScenemethod_addresses) +STUB("Y+FKKeZmpyo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE4sizeEv) +STUB( + "Y+FUKN+oyc8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEE7get_refEv) +STUB( + "Y+PX6zqK244", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEC1EPS8_) +STUB( + "Y+SHtHghkpo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("Y+SivKEB3AE", _ZN3JSC7Symbols30promiseStatePendingPrivateNameE) +STUB("Y+T21D+imWk", _ZN3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsSearchRequestBodyD1Ev) +STUB( + "Y+YeKHUrM7w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEED1Ev) +STUB( + "Y+au3IcrQVA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEE7get_refEv) +STUB( + "Y+dmXhjo+PY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEC1EPNS2_10LibContextE) +STUB("Y+hLqeLseRk", sceNpManagerIntLoginGetAuthorizationCode) +STUB("Y+jqwX0puOE", udat_getAvailable_67) +STUB( + "Y+pTVRiUcHo", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE6finishEv) +STUB( + "Y+pw3tjTcfw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "Y+s5oX1F3wY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEC1EPS7_PNS2_10LibContextE) +STUB( + "Y+u-l+LxGIs", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi11recordScoreEiRKNS4_22ParameterToRecordScoreERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_23RecordScoreResponseBodyEEENSA_INS4_26RecordScoreResponseHeadersEEEEE) +STUB("Y--EgEoE8C4", + _ZN7CoreIPC10Connection22createClientConnectionEiPNS0_6ClientEPN7WebCore7RunLoopE) +STUB("Y-3JCiU9bbU", sceVrTracker2GetCoordinateSystem) +STUB( + "Y-4YRER1mnM", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC2ERKS8_) +STUB("Y-5-0OwCYck", JVM_GetSockName) +STUB("Y-5sBnpVclY", CA_MGMT_convertKeyPEM) +STUB("Y-5vneiBtzk", sceAgcAcbEventWriteGetSize) +STUB("Y-6GjsGTrGw", _ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead13unsetPlatformEv) +STUB("Y-7rDsm23yk", + _ZN7WebCore35CrossOriginPreflightResultCacheItem5parseERKNS_16ResourceResponseERN3WTF6StringE) +STUB( + "Y-AYv4pF9dk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEEC2Ev) +STUB( + "Y-BeRt6hfUg", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser15setmemberFilterEPKc) +STUB("Y-BsNTR9JUE", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V111OfferStatusEEmmEv) +STUB("Y-DWQGqNj40", _ZN3JSC8Debugger17didExecuteProgramEPNS_9ExecStateE) +STUB("Y-FLW6YaELs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEE7get_refEv) +STUB("Y-I66cSNp+A", _ZN3sce2np8WorkItemD0Ev) +STUB("Y-Lqz4pNya4", rgctx_fetch_trampoline_mrgctx_11_p) +STUB("Y-Ph7Ug2WgI", monoeg_g_strchomp) +STUB( + "Y-RYuhf8H1c", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEdeEv) +STUB( + "Y-YDvEIUIf4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB("Y-enDzU8ibc", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy17TrophyPackSummaryEE19setCustomReturnCodeEi) +STUB( + "Y-f6EnCx3Ts", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE8pushBackERKS8_) +STUB("Y-f8NxVe1Ws", _ZNK3sce2Np9CppWebApi12Leaderboards2V14User9pcIdIsSetEv) +STUB( + "Y-mBQc+B5rQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEEptEv) +STUB("Y-o-b7OCixI", _ZThn24_N9Inspector22InspectorDebuggerAgent8stepOverERN3WTF6StringE) +STUB( + "Y-q+lEitEts", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "Y-q7CIuwGdA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEED1Ev) +STUB( + "Y-qSBjZDr+4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE5emptyEv) +STUB( + "Y-w7hdvXftk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEE21intrusive_ptr_sub_refEPS7_) +STUB( + "Y-wVwcpJjDQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "Y-wh9GQRNww", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEplEm) +STUB( + "Y-x8XcHfiRA", + _ZN3sce2Np9CppWebApi7Matches2V126CreateMatchResponseFactory7destroyEPNS3_19CreateMatchResponseE) +STUB( + "Y-xPeNY3RM4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("Y-yfJk9tEjs", _ZN3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSessionD1Ev) +STUB("Y0-IeBPnpXk", _ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE7popBackEv) +STUB("Y00mcdiTiOA", sceUrlConfigResolverGetDeviceId) +STUB( + "Y054LOaMkWs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEEC1ERSA_) +STUB("Y05Qp6MjtQ4", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_15TrophyGroupInfoEED1Ev) +STUB( + "Y07JJmjs8HA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEED2Ev) +STUB("Y08Qm-TztMw", _ZN3sce7Toolkit2NP2V212EventsClient12EventDetails20MAX_SIZE_DESCRIPTIONE) +STUB("Y09cEVpgZ0I", sendMessage) +STUB("Y09pEga+1vQ", _log_impl) +STUB("Y0Jl+IRTPCE", sceCesEucKrToUtf8) +STUB( + "Y0Koxq4KEkg", + _ZN7WebCore11FrameLoader16loadFrameRequestEONS_16FrameLoadRequestEPNS_5EventEON3WTF6RefPtrINS_9FormStateENS5_13DumbPtrTraitsIS7_EEEEONS5_8OptionalINS_18AdClickAttributionEEE) +STUB("Y0LQ0UrxiEs", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetailD1Ev) +STUB("Y0LiSp+hb38", sceSrcUtilityInitialize) +STUB("Y0LmeEc0f7E", sceVideoCoreGenerateThumbnail2) +STUB("Y0R876TZju4", _ZN7WebCore15HTMLFormElement15setAutocompleteERKN3WTF10AtomStringE) +STUB( + "Y0SK1FVHnYU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEC2EPKS8_) +STUB( + "Y0T+QeM2fbE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE21intrusive_ptr_add_refEPS7_) +STUB("Y0aSX0IFJCg", _ZN3WTF6Thread17waitForCompletionEv) +STUB("Y0cKXXu1FV0", _ZTV22MmsMdCommonFsOperation) +STUB( + "Y0eGPZuXJkY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEneERKS9_) +STUB("Y0eI-b+mHIw", + _ZN7WebCore12EventHandler21handleMousePressEventERKNS_28MouseEventWithHitTestResultsE) +STUB("Y0ihanSfskw", qs5) +STUB("Y0pCDajzkVQ", sceCameraChangeAppModuleState) +STUB("Y0pD1+-SO2k", Java_java_lang_Runtime_maxMemory) +STUB( + "Y0xDk1-eT+A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEED2Ev) +STUB( + "Y0zuU-hUj1o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEE5resetEPS9_) +STUB("Y11CsKBV32g", _ZN3JSC8Debugger23updateCallFrameInternalEPNS_9CallFrameE) +STUB("Y16fu+FC+3Q", sys_signame) +STUB( + "Y1AaB-7f6q0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "Y1CP8zONIDg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEC2ERKS7_) +STUB("Y1DCjN-s2BA", sceHttpAuthCacheExport) +STUB("Y1EmilNpj3Y", sceNpPush2SetNpCommunicationId) +STUB("Y1HQopZzyOg", + _ZNK3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayer14getCustomData1Ev) +STUB("Y1JygxqZatI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEE7add_refEv) +STUB( + "Y1K9dD5bnVE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEC1EPNS2_10LibContextE) +STUB("Y1LY77EZoRg", + _ZN3sce2Np9CppWebApi7Matches2V119AdditionalStatisticC2EPNS1_6Common10LibContextE) +STUB( + "Y1Mt633x+6Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEE11release_refEv) +STUB("Y1NFFZmeFVw", mono_threads_get_default_stacksize) +STUB( + "Y1NV2AQplNk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEE11get_deleterEv) +STUB("Y1Os0IoOlcw", JVM_StartThread) +STUB("Y1Qvs8BdZio", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEC2ERS7_) +STUB("Y1RR+IQy6Pg", _ZdaPvmSt11align_val_t) +STUB("Y1WkAv+vINM", sceHidControlInit) +STUB("Y1WxX7dPMCw", sceGameLiveStreamingStartSocialFeedbackMessageFiltering) +STUB("Y1jcc0M5190", mono_aot_Sce_Vsh_Sl2_Sl2Clientplt) +STUB("Y1kxYyW+dIk", sceRemoteplayNotifySubmitCode) +STUB("Y1nEpkCieOY", sceKernelLoadStartModuleInternalForMono) +STUB("Y1upNpVk2bU", scePlayReadyApiInitializeInitParams) +STUB( + "Y2-mtcyXjFA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEEeqERKS7_) +STUB("Y21PJ8XjrzQ", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging24GameDataMessageThumbnailEE3setEv) +STUB( + "Y23mapaL+H4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEC2EPKS8_) +STUB("Y248zKEoozw", _ZN7WebCore27PlatformMediaSessionManager28shouldDeactivateAudioSessionEv) +STUB("Y295ygEccqk", _ZN3sce2Np9CppWebApi6Common10LibContextC1Ev) +STUB( + "Y2AJknsUg1g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEC1Ev) +STUB( + "Y2D2TWa1-ys", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "Y2Jm+RcExHE", + _ZN7WebCore15ActiveDOMObject32queueTaskToDispatchEventInternalERNS_11EventTargetENS_10TaskSourceEON3WTF3RefINS_5EventENS4_13DumbPtrTraitsIS6_EEEE) +STUB( + "Y2JnZ1FS15M", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEneERKS9_) +STUB("Y2MJ-3r8EUg", + _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse21cancellationTimeIsSetEv) +STUB( + "Y2MdBA-Aslg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEED1Ev) +STUB("Y2OqwJQ3lr8", sync) +STUB( + "Y2Qs4tdKYmQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEC2EPS8_) +STUB("Y2RudaWFT7I", _ZN7WebCore15HTMLFormElement5resetEv) +STUB( + "Y2U5L8x7Cig", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEC2Ev) +STUB( + "Y2W62LZvRHA", + _ZN3JSC12profiledCallEPNS_14JSGlobalObjectENS_15ProfilingReasonENS_7JSValueERKNS_8CallDataES3_RKNS_7ArgListERN3WTF8NakedPtrINS_9ExceptionEEE) +STUB("Y2WxV8PjcjU", mono_aot_System_ComponentModel_Compositionunwind_info) +STUB("Y2aGkJqk3zI", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V16StatusEEC2EPS6_) +STUB("Y2jrKUVfyfI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEED1Ev) +STUB("Y2onZmaIziI", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi22ParameterToCreateMatchC1Ev) +STUB("Y2qIwrc5PnQ", _ZN7WebCore18ImageBufferBackend19sinkIntoNativeImageEv) +STUB( + "Y2rd4ClTeag", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEE11release_refEv) +STUB("Y2ymCmjoiMc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEEC1Ev) +STUB("Y3+SYo6BeGg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEED1Ev) +STUB( + "Y3+w4cV-pw8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE10setContextEPNS2_10LibContextE) +STUB( + "Y3-C6Yjn-Mk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEeqERKS9_) +STUB("Y30nckElO64", _ZN12video_parser17cVideoOperatorMp4C1EPKc) +STUB("Y35OA3dFPhk", + _ZN3sce2Np9CppWebApi14SessionManager2V118LeaderWithOnlineIdC2EPNS1_6Common10LibContextE) +STUB("Y3CFlALyKU8", _ZNK3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer12getAccountIdEv) +STUB( + "Y3EHXCmjgAE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEptEv) +STUB("Y3GaShDncwM", _ZNK3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead13onlineIdIsSetEv) +STUB( + "Y3HxfjHnow0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEE11release_refEv) +STUB( + "Y3MnOEGZrs0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEC1EPS8_) +STUB("Y3T-sxogDg0", sceDeci4hDrfpFstat) +STUB("Y3Ws-mK8eOc", _ZN3sce7Toolkit2NP2V28Matching12RoomPingTimeC2ERKS4_) +STUB("Y3Z2695WJ8E", WKContextSetAlwaysUsesComplexTextCodePath) +STUB( + "Y3h4cEv4RRc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEmmEv) +STUB( + "Y3hBU5FYmhM", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERj) +STUB("Y3hsRCZODFs", nsnp_Fin) +STUB("Y3lXfCFEWFY", sceAudioOutGetHandleStatusInfo) +STUB( + "Y3llxCk00VA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEneERKS9_) +STUB( + "Y3lmlc6qmfA", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionFactory6createEPNS1_6Common10LibContextEPKcNS5_12IntrusivePtrINS3_33ResponsePlayerSessionMemberPlayerEEEPNSA_INS3_13PlayerSessionEEE) +STUB("Y3loWkCBFRg", _ZN7WebCore11JSDOMMatrixD2Ev) +STUB("Y3ovKe32X2U", _ZN7WebCore10Pasteboard5writeERKNS_5ColorE) +STUB( + "Y3qunRQD+so", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEC1EPS8_) +STUB("Y3rMu7aArzA", WKDatabaseManagerGetOriginKey) +STUB("Y3ymLfZ1384", sceAgcUpdatePrimState) +STUB("Y4+NqOIedOk", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend7FriendsEEC1Ev) +STUB("Y4+czTsKo-g", sceBackupRestoreUtilGetRestoreProgress) +STUB( + "Y45T5YqAIhU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB( + "Y46ohFfmvR4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEmmEi) +STUB( + "Y48FE3cjnA4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEC2EPS6_PNS2_10LibContextE) +STUB("Y49Oiub8OWU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16TrophyPackTrophyEE3setEv) +STUB( + "Y4D9ia0D+T4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEC2EPKS8_) +STUB("Y4DduTtrY60", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V18Variable20lastUpdatedUserIsSetEv) +STUB( + "Y4IEbrhuJlI", + _ZNK3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectator6toJsonERNS_4Json5ValueEb) +STUB("Y4IO9qaYTeI", __ubsan_handle_float_cast_overflow) +STUB( + "Y4JGovShwJY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("Y4NRPm9miAc", OCSP_resp_count) +STUB( + "Y4QdZJNnGAg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("Y4SgSg-COm4", ucsdet_setDeclaredEncoding_67) +STUB("Y4UKK0ylUPY", ScePsmMonoSecuritySetCoreClrPlatformCallback) +STUB("Y4WQlvU72XY", JVM_CompileClasses) +STUB("Y4WT1dmgDUM", _ZN9Inspector22InspectorDebuggerAgent17scriptDebugServerEv) +STUB("Y4XVjnscbgw", + _ZN23sceMetadataReaderWriter20LoadedParserInfoList13acquireParserEjjPPKNS_10ParserInfoE) +STUB( + "Y4alEw-ubBo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "Y4eLfPsfv2w", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEptEv) +STUB("Y4fJS3W1guo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEC2Ev) +STUB( + "Y4fimtkhk4Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEE6assignEPS7_PFvS9_EPNS2_10LibContextE) +STUB("Y4p7dZLQgDQ", _ZNK3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayer11getPlatformEv) +STUB("Y4pGsTIQ3cI", jpeg_natural_order7) +STUB("Y4vWmmTKoLM", _ZN7WebCore21UserContentController20removeAllUserContentEv) +STUB( + "Y4x52Sh09IE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEE7add_refEv) +STUB("Y4y2+Wmu5xk", sceVisionManagerGetCalibrateTrackingLedInfo) +STUB( + "Y5+ET6w8iVg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEED2Ev) +STUB( + "Y5+YfSDL5j0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEC1EPS8_) +STUB("Y5AwJLqRtOE", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE8capacityEv) +STUB("Y5ChdsxEESU", EVP_DigestVerifyInit) +STUB("Y5DhuDKGlnQ", log2) +STUB( + "Y5FwDcdBCdk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEC2Ev) +STUB("Y5H1OebYTbU", _ZN3sce7Toolkit2NP2V210Tournament25BracketInformationOfMatchC2Ev) +STUB( + "Y5Jhq5zHzvQ", + _ZN3sce2Np9CppWebApi6Common23UpDownStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("Y5LV8ogfFr4", mono_aot_ReactNative_Components_Vshplt_end) +STUB("Y5Nq2oQY5O4", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEED2Ev) +STUB("Y5R5Ogfbk68", sceNpTrophySystemWrapDebugUnlockTrophy) +STUB( + "Y5S9ubVYJiQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEmmEv) +STUB("Y5U66nk0bUc", sceUserServiceGetGlsCameraBgFilter) +STUB("Y5YAhR330PU", _ZN3sce2Np9CppWebApi13InGameCatalog2V515ContainerRating10unsetScoreEv) +STUB("Y5eglu1FrsE", _ZN3sce2np13NpAccessToken5ClearEv) +STUB("Y5gf6j83DE8", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V113ErrorResponse8getErrorEv) +STUB("Y5go+ha6eDs", sceUsbdDetachKernelDriver) +STUB("Y5jkiqu3QL0", _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15ErrorD2Ev) +STUB( + "Y5miljnycaI", + _ZN9Inspector22AuditBackendDispatcherC2ERNS_17BackendDispatcherEPNS_29AuditBackendDispatcherHandlerE) +STUB("Y5mraOUblZE", + _ZN3sce2Np9CppWebApi11UserProfile2V111PresenceApi28ParameterToGetBasicPresencesC2ERS5_) +STUB("Y5pqmZuI9KA", _ZNK7WebCore11MediaPlayer8hasAudioEv) +STUB("Y5sbsRjqa70", ubiditransform_close_67) +STUB( + "Y5tfyXoHWNs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEE11get_deleterEv) +STUB("Y5uSKFr3-zw", _ZN7WebCore11MathMLNames11maxsizeAttrE) +STUB("Y5zgw69ndoE", sceUserServiceGetMousePointerSpeed) +STUB("Y60Bo0XmM1M", _ZN3sce2Np9CppWebApi6Common6VectorIdE8pushBackERKd) +STUB("Y638D7al2DQ", _ZThn88_N7WebCore14XMLHttpRequestD0Ev) +STUB( + "Y68k+3DM4l0", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEiRNS2_10LibContextEPT_m) +STUB("Y6ASJpCgb90", mono_threads_exit_gc_safe_region_unbalanced) +STUB("Y6HgZMlmutM", _ZN7WebCore4Page35resumeActiveDOMObjectsAndAnimationsEv) +STUB("Y6L+KP-hG5c", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed12SharedVideosEE5resetEv) +STUB( + "Y6N6wuI8uV8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEED2Ev) +STUB("Y6OT8SQVLeg", g_string_append_printf) +STUB("Y6PHykAxGfg", WKContextClearLegacyPrivateBrowsingLocalStorage) +STUB("Y6Sl4Xw7gfA", __cxa_get_exception_ptr) +STUB( + "Y6T18J3t6Bk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEC2ERS7_) +STUB( + "Y6Vb+3i2NWQ", + _ZN7WebCore15ContextMenuItemC1ENS_19ContextMenuItemTypeENS_17ContextMenuActionERKN3WTF6StringEbb) +STUB("Y6X+JzzRLAE", JNU_ThrowStringIndexOutOfBoundsException) +STUB("Y6ZY-QEwOwg", g_malloc) +STUB( + "Y6dYLX5WRJU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEC1Ev) +STUB("Y6fbwfOY3P0", _ZN15AbstractStorage18DailymotionServiceD2Ev) +STUB("Y6k6Srv8y+g", mono_aot_Sce_Vsh_RequestShareStorageWrapperunbox_trampolines_end) +STUB("Y6ky5K9t+fo", _ZN3sce3Xml3Dom8NodeListC2Ev) +STUB( + "Y6leGQ9X0Z4", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC2Ev) +STUB( + "Y6ngMkV9Me4", + _ZNK3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsTouchResponseBody6toJsonERNS_4Json5ValueEb) +STUB("Y6p0OVE1LWQ", vzone_getOffset_67) +STUB( + "Y6wuGuv3cOA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEEC1Ev) +STUB("Y797Sw9-jqY", sceNpAppInfoIntAbortRequest) +STUB("Y7B0vc8885c", _ZN2GK9PlayerPSND0Ev) +STUB("Y7L7nUSz4+A", sceNpGriefReportReadJsonFile) +STUB("Y7QXcOWtIB4", _ZN3sce2Np9CppWebApi14SessionManager2V112JoinableUserD2Ev) +STUB("Y7U1yt1DVFY", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetail7setviewENS5_4ViewE) +STUB("Y7YAkiFozCE", mono_btls_x509_chain_get_certs) +STUB( + "Y7Zga2qP59Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE21intrusive_ptr_sub_refEPS9_) +STUB("Y7aJ1uydPMo", realloc) +STUB( + "Y7b8xrkZUNo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEE7get_refEv) +STUB("Y7cMrHHJWiY", _ZN7bmalloc5Cache28tryAllocateSlowCaseNullCacheENS_8HeapKindEmm) +STUB("Y7doyvjejkw", sceClPthreadCreate) +STUB("Y7f+qBjKxdo", _ZN3sce2np10Cancelable4InitEv) +STUB("Y7kPU5plvt4", _ZN9Inspector25NetworkFrontendDispatcherC1ERNS_14FrontendRouterE) +STUB( + "Y7n93fo38b8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEED2Ev) +STUB("Y7novemfu4A", _ZN3sce7Toolkit2NP15AppSTLAllocatorItEC1Ev) +STUB("Y7pdbchLoHc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEppEv) +STUB( + "Y7rXffS0kh4", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119PlayStylePropertiesC1EPNS1_6Common10LibContextE) +STUB("Y7wh0NNE1e4", u_getUnicodeVersion_67) +STUB("Y7ybAoS4n64", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEEaSERS6_) +STUB("Y83n-gwogPo", sceCustomMusicCoreSetSystemAudioVolume) +STUB("Y879TXVjjbE", _ZNK3sce2Np9CppWebApi6Common6VectorIjE5emptyEv) +STUB("Y8I-XdZMnUw", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku12unsetEndDateEv) +STUB( + "Y8NEzdjmYNw", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody22getDisableSystemUiMenuEv) +STUB("Y8PKTmTiPiY", + _ZN12video_parser17cVideoProfilerMp420_createThumbnailInfoEjPNS_13VpMediaInfo_tE) +STUB( + "Y8SwlOdZ50c", + _ZN3JSC8JSObject30putDirectNativeIntrinsicGetterERNS_2VMEPNS_14JSGlobalObjectENS_10IdentifierENS_14NativeFunctionENS_9IntrinsicEj) +STUB("Y8YJJFju5jw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEE7get_refEv) +STUB( + "Y8e2rpqZ3iI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEeqERKS9_) +STUB("Y8fLhUHCOI8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEE11release_refEv) +STUB("Y8fTz1oPOf0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEE3getEv) +STUB("Y8jBCCshu+0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEC1ERKS7_) +STUB( + "Y8mWqQfBG3U", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseC2EPNS1_6Common10LibContextE) +STUB("Y8onQYjuvOU", sceLncUtilSuspendApp) +STUB("Y8p7gavyxWc", _ZN8meta_gen11MsvPromoter25determineDefaultTitleInfoEv) +STUB( + "Y8ww+newDeU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "Y8xJ2hpqveA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEEcvbEv) +STUB("Y92VhkON2E4", Java_java_lang_ClassLoader_registerNatives) +STUB( + "Y93FzyPFqu0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEEC1EPS6_PNS2_10LibContextE) +STUB( + "Y97V89hUbtg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEC1ERS7_) +STUB( + "Y98X5zbZ1ms", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129MatchCompletionRateProperties18setConfidenceScoreERKi) +STUB("Y9C9GeKyZ3A", _ZTVSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE) +STUB( + "Y9M7y4ezPM8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEED2Ev) +STUB("Y9OWNvuSVJg", WKBundlePageClose) +STUB( + "Y9PAb00KlJA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEppEi) +STUB("Y9RKc-A3HCc", _ZNKSt9basic_iosIcSt11char_traitsIcEE3tieEv) +STUB("Y9SIVGvL-80", _ZN9Inspector15ScriptArgumentsD2Ev) +STUB( + "Y9VhUVobweo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEaSERKS7_) +STUB( + "Y9aRAORMNak", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE5beginEv) +STUB( + "Y9c-Vyz2t1A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEEC2ERSA_) +STUB( + "Y9kHHGtrmB4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEaSERKS9_) +STUB( + "Y9rZvthj3LM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEmmEv) +STUB( + "Y9sIfz+9Q4c", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEeqERKS9_) +STUB("Y9soJc90skA", scePerfPmcGetCounterSelf) +STUB("Y9vSvWOd6x4", _ZN3sce2Np9CppWebApi7Matches2V120ResponseInGameRoster12unsetPlayersEv) +STUB("YA0r4LCkfeY", sendfile) +STUB( + "YA1-8tpwIiA", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10setString2EPKc) +STUB("YA3vrCwlD54", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Wordfilter16SanitizedCommentEE12deepCopyFromERS7_) +STUB("YAEZT2sGPBo", ufmt_getArrayLength_67) +STUB( + "YAFOYoXYoZk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "YAH3LlgFRkM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEEaSERKSA_) +STUB("YALqoY4aeY0", sceNetBweClearEventIpcInt) +STUB( + "YAMQfYfqwAQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE8capacityEv) +STUB( + "YAN5HBw288c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "YAQD6z+pMds", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("YAgyq1ct9LE", + _ZN7bmalloc29StaticPerProcessStorageTraitsINS_13HeapConstantsEE7Storage7s_mutexE) +STUB( + "YAkwp-0MODI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEEdeEv) +STUB("YAmB48F6my0", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V18RelationEEeqERKS7_) +STUB("YAoMMSxEIkE", _ZNK7WebCore23FrameLoaderStateMachine15firstLayoutDoneEv) +STUB("YAr5INcJluc", _ZNK3WTF10StringView25endsWithIgnoringASCIICaseERKS0_) +STUB("YAriP-FIVoc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE8copyFromERKS7_) +STUB("YAtVGPtThx8", + _ZNK3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody13getUpdateModeEv) +STUB( + "YAwkwlZa8ow", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEE11release_refEv) +STUB("YB3XBmlN7VY", WKHitTestResultCopyAbsoluteMediaURL) +STUB( + "YBGAMvRfRHM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE5beginEv) +STUB("YBLQHkY3ZLo", _ZN7WebCore8SVGNames12calcModeAttrE) +STUB("YBPm9rUjtYA", _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfileC2EPNS1_6Common10LibContextE) +STUB("YBRHNH4+dDo", __isnanl) +STUB("YBSuJmexDRc", il2cpp_get_exception_argument_null) +STUB("YBaw2Yyfd5E", sceFontGraphicsRelease) +STUB("YBdB17og2MY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEC1Ev) +STUB("YBiIdcDPrxs", sceShareFeaturePermit) +STUB("YBkEmv18woc", _ZN7WebCore23ScaleTransformOperationD2Ev) +STUB( + "YBrHlqAp9Co", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEEaSERSA_) +STUB("YBrp9BlADaA", _ZNSt23_Generic_error_categoryD0Ev) +STUB( + "YBvcWpFmb-Q", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi42ParameterToPutGameSessionsSearchAttributes13isInitializedEv) +STUB("YBx9uA2TdEs", Java_java_lang_Throwable_fillInStackTrace) +STUB("YBxUrFjgcQs", _ZN3sce2Np9CppWebApi11UserProfile2V15ErrorD2Ev) +STUB( + "YC0LYQ61WFo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEE7add_refEv) +STUB("YC3k6Hcy9+E", sceNpManagerIntLoginSetUserId) +STUB("YC595317HbM", sceVdecwrapQueryDecoderMemoryInfo) +STUB("YC65YX-S2Zg", mono_aot_Sce_Vsh_Np_Managerunbox_trampoline_addresses) +STUB( + "YCCFV3KWJao", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEEC1EPS8_PNS2_10LibContextE) +STUB( + "YCD3G4aUR-4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEEC1ERSA_) +STUB("YCG+e9qLpdo", ucnv_fromAlgorithmic_67) +STUB("YCH6ueezfBQ", put_unwind_info) +STUB("YCN0QrUqO04", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEmmEv) +STUB("YCOZ80HgcTQ", JSValueMakeBoolean) +STUB("YCR6TK+r5C0", _ZN7WebCore8IntPointC2ERKNS_7IntSizeE) +STUB("YCSHm7zyma4", mono_array_element_size) +STUB("YCSRE4f3Ezs", _ZN7WebCore11HTMLElement13setSpellcheckEb) +STUB("YCV5dGGBcCo", sem_wait) +STUB("YCVxOE0lHOI", _LXp_subx) +STUB( + "YCW9Oj9WTDU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE6resizeEj) +STUB( + "YCaw2P6gL0w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEE11get_deleterEv) +STUB( + "YCcrhV-qWJ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEEaSERSA_) +STUB("YChO9-jTzns", _ULx86_64_Iextract_dynamic_proc_info) +STUB("YCk8PjGgg3Y", _ZNK3sce7Toolkit2NP9Utilities6FutureIiE3getEv) +STUB("YCouauONvKI", JVM_GetSystemPackage) +STUB( + "YCqCEJH6EDI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEdeEv) +STUB("YCqM6M4hxG4", _ZN7WebCore17PageConsoleClientdaEPv) +STUB("YCvg6beVFLA", udtitvfmt_resultAsValue_67) +STUB("YD4g7+Vftmk", JVM_GetCPFieldModifiers) +STUB("YD6Scnc17a8", + _ZThn16_N9Inspector22InspectorDebuggerAgent28setPauseOnDebuggerStatementsERN3WTF6StringEb) +STUB("YD77iANnIzg", _ZN3WTF10StringView16GraphemeClusters8IteratorppEv) +STUB("YD8Fn1nmBEI", mono_aot_Sce_Vsh_FileSelectorplt) +STUB("YD9sqo0Q620", aio_error) +STUB("YDDHD6RP4HQ", sceNpAsmCreateConnection) +STUB("YDFR0dDVGAg", sceAjmInstanceExtend) +STUB("YDGzScNx5qc", sceUserServiceSetGlsOverlayPosition) +STUB("YDNFh8ey+n4", _ZN9Inspector19InspectorAuditAgent21injectedScriptManagerEv) +STUB( + "YDOi4ILCAh8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("YDQxE4cIwa4", _ZNSt10filesystem11_Remove_dirEPKc) +STUB("YDRhyNW6N-w", uprv_realloc_67) +STUB("YDUKJ-yIjaE", _ZN3sce3Xml3Dom15DocumentBuilder16setResolveEntityEb) +STUB( + "YDXqhErkNDc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEE5resetEPS9_) +STUB( + "YDZAajA5oc0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEE5resetEPS9_) +STUB( + "YDd7n3c95Os", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEC2EPS6_PNS2_10LibContextE) +STUB( + "YDdKx0MQmdU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEaSERKS7_) +STUB("YDg-SQj66AQ", sceKernelFlock) +STUB("YDhItZFEgvY", uloc_acceptLanguageFromHTTP_67) +STUB("YDnLaav6W6Q", _Stoulx) +STUB("YDpM-vQ8XDI", + _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead16matchmakingIsSetEv) +STUB("YDtrVohLYdQ", Java_com_sony_gemstack_org_havi_ui_HBackgroundImageDecoder_displaySurfaceStereo) +STUB("YDxLejOTKHs", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getMixerLevel) +STUB( + "YDxtGHWTiC4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEED1Ev) +STUB("YDzt8ouKxT0", monoeg_g_slist_delete_link) +STUB( + "YE+vuFpIFXo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE3endEv) +STUB( + "YE2Xlvad4ng", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEEC2ERSA_) +STUB("YE3MRmCjo0Y", WKPageGoToBackForwardListItem) +STUB("YE4dbtbz6OE", sceNpUniversalDataSystemEventPropertyObjectSetInt32) +STUB("YE5ube8wC4w", WKSecurityOriginCopyDatabaseIdentifier) +STUB("YE9F6cbO39A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEdeEv) +STUB( + "YEC6Pcgh-9Q", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEdeEv) +STUB( + "YECODxhJAVM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("YEDrb1pSx2Y", _ZNSt17bad_function_callD1Ev) +STUB("YEGbElW0Bos", WKPreferencesSetLargeImageAsyncDecodingEnabled) +STUB("YEIxDXDA-w0", __tsan_vptr_read) +STUB("YEJuAOKlI28", _ZN3sce7Toolkit2NP21InvitationInfoRequestC1Ev) +STUB("YEKnFa2DgpI", mono_context_get_id) +STUB("YEKoSHIvP70", _ZN9Inspector14InjectedScriptD2Ev) +STUB("YEL7H7n4jtg", + _ZN7WebCore6JSNode15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB("YEdPdZJNx2g", _ZN6WebKit17ChildProcessProxyD2Ev) +STUB("YEfU5l4UYtQ", sceCesRefersUcsProfileJisX0201) +STUB( + "YEgwftsmJVI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEC1ERKS7_) +STUB("YEhJTd5XSyo", _ZN7bmalloc29StaticPerProcessStorageTraitsINS_9ScavengerEE7Storage8s_memoryE) +STUB("YEmNmQ-73DI", VerifyClassCodes) +STUB( + "YEomiEV1E7g", + _ZN9Inspector24RuntimeBackendDispatcher14getBasicBlocksElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("YEpgJCN9fAw", ubiditransform_open_67) +STUB("YEsPTntsTkk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE5clearEv) +STUB( + "YEx7EJdmj3U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "YEygZrZ7aVo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE21intrusive_ptr_sub_refEPS9_) +STUB("YEz6hdsCeWQ", _ZN3sce2Np9CppWebApi11Matchmaking2V110UserTicket8fromJsonERKNS_4Json5ValueE) +STUB("YEzx97WEAfs", _Z26sceRazorGpuThreadTraceInitP28SceRazorGpuThreadTraceParams) +STUB("YF8fb6sZvh4", _ZN3sce7Toolkit2NP2V28Matching4RoomC1Ev) +STUB("YF8yTf-L0vc", rgctx_fetch_trampoline_rgctx_26_p) +STUB("YFEYZzHHzi8", WKContextConfigurationCopyDiskCacheDirectory) +STUB( + "YFGBPgYjPGg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEEC1EPS8_PNS2_10LibContextE) +STUB( + "YFHymhuJ1M4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEmmEi) +STUB( + "YFLRlT2AncU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEixEm) +STUB( + "YFOY4nlHfyI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE21intrusive_ptr_add_refEPS9_) +STUB("YFT08Zm3+64", _ZThn16_N9Inspector22InspectorDebuggerAgent6enableERN3WTF6StringE) +STUB("YFXvTiInxk8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEED2Ev) +STUB("YFYWOwYI6DY", sceNpTusGetFriendsVariableAsync) +STUB("YFYopWa9Pco", _ZTVN3PAL13SleepDisablerE) +STUB( + "YFYowQqa+bM", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB( + "YFaWKV7q8Y4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEneERKS9_) +STUB( + "YFdc-bfZDiU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEEC1ERKSA_) +STUB("YFk0XUFXDX4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEaSERKS7_) +STUB("YFlXC+lRh0A", wpe_key_code_to_unicode) +STUB("YFmdb-fLGDE", _ZN7WebCore4Page19addLayoutMilestonesEj) +STUB("YFnbd+CZrxg", _ZN3JSC19JSNativeStdFunction6s_infoE) +STUB("YFoOw5GkkK0", hypot) +STUB( + "YFpO8WTwgEA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEC1EPS7_PNS2_10LibContextE) +STUB("YFqTNZQwPwM", _ZNK7WebCore6Quirks49isTouchBarUpdateSupressedForHiddenContentEditableEv) +STUB( + "YFsZLfhrWKA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEaSERKS9_) +STUB("YG0gjZUTjJk", _ZN3NTF17URLRequestHttpJob3urlEv) +STUB( + "YG0y+39Wa5c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEEC1ERSA_) +STUB("YG3DR7BiShg", _ZN3WTF13StringBuilder12appendNumberEi) +STUB("YG5OENZ6-Do", sceBgftServiceIntDownloadDebugDownloadBgftEnvFile) +STUB("YG5a2oc5yds", _ZN10MsvUpdaterD2Ev) +STUB("YG5xSqzt8tQ", + _ZNK7WebCore30InvertLightnessFilterOperation21inverseTransformColorERNS_15FloatComponentsE) +STUB("YG8LIyZq7hg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEE11release_refEv) +STUB("YGF3QRMwOME", _ZN7WebCore4PathC1ERKS0_) +STUB( + "YGJD12v+iQ4", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("YGPQ2f427zQ", _ZN9Inspector18IdentifiersFactory9requestIdEm) +STUB("YGPopdkhujM", _ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1Em) +STUB( + "YGQ5opdiqDE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEC1EPS8_) +STUB("YGRDoLmH2tk", sceVideoRecordingGetInfoByHandle) +STUB("YGVFue2806s", JVM_GetFieldAnnotations) +STUB( + "YGYrU8TmNxc", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer54getpostPlayerSessionsSessionIdMemberPlayersRequestBodyEv) +STUB( + "YGa6LSC9mr0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEmmEi) +STUB("YGdliBvwjzo", sceCesUhcToUtf32le) +STUB( + "YGhoDqLhTaY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEplEm) +STUB("YGm7Vn3fkbk", getnameinfo) +STUB( + "YGqaWP8tl2M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE8pushBackERKS8_) +STUB( + "YGroIngFHuI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEptEv) +STUB( + "YGsIVSdCfI4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "YGsuAPHTNAI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEE5resetEPS6_) +STUB("YGvhmOrMKVk", _ZN7WebCore17JSDOMGlobalObject13visitChildrenEPN3JSC6JSCellERNS1_11SlotVisitorE) +STUB("YGvqDPyza18", sceLibSecureHashGetDigestSize) +STUB("YGz2aihwuUk", _ZN3sce2Np9CppWebApi6Common6Binary21intrusive_ptr_sub_refEPS3_) +STUB("YH-MFaHAyyg", _ZN7WebCore11MediaSampleD2Ev) +STUB( + "YH3wpSWAiuc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEppEv) +STUB("YHDfqIv37Wo", _ZN3sce7Toolkit2NP2V210Tournament12MatchDetailsC2ERKS4_) +STUB("YHG4TtOxLmw", WKAXObjectCopyDescription) +STUB("YHNEgBCSL2o", _ZN3sce2np10JsonNumber5ClearEv) +STUB( + "YHQGHsZskMo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEE7get_refEv) +STUB("YHRZx51rXYg", + _ZN3sce2Np9CppWebApi13InGameCatalog2V520ContentRatingFactory7destroyEPNS3_13ContentRatingE) +STUB( + "YHWO7KQ3mvU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "YHYfyQXdOLc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEptEv) +STUB("YHfG3-K23CY", _ZTVSt22_Future_error_category) +STUB("YHhQADlUvVM", _ZN3sce7Toolkit2NP2V212ActivityFeed11SharedVideo12VIDEO_ID_LENE) +STUB("YHhpH40bMpQ", il2cpp_raise_exception) +STUB( + "YHhrnLe4FMg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEE7add_refEv) +STUB( + "YHiHnSKFNCI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEE11release_refEv) +STUB("YHjoCx7QaOs", _ZN3WTF15AtomStringTableD1Ev) +STUB("YHlLk3A2wec", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEmmEv) +STUB("YHoUqFRap2A", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Publisher9nameIsSetEv) +STUB("YHshPHlRYjg", _ZNK7WebCore8Position24parentAnchoredEquivalentEv) +STUB( + "YHtGwhJ9-UU", + _ZN12video_parser13cVideoMetaVWG19_setArtworkSizeInfoEPNS_12VpMetadata_tEPNS_13cVideoMetaMP418VpThumbnailInfoMP4E) +STUB("YI0KKylYwYs", mono_gc_wbarrier_set_field) +STUB("YI6BMOI-raE", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy15TrophyPackGroupEED2Ev) +STUB("YI6OasFsCCs", mono_aot_Sce_Vsh_UpdateServiceWrapperunwind_info) +STUB("YIFDiAInu7Y", sceMatAgcRegisterResource) +STUB( + "YIJRLPaLv7g", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody32comparedLastUpdatedDateTimeIsSetEv) +STUB("YIdHB5ZqqbA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEEC2EPNS2_10LibContextE) +STUB("YIhn+OJcAXY", _ZN7WebCore11DisplayList8SetStateD2Ev) +STUB( + "YIoaVBTsw8c", + _ZN7WebCore4FontC1ERKNS_16FontPlatformDataENS0_6OriginENS0_12InterstitialENS0_10VisibilityENS0_19OrientationFallbackE) +STUB("YIq6hXTO42E", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_20ChallengeRecvDetailsEEC2Ev) +STUB("YIvqqvJyjEc", sceNpUnregisterStateCallbackForToolkit) +STUB("YIzAGWKFBvs", _ZN3JSC11checkSyntaxEPNS_9ExecStateERKNS_10SourceCodeEPNS_7JSValueE) +STUB("YJ+0cvknYu8", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12getInteger10Ev) +STUB("YJ+fb7ImoBo", + _ZNK3sce2Np9CppWebApi14SessionManager2V118LeaderWithOnlineId6toJsonERNS_4Json5ValueEb) +STUB("YJ0cMAlLuxQ", sceUsbdGetMaxPacketSize) +STUB("YJ1jvDZ7x2E", _ZN7WebCore14CredentialBaseC1Ev) +STUB( + "YJ4ZuNFxIIA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEmmEv) +STUB("YJ7JscWubcU", sceKernelAddGpuExceptionEvent) +STUB("YJ7r9QVu+Us", _ZN7WebCore19HTMLTextAreaElement8setValueERKN3WTF6StringE) +STUB( + "YJ8Hfpzb7Us", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE4sizeEv) +STUB("YJEa-ShxPyM", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi24ParameterToReportResultsaSERS5_) +STUB("YJGFD+KZ-LQ", mono_aot_Sce_PlayStation_PUIPlatformmethod_addresses) +STUB("YJIA4RMKwUc", unorm_previous_67) +STUB( + "YJPwiLBhne0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEneERKS9_) +STUB( + "YJRTrcDGoME", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "YJRyQdVSEAY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEaSERKS7_) +STUB("YJS1irf2+lY", _ZN3sce7Toolkit2NP2V210Tournament18OneVsOneRankResultD2Ev) +STUB("YJY1OZgqRuY", _ZN12video_parser13cVideoMetaVWG12_getPriorityENS_9VP_LANG_eES1_) +STUB("YJYjBoMFRXY", sceMoveTrackerCalibrateYaw) +STUB("YJdV7kZrHCo", _ZNSt15basic_streambufIwSt11char_traitsIwEE8overflowEi) +STUB("YJp-6AZoYfM", mono_assembly_load_from_full) +STUB( + "YJq6m-Qm1xg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEC2EPNS2_10LibContextE) +STUB( + "YJr-1hlE4jY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE6resizeEj) +STUB( + "YJsazr3AdMs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEC2EPS6_PNS2_10LibContextE) +STUB( + "YJslzBmjiIw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEEaSERKSA_) +STUB("YJtKLttI9fM", sceGameUpdateInitialize) +STUB("YJw-wgMFs9U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEEC1Ev) +STUB("YJxbbli-KAM", _ZNK7WebCore16BlobRegistryImpl11filesInBlobERKN3WTF3URLE) +STUB("YK+c8n2US1E", WKBundlePageWillEnterFullScreen) +STUB("YK03gBzYdg8", rgctx_fetch_trampoline_rgctx_67) +STUB( + "YK3FRU7zBZo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEptEv) +STUB("YK76WadcCQI", _ZN7WebCore9TimerBaseD0Ev) +STUB("YKAN9NXOUy4", rgctx_fetch_trampoline_rgctx_109_p) +STUB( + "YKCrXCBHk58", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEC1Ev) +STUB("YKFJg1QgF4Y", + _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi24ParameterToReportResults10getmatchIdEv) +STUB( + "YKLLU7aElnk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEEC1Ev) +STUB("YKRSHNeOYF4", _ZN3sce7Toolkit2NP2V29Challenge7Request13SendChallenge18MAX_NUM_RECIPIENTSE) +STUB("YKRSVD5BhhU", _ZN7WebCore16valueToUSVStringERN3JSC14JSGlobalObjectENS0_7JSValueE) +STUB("YKT49TOLQWs", sceKernelJitMapSharedMemory) +STUB("YKUfGIuT6hg", _ZN7WebCore9HTMLNames10addressTagE) +STUB("YKVixVJQoXU", + _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody18setStartSerialRankERKi) +STUB("YKXWNeVKbS8", + _ZN3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayer16setJoinTimestampEPKc) +STUB("YKbL5KR6RDI", fma) +STUB("YKbhUwwhktE", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEEC2Ev) +STUB("YKcmvOW6APA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEEdeEv) +STUB("YKfRyWrKGP0", mono_get_exception_method_access) +STUB("YKhRySE3Zxc", _ZNSt10filesystem16_Last_write_timeEPKcPlS2_) +STUB("YKkJF7Z7A34", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10CategoriesEE3getEv) +STUB("YKkXqeBiw3s", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V125FrequentlyMutedProperties10getInPartyEv) +STUB("YKlfHEDsaSs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEptEv) +STUB("YKu2Eub+j94", scePssSoundPlayerUserCreate) +STUB("YKwPUXLyid0", _ZN7WebCore25getOutOfLineCachedWrapperEPNS_17JSDOMGlobalObjectERNS_4NodeE) +STUB( + "YKxKmmrhEQU", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEEiRNS2_10LibContextEPT_m) +STUB("YKz2oBW3ZkM", _ZN3sce2np12WorkerThreadC1EPNS0_9WorkQueueE) +STUB( + "YL1aAhIwqIw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "YL3sp2YIGfs", + _ZNK3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionMemberPlayer18nonPsnPlayersIsSetEv) +STUB("YL67CqoAxos", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku12endDateIsSetEv) +STUB("YL7i9hQ-9Hw", _ZN3sce7Toolkit2NP17MessageAttachmentC1Ev) +STUB("YL8YwG5Lsms", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEED1Ev) +STUB("YL917dn7tuI", + _ZNK3sce2Np9CppWebApi14SessionManager2V131ResponsePlayerSessionInvitation15getInvitationIdEv) +STUB("YL9jNFfwm5Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEaSERS7_) +STUB("YLEc5sPn1Rg", _Recip) +STUB( + "YLMeJotgOqo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "YLNlWd8qjc8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEplEm) +STUB( + "YLPVEL7KKcI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB("YLR+A614eOU", SSL_CTX_add0_chain_cert) +STUB("YLSTCl2QgrM", _ZNK7WebCore11MediaSample16getRGBAImageDataEv) +STUB("YLTGftleg3Y", _ZN7WebCore17isStartOfDocumentERKNS_15VisiblePositionE) +STUB("YLXt-vGw4Kg", sceNpServiceCheckerIntCreateRequest) +STUB("YLbhAXS20C0", sceSystemServiceGetAppType) +STUB( + "YLbmnxLLoSY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE5clearEv) +STUB( + "YLi1yJSpM0c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("YLinP6egkAw", sceCesRefersUcsProfileCp855) +STUB("YLnc4QnhtVI", _ZN7WebCore11MathMLNames9mstackTagE) +STUB( + "YLu+D4kXlvo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEdeEv) +STUB("YLz+Wqt+NIc", Java_java_lang_reflect_Array_getDouble) +STUB( + "YM1BcywNO6U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEcvbEv) +STUB( + "YM2wBZZsZ2o", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi20ParameterToJoinMatch19setjoinMatchRequestENS1_6Common12IntrusivePtrINS3_16JoinMatchRequestEEE) +STUB( + "YM9VwbY1-cY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEixEm) +STUB("YMAWUz8HtJ0", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error25unsetValidationConstraintEv) +STUB("YMAmjPlj8u8", _ZNK3sce2Np9CppWebApi12Leaderboards2V14User14accountIdIsSetEv) +STUB( + "YMBxN5ikX2w", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE5emptyEv) +STUB("YMCpUDCbSwM", il2cpp_class_has_references) +STUB( + "YMKwZlPiTKY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEC1Ev) +STUB("YMMD+HcxbOQ", u_memcmp_67) +STUB( + "YMNOVOOSPxU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEEptEv) +STUB("YMRlc1RzOQI", u_ispunct_67) +STUB("YMXMDRZhMl8", _ZN3JSC12GlobalJSLockC2Ev) +STUB("YMY6TV27CZs", il2cpp_method_get_return_type) +STUB( + "YMYQ6bLDcEU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "YMYZ-NoyDe8", + _ZN7WebCore9FrameView29setLayoutViewportOverrideRectEN3WTF8OptionalINS_10LayoutRectEEENS0_18TriggerLayoutOrNotE) +STUB("YMZO9ChZb0E", reallocf) +STUB("YMaBqMfLkEU", mono_aot_Mono_Data_Sqliteunbox_trampoline_addresses) +STUB("YMbRl6PNq5U", CA_MGMT_rawVerifyOID) +STUB("YMdfx4CK+Jo", _ZN7WebCore13NodeTraversal13deepLastChildERNS_4NodeE) +STUB( + "YMfvOz7pfZU", + _ZNK7WebCore9FrameView35convertFromContainingViewToRendererEPKNS_13RenderElementERKNS_9FloatRectE) +STUB("YMmEUO-ntpU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEEC1Ev) +STUB("YMncbReoIU4", sceDebugIpmiGetServerKidListByDump) +STUB( + "YMoOvfzwafw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("YMuesZTyTl4", tcsetpgrp) +STUB("YMxfNRx4DR4", sceLoginMgrServerDialogSetResult) +STUB("YMyEsDrQ7yY", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku23setDisplayOriginalPriceEPKc) +STUB("YMzdVVBE+oU", _ZN8meta_gen13JpegRetriever15ProcessJpegDataEii) +STUB("YN+iG-LhqWU", mono_aot_Sce_Vsh_VideoPlayerunwind_info) +STUB("YN878uKRBbE", sceKernelMemoryPoolBatch) +STUB("YNE7yepUciw", WKPreferencesSetScrollingPerformanceLoggingEnabled) +STUB( + "YNSUj4ALKTc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEppEv) +STUB("YNT8fNzZ2Dw", coil_dlopen_native) +STUB("YNW0wFK31f0", _ZN3sce7Toolkit2NP15AppSTLAllocatorI16SceNpTusVariableE7addressERS3_) +STUB("YNcz43EFLg8", GCC_except_table49) +STUB("YNjmVsr47so", _ZNK3sce2Np9CppWebApi11Matchmaking2V18Location18gameSessionIdIsSetEv) +STUB("YNmg-z6cX5c", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEEC1Ev) +STUB("YNoDjc1BPJI", sceSystemServiceLaunchUdsApp) +STUB("YNoMmLu3t7k", _ZNK7WebCore9FloatRect10intersectsERKS0_) +STUB("YNoOopkgmhw", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_20ChallengeRecvDetailsEE3getEv) +STUB("YNx4S96mF64", __asan_unpoison_stack_memory) +STUB( + "YNxyItKksbA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE4sizeEv) +STUB("YNyhPrsrVS4", _Z36VideoPlayerVcs_GetReadyStateForDebugi) +STUB("YNzNkJzYqEg", strncpy_s) +STUB("YO-+8p3GGzo", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11ProductInfoEED1Ev) +STUB("YO8ZpaSFoM0", _ZN3WTF11Persistence5CoderINS_12AtomicStringEE6encodeERNS0_7EncoderERKS2_) +STUB("YOCg+nfg0Sk", udat_getCalendar_59) +STUB("YODjvvt-jqs", JNU_IsInstanceOfByName) +STUB("YOGEsCbfQT8", _ZN8meta_gen13TiffRetriever8FinalizeEv) +STUB( + "YOHpSiXAS50", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "YOQ9ewdkOWQ", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "YOR1DNkYTUI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEEC1ERSA_) +STUB("YOUVPle0yqk", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend7FriendsEE19setCustomReturnCodeEi) +STUB("YOWh2dVgWV8", + _ZN15AbstractStorage18DailymotionContent6RenameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB( + "YOXt-ip-Sq4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEC2Ev) +STUB("YOhSigGtau4", uprv_isInfinite_67) +STUB("YOwMzBq2Gqg", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead18getNonPsnSupportedEv) +STUB( + "YP0zuh70f08", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEppEv) +STUB( + "YP7S9x-Ba50", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetInteger7Ev) +STUB("YPCoUIVSnPI", _ZN3JSC7Symbols15fromPrivateNameE) +STUB("YPE0HOq1C4c", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_21AbortGameDataResponseEEC2Ev) +STUB("YPE1upd3gRs", _ZNK7WebCore17HTMLSelectElement9listItemsEv) +STUB( + "YPGwUQu5P9g", + _ZN7WebCore19JSHTMLSelectElement15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB("YPIAioZJ3lc", era) +STUB("YPNqhQCRUS0", WKBundlePageFindString) +STUB("YPSbsFsVzUs", _ZNK3WTF9MediaTime12isIndefiniteEv) +STUB("YPY6kX1Vq2Y", _ZN3sce7Toolkit2NP2V27Ranking10UsersRanksC1Ev) +STUB( + "YPY7RJe9Emg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEC1Ev) +STUB("YPZRhrnAUH0", _ZNK3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResults7getRankEv) +STUB("YPZSbDa6nMU", _ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_10TimeRangesE) +STUB("YPmPj0yiv-Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE7popBackEv) +STUB("YPnEw0kxArM", _ZThn112_N7WebCore9DOMWindowD1Ev) +STUB("YPpeP+CFZUI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEdeEv) +STUB("YPqj8Ky3WDY", sceFaceTrackerRegisterStopTrackingCallback) +STUB( + "YPrSorxuWJk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE10setContextEPNS2_10LibContextE) +STUB("YPxkUDhgoNI", sceAmprAprCommandBufferResetGatherScatterState) +STUB("YPyYVEu-17g", _ZNK9Inspector15AsyncStackTrace9isPendingEv) +STUB("YPz6ArouTjc", _ZN23sceMetadataReaderWriter15ParserInterfaceC2ERKS0_) +STUB("YQ+Umguo+lw", fuse_fs_destroy) +STUB("YQ0navp+YIc", puts) +STUB( + "YQ2HvLLZGX8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEE5resetEPS6_) +STUB( + "YQ2krT9FYEI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE8pushBackERKS8_) +STUB("YQ3ZHtUvdAk", _ZNK3sce3Xml3Dom8Document10getDocRootEv) +STUB("YQ7-z4zFWok", sceNpAsmClientGetGameNpTitleToken) +STUB("YQC5ZjGfd+A", nsnp_DecryptWithIV) +STUB("YQEg-76vfzE", WKContextGetIconDatabase) +STUB( + "YQH0lX41G8M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEppEi) +STUB( + "YQLQ2SA9bfw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE8capacityEv) +STUB( + "YQMAykYdbEE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEppEv) +STUB("YQNBKboJx64", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE3endEv) +STUB("YQOfxL4QfeU", mprotect) +STUB("YQRWoaNNiWM", WKPreferencesSetWebSecurityEnabled) +STUB("YQRhphz9tIQ", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17SetGameDataResultEE19setCustomReturnCodeEi) +STUB("YQTUOMqlO+I", + _ZN7WebCore17FrameLoaderClient29dispatchGlobalObjectAvailableERNS_15DOMWrapperWorldE) +STUB("YQZ9c5jMwJc", _ZN7WebCore22EmptyFrameLoaderClientC2ERKS0_) +STUB( + "YQZa-NlBwjg", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12Notification14NetStateChangeEE19setCustomReturnCodeEi) +STUB("YQdBMeXFvso", sceMbusDumpModuleStateInfoAll) +STUB("YQvowss1aMI", jinit_arith_encoder) +STUB("YQxZc-vyRxQ", uprv_decNumberExp_67) +STUB("YR+3Yawi6rY", uregex_replaceAllUText_67) +STUB( + "YR8KcmDV4CM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEplEm) +STUB("YREfLD1wwT0", WKContextGetAccessibilityEnabled) +STUB( + "YRHdJNXXtQs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("YRPHqS8TcnI", sceRegMgrSetInitLevel) +STUB( + "YRPLZ4h9Jls", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEED1Ev) +STUB( + "YRPa70gEJ9Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEaSERKS9_) +STUB( + "YRSS7uE1W-4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEE21intrusive_ptr_sub_refEPS7_) +STUB("YRT+iMeJA94", _ZN3JSC12importModuleEPNS_9ExecStateERKNS_10IdentifierENS_7JSValueES5_) +STUB("YRXcfVupGJQ", _ZN3JSC7Symbols24isSetIteratorPrivateNameE) +STUB("YRaXiCamdsU", jpeg_write_coefficients) +STUB( + "YRdUVqsfnPE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE5clearEv) +STUB( + "YRdnLdRUBbY", + _ZN3sce2Np9CppWebApi7Matches2V126RequestMatchResultsFactory6createEPNS1_6Common10LibContextENS3_14ResultsVersionEPNS5_12IntrusivePtrINS3_19RequestMatchResultsEEE) +STUB("YReND3Ewgj0", sceAutoMounterClientGetUsbDeviceList) +STUB("YRfnGuAB5gw", _ZNK7WebCore6Widget25convertFromContainingViewERKNS_7IntRectE) +STUB("YRje5yEXS0U", sceNpTusGetMultiUserVariableAsync) +STUB( + "YRjolXPT2OM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE5beginEv) +STUB("YRlm9YSeOYE", WKConnectionSetConnectionClient) +STUB("YRo2l6rSWgE", Java_com_sony_bdjstack_javax_media_content_dripfeed_Player_playFrame) +STUB( + "YRq1DD-yhwY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEC1ERS7_) +STUB( + "YRua2F6-89U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEE7get_refEv) +STUB( + "YRwPz-6W2bk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE28getResponseInformationOptionEv) +STUB("YRwx+GrTPWA", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRateD1Ev) +STUB("YRzM++Z1MTw", _ZN7WebCore9HTMLNames11fieldsetTagE) +STUB("YS045R-CDdU", _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse17inGameRosterIsSetEv) +STUB( + "YS1z-wVhtT4", + _ZN3sce7Toolkit2NP8Matching9Interface27registerRoomMessageCallbackEPFvtNS1_23SessionMessageEventTypeEtPKvE) +STUB("YS6CTarAjOY", _ZN3WTF20equalIgnoringNullityEPNS_10StringImplES1_) +STUB("YS70c-3wL18", readIS) +STUB("YS9z7STX13s", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11TusVariableEEC1ERKS4_) +STUB( + "YSHMkBy7Mhg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEC2EPNS2_10LibContextE) +STUB("YSHRBRLn2pI", _writev) +STUB("YSI9gL8yfjo", vector_str_push) +STUB("YSJx5IKTaGI", _ZNK7WebCore15AffineTransform7inverseEv) +STUB("YSNcXEI3HrQ", sceRnpsAppMgrSetUpdateUrl) +STUB( + "YSPHTQEV5Ns", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEEptEv) +STUB("YSSecs7t4N0", ScePsmMonoRuntimeInvoke) +STUB("YSTUNjs1X-Q", _ZN7WebCore6toHSLAERKNS_5SRGBAIfEE) +STUB("YSUOhyK9Jd4", sceNpSnsFacebookDialogClose) +STUB("YSa0McV-ZIU", sceVisionManagerSetCallbackForUpdateCtrlCore) +STUB( + "YSal1fgS5ao", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEneERKS9_) +STUB( + "YSdiVB419bU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEC1EPKS8_) +STUB("YSgZ1GYkZVk", mono_aot_Sce_Vsh_Np_IdMapperunbox_trampolines_end) +STUB("YShMyaANbf8", _ZN7WebCore9CSSParserC2ERKNS_16CSSParserContextE) +STUB("YSi2PMczWE8", curl_easy_option_next) +STUB("YSoOCmkzSWE", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setSecondaryVideoFullScreen) +STUB("YSxSzqjijXw", _ZN3sce7Toolkit2NP2V24Core7Request16ThreadPropertiesC2Ev) +STUB( + "YT+31cL3Uss", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi44ParameterToPatchGameSessionsSearchAttributesC2ERS5_) +STUB( + "YT2CiZ6hInU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB("YT6i1runMgI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116JoinableUserTypeEEmmEi) +STUB( + "YT6qVREhBDk", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeader12getsessionIdEv) +STUB("YT9Frwuo2GA", il2cpp_property_get_flags) +STUB( + "YTEVn7ZvKSE", + _ZN7WebCore19JSHTMLSelectElement25getOwnPropertySlotByIndexEPN3JSC8JSObjectEPNS1_14JSGlobalObjectEjRNS1_12PropertySlotE) +STUB("YTEaxv48L9M", Java_com_sun_dvb_event_UserEventRegistry_keyCodeRegistered) +STUB("YTFDbpU4iO4", _ZN3sce2Np9CppWebApi13InGameCatalog2V59PublisherD2Ev) +STUB("YTJJtsvWfv4", WKPreferencesGetPluginSandboxProfilesEnabledForAllPlugins) +STUB("YTM5eyFGh2c", _ZNKSt11logic_error8_DoraiseEv) +STUB( + "YTP9fM-7U54", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEEcvbEv) +STUB("YTQMY0RdykU", sceBgftServiceIntGetNotificationParam) +STUB("YTSk4TlH8ZA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEC1Ev) +STUB("YTSpNCfCpGU", _ZN7WebCore4Page32setMemoryCacheClientCallsEnabledEb) +STUB("YTXbepPCE0g", _ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody8getScoreEv) +STUB( + "YTZoHh2YCCk", + _ZN7WebCore21ComplexTextController14ComplexTextRunC1ERKN3WTF6VectorINS_9FloatSizeELm0ENS2_15CrashOnOverflowELm16EEERKNS3_INS_10FloatPointELm0ES5_Lm16EEERKNS3_ItLm0ES5_Lm16EEERKNS3_IjLm0ES5_Lm16EEES4_RKNS_4FontEPKDsjjjjb) +STUB("YTaCSIVc9DQ", _ZN7WebCore13GraphicsLayer11clearClientEv) +STUB("YTbneybUicI", _ZN7WebCore18ScrollingStateTreeD2Ev) +STUB("YTd6m0h6IYA", mono_aot_System_Data_Services_Clientjit_code_end) +STUB( + "YThcCQOnf-A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEE7add_refEv) +STUB("YTm-xrEm0Qo", _ZN7WebCore8SVGNames6dxAttrE) +STUB("YTokEsOM1x8", Java_sun_awt_DownloadedFont_getAvailableFontFaces) +STUB( + "YTp+WgX1XnA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEC1EPKS8_) +STUB("YTpcOp47W4Q", _ZNSt10_Ref_countIN15AbstractStorage14FacebookFolderEED0Ev) +STUB("YTulodi3g7o", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11EntitlementEEC1Ev) +STUB("YTx9NPfSmGo", _ZN3sce7Toolkit2NP2V27NpUtils7Request17CheckAvailabilityD2Ev) +STUB( + "YTxKunXM+Kg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEmmEi) +STUB( + "YU+aSBnwCQ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE3endEv) +STUB("YU-PxwZq21U", _ZN3sce2np4NpIdC1Ev) +STUB( + "YU17hrl0p-s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE10setContextEPNS2_10LibContextE) +STUB( + "YU2BYoASzSM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEED1Ev) +STUB( + "YU2JD3guiSc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEEcvbEv) +STUB( + "YU8H0r6TjhA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEED1Ev) +STUB("YU8fMg3NPIc", JVM_GetMethodIxExceptionTableEntry) +STUB("YUFXgWDC3cg", _ZN7bmalloc15IsoHeapImplBase14freeableMemoryEv) +STUB( + "YUGY28rxQIY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEppEi) +STUB( + "YUH2FjHcYto", + _ZN3sce2Np9CppWebApi14SessionManager2V131ResponseGameSessionMemberPlayerC1EPNS1_6Common10LibContextE) +STUB( + "YUHNxmt7LyE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE21intrusive_ptr_sub_refEPS9_) +STUB("YUJKD-uHj2U", mono_aot_Sce_Vsh_AppDbWrapperunbox_trampolines_end) +STUB("YUKO57czb+0", _CTinfo) +STUB("YUMHWSf3tbo", ShGetObjectCode) +STUB("YUMJ3Foe2ds", sceDtcpIpGetHttpStatusCode) +STUB("YUO-mjqC1x4", rgctx_fetch_trampoline_mrgctx_118) +STUB("YUQU9VAxNNg", mono_aot_Mono_Dynamic_Interpreterplt_end) +STUB("YURQsTDPtWY", il2cpp_object_get_virtual_method) +STUB("YUS5v7ggIpw", _ZTVN9Inspector27DOMStorageBackendDispatcherE) +STUB("YUU0Q9XyjqE", _ZN9Inspector40ApplicationCacheBackendDispatcherHandlerC2Ev) +STUB( + "YUVfWCGfztY", + _ZN8meta_gen11MsvPromoter29setKeyValue_TBLV_VideoProfileENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB("YUVk+nsVGtE", _ZN7WebCore11PageOverlay20stopFadeOutAnimationEv) +STUB( + "YUalcAEHy2Y", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEdeEv) +STUB("YUdPel2w8as", _Tls_setup__WCostate) +STUB("YUeqkyT7mEQ", sceAgcDcbSetFlip) +STUB( + "YUg4yRWUtTM", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V139ConnectionQualityWirelessMetricsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_32ConnectionQualityWirelessMetricsEEE) +STUB("YUhBM-ASEcA", sceUserServiceGetImePredictiveTextEnabled) +STUB( + "YUptu24rxDE", + _ZNK7WebCore5Range17absoluteTextQuadsERN3WTF6VectorINS_9FloatQuadELm0ENS1_15CrashOnOverflowELm16EEEbPNS0_20RangeInFixedPositionE) +STUB("YUs-8GaT24U", _ZThn8_N6WebKit12ChildProcessD0Ev) +STUB("YV+bnMvMfYg", sceAudioOutSysHdmiMonitorInfoIsSupportedAudioOutMode) +STUB( + "YV28oyc2QvE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEeqERKS9_) +STUB("YV2CtE7qX8M", sceMoveTrackerGetState) +STUB("YV3JmyWF2dw", + _ZN3sce7Toolkit2NP11UserProfile9Interface7getNpIdEPNS1_9Utilities6FutureI7SceNpIdEEb) +STUB("YV6P+TiDj4E", mono_object_describe_fields) +STUB( + "YV6nOnBIdKw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEE3getEv) +STUB( + "YVDKFx9k+wY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEEC2ERKSA_) +STUB("YVFWOqJOCaw", rgctx_fetch_trampoline_mrgctx_121) +STUB( + "YVJh-zBxjtw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "YVKfOokJnaI", + _ZN3sce7Toolkit2NP8Sessions9Interface24getChangeableSessionDataEPKNS1_16NpSessionRequestEPNS1_9Utilities6FutureINS1_17MessageAttachmentEEEb) +STUB("YVKkO8PZ2DM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE4sizeEv) +STUB("YVN06vtBj+E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEE3getEv) +STUB( + "YVWAf8lqa+c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEC1EPS8_) +STUB("YVacrIa4L0c", _ZNSt14numeric_limitsIwE9is_signedE) +STUB("YVatZWy9sWA", _ZN3JSC7Symbols25putByValDirectPrivateNameE) +STUB("YVdIbH2PPsg", + _ZN7WebCore21NetworkStorageSession13ensureSessionEN3PAL9SessionIDERKN3WTF6StringE) +STUB("YVecTCYH9EA", _ZNK3WTF10StringView23convertToASCIIUppercaseEv) +STUB("YVerJp-GbDc", _ZN15AbstractStorage14TwitterServiceC1Ev) +STUB( + "YVtI7M-biWs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEppEi) +STUB( + "YVwt5GdnYhc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("YVz2o-q1RYE", _ZN3sce2Np9CppWebApi14ConnectAccount2V28PSNErrorD1Ev) +STUB("YVzLYJHwtC8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEC1ERS7_) +STUB("YVzY62z2uJ8", GCC_except_table492) +STUB("YVzw4T1fnS4", sceUserServiceGetHmuBrightness) +STUB("YW09CP0Vrtw", _ZN3sce2np9HttpTrans24GetResponseContentLengthEPNS0_6HandleEPbPm) +STUB("YW0nCl9fJK0", psl_unregistrable_domain) +STUB( + "YW0pOliWGqQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("YW1tv-1DCUw", _ZN7WebCore12CSSStyleRule5styleEv) +STUB("YW74P8vB69g", sceDevUsbWriteHostRaw) +STUB( + "YW8acc+Jm9w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEE11get_deleterEv) +STUB("YWAonY+kUEQ", _ZN3WTF10AtomString6numberEy) +STUB("YWD+zZlCA8k", _ZN7WebCore8Settings32setAsyncOverflowScrollingEnabledEb) +STUB( + "YWDn3qtbREY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("YWDtWnCl8YM", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product12getPlatformsEv) +STUB("YWItHEulIAI", glUniform4i) +STUB("YWOjuEzZ3Ic", _ZN4IPMI4impl11SessionImpl7destroyEv) +STUB("YWQFUyXIVdU", sceKernelDeleteTimerEvent) +STUB("YWT1GrcWuQs", sceBluetoothHidGetDeviceInfo) +STUB("YWTKOju587o", sceAgcCondExecPatchSetCommandAddress) +STUB("YWTpt45PxbI", sceNetDumpRead) +STUB("YWV8SDvPLos", _ZN3sce7Toolkit2NP2V23TSS7TssDataD1Ev) +STUB( + "YWW0eSOAgm4", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("YWftBq50hcA", sceSystemStateMgrStartVshAutoUpdateTimer) +STUB("YWgb7P-7GgA", _ZN3sce2Np9CppWebApi13InGameCatalog2V517ContentDescriptorD1Ev) +STUB("YWho700MbF0", ubrk_getRuleStatusVec_67) +STUB("YWi5nsiD7Gc", + _ZN15AbstractStorage10YoutubeAPI14SetAccessTokenERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("YWmKJ8pWEkw", sceUserServiceSetPbtcFridayHoursEnd) +STUB("YWmekLrvS8c", mono_aot_ReactNative_Components_Vshunbox_trampolines) +STUB("YWt5S4-cg9c", _ZN3sce2np6HandleD1Ev) +STUB( + "YWwhS2tMOw4", + _ZN3sce2Np9CppWebApi14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayer16unsetCustomData1Ev) +STUB("YWzr2rYk7YE", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadDataC2ERS5_) +STUB("YX-64Vjk5oM", sceUserServiceSetPbtcTuesdayDuration) +STUB("YX4eHKXZFzM", _ZN7WebCore12PrintContext16isPageBoxVisibleEPNS_5FrameEi) +STUB("YX704TuXH+I", rgctx_fetch_trampoline_mrgctx_87) +STUB("YX79PZVH36g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEC2Ev) +STUB("YX9dAus6baE", sceNpLookupWaitAsync) +STUB("YXBTe9981qE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE5emptyEv) +STUB("YXCKQKvsVqQ", + _ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody17getNpServiceLabelEv) +STUB( + "YXE-i11CJqQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB("YXGOaruQCpg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE5clearEv) +STUB("YXN2MQWUcQE", _ZN7WebCore13GraphicsLayerD2Ev) +STUB("YXNltAyO8wU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEE5resetEPS6_) +STUB("YXQ4gXamCrY", feupdateenv) +STUB("YXS0dwS00zo", _ZN3JSC7Symbols21copyWithinPrivateNameE) +STUB("YXTIbI-WYtE", WKURLRequestSetDefaultTimeoutInterval) +STUB("YXVCU6PdgZk", _ZNSt8_LocinfoD2Ev) +STUB( + "YXW8yUPU9E8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEmmEv) +STUB("YXXMdeJmxJw", _ZN15AbstractStorage14StorageManagerC2Ev) +STUB("YXaQLoEbvfk", _ZN3sce2Np9CppWebApi14SessionManager2V124GameSessionMemberForReadD2Ev) +STUB("YXafcK+Ys+I", + _ZNK3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallback8getimpIdEv) +STUB( + "YXcNoxF0DcA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEED1Ev) +STUB( + "YXnOmZXHEaI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE5beginEv) +STUB( + "YXr8RdMdQEM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEC1EPNS2_10LibContextE) +STUB("YXsRQTyGZeA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEixEm) +STUB("YXtF7mSQUvs", goby_DescribeActionPlay) +STUB("YXurEFgMlyY", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead15getNonPsnLeaderEv) +STUB( + "YXwmHDvFkPI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEptEv) +STUB( + "YXzEGnEHoB8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEC1Ev) +STUB( + "YY1XOfVJUpU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("YY6Y+gccbSM", _ZN7WebCore12PrintContextC1EPNS_5FrameE) +STUB("YY95eGL0OBc", mono_context_get_desc) +STUB("YYChFBGp01Q", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEEC2Ev) +STUB("YYG-8VURgXA", _Tls_setup__Mbstate) +STUB( + "YYGVvLJNTqQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("YYOptrfFtso", _ZN7WebCore16FloatRoundedRectC1ERKNS_9FloatRectERKNS0_5RadiiE) +STUB("YYP3f2W09og", sceNpTrophyGetGameInfo) +STUB( + "YYQPmoWZJS4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "YYTUD7k6cR8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "YYbk128Ocus", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEaSERKS9_) +STUB("YYbrGICsiyQ", WKBundlePageGetTextZoomFactor) +STUB( + "YYc4mq6eG8M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE8copyFromERKS9_) +STUB( + "YYdz+m6KfiA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE3endEv) +STUB("YYfLHMi0+2M", _ZN3sce2np10NpOnlineIdC1Ev) +STUB("YYnyJWUoCsE", _ZN3sce2Np9CppWebApi6Common6VectorIfE5eraseENS2_13ConstIteratorIfEERS6_) +STUB("YYs7Nb1n3rM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce8ProductsEED1Ev) +STUB( + "YYsPP60pyh0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEdeEv) +STUB("YYtDE+fbjWo", _ZN3sce7Toolkit2NP2V27Ranking10UsersRanks8MAX_PCIDE) +STUB("YYtb1cztSt4", _ZN7Nicosia16SceneIntegrationD2Ev) +STUB( + "YYzw5f8b7VA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEmmEi) +STUB("YZ+3seW7CyY", sceAudioInExtOpen) +STUB( + "YZ-6im6M-qw", + _ZN3sce2Np9CppWebApi7Matches2V124RequestCompetitiveResult14setTeamResultsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_18RequestTeamResultsEEEEE) +STUB( + "YZ30k81Psa0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEppEi) +STUB("YZ38Y8PfFK0", Java_java_util_TimeZone_getSystemTimeZoneID) +STUB( + "YZ7dU3Lbp-M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE21intrusive_ptr_add_refEPS9_) +STUB("YZGHgMV9co0", _Ux86_64_dwarf_init) +STUB("YZGJTe8Qm2U", __set_ones_D2A) +STUB( + "YZJV36gTwWM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEC2EPNS2_10LibContextE) +STUB( + "YZMQUreLwSY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEaSERS7_) +STUB( + "YZNaSz-BzA4", + _ZN9Inspector14ConsoleMessageC2EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelERKN3WTF6StringEONS5_3RefINS_15ScriptCallStackENS5_13DumbPtrTraitsISA_EEEEm) +STUB( + "YZO5SYmjyjk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEED2Ev) +STUB("YZOvqxPndC0", _ZN7WebCore9HTMLNames19onpointercancelAttrE) +STUB("YZP9-KrWVgc", WKImeEventGetInputLanguage) +STUB( + "YZSRi9CKVSQ", + _ZN12video_parser44VpMpegvideoAvcParsePPS_get_run_length_minus1EPNS_21VpMpegvideoAvcPPSCtrlEiPj) +STUB( + "YZT4GkUaFu8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEEC2Ev) +STUB("YZTeX1zQrEA", _ZN3sce7Toolkit2NP2V210Tournament15RegisteredTeamsaSERKS4_) +STUB("YZVs-p3dOQ0", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112UpdateStatusEEdeEv) +STUB( + "YZY01xg5NdU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("YZaq+UKbriQ", sceAudioOutPtGetLastOutputTime) +STUB("YZc2eqvJi5w", _ZN3sce2Np9CppWebApi14SessionManager2V130ResponsePlayerSessionSpectatorD1Ev) +STUB("YZgmt5Ud5uM", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead18unsetMaxSpectatorsEv) +STUB("YZiKmarJZL8", do_check_inuse_chunk) +STUB("YZieL0-AIZw", mono_path_resolve_symlinks) +STUB( + "YZj7JDV-VQ4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE21intrusive_ptr_sub_refEPS9_) +STUB("YZk9sHO0yNg", frexpl) +STUB( + "YZlVMCFs-Dw", + _ZNK3sce2Np9CppWebApi14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBody16invitationsIsSetEv) +STUB("YZopotHD7tA", FTC_SBitCache_LookupScaler) +STUB( + "YZrN3GjjfGM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEE11release_refEv) +STUB("YZtEu0qz4UA", _ZN7WebCore6Editor26changeBackToReplacedStringERKN3WTF6StringE) +STUB( + "YZuVD2xCT5w", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS2_6VectorINS5_INS1_13InGameCatalog2V59ContainerEEEEEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "YZvR74FCx9M", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer14hasserviceNameEv) +STUB("YZxFWO2whsE", _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest11unsetZoneIdEv) +STUB("YZzt0nsSrOo", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIiEmmEv) +STUB("Ya+vgrJjBQE", cairo_region_union_rectangle) +STUB( + "Ya12CZYoXbk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEmmEi) +STUB( + "Ya1k0bX+mqI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEE11get_deleterEv) +STUB("Ya2sPNPiw+o", _ZN7WebCore18TextureMapperLayerdlEPv) +STUB("YaCU1jtWSeI", _ZN3sce7Toolkit2NP2V28Matching7Request9GetWorldsC1Ev) +STUB("YaE3CclqDOw", _ZN7WebCore4Page26applicationDidBecomeActiveEv) +STUB("YaGMXGYIWJ0", WKBundleHitTestResultGetMediaType) +STUB("YaHc3GS7y7g", _Mtx_init) +STUB("YaKa7R4mGfI", _ZN7WebCore9HTMLNames10borderAttrE) +STUB("YaLo61BT4Do", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18SessionInformationEEneERKS4_) +STUB( + "YaUVqdGo9bI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEC2EPKS8_) +STUB( + "YaUiVPR70zI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEcvbEv) +STUB("YaV2W8l2FO0", _ZN3JSC13JSSetIterator10createPairEPNS_9ExecStateENS_7JSValueES3_) +STUB("YaXDgjdUvnA", _ZTVN4IPMI6ClientE) +STUB("YaaDbDwKpFM", sceAudio3dPortGetQueueLevel) +STUB("YacE5rS1b3k", WKOpenPanelParametersCopyAllowedMIMETypes) +STUB( + "YacGTDPuDZ4", + _ZN7WebCore10PingLoader19sendViolationReportERNS_5FrameERKNS_3URLEON3WTF3RefINS_8FormDataENS6_13DumbPtrTraitsIS8_EEEENS_19ViolationReportTypeE) +STUB( + "YacvHG2ev-A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEC1Ev) +STUB( + "YagGehbdS+k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEED1Ev) +STUB("YagmyQZqWmQ", _ZN3sce7Toolkit2NP2V210Tournament12MatchDetailsaSERKS4_) +STUB("Yai3o0wsM2I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEE6insertENS2_13ConstIteratorIS4_EERKS4_RS7_) +STUB( + "Yan1mQfy8LI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE21intrusive_ptr_add_refEPS9_) +STUB("Yaru8F4P0Uc", _ZN7WebCore8SVGNames13fill_ruleAttrE) +STUB("Yarxt1LHaf0", cairo_region_reference) +STUB("Yau1o4fyQYE", WKPreferencesSetCaptureVideoInUIProcessEnabled) +STUB("Yav2yCjCam8", _ZN7WebCore18JSHTMLImageElement9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("Yb60K7BST48", scePlayGoDialogUpdateStatus) +STUB("YbA1lxdbmeo", mono_aot_Sce_Vsh_DiscPlayerunwind_info) +STUB("YbAWzqWWsRo", sceUserServiceGetVoiceAgentEnableByButton) +STUB("YbAfwT8fO7Q", sceSysUtilSendSystemNotificationWithUserId) +STUB("YbAunrti+54", __sys_dl_get_info) +STUB( + "YbC4rs5X6wY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB("YbCO38BOOl4", sceSaveDataCopy5) +STUB("YbCsT3t70Qw", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanityD2Ev) +STUB("YbDoF9zexZU", _ZN3sce3pss5orbis9framework11PsmCallListC2Ev) +STUB("YbG9PpCoMm8", WKPageExecuteCommand) +STUB( + "YbGonTMtVZ4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEmmEi) +STUB("YbMzKrEB2mA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEppEv) +STUB( + "YbNgVcWS-VI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE7popBackEv) +STUB("YbTz0Bzaw64", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_20ChallengeRecvDetailsEE7addressERS3_) +STUB("YbVlQLd0iss", _ZN7WebCore8Document9adoptNodeERNS_4NodeE) +STUB( + "YbYzVhukbf8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEppEi) +STUB( + "YbbiIcPZv0Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE10setContextEPNS2_10LibContextE) +STUB("YbcOra6CSBU", YGNodeStyleSetMinWidthPercent) +STUB("YbjmTV+ax8o", _ZN7WebCore8Document13setVlinkColorERKN3WTF6StringE) +STUB( + "Ybm-stChuCI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEeqERKS9_) +STUB("YbpYrmLGLeA", mono_method_get_marshal_info) +STUB("Ybqebr7v8-Y", mono_profiler_install_module) +STUB("YbrBOnqF1Og", _ZN3sce7Toolkit2NP2V28Matching7Request20SetInitConfigurationC1Ev) +STUB("Ybu6AxV6S0o", sceNpIsPlusMember) +STUB("Ybuid-3-Kbs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEEneERKS7_) +STUB( + "YbvDL+g8qUA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationPropertiesC2EPNS1_6Common10LibContextE) +STUB("YbwxxrfPW10", _ZN9Inspector29SupplementalBackendDispatcherD2Ev) +STUB( + "YbzB+2Ttkks", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEEC2ERSA_) +STUB( + "Ybzq9H9MkTU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEC2Ev) +STUB("Yc+qj4TIEY0", _ZNK3sce2np5Mutex6IsInitEv) +STUB("Yc2gZRtDeNQ", _ZNSt13basic_filebufIcSt11char_traitsIcEED1Ev) +STUB("Yc3uVa39hZg", _Z38sceGpuDebuggerGetEnabledExceptionsMaskPKN3sce3Gnm16VsStageRegistersEPj) +STUB( + "Yc7MS15t82U", + _ZN7WebCore14SecurityPolicy22generateReferrerHeaderENS_14ReferrerPolicyERKN3WTF3URLERKNS2_6StringE) +STUB("Yc7QgK7fWws", _ZThn664_N7WebCore24CoordinatedGraphicsLayer10removeTileEj) +STUB( + "Yc96yUZp-sU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEneERKS9_) +STUB("Yc9WoO8O2TI", _ZN7WebCore18TextureMapperLayer5paintEv) +STUB("YcA1SgtiPb4", _ZN7WebCore18PluginInfoProvider10removePageERNS_4PageE) +STUB("YcBWqBAB1-w", _ZN3JSC17JSAPIGlobalObject6s_infoE) +STUB("YcF7lrUfoFM", _ZN3JSC9JSPromise7resolveERNS_14JSGlobalObjectENS_7JSValueE) +STUB("YcFInIJiqng", _ZN3sce7Toolkit2NP2V212ActivityFeed14PlayedWithFeed8deepCopyERKS4_) +STUB( + "YcGXsxQuXSY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEEaSERKSA_) +STUB("YcHmxsv-3cM", utrie_close_67) +STUB("YcJlolMfV0k", ASN1_STRING_data) +STUB("YcMKsqoMBtg", _ZN3sce2np10NpOnlineIdD2Ev) +STUB("YcPE86KxxOg", __asan_report_store1_noabort) +STUB("YcPHbV+6v3U", mono_aot_Sce_Vsh_MimeTypeunbox_trampoline_addresses) +STUB( + "YcRa5MhiS4E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEEC2EPS8_PNS2_10LibContextE) +STUB( + "YcUMjzAZ0x0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEED1Ev) +STUB("YceLk3aN+vs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEEC2EPS6_) +STUB( + "YcfBQO2JJKY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEixEm) +STUB( + "Yckqq4Kfdqc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEEcvbEv) +STUB("YclEY7vN9-k", WKPreferencesSetCrossOriginWindowPolicyEnabled) +STUB("YcqsT1LrHKc", _ZN3sce7Toolkit2NP2V211SharedMedia6VideosC1ERKS4_) +STUB("YcsTWpdaG28", _ZNK9Inspector14FrontendRouter13frontendCountEv) +STUB("YcsyHbZQBKY", _ZN7WebCore14JSNamedNodeMap9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB( + "YcuIUdituxo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE3endEv) +STUB("Ycun7TYB2+Q", sceUpsrvUpdateSetEulaAccept) +STUB("Yd+0HvbK+nc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEEC1EPS6_) +STUB( + "Yd+FzGZ5llY", + _ZN7WebCore9unionRectERKN3WTF6VectorINS_9FloatRectELm0ENS0_15CrashOnOverflowELm16ENS0_10FastMallocEEE) +STUB( + "Yd-Ntv9rrYM", + _ZN3sce2Np9CppWebApi12Leaderboards2V122GetRankingResponseBody22setLastUpdatedDateTimeERK10SceRtcTick) +STUB("Yd1Rm-5Quo0", _ZNK7WebCore11MediaPlayer20renderingModeChangedEv) +STUB( + "Yd1XLjJWKeg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEEptEv) +STUB("Yd1vQ0mSqXk", _ZN3JSC7Symbols43promiseReactionJobWithoutPromisePrivateNameE) +STUB("Yd2+uKrebJk", _ZTVN7WebCore11DisplayList4ClipE) +STUB( + "Yd2a19nxaS4", + _ZN3sce2Np9CppWebApi14SessionManager2V143UsersPlayerSessionsInvitationForReadFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_36UsersPlayerSessionsInvitationForReadEEE) +STUB("Yd2qctOAlqs", _ZN3sce7Toolkit2NP2V24Auth7Request11GetAuthCode14MAX_SIZE_SCOPEE) +STUB("Yd7+kmxOY2I", _ZN3sce7Toolkit2NP2V27Session12Notification18InvitationReceivedC1ERKS5_) +STUB("Yd7Iz7EAL6c", _ZN7WebCore21DiagnosticLoggingKeys24visibleAndActiveStateKeyEv) +STUB("Yd7V7lM4bSA", _ZN3sce2np11NpHttpTransD0Ev) +STUB("Yd7vowOw4fc", _ZN7WebCore8FormData6createEv) +STUB("YdAW3oCHB1M", _ZN9Inspector21createScriptArgumentsEPN3JSC14JSGlobalObjectEPNS0_9CallFrameEj) +STUB("YdCpVgspHzg", mono_aot_System_Runtime_Serializationunbox_trampolines_end) +STUB("YdCuQ3hqmB4", _ZN3sce7Toolkit2NP9Interface21registerEventCallbackEPFvRKNS1_5EventEPvES6_) +STUB("YdGQOl6bp50", glInsertEventMarkerColorSCE) +STUB("YdHDp5fhB+c", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku8fromJsonERKNS_4Json5ValueE) +STUB("YdJfGJ4kryk", WTFInitializeLogChannelStatesFromString) +STUB( + "YdOv0ED76ik", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE3endEv) +STUB("YdVdG4cbaF8", uldn_scriptDisplayName_67) +STUB("YdW+3r2WgQg", uregion_getContainingRegionOfType_67) +STUB("YdWuo5eSCXo", scePlayReadyCdmiSetServerCertificate) +STUB("YdZfEZfRnPk", scePthreadAttrSetscope) +STUB( + "YdcttGdKRUY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE7reserveEi) +STUB("YdgAk0w9rGY", sceAvSettingSetDispclk) +STUB( + "YdiaUBMykNQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("Ydj2Za40atI", _ZN15AbstractStorage17DailymotionFolder4OpenENS_8ItemTypeE) +STUB( + "YdjVTOPbdhE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEeqERKS9_) +STUB( + "Ydk0DEVA8qU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEC1EPKS8_) +STUB("YdnEIPIgM98", WKPageGetAddsVisitedLinks) +STUB( + "YdumqbZ7Ku8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEC2ERS7_) +STUB("Ye20uNnlglA", abs) +STUB("Ye8GdYv6eQg", _ZNK7WebCore17CSSPrimitiveValue14getStringValueEv) +STUB("YeBP0Rja7vc", _ZTSSt12future_error) +STUB("YeBSNVAELe4", sceAudioInSetConnections) +STUB( + "YeDBQJ9XxA8", + _ZN7WebCore11DisplayList10DrawGlyphsC2ERKNS_4FontEON3WTF6VectorItLm128ENS5_15CrashOnOverflowELm16ENS5_10FastMallocEEEONS6_INS_9FloatSizeELm128ES7_Lm16ES8_EERKNS_10FloatPointERKSB_NS_17FontSmoothingModeE) +STUB("YeHLL34DV+w", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110TaskStatusEEppEv) +STUB("YeJl6yDlhW0", sceVoiceWriteToIPort) +STUB("YeJzOqHApiU", sceNpManagerUtilConvertOldAuthServerError) +STUB( + "YeKsA0A07Pw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEE3getEv) +STUB( + "YeKwhbQLifk", + _ZN7WebCore22EmptyFrameLoaderClient33convertMainResourceLoadToDownloadEPNS_14DocumentLoaderEN3PAL9SessionIDERKNS_15ResourceRequestERKNS_16ResourceResponseE) +STUB( + "YeL8EqOZCjY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEC2Ev) +STUB( + "YeLBVNphENo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "YeP2FeJRNAk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEC2ERKS7_) +STUB( + "YePSKVfPwzo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEaSERS7_) +STUB( + "YePwk0cK2Ts", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEE3getEv) +STUB("YeQtFtidPNw", _ZN3sce7Toolkit2NP2V212ActivityFeed15PlayedWithStoryC1ERKS4_) +STUB("YeRQAi2qrzg", mono_domain_create) +STUB("YeT4PnXu+qQ", _ZN3sce7Toolkit2NP2V212ActivityFeed15PlayedWithStory12DATE_MAX_LENE) +STUB("YeU23Szo3BM", sceKernelGetAllowedSdkVersionOnSystem) +STUB("YebCuo-gjZg", _ZTVN7WebCore11DisplayList18DrawFocusRingRectsE) +STUB("YebyCbJ7X7k", _ZN3WTF14setCloseOnExecEi) +STUB("Yep4Dx-41IE", WKContextConfigurationCopyNetworkProcessPath) +STUB( + "YeqJNGlCqao", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Console14ConsoleMessage4TypeEEESt8optionalIT_ERKN3WTF6StringE) +STUB( + "YesXcUSEDwc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEC1Ev) +STUB("YeskHF2qK4I", _ZNK3WTF3URL15protocolIsAboutEv) +STUB("YevpfNvVB5M", _ZN3NTF17URLRequestHttpJob10initializeEb) +STUB( + "Yf-AOCxSZOw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("Yf-qgO6lh90", _ZN9Inspector21InspectorRuntimeAgent18releaseObjectGroupERN3WTF6StringERKS2_) +STUB("Yf3CvohSksE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEED1Ev) +STUB( + "Yf4EyoxJaPM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEE11get_deleterEv) +STUB("YfAbM5dIAQY", _ZN7WebCore8Document26pageSizeAndMarginsInPixelsEiRNS_7IntSizeERiS3_S3_S3_) +STUB("YfDgKz5SolU", sceUserServiceGetMicLevel) +STUB("YfJUGNPkbK4", vprintf_s) +STUB("YfMvfuNG2oc", _ZN3sce2Np9CppWebApi13InGameCatalog2V525ContentInteractiveElementD2Ev) +STUB("YfPgu2Oc0K0", _ZN7WebCore9HTMLNames18referrerpolicyAttrE) +STUB( + "YfQCorXoGHk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEC1EPKS8_) +STUB("YfQfjW5T1Pk", mono_btls_x509_verify_param_peek_param) +STUB("YfTBBU5nONQ", sceFiosArchiveUnmount) +STUB("YfUi1bomEh0", _ZN3WTF10TextStreamlsEm) +STUB("YfaTfjLOpSk", _ZN7WebCore28DisplayRefreshMonitorManager17displayWasUpdatedEj) +STUB("YfaXPnc8PJE", sceHttp2WebSocketSetPingInterval) +STUB("YfbPTJlWnYg", _ZN3sce7Toolkit2NP2V212ActivityFeed13ButtonCaptionD1Ev) +STUB("YfcbvdB7hdc", mono_counters_sample) +STUB( + "YfdrJI-gpEY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEmmEi) +STUB("Yfg+pPAfcdU", _ZNSt12out_of_rangeC1EPKc) +STUB("YfglnZg08ys", _ZN15AbstractStorage14FacebookFolderD2Ev) +STUB( + "Yfm4pcMyKYs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEmmEi) +STUB( + "YfmMObh+vxM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEC2Ev) +STUB("YfmpW719rMo", sceNpMatching2CreateContext) +STUB("Yfmq1uZM1ao", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEEdeEv) +STUB("Yfw63FVJgtU", _ZNK3sce4Json6String7compareEPKc) +STUB("YfxhYzF8LvU", Java_com_sony_bdjstack_core_AppCacheManager_isCached) +STUB( + "Yfxs6HpCaTE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEE5resetEPS9_) +STUB("Yfyvk-GSa1w", + _ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse11setRelationERKNS3_8RelationE) +STUB("Yg0OOTI0oPM", sceAudioOut2Terminate) +STUB( + "Yg8Fjc2MpRM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot9unsetsortEv) +STUB("YgE0K2soT1I", _ZNK7WebCore23ScaleTransformOperation5cloneEv) +STUB("YgJ-5D5sx+Y", Java_sun_misc_Signal_handle0) +STUB("YgSqWYwH5as", mono_aot_Sce_Vsh_EventAppjit_code_start) +STUB("YgXgKcVpo44", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEC1Ev) +STUB("YgZ6qvFH3QI", vwscanf_s) +STUB("YgaMfJaW8YM", + _ZN9Inspector22InspectorDebuggerAgent29willDestroyFrontendAndBackendENS_16DisconnectReasonE) +STUB("Ygf+YrOfu+k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEEmmEv) +STUB("YgfU8FqE-38", X509_free) +STUB("YgiPlFkysS0", ucnv_extSimpleMatchFromU_67) +STUB( + "Ygik9PIetuQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEEaSERSA_) +STUB("YglrcQaNfds", _ZTIN10__cxxabiv119__pointer_type_infoE) +STUB( + "YgpDIRn1DV0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEC2Ev) +STUB( + "YgpK9o9Hf-w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "Ygt8XFainaQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEC1Ev) +STUB("YgtiUVDaL9Q", il2cpp_class_from_il2cpp_type) +STUB( + "Yh-w4nQauRc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEeqERKS9_) +STUB( + "Yh0UdLIlDv4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEEC2ERSA_) +STUB( + "Yh1z7ZydHu0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEdeEv) +STUB("Yh3Q1rMIGXo", _ZN7WebCore11SimpleRangeC1EONS_13BoundaryPointES2_) +STUB("Yh5cbgGxiC4", _ZN3sce2Np9CppWebApi13InGameCatalog2V513ContentRatingD1Ev) +STUB("Yh74PZYZi9o", sceFsWsMount) +STUB("Yh7VOBot0BE", _ZN3sce2Np9CppWebApi14IdentityMapper2V333PsnWebError_error_missingElementsD1Ev) +STUB("YhDksFtpQso", sceMbusAttachToApplicationByPid) +STUB( + "YhQFJ+LsvM4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEEaSERKSA_) +STUB("YhTMAf3GhyA", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEEmmEv) +STUB("YhaOeniKcoA", _Fetch_xor_8) +STUB( + "YhcVF+VIFjo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEE11get_deleterEv) +STUB("Yhij947AtOU", + _ZN3sce2Np9CppWebApi7Matches2V119ResponseTeamResultsC1EPNS1_6Common10LibContextE) +STUB( + "YhjaFh3BiUA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEEptEv) +STUB("Yhk3KkximpQ", rgctx_fetch_trampoline_mrgctx_111_p) +STUB("Yhkow5Kjyis", _ZN12video_parser13cVideoMetaVWG16getEpisodeNumberEPi) +STUB("YhoWU6ouoCw", mono_get_jit_info_from_method) +STUB("Yhosbd4E8gg", + _ZN7WebCore28convertToIntegerEnforceRangeIiEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB("Yhsl2skEVls", _ZN7WebCore5ColorC1EffffNS_10ColorSpaceE) +STUB( + "YhtiquNFc9o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEEcvbEv) +STUB( + "YhuhpGJ1YiM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "YhvMUL1LmUk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEixEm) +STUB( + "Yi-YrYuxGRc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEppEi) +STUB("Yi0iEMTmIyw", _ZN3WTF15BinarySemaphore4waitENS_24TimeWithDynamicClockTypeE) +STUB( + "Yi1y+fLwmNk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEC1EPS8_) +STUB("Yi94JVFNrho", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10ContainersEE3getEv) +STUB( + "Yi9pxhGrUXM", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setInteger1ERKi) +STUB("YiBUtz-pGkc", sceHttp2Term) +STUB("YiE2nozhi8w", mono_lls_get_hazardous_pointer_with_mask) +STUB("YiHujOG9vXY", _sceUltWaitingQueueResourcePoolCreate) +STUB("YiIVBPLxmfE", sceHmdInternalIsGameVr2d) +STUB("YiMsfjNOUAQ", zrule_close_67) +STUB("YiOQCZ7IGLM", rgctx_fetch_trampoline_rgctx_85) +STUB( + "YiRdkk5H-1A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("YiUqZpp24Qg", _ZThn24_N7WebCore14XMLHttpRequestD1Ev) +STUB( + "YiVRIOQCEOw", + _ZN3JSC7JSProxy18getOwnPropertySlotEPNS_8JSObjectEPNS_9ExecStateENS_12PropertyNameERNS_12PropertySlotE) +STUB("YiYimCgDSPI", monoeg_g_string_new) +STUB("YibE-6u4Qrw", _ZThn64_N7WebCore9FrameView19willStartLiveResizeEv) +STUB("YicYaTlSOdo", _ZTVN9Inspector34DOMStorageBackendDispatcherHandlerE) +STUB("YidCQL9G1y4", monoeg_g_ptr_array_free) +STUB( + "Yie6QxCbUgU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEC1ERKS7_) +STUB( + "YifL0k2RPHE", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEEiRNS2_10LibContextEPT_m) +STUB("Yig0tJzlpwk", _ZN3JSC10Identifier3addERNS_2VMEPKc) +STUB("YikqzdTOmxY", sceKernelAllocateDirectMemory2) +STUB("YipeIUTbh6I", _ZN3sce2Np9CppWebApi6Common6VectorIjE5eraseENS2_8IteratorIjEERS6_) +STUB("Yit9ugSr8Bc", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11ProductInfoEEeqERKS4_) +STUB("YitddoVuGZk", _Z38sceGpuDebuggerGetEnabledExceptionsMaskPKN3sce3Gnm16CsStageRegistersEPj) +STUB("YitkgAxTaAg", mono_threads_detach_coop) +STUB("Yj4BFxzHSoE", _ZN3JSC14constructArrayEPNS_9ExecStateEPNS_9StructureERKNS_7ArgListE) +STUB( + "Yj9jH8Yegio", + _ZN8meta_gen11MsvPromoter32setKeyValue_TBLAVC_ParentalLevelENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB( + "YjBtX1M-6R4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEC1EPKS8_) +STUB("YjElYV8fhZI", _ZN3sce7Toolkit2NP2V29Challenge9ChallengeD2Ev) +STUB( + "YjIiV1pYtcs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEE11release_refEv) +STUB("YjNx9Hiq5Tw", _ZN7WebCore8JSPath2D15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("YjO9NQNEiIc", + _ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBodyC2EPNS1_6Common10LibContextE) +STUB( + "YjQOzsrrBa0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEC1Ev) +STUB("YjT8GrH5bsM", glFramebufferRenderbuffer) +STUB("YjbpxXpi6Zk", atanh) +STUB( + "YjfwWXnKCBU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEmmEv) +STUB( + "YjiCAunLHjI", + _ZN3JSC9Structure31toCacheableDictionaryTransitionERNS_2VMEPS0_PNS_41DeferredStructureTransitionWatchpointFireE) +STUB("YjiJBmuPTRk", _ZN3sce7Toolkit2NP2V28Commerce7Request22GetServiceEntitlementsD2Ev) +STUB( + "YjioD1vSiNQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEC2EPS8_) +STUB("YjitVZx1Dkg", _ZN3WTF22protocolIsInHTTPFamilyENS_10StringViewE) +STUB("Yjkpnrnkgpw", sceVnaGetWakeupPhraseInfo) +STUB( + "YjppAuWjbWU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEppEi) +STUB("Yjsz4dSvLyY", getEventHandlerByProtocolNumber) +STUB("YjvIvhoM3fI", uhash_iputi_67) +STUB("Yk+amLyVb9M", _ZN3sce7Toolkit2NP2V27Session12Notification18InvitationReceivedD1Ev) +STUB("Yk-phCiCkBI", _ZTVSt15basic_streambufIwSt11char_traitsIwEE) +STUB( + "Yk0XZtys6xw", + _ZN7WebCore17HTMLPlugInElement14setReplacementENS_20RenderEmbeddedObject26PluginUnavailabilityReasonERKN3WTF6StringE) +STUB("Yk0ofesYP1U", glVertexAttribPointer) +STUB("Yk2qJg3VRBY", WKContextClearCurrentModifierStateForTesting) +STUB( + "Yk6gnzKBfOk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEmmEi) +STUB("Yk8gb8RbaL8", _ZN3sce7Toolkit2NP2V211UserProfile7Request13GetNpProfiles16SIZE_ACCOUNT_IDSE) +STUB( + "YkFUQ5ae4TU", + _ZN7WebCore25MediaPlayerFactorySupport23callRegisterMediaEngineEPFvPFvOSt10unique_ptrINS_18MediaPlayerFactoryESt14default_deleteIS2_EEEE) +STUB("YkGOXpJEtO8", pthread_get_user_context_np) +STUB("YkNgCzs53bI", _ZN3WTF17AtomicStringTableD2Ev) +STUB("YkOQtmWZtBI", _ZN12video_parser18cMp4FFLHndlManager12lockPlayHndlEv) +STUB("YkQRuDa7tfo", + _ZN7WebCore8Document28setOverrideViewportArgumentsERKSt8optionalINS_17ViewportArgumentsEE) +STUB("YkTPIi0jZ6E", _ZNK3sce2Np9CppWebApi15Personalization2V15Error9codeIsSetEv) +STUB( + "YkXInh+sJ80", + _ZN7WebCore15GraphicsContext15drawImageBufferERNS_11ImageBufferERKNS_10FloatPointERKNS_20ImagePaintingOptionsE) +STUB("YkayyuR6HvI", sceFiosIsIdle) +STUB("YkdhyjfsYA8", _ZN7WebCore9DOMWindow9navigatorEv) +STUB("YkdlRu0VagU", _ZN3JSC11ProxyObject18structureForTargetEPNS_14JSGlobalObjectENS_7JSValueE) +STUB( + "YkfzMya7MHc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEC2EPNS2_10LibContextE) +STUB("YkgkKjq1zjk", WKBundleRemoveOriginAccessAllowListEntry) +STUB( + "YkgnvsXMUxk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEEC2Ev) +STUB( + "YkteMJWChnI", + _ZN9Inspector24NetworkBackendDispatcher25interceptRequestWithErrorElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("YkwlupG-S4E", sceKernelAvailableToolMemorySize) +STUB("YkyOTEcu7vA", curl_global_cleanup) +STUB("Ykz6x0VjQ8A", _ZN7WebCore9HTMLNames17aria_rowindexAttrE) +STUB("Yl10kSufa5k", _ZNSt10filesystem12_Current_setEPKc) +STUB("Yl4RW+LKQLM", rgctx_fetch_trampoline_rgctx_124_p) +STUB("Yl50SAiVOW8", _ZN3sce7Toolkit2NP2V26Friend12BlockedUsersC2ERKS4_) +STUB( + "Yl5aaPAWF3g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "Yl6rjY-jL7Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEE7add_refEv) +STUB("Yl6wPutGcJ8", _ZN3sce7Toolkit2NP2V28Matching7Request15SendRoomMessageD2Ev) +STUB( + "YlCLavw9FhQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEE3getEv) +STUB("YlFCMjbyzh8", sceCamera2GetFrameData) +STUB( + "YlIqCUNeTbE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEED2Ev) +STUB( + "YlJBsXs-sj0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE3endEv) +STUB("YlKCkfJL+Y8", sceFiosFileRead) +STUB( + "YlM3cUmaP-0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("YlNpMDg4Y6M", _ZTVN7WebCore10ISOFullBoxE) +STUB("YlQ3gfC7fqM", WKPageGroupGetUserContentController) +STUB( + "YlUJhqoo2lQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEppEi) +STUB( + "YlVfTAH7S9E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEC1Ev) +STUB( + "YlVzbem6Sjs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE7popBackEv) +STUB("YlWUOR7xruE", scePssPadrGetOutputIsRunning) +STUB("YlXvV94CYBU", _ZN3JSC7Symbols15callPrivateNameE) +STUB("YlYjqWNEo1Y", mono_aot_Sce_Vsh_DbRecoveryUtilityWrapperjit_code_start) +STUB("Yli5jvV4dDM", utrie2_enum_67) +STUB( + "YliBZeIV+R0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEppEi) +STUB( + "YloUmwLndaU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEC1Ev) +STUB( + "YlpnKm99h3Q", + _ZN3sce7Toolkit2NP2V211UserProfile13getNpProfilesERKNS3_7Request13GetNpProfilesEPNS2_4Core8ResponseINS3_10NpProfilesEEE) +STUB( + "Ylq5CmRIHuY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEC2Ev) +STUB( + "YlszQc229DM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEED2Ev) +STUB( + "YltcJp1lcTY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEEcvbEv) +STUB( + "YlwDCeSU5yY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "YlxHxqm3fsM", + _ZN9Inspector18InjectedScriptBase12makeEvalCallERN3WTF6StringERN10Deprecated18ScriptFunctionCallERNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISA_EEEERNS1_8OptionalIbEERNSF_IiEE) +STUB( + "YlznD+oghZo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEED2Ev) +STUB( + "Ym1Okbygex0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE3endEv) +STUB( + "Ym2svBXQmQk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE5beginEv) +STUB( + "Ym2wGMBtYkU", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayeraSERS5_) +STUB( + "YmCtbWb5s+o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("YmGU-+-hmIs", _ZNK7WebCore16HTMLInputElement12defaultValueEv) +STUB("YmH4q3lpJG8", + _ZN3sce2Np9CppWebApi12Leaderboards2V127RecordLargeDataResponseBodyC1EPNS1_6Common10LibContextE) +STUB( + "YmJC4Kok7pU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEE11get_deleterEv) +STUB("YmJdjzkRWN8", _ZN3sce7Toolkit2NP15AppSTLAllocatorI13SceNpOnlineIdEC1Ev) +STUB("YmOVGwSJmzk", _ZN3sce2np18MemoryStreamWriterD2Ev) +STUB("YmPOoqEN3yU", _ZN3JSC13iteratorCloseEPNS_14JSGlobalObjectENS_15IterationRecordE) +STUB("YmQ4ESG3ato", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_15ActivityStoryIdEE3getEv) +STUB( + "YmQlwyjGphM", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB( + "YmWC49EL9PE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEC2Ev) +STUB("YmXPFhglcqk", _ZN7WebCore8SVGNames9beginAttrE) +STUB( + "Ymfyb1lk1Dk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEEC1Ev) +STUB("YmmFiEoegko", sceUserServiceGetGlsCamCrop) +STUB("Ymx-XHIzU7o", _ZN7WebCore9HTMLNames6supTagE) +STUB("Ymyy1HSSJLQ", sceMouseConnectPort) +STUB( + "Yn-RLKSQLKQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB( + "Yn4XBrVXlB8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("Yn4fNeuLEHQ", _ZN3WTF10TextStreamlsEPKc) +STUB("Yn5766bs1xw", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V19JoinStateEEC2Ev) +STUB( + "Yn7u-Rh-m-c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEEC1ERSA_) +STUB("Yn8KT+VTZaE", sceVideoOutColorSpaceConversionSettingsSetSdrToHdrConversion_) +STUB("YnBnZpr3UJg", sceUserServiceSetGlsCameraEliminationLevel) +STUB( + "YnFlCzFqmJ0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEEC2Ev) +STUB("YnFogi5vqFs", _ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead12setAccountIdERKm) +STUB("YnFtfNT7s4U", ShowNotification) +STUB( + "YnTzpQk3qP8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEC2Ev) +STUB( + "YnWHtpLYMYI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEplEm) +STUB("YnXM2saZkl4", sceUserServiceGetShareStatus) +STUB("YnZOHtC8PgY", _ZN3JSC21MarkedJSValueRefArrayC2EP15OpaqueJSContextj) +STUB("YnaGu1jVz3o", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEEeqERKS5_) +STUB("YndgXqQVV7c", scePadReadState) +STUB( + "Yng46Hqtp8Y", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsC2EPNS1_6Common10LibContextE) +STUB("Ynhcvkely0A", mono_aot_Sce_Vsh_Np_Managerjit_code_start) +STUB("Ynq1hrw2xlg", WKPreferencesUseLegacyTextAlignPositionedElementBehavior) +STUB("YnsWU+BLTjw", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadDataaSERS5_) +STUB("YntB2JRPuNo", mono_btls_ssl_accept) +STUB("YnvnsdpXc4g", FTC_Manager_LookupFace) +STUB( + "Yo+nWl2oaHw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE3endEv) +STUB("Yo4iw4JYCTI", glGetShaderInfoLog) +STUB( + "Yo6Jg3xXYSU", + _ZN3sce2Np9CppWebApi11UserProfile2V113AvatarFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_6AvatarEEE) +STUB("YoFT-gqc8t4", Java_java_awt_GnmGraphics_nativeDrawPolygon) +STUB("YoHk3+LJ0PY", _ZTSPg) +STUB( + "YoJQmHFinrw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "YoJgcD5h0MU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE8capacityEv) +STUB("YoKfppru+LU", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEEC2Ev) +STUB( + "YoOEVrUsceA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi42ParameterWithBinaryRequestBodyToUploadData9terminateEv) +STUB( + "YoY5c+p-tfU", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions18unsetincludeFieldsEv) +STUB( + "YodYZ9ZTVwM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEED1Ev) +STUB("Yohe0MMDfj0", sceNpAtomicDec32) +STUB( + "YohmO2CVeP8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEED2Ev) +STUB( + "Yok32eiH+mM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEE11release_refEv) +STUB("Yokr+lD47Uw", mono_aot_Sce_Vsh_MorpheusUpdWrapperplt) +STUB("YomEss3aDfo", _ZN3sce7Toolkit2NP2V27Session10InvitationD2Ev) +STUB("YomKnVV064k", _ZN7WebCore8SVGNames10formatAttrE) +STUB("YosBu4gRl9M", _ZN3sce2Np9CppWebApi14SessionManager2V113ErrorResponseD2Ev) +STUB("YotXTJXOYeM", ubidi_getMirror_67) +STUB("YozFcQLcUS4", WKDownloadGetResumeData) +STUB("Yp+IAftgVe4", u_strToLower_67) +STUB("Yp2yK5YXb78", sceNpServiceChecker2IntGetServiceAvailabilityA) +STUB("Yp5C5f1R8Dc", _ZN3sce7Toolkit2NP2V211SharedMedia7Request13GetBroadcastsC2Ev) +STUB( + "Yp6I-jrfUTA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEmmEv) +STUB( + "Yp6OYh8yc70", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB("Yp89fv3xmKU", _ZN9Inspector28PageBackendDispatcherHandlerD2Ev) +STUB( + "YpCIf1gJMgc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE7popBackEv) +STUB("YpDwgqoKMaE", sceNpManagerIntDeclareSystemProcess) +STUB("YpKoMGWeVWM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEEmmEi) +STUB("YpQGFhuHHBA", _ZNK7WebCore11ImageBuffer7contextEv) +STUB( + "YpT+8LOTYi4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEptEv) +STUB( + "YpWmBkAKKVs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEE7add_refEv) +STUB("YpYKjVZxJ+w", u_memcpy_67) +STUB( + "Ypa9PHHceSA", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "Ypb7H3QAeoY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("YpdA8Y8Dvas", mono_aot_Sce_Vsh_SQLiteAuxplt_end) +STUB("YpeJJ7DL1Zo", CommerceDialogBrowseProduct) +STUB("YpkGsMXP3ew", sceRazorCpuPopMarker) +STUB("YpkcWVeUHN0", _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError7getCodeEv) +STUB("YpoLyQV6oAw", _ZN4IPMI4impl10ServerImpl15getEventHandlerEv) +STUB( + "YpragSBxfxc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEEptEv) +STUB("YpxR8CqGMIM", FTA_Support_Format_TrueType) +STUB( + "Ypzc2uMZO+8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEE11release_refEv) +STUB("Yq0zOH7YNOM", scePadSetVibrationTriggerEffectWeakWhileEmbeddedMicInUse) +STUB( + "Yq3pln8SWBU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEmmEv) +STUB( + "Yq4Lj0my3NY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEEdeEv) +STUB("Yq9bfUQ0uJg", sceAudio3dPortSetAttribute) +STUB("YqBJVG-Jr1Q", mono_image_open_from_data) +STUB("YqDiZtP2g-U", _ZN3sce7Toolkit2NP11MessageDataC1Ev) +STUB("YqGRE0nOcNI", _ZN7WebCore19InspectorController25evaluateForTestInFrontendERKN3WTF6StringE) +STUB( + "YqIWm2oUfsE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEED1Ev) +STUB("YqMS-iAjFY8", _ZThn8_N3sce2np6HandleD0Ev) +STUB("YqNKLjnR1sI", sceCesRefersUcsProfileIso8859_10) +STUB( + "YqVsQuf9FOs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEdeEv) +STUB("YqXggHD3mF0", _ZN7WebCore18ScrollingStateTree10attachNodeENS_17ScrollingNodeTypeEmm) +STUB("YqdmXu8EOdA", __tinytens_D2A) +STUB( + "YqgKP-kkZPg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEE5resetEPS9_) +STUB("YqiQrQV1Wbk", WKDownloadGetWasUserInitiated) +STUB("YqpTtQZqe8w", _ZN3JSC7Symbols21charCodeAtPrivateNameE) +STUB("YqsEmmV8em0", _ZN6WebKit12ChildProcessC2Ev) +STUB("Yqu2USTatMc", _ZStL4wfin) +STUB( + "YqvULaLUSH8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "YqzKm1Mcf2A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEppEv) +STUB( + "Yr-pGq4c8S0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("Yr3UeApLWTY", sceNetConfigWlanAdhocGetWakeOnWlanInfo) +STUB("Yr4nbNs9Zn8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEEC2Ev) +STUB( + "Yr63r+2r3HM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("YrDCRdbOfOQ", _ZN9pathscale29set_use_thread_local_handlersEb) +STUB("YrDZBurK+Fc", _ZN7WebCore27ContentSecurityPolicyClientaSERKS0_) +STUB("YrEOsOmcveQ", WKPreferencesGetFileAccessFromFileURLsAllowed) +STUB("YrL-1y6vfyo", sceLibcInternalMemoryGetWakeAddr) +STUB("YrP3Jeic2nk", _ZN3sce7Toolkit2NP2V28Commerce7Request26SetPsStoreIconDisplayStateC1Ev) +STUB("YrU5j4ZL07Q", sceFontGraphicsAdjustGradientSpread) +STUB("YrWX+DhPHQY", sceHttp2SetSslCallback) +STUB("YrYO5bTIPqI", _ZTSSt7codecvtIwc9_MbstatetE) +STUB("YrYaxLTSTO8", WKPreferencesCopyDefaultTextEncodingName) +STUB( + "YrYxqAHznlc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEdeEv) +STUB("Yrht530r9FI", sceRnpsAppMgrRemoveApp) +STUB("YrkT4ZY7oIQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEED2Ev) +STUB("YrnA0yqCBqM", _ZN7WebCore14SecurityOrigin6createERKNS_3URLE) +STUB("YroDb0zHorQ", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEED1Ev) +STUB( + "Yrp0HpBpXqE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE5beginEv) +STUB("Yrwoq3bti3c", sceKernelIsPs4Process) +STUB( + "Ys+0U+wAthM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEEC1ERKSA_) +STUB("Ys6EwBR4gzY", GCC_except_table312) +STUB("Ys9wh-pfoNA", _ZN7WebCore21DiagnosticLoggingKeys15networkCacheKeyEv) +STUB("YsAvKc3I-cA", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_26EventInformationListDetailEED1Ev) +STUB( + "YsCHQFvn3Vs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEC1EPS8_) +STUB( + "YsDe30Lq1t4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE8pushBackERKS8_) +STUB( + "YsJoje1pipY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEppEv) +STUB("YsLBZ7qPu20", sceSpSelect) +STUB("YsNLENNlNao", __libunwind_Unwind_FindEnclosingFunction) +STUB("YsPb3QeiCw4", il2cpp_monitor_try_wait) +STUB( + "YsQLb30wp9A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "YsQfnAJ7xqk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEE11get_deleterEv) +STUB("YsRNfwMQmtQ", _ZN3WTF18FunctionDispatcherC2Ev) +STUB("YsTrACl0H9I", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE21intrusive_ptr_add_refEPS7_) +STUB("YsZuwZrJZlU", _ZN10__cxxabiv123__fundamental_type_infoD0Ev) +STUB( + "Ysbwg1uQTs4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEmmEi) +STUB("Ysd8hbJbqUs", Java_java_awt_GnmRobotHelper_doMouseActionNative) +STUB( + "YsdjXAq+X0g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEC1EPS8_) +STUB( + "YsfU7NeZ9sk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE4sizeEv) +STUB("YsgU0c71un0", + _ZN3sce2Np9CppWebApi7Matches2V120ResponseInGameRosterC2EPNS1_6Common10LibContextE) +STUB("YsiVd2KRHzg", _ZN3JSC11VMInspector14dumpCellMemoryEPNS_6JSCellE) +STUB("Ysk7EOQI9CA", _ZN3sce7Toolkit2NP2V27Session12SessionImageC2Ev) +STUB( + "Yskg+JQd7F4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE10setContextEPNS2_10LibContextE) +STUB("YssF41MWxCU", JSEvaluateScript) +STUB("YstNVTOl+Fw", + _ZN15AbstractStorage15FacebookStorageC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("YstfcFbhwvQ", _ZTIPi) +STUB( + "YsvZ1vPQfUU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("Yt01YIntxQY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEptEv) +STUB("Yt3xP1UTR1w", _ZN3JSC9JSPromise15rejectAsHandledEPNS_14JSGlobalObjectENS_7JSValueE) +STUB( + "Yt4cXjRKLTQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE5beginEv) +STUB( + "Yt4xd81WTJI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE5beginEv) +STUB("Yt7c7g1U7Go", sceNpPush2DeletePushContext) +STUB("YtAnCkTR0K4", sceNetCtlIsBandwidthManagementEnabledIpcInt) +STUB( + "YtCaCbuBg0w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEE11release_refEv) +STUB("YtDk7X3FF08", sceSystemServiceShowImposeMenuForPs2Emu) +STUB( + "YtH9tbUqTeQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBody6toJsonERNS_4Json5ValueEb) +STUB( + "YtRxHfNMW2U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "YtTOH99+FYU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEppEi) +STUB("YtTwZ3pa4aQ", sceNetCtlApAppStartWithRetry) +STUB("YtVUmLaXWJ4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE5clearEv) +STUB("YtWOayMJzMs", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus7setInfoEPKvm) +STUB( + "YtcO08OUMoM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEED1Ev) +STUB( + "Ytfg+pSUtwg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEixEm) +STUB("Ytgwwm4urNU", __ubsan_handle_divrem_overflow) +STUB( + "YthtFwVTv24", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEC1ERS7_) +STUB("YtmpBEu64nM", _ZN3sce7Toolkit2NP2V27Session7SessionC1Ev) +STUB("YtvLEI7uZRI", _ZN3sce2np9LocalFile4SyncEv) +STUB( + "YtwFIOTaJHE", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V333CommunicationRestrictionStatusApi44ParameterToGetCommunicationRestrictionStatusC2Ev) +STUB( + "YtxQAsS0+4s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEC2Ev) +STUB("Ytxk0PHZaWE", + _ZN3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponse15unsetNextOffsetEv) +STUB("YtzL-Rso9bk", _ZN3sce2np7HttpUri5BuildEPKS1_PcmPmj) +STUB("Yu+C0ogpzjI", _ZN3sce7Toolkit2NP2V28Matching7Request10CreateRoom24HIGHEST_DISPLAY_PRIORITYE) +STUB("Yu1gqhL0PRo", udata_getLength) +STUB("Yu1iUgPHM+w", sceHidControlGetJediState) +STUB("Yu2sKsYckH8", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_15ActivityStoryIdEEC2Ev) +STUB( + "Yu7L8JfU7Z4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("Yu7mmGCjSYM", FTA_Support_Format_WinFonts) +STUB("Yu9oXRVmTTo", FT_Set_Renderer) +STUB("YuH2FA7azqQ", sceSaveDataDialogTerminate) +STUB("YuIkCPN-ir8", _ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE5clearEv) +STUB( + "YuJpmFue0WQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("YuNQnIT-9LQ", GCC_except_table210) +STUB("YuOW3dDAKYc", sceHttpUriEscape) +STUB( + "YuOhuU+aX7I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("YuUcRhTYWMg", X509_NAME_oneline) +STUB("YuVzBCD92FY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEED1Ev) +STUB("YuZ2wCa1yNg", rgctx_fetch_trampoline_mrgctx_93_p) +STUB( + "YuZ5jR1s0lg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEE11release_refEv) +STUB("YudP-O6lyxM", + _Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm15PaSuPerfCounterE20SceRazorGpuBroadcast) +STUB("YudSGKQqqnI", _ZThn8_N3sce2np11NpHttpTransD0Ev) +STUB("Yudl4ZoriIQ", _GLOBAL__I_000102) +STUB( + "YufRufZDuZI", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeaders7setETagERKNS1_6Common6StringE) +STUB("YugYdFIYA+Q", mono_aot_Sce_Vsh_Webbrowser_XdbWrapperplt) +STUB("Yugsi8YLl28", __ubsan_handle_nonnull_return_v1) +STUB("YujMtLJPOok", WKWebsiteDataStoreClearAppBoundSession) +STUB("YuqlnFyrGgk", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_28AdditionalSessionInformationEE3getEv) +STUB("Yv0IsOYIZiA", sceBgftServiceIntDownloadStopTaskAll) +STUB( + "Yv34kAO9nuQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEE11get_deleterEv) +STUB( + "Yv4JMvXIaMA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEdeEv) +STUB("YvCj4cb1-jU", sceShellCoreUtilUnmountHddForBackup) +STUB("YvCyeD8n2S0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ChildActivityAvailabilityEEppEv) +STUB("YvDJEab8HVo", _UTF16Data_67) +STUB("YvL0D8Vg6VM", _ZN3sce2np4UserC2ERKS1_) +STUB("YvMUP69I69E", sceAppInstUtilGetContentSize) +STUB("YvQseGQNpDs", + _ZN15AbstractStorage15FacebookContentC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEbb) +STUB("YvSNAO82y2U", _ZN8meta_gen13JpegRetriever17GetDefaultDateUTCEv) +STUB("YvYkjti16tk", mono_aot_Sce_Vsh_Messages_DbAccessLibplt) +STUB( + "Yvbm9A1hKWA", + _ZN7WebCore9DOMWindow45overrideTransientActivationDurationForTestingEON3WTF8OptionalINS1_7SecondsEEE) +STUB("Yvgbj5WSi1M", EVP_aes_128_cfb8) +STUB( + "YvjJkIse6Bw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("Yvm2tpjkKPs", il2cpp_set_config) +STUB("YvmY5Jf0VYU", _Thrd_join) +STUB( + "YvoZAemz6Tg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE7popBackEv) +STUB("Yvq0DXgBFX4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEEC1ERKS6_) +STUB( + "YvrrB4cy5Y8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEEC2Ev) +STUB( + "YvteNKIkQOU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEE11release_refEv) +STUB("YvwAxfqATTA", _ZN7WebCore17FrameLoaderClientD1Ev) +STUB( + "Yvwa2GOhoOA", + _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody14getCustomData1Ev) +STUB("Yw0jKSqop+E", sceAgcDcbDrawIndexAuto) +STUB("Yw0n2hlwQ38", _ZN4Manx13WorkQueueImpl5startEv) +STUB("Yw3hitvH3DM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEEaSERKS5_) +STUB("Yw65RxUpwqg", _ZN7WebCore8Document19queryCommandEnabledERKN3WTF6StringE) +STUB("YwDnkwA7Xkc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEEC1EPS6_) +STUB("YwFH1M34TWM", sceBgftServiceIntUploadUnregisterTaskAll) +STUB("YwKX5vTTepQ", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEED2Ev) +STUB("YwRKlxs6pjA", sceMusicCoreServerGetLastLaunchUser) +STUB("YwUwy+GbUhM", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15NpSessionMemberEE8allocateEmPKv) +STUB("YwaEw2NZNVw", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils16NetStateDetailedEED2Ev) +STUB("YwcgIakl0P0", _ZN7WebCore8SVGNames12x_heightAttrE) +STUB("Ywcswv8GDaw", mono_aot_Sce_Vsh_RnpsAppMgrWrappermethod_addresses) +STUB("Ywmo0iM7VQM", __ubsan_handle_nullability_return_v1_abort) +STUB("YwrLa0Mekjw", sceSystemServiceChangeCpuPstate) +STUB("Yx+06D2JjOE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEE11release_refEv) +STUB("Yx+CuF11D3Q", sceHmdGetAssyError) +STUB( + "Yx29s0ft1aA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEaSERKS9_) +STUB("Yx5ivqeSRXg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEE11get_deleterEv) +STUB("Yx60Kv8HsgM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEE3getEv) +STUB("YxDQKiFZy2k", _ZN7WebCore12GCController9singletonEv) +STUB( + "YxKwfFj3270", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEEC1ERKSA_) +STUB( + "YxVie1HEnFk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE7reserveEi) +STUB( + "YxXtzU1OKlQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEC2Ev) +STUB( + "YxbsnXwLeDA", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeaders21intrusive_ptr_sub_refEPS5_) +STUB("YxdY94Fw670", _ZN3JSC32JSDestructibleObjectHeapCellTypeD0Ev) +STUB( + "Yxpj8k12+PA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE5clearEv) +STUB("YxrV7x7lwfU", g_ExplicitDivideByZeroChecks) +STUB("YxwfcCH5Q0I", _ZSt16generic_categoryv) +STUB( + "YxyIoXzvrdw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEED1Ev) +STUB( + "Yy1DjBDzCrc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEE3getEv) +STUB("Yy46PZvoQHc", rgctx_fetch_trampoline_mrgctx_53) +STUB( + "Yy4ovlWcXkw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEED1Ev) +STUB("Yy5gwHIhKh8", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_skipToPrevEntryMark) +STUB("Yy5yMiZHBIc", rintl) +STUB( + "Yy6rsbLELYw", + _ZN3sce2Np9CppWebApi7Matches2V127RequestPlayerResultsFactory6createEPNS1_6Common10LibContextEPKciPNS5_12IntrusivePtrINS3_20RequestPlayerResultsEEE) +STUB("Yy7p8z0z7Nk", _ZN9Inspector24WorkerFrontendDispatchernwEm) +STUB( + "YyA45qjZUQ0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEE3getEv) +STUB("YyC7QCLoSxY", sceUserServiceGetNpDateOfBirth) +STUB("YyCzoJifhqg", _ZN3WTF8CollatorD1Ev) +STUB("YyEZYQquw+g", _ZN3JSC4Heap12collectAsyncENS_9GCRequestE) +STUB( + "YyJYUiS+dQk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("YyLUhjo8VdI", + _ZN9Inspector20InspectorTargetAgent31sendMessageFromTargetToFrontendERKN3WTF6StringES4_) +STUB("YyWt34TCzw4", scePfsValidate) +STUB("YyYONsjsraE", _ZN3sce7Toolkit2NP2V27Ranking12RangeOfRanks9MIN_RANGEE) +STUB( + "YyfkVCa-ORo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEmmEv) +STUB( + "YygNVJ1v08g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEEcvbEv) +STUB("YylKwUHOZS4", _ZN9Inspector20CSSBackendDispatcherD0Ev) +STUB("Yym5FhbPeHU", mono_threads_enter_gc_safe_region_unbalanced) +STUB("Yymje0BT12Y", glValidateProgram) +STUB( + "Yyn4LYF7xgQ", + _ZN6WebKit17ChildProcessProxy19dispatchSyncMessageEPN7CoreIPC10ConnectionERNS1_14MessageDecoderERN3WTF6OwnPtrINS1_14MessageEncoderEEE) +STUB("Yynzyic5YHA", WKPreferencesSetNeedsStorageAccessFromFileURLsQuirk) +STUB("YyqJeBKtkaE", _ZN7WebCore8SVGNames16spreadMethodAttrE) +STUB( + "Yyt-TfShV+g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEEC2ERSA_) +STUB("Yytq7NE38R8", sceRemoteplayNotifyNpPushWakeup) +STUB( + "Yz+nw3dcnjo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEE7get_refEv) +STUB( + "Yz4W7Wq4EWw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEEaSERSA_) +STUB("YzB8-Aa5UV4", InitializeNetLib) +STUB("YzEwgtVeW7o", sceNpUniversalDataSystemIntRecordArraySetString) +STUB( + "YzGfO0x6DMg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEEaSERKS9_) +STUB("YzI2BOoDw+I", sceCompositorSetPatchCommand) +STUB("YzIPMpnHJzU", sceVorbisDecInfo) +STUB("YzJnVHf+Jwo", sceImeBackendModeCaretNext) +STUB("YzM19lL-JGU", _ZN3WTF13printInternalERNS_11PrintStreamEi) +STUB("YzMVqTigiyc", _ZNK3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead14accountIdIsSetEv) +STUB("YzNkW8mlLgY", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable8getOwnerEv) +STUB("YzPFrmjFMOs", _ZN8meta_gen13JpegRetriever20ProcessThumbnailDataEv) +STUB("YzRcVXMKvB8", jpeg_idct_16x16) +STUB( + "YzW+0eFtStA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEC1Ev) +STUB("YzW0cpKb7eA", _ZN12video_parser13cVideoMetaVWG8finalizeEv) +STUB( + "YzW2EfaXD4s", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEEC2EPNS2_10LibContextE) +STUB("YzkiMEg7hvE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEEC2EPS5_PFvS7_EPNS2_10LibContextE) +STUB("YzkqcknjpkE", uprv_ebcdicToAscii) +STUB( + "Yzm4Nwd8Wpw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEaSERKS9_) +STUB( + "YzuBH+wKR8g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE6resizeEj) +STUB("YzyhwhvERzg", _ZN7WebCore6Region9translateERKNS_7IntSizeE) +STUB("Z+-FesiIsPQ", _ZN7bmalloc5Cache8scavengeENS_8HeapKindE) +STUB("Z+1yF3nUzb0", _ZN7WebCore15makeSimpleRangeERNS_4NodeERKNS_14DocumentMarkerE) +STUB( + "Z+3nvTy9goI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "Z+87zq+oO+Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEED2Ev) +STUB( + "Z+9VHJoCmX0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE4sizeEv) +STUB( + "Z+DnnPodwio", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEC1EPNS2_10LibContextE) +STUB( + "Z+IYIl5RcWc", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13boolean4IsSetEv) +STUB( + "Z+NbhiqGPbc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEC1EPS8_) +STUB("Z+UpNZsFb7c", rgctx_fetch_trampoline_rgctx_13_p) +STUB( + "Z+Vy+A8-Opw", + _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest18setMatchStatisticsERKNS1_6Common12IntrusivePtrINS3_22RequestMatchStatisticsEEE) +STUB( + "Z+XjFElnU7U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "Z+bObKJpAx4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEmmEv) +STUB("Z+bUVHmzGQw", mono_domain_try_type_resolve) +STUB("Z+dzNaClq7w", sceUserServiceGetGlsLiveQuality2) +STUB("Z+eH7p+THdo", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110ResultTypeEEptEv) +STUB( + "Z+esAd6m9iU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEEC1ERSA_) +STUB( + "Z+gdAYQM5S0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEE5resetEPS9_) +STUB("Z+vRPbgrIrw", + _ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer12setAccountIdEPKc) +STUB("Z+vcX3rnECg", _ZTVSt20bad_array_new_length) +STUB("Z+zAL-Z6eQk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEC1Ev) +STUB("Z--iFci25hA", _ZN7WebCore16MIMETypeRegistry13isXMLMIMETypeERKN3WTF6StringE) +STUB("Z-0HwSuO7Rg", + _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody8fromJsonERKNS_4Json5ValueE) +STUB("Z-6Uqn78290", _ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchStatusRequest17getNpServiceLabelEv) +STUB("Z-8Jda650Vk", sceNetSyncSignal) +STUB("Z-CmJGI1uRA", vm_send_CreateStaticRgctxTrampoline) +STUB("Z-CzgOu+sSs", + _ZNK3sce2Np9CppWebApi12Leaderboards2V127RecordLargeDataResponseBody6toJsonERNS_4Json5ValueEb) +STUB("Z-DSxlDEn5U", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4DataEED2Ev) +STUB( + "Z-DgvZqP12A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEEC1Ev) +STUB( + "Z-Di9dCke08", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEED2Ev) +STUB( + "Z-H26XtrDsY", + _ZN9Inspector25TimelineBackendDispatcher21setAutoCaptureEnabledElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "Z-IQIsCmGnQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEC1Ev) +STUB( + "Z-K-CEgQWCk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "Z-LSyoosLoc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEE11release_refEv) +STUB( + "Z-Q6jr1DluM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEneERKS9_) +STUB( + "Z-Te3N1k5vc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE3endEv) +STUB( + "Z-U0lHUNZVo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEplEm) +STUB( + "Z-X0AH9G4eM", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeaders15setCacheControlERKNS1_6Common6StringE) +STUB("Z-htDQqdLsI", _Close) +STUB("Z-lOfS++8s8", _ZN3sce7Toolkit2NP2V210Tournament25OneVsOneTournamentDetailsaSERKS4_) +STUB("Z-lkbHvLSr4", _ZN3WTF7CStringC2EPKc) +STUB( + "Z-mb7n+5T3I", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB("Z-n9eCkcABY", _ZNK7WebCore6Path2D4pathEv) +STUB( + "Z-qUYn2sjQQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEC2EPKS8_) +STUB("Z-uZAphJ0B0", g_filename_from_uri) +STUB( + "Z-wpGtgyfUQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEED2Ev) +STUB("Z-xJlQ0haYg", uprv_uint16Comparator_67) +STUB("Z0EJCwZwEAA", _ZN3sce7Toolkit2NP2V211SharedMedia7Request9GetVideosC2Ev) +STUB("Z0JK-WjWPi0", mono_aot_Sce_PlayStation_BclExtensionsjit_got) +STUB("Z0Om0daCDpI", _ZN7WebCore4Page28removeInjectedUserStyleSheetERNS_14UserStyleSheetE) +STUB("Z0PSFQQkvdo", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V18SortModeEEdeEv) +STUB( + "Z0PTyljc3ko", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEeqERKS9_) +STUB( + "Z0UTeUgi4AQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEdeEv) +STUB("Z0VNyGEdSKk", _ZN3sce2Np9CppWebApi13InGameCatalog2V55ErrorD2Ev) +STUB("Z0ZARk6BEH8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEcvbEv) +STUB("Z0a+sohjGTQ", scePerfTraceAddBufferNotifyEvent) +STUB("Z0aqE9Zvp6w", ucnv_extInitialMatchFromU_67) +STUB("Z0bnBaoXk7w", _ZNK7WebCore8Document20isRunningUserScriptsEv) +STUB("Z0eQj8m7XA8", sceNpEntitlementAccessDeleteRequest) +STUB("Z0eb0mzQMfE", WTFGetBacktrace) +STUB("Z0gKGPMcJN8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEED2Ev) +STUB("Z0i8mwHJcf8", WKPreferencesSetExperimentalFeatureForKey) +STUB( + "Z0iAq7hGVpE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEC2EPS8_) +STUB( + "Z0j2ByctDRg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEEC1ERS9_) +STUB("Z0j7Ivu5rwk", umsg_parse_67) +STUB("Z0m2zV3O1T0", _ZN3sce7Toolkit2NP15CommunicationIdC1Ev) +STUB("Z0pL-Tae6N4", deflateEnd) +STUB("Z0rxzUY3XM0", MvpHttpGetLastError) +STUB( + "Z0uJ88A8Dmw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEmmEi) +STUB( + "Z12IknZbYHk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("Z13-Ph0esTA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEEdeEv) +STUB( + "Z13fprLjF7U", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEptEv) +STUB("Z1FUn-ESBDw", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request11GetWhoLikedD2Ev) +STUB("Z1JrXKiEuKM", _ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamTournamentC2ERKS4_) +STUB("Z1MRG-L+V0o", _ZN3sce2np12StreamWriter5WriteEPNS0_6HandleEPNS0_9StreamCtxEPKvmPm) +STUB("Z1Zxnlf4DSk", _ZN3JSC17DebuggerCallFrame20positionForCallFrameERNS_2VMEPNS_9ExecStateE) +STUB( + "Z1e7DsJtNLc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEE7add_refEv) +STUB( + "Z1j8YvHFQU4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEmmEv) +STUB("Z1lPgmkVBm8", _ZN15AbstractStorage18DailymotionService13SearchStorageEv) +STUB("Z1nwr6VmklE", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16TrophyPackTrophyEE12deepCopyFromERS7_) +STUB("Z1rdZifXjPo", _ZN12video_parser16cVideoContentMp4D1Ev) +STUB("Z1w28FnOa9o", sceAudioLatencyEstimationGetDelayTime) +STUB( + "Z1zo5v0ErDI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEC2EPNS2_10LibContextE) +STUB( + "Z20sQYInGGU", + _ZN3sce7Toolkit2NP7Ranking9Interface13registerScoreEPKNS1_20RegisterScoreRequestEPNS1_9Utilities6FutureINS1_8TempRankEEEb) +STUB( + "Z22etD8Nzo0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEptEv) +STUB("Z26N8VJJRzc", unbox_trampoline_p) +STUB( + "Z2F3wF-NMUo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB( + "Z2H7hfRgwcY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEE7add_refEv) +STUB("Z2I0BWPANGY", __sync_fetch_and_sub_16) +STUB("Z2O+ajwrumo", sceLibSecureHashGetContextSize) +STUB( + "Z2OpePvMB+I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEEaSERKS9_) +STUB( + "Z2Q7VWAEWW4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEC1EPS8_) +STUB("Z2S47QoVtYg", sceImeBackendForTestFunction) +STUB("Z2XH+aAdu3s", _ZN7WebCore19ResourceRequestBase24s_defaultTimeoutIntervalE) +STUB("Z2aKdxzS4KE", writev) +STUB("Z2biRT+fmpc", rgctx_fetch_trampoline_mrgctx_57) +STUB("Z2cdsqJH+5k", sceFontRebindRenderer) +STUB( + "Z2iaW6XNVDg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEEptEv) +STUB("Z2lo4dtGrQw", _ZN7WebCore11MathMLNames9merrorTagE) +STUB( + "Z2qRNSXVsBQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEEcvbEv) +STUB("Z2rDN0N0pYc", sceFsUfsEstimateZoneCapacityForUser) +STUB("Z2s5dgbCIgg", sceCesEucCnToUtf32le) +STUB( + "Z3-aiHtZkHg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEE11get_deleterEv) +STUB( + "Z37+aYml2kI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "Z3876VEgZgI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEdeEv) +STUB("Z3BQ+paj9QI", _ZN12video_parser5vpcom3rtc12ParseRFC3339EPmPKc) +STUB("Z3E9QMuMFHM", _ZN7WebCore9FrameView14setNeedsLayoutEv) +STUB("Z3EV6NMWjWo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEC1EPS8_) +STUB( + "Z3HQxQkERSI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEC1EPKS8_) +STUB("Z3Nn2FvDbYM", _ZN7WebCore9HTMLNames7linkTagE) +STUB( + "Z3R2Nd-On4k", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEdeEv) +STUB("Z3SA8W6SxzA", _ZN3sce7Toolkit2NP2V26Friend15FriendsOfFriendD1Ev) +STUB("Z3T-jAmhptU", YGNodeStyleSetMarginPercent) +STUB("Z3YUkUV65F8", _ZN7WebCore10XLinkNames9titleAttrE) +STUB("Z3YhIxkXvF0", + _ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody14getRulesetNameEv) +STUB( + "Z3e-bDOHwDY", + _ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody23unsetLargeDataSizeLimitEv) +STUB("Z3gQsF6mZZg", _ZN7WebCore11DisplayList13SetMiterLimitD1Ev) +STUB("Z3iET4TRgDg", uset_complement_67) +STUB("Z3lp3M5uyjo", _ZN3NTF21ResourceRequestLogger11isLoggerUrlEPKc) +STUB("Z3mnqcGmf8E", sceNpGetProcessId) +STUB("Z3mrBp7y1Lc", _ZN3sce4Json5Value10referValueERKSbIcSt11char_traitsIcENS0_8StlAllocIcEEE) +STUB( + "Z3nptHuye70", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEaSERS8_) +STUB("Z3oSx90jbiY", u_caseInsensitivePrefixMatch_67) +STUB("Z3oZ7Ul+FRo", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils12Notification15UserStateChangeEE3setEv) +STUB("Z41j9T9B5IU", _ZN7WebCore8SVGNames8bboxAttrE) +STUB( + "Z42+oRWm-gg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "Z43YQiX5ICE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEmmEi) +STUB("Z43vKp5k7r0", sceGnmDispatchIndirect) +STUB("Z47Dt9I7MJM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEED2Ev) +STUB("Z49nv-Xs1A0", sceEsvmEngineMediaKeySessionRemove) +STUB( + "Z4ACExSNxW8", + _ZN3sce2Np9CppWebApi14SessionManager2V158PostPlayerSessionsSessionIdMemberPlayersRequestBodyFactory7destroyEPNS3_51PostPlayerSessionsSessionIdMemberPlayersRequestBodyE) +STUB("Z4GqBWxwfAM", _ZN3sce7Toolkit2NP2V24Auth7IdTokenaSERKS4_) +STUB("Z4JJhXCnIvY", sceNpFriendListDialogGetResult) +STUB("Z4QosVuAsA0", pthread_once) +STUB( + "Z4UHDMpXOco", + _ZN9Inspector18InjectedScriptBase20checkAsyncCallResultEN3WTF6RefPtrINS1_8JSONImpl5ValueENS1_13DumbPtrTraitsIS4_EEEERKNS1_8FunctionIFvRNS1_6StringEONS2_INS_8Protocol7Runtime12RemoteObjectENS5_ISD_EEEERNS1_8OptionalIbEERNSH_IiEEEEE) +STUB( + "Z4UO54mmSZI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEneERKS9_) +STUB( + "Z4V93-863KY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEC2ERS7_) +STUB("Z4Xc1x3gxgg", _ZN3JSC13RuntimeMethodC1ERNS_2VMEPNS_9StructureEPNS_8Bindings6MethodE) +STUB( + "Z4gDY+PEvoc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEC2Ev) +STUB( + "Z4hmU+87amg", + _ZN3sce2Np9CppWebApi14SessionManager2V138ResponsePlayerSessionInvitationFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_31ResponsePlayerSessionInvitationEEE) +STUB( + "Z4kdN4OkoRU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("Z4nTIsAp+QM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEptEv) +STUB( + "Z4pLRNpuRe0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("Z4pycDeFfr4", mono_aot_Sce_Vsh_MyGameListmethod_addresses) +STUB("Z4wnPrd9jIE", _ZN3sce2np4UserC1Ei) +STUB("Z4wwCFiBELQ", sceNetCtlTerm) +STUB( + "Z4y7T447rmo", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V342PsnWebError_error_validationConstraintInfo6toJsonERNS_4Json5ValueEb) +STUB("Z5+W18jAIH4", u_ispunct) +STUB("Z5-0uTMnWnE", sceMatWriteBookmark) +STUB( + "Z52h6z6+Nhg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "Z53o3HOxU00", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEED2Ev) +STUB("Z54J7vkxbeY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEE11release_refEv) +STUB("Z55AwNbGHB0", sceRnpsAppMgrGetAppInfoList) +STUB("Z55J-I6291o", AES_cbc_encrypt) +STUB( + "Z55c6Qy0EAU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEEC1ERSA_) +STUB("Z55u+4MdEI0", ScePsmMonoJitExec) +STUB( + "Z563ebCR-o0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "Z56RZrRkgG4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE8pushBackERKS8_) +STUB("Z56irUtiXt0", _ZN3sce3Xml13AttributeListC2ERKS1_) +STUB("Z57lo0FHij4", WKBundleNumberOfPages) +STUB( + "Z5Bbt2slZZM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEE11release_refEv) +STUB("Z5HNtKvubuo", WebBrowserGetEnvelopeData) +STUB("Z5NW0XEH1hQ", _ZN3sce2Np9CppWebApi11Matchmaking2V15Cause7setCodeERKl) +STUB("Z5RgV4Chwxg", sceSystemServiceChangeGpuClock) +STUB("Z5UwZfm7vUY", _ZN3sce7Toolkit2NP2V28Presence8PresenceC1Ev) +STUB("Z5YoPnCOHA8", _ZN7WebCore21SQLiteDatabaseTracker9setClientEPNS_27SQLiteDatabaseTrackerClientE) +STUB( + "Z5d+m2Gn1Xw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("Z5g63XSwO5I", _ZN7WebCore9HTMLNames8charAttrE) +STUB("Z5i0--Vqfwg", _ZN4IPMI6Server12EventHandlerD2Ev) +STUB("Z5ljxAg3thw", u_strFoldCase) +STUB("Z5lmsU8hL4A", _ZN3JSC9CodeBlockD1Ev) +STUB("Z5nvVZTbyjQ", ucol_strcollIter_59) +STUB("Z5t2LiajkAQ", sceUserServiceSetNpCountryCode) +STUB( + "Z5uBAB+Ozyw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEC2EPNS2_10LibContextE) +STUB( + "Z5vm1Niq9YI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE5beginEv) +STUB("Z5vq8iEx3e0", mono_btls_x509_store_set_default_paths) +STUB("Z5y4QZQXuWk", FTC_CMapCache_New) +STUB( + "Z63X5shdLN0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEC2EPS8_) +STUB("Z63XYgLjqhI", rgctx_fetch_trampoline_mrgctx_7) +STUB( + "Z63oACJMO1U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEE7add_refEv) +STUB("Z68UCklzmHs", _ZNK3sce2np6Handle6IsInitEv) +STUB("Z6CCOW8TZVo", _WGetfld) +STUB( + "Z6GDF3pVIuY", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V120ErrorResponseFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_5ErrorEEEPNS8_INS3_13ErrorResponseEEE) +STUB( + "Z6Me97x3vA4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "Z6MerYr-XvM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEED1Ev) +STUB("Z6PXTf8fyxI", sceBgftServiceIntDebugPlayGoSuspend) +STUB("Z6QV6j7igvE", sceVoiceGetResourceInfo) +STUB( + "Z6RCz0jcE4I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEEC1ERSA_) +STUB( + "Z6UHt8qQkZw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("Z6UhDq6bbDo", _ZN12video_parser13cVideoPathMp4C1EPKc) +STUB("Z6XSWmmTkSM", __sanitizer_cov_trace_pc_guard_init) +STUB( + "Z6Y-UleGVz0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEppEv) +STUB( + "Z6YHluf0Gk8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEmmEv) +STUB( + "Z6cYhFDue3A", + _ZN7WebCore24CoordinatedGraphicsLayer21setNeedsDisplayInRectERKNS_9FloatRectENS_13GraphicsLayer17ShouldClipToLayerE) +STUB("Z6ibdQrVdRQ", _ZN7WebCore17JSDOMGlobalObjectD2Ev) +STUB( + "Z6qNEdlDVgI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEE3getEv) +STUB( + "Z6wjbXI2618", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "Z6yGYvBYt-8", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12string9IsSetEv) +STUB("Z7+siBC690w", _ZTSDs) +STUB("Z7-cPFrH4hM", _ZN7WebCore24CoordinatedGraphicsLayer24didChangeBackdropFiltersEv) +STUB("Z70nLhrFrvE", WKBundleGetWebNotificationID) +STUB( + "Z74lSYEUS08", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEaSERKS7_) +STUB( + "Z75H51E5XWA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEC1Ev) +STUB( + "Z78lpOqBJ28", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEC2EPS8_) +STUB( + "Z79yPfVibjc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE5beginEv) +STUB("Z7DnbWQd02Q", _ZN7WebCore15AsyncFileStream7getSizeERKN3WTF6StringEd) +STUB("Z7NWh8jD+Nw", _ZTISt13bad_exception) +STUB("Z7NoR9m5SVo", sceKernelIccGetCpuInfoBit) +STUB("Z7Ur2ttk458", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE5beginEv) +STUB( + "Z7X7OGIvMqc", + _ZN7WebCore30InspectorInstrumentationWebKit30shouldInterceptRequestInternalERKNS_5FrameERKNS_15ResourceRequestE) +STUB( + "Z7Xt45PjrGE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEC2EPS6_PNS2_10LibContextE) +STUB("Z7XuHpqmUlA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEaSERKS7_) +STUB( + "Z7dLFktrCCE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEE5resetEPS9_) +STUB( + "Z7eDHiqLBlI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEplEm) +STUB("Z7pNCsK2dAs", eglGetDisplay) +STUB( + "Z7qUYQRUWcg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEED2Ev) +STUB( + "Z7qxGWOBhhA", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivitiesC1ERS6_) +STUB("Z7rHg2REEzw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEE11release_refEv) +STUB( + "Z7svZeTUxpg", + _ZN7WebCore16NetworkSendQueueC1ERNS_8DocumentEON3WTF8FunctionIFvRKNS3_7CStringEEEEONS4_IFvPKcmEEEONS4_IFNS0_8ContinueENS_13ExceptionCodeEEEE) +STUB("Z7tv-rPsB1A", _ZNK7WebCore8Document11contentTypeEv) +STUB("Z7xo6ggqx04", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils5IdMapEEC1Ev) +STUB("Z7yrECAuwAg", _ZN7WebCore9HTMLNames15onmousedownAttrE) +STUB("Z7z6HXWORJY", sceSaveDataSaveIconByPath) +STUB("Z8-FLtQzrRA", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V112OnlineStatusEEptEv) +STUB("Z80B946ukvg", _ZN3sce2Np9CppWebApi6Common6VectorIfE6resizeEj) +STUB("Z81sDp43YNM", mono_aot_Sce_Vsh_BackupRestoreUtilmethod_addresses) +STUB( + "Z86w7M74Kb0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("Z8Afdc4FdPo", WKPreferencesGetBackspaceKeyNavigationEnabled) +STUB( + "Z8JUeeNZs38", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEC2EPKS9_) +STUB("Z8KG6700sw4", FT_Select_Metrics) +STUB("Z8N5v6H4418", jpeg_fdct_3x3) +STUB("Z8PBipYLO8k", _ZN3JSC7Symbols27newArrayWithSizePrivateNameE) +STUB("Z8Qt-kRlKwA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEED2Ev) +STUB( + "Z8U3xKI4Kms", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("Z8ZrDDxJDjY", WKBundlePageSetPaintedObjectsCounterThreshold) +STUB("Z8elFTwJSUE", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsD2Ev) +STUB( + "Z8gBvNoZXpE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEmmEi) +STUB( + "Z8ja4HnYP2s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEEaSERSA_) +STUB("Z8lWB0MSKXo", _ZStL4fout) +STUB( + "Z8lpVi9IjoU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEC2Ev) +STUB( + "Z8mFCHF6Ulo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEE7get_refEv) +STUB("Z8nyVQCGCVo", sceNpIdMapperDeleteRequest) +STUB("Z8oFPzCyHZE", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging16GameDataMessagesEE19setCustomReturnCodeEi) +STUB("Z8piI2VQd64", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEC2ERS7_) +STUB( + "Z8veV8f1p9E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB("Z9-kpqvmMUg", _ZN7WebCore15GraphicsContext4saveEv) +STUB( + "Z9-orau1IzU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEED1Ev) +STUB( + "Z923r+FVNp8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEC1Ev) +STUB("Z9E-FekUJ2w", sceCtrlpInit) +STUB( + "Z9Jg1dzb5zE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEE7get_refEv) +STUB("Z9K7dRCjlg0", _ZN3sce7Toolkit2NP2V212EventsClient10EventColorC2Ev) +STUB("Z9LBjAIJYIQ", delegate_virtual_invoke_15) +STUB( + "Z9MNlHiHN-I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEC2Ev) +STUB("Z9NVCesiP0Q", sceAjmBatchJobRunSplit) +STUB( + "Z9P5NG8O5b4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEE3getEv) +STUB("Z9Q9LzQDXf0", sceNpSessionSignalingDestroyContext) +STUB("Z9Vu001vu3U", _ZN3JSC13JSMapIterator14finishCreationERNS_2VMEPNS_5JSMapE) +STUB("Z9WsstrGsZc", _ZN4Manx10FontStream6createEv) +STUB( + "Z9bT5nRfQMk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEC2EPNS2_10LibContextE) +STUB( + "Z9eQXA0kets", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEaSERKS9_) +STUB("Z9gWrdXRLO8", + _ZN3JSC15ordinarySetSlowEPNS_9ExecStateEPNS_8JSObjectENS_12PropertyNameENS_7JSValueES5_b) +STUB("Z9gbzf7fkMU", _Atomic_fetch_xor_1) +STUB("Z9hFW4zMgaU", _ZN3sce7Toolkit2NP2V212NetworkUtils16NetStateDetailedC2Ev) +STUB("Z9hYU0+vqeg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEEC1ERKS7_) +STUB("Z9jxlNOYFbE", __internal_handle_open) +STUB("Z9kvulfEIVU", _ZN3sce3Xml6StringC1Ev) +STUB("Z9m12hOCc+0", _ZNK7WebCore11HistoryItem8referrerEv) +STUB( + "Z9oXE1jp2n4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEneERKS9_) +STUB( + "Z9pTT2dgmUo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEC2EPNS2_10LibContextE) +STUB("Z9tyi1-LrQg", _ZN3sce4Json6String7reserveEm) +STUB("Z9zhgHSctqM", _ZN7WebCore6Widget9setParentEPNS_10ScrollViewE) +STUB("ZA-45SyHoL4", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container7setTypeEPKc) +STUB( + "ZA4fXiDdSzU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("ZABJgtNFuUo", _ZN3sce7Toolkit2NP2V212EventsClient13EventDuration13MAX_SIZE_DATEE) +STUB("ZAFfvaw5eNA", sceDtsEncWaitEncode) +STUB( + "ZAKuNhMr6jc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEC2EPS6_PNS2_10LibContextE) +STUB( + "ZANU+5rTaIs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEEC1Ev) +STUB("ZARJnyVO9iM", __tsan_write1) +STUB("ZAURFIgPZk8", _ZN9Inspector28InspectorScriptProfilerAgentdlEPv) +STUB("ZAWn29mGSe8", _ZN9Inspector24WorkerFrontendDispatcherdlEPv) +STUB( + "ZAh70W1BZeQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEaSERKS9_) +STUB("ZAkBpVsoKSs", mono_aot_I18Nplt_end) +STUB( + "ZAlYuHcURnE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEEaSERKSA_) +STUB("ZAm1DqkPhpY", ulist_containsString_67) +STUB( + "ZAn37wd6nOs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "ZAnCRHLGXyI", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi23joinGameSessionAsPlayerEiRKNS4_34ParameterToJoinGameSessionAsPlayerERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_50PostGameSessionsSessionIdMemberPlayersResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("ZApWOKVm7-g", _ZN7WebCore9MediaList12setMediaTextERKN3WTF6StringE) +STUB("ZAywbC2T+Nw", WKBundlePostMessage) +STUB("ZB-Q7RvnIAA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEED1Ev) +STUB( + "ZB5qzyhDhgY", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V122NatConnectivityFactory7destroyEPNS3_15NatConnectivityE) +STUB("ZB8xRemRRG8", sceFontGetFontGlyphsCount) +STUB("ZB9HZnouJrc", sceKernelDirectMemoryQueryForId) +STUB( + "ZBQajqW4Kz8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "ZBQeIzPi43s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEE3getEv) +STUB( + "ZBTyFVOGbeg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEneERKS9_) +STUB( + "ZBYpsRWLr0I", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEEptEv) +STUB("ZBbwvge1ZI8", _ZNK7WebCore19HTMLTableRowElement8rowIndexEv) +STUB("ZBcWFXdWC5I", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS19FriendsDataStatusesEEC2Ev) +STUB("ZBfDhowpztE", + _ZN3sce2Np9CppWebApi14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyD1Ev) +STUB("ZBfFoUi0RTM", _ZN3sce7Toolkit2NP2V27Session7Request6Search19DEFAULT_INDEX_VALUEE) +STUB( + "ZBgA3obnE98", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB( + "ZBgCNsO6GDc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEED1Ev) +STUB("ZBgLUech09s", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_23NpSessionInvitationInfoEEC1Ev) +STUB("ZBjobwy9TNo", uregex_start_67) +STUB("ZBkm0cyqmsU", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessionsC1Ev) +STUB("ZBlJme+Kcgg", sceImeBackendGetCandidateSelect) +STUB("ZBm2yaA6JPk", + _ZN7WebCore32ScrollingStateFrameScrollingNode17setInsetClipLayerERKNS_19LayerRepresentationE) +STUB( + "ZBn4NOv2R+w", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE5eraseENS2_8IteratorIS6_EERS9_) +STUB( + "ZBpDZJwNdNs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEE3getEv) +STUB("ZBs-hqllVMc", Java_java_lang_Shutdown_halt0) +STUB("ZBt8N19HV94", _ZN3sce7Toolkit2NP2V23TUS15TusDataStatusesaSERKS4_) +STUB( + "ZBywHw0+Rdw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("ZC-e-sTbZ0g", u_isJavaSpaceChar_67) +STUB("ZC17w3vB5Lo", sceAvPlayerStop) +STUB("ZC2rFWNrtMk", delegate_virtual_invoke_21_p) +STUB( + "ZC6G4IeFjkg", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V142MatchCompletionRateCompletedMetricsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_35MatchCompletionRateCompletedMetricsEEE) +STUB( + "ZC6NqUwPObA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEEC2ERKSA_) +STUB("ZC6fht48-Qc", sceBgftServiceIntDebugPlayGoSetFreeZone) +STUB( + "ZCE4lVoTxYQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "ZCKw-nB86EE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEE7get_refEv) +STUB( + "ZCNKIh6nxXA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEEneERKS7_) +STUB("ZCNViahRWjg", cuse_lowlevel_main) +STUB("ZCOTF-9SJDA", _ZN3WTF13StringBuilder22appendECMAScriptNumberEd) +STUB("ZCPC7HL+puk", _ZN3sce2Np9CppWebApi7Matches2V118RequestTeamResults22unsetTeamMemberResultsEv) +STUB( + "ZCTu2rLEJeU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC1Ev) +STUB("ZCaq-0g5qJQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectator12getAccountIdEv) +STUB("ZCd6IYoD3Bc", _ZNK3sce4Json6Object8iteratordeEv) +STUB("ZCdpzDyqAtE", WKBundleSetAsyncFrameScrollingEnabled) +STUB("ZCfAfJDzal4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEEaSERS6_) +STUB( + "ZCo+g12rHAw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEneERKS9_) +STUB("ZCqeHLtz780", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence12Notification14PresenceUpdateEED1Ev) +STUB( + "ZCqtcK1KAsQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE5beginEv) +STUB("ZCr7sSQkzGw", ubrk_preceding_67) +STUB("ZCrqHPiB4ro", SSL_get_privatekey) +STUB("ZCuLr+bcc-E", sdb_single_step_trampoline) +STUB( + "ZCwkEumVk2Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEC1EPS8_) +STUB("ZCxdJPvigpE", _ZN3JSC18GCActivityCallbackC2ERNS_2VME) +STUB( + "ZCyfwLPXjZI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEdeEv) +STUB("ZD+Dp+-LsGg", sys_nsig) +STUB( + "ZD+HQmiSbW0", + _ZN3sce2Np9CppWebApi12Leaderboards2V137GetBoardDefinitionResponseBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_30GetBoardDefinitionResponseBodyEEE) +STUB( + "ZD+kPxvs3no", + _ZN9Inspector22InspectorDebuggerAgent25buildExceptionPauseReasonEN3JSC7JSValueERKNS_14InjectedScriptE) +STUB("ZD-0e3b7Leo", WKWebsiteDataStoreConfigurationGetPerOriginStorageQuota) +STUB("ZD2MP6Vzxu4", WKBundleFrameCopyInnerText) +STUB("ZD46Jw2jyyg", UI_get_input_flags) +STUB("ZD81lGai5tQ", mono_metadata_field_info) +STUB( + "ZDAT84kIwmc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEEptEv) +STUB( + "ZDCt-cpxHZk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEEC2ERKSA_) +STUB("ZDKe0O0ynIs", _m_key2) +STUB( + "ZDO-1I0y3Ek", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE5beginEv) +STUB( + "ZDR6hVFqGqs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEC2Ev) +STUB("ZDXASnyDcho", mono_aot_System_Xml_Serializationjit_got) +STUB("ZDaoItgoNF0", sceMbusEventCallbackFuncsInit) +STUB("ZDe8SRHwk-U", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE5clearEv) +STUB("ZDeMB3pJ+Q8", JVM_GetClassInterfaces) +STUB( + "ZDeYu9x3Shw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEmmEi) +STUB( + "ZDmR517X2sY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "ZDnl9WIUQ3U", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("ZDocIq+2jbI", _ZN3sce2np3ipc14service_client13PollEventFlagEijmjPm) +STUB( + "ZDq-wYbzxbE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEmmEi) +STUB( + "ZDtFsp6HpTE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "ZDu-WJlHYYs", + _ZN3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession26setSpectatorJoinableStatusERKNS3_23SpectatorJoinableStatusE) +STUB("ZDvHK6T-sh4", tt_cmap2_class_rec) +STUB("ZDwRLyU1-2Y", _ZNK3sce2Np9CppWebApi14SessionManager2V12To6toJsonERNS_4Json5ValueEb) +STUB("ZDwprZa5o10", _ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEE3endEv) +STUB("ZDzBH+rCbT4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEcvbEv) +STUB("ZE+kvBSZtjw", _ZN3WTF13StringBuilder15reserveCapacityEj) +STUB("ZE6RNL+eLbk", tanf) +STUB("ZE8DFcSverk", sceAt9EncClearContext) +STUB( + "ZEEFVf9UUt0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE5clearEv) +STUB("ZEF2Njwr8Kk", SetCurrentTime) +STUB("ZEH+UsL9PFQ", audiodeccpuinternal_core_ops_alac2) +STUB("ZEQH4lcf1xY", _ZN3sce7Toolkit2NP2V210Tournament7Request18GetRegisteredUsersD1Ev) +STUB("ZERYoMH2fX8", _ZN3JSC2VM21sentinelSetBucketSlowEv) +STUB("ZEZYgGsc4q0", scePlayReadyContentSetProperty) +STUB( + "ZEeawB5rs48", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEplEm) +STUB("ZEf2L6Gsj3Y", mono_aot_Sce_Vsh_Orbis_BgftAccessorplt_end) +STUB("ZEgja1SGUP8", _ZN3WTF10TextStreamlsEy) +STUB("ZEioiFNuqis", SwCtrlSinkAuthenticate) +STUB("ZEjCED21XYU", _ZTVN9Inspector19InspectorAuditAgentE) +STUB("ZEt-qWYOrmQ", _ZN3sce7Toolkit2NP2V29Messaging7Request22ConsumeGameDataMessageC1Ev) +STUB("ZEwoZ4r51tI", __asan_store8_noabort) +STUB( + "ZEww9kCydjU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEED1Ev) +STUB( + "ZF+vvm66HTU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEED1Ev) +STUB( + "ZF-kqnx4Hnw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE5beginEv) +STUB("ZF6hpsTZ2m8", __atomic_store_1) +STUB("ZF9k6RbNZoY", _ZNK7WebCore11BitmapImage21decodeCountForTestingEv) +STUB("ZFDZoN9IbVU", sceAmprAmmMeasureAmmCommandSizeMapDirect) +STUB( + "ZFJRds6jZtk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("ZFJmsiUqcBI", u_UCharsToChars) +STUB( + "ZFLn+v8GlA8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEcvbEv) +STUB("ZFPwpIZbyIc", mono_image_open_from_data_with_name) +STUB( + "ZFXZvUJJ5CI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE21intrusive_ptr_sub_refEPS9_) +STUB("ZFeVn7+X36Y", _ZThn64_NK7WebCore9FrameView21minimumScrollPositionEv) +STUB("ZFmp0VLrfi8", _ZN7WebCore10FileSystem18getVolumeFreeSpaceERKN3WTF6StringERm) +STUB("ZFmp0rD1F14", cairo_matrix_init_identity) +STUB( + "ZFqFZV6cABI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE8copyFromERKS9_) +STUB("ZFqKFl23aMc", sceGnmRegisterOwner) +STUB("ZFs14dPrmzk", ucurr_getDefaultFractionDigits) +STUB( + "ZG+vPK7jySA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEdeEv) +STUB("ZG0YDhgy13Y", uprv_decNumberLn_67) +STUB( + "ZG1xp7U3G9g", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEptEv) +STUB("ZG4JqHOOczk", _ZN12video_parser23VpMpegvideoMp4vParseDSIEPhiPNS_23VpMpegvideoMp4vDSIParamE) +STUB( + "ZG8iFiffjfw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEC2EPNS2_10LibContextE) +STUB("ZGC0zvMWXJ8", _ZN7WebCore9HTMLNames17aria_haspopupAttrE) +STUB( + "ZGCngQcBQas", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEED1Ev) +STUB("ZGEEHCN2FvE", WKContextGetNotificationManager) +STUB("ZGH6RGAA+r4", _ZN3sce7Toolkit2NP2V26Trophy17TrophyPackSummaryC1ERKS4_) +STUB( + "ZGKGfu51Ye0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEC1Ev) +STUB("ZGNbbBAeVyo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE5beginEv) +STUB( + "ZGRODZohpUU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEE7get_refEv) +STUB("ZGSQC5a3cFE", _ZN3sce7Toolkit2NP2V212EventsClient15EventUserStatusC2Ev) +STUB("ZGSo5Tu5i+Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEE5resetEPS6_) +STUB("ZGTN0zmuExs", mono_aot_Sce_Vsh_VoiceAndAgentjit_got) +STUB("ZGURGK061ts", _ZN7WebCore7Element12offsetHeightEv) +STUB( + "ZGWFU44wy-Q", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEptEv) +STUB( + "ZGXEG-pD+ek", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEaSERS7_) +STUB("ZGbkd2hWhJU", sceShellCoreUtilGetTitleWorkaroundFileInfoString) +STUB("ZGc3yyMGbS0", _ZN7WebCore12SettingsBase18setSerifFontFamilyERKN3WTF10AtomStringE11UScriptCode) +STUB( + "ZGdzxegQ3f0", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE5getIdEv) +STUB("ZGlRwKpruPQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEE5resetEPS6_) +STUB( + "ZGnYZD8aI+w", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEneERKS9_) +STUB( + "ZGpJF8bYz8A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "ZGrtHRS9sQ8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE3endEv) +STUB("ZGvwbuPkU0A", uregion_getAvailable_67) +STUB("ZGx1vjA0Jwc", sceBgftServiceIntUploadGetAvailableTaskCount) +STUB("ZGxmGA0J8jk", + _ZN3sce2Np9CppWebApi7Matches2V119RequestMatchResultsC1EPNS1_6Common10LibContextE) +STUB( + "ZGyS7rVVrR0", + _ZN7WebCore18TextureMapperLayer28paintWithIntermediateSurfaceERKNS_25TextureMapperPaintOptionsERKNS_7IntRectE) +STUB( + "ZH+RQNI-eu4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE21intrusive_ptr_sub_refEPS7_) +STUB( + "ZH0cvoOCQFY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("ZH232ViZnko", _ZN3WTF11setNonBlockEi) +STUB("ZH6IIT7suc4", _ZN7WebCore27TranslateTransformOperationD2Ev) +STUB( + "ZH9LeExOVf8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE21intrusive_ptr_add_refEPS7_) +STUB("ZHAqg71nFWw", _ZN4IPMI6Client6Config26SyncMethodInvocationConfigC1Ev) +STUB( + "ZHCu4+2e1TE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("ZHDH2AeJ7eE", c14) +STUB("ZHJ0lhsdQTY", mono_metadata_locate_token) +STUB("ZHO4XBnj7Eo", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE6resizeEj) +STUB( + "ZHSHxvocyS4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEaSERS7_) +STUB("ZHUzIIIwj1c", _ZN3WTF9MediaTimeC2Eljh) +STUB("ZHWeGLW4X34", sceFaceTrackerUpdate) +STUB( + "ZHY-t9+17Cw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEEptEv) +STUB("ZHZ6QZ8xHLE", _ZN3sce2np4NpIdC2ERK7SceNpId) +STUB("ZHgtxjIcuSM", mono_create_delegate_trampoline) +STUB( + "ZHkU8CmmW4E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("ZHsmiChQLTk", FTA_Export_Module_winfonts) +STUB( + "ZHtG2A2fRJg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEE7get_refEv) +STUB("ZHtXh2C74sE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEEaSERKS7_) +STUB("ZHvMrBTIkfU", _ZN3sce2Np9CppWebApi7Matches2V116JoinMatchRequestC1EPNS1_6Common10LibContextE) +STUB( + "ZHxt8oScPx0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEE3getEv) +STUB("ZHyPFSIRgKQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEEdeEv) +STUB("ZHzwjehXPR4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia6VideosEE3setEv) +STUB( + "ZI1X0DZdgxU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEC2EPS9_) +STUB("ZI2IUkQLm0w", _ZN7WebCore20ISOOriginalFormatBox11boxTypeNameEv) +STUB("ZI4mwckKD1s", _ZN9Inspector27LayerTreeFrontendDispatcherC1ERNS_14FrontendRouterE) +STUB( + "ZI7vwI+OxZM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEE11get_deleterEv) +STUB( + "ZIBEeJekiL4", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS5_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISE_SF_EE) +STUB("ZIE9TMazHLY", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setSecondaryAudioDefaultLang) +STUB("ZIFUDmJiS7M", EVP_aes_128_gcm) +STUB( + "ZIFkf7zh3Bs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("ZIKGk+35UDU", sceShellCoreUtilGetAppLaunchTypeInfo) +STUB("ZIM7XSHmna4", + _ZN15AbstractStorage14TwitterContentC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) +STUB( + "ZIVW0zZUB4E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEmmEi) +STUB( + "ZIX+0+SODKM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE21intrusive_ptr_sub_refEPS9_) +STUB("ZIXln2K3XMk", sceAcmContextCreate) +STUB("ZIao0n0x1-w", sceSaveDataDebugProspero) +STUB("ZIcknjuQst4", mtx_write) +STUB("ZIu01xdX14E", delegate_virtual_invoke_27) +STUB("ZIuFpA7mgYY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEEC2EPS5_PNS2_10LibContextE) +STUB("ZIyKMovAI5c", _ZN7WebCore16ResourceResponseD2Ev) +STUB("ZJCgt+aPHAU", sceAmprAmmCommandBufferMapAsPrt) +STUB( + "ZJDcgEt1S1I", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEptEv) +STUB( + "ZJDqN5lEWRk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE10setContextEPNS2_10LibContextE) +STUB( + "ZJFbtKdGPW0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE5emptyEv) +STUB( + "ZJGxlXWWtrw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("ZJJCpaewujw", mono_aot_Sce_Vsh_PsnMessageUtilmethod_addresses) +STUB( + "ZJJbrOG1VzI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEC1Ev) +STUB("ZJPqg9OExng", _ZN4Manx21getPlatformFamilyListEPKwj) +STUB( + "ZJSITmcqRH4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEptEv) +STUB("ZJYGaq4z9Pc", _ZN7WebCore31CrossOriginPreflightResultCache9singletonEv) +STUB( + "ZJZO3hhBHr0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("ZJbPQt+FTnY", _ZN3sce2np10JsonParserC2EP16SceNpAllocatorEx) +STUB( + "ZJenaMlOAAU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEE11release_refEv) +STUB( + "ZJfDMbHe5g4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEED2Ev) +STUB("ZJgKN+own3w", _ZN3sce3Xml11InitializerC1Ev) +STUB( + "ZJnJ3aFV7Ik", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE21intrusive_ptr_sub_refEPS9_) +STUB("ZJoH31B-NCA", mono_assembly_name_free) +STUB( + "ZJoYuLX2zu0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEppEi) +STUB( + "ZJp7oHmYPuI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEEcvbEv) +STUB("ZJsmiAGWwZQ", _ZN7WebCore8XMLNames9spaceAttrE) +STUB("ZJvtsevwowQ", BN_print) +STUB("ZJvxn6JiCB4", ucnv_createConverterFromPackage_67) +STUB( + "ZJztl7BiE+s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEC2Ev) +STUB("ZK++kZngbwY", _ZN3JSC14JSModuleRecord6s_infoE) +STUB( + "ZK2hLd1oD5A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEE3getEv) +STUB( + "ZK4Hg1dHMlw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEC1Ev) +STUB( + "ZKHI3YW1alk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEED1Ev) +STUB("ZKJtxdgvzwg", sceUserServiceGetAccessibilityPressAndHoldDelay) +STUB("ZKKEsuemxEU", EVP_PKEY_get0_RSA) +STUB( + "ZKb0voJG6EE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEEdeEv) +STUB( + "ZKeA8GWE7xM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("ZKelftVx9w0", _ZN7WebCore16HTMLImageElement6heightEb) +STUB( + "ZKfhUXs3eWw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEE21intrusive_ptr_sub_refEPS7_) +STUB("ZKhzRGuFjeM", sceCesUtf32ToEucJp) +STUB( + "ZKic+2qdrj0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEC2ERS7_) +STUB("ZKk9-AHMjCU", _ZNK3sce2Np9CppWebApi7Matches2V111AddedPlayer6toJsonERNS_4Json5ValueEb) +STUB("ZKmuiiXowKo", GCC_except_table94) +STUB("ZKoQ93jJHto", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEEppEi) +STUB( + "ZKqQ9LWQlEQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEEC2ERSA_) +STUB("ZKtM61uk9qQ", uhash_setResizePolicy) +STUB("ZKw-MchK+zQ", _ZN3JSC7Symbols26repeatCharacterPrivateNameE) +STUB("ZKyMbKOSWgU", ustrcase_internalToLower_67) +STUB( + "ZL1djzM1-F0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("ZL5Azk2U+XI", _ZNK3sce2Np9CppWebApi11Matchmaking2V19Submitter14accountIdIsSetEv) +STUB( + "ZL5Znq6YsMY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEixEm) +STUB("ZL6+aTbbWQ0", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V15OwnerC2EPNS1_6Common10LibContextE) +STUB("ZL9FV4mJXxo", __cxa_rethrow) +STUB("ZLB1hEaND1Q", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12string7IsSetEv) +STUB( + "ZLEuFwyQvsM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEC2Ev) +STUB("ZLHIMOYVWWE", + _ZN3sce2Np9CppWebApi11UserProfile2V125GetBasicPresencesResponseC2EPNS1_6Common10LibContextE) +STUB("ZLINx2XbQQ8", CommerceDialogRedeemPromotionCode) +STUB("ZLJ+jUcA3Yg", _ZSt9use_facetISt8messagesIwEERKT_RKSt6locale) +STUB( + "ZLJ1vTuz6sA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEC1Ev) +STUB("ZLJk9r2+2Aw", sceAgcDriverUnregisterOwnerAndResources) +STUB("ZLWtNUP6R5E", sceAmprCommandBufferWriteAddressFromCounterPairOnCompletion) +STUB("ZLdJyQJUMkM", sceNetConfigWlanAdhocCreate) +STUB("ZLiZOtVgfFE", _ZN3sce7Toolkit2NP2V210Tournament15TeamVsTeamMatchD2Ev) +STUB("ZLjAhq-2lvE", _ZN7WebCore8Document15allDocumentsMapEv) +STUB("ZLr-Jodgtfg", rgctx_fetch_trampoline_rgctx_71) +STUB( + "ZLvRUArLS1w", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEixEm) +STUB("ZLvf6lVAc4M", pthread_mutexattr_setprioceiling) +STUB( + "ZLxtWNATKFQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEED1Ev) +STUB("ZMBqEEys59o", __mult_D2A) +STUB("ZMCU-QzKIeU", ufmt_getDouble_67) +STUB("ZME71iqnOSo", _ZN2GK9PlayerPSN11setSettingsEPKcb) +STUB("ZMGIX9bvfck", + _ZN3sce2Np9CppWebApi14SessionManager2V128ResponseGameSessionSpectator11setPlatformEPKc) +STUB("ZMKa3uRT4JA", + _ZN7WebCore21JSCSSStyleDeclaration13visitChildrenEPN3JSC6JSCellERNS1_11SlotVisitorE) +STUB("ZMQWX9LYLi0", intro_sort) +STUB( + "ZMT80joXiBQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("ZMUW7hOUCOw", mono_aot_Sce_Vsh_Np_IdMapperplt_end) +STUB("ZMWkuB0Pr5g", _ZN3IPC15ArgumentDecoder6decodeERd) +STUB( + "ZMa0dfrNRQw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE3endEv) +STUB("ZMgs2ABMLj0", rgctx_fetch_trampoline_rgctx_122_p) +STUB("ZMjPSdkhEqw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEED2Ev) +STUB("ZMn3clnAGBA", pthread_spin_init) +STUB( + "ZMqYyXC-RXg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "ZMrZcZwdERA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEE7get_refEv) +STUB("ZMskokGFzRk", sceMbusDumpProcMediaInfoAll) +STUB("ZMt1qFgeRyM", WKStringGetCharacters) +STUB( + "ZN-glpk0Rug", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEneERKS9_) +STUB("ZN29SJwEFIQ", mono_shared_mutex_get) +STUB("ZN4Udtplcb8", _ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody9pcIdIsSetEv) +STUB("ZN4fyOtHNl4", _ZN3JSC7WeakSet13findAllocatorEv) +STUB("ZN4kQNLpw6Q", _ZN12video_parser5vpcom13UTF16stoUTF8sEPKtjPhPj) +STUB("ZN53fEYaMhE", mono_runtime_set_has_tls_get) +STUB("ZN7g2t6NxQQ", unumsys_getDescription_67) +STUB("ZNFyGf1tkF0", _ZN3WTF10TextStreamlsEb) +STUB("ZNIuJjqdtgI", sceSystemServiceGetLocalProcessStatusList) +STUB("ZNMUPGLACI0", _ZNK7WebCore12DOMTokenList8containsERKN3WTF10AtomStringE) +STUB( + "ZNOWZfBLwSY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEeqERKS9_) +STUB( + "ZNOa9DxnTUY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEC2Ev) +STUB("ZNVtJh6plmE", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge13ChallengeDataEE3setEv) +STUB("ZNcVedSjvxA", _ZN3sce7Toolkit2NP2V28Matching4DataC2ERKS4_) +STUB( + "ZNdqR4juqr0", + _ZN9Inspector24NetworkBackendDispatcher26setResourceCachingDisabledElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("ZNhIVqNPAzk", uscript_getCode_67) +STUB("ZNkZqExWyhg", umsg_open_67) +STUB("ZNoAobfQK2o", Java_java_awt_GnmGraphicsDevice_disposePSD) +STUB("ZNoISOWfS+w", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V129MatchCompletionRateProperties12getCompletedEv) +STUB("ZNrBmVElSLk", JVM_AllocateNewArray) +STUB("ZNrq7K50qKI", sceDebugGetEventSubscriptionList) +STUB( + "ZNuJlvivvBQ", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISE_SF_EE) +STUB("ZNxQqUV7cq4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEEplEm) +STUB("ZNxejqPUqoY", MvpHttpDeInit) +STUB("ZO1VvlH3BNo", + _ZN3sce2Np9CppWebApi11UserProfile2V111PresenceApi28ParameterToGetBasicPresencesaSERS5_) +STUB( + "ZO26cBMex2w", + _ZN3sce2Np9CppWebApi14SessionManager2V162PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyFactory7destroyEPNS3_55PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyE) +STUB("ZO2eHs5Xilc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE8capacityEv) +STUB("ZO2nWoTAv60", pselect) +STUB("ZO39wK-KwXE", _ZN7WebCore15SQLiteStatement4stepEv) +STUB("ZO3a6HfALTQ", _ZNSt7collateIwED1Ev) +STUB( + "ZO75Z-NRE1Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEEptEv) +STUB("ZO8MOyrVom4", sceDebugGetProcessResourceStatCount) +STUB( + "ZO9nDRXVNe8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEixEm) +STUB("ZOCrQPsxrj4", sceUpsrvUpdateGetObfuscatedString) +STUB("ZOGrxWLgQzE", sceAudio3dPortFlush) +STUB("ZOHgNNSZq4Q", _ZN3sce2np6HandleD0Ev) +STUB("ZOITb9TRwus", Java_java_io_FileOutputStream_close0) +STUB( + "ZOIvhnZ+v8g", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V136GetMultiVariablesResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_29GetMultiVariablesResponseBodyEEE) +STUB( + "ZOPi91lm3Qs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEE11release_refEv) +STUB( + "ZOWvFlbCVk4", + _ZN7WebCore12ChromeClient29postAccessibilityNotificationERNS_19AccessibilityObjectENS_13AXObjectCache14AXNotificationE) +STUB( + "ZOhXOen3KRs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEE11release_refEv) +STUB("ZOkUts9SDYo", _ZN3sce7Toolkit2NP2V28Matching5Rooms8deepCopyERKS4_) +STUB("ZOlsvpZ-rUs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEC2Ev) +STUB("ZOqdUg9P4SM", uprv_pow10_67) +STUB( + "ZOr8kBtna3s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEC2EPNS2_10LibContextE) +STUB( + "ZOrgT2Z6BKw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEixEm) +STUB("ZOt9NGpVYrE", _ZN7WebCore12ChromeClient25shouldNotifyOnFormChangesEv) +STUB("ZOtyIAiYyjs", WKBundleActivateMacFontAscentHack) +STUB("ZP0ti1CRxNA", sceUserServiceSetAccessibilityKeyremapEnable) +STUB( + "ZP202GgegSg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEC1Ev) +STUB("ZP4e7rlzOUk", sceSaveDataMount3) +STUB("ZP6QSaYxEQw", mspace_is_heap_empty) +STUB("ZP7HoT1xB1M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEE11release_refEv) +STUB( + "ZP8Gb9LF1cI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEEaSERKSA_) +STUB("ZP9P7ODuiwc", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE3endEv) +STUB("ZPD1YOKI+Kw", sceRtcGetCurrentClockLocalTime) +STUB("ZPE2BLWUvaE", _ZNK7WebCore7Element12getAttributeERKN3WTF12AtomicStringE) +STUB("ZPLavCKqAB0", sceNpSignalingActivateConnectionA) +STUB( + "ZPUDWmgk5Jo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEEaSERKSA_) +STUB("ZPWTRiiu6N0", _ZN3JSC8Profiler8DatabaseD2Ev) +STUB( + "ZPYUrthiYpw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEneERKSA_) +STUB("ZPZn0hrzgPY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEeqERKS9_) +STUB( + "ZPa0k61jrjs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEEC2ERSA_) +STUB("ZPhCI3jKe5g", _ZN7WebCore19JSHTMLSelectElement15subspaceForImplERN3JSC2VME) +STUB("ZPhz6tYV1ZU", _ZN3JSC21objectConstructorSealEPNS_14JSGlobalObjectEPNS_8JSObjectE) +STUB("ZPi0MY2uifk", WKBundlePageSetCompositingPolicyOverride) +STUB("ZPlZo-3S8XM", _ZN7WebCore4Page28disableICECandidateFilteringEv) +STUB("ZPm4ROwjxi4", sceFiosShutdownAndCancelOps) +STUB( + "ZPttrtPHxGc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("ZPuAH1rVJ7k", _ZNK7WebCore11RenderStyle15fontDescriptionEv) +STUB("ZQ2RIeJ8PhA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEEC1EPS6_) +STUB( + "ZQ6v9SwIr5o", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB( + "ZQ9YspE7fkg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEmmEi) +STUB("ZQAK8OGpDO4", _ZN3JSC8JSObject9classNameEPKS0_RNS_2VME) +STUB("ZQAgWkmRzGs", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V110AvatarSizeEEppEi) +STUB( + "ZQID6ioa3dA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE7popBackEv) +STUB( + "ZQOeiyv9Rfs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEneERKS9_) +STUB("ZQR5D3DAAb8", ulocimp_forLanguageTag) +STUB("ZQT4-5fhf7A", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging16GameDataMessagesEE3getEv) +STUB("ZQVMLgFrQcU", _ZN7WebCore9HTMLNames7headTagE) +STUB("ZQXE-xS6MTE", sceAudioPropagationPortalDestroy) +STUB("ZQajS19Ixzw", _ZN3sce7Toolkit2NP2V211SharedMedia6VideosC2ERKS4_) +STUB( + "ZQf0aXzgPLU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEaSERKS9_) +STUB( + "ZQfpnqfnX8g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEC1ERS8_) +STUB( + "ZQvty95h+6w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "ZQy0HY9qRhM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEEcvbEv) +STUB("ZQzCTmA7FJo", + _ZN3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead11setOnlineIdERK13SceNpOnlineId) +STUB("ZQzXwokCnUE", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container11getChildrenEv) +STUB("ZR3bI0WBEBo", mono_aot_Sce_Vsh_DataTransferplt) +STUB("ZRAJo-A-ukc", in6addr_any) +STUB("ZRAcn3dPVmA", fwprintf) +STUB( + "ZREWcIENsvI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE8capacityEv) +STUB( + "ZRHezFHr+r0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE5beginEv) +STUB("ZRHyhWkJpD8", WKContextGetTypeID) +STUB( + "ZRNFvvkf6E0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEC1Ev) +STUB("ZRRBeuLmHjc", _ZNKSbIwSt11char_traitsIwESaIwEE5_XlenEv) +STUB( + "ZRUEQJFfBjg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEmmEv) +STUB("ZRWRAA2Sygg", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE4sizeEv) +STUB("ZRXu8ZHZCaw", _ZN7WebCore24CoordinatedGraphicsLayer17syncPlatformLayerEv) +STUB("ZRYGj8fm6dg", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_18GameCustomDataItemEE3getEv) +STUB("ZRYIgiJ9pn0", _SCSUData_67) +STUB( + "ZRZViZyNqSA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEC1Ev) +STUB( + "ZRd2Dsggric", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Network12NetworkStageEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB("ZRfyTwW-Xx8", _ZNK7WebCore6Widget6parentEv) +STUB("ZRga3V8LApU", _ZN9Inspector28DOMStorageFrontendDispatchernwEmPv) +STUB("ZRidQhxpVdw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEEC1Ev) +STUB("ZRkjOjpLlMw", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126BandwidthDownstreamMetrics10setAverageERKi) +STUB( + "ZRpWp5TmrBo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEED2Ev) +STUB("ZRqvUUd8pjA", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V114ResultsVersionEEppEv) +STUB("ZRqxGlHZaAM", mono_profiler_install_statistical) +STUB( + "ZRuCIjF9+tg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEC2Ev) +STUB("ZRxKp9vjcNc", sceNpUtilGetWebApi2FakeRateLimitTarget) +STUB("ZRz09DedKw0", uenum_close_59) +STUB( + "ZS2Xj2ULcvM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEEptEv) +STUB("ZS5AoprCTt0", sceClPthreadCondattrInit) +STUB( + "ZSA7o2XXe0Y", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEdeEv) +STUB( + "ZSCgCdXKpcA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE21intrusive_ptr_add_refEPS9_) +STUB("ZSDPm9Qz01g", _ZNSs6assignEOSs) +STUB( + "ZSFaeXP4Ep4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEC2Ev) +STUB("ZSHf8kyWYD4", JSValueMakeNull) +STUB("ZSHiUfYK+QI", sceCompanionHttpdUnregisterRequestBodyReceptionCallback) +STUB( + "ZSLuh1mulHw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEC1EPS6_PNS2_10LibContextE) +STUB( + "ZSYqGEMww18", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEEC1Ev) +STUB("ZSaCXB5AHYg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEdeEv) +STUB("ZSbwGCuv2Qs", mono_aot_Sce_Facebook_CSSLayoutjit_got) +STUB("ZScuSU2kBf0", _ZN3JSC11ArrayBuffer9shareWithERNS_19ArrayBufferContentsE) +STUB( + "ZSgNZRdV1fM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEC2Ev) +STUB( + "ZSi7Ar-PFnk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEC1Ev) +STUB( + "ZSlkh6FWYGo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEC2EPS6_PNS2_10LibContextE) +STUB("ZSnFMP-dZxc", + _ZNK7WebCore35CrossOriginPreflightResultCacheItem23allowsCrossOriginMethodERKN3WTF6StringERS2_) +STUB("ZSnX-xZBGCg", stpcpy) +STUB("ZSogkXtiB+0", _ZN7WebCore21SQLiteDatabaseTracker35incrementTransactionInProgressCountEv) +STUB( + "ZSpByyRDWsM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE4sizeEv) +STUB("ZSqQPh-uNFg", _ZN3JSC15IsoHeapCellType7destroyERNS_2VMEPNS_6JSCellE) +STUB("ZSsFitZ4Kpk", sceFiosOpWaitUntil) +STUB("ZSw+Urcp-9k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEC2EPS8_) +STUB( + "ZSyu7e+vNWo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEdeEv) +STUB("ZSzqRHRb3T0", JVM_ConstantPoolGetIntAt) +STUB("ZT27dJZloqk", _ZN7WebCore9ImageDataC2ERKNS_7IntSizeE) +STUB("ZT4ODD2Ts9o", Need_sceLibcInternal) +STUB("ZT8D4+2N9C4", _ZN4Manx3Ssl10SslContextC2Ev) +STUB( + "ZTD-3MVA-ko", + _ZNK7WebCore12RenderObject20localToContainerQuadERKNS_9FloatQuadEPKNS_22RenderLayerModelObjectEjPb) +STUB("ZTJiZPZvNk4", sceKernelGetHwFeatureInfoForDecid) +STUB( + "ZTQLToG7q2g", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE5beginEv) +STUB( + "ZTRQrcIUiqw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("ZTXJzqD72E8", mono_reflection_get_token) +STUB( + "ZTcvy6ei9jA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEptEv) +STUB( + "ZTdBBf4q7ck", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEmmEv) +STUB("ZThM23+9DUQ", _ZNK7WebCore8Settings18webSecurityEnabledEv) +STUB("ZTvtpu2RusU", mono_get_exception_argument_out_of_range) +STUB( + "ZTwXyiKhMYE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEppEi) +STUB("ZTyXRafozvY", __sanitizer_get_unmapped_bytes) +STUB("ZTzz2r6zLoc", _ZN7WebCore26Matrix3DTransformOperation5blendEPKNS_18TransformOperationEdb) +STUB("ZU+VVx9VY6A", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE7popBackEv) +STUB("ZU0aQNKeTng", + _ZN12video_parser13cVideoMetaVWG8getTitleENS_9VP_LANG_eEjNS_15VP_SEARCH_OPT_eEPS1_Pv) +STUB( + "ZU28vnJ-00I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEC1EPS6_PNS2_10LibContextE) +STUB("ZU4MapJqM0U", _Z20WTFCrashWithInfoImpliPKcS0_immmm) +STUB( + "ZU8NdWWWIF8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEC2EPS7_PFvS9_EPNS2_10LibContextE) +STUB( + "ZUBIWczBrj8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEEC1ERSA_) +STUB("ZUCCeNoWQ8o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEE7add_refEv) +STUB("ZUE7L2XTaRc", _Z21sendIpmiDisconnectResii) +STUB( + "ZUESIxcE610", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "ZUG-DhjZGQA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEeqERKS9_) +STUB( + "ZUGdA30Pf8I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEED2Ev) +STUB("ZUJb7X6rU+I", WKBundlePageSetUnderlayPage) +STUB("ZUMUxvly5Iw", WKPageRunBeforeUnloadConfirmPanelResultListenerGetTypeID) +STUB( + "ZUMm3T5rXKM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "ZURKamtpfxo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB("ZUSGrA0mt2E", WKPageGetVibration) +STUB( + "ZUUBK5doDkU", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB( + "ZUUueIh0er4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEptEv) +STUB("ZUXxKPpGQ1s", sceNpTcsIntUploadDataToNewSlotBegin) +STUB("ZUcBjUH-Agc", fchownat) +STUB("ZUf92uPkRuA", _ZN3sce2np10MemoryFileD1Ev) +STUB("ZUieLDbr8zU", JVM_GetFieldIxModifiers) +STUB( + "ZUkZoMkvm6Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEmmEi) +STUB("ZUm8heKi4SY", _ZNK7WebCore13HitTestResult12selectedTextEv) +STUB("ZUn0ZQBDyVQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEptEv) +STUB("ZUo8cAh5uyc", sceAudioOut2UserCreateEx) +STUB("ZUoKWZ2dJVo", SHA256) +STUB( + "ZUpcoUzgNGg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE23clearOnFinishedCallbackEv) +STUB( + "ZUqFmg2-bc0", + _ZN9Inspector22InspectorDebuggerAgent18setBreakpointByUrlERN3WTF6StringEiPKS2_S5_PKiPKNS1_8JSONImpl6ObjectEPS2_RNS1_6RefPtrINS8_7ArrayOfINS_8Protocol8Debugger8LocationEEENS1_13DumbPtrTraitsISI_EEEE) +STUB("ZUvemFIkkhQ", nanl) +STUB( + "ZUwVjfy2JIc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "ZV-07hvdJf4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEC2Ev) +STUB( + "ZV-vaVr5Cxo", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEEC2ERKSC_) +STUB("ZV04pRl7cWU", sceAgcDriverSuspendPointSubmitDirect) +STUB( + "ZV0jtWgJomk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEC2EPS8_) +STUB("ZV7ocqHAbpc", _ZN7WebCore14SchemeRegistry32registerURLSchemeAsEmptyDocumentERKN3WTF6StringE) +STUB( + "ZVGyImrjQmk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEneERKS9_) +STUB("ZVIQnc+YW8k", _ZN7WebCore11MathMLNames11mphantomTagE) +STUB("ZVJYLNEOkSM", _ZN3sce7Toolkit2NP2V212ActivityFeed13ButtonCaptionD2Ev) +STUB("ZVKFNX73ZFA", _ZTVN3JSC32JSDestructibleObjectHeapCellTypeE) +STUB("ZVMhnReGqSA", _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectERNS_9DOMWindowE) +STUB( + "ZVP30qKoz2g", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13integer7IsSetEv) +STUB("ZVPYiIh8mkQ", sceLibcGetFH) +STUB("ZVRXXqj1n80", sceAppMessagingTryReceiveMsg) +STUB( + "ZVVbWZAXcoM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEED1Ev) +STUB( + "ZVW8vpA-LO4", + _ZN3JSC7JSProxy17defineOwnPropertyEPNS_8JSObjectEPNS_9ExecStateENS_12PropertyNameERKNS_18PropertyDescriptorEb) +STUB( + "ZVcDknEmqgk", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_13WhoLikedStoryENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB( + "ZVmnhTdsIz4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEmmEi) +STUB( + "ZVoZm66RCz8", + _ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime18PropertyDescriptorEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE) +STUB( + "ZVoxbZlKv7M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEED2Ev) +STUB( + "ZVpEkHLDZbI", + _ZN7WebCore15AsyncFileStream7performEON3WTF8FunctionIFNS2_IFvRNS_16FileStreamClientEEEERNS_10FileStreamEEEE) +STUB("ZVw46bsasAk", sceNetEpollControl) +STUB("ZVwY7ywc-0U", _ZN9Inspector31RuntimeBackendDispatcherHandlerC2ERKS0_) +STUB( + "ZVxECtt7xFI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEmmEi) +STUB("ZVyMTXVUQN0", _ZN3WTF20ConcurrentPtrHashSetC2Ev) +STUB("ZW-JeYbrPUs", _ZN7WebCore5Color5whiteE) +STUB("ZW3BdLBLfJk", ucase_addCaseClosure_67) +STUB( + "ZW5b+XvHdtc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEEC1ERKS9_) +STUB("ZW5gWeh6BKQ", _ZN3WTF11Persistence5CoderINS_6StringEE6decodeERNS0_7DecoderE) +STUB("ZW67WS+Nw+U", bemp2sys_tsdecoder_readpacket) +STUB( + "ZW99w7vkhd4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEE5resetEPS6_) +STUB( + "ZW9B+IZLv6k", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEcvbEv) +STUB("ZWAUCzgSQ2Q", sceUserServiceSetGlsLiveQuality3) +STUB("ZWByLSRPaWI", _ZN12video_parser10cVideoPathD0Ev) +STUB("ZWEcg5Lqdfk", _ZNK3sce7Toolkit2NP2V24Core12ResponseBase8getStateEv) +STUB("ZWG33zgbyzU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEED2Ev) +STUB("ZWH0i9XDup8", _Z17Ime_KbdOpenNativeRN3sce11playstation4core3Ime24ImeKeyboardParamInternalERm) +STUB("ZWHHJjopNwQ", uprv_strnicmp_67) +STUB("ZWHpG+3pbDg", _ZN3WTF13StringBuilder16appendCharactersEPKDsj) +STUB( + "ZWIbysO6daU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE21intrusive_ptr_sub_refEPS9_) +STUB("ZWJCSrdfz0s", _ZN7Nicosia5Scene5StateC2Ev) +STUB( + "ZWKbsVxqpNg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "ZWKhVWzl2Sc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "ZWLkuC5zaqE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB("ZWNK+VuChkg", _ZN3sce7Toolkit2NP2V24Core12ResponseBase14setServerErrorEPNS3_11ServerErrorE) +STUB("ZWNwgNgglzA", ktimer_settime) +STUB("ZWZ9KqoIvQY", _ZN3sce2npeqERK20SceNpCommunicationIdRKNS0_8NpCommIdE) +STUB("ZWaIXu1kBfM", _ZTVN7WebCore11DisplayList14DrawTiledImageE) +STUB( + "ZWg2npbCphY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEptEv) +STUB( + "ZWmiee3f15w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEE5resetEPS8_) +STUB("ZWr8smW+8PM", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V125FrequentlyMutedProperties9getInGameEv) +STUB("ZWy6IcBqs1c", _LSinh) +STUB("ZX4HdM17Q9U", _ZN12Mp4Retriever18releaseFileMetaValEv) +STUB("ZX6m4a48iEw", _ZN3sce7Toolkit2NP2V28Matching4DataD2Ev) +STUB("ZX7C79uOujU", sceVideoOutRazorAddCallback) +STUB("ZXAZZ7QZyv8", rgctx_fetch_trampoline_rgctx_103_p) +STUB( + "ZXBP4-+u7gc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEC1Ev) +STUB( + "ZXE6sklM--Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEC1ERKS7_) +STUB( + "ZXEqSBP0CZY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEEcvbEv) +STUB( + "ZXFWZCuOlwg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEC2ERS7_) +STUB("ZXKMi2AM4t8", _ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead19getPlayerAttributesEv) +STUB( + "ZXOaZ7WuRUk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEEC1ERKSA_) +STUB("ZXTUvqK3vIs", WKPageCopyPendingAPIRequestURL) +STUB("ZXVwElkkATY", sqlite3_column_name) +STUB( + "ZXZ2BpHclI8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("ZXas4c1380Y", _ZN3sce2Np9CppWebApi6Common10InitParamsC2Ev) +STUB("ZXdUAtz5eLc", rgctx_fetch_trampoline_mrgctx_8) +STUB("ZXeBY+jrHTw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE5beginEv) +STUB( + "ZXg1jfli+30", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEE7add_refEv) +STUB("ZXiewmkaUY4", _ZN3sce7Toolkit2NP2V24Core13CallbackEventC1Ev) +STUB("ZXlTj9RRCFo", sceNpLookupNetIsInit) +STUB( + "ZXoMdrENaw0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEE11get_deleterEv) +STUB( + "ZXpyWgv73tc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEED2Ev) +STUB( + "ZXqAKG76ZDk", + _ZN3JSC14SourceProviderC2ERKNS_12SourceOriginERKN3WTF6StringERKNS4_12TextPositionENS_24SourceProviderSourceTypeE) +STUB( + "ZXsB96JmvE4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEED1Ev) +STUB( + "ZXsM05qxOic", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "ZXtRMSo4wzE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("ZXx+m54cNzU", _ZN3sce7Toolkit2NP2V24Core7Request11MemoryPools29MATCHING_SSL_MEM_DEFAULT_SIZEE) +STUB("ZXz01hGaKEc", WKMediaSessionMetadataCopyAlbum) +STUB("ZY6efASWaMo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEptEv) +STUB( + "ZYCsgBtR+SU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE8pushBackERKS8_) +STUB( + "ZYKQ1cnf4ao", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V113RatingFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_6RatingEEE) +STUB("ZYTeS6sMzYY", _ZN3sce2np9JsonValue7GetBoolEv) +STUB( + "ZYTehDq4VkA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEptEv) +STUB("ZYUsJtcAnqA", sceRemoteplayClearAllRegistData) +STUB( + "ZYVBgygjc2s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("ZYW6lkVPGBM", sceIduInstallPkg) +STUB("ZYdl3SzwX6U", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE5beginEv) +STUB( + "ZYeqvCwkx7M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEppEv) +STUB("ZYf8J3iAOqA", _ZN7WebCore19ProtectionSpaceBaseC1Ev) +STUB("ZYg+xsX7SO4", _ZN3sce7Toolkit2NP2V210Wordfilter7Request13FilterCommentD1Ev) +STUB("ZYg4MopBVCM", sceSdmaCopyLinear) +STUB( + "ZYloQE9UsrE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEE11release_refEv) +STUB("ZYpIYZg3Jf4", FTA_Add_Module_type42) +STUB( + "ZYpuc8benBo", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot9setoffsetEi) +STUB("ZYvVSBndbac", mono_aot_Sce_Vsh_PatchCheckerClientWrapperunwind_info) +STUB("ZYxFeQKHURA", _ZN3sce7Toolkit2NP2V27NpUtils12Notification15UserStateChange5resetEv) +STUB( + "ZZ0GOVnbkr8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE5emptyEv) +STUB("ZZ2l9nX-CoM", _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectERNS_11WindowProxyE) +STUB( + "ZZ2lh9PK4S8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB( + "ZZAKLFgj514", + _ZN3JSC17JSArrayBufferView19ConstructionContextC2ERNS_2VMEPNS_9StructureEjjNS1_18InitializationModeE) +STUB("ZZF6cY5Riuo", _ZN25MmsFileUpdaterFsOperation19seekAndWriteTmpFileEmPKvmb) +STUB("ZZNUVGd-+NU", JVM_GetMethodIxExceptionsCount) +STUB("ZZVbcioBE+8", pR3) +STUB("ZZYNA4dAAIE", sceVisionManagerRequestFindFace) +STUB( + "ZZatQfN13so", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("ZZiJXuN2QAg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEEaSERS6_) +STUB("ZZiPqOZ9Huc", u_tolower_67) +STUB( + "ZZlZIxdUq-M", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12unsetString8Ev) +STUB( + "ZZlk8D83dCs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEEdeEv) +STUB("ZZnvlKc8nfg", sceVdecCoreCreateDecoderBid) +STUB( + "ZZpDSZob2Bs", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSession10initializeEPNS1_6Common10LibContextEPKcSA_) +STUB( + "ZZrb2FEDC+U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEC1Ev) +STUB( + "ZZup5BKXjPs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEEC2EPS5_PFvS7_EPNS2_10LibContextE) +STUB( + "ZZxQfRQu3vY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEcvbEv) +STUB("ZZyQC5ZdhCc", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container7getTypeEv) +STUB("Za00SEoNA2A", _ZN3sce2np13RingBufMemory7DestroyEv) +STUB("Za1R5SRCnkU", _ZN7WebCore19TextResourceDecoder14decodeAndFlushEPKcm) +STUB("Za36l2vh+b4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEE5resetEPS6_) +STUB("ZaEVF6WqBP8", sceNetCtlApDialogGetResult) +STUB("ZaGEsEbmOuU", _ZN4Manx6CookiedlEPv) +STUB("ZaKa5x61hGA", sceNpDbgDumpText) +STUB("ZaMKAXv7fAA", _ZN7WebCore24CachedResourceHandleBaseC1ERKS0_) +STUB( + "ZaMkUEk2Cwk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("ZaOkYNQyQ6g", _ZNSt14numeric_limitsIDsE9is_signedE) +STUB( + "ZaQJzJSw-YE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEppEv) +STUB("ZaRzaapAZwM", preadv) +STUB( + "ZaaLkKqlCEw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEC1Ev) +STUB( + "ZaitN1imkFY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEED2Ev) +STUB("Zaq5vA9JWl0", _ZN7WebCore8SVGNames12glyphRefAttrE) +STUB("ZaqmGEtYuL0", sceCameraGetConfig) +STUB("Zar6r4gb+Hg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE7reserveEi) +STUB("ZaruuGScLRc", ucnv_getDisplayName_67) +STUB( + "ZauniffNPXU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEC1EPS8_) +STUB("ZawVzy-gSAM", GCC_except_table321) +STUB( + "ZayQjYR0lMk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("ZazflmmNNO8", g_markup_parse_context_new) +STUB("Zb+hMspRR-o", _ZSt13get_terminatev) +STUB( + "Zb2e8DyghlI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEC1EPKS8_) +STUB("Zb70g9IUs98", _Xp_getw) +STUB("Zb8BCzTmk2A", _ZN3JSC25JSInternalPromiseDeferred6rejectEPNS_9ExecStateENS_7JSValueE) +STUB("ZbAJcQ5-nPg", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_20NpSessionInformationEEC1Ev) +STUB( + "ZbGcFW4UHbs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEE21intrusive_ptr_add_refEPS7_) +STUB( + "ZbKvYWb6t64", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersD1Ev) +STUB("ZbMnsXy+ktY", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Publisher7setNameEPKc) +STUB("ZbNaHhHxrAA", GCC_except_table386) +STUB( + "ZbNxhFV1RZ8", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessionsD2Ev) +STUB("ZbQUmtQrKl8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEE5resetEPS6_) +STUB("ZbRq4rFyAVQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEE3getEv) +STUB("ZbY5LxmH6uA", sceShellCoreUtilGetFreeSizeOfUserPartition) +STUB("Zbaaq-d70ms", _ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED1Ev) +STUB("ZbdPHUm7jOY", sceNpWaitEventFlag) +STUB( + "ZbgewgdB8HE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEdeEv) +STUB("ZbhuiY0ENSk", mono_aot_ReactNative_Modules_Vsh_Gct_Telemetryjit_code_start) +STUB( + "ZbiEb3Kfs7Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEC1Ev) +STUB("ZbitD262GhY", sceNpTusTryAndSetVariableVUser) +STUB("Zbly+omPcrw", X509_get0_notBefore) +STUB( + "ZbmGVXT0FRo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEE5resetEPS6_) +STUB( + "ZbmkbAmyAW0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEED1Ev) +STUB("ZboDItLlMbg", mspace_atomic_id_mask) +STUB( + "Zbr2RFNUcUI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEptEv) +STUB( + "Zbr2ZBysIQ0", + _ZNK7WebCore12EventHandler20hitTestResultAtPointERKNS_11LayoutPointEN3WTF9OptionSetINS_14HitTestRequest11RequestTypeEEERKNS_10LayoutSizeE) +STUB("ZbuRdLX43qM", + _ZSt9use_facetISt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale) +STUB("ZbyfYeyVajk", sceVideoRecordingInitialize) +STUB("ZbywEL0q2VU", _ZN7WebCore8SVGNames14viewTargetAttrE) +STUB("Zc+a6k6i7gY", _ZN3sce2np4Time8AddHoursEl) +STUB("Zc-CpKphsys", _ZN3sce7Toolkit2NP9Utilities10FutureImplD2Ev) +STUB("Zc0mKRRn5hk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEE7get_refEv) +STUB("Zc34winWfMA", _ZN3sce7Toolkit2NP2V28Presence7Request11GetPresenceC1Ev) +STUB("Zc51WImhVbk", ubidi_getPairedBracket_67) +STUB( + "Zc6EZEmNnl8", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V125FrequentlyMutedProperties10setInPartyERKNS1_6Common12IntrusivePtrINS3_29FrequentlyMutedInPartyMetricsEEE) +STUB("Zc9R8DoDXAc", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112UpdateStatusEEmmEv) +STUB("ZcAMuUwcTsE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEE7add_refEv) +STUB("ZcAPE4ibtbk", _ZN3sce7Toolkit2NP2V29Challenge7Request16ConsumeChallengeD2Ev) +STUB( + "ZcAthjKT1i8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEdeEv) +STUB("ZcLLCGKGbjY", _ZN7bmalloc12IsoTLSLayoutC2ERKSt11scoped_lockIJNS_5MutexEEE) +STUB( + "ZcLxizdjM6Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEED1Ev) +STUB("ZcQL0iSjvFw", sceFontFtSupportBdf) +STUB("ZcQzzUTFsJU", _ZNK9Inspector15InspectorTarget13isProvisionalEv) +STUB( + "ZcTxh0fCvWc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEppEv) +STUB( + "ZcV+XOm44P4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEED1Ev) +STUB( + "ZcWlwEgvFpI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEC2ERS8_) +STUB("ZcXGHz0Se7k", _ZN7WebCore18ImageBufferBackend22convertToLuminanceMaskEv) +STUB("Zccx8q149WE", _ZNK3sce2Np9CppWebApi6Common6VectorIdE4sizeEv) +STUB( + "Zcf6UQqIjuo", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB( + "ZcfWrWUwphk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("ZchkY2NZMOM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V117InvitableUserTypeEEeqERKS7_) +STUB( + "Zcj1FEgahCs", + _ZN3sce2Np9CppWebApi14SessionManager2V134GetGameSessionsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_18GameSessionForReadEEEEEPNS9_INS3_27GetGameSessionsResponseBodyEEE) +STUB( + "ZclLRgBNEP8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("ZcrAI6S4NBU", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V18Variable22setLastUpdatedDateTimeERK10SceRtcTick) +STUB("ZcwgROJJWSo", WKProtectionSpaceGetServerType) +STUB("Zd+tvQgPYho", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEcvbEv) +STUB("Zd0RKAHM-Cs", uprv_round_67) +STUB( + "Zd4G5Xj2Wk0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEppEv) +STUB("Zd5Z6TPdFMY", _ZN7WebCore9CSSParserC1ERKNS_16CSSParserContextE) +STUB( + "Zd7AtnhogIw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "ZdAdjOqnUAM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "ZdDISLu3EO4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEC1Ev) +STUB("ZdH8r1BhaMM", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry6toJsonERNS_4Json5ValueEb) +STUB( + "ZdITAa9LW+M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEE11release_refEv) +STUB("ZdJI2nFw5Sk", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable10unsetOwnerEv) +STUB( + "ZdL2vZF1iwY", + _ZN3sce7Toolkit2NP2V210Tournament8getEventERKNS3_7Request8GetEventEPNS2_4Core8ResponseINS3_5EventEEE) +STUB( + "ZdO+TpGGeAM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE8copyFromERKS9_) +STUB("ZdQkzR4i3ps", Java_java_io_ObjectInputStream_bytesToFloats) +STUB("ZdVlyQI3f-c", _ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriendsD1Ev) +STUB( + "ZdbZ31GUph4", + _ZN8meta_gen15ImageController18ParseThumbnailFileENS0_19_ParseThumbnailInfoERNS0_20_ResultThumbnailInfoE) +STUB("ZdbuCtCbYGE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEaSERKS7_) +STUB("Zdcq951Fgg0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEC1ERS7_) +STUB("Zdd5gybtsi0", sceUserServiceSetLoginFlag) +STUB("ZddzeRZf6x8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEEC1EPS6_) +STUB( + "Zde1+uvL7Tw", + _ZNK7WebCore9FrameView35convertFromRendererToContainingViewEPKNS_13RenderElementERKNS_8IntPointE) +STUB( + "ZdrgG2yINlI", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions16hasincludeFieldsEv) +STUB( + "ZdtoDY-b+1k", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEeqERKS9_) +STUB("Zdtwqk-44gU", WKWebsiteDataStoreSetResourceLoadStatisticsDebugMode) +STUB("ZdzEii0dolA", WKBundlePageSimulateMouseMotion) +STUB( + "Zdzw6-H7UZ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEEC1ERSA_) +STUB("Ze4ewrG3utA", _ZThn8_N3sce2np13JsonDocParser13onStartObjectEjj) +STUB("Ze6Y5wZ9qD0", _ZN3sce7Toolkit2NP2V27Session7SessionC2ERKS4_) +STUB("Ze87WZbuWvY", fuse_fs_bmap) +STUB("Ze8F41xEep0", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed4FeedEE12deepCopyFromERS7_) +STUB("Ze8sorOr1+g", _ZN7WebCore9HTMLNames16onbeforecopyAttrE) +STUB("Ze9jymEeFaw", _ZN3sce7Toolkit2NP2V28Commerce8SkuLabel17SKU_LABEL_MAX_LENE) +STUB("ZeCkk-5Q0gE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE3endEv) +STUB( + "ZeCnhtrXJYU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "ZeCwldgxMOQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEEaSERKSA_) +STUB("ZeCy-q3PKoY", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V219WebApiFilterRequest8fromJsonERKNS_4Json5ValueE) +STUB("ZeJH5yn7Ye4", _ZNK7WebCore14ResourceLoader11frameLoaderEv) +STUB("ZeMBTDU48+g", _ZThn40_N7WebCore8DOMTimerD1Ev) +STUB("ZeMeznRWk0w", _ZNK7WebCore8Document4viewEv) +STUB( + "ZeN4vIuyVjM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE5beginEv) +STUB( + "ZePCwN5Z1rU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("ZePDOvkI13A", _ZNK3WTF9MediaTime8toDoubleEv) +STUB( + "ZeRNEIALqAA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB( + "ZeRU9vx66ko", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEC2EPNS2_10LibContextE) +STUB("ZeYpKhsLfG0", sceVrSetupDialogClose) +STUB("Zea3LdT46PY", _ZN7WebCore8SVGNames6cyAttrE) +STUB("ZeaMd3cYs48", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEEaSERS6_) +STUB( + "ZedNZsz57ac", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEEC2Ev) +STUB( + "ZefN6d6xbRo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEC2EPNS2_10LibContextE) +STUB( + "ZehX736dZtA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEEC2ERKSA_) +STUB("Zek8mP3UFuM", uloc_openKeywords_67) +STUB("Zeqe6awrWVM", _ZN7WebCore27PlatformMediaSessionManager20processSystemDidWakeEv) +STUB( + "Zethxor6iQI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEC2ERKS7_) +STUB("ZeubLhPDitw", sceSystemServiceNavigateToGoBackWithValue) +STUB("ZewVaBb1pVQ", _ZN7WebCore21ISOTrackEncryptionBoxaSERKS0_) +STUB("Zex3reFRPzc", _ZN7WebCore26HTMLTextFormControlElement15setSelectionEndEi) +STUB( + "Zf4h0UlAzXs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEaSERS7_) +STUB( + "Zf59eCCIiY0", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsers10initializeEPNS1_6Common10LibContextEPKcSA_) +STUB("Zf5ZxLNVTEw", _ZN3sce7Toolkit2NP2V26Trophy7Request18GetTrophyPackGroupC1Ev) +STUB( + "ZfBCAZm1nm0", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124BandwidthUpstreamMetrics18setConfidenceScoreERKi) +STUB( + "ZfFHoo3Xfrc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEplEm) +STUB("ZfMHgVDYzzY", sceAvSettingChangeOutputMode3) +STUB( + "ZfQISuB9HKE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE21intrusive_ptr_add_refEPS9_) +STUB("ZfQVzLJrgNY", _ZN7WebCore9FrameView17addScrollableAreaEPNS_14ScrollableAreaE) +STUB( + "ZfS2tecUEzk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEC1Ev) +STUB("ZfUouUx2h8w", sceUserServiceSetTraditionalChineseInputType) +STUB( + "ZfWhpKDjLvE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEmmEi) +STUB("ZfaEltcBW3c", utrie_swapAnyVersion) +STUB("ZfcfUuFClfk", _ZN7WebCore32contextMenuItemTagInspectElementEv) +STUB( + "Zfchy2vhGrM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEplEm) +STUB( + "ZfgdnNyfk8E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEE11release_refEv) +STUB( + "ZflIWYmzRuk", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "Zflg9j9fK8o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEE5resetEPS9_) +STUB( + "ZfpC0TJWbBE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEEaSERS9_) +STUB("Zfs3q3gWymA", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku10setEndDateEPKc) +STUB("Zfwffjakq4s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEdeEv) +STUB( + "ZfxNVbp7+08", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUserC2Ev) +STUB("ZfzPxR1H80s", rgctx_fetch_trampoline_rgctx_70_p) +STUB( + "Zg5ph4mngyY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB("Zg8rke998vs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEEC1EPKS6_) +STUB( + "ZgC7osoFuAs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEaSERKS9_) +STUB("ZgHB0Qlh+l0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEEdeEv) +STUB( + "ZgJU-C+mgy4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("ZgJhmu25z0w", _ZN7WebCore10Pasteboard11writeMarkupERKN3WTF6StringE) +STUB("ZgKTOshxDEw", _ZNK7WebCore7Element19beforePseudoElementEv) +STUB( + "ZgNTInJ5Q1k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEmmEv) +STUB("ZgOgSWy1ba4", sceVideoCoreMediaSourceRemoveSourceBuffer) +STUB( + "ZgVbanUw+GA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE8copyFromERKS9_) +STUB("Zgaa3xo5b7g", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V511ContentTypeEEppEv) +STUB( + "Zgb6f40UG2U", + _ZN7WebCore21ComplexTextControllerC1ERKNS_11FontCascadeERKNS_7TextRunERN3WTF6VectorINS7_3RefINS0_14ComplexTextRunENS7_13DumbPtrTraitsISA_EEEELm0ENS7_15CrashOnOverflowELm16EEE) +STUB("ZgbOkbpXeqI", mspace_posix_memalign) +STUB("ZggLwqNsGIk", glGenRenderbuffers) +STUB("ZggTco4I9TI", + _ZNK3sce2Np9CppWebApi14SessionManager2V113PlayerSession6toJsonERNS_4Json5ValueEb) +STUB( + "Zgjv5SDSRuY", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getBoolean5Ev) +STUB("ZgkSGlEl1hk", WTFReportError) +STUB( + "ZgoRH0Y33NI", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsers12getsessionIdEv) +STUB("Zgq19lM+u2U", sceUserServiceSetNpLoginId) +STUB( + "ZgsOB1tM9KI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "ZgwHR6UKzus", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEE7add_refEv) +STUB( + "ZgyR9ujOFFU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEaSERKS9_) +STUB( + "Zh-wop3fWGE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("Zh0SgNokjz4", _ZN3JSC7Symbols49hasObservableSideEffectsForRegExpMatchPrivateNameE) +STUB("Zh1KEFFP74E", _ZN7WebCore20SharedBufferDataViewD2Ev) +STUB("Zh23aSLeeZo", _sceNpAllocatorExFree) +STUB("Zh2uYzsRxA0", ulist_getListFromEnum) +STUB( + "Zh6B8U6jwGg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "ZhEkvCPqM9E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEEC2ERKSA_) +STUB( + "ZhJ3mKK62HA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEC2Ev) +STUB("ZhOwNq3lcpk", curl_easy_getinfo) +STUB("ZhVdSRyrpUI", FTA_Export_Module_bdf) +STUB( + "ZhWxz6kGKwM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEC2EPKS8_) +STUB("ZhiF7wWa-rc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEE7get_refEv) +STUB("ZhqLr0Tldms", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEE11release_refEv) +STUB("ZhtAXOoLNyo", FT_GlyphLoader_Rewind) +STUB("Zhtj6WalERg", _ZNSt14numeric_limitsIDiE6digitsE) +STUB("Zi+rAm6czUg", sceDebugGetProcessEventCntlFlag) +STUB("Zi0UuVhaR7k", mono_field_static_set_value) +STUB("Zi3dBUjgyXI", sceAmprMeasureCommandSizeWriteKernelEventQueueOnCompletion) +STUB("Zi4XKSpB7ss", HttpCacheWrapperRevalidate) +STUB("Zi4zo-U3iDc", JNU_ClassString) +STUB( + "Zi5BJHrzUy0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("Zi6EFA5C2W8", _ZN7WebCore9HTMLNames18onautocompleteAttrE) +STUB("Zi8G4d9xcDg", _ZNK3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer13getPlayerNameEv) +STUB("Zi9OboKYTiw", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS16FriendsVariablesEEC2Ev) +STUB("ZiATpP9gEkA", sceAppContentAddcontDelete) +STUB("ZiBFdjUIV3A", sceMbusAddHandle) +STUB( + "ZiBtVj35O60", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEeqERKS9_) +STUB("ZiDCxUUGbec", sceCesUcsProfileInitSJis1997Cp932) +STUB("ZiDrp+vWE2I", sceAppInstUtilAppStoreCompilationDiscInfo) +STUB( + "ZiJVzYFJjiw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEEC2ERKSA_) +STUB("ZiJqTZVDuPM", _ZNK3sce2Np9CppWebApi6Common8IteratorImEneERKS4_) +STUB( + "ZiXQZUpsBi0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEdeEv) +STUB( + "Zibms4eW+yg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEC1EPS7_PFvS9_EPNS2_10LibContextE) +STUB("ZidcC4PdPik", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEdeEv) +STUB("Zie58FLFGDY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEC1ERKS7_) +STUB("ZinPhQCE6QY", _ZN9Inspector21InspectorRuntimeAgent19disableTypeProfilerERN3WTF6StringE) +STUB("ZinevlqLbHs", _ZN7WebCore9HTMLNames9asyncAttrE) +STUB("Zip9hFEWwiQ", u_writeIdenticalLevelRun_67) +STUB("ZisZod+tWcI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEEmmEv) +STUB( + "ZizoxsK8Z4A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB("Zj-yNSTs8bE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEED1Ev) +STUB("Zj01+0qsrHc", mspace_report_memory_blocks) +STUB("Zj1BNXnzQcg", _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile25unsetIsOfficiallyVerifiedEv) +STUB("Zj3ZV8jWWO8", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchStatusC2Ev) +STUB("Zj5FGJQPFxs", sceSystemServiceLaunchStore) +STUB("Zj5zWtk10e8", ubidi_getResultLength_67) +STUB( + "Zj8lRvC9DlE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEC2EPKS8_) +STUB("ZjAh2OVi9bE", + _ZN3JSC8JSObject24getOwnStaticPropertySlotERNS_2VMENS_12PropertyNameERNS_12PropertySlotE) +STUB("ZjGWQIfLDE4", _ZN7WebCore19ResourceRequestBase17clearHTTPReferrerEv) +STUB("ZjHuYO7ZkyA", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEEC1ERS7_) +STUB( + "ZjI3tgUsxcI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "ZjOrEv0froU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEEdeEv) +STUB("ZjPWlTi4iXM", + _ZN7WebCore13GraphicsLayer54noteDeviceOrPageScaleFactorChangedIncludingDescendantsEv) +STUB("ZjUxRZKxfEI", _ZN3JSC13BooleanObject6s_infoE) +STUB("ZjYeUXVjF0s", _ZN3NTF3URL7setPathERKSs) +STUB("Zje1uXnfnaE", WKPreferencesSetLazyImageLoadingEnabled) +STUB("Zjj4PnzLArs", __asan_register_image_globals) +STUB( + "ZjnLBeGX1U0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEEC2ERKSA_) +STUB("ZjoSrNK-n+o", _ZN7Nicosia5Scene5StateD1Ev) +STUB( + "ZjpIhx+3uFA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEEC2Ev) +STUB("ZjqmOuIUgNw", WKAXObjectTitle) +STUB("ZjtRqSMJwdw", sinh) +STUB( + "ZjxnQRlTD68", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEC2EPNS2_10LibContextE) +STUB("Zk0NeF-GSmw", _ZN7WebCore16HTMLTableElement11deleteTHeadEv) +STUB("Zk8idfXrCP0", _ZNK7WebCore11FontCascadeeqERKS0_) +STUB( + "Zk8rKDA7v4E", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V333PsnWebError_error_missingElements6toJsonERNS_4Json5ValueEb) +STUB("ZkBLOP3Jj9E", _ZN7WebCore9FrameView20setWasScrolledByUserEb) +STUB( + "ZkKibkWcJr4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE3endEv) +STUB( + "ZkKyXilUZ2M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEC2ERKS7_) +STUB("ZkP0sDpHLLg", _ZGVNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE) +STUB("ZkSM1nh5zM8", + _ZN3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinitionC1Ev) +STUB("ZkUaFtyRXqY", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V110AvatarSizeEEC1EPS6_) +STUB("ZkZhskCPXFw", sceSaveDataInitialize) +STUB("ZkflclGaeKk", _ZN7WebCore14SchemeRegistry30registerURLSchemeAsCORSEnabledERKN3WTF6StringE) +STUB("ZkgA0umW6MQ", _ZN7WebCore9HTMLNames7areaTagE) +STUB("ZkiaQSNeYz8", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4RoomEED2Ev) +STUB("Zkl+J182WlE", _ZN7bmalloc15IsoHeapImplBase9didCommitEPvm) +STUB("Zkmt7pm3d5M", _ZNK7WebCore13HTTPHeaderMap3getENS_14HTTPHeaderNameE) +STUB( + "ZkqfHfOXmOA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEplEm) +STUB( + "ZksNpqtqQfg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEED1Ev) +STUB("ZktOtycH3Q4", ucln_io_registerCleanup_67) +STUB("Zkuj3yHaXQQ", u_strcmpCodePointOrder) +STUB( + "ZkutYlz-sDM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEEC1Ev) +STUB("Zkxpy0zdodA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEED1Ev) +STUB("Zl-f3ACIclw", rgctx_fetch_trampoline_mrgctx_97_p) +STUB( + "Zl2BMetdZQE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEneERKS9_) +STUB( + "Zl3NYfpOkzY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEED1Ev) +STUB( + "ZlA+NPrlkLc", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRanking26unsetgetRankingRequestBodyEv) +STUB( + "ZlCkpiN0Zdg", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api12submitTicketEiRKNS4_23ParameterToSubmitTicketERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_24SubmitTicketResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("ZlDEtQkRJQo", + _ZN3sce2Np9CppWebApi14SessionManager2V113ErrorResponse8fromJsonERKNS_4Json5ValueE) +STUB( + "ZlFXdJsL9g4", + _ZN3sce2Np9CppWebApi15Personalization2V111ErrorEntity8setErrorERKNS1_6Common12IntrusivePtrINS3_5ErrorEEE) +STUB("ZlLJEi8RMBs", sceBgftServiceIntUploadRestartTask) +STUB("ZlMxLSd7iz8", _ZN7WebCore9HTMLNames9mediaAttrE) +STUB("ZlOyN7zNWJE", mono_aot_Sce_Vsh_Sl2_Sl2Clientjit_code_start) +STUB("ZlTzqRRuq7o", _ZN7WebCore27PlatformMediaSessionManager29applicationDidEnterBackgroundEb) +STUB( + "ZlVEa0w5Y7s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEC1ERS7_) +STUB("ZlWjjldjArE", mono_aot_System_Xml_Linqunbox_trampolines) +STUB("ZlZ4TA0eSiQ", _ZN7WebCore8Document14setDocumentURIERKN3WTF6StringE) +STUB( + "ZlZSmGrvM6A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE5beginEv) +STUB("ZlkMImbpzN0", __asan_stack_free_5) +STUB("ZllU8nKLJho", mono_aot_Sce_Vsh_Np_AppLaunchLinkunwind_info) +STUB( + "Zlptt-Q3JYI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEEC2EPS8_PNS2_10LibContextE) +STUB("ZlrqWz3NRA8", _ZNK7WebCore9RenderBox33canBeScrolledAndHasScrollableAreaEv) +STUB("ZlrsQnApiXI", _ZNK3JSC9ExecState11callerFrameERPNS_10EntryFrameE) +STUB("ZlsoRa7pcuI", _Daysto) +STUB("ZluPeIuDWbo", _ZN3sce7Toolkit2NP2V26Friend6FriendD1Ev) +STUB("Zm+3BN1raUM", _ZN3sce3Xml3Dom4NodeaSERKS2_) +STUB("Zm2LLWgxWu8", _Xp_movx) +STUB( + "Zm7aexQfJVM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE5emptyEv) +STUB("ZmBHJxoLzQQ", _ZN3sce2Np9CppWebApi7Matches2V127ResponseTeamMemberStatistic8getStatsEv) +STUB( + "ZmGaD+bzchU", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13boolean4IsSetEv) +STUB("ZmIeGweZvDU", sceBgftServiceIntUploadHideTask) +STUB("ZmPBwBD2tIY", sceAvSettingGetCurrentOutputMode_) +STUB( + "ZmPp4YmJYwc", + _ZN7WebCore10resolveDNSERKN3WTF6StringEmONS0_17CompletionHandlerIFvONSt12experimental15fundamentals_v38expectedINS0_6VectorINS_9IPAddressELm0ENS0_15CrashOnOverflowELm16EEENS_8DNSErrorEEEEEE) +STUB("ZmScQeYnhGc", _ZN3sce7Toolkit2NP2V26Friend12Notification15BlocklistUpdate8deepCopyERKS5_) +STUB("ZmbGnRlFl18", _ZN3JSC19ArrayBufferContentsD2Ev) +STUB("ZmbMDphkqqM", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeINS1_11TusVariableEPvEE10deallocateEPS6_m) +STUB("ZmbqTokIwTQ", _ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_4FileE) +STUB("Zmeuhg40yNI", _ZSt10adopt_lock) +STUB( + "ZmjMfODLOJE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEC2EPKS8_) +STUB("Zmk8Mb9qNQ0", _ZNK3sce3Xml3Dom8NodeList8findItemEPKNS0_6StringE) +STUB("ZmmV6iukhyo", sceImeVshInformConfirmdString) +STUB( + "ZmnRX8BE6VQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEE7get_refEv) +STUB( + "Zn-UsjWDI1E", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB( + "Zn3Wd1rnyy4", + _ZN7WebCore9FontCache13fontForFamilyERKNS_15FontDescriptionERKN3WTF12AtomicStringEPKNS_18FontTaggedSettingsIiEEPKNS_19FontVariantSettingsENS_34FontSelectionSpecifiedCapabilitiesEb) +STUB("Zn44KZgJtWY", _ZSt14_Debug_messagePKcS0_j) +STUB("ZnBk6V17qIo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEmmEi) +STUB( + "ZnG3o5eoP0s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEC2EPKS8_) +STUB("ZnIHWmxw0yg", monoeg_g_strsplit) +STUB("ZnO2Qp4WkFU", _ZN7WebCore14DocumentLoaderD1Ev) +STUB("ZnOk1jHEYbs", _ZN7WebCore21JSCSSStyleDeclaration4infoEv) +STUB( + "ZnPsGpM94Os", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEEC2Ev) +STUB("ZnRCitQs2wY", mono_aot_Sce_PlayStation_Imejit_code_end) +STUB("ZnUL8BYDOdU", _ZZNSt6locale5_InitEvE14classic_locimp) +STUB("ZnWGUTH6hZ4", Java_java_net_InetAddress_init) +STUB("ZnX-pfQnudw", _ZN3sce3Xml13AttributeList12addAttributeEPKNS0_6StringES4_) +STUB("ZnaA9b+pI+U", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching6WorldsEED2Ev) +STUB("ZnbAkVo5G6g", _ZN3sce7Toolkit2NP19FriendOfUserRequestC2Ev) +STUB("ZndtujKYAvw", WKBundleInspectorSetJavaScriptProfilingEnabled) +STUB("Znf8tqzNQ-A", Java_java_io_UnixFileSystem_getLength) +STUB("ZnhNmHCwuu4", + _ZN7WebCore27CSSComputedStyleDeclaration6createERNS_7ElementEbN3WTF10StringViewE) +STUB( + "ZniW4u4TLBg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEC1Ev) +STUB("ZnucTodXqc0", JSValueUnprotect) +STUB( + "Znvwme6Kjtc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEneERKS9_) +STUB("Zo-iipctpP0", _ZN7WebCore11MediaPlayer20resourceNotSupportedEv) +STUB("Zo-nsFXHE08", t1_cmap_custom_class_rec) +STUB("Zo1yv7m+mY0", WKStringCreateWithJSString) +STUB("Zo2z2L4ZdqI", _ZN7WebCore9HTMLNames11onclickAttrE) +STUB( + "Zo4Sde1QrT4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEE11release_refEv) +STUB("Zo52g0A1XDw", scePlayerInvitationDialogClose) +STUB("Zo6ks32VHL4", _ZNK7WebCore16HTMLMediaElement15bufferingPolicyEv) +STUB( + "Zo7+HO2S9P0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEED2Ev) +STUB("ZoAOplteYUM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEC2ERKS7_) +STUB("ZoG0YQhm6bQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEEC2EPS5_PFvS7_EPNS2_10LibContextE) +STUB( + "ZoHzqN2xEzs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE5clearEv) +STUB("ZoJ7iWsx7RM", _ZN7WebCore8SVGNames13pointsAtXAttrE) +STUB( + "ZoMnT1dp8Tw", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEEiRNS2_10LibContextEPT_m) +STUB( + "ZoOelD9NMEU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB("ZoQmYHd7LJc", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEE3getEv) +STUB("ZoQwCxPBy8Y", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE5beginEv) +STUB( + "ZoTbPKeaRMo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE5emptyEv) +STUB( + "ZoU0CsRn4ac", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("ZoXUrTiwKNw", sceNpPanic) +STUB( + "ZoYyNofNNtw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEC1Ev) +STUB("ZoaX1MdsPsI", _ZN3sce7Toolkit2NP2V210Tournament4TeamD1Ev) +STUB("ZobcV3lLWUw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEC2Ev) +STUB("Zofiv1PMmR4", __negti2) +STUB( + "ZohXRQJcv2s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEEcvbEv) +STUB("ZoklLw3zf-A", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_33ActivityFeedSharedScreenshotStoryEED1Ev) +STUB("ZolDcuDSD0Q", + _ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE5_InitERKSt8_Locinfo) +STUB( + "ZomYHcRMgOo", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData21setxPsnNpServiceLabelEj) +STUB("ZopRN-OA-qs", _ZN3WTF8pageSizeEv) +STUB("ZopdvNlYFHc", sceUserServiceSetGlsBroadcastersComment) +STUB("ZotSeVujZaU", sceKernelGetPsnAccessTraceLogForRcmgr) +STUB("ZowKjlE1t0Q", Java_java_net_Inet6AddressImpl_getLocalHostName) +STUB("ZoySTm84A3k", _ZN3sce7Toolkit2NP2V212EventsClient9EventData12MAX_SIZE_URLE) +STUB( + "Zp0CMnAK+jc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEdeEv) +STUB("Zp3r3o0hG5M", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_19ProductInfoDetailedEED2Ev) +STUB("Zp8kdKB7kKE", _ZNK7WebCore21ISOTrackEncryptionBox21defaultCryptByteBlockEv) +STUB( + "ZpBTL6TX0Ho", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEppEi) +STUB("ZpHojlj2tAw", Java_java_awt_GnmGraphicsEnvironment_run) +STUB("ZpO7G7+nd2E", sceVoiceChatRequestDeleteVoiceChatGroup) +STUB("ZpVRh3D86UY", + _ZN15AbstractStorage14YoutubeStorageC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB( + "ZpWlCuQ-A+Q", + _ZN9Inspector20CSSBackendDispatcher7addRuleElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("ZpXWiHivAtw", _ZN13MsvMetaEditor8compact2EtPh) +STUB( + "ZpdOdEblrXc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEED1Ev) +STUB( + "Zpiek75F-Fs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEEdeEv) +STUB( + "ZpjhtgsGtvs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEEC1ERKSA_) +STUB( + "ZpmffbrCBFM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEixEm) +STUB( + "Zpmfg7VS8eI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEptEv) +STUB("ZpnfqdjlwS0", _ZN3sce7Toolkit2NP2V27Session9SessionIdC2Ev) +STUB("Zpt2xfyeRMU", + _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession14setCustomData1EPKvm) +STUB("ZpxyKMEHINg", WKBundleFrameResumeAnimations) +STUB( + "Zpz-K7XnSOo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEneERKS9_) +STUB("ZpzDxqY5Zcw", + _ZN3sce7Toolkit2NP2V23TUS7setDataERKNS3_7Request7SetDataEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("ZpzvHcqgTSw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEEplEm) +STUB( + "Zq52g81sukw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("Zq6OSdS6zf4", JVM_InvokeMethod) +STUB( + "Zq8OOMWu7s8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEdeEv) +STUB("Zq8b5NIAykg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEEC2EPNS2_10LibContextE) +STUB( + "ZqBpGiSeHrI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "ZqEKaaP3Juc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEEC2Ev) +STUB("ZqI3djCpmjQ", _ZNK6icu_6713UnicodeString9getBufferEv) +STUB("ZqKPLKSRnfg", _ZN3WTF8JSONImpl5ValueC2Ed) +STUB( + "ZqPTkXAVYCo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEaSERKS7_) +STUB("ZqSaxTkbXVc", _ZNK3sce2Np9CppWebApi7Matches2V119RequestMatchResults22cooperativeResultIsSetEv) +STUB("ZqVhdZ64zpo", _ZN3WTF8Internal25parseDoubleFromLongStringEPKDsmRm) +STUB("Zqa5tqMhOrI", FcPatternAddMatrix) +STUB("Zqc++JB04Qs", _ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED2Ev) +STUB("Zqf-+DEj2Zc", _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead16unsetCustomData2Ev) +STUB("ZqhZFuzKT6U", _sceFiberAttachContextAndSwitch) +STUB("ZqluuMZgcfA", mono_object_new_specific) +STUB("Zqp-j+acPK0", HMAC_CTX_cleanup) +STUB("ZquDaA7NrQ4", _ZNK3sce2np10JsonString6GetStrEPcm) +STUB("ZqvTX8u1bEc", FT_Attach_Stream) +STUB("Zqw1wabU3UM", _ZN3JSC19JSSymbolTableObject6s_infoE) +STUB("ZqxPUMisNkY", sceKernelIccControlUSBPowerState) +STUB("Zr4h+Bbx0do", sceUserServiceGetSystemLoggerHashedAccountIdParam) +STUB( + "Zr8Zs7nijzQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEEaSERKSA_) +STUB( + "Zr9vHbwPJbM", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification16FriendlistUpdateEE19setCustomReturnCodeEi) +STUB("ZrCNEgNghCU", _ZN3JSC2VM10ClientDataD2Ev) +STUB("ZrE4rk8ZRBE", + _ZN12video_parser13cVideoMetaMP428_createExternalThumbnailInfoEPNS0_18VpThumbnailInfoMP4E) +STUB("ZrFcJ-Ab0vw", _ZTVSt15underflow_error) +STUB("ZrJ6tX4Rkxs", __asan_report_exp_load8) +STUB( + "ZrQtn1WT0GY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEC1EPKS8_) +STUB("ZrUUA39Xu+Q", _ZN7WebCore22throwSequenceTypeErrorERN3JSC14JSGlobalObjectERNS0_10ThrowScopeE) +STUB("ZrV5YIqD09I", sceHmdReprojectionFinalize) +STUB( + "ZrXICqpFcLA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEptEv) +STUB( + "ZrXYtiRKZzY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE7popBackEv) +STUB( + "ZrYEjfdytIo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEplEm) +STUB( + "ZrYw52XlTPI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEEcvbEv) +STUB( + "ZrbPLZR4RVs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "ZregFlN9Ykw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEC2Ev) +STUB("ZrhgX9VzkFQ", sceHandTrackerSetFaceInfo) +STUB("Zrj9i1EsrGs", _ZN3sce7Toolkit2NP2V27Session7SessionC1ERKS4_) +STUB( + "ZrlAs6zJNEk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("Zrn7xxt5jlI", _ZN3sce7Toolkit2NP2V23TUS7Request10DeleteData22MAX_DATA_VIRTUAL_SLOTSE) +STUB("Zrqo923UvSk", udata_openSwapperForInputData_67) +STUB("ZrroNl9Kk-o", mono_btls_x509_store_ctx_get_foo) +STUB( + "Zrt41rYZCfE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEED2Ev) +STUB( + "ZrurLRmBfYo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "Zrx1uGIz6mU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEEdeEv) +STUB("Zs4p6RemDxM", fdim) +STUB( + "Zs5+6fSn9Ls", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEppEv) +STUB("Zs6c0wBAPzg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed13UsersWhoLikedEEC2Ev) +STUB("Zs7X4Zvuz6c", ucol_getAvailable_67) +STUB("Zs8Xq-ce3rY", _Xtime_to_ts) +STUB( + "ZsChmA81aaU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEED1Ev) +STUB("ZsFGwx6nDws", _ZN3sce7Toolkit2NP2V211SharedMedia11Screenshots5resetEv) +STUB( + "ZsLAzLW-r2c", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("ZsUOENm0Vc8", _ZN3JSC15WeakHandleOwnerC2Ev) +STUB("ZsXLFtd2jqQ", pthread_barrier_init) +STUB( + "ZsZRfo3Ky8k", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEdeEv) +STUB( + "ZsbSGsp6Svc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEC1Ev) +STUB( + "ZscgK2PYG4g", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE5beginEv) +STUB( + "Zsda7YYZmiQ", + _ZN3sce2Np9CppWebApi14IdentityMapper2V331PsnWebError_error_errorsFactory7destroyEPNS3_24PsnWebError_error_errorsE) +STUB("Zsh1K8YTD1E", sceVdecCoreQueryInstanceSize) +STUB("Zsj3Ji83Pks", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEE11release_refEv) +STUB("ZsrAAP9d0cA", _ZN7WebCore11DisplayList11DrawEllipseD0Ev) +STUB( + "Zsu6KaJjrhA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEixEm) +STUB( + "ZsvNcxD8I5g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEC2Ev) +STUB("ZsyQjvVFHnk", sceUserServiceSetPartyMuteList) +STUB("ZsyoHY8zmGw", _ZN9Inspector26LayerTreeBackendDispatcherD1Ev) +STUB( + "Zt06aeFC4ZY", + _ZN7WebCore17LibWebRTCProvider15resolveMDNSNameEN3PAL9SessionIDERKN3WTF6StringEONS3_17CompletionHandlerIFvONSt12experimental15fundamentals_v38expectedIS4_NS_17MDNSRegisterErrorEEEEEE) +STUB("Zt2jWHJQ3OA", _ZN9Inspector15RemoteInspector6ClientD1Ev) +STUB("Zt34+v-wFKQ", GCC_except_table22) +STUB("ZtAz+DEYrCY", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEED2Ev) +STUB( + "ZtBIDcUd2as", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEEC1ERSA_) +STUB( + "ZtILP81pa7Y", + _ZN3sce7Toolkit2NP9Utilities6FutureISt4listINS1_11TusVariableENS1_15AppSTLAllocatorIS5_EEEEC1Ev) +STUB( + "ZtLak4XUNss", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEppEi) +STUB("ZtQi1QZANgc", ptrace) +STUB( + "ZtSRlasGAiA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEE7add_refEv) +STUB("ZtSdpA9a9sU", JVM_Write) +STUB("ZtY98xBvJOc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEE7add_refEv) +STUB("ZtZ3TBrmWUo", WKViewSetViewContextMenuClient) +STUB("ZtaxGGmtQ80", sceGnmSysSubmitFlipHandleProxy) +STUB( + "Zth9hUW1CQU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEED1Ev) +STUB("ZtiV7HeGp7M", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13boolean7IsSetEv) +STUB( + "ZtjAhr8NR+Y", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEdeEv) +STUB("ZtjspkJQ+vw", _FSin) +STUB("ZtlTJK5TrZE", mono_aot_Sce_Vsh_FileSelectorAdvanceplt) +STUB("Ztpsft847JY", mono_aot_Sce_Vsh_Sl2_Sl2Commonunbox_trampolines) +STUB( + "ZttIjRBl3Rc", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemPropertiesC1Ev) +STUB("Ztx4b2LhRDk", sceVideoOutDriverIncrementBufferLabel) +STUB( + "ZtzrnggEFBg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEmmEi) +STUB( + "Zu-hDJEPy+I", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot9hasfieldsEv) +STUB("Zu81FtazEBI", ureldatefmt_combineDateAndTime_67) +STUB( + "ZuCHPDq-dPw", + _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE16do_get_monthnameES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm) +STUB("ZuIxZ6j0Ftk", _ZN4Manx6Locale11getLanguageEv) +STUB("ZuKpnq8Wfqs", _ZN7bmalloc12sentinelBitsE) +STUB( + "ZuLnnVpLq-Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "ZuRinzzVx1M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEED1Ev) +STUB( + "ZuShX2hswug", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEED2Ev) +STUB( + "ZuT1KV1VR5o", + _ZN7WebCore11DisplayList11SetLineDashC1ERKN3WTF6VectorIdLm0ENS2_15CrashOnOverflowELm16ENS2_10FastMallocEEEf) +STUB( + "ZuW25WGdKlw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEC1EPS8_) +STUB("ZuX+zzz2DkA", sceGameLiveStreamingSetSpoilerTag) +STUB("ZuYkeoBhJ1Y", FT_List_Add) +STUB( + "ZuZ6RzJP3t8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE7reserveEi) +STUB("Zuc39RxgKlE", WKBundleReleaseMemory) +STUB("ZucoOmNsb7w", sceLncUtilGetEventForShellUI) +STUB("ZufKqNXItD0", _ZN3sce2np16StreamReadBufferD1Ev) +STUB( + "ZuhiJRFvBo0", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanity22getwebApiFilterRequestEv) +STUB( + "ZuifgM6X4hU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE7releaseEv) +STUB( + "ZuoibJwEWBY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE8capacityEv) +STUB("Zv1IpqckCRg", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110ResultTypeEEC1EPS6_) +STUB( + "Zv4C86g2s80", + _ZN3sce2Np9CppWebApi6Common18ResponseHeaderBase5parseEPNS2_10LibContextElPNS2_12IntrusivePtrIS3_EE) +STUB("Zv4xfb90Q14", _sceNpHeapMallocImpl) +STUB("Zv6eFW-f-Ak", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEmmEi) +STUB( + "Zv84zqc6MPg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEEC2ERKS9_) +STUB("Zv8ise-DsA8", _ZN3sce7Toolkit2NP2V29Challenge10ChallengesC2Ev) +STUB("ZvA0kNRCWWc", _ZN7WebCore9HTMLNames18aria_labeledbyAttrE) +STUB("ZvBq0HNOwzQ", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEEC1ERKS6_) +STUB("ZvCSTapahr4", _ZN7WebCore15GraphicsContext11clearShadowEv) +STUB("ZvFNdVIxCAU", mono_thread_get_max_threads) +STUB( + "ZvFSMUAG5NM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEE11get_deleterEv) +STUB( + "ZvINAqhJTCM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEEC2Ev) +STUB("ZvKgNrrLCCQ", sceNetConfigWlanAdhocPspEmuClearWakeOnWlan) +STUB("ZvPKqTJPzd4", scePerfTraceAmmStart) +STUB( + "ZvQH6BsQbYo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEE5resetEPS6_) +STUB("ZvSXUtAtj2M", sceDebugGetFiberInfo) +STUB("ZvTqRnxTV9c", sceCesSbcToUtf16be) +STUB("ZvUXjKc83Uo", _ZN12video_parser17cVideoProfilerMp412getMediaInfoEjPPNS_13VpMediaInfo_tE) +STUB("ZvWzS2wTIMc", sceVideoRecordingQueryMemSize) +STUB("ZvahxWPLKm0", _ZNSt14numeric_limitsIiE6digitsE) +STUB( + "Zvd634LDm94", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEEC2ERSA_) +STUB( + "ZveMhsX4h5s", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("ZvkPpL9mH8Y", _ZN3NTF17URLRequestHttpJobD1Ev) +STUB("Zvkx4SSSeN8", _ZN3JSC7Symbols28symbolHasInstancePrivateNameE) +STUB("ZvmJz4fcT1o", WKWebsitePoliciesCreate) +STUB( + "Zvn3HVeoLIk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEneERKS9_) +STUB("Zvq-pxMW-m8", il2cpp_method_get_param_count) +STUB( + "ZvqIG1feJyw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEE11get_deleterEv) +STUB( + "ZvtuCq-Iks0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("ZvwO9euwYzc", sceAgcDcbSetCxRegistersIndirect) +STUB("Zvy5f58QddA", _Z25scePlayGoEmuFsEnableChunktPt) +STUB("Zw3QlKu49eM", _ZN3sce2np7Callout11CalloutFuncEPv) +STUB("Zw4nFW49NNc", _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBodyD2Ev) +STUB( + "Zw6jnKOipCo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("Zw7uUVPulbw", sceAgcDriverGetEqContextId) +STUB( + "ZwDY8c+GieY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEC1EPKS8_) +STUB( + "ZwEwNOMiNCE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEED2Ev) +STUB( + "ZwJu5wzsdHw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEEC2Ev) +STUB("ZwVgwFzKS-0", sorry) +STUB("ZwXxYEUQQX0", sceAppInstUtilAppInstallSharePlayLinkByUser) +STUB("ZwapHUAcijE", __atomic_compare_exchange_1) +STUB("ZwbWkee2EK8", _ZN7WebCore14ProcessWarming15initializeNamesEv) +STUB("ZwdC-AAa1ng", _ZNK7WebCore3URL12baseAsStringEv) +STUB("ZwgYQZcuYzM", mono_btls_ssl_set_server_name) +STUB("ZwhQSHTqGpE", sceSystemStateMgrStartStadbyTimer) +STUB("ZwisqhZr8is", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEC1Ev) +STUB("Zwj3yUNv-O4", sceHandDetectionLocalGetDefaultParam) +STUB("ZwjVCyUXxHo", _ZN4Manx11BundleOrbisD1Ev) +STUB("ZwjmbSr4Cxc", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus11getObjectIdEv) +STUB("ZwkYXHwQ7Mc", + _ZN15AbstractStorage14YoutubeContent13writeExternalESt10shared_ptrINS_7ContentEE) +STUB("Zwn1Rlbirio", _ZNSt14_Num_ldbl_base10is_integerE) +STUB( + "ZwpzxJUv6xE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEeqERKS9_) +STUB("Zwq3UE1tJpk", _ZN3sce2np9JsonValueC1EP14SceNpAllocatorNS1_9ValueTypeE) +STUB("ZwsBB3s8qMk", sceCompositorReleaseIndex) +STUB("Zwz6pQRbIaI", _ZNK7WebCore25DropShadowFilterOperation12stdDeviationEv) +STUB("ZxAOrkVdUbM", _ZN3WTF8JSONImpl5ValueC1Ev) +STUB( + "ZxGGKQyhO7Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEEC2EPS7_PFvS9_EPNS2_10LibContextE) +STUB("ZxK-xo0N1xI", _ZN15AbstractStorage14DailymotionAPI7SuspendEv) +STUB( + "ZxK632vf74A", + _ZN9Inspector22AuditBackendDispatcher5setupElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "ZxTh9vMWkWc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEaSERKS7_) +STUB("ZxV-F7CiZa8", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product9unsetSkusEv) +STUB("ZxXJId9uOoU", _ZN3sce2np14JsonObjectImplC2EP14SceNpAllocator) +STUB("Zxa0VhQVTsk", sceKernelWaitSema) +STUB("Zxe-nQMgxHM", _ZNKSt7collateIwE12do_transformEPKwS2_) +STUB( + "ZxfJetBemQY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEE11release_refEv) +STUB( + "ZxjFQX+b-3g", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "ZxlXd3HdjiY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEE3getEv) +STUB("ZxnyBy8reV4", u_strToUTF32) +STUB( + "Zxqmp+TbssI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEED2Ev) +STUB("Zxwv65E2iCs", _ZN9Inspector24RemoteControllableTargetD2Ev) +STUB( + "ZxylD0E37lc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEED2Ev) +STUB("ZxzDnuurwYI", rgctx_fetch_trampoline_mrgctx_27) +STUB("ZyBRuMgQYvM", ScePsmMonoFree) +STUB("ZyC0HzaV6VU", sceFaceDetectionGetDefaultParam) +STUB("ZyClRtTBv5w", _ZN3JSC8JSBigInt12tryRightTrimERNS_2VME) +STUB( + "ZyEMxB-INZw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEED1Ev) +STUB( + "ZyFj+5luzQY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE7reserveEi) +STUB("ZyJDe-wJj4g", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEE7get_refEv) +STUB("ZyJmYl9X0qI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEED2Ev) +STUB( + "ZyMBcGCVHDA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("ZyO6xMl47rI", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V115FrequentlyMuted8fromJsonERKNS_4Json5ValueE) +STUB("ZyYwUlWg2vE", + _ZN3JSC16InternalFunction14finishCreationERNS_2VMERKN3WTF6StringENS0_14NameVisibilityE) +STUB( + "Zyapl5+ZiOI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE10setContextEPNS2_10LibContextE) +STUB("ZyhzuBlX3LA", _ZN3sce2Np9CppWebApi6Common8IteratorIjEC2Ev) +STUB("Zylp1RmlarU", _ZN3sce2Np9CppWebApi7Matches2V15Error7setCodeERKi) +STUB("ZyoSVlUs3iM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEE7get_refEv) +STUB("Zys2AhUVVN4", _ZN3PAL8KillRing16setToYankedStateEv) +STUB( + "Zys5VtB3C3U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "ZytZEA1TqKM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEmmEi) +STUB("ZytfFk4mKnU", _ItL_qS3) +STUB("Zz-RfDtowlo", _ZNSt8messagesIwE5_InitERKSt8_Locinfo) +STUB("Zz1GdSKUpI8", mono_aot_Newtonsoft_Json_PlayStationmethod_addresses) +STUB("Zz5jZ8qvJ78", sceSdecQueryMemorySwHevc) +STUB( + "Zz6aQngkyHs", + _ZN3sce2Np9CppWebApi14SessionManager2V131GameSessionMemberForReadFactory7destroyEPNS3_24GameSessionMemberForReadE) +STUB("ZzE6WN+QBbE", sceFiosCachePrefetchFileRangeSync) +STUB( + "ZzF4rVUUmtk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEE11get_deleterEv) +STUB( + "ZzIOxiHWWYw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEE11release_refEv) +STUB("ZzSK4rLHRS4", uloc_getDefault_59) +STUB("ZzUcUmE7TF4", WKPageGetAcceleratedCompositingBackgroundColor) +STUB("ZzX1jJqNVwg", _ZN7WebCorelsERN3WTF10TextStreamENS_21ViewportRectStabilityE) +STUB( + "ZzXjgRi6Qrc", + _ZN6WebKit17ChildProcessProxy11sendMessageESt10unique_ptrIN3IPC14MessageEncoderESt14default_deleteIS3_EEj) +STUB( + "ZzYH6JCBLJY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEC2Ev) +STUB("ZzaGM24XNFI", dvdAuthFinalize) +STUB( + "ZzbC4c9kWDc", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE5getIdEv) +STUB("ZzdmuFPpBq0", JVM_GetHostName) +STUB( + "ZzdpHKGB3Fg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEE5resetEPS6_) +STUB( + "ZzgO83gp0O4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEC1EPNS2_10LibContextE) +STUB( + "ZzjVqNtjUdY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEEC2Ev) +STUB("ZzkCpCDDeIE", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking8TempRankEE3getEv) +STUB("ZzkpRWtyNFc", WKPreferencesEnableAllExperimentalFeatures) +STUB("Zzl5LrYHPYI", _ZN7WebCore19HTMLTableRowElement5cellsEv) +STUB( + "Zzm+hSY8FQY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEE7add_refEv) +STUB( + "ZznhEh3D-+A", + _ZN3sce2Np9CppWebApi14ConnectAccount2V221PSNError_errorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_14PSNError_errorEEE) +STUB( + "Zzo2qwKnwAs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEE5resetEPS9_) +STUB( + "ZzuuS5Bn6QE", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEEiRNS2_10LibContextEPT_m) +STUB("Zzxstsom9-w", sceKernelGetPhysPageSize) +STUB("ZzynKUErenQ", Java_com_sony_gemstack_io_factories_jar_JarEntryInputStream_setProxy) +STUB("ZzzC3ZGVAkc", sceKernelGetModuleList2) +STUB( + "a+3Dl6aSSn4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEEC2Ev) +STUB("a+3rOl9sjsA", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEEaSERKS6_) +STUB( + "a+7TLTZziN8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEC1EPS6_PNS2_10LibContextE) +STUB("a+8yAm1ZfCE", uloc_forLanguageTag) +STUB("a+AvVDCX+mw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE5beginEv) +STUB( + "a+BuNNnR2XU", + _ZN3JSC16InternalFunction23createSubclassStructureEPNS_14JSGlobalObjectEPNS_8JSObjectEPNS_9StructureE) +STUB("a+KK7PmpVso", _ZN3NTF5MutexC1Ev) +STUB("a+MfnphqlHQ", rgctx_fetch_trampoline_rgctx_43_p) +STUB("a+Ns-FwjHwM", png_set_keep_unknown_chunks) +STUB("a+Ow009IiRE", _ZN3JSC9parseDateEPNS_14JSGlobalObjectERNS_2VMERKN3WTF6StringE) +STUB("a+V9xheActI", _ZN3sce7Toolkit2NP2V212EventsClient11EventInGame5resetEv) +STUB("a+VaiTJSKDI", sceNpDbgStrHex) +STUB("a+W7HHlwpBs", _ZN3sce4Json6ObjectC1ERKS1_) +STUB( + "a+aDBmjjFR8", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEEiRNS2_10LibContextEPT_m) +STUB( + "a+gvtKlz3nk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEE7add_refEv) +STUB( + "a+iwGRjuYwo", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEEiRNS2_10LibContextEPT_m) +STUB( + "a+jsSSNHet4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB("a+km6hI3XmM", _ZN7WebCore17HTMLOptionElement8setValueERKN3WTF6StringE) +STUB( + "a+r3LNJH4tw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("a-+SeZezvQs", _ZN3WTF8JSONImpl10ObjectBase3endEv) +STUB( + "a-1bf8VqyHk", + _ZN9Inspector28DOMDebuggerBackendDispatcherC2ERNS_17BackendDispatcherEPNS_35DOMDebuggerBackendDispatcherHandlerE) +STUB( + "a-8d1cZU1Ho", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEppEv) +STUB( + "a-DLKQIJzr4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEED2Ev) +STUB("a-DukhK9o9Q", sceCesIso2022StrGetUcs2Len) +STUB( + "a-GoNZf5hUE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEC2EPS8_) +STUB( + "a-HFbro5bMg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEEC2ERKSA_) +STUB("a-IN6rnSL1I", _ZN3sce2Np9CppWebApi11UserProfile2V15Error7setCodeERKl) +STUB( + "a-J1dtp26Nw", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUser17hasnpServiceLabelEv) +STUB( + "a-KocFkIJiA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE8capacityEv) +STUB( + "a-LHP9X0jDw", + _ZN10Deprecated18ScriptFunctionCallC1ERKNS_12ScriptObjectERKN3WTF6StringEPFN3JSC7JSValueEPNS8_14JSGlobalObjectES9_RKNS8_8CallDataES9_RKNS8_7ArgListERNS4_8NakedPtrINS8_9ExceptionEEEE) +STUB("a-SRL8gpW5A", _ZN3sce7Toolkit2NP2V24Auth7Request10GetIdTokenD2Ev) +STUB("a-VPEgYCWSs", _ZN3JSC13ErrorInstance6s_infoE) +STUB("a-WwvfRMWaY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V117ResponseMatchTypeEEaSERKS7_) +STUB("a-YNP4O13AU", + _ZN9Inspector26DebuggerFrontendDispatcher19scriptFailedToParseERKN3WTF6StringES4_iiS4_) +STUB("a-aMMUXqrN0", _ZNK3sce4Json5ValuecvbEv) +STUB( + "a-hR4VbQsMM", + _ZN7WebCore15reportExceptionEPN3JSC14JSGlobalObjectEPNS0_9ExceptionEPNS_12CachedScriptEPNS_16ExceptionDetailsE) +STUB("a-hXdI7w8Dg", sceMbusSetCameraAppModuleFocus) +STUB("a-oA44WAFhU", _ZTVN9Inspector28InspectorScriptProfilerAgentE) +STUB( + "a-ufHND-ccQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEEC1ERKSA_) +STUB("a-wqrc3Rryk", _ZN3sce2Np9CppWebApi7Matches2V14TaskD2Ev) +STUB("a-xgqpSqYX8", _ZN3sce3Xml3Sax6Parser16setResolveEntityEb) +STUB("a-z7wxuYO2E", _ZNSt4_Pad8_ReleaseEv) +STUB("a0+h8BwDUUA", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce8ProductsEE3getEv) +STUB( + "a006M1SOeoc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("a00pDwzyNZ4", rgctx_fetch_trampoline_rgctx_85_p) +STUB("a05rlp573ow", sceSystemTtsUnregisterCallback) +STUB("a08n9C9z+2A", _ZN7WebCore15DatabaseTracker17closeAllDatabasesENS_20CurrentQueryBehaviorE) +STUB("a0GRkQA7TTg", mono_aot_Sce_Vsh_FileSelectorAdvanceplt_end) +STUB( + "a0H00DzRxc8", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeaderD2Ev) +STUB("a0JDNtaTcYI", + _ZN3sce7Toolkit2NP2V29Messaging7Request20GameDataMessageImage18IMAGE_PATH_MAX_LENE) +STUB( + "a0JbVCpzVZc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE7popBackEv) +STUB("a0LLrZWac0M", sceFiberRun) +STUB( + "a0OEKj78NEs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("a0OSNFVEwKg", _ZN12video_parser17cVideoProfilerMp415getSubtitleInfoEjPPNS_13VpMediaInfo_tE) +STUB( + "a0PtMaRPkZw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEED2Ev) +STUB("a0SVtiDOBgM", WKPageGetFocusedFrame) +STUB("a0TKeqf7GDQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEED2Ev) +STUB("a0UEJAPsYSo", _ZNK7WebCore27PlatformMediaSessionManager29applicationWillBecomeInactiveEv) +STUB("a0W-aTAtW0o", mono_thread_get_main) +STUB( + "a0Y-FGkqKJs", + _ZNK7WebCore5Range17absoluteTextRectsERN3WTF6VectorINS_7IntRectELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEEbNS1_9OptionSetINS0_20BoundingRectBehaviorEEE) +STUB("a0Zj1cVYuHQ", + _ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponseC2EPNS1_6Common10LibContextE) +STUB("a0bNzCMRqT0", _ZN3sce7Toolkit2NP2V29Challenge7Request21GetReceivedChallengesD2Ev) +STUB("a0bksb5xlc8", _ZNK7WebCore14SecurityOrigin10canRequestERKN3WTF3URLE) +STUB("a0c030qfllk", _ZNK3sce2Np9CppWebApi11UserProfile2V15Error10getMessageEv) +STUB("a0crzpewbKY", _ZN3JSC16CompleteSubspaceD2Ev) +STUB("a0gHBdxZC2k", _ZN3sce7Toolkit2NP2V29Messaging7Request20GameDataMessageImageC2Ev) +STUB( + "a0krZPwAuKw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEC2EPNS2_10LibContextE) +STUB( + "a0lxdT9PxmA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEE7get_refEv) +STUB( + "a0mqumwRDWA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEC2EPS8_) +STUB( + "a0rZC9dDdM8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE6resizeEj) +STUB( + "a0zs2ITV-lo", + _ZN7WebCore15UserInputBridge24logicalScrollRecursivelyENS_22ScrollLogicalDirectionENS_17ScrollGranularityENS_11InputSourceE) +STUB("a11ljS6eEFQ", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_7NpUsersEEC1Ev) +STUB("a14+Sqrvr+8", + _ZN3JSC8JSObject12defaultValueEPKS0_PNS_14JSGlobalObjectENS_22PreferredPrimitiveTypeE) +STUB( + "a14-ajpauUE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("a1GlhuNPcNc", _ZTVN4IPMI6Server12EventHandlerE) +STUB( + "a1LHdBJmdbc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEEC2ERSA_) +STUB("a1LMFZtK9b0", sceHmdInternalSocialScreenSetFadeAndSwitch) +STUB("a1LmvXhZ6TM", sceHmdInternalDfuStart) +STUB("a1PKmbbPbpk", _ZNK3sce7Toolkit2NP15AppSTLAllocatorItE8max_sizeEv) +STUB("a1S5ypgxOOI", _ZN9Inspector21DOMFrontendDispatcherdaEPv) +STUB("a1UTZkIReDs", _ZN7WebCore16HTMLMediaElement4playEv) +STUB("a1WXiNClrZU", Java_java_lang_reflect_Array_get) +STUB( + "a1YEARVJKd8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEE3getEv) +STUB( + "a1bmk2TqtPw", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot11hassortModeEv) +STUB( + "a1gkTuSmHno", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEaSERKS9_) +STUB( + "a1jK7VqreZA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "a1wn2EnEF8U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEppEv) +STUB( + "a2-GqQxqsyc", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsers31getxPSNSESSIONMANAGERACCOUNTIDSEv) +STUB( + "a25n7DS8GUA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE5beginEv) +STUB("a25spvWYEOA", u_digit) +STUB("a281GnGa7qo", usearch_setText_59) +STUB("a2GBMUKloNk", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredUsersEEC1Ev) +STUB("a2IIKj-VkoU", utrace_format) +STUB("a2Jp2rCo5q0", mono_image_strong_name_position) +STUB("a2MOZf++Wjg", srandomdev) +STUB("a2OFKemWbTc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEC1ERKS7_) +STUB("a2P9wYGeZvc", pthread_setprio) +STUB( + "a2STeAqE4Yk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE5beginEv) +STUB( + "a2T+7obN844", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "a2UTg5RV3oc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("a2VWRSroXlY", _ZN7WebCore21HTMLOptionsCollection16setSelectedIndexEi) +STUB( + "a2W8ZLS6eHc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE5clearEv) +STUB("a2Zv3idT0sU", _ZN3sce4Json6Object8iteratorC1Ev) +STUB( + "a2edulJrA1A", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE4sizeEv) +STUB("a2iXMbcH7Xc", sceUpsrvUpdateGetDownloadProgress) +STUB( + "a2ikxQmD+E8", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V333CommunicationRestrictionStatusApi44ParameterToGetCommunicationRestrictionStatus13isInitializedEv) +STUB("a2kjl5ALgIw", _ZNK3JSC12DateInstance26calculateGregorianDateTimeERNS_2VM9DateCacheE) +STUB( + "a2lLjGn-6Mo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("a2nS6F4hBDI", WKPreferencesSetUserTimingEnabled) +STUB("a2pNAyvprgE", atexit_register) +STUB("a2qdVU8RWb4", _sceNpAllocatorExMalloc) +STUB( + "a2r4QWPQoO0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEC2ERKS7_) +STUB("a2tMsw6tczo", _ZNK3sce2Np9CppWebApi13InGameCatalog2V513ContentRating9nameIsSetEv) +STUB("a2u5N2elGKs", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE3endEv) +STUB("a2xNcwL7WaI", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead21unsetUsePlayerSessionEv) +STUB("a2xaqg4pYVg", _ZN7WebCore11HistoryItem18setPageScaleFactorEf) +STUB( + "a2zH08GtIn0", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEiRNS2_10LibContextEPT_m) +STUB( + "a30njnvq+S8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEmmEi) +STUB("a36cmst-zBY", _ZN7WebCore25DropShadowFilterOperationC2ERKNS_8IntPointEiRKNS_5ColorE) +STUB("a39DFeFUxK0", _ZN9Inspector25NetworkFrontendDispatchernwEmPv) +STUB("a3BNqojL4LM", atanhl) +STUB("a3GTqTQrSRI", _ZN7WebCore8Document6cookieEv) +STUB( + "a3QTjTcpIlg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEC1Ev) +STUB("a3T5ylvPLd8", _ZN15AbstractStorage10YoutubeAPI7SuspendEv) +STUB( + "a3a9odmrbM4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEEptEv) +STUB("a3bwcwi+BGw", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed12SharedVideosEE3setEv) +STUB("a3dbw1f68PQ", _ZN3JSC15WeakHandleOwnerD2Ev) +STUB("a3ilwAlHOEA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEC1ERS7_) +STUB( + "a3qdBYrSvDg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("a3rhW-q8XQs", _ZNK7WebCore12ISOWebVTTCue17originalStartTimeEv) +STUB("a3tLC56vwug", sceGnmSqttFinishTrace) +STUB("a3thfBcgdFc", _ZN7WebCore4Page20injectUserStyleSheetERNS_14UserStyleSheetE) +STUB( + "a3xJqjT9UuE", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionPropertiesC2Ev) +STUB( + "a4-VaU2pI6w", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEdeEv) +STUB("a41mGTpWvY4", sceUserServiceSetThemeBgImageZoom) +STUB("a46OYTbrKS8", _ZN3JSC7Symbols38putMapIteratorInternalFieldPrivateNameE) +STUB("a46gWR+-Sj8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEC1Ev) +STUB( + "a473OMzUcj8", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE8sendDataEPKvm) +STUB("a4DFYgQfWNI", + _ZN3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferReadC1EPNS1_6Common10LibContextE) +STUB("a4KKvF-ME4M", _setsockopt) +STUB("a4P5tSNq9yE", _ZN7WebCore22EmptyFrameLoaderClient13committedLoadEPNS_14DocumentLoaderEPKci) +STUB( + "a4PmXY3-JgQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEE11get_deleterEv) +STUB( + "a4U9NzFg-tg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("a4VsZ4oqn68", sceHttpSetResponseHeaderMaxSize) +STUB("a4WaF-he1Rk", _ZN3sce2Np9CppWebApi7Matches2V114ResponseMember8fromJsonERKNS_4Json5ValueE) +STUB( + "a4ZYe97qODk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEE21intrusive_ptr_sub_refEPS7_) +STUB("a4ZgINI42y0", _ZN12video_parser14cVideoOperatorC1EPKc) +STUB("a4gLGspPEDM", trunc) +STUB("a4iChJsJKf8", _ZN12video_parser5vpcom3rtc19GetCurrentLocalTickEPm) +STUB( + "a4jAb+Nzbms", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEE3getEv) +STUB("a4lfjmCaMyY", Java_com_sony_bdjstack_system_BDJModule_startTitle) +STUB("a4n42cRWZdQ", _ZTVN7WebCore11DisplayList5ScaleE) +STUB("a4nA96ohus4", _ZN3sce2Np9CppWebApi7Matches2V117LeaveMatchRequest17setNpServiceLabelERKi) +STUB("a4q15LI1a4E", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUserD1Ev) +STUB("a4sYJjuBVbg", sceAvSettingSetVideoOutputColorEffect) +STUB( + "a5-XkPDoY0U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("a51bkE3Vyb8", WKContextSetPrivilegedNetworkBandwidth) +STUB( + "a535fjgAlGA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEeqERKS9_) +STUB("a54t8+k7KpY", _ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE) +STUB( + "a57wjRBe0Ao", + _ZN3sce7Toolkit2NP2V27Session17getInvitationDataERKNS3_7Request17GetInvitationDataEPNS2_4Core8ResponseINS3_14InvitationDataEEE) +STUB("a58eK0llmJI", mono_aot_ReactNative_PUIunbox_trampolines_end) +STUB( + "a58v7b1bGpg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEE3getEv) +STUB("a596UTjU-o0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEEC2ERKS7_) +STUB( + "a59Ta7shU4E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE8capacityEv) +STUB("a5ESb9DEKkQ", _ZN7WebCore21DiagnosticLoggingKeys22domainCausingJetsamKeyEv) +STUB("a5IfPlpchXI", sceNpBase64GetDecodeSize) +STUB("a5JZMyjFV68", pthread_barrierattr_getpshared) +STUB("a5KN09oDEVc", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_19WordFilterSanitizedEE3getEv) +STUB("a5Kjjq6HgcU", sceSystemServiceEnableSuspendNotification) +STUB("a5MOGqrrtqo", WKBundleSetGeolocationPermission) +STUB("a5MdWrdFyC4", mono_aot_Sce_Vsh_Lxunbox_trampolines_end) +STUB("a5N7lAG0y2Q", sceAppContentTemporaryDataFormat) +STUB("a5NUHC2I-Hg", _ZN3JSC7Symbols23Float32ArrayPrivateNameE) +STUB("a5SMUgT6pmI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEaSERKS7_) +STUB( + "a5V7QT0UTM8", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V324ValidationConstraintInfoC1EPNS1_6Common10LibContextE) +STUB("a5VXmjBxx38", _ZN3sce7Toolkit2NP2V27Session7Request7GetInfoC2Ev) +STUB("a5WSMLIWDd8", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence8PresenceEE19setCustomReturnCodeEi) +STUB("a5WkqZXnG2w", cairo_scaled_font_status) +STUB( + "a5XPrnre1XA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("a5YUV7XyfJ4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEEptEv) +STUB("a5bJadD0JQs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEC2Ev) +STUB( + "a5clMAAfscw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEmmEv) +STUB("a5ee7veMD9k", WKWebsiteDataStoreSetResourceLoadStatisticsFirstPartyHostCNAMEDomainForTesting) +STUB( + "a5gi8T88pzI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE4sizeEv) +STUB( + "a5oWCMdsnAw", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEEiRNS2_10LibContextEPT_m) +STUB("a5w7siUfL6w", uchar_swapNames_67) +STUB("a5xFueMZIMs", sceCameraGetContrast) +STUB("a5zvjYkJu0s", sceOpusDecCreate) +STUB( + "a65zPtBDq-g", + _ZN3sce2Np9CppWebApi14ConnectAccount2V212PartnerToken9setScopesERKNS1_6Common6VectorINS5_6StringEEE) +STUB("a68MMvOebD0", WKContextSetFilterHTTPProxy) +STUB( + "a68WjjWJG-4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEE11get_deleterEv) +STUB( + "a6AQm9wE6-4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE8pushBackERKS8_) +STUB("a6CYO8YOzfw", fwscanf) +STUB("a6HOJ0hpGiY", sceFsISSchedConfigDescriptor) +STUB( + "a6JnXiBwQFY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEE7get_refEv) +STUB( + "a6PHfz-nE9U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEEC2Ev) +STUB("a6Teg5qGR1g", _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead14unsetSessionIdEv) +STUB( + "a6UwjneIUlU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEE11get_deleterEv) +STUB("a6VjjclUCfk", _ZN7WebCore14JSWebAnimation11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("a6X9xlobc84", _ZN7WebCore11PageOverlay5clearEv) +STUB( + "a6ZuMyWqOIE", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "a6cnpKWpPZc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEmmEi) +STUB("a6fyF42wxy4", ucurr_register_67) +STUB( + "a6hsM0qzUNg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEC1ERKS7_) +STUB("a6kJtySHBpw", _ZN7WebCore9HTMLNames13draggableAttrE) +STUB( + "a6nEBUDyt0Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEmmEi) +STUB("a6sS6iSE0IA", sceNetConfigRoutingShowtCtlVar) +STUB("a6tQ3jHKEO8", Java_java_awt_GnmDefaultGraphicsConfiguration_createColorModel) +STUB("a6vKrMw6Sog", _ZN15AbstractStorage18DailymotionContentD2Ev) +STUB( + "a6y2c5wBfLY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("a6yeQI2uXGk", sceSpPthreadMutexattrInit) +STUB("a6yvHMSqsV0", _ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED1Ev) +STUB( + "a7-CIglwsqQ", + _ZN3sce2Np9CppWebApi14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyC2EPNS1_6Common10LibContextE) +STUB("a70Z0d+EVGs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE6resizeEj) +STUB( + "a70oiTgG2Po", + _ZN3sce2Np9CppWebApi14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerC2EPNS1_6Common10LibContextE) +STUB("a75tEEsbbrs", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119SubtaskAvailabilityEEC1Ev) +STUB("a76a3D9Adts", _ZN3sce2np9NpTitleId5ClearEv) +STUB("a7DM+5cDkAg", sceKernelGetResidentFmemCount) +STUB("a7FwU7ien1s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEEC2EPS6_) +STUB( + "a7LValOsXfU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE6resizeEj) +STUB("a7MJrCW6DS8", _ZN3JSC8Debugger24currentDebuggerCallFrameEv) +STUB("a7MagzVs4cI", sceDebugGetFileList) +STUB("a7RlARfexoo", FT_Stream_OpenMemory) +STUB("a7ToDPsIQrc", __inet_aton) +STUB( + "a7U1B9TtErA", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetrics6toJsonERNS_4Json5ValueEb) +STUB("a7VcgGjS5GQ", _ZN12video_parser16cVideoContentMp4D2Ev) +STUB( + "a7bT7JcJTZQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("a7fTFoY9UJw", _ZThn16_N9Inspector22InspectorDebuggerAgentD1Ev) +STUB("a7g2st0fBKY", _ZN7WebCore28InspectorFrontendClientLocal25changeAttachedWindowWidthEj) +STUB( + "a7gJuX-UhiA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEC2ERS7_) +STUB("a7ipJQTfQwo", sceNpPushStartNotification) +STUB("a7k0prJJpKA", _ZN9Inspector32DatabaseBackendDispatcherHandlerD2Ev) +STUB("a7kqcDA-p0A", _ZN3JSC7Symbols31iterationKindEntriesPrivateNameE) +STUB("a7n1pzQOyj4", ucal_getTimeZoneTransitionDate_67) +STUB( + "a7nw+OiciFg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE8capacityEv) +STUB("a7qE6UIxzwA", _ZN7WebCore9HTMLNames16onmouseenterAttrE) +STUB("a7r4LkzI1T4", _ZN3sce7Toolkit2NP11EntitlementC2Ev) +STUB( + "a7sI39vUIu0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE5beginEv) +STUB("a7v+N4YyAFk", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersC1Ev) +STUB("a7yz7vOyBxk", WKCookieManagerSetHTTPCookieAcceptPolicy) +STUB("a7zwN73E-n8", WKBundleFrameCopyCertificateInfo) +STUB("a810PhXQ1Ms", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_17ActivityFeedStoryEEC2Ev) +STUB("a818eKH9uBE", _ZN3sce2np14JsonNumberImplC1EP14SceNpAllocator) +STUB("a81mBvClIkA", EVP_MD_CTX_create) +STUB("a849B27ELfU", _ZN7WebCore13JSDOMRectList9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("a85LmVraJGs", mono_aot_Sce_Vsh_SQLiteunwind_info) +STUB( + "a89Ti5-AegI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEC2EPS8_) +STUB( + "a8LFhTGWse4", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetrics6toJsonERNS_4Json5ValueEb) +STUB("a8R9-75u4iM", sceNpGetAccountId) +STUB( + "a8SBP+NDiys", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEED1Ev) +STUB("a8ehg1rHeS4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEED2Ev) +STUB("a8kZLSx4ZTM", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfile9terminateEv) +STUB("a8lad-APGOY", sceVnaGetVadState) +STUB("a8lqpn258Mc", _ZN7WebCore11JSImageData14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB("a8oad1ei+k0", _ZN7WebCore14SecurityOrigin6createERKN3WTF3URLE) +STUB("a8oot1yfAcI", _ZN4Manx16Curl_cookie_listEP13SessionHandle) +STUB("a8rk9qLBEXc", _ZNK7WebCore7Element12getAttributeERKN3WTF10AtomStringE) +STUB("a8uLzYY--tM", sceAmprAprCommandBufferConstructor) +STUB("a8xEkquQhQk", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEED2Ev) +STUB("a8xfs-qh9WA", sceDebugCreateScratchDataArea) +STUB( + "a92hs5JO54g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEC2EPKS8_) +STUB( + "a92hyaWneqY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEED1Ev) +STUB( + "a935xB4YDHM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB("a94VDfhG9dw", + _ZNK3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayer11getPlayerIdEv) +STUB("a9KMkfXXUsE", _ZTIPy) +STUB( + "a9Mb4IIBIds", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEdeEv) +STUB("a9NTPM3fgrs", _ZNK7WebCore10FontRanges16fontForCharacterEi) +STUB( + "a9kWqF2bvTI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEmmEv) +STUB( + "a9qZlljwrwg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEC1Ev) +STUB( + "a9quSKletss", + _ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime12RemoteObjectEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE) +STUB("a9t9q62yj3M", _ZN3sce7Toolkit2NP2V212ActivityFeed4FeedC2ERKS4_) +STUB("a9vndhR-lEc", _ZN8meta_gen12JpegPromoterC1EN9db_schema9CodecTypeE) +STUB("a9vvl--u22c", mono_type_is_reference) +STUB( + "aA+XV2Okok4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEeqERKS9_) +STUB("aA4nOeRve9M", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEED1Ev) +STUB("aA6Blf1LIF4", WKPreferencesSetColorFilterEnabled) +STUB( + "aA79J-frx2I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEEC2ERKSA_) +STUB("aA83TCJI9Kw", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence8PresenceEE3getEv) +STUB( + "aA8pjb5NEg8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEC1EPS8_) +STUB("aACs-RRS3AI", JVM_GetCallerClass) +STUB("aALm7vEN8Yc", _ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errorsD1Ev) +STUB("aANpLAaZfkE", __sanitizer_get_free_bytes) +STUB("aAYMDr5fcLQ", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEEC1Ev) +STUB("aAeeZaTLfT0", + _ZNK7WebCore19MediaQueryEvaluator8evaluateERKNS_13MediaQuerySetEPNS_13StyleResolverE) +STUB( + "aAhEBX7gDUE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEdeEv) +STUB( + "aAo9S9A7gnU", + _ZN3sce2Np9CppWebApi7Matches2V126RequestMatchResultsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_19RequestMatchResultsEEE) +STUB( + "aAumBHgxG2E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEC2Ev) +STUB("aAzs2C1dS9U", _ZN7WebCore8SVGNames10rotateAttrE) +STUB("aB2HhDuPawo", _ZN7WebCore4Page27enableLegacyPrivateBrowsingEb) +STUB("aB5Rvp8BfAA", _ZThn16_N9Inspector18InspectorHeapAgent6enableERN3WTF6StringE) +STUB("aB8FRbUv4mo", WKPreferencesSetApplicationChromeModeEnabled) +STUB("aB8xZIIIuJg", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIdEneERKS4_) +STUB("aBAA0XNULZ8", _ZN3sce2Np9CppWebApi6Common8IteratorIiEC2EPi) +STUB("aBB7i+IvpNs", _ZN10MsvUpdater9getIsMSNVEmPb) +STUB("aBHZUwexAls", rgctx_fetch_trampoline_mrgctx_60) +STUB( + "aBLlonEWs5o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE7reserveEi) +STUB("aBOzlIVp16k", _ZN9JITBridge22initializeFromCompilerEPKcPPcPKNS_11RestartDataE) +STUB( + "aBQtcS9jEBo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "aBW8acQBpws", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("aBZj8-G0bjc", _ZN3sce7Toolkit2NP2V27Session14SessionDetailsD1Ev) +STUB( + "aBbNyDptFdg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEEaSERKSA_) +STUB("aBcwP392v0E", sceNpManagerIntParseIdToken) +STUB( + "aBdb+BxBiQU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEEC1Ev) +STUB( + "aBlGwmP9-QQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE8capacityEv) +STUB("aBn53jPCbCE", sceMusicCoreServerCheckCoreStatus) +STUB( + "aBrqVzCUV+k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEE11get_deleterEv) +STUB( + "aBtAgMlfbQQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE7reserveEi) +STUB("aBtTShgeIHc", + _ZN3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator14setCustomData1EPKvm) +STUB( + "aBuTHpvnFzk", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_20ChallengeRecvDetailsENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB("aBuX0PX-T7I", sceNpSessionSignalingCreateContext2) +STUB("aBzpRORkIo0", fuse_lowlevel_is_lib_option) +STUB("aC-VDttHd5g", _ZL16_sceLibcNewArraym) +STUB("aC257sSzems", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEE3getEv) +STUB( + "aC31rEz+qHY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("aC57OEpGO+Q", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEEaSERS7_) +STUB("aC5wMWmt04M", arch_DbgBacktraceSelf) +STUB("aC9OWBGjvxA", _ZNSt13basic_filebufIwSt11char_traitsIwEED2Ev) +STUB("aCHPtLW-iRI", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsD1Ev) +STUB("aCIECfxBuBY", sceVnaRequestDownloadTts) +STUB("aCIOh7TUpOY", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Error14setReferenceIdEPKc) +STUB("aCJB0y-oxpQ", EVP_DigestSignFinal) +STUB("aCL6nBMhegs", _ZN13MsvMetaEditorD1Ev) +STUB( + "aCQAXUtIf60", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEEdeEv) +STUB( + "aCRacupPFjI", + _ZN3sce2Np9CppWebApi14SessionManager2V127PostGameSessionsRequestBodyC1EPNS1_6Common10LibContextE) +STUB("aCYD+6sbyqw", _ZN3sce2np11NpHttpTransC1ERNS0_12NpHttpClientERKNS0_10NpOnlineIdE) +STUB("aCYPMSUIaP8", sceHttpGetAllResponseHeaders) +STUB("aCZIVWzdiFk", mono_utf8_validate_and_len) +STUB("aCZjveAsynw", _ZN3sce2np9JsonValue12GetItemValueEi) +STUB( + "aCf3RONrm5E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEC1Ev) +STUB("aCfbPzyjU90", sceAgcDriverPassInfoDownward) +STUB( + "aCiw-MpqB8A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEEC2Ev) +STUB("aCkM+OaGv3g", sceShellCoreUtilMountAppRight) +STUB( + "aCnMyOYpT1U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEC1Ev) +STUB("aCtpeXWclTE", _ZNK3WTF3URL8passwordEv) +STUB( + "aCxer9Pnsxw", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsers63getpostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEv) +STUB("aD-iqbVlHmQ", _ZNSt6locale7_LocimpD1Ev) +STUB("aD4Yxcy46DI", + _ZThn16_N9Inspector22InspectorDebuggerAgent20setPauseOnMicrotasksERN3WTF6StringEb) +STUB( + "aDAlkgdKQAE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEEaSERSA_) +STUB("aDJi8Z9KeAs", _ZThn136_N7WebCore9DOMWindowD1Ev) +STUB("aDLORuQr8yc", _ZN7WebCore9HTMLNames9dialogTagE) +STUB("aDPTwpOnl1I", _ZN3IPC15ArgumentEncoder6encodeEf) +STUB( + "aDUUqy3I+Yg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEdeEv) +STUB("aDYs9XYn2PY", module_start_2) +STUB( + "aDaLthZJvZk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEEaSERKSA_) +STUB( + "aDjD3M14lt8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEEaSERKS9_) +STUB("aDjVtqT65pM", _ZN7WebCore42contextMenuItemTagCheckGrammarWithSpellingEv) +STUB("aDloR-BDH7k", sceApplicationSendResultOfDebuggerSuspendRequest) +STUB("aDmly36AAgI", hypot3l) +STUB( + "aDn7dDgbuX0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEeqERKS9_) +STUB("aDocnzTS+uU", OCSP_single_get0_status) +STUB( + "aDssYDN6u5E", + _ZNK7WebCore21ContentSecurityPolicy19allowFrameAncestorsERKN3WTF6VectorINS1_6RefPtrINS_14SecurityOriginENS1_13DumbPtrTraitsIS4_EEEELm0ENS1_15CrashOnOverflowELm16EEERKNS_3URLEb) +STUB("aDuKbMKyILo", _ZN3sce7Toolkit2NP2V212EventsClient7EventId17MAX_SIZE_EVENT_IDE) +STUB("aDuOpFiRXiE", rgctx_fetch_trampoline_mrgctx_29_p) +STUB("aDvYz1htwOU", Java_com_sony_gemstack_io_FilePath_n_1rename) +STUB( + "aDwBFJxwqLc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "aDxW+LFjuYE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEED2Ev) +STUB("aE2NUYV4Hjg", _ZN3JSC14ProtoCallFrame4initEPNS_9CodeBlockEPNS_8JSObjectENS_7JSValueEiPS5_) +STUB("aE4wRKDjrgw", sceVisionManagerSetCallbackForUpdateCameraFrame) +STUB( + "aE7uH38JMvc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEeqERKS9_) +STUB("aE9O7NDdIrk", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEEmmEi) +STUB( + "aEFJJ3OJbpA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEEC2ERSA_) +STUB( + "aEHNg2P7nyQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEC2EPNS2_10LibContextE) +STUB("aEIBFI8Dy9E", scePlayReadyCdmiLoad) +STUB( + "aENmncN7xwo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEE11get_deleterEv) +STUB("aER-LBHbVbw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEED1Ev) +STUB( + "aEa2y9AZUW8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "aEdk8vxoGZg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEEdeEv) +STUB("aEmkGkyLVRQ", _ZN7WebCore11ImageSource10frameCountEv) +STUB("aEnkYyUwc9g", _ZN3sce7Toolkit2NP2V27Session11SessionData5resetEv) +STUB( + "aEntFDvja-I", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEED2Ev) +STUB( + "aEobsWqQWNw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEmmEi) +STUB("aEoi0u2FOiQ", sceLibSecureCryptographyEncrypt) +STUB("aEpSSlROuFo", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead18unsetSwapSupportedEv) +STUB("aEqTHxmgCwo", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEEaSERKS6_) +STUB("aEsD6hNB94w", _ZNK3sce2Np9CppWebApi14ConnectAccount2V212PartnerToken12getExpiresInEv) +STUB( + "aEt4aNpeLwQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEED1Ev) +STUB("aEtXdyCZ0y4", Java_com_sony_bdjstack_javax_media_controls_SoundManager_setGainMute) +STUB("aEvXG3i5oY0", _ZN3NTF5MutexC2Ev) +STUB("aEzKdJzATZ0", sceNpPartyGetState) +STUB("aF+oEFPzEsY", u_charAge) +STUB("aF1OmU3HiZ0", WKProtectionSpaceGetTypeID) +STUB("aF3wlbLTmwI", + _ZN7WebCore15UserInputBridge16handleWheelEventERKNS_18PlatformWheelEventENS_11InputSourceE) +STUB( + "aF4Wm0vK7oY", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser17hasplatformFilterEv) +STUB("aF5D30uVRVk", sceNpGriefReportCdDeleteRequest) +STUB( + "aF5V6hFlzgU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEEC1ERKSA_) +STUB( + "aF5pQngC0Qc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEC2EPNS2_10LibContextE) +STUB( + "aFDt3mV7K4o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEE11get_deleterEv) +STUB("aFEMYVqa7hE", mono_aot_Sce_Vsh_ShellUIUtilWrappermethod_addresses) +STUB( + "aFFAnuaVYQc", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification14NewRoomMessageEE12deepCopyFromERS8_) +STUB("aFFwS9mbHZE", _ZNK3WTF24TimeWithDynamicClockType16nowWithSameClockEv) +STUB( + "aFGEEIJS63Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEmmEi) +STUB("aFJnQE4CaWw", _ZN7WebCorelsERN3WTF10TextStreamERKNS_9ImageDataE) +STUB("aFKnTGQvQGw", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_14TrophyGameInfoEED2Ev) +STUB("aFMVMBzO5jk", _ZTSf) +STUB("aFXG-4hvVBk", _ZN3JSC12StringObjectC2ERNS_2VMEPNS_9StructureE) +STUB("aFfRvVWI9jc", _ZN3sce7Toolkit2NP2V26Trophy16UnlockedTrophiesC2ERKS4_) +STUB( + "aFlWseJb9sw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE4sizeEv) +STUB("aFmh3B6C5Fs", sceDeci4hDrfpMountDone) +STUB("aFpR2VzmSqA", _ZN3sce2np3ipc14service_client13DeleteRequestEii) +STUB( + "aFrDafbUsFU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE8capacityEv) +STUB("aFurHdEPXqc", WKPreferencesSetIsSecureContextAttributeEnabled) +STUB("aFv8qms6XTM", sceNpEntitlementAccessPollServiceEntitlementInfoList) +STUB("aFyUf1Ga3yM", u_sscanf_67) +STUB("aFyyDTaj9Rk", usprep_close_67) +STUB("aG2sIZcmvy4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEEC1Ev) +STUB( + "aG6RE+bSUac", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEC2Ev) +STUB("aG9B1dfdD9M", X509_check_issued) +STUB("aG9kb2QA8CE", mono_type_stack_size) +STUB( + "aGAfTXXu66o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEEC1ERKSA_) +STUB( + "aGDeb25qTis", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "aGEg3AWRX+k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEE7add_refEv) +STUB( + "aGG1-xbPYE4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEEptEv) +STUB("aGHYciYdwog", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEEC1EPS6_) +STUB( + "aGIZYIO0oRE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEE6assignEPS5_PFvS7_EPNS2_10LibContextE) +STUB( + "aGKOPjiSApA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEC1EPS6_PNS2_10LibContextE) +STUB("aGPKqsOpQaI", _ZN7WebCore9HTMLNames17addestinationAttrE) +STUB("aGTNhHZfOvY", _ZN7WebCore15HTTPHeaderFieldC1ERKS0_) +STUB("aGUNrrEvs4Q", _ZN12video_parser13cVideoMetaMP4D1Ev) +STUB( + "aGa5-2Yzto8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE6resizeEj) +STUB("aGazvjt6caA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEaSERKS7_) +STUB("aGlema+JxUU", sceSharePlayStopStreaming) +STUB("aGmHbcAj42g", + _ZN7WebCore15GraphicsContext9drawImageERNS_5ImageERKNS_9FloatRectERKNS_20ImagePaintingOptionsE) +STUB( + "aGp1PKjuyew", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("aGqjAIomJdE", _ZN3JSC18PropertyDescriptor17defaultAttributesE) +STUB( + "aGvg2wjchxo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEC1EPS8_) +STUB( + "aGyGqQ4rrhQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("aGziYMudPJs", _ZN7WebCore12GCController34garbageCollectNowIfNotDoneRecentlyEv) +STUB("aH04YKs+RU4", _ZN25MmsFileUpdaterFsOperation8openFileEPKc) +STUB("aH1av6lNxbU", _ZN3sce7Toolkit2NP15UserRankRequestC1Ev) +STUB("aH2nrQ3Xh5Q", sceDevUsbAcceptHostStream) +STUB("aH6Kf-byUp0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17SetGameDataResultEED1Ev) +STUB("aHDYXbIWey4", sceBgftServiceIntDownloadRegisterTaskStore) +STUB("aHDdLa7jA1U", _ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED0Ev) +STUB("aHG7WPzIkss", + _ZNK3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends9getoffsetEv) +STUB("aHGQHutZdSA", _ZN3sce2Np9CppWebApi14SessionManager2V114Representative11setPlatformEPKc) +STUB("aHGrH3yqKGU", _ZN3sce3pss4core8graphics7TextureD2Ev) +STUB( + "aHIzSV8MIAo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEplEm) +STUB("aHJNMYiJ7Ig", + _ZN3sce2Np9CppWebApi7Matches2V119RequestInGameRosterC1EPNS1_6Common10LibContextE) +STUB("aHLj5kCVuIQ", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container10setVersionERKi) +STUB( + "aHLllsgKarg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEC1Ev) +STUB( + "aHNYE4-vpwI", + _ZN3sce2Np9CppWebApi7Matches2V127RequestPlayerResultsFactory7destroyEPNS3_20RequestPlayerResultsE) +STUB( + "aHP5OyUPuvM", + _ZN3sce2Np9CppWebApi14SessionManager2V134PostGameSessionsRequestBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_18RequestGameSessionEEEEEPNS9_INS3_27PostGameSessionsRequestBodyEEE) +STUB("aHUFijEWlxQ", _Unlock_spin_lock) +STUB("aHUVAX-1UOA", WKBundleNodeHandleCopyHTMLFrameElementContentFrame) +STUB( + "aHYAv0WWils", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEE7add_refEv) +STUB("aHYjGt9WsbA", Java_java_awt_GnmFontMetrics_loadFontFromCache) +STUB( + "aHdhrBQ1hbM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "aHeB76zbDVc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE21intrusive_ptr_sub_refEPS9_) +STUB("aHhmxFX45Sc", mono_create_helper_signatures) +STUB("aHts38XzC8w", JVM_Bind) +STUB("aHuBE2C3JC4", sceCompositorSetVirtualCanvasAgcContextCommand) +STUB( + "aHvyIwb3wR4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEixEm) +STUB("aI+OeCz8xrQ", scePthreadSelf) +STUB( + "aI5pSjg5k1I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEE7get_refEv) +STUB( + "aI9K7U9JGwM", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEEiRNS2_10LibContextEPT_m) +STUB("aI9opH6+2L4", sceRazorCpuShutdown) +STUB("aICwGBkCo74", _ZN12video_parser13cVideoMetaMP48finalizeEv) +STUB( + "aIG8+K3GvYk", + _ZN3sce7Toolkit2NP8Matching9Interface33joinInvitedSessionFromNpSessionIdEPKNS1_24InviteJoinSessionRequestEPNS1_9Utilities6FutureINS1_18SessionInformationEEE) +STUB("aII9h5nli9U", sceAudioOut2ContextPush) +STUB( + "aIKH8jdOCuE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE8copyFromERKS9_) +STUB( + "aIKm0Rgs+8U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEixEm) +STUB( + "aIKuLWliVVc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEED2Ev) +STUB("aINUE2xbhZ4", _Poly) +STUB("aIQStCM2iFM", _ZN3sce2Np9CppWebApi13InGameCatalog2V55Error16unsetReferenceIdEv) +STUB("aIV+HI6llz4", _ZN3sce2np9JsonValue13GetFieldValueEiPPKc) +STUB( + "aIblFboufHI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE5clearEv) +STUB("aIcNbDiF+yE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEC2Ev) +STUB( + "aIlDbII7+q4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEC2Ev) +STUB("aIw5PiSpmxk", usearch_getMatchedLength_59) +STUB( + "aIytxRv+JtU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE3endEv) +STUB( + "aJ1FcAJOC14", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("aJ9yLqakAPo", mono_btls_x509_crl_free) +STUB("aJBITL4I2lY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEE7get_refEv) +STUB("aJJYouPTprc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEC2ERKS7_) +STUB("aJJy9D41U-4", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi22ParameterToCreateMatch9terminateEv) +STUB("aJKn6X+40Z8", ceill) +STUB( + "aJNN3CVE0vs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEmmEv) +STUB("aJUbKnyVUyU", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15PlayedWithStoryEE7destroyEPS3_) +STUB("aJZyCcHxzu4", sceNpUnregisterGamePresenceCallbackA) +STUB("aJcMH5FdDh8", monoeg_g_locale_from_utf8) +STUB("aJf+j5yntiU", sceAgcDcbEventWrite) +STUB( + "aJj-utYx1Cc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("aJk4dDybPXQ", ucol_setOffset_67) +STUB("aJmqgwgzjLs", sceKernelDebugGetSchedLockMode) +STUB("aJtnM5oDLD8", _ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession14getCustomData2Ev) +STUB("aJvNNIwiaMg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ResponseCooperativeResultEEaSERKS7_) +STUB( + "aJyeLOiYKLk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("aK1Ymf-NhAs", _ZTVSt7codecvtIcc9_MbstatetE) +STUB( + "aK2FhQzagnI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEC2EPKS8_) +STUB("aK5A5pUgbhU", mono_aot_Sce_Vsh_Np_ServiceChecker2unbox_trampolines_end) +STUB("aKBqHZKouts", _ZN15AbstractStorage7StorageD1Ev) +STUB("aKDkxJobGsk", _ZN7WebCore26UserTypingGestureIndicatorD1Ev) +STUB("aKJZx7wCma8", sceAudioPropagationSourceGetRays) +STUB("aKJk1caqFc8", _ZN3JSC11createErrorEPNS_14JSGlobalObjectERKN3WTF6StringE) +STUB("aKM0i7J3lwQ", rgctx_fetch_trampoline_rgctx_7) +STUB("aKN5oEaiXJA", _ZN7WebCore11HTMLElement6setDirERKN3WTF12AtomicStringE) +STUB( + "aKQVMOUT7VU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE7reserveEi) +STUB( + "aKSj5ZN5glI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V125IdempotentVariableFactory7destroyEPNS3_18IdempotentVariableE) +STUB("aKWnlLIobGA", sceFiosIsInitialized) +STUB( + "aKXjbBnqunY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEC2EPS8_) +STUB("aKa6YfBKZs4", sceSysmoduleUnloadModuleInternalWithArg) +STUB("aKaMcVLBKfM", _ZN7WebCore15XPathExpressionD1Ev) +STUB( + "aKcp0TPx43s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEED1Ev) +STUB("aKdPQLVLP3M", uprv_asciitolower) +STUB( + "aKevYwm5wek", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEEC2ERKSA_) +STUB( + "aKlx0b4pHHU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE3endEv) +STUB("aKsAzrGF+mI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEE11get_deleterEv) +STUB("aKw9uBmZjpw", sceAvSettingCheckCallback) +STUB("aKxpgAMSJ04", sceFiosCloseAllFiles) +STUB("aKzReC07ziw", WKCertificateInfoGetTypeID) +STUB("aL0ECHyeRb0", _ZN7WebCore16MIMETypeRegistry15mimeTypeForPathERKN3WTF6StringE) +STUB( + "aL0GptnvAqw", + _ZN9Inspector32DatabaseBackendDispatcherHandler18ExecuteSQLCallback11sendSuccessEON3WTF6RefPtrINS2_8JSONImpl7ArrayOfINS2_6StringEEENS2_13DumbPtrTraitsIS7_EEEEONS3_INS5_INS4_5ValueEEENS8_ISD_EEEEONS3_INS_8Protocol8Database5ErrorENS8_ISJ_EEEE) +STUB( + "aL2U1O1BEzU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEaSERKS7_) +STUB("aL2ZBXT0HM4", _ZN3sce7Toolkit2NP2V210Tournament7BracketD1Ev) +STUB("aL5cBoo7qhs", WKBundlePageFindStringMatches) +STUB("aL6nI2orYZk", _ZN3WTF10WorkerPoolD2Ev) +STUB("aLA7thd1TcQ", WKPreferencesGetCSSRegionsEnabled) +STUB( + "aLAgZe1B2vk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEC2ERS7_) +STUB("aLGD1kOLQXE", _ZTVN3sce2np10JsonObjectE) +STUB( + "aLOP2jwylds", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEneERKS9_) +STUB( + "aLRr5R8py8Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEED2Ev) +STUB( + "aLSk-RluYtc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEmmEv) +STUB( + "aLUokOu1GF0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEdeEv) +STUB("aLX3IaojWsg", JSWeakObjectMapGet) +STUB("aLXYh7gNgXw", _ZN3sce7Toolkit2NP2V28Matching7Request23SetMembersAsRecentlyMetC1Ev) +STUB("aLYyS4Kx6rQ", _malloc_prefork) +STUB("aLZ14qMNdc4", _ZN3sce7Toolkit2NP2V210Wordfilter16SanitizedCommentC2ERKS4_) +STUB("aLifbmFk4tg", sceVideoCoreMediaSourceSetDuration) +STUB("aLjHBA9fGMc", mono_install_assembly_postload_search_hook) +STUB("aLm2pk2iekU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEaSERS7_) +STUB( + "aLreRUt36CA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "aLrwB9zSIP0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEC1EPNS2_10LibContextE) +STUB("aLsbm2KRQgE", WKContextConfigurationCreateWithLegacyOptions) +STUB( + "aLtk6y5ryVQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEC1EPNS2_10LibContextE) +STUB("aLuuVRsDSf0", _ZN4Manx13WorkQueueImpl6createEPKc) +STUB("aLwV8MHp2t4", _Z20WebViewBaseCanGoBackii) +STUB("aM1Eu3AwKpQ", utrie_getData_67) +STUB("aM1tPxdmVsM", _ZNK3sce2Np9CppWebApi7Matches2V122RequestMatchStatistics19teamStatisticsIsSetEv) +STUB( + "aM22QSRarZY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("aM7Y3jjgoDQ", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V224TestForProfanityResponse11statusIsSetEv) +STUB( + "aMDsSkTc+kQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEC1EPS8_) +STUB("aMFoY7To2V0", _ZN3JSC11JSWithScope6s_infoE) +STUB("aMH6eRoQoDA", _ZN7WebCore18PlatformPasteboard5writeERKNS_20PasteboardWebContentE) +STUB( + "aMHo4NBsS+c", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEptEv) +STUB( + "aMKL1dJN3lQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("aML18Z0J0t0", sceKernelGetProsperoSystemSwVersion) +STUB("aMOHnm9mOIc", _ZN12video_parser5vpcom5_SeekEPNS_8_vp_fileExNS0_12VP_SEEK_TYPEEPx) +STUB("aMP5ggnLs-c", _ZN4Manx13WorkQueueImplC2EPKc) +STUB("aMQhMoYipk4", _ZTVN10__cxxabiv117__array_type_infoE) +STUB( + "aMT6GcazQtw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEE7add_refEv) +STUB("aMU+i7TAab0", _ZZSt9MakefacetISt8numpunctIcESt8_LocinfoERT_T0_E3buf) +STUB( + "aMURLYE3cVY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "aMUSRlp7KS8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEC1ERKS7_) +STUB("aMUu9AcDv2s", _ZN3JSC7Symbols38replaceAllUsingStringSearchPrivateNameE) +STUB( + "aMWVlpXja7U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "aMaH66zHgO0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEixEm) +STUB( + "aMhqQdD0-Ho", + _ZN9Inspector25TimelineBackendDispatcherC2ERNS_17BackendDispatcherEPNS_32TimelineBackendDispatcherHandlerE) +STUB("aMoldKkBQHQ", mono_aot_Sce_PlayStation_Orbisunbox_trampolines) +STUB( + "aMp-I2oKoe0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE6resizeEj) +STUB( + "aMu9uihcJ3w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEppEv) +STUB("aMucxariNg8", _Btowc) +STUB( + "aMurPhX5fKQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE3endEv) +STUB("aMwGXRZ6024", _ZN3WTF22CrossThreadTaskHandlerD0Ev) +STUB("aMwu+dVAt9s", _ZN3JSC37JSSegmentedVariableObjectHeapCellTypeC1Ev) +STUB("aMy+8iBUMjQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEE7add_refEv) +STUB("aMzOSjDa+zw", mono_aot_Sce_Vsh_WebBrowserplt) +STUB("aN1B2MP3kLU", glDepthMask) +STUB("aN4lYzi+NME", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEptEv) +STUB("aN4xuJLVnKc", _ZN7WebCore19UserContentProviderD0Ev) +STUB( + "aNAExEdyCZA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEC2Ev) +STUB("aNEqtSHdUSo", sceAudioPropagationSystemCreate) +STUB( + "aNGoUvBHF4Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEEdeEv) +STUB("aNJaYyn0Ujo", warnx) +STUB("aNRXvzaSKs0", _ZN3JSC14iteratorMethodERNS_9ExecStateEPNS_8JSObjectE) +STUB("aNWT5XqX95o", mono_aot_Sce_Vsh_RequestShareStorageWrapperjit_code_start) +STUB("aNZOcfGHsDI", _ZN3JSC2VM10ClientDataD0Ev) +STUB( + "aNe24GXfiyg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEeqERKS9_) +STUB("aNeavPDNKzA", sendmsg) +STUB("aNfpdhcsMWI", _ZNSt10moneypunctIcLb0EEC2EPKcm) +STUB("aNg0BriFqKg", _ZN7WebCore11DisplayList23FillRectWithRoundedHoleD1Ev) +STUB("aNgesXnRJj8", _ZN3JSC8DebuggernwEmPv) +STUB("aNjpNjyL4No", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEEC1EPNS2_10LibContextE) +STUB("aNkfdBX+wu8", _ZN19JITSharedDataMemory11shared_freeEPv) +STUB("aNlHqxTvPTE", sceVencQueryPreset) +STUB("aNleMBZjZDU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEEC1ERKS6_) +STUB( + "aNnD9+Xjr9U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEC1EPS8_) +STUB( + "aNvo9qBX+hU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEC1Ev) +STUB("aNz11fnnzi4", sceKernelAvailableFlexibleMemorySize) +STUB("aO+WS2xWuo4", pthread_getprio) +STUB( + "aO0QKCPEW-8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("aO1clLvwumw", WKProtectionSpaceGetAuthenticationScheme) +STUB( + "aO7Jkj4xmro", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEplEm) +STUB("aODgraUE0tg", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119NatConnectivityFromD1Ev) +STUB( + "aODslKODtDE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEppEi) +STUB("aODvnvMj8vs", sceSpPthreadCondSignal) +STUB( + "aOILh1hTnVU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEED1Ev) +STUB("aOIU56glwyE", u_setAtomicIncDecFunctions_67) +STUB("aOJG7zjrpS0", _ZN9Inspector22InspectorDebuggerAgent11setListenerEPNS0_8ListenerE) +STUB("aOK5ucXO-5g", _ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED0Ev) +STUB("aOKKRhOYzyU", glUniform4ui) +STUB( + "aOQpSffAYls", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE21intrusive_ptr_add_refEPS9_) +STUB("aOcRDrvLZwM", _ZN6WebKit12ChildProcessC1Ev) +STUB("aOhBTLLM280", uloc_getCurrentCountryID_67) +STUB( + "aOhPv9pgThY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEptEv) +STUB("aOjcWjB2HoM", _ZN3JSC7JSProxy12setPrototypeEPNS_8JSObjectEPNS_9ExecStateENS_7JSValueEb) +STUB("aOk5iMFXq2M", _ZN3WTF9WorkQueue6createEPKcNS0_4TypeENS0_3QOSE) +STUB( + "aOl6lck2DDc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEE11get_deleterEv) +STUB("aOlIKPpNzyk", mono_aot_System_Xml_Serializationunbox_trampolines) +STUB("aOtpC3onyJo", _Xp_mulh) +STUB( + "aP-opohuFG8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("aP0X-4W9Lgg", _ZN7WebCore11DisplayList13StrokeEllipseC2ERKNS_9FloatRectE) +STUB("aP1Ki9G3++4", sceAgcDcbSetUcRegisterDirectGetSize) +STUB("aP3uFUu-myc", monoeg_g_slist_append) +STUB("aP4j+8ah3p4", _ZN3sce7Toolkit2NP2V212EventsClient11EventInGame8deepCopyERKS4_) +STUB( + "aP4pKf1sa+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEEC1ERKSA_) +STUB("aP6KEe871Ow", sceAvSettingCallbackFuncsInitForLnc_) +STUB("aP7Vf01mqKo", _ZNK3sce2Np9CppWebApi14SessionManager2V15Error7getCodeEv) +STUB("aP9pvilFrX0", _ZN3JSC22FullGCActivityCallbackC2EPNS_4HeapE) +STUB( + "aPBIEmMfMAY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEED2Ev) +STUB("aPBWxAv3clA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEC1EPS8_) +STUB("aPDKI3J8PqI", posix_spawnattr_setpgroup) +STUB("aPI3JqrIPEw", _ZNK3WTF9BitVector11isEmptySlowEv) +STUB("aPIZJTXC+cU", sceGnmInsertPushColorMarker) +STUB("aPNVLuIZaEk", utrie2_internalU8PrevIndex_67) +STUB( + "aPSuL7N8rDs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEppEv) +STUB( + "aPYJADOA9Mw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEaSERS7_) +STUB("aPcyptbOiZs", sigprocmask) +STUB("aPpic8K75YA", sceNetCtlConnectWithRetryIpcInt) +STUB( + "aPs6eFHwXYs", + _ZN9Inspector27AnimationFrontendDispatcher14trackingUpdateEdN3WTF6RefPtrINS_8Protocol9Animation14TrackingUpdateENS1_13DumbPtrTraitsIS5_EEEE) +STUB("aPx+WVlNxDs", _ZN3sce7Toolkit2NP9Utilities6FutureI18SceNpTssDataStatusED1Ev) +STUB( + "aPxsYbRLTuA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEC2ERS7_) +STUB("aQ6B25Uq2hg", + _ZN8meta_gen11MsvPromoter23setKeyValue_TBLV_BaseIdENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB("aQ6MOLz0Svc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE7popBackEv) +STUB("aQ6ZliiYENQ", _ZN3sce7Toolkit2NP2V26Trophy17TrophyPackSummaryC2Ev) +STUB("aQ8Xoiz0yMQ", SwCtrlSinkStreamGetWritePointer) +STUB("aQ9aDA+U8Dc", _ZN3sce7Toolkit2NP2V211SharedMedia14CommonMetadataC2Ev) +STUB("aQDrTFzGkg8", sceHmdInternalGetSensorCalibrationData) +STUB("aQHUuJt0YS8", _ZN3WTF6Logger9observersEv) +STUB("aQJnG7oMhNU", _ZNK3JSC18PropertyDescriptor6getterEv) +STUB( + "aQKBnWRO6xU", + _ZN9Inspector14ConsoleMessageC2EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelERKN3WTF6StringEm) +STUB("aQNK+DZuME4", rgctx_fetch_trampoline_mrgctx_80) +STUB( + "aQQmmMzkK8Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE8pushBackERKS8_) +STUB("aQSyyT89490", sceCesUtf8ToGb) +STUB("aQURHgjHo-w", _Erfc) +STUB("aQZ5t3cjtbw", mono_class_get_properties) +STUB("aQZDiK6H7U8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V117DataStatusFactory7destroyEPNS3_10DataStatusE) +STUB( + "aQZDyn+mtqA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("aQZPV4OQRGo", sceNpEulaDialogClose) +STUB( + "aQZkTZSB9Q4", + _ZN7WebCore22EmptyFrameLoaderClient10sendH2PingERKN3WTF3URLEONS1_17CompletionHandlerIFvONSt12experimental15fundamentals_v38expectedINS1_7SecondsENS_13ResourceErrorEEEEEE) +STUB("aQaD09v7LVo", JVM_ConstantPoolGetUTF8At) +STUB("aQewC+FffFY", mono_btls_ssl_add_chain_certificate) +STUB( + "aQhOZvy29uQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEE11get_deleterEv) +STUB( + "aQhlwYy6PD8", + _ZN9Inspector25DebuggerBackendDispatcher20setPauseOnMicrotasksElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "aQhq0IddhpM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("aQjlTguvFMw", _ZNSt14numeric_limitsIiE8digits10E) +STUB( + "aQkS92A0rmQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "aQl-nu1x5DA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE7popBackEv) +STUB("aQm0LWy7qEA", _ZN3JSC16callCustomSetterEPNS_9ExecStateENS_7JSValueEbPNS_8JSObjectES2_S2_) +STUB( + "aQmTpXp5Fgs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEC1EPS8_) +STUB( + "aQt10fly8Ws", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "aQtAmesEqnM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEmmEi) +STUB("aQvy2Y0XTIA", mono_aot_Systemjit_code_start) +STUB("aQwNhI19JpE", sceTsStartFileStreaming) +STUB( + "aQwz8DvBMl4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEC1Ev) +STUB("aQzxfON3l2Y", + _ZN3sce2np3ipc13ServiceClientC1EPNS1_17ServiceIpmiClientEPKNS1_17ServiceClientInfoE) +STUB("aR+AZH4ElcE", mono_aot_Sce_Vsh_Friendunbox_trampoline_addresses) +STUB("aR6cmUTI9ZQ", _ZN7WebCore12SharedBufferC1EON3WTF6VectorIcLm0ENS1_15CrashOnOverflowELm16EEE) +STUB("aR6uq1j7M7I", sceGnmSysResetOttvLibrary) +STUB("aR8+Hvghm0E", sceLoginServiceTerminate) +STUB("aRBAciXgfug", _ZNK7WebCore15StyleProperties17propertyAsValueIDENS_13CSSPropertyIDE) +STUB( + "aRClSMR3tMs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE21intrusive_ptr_add_refEPS9_) +STUB("aRK0LhE+B5A", __asan_report_exp_store1_noabort) +STUB("aRKF3rRoH2o", _ZN7WebCore8Settings38setSimpleLineLayoutDebugBordersEnabledEb) +STUB("aRMFdrFpco4", il2cpp_monitor_exit) +STUB("aRNR1W6I7AA", _ZN7WebCore8SVGNames29externalResourcesRequiredAttrE) +STUB("aRQRfcI-v9I", _ZN7WebCore15HTMLLinkElement14setCrossOriginERKN3WTF12AtomicStringE) +STUB("aRSQNqbats4", sceGameLiveStreamingGetCurrentBroadcastScreenLayout) +STUB("aRUIqC7jeWE", _ZN3sce7Toolkit2NP2V27Ranking7Request13GetUsersRanksD1Ev) +STUB("aRVhBrrwh8A", _ZN12video_parser5vpcom10RtcSetTickEPNS_12_VP_DATETIMEEPK10SceRtcTick) +STUB( + "aRYF3h5rQCE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEEC2EPS8_PNS2_10LibContextE) +STUB( + "aRaYbinBa+8", + _ZN9Inspector14ConsoleMessageC2EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelERKN3WTF6StringES8_jjPNS1_9ExecStateEm) +STUB("aRdBxxGMvyI", _ZN3sce7Toolkit2NP2V28Matching7Request9LeaveRoomC2Ev) +STUB( + "aRe4HfMOslA", + _ZN3WTF24normalizeLineEndingsToLFEONS_6VectorIhLm0ENS_15CrashOnOverflowELm16ENS_10FastMallocEEE) +STUB("aRfMrO1iq7o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEED1Ev) +STUB("aRfavhxkoIc", _ZNK7WebCore29PerspectiveTransformOperation10isIdentityEv) +STUB("aRhwYh6tFWQ", uhash_init) +STUB("aRjNtzjjqD8", WKURLCopyString) +STUB("aRjUyycVs7A", mono_aot_ReactNative_PUImethod_addresses) +STUB( + "aRjr2VRv2tM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE5beginEv) +STUB("aRo9AhFUXcM", sigsetjmp) +STUB( + "aRoPQmJa7+Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEixEm) +STUB("aRpErCNFrjg", + _ZN7WebCore20LegacySchemeRegistry30registerURLSchemeAsCORSEnabledERKN3WTF6StringE) +STUB("aRqvgeH+oe0", sceSlimglCompositorGetError) +STUB("aRrC568eEhU", Java_java_awt_Window_pShow) +STUB("aRwBsP0ib1E", + _ZN7WebCore22EmptyFrameLoaderClient24revertToProvisionalStateEPNS_14DocumentLoaderE) +STUB( + "aRymTAWfo4U", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("aS+j93AoSdI", + _ZN3sce2Np9CppWebApi7Matches2V121ResponsePlayerResults8fromJsonERKNS_4Json5ValueE) +STUB( + "aS-6mRf77SU", + _ZN3sce2Np9CppWebApi11UserProfile2V119BasicProfileFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_12BasicProfileEEE) +STUB( + "aS5J3uoI9Ao", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEC1EPS8_) +STUB("aS66RI0gGgo", sceAvPlayerInit) +STUB( + "aS8l-gPBo0E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEE11get_deleterEv) +STUB("aS8lb9rbDUA", mono_delegate_free_ftnptr) +STUB("aSAE6abqxA8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEC2Ev) +STUB("aSGd6TpnZMY", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10getString7Ev) +STUB("aSIAa7wZkCs", monoeg_g_find_program_in_path) +STUB( + "aSIHiBCzY9g", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("aSJafUjZCqc", sceHandTrackerUpdate) +STUB( + "aSMbDO3MyLA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("aSNAf0kxC+Y", __atomic_fetch_or_2) +STUB( + "aSNvNtno1FU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEC1EPKS8_) +STUB("aSoqFLwZUDk", + _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities14UserActivities6toJsonERNS_4Json5ValueEb) +STUB( + "aSuHhdfStX0", + _ZN9Inspector26InspectorBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) +STUB( + "aSykTxAstEA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "aT1wFL8-Lrs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEEaSERKSA_) +STUB( + "aT2bhmTshnI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEED1Ev) +STUB("aT65o37SqqE", _ZNK3sce2Np9CppWebApi7Matches2V14Task13getActivityIdEv) +STUB("aT9KhNAu0RY", sceVoiceChatRequestJoinVoiceChatGroup) +STUB("aTDYpBci-Ks", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE3endEv) +STUB( + "aTGaTk6DHfw", + _ZN7WebCore6JSFile6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_4FileENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "aTI29eH4NSM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEC2EPS8_) +STUB("aTLvyNkK6mA", _ZNK3JSC8JSObject8toNumberEPNS_14JSGlobalObjectE) +STUB("aTNOl9EB4V4", _ZN3sce2np5Mutex4InitEPKcj) +STUB( + "aTNSx9nV-9s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEC2ERKS7_) +STUB("aTRth+22E8I", _ZN9Inspector27PerGlobalObjectWrapperWorld16clearAllWrappersEv) +STUB("aTRyTzcMwbA", sceSdmaBeginQueueMode) +STUB("aTSGWfAX47k", _ZNK3WTF6String9substringEjj) +STUB( + "aTZrSelcj04", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEE7get_refEv) +STUB("aTamWRbZ1Y8", _ZN7WebCore9CookieJar17clearCacheForHostERKN3WTF6StringE) +STUB("aTdxY7THLVU", WKContextConfigurationCopyApplicationCacheDirectory) +STUB("aTjYlKCxPGo", _ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2ERKSt8_Locinfom) +STUB("aTnHs7W-9Uk", sceNpTrophyAbortHandle) +STUB("aTtay82qJM8", sceSystemModalDialogOpen) +STUB("aTyXVKJo4J0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session8SessionsEE5resetEv) +STUB("aU-Pon77jAs", BN_CTX_new) +STUB("aU2G9Mup16U", _Dint.sub) +STUB("aU5B+oCEp2I", _ZN3sce2Np9CppWebApi14SessionManager2V116FromNonPsnMember11setPlayerIdEPKc) +STUB("aU5QaUCW-Ik", sceNpManagerIntLoginAddJsonInfo) +STUB("aU5zCAKUc5A", mono_aot_Sce_Vsh_SQLitejit_code_end) +STUB( + "aU8y1MNugus", + _ZN3sce7Toolkit2NP3TUS9Interface17addAndGetVariableEPNS1_9Utilities6FutureI16SceNpTusVariableEERNS1_26TusAddAndGetVarInputParamsEb) +STUB("aUAT0Gn4THw", _ZN3sce7Toolkit2NP9Utilities6FutureI24SceNpBandwidthTestResultED2Ev) +STUB( + "aUBTisyooTQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEEC1ERKSA_) +STUB( + "aUDQA5H0DKk", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3CSS17CSSPropertyStatusEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB( + "aUDbquIl-XQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEplEm) +STUB("aUEGxixvrdA", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEEC2Ev) +STUB( + "aUFDHQyPYOY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "aULIPNMVmkA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEE11get_deleterEv) +STUB("aUNISsPboqE", _ZNKSt7_MpunctIcE11do_groupingEv) +STUB( + "aUO41fc5FgQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE21intrusive_ptr_add_refEPS9_) +STUB("aUOA6ALnNt8", mono_aot_Sce_Vsh_Sl2_NativeQueueClientplt) +STUB("aUP+lt6zNN8", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament16RegisteredRosterEEC1Ev) +STUB( + "aUcejy38s0c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEC2EPS8_) +STUB("aUgLCb3pSOo", sceNpServiceChecker2IntGetServiceAvailability) +STUB("aUjXTLTLVBQ", + _ZN3sce2Np9CppWebApi14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyD1Ev) +STUB("aUkLStmNBCw", _ZThn88_N7WebCore14XMLHttpRequestD1Ev) +STUB( + "aUlaMGIyIjg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEEC2ERSA_) +STUB("aUs5QuHNzmY", _ZN12video_parser17cVideoProfilerMp412getMovieInfoEPPNS_13VpMovieInfo_tE) +STUB( + "aUycl8xHP2w", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEE3getEv) +STUB("aV-0CdVoSCc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEEC2ERKS7_) +STUB("aV5WzZ1JxbY", sceApplicationBlockingKill) +STUB("aV60p-F-jhg", mono_aot_ReactNative_Modules_Vsh_Gct_Telemetry2plt_end) +STUB("aV76TR9MsMk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V122UploadDataResponseBody11setObjectIdEPKc) +STUB("aVDQZGAqOo8", _ZN3sce4Json6StringpLEPKc) +STUB( + "aVDbuegzg04", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEC1Ev) +STUB( + "aVFtvnyEAd4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE21intrusive_ptr_add_refEPS9_) +STUB("aVR80xoiZ1k", utrace_functionName) +STUB("aVRNp1nOOKY", sceLncUtilUnregisterCdlgSharedMemoryName) +STUB("aVTInRBzsG0", _ZN3sce3Xml3Dom6NodeIdeqES2_) +STUB("aVXIjwnJ32U", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEEC2ERKS7_) +STUB("aVZb961bWBU", sceSystemServiceActivateMpeg2IsActivated) +STUB("aVb9u-6yS4c", _ZN3sce2Np9CppWebApi6Common8IteratorINS2_6StringEEmmEi) +STUB("aVdYj+lcSXw", _ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequest19unsetExpirationTimeEv) +STUB("aVip2k6-D1Y", Java_java_lang_reflect_Array_getLength) +STUB( + "aVipNETOKoU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEC1Ev) +STUB("aVj0E2JNKS8", _ZN3sce2Np9CppWebApi7Matches2V111AddedPlayer11setPlayerIdEPKc) +STUB( + "aVq0wNYTlus", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("aVt320GW3sY", SHA384_Final) +STUB("aVtHmPYrANg", WKBundlePageClearApplicationCache) +STUB("aVvm-afVQlo", sceHidControlConnectPort) +STUB("aVxqedJqfFA", _ZN7WebCore9CookieJarD2Ev) +STUB( + "aVyHnoWSYHk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "aW1FwgpH0Ms", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEmmEi) +STUB("aW2fsc4MIFg", _ZN3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayer11setPlatformEPKc) +STUB( + "aW6LWfoqKe4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEED1Ev) +STUB("aW9KhGC4cOo", putwchar) +STUB("aWCk+BNfOLc", _ZN7WebCore24isDefaultPortForProtocolEtN3WTF10StringViewE) +STUB( + "aWLNTDtVUxY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEneERKS9_) +STUB("aWMUKhiwUbk", FT_Get_X11_Font_Format) +STUB("aWZ6qr7SrtU", _ZN3sce7Toolkit2NP2V28Commerce12SubContainerD1Ev) +STUB( + "aWbm8NugtMc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEC1EPNS2_10LibContextE) +STUB("aWc+LyHD1vk", __atomic_fetch_xor_1) +STUB( + "aWdHudDAY2I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE8capacityEv) +STUB("aWgEw2xL5zI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEED1Ev) +STUB("aWhoRwq2jFk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEED1Ev) +STUB( + "aWki-uzWxiM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEEC2Ev) +STUB("aWmkW6Qm++U", _ZN7WebCore8Settings42setCoreImageAcceleratedFilterRenderEnabledEb) +STUB("aWo+7jvpllY", _ZN3sce2np9HttpTrans4ReadEPNS0_6HandleEPvmPm) +STUB("aWo7BkA1YEc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEEC2EPKS6_) +STUB("aWov7LDvNh8", _ZN7bmalloc6IsoTLS8s_tlsKeyE) +STUB( + "aWqBlYPxBL0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEmmEi) +STUB("aWy9HMu1WK4", jpeg_fdct_7x14) +STUB("aX0HNPbwx7Q", _ZN3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap12setIsCurrentERKb) +STUB( + "aX11C8QgfhQ", + _ZN3sce2Np9CppWebApi7Matches2V129RequestMatchStatisticsFactory7destroyEPNS3_22RequestMatchStatisticsE) +STUB("aX1JKpdidtI", sceNpUniversalDataSystemIntAbortHandle) +STUB("aX1RlxvYl4A", sceAppInstUtilAppConvertAppDiscToDownload) +STUB( + "aX4TP0iQG7A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "aX4h3gFv8Q0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEmmEi) +STUB("aX5mvTtvo1M", uldn_close_67) +STUB("aX8H2+BBlWE", ldexpl) +STUB("aX8PI-h3+dE", FTA_Export_Module_t1cid) +STUB( + "aX8eP2PXg2Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEEC1ERKSA_) +STUB("aXH0HuAGF5A", _ZN3sce7Toolkit2NP24CheckAvailabilityRequestC2Ev) +STUB( + "aXIIQButpTY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEE7add_refEv) +STUB("aXJu6WWsrk0", _ZN7WebCore9HTMLNames4iTagE) +STUB("aXKRmANFUT4", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V219WebApiFilterRequest6toJsonERNS_4Json5ValueEb) +STUB("aXKwiUA25Qg", u_fgetNumberFormat_67) +STUB( + "aXL8JZTEwIw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEixEm) +STUB("aXLBs7DFqSA", ts) +STUB("aXPkwTBtroU", uloc_getLineOrientation_67) +STUB( + "aXRJqHmynS8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE6resizeEj) +STUB( + "aXSITGo5zP8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEC2EPNS2_10LibContextE) +STUB("aXTsXx87-8M", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13FriendsOfUserEEC2ERKS4_) +STUB( + "aXUUl21Pk-0", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_13FriendsOfUserENS1_15AppSTLAllocatorIS5_EEEEC2Ev) +STUB("aXUj3BT58vY", u_strToUpper) +STUB("aXXozCRvaGY", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEEixEm) +STUB("aXZ8mMlzpxs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119ChildActivityStatusEEC2EPS6_) +STUB( + "aXaewZzSxyk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "aXfI3LJ0Bug", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEC2Ev) +STUB( + "aXfcgVe-muQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEdeEv) +STUB("aXhvf2OmbiE", sceNpTrophySystemGetTrophyGroupData) +STUB( + "aXikgAopsA0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEED2Ev) +STUB( + "aXjuXRfk6BU", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessions35hasxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB( + "aXkHQHosau0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEmmEi) +STUB( + "aXlJaJ61Ui4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEE11get_deleterEv) +STUB("aXujNR3MorI", sceBdSchedSetBackgroundCopyRequest) +STUB( + "aXw+CSRHSNs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB("aY-404pbEfg", udat_formatForFields_59) +STUB("aY-lm9NK8zU", scePerfTraceAmmGetInfo) +STUB( + "aY0vdvRszQM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEC1Ev) +STUB( + "aY2-NdiJ7es", + _ZN9Inspector25TimelineBackendDispatcher6createERNS_17BackendDispatcherEPNS_32TimelineBackendDispatcherHandlerE) +STUB( + "aY6jR4rVLow", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "aY6qVjKO7ro", + _ZN3JSC15WeakHandleOwner26isReachableFromOpaqueRootsENS_6HandleINS_7UnknownEEEPvRNS_11SlotVisitorE) +STUB("aY6qhHKBJp8", _ZN7WebCore36largestRectWithAspectRatioInsideRectEfRKNS_9FloatRectE) +STUB( + "aY7NNSxPM0Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEppEv) +STUB( + "aY81ScCpzrY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("aYBAAH7Gfws", sceUpsrvUpdateDestroyUpdateTask) +STUB( + "aYDzPTLngsk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEEaSERSA_) +STUB("aYGEkPYgtFU", + _ZNK3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayer12getAccountIdEv) +STUB("aYMtA-E3hDw", mono_btls_bio_mono_new) +STUB("aYOUSGHbeF8", _ZN3sce3pss4core7runtime21InitializeDiagnosticsEv) +STUB("aYPCd1cChyg", sceRtcSetDosTime) +STUB("aYQRbQ8qN+A", _ZN7WebCore8SVGNames12operatorAttrE) +STUB("aYVETR3B8wk", _Atomic_load_2) +STUB( + "aYYyZLi405E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("aYhJ9FWn0I0", JSWeakRelease) +STUB("aYkLspDSybs", sceSulphaGetClientInfo) +STUB( + "aYmk8T3aOlo", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119BandwidthProperties11setUpstreamERKNS1_6Common12IntrusivePtrINS3_24BandwidthUpstreamMetricsEEE) +STUB( + "aYp2n7ndY1c", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEdeEv) +STUB( + "aYpWWsup7to", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "aYr9UFReZQQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEEC2ERSA_) +STUB("aYrWOzj4DYw", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi24ParameterToReportResultsD2Ev) +STUB( + "aYxkOFB1dmc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEmmEv) +STUB("aYySApdZmtE", sceAgcSdmaOpen) +STUB("aZ1gCm7lYhU", _ZN7WebCore16enclosingIntRectERKNS_10LayoutRectE) +STUB("aZ5n2rbrF3M", sceCesUcs2StrToIso2022Str) +STUB("aZ7KyJ3gncM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEC2ERS7_) +STUB("aZ84p5aBkrc", WKPreferencesGetBeaconAPIEnabled) +STUB("aZ8QhrvO7-M", __asan_report_load16) +STUB("aZ9GDQ0F6cM", _ZN3JSC12HeapAnalyzerC2ERKS0_) +STUB("aZD2KLJ80D0", sceDeci4hDrfpRename_fuse) +STUB( + "aZDf8iQPKdk", + _ZN9Inspector26LayerTreeBackendDispatcherC2ERNS_17BackendDispatcherEPNS_33LayerTreeBackendDispatcherHandlerE) +STUB("aZE-yjtVZp8", _ZN9Inspector21InspectorRuntimeAgent25enableControlFlowProfilerERN3WTF6StringE) +STUB("aZH+29bSsEk", _ZNK3sce3Xml3Dom8Document9getEntityENS1_6NodeIdE) +STUB( + "aZIvax0pEdg", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("aZK8lNei-Qw", fputc) +STUB("aZNI9FsqVdk", _ZN7WebCore17HTMLButtonElement7setTypeERKN3WTF12AtomicStringE) +STUB( + "aZO2yw9QR0Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE5beginEv) +STUB( + "aZSPlds3oh8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEEC2Ev) +STUB( + "aZSk83JBOo0", + _ZN3sce2Np9CppWebApi11UserProfile2V121PersonalDetailFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_14PersonalDetailEEE) +STUB("aZYhAxvffg4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEC2Ev) +STUB("aZaT3Nyab30", _ZN15AbstractStorage11LocalFolder4OpenENS_8ItemTypeE) +STUB( + "aZbnYi7I8Cg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEEaSERKSA_) +STUB( + "aZdDpGkWSHk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "aZdhm6JOFos", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEED1Ev) +STUB("aZdwjS+c3MA", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_28NpSessionDetailedInformationEEC1Ev) +STUB("aZiMQpRb7jk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEdeEv) +STUB( + "aZiUl74YnMk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEEC2EPS8_PNS2_10LibContextE) +STUB("aZnB3MqZQL4", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE3endEv) +STUB("aZnCcidQDDY", mono_aot_System_Net_Http_WebRequestunwind_info) +STUB( + "aZobEagYar8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEE11get_deleterEv) +STUB("aZwRizFSaYs", monoeg_g_slist_insert_sorted) +STUB( + "aa-kCJwD1Yk", + _ZN9Inspector21DOMFrontendDispatcher18pseudoElementAddedEiN3WTF6RefPtrINS_8Protocol3DOM4NodeENS1_13DumbPtrTraitsIS5_EEEE) +STUB("aa2y9JoZwDc", sceAudioOut2LoContextAdvance) +STUB( + "aa8W09yOIi4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEaSERKS7_) +STUB("aaC3005VtY4", sceUserServiceGetEventSortTitle) +STUB("aaDMGGkXFxo", frexpf) +STUB("aaE9dLay8Fs", _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession16unsetCustomData2Ev) +STUB("aaJrlb+ecao", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12unsetString2Ev) +STUB( + "aaNG4JrqDh8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEmmEi) +STUB("aaNRqkhVQyc", ucurr_forLocaleAndDate_67) +STUB("aaPDegynKuY", _ZN7WebCore19floatValueForLengthERKNS_6LengthEf) +STUB("aaPIv+KmJvg", mono_signature_param_is_out) +STUB("aaPmcVbflek", _ZN7WebCore8SVGNames15paint_orderAttrE) +STUB( + "aaYdOndDEIc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE3endEv) +STUB("aacYSnQC1To", monoeg_g_list_sort) +STUB( + "aaecCs8uOx4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEE11get_deleterEv) +STUB("aanMqRmIwds", _ZN9Inspector15RemoteInspector27clientCapabilitiesDidChangeEv) +STUB("aaqUkzGjvM4", sceNpIpcClientTest2) +STUB("aaupu9HJGbE", _ZN3JSC2VM31intlRelativeTimeFormatSpaceSlowEv) +STUB("aawjck44ulE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V19JoinStateEEaSERKS7_) +STUB("ab+5Dimx0Kw", + _ZNK7WebCore22EmptyFrameLoaderClient23cannotShowMIMETypeErrorERKNS_16ResourceResponseE) +STUB("ab+Lelj7HXw", rgctx_fetch_trampoline_rgctx_127_p) +STUB( + "ab2wud16iYo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEE21intrusive_ptr_add_refEPS7_) +STUB( + "abBKDu80Xok", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEE5resetEPS6_) +STUB("abCQEKstw7g", _ULx86_64_get_save_loc) +STUB( + "abItqG3Bmb8", + _ZN3sce2Np9CppWebApi14SessionManager2V123FromNonPsnMemberFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_16FromNonPsnMemberEEE) +STUB( + "abLQYRQnc-s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("abQ7xd3yVXM", _ZN3sce2np18MemoryStreamWriterC2EPvm) +STUB("abaL6meqytw", _ZN3sce2Np9CppWebApi11Matchmaking2V116SubmitterFactory7destroyEPNS3_9SubmitterE) +STUB( + "abboquTOLoQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "abi3xMBV4Pc", + _ZN9Inspector25DebuggerBackendDispatcher20setPauseOnAssertionsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "abngJhUiYJ4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE4sizeEv) +STUB( + "abrAXZYxGGg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEEptEv) +STUB("abrgc4eCbm0", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17GetGameDataResultEE12deepCopyFromERS7_) +STUB("absEfxEm34g", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getGraphicsOffsetSequenceId) +STUB( + "abzO9WPS-Ys", + _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container7setSkusERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_3SkuEEEEE) +STUB("ac102y6Rjjc", _Hugeval) +STUB("ac2e4jbtGAQ", mono_bitset_size) +STUB("ac5f9+ILTJ8", monoeg_g_string_new_len) +STUB( + "ac8-pB3r2Jc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEixEm) +STUB("acA57vV3j1Q", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getSecondaryAudioStream) +STUB( + "acCynFvwD70", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEC1ERS7_) +STUB("acFHODnUrnM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEEC1EPS5_PNS2_10LibContextE) +STUB("acIXxXfqttk", _ZN7WebCore20serializationForHTMLERKNS_5ColorE) +STUB( + "acPd4kbrm6E", + _ZN3sce7Toolkit2NP15CommunicationIdC1ERK20SceNpCommunicationIdRK28SceNpCommunicationPassphraseRK27SceNpCommunicationSignature) +STUB("acU6Qzd8y8w", u_catopen_67) +STUB("acViQ0bTo7g", ubrk_open_59) +STUB("accA-Gi9aik", _ZNK3sce2Np9CppWebApi7Matches2V118RequestTeamResults6toJsonERNS_4Json5ValueEb) +STUB( + "aceF452f38o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE7reserveEi) +STUB( + "achZqoXR-q4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEEC2EPS5_PFvS7_EPNS2_10LibContextE) +STUB( + "acpx1BoX70g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEC2EPKS8_) +STUB("acr9PzoVsIw", mono_code_manager_destroy) +STUB("acxeAsX7154", _ZNK7WebCore15VisiblePosition19absoluteCaretBoundsEPb) +STUB("ad+qe0QhAxw", mono_code_manager_new) +STUB("ad1-t6xKVtA", WKContextRegisterURLSchemeAsEmptyDocument) +STUB( + "ad2br1lJ71A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "ad4zxPBlcGI", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10setString2EPKc) +STUB("ad547RBnW-A", GCC_except_table527) +STUB("ad80l3NdwB0", WKPageCopyRelatedPages) +STUB( + "adAU9LOL5lM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE7reserveEi) +STUB("adCAikkTibw", _ZN7WebCore18PlatformTimeRanges3addERKN3WTF9MediaTimeES4_) +STUB("adCOiUc2758", kmq_setattr) +STUB( + "adCRJ2N6W5w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEppEi) +STUB( + "adDrvPir7B8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEC2Ev) +STUB("adHqmwiJwXU", _ZNK7WebCore19InspectorController17shouldShowOverlayEv) +STUB( + "adKPku8Yhic", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEC2Ev) +STUB( + "adLS1DbXC9A", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("adMZUdkLHqE", _ZN7WebCore11DisplayList17DrawFocusRingPathC2ERKNS_4PathEffRKNS_5ColorE) +STUB("adQGcgttQZA", _ZN3JSC2VM29finalizationRegistrySpaceSlowEv) +STUB("adUN2UEsOQ4", pr8) +STUB( + "adY--moNJyY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEEcvbEv) +STUB("adb9FOgE2Cw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE5clearEv) +STUB( + "adcN0g0uOiM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEptEv) +STUB( + "addlbP1Nxpw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEptEv) +STUB("adh--6nIqTk", scePthreadRwlockTimedwrlock) +STUB("adjFB0jX3n8", _ZN7WebCore16HTMLImageElement14setCrossOriginERKN3WTF10AtomStringE) +STUB( + "adkIhIybMOU", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi15getGameSessionsEiRKNS4_26ParameterToGetGameSessionsERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_27GetGameSessionsResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("adqX2nHKi8k", _ZN8meta_gen13JpegRetriever19JPEGPROM_MIN_OFFSETE) +STUB("advGOicx-jc", + _ZN3sce2Np9CppWebApi11Matchmaking2V117UserTicketFactory7destroyEPNS3_10UserTicketE) +STUB("adyB3AgeVqc", _ZN12video_parser5vpcom6StringD1Ev) +STUB("ae-IVPMSWjU", sceAudioOutSetRecMode) +STUB("aeHxLWwq0gQ", _ZTVN10__cxxabiv119__pointer_type_infoE) +STUB( + "aeKwRy5SK6w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEmmEi) +STUB( + "aeN9YOvaIcI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "aeOSvgR7Pa8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEptEv) +STUB("aePIC2GrVwI", _ZNK7WebCore11MediaPlayer15contentMIMETypeEv) +STUB("aeQscmuBVBc", + _ZNK3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession13platformIsSetEv) +STUB("aeWbSLSVXMw", _ZN3sce7Toolkit2NP23TssGetStatusInputParamsC1Ev) +STUB("aeeMZ0XrNsY", err) +STUB( + "aeee7nTH-0U", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBody10getPlayersEv) +STUB( + "aejCEhqI3Tc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEC1EPNS2_10LibContextE) +STUB( + "aen7SaHWVcQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "aeoeNp7Ujl8", + _ZN7WebCore21ComplexTextControllerC1ERKNS_11FontCascadeERKNS_7TextRunERN3WTF6VectorINS7_3RefINS0_14ComplexTextRunENS7_13DumbPtrTraitsISA_EEEELm0ENS7_15CrashOnOverflowELm16ENS7_10FastMallocEEE) +STUB( + "aepVqAcfZFg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE5emptyEv) +STUB("aes3SNe3rgQ", mono_btls_error_get_error_line) +STUB("aesyjrHVWy4", strncmp) +STUB( + "aeu6WFR+fG4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEppEi) +STUB("aevWXt+rgMA", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V111LeaveReasonEEmmEi) +STUB("aezUahhkO0A", + _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead16getMaxSpectatorsEv) +STUB("af1dBuHUIhg", + _ZNK3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsers8getlimitEv) +STUB("af74HUu4EWk", sceNpUniversalDataSystemIntRecordObjectSetString) +STUB("afBzbtb04ZQ", + _ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponseC1EPNS1_6Common10LibContextE) +STUB( + "afCvdAYpf7Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEEptEv) +STUB("afE3+nWWFUY", mono_btls_key_free) +STUB("afFm5k0o1bg", WKPreferencesSetPageCacheSupportsPlugins) +STUB( + "afLdYzYe828", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE11getResponseERS8_) +STUB("afQxjMPpL4E", GCC_except_table235) +STUB( + "afVTLlesCjk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE6resizeEj) +STUB( + "afVYI7S16cY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEaSERS7_) +STUB( + "afYvGYm3iDs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEdeEv) +STUB( + "afgbnDwoY9s", + _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile10setAvatarsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_6AvatarEEEEE) +STUB("afhK5KcJOJY", sceHmdInternalSetVirtualDisplayHeight) +STUB( + "afpvA3VAHLM", + _ZN7WebCore16NavigationActionC1ERNS_8DocumentERKNS_15ResourceRequestENS_20InitiatedByMainFrameENS_14NavigationTypeENS_28ShouldOpenExternalURLsPolicyEPNS_5EventERKN3WTF12AtomicStringE) +STUB( + "afr3OKw9Rj8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEE7get_refEv) +STUB( + "afv3Zs6rHD4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEE11get_deleterEv) +STUB( + "afxVDUAXC1o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEmmEi) +STUB("agAYSUes238", _ZGVNSt7codecvtIcc9_MbstatetE2idE) +STUB( + "agAw838AT6I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "agF7XA3CIBM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE7reserveEi) +STUB( + "agHJ6BbQF2I", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEdeEv) +STUB("agMRiMzK4S8", mono_aot_Sce_Vsh_ProfileCacheplt_end) +STUB("agNCTw395Jg", _ZN7WebCore26ContextDestructionObserverC1EPNS_22ScriptExecutionContextE) +STUB( + "agQadFtRk5o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEE11get_deleterEv) +STUB("agQoH0seOCg", _ZN3JSC8Debugger6detachEPNS_14JSGlobalObjectENS0_15ReasonForDetachE) +STUB("agTSp935qVQ", sceVnaPlaySound) +STUB("agYDXAyL-K8", _ZN3sce2np3ipc17ServiceIpmiClientD2Ev) +STUB( + "agZ1hyulzac", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEaSERS7_) +STUB( + "agZ7AhDtUOw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "agf32YGSf5A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEED1Ev) +STUB("agig-iDRrTE", sceAvPlayerPrintf) +STUB("agt5grfXwMw", _ZN7WebCore4BlobC2Ev) +STUB("agvAH9mngCc", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container21getContentDescriptorsEv) +STUB( + "agyV+U3R-9Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE10setContextEPNS2_10LibContextE) +STUB( + "agztwj6WAig", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE4sizeEv) +STUB("ah2pzOxV1FI", unumf_closeResult_67) +STUB( + "ah6SYEO-LjA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEC1EPKS8_) +STUB("ah7gMVFXK8I", _ZN7WebCore13MIMETypeCachenaEmPv) +STUB( + "ahAMvg6mcGk", + _ZN3JSC11createErrorEPNS_14JSGlobalObjectENS_7JSValueERKN3WTF6StringEPFS4_S6_S6_NS_11RuntimeTypeENS_13ErrorInstance28SourceTextWhereErrorOccurredEE) +STUB("ahAkwbH9gio", _ZN7WebCore11HistoryItemD1Ev) +STUB("ahGKKIJ8ZTg", _ZN7bmalloc11IsoPageBase18allocatePageMemoryEv) +STUB("ahHhOf+QNkQ", sceScreenShotSetOverlayImage) +STUB("ahIXyuwF0-o", sceFiosIOFilterRemove) +STUB("ahM6BkEfFig", rgctx_fetch_trampoline_mrgctx_84_p) +STUB( + "ahNtRKgQhpg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE3endEv) +STUB("ahPLfy5k4M0", mono_aot_Sce_Facebook_CSSLayoutunbox_trampolines_end) +STUB("ahQi-9i4dqQ", X509_STORE_CTX_get_chain) +STUB("ahT82AdFW1M", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35ErrorC2EPNS1_6Common10LibContextE) +STUB( + "ahUT-PUy75w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEE11release_refEv) +STUB("ahWERUaLK5I", _ZN3sce2np9HttpTrans4InitEPNS0_12HttpTemplateEiPKcm) +STUB("ahbRpQs2q1Q", sceOpusSilkEncEncodeCancelForTimeout) +STUB( + "ahd4FiDSt9g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "ahdNk7Bh1a8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("ahhmHImMlbs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEED1Ev) +STUB("ahiOMqoYYMc", sceNetGetIfListOnce) +STUB("ahrF-7fmUY8", _ZN3sce3Xml3Dom15DocumentBuilderC2Ev) +STUB("ahs8y-klIBI", _ZN3sce2Np9CppWebApi7Matches2V120ResponseMatchResultsD2Ev) +STUB( + "ahwNep5XcBU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("ahy8NSXrSbs", sceKernelCallIndirectBuffer) +STUB("ai-1r5S6AvU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEdeEv) +STUB( + "ai107an6OLw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEEptEv) +STUB("ai2UFvUWMs0", scePerfPmcL3Stop) +STUB("ai3eCxzTopg", sceVoiceChatGetMicState) +STUB("ai6AfGrBs4o", sceFontRendererResetOutlineBuffer) +STUB("ai7LcBcf6Rs", sceShellCoreUtilGetRemotePlayStatus) +STUB("aiMVZL2esLE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEEC2Ev) +STUB( + "aiMrw3MShgI", + _ZN9Inspector21HeapBackendDispatcher2gcElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "aiMwcc4RAK4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEE3getEv) +STUB( + "aiPjJRNK2+0", + _ZN9Inspector28DOMDebuggerBackendDispatcher26setEventListenerBreakpointElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "aiQw7OtvfHU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEEaSERKSA_) +STUB( + "aiWe6moEmq0", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEEC1ERKSC_) +STUB( + "aiWhz6KL4g8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEmmEi) +STUB("aiaG4xXjMCM", sceAppInstUtilAppGetAddcontList) +STUB( + "aigfG-dOxCQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEppEi) +STUB("aimJlnIKg+k", _ZN3sce2Np9CppWebApi7Matches2V113ErrorResponseC1EPNS1_6Common10LibContextE) +STUB( + "aipl1lkJDaI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB("aiqrTcn+HOw", JVM_SetProtectionDomain) +STUB("aishVAiFaYM", scePthreadSemPost) +STUB("aivUIZ6BMvI", sceNpUniversalDataSystemIntDestroyRecordArray) +STUB("aixppP6tkFs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEC1Ev) +STUB("aj3L-iaFmyk", sceGnmInsertSetColorMarker) +STUB( + "aj9Khv0ASEE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "ajA8yr7j+Xo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE5clearEv) +STUB("ajOpWARYZps", ubidi_addPropertyStarts_67) +STUB("ajRmfIsy4KI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEdeEv) +STUB( + "ajSa9xyBduM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("ajU5bvfbODk", _ZN3JSC7Symbols15linkPrivateNameE) +STUB("ajVj3QG2um4", sceVoiceDisconnectIPortFromOPort) +STUB( + "ajXHaO0i4M0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEmmEv) +STUB("ajXKK3BOVc8", sceVoiceChatRegisterMicEventHandler) +STUB( + "ajfupy8jQjQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEppEv) +STUB("ajoqGz0D9Dw", sceNpUtilHttpUrlEncode) +STUB("ajvzc8e2upo", sceNpMatching2CreateContextA) +STUB( + "ajxMs7QcBm8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("ajyl7RSiYH4", WKRenderObjectGetChildren) +STUB("ak09Q+mYM0k", _ZN3sce3Xml18SerializeParameterC2Ev) +STUB( + "ak704w2QbC0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("akCszAlMQQY", JSObjectGetProxyTarget) +STUB("akCy74E4vyk", mono_aot_Sce_Vsh_Lxmethod_addresses) +STUB("akGUA-sxyYk", sceSpNetSetsockopt) +STUB("akLQmE5Wyz8", rgctx_fetch_trampoline_rgctx_70) +STUB( + "akLsgnrhivM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE5beginEv) +STUB("akQ5ZpNSu4Q", mono_aot_System_ComponentModel_Compositionplt) +STUB("akQptX8gLJE", _ZN3WTF11Persistence7DecoderC1EPKhm) +STUB("akU0JKo9--s", _ZN7WebCore17FullscreenManager19willEnterFullscreenERNS_7ElementE) +STUB( + "akcMQawu5q4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEmmEv) +STUB( + "akcx-FhXJrM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEC2ERKS7_) +STUB("akimK5gpdho", cairo_in_fill) +STUB("akjIhi9hoC4", _ZN9Inspector15RemoteInspectorD0Ev) +STUB("akmC1nXbrLE", sceHidControlGetBatteryState) +STUB("akok+Vqkfk0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth8AuthCodeEE5resetEv) +STUB("akpGErA1zdg", iscntrl) +STUB("akrXQ+t4Tx0", _ZN9Inspector17ScriptDebugServernwEmPv) +STUB( + "aktX5hPkV2k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE7popBackEv) +STUB("akvKAVg-uyk", _ZN4Manx21DisplayRefreshMonitorC1Ev) +STUB( + "akyt+WNCOK0", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("al3JzFI9MQ0", sceLibcInternalHeapErrorReportForGame) +STUB( + "alDhD2lkUZU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "alLClFA-720", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEE7add_refEv) +STUB("alNLle2vACg", sceNpIdMapperAccountIdToNpId) +STUB("alNWe8glQH4", _LDint) +STUB( + "alNm03ULP+8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEC2EPKS8_) +STUB( + "alTlXracq1k", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeader12setsessionIdEPKc) +STUB("alZfRdr2RP8", sceAppMessagingClearEventFlag) +STUB( + "alaoKBIlea8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "alcxoEVoMpw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEC2EPS6_PNS2_10LibContextE) +STUB("ale+MG3sPCU", _ZN10Deprecated11ScriptValueD1Ev) +STUB("alezLEkB40M", _ZN12video_parser5vpcom14LwMutexDestroyEPNS0_11sys_lwmutexE) +STUB("alkDBoyYoQM", _ZN7WebCore22identifierToByteStringERN3JSC14JSGlobalObjectERKNS0_10IdentifierE) +STUB("almKa6+CwG8", sceVrTrackerSetHookFunction) +STUB( + "aluABqfaMzo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE3endEv) +STUB("alwAE11gcPY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEcvbEv) +STUB( + "alz5DbGb-G4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEEaSERKSA_) +STUB("am077cKfnUA", _ZN3NTF17URLRequestDataJobD0Ev) +STUB("am3KQF95AEY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEptEv) +STUB( + "am8XV0nsMT4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEEaSERSA_) +STUB("amFi-Av19hU", _ZN3sce2np9EventFlag6CreateEPKcj) +STUB("amHyU7v8f-A", _Tss_create) +STUB("amMmIL1kj-k", sceFaceTrackerRegisterStartTrackingCallback) +STUB("amNASK6thPE", + _ZN7WebCore12EventHandler23handleMouseReleaseEventERKNS_28MouseEventWithHitTestResultsE) +STUB("amNUtF1PF-w", sceTsSetStartingBW) +STUB("amUx1Imsa9E", png_get_tRNS) +STUB( + "amXExmx7hUU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEixEm) +STUB("amZVchWtTcg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEppEi) +STUB("amZi2FCVjEw", _ZN7WebCore16BlobRegistryImplD2Ev) +STUB( + "amaMBWVvgmU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEED2Ev) +STUB("amcmrY62BD4", sceFontRendererGetOutlineBufferSize) +STUB("amghnA-Ev5s", sceVideoOutUnlockBuffer) +STUB( + "amp38QFPGEw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE6resizeEj) +STUB("amqSGH8l--s", sceNetCtlApRestart) +STUB( + "amsGjs8-OJM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEC1Ev) +STUB( + "amsnIIIW18A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEED2Ev) +STUB("amuBfI-AQc4", sceRudpInit) +STUB( + "an757JG6pYo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEppEv) +STUB( + "anKX4TLNtC4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE5beginEv) +STUB("anOM+-Ryi+o", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEEC1ERS7_) +STUB( + "anSJcjPKG6M", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V135SetMultiVariablesRequestBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_28SetMultiVariablesRequestBodyEEE) +STUB("anYqvqkEkK4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE5emptyEv) +STUB("ankx4EhG+KA", il2cpp_field_static_get_value) +STUB("annD2qoQx6Y", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_21GameCustomDataMessageEEC2Ev) +STUB("annvefz57+c", _ZN3sce7Toolkit2NP2V27Session16FixedSessionData21SESSION_DATA_MAX_SIZEE) +STUB( + "anoZfmgEbmo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEED2Ev) +STUB( + "ao+19oHLY9w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE8copyFromERKS9_) +STUB( + "ao0dxc0dk6g", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEixEm) +STUB("ao48TURXxrE", _ZTVN12video_parser13cVideoMetaVWGE) +STUB("ao7yNPcfEBc", mono_class_enum_basetype) +STUB("ao8NZ+FRYJE", sceHmdDistortionInitialize) +STUB( + "ao9LmnnbyOI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEEC2Ev) +STUB("aoAgc7+-6Kc", _ZN7WebCore17PageConsoleClientC1ERKS0_) +STUB( + "aoCu0UXh1Ec", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEppEi) +STUB("aoJ4QZs+ge8", ScePsmMonoThreadpoolSetMaxThreads) +STUB( + "aoMjRMXGOVo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEE5resetEPS9_) +STUB( + "aoR9iEcZ60k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEaSERS7_) +STUB( + "aoSMW27UJsI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEE7add_refEv) +STUB("aoSuoqM2sL4", uregex_refreshUText_67) +STUB("aoTkxU86Mr4", verr) +STUB("aoZKKNjlq3Y", sceSaveDataRestoreLoadSaveDataMemory) +STUB("aoas3bJANfY", _ZN3sce2np10EventQueue10ClearAbortEt) +STUB("aoccPBCZAMk", _ZN7WebCore16JSXMLHttpRequest13estimatedSizeEPN3JSC6JSCellERNS1_2VME) +STUB( + "aof6Mapp6MA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEE3getEv) +STUB("aohCT6DvBRc", Java_com_sony_bdjstack_system_BDJModule_destroy) +STUB("aoimHrG+XDk", _ZN7WebCore9HTMLNames6preTagE) +STUB("aoo05C2wwa4", + _ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer15getPushContextsEv) +STUB("aosLBGaeOtw", sceUpsrvUpdateCheckDoCheckSystem) +STUB("aotaAaQK6yc", _ZSt15system_categoryv) +STUB( + "aovcMZ4fgVQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEppEi) +STUB( + "ap0kc8Dknco", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10getString1Ev) +STUB( + "ap1ZMM7MaGI", + _ZN3sce2Np9CppWebApi14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBody8fromJsonERKNS_4Json5ValueE) +STUB( + "ap3T3JpHKRg", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB( + "apBIlDsa1Lc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEE11release_refEv) +STUB( + "apEcSKD4Vv0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE7reserveEi) +STUB("apHKv46QaCw", _ZTVSt12bad_weak_ptr) +STUB( + "apM-mjjHC4I", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V314MissingElement6toJsonERNS_4Json5ValueEb) +STUB("apPZ6HKZWaQ", _ZNKSt9exception4whatEv) +STUB( + "apQOPF2ho7w", + _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody16customData2IsSetEv) +STUB("apWO3tteYGs", _ZNK7WebCore11HistoryItem15pageScaleFactorEv) +STUB("apWSdRJ0u+U", _ZN7WebCore10FileSystem14setMetadataURLERKN3WTF6StringES4_S4_) +STUB( + "apbF-sJ9cJs", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersD1Ev) +STUB("apdxz6cLMh8", truncl) +STUB("aphzmNmDaZM", _ZN7WebCore21JSMainThreadExecState17s_mainThreadStateE) +STUB( + "apiPkDw5Oog", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEmmEv) +STUB( + "apjEBKUh-CQ", + _ZN7WebCore16DeviceMotionData6createEON3WTF6RefPtrINS0_12AccelerationENS1_13DumbPtrTraitsIS3_EEEES7_ONS2_INS0_12RotationRateENS4_IS8_EEEENS1_8OptionalIdEE) +STUB("apl6KD3oTLg", _ZN9Inspector24WorkerFrontendDispatcher16workerTerminatedERKN3WTF6StringE) +STUB("aplBb1IcJJc", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountIdaSERS5_) +STUB( + "apokb4GcLyI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE5emptyEv) +STUB("apqUImJIJ7k", + _ZNK3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator6toJsonERNS_4Json5ValueEb) +STUB( + "apsoC002ppE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE8capacityEv) +STUB("apt8-c9wFxQ", ures_getStringByKey) +STUB( + "apt98EnGuzE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB( + "apyVwAqENlk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEmmEv) +STUB( + "aq0MY9uUz-o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEE7get_refEv) +STUB("aq1jwlgyOV4", sceUserServiceGetPartyMuteListA) +STUB( + "aq2LCrKsmI8", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEEiRNS2_10LibContextEPT_m) +STUB("aq2yxF3xO1c", sceMbusRemoveAudioOutHandleAttribute) +STUB( + "aq315CEPq-A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEED2Ev) +STUB("aq9XWp-0Cvg", sceCesRefersUcsProfileJisX0201Katakana) +STUB("aqE76rIqzBw", _ZN3WTF7Unicode18convertUTF8ToUTF16EPPKcS2_PPDsS4_Pbb) +STUB( + "aqMXEOuTFNI", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSessionC2ERS5_) +STUB("aqMiF0AgUYI", sceVdecswSetDecodeInput) +STUB("aqNOK8X8jP4", _ZN3JSC12CachePayloadaSEOS0_) +STUB("aqNWK5C-Q4E", u_vformatMessageWithError_67) +STUB( + "aqbJR-kNM6I", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicket30unsetxPsnAcceptPlatformNamePs5Ev) +STUB("aqclofcsAlg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEC1EPS8_) +STUB("aqft612D2VY", uspoof_checkUnicodeString_67) +STUB("aqgXbzdfS7A", _ZN3sce7Toolkit2NP2V211SocialMedia7Request7PhotoFbC2Ev) +STUB("aqhuK2Mj4X4", sceGnmSpmInit) +STUB("aqi2iC+vn4Q", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError10setMessageEPKc) +STUB( + "aqiN1B0F5Os", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEEC1ERKSA_) +STUB("aqjnE9fG-OM", sceCesMbcToUtf8) +STUB("aqpZ3UxXfcw", scePerfPmcMperfGetCounter) +STUB("aqqpmI7-1j0", sceLibcDebugOut) +STUB("aqyjhIx7jaY", _ZSt7_FiopenPKwNSt5_IosbIiE9_OpenmodeEi) +STUB("ar-S0C0QUvc", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12Notification14NetStateChangeEEC1Ev) +STUB("arAQRFlwqaA", sceNetCtlGetInfoV6IpcInt) +STUB("arB3rFJIChI", _ZN3sce7Toolkit2NP21TusGetVarsInputParamsC1Ev) +STUB( + "arCJ+ODrpbU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("arCP3jQ+Jbo", _ZN3WTF14derefIfNotNullI6_cairoEEvPT_) +STUB("arIKLlen2sg", erfc) +STUB("arITZPTK+0U", mono_aot_System_ComponentModel_Compositionmethod_addresses) +STUB("arJp991xk5k", sceAudioInSetUserMute) +STUB("arLNDKd9JDs", _ZN3NTF17URLRequestJobImplC2Ev) +STUB( + "arNoQ2LLhV0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEEaSERKS9_) +STUB( + "arPrgJLwDO4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEC1ERKS7_) +STUB("arhBKRy2grc", WKBundleScriptWorldDisableOverrideBuiltinsBehavior) +STUB( + "arkXHB48y6M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEE11release_refEv) +STUB("aroIog+umzo", sceCompositorSetZoomCommand) +STUB( + "arpVr0N2Iog", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEeqERKSA_) +STUB("arsYbUa4c7A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEE21intrusive_ptr_add_refEPS5_) +STUB("aruzyh1cSNQ", mono_aot_I18N_Otherunbox_trampolines_end) +STUB("arwhrDNeQwU", uloc_getDisplayScriptInContext_67) +STUB( + "as7GCfRIzhQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE8pushBackERKS8_) +STUB( + "as7VlqG7Vik", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEE7add_refEv) +STUB("as8Od-tH1BI", __stderrp) +STUB( + "asCBie4rWOQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEED2Ev) +STUB( + "asFHzKFbTTQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEED2Ev) +STUB("asGB8UpyDfY", ures_getUTF8StringByIndex) +STUB("asKUwUaBVUM", _ZN3sce2Np9CppWebApi7Matches2V14Task15setAvailabilityERKNS3_16TaskAvailabilityE) +STUB("asLBe0esmIY", sceSystemStateMgrIsShellUIShutdownInProgress) +STUB( + "asMHWDLonkc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("asMfHgdk+QA", _ZN7WebCore9HTMLNames17aria_colcountAttrE) +STUB( + "asQUnfmwick", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEC1EPS8_) +STUB( + "asS8oQA8ZrY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEC2ERKS7_) +STUB("asSKL30+heA", ksem_destroy) +STUB( + "asSa1lvhVzs", + _ZN7WebCore19JSDOMMatrixReadOnly6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_17DOMMatrixReadOnlyENS6_13DumbPtrTraitsIS8_EEEE) +STUB("asTNiYAAD9Q", u_strcspn_67) +STUB("asUHs4suKzU", _ZN7WebCore12EditingStyleC1EPKNS_19CSSStyleDeclarationE) +STUB( + "asXMdmhaxQU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEEC2ERSA_) +STUB( + "asZHW6y80xo", + _ZN3JSC8JSObject40putDirectNativeFunctionWithoutTransitionERNS_2VMEPNS_14JSGlobalObjectERKNS_12PropertyNameEjNS_14NativeFunctionENS_9IntrinsicEj) +STUB( + "asZNsK-7K3c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE7popBackEv) +STUB("asZdig1mPlA", _ZN3sce2np8SelectorD1Ev) +STUB("asc8FQ54ULg", getRecvEventQueueByProtocolNumber) +STUB("asilo8VNGvg", sceHmd2ReprojectionDisableMirroring) +STUB("asjUJJ+aa8s", sceFiberOptParamInitialize) +STUB("asn9lqLLsqE", + _ZNK3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer12getJoinStateEv) +STUB("asorX7SqInU", _ZN15AbstractStorage15FacebookContent8SeekByteEliPl) +STUB("asrJEMEOD4c", mono_metadata_cleanup) +STUB("asuNB7pBKRA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEixEm) +STUB("asubj27c4Vg", + _ZNK7WebCore37BasicComponentTransferFilterOperation14transformColorERNS_5SRGBAIfEE) +STUB("aswH9c+RN0E", sceSlimglCompositorSetMemoryCommand) +STUB("asyymNe9-xA", _ZN4Manx15textFromKeyCodeEib) +STUB("asz3TtIqGF8", sceNpWebApiTerminate) +STUB("aszOBy5Fl+0", mono_method_full_name) +STUB("at-9g8ayvfA", _ZN7WebCorelsERN3WTF10TextStreamERKNS_15VisiblePositionE) +STUB("at2ZxXvQUlE", _ZN3JSC7Symbols20toIntegerPrivateNameE) +STUB("atGfzCaXMak", sceNetSyncDestroy) +STUB("atK8tRkYvFI", WKResetMockMediaDevices) +STUB( + "atKcj5lEK6M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "atRhehc0lZE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEptEv) +STUB("atWcfgasESY", _sceNpHeapStrdup) +STUB("atWsdzCXk6E", _ZN3JSC2VM21sentinelMapBucketSlowEv) +STUB("atYpibBZTDI", _ZNSt12future_errorC1ERKS_) +STUB( + "atb6tzrnrvQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "ateVTS4wifI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEE7add_refEv) +STUB( + "atgD3il9nE0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEED2Ev) +STUB("atgHp5dQi5k", sceNpManagerIntIsTemporarySignout) +STUB("atiUTsTFJ3k", sceShellCoreUtilSetUIStatus) +STUB("atp5E8KwLWU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEED2Ev) +STUB("atsO3WGZqZA", scePssCAudGetSurroundPan) +STUB("atu-QRHqvgo", _ZN7WebCore12EventHandler8keyEventERKNS_21PlatformKeyboardEventE) +STUB("atu1X5r1lok", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi24ParameterToReportResults9terminateEv) +STUB("au+YxKwehQM", _ZTSN10__cxxabiv116__enum_type_infoE) +STUB( + "au7up1F0kiU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("auH+4s4zhjI", _ZN3sce7Toolkit2NP2V24Core12ResponseDataC1Ev) +STUB("auHmCoRz6d8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEC1ERS7_) +STUB( + "auIBRebRSls", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEE7add_refEv) +STUB("auKLpZXdSfw", _ZN7WebCore19UserContentProviderD1Ev) +STUB( + "auKOJUT8mxY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEmmEv) +STUB( + "auKzG4tIgx0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("auUp-ji6a5w", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEE11release_refEv) +STUB("auWuyA-JeSQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEptEv) +STUB("auXbCImj7Qg", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes14unsetBoolean10Ev) +STUB("auc64RJAcus", sceUserServiceGetNpOfflineAccountAdult) +STUB( + "aucQMIstr0c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("aucQMrQoXck", _ZNSt9_FacetptrISt7collateIcEE6_PsaveE) +STUB("aue91NktFx4", _ZNK7WebCore11MediaSample6isSyncEv) +STUB("aukH7OdPsjo", sceVdecwrapMapDirectMemory) +STUB("aunaEfND9nY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEE7get_refEv) +STUB("aus1pUvQ7ts", WKBundleGarbageCollectJavaScriptObjectsOnAlternateThreadForDebugging) +STUB( + "aut5heCd4I0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEE7add_refEv) +STUB( + "auxW+OVdLA0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEC2Ev) +STUB( + "av-FCO70Ci8", + _ZN7WebCore11DisplayList18FillCompositedRectC1ERKNS_9FloatRectERKNS_5ColorENS_17CompositeOperatorENS_9BlendModeE) +STUB( + "av-gUOC3xzo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEED2Ev) +STUB("av0w04NTFNM", WKPreferencesCopySerifFontFamily) +STUB("av4SyPPLKYs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEE5resetEPS6_) +STUB("av5Qir5iq4s", mono_runtime_cleanup) +STUB("av7HJthoxuM", _ZN3JSC21loadAndEvaluateModuleEPNS_9ExecStateERKN3WTF6StringENS_7JSValueES6_) +STUB("av8J5NBkbRE", ubrk_getRuleStatus) +STUB("av8Z++94rs0", sceAvPlayerSetTrickSpeed) +STUB( + "avAwLgN3BVk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE5emptyEv) +STUB("avBV-pprLUo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEC1ERS7_) +STUB( + "avE-n5TEQdw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEneERKS9_) +STUB("avF0et-KJQ8", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEEcvbEv) +STUB("avLzN0tTxLI", FT_Glyph_Get_CBox) +STUB("avN3Kx5sy9Y", _ZN8meta_gen11MsvPromoter18isDrmFileExtentionEv) +STUB("avNGvstpJLs", _ZNK3JSC17DebuggerCallFrame9thisValueERNS_2VME) +STUB("avRNeA6IOWg", _ZN3sce2Np9CppWebApi6Common6VectorIiE21intrusive_ptr_sub_refEPS4_) +STUB( + "avS3-G1sz+A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE5clearEv) +STUB("avUJ35W2eSs", _ZN7WebCore31SimplifiedBackwardsTextIterator7advanceEv) +STUB("avUvU+GO3u4", _ZN7WebCore8SVGNames8seedAttrE) +STUB( + "avW+EVfuTRQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEEC1Ev) +STUB( + "avWHkrQSU0E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("avXro2Peyc4", _ZN9MmsMp4Box7ReleaseEv) +STUB("avdA3zrzrxQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116InitialJoinStateEEptEv) +STUB("aveafNCCxgI", _ZN7WebCore14CachedResource9addClientERNS_20CachedResourceClientE) +STUB( + "avf5qyoos0c", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi32ParameterToPostGameSessionsTouch10initializeEPNS1_6Common10LibContextEPKc) +STUB("avfGJ94g36Q", _sceFiberAttachContextAndRun) +STUB("avfJcMV8UJM", _ZN7WebCore16JSXMLHttpRequest4infoEv) +STUB( + "avfqNeStSiQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEC2EPS8_) +STUB("aviqLKPUO5k", __FRAME_END__) +STUB( + "avlRUYsiXOM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("avm1fE1zqH4", _ZN7WebCore21DiagnosticLoggingKeys20telemetryPageLoadKeyEv) +STUB("avmBjCFiFw0", mono_aot_appunwind_info) +STUB( + "avpyQQEKr2E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "avsgLCaJz0w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEC1EPNS2_10LibContextE) +STUB( + "avsoSLkfaQY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEC1EPS8_) +STUB("avv2T+lDx3E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEE6assignEPS4_PFvS6_EPNS2_10LibContextE) +STUB("avvJ3J0H0EY", sceKernelJitCreateSharedMemory) +STUB("aw3O4wXGYX4", _ZN3sce7Toolkit2NP2V29Messaging12Notification18NewGameDataMessage5resetEv) +STUB( + "aw5Hx2PySrk", + _ZN7WebCore15UserInputBridge20handleAccessKeyEventERKNS_21PlatformKeyboardEventENS_11InputSourceE) +STUB( + "aw9fJaCjyj8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("awBTm0vNaos", sceShellCoreUtilNotifyFsReadError) +STUB( + "awPn4Q0rGhk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEptEv) +STUB( + "awQ-eaINpls", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEdeEv) +STUB("awS+eYVuXJA", sceLncUtilRegisterShellUI) +STUB( + "awTPhlC4368", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEdeEv) +STUB("awW5TSuyZrM", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession16customData1IsSetEv) +STUB( + "awWNvbk6lcA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE5beginEv) +STUB("awXq05OrlHg", mono_field_set_value) +STUB( + "awgfHrO75d4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("awhEw-iEmcc", WKPreferencesSetLegacyEncryptedMediaAPIEnabled) +STUB("awhUaPNTjCE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEEC1EPNS2_10LibContextE) +STUB( + "awiCShVEL+E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE3endEv) +STUB("awiefLtMn-A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEC1EPS8_) +STUB("awkeNR6Ukp8", _ZNK3sce4Json6String4findERKS1_m) +STUB( + "awooSI0Ff-Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEmmEi) +STUB( + "awpGUPscU1U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEdeEv) +STUB("awr1A2VAVZQ", _ZSt5wclog) +STUB("awu1Roprl3w", _ZN7WebCore5ColorC2ERKN3WTF6StringE) +STUB("awzYI5eU6u0", _ZN9Inspector8Protocol3CSS11CSSProperty5RangeE) +STUB( + "ax-kbtrk88Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEE21intrusive_ptr_sub_refEPS7_) +STUB( + "ax0+mhYUSvQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEED2Ev) +STUB("ax6MAHig4vY", _ZN7WebCore15JSFetchResponseaSERKS0_) +STUB("axHgLfPgQoA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEEC2EPS5_PNS2_10LibContextE) +STUB( + "axJg74D-HEQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEC2EPS6_PNS2_10LibContextE) +STUB( + "axMCEHLq8tA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEC1Ev) +STUB("axMM6sX57vM", mono_aot_Sce_Vsh_Orbis_AbstractStorageunbox_trampoline_addresses) +STUB("axMiO3a4pJ4", mono_method_print_code) +STUB("axN4ia12Iyo", + _ZN7WebCore11DisplayList15FillRoundedRectC2ERKNS_16FloatRoundedRectERKNS_5ColorENS_9BlendModeE) +STUB( + "axQem2OiJSk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEEC1ERKSA_) +STUB("axRdn+LFHf8", ures_getUTF8StringByKey) +STUB("axSE8LNdZeQ", mono_aot_Sce_Vsh_AutoMounterWrapperjit_code_end) +STUB( + "axTLVd-C36Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEC2Ev) +STUB("axVqO-tslwo", sceFiosDateFromComponents) +STUB("axcsU3c9oMo", mono_aot_Sce_Vsh_Friendplt) +STUB( + "axe8sVy7Hbw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEEC1Ev) +STUB( + "axitYpOhwos", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10getString4Ev) +STUB( + "axjBTaPKhLg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEEaSERKS8_) +STUB( + "axnRx5sJ1rw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE4sizeEv) +STUB( + "axpSV5GTEdg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE21intrusive_ptr_add_refEPS7_) +STUB( + "axwZGxiWbUI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEEcvbEv) +STUB("ay+atchy2FA", uldn_getLocale_67) +STUB("ay0k5Z39kmA", _ZNK7WebCore17HTMLSelectElement13selectedIndexEv) +STUB("ay3uROQAc5A", opendir) +STUB("ay86oU9E3EI", _ZN7WebCore9FrameView23updateCanHaveScrollbarsEv) +STUB( + "ayAwPcfD6Iw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEeqERKS9_) +STUB( + "ayBRcR8vbd8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB("ayNf-O-HxkQ", _ZN3sce7Toolkit2NP15AppSTLAllocatorItE7addressERKt) +STUB("ayOXlM8gt8c", pio2_1tlo) +STUB( + "ayPQmSjl8bQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEED2Ev) +STUB("ayTeobcoGj8", statvfs) +STUB( + "ayb741oLbaE", + _ZN9Inspector24NetworkBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) +STUB("aye1wKxnJ08", _ZN3JSC14JSGlobalObject10globalExecEv) +STUB("ayfha83NZQA", _ZN3JSC8JSObject12defaultValueEPKS0_PNS_9ExecStateENS_22PreferredPrimitiveTypeE) +STUB("ayhAQXdGNqU", sceCompositorGetAnotherProcessSystemAddress) +STUB( + "ayjb8wK9b0Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEppEi) +STUB("ayluYmzbAGc", sceFsWsGetStatus) +STUB("ayoDeN-D0MM", + _ZN9Inspector17BackendDispatcher19reportProtocolErrorENS0_15CommonErrorCodeERKN3WTF6StringE) +STUB("aypyyjMWtEw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEEC1ERS6_) +STUB("ayrtszI7GBg", truncate) +STUB( + "aysVMoqqfHI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE5emptyEv) +STUB( + "aysuBXhnyT4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEC1Ev) +STUB("ayuZfXD8X6I", Java_java_lang_StrictMath_ceil) +STUB("az-0R6eviZ0", sceUserServiceInitialize2) +STUB( + "az0VWGf3Tl4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE8capacityEv) +STUB( + "az4KrrK+PmY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("az7fl9snOqw", sceNpServiceCheckerIntIsCached) +STUB("azBc7orKcF8", _ZN3sce2np9JsonArray7AddItemEPKNS0_9JsonValueEPPS2_) +STUB("azCh0Ibz8ls", sceUserServiceGetPbtcTuesdayHoursStart) +STUB("azCmQEmb1-I", _sceDepthHeadCandidateTrackerSetInformation) +STUB("azEmYv5NqWo", sceNpManagerIntGetNpId) +STUB("azKBsU2fk1s", _ZN3JSC15JSAsyncFunction6s_infoE) +STUB("azNGOQLubLc", cairo_get_line_join) +STUB("azPw6nZ1JW8", _ZN3sce7Toolkit2NP2V29Challenge18ChallengeThumbnailC1Ev) +STUB( + "azZUREEfiQ0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "azcqyTaRvVs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEneERKS9_) +STUB("azgxiIR2VVc", _ZN7WebCore15JSDOMWindowBase6s_infoE) +STUB("aziunCFexfg", + _ZThn24_N9Inspector22InspectorDebuggerAgent15getScriptSourceERN3WTF6StringERKS2_PS2_) +STUB( + "azlqosL6FGA", + _ZN7WebCore20ApplicationCacheHost17maybeLoadResourceERNS_14ResourceLoaderERKNS_15ResourceRequestERKNS_3URLE) +STUB( + "azmdGIS2rOQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEC2EPS6_PNS2_10LibContextE) +STUB("azmjx3jBAZA", sceNpTusGetMultiSlotDataStatusAVUser) +STUB("azmtmG5J-Kc", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112UpdateStatusEEptEv) +STUB("azsWRjrskRA", scePlayReadyEnvelopeGetSize) +STUB( + "azxnZZyzS48", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE7popBackEv) +STUB( + "azzA1O5xVF8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE5beginEv) +STUB( + "b++-mVnT6bI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEC1Ev) +STUB("b+-zb6vnBYo", _ZN7WebCore11DisplayList14ConcatenateCTMC1ERKNS_15AffineTransformE) +STUB( + "b+15vUo8lPQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEC2EPKS8_) +STUB("b+Bla9TTD04", JSGlobalContextRelease) +STUB( + "b+HpG+ndGwI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEC1Ev) +STUB("b+HtVbr-hnI", mono_aot_Sce_Vsh_Webbrowser_XutilWrapperjit_code_end) +STUB("b+IhAUXP-Ho", uhash_setKeyDeleter_67) +STUB("b+LixqREH6A", sceNetInetPtonWithScopeId) +STUB("b+TRJtxVLkI", _ZN3sce7Toolkit2NP2V24Core12ResponseDataC2Ev) +STUB( + "b+W6foWsyPo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEplEm) +STUB("b+WHqV0x1gM", mono_aot_Sce_Vsh_AutoMounterWrapperjit_code_start) +STUB( + "b+WPcF9JkLY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEE3getEv) +STUB( + "b+ZvE3i4fOE", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser11hassortModeEv) +STUB( + "b+anTWp3ca0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB("b+fis+WZ3Ig", sceAgcSuspendPointAndCheckStatus) +STUB("b+h9maAAa7s", _ZN3JSC8JSBigInt13equalsToInt32Ei) +STUB("b+jjo7eIy6E", s21) +STUB( + "b+rY1pFepTc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEEaSERKSA_) +STUB("b+sVOsiqQR8", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_23NpSessionInvitationInfoEEC2Ev) +STUB( + "b+tiOXhE0-Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEE7add_refEv) +STUB("b+uAV89IlxE", sceAudioOutSetVolume) +STUB( + "b+v7BB12y5I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEC1ERS7_) +STUB("b-1gcTobTsQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116JoinableUserTypeEEneERKS7_) +STUB("b-2EMSEYLNM", JNU_ThrowOutOfMemoryError) +STUB( + "b-6RfjbR+UA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEE21intrusive_ptr_sub_refEPS7_) +STUB( + "b-7R-ygkBQs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEE7get_refEv) +STUB( + "b-99732oCMU", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemProperties58getpatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEv) +STUB("b-BtawOVCmQ", sceMatBatchMap) +STUB("b-FP2Br9oeE", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead14sessionIdIsSetEv) +STUB( + "b-HfWu6s7Q4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("b-Lzkicisdg", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEEppEv) +STUB("b-PXKlXtMyU", sceSystemServiceLaunchByName2) +STUB("b-Qiqugeo5U", sce_libc_tls_heap) +STUB("b-UJqPgkCLU", sceClKernelUsleep) +STUB("b-WaN75K5iE", uprv_getDefaultLocaleID_67) +STUB( + "b-WfhwjHgos", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayerD2Ev) +STUB("b-YdE60Z8tw", glUniformMatrix3x4fv) +STUB("b-bFZvNV59I", sceNetEtherStrton) +STUB("b-cE+wTP5gY", _ZN7WebCore10FileHandleC1ERKN3WTF6StringENS_10FileSystem12FileOpenModeE) +STUB("b-dYXrjSNZU", sceAudioPropagationPortalCreate) +STUB("b-eohnstyik", _ZN7WebCore11FrameLoader17arePluginsEnabledEv) +STUB("b-fw6riBfAM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE6resizeEj) +STUB("b-i3JSeZ12E", il2cpp_set_commandline_arguments_utf16) +STUB("b-oySn+G2tE", sceAgcAcbJumpGetSize) +STUB( + "b-q41ZQfGSw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE5beginEv) +STUB( + "b-qZMsZo9GA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEC2EPS6_PNS2_10LibContextE) +STUB("b-u-ouZE3rY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEEC2Ev) +STUB("b-w9zKxBi7E", sceUpsrvUpdateGetUpdateTaskInfo) +STUB("b-xSXxV3kdI", mono_aot_System_ServiceModel_Internalsjit_got) +STUB("b-xTWRgI1qw", _Dtest) +STUB("b0+W39D6M9A", _ZN10Deprecated25ScriptCallArgumentHandler14appendArgumentEN3JSC7JSValueE) +STUB( + "b00A06nRfHk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEED2Ev) +STUB("b03WEWtpXZw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEEdeEv) +STUB("b04jAtvk82E", _ZN3sce7Toolkit2NP2V211SharedMedia6VideosaSERKS4_) +STUB("b06Hh0DPEaE", sceMsgDialogOpen) +STUB("b08AgtPlHPg", sceGnmAreSubmitsAllowed) +STUB("b0BFwBeoVpA", _ZN13MsvMetaEditor9seekFileXElj) +STUB( + "b0Ihy-SsE7E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("b0Mj-9dxn1k", _ZN7WebCore16MIMETypeRegistry20mimeTypeForExtensionERKN3WTF6StringE) +STUB("b0Px++ce2cQ", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats14playStyleIsSetEv) +STUB("b0Su+8FFfkU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEE5resetEPS6_) +STUB("b0TvwShFDFs", _ZNK7WebCore9FrameView20isSoftwareRenderableEv) +STUB( + "b0UnsLpMxB0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEE11release_refEv) +STUB("b0bdK3JIFZU", u_isJavaIDStart_67) +STUB("b0cryxaTM4k", sceKernelGetUtokenUseSoftwagnerForAcmgr) +STUB( + "b0fsTtr-xPg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEEC2ERKSA_) +STUB( + "b0lWWfiZduw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEmmEv) +STUB("b0o51X8BVw4", _ZNK3sce2Np9CppWebApi11Matchmaking2V110UserTicket13platformIsSetEv) +STUB( + "b0p7biv+U9E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEC1EPS8_) +STUB("b0sySzeuW1g", _ZN7WebCore12TextEncodingC2ERKN3WTF6StringE) +STUB( + "b0vnusmS2cc", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils12Notification15UserStateChangeEE12deepCopyFromERS8_) +STUB("b0xbD0x+02M", sceVdecCoreFlushDecodeOutput) +STUB("b0xyllnVY-I", sceGnmAddEqEvent) +STUB("b1FZ4fSZQ8c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEED1Ev) +STUB("b1H9Iem3+q4", _ZN3WTF3MD58addBytesEPKhm) +STUB("b1HWDUC8zaE", sceAudioOut2SetSystemDebugState) +STUB("b1KEvruaxHY", + _ZN3WTF20ParallelHelperClientC1ENS_6RefPtrINS_18ParallelHelperPoolENS_13DumbPtrTraitsIS2_EEEE) +STUB("b1LciG4lUUk", _ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2ERKSt8_Locinfom) +STUB("b1MSFaAfkYs", _ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody11statusIsSetEv) +STUB("b1O65Mw3xoM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS19FriendsDataStatusesEEC1Ev) +STUB( + "b1VggQ0OQhM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEEdeEv) +STUB("b1XcARamCY4", usearch_handlePreviousCanonical_67) +STUB("b1Xi5gOUvJA", SSL_CTX_set_ex_data) +STUB("b1e8oPrUnY4", sceDepthGetSrParameter) +STUB("b1hZVzYWL6E", nsnp_FreeESB) +STUB( + "b1jicuhrahY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEEdeEv) +STUB("b1ncCcsgKww", ucnv_convert_67) +STUB( + "b1roFnrBGc4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEC2EPS8_) +STUB("b1uPq-AWNaY", _ZN7WebCore9HTMLNames15autocorrectAttrE) +STUB("b1zEognGrPw", _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE5beginEv) +STUB("b20+W0qKak8", _ZN7WebCore18proxyServersForURLERKNS_3URLE) +STUB("b20e017Ei94", _ZN3sce2np10EventQueue4InitEPKcmm) +STUB( + "b22GxZ-GYdQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("b24EsQw4Ge8", _ZNK7WebCore27TranslateTransformOperation4dumpERN3WTF10TextStreamE) +STUB("b28S1-fSTZQ", _ZN7WebCore21NetworkStorageSession20resetAppBoundDomainsEv) +STUB("b28tsShnGuQ", sceMbusGetSimulatedHandleStatusInfo) +STUB( + "b29vS8UDucc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEppEi) +STUB("b2EvZKZA2fQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEC2Ev) +STUB("b2FAINuffyQ", _ZNK7WebCore10ScrollView16contentsToScreenERKNS_7IntRectE) +STUB( + "b2IJoBZY+RY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEEaSERSA_) +STUB("b2OFdqV0AeA", sceNpIpcCancelCallback) +STUB( + "b2Oyp2lI70U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEC2EPNS2_10LibContextE) +STUB( + "b2XWjOyNn0w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "b2dD-1PdYts", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEptEv) +STUB("b2dRtCt+CF0", ucsdet_isInputFilterEnabled_67) +STUB("b2na0Dzd5j8", _ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2ERKSt8_Locinfom) +STUB("b2rU8HrfcwY", YGConfigNew) +STUB( + "b2rk5MZVuY0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("b2uHsVqZ9UU", _ZTVN7WebCore11DisplayList6RotateE) +STUB( + "b2vs7heVyHk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("b2wlgUJtRMk", + _ZN7WebCore22EmptyFrameLoaderClient8setTitleERKNS_19StringWithDirectionERKNS_3URLE) +STUB("b2xdRCXjUlk", _ZN9Inspector40ApplicationCacheBackendDispatcherHandlerD1Ev) +STUB( + "b2y8wcSTraU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEC1EPKS8_) +STUB("b2zLOpz7nQg", _ZN3sce2Np9CppWebApi14ConnectAccount2V212PartnerTokenD2Ev) +STUB("b32cboJlKBM", WKPreferencesGetVisibleDebugOverlayRegions) +STUB("b355f1hsAGw", _ZNK3WTF10StringImpl27startsWithIgnoringASCIICaseEPKS0_) +STUB( + "b37CGtvxAtA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE5clearEv) +STUB("b39GKNYoPFs", _ZN7WebCore10Pasteboard15writeCustomDataERKNS_20PasteboardCustomDataE) +STUB( + "b39vZrOPGK4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEE21intrusive_ptr_sub_refEPS7_) +STUB( + "b3BPO7KUGwo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEneERKSA_) +STUB("b3DGdzmYGzE", png_read_image) +STUB("b3DexgH-nwg", GCC_except_table476) +STUB("b3LcL-LNpus", _ZN9Inspector24TargetFrontendDispatcherdaEPv) +STUB("b3SWcncY+A0", curl_share_setopt) +STUB("b3SquMkPlQc", sceBgftServiceIntGetTaskInfoValueString) +STUB("b3WQPziWZJs", _ZN7WebCore9JSElement6s_infoE) +STUB("b3Wl0s4kmY4", + _ZN3sce7Toolkit2NP2V28Matching7Request23SetMembersAsRecentlyMet24NUM_RECENTLY_MET_MAX_LENE) +STUB( + "b3dWR+CnTZU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEC1EPS8_) +STUB("b3e4Apv2eI0", _ZN3JSC2VM14throwExceptionEPNS_9ExecStateENS_7JSValueE) +STUB("b3fkkcGti7E", uidna_compare_67) +STUB("b3i4-QBYzWQ", DH_get0_key) +STUB("b3lT6dTQnb0", _ZN7WebCore9HTMLNames11profileAttrE) +STUB( + "b3rDPNhttSI", + _ZN7WebCore27DeviceOrientationClientMock14setOrientationEON3WTF6RefPtrINS_21DeviceOrientationDataENS1_13DumbPtrTraitsIS3_EEEE) +STUB("b3tgrAXeCYw", _ZN7WebCore9HTMLNames6rtcTagE) +STUB("b3xXLyo06sQ", _ZN3JSC19HeapSnapshotBuilderD0Ev) +STUB("b4+e4w5A5Lo", _ZN7WebCore10FloatPoint15narrowPrecisionEdd) +STUB( + "b4-zEaiN0dQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEED2Ev) +STUB("b40XbKKKDhQ", sceAvSettingGetNativeHdmiMonitorInfo) +STUB( + "b43sImEMxy4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEC1EPS8_) +STUB("b44anV2D7K0", sceFiosFHOpenSync) +STUB("b4BU62VsgYA", _ZN7WebCore9FloatRect11fitToPointsERKNS_10FloatPointES3_S3_) +STUB( + "b4FcFjbVg34", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEED1Ev) +STUB("b4GN5d8gx00", il2cpp_class_is_enum) +STUB("b4O+SIoLvhM", delegate_virtual_invoke_imt_32_p) +STUB( + "b4VokVXPygU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEC1Ev) +STUB("b4VomvIAJcg", _ZN7WebCore31BasicColorMatrixFilterOperationD0Ev) +STUB("b4YWNwRJ4qk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEC2ERKS7_) +STUB("b4ZL901zbxs", mono_aot_System_Net_Http_WebRequestmethod_addresses) +STUB("b4aGU8znnCo", _ULx86_64_resume) +STUB("b4bvSzAJv+o", _ZN3sce2Np9CppWebApi7Matches2V123ResponsePlayerStatistic8getStatsEv) +STUB( + "b4dnnL1auJg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEplEm) +STUB("b4eojk3e5gk", _ZNK3sce2Np9CppWebApi6Common8IteratorIlEdeEv) +STUB("b4fpgH5ZXxQ", sceAgcDriverSubmitCommandBuffer) +STUB( + "b4gIrrRpEoY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEED1Ev) +STUB("b4qaXPzMJxo", sceNpSignalingTerminateConnection) +STUB( + "b4rosnD6+o4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE5clearEv) +STUB("b4t2jOPTxts", scePatchCheckerDisableAutoDownload) +STUB("b4yOflzaaaY", mono_aot_Sce_Vsh_Np_ServiceCheckerjit_code_start) +STUB("b5-tnLcyUQE", sceUserServiceSetAppSortOrder) +STUB("b50TWwRmzu8", sceAmprAmmMeasureAmmCommandSizeRemapWithGpuMaskId) +STUB( + "b50eoewGGlQ", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V142MatchCompletionRateCompletedMetricsFactory7destroyEPNS3_35MatchCompletionRateCompletedMetricsE) +STUB("b50vZZleJDI", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData13isInitializedEv) +STUB("b529w-v1R4w", _ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error11unsetSourceEv) +STUB("b54DvYZEHj4", __ffsti2) +STUB( + "b56mD1yuGg4", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB( + "b58M42ULhHU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEixEm) +STUB("b58kPOP0cJ0", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS25AtomicAddToAndGetVariableEE5resetEv) +STUB( + "b58rB7ajuJ0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEE3getEv) +STUB("b5AQKU2CI2c", sceFontGraphicsCanvasSetSurfaceFillWithLayout) +STUB("b5Dao9vXCpE", monoeg_g_convert) +STUB("b5ETsuf4VH4", FT_Get_Var_Blend_Coordinates) +STUB( + "b5FfCLIpOwQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("b5FjZYVE1n8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEdeEv) +STUB("b5GpFMr+AeE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEEC1ERS7_) +STUB("b5JSEuAHuDo", _ZTIl) +STUB("b5KdXXbihxE", u_memcmpCodePointOrder) +STUB( + "b5LQWECb2TE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEptEv) +STUB( + "b5QbEbtix1U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEC2Ev) +STUB( + "b5R9e1XMKW8", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getBoolean6Ev) +STUB("b5RaMD2J0So", sceGameLiveStreamingScreenCloseSeparateMode) +STUB( + "b5W46G4zu0s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE7reserveEi) +STUB("b5Xa+k0dlQs", bemp2sys_pesparser_sendmessage) +STUB("b5bQfU9tUKo", WKAccessibilityEnhancedAccessibilityEnabled) +STUB("b5gZp-r3WWI", FT_Stream_ReadULongLE) +STUB( + "b5iCcey3TYw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEEC2Ev) +STUB("b5isPN7H058", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEmmEi) +STUB("b5kj+VbcJOI", WKBackForwardListGetForwardListCount) +STUB("b5lXulHidws", _ZN12video_parser17cVideoProfilerMp412getVideoInfoEjPPNS_13VpMediaInfo_tE) +STUB("b5mBtzhnC7A", + _ZNSt9_FacetptrISt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEE6_PsaveE) +STUB( + "b5mRMWoeg80", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB("b5u0Jzm8TF8", sceAgcDcbCopyDataGetSize) +STUB("b5y5e6Xh1Mc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V113AttributeTypeEEneERKS7_) +STUB("b5yYFj7O3kk", WKBundleFrameGetJavaScriptWrapperForRangeForWorld) +STUB("b6+TytWccPE", sceUserServiceSetTeamShowAboutTeam) +STUB("b6+hAoAkJl8", WKBundleInspectorEvaluateScriptForTest) +STUB( + "b6+uo1hemLA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("b604iIfa1Lc", _ZNK3sce2Np9CppWebApi11Matchmaking2V18Location16getGameSessionIdEv) +STUB( + "b66kEvu2fuM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEE11release_refEv) +STUB("b68J2DRfOU0", YGNodeStyleGetMinHeight) +STUB( + "b68m-li9kpo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEmmEi) +STUB( + "b6EtXvTDX38", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "b6Guq9VTOtM", + _ZN9Inspector22InspectorDebuggerAgent21sourceMapURLForScriptERKNS_19ScriptDebugListener6ScriptE) +STUB("b6KysZfpTwE", sceApplicationExitSpawn) +STUB("b6L73ocbpS4", _ZN3sce3pss4core7runtime6serial15TerminateCsharpEv) +STUB( + "b6M7IR+inGY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEEC2ERKSA_) +STUB( + "b6TarBmj7A0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEmmEv) +STUB("b6ZkHYT1KaU", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEE3getEv) +STUB( + "b6csEsVG+qk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE3endEv) +STUB("b6nYaiZQ9wo", JNU_Notify) +STUB( + "b6sbhD1zEBM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE3endEv) +STUB("b6wVU+UwrQs", _ZN3JSC7Symbols37asyncGeneratorQueueEnqueuePrivateNameE) +STUB("b70pscdNZiE", sceCesUtf16ToSbc) +STUB("b72m71eLRDQ", unorm2_close) +STUB("b76KJQuXM5s", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEED2Ev) +STUB( + "b7B435c9744", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_18SessionInformationENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB("b7DvlOFBWYg", rgctx_fetch_trampoline_rgctx_50_p) +STUB( + "b7IHLl83Opk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEE7add_refEv) +STUB("b7J3q7-UABY", tgamma) +STUB( + "b7LBqruI01U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("b7S96aD8dkE", FTA_Support_Renderer_Smooth) +STUB( + "b7Saunh0D-g", + _ZN3sce7Toolkit2NP2V210Wordfilter13filterCommentERKNS3_7Request13FilterCommentEPNS2_4Core8ResponseINS3_16SanitizedCommentEEE) +STUB("b7TND-La7t4", utext_previous32) +STUB( + "b7VmHF47C0I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE5emptyEv) +STUB("b7etkLzDnt4", WKCertificateInfoGetCertificateChain) +STUB("b7fR5ZUglgM", _ZN7WebCore6Path2D6createERKS0_) +STUB("b7ji2YLeitQ", GCC_except_table171) +STUB("b7kJI+nx2hg", sceVoiceDeletePort) +STUB("b7klmKCsFQk", _ZN15AbstractStorage14TwitterStorage14GetStorageSizeEPlS1_S1_) +STUB("b7leY-LNVnI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE3endEv) +STUB("b7p2qTtZPno", res_getTableItemByKey) +STUB( + "b7qez8Ub9iQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEdeEv) +STUB("b7qnGORh+H4", _ZN3sce2np9Semaphore6SignalEv) +STUB("b7qxKvBXofs", mono_image_add_to_name_cache) +STUB("b7uXQmnfB2s", sysarch) +STUB("b7vhDA9Csn0", + _ZN3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectator15getPushContextsEv) +STUB("b7zw2CSlnV8", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE6resizeEj) +STUB( + "b83W87I5uzU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("b89Y6mVMg+Q", _ZNK7WebCore16HTMLInputElement3altEv) +STUB("b8HJyPHX26I", _ZN7Nicosia5SceneD1Ev) +STUB( + "b8HiPovLStY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEE5resetEPS6_) +STUB("b8I2aPga1ss", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEptEv) +STUB( + "b8Pg-f1gQkU", + _ZN3sce2Np9CppWebApi14SessionManager2V161GetUsersAccountIdPlayerSessionsInvitationsResponseBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_54GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEE) +STUB("b8Vrz3y8Zec", delegate_virtual_invoke_imt_m_6_p) +STUB( + "b8X4w1Du9EY", + _ZN3sce2Np9CppWebApi14SessionManager2V135RequestJoinGameSessionPlayerFactory7destroyEPNS3_28RequestJoinGameSessionPlayerE) +STUB( + "b8XF6S+NYyE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE3endEv) +STUB( + "b8Y5XoDrDoo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEC2EPS8_) +STUB("b8YwdPYpAq4", sceEsvmEngineMediaKeySessionGetExpiration) +STUB( + "b8bKcvqd1IA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEE3getEv) +STUB("b8gHH7LwJcw", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEEmmEv) +STUB( + "b8rqY1ulciE", + _ZNK3sce2Np9CppWebApi14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBody6toJsonERNS_4Json5ValueEb) +STUB("b8vNEwV8cX0", sceNpUniversalDataSystemDestroyRecordData) +STUB("b8ySy0pHgSQ", _ZNSt12placeholders3_10E) +STUB("b96weRo-A24", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEE11get_deleterEv) +STUB("b9AvoIaOuHI", sceHttp2SetAutoRedirect) +STUB( + "b9FDLXPXpZ0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE8capacityEv) +STUB("b9FUk-VCqmY", _ZN7WebCore13QualifiedName17QualifiedNameImplD2Ev) +STUB("b9Ft65tqvLk", sceNetBandwidthControlGetIfParam) +STUB("b9IYAN2rhlo", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11SessionDataEEC1Ev) +STUB( + "b9LTVmQ35Bk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("b9MO8r778XE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEEC2Ev) +STUB("b9QSruV4nnc", _ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED0Ev) +STUB("b9R+HQuHSMI", sceFontGraphicsUpdateGlyphFillPlot) +STUB("b9TWJpHkUlw", _ZN3sce7Toolkit2NP2V212NetworkUtils13NetStateBasicD1Ev) +STUB("b9TiSloCiTs", WKContextSetIconDatabasePath) +STUB("b9V6fmppLXY", _ZN3sce4Json5ValueC1EPKc) +STUB( + "b9ZyLbipNgY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE5beginEv) +STUB("b9b6PA5TKc0", _ZNK3sce3Xml3Dom8Document11getNextAttrENS1_6NodeIdE) +STUB( + "b9bNwUpMY5w", + _ZN7WebCore17JSHTMLLinkElementC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_15HTMLLinkElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "b9eG7LrpdU0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("b9enc4+Xz6s", _ZNK3sce2Np9CppWebApi11UserProfile2V112BasicProfile12getAccountIdEv) +STUB( + "b9f4JTuKQb8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "b9h2hUZC5+E", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEneERKS7_) +STUB("b9o31N6Nz3M", _ZN3sce2Np9CppWebApi7Matches2V128RequestTemporaryMatchResultsD2Ev) +STUB("b9oxVnUlBi8", ucptrie_swap) +STUB("b9pVidwn2zU", isobmf_box_getmember_type) +STUB("b9rDyUx5Ln8", _ZN3JSC18CustomGetterSetter6s_infoE) +STUB("b9uQHgCPuB8", + _ZN3WTF17sendMessageScopedERNS_6ThreadERKNS_12ScopedLambdaIFvRNS_17PlatformRegistersEEEE) +STUB("b9wMNkQ+uoU", rgctx_fetch_trampoline_mrgctx_96_p) +STUB("b9wqZKzgejI", WKNotificationPermissionRequestDeny) +STUB("b9xXx9oB6TY", _ZNK3JSC4Heap18isHeapSnapshottingEv) +STUB( + "b9zaEnUJa3w", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("bA31MLNLtWQ", sceFsInitUmountTrophyDataOpt) +STUB( + "bA4992wjlQs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEixEm) +STUB("bA8F4A5hXDE", _ZN3sce7Toolkit2NP2V23TSS7TssDataD2Ev) +STUB("bACWNWv6zt4", _ZN7WebCore11MathMLNames7mrowTagE) +STUB( + "bAD82oNrCWk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEaSERKS9_) +STUB("bAHIOyNnx5Y", sceNpCondSignalTo) +STUB("bAKsVCOJMu8", sceFaceTrackerStartTracking) +STUB("bALdEpK+vWk", _ZN3WTF24numberToFixedWidthStringEfjRSt5arrayIcLm123EE) +STUB("bAM9Qwofus0", _ZNK3sce4Json5Array4backEv) +STUB("bAN1O3eaO5c", _ZNK3WTF3URL4hostEv) +STUB( + "bAPPhehnDG0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEED2Ev) +STUB("bAQtfz1zmu0", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEEptEv) +STUB("bASEQctTGhI", sceVorbisDecGetLastDecodeError) +STUB( + "bAXQJ9oAPwc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("bAa-5ftidqk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE5clearEv) +STUB("bAbUJvsiVdI", FTA_Add_Module_pcf) +STUB("bAc0bWqJiE0", _ZN9Inspector31BrowserBackendDispatcherHandlerC2Ev) +STUB("bAdgFVFcb84", Java_com_sony_bdjstack_javax_media_controls_SoundManager_stop) +STUB("bAho0zsG+C0", + _ZN3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectatorC2EPNS1_6Common10LibContextE) +STUB( + "bAjTIXtsWIY", + _ZN9Inspector8Protocol13BindingTraitsINS0_8Debugger5Scope4TypeEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE) +STUB( + "bApW3WxTPXc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEaSERKS9_) +STUB( + "bB7u5BREukM", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V138SetMultiVariablesRequestBody_variables6toJsonERNS_4Json5ValueEb) +STUB( + "bB88kdAVteE", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEEC1ERKSF_) +STUB("bBAsdwQLvIs", _ZN9Inspector21InspectorRuntimeAgentnwEm10NotNullTagPv) +STUB( + "bBEtUmqhZVk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEdeEv) +STUB("bBGvmspg3Xs", _ZNSt10moneypunctIwLb0EEC2Em) +STUB( + "bBK2+PW8H7o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("bBLapYYwyr0", _ZN3sce2np10Cancelable13SetCancelableEb) +STUB("bBMsIo7cM4Y", _ZN3JSC23objectProtoFuncToStringEPNS_9ExecStateE) +STUB("bBTc4FvXNiY", rgctx_fetch_trampoline_mrgctx_110) +STUB( + "bBf5JkRRgTo", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V143SetVariableWithConditionsRequestBodyFactory7destroyEPNS3_36SetVariableWithConditionsRequestBodyE) +STUB("bBfz7kMF2Ho", sceKernelAddAmprEvent) +STUB("bBga5PMTA7c", _ZN3sce7Toolkit2NP2V212ActivityFeed13UsersWhoLikedaSERKS4_) +STUB( + "bBh-C4Hvlfk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEEC2EPNS2_10LibContextE) +STUB("bBoJh5CN0IA", _ZN3sce7Toolkit2NP2V26Trophy7Request18GetTrophyPackGroupC2Ev) +STUB("bBx0-Gv97kI", _ZN7WebCore8SVGNames10feFloodTagE) +STUB( + "bBx9CIoUSds", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("bC0WTypscWg", sceFiosCachePrefetchFileSync) +STUB("bC28c7J9ZuE", _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeIPcPvEED1Ev) +STUB( + "bC2te-Q6Fdo", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getBoolean7Ev) +STUB("bC3O0thcHS8", _ZN3sce3Xml4Util9strResultEi) +STUB("bC4+qi0mqJE", _ZN3sce2np13NpTitleSecretC1ERK16SceNpTitleSecret) +STUB("bC8vo608P2E", sceShellCoreUtilSetGameLiveStreamingOnAirFlag) +STUB("bC9PhWZwvAw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE21intrusive_ptr_sub_refEPS7_) +STUB( + "bCCKHTeKetw", + _ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody16setMaxSpectatorsERKi) +STUB( + "bCCbTP8eGIQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("bCD2orE1y84", sceBgftServiceIntDebugDownloadCorruptPkg) +STUB("bCLsz0u1Bo8", mono_aot_Sce_Vsh_SystemLoggerWrapperplt) +STUB( + "bCPoW6SC9XU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEEC2ERKSA_) +STUB( + "bCSmk1gh4JU", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeaders5parseEPNS1_6Common10LibContextElPNS6_12IntrusivePtrIS5_EE) +STUB("bCdXMUQSoSo", _ZN7WebCore9HTMLNames13valuetypeAttrE) +STUB( + "bCfL0qXf9+A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEC2EPS8_) +STUB( + "bCfgxIyp8Rg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEED1Ev) +STUB("bClfm6asSEQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE7popBackEv) +STUB("bCmrP96etlo", delegate_virtual_invoke_imt_27) +STUB("bCp6+QAqRgE", _ZN3sce7Toolkit2NP2V28Commerce8Category24CATEGORY_DESCRIPTION_LENE) +STUB( + "bCubNGmjpZ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("bD-JizUb3JM", sceNpSignalingGetConnectionStatus) +STUB("bD25s85vCLc", _ZN3WTF13StringBuilder22appendFixedWidthNumberEdj) +STUB( + "bD2AR1MNTao", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEC2EPS8_) +STUB("bD3nxh6Om44", _ZN3WTF26getAndResetAccumulatedLogsEv) +STUB("bD4c5eDrf7c", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V18PlatformEEC1Ev) +STUB("bD5RtTjevng", _ZN9Inspector25DebuggerBackendDispatcherD1Ev) +STUB("bD7-wJV52QU", ufmt_getInt64_67) +STUB( + "bD7g0Fn+sPQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE10setContextEPNS2_10LibContextE) +STUB( + "bDAi0HffboA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("bDBa3CzyDko", scePlayReadyDomainCertEnumNext) +STUB("bDEVVP4bTjQ", sceRtcSetTime_t) +STUB( + "bDFo3RsZK+k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE21intrusive_ptr_sub_refEPS9_) +STUB("bDGZVTwwZ1A", sceVrTrackerSaveInternalBuffers) +STUB("bDHNxnmvy4w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEEC1ERKS7_) +STUB( + "bDHXbcVV8Yk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEEaSERSA_) +STUB("bDP4+0Hr2zM", ucasemap_utf8ToTitle_67) +STUB("bDRABO67C24", WKPageMoveFocusInTabOrder) +STUB( + "bDcXYpqpaKQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEC1Ev) +STUB("bDhsp1osQJw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEE7add_refEv) +STUB("bDqj8t808Uo", scePrintUlpCmdHdr) +STUB( + "bDu8cOyyYFg", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemProperties12setaccountIdEPKc) +STUB("bDupEgbQ6Fk", sceFiosFileDeleteSync) +STUB("bDvtV5DLmmQ", _ZN3sce7Toolkit2NP2V28Commerce16RatingDescriptorD2Ev) +STUB("bDxp2MUE484", _ZN8Gigacage14tryMallocArrayENS_4KindEmm) +STUB("bDz2q0rUCB8", mono_aot_Sce_Vsh_DataTransferplt_end) +STUB( + "bDzs8G+8W9o", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getInteger7Ev) +STUB("bE03GJF7Bfc", sceLoginMgrServerLoginServiceNotifyRequestFinished) +STUB( + "bE2ac8LPmF0", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot8haslimitEv) +STUB( + "bE4qliYEhes", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEEC1EPS7_PFvS9_EPNS2_10LibContextE) +STUB( + "bEKDWw2ULkw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE8copyFromERKS9_) +STUB( + "bEMhihcRp-k", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser25getusePlayerSessionFilterEv) +STUB( + "bEOdEpgXaoo", + _ZN9Inspector14ConsoleMessageC1EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelERKN3WTF6StringEm) +STUB( + "bEP-ZNNfVD4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("bEQToAEGGxQ", psl_builtin_filename) +STUB( + "bEV+xhpeS20", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEEC1ERSA_) +STUB( + "bEVdldc+7wo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEED2Ev) +STUB("bEXUKe-l3WM", _ZN3JSC6Config25disableFreezingForTestingEv) +STUB( + "bEYHGOtNkfs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "bEb9lZLLnJE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEED2Ev) +STUB("bEbjy6yceWo", _ZTSPj) +STUB("bEc8Ixq0Tnk", _ZN7WebCore14FrameSelection16updateAppearanceEv) +STUB("bEd1IOCblmo", _ZN7WebCorelsERN3WTF10TextStreamENS_28ScrollingLayerPositionActionE) +STUB("bEeGSoRz+DI", _ZN3sce2Np9CppWebApi7Matches2V116JoinMatchRequestD2Ev) +STUB("bEegosRhgM0", sceHttp2SetRequestNoContentLength) +STUB( + "bEhpFggyQxQ", + _ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId13isInitializedEv) +STUB("bEk+WGOU90I", _Setgloballocale) +STUB("bElrc3VqGXk", _ZNK7WebCore13KeyboardEvent7keyCodeEv) +STUB("bErx49PgxyY", sceNetBind) +STUB("bEsfnrJhxSQ", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIjE21intrusive_ptr_add_refEPS4_) +STUB("bEvXpcEk200", sceNpWebApi2Terminate) +STUB("bEvdC7ChNYY", rgctx_fetch_trampoline_rgctx_119) +STUB( + "bEwJsewIngA", + _ZN3sce2Np9CppWebApi12Leaderboards2V128GetRankingRequestBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_21GetRankingRequestBodyEEE) +STUB("bEyPZm9p+kk", _ZN7WebCore5Range16surroundContentsERNS_4NodeE) +STUB( + "bF2bAqWa4lI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "bF2uVCqVhBY", + _ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE7_GetcatEPPKNSt6locale5facetEPKS5_) +STUB("bF4eWOM5ouo", _Getpcostate) +STUB( + "bF4gnXmtsIA", + _ZThn16_N9Inspector21InspectorRuntimeAgent8evaluateERN3WTF6StringERKS2_PS4_PKbS8_PKiS8_S8_S8_RNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISE_EEEERSt8optionalIbERSJ_IiE) +STUB("bF8-X1KRT+s", png_destroy_write_struct) +STUB("bF8mYHUwKSk", _ZTV18MmsFileUpdaterBase) +STUB("bFDUu1ddOjs", _ZN3JSC23MacroAssemblerX86Common18collectCPUFeaturesEv) +STUB( + "bFEFS7q3MlQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEE7get_refEv) +STUB("bFEs0Gs6D2A", sceAmprAprCommandBufferMapDirectBegin) +STUB( + "bFI-oDOkEjs", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUserC2ERS5_) +STUB( + "bFKPAvTzaIo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEC2ERS8_) +STUB("bFKdnY84oQo", JVM_GetLastErrorString) +STUB("bFLwUoQqNHM", _ZN3WTF14FileSystemImpl30appendFileContentsToFileHandleERKNS_6StringERi) +STUB("bFN5mIvW-mA", sceDeci4hDrfpMkdir) +STUB( + "bFN5puPj+QE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEppEi) +STUB( + "bFPmKYgHzFs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("bFRJxvYd+fI", _ZN3sce7Toolkit2NP2V27NpUtils7Request24SetTitleIdForDevelopmentD2Ev) +STUB("bFVTuIx0P5o", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEEC2EPNS2_10LibContextE) +STUB("bFVjDgxFapc", sceNpScoreGetRankingByAccountIdPcIdAsync) +STUB( + "bFVvlb12HRo", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi35ParameterToSetGameSessionProperties10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_37PatchGameSessionsSessionIdRequestBodyEEE) +STUB("bFYpAw85oPI", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setAngle) +STUB( + "bFdNZNcaysI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE8copyFromERKS9_) +STUB( + "bFeYxFjKHvo", + _ZN3sce2Np9CppWebApi14SessionManager2V133RequestPlayerSessionPlayerFactory7destroyEPNS3_26RequestPlayerSessionPlayerE) +STUB("bFh3fZapfPY", sceMbusDebugTerminateProcess) +STUB("bFhYDNofRSE", _ZNK7WebCore20ResourceResponseBase14httpStatusCodeEv) +STUB("bFlL2ObQBP8", g_slist_insert_sorted) +STUB("bFmgCQYlHAw", WKPreferencesSetWebGLEnabled) +STUB("bFmpgAvA65g", _ZN3sce7Toolkit2NP2V26Trophy7Request13SetScreenshotC2Ev) +STUB( + "bFsQQh4pkSs", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsC1EPNS1_6Common10LibContextE) +STUB("bFzA3t6muvU", sceUserServiceSetShareButtonAssign) +STUB("bFzmBgAHSww", _ZN9Inspector22InspectorDebuggerAgentdaEPv) +STUB("bG1ielaxsxo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEC1ERKS7_) +STUB( + "bG2hcZ0Jg5w", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEdeEv) +STUB("bG62+hOwII0", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Publisher8fromJsonERKNS_4Json5ValueE) +STUB("bGKK41RreRI", YGNodeStyleSetBorder) +STUB( + "bGLXnxr9jSE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEE11release_refEv) +STUB("bGN-6zbo7ms", sceHttp2ReadDataAsync) +STUB("bGTjTkHPHTE", sceNpTusTryAndSetVariableAAsync) +STUB("bGUWlZWqFmE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEEC1EPKS6_) +STUB("bGVEgWXy6dg", _openat) +STUB( + "bGWZpwU2aWs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEC1Ev) +STUB( + "bGY41uf2SfI", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetInteger7Ev) +STUB("bGYkY6q3bIw", sceVideoRecordingQueryMemSize2) +STUB("bGZ-+d2ao5A", + _ZN7CoreIPC10Connection19sendOutgoingMessageEN3WTF10PassOwnPtrINS_14MessageEncoderEEE) +STUB("bGcXUCLd0TA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE5beginEv) +STUB("bGci6WF1Xmw", _ZTVN7WebCore14StaticNodeListE) +STUB("bGdhin6EqQc", mono_method_get_param_names) +STUB( + "bGemPeNZ5A8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEeqERKS9_) +STUB("bGesT5zjSHk", _ZNK7WebCore12ChromeClient28allowsAcceleratedCompositingEv) +STUB("bGg+st-C35M", mono_aot_System_Coreunbox_trampolines) +STUB("bGgKa9+ND7o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEED1Ev) +STUB( + "bGhbWiLpRjo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE3endEv) +STUB( + "bGpyI4so-TA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE7reserveEi) +STUB("bGtl04R9oiY", sceAutoMounterClientRegisterCallback) +STUB("bGu3GtPz-l0", mono_custom_attrs_construct) +STUB("bGwp1S4bcIY", sceFiosCacheContainsFile) +STUB( + "bGxGerh3UfY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("bH08FzR5rFU", _ZN3sce2np3ipc17ServiceIpmiClient15CancelEventFlagEijm) +STUB("bH12z-W8uIM", FT_Outline_Reverse) +STUB("bH7ljyLOsBw", _ZN3sce2np16StreamReadBufferD2Ev) +STUB("bH9A-ZnO-7s", _ZN3sce2Np9CppWebApi7Matches2V116RequestMatchTeam9setTeamIdEPKc) +STUB( + "bH9s4SjScS4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEdeEv) +STUB("bHEycqHxG2I", _ZN3JSC13JSSetIterator14finishCreationERNS_2VMEPNS_5JSSetE) +STUB("bHFaiUhZCrQ", sceFiosOpSetBuffer) +STUB("bHLyyXx0Hu0", mono_aot_Sce_Vsh_Orbis_ContentManagerunbox_trampoline_addresses) +STUB("bHWFSg6jvXc", sceNpTusGetMultiSlotDataStatusVUserAsync) +STUB("bHZ8CuBElEU", WKGraphicsContextGetTypeID) +STUB( + "bHcmbWYchAk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEED1Ev) +STUB("bHcvUKBaOYY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEE3getEv) +STUB( + "bHdp+iGq96s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEE3getEv) +STUB( + "bHgidkQnUyE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEE11get_deleterEv) +STUB("bHhivemWybw", sceDataTransferTargetAbortSendSsoOld2New) +STUB( + "bHiDqbuVeeM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE7popBackEv) +STUB( + "bHwOUel2lRs", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS5_INS7_7DataApi25UploadDataResponseHeadersEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISE_SF_EE) +STUB("bI0R631jRPA", _ZN7WebCore16BackForwardCache14addIfCacheableERNS_11HistoryItemEPNS_4PageE) +STUB( + "bI3Kr9AxQ4Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEE3getEv) +STUB("bI5AGFMydrA", _ZN3sce4Json5ArrayC1ERKS1_) +STUB( + "bI5R7khFVZU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEptEv) +STUB( + "bI6YNZJVEKM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEneERKS9_) +STUB("bIAlhZGTsh0", _ZN7WebCore9InlineBox14dirtyLineBoxesEv) +STUB("bIDov3wBu5Q", sceNpTrophy2RegisterContext) +STUB("bIHoZCTomsI", scePthreadRwlockTrywrlock) +STUB("bIK8nH+qW0k", uset_indexOf_67) +STUB("bIPHtmS8z24", _ZN3NTF6Cookie11CookieJarDB11getInstanceEv) +STUB( + "bIQqxKROXbU", + _ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId11getobjectIdEv) +STUB( + "bISUyGezrfM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEE5resetEPS9_) +STUB("bIU19RyXVUg", WKContextResumeDownload) +STUB( + "bIUFURL+sy0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE21intrusive_ptr_add_refEPS9_) +STUB("bIW3nWvi3q8", mono_aot_Sce_Vsh_Np_IdMapperplt) +STUB("bIXoqhXxdfM", + _ZNK3sce2Np9CppWebApi14SessionManager2V115SearchCondition6toJsonERNS_4Json5ValueEb) +STUB( + "bIZKG5ZqNiQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEC1Ev) +STUB( + "bIZvNAz+sZ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("bIdRTPcRP7w", WKContextMenuItemGetType) +STUB("bIfFaqUwy3I", _Xp_setw) +STUB( + "bIgO5XD4RxA", + _ZN7WebCore12JSAudioTrackC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_10AudioTrackENS6_13DumbPtrTraitsIS8_EEEE) +STUB("bIi4YUfSRys", sceHmd2GetDeviceInformation) +STUB( + "bIi5LWKsvHc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEC2Ev) +STUB("bIij1fNCQOg", sceNpUniversalDataSystemIntRecordObjectSetUInt64) +STUB("bIiliSmuGnM", _ZN2sh10InitializeEv) +STUB("bIjisuca0z8", nsnp_ActionDescribe) +STUB("bIlNLrCoCxc", _ZN4Manx20Curl_cookie_freelistEP6Cookieb) +STUB( + "bImgR9hCXIk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEeqERKS9_) +STUB("bItEABINEm0", _Getfld) +STUB("bIu+46LMa+Y", _ZN3sce2Np9CppWebApi7Matches2V113RemovedPlayerD2Ev) +STUB("bJ25--plJO4", _ZN3JSC7Symbols35createResolvingFunctionsPrivateNameE) +STUB( + "bJ40fDm+HWs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "bJ5e-c2yvEg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEC2EPS7_PNS2_10LibContextE) +STUB("bJ6HTP9OLhc", _ZN7WebCore4PathC2EOS0_) +STUB( + "bJ7o54npen0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEppEi) +STUB("bJ8hpx4xk-w", _ZNK7WebCore8FormData12isolatedCopyEv) +STUB("bJ9NDrBlzSk", _ZN9Inspector25TimelineBackendDispatcherD2Ev) +STUB( + "bJ9TcHCITIo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEEC2Ev) +STUB( + "bJCkdvhRTdw", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("bJU1GJkpdpI", _ZNK3sce7Toolkit2NP9Utilities6FutureIiE17getAdditionalInfoEv) +STUB("bJWBpvGCIJU", + _ZN3sce4Json5Value22setSpecialFloatHandlerEPFKS1_NS0_12FunctionTypeEdPS2_PvPbES5_) +STUB("bJWYETNhP-w", _ZN3JSC14ExecutableBase6s_infoE) +STUB( + "bJXznl6ZDjw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEixEm) +STUB("bJZ4igT+7x4", ucnv_cbToUWriteSub) +STUB("bJc2nX0Gx2M", _ZN3sce2np13JsonDocParserC1EP14SceNpAllocator) +STUB( + "bJelix7Zidg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEEC2ERSA_) +STUB("bJhmjmsPRTM", _ZNK10__cxxabiv120__si_class_type_info11can_cast_toEPKNS_17__class_type_infoE) +STUB( + "bJoiocQXS7U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEC1Ev) +STUB("bJt4U6-vG6w", _ZN3JSC7Symbols15keysPrivateNameE) +STUB( + "bJzR04DCZis", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEC2EPS8_) +STUB("bJzXMuvYq0M", + _ZNK3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer6toJsonERNS_4Json5ValueEb) +STUB( + "bK0nszUAV2k", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_15PlayedWithStoryENS1_15AppSTLAllocatorIS5_EEEED2Ev) +STUB("bK1L5xuKeq8", _ZN3JSC8JSCalleeC1ERNS_2VMEPNS_14JSGlobalObjectEPNS_9StructureE) +STUB("bK8JYvbNrsQ", _ZNK3sce2Np9CppWebApi14ConnectAccount2V214PSNError_error16referenceIdIsSetEv) +STUB("bK8zzGxzeFE", monoeg_g_log_set_always_fatal) +STUB("bKCBjuO0ktM", _ZN7WebCore20SharedBufferDataViewC1ERKS0_) +STUB("bKI5-XfYOyk", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEEixEm) +STUB("bKMVqRcCQ1U", _ZN3sce2np6ObjectnaEmR16SceNpAllocatorEx) +STUB("bKPwK6nfqdA", sceGpuExceptionGetStatus) +STUB( + "bKRktvau0JI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("bKSKjuolj7o", _ZN7WebCore15DatabaseTracker9singletonEv) +STUB( + "bKVX6kjbJo8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "bKWbQfLpisA", + _ZN3JSC12StringObject17defineOwnPropertyEPNS_8JSObjectEPNS_14JSGlobalObjectENS_12PropertyNameERKNS_18PropertyDescriptorEb) +STUB("bKaEtQnoUuQ", sceSslSetSslVersion) +STUB("bKbea4Od2NY", __sum_D2A) +STUB("bKkcnVKfATo", mono_g_hash_table_lookup) +STUB("bKolEm5dHJs", HMAC_Update) +STUB("bKwd3Fzl3RM", izrule_getFirstStart_67) +STUB("bKx+TASkJs4", WKContextSetCookieMode) +STUB("bKy-tUm-df0", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfilesC2Ev) +STUB("bKzqp+Lj3YQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead16customData2IsSetEv) +STUB("bL+h0VZvQTc", rgctx_fetch_trampoline_rgctx_94) +STUB("bL1R7711ZNA", + _ZN7WebCore12SharedBufferC1EON3WTF6VectorIcLm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB( + "bL2eVhPSmM8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE10setContextEPNS2_10LibContextE) +STUB( + "bL3wlPNyiwU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEED2Ev) +STUB("bL7-3R8nSuU", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_24RegisterGameDataResponseEED2Ev) +STUB( + "bLBIUiymf3c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("bLGofENX+6M", sceCesUtf16ToEucCn) +STUB("bLI8cSePcoA", _ZNK3sce2Np9CppWebApi6Common8IteratorIfEeqERKS4_) +STUB("bLK-QjCTRiM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEaSERS7_) +STUB( + "bLK1FEABaM8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEED1Ev) +STUB("bLP9mqWhb1E", ucol_looksLikeCollationBinary) +STUB("bLPn1gfqSW8", _ZTISt13runtime_error) +STUB("bLfjqFmN4s4", sceUserServiceSetPbtcTuesdayHoursStart) +STUB( + "bLiiGezq8wo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB("bLm9B8rJJK0", _ZN7WebCore22ScriptExecutionContext9execStateEv) +STUB("bLnqHspR4Lc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEC1Ev) +STUB("bLqZd5zFR0s", _ZN7WebCore17FrameLoaderClientnaEm) +STUB( + "bLubdvCKpAU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEEC1ERKSA_) +STUB("bLuyjdtbY40", + _ZN7WebCore14JSWebAnimation15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB("bM0op1RdMx0", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_26ActivityFeedCondensedStoryEEC1Ev) +STUB("bM2FsV3L4sI", sceVencCoreQueryPresetEx) +STUB("bM5szLq16Ds", _ZN9Inspector26DebuggerFrontendDispatchernaEmPv) +STUB("bM7wAsKt4lA", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEEC1ERS7_) +STUB( + "bM97fcTmj+s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEmmEv) +STUB("bMDbofWFNfQ", sceSystemServiceIsScreenSaverOn) +STUB("bMG3cVmUmuk", sceNpInGameMessageTerminate) +STUB( + "bMH1rw20+e8", + _ZN9Inspector21PageBackendDispatcherC2ERNS_17BackendDispatcherEPNS_28PageBackendDispatcherHandlerE) +STUB("bMI5JoaOk8A", fuse_opt_insert_arg_compat) +STUB( + "bMIHV0urhxY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEEptEv) +STUB("bMMuCq5drU4", _ZN7WebCore13GraphicsLayer8addChildEPS0_) +STUB( + "bMS918krHH8", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10getString8Ev) +STUB( + "bMSWimwFcww", + _ZN7WebCore27TranslateTransformOperation6createERKNS_6LengthES3_S3_NS_18TransformOperation13OperationTypeE) +STUB( + "bMT3eg1MVBw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "bMXJencBAbs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEC2EPS8_) +STUB("bMdtr7DBgng", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEEC1ERSA_) +STUB("bMfwlXUgN-o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEaSERKS7_) +STUB("bMik+RFCP8g", _ZN3sce2Np9CppWebApi11Matchmaking2V113ErrorResponseD1Ev) +STUB("bMkPJfb5G9k", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationProperties6toJsonERNS_4Json5ValueEb) +STUB("bMlLM2uzdB8", _ZN9Inspector27AnimationFrontendDispatcher18animationDestroyedERKN3WTF6StringE) +STUB("bMmid3pfyjo", sceKernelDeleteAmprEvent) +STUB("bMoSMXPXM4c", ucal_openTimeZones_67) +STUB( + "bMt7R2-8dgQ", + _ZThn16_N9Inspector18InspectorHeapAgent10getPreviewERN3WTF6StringEiRNS1_8OptionalIS2_EERNS1_6RefPtrINS_8Protocol8Debugger15FunctionDetailsENS1_13DumbPtrTraitsISA_EEEERNS7_INS8_7Runtime13ObjectPreviewENSB_ISG_EEEE) +STUB("bMzSvkfgMEU", _ZN7WebCore9FrameView26expandedLayoutViewportSizeERKNS_10LayoutSizeES3_d) +STUB( + "bMzulj1k0io", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEC2Ev) +STUB("bN+tzQQXlw4", _ZNSt9basic_iosIwSt11char_traitsIwEED1Ev) +STUB( + "bN7nTHBPrhw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEEC1ERKSA_) +STUB( + "bN8J81DSvZE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEE5resetEPS9_) +STUB("bNAnspllfsc", _ZN4IPMI4impl11SessionImpl11getUserDataEv) +STUB( + "bNBS7Lu6Scg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEC2EPKS8_) +STUB( + "bND5qXiO8zY", + _ZN3sce7Toolkit2NP2V28Matching9getWorldsERKNS3_7Request9GetWorldsEPNS2_4Core8ResponseINS3_6WorldsEEE) +STUB("bNEkbk6OnaM", _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15Error7setCodeERKi) +STUB("bNFLV9DJxdc", _Atomic_compare_exchange_weak_8) +STUB( + "bNFO4edLiKE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "bNIMdBi2810", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEE11get_deleterEv) +STUB( + "bNQpG-eKogg", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERd) +STUB("bNSV94fJLcQ", mono_exception_from_token) +STUB( + "bNUYTkumhcw", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody6toJsonERNS_4Json5ValueEb) +STUB( + "bNXHUxWfIck", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToSendGameSessionMessage13isInitializedEv) +STUB("bNeY0cKkjBM", _ZNK7WebCore20ResourceResponseBase22includeCertificateInfoEv) +STUB("bNfAipaWlCo", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredTeamsEEC2Ev) +STUB("bNfhkICjfEk", WKBundlePageGetPageZoomFactor) +STUB("bNjegmItHuk", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy15TrophyPackGroupEEC1Ev) +STUB( + "bNlhAOwQqRM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEaSERKS9_) +STUB("bNoqBCwrN+Q", _ZN3WTF8fastFreeEPv) +STUB("bNpTASpIGNY", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product11unsetRatingEv) +STUB("bNyElkySWAM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEaSERKS7_) +STUB( + "bNyTO-ACdB4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEmmEi) +STUB("bO2C3hCiKe8", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed12SharedVideosEED2Ev) +STUB("bO6mxOcSLbs", mono_aot_System_IO_Compression_FileSystemunwind_info) +STUB( + "bO8u66JxRhY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEEaSERSA_) +STUB( + "bOAkUsbjmJA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEC1Ev) +STUB( + "bODVKRsZ0x4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEC2ERS7_) +STUB("bOJq2oGERXI", g_list_free) +STUB( + "bOKBoLueWFk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEptEv) +STUB("bORoxqBlkmc", _ZN3JSC11SymbolTableC1ERNS_2VME) +STUB("bOmumJHued8", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetailC1ERS5_) +STUB("bOrGTnL22O4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEC1Ev) +STUB("bOutoP6GO6M", _ZNK7WebCore12ChromeClient18overrideScreenSizeEv) +STUB("bOwxkVkQ5uA", _ZN7WebCore22GraphicsLayerTransformC2Ev) +STUB("bP+cqFmBW+A", scePthreadMutexSetyieldloops) +STUB("bP1QOJouxCM", _ZN7WebCorelsERN3WTF10TextStreamERKNS_15FilterOperationE) +STUB("bP4KYq-TUpo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEEC1ERS9_) +STUB("bP7tkWG4O-U", _ZN12video_parser5vpcom6StringC1Ev) +STUB( + "bP8GfkHY72A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEE5resetEPS6_) +STUB( + "bPDQJgOLJgc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "bPIbKXARdJY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEED1Ev) +STUB("bPNEURWq-1w", _ZN12video_parser18cMp4FFLHndlManagerC1EPKc) +STUB("bPNJIPCmGqI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEEC1Ev) +STUB( + "bPQ7r7kww0c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEC1EPNS2_10LibContextE) +STUB("bPQqCte+e9g", _ZN7WebCorelsERN3WTF10TextStreamENS_17ScrollingNodeTypeE) +STUB("bPTRIm6PRDU", JVM_GetCPMethodModifiers) +STUB("bPUMNZBqRqQ", _ZTSN10__cxxabiv117__pbase_type_infoE) +STUB("bPb84uVYRL4", + _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetail13isInitializedEv) +STUB( + "bPnfLmm+1UA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEE11get_deleterEv) +STUB("bPrfkBHXJFk", _ZN3sce3pss4core8graphics14NativeGraphics26AddPostSwapBuffersCallbackEPFvPvES4_) +STUB("bPslYp82hks", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEED1Ev) +STUB( + "bPtMdnjinVM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE6finishEv) +STUB("bPtdppw1+7I", _Zero) +STUB("bPu4g9cnHTE", _ZN3JSC11FuzzerAgent13getPredictionEPNS_9CodeBlockERKNS_10CodeOriginEm) +STUB( + "bPvFFzX2N7g", + _ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_errorFactory7destroyEPNS3_17PsnWebError_errorE) +STUB("bPvFWN2jotk", __sanitizer_maybe_open_cov_file) +STUB("bQ3WsJ35VHI", _ZN25MmsFileUpdaterFsOperation8copyFileEmj) +STUB("bQ6p+FqArAg", _ZN3JSC8SubspaceD0Ev) +STUB( + "bQBwFgCDrzs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEEC1Ev) +STUB( + "bQHx4FLLfqs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEEcvbEv) +STUB("bQOlflF2R5I", _ZN4IPMI6ServerD1Ev) +STUB( + "bQR7rDuUtk4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEppEv) +STUB("bQTCv6mnCzA", mono_signbit_double) +STUB("bQVd5YzCal0", sceGnmSetPsShader) +STUB( + "bQZjwvA8l3Q", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEeqERKS9_) +STUB("bQdate8ybz8", _ZNK7WebCore26IdentityTransformOperation5cloneEv) +STUB("bQe7UHSllUg", _ZN3sce7Toolkit2NP2V27Session7Request32DisplayReceivedInvitationsDialogD2Ev) +STUB( + "bQh0h2PF49M", + _ZN9Inspector25DatabaseBackendDispatcherC2ERNS_17BackendDispatcherEPNS_32DatabaseBackendDispatcherHandlerE) +STUB( + "bQkJ5GevWl4", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead23setLocalizedSessionNameERKNS1_6Common12IntrusivePtrINS3_15LocalizedStringEEE) +STUB( + "bQkU0tCHVOI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEC2EPKS8_) +STUB( + "bQm6LtH-Dfg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "bQvSyDp1Igo", + _ZN7WebCore13MIMETypeCache15initializeCacheERN3WTF7HashSetINS1_6StringENS1_24ASCIICaseInsensitiveHashENS1_10HashTraitsIS3_EEEE) +STUB( + "bQz9TQKE5Mc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEED2Ev) +STUB("bR0UooC+SX8", RSA_private_encrypt) +STUB("bR3lFCbl2ow", goby_FreeLinkList) +STUB( + "bR5RpSOBC24", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEC2Ev) +STUB("bR79QC25WUs", + _ZN15AbstractStorage15FacebookStorage13GetRootFolderEPSt10shared_ptrINS_6FolderEE) +STUB( + "bR7wZYQhmZo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEixEm) +STUB("bRCLw49N4hE", sceShellCoreUtilMountHddForRestore) +STUB( + "bRCdtixujIU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEED1Ev) +STUB("bRD04jjEhv0", SHA384_Update) +STUB( + "bREp0oAXLsc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE5eraseENS2_8IteratorIS9_EERSC_) +STUB("bREqDgXlqDU", _ZN3sce4Json6String6appendEPKcm) +STUB("bRIMZa1yg-U", + _ZN7WebCore21SerializedScriptValueC1EON3WTF6VectorIhLm0ENS1_15CrashOnOverflowELm16EEE) +STUB( + "bRIx4pwUzJ4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEppEv) +STUB("bRMpa4zkung", _ZN7WebCore11DisplayList9TranslateD1Ev) +STUB("bRN9BzEkm4o", _Gentime) +STUB("bRY94fBVQ3Y", ucln_registerCleanup_67) +STUB("bRYVEmQhrGs", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEEdeEv) +STUB("bRagxWRXORw", _ZN3sce7Toolkit2NP2V29Messaging7Request19SendGameDataMessageC2Ev) +STUB( + "bRf59fYT1nI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE5beginEv) +STUB("bRfRiFTZ-ls", sceVdecwrapCreateDecoder) +STUB( + "bRsXEGWWBn4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEptEv) +STUB("bRuD-8BJ4nI", _ZN7WebCore16TrackPrivateBase13willBeRemovedEv) +STUB("bRuUeIPXFDM", sceDbgKeyboardInit) +STUB("bRujIheWlB0", _ZSt14_Throw_C_errori) +STUB( + "bS+ZjhYyo3Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEaSERKS7_) +STUB( + "bS-6RdIixeg", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "bS9OlZuApNM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("bSCFvdnfr8w", _ZN12video_parser5vpcom8datetime8DateTimeC2Ettttttj) +STUB("bSCbtBzQnEA", sceBgftServiceIntDebugDownloadRegisterPkg) +STUB("bSDxEpGzmUE", rfork_thread) +STUB("bSJFzejYrJI", sceGnmGetDbgGcHandle) +STUB("bSKEi2PzzXI", sceCameraSetSaturation) +STUB( + "bSN53yLaaaY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEED1Ev) +STUB("bSNRor7CGkA", uprv_parseCurrency) +STUB("bSO8IdVg4Bo", JVM_ConstantPoolGetMemberRefInfoAt) +STUB( + "bSOzeEWZzoI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEE7get_refEv) +STUB( + "bSRcF+8d6dk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEC1Ev) +STUB("bSWMLIlnQrg", sceRazorGpuInit) +STUB( + "bSWQN2V00Lk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE8pushBackERKS8_) +STUB( + "bSWcaeKo1+U", + _ZN3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBody10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_21PlayerForTicketCreateEEEEE) +STUB( + "bSXMOk4vi+g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "bSZ05-LejOs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEE3getEv) +STUB( + "bSeEzw+OvgU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEE3getEv) +STUB("bSej+c5+NB4", + _ZNK3sce2Np9CppWebApi11Matchmaking2V127ListUserTicketsResponseBody12ticketsIsSetEv) +STUB("bSgY14j4Ov4", _Wctomb) +STUB("bSi+38LQtM0", _ZN3sce7Toolkit2NP2V28Matching7Request10CreateRoom24DEFAULT_DISPLAY_PRIORITYE) +STUB( + "bSmorxADyWY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEdeEv) +STUB( + "bSr3cRnwLfM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "bSsE1hCh2l8", + _ZN3JSC12RegExpObject17defineOwnPropertyEPNS_8JSObjectEPNS_14JSGlobalObjectENS_12PropertyNameERKNS_18PropertyDescriptorEb) +STUB("bT+++4a05Yw", _ZN7WebCore21NetworkStorageSession14destroySessionEN3PAL9SessionIDE) +STUB("bT-h0Odk4PY", uhash_puti) +STUB("bTAC2dZcnqM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEED2Ev) +STUB("bTAVnj+KOlA", _Z32sceGpuDebuggerRegisterShaderCodePKN3sce3Gnm16LsStageRegistersEjPKc) +STUB("bTCOUzAv6FQ", _ZN3sce2Np9CppWebApi6Common6VectorIiE5eraseENS2_8IteratorIiEERS6_) +STUB("bTE6q+IwNKU", sceAvControlChangeOutputMode) +STUB("bTEm3XhQmzk", _ZN3sce2Np9CppWebApi7Matches2V121ResponsePlayerResults8setScoreERKd) +STUB("bTKeeOGemO8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEC1Ev) +STUB("bTMmuXgrk-4", _ZNK7WebCore20ResourceResponseBase27cacheControlContainsNoCacheEv) +STUB("bTQcNwRc8hE", _ZNSt8ios_base4InitC2Ev) +STUB("bTRy+CEQNX8", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE8capacityEv) +STUB( + "bTWY1XtdZkc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEC1Ev) +STUB("bTXRAZZgkQk", sceBgftServiceIntDownloadGetPlayGoProgress) +STUB("bTZjr816ME4", + _ZN3sce2Np9CppWebApi11UserProfile2V111PresenceApi28ParameterToGetBasicPresencesC1Ev) +STUB( + "bTaEyd6uzzE", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations9setfieldsENS1_6Common12IntrusivePtrINS6_6VectorINS6_6StringEEEEE) +STUB( + "bTad7++SvxM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("bTanQAIEKH4", _ZN22MmsMdCommonFsOperation12createBufferEj) +STUB( + "bTeMP7vQP-Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEED2Ev) +STUB( + "bTfBGizj3kU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEE3getEv) +STUB("bTiqHU4KAaw", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TSS7TssDataEED2Ev) +STUB("bTmtBchzFps", sceShellCoreUtilGetPbtcUserInfoList) +STUB("bTqbGNsvALM", _ZN7WebCore4Node9normalizeEv) +STUB("bTve3ZTFj1U", _ZN3JSC14createURIErrorEPNS_9ExecStateERKN3WTF6StringE) +STUB("bTyn7a6o66g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEEptEv) +STUB("bU-AmZzzm3g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEC2Ev) +STUB("bU0QXekwNes", cairo_set_source) +STUB( + "bU0llzXLpXo", + _ZN7WebCore5Frame24searchForLabelsAboveCellERKN3JSC4Yarr17RegularExpressionEPNS_20HTMLTableCellElementEPm) +STUB("bU1sC+WNEhE", JNU_ThrowNullPointerException) +STUB("bU30lh8YpkE", FcPatternAddString) +STUB("bU3S1OS1sc0", _ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2ERKSt8_Locinfom) +STUB("bU5zGRMoeKM", _ZN3sce2Np9CppWebApi14SessionManager2V127GetGameSessionsResponseBodyD1Ev) +STUB("bU89EJ+j9f0", sceContentExportFromFileWithContentIdList) +STUB( + "bU8kj+qSq8E", + _ZN9Inspector28DOMDebuggerBackendDispatcher21removeEventBreakpointElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "bUCljXvL7tM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEEptEv) +STUB("bUCul5MjZcQ", _ZN7WebCore11DisplayList4SaveC1Ev) +STUB("bUCx72-9f0g", _ZNK3sce16CommonDialogUtil6Client10isCloseReqEv) +STUB( + "bUKDC6pac24", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEC2EPKS8_) +STUB("bUNHcd7Ia0U", sceCesSJisGetCode) +STUB("bUNIGb3Qom4", _ZNK3JSC12StackVisitor5Frame8toStringEv) +STUB("bUOMWDa2igw", _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBodyD1Ev) +STUB( + "bUQ2qX5HpGQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("bUQLE6uEu10", _ZNSt9_Num_base8is_exactE) +STUB( + "bUTjOPwzOeQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEC2EPNS2_10LibContextE) +STUB( + "bUabUBu-bIs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEE11get_deleterEv) +STUB("bUd2puZ74kI", _ZL27dependent_exception_cleanup19_Unwind_Reason_CodeP17_Unwind_Exception) +STUB("bUeJF8YoKIg", + _ZN7WebCore12SettingsBase23setPictographFontFamilyERKN3WTF12AtomicStringE11UScriptCode) +STUB( + "bUgHY9MrJw4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEED1Ev) +STUB("bUgSNBjKk0E", mono_win32_compat_CopyMemory) +STUB("bUihN9veggg", _ZN3sce7Toolkit2NP2V27Session8Sessions8deepCopyERKS4_) +STUB("bUkfb442U2A", _ZN3sce7Toolkit2NP2V26Friend16FriendsOfFriendsC1ERKS4_) +STUB("bUmDv1Bd52I", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE5clearEv) +STUB( + "bUncbZoTit0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEppEv) +STUB("bUw2Go-rxtE", _ZN3sce4Json5Value10s_nullboolE) +STUB("bUwn05J4BZc", _ZN7WebCore16HTMLTableElement13createCaptionEv) +STUB("bUxXBzkgul0", glCullFace) +STUB( + "bV+0Y+-iuqc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEEC2EPS8_PNS2_10LibContextE) +STUB("bV+MAY-cz5I", _ZN3WTF17charactersToFloatEPKhmPb) +STUB("bV+fwNnfGg8", _ZNK3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error7getCodeEv) +STUB( + "bV3tGH6TG7w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEEC1ERSA_) +STUB("bVIEJr0rwsw", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfileD2Ev) +STUB("bVJ-1ExjYco", + _ZNK3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody13sortModeIsSetEv) +STUB("bVTMB9kADRA", __sanitizer_cov_init) +STUB( + "bVXsgm2pAaI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "bVZo98abRQE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEC1Ev) +STUB("bVaeSdTLaD8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEEptEv) +STUB("bVdAHZeXw2Q", _ZNK3sce2np13JsonArrayImpl7GetItemEi) +STUB( + "bVgSuxcYZKg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEdeEv) +STUB("bVtF7v2uqT0", sceAppContentRequestPatchInstall) +STUB("bW+iY4EnrNY", JSValueToBoolean) +STUB( + "bW1blArePxs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEneERKS9_) +STUB( + "bW3WshEIgsA", + _ZN9Inspector20DOMBackendDispatcher6createERNS_17BackendDispatcherEPNS_27DOMBackendDispatcherHandlerE) +STUB("bW7aTUNT5sQ", _ZN3sce7Toolkit2NP20CreateSessionRequestC1Ev) +STUB("bWHwovVFfqc", _ZN10__cxxabiv120__si_class_type_infoD2Ev) +STUB("bWJrDRxsfaQ", + _ZN7WebCore21DiagnosticLoggingKeys42wastedSpeculativeWarmupWithRevalidationKeyEv) +STUB("bWMZA7rT5-c", + _ZN3sce2Np9CppWebApi14SessionManager2V113PlayerSessionC1EPNS1_6Common10LibContextE) +STUB("bWPSP8A71Rk", _ZN3WTF13MetaAllocatorD0Ev) +STUB("bWPuW6TnMjk", sceVdecCoreAnalyzeStream) +STUB( + "bWRGPoXxm4M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEC2Ev) +STUB("bWVxyOJYjZw", _ZN7WebCore20SharedBufferDataViewC2ERKS0_) +STUB("bWYhKmtyu1M", _ZN7WebCore8Settings44setClientCoordinatesRelativeToLayoutViewportEb) +STUB( + "bWeDH1BuZwk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEdeEv) +STUB( + "bWeozuwthEc", + _ZN9Inspector21InspectorRuntimeAgent14getBasicBlocksERN3WTF6StringERKS2_RNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime10BasicBlockEEENS1_13DumbPtrTraitsISC_EEEE) +STUB("bWg-a8croPo", _ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEEC2Ev) +STUB("bWgrBvwgod0", mono_g_hash_table_new_type) +STUB( + "bWilsNMwgf4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB( + "bWl5Rv5fO0I", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEaSERKS9_) +STUB("bWq0yN2dxGA", _ZN3JSC19SourceProviderCacheD1Ev) +STUB( + "bWqJhhcQX8U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEEdeEv) +STUB("bWzx-teZAOo", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession17joinDisabledIsSetEv) +STUB( + "bX02IwVAKVw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEC2Ev) +STUB( + "bX0K9aD604Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEppEi) +STUB("bX4H+sxPI-o", sceImeDialogForceClose) +STUB("bX5IbRvECXk", sceGnmDingDong) +STUB("bXBLPMTtCUA", _ZN3sce2Np9CppWebApi13InGameCatalog2V512ImageFactory7destroyEPNS3_5ImageE) +STUB("bXKJvpaEKpk", WKHTTPCookieStoreSetCookieForHostname) +STUB( + "bXM0CGQXkMg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "bXNny69-cEw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEC2EPNS2_10LibContextE) +STUB( + "bXOd7-gcfQ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEC1EPNS2_10LibContextE) +STUB("bXOfQbHVxLI", _ZN7WebCore24CoordinatedGraphicsLayer13addChildAboveEPNS_13GraphicsLayerES2_) +STUB( + "bXPCpI+NrlA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEptEv) +STUB( + "bXVfWnAMXl0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEED2Ev) +STUB("bXW4ce-oHPA", + _ZN15AbstractStorage13TwitterFolder12RemoveFolderERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) +STUB("bXWk2plwD-I", _ZN3sce6Canvas6handleEh) +STUB("bXXX9D+hY+I", + _ZN3sce2Np9CppWebApi14ConnectAccount2V221PSNError_errorFactory7destroyEPNS3_14PSNError_errorE) +STUB("bXZ6r1qeASU", _ZN7WebCore6JSFile9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("bXdcBn6G0jg", _ZN7WebCore21DiagnosticLoggingKeys27synchronousMessageFailedKeyEv) +STUB("bXg93X9uhro", wcstof.fpi0) +STUB("bXh5fNTQcJ4", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead22getDisableSystemUiMenuEv) +STUB("bXhOOnwplgg", _ZN7WebCore19ResourceRequestBase17setAsIsolatedCopyERKNS_15ResourceRequestE) +STUB( + "bXjWSQyarLM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "bXo47we0qeU", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions11unsetfieldsEv) +STUB("bXsH+sG6jfg", delegate_virtual_invoke_19_p) +STUB("bXupa3+NYIs", cairo_font_face_get_user_data) +STUB( + "bXv70fjKs8g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEED1Ev) +STUB("bXxCiqp6RrI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEaSERS7_) +STUB("bXxVDD3VuWc", sceKernelReboot) +STUB("bXyHGhBXv-0", _ZN3sce7Toolkit2NP23ModifySessionAttributesC2Ev) +STUB( + "bXzCNfXBxDQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEptEv) +STUB("bY-05Dydbog", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE7popBackEv) +STUB("bY-PO6JhzhQ", close) +STUB("bY8uAdN04as", sceClKernelCreateEventFlag) +STUB("bY9Y0J3GGbA", _ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1Em) +STUB("bY9ee3Gxr+4", _ZN4Manx13WorkQueueImpl5Timer4fireEv) +STUB("bYCnxLexU7M", sceSaveDataDebugCleanMount) +STUB("bYGUHA9NzMM", _ZN3NTF15DNSPrefetchImplD1Ev) +STUB("bYI-b31XduA", _ZN7WebCore18PrewarmInformationC2Ev) +STUB("bYKYwPaS8Hw", _ZNK7WebCore4Node16computeNodeIndexEv) +STUB( + "bYKqDYYoxzk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEC2ERKS7_) +STUB( + "bYMqz-GdCqw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE5beginEv) +STUB("bYOprenBXjE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEcvbEv) +STUB( + "bYX6xW6HyGs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEEC1Ev) +STUB("bYZVoiBJvwE", mono_domain_free) +STUB("bYZZeyDKrJA", ucptrie_openFromBinary_67) +STUB("bYb3AO5a-J4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEE7add_refEv) +STUB("bYiXu772uUo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V114SearchOperatorEEppEv) +STUB("bYmGOdgqDKc", WTFCrash) +STUB( + "bYmdtFn-IHE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEEdeEv) +STUB("bYmi7DbWsvY", _ZN12video_parser5vpcom3rtc12TickAddYearsEPmPKmi) +STUB( + "bYmn6-zt5dQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEED0Ev) +STUB( + "bYnRjyPVRIg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEC2EPS6_PNS2_10LibContextE) +STUB( + "bYosR58n3B4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "bYs8IsRNDw4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "bYt5imaynN4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEptEv) +STUB("bYuGUBuIsaY", sceGameLiveStreamingStopSocialFeedbackMessageFiltering) +STUB("bYwPc+KsfSw", _ZN3sce2Np9CppWebApi6Common6StringeqEPKc) +STUB( + "bYylJEfJSNw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEC1Ev) +STUB( + "bZ+lKHGvOr8", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERt) +STUB( + "bZ+v8HsIEi8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("bZ0PVaXm2iw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEEC2EPNS2_10LibContextE) +STUB( + "bZ0oEGQUKO8", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE9_GetffldxEPcRS3_S6_RSt8ios_basePi) +STUB("bZ2mBvP79d8", sceNpIntRegisterGamePresenceCallback) +STUB( + "bZ7jsE6bEfs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEC2Ev) +STUB("bZC-mkEEBmI", sceCesMbcToUtf16le) +STUB( + "bZGh0ikos7A", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession19setLeaderPrivilegesERKNS1_6Common6VectorINS5_6StringEEE) +STUB( + "bZPddwZ9N1I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEEaSERKSA_) +STUB("bZQtd0o41fU", mono_btls_pkcs12_get_cert) +STUB("bZT8JIrrg3I", ubrk_countAvailable) +STUB("bZVYOH83P8g", _ZN7bmalloc3api23decommitAlignedPhysicalEPvmNS_8HeapKindE) +STUB( + "bZVohbbA+ks", + _ZN3JSC8JSObject24putDirectBuiltinFunctionERNS_2VMEPNS_14JSGlobalObjectERKNS_12PropertyNameEPNS_18FunctionExecutableEj) +STUB( + "bZWbiCK-KJY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEED1Ev) +STUB("bZYKXT+p6Rw", _ZN3WTF12refIfNotNullI14_cairo_surfaceEEvPT_) +STUB("bZYqFlUVPCY", FTA_Export_Module_autofitter) +STUB("bZd1LyyDb6E", _ZN3JSC7Symbols25deletePropertyPrivateNameE) +STUB( + "bZdwXVCY4R8", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeader35setxPSNSESSIONMANAGERNONPSNCALLERIDEPKc) +STUB( + "bZenfR50V8s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("bZh-s2ICyus", rgctx_fetch_trampoline_rgctx_45) +STUB("bZiDwa0M3iQ", _ZN3WTF11Persistence7Encoder6encodeEi) +STUB( + "bZkGgiVUPm0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "bZmCZqy2ulE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEppEi) +STUB("bZqlswX9xv4", scePlayReadyDebugPrintf) +STUB("bZtTcC6OQ1M", GCC_except_table272) +STUB( + "bZwmrPfViMk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE5emptyEv) +STUB("bZx+FFSlkUM", _ZdlPvSt11align_val_t) +STUB("ba-1NKWEdjU", WKPreferencesGetAllowMediaContentTypesRequiringHardwareSupportAsFallback) +STUB( + "ba0If1Ku3jw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEC1EPS6_PNS2_10LibContextE) +STUB( + "ba2H959VLNg", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13integer3IsSetEv) +STUB( + "ba2h-X3-szM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("ba78kVluok4", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate11getPerGenreEv) +STUB( + "ba7dP9kp7kg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEptEv) +STUB("baBvKjivwxQ", _ZN4Manx7RunLoop4initEv) +STUB("baCQrYqj+MA", Java_com_sony_bdjstack_org_bluray_vfs_VFSManagerImpl_proxyEnableClip) +STUB( + "baD+O944dgk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEED1Ev) +STUB( + "baDcxL3GLBo", + _ZN3JSC13ConsoleClient19printConsoleMessageENS_13MessageSourceENS_11MessageTypeENS_12MessageLevelERKN3WTF6StringES7_jj) +STUB( + "baEjAPdzz0g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEppEv) +STUB("baFF-vYJE1w", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE5eraseENS2_8IteratorIS6_EERS9_) +STUB("baFf7PJFNTw", JVM_SetLength) +STUB("baKWVDuKUYY", _ZN3sce7Toolkit2NP2V28Commerce7Request13GetContainersD1Ev) +STUB("baMJxqWo4mw", mono_aot_Sce_Vshmethod_addresses) +STUB( + "baMTsDLOwyw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEC1EPNS2_10LibContextE) +STUB("baMm9gQx3lA", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE4sizeEv) +STUB("baQO9ez2gL4", sceAmprCommandBufferReset) +STUB( + "baTQyLBybyI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE15receiveResponseEv) +STUB( + "baVZ+lmzU2E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEppEi) +STUB("baW6JRK9qhU", _ZN12Mp4RetrieverD2Ev) +STUB("baWyExNVtvs", _ZN3WTF21MemoryPressureHandler26triggerMemoryPressureEventEb) +STUB("baYgb8Y5pic", mono_gchandle_new) +STUB( + "baZCtl0nZX8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("baaK7ef7Ec4", mono_btls_ssl_get_peer_certificate) +STUB("bab+Dmm7bEc", _ZNK3sce2Np9CppWebApi7Matches2V111AddedPlayer11teamIdIsSetEv) +STUB( + "bahysGIj4SI", + _ZN9Inspector26DatabaseFrontendDispatcher11addDatabaseEN3WTF6RefPtrINS_8Protocol8Database8DatabaseENS1_13DumbPtrTraitsIS5_EEEE) +STUB( + "ban-zz2BbNk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEppEv) +STUB( + "banNSumaAZ0", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERy) +STUB( + "bapwU9toJgI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEppEi) +STUB("bau1H4TgtSU", mono_aot_System_Coremethod_addresses) +STUB("bavutYJwIzY", jpeg_fdct_4x4) +STUB( + "bayfdTWenXc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEmmEv) +STUB( + "bb-T5NMDPck", + _ZN15AbstractStorage14StorageManager16get_storage_nameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB( + "bb-y8JFW2Do", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("bb-zDo8J0Fo", sceAppInstUtilAppInstallCloudGame) +STUB( + "bb09CrIV7eM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEE7get_refEv) +STUB("bb0PBdvX0e8", _ZN3sce7Toolkit2NP2V212NetworkUtils16NetStateDetailedD2Ev) +STUB("bb0cXm58Xl0", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities15ActivityFactory7destroyEPNS4_8ActivityE) +STUB( + "bb1ykMvgBw8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE8capacityEv) +STUB("bb57M7j3oks", mono_aot_System_Transactionsunbox_trampoline_addresses) +STUB("bb5o-YHu8vM", _ZN9Inspector27AnimationFrontendDispatcher13trackingStartEd) +STUB("bb5sduKHOTQ", sceFsMountDownloadData) +STUB( + "bbC4CVfLVzc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE8capacityEv) +STUB("bbCj+yciZEg", WKGrammarDetailCopyGuesses) +STUB("bbFueFP+J4k", sceAgcDcbSetPredication) +STUB("bbHSby-JO6w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE3endEv) +STUB("bbIGbc1EULI", + _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest20unsetChildActivitiesEv) +STUB( + "bbKHP40ks+k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE7popBackEv) +STUB( + "bbLD8+9Tt58", + _ZN3JSC9Structure18willStoreValueSlowERNS_2VMENS_12PropertyNameENS_7JSValueEbNS_17InferredTypeTable17StoredPropertyAgeE) +STUB("bbLfbPy-xzw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE5emptyEv) +STUB( + "bbOxz1pHDQI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("bbTPWQlnwwA", _ZN3sce7Toolkit2NP2V28Matching6WorldsD1Ev) +STUB("bbUQuMWY2QI", WKViewSetACMemoryInfo) +STUB("bbZ0uWzshUA", + _ZN3sce2Np9CppWebApi7Matches2V123RequestTeamMemberResultC1EPNS1_6Common10LibContextE) +STUB( + "bbaPPDA7kOM", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersC2Ev) +STUB( + "bbc9x3jc5OM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot8setgroupENS5_5GroupE) +STUB("bbcJa87UkyM", WKPointGetTypeID) +STUB("bbcgBO5kv5k", uspoof_checkUTF8_67) +STUB("bbepJzDv2h8", _ZN11GvMp4Parser6Common11Utf8ToUtf16ERKSsPSbIwSt11char_traitsIwESaIwEE) +STUB("bbkcYO2xEa8", + _ZN7WebCore37computeFreshnessLifetimeForHTTPFamilyERKNS_16ResourceResponseEN3WTF8WallTimeE) +STUB("bbqzRrAl3Oo", _ZN3JSC7Symbols24flatIntoArrayPrivateNameE) +STUB( + "bbtIn3qVrGQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEeqERKS9_) +STUB( + "bbu98oUkpnM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("bbuFLemjwRA", goby_FreeNodeList) +STUB( + "bbwDkAe64-w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEE5resetEPS9_) +STUB( + "bc1X8QxgHbM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEC2ERS7_) +STUB("bcCyjHN5sn0", sceGameUpdateDeleteRequest) +STUB("bcDv9YUIolw", _ZN4Manx11MediaPlayer10copyBufferEPvPKvj) +STUB( + "bcGNHkqa-HA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("bcH5EnFE2xY", _ZNK3sce4Json5Array5beginEv) +STUB( + "bcHZuYtUX1M", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE8capacityEv) +STUB("bcIyPgrgvtw", rgctx_fetch_trampoline_mrgctx_38_p) +STUB("bcM5xfX2SeA", FT_Set_Transform) +STUB( + "bcONo7LipOM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE21intrusive_ptr_sub_refEPS7_) +STUB("bcPB2rnhQqo", sceNpTusGetMultiSlotVariableAsync) +STUB("bcQ6Ua1Ngvs", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEED1Ev) +STUB("bcU-5Fszdus", Java_java_util_zip_ZipEntry_initFields) +STUB("bcUyn0Hx3jk", Java_sun_awt_DownloadedFont_loadFromMemoryInit) +STUB( + "bcVmN10Lr-k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEE7get_refEv) +STUB( + "bcXnhhFyVAA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEE5resetEPS9_) +STUB( + "bcYsKVU6Gxo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEEneERKS7_) +STUB("bcZghN7izf0", _ZN3JSC33throwTerminatedExecutionExceptionEPNS_9ExecStateERNS_10ThrowScopeE) +STUB("bcoVwcBjQ9E", sceNpScoreRecordGameData) +STUB("bcolXMmp6qQ", sceAppContentTemporaryDataUnmount) +STUB( + "bcp-fYHlHik", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("bcplMKh-3pw", mono_aot_Sce_Vsh_Db_Sharedmethod_addresses) +STUB( + "bcqsPolZQaY", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities26GetUsersActivitiesResponseC1EPNS1_6Common10LibContextE) +STUB("bd-3fcfIMCk", _ZN7WebCore17JSHTMLLinkElementC2ERKS0_) +STUB("bd0k19pL-YM", _ZN3JSC17MarkingConstraintD2Ev) +STUB( + "bd890AWW+lE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEE7add_refEv) +STUB("bdE4ZOXsBks", _ZN7WebCore11MediaPlayer19nextBestMediaEngineEPKNS_18MediaPlayerFactoryE) +STUB("bdEXa0zZaIY", mono_bitset_set_all) +STUB("bdIbC3cUOhc", mono_aot_System_Resources_ResourceManagerplt_end) +STUB( + "bdJWWpNR9eM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE10setContextEPNS2_10LibContextE) +STUB("bdJdX2bKo2E", sceUserServiceSetGlsHintFlag) +STUB("bdLj8YKhyTw", + _ZN7WebCore14FrameSelection6moveToERKNS_15VisiblePositionES3_NS_14EUserTriggeredE) +STUB("bdUs9RrNA2Y", mono_aot_Mono_Securityjit_code_start) +STUB("bdVrqz-l+pU", _ZN3JSC17CommonIdentifiers18appendExternalNameERKNS_10IdentifierES3_) +STUB( + "bdixUgp0e+w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEEC2Ev) +STUB("bdlhvSyoS3s", uprv_strnicmp) +STUB("bdqdvIkLPIU", sceGnmGetResourceType) +STUB("bdqo3+YFtOQ", WKContextGetPluginSiteDataManager) +STUB("be2Rk5NH1v0", _ZN15AbstractStorage15FacebookStorageD1Ev) +STUB("be71gob1ILs", _ZN3sce7Toolkit2NP2V26Friend6FriendD2Ev) +STUB("be71qBQEvVQ", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12FriendsRanksEE3setEv) +STUB("beAsSTVWVPQ", sceRudpSetMaxSegmentSize) +STUB( + "beCjYrW7qYQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEC2EPS6_PNS2_10LibContextE) +STUB( + "beDnU2QSUQA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEptEv) +STUB("beHxaK7HT5s", _ZN7WebCore13AXObjectCache10rootObjectEv) +STUB( + "beI6iLGELZA", + _ZN3JSC7JSArray18getOwnPropertySlotEPNS_8JSObjectEPNS_14JSGlobalObjectENS_12PropertyNameERNS_12PropertySlotE) +STUB( + "beI73bkAA7E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEE7get_refEv) +STUB("beOmuqj8CNI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEC2ERS7_) +STUB("bePC0L0vQWY", sceFontStyleFrameUnsetScale) +STUB("bePQcTb6YSY", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIdEeqERKS4_) +STUB("beQ90Sx6c8g", sceShellCoreUtilGetGpuLoadEmulationMode) +STUB( + "beQPovWSJW0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE7reserveEi) +STUB("beRjXBn-z+o", sceNetSend) +STUB("beY9ZJv5-dU", glGetAttribLocation) +STUB("beiig8VZwso", __sancov_default_options) +STUB( + "benkAKsODV0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEeqERKS9_) +STUB("besRQwOMIz0", _ZN3sce7Toolkit2NP2V23TUS16FriendsVariablesC1ERKS4_) +STUB("bevVB2XSREQ", delegate_virtual_invoke_imt_29_p) +STUB("beyeyxXerNM", _ZN3sce7Toolkit2NP2V28Matching12Notification14NewRoomMessage8deepCopyERKS5_) +STUB( + "bf1J1ElQV1A", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12string6IsSetEv) +STUB("bf54N7AEBTc", + _ZN7WebCore21DiagnosticLoggingKeys46successfulSpeculativeWarmupWithRevalidationKeyEv) +STUB( + "bf8VCb77jns", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE21intrusive_ptr_sub_refEPS9_) +STUB("bfBDausTRoY", mono_aot_Sce_Vsh_Friendunwind_info) +STUB("bfDcj2PJL6g", sceSystemLogger2Terminate) +STUB("bfEQm8gos5s", _ZN7WebCore6Path2D6createERKNS_4PathE) +STUB( + "bfLrxgL9GAg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEmmEi) +STUB( + "bfS0GqebQxM", + _ZN3sce2Np9CppWebApi14SessionManager2V125RequestGameSessionFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_18RequestGameSessionEEE) +STUB( + "bfUkvEBxvE8", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayer28setxPsnAcceptPlatformNamePs5ENS5_25XPsnAcceptPlatformNamePs5E) +STUB("bfdumhvAP08", mono_btls_x509_store_ctx_get_chain) +STUB("bfepB0SUvFk", mono_btls_error_peek_error) +STUB("bfgo2Otmqz0", sceFiosOpIsDone) +STUB("bfgzXZxYkpw", _ZN7WebCorelsERN3WTF10TextStreamENS0_9OptionSetINS_13ActivityState4FlagEEE) +STUB("bfoMXnTRtwE", sceNgs2StreamDestroy) +STUB( + "bfoy24Mj6Qw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE7reserveEi) +STUB("bfpnrlIKGlM", il2cpp_method_get_param_name) +STUB("bfunI2KsEys", _ZN7WebCore4Page16stopMediaCaptureEv) +STUB("bfv-Jn4GeDI", ASN1_STRING_get0_data) +STUB( + "bfwL6vkfFng", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "bfy9jvUvjAY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEEC2EPS6_PNS2_10LibContextE) +STUB( + "bfymaKi5Su8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE4sizeEv) +STUB("bg+X3d1K+mU", WKWebsiteDataStoreUpdateBundleIdentifierInNetworkProcess) +STUB("bgAcsbcEznc", __stdinp) +STUB("bgBTWnq6bRU", mono_get_int16_class) +STUB("bgDMMW7d9ow", res_getBinaryNoTrace_67) +STUB("bgEnw75ikh0", rgctx_fetch_trampoline_mrgctx_42_p) +STUB( + "bgR+hS3aaX4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEC2Ev) +STUB("bgVQlvfISLo", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEEC1Ev) +STUB("bgd3ki6qpxU", _ZN9Inspector27PerGlobalObjectWrapperWorldC1Ev) +STUB("bghgkeLKq1Q", sceNetDumpCreate) +STUB("bgj6mxwGOSg", mono_aot_Sce_Vsh_Np_Snsunwind_info) +STUB("bglw6PJL4nw", _ZN3sce4Json6Parser11parseStringERNS0_5ValueERNS0_11InputStreamEPS2_) +STUB( + "bgmNNNwIeJQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("bgn3buIihQA", _ZN12video_parser5vpcom6String18SetFormattedStringEPKwz) +STUB( + "bgnFw5Doyc8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEEC2ERS9_) +STUB("bgnHFMqxYag", u_islower) +STUB("bgpgVem38ao", closeallreg) +STUB( + "bgquF0K7vP8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEC1EPS8_) +STUB("bgrxJM-HmMM", _ZN3WTF13normalizedNFCENS_10StringViewE) +STUB("bgsQE8Nen8c", _ZN3sce2Np9CppWebApi6Common6Binary12appendBinaryEPKvm) +STUB("bgsvxsIp9so", il2cpp_string_chars) +STUB("bgw1d8UPxfQ", _ZN3sce7Toolkit2NP2V212ActivityFeed5StoryC2Ev) +STUB("bgyA6kNaJzk", _ZN3sce7Toolkit2NP2V28Commerce7Request18DownloadListTargetD2Ev) +STUB("bh-UF9BF4zo", _ZN4Manx6CookieD2Ev) +STUB( + "bh4PUC+PSRU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEppEi) +STUB("bh4bKfeivgQ", _ZNK7WebCore22EmptyFrameLoaderClient17overrideMediaTypeEv) +STUB("bh6ZKnM6V+E", sceIduUtilIsAppInstalled) +STUB( + "bh9EOkww6f0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEmmEi) +STUB("bhAoOTDH4Fs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEEC1EPS6_) +STUB("bhAs4QggKkM", _ZN7WebCore20ResourceResponseBase14setHTTPVersionERKN3WTF6StringE) +STUB( + "bhFxMnXk8mg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "bhGNLXaaXxI", + _ZN3sce2Np9CppWebApi11Matchmaking2V120PlayerForReadFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_13PlayerForReadEEE) +STUB( + "bhGvbKWSzAY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE5clearEv) +STUB( + "bhH59jzKP30", + _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container9setRatingERKNS1_6Common12IntrusivePtrINS3_15ContainerRatingEEE) +STUB("bhJIfJ88riw", X509_NAME_get_entry) +STUB("bhNTXZsyzkE", _ZN3WTF31integerToSixCharacterHashStringEj) +STUB("bhWps1nBqiI", + _ZN3sce2Np9CppWebApi14SessionManager2V125ResponseGameSessionPlayer12setAccountIdERKm) +STUB( + "bhZsGUneDX4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEEcvbEv) +STUB("bhbcVkPa6RI", _ZN7WebCore21wordRangeFromPositionERKNS_15VisiblePositionE) +STUB("bhfgrK+MZdk", _ZN10__cxxabiv119__pointer_type_infoD1Ev) +STUB("bhmXbVjzzAU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEEcvbEv) +STUB("bhmZlml6NBs", sceFontGraphicsStructureSurfaceTexture) +STUB( + "bhmm8dHGhs4", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging25GameDataMessageAttachmentEE19setCustomReturnCodeEi) +STUB("bhomgbiQgeo", sceUsbdGetDeviceDescriptor) +STUB("bhz5NSDEBqU", _ZN7WebCore8Settings35setBackgroundShouldExtendBeyondPageEb) +STUB( + "bi+hxCSs7ns", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser15hasmemberFilterEv) +STUB("bi-IagR+u0Y", ures_getString_67) +STUB("bi0WNvZ1nug", scePadIsBlasterConnected) +STUB("bi6QENDuFZk", mono_aot_Sce_Vsh_DiscPlayermethod_addresses) +STUB("bi7s+MGJqII", isobmf_box_getmember_ptr) +STUB("biFFZqN9oGU", _ZN3sce2Np9CppWebApi7Matches2V117LeaveMatchRequestC1EPNS1_6Common10LibContextE) +STUB( + "biHDn8MaFf0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEEC1Ev) +STUB( + "biJ+6XHfE0U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC1Ev) +STUB("biQzMorP6PE", WKPreferencesSetServerTimingEnabled) +STUB( + "biVLfNfcZ4A", + _ZN9Inspector24RuntimeBackendDispatcher18releaseObjectGroupElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "biWNVs-42is", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("biXy-4Tb6iI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEC1ERS7_) +STUB("biY+kcVB5D4", dlsym) +STUB( + "biZCCyH6Iro", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEneERKS9_) +STUB("bicplwTUvSo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE6resizeEj) +STUB( + "bil-UpwEpD0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEdeEv) +STUB("bim4ILT718Q", _ZN7WebCore14SecurityOrigin16createFromStringERKN3WTF6StringE) +STUB("bioGsp74SLM", sceGnmSpmSetMuxRam2) +STUB("biwS5HG-DBY", sceG2PDialogOpen) +STUB( + "bixhkj4r7e8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEEaSERSA_) +STUB( + "bj-QmU5rsDA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEppEi) +STUB( + "bj-YKjHV5IE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEC2Ev) +STUB("bj0oCNjElOE", _ZN3WTF18constantTimeMemcmpEPKvS1_m) +STUB( + "bj4+R2sH1k4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEED1Ev) +STUB("bjAlYWwRTJA", sceContentSearchOpenMetadataByContentId) +STUB("bjAnP-ce-oc", _ZN3sce2Np9CppWebApi11Matchmaking2V19Submitter8fromJsonERKNS_4Json5ValueE) +STUB("bjJTJ2G5VIA", + _ZN3sce2Np9CppWebApi11UserProfile2V125GetPublicProfilesResponseC2EPNS1_6Common10LibContextE) +STUB("bjLQJi9PLbo", u_terminateChars_67) +STUB("bjN6x0j7+bc", ulocimp_getRegionForSupplementalData_67) +STUB( + "bjOKEZBs5Gk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEE11release_refEv) +STUB("bjOWNTqtNCQ", il2cpp_array_element_size) +STUB("bjSu8ElqeWY", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE5beginEv) +STUB("bjVowlg5+Ww", Java_java_lang_StrictMath_expm1) +STUB( + "bjWQrcaLzFE", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS5_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISE_SF_EE) +STUB("bjYjvRCluuw", sceHmdFillDistortionBuffer) +STUB( + "bjZe6XgLws0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEppEv) +STUB("bjbrUuq+lso", _ZN9Inspector26DebuggerFrontendDispatcherdaEPv) +STUB("bjdJEldgxQk", _ZN3sce2Np9CppWebApi6Common6VectorImEixEm) +STUB( + "bjfEp8UbVIs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEE3getEv) +STUB("bjhyOQe0tW4", _ZN7WebCore9HTMLNames8tableTagE) +STUB("bjihETnIlDg", _ZN7WebCore8SVGNames11displayAttrE) +STUB( + "bjmq8dUHIyc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE8copyFromERKS9_) +STUB( + "bjnWD9XgJlg", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE11getResponseERS8_) +STUB( + "bjqFF8irxnY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEEC2ERKSA_) +STUB("bjrzRLFali0", sceNetUsleep) +STUB("bjsL0GMcHMI", _ZN3sce3Xml10SimpleDataC2EPKcm) +STUB( + "bjssxclgE70", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEppEi) +STUB("bjsuxAus3b8", ubrk_preceding_59) +STUB( + "bju4RJheLw0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEEC2Ev) +STUB("bjzYzmNRc60", _ZN3sce7Toolkit2NP2V26Friend12Notification15BlocklistUpdateC1Ev) +STUB( + "bk+OOq0V31E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEED1Ev) +STUB( + "bk1FSqDfkKc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEC1EPS8_) +STUB( + "bk1XvWVITTc", + _ZN7WebCore9FrameView27availableContentSizeChangedENS_14ScrollableArea25AvailableSizeChangeReasonE) +STUB( + "bk9AVAO2XD4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE8pushBackERKS8_) +STUB("bkBN+CMLwRc", sceAudioOut2GetSystemState) +STUB("bkHiYGjRMu0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEE11release_refEv) +STUB( + "bkNlr-4LG9I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("bkOe-P9Mds8", _ZN3JSC25JSInternalPromiseDeferred7resolveEPNS_9ExecStateENS_7JSValueE) +STUB("bkPLMG14uW8", WKPreferencesSetLongMousePressEnabled) +STUB("bkQ7aNx62Qg", sceUserServiceSetVolumeForGenericUSB) +STUB("bkRHEYG6lEM", sceAjmMemoryRegister) +STUB( + "bkVU5tiSAeY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEC2Ev) +STUB( + "bkVdWPESKhQ", + _ZN3sce4Json5Value18serialize_internalERSbIcSt11char_traitsIcENS0_8StlAllocIcEEEPFiS7_PvES8_PS1_) +STUB( + "bkVkQbgcGjA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "bkbgaTcsNNQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEED2Ev) +STUB( + "bkgjuiebsgg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEaSERKS9_) +STUB("bkhiljYMzWA", mtx_rahead) +STUB("bklqvBMjt-s", Java_java_awt_GnmGraphicsEnvironment_initIDs) +STUB("bkpUvmRS6Yc", _ZN3sce7Toolkit2NP2V28Matching7Request10CreateRoomD2Ev) +STUB("bksmE6fo+6E", _ZN7WebCore36ISOProtectionSystemSpecificHeaderBoxD2Ev) +STUB("bktaRXQqHKQ", _ZN7WebCore9HTMLNames17onbeforepasteAttrE) +STUB("bkxYTi4OaGE", mono_debug_free_locals) +STUB("bkz3jG-RlGA", sceSblRcMgrIsIntdevForPSM) +STUB("bl0DPP6kFBk", _ZSt8_XLgammae) +STUB("bl4MkWNLxKs", sceHmdInternalDfuSetMode) +STUB("bl5399SXCSc", _ZN7WebCore13CharacterData10deleteDataEjj) +STUB("blA2U7gPSx4", _ZN3JSC9ExecState18callerSourceOriginEv) +STUB("blD-5Y31+do", ucol_swap) +STUB( + "blDbdGs-EGg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEdeEv) +STUB("blFLyhAG0ig", mono_btls_x509_get_serial_number) +STUB( + "blPTVb8vZaY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEEC2ERKSA_) +STUB( + "blTXJGzV55c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE5clearEv) +STUB( + "blW-a8cVxQ4", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEiRNS2_10LibContextEPT_m) +STUB("bleKr8lOLr8", _ZNSt6locale7_LocimpD0Ev) +STUB( + "blewLPEBcMk", + _ZN3sce7Toolkit2NP2V212ActivityFeed15postInGameStoryERKNS3_7Request15PostInGameStoryEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("blg9dHgagp4", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi22ParameterToCreateMatchD2Ev) +STUB("blgK3ktWIdw", _ZN7WebCore27TranslateTransformOperation5blendEPKNS_18TransformOperationEdb) +STUB( + "blmY1Hm3-CU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEED2Ev) +STUB( + "blmpMLMb2WM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEC2Ev) +STUB("blnnnlWrGMs", + _ZN7WebCore13GraphicsLayer11setChildrenERKN3WTF6VectorIPS0_Lm0ENS1_15CrashOnOverflowELm16EEE) +STUB("blp2CNYeQU4", fuse_chan_receive) +STUB("bltDCAskmfE", sceNpWebApi2SetMultipartContentType) +STUB("blx3VqDu8LY", _ZN7WebCore9FrameView11forceLayoutEb) +STUB("blx6kdu-ilQ", _ZNK7WebCore17CSSPrimitiveValue11stringValueEv) +STUB("blzNt8wkPH8", _ZN7WebCore22EmptyFrameLoaderClient14shouldFallBackERKNS_13ResourceErrorE) +STUB("bm4L4sT8wsU", sceOpusCeltEncCreateEx) +STUB( + "bm6UWSoMpco", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEC1Ev) +STUB("bm81W6BNQbs", _ZThn136_N7WebCore16HTMLMediaElement9setVolumeEd) +STUB("bmDCAVeZmjo", _ZN3JSC7Options21dumpAllOptionsInALineERN3WTF13StringBuilderE) +STUB("bmHcSnipTKw", _ZN7WebCore9HTMLNames5ddTagE) +STUB("bmQaivctXo4", sceKernelGetSafemode) +STUB("bmUeCG2cyMc", sceDeci4hDrfpWaitMountDone) +STUB("bmYoW--WCkc", + _ZNK3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform11getPlatformEv) +STUB( + "bmaxU2oOHeg", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemProperties9terminateEv) +STUB( + "bmgZ1zOS85I", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEEdeEv) +STUB( + "bmgxBG9HJQY", + _ZN12video_parser13cVideoMetaVWG18getMetadataBufSizeENS_12VP_META_TYPEENS_9VP_LANG_eENS_15VP_SEARCH_OPT_eEPj) +STUB("bmn8kprCF+U", _ZN3WTF14FileSystemImpl20deleteEmptyDirectoryERKNS_6StringE) +STUB("bmrwFovmYBE", + _ZN7WebCore11DOMRectListC2ERKN3WTF6VectorINS_9FloatQuadELm0ENS1_15CrashOnOverflowELm16EEE) +STUB( + "bmuLt-SVNm4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE8pushBackERKS8_) +STUB("bmxxDMMpp0U", fuse_process_cmd) +STUB("bmzRityxR44", GetPs4AppCategoryForTitleId) +STUB("bn+QzEH+yGU", _ZN3sce3Xml3Dom8DocumentaSERKS2_) +STUB("bn0hFyn7jXk", mono_aot_Mono_CSharpjit_got) +STUB("bn3sb2SwGk8", _ZTSSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE) +STUB("bn3xT3DX1o8", sceApplicationSetControllerFocus) +STUB("bn4ZGjqiy+E", rgctx_fetch_trampoline_mrgctx_83_p) +STUB( + "bnDnA0cH97o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEptEv) +STUB("bnE1rABdiKU", _ZN7WebCore15FocusController24previousFocusableElementERNS_4NodeE) +STUB("bnFKtRT5qmo", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_17ActivityFeedStoryEEC1ERKS4_) +STUB( + "bnI6mhm8YlI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEEdeEv) +STUB( + "bnQHPn4fW0w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "bnUMbCNfS4A", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEEiRNS2_10LibContextEPT_m) +STUB( + "bnZ5C+DVV5U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEEC2ERKSA_) +STUB("bnZxYgAFeA0", sceKernelGetSanitizerNewReplaceExternal) +STUB( + "bnaXuaLfX+Y", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable22setLastUpdatedDateTimeERK10SceRtcTick) +STUB( + "bnbIzj3RZ+A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEC2ERKS7_) +STUB("bngZpXX8UY0", _ZN7WebCore15JSFetchResponse6s_infoE) +STUB( + "bnhLenwXOqM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEeqERKS9_) +STUB( + "bnjcA85Tx8c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEC2Ev) +STUB("bnk+edDbqMk", _ZN3sce4Json4FreeEPv) +STUB( + "bnmS1aoUfaM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEC2EPS8_) +STUB( + "bnoSfKAw0q0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEppEi) +STUB( + "bnu37h+Cw5I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE8capacityEv) +STUB("bnvFqPkCGLQ", _ZN3JSC15encodeCodeBlockERNS_2VMERKNS_13SourceCodeKeyEPKNS_17UnlinkedCodeBlockE) +STUB("bnxLhuuXgKc", _ZN25MmsFileUpdaterFsOperation12closeTmpFileEv) +STUB( + "bo+5QvHyO+o", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEneERKS9_) +STUB("bo3bZsFcCok", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEC2ERS7_) +STUB( + "bo4IuCeX+8g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEaSERKS9_) +STUB( + "boGB5ytbfrw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEmmEv) +STUB( + "boIxHzm5qlc", + _ZN7WebCore11MemoryCache15addImageToCacheEON3WTF6RefPtrI14_cairo_surfaceNS1_13DumbPtrTraitsIS3_EEEERKNS_3URLERKNS1_6StringE) +STUB("boJpV9blHHo", + _ZN3sce7Toolkit2NP10ParametersC1EPFvRKNS1_5EventEPvES6_S6_mPNS1_19AllocImplementationE) +STUB("boNDB-GB1Jg", _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_17ParameterBaseImpl6KeySetEEneERKS6_) +STUB( + "boO7DKyXql4", + _ZN3sce2Np9CppWebApi7Matches2V119RequestInGameRoster8setTeamsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_16RequestMatchTeamEEEEE) +STUB( + "boOdHGSKQrY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEppEi) +STUB( + "boTEAMFP1L0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEEeqERKS7_) +STUB("boWydF6kfCg", _ZN15AbstractStorage11LocalFolderC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("bobGynGpRjk", + _ZN3sce2Np9CppWebApi7Matches2V121ResponseTeamStatistic23getTeamMemberStatisticsEv) +STUB("bod7t+wWn5M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEE11get_deleterEv) +STUB( + "bodDJebGne8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEED2Ev) +STUB("boeWX5nPlmA", jpeg_fdct_10x5) +STUB("bohNz-tz6oM", _ZN7WebCore5Range15extractContentsEv) +STUB("bonnMiDoOZg", sceNetResolverConnectAbort) +STUB("booDoZAZEjc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEE7add_refEv) +STUB("boohEhnXnIs", _sceNpHeapStrndupImpl) +STUB("boxNDjCoMA4", + _ZN15AbstractStorage18DailymotionStorage9SerializeESt10shared_ptrINS_7ContentEES1_INS_4ItemEE) +STUB("bp6Am2-0-4g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V116TaskAvailabilityEEaSERKS7_) +STUB("bp7AIamCzwo", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEEC2Ev) +STUB( + "bp7mumNJElc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEED2Ev) +STUB("bpD6xUk4QVI", ures_open) +STUB("bpDOoC0WwFg", _ZN9Inspector22InspectorDebuggerAgent17clearBreakDetailsEv) +STUB("bpF7OjR81T4", sceNpManagerIntClearPlusMemberType) +STUB( + "bpFlvDrrf9Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEE7get_refEv) +STUB( + "bpGvSH6ss2M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEE7get_refEv) +STUB("bpHOgDvr8D0", _ZN3JSC8DebuggerD1Ev) +STUB("bpIIQq9cWgM", _ZL21_sceLibcDeleteNothrowPvRKSt9nothrow_t) +STUB( + "bpL8t2UcNj8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEEptEv) +STUB("bpLyMf0oVwQ", sceAppInstUtilAppInstallPkg) +STUB( + "bpQobJi-H-M", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEiRNS2_10LibContextEPT_m) +STUB( + "bpSlpqwdT3o", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE11hasResponseEv) +STUB("bpXMsrvbIho", _ZNK3sce2Np9CppWebApi7Matches2V125ResponseCompetitiveResult16teamResultsIsSetEv) +STUB("bpYGc+mTIXI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfoC2ERS5_) +STUB( + "bpcct3spjK8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB("bpeco9REB3U", + _ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_26ActivityFeedCondensedStoryEE8max_sizeEv) +STUB("bpl5XVbRbOE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEE5resetEPS6_) +STUB("bq6if4HJaow", sceAppInstUtilAppCancelableUnInstallByUser) +STUB("bqE8jDzPHrU", _ZN3sce2Np9CppWebApi15Personalization2V111ErrorEntity10unsetErrorEv) +STUB("bqO+QMNSTD8", _ZNK3sce2Np9CppWebApi13InGameCatalog2V515ContainerRating8getScoreEv) +STUB( + "bqR174x4uaE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("bqSfVVT2INY", _ZN7WebCore6Path2DC2Ev) +STUB("bqSwL-ZJId0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils16NetStateDetailedEED1Ev) +STUB("bqXMZaVnwk8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEC1ERS7_) +STUB("bqbkCHsef6o", WKPageConfigurationSetInitialCapitalizationEnabled) +STUB("bqcStLRGIXw", _Logpoly) +STUB("bqeYTznqCq0", _ZN7WebCore17CredentialStorage23clearSessionCredentialsEv) +STUB("bqfbyf-YJ3c", ShInitBuiltInResources) +STUB("bqsBFk7RoNA", mono_aot_Sce_Vsh_VoiceMsg_VoiceMsgWrappermethod_addresses) +STUB( + "bqupv5w1u0w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEED1Ev) +STUB("bqy8rwxYxns", _ZN15AbstractStorage15FacebookContent4ReadEPvlPl) +STUB("br1m2bKu-gs", _ZN7WebCore21DiagnosticLoggingKeys19invalidSessionIDKeyEv) +STUB("br2jlJMs1lQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEC1Ev) +STUB("br4b4PYn7bo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEEC2Ev) +STUB("br6GL-f3CQg", _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody8setLimitERKi) +STUB( + "brA5Lq1b1ac", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEEC2EPS6_PNS2_10LibContextE) +STUB("brGGJWsZauw", tcdrain) +STUB("brHQxy45WoE", sceVisionManagerGetResultOfCalibrateTrackingLed) +STUB("brKZKO4XPxE", _ZN3sce2Np9CppWebApi6Common13ConstIteratorImEC2Ev) +STUB("brRtwGBu4A8", sceSslGetFingerprint) +STUB("brUrttJp6MM", _ZN3sce2np9RefObjectC1Ev) +STUB("brbRxzr7qyI", sceNpEntitlementAccessRequestServiceEntitlementInfoList) +STUB( + "brbwMzmgqkw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEC1Ev) +STUB( + "bre0fGrcaDA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEE3getEv) +STUB( + "brfbmsOFfkg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("brlwibLBP8w", _ZN7WebCore11MathMLNames10mactionTagE) +STUB( + "brm4ejSTRJA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEEC2Ev) +STUB( + "bryhX55GFOw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEppEv) +STUB( + "bsB9nsbzgy8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEppEv) +STUB("bsEEWyZyr0c", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils12Notification15UserStateChangeEEC2Ev) +STUB( + "bsIUK6AQYmM", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V331ValidationConstraintInfoFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_24ValidationConstraintInfoEEE) +STUB("bsOoC9Rh3JI", mono_set_crash_chaining) +STUB( + "bsRusEPj3YM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEE11get_deleterEv) +STUB("bsUsSiuZ18I", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10CategoriesEE5resetEv) +STUB( + "bsZqMTWvL34", + _ZN3sce2Np9CppWebApi14SessionManager2V141PostGameSessionsSearchResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_34PostGameSessionsSearchResponseBodyEEE) +STUB( + "bsaZkOY-VKo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEEC1ERKSA_) +STUB("bsbHFI0bl5s", scePadSetExtensionReport) +STUB( + "bse-VqbYZLk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEC1Ev) +STUB( + "bseniDPMYpM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEppEi) +STUB( + "bsimZhQa+vY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEC2Ev) +STUB("bsjWg59A7aE", sceNpCondSignalAll) +STUB("bsohl1ZrRXE", _ZSt10_GetloctxtIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEiRT0_S5_mPKT_) +STUB("bsrZzHMp-+Q", + _ZN3JSC19JSSymbolTableObject14deletePropertyEPNS_6JSCellEPNS_9ExecStateENS_12PropertyNameE) +STUB( + "bssumO89ItU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEC1EPS8_) +STUB( + "bsswf4W6mSQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE10setContextEPNS2_10LibContextE) +STUB( + "bsu0Pu+TSZ0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "bsubEEungN0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("bsvV-oFZSiM", sceGnmSysClose) +STUB("bswRLErFzy4", sceCesSJisUcsProfileSetSbcs) +STUB("bsxd9YWqXzE", _ZN7WebCore4Path6moveToERKNS_10FloatPointE) +STUB("bt0POEUZddE", sceKernelGetSanitizerMallocReplace) +STUB("bt3CTBKmGyI", scePthreadSetaffinity) +STUB("bt3LHR9xjK4", sceAmprCommandBufferWriteAddressFromTimeCounter_04_00) +STUB("btDYsAHwpiE", _ZN3sce7Toolkit2NP7RequestC1Ev) +STUB("btE3Su9m0w4", + _ZNK3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse6toJsonERNS_4Json5ValueEb) +STUB( + "btI46XT1W7Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEC2ERS7_) +STUB("btKQfNe1jBY", sceNpManagerIntGetGameTitleToken) +STUB( + "btTvZ2HpjWs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEaSERKS7_) +STUB("btUB+BUEOQQ", rgctx_fetch_trampoline_rgctx_51_p) +STUB( + "btUWeQlQQvA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "btWlFjxiAFw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEC1Ev) +STUB("btdsviuXUYw", + _ZN7WebCore9JSElement15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB("btebm1+QcnE", umutablecptrie_buildImmutable) +STUB("btecxUhKaBA", _ZN7WebCore11DisplayList11ClearShadowD0Ev) +STUB("btgimHAqS2Y", _ZN7WebCore23ApplicationCacheStorage14setMaximumSizeEl) +STUB( + "btj6+XVP8PQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "btkpZccT7dk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE3endEv) +STUB("btnAmZpBk+g", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEEaSERKS6_) +STUB( + "btnRkcsWhEo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE5beginEv) +STUB("btnj0ElIQBU", + _ZN7bmalloc29StaticPerProcessStorageTraitsINS_12IsoTLSLayoutEE7Storage8s_memoryE) +STUB( + "btsQ0FrblkY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEppEi) +STUB("btueF8F0fQE", _ZNSt14numeric_limitsIaE8digits10E) +STUB( + "btwLiTyd+Sg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "bu+FCNyD6mM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEC2Ev) +STUB("bu-Wdczcf3o", mono_btls_x509_store_ctx_get_error) +STUB("bu4dl8I0Now", AES_ctr128_encrypt) +STUB("bu9+ZoEt6qw", fuse_fs_unlink) +STUB("buBHKGLpYr4", sceTsStopFileStreaming) +STUB( + "buCiCjadZLo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("buEw45ruyII", _ZN7WebCore9HTMLNames7mainTagE) +STUB( + "buFBRNzUaBw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE21intrusive_ptr_add_refEPS9_) +STUB("buJca5-CtuI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEED2Ev) +STUB("buKYcPiDeLc", Java_java_net_PlainDatagramSocketImpl_receive) +STUB( + "buM4xvyI--Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE7reserveEi) +STUB("buMCiJftcfw", sceAvPlayerChangeStream) +STUB( + "buMmdpEwRuM", + _ZN3sce7Toolkit2NP2V26Trophy18registerTrophyPackERKNS3_7Request18RegisterTrophyPackEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB( + "buPDKiKeNY8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEC2Ev) +STUB("buPicZ6bG0s", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils16NetStateDetailedEE5resetEv) +STUB( + "buPj64INYz0", + _ZN3sce2Np9CppWebApi7Matches2V117LeaveMatchRequest10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_13RemovedPlayerEEEEE) +STUB("buQ+ohUwkso", mono_aot_Sce_Vsh_RemotePlayunwind_info) +STUB("buTAjf8FCb4", _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse19getCancellationTimeEv) +STUB("buYbeLOGWmA", sceAppContentTemporaryDataMount2) +STUB("bub7IttNbmw", _ZNK7WebCore18RenderLayerBacking17displayListAsTextEj) +STUB("bublINOKkpY", _ZNK3sce2np7RingBuf11GetDataSizeEv) +STUB("budJurAYNHc", SSL_assignCertificateStore) +STUB( + "buqDQyl0lp8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEmmEi) +STUB("buqzMN7g-kk", _ZN3JSC7Symbols35replaceUsingStringSearchPrivateNameE) +STUB("buzJgnnOSMg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEEC1Ev) +STUB( + "bv6Ha8SexG4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEC2EPS8_) +STUB("bvD+95Q6asU", sceKernelMemoryPoolGetBlockStats) +STUB( + "bvHFVK+JiX0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEEC2Ev) +STUB("bvJ207-8qBQ", _ZNK3sce2np7RingBuf6IsFullEv) +STUB( + "bvKujK-6Jjk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEEC1ERSA_) +STUB( + "bvQTztKqrzM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEEC1ERSA_) +STUB( + "bvRfebo45x4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("bvScWm0CpeM", _ULx86_64_local_resume) +STUB("bvdTDveVARg", _ZTVN3JSC8DebuggerE) +STUB( + "bvfjdByaA6Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE4sizeEv) +STUB("bvlh3xeKgr0", _ZN3sce7Toolkit2NP2V28Commerce7ProductC2Ev) +STUB( + "bvm9YWoJyok", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEmmEv) +STUB("bvrWxnkc-tI", _ZN3NTF13URLRequestJob6createEPNS_17URLRequestMessageEPNS_18URLRequestListenerE) +STUB( + "bvutfMriRiI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEEC2ERSA_) +STUB("bw7ZenlDEIE", mono_mlist_remove_item) +STUB("bw8U5nD0PlI", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEEmmEi) +STUB("bwD91LR4GWs", _ZN7WebCore4Page27invalidateStylesForAllLinksEv) +STUB( + "bwDCKZ3+6oY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSE_) +STUB("bwFjS+bX9mA", sceUserServiceTerminate) +STUB( + "bwH-4j9Qg40", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEED2Ev) +STUB( + "bwJf-HgQss8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEC1Ev) +STUB( + "bwMITd80-Ss", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB( + "bwMQN98m+3E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEEC1EPS6_PNS2_10LibContextE) +STUB("bwThPa6WtDc", _ZN3WTF13printInternalERNS_11PrintStreamENS_10RawPointerE) +STUB("bwVJf3kat9c", _ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED2Ev) +STUB("bwYSgo0Bkro", ForbidCopyrightProtectedContents) +STUB("bwcOfqZLksI", sceVisionManagerRequestPadTracking) +STUB("bwd0PkfdVqg", _ZN7WebCore16LabelableElement6labelsEv) +STUB("bwdGfejef5g", _ZTVN7WebCore21BlobDataFileReferenceE) +STUB("bwdom8N0GSM", sceAppInstUtilCheckAppSystemVer) +STUB("bwmJUMFdeno", _ZN3sce2Np9CppWebApi6Common6VectorImE7reserveEi) +STUB( + "bwnVr+oaio8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEdeEv) +STUB("bwtSD+AaHgU", _ZN7WebCore8SVGNames13v_hangingAttrE) +STUB("bwtbfShgkS4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEaSERS7_) +STUB( + "bwwIrD3OgBA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEC2Ev) +STUB("bwwspVgS4hQ", _ZN3sce2np4User7GetUserEiPS1_) +STUB( + "bx1M5FKm+AU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEC1EPS8_) +STUB( + "bx3xVMfabx4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEaSERKS9_) +STUB( + "bx4uoyjFhNU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE5clearEv) +STUB("bx6NyCGjkJI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEppEi) +STUB("bx6ZMTh-J-A", mono_method_get_object) +STUB("bxAfmsH5wS4", png_get_user_chunk_ptr) +STUB("bxE-8ZYDKy4", _ZN7WebCore11MathMLNames13selectionAttrE) +STUB("bxF3cc023-k", utext_clone) +STUB("bxGoVxpdSPQ", sceAgcCbSetShRegisterRangeDirectGetSize) +STUB( + "bxJYfRjLQlc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE5beginEv) +STUB("bxKrHPbjaKc", jpeg_idct_16x8) +STUB("bxLH5WHgMBY", _ZNSt8ios_base4InitD2Ev) +STUB("bxLuTQ2Uv28", _ZN7WebCore5Image12supportsTypeERKN3WTF6StringE) +STUB("bxPXoA5kMAo", _ZN3sce7Toolkit2NP2V28Commerce7Request26SetPsStoreIconDisplayStateC2Ev) +STUB( + "bxTh6avmSbM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE21intrusive_ptr_sub_refEPS9_) +STUB("bxYl1EKp3Gk", _Z32sceGpuDebuggerRegisterShaderCodePKN3sce3Gnm16VsStageRegistersEjPKc) +STUB( + "bxcik8+c2h8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEppEv) +STUB( + "bxgeIYN4xow", + _ZNK3sce2Np9CppWebApi14SessionManager2V131ResponsePlayerSessionInvitation6toJsonERNS_4Json5ValueEb) +STUB("bxgy-tUd8YA", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed14PlayedWithFeedEE3getEv) +STUB( + "bxlFFyo0KI4", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("bxmwxo3mcBw", scePlayReadyReaderFreeOpaqueContent) +STUB( + "bxoXoXTmivs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEppEi) +STUB("bxt+muwit0w", sceCompositorGetVideoAddress) +STUB("bxy6D6cHO9k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEEppEi) +STUB( + "bxypsGRCgIU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEED2Ev) +STUB("by7vCLgfftE", _ZN3JSC4Heap15extraMemorySizeEv) +STUB( + "by7veFCi-hs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEplEm) +STUB("by9cbB7JGJE", sceNetCtlUnregisterCallbackIpcInt) +STUB("byAEaMm+GJg", _ZN3sce7Toolkit2NP2V210Tournament4Team5resetEv) +STUB( + "byEh5QWM52c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEE6assignEPSA_PFvSC_EPNS2_10LibContextE) +STUB("byKyda0vGCM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce8ProductsEED2Ev) +STUB("byPai8g0cxM", WKURLResponseCopyMIMEType) +STUB("byUP0khjgLA", sceBgftServiceIntDownloadPauseTask) +STUB("byV+FWlAnB4", _ZTVN10__cxxabiv117__class_type_infoE) +STUB("byXlqupd8cE", sceGnmDingDongForWorkload) +STUB("byXtgoPTLFI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEC1ERS7_) +STUB("bygbKdHmjn4", sceNpScoreSetPlayerCharacterId) +STUB("byhTgIbVz8o", _ZN3sce7Toolkit2NP2V28Matching4DataaSERKS4_) +STUB("byiceqcMvV0", sceUltConditionVariableSignalAll) +STUB( + "byktQMRYD9Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEC2ERS7_) +STUB( + "bypxNzB2CRM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEED1Ev) +STUB( + "bytZ-GaGYTQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEdeEv) +STUB("bythU72Nu8w", _ZN3sce2np12NpHttpClient7DestroyEv) +STUB("byxz6SR93HA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEED1Ev) +STUB("bz5MfOeWZw4", cairo_pattern_create_mesh) +STUB("bzEEfsZZIug", _ZNK3JSC17DebuggerCallFrame8sourceIDEv) +STUB("bzGg3d-Bwgg", _ZN7WebCore13JSXPathResult9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("bzH4e1XUDQ8", _ZN3sce7Toolkit2NP15AppSTLAllocatorIiEneERKS3_) +STUB( + "bzMe0GSBeV8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE3endEv) +STUB( + "bzO5j8pTXEw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEEC2Ev) +STUB("bzQExy189ZI", _init_env) +STUB("bzQSQiUzfVY", _ZN3sce2Np9CppWebApi7Matches2V116JoinMatchRequestD1Ev) +STUB("bzUzzYotlwo", _ZN7WebCore9FrameTree7setNameERKN3WTF12AtomicStringE) +STUB("bzbQ5zQ2Y3g", fgetwc) +STUB( + "bzc0ibPkliE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEC1EPS6_PNS2_10LibContextE) +STUB("bzf8a7LxtCQ", sceNpManagerIntLoginBind) +STUB("bzfSG690KP4", _ZN3sce7Toolkit2NP2V212EventsClient12EventDetailsaSERKS4_) +STUB( + "bzgWSS98IRE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE21intrusive_ptr_add_refEPS9_) +STUB("bzmM0dI80jM", _ZNSt14numeric_limitsIeE12max_exponentE) +STUB("bznVjTfYf9U", OCSP_RESPONSE_free) +STUB("bzqnq4lHafY", _ZN3sce2Np9CppWebApi10Activities2V114UserActivities14UserActivitiesD2Ev) +STUB("bzrMB2nZOOk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE3endEv) +STUB("bzxTZSnnB38", mono_class_from_name) +STUB("c++J1vy4dGc", _ZN8meta_gen14ImageRetriever19FinalizeFsOperationEv) +STUB("c+4r-T-tEIc", nearbyintf) +STUB( + "c+90X-eNCGM", + _ZN23sceMetadataReaderWriter13ParserManager17getParserInfoListERSt6vectorINS_10ParserInfoESaIS2_EE) +STUB("c+9g-vYGACo", _ZN7WebCore12EventHandler23handleMouseReleaseEventERKNS_18PlatformMouseEventE) +STUB("c+CkIXe0xf4", Java_java_io_ObjectInputStream_latestUserDefinedLoader) +STUB("c+EBCU1pN40", + _ZN3sce2Np9CppWebApi7Matches2V120ChildActivityFactory7destroyEPNS3_13ChildActivityE) +STUB("c+MBrlNW+0M", ures_getName_67) +STUB( + "c+MaUMtsoTU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEeqERKS9_) +STUB( + "c+OcEaZg2p0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE8copyFromERKS9_) +STUB( + "c+OqbZVzHTI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "c+PJkolqVgE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEE5resetEPS6_) +STUB("c+RbLGD2gE4", monoeg_g_get_user_name) +STUB( + "c+WtFNxrx-I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEC1Ev) +STUB("c+Y5l4iz+lE", _ZN7WebCore29PerspectiveTransformOperation5blendEPKNS_18TransformOperationEdb) +STUB("c+YCXKe0E34", _ZN9Inspector18InjectedScriptHost16clearAllWrappersEv) +STUB( + "c+Z9ej4Rb-c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEEC2Ev) +STUB("c+aYh130SV0", sceNetBweStartInternetConnectionTestIpcInt) +STUB("c+iQ+GiUuC0", _ZNK7WebCore27TranslateTransformOperation1yERKNS_9FloatSizeE) +STUB( + "c+iTA4Yt+8Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEC1Ev) +STUB( + "c+ixZemlxM0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("c+psqZtgRgA", UI_OpenSSL) +STUB("c+s97m03y1s", delegate_invoke_impl_target_8_p) +STUB("c+ssxRf1Si0", sceNpUtilNumChars) +STUB( + "c+wH3+WmRIA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("c-+2EXSCk2E", WKPreferencesGetWebAuthenticationEnabled) +STUB( + "c--TlXxAYpA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEEC2ERKS9_) +STUB( + "c-15NbgCdc4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEC1EPKS8_) +STUB("c-7GgGDc1dQ", _ZN12Mp4Retriever11loadFullBoxEv) +STUB( + "c-98xis7L+M", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi44ParameterToPatchGameSessionsSearchAttributes47setpatchGameSessionsSearchAttributesRequestBodyENS1_6Common12IntrusivePtrINS3_44PatchGameSessionsSearchAttributesRequestBodyEEE) +STUB("c-EfVOIbo8M", _ZTVSt11regex_error) +STUB("c-G7yBrXF34", mono_aot_System_ComponentModel_DataAnnotationsplt_end) +STUB( + "c-HyX3dVmmI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEED2Ev) +STUB("c-KeX46JxEw", _ZN3JSC22createOutOfMemoryErrorEPNS_9ExecStateE) +STUB( + "c-YYywTOx1c", + _ZN3sce2Np9CppWebApi14IdentityMapper2V349PsnWebError_error_validationConstraintInfoFactory7destroyEPNS3_42PsnWebError_error_validationConstraintInfoE) +STUB( + "c-a+EQMdXpo", + _ZN7WebCore21NetworkStorageSession46clearPageSpecificDataForResourceLoadStatisticsEN3WTF16ObjectIdentifierINS_18PageIdentifierTypeEEE) +STUB("c-aFKhn74h0", sceSystemServiceReenableVoiceRecognition) +STUB("c-bxj027czs", scePthreadCondattrSetclock) +STUB("c-dDdbRZbU8", _ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody9getOffsetEv) +STUB("c-ery-xf23E", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE8pushBackERKS6_) +STUB( + "c-fpDDDBjv4", + _ZN3sce2Np9CppWebApi11UserProfile2V132GetBasicPresencesResponseFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_13BasicPresenceEEEEEPNS9_INS3_25GetBasicPresencesResponseEEE) +STUB("c-gPnt4LSyg", _ZNK7WebCore11HTMLElement18canonicalInputModeEv) +STUB("c-iom5ingNk", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V115CompetitionTypeEEaSERKS7_) +STUB("c-jBFhrvm2g", _ZN7WebCore11MediaPlayer11rateChangedEv) +STUB( + "c-lHWCnJjrM", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUserC1Ev) +STUB("c-p4Wm6bD1Y", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_26ActivityFeedCondensedStoryEED1Ev) +STUB( + "c-s8chTSZoc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEC1Ev) +STUB("c-yCyS3Ya8I", _ZN3sce2np8JsonNullD1Ev) +STUB("c002A4zTOgA", FT_Stream_ReadShortLE) +STUB("c00bHjdQxuc", _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeDataC1Ev) +STUB("c08SEHicDNU", sceMbusEventCreate_) +STUB( + "c0BfWXdpoo4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("c0DOxHbUSQU", _ZN7WebCore24CoordinatedGraphicsLayer19updatePlatformLayerEv) +STUB( + "c0JnIUbIaXk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEixEm) +STUB( + "c0NI7SV1DQQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("c0NsShFD7Nw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEE5resetEPS6_) +STUB("c0RHuW2CT-U", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEEC1Ev) +STUB("c0RJXr5hCkw", _ZN3JSC2VM28javaScriptCallFrameSpaceSlowEv) +STUB( + "c0V+1kq++XA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEneERKS9_) +STUB("c0XU6unk8mM", GCC_except_table166) +STUB("c0XaWDe2hr4", mono_aot_Sce_Vsh_CloudClientunbox_trampoline_addresses) +STUB("c0evlt+VfN0", _ZN12video_parser13cVideoMetaMP4D2Ev) +STUB( + "c0jHkXhmV04", + _ZN3sce2Np9CppWebApi14SessionManager2V140PostGameSessionsTouchResponseBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_33PostGameSessionsTouchResponseBodyEEE) +STUB("c0qKSZ1zflA", _ZN7WebCore17FrameLoaderClient31dispatchDidReachLayoutMilestoneEj) +STUB("c0tjMmXmTWQ", _ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_13WhoLikedStoryEE8max_sizeEv) +STUB( + "c0vj13tC5b0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEED2Ev) +STUB( + "c0x4NJGGToE", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEEiRNS2_21DownStreamTransactionIT_EE) +STUB("c0zaE4U6JL0", __cxx_global_var_init .34) +STUB("c10oqsj0YKM", sceSlimglServerRegisterShaderFile) +STUB("c11C-fn9vZg", _ZNK7WebCore17HTMLOptionElement8selectedEv) +STUB("c19a+hl-ZME", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEC2ERKS7_) +STUB("c1ApXgsGFoM", mono_aot_Sce_Vsh_Lxunwind_info) +STUB( + "c1DGpxnVYVo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEaSERKS9_) +STUB( + "c1Nx8NhCE5U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEaSERS7_) +STUB("c1SCTsycK7k", sceCesUtf16beToBig5) +STUB("c1T+xl90CI8", _ZN3sce3Xml3Sax6Parser9terminateEv) +STUB("c1Ti4gpyQTE", monoeg_g_hash_table_foreach) +STUB( + "c1TnmDp3g9Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEmmEv) +STUB("c1XbH-OQgLg", _ZN12video_parser13cVideoMetaVWG10initializeEv) +STUB("c1YwVfY2O-4", _ZN3sce2np13JsonDocParser5ParseEPNS0_6HandleEPNS0_12StreamReaderE) +STUB( + "c1ZsQFGBWTE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "c1Zvb85axa4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEE7add_refEv) +STUB("c1heh50bF3Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEEC1EPS6_) +STUB( + "c1iDSzYTYJI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEneERKS9_) +STUB("c1nbr8oSWlg", FT_Glyph_To_Bitmap) +STUB("c1pKoztonB8", sceNpWebApiIntCreateCtxIndExtdPushEventFilter) +STUB("c1q27JaWyHc", ucnv_getMinCharSize) +STUB("c2-jXzNCn5M", _ZThn64_NK7WebCore9FrameView17useDarkAppearanceEv) +STUB("c22-2daf7Go", _ZN8meta_gen11MsvPromoter15convertLangTypeE6Locale) +STUB("c27lOSHxPA4", _ZNSt14_Num_ldbl_base9is_moduloE) +STUB("c29hhxlHcfk", _ZN7WebCore16MIMETypeRegistry23supportedImageMIMETypesEv) +STUB("c29rFjyGgMY", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities13ErrorResponse8fromJsonERKNS_4Json5ValueE) +STUB("c2EWJMoHXWQ", ucnv_getMaxCharSize_67) +STUB("c2EZZ1IdQAE", _ZN7WebCore10FileHandleC2EOS0_) +STUB("c2I+DjJfw4g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE6resizeEj) +STUB( + "c2IIF5EjCIk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("c2a0K7RJLGc", _ZN3sce7Toolkit2NP2V27NpUtils7Request22GetOnlineIdByAccountIdD1Ev) +STUB("c2bA4ND3o0U", _ZN3sce2np9JsonValue9SetObjectEPKNS0_10JsonObjectE) +STUB( + "c2k4ibLGvt4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEEC1Ev) +STUB( + "c2vLvl+1-Xk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEppEi) +STUB( + "c2ykLKjLxGA", + _ZN9Inspector26InspectorBackendDispatcher11initializedElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "c2zZd-Ger6k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEC1EPKS8_) +STUB("c33GAGjd7Is", _ZTISt17bad_function_call) +STUB("c34CuwRZZz8", ScePsmWapiCryptoPolicyCallback) +STUB( + "c36uAYYmMPQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEC2ERKS7_) +STUB("c3C+enSh+BI", mono_profiler_set_current_time_func) +STUB("c3CYInfoXNY", mono_aot_Sce_Vsh_Np_Commonjit_code_end) +STUB("c3GNV3aOkgQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE7reserveEi) +STUB( + "c3GtMIue0b4", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData10initializeEPNS1_6Common10LibContextEi) +STUB("c3HIMhGMNwE", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification11RefreshRoomEED1Ev) +STUB( + "c3J9K9XbQqE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEED2Ev) +STUB("c3KjgSd2mDw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEdeEv) +STUB("c3Li69VnhPM", _ZN7WebCore8SVGNames20specularExponentAttrE) +STUB("c3NQY-oh4Fw", _ZL21_delete_array_nothrow) +STUB("c3T1XEYr9MI", sceNpPush2WaitCallback) +STUB("c3ZR7N+8dxI", u_strncat_67) +STUB( + "c3baOHhP8vY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEmmEi) +STUB( + "c3k9tL+T2a8", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionFactory6createEPNS1_6Common10LibContextEPKcNS5_12IntrusivePtrINS3_31ResponseGameSessionMemberPlayerEEEPNSA_INS3_11GameSessionEEE) +STUB("c3rtINcNDaw", + _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession14setCustomData2EPKvm) +STUB( + "c3rzTgdQWqg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEmmEi) +STUB("c3uq1x7S3n0", _ZNK3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse11getOnlineIdEv) +STUB( + "c4-DNgm621c", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE5emptyEv) +STUB("c41UEHVtiEA", _Stod) +STUB("c46rAWSziWE", _ZN3sce7Toolkit2NP2V26Trophy16UnlockedTrophies8deepCopyERKS4_) +STUB( + "c47B4MLRrxs", + _ZN3sce7Toolkit2NP2V26Friend26displayFriendRequestDialogERKNS3_7Request26DisplayFriendRequestDialogEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("c4CrIGb7sfA", JVM_GetInheritedAccessControlContext) +STUB( + "c4IMUMWci6s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEE11release_refEv) +STUB( + "c4MN+5iqzDc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEC1EPS6_PNS2_10LibContextE) +STUB("c4Qh37a9A7o", _ZN6WebKit12ChildProcessD2Ev) +STUB( + "c4Y-gfC80cw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEED2Ev) +STUB("c4Z7w8v60ag", + _ZN15AbstractStorage15FacebookContentC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) +STUB("c4ctz7qKB-g", _ZN7WebCore14HTMLMapElement5areasEv) +STUB( + "c4de5CBVtFg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEC1ERS7_) +STUB("c4e-vuKRjn0", WKPreferencesSetWebAuthenticationEnabled) +STUB("c4mSi64bXUw", sceHmdInternalSetForcedCrash) +STUB("c4n8cDBXLZ0", + _ZN9Inspector20InspectorTargetAgent29willDestroyFrontendAndBackendENS_16DisconnectReasonE) +STUB("c4qOBt1+nO8", WKPageGetMediaCaptureEnabled) +STUB( + "c4qgCc7rKFk", + _ZNK3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayer6toJsonERNS_4Json5ValueEb) +STUB("c4x6o+swlXk", _ZN3sce7Toolkit2NP2V28Matching12RoomPingTimeD1Ev) +STUB("c4xBw-3NUKA", mono_aot_Sce_Vsh_MorpheusUpdWrapperunbox_trampolines_end) +STUB( + "c5+gUU6eCfw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEE11get_deleterEv) +STUB("c5-Jw-LTekM", _ZTIf) +STUB("c53FpjaR+Lo", _ZN3sce2Np9CppWebApi7Matches2V121ResponsePlayerResults10unsetScoreEv) +STUB("c54cpAkUsgA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEEneERKS7_) +STUB("c59ADTvHxOg", _ZNK3sce7Toolkit2NP15AppSTLAllocatorI16SceNpTusVariableE8max_sizeEv) +STUB("c5B2XSDTekA", _ZN9Inspector8Protocol3CSS11CSSProperty5ValueE) +STUB("c5D63Y35GjI", sceAmprAmmMeasureAmmCommandSizeModifyMtypeProtectWithGpuMaskId) +STUB( + "c5M7RroW70g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEC1EPKS8_) +STUB( + "c5OI5G1zW+Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEC1Ev) +STUB( + "c5PWhiY69vc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE4sizeEv) +STUB("c5VgNEP3fIw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEED1Ev) +STUB("c5ZDCRqQ0UM", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_16EventInformationEED1Ev) +STUB("c5racR7LqJo", _LMBCSData4_67) +STUB("c5suuJOfAEI", _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error10setMessageEPKc) +STUB("c5xBxHitULA", _ZN3JSC23SimpleMarkingConstraintD1Ev) +STUB( + "c5xh8oCFvVg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB("c5xyR+kt8mo", AacsSelectKeyFrom) +STUB( + "c5y1du6YZcw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEED1Ev) +STUB("c5zBiTJEZH8", _ZN3WTF7RunLoop3runEv) +STUB("c6+gAL4LoV0", _ZN3sce7Toolkit2NP2V27Session11InvitationsC1ERKS4_) +STUB( + "c61W3gCtk9o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE6resizeEj) +STUB("c6583I4pNzc", _ZN3JSC23MacroAssemblerX86Common15s_avxCheckStateE) +STUB("c68qOKD40KY", mono_aot_System_Web_Servicesjit_code_start) +STUB("c6Fp9M1EXXc", sceCameraGetSharpness) +STUB("c6G6WNs71mw", uprv_decNumberInvert_67) +STUB( + "c6GFcpwNUuc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEptEv) +STUB( + "c6GqebkuqYs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "c6JUKqhjXHI", + _ZN3sce7Toolkit2NP2V28Commerce27displayCategoryBrowseDialogERKNS3_7Request27DisplayCategoryBrowseDialogEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB( + "c6K0pwo3+40", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB( + "c6KcYA2AEd0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEC1Ev) +STUB("c6Lyc6xOp4o", _ZNKSt7codecvtIDic9_MbstatetE10do_unshiftERS0_PcS3_RS3_) +STUB( + "c6M1IXibAGI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEE11release_refEv) +STUB("c6OcNEPqsOE", sqlite3_column_value) +STUB("c6Qa0P3XKYQ", _LPoly) +STUB("c6U0zoB6FxM", scePktMgrSendDeciPacket) +STUB("c6VuuMBfEGQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEE7get_refEv) +STUB("c6aYoa47YgI", sceNpTusSetMultiSlotVariable) +STUB("c6cFvx1M-iE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEC2ERKS7_) +STUB("c6d0lcEF-j4", _ZN7WebCore17HTMLAnchorElement4textEv) +STUB("c6eD2eDESGk", res_getStringNoTrace) +STUB("c6in41qhmJ0", _ZN15AbstractStorage15FacebookStorage14GetStorageSizeEPlS1_S1_) +STUB("c6kw+A6XbvY", sceVideoCoreGenerateThumbnail) +STUB("c6qJR2WBk3Q", Java_java_util_zip_Inflater_reset) +STUB( + "c6uI2R5WqD8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE8sendDataEPKvm) +STUB("c6uPCbW4+lQ", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence8PresenceEED1Ev) +STUB( + "c6x8lD0qwdw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEE7get_refEv) +STUB( + "c6yxvCZedLI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEEC2Ev) +STUB( + "c6zV4CepPoo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEEaSERSA_) +STUB("c7+gaUTePD8", _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_17ParameterBaseImpl6KeySetEEeqERKS6_) +STUB( + "c7-mJUbi-DE", + _ZN3sce2Np9CppWebApi11Matchmaking2V117UserTicketFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_10UserTicketEEE) +STUB("c70Dvb+wW+Y", _ZN7WebCore19HTMLTextAreaElement7setRowsEj) +STUB("c72L8ORqV60", _ZNK15AbstractStorage12LocalStorage13GetCapabilityEv) +STUB( + "c76+iggRoW0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEmmEi) +STUB( + "c78-JwL4Qzc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEE11get_deleterEv) +STUB( + "c79klPvwO3E", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEeqERKS9_) +STUB("c7A0diG7AIU", sceNetConfigDelDefaultRouteDev) +STUB( + "c7ALUnFzxlY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEED2Ev) +STUB("c7BUSLeGXCQ", rgctx_fetch_trampoline_mrgctx_56_p) +STUB( + "c7FlPXOg8UA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEE7add_refEv) +STUB( + "c7Hq-8Eed9c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEED2Ev) +STUB( + "c7Vyu6dQOdU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEE3getEv) +STUB( + "c7Y8eOvv4eY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("c7YjLnWxw-4", sceFsMountSaveData) +STUB("c7ZnT7V1B98", rmdir) +STUB("c7b+WzTY6Co", WKPreferencesSetShouldSuppressKeyboardInputDuringProvisionalNavigation) +STUB( + "c7d-skrN1R0", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectatorC2ERS5_) +STUB( + "c7d3HGB2-5M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE7reserveEi) +STUB("c7flAeOUOrI", _ZN3sce7Toolkit2NP2V28Matching7Request12SearchClauseD2Ev) +STUB( + "c7fvY8tI3zM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE21intrusive_ptr_add_refEPS9_) +STUB("c7gIc2aHtZ8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariableD2Ev) +STUB("c7huastYi-8", _ZN3sce7Toolkit2NP2V210Tournament7Request15EventTypeFilterD1Ev) +STUB( + "c7j7R9MNJiI", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("c7mVozxJkPU", sceAudioOutGetSimulatedBusUsableStatusByBusType) +STUB("c7noapHDHWU", sceKernelEventLogInit) +STUB( + "c7oTb9csuVg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("c7qsIZyhC9I", SwCtrlSinkStreamGetReadPointer) +STUB("c7w7pgkXH4Q", _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchStatusRequestD2Ev) +STUB( + "c7yEI8DGlnM", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_23NpSessionInvitationInfoENS1_15AppSTLAllocatorIS5_EEEED2Ev) +STUB("c7yVPcGcnHg", s00) +STUB("c7zvB-5VVLM", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer7hassortEv) +STUB("c8-4aC9opYE", _sceNpAllocatorStrdup) +STUB( + "c8-ASwJWoME", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEC2Ev) +STUB("c812oYs7Vsc", sceHmd2Initialize) +STUB( + "c81UDDEfGuw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("c81tKzMsBd4", rgctx_fetch_trampoline_rgctx_24_p) +STUB("c83NQQnFTjc", + Java_java_security_AccessController_doPrivileged__Ljava_security_PrivilegedAction_2) +STUB("c83tLI+C9lg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEE11release_refEv) +STUB("c869dTyTgeY", _ZN7WebCore6JSNode4infoEv) +STUB("c88Yy54Mx0w", sceSaveDataSaveIcon) +STUB( + "c8Agk5tncfc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEmmEi) +STUB( + "c8CsJXo9F00", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi21getOnlineId2AccountIdEiRKNS4_32ParameterToGetOnlineId2AccountIdERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_11OnlineIdMapEEENSA_INS4_36GetOnlineId2AccountIdResponseHeadersEEEEE) +STUB("c8D9qIjo8EY", sceHttp2DeleteRequest) +STUB( + "c8HHiyfzils", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("c8IRpl4L74I", sceNetBandwidthControlGetDefaultParam) +STUB("c8J3uxxQTl4", sceKernelSetBootReqNotify) +STUB("c8NfvVhfcR0", _ZN7WebCore28DisplayRefreshMonitorManager17displayWasUpdatedEv) +STUB("c8QrOAdar0E", _ZN7WebCore11DisplayList11FillEllipseD0Ev) +STUB("c8RVn1N-Agc", _ZN15AbstractStorage12LocalServiceC1Ev) +STUB("c8aRMVPxLyc", t1cid_driver_class) +STUB("c8kZeFIQaMU", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10getString1Ev) +STUB("c8n7HQCsv3E", _ZNK7WebCore16HTMLInputElement18shouldAutocompleteEv) +STUB( + "c8oj6zDkff4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEmmEi) +STUB("c8pxB0Z4QNY", sceHttpCacheDeleteRequest) +STUB( + "c8qFbYmM4W8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEE11release_refEv) +STUB("c8soZKB7iqg", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE4sizeEv) +STUB( + "c8ynhuZiYP4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("c9+gGRj5iE0", delegate_virtual_invoke_22) +STUB("c95MlCnBsWU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEC1ERKS7_) +STUB("c97UzO1yS5w", mono_aot_System_Runtime_Extensionsplt) +STUB("c9C9AQ6BuYI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEC2Ev) +STUB( + "c9IDKpp5t1E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEixEm) +STUB("c9QmaJcIvVk", udata_getHeaderSize_67) +STUB("c9S0tXDhMBQ", _Xp_ldexpx) +STUB("c9U2pk4Ao9w", sceUserServiceSetMicLevel) +STUB( + "c9VNr6l5SvU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEEaSERS9_) +STUB("c9WG9V8JpPg", _ZN3sce16CommonDialogUtil6Server9setFinishEv) +STUB( + "c9Wbcte973w", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEcvbEv) +STUB("c9XZGDF1OcM", sceCamera2GetExposureGain) +STUB("c9XbEhLwkjw", _ZNK7WebCore16VisibleSelection17toNormalizedRangeEv) +STUB("c9XutMEn+58", il2cpp_free_captured_memory_snapshot) +STUB("c9d+u6qY1Vw", + _ZN3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponse19unsetPreviousOffsetEv) +STUB("c9gkeiGoRPU", _ZN7WebCore20endOfEditableContentERKNS_15VisiblePositionE) +STUB("c9kMGltLpaQ", _ZN3sce7Toolkit2NP2V24Core7Request14RemoveCallbackD1Ev) +STUB("c9kgWEAwHVQ", fuse_session_loop) +STUB("c9qDSphuzgY", u_init_67) +STUB( + "c9teAQ2+63I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("c9v8NHVu0NU", _ZN7WebCore10FileHandleC2ERKN3WTF6StringENS1_14FileSystemImpl12FileOpenModeE) +STUB( + "c9vmPtpMBlI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEC1EPKS8_) +STUB( + "c9xuUzQwqzo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEE7get_refEv) +STUB("c9z4V4hatn4", GCC_except_table32) +STUB("cA0C1DZFNu0", GCC_except_table8) +STUB( + "cA0TuSL8wTA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEEaSERSA_) +STUB("cADXiYWCzwk", Java_java_awt_GnmImage_nativeGetHeight) +STUB("cALfJh14EPs", _ZN9Inspector15ScriptArgumentsD1Ev) +STUB( + "cASXLdlGNXg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE5beginEv) +STUB("cAXa6u8hZHI", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112GroupingTypeEEC2Ev) +STUB( + "cAZjEQj9-SU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("cAaLgTefBKE", _ZN7WebCore37CrossOriginAccessControlCheckDisablerD2Ev) +STUB("cAckbuvTh9s", + _ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionMemberPlayer10getPlayersEv) +STUB("cAeFZE72SXU", _ZN3sce2npleERKNS0_4TimeERK10SceRtcTick) +STUB("cAiFlMfSYv4", _ZN3sce2Np9CppWebApi6Common6VectorIlE6resizeEj) +STUB( + "cAjIOBtChMY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEE3getEv) +STUB( + "cAkiNBzHts8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEEaSERSA_) +STUB( + "cAl8B8rvVoY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEmmEv) +STUB("cAnT0Rw-IwU", sceMouseClose) +STUB( + "cAvgnBYD5ik", + _ZN7WebCore6Editor22writeImageToPasteboardERNS_10PasteboardERNS_7ElementERKNS_3URLERKN3WTF6StringE) +STUB("cAxbLiUQcu0", + _ZN7WebCore21DisplayRefreshMonitor46handleDisplayRefreshedNotificationOnMainThreadEPv) +STUB( + "cB4ipbeFvEg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEE5resetEPS9_) +STUB("cB4rMoKU4UI", pthread_setname_np) +STUB("cB96xbSIETQ", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersC2ERS5_) +STUB("cBGTk8S92XM", sceKernelDeleteWriteEvent) +STUB("cBNGAG1DkXc", CMAC_CTX_free) +STUB( + "cBP0ZiyLovQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEneERKS9_) +STUB("cBSM-YB7JVY", fcloseall) +STUB("cBSNCT7dkps", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEC2Ev) +STUB("cBVmkkm+HiU", __asan_exp_load16) +STUB("cBY2GBAKlkY", _ZN7WebCore22EmptyFrameLoaderClient20frameLoaderDestroyedEv) +STUB("cBbNHiLQ1DE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEixEm) +STUB("cBcSEJyBSng", _ZN3sce7Toolkit2NP2V28Matching7Request15GetRoomPingTimeC1Ev) +STUB("cBckE9-Thps", _ZN3JSC9Structure21addPropertyTransitionERNS_2VMEPS0_NS_12PropertyNameEjRi) +STUB("cBfQR89EqS8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEaSERS7_) +STUB("cBgv9pnmunI", sceUserServiceSetUserStatus) +STUB("cBl8O2bQwos", sceVideoCoreInterfaceFlushVideoOutBuffer) +STUB( + "cBni+xogxl8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEEC1ERSA_) +STUB("cBp0Ad-24LA", sceKernelProtectDirectMemoryForPID) +STUB( + "cBq5nCCpARc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE13getLibContextEv) +STUB("cBrINQKezM8", ucal_openTimeZones_59) +STUB("cBsqBZU3Ls4", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOfferaSERS5_) +STUB( + "cBzNNtt2-GU", + _ZN3sce7Toolkit2NP2V23TUS10deleteDataERKNS3_7Request10DeleteDataEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("cBzXEdzVzvs", sceNpTrophySystemCreateHandle) +STUB( + "cC+hPltOYnk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEC1EPS8_) +STUB( + "cC15lQACT2I", + _ZN7WebCore9JSElementC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_7ElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB("cC1Dnsl7yvQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V115SearchAttributeEEppEi) +STUB( + "cC6fxv-XLEM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEEC1Ev) +STUB("cC8Or4zySu0", _ZN3sce2np9JsonValue9GetNumberEv) +STUB("cC9KrTAFBuk", _ZNK7WebCore9FrameView26clientToLayoutViewportRectENS_9FloatRectE) +STUB( + "cCDdFAbZR5k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEmmEi) +STUB("cCJNCoH0AOY", _ZN3JSC12HeapAnalyzerC2Ev) +STUB("cCJaN12U2xc", + _ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession16searchIndexIsSetEv) +STUB("cCMDYO9tVWc", GetLibHttpCtxId) +STUB("cCOiMkTq3Wg", + _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets17hasplatformFilterEv) +STUB( + "cCVeZele9Ok", + _ZN3sce2Np9CppWebApi7Matches2V114SubtaskFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_7SubtaskEEE) +STUB("cCX7-SQY5KY", _ZN3JSC13JSMapIterator6s_infoE) +STUB( + "cCXFCra3Ea8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEC2Ev) +STUB("cCXMypoz4Vs", _ZNSt12out_of_rangeD2Ev) +STUB("cCXjU72Z0Ow", _Sin) +STUB("cCYw6bK4Hzk", uregex_regionStart64_67) +STUB( + "cCeKXqjYnN0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE5beginEv) +STUB( + "cCeyZwrD4yY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEEC1ERKSA_) +STUB( + "cCgxAW9aHYs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEEC1ERKS9_) +STUB("cCheyCbF7qw", sceRemoteplayClearConnectHistory) +STUB("cCkJGMhMw5c", _ZN4Manx3Ssl10SslContextC1Ev) +STUB("cCobQFZjwP0", sceFiosStatisticsReset) +STUB("cCod+B3EdhI", sceLncUtilTerminate) +STUB("cCuAnD2NrwU", sceCesRefersUcsProfileIso8859_2) +STUB("cCuvfGlUzqg", _ZN3sce2np14JsonNumberImpl3SetEj) +STUB( + "cCxEdsMyJU4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB("cD6y6-gGmv4", _ZN3JSC27finalizeStatsAtEndOfTestingEv) +STUB("cD8Sp--nfos", mono_aot_Sce_Vsh_AppDbWrapperjit_got) +STUB("cDA-SGUYdVI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEEC1EPNS2_10LibContextE) +STUB( + "cDEMFfAMui8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC1ERSA_) +STUB( + "cDEUK94Pz-c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEE7get_refEv) +STUB("cDGcDtqvrKM", + _ZN3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectator12setAccountIdEPKc) +STUB("cDHRgSXYdqA", _ZNSt9_Num_base10has_denormE) +STUB( + "cDPANlTEE50", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("cDPbXydvmc8", sceBgftServiceDownloadFindActivePatchTask) +STUB("cDW233RAwWo", sem_destroy) +STUB("cDXFX8KLcZQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEED2Ev) +STUB("cDYZJxwmuaA", rgctx_fetch_trampoline_rgctx_13) +STUB( + "cDZOp6qyvqQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEE7add_refEv) +STUB( + "cDiyAbdCzuQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "cDkYkwDN-Mg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "cDkrRzrl6vI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "cDlYAxb4rAE", + _ZN3JSC23decodeFunctionCodeBlockERNS_7DecoderEiRNS_12WriteBarrierINS_25UnlinkedFunctionCodeBlockEN3WTF13DumbPtrTraitsIS3_EEEEPKNS_6JSCellE) +STUB("cDm890W5EK8", _ZN9Inspector15RemoteInspector29nextAvailableTargetIdentifierEv) +STUB("cDmWRPRAsJg", monoeg_g_direct_hash) +STUB( + "cDmxmQB5JI8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEmmEv) +STUB("cDpoSmpISFo", _ZN7WebCore8Document11createEventERKN3WTF6StringE) +STUB( + "cDvOWZaIt4Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEdeEv) +STUB("cDwG3kieQ6s", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE5beginEv) +STUB( + "cE+XSqC6Sz4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEEC1ERSA_) +STUB("cE1NVPNw8Yc", unorm2_openFiltered) +STUB("cE1wkQgdb78", _ZN3JSC7Symbols14getPrivateNameE) +STUB("cE4qKBwg0fo", s13) +STUB("cE5Msy11WhU", sceCompanionUtilGetEvent) +STUB("cE7wIsqXdZ8", sceNpAuthAbortRequest) +STUB("cE99PJR6b8w", sceHmdInternalDfuCheckPartialUpdateAvailable) +STUB("cE9a43GA25U", _ZN3sce7Toolkit2NP2V27NpUtils12Notification15UserStateChangeaSERKS5_) +STUB("cE9rGwgKhic", _ZN3WTF17StringPrintStream26toStringWithLatin1FallbackEv) +STUB("cEDXATPf1ZE", + _ZN7WebCore15GraphicsContext28setImageInterpolationQualityENS_20InterpolationQualityE) +STUB("cEGwE8ZjJlw", _ZNK3WTF10StringView4utf8ENS_14ConversionModeE) +STUB("cEHS9z3rILI", _ZN3sce7Toolkit2NP2V24Core19JsonMemoryPoolStatsD2Ev) +STUB( + "cEJDJkmnW0I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEC2EPNS2_10LibContextE) +STUB("cEMX1VcPpQ8", sceNetShowRoute) +STUB( + "cEOPb0tXNrk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEppEv) +STUB( + "cERaRlbHAqw", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser12setaccountIdEPKc) +STUB("cEXl2g+fHBA", _ZN3sce7Toolkit2NP2V212EventsClient7Request9GetEventsD2Ev) +STUB( + "cEa7R2wJqgk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "cEa9lw44esk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEdeEv) +STUB("cEcdsDQcKXU", _ZN9Inspector31ConsoleBackendDispatcherHandlerD0Ev) +STUB( + "cEil8GoSNPk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "cEjkMKIfsZg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEE5resetEPS6_) +STUB( + "cEx8AI3KRjE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("cEyJk+5DR7g", _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse18getMatchStatisticsEv) +STUB( + "cF1wIGmWNjI", + _ZN3sce2Np9CppWebApi11Matchmaking2V128GetTicketResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_21GetTicketResponseBodyEEE) +STUB( + "cF7F0VceNVY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEcvbEv) +STUB("cF88qFhsp-Y", sceNpIpcCreateRequest) +STUB("cFCp0NX8wf0", sceGnmSetVgtControl) +STUB( + "cFE-bw5AV2s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEC1EPS6_PNS2_10LibContextE) +STUB("cFLyLAk-SmM", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15PlayedWithStoryEEC2ERKS4_) +STUB( + "cFMfAx574rg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEE11release_refEv) +STUB("cFOaAP9V4YE", _ZNK9Inspector14InjectedScript14findObjectByIdERKN3WTF6StringE) +STUB("cFPSQe7KGBo", _ZN7WebCore20LegacySchemeRegistry27shouldTreatURLSchemeAsLocalERKN3WTF6StringE) +STUB( + "cFQIBrLyTNw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE21intrusive_ptr_add_refEPS9_) +STUB("cFSvGpQqRNs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEE5resetEPS6_) +STUB("cFUQRjzKDvI", sceM4aacEncInitialize) +STUB("cFWPsSkrbYc", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request11GetWhoLiked13MAX_PAGE_SIZEE) +STUB("cFazmnXpJOE", sceAgcAcbEventWrite) +STUB( + "cFe2efwi9HE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "cFfDfSNwBTY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE5emptyEv) +STUB( + "cFi45DeAMFQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE8pushBackERKS8_) +STUB( + "cFi5bW1xv5A", + _ZN7WebCore15GraphicsContextC1ERKN3WTF8FunctionIFSt10unique_ptrINS_19GraphicsContextImplESt14default_deleteIS4_EERS0_EEE) +STUB("cFonhkV3dB4", _ZN7WebCore11DisplayList8RecorderD1Ev) +STUB("cFp6N5IkNHA", _ZN3JSC2VM21float32ArraySpaceSlowEv) +STUB("cFrUvCaU5KE", sceSystemServiceUsbStorageGetdentsOpen) +STUB("cFsD9R4iY50", _Thrd_exit) +STUB( + "cFsWvjIGSME", + _ZN7WebCore18TextureMapperLayer31paintSelfAndChildrenWithReplicaERKNS_25TextureMapperPaintOptionsE) +STUB( + "cG1IrGY+b9A", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB( + "cG1KiWbsc5w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEEC1Ev) +STUB("cG1VE2HMl6c", _ZN3sce4Json6StringD1Ev) +STUB("cG2OXrkSQMQ", _ZNK3sce2Np9CppWebApi11UserProfile2V16Avatar9sizeIsSetEv) +STUB("cG3t15OK4Ow", sceKernelAddFileEvent) +STUB( + "cG5hQhjFGog", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERx) +STUB("cG7spfNJ9o0", _ZN7WebCore17JSDOMGlobalObject12constructorsERKN3WTF14AbstractLockerE) +STUB( + "cGA5YiyttmA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEneERKS9_) +STUB( + "cGDhAcXyqP0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "cGLPwkXw47Y", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions9hasfieldsEv) +STUB("cGNyPw9-8h8", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody19npServiceLabelIsSetEv) +STUB( + "cGPDQtb6okE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEppEi) +STUB("cGSqbmobdJA", _ZN3JSC19HeapSnapshotBuilder10appendEdgeEPNS_6JSCellES2_) +STUB( + "cGUFMYxFjHE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEEdeEv) +STUB("cGZgcrq-L9A", _ZN3sce3Xml3Dom15DocumentBuilder10initializeEPKNS0_11InitializerE) +STUB("cGa7C2V0mG8", _ZN7WebCore8Document17createAttributeNSERKN3WTF10AtomStringERKNS1_6StringEb) +STUB("cGd91oqPS9U", mono_shared_ptr_array_free) +STUB("cGjO3wM3V28", sceSaveDataLoadIcon) +STUB( + "cGkV5cprP60", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEED1Ev) +STUB("cGlcT4rj5I8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEE11get_deleterEv) +STUB("cGqWgi2Q5DE", + _ZNK3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V16Rating6toJsonERNS_4Json5ValueEb) +STUB( + "cGt0ibdrCLE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEEaSERSA_) +STUB( + "cGvew2KwBS0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEED1Ev) +STUB("cGvpAO63abg", sceUserServiceSetNpDateOfBirth) +STUB("cGwSgyNnx+w", Java_java_io_ObjectInputStream_setPrimitiveFieldValues) +STUB("cGzgsNULjbg", _ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody12playersIsSetEv) +STUB("cH2+t98qn1g", _ZN7WebCore9FontCache17inactiveFontCountEv) +STUB("cH5xlMptXIA", utrie2_setRange32_67) +STUB("cH8iF18qplw", _ZNK3sce3Xml3Dom4Node12getLastChildEv) +STUB( + "cH9HKANp8+s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEppEv) +STUB( + "cHA+ohLQrhs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE6resizeEj) +STUB("cHIPTTSrNzo", _ZN12video_parser5vpcom6StringC2EPKc) +STUB( + "cHOqUAK7QXs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEC1Ev) +STUB( + "cHSe4k4US88", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE6resizeEj) +STUB( + "cHVZAu6YMsI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE8capacityEv) +STUB("cHdPIMRT8M0", jpeg_add_quant_table) +STUB( + "cHhSlmSA+lc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEE11get_deleterEv) +STUB("cHjAzIvKpMU", _ZN3JSC19HeapSnapshotBuilder29nextAvailableObjectIdentifierE) +STUB("cHk-bAGOD1g", _ZN3JSC16InternalFunction4nameEv) +STUB( + "cHkA51rMhsQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE21intrusive_ptr_add_refEPS9_) +STUB("cHpMVMzCW8s", _ZN12Mp4Retriever14processStblBoxEv) +STUB( + "cHsqqviwIOg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEppEi) +STUB("cHss3kYujzc", sceVencSetRateControlConfig) +STUB( + "cHve3NlljQQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEC1Ev) +STUB("cI2evWjFmTc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEEC1ERKS6_) +STUB( + "cI3FQXdNaw4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEEC2ERKS9_) +STUB( + "cI9gk+BZc08", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("cIA-+pV07Us", __libunwind_Unwind_ForcedUnwind) +STUB("cIEUZ-pzXZo", WKPopupMenuItemIsSeparator) +STUB("cIGZSzXyQSA", _ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody11statusIsSetEv) +STUB("cILFJB+EKeM", + _ZN23sceMetadataReaderWriter13ParserManager23registerParserInterfaceEjRKNS_15ParserInterfaceE) +STUB("cILPU-wLYWk", _sceNpManagerDefaultFreeImpl) +STUB("cIQ+IMvLlnM", mono_aot_System_Threading_Tasksunbox_trampolines) +STUB("cIR3BZ1uUQc", sceFsDevpfsMountForFSMP) +STUB( + "cIToQCBYpZM", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "cIU1u37vwjE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEE7get_refEv) +STUB("cIUTGl1g+n4", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationProperties9getLeaderEv) +STUB("cIYAby4aWvw", _ZN3sce7Toolkit2NP6Trophy9Interface12trophyUnlockEPKNS1_19UnlockTrophyRequestEb) +STUB( + "cIbuQo2-hIc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE8capacityEv) +STUB("cIcJ41juvWI", _ZN7WebCore22EmptyFrameLoaderClient27willReplaceMultipartContentEv) +STUB("cIhoIkS4McU", _ZNK3JSC17DebuggerCallFrame8positionEv) +STUB("cIjKVz1TiLU", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_12PresenceInfoEED2Ev) +STUB( + "cIjh6GR+gFA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE8copyFromERKS9_) +STUB("cIkPwfMQwWo", _ZN3sce3pss4core8graphics14NativeGraphics16UnmapDepthBufferEv) +STUB("cImJk9NoIRA", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119BandwidthProperties11getUpstreamEv) +STUB( + "cIpEFuT8Fi8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEC1EPS8_) +STUB( + "cIqyyRpj9KU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEEC1Ev) +STUB( + "cIrbhndgQ3M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEEC1ERSA_) +STUB("cIvB0ao1MVA", sceCustomMusicAudioOutSetAllMusicVolume) +STUB( + "cIwCNAYlKAU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEEaSERKSA_) +STUB("cIwTzTA3lhg", _ZN3sce2Np9CppWebApi13InGameCatalog2V517ContentDescriptorD2Ev) +STUB("cIwvWSXy5tk", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS15TusDataStatusesEE3setEv) +STUB("cJ--1xAbj-I", scePngDecDecodeWithInputControl) +STUB("cJ08oWAxit4", u_terminateWChars) +STUB("cJ1aLzpbyow", SpeechStatus) +STUB("cJ2Y4E-t258", il2cpp_api_register_symbols) +STUB( + "cJ4luw0AFt8", + _ZN3sce2Np9CppWebApi13InGameCatalog2V518ErrorEntityFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_11ErrorEntityEEE) +STUB( + "cJ8md8EbvrI", + _ZNK3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody23largeDataSizeLimitIsSetEv) +STUB("cJCUqFvaTvI", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE5emptyEv) +STUB("cJDX0wlcsV4", monoeg_g_unichar_type) +STUB("cJH9bcWJgME", _ZN7WebCore16BlobRegistryImpldlEPv) +STUB("cJHXjgNLesg", u_getDataVersion_67) +STUB( + "cJK-4j7yrQI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEEdeEv) +STUB("cJLTwtKGXJk", nearbyint) +STUB("cJLufzou6bc", sceVoiceGetBitRate) +STUB("cJOvwTknjnE", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersD1Ev) +STUB("cJR8BP83cZk", _ZNK3WTF9MediaTimengEv) +STUB("cJS+hJyCtwk", WKBundleClearDiskCachesByPattern) +STUB("cJWGxiQPmDQ", strsep) +STUB("cJWkEWBSVv0", _ZN3JSC7Symbols17ObjectPrivateNameE) +STUB( + "cJcJhRLo86k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "cJf21tlmSQM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEED1Ev) +STUB("cJgFKARD73M", _ZNK7WebCore17HTMLPlugInElement20isBelowSizeThresholdEv) +STUB("cJgPwghWnJg", mono_aot_Sce_Vsh_SyscallWrapperunbox_trampolines_end) +STUB("cJha2OgVEw0", _ZN4Manx11getFontNameEPKwjPKcRNS_17FontSynthesisHintE) +STUB("cJkb9aUGrzA", _ZN9Inspector31NetworkBackendDispatcherHandlerD1Ev) +STUB("cJl4lpQr+TA", sqlite3_clear_bindings) +STUB("cJnd8bs-Pws", _ZN7WebCore14StyleSheetListD2Ev) +STUB("cJokY6wAIvA", _ZN7WebCore19ResourceRequestBase19setHTTPHeaderFieldsENS_13HTTPHeaderMapE) +STUB("cJpD7EFNuak", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10setString6EPKc) +STUB("cJrYXu-MqFk", sceAudioOutArbitrationInitialize) +STUB("cJtZxPlTqcE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEcvbEv) +STUB("cJvOg1KV8uc", sigsetmask) +STUB("cJzob157j0Q", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIiEC2EPi) +STUB( + "cK-ZirMa+W4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEEC2ERKSA_) +STUB( + "cK0YMn0CLAM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("cK1UhCTySO0", GCC_except_table35) +STUB("cK6bYHf-Q5E", _ZN3sce4Json11InitializerC1Ev) +STUB("cKA5ZS4XiLQ", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities8ActivityC1EPNS1_6Common10LibContextE) +STUB("cKC1R+vxc3Q", _ZN3sce7Toolkit2NP2V210Tournament18OneVsOneTournamentD1Ev) +STUB("cKCf8d1mCwE", _ZN7WebCore8SVGNames18baseline_shiftAttrE) +STUB("cKFf+P20Ehc", uhash_removeElement) +STUB( + "cKQO8IOzTrY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "cKTBVcJJqyw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEaSERKS7_) +STUB("cKU3ncLO+vg", _ZN3JSC7Symbols39regExpPrototypeSymbolReplacePrivateNameE) +STUB( + "cKX2ouHSu7E", + _ZN3sce2Np9CppWebApi14SessionManager2V130RequestGameSessionMemberPlayer8fromJsonERKNS_4Json5ValueE) +STUB("cKYtVmeSTcw", sceFontOpenFontSet) +STUB( + "cKaSx30F-Cw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEE5resetEPS9_) +STUB("cKaXv3V+n+k", _ZN3WTF13ReadWriteLock9writeLockEv) +STUB("cKjWecemsZ4", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12Notification14NetStateChangeEE3setEv) +STUB("cKkWbPdGt5c", _ZN3JSC7Symbols24idWithProfilePrivateNameE) +STUB("cKl+d8u8mbk", sceRazorCpuUserSignalPostEx) +STUB("cKmuDdV8H6Q", monoeg_g_utf8_to_utf16) +STUB("cKndiZnt0EA", FT_Stroker_LineTo) +STUB("cKqnSGpeRUE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEE3getEv) +STUB( + "cKr0SeMT2e0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "cKv4c4JYSkg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEEptEv) +STUB("cKvcNpw4q7o", sceNetConfigSetDefaultRouteDev) +STUB("cKyUWdEKBME", sceKeyboardConnectPort) +STUB("cL2QUlo9Vnk", _getsockopt) +STUB("cL2mamO1FO8", + _ZN7WebCore28convertToIntegerEnforceRangeIaEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB("cL3dlqTcRqk", ubrk_first) +STUB( + "cL4-WO89SPQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEE7add_refEv) +STUB("cL58Z6yRYDk", _ZN7WebCore18PlatformTimeRangesC1Ev) +STUB("cL5ASE2-dwg", _ZN7WebCore14SQLiteDatabase5closeEv) +STUB("cLEfGWxS0OU", _ZNK7WebCore9FrameTree11scopedChildEj) +STUB( + "cLKnLXSRWy4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEppEi) +STUB("cLN+-CVotuU", WKContextGetGlobalStatistics) +STUB( + "cLO-c7tsuHk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEC1EPS7_PNS2_10LibContextE) +STUB("cLOhQkEQdLk", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V16StatusEEmmEi) +STUB( + "cLOo17NMbDk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEixEm) +STUB("cLOxfrqZoBM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEEaSERKS7_) +STUB("cLQZVqooubE", jpeg_mem_init) +STUB("cLV4aiT9JpA", sceNgs2RackCreate) +STUB("cLVQtfiOm+4", _ZN7WebCore8Document16isPageBoxVisibleEi) +STUB( + "cLYG1zgSmr0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEC1EPNS2_10LibContextE) +STUB( + "cLYKyfgVaEY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEmmEi) +STUB("cLaeFN6lcM0", _Touptab2) +STUB( + "cLao7qMaKWo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("cLdg9UqH2bM", _ZNK7WebCore16DocumentTimeline31acceleratedAnimationsForElementERNS_7ElementE) +STUB("cLdoHqi5Ezg", _ZN3sce2np14JsonDocBuilder16EscapeJsonStringEPKcPcmPm) +STUB( + "cLg4JAsWZjs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEEC2ERSA_) +STUB("cLh5kHxozkw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE7reserveEi) +STUB( + "cLi6g00Kcps", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEplEm) +STUB("cLk4VDINin0", WKDatabaseManagerDeleteDatabasesForOrigin) +STUB( + "cLluh3rmXdw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEEaSERKSA_) +STUB( + "cLn1tFTtp38", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEED1Ev) +STUB( + "cLnumTSb4HA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEC1EPKS8_) +STUB("cLubjojTkNM", __asan_set_shadow_00) +STUB("cLwJi62oO5E", + _ZN9Inspector15RemoteInspector16unregisterTargetEPNS_24RemoteControllableTargetE) +STUB("cLwb9r8x0+8", + _ZN3sce3pss5orbis9framework8PsmEvent10UnregisterEiPFvRKNS2_12PsmEventDataEPvES7_) +STUB("cLxF1QtHch0", sceCameraStartByHandle) +STUB("cLxbznPcsSI", wapi_set_crypto_policy_callback) +STUB( + "cM+QWS10gQI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE5emptyEv) +STUB("cM1AOABqE-Y", _ZN7WebCore17SQLiteTransaction8rollbackEv) +STUB( + "cM352pkEBSA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEmmEv) +STUB("cM3G2BsJ4Lo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEE11release_refEv) +STUB("cMA8f6jI6s0", sceNetConfigWlanBackgroundScanStart) +STUB( + "cMAs6l6sVOE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("cMEdJ1S+9Pk", _ZN7WebCore27ContentSecurityPolicyClientD1Ev) +STUB( + "cMKG8roTBYA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("cMOgkE2M2e8", _ZN3sce2np9EventFlagC1Ev) +STUB( + "cMQ2MJrBRKw", + _ZN9Inspector18InspectorHeapAgent15getRemoteObjectERN3WTF6StringEiPKS2_RNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsIS9_EEEE) +STUB("cMT3zkT2orY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEC2ERKS7_) +STUB( + "cMW0FrvHPhY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEE7add_refEv) +STUB("cMWWYeqQQlM", sceGnmSpmSetSelectCounter) +STUB("cMb+185-F8w", uspoof_swap_67) +STUB("cMj7li0eXgw", _ZN3sce2np3ipc17ServiceIpmiClient13DeleteRequestEii) +STUB( + "cMjxvOwHHno", + _ZN3JSC20PromiseDeferredTimer29hasDependancyInPendingPromiseEPNS_17JSPromiseDeferredEPNS_6JSCellE) +STUB("cMk57DZXe6c", sceRemoteplayImeGetEvent) +STUB( + "cMtWfMUFIY8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB("cMtsMmic4fQ", _ZNK3JSC14ProtoCallFrame26argumentCountIncludingThisEv) +STUB("cMwblzTBmTs", mono_get_exception_file_not_found) +STUB("cMwgSSmpE5o", _Mtxunlock) +STUB("cMwl-FMCjQk", _ZN7WebCore12ChromeClient34requiresFullscreenForVideoPlaybackEv) +STUB( + "cN-hurG55rs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEEdeEv) +STUB("cN0npxfbbWE", _ZN7WebCore31CrossOriginPreflightResultCache5emptyEv) +STUB("cN2zfHMPS5A", _ZN3WTF10StringImpl31convertToUppercaseWithoutLocaleEv) +STUB("cN71mMO1Bwo", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V15Error6toJsonERNS_4Json5ValueEb) +STUB("cN8iJ612c0k", WKBundlePageCopyOriginsWithApplicationCache) +STUB("cNAFUVtbSbs", _ZN7WebCore27ScrollingStateScrollingNode20setTotalContentsSizeERKNS_9FloatSizeE) +STUB("cNBi4vhbN9Q", g_CodeBlockPoison) +STUB( + "cNFJK92pVfA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE10setContextEPNS2_10LibContextE) +STUB("cNGg-Y7JQQw", _FGamma_big) +STUB("cNJLCdCvpRs", WKWebsiteDataStoreIsStatisticsVeryPrevalentResource) +STUB( + "cNVMjpp+T9c", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB( + "cNViX0gmpfY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("cNY-Qkk1CfA", sceCesSJisToUtf32le) +STUB( + "cNc3Y9xSeH4", + _ZN3sce2Np9CppWebApi7Matches2V127ResponseMatchResultsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_20ResponseMatchResultsEEE) +STUB("cNhCnbb72ow", g_strndup) +STUB( + "cNiyPhhvirk", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessions19unsetacceptLanguageEv) +STUB("cNrLnyzLDqg", _ZN7WebCore21NetworkStorageSession32setResourceLoadStatisticsEnabledEb) +STUB("cNsCV2uFsF8", _ZN3sce2Np9CppWebApi11Matchmaking2V15Cause9setSourceEPKc) +STUB( + "cNxCY8HYRVU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEdeEv) +STUB("cO+5GDZdVq8", _ZN7WebCore21MediaRecorderProvidernwEmPv) +STUB("cO+RepsRxmU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEE7add_refEv) +STUB("cO0-FwblLtY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEED1Ev) +STUB("cO0ldEk3Uko", _Atomic_fetch_add_1) +STUB("cO7+x8Nh8L4", + _ZN3sce2Np9CppWebApi14SessionManager2V118MatchmakingForRead8fromJsonERKNS_4Json5ValueE) +STUB("cO7RaIjn428", _ZN7WebCore18TextureMapperLayer8addChildEPS0_) +STUB("cO8rAm3Bthg", _ZN7WebCore20ISOOriginalFormatBoxC2Ev) +STUB("cOAgEurxqiM", mono_aot_Sce_Vshplt) +STUB("cOEmyDiWGOM", _ZN9Inspector22PageFrontendDispatcher13frameDetachedERKN3WTF6StringE) +STUB( + "cOJr0lI0SJ0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEmmEi) +STUB("cOK1qstZsMQ", _ZNK7WebCore3URL10protocolIsEPKc) +STUB("cOKT8SyGb2g", sceNpManagerIntUpdateBcAccessToken) +STUB("cOLPjEfQl7Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE5emptyEv) +STUB("cOLn5A3ZoqU", sceNpAsmClientGetNpComInfo2) +STUB("cOSEIVqQreM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEppEi) +STUB("cOVqfTsm6i4", _ZN7WebCore18JSHTMLVideoElement14finishCreationERN3JSC2VME) +STUB("cOYia2dE0Ik", asprintf) +STUB("cOZigTiADBk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEE6insertENS2_8IteratorIS4_EERKS4_RS7_) +STUB( + "cOdoV65wTIo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEEcvbEv) +STUB("cOfVCGYZqy0", jpeg_idct_5x5) +STUB("cOg-mDw8IyE", _ZN9Inspector22InspectorDebuggerAgent13setBreakpointERN3JSC10BreakpointERb) +STUB( + "cOgzpo3qO90", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEmmEv) +STUB("cOhy2UFiEiQ", jpeg_fdct_13x13) +STUB("cOkxYTuZQyU", cairo_path_destroy) +STUB("cOli1uePSwY", _ZN4IPMI4impl10ClientImpl19terminateConnectionEv) +STUB("cOn-hwc-a9Y", EVP_PKCS82PKEY) +STUB("cOnk31bagNI", _ZN3JSC9CodeCache5writeERNS_2VME) +STUB( + "cOrphSkgcGo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEE7add_refEv) +STUB( + "cOuYjDEePWU", + _ZN7WebCore20UserGestureIndicatorC2ESt8optionalINS_26ProcessingUserGestureStateEEPNS_8DocumentENS_15UserGestureTypeENS0_23ProcessInteractionStyleE) +STUB( + "cOvwBJyX1ps", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEEcvbEv) +STUB("cOzBIm8MGf4", + _ZN12video_parser5vpcom11string_util7mappingERSt3mapISsSsSt4lessISsESaISt4pairIKSsSsEEERS6_mcc) +STUB( + "cP7gcYKamNQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEppEi) +STUB("cPB4kSdgPxg", _ZN7WebCore23standardUserAgentForURLERKN3WTF3URLE) +STUB("cPEfST3B3C0", _ZN12video_parser13cVideoPathMgv20SetLicenseEKBVersionEi) +STUB("cPGyc5FGjy0", atanhf) +STUB("cPL+SGdCj24", _ZN7WebCore9HTMLNames14onkeypressAttrE) +STUB("cPNeOAYgB0A", _ZSt22_Get_future_error_whati) +STUB( + "cPU6Udt+l+0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEppEi) +STUB("cPWUbU0BLr0", monoeg_g_list_prepend) +STUB( + "cPZ2C8ZNEYI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEC2Ev) +STUB( + "cPcej3xetd0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE3endEv) +STUB("cPczGnSGDoI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEEneERKS7_) +STUB( + "cPfbd3fxHHU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEcvbEv) +STUB( + "cPgQbrqvywI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEeqERKS9_) +STUB("cPguhb1+Hhw", _ZN7WebCore11MathMLNames15accentunderAttrE) +STUB( + "cPiJB-CcxeE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEEaSERKSA_) +STUB("cPn3fXO-J5M", sceVdecCoreSetDecodeInputSvp) +STUB( + "cPnmuOUfQhw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE21intrusive_ptr_add_refEPS9_) +STUB("cPrEirB4ku8", _ZN7WebCore8SVGNames6byAttrE) +STUB("cPsMwFBQkYw", WKWebsiteDataStoreStatisticsResetToConsistentState) +STUB("cPtUwd8Dtgk", sceDebugGetUltRuntimeInfo) +STUB("cPtt38dvZK8", WKBundleFrameGetVisibleContentBoundsExcludingScrollbars) +STUB("cPwFNe4+Sgk", _ZN3sce7Toolkit2NP2V29Challenge10ChallengesC1Ev) +STUB("cPwyly8OBnU", fuse_lowlevel_notify_inval_entry) +STUB("cQ+WzQ-i7a4", u_fflush_67) +STUB( + "cQ4W2QDlSbk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEEC2Ev) +STUB("cQ5MQgAU-mY", _ZTVN9Inspector20InjectedScriptModuleE) +STUB("cQ6DGsQEjV4", sceVoiceReadFromOPort) +STUB("cQC6gpOuHZY", _ZNK7WebCore14DocumentLoader11subresourceERKNS_3URLE) +STUB( + "cQIIX3G2+iI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEppEv) +STUB( + "cQROEYoBgac", + _ZN3sce2Np9CppWebApi7Matches2V126ResponseTeamResultsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_19ResponseTeamResultsEEE) +STUB("cQRxdwTPJU8", sceDataTransferTargetAbortGetDeviceInfoApplication) +STUB( + "cQTNZ3eqvKM", + _ZN3sce2Np9CppWebApi14SessionManager2V134RequestGameSessionSpectatorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_27RequestGameSessionSpectatorEEE) +STUB( + "cQZoTKuHhsM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "cQaY7Qre6CA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEC1Ev) +STUB("cQb8Zr8Q0Y0", sceAmprCommandBufferWaitOnCounter_04_00) +STUB("cQehulx2PLk", _ZN3JSC6JSLock12DropAllLocksC2EPNS_9ExecStateE) +STUB("cQkBH-pXhF0", sceNpSessionSignalingDeactivate) +STUB("cQke9UuBQOk", sceKernelMunmap) +STUB( + "cQr+XKv1YGQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEEC2ERSA_) +STUB("cQtHZEmXSC8", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors10getMessageEv) +STUB("cQvetBe+n6M", _ZN3JSC2VMD1Ev) +STUB("cR-LBKUNmT8", __asan_set_death_callback) +STUB("cR-yQldyXvs", FT_Bitmap_Convert) +STUB("cR3mfcJtiDU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEC1Ev) +STUB("cR4ywoNCJ0M", _ZN3sce3Xml3Sax6Parser5resetEv) +STUB( + "cR5mwEgzOrY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "cR7rH+ffwiQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEdeEv) +STUB("cR8fjcArC+s", _ZN7WebCore9HTMLNames12manifestAttrE) +STUB("cR8sDtBCHvA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEC1ERS7_) +STUB("cRCjGx+U+og", _ZN7WebCorelsERN3WTF10TextStreamENS_8WindRuleE) +STUB("cREm6CP8oyc", ulocimp_toLegacyType_67) +STUB("cRGdsEkmjTU", sceApplicationGetMode) +STUB("cRILAEvn+9M", sceNpUnregisterNpReachabilityStateCallback) +STUB("cRMHBi70QRE", _ZN3JSC22FullGCActivityCallback12lastGCLengthERNS_4HeapE) +STUB("cRN88TB6Gi8", _ZN3sce2Np9CppWebApi14SessionManager2V130ResponsePlayerSessionSpectatorD2Ev) +STUB( + "cROiC617+wI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("cRQApILFOrQ", sceNpGriefReportCdCreateRequest) +STUB( + "cRSJysDpVl4", + _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE11do_get_yearES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm) +STUB("cRVmNrJDbG8", sceNpTusAddAndGetVariable) +STUB("cRYyxdZo1YQ", _Atomic_is_lock_free_4) +STUB("cRabutqUG7c", sceNpServerErrorJsonMultiGetErrorCode) +STUB( + "cRgWVeaAhrg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEptEv) +STUB( + "cRj1SwlTCYI", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("cRl-GP5GGx8", WKWebsiteDataStoreSetStatisticsTopFrameUniqueRedirectFrom) +STUB("cS-3VbB-Ceo", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia11ScreenshotsEEC2Ev) +STUB( + "cS0kfHYeoVA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("cS0p1-NFAsw", jinit_input_controller) +STUB("cS2oTfspyrU", _ZN7WebCore24CoordinatedGraphicsLayer27releaseImageBackingIfNeededEv) +STUB( + "cS3bHxhPv1c", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEEcvbEv) +STUB("cSC1n6rXQik", WKPreferencesGetSubpixelCSSOMElementMetricsEnabled) +STUB( + "cSE8b+8lToM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEC1Ev) +STUB("cSHyMR8vSNo", WKAuthenticationChallengeIsForMainResource) +STUB("cSKCkTOQ6rg", mono_aot_Mono_CSharpjit_code_end) +STUB("cSLbQUQO2Ns", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer9terminateEv) +STUB( + "cSORhbzwlFw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE8capacityEv) +STUB("cSUfCJp7YEw", _ZN7WebCore20PasteboardCustomDataC1Ev) +STUB( + "cSagL5V+O58", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE5clearEv) +STUB("cSdTN0FvT5A", ucol_strcollUTF8_67) +STUB("cSiAnTMGwuI", _ZN7WebCore9HTMLNames15cellpaddingAttrE) +STUB("cSik-vlfY2k", X509_get0_signature) +STUB("cSk5YDsIu30", _ZN3sce2Np9CppWebApi12Leaderboards2V15Error10setMessageEPKc) +STUB("cSkKJIJGV6k", _ZNK7WebCore11JSDOMWindow12openDatabaseERN3JSC14JSGlobalObjectE) +STUB( + "cSpGAX0-IdU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE23clearOnFinishedCallbackEv) +STUB("cSsNeg1iICY", + _ZN3JSC29constructArrayNegativeIndexedEPNS_14JSGlobalObjectEPNS_9StructureEPKNS_7JSValueEj) +STUB("cStwmF0rgi8", _ZNK3JSC18PropertyDescriptor8writableEv) +STUB("cT4KF3cnNwI", g_strjoinv) +STUB( + "cT5Rvt2ejRM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEdeEv) +STUB("cT71x7KleG0", JSValueMakeNumber) +STUB("cTDYxTUNPhM", pthread_condattr_getclock) +STUB( + "cTFdw8hfEjE", + _ZN3sce2Np9CppWebApi15Personalization2V128GetAccessCodeResponseFactory7destroyEPNS3_21GetAccessCodeResponseE) +STUB("cTGkc6-TBlI", sceNetTerm) +STUB( + "cTHSqC-tS0M", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("cTI4cXxkZxs", sceDataTransferHostNotifyEasySignInReady) +STUB( + "cTIIas6-D-A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEE11get_deleterEv) +STUB("cTLUQmCfWNQ", _ZN3sce2Np9CppWebApi6Common15DefaultResponseD1Ev) +STUB( + "cTN3wI4-ILM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE8pushBackERKS8_) +STUB( + "cTPgztVf4Hs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEE11release_refEv) +STUB( + "cTTHfdLycYw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEE11release_refEv) +STUB("cTTUl7wV18s", _ZN12video_parser13cVideoPathM4vC2EPKc) +STUB("cTWdQpoKaBY", _Z20WTFCrashWithInfoImpliPKcS0_immmmmmm) +STUB("cTXmoO++UNM", _ZN7WebCore22externalRepresentationEPNS_5FrameEj) +STUB( + "cTaSqnpAkyg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEEaSERSA_) +STUB( + "cTcD-t5Enl4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEcvbEv) +STUB("cTe4HH0ztac", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEED1Ev) +STUB("cTg4b27d7RE", uloc_getISOLanguages_67) +STUB("cThV6oddDd8", + _ZN3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayer16unsetCustomData1Ev) +STUB( + "cThj1YopQIA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEED2Ev) +STUB("cTiPQSA8Nkk", ures_getVersionByKey_67) +STUB( + "cTkn-a6G4iY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("cTkrwldaa1w", _ZN7WebCore10OriginLockD2Ev) +STUB("cTpHiHGMWpk", sceUserServiceSetPbtcSundayHoursStart) +STUB("cTq2UrFRl-s", _ZN3sce3Xml3Dom8Document12importParentEPKS2_NS1_6NodeIdE) +STUB("cTu3lvym8us", _ZThn136_NK7WebCore16HTMLMediaElement6volumeEv) +STUB( + "cTzJsoIzccY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE5beginEv) +STUB("cU-HOGpi5TQ", _ZN7WebCore15AsyncFileStreamD2Ev) +STUB( + "cU-ak14Qg4Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEC2EPS8_) +STUB( + "cU613sYCMDc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEmmEi) +STUB("cU6KWvsfe9s", _ZN3sce7Toolkit2NP2V26Trophy16UnlockedTrophiesC2Ev) +STUB("cUCo8OvArrw", sceGnmDrawIndirectCountMulti) +STUB("cUDs1oT5mqM", PKCS12_parse) +STUB("cUKI3HHyPbA", _ZN7WebCore18TextureMapperLayerC1Ev) +STUB( + "cUMuzzBVL3Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEE11get_deleterEv) +STUB("cUPgTQd5amY", Java_sun_reflect_NativeMethodAccessorImpl_invoke0) +STUB( + "cURWASlQ3CY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEEcvbEv) +STUB("cUU3-6ewPWM", _ZN3WTF14AtomStringImpl11addSlowCaseERNS_15AtomStringTableERNS_10StringImplE) +STUB( + "cUgSGb5e4a4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB( + "cUhAnvjfMMw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEE7add_refEv) +STUB("cUpjOm76d80", _ZN15AbstractStorage15FacebookContentD0Ev) +STUB( + "cUtmUrayzeA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEED2Ev) +STUB( + "cUu0sJaw9ac", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEEC2ERSA_) +STUB( + "cUw-+DZEy+U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEC1ERS7_) +STUB("cV-9aAuHxnA", _ZN3sce7Toolkit2NP2V28Matching4RoomC2Ev) +STUB( + "cV17fxzUSCY", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("cV32x-ln3Rg", _ZN12video_parser5vpcom14_DirectoryOpenEPcPPNS_8_vp_fileE) +STUB("cV6KpJiF0Ck", _ZNSt13basic_filebufIwSt11char_traitsIwEE9_EndwriteEv) +STUB("cV8oVafV7Fw", _ZNK3WTF10StringImpl8endsWithEPKcj) +STUB("cVC4JXxpb-s", sceKernelGetFakeFinalizeMenuForRcmgr) +STUB( + "cVCnEt05jaw", + _ZN3sce2Np9CppWebApi14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyD2Ev) +STUB( + "cVF4rr2hP3g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEEaSERSA_) +STUB("cVI2hzWXFZU", sceKernelDeleteSavedApp) +STUB( + "cVLILiHuTKM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB("cVQVNFBCvds", _ZNK3sce3Xml3Dom4Node13getAttributesEPNS1_8NodeListE) +STUB("cVQjGboQO4o", mono_class_get_event_token) +STUB("cVRV8StiMBY", WKPreferencesSetJavaScriptMarkupEnabled) +STUB("cVRZlC-iNk4", sceUlpMgrVshMountCmd) +STUB( + "cVSUblwHP90", + _ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer15setPushContextsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_22GameSessionPushContextEEEEE) +STUB("cVSk9y8URbc", posix_memalign) +STUB("cVUkEio3kmE", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V124BandwidthUpstreamMetrics10getAverageEv) +STUB( + "cVXqwl+yjmg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE7popBackEv) +STUB( + "cVYQJbd56Cc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEeqERKS9_) +STUB( + "cVdwqhIyIPM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("cVeBif6zdZ4", sceNpTusGetMultiUserDataStatusForCrossSave) +STUB( + "cVkTSqPiLuA", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "cVl8W0+enXM", + _ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetail18setProfilePicturesERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_6AvatarEEEEE) +STUB("cVln6YGk2JI", + Java_com_sony_bdjstack_javax_media_controls_VideoSystem_getGraphicsPlaneOffsetValue) +STUB( + "cVmuYl+GttU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEixEm) +STUB("cVoHoEWBOjs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEEaSERS9_) +STUB("cVtg8HvOtHc", _ZN3sce2Np9CppWebApi6Common8IteratorINS2_6StringEEppEi) +STUB( + "cVvVevDbbd8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEmmEv) +STUB( + "cVyb37UpDKU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEeqERKS9_) +STUB( + "cW-s-XmLgjM", + _ZN3JSC7JSValue14putToPrimitiveEPNS_14JSGlobalObjectENS_12PropertyNameES0_RNS_15PutPropertySlotE) +STUB( + "cW0PjZMgIZU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "cW0ZXA+WO5Y", + _ZN3sce2Np9CppWebApi14IdentityMapper2V349PsnWebError_error_validationConstraintInfoFactory6createEPNS1_6Common10LibContextEPKcS9_PNS5_12IntrusivePtrINS3_42PsnWebError_error_validationConstraintInfoEEE) +STUB("cW7VCIMCh9A", CRYPTO_uninitAsymmetricKey) +STUB("cW8v1TkwC4E", + _ZN3sce2Np9CppWebApi7Matches2V133RequestTemporaryCompetitiveResult8fromJsonERKNS_4Json5ValueE) +STUB("cWGGXoeZUzA", sceNetEventCallbackCreate) +STUB("cWGxJZeouRg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEC1ERKS7_) +STUB("cWHdm8MyA08", WKPageSetPageFormClient) +STUB( + "cWPZG8GcbEU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEC2EPS6_PNS2_10LibContextE) +STUB( + "cWVp93HF2Nc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEdeEv) +STUB("cWaCDW+Dc9U", _ZNKSt7collateIwE7do_hashEPKwS2_) +STUB("cWbjni1-hO0", _ZN7WebCore11MathMLNames7srcAttrE) +STUB("cWdToDzrbwo", _ZN7WebCore8SVGNames18primitiveUnitsAttrE) +STUB("cWeHJGT4So4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEaSERKS7_) +STUB( + "cWfaYoFU7Es", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEEC2ERKSA_) +STUB("cWgvLiSJSOQ", __atomic_load_1) +STUB("cWhUEvN1sPM", WKPreferencesSetModernMediaControlsEnabled) +STUB("cWkAVHLzoMk", WKBundleSetAllowStorageAccessFromFileURLS) +STUB( + "cWlY8dDUlhI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("cWqvLZtFrOw", _ZN7WebCore16HTMLMediaElement8setMutedEb) +STUB("cWsZ0K-ZAJU", _ZN9Inspector26DebuggerFrontendDispatcherC1ERNS_14FrontendRouterE) +STUB("cWsZswBMjqg", _ZN3sce2np9JsonArray5ClearEv) +STUB( + "cWtSpnDEqI4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEE7add_refEv) +STUB("cWuK-XzvNLg", _ZN3sce7Toolkit2NP10IdDatabase17getNpServiceLabelENS1_11ServiceTypeE) +STUB( + "cWvO+1DRsqU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEEptEv) +STUB("cX6o7inCqxA", _ZN3JSC21throwOutOfMemoryErrorEPNS_9ExecStateERNS_10ThrowScopeE) +STUB("cX8tQHDkvH0", sceVnaSendAgentEvent) +STUB("cXBATQIf6Yc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEE3getEv) +STUB( + "cXDpY4DoRco", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEC1EPNS2_10LibContextE) +STUB("cXL+LN0lSwc", + _ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE5_InitERKSt8_Locinfo) +STUB("cXNcgMR-QPc", __asan_exp_store8) +STUB("cXQ1mGsUUso", _ZN3sce3Xml12MemAllocatorC2Ev) +STUB( + "cXTR0XIioL8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEE11release_refEv) +STUB("cXUbCLbi6mw", _ZNK3WTF10StringImpl10startsWithERKS0_) +STUB("cXUs-LP0TGE", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE5beginEv) +STUB("cXWnhYkh4iA", _ZN7WebCore10Pasteboard5writeERKNS_15PasteboardImageE) +STUB("cXYOwTVAuMs", _ZN3sce2np12HttpTemplateD0Ev) +STUB("cXZ9KJTKG0U", il2cpp_runtime_class_init) +STUB("cXaNyPwDaB8", WKContextConfigurationUsesWebProcessCache) +STUB( + "cXlwkmwV7fo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEppEi) +STUB("cXnAc2y3AAM", _ZN15AbstractStorage15FacebookContent5FlushEv) +STUB("cXpyESo49ko", sceNpAppInfoIntCreateRequest) +STUB( + "cXraSsr1Sv4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE4sizeEv) +STUB("cXvo8vER868", + _ZNK3sce2Np9CppWebApi11UserProfile2V125GetBasicPresencesResponse6toJsonERNS_4Json5ValueEb) +STUB("cXxWzbWi9dE", _ZN7WebCore9GLContextdaEPv) +STUB( + "cXyniL+SZBM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEaSERS7_) +STUB("cY0yOS6Kzhw", _ZN7WebCore18JSHTMLImageElement11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB( + "cY19oNtFOEQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEED2Ev) +STUB("cY3lUQytj6U", mono_btls_x509_get_subject_name_string) +STUB("cY4yCWdcTXE", __fixdfti) +STUB("cY6ZpCec3Oo", sceMatTagPool) +STUB("cY8dSl6Rqr4", u_errorName) +STUB( + "cYAo+k7ZU+g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEC2Ev) +STUB("cYDA0oEX5Y4", _ZN3sce4Json6Parser10parseArrayERNS0_5ValueERNS0_11InputStreamEPS2_) +STUB( + "cYEcUf6pAZM", + _ZN3sce2Np9CppWebApi14SessionManager2V136GetFriendsPlayerSessionsResponseBodyC1EPNS1_6Common10LibContextE) +STUB( + "cYN9+rsnnpA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE4sizeEv) +STUB("cYNk9M+7YkY", clearerr_unlocked) +STUB("cYNmzCqlzIA", scePerfTraceAprNameUpdate) +STUB( + "cYOa8jKe4Iw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEixEm) +STUB("cYPhGSahQpo", _ZN3sce2Np9CppWebApi6Common8IteratorIdEppEi) +STUB("cYSjErZW5gE", scePigletGetShaderCacheConfiguration) +STUB("cYUS1snGtYU", _ZN3JSC6JSLock12DropAllLocksC1EPNS_14JSGlobalObjectE) +STUB("cYW1ISGlOmo", sceNetInfoDumpStart) +STUB("cYaHtBekfXw", _ZN7WebCore7RunLoop21initializeMainRunLoopEv) +STUB( + "cYdqE-4jp7o", + _ZN7WebCore5Frame6createEPNS_4PageEPNS_21HTMLFrameOwnerElementEON3WTF9UniqueRefINS_17FrameLoaderClientEEE) +STUB("cYgoSiAl3V0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEEC2ERS7_) +STUB( + "cYhnRR03jXU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEixEm) +STUB("cYlYsDQY500", __sanitizer_finish_switch_fiber) +STUB("cYlgRPtIF8g", rgctx_fetch_trampoline_rgctx_15) +STUB("cYnBkgm8I0c", sceVrServiceDialogGetResult) +STUB( + "cYp1Ec2gddo", + _ZN3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyC2EPNS1_6Common10LibContextE) +STUB("cYpmD0Uq19I", utrace_format_67) +STUB("cYr5gmGlS+s", _ZN3JSC4Yarr25unicodeMatchPropertyValueEN3WTF6StringES2_) +STUB("cYrMGk1wrMA", sceFontCreateWords) +STUB("cYwm3B+Hsc8", + _ZN3JSC8JSObject26setPrototypeWithCycleCheckERNS_2VMEPNS_14JSGlobalObjectENS_7JSValueEb) +STUB( + "cYx40o4b82U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEE7get_refEv) +STUB( + "cYy9aivrId4", + _ZN3sce2Np9CppWebApi14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBody11setPlayerIdEPKc) +STUB( + "cZ4Q47ZT+GY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEC1EPS8_) +STUB( + "cZ4lfRtWgl8", + _ZN9Inspector14ConsoleMessageC1EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelERKN3WTF6StringEONS5_3RefINS_15ScriptArgumentsENS5_13DumbPtrTraitsISA_EEEEPNS1_9ExecStateEm) +STUB("cZACKbUbGv8", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container23contentDescriptorsIsSetEv) +STUB("cZCJTMamDOE", sceShellCoreUtilPostPsmEventToShellUI) +STUB("cZEsrDKa9Dg", delegate_virtual_invoke_imt_2) +STUB("cZGh0gGEgJo", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsD2Ev) +STUB( + "cZJFK2VPA+s", + _ZN7WebCore24CoordinatedGraphicsLayer8addChildEON3WTF3RefINS_13GraphicsLayerENS1_13DumbPtrTraitsIS3_EEEE) +STUB( + "cZQqo1+HyFQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEC1Ev) +STUB("cZRh8gnSxNc", sr05) +STUB( + "cZS6Jw7+cqM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE5clearEv) +STUB( + "cZWtpniPVMQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE5beginEv) +STUB( + "cZZx+ejZWeY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB("cZeKveV6SNg", _ZN3sce7Toolkit2NP2V28Commerce7SkuInfo13SKU_PRICE_LENE) +STUB( + "cZeOc5UpucM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEEC1Ev) +STUB( + "cZfsvErAAbE", + _ZN9Inspector20InjectedScriptModule14ensureInjectedEPNS_21InjectedScriptManagerEPN3JSC14JSGlobalObjectE) +STUB("cZgMAuJri1w", _ZN8meta_gen13JpegRetriever15ProcessApp2DataEv) +STUB("cZhAWU7WEVw", sceCesUhcToUtf16le) +STUB( + "cZj8L5oGDHw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEdeEv) +STUB("cZp79Bc6ovs", sceHttpCacheInit) +STUB("cZq1zIzFN7s", _fpathconf) +STUB("cZrLCe6EKEA", WKBundlePageCreateSnapshotInViewCoordinates) +STUB("cZt-5yh5uzw", GCC_except_table20) +STUB( + "ca+RVf6RKIg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEptEv) +STUB("ca+ZZJ4g1tY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEixEm) +STUB("ca112aPs2Rc", + _ZNK7WebCore4Node9textRectsERN3WTF6VectorINS_7IntRectELm0ENS1_15CrashOnOverflowELm16EEE) +STUB("ca4KPvp0qLQ", sceAgcDcbSetIndexSizeGetSize) +STUB("ca5SM553bXY", uset_compact_67) +STUB("ca7v6Cxulzs", sceKernelSetGPO) +STUB("ca9NTixtg94", _ZNK7WebCore6Editor17selectionHasStyleENS_13CSSPropertyIDERKN3WTF6StringE) +STUB("caEGQsORaZM", + Java_com_sony_gemstack_org_dvb_application_AppsDatabaseImpl_n_1acceptCurrService) +STUB("caF3ritf1d4", _ZN9Inspector15RemoteInspector19sendMessageToTargetEjPKc) +STUB("caGu16SLet0", mono_class_is_valid_enum) +STUB("caJfXlnEM4M", sceValidationGpuGetDiagnosticInfo) +STUB("caM6qseCSfI", _ZN7WebCore21SQLiteDatabaseTracker24hasTransactionInProgressEv) +STUB("caP-y4fH-zQ", _ZN3sce4Json19InternalInitializerD2Ev) +STUB( + "caTOccfH7C0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE6resizeEj) +STUB("caY3n4745ro", mono_aot_System_Xmljit_code_end) +STUB("caYGtoC0gW0", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEEmmEv) +STUB("caYaUIzCYvM", _ZNK7WebCore18TextureMapperLayer38descendantsOrSelfHaveRunningAnimationsEv) +STUB("caZqJUbMXKc", WKPageRubberBandsAtLeft) +STUB("cadVHKe0G4Q", utf8_back1SafeBody_67) +STUB( + "caf4K8JEpIg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE8pushBackERKS8_) +STUB( + "cahotuEYsKo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEC1ERS7_) +STUB("cakV3vAIHjs", _ZN7WebCore14DocumentLoader8setTitleERKNS_19StringWithDirectionE) +STUB("camy5cvmZII", glDrawRangeElements) +STUB( + "canImVOEDFc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEC2EPS8_) +STUB("caqgDl+V9qA", sceGameLiveStreamingStartDebugBroadcast) +STUB( + "catgUgGN3oU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEEC1EPS7_PNS2_10LibContextE) +STUB( + "cauxSaYKHWc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEplEm) +STUB( + "cb8q78aWY0c", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEeqERKS9_) +STUB( + "cbCPqtLoSNE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEE7add_refEv) +STUB( + "cbDC22bci+o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEC2Ev) +STUB("cbHNTv7wJAY", _ZN3sce7Toolkit2NP2V211SharedMedia11ScreenshotsC1Ev) +STUB("cbHOM72If3c", _ZN3sce2Np9CppWebApi13InGameCatalog2V57ProductD2Ev) +STUB("cbJSAoeH-mo", _ZN3sce7Toolkit2NP2V27NpUtils7Request24SetTitleIdForDevelopmentD1Ev) +STUB( + "cbMKWC77kiE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEEptEv) +STUB("cbShhWbs07A", scePerfTraceSpmCreate) +STUB("cbSw7XoHt-k", + _ZN7WebCore15JSEventListener6createEN3JSC7JSValueERNS1_8JSObjectEbRNS_15DOMWrapperWorldE) +STUB( + "cbTVoSJEDik", + _ZN7WebCore16BlobRegistryImpl35registerBlobURLOptionallyFileBackedERKNS_3URLES3_ON3WTF6RefPtrINS_21BlobDataFileReferenceENS4_13DumbPtrTraitsIS6_EEEERKNS4_6StringE) +STUB("cbTjX08xkIE", sceCesEucJpToUtf32) +STUB("cbav3fQYrjw", _ZN7WebCore28InspectorFrontendClientLocal27restoreAttachedWindowHeightEv) +STUB( + "cbglulYCVUk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE7popBackEv) +STUB( + "cblfm+0UXTM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE5beginEv) +STUB("cbn9Di01j0k", sceKernelIsAuthenticNeo) +STUB("cbnC1jsRLzI", _ZN7WebCore11DisplayList22BeginTransparencyLayerD2Ev) +STUB("cbpbhWr1RmU", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_13TusDataOutputEED1Ev) +STUB("cbtiPJByQn0", _WStoxflt.digits) +STUB( + "cbvINV8V2Hg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEED2Ev) +STUB("cbvW20xPgyc", _ZTISt14error_category) +STUB( + "cbxONcEcUiA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("cbxQvl0FscU", _ZN9Inspector18InspectorHeapAgentD0Ev) +STUB("cbyLM5qrvHs", __subvti3) +STUB( + "cc-UPa3cZrU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "cc6CQupF0YA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEC1EPS8_) +STUB( + "ccBhqWaV9eY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB( + "ccCW-a-yz9Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE3endEv) +STUB("ccL8qtt32N0", scePerfTraceAprNameDeleteBufferNotifyEvent) +STUB( + "ccLCbXAem00", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "ccNAL1SEDQc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEC2Ev) +STUB( + "ccNaXIJlZ3M", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEdeEv) +STUB("ccVvHF4wZME", sceFsInitCreatePfsSaveDataOpt) +STUB( + "ccYvva3j2J8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEC1Ev) +STUB( + "ccZl2BBB0NY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEEaSERKSA_) +STUB("cccaKMKJHdI", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEEixEm) +STUB("cckSZEW4+oQ", sceCesUtf16StrToMbcsStr) +STUB( + "ccvvykDLCeg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "cczOyRZVWXE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEED2Ev) +STUB("cd+Rtw+D1x8", sceAudioOut2PortDestroy) +STUB( + "cd+lTYsnGKA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB( + "cd0jkW0JpCA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEptEv) +STUB( + "cd5IYd-+RLA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEneERKS9_) +STUB( + "cdA+xk2ipgk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEE7get_refEv) +STUB("cdDRpqcFGbU", sceAgcDmaDataPatchSetSrcAddressOrOffsetOrImmediate) +STUB("cdEBlKoN8tw", _ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors7setPathEPKc) +STUB( + "cdEdQvskd6I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE8copyFromERKS9_) +STUB( + "cdFvqxOEXnI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEEC1Ev) +STUB( + "cdHARC0u0OQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEC2Ev) +STUB( + "cdHzAIQOlZY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEC1ERS8_) +STUB( + "cdNTOggQvE8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEEC1ERKSA_) +STUB("cdNXHhTFhxI", + _ZN7WebCore19LayerRepresentation19retainPlatformLayerEPNS_26TextureMapperPlatformLayerE) +STUB( + "cdNm5d0Wsfs", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE10setContextEPNS2_10LibContextE) +STUB( + "cdUKR2In-kk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEE5resetEPS9_) +STUB( + "cdYeNWNAdYE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEeqERKS9_) +STUB("cdYzqB96vXg", WKPageSetPageDiagnosticLoggingClient) +STUB("cdcADXfgGRw", _ZN23sceMetadataReaderWriter13ParserManagerC1Ev) +STUB("cddM72CYeNQ", _ZN3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayerD2Ev) +STUB("cdgE-1IlsWI", _ZN3JSC24JSAsyncGeneratorFunction6s_infoE) +STUB( + "cdktYmuxhrw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEaSERKS7_) +STUB( + "cdmgUSsOVmw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEED2Ev) +STUB("cdo-5lVs1Zk", _ZN3sce3Xml3Dom4NodeC2ERKS2_) +STUB( + "cdoQnz0+04U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEixEm) +STUB("cdqOFyupRS4", sceNpSnsFacebookDialogTerminate) +STUB("cdr2T4SoIyU", cairo_stroke) +STUB("cduV1f0dcGQ", sceAgcAcbAtomicGds) +STUB("cduy9v4YmT4", sceSaveDataSetSaveDataMemory2) +STUB("cdvamfNQhXs", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12BandwithInfoEE19setCustomReturnCodeEi) +STUB("cdxE2NbkV9g", sceIduInit) +STUB( + "cdzE1XxWUqQ", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC1ERKSA_) +STUB("ce+00gaZAN0", + _ZN7WebCore27AuthenticationChallengeBase7compareERKNS_23AuthenticationChallengeES3_) +STUB("ce8U+GDyrbs", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18SessionInformationEE8allocateEmPKv) +STUB( + "ceDKhjJTraM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEEC2ERSA_) +STUB( + "ceDN6U6NHcw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEC1EPS8_) +STUB("ceIT7njviKk", WKInspectorIsConnected) +STUB( + "ceJ973STOT8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEC2EPKS8_) +STUB( + "ceJDeSzwK6Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEEC2EPS6_PNS2_10LibContextE) +STUB( + "ceKRZFO85u4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEE7get_refEv) +STUB( + "ceMA3z+8G1M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEC2Ev) +STUB("ceQ-P-FXwXY", + _ZN3sce7Toolkit2NP6Trophy9Interface17trophyRegisterSetEPKNS1_21RegisterTrophyRequestEb) +STUB( + "ceQmKlVYT6Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEEptEv) +STUB("ceY2f+JsYKk", + _ZNSt15basic_streambufIwSt11char_traitsIwEE7seekoffElNSt5_IosbIiE8_SeekdirENS4_9_OpenmodeE) +STUB("cejlyvC7+N8", sceAvSettingEnterAudioMuteForShutdown) +STUB("cevflsEJ55g", rgctx_fetch_trampoline_rgctx_57) +STUB("cf-WMA0jYCc", sceNpTusSetMultiSlotVariableA) +STUB( + "cf5FxVdy8ZU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEEC1Ev) +STUB("cf5vhxt1QW4", utrans_trans_67) +STUB("cf9BIMy4muY", sceUserServiceGetSystemLoggerHashedAccountIdTtl) +STUB( + "cf9cJJCXbGU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE7popBackEv) +STUB( + "cf9whLhWXTM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE8pushBackERKS8_) +STUB("cfAXurvfl5o", __cxa_allocate_exception) +STUB("cfCmCJkdUng", mono_get_delegate_begin_invoke) +STUB("cfJLSVhprjE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEEeqERKS7_) +STUB("cfJZThTSxQ0", sceShellCoreUtilReleaseRemotePlayCpuBudget) +STUB("cfJhLH8uj4k", JSObjectMakeDate) +STUB("cfL8uDvjGwU", _ZN3sce2Np9CppWebApi6Common6VectorIlE7popBackEv) +STUB("cfUat6IQe2U", _ZN3sce7Toolkit2NP2V212NetworkUtils16NetStateDetailed5resetEv) +STUB("cfV9+PXtZts", umutablecptrie_setRange) +STUB("cfhPuDjAfxg", _ZN3sce7Toolkit2NP21AccessCodeInputParamsC2Ev) +STUB("cfjAjVTFG6A", pthread_suspend_user_context_np) +STUB("cfkHamyAyEk", Java_java_net_PlainDatagramSocketImpl_disconnect0) +STUB("cfnEnkthkGo", WKBundlePageSetTopOverhangImage) +STUB("cfpRP3h9F6o", _FPlsw) +STUB("cfsLfZLMLVw", _ZN3WTF9MediaTime16createWithDoubleEdj) +STUB( + "cftb9VLbLZY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEE5resetEPS9_) +STUB( + "cfu8UjoKktY", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "cfx+uHdLJzo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("cfz2mYyhxcQ", _ZN3JSC5JSMap6s_infoE) +STUB( + "cfzsbj7T4Ek", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEEdeEv) +STUB("cfzzb3gH4zk", mono_lookup_internal_call) +STUB("cg-VoPqZYss", sceFiosFHRead) +STUB("cg0EcOhb4mI", _ZN12Mp4Retriever11processMainEv) +STUB( + "cg5SkPjc6fw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEC2EPNS2_10LibContextE) +STUB("cg5bcS+k9P8", _ZN7bmalloc11IsoTLSEntrynwEm) +STUB( + "cg6k3+zkMtA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEaSERKS7_) +STUB( + "cgAq0WiuB3g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE21intrusive_ptr_sub_refEPS9_) +STUB("cgBUkjbg-Jg", Java_java_lang_reflect_Array_setFloat) +STUB( + "cgE6amxVlsk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE5clearEv) +STUB("cgFcdsvqrmM", _ZN12video_parser18cProfileCheckerMp4C1Ev) +STUB("cgGFEUYjEQ0", sceNpPush2UnregisterNotificationCallback) +STUB( + "cgN+oc86U30", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEC1Ev) +STUB( + "cgOAhNICrsw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEE11release_refEv) +STUB("cgQhq3E0eGo", sceNpMatching2GetSignalingOptParamLocal) +STUB("cgRqSo50CSg", il2cpp_field_has_attribute) +STUB("cgTvG0jp+MY", _ZNK7WebCore26Matrix3DTransformOperation10isIdentityEv) +STUB( + "cgU+AD+qO9Q", + _ZN7WebCore31CrossOriginPreflightResultCache11appendEntryERKN3WTF6StringERKNS_3URLESt10unique_ptrINS_35CrossOriginPreflightResultCacheItemESt14default_deleteIS9_EE) +STUB("cgYcQIHDtlU", _ZN7WebCore6ISOBoxnaEmPv) +STUB( + "cgZx7fw3-KQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE5beginEv) +STUB("cgh1uZmGHAU", _ZN3WTF11Persistence7DecoderrsERNS_8OptionalIfEE) +STUB("cgnbMjESf18", _ZN3sce7Toolkit2NP2V29Messaging7Request19SendGameDataMessage12MAX_URL_SIZEE) +STUB( + "cgyQMcN2gj0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE7popBackEv) +STUB( + "cgzz-y-nwpU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEED1Ev) +STUB( + "ch-tDZCG1+k", + _ZNK3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead20getInvitationInvalidEv) +STUB( + "ch1gPt3APgk", + _ZN3sce7Toolkit2NP14GameCustomData9Interface17setMessageUseFlagEPKNS1_28GameCustomDataUseFlagRequestEPNS1_9Utilities6FutureIiEEb) +STUB( + "ch5L4k-emFw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "ch9JyXCHDaM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEE11release_refEv) +STUB("chDsW8oAcc8", mono_shared_mempool_new_size) +STUB("chFrHZ6pJm0", SHA512_Final) +STUB("chI1vWFrmOY", ucurr_getNumericCode) +STUB( + "chKTREhBfqw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE5abortEv) +STUB( + "chKzEpHJFmA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEEcvbEv) +STUB( + "chNIf2J6-P0", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSession35setxPSNSESSIONMANAGERNONPSNCALLERIDEPKc) +STUB("chXuVQrRI94", _ZN7WebCore11DisplayList8DrawRectD2Ev) +STUB("chZFHnGa9x4", sceShellCoreUtilShowErrorDialogWithFormatArgs) +STUB("chaxQmV0rVg", + _ZN3sce2Np9CppWebApi7Matches2V120ResponseMatchResultsC2EPNS1_6Common10LibContextE) +STUB("chdPn50-ZPc", + _ZN7WebCore6Editor21applyStyleToSelectionEPNS_15StylePropertiesENS_10EditActionE) +STUB( + "chfQ-3uVpqo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("chi2eH8ZMWw", _ZN19JITSharedDataMemory15shared_memalignEmm) +STUB("chjYqtvMgBE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEEaSERS7_) +STUB("chlN6g6UbGo", _CurrentRuneLocale) +STUB("chnudRDm7Hw", _ZN15AbstractStorage18DailymotionStorageD1Ev) +STUB( + "chp32etkvlk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE5beginEv) +STUB("cht8l0E1hys", __decrement_D2A) +STUB("chxnvsxxfBY", _ZN3sce3Job10JobManager8shutdownEv) +STUB("chzmnjxxVtk", _Fac_tidy) +STUB( + "ci-AORZCeIw", + _ZN7WebCore16NavigationActionC1ERNS_8DocumentERKNS_15ResourceRequestENS_20InitiatedByMainFrameENS_14NavigationTypeENS_28ShouldOpenExternalURLsPolicyEPNS_5EventERKN3WTF10AtomStringE) +STUB("ci1uFdEYZcs", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIdED2Ev) +STUB("ci5qfgD5F58", sceLoginMgrServerDialogNotifyOpenFinished) +STUB( + "ci7j9YWIWNo", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api8getOfferEiRKNS4_19ParameterToGetOfferERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_20GetOfferResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("ciKq9PFu4qI", + _Z31Ime_SetSelectRectGeometryNativemN3sce11playstation4core3Ime15ImeTextGeometryE) +STUB("ciLH4cFx9yc", delegate_virtual_invoke_24_p) +STUB("ciNnTRLgVBY", _ZN3sce2Np9CppWebApi7Matches2V119ResponseTeamResults8fromJsonERKNS_4Json5ValueE) +STUB("ciRLwXjkyB0", _ZTVN12video_parser12cVpFileCacheE) +STUB( + "ciROdwvOQUk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEEptEv) +STUB( + "ciSnu4UNrus", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("ciW7Jyw2XKc", ubrk_first_59) +STUB("ciXM3j2URKk", _ZN3WTF19ParallelEnvironmentC2EPFvPvEmi) +STUB( + "cictToOkWd8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "cid3BrStOA4", + _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse18setCompetitionTypeERKNS3_15CompetitionTypeE) +STUB("cijiMJ14LBI", _ZN7WebCore16convertToIntegerIlEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB("cimQgPJPmD0", __sanitizer_cov_trace_func_enter) +STUB( + "cinWMOGSC48", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("cit+fdavZkk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEC1ERKS7_) +STUB( + "ciwBlZ2yVQ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("cizBjY-vSlQ", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_28ActivityFeedSharedVideoStoryEEC1Ev) +STUB("cj+ge8YLU7s", _ZTSPDn) +STUB("cj7hx7O-vF4", _ZN9Inspector27AnimationFrontendDispatchernaEmPv) +STUB( + "cjCbXj8kHTM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEEaSERSA_) +STUB( + "cjEaCmKxvV4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEED2Ev) +STUB( + "cjFq0GAnN20", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEppEi) +STUB("cjGExj87wWA", ucurr_getRoundingIncrement) +STUB( + "cjGdE-x8Q54", + _ZN7WebCore10MouseEvent14initMouseEventERKN3WTF12AtomicStringEbbONS1_6RefPtrINS_11WindowProxyENS1_13DumbPtrTraitsIS6_EEEEiiiiibbbbtPNS_11EventTargetE) +STUB("cjHInVaM4JI", rgctx_fetch_trampoline_rgctx_67_p) +STUB("cjZEuzHkgng", _Atomic_load_4) +STUB( + "cjZZwab1860", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE5beginEv) +STUB("cjdQIEnzP-I", _ZN7WebCore8SVGNames14textLengthAttrE) +STUB("cjk-Cdurz2c", JSGetMemoryUsageStatistics) +STUB("cjmJLdYnT5A", _ZN6Dinkum7threads21_Throw_resource_errorEv) +STUB("cjmSjRlnMAs", iswxdigit) +STUB("cjt-4ySmYTs", fork) +STUB("cjxVyjmiO7Q", + _ZN3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayerC2EPNS1_6Common10LibContextE) +STUB("cjxgAplW6-A", g_WebAssemblyWrapperFunctionPoison) +STUB("ckBRFeGNWnY", rgctx_fetch_trampoline_mrgctx_83) +STUB( + "ckCjlNVYwa4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE6resizeEj) +STUB("ckD5sIxo+Co", _ZNKSt7_MpunctIwE11do_groupingEv) +STUB("ckFrsyD2830", _ZN10__cxxabiv117__array_type_infoD2Ev) +STUB( + "ckOTDuyuKO0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEE11release_refEv) +STUB("ckUeKrhTgLQ", mono_param_get_objects) +STUB("ckcuWdb1US4", png_get_sRGB) +STUB("ckm37QV1V8c", _ZN7WebCore11DOMRectListD2Ev) +STUB( + "ckpI53I9ZWw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEC1EPNS2_10LibContextE) +STUB( + "ckpKnfc73Z8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEdeEv) +STUB( + "ckrXX21nVhg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE8copyFromERKS9_) +STUB( + "cktbTmca48I", + _ZN15AbstractStorage14YoutubeStorage10GetContentERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_7ContentEE) +STUB("ckyaqk5dfP4", _ZN7WebCore9FontCache9fontCountEv) +STUB("cl+f5DIiOUk", _ZN3sce2Np9CppWebApi7Matches2V121ResponsePlayerResultsD1Ev) +STUB( + "cl88Gkc+tx8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEEC1ERKS9_) +STUB("clF7J7N9xXE", _ZNK3sce4Json5ValueixERKNS0_6StringE) +STUB( + "clHk9fmxaZg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEaSERKS7_) +STUB( + "clJ+IWf4iR4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("clJBJ4a16WA", mono_aot_Mono_Securityplt_end) +STUB("clQC+AAy6pw", _ZN7WebCore13pointerCursorEv) +STUB("clRcvYOUFC8", sceVnaSetLocation) +STUB( + "clRxlQgPsr0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEEC2ERSA_) +STUB( + "clSat9wQzG0", + _ZNK7WebCore5Range17absoluteTextRectsERN3WTF6VectorINS_7IntRectELm0ENS1_15CrashOnOverflowELm16EEEbPNS0_20RangeInFixedPositionENS0_27RespectClippingForTextRectsE) +STUB( + "clVLi4MlzSY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEixEm) +STUB("clVvL4ZDntw", scePadSetMotionSensorState) +STUB("clWd3SVNyCo", _ZN3sce7Toolkit2NP23TssGetStatusInputParamsC2Ev) +STUB("cldkMWWxNxo", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE21intrusive_ptr_sub_refEPS7_) +STUB("clfMHpjH0R8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEEC2Ev) +STUB( + "cljuBBd9KMw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEppEv) +STUB( + "cll0AaYH2pk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEC1EPNS2_10LibContextE) +STUB("cllyCd6SGLY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEEC1ERS7_) +STUB("clmZOokkqHA", _ZNK7WebCore6ISOBox4sizeEv) +STUB( + "clo5bXbnNQU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("clr3IhTz4SM", _ZNK7WebCore16HTMLVideoElement11videoHeightEv) +STUB( + "clsZ4W6juZQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEeqERKS9_) +STUB("cltshBrDLC0", sceSystemServiceAddLocalProcessForPsmKit) +STUB("cltvY2tDiVM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEC1ERS7_) +STUB("clu6c2+Zqxo", _ZN7WebCore6JSNode11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("clyKUyi3RYU", sceVoiceSetThreadsParams) +STUB( + "clzcgFiC6v4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE5beginEv) +STUB("cm+vzQWYx3s", _ZN3sce7Toolkit2NP2V24Auth7Request10GetIdTokenC2Ev) +STUB( + "cm-Cz0M9w5I", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE15receiveResponseEv) +STUB("cm-iX2uBwkw", _ZN7WebCore16HTMLMediaElement26didBecomeFullscreenElementEv) +STUB( + "cm3nZWKzfyU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEEaSERS9_) +STUB( + "cm5cyBeakvQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEE11get_deleterEv) +STUB( + "cm5jxClTFA0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEmmEv) +STUB("cm6Mk3WsW0c", + _ZNK3sce2Np9CppWebApi7Matches2V123RequestTeamMemberResult6toJsonERNS_4Json5ValueEb) +STUB("cmFnNND+sAo", _ZN7WebCore11MediaPlayer4seekERKN3WTF9MediaTimeE) +STUB( + "cmHo+SAb-To", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEEC1EPKS6_) +STUB("cmIyU0BNYeo", _Wcsxfrmx) +STUB( + "cmQPHajtH4Y", + _ZNK3sce2Np9CppWebApi14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBody6toJsonERNS_4Json5ValueEb) +STUB("cmSxsBCpzS0", _ZNK7WebCore13HitTestResult16absoluteMediaURLEv) +STUB("cmT0DEnAAHE", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeINS1_11TusVariableEPvEE8allocateEmPKv) +STUB("cmVpl3RY18M", _ZNK3sce2Np9CppWebApi7Matches2V114ResponseMember11getJoinFlagEv) +STUB( + "cmXU9W5ss4M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEC1EPKS8_) +STUB( + "cmZjKqTpxXQ", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("cmb3wIXQ-Js", _ZN3WTF15ThreadCondition9broadcastEv) +STUB("cmd41395g7Y", FT_Stream_ReadChar) +STUB( + "cmhG7wkwBcg", + _ZN9Inspector28DOMDebuggerBackendDispatcher19removeURLBreakpointElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("cmjuYpVujQs", sceSystemStateMgrIsBdDriveReady) +STUB( + "cmkmxgD76ow", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEED2Ev) +STUB( + "cmm82LO7poA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE7popBackEv) +STUB("cmo1RIYva9o", scePthreadMutexInit) +STUB("cmpvwI3RSHY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17GetGameDataResultEE5resetEv) +STUB("cmq+zA94JZA", _Z26sceRazorGpuThreadTraceStopPN3sce3Gnm21DispatchCommandBufferE) +STUB("cmqXyg5E8FE", _ZN3NTF15ThreadCondition4waitERNS_5MutexE) +STUB("cmrgtvnmzN4", mono_aot_Mono_Cairoplt_end) +STUB( + "cmuy9fIAtk4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEeqERKS9_) +STUB( + "cmvr0mOCX2Q", + _ZN3sce7Toolkit2NP2V27Session14sendInvitationERKNS3_7Request14SendInvitationEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB( + "cmyBSI1j9Is", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE5beginEv) +STUB( + "cn3DMExIAYg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEE7add_refEv) +STUB( + "cn5TwS9iwVI", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "cn7WkyM-W9Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEE7add_refEv) +STUB("cn9svYGWKDQ", _ZN3sce4Json6StringaSERKS1_) +STUB("cnA6v-RP4no", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEE3getEv) +STUB( + "cnNRdDNz6qA", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectator57getpostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEv) +STUB("cnNz2ftNwEU", _ZNKSt8numpunctIcE11do_groupingEv) +STUB( + "cnPQkaJf8A4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "cnSO3Q7DHAk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEneERKS9_) +STUB("cnSYLx0Nen4", _ZNK3sce2Np9CppWebApi6Common6VectorIjEixEm) +STUB("cnV-ki0yIhw", ulist_reset_keyword_values_iterator) +STUB("cnWEojGLoFg", _ZN7WebCore16BlobRegistryImplnwEm10NotNullTagPv) +STUB("cnXE+5t5qIc", + _ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody17needsTmpRankIsSetEv) +STUB( + "cndUX47iPQE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEixEm) +STUB("cndgjKAtLOY", mono_aot_System_Windowsunbox_trampolines) +STUB("cnfT++E3fSg", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE6resizeEj) +STUB("cnnOMW6dyPI", sceDepthWaitAndExecutePostProcess) +STUB( + "cnnT6J8cH58", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("cnoM7EjlLe4", _ZN3sce2npneERKNS0_4TimeES3_) +STUB( + "cnu5ZjkIzXw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEED1Ev) +STUB("cnvgclldqr8", uscript_getName_67) +STUB("co-nbnjVKN8", __wrap_getcwd) +STUB("co1TwYJ2ybU", _ZN3sce3pss5orbis9framework12PsmFramework3RunEv) +STUB("co2NCj--pnc", sceSharePlaySetProhibition) +STUB("co49DQAPha0", mono_aot_System_Numericsunbox_trampoline_addresses) +STUB( + "co4PMp0hiDY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEptEv) +STUB( + "co52JIYgl7M", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEdeEv) +STUB("co7QF5zVjnY", sceImeBackendGetConvertString) +STUB("co9D6Qfv8S4", monoeg_g_unichar_tolower) +STUB("co9bgdRbS7s", unum_getLocaleByType_67) +STUB("coAAAFW6Wqw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEaSERKS7_) +STUB("coBZbBcwg8c", _ZN9Inspector14InspectorAgent11initializedERN3WTF6StringE) +STUB( + "coC2+rmYjqI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE5emptyEv) +STUB("coCrV6IWplE", sceFontCharacterGetSyllableStringState) +STUB( + "coJQvarpxTg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEmmEv) +STUB("coT6qsU5t9M", sceNpAsmClientClearNpTitleToken) +STUB( + "coTYKPYrWKQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("coVkgLzNtaw", _ZTSSt13basic_filebufIwSt11char_traitsIwEE) +STUB( + "coXb1ivvcAs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEC2EPS6_PNS2_10LibContextE) +STUB( + "coZhdIbiFP0", + _ZN3JSC21createUint8TypedArrayEPNS_14JSGlobalObjectEPNS_9StructureEON3WTF6RefPtrINS_11ArrayBufferENS4_13DumbPtrTraitsIS6_EEEEjj) +STUB( + "coaAGA3C6dc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEplEm) +STUB("cobwXThbDhg", JSDebuggerInitialize) +STUB("cocNRQpq+NA", _ZN3sce2np9HttpTrans5WriteEPNS0_6HandleEPKvmPm) +STUB("coeYWTjevFM", _ZNK7WebCore19ResourceRequestBase15timeoutIntervalEv) +STUB("coemIHqKrrI", _ZNK7WebCore16VisibleSelection23isContentRichlyEditableEv) +STUB("coiMIPkR+Ro", scePs2EmuMenuDialogOpen) +STUB("coixGjBgMTc", _ZThn24_N9Inspector22InspectorDebuggerAgent7stepOutERN3WTF6StringE) +STUB( + "cokIsGCANB0", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("cots5mYtZpo", _ZNK7WebCore20ResourceResponseBase16httpHeaderFieldsEv) +STUB( + "cozcHuRGyM0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEdeEv) +STUB( + "cp-yGb3HMF0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEE11get_deleterEv) +STUB( + "cp3qVyDzWp8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEaSERS7_) +STUB("cp82JRS8smw", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi21ParameterToLeaveMatch9terminateEv) +STUB("cpC-zyHoMik", sceVoiceQoSSetRemoteEndpointAttribute) +STUB("cpCILPya5Zk", sceAgcAcbPushMarker) +STUB("cpCOXWMgha0", rand) +STUB("cpFOZj25G0g", uscript_getShortName_67) +STUB( + "cpOti5nhz2w", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEEiRNS2_10LibContextEPT_m) +STUB( + "cpPlbP5c+bg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEC1EPS8_) +STUB("cpQ-7Kir-gI", delegate_virtual_invoke_7_p) +STUB( + "cpQ3qRtdjAo", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V127ConnectionQualityProperties8setWiredERKNS1_6Common12IntrusivePtrINS3_29ConnectionQualityWiredMetricsEEE) +STUB( + "cpTaGnCIEPg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("cpXq7o0+kMs", unum_formatDoubleForFields_59) +STUB("cpZlnNQc3IY", WKPreferencesSetDirectoryUploadEnabled) +STUB( + "cpcYtb4mSiY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEmmEv) +STUB("cpe0upeEhcI", SwCtrlManagerCancelInitialize) +STUB("cpjgdlMYdOM", sceFontGraphicsStructureCanvasSequence) +STUB("cpm7kF5vpC8", _ZThn120_N7WebCore16HTMLMediaElement8setMutedEb) +STUB("cpnwZeVIq8E", sceNpLookupNetInitWithMemoryPool) +STUB("cpshdfkAJIs", scePktMgrGetPacketSize) +STUB( + "cpz2Lf8YBZ4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "cq3--9QGIH4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEaSERKS9_) +STUB( + "cq3Q0Q0Qaf4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("cq4ADrhWgG8", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V110UpdateModeEEC2Ev) +STUB("cq65J5rCEwE", + _ZNK3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody20getLargeDataNumLimitEv) +STUB( + "cqB6QQt+iHw", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("cqC1tmhsSC8", utrie_swapAnyVersion_67) +STUB("cqGkYAN-gRw", sceNpTrophyCaptureScreenshot) +STUB( + "cqJmuIgZxko", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE8copyFromERKS9_) +STUB("cqKEeNI93EM", delegate_virtual_invoke_15_p) +STUB("cqNT3RuXd1U", ucnv_isFixedWidth) +STUB( + "cqOxjL0ZfFA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEdeEv) +STUB("cqPaD+l3Z9E", _ZN3sce2Np9CppWebApi6Common8IteratorINS2_17ParameterBaseImpl6KeySetEEC1Ev) +STUB("cqZoI-1PC2E", _ZN3sce2np10JsonObject8SetFieldEPKcS3_PPNS0_10JsonStringE) +STUB( + "cqbKpp8cQzw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEE11release_refEv) +STUB("cqbMRVG1FmQ", + _ZN3JSC16IsoSubspacePerVMC2EN3WTF8FunctionIFNS0_18SubspaceParametersERNS_2VMEEEE) +STUB("cqbqklSaZ+U", mono_jit_set_trace_options) +STUB( + "cqc-201SxY0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEE11release_refEv) +STUB("cqcY17uV3dI", _Fetch_xor_seq_cst_4) +STUB( + "cqgZUTkdcQ0", + _ZN3sce7Toolkit2NP12ActivityFeed9Interface15getSharedVideosEPKNS1_22GetSharedVideosRequestEPNS1_9Utilities6FutureISt6vectorINS1_28ActivityFeedSharedVideoStoryENS1_15AppSTLAllocatorISA_EEEEEb) +STUB("cqoRyqFKVts", _Z20WTFCrashWithInfoImpliPKcS0_im) +STUB("cqt8emEH3kQ", feclearexcept) +STUB("cqtb-UiK1Lg", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_7NpUsersEE3getEv) +STUB("cqucBPSeVDA", _ZN3sce4Json5ValueC2Em) +STUB("cqui4JUJtbY", sceLncUtilUnregisterShellUI) +STUB("cqvea9uWpvQ", _ZTVSt12length_error) +STUB("cqvznGO1Zsg", _ZN3sce7Toolkit2NP6Trophy9Interface17trophyRegisterSetEbbiiij) +STUB("cqyQcHkWLko", _ZN7WebCore14CachedResource16unregisterHandleEPNS_24CachedResourceHandleBaseE) +STUB( + "cqypOQ4Ojnc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEC2EPKS8_) +STUB("crB4it4xRjk", _ZN9Inspector17ScriptDebugServer15didRunMicrotaskEv) +STUB("crFg3k+BM2A", WKWebsiteDataStoreIsStatisticsPrevalentResource) +STUB("crFxyW3HdK0", sceShareGetRunningStatus) +STUB( + "crH5qODR-Xg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEEaSERSA_) +STUB( + "crHdTq+Io5g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("crITWrdhqQY", _ZN3sce2Np9CppWebApi6Common6VectorIfE21intrusive_ptr_add_refEPS4_) +STUB( + "crSULleTLyo", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_23NpSessionInvitationInfoENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB("crUhCyhBS3k", _ZN9Inspector26DatabaseFrontendDispatchernaEmPv) +STUB( + "crVEAGLhLFY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEC2EPS8_) +STUB("crYcq1HKdq8", _ZNK3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead12getAccountIdEv) +STUB( + "crZ66tvCbo8", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi22sendGameSessionMessageEiRKNS4_33ParameterToSendGameSessionMessageERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB("crb5j7mkk1c", _is_signal_return) +STUB("crcnG7WFw8w", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_15RankInformationEED1Ev) +STUB("crhK52B0ep8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEED2Ev) +STUB("cri6g3qvCtc", scePadTrackerUpdate) +STUB("crjmvXxJiv4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS16FriendsVariablesEED2Ev) +STUB("crkFfp-cmFo", sceMouseSetHandType) +STUB("cruxCoR-osY", _ZN7WebCore19ResourceRequestBase17makeUnconditionalEv) +STUB( + "crvLJhn6wyA", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanity22getwebApiFilterRequestEv) +STUB( + "crxwsMy9Qtw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE3endEv) +STUB("cs-Rrf9Xsds", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getSubtitleStream) +STUB( + "cs4GNr45Ong", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEppEv) +STUB( + "csBWQX8SAxc", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("csF6ZHxA+a0", _ZN12video_parser13cVideoPathMgvD1Ev) +STUB( + "csI7RzcFXRE", + _ZN7WebCore5Frame10createViewERKNS_7IntSizeERKN3WTF8OptionalINS_5ColorEEES3_RKNS_7IntRectEbNS_13ScrollbarModeEbSD_b) +STUB( + "csJpQ0ddsJE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEED1Ev) +STUB( + "csKXHCgWa54", + _ZN7WebCore9FrameView29setLayoutViewportOverrideRectESt8optionalINS_10LayoutRectEENS0_18TriggerLayoutOrNotE) +STUB("csNIBfF6cyI", _ZNSt14numeric_limitsIjE8digits10E) +STUB( + "csP46Y7098Q", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB( + "csPdRUhoPUI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEeqERKS9_) +STUB("csSgNcQb5ww", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament7BracketEE19setCustomReturnCodeEi) +STUB("csTghWKaS9s", mono_verifier_set_mode) +STUB( + "csTsfrPavLE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEplEm) +STUB("csVTpsP0RLk", sceFiosOpRescheduleWithPriority) +STUB("csW7BKwFn60", _ZNK7WebCore8Document22wheelEventHandlerCountEv) +STUB( + "csfEHOEAlzA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE8pushBackERKS8_) +STUB("cskh7pJGuAY", uprv_tzset) +STUB("cstv0FHyceo", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed4FeedEE19setCustomReturnCodeEi) +STUB( + "csviO576Riw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEC1EPS6_PNS2_10LibContextE) +STUB( + "csvzfoVbVrY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEED1Ev) +STUB( + "ct0HdlUHtxk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE21intrusive_ptr_add_refEPSA_) +STUB("ct2G7t-xyic", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13WhoLikedStoryEED1Ev) +STUB("ct32qasNtNY", _ZN7WebCore20HTMLFrameElementBase11setLocationERKN3WTF6StringE) +STUB( + "ct3mMkcLuok", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_20ChallengeRecvDetailsENS1_15AppSTLAllocatorIS5_EEEED2Ev) +STUB("ct52Sdkz-Ds", _FDint.sub) +STUB( + "ct6EDkqu+pE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEdeEv) +STUB("ctTAcF5DiKQ", sceAvPlayerGetStreamInfoEx) +STUB("ctTDJfKZfd0", Java_com_sony_bdjstack_system_BDJModule_getState) +STUB("ctTYL9lomv8", sceShellCoreUtilDeleteDownloadedTitleWorkaroundFile) +STUB("ctXTADLKFyY", mono_btls_ssl_ctx_is_cipher_supported) +STUB( + "ctYj3Vb0-pI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEC1Ev) +STUB( + "ctef8Nhanfc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEE11get_deleterEv) +STUB("ctfO7dQ7geg", sceSysmoduleIsCalledFromSysModule) +STUB( + "ctghP7Sf6+c", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi10getRankingEiRKNS4_21ParameterToGetRankingERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_22GetRankingResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("ctlbAnrfOgw", uregex_findNext_67) +STUB("ctoQMlFaZ-M", mspace_calloc) +STUB( + "ctplrU06qYk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "ctqR9KKqsGA", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error29validationConstraintInfoIsSetEv) +STUB("ctqkAfkma-k", FT_Stream_OpenLZW) +STUB("ctsXSiaG96w", _ZN7WebCore28InspectorFrontendClientLocal18isDebuggingEnabledEv) +STUB("ctsXgVoVfcI", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_26EventInformationListDetailEEC2Ev) +STUB("ctto9lYZYhA", _ZN7WebCore10FileHandleC2Ev) +STUB("ctxX+CrwjhU", _ZTVN7WebCore11MediaPlayerE) +STUB( + "ctzuDktPuaI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEptEv) +STUB("cu+EanI-Q7g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEEC2Ev) +STUB("cu+gVDIlA4w", _ZN7WebCore8JSPath2DC2ERKS0_) +STUB("cu1LlJo+5EY", sceNpAsmClientTerminate) +STUB("cu1Ynyg7cTM", mono_jit_free_method) +STUB( + "cu1aC9t-M8o", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody12setConditionERKNS3_9ConditionE) +STUB( + "cu2RXNF1SXY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEC1EPNS2_10LibContextE) +STUB("cu4IZKXvXZI", fuse_fs_removexattr) +STUB("cu5DLZM7-k8", sceVorbisDecRawSeekLap) +STUB( + "cu8eCL1IEYU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEC2ERS7_) +STUB( + "cuBxplhGaJg", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUseraSERS5_) +STUB("cuD+alzzNJc", _ZNK7WebCore7Element12hasAttributeERKN3WTF12AtomicStringE) +STUB( + "cuERp2MfGcI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "cuExXSD0HNk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("cuHQGoXxmnA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEaSERKS7_) +STUB( + "cuMnZ71nSYI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("cuaVJaHU9MQ", _ZN12video_parser5vpcom7GetstatE) +STUB("cugDQBHux8k", sceNpAsmClientGetNpTitleTokenA) +STUB("cukQjzNcSFw", sceSpPthreadMutexLock) +STUB("culi-G6AG7s", + _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_17DOMMatrixReadOnlyE) +STUB( + "cupSADVs-m4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB("cutaOJTmBWY", mono_get_enum_class) +STUB( + "cuzGSMbjbhI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("cv5Y2efOTeg", sceNetCtlApTerm) +STUB( + "cv63gcB8cik", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeaders26unsetXPsnAtomicOperationIdEv) +STUB("cv6jdgXhsYc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEEmmEi) +STUB( + "cv7DVZtHFio", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEE7get_refEv) +STUB("cv8-Cxsrz1Y", _ZNK3JSC4Yarr17RegularExpression5matchERKN3WTF6StringEiPi) +STUB("cv93NuzC7VM", + _ZN3sce2Np9CppWebApi14ConnectAccount2V216PartnerTokensApi26ParameterToGetPartnerTokenD1Ev) +STUB("cvLyQx0JVy0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEC2ERS7_) +STUB("cvMvbwgBuQQ", _ZN3WTF15AutomaticThread6notifyERKNS_14AbstractLockerE) +STUB("cvR0Quqhxmg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEC2Ev) +STUB("cvRCb7DTAig", sceGameLiveStreamingLaunchLiveViewerA) +STUB( + "cvRjESxp7QM", + _ZN7WebCore24CoordinatedGraphicsLayer15addChildAtIndexEON3WTF3RefINS_13GraphicsLayerENS1_13DumbPtrTraitsIS3_EEEEi) +STUB("cvTAzjURYC0", mono_aot_System_Numericsmethod_addresses) +STUB("cvTYAEyd+cs", _ZNK7WebCore23ScaleTransformOperation27isAffectedByTransformOriginEv) +STUB("cvTnVQBmRZA", sceSystemServiceUsbStorageUnregisterCallback) +STUB( + "cvWUrDC6Ioo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("cvYA2d542YY", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt6vectorI16SceNpTusVariableNS2_IS4_EEEE7addressERKS6_) +STUB("cvZrmlSlwn8", sceNpServiceChecker2IntFinalize) +STUB("cva5af3sLgc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEC2ERKS7_) +STUB("cvavjeAM5eg", uhash_hashIChars_67) +STUB("cvb59D5nkvk", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13integer1IsSetEv) +STUB("cvfT6ImYn30", + _ZN7WebCore15addToBackingSetERN3JSC14JSGlobalObjectERNS0_8JSObjectENS0_7JSValueE) +STUB("cvjKScpxLJc", _ZN7WebCore11RenderLayer14scrollToOffsetERKNS_8IntPointENS_14ScrollClampingE) +STUB( + "cvk8DLF2YB0", + _ZN3sce2Np9CppWebApi14SessionManager2V156PostPlayerSessionsSessionIdInvitationsRequestBodyFactory7destroyEPNS3_49PostPlayerSessionsSessionIdInvitationsRequestBodyE) +STUB("cvku8KqTa9E", _ZNK12Mp4Retriever14hasVideoStreamEv) +STUB( + "cvtwDQo4g5I", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE10setContextEPNS2_10LibContextE) +STUB( + "cvueiZpERcw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "cvuhx2eHjjs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEE5resetEPS6_) +STUB( + "cvv2fSwmMXU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "cw14AfiCDDw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE13getLibContextEv) +STUB( + "cw5ZLxtMbGk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEneERKS9_) +STUB( + "cw7pqrVWURs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE8pushBackERKS8_) +STUB("cw8Y9PS+isM", rgctx_fetch_trampoline_rgctx_27) +STUB("cwCFIDoQBf0", _ZNK3WTF10StringView26getCharactersWithASCIICaseENS0_15CaseConvertTypeEPh) +STUB("cwJN60QR1HM", ufieldpositer_open_59) +STUB("cwLEmQa8OFg", sceSystemLogger2GetTimestamp) +STUB("cwMzzdesLlY", _ZN3sce3Job10JobManagerC1Ev) +STUB("cwPLYlAqpGY", mono_profiler_install_enter_leave) +STUB("cwPp8LcpzKg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce8ProductsEE12deepCopyFromERS7_) +STUB("cwVCIuoLc6Y", mono_arch_get_throw_exception) +STUB("cwY1+gcB9OY", _ZN3sce7Toolkit2NP2V28Matching7Request10CreateRoom18MAX_SIZE_ROOM_NAMEE) +STUB( + "cwZ4fMTxDcQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEEaSERKSA_) +STUB("cwZ7ase5YbE", _ZN3sce7Toolkit2NP2V24Core8ResponseINS3_5EmptyEE12deepCopyFromERS6_) +STUB("cwbxjPSJ7WQ", sceAgcDriverSetFlip) +STUB( + "cwdgGYOocQE", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectator28hasxPsnAcceptPlatformNamePs5Ev) +STUB( + "cwj+Px7cp0g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEED2Ev) +STUB("cwkw5I8tZOM", _ZN3JSC7Symbols27typedArrayLengthPrivateNameE) +STUB("cwrSsATI4IE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEEplEm) +STUB( + "cwtC967ypSg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE21intrusive_ptr_sub_refEPS7_) +STUB("cwtdZPMOggg", WKBundleFrameSetTextDirection) +STUB("cwwHYWRmsgA", _ZN3sce7Toolkit2NP2V24Core13CallbackEventC2Ev) +STUB( + "cwybt-m5A1A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "cx+lLolmsco", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEEC2Ev) +STUB( + "cx-1THpef1A", + _ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_bRSt8ios_baseRNSt5_IosbIiE8_IostateERe) +STUB( + "cx2Stx1-yuU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEEaSERKSA_) +STUB("cx2dYFbzIAg", sceAudioOutDeviceIdOpen) +STUB( + "cx9AYhh1-Jo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEC1Ev) +STUB("cxBr+IpAwSA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEC1Ev) +STUB("cxLLV4gCb1I", mono_aot_mscorlibjit_code_end) +STUB("cxPZ4Wgvdj8", sceAgcDcbDrawIndirectGetSize) +STUB("cxRN3ES1Hmk", LoginMgrSetUserStatus) +STUB("cxU4JdRt7So", sceVnaSetSessionInfo) +STUB( + "cxUFsFdbVdQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "cxaFAuLyJcU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEC1Ev) +STUB("cxaH7f6tnX8", uloc_getDisplayVariant) +STUB( + "cxcBOqGbcU0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEED2Ev) +STUB( + "cxdO4LYM5DY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEdeEv) +STUB("cxdklXtQcqA", sceKernelSetTimezoneInfo) +STUB( + "cxh9Tu8zj+0", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo24setxPsnAtomicOperationIdEPKc) +STUB( + "cxkUS0SoswI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEED1Ev) +STUB("cxkheJoPLXw", Java_sun_awt_image_PNGImageDecoder_composeRowByte) +STUB("cxp4MLZSorA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE5emptyEv) +STUB("cxqmCloMMRw", _ZN3WTF9URLParser15isSpecialSchemeERKNS_6StringE) +STUB("cxqzgvGm1GI", _ZTISt12length_error) +STUB( + "cxwMI4Q8vpo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEdeEv) +STUB("cxyAtDRWyvQ", _ZN7WebCore12SharedBufferC1EPKhm) +STUB("cy+pAALkHp8", sceNpTusGetFriendsVariable) +STUB( + "cy1Lz51JJ6Q", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEneERKS9_) +STUB("cy2kWghrw-I", _ZN3sce2Np9CppWebApi7Matches2V117ResponseMatchTeam10getMembersEv) +STUB( + "cyHK3XKJMq8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("cyO5ShJxdnE", sceLncUtilGetAppStatusListForShellUIReboot) +STUB("cyOetqtQZ84", + _ZN3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate8fromJsonERKNS_4Json5ValueE) +STUB("cyRJs-mg5h0", Java_java_io_FileDescriptor_sync) +STUB("cyTN4IIukQU", _ZN7WebCore4Page23clearUndoRedoOperationsEv) +STUB("cyTkDCxgk6Y", Java_java_lang_UNIXProcess_initIDs) +STUB( + "cyWEjTH6na8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEED1Ev) +STUB( + "cyZ1T4e+okE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("cyZff9dyxEQ", _ZN9Inspector21PageBackendDispatcherD1Ev) +STUB("cyheZerH-jM", _ZNK15AbstractStorage13YoutubeFolder10GetServiceEv) +STUB( + "cymD7o6JjdU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "cymSGr+lAPI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEdeEv) +STUB( + "cytpXAmRUBU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEC2Ev) +STUB( + "cyv3E2aPb4A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEptEv) +STUB( + "cyv7dThJTjc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEC1EPKS8_) +STUB("cyy-9ntjWT8", _ZNSt12system_errorD0Ev) +STUB("cyzuDZNcuAo", mono_aot_Microsoft_CSharpunbox_trampolines) +STUB("cz01Hn935-U", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge10ChallengesEE19setCustomReturnCodeEi) +STUB("cz4mGxGqZIQ", _ZN7WebCore8SVGNames15text_anchorAttrE) +STUB("cz5x0BcGOZ8", _ZNK3WTF10StringImpl10tryGetUtf8ENS_14ConversionModeE) +STUB( + "cz9-7OXjxqY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEED1Ev) +STUB("czDQBpK7Fyo", JVM_ConstantPoolGetMethodAt) +STUB("czMa+cNtY5E", _ZN7WebCore16HTMLMediaElement14exitFullscreenEv) +STUB("czPHgWBiTS4", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEE3getEv) +STUB("czReUjajRN4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData8setrangeEPKc) +STUB("czWVTPt8ROo", + _ZN7WebCore19InspectorController15connectFrontendEPN9Inspector15FrontendChannelEbb) +STUB("czYtDOJxbwc", _ZNK7WebCore5Frame25trackedRepaintRectsAsTextEv) +STUB("czYxY9SqkA8", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEEC2Ev) +STUB("czcFqaa4PUU", __libunwind_Unwind_GetGR) +STUB( + "czekpXGQh4c", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEE3getEv) +STUB( + "czfcU2dLFdE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "cziF5JgsqAM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot13unsetsortModeEv) +STUB( + "cziLsQ2mp9k", + _ZN7WebCore25WebSocketChannelInspector24didReceiveWebSocketFrameEPNS_8DocumentERKNS_14WebSocketFrameE) +STUB("czjZfpELYZs", sceSdecCreateSw) +STUB( + "czp+GSNgfew", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("czpfcIjopH0", _ZN7WebCore8SVGNames6dyAttrE) +STUB("czqFOWF2cQw", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10setString4EPKc) +STUB("czswpVj+PeQ", _ZN3JSC11ProxyObject6s_infoE) +STUB( + "czt-pRMbxtE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEppEi) +STUB("czv64NNwlvA", u_unescapeAt) +STUB("czzWPU8zXD0", _ZN3JSC7Symbols25definePropertyPrivateNameE) +STUB("d++4nnx2Qr0", _ZN7WebCore11MediaPlayer13tracksChangedEv) +STUB( + "d++UB1UuVQE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEC1EPKS8_) +STUB( + "d+2LUoWLqhA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEixEm) +STUB("d+2nOPKQeT8", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_13TusDataOutputEED2Ev) +STUB( + "d+3k6Nwap2A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEED1Ev) +STUB( + "d+D1U+oJP4U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEED2Ev) +STUB("d+FuSvGsliA", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEEC1EPS6_) +STUB("d+G-F27Z0RI", _ZN3WTF14FileSystemImpl14MappedFileDataC1EiNS0_14MappedFileModeERb) +STUB( + "d+J+43PhnGE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEC2ERKS7_) +STUB("d+JXnLYDYk4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEED2Ev) +STUB("d+MxL9XXIRM", _ZNK10__cxxabiv120__si_class_type_info7cast_toEPvPKNS_17__class_type_infoE) +STUB("d+WRN-Uj4qU", _ZN7WebCore15AffineTransform8multiplyERKS0_) +STUB( + "d+XOcxkTtTs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEC2EPKS8_) +STUB("d+c5fq1tjZk", _ZN7WebCore14characterCountERKNS_11SimpleRangeEt) +STUB("d+iaS-646Uk", Java_java_util_zip_Deflater_end) +STUB("d+lmTLvsaRs", sceNpManagerIntCheckNpAvailabilityByPid) +STUB("d+pFrmN-aV4", _ZN7WebCore21JSRemoteDOMWindowBase6s_infoE) +STUB( + "d+pH9+L7JYY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEED1Ev) +STUB("d+qljVI5Zyg", _ZN3JSC21loadAndEvaluateModuleEPNS_14JSGlobalObjectEPNS_6SymbolENS_7JSValueES4_) +STUB( + "d+qs5c8KdIU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEaSERS7_) +STUB("d+tYPDhnw0s", il2cpp_type_get_type) +STUB( + "d+vk7yIzUsc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEeqERKSA_) +STUB("d+xJZ63-wrc", _ZN3sce2np8HttpFile4ReadEPNS0_6HandleEPvmPm) +STUB("d-15YTCUMVU", sceSystemServiceIsAppSuspended) +STUB("d-43Pgpxqs0", Java_java_awt_GnmGraphics_nativeDrawString) +STUB("d-6uF9sZDIU", sceAgcSetCxRegIndirectPatchAddRegisters) +STUB( + "d-9a3eAXC7w", + _ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForReadC2EPNS1_6Common10LibContextE) +STUB("d-BBSEq1nfc", sceRemoteplayNotifyMbusDeviceRegistComplete) +STUB("d-Bkd4X28NE", __ubsan_handle_implicit_conversion) +STUB("d-GQB0t83+s", WKContextSetPlugInAutoStartOrigins) +STUB("d-MOtyu8GAk", _ZNSt7collateIwEC1Em) +STUB("d-N2jbK38jQ", JVM_MaxObjectInspectionAge) +STUB("d-SCZVeo+Hs", _ZN3JSC18GCActivityCallback15createEdenTimerEPNS_4HeapE) +STUB("d-YDTQrxDJA", sceNpGameIntentLaunchApp2) +STUB("d-YRIvO0jXI", _ZSt5wcout) +STUB("d-YcZX7SIQA", sceGnmSqttSetUserdataTimer) +STUB( + "d-chdeX3Qmc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEcvbEv) +STUB( + "d-jFwqA7N0w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEE7add_refEv) +STUB("d-kSG2fLrvI", sceUltFinalize) +STUB("d-nYiix1Y68", _ZNK3sce2Np9CppWebApi6Common6String4sizeEv) +STUB("d-nucrQRJZg", _ZN3sce2npneERKNS0_10NpOnlineIdERK13SceNpOnlineId) +STUB("d-tpkqffj6I", _ZN7WebCore36ISOProtectionSystemSpecificHeaderBoxD0Ev) +STUB("d-xOFygC42c", WKGrammarDetailGetLength) +STUB("d-zvst0wHqY", _ZN3sce7Toolkit2NP2V211SharedMedia14CommonMetadata20MAX_LEN_SERVICE_TYPEE) +STUB( + "d063Za+gTWA", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "d07-jGfEYUU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEEC1ERSA_) +STUB( + "d09rgWx8EYw", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ErrorResponseFactory7destroyEPNS3_13ErrorResponseE) +STUB("d0DP2t5FZmY", _ZN7WebCore17execStateFromPageERNS_15DOMWrapperWorldEPNS_4PageE) +STUB("d0DUtS4NbvM", _ZN7WebCore12PrintContextC2EPNS_5FrameE) +STUB( + "d0Dclzb-DnI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE8pushBackERKS8_) +STUB("d0FY5xvaA28", png_create_write_struct) +STUB("d0IkWV+u25g", sceNpManagerIntPfAuth) +STUB("d0L--Yd9fQc", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku11getUseLimitEv) +STUB( + "d0PgQ-qzaug", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE6resizeEj) +STUB("d0TgXzscRKc", _ZN3JSC7Symbols40asyncGeneratorFieldQueueFirstPrivateNameE) +STUB("d0WQMCDU+ag", _ZN3sce7Toolkit2NP7TusDataC1Ev) +STUB("d0bS5rA7fCk", _ZNK7WebCore12SharedBuffer20tryCreateArrayBufferEv) +STUB("d0bTChkf6mI", izrule_equals_67) +STUB( + "d0buB1UgZ8U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE8capacityEv) +STUB("d0faxoQEkig", Java_java_net_PlainDatagramSocketImpl_join) +STUB( + "d0jnPVLIzEw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEE7get_refEv) +STUB( + "d0oZbX7yd+4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE21intrusive_ptr_add_refEPS9_) +STUB("d0r1sw3mTqM", sceCesUtf32leToGb) +STUB("d0rbTAAL7xc", + _ZN6WebKit17ChildProcessProxy11sendMessageEN3WTF10PassOwnPtrIN7CoreIPC14MessageEncoderEEEj) +STUB("d0uhG40ExAM", mono_aot_Sce_Vsh_Passcodeplt_end) +STUB("d0vezuPZxtg", sceKernelMapToolMemory) +STUB( + "d0vyd35Wew4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("d0yLGKq7juM", _ZN3sce7Toolkit2NP2V26Trophy7Request13SetScreenshotC1Ev) +STUB("d0zSLZMER34", _ZN3sce2npltERKNS0_4TimeES3_) +STUB("d1+yj3kOWKQ", ulistfmt_open_67) +STUB("d10HqWDkWV4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEptEv) +STUB( + "d142rQ9Ks4c", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB( + "d145lXy9+34", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEdeEv) +STUB("d18D8z+7GC0", mono_jit_cleanup) +STUB("d1AjT2uZJn0", sceVideoOutSysGetVblankStatus) +STUB("d1CNGEOaK28", sceGameUpdateAbortRequest) +STUB("d1E75ZBT8dQ", + _ZN3sce2Np9CppWebApi7Matches2V124RequestCompetitiveResult8fromJsonERKNS_4Json5ValueE) +STUB("d1FrWWdLdvA", _ZN3sce7Toolkit2NP15CategoryInfoSubC1Ev) +STUB("d1IXlZ0caEU", WKGeolocationPermissionRequestAllow) +STUB( + "d1JNRlPdbpE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("d1L-vfZ3KfU", _ZN3WTF11Persistence7DecoderrsERNS_8OptionalIjEE) +STUB( + "d1L90-vL8TE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEC2Ev) +STUB("d1MOhanI0Hw", _ZNK3sce2Np9CppWebApi13InGameCatalog2V514ContainerMedia11imagesIsSetEv) +STUB("d1QLBV+0Mf4", _ZN3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectatorD2Ev) +STUB("d1QgUf4mz7k", mono_aot_System_IO_Compression_FileSystemunbox_trampolines) +STUB( + "d1SmxjQT8Qg", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors25validationConstraintIsSetEv) +STUB( + "d1TV4QMsSwY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "d1XP52svCNo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("d1YfPgzKdUQ", llvm_resume_unwind_trampoline) +STUB("d1bcQFkjzUE", WKBundlePageSetApplicationCacheOriginQuota) +STUB("d1dupKoGH1Q", sceUpsrvUpdateGetFeatureListUrl) +STUB( + "d1eEjWR60wk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEED1Ev) +STUB("d1fpR0I6emc", sceFontGraphicsCanvasGetPreprocess) +STUB( + "d1i5SRSNNwo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("d1ixA0HkW5s", coil_gethostbyname) +STUB( + "d1lM8ZXXLpk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("d1vb5I3kFz4", _ZN19HardwareConcurrencyC2Ev) +STUB("d1wSZF1WYp4", YGNodeStyleSetFlexBasisPercent) +STUB("d205iUFMyyE", _ZN3sce3Job10JobManager10initializeEPvmjjPKNS1_12ConfigParamsE) +STUB("d20WUyyiSr8", _ZNK7WebCore28InspectorFrontendClientLocal28userInterfaceLayoutDirectionEv) +STUB( + "d21IMPjuu6Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE5emptyEv) +STUB( + "d28sm3S-XMk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEE7add_refEv) +STUB("d29IopDYFrI", _ZN7WebCore16VisibleSelection27selectionFromContentsOfNodeEPNS_4NodeE) +STUB("d29LTGHLzbs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEC2Ev) +STUB( + "d2DWvAYLu3w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEEC2ERSA_) +STUB( + "d2EYmGJVQNY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("d2IOtQGjd-M", _ZN7WebCore25directionOfEnclosingBlockERKNS_8PositionE) +STUB( + "d2JuGu+UcU8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("d2K+sIYMoh4", mono_aot_Sce_PlayStation_PUIPlatformjit_code_end) +STUB("d2Lfn5fLxH8", Java_java_io_FileOutputStream_write0) +STUB("d2LjpmVBqEA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEEC2EPNS2_10LibContextE) +STUB("d2Qk-i8wGak", scePadIsLightBarBaseBrightnessControllable) +STUB( + "d2RBPDfdKXk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEED2Ev) +STUB( + "d2Rkd0lsdl0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("d2Rtb9uK6ac", _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_6StringEEeqERKS5_) +STUB( + "d2S2W4HK984", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEC2Ev) +STUB("d2TeoKeqM5U", sceHmdInternalSeparateModeClose) +STUB("d2UmeNMcWZI", MASSValueSizeMax) +STUB("d2aez8ELvSU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE3endEv) +STUB("d2g5Ij7EUzo", sceHmdOpen) +STUB( + "d2jM49DjE2I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEED2Ev) +STUB("d2kMlNVjxC8", _ZN15AbstractStorage14TwitterContent6RemoveEv) +STUB("d2mPxeXsfhA", mono_aot_Sce_Vsh_Np_Webapiunwind_info) +STUB( + "d2qLPFL90dc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEppEi) +STUB("d2u38zs4Pe8", _ZNSt3pmr20get_default_resourceEv) +STUB("d2v0M31RiLg", _ZN3sce2Np9CppWebApi15ProfanityFilter2V223FilterProfanityResponseD1Ev) +STUB("d2yn9y60yEU", _ZN3sce7Toolkit2NP2V27Session7Request5LeaveC1Ev) +STUB("d2ywI8LGgW0", _ZN7WebCore15HTMLFormElement15setAutocompleteERKN3WTF12AtomicStringE) +STUB("d34n7ihxDwc", utmscale_fromInt64_67) +STUB("d38462nDjJg", _ZN7WebCore21BlobDataFileReference26startTrackingModificationsEv) +STUB("d38bTmxILUQ", glDeleteQueriesEXT) +STUB( + "d3AR6bht5y0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "d3BbxfGmStE", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "d3DH-QgjgR8", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE5startEPNS2_10LibContextEm) +STUB( + "d3Ex8uUip0s", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("d3IeatK6Jpw", WKBundleGetFastMallocStatistics) +STUB("d3OnoKtNjGg", sceSystemServiceDisableVoiceRecognition) +STUB( + "d3PJkPbqUkQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEE7get_refEv) +STUB("d3Te73gW0P8", + _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse8fromJsonERKNS_4Json5ValueE) +STUB("d3WL2uPE1eE", sceAudioOutSetSparkParam) +STUB("d3aALUluqfs", sceVnaStopKeywordDetection) +STUB("d3dMyWORw8A", wcstol) +STUB("d3jT67cXUEE", mono_aot_Sce_Vsh_GameListRetrieverWrapperjit_code_end) +STUB("d3lKWPM6odc", sceAmprAmmCommandBufferAllocatePaForPrt) +STUB( + "d3skciIZ9VM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEE11release_refEv) +STUB("d3w05e8R5B0", mono_aot_Sce_Vsh_AppContentUtilWrapperplt) +STUB( + "d3xg7k-K3wA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEC2Ev) +STUB( + "d3yM-rgE0V0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEppEv) +STUB("d4+uz7pRCbY", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product14getContentTypeEv) +STUB("d4-KuFcRlSY", _ZN3JSC7Symbols14setPrivateNameE) +STUB( + "d41nZ7Xx0oI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE7popBackEv) +STUB( + "d45qUlrta88", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEE3getEv) +STUB("d46wLHA3oa4", mono_aot_Sce_CloudClient_App_Platformplt_end) +STUB( + "d47nja3UCp0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "d4DamsOE83I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEixEm) +STUB("d4EwWAQgJlk", sceBgftServiceIntUploadSetHighPriority) +STUB( + "d4LnIv0K8-o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE7popBackEv) +STUB("d4MQSGB8NqI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session14InvitationDataEED1Ev) +STUB("d4NRVtQBHTg", _ZN3sce7Toolkit2NP2V28Matching5RoomsaSERKS4_) +STUB( + "d4RMAuwoeyo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEE11release_refEv) +STUB("d4SQL+QQLTY", sceAjmInstanceAvailable) +STUB( + "d4Vuny13skY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEC2EPS8_) +STUB("d4ZCwLK2+ZI", mono_metadata_parse_type) +STUB("d4cSor+VcGg", _ULx86_64_dwarf_find_proc_info) +STUB("d4fHLCGmY80", sceRtcSetCurrentTick) +STUB("d4imyunHryo", sceSystemServiceRequestPowerOff) +STUB( + "d4ipgygPvKs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEplEm) +STUB("d4jTDqgfDDQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE7popBackEv) +STUB("d4kYK4Z+ay8", _ZN3JSC17JSArrayBufferView18possiblySharedImplEv) +STUB( + "d4m8LjLctA4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEE11release_refEv) +STUB("d4mB8nRN2tU", _ZN3WTF13printInternalERNS_11PrintStreamEm) +STUB( + "d4oLaZ3v0UU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEED2Ev) +STUB( + "d4u5czqFuSk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEEC2Ev) +STUB( + "d5-DBt5Ys90", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEED1Ev) +STUB( + "d50RRoYfim0", + _ZN3sce2Np9CppWebApi14SessionManager2V139RequestCreatePlayerSessionPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_32RequestCreatePlayerSessionPlayerEEE) +STUB("d57FDzON1h0", + _ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE8_PutmfldES3_bRSt8ios_basecbSsc) +STUB("d57J4SZ15tM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEEC2EPKS6_) +STUB("d57NUp5Sn34", u_austrcpy_67) +STUB("d57WcqMvoWg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEC1ERKS7_) +STUB( + "d57xaXYhMYs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEED1Ev) +STUB("d5FPRTy4-i8", _ZN3sce2np10EventQueueC1EP14SceNpAllocator) +STUB("d5Fv6HbZ5NQ", _ZN7WebCore9HTMLNames12ontoggleAttrE) +STUB("d5LwAYdjVqk", _ZN15AbstractStorage14YoutubeContent8SeekByteEliPl) +STUB("d5NA5pVIKOk", _ZN7WebCore8SVGNames6g1AttrE) +STUB("d5Q-h2wF+-E", __sync_fetch_and_xor_16) +STUB( + "d5RPvOdnug4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEC1ERKS7_) +STUB( + "d5VwKCllMSU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEEaSERKSA_) +STUB( + "d5eZ5TcO5ZA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEmmEv) +STUB("d5exEUOOXgE", _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error12unsetMessageEv) +STUB("d5owEaB791c", _ZN3sce7Toolkit2NP2V24Core7Request20DefaultRequestParamsD1Ev) +STUB("d5rhOaMjg0E", WKContextConfigurationCopyIndexedDBDatabaseDirectory) +STUB("d5sXY2Kxn9I", _ZN3sce2Np9CppWebApi12Leaderboards2V15Error16unsetReferenceIdEv) +STUB( + "d5u8DWX+hQw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEaSERKS9_) +STUB("d5vSl0NN8vg", _ZN7WebCore13MIMETypeCacheC1ERKS0_) +STUB( + "d5wKX4BqjiM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("d5wt20GITGs", Java_java_lang_StrictMath_sqrt) +STUB("d5xkh7fa3mU", + _ZNK3sce2Np9CppWebApi7Matches2V125ResponseCompetitiveResult18playerResultsIsSetEv) +STUB( + "d5yVA3A-LjM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEEC2ERKS9_) +STUB("d5zAkrYGC2w", _ZN3WTF3URL23fakeURLWithRelativePartENS_10StringViewE) +STUB("d62tjPSg5AU", sceClHttpCreateRequestWithURL) +STUB( + "d63B3QV-YQ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEE7add_refEv) +STUB("d695X978Bgw", sceNpPushStopNotification) +STUB( + "d6EPRGFv7LE", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE8sendDataEPKvm) +STUB( + "d6Ej1sOnGrM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEC1Ev) +STUB("d6GwJ-nKqy0", _ZTVN15AbstractStorage18DailymotionServiceE) +STUB( + "d6Hd-euWyv8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEEC2ERKSA_) +STUB("d6Jk39Pps14", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13WhoLikedStoryEE8allocateEmPKv) +STUB( + "d6R0MPN4KEA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEC1EPNS2_10LibContextE) +STUB("d6TEAkbrkO4", nn_send) +STUB("d6VhXgryz7s", _ZN9Inspector28InspectorScriptProfilerAgent13startTrackingERN3WTF6StringEPKb) +STUB( + "d6X6gaMdp-Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEC2Ev) +STUB( + "d6XWvviraos", + _ZN6WebKit12ChildProcess18addMessageReceiverEN7CoreIPC15StringReferenceEPNS1_15MessageReceiverE) +STUB("d6ZIY03VGsw", _ZN7WebCore16NavigationActionC1ERKS0_) +STUB("d6bTyjqauww", mono_mlist_length) +STUB("d6eou47U+3o", mono_assembly_name_get_pubkeytoken) +STUB("d6f-p5k5KmI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEixEm) +STUB("d6pRzr7hbZk", _ZN7WebCore19TextResourceDecoder6decodeEPKcm) +STUB("d6qU-Mb3RmA", WKContextGetMediaCacheManager) +STUB( + "d6tI-slVQ+w", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEeqERKS9_) +STUB( + "d6y7mcKBkgM", + _ZN9Inspector21HeapBackendDispatcher8snapshotElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "d7+SmmV5ILU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEneERKS9_) +STUB( + "d736MEFkr6Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "d73vLUbUgwc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE21intrusive_ptr_sub_refEPS7_) +STUB( + "d73y909B7M8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("d77poKB+no4", SwCtrlManagerActivate) +STUB("d794fo942JM", _ZNK7WebCore5Color7getRGBAERdS1_S1_S1_) +STUB("d7AAqdK2IDo", CA_MGMT_freeCertDistinguishedNameOnStack) +STUB("d7EJbW9-y6A", _ZN7WebCore12ChromeClient23supportsVideoFullscreenEj) +STUB( + "d7EKPA1ZgI8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEptEv) +STUB( + "d7M-jz5OqbI", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_13FriendsOfUserENS1_15AppSTLAllocatorIS5_EEEED1Ev) +STUB("d7NHFLL-ybY", ratfun_gam) +STUB( + "d7OudoEk+ks", + _ZN3sce2Np9CppWebApi14SessionManager2V127GameSessionSpectatorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_20GameSessionSpectatorEEE) +STUB("d7TCmjy+C-4", _ZN7WebCore9JSDOMRect9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "d7VybD5NYP8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEC1EPKS8_) +STUB("d7YcMYGNv0M", _ZN7WebCore13ContainerNode11removeChildERNS_4NodeE) +STUB("d7ZaooUTFKY", makeUlpNtfHdr) +STUB("d7bXuEBycDI", scePadDeviceOpen) +STUB( + "d7cla40ORx0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB("d7dDgRY+Bzw", sceFontGetEffectWeight) +STUB( + "d7gNktJM2hs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEEC1ERKSC_) +STUB("d7nUj1LOdDU", clock_settime) +STUB("d7nXqiztOaU", _ZNK7WebCore15JSDOMWindowBase17printErrorMessageERKN3WTF6StringE) +STUB( + "d7r5l4-3+rw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE7reserveEi) +STUB("d7rrVZ4bYZg", _ZN3sce2Np9CppWebApi10Activities2V114UserActivities8Activity9setHiddenERKb) +STUB( + "d7rwJzNC6MY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEEC2Ev) +STUB("d7uolLDTXMs", delegate_virtual_invoke_25_p) +STUB("d7zM-weN8tg", _ZN7WebCore9HTMLNames16aria_pressedAttrE) +STUB("d8-j5KHO55s", _ZN7bmalloc12IsoTLSLayoutC1ERKSt11scoped_lockIJNS_5MutexEEE) +STUB("d8009G+6bRw", _ZN3sce7Toolkit2NP2V212NetworkUtils7Request19GetBasicNetworkInfoC1Ev) +STUB("d84otraxt2s", sceAudioPropagationSourceCreate) +STUB( + "d8711bF8sBg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEdeEv) +STUB("d88anrgNoKY", sceGnmDriverTriggerCapture) +STUB( + "d88b2LEdd2Q", + _ZN7WebCore10Pasteboard4readERNS_26PasteboardWebContentReaderENS_23WebContentReadingPolicyEN3WTF8OptionalImEE) +STUB("d8BlA0ixNNw", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container11ratingIsSetEv) +STUB( + "d8FFlD9rEoM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEneERKS9_) +STUB("d8FcbzfAdQw", sceAvPlayerGetStreamInfo) +STUB("d8KjVBI0lWI", il2cpp_init_utf16) +STUB("d8N1njJwrGE", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS25AtomicAddToAndGetVariableEED1Ev) +STUB("d8NGGmSEFfU", _ZN3sce2np7RingBuf15CheckoutForReadEPm) +STUB("d8NSxo9Uzjs", _ZN3sce7Toolkit2NP2V27Session14SessionDetails10STATUS_LENE) +STUB("d8OlbJ+fuX4", WKPreferencesSetVideoPlaybackRequiresUserGesture) +STUB("d8P11CI40KE", sceNpTrophy2DestroyHandle) +STUB( + "d8SlSaOD8ZE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEC1EPNS2_10LibContextE) +STUB("d8VHKqobEDE", __tsan_write2_pc) +STUB( + "d8VHp8bMxIc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEeqERKS9_) +STUB("d8VkdhIzhoI", sceDebugGetThreadInfoByIdent) +STUB("d8WDuLpn2oE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEC2ERS7_) +STUB( + "d8XIOOlvxiM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEE11get_deleterEv) +STUB("d8ZF6RxS4gg", sceNpManagerIntMAccountId2UserId) +STUB("d8iqr1DmuQ0", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEE11get_deleterEv) +STUB( + "d8pBmqWizgs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEmmEv) +STUB("d8roQ6sbk8E", sceDeci4hDrfpRead_fuse) +STUB( + "d8ssD8F4WM4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("d8w1B81RImI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEEC2ERKS6_) +STUB("d9-3aRCmg3o", Java_java_lang_System_setErr0) +STUB("d9-l0C7GhTM", _ZN4Manx11MediaSourceD2Ev) +STUB( + "d92Hdw59kB0", + _ZN3sce7Toolkit2NP2V27Ranking13getUsersRanksERKNS3_7Request13GetUsersRanksEPNS2_4Core8ResponseINS3_10UsersRanksEEE) +STUB( + "d93Q-dCF4bQ", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead17setRepresentativeERKNS1_6Common12IntrusivePtrINS3_14RepresentativeEEE) +STUB( + "d946UCxQu+4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEE11release_refEv) +STUB("d95AS8gZm4w", EVP_Digest) +STUB( + "d95lOONRMH4", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUserC2ERS5_) +STUB( + "d98lbfSgFFI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEC1EPS6_PNS2_10LibContextE) +STUB( + "d9B9T9mFBCw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE7reserveEi) +STUB("d9DOmIk9-y4", sceUserServiceGetParentalDvdRegion) +STUB( + "d9L-+Tlp4Js", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("d9LecOXWVDM", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_7TssDataEED1Ev) +STUB("d9MkJ08kHAw", _ZN4Manx9X509chainC2EPv) +STUB( + "d9N3khVxERQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE5beginEv) +STUB( + "d9RbIuI9eDI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEC2EPS8_) +STUB( + "d9WsEkoM47w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEE7get_refEv) +STUB("d9XUi2-zgWw", sceWorkspaceGetName) +STUB("d9dUuvHbpSc", uhash_geti_67) +STUB("d9hR+6plJeM", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13WhoLikedStoryEEC1ERKS4_) +STUB( + "d9hgjnxG-R8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE10setContextEPNS2_10LibContextE) +STUB( + "d9iqPfxQO9Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEC1EPKS8_) +STUB("d9jpdPz5f-8", sceNpTrophyShowTrophyList) +STUB("d9lLqtojQDw", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE8pushBackERKS6_) +STUB( + "d9ps4iv7mY4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEED1Ev) +STUB("d9tCx7OTo00", WKCookieManagerGetHTTPCookieAcceptPolicy) +STUB( + "d9thDxDo9xo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEE7add_refEv) +STUB("d9wUgP2BgoI", rgctx_fetch_trampoline_rgctx_88_p) +STUB( + "dA0BfgUC88k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE5beginEv) +STUB("dA1umJ9EuOQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE5beginEv) +STUB("dA1xL5O784A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEE3getEv) +STUB("dA7DMksqQNo", _ZN9Inspector28DOMDebuggerBackendDispatcherD1Ev) +STUB( + "dA7OypaLjBk", + _ZN3sce2Np9CppWebApi7Matches2V127ReportResultsRequestFactory7destroyEPNS3_20ReportResultsRequestE) +STUB("dAAPcYM0qz0", _ZN4Manx8X509cinfC2EPKS0_) +STUB("dAB1OO6k75Y", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V113ErrorResponse8getErrorEv) +STUB("dAEJ2lrVl+w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEaSERS7_) +STUB("dAFlE1oJe0I", + _ZN3sce7Toolkit2NP2V210Tournament7Request19SendTeamMatchReport20MAX_LENGTH_FREE_TEXTE) +STUB("dAGTHaOuY20", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOfferC1Ev) +STUB("dAKWNwkRfZw", WKFrameCopyProvisionalURL) +STUB("dAKboxlYfH8", sceClPthreadAttrSetschedparam) +STUB( + "dAMJUWYlY+A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEE7get_refEv) +STUB("dASQMnaMR1E", + _ZNK3sce2Np9CppWebApi7Matches2V123ResponseMatchStatistics21playerStatisticsIsSetEv) +STUB( + "dAVKgy1FNQY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEEaSERSA_) +STUB( + "dAXqmHZfdQw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEEC1Ev) +STUB("dAYfKRKR2QQ", _ZN7WebCore23HTMLTableSectionElement9deleteRowEi) +STUB("dAZCqCmGpDc", _ZN3sce7Toolkit2NP2V212ActivityFeed12SharedVideosD1Ev) +STUB("dAZNLw22-cY", _ZN3sce2Np9CppWebApi7Matches2V116JoinMatchRequest19unsetNpServiceLabelEv) +STUB( + "dAb+smglduU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE5beginEv) +STUB("dAfV5bXQvkw", _ZN12video_parser17cVideoProfilerMp417getMediaInfoCountENS_11MediaType_eEPj) +STUB("dAh1WPfn6OU", _ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriendsC2ERS5_) +STUB("dAkYQ-Y2O88", WKPreferencesSetLocalFileContentSniffingEnabled) +STUB( + "dAnCuYS5Aro", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEdeEv) +STUB("dAwoEOHTuM0", _ZN3sce7Toolkit2NP15AppSTLAllocatorI16SceNpTusVariableEC1Ev) +STUB("dB4-3Wdwls8", sceFontStyleFrameSetResolutionDpi) +STUB( + "dB4I8wLeExE", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE11hasResponseEv) +STUB("dB6TtjT0NvY", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15NpSessionMemberEEC1Ev) +STUB("dB9nauAWtgg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS3_5EmptyEE5resetEv) +STUB( + "dBBHYPWGSBg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEC2EPKS8_) +STUB("dBDFTSSa7gI", sceCesUtf32StrGetIso2022Len) +STUB("dBL+E3Irt4c", _ZN3JSC10loadModuleEPNS_9ExecStateERKNS_10SourceCodeENS_7JSValueE) +STUB("dBLuB8tIN5c", _ZN3sce7Toolkit2NP19AllocImplementation13externalAllocE) +STUB( + "dBPsKUismjA", + _ZN3sce7Toolkit2NP15CommunicationIdC2ERK20SceNpCommunicationIdRK28SceNpCommunicationPassphraseRK27SceNpCommunicationSignature) +STUB("dBR94+JFRc0", _ZNK7WebCore10TimeRanges4copyEv) +STUB( + "dBZuUCAD8gU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE10setContextEPNS2_10LibContextE) +STUB("dBa+LyR7Nic", GCC_except_table411) +STUB("dBbFlmweYqQ", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V115LastUpdatedUserD1Ev) +STUB("dBdRVaph9NE", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12FriendsRanksEE5resetEv) +STUB("dBe3-Uhv8UQ", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_34DetailedProductInfoListInputParams9ProductIdEEC2Ev) +STUB("dBh7Cg7VhHk", ucal_setMillis_67) +STUB( + "dBqndDRZSo4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEE11get_deleterEv) +STUB( + "dBrUQE3Pcuw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEC2EPNS2_10LibContextE) +STUB("dBvEcISh9mM", mono_security_set_mode) +STUB("dC+0Pz5afr0", ubrk_following) +STUB( + "dC1JuufJrvs", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessions13isInitializedEv) +STUB( + "dC4lDyy7Yzk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEC2EPKS8_) +STUB("dC6Jyei3tIE", _ZN7WebCore14SecurityPolicy27resetOriginAccessWhitelistsEv) +STUB( + "dC7jALjok28", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEE7add_refEv) +STUB( + "dC7v2BolpQQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEE11get_deleterEv) +STUB( + "dC9lut-BufE", + _ZN3JSC7JSProxy3putEPNS_6JSCellEPNS_14JSGlobalObjectENS_12PropertyNameENS_7JSValueERNS_15PutPropertySlotE) +STUB( + "dCFnHleej7w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("dCRcdgdoIEI", SSL_ASYNC_acceptConnection) +STUB("dCSZSJpRB-E", _ZNK3sce2Np9CppWebApi7Matches2V15Error10getMessageEv) +STUB("dCSzobrRaAc", _ZN3sce7Toolkit2NP2V27Ranking7Request13GetUsersRanks13MAX_NUM_USERSE) +STUB("dCVd7TqyhYA", WKBundlePageCopyRenderLayerTree) +STUB("dCdhOJIOtR4", sceUserServiceSetKeyboardType) +STUB("dCeihPtadCM", mono_domain_assembly_open) +STUB( + "dClx8S7MimI", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeaders17unsetCacheControlEv) +STUB("dCmNvuQjLIY", sceVideoCoreMediaSourceEndOfStream) +STUB("dCqMd9Se+4Y", mono_assembly_invoke_load_hook) +STUB("dCvPEYm3gHk", sceNpManagerIntGetUserState) +STUB("dCzeFfg9WWI", _ZTVSt9exception) +STUB( + "dD2gQ7Ow+cQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEC2Ev) +STUB( + "dD5X7Q1I97U", + _ZN7WebCore23ScrollingStateFixedNode17updateConstraintsERKNS_32FixedPositionViewportConstraintsE) +STUB( + "dD7qGSK4Cik", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEppEi) +STUB("dDE-YNkxwCU", _ZNK7WebCore10RenderView20unscaledDocumentRectEv) +STUB("dDF6X5LGqCc", _ZN3sce7Toolkit2NP9Interface15printAllocStatsEv) +STUB("dDIjj8NBxNA", _ZTISt12codecvt_base) +STUB("dDLNFdY8dws", sceNpSignalingCreateContextA) +STUB("dDQxPSs27CU", udat_registerOpener_67) +STUB( + "dDSQpWQiCq0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB( + "dDUZ-S228O0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEaSERS7_) +STUB( + "dDaNTjxdIPw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEE3getEv) +STUB("dDaO7svUM8w", sceUserServiceSetPbtcWednesdayHoursStart) +STUB("dDc6-iayAyg", WKContextGetWebsiteDataStore) +STUB( + "dDlzy6GTsa0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEmmEv) +STUB( + "dDrbn+b0PyY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEED1Ev) +STUB( + "dDsO93XPYHo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEppEi) +STUB("dDthhs1K+LQ", _ZN7WebCore21UserContentController6createEv) +STUB( + "dDvd1empaxc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("dE2FrtAAyls", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEEC2Ev) +STUB("dE2PoJBF6Bg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEC1Ev) +STUB("dE6EbLNjC3A", X509_VERIFY_PARAM_set1_host) +STUB("dE6PSpWXRYY", unorm_getQuickCheck_67) +STUB( + "dEFkGzx+GW8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEC2Ev) +STUB( + "dEPny9BBzuo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("dET8gZDCX+I", _ZN3sce7Toolkit2NP2V210Tournament15RegisteredUsersD2Ev) +STUB("dEVX4p56-Hs", _ZN7CoreIPC13ArgumentCoderIN3WTF6StringEE6encodeERNS_15ArgumentEncoderERKS2_) +STUB("dEVr74VmImA", _ZN7WebCore15AsyncFileStream5closeEv) +STUB("dEW3xn7DNFs", sceVisionManagerRequestCalibrateHmd) +STUB( + "dEYtK+6xJWU", + _ZN3sce7Toolkit2NP2V23TUS17tryAndSetVariableERKNS3_7Request17TryAndSetVariableEPNS2_4Core8ResponseINS3_12TusVariablesEEE) +STUB("dEdd7MSM2Mc", _ZNK3sce2Np9CppWebApi7Matches2V119CreateMatchResponse10getMatchIdEv) +STUB("dEh2A-saN9U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEEaSERKS7_) +STUB("dEhwVd9TAi8", _ZN3JSC15constructStringERNS_2VMEPNS_14JSGlobalObjectENS_7JSValueE) +STUB("dElf+13M5sM", ubrk_close_67) +STUB("dEmGYmXkQv0", sceNetApctlTerm) +STUB( + "dEoWeYyP6FY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEEC2EPS8_PNS2_10LibContextE) +STUB("dEpGQRMxIQg", _ZNK7WebCore16HTMLTableElement5tFootEv) +STUB( + "dEqMhcUHC+0", + _ZNK3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V19RatingApi21ParameterToPostRating9getratingEv) +STUB("dEs0xf0KbqM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging16GameDataMessagesEEC2Ev) +STUB("dEvJ2GWePUs", sceBgftServiceIntUploadGetTaskInfo) +STUB( + "dEvkstRBgQ0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEE3getEv) +STUB("dEydpmJiJ+0", _ZNK7WebCore17TiledBackingStore13mapToContentsERKNS_7IntRectE) +STUB( + "dF2hZtJ-u8A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEEC1ERSA_) +STUB("dF7iJZvkBkU", mono_aot_Sce_Vsh_Accessor_Db_Notifyjit_got) +STUB( + "dF8NOahA30k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEC2EPKS8_) +STUB( + "dFC4p8EhCWc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB("dFCphqnd+a4", _ZN3sce4Json5Value3setERKNS0_6ObjectE) +STUB("dFK6qxILum0", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V111LeaveReasonEEC1EPS6_) +STUB( + "dFMHRcV7j2Y", + _ZN7WebCore26PresentationOrderSampleMap39reverseFindSampleBeforePresentationTimeERKN3WTF9MediaTimeE) +STUB( + "dFQpcwCAhDw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEE11get_deleterEv) +STUB( + "dFWwhGOC4cQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEC2ERKS7_) +STUB( + "dFZTklj4f8U", + _ZN7WebCore4Page22setUserContentProviderEON3WTF3RefINS_19UserContentProviderENS1_13DumbPtrTraitsIS3_EEEE) +STUB( + "dFayviC8al0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("dFhgrqyzqhI", _ZNSt12placeholders3_20E) +STUB( + "dFjPcpI5oxo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEEptEv) +STUB("dFk+LbrIpxg", _ZN3sce2Np9CppWebApi15Personalization2V15Error10setMessageEPKc) +STUB( + "dFnWy8NeFeE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEE3getEv) +STUB("dFuIkGWGshc", sceBufferDup) +STUB( + "dG-XAy1D+9w", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEneERKS9_) +STUB("dG345t3CDwI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEaSERKS9_) +STUB("dG4XPW4juU4", sceHmdInternalSetDebugTextMode) +STUB("dG6FGUzIYGA", RnpsGetTicks) +STUB("dGAcIVHLm8o", _ZN7WebCore11MediaPlayer11naturalSizeEv) +STUB( + "dGDPeSjk5wM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEED1Ev) +STUB("dGEq3NZSXW8", _ItL_qS1) +STUB("dGOvpr26R2w", _ZN7WebCore9HTMLNames14formtargetAttrE) +STUB("dGP8tbtq8ws", il2cpp_field_get_parent) +STUB("dGQfEXqep7Q", sceCesRefersUcsProfileCp865) +STUB("dGRODPp39yQ", _ZN3JSC37JSSegmentedVariableObjectHeapCellTypeC2Ev) +STUB("dGRdrO011dA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEC2Ev) +STUB( + "dGXklwxIzjc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEEcvbEv) +STUB("dGYo9mE8K2A", _ZNSt4_PadC2Ev) +STUB("dGa4MR9ijfg", mono_metadata_implmap_from_method) +STUB("dGgPG3NxLOY", _ZN7WebCore24MatrixTransformOperation5blendEPKNS_18TransformOperationEdb) +STUB( + "dGmqrQWGFqA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEE7get_refEv) +STUB( + "dGosD5di3C0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEmmEi) +STUB("dGrmvw2Y1qA", ft_stub_set_char_sizes) +STUB("dGstEBMWQ48", WKCertificateInfoCreateWithClientCertificate) +STUB("dGuEML7cY1k", _ZNK3sce2np9HttpTrans6IsInitEv) +STUB( + "dGvumr3kbZM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("dGyFEtp4kLk", _ZNK3sce2Np9CppWebApi14ConnectAccount2V214PSNError_error7getCodeEv) +STUB("dGzde7V8MjE", __wrap_statvfs) +STUB("dH+zYApecXc", _ZTVN15AbstractStorage13TwitterFolderE) +STUB("dH02CpEEcYk", FT_Done_FreeType) +STUB( + "dH0SPSJGJ8Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEcvbEv) +STUB("dH0bav-xGCc", _ZNSt16invalid_argumentC1EPKc) +STUB("dH0hodPYWMk", _ZNK3sce2Np9CppWebApi15Personalization2V15Error14getReferenceIdEv) +STUB( + "dH2SKb2vusw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE6resizeEj) +STUB( + "dH38cRrj1BA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEE5resetEPS6_) +STUB("dH3ucvQhfSY", _ZdaPvSt11align_val_tRKSt9nothrow_t) +STUB( + "dH5F3sRAFIE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("dH8G9YeAqJk", _ZNK7WebCore10Credential7isEmptyEv) +STUB( + "dHEUIM99LTw", + _ZN7WebCore9ImageData6createEON3WTF3RefIN3JSC21GenericTypedArrayViewINS3_19Uint8ClampedAdaptorEEENS1_13DumbPtrTraitsIS6_EEEEjNS1_8OptionalIjEE) +STUB("dHEkx2dEjo8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEEneERKS7_) +STUB( + "dHJ-wTCnMXc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEE5resetEPS9_) +STUB( + "dHJAAoUphPc", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V126BandwidthDownstreamMetrics18getConfidenceScoreEv) +STUB( + "dHJseF8Nqxs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEdeEv) +STUB("dHK+qu5D2HM", sceCompositorSetDebugPositionCommand) +STUB("dHP0omwFe1E", __sanitizer_cov_trace_basic_block) +STUB( + "dHPn4nHdI0Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEEC1ERSA_) +STUB( + "dHQc1ykHX7Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEED2Ev) +STUB("dHdyG1xiejY", uenum_reset) +STUB( + "dHfl6ebMGis", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("dHosoPLXaMw", SSL_getSessionFlags) +STUB("dHs7ndrQBiI", _ZNSt10moneypunctIwLb0EEC1ERKSt8_Locinfomb) +STUB("dHvEj9tGtQ8", rgctx_fetch_trampoline_rgctx_47) +STUB("dHw0YAjyIV4", _ZTIN10__cxxabiv123__fundamental_type_infoE) +STUB("dHzNJaY7dnk", JNU_GetEnv) +STUB("dI1Y-XIAEqU", glDeleteSamplers) +STUB("dI3StPLQlMM", sceHmdInternalCrashReportClose) +STUB("dI4YybA2qQs", _ZN3sce7Toolkit2NP2V23TUS7Request16GetUsersVariableC1Ev) +STUB("dI5TERV3hHU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEptEv) +STUB("dI6XUcHpPBc", _ZN3sce2Np9CppWebApi7Matches2V119CreateMatchResponse10setMatchIdEPKc) +STUB( + "dI7plgkx74c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEE7add_refEv) +STUB( + "dI9o0nvjjRA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEEC1Ev) +STUB("dIA+v-Lh1+o", sceCompositorSetKeepDisplayBufferCommand) +STUB("dIA3Bf1HqjM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEEmmEv) +STUB("dIFd5OXQYtU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEED1Ev) +STUB( + "dIGwrELHGpk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEEaSERKSA_) +STUB( + "dII9sCeovJ0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEneERKS9_) +STUB("dIICGiPPmYI", X509_getm_notAfter) +STUB( + "dIN+FTuLQ6Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE5beginEv) +STUB( + "dIN-+Z6erlY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEC1EPS6_PNS2_10LibContextE) +STUB( + "dIOi4-jJcdA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("dIOkBqvECr4", + _ZNK3sce2Np9CppWebApi14SessionManager2V114Representative6toJsonERNS_4Json5ValueEb) +STUB( + "dIQ0OADmtPk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEE6assignEPS7_PFvS9_EPNS2_10LibContextE) +STUB( + "dIVMJ+4sxQM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEppEi) +STUB("dIVxrrdpS9M", _ZN3sce4Json6Object8iteratorppEi) +STUB( + "dIYxHj-gmLY", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearch9terminateEv) +STUB( + "dIZrIpol8Tg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("dIb+pDBvpkM", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEEppEv) +STUB("dIb9LsrpkQM", sceVideoOutSysClose) +STUB( + "dIbc3aoXqDA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEC2Ev) +STUB("dIbolfOd0ls", _ZL17exception_cleanup19_Unwind_Reason_CodeP17_Unwind_Exception) +STUB("dIcP0UWgR0Y", JVM_GetMethodParameterAnnotations) +STUB("dIiGieE+kFY", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE4sizeEv) +STUB( + "dIjYYLfWrB0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE6resizeEj) +STUB( + "dIkzAPOI2nk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE6resizeEj) +STUB( + "dIp9pWmS-wc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE7popBackEv) +STUB( + "dIwPFbBNPU0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE7reserveEi) +STUB("dIwj75rcnHc", _ZN3JSC16IsoSubspacePerVMD2Ev) +STUB("dIxG0L1esAI", _ZTSPd) +STUB("dJ-gAyxuEZo", _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchStatusRequestD1Ev) +STUB( + "dJ2+BWqwL5o", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEeqERKS9_) +STUB( + "dJ46OIIsuHw", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariable9setslotIdEi) +STUB( + "dJAToEBTdtM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEneERKS9_) +STUB("dJGMa+okDOg", _ZN7WebCore21WheelEventDeltaFilter6createEv) +STUB("dJJ0UPrrsok", sceNpSessionSignalingGetConnectionFromPeerAddress) +STUB( + "dJJP9Tydwfg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEE11get_deleterEv) +STUB( + "dJPSQW7l+Xk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEC2EPS8_) +STUB("dJQV4HTNzuQ", _ZN7WebCore11DisplayList22ApplyDeviceScaleFactorD0Ev) +STUB( + "dJR-onKGan8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEE7add_refEv) +STUB("dJRIc7d5iqU", _ZN3sce2np13NpTitleSecretD0Ev) +STUB("dJSADN0mj2w", _ZNSt9basic_iosIcSt11char_traitsIcEE5imbueERKSt6locale) +STUB("dJSD90mnj1w", _ZN3sce4Json5Value13s_nullintegerE) +STUB( + "dJZQIzmgGFw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEC1ERKS7_) +STUB("dJay5BWLVNU", _ZN3sce7Toolkit2NP2V212ActivityFeed12SharedVideosC2ERKS4_) +STUB("dJcuQVn6-Iw", pthread_condattr_destroy) +STUB( + "dJg4XBxpG5w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEC1EPS8_) +STUB("dJin0-weqjc", mono_class_get_rank) +STUB("dJo43e1jVoM", sceVideoOutSysSubmitSubWindowLayout) +STUB( + "dJpo+wslbYE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE5emptyEv) +STUB("dJrX1kyg7e0", mono_aot_Sce_Vsh_Sl2_Sl2Clientunwind_info) +STUB( + "dJsCKmgb-vQ", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V131BandwidthUpstreamMetricsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_24BandwidthUpstreamMetricsEEE) +STUB("dJvClIzSO9s", _ZTIg) +STUB("dJvEN3jbZuM", _ZTVN3WTF17StringPrintStreamE) +STUB("dJvVWc2jOP4", __floattixf) +STUB("dJxro8Nzcjk", sceUsbdSetIsoPacketLengths) +STUB("dJz5g1oTF7c", _ZN7WebCore14MicrotaskQueue6removeERKNS_9MicrotaskE) +STUB("dJzkNeDFeAM", sceCustomMusicCoreBgmOpen) +STUB("dK7Won-E3EQ", mono_thread_pool_cleanup) +STUB("dK8-SgYf6r4", sceNpScoreDeleteRequest) +STUB("dKDHQDVme7A", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEEptEv) +STUB("dKDPfD6KvQc", Java_java_io_UnixFileSystem_list) +STUB("dKG2qYSn0Sc", X509_verify_cert_error_string) +STUB("dKIIZYGCGhQ", WKPageGetFrameSetLargestFrame) +STUB("dKQHpV5HDIQ", + _Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm14VgtPerfCounterE20SceRazorGpuBroadcast) +STUB("dKTVadRxXDs", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUserC2Ev) +STUB("dKU6o9uunCI", ubrk_getBinaryRules) +STUB( + "dKUBHYQlhMw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEED1Ev) +STUB( + "dKWTlMEXM9k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEC1ERKS7_) +STUB("dKadqZFgKKQ", sceImeKeyboardGetResourceId) +STUB("dKeshzt29G4", sceRegMgrNonSysGetInt) +STUB("dKjhNUf9FBc", _ZTISt12out_of_range) +STUB("dKp8nyVReZI", scePssKeyboardTerminate) +STUB( + "dKq-cEFHpvI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEC2ERS7_) +STUB("dKq3cqnQFx0", _ZN3sce2Np9CppWebApi7Matches2V118RequestTeamResults8fromJsonERKNS_4Json5ValueE) +STUB( + "dKqzlkVwl6A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEppEi) +STUB( + "dKrE-sYA3r8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "dKtRZW9hjj4", + _ZN3sce2Np9CppWebApi7Matches2V120ResponseInGameRoster10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_19ResponseMatchPlayerEEEEE) +STUB( + "dKu10FXNBC0", + _ZN7WebCore9JSDOMRect6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_7DOMRectENS6_13DumbPtrTraitsIS8_EEEE) +STUB("dKxRSfasnKc", _ZN3sce7Toolkit2NP2V24Core19JsonMemoryPoolStatsC1Ev) +STUB("dKzR0C0qpTM", WKBundleHitTestResultCopyLinkLabel) +STUB( + "dL2CRNzDFwU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEeqERKS9_) +STUB("dL7+b8hSxmk", _ZN7WebCore19JSDOMMatrixReadOnlyD2Ev) +STUB("dL7wkqcugzw", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13integer4IsSetEv) +STUB( + "dLFwEEGoatU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("dLKXqZMhgwY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEEC2ERS7_) +STUB( + "dLLa4acmLeg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEmmEv) +STUB("dLNhHwYyt4c", _ZN3sce2np4Time15AddMicroSecondsEl) +STUB( + "dLQiwYDslDE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEC1Ev) +STUB("dLRVhzwk4h4", _ZN7WebCore11DisplayList9DrawImageD2Ev) +STUB( + "dLTBg3IxYBs", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("dLUPZJFaN64", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Error6toJsonERNS_4Json5ValueEb) +STUB( + "dLWImpiSKmE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE8pushBackERKS8_) +STUB( + "dLb38yhalsE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEaSERKS7_) +STUB( + "dLeDnSMicEw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEC1Ev) +STUB("dLeadZpmT8U", unum_parseDouble_67) +STUB("dLg68qG0SSE", + _ZN3sce7Toolkit2NP2V29Messaging25GameDataMessageAttachment19MAX_SIZE_ATTACHMENTE) +STUB( + "dLkr9evJ9Gg", + _ZN7WebCore11MemoryCache26removeResourcesWithOriginsEN3PAL9SessionIDERKN3WTF7HashSetINS3_6RefPtrINS_14SecurityOriginENS3_13DumbPtrTraitsIS6_EEEENS_18SecurityOriginHashENS3_10HashTraitsIS9_EEEE) +STUB( + "dLmDIHo-nSs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEeqERKS9_) +STUB("dLmvQfG8am4", __ucmpti2) +STUB("dLn4O8zBYOU", uset_resemblesPattern_67) +STUB( + "dLnS86HoNag", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEptEv) +STUB("dLsPzF5r6WA", sceIduUtilGetMasterVersion) +STUB( + "dLvGjoQMQkM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEEcvbEv) +STUB("dLvYqphQ+l8", _ZN7WebCore30rejectPromiseWithThisTypeErrorERN3JSC14JSGlobalObjectEPKcS4_) +STUB( + "dLwMxBPXE0E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEEC2Ev) +STUB("dLwUVYV1jA0", _ZNK7WebCore11MediaPlayer17droppedFrameCountEv) +STUB("dM3hP4y99rM", hb_shape) +STUB( + "dMAA2OQp7LE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEC2ERS7_) +STUB("dMDksJtEt1E", scePsmResourceCallback) +STUB( + "dMH7BeD6MUI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEE3getEv) +STUB("dMK1BHzvaNs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEEmmEv) +STUB("dMKbGZFdVLI", WKPreferencesSetJavaEnabled) +STUB("dMM77VaIqi8", Java_java_io_FileInputStream_skip) +STUB("dMPNR0z0WgQ", _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession9getMemberEv) +STUB("dMQ+xGvTdqM", sceNpMatching2GetRoomMemberDataExternalList) +STUB("dMSDtQsYuJM", FT_Get_Advance) +STUB( + "dMXhL+eS4DM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEmmEi) +STUB("dMaMqNmzAeg", sceCesUtf8ToEucKr) +STUB("dMbPuG5+zI4", ENGINE_finish) +STUB("dMfOOnkRNko", _ZN3sce7Toolkit2NP2V24Core5EmptyC2ERKS4_) +STUB("dMnCUhZnWJs", + _ZN3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead11setPlatformERKNS3_8PlatformE) +STUB("dMntbscdpEQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEE7get_refEv) +STUB("dN0JJUCsu94", __dummy__) +STUB("dN3++s2PlgY", uscript_getScriptExtensions_67) +STUB("dN33S5g2EZ0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE3endEv) +STUB("dN3ooEQkn90", sceCompositorSetSystemConfigWithMask) +STUB("dN5g1l0usVo", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request7GetFeedD2Ev) +STUB("dN5iXR8igXM", sceNetApctlGetState) +STUB( + "dN6XQ5pmeu4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE21intrusive_ptr_sub_refEPS9_) +STUB("dNGzROhnvKE", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed14PlayedWithFeedEE3setEv) +STUB("dNJPo8lBp+E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEE3getEv) +STUB("dNMNRaIQn1Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE8capacityEv) +STUB("dNMdheP8oUQ", WKContextGetStatistics) +STUB("dNOmrmW65Vs", ureldatefmt_formatNumeric_67) +STUB("dNP8LFGMzAg", rgctx_fetch_trampoline_mrgctx_55_p) +STUB("dNRpE5fIJro", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEEptEv) +STUB( + "dNUVi6ZQYCk", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_4Page12ResourceTypeEEESt8optionalIT_ERKN3WTF6StringE) +STUB("dNcXHd9lTbU", _ZN3JSC8Debugger18willExecuteProgramEPNS_9ExecStateE) +STUB("dNd3wwKJFbE", mono_aot_Sce_PlayStation_Corejit_code_start) +STUB("dNdtjq0c3K0", mono_string_new_wrapper) +STUB( + "dNl6qQCkG-4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE6resizeEj) +STUB( + "dNlP6QPiG8s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEEC2ERKSA_) +STUB( + "dNqvuwo3EJQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEEC1Ev) +STUB("dNtSIr75Zws", _ZNK7WebCore16HTMLMediaElement7canPlayEv) +STUB( + "dNuDh5fvVLU", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB( + "dNwStw+Nmgk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEC1EPS8_) +STUB("dNwZb3b5vc0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEE7add_refEv) +STUB( + "dNxsnBI+A+A", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions18getjoinStateFilterEv) +STUB( + "dNy3fRrwGno", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEC1EPS8_) +STUB("dNyuci0PUD0", sceGnmInitialize) +STUB( + "dO07CzC4XhI", + _ZN9Inspector20CSSBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) +STUB( + "dO5Kj8zvNR4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEC1ERKS7_) +STUB("dO7-MxIPfsw", _ZTISt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE) +STUB("dO8sEmzD75U", _ZN7WebCore9CSSParserD2Ev) +STUB("dO9RGCbBqLE", ucnv_cbFromUWriteUChars) +STUB( + "dOAsThpqW94", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEEC2ERSB_) +STUB("dOB63+1z+QE", _ZN4Manx21DisplayRefreshMonitor5startEv) +STUB( + "dOCFwS-lv70", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("dOCQwaSQ0XY", _U_dyn_info_list) +STUB("dOKh96qQFd0", _ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED2Ev) +STUB( + "dOP40JcZrlc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEmmEv) +STUB("dOXJqnWa9DM", ures_getBinary_67) +STUB("dOXrKo7eB1o", il2cpp_array_new_full) +STUB( + "dOdVvoVfyHE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("dOiTueCS7U4", _ZN3JSC7Symbols30getOwnPropertyNamesPrivateNameE) +STUB("dOkZKbWKlh8", _ZN8meta_gen14ImageRetriever18IsUseThumbnailFileEv) +STUB( + "dOleXT7qzcA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEeqERKS9_) +STUB("dOn+IaKJAXk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEC1Ev) +STUB("dOnP-PRiTp0", _ZN3sce3pss5orbis5input12InputManager31GetInvalidOperationByOtherUsersEPb) +STUB( + "dOqTSHuknlY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEC2ERKS7_) +STUB( + "dOti2Fe0FEE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("dOy7pCh+keI", WKPageGroupAddUserStyleSheet) +STUB("dP+1suucXso", _ZNK7WebCore12SharedBuffer4dataEv) +STUB("dP+3UFf8BBw", _ZNK15AbstractStorage14TwitterStorage7GetStatEPNS_4StatE) +STUB("dP14OHWe4nI", _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE13do_date_orderEv) +STUB("dP1EbNocaYk", Java_java_lang_StrictMath_tan) +STUB( + "dP4yok0rwJA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("dP5zwQ2Yc8g", _ZNSt7collateIcED2Ev) +STUB("dP72lLgdpIQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V19JoinStateEEeqERKS7_) +STUB( + "dP786K4h6VA", + _ZN8meta_gen11MsvPromoter33setKeyValue_TBLV_AudioChannelTypeENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB("dPEaNlENkE0", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V15Error9setSourceEPKc) +STUB( + "dPEbpRo7VMs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE5emptyEv) +STUB("dPGqAl2SRpw", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_19UserRankInformationEED2Ev) +STUB("dPN4cmA3Tok", _ZN3sce7Toolkit2NP2V24Core8ResponseINS3_5EmptyEE3getEv) +STUB("dPOHeORqhbw", _ZN4IPMI4impl10ServerImpl7destroyEv) +STUB( + "dPOTiqMyU7g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("dPPUVVzPPhQ", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEEptEv) +STUB("dPRTZh5BsuU", _ZN7WebCore11DisplayList11DrawingItemD0Ev) +STUB("dPRhBZ5groQ", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V224TestForProfanityResponse12messageIsSetEv) +STUB("dPUWSr5KAu0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEC1ERKS7_) +STUB("dPVnSD10XwU", _ZN7WebCore30contextMenuItemTagSpellingMenuEv) +STUB( + "dPaptXGNduE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEmmEv) +STUB("dPaxhfPgTc8", uiter_setUTF8_59) +STUB("dPb9gJXIip0", Java_com_sony_gemstack_org_dvb_application_AppsDatabaseImpl_n_1getAppKeyFromId) +STUB("dPcZ76eZb64", FT_Face_GetCharVariantIndex) +STUB( + "dPcjiam1wOg", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V113ErrorResponseC2EPNS1_6Common10LibContextE) +STUB( + "dPdi6E-j9mE", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody28setExclusiveLeaderPrivilegesERKNS1_6Common6VectorINS5_6StringEEE) +STUB("dPgPd4ajtio", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE8pushBackERKS6_) +STUB( + "dPhOPEqjSi4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "dPiAHdQWU0I", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEeqERKS9_) +STUB("dPj4ZtRcIWk", sceContentSearchInit) +STUB("dPutz-5ICIM", delegate_virtual_invoke_25) +STUB("dPvALr3HtDE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEC2ERS7_) +STUB( + "dPwXGDPvKL4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEptEv) +STUB( + "dPxehxeWTtE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("dPyXJbfCReM", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead8fromJsonERKNS_4Json5ValueE) +STUB( + "dQ23Qrxf5mE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("dQ2GohUHXzk", sceSaveDataAbort) +STUB("dQ3p09wGMvQ", _ZN7WebCore27ContentSecurityPolicyClientC2Ev) +STUB("dQ7dRZpK+UI", mono_assembly_loaded) +STUB( + "dQEbNvivdG8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEC2EPS6_PNS2_10LibContextE) +STUB("dQF1zad2Nvw", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V111LeaveReasonEEptEv) +STUB( + "dQFPWRSreYc", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToSendGameSessionMessageC1Ev) +STUB("dQHWEsJtoE4", pthread_mutexattr_init) +STUB("dQHwxvVATh8", _ZN3JSC7Symbols14addPrivateNameE) +STUB("dQJAe3CGHPo", png_process_data_pause) +STUB( + "dQKJrG9QLeg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEixEm) +STUB("dQLzXYmfyoo", il2cpp_runtime_object_init_exception) +STUB("dQMOaLknhuE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEC1ERS7_) +STUB( + "dQOxdi38pfA", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13boolean9IsSetEv) +STUB( + "dQP7ie+tAEg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("dQReuBX9sD8", sceSslGetSubjectName) +STUB("dQUNWrAatwM", _ZNK3sce2Np9CppWebApi6Common8IteratorIfEptEv) +STUB( + "dQfF33d1QAo", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEiRNS2_10LibContextEPT_m) +STUB("dQhl7bw-umE", coil_mspace_free) +STUB( + "dQiTOmt2SOA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEEC1ERS9_) +STUB("dQnI6o2OEC8", sceFiosFHSync) +STUB("dQqUGx+R-jg", + _ZN7WebCore28throwRequiredMemberTypeErrorERN3JSC9ExecStateERNS0_10ThrowScopeEPKcS6_S6_) +STUB("dQumQIBx1Iw", _memalign) +STUB( + "dQwOtGLBEIo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("dQx5K0yBi7U", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_21NotifyChallengeResultEE3getEv) +STUB( + "dR0bPceL7hY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEED1Ev) +STUB("dR3zIvK+YUg", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersC1ERS5_) +STUB( + "dR92UOMJ9yM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEEC1Ev) +STUB("dRDquzClL+M", sceCesSJisToUtf16be) +STUB("dREVnZkAKRE", _Foprep) +STUB( + "dRJPDrPwIgg", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions31getxPSNSESSIONMANAGERSESSIONIDSEv) +STUB( + "dRK3c7VzoFU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("dRKF4Pjs64s", _ZN7WebCore8SVGNames10patternTagE) +STUB("dRNCLyDeAM8", _ZN7WebCore9GLContextnaEm) +STUB("dRby+MAZnUs", GCC_except_table478) +STUB( + "dRc4v8QqLGI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEdeEv) +STUB( + "dRgfPO4W5TE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("dRmKsRxRCj4", _ZN7WebCore22createFragmentFromTextERKNS_11SimpleRangeERKN3WTF6StringE) +STUB("dRsps4-NVDM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119SubtaskAvailabilityEEC1EPS6_) +STUB("dRszNNyGWkw", sceNpScoreGetRankingByAccountIdAsync) +STUB( + "dRu2RLn4SKM", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERt) +STUB( + "dRyRUmxd3qY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE4sizeEv) +STUB("dS1+1D1LRHs", sceShellCoreUtilSetBgmProhibition) +STUB( + "dS7GnoYyEYw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEEaSERSA_) +STUB("dSBshTZ8JcA", _ZTIN10__cxxabiv117__pbase_type_infoE) +STUB( + "dSDHQO7xspM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEED2Ev) +STUB( + "dSDthI+7uuA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEED1Ev) +STUB("dSJ+nytbkVo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEEmmEv) +STUB( + "dSJzcrjk9JE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEE7add_refEv) +STUB("dSLgNPRZVxw", _ZN3sce2Np9CppWebApi7Matches2V119AdditionalStatistic13setStatsValueEPKc) +STUB("dSMsNrFVXTI", rgctx_fetch_trampoline_mrgctx_127_p) +STUB("dSOhgCHXQ-w", Java_sun_awt_DownloadedFont_loadFromMemoryWrite) +STUB("dSP1n53RtVw", SSL_setServerCert) +STUB("dST+OsSWbno", _FErf_one) +STUB("dSXGljvWG7Q", _ZNK7WebCore25DropShadowFilterOperation1yEv) +STUB("dSZ7mcs3MNk", AacsModuleTerm) +STUB("dSa7o1AMySA", g_ptr_array_remove_index_fast) +STUB("dSbNeGQsi+k", _ZN7WebCore11DisplayList12PutImageDataD2Ev) +STUB( + "dSd02OdfX3I", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEdeEv) +STUB( + "dSfKN47p6ac", + _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE11do_get_yearES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm) +STUB( + "dSgRe4p4a2M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE8copyFromERKS9_) +STUB( + "dShIJozKCuc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEC2ERS7_) +STUB("dSifrMdPVQ4", _ZTSPKa) +STUB("dSlkmPVTcvk", sceNpAsmGetNpCommInfo) +STUB("dSlrvp54kDg", _ZN7WebCore14DocumentLoaderC1ERKNS_15ResourceRequestERKNS_14SubstituteDataE) +STUB( + "dSpLS87AaCQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEC2EPS6_) +STUB("dSs0x+rJyoI", _ZNK9Inspector17BackendDispatcher8isActiveEv) +STUB( + "dSsgl-Q4XJc", + _ZN3sce2Np9CppWebApi14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBody8fromJsonERKNS_4Json5ValueE) +STUB( + "dSu4mUXCGMs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEeqERKS9_) +STUB( + "dSuEKNKO6Tg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEEC1ERKSA_) +STUB("dT4j12Uj-74", YGNodeStyleGetMaxHeight) +STUB( + "dT9tWRzM0xU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEE7get_refEv) +STUB("dTAdz3mG+F4", mono_aot_Sce_Vsh_VideoPlayerunbox_trampolines) +STUB("dTAf52wCeIE", _ZN3sce7Toolkit2NP2V212EventsClient5Event8deepCopyERKS4_) +STUB("dTAgv0z7Fc8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEC1ERKS7_) +STUB("dTBsmG4oDL8", _ZTVN3JSC15WeakHandleOwnerE) +STUB("dTC0LleFH1g", nsnp_Init) +STUB( + "dTExJybP9r0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEeqERKS9_) +STUB( + "dTFLjxnNuF4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEC1EPS6_PNS2_10LibContextE) +STUB("dTICfhH40l4", __hi0bits_D2A) +STUB("dTTuHyeorCc", + _ZN12video_parser5vpcom3rtc21ConvertTickToDateTimeEPKmPNS1_8DateTimeEPNS1_10DateTimeExE) +STUB( + "dTU1x24dsIc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB("dTXC+YcePtM", sceNpScoreChangeModeForOtherSaveDataOwners) +STUB( + "dTay0VzPn38", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEEC1Ev) +STUB("dTfEVk7nhMQ", + _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi22ParameterToCreateMatch21getcreateMatchRequestEv) +STUB("dThAItB-vuQ", _ZN3sce2Np9CppWebApi6Common6String6appendERKS3_) +STUB("dThMLuDxuM0", _ZN7WebCore12PrintContext12pagePropertyEPNS_5FrameEPKci) +STUB("dTnYqqLIQ6c", waitpid) +STUB( + "dTprSonTtws", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE7popBackEv) +STUB( + "dTqfZNrV0+0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEEaSERS9_) +STUB( + "dTs4ndVC5vE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE3endEv) +STUB("dTvQe2clcNw", sceNpManagerIntUpdateVshAccessToken) +STUB( + "dTvjrV5GaxU", + _ZN7WebCore15reportExceptionEPN3JSC9ExecStateEPNS0_9ExceptionEPNS_12CachedScriptEPNS_16ExceptionDetailsE) +STUB("dU+6TbijWus", _ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody10getOfferIdEv) +STUB("dU-omZFCg+w", _ZN3JSC17JSInternalPromise6createERNS_2VMEPNS_9StructureE) +STUB("dU0CbOsMgbA", _ZN8meta_gen17CommonFsOperationD2Ev) +STUB("dU1AKIT+RAU", Java_java_util_zip_Inflater_inflateBytes) +STUB( + "dU5z1jB-kK8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE8capacityEv) +STUB( + "dU6JVsLrZDE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEE7get_refEv) +STUB("dU8Q2yzFNQg", _ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2Em) +STUB( + "dU8RwfGWk6I", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEptEv) +STUB("dUG7ac09DOI", Java_sun_net_PortConfig_getLower0) +STUB( + "dUGror8jSFE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE7popBackEv) +STUB("dUHO5qR+hkw", sceDtcpIpTermAuthAsync) +STUB("dUN4oAm5lRc", _ZN3sce7Toolkit2NP2V28Commerce11SubCategoryD2Ev) +STUB( + "dUPpU3bqy88", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEC1EPS6_PNS2_10LibContextE) +STUB( + "dUQ5kklE-qU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEEC2ERSA_) +STUB( + "dUSn2b04vxQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEixEm) +STUB( + "dUUpNwClABw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("dUa8Jm9QRbk", _ZNSt9basic_iosIcSt11char_traitsIcEEC2EPSt15basic_streambufIcS1_E) +STUB("dUgSyWdA5J0", __tsan_unaligned_write8) +STUB( + "dUi73hymQMc", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("dUj4FuHaw4o", _ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEEixEm) +STUB("dUmABkAnVgk", sceFontStyleFrameUnsetEffectSlant) +STUB("dUmIK6QjT7E", sceFontGraphicsDrawingCancel) +STUB( + "dUnhYb4eJaA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE5clearEv) +STUB( + "dUp9wYKFji8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEmmEi) +STUB("dUwpX3e5NDE", sceUltQueuePush) +STUB("dV+zK-Ce-2E", _ZN3sce2np14CalloutContextC1Ev) +STUB( + "dV4cJEzlK6U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("dVCh5JiPsSY", _ZNK3sce2Np9CppWebApi6Common6String5c_strEv) +STUB( + "dVXl9H+eYws", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEEptEv) +STUB("dVY7nLRddBM", sceSpPthreadAttrDestroy) +STUB("dVZwn9ImE9c", _ZN3sce7Toolkit2NP28NpSessionDetailedInformationC1Ev) +STUB("dVaPJOPUTjM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEEC2Ev) +STUB( + "dVcdck+KMiM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEE3getEv) +STUB("dVckoHWTFrY", mono_aot_ReactNative_Modules_Vsh_Gct_Telemetry2unbox_trampolines_end) +STUB("dVd8O+Ol-GE", sceCesEucCnToUtf32) +STUB("dVqorQqy55Y", udat_parseCalendar_67) +STUB( + "dVuBTbI88oY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("dVupugCwF2M", _ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error10setMessageEPKc) +STUB("dVvFefd-TiI", _sceNpHeapShowMemoryStat) +STUB("dVw2spCtjmg", _ZNK7WebCore15HTMLFormElement24unsafeAssociatedElementsEv) +STUB("dW0RTlUeeMI", _ZN7WebCore9JSElementC2ERKS0_) +STUB( + "dW3jgtlMU-Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEEC2ERKSA_) +STUB("dW3xsu3EgFI", rand_r) +STUB( + "dW5-zvhbSLM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEptEv) +STUB("dW64DP3badk", + _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBodyC1EPNS1_6Common10LibContextE) +STUB("dW6FDk7b4KY", _ZNK3WTF9MediaTimeltERKS0_) +STUB("dWBmL+TFmjo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEdeEv) +STUB( + "dWITdp6t+wM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEEC2ERSA_) +STUB("dWJFxzC2J4o", _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_11TusVariableENS2_IS4_EEEEC1Ev) +STUB("dWM80AX39o4", sceGameLiveStreamingEnableLiveStreaming) +STUB("dWSZKX9yF6E", _ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEE7reserveEi) +STUB( + "dWU1iHUxQ3Y", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE3endEv) +STUB( + "dWZyQGJwGU4", + _ZN3sce2Np9CppWebApi7Matches2V130ResponseMatchStatisticsFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_23ResponseMatchStatisticsEEE) +STUB("dWb7tCDzI3M", _ZN3NTF22URLRequestJobSchedulerD0Ev) +STUB("dWbZ-HBojqU", _ZN7WebCore12SharedBuffer6createEv) +STUB("dWgY+1WxBgU", _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForReadD1Ev) +STUB("dWih9qPFB38", _ZNK7WebCore19ResourceRequestBase15httpHeaderFieldERKN3WTF6StringE) +STUB( + "dWoz0YUCxLE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE8capacityEv) +STUB("dWtzkMtOQgs", _ZN7WebCore21DiagnosticLoggingKeys28canceledLessThan20SecondsKeyEv) +STUB("dWuO75ebY2U", _ZN7WebCore8Document16createNSResolverEPNS_4NodeE) +STUB("dWunftoF+rk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEaSERKS7_) +STUB( + "dWunuJt3F-E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEEC1ERSA_) +STUB("dWvzwNICM7Y", _ZL16terminateHandler) +STUB("dWz3HtMMpPg", _WGetint) +STUB("dX+4xk5WkJ0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEC2Ev) +STUB( + "dX+D8A2dKXE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEE11release_refEv) +STUB("dX-MVpXIPwQ", sceHmdInternalSetHmuPowerControlForDebug) +STUB("dX4tPgLH7Mw", vzone_setLastModified_67) +STUB( + "dX4vUjIwJBA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEC1ERKS7_) +STUB("dX7q33X6fsY", rgctx_fetch_trampoline_rgctx_55) +STUB( + "dX9RbODS7r4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("dXJK59vXRxs", FT_Stream_GetShort) +STUB( + "dXM9ekcXZH0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE6resizeEj) +STUB("dXMGKAzykH0", mono_load_remote_field) +STUB( + "dXMNxe5rX5w", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "dXNqSHrh1T8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEC2EPS8_) +STUB("dXPaz65HNmk", sceAmprCommandBufferPushMarker) +STUB( + "dXWFoSH5ztc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEaSERKS7_) +STUB("dXWcryo7pHM", _ZN3sce7Toolkit2NP2V211SharedMedia10Screenshot16MAX_LEN_PHOTO_IDE) +STUB("dXXTzDja-L0", mono_aot_System_Threading_Tasksplt) +STUB("dXZ0EkIPFMI", jinit_arith_decoder) +STUB( + "dXatJBtJfys", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEC1EPS6_PNS2_10LibContextE) +STUB("dXdRdbl9xtU", _ZN7WebCore5Frame13rangeForPointERKNS_8IntPointE) +STUB( + "dXeDTYYLd6U", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEptEv) +STUB( + "dXfbev-6fYs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB("dXm043aEyEs", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi32ParameterToPostGameSessionsTouchC1Ev) +STUB("dXm2FJEv86k", _ZNK3WTF6String8foldCaseEv) +STUB( + "dXmWrzeBxFI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("dXy+lFOiaQA", _ZNKSt22_System_error_category4nameEv) +STUB("dY5HI1HhX8Q", _ZN3WTF13printInternalERNS_11PrintStreamERKNS_7CStringE) +STUB("dY6vQe8+YfA", _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse17getExpirationTimeEv) +STUB("dY7kESx35ZY", _ZN7WebCore14MicrotaskQueueC2Ev) +STUB("dY9982DP+HM", _ZN3sce7Toolkit2NP2V212EventsClient7Request9GetEvents14MAX_NUM_EVENTSE) +STUB("dYDAfB+cJEU", sceVideoOutAdjustColorSpaceConversion_) +STUB( + "dYFVWVEUWWA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB("dYIsxjHBQig", + _ZN3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer11setOnlineIdERK13SceNpOnlineId) +STUB("dYJJbxnyb74", _Fgpos) +STUB("dYLaCFvC8Nk", _ZN7WebCore14SQLiteDatabaseC1Ev) +STUB( + "dYNG-sMhNGI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE5beginEv) +STUB("dYQGzdpSBdY", __tsan_init) +STUB( + "dYZbnR7ROJA", + _ZN7WebCore16ScriptController29executeUserAgentScriptInWorldERNS_15DOMWrapperWorldERKN3WTF6StringEb) +STUB( + "dYe1Xbboa9w", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEplEm) +STUB( + "dYe3GdRlqWg", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData37getxPsnTcsComparedLastUpdatedDateTimeEv) +STUB( + "dYfIfkrJRD0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEmmEv) +STUB("dYgjSFHArb4", mono_aot_Sce_Vsh_Np_RifManagerjit_code_end) +STUB("dYh6MqCHi0w", + _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead21createdTimestampIsSetEv) +STUB( + "dYo8UGSaXo4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEEC2ERKSA_) +STUB( + "dYqXC8YUJfc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEEC2Ev) +STUB("dYstOfF8XVk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEppEi) +STUB("dYtbUAmNLBc", sceCesUtf16beToGb) +STUB("dYv-+If2GPk", pthread_rwlock_reltimedrdlock_np) +STUB("dZ-zZ+N9aAo", sceSystemLogger2SetAsyncPeripheralConnectionLog) +STUB("dZ3RfDzgmCY", sceShellCoreUtilGetAppLaunchedParamStringByBudgetType) +STUB("dZ40swGINYY", _ZN3sce2Np9CppWebApi13InGameCatalog2V514ContainerMedia11unsetImagesEv) +STUB("dZ5XL3B+n0Q", _LMBCSData11_67) +STUB("dZ7FLitHdjs", _ZN7WebCore10JSDocumentC2ERKS0_) +STUB("dZAozwzECsU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEEaSERS6_) +STUB( + "dZE2wRQ69Mk", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB( + "dZLnpdDRofU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("dZUSSMQ9SwI", _ZN2GK9PlayerPSNC1ERKS0_) +STUB( + "dZZjLinFgAo", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate10setPerGameERKNS1_6Common12IntrusivePtrINS3_29MatchCompletionRatePropertiesEEE) +STUB("dZgVsuPetJY", sceSaveDataDebugFile) +STUB( + "dZlZaYlzCrw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEC1EPS8_) +STUB("dZoaEU-i8jw", _ZN3JSC8DebuggerdaEPv) +STUB("dZqlWxQ1p+U", sceVisionManagerGetResultOfFindPadCorrespondRegion) +STUB( + "da0XFGB7AZY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE21intrusive_ptr_add_refEPS9_) +STUB("da1Sm8-QDoU", sceAgcAcbAtomicMemGetSize) +STUB("da4rQ4-+p-4", sceFontStyleFrameSetScalePixel) +STUB( + "da5SbLAjGUY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE21intrusive_ptr_add_refEPS7_) +STUB("da6-yq0GbLg", sceKernelNotifySystemSuspendStart) +STUB( + "da78gbjqrXU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "daHCjVTV85o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEE11get_deleterEv) +STUB("daHqmCyux18", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEED1Ev) +STUB( + "daL8oRzMAx4", + _ZN3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayerC2EPNS1_6Common10LibContextE) +STUB("daP+XLNmktw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEEC2ERS6_) +STUB("daYJeqtKNh8", _ZN7WebCore17JSDOMGlobalObjectD1Ev) +STUB("dacK3EAK3-0", _ZN3WTF9MediaTimeC2Ev) +STUB("daeq2j6k3Bc", EVP_CIPHER_CTX_cleanup) +STUB("daiiTlAWzTc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEEC2Ev) +STUB("dairlPhr80o", _ZN9Inspector21InspectorRuntimeAgentnaEmPv) +STUB( + "dalzLw400T4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("dar03AOn+nM", getcontext) +STUB("dazLPF8xpo4", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE4sizeEv) +STUB("db397aKWSfw", mono_aot_Sce_PlayStation_PUIPlatformplt) +STUB("db4-SF3n8lE", _ZN7WebCore29SQLiteStatementAutoResetScopeC2EPNS_15SQLiteStatementE) +STUB( + "db7BSI3qZQc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE21intrusive_ptr_add_refEPS9_) +STUB("db7qZKvMOAo", _ZNK7WebCore16HTMLMediaElement12getStartDateEv) +STUB("dbBrM17J6c8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEC1ERS7_) +STUB("dbDvWQUel6A", inflate) +STUB( + "dbFB0+jZjYc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEE7get_refEv) +STUB("dbHh2xxKlEs", sceCesUcs2ToSJis) +STUB("dbNWHmhP13k", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEEmmEv) +STUB( + "dbQRu5HZJRE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEED1Ev) +STUB("dbR9oqRLeH8", psl_check_version_number) +STUB("dbRwv1xfbuA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEC2ERS7_) +STUB("dbSDLYu3gzY", _ZNK7WebCore11MediaPlayer26shouldCheckHardwareSupportEv) +STUB("dbVB9N6AQc4", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEEneERKS5_) +STUB( + "dbdP0rOpf74", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEppEv) +STUB( + "dbkOvHWwCtE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEC2EPS6_PNS2_10LibContextE) +STUB( + "dbqLVcU84WI", + _ZN9Inspector21InspectorRuntimeAgent8evaluateERN3WTF6StringERKS2_PS4_PKbS8_PKiS8_S8_S8_S8_RNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISE_EEEERNS1_8OptionalIbEERNSJ_IiEE) +STUB("dbrSNEuZfXI", sceNetShowPolicyWithMemory) +STUB( + "dbtwGwUgOHE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEEC1ERSA_) +STUB("dbty069DxEI", _ZN3WTF21RefCountedLeakCounterD2Ev) +STUB( + "dbwE6K7pmAA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("dbwyzALlKOQ", sceShellCoreUtilTestBusTransferSpeed) +STUB("dbycEreQEcg", _ZN3WTF14FileSystemImpl18createSymbolicLinkERKNS_6StringES3_) +STUB( + "dbzI-W2txtY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEneERKS9_) +STUB("dbzPEmNY4C0", _ZThn16_N9Inspector28InspectorScriptProfilerAgentD0Ev) +STUB( + "dc-GGIqAqtE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE7popBackEv) +STUB("dc1zY9su5S8", _ZN7WebCore9HTMLNames24aria_roledescriptionAttrE) +STUB("dc29NN1u8hs", _ZN7WebCore22EmptyFrameLoaderClient21forceLayoutForNonHTMLEv) +STUB("dc2YCey0wDI", WKPreferencesSetSerifFontFamily) +STUB( + "dc4O1LgR2+4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEC2EPNS2_10LibContextE) +STUB("dc4bb-f5YEE", cairo_set_operator) +STUB( + "dc5tQehn17o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEE7get_refEv) +STUB("dc7NozegWtA", _ZN3sce2Np9CppWebApi14SessionManager2V110FromMemberD1Ev) +STUB("dcBdIsplQ9A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEEC1ERS7_) +STUB("dcDNSplc0kE", _ZN3JSC10loadModuleEPNS_14JSGlobalObjectERKNS_10SourceCodeENS_7JSValueE) +STUB("dcICa24y1Wk", _ZN3sce2Np9CppWebApi6Common8IteratorIjEC1Ev) +STUB( + "dcLCLUI838s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEC1ERS7_) +STUB("dcQeaDr8UJc", sceFontFtSupportOpenTypeOtf) +STUB("dcRpnwhqCwc", _ZN7WebCore10FileHandleD1Ev) +STUB( + "dcWiJ1r+BAo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEC2Ev) +STUB("dcXa30bFtXE", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsD2Ev) +STUB("dcYDmPuMrvs", _ZN7WebCore9SampleMap12removeSampleEPNS_11MediaSampleE) +STUB("dcYyto60A7Q", _ZN7WebCore10JSLocationaSERKS0_) +STUB("dcaiFCKtoDg", __divsc3) +STUB("dcaza9VpqgE", mono_get_config_dir) +STUB("dcbbhKIZCDA", _ZNK3sce2Np9CppWebApi12Leaderboards2V123RecordScoreResponseBody10getTmpRankEv) +STUB( + "dcbt0aHD1mM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE5beginEv) +STUB("dccS4-gCIUw", _ZN3sce16CommonDialogUtil6ClientC2EPKcjmii) +STUB("dcdqMikPEKg", + _ZN7WebCore6Editor24computeAndSetTypingStyleERNS_15StylePropertiesENS_10EditActionE) +STUB( + "dclWhna3Zmk", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Runtime12RemoteObject7SubtypeEEEN3WTF8OptionalIT_EERKNS6_6StringE) +STUB( + "dclZYoKxbWQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEC1EPNS2_10LibContextE) +STUB( + "dd+TOu+F9vg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "dd-7TjE7Ogc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEixEm) +STUB("dd8jmd0it24", sceSdmaCopyWindowT2T) +STUB( + "dd9Dm9I3WwU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEC2Ev) +STUB( + "ddC6rVr90ZQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("ddF019Ndi1M", _ZN3JSC20AbstractModuleRecord6s_infoE) +STUB("ddLNBT9ks2I", _ZTISt8numpunctIcE) +STUB( + "ddQExZQn5-0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEC1EPKS8_) +STUB( + "ddSEFa-4pIM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEC1Ev) +STUB("ddXifqT9T3g", _ZN7WebCore10FileSystem19getFileCreationTimeERKN3WTF6StringERl) +STUB("ddYgzamMD2U", sceDbgAmprAprGetErrors) +STUB( + "ddkGCuaaoHQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEplEm) +STUB( + "ddl5QuwKFSo", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitations37unsetxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB("ddqtFoMOpKc", + _ZN3sce2Np9CppWebApi7Matches2V125RequestMatchPlayerFactory7destroyEPNS3_18RequestMatchPlayerE) +STUB("ddr7Ie4u5Nw", _ZNSt16invalid_argumentD2Ev) +STUB( + "dduC-QqwiSs", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setBoolean8ERKb) +STUB("ddykn-Mgr9g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEEptEv) +STUB("de4CGd-b1hg", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle11getPerGenreEv) +STUB("de4R3JIvhu8", mono_aot_I18N_Westunwind_info) +STUB( + "deCQcTumWcA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEED1Ev) +STUB("deCYc7iaC5Q", sceLncUtilGetDbgExecutablePath) +STUB("deFQEVRcKuQ", _ZN7WebCore8Document4openEPS0_) +STUB("deHBNJOPqkQ", _ZNK7WebCore4Path16fastBoundingRectEv) +STUB( + "deHdp5vLZZA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE5eraseENS2_8IteratorIS6_EERS9_) +STUB("deJgtP9hduc", + _ZNK3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform12getSessionIdEv) +STUB("deKZXB9S3YU", _ZN7WebCore15JSDOMWindowBaseD2Ev) +STUB("deKovf3qViA", sceCompositorWaitPostEvent) +STUB( + "deONKADDeNQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEmmEv) +STUB( + "deOd9UqWU2w", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEneERKS9_) +STUB( + "dePZKNCGvJ4", + _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicket28getxPsnAcceptPlatformNamePs5Ev) +STUB("deY8cQlIt9U", + _ZNK7WebCore24CoordinatedGraphicsLayer22filtersCanBeCompositedERKNS_16FilterOperationsE) +STUB( + "deZcCqoA+XA", + _ZN3WTF8JSONImpl10ObjectBase8setValueERKNS_6StringEONS_6RefPtrINS0_5ValueENS_13DumbPtrTraitsIS6_EEEE) +STUB("dec-84dKmRE", _ZN3sce7Toolkit2NP2V28Commerce8ProductsaSERKS4_) +STUB("dei8oUx6DbU", sceCoredumpDebugTextOut) +STUB( + "dep1WYPFX2U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEC2ERKS7_) +STUB("dep6W2Ix35s", + _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecy) +STUB( + "depsxzkj-Dc", + _ZN7WebCore15UserInputBridge11reloadFrameEPNS_5FrameEN3WTF9OptionSetINS_12ReloadOptionEEENS_11InputSourceE) +STUB("dewXw5roLs0", sceGnmGetPhysicalCounterFromVirtualized) +STUB("dewyjTlk+u8", cairo_fill_preserve) +STUB("df+b0FQnnVQ", sceHmdInternalGetVirtualDisplayHeight) +STUB("df+caEQAh2M", __ubsan_handle_invalid_builtin) +STUB("df-ZMVVP6YM", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEEixEm) +STUB("df-uTT8UBPk", unorm2_getNFKCCasefoldInstance) +STUB("df0Yx8UkJl4", _ZN3sce7Toolkit2NP17PostInGameRequestC1Ev) +STUB("df1wsFFZS04", _ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody10groupIsSetEv) +STUB("df8bbmIdNIM", _ZN7WebCore10ISOFullBoxD2Ev) +STUB( + "dfBxNlgdEVc", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData24hasxPsnAtomicOperationIdEv) +STUB("dfJGsuZUOoI", _ZN7WebCore8SVGNames14vert_adv_yAttrE) +STUB("dfPbLJxPIPc", _ZNK3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error11errorsIsSetEv) +STUB("dfRy73zK7WU", _ZN3JSC20TypedArrayControllerD0Ev) +STUB("dfVcdJL0PrU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V115SearchAttributeEEC1EPS6_) +STUB("dfVvFVZgr68", sceUltGetUlthreadRuntimeInfo) +STUB("dfXESAI+wLw", delegate_virtual_invoke_19) +STUB("dfXSH2Tsjkw", sceNpMemoryHeapDestroy) +STUB( + "dfcXC-oq-qo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEE3getEv) +STUB("dfghrxoUtJY", fuse_loop_mt) +STUB("dfjYwok17XE", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfileC1ERS5_) +STUB( + "dflFvHLDCJk", + _ZN8meta_gen11MsvPromoter24setKeyValueTBLTContentIdENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti) +STUB("dflHshVtztk", _ZN7WebCore8Document24setSelectedStylesheetSetERKN3WTF6StringE) +STUB("dfpVPyCdTMk", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15CategoryInfoSubEE7addressERKS3_) +STUB("dfppFf3sc4o", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession21getSupportedPlatformsEv) +STUB("dfqRsTgs+mA", WKPreferencesGetPDFPluginEnabled) +STUB( + "dfvJK+wbflE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE5beginEv) +STUB("dfwOjXqhQug", _ZN12video_parser17cVideoProfilerMp4D2Ev) +STUB( + "dfzIDPhK7S4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEED1Ev) +STUB( + "dg-6+A8kAgA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEC1Ev) +STUB( + "dgCw0U+07cQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB( + "dgI+vzyonf8", + _ZNK3sce2Np9CppWebApi14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayer13getPlayerNameEv) +STUB("dgJBaeJnGpo", sceNetPoolCreate) +STUB("dgJlOVnotOQ", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product8fromJsonERKNS_4Json5ValueE) +STUB("dgLPhYb+SDc", + _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead30reservationTimeoutSecondsIsSetEv) +STUB( + "dgMBOOpaabg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEE5resetEPS6_) +STUB( + "dgNbQrqIIgs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEEcvbEv) +STUB("dgQidT1on4k", _ZNK7WebCore12RenderWidget14windowClipRectEv) +STUB("dgSWiLGbjuY", _ZN3sce2np10NpOnlineIdC1ERKS1_) +STUB( + "dgVF64-449E", + _ZN3JSC14JSGlobalObject18getOwnPropertySlotEPNS_8JSObjectEPNS_9ExecStateENS_12PropertyNameERNS_12PropertySlotE) +STUB("dgY+IAMNNNU", _ZN7WebCore11DisplayList4ItemD1Ev) +STUB( + "dgYzIZTAbpA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEppEv) +STUB( + "dgeI-8mPRdQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEE3getEv) +STUB( + "dgf3FcU1KUU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEneERKS9_) +STUB( + "dgiSgFDUYps", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE6resizeEj) +STUB( + "dglmwU05gl0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEptEv) +STUB("dgloVN+pMyA", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS12TusVariablesEEC2Ev) +STUB( + "dgp9-L4z2j8", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setBoolean7ERKb) +STUB( + "dgpR5Y9TK-c", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("dgrP+xq8KeI", WKPreferencesGetCSSAnimationTriggersEnabled) +STUB( + "dgrYzAhleJc", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessionsC2Ev) +STUB("dguPFwFpGzU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEE3getEv) +STUB("dgy+itLNWbM", _ZN9Inspector21InjectedScriptManagerD1Ev) +STUB("dh11uAUWNyM", sceUltQueueDataResourcePoolDestroy) +STUB( + "dhEpG5tPDHg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE10setContextEPNS2_10LibContextE) +STUB("dhG-bxjCkOg", ucsdet_getName_59) +STUB("dhJGQPKLmn0", _ZN3sce2np14JsonDocBuilderC2ERKNS0_9JsonValueE) +STUB("dhK16CKwhQg", __isfinite) +STUB( + "dhOv7EMNP-E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEED2Ev) +STUB("dhQRJ10Z-fc", _ZN3JSC7Symbols19matchAllPrivateNameE) +STUB("dhQXEvmrVNQ", scePadSetLightBarBaseBrightness) +STUB("dhUdyTVC3Zw", sceIduUtilGetSettingStr) +STUB( + "dhUfKu5AOUw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEC2EPKS8_) +STUB("dhVCSuqXp44", _ZN4Manx8X509cinf15convertTime64_tEPNS_4DateE) +STUB("dhWQF5yRpr8", _ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody14getRulesetNameEv) +STUB( + "dhWT0QOEWRI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEaSERS7_) +STUB("dhXJhCjAQHU", il2cpp_method_has_attribute) +STUB( + "dhY8-lRCgPw", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getInteger8Ev) +STUB("dhZM4hmC--A", _ZNSt11logic_errorC1ERKS_) +STUB("dhdCTGu0nAM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEE7get_refEv) +STUB("dhgZVtpnSPE", WKBackForwardListGetBackListCount) +STUB( + "dhgkL56EcCM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEC1EPS8_) +STUB("dhjAyKgWIFg", _ZN7WebCore15DatabaseTracker13databaseNamesERKNS_18SecurityOriginDataE) +STUB( + "dhjn7Y+jzfk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("dhk0U1yIuJo", _ZN15AbstractStorage14YoutubeServiceD2Ev) +STUB("dhstXlOnMVc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEEppEi) +STUB("dhuH8HjNhUY", sceRegMgrGetBinInitVal) +STUB( + "dhylAHlhjkQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEED2Ev) +STUB("di-B+VBuTeQ", ubrk_setText_59) +STUB("di0FZJujA+M", utext_replace_67) +STUB("di1MIW1kJ1w", mono_aot_mscorlibunbox_trampoline_addresses) +STUB("di7ibLJX-w4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEEplEm) +STUB( + "diD0LhcR0YY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "diDO0jsa508", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "diG2rM18Szw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "diG6XTXNthw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEC1EPS8_) +STUB("diHA2bZJ9sY", _ZN7WebCore9HTMLNames13minlengthAttrE) +STUB("diHLdB8SnSg", _ZN3sce7Toolkit2NP2V23TUS7Request17TryAndSetVariableC1Ev) +STUB( + "diHMDzs2fqE", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId11setobjectIdEPKc) +STUB( + "diNH3hiczYQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12string1IsSetEv) +STUB( + "diPlageaYXk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEEC2ERKS9_) +STUB("diQSBvLG+1w", sceHandTrackerGetDefaultParam) +STUB("diS+sFRaYqw", _ZNK3sce7Toolkit2NP9Utilities6FutureI7SceNpIdE3getEv) +STUB("diSRws0Ppxg", _ZNSt13_Regex_traitsIcE6_NamesE) +STUB( + "diTx9FOW4Q0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEC2Ev) +STUB("diU1x2QioOE", _ZN4Manx6Screen14availableWidthEv) +STUB("diUa3X2tYRM", _ZN3sce2Np9CppWebApi6Common6VectorIdE5eraseENS2_8IteratorIdEERS6_) +STUB( + "diXiDTBvpjE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE4sizeEv) +STUB("diXjQNiMu-s", sceAjmInstanceCodecType) +STUB("diaPIiaKzs0", rgctx_fetch_trampoline_mrgctx_72) +STUB( + "dihjdz4fiPk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEC1Ev) +STUB("dihk6nhPzOs", _ZN7WebCore24CoordinatedGraphicsLayer8addChildEPNS_13GraphicsLayerE) +STUB("dim5NDlc7Vs", SSL_ASYNC_sendMessage) +STUB("dioJZ1zC+BY", _ZN7WebCore5Range13cloneContentsEv) +STUB( + "dioquoDaNp4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEneERKS9_) +STUB("ditDH8nKW84", rgctx_fetch_trampoline_mrgctx_81) +STUB("dj+O5aD2a0Q", sceNpCmpOnlineId) +STUB( + "dj3ExVut2Eo", + _ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime26InternalPropertyDescriptorEE11runtimeCastEON3WTF6RefPtrINS5_8JSONImpl5ValueENS5_13DumbPtrTraitsIS8_EEEE) +STUB("dj3Gl1YYvJ8", + _ZN7WebCore11DisplayList14DrawingContextC1ERKNS_9FloatSizeEPNS0_8Recorder8ObserverE) +STUB( + "dj8j93xFtxE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE21intrusive_ptr_add_refEPS9_) +STUB("djAcDDnppKs", _ZN7WebCore9HTMLNames31x_apple_data_detectors_typeAttrE) +STUB("djDvnpnog-E", _ZN7WebCore28InspectorFrontendClientLocal10resetStateEv) +STUB( + "djEDRiNtIrs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEE11get_deleterEv) +STUB( + "djEJ3o01bgM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "djER5sNxmLs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEED2Ev) +STUB("djHSzoTfixE", sceRegMgrEvtGetRegId) +STUB("djHbPE+TFIo", _ZNSt6_MutexD1Ev) +STUB("djNJb4glilI", _ZNK7WebCore21JSRemoteDOMWindowBase7wrappedEv) +STUB("djNkrJKTb6Q", _ZNSt7codecvtIcc9_MbstatetED1Ev) +STUB("djSqL8eVr2s", WKIconDatabaseSetIconDataForIconURL) +STUB("djTJERVZQOM", _ZN3IPC15ArgumentDecoder6decodeERf) +STUB("djUtq62Eadc", sceLibSecureRandom) +STUB("djVe06YjzkI", sceSystemServiceActivateHevcSoftIsActivated) +STUB("djaTaDYB-wQ", sceNpSnsTwitchDialogOpen) +STUB( + "djbNspswbKc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE3endEv) +STUB("djc8fOzOXxk", sceVideoOutSysResetAtGpuReset) +STUB("djdfuFWlVPI", _ZN3WTF10StringImpl7replaceEPS0_S1_) +STUB("djfNyVDLFz4", _ZNK7WebCore16URLDecomposition4hashEv) +STUB("djm5QUVG74A", png_set_write_fn) +STUB("djrzcnG8F+Q", utext_getPreviousNativeIndex_67) +STUB("djt40NyfD-U", _ZN3sce3Job10JobManagerD2Ev) +STUB( + "djtV+5Ryx80", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("djxxOmW6-aw", __progname) +STUB( + "djy+aq7MFTE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEmmEv) +STUB("dk-PIxWMp8k", sceShellCoreUtilNotifyPsnAccountInfoReceived) +STUB("dk27olS4CEE", sceNpTrophySystemCreateContext) +STUB("dk4OUU51SBQ", mono_aot_Sce_PlayStation_Orbisunbox_trampolines_end) +STUB("dkCPPTsZyu4", _ZNK7WebCore13HitTestResult10isSelectedEv) +STUB("dkFXm4GKOCc", usearch_setCollator_67) +STUB( + "dkG+Sl5Et34", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("dkGt-3HC0n4", _ZN7WebCore8SVGNames10resultAttrE) +STUB( + "dkJpkx+PLm4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEE11get_deleterEv) +STUB("dkLFWGBh2-w", _ZNK7CoreIPC14MessageDecoder44shouldDispatchMessageWhenWaitingForSyncReplyEv) +STUB("dkOLeMUuEwA", sceUsbStorageSetFakeMapLockForDebug) +STUB("dkU553Qf+F0", _ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession15getJoinDisabledEv) +STUB("dkUqvOiUfxY", sceNpPushRegisterNotificationCallback) +STUB( + "dkeFoySmMvQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEppEi) +STUB("dkeFq1ux3B0", _ZN3sce7Toolkit2NP2V26Trophy16TrophyPackTrophyC2ERKS4_) +STUB("dkfkaoxjfcM", il2cpp_method_is_generic) +STUB( + "dkkIbknXj18", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("dkoQNd4kBlQ", cairo_fill_extents) +STUB( + "dkouR5cE5MY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "dkt6cW2O0jE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE5clearEv) +STUB( + "dkuPiGnOyoI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("dkuuqvL4ELw", _ZNK3WTF8JSONImpl5Value9asIntegerERl) +STUB("dl+4eHSzUu4", sceAjmInitialize) +STUB( + "dl-0UV05omU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEE11get_deleterEv) +STUB( + "dl0io3o95+0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEC2EPS6_PNS2_10LibContextE) +STUB("dl0qd+E20ng", sceFrontPanelDisplayInitialize) +STUB("dl1xO-QP3C8", sceMatAgcRegisterOwner) +STUB("dl450m1Yht4", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEEixEm) +STUB("dl5u5eGBgNk", sceGnmSqttSwitchTraceBuffer2) +STUB("dl6+SFHLke0", _ZN3sce2np10MemoryFile5CloseEv) +STUB( + "dl6FI9nVVg4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE7reserveEi) +STUB("dlBQfiDOklQ", sceUserServiceSetLightBarBaseBrightness) +STUB("dlG8cpQGq64", sceVideoCoreReleaseDecoderResourceForBeWrapper) +STUB( + "dlGt4grsvqI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("dlHdYlhua0w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEixEm) +STUB("dlHiWDvZ-8g", + _ZN3sce2Np9CppWebApi13InGameCatalog2V515ContainerRating8fromJsonERKNS_4Json5ValueE) +STUB( + "dlIxZCADfG0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEE11release_refEv) +STUB("dlL+slp6H+I", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIiE21intrusive_ptr_sub_refEPS4_) +STUB("dlM4ASZdcjk", FT_GlyphLoader_Prepare) +STUB("dlR6Z857IFs", _ZN3WTF14FileSystemImpl18decodeFromFilenameERKNS_6StringE) +STUB( + "dlSu3hzTVBA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("dlW0eAXIG8g", mono_aot_Sce_Vsh_RemotePlaymethod_addresses) +STUB("dlYTd6khqPk", mono_metadata_free_method_signature) +STUB("dlbnv6Wass8", FT_Stream_ReadAt) +STUB( + "dlcKtFMJNJQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEptEv) +STUB( + "dleuvGtk3ZM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE10setContextEPNS2_10LibContextE) +STUB( + "dlf8ZByw3+g", + _ZN3sce7Toolkit2NP2V27Ranking11getGameDataERKNS3_7Request11GetGameDataEPNS2_4Core8ResponseINS3_17GetGameDataResultEEE) +STUB( + "dlfBm5pHBLo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEeqERKS9_) +STUB("dlfK08H+ZqA", _ZN3sce7Toolkit2NP2V24Core17CustomRequestBaseD2Ev) +STUB( + "dliiz9PrbBo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("dlnCxzP9v24", _ZN7Nicosia5Scene5StateD2Ev) +STUB( + "dlqaZZms+yE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEE5resetEPS6_) +STUB( + "dlvIUhThS3g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEE11release_refEv) +STUB("dlwpoPPUit0", + _ZN3sce2Np9CppWebApi14SessionManager2V114Representative11setOnlineIdERK13SceNpOnlineId) +STUB("dm-S5UpiGNc", _ZN3sce2Np9CppWebApi6Common6VectorIfEC1EPNS2_10LibContextE) +STUB("dm0L3LVgQ+M", sceAvSettingDriverChangeConnectionStatus) +STUB("dmCVOjcaQq0", _ZN7WebCore17PageConsoleClientdlEPv) +STUB("dmDybN--Fn8", sceAjmBatchJobControlBufferRa) +STUB("dmG8bir5tEw", Java_java_net_SocketInputStream_socketRead0) +STUB("dmGx+TxFJw0", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEEC1Ev) +STUB("dmHEVUqDYGw", _rtld_error) +STUB("dmKJ8cSfefo", _ZNK3sce2np9JsonValue7GetTypeEv) +STUB("dmLUJh3bVTc", sceCamera2Open) +STUB( + "dmMheD7+OCg", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer15hasserviceLabelEv) +STUB("dmPL5pRccX4", _ZN3WTF20setProcessPrivilegesENS_9OptionSetINS_16ProcessPrivilegeEEE) +STUB("dmRRBt+qPcs", WKBundleFrameGetJavaScriptContextForWorld) +STUB("dmUgzUX3nXU", _thread_autoinit_dummy_decl_stub) +STUB("dmWiJ+jep3Y", _ZN3WTF6Thread6createEPKcONS_8FunctionIFvvEEENS_10ThreadTypeE) +STUB("dmYY7R30gsQ", _ZN3sce2Np9CppWebApi12Leaderboards2V15EntryD2Ev) +STUB("dmZEyiKPT24", _ZN4IPMI4impl10ServerImpl14getServiceNameEv) +STUB("dmZRH6zRZjI", + _ZN3sce2Np9CppWebApi7Matches2V113ChildActivity9setStatusERKNS3_19ChildActivityStatusE) +STUB("dmfMGDoshB4", mount) +STUB("dmhhuOB7Evg", _ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest11zoneIdIsSetEv) +STUB( + "dmlPfVVsPOk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("dmnPdozD-48", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEC2ERKS7_) +STUB("dmoiig6apug", mono_get_int64_class) +STUB( + "dmpK45lMwLM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "dmyTqp-+OFs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEEptEv) +STUB( + "dn-627nFNZs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEC2Ev) +STUB( + "dn2znkPgyrk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEE5resetEPS6_) +STUB("dnEdyY4+klQ", sceRazorCpuJobManagerDispatch) +STUB( + "dnFQPxnAHtA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "dnJ8iFoO69s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE5clearEv) +STUB( + "dnJhJtLciVI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("dnM9JfgxHbk", sceAvSettingRemoveCallbacks) +STUB( + "dnOgL7YdSGU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEaSERKS9_) +STUB( + "dnR1GTbED4c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEC1EPS8_) +STUB("dnT7qj7GmS0", generic_trampoline_vcall_p) +STUB("dnUboNrN3M8", vm_send_CreateJumpTrampoline) +STUB( + "dnUdAddt3MM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEC2EPS8_) +STUB("dnXP-Ctcfyo", WKOpenPanelParametersGetTypeID) +STUB("dnXraQV6Oic", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession18unsetMaxSpectatorsEv) +STUB("dnZM2KrZii0", _ZN3WTF3URL11setProtocolENS_10StringViewE) +STUB("dnaeGXbjP6E", exp2) +STUB( + "dngR4KeB6Fg", + _ZN9Inspector23WorkerBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) +STUB( + "dnjYSVXYdaI", + _ZN9Inspector23TargetBackendDispatcher19sendMessageToTargetElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "dnn+s7bg-HE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEC2Ev) +STUB("dns9419SfZY", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11ProductInfoEED2Ev) +STUB("dntZTJ7meIU", sceHmdReprojectionStart) +STUB( + "dnvpRyqCZtA", + _ZN7WebCore22EmptyFrameLoaderClient32assignIdentifierToInitialRequestEmPNS_14DocumentLoaderERKNS_15ResourceRequestE) +STUB("dnwItoXLoy4", _ZN3sce2np8WorkItemD1Ev) +STUB("dnyvPTam4Gc", sceNpManagerIntGetAccountDateOfBirth) +STUB("do-JDWX+zRs", scePadGetSphereRadius) +STUB( + "do-hq5vhfzI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEEC2Ev) +STUB("do0t--lEKMM", _ZN3sce2np13RingBufMemory6ExpandEm) +STUB( + "do4dXCtvew0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEC1EPS8_) +STUB("do6R-c248fo", _ZN7WebCore6RegionC2ERKS0_) +STUB("do8mXcIf7SA", _ZN7WebCore4PathC1EOS0_) +STUB("doBOzDy5T70", _ZNK7WebCore20HTMLTableCellElement5scopeEv) +STUB("doBeY5yIYTo", t1_cmap_unicode_class_rec) +STUB("doDZGEQWlD0", mono_aot_System_Net_Http_WebRequestplt) +STUB( + "doEt9sRz0O0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("doG6oClg-Fc", + _ZN3sce2Np9CppWebApi7Matches2V125ResponseCompetitiveResultC1EPNS1_6Common10LibContextE) +STUB( + "doLBAxgZXb8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEED2Ev) +STUB("doPlf33ab-U", sceCameraSetAttribute) +STUB("doQvkzdiYPE", _ZN7WebCore8JSDOMURL7destroyEPN3JSC6JSCellE) +STUB("doRbAW89lZE", sceMouseExtensionRead) +STUB("doUYMsJZHQA", ucnv_setToUCallBack_59) +STUB("doUixxZZcR4", _ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead13unsetOnlineIdEv) +STUB( + "doWPafjZt5c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEmmEi) +STUB("doZ3+EOd4Fk", _ZN3sce7Toolkit2NP22CreateNpSessionRequestC2Ev) +STUB("docwoXAMK24", SSL_CTX_set_alpn_protos) +STUB("doewKyDAsB4", pthread_setschedparam_np) +STUB("dog+nuTN9D8", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15CategoryInfoSubEEneERKS4_) +STUB( + "dogBq-c4bUo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("doh35AZf7Zk", sceMbusDebugDisableBgmForShellUi) +STUB( + "doi98SgdAqA", + _ZN7WebCore22EmptyFrameLoaderClient22dispatchWillSubmitFormERNS_9FormStateEON3WTF17CompletionHandlerIFvvEEE) +STUB("doiwQkbnd8s", _ZN3sce7Toolkit2NP2V27Ranking10UsersRanksD1Ev) +STUB( + "doj2qojZhd0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE6resizeEj) +STUB("dojyaLKzKN0", FT_Tan) +STUB( + "donCZFQzU1I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEE7add_refEv) +STUB("doqtTIEAdHY", _ZNK3sce2Np9CppWebApi7Matches2V116RequestMatchTeam6toJsonERNS_4Json5ValueEb) +STUB("dotFlb4IlYo", uprv_decNumberLogB_67) +STUB("dowMWFgowXY", sceNpWebApi2InitializeForPresence) +STUB("dp1-zpR8Tmc", _ZN3JSC4Yarr17RegularExpressionD1Ev) +STUB("dp1wu22jSGc", sceHmdInternalResetLedForVsh) +STUB( + "dp8KOYU469c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEEC2EPS6_PNS2_10LibContextE) +STUB("dpBLF9M80EY", WKPreferencesSetHixie76WebSocketProtocolEnabled) +STUB("dpBftaVxSb4", _ZN3sce7Toolkit2NP15UserRankRequestC2Ev) +STUB( + "dpCrav8zdLk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEE7add_refEv) +STUB("dpM1nUC8Tbk", mono_replace_ins) +STUB("dpMK+i43hbU", sceLibSecureRemoveCipher) +STUB( + "dpN-e0L2tSg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("dpPikaYGTPg", _ZN3sce2Np9CppWebApi7Matches2V111AddedPlayer12setAccountIdEPKc) +STUB( + "dpRsQ+cxugM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEEC1Ev) +STUB( + "dpTM67L8PSc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB( + "dpTTbWIwduk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEptEv) +STUB("dpU1o6GkHLM", _ZN3JSC8SubspaceC2EN3WTF7CStringERNS_4HeapE) +STUB("dpUV43EnmDM", _ZN7WebCore8SVGNames8modeAttrE) +STUB("dpUsMNUxonA", _ZN7WebCore21convertToIntegerClampIiEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB( + "dpVh9Q2CYQs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEE7get_refEv) +STUB("dpXLpwK0gCA", _ZN3sce7Toolkit2NP2V28Commerce10Containers5resetEv) +STUB( + "dpXr4bORvLU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB("dpayEeZ4WG0", sceVnaSetTtsDuckingLevel) +STUB("dpc8zPR4rU4", _ZNK3sce2Np9CppWebApi13InGameCatalog2V55Image6getUrlEv) +STUB("dpcMJMWSBkg", _ZNK7WebCore6Editor7canEditEv) +STUB("dpcl4XdvZdw", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEE3getEv) +STUB( + "dpg1JyOfCE8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "dpiLwrwBJKk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE8copyFromERKS9_) +STUB("dpin7BP4OVk", jinit_d_main_controller) +STUB("dplyQ6+xatg", _ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE) +STUB("dpnSZ6bCdKs", _ZN7WebCore26ISOProtectionSchemeInfoBox5parseERN3JSC8DataViewERj) +STUB( + "dpnhXhKvQIw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEE7add_refEv) +STUB("dpxsbJcA-Nw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEEppEi) +STUB("dq+OesyeELs", mono_aot_Sce_Vsh_Sl2_Sl2Deliverjit_code_end) +STUB("dq+jnbD0N2A", _ZN8Gigacage29tryAllocateZeroedVirtualPagesENS_4KindEm) +STUB( + "dq633KF34d4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB( + "dq7MAUTNUmA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEEC1ERSA_) +STUB("dqB3Ccg43qI", YGNodeFree) +STUB("dqEF7A1NFSw", _ZN3sce3Xml3Dom8Document15removeAttributeENS1_6NodeIdEPKNS0_6StringE) +STUB("dqEhIWRTjuo", cairo_ft_font_face_create_for_ft_face) +STUB( + "dqGIvYiZAso", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEC1EPNS2_10LibContextE) +STUB("dqIP0RA9gtg", _ZN7WebCore33pageConfigurationWithEmptyClientsEN3PAL9SessionIDE) +STUB( + "dqLbI7XYdCI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEED2Ev) +STUB("dqPBvjFVpTA", sceGnmDebugModuleReset) +STUB("dqQ1wINDyxA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEEC1ERKS7_) +STUB( + "dqRTNb2HPwU", + _ZN3sce2Np9CppWebApi11UserProfile2V125GetFriendsResponseFactory6createEPNS1_6Common10LibContextERKNS5_6VectorImEEPNS5_12IntrusivePtrINS3_18GetFriendsResponseEEE) +STUB("dqTyHmzAAAA", _ZN3sce2Np9CppWebApi7Matches2V120ReportResultsRequestD2Ev) +STUB("dqfaUQnWRtg", Java_java_awt_GnmGraphics_nativeDrawLine) +STUB("dqi3juWKDBk", mono_counters_foreach) +STUB("dqjlsaUX0sc", _ZN3sce2np3ipc10IpmiClientC2Ev) +STUB("dqpZ10KTssY", _m_ch_key1) +STUB("dqsvARv0Bvc", _ZN3sce3Xml3Dom15DocumentBuilderD2Ev) +STUB( + "dqszmhphRhY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEEC1ERSA_) +STUB( + "dqvRsSAinx0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEC1EPS6_PNS2_10LibContextE) +STUB("dqwCM7RWifY", sceApplicationNotifyVshReady) +STUB("dqxQeperDHk", _ZN7WebCore27CSSComputedStyleDeclaration5derefEv) +STUB( + "dqzf12JNHcA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEaSERKS7_) +STUB( + "dr4MXIOOoLk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE8copyFromERKS9_) +STUB("drEIiWkpBsQ", _ZN3JSC7Symbols24rejectPromisePrivateNameE) +STUB("drJQ-vRTe2I", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEEC2EPNS2_10LibContextE) +STUB( + "drLib1qV4G4", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeader13isInitializedEv) +STUB("drR4t+cPE-o", _ZN3sce7Toolkit2NP10IdDatabase12getNpTitleIdEv) +STUB( + "drUQKHBSYmU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("drVpPCSYvJs", uset_complementAll_67) +STUB("drZUF0XKTEI", sceFontGraphicsSetupHandleDefault) +STUB( + "drcjT0HPMuY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "drhkdJd7Fr0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEC2EPS6_PNS2_10LibContextE) +STUB("drijYCj6+ZM", + _ZN3JSC11ProxyObject14finishCreationERNS_2VMEPNS_14JSGlobalObjectENS_7JSValueES5_) +STUB("drjIbDbA7UQ", sceNetEpollWait) +STUB( + "drmIxQ5o1wI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE8pushBackERKS8_) +STUB( + "drqhhl-Fs+s", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEC2EPS8_) +STUB( + "drrRpKTWpb0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEE11get_deleterEv) +STUB( + "drtqN5dH7Wg", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData37setxPsnTcsComparedLastUpdatedDateTimeEPKc) +STUB( + "drv43CccobI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE7popBackEv) +STUB("drwewe8Kjr4", _ZN7WebCore23CoordinatedImageBackingD0Ev) +STUB( + "dryCH9Vyxu8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEcvbEv) +STUB( + "ds39BY862Q8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEC1Ev) +STUB("ds5oXoQw2HY", _ZN7WebCore19JSDOMMatrixReadOnlyD1Ev) +STUB("ds7SHOA7uZM", _ZNK3sce2Np9CppWebApi11UserProfile2V114PersonalDetail6toJsonERNS_4Json5ValueEb) +STUB("ds8nxxKNdk0", scePigletReleaseSystemMemory) +STUB("ds9BJbeJ0ZQ", ErrorDialogOpen) +STUB("dsC4xos42zM", sceUpsrvUpdateDoCheckBootUpdate) +STUB("dsJKehuajH4", _ZNSt6locale7_LocimpC2ERKS0_) +STUB("dsKVK6wUloE", _ZNK7WebCore16HTMLInputElement21autoFillButtonElementEv) +STUB( + "dsLT-nsRRqg", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData24unsetxPsnAtomicOperationEv) +STUB( + "dsPoF768jYQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("dsQ5Xwhl9no", _ZN10__cxxabiv120__function_type_infoD1Ev) +STUB( + "dsR28J-JqdQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "dsRTEeIy0xA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE8pushBackERKS8_) +STUB("dsRfWHNwq8U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEptEv) +STUB("dsT81Raq3h4", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationProperties10setHelpfulERKi) +STUB("dsXnVxORFdc", wcstok_s) +STUB("dsY0Mmpb+Mk", WKViewPaintToCurrentGLContext) +STUB("dsaKJzgMT+o", _ZN7WebCore29cookieRequestHeaderFieldValueERNS_8DocumentERKNS_3URLE) +STUB("dsgJ2cWHLOc", _ZNK7WebCore8Document19useSystemAppearanceEv) +STUB("dshFTGH2COc", _ZNK7WebCore11FrameLoader14cancelledErrorERKNS_15ResourceRequestE) +STUB("dsjz212qqQU", UCNV_TO_U_CALLBACK_STOP_67) +STUB("dsoC4tqHj6Y", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_20ChallengeRecvDetailsEED1Ev) +STUB("dsomX1PvEyw", _ZN19JITSharedDataMemory13shared_callocEmm) +STUB("dsqCVsNM0Zg", sceNpCommerceHidePsStoreIcon) +STUB( + "dsqosSOEJHI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE8copyFromERKS9_) +STUB("dsqwMNebbSw", _ZN3sce2Np9CppWebApi11Matchmaking2V15ErrorC2EPNS1_6Common10LibContextE) +STUB( + "dssMr6pzLDI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE21intrusive_ptr_add_refEPS9_) +STUB("dsw+atGc8aw", ubidi_open_67) +STUB("dsxMZLBYKOU", _ZN3WTF25addLanguageChangeObserverEPvPFvS0_E) +STUB("dt+BLV+A45A", nn_getsockopt) +STUB("dt0A2cWjwLs", _ZN3sce2np6HandleD2Ev) +STUB( + "dt5wuOEwH0g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE5beginEv) +STUB("dt6JgtCqHVk", YGLog) +STUB( + "dt84tCp3Dv8", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124ConnectionQualityFactory7destroyEPNS3_17ConnectionQualityE) +STUB("dt8ermYp-Wc", gethostbyname_r) +STUB("dtAAvzNtLAw", ___longjmp) +STUB("dtMu9zCDn3s", __fixunsxfsi) +STUB("dtNkfThj-uk", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead21getSupportedPlatformsEv) +STUB("dtSL0gYve3k", g_playerPrefsSupport) +STUB( + "dtUnW-VxWN4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEC2EPS6_PNS2_10LibContextE) +STUB("dtV1Zqx4jU0", sceUpsrvUpdateDoUpdateWithPupPath2) +STUB( + "dtWB+-AeKS4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("dtYRVCJF4LY", _U_dyn_cancel) +STUB( + "dtm+NSBm-ts", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE5beginEv) +STUB("dtmPxxVErK0", sceVideoOutSysUpdateDisplayParameter_) +STUB( + "dtnKsC6nivE", + _ZNK7WebCore21ContentSecurityPolicy21allowScriptFromSourceERKN3WTF3URLENS0_24RedirectResponseReceivedE) +STUB("dtqKHyWdN08", _ZN3sce7Toolkit2NP2V27NpUtils12Notification15UserStateChangeC1Ev) +STUB("dtx5tcGFVII", sceShellCoreUtilExitMiniAppWithValue) +STUB("dtxKTpzWCG4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE8capacityEv) +STUB("dtz0WTyfG6g", bemp2sys_tsfilter_destroy) +STUB("du0fBDWBZEo", mono_aot_Sce_Vsh_JsExtensionplt_end) +STUB("du0sJLoB+Ok", _ZN3JSC8Debugger11handlePauseEPNS_14JSGlobalObjectENS0_14ReasonForPauseE) +STUB("du4P08Wq144", sceOpusSilkEncCreate) +STUB( + "du6QAD7G1Uc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEED2Ev) +STUB("du6k+jO8Pno", _ZN7WebCore37CrossOriginAccessControlCheckDisablerD1Ev) +STUB("duD2GBO18oE", mono_aot_Sce_Vsh_Orbis_Bgftunbox_trampolines_end) +STUB( + "duFESwMfj0Q", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_34DetailedProductInfoListInputParams9ProductIdEE7addressERS4_) +STUB("duFdoQi9Ylc", mono_aot_Sce_Vsh_RemotePlayjit_code_end) +STUB("duHy7aP++d4", _ZN4Manx11BundleOrbis7resolveEPKc) +STUB( + "duJfiox9YWI", + _ZN7WebCore34forwardAttributeGetterToBackingSetERN3JSC14JSGlobalObjectERNS0_8JSObjectERKNS0_10IdentifierE) +STUB( + "duMO7DJsyJA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEC2EPS8_) +STUB( + "duQAIPDE4ro", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEixEm) +STUB( + "duVW3oEkOo4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEE5resetEPS6_) +STUB("duXH3bhyztI", _ZNK7WebCore12SharedBuffer11DataSegment4dataEv) +STUB("duXXgbaaoEU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEEC1Ev) +STUB( + "dubvGs+jvAo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEED2Ev) +STUB("dufE6ag61NA", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEEcvbEv) +STUB( + "dufgC61zB9U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE7reserveEi) +STUB("dukLb11bY9c", sceUserServiceSetPbtcAdditionalTime) +STUB("dumKNmHpdOQ", fuse_get_session) +STUB("dun+iZN6ZTI", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container10unsetMediaEv) +STUB("dunlkt7vwL0", _ZN3sce7Toolkit2NP2V29Challenge9Challenge13MAX_SIZE_DATEE) +STUB("duxNFZJFnJU", _ZN3WTF10StringImpl19characterStartingAtEj) +STUB("dv2RqD7ZBd4", sceHmdInternalDfuOpen) +STUB( + "dv2fKZjDM3M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEED1Ev) +STUB( + "dv5wnYa2eLU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB("dv6wj6rjOCM", uregex_getStackLimit_67) +STUB("dv8KUvfjc8c", _ZN3sce2Np9CppWebApi11UserProfile2V125GetPublicProfilesResponse11getProfilesEv) +STUB("dvA2w+pPH8g", WKViewReplyJavaScriptAlert) +STUB( + "dvAsHRgRANA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEED1Ev) +STUB( + "dvEeaDp0PfE", + _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody23getLocalizedSessionNameEv) +STUB("dvHVC+OIP3c", _ZN3JSC7Symbols35hasInstanceBoundFunctionPrivateNameE) +STUB( + "dvJiHB16Opg", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("dvRQufzoL2E", _ZN3sce2np13JsonDocParser12onArrayValueEjjiNS0_10JsonParser9ValueTypeEPKc) +STUB( + "dvS+obe67K0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE7reserveEi) +STUB("dvWRC0Ol2jA", _ZN4Manx11MediaPlayer12supportsTypeEPKcS2_b) +STUB("dvkqP9KUMfk", sceNpManagerIntLoginGetAccountId) +STUB("dvlkBfwgbR4", mono_reflection_free_type_info) +STUB("dvp-mPrfQfk", sceDebugGetMonoVMList) +STUB("dvp2zGSQzMs", _ZN3sce4Json19InternalInitializer19terminate_staticlibEv) +STUB( + "dvw0wtlJIhU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEE7add_refEv) +STUB("dw-MgMs36Q8", mono_aot_Sce_Vsh_CloudClientplt) +STUB("dw64kVqtuKM", _ZN7WebCore11XPathResult11iterateNextEv) +STUB("dwASDRq1150", _ZNK15AbstractStorage13TwitterFolder13GetCapabilityEv) +STUB( + "dwB+LLnxcAQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEE5resetEPS9_) +STUB( + "dwDRylngo4Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE21intrusive_ptr_sub_refEPS9_) +STUB("dwFvwQKcbgs", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEED2Ev) +STUB( + "dwLmAW8XnUo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEmmEi) +STUB( + "dwQuMZPBjK0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE3endEv) +STUB("dwVsjGWQMdU", u_strHasMoreChar32Than_67) +STUB("dwW65etqqMg", WKPreferencesSetWebAnimationsCSSIntegrationEnabled) +STUB( + "dwanSgmJGuA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEneERKS9_) +STUB("dwjYscuo6Tg", _ZN7WebCore13IdentifierRep3getEi) +STUB( + "dwjjtVJ4lVs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEppEi) +STUB( + "dwlMzEWqDcs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEED2Ev) +STUB("dwm6guDkJWw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEptEv) +STUB( + "dwmbq-vXE-0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEC1Ev) +STUB("dwxWF0tZw3k", monoeg_g_string_append_c) +STUB("dx0+nVIH3ek", mono_aot_I18N_CJKplt_end) +STUB("dx0km181P6o", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V117ResponseMatchTypeEEneERKS7_) +STUB( + "dxGMonV0pkM", + _ZN9Inspector28DOMDebuggerBackendDispatcher16setDOMBreakpointElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("dxHvXvfXua4", _ZN7WebCore10inSameLineERKNS_15VisiblePositionES2_) +STUB("dxWpZsBRNh4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V112OnlineStatusEEC1EPS6_) +STUB( + "dxdqQytc7n8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "dxepjpgL2VQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEmmEv) +STUB( + "dxfCN-CW70M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEC1EPKS8_) +STUB("dxh79i+5Cyk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEE11get_deleterEv) +STUB( + "dxj7FdW8XtY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("dxn63S1rZus", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEED2Ev) +STUB("dxpQVn+xVYE", sceLoginMgrServerNotifyEasySignInFinished) +STUB("dxpUx7z9StY", sceNpLookupNetDeleteTitleCtx) +STUB("dxphfFDV-4Y", _ZN7WebCore16ScriptController30executeScriptIgnoringExceptionERKN3WTF6StringEb) +STUB( + "dxrN2OaEUEs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEE11release_refEv) +STUB("dxulc33msHM", sceNgs2StreamQueryBufferSize) +STUB("dxwLuIoVZ6E", _ZN7WebCore13MIMETypeCachenaEm) +STUB("dxyWDe5AwgY", uloc_getLanguage) +STUB( + "dy5OlCrZit8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEEC1ERSA_) +STUB("dy5gXrUocbc", WKNavigationActionShouldPerformDownload) +STUB("dy6mTFUOPLM", _ZN3JSC7Symbols33throwTypeErrorFunctionPrivateNameE) +STUB("dy8ygGy0k1M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V113AttributeTypeEEaSERKS7_) +STUB("dyIhnXq-0SM", sceSaveDataDirNameSearch) +STUB("dyJxN8ZyJCw", _ZN9Inspector25NetworkFrontendDispatcher13loadingFailedERKN3WTF6StringEdS4_PKb) +STUB( + "dyLUcwMUDuc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "dyMxZI2ItFQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEmmEv) +STUB( + "dyOLZhnUzjY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEED2Ev) +STUB( + "dyhCcyA7ZE8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB( + "dyhZ0guZXO8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEC2EPKS8_) +STUB( + "dylpAwPogxU", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V125FrequentlyMutedProperties6toJsonERNS_4Json5ValueEb) +STUB("dyp2qrY2k58", _ZN9Inspector22InspectorDebuggerAgentnwEm10NotNullTagPv) +STUB("dyqLbVYkq3o", WKPreferencesGetTypeID) +STUB( + "dyy+kAZTBkA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEneERKS9_) +STUB("dz-OCLvhVMs", sceLncUtilGetAppIdListOfBigApp) +STUB("dz0+6+b1oVM", _ZN7WebCore16JSXMLHttpRequest14finishCreationERN3JSC2VME) +STUB( + "dz2WKi8w05g", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEdeEv) +STUB( + "dz3dAWaOP8Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("dz4VEj7Pd18", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE8copyFromERKS7_) +STUB("dz6LsbBCwDM", Java_java_io_RandomAccessFile_getFilePointer) +STUB("dz7bRYo61uY", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_11CountryInfoEED2Ev) +STUB( + "dzUQXYOS7Xk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("dzaQFLT9EK8", WKPageGetResourceCachingDisabled) +STUB("dzbKmf3Ycog", u_isISOControl) +STUB("dzcpFouKD28", il2cpp_class_is_abstract) +STUB( + "dzeDrwrqsu4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE10setContextEPNS2_10LibContextE) +STUB("dzgrvhCjExA", _ZN4IPMI4impl11SessionImpl9getServerEv) +STUB("dzlfWs2+nVo", _ZN7WebCore11HistoryItem17setScrollPositionERKNS_8IntPointE) +STUB( + "dzlkneBWrco", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEC2EPS8_) +STUB("dznEkH18LRA", alt_digits) +STUB("dzrr2-LTKnA", WKBundlePageSetHeaderBanner) +STUB("dzuyxeM1aXU", ucnv_swapAliases) +STUB( + "dzzNfdTpyYo", + _ZN3sce2Np9CppWebApi14SessionManager2V131ResponseGameSessionMemberPlayer8fromJsonERKNS_4Json5ValueE) +STUB( + "e+0Vn9Rlgcs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEE3getEv) +STUB( + "e+2E4FVjuP4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEE5resetEPS6_) +STUB( + "e+480Aw9JEM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEppEv) +STUB("e+4zri4csBI", _ZN7WebCore26MessagePortChannelRegistryC1ERNS_26MessagePortChannelProviderE) +STUB( + "e+FjMEzKnmw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEC2EPS6_PNS2_10LibContextE) +STUB("e+Fq1ZZzkyE", WKPageRunJavaScriptPromptResultListenerCall) +STUB("e+HW6SLzJZI", mono_aot_Sce_Vsh_GriefReportunbox_trampolines_end) +STUB("e+I95lSa9ZQ", _ZN7WebCore8SVGNames17attributeTypeAttrE) +STUB( + "e+IHFmrjaig", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("e+J178oTm+Y", _ZN7WebCore6Path2DD1Ev) +STUB("e+LXeATh76w", _ZN3sce7Toolkit2NP2V28Matching4Room8deepCopyERKS4_) +STUB("e+OCXNBQRAA", sceKernelGetPs4SystemSwVersion) +STUB("e+QF5nu4X9c", _ZN3sce7Toolkit2NP2V27Session7Request22GetReceivedInvitationsD2Ev) +STUB("e+RithAtqEw", _ZN3sce2Np9CppWebApi6Common6StringC2EPNS2_10LibContextE) +STUB("e+SXNRX93HI", _ZN3JSC7Symbols32throwOutOfMemoryErrorPrivateNameE) +STUB( + "e+TOqVLheSs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEE11release_refEv) +STUB("e+Udsq-3S+I", unorm2_composePair) +STUB( + "e+VH2R3+wFA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "e+WxwLfNU8M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEC1Ev) +STUB("e+XnAvtC6jc", _ZN12video_parser13cVideoPathMgvC1EPKc) +STUB( + "e+ZfBQaCCB0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEmmEi) +STUB("e+at5kyBBxg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11UserProfile10NpProfilesEE3setEv) +STUB("e+eaUAKgF3Q", _ZN7WebCore13JSHTMLElement13visitChildrenEPN3JSC6JSCellERNS1_11SlotVisitorE) +STUB( + "e+gmnuQYVag", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEEC1Ev) +STUB("e+gwJWjXptI", mono_gc_wbarrier_value_copy) +STUB("e+hi-tOrDZU", _Dbl) +STUB( + "e+olCC3K7xQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEE11release_refEv) +STUB("e+sSKboL3VY", _ZN9Inspector22PageFrontendDispatchernaEm) +STUB( + "e+t+6xHgsH8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEC1Ev) +STUB( + "e+u2G4cr+qo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEdeEv) +STUB("e+y-cD8sOqw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEED1Ev) +STUB( + "e+z05LKVOt0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEdeEv) +STUB( + "e+z4fFS9Qu8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEED2Ev) +STUB("e--lxZ2OQJ4", _ZN3sce7Toolkit2NP2V210Tournament7Request10GetBracketC2Ev) +STUB( + "e-7EBszFTMA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE7reserveEi) +STUB( + "e-CHFJPFq5o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEEaSERSA_) +STUB("e-CPW30NFxU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEE5resetEPS6_) +STUB("e-EZr2An3B4", ubidi_getParagraph_67) +STUB("e-HzZLSmFrc", _ZNK3sce2np14JsonObjectImpl11GetFieldNumEv) +STUB( + "e-IQ5ExOTM0", + _ZN3sce7Toolkit2NP7Ranking9Interface15displayUserRankEPKNS1_15UserRankRequestEPNS1_9Utilities6FutureINS1_19UserRankInformationEEEb) +STUB( + "e-ItyyaDUdo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEC2Ev) +STUB("e-NAOmLN7U8", __asan_load16_noabort) +STUB("e-ODUaoHXiY", _sceApplicationGetAppId) +STUB("e-OIoNop-Z8", _ZN3sce7Toolkit2NP2V210Tournament14RegisteredTeamC2Ev) +STUB("e-OnyPe42tI", _ZN4IPMI4impl10ServerImpl18shutdownDispatcherEv) +STUB("e-PP5irT2us", Java_java_lang_reflect_Array_setShort) +STUB("e-QultjK7Q0", _ULx86_64_get_fpreg) +STUB("e-S6iuDl2xk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUserD2Ev) +STUB("e-TjHAkKilQ", sceSystemLogger2SetLogAsync) +STUB("e-YMQ+2tj9M", sceAgcDriverGetTFRing) +STUB("e-ZuhGEoeC4", sceNpGetNpReachabilityState) +STUB( + "e-hl4-fxmK8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEptEv) +STUB("e-jov6VIC44", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_20ChallengeRecvDetailsEE7addressERKS3_) +STUB( + "e-k60B14HBw", + _ZN9Inspector28DOMDebuggerBackendDispatcher16setURLBreakpointElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "e-mG5kgUUIM", + _ZN7WebCore10FileHandleC1ERKN3WTF6StringENS1_14FileSystemImpl12FileOpenModeENS1_9OptionSetINS5_12FileLockModeEEE) +STUB("e-or7vyZ5nI", _ZN3sce7Toolkit2NP2V210Tournament12GenericEventC1Ev) +STUB("e-wvZ7Y3G-M", _ZN7WebCore9HTMLNames12onscrollAttrE) +STUB("e-x3VstFAjg", _ZN3JSC14JSModuleRecord8evaluateEPNS_14JSGlobalObjectE) +STUB( + "e0+Hrtty8AM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "e03XgBlsst0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE7reserveEi) +STUB("e06Qn0g80js", Java_java_io_ObjectOutputStream_floatsToBytes) +STUB( + "e07dIFTHMOc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEEcvbEv) +STUB("e07sBiAw4EY", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersC1ERS5_) +STUB( + "e09k9ZZoIpg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("e0EgOxLrqqE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE5beginEv) +STUB( + "e0LN2EvjLbU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "e0Qmm4Dm2VU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE5emptyEv) +STUB("e0T1d7YylFA", sceAvControlChangeOutputModeForDiag) +STUB( + "e0Tf2yRCQjI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEC1EPNS2_10LibContextE) +STUB("e0WHEdfrWjE", uprv_decNumberMaxMag_67) +STUB("e0jjfsQdveM", WKPageGetBackingScaleFactor) +STUB( + "e0n+XvGVWjY", + _ZN3sce2Np9CppWebApi14SessionManager2V133RequestPlayerSessionPlayerFactory6createEPNS1_6Common10LibContextEPKcS9_PNS5_12IntrusivePtrINS3_26RequestPlayerSessionPlayerEEE) +STUB( + "e0oVUnvqg38", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB( + "e0r8A9WVGTI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEneERKS9_) +STUB( + "e0wyVgGiMcQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEppEv) +STUB("e1-41W6j0pA", _ZN7Nicosia16SceneIntegration10invalidateEv) +STUB( + "e1-MfiYFn-Y", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "e15Agw-m3hU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEmmEv) +STUB( + "e1COEbWSsAo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEixEm) +STUB("e1DFTg+Sd8U", sceAgcAcbJump) +STUB("e1GIcX4AlY4", sceKernelMemoryPoolMove) +STUB("e1I-WZknBEk", _ZN7WebCore14ScrollableArea16handleWheelEventERKNS_18PlatformWheelEventE) +STUB("e1IQ+N9hSKw", _ZN3sce2Np9CppWebApi12Leaderboards2V15EntryD1Ev) +STUB( + "e1MlS5wcmi0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEEdeEv) +STUB( + "e1Om+khNSnk", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi32ParameterToPostGameSessionsTouchC1ERS5_) +STUB("e1S3Yp+fWeQ", _ZN3sce7Toolkit2NP22SearchNpSessionRequestC1Ev) +STUB( + "e1TYrVxFZN4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEppEv) +STUB("e1UWb8cWPJM", sceUsbdGetDeviceSpeed) +STUB("e1YbVg6154g", pr3) +STUB( + "e1hgdHACVnU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE3endEv) +STUB("e1kruvXYH6s", WKPreferencesGetResourceUsageOverlayVisible) +STUB( + "e1nyajoiA5Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEplEm) +STUB( + "e1sHW9D-z9Y", + _ZNK7WebCore21ContentSecurityPolicy27allowChildContextFromSourceERKNS_3URLENS0_24RedirectResponseReceivedE) +STUB( + "e1tXN24L0UM", + _ZN8meta_gen11MsvPromoter27setKeyValue_TBLV_EpisodeNumENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB("e1y7KVAySrY", _FXp_getw) +STUB("e1zBpxIqit4", + _ZN3sce7Toolkit2NP10ParametersC2EPFvRKNS1_5EventEEPvmPNS1_19AllocImplementationE) +STUB( + "e1zOzfgYjzM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEC2EPNS2_10LibContextE) +STUB("e2A4lpikaa4", _ZN3sce7Toolkit2NP2V27NpUtils5IdMapC2Ev) +STUB("e2FFaTvxUkI", WKBundlePageSetEventThrottlingBehaviorOverride) +STUB("e2G+cdEkOmU", pthread_attr_getscope) +STUB("e2GFx4DmimI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEC2ERKS7_) +STUB("e2HCfvSeqdU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEC2ERS7_) +STUB( + "e2KKTSIARyA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE6resizeEj) +STUB("e2KoMPOAdZg", FT_Get_Track_Kerning) +STUB( + "e2LALpvdNvE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEppEi) +STUB( + "e2RCVL75dEU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEED1Ev) +STUB("e2VSkMBqCfY", + _ZNK7WebCore5Range19absoluteBoundingBoxEN3WTF9OptionSetINS0_20BoundingRectBehaviorEEE) +STUB( + "e2WCcbVtfbM", + _ZN23sceMetadataReaderWriter15ParserInfoTable14getParserInfosEjPSt6vectorIPNS_10ParserInfoESaIS3_EE) +STUB("e2a1ZA+lJC4", _ZN3sce2np7RingBufC2Ev) +STUB("e2jQsb44n7g", _ZN9Inspector27CSSBackendDispatcherHandlerD1Ev) +STUB( + "e2mELBEinhg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEED2Ev) +STUB( + "e2mJSKWmtVY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEmmEv) +STUB( + "e2p7e93EDgs", + _ZN7WebCore13releaseMemoryEN3WTF8CriticalENS0_11SynchronousENS_24MaintainBackForwardCacheENS_19MaintainMemoryCacheE) +STUB("e2w1koiR0RU", _ZN3sce7Toolkit2NP2V23TSS7Request7GetDataD1Ev) +STUB( + "e2xC5648KPg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEEC1Ev) +STUB("e2xgmBUhbxY", _ZN3sce2Np9CppWebApi14SessionManager2V117SearchGameSession14unsetSessionIdEv) +STUB("e2xiHQd1MUY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE7reserveEi) +STUB( + "e3+nRPmr5LA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEEC1ERKSA_) +STUB( + "e35UjC00ucA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEE5resetEPS6_) +STUB("e371vKyHvfE", _ZN7WebCore15GraphicsContext14setStrokeColorERKNS_5ColorE) +STUB("e39S+saPElI", WKContextSetServiceWorkerFetchTimeoutForTesting) +STUB( + "e3AhZfSJxOI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEEC1Ev) +STUB("e3BGBzl-Xx0", sceRnpsAppMgrRequestUpdateCheck) +STUB( + "e3CiGWT8S7Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB("e3EKOJWdFmY", monoeg_g_ascii_strncasecmp) +STUB( + "e3FGwDiDPNo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEC2ERKS7_) +STUB("e3FyRAFajSA", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEEC2Ev) +STUB("e3G2dB0myhM", _ZN7WebCore24MatrixTransformOperation6createEdddddd) +STUB("e3GpQB1rfKg", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi20ParameterToJoinMatchD2Ev) +STUB("e3HfkECgcUE", _ZN7WebCore25WebSocketChannelInspectorC1ERNS_8DocumentE) +STUB("e3JkoIC41H4", _ZN3sce7Toolkit2NP2V27Ranking7Request8SetScore14MAX_NUM_BOARDSE) +STUB( + "e3OAf7PvXC8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "e3PeSN6AwVQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("e3ddtMwUTOs", mono_aot_System_Reactive_Coremethod_addresses) +STUB( + "e3gaRGXQVpA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE10setContextEPNS2_10LibContextE) +STUB( + "e3jhqT6kyCA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE6resizeEj) +STUB("e3qtybCaqRw", uprv_getMaxCharNameLength_67) +STUB("e3shgCIZxRc", _ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2ERKSt8_Locinfom) +STUB("e3w7ndMVBE8", _ZN4Manx13WorkQueueImpl18dispatchAfterDelayEPNS_9WorkQueue8FunctionEd) +STUB("e3w9jPaFy3U", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEED2Ev) +STUB("e3wIdaiVEEM", _ZN3WTF10AtomString16fromUTF8InternalEPKcS2_) +STUB( + "e3ycJTYsW3I", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB( + "e40IY5jrzGM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("e40STfI8bFk", mono_arch_create_rgctx_lazy_fetch_trampoline) +STUB( + "e4AbiIWjOfo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("e4AjMGiD7U0", genName) +STUB( + "e4C7H5SYkyI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEC2EPKS8_) +STUB("e4E3MIEAS2A", sceSystemServiceNavigateToGoBack) +STUB("e4I+fGvwugs", _ZN3WTF4Lock10unlockSlowEv) +STUB( + "e4JBjLh0W+I", + _ZN9Inspector21HeapBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) +STUB("e4KUB+JyA5I", _ZNK7WebCore16DocumentFragment14getElementByIdERKN3WTF12AtomicStringE) +STUB( + "e4O-JqjVbB8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEppEi) +STUB("e4PLF1Y5cOA", ures_getNextString_67) +STUB( + "e4Q+AqqL2SY", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions28setxPsnAcceptPlatformNamePs5ENS5_25XPsnAcceptPlatformNamePs5E) +STUB("e4RW2QuvDIU", mono_aot_System_Xml_Linqjit_code_end) +STUB("e4VYysnUjGU", mono_aot_Sce_Vsh_UpdateServiceWrappermethod_addresses) +STUB( + "e4WdWdbzxl8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEE11release_refEv) +STUB("e4Y5rUzc+AM", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V115LastUpdatedUser14unsetAccountIdEv) +STUB( + "e4bH-AN-Ao8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEE7get_refEv) +STUB("e4j-rkRbvNw", png_calloc) +STUB( + "e4mTOmZdUcw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEC1EPS7_PFvS9_EPNS2_10LibContextE) +STUB( + "e4rDzInUi3Q", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEdeEv) +STUB( + "e4tVMGNfUHE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "e50MWSA7e2I", + _ZN7WebCore13FetchResponse6createERNS_22ScriptExecutionContextEOSt8optionalINS_9FetchBodyEENS_12FetchHeaders5GuardEONS_16ResourceResponseE) +STUB("e50w9CgqAVM", + _ZN9Inspector22PageFrontendDispatcher24frameScheduledNavigationERKN3WTF6StringEd) +STUB( + "e51Mmd+oSTs", + _ZN3sce2Np9CppWebApi14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyC1EPNS1_6Common10LibContextE) +STUB("e52cFlZ1trI", + _ZNK7WebCore24RotateTransformOperation5applyERNS_20TransformationMatrixERKNS_9FloatSizeE) +STUB( + "e58BrWy+F5E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEC1EPKS8_) +STUB( + "e5FdtI5Kltw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("e5HOpV5feq8", glUniform2f) +STUB("e5Hrdhv9B+A", mono_aot_Sce_Vsh_GameCustomDatajit_got) +STUB("e5Hwcntvd8c", _ZNSt7codecvtIcc9_MbstatetEC2Em) +STUB("e5NP1ESukx8", _ZN7WebCore18TextureMapperLayer13setAnimationsERKNS_23TextureMapperAnimationsE) +STUB( + "e5PMxv9JEY0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE3endEv) +STUB("e5UfP5N62yQ", _ZN7WebCore13enclosingListEPNS_4NodeE) +STUB("e5VHdpvade4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEE3getEv) +STUB( + "e5Vg-QbuXVw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEEC2ERS9_) +STUB( + "e5bM9Qe1jCM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEED1Ev) +STUB( + "e5eDRq3soTg", + _ZN3sce2Np9CppWebApi11Matchmaking2V127GetOfferResponseBodyFactory7destroyEPNS3_20GetOfferResponseBodyE) +STUB( + "e5jQyuEE+9U", + _ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE7_GetcatEPPKNSt6locale5facetEPKS5_) +STUB( + "e5m+HjC-yF8", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_11EntitlementENS1_15AppSTLAllocatorIS5_EEEEC1Ev) +STUB( + "e5mrzOBwaaY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE10setContextEPNS2_10LibContextE) +STUB("e5wi2n-IgTk", sceNpReallocImpl) +STUB("e60aorDdpB8", sceFontFtInitAliases) +STUB("e65fXqnAlg4", _ZNK15AbstractStorage12LocalContent10GetServiceEv) +STUB( + "e66lllTq9cA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "e6AIRwZwV4U", + _ZN3sce7Toolkit2NP12ActivityFeed9Interface12getTitleNewsEPKNS1_19GetTitleNewsRequestEPNS1_9Utilities6FutureISt6vectorINS1_17ActivityFeedStoryENS1_15AppSTLAllocatorISA_EEEEEb) +STUB("e6K3LE8qXsc", sceNpSnsIntFbGetSystemAccessToken) +STUB( + "e6KIEkEbfuU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEC2EPKS8_) +STUB( + "e6TI5e89KdE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEC1Ev) +STUB( + "e6Uik8lNzHU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEEC1ERKSC_) +STUB("e6V0Xi1IhzY", ucnv_setDefaultName) +STUB( + "e6YLmDqRcEY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "e6YZltYWlKs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEaSERKS9_) +STUB("e6cCjttumPM", _ZN7bmalloc9Scavenger29scheduleIfUnderMemoryPressureEm) +STUB("e6ge5-OvLv4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEdeEv) +STUB("e6iz-AepLUA", _ZN3sce7Toolkit2NP2V212EventsClient6EventsaSERKS4_) +STUB( + "e6mrPYECz3g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEE11get_deleterEv) +STUB( + "e6n06oOMwF4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEED1Ev) +STUB( + "e6nZYG5iPb8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEE7get_refEv) +STUB("e6ovBo9ZvJc", getppid) +STUB("e6rTjFmcQjY", sceNpManagerIntGetAccountLanguageA) +STUB( + "e6rpDhWq1vo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE5clearEv) +STUB( + "e6sN4OuwmjM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEEptEv) +STUB( + "e6unKPBd-p4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEC1ERKS7_) +STUB( + "e6x1E5Mj9fE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEEptEv) +STUB("e6y3WMBYbiM", sceSaveDataCancel) +STUB("e7-p8DQaR1Y", _ZN3sce2Np9CppWebApi7Matches2V120ResponseMatchResults22unsetCooperativeResultEv) +STUB("e70IJ6o4pR0", _ZNK7WebCore18TextureMapperLayer13textureMapperEv) +STUB("e70ZpotBU5Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE5clearEv) +STUB("e71SZnZyD8Y", sceFsInitWorkspaceFileMetadataParam) +STUB("e75Y8KVaX1g", fuse_pollhandle_destroy) +STUB("e75mpVYq4VY", _ZN3sce7Toolkit2NP2V212EventsClient22EventOfficialBroadCastC2Ev) +STUB("e77LVbG8pjU", uprv_fmin_67) +STUB( + "e7CbETQO+bo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEED2Ev) +STUB("e7HJm+Q2D9Q", _ZN7WebCore6DOMURL6createERKN3WTF6StringE) +STUB( + "e7K2Mask8tQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEED1Ev) +STUB( + "e7OtekMIIeA", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V325PsnWebErrorWrapperFactory7destroyEPNS3_18PsnWebErrorWrapperE) +STUB("e7Q5PplS23s", _ZN3sce7Toolkit2NP2V27Session11InvitationsC2Ev) +STUB("e7RAPAr4QpU", scePerfPmcGetCounter) +STUB( + "e7cZqNr9d18", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEC1EPS8_) +STUB("e7gp1xhu6RI", sceUsbdEventHandlingOk) +STUB("e7kDPzD5e8g", _ZNK3JSC6JSCell8toNumberEPNS_14JSGlobalObjectE) +STUB( + "e7l+UjT4hZ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEE7get_refEv) +STUB("e7laRxRGCHc", sceHmdInternalSetDebugMode) +STUB( + "e7nftKUx3No", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEC2Ev) +STUB("e7nwve2CgyQ", scePlayReadyCdmiCreateMediaKeySession) +STUB("e7pSAhCNrro", sceVideoOutSysSetRedirectFlip) +STUB("e7pzuaSj6AQ", WKNotificationPermissionRequestGetTypeID) +STUB("e7qtydH3uzA", _ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEEC2EPNS2_10LibContextE) +STUB("e89yNGKV4og", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku25displayOriginalPriceIsSetEv) +STUB("e8EKVXpCpL0", rgctx_fetch_trampoline_rgctx_111) +STUB( + "e8EZwXXdvzY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEED2Ev) +STUB("e8IRlHIOFog", mono_aot_Sce_Vsh_Orbis_AbstractStorageplt) +STUB("e8P9xcYmFp4", _ZN7WebCore22EmptyFrameLoaderClient17dispatchWillCloseEv) +STUB("e8Swq6+iac4", + _ZN7WebCore12SettingsBase23setPictographFontFamilyERKN3WTF10AtomStringE11UScriptCode) +STUB("e8XBRy9WFOk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEEeqERKS7_) +STUB( + "e8aIdJyzMK0", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB("e8j4t6KOXlQ", + _ZN7WebCore11JSDOMWindow17preventExtensionsEPN3JSC8JSObjectEPNS1_14JSGlobalObjectE) +STUB( + "e8k1GEBWGZY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEEaSERKSA_) +STUB( + "e8mefJ8gIMg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEED2Ev) +STUB( + "e8x71aUZBe4", + _ZN9Inspector24NetworkBackendDispatcherC1ERNS_17BackendDispatcherEPNS_31NetworkBackendDispatcherHandlerE) +STUB("e8zlvz3c3c4", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE7reserveEi) +STUB( + "e9+rq4cPo5Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEC1EPNS2_10LibContextE) +STUB("e90ZQRXzAXE", _ZN9Inspector15RemoteInspector6ClientD2Ev) +STUB( + "e91DcPt1j74", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("e95lhhjlHXg", WKDatabaseManagerGetDatabasesByOrigin) +STUB( + "e97kJZjhG8w", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE21intrusive_ptr_sub_refEPS7_) +STUB("e9Aq3cMPkcg", _ZN7WebCore17AnimationTimeline11descriptionEv) +STUB("e9BRou3cN4A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEE11get_deleterEv) +STUB("e9C2bhDfVvs", _ZN3sce7Toolkit2NP2V212ActivityFeed15PlayedWithStory5resetEv) +STUB( + "e9EUdzspkmk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEixEm) +STUB( + "e9Fm5+eh3i8", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V226WebApiErrorResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_19WebApiErrorResponseEEE) +STUB( + "e9IBZaGD+mA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE8copyFromERKS9_) +STUB( + "e9KEtcl6IRM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEEaSERSA_) +STUB( + "e9N5-ddj-Oc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEEC1Ev) +STUB("e9NdD5ijfyA", _ZNK7WebCore6JSNode8nodeTypeERN3JSC14JSGlobalObjectE) +STUB("e9Oxvyle79Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEaSERS7_) +STUB( + "e9R037Q+QHI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("e9TNH6eNEnA", _ZN3sce3Xml6StringC1ERKS1_) +STUB("e9TbTZXq-w8", sqlite3_column_bytes16) +STUB( + "e9VQote9ck4", + _ZN9Inspector24CanvasFrontendDispatcher17recordingFinishedERKN3WTF6StringENS1_6RefPtrINS_8Protocol9Recording9RecordingENS1_13DumbPtrTraitsIS8_EEEE) +STUB("e9WZ3MUFHBY", _ZN3sce7Toolkit2NP2V26Trophy15TrophyPackGroupaSERKS4_) +STUB( + "e9ZLQs9eieE", + _ZN7WebCore4Page19setVisitedLinkStoreEON3WTF3RefINS_16VisitedLinkStoreENS1_13DumbPtrTraitsIS3_EEEE) +STUB("e9bP8zdMofE", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_6TicketEE3getEv) +STUB("e9esEJLGY0o", sceUsbStorageSetFakeWriteProtection) +STUB( + "e9gg8c-oO1c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEC2Ev) +STUB("e9ghYzJd1L0", _ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody14setRulesetNameEPKc) +STUB("e9kq80v5TTI", _ZNK7WebCore11HistoryItem9urlStringEv) +STUB("e9myLMjjXhc", _ZN3sce2np11NpHttpTransC2ERNS0_12NpHttpClientERKNS0_10NpOnlineIdE) +STUB("e9ocGh0zOGM", _ZN3NTF5MutexD2Ev) +STUB("e9sWOes5VlY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE21intrusive_ptr_sub_refEPS7_) +STUB( + "e9w1QH3vMDw", + _ZN9Inspector21InspectorRuntimeAgent27didCreateFrontendAndBackendEPNS_14FrontendRouterEPNS_17BackendDispatcherE) +STUB( + "e9zCSA8mXOk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "eA5gO7QCWGA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE8copyFromERKS9_) +STUB( + "eACRFLHx4FI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEdeEv) +STUB("eADQnu7cp90", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchStatusC2ERS5_) +STUB("eADv5sPWzgY", + _ZN7WebCore17CredentialStorage27removeCredentialsWithOriginERKNS_18SecurityOriginDataE) +STUB( + "eAFtOSUCm2k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEaSERS7_) +STUB( + "eAGQJ4nuHiM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEED2Ev) +STUB( + "eARplY-I3B8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE5beginEv) +STUB("eAU7XCnlXMk", sceApplicationKill) +STUB("eAYdIYmrQjU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEcvbEv) +STUB( + "eAfKVHsiZNU", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi44ParameterToPatchGameSessionsSearchAttributesC2Ev) +STUB( + "eAfe3DZduRs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("eAg1RVhw5wA", _ZNK3sce2Np9CppWebApi14SessionManager2V111GameSession12getSessionIdEv) +STUB("eAiZS424Oq8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEEaSERKS7_) +STUB("eAjATlyzi+c", _ZN12video_parser5vpcom15_convErrPafToVpEi) +STUB("eB7IqobKhD4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEEC1ERKS7_) +STUB("eB89+hNzc6Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEppEv) +STUB( + "eBBWpsQ2+lw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEEC2ERKS9_) +STUB("eBFzDYThras", sceSystemStateMgrCancelShutdownTimer) +STUB("eBGi2WEmrAk", _ZN3sce7Toolkit2NP2V28Matching4DataC1ERKS4_) +STUB("eBL+l6HG9xk", sceNpTrophyGetTrophyIcon) +STUB( + "eBSKvnte-4w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEC1Ev) +STUB("eBSSNIG6hMk", sceSaveDataGetEventInfo) +STUB( + "eBTrDugDfUM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE5emptyEv) +STUB("eBTreZ84JFY", sceAvPlayerSetLogCallback) +STUB("eBWS-HorSWY", sceNetCtlApDialogGetStatus) +STUB("eBWlMuS-0MA", scePerfPmcL3GetCounter) +STUB( + "eBXs6uG0HZE", + _ZN9Inspector21PageBackendDispatcher18setBootstrapScriptElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "eBjJyJWlfy4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEplEm) +STUB("eBmVcCoq0dI", _ZN7WebCore4BlobC2EPNS_22ScriptExecutionContextE) +STUB( + "eBmloENxHyo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE10setContextEPNS2_10LibContextE) +STUB("eBoW3491Qw8", _ZN7WebCore9ImageDataD2Ev) +STUB("eBrt8TPOlUI", sceNetApctlStop) +STUB("eBuNgAm7zgY", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEEptEv) +STUB("eBvoaLwfBBQ", sceVideoOutSysReadCrc64) +STUB("eBxo9PWIE48", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors23getValidationConstraintEv) +STUB("eC3AUNM952g", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119NatConnectivityFrom8fromJsonERKNS_4Json5ValueE) +STUB( + "eC6Eo2UPPiw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("eC88db1i-f8", sceUserServiceGetSharePlayFramerateHost) +STUB("eCB7aNN7Ghs", _ZN3sce7Toolkit2NP2V28Matching7Request14SendInvitation18MAX_NUM_RECIPIENTSE) +STUB("eCDNriYq81Y", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEEdeEv) +STUB("eCDnVSSrKwo", + _ZNK3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse13relationIsSetEv) +STUB("eCFso1qrdNY", + _ZNK7WebCore13JSHTMLElement21pushEventHandlerScopeEPN3JSC9ExecStateEPNS1_7JSScopeE) +STUB("eCHybPTntZc", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10getString4Ev) +STUB( + "eCJx+a3mQ6w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEE7add_refEv) +STUB("eCLWlA78Faw", _ZN7WebCore19InspectorController15ensurePageAgentEv) +STUB( + "eCLj+GunGFY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEeqERKS9_) +STUB( + "eCLsKEjoqUs", + _ZN9Inspector33ApplicationCacheBackendDispatcher27getApplicationCacheForFrameElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "eCPQpDFUCQ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("eCQoGkpAfA0", sceCesUtf16leToEucKr) +STUB("eCRMCSk96NU", sceFontTextSourceSetDefaultFont) +STUB("eCTBrehmQfI", g_list_length) +STUB("eCUIlA2t5CE", sceNetCtlGetBandwidthInfoIpcInt) +STUB("eCbNVDFzGCs", JSContextGroupCreate) +STUB( + "eCcP4R3yhqE", + _ZN7WebCore16HTMLTableElement8setTHeadEON3WTF6RefPtrINS_23HTMLTableSectionElementENS1_13DumbPtrTraitsIS3_EEEE) +STUB("eChRZu789Pk", ucnv_cbFromUWriteBytes_67) +STUB("eCjKaqeeQ5s", sceAgcAcbPrimeUtcl2GetSize) +STUB("eCjonvf5rso", _ZN7WebCore21ISOTrackEncryptionBox5parseERN3JSC8DataViewERj) +STUB( + "eCln8H8dhqU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEE11get_deleterEv) +STUB( + "eCsfKCuVJTI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEC2Ev) +STUB("eCt77qfDBf8", _ZN7bmalloc9ScavengerC2ERKSt11scoped_lockIJNS_5MutexEEE) +STUB( + "eCyIOiBCnBU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE3endEv) +STUB("eD+X2SmxUt4", sceVideodec2AllocateComputeQueue) +STUB("eD+mC6biMFI", _ZTIN10__cxxabiv117__array_type_infoE) +STUB("eD-fRmwbvu8", OCSP_cert_to_id) +STUB("eD0Heap9FkI", _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead14sessionIdIsSetEv) +STUB( + "eD6030SzgjM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEED1Ev) +STUB("eD76mHY99fM", u_getIntPropertyValue) +STUB( + "eDATBQWX+lY", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ImageFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5ImageEEE) +STUB("eDBXAIMIaKk", mono_image_loaded_by_guid) +STUB("eDDkfNXuvr8", _ZN3sce7Toolkit2NP18SessionInformationC1Ev) +STUB("eDFeTyi+G3Y", sceAjmDecMp3ParseFrame) +STUB( + "eDIy61Vo-vU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "eDNxhgdz6zE", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearch8getlimitEv) +STUB( + "eDQEnpGCuWo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEE7get_refEv) +STUB("eDQTFHbgeTU", sceMouseDisconnectDevice) +STUB( + "eDRQQrpUTlY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEED2Ev) +STUB( + "eDTgkEgXMkQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE5beginEv) +STUB( + "eDcJOhydHRw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEmmEv) +STUB("eDciML+moZs", _ZTISt12system_error) +STUB("eDdGDt86MX0", __ubsan_get_current_report_data) +STUB("eDeAbQ8q28w", _ZN7WebCore16JSXMLHttpRequestC1ERKS0_) +STUB("eDglomsck7M", mono_profiler_install_context) +STUB( + "eDkik1SrQns", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEixEm) +STUB("eDmbt0P120g", strcasestr) +STUB("eDoW9KCT0Ag", _ZNSbIwSt11char_traitsIwESaIwEE7replaceEmmRKS2_mm) +STUB( + "eDtbZYNo33k", + _ZN3sce2Np9CppWebApi14SessionManager2V130MemberWithMultiPlatformFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_23MemberWithMultiPlatformEEE) +STUB("eDxEHb9f7B8", sceNpMatching2SignalingAbortConnection) +STUB("eDxmMoxE5xU", sceFontGraphicsUpdateScaling) +STUB("eE4Szl8sil8", sceKernelAprSubmitCommandBuffer) +STUB("eE5Xq+xNb8I", mono_btls_x509_verify_param_set_name) +STUB( + "eE6Sb+rUt0U", + _ZNK3sce2Np9CppWebApi14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBody16customData1IsSetEv) +STUB("eE7CU0gGnOc", _ZTVN7WebCore22DefaultFilterOperationE) +STUB("eEH9h2oW1B4", utrie2_swap) +STUB("eEKCqqaPSmc", mono_aot_Sce_Vsh_JsExtensionjit_code_start) +STUB("eEMpsX1fGHU", sceVoiceChatDeleteRequest) +STUB("eEPzJzs+aZE", + _ZNSt9_FacetptrISt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEE6_PsaveE) +STUB("eERxWAQ30PE", mono_aot_Sce_Vsh_Np_Udsunbox_trampoline_addresses) +STUB("eES4xlyf8R4", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE3endEv) +STUB("eESTogkCMPE", sceKernelTraceMemoryTypeProtect) +STUB( + "eEcQ+dzmzZA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEC1Ev) +STUB("eEeKqFeNI3o", sceAudioPropagationSourceGetAudioPath) +STUB( + "eEqfYh-E0cw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE8copyFromERKS9_) +STUB("eEr7LIMuChY", _ZN15AbstractStorage14TwitterServiceC2Ev) +STUB("eF+3zZrCVTo", g_ptr_array_free) +STUB("eF0qz6DwDVg", mono_aot_I18N_Westjit_code_end) +STUB("eF26YAKQWKA", _ZNSt10moneypunctIcLb0EE2idE) +STUB( + "eF2V2JW0pEQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEC1Ev) +STUB("eF8yRCC6W64", sceNgs2GeomApply) +STUB("eFANmS4bwPE", sceDeci4hDrfpChkGetConf) +STUB( + "eFEGeSrXMjE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEppEv) +STUB( + "eFIpxKk3pzM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEEC2Ev) +STUB( + "eFKTc4NG64Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEE11release_refEv) +STUB("eFLAn+7PDGM", mono_aot_System_Xmljit_got) +STUB( + "eFOTTfSFHhM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEE5resetEPS8_) +STUB("eFOrN+nZ1kg", _ZN3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponseD1Ev) +STUB("eFOwwrcE3ks", _ZNK7WebCore22EmptyFrameLoaderClient6pageIDEv) +STUB( + "eFQHtGrUkMw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEEaSERKSA_) +STUB( + "eFRuUGMh3qE", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS2_6VectorINS5_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS5_INS8_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("eFSItJGsqkE", _ZN12video_parser5vpcom11Utf8ToUtf16EPKcPSbIwSt11char_traitsIwESaIwEE) +STUB("eFThXSRZtyo", _ZN3WTF6String8fromUTF8EPKh) +STUB("eFUHSufvmnw", mono_value_box) +STUB( + "eFWvelij4Jc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("eFXWrZU1Fa8", _ZNK3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse11getRelationEv) +STUB("eFYG4FoFDq0", _ZTV10MsvUpdater) +STUB( + "eFavrPYuPhg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEdeEv) +STUB("eFb8g7ecEaA", MvpHttpPost) +STUB("eFcVE9DzSA0", rgctx_fetch_trampoline_mrgctx_78) +STUB("eFdKrq4iEBA", _ZN3JSC23throwStackOverflowErrorEPNS_9ExecStateERNS_10ThrowScopeE) +STUB("eFge2lVHxN4", _ZN7WebCore17FrameLoaderClient30completePageTransitionIfNeededEv) +STUB("eFhsGSf+Hbw", sceOpusDecDecodeWithPriorityAndTimeout) +STUB("eFnT5B4zPLY", WKBatteryManagerProviderDidChangeBatteryStatus) +STUB("eFq6TwjRd9M", g_slist_foreach) +STUB("eFrm70bYHn0", _ZNK7WebCore22ResourceLoadStatistics6encodeERNS_12KeyedEncoderE) +STUB("eFvnDNc-2Fc", JSStartProfiling) +STUB("eG0qIomiwK0", _ZN3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate12setAccountIdERKm) +STUB( + "eG4g-5wqX04", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEED2Ev) +STUB("eG5EI3x6twg", hb_font_set_scale) +STUB("eG8KMjqrESQ", _ZN7WebCore11HTMLElement18setContentEditableERKN3WTF6StringE) +STUB("eG9E9M6XvTM", _ZN3sce4Json6StringC2Ev) +STUB("eGD4a3VZbyA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEE7add_refEv) +STUB( + "eGDzQ8Vo9P0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE5clearEv) +STUB( + "eGEQ9Hmtbr8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEED1Ev) +STUB("eGF9Mp0Cqds", _ZTVN7WebCore11PageOverlayE) +STUB( + "eGHISqhaA24", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEC1Ev) +STUB("eGJ2gaW6Mvc", Java_java_lang_Shutdown_halt) +STUB("eGKUkd0H3wY", sceDeci4hDrfpCreate_fuse) +STUB("eGOwLjuQyms", _ZN3sce7Toolkit2NP2V27Ranking12FriendsRanksC1ERKS4_) +STUB("eGRZTvsrK1Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEED1Ev) +STUB( + "eGRtjgbhbDg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEE7add_refEv) +STUB("eGVPAJ+M5A8", sceBluetoothHidGetDeviceName) +STUB( + "eGWXr0QFMhQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEED1Ev) +STUB( + "eGXgb9kTpWc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE3endEv) +STUB("eGbbvD8o7go", hb_buffer_set_script) +STUB( + "eGecQq04UtY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("eGfS467fWg8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEixEm) +STUB("eGhtPtVLqPA", _ZN3sce2Np9CppWebApi11UserProfile2V113BasicPresence17unsetOnlineStatusEv) +STUB("eGkOpTojJl4", isprint) +STUB("eGkcUia48ts", sceCamera2Start) +STUB( + "eGsVxVTiUvk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEE3getEv) +STUB("eGtZan3bzYA", OCSP_response_status) +STUB("eGunerNP9n0", sceNpTusGetMultiUserVariableAAsync) +STUB( + "eGzpqU00IpE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEEC1Ev) +STUB( + "eH-0izzhkVY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEC1Ev) +STUB( + "eH3oEhPQkMM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB("eH5PsCOLeAE", _ZN4Manx8X509cinfC2EPv) +STUB( + "eH87l-cdtBQ", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi47ParameterWithBinaryRequestBodyToRecordLargeDataC1Ev) +STUB("eH8bMmzO02w", sceCesIso2022StrToUcs2Str) +STUB("eHTtf8P+lpo", _ZN12Mp4Retriever7ProcessEPKc) +STUB("eHX3u-C8wEk", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_playPlayList) +STUB( + "eHXWPhdPJbs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEC2EPNS2_10LibContextE) +STUB("eHZ5DsEGZPg", scePsmUtilGetSystemAssetManagerSize) +STUB("eHa3vhGu2rQ", sceCameraSetLensCorrectionInternal) +STUB( + "eHckgiQ4UwY", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayer10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_49PostGameSessionsSessionIdMemberPlayersRequestBodyEEE) +STUB("eHe1OKr7mIY", mono_method_body_get_object) +STUB("eHjmc+fw1jc", _ZNK7WebCore17ParsedContentType9serializeEv) +STUB("eHl4Ys8b2tE", _ZNK3sce2Np9CppWebApi7Matches2V111AddedPlayer12getAccountIdEv) +STUB( + "eHmoYV2DbS8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("eHptLuvGPS8", monoeg_realloc) +STUB("eHq6nJv2LkY", _ZN7WebCore8SVGNames6frAttrE) +STUB("eI1SOK89t7I", sceDeci4hDrfpReaddir) +STUB("eI2iByoOtYU", WKBundleFrameGetJavaScriptContext) +STUB("eIFXPHNYV2M", zrule_getRawOffset_67) +STUB("eIG1Kv8pUFw", _ZN3sce2Np9CppWebApi6Common6VectorImE6resizeEj) +STUB( + "eII5vVV+5zI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEE11get_deleterEv) +STUB("eIJPGQuDPbg", _ZN7WebCore9HTMLNames10articleTagE) +STUB("eIKGVbpwFZM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEEC2EPS6_) +STUB("eINK6ismSX0", sceMbusAcquireControl) +STUB("eIREyQGh+gs", mono_gc_toggleref_add) +STUB("eIRIcsSyhro", _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile12setAccountIdERKm) +STUB( + "eIRPLeQ3f+s", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEC2Ev) +STUB("eIUsJO-UCH8", _ZN7bmalloc3api8scavengeEv) +STUB("eIWOmJNeKUs", _ZN9Inspector32ScriptProfilerFrontendDispatchernaEmPv) +STUB( + "eIc1Winv+RA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEeqERKSA_) +STUB("eIfqo4s541w", WTFIsDebuggerAttached) +STUB("eIhEhorvGeI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEEC1ERS6_) +STUB( + "eIioGs+ndeo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEC1EPNS2_10LibContextE) +STUB( + "eIkDmPgfTMg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEEC1Ev) +STUB( + "eIlqRowEivw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("eIn0RJ2Qn0A", _ZN7WebCore10XLinkNames8typeAttrE) +STUB("eIoITAoWDjk", __sanitizer_unaligned_load32) +STUB("eIphLYOgAWM", png_process_data) +STUB( + "eIuuGWo3exE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEcvbEv) +STUB("eIvOQqvtBuQ", _ZN7WebCore20LegacySchemeRegistry25registerURLSchemeAsSecureERKN3WTF6StringE) +STUB( + "eJ+s49iFqKo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "eJ0X84tTQ1s", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEdeEv) +STUB("eJ5tz2XwLk0", ScePsmMonoPrivilegesFinishInit) +STUB( + "eJ9k8D8tkn4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEC1EPS8_) +STUB("eJDUHQBBwZM", sceNpManagerIntBindGetWebAppToken) +STUB( + "eJKZP39gn8g", + _ZN3sce2Np9CppWebApi14SessionManager2V156PostGameSessionsSessionIdMemberPlayersRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_49PostGameSessionsSessionIdMemberPlayersRequestBodyEEE) +STUB( + "eJP81RvIvPk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEC1ERKS7_) +STUB("eJRKJUHQw8Y", Java_com_sony_gemstack_core_CoreAppAttributes_n_1getPriority) +STUB( + "eJTWHfrwCXM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("eJUrqdzmRdk", _ZN3sce2Np9CppWebApi15ProfanityFilter2V219WebApiErrorResponseD2Ev) +STUB( + "eJicdDiETIE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEC2EPNS2_10LibContextE) +STUB("eJjhIOPW3jk", delegate_virtual_invoke_imt_20) +STUB( + "eJoZn+UlueY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE6resizeEj) +STUB( + "eJpF5+BqD8U", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEptEv) +STUB( + "eJylibpXIYg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEneERKS9_) +STUB("eKCokbgB3CY", _ZN15AbstractStorage15FacebookServiceD2Ev) +STUB( + "eKE8RDVIUyU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEE5resetEPS6_) +STUB("eKLcwhZXz7w", JVM_SocketClose) +STUB( + "eKQ5-Dfmgdc", + _ZN7WebCore13createWrapperERNS_17JSDOMGlobalObjectEON3WTF3RefINS_8NodeListENS2_13DumbPtrTraitsIS4_EEEE) +STUB("eKQjzNBZIyU", sceBgftServiceIntExtUsbCheckActiveDownloadTasks) +STUB("eKQk89XMt3g", _ZNK3sce2Np9CppWebApi13InGameCatalog2V520ContainerRatingCount10scoreIsSetEv) +STUB( + "eKTMIFMDgo8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEppEi) +STUB("eKVQMRwCKr8", _ZN7WebCore8makeRGBAEiiii) +STUB("eKVpaYTMQtM", mono_aot_System_Xmlunbox_trampolines_end) +STUB( + "eKY+F739yDw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEE7add_refEv) +STUB("eKctv3gCsW0", JVM_Clone) +STUB( + "eKhBXGt2ku0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "eKn7zwucu60", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEEC1ERKSA_) +STUB("eKrV0OvtcFg", _ZN12video_parser5vpcom25_DirectoryDeleteRecursiveEPcj) +STUB( + "eKrg3e36Bc0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE21intrusive_ptr_add_refEPS7_) +STUB("eKuGGkmzC4o", _ZN7WebCore19BlurFilterOperationC2ENS_6LengthE) +STUB("eKuRIaJZ1EY", WKPreferencesSetAudioPlaybackRequiresUserGesture) +STUB( + "eKx0i22+tAI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB("eKxoV8TKYy4", sceTsGetLiveStatus) +STUB("eKy0c9bg0VU", sceAvControlGetHdcpStatus) +STUB("eL0q9MZQ-2E", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEEC2Ev) +STUB( + "eL2bF9E1SNg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEC1EPS8_) +STUB("eL54zY-B+-Y", sceSocialScreenDialogOpen) +STUB("eL5Hn1IaGrw", _ZN3JSC7Symbols15thisPrivateNameE) +STUB("eL7PAmyp2fs", WKURLCopyHostName) +STUB("eL7sMZaIdac", sceRegMgrResetVal) +STUB("eL92XS8ko9M", obuf) +STUB("eLB2+1+mVvg", _ZNSt8messagesIcE5_InitERKSt8_Locinfo) +STUB( + "eLHK-mFID9k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEC2Ev) +STUB("eLHkTK2CtH8", WKPageDumpAdClickAttribution) +STUB("eLIgh5SjGGo", _ZN7WebCore9HTMLNames5h1TagE) +STUB("eLQbNsKeTkU", sceGnmGetResourceRegistrationBuffers) +STUB("eLT-CpJrMnI", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats14unsetPlayStyleEv) +STUB("eLU8pDi9KN0", sceCompositorSetResolutionCommand) +STUB("eLWnPuja+Y8", sceSystemServiceSetGpuLoadEmulationMode) +STUB("eLWsAgk6rg4", _ZN3sce2np16StreamReadBuffer7IsEmptyEv) +STUB("eLasd29xQfY", mono_array_class_get) +STUB("eLdDw6l0-bU", snprintf) +STUB("eLdo-JoTlrc", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TSS7TssDataEED1Ev) +STUB( + "eLlSL37PiJU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "eLozAV+BgBk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEC2EPS8_) +STUB("eLqCz3qQ-wA", _ZN7WebCore4Node20cloneNodeForBindingsEb) +STUB("eLzKp9R89G4", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanityC2Ev) +STUB("eM-+5+lpfqA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEEC1Ev) +STUB( + "eM-1W1C9c78", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEaSERKS7_) +STUB("eM4K8RO2--M", _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities5Error14getReferenceIdEv) +STUB("eM7A1wI+mpU", + _ZThn16_N9Inspector22InspectorDebuggerAgent23setAsyncStackTraceDepthERN3WTF6StringEi) +STUB("eM7sd4AClXs", ucptrie_swap_67) +STUB( + "eMAfsivgvhk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("eMAri9grVD8", _Z13insertOnArrayPPjmj) +STUB("eMGF77hKF6U", sceUserServiceGetFriendCustomListLastFocus) +STUB("eMI1Hq+NEwY", sceHmdInternalCrashReportCancel) +STUB("eMJMNjD3zSU", _ZN7WebCore14SocketProvider6createEv) +STUB("eMKHL+Cj50k", FT_Get_Glyph) +STUB( + "eML3727nGwc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEC1EPS8_) +STUB("eMM8e4yA3AU", unorm2_normalize) +STUB("eMP4AN0xwho", WKContextEnableAccessibility) +STUB( + "eMQ0TocLxuk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "eMSSskg6vqM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEEptEv) +STUB("eMWhZ2iljvg", WKPreferencesSetEncodingDetectorEnabled) +STUB("eMYdk0sOUQI", fuse_kern_mount) +STUB( + "eMZBfYwe7I4", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("eMeNeT5j6D8", stat_set_FuseDeci) +STUB("eMerT8QXYeM", sceVnaRegisterCallback) +STUB("eMg6XrCpbEc", _ZN7WebCore11JSImageData15subspaceForImplERN3JSC2VME) +STUB("eMim-baluxU", sceRegMgrSyncHdd) +STUB( + "eMkQ4MIAccE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEC1Ev) +STUB("eMma2ftKEZ4", _ZNK7WebCore8Document6loaderEv) +STUB( + "eMnBe5mZFLw", + _ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE7_GetcatEPPKNSt6locale5facetEPKS5_) +STUB( + "eMnEB9jAD0Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEE7get_refEv) +STUB("eMq0iQNxRlU", _ZN3sce7Toolkit2NP2V28Presence8Presence25MAX_NUM_PLATFORM_PRESENCEE) +STUB("eMu4Uer8TZk", mono_aot_Sce_Vsh_EventServiceWrapperunbox_trampoline_addresses) +STUB("eMu9G7-Gub4", _ZN9Inspector15ScriptCallFrameC1ERKS0_) +STUB("eMux4QNYdv0", monoeg_g_slist_nth) +STUB("eMwJuJMfSmM", _ZN3sce2Np9CppWebApi6Common6VectorIjE3endEv) +STUB("eMxfI0Jx2E0", rgctx_fetch_trampoline_rgctx_107) +STUB("eMzIhkNXXnE", sceVencCoreSetBitRate) +STUB("eN81KmJlGOE", + _ZNK3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator14joinStateIsSetEv) +STUB("eNDYbSvB334", _ZN4IPMI6Client6Config27AsyncMethodInvocationConfigC2Ev) +STUB("eNFR5wiR41Y", + _ZN7WebCore32isSimpleCrossOriginAccessRequestERKN3WTF6StringERKNS_13HTTPHeaderMapE) +STUB( + "eNKxxlVJNCQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE5emptyEv) +STUB("eNLB1x1rwMk", _ZN9Inspector30CanvasBackendDispatcherHandlerC2Ev) +STUB("eNQ0FStvU1c", NpWebAbortRequest) +STUB( + "eNRAEKt74YA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEE5resetEPS6_) +STUB("eNVPhzEj5Go", _ZNK3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors7getPathEv) +STUB("eNW5jsFxS6k", _ZTSSt12out_of_range) +STUB("eNYQWKGjUpc", __asan_exp_store4_noabort) +STUB("eNb53LQJmIM", sceUserServiceGetForegroundUser) +STUB( + "eNcBnaMysEs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEC1EPKS8_) +STUB("eNjbJhrJ+Gg", _ZN7WebCore11DisplayList11SetLineJoinD2Ev) +STUB("eNlDM--QehI", WKBundleBackForwardListItemCopyTarget) +STUB("eNp9ZnG0MEI", + _ZN7WebCore20ResourceResponseBase18setHTTPHeaderFieldENS_14HTTPHeaderNameERKN3WTF6StringE) +STUB("eNqAMgozs58", udatpg_getSkeleton_67) +STUB( + "eNrhBCPUvLo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE5emptyEv) +STUB("eNxbfBk88VI", _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody10getPlayersEv) +STUB("eO02culIF5o", _ZN7WebCore8SVGNames20font_size_adjustAttrE) +STUB( + "eO190P-QKl8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEC1Ev) +STUB("eO5dme84mzs", __sanitizer_malloc_hook) +STUB("eOE7+ld8CTc", c01) +STUB( + "eOGB4QroFBQ", + _ZN3sce2Np9CppWebApi7Matches2V124ResponseMatchTeamFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_17ResponseMatchTeamEEE) +STUB( + "eOJJyTT4ujY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEptEv) +STUB("eOLZypgZUNw", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError16referenceIdIsSetEv) +STUB("eOOeG9SpEuc", sceHmdInternalSeparateModeGetVideoStatus) +STUB("eOS91iojS2s", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEED1Ev) +STUB("eOUFs28RJtg", Java_java_lang_System_registerNatives) +STUB( + "eOUf3wmVZRI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEC1Ev) +STUB("eOVCR-oZ8MM", _ZN7WebCore11HistoryItem15setIsTargetItemEb) +STUB("eOVYP0yQoBE", llvm_throw_corlib_exception_trampoline) +STUB( + "eOXBvVAx954", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEEC1ERKSA_) +STUB( + "eOXF64KEk6c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEC2EPNS2_10LibContextE) +STUB("eOe0dOSgbjE", _ZN3JSC20AbstractModuleRecord8evaluateEPNS_9ExecStateE) +STUB( + "eOkbvQ+Or+Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEEC1ERKSA_) +STUB( + "eOo-+Zg6i1g", + _ZN9Inspector21PageBackendDispatcher9setCookieElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("eOxGbG3sPb0", sceNpEntitlementAccessRequestConsumeUnifiedEntitlement) +STUB("eP-XvTjowrw", _ZN9Inspector18InjectedScriptBase8makeCallERN10Deprecated18ScriptFunctionCallE) +STUB("eP76KjYIEJo", _ZN9Inspector22InspectorDebuggerAgentnaEmPv) +STUB("eP8K5VOwIh0", _ZN3sce7Toolkit2NP9Utilities6FutureI7SceNpIdE3getEv) +STUB( + "eP94F5QTsD0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "eP9fgCAPRwc", + _ZN7WebCore11JSDOMWindow18getOwnPropertySlotEPN3JSC8JSObjectEPNS1_14JSGlobalObjectENS1_12PropertyNameERNS1_12PropertySlotE) +STUB("ePJnhLB2eu4", mono_metadata_signature_equal) +STUB("ePPa+o4H4ck", cpp_demangle_read_subst) +STUB("ePQRjogCEOk", sceBgftServiceIntUploadStopTaskAll) +STUB("ePRSOZsroIQ", sceKernelGetIpcPath) +STUB( + "ePSWhlZcS+8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEixEm) +STUB( + "ePTW4IrxduA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("ePTrUSMxnmg", sceVencGetConfig) +STUB( + "ePaLhWuJZTY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEED1Ev) +STUB("ePb65E4Nj08", _ZN3sce7Toolkit2NP2V26Friend7FriendsD2Ev) +STUB("ePb7SaW90CA", WKPreferencesSetLoadsSiteIconsIgnoringImageLoadingPreference) +STUB( + "ePere6aCgdo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEneERKS9_) +STUB("ePfrY3-cnX4", mini_create_jit_domain_info) +STUB("ePgPaHobEOc", _ZN3JSC10LinkBuffer31finalizeCodeWithDisassemblyImplEbPKcz) +STUB( + "ePlNXD5ZnjM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE7popBackEv) +STUB("ePo0zF7lI5o", + _ZN7WebCore15JSFetchResponse15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("ePuh5Ay33RY", il2cpp_domain_assembly_open) +STUB("ePw-kqZmelo", sceMsgDialogTerminate) +STUB("ePwlNh81Abk", _ZN3WTF21MemoryPressureHandler28beginSimulatedMemoryPressureEv) +STUB("ePxEheUEX7o", _ZN9Inspector18InspectorHeapAgent2gcERN3WTF6StringE) +STUB( + "ePxgtVeEKhY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE7reserveEi) +STUB("eQ-q3E2Jtxs", YGNodeStyleGetOverflow) +STUB("eQ130OUsqLM", _ZN12video_parser13cVideoPathMgv11sExtentListE) +STUB( + "eQ5sn6-7JrY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE13goToProcessedEi) +STUB( + "eQ62MC5zX0w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE21intrusive_ptr_sub_refEPS9_) +STUB("eQCNHjia30c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEED1Ev) +STUB( + "eQD-r4EOxNg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEdeEv) +STUB("eQH7nWPcAgc", sceNpGetState) +STUB("eQHs53BtanY", mono_thread_hazardous_try_free) +STUB( + "eQJigtmWFXg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEEC1ERKSA_) +STUB( + "eQJqc5H-asA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEED1Ev) +STUB("eQKVlU3XN9A", u_isdigit_67) +STUB("eQPL0pfnPdw", scePerfPmcMcSeqGetCounter) +STUB("eQU2erJpK2M", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE21intrusive_ptr_sub_refEPS7_) +STUB( + "eQUESt2Hkno", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("eQVtby4qLMg", u_strFoldCase_59) +STUB("eQac6ftmBQQ", sceFontGraphicsFillPlotSetLayout) +STUB("eQhBFnTOp40", llroundf) +STUB( + "eQlniMtu9UQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEC2EPNS2_10LibContextE) +STUB( + "eQluipZ7nec", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEC2Ev) +STUB("eQrBbMmZ1Ss", sceUserServiceGetGlsTtsPitch) +STUB( + "eQujBdqWaPM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEdeEv) +STUB("eQxdyxfGnzk", _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeIPcPvEEC1ERKS7_) +STUB("eQyyR4yPFKQ", WKBundleNodeHandleGetElementBounds) +STUB("eQzd4S7d95Q", ucnvsel_close_67) +STUB("eR0BDTjb54c", _ZN7WebCore9HTMLNames17aria_rowcountAttrE) +STUB("eR2bZFAAU0Q", sceSysmoduleUnloadModule) +STUB("eR9SnNo7avY", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersaSERS5_) +STUB("eRJv4xU7pGU", sceContentExportGetProgress) +STUB("eRNAyCK6Guc", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEE3getEv) +STUB( + "eRNcs8KNK1o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEmmEi) +STUB( + "eROqonEyq6Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEE11get_deleterEv) +STUB( + "eRQT4ehKaZI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEC2EPKS8_) +STUB("eRR4OZxAkQM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17GetGameDataResultEE3getEv) +STUB( + "eRTjNxAsr8k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("eRcRVO3hNTM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEC1ERKS7_) +STUB("eRd+WZ6MHqY", _ZN10Deprecated11ScriptValueD2Ev) +STUB("eRlqlofFKYg", _ZThn16_N3sce2np9HttpTrans5WriteEPNS0_6HandleEPKvmPm) +STUB("eRn6vlfK6ac", sceRazorCpuWorkloadRunBegin) +STUB( + "eRom3JWxb68", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEE7get_refEv) +STUB( + "eRs4ih+ACfI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEC2Ev) +STUB("eRy1rt7wGSw", uplrules_openForType_67) +STUB( + "eRzc8kp59WA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEED2Ev) +STUB("eS+4GhL28gs", FTA_Add_Module_sfnt) +STUB("eS+MVq+Lltw", remainderf) +STUB("eS-78uVynTY", Java_java_awt_GnmRobotHelper_doKeyActionOnWidget) +STUB("eS3+LMYAClE", g_strsplit) +STUB( + "eS63deXs-5w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("eS6QfGn5eCY", _ZN9Inspector27LayerTreeFrontendDispatcher18layerTreeDidChangeEv) +STUB("eSFTUAm1wf8", FT_Get_TrueType_Engine_Type) +STUB("eSL9ExpUfks", _ZN3sce7Toolkit2NP2V210Tournament14RegisteredTeamC1Ev) +STUB("eSLUeyNDLEs", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEE3getEv) +STUB("eSQG2sdo6oY", _ZN7WebCore7RunLoop4stopEv) +STUB( + "eSTldGsyi2A", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEplEm) +STUB("eSYkT4sGWmY", mono_aot_Sce_Vsh_Db_Sharedunbox_trampolines_end) +STUB("eScteZ9-xUc", sceCesEucKrToUcs2) +STUB("eSdAHApUsso", _ZN3WTF17StringPrintStreamD0Ev) +STUB( + "eSeStToLefk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("eSfNCiZOs5Q", mono_aot_Sce_Vsh_GameCustomDataunbox_trampolines) +STUB("eSiHCxqbKas", _ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequest17setExpirationTimeERKi) +STUB("eSjOInieCgE", __asan_exp_storeN_noabort) +STUB( + "eSk0oIINf84", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEC1EPKS8_) +STUB( + "eSl0F3IuFyg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "eSlSqJUUNA0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("eSmlvBGD3QM", _ZN7WebCore9JSDOMRectC2ERKS0_) +STUB( + "eStL3MFyAY8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE5beginEv) +STUB("eSu9lMTfbz4", _ZN12video_parser13cVideoPathMgvD2Ev) +STUB("eSuD0DPJpvE", sceAudioOut2LoContextDestroy) +STUB( + "eSuXNaGaAwo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("eSvhG4rsH6M", _ZN7WebCore11MediaPlayerdlEPv) +STUB("eSwGXlKHIas", cairo_get_dash_count) +STUB( + "eSxTk9SMPGQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEplEm) +STUB( + "eSyTamgpMfY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEE11get_deleterEv) +STUB( + "eSzFPe6Ny-w", + _ZNK3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfiles13getaccountIdsEv) +STUB( + "eT+knIE0Egc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEmmEv) +STUB("eT2UsmTewbU", _ZSt11_Xbad_allocv) +STUB( + "eT4TQB7OsLA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26getMultiDataStatusesByUserEiRKNS4_37ParameterToGetMultiDataStatusesByUserERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_32GetMultiDataStatusesResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("eT7n5lcEYCc", SSL_getCookie) +STUB("eT7zquMYI-w", _ZNK9Inspector21InspectorRuntimeAgent7enabledEv) +STUB("eT8uRhbly2I", WKContextConfigurationSetShouldCaptureAudioInUIProcess) +STUB("eT9p2UY7c04", JVM_SupportsCX8) +STUB("eT9vBUywDRw", WKPreferencesSetSyntheticEditingCommandsEnabled) +STUB("eTBpRtv0fUE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEED1Ev) +STUB("eTByIaLEFhw", mono_aot_Sce_Vsh_MimeTypejit_got) +STUB( + "eTDvO7isU2g", + _ZN3sce2Np9CppWebApi14SessionManager2V122SearchConditionFactory7destroyEPNS3_15SearchConditionE) +STUB("eTEiwRA86F8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEED2Ev) +STUB( + "eTGd5zsE12s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "eTHpY8FLx88", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE6resizeEj) +STUB("eTNXUYUX5jE", mono_set_break_policy) +STUB( + "eTODFipwyAY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEEcvbEv) +STUB("eTOO4IHDkyE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEaSERS7_) +STUB("eTP9Mz4KkY4", __divdc3) +STUB("eTRup0VPnn8", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE4sizeEv) +STUB("eTULeMuXIZQ", mono_aot_Sce_Vsh_Orbis_AbstractStoragejit_code_start) +STUB( + "eTWIZXExCd0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEC2Ev) +STUB("eTYHVlWb7Gs", sceSlimglServerWaitRenderThread) +STUB("eTbv8MolbHc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEC1Ev) +STUB("eTk+2NucJ8k", _ZN7WebCore11DisplayList4ItemD2Ev) +STUB( + "eTklrV3f+JM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEC2Ev) +STUB("eTpWp430DA4", sceMbusAcquireControlWithState2) +STUB( + "eTpwGX4fEEg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "eTr8H5cLUvw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEC2ERS7_) +STUB("eTtdKzNrbjc", _ZN15AbstractStorage12LocalService5StartEv) +STUB( + "eTtdb2Ojc-c", + _ZN3sce2Np9CppWebApi12Leaderboards2V134RecordLargeDataResponseBodyFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_27RecordLargeDataResponseBodyEEE) +STUB( + "eTu9USgFFR4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("eTuON5kcT8U", coil_h_errno) +STUB("eTxvbbELdLk", _ZN3sce7Toolkit2NP2V23TUS12TusVariablesD2Ev) +STUB("eTy3L1azX4E", _ZN3sce2np9WorkQueue9IsRunningEv) +STUB("eTywOSWsEiI", sceCameraOpenByModuleId) +STUB("eU-ln60CLMs", sceUpsrvUpdateGetImageWritingProgress) +STUB( + "eU0DzhcCkrM", + _ZN7WebCore23CoordinatedBackingStore18drawRepaintCounterERNS_13TextureMapperEiRKNS_5ColorERKNS_9FloatRectERKNS_20TransformationMatrixE) +STUB( + "eU2HFD33vTg", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfile14setlanguageSetEPKc) +STUB("eU2IN3zRtOA", mono_aot_Sce_CloudClient_App_Platformunbox_trampoline_addresses) +STUB( + "eU3EhLG574k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "eU5blApGT7Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEED2Ev) +STUB( + "eU77yWR5yVQ", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB( + "eU8d9isP7Jc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEixEm) +STUB( + "eUBo4kS1Bvk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB( + "eUDMksk4MSs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEED2Ev) +STUB("eUFtsxmi2p0", _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSessionD2Ev) +STUB( + "eUHpOFVQd5M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEmmEv) +STUB( + "eUMvnM--N6c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEED1Ev) +STUB("eUaXBqzdC0Y", _ZN7WebCorelsERN3WTF10TextStreamERKNS_11EventRegionE) +STUB("eUkH37MVjEI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed12SharedVideosEED1Ev) +STUB( + "eUp0ePhurDY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEE11get_deleterEv) +STUB( + "eUtVlbdcoXg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEED1Ev) +STUB("eUw-w9kwIhg", _ZN3JSC23objectProtoFuncToStringEPNS_14JSGlobalObjectEPNS_9CallFrameE) +STUB("eV1rtLr+eys", sceNpTrophySystemGetTrophyTitleIds) +STUB( + "eV37monbng4", + _ZN3sce2Np9CppWebApi14SessionManager2V136JoinedGameSessionWithPlatformFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_29JoinedGameSessionWithPlatformEEE) +STUB("eV5igYrwsy0", _ZN9Inspector35DOMDebuggerBackendDispatcherHandlerD1Ev) +STUB( + "eV6zMa4tzTE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEixEm) +STUB("eV7xLK3ZsTQ", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V113MmrPropertiesC1EPNS1_6Common10LibContextE) +STUB("eV9wAD2riIA", sceKernelStat) +STUB("eVFYZnYNDo0", _ZNSt7codecvtIcc9_MbstatetE2idE) +STUB("eVLe9440T7g", T_CString_int64ToString_67) +STUB( + "eVMV4cDOBx0", + _ZN7WebCore12JSTimeRangesC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_10TimeRangesENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "eVU3cXIJz0w", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi20createPlayerSessionsEiRKNS4_31ParameterToCreatePlayerSessionsERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_30PostPlayerSessionsResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("eVUG1wzRuAA", _ZN9Inspector24TargetFrontendDispatcher15targetDestroyedERKN3WTF6StringE) +STUB("eVXPgVCt32g", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26RecordScoreResponseHeaders7destroyEPS5_) +STUB("eVXr2Uj+TA0", _ZN15AbstractStorage14TwitterContent12readExternalESt10shared_ptrINS_7ContentEE) +STUB("eVbkm+WTfh0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEED1Ev) +STUB("eVcWmVlimPA", BIO_puts) +STUB( + "eVefrbdqw0I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "eVjEKL4YwzI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB( + "eVkYQ83qoxg", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser7getsortEv) +STUB("eVkl4XZTS6M", scePs2EmuMenuDialogGetResult) +STUB( + "eVn-NW1p7N8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEdeEv) +STUB("eVn6vS9O8EI", _ZN4IPMI4impl10ClientImpl13waitEventFlagEjmjPmPj) +STUB("eVnCOMC5iO4", WKWebsiteDataStoreStatisticsUpdateCookieBlocking) +STUB( + "eVoUCwnW9P0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEneERKS9_) +STUB("eVpETZzMRn0", sceSystemServiceUsbStorageGetdentsClose) +STUB("eVqH4H3UwCg", _ZN7WebCore7toSRGBAERKNS_9DisplayP3IfEE) +STUB("eVxwyigpkZI", + _ZN3JSC10JSFunctionC2ERNS_2VMEPNS_16NativeExecutableEPNS_14JSGlobalObjectEPNS_9StructureE) +STUB("eW2LN4E7Zh8", _ZNK7WebCore24CoordinatedGraphicsLayer16compositionLayerEv) +STUB( + "eW3NTRl3XSM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEptEv) +STUB("eW7NO7wPwt4", mono_profiler_install_assembly) +STUB("eW8DnRSDucM", _ZN3WTF24AutomaticThreadConditionD1Ev) +STUB("eW9-Wfe9Aqo", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredTeamsEEC1Ev) +STUB("eWErqZiQKv8", dp_l) +STUB( + "eWFB7Eg20qY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB("eWLH5SbvL4M", _ZN7WebCore5Range8collapseEb) +STUB("eWMGI7B7Lyc", _ZNSt3pmr20null_memory_resourceEv) +STUB("eWS30Mvg5xM", + _ZNK3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer6toJsonERNS_4Json5ValueEb) +STUB("eWSt5lscApo", yn) +STUB("eWWZEruU6eQ", _ZN9Inspector25BrowserFrontendDispatcherdlEPv) +STUB("eWX6iliPDKw", YGNodeStyleSetMaxWidthPercent) +STUB("eWYj-OrOBC4", _ZN7WebCore24CoordinatedGraphicsLayer14pauseAnimationERKN3WTF6StringEd) +STUB("eWaWyFegzgQ", sceAgcAsyncRewindPatchSetRewindState) +STUB("eWciKOHADPY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEC2Ev) +STUB( + "eWfFl7QWkvs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEE5resetEPS6_) +STUB( + "eWoc8jpFHMo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEED2Ev) +STUB( + "eX-nxp0fgV4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEEcvbEv) +STUB("eX0m5bz4rZc", _ZN7WebCore21identifierToUSVStringERN3JSC14JSGlobalObjectERKNS0_10IdentifierE) +STUB("eXEfdCMtZdA", + _ZN3JSC14CachedBytecode15addGlobalUpdateEN3WTF3RefIS0_NS1_13DumbPtrTraitsIS0_EEEE) +STUB( + "eXKq-wyLMJ8", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody8fromJsonERKNS_4Json5ValueE) +STUB("eXL2pNf3JSA", NpStateManagerStart) +STUB("eXN5yYD-l7Q", _ZNSt15basic_streambufIcSt11char_traitsIcEED2Ev) +STUB( + "eXNprLmcXyo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEE11get_deleterEv) +STUB("eXU5nNCm60U", mono_btls_x509_name_get_entry_oid_data) +STUB("eXYzyWOANqE", WKPreferencesGetHixie76WebSocketProtocolEnabled) +STUB( + "eXbBN73nUgo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEdeEv) +STUB("eXbUSpEaTsA", scePthreadAttrSetinheritsched) +STUB( + "eXcpqM7R8Xs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEED1Ev) +STUB("eXejVzOD4FI", _ZN3sce7Toolkit2NP2V27NpUtils7Request24SetTitleIdForDevelopmentC2Ev) +STUB( + "eXou+jv8Dmk", + _ZN3JSC19JSSymbolTableObject27getOwnNonIndexPropertyNamesEPNS_8JSObjectEPNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB( + "eXrj6oTXvcA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB("eXxrXkrLXa4", sceRegMgrSetBin) +STUB( + "eY4IATMHYRs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEeqERKS9_) +STUB("eYAh2vlCY-U", sceKernelAprResolveFilepathsToIdsForEach) +STUB( + "eYBP06qnEDE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEE7get_refEv) +STUB("eYCzCuWMibg", _ZN7WebCore18CustomHeaderFieldsaSERKS0_) +STUB( + "eYDpU2-Tl1U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "eYJrQ9zXRcA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUser10setslotIdsEPKc) +STUB("eYKLQVuYiqs", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_15ActivityStoryIdEED2Ev) +STUB("eYL+aHEWbXQ", _ZN7WebCore8JSDOMURL4infoEv) +STUB( + "eYPEfPBBxpA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB( + "eYT314tpyis", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEE11release_refEv) +STUB( + "eYYb2FLaAjo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "eYZ6m0nQEcI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEptEv) +STUB("eYcl-oTV7Ng", WKViewSetFocus) +STUB("eYgHIWx0Hco", _ZN3sce2np5Mutex6UnlockEv) +STUB("eYib7znGCTY", _ZN7WebCore31BasicColorMatrixFilterOperationD2Ev) +STUB( + "eYk1hxY-5aM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEneERKS9_) +STUB("eYok3rEMQlk", mono_aot_Sce_Vsh_Orbis_CdlgServerNpCommerceunbox_trampolines_end) +STUB("eYrsJoLSmno", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE5emptyEv) +STUB( + "eYtsK9Ia+ps", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEE7get_refEv) +STUB("eYuGx+R+zEg", JVM_SetClassSigners) +STUB( + "eYuZQW5qCXo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEC1EPS8_) +STUB("eYz4v5Uek9U", sceNpLookupAbortRequest) +STUB("eZ-v4iZt8lg", _ZN15AbstractStorage18DailymotionContent8SeekByteEliPl) +STUB( + "eZ2ROCZGKX8", + _ZN3JSC8JSObject27getOwnNonIndexPropertyNamesEPS0_PNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("eZ3wZrAzxCw", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEEcvbEv) +STUB("eZ4+17OQz4Q", sceAgcAcbWriteData) +STUB( + "eZBdXCHv1Tk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "eZDyqjuLfhk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEaSERKS7_) +STUB( + "eZJwmQHoy6Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEEdeEv) +STUB("eZNd0zk6ds0", WKCertificateInfoCopyPrivateKey) +STUB("eZOp81X98M0", mono_custom_attrs_from_index) +STUB("eZQga6mLjWA", _ZN7WebCore10JSDocument9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "eZfFLyWCkvg", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERy) +STUB( + "eZhhX2D0bNg", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("eZlNO3YnlNE", sceBgftServiceIntDebugPlayGoResume) +STUB("eZpt6dzI9oo", cairo_pattern_destroy) +STUB("eZqcAgGe1ng", sceAudioOut2GetSystemStateEx) +STUB("eZr+VgX7DgM", _ZTVN15AbstractStorage15FacebookStorageE) +STUB("eZu2RP0Ma3w", sceVoiceQoSGetLocalEndpointAttribute) +STUB("ea-aQUt8eaE", _ZN3sce2Np9CppWebApi7Matches2V119ResponseTeamResultsD1Ev) +STUB("ea-rVHyM3es", _Atomic_load_8) +STUB("ea3VaqQ6MAQ", mono_mempool_contains_addr) +STUB("ea8LaHOKFDA", curl_multi_info_read) +STUB("eaC8arDNhF0", __asan_report_store2_noabort) +STUB( + "eaCE2hB0xcU", + _ZN7WebCore14FormController19referencedFilePathsERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16EEE) +STUB("eaFXjfJv3xs", sceImeKeyboardOpen) +STUB("eaFzPrQHCOI", GCC_except_table520) +STUB( + "eaGBoVgAsvI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEneERKS9_) +STUB( + "eaHaEzvYknA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE10setContextEPNS2_10LibContextE) +STUB("eaSD4VTr548", _ZN9Inspector17BackendDispatcher12CallbackBaseD2Ev) +STUB("eaSfA39dQjs", _ZN3JSC22DeferredWatchpointFire21takeWatchpointsToFireEPNS_13WatchpointSetE) +STUB("eaUO-kQF49o", _ZN9Inspector34ApplicationCacheFrontendDispatchernaEmPv) +STUB("eaa94aUrq1I", _ZN7WebCore8SVGNames16markerHeightAttrE) +STUB("eaamV8uP+uo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEEplEm) +STUB( + "eac27nuKYNQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEEC1ERKSA_) +STUB("eaf+MTmpda0", _ZN3sce7Toolkit2NP18JoinSessionRequestC2Ev) +STUB("eaiyhIBmf34", sysc_e00) +STUB( + "eaqoqiFLhg4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEE7get_refEv) +STUB( + "eaqvq4l8kLI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE7popBackEv) +STUB("ear6D9vt1xs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEE7add_refEv) +STUB( + "easTIsfBJh0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEixEm) +STUB("eauQRx0OLok", _ZN3sce2np9JsonValue9GetStringEv) +STUB("eauWvmHc5mI", YGNodeStyleSetDisplay) +STUB("eavBwou4xKI", _ZN3JSC22FullGCActivityCallbackD2Ev) +STUB("eb-gvTYQcoY", sceVideoOutLatencyControlWaitBeforeInput) +STUB("eb-kegzZCNI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12BlockedUsersEED2Ev) +STUB( + "eb4ojyMomV8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("eb9Ae0+MCmk", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEEC1ERKS7_) +STUB("eb9S3zNlV5o", sceFontGetFontMetrics) +STUB("ebDUonz7muc", Java_java_util_zip_ZipFile_read) +STUB("ebFlwESqZcY", bemp2sys_tsfilter_release) +STUB( + "ebGeWmglI3w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("ebIt5wB486o", WKContextGetMediaSessionFocusManager) +STUB("ebKCkHqPRIk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEED2Ev) +STUB("ebKIxTjYwOU", rgctx_fetch_trampoline_rgctx_118_p) +STUB("ebLNKK0+NTY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session7SessionEE3getEv) +STUB("ebNKQitYI5w", rgctx_fetch_trampoline_mrgctx_30) +STUB( + "ebNh4Wy6+Dw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEE3getEv) +STUB("ebPeu+4eyj8", WKCookieManagerStopObservingCookieChanges) +STUB("ebUc7pZI1Cg", _ZN7WebCore27TranslateTransformOperationD1Ev) +STUB( + "ebX6cG2VuyI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEC2EPS6_PNS2_10LibContextE) +STUB("ebYz12wDUNI", _ZN9Inspector21InspectorRuntimeAgentnaEm) +STUB( + "eberoPzE3kw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEaSERKS9_) +STUB("ebhjMWkxs44", _ZNK3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBody11getLocationEv) +STUB("ebixW91gpPw", sceAgcAcbSetFlip) +STUB("ebk64bDQfL0", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12unsetString6Ev) +STUB("ebkdM5S-nNc", + _ZN3sce7Toolkit2NP2V27NpUtils7Request24SetTitleIdForDevelopment28TITLE_SECRET_STRING_MAX_SIZEE) +STUB("ebmFXXx04K4", u_strrchr32) +STUB("ebnG6EV5OcI", sceMbusSetSocialScreenAudioMode) +STUB("ebomQLbpptw", _ZN3sce2np7CalloutD2Ev) +STUB("ebr2574KXS0", delegate_virtual_invoke_17) +STUB("ebroZoKK-LA", _ZN7WebCore8Settings16setScriptEnabledEb) +STUB( + "ebut8n31GxI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("ebvI2g6M6HE", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS7TusDataEE5resetEv) +STUB("ebxz367IKR8", WKPreferencesSetBeaconAPIEnabled) +STUB( + "ec0YLGHS8cw", + _ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE7_GetcatEPPKNSt6locale5facetEPKS5_) +STUB( + "ec46hZwJups", + _ZN7WebCore20PasteboardCustomDataC1EON3WTF6StringEONS1_6VectorINS0_5EntryELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("ec72vt3WEQo", sceSystemServiceChangeCpuClock) +STUB("ec8jeC2LMOc", _ZNSt14_Num_ldbl_base17has_signaling_NaNE) +STUB("ec8z7gJfLVI", unum_parseInt64_67) +STUB("ecALPUFrVv0", sceSaveDataDebugEditDB) +STUB("ecAaFyB65QI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEC1ERS7_) +STUB("ecBAxO8pvf4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session14InvitationDataEE3setEv) +STUB( + "ecIwfPKV7pE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEcvbEv) +STUB("ecIx9RjtU7Q", u_charName_67) +STUB( + "ecJyZ3n+atQ", + _ZN3sce2Np9CppWebApi7Matches2V130ResponseMatchStatisticsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_23ResponseMatchStatisticsEEE) +STUB( + "ecNDhTO31Ag", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUserC1ERS5_) +STUB("ecRGQkmG9V8", Java_com_oracle_bluray_ui_FAAComponentHelper_createHandle) +STUB("ecUtPX+dBYk", sceVdecswDeleteDecoder) +STUB( + "ecWeSMrXmxs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB( + "ecYSaQD4xY8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEEC2ERKSA_) +STUB( + "ecnXENeg1XY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE5eraseENS2_8IteratorIS6_EERS9_) +STUB( + "ecq8OIRbRzA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEneERKS9_) +STUB("ecqBNmgHaDg", __cxx_global_var_init .9) +STUB("ecqOUdMuexk", _ZN7WebCore11DisplayList20DrawTiledScaledImageD1Ev) +STUB("ecs-9oOZarM", il2cpp_class_get_methods) +STUB("ectVJczq1H4", _ZN3sce7Toolkit2NP2V26Friend12Notification15BlocklistUpdateaSERKS5_) +STUB( + "ecvWT4rxg7c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "eczFq-ZaTmc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEEdeEv) +STUB("eczWvr10Ir8", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEEdeEv) +STUB( + "ed-46UZds6c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE8pushBackERKS8_) +STUB("ed0BkTf42Tc", _ZN9Inspector26LayerTreeBackendDispatcherD2Ev) +STUB( + "ed1MD9hgqo0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEdeEv) +STUB( + "ed2dGU7juJY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEEC1ERSA_) +STUB( + "ed9uJ0olp5c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEE11get_deleterEv) +STUB( + "edAi27vgHoY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEE7add_refEv) +STUB("edI9tsxepAI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEEcvbEv) +STUB("edJoqV2FIWs", setsid) +STUB( + "edOjjRsxL1o", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEdeEv) +STUB("edPIOFpEAvU", sceNpTrophyIntCreateHandle) +STUB("edT5HwLDgTI", sceVencStopEncode) +STUB( + "edTfuEv+KL0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "edZTNtnTPxk", + _ZN7WebCore24CoordinatedGraphicsLayer13addChildAboveEON3WTF3RefINS_13GraphicsLayerENS1_13DumbPtrTraitsIS3_EEEEPS3_) +STUB( + "edfhXry+2zQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEC1EPS8_) +STUB("edmDMsPE7Zg", FT_Get_Charmap_Index) +STUB("edmMguP-f2g", sceFsUfsCheckFixedCylinderGroupSize) +STUB( + "edmjG1onTQg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEC1Ev) +STUB( + "edn77-VMt9c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE8copyFromERKS9_) +STUB( + "ednwL-QZXRA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEEC1ERSA_) +STUB( + "edofp7jr2mc", + _ZN3sce7Toolkit2NP2V211SharedMedia9getVideosERKNS3_7Request9GetVideosEPNS2_4Core8ResponseINS3_6VideosEEE) +STUB("edq-Wyu8rws", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification14NewRoomMessageEE3setEv) +STUB( + "edsWZy7TXO0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("ee2ww7pIttw", _ZN7WebCore6Widget4showEv) +STUB("ee77oOlRDYU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEED1Ev) +STUB( + "eeHrf55WFo8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEC1Ev) +STUB("eeIKCtF9zBg", _ZN7WebCore6JSNode13visitChildrenEPN3JSC6JSCellERNS1_11SlotVisitorE) +STUB( + "eeNP3-hfofY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE17getResponseHeaderERSE_) +STUB("eeRsbeGYe20", sceAudioOutSetMorpheusParam) +STUB( + "eeTB8LMHMQU", + _ZN9Inspector14InjectedScript7executeERN3WTF6StringERKS2_ONS0_14ExecuteOptionsERNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISB_EEEERNS1_8OptionalIbEERNSG_IiEE) +STUB("eeTRtHU3YQc", _ZNK3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error14getReferenceIdEv) +STUB("eeYuaLSgz0I", _ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody10setOfferIdEPKc) +STUB( + "eeaRHtqK8iQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEEaSERKSA_) +STUB("eeaW8UsTXwA", sceAppInstUtilAppRequestMoveApps) +STUB("eeeT3NKKQZ0", _ZNSt12placeholders3_13E) +STUB("eeknfm5OR1k", fuse_fs_symlink) +STUB("eelTXuDFOLA", rgctx_fetch_trampoline_rgctx_40) +STUB("eelf17HNGa4", glDeleteSync) +STUB( + "eeosgDXNcEQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("eerf+rbuOvs", _ZTVN7WebCore12ChromeClientE) +STUB( + "eeunw1RiauY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEE11release_refEv) +STUB( + "eexrvjA+KDk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEEcvbEv) +STUB( + "ef+34yiUFuE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("ef+R+qe3fog", Java_java_awt_GnmGraphics_nativeSetXORMode) +STUB("ef1dtBvZOK0", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V15GroupEEC1EPS6_) +STUB("ef6LHi9kFVA", DTLSv1_client_method) +STUB( + "efCMh9TjaQQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEEptEv) +STUB("efCS1Ewnspo", u_snprintf_67) +STUB("efD5N1zaabU", WKContextJavaScriptConfigurationFileEnabled) +STUB( + "efIxxU6DjXo", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities17setnpServiceLabelEi) +STUB("efK6A3Y1O-Q", makeUlpCmdHdrNoFragment) +STUB( + "efO0h-JFBKQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEE7add_refEv) +STUB("efPahl2FufA", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error8fromJsonERKNS_4Json5ValueE) +STUB("efX3lrPwdKA", sceAppContentAddcontMountByEntitlemetId) +STUB("efXnxYFN5oE", _ZNSt11range_errorD0Ev) +STUB("efcwuDLsAM0", _ZThn120_NK7WebCore16HTMLMediaElement5mutedEv) +STUB("efhGArzWdxE", _ZN7bmalloc6IsoTLS15s_didInitializeE) +STUB("efhK-YSUYYQ", localtime) +STUB("efhTWQgDcfs", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanityD2Ev) +STUB("efj96KuOIzY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEC2ERS7_) +STUB( + "efnzHn5aa3Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEC1ERKS7_) +STUB( + "efoAwvn76yk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE10setContextEPNS2_10LibContextE) +STUB("efqHe7wPRbs", sceContentExportCancel) +STUB( + "efqoRyRVdHk", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersaSERS5_) +STUB( + "efuDUhVPPtk", + _ZN3JSC13ConsoleClient32printConsoleMessageWithArgumentsENS_13MessageSourceENS_11MessageTypeENS_12MessageLevelEPNS_9ExecStateEON3WTF3RefIN9Inspector15ScriptArgumentsENS6_13DumbPtrTraitsIS9_EEEE) +STUB("efuMHaAx5-M", _ZN7WebCore32serializationForRenderTreeAsTextERKNS_5ColorE) +STUB( + "efvmUWrwPJA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEEC2ERSA_) +STUB( + "efvyAgm6Slc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEEaSERSA_) +STUB( + "eg-ut95Dm0I", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V122NatConnectivityFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_15NatConnectivityEEE) +STUB("eg2lXvjFIPQ", _ZN7WebCore14StaticNodeListD1Ev) +STUB( + "eg3+Mi9NckY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEaSERKS7_) +STUB( + "eg7C8DiU5uA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("eg8q0n4ZVyw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEC2Ev) +STUB( + "eg91Q-FlCNk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEneERKS9_) +STUB("egAWDZ1myJ4", + _ZSt9use_facetISt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale) +STUB( + "egGzqKKSyFY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEaSERKS8_) +STUB("egOOvrnF6mI", sceNpWebApi2AddHttpRequestHeader) +STUB("egPbre4QGBI", FT_Get_Next_Char) +STUB("egR6OW+1Z0U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEEcvbEv) +STUB("eggC-ROINpQ", + _ZN7WebCore21ContentSecurityPolicyC1EON3WTF3URLEPNS_27ContentSecurityPolicyClientE) +STUB("eghdYRTI3-o", _ItL_qS5) +STUB("egi+cPsL7jc", WKRenderLayerGetElementClassNames) +STUB( + "egm8uuznnW4", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V333CommunicationRestrictionStatusApi44ParameterToGetCommunicationRestrictionStatusD1Ev) +STUB("ego1YdqNGpI", sceHmdInternalCheckDeviceModelMk3) +STUB( + "egtTwhwEPns", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEE21intrusive_ptr_add_refEPS7_) +STUB( + "eh+GwD5nrO8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEED1Ev) +STUB("eh1qV7hTFHc", _ZN7WebCore15SQLiteStatement8bindBlobEiPKvi) +STUB("eh2hLMp3zDU", sceVencMapMemory) +STUB( + "eh3QhCh-4wc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE10setContextEPNS2_10LibContextE) +STUB("eh6iiCWPIeQ", _ZN7WebCore9HTMLNames15aria_hiddenAttrE) +STUB("ehE5hAoBJAI", _Z16attachIpcChanneliPKciiPi) +STUB( + "ehHKy3pra1c", + _ZN3sce2Np9CppWebApi14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyD2Ev) +STUB("ehHTSpqwKBk", _ZN7WebCore21DiagnosticLoggingKeys33memoryUsageToDiagnosticLoggingKeyEm) +STUB( + "ehLaiqtqZhI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEE7get_refEv) +STUB( + "ehMuSPAqlVQ", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUser10initializeEPNS1_6Common10LibContextEPKcSA_) +STUB("ehN1Biw3tw8", _ZNK3sce4Json6Object4findERKNS0_6StringE) +STUB( + "ehNQ8iKQY9I", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEEC2ERKSC_) +STUB( + "ehQ1wJmmGW0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEEcvbEv) +STUB( + "ehSkX9YVTIA", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB( + "ehVvfidp-y8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEeqERKS9_) +STUB( + "ehWIR8BCGuU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEE11get_deleterEv) +STUB("ehXUKUtch8M", glTexParameterfv) +STUB("ehbtGbhH+q4", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEEcvbEv) +STUB( + "ehhooxUKFJ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEC1Ev) +STUB("ehj5HixBT3k", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V110Reputation11unsetGlobalEv) +STUB("ehmCBZYH-cM", WKBundlePagePostSynchronousMessageForTesting) +STUB( + "ehrGJlHbRDA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEEC1EPS8_PNS2_10LibContextE) +STUB("ehurrv5zJzI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEEC1Ev) +STUB("ehy3YMvxYew", __b2d_D2A) +STUB( + "ehz+2Hv8M0M", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEixEm) +STUB("ei3EzpSOWSE", mono_aot_System_Runtimejit_code_end) +STUB("ei7p-kKZI4s", _ZNK7WebCore24MatrixTransformOperation10isIdentityEv) +STUB("ei92h4vDiPU", _ZThn24_N9Inspector28InspectorScriptProfilerAgentD0Ev) +STUB("eiCvT8FHB4U", _Z27sceMatReleaseFlexibleMemoryPKvm) +STUB("eiGYmizCpkk", + _ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBodyD1Ev) +STUB( + "eiITnL8lW8s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEED2Ev) +STUB( + "eiIbSQUlC0A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEEptEv) +STUB("eiKRfR4eDnE", _ZN3JSC7Symbols25isRegExpObjectPrivateNameE) +STUB("eiR-c3WYWAE", _ZN3WTF10StringImpl17createFromLiteralEPKcj) +STUB( + "eiSTXgIgPbQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("eiSnft8ZgzI", mono_aot_System_Web_Servicesplt) +STUB( + "eiWoUXnutss", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEED1Ev) +STUB("eiXyTZVcD0s", _ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse12getLanguagesEv) +STUB("eiY-Hguw1Nc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEE7get_refEv) +STUB( + "eidJpWrBCQM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEmmEi) +STUB("eie0LcC7DL8", _ZN3JSC7Symbols21isCallablePrivateNameE) +STUB("eij7UzkUqK8", sceHttp2GetCookieStats) +STUB( + "eijrl7Hn8K4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEaSERKS9_) +STUB("eioBaGW46xA", _ZN7WebCore21PageOverlayController32copyAccessibilityAttributesNamesEb) +STUB("eiqMCt9UshI", sceNpCreateAsyncRequest) +STUB("eiuobaF-hK4", sceRtcFormatRFC2822) +STUB("eix5X+imyS0", + _ZN3sce2Np9CppWebApi14IdentityMapper2V333PsnWebError_error_missingElements7setNameEPKc) +STUB( + "eiz7R0ON9aQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEED1Ev) +STUB("ej+3-9tMj9U", _ZN3JSC7Symbols14hasPrivateNameE) +STUB("ej+44l1PjjY", _ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1ERKSt8_Locinfom) +STUB( + "ej+SeuT8TIE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEptEv) +STUB("ej0xGPHrclM", _ZNK7WebCore15StyleProperties11mutableCopyEv) +STUB("ej15SuQM8yQ", + _ZN7WebCore17HistoryController36saveScrollPositionAndViewStateToItemEPNS_11HistoryItemE) +STUB("ej69qwrs0So", _ZN4Manx8X509nameD2Ev) +STUB("ej7DGZDhuAk", sceKernelSetGameDirectMemoryLimit) +STUB("ej7wlPeKlro", _ZN7WebCore27PlatformMediaSessionManager31setShouldDeactivateAudioSessionEb) +STUB("ej9lV7VhqBw", WKWebsiteDataStoreConfigurationSetPerOriginStorageQuota) +STUB("ejBz8a8TCWU", _ZNSt9_Num_base6digitsE) +STUB("ejCIaFbLe70", mono_aot_Sce_PlayStation_Jsonunbox_trampoline_addresses) +STUB("ejHFfD6i3Is", _ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamRankResultD1Ev) +STUB( + "ejJpRC+dM+o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE21intrusive_ptr_sub_refEPS9_) +STUB("ejLjAkmwuMc", _ZN3WTF13printInternalERNS_11PrintStreamEa) +STUB("ejR+ID5CF7I", _ZN12video_parser5vpcom3rtc21ConvertDateTimeToTickEPKNS1_8DateTimeEPm) +STUB( + "ejW-CtLe+sA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEED1Ev) +STUB("ejW3kZyq550", _ZNK7WebCore20SharedBufferDataView4dataEv) +STUB( + "ejWHu5VB9tg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "ejXTxbnRqzc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEixEm) +STUB("ejal1Vu2Fwk", _ZN3sce7Toolkit2NP15AppSTLAllocatorItE10deallocateEPtm) +STUB("ejekcaNQNq0", sceKernelGettimeofday) +STUB("ejn3-bugjjM", _ZN3sce2Np9CppWebApi6Common8IteratorINS2_17ParameterBaseImpl6KeySetEEppEv) +STUB("ejnQI-coDXA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEdeEv) +STUB( + "ejr9S9osRKw", + _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container16setContentRatingERKNS1_6Common12IntrusivePtrINS3_13ContentRatingEEE) +STUB("ejwa0hWWhDs", sceNetConfigGetIfaddr) +STUB( + "ejyZg6hEE3U", + _ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId17getnpServiceLabelEv) +STUB("ejzUyLHgMug", sceVnaSetEnableAssistantSettings) +STUB( + "ek-4ZTCKfqE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "ek0mxrOcro4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEEaSERKS9_) +STUB("ek3kHDpFMdg", _ZNK7WebCore20TransformationMatrix8mapPointERKNS_10FloatPointE) +STUB( + "ek8Wge6Yhx0", + _ZN3sce2Np9CppWebApi14SessionManager2V139RequestPlayerSessionMemberPlayerFactory7destroyEPNS3_32RequestPlayerSessionMemberPlayerE) +STUB("ek8kMgN0wuI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariableC1ERS5_) +STUB("ekA8yRYwFk8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE7popBackEv) +STUB("ekAnE9DyM7Y", _ZN3WTF13StringBuilder12appendNumberEl) +STUB("ekGJmmoc8j4", sceNgs2GetWaveformFrameInfo) +STUB("ekH4iiEHxXs", ucol_getStrength_59) +STUB( + "ekIn5OHYIUY", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V133BandwidthDownstreamMetricsFactory6createEPNS1_6Common10LibContextEiiiPNS5_12IntrusivePtrINS3_26BandwidthDownstreamMetricsEEE) +STUB( + "ekN6tmiGpR8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE8copyFromERKS9_) +STUB("ekNvsT22rsY", sceAudioOutOpen) +STUB("ekXHb1kDBl0", sceErrorDialogClose) +STUB( + "ekZEev-Gpwg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEeqERKS9_) +STUB( + "ekZGtAsTvtg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE3endEv) +STUB( + "ekaV2Ykre7o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEED2Ev) +STUB( + "ekaryoT6h3g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "ekcM6hrKTro", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEneERKS9_) +STUB("ekdhK-W0tHo", sceBgftServiceIntDownloadResumeTaskAll) +STUB( + "ekgP4WN5JQA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEEC1ERSA_) +STUB( + "ekjm3eTvlNQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEEptEv) +STUB( + "eknnMFCW4-8", + _ZN3sce2Np9CppWebApi14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBody13setSpectatorsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_27RequestGameSessionSpectatorEEEEE) +STUB( + "ekovUOjOFcw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEEptEv) +STUB("ekprvLYhneo", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEEC2EPNS2_10LibContextE) +STUB( + "ekues8vVeXU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEED1Ev) +STUB("ekwMB-Ftq18", sceVideoOutSysCursorIsUpdatePending) +STUB("ekxUEjhuk3Q", u_strncasecmp) +STUB( + "ekyxLBd2mOE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEeqERKS9_) +STUB("el+79GyoLVo", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V15GroupEEC2Ev) +STUB("el+Ibm-ZeSM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEE3getEv) +STUB( + "el+bRrNSo+Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEC2Ev) +STUB("el-GlhDBtNc", _ZNK3sce2Np9CppWebApi14SessionManager2V118LeaderWithOnlineId11getOnlineIdEv) +STUB( + "el0b6i3zWnU", + _ZN3sce2Np9CppWebApi14SessionManager2V132PlayerSessionNonPsnPlayerFactory7destroyEPNS3_25PlayerSessionNonPsnPlayerE) +STUB( + "el1VjMzYmdk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEEC2ERKSA_) +STUB( + "el2VQZjPsB4", + _ZNK7WebCore21NetworkStorageSession18shouldBlockCookiesERKN3WTF3URLES4_NS1_8OptionalINS1_16ObjectIdentifierINS_19FrameIdentifierTypeEEEEENS5_INS6_INS_18PageIdentifierTypeEEEEENS_35ShouldRelaxThirdPartyCookieBlockingE) +STUB( + "el6lTE8cpc0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEE11release_refEv) +STUB( + "el7-LPgNQW8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "el7o-13Ufos", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEC2Ev) +STUB("el9stmu6290", pthread_set_user_context_np) +STUB( + "elC4MJekIfY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEE7add_refEv) +STUB("elHSje-7b9o", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE5beginEv) +STUB( + "elJRfWkDV7I", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEmmEv) +STUB( + "elNntRAbNQc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB( + "elO1nS+0Gno", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEEaSERKSA_) +STUB("elW8cmDqX+w", _ZNK7WebCore11HistoryItem14scrollPositionEv) +STUB("elWQ9vERF-Q", sceVideoOutDeletePreVblankStartEvent) +STUB( + "elY1QSYx2eU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEEaSERKS9_) +STUB("elcxZTEfHZM", sceVoiceGetPortAttr) +STUB( + "elf70QxsuY0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEEneERKS7_) +STUB( + "eliZ6mMy6zs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "eljk5YvEqHo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE21intrusive_ptr_add_refEPS9_) +STUB("ellQsBGbd7w", processUlpNtfCommonNotification) +STUB( + "elnmIv+ot2w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE5clearEv) +STUB( + "elqEZDbomN8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("elqbBHwC2uw", _ZN3sce7Toolkit2NP2V28Commerce7Request22GetServiceEntitlementsC2Ev) +STUB("elwwrEhJTrI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEE11release_refEv) +STUB( + "em+OiNKBmXM", + _ZN7WebCore18JSHTMLInputElementC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_16HTMLInputElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "em-bg+dEIGw", + _ZNK7WebCore11FontCascade8drawTextERNS_15GraphicsContextERKNS_7TextRunERKNS_10FloatPointEjN3WTF8OptionalIjEENS0_24CustomFontNotReadyActionE) +STUB("em09hN8SLWc", _ZN7WebCore8SVGNames14feMergeNodeTagE) +STUB( + "em1+GzMqhek", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_34DetailedProductInfoListInputParams9ProductIdEE7addressERKS4_) +STUB("em1os75YZXQ", _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponseD2Ev) +STUB("em7auKyZp8s", _ZN9Inspector26TimelineFrontendDispatcher26programmaticCaptureStartedEv) +STUB( + "em9jtCZAcjU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("emBVW+1scJE", d2i_RSAPublicKey_bio) +STUB("emD8FbF5skg", _ZNK7WebCore18TextureMapperLayer4sizeEv) +STUB("emGrjWcFUpg", _ZN3WTF10TextStreamlsERKNS_6StringE) +STUB("emH+QDRmhwY", _ZN3sce7Toolkit2NP2V210Tournament12GenericEventC2Ev) +STUB( + "emHUyjGtCvQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEED2Ev) +STUB("emI-mvU1vNs", _ZN7WebCore21DiagnosticLoggingKeys40foregroundCPUUsageToDiagnosticLoggingKeyEd) +STUB("emK8tReVZe0", _ZNK7WebCore14FrameSelection15selectionBoundsEb) +STUB("emNFM7uLdKI", mono_aot_System_ServiceModel_Internalsunbox_trampolines) +STUB( + "emNO-U3Kq1I", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeaders24setXPsnAtomicOperationIdERKNS1_6Common6StringE) +STUB("emNQgrM1-M8", sceOpusSilkEncEncodeFloatWithPriorityAndTimeout) +STUB("emP3ckeS2uo", sceAgcDriverRegisterGdsResource) +STUB("emSpWE2Ps5k", _ZN3WTF9MediaTimenwEm10NotNullTagPv) +STUB( + "emWr1xxiyYs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEC1Ev) +STUB("emZBXv7cuAI", sceCamera2GetCalibrationData) +STUB( + "emZWc1YOyHU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEmmEv) +STUB("emayD9LHYsc", sceVideoOutSetGamutMetadata_) +STUB("emcHF9855Uw", _ZN7WebCore8Document24scheduleFullStyleRebuildEv) +STUB( + "emffL3+vN-A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEC2Ev) +STUB("emfrItA6E3w", _ZNK7WebCore11XPathResult11numberValueEv) +STUB("emkk2SAITGI", _ZN3sce7Toolkit2NP2V210Tournament7Request12SearchEvents17MAX_NUM_EVENT_IDSE) +STUB("emklx7RK-LY", sceRazorCpuShutdownDataTags) +STUB("emnRy3TNxFk", _ZTSPKf) +STUB("emsigErZ-S8", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_20NpSessionInformationEE3getEv) +STUB( + "emu8qyUoRic", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEdeEv) +STUB( + "emyIpo5GebM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEC2ERKS7_) +STUB("emySnZSCXWs", _ZN7WebCore9GLContextD2Ev) +STUB("emynctYBeqM", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEEmmEi) +STUB("en-bO+Rpvnw", mono_aot_ReactNative_Modules_Vshunwind_info) +STUB( + "en-fNOcBIUM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEC1EPNS2_10LibContextE) +STUB("en4CbuiM7nc", _ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEEC2Ev) +STUB( + "en4Pwm60tKQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEC1EPS8_) +STUB( + "en5OPAbvUvM", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB( + "en7e3-9dMQw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEE3getEv) +STUB("en7gNVnh878", sceSaveDataDialogIsReadyToDisplay) +STUB("en9n+Rp+VVI", _ZN7WebCore10RenderView7hitTestERKNS_14HitTestRequestERNS_13HitTestResultE) +STUB( + "enCkQCpHeFg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEEC1ERKS9_) +STUB( + "enFkR1Lg8EY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEC2ERKS7_) +STUB("enJGqCsUsBg", WKPreferencesSetLoadsImagesAutomatically) +STUB("enKUAms1L14", _ZN7WebCore4Page20stopAllMediaPlaybackEv) +STUB( + "enMVUlgODBY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE6resizeEj) +STUB("enNqaTyfMEc", mono_class_vtable) +STUB( + "enT6eIoxHms", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE4sizeEv) +STUB( + "enVaS3BI3yo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEC2ERS7_) +STUB( + "enWXzJo9BlY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE3endEv) +STUB("enYThyH5FVA", _ZN3sce7Toolkit2NP2V29Messaging7Request17SendInGameMessageD1Ev) +STUB("enZm-6GjWqw", sceAmprCommandBufferWriteAddressFromCounterPair_04_00) +STUB( + "enbKBIg5Tsc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEC1Ev) +STUB("endsrNzL+l0", ucnv_io_stripASCIIForCompare) +STUB("ene22AlqeVE", JVM_ConstantPoolGetDoubleAt) +STUB( + "enfz55x5WDQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "enhwyMja3eg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEdeEv) +STUB("enk2-X2re5s", _ZN7WebCore23TextureMapperFPSCounterC2Ev) +STUB( + "enlFir8GGIc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("enlrll0ySJI", ztrans_getDynamicClassID_67) +STUB("enme4qUd30c", flush_lock) +STUB("enqPGLfmVNU", strtok_r) +STUB("entYnoIu+fc", _ZNKSt7collateIwE4hashEPKwS2_) +STUB( + "enuMll33T24", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEptEv) +STUB("eo-us51pXos", il2cpp_field_set_value) +STUB( + "eoGf9zf0G+4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEC1EPS8_) +STUB("eoNH37bA5Hw", _ZN3NTF17URLRequestDataJobC2Ev) +STUB("eoUJa9cJC-g", _ZN4Manx8ImeEventC2ENS0_12ImeEventTypeEPKci) +STUB("eoUoCaaDpCA", _ZNK7WebCore15HTMLLinkElement11crossOriginEv) +STUB("eoW60zcLT8Q", _ZNKSt7codecvtIDic9_MbstatetE6do_outERS0_PKDiS4_RS4_PcS6_RS6_) +STUB( + "eoXvN1JcZ+M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEED2Ev) +STUB("eobeQczTTFA", g_realloc) +STUB("eoht7mQOCmo", scePthreadGetspecific) +STUB("eokEwsWT7zI", _ZN7WebCore16HTMLMediaElement22setMediaCacheDirectoryERKN3WTF6StringE) +STUB("eooVhsKvHZ0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEE7add_refEv) +STUB("eoq2l4goJKs", _ZN8meta_gen12JpegPromoter16ProcessImageDataEv) +STUB( + "eoxV2FM47L0", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB( + "ep2RUcWfpFc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEED1Ev) +STUB( + "ep3azgZK3pU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB( + "ep4jllwrg-Q", + _ZN7WebCore9FrameView13paintContentsERNS_15GraphicsContextERKNS_7IntRectENS_6Widget25SecurityOriginPaintPolicyEPNS_18EventRegionContextE) +STUB("ep62GVUAPso", _ZN9Inspector26InspectorBackendDispatcherD2Ev) +STUB( + "ep6YR58UDKw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEmmEi) +STUB( + "ep7mIgh2JW8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEED2Ev) +STUB("epArcyQZejU", _ZNK3sce2Np9CppWebApi7Matches2V113RemovedPlayer11getPlayerIdEv) +STUB( + "epFWfSQXpuU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("epHXFSnMhgo", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIlEppEi) +STUB("epJ6x2LV0kU", _ZNK3sce4Json5Value9getStringEv) +STUB( + "epL4v7C3x2E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEED2Ev) +STUB("epLzR2+diVQ", WKBackForwardListItemCopyTitle) +STUB("epOoacB68yE", WKWebsitePoliciesGetTypeID) +STUB("epS6UX1mzZg", sceBackupRestoreUtilGetBackupParam) +STUB( + "epX5wXEpA7Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEEcvbEv) +STUB( + "epakBDLE7VU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("epbO46Swoq8", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku18getPlusUpsellPriceEv) +STUB( + "epev98K73XI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("epg9ezKePIg", _ZN3sce2Np9CppWebApi6Common13ParameterBase18unSetRequestHeaderEPKc) +STUB( + "ephSUsGFQx8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEmmEv) +STUB( + "eplqt6mH-9o", + _ZN9Inspector20CSSBackendDispatcher13getStyleSheetElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("epudbF-GqdU", getSocketByProtocolNumber) +STUB( + "epwr+cBCIFs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEdeEv) +STUB("epzp7wxd+yE", _ZN3JSC12JSLockHolderC1EPNS_2VME) +STUB( + "eq-GN7aatnM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEneERKS9_) +STUB("eq269bJ0m+I", _ZN3sce7Toolkit2NP2V28Matching12Notification14NewRoomMessageC2Ev) +STUB("eq5f5hq4ksg", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE3endEv) +STUB("eqGCaeizvWM", FT_Stroker_New) +STUB( + "eqKOWgUtvKc", + _ZN3sce2Np9CppWebApi14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBody8fromJsonERKNS_4Json5ValueE) +STUB( + "eqLb5Epxh-0", + _ZZSt9MakefacetISt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEESt8_LocinfoERT_T0_E3buf) +STUB("eqPirDXKjCM", _ZN6WebKit12ChildProcess21removeMessageReceiverEN3IPC15StringReferenceEm) +STUB("eqQAqiTqJSk", _ZN7WebCore17WebGLStateTrackerC1EON3WTF8FunctionIFvbEEE) +STUB("eqV5UNS09NM", _ZN3JSC26setCannotUseOSRExitFuzzingEPNS_9ExecStateE) +STUB( + "eqdfw4pvpPc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "eqiCitt-ybk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEptEv) +STUB("eqkWxQ6MHEI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12RangeOfRanksEE5resetEv) +STUB( + "eqltPx098Os", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEaSERKS7_) +STUB("eqpr6i37N7Q", + _ZN7WebCore21JSCSSStyleDeclaration14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB("eqqTGKb9ge4", _ZNK7WebCore22SkewTransformOperationeqERKNS_18TransformOperationE) +STUB("eqzL08DLEU8", _ZN12video_parser10cVideoPath11GetDirLevelEv) +STUB( + "er-oSjz4h-c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEE21intrusive_ptr_sub_refEPS7_) +STUB("er5N7ff289E", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V511ContentTypeEEdeEv) +STUB("er6KKExFGgc", _ZN9Inspector25BrowserFrontendDispatcherdaEPv) +STUB("er6TkQFUvp0", sceFiosFHOpen) +STUB( + "erApMSlKiBM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEEC2EPS8_PNS2_10LibContextE) +STUB("erCWQR5eKiQ", sceAudioOut2SpeakerArrayDestroy) +STUB("erFojjTDA8Q", + _ZN3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate11setPlatformERKNS3_8PlatformE) +STUB( + "erGPCF25QJI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEC2ERKS7_) +STUB("erGq9S6Kf9g", mono_aot_Sce_Vsh_PsnMessageUtilplt) +STUB( + "erN6gRcZaTQ", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemPropertiesD2Ev) +STUB("erOKEa+5bh8", uset_addAll_59) +STUB("erRN7JcQKRU", mono_shared_internal_hash_table_destroy) +STUB( + "eriWeAfd-f8", + _ZN7WebCore19JSHTMLSelectElement6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_17HTMLSelectElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "ermYF4u5JgE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "eruduJ0KrT0", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer13isInitializedEv) +STUB("ervJKFBtvfQ", + Java_com_sony_bdjstack_org_bluray_storage_BindingunitDataAreaInfo_getTotalBuSize) +STUB( + "erwgspl4qRY", + _ZN3sce2Np9CppWebApi14SessionManager2V130ResponsePlayerSessionSpectatorC2EPNS1_6Common10LibContextE) +STUB("erxK6j2uncY", _ZN7WebCore16VisibleSelectionC2Ev) +STUB("eryhfloELYU", Java_java_lang_Runtime_availableProcessors) +STUB("es-hzEqlzr0", WKBundleInitialize) +STUB("es22a5w83e4", _ZN3JSC10initializeEv) +STUB( + "es3F1MJA4tY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEE7get_refEv) +STUB("es6OiIxGiL0", sceNpManagerIntGetIssuerId) +STUB( + "es8iL1TsP-4", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("es9m4K9TZK0", _ZN3sce2Np9CppWebApi12Leaderboards2V15Entry8fromJsonERKNS_4Json5ValueE) +STUB( + "esDwTFqGdfA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEEdeEv) +STUB("esFduqt5XdM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEEdeEv) +STUB( + "esGXOkggIpI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEixEm) +STUB( + "esLdo+7Ayo4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE21intrusive_ptr_add_refEPS7_) +STUB( + "esXC9QOEknM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEppEi) +STUB( + "esYabucdqaI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE8pushBackERKS8_) +STUB("esiElBSUOl8", GCC_except_table531) +STUB("esiO4He2WTU", _ZN3sce2np10EventQueueC2EP16SceNpAllocatorEx) +STUB( + "esvGaHARFnw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEEC2ERKS9_) +STUB("eszLdtIMfQE", sceNetConfigRoutingStart) +STUB( + "et+Ko+hi6O4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEaSERKS7_) +STUB("et05S+nkWG8", _ZN3sce2np18HttpConnectionPool13InvalidateAllEv) +STUB( + "et6HW337J+M", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeaders9unsetETagEv) +STUB( + "et9jyaOWxH8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE8copyFromERKSA_) +STUB("etB2ZIZN7zQ", mono_btls_x509_get_public_key) +STUB("etBYEprfg+c", _ZNK7WebCore11MediaPlayer27sourceApplicationIdentifierEv) +STUB("etCoOZocw4c", _ZN3sce7Toolkit2NP2V27Session14InvitationData5resetEv) +STUB("etGMXWQ5J2s", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V115CompetitionTypeEEppEv) +STUB("etHgBXWnWn8", sqlite3_bind_double) +STUB("etK79qkWJCc", WKPreferencesGetShouldConvertPositionStyleOnCopy) +STUB("etMUeqIhN+w", _ZN3sce2np12StreamWriter15WriteFilledDataEPNS0_6HandleEcl) +STUB("etUyb461vrA", mono_aot_Sce_Vsh_GameListRetrieverWrapperplt) +STUB("etZ84Rf3Urw", sceNpManagerIntGetUserNum) +STUB("etZLnoayRdo", _ZNK7WebCore14ScrollableArea21mouseEnteredScrollbarEPNS_9ScrollbarE) +STUB( + "etZfUJRJqW0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEEcvbEv) +STUB("etaQhgPHDRY", scePadSetLightBarBlinking) +STUB("etccDVR9oQc", + _ZN7WebCore26provideDeviceOrientationToERNS_4PageERNS_23DeviceOrientationClientE) +STUB( + "etjmoY-8JJk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("etlasL21ePw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEC1Ev) +STUB("etoxn3scbN0", _Z38sceGpuDebuggerSetEnabledExceptionsMaskPN3sce3Gnm16LsStageRegistersEj) +STUB("ets6WuJA59Q", mono_aot_System_IO_Compressionjit_code_end) +STUB( + "etxz6pcQQ+A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEC1Ev) +STUB( + "eu0j+42u4XI", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearch8setlimitEi) +STUB("eu1y5qb4tHo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEppEv) +STUB( + "eu3WBBxzdp0", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot13setaccountIdsEPKc) +STUB("euE6Yo5hkrY", _ZN3sce2np9NpTitleId5BuildERKS1_Pcm) +STUB("euE6r665FlA", _ZN7CoreIPC10Connection4openEv) +STUB("euF7D2ixCBA", _ZN3sce7Toolkit2NP2V210Tournament7Request19SendTeamMatchReportC1Ev) +STUB("euJ98YIIE8w", scePthreadMutexattrGetgen) +STUB("euKRgm0Vn2M", pthread_attr_setschedparam) +STUB( + "euLmHvrjwDk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE8capacityEv) +STUB("euMge4JnntM", _ZN3sce7Toolkit2NP2V24Core5EmptyC2Ev) +STUB( + "euODZGYmdEE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("euQ2PLd-LNQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead19getJoinableUserTypeEv) +STUB( + "euUqqUisUM8", + _ZN3sce2Np9CppWebApi11UserProfile2V132GetBasicPresencesResponseFactory7destroyEPNS3_25GetBasicPresencesResponseE) +STUB("eubni8DxPwI", _ZN4Manx14NetworkProfile13initProxyInfoEv) +STUB("euiDHLModvU", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE8capacityEv) +STUB("eul2MC3gaYs", _Ctype) +STUB( + "eutEaXDRG5Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEC1EPS8_) +STUB("ev03MjDlbBI", _ZN7WebCore9HTMLNames11summaryAttrE) +STUB("ev5VTgiRycU", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEED1Ev) +STUB( + "ev6WTQFsFJM", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_8Timeline10InstrumentEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB( + "ev6gs1qj0QU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEaSERKS7_) +STUB("ev77AviWYu8", _ZN3sce2np10MemoryFileC2EP16SceNpAllocatorEx) +STUB("evMBBmDb9Kg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEEC1EPNS2_10LibContextE) +STUB("evOComLiuD4", _ZN9Inspector14InspectorAgentD2Ev) +STUB("evQPB2JiOTo", _ZN3sce7Toolkit2NP2V23TUS7Request12GetVariablesC1Ev) +STUB( + "evQZslLk9SE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEC1Ev) +STUB( + "evQpOl8Ovx0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE5clearEv) +STUB("evj9YPkS8s4", sceUltQueueDataResourcePoolGetWorkAreaSize) +STUB("evjOsE18yuI", sceImeFilterText) +STUB("evjs3fJSaWw", _ZN3sce2Np9CppWebApi13InGameCatalog2V55Error8fromJsonERKNS_4Json5ValueE) +STUB("evqHA+pYo+c", sceDebugGetUltRwlockInfo) +STUB("evz0-93ucJc", sceNpHeapShowStat) +STUB( + "evzQ4cA3lFU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEEaSERSA_) +STUB( + "ew2XIxqOUrU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEaSERKS7_) +STUB("ew647HuKi2Y", scePadSetAutoPowerOffCount) +STUB("ew8ebxoQMLo", _ZNK9Inspector22RemoteAutomationTarget8isPairedEv) +STUB("ewA+kAOTOAI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking10UsersRanksEE3setEv) +STUB("ewBC-T131kk", sceDevUsbTerm) +STUB( + "ewC19GiKi3I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEmmEv) +STUB( + "ewCp2CSNRDo", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities12ErrorFactory6createEPNS1_6Common10LibContextEiPKcPNS6_12IntrusivePtrINS4_5ErrorEEE) +STUB("ewE3P6Jh1n4", _ZN7WebCore18isValidContentTypeERKN3WTF6StringENS_4ModeE) +STUB("ewFsW9+nJ1A", mono_aot_Sce_Vsh_UsbStorageSceneunbox_trampoline_addresses) +STUB("ewHOLkb0gAo", _ZN12Mp4Retriever8FinalizeEv) +STUB("ewJgJea-W5Y", _ZN3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayerD2Ev) +STUB( + "ewLD6Ew4Blc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("ewN9DUWH07g", sceFsUfsMkfsForExternalHDD) +STUB("ewOZn58W2uk", rgctx_fetch_trampoline_mrgctx_104_p) +STUB( + "ewQSp8Ujr5g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEE11release_refEv) +STUB( + "ewVjK5wumrI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("ewVs8vi6g-M", mono_aot_System_Net_Httpunwind_info) +STUB("ewYXDWlaPVc", mono_aot_ReactNative_Modules_Vsh_Gct_Telemetryplt) +STUB("ewYyfU0X-QM", _ZN3sce2Np9CppWebApi7Matches2V119ResponseTeamResults10unsetScoreEv) +STUB("ewZNP1Jwrx8", _ZN3WTF8JSONImpl5Value12escapeStringERNS_13StringBuilderENS_10StringViewE) +STUB( + "ewaox0fh9DA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUser19unsetnpServiceLabelEv) +STUB( + "ewdspwX6B68", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEC2Ev) +STUB("eweskBljBqI", unorm2_normalizeSecondAndAppend) +STUB("ewoQz18c+5I", _ZN3sce7Toolkit2NP2V23TUS14DataContentionD2Ev) +STUB("ewobAQeMo5k", sceAgcAcbAcquireMemGetSize) +STUB("ewpJla+Xdkk", _ZN9Inspector22RemoteAutomationTargetD0Ev) +STUB( + "ewqkMbnczi4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEE7add_refEv) +STUB( + "ews3u8G9CBo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEEptEv) +STUB( + "ewvr9jUslyA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEC1Ev) +STUB( + "ewwTafBGvfA", + _ZNK3sce2Np9CppWebApi14SessionManager2V136GetFriendsPlayerSessionsResponseBody6toJsonERNS_4Json5ValueEb) +STUB("ewz64ZwYx3g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEC1Ev) +STUB("ex-8kA3X5ZQ", _ZN7WebCore17LibWebRTCProviderD2Ev) +STUB( + "ex7AXTCxdL4", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditions12getaccountIdEv) +STUB("exAxkyVLt0s", sceFontDestroyRenderer) +STUB("exBBzCP5+xk", _ZN3sce7Toolkit2NP2V27Session7Request6Create16HIGHEST_PRIORITYE) +STUB("exDiYq9Q1GM", FT_ClassicKern_Free) +STUB("exHtP0yFfCI", _ZNK7WebCore13HTTPHeaderMap3getERKN3WTF6StringE) +STUB("exNzzCAQuWM", _Thrd_yield) +STUB( + "exZ9OnNNC6Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEixEm) +STUB("exZt85cnx08", _ZN4IPMI4impl10ClientImpl12tryGetResultEjjPiPNS_10BufferInfoEj) +STUB("exbTfwbxzuU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEmmEi) +STUB("exe4x3tB-Qk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersaSERS5_) +STUB("exfFuBnmNzE", Java_com_sony_bdjstack_system_BDJModule_postKeyEvent) +STUB( + "exiM58he34M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "exkGQSIrF+U", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayerC1Ev) +STUB("exkh5YVuwLo", _ZN9Inspector18InjectedScriptHostD1Ev) +STUB("exxKr58F43o", + _ZN15AbstractStorage14TwitterContent6RenameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB( + "exz389L1u38", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEEaSERKSA_) +STUB( + "ey0Myfg1ZnQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE6isBusyEv) +STUB( + "ey1VNRLyboY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEE5resetEPS9_) +STUB("ey4ejaqVqfA", _ZNK7WebCore14StyleSheetList6lengthEv) +STUB("ey5hOr8ltt4", _ZNK10Deprecated11ScriptValue10hasNoValueEv) +STUB("ey7m-hHRtu4", mono_thread_exit) +STUB( + "ey95aA+b9EM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB("ey9N5U-C0hw", glBlendColor) +STUB("eyB4oc96HwI", scePlayReadyCdmiDestroyMediaKeySession) +STUB("eyBB0eDGq5Y", _ZN3WTF24AutomaticThreadConditionC1Ev) +STUB( + "eyBlgGSy8zg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE5abortEv) +STUB("eyHghziTDcw", _ZN7WebCore23createDragImageForRangeERNS_5FrameERNS_5RangeEb) +STUB("eyLJTFGp1aA", mono_aot_Sce_Vsh_SessionInvitationjit_code_start) +STUB("eyLe8nTZRNU", _ZN3JSC7Symbols29allocateUint8ArrayPrivateNameE) +STUB("eyLyLJrdEOU", sceNetClearDnsCache) +STUB( + "eyNsJ1+XPoI", + _ZN3sce7Toolkit2NP2V212ActivityFeed11getWhoLikedERKNS3_7Request11GetWhoLikedEPNS2_4Core8ResponseINS3_13UsersWhoLikedEEE) +STUB("eyPajExpoOc", sceFsLvdWaitResumed) +STUB("eyRVkq9IjDc", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_22ConsumeChallengeResultEEC2Ev) +STUB("eyX8rcJ6wu8", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_26EventInformationListDetailEED2Ev) +STUB("eyZRktPjUaQ", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIfEmmEv) +STUB("eycvhCMgpfk", JVM_GetStackTraceElement) +STUB("eyczRhn1VpI", _ZN7WebCore23ScaleTransformOperationD1Ev) +STUB( + "eyemBGWFDPQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEED2Ev) +STUB( + "eyfOloblly0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEcvbEv) +STUB( + "eygUELKT0Cc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("eyiQGHPBIKI", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectIdC1Ev) +STUB( + "eym-lc8pzUI", + _ZN3sce2Np9CppWebApi14SessionManager2V125GameSessionForReadFactory7destroyEPNS3_18GameSessionForReadE) +STUB( + "eyoEHpGBSdY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEEC1ERSA_) +STUB("eyu21jyPEx4", _ZN7WebCore30plainTextReplacingNoBreakSpaceEPKNS_5RangeEtb) +STUB( + "ez-CPOTv4q8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEC2ERS7_) +STUB("ez2aUegdWWY", EC_KEY_set_public_key) +STUB("ez41Pm9N0QM", mono_get_method_constrained) +STUB( + "ez8KLVoGZx0", + _ZN7WebCore13StyledElement22setInlineStylePropertyENS_13CSSPropertyIDEdNS_17CSSPrimitiveValue8UnitTypeEb) +STUB("ezAh2UH+pyE", _ZN7bmalloc15IsoHeapImplBase16addToAllIsoHeapsEv) +STUB("ezBb0MkkscE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEEeqERKS7_) +STUB( + "ezD9nNgzuAg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEC2EPKS8_) +STUB("ezFSbCdCU9o", + _ZN7WebCore28convertToIntegerEnforceRangeIhEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB("ezJnmv7hkAg", + _ZN3sce2np12HttpTemplate19SetAuthInfoCallbackEPFii15SceHttpAuthTypePKcPcS5_iPPhPmPiPvESA_) +STUB("ezM2OhNxzck", sceAjmBatchJobInitialize) +STUB("ezTggyZ6StQ", _ZN7WebCore21SerializedScriptValue6createEN3WTF10StringViewE) +STUB("ezUp1zHpnkc", _ZN3JSC7JSScope6toThisEPNS_6JSCellEPNS_9ExecStateENS_8ECMAModeE) +STUB("ezWkRVywo7Y", Java_java_net_PlainSocketImpl_socketShutdown) +STUB("eza1GwGMALY", + _ZN3sce7Toolkit2NP2V212EventsClient11EventInGame31MAX_EVENT_IN_GAME_BOOT_ARGUMENTE) +STUB("ezaYencgnIE", _ZN7WebCore5Range12setEndBeforeERNS_4NodeE) +STUB("ezeFkHDV4K8", SHA256_Update) +STUB( + "ezhng9-mZtY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEppEv) +STUB( + "ezidRyf+hwU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEEC2ERKS9_) +STUB("ezuSd2pLtno", uloc_getISO3Country) +STUB("ezuirSOFGDo", + _ZN9Inspector19InspectorAuditAgent29willDestroyFrontendAndBackendENS_16DisconnectReasonE) +STUB("ezv-RSBNKqI", pread) +STUB("ezzkCWLzmI0", _ZN3sce3Xml13AttributeList9terminateEv) +STUB( + "f+00KPkkmWE", + _ZN7WebCore21JSCSSStyleDeclaration15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB("f+1ANVWFAfY", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_16SessionAttributeEEC1ERKS4_) +STUB("f+1EaDVL5C4", _ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2Em) +STUB( + "f+1oxdO7xqU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEE3getEv) +STUB("f+79V4V+sLE", _ZN3WTF12randomNumberEv) +STUB( + "f+9jm3IuuhU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEEC2ERKS9_) +STUB( + "f+FFTy64sWI", + _ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error9setErrorsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_24PsnWebError_error_errorsEEEEE) +STUB("f+Fcf3sML94", u_strFromWCS_67) +STUB("f+HdRtISAvw", sceApplicationGetCoredumpDirAndFileName) +STUB( + "f+J50jd6woI", + _ZNK7WebCore21ContentSecurityPolicy30upgradeInsecureRequestIfNeededERNS_15ResourceRequestENS0_19InsecureRequestTypeE) +STUB("f+OTc4UWuGU", + _ZN7WebCore9CSSParser16parseDeclarationERNS_22MutableStylePropertiesERKN3WTF6StringE) +STUB("f+PdlGreIA0", mono_install_assembly_refonly_preload_hook) +STUB( + "f+S4BReS66Y", + _ZN7CoreIPC18MessageReceiverMap19dispatchSyncMessageEPNS_10ConnectionERNS_14MessageDecoderERN3WTF6OwnPtrINS_14MessageEncoderEEE) +STUB("f+SLvBCIGJM", _ZNK7WebCore20ResourceResponseBase4dateEv) +STUB( + "f+TyFCKjTh0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEED1Ev) +STUB("f+WgWFQQlAk", _ZNK7WebCore9FrameView21maximumScrollPositionEv) +STUB( + "f+XHDdSaXJQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEdeEv) +STUB( + "f+ho5TltViE", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEEiRNS2_10LibContextEPT_m) +STUB( + "f+p-lAQaFDo", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC1ERKS8_) +STUB( + "f+qCH0dYja4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEC2EPS8_) +STUB("f+r1NszlolE", WKPreferencesGetJavaScriptEnabled) +STUB("f-+LZA1oeSw", initcloc) +STUB( + "f--Wf3Qf-u0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEmmEi) +STUB("f-3GxXeQ5c0", uidna_labelToUnicodeUTF8_67) +STUB( + "f-9w7Sa1LzQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEE3getEv) +STUB("f-FTAb5fwbg", _ZN12video_parser10VpCeilLog2Ej) +STUB("f-ISKcgtZuw", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V115NatConnectivity8fromJsonERKNS_4Json5ValueE) +STUB("f-L+s6uxNAA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEC1Ev) +STUB("f-N1rbHDqqM", _ZN3sce2Np9CppWebApi12Leaderboards2V122GetRankingResponseBody12unsetEntriesEv) +STUB("f-Q8Nd33FBc", sceLncUtilInitialize) +STUB("f-WtMqIKo20", sceSystemServiceActivateHevcSoft) +STUB("f-ch6EGylTI", _ZN9Inspector14InjectedScript15clearEventValueEv) +STUB( + "f-g8r+2A0RM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE8capacityEv) +STUB( + "f-oj+Yb47R8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("f-pgaNSd1zc", sceNpWebApiClearUnusedConnection) +STUB("f-pkkoFA9cE", + _ZN3sce2Np9CppWebApi14SessionManager2V112NonPsnLeaderC2EPNS1_6Common10LibContextE) +STUB("f-qy0soAkfA", sceRegMgrBackupPullData) +STUB( + "f-ssShWqQnM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEppEv) +STUB("f-uv8XXYYkY", _ZN3JSC7JSArray11fillArgListEPNS_9ExecStateERNS_20MarkedArgumentBufferE) +STUB( + "f-ux4VMX7Jk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEEC2ERKSA_) +STUB("f-vSeWHQsW4", WKPageSetTextZoomFactor) +STUB("f011LrwMk8E", _ZN3sce7Toolkit2NP2V210Tournament15RegisteredTeamsD1Ev) +STUB("f06wGEmo5Pk", _ZNSt14_Num_ldbl_base12has_infinityE) +STUB("f09KvIPy-QY", getdirentries) +STUB("f0BUVmHz2CE", sceClNetTerm) +STUB("f0DqjWri+Rs", _ZNK7WebCore22EmptyFrameLoaderClient7frameIDEv) +STUB( + "f0F9ft8Qk+0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEC1Ev) +STUB( + "f0FnQ0fqdO4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE5beginEv) +STUB( + "f0GV9zbaSgc", + _ZN7WebCore12EventHandler14scrollOverflowENS_15ScrollDirectionENS_17ScrollGranularityEPNS_4NodeE) +STUB("f0K+bPzvmVo", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V110UpdateModeEEC1Ev) +STUB( + "f0KKMH538dw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEeqERKS9_) +STUB("f0LIQinm+9E", sceDataTransferTargetEventIsIPv6Ready) +STUB("f0MBRCQeOEg", SSL_retrieveServerNameList) +STUB( + "f0OwRZxEV2Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEC1EPS8_) +STUB( + "f0S9XWW4j8w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEC1EPKS6_) +STUB("f0X68Ail+co", _ZN7WebCore16TrackPrivateBasenwEm) +STUB( + "f0a751gkuJ4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEC1Ev) +STUB("f0boz4mowL0", _ZN7WebCore11DisplayList9ClearRectC1ERKNS_9FloatRectE) +STUB("f0dCms2EnqU", unum_setDoubleAttribute_67) +STUB( + "f0dnSqUNGpY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEC2EPKS6_) +STUB("f0fyxdSxcP4", _ZN3sce7Toolkit2NP2V27Session12Notification18InvitationReceived8deepCopyERKS5_) +STUB("f0jfSTRFcwM", _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponseD1Ev) +STUB("f0jwVLVSTy0", _ZN3WTF11Persistence7Decoder6decodeERf) +STUB( + "f0k3bwSfuJ0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEC1Ev) +STUB("f0uoqUwlUG4", + _ZN7WebCore21InspectorFrontendHost28addSelfToGlobalObjectInWorldERNS_15DOMWrapperWorldE) +STUB("f0wOzpfsKwU", udat_open_67) +STUB( + "f10cMfXPReQ", + _ZN3sce2Np9CppWebApi14SessionManager2V148GetUsersAccountIdGameSessionsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_29JoinedGameSessionWithPlatformEEEEEPNS9_INS3_41GetUsersAccountIdGameSessionsResponseBodyEEE) +STUB("f12ObAMEi9A", sceAmprCommandBufferPushMarkerWithColor) +STUB("f1CLT4QGcSU", sceVshAvcapClose) +STUB("f1HAS+flwvE", _ZNK7WebCore11MediaPlayer18minFastReverseRateEv) +STUB("f1I6Y18jKbk", _ZN7WebCore11DisplayList8DrawRectC1ERKNS_9FloatRectEf) +STUB( + "f1N6fiSvgus", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("f1Oa4y5IVIo", utext_openCharacterIterator_67) +STUB("f1OwQ7jdqn0", sceNpAppInfoIntCheckAvailabilityAllA) +STUB( + "f1Pcyzqz18Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEEC1ERKSA_) +STUB("f1ZGLUnQGgo", _ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2Em) +STUB("f1n0xTYdfGQ", _LMBCSData17_67) +STUB("f1ncwa-JXlA", _ZN3sce2np12StreamReader7ReadAllEPNS0_6HandleEPvmPm) +STUB("f1saCd4HzCU", WKPreferencesGetIncrementalRenderingSuppressionTimeout) +STUB("f1v-VmWS5ys", _ZN3WTF11Persistence7DecoderrsERNS_8OptionalIhEE) +STUB("f1yvZF1sH6U", _ZN3sce2Np9CppWebApi14SessionManager2V113PlayerSessionD2Ev) +STUB("f1zwJ3jAI2k", _Unwind_Resume) +STUB( + "f2+eS7D7IQ8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEeqERKS9_) +STUB( + "f2-eLN5HTa0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEE11release_refEv) +STUB( + "f20GPlUxNpc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEC2Ev) +STUB("f21DEbadT98", sceSysUtilSendSystemNotification2) +STUB("f22czPppTCQ", sceImeBackendAllDeleteConvertString) +STUB( + "f23ucbon5zU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEneERKS9_) +STUB( + "f2Cxgs6bVbg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEC2ERKS8_) +STUB( + "f2DLe7CDV+U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE8capacityEv) +STUB("f2K8i7KU20k", _ZNK3sce2np4User12GetAccountIdEPm) +STUB( + "f2OmNBGuemI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEE3getEv) +STUB("f2Pe4LGS2II", sceNpTssGetSmallStorageAsync) +STUB( + "f2V-tZFl5-0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEC1Ev) +STUB("f2Y6L6Kcn8g", ucase_fold_67) +STUB("f2YbMj0gBf8", erfcl) +STUB("f2bcpK6kJfg", sceMoveReadStateRecent) +STUB("f2hz+NhGpbw", WKBundleScriptWorldCreateWorld) +STUB("f2jyE0mDY5k", sceNpSessionServiceSendPlayerSessionInvitations) +STUB("f2llHFJjqhI", uidna_labelToASCII_UTF8_67) +STUB("f2pwgWSKi+Y", _ZN3sce7Toolkit2NP2V210Tournament15RegisteredUsersD1Ev) +STUB( + "f3-OA+PR31E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("f33OrruQYbM", sceRazorIsLoaded) +STUB("f343ouevuf8", Java_com_sony_gemstack_io_factories_ps_PSAttributes_n_1setAttributes) +STUB("f34UkEjoHeA", _ZNSt15basic_streambufIcSt11char_traitsIcEE9underflowEv) +STUB( + "f34WqS4x+t0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEEdeEv) +STUB("f34qn7XA3QE", sceSystemServiceLaunchWebApp) +STUB("f3BT6YR9vY0", _ZNK3sce2np14JsonObjectImpl15fieldSetDestroyEPNS1_8FieldSetE) +STUB("f3CTWnYQYwY", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V16StatusEEdeEv) +STUB("f3CpiiwbKas", _ZNK7WebCore29DeprecatedCSSOMPrimitiveValue13primitiveTypeEv) +STUB("f3ES4GDx5-Q", + _ZN3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator15getPushContextsEv) +STUB("f3Ie-HOytV8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEE5resetEPS6_) +STUB("f3NfGChYjEs", _ZN9Inspector22ContentSearchUtilities19searchInTextByLinesERKN3WTF6StringES4_bb) +STUB("f3S7UzMOqpc", sceMbusDebugCheckProcessResume) +STUB( + "f3U0T5UN+xk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "f3Y5zOufPtI", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayer11getplayerIdEv) +STUB( + "f3b4sCdevp0", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB("f3dg2CSgRKY", sceAgcCreateShader) +STUB("f3f3wNgbQjI", rgctx_fetch_trampoline_mrgctx_98_p) +STUB("f3gWGaFeX0Y", JVM_GetClassLoader) +STUB( + "f3gm16TpP+8", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeaders7destroyEPS5_) +STUB("f3k1FP3GhrM", EVP_DigestInit) +STUB("f3kPeoTZnIE", sceHmd2Open) +STUB( + "f3lToD6tvcI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEC1EPS7_PFvS9_EPNS2_10LibContextE) +STUB("f3n1RDSWbjE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEC2ERS7_) +STUB( + "f3nGNa20Z+w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEppEv) +STUB( + "f3osweYtXYY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEplEm) +STUB("f3rFzo5wykg", WKPreferencesGetMediaControlsScaleWithPageZoom) +STUB( + "f3uAvTjs55U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEC2ERKS7_) +STUB("f3w+k7lAQKg", sceDseehxExtInit) +STUB( + "f3xk393PdjU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEneERKS9_) +STUB( + "f3xlB-dwTms", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE3endEv) +STUB( + "f4+NSTGTZTQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("f41T4clGlzY", _Xp_invx) +STUB("f42K37mm5RM", sceHttpsEnableOption) +STUB("f43sZaou0Ts", _ZN7WebCore9HTMLNames12itemtypeAttrE) +STUB("f44zEW6IiNU", + _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container29getContentInteractiveElementsEv) +STUB( + "f492Zxg0008", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToSendGameSessionMessageD1Ev) +STUB("f4A+i2Tlrmk", _ZN3WTF15FilePrintStreamD1Ev) +STUB( + "f4FjQRPmXV8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEE7add_refEv) +STUB("f4Onl7efPEY", sceFontWritingRefersRenderStepCharacter) +STUB("f4P0h1xfWaM", _ZN3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayerD1Ev) +STUB( + "f4QGZfHcNvc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEEC2Ev) +STUB( + "f4USxEcwDDY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("f4VeCjTa2hA", WKPreferencesSetXSSAuditorEnabled) +STUB("f4Y+BVScAcc", _ZN3WTF4SHA1C1Ev) +STUB("f4YaEMy1xoQ", g_hash_table_foreach) +STUB( + "f4aBvgQQrnk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEC1Ev) +STUB("f4aTpX9UhD0", sceAgcSdmaCopyWindowGen2) +STUB("f4aVFKmjrfo", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors6toJsonERNS_4Json5ValueEb) +STUB( + "f4bEtpUVimc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEED2Ev) +STUB("f4eEnzXZCuk", _ZN7WebCore10TreeWalker14setCurrentNodeERNS_4NodeE) +STUB( + "f4gEI1xHQvE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE3endEv) +STUB("f4kwHYoEfww", _ZNK3sce2Np9CppWebApi6Common6VectorIdE8capacityEv) +STUB("f4oDTxAJCHE", sceSystemServiceGetAppIdOfBigApp) +STUB("f4x1+G7t6eY", u_totitle) +STUB("f4xQcsvggtA", _ZN7WebCore7IntRect5uniteERKS0_) +STUB("f55+g6jqf4k", uprv_decNumberPlus_67) +STUB( + "f57sCfw1Bbg", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC1ERKS7_) +STUB("f5AwQMSkutQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE5eraseENS2_8IteratorIS6_EERS9_) +STUB("f5B2kxRIerw", _ZNK7WebCore5Range12comparePointERNS_4NodeEj) +STUB("f5BjEtSShgw", _ZN7WebCore12NodeIteratorD2Ev) +STUB("f5DDIXCTxww", sceUserServiceSetGlsBroadcastersCommentColor) +STUB( + "f5Dl1OQppW0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEEdeEv) +STUB( + "f5FzXiCBpps", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEaSERS7_) +STUB("f5I6kXMasiA", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container12versionIsSetEv) +STUB("f5L6ax7EWHk", _ZN3sce2np12WorkerThreadD0Ev) +STUB("f5QQLp9rzGk", sceGnmDrawIndirectMulti) +STUB( + "f5S9qU7qlDk", + _ZN3sce7Toolkit2NP2V210Tournament19getRegisteredRosterERKNS3_7Request19GetRegisteredRosterEPNS2_4Core8ResponseINS3_16RegisteredRosterEEE) +STUB("f5VGINGUjjY", DbRecoveryRecoverDb) +STUB("f5YCzbrygis", _ZN3sce7Toolkit2NP2V210Tournament20OneVsOneMatchDetailsC1ERKS4_) +STUB("f5Z7FIeoHdw", sceShellCoreUtilGetAppLaunchedParamString) +STUB("f5ZmuEVbDpo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEEC2Ev) +STUB("f5Zum3vudFM", NpStateManagerUnregisterCallback) +STUB("f5lAVp0sFNo", sceUserServiceGetGlsIsFacebookEnabled) +STUB("f5n4XaIUVNw", JVM_GetClassSignature) +STUB("f5ne6F-Tx3k", udatpg_replaceFieldTypesWithOptions_67) +STUB( + "f5o1PGAAP3k", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "f5pQSqafhy0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEEC1Ev) +STUB("f5rZenZ8GT0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE8copyFromERKS7_) +STUB( + "f5skfynCmbQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEdeEv) +STUB("f5unyVgtmMo", _ZN7WebCore11DisplayList22BeginTransparencyLayerD1Ev) +STUB( + "f5vuYrI9M6c", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("f5vyv9+9ddc", ucol_getEquivalentReorderCodes_67) +STUB( + "f5wo5BHv-l4", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody35getComparedLastUpdatedUserAccountIdEv) +STUB("f5y9sv5r5hs", WKNotificationGetSecurityOrigin) +STUB("f5zmgYKSpIY", _ZTSt) +STUB("f66Sc+7YIUg", _ZN3sce2np8JsonNullC2EP14SceNpAllocator) +STUB( + "f680lmtdC2k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEEC2ERSA_) +STUB("f68vfrl33DU", _ZN3sce3pss4core9PsmObjectC1Ev) +STUB( + "f69FYKsbeMI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEC1Ev) +STUB( + "f6B-ZXBijlA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE21intrusive_ptr_sub_refEPS9_) +STUB("f6EQsnV4i8E", sceMusicCoreServerSetTrack) +STUB( + "f6H5kFXuoks", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEppEv) +STUB("f6IUA95JW20", sceDataTransferTargetEventIsPwrReqReady) +STUB("f6Lr-fvn0Ww", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable11unsetSlotIdEv) +STUB( + "f6OEVCQGMOk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEE7add_refEv) +STUB( + "f6TkGVUR71o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEC2EPNS2_10LibContextE) +STUB("f6UEsqGDGYg", _ZN3sce2Np9CppWebApi15Personalization2V15Error7setCodeERKi) +STUB("f6V-yFcoW9s", _ZN7WebCore17CredentialStorage3setERKN3WTF6StringERKNS_10CredentialERKNS_3URLE) +STUB("f6Vepu1P3gQ", __tsan_external_assign_tag) +STUB( + "f6WA87NGWbw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEC1Ev) +STUB( + "f6X9yx8+znQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEEptEv) +STUB( + "f6XNm8360cI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "f6aESaaZAVs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEC1EPKS8_) +STUB("f6hCBlMb-6Q", sceNpManagerIntBind) +STUB( + "f6hEve91g4w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEED1Ev) +STUB("f6nvFYiK3pA", coil_set_homedir) +STUB("f6pcc3Oq-aA", mono_shared_hashtable_destroy) +STUB("f6rmYAKtsMk", + _ZNK3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer14getCustomData1Ev) +STUB("f6t+ogcvwYQ", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEEC2ERS6_) +STUB( + "f6yE4ZpMXNY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEC2EPS8_) +STUB("f6zTPEsjY5I", mono_debug_set_debug_format) +STUB("f6zbafRlX3s", sceApplicationNotifyVshMainOnStandby) +STUB("f7-5WlpEqp8", sqlite3_reset) +STUB("f77qlxIbqu0", sceKernelVirtualQueryAll) +STUB("f79Y3ZlfBQk", psl_is_cookie_domain_acceptable) +STUB( + "f79oNlligMk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEC1EPKS8_) +STUB("f7G97dWnEis", sceVrTracker2LocateCoordinateSystem) +STUB("f7KBOafysXo", sceKernelGetModuleInfoFromAddr) +STUB("f7TGF1E-ZVE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEE7get_refEv) +STUB("f7VSHQHB6Ys", sceUserServiceSetTopMenuLimitItem) +STUB( + "f7Vfp2Le1sQ", + _ZN3sce2Np9CppWebApi14SessionManager2V125LeaderWithOnlineIdFactory6createEPNS1_6Common10LibContextERKmRK13SceNpOnlineIdPKcPNS5_12IntrusivePtrINS3_18LeaderWithOnlineIdEEE) +STUB("f7aBx5Yh-XA", + _ZN3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferReadC2EPNS1_6Common10LibContextE) +STUB("f7bEpmyxkiA", _ZNK7WebCore16HTMLMediaElement20webkitPreservesPitchEv) +STUB("f7bWbfWnclc", _ZNK7WebCore6Cursor14platformCursorEv) +STUB("f7ezG6DbaIM", + _ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer17unsetPushContextsEv) +STUB("f7gicCxz8mw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEE5resetEPS5_) +STUB("f7jU3m0Nfbc", OCSP_CERTID_free) +STUB("f7kWxmEFWB4", ucol_setStrength_67) +STUB("f7lbTTaMDlI", mono_btls_ssl_use_certificate) +STUB("f7mQZbOSSjY", _ZN8meta_gen11MsvPromoter10isViewableEv) +STUB("f7uOxY9mM1U", __stack_chk_guard) +STUB("f8+4s7hHlCo", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTicketsC1Ev) +STUB("f85orjx7qts", sceGnmRequestMipStatsReportAndReset) +STUB("f8AgDv-1X8A", sceVideodecReset) +STUB( + "f8HhJCMtC8Q", + _ZN9Inspector23CanvasBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("f8JR4X5iRQM", _ZN7WebCore9HTMLNames9eventAttrE) +STUB( + "f8KDsN6i+H4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEptEv) +STUB("f8L-LqsJwhw", + _ZN3JSC8JSObject22fillGetterPropertySlotERNS_2VMERNS_12PropertySlotEPNS_6JSCellEji) +STUB("f8NjlGw6TgQ", sceNpEulaDialogTerminate) +STUB("f8Nys8MLF8w", _ZN7WebCore25errorDomainWebKitInternalE) +STUB("f8Qt7rzeBxQ", Java_com_sony_bdjstack_javax_media_controls_SoundManager_setGainLevel) +STUB( + "f8Xt8UXzs0A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "f8bWjU5wnI4", + _ZN7WebCore19JSDOMMatrixReadOnly9serializeERN3JSC9ExecStateERS0_RNS_17JSDOMGlobalObjectERNS1_10ThrowScopeE) +STUB( + "f8bjkadBqIs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEeqERKS9_) +STUB("f8eZvJ8hV6o", sceSystemServiceShowEyeToEyeDistanceSetting) +STUB("f8f0+hYyOb0", glBindVertexArray) +STUB("f8fShBflha0", YGDimensionToString) +STUB( + "f8gsd-op0Ko", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE21intrusive_ptr_add_refEPS9_) +STUB("f8hMxb0OffE", mono_btls_ssl_ctx_get_ctx) +STUB("f8xkLb7ZJ+E", Java_java_awt_GnmGraphicsDevice_updateScreenDimensions) +STUB( + "f9-6V5i7rSU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("f9CJLAWQg+A", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEEC2EPNS2_10LibContextE) +STUB( + "f9Dq6t0xaps", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEEcvbEv) +STUB("f9EyCidFUEo", Java_com_sony_gemstack_org_dvb_application_AppProxyImpl_n_1pause) +STUB( + "f9IGaUVU-2I", + _ZN3sce2Np9CppWebApi14SessionManager2V141PostGameSessionsSearchResponseBodyFactory7destroyEPNS3_34PostGameSessionsSearchResponseBodyE) +STUB("f9M1CeP8R58", + _ZN15AbstractStorage18DailymotionContent11SetMetadataEPN23sceMetadataReaderWriter8MetadataE) +STUB( + "f9NA9qUfo7w", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEcvbEv) +STUB("f9PtPGCVxAk", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEEC2Ev) +STUB( + "f9R4Pv58xrA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "f9TBxenxh28", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEEcvbEv) +STUB("f9Ti5qv46fo", ScePsmMonoThreadSetMaxThreads) +STUB("f9X0imA90fI", sceCompositorHandleProcessEvents) +STUB("f9apGLdzpLU", _ZN2sh14ShaderVariableaSERKS0_) +STUB( + "f9iZE1NA6VQ", + _ZN3sce2Np9CppWebApi14SessionManager2V131GameSessionMemberForReadFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_24GameSessionMemberForReadEEE) +STUB( + "f9jTmCiIUVA", + _ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi10getFriendsEiRKNS4_21ParameterToGetFriendsERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_18GetFriendsResponseEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB( + "f9nS7qgcVcQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEppEi) +STUB("f9xif4l1ZhU", JSObjectCallAsConstructor) +STUB( + "f9yKvvilry4", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUserD1Ev) +STUB( + "f9yOqKwVEwI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEEptEv) +STUB("f9zESdURKNw", ucsdet_enableInputFilter_67) +STUB( + "fA+hPV9rkHo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEixEm) +STUB( + "fA+wCRvUA5Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEEcvbEv) +STUB( + "fA6p0-YsDhw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEC2EPS8_) +STUB("fABWnQjbdHg", mono_custom_attrs_from_assembly) +STUB( + "fADVevEi+us", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEE7add_refEv) +STUB("fAG-kjDm-io", sceAppInstUtilGetTitleIdFromPkg) +STUB("fAGY6E0eqBo", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku10unsetPriceEv) +STUB("fAIbZgFxkAw", _ZN7WebCore12ISOWebVTTCue11boxTypeNameEv) +STUB("fANJTSP-ncA", sceDeci4hDrfpReaddir_fuse_fullpath) +STUB("fAR256xs6hM", GCC_except_table118) +STUB( + "fATRZfmOTo4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEppEv) +STUB("fAUVEGJFEBk", _ZNSt15basic_streambufIcSt11char_traitsIcEE5_LockEv) +STUB("fAWof4n+aJk", _ZN3sce3Xml3Dom8NodeListC1ERKS2_) +STUB( + "fAZnsPU5WDE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEEC1Ev) +STUB( + "fAbLhwQt0bU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEE5resetEPS9_) +STUB( + "fAccoqDjJ14", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEaSERKS7_) +STUB("fAfi5-11dKg", scePerfPmcStart) +STUB("fAlyOhCNriY", + _ZN7WebCore10JSLocation17preventExtensionsEPN3JSC8JSObjectEPNS1_14JSGlobalObjectE) +STUB( + "fAmfsOhcxnc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEptEv) +STUB("fAnox5k5Jfs", sceDevUsbResume) +STUB("fAnukVXma0I", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V18SortModeEEC1Ev) +STUB( + "fArxktkhjBw", + _ZN3sce2Np9CppWebApi11Matchmaking2V125PlayerForOfferReadFactory7destroyEPNS3_18PlayerForOfferReadE) +STUB( + "fAx9X8mBkYI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEC2Ev) +STUB( + "fAxCjJi-8fE", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersC1Ev) +STUB( + "fAyPewBLLSQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEC2EPS6_PNS2_10LibContextE) +STUB("fB-vHMDjApc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEmmEi) +STUB("fB20kfX+6s0", _ZNK7WebCore11FrameLoader7frameIDEv) +STUB("fB4+YDTIlsQ", _ZN7WebCore4Page13setPaginationERKNS_10PaginationE) +STUB("fB5QNRZlpQo", _ZN3sce7Toolkit2NP2V24Core8ResponseINS3_5EmptyEE3setEv) +STUB( + "fB5a8bWhFxM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEppEi) +STUB("fB5hE65pzbU", sceNpUtilGetShareTitleCheck) +STUB( + "fB9XLM1KACE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEED2Ev) +STUB("fBAOyg5CjPk", _ZN7WebCore11DisplayList16DrawLinesForTextD1Ev) +STUB("fBB5AsqdLM0", _ZN3sce13CanvasTexture14createRGBA8888Eii) +STUB("fBBK-B4APJs", _ZN7WebCore7Element28setUnsignedIntegralAttributeERKNS_13QualifiedNameEj) +STUB("fBG1gHx1RlI", pthread_setconcurrency) +STUB( + "fBLhxslVp+Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE10setContextEPNS2_10LibContextE) +STUB( + "fBO8FXsst2E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEED1Ev) +STUB( + "fBQO2SdqISc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEaSERKS9_) +STUB( + "fBQPa2xn3IE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB("fBU1WjLvJKA", ubrk_current_67) +STUB("fBVtigUQ-qk", _ZNK7WebCore20ResourceResponseBase17suggestedFilenameEv) +STUB( + "fBdbTsF9Av4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEptEv) +STUB( + "fBgZOvUGQQQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEEC2ERKS9_) +STUB("fBhl01ZwcGc", + _ZN7WebCore22EmptyFrameLoaderClient13startDownloadERKNS_15ResourceRequestERKN3WTF6StringE) +STUB("fBi3BwL5LgY", _ZN3sce7Toolkit2NP2V28Matching7Request14SendInvitationD2Ev) +STUB("fBjY1lY7sbs", sceShellCoreUtilIsIDUState) +STUB("fBne7gcou0s", posix_spawnattr_setschedpolicy) +STUB("fBpDwBKAO3s", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStatsD1Ev) +STUB( + "fBs1G5R7FdE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE6resizeEj) +STUB("fBsE3fBWXco", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEdeEv) +STUB("fBuukeGZ2FE", sceShellCoreUtilAcquireSharePlayCpuBudget) +STUB("fBvKumTzlPU", _ZN3sce7Toolkit2NP19GetTitleFeedRequestC1Ev) +STUB("fBwOJESErMA", mono_init_from_assembly) +STUB( + "fBzaSTcQdug", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEixEm) +STUB( + "fC+H78P4yqI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "fC4CQe2IoRg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE5emptyEv) +STUB("fC4DuKNXJJM", mono_threadpool_set_max_threads) +STUB( + "fC4S6q0535Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEC1EPKS8_) +STUB( + "fC57kTcgkXY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEEC1Ev) +STUB("fC6nIsQxEak", mono_aot_Sce_PlayStation_Orbis_Speechjit_code_end) +STUB("fCBpPJbELDk", sceUserServiceGetFileBrowserSortContent) +STUB("fCKmg2fp1G4", ubidi_isInverse_67) +STUB( + "fCRxMsn6aEQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEE7get_refEv) +STUB( + "fCTlLNZyo-U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEED2Ev) +STUB("fCYZ8Ta2DJc", sceDeci4hDrfpGetMsgBuf) +STUB("fCa7-ihdRdc", sceNetShowRoute6) +STUB("fCdaM2pKOpo", _ZN3sce2np18HttpConnectionPool13GetConnectionERKNS0_12HttpTemplateEPKcPi) +STUB("fCeSFo0IM-w", sceShellCoreUtilPostLaunchConfirmResult) +STUB( + "fCeao2bjIvg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEEaSERS8_) +STUB("fCgYVQ0kKZE", _ZN3sce7Toolkit2NP9Utilities6FutureI13SceNpOnlineIdED1Ev) +STUB("fClnlkZmA6k", sceNpCalloutStartOnCtx) +STUB( + "fCm8jvMmt24", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors29validationConstraintInfoIsSetEv) +STUB( + "fCvpkN4xd2Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("fD1RuR3+DdE", sceAppInstUtilAppRecoverApp) +STUB( + "fD4VMQJT2U8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("fD55Cu2eyrc", mono_aot_Sce_Vsh_FileSelectorAdvanceunbox_trampolines) +STUB("fD5rqhEXKYQ", sceFontWritingInit) +STUB("fDEn1hyPYjc", sceDeci4hDrfpRead) +STUB( + "fDGBctAeU24", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("fDGYYXcby1w", sceUlpMgrSendData) +STUB("fDGygWr4um8", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getSecondaryVideoDisplay) +STUB( + "fDHUZODb0oE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE3endEv) +STUB("fDL61vS8k7E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE5beginEv) +STUB("fDLJPnPkjh0", _ZN3JSC16ScriptExecutable6s_infoE) +STUB( + "fDNUDwk8g6o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEC1Ev) +STUB("fDNhBmmwSNs", cairo_pattern_set_matrix) +STUB("fDP+C0zOptM", __sceAudioInVmicDetach) +STUB("fDPDfnw6Z1g", sceCesRefersUcsProfileCp874) +STUB("fDQgAVpUfGI", mono_btls_x509_store_get_count) +STUB("fDSQzivDRQs", _ZN7WebCore15SQLiteStatement8bindTextEiRKN3WTF6StringE) +STUB("fDVhIjUAXWU", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15CategoryInfoSubEED2Ev) +STUB( + "fDXnjvuq340", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10setString7EPKc) +STUB( + "fDa7BHFplSI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEEcvbEv) +STUB( + "fDal-8hvCEE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEEptEv) +STUB("fDex2lyDL+I", + _ZNK3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead9fromIsSetEv) +STUB("fDkwGrQqqYY", scePlayReadyCdmiDecryptOpaque) +STUB("fDloUZ5AEJ4", _ZNK3sce2Np9CppWebApi11Matchmaking2V19Submitter6toJsonERNS_4Json5ValueEb) +STUB("fDn9wEUj7Jw", _ZNK3sce2Np9CppWebApi6Common6VectorIfE5beginEv) +STUB("fDoniu1dSEU", _ZN3sce7Toolkit2NP2V24Core7Request11MemoryPools20NET_MEM_MINIMUM_SIZEE) +STUB( + "fDtpzAlJM2U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEmmEi) +STUB("fDvTiWJhcGs", _ZN3sce7Toolkit2NP2V27Session14InvitationData8deepCopyERKS4_) +STUB( + "fDwgkJU-dtM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEppEv) +STUB("fDwiCA2DWSk", _ZN23sceMetadataReaderWriter10initializeEv) +STUB( + "fDxWomDYOCY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEE21intrusive_ptr_add_refEPS7_) +STUB("fDyOfruBW6I", __asan_address_is_poisoned) +STUB("fE-UQfy62Jk", WKBundlePageSetPageLoaderClient) +STUB("fE0f-EOIImg", sceCesRefersUcsProfileCp850) +STUB( + "fE7qzLJ5EUY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEEptEv) +STUB( + "fE7t0Cfb8BM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEEdeEv) +STUB("fEA+m+o7Msk", _ZN7WebCore8SVGNames11metadataTagE) +STUB("fEC20q42qRw", _ZN7WebCore10Pasteboard28typesForLegacyUnsafeBindingsEv) +STUB("fECamTJKpsM", scePlayGoDialogInitialize) +STUB( + "fEDaduFg5DQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEEaSERKSA_) +STUB( + "fEEnS+VdsLI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEC1Ev) +STUB("fEIG2SWc6gU", _ZN3WTF6StringC2EPKcj) +STUB("fEJSNmRXkvg", + _ZN7bmalloc29StaticPerProcessStorageTraitsINS_13HeapConstantsEE7Storage8s_memoryE) +STUB( + "fEKqRLdUN6I", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeaders6createEPNS1_6Common10LibContextERNS6_12IntrusivePtrIS5_EEl) +STUB( + "fEMvQNmKGIg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEdeEv) +STUB("fEONtft4z0Q", _ZN7WebCore9HTMLNames13attachmentTagE) +STUB("fEPEwROdCwM", sceVideoOutCursorDisable) +STUB("fEQNUy2Y0-Y", _ZN3NTF15DNSPrefetchImplC2Ev) +STUB("fEQcEYs1yuU", sceCompositorSetRepeatCommand) +STUB( + "fETRIap5Lx4", + _ZN3sce2Np9CppWebApi7Matches2V112ErrorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5ErrorEEE) +STUB( + "fEWprrJAobI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEeqERKS9_) +STUB( + "fEaz9y9dnOg", + _ZN3sce2Np9CppWebApi7Matches2V122RequestPlayerStatistic8setStatsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_19AdditionalStatisticEEEEE) +STUB( + "fEcRCweGP8g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("fEcrs9UPPyo", sceNpXmlParse) +STUB( + "fEepRJYzKPM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEEC1Ev) +STUB("fEf8gfAEuHo", mono_signature_explicit_this) +STUB("fEl7vm4p-tI", _ZN7WebCore26UserTypingGestureIndicator28focusedElementAtGestureStartEv) +STUB("fElyBSn-l24", sceNpStrToInt32) +STUB("fEoW6BJsPt4", sceLibcMspaceMallocUsableSize) +STUB( + "fEolm-6DTVw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEEcvbEv) +STUB("fErljUC2tDQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEixEm) +STUB("fEvjAmW+Ius", _ZN3sce3Xml10SimpleDataC1Ev) +STUB( + "fEwvpBbd4Hw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEE7get_refEv) +STUB( + "fEx7+E0w-cA", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_18GameCustomDataItemENS1_15AppSTLAllocatorIS5_EEEEC1Ev) +STUB( + "fExrVbh+OSM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("fEy0EW0AR18", sceUserServiceGetNpOfflineAccountId) +STUB("fF-B+-kmzuU", _ZN3JSC14ProtoCallFrame12setThisValueENS_7JSValueE) +STUB("fF-TfBVa9tQ", mono_assembly_get_main) +STUB( + "fF5AgnaFEvM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE3endEv) +STUB( + "fF5wp90SpUA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEmmEi) +STUB("fF6UuzMinKo", _ZN7WebCore22JSDeprecatedCSSOMValue9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("fF75EQr-Yh0", mono_field_get_type) +STUB( + "fFBTftE5Yso", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB("fFD0QoqKajY", _ZN3sce3pss5orbis9framework28InitializePsmFrameworkCsharpEv) +STUB("fFFkk0xfGWs", sceAjmBatchStartBuffer) +STUB("fFGPlE0oNhw", _ZN3sce2np3ipc17ServiceIpmiClient10EndRequestEii) +STUB("fFIgneq4xtY", mono_gc_register_root) +STUB("fFLYYJiOIx0", WKPreferencesSetJavaScriptCanOpenWindowsAutomatically) +STUB("fFLgmNUpChg", sceRtcSetConf) +STUB("fFMg-cBHBBY", sceKernelGetSystemLevelDebuggerModeForRcmgr) +STUB( + "fFN2NuCh9QI", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi31listEdgeAccountId2OnlineIdBatchEiRKNS4_42ParameterToListEdgeAccountId2OnlineIdBatchERNS1_6Common11TransactionINS8_12IntrusivePtrINS8_6VectorINSA_INS3_12AccountIdMapEEEEEEENSA_INS4_46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEEE) +STUB("fFN6oSV8lSM", _ZN3sce7Toolkit2NP2V27Session20LocalizedSessionInfoD1Ev) +STUB( + "fFNfZMG0BYw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE10setContextEPNS2_10LibContextE) +STUB( + "fFR2n-b0x5M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEED2Ev) +STUB( + "fFTzH1X3u7Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "fFXuUU2O95A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEE11release_refEv) +STUB("fFZmV5BzYC0", _ZN3WTF5Mutex7tryLockEv) +STUB("fFay4QefWEg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ChildActivityAvailabilityEEC2Ev) +STUB( + "fFgQN3-ZyrE", + _ZN3sce2Np9CppWebApi14SessionManager2V162PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_55PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEE) +STUB("fFkhOgztiCA", sceCoredumpUnregisterCoredumpHandler) +STUB( + "fFm8OfSLzz4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE3endEv) +STUB("fFnht9SPed8", _ZNSt8numpunctIcE5_TidyEv) +STUB("fFoSsp6H+LA", sceSdecCreateSwHevc) +STUB("fFoWwCW2rDA", cairo_surface_set_user_data) +STUB("fFqB59Bbma8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEED1Ev) +STUB("fFxGkxF2bVo", setsockopt) +STUB( + "fFzBvC01ipE", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEiRNS2_10LibContextEPT_m) +STUB("fG06a38iao8", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus8getOwnerEv) +STUB("fG0IjY5r484", sceMbusDisableBgmForShellUi) +STUB("fG4KMTOHr8Q", _ZN3WTF13StringBuilder12appendNumberEd) +STUB("fG4sqYZb+KA", _ZN3sce7Toolkit2NP2V27Session11SessionDataC1Ev) +STUB( + "fG85bz+MrlE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEED2Ev) +STUB( + "fG9S-Atu+pA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEEC1ERKSF_) +STUB("fGAFtfv0vIg", _ZN3sce2Np9CppWebApi15Personalization2V15Error12unsetMessageEv) +STUB("fGBOwP15r5M", _ZN3sce2Np9CppWebApi6Common13ConstIteratorImEC1Ev) +STUB("fGDYHA+uG4g", _ZNK7WebCore13ContainerNode16lastElementChildEv) +STUB( + "fGGRkflR7l8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEEaSERSA_) +STUB( + "fGIuuKfL1rg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEmmEv) +STUB( + "fGJPYAhu7Tw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("fGPRa6T+Cu8", __isnormal) +STUB("fGYLBr2COwA", __mb_sb_limit) +STUB("fGZkGHlpjeI", + _ZN3sce2Np9CppWebApi14SessionManager2V127GetGameSessionsResponseBody15getGameSessionsEv) +STUB( + "fGZsy0FlAXM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "fGfFhkhjY5k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEE6assignEPS5_PFvS7_EPNS2_10LibContextE) +STUB( + "fGil6g4bmDk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEC2ERKS7_) +STUB("fGnw2K4fNlQ", sceFsUfsRecryptGetState) +STUB("fGoDnKx0jSI", _ZN3sce7Toolkit2NP2V24Auth8AuthCodeC1Ev) +STUB("fGsvNcaYcPM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Wordfilter16SanitizedCommentEE3setEv) +STUB("fH14C4V1yOM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEptEv) +STUB("fH2IStnGK4M", sceCompositorCommandGpuPerfEnd) +STUB( + "fH31Rp+-8zw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEEC1ERKSA_) +STUB("fH46Lag88XY", sceSaveDataDialogClose) +STUB("fHC-y547QY0", ures_getStringByKey_67) +STUB( + "fHEQsI4V4QU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE5beginEv) +STUB( + "fHEi6RnksHM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "fHFancMWks4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB("fHGhS3uP52k", _sceNpManagerCreateMemoryFromKernel) +STUB( + "fHHn4l+l7so", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEC1EPS8_) +STUB("fHLNdq8-3pM", _ZN3sce2Np9CppWebApi12Leaderboards2V127RecordLargeDataResponseBodyD1Ev) +STUB("fHMsRluEMfI", FT_Free) +STUB("fHNOcRXS2xk", mono_get_runtime_build_info) +STUB("fHNmij7kAUM", sceCompanionHttpdRegisterRequestBodyReceptionCallback) +STUB( + "fHQ-8WdghwU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEC1Ev) +STUB( + "fHTzASbAWL4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEEC2ERSA_) +STUB( + "fHY5QUwg4Xk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEeqERKS9_) +STUB( + "fHaQpJzrH80", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE8copyFromERKS9_) +STUB("fHiit8PUwOo", _ZN3sce7Toolkit2NP2V26Trophy7Request19GetTrophyPackTrophy17INVALID_TROPHY_IDE) +STUB("fHncbidxngE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEC2Ev) +STUB( + "fHpjcJefVjw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEEC2ERSA_) +STUB( + "fHq0IwrdHr0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEptEv) +STUB("fHr45B97n0U", sceNetConfigWlanDiagSetTxFixedRate) +STUB("fI-5QkiZRAQ", sceNpGriefReportPost) +STUB( + "fI-bJo6WlXU", + _ZN3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayer15setPushContextsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_24PlayerSessionPushContextEEEEE) +STUB("fI0vZiEOpcU", _ZN3WTF8JSONImpl10ObjectBase5beginEv) +STUB("fI5-EhJqxeA", WKBundleDOMWindowExtensionCreate) +STUB("fI6tT2-+1Qk", WKPreferencesSetShouldUseServiceWorkerShortTimeout) +STUB( + "fI8iVHVHwuE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("fI9jB0EtPZU", _ZN7WebCore11MathMLNames8mtextTagE) +STUB("fIATVMo4Y1w", sceNpWebApi2PushEventDeleteHandle) +STUB("fICzDRPk178", udata_getMemory_67) +STUB( + "fID1oEUA0ks", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE21intrusive_ptr_add_refEPS9_) +STUB("fIHG9jRHuFw", _ZN7WebCore22EmptyFrameLoaderClient12didDetectXSSERKNS_3URLEb) +STUB("fIIDtZIR6t4", mono_aot_Sce_Vsh_Sl2_Sl2Clientunbox_trampolines) +STUB("fIS2CA0Qj4Y", _ZN3sce7Toolkit2NP2V212EventsClient12EventDetailsD1Ev) +STUB( + "fITpHUN+pHQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEmmEv) +STUB("fIUD1xhY8TM", WKPreferencesGetDefaultFontSize) +STUB("fIUVbmM-DDE", sceCesRefersUcsProfileCp863) +STUB("fIVxKQHldfk", tt_cmap6_class_rec) +STUB("fIWHyK5ncmg", _ZN3JSC19SourceProviderCache5clearEv) +STUB( + "fIX8beKOiBw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEE3getEv) +STUB("fIbIvuHIq2w", WKPreferencesGetAcceleratedCompositingForOverflowScrollEnabled) +STUB( + "fIbPEGv7mCk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE5beginEv) +STUB( + "fIfhXJPBywQ", + _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicket28hasxPsnAcceptPlatformNamePs5Ev) +STUB("fIii6-0Adxc", sceMusicPlayerServicePause) +STUB( + "fIn2vpHhMXw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEE11get_deleterEv) +STUB( + "fInUR0BJhqI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEE11release_refEv) +STUB( + "fIo8eUELYmk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEC2EPS8_) +STUB("fIqNvkKIUPQ", sceLibSecureInit) +STUB("fIs015Hhmkk", ures_getVersionNumber_67) +STUB("fIskTFX9p68", __srefill) +STUB( + "fIuHeFCSAMc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEneERKS9_) +STUB("fIxLs+X4zBo", sceCesUcsProfileInitSJis2004X0213) +STUB("fIyiLNGNPC4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEE5resetEPS5_) +STUB( + "fIzsqjyD5oY", + _ZN3sce2Np9CppWebApi14SessionManager2V127RequestPlayerSessionFactory6createEPNS1_6Common10LibContextEiNS5_12IntrusivePtrINS3_32RequestPlayerSessionMemberPlayerEEERKNS5_6VectorINS5_6StringEEENS8_INS3_15LocalizedStringEEEPNS8_INS3_20RequestPlayerSessionEEE) +STUB("fJ0X7gqv28M", _ZN23sceMetadataReaderWriter8Metadata9SerializeERS0_RN3sce4Json5ValueE) +STUB("fJ3lp5T2HxA", X509_STORE_set_flags) +STUB("fJ51weR1WAI", sceRudpEnableInternalIOThread2) +STUB("fJ9329XKPPA", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry14smallDataIsSetEv) +STUB("fJALl2F0A3I", sceNKWebTerminate) +STUB("fJB07vDf7no", _ZN3sce2np12StreamReader8SkipDataEPNS0_6HandleEPNS0_9StreamCtxElPl) +STUB("fJDljVbG4e4", _ZN7WebCore8PositionC1EPNS_4NodeENS0_10AnchorTypeE) +STUB("fJHjtwYvOIs", uregex_setRegion_67) +STUB("fJL1Jbevd7E", _ZN7WebCore23DeferredStylePropertiesD1Ev) +STUB("fJL2LwqLK4c", sceFontGraphicsReportError) +STUB("fJQ2S9PqkhE", _ZN3JSC23throwStackOverflowErrorEPNS_14JSGlobalObjectERNS_10ThrowScopeE) +STUB("fJTYs+hx40Y", _ZN4Manx11BundleOrbisC1Ev) +STUB("fJTrPsXNsBY", sceFiosDebugDumpDate) +STUB("fJU2TZId210", sceNpTusGetMultiUserDataStatusAVUser) +STUB( + "fJVHUq5QcCw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "fJXIJJ+vwM8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("fJXozPJvPeA", sceAppInstUtilRestoreDataSource) +STUB("fJZmTsWuZd4", + _ZN3sce2Np9CppWebApi14SessionManager2V113PlayerSession8fromJsonERKNS_4Json5ValueE) +STUB("fJa2nymyghM", rgctx_fetch_trampoline_mrgctx_10_p) +STUB( + "fJf-od2MwFk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEeqERKS9_) +STUB("fJfx9D9g9W4", FcFontSetCreate) +STUB("fJgRj2mZGpw", _ZN3JSC7JSProxy19getEnumerableLengthEPNS_14JSGlobalObjectEPNS_8JSObjectE) +STUB( + "fJiHuo-nvsM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEmmEi) +STUB( + "fJj-ZQmvSbI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE5clearEv) +STUB("fJmOr59K8QY", _LRint) +STUB("fJnpuVVBbKk", _Znwm) +STUB( + "fJqyYX9+1B4", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("fJsbxmLl7Ww", _ZN7WebCore8SVGNames9stemhAttrE) +STUB("fJuQuipzW10", sceNpIdMapperAbortRequest) +STUB( + "fJuX5gEyZwU", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "fJvDAt38JXI", + _ZN3sce2Np9CppWebApi14SessionManager2V133PlayerSessionMemberForReadFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_26PlayerSessionMemberForReadEEE) +STUB("fJvsHIssANA", Java_sun_reflect_Reflection_getClassAccessFlags) +STUB("fJx8uZqDD1A", mono_aot_System_IO_Compressionunbox_trampoline_addresses) +STUB("fK+DFgxPnbY", _ZN9Inspector31RuntimeBackendDispatcherHandlerC2Ev) +STUB( + "fK3ZDloDPYo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEE7add_refEv) +STUB("fK4AIM0knFQ", sceUserServiceSetFriendCustomListLastFocus) +STUB("fK5e+K6kSBg", _ZNK3sce2np6Thread6IsInitEv) +STUB("fK5zqN0v5Qg", sceNpManagerIntCheckPlus) +STUB("fKMBLdIP74k", + _ZN7WebCore18JSHTMLImageElement14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB("fKNNuZ9IFEg", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead14setCustomData2EPKvm) +STUB( + "fKNWiWkTSt4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEC2EPS7_PFvS9_EPNS2_10LibContextE) +STUB( + "fKNy11+kNvA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEppEv) +STUB("fKP7yxb6BHA", sceClPthreadAttrSetstacksize) +STUB("fKPRO-TRxhA", sceNpUniversalDataSystemIntRecordDataEstimateSize) +STUB( + "fKRrj+PLZjo", + _ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionNonPsnPlayer8fromJsonERKNS_4Json5ValueE) +STUB("fKU8-BslRjI", fuse_lowlevel_new_compat25) +STUB( + "fKV1t4kHabE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEaSERS7_) +STUB("fKZYpNfkFNE", _ZNK7WebCore16HTMLMediaElement5errorEv) +STUB("fKZilMU6m3s", _ZN7WebCore9HTMLNames50onwebkitcurrentplaybacktargetiswirelesschangedAttrE) +STUB("fKZmvGDkhjU", + _ZN3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinitionC1ERS5_) +STUB("fKaloYAyEOM", _ZN3WTF7RunLoop38suspendFunctionDispatchForCurrentCycleEv) +STUB("fKbgtgnAkl0", ucurr_forLocale_67) +STUB("fKcCVDMgDl4", _ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_6NpUserEE8max_sizeEv) +STUB( + "fKdcQ6aYmtI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE5emptyEv) +STUB("fKewW7GoCyM", _ZN7WebCore8Document8setTitleERKN3WTF6StringE) +STUB("fKji+6kYsqQ", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification16NewInGameMessageEED1Ev) +STUB("fKk7unahoVM", deflateInit2_) +STUB("fKlkxthWjdE", _ZN7bmalloc3api9isEnabledENS_8HeapKindE) +STUB("fKpwgkVX7bQ", _ZN3sce7Toolkit2NP2V29Messaging24GameDataMessageThumbnailC2ERKS4_) +STUB("fKqJTnoZ8C8", sceSystemServiceKillLocalProcessForPs2Emu) +STUB( + "fKuNp7osKHY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEC1EPKS8_) +STUB( + "fKufASZdZRs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEED1Ev) +STUB("fKyJdxYdvJI", _ZNK7WebCore18StyleSheetContents21isLoadingSubresourcesEv) +STUB( + "fL2+Ro0LtgA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEppEv) +STUB("fL3O02ypZFE", wmemcpy) +STUB("fL3uDzJ1M6g", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE3endEv) +STUB("fLALYinPNQ0", udatpg_getBestPatternWithOptions_67) +STUB("fLBZMOQh-3Y", _ZNSt4_Pad7_LaunchEPP12pthread_attrPP7pthread) +STUB("fLKABiavCrI", _ZN7WebCore9HTMLNames8faceAttrE) +STUB("fLMW2qzfD8g", mono_aot_Sce_Vsh_DiscPlayerjit_code_start) +STUB("fLPyJy7fwFU", _ZNK3sce2np9JsonValue8GetArrayEv) +STUB("fLR5Z8gn3GA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEcvbEv) +STUB( + "fLSoR7HCVCs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEE11release_refEv) +STUB("fLTseA7XiWY", sceSystemGestureGetTouchEvents) +STUB( + "fLaM31W2MSY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEEdeEv) +STUB("fLcU5G6Qrjs", atoll) +STUB("fLfh+wZ12vQ", WKPageGetContext) +STUB( + "fLm1gqmaHgU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEC2ERKS7_) +STUB( + "fLv5cnaJ3os", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE3endEv) +STUB("fLyK0swjmdY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEC1ERKS7_) +STUB( + "fM7PqdbIMvA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEC1EPKS8_) +STUB("fMKRZudn+mk", _Wcstate2) +STUB("fMP5NHUOaMk", sceSysmoduleIsLoaded) +STUB( + "fMTffrYnlaA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "fMTto3xHOWg", + _ZN7WebCore14SchemeRegistry58registerURLSchemeAsAllowingDatabaseAccessInPrivateBrowsingERKN3WTF6StringE) +STUB("fMWCG0Tqofg", sceNpManagerIntAuthGetIdToken) +STUB( + "fMdK-y2rjiU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEE7add_refEv) +STUB("fMfCVl0JvfE", _ZNSt14_Error_objectsIiE15_Generic_objectE) +STUB("fMj0fij3J3k", ucal_getTimeZoneDisplayName_67) +STUB("fMjKOZN0HJM", _ZN3sce7Toolkit2NP15AppSTLAllocatorISbIcSt11char_traitsIcENS2_IcEEEED1Ev) +STUB( + "fMnm+7u2HYM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE5beginEv) +STUB("fMom89mqW3c", __tsan_ignore_thread_begin) +STUB("fMqP2DWsoSE", _ZN7WebCore24CoordinatedGraphicsLayer12replaceChildEPNS_13GraphicsLayerES2_) +STUB("fMqpeDX8Oao", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEC1EPS8_) +STUB( + "fN5-YhxTnxI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEdeEv) +STUB("fN7BnrWdcd0", _ZN7WebCore21InspectorFrontendHostD1Ev) +STUB("fNAsEJUeDYQ", _ZN7WebCore10StorageMap7setItemERKN3WTF6StringES4_RS2_Rb) +STUB("fNDGASdW1DM", _ZN12Mp4Retriever21m_dbFieldInfoInitFlagE) +STUB("fNFOaNVengw", _ZNSt10_Ref_countIN15AbstractStorage14FacebookFolderEE12_Delete_thisEv) +STUB("fNH4tsl7rB8", erfl) +STUB("fNJI5gOrPdc", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle15getPerFranchiseEv) +STUB("fNJKGtX5ncc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V114SearchOperatorEEmmEi) +STUB( + "fNOjZw6Nha8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE5beginEv) +STUB( + "fNS0LF0mC50", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEC2EPS8_) +STUB("fNSqFBHAETU", sceOpusCeltEncDestroy) +STUB("fNaZ4DbzHAE", sceRtcCompareTick) +STUB("fNhrkYpXz0o", scePerfTraceAprNameStop) +STUB( + "fNmvaUJoC68", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB( + "fNobncWZIg4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEE11release_refEv) +STUB("fNoviuIwykc", sceKernelAllocateDirectMemoryForApp) +STUB( + "fNr+foUTP9c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEE7add_refEv) +STUB("fNssIo-DTx4", sceNetApctlRegisterCallback) +STUB("fNwRTeg8Xvo", delegate_virtual_invoke_13_p) +STUB( + "fO+W2fhxPd4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEEC1ERSA_) +STUB("fO-Rk+-qGjM", _ZN7WebCore10XLinkNames8roleAttrE) +STUB("fO2b1mAdv+w", _ZN9Inspector25RuntimeFrontendDispatcherdaEPv) +STUB( + "fO5hK7HwUzg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEED2Ev) +STUB( + "fO7jct5kiwQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB( + "fO7oP1e3SMA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEED2Ev) +STUB( + "fOBj8FI3CDI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEC1Ev) +STUB( + "fOF0iY80xVs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "fOFvvs6jBmY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEplEm) +STUB("fOKgsyjmsPc", p) +STUB( + "fOM7u4zNWxs", + _ZN3sce2Np9CppWebApi7Matches2V128RequestTemporaryMatchResults20setCompetitiveResultERKNS1_6Common12IntrusivePtrINS3_33RequestTemporaryCompetitiveResultEEE) +STUB( + "fORYPNQFBMM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("fORZmlh1TQo", sceShellCoreUtilGetUIStatus) +STUB("fOTckLvlMp8", _ZN7WebCore11MathMLNames9colorAttrE) +STUB("fOUbugIEVtw", _ZN7WebCore15GraphicsContext8fillRectERKNS_9FloatRectE) +STUB("fOYZMvOOV1k", _ZN7WebCore17JSDOMGlobalObject15setCurrentEventEPNS_5EventE) +STUB("fObUxigZwzk", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_18GameCustomDataItemEED2Ev) +STUB( + "fOcZ7gO6PUY", + _ZN3sce7Toolkit2NP11UserProfile9Interface11getPlatformEPNS1_9Utilities6FutureIiEEPKNS1_18UserProfileRequestEb) +STUB("fOgBSyLd95A", + _ZN3sce2Np9CppWebApi7Matches2V119RequestInGameRosterC2EPNS1_6Common10LibContextE) +STUB("fOiH3XmYUI0", _ZNK3JSC7ArgList8getSliceEiRS0_) +STUB( + "fOj0fY9WbFE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE3endEv) +STUB("fOloQm44pCA", _ZN7WebCore8SVGNames17feDistantLightTagE) +STUB( + "fOmjFugIfmc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEC1Ev) +STUB("fOnE++USWAA", _ZN7WebCore9ImageData6createEjj) +STUB("fOqDU02-CDk", _ZN7WebCore10JSLocationD1Ev) +STUB("fOsE5pTieqY", sceSystemServiceChangeMemoryClockToMultiMediaMode) +STUB("fOuw8FMZwGE", mono_aot_Sce_Vsh_Accessorunwind_info) +STUB("fOvdJJE+ciY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEEC1EPS5_PNS2_10LibContextE) +STUB("fP3rUkRGQRs", _ZNK7WebCore26Matrix3DTransformOperation27isAffectedByTransformOriginEv) +STUB("fP4pXcggBN0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEC2ERKS7_) +STUB( + "fP9MOEqodhU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("fP9jd-9CRGY", _ZN3sce7Toolkit2NP2V28Commerce10Categories8deepCopyERKS4_) +STUB("fPCpOAFfgpQ", il2cpp_class_get_image) +STUB("fPJ3h4AHMkU", WKPageGetPageZoomFactor) +STUB("fPMs0Or6+2w", + _ZN3sce2Np9CppWebApi14SessionManager2V115LocalizedString8fromJsonERKNS_4Json5ValueE) +STUB( + "fPRNtOWUfGc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEC1Ev) +STUB( + "fPbTobTTj0E", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("fPhymKNvK-A", sceUserServiceGetLoginUserIdList) +STUB( + "fPqHpzI5B90", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEED1Ev) +STUB("fPrLu1YGOaw", ft_mem_alloc) +STUB("fPsDLyeMDWw", _Z27sendIpmiInvokeSyncMethodResiiiiPKN4IPMI10BufferInfoEb) +STUB("fPxypibz2MY", atoi) +STUB("fPzQAKF4Tuc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEED2Ev) +STUB( + "fPzjk6wMNhQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("fQ+SWrQUQBg", _FSincos) +STUB("fQ0g-EwxN54", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V112TicketStatusEEppEi) +STUB( + "fQ3GZb5-iWY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEED1Ev) +STUB( + "fQ7hwPceFzo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEC2Ev) +STUB( + "fQEMqyTsvEw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("fQPYZEYNzLs", _ZN3sce7Toolkit2NP2V211SocialMedia7Request7PhotoFb19MAX_PHOTO_TITLE_LENE) +STUB("fQQTOYSprCA", _ZN25MmsFileUpdaterFsOperationD2Ev) +STUB("fQQfP87I7hs", sceNpMatching2RegisterContextCallback) +STUB( + "fQUZzBEZoLs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "fQVnnYFQtqc", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V324ValidationConstraintInfo8fromJsonERKNS_4Json5ValueE) +STUB("fQYpcUzy3zo", vscanf_s) +STUB("fQZV+2VLPWI", sceApplicationRaiseExceptionToPid) +STUB("fQb+Xa+xLGM", uprv_strCompare_67) +STUB("fQc6hA552K8", _ZNK3JSC7JSValue14toThisSlowCaseEPNS_9ExecStateENS_8ECMAModeE) +STUB( + "fQh5MaD3OUg", + _ZN9Inspector25TimelineBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "fQiyjpG4Ja4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("fQjii2zz1Vk", _ZN7WebCore4Page12whenUnnestedEON3WTF8FunctionIFvvEEE) +STUB("fQkOy7pA9rs", _ZN3sce7Toolkit2NP19AllocImplementation8allocateEi) +STUB("fQrC-XTAL+I", ucal_open_67) +STUB("fQuzHAHmBXI", mono_aot_register_module) +STUB("fR1b6Fe21KQ", ENGINE_load_builtin_engines) +STUB("fR521KIGgb8", sceKernelAioCancelRequest) +STUB("fR7EjbzyBiI", WKBundlePageClearApplicationCacheForOrigin) +STUB( + "fR8gSj9xmeQ", + _ZN9Inspector20DOMBackendDispatcher17requestChildNodesElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "fRBNJ0emf8s", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearchD1Ev) +STUB("fRCDWK73I38", _ZN7WebCore13JSWindowProxy9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("fRFU58H6YbQ", ucache_deleteKey_67) +STUB("fRG-JOH5+sI", sceAgcSetUcRegIndirectPatchSetNumRegisters) +STUB("fRKXak5jpuM", utext_hasMetaData_67) +STUB( + "fRLb1x+RsbA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE4sizeEv) +STUB("fRWufXAccuI", _Lock_shared_ptr_spin_lock) +STUB( + "fRZVX9Gpz9A", + _ZN12video_parser13cVideoMetaMP418getMetadataBufSizeENS_12VP_META_TYPEENS_9VP_LANG_eENS_15VP_SEARCH_OPT_eEPj) +STUB("fRc1ahQppR4", sceRudpGetSizeWritable) +STUB("fRcAtZp5MOQ", _ZN3JSC23JSModuleNamespaceObjectC1ERNS_2VMEPNS_9StructureE) +STUB( + "fRe+yMILthc", + _ZN9Inspector28DOMDebuggerBackendDispatcher19removeXHRBreakpointElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "fRfI2ZCtdYE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEEC1ERS9_) +STUB( + "fRiM9Hno+H0", + _ZN9Inspector14InjectedScript15arrayFromVectorEON3WTF6VectorIN3JSC7JSValueELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB( + "fRjX6rG1y4k", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC1ERKSC_) +STUB( + "fRjxuR7Ytpw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEEC1Ev) +STUB("fRnqy7U--7c", _ZNK7WebCore16EventListenerMap4findERKN3WTF10AtomStringE) +STUB( + "fRouqUvw4-4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEC1EPS8_) +STUB("fRpvLQylHb0", _ZN9Inspector15RemoteInspectorD2Ev) +STUB("fRrLg3loTI0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEixEm) +STUB("fRufoLtTtQI", _ZN3JSC7Symbols16catchPrivateNameE) +STUB("fRurGDbUulc", sceShellCoreUtilGetSmrHddInfoString) +STUB("fS+hymeCOdc", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEEppEi) +STUB("fS2V3AJIwt8", _ZN7WebCore9JSDOMRect14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB( + "fS518v6hXn4", + _ZNK3sce2Np9CppWebApi14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBody10getNatTypeEv) +STUB( + "fS8OHdC4iSo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEmmEi) +STUB("fSAL03+EhtA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V511ContentTypeEEC2EPS6_) +STUB( + "fSENkjnt6sk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("fSFuf3CCfr0", _ZN7WebCore8Settings38setSubpixelAntialiasedLayerTextEnabledEb) +STUB("fSGHm9RjN5U", _ZNK3sce4Json6Object4sizeEv) +STUB("fSHQFh1yyzw", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicketD1Ev) +STUB( + "fSJY0qZksXA", + _ZN7WebCore13JSHTMLElementC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_11HTMLElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "fSLz4zGCpWs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE8capacityEv) +STUB("fSM0IB8qF60", _ZN3JSC8Debugger19handleBreakpointHitEPNS_14JSGlobalObjectERKNS_10BreakpointE) +STUB( + "fSOYn3qfZRM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "fSRXTvQBu1U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE5beginEv) +STUB("fSSA5Ay0wSo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEC1Ev) +STUB("fSZ+gbf8Ekc", __ashrdi3) +STUB("fSb2oQTNrgA", _ZN3sce4Json5ValueC1ERKS1_) +STUB( + "fScL1HLIxl4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEE11release_refEv) +STUB("fSdpGoYfYs8", _ZNSt9_Num_base17has_signaling_NaNE) +STUB( + "fSf3hDqaBc8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("fSkyAVj+C74", _ZN7WebCore11PageOverlayD2Ev) +STUB( + "fSomKm7Hty8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE7reserveEi) +STUB("fSozDPRL9ss", p5_64) +STUB("fSpH8vtVixc", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V111OfferStatusEEppEv) +STUB("fSr+GYBcEk0", mono_aot_Sce_Vsh_ShellUIUtilWrapperjit_code_start) +STUB("fSzgZbD41h0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEptEv) +STUB( + "fT-mWghiwkA", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("fT2haGTnwWE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEED1Ev) +STUB("fTA0Q7hEZv4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEED2Ev) +STUB("fTCzMLWb9eg", _ZN7WebCore15isDraggableLinkERKNS_7ElementE) +STUB("fTFFKjW+rFg", mono_btls_x509_verify_param_set_purpose) +STUB("fTKdKh-J61s", sceKernelOpenInternal) +STUB("fTM1ueCvsf8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEC2ERKS7_) +STUB( + "fTR1Ax1g5gQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE6resizeEj) +STUB("fTWrVJcXr44", WKGetTypeID) +STUB("fTe3RHtIVWM", ScePsmMonoAssemblyGetImage) +STUB( + "fTf9bOm94Ig", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEC1Ev) +STUB("fTfAEGjfLoQ", _ZNK15AbstractStorage13TwitterFolder10GetServiceEv) +STUB("fThSexKbz7o", GCC_except_table178) +STUB("fTmhvzraShY", _ZNK3sce2Np9CppWebApi14SessionManager2V118MatchmakingForRead10getOfferIdEv) +STUB("fTx66l5iWIA", sceKernelFsync) +STUB( + "fTxXvCVeTZU", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi27getJoinedGameSessionsByUserEiRKNS4_38ParameterToGetJoinedGameSessionsByUserERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_41GetUsersAccountIdGameSessionsResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB( + "fTzo3ejCh4o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "fU1IC0MWhkU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEE5resetEPS9_) +STUB( + "fU3lCWem2qM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEppEi) +STUB("fU43mJUgKcM", sceSaveDataDeleteCloudData) +STUB("fU5fcZt5QEg", sceFsCreatePfsTrophyDataImage) +STUB("fUDokJvA7l0", sceVideoCoreInterfaceSubmitCanvases) +STUB("fUE8kIgA9xg", mono_aot_Sce_PlayStation_Imemethod_addresses) +STUB("fUEoU29MwzA", jpeg_has_multiple_scans) +STUB( + "fUHIL9XJ5SQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE5beginEv) +STUB("fUJC7P8E1fM", sceCesMbcToUtf32le) +STUB("fUJRLEbJOuQ", sceKernelGetProcessName) +STUB("fUK1voqbPWU", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEEptEv) +STUB("fUKL6ZhILWM", DES_ecb_encrypt) +STUB("fUKhVPe60cg", sceUpsrvUpdateDoUpdateAsync) +STUB( + "fUKy7vvnhNE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEED2Ev) +STUB("fURNsl9Mw40", WKViewSyncCoordinatedGraphicsState) +STUB("fUXj4GBxyHs", + _ZN15AbstractStorage14YoutubeStorage13GetRootFolderEPSt10shared_ptrINS_6FolderEE) +STUB( + "fUY7MWKuizQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEC2EPKS8_) +STUB("fUbgKfn9cPw", _ZN3sce7Toolkit2NP2V210Tournament7Request12SearchEventsC2Ev) +STUB( + "fUfMvDbRWPo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE10setContextEPNS2_10LibContextE) +STUB( + "fUiaUHE7YFM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "fUiy+3JCZLI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEED1Ev) +STUB("fUkD2T+tUSo", _ZNK3JSC8Debugger23needsExceptionCallbacksEv) +STUB( + "fUs6e4DCwfA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("fUyemPZk2o8", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE5beginEv) +STUB("fV+Q5a6p+zQ", _ZN3sce2np9HttpTrans12SkipResponseEPNS0_6HandleE) +STUB("fV2xHER+bKE", wcscoll) +STUB("fVA8PPlB+R4", mono_aot_Sce_Vsh_Sl2_Sl2Commonunbox_trampoline_addresses) +STUB("fVEfrPXlwRc", _ZN7WebCore33signedPublicKeyAndChallengeStringEjRKN3WTF6StringERKNS_3URLE) +STUB("fVGDgMU9zbw", _ZN7WebCore15clearBackingMapERN3JSC14JSGlobalObjectERNS0_8JSObjectE) +STUB("fVJ6N3RQw9k", utrie2_openDummy_67) +STUB("fVKklM9oYE4", mono_aot_System_Dataunbox_trampoline_addresses) +STUB( + "fVOXA0TpbwU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE5beginEv) +STUB("fVOcX2+6qiI", _ZN3WTF9BitVector11excludeSlowERKS0_) +STUB( + "fVP83IMtV2Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEC2EPS7_PFvS9_EPNS2_10LibContextE) +STUB("fVSFIM1pmsk", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13FriendsOfUserEE8allocateEmPKv) +STUB("fVUuJBP8CTs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEEptEv) +STUB( + "fVWwbn2iCWE", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot13isInitializedEv) +STUB( + "fVZsAwEnV5I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("fVbCGCyFf-c", _ZN7WebCore10FileSystem14MappedFileDataC2ERKN3WTF6StringERb) +STUB("fVdGkixLb0U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEE3getEv) +STUB( + "fVdrzQCPUEs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEEC2Ev) +STUB( + "fVlbExmz5j4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("fVldzE4u75c", _ZN3JSC7Symbols35GeneratorResumeModeThrowPrivateNameE) +STUB( + "fVmatjxZs38", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEC1EPKS8_) +STUB("fVpuh+UJ4Qo", glIsRenderbuffer) +STUB( + "fVqJ0BnCTiU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE10setContextEPNS2_10LibContextE) +STUB("fVvocpq4mG4", sceNpTusGetMultiUserVariableAVUser) +STUB("fVxIf2t2b1w", ugender_getListGender_67) +STUB("fVxvzVdJxVc", _ZNK3sce2Np9CppWebApi14SessionManager2V16Friend13onlineIdIsSetEv) +STUB( + "fVzpbuZtDyw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEE7get_refEv) +STUB("fW-TpZ6MeWQ", _ZN3JSC7Symbols21Int16ArrayPrivateNameE) +STUB( + "fW1zaY7-bqc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEC1EPNS2_10LibContextE) +STUB( + "fW23BiUu42E", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEC1EPNS2_10LibContextE) +STUB("fW4iwMaAUV0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12BandwithInfoEE3getEv) +STUB("fWAyLTr1x1g", mono_aot_System_Collectionsunbox_trampolines) +STUB( + "fWI-oKz39G0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEixEm) +STUB("fWOPGmY5Kis", + _ZN3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectator12setAccountIdERKm) +STUB("fWRDnGvNHEc", mono_aot_System_Netplt_end) +STUB("fWS+J774W-8", + _ZN7WebCore26PresentationOrderSampleMap30findSampleWithPresentationTimeERKN3WTF9MediaTimeE) +STUB("fWTWKjVk-xg", _ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEE5clearEv) +STUB("fWUVXfZuU48", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEC1ERKS7_) +STUB( + "fWVEeZdbHDw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE3endEv) +STUB("fWhRm5PSGKM", _ZNK3sce2np13JsonArrayImpl13itemArrayInitEPNS1_9ItemArrayE) +STUB("fWjmxGC8oyk", rgctx_fetch_trampoline_mrgctx_86_p) +STUB( + "fWkzlAammLk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEEC1Ev) +STUB("fWlLNa2Mxuw", _ZN7WebCore24CoordinatedGraphicsLayer17didChangeGeometryEv) +STUB( + "fWreRmmfrt4", + _ZN3sce2Np9CppWebApi14SessionManager2V129GetPlayerSessionsResponseBodyC1EPNS1_6Common10LibContextE) +STUB("fWsMBQSxmSM", WKPreferencesGetCompositingBordersVisible) +STUB("fWuQSVGOivA", _ZNSt10moneypunctIwLb1EED0Ev) +STUB( + "fWukkMZC4WI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("fX+iM4sZIl0", sceNpAsmClientGetNpComInfo2WithHmac) +STUB( + "fX-l7XuYf3U", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEEC2Ev) +STUB("fX-zOOefbbs", sceVdecswReleaseComputeQueue) +STUB("fX0+oza0hpA", + _ZN7WebCore15JSSVGSVGElement15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB("fX0IBD-7oNQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEE7get_refEv) +STUB("fX19V6gypro", monoeg_g_list_free) +STUB( + "fX58WX7qSbY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("fX5use90CTk", ucnv_getPlatform_67) +STUB("fX6MVpfiSTo", _ZN7bmalloc9Scavenger15didStartGrowingEv) +STUB("fX9k++TzuQk", sceVideoOutSysSetZoomBuffers) +STUB("fXCPTDS0tD0", _LQuad) +STUB("fXCSkDTpJFg", sceVideoOutDeleteSetModeEvent) +STUB( + "fXEa97SfYL4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEE11get_deleterEv) +STUB("fXHoEfDzLz0", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchStatusD2Ev) +STUB("fXLIjIURup4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEEdeEv) +STUB("fXMdZjI5v60", Java_com_sony_gemstack_io_factories_jar_JarEntryInputStream_getProxy) +STUB("fXODRwVnRe4", sceEditMp4Edit) +STUB("fXUuZEw7C24", _ZNKSt8numpunctIcE8truenameEv) +STUB("fXWK5vOFkeI", _ZN7WebCore6Path2DC1Ev) +STUB("fXY2I1W0WwI", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessionsC1Ev) +STUB( + "fXaHFTpjpMQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEC1Ev) +STUB( + "fXdxKu2Bb4A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE6resizeEj) +STUB("fXfwtDBVY1s", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament16RegisteredRosterEE12deepCopyFromERS7_) +STUB("fXiQLqGhgls", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110ResultTypeEEppEv) +STUB("fXmilqjYipI", _ZN9Inspector14InspectorAgentdlEPv) +STUB("fXqYZkFlUeo", WKDatabaseManagerGetDatabaseDetailsKey) +STUB( + "fY0JtvGVPLA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEeqERKS9_) +STUB( + "fY1Iz9keSiM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEmmEi) +STUB("fY219R6NYxw", _ZN3sce7Toolkit2NP2V26Trophy16UnlockedTrophiesaSERKS4_) +STUB("fY3QqeNkF8k", sceNpWebApi2PushEventRegisterCallback) +STUB("fY4XQoA20i8", sceNpIntIsOnlineIdString) +STUB( + "fY9tfNDIdS0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "fYAx46KBNKM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE6resizeEj) +STUB("fYGnjIapT9g", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE8pushBackERKS6_) +STUB("fYKLmqhQCks", mono_aot_I18N_Otherunbox_trampoline_addresses) +STUB( + "fYMJntXk7ZU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "fYNANDSmiRA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "fYPW6rJM4Lw", + _ZN9Inspector22AuditBackendDispatcher6createERNS_17BackendDispatcherEPNS_29AuditBackendDispatcherHandlerE) +STUB( + "fYWEBIioSiE", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE11getResponseERS8_) +STUB("fYWVVDKZOCk", sceVideoOutSysAddSetModeEvent2) +STUB("fYaW4Ynxyzs", sceNpTrophy2SystemCreateContext) +STUB("fYalC7zPwNE", rgctx_fetch_trampoline_rgctx_37) +STUB("fYapWA9xVmA", sceNpTrophy2AbortHandle) +STUB( + "fYkGOK3TToE", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser7getsortEv) +STUB( + "fYpCSXroWqs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEC2ERS7_) +STUB( + "fYqakKX3Bkc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEC1Ev) +STUB("fYr7Ahl-vNA", _ZN3sce2np13NpTitleSecretC1ERKS1_) +STUB("fYuIsaHHXfY", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12unsetString9Ev) +STUB( + "fYvtJh-wpms", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE7popBackEv) +STUB("fZ3rCadtmXo", sceMbusDumpHandleStatusInfo) +STUB( + "fZ46IM6E6jo", + _ZN8meta_gen11MsvPromoter28setKeyValue_TBLV_LicenseTypeENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB("fZ5o5ZBaz4U", _ZNK7WebCore14ScrollableArea14scrollAnimatorEv) +STUB("fZ7Bujs5NSg", __tsan_func_exit) +STUB("fZASv0EgXdI", _ZN7WebCore8PositionC2EPNS_4NodeEjNS0_25LegacyEditingPositionFlagE) +STUB("fZErMMgXHH4", _ZN7WebCore9GLContext18makeContextCurrentEv) +STUB("fZFnCKpGxv0", sceFsISSchedResultToSlot) +STUB("fZH2EftoX3w", tbuf) +STUB("fZJQzFK4Gv4", sceVideoRecordingGetStatus) +STUB("fZJr2OF+KGw", tls_write) +STUB("fZNzu8gmDDg", mono_aot_Mono_Cairojit_got) +STUB("fZOeZIOEmLw", send) +STUB("fZP8WImnYPk", + _ZNK7WebCore23ScaleTransformOperation5applyERNS_20TransformationMatrixERKNS_9FloatSizeE) +STUB("fZPHZX6PirY", sceClHttpCreateConnectionWithURL) +STUB("fZPmoavbyp4", _ZNK7WebCore9TreeScope16getElementByNameERKN3WTF10AtomStringE) +STUB("fZShld2PQ7w", sceNpCondWait) +STUB("fZbmrDb2Wl4", _ZN7WebCore15SQLiteStatement5resetEv) +STUB("fZeo0Mk6YP0", _ZN3WTF6String6numberEx) +STUB("fZgBeiGqE+c", sceVideoOutSysCursorSetPosition) +STUB("fZjp7AUc+DY", sceFiosGetThreadDefaultOpAttr) +STUB("fZo48un7LK4", sceSystemServiceParamGetInt) +STUB("fZpa8UpFGjo", mono_debug_symfile_lookup_location) +STUB("fZtIw2Exp58", _ZN7WebCore22EmptyFrameLoaderClient31dispatchDidDispatchOnloadEventsEv) +STUB( + "fZx39X6Y+Qs", + _ZN3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyC1EPNS1_6Common10LibContextE) +STUB( + "fZyTbnNkkDQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEE3getEv) +STUB("fZzDm3bsMDo", sceDataTransferRequestSearchPS4) +STUB( + "fa1iZkRD8lw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE5emptyEv) +STUB("fa4XXO3Q7B8", WKPreferencesSetPrivateBrowsingEnabled) +STUB( + "fa7-J5llFa8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE7popBackEv) +STUB("fa7lp6AgDpg", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110PlayerTypeEEdeEv) +STUB( + "fa7w0z2blOo", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12getInteger10Ev) +STUB( + "fa8XwJmDQ-0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEcvbEv) +STUB( + "fa99zPMSk-A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEmmEv) +STUB( + "faB6pA0b7Gg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE5emptyEv) +STUB( + "faFn1OdjAEU", + _ZN7WebCore9TextEvent13initTextEventERKN3WTF10AtomStringEbbONS1_6RefPtrINS_11WindowProxyENS1_13DumbPtrTraitsIS6_EEEERKNS1_6StringE) +STUB( + "faJW1r3Q-Ts", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEppEi) +STUB("faLX3UugvMA", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfoC1Ev) +STUB( + "faRQmY82CHA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEED2Ev) +STUB( + "faTxR3AfiOQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEEaSERSA_) +STUB( + "faUnoCbtJGE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEE7add_refEv) +STUB("faa9PrpwmYU", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setBoolean1ERKb) +STUB("fac6+FPZ3Fs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEC2ERKS7_) +STUB("faebaI-v3ys", _ZN3sce2np14JsonObjectImplD0Ev) +STUB("fajGVxixYQg", + _ZNK7WebCore22EmptyFrameLoaderClient21fileDoesNotExistErrorERKNS_16ResourceResponseE) +STUB( + "famnZ1NdM5k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE6resizeEj) +STUB("fanowl2-O0k", _ZN12video_parser5vpcom8datetime8DateTime19ParseSQLiteDateTimeEPKc) +STUB("faoz6RM7V1A", _ZN3JSC8JSObject12heapSnapshotEPNS_6JSCellERNS_19HeapSnapshotBuilderE) +STUB( + "fas5czbYm3A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEEC2ERKSA_) +STUB( + "faw31LB91O4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEmmEi) +STUB("faw77-pEBmU", sceFontStyleFrameSetEffectWeight) +STUB("faxKS9gtHr0", waitDecidBootEvf) +STUB("fb4sFIKvrIQ", __wrap_clock_gettime) +STUB( + "fb6gHjXHMRI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE5beginEv) +STUB( + "fbA4gQCv0IA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE4sizeEv) +STUB( + "fbAyec-WFdE", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeaderC1ERS5_) +STUB("fbBVwJuoZPI", _ZNK7WebCore12ChromeClient20graphicsLayerFactoryEv) +STUB("fbCC0yo2pVQ", sceUserServiceGetFaceRecognitionRegisterCount) +STUB("fbEVqbjliY4", sceNpSnsTwitchDialogGetStatus) +STUB("fbM-jZJ1h+c", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEEdeEv) +STUB( + "fbPEnJvrySw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE8capacityEv) +STUB("fbQ464WagZM", _ZN3sce7Toolkit2NP2V212EventsClient11EventInGameaSERKS4_) +STUB("fbRv4M+XzL8", FT_Get_Sfnt_Name_Count) +STUB( + "fbU+3lGWAj8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEE3getEv) +STUB("fbWXK9CB2As", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_28ActivityFeedSharedVideoStoryEE10deallocateEPS3_m) +STUB( + "fbcAA+xkavE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEneERKS9_) +STUB("fbcChE1Aoj0", _ZN7WebCore11DisplayList15DrawNativeImageD0Ev) +STUB("fbgiBYu6Q44", sceVideoNativeExtEssential_Finalize) +STUB( + "fbhtFyQgJGk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB( + "fbiKeCL8OCE", + _ZN9Inspector21InspectorRuntimeAgent36getRuntimeTypesForVariablesAtOffsetsERN3WTF6StringERKNS1_8JSONImpl5ArrayERNS1_6RefPtrINS4_7ArrayOfINS_8Protocol7Runtime15TypeDescriptionEEENS1_13DumbPtrTraitsISD_EEEE) +STUB("fbiTO9gjGSE", glSamplerParameterf) +STUB("fbigNQiZpm0", scePlayGoDialogClose) +STUB("fblfzylXZPo", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody12getVariablesEv) +STUB("fbnc-mCtBTE", _ZN7WebCore8SVGNames19text_decorationAttrE) +STUB( + "fbvhAaRux+0", + _ZN9Inspector24RuntimeBackendDispatcher10getPreviewElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "fbvqlpwUqCk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEC2Ev) +STUB("fc+ZCcOOA9U", _ZN3sce7Toolkit2NP15AppSTLAllocatorI16SceNpTusVariableE9constructEPS3_RKS3_) +STUB( + "fc1H0su27hk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEppEi) +STUB( + "fc4PI+u4its", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEC2Ev) +STUB( + "fc4lOMtjooI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEixEm) +STUB("fc5A-BGnNV4", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEEptEv) +STUB("fc8iiT9GzxY", __tsan_atomic8_fetch_and) +STUB("fcAQd5t1nwA", mono_aot_Sce_Vsh_AutoMounterWrapperunbox_trampoline_addresses) +STUB( + "fcAub+Gijg8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB("fcCwKpi4CbU", sceNpTusTryAndSetVariableForCrossSaveVUser) +STUB("fcDGYTk-5Aw", + _ZNSt15basic_streambufIcSt11char_traitsIcEE7seekoffElNSt5_IosbIiE8_SeekdirENS4_9_OpenmodeE) +STUB("fcDt18r-ibY", sceCompositorGetDummyAddress) +STUB( + "fcHaPBlG4rI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE10setContextEPNS2_10LibContextE) +STUB("fcJEXHwyJIs", Java_com_sony_bdjstack_org_bluray_ti_DiscManagerImpl_init) +STUB("fcR81+dZhRE", ucnv_cbFromUWriteUChars_67) +STUB("fcSlD2VtHxY", _ZN7WebCore13QualifiedNameC1ERKN3WTF10AtomStringES4_S4_) +STUB( + "fcYE0RtHPDc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "fcZJrw0OnMI", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsersC2ERS5_) +STUB( + "fcc6CrhYVW4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEE11get_deleterEv) +STUB( + "fccfR5i-Dx4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE8copyFromERKS9_) +STUB( + "fcgKkJ5CRZ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEEC1Ev) +STUB("fckG3H1m2To", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110PlayerTypeEEC2EPS6_) +STUB( + "fcnM7N9hbY8", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser10initializeEPNS1_6Common10LibContextEPKc) +STUB( + "fcqFKnxc3yI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEE7add_refEv) +STUB("fcs3yRIkEVM", _ZN23sceMetadataReaderWriter20unregisterParserInfoEv) +STUB("fcv2sicJFfs", mono_aot_Sce_Vsh_SQLitejit_code_start) +STUB("fczC6fqKCAo", _ZN7WebCore10JSLocationC1ERKS0_) +STUB("fd+grYAEph0", _ZN3sce2np10Cancelable10LockCancelEPKciS3_) +STUB("fd0deLslWTs", _ZN7WebCore15StringTruncator13rightTruncateERKN3WTF6StringEfRKNS_11FontCascadeE) +STUB( + "fd2W0V42U78", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession22setDisableSystemUiMenuERKNS1_6Common6VectorINS5_6StringEEE) +STUB( + "fdA6jvkaI04", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE7popBackEv) +STUB("fdDaJ9MjJtU", _ZN7WebCore8Document14implementationEv) +STUB("fdFUsLHjp2M", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariableD2Ev) +STUB("fdH810n2Y-I", _ZNK7WebCore10ScrollView23rootViewToTotalContentsERKNS_8IntPointE) +STUB("fdIBRwT9gYA", _Z18trySendIpmiMessageiPKvm) +STUB("fdIl7SI4lkU", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersD2Ev) +STUB("fdK56Fz7xGQ", _ZN7WebCore3URL21setFragmentIdentifierEN3WTF10StringViewE) +STUB( + "fdLw-aLzNlA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE3endEv) +STUB( + "fdar25Qj5hE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEC1ERS7_) +STUB( + "fdd4D5SSjWc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEneERKS9_) +STUB("fdeEvX4X2W8", + _ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse8fromJsonERKNS_4Json5ValueE) +STUB("fdm6mwInm0E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEptEv) +STUB("fdwMUgaSJ7A", _ZN3sce2Np9CppWebApi7Matches2V118RequestTeamResults8setScoreERKd) +STUB("fe-BQU7Mx7Q", _ZN7WebCore22EmptyFrameLoaderClient26didReplaceMultipartContentEv) +STUB( + "fe0ATU2oDiE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEmmEi) +STUB("fe0vzc9LwjA", _ZN3JSC7Symbols50webAssemblyInstantiateStreamingInternalPrivateNameE) +STUB( + "fe58fhUMBdg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEneERKS9_) +STUB( + "fe9Ay-jc8TU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("fe9W3bGa57g", rgctx_fetch_trampoline_rgctx_38_p) +STUB( + "feDm3UWdGHg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE6resizeEj) +STUB("feHzFwdx0oU", _ZN3sce2np13JsonDocParser4InitEPK7JsonDef) +STUB( + "feIyVDw9yF4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("feMFMNgm+o0", sceKeyboardPadEmulateClose) +STUB("feRK21LbWio", _ZNK7WebCore19ResourceRequestBase6isNullEv) +STUB("feSywBTpZHk", _ZNK7WebCore20ResourceResponseBase32cacheControlStaleWhileRevalidateEv) +STUB( + "feUn5ozugZ4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE3endEv) +STUB( + "feWxaYJIyno", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEixEm) +STUB("feXYOdrWbuM", utext_openUnicodeString_67) +STUB( + "feXyCyytvrE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEEC2ERKSA_) +STUB( + "feYbY9JEvh4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEeqERKS9_) +STUB("feYjEYCSKRU", _ZN3sce7Toolkit2NP2V210Tournament5Event5resetEv) +STUB("feaB+bz3g60", _ZNK7WebCore27AuthenticationChallengeBase5errorEv) +STUB( + "febyjEQSfn8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE8copyFromERKS9_) +STUB( + "feck3i1FOo0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEcvbEv) +STUB("feeXsX5a05U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEED2Ev) +STUB("fef-SprJ7Fk", _ZN7WebCore9CookieJar12setRawCookieERKNS_8DocumentERKNS_6CookieE) +STUB( + "fef0ftqQSs4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEC1Ev) +STUB("fefNFGkTzzs", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEED2Ev) +STUB("fejyIlCPzIA", _ZN9Inspector25ConsoleFrontendDispatchernwEm) +STUB("feqktbQD1eo", sceUserServiceSetCreatedVersion) +STUB("fesoNJCZpSA", eglChooseConfig) +STUB("fevBhlFwazQ", mono_gc_wbarrier_generic_store_atomic) +STUB( + "fez4qkTZ0YU", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi27ParameterToLeaveGameSession12getsessionIdEv) +STUB( + "ff2u4mro4Zg", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "ffCBrykU1ks", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE6resizeEj) +STUB("ffF8iM76-6k", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_18GameCustomDataItemEEC2Ev) +STUB( + "ffGrcUTXZIA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("ffInidSqRss", sceRegMgrSetStr) +STUB( + "ffJhSYp+bmM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V115VariableFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_8VariableEEE) +STUB("ffK8skU7O+8", _ZN3JSC2VM27injectedScriptHostSpaceSlowEv) +STUB("ffNVq81OG9I", WKPageEndPrinting) +STUB( + "ffPgSJenjX8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE7popBackEv) +STUB( + "ffTKbhhiORE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEaSERSA_) +STUB("ffX2Foj3IJE", mono_aot_ReactNative_Modules_Vsh_Gct_Telemetry2unbox_trampoline_addresses) +STUB("ffXfMMfBRK4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEE7add_refEv) +STUB( + "ffYtkk40ARs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEixEm) +STUB( + "ffaZvhe-jG8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("fffwELXNVFA", fprintf) +STUB( + "ffhPlW+s5B8", + _ZN8meta_gen11MsvPromoter28setKeyValue_TBLI_AspectRatioENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti) +STUB("ffnhh0HcxJ4", + _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecl) +STUB("ffrNQOshows", sceGnmComputeWaitOnAddress) +STUB("ffrks25vLYU", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_23NpIdListRankInformationEE3getEv) +STUB("ffv1pAwqjMs", _ZN23sceMetadataReaderWriter13isCorrectTypeEPNS_5ValueE) +STUB("ffv6I7TFVP4", glGetVertexAttribPointerv) +STUB( + "ffy2JLKV+Cg", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUserC2Ev) +STUB("ffyA0M5dj6g", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament7BracketEEC2Ev) +STUB( + "ffyKwLWlJ6Q", + _ZN3sce7Toolkit2NP2V28Matching15sendRoomMessageERKNS3_7Request15SendRoomMessageEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("fg0HFN49oxg", _ZNK7WebCore11MediaPlayer16canSaveMediaDataEv) +STUB("fgHOZo7gPyA", sceAvSettingGetHdmiRawEdid) +STUB("fgIsQ10xYVA", sceKernelChmod) +STUB("fgMwgvfURDA", sceValidationGpuClearState) +STUB("fgXJvOSrqfg", _Fetch_xor_seq_cst_2) +STUB("fgZdoXXPJ-g", monoeg_g_list_remove_link) +STUB("fga6Ugd-VPo", sceFontGraphicsDrawRectangleShape) +STUB( + "fge0Yvch1hU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEEC2EPS8_PNS2_10LibContextE) +STUB( + "fgenLdM8VTY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEC2Ev) +STUB( + "fggIaNzXFg4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("fgil7LhXCF0", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_26ActivityFeedCondensedStoryEEC2ERKS4_) +STUB("fgkjRJ-x844", JVM_Connect) +STUB( + "fgljYwrNc0s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE21intrusive_ptr_add_refEPS9_) +STUB("fgqfPqcWPM0", _ZNK7WebCore12NamedNodeMap12getNamedItemERKN3WTF10AtomStringE) +STUB( + "fgr2Svatz2s", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEdeEv) +STUB("fgtXCeaburA", sceNpTrophy2SystemRegisterTitleSyncedCallback) +STUB("fgtlLHWAf2M", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEEdeEv) +STUB("fgvUpKBEQGw", + _ZNK3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayer13getPlayerNameEv) +STUB("fgxnMeTNUtY", sceKernelGetProcessTimeCounter) +STUB("fgyegiclUWQ", _ZN7WebCore11MathMLNames12encodingAttrE) +STUB("fh+OX5Gf-BA", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth8AuthCodeEE3getEv) +STUB("fh+dQl4cXoU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEC2ERS7_) +STUB("fh09rY0ltb8", sceUpsrvUpdateCheckDoCheckSystemForSettings) +STUB( + "fh2pWVkPsc0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEC2ERKS7_) +STUB("fh54IRxGBUQ", __negvdi2) +STUB("fh8+UVDsvgc", _ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEEixEm) +STUB("fhHAF+7kH08", _ZN7WebCore24CoordinatedGraphicsLayer29computePositionRelativeToBaseEv) +STUB("fhJ5uKzcn0w", sceNpCreateThread) +STUB("fhKwCVVj9nk", sceGnmUnregisterOwnerAndResources) +STUB("fhRcPQVoEqM", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId9terminateEv) +STUB( + "fhT6Ff0uR-w", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEdeEv) +STUB("fhY0yEj2+uo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEEC2Ev) +STUB("fhYkRrmrL54", + _ZN3JSC19HeapSnapshotBuilder22appendVariableNameEdgeEPNS_6JSCellES2_PN3WTF17UniquedStringImplE) +STUB("fhdcvOGA4L0", RecvDeciHeader) +STUB( + "fhdkOS-fOAw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("fheAuuObwDc", ucol_getMaxVariable_67) +STUB("fheQ1wULXEs", JVM_IsSilentCompiler) +STUB( + "fhjrNyOR10Y", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE5emptyEv) +STUB( + "fhpt7NI+6bc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEdeEv) +STUB("fhw2WyZ7Rlw", mono_aot_platformmethod_addresses) +STUB("fhwMvdjy0+U", _ZN7WebCore8SVGNames8glyphTagE) +STUB("fi+JX2wq2XU", get_sdk_compiled_version) +STUB( + "fi-Nyigvu4g", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE5emptyEv) +STUB("fi0TIYERtsY", + _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequestC1EPNS1_6Common10LibContextE) +STUB("fi11ETDjPOw", _ZN3sce2Np9CppWebApi14SessionManager2V118LeaderWithOnlineIdD1Ev) +STUB("fi17Swuc348", WKPreferencesGetAsynchronousPluginInitializationEnabledForAllPlugins) +STUB("fi2jsXhrBTI", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container10unsetLabelEv) +STUB("fi7yiXwXPJ4", _ZNK3sce7Toolkit2NP9NpTitleIdltERKS2_) +STUB( + "fiDIU+pVQ9A", + _ZN12video_parser13cVideoMetaVWG28_createInternalThumbnailInfoEPNS_13cVideoMetaMP418VpThumbnailInfoMP4E) +STUB("fiDNFolmOCs", sceClHttpSetRedirectCallback) +STUB("fiEa0s6Bbn4", _ZN7WebCore9HTMLNames12onresizeAttrE) +STUB( + "fiIpjn38uJ0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEEC1ERKS8_) +STUB( + "fiM-PGnzZ7Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEC2EPS6_PNS2_10LibContextE) +STUB("fiMjzmik0WQ", c12) +STUB("fiOgmWkP+Xc", fmax) +STUB( + "fiPX7X+ytH4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEEC1Ev) +STUB( + "fiSF8YNAg-8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEppEv) +STUB( + "fiTujmSJqIY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE6resizeEj) +STUB("fiUS-mQ9Ue4", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE7popBackEv) +STUB("fiVAYOf2PZE", sceDebugStopOnDLLoad) +STUB("fiVzPKkPWZU", _ZNK7WebCore22HTMLFormControlElement12autofillDataEv) +STUB("fiX2RRLQhak", uscript_getScript) +STUB( + "fiiAydJ4YYY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEneERKS9_) +STUB("fiiNDnNBKVY", localtime_s) +STUB( + "fij0bZm-4YA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEmmEi) +STUB("fijRj5P5u5k", _ZN7WebCore9HTMLNames26x_apple_pdf_annotationAttrE) +STUB("fikio+oFpEs", WKPageClearLoadedSubresourceDomains) +STUB("fimORKx4RDg", _ZN3sce2np4Time20GetDebugNetworkClockEPS1_) +STUB("fimf0rLYE0c", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEdeEv) +STUB( + "fiot+A7i3tQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEEC1ERKSB_) +STUB("fipyDzrYIRw", _ZN3sce7Toolkit2NP2V24Core24NpToolkitMemoryPoolStatsD2Ev) +STUB( + "fiqFh10EJJg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEC2Ev) +STUB("fj9jSr9TUDk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEC1ERKS7_) +STUB("fjExfciM3XA", _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_9DOMMatrixE) +STUB("fjG5plxblj8", _ZNSt8ios_base7failureD2Ev) +STUB("fjHAU8OSaW8", _ZNSt7collateIwEC1EPKcm) +STUB("fjHun3NwbF4", il2cpp_property_get_set_method) +STUB("fjI2ddUGZZs", _ZNSt14numeric_limitsIdE12max_exponentE) +STUB("fjJ4xXM+3Tw", sceNpManagerIntGetAccountCountryA) +STUB("fjJhvPeQStA", delegate_virtual_invoke_imt_9_p) +STUB( + "fjN2ubr20YI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEE11release_refEv) +STUB("fjN6NQHhK8k", scePthreadSemTimedwait) +STUB("fjPZRvqbRj8", _ZL12_new_nothrow) +STUB("fjV7C8H0Y8k", sceNpSnsFacebookDialogUpdateStatus) +STUB("fjbBk89tXmQ", _free) +STUB("fje5RYUa+2g", SSL_isSessionSSL) +STUB( + "fje9cpnZHdk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEEC2Ev) +STUB( + "fjgJo-PAXnI", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEEiRNS2_10LibContextEPT_m) +STUB( + "fjjIDRQ42qE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE5beginEv) +STUB("fjni7nkqJ4M", _ZTVN10__cxxabiv116__enum_type_infoE) +STUB("fjnxuk9ucsE", _ZNSt12placeholders2_4E) +STUB( + "fjqRvNF8jw8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody8fromJsonERKNS_4Json5ValueE) +STUB( + "fjqp+YYepIc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEC1EPS6_PNS2_10LibContextE) +STUB( + "fjt+f0XkiVE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEE11get_deleterEv) +STUB("fjt0EbXejro", _ZN3sce2np12NpHttpClient4InitEi) +STUB( + "fjx8TWGUrQM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "fk2ENoxLyks", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEEaSERSA_) +STUB("fk8HYv0zqns", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEEC1ERKS7_) +STUB("fk9ASrlQKDM", Java_java_net_PlainSocketImpl_socketSendUrgentData) +STUB("fk9IJZ-BpN8", _ZN7WebCore14JSWebAnimation9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "fkAF5QJPXEU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEmmEi) +STUB( + "fkCdUTpWNFU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEE11get_deleterEv) +STUB("fkDoZlt3FN4", _ZN12video_parser14cVideoOperator18getRelatedFileNameEiPPc) +STUB("fkE41yBXT58", sceCesUtf16StrToIso2022Str) +STUB("fkFGlPdquqI", _ZNSt6locale7_Locimp9_MakexlocERKSt8_LocinfoiPS0_PKS_) +STUB( + "fkJJ5zCYrgc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEC1Ev) +STUB("fkKkBR8BrAM", _ZNK7WebCore15VisiblePosition14localCaretRectERPNS_12RenderObjectE) +STUB("fkN7M+xbnhU", _ZN7WebCore15JSSVGSVGElement6s_infoE) +STUB("fkNJrxbUFCw", _ZN3WTF8JSONImpl5ValueD1Ev) +STUB("fkPacJYzO6g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEixEm) +STUB("fkPuq-1U404", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead18setNonPsnSupportedERKb) +STUB("fkUIszBPm4g", sceNpIntRegisterCheckCallback) +STUB( + "fkUKKs-QrJ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEC1EPNS2_10LibContextE) +STUB( + "fkW202pJSak", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEaSERS7_) +STUB("fkZ3x8POhm4", JVM_CurrentThread) +STUB("fkZE7Hup2ro", sceCameraAudioGetData) +STUB("fkaBx1FOo+g", _ZN3JSC16clearArrayMemsetEPdj) +STUB( + "fkbMjEdMrg4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEC2EPKS8_) +STUB("fkcM5YcqjV8", sceShellCoreUtilActivateGetStatus) +STUB("fkhyGY5dnLo", + _ZN3sce2np9HttpTrans4InitEPNS0_12HttpTemplateEPNS0_18HttpConnectionPoolEiPKcS7_tS7_m) +STUB( + "fkkfKkXCwLA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEaSERKS9_) +STUB( + "fkonbUWvxxc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEdeEv) +STUB("fksEUwl6bJ8", _ZN9Inspector33AnimationBackendDispatcherHandlerD1Ev) +STUB( + "fkswEcBS4bk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEaSERKS9_) +STUB( + "fkygF9T3pDg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEaSERS7_) +STUB("fl+SfiowG5M", WKBundlePageUninstallPageOverlayWithAnimation) +STUB("fl0Ob2AccBI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEaSERS7_) +STUB("fl1eoDnwQ4s", sceDiscMapGetPackageSize) +STUB("fl3roYs7F9U", sceUsbStorageRequestUnmap) +STUB( + "fl7L3aMGYwg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEC1EPS6_PNS2_10LibContextE) +STUB("flDHtOpBzqw", uset_serialize_67) +STUB( + "flDplEX+hwY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE21intrusive_ptr_sub_refEPS9_) +STUB("flK5tWZaYPg", unum_parseToUFormattable_67) +STUB("flLt+xWYloc", WKBundleIsProcessingUserGesture) +STUB("flMkyOcNc+k", _ZN7WebCore15FocusController23relinquishFocusToChromeENS_14FocusDirectionE) +STUB("flPcUaXVXcw", sceAudio3dPortGetParameters) +STUB("flPxnowtvWY", sceHttp2AddCookie) +STUB( + "flUrYgvC8LA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("flVPqQL4j04", _ZN23sceMetadataReaderWriter22StorageParserInfoTableC1EjPi) +STUB("flYYxek1wy8", scePadSetProcessFocus) +STUB("flc5CKNnVxY", _ZN3sce7Toolkit2NP2V28Matching12Notification11RefreshRoom8deepCopyERKS5_) +STUB("fldPLpBktGU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEaSERS7_) +STUB( + "flfAQCop-mo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEC1EPS7_PNS2_10LibContextE) +STUB( + "flieq2CdtYA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("fljdejMcG1c", sceFontWritingGetRenderMetrics) +STUB("flmSEtbkSbQ", il2cpp_monitor_wait) +STUB( + "flnoCDprwHk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEE3getEv) +STUB("flqaM9wf884", fuse_chan_send) +STUB("flwICNzXML8", uprv_decNumberGetBCD_67) +STUB("fm1r2vv5+OU", scePadReadBlasterForTracker) +STUB("fm5iMf1GSvg", _ZN9Inspector15RemoteInspector6ClientC2ERKS1_) +STUB("fm7XpsO++lk", sceUserServiceSetGlsMessageFilterLevel) +STUB( + "fm84QSpiaaw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEEC2EPS6_) +STUB("fmAFXQ-jMo4", uprv_mul32_overflow) +STUB("fmD6lvba-e0", _ZN3WTF17wordBreakIteratorENS_10StringViewE) +STUB("fmDMZjA+Eg4", _ZN3JSC11MarkedBlock6Handle13areMarksStaleEv) +STUB("fmEzJ4OY5nM", sceFsWsUmount) +STUB("fmGGZId9izI", mono_aot_Sce_Vsh_Db_Sharedunbox_trampolines) +STUB("fmHLr9P3dOk", _Snan) +STUB("fmOs6MzCRqk", sceHttpTrySetNonblock) +STUB("fmQBPC8AIx0", _ZN7WebCore9HTMLNames23onwebkitsourcecloseAttrE) +STUB("fmRTuijh1NM", _ZN3WTF11Persistence7DecoderrsERNS_8OptionalIsEE) +STUB("fmT2cjPoWBs", fabsf) +STUB( + "fmU-0elgU1E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE6resizeEj) +STUB( + "fmdBUfMKWAY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEC1Ev) +STUB( + "fmeCdfg9xR0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEeqERKS9_) +STUB( + "fmga1AEeR9I", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE6finishEv) +STUB( + "fmh9v2nPKEo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEEdeEv) +STUB( + "fmiA8J8+f5Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEppEi) +STUB( + "fmq+5EljqP4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEaSERKS9_) +STUB( + "fmsC+wXWWlY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE8capacityEv) +STUB("fmtiiQmMB7k", _ZNK3sce2Np9CppWebApi14SessionManager2V113PlayerSession9getMemberEv) +STUB("fn1Co0wfCME", _ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEEC1Ev) +STUB("fn1i72X18Gs", _ZNSt11logic_errorD0Ev) +STUB("fn2e1KifVKM", _ZNK7WebCore17HTMLScriptElement5asyncEv) +STUB( + "fn4J5uQh3BQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEC2ERKS7_) +STUB("fn8PTxlIFMw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEEC2ERKS7_) +STUB( + "fn8Qfas4qbk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEE5resetEPS9_) +STUB("fnAldf0Q96M", Java_java_awt_GnmImage_nativeSetColorModelBytePixels) +STUB("fnBzqX6l+58", _ZN12video_parser5vpcom11Utf16ToUtf8ERKSbIwSt11char_traitsIwESaIwEEPSsi) +STUB("fnDNld-FfGE", rgctx_fetch_trampoline_rgctx_44) +STUB( + "fnDeSM06+rk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEEC1Ev) +STUB("fnHpN5xfdJ8", mono_aot_Sce_PlayStation_Jsonunbox_trampolines_end) +STUB("fnIzuuFz-vY", __s2b_D2A) +STUB("fnRb3vpQmN4", _ZNK7WebCore4Node12lookupPrefixERKN3WTF12AtomicStringE) +STUB("fnTLa75XU54", WKPreferencesSetMinimumZoomFontSize) +STUB("fnUEjBCNRVU", wmemchr) +STUB("fnZxodNwzSw", + _ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errorsC1EPNS1_6Common10LibContextE) +STUB( + "fnavKi4Ph50", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEdeEv) +STUB( + "fnc+s0bN5NI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEixEm) +STUB( + "fndVbjjvFtc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE7reserveEi) +STUB("fnqFpsRrsg4", sceAvControlIsDeepColorSupportedByMonitorInfo) +STUB("fnrW9BaMPAA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEEaSERKS9_) +STUB("fnxQfHHlzpE", png_create_read_struct_2) +STUB("fo-EJUaMzMk", _ZN7WebCore29equalIgnoringQueryAndFragmentERKNS_3URLES2_) +STUB("fo3MaNfUAUE", WKFrameIsMainFrame) +STUB("fo5B8RUaBxQ", sceGameLiveStreamingScreenInitializeSeparateModeParameter) +STUB("fo7GYqkkHBA", glPushGroupMarkerEXT) +STUB("foCDx2--mVw", _ZN3NTF17URLRequestFileJob10initializeEb) +STUB( + "foGveQnZdv8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEixEm) +STUB( + "foRxDkhZxEQ", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot9setslotIdEi) +STUB("foV96AsJh6k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V111OfferStatusEEaSERKS7_) +STUB("foXSHrLw+6M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEC1ERKS7_) +STUB( + "foYX6dcljKI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEE7add_refEv) +STUB("fof7HKGTVWc", mono_aot_Sce_Vsh_CloudClientunbox_trampolines) +STUB( + "fog+NDK5KJI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEEC1Ev) +STUB("fojEVaEP+2g", _ZN3WTF6Thread10allThreadsERKNS_6LockerINS_4LockEEE) +STUB("fokEcElZYas", mono_aot_System_Net_Httpjit_code_end) +STUB("fokQWxS--Hs", _ZN12video_parser5vpcom11Utf8ToUtf16ERKSsPSbIwSt11char_traitsIwESaIwEEi) +STUB( + "foodLlD3P0k", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEeqERKS9_) +STUB("forQVyt9ycQ", _ZNK7WebCore17HTMLOptionElement5valueEv) +STUB( + "fotNXwnZkYE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEdeEv) +STUB( + "fotZ9kUWwaY", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeaders15getLastModifiedEv) +STUB("fotb7DzeHYw", sceUsbdBulkTransfer) +STUB("fp-jO+c8Rfk", FT_DivFix) +STUB("fp2EhGiMaJs", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku5getIdEv) +STUB("fp6Yo2-JRtI", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V116BandwidthFactory7destroyEPNS3_9BandwidthE) +STUB("fp7-kBD4YVo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_17TitleCloudStorage2V19ConditionEEeqERKS7_) +STUB("fp9jJns8XKk", _ZN7WebCore11DisplayList8FillRectD1Ev) +STUB("fpFCQLbTB1w", sceSulphaInit) +STUB("fpFa0fYJ6JM", _ZThn24_N7WebCore14DocumentLoaderD1Ev) +STUB("fpHXcFU4T1c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEE11release_refEv) +STUB("fpI46m0Nc9o", scePlayReadyCloneDecryptContext) +STUB( + "fpLTp3Z+UnI", + _ZN7WebCore24CoordinatedGraphicsLayer37setVisibleContentRectTrajectoryVectorERKNS_10FloatPointE) +STUB("fpMtgjbfR28", sceDtcpIpCheckActivationAsync) +STUB("fpORxPPk4+Q", _ZN7WebCore19ResourceRequestBase6setURLERKNS_3URLE) +STUB("fpXxlVhsEco", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging25GameDataMessageAttachmentEEC2Ev) +STUB( + "fpvLU+uhm0E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEmmEv) +STUB("fpz1nROvElc", + _ZN3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayerC2EPNS1_6Common10LibContextE) +STUB( + "fq3CZ3TBgFQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE7releaseEv) +STUB( + "fq3fks8N8NE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("fq6Be3UkmTU", _ZN3sce7Toolkit2NP2V29Messaging25GameDataMessageAttachmentC2Ev) +STUB("fq6PWnRgTgI", _ZNK7WebCore16HTMLImageElement11crossOriginEv) +STUB("fq9Nc2mYDwA", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData13isInitializedEv) +STUB("fqAS9GQTmOU", _ZN3sce2np3ipc17ServiceIpmiClient16RegisterServicesEPKNS1_17ServiceClientInfoE) +STUB("fqBbFOBcJHU", psl_is_public_suffix2) +STUB( + "fqClP3SC1oA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEC1ERS7_) +STUB("fqERqkvThgQ", OpenClosedCaptionAdvancedSettings) +STUB( + "fqF2T3M8uxk", + _ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer12setJoinStateERKNS3_16InitialJoinStateE) +STUB("fqHL2fhC7Lw", _ZN7WebCore27DocumentTimelinesController16resumeAnimationsEv) +STUB("fqLrWSWcGHw", devname) +STUB("fqaBR5S0rkA", JVM_DisableCompiler) +STUB( + "fqcTzZKXAhU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEED2Ev) +STUB("fqdGZ7GImpo", sceCtrlpPlayStop) +STUB( + "fqdJpCJ4KmM", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB( + "fqe1LCPIPoU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE10setContextEPNS2_10LibContextE) +STUB( + "fqeHHFgIkgE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEC1Ev) +STUB( + "fqexA4TLjKk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEaSERKS7_) +STUB( + "fqg2LN1m0c8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEEaSERSA_) +STUB( + "fqi8tw3o3aI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEE5resetEPS8_) +STUB("fqiICdanKlI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEC1Ev) +STUB("fqk8SC63p1U", sceNpScoreWaitAsync) +STUB( + "fqn03jyGwtc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEptEv) +STUB("fqsYz9A6rOA", _ZNK7WebCore15JSDOMWindowBase5proxyEv) +STUB("fquAdjX4Sws", rand_s) +STUB("fquLkyv1zr4", WKApplicationCacheManagerGetApplicationCacheOrigins) +STUB("fr-jP7r1PQk", _ZN7WebCore16CSSParserContextC2ERKNS_8DocumentERKN3WTF3URLERKNS4_6StringE) +STUB( + "fr09QA55Bxo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEC2Ev) +STUB("fr8FfPAyZk0", mono_field_get_parent) +STUB( + "frEIv6UvLto", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEptEv) +STUB("frFuGprJmPc", pthread_mutex_setyieldloops_np) +STUB("frIfNzwvN44", _ZN3sce7Toolkit2NP2V28Matching7Request8JoinRoomC1Ev) +STUB( + "frKMyo4uIo8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEC2ERS7_) +STUB("frL0X70yzJo", _ZN7WebCore19InspectorController27dispatchMessageFromFrontendERKN3WTF6StringE) +STUB( + "frLRXoheUMM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("frOwI7G9SR4", JVM_Accept) +STUB( + "frPG36tgHv0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEC1Ev) +STUB("frTcewvk9ao", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy17TrophyPackSummaryEE12deepCopyFromERS7_) +STUB("frUCbxuuRpE", sceDevUsbSuspend) +STUB( + "frVLx0KTLio", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEeqERKS9_) +STUB("frboxGjLbzE", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_22FriendsRankInformationEEC2Ev) +STUB( + "frcV6OZRBOo", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeaders7destroyEPS5_) +STUB("frfFUdBqGP4", + _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse24unsetMatchStartTimestampEv) +STUB("frglKD2Zk24", mono_aot_Mono_CSharpjit_code_start) +STUB( + "frhtQPIOEJs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEEaSERKSA_) +STUB( + "frj8MjS0J6Q", + _ZN8meta_gen11MsvPromoter28setKeyValue_TBLI_LanguageExtENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti) +STUB( + "frkS9P4wLL4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEaSERSA_) +STUB("frkxOcdxRY0", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead16setMaxSpectatorsERKi) +STUB( + "frmCGHaS7Nc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEdeEv) +STUB( + "frmKb4GI618", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEC2EPNS2_10LibContextE) +STUB("frnJSnjKjuM", utrie2_serialize) +STUB( + "frp5fAREDQg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE5clearEv) +STUB("frqq5Tky-zI", scePlayReadyEnvelopeInitializeRead) +STUB( + "frri8fKPED0", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser13unsetsortModeEv) +STUB("frsYgQQOiCE", uset_close_59) +STUB( + "frtHGA9fOm4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEneERKS9_) +STUB("frwz3eyuA6w", sceNpFriendListDialogUpdateStatus) +STUB("frx6Ge5+Uco", _Atomic_copy) +STUB( + "fryecGqawns", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEneERKS9_) +STUB( + "fryzKMB0xFg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEED1Ev) +STUB("fs1TCWwTYCA", _ZNK3sce2np8NpTicket13GetTicketSizeEv) +STUB("fs2BaxmsAZg", _ZN3sce2np3ipc14service_client14PollEventQueueEiPvm) +STUB("fs3u2NwzKL4", sceFsDrfsResumeSocket) +STUB("fs7IsFryZFc", SwCtrlSinkStreamSetWritePointer) +STUB( + "fsAxhc4e6Nc", + _ZN7WebCore5Cairo11drawSurfaceERNS_20PlatformContextCairoEP14_cairo_surfaceRKNS_9FloatRectES7_NS_20InterpolationQualityEfRKNS0_11ShadowStateE) +STUB("fsDniSr6+E0", mono_aot_Sce_Vsh_Np_Tmdbjit_code_start) +STUB("fsE8iRLJzFo", mono_aot_Sce_Vsh_Np_Asmunwind_info) +STUB("fsEJfN9fJF0", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_12CategoryInfoEE3getEv) +STUB("fsF-tGtGsD4", + _ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_bRSt8ios_basewe) +STUB("fsF26NaZNPA", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEEaSERS6_) +STUB("fsFnY2dn6g8", TEEC_RequestCancellation) +STUB("fsGY64WLzOQ", sceClPthreadDetach) +STUB("fsMou-R4zfM", _ZN7WebCore26MessagePortChannelRegistryD2Ev) +STUB("fsNnLDGt63o", _ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_11DOMRectListE) +STUB( + "fsOotdSwIuA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEC1EPS8_) +STUB("fsTc6ANOby8", _ZN7WebCore6JSFileC1ERKS0_) +STUB("fsYY3KlQfeQ", WKTextCheckerSetClient) +STUB("fsZdiho79Qs", WKURLResponseCopyURL) +STUB("fsarcblWWVY", ucol_getMaxExpansion_67) +STUB("fscoS+Gh3Sw", sceAvSettingSetAvOutputMode) +STUB("fsdDK9+jXuI", WKWebsiteDataStoreConfigurationGetStaleWhileRevalidateEnabled) +STUB( + "fsdh0JMoYYk", + _ZN3sce2Np9CppWebApi14SessionManager2V19ToFactory6createEPNS1_6Common10LibContextERKmPNS5_12IntrusivePtrINS3_2ToEEE) +STUB( + "fseE9ebg510", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("fsf54xvCbtM", _ZNK7WebCore14ScrollableArea24scrollOffsetFromPositionENS_8IntPointE) +STUB("fsgqunLD2b8", ubrk_current) +STUB("fsmobsLPvNA", _ZN3JSC7Symbols19asyncIteratorSymbolE) +STUB( + "fspJn9LTScw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEE5resetEPS6_) +STUB("fspq+Emvdvw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEmmEi) +STUB( + "fsqUXfpC-6U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEC1EPS8_) +STUB( + "fsvOBG-Ufug", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEptEv) +STUB("ft59B8V488U", _ZN3sce7Toolkit2NP2V28Matching12Notification14NewRoomMessageC1ERKS5_) +STUB("ft5HxbN0c1o", _ZNSt14error_categoryD1Ev) +STUB("ftCDzUULPbQ", uregex_setRegionAndStart_67) +STUB("ftCFzJjCE8o", + _ZNK3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer14joinStateIsSetEv) +STUB("ftEuf8cHTa0", + _ZNK3sce2Np9CppWebApi11UserProfile2V125GetPublicProfilesResponse6toJsonERNS_4Json5ValueEb) +STUB("ftFSZp41TOs", __tsan_mutex_pre_signal) +STUB( + "ftGi0u56hyk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEmmEv) +STUB( + "ftL6mjDmAVE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEEaSERKSA_) +STUB( + "ftM0njEZeqY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE7popBackEv) +STUB( + "ftO2hz+fd3k", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "ftQj57jsrnw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE7popBackEv) +STUB( + "ftV9apdT9AY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("ftaF5aJl7k0", sceNpTrophySystemWrapGetTrophyDetailsArray) +STUB( + "fteoAe2RlUA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEEaSERKSA_) +STUB("ftf-xlfBQpo", sceAgcDriverSysIsGameClosed) +STUB( + "ftkMzWtcrQk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEeqERKS9_) +STUB( + "ftkr4Z65rD4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEED2Ev) +STUB("ftpF6alPIhk", + _ZN7WebCore27ScrollingStateScrollingNode24setScrolledContentsLayerERKNS_19LayerRepresentationE) +STUB("fttiF7rDdak", _Call_once) +STUB( + "ftyETt7h3kk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE21intrusive_ptr_add_refEPS9_) +STUB("ftzOPSVbDqE", sceBgftServiceIntDownloadQueryTaskSection) +STUB( + "fu-pn4GY2L0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEE7get_refEv) +STUB( + "fu0IP5QP5Vk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEEcvbEv) +STUB( + "fu4AcEsKG2s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEE3getEv) +STUB("fu7wrVM5Hfc", _ZN3JSC28JSCustomGetterSetterFunction6s_infoE) +STUB("fuCQ5xUzG2U", X509_STORE_CTX_get1_chain) +STUB( + "fuElF14fJek", + _ZN3sce2Np9CppWebApi7Matches2V123ResponsePlayerStatistic8setStatsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_19AdditionalStatisticEEEEE) +STUB("fuG9EdgnTdQ", _ZNK3sce2Np9CppWebApi7Matches2V15Error11sourceIsSetEv) +STUB( + "fuJLO-7oZm4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "fuRTgRTDuS0", + _ZN3sce2Np9CppWebApi14IdentityMapper2V331PsnWebError_error_errorsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_24PsnWebError_error_errorsEEE) +STUB( + "fuSJhqMQzR8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEaSERKS7_) +STUB( + "fua7NoQ2Ycs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE5clearEv) +STUB("fucQSpZaJPw", _ZTVN15AbstractStorage14FacebookFolderE) +STUB("fuj1phHSHoM", uprv_decNumberTrim_67) +STUB("fuq9tGcbZic", rgctx_fetch_trampoline_mrgctx_21) +STUB("fuscqGblzaM", jpeg_idct_12x12) +STUB("fuu7Y7Yhsu4", + _ZN9Inspector17ScriptDebugServer20setBreakpointActionsEmRKNS_16ScriptBreakpointE) +STUB("fuwxa+XM0rQ", _ZNK3JSC22FullGCActivityCallback13didGCRecentlyEv) +STUB("fuyXHeERajE", _ZNSt12future_errorD1Ev) +STUB("fuzzBVdpRG0", _FDivide) +STUB("fv+YyDMYQs4", uprv_decNumberAbs_67) +STUB( + "fv+t0z4FQPY", + _ZN7WebCore6Editor28replaceSelectionWithFragmentERNS_16DocumentFragmentEbbbNS_10EditActionENS_22MailBlockquoteHandlingE) +STUB( + "fv3QiHOdtqA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEC1EPS6_PNS2_10LibContextE) +STUB("fvNywLhJFMg", mono_aot_Sce_Vsh_SysUtilWrapperunbox_trampolines) +STUB("fvT8j8fAkJE", _ZN3sce7Toolkit2NP2V28Commerce16RatingDescriptor8NAME_LENE) +STUB("fvTVv74NyuE", _ZN3sce2np16StreamReadBuffer8AllocBufEm) +STUB( + "fvbcClsjf5I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEC1EPNS2_10LibContextE) +STUB( + "fvcyYVPdmdI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEppEi) +STUB( + "fvekd6om1F0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEEaSERSA_) +STUB("fvgYbBEhXnc", _ZTISt7collateIcE) +STUB("fvpjTvRYrOs", png_set_expand_16) +STUB("fvrcm1+2LSY", + _ZN3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectator14setCustomData1EPKvm) +STUB( + "fvzhAtX7xbY", + _ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayerC2EPNS1_6Common10LibContextE) +STUB("fw+Z69DzrpQ", _ZN3sce2Np9CppWebApi15Personalization2V15ErrorC2EPNS1_6Common10LibContextE) +STUB( + "fw-Isy1qYC4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEdeEv) +STUB( + "fw-W9qbwSFQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEC2EPKS8_) +STUB("fw4+tIZ-4t8", _ZNK3sce3Xml3Dom8Document12getAttrValueENS1_6NodeIdE) +STUB("fw4riMtVRRY", _ZN7WebCore5ColorC1EOS0_) +STUB("fw9Gt6H7yCk", + _ZN3sce2Np9CppWebApi7Matches2V123ResponseMatchStatistics8fromJsonERKNS_4Json5ValueE) +STUB("fw9Uy25y8zE", uplrules_close_59) +STUB( + "fwAGC345k2I", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEC1Ev) +STUB("fwDXV58hgs4", vzone_getOffset2_67) +STUB("fwHTfTDLEJY", coil_load_module_internal) +STUB("fwRtYVa9Sr8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlotC1Ev) +STUB( + "fwYdaeuRgrM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEC1EPNS2_10LibContextE) +STUB( + "fwYmmGhhgKQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("fwcPR7+7Rks", sceImeVshUpdateContext2) +STUB("fwex8RRz9A4", _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE5beginEv) +STUB("fwjMm2JbksE", unumsys_isAlgorithmic_67) +STUB("fwklVZgzY9c", ures_findResource_67) +STUB("fwrLfExxKr8", _ZN4Manx15ProcessLauncher9terminateEi) +STUB( + "fwrW9nSfX1w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "fwtyRFXniFg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEEC2ERKSA_) +STUB( + "fwu535c9Us4", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_20ChallengeRecvDetailsENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB( + "fwvPXSVC6gw", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData24hasxPsnAtomicOperationIdEv) +STUB("fwzIUG9jAJE", _ZN3sce2np10JsonObject8SetFieldEPKcPKS1_PPS1_) +STUB("fx-H-TjSi0Y", _ZN7WebCore10Pasteboard16fileContentStateEv) +STUB("fx-xc8sC9bU", mono_aot_Sce_PlayStation_BclExtensionsjit_code_start) +STUB( + "fx3GuS1gdRE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEC2EPS7_PFvS9_EPNS2_10LibContextE) +STUB( + "fx3qreZ92Vc", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeader43setputPlayerSessionsNonPsnLeaderRequestBodyENS1_6Common12IntrusivePtrINS3_40PutPlayerSessionsNonPsnLeaderRequestBodyEEE) +STUB( + "fx51tm1FsWw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEC1EPS8_) +STUB("fx5nS1yOp-I", cairo_set_dash) +STUB( + "fxCkUm6EOho", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEED1Ev) +STUB("fxOxqM-wibk", _ZN3sce7Toolkit2NP2V29Messaging7Request17LocalizedMetadata18MAX_SIZE_DATA_NAMEE) +STUB( + "fxSSn1Jlrj0", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("fxVR6GHRQAk", _ZN6WebKit12ChildProcess18platformInitializeEv) +STUB( + "fxYJPOox79I", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEeqERKS9_) +STUB( + "fxdBSLlbCLg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEEcvbEv) +STUB("fxkG2Qd5kmE", _ZN3JSC13JSSetIterator10createPairEPNS_14JSGlobalObjectENS_7JSValueES3_) +STUB( + "fxlzW3SSdGc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEEptEv) +STUB("fxsKnwXGxTU", _ZNK7WebCore12TextEncoding6encodeEN3WTF10StringViewENS_19UnencodableHandlingE) +STUB("fxtTHmD8BUM", rgctx_fetch_trampoline_mrgctx_53_p) +STUB( + "fxux+QxqJ+Y", + _ZN3sce2Np9CppWebApi14ConnectAccount2V216PartnerTokensApi26ParameterToGetPartnerToken12setpartnerIdEPKc) +STUB("fxvToTE-vgs", uloc_canonicalize_67) +STUB("fxvx7w3VdJg", ucal_getCanonicalTimeZoneID_67) +STUB( + "fy5NLGgRfPc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEmmEi) +STUB("fy6ntM25pEc", sceImeDialogGetCurrentStarState) +STUB( + "fyASTcXBYvI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEC2EPS7_PFvS9_EPNS2_10LibContextE) +STUB("fyBcK2uVX9E", _ZN3WTF10StackTrace17captureStackTraceEii) +STUB( + "fyDYmFrlAXw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEEC1Ev) +STUB("fyEt+b7Vf2k", _ZN9Inspector18InspectorHeapAgentdaEPv) +STUB( + "fyJW9g8EACw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEED2Ev) +STUB("fyPeCKJ94Hg", __inet_pton) +STUB("fyRmqtkIKXo", _ZN3sce7Toolkit2NP2V27Session11Invitations5resetEv) +STUB("fyVS948qXVg", Java_sun_awt_GnmUtils_bdjbgClear) +STUB( + "fyVjlz82H+g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEE7add_refEv) +STUB("fydJOJjDxX4", _ZN15AbstractStorage7StorageD2Ev) +STUB( + "fyh9+NUIDwU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEeqERKS9_) +STUB( + "fyqxmPtgsp0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE6resizeEj) +STUB( + "fytThHKE+7w", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("fyuJfb31TyU", _ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetail12setFirstNameEPKc) +STUB("fyxyDtfex64", _ZN3JSC6JSCell11getCallDataEPS0_RNS_8CallDataE) +STUB("fz-00XG-VNU", sceNpSnsIntUnlink) +STUB( + "fz-F1v0MaWU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEEcvbEv) +STUB("fz18fmDwFBM", sceFsUfsCheckCleanFlag) +STUB("fz2LehpxqIc", C1hi) +STUB("fz3oxzTvcvI", sceVisionManagerSetCallbackForUpdateRunningStatus) +STUB( + "fz4626beKRY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEneERKS9_) +STUB("fz9IVnkE9u8", sceCesMbcToUtf16be) +STUB("fzCJnTUBLeM", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEE3getEv) +STUB("fzF1TaOynq0", _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities5Error9getReasonEv) +STUB("fzFqkORHYR0", _ZN3sce7Toolkit2NP15PresenceRequestC2Ev) +STUB( + "fzI4ut8ePfk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEEC2ERSA_) +STUB("fzJdEihTFV4", sceGnmGetProtectionFaultTimeStamp) +STUB("fzRDRAPXuWc", sceNpGriefReportIsInit) +STUB( + "fzScgXxfrJo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEE7get_refEv) +STUB("fzT90m90bBk", Java_java_awt_GnmGraphics_nativeClearRect) +STUB("fzYRZqywpBk", _ZN7WebCore18TextureMapperLayernwEm) +STUB( + "fzcZXpkXZ3M", + _ZN3sce2Np9CppWebApi14SessionManager2V141PostGameSessionsSearchResponseBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_34PostGameSessionsSearchResponseBodyEEE) +STUB("fzgTb4rmF8o", sceFsLvdAttach2) +STUB("fzgkSILqRHE", _WScanf) +STUB("fzguXBQzNvI", sceSystemServiceChangeVceClock) +STUB("fzklomHrPGI", _ZN3sce7Toolkit2NP2V27Ranking12FriendsRanksaSERKS4_) +STUB("fzp8a-tnBGw", _ZN3sce2Np9CppWebApi14SessionManager2V110FromMemberC2EPNS1_6Common10LibContextE) +STUB("fztivxfEtZo", _ZN7WebCore9HTMLNames12dropzoneAttrE) +STUB("fzyMKs9kim0", sceKernelWaitEqueue) +STUB("fzzBpJjm9Kw", sceHttpDbgGetRequestStat) +STUB( + "g+3kcIiSAWs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "g+8DrKzhVMs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEE5resetEPS8_) +STUB( + "g+LK7H0YUVw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE5beginEv) +STUB("g+MtnvgmCMk", _ZN7WebCore11FontCascadeC1Ev) +STUB("g+Neom2EHO8", __asan_memcpy) +STUB( + "g+Ogdo48j3k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEE11release_refEv) +STUB("g+OksXT5W6g", mono_aot_Sce_Vsh_Sl2_Sl2Commonunbox_trampolines_end) +STUB("g+PZd2hiacg", scePthreadCondDestroy) +STUB( + "g+ZmPEUfu8I", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi26deleteMultiVariablesByUserEiRKNS4_37ParameterToDeleteMultiVariablesByUserERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB("g+f7a63flt0", _ZNK3sce2Np9CppWebApi7Matches2V17Subtask13getActivityIdEv) +STUB("g+fS-cgAa4w", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_11TusVariableENS2_IS4_EEEE7addressERKS6_) +STUB("g+p8+N9n-vc", + _ZN3sce2Np9CppWebApi7Matches2V119CreateMatchResponseC2EPNS1_6Common10LibContextE) +STUB("g+wQ5ZXT7i8", _ZN7WebCore19MediaElementSession25updateMediaUsageIfChangedEv) +STUB("g+wkbeAPQ-M", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEEcvbEv) +STUB( + "g+xfTpDePYw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEED2Ev) +STUB("g+zYpLVI-Ss", monoeg_g_get_prgname) +STUB( + "g-59S5im7uQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEeqERKS9_) +STUB( + "g-6TdR0m2kg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEE3getEv) +STUB( + "g-BNRIJLIew", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEC1ERKS7_) +STUB("g-C5shOvH1Y", glClearBufferfv) +STUB("g-F7qvAfhAo", _ZN3sce2np8JsonNullD0Ev) +STUB("g-FuaSuOjuE", Java_java_net_NetworkInterface_getByName0) +STUB( + "g-HOy1EJEcw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEC2Ev) +STUB("g-HRQcdZBaw", _ZNK3sce2Np9CppWebApi7Matches2V118RequestMatchPlayer6toJsonERNS_4Json5ValueEb) +STUB("g-HYF9KbZBI", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10setString8EPKc) +STUB("g-McpZfseZo", strtouq) +STUB("g-OlewZCuU8", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIjEC1EPj) +STUB( + "g-Qh6M6zjXM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEmmEi) +STUB("g-SjvruXQtc", WKResourceCacheManagerClearCacheForAllOrigins) +STUB( + "g-UyJmJdNX0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "g-Wn9hTpVf0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEaSERKS7_) +STUB("g-XVEn-57y8", glIsShader) +STUB( + "g-Y4FCdTZ-E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEmmEv) +STUB( + "g-YGvjkxxxI", + _ZN7WebCore8Document35enqueueSecurityPolicyViolationEventEONS_28SecurityPolicyViolationEvent4InitE) +STUB("g-a806j7Kd8", _ZN3sce7Toolkit2NP17PlayedWithRequestC1Ev) +STUB("g-bu34j3VmE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V112OnlineStatusEEC2EPS6_) +STUB("g-dj9wSpmVw", AnnotateMutexIsNotPHB) +STUB("g-fUPD4HznU", _ZTIh) +STUB("g-o1zr0I7NU", sceSdmaUnmapUserVAddress) +STUB("g-qkr5NChcY", _ZNK7WebCore11JSDOMMatrix7wrappedEv) +STUB("g-rkXpulHMc", sceApplicationBeginSclkChange) +STUB("g-uiNhXFvKM", X509_get0_extensions) +STUB( + "g-vCahvyprQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEdeEv) +STUB("g-zCwUKstEQ", sceSslEnableOptionInternal) +STUB("g0-aiGCmPi4", __dso_handle) +STUB("g00+ZT9fKA0", + _ZN3sce2Np9CppWebApi14IdentityMapper2V311PsnWebErrorC2EPNS1_6Common10LibContextE) +STUB("g02zKAl7tFI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEEC1EPS6_) +STUB("g065oXBaL9o", _Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm14GdsPerfCounterE) +STUB("g0AEr857uzM", g_string_append_c) +STUB("g0BjJvv2vsw", p5s) +STUB( + "g0GJlFChT1A", + _ZNK7WebCore21ContentSecurityPolicy19allowFrameAncestorsERKN3WTF6VectorINS1_6RefPtrINS_14SecurityOriginENS1_13DumbPtrTraitsIS4_EEEELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEERKNS1_3URLEb) +STUB( + "g0GT32eFVgM", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions7setviewEPKc) +STUB( + "g0JcTUQu5yc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE3endEv) +STUB("g0MFs2FZPrk", _ZN3JSC7Symbols17filterPrivateNameE) +STUB("g0McDMiyiN8", _ZNK7WebCore21ContentSecurityPolicy15responseHeadersEv) +STUB("g0N8k8D9J44", sceRemoteplayGiveApproval) +STUB( + "g0RwjReZ790", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge18ChallengeThumbnailEE19setCustomReturnCodeEi) +STUB("g0THuujzWnQ", mono_aot_Sce_Vsh_PsnMessageUtiljit_code_end) +STUB("g0VTBxfJyu0", sceKernelGetCurrentCpu) +STUB("g0cCJmozmnQ", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku8getLabelEv) +STUB("g0dTAJEvNs0", _sceNpMallocImpl) +STUB("g0dZ4d0AWws", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V18SortModeEEppEi) +STUB("g0dxBNTspC0", sceNpTrophySystemGetNextTitleFileEntryStatus) +STUB("g0eZJtTxWrg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEcvbEv) +STUB("g0iXiEN8XLk", uiter_setString_67) +STUB("g0jMGsjjNbY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament5EventEE12deepCopyFromERS7_) +STUB( + "g0pnI+mT3kE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE3endEv) +STUB( + "g0pu7tqo1Jk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "g0umf1qe6aE", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEEiRNS2_10LibContextEPT_m) +STUB("g0vmm9VmCFY", _ZN3WTF15FilePrintStream4openEPKcS2_) +STUB("g0wTG9KImzI", sceLncUtilGetAppTitleId) +STUB( + "g0y2SH8etWI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEC2ERKS7_) +STUB( + "g14PuHuysuM", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsers63setpostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyENS1_6Common12IntrusivePtrINS3_60PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEE) +STUB( + "g1BAuEQJiRQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEC1Ev) +STUB("g1E3WhunWTM", _ZN7WebCore31BasicColorMatrixFilterOperation5blendEPKNS_15FilterOperationEdb) +STUB( + "g1HaqEmB85Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE8copyFromERKS9_) +STUB( + "g1LOJx60nfg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE3endEv) +STUB("g1N0rb2bGCs", _ZN3NTF22URLRequestJobSchedulerD1Ev) +STUB("g1Rc0MQddG0", FT_Vector_Transform) +STUB("g1SU88IfEO4", sceMusicCoreServerKillCurrentCore) +STUB( + "g1SlMqubc5E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEC2EPS8_) +STUB( + "g1TW16dSzEQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEC2EPNS2_10LibContextE) +STUB("g1aT0-9vSfo", _ZN3NTF6ThreadC1Ev) +STUB("g1f+Gd4iWBw", scePerfPmcMcSeqStart) +STUB( + "g1fcAXOF9tY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "g1jV-957MiI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEdeEv) +STUB( + "g1jjsc0k+M4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEC2Ev) +STUB( + "g1kR7lKL1iM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEppEi) +STUB("g1pN7teDZsI", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15Error16unsetReferenceIdEv) +STUB( + "g1r21vw8oEE", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC2ERKS7_) +STUB( + "g1u7F2D6u8w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEC2EPS8_) +STUB("g1uaNydmRiE", _ZN7WebCore14DocumentLoader12dataReceivedERNS_14CachedResourceEPKci) +STUB( + "g1wnjq7kgwE", + _ZN3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectatorC2EPNS1_6Common10LibContextE) +STUB( + "g1x+jaNL6s0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE6resizeEj) +STUB("g1ysxao8QwQ", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIdEmmEi) +STUB("g26fUx+ekD4", _ZN3sce7Toolkit2NP2V26Trophy7Request6UnlockC2Ev) +STUB("g2Dgo0zmHL8", ERR_error_string_n) +STUB( + "g2E1-92pDbg", + _ZN7WebCore22ScriptExecutionContext10postTaskToEN3WTF16ObjectIdentifierINS_36ScriptExecutionContextIdentifierTypeEEEONS0_4TaskE) +STUB("g2GrmwWKLHA", rgctx_fetch_trampoline_mrgctx_120) +STUB( + "g2IR1LTWUik", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEEaSERKSA_) +STUB( + "g2OpSxhd2uM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE8capacityEv) +STUB( + "g2TdtAB73Io", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("g2VqokawlPo", _ZTVN7WebCore27TranslateTransformOperationE) +STUB( + "g2dEqFnhFuw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB( + "g2fKKIBdOTg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEED1Ev) +STUB("g2fw8kXx2IU", _ZN7WebCore9DragImageD2Ev) +STUB("g2oYm1DitDg", sceUsbdGetStringDescriptor) +STUB("g2p7fkJpuC0", FTA_Support_Format_Type1) +STUB("g2tViFIohHE", sceAudioOut2Initialize) +STUB("g3+dZ3pqExs", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfoC1ERS5_) +STUB("g32w6rnsV-0", sceIduUtilUpdateSelf) +STUB( + "g32xE3m8X1o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEC1Ev) +STUB( + "g35Ac2lWbUc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE3endEv) +STUB( + "g36Hhi+JjLA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE8pushBackERKS6_) +STUB( + "g3Cfw1Na5RE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEEaSERKSA_) +STUB( + "g3Cwy3TjA6I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("g3CyiTf6nMY", sceVoiceChatGetChatGroupMemberInfoList) +STUB("g3DGo0ZHsBk", mono_code_manager_init) +STUB("g3DKNOy1tYw", sceHmdInternalSetSidetone) +STUB( + "g3Dr-rOS+ZY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEEptEv) +STUB("g3MBU80Wc68", + _ZN3WTF26normalizeLineEndingsToCRLFEONS_6VectorIhLm0ENS_15CrashOnOverflowELm16EEE) +STUB("g3MDJABPLh0", _ZN4Manx11BundleOrbisD2Ev) +STUB("g3O1JgTFs-A", _ZNK3WTF3URL8protocolEv) +STUB("g3PNjYKWqnQ", sceRemoteplayGetConnectionStatus) +STUB("g3Qdjto8V0g", WKStringGetUTF8CStringNonStrict) +STUB( + "g3SfitrXm70", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEE11release_refEv) +STUB("g3ShSirD50I", wcsrchr) +STUB( + "g3VLuC2uJLE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEC2ERS7_) +STUB( + "g3ZZzJaUMIA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V110Reputation9setGlobalERKNS1_6Common12IntrusivePtrINS3_20ReputationPropertiesEEE) +STUB("g3bB4owz4Zs", _ZN3JSC7Symbols35instanceFieldInitializerPrivateNameE) +STUB("g3ckT950PYU", mono_aot_appunbox_trampolines) +STUB("g3dK2qlzwnM", _LSincos) +STUB("g3dT-4i0rS0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEcvbEv) +STUB( + "g3ladeyxtWk", + _ZN9Inspector31NetworkBackendDispatcherHandler20LoadResourceCallback11sendSuccessERKN3WTF6StringES5_i) +STUB( + "g3mL84ud7Kg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEE11get_deleterEv) +STUB( + "g3oM1DZ5K9E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEC2Ev) +STUB("g3p-JR0-PiY", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Error14getReferenceIdEv) +STUB( + "g3wf8FevbBs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEEC2Ev) +STUB( + "g3y6iiZOh84", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEC2EPKS8_) +STUB( + "g40I-aFpKVo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEC1Ev) +STUB( + "g40f-OpQzwU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEC1EPS8_) +STUB("g42bgpVPZXw", sceHmdGetFieldOfViewApprox) +STUB("g46lcz7ehyY", _ZNK3WTF8Collator7collateENS_10StringViewES1_) +STUB("g4AZyxpSAlA", scePlayGoGetOptionalChunk) +STUB("g4BlY6ulxpY", _ZN7WebCore11MathMLNames14denomalignAttrE) +STUB("g4DKkzV2qC4", sceNetBandwidthControlSetIfParam) +STUB("g4GeZuGDulw", _ZNK3sce2Np9CppWebApi6Common6VectorImE3endEv) +STUB("g4K51cY+PEw", sceRemoteplayGetConnectHistory) +STUB( + "g4KyBYdXVRM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEED2Ev) +STUB( + "g4M-ukrMtic", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEC2Ev) +STUB("g4OMF45UKY8", _ZNK3sce2Np9CppWebApi12Leaderboards2V14User7getPcIdEv) +STUB("g4P89vRML3M", ucnv_fromUnicode_UTF8_67) +STUB("g4Qh85u8pE8", sceMusicCoreServerRegistEventCallback) +STUB("g4bGaStd0ow", _ZN3sce7Toolkit2NP2V24Core24NpToolkitMemoryPoolStatsD1Ev) +STUB("g4glOvOSSrY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEC1ERS7_) +STUB("g4l-4OpdUKc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEEC2Ev) +STUB("g4qukwf+CiM", JVM_GetArrayLength) +STUB( + "g4x6BwI89SM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEC1EPS8_) +STUB("g4xKiNSDPMY", mono_bitset_clear) +STUB("g4zOkblr5LI", _ZNK12video_parser5vpcom6String10GetWStringEv) +STUB("g51oLuW555o", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V115CompetitionTypeEEC1EPS6_) +STUB( + "g58APdyJ-5Y", + _ZN15AbstractStorage14YoutubeStorage9GetForderERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_6FolderEE) +STUB( + "g58gPub0t60", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEC1EPKS8_) +STUB("g5Ar33g4Pa8", mono_aot_Sce_Vsh_CloudClientunwind_info) +STUB("g5AycyyOc98", udatpg_clone_67) +STUB( + "g5FHrMiBYz0", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("g5IlPCOAT2s", mono_get_method) +STUB( + "g5LRlpc627M", + _ZN7WebCore6Editor18insertDictatedTextERKN3WTF6StringERKNS1_6VectorINS_20DictationAlternativeELm0ENS1_15CrashOnOverflowELm16EEEPNS_5EventE) +STUB("g5OUObarCN0", _ZN3WTF27releaseFastMallocFreeMemoryEv) +STUB("g5PY9P+hHoI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEdeEv) +STUB("g5RyQiPhMXY", __log__D) +STUB("g5S0kerYDgw", _ZN7WebCore13HitTestResultC1ERKNS_15HitTestLocationE) +STUB( + "g5SYIr3zScM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEC1Ev) +STUB("g5SpzI8k9O0", mono_aot_Sce_Vsh_VideoEdit_Wrappermethod_addresses) +STUB("g5TJbw7fqRI", _ZN7WebCore22EmptyFrameLoaderClient12blockedErrorERKNS_15ResourceRequestE) +STUB("g5VNTUbhBBw", mono_aot_Sce_Vsh_UsbStorageScenejit_code_start) +STUB( + "g5WAiGxqlTg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEC2Ev) +STUB("g5XaIbYcJw0", sceFsISSchedConfigThread) +STUB("g5cG7QtKLTA", _Tss_delete) +STUB("g5jawjIIlM4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS12TusVariablesEED2Ev) +STUB("g5kOvz6Qjg8", mono_aot_System_Runtimeunbox_trampolines) +STUB("g5n1MMQCGVA", _ZN7WebCore24FrameDestructionObserverC2EPNS_5FrameE) +STUB("g5qmS3CoA3I", sceNpUniversalDataSystemIntCreateRecordObject) +STUB("g5wtyJJZY4I", jpeg_idct_float) +STUB("g6-f2xOHwvU", _ZNK7WebCore11XPathResult14snapshotLengthEv) +STUB( + "g60TNkyDcLw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEdeEv) +STUB( + "g61TB8GTII0", + _ZN3sce2Np9CppWebApi14SessionManager2V125LeaderWithOnlineIdFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_18LeaderWithOnlineIdEEE) +STUB("g68eYcZS7PY", sceAgcDriverGetGpuRefClks) +STUB( + "g6Fi1iVk3Kc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEED1Ev) +STUB( + "g6eQUSiSB8A", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEptEv) +STUB("g6fhW-+NuuU", sceKernelAllocateTraceDirectMemory) +STUB( + "g6fmv8eQr7E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE8capacityEv) +STUB("g6gKfjgJEGU", _ZN3WTF18ExternalStringImpl6createEPKhjONS_8FunctionIFvPS0_PvjEEE) +STUB( + "g6iAqmSbmqE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEneERKS9_) +STUB("g6lZuLAb28Q", _ZN3sce7Toolkit2NP2V28Matching5WorldD1Ev) +STUB( + "g6niuU9w1ZY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEE5resetEPS9_) +STUB("g6oPi2XqTnQ", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody17getNpServiceLabelEv) +STUB("g6ojqW3c8Z4", sceUserServiceGetAccessibilityKeyremapData) +STUB( + "g6p87+DmhTw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEE7add_refEv) +STUB( + "g6pEcIn4G5k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEC2Ev) +STUB("g7+SzrMDF9M", _ZN3sce3pss5orbis5video15VideoPlayerBase9GetVolumeEv) +STUB( + "g7-xKz-PBfU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEEaSERKSA_) +STUB( + "g75JmKjLKAc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB("g787tMBA1TE", sceShellCoreUtilSetPsStoreIconState) +STUB( + "g7DPg9i2DwE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "g7E78Ukt9HU", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE11hasResponseEv) +STUB( + "g7Hvx-ehBFQ", + _ZN7WebCore28collectVaryingRequestHeadersEPKNS_9CookieJarERKNS_15ResourceRequestERKNS_16ResourceResponseE) +STUB("g7Id6p6fdis", + _ZN3JSC4Yarr11YarrPatternC1ERKN3WTF6StringENS2_9OptionSetINS0_5FlagsEEERNS0_9ErrorCodeE) +STUB("g7LNyphAmDQ", uprv_convertToLCID_67) +STUB("g7RbI+2fjTc", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12RangeOfRanksEE3getEv) +STUB("g7U6yKITcyw", _ZN3JSC6JSCell13estimatedSizeEPS0_RNS_2VME) +STUB("g7UKPyNoS6s", _ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEEC1Ev) +STUB("g7UMnKA4Bus", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V111OfferStatusEEdeEv) +STUB( + "g7V1UPJgsKs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEE5resetEPS6_) +STUB("g7VJwWXQAP0", _ZNK7WebCore18RenderLayerBacking12tiledBackingEv) +STUB( + "g7YUSrJNrMU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEED1Ev) +STUB("g7Z+0gHNvc4", _ZN3sce7Toolkit2NP2V27Ranking7Request13GetUsersRanksC2Ev) +STUB("g7eeHDMZC-A", + _ZN3sce7Toolkit2NP2V212ActivityFeed7Request15PostInGameStory20USER_COMMENT_MAX_LENE) +STUB( + "g7f6wniZ7pg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("g7g1+cBiEKo", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V122UploadDataResponseBodyC1EPNS1_6Common10LibContextE) +STUB("g7gjCDEedJA", + _ZNSt13basic_filebufIwSt11char_traitsIwEE7seekoffElNSt5_IosbIiE8_SeekdirENS4_9_OpenmodeE) +STUB("g7j2c8PezjA", _ZN3sce7Toolkit2NP2V27Ranking12RangeOfRanks8MAX_PCIDE) +STUB("g7kM+dtQB0o", sceDeci4hCreateHostProcess) +STUB( + "g7lTsFTaY7c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEEC1Ev) +STUB("g7m3aVpkWeA", _ZN7WebCore9HTMLNames9outputTagE) +STUB( + "g7nHXikoTnY", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("g7u47QRLEOU", + _ZN3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSessionC1EPNS1_6Common10LibContextE) +STUB("g7zzzLDYGw0", strdup) +STUB("g8-wnopz0jE", JSValueGetType) +STUB( + "g80BkkFS6zY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE5beginEv) +STUB( + "g81Al3pzkOI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE4sizeEv) +STUB("g8Euucf0v3s", _ZN7WebCore8FormData6createEPKvm) +STUB("g8Ijr2P+ShQ", + _ZN7WebCore12JSAudioTrack15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB("g8Jw7V6mn8k", _ZNSt14error_categoryD2Ev) +STUB( + "g8Pfks3Qpn4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEixEm) +STUB("g8T4x0GD9Wo", sceShellCoreUtilGetGnmCompositorOnScreenProfilerFlag) +STUB( + "g8VFzqnRHX8", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("g8YNrKJSCJ0", _ZNK7WebCore16EventListenerMap4findERKN3WTF12AtomicStringE) +STUB("g8cM39EUZ6o", sceSysmoduleLoadModule) +STUB("g8eLxL9VAhU", FT_OpenType_Validate) +STUB("g8iiJ8JhJmY", _ZN7WebCore11HistoryItem12setURLStringERKN3WTF6StringE) +STUB( + "g8oXLbDsyfA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE5clearEv) +STUB("g8oyxbexJpI", + _ZNK7WebCore12EventHandler20hitTestResultAtPointERKNS_11LayoutPointEjRKNS_10LayoutSizeE) +STUB("g8ozp2Zrsj8", _Gettime) +STUB("g8phA3duRm8", _ZTSPi) +STUB("g8rdTOS2ezI", monoeg_g_markup_parse_context_new) +STUB("g8rs9gM3qAQ", sceApplicationSystemSuspend) +STUB("g8sFOa+vaUU", _ZN7WebCore8Settings38setLayoutViewportHeightExpansionFactorEd) +STUB("g8tvQzCCM3o", rgctx_fetch_trampoline_rgctx_34_p) +STUB("g8urym+l4UU", sceEditMp4QueryMemSize) +STUB( + "g8wF9EPmsD0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEeqERKS9_) +STUB( + "g8wjBi0iAus", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE5emptyEv) +STUB( + "g8zVs-2CoWc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEC1EPS6_PNS2_10LibContextE) +STUB("g96Sq2k+-zE", _ZN3JSC12JSLockHolderC2ERNS_2VME) +STUB( + "g96i5kYXrKk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEED1Ev) +STUB( + "g9C3tFFASgE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEE11get_deleterEv) +STUB( + "g9CKWO0xjLY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEE7add_refEv) +STUB("g9E2ShyXqJU", BgsStorageFreeKeyValueResult) +STUB("g9FmpQw2M-U", _ZNK3sce2Np9CppWebApi6Common6Binary9getBinaryEv) +STUB("g9FncxNrnmw", sceUltGetQueueInfo) +STUB("g9QtTkNAjjQ", sceDataTransferTargetRequestActivate) +STUB( + "g9Sy9iA6jBw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEED1Ev) +STUB( + "g9TBL-P5Lw8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEEdeEv) +STUB( + "g9WQ-Sncl9U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEE11get_deleterEv) +STUB("g9YCEM72+bc", sceUserServiceSetNotificationSettings_1) +STUB("g9YJnS7j2Bk", _ZNK7WebCore16DocumentTimeline34numberOfActiveAnimationsForTestingEv) +STUB( + "g9eXPSWRPKI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEEC2Ev) +STUB("g9gbWvfyPvA", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEEC1ERKS6_) +STUB( + "g9iUuYWeYoM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE5clearEv) +STUB( + "g9mcFz2-luE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEE11get_deleterEv) +STUB("g9pMjY6sjDw", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_15CategoryInfoSubENS2_IS4_EEEE8allocateEmPKv) +STUB("g9uwUI3BlQ8", sceSaveDataInitializeForCdlg) +STUB( + "gA+HrjxyMQI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEED1Ev) +STUB("gA0CaCjJpg0", _ZN3sce2np18MemoryStreamReaderD0Ev) +STUB("gA4Xnn+NSGk", sceHmdInternalSeparateModeOpen) +STUB( + "gA6EuTWmhbo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEEptEv) +STUB("gA6XVfF-oqU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEE3getEv) +STUB( + "gA7w1SJ59I8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEdeEv) +STUB("gA7zC2wtgxo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEppEv) +STUB("gA9rEBMDK58", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110ResultTypeEEppEi) +STUB("gAAcmQhQ2TU", YGNodeReset) +STUB("gAHkf68L6+0", CERT_STORE_traversePskListHead) +STUB("gAHvg6JPIic", scePadStopRecording) +STUB( + "gAI+qwObUcM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("gAJtY5O9w+o", unorm2_hasBoundaryAfter_67) +STUB( + "gAK2TKr9ETs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEdeEv) +STUB("gALFgNfF+9I", _ZN3sce4Json6StringC2ERKS1_) +STUB( + "gAMFk69tC7k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("gAS7CdR7tBc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEED2Ev) +STUB("gASbJqd+gTk", _ZNSt9basic_iosIwSt11char_traitsIwEE7copyfmtERKS2_) +STUB("gAT2BtxphDM", glSamplerParameterfv) +STUB("gAZOY6lVqS0", mono_aot_System_Resources_ResourceManagerunbox_trampolines_end) +STUB( + "gAaHJ9b4U90", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE4sizeEv) +STUB("gAcOgd1WcZ4", _ZN3sce7Toolkit2NP2V28Matching17AttributeMetadataD1Ev) +STUB("gAeX4lrarjk", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEED1Ev) +STUB( + "gAfQ+fhs6fE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE10setContextEPNS2_10LibContextE) +STUB("gAgN+HkiEzY", sceVoiceResumePort) +STUB("gAhCn6UiU4Y", sceGnmSetVsShader) +STUB("gAjvCUHeAbE", _init) +STUB("gAmDIf0rNzw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEC1EPS8_) +STUB( + "gAq4Hp78WAY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEE3getEv) +STUB("gAsOAG-t-7s", SHA1_Update) +STUB("gAtc79UTt5E", sceAmprMeasureCommandSizeWriteAddressFromTimeCounter_04_00) +STUB("gAvF0fPDITg", + _ZNK3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse14accountIdIsSetEv) +STUB("gAyT42nwElM", sceShellCoreUtilGetCheckerStringEx) +STUB("gB+OkFvkSXE", sceCamera2SetHue) +STUB("gB-Yi9qahc4", _ZN8meta_gen13JpegRetriever15ProcessIPTCDataEv) +STUB( + "gB65og2BYlU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB( + "gBJl7oZMIJA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("gBLMGhB6B9E", sceUserServiceSetAgeVerified) +STUB("gBLonhzYD8c", mono_aot_Sce_Vsh_DbPreparationWrapperjit_got) +STUB("gBMsh-Qa5rM", g_JSAPIWrapperObjectPoison) +STUB( + "gBY73XS9QN0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEEaSERKSA_) +STUB("gBZnTFMk6N0", _ZTISt10moneypunctIwLb1EE) +STUB("gBcHNw5c3Ng", _ZN7WebCore21ISOTrackEncryptionBoxC1ERKS0_) +STUB("gBeifc27nO4", _ZN3sce2np10NpOnlineIdC2Ev) +STUB("gBjrBKCIUVA", _ZN3sce7Toolkit2NP2V29Challenge13ChallengeDataD1Ev) +STUB( + "gBnrzm5RFYo", + _ZN7WebCore21SerializedScriptValueC2EON3WTF6VectorIhLm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("gByWl2lZ3Eg", sceMoveGetCalibrationInfo) +STUB("gC0DGo+7PVc", _ZGVNSt7collateIcE2idE) +STUB( + "gC2eIfPyp64", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("gC2k54oPeFY", png_malloc_default) +STUB( + "gC5wHOdCtQE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEE11release_refEv) +STUB( + "gC65rwYXfPY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEEC2ERSA_) +STUB( + "gC7Xz3pKngI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "gC8BoQoW8Eo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE4sizeEv) +STUB( + "gC8yVxSCTFY", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13integer4IsSetEv) +STUB("gCA-D2wiiD0", sceUltReaderWriterLockDestroy) +STUB( + "gCDJz25CjkY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEE5resetEPS9_) +STUB("gCFmZWNDeMU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE7reserveEi) +STUB( + "gCGmKUN78kk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE10setContextEPNS2_10LibContextE) +STUB("gCGvxqrkDU4", mono_class_num_properties) +STUB( + "gCRgHjzzWw4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEppEv) +STUB("gCWqjdrnC9g", _ZNK7WebCore11MediaPlayer28requiresImmediateCompositingEv) +STUB( + "gCblOhBOMtY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEC2Ev) +STUB("gCeAI57LGgI", sceUltUlthreadJoin) +STUB("gCf7+aGEhnU", __clzdi2) +STUB( + "gCjNhsB8JK4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("gCjTEtEsOOw", sceHmdInternalMmapGetModeId) +STUB( + "gCjpmcU1ATs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB("gCmQm6dvMxw", sceAudioPropagationReportApi) +STUB("gCtwryMWXrE", __tsan_atomic64_fetch_and) +STUB("gCx93FeUqcg", WKBundleDOMWindowExtensionGetTypeID) +STUB("gD+Q++3YwBQ", _ZN7WebCore9HTMLNames24autopictureinpictureAttrE) +STUB("gD1m+NqX994", _ZN3WTF31NonSharedCharacterBreakIteratorD1Ev) +STUB("gD21JXx6j-U", _ZN7WebCore4PageC2EONS_17PageConfigurationE) +STUB( + "gD2JbtjjRVg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEC2EPNS2_10LibContextE) +STUB("gD32LzUw9AQ", _ZNK9Inspector14ConsoleMessage5levelEv) +STUB("gD4wh2+nuuU", sceSystemServiceInitializeForShellCore) +STUB("gD8Fx0ZN25Q", rgctx_fetch_trampoline_rgctx_61) +STUB("gDCWqaQENaw", _ZN3JSC4callEPNS_14JSGlobalObjectENS_7JSValueERKNS_7ArgListEPKc) +STUB( + "gDKnDynF+1k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEmmEv) +STUB("gDSvt78H3Oo", sceGameLiveStreamingScreenSetMode) +STUB( + "gDXBkAwOrWM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEEaSERKSA_) +STUB( + "gDXCuQeK0fU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "gDd+XfaxvvI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEED1Ev) +STUB("gDm5a6GSE94", scePlayerInvitationDialogTerminate) +STUB("gDo9Uhm1M3Q", uprv_realloc) +STUB("gDsvnPIkLIE", _ZNSt11regex_errorD1Ev) +STUB( + "gDufdmAiUKQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "gDyj9EfqXyg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEptEv) +STUB("gE+M+U9p4Mo", _ZN3WTF6Thread20initializeCurrentTLSEv) +STUB("gE+nHqJuNlU", _ZN7WebCore37BasicComponentTransferFilterOperationD1Ev) +STUB( + "gE2Ztsrw2NI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEEC2ERKSA_) +STUB("gE2z3yI+8Fw", _ZN9Inspector24BrowserBackendDispatcherD1Ev) +STUB("gE40jgJgPsk", sceAvSettingChangeOutputModeForDiag) +STUB( + "gE8QnSUqITA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEppEi) +STUB("gE9uA4PkGX8", + _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOffer28getxPsnAcceptPlatformNamePs5Ev) +STUB("gEBIkRrqDBA", sceMatUnregisterAllResourcesForOwner) +STUB("gEFCIO5VsW0", _ZN3JSC7Symbols29copyDataPropertiesPrivateNameE) +STUB( + "gEHUoaqG4lw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("gELp9ue2ccQ", sceSystemServiceOpenTournamentOccurrence) +STUB("gEOuU7a3mw4", _ZTVN9Inspector30WorkerBackendDispatcherHandlerE) +STUB( + "gERQO7gDxhs", + _ZN15AbstractStorage14TwitterStorage7GetItemERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_4ItemEE) +STUB("gEV0JIqdYdg", WKContextMenuItemGetEnabled) +STUB( + "gEVAC2PJwGg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEaSERKS9_) +STUB("gEYDrUZ4RH0", _ZN3WTF10TextStreamlsEd) +STUB("gEe-fgf+6ao", _ZN7WebCore21DiagnosticLoggingKeys27networkCacheUnusedReasonKeyEv) +STUB( + "gEeQwVJxpJs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE5beginEv) +STUB("gEf4yYNjoi0", generic_trampoline_delegate_p) +STUB("gElXE+OeQvA", WKContextConfigurationCreate) +STUB( + "gEn3CP-VaeU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("gEn4o7mSMnY", png_get_sBIT) +STUB( + "gEnkHPK-D7I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("gEoCCr0gCjQ", _ZN3sce7Toolkit2NP2V26Friend7Request10GetFriendsD1Ev) +STUB("gEokC+OGI8g", sceHmdDistortionGet2dVrCommand) +STUB("gEpBkcwxUjw", sceKernelAprResolveFilepathsToIdsAndFileSizes) +STUB("gEs0lindnCY", YGNodeFreeRecursive) +STUB("gEvnF0rDgnA", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification16NewInGameMessageEE3getEv) +STUB( + "gExZRwB3RMc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("gF2IDft5Erk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEdeEv) +STUB("gF5aGNmzWSg", _ZNSt9_Num_base13has_quiet_NaNE) +STUB("gF8+lvc7GuQ", sceHmd2GetFieldOfViewWithoutHandle) +STUB( + "gF8E-xnYiF8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEE11release_refEv) +STUB("gFA59beSQSE", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11EntitlementEED2Ev) +STUB("gFB0RmKjyaI", sceNpManagerIntGetNpIdByOnlineId) +STUB( + "gFDXaF09IxM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEE5resetEPS6_) +STUB( + "gFEZ+WDc2GY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB( + "gFMESADiArc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEneERKS9_) +STUB( + "gFRlgMrW4eM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEEC2ERKSA_) +STUB("gFSmD8eAI-4", sceNpManagerUtilGetVshEapScopeList) +STUB("gFXm4KsdCOg", sqlite3_set_authorizer) +STUB( + "gFlvNmUaVYI", + _ZN9Inspector21PageBackendDispatcher12snapshotNodeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("gFmBMJIYwdo", _ZNK7WebCore3URL4pathEv) +STUB( + "gFmXfDVmnCY", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("gFwrGZX2VHg", JSPropertyNameArrayGetCount) +STUB( + "gG-CBvVtK5I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE8pushBackERKS8_) +STUB("gG37mGRJlBQ", ulist_resetList_67) +STUB( + "gG8x2+EFqRE", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setInteger4ERKi) +STUB("gG8yHEM0d-4", _ZN9Inspector22AuditBackendDispatcherD2Ev) +STUB( + "gGKkcyVrYCY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("gGNk4Be0XjU", _ZN7WebCore24StorageNamespaceProvider21localStorageNamespaceEN3PAL9SessionIDE) +STUB("gGRP10YAMnU", _ZN7WebCore20PasteboardCustomData16fromSharedBufferERKNS_12SharedBufferE) +STUB("gGVdICktIww", _ZNK7WebCore11FrameLoader14frameHasLoadedEv) +STUB( + "gGVpS8dCY5Y", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("gGbAjhGYyEs", _ZN3sce7Toolkit2NP2V210Tournament27TeamVsTeamTournamentDetailsC2ERKS4_) +STUB("gGbu3TZiXeU", sceUserServiceSetGlsCameraContrast) +STUB("gGgB5EMTtvE", _ZN3JSC7Symbols36dependencyKeysIfEvaluatedPrivateNameE) +STUB("gGi7ubiUqlg", JVM_DefineClass) +STUB("gGiLveZRgf8", Java_java_lang_System_initProperties) +STUB("gGkAhbLKpaU", _ZN3JSC17MarkingConstraintD0Ev) +STUB("gGkwvDqAk2Q", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEEC1ERKS7_) +STUB("gGliPEompsM", _ZNK3sce16CommonDialogUtil6Server9getUserIdEv) +STUB("gGllCm28ym8", _ZN12video_parser13cVideoMetaVWG15convMetaEncTypeEt) +STUB( + "gGriEB2FPRc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEdeEv) +STUB( + "gGw4Py0WUYQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEdeEv) +STUB( + "gGwoDP5aznY", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionProperties35getxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB( + "gGyrnOc6Fhk", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126BandwidthDownstreamMetrics18setConfidenceScoreERKi) +STUB( + "gH-YJj6Gp-I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEEaSERKSA_) +STUB( + "gHBkvbvk2a8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB("gHM5GM7hV1k", mono_aot_System_IO_Compressionjit_got) +STUB( + "gHP25DOX9Co", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEEptEv) +STUB("gHR0F7fclX8", mono_aot_Sce_Vsh_VideoPlayerjit_got) +STUB("gHTNRZborWs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEED2Ev) +STUB("gHUT16QSm5Y", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTicketsC2Ev) +STUB("gHW1YCnRe9s", _ZN9Inspector25ConsoleFrontendDispatcherC1ERNS_14FrontendRouterE) +STUB("gHYFOTGitg4", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V16RatingC1EPNS1_6Common10LibContextE) +STUB( + "gHZXFd07n2w", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEE3getEv) +STUB("gHfTq706guE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEED2Ev) +STUB("gHgMyDffneo", + _ZN3WTF16AtomicStringImpl11addSlowCaseERNS_17AtomicStringTableERNS_10StringImplE) +STUB("gHjoitPITwU", _ZNK15AbstractStorage18DailymotionContent13GetCapabilityEv) +STUB( + "gHkQHXwZsHg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEEC2Ev) +STUB( + "gHl5aBA1Iqs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEE7add_refEv) +STUB( + "gHnVCd5LIDQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEE11get_deleterEv) +STUB("gHptTIMBmnI", _ZN3JSC7Symbols20matchSlowPrivateNameE) +STUB( + "gHqDh6c5ASM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "gHslrT+T8LY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEmmEi) +STUB( + "gHw3XOKKEA8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEEC2ERSA_) +STUB("gHx2NAU7W4I", mono_aot_Sce_Vsh_ShellUIUtilWrapperunbox_trampoline_addresses) +STUB("gHxxOQxKW3E", sceFiosIOFilterGetInfo) +STUB("gI+XEd5mWPU", sceSlimglCompositorReleaseIndex) +STUB("gI1n3sN+DpM", _ZN9Inspector8Protocol3CSS11CSSProperty8PriorityE) +STUB("gI4t194c2W8", sceRtcTickAddWeeks) +STUB( + "gI6vNnGwR6c", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser17unsetmemberFilterEv) +STUB("gI9jbGyrJZo", sceDbgVideoOutRemoveProcessAttribute) +STUB("gI9un1H-fZk", _Fetch_or_seq_cst_4) +STUB("gID4V0+Uk+k", _ZN15AbstractStorage14YoutubeContent4OpenEit) +STUB("gIFT51r3Epw", _ZN3sce7Toolkit2NP2V212ActivityFeed14PlayedWithFeedaSERKS4_) +STUB("gINcKTbrqk4", _ZN15AbstractStorage12Serializable13writeExternalESt10shared_ptrINS_7ContentEE) +STUB( + "gIOpQTUyorI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEE7add_refEv) +STUB( + "gIPY12L-P4Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEEaSERKSA_) +STUB("gIXmwyqK5wI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEED2Ev) +STUB( + "gIbQOmmIzww", + _ZN7WebCore13KeyboardEvent17initKeyboardEventERKN3WTF10AtomStringEbbONS1_6RefPtrINS_11WindowProxyENS1_13DumbPtrTraitsIS6_EEEERKNS1_6StringEjbbbbb) +STUB("gIbqMFTRUS0", mono_aot_Sce_Vsh_PsnUtilunbox_trampolines_end) +STUB("gIc9KgCsbRg", _ZN19JITSharedTextMemory9sbrk_infoE) +STUB("gIcX26xWiUw", AnnotateEnableRaceDetection) +STUB( + "gIdhsi+XljE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEE5resetEPS6_) +STUB( + "gIgwIeS8hWg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEEC2ERKSA_) +STUB("gIj3GJuZXb0", + _ZN3WTF13StringBuilder26extendBufferForAppending16ENS_7CheckedIiNS_14RecordOverflowEEE) +STUB( + "gIweVx3DNBw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEED1Ev) +STUB("gJ2f47h5YLM", mono_aot_Sce_Vsh_Np_Papcunwind_info) +STUB( + "gJ4GmjeywLI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE4sizeEv) +STUB("gJ7xP2fcHUI", utrie2_close_67) +STUB( + "gJ84-5twqRo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEixEm) +STUB("gJCqCiXkwDU", WKWebsiteDataStoreCreateWithConfiguration) +STUB("gJD0VSnMfW0", sceNpTrophySystemWrapGetPlayedTrophyTitles) +STUB("gJGHdW0bQmw", sceShellUIUtilGetDefaultQueryParameter) +STUB("gJILT2od6Vo", _ZN3sce7Toolkit2NP2V28Commerce7Request26DisplayProductBrowseDialogC1Ev) +STUB("gJLQdsHXbro", _ZStL3fin) +STUB( + "gJMaIxO4XRc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEEC1ERKSA_) +STUB("gJPfjNZKp3k", mono_aot_Sce_Vsh_Orbis_AbstractStorageunbox_trampolines_end) +STUB( + "gJUdk9pb5VQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEeqERKS9_) +STUB("gJUxthIhq+g", ures_findResource) +STUB( + "gJZ72Uzim6c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEC2Ev) +STUB("gJZRi5WuXZI", reboot) +STUB( + "gJqTkliOc-Y", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEeqERKS9_) +STUB("gJqqsinextg", sceCamera2GetGamma) +STUB("gJs8iDzrY+4", _ZN3sce2Np9CppWebApi7Matches2V127ResponseTeamMemberStatisticD2Ev) +STUB( + "gJsiQlxIbqg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("gJvjZql+M48", _ZN7WebCore8SVGNames18stroke_opacityAttrE) +STUB("gK-n3kGdauA", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15StatsD1Ev) +STUB("gK3EX6ZKtKc", sceSystemStateMgrTurnOff) +STUB( + "gKBI3aLqOD8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE21intrusive_ptr_add_refEPS9_) +STUB("gKCPof1ltoY", _ZN3sce7Toolkit2NP2V28Commerce10ContainersC2ERKS4_) +STUB( + "gKFZ6OSf3OM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "gKHDRY50uDs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEneERKS9_) +STUB("gKJBwatoYPk", _ZL31_delete_array_with_size_nothrow) +STUB("gKLFstTZNvw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEE11get_deleterEv) +STUB( + "gKROYX6VzG0", + _ZN7WebCore22CacheStorageConnection21openOrRemoveCompletedEmRKNSt12experimental15fundamentals_v38expectedINS_14DOMCacheEngine30CacheIdentifierOperationResultENS4_5ErrorEEE) +STUB("gKSUt1SXvDs", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEEdeEv) +STUB("gKb7Ad0Hr04", _ZN3sce2np10JsonObjectD0Ev) +STUB("gKgIih+obU0", _ZN7WebCore8SVGNames8biasAttrE) +STUB("gKhYub8Qchk", mono_aot_Mono_Securityunwind_info) +STUB( + "gKjxkEzQAfo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("gKl3XyAKxeU", YGNodeStyleGetPositionType) +STUB("gKpVsuLluB4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE8copyFromERKS7_) +STUB("gKqzW-zWhvY", pthread_mutex_isowned_np) +STUB( + "gKrZATTst9o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEC1EPS8_) +STUB("gKruhA35EXQ", _ZN3sce2npgeERK10SceRtcTickRKNS0_4TimeE) +STUB("gKrz25sSuAI", uprv_compareEBCDICPropertyNames) +STUB( + "gKuP4Loclt4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEEC1Ev) +STUB( + "gKxaoBlncss", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEeqERKS9_) +STUB( + "gL-U7FCmBXs", + _ZN23sceMetadataReaderWriter15ParserInfoTable17getParserInfoListERSt6vectorINS_10ParserInfoESaIS2_EE) +STUB( + "gL06dJCuJTM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "gL0e2pY7Q9Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE7reserveEi) +STUB( + "gL1nIDcfblY", + _ZN3sce2Np9CppWebApi14SessionManager2V139RequestPlayerSessionMemberPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_32RequestPlayerSessionMemberPlayerEEE) +STUB("gL3GtAnpxis", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V114ResultsVersionEEC2EPS6_) +STUB( + "gL4A3thfpkQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "gL4J2k2+o8A", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetInteger4Ev) +STUB( + "gL4Z3v2HBeM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEEaSERSA_) +STUB( + "gLDMFFNgGdE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEED1Ev) +STUB("gLGmR9aan4c", __isinfl) +STUB("gLM4PHewJwA", _ZNK7WebCore27DocumentTimelinesController22animationsAreSuspendedEv) +STUB("gLOG8uj3iDA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEEC2EPKS6_) +STUB( + "gLSvwJSkSjI", + _ZN9Inspector14InjectedScript10getPreviewERN3WTF6StringERKS2_RNS1_6RefPtrINS_8Protocol7Runtime13ObjectPreviewENS1_13DumbPtrTraitsIS9_EEEE) +STUB("gLTNH0EWMic", _ZN3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResultsD2Ev) +STUB("gLU-NsaNP3k", _ZN7WebCore12JSTimeRangesD1Ev) +STUB( + "gLVhFQf2vtk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("gLWISFABeAY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEC1Ev) +STUB( + "gLX0YjDvfI0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE4sizeEv) +STUB( + "gLatw3jRdgU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("gLb38-yOLMw", _ZN7WebCore16UserGestureTokenD2Ev) +STUB( + "gLdUA1GALMQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEE7get_refEv) +STUB("gLeVhOUfwKc", sceAppInstUtilAppInstallContentPush) +STUB( + "gLijHlQrSJ0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEptEv) +STUB("gLjLCP6tKuw", sceSulphaShutdown) +STUB("gLpbopYIBrw", _ZN8meta_gen17CommonFsOperationC1EPKc) +STUB( + "gLyB5bJMrGc", + _ZN9Inspector28DOMStorageFrontendDispatcher21domStorageItemRemovedEN3WTF6RefPtrINS_8Protocol10DOMStorage9StorageIdENS1_13DumbPtrTraitsIS5_EEEERKNS1_6StringE) +STUB("gLzCc67aTbw", _ZN3sce4Json5Value10referValueEm) +STUB( + "gM49QpmexdQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEneERKS9_) +STUB("gMJ7Iq1SFTE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE7reserveEi) +STUB( + "gMW7Sc89LXo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "gMYqbiDrcnA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEC2Ev) +STUB("gMbOn+-6eXA", sceNpScoreGetFriendsRankingA) +STUB("gMcfOtHW6zk", sceFiosFHPwriteSync) +STUB("gMjlX7ga2Ps", _ZN7WebCore9HTMLNames16onbeforeloadAttrE) +STUB("gMkB0Cg1emY", _ZN3IPC15ArgumentEncoder6encodeEj) +STUB( + "gMkqQ10IsHc", + _ZN3sce2Np9CppWebApi7Matches2V128RequestTemporaryMatchResults10setVersionERKNS3_14ResultsVersionE) +STUB("gMlHVhsO9lk", sceSpPthreadMutexDestroy) +STUB("gMlY6eewr-c", sceNpAllocateKernelMemoryWithAlignment) +STUB( + "gMrrYGeVPHw", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi32ParameterToPostGameSessionsTouch13isInitializedEv) +STUB("gMwCt1k6PLI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEE5resetEPS6_) +STUB("gMwkpZNI9Us", _ZNSt8messagesIwED0Ev) +STUB("gMxgHWueHYc", _ZN7WebCore13CSSStyleSheet5rulesEv) +STUB("gN3BSum8Y0c", il2cpp_image_get_entry_point) +STUB( + "gN4g3E-eSRw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEE11release_refEv) +STUB( + "gN7dmLssqhI", + _ZN8meta_gen11MsvPromoter26setKeyValue_TBLI_CodecTypeENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti) +STUB( + "gN8hDlb5nCE", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEEC2Ev) +STUB("gNM1XISuMUQ", WKWebsitePoliciesGetAllowedAutoplayQuirks) +STUB("gNMFB5DnllQ", Java_com_sony_gemstack_io_FilePath_n_1readdir) +STUB("gNQ1V2vfXDE", setjmp) +STUB("gNQcjhVwM+U", _ZNK9Inspector18InjectedScriptBase31hasAccessToInspectedScriptStateEv) +STUB("gNR-zYwY01A", GCC_except_table98) +STUB("gNZfsxXLqOA", unum_getAvailable_59) +STUB( + "gNi9kPAY6mY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE21intrusive_ptr_sub_refEPS9_) +STUB("gNmmEE20P-w", + _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets13isInitializedEv) +STUB("gNn+EZtm1i0", sceLncUtilKickCoredumpOnlyProcMem) +STUB("gNrgpeKseC8", _ZNSt15basic_streambufIwSt11char_traitsIwEED2Ev) +STUB( + "gNvGTbhOC88", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Network8Response6SourceEEESt8optionalIT_ERKN3WTF6StringE) +STUB("gO98NioN5FM", sceKernelReleaseToolMemory) +STUB( + "gO9TQ1-HJdo", + _ZN3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayerC2EPNS1_6Common10LibContextE) +STUB("gOGGCaj+TLE", _ZN4Manx10FontStream4seekEjPv) +STUB("gOGhJBRxnS8", WKPageCountStringMatches) +STUB( + "gOHlEWorSCs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("gOLcBxGakMw", _ZN22MmsMdCommonFsOperation12readToBufferEmjPvj) +STUB( + "gOLoorwvJcw", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("gOMMTICNZ5w", WKPreferencesGetWebAuthenticationLocalAuthenticatorEnabled) +STUB("gOMVClnL0Mg", _ZN7WebCore21NetworkStorageSessionD1Ev) +STUB( + "gON7IFUGUF8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEE5resetEPS9_) +STUB("gOQx5OZhArI", sceClPthreadMutexDestroy) +STUB( + "gOTdLRKqvVE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEEC2ERKSA_) +STUB("gOZqKFg4dTQ", _ZN3WTF17TextBreakIteratorC2ENS_10StringViewENS0_4ModeERKNS_12AtomicStringE) +STUB("gObODli-OH8", sceGnmRequestFlipAndSubmitDone) +STUB("gOfB92L-2uE", WKBundlePageInsertNewlineInQuotedContent) +STUB("gOiTCLJFNxA", _ZNK3sce2Np9CppWebApi7Matches2V128RequestTemporaryMatchResults10getVersionEv) +STUB("gOjURFF2pJk", + _ZN7WebCore21SerializedScriptValue6createEPK15OpaqueJSContextPK13OpaqueJSValuePS6_) +STUB("gOkOm9Vnf9s", SSL_CTX_use_PrivateKey) +STUB("gOmQbOkqJBE", SSL_free) +STUB("gOqID2v1crc", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToCancelTicketC2ERS5_) +STUB("gOqThDYWBBU", _ZNK7WebCore5Frame31displayStringModifiedByEncodingERKN3WTF6StringE) +STUB("gOxGOQmSVU0", _ZNSt13basic_filebufIcSt11char_traitsIcEED2Ev) +STUB( + "gOxnNkDY0wo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE21intrusive_ptr_sub_refEPS9_) +STUB("gOzIhGUAkME", _ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1EPKcm) +STUB( + "gP2ZeYANWZI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEEptEv) +STUB("gP4kC4C6u0s", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEEixEm) +STUB( + "gPLxmOVmBeM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEmmEv) +STUB("gPMCefxHpIA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEcvbEv) +STUB("gPYiacKjOTw", _ZN3JSC8Bindings8InstanceD0Ev) +STUB( + "gPbErJdI7go", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEEaSERS9_) +STUB( + "gPbWlholO8Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEEaSERSA_) +STUB("gPcQ3OrFBUA", _recvfrom) +STUB( + "gPe3KXjSgig", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEC1EPNS2_10LibContextE) +STUB( + "gPeDHnznr-o", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEptEv) +STUB("gPekw0GjuUA", _ZThn8_N6WebKit12ChildProcess23messageSenderConnectionEv) +STUB( + "gPgaHxmdgio", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEEdeEv) +STUB( + "gPif5q7bYPI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("gPlivtgaQkE", _ZN7WebCore11MessagePort22notifyMessageAvailableERKNS_21MessagePortIdentifierE) +STUB( + "gPnR+1xsnLQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEE3getEv) +STUB("gPqA+Yu+K7Q", uloc_minimizeSubtags_67) +STUB("gPueTGt98vU", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_15ActivityStoryIdEEC1Ev) +STUB("gPux+0B5N9I", _ZN3sce2np10NpOnlineIdC2ERKS1_) +STUB("gPvW0GsxzyY", _ZN3sce7Toolkit2NP2V28Matching9AttributeD1Ev) +STUB("gPwcbxBETE8", __tsan_atomic32_compare_exchange_strong) +STUB("gPx1b36zyMY", sceSystemStateMgrSendCecOneTouchPlayCommand) +STUB("gPxYzPp2wlo", sceGnmSqttSetUserData) +STUB("gQ0v9iNBI44", _ZNK3WTF6String15stripWhiteSpaceEv) +STUB("gQ3aL+5g6t8", _ZN3sce7Toolkit2NP17MessageAttachment17setAttachmentDataEPcm) +STUB("gQ6cUriNpgs", sceNpMatching2JoinRoomA) +STUB("gQA5zRTZocw", ucptrie_internalSmallIndex_67) +STUB( + "gQCt8pKgIlU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEmmEi) +STUB("gQFVRFgFi48", __moddi3) +STUB("gQFyT9aIsOk", _ZN3sce2np4UserD1Ev) +STUB( + "gQGmUfdcKxw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEC2EPS8_) +STUB("gQHDXC6a7I8", mono_aot_Sce_Vsh_Np_Commonmethod_addresses) +STUB("gQIbmvD1F7o", _ULx86_64_access_reg) +STUB( + "gQJuYJDE8Z8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEED1Ev) +STUB("gQMAThHRwM4", mono_metadata_locate) +STUB( + "gQR6etM2ZpE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("gQX+4GDQjpM", malloc) +STUB("gQXxz1IoL5U", sceKernelIccIndicatorShutdown) +STUB("gQaVw6164iE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEE7get_refEv) +STUB("gQbEaSb7FMY", _ZN3sce7Toolkit2NP2V211SharedMedia11ScreenshotsaSERKS4_) +STUB("gQce1dRFLic", WKSecurityOriginCopyProtocol) +STUB("gQe-+kFX0j8", _ZNK7WebCore6Editor37baseWritingDirectionForSelectionStartEv) +STUB( + "gQfqwbwDCJc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEppEi) +STUB("gQh8NaCbRqo", sceUserServiceSetHmuZoom) +STUB( + "gQk+T1MmuHs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEaSERKS7_) +STUB("gQn3pCPXk4U", _ZThn664_N7WebCore24CoordinatedGraphicsLayerD1Ev) +STUB("gQrovTJq2Pk", ufieldpositer_open_67) +STUB( + "gQxW7z7bTDg", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V127ConnectionQualityProperties6toJsonERNS_4Json5ValueEb) +STUB( + "gQzR0P0bF4Y", + _ZN7WebCore15GraphicsContext15drawNativeImageERKN3WTF6RefPtrI14_cairo_surfaceNS1_13DumbPtrTraitsIS3_EEEERKNS_9FloatSizeERKNS_9FloatRectESE_RKNS_20ImagePaintingOptionsE) +STUB("gR04+LbypIY", _ZN3JSC23objectConstructorFreezeEPNS_9ExecStateEPNS_8JSObjectE) +STUB( + "gR1SliE2d6A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEaSERKS7_) +STUB("gR4S4V+xat8", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking10UsersRanksEEC2Ev) +STUB("gR8P+QJ3YlQ", _ZN3WTF9MediaTimeaSERKS0_) +STUB( + "gR8zxmpsFdM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEixEm) +STUB("gRA2pp3a1-k", sceFiosFileTruncateSync) +STUB( + "gRGCRBt1o0Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEE3getEv) +STUB("gRI+BnPA6UI", sceUserServiceSetParentalGame) +STUB("gRIwdpuqnvA", mono_shared_hashtable_set_assertions) +STUB( + "gRKSN5-1rcA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEE7get_refEv) +STUB( + "gRKjMTZ35F8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEED1Ev) +STUB( + "gRLZGhzq47g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE6resizeEj) +STUB( + "gRLui9SjMPA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEEaSERKSA_) +STUB( + "gRNVIinlv2E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEEC2ERKSA_) +STUB("gRNjVAmq-9U", _ZN12video_parser13cVideoPathMgv14GetLicenseNameEPc) +STUB("gRNu4fkK4tw", _ZN7WebCore13getLogChannelERKN3WTF6StringE) +STUB("gRSheDNw7l4", _ZN3sce7Toolkit2NP2V27Session11SessionDataaSERKS4_) +STUB( + "gRV9y5UZ7eE", + _ZN7WebCore15GraphicsContext15setFillGradientEON3WTF3RefINS_8GradientENS1_13DumbPtrTraitsIS3_EEEE) +STUB( + "gRVCb6uU+CI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEC2Ev) +STUB("gRVX2CeO2WA", MASSMCDeleteMessage) +STUB( + "gRVj4VyeDBc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE6resizeEj) +STUB("gRc3QyYYgXg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEEneERKS7_) +STUB("gRiilVCvfAI", sceNpWebApiSetMaxConnection) +STUB( + "gRmPxANZTWU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEED2Ev) +STUB( + "gRnxV4GAtjg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEC1ERS7_) +STUB("gRtM-VlS-pI", _ZTVN7WebCore16BlobRegistryImplE) +STUB( + "gRvS2husZrM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEeqERKS9_) +STUB("gRw4XrztJ4Q", _rtld_thread_init) +STUB("gRyLWstYGXM", _ZNK7WebCore13JSHTMLElement7wrappedEv) +STUB("gS-2djRfZZ8", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE7reserveEi) +STUB( + "gS2XvTF8wIk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEC2ERS7_) +STUB( + "gSF144aZB1Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("gSF5OsXdfIg", sceAmprCommandBufferWriteAddressFromCounterOnCompletion) +STUB("gSJ7ylJWzo0", _ZN7WebCore6RegionaSEOS0_) +STUB("gSRnr79F8tQ", sceAgcDriverSubmitAcb) +STUB( + "gSX-u1rB4LI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEeqERKS9_) +STUB("gSXqwBgfqH4", _ZN3sce7Toolkit2NP2V211SharedMedia6VideosC2Ev) +STUB("gSaatiDEGSs", unum_formatDouble_67) +STUB("gSe1f2ITi7E", _ZN15AbstractStorage12LocalStorageD1Ev) +STUB( + "gSex3sUDto8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("gSjDXUEB5Uk", _ZN9Inspector26TimelineFrontendDispatcher18autoCaptureStartedEv) +STUB( + "gSm6usMtuG0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "gSqylOU027I", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetAccountId2OnlineId10initializeEPNS1_6Common10LibContextEm) +STUB( + "gSrGFKvrzek", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "gSsk3YTsSuw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEplEm) +STUB("gStShPRXKPk", _ZNK3WTF10StringView16GraphemeClusters8IteratordeEv) +STUB("gSveh4yZbi0", __libunwind_Unwind_GetCFA) +STUB("gT3MrMvOoGY", _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody16unsetRulesetNameEv) +STUB( + "gT4VokBML0k", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEixEm) +STUB("gT6fmEJqgZc", _ZNK7WebCore12ISOWebVTTCue8sourceIDEv) +STUB("gT8rVA6JUZ4", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_16NetStateDetailedEEC1Ev) +STUB( + "gT90znimMdU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE5beginEv) +STUB("gT9LZ+qEG-M", sceNpManagerUtilDebugDumpByte) +STUB("gTD5beqJ81U", glGetIntegeri_v) +STUB("gTDwXA62D5Y", _ZNK7WebCore8Document10vlinkColorEv) +STUB( + "gTMoOsMadQg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEE7add_refEv) +STUB("gTNjfocKYHU", _ZN7WebCore5ColorC2ERKS0_) +STUB("gTO7zb4lVNI", _ZN7WebCore11MemoryCache25removeResourcesWithOriginERNS_14SecurityOriginE) +STUB("gTPsW+WeIYQ", _ZN7WebCore8SVGNames20stroke_dasharrayAttrE) +STUB("gTSiXz3DUjs", _ZN7WebCore18ScrollingStateTreeD1Ev) +STUB( + "gTUsqYGksNg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEE3getEv) +STUB("gTWWXt1vhaU", CRYPTO_memcmp) +STUB( + "gTWz90bYZMs", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setBoolean4ERKb) +STUB( + "gTZNfDt50p8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEE11get_deleterEv) +STUB("gTbEEYZNlbI", _ZN3sce3pss4core8graphics14NativeGraphics14MapDepthBufferEv) +STUB( + "gTgI8FTlpMI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEE11get_deleterEv) +STUB("gThJrbt1Ojw", sceBdSchedDeconfigure) +STUB("gThZqM5PYlQ", sceNgs2SystemLock) +STUB( + "gTiHp+M4wFM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEEC1Ev) +STUB( + "gTlfdq2niiQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEdeEv) +STUB( + "gTm7d4zWWQI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE5abortEv) +STUB("gTuXQwP9rrs", _Mtx_unlock) +STUB("gTwr4SgkrH8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEC2ERKS7_) +STUB( + "gTzaUQ+Vam8", + _ZN9Inspector21PageBackendDispatcher7archiveElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("gU19IpVh5DQ", _ZN3JSC10ConfigFile14setProcessNameEPKc) +STUB("gUAJQaumS+A", _ZN7WebCore16DatabaseProviderC1Ev) +STUB("gUGtCftPWjg", mono_profiler_install_exception) +STUB("gUNabrUkZNg", sceAudioInDeviceIdHqOpen) +STUB("gUPGiOQ1tmQ", scePlayGoSetToDoList) +STUB("gUSHu1AoCgk", sceVnaRequestDownloadCahcedTts) +STUB( + "gUSI9Sn4Ymo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEeqERKS9_) +STUB("gUTY0cOaf3E", _ZN7WebCore9HTMLNames14spellcheckAttrE) +STUB( + "gUfDTTbc+Rw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE3endEv) +STUB("gUgoiHAV0rM", + _ZN3JSC23generateProgramBytecodeERNS_2VMERKNS_10SourceCodeEiRNS_18BytecodeCacheErrorE) +STUB( + "gUhw8ZMenq4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("gUpBPGFwI30", + _ZN3sce2Np9CppWebApi14SessionManager2V111GameSessionC1EPNS1_6Common10LibContextE) +STUB( + "gUyJP3HRzHQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE5clearEv) +STUB( + "gV-O6Lv6jRU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB("gV-s05bBN9U", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_7TssDataEEC1Ev) +STUB("gV0zqETp5zY", res_countArrayItems_67) +STUB( + "gV7rHqCEpiI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEE5resetEPS6_) +STUB("gV9-8cJPM3I", sceRemoteplayImeFilterResult) +STUB( + "gVFzRDt1Ek8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE3endEv) +STUB("gVNNyxf-1Sg", sceNpWebApiCheckTimeout) +STUB("gVQpMBuB7fE", sceFontGetGlyphExpandBufferState) +STUB("gVTWlvyBSIc", _ZNSo6sentryC2ERSo) +STUB( + "gVTsL96fNB0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEE3getEv) +STUB( + "gVU-EI8voN4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE5emptyEv) +STUB( + "gVUm72fN85E", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEeqERKSA_) +STUB("gVW1ZB-uUj4", sceNpManagerIntNpId2UserId) +STUB("gVaofuRvLdU", ksem_trywait) +STUB("gVbkspALW1k", _ZN9Inspector14InjectedScriptC1Ev) +STUB("gVf7xRLdWm8", FT_Stream_Close) +STUB( + "gVfZ1j2bhPM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEED1Ev) +STUB("gVhOIkr1KCU", mono_aot_Sce_Vsh_Webbrowser_XutilWrapperplt_end) +STUB("gVioM9cbiDs", sceRazorCpuEndLogicalFileAccess) +STUB( + "gVlZ-fWiiy4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEppEi) +STUB( + "gVnqpMI6IGI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEC2EPKS8_) +STUB("gVoOE32ATg0", sceCompositorSetCompositeCanvasCommandInC) +STUB( + "gVqKOfIB3po", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEmmEv) +STUB("gVuGo1nBnG8", sceGnmSqttStopTrace) +STUB( + "gVw7NBBUQwc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEE11get_deleterEv) +STUB( + "gVy9wwlP3Bk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB("gVyCSJTFRbY", _ZN9Inspector22InspectorDebuggerAgent11addListenerERNS0_8ListenerE) +STUB("gW+And3d2E4", EC_POINT_new) +STUB( + "gW+fvO3r++U", + _ZN9Inspector21PageBackendDispatcher28getCompositingBordersVisibleElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "gW-YI2u1JOw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEEC2ERSA_) +STUB( + "gW5JJszGRLc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEixEm) +STUB("gW6G4HxBBXA", sceSaveDataDebug) +STUB("gW8qyjYrUbk", sceNpScoreCreateRequest) +STUB( + "gW94CPYFZyg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("gW9NKRTJrvE", sceUpsrvUpdateGetEulaStr) +STUB( + "gWDRvP6iSe0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEC2Ev) +STUB( + "gWE-butugqw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEC2EPS8_) +STUB( + "gWHsbgBBeRo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEneERKS9_) +STUB("gWINqHp3aq0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEE5resetEPS6_) +STUB("gWIdEEJaWoc", mono_aot_Microsoft_CSharpunbox_trampolines_end) +STUB( + "gWJ23xrA1XY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE10setContextEPNS2_10LibContextE) +STUB("gWLXqFf+5uI", _ZN3WTF13MonotonicTime3nowEv) +STUB("gWMlFq4N9Lw", sceShellCoreUtilIsSharePlayCpuBudgetAcquired) +STUB("gWNKviFrCKg", CONF_modules_free) +STUB("gWR4Ab-qBsQ", _ZN3sce3pss4core9PsmObjectD2Ev) +STUB( + "gWUzVZ3Jbcg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEmmEv) +STUB( + "gWVbO68G4AI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE21intrusive_ptr_sub_refEPS9_) +STUB("gWZikoR+g9g", sceVideoRecordingTerm) +STUB("gWeuA3QZ4tY", _ZTVN15AbstractStorage12LocalStorageE) +STUB("gWevp6rEByo", _ZNK7WebCore6Editor16fontForSelectionERb) +STUB( + "gWiIdl3BCD8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "gWjl1yW0edA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEC1Ev) +STUB("gWoKIDZQyQI", _ZN3sce7Toolkit2NP2V212NetworkUtils7Request19GetBasicNetworkInfoD1Ev) +STUB( + "gWzI108buYg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE4sizeEv) +STUB("gX-iCZHsM1w", ucln_common_registerCleanup_67) +STUB("gX27TghWOvI", delegate_virtual_invoke_imt_12) +STUB( + "gX2k4MSeD88", + _ZN3sce2Np9CppWebApi11Matchmaking2V125PlayerForOfferReadFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_18PlayerForOfferReadEEE) +STUB( + "gX3IZ4LMt+Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "gX5N6Fjj29Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEEC2Ev) +STUB( + "gX8-5TZCiUI", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB( + "gXCsE2pd-9Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "gXFK+CHQl3k", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEcvbEv) +STUB( + "gXKveFqjttY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEE5resetEPS6_) +STUB("gXUgaT+IxrY", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V128SetMultiVariablesRequestBodyD1Ev) +STUB("gXUoxM2WN8Q", WKPreferencesSetAccessibilityObjectModelEnabled) +STUB("gXWaf+PJLEI", fuse_dirent_size) +STUB("gXbSjAwRIhM", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error12messageIsSetEv) +STUB("gXd5YDlR36k", coil_pclose) +STUB( + "gXi8Y60fdco", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEED1Ev) +STUB("gXij3LJRnFA", WKMediaSessionMetadataCopyArtist) +STUB("gXiormHoZZ4", sceNgs2SystemRunCommands) +STUB( + "gXoUhbWXUxA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEEcvbEv) +STUB( + "gXokItpLb0I", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEED1Ev) +STUB("gXqXVZedqcU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10ContainersEEC1Ev) +STUB( + "gXrGIfpK+Rw", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_18GameCustomDataItemENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB( + "gXrKK8lllyI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEC1EPS8_) +STUB("gXuYfkkAi4A", _ZNK7WebCore11MediaPlayer16wouldTaintOriginERKNS_14SecurityOriginE) +STUB( + "gXwdouZ1sF0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "gXxBmrE4A4o", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEixEm) +STUB("gY1GiSuGTtU", _ZN9Inspector15RemoteInspector14setupCompletedEj) +STUB("gY1gQXkAUS8", _ZN3sce2np14HttpConnectionC2EP16SceNpAllocatorEx) +STUB("gY2jWNd2xEs", _ZNK7WebCore15GraphicsContext15platformContextEv) +STUB("gY2judYG38M", _ZNK7WebCore11MediaPlayer41mediaContentTypesRequiringHardwareSupportEv) +STUB( + "gY9seix0dm4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEC2EPKS8_) +STUB( + "gYCVTgKszRw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEEC1ERKSA_) +STUB("gYFKAMoNEfo", tzset) +STUB("gYIlPJ+2sm0", __lshift_D2A) +STUB("gYJFBIIydKQ", _ZN7WebCore5Frame17setTextZoomFactorEf) +STUB( + "gYMJ5-j-YJ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "gYVZLxcyuB4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE5beginEv) +STUB("gYXxtLzFU8Y", sceShellCoreUtilDeleteSmrHddDummyData) +STUB("gYaaT-4LEtE", rgctx_fetch_trampoline_rgctx_108_p) +STUB( + "gYbC3+pf0fA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEdeEv) +STUB( + "gYdXkglsXMU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE10setContextEPNS2_10LibContextE) +STUB("gYg5m+zII9w", sceDeci5Close) +STUB("gYlF567r3-A", _ZNKSt7collateIcE12do_transformEPKcS2_) +STUB( + "gYqkfSt+r4o", + _ZN3sce2Np9CppWebApi11UserProfile2V125GetFriendsResponseFactory7destroyEPNS3_18GetFriendsResponseE) +STUB("gYr9dLq8Y10", sceContentBinderSearchDifference) +STUB( + "gYrAyft6lUg", + _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_21PlayerForTicketCreateEEEEE) +STUB( + "gYvT9bFH+BE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE5beginEv) +STUB( + "gYxDgAeV5Lc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("gYxLxFK-CBs", _ZN3sce2Np9CppWebApi7Matches2V124RequestCompetitiveResult14getTeamResultsEv) +STUB("gZ1FWDRrZSk", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V15GroupEEneERKS7_) +STUB("gZ8DUl5rrvs", mono_bitset_alloc_size) +STUB("gZ9TpeFQ7Gk", sceHttpSetPolicyOption) +STUB("gZCuj7o3iRc", _ZNK3sce2Np9CppWebApi6Common6VectorIfE4sizeEv) +STUB( + "gZNF8TcG0Vo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEC2EPKS8_) +STUB("gZQXZKUNsvQ", _ZN4IPMI4impl10ServerImpl24doAsyncCallLegacyRequestEiPvi) +STUB( + "gZTFql+wDcg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEE7get_refEv) +STUB("gZTQm1FBFSw", sceIduUtilIsStaffMode) +STUB("gZWsDrmeBsg", __mulxc3) +STUB("gZaI4GP1aVo", Java_java_awt_GnmGraphics_nativeChangeClipRect) +STUB("gZf5hz17i9w", + _ZN3WTF8JSONImpl5Value7asArrayERNS_6RefPtrINS0_5ArrayENS_13DumbPtrTraitsIS3_EEEE) +STUB( + "gZmImv89cqQ", + _ZN7WebCore24CoordinatedGraphicsLayer26setContentsToPlatformLayerEPN7Nicosia13PlatformLayerENS_13GraphicsLayer20ContentsLayerPurposeE) +STUB("gZpb1ztmYdY", sceNpGriefReportWriteActivityAttachFile) +STUB("gZvNGjQsmf8", _ZTISt5ctypeIcE) +STUB("gZx-0IkOsEI", searchCommInfoListByNotKeyButProtocolNumber) +STUB( + "ga1WS-ze6go", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEE11release_refEv) +STUB("ga2z3AAn8XI", sceUserServiceGetUserGroupNameList) +STUB("ga3epfbYdYw", _ZN3WTF7RunLoop9TimerBase4stopEv) +STUB("ga4OW9MGahU", _ZN3sce2np8WorkItemD2Ev) +STUB("ga5GOgThbjo", sceImeVshSetPreeditGeometry) +STUB("ga5Okg-do-c", _ZTVN7WebCore30InvertLightnessFilterOperationE) +STUB( + "ga6E-bSmqUk", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS5_INS7_7DataApi25UploadDataResponseHeadersEEEEEiRNS2_19UpStreamTransactionIT_T0_EE) +STUB( + "ga7Z49ZtvSA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEC2EPS7_PNS2_10LibContextE) +STUB( + "gaBkE02hs8Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEC2EPNS2_10LibContextE) +STUB("gaFx7Axnsuo", glGetVertexAttribiv) +STUB( + "gaG4fFmXhBA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEmmEv) +STUB("gaNvfJEnzNo", _ZNK3sce2Np9CppWebApi6Common6VectorIlE3endEv) +STUB("gaQDIwAsA3Y", YGNodeCopyStyle) +STUB( + "gaU2vwi0Ohg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEaSERKS9_) +STUB( + "gaU41tDnIdo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEE5resetEPS8_) +STUB("gaVlLImlOmY", __tsan_read16) +STUB("gacfOmO8hNs", ceil) +STUB( + "gahPm4BDCh4", + _ZN9Inspector20DOMBackendDispatcher20discardSearchResultsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("gal08O8mPU4", _ZThn16_N9Inspector21InspectorConsoleAgentD1Ev) +STUB( + "gaoBc6o3cXs", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot9terminateEv) +STUB("gasG1CJGmzk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEED2Ev) +STUB("gasV0Qq-FZ0", _ZN7WebCore8SVGNames13amplitudeAttrE) +STUB("gatEUKG+Ea4", sceAudioOut2PortGetState) +STUB("gatlBXi2YjQ", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed4FeedEEC1Ev) +STUB("gaw3UFgtJOU", mono_value_copy_array) +STUB("gaxkMFwAeDg", JSReportExtraMemoryCost) +STUB("gayqtDapH2w", _ZN9Inspector31BrowserBackendDispatcherHandlerD1Ev) +STUB( + "gb00+Q8rpJU", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi47ParameterWithBinaryRequestBodyToRecordLargeData10initializeEPNS1_6Common10LibContextEiPKhm) +STUB("gb6RAEU5pgY", WKPreferencesGetDatabasesEnabled) +STUB("gbA86mSJ9i0", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEE7add_refEv) +STUB( + "gbFclIvRSx0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEptEv) +STUB("gbJ8QxXOR6g", sceVideoOutDeleteDisplayPositionEvent) +STUB("gbKbd-lu2Is", _ZNK3sce2Np9CppWebApi14IdentityMapper2V312AccountIdMap6toJsonERNS_4Json5ValueEb) +STUB("gbMKV+8Enuo", sceNgs2PanGetVolumeMatrix) +STUB("gbOLwEcEhD8", _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities5Error11sourceIsSetEv) +STUB( + "gbOtZahVDgc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEE21intrusive_ptr_add_refEPS7_) +STUB("gbUBqHCEgAI", sceSystemServiceGetPSButtonEvent) +STUB("gbVU4nPMXNk", _ZN3sce7Toolkit2NP2V24Core18CustomResponseDataC2Ev) +STUB("gbWz7Xpp7kw", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEED1Ev) +STUB( + "gbZFnZtqkWc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEC1EPS8_) +STUB("gbZY27lvTq4", _ZN7WebCore21JSRemoteDOMWindowBaseD2Ev) +STUB("gbbdoYygOOY", _ZN3sce3Xml3Dom8Document13recurseDeleteENS1_6NodeIdE) +STUB("gbcpFiojSAk", + _ZN7WebCore16startOfParagraphERKNS_15VisiblePositionENS_27EditingBoundaryCrossingRuleE) +STUB("gbjddWAc6-o", sceCompositorGetAnotherProcessVideoSize) +STUB("gbldVkydia0", + _ZNK3sce2Np9CppWebApi14SessionManager2V124GameSessionMemberForRead6toJsonERNS_4Json5ValueEb) +STUB( + "gbmNtW2A65o", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot17getnpServiceLabelEv) +STUB("gbnL+GWRLow", __tsan_get_report_loc_object_type) +STUB( + "gbpC4NGb3z8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEC1ERKS8_) +STUB( + "gbpFrV-NLa8", + _ZN7WebCore16NavigationActionC2ERNS_8DocumentERKNS_15ResourceRequestENS_20InitiatedByMainFrameENS_14NavigationTypeENS_28ShouldOpenExternalURLsPolicyEPNS_5EventERKN3WTF10AtomStringE) +STUB("gbs-RD7lOWg", mono_get_exception_array_type_mismatch) +STUB("gbtAblHLpQg", FcLangSetHasLang) +STUB( + "gc2-RkAF3UU", + _ZN3sce7Toolkit2NP11UserProfile9Interface11getOnlineIdEPNS1_9Utilities6FutureI13SceNpOnlineIdEEb) +STUB("gc7K6VPeFdE", rgctx_fetch_trampoline_mrgctx_116_p) +STUB("gcAceaofM10", _Z21Ime_KbdGetEventNativemRN3sce11playstation4core3Ime14ImeEventNativeE) +STUB( + "gcC3vWMEvWM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEEaSERKSA_) +STUB("gcEeBiArh+o", _ZN3sce7Toolkit2NP2V27Ranking7Request8SetScoreC2Ev) +STUB("gcFCn5J5DXY", sceUltReaderWriterLockUnlockWrite) +STUB("gcNHzT84HIw", _ZN3sce7Toolkit2NP2V26Friend16FriendsOfFriendsaSERKS4_) +STUB( + "gcOJcKRccYs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "gcOXPKB0CaQ", + _ZN3sce2Np9CppWebApi11Matchmaking2V112CauseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5CauseEEE) +STUB( + "gcP-kxBsHm0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEneERKS9_) +STUB( + "gcRXuSzVXbo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEEaSERKSA_) +STUB("gcU8xigyavI", _ZN7WebCore17HTMLScriptElement14setCrossOriginERKN3WTF10AtomStringE) +STUB("gcUjwU3fa0M", sceHttpsGetCaList) +STUB( + "gcVX9b9ujgU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEE11release_refEv) +STUB( + "gcYn+BHkSCA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEC1EPS8_) +STUB("gck7rmEd-i0", _ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_8DocumentE) +STUB("gcrDBXfKdS8", _ZN3sce7Toolkit2NP2V27Session12SessionImage18IMAGE_PATH_MAX_LENE) +STUB("gcreMGwhTaY", jpeg_abort) +STUB("gcsP-2FEZIk", JSObjectIsFunction) +STUB("gd0iXYblPZI", udata_setFileAccess_67) +STUB("gd1AB3xDVgQ", sceCesUtf16ToUhc) +STUB( + "gd876VO9dkk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEppEv) +STUB("gd8ppQpyMrw", _ZN12video_parser7cVpUtil18vp_ff4_remove_fileEPc) +STUB("gdAW0ETVhxk", ERR_free_strings) +STUB( + "gdEpzJoaHm8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "gdI9JmsCljo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEE21intrusive_ptr_add_refEPS7_) +STUB( + "gdKY4Rag5KI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEED1Ev) +STUB("gdNVJr1jElQ", _ZN8meta_gen12JpegPromoterC2EN9db_schema9CodecTypeE) +STUB( + "gdQoNPgYQYY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEC1EPS8_) +STUB("gdSoJ6dvztU", sceAmprAmmMeasureAmmCommandSizeModifyProtectWithGpuMaskId) +STUB("gdUCnU0gHdI", sceFontRenderSurfaceInit) +STUB( + "gdV0a+Ocjsg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB("gdVNTX4s0XE", sceLoginMgrServerCheckSafetyNoticeShown) +STUB("gdVoksa+OAc", _ZN7WebCore9Scrollbar13setProportionEii) +STUB("gdWmmelQC1k", CERT_CompSubjectCommonName) +STUB("gdWx1H0BU3k", _ZNK7WebCore4Node26containsIncludingShadowDOMEPKS0_) +STUB("gda7MdbVPJQ", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError6toJsonERNS_4Json5ValueEb) +STUB("gdduqOWJpMo", _ZN7WebCore4Page22setUseSystemAppearanceEb) +STUB( + "gdiZH0PaleU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEE11get_deleterEv) +STUB("gdknbtIC0QU", uloc_getISO3Country_67) +STUB("gdnv6wF6hwI", scePthreadSetconcurrency) +STUB("gdt4-uEIgMw", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle10getPerGameEv) +STUB( + "ge+DCroYQz4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEE7add_refEv) +STUB( + "ge-V6rfxYHw", + _ZN3sce2Np9CppWebApi11UserProfile2V131GetPublicProfileResponseFactory6createEPNS1_6Common10LibContextERK13SceNpOnlineIdPKcRKNS5_6VectorINS5_12IntrusivePtrINS3_6AvatarEEEEERKNSD_INS5_6StringEEEbPNSE_INS3_24GetPublicProfileResponseEEE) +STUB("ge4hjd0OiFM", _ZN7WebCore7JSRange4infoEv) +STUB("ge6-1ef4a7g", mono_method_get_param_token) +STUB( + "ge6xTrDDgOs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEED1Ev) +STUB( + "ge78pzvkiB4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEC2EPS8_) +STUB("ge7g15Sqhks", sceNetConfigAddIfaddr) +STUB( + "geCbQF9cGH0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEixEm) +STUB("geDaqgH9lTg", scePthreadKeyCreate) +STUB("geED7ro58q8", unum_parseDecimal_67) +STUB("geOTzu8Y3YU", _ZN3sce7Toolkit2NP6Trophy9Interface10trophyTermEv) +STUB("gePTTfK5iP8", sceVdecswFlushDecodeOutput) +STUB( + "geU8K6eJ7nc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE6finishEv) +STUB("geZonYeFLhA", _ZN9Inspector20CSSBackendDispatcherD2Ev) +STUB( + "geae-6xMaag", + _ZN3sce2Np9CppWebApi7Matches2V125CreateMatchRequestFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_18CreateMatchRequestEEE) +STUB( + "gefK97NOSRw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEC1EPS8_) +STUB("geg26leOsvw", sceSystemStateMgrWaitVshAutoUpdateVerifyDone) +STUB( + "genKWUx8bsk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEEC2ERSA_) +STUB("genVLqBehSk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V115SearchAttributeEEC2Ev) +STUB("geoQ77m8Trc", sceAvSettingSetVideoOutModeAny) +STUB( + "gepIe5CpETk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE5beginEv) +STUB("geskGcdamVE", _ZN3sce4Json5ValueC1ERKSbIcSt11char_traitsIcENS0_8StlAllocIcEEE) +STUB("gev25uQduyQ", _ZN7WebCore37CrossOriginAccessControlCheckDisablerC2Ev) +STUB("gezFjY7iHbk", sceRemotePlayClientAddEventListener) +STUB("gf3h8ObDkuI", _ZN15AbstractStorage10TwitterAPID1Ev) +STUB( + "gf6ASyeUqR8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEC2Ev) +STUB("gf6dJv9Imh8", mode_set_alluser) +STUB("gf9WnZyyHwE", sceSrcUtilityInitializeEx) +STUB("gfA0BLJiywk", _ZN7WebCore16JSXMLHttpRequestC2ERKS0_) +STUB( + "gfDRF-i-FJc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE8capacityEv) +STUB("gfE8yZ4FdW4", _ZN4IPMI4impl10ServerImpl18removeSessionByPidEjPPNS0_11SessionImplE) +STUB("gfO1KPpXs7k", _ZN3WTF11Persistence7DecoderrsERNS_8OptionalIlEE) +STUB("gfP0im5Z3g0", ldiv) +STUB("gfTs2aPeHoM", _ZNK3WTF10StackTrace4dumpERNS_11PrintStreamEPKc) +STUB("gfUSJsJEmbE", _ZN4Manx11BundleOrbisD0Ev) +STUB( + "gfZWDhwYR-c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEE11get_deleterEv) +STUB( + "gfdGWWACH5Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEC1EPKS8_) +STUB( + "gffKwir400k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEppEv) +STUB("gftOFNpk4Cg", _ZN9Inspector27InspectorFrontendDispatchernaEm) +STUB( + "gfxH1hL4sxk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEED1Ev) +STUB( + "gfz5Lw2PiZ8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEmmEi) +STUB( + "gg084bPTDaw", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33patchGameSessionsSearchAttributesEiRKNS4_44ParameterToPatchGameSessionsSearchAttributesERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB( + "gg0JdBHM+2s", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEmmEv) +STUB( + "gg0dtklKfzE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEC2EPS8_) +STUB("gg1UtlYIk8I", + _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchStatus10getmatchIdEv) +STUB( + "gg1a9cfw0nc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEEC2ERSA_) +STUB("gg1d4KsyVVs", sceMoveTrackerGetWorkingMemorySize) +STUB("gg2cJQtaEns", X509_get_version) +STUB( + "ggE92AVN8Rk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB("ggH7tBY5y5c", _ZN7WebCore8Document16createNSResolverERNS_4NodeE) +STUB( + "ggKAA3ILHa4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB( + "ggWMDqQlKFo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("ggXUXM0q+U0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEE7add_refEv) +STUB("ggj9Qm4XDrU", sceNpManagerIntGetParentalControlInfoA) +STUB( + "gglP1tmvrS4", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectator13isInitializedEv) +STUB( + "gglj0cQ9K1E", + _ZN3sce2Np9CppWebApi14SessionManager2V131PlayerSessionPushContextFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_24PlayerSessionPushContextEEE) +STUB("ggnCfalLU-8", sceSharePlayCrashDaemon) +STUB( + "ggnfS4eC5eM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEE7get_refEv) +STUB( + "ggpb+yRyvB4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEaSERKS7_) +STUB("ggqhArYcjNs", WKPageGroupRemoveAllUserContentFilters) +STUB("gguxDbgbG74", _Costate) +STUB("gh+UQ65QBEI", ucol_getAttribute_67) +STUB("gh3DFlg0Dkc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEmmEi) +STUB( + "gh7cu84CDV0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEptEv) +STUB( + "gh7fYU27FRI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "gh8mAkBRcLo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("ghAUCiW5i0s", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats22connectionQualityIsSetEv) +STUB( + "ghB63C2G4kw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEED2Ev) +STUB( + "ghBGHzJKrgg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEptEv) +STUB("ghFPg6X7be0", _ZN3NTF3URL7setHostEPKc) +STUB("ghLUU2Z5Lcg", sceMouseSetPointerSpeed) +STUB( + "ghP53NijCWg", + _ZNK3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody15maxPlayersIsSetEv) +STUB("ghRoNNPe-ts", sr07) +STUB("ghT4-XqfRCE", dlfunc) +STUB( + "ghU7MdEg5tE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEC1ERKS8_) +STUB( + "ghVD9IVPoks", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEED1Ev) +STUB("ghZq8PRQfVs", _ZN12video_parser8cPDLUtil17getMp4StateForPDLEPKcyyPNS_8Mp4StateE) +STUB("ghayPR9Wf4Q", g_array_insert_vals) +STUB("ghe8+EzQy9s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEEC2EPS5_PNS2_10LibContextE) +STUB("gheMsedUIlo", _ZN7WebCorelsERN3WTF10TextStreamENS_25ScrollPositioningBehaviorE) +STUB("ghhdyDuHLZw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEE7add_refEv) +STUB("ghjrbwjC0VE", sceUserServiceSetGlsCameraEffect) +STUB( + "ghpWMovT4bY", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeaders21intrusive_ptr_sub_refEPS5_) +STUB("ghqRRVQxqKo", sceNetIoctl) +STUB("ght-XVhooa8", mono_btls_x509_get_subject_key_identifier) +STUB( + "ghv1Z5n845E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEE21intrusive_ptr_sub_refEPS7_) +STUB( + "ghyX2n9XSvw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEneERKS9_) +STUB( + "gi+JJWOCwlk", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats6setMmrERKNS1_6Common12IntrusivePtrINS3_3MmrEEE) +STUB("gi+qSo+QATM", _ZN3sce7Toolkit2NP2V28Matching12RoomPingTimeC1ERKS4_) +STUB("gi3sjE2HpSQ", sceNpUniversalDataSystemIntDestroyRecordData) +STUB("gi5ZAaggjqI", Java_java_net_PlainDatagramSocketImpl_receive0) +STUB("gi6KQ7z29Io", __start__Zdynstr) +STUB("giBcsZZvL80", _ZN7WebCore22TextureMapperAnimationC2ERKS0_) +STUB("giCiLJI7LfA", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_skipToNextEntryMark) +STUB( + "giETw31RNI8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE3endEv) +STUB("giFZrbpb0lc", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11EntitlementEED1Ev) +STUB("giFcnXCf2YA", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEEC2Ev) +STUB("giLljWP5pPk", sceIduUtilGetSchedule) +STUB("giM2xC8AOlg", mono_aot_Sce_Vsh_Np_Webapiunbox_trampoline_addresses) +STUB( + "giNj2z8z928", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEC1EPS8_) +STUB( + "giUATEGYtTg", + _ZN3JSC7JSArray27getOwnNonIndexPropertyNamesEPNS_8JSObjectEPNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("giXN3L5I+7c", _ZN3sce7Toolkit2NP2V211SocialMedia7Request12ActionLinkFbD2Ev) +STUB("gid+GlhKgJM", _ZN15AbstractStorage4ItemnwEm) +STUB("gidiaOjZZuQ", SSL_want) +STUB("gigoVHZvVPE", sceLibcMspaceRealloc) +STUB( + "gijCqBFE3p0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEEptEv) +STUB( + "gik6iI+v1oU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE4sizeEv) +STUB("gimH2zdBANg", _ZN3sce2np12WorkerThread10ThreadMainEv) +STUB("giqKNgVN4+w", _ZN3JSC18IncrementalSweeper13startSweepingERNS_4HeapE) +STUB( + "gisu+HIdFWU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEptEv) +STUB( + "gitOCmtiowc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEED1Ev) +STUB("giw4lfOQJk0", sceCesRefersUcsProfileAscii) +STUB("giwq9r6vIvE", _ZN4Manx14NetworkProfile3getENS_14SettingOptTypeEPPvPi) +STUB("gizuZ8SJqCg", GCC_except_table97) +STUB("gj02Pc41dZk", _ZNK7WebCore18TextureMapperLayer9transformEv) +STUB("gj2jB3SM41g", mono_jit_compile_method) +STUB( + "gj5R4XcgBlQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEE11get_deleterEv) +STUB( + "gj64q6tHxi8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("gj8o80Vhuco", WKViewReplyCertificateVerification) +STUB("gjIRPiBLogA", WKNotificationManagerProviderDidRemoveNotificationPolicies) +STUB("gjLIRxeJ830", u_strFromPunycode_67) +STUB("gjLRFhKCMNE", _ZTIN10__cxxabiv121__vmi_class_type_infoE) +STUB("gjLRZgfb3i0", _ZNSt4_PadD2Ev) +STUB("gjP9-KQzoUk", scePadGetControllerInformation) +STUB( + "gjQkBn2XyS4", + _ZN3sce7Toolkit2NP2V28Matching10createRoomERKNS3_7Request10CreateRoomEPNS2_4Core8ResponseINS3_4RoomEEE) +STUB("gjRZNnw0JPE", sceSaveDataCreateTransactionResource) +STUB("gjSyfzSsDcE", sceNpAuthPollAsync) +STUB( + "gjaaEWEQG6g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEEC1ERKSA_) +STUB("gjbmYpP-XJQ", strcoll) +STUB( + "gje8BQooWR8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEC2EPKS8_) +STUB("gjeeM3mHOCI", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_19GetGameDataResponseEED2Ev) +STUB( + "gjgdQKk6hMk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEEC1ERSA_) +STUB("gjtdykMP3E0", _ZNK7WebCore15StyleProperties15propertyAsColorENS_13CSSPropertyIDE) +STUB( + "gjw0zKVfm9s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("gjyKh8gH4UE", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer9setoffsetEi) +STUB("gjyqnphjGZE", sceHmdInternalDfuSendSize) +STUB("gk3onhMfgXY", sceNpUniversalDataSystemIntRecordArraySetObject) +STUB("gk4MupTIKoo", mono_aot_Sce_Vsh_EventAppunbox_trampoline_addresses) +STUB("gk6CgjO8jOo", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setMixerLevel) +STUB( + "gkCtLbTf+Wo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEE3getEv) +STUB("gkDIoxZtOuk", WKPreferencesGetAllowCrossOriginSubresourcesToAskForCredentials) +STUB( + "gkEgH4rW2C4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEppEv) +STUB("gkGuO9dd57M", sceVrTrackerGpuWait) +STUB("gkV3OnYw92M", Java_java_awt_GnmGraphics_nativeSetColor) +STUB("gkWgn0p1AfU", freopen) +STUB("gkYgrCQKKrk", WKBundleFrameCopyWebArchiveFilteringSubframes) +STUB( + "gkYs-1R8aWM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEC1EPKS8_) +STUB("gkZaHxo11uY", ustrcase_getCaseLocale_67) +STUB( + "gkZps+Grwkg", + _ZN3sce2Np9CppWebApi7Matches2V140RequestTemporaryCompetitiveResultFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_33RequestTemporaryCompetitiveResultEEE) +STUB( + "gkaZE8vEdaw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEppEv) +STUB("gkbNmZpMD6s", + _ZN3sce2Np9CppWebApi14SessionManager2V128ResponseGameSessionSpectator12setAccountIdERKm) +STUB( + "gkfDypGxrIY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEE11get_deleterEv) +STUB( + "gkgz7u1U-bs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEED2Ev) +STUB("gklG+J87Pq4", y1f) +STUB("gkmWrF3Hi1Q", _ZTVN9Inspector35DOMDebuggerBackendDispatcherHandlerE) +STUB("gkrDbcAYMyA", _ZN7WebCorelsERN3WTF10TextStreamERKNS_32FixedPositionViewportConstraintsE) +STUB("gkrh-4jY4bA", _ZN9Inspector15ScriptCallFrameC2ERKN3WTF6StringES4_mjj) +STUB("gksKAYUf0CM", sceVideoCoreUnregistEventCallback) +STUB("gkugmNmgDEc", _ZN9Inspector23WorkerBackendDispatcherD2Ev) +STUB( + "gkvD2J9R5hA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEE11release_refEv) +STUB("gky0+oaNM4k", sceNetCtlInit) +STUB("gl0pi-MyS0o", _ZN7WebCore8Document15openForBindingsEPS0_RKN3WTF6StringES5_) +STUB("gl101UGGH1w", _ZN7WebCore9HTMLNames13challengeAttrE) +STUB("gl4W0PoYmcA", _ZN3JSC8JSObject18setPrototypeDirectERNS_2VMENS_7JSValueE) +STUB("gl4dVeAZSww", _ZN7WebCore8SVGNames16font_variantAttrE) +STUB("gl5VQnIf1yc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE7reserveEi) +STUB( + "gl74+XOpdjc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEC2Ev) +STUB("glBkV8-mprA", GetServiceType) +STUB("glDpAbxwC5A", EVP_EncryptInit) +STUB("glDvfH1bKSA", _ZN7WebCore9HTMLNames15formenctypeAttrE) +STUB("glEe46x-ZPQ", WKPageConfigurationSetUserContentController) +STUB("glGlFymp0xA", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredUsersEEC2Ev) +STUB( + "glGoFyQBeEU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("glJ7NuUrNhc", _ZN3JSC24DOMAttributeGetterSetter6s_infoE) +STUB( + "glKqDQtSbB0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEE6assignEPS5_PFvS7_EPNS2_10LibContextE) +STUB("glKx1Zdz50w", _ZNK7WebCore22EmptyFrameLoaderClient16canHandleRequestERKNS_15ResourceRequestE) +STUB("glOjchjSBHQ", _ZN7WebCore21MediaRecorderProvidernaEmPv) +STUB("glSyPA10pxA", _ZN3JSC7Symbols38getSetIteratorInternalFieldPrivateNameE) +STUB( + "glTzO4Y9wpM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE8capacityEv) +STUB("glUobtANxAo", _ZN3sce2Np9CppWebApi10Activities2V114UserActivities5Error7setCodeERKi) +STUB("glVu-RQwkic", sceApplicationSpawnAndSetAllFocus) +STUB("glWpwxPw8yo", _ZN3sce2Np9CppWebApi13InGameCatalog2V55Image9unsetTypeEv) +STUB("glX67PWaF-g", sceUpsrvUpdateCreateUpdateTask) +STUB( + "glXUz3KcliA", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetAccountId2OnlineId12setaccountIdEm) +STUB("glb-pUpSbqQ", mono_aot_I18Nmethod_addresses) +STUB( + "glgtqUSk8ho", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEneERKS9_) +STUB("glkVxMoEu-E", sceFaceTrackerRegisterFixUserIdCallback) +STUB("glngYbGPYR0", _ZN3sce7Toolkit2NP2V210Tournament7Bracket8deepCopyERKS4_) +STUB("glnnwKzcvR0", _ZNK7WebCore9TreeScope14getElementByIdERKN3WTF12AtomicStringE) +STUB("glsQJ5HCC-U", WKBundlePageIsUsingEphemeralSession) +STUB("glsZ6bq5BKo", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_19UserRankInformationEE3getEv) +STUB( + "gluDrexUWQs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE4sizeEv) +STUB("gluWIogLbAM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEEdeEv) +STUB("gm2mcS8itac", PSNowReset) +STUB("gm3NmEkM6Uo", WKPreferencesGetPageVisibilityBasedProcessSuppressionEnabled) +STUB( + "gm3dqx0Blfk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("gm5sk37FHEk", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getAllSubtitleStreams) +STUB( + "gm7SLP0kNnE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEEdeEv) +STUB( + "gm9OSANwTyg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEeqERKS9_) +STUB("gm9wWQ83CiA", _ZNK7WebCore24RotateTransformOperation1yEv) +STUB( + "gmIBlxjFqMc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEplEm) +STUB( + "gmKF5G8j4iw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE8capacityEv) +STUB( + "gmLlTQlANaI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEdeEv) +STUB("gmMcOzXLK2w", _ZN12video_parser17cVideoProfilerMp418hasProtectedStreamEv) +STUB("gmXNGOczYVw", WKPreferencesGetCSSCustomFilterEnabled) +STUB( + "gmdVEuibef4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEptEv) +STUB( + "gmegBIj0pOQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEixEm) +STUB("gmh9dPLZ8rE", WKPageHasVerticalScrollbar) +STUB("gmjmwKyfb2A", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_25ChallengeBinaryDataResultEE3getEv) +STUB( + "gmnqr4ncWM8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("gmoxsDewVKI", sceLoginMgrServerNotifyTutorialShown) +STUB("gmr-M3dWfR0", + _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead17getRepresentativeEv) +STUB("gmwGr9VmRvM", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_23NpIdListRankInformationEE17getAdditionalInfoEv) +STUB( + "gmzOnGNtgk4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE7reserveEi) +STUB( + "gn8wc7k5SEE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEE11get_deleterEv) +STUB("gn9owvTklTg", _ZNK7WebCore9FrameView29absoluteToLayoutViewportPointENS_10FloatPointE) +STUB( + "gnFHLQllH-Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEC1ERS8_) +STUB( + "gnHWiuXnTMg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEC1EPS8_) +STUB("gnT05fSpgKI", rgctx_fetch_trampoline_rgctx_71_p) +STUB("gnViUj0ab8U", sceUserServiceGetImeInitFlag) +STUB("gnWUEMlAxZY", deflate) +STUB( + "gnauI+-FUlA", + _ZN3sce2Np9CppWebApi7Matches2V130RequestTeamMemberResultFactory7destroyEPNS3_23RequestTeamMemberResultE) +STUB("gng8a8u0VYM", _ZNK3sce7Toolkit2NP9Utilities6FutureI16SceNpTusVariableE3getEv) +STUB("gnh2cpEgSS8", _ZN3sce2np8WorkItem9BindQueueEPNS0_9WorkQueueEi) +STUB("gnjkR0o4FJo", _ZN3JSC7Symbols25generatorValuePrivateNameE) +STUB( + "gnogTae5pM4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE8capacityEv) +STUB("gnq6abPyiYc", __tsan_atomic8_fetch_nand) +STUB("gnsIZjIH-Mw", _ZNK7WebCore16URLDecomposition4portEv) +STUB("gnwCmkY-V70", _ZN3sce2np6Thread9GetResultEv) +STUB("gnyVA6Tj-ak", fchdir) +STUB( + "gnzrPLA1oZU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEC2EPS8_) +STUB("go+HgP5TV2M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE5beginEv) +STUB("go0QBZdmPKk", glGetQueryObjectuivEXT) +STUB("go1LaO7f15k", _Unwind_FindEnclosingFunction) +STUB( + "go2r0gIzAJs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "go51S3uh4oI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE5emptyEv) +STUB("go8pfVYxUDw", _ZNK7WebCore11MediaPlayer21audioDecodedByteCountEv) +STUB("go9a+g2FFlY", jpeg_fdct_1x1) +STUB( + "goBfL-BQzu8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE6resizeEj) +STUB("goBvrlOAARA", Java_com_sony_bdjstack_ti_Database_getPlayListTable) +STUB("goD1gol2oYs", il2cpp_thread_attach) +STUB("goI+a-FRZ+g", _ZN7WebCore8SVGNames19stroke_linejoinAttrE) +STUB( + "goIakVgIBVk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEC2Ev) +STUB("goLVqD-eiIY", _ZN10__cxxabiv117__class_type_infoD1Ev) +STUB( + "goQBbdds9EY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEEC1Ev) +STUB( + "goQzKScXJ44", + _ZN3sce7Toolkit2NP2V211UserProfile24displayUserProfileDialogERKNS3_7Request24DisplayUserProfileDialogEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("goTeWCvONpI", uregex_groupCount_67) +STUB( + "goTuYr8Q21Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEC1EPKS8_) +STUB("goURkCMz2mY", + _ZNK7WebCore14LoaderStrategy27havePerformedSecurityChecksERKNS_16ResourceResponseE) +STUB("goUTenum5Qg", _ZN3sce3Xml3Dom8DocumentD2Ev) +STUB("goUd71Bv0lk", CERT_enumerateAltName2) +STUB("goYSSGx1Bfo", uenum_nextDefault_67) +STUB( + "goYuwj4jUGs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEC1EPS8_) +STUB( + "goZIrxs-ze8", + _ZN3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyD1Ev) +STUB("goaz6kl9pc0", rgctx_fetch_trampoline_rgctx_58_p) +STUB("gobJundphD0", _LRteps) +STUB( + "gobdRlE9Dyg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("goc0qasY9Rw", _ZN3JSC7Symbols53promiseFlagsIsFirstResolvingFunctionCalledPrivateNameE) +STUB("goc1-kTtr18", mono_debug_cleanup) +STUB( + "godW5ardy3k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEC1ERKS7_) +STUB( + "goeKcSQlVew", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "gogAWhGn91k", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEptEv) +STUB("goi5ASvH-V8", sceHmdGetWideNearDistortionCorrectionCommand) +STUB("goiLnDJ4lCI", _ZN4Manx15ProcessLauncher10invalidateEi) +STUB("gokWod7GAH4", getsid) +STUB("gonN1KzF8wA", _ZN3JSC38numberOfExecutableAllocationFuzzChecksEv) +STUB("gonUZZF6--M", WKPreferencesGetAudioPlaybackRequiresUserGesture) +STUB( + "gonwkk3tjKI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEC2ERKS7_) +STUB("gouncuRyDn0", _ZN3sce7Toolkit2NP2V24Core7Request21BehaviorModificationsC1Ev) +STUB("govcxXDyzbw", curl_easy_upkeep) +STUB( + "gozsp4urvq8", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERt) +STUB("gp+tZXUbH9Y", sceNpAsmClientCreateRequest) +STUB("gp+zbpLQ8WU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEE7get_refEv) +STUB("gp0cBnSgPmo", _ZN3sce3pss4core5audio11SoundPlayer15MoveSurroundPanEfbfd) +STUB( + "gp3soLZ1nu0", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("gp7zN7yGuqk", mono_aot_Sce_Vsh_ShellCoreUtilWrapperunbox_trampoline_addresses) +STUB("gp9RuTftqFo", _ZN7WebCore8Document27removeMediaCanStartListenerERNS_21MediaCanStartListenerE) +STUB("gpGZDB4ZlrI", sceAppContentDownload0Expand) +STUB("gpRW3yUQPWg", _ZN9Inspector25DatabaseBackendDispatcherD1Ev) +STUB("gpSAvdheZ0Q", sceNpMatching2GetMemoryInfo) +STUB("gpSEllb2338", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS12TusVariablesEEC1Ev) +STUB("gpSyxuszTec", _ZN3JSC7Symbols26getCatchFinallyPrivateNameE) +STUB( + "gpVU35Ogdn4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE6resizeEj) +STUB( + "gpYVB7rVV-A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("gpc4YXZffkQ", _Unwind_GetLanguageSpecificData) +STUB("gpdlKz0w448", sceOpusSilkEncGetSize) +STUB( + "gpeqvpBQEkM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "gpn8epKfzB4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEED1Ev) +STUB( + "gpwu0oxp3rM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE8capacityEv) +STUB("gpx0CvZmfeI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEEmmEv) +STUB("gpxSVDz9j+w", _ZN3sce7Toolkit2NP2V24Core15MemoryPoolStatsC2Ev) +STUB("gq5T-bvtQMQ", _ZNK3WTF9MediaTimegeERKS0_) +STUB("gq9j9rEwI9Q", _ZN3sce2Np9CppWebApi7Matches2V133RequestTemporaryCompetitiveResultD2Ev) +STUB("gqAG7JYeE7A", sceHmdReprojectionStartMultilayer2) +STUB( + "gqAtZPFST6c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "gqH4mJEaimM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEptEv) +STUB("gqKfOiJaCOo", expm1) +STUB( + "gqLmvnhb0Gc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEEC1Ev) +STUB( + "gqP9gNGHm4o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("gqPjTzsu9vU", sceRegMgrBackupPushData) +STUB("gqSOH9r-I5Q", __tsan_write_range) +STUB("gqSkr6L7OPY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEaSERKS7_) +STUB( + "gqVPOdGVqNY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE10setContextEPNS2_10LibContextE) +STUB( + "gqW3bm6Gr9U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEEC1Ev) +STUB("gqbhMNYl9+4", _ZN7WebCore32ScrollingStateFrameScrollingNode19setFrameScaleFactorEf) +STUB( + "gqdqmOzG5K8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("gqeuQVcksps", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsD2Ev) +STUB("gqkmh6zYT9U", WKPageHasHorizontalScrollbar) +STUB("gqoJtxjVGHY", _ZN7WebCore11MathMLNames8hrefAttrE) +STUB("gqr-pq0E8kY", WKPreferencesGetLegacyEncryptedMediaAPIEnabled) +STUB("gquEhBrS2iw", scePthreadMutexattrGettype) +STUB( + "gqvdTC2Zmpc", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("gqwPsSmdh+U", _ZTSSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE) +STUB( + "gqzK3JDVSck", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEcvbEv) +STUB( + "gr0DX65Gg84", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("gr6uhTJb3e0", _ZTSo) +STUB("gr79yO9dFco", UnLockProtocolInfoList) +STUB("grBdHp6fVP8", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification14NewRoomMessageEE3getEv) +STUB("grCFSFvMxgU", sceRegMgrEvtGetCnt) +STUB("grCYks4m8Jw", sceHmdGetDistortionCorrectionCommand) +STUB("grDD8PABX2g", + _ZN15AbstractStorage12LocalStorage11DeserializeESt10shared_ptrINS_7ContentEEPS1_INS_4ItemEE) +STUB("grHGGz9PXME", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEE7get_refEv) +STUB("grQAUTj5+Kg", _ZN3JSC19SparseArrayValueMap6s_infoE) +STUB("grWXn3ZlkYM", _ZN7WebCorelsERN3WTF10TextStreamERKNS_33StickyPositionViewportConstraintsE) +STUB("grWi+vB2srs", _ZN7WebCore13ContainerNode11appendChildERNS_4NodeE) +STUB( + "grZMQ38YvTw", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB( + "grbaq9Auquc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB( + "grcZfBTlYX4", + _ZN3sce2Np9CppWebApi7Matches2V120ErrorResponseFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_5ErrorEEEPNS8_INS3_13ErrorResponseEEE) +STUB( + "gre1Lr13x-0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEE5resetEPS9_) +STUB("greBgRA3vlM", Java_sun_awt_image_GnmImageDecoder_initIDs) +STUB("greCmDhV9k4", _ZN12video_parser14cVideoOperatorD1Ev) +STUB("gri-rp0Ne+Y", WKPreferencesSetJavaScriptEnabled) +STUB("grjE9ARPIwM", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE4sizeEv) +STUB("grr+gIjFYs4", EVP_sha224) +STUB("grr9rNSVCXM", ucol_getKeywordValues_67) +STUB("grs2pbc2awM", sceUltUlthreadRuntimeGetWorkAreaSize) +STUB("gs+4Aq-eevE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEaSERKS7_) +STUB( + "gs0dTsudFuQ", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser11getsortModeEv) +STUB("gs25olHBv4A", delegate_virtual_invoke_17_p) +STUB( + "gs2Phb-WirE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEC2Ev) +STUB("gs3p5+dB4C0", monoeg_g_filename_from_utf8) +STUB( + "gs9o0MyBTc8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "gsA7k0mHW+U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEC2Ev) +STUB( + "gsAVunFeDT4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEEdeEv) +STUB( + "gsDmpCzAYOk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEC1Ev) +STUB("gsF75bCkzAI", _ZN3WTF19hasProcessPrivilegeENS_16ProcessPrivilegeE) +STUB("gsFoqQ-R5js", _ZN3WTF5sleepENS_7SecondsE) +STUB("gsJUoIpMdME", WKPreferencesSetAllowsAirPlayForMediaPlayback) +STUB("gsN6ZXS+2EY", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V19Bandwidth11globalIsSetEv) +STUB("gsOIY8iGysE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEEC1EPKS6_) +STUB( + "gsOtgo7IKvA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "gsOvguT1j+4", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM23AccessibilityProperties7CurrentEEESt8optionalIT_ERKN3WTF6StringE) +STUB("gsOx0pvAwDQ", _ZNK7WebCore13CSSImportRule5mediaEv) +STUB("gsPs+KxIk34", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEEcvbEv) +STUB( + "gsQ-BzAEgbg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEED1Ev) +STUB( + "gsU+cMJEcWw", + _ZN7WebCore30InspectorInstrumentationWebKit16interceptRequestERNS_14ResourceLoaderEON3WTF8FunctionIFvRKNS_15ResourceRequestEEEE) +STUB( + "gsVce-9cTxE", + _ZN3sce7Toolkit2NP12ActivityFeed9Interface11getWhoLikedEPKNS1_18GetWhoLikedRequestEPNS1_9Utilities6FutureISt6vectorINS1_13WhoLikedStoryENS1_15AppSTLAllocatorISA_EEEEEb) +STUB("gsXnnvYX6KI", _ZN3WTF18charactersToUInt64EPKDsmPb) +STUB("gsZfTYKMm7o", _ZN3WTF19MetaAllocatorHandle6shrinkEm) +STUB("gsbXgOxtivY", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_17MessageAttachmentEE17getAdditionalInfoEv) +STUB("gsePliSjHEE", _Z18createIpcChannelExiPKciiimPi) +STUB( + "gseWkh66L0U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEppEi) +STUB("gsk7fVctu5U", _ZN7WebCore24CoordinatedGraphicsLayer11setPositionERKNS_10FloatPointE) +STUB("gsljWk-gMtE", _ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody10getOfferIdEv) +STUB("gsnLR9VxDdc", _ZN10Deprecated25ScriptCallArgumentHandlernaEm) +STUB("gsnW-FWQqZo", __addvsi3) +STUB("gso5X06CFkI", _LPmsw) +STUB("gsqESe70WD0", cairo_pattern_set_filter) +STUB("gsqXCd6skKs", _Thrd_start_with_attr) +STUB("gt0iNtXwf-E", WKDownloadCopyRedirectChain) +STUB("gt1TtU4Q2yk", GCC_except_table172) +STUB("gt1iXQ4Er+w", _ZN7WebCore6ISOBoxC1ERKS0_) +STUB("gt1tknc-HfA", _ZL12alloc_or_diem) +STUB("gt2Iq3+H18M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEEC1Ev) +STUB( + "gtBWvR2cUAk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEmmEi) +STUB("gtDRViT2p1I", mono_aot_Sce_Vsh_Db_Sharedplt) +STUB("gtIpEDDn76I", _ZNK7WebCore24MatrixTransformOperation4dumpERN3WTF10TextStreamE) +STUB( + "gtKG5bav9aQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEEC2Ev) +STUB( + "gtMT2-wXTgQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEptEv) +STUB( + "gtQWCWxkbr4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEC1EPKS8_) +STUB("gtRD8r2e+uk", ERR_print_errors_cb) +STUB("gtWxylhD504", sceIduUtilShowOverlay) +STUB("gtYJOTEcCrc", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession16getMaxSpectatorsEv) +STUB( + "gtbop9L1yBo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEEptEv) +STUB( + "gtcovFeGs7o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("gtdtzx6Ps3g", _ZN7WebCore16HTMLMediaElement6rewindEd) +STUB( + "gtj2+bf7S1Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEE11get_deleterEv) +STUB("gtkTcnWCrkU", curl_unescape) +STUB("gtkUYJIaCbI", _ZNSt9_FacetptrISt8numpunctIcEE6_PsaveE) +STUB("gtoTsGM9vEY", sceImeVshClose) +STUB( + "gtsc5Wj9bno", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB( + "gttj6TJVMIE", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setInteger2ERKi) +STUB("gtuZVehSwuo", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi32ParameterToPostGameSessionsTouchD2Ev) +STUB( + "gtx6fAhoMiU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB("gu-Fvyghmic", _ZNK3sce2np9JsonValue7GetBoolEv) +STUB("gu0eRZMqTu8", CERT_STORE_createStore) +STUB("gu8T1JTKtYo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V112TicketStatusEEC2EPS6_) +STUB( + "guGakcA4vDk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEcvbEv) +STUB("guJxsLkYX9Q", WKBundlePagePostMessage) +STUB( + "guKWXs+6YtM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "guS5ZT-EbDc", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "guYzMaiH-74", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEE6assignEPS7_PFvS9_EPNS2_10LibContextE) +STUB("guaqRqZCe2g", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus11unsetSlotIdEv) +STUB("gueTVibW43U", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEEixEm) +STUB("guf+xcMoCas", sceShellCoreUtilGetFreeSizeOfAvContentsTmp) +STUB("gui41xif0Xw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEED1Ev) +STUB("gujP4afE9dQ", sceAt9EncCreateEncoder) +STUB( + "guuxt07TxTY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "guwivZCRO2o", + _ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody8setCauseERKNS1_6Common12IntrusivePtrINS3_5CauseEEE) +STUB("guwl-qH06sY", _ZN3WTF21MemoryPressureHandler7installEv) +STUB( + "guy3X-PEbqk", + _ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody13setMaxPlayersERKi) +STUB("gv+Gly1fMT8", _ZN7WebCore11MediaPlayer20createResourceLoaderEv) +STUB( + "gv6AJ9Wc0NE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEEdeEv) +STUB("gv8bC38U34E", _ZNK7WebCore22EmptyFrameLoaderClient10hasWebViewEv) +STUB("gvAxvGQwxCg", JSContextGroupRemoveHeapFinalizer) +STUB("gvD1greCu0A", sceNetSendto) +STUB( + "gvEkk+amfOw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE8pushBackERKS8_) +STUB( + "gvLImffR1cg", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "gvNHAmbfx+I", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEdeEv) +STUB("gvRi1Ol6RqA", mono_aot_Sce_Vsh_VideoEdit_Wrapperplt) +STUB("gvabWDnAOOU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEED2Ev) +STUB( + "gve68fVQYAo", + _ZN9Inspector20DOMBackendDispatcher4redoElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("gve8e5wHgEw", _ZNK7WebCore14FrameSelection15copyTypingStyleEv) +STUB( + "gvevoeXFS2g", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE8capacityEv) +STUB( + "gvgGzzHtAKo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE6resizeEj) +STUB( + "gvgNraTAhPg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEE11get_deleterEv) +STUB( + "gvm3h8hTNKA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEED1Ev) +STUB("gvmkc+Z2ZHU", _ZThn16_N26ScePssInputControllerOrbisD1Ev) +STUB("gvnJPMkSoAY", sceNetCtlGetStateIpcInt) +STUB("gvqHrw6-Q5o", SSL_CTX_get_verify_mode) +STUB("gvqHvbjlHzA", sceLibcMspaceGetFooterValue) +STUB("gvsxodQXsxE", g_strconcat) +STUB("gvtJf919yVI", uprv_maxMantissa_67) +STUB("gvtcfyOvCTg", _ZSt9use_facetISt7codecvtIcc9_MbstatetEERKT_RKSt6locale) +STUB( + "gvuQ6hDw9NM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEEC2ERSA_) +STUB( + "gvvoigDpacQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("gw6eHbjfARY", _ZN9Inspector22RemoteInspectionTargetD1Ev) +STUB( + "gw7fieR8fC4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEED1Ev) +STUB( + "gwA7Ma28vsE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "gwAj3Hwyx1A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEC1Ev) +STUB( + "gwF55cdJDlo", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V128SetMultiVariablesRequestBody19npServiceLabelIsSetEv) +STUB("gwIt6VK-SdA", _ZN7WebCore11MediaPlayer11invalidTimeEv) +STUB("gwUynkEgNFY", sceVoiceSetMuteFlag) +STUB("gwVFNCkuOQk", _ZN7WebCore19ResourceRequestBase12clearPurposeEv) +STUB( + "gwX+CdEvTjw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEdeEv) +STUB( + "gwYvPQz4x7g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEE3getEv) +STUB( + "gwcKs-Ogy+4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("gwe+SM90LaU", _ZN12video_parser7cVpUtil15convLangIsoToVpEtPNS_9VP_LANG_eE) +STUB( + "gwgCU0UQMks", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEEaSERSA_) +STUB( + "gwityL1ji1Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE21intrusive_ptr_add_refEPS9_) +STUB("gwm7yV+Wd0c", + _ZN3sce2Np9CppWebApi14SessionManager2V132RequestPlayerSessionMemberPlayer10getPlayersEv) +STUB("gwrgHmNV4DU", _ZTIPg) +STUB("gwsWEALPum4", _ZN9Inspector23CanvasBackendDispatcherD2Ev) +STUB("gwtkXCmgiUk", sceFiosDebugStatisticsReset) +STUB( + "gwv7RjktCdY", + _ZN9Inspector14ConsoleMessageC1EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelERKN3WTF6StringEONS5_3RefINS_15ScriptArgumentsENS5_13DumbPtrTraitsISA_EEEEPNS1_14JSGlobalObjectEm) +STUB( + "gwwT3cBOa1Y", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE3endEv) +STUB( + "gwzTYWUh0mM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEC2EPNS2_10LibContextE) +STUB( + "gwzf1GsbQOE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE8capacityEv) +STUB( + "gwzmsR1x4kE", + _ZNK3sce2Np9CppWebApi14SessionManager2V131ResponseGameSessionMemberPlayer6toJsonERNS_4Json5ValueEb) +STUB( + "gx+jAEx+04w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEEC2ERSA_) +STUB("gx130ttraj0", WKPluginInformationDefaultLoadPolicyKey) +STUB( + "gx8DWooEXu4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEE7get_refEv) +STUB("gxDPRukAYIM", fuse_fs_getattr) +STUB( + "gxESsY-aBNg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB("gxMKV3eJiZM", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_16EventInformationEEC2Ev) +STUB( + "gxR-PeNGopc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEE7get_refEv) +STUB("gxSJJNSQDGE", mono_metadata_free_mh) +STUB( + "gxVIXCU5aHQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEneERKS9_) +STUB("gxWsVYddTXk", _ZN7WebCore21NetworkStorageSession25switchToNewTestingSessionEv) +STUB("gxYbTH4+t6E", _ZN3sce7Toolkit2NP2V29Challenge7Request21GetReceivedChallenges13MAX_PAGE_SIZEE) +STUB("gxb7ii-L7Cs", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification14NewRoomMessageEED1Ev) +STUB( + "gxdBUXqv5-4", + _ZN7WebCore19JSAnimationTimeline15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB("gxekxWcqD1Y", _ZN3JSC7Symbols25resolvePromisePrivateNameE) +STUB("gxi3Yh43Aps", _ZN7WebCore9HTMLNames11loadingAttrE) +STUB("gxkBbZ5cUNY", _ZN3JSC11VMInspector11isValidCellEPNS_4HeapEPNS_6JSCellE) +STUB( + "gxkGMvILSqg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEED1Ev) +STUB("gxkJdAhHpGc", u_strToUTF32WithSub_67) +STUB( + "gxkrCw+1Cmw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEE21intrusive_ptr_sub_refEPS7_) +STUB("gxlF59yPwws", + _ZN12video_parser16cVideoContentMp423releaseOperatorInstanceEPNS_14iVideoOperatorE) +STUB("gxlgckSr7z4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEED1Ev) +STUB( + "gxrzI1ynwA0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "gxsswYWjEX0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE10setContextEPNS2_10LibContextE) +STUB( + "gxtywMzjJho", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("gxvn6JGDhBw", sceFsExternalStorageDeconfigure) +STUB( + "gxxhQ1LriRw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE21receiveResponseHeaderEv) +STUB( + "gxxhUv+jNMI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "gy1G9GS4Ens", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE8pushBackERKS8_) +STUB( + "gy3T3WBPLAU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEED2Ev) +STUB( + "gy5Zv0ObZJI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEED1Ev) +STUB( + "gyAieABDoHU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("gyCjQn2+l6Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEEC2Ev) +STUB( + "gyFPpyXvcCQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE8copyFromERKS9_) +STUB( + "gyN2KZV162U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE3endEv) +STUB("gyQhS+RNCSQ", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112GroupingTypeEEdeEv) +STUB("gyTyVn+bXMw", sceImeDialogTerm) +STUB("gyVTZWyySpM", sceAgcDriverGetSetWorkloadsActivePacketSize) +STUB( + "gyVr5gnHCMk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEC1ERKS7_) +STUB("gyYQt9t4voY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE8capacityEv) +STUB( + "gyaQXGnk5xA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEC1Ev) +STUB("gyaouzu4-w8", usearch_open_59) +STUB("gygzdpUOeyI", _ZN7WebCore10Pasteboard22readStringInCustomDataERKN3WTF6StringE) +STUB( + "gyiJ4qtorWw", + _ZN7WebCore20ResourceLoadObserver23setNotificationCallbackEON3WTF8FunctionIFvONS1_6VectorINS_22ResourceLoadStatisticsELm0ENS1_15CrashOnOverflowELm16EEEEEE) +STUB("gylHiQ56F10", sceVideoCoreMediaSourceAppendData) +STUB( + "gyn1PLTsamI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEE5resetEPS8_) +STUB("gyqW9rM5vIs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE3endEv) +STUB("gyqpM5tRXtA", _ZN7WebCore9FloatRect5scaleEff) +STUB("gyuVdpJihv0", _ZN3sce3Xml3Sax6ParserD1Ev) +STUB("gyx7Amyd94M", __tsan_atomic128_compare_exchange_strong) +STUB( + "gyxd-epfbgI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEEaSERKSA_) +STUB("gyz287utQ6c", _ZN3sce4Json9RootParamD2Ev) +STUB( + "gz3s69xSvAI", + _ZNK3sce2Np9CppWebApi14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBody6toJsonERNS_4Json5ValueEb) +STUB("gz63bzYxL9E", mono_shared_hashtable_foreach_steal) +STUB( + "gz8ms-RcWBM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEC2EPS8_) +STUB( + "gzF2sqsXebA", + _ZN7WebCore17HTMLSelectElement3addERKN3WTF7VariantIJNS1_6RefPtrINS_17HTMLOptionElementENS1_13DumbPtrTraitsIS4_EEEENS3_INS_19HTMLOptGroupElementENS5_IS8_EEEEEEERKNS1_8OptionalINS2_IJNS3_INS_11HTMLElementENS5_ISF_EEEEiEEEEE) +STUB( + "gzKUPLePiEM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE5beginEv) +STUB("gzLt9Qrauk0", sceCoredumpConfigDumpMode) +STUB("gzP2lq5uSXo", udat_formatCalendarForFields_67) +STUB("gzUyAMoXgzg", _ZN7WebCore15GraphicsContextD2Ev) +STUB( + "gzYpPv6oigs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEEaSERSA_) +STUB("gzcHpAWMGig", _ZN7WebCore17PageConsoleClient7timeEndEPN3JSC9ExecStateERKN3WTF6StringE) +STUB( + "gzeUeOoBiZU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEaSERKS9_) +STUB("gzjhKWIF5Gs", sceVorbisDecCrossLap) +STUB( + "gzm4qiq0BCI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEEC1ERKS9_) +STUB("gznNreVeRLc", + _ZN3sce2Np9CppWebApi7Matches2V133RequestTemporaryCompetitiveResult16getPlayerResultsEv) +STUB("gzndltBEzWc", sceAmprCommandBufferGetNumCommands) +STUB("gzqGuvpnhNs", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE7popBackEv) +STUB("h+15N46TlB8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEEC2ERKS9_) +STUB("h+4DJpAXs4I", __sys_opmc_get_ctr) +STUB( + "h+7nGokgu94", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEptEv) +STUB("h+E3nihI2mM", WKPluginInformationHasSandboxProfileKey) +STUB( + "h+GeWflmQp4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "h+HBx-cfb38", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEE5resetEPS6_) +STUB( + "h+IggV4FUgM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE7reserveEi) +STUB("h+J60RRlfnk", nextafter) +STUB("h+OfxlwNP6s", _ZN7WebCore15ActiveDOMObjectC2EPNS_22ScriptExecutionContextE) +STUB( + "h+RtLuceyaI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE7popBackEv) +STUB("h+TdWvCbo-Q", HttpCacheWrapperRetrieve) +STUB("h+WekCTkEg8", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchDetailC1ERS5_) +STUB( + "h+XDfbphmr8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE5beginEv) +STUB( + "h+Zv9K8wras", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEdeEv) +STUB("h+c9OSfCAEg", _ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED1Ev) +STUB("h+eB2OwsihQ", ucnv_getSubstChars_67) +STUB("h+iBEkE50Zs", _ZTSSt10moneypunctIcLb0EE) +STUB( + "h+q4KqbsuR0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEED1Ev) +STUB("h+rFGpZ-9GY", mono_threads_request_thread_dump) +STUB( + "h+tFhwoYpyc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEE7get_refEv) +STUB("h+v1uJNkdY4", _ZN7WebCore14ResourceHandleD0Ev) +STUB("h+wtQ0Jvjh4", psl_get_version) +STUB("h+xQETZ+6Yo", _ZTSPKy) +STUB( + "h+y3L2Zg0wg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE8copyFromERKS9_) +STUB("h-+VxV8GFlE", + _ZN7WebCore12deleteCookieERKNS_21NetworkStorageSessionERKNS_3URLERKN3WTF6StringE) +STUB( + "h-1N2L3CcLE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEC2Ev) +STUB("h-DPGYy59zw", Java_com_sony_bdjstack_org_bluray_storage_PersistentDataAreaInfo_getTotalPsSize) +STUB("h-HCQG2lRQo", _ZN7WebCore21DiagnosticLoggingKeys29exceededBackgroundCPULimitKeyEv) +STUB("h-I2QP+0Z7s", JVM_HoldsLock) +STUB( + "h-IjHfG7Nyg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEC2Ev) +STUB("h-JNdoOhUY8", WKPageConfigurationSetPreferences) +STUB("h-JkOgS7Ljg", sceDebugGetVirtualMemoryInfo) +STUB( + "h-M8O7Bw9Pg", + _ZN7WebCore24passesAccessControlCheckERKNS_16ResourceResponseENS_23StoredCredentialsPolicyERNS_14SecurityOriginERN3WTF6StringE) +STUB("h-OifiouBd8", scePthreadRwlockattrSettype) +STUB( + "h-R-Q3ethio", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEED1Ev) +STUB("h-RB8SdvX6U", OCSP_basic_add1_cert) +STUB( + "h-RoW9DvTW8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEmmEi) +STUB("h-V8r4EF7bo", _ZN3sce4Json6Object8iterator7advanceEm) +STUB("h-XTTR5OU20", mono_class_num_events) +STUB( + "h-ZkmO1es2Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEppEi) +STUB("h-a7+0UuK7Q", _ZN10__cxxabiv121__vmi_class_type_infoD1Ev) +STUB("h-aVsrxIcRs", mono_aot_Sce_Vsh_ShellCoreUtilWrapperjit_code_end) +STUB( + "h-d1qG93iZg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEEC2Ev) +STUB( + "h-gKAUUU6r4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEEcvbEv) +STUB( + "h-gnciqEcUg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEmmEi) +STUB( + "h-nLbUs8oj4", + _ZN9Inspector31RuntimeBackendDispatcherHandler20AwaitPromiseCallbackC1EON3WTF3RefINS_17BackendDispatcherENS2_13DumbPtrTraitsIS4_EEEEi) +STUB("h-pwnoSE-tk", _ZN3sce7Toolkit2NP2V29Messaging7Request17SendInGameMessageC1Ev) +STUB( + "h-yqEkrJ1v8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEppEv) +STUB("h0-W7NdY+OE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEE7add_refEv) +STUB("h00j6unQuG8", _Z23Ime_UpdateContextNativemP11_MonoStringj) +STUB( + "h00mGQukrWQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEaSERKS7_) +STUB("h01Tx0bEji0", _ZN3sce2Np9CppWebApi7Matches2V113RemovedPlayerC2EPNS1_6Common10LibContextE) +STUB("h033Ypm8Gnw", _ZN7WebCore11DisplayList6SetCTMC1ERKNS_15AffineTransformE) +STUB("h03451xDaKs", utrie2_isFrozen_67) +STUB("h05OHOMZNMw", ftrylockfile) +STUB("h0AD0dCrvSc", _ZN7WebCore4Page22revealCurrentSelectionEv) +STUB("h0EenX2eWyA", _ZN3sce2np13NpAccessTokenC2ERK16SceNpAccessToken) +STUB("h0FBkPyOZ3w", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_19UserRankInformationEEC2Ev) +STUB( + "h0Gei5o3fiA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEE5resetEPS9_) +STUB( + "h0JPrx-+Ghk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE7popBackEv) +STUB("h0O4HmfKZK4", _ZN7WebCore11BitmapImageC2EPNS_13ImageObserverE) +STUB("h0S6kPRAhMA", mono_domain_create_appdomain) +STUB("h0V9NJIvs3s", _ZN12video_parser13cVideoPathMgv14GetMaclistNameEPcc) +STUB( + "h0VikfcrKao", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEEC1ERSA_) +STUB("h0XebKiMBtk", sceUltMutexUnlock) +STUB("h0ZwshNTp0o", + _ZNK3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForRead6toJsonERNS_4Json5ValueEb) +STUB("h0dJ3kt7cdc", _ZN3sce7Toolkit2NP15NpIdListRequestC2Ev) +STUB( + "h0dYE6rGWOQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE4sizeEv) +STUB( + "h0esO-BJz6U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEE11get_deleterEv) +STUB("h0k3YHRmuQc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEC2Ev) +STUB("h0k8FLhotoM", _ZN7WebCore21BackForwardController9goForwardEv) +STUB("h0n4Fb9j2R8", FT_CMap_Done) +STUB("h0o+D4YYr1k", sceAudioOutSetJediSpkVolume) +STUB("h0qUZQn20ww", scePlayReadyEnvelopeOpen) +STUB("h0qUqSuOmC8", pthread_condattr_getpshared) +STUB("h0slGrL6pBs", glGenQueries) +STUB("h0tRdxavoc0", _ZN3JSC11FuzzerAgentD2Ev) +STUB( + "h0wijviD6BY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEppEv) +STUB( + "h0wp+UtjGGI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "h10I+yAIowQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEmmEv) +STUB( + "h11w5dhNEzU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE3endEv) +STUB("h1205-UYfiQ", + _ZN7WebCore14DocumentLoader14notifyFinishedERNS_14CachedResourceERKNS_18NetworkLoadMetricsE) +STUB("h12wGOOoO5s", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_12CategoryInfoEE17getAdditionalInfoEv) +STUB("h16q7HjVyTE", u_getBidiPairedBracket) +STUB("h1AGMerP6FY", _ZNK7WebCore6Editor17shouldDeleteRangeERKN3WTF8OptionalINS_11SimpleRangeEEE) +STUB("h1Eewgzowes", _ZTIN10__cxxabiv116__enum_type_infoE) +STUB("h1F+KHUaE2o", _ZN3JSC13PropertyTable6s_infoE) +STUB("h1Ft1kj6f0g", _ZN7WebCore22EmptyFrameLoaderClient19saveViewStateToItemERNS_11HistoryItemE) +STUB("h1FyPZnNElI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEptEv) +STUB( + "h1H0lfkv+r8", + _ZN7WebCore11DisplayList9DrawImageC2ERNS_5ImageERKNS_9FloatRectES6_RKNS_20ImagePaintingOptionsE) +STUB( + "h1NPWZfxUow", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEC2Ev) +STUB("h1OOkl9e0NI", _ZN3sce7Toolkit2NP2V212ActivityFeed6Action19START_GAME_ARGS_MAXE) +STUB("h1SWCcBdImo", sceNpStrnParseHex) +STUB("h1Tw74jYHiM", ubidi_getJoiningGroup_67) +STUB( + "h1WKAUKtwaw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("h1XVvyg8tGA", _ZN3sce7Toolkit2NP2V28Matching12Notification11RefreshRoomC1ERKS5_) +STUB("h1Y6+W0pbEU", _ZN7WebCore21nextParagraphPositionERKNS_15VisiblePositionEi) +STUB("h1Z1bwr5Aas", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product10setVersionERKi) +STUB( + "h1ZSMzi+cIM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEC2EPS8_) +STUB("h1cbNccaRLQ", _ZN12Mp4Retriever10InitializeEv) +STUB("h1dR-t5ISgg", sceWebBrowserDialogUpdateStatus) +STUB("h1nP9EYv3uc", sceSaveDataDownload) +STUB("h1oT-Ke-wl0", _ZNK7WebCore11MediaPlayer25preferredDynamicRangeModeEv) +STUB( + "h1uz83Ld5gw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEneERKS9_) +STUB("h1v6F8shCaM", _ZN3WTF9MediaTimeC1Ev) +STUB("h1xWU1RxIG4", EVP_md5) +STUB( + "h2+KJh26azM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("h22pPL+zT-0", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEEaSERS7_) +STUB( + "h2IRwEHmsRY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEixEm) +STUB("h2MkTxBmZQA", UnregisterPrivateMessage) +STUB( + "h2P4cwGBMyM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEC2Ev) +STUB( + "h2PZMxrmK2g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEE11get_deleterEv) +STUB("h2QZRkRHO10", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfileC2ERS5_) +STUB("h2R6ZvEXZ-E", _ZN7WebCore10setCookiesERNS_8DocumentERKNS_3URLERKN3WTF6StringE) +STUB("h2TsFJ6Wn6c", cpp_demangle_read_offset_number) +STUB("h2UufXwtrBw", _ZN7WebCore8Document25scheduleForcedStyleRecalcEv) +STUB("h2XIfDIji6Y", _ZN3sce7Toolkit2NP2V28Matching6MemberC2ERKS4_) +STUB( + "h2XvFtbZKSY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("h2cIHUQsu9w", WKPageClose) +STUB("h2l92tnR88Y", _ZN7WebCore22EmptyFrameLoaderClient33dispatchDidReplaceStateWithinPageEv) +STUB("h2qo9YC5nuI", mono_gc_reference_queue_free) +STUB( + "h2uG0pPMn-o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEC2Ev) +STUB( + "h2wwSt-3z4g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEE11release_refEv) +STUB("h31b8b1xbS4", _ZN12Mp4Retriever14processMdatBoxEv) +STUB("h32Nw3vc8UE", FT_List_Iterate) +STUB( + "h35e5c00Cpg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEEC1ERSA_) +STUB("h38RqwwwQlM", _ZNK3WTF10StringView4findES0_j) +STUB("h3Kif+d2hP4", _ZN7WebCore22EmptyFrameLoaderClient30updateGlobalHistoryItemForPageEv) +STUB("h3LTsRjXiRM", _ZN12video_parser13cVideoPathMnv11sExtentListE) +STUB( + "h3NFeNkgUD8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEEC1ERSA_) +STUB("h3NZavyUBAI", WKUInt64Create) +STUB("h3OvVxzX4qM", sceCompanionHttpdSetBody) +STUB("h3PbnNnZ-gI", _ZNKSt5ctypeIwE8do_widenEc) +STUB( + "h3YFFs8OG6o", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEptEv) +STUB("h3YHVToAF5A", unum_countAvailable_67) +STUB("h3YSGBnk73w", __sanitizer_ptr_sub) +STUB("h3YURzXGSVQ", sceSaveDataSetSaveDataMemory) +STUB("h3Z6H5VoZQs", _ZN3sce3pss4core9PsmObjectC2Ev) +STUB("h3c0znldOaU", uprv_itou) +STUB("h3fgd28Fqfc", _ZN3sce7Toolkit2NP2V211UserProfile7Request27GetVerifiedAccountsForTitleC2Ev) +STUB("h3jCAr5wSM4", sceUpsrvUpdateRequestDownloadPup) +STUB("h3ncyrZLUWc", _ZN7WebCore17FrameLoaderClient27forcePageTransitionIfNeededEv) +STUB( + "h3nhqkHdzgQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEeqERKS9_) +STUB("h3p-IDytuAk", _ZN3WTF14FileSystemImpl24pathByAppendingComponentERKNS_6StringES3_) +STUB( + "h3t4lTtHdkQ", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitations12setsessionIdEPKc) +STUB("h3up3fILBXA", _ZN7WebCore28BackingStoreBackendCairoImplC1ERKNS_7IntSizeEf) +STUB("h3x0PM5nxXo", mono_aot_Sce_Vsh_Registryunbox_trampoline_addresses) +STUB( + "h3xfshhGwc4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE8copyFromERKS9_) +STUB( + "h3y302VSPhE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEED2Ev) +STUB( + "h3yfSUvylCI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEmmEv) +STUB( + "h404NOe8d8w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEC1EPS8_) +STUB( + "h41tk98lVOM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEED1Ev) +STUB( + "h48JF4lcIs4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEC2EPS8_) +STUB("h4EDPDzHiX0", _ZN3sce3Xml4AttrC1ERKS1_) +STUB( + "h4OFHF-WWwM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("h4OJbwjtbYc", _ZN7WebCore14CredentialBaseC2Ev) +STUB( + "h4ZNOvZy12Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEEdeEv) +STUB("h4dd7oKiTQc", sceMusicCoreServerGetEvent) +STUB("h4e6eJrCMVk", _ZN13MsvMetaEditor14initializeMetaEPKc) +STUB( + "h4g599w+aHE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("h4i3gkTA9EU", sceFsExternalStorageInitialize) +STUB("h4k9Cm7BxxI", + _ZN9Inspector17BackendDispatcherC2EON3WTF3RefINS_14FrontendRouterENS1_13DumbPtrTraitsIS3_EEEE) +STUB( + "h4loJcLv19M", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("h4mj1Rjl6eQ", _ZN3sce7Toolkit2NP2V23TUS25AtomicAddToAndGetVariableC2Ev) +STUB( + "h4oshX6L5ZQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEEaSERSA_) +STUB( + "h4qFUCNvQsU", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V113ErrorResponse8setErrorERKNS1_6Common12IntrusivePtrINS3_5ErrorEEE) +STUB("h4rZXdIdwFU", _ZNK3WTF24TimeWithDynamicClockTypeleERKS0_) +STUB("h4ts5qmCpFk", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEEC2Ev) +STUB("h5+CTMLoVgk", rgctx_fetch_trampoline_mrgctx_99) +STUB( + "h57eCAaeBuc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEED1Ev) +STUB( + "h59RctVWpsM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("h59vNoDoZUU", monoeg_g_queue_is_empty) +STUB("h5EiQluIXlU", + _ZNK3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse17getPersonalDetailEv) +STUB("h5HTjHj9wLM", rgctx_fetch_trampoline_mrgctx_17) +STUB( + "h5M3OkP1iLg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "h5M4gb2vU6k", + _ZN3sce7Toolkit2NP2V26Trophy18getTrophyPackGroupERKNS3_7Request18GetTrophyPackGroupEPNS2_4Core8ResponseINS3_15TrophyPackGroupEEE) +STUB("h5QVPYofp2k", _ZN3sce7Toolkit2NP2V212ActivityFeed11SharedVideo11SN_TYPE_LENE) +STUB("h5QlIYj+Ro8", _sceUltSemaphoreCreate) +STUB("h5UTp+nTqPw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE8capacityEv) +STUB("h5X9wHxHGOY", _ZN7WebCore21JSTextTrackCueGenericD2Ev) +STUB("h5eLTrmb9g0", _ZN7WebCore15SQLiteStatementC2ERNS_14SQLiteDatabaseERKN3WTF6StringE) +STUB("h5jSB2QIDV0", sceAudiodecTermLibrary) +STUB( + "h5mdK2ctFzA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("h64Ojqk4fbE", _ZN15AbstractStorage14MemfileContent5CloseEv) +STUB("h64u7Gu3-TM", _ZTSPKw) +STUB( + "h66ZAR4B4xI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEaSERKS9_) +STUB( + "h69-bR0LkRU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE5beginEv) +STUB( + "h6AIajIzZL0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEC1Ev) +STUB("h6B95w83c+Y", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEEcvbEv) +STUB("h6HHFebCPUY", udata_openSwapperForInputData) +STUB("h6Hcy36YwbE", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_15CategoryInfoSubENS2_IS4_EEEE7addressERKS6_) +STUB("h6IaUPX+Sfc", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead17unsetJoinDisabledEv) +STUB("h6RBYXFY+dw", g_JITCodePoison) +STUB("h6RcAAgqqT8", sceVideoCoreCancelThumbnail) +STUB("h6T-jO2nhTc", _ZNK9Inspector18InjectedScriptBase4nameEv) +STUB("h6UWRLMpiho", _ZNSt5ctypeIwE7_GetcatEPPKNSt6locale5facetEPKS1_) +STUB("h6XL2wyRFpM", _ZNK7WebCore11HistoryItem17originalURLStringEv) +STUB("h6XPsGpHAtc", _ZN3sce2np12HttpTemplateD2Ev) +STUB("h6c4kjAGzss", T3hi) +STUB( + "h6f71oNupp8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEEC2ERSA_) +STUB("h6fqSoAmmFQ", jpeg_finish_output) +STUB( + "h6giNSFf2bs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB("h6hIgxXEiEc", sceFontMemoryTerm) +STUB("h6hnzl2edzA", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V18Variable10ownerIsSetEv) +STUB("h6m1odwqwVg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking8TempRankEEC2Ev) +STUB( + "h6m4vBRUSFM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEppEi) +STUB("h6oJjSrmwdk", sceMusicFwSetVolume) +STUB("h6pVBKjcLiU", ilogb) +STUB( + "h6txl+QaLvA", + _ZN15AbstractStorage12LocalStorage7GetItemERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_4ItemEE) +STUB("h6uKXxrcmbc", _ZN7WebCore11MathMLNames7mathTagE) +STUB("h6uieQEZS2A", mono_btls_ssl_set_max_version) +STUB( + "h6vZB6jYdqY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEeqERKS9_) +STUB("h6x3elHjTko", _ZN7WebCore9HTMLNames10commandTagE) +STUB("h74WDkmnaDY", _ZN7WebCore17CredentialStorage6removeERKN3WTF6StringERKNS_15ProtectionSpaceE) +STUB("h7C1w1jlG6c", sceShellCoreUtilIsEyeDistanceAdjusted) +STUB( + "h7DRakd4HKw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "h7EjMSy0UEQ", + _ZN9Inspector25NetworkFrontendDispatcher33webSocketWillSendHandshakeRequestERKN3WTF6StringEddNS1_6RefPtrINS_8Protocol7Network16WebSocketRequestENS1_13DumbPtrTraitsIS8_EEEE) +STUB("h7JE0iSewi4", + _ZN7WebCore4Page16countFindMatchesERKN3WTF6StringENS1_9OptionSetINS_14FindOptionFlagEEEj) +STUB("h7KKNBlZJYs", sceDeci4hDrfpFstat_fuse_fullpath) +STUB( + "h7QrAkpAoPA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "h7SgNtgGeDA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V139ConnectionQualityWirelessMetricsFactory7destroyEPNS3_32ConnectionQualityWirelessMetricsE) +STUB("h7TjPntTtHM", utrace_setFunctions) +STUB("h7UWAc6+MEE", _ZN3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResults10unsetScoreEv) +STUB( + "h7Yided9dH0", + _ZN9Inspector27AnimationFrontendDispatcher13effectChangedERKN3WTF6StringENS1_6RefPtrINS_8Protocol9Animation6EffectENS1_13DumbPtrTraitsIS8_EEEE) +STUB( + "h7YlYjMYu2k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEppEv) +STUB("h7bhuHcIVx0", il2cpp_class_get_nested_types) +STUB( + "h7dkw9DDVd0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE5emptyEv) +STUB("h7gewiEXIhs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEmmEi) +STUB( + "h7j-V++4V88", + _ZN3JSC7JSProxy25getOwnPropertySlotByIndexEPNS_8JSObjectEPNS_14JSGlobalObjectEjRNS_12PropertySlotE) +STUB("h7jRLurwZoI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEC1ERS7_) +STUB("h7k8ivlcKW4", _ZN7WebCore19JSHTMLSelectElement4infoEv) +STUB("h7ll5x+qtGg", _ZN3JSC7Symbols31allocateFloat64ArrayPrivateNameE) +STUB("h7mDS1CrXXg", WKPreferencesGetViewGestureDebuggingEnabled) +STUB("h7sU7HPh5QU", WKBundlePageReplaceStringMatches) +STUB( + "h7vuTd37JqE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEC2Ev) +STUB("h7y9Qh01Sjw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEEC1ERS6_) +STUB( + "h81Nbn0STtA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE7reserveEi) +STUB("h81VAUG7-0c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEEC2ERS7_) +STUB( + "h824u3B8Kwc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEE11get_deleterEv) +STUB("h84MIvQPyVA", uloc_setDefault) +STUB("h84nIzPihdM", _ZN9Inspector31ScriptProfilerBackendDispatcherD1Ev) +STUB( + "h87hI7Uw7bk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB( + "h8CnuzUjNP8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEE21intrusive_ptr_add_refEPS7_) +STUB("h8D4E0COHcs", _ZN3JSC8Profiler8DatabaseC2ERNS_2VME) +STUB("h8DBXRCbEIk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEEneERKS7_) +STUB("h8GwqPFbu6I", memset_s) +STUB( + "h8H1GQnH34A", + _ZN3sce2Np9CppWebApi14SessionManager2V133RequestPlayerSessionPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_26RequestPlayerSessionPlayerEEE) +STUB("h8J6TWF2K6E", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_10TrophyInfoEE3getEv) +STUB("h8JIx+QzkOk", JVM_GetClassDeclaredMethods) +STUB("h8K-pa8owbg", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry13objectIdIsSetEv) +STUB( + "h8NYVX2Pc2M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "h8OuLOQyADM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEEC2ERSA_) +STUB( + "h8RNgLHX8xs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEC1EPKS8_) +STUB( + "h8XnfEjYOFw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEED2Ev) +STUB("h8d3tfMiyhc", _ZN3sce2np13NpAccessTokenC1Ev) +STUB("h8dKaJbfhLs", _ZN7WebCore17CSSPrimitiveValue13setFloatValueEtd) +STUB("h8dR9pcJiP8", + _ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody24getNeedsRecordedDateTimeEv) +STUB("h8jq9ee4h5c", sceLibcInternalMemoryMutexEnable) +STUB("h8mwPFwhEPQ", ucnv_convert) +STUB("h8nbSvw0s+M", __fixunsdfdi) +STUB("h8tjiebjfMU", ucurr_getPluralName_67) +STUB("h8uVvFuafww", _ZN3sce7Toolkit2NP9NpTitleId10getTitleIdEv) +STUB("h8uongcBNVs", sceSystemGestureGetTouchEventsCount) +STUB("h8yISFR3si4", SwCtrlManagerInitialize) +STUB( + "h94Qiqx4xQA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEC2Ev) +STUB("h9Ak0tSAc0A", _ZN3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectatorD1Ev) +STUB( + "h9AppiQ9JRA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE21intrusive_ptr_add_refEPS9_) +STUB("h9C+J68WriE", _ZTISt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE) +STUB("h9CcP3J0oVM", pthread_join) +STUB("h9CpAVBkQJM", _ZN9Inspector19InspectorAuditAgentnaEm) +STUB("h9EBg6zvEys", _ZN3JSC2VM17addImpurePropertyERKN3WTF6StringE) +STUB("h9HZ2XREq3Y", _ZN3sce7Toolkit2NP2V23TUS13TusDataBufferC1Ev) +STUB("h9Ln90tq9Ng", _ZN9Inspector14InjectedScript10saveResultERN3WTF6StringERKS2_RNS1_8OptionalIiEE) +STUB("h9RyP3R30HI", _ZNSt14numeric_limitsImE8digits10E) +STUB("h9XMNUVnLVo", _ZN3JSC7Symbols17rejectPrivateNameE) +STUB("h9cGGfHyMHU", + _ZN3sce2Np9CppWebApi12Leaderboards2V122GetRankingResponseBody8fromJsonERKNS_4Json5ValueE) +STUB( + "h9gGXWJeD+Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEED1Ev) +STUB("h9i7V2WpMUw", s_fixed_count) +STUB( + "h9l7SilfpF0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEdeEv) +STUB( + "h9lNk13UU3I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("h9m948tUfKI", usearch_getText_67) +STUB( + "h9oSLQ5PkvM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEneERKS9_) +STUB("h9pp-X5+tpU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4RoomEE3getEv) +STUB("h9qfBI793FM", mono_class_get_field) +STUB("h9v3R3VV5mM", _ZN9Inspector23TargetBackendDispatcherD0Ev) +STUB("h9vgyUGjyIQ", _ZN7WebCore12NamedNodeMap17removeNamedItemNSERKN3WTF12AtomicStringES4_) +STUB("h9wmFZX4i-4", sceHttpSetRedirectCallback) +STUB("h9yvj9KP3Eg", mono_aot_Sce_Vsh_BackupRestoreUtiljit_code_end) +STUB("h9z6+0hEydk", sceAgcSuspendPoint) +STUB("h9zmuIOwSgc", mono_aot_System_Xml_Linqunbox_trampolines_end) +STUB("hA3dqTpa-lI", mono_type_to_unmanaged) +STUB("hA5cY8jRKVE", X509_NAME_print_ex) +STUB("hA8TWZkwPRU", glOrbisTexImageCanvas2DSCE) +STUB("hA9LshbSkzw", sceHmd2ReprojectionSetRenderConfig) +STUB( + "hABp7x-CXR8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "hAFkSZQ2OLY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEC2Ev) +STUB( + "hAGSzlV-wAc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEED1Ev) +STUB("hAH4eertqiA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEED1Ev) +STUB( + "hAI6J4SHK+M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEC1EPKS8_) +STUB("hAJZ7-FBpEQ", fesetround) +STUB("hAS5WH6hxrE", sceAudiodecCpuClearContext) +STUB( + "hATk-YlNy2g", + _ZN9Inspector25TimelineBackendDispatcher5startElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("hAWKAppwSGs", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEED2Ev) +STUB("hAX3ep8GWEM", _ZN3WTF11msToMinutesEd) +STUB("hAa6OKyx++A", mono_aot_Sce_Vsh_Sticker_StickerLibAccessorunbox_trampolines_end) +STUB("hAbvCx9ZJUQ", mono_metadata_parse_field_type) +STUB("hAf3nmZXulk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEC1Ev) +STUB("hAgb6kz3UcU", sceBluetoothHidGetInputReport) +STUB( + "hAidOXApVRE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "hAk+nc7sow8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("hAk87X95F3s", _ZN3sce2np9JsonArrayD2Ev) +STUB( + "hAo4WaqPtvI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "hApP5JVlFuM", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeOnlineId2AccountIdBatchC2Ev) +STUB("hApQ4NmZ0IU", sceRegMgrPrintInfo) +STUB("hAqOst0xOgU", + _ZSt9use_facetISt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale) +STUB("hAsOTuvPiq4", Java_com_sony_bdjstack_system_BDJModule_prepareTitle__Ljava_lang_String_2) +STUB( + "hAxPImAm2zY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE8capacityEv) +STUB("hAyuWehGj+o", _ZN3sce7Toolkit2NP2V210Tournament13OneVsOneMatchD2Ev) +STUB( + "hB-Hcz0IorA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEmmEi) +STUB( + "hB0JJWwLMGY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEC2ERKS7_) +STUB("hB1Sqhh8Ws4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116JoinableUserTypeEEC1EPS6_) +STUB("hB89uwRrkmI", uregion_getContainedRegionsOfType_67) +STUB("hBB+MzZKUWc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEC2ERS7_) +STUB("hBBRr8UkWd8", _ZN7WebCore20ResourceResponseBase7setTypeENS0_4TypeE) +STUB("hBE8ZGAqlks", _ZN7WebCore9HTMLNames16aria_colspanAttrE) +STUB( + "hBEavO7pf50", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEneERKS9_) +STUB("hBFPj7vpX6c", mono_aot_Sce_Vsh_VoiceAndAgentunbox_trampolines) +STUB("hBH2ABP7IeY", sceVrServiceDialogClose) +STUB("hBIX7N5sgfM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE7popBackEv) +STUB( + "hBNjaMsQPA4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEEC2ERSA_) +STUB("hBP-nfU9sbo", _ZN3JSC23MacroAssemblerX86Common18s_popcntCheckStateE) +STUB("hBRu2zzP+hA", uprv_compareASCIIPropertyNames_67) +STUB( + "hBSfEUU0Ffo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "hBUItx6UDQU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEE5resetEPS9_) +STUB( + "hBUZm3mPL1w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("hBZlxsLI3zI", _ZN7WebCore9HTMLNames13onfocusinAttrE) +STUB("hBdd8n6kuvE", sceGameLiveStreamingScreenConfigureSeparateMode) +STUB("hBeW7FhedsY", _ZTISt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE) +STUB("hBhzSRNLEYc", JSGlobalContextGetRemoteInspectionEnabled) +STUB("hBmtR+Sp9Bc", _ZN3sce2Np9CppWebApi7Matches2V124RequestCompetitiveResult16unsetTeamResultsEv) +STUB("hBsBswrAiGM", sceNpServiceChecker2IntDestroyRequest) +STUB("hBsEOmOR3qQ", sceAgcSdmaCopyTiledGen2) +STUB("hBuLbn3mGBw", _ZN3sce2np9JsonValueD1Ev) +STUB("hBvqSQD5yNk", _ZTSSt20bad_array_new_length) +STUB("hBw3k9ipLow", goby_FreeActionResults) +STUB("hBxqAP6GieI", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container16unsetReleaseDateEv) +STUB( + "hByyAzhROf8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEixEm) +STUB("hC1QrRVamZ8", _ZN7WebCore11MemoryCache9singletonEv) +STUB( + "hC7WXIpIWEo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEC2EPS8_) +STUB( + "hCBRDe1wcDQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB( + "hCC4L+6yXhg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEppEv) +STUB("hCF6Jgsd5a8", _ZN7WebCore16HTMLMediaElement10setPreloadERKN3WTF6StringE) +STUB( + "hCFjB8u0cAc", + _ZN3sce2Np9CppWebApi14SessionManager2V157PostGameSessionsSessionIdSessionMessageRequestBodyFactory7destroyEPNS3_50PostGameSessionsSessionIdSessionMessageRequestBodyE) +STUB("hCHWK0HC+Ew", _ZNK7WebCore27ScriptedAnimationController11isThrottledEv) +STUB( + "hCHqII6oy0c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEmmEi) +STUB( + "hCJMrhOvHWc", + _ZN3sce2Np9CppWebApi14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyD2Ev) +STUB( + "hCLmkViDUwQ", + _ZN7WebCore15SQLiteStatement21getColumnBlobAsVectorEiRN3WTF6VectorIhLm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("hCNssVZANCU", _ZN7WebCore18CustomHeaderFieldsD1Ev) +STUB( + "hCQ-fILgMUY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEC2EPS6_PNS2_10LibContextE) +STUB("hCX+LVtXlU4", rgctx_fetch_trampoline_rgctx_84) +STUB( + "hCoR7iMAnok", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEED1Ev) +STUB("hCpDkNf8I7s", sceSlimglServerRegisterShaderBinary) +STUB( + "hCyWeiQj1cU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEaSERSA_) +STUB("hCyY74swF4U", _ZN7WebCore7JSRangeD2Ev) +STUB("hCzmxMj+3rU", _ZN3WTF10StringImpl20create8BitIfPossibleEPKDsj) +STUB("hD-H81EN9Vg", sceUserServiceGetAccessibilityZoomEnabled) +STUB("hD-k4xzjAjQ", mono_type_is_byref) +STUB("hD0bzglvU4c", _ZN3sce7Toolkit2NP2V210Tournament5MatchaSERKS4_) +STUB("hD4vgaOsEEI", moduleSegAddrKernelEnd) +STUB("hD6J2owGMkY", _ZN3sce2Np9CppWebApi6Common6VectorIfE6insertENS2_13ConstIteratorIfEERKfRS6_) +STUB( + "hD766T1QyG4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "hD8S2h6tYKI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("hD9+vC5k308", _ZN3sce7Toolkit2NP13InviteMessageC1Ev) +STUB( + "hDHrBtIBU5w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "hDMPfd0b2rQ", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_34DetailedProductInfoListInputParams9ProductIdEE7destroyEPS4_) +STUB( + "hDSO9empR3Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEE11release_refEv) +STUB("hDVv83S-DDQ", mono_aot_System_IO_Compressionunbox_trampolines_end) +STUB("hDaVBwDJLQI", + _ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest6toJsonERNS_4Json5ValueEb) +STUB("hDbRaNbEfTg", _ZN12video_parser13cVideoMetaVWG20_changeEndianArtworkEPvj) +STUB("hDgisSGkOgw", scePadGetDeviceId) +STUB("hDiY8h7tAlg", _ZN7WebCore6JSFile9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("hDnOqJLmqZs", _ZN3sce2Np9CppWebApi6Common6VectorImE8copyFromERKS4_) +STUB("hDncsiAwE+I", comm_init) +STUB( + "hDrijm7g0F0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("hDtqxjhnerU", _ZN3sce7Toolkit2NP2V27Ranking12FriendsRanks15MAX_NUM_FRIENDSE) +STUB("hDuyUWUBrDU", _WFwprep) +STUB("hDvrSBnyglU", _ZN3sce7Toolkit2NP15AppSTLAllocatorIcE9constructEPcRKc) +STUB( + "hDyTjs1fZXc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEEaSERKSA_) +STUB("hE4Ufn9mDPU", _ZNK7WebCore9FrameView17wasScrolledByUserEv) +STUB( + "hEA4jRhQHeE", + _ZN9Inspector20CSSBackendDispatcher6createERNS_17BackendDispatcherEPNS_27CSSBackendDispatcherHandlerE) +STUB("hEDqhjFKN3U", _ZN3JSC7Symbols18replacePrivateNameE) +STUB("hEE6Xp2tkME", _ZN3sce2np9HttpTrans4InitERKNS0_12HttpTemplateEiPKcS6_tS6_m) +STUB("hEEKjmDJy74", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyD1Ev) +STUB( + "hEHCvmUEnJU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("hEK26Wdny6s", sceAgcDcbSetWorkloadComplete) +STUB("hEKLrC3h-q4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEEppEi) +STUB("hEKaMzB3bH0", uprv_strdup) +STUB("hEOoSvvbgxk", c16) +STUB("hEQ2Yi4PJXA", _ZNSt6locale16_GetgloballocaleEv) +STUB( + "hER3ergdvJk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE8pushBackERKS8_) +STUB( + "hEV0ivIlw9k", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE5beginEv) +STUB( + "hEemSMOoQtE", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("hEgn+gFiCpg", _ZN7WebCore32rejectPromiseWithGetterTypeErrorERN3JSC9ExecStateEPKcS4_) +STUB("hEm8er7rP3U", _ZN3JSC9Structure16freezeTransitionERNS_2VMEPS0_) +STUB( + "hEo9hqE0890", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("hExkzfpmDKw", _ZN9Inspector30CanvasBackendDispatcherHandlerD1Ev) +STUB("hF3stKUWbWg", FT_Raccess_Get_DataOffsets) +STUB( + "hF7WuFSIW50", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEE11release_refEv) +STUB("hF8Pz0rtPLU", sceVdecCoreSetDecodeOutputSw) +STUB( + "hFGLeIc5swI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEppEi) +STUB("hFJOAsmfvQk", mono_aot_Sce_Vsh_UpdateServiceWrapperunbox_trampolines_end) +STUB( + "hFLKs8+RHbQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEE21intrusive_ptr_sub_refEPS7_) +STUB( + "hFMioJwhC64", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("hFOQQbKvSes", _ZN7WebCore24CachedResourceHandleBaseD1Ev) +STUB("hFQ9pUxoLQ4", sceAgcGetSemaphoreLabel) +STUB("hFTzgblpaSg", sceOpusSilkEncEncodeFloatWithPriority) +STUB("hFUr0D8SIKo", uregex_replaceFirstUText_67) +STUB("hFVxpy3JUR4", _ZN7WebCore21DiagnosticLoggingKeys30exceededInactiveMemoryLimitKeyEv) +STUB( + "hFWS9DesbOs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEEC2EPS7_PFvS9_EPNS2_10LibContextE) +STUB( + "hFXNaOFpD80", + _ZN3sce7Toolkit2NP6Trophy9Interface20trophyRetrieveGroupsEPNS1_9Utilities6FutureINS1_15TrophyGroupInfoEEEibi) +STUB( + "hFYr5SNk0+M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEC2Ev) +STUB( + "hFci+lxjvig", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEixEm) +STUB("hFdr5J7fi5c", + _ZN15AbstractStorage18DailymotionContentC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) +STUB("hFgKqEt+WLY", _ZN3sce7Toolkit2NP2V27Ranking8TempRankC2Ev) +STUB("hFhxhBQDzGA", _ZN3sce7Toolkit2NP2V28Commerce10ContainersD1Ev) +STUB("hFk9FKLENG8", _ZN7WebCore10FileHandle4openERKN3WTF6StringENS1_14FileSystemImpl12FileOpenModeE) +STUB("hFktHM4E9TQ", ucase_toupper) +STUB( + "hFodZFGCGD0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE5clearEv) +STUB("hFqu5w4zIiA", _ZN3sce3Xml3Dom6NodeIdcvPvEv) +STUB("hFs36WbcqKs", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIfEdeEv) +STUB("hFu8m-CNbN0", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request15PostInGameStoryD1Ev) +STUB("hFuz8z2bnAc", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session9SessionIdEE12deepCopyFromERS7_) +STUB( + "hFwyo0wzUG0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEC2EPKS8_) +STUB( + "hFzRGJpMkcw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEC2EPS6_PNS2_10LibContextE) +STUB("hG-a7b2byv4", rgctx_fetch_trampoline_mrgctx_49_p) +STUB("hG1ofgv8Bn4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEED2Ev) +STUB("hGHcnf8w9og", _ZN7WebCore11DisplayList6SetCTMC2ERKNS_15AffineTransformE) +STUB("hGJ2JfVCXI0", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus9infoIsSetEv) +STUB( + "hGKOkR4FLww", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEEC1ERKSA_) +STUB("hGKVouD1cSI", _ZN7WebCore16VisibleSelection20adjustPositionForEndERKNS_8PositionEPNS_4NodeE) +STUB("hGRuUBOv+Fw", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession17unsetJoinDisabledEv) +STUB("hGThy3P3lt4", png_get_uint_16) +STUB( + "hGTutGzAhs8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEE7add_refEv) +STUB("hGZqcObvSD4", _ZN12video_parser17cVideoOperatorEtsD1Ev) +STUB("hGbf2QTBmqc", scePadGetExtControllerInformation) +STUB("hGcTks-qqIU", sceVideoOutRazorRecallCallbacks) +STUB( + "hGfEVeMS6Ls", + _ZN7WebCore11BitmapImageC2EON3WTF6RefPtrI14_cairo_surfaceNS1_13DumbPtrTraitsIS3_EEEEPNS_13ImageObserverE) +STUB("hGiyDq-l4AE", OPENSSL_init_ssl) +STUB( + "hGjILLO6IhE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEC2ERS7_) +STUB( + "hGlVpbpi4Lo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("hGljHZEfF0U", flockfile) +STUB( + "hGlkh5YpcKw", + _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14do_get_weekdayES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm) +STUB( + "hGmi6j55kkw", + _ZN3JSC16profiledEvaluateEPNS_9ExecStateENS_15ProfilingReasonERKNS_10SourceCodeENS_7JSValueERN3WTF8NakedPtrINS_9ExceptionEEE) +STUB("hGmiwXj3cKU", eglWaitNative) +STUB("hGnwgvLREHM", sceUserServiceSetPbtcSundayDuration) +STUB( + "hGpV0eiM9Mg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("hGpsqO58uHQ", _ZN3JSC22FullGCActivityCallback9deathRateERNS_4HeapE) +STUB("hGs7zWx9OUk", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product16unsetDescriptionEv) +STUB( + "hGsdLT7p-t4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEE11get_deleterEv) +STUB( + "hGtGP66PFyE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEED0Ev) +STUB("hGv08dyfsNQ", curl_multi_setopt) +STUB( + "hGvPw81Pgcw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEplEm) +STUB("hGwz-8X0XO8", SSL_alert_desc_string_long) +STUB( + "hGxSaTJJ8Vk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEEaSERSA_) +STUB( + "hH6e1Q99IKY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEppEv) +STUB( + "hH7KHku1lqs", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData10initializeEPNS1_6Common10LibContextEPKci) +STUB("hH9TSsVNT74", _ZN3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate10setNatTypeERKi) +STUB("hH9XuseRgoI", + _ZN3sce2Np9CppWebApi13InGameCatalog2V517ContentDescriptorC2EPNS1_6Common10LibContextE) +STUB( + "hH9yA-ZoxRQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEixEm) +STUB("hHA1K7CgTWU", _ZN3sce2Np9CppWebApi10Activities2V114UserActivities13ErrorResponseD2Ev) +STUB("hHA1frlMxYE", sceCameraGetCalibData) +STUB("hHC0M67TG-U", + _ZN3sce3pss5orbis5input12InputManager27GetControllerHandleByUserIdEiNS2_12HardwareTypeEPi) +STUB("hHFrV5mugnU", sceRegMgrPrivateStorageDirCount) +STUB("hHHCPRqA3+g", sceSaveDataBindPsnAccountForSystemBackup) +STUB("hHLR+tB3U7Y", _ZN3WTF9MediaTimeC2ERKS0_) +STUB( + "hHMdfRLiYo4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "hHNROkaWYNo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEE3getEv) +STUB("hHNwAJKKgYo", _ZN3WTF11OSAllocator18reserveUncommittedEmNS0_5UsageEbbb) +STUB( + "hHP6EKc7WnI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEptEv) +STUB("hHQ9kdZrHYc", + _ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse14unsetAccountIdEv) +STUB("hHRrtFDTVeI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia6VideosEED1Ev) +STUB("hHV7qVIxQLQ", WKWebsiteDataStoreSetStatisticsSubresourceUnderTopFrameOrigin) +STUB("hHVSySlulKs", _ZN3JSC2VM14throwExceptionEPNS_9ExecStateEPNS_9ExceptionE) +STUB("hHW4K+H+NTY", _ZNK7WebCore16HTMLTableElement5tHeadEv) +STUB( + "hHXKtYhX6Yc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEC2Ev) +STUB( + "hHaBhIQeymc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEEC2EPS6_PNS2_10LibContextE) +STUB("hHbHdXvH5NI", + _ZN3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponse17setTotalItemCountERKi) +STUB("hHeX1Fo0vLI", _ZN7WebCore12DOMTokenList6toggleERKN3WTF12AtomicStringESt8optionalIbE) +STUB("hHfC5MyvDqU", mono_locks_dump) +STUB("hHjw9-aLJk4", JNU_GetStringPlatformChars) +STUB("hHkNFU67uNM", _ZNK7WebCore14JSVoidCallback22scriptExecutionContextEv) +STUB("hHlZQUnlxSM", getrusage) +STUB("hHrGoGoNf+s", sceSysmoduleLoadModuleInternalWithArg) +STUB( + "hHrerDFHKj0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB( + "hHto72dyDhk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEC2Ev) +STUB("hHzO8LLVE44", sceClPthreadMutexattrDestroy) +STUB( + "hI4GR2Ix4WA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEC2EPS8_) +STUB("hI4Yr8ohiI0", + _ZN3sce2Np9CppWebApi7Matches2V124ResponseTeamMemberResult8fromJsonERKNS_4Json5ValueE) +STUB( + "hI6an+8lLlM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEC1EPS8_) +STUB("hI7oVeOluPM", recvmsg) +STUB("hI8JVrcGWhc", u_forDigit) +STUB( + "hIAe20V+aJE", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsersaSERS5_) +STUB("hIAyLXI4V8g", sceMbusGetSparkState) +STUB("hIFFMeoLhcY", sceNpAsmCreateRequest) +STUB( + "hIG+VQtkGu8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEE7get_refEv) +STUB("hIGX-h1cgvA", sceNpManagerUtilConvertNpIdToJid) +STUB("hIIZXUsMeI8", sceVideodec2MapDirectMemory) +STUB("hIKwcwEhcuY", WKPreferencesSetPrimaryPlugInSnapshotDetectionEnabled) +STUB("hIOzfLdWPKA", WKPreferencesGetAsynchronousSpellCheckingEnabled) +STUB("hITAyDrEnMc", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEptEv) +STUB("hIUVeUNxAwc", sceNetCtlUnregisterCallbackV6) +STUB( + "hIYIYbVSA5g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("hIb43mo9ubQ", SSL_SESSION_free) +STUB("hIeJougHkoo", _ZN3sce2np10JsonStringC1EP14SceNpAllocator) +STUB("hIgrg5h4V6s", sceVdecswAllocateComputeQueue) +STUB("hIhXV8DgVnI", _ZN3JSC13WatchpointSetC1ENS_15WatchpointStateE) +STUB("hIiXx+2+RUY", Java_com_sony_gemstack_org_havi_ui_HBackgroundImageDecoder_init) +STUB("hIix-HlsHmU", sceMbusGetSimulatedBusUsableStatusByBusType) +STUB("hIkjBZVk8Ro", _ZN3sce2np9JsonValue3SetEPKS1_) +STUB("hIkkDt5bctc", _sceLibcCalloc) +STUB( + "hIr26pvu3tA", + _ZN9Inspector24RuntimeBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("hIw-HVb2-2g", _ZN7WebCore22WorkerScriptController10initScriptEv) +STUB("hJ-c7jmW4WA", _ZNK3WTF6String5splitEDsRKNS_8FunctionIFvRKNS_10StringViewEEEE) +STUB("hJ5gj+Pv3-M", sceUserServiceSetGlsBcTitle) +STUB( + "hJ77op0OJ3g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEC1EPKS8_) +STUB( + "hJ8X6QI2PUU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE8copyFromERKS9_) +STUB("hJBLmVie3mg", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_13NetStateBasicEED2Ev) +STUB("hJCR02OuhWk", _ZNK7WebCore9FrameView27positionForRootContentLayerEv) +STUB( + "hJDHxLpbL8U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEaSERKS9_) +STUB( + "hJDKgFoTKIc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEED2Ev) +STUB("hJLHJLp47qc", sceEsvmEngineRequestMediaKeySystemAccess) +STUB( + "hJNnJLgNrWc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEC2EPKS8_) +STUB("hJNuW1yB+TY", _ZN7WebCore9HTMLNames16ontouchstartAttrE) +STUB( + "hJOm397XdMw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEEaSERSA_) +STUB( + "hJOpvRNHrvU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("hJPso38OymU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEixEm) +STUB("hJQ0B3t2B7M", _ZN7WebCore4Page33touchEventRectsForEventForTestingERKN3WTF6StringE) +STUB( + "hJQXtQEwP6U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEmmEi) +STUB("hJRPzfJPa34", _ZN7WebCore11MediaPlayer16removeAudioTrackERNS_17AudioTrackPrivateE) +STUB("hJTfD6ay7rE", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead22invitableUserTypeIsSetEv) +STUB("hJU7LZ-qtPU", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V129ConnectionQualityWiredMetrics9getJitterEv) +STUB("hJXxiO31NyQ", _ZN3sce2np18HttpConnectionPool12FindByConnIdEi) +STUB("hJYQb6B5fyE", _ZN7WebCore4Page40setLowPowerModeEnabledOverrideForTestingEN3WTF8OptionalIbEE) +STUB( + "hJZ9kZF0xs8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEEcvbEv) +STUB( + "hJd-+mVwMHc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE8capacityEv) +STUB( + "hJdJvJJO8Hw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE21intrusive_ptr_add_refEPS7_) +STUB( + "hJgvh42XIRc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEaSERKS9_) +STUB("hJifaKzQUxE", sceAppInstUtilAppGetInsertedDiscTitleIdList) +STUB("hJku67PUGS0", sceNpGriefReportWriteJsonFile) +STUB("hJwDGgzFpPI", _ZN7WebCore11DisplayList17DrawFocusRingPathD2Ev) +STUB("hJwfjY8qv1s", _ZN3sce2Np9CppWebApi7Matches2V124RequestCompetitiveResult18unsetPlayerResultsEv) +STUB("hK0CCljzJmY", sceNpFriendListDialogGetResultA) +STUB("hK2Bd39pBDs", sceAppInstUtilAppCancelGetAppOtherSize) +STUB( + "hK3StxVq5aY", + _ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime15CollectionEntryEE11runtimeCastEON3WTF6RefPtrINS5_8JSONImpl5ValueENS5_13DumbPtrTraitsIS8_EEEE) +STUB("hKA9ddEAo04", Java_java_io_UnixFileSystem_setReadOnly) +STUB("hKIBf2+zj-4", _ZN7WebCore4Page18setViewScaleFactorEf) +STUB( + "hKLPrxgo7s4", + _ZN3sce2Np9CppWebApi14SessionManager2V140ResponsePlayerSessionNonPsnPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_33ResponsePlayerSessionNonPsnPlayerEEE) +STUB( + "hKMbcIRFxZY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEptEv) +STUB("hKN5OJIT5ko", glBufferData) +STUB( + "hKS-pNtZnMk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEixEm) +STUB("hKTdrR1+dN0", _ZN3sce2np3ipc14service_client13GetIpmiClientEv) +STUB("hKc+WLAD2-o", _ZN7WebCore21DiagnosticLoggingKeys24visibleNonActiveStateKeyEv) +STUB( + "hKcKURM3tZA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE8pushBackERKS8_) +STUB("hKfChNLtQaw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEEC2ERKS7_) +STUB("hKfWocPbLzM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEdeEv) +STUB("hKiCcL4h8SQ", sceFsLvdAttachSingleDefaultImage) +STUB("hKjU-olRa1o", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia10BroadcastsEED1Ev) +STUB("hKnT95UYMiQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE6resizeEj) +STUB("hKpymBfyxyM", _ZN7WebCore9HTMLNames10usemapAttrE) +STUB( + "hKtFIZ2ZGBc", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "hKvn-qJAyXc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEEC1ERKSA_) +STUB("hKwJdBxEWPY", _ZN7WebCore9FrameView14setTransparentEb) +STUB("hKzBW7sIClo", Java_java_net_SocketOutputStream_socketWrite0) +STUB("hL+TQCVUCKM", WKPreferencesSetSelectionPaintingWithoutSelectionGapsEnabled) +STUB("hL06BXMcvJA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEC1Ev) +STUB("hL4K4Ug0tHE", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getAngle) +STUB( + "hL6YmoLoMd0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEED1Ev) +STUB("hL7C0IRpWZI", sceAgcCbQueueEndOfPipeActionGetSize) +STUB("hLAtb7x8d3g", mono_btls_x509_store_load_locations) +STUB( + "hLBcO7kCAbI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "hLCJhB3eplQ", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToSendPlayerSessionMessageC2ERS5_) +STUB("hLDc5G37EG4", WKTextCheckerGrammarCheckingEnabledStateChanged) +STUB("hLEQlRxP61c", _ZN7WebCore11DisplayList8ReplayerD2Ev) +STUB( + "hLHLFkWe7G0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEEC1ERKSA_) +STUB( + "hLQdlIbcFlU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEC1EPS8_) +STUB("hLSyGuNQ0yo", sceDebugGetDebugRegisterStatusMap) +STUB( + "hLWWYoCxjsw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEC2Ev) +STUB( + "hLXIpcmSuKY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEC2EPS8_) +STUB( + "hLbhfyBasms", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "hLjm5Rkrfpo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEC1EPNS2_10LibContextE) +STUB("hLlKGUra-JA", usearch_following_67) +STUB( + "hLlbvWpQkFc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEppEi) +STUB( + "hLmW5croDGk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEC2EPS6_PNS2_10LibContextE) +STUB("hLoEhSBhi84", pthread_mutex_init_for_mono) +STUB("hLuXdjHnhiI", sceNetGetSockInfo) +STUB("hLuw-otq9WI", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead16sessionNameIsSetEv) +STUB("hLz3SP0zVF4", sceVencSetConfig) +STUB("hM7qvmxBTx8", _Tls_setup__Tolotab) +STUB( + "hM8xFznoDs4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEED2Ev) +STUB("hMAe+TWS9mQ", __dynamic_cast) +STUB("hMCy3h9Z-ME", _ZN7WebCore15GraphicsContext22beginTransparencyLayerEf) +STUB( + "hMJYBElgK6k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC2Ev) +STUB( + "hMKVZlxXIhw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEE11get_deleterEv) +STUB("hMO1lc6DG4o", WKHitTestResultCopyLinkLabel) +STUB("hMPKFAI5xAo", mono_aot_Sce_Vsh_RequestShareScreenplt) +STUB("hMPqBxgdqd4", sqlite3_open_v2) +STUB( + "hMRhqlKy7nA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V125IdempotentVariableFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_18IdempotentVariableEEE) +STUB( + "hMTAjAMGhIY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEppEi) +STUB("hMTXyw2fCXI", res_getAlias_67) +STUB( + "hMUY9eRlZ-0", + _ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeaders15hasLastModifiedEv) +STUB("hMV6sxdqoCE", EC_GROUP_free) +STUB("hMWLNCM6Vmc", ucfpos_getCategory_67) +STUB("hMYgMP-Vuno", sceLibSecureCryptographyDecrypt) +STUB("hMc3kC4C480", _ZN3sce7Toolkit2NP2V210Tournament16RegisteredRosterC1Ev) +STUB( + "hMdUORxcXkE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEEC1Ev) +STUB("hMjn6z51jLI", _ZN7WebCore24StorageNamespaceProviderC2Ev) +STUB("hMmahzTAYpo", _ZN9Inspector34ApplicationCacheFrontendDispatcher19networkStateUpdatedEb) +STUB( + "hMn0D-oxjLA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEE7add_refEv) +STUB("hMr0EtMYJbQ", g_SocialScreenEnabled) +STUB( + "hMtSwKS31Qs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("hMtxGg9diMQ", _ZN11GvMp4Parser6Common11Utf8ToUtf16EPKcPSbIwSt11char_traitsIwESaIwEEi) +STUB("hMwB4k7Cdwk", _ZN3JSC4Heap12addFinalizerEPNS_6JSCellEPFvS2_E) +STUB("hMwGlafyzGs", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetailC1Ev) +STUB("hMwbnNJ-Z08", il2cpp_class_get_field_from_name) +STUB( + "hMwitOulU4Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE21intrusive_ptr_sub_refEPS9_) +STUB("hMwnRRzjaIU", _ZN3sce3pss4core9threading4Cond6NotifyEv) +STUB( + "hMxydTJQ670", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE3endEv) +STUB( + "hN1fUO7rRqo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("hN20Q01A0zA", _ZN7WebCore11DisplayList5ScaleD1Ev) +STUB("hN6PS5MQn0U", _ZN7WebCore6ISOBox7peekBoxERN3JSC8DataViewEj) +STUB("hN9JhD71QI4", _ZN7WebCore24MatrixTransformOperationC2ERKNS_20TransformationMatrixE) +STUB("hNAh1l09UpA", + _ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE7_GetcatEPPKNSt6locale5facetEPKS5_) +STUB("hNDMuB-dgfE", WKPageGetPageGroup) +STUB("hNLImrNoczc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEC2Ev) +STUB( + "hNNj33eRNrA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("hNPHDKzl1Gc", _ZN7WebCore9HTMLNames9labelAttrE) +STUB("hNXleW4ztQI", sr01) +STUB("hNYwXB5Y3sI", _ZN3sce7Toolkit2NP10IdDatabaseC2ERKNS1_15CommunicationIdE) +STUB( + "hNaJFQBR4Nw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEC1EPKS8_) +STUB( + "hNcKBNhfJUU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEEC2Ev) +STUB("hNdX4VRX3aQ", _ZN3sce2Np9CppWebApi11Matchmaking2V19Attribute7setNameEPKc) +STUB("hNe91PKQcOc", _ZN7WebCore21convertToIntegerClampIjEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB("hNenJjJBBXI", _ZN3WTF15AutomaticThreadD2Ev) +STUB("hNgejAg4Ir8", vzone_getRawOffset_67) +STUB( + "hNhV+SuNygw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "hNmFktt-ysM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEC1ERKS7_) +STUB("hNmK4SdhPT0", sceScreenShotGetAppInfo) +STUB("hNssNIwvkeQ", _ZN3JSC2VM26uint8ClampedArraySpaceSlowEv) +STUB( + "hNt-l9fEQ5k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEppEi) +STUB("hNta0e1I2Ss", mono_aot_Mono_Data_Tdsunbox_trampolines) +STUB( + "hNuEJMvfCtA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE6resizeEj) +STUB("hNyN1seFzWY", FcCharSetCreate) +STUB("hNyqm2JeBP0", sceNpRemotePlaySessionSignalingGetCustomProperty) +STUB("hNyspV0t-xk", rgctx_fetch_trampoline_mrgctx_19_p) +STUB("hO0sxQP5n0Q", sceDepthSetSrParameter) +STUB( + "hO3ZLm3ncCo", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE5eraseENS2_8IteratorIS6_EERS9_) +STUB("hOABTkhp6NM", CERT_getSubjectCommonName) +STUB("hOFQ6y6Lu1k", _sceNpIpcDefaultFreeImpl) +STUB("hOHLNfago9M", ECDH_compute_key) +STUB("hOM-emPwQEY", WKBundleRangeHandleGetTypeID) +STUB("hORz4VZuloc", Java_com_sony_bdjstack_ti_Database_getCurrentPlayItem) +STUB("hOXOdd6Lp5g", WKWebsiteDataStoreGetHTTPCookieStore) +STUB( + "hOYWBd9njbo", + _ZN3sce7Toolkit2NP11UserProfile9Interface21getNpUsersInformationEPNS1_9Utilities6FutureINS1_7NpUsersEEEPKNS1_18UserProfileRequestEb) +STUB( + "hOlKiihOeFA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE8pushBackERKS8_) +STUB("hOnIlcGrO6g", sceNpWebApi2PushEventUnregisterCallback) +STUB("hOr9NwMv+6c", ufmtval_getString_67) +STUB("hOsPPK9Gu-8", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4DataEEC2Ev) +STUB("hOtA0pa1AXA", + _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead16searchIndexIsSetEv) +STUB("hOtV66n79oQ", il2cpp_string_new_wrapper) +STUB("hOvueEllLDA", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError11errorsIsSetEv) +STUB( + "hOxjIROEYE8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEC1EPKS8_) +STUB("hOxrrGTtiGA", _ZN9Inspector24BrowserBackendDispatcherD2Ev) +STUB( + "hP-IUKgfmR0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEC1EPKS8_) +STUB("hP0LBvbf3IY", _ZN7WebCore18TextureMapperLayer15setDrawsContentEb) +STUB("hP18CDS6eBU", _ZN3sce2np8NpCommIdD2Ev) +STUB("hP2q9Eb5hf0", sceUserServiceSetFileSelectorFilter) +STUB( + "hP4SCYtpJ+Q", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEptEv) +STUB( + "hP6Bj-mOJOY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEmmEi) +STUB("hP81Fkk27pg", DecryptRnpsBundle) +STUB( + "hPD5vhhwaJA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEC2Ev) +STUB("hPORKyleBPM", _ZN7WebCore9FrameView15setFooterHeightEi) +STUB( + "hPSipWSJzQg", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("hPTXo3bICzI", sceHttpParseResponseHeader) +STUB("hPVradh5wpo", sceCameraWaitForEveReady) +STUB("hPWDGx8ioXQ", setitimer) +STUB("hPWXRjDacBk", __strtord.fpi0) +STUB( + "hPYHI3aA1U8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("hPZqFseD4ro", _ZNK7WebCore29DeprecatedCSSOMPrimitiveValue15getCounterValueEv) +STUB("hPcieo2nNdk", _ZN3sce7Toolkit2NP2V210Tournament10TeamMemberC2Ev) +STUB( + "hPhIVE+GDFI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEED1Ev) +STUB("hPhQSegOZhg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V124RequestCooperativeResultEEaSERKS7_) +STUB("hPxmMN2Ef0s", _ZThn8_N6WebKit12ChildProcess26messageSenderDestinationIDEv) +STUB( + "hPy97p-OMzo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "hPycqq8T4Us", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEplEm) +STUB("hPzYSd5Nasc", _Mtx_timedlock) +STUB( + "hQ-Ajym9gBE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEE11release_refEv) +STUB( + "hQ1-v5+dWME", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEC1EPS8_) +STUB( + "hQ4390g+gDg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE8capacityEv) +STUB( + "hQ62BxoHvz0", + _ZN9Inspector24TargetFrontendDispatcher13targetCreatedEN3WTF6RefPtrINS_8Protocol6Target10TargetInfoENS1_13DumbPtrTraitsIS5_EEEE) +STUB( + "hQ6ALoiR7cI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE8capacityEv) +STUB("hQ72M-YRb8g", sceUserServiceSetGlsLiveQuality2) +STUB("hQ8Mt43cvrc", _ZN3WTF6StringC1EPKcj) +STUB("hQAhxWNHwvM", sceUserServiceSetParentalGameWhiteList) +STUB("hQClZK9mdkk", sceShellCoreUtilGetShellUIVMStats) +STUB("hQDsPsyIWwE", _ZN3JSC7Symbols34GeneratorStateExecutingPrivateNameE) +STUB("hQEbLTGMhSU", mono_classes_set_global_interface_bitset_location) +STUB("hQLw6eE4O44", _ZN3sce2np9Semaphore4WaitEj) +STUB("hQMZAaNGHAs", ScePsmMonoDomainGet) +STUB( + "hQONbpwlBIs", + _ZN7WebCore17CredentialStorage3setERKN3WTF6StringERKNS_10CredentialERKNS_15ProtectionSpaceERKNS_3URLE) +STUB("hQPWgynFHtg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEC1EPS6_) +STUB("hQRJgtxvbQc", _ZN3sce2Np9CppWebApi13InGameCatalog2V511ErrorEntityD2Ev) +STUB( + "hQVLhYPbzwE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEppEi) +STUB("hQX7J7XfqSs", JNU_ThrowNumberFormatException) +STUB("hQYPX1Qsq6Y", uloc_getISOCountries_67) +STUB( + "hQdNOFlDedY", + _ZNK3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody22largeDataNumLimitIsSetEv) +STUB("hQeUMTVgPHU", sceCesJisGetLevel) +STUB("hQiPEotip7M", + _ZN15AbstractStorage7Content12GetExtensionERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("hQjpMYS-tEM", u_getIntPropertyValue_67) +STUB("hQkeuEc0BMs", _ZN4IPMI6ClientD1Ev) +STUB("hQmpPQKCKQw", mono_aot_Sce_Vsh_Np_AppInfomethod_addresses) +STUB( + "hQn1AWEdr3o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE8pushBackERKS8_) +STUB("hQpmBwrgD4w", sceFsLvdEnableLayer) +STUB( + "hQqfZBsN+FU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEED2Ev) +STUB( + "hQqlW9OWR9o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEED2Ev) +STUB("hQwwcEg9JrE", _ZN3sce7Toolkit2NP2V27NpUtils7Request22GetAccountIdByOnlineIdC1Ev) +STUB("hQxOExuMeQQ", _ZNK3WTF8JSONImpl9ArrayBase3getEm) +STUB( + "hQzIHcIHVhI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEC1EPS8_) +STUB("hR4Q4+3Kw10", JSPropertyNameArrayRelease) +STUB("hR59aDWzHPw", glUniform1i) +STUB("hR8-CKMl2JQ", sceVoiceChatCreateRequest) +STUB("hRB5plfMBLQ", JNU_CallMethodByNameV) +STUB("hRBnfwBJIq4", _ZNK3JSC13JSArrayBuffer8isSharedEv) +STUB("hRHigMDwArQ", mono_lock_free_queue_node_unpoison) +STUB( + "hRO1Esih9KY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEdeEv) +STUB( + "hRP0cSjg-jw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEEC1ERKSA_) +STUB( + "hRQuZpfsW+8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE3endEv) +STUB( + "hRUAhQizYdI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("hRVJOIGfek0", _ZN3JSC19InlineWatchpointSet11inflateSlowEv) +STUB( + "hRVzVQCpJ68", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEED2Ev) +STUB("hRY7BbAOaAI", _ZNK7WebCore9PageCache10frameCountEv) +STUB( + "hRYHikTzkHA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEC1EPNS2_10LibContextE) +STUB("hRZnZoEXbfQ", uhash_compareUChars) +STUB( + "hRa9hrre-Y8", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData22hasxPsnAtomicOperationEv) +STUB( + "hRatqlbrQnU", + _ZN3sce2Np9CppWebApi7Matches2V134RequestTemporaryTeamResultsFactory7destroyEPNS3_27RequestTemporaryTeamResultsE) +STUB("hRba2mQ9fss", + _ZN15AbstractStorage14TwitterContent13ParseMetadataEPN23sceMetadataReaderWriter8MetadataES3_) +STUB("hRh5HG-czGg", _ZN3JSC19numberOfDFGCompilesENS_7JSValueE) +STUB( + "hRhKMfPjCNg", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer16unsetkeepHtmlTagEv) +STUB( + "hRiJ8r7O1zA", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi24getFriendsPlayerSessionsEiRKNS4_35ParameterToGetFriendsPlayerSessionsERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_36GetFriendsPlayerSessionsResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB( + "hRqonUQmt74", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEED1Ev) +STUB("hRr40z081Ww", _ZN3JSC7Symbols28ModuleInstantiatePrivateNameE) +STUB("hRsCi8FQjqA", mono_aot_Sce_Vsh_SystemLoggerUtilWrapperunbox_trampolines) +STUB("hRu-fPO-VMo", _ZN3sce2Np9CppWebApi14SessionManager2V130RequestPlayerSessionInvitationD2Ev) +STUB( + "hS-7tcpEDJ8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEdeEv) +STUB("hS-e-Vfw-Cg", _ZN3sce7Toolkit2NP15AppSTLAllocatorItEneERKS3_) +STUB("hS0MKPRdNr0", sceGnmSdmaClose) +STUB("hS1-bPYxKC4", sceHidControlSetJediAudioOutPath) +STUB( + "hSK32cEpsXo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE8pushBackERKS8_) +STUB("hSLv6J+zxhg", _ZNK7WebCore17CSSPrimitiveValue16getRGBColorValueEv) +STUB("hSNXnh4fS6w", _ZN7WebCore18PluginInfoProvider20clearPagesPluginDataEv) +STUB("hSOO2FvvGBI", uhash_setValueDeleter) +STUB("hSOfRr6cRDU", mono_get_exception_runtime_wrapped) +STUB("hSUcSStZEHM", _ZNSbIwSt11char_traitsIwESaIwEE6appendERKS2_mm) +STUB("hSWo2pXpj6A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEEC1EPS5_PNS2_10LibContextE) +STUB("hSnLhjGefsU", _ZThn16_N3sce2np9LocalFileD0Ev) +STUB( + "hSrgcbIsIH0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "hSy4ZYS6muo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB( + "hT-LLDyDCt8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE21intrusive_ptr_add_refEPS9_) +STUB("hT-cRs38orU", + _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse24unsetLastPausedTimestampEv) +STUB("hT0IAEvN+M0", sceNpUniversalDataSystemCreateHandle) +STUB( + "hT1D73Sekuw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEE21intrusive_ptr_add_refEPS7_) +STUB("hT3IF0-rq68", _ZN7WebCore9PageGroup18captionPreferencesEv) +STUB( + "hT4uShlBwAc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEEC2ERSA_) +STUB("hT9TbqN3AcI", _ZN3sce7Toolkit2NP2V29Messaging15GameDataMessage12MAX_URL_SIZEE) +STUB("hTDV4VSasT4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119ChildActivityStatusEEaSERKS7_) +STUB("hTFWUJcyKBw", WKBundleAddOriginAccessWhitelistEntry) +STUB( + "hTRCotMWT7s", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlotaSERS5_) +STUB("hTRom9dDhq0", _ZN9Inspector22InspectorDebuggerAgent6enableERN3WTF6StringE) +STUB("hTVD59G1JgI", mono_aot_Sce_Cdlg_Platformunbox_trampolines_end) +STUB("hTW3lKG0koI", _ZN3JSC14JSGlobalObject14exposeDollarVMERNS_2VME) +STUB("hTcT0WLgtCw", _ZN3sce2Np9CppWebApi7Matches2V127ResponseTeamMemberStatisticD1Ev) +STUB("hTdcWcUUcrk", sceUserServiceIsLoggedInWithoutLock) +STUB( + "hTfvsmvfn+I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE3endEv) +STUB( + "hTgqIzRa-Is", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEE7get_refEv) +STUB( + "hTnT5-fxEdI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEEC1ERSA_) +STUB("hTsSi8mmeBE", _ZN3sce2Np9CppWebApi7Matches2V15ErrorD1Ev) +STUB("hU3bSlF2OKs", sceSystemServiceReenablePartyVoice) +STUB("hUAjs1MUwGY", sceMbusResolveByUserId) +STUB("hUGhxsl8h+s", _ZN3sce2Np9CppWebApi12Leaderboards2V15Entry12unsetCommentEv) +STUB("hUN72ocX6gM", sceKernelTerminateSysCore) +STUB("hUT-p6ZFttg", _ZN3JSC7Symbols35newPromiseCapabilitySlowPrivateNameE) +STUB( + "hUUc7P6RA9g", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities33GetUsersActivitiesResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS6_12IntrusivePtrINS4_26GetUsersActivitiesResponseEEE) +STUB( + "hUWeKADo4wA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("hUY-mSOyGL0", sceGameLiveStreamingSetMetadata) +STUB("hUZC4D9B+M8", delegate_virtual_invoke_31_p) +STUB("hUZIRxBcMGU", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container7getSkusEv) +STUB( + "hUn+eoxb8C0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEixEm) +STUB("hUnWf+Gzpik", _LDint.sub) +STUB("hUrC-aKSSHw", _ZN3WTF10AtomString6numberEf) +STUB("hUvVTVIoCOc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEdeEv) +STUB("hUza-a0hX2c", sceVdecCoreMapMemory) +STUB("hV4yTCUcogU", _ZNK7WebCore11MediaPlayer17engineDescriptionEv) +STUB("hV5rqxAn+pE", _ZN8meta_gen13TiffRetrieverD1Ev) +STUB("hV6ojr5IGMQ", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_23NpSessionInvitationInfoEEC1Ev) +STUB( + "hV8HcpuJODo", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities15ActivityFactory6createEPNS1_6Common10LibContextEPKcSA_bPNS6_12IntrusivePtrINS4_8ActivityEEE) +STUB( + "hVAz-2nit9o", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE8capacityEv) +STUB("hVBTaS+kl6Q", _ZN7WebCore8Document7anchorsEv) +STUB("hVDiK6tofnQ", sceSlimglClientLiveTimeout) +STUB("hVDqYB8+jkk", sceSaveDataDebugCompiledSdkVersion) +STUB("hVE9DT4yd18", + _ZNK3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectator12getAccountIdEv) +STUB("hVFySNQXB2w", mono_btls_x509_from_data) +STUB("hVHy4d-eWEU", __sanitizer_get_module_and_offset_for_pc) +STUB("hVQgfGhJz3U", _ZNSt22_System_error_categoryD1Ev) +STUB( + "hVTtDs68szw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEE7add_refEv) +STUB( + "hVXnej5x24M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEaSERKS9_) +STUB("hVYD7Ou2pCQ", _sceFiberInitializeImpl) +STUB("hVYr51WGXZo", uregex_matches64_67) +STUB( + "hVfwr0gAUKs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEppEi) +STUB("hVgep7t+Dbk", _ZStL5sbfunRSt8ios_basei) +STUB( + "hVnUYstqoCo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEE5resetEPS6_) +STUB("hVrCgL26Z0Y", _ZN12video_parser5vpcom8datetime8DateTime15datetime_formatE) +STUB("hVvUitUwrFs", sceMatMtypeprotect) +STUB("hVyEK49hOlA", + _ZN3sce2Np9CppWebApi14IdentityMapper2V319AccountIdMapFactory7destroyEPNS3_12AccountIdMapE) +STUB( + "hW+eALejtlM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE10setContextEPNS2_10LibContextE) +STUB("hW-9++DsvQ4", WKUserContentControllerCopyUserScripts) +STUB( + "hW2+n4C8HT0", + _ZN3sce2Np9CppWebApi14SessionManager2V150GetUsersAccountIdPlayerSessionsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_43GetUsersAccountIdPlayerSessionsResponseBodyEEE) +STUB( + "hW6fOMklgY8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "hW86tUemJmo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEneERKS9_) +STUB("hW8j5lynicI", rgctx_fetch_trampoline_mrgctx_78_p) +STUB( + "hWBdjJJdB3k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEC1EPKS8_) +STUB("hWDF4BfON5c", WKBundleSetPluginsEnabled) +STUB("hWDmsVtUmtw", p5_4096) +STUB("hWE4AwNixqY", sceFontDestroyWords) +STUB("hWEgd6jgQdQ", _ZN7WebCore9HTMLNames27onwebkitbeginfullscreenAttrE) +STUB("hWEp+COe4W4", u_strchr32_67) +STUB( + "hWHLAzzRKf4", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEEiRNS2_10LibContextEPT_m) +STUB("hWMCAPpqzDo", sceAudioInSetSparkSideTone) +STUB("hWMLhvK9D2g", WKPreferencesSetDeveloperExtrasEnabled) +STUB("hWNh5HhvkO0", sceCesEucKrToUtf16le) +STUB( + "hWPhQ-tUO6U", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEdeEv) +STUB( + "hWPwMIrUodE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE5eraseENS2_8IteratorIS6_EERS9_) +STUB( + "hWUPEBCEMt4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEeqERKS9_) +STUB("hWWIDS76wrc", mono_aot_System_Collectionsjit_code_start) +STUB( + "hWZTw0o2ED8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEmmEv) +STUB( + "hWcU0yO47yQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE5emptyEv) +STUB("hWeXf7yjMDI", ucnv_openStandardNames_67) +STUB("hWjHkAIandU", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_20ChallengeRecvDetailsEED1Ev) +STUB("hWjKpVnPaCE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEdeEv) +STUB("hWlTkG2jVmE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEC1Ev) +STUB( + "hWnj6fG31oQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "hWnv9lPEVi8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "hWtTMIOy3Xc", + _ZN9Inspector26AnimationBackendDispatcher6createERNS_17BackendDispatcherEPNS_33AnimationBackendDispatcherHandlerE) +STUB( + "hWvIfuDJITw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEE11get_deleterEv) +STUB( + "hWvVDC7QBCg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEC2EPS6_PNS2_10LibContextE) +STUB("hWwXVu5VR2U", _Z18sendIpmiConnectResiiiii) +STUB("hWwis8FUZVQ", d2i_ECParameters) +STUB("hX+9PCsymIU", _ZN3JSC8Bindings8Instance16newRuntimeObjectEPNS_9ExecStateE) +STUB("hX5OlI45fC4", sceSystemLogger2SetEventAsync) +STUB("hX8j9yVCL4Y", _ZN3sce3Xml3Dom15DocumentBuilder11getDocumentEv) +STUB("hXA24GbAPBk", __gedf2) +STUB("hXAigp8X1mg", uloc_getDefault_67) +STUB("hXAnLgDHCoI", sceAgcWaitRegMemPatchMask) +STUB( + "hXBe+Ty1lOQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEED1Ev) +STUB("hXCDbIiDY20", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V520ContainerRatingCount6toJsonERNS_4Json5ValueEb) +STUB("hXCJIJZZ5MY", + _ZN15AbstractStorage14YoutubeContent6RenameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("hXCr94yw154", _ZN7WebCore7Element19setBooleanAttributeERKNS_13QualifiedNameEb) +STUB("hXDH86Z4EHA", WKContextConfigurationSetMediaKeysStorageDirectory) +STUB("hXDjBDX38jk", _ZNK6icu_6713UnicodeString6lengthEv) +STUB("hXGCNM+slic", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS16FriendsVariablesEE5resetEv) +STUB( + "hXJka1cOrxY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE10setContextEPNS2_10LibContextE) +STUB("hXXC4BDL1gY", curl_mime_addpart) +STUB("hXeWPOdu+-4", mono_aot_Sce_Vsh_Np_IdMapperjit_code_start) +STUB("hXfKdbbHgRQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEEC2EPS5_PNS2_10LibContextE) +STUB( + "hXfbIQKz2mA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEeqERKS9_) +STUB("hXkNZdCO+qU", _ZN3sce3Xml3Dom8DocumentC1ERKS2_) +STUB( + "hXp5W9IyyCc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEC1Ev) +STUB( + "hXpbG6ohjf0", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB("hXsRW1De54I", utrace_entry) +STUB("hXsvfky362s", _ZNSt13basic_filebufIwSt11char_traitsIwEE9underflowEv) +STUB("hXtby+xy4lA", _ZN3WTF6String13fromCodePointEi) +STUB( + "hXtk-zbNCiE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB("hXu4ow0ml4M", WKPopupMenuItemGetTypeID) +STUB( + "hXxH1qjZ9gI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEdeEv) +STUB("hXxIjSJmsLs", _ZN12video_parser18cMp4FFLHndlManager17FF4ErrorToVPErrorE11ff4_retcode) +STUB("hXxP1rF7yOE", ucnv_io_stripEBCDICForCompare) +STUB("hXyBi5L7vb4", WKPreferencesSetNotificationsEnabled) +STUB( + "hY+PffD8oPU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEixEm) +STUB("hY0vHypnMdg", mono_load_remote_field_new) +STUB("hY2tr-X7ytM", _ZN3WTF18ParallelHelperPoolC2EONS_7CStringE) +STUB( + "hY4TJRjg5OQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEptEv) +STUB( + "hY58IJO80d4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("hY5mlmk0DY4", jpeg_default_colorspace) +STUB("hYAhYYYeVZA", WKBundleFrameGetScrollOffset) +STUB("hYFXG8FWThI", sceVrServiceDialogInitialize) +STUB("hYG4WSk82-g", _ZN3sce7Toolkit2NP34DetailedProductInfoListInputParamsC1Ev) +STUB( + "hYJs+FXXmno", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemProperties12setsessionIdEPKc) +STUB( + "hYNw8n6jMjc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEC1EPNS2_10LibContextE) +STUB("hYPJFWzFPjA", sceNpTusWaitAsync) +STUB( + "hYQ0hePbr5I", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEplEm) +STUB("hYQzNpYaClY", _ZNK3sce2np8JsonNull5CloneEP16SceNpAllocatorEx) +STUB( + "hYS-N9XEdTI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEeqERKS7_) +STUB("hYU2Riiaj08", _ZNK7WebCore9JSDOMRect7wrappedEv) +STUB( + "hYVDZ7ZAzLE", + _ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody11setLocationERKNS1_6Common12IntrusivePtrINS3_8LocationEEE) +STUB("hYdX42jEzTg", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEEppEv) +STUB("hYmRpDiOE6Y", _ZN3NTF5Cache16DiskCacheUtility9deleteAllEv) +STUB("hYnXqynsu7M", _ZN7WebCore20ResourceResponseBase18addHTTPHeaderFieldERKN3WTF6StringES4_) +STUB( + "hYoWA8zezio", + _ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionMemberPlayerC1EPNS1_6Common10LibContextE) +STUB("hYpuY0UpXU8", _ZN7WebCore8Document6setDirERKN3WTF10AtomStringE) +STUB("hYqnvZqn6XA", sceDseehxConvert) +STUB( + "hYsS9Y6-EWY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEaSERKS9_) +STUB("hYtj26FQXjo", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getSubtitleDisp) +STUB( + "hYzVKmd6yQw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEE5resetEPS6_) +STUB("hZ+GCRR5xVU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEEC1ERS7_) +STUB("hZ0uqhMCeBs", _ZN3sce7Toolkit2NP2V28Matching7Request14SendInvitationD1Ev) +STUB( + "hZ2PlR-yCIA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEmmEv) +STUB("hZ9kXOm-Kes", _ZN7WebCore21JSTextTrackCueGeneric9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "hZC5sjyp1k0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEE7get_refEv) +STUB( + "hZGj1whUmmc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEptEv) +STUB("hZIg1EWGsHM", sceUltInitialize) +STUB( + "hZJdCFABHfk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEdeEv) +STUB("hZLPmfkBtAc", _ZN3sce7Toolkit2NP2V26Trophy16TrophyPackTrophyC1ERKS4_) +STUB( + "hZLVpDOZn-E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEE5resetEPS6_) +STUB( + "hZOa7All1mg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("hZRpuLDxEgw", _ZN7WebCore15makeSimpleRangeERKN3WTF3RefINS_5RangeENS0_13DumbPtrTraitsIS2_EEEE) +STUB("hZS58BxCAV8", WKWebsiteDataStoreGetFetchCacheSizeForOrigin) +STUB( + "hZTfKpftpsU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB("hZarPUiZevM", glStencilFunc) +STUB("hZfdAMk7bQw", sceValidationGpuRegisterInitContext) +STUB( + "hZjFZijgn6M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEE11get_deleterEv) +STUB( + "hZmo0M4PLQk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE6isBusyEv) +STUB("hZoiFX37j1A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEED2Ev) +STUB("hZvzQy2VLKY", sceVideoOutGetHdmiKsvList_) +STUB( + "ha--9DAYPKE", + _ZN7WebCore11DisplayList10DrawGlyphsC1ERKNS_4FontEON3WTF6VectorItLm128ENS5_15CrashOnOverflowELm16ENS5_10FastMallocEEEONS6_INS_9FloatSizeELm128ES7_Lm16ES8_EERKNS_10FloatPointERKSB_NS_17FontSmoothingModeE) +STUB( + "ha3O+yUH7K8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEE11release_refEv) +STUB("ha45gMAxPSM", _ZN3JSC17StructureRareData6s_infoE) +STUB("ha4uo6Dx0z0", _ZN2sh7CompileEPvPKPKcmm) +STUB( + "haAiTqZeL-s", + _ZN3sce2Np9CppWebApi14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyC1EPNS1_6Common10LibContextE) +STUB("haDbtVOmaao", _ZN3sce2np9LocalFile6RemoveEPKc) +STUB("haGmz-LT5P0", _ZN3sce7Toolkit2NP2V27Session7SessionD2Ev) +STUB( + "haJMLw45UPU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEppEi) +STUB("haMpc7TFx0A", sceRudpPollControl) +STUB( + "haQnGktNR4M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "haVLqvDvxjg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEEC1EPS6_PNS2_10LibContextE) +STUB("haVZE9FgKqE", sceNpProfileDialogUpdateStatus) +STUB( + "haYoXv7dWw4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEE7get_refEv) +STUB( + "haYv35X+WEM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEixEm) +STUB("hafX2exMIg8", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V114ResultsVersionEEmmEi) +STUB( + "hah7Owc9Wh4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEE7add_refEv) +STUB("haq75G5K5LY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEC2Ev) +STUB("har5YNdSVho", ubidi_setPara_67) +STUB("hau18mqZWEc", ucase_getType_67) +STUB("hawKak+Auw4", sceCameraGetRegistryInfo) +STUB("hay1CfTmLyA", sceSaveDataDialogProgressBarSetValue) +STUB( + "hayVmTdMOEE", + _ZNK7WebCore6Chrome12createWindowERNS_5FrameERKNS_16FrameLoadRequestERKNS_14WindowFeaturesERKNS_16NavigationActionE) +STUB( + "hazq95ykDGQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEE7add_refEv) +STUB("hb+0MXp9Cgc", _ZN9Inspector20InspectorTargetAgent21disconnectFromTargetsEv) +STUB( + "hb+H9g8Rfb8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEEaSERSA_) +STUB("hb-v3fgkXTo", sbuf) +STUB("hb289atcuLE", + _ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse23setIsOfficiallyVerifiedERKb) +STUB( + "hb39d9SG7yo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("hb77EGA39U4", _ULx86_64_get_proc_name) +STUB("hbD28nqQKoc", _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead13getMaxPlayersEv) +STUB( + "hbKzNgipH70", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("hbNcE4fnBDs", sceNpSessionSignalingGetConnectionFromNetAddress2) +STUB("hbT3Z0Hd3rg", _ZNK7WebCore7Element24computeInheritedLanguageEv) +STUB("hbTTJkE-emA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEEC2EPS5_PFvS7_EPNS2_10LibContextE) +STUB("hbU5HOTy1HM", _ZTISt7codecvtIwc9_MbstatetE) +STUB( + "hbXWLa-z-Fs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEneERKS9_) +STUB("hbY3mFi8XY0", _Tls_setup__Costate) +STUB("hbe+DdooIi4", sceNpServerErrorJsonParseMultiInit) +STUB( + "hbfeBUexLew", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "hbg9-bYvgbY", + _ZN9Inspector24RuntimeBackendDispatcher24getDisplayablePropertiesElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("hbiV9vHqTgo", __lesf2) +STUB("hbkrCD9hIOE", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia6VideosEE12deepCopyFromERS7_) +STUB( + "hbt40CPhmEY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEE5resetEPS9_) +STUB( + "hbxVtJ0+Vbc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEC2EPKS8_) +STUB( + "hc+m2tz17Wk", + _ZN7WebCore14DocumentLoader58stopLoadingAfterXFrameOptionsOrContentSecurityPolicyDeniedEmRKNS_16ResourceResponseE) +STUB( + "hc-dvoHgY54", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE8capacityEv) +STUB("hc0GFWwSrR4", sceKernelIccSetCPMode) +STUB("hc0ksLGHWXI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEED1Ev) +STUB("hc1XYdtAhCE", mono_threads_init) +STUB("hc3Z8MsiIz4", _sceLibcStdThreadStackSizeInit) +STUB( + "hc4DUTf7PLU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEptEv) +STUB("hc4u0z2Qs6o", _ZN3JSC30isTerminatedExecutionExceptionERNS_2VMEPNS_9ExceptionE) +STUB("hc6rJqmTZ0o", _ZN7WebCore11FrameLoader9setOpenerEPNS_5FrameE) +STUB( + "hcAhTwN4o2k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB("hcAyWL6bQa8", mono_aot_Sce_Vsh_MorpheusUpdWrapperunwind_info) +STUB("hcB56mjq-i4", sceVoiceChatRequestUpdateGameSessionVoiceChatChannelName) +STUB( + "hcFZUFb80BM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEC1Ev) +STUB("hcHoeAZr9YA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEEC2ERKS7_) +STUB("hcI-VlFn00Y", _ZN3sce3Xml3Dom8NodeListD1Ev) +STUB("hcIxS8pmXF4", sceAgcAcbAtomicGdsGetSize) +STUB( + "hcL5GitcyDg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE5emptyEv) +STUB("hcM1XxQHIgk", mono_method_desc_free) +STUB("hcNLW1OyfTc", sceCesUtf32ToEucCn) +STUB( + "hcTmSm0GA9E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEC1EPS8_) +STUB( + "hcdqYe34IxA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEppEv) +STUB("hceMMReSAEk", delegate_virtual_invoke_30) +STUB( + "hcgMStahntg", + _ZN3sce2Np9CppWebApi7Matches2V113ChildActivity15setAvailabilityERKNS3_25ChildActivityAvailabilityE) +STUB( + "hcn7reGoPd0", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsersD1Ev) +STUB("hcnesFhpr7s", cpp_demangle_read_subst_stdtmpl) +STUB( + "hcr91gUh9Mw", + _ZN3JSC32throwDOMAttributeGetterTypeErrorEPNS_14JSGlobalObjectERNS_10ThrowScopeEPKNS_9ClassInfoENS_12PropertyNameE) +STUB("hcuQgD53UxM", printf) +STUB("hd+2cp4M7X4", sceRegMgrPrivateStorageInject) +STUB("hd-pm9EjS6g", ubrk_getBinaryRules_67) +STUB( + "hd1MpPAO+Eo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("hd4Ta6XIFCE", sceCesUtf32StrToMbcsStr) +STUB("hd6sv2E7Mkc", uprv_parseCurrency_67) +STUB( + "hd9SQkTJLSU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE21intrusive_ptr_add_refEPS9_) +STUB("hd9m4Ozb-zU", _ZN9Inspector27AnimationFrontendDispatcher13targetChangedERKN3WTF6StringE) +STUB( + "hdETc-uz4yI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE4sizeEv) +STUB( + "hdFE8uHRNQ4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEC2EPS8_) +STUB("hdFsxo3MFu8", sceAudiodecCpuInitDecoder) +STUB("hdISXjL-bwY", sceAvSettingNotifyAudioOutMode) +STUB( + "hdKJL30nKj0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEEcvbEv) +STUB( + "hdLhPhpc6Lk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEaSERKS7_) +STUB( + "hdM-MBguFoI", + _ZN7WebCore16FrameLoadRequestC1ERNS_8DocumentERNS_14SecurityOriginEONS_15ResourceRequestERKN3WTF6StringENS_20InitiatedByMainFrameERKNS7_10AtomStringERKNS_17SystemPreviewInfoE) +STUB("hdMwoQC8RM8", _ZN7WebCore9HTMLNames8frameTagE) +STUB( + "hdNdJ4oBKds", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEEaSERS9_) +STUB( + "hdOz+meTEAk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEE11release_refEv) +STUB( + "hdPOEbkpyfk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEixEm) +STUB( + "hdQg3nTqxA8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("hdQk6MHRazY", _ZN3sce2Np9CppWebApi13InGameCatalog2V513ContentRating7setNameEPKc) +STUB("hdR0QN9SiK4", mono_aot_System_Data_Services_Clientjit_code_start) +STUB("hdTyRzCXQeQ", sceAvPlayerStreamCount) +STUB("hdUVjiuPqlk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEED1Ev) +STUB("hdUa2rL3n2k", rgctx_fetch_trampoline_rgctx_89) +STUB( + "hdZeK8F-hbw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("hdZwdtQb1HM", _ZN3JSC22FullGCActivityCallbackD1Ev) +STUB("hdaJCex67Tg", curl_easy_option_by_name) +STUB("hdcGjNpcr4w", _LDclass) +STUB("hdh8bDK4-PA", _ZNK3WTF8JSONImpl5Value9asIntegerERm) +STUB("hdkkR+M8CDc", _ZN9Inspector21DOMFrontendDispatchernaEm) +STUB("hdm0YfMa7TQ", _Znam) +STUB("hdoMbMFIDdE", sceAppMessagingSetEventFlag) +STUB("hdpVEUDFW3s", sceSslInit) +STUB("hdsKBBYSgxs", _ZN3sce7Toolkit2NP2V23TUS7Request7SetDataD2Ev) +STUB( + "hdyPTvEeOGk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEppEi) +STUB( + "hdyvwLmQosI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEptEv) +STUB("he0D4ikNJao", + _ZNK3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResults6toJsonERNS_4Json5ValueEb) +STUB("he6CvWiX3iM", CA_MGMT_returnCertificatePrints) +STUB("heE-L0BwlwM", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead16unsetCustomData2Ev) +STUB("heE1q+RNUiQ", _ItL_pS3) +STUB("heHjQDs5QJk", g_unichar_type) +STUB( + "heL-qVeBGOA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEE5resetEPS9_) +STUB("heO6fLodsG8", _ZN7WebCore16HTMLMediaElement16allMediaElementsEv) +STUB("hePE7F2R70k", fuse_session_reset) +STUB("heWj3DTMl34", _ZN7WebCore9HTMLNames14formmethodAttrE) +STUB("heYOwyaHKLI", _ZN3sce7Toolkit2NP2V29Messaging7Request22ConsumeGameDataMessageD2Ev) +STUB("heYSq-tyQKE", mono_aot_Sce_PlayStation_Orbis_Speechplt_end) +STUB( + "hecKGbURn-w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEmmEi) +STUB("hedUKkqxVb4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEC1Ev) +STUB("heiOpxS1Zio", sceKernelGetVrCaptureSize) +STUB( + "heijy6QrlQ4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeaders6createEPNS1_6Common10LibContextERNS6_12IntrusivePtrIS5_EEl) +STUB("hemgFpeEQFA", sceAc3EncWaitEncode) +STUB("henpJH+XpjE", _ULx86_64_get_proc_info_by_ip) +STUB("hep5VUibI2A", _ZNK9Inspector22RemoteInspectionTarget4nameEv) +STUB( + "heqXvpK9hqY", + _ZN3sce2Np9CppWebApi14SessionManager2V117FromMemberFactory6createEPNS1_6Common10LibContextERKmRK13SceNpOnlineIdPKcPNS5_12IntrusivePtrINS3_10FromMemberEEE) +STUB("heuaiZIWVUI", _ZN7WebCore15FontDescription18setSpecifiedLocaleERKN3WTF10AtomStringE) +STUB("hew0fReI2H0", mblen) +STUB("hewd75Uffqg", _malloc_corruption_error_count) +STUB( + "hexb83pCkl8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE3endEv) +STUB( + "hey9XNydYUI", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "heyejEVIzaA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("heyzb1EgSYg", WKFrameGetResourceData) +STUB( + "hez6RPkEBTI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEC1Ev) +STUB("hf-aGjkHYZA", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE6resizeEj) +STUB("hf2Ljaf19Fs", _ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE) +STUB( + "hf6+s5SQUXI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEC2Ev) +STUB("hf79TEH1is0", delegate_virtual_invoke_imt_0_p) +STUB("hf7qvdCA8Pc", _ZN3sce7Toolkit2NP2V212NetworkUtils7Request22GetDetailedNetworkInfoC2Ev) +STUB("hf8YZKYAYNo", _ZN3sce7Toolkit2NP2V26Trophy7Request18GetTrophyPackGroupD1Ev) +STUB("hfG05rRUDak", _ZN7WebCore24decodeURLEscapeSequencesEN3WTF10StringViewERKNS_12TextEncodingE) +STUB("hfJ1gGLgvq8", _ZN3sce2np7RingBufD0Ev) +STUB("hfKjHJWHnF0", _ZN7WebCore16HTMLTableElement4rowsEv) +STUB("hfQQVK3sYeg", X509_STORE_add_lookup) +STUB( + "hfT+T52C43Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEC2ERKS8_) +STUB("hfW8MZYAdUs", _ZN3sce7Toolkit2NP2V23TUS15TusDataStatusesC2Ev) +STUB("hfYwLMweFS4", sceDebugGetCrashInfoDetailForCoredump) +STUB("hfbKTyZXa5A", ubrk_next_59) +STUB("hfcgWIfgkEc", GCC_except_table222) +STUB("hfeXnNJn1cE", _ZN7WebCore8SVGNames9filterTagE) +STUB("hfifwAJDCvU", _ZN15AbstractStorage14YoutubeStorageD2Ev) +STUB( + "hfjd6aAdUpM", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi35ParameterToSetGameSessionPropertiesC1ERS5_) +STUB("hfkLVdXmfnU", sceNetCtlApGetConnectInfo) +STUB("hfoBPdMDBhg", _ZNK3JSC10JSFunction10sourceCodeEv) +STUB( + "hfqteKwqVfk", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V132NatConnectivityPropertiesFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_19NatConnectivityFromEEESA_SA_PNS8_INS3_25NatConnectivityPropertiesEEE) +STUB("hftC5A1C8OQ", sceCameraAudioGetData2) +STUB("hg9T73LlRiU", sceVoiceVADAdjustment) +STUB("hgDgIQcrOEQ", _ZN3sce7Toolkit2NP23ChallengeConsumeRequestC1Ev) +STUB("hgEbCUX22UM", sceVshAvcapTerm) +STUB( + "hgEjLX9CstY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEmmEi) +STUB( + "hgGKe3rAOck", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEEiRNS2_10LibContextEPT_m) +STUB("hgIcaty5I74", JVM_GetMethodIxLocalsCount) +STUB( + "hgMpbQtBWmU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEEaSERKSA_) +STUB("hgOVdozquU0", sceUserServiceGetShareStatus3) +STUB("hgR8jBjP9Vc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V120PlayerJoinableStatusEEppEv) +STUB( + "hgV5jhfw5Hs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEC1EPS8_) +STUB("hgVN98tTLP8", _ZN7WebCore9HTMLNames7rubyTagE) +STUB("hgbEy0LBEgc", _ZN7WebCore11DisplayList20FillRectWithGradientC1ERKNS_9FloatRectERNS_8GradientE) +STUB("hgbtIqjf5jo", _ZN9Inspector28InspectorScriptProfilerAgent18willEvaluateScriptEv) +STUB( + "hge9Ll5ao2Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE3endEv) +STUB("hggKhPySVgI", sceGameLiveStreamingPostSocialMessage) +STUB( + "hghqmlFwfPE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("hgiOqOfVpRk", + _ZN7WebCore22EmptyFrameLoaderClient21fileDoesNotExistErrorERKNS_16ResourceResponseE) +STUB( + "hgjCWHPuHAQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEE11release_refEv) +STUB("hgkuZ0vjJ7c", mono_error_get_message) +STUB("hgoJZrkQJMI", _ZN7WebCore13ContainerNode22getElementsByClassNameERKN3WTF12AtomicStringE) +STUB("hgqOCt3pShE", + _ZN3sce2Np9CppWebApi7Matches2V133RequestTemporaryCompetitiveResultC1EPNS1_6Common10LibContextE) +STUB( + "hgyiFlIb2L4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEED1Ev) +STUB("hh-pEXPhMck", Java_java_net_PlainDatagramSocketImpl_init) +STUB( + "hh1ll+aJYFE", + _ZN3sce2Np9CppWebApi14SessionManager2V132RequestPlayerSessionMemberPlayerC2EPNS1_6Common10LibContextE) +STUB( + "hh44dU1IqK0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEC2EPS8_) +STUB( + "hh5TBWDe4-0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEixEm) +STUB("hhF-BMjB2+0", _ZN7WebCore13JSDOMRectListaSERKS0_) +STUB("hhHqiyjZV08", _ZN3JSC18GCActivityCallback11didAllocateERNS_4HeapEm) +STUB( + "hhI0L5nIXck", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "hhJYnIvuz9A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEEC2ERKSA_) +STUB("hhPQ7S35zT4", sceFontGraphicsProcessSetSyncPolicy) +STUB( + "hhSO6R4La8g", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountId10initializeEPNS1_6Common10LibContextERK13SceNpOnlineId) +STUB("hhTsdv99azU", sceNetCtlGetNetEvConfigInfoIpcInt) +STUB( + "hhV5JvPU594", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEptEv) +STUB("hhWh0GdO-Io", mono_gchandle_get_target) +STUB( + "hhZsZP1u1KI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB( + "hhc04JLMJTE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEptEv) +STUB( + "hhg-xQm5Hu8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEE7add_refEv) +STUB("hhlWfHpfPx0", goby_GetLinkPeriod) +STUB( + "hhtIPV1vGHc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEC1Ev) +STUB("hhuvB3JXuMM", cairo_new_path) +STUB("hhy8+oecGac", sceNpTusCreateTitleCtx) +STUB("hhz9pITnC8k", sceAudioPropagationSourceRender) +STUB("hhzN6xfPIRs", recvData) +STUB("hi0BiPpGPV8", uhash_setKeyComparator) +STUB("hi0veU3L2pU", sceSslRecv) +STUB("hi75DVfII3Y", sceCesUcs2ToMbc) +STUB( + "hi9ih4kbV+c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEppEi) +STUB("hiCNPc7sOAo", _ZN3sce7Toolkit2NP19CheckoutInputParamsC1Ev) +STUB("hiO1N3-vggQ", + _ZN9Inspector22InspectorDebuggerAgent20setShouldBlackboxURLERN3WTF6StringERKS2_bPKbS7_) +STUB( + "hiTjkPeY5f8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE6resizeEj) +STUB( + "hiVGNHKitUE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEC1EPS8_) +STUB( + "hicbr51m4P4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEneERKS9_) +STUB("hijfwtuVJT4", jpeg_input_complete) +STUB( + "hiuJhV00jCA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("hiw1rWeleTA", _ZN3JSC20JSStringHeapCellTypeD1Ev) +STUB( + "hiwv695r+KU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEppEi) +STUB("hj0o6xgmoZU", fuse_req_getgroups) +STUB( + "hj0s0KAuCdY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEneERKS9_) +STUB("hj1KIIN5D54", hb_blob_create) +STUB("hj3V2BvsyNM", _ZNK7WebCore8Document8referrerEv) +STUB("hj40eDtISJY", _ZN3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsersD1Ev) +STUB("hjDFaEWCV20", _ZN3sce4Json6Parser12parseQuadHexERNS0_11InputStreamE) +STUB("hjDoZ6qbkmQ", _LXp_setn) +STUB("hjErHT1CwJM", sceKernelNotifySystemSuspendResumeProgress) +STUB( + "hjFk1BckE3A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("hjHWPtJ4p4E", _ZN9Inspector14InspectorAgentnwEm) +STUB( + "hjImAqbOR50", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEEC1ERSA_) +STUB("hjJwVskIVxg", _ZN3JSC11ArrayBuffer6createERS0_) +STUB( + "hjOkN0Mhdb0", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "hjQ+Z+CbidM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEEC2ERKSA_) +STUB("hjULUs7uHiA", _ZNK7WebCore11MediaPlayer5mutedEv) +STUB("hjVbjuBme4Y", mono_aot_Sce_Vsh_UserServiceWrapperunwind_info) +STUB("hjahA2PhW78", _ZN7WebCore8SVGNames10ascentAttrE) +STUB("hjd40+AkUAE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEEdeEv) +STUB("hjhEsh7g05Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEC1ERS7_) +STUB( + "hjjAzld4lLg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "hjjGOI3G3Ao", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEE11release_refEv) +STUB( + "hjklpCueESo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEdeEv) +STUB("hjkso14yMh4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEEeqERKS7_) +STUB( + "hjl5qYLFnek", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEE7get_refEv) +STUB("hjlUn9UCgXg", sceUserServiceSetImeLastUnit) +STUB( + "hjmv5i8fIkA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEE5resetEPS9_) +STUB( + "hjmztSG0tY4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEC2EPS8_) +STUB("hjoVB02yu0U", sceVideodec2CreateDecoderBid) +STUB("hjqbmNiebiQ", _ZN7WebCore8SVGNames10feFuncRTagE) +STUB("hjsm6ZT-Qq8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEptEv) +STUB("hjt6ZGKuEfo", WKBundleNodeHandleGetHTMLInputElementAutoFillButtonBounds) +STUB( + "hjxVKDDCrZc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "hjzv6lEAIuI", + _ZN3sce2Np9CppWebApi12Leaderboards2V19BoardsApi18getBoardDefinitionEiRKNS4_29ParameterToGetBoardDefinitionERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_30GetBoardDefinitionResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("hk+NcQTQlqI", SSL_ASYNC_connect) +STUB("hk2Vi4aJODY", _ZN9Inspector22PageFrontendDispatcher20domContentEventFiredEd) +STUB( + "hk5VokCUF7Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEE3getEv) +STUB("hkBGH3N-oi8", _ZN7WebCore11DisplayList11DrawPatternD2Ev) +STUB("hkDKEOQqTr8", _ZN7WebCore17LibWebRTCProvider15webRTCAvailableEv) +STUB( + "hkHjRfW1XlE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "hkNF6S-CoXg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE10setContextEPNS2_10LibContextE) +STUB("hkP+sGvpPns", _ZN7WebCore8XMLNames4initEv) +STUB("hkPmgORSI5Y", + _ZNK3sce2Np9CppWebApi14SessionManager2V130RequestPlayerSessionInvitation5getToEv) +STUB("hkRNE6KCRME", + _ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer8fromJsonERKNS_4Json5ValueE) +STUB( + "hkSpRcbRljY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEC2Ev) +STUB("hkStGkCsKck", + _ZN7WebCore7JSRange15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB( + "hkaXGo9JCVs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("hkcfqAl+82w", sceHttpGetRegisteredCtxIds) +STUB("hkeX9iuCwlI", sceNpIntIsValidOnlineId) +STUB("hkkKVRY8+QA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEE3getEv) +STUB("hks1Z-mbivM", _ZN3sce7Toolkit2NP2V28Commerce7Request22GetServiceEntitlementsC1Ev) +STUB("hksbskNToEA", sceNpWebApi2GetHttpResponseHeaderValue) +STUB( + "hkunRIJGARI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEE7get_refEv) +STUB( + "hl3Bo4-gnDc", + _ZN7WebCore17JSDOMRectReadOnlyC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_15DOMRectReadOnlyENS6_13DumbPtrTraitsIS8_EEEE) +STUB("hl59Lb8b1rc", + _ZN3sce2Np9CppWebApi14SessionManager2V131ResponsePlayerSessionInvitation15setInvitationIdEPKc) +STUB("hl5Wr+hIGqE", _ZN3sce2Np9CppWebApi10Activities2V114UserActivities5Error11unsetReasonEv) +STUB("hl5a5rHe+A0", _ZN3sce7Toolkit2NP2V27Ranking10UsersRanksC1ERKS4_) +STUB("hl9hJMTjmQM", _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBodyD1Ev) +STUB( + "hlBdThosC0U", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEplEm) +STUB( + "hlFCrt0OWPA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE3endEv) +STUB("hlHGn9MpzcY", _ZN3sce7Toolkit2NP2V24Auth8AuthCodeC2Ev) +STUB( + "hlJEoLJt+A0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE5clearEv) +STUB( + "hlSb0AUKVMk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "hlVC5PjHx+k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEE5resetEPS9_) +STUB( + "hlYZ1uHKd48", + _ZThn16_N9Inspector21InspectorRuntimeAgent10getPreviewERN3WTF6StringERKS2_RNS1_6RefPtrINS_8Protocol7Runtime13ObjectPreviewENS1_13DumbPtrTraitsIS9_EEEE) +STUB( + "hld28Tyc+qo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEeqERKS9_) +STUB("hlh15JjNtWg", cairo_push_group) +STUB( + "hlhEs97OnXA", + _ZN3WTF30overrideUserPreferredLanguagesERKNS_6VectorINS_6StringELm0ENS_15CrashOnOverflowELm16EEE) +STUB("hljMAxTLNF0", sceGnmSpmSetMuxRam) +STUB( + "hllzTaq4Lh8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("hlrJvAkqZxM", sceApplicationGetCompiledSdkVersionByAppId) +STUB( + "hm0evszBMic", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEE11get_deleterEv) +STUB("hm0y9syP1t4", _ZN3sce2Np9CppWebApi14ConnectAccount2V28PSNErrorC2EPNS1_6Common10LibContextE) +STUB("hm52T5bPfJo", _ZN3sce7Toolkit2NP2V28Commerce7Request21DisplayCheckoutDialogD1Ev) +STUB( + "hm5Jh5UNnVA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeaders6createEPNS1_6Common10LibContextERNS6_12IntrusivePtrIS5_EEl) +STUB( + "hm9lNc6jE78", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEmmEi) +STUB("hmBBh-IJSzk", sceVideoOutSysGetPortStatusInfoByBusSpecifier_) +STUB("hmDrNd7LzWQ", mono_aot_JSC_Netjit_code_end) +STUB( + "hmFojJX7NHY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEC1ERS7_) +STUB( + "hmG3PZlR5OM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEEdeEv) +STUB("hmHH6DsLWgA", _ZTSN6Dinkum7threads21thread_resource_errorE) +STUB("hmLDjpBojik", _ZN7WebCore5Range14deleteContentsEv) +STUB("hmLXa6ptcdU", _ZN7WebCore17PageConsoleClientnwEm10NotNullTagPv) +STUB("hmLqFAw8q5Q", _ZNK7WebCore21FormAssociatedElement4formEv) +STUB( + "hmOWAbcTIAg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "hmPwYz8Rz9A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("hmTgra+utac", uprv_decContextSetStatusQuiet_67) +STUB("hmUvC0dlEao", jinit_master_decompress) +STUB("hmVJYbCOt60", _ZNK3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer16getJoinTimestampEv) +STUB("hmVLIi3pQDE", sceNpManagerIntLoginSetAccountInfo) +STUB("hmZCJGU0rCE", _ZN3JSC13JSONStringifyEPNS_14JSGlobalObjectENS_7JSValueES2_) +STUB("hmbWwc570tg", _ZN7WebCore8JSPath2D15subspaceForImplERN3JSC2VME) +STUB("hmbghYjwnSU", mono_get_delegate_invoke) +STUB("hmdvbd7xhU4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEE7add_refEv) +STUB( + "hmgt-BLGuK0", + _ZN7WebCore16FrameLoadRequestC1ERNS_5FrameERKNS_15ResourceRequestENS_28ShouldOpenExternalURLsPolicyERKNS_14SubstituteDataE) +STUB( + "hmhP0ak++AU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "hmjYV1ZXFFc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEptEv) +STUB("hmmMU0TNjEk", Java_sun_awt_GnmUtils_bdjbgUnlock) +STUB("hmo-oiMEFiw", _ZN3JSC7Symbols15nextPrivateNameE) +STUB("hmpkWEqMGME", _ZN7WebCore11RoundedRectC2ERKNS_10LayoutRectERKNS0_5RadiiE) +STUB("hmsP4zfsG7o", _ZN3sce7Toolkit2NP2V212ActivityFeed5StoryD1Ev) +STUB("hmt9YoudTxM", AnnotateHappensBefore) +STUB("hmy0JczT6YA", _ZN7WebCore16convertToIntegerIjEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB( + "hn2dpZTxCuw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEED2Ev) +STUB("hn2gc6-stYM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEE11get_deleterEv) +STUB("hn6OmDjk0ao", _ZN7WebCore4Page19addLayoutMilestonesEN3WTF9OptionSetINS_15LayoutMilestoneEEE) +STUB( + "hn8sj51WEuk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("hnGhTkIDFHg", _ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED1Ev) +STUB("hnJCsglEJxU", mono_string_from_bstr) +STUB( + "hnLqJREeVJ4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE5clearEv) +STUB("hnOWouVmZMY", sceNpManagerIntGetSigninTelemetryInfo) +STUB( + "hnT-IBhDleQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "hnW3W7XzNb0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("hnWHytAuiWA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEppEi) +STUB( + "hnWvS2l44G0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEC2EPS8_) +STUB("hnX+ObtthJk", _ZN3WTF9monthNameE) +STUB( + "hnZIs3wKqwg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEE7add_refEv) +STUB( + "hna7VhyruZY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEC2EPS8_) +STUB("hnboum+-3vs", mono_aot_System_ComponentModel_DataAnnotationsjit_code_start) +STUB( + "hndnFFpQ4sg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("hneJIY0l0rI", _ZN7WebCore12ChromeClientD0Ev) +STUB( + "hni+mHnhh08", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser20unsetjoinStateFilterEv) +STUB( + "hnidvz8WHT0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE5clearEv) +STUB("hnnGAZGcYIU", _ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession14getCustomData1Ev) +STUB( + "hno7zy2nPzk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "hnoW6BkiFso", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "hnrPYn6YBzs", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V110MmrFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_3MmrEEE) +STUB("hnsadt+539M", _ZN7WebCore13QualifiedName4initEv) +STUB( + "hnuNEFwftuc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEC2ERKS8_) +STUB("hnvi3LgVeDM", sceShellCoreUtilExitApp) +STUB("ho+7cKMXCuA", _ZN7bmalloc11Deallocator18deallocateSlowCaseEPv) +STUB("hoAwJetLmro", _ZN9Inspector34ApplicationCacheFrontendDispatcherdlEPv) +STUB("hoAxMs1E7rE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEaSERKS7_) +STUB( + "hoBuxSPeYyQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("hoDzCbvcT5w", _ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEE10setContextEPNS2_10LibContextE) +STUB( + "hoHBab5-Ess", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE7popBackEv) +STUB("hoHjsHnwfHM", sceValidationGpuOnValidate) +STUB("hoINmSMlYjI", _ZN3sce4Json6Object8iteratorD1Ev) +STUB("hoOAofhhRvE", sceNetGetsockname) +STUB("hoTMzMqGIYk", _ZN7WebCore4Page24resumeScriptedAnimationsEv) +STUB("hoWSsRT0ktA", _ZN4IPMI6Server6createEPPS0_PKNS0_6ConfigEPvS6_) +STUB("hoalsPYj2CE", _ZN3sce7Toolkit2NP21InvitationListRequestC2Ev) +STUB("hocRZ3D+wJM", _ZN3WTF11xmlAtomDataE) +STUB( + "hoe1JJcbvz0", + _ZN3sce2Np9CppWebApi14SessionManager2V137RequestGameSessionMemberPlayerFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_24RequestGameSessionPlayerEEEEEPNS9_INS3_30RequestGameSessionMemberPlayerEEE) +STUB("hofyy8Hjg94", _ZN3sce7Toolkit2NP21RegisterTrophyRequestC2Ev) +STUB( + "hofzQ9wIzxM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEEcvbEv) +STUB("hojNtOudWLw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEC2ERS7_) +STUB("hon3yzBLbh8", _ZN7WebCore10TreeWalker12previousNodeEv) +STUB( + "hovIaapaSQo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEixEm) +STUB("hoxQ3mHGN-Q", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_19ProductInfoDetailedEEC2Ev) +STUB("hp0kVgu5Fxw", sceNpLwMutexTryLock) +STUB("hp37hG7VMKs", _ZN3sce2Np9CppWebApi12Leaderboards2V15Entry9unsetPcIdEv) +STUB("hpG+mR4EbpE", sceVoiceChatRequestJoinGameSessionVoiceChatChannel) +STUB( + "hpH8V+H1rwI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "hpLyUFvBubo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEE11get_deleterEv) +STUB("hpQlqUYshFI", curl_maprintf) +STUB( + "hpUJPxtBxfo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE8pushBackERKS8_) +STUB( + "hpWi0S4JsQs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEC2EPS7_PNS2_10LibContextE) +STUB( + "hpXcTsU+Hvw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEEaSERSA_) +STUB("hpXjxaPUAZg", mono_aot_Sce_Vsh_Np_AppInfojit_code_start) +STUB("hpXk9zZgRLw", utext_extract) +STUB("hpYMIQftxm0", _ZN12video_parser5vpcom6StringC2Ev) +STUB("hpff6JJ9OzY", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStatsD2Ev) +STUB("hpfujWhzdXM", u_printf_parse_67) +STUB("hpgxilWFojM", _ZN12video_parser13cVideoPathMsv11sExtentListE) +STUB("hpiRww5WQCM", mono_aot_Sce_Vsh_Webbrowser_XutilWrapperunwind_info) +STUB("hpk1P42yZx4", _ZN3sce2Np9CppWebApi6Common8IteratorINS2_6StringEEmmEv) +STUB( + "hpkRlSttxhw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE4initEv) +STUB( + "hplLXZafnK8", + _ZN3sce2Np9CppWebApi7Matches2V132ResponseCompetitiveResultFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_25ResponseCompetitiveResultEEE) +STUB("hpoDTzy9Yy0", sigpending) +STUB("hpredGqPdG0", _ZN3WTF14numberToStringEfRSt5arrayIcLm123EE) +STUB( + "hptA9AgJ8q0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEEC1ERS8_) +STUB("hq5LffQjz-s", sceFontStringRefersRenderCharacters) +STUB("hq88fwPIxEc", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_28AdditionalSessionInformationEE17getAdditionalInfoEv) +STUB("hqCDILz2VQ4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEED2Ev) +STUB( + "hqFLv8i7GwE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("hqP0nzTTxdo", sceFiosResolve) +STUB("hqPQx7mRgrk", _ZN3sce7Toolkit2NP2V212EventsClient9EventDataC1Ev) +STUB("hqPavTyQlNg", _ZN3sce2np8JsonFileD0Ev) +STUB("hqSmUgVgGXQ", _ZN7WebCore10JSDocument13visitChildrenEPN3JSC6JSCellERNS1_11SlotVisitorE) +STUB( + "hqUWwm+5sQ0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("hqVKCQr0vU8", _ZNSt14numeric_limitsIdE12max_digits10E) +STUB("hqY8PDT4oqU", sceWorkspaceApplyUpdateForDirectory) +STUB("hqco03inQbs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEptEv) +STUB( + "hqeACk2dkzE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEED1Ev) +STUB("hqeXyQq2i2c", ucal_setDate_67) +STUB("hqi8yMOCmG0", _ZNSt8_LocinfoC1EPKc) +STUB( + "hqpy15ZPwZo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEE11get_deleterEv) +STUB( + "hqvhdICEeSk", + _ZN7WebCore17CredentialStorage3setERKN3WTF6StringERKNS_10CredentialERKNS_15ProtectionSpaceERKNS1_3URLE) +STUB("hqvz9S66ReQ", icudt67_dat) +STUB( + "hqwxcK6Y58M", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE4sizeEv) +STUB( + "hqxkJz74oVc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE10setContextEPNS2_10LibContextE) +STUB("hqynGeY-OR8", _ZN3sce7Toolkit2NP2V27Ranking7Request15GetFriendsRanksD1Ev) +STUB("hqzi1IHdQQQ", sceNpBandwidthTestInitStartDownload) +STUB("hqzlA6rAt3s", _ZN12video_parser5vpcom6_CloseEPNS_8_vp_fileE) +STUB("hr0+RJNEPNU", WKPreferencesSetCSSCustomFilterEnabled) +STUB( + "hr2NZOkpLV4", + _ZN3JSC8Bindings13RuntimeObject3putEPNS_6JSCellEPNS_14JSGlobalObjectENS_12PropertyNameENS_7JSValueERNS_15PutPropertySlotE) +STUB("hr4I-u22P2w", _ZNK7WebCore19ResourceRequestBase18hasHTTPHeaderFieldENS_14HTTPHeaderNameE) +STUB("hr8P3owweqU", _ZN3WTF10TextStreamlsEc) +STUB("hr8l7-YieYI", sceNpHeapReallocImpl) +STUB("hrEIwWDKm-w", sceKernelWriteModifyMtypeProtectCommand) +STUB("hrIBZ9wlueY", _ZN15AbstractStorage17DailymotionFolderD2Ev) +STUB( + "hrLY6A6QQ-U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEC1EPS8_) +STUB( + "hrLyH0AbEsk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("hrN3riK4yf4", _ZN7WebCore9HTMLNames10onblurAttrE) +STUB("hrPM+i7AHXo", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament5EventEE19setCustomReturnCodeEi) +STUB("hrTPOtnC7Mw", _ZNK3WTF7Seconds4dumpERNS_11PrintStreamE) +STUB("hrTU5Qczmzc", mono_class_is_delegate) +STUB("hrVlppp-bP8", _ZN3sce2Np9CppWebApi7Matches2V122RequestMatchStatistics17getTeamStatisticsEv) +STUB( + "hrb3ff8KG-g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("hrctaZQop40", _ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody8setScoreERKl) +STUB("hrevq-dtNW0", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13integer3IsSetEv) +STUB("hroa7I6Y6ic", _ZN3sce7Toolkit2NP2V212ActivityFeed12SharedVideosC2Ev) +STUB( + "hrtUbLy1KRQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEixEm) +STUB("hrv1BgM68kU", _Pmsw) +STUB( + "hrzHgwpa2rQ", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions18setjoinStateFilterEPKc) +STUB("hs-OARoWdxo", sceUlpMgrCloseAllConnectedClients) +STUB("hsBqp0qCNM4", g_logv) +STUB( + "hsCpTYAeKoc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEE11get_deleterEv) +STUB("hsKNTohnigc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEE5resetEPS6_) +STUB("hsKd5c21sQc", sceSaveDataRegisterEventCallback) +STUB("hsNxIw6p60g", _ZN7WebCore27PlatformMediaSessionManager22processSystemWillSleepEv) +STUB( + "hsO2pxSZ6DY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("hsQBBJvoKfI", + _ZN7WebCore4Page10findStringERKN3WTF6StringENS1_9OptionSetINS_14FindOptionFlagEEEPNS_7DidWrapE) +STUB("hsREfI6X+h4", Java_java_net_Inet6AddressImpl_lookupAllHostAddr) +STUB("hsTOEgJ8fy8", _ZN3JSC14throwTypeErrorEPNS_14JSGlobalObjectERNS_10ThrowScopeERKN3WTF6StringE) +STUB("hsVWg5E98vg", scePsmUtilGetOffscreenAssetManagerSize) +STUB( + "hsVj+kIEcic", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE8pushBackERKS8_) +STUB( + "hsWH0Jb46WE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEEC1ERSA_) +STUB( + "hsYw6+kLTYY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEE5resetEPS9_) +STUB("hsZPf1lON7E", sceGnmValidateDrawCommandBuffers) +STUB( + "hscMhHsPG1g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEC1ERKS7_) +STUB("hsi9drzHR2k", log2f) +STUB( + "hsicbx6+Psk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEptEv) +STUB("hsn2TaF3poY", __atomic_compare_exchange_n) +STUB("hsnWHtg+tNE", _ZN7WebCore5Range6createERNS_8DocumentE) +STUB("hsr4NjC3kho", WKPreferencesSetShouldPrintBackgrounds) +STUB( + "hsseptnjJF4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("hsttk-IbL1o", _ZTIPKo) +STUB("hsymx4MC5PQ", makeUlpCmdHdr) +STUB("ht-QXT3zGxo", sceAudioPropagationSystemGetRays) +STUB("ht48xu5DZTE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEEC2Ev) +STUB("ht8ZW3XjMB4", _ZN3sce2Np9CppWebApi12Leaderboards2V15Error14setReferenceIdEPKc) +STUB( + "htASCdAyFyk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEeqERKS9_) +STUB("htC03ZGwLRE", _ZN7WebCore19serializationForCSSERKNS_5SRGBAIfEE) +STUB( + "htIb5BLjc50", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEC2Ev) +STUB("htLZoQXxjEE", WKPreferencesGetShouldDisplaySubtitles) +STUB("htMj7UMeDAM", tls_init) +STUB( + "htP61Wpr3aQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("htS-NmfjiPE", _ZN23sceMetadataReaderWriter7StorageC1EjPi) +STUB("htUr5QI93SQ", GCC_except_table60) +STUB( + "htWcY2d4eLo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "htXRQYOT9qU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEE3getEv) +STUB("htdTOnMxDbQ", sceLibcPafMspaceIsHeapEmpty) +STUB("htfDiQ4Se9U", _ZN7Nicosia5Scene5StateC2ERKS1_) +STUB( + "hthso3YuHD0", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB( + "htmXZk9eXaI", + _ZN7WebCore6Editor14setCompositionERKN3WTF6StringERKNS1_6VectorINS_20CompositionUnderlineELm0ENS1_15CrashOnOverflowELm16EEEjj) +STUB("htn36gPnBk4", sceAgcAcbWaitRegMem) +STUB( + "htpocc70yN4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEC2EPS8_) +STUB("htyBOoWeS58", sceHttpsSetSslCallback) +STUB( + "hu6Ep5P34hQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEC2Ev) +STUB( + "huAFVySj7xk", + _ZNK7WebCore9CookieJar29cookieRequestHeaderFieldValueERKN3WTF3URLERKNS_12SameSiteInfoES4_NS1_8OptionalINS1_16ObjectIdentifierINS_19FrameIdentifierTypeEEEEENS8_INS9_INS_18PageIdentifierTypeEEEEENS_20IncludeSecureCookiesE) +STUB("huBRvuH7acw", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession15getJoinDisabledEv) +STUB("huEbdl0CB9s", _ZN3sce7Toolkit2NP2V29Challenge7Request21GetReceivedChallengesC1Ev) +STUB("huG4kfm8C4M", _ZN3JSC7Symbols26throwRangeErrorPrivateNameE) +STUB("huGvHam461g", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUserC2ERS5_) +STUB("huJ-2GzzNXs", _ZN3sce2np3ipc14service_client11WaitRequestEiij) +STUB("huNf91I8Tjg", JSStringCreateWithUTF8CString) +STUB("huP7Avrv4ug", WKBatteryStatusCreate) +STUB("huPnixU5dNc", WKAXObjectFrame) +STUB("huPt1cKM3Ws", _ZN3WTF21RefCountedLeakCounterD1Ev) +STUB("huXPyr6A9to", cairo_font_options_destroy) +STUB("huYBy9dp-BA", mono_aot_System_Xml_Linqunwind_info) +STUB( + "huYCCy39SJs", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "hubGzKjFZAo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEptEv) +STUB("hucTWmWOIJs", WKWebsiteDataStoreClearAdClickAttributionsThroughWebsiteDataRemoval) +STUB("huhq1pOR6o0", _ZThn24_N9Inspector22InspectorDebuggerAgent7disableERN3WTF6StringE) +STUB("hujPhSbtd4A", WKPageBeginPrinting) +STUB("hulfhT-chcs", _ZNK3sce2Np9CppWebApi7Matches2V121ResponsePlayerResults8getScoreEv) +STUB( + "huoedZ1CsgU", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "husDNXxMOzw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEED1Ev) +STUB("hutxxeqnA5Y", mono_image_get_public_key) +STUB( + "huzzTt6u9BQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEC2EPKS8_) +STUB( + "hv-IrQlq7Xo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEE3getEv) +STUB("hv1luiJrqQM", scePadInit) +STUB("hv4VQwjdIPE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE3endEv) +STUB( + "hv9RuDJIBJs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEED1Ev) +STUB("hvCXMwd45oc", sceNetConfigDelIfaddr6) +STUB("hvG6GfBMXg8", sceHttpAbortRequest) +STUB( + "hvGSp7rj2RU", + _ZN9Inspector24NetworkBackendDispatcher18removeInterceptionElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "hvL6gJZ7+I4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("hvMJpleSCrA", _ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForReadD2Ev) +STUB("hvMn0QJXj5g", sceUsbdResetDevice) +STUB("hvO1W2Ny8YU", _ZN3sce14IndirectCanvas6createEv) +STUB("hvU8aQYY5bI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEEcvbEv) +STUB("hvUfkUIQcOE", sceAgcDcbSetUcRegistersIndirect) +STUB( + "hvVDFVvv4jE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEneERKS9_) +STUB("hvaGpI+znWE", _ZN3sce7Toolkit2NP2V210Tournament7Bracket5resetEv) +STUB("hvaTjFV3IEU", _ZN3sce2Np9CppWebApi7Matches2V120ReportResultsRequest17setNpServiceLabelERKi) +STUB("hvch5hb-tM0", _ZN7WebCore9FrameView26setFixedVisibleContentRectERKNS_7IntRectE) +STUB( + "hvdIiYdTED4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEEC1ERKSA_) +STUB("hvdThnVvwdY", sceNpTrophyNumInfoGetTotal) +STUB("hvfrzWFz2aE", sceContentBinderEnd) +STUB("hvkSf-xTMwY", _ZNKSt9basic_iosIcSt11char_traitsIcEE4fillEv) +STUB("hvoLYhc4cq0", sceSystemServiceGetPlatformPrivacySetting) +STUB( + "hvpP-RgNrEA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEC1EPNS2_10LibContextE) +STUB("hvtNX8toVTk", _ZN9Inspector15RemoteInspector13startDisabledEv) +STUB( + "hvxV6aK3mc8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEC2EPNS2_10LibContextE) +STUB("hw-UPUK9T+w", _ZN3sce2np12HttpTemplateC2Ev) +STUB( + "hw3hjUUynZQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEixEm) +STUB("hw4Jl+IMDhA", _ZN7WebCore30InvertLightnessFilterOperation6createEv) +STUB("hw53AZLuXnI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEE7add_refEv) +STUB("hw5KNqAAels", sceNpRegisterNpReachabilityStateCallback) +STUB( + "hw9oKnfCVvg", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEiRNS2_10LibContextEPT_m) +STUB( + "hwBrJgkOHDA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEdeEv) +STUB( + "hwDMXYWsYpM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE17getResponseHeaderERSA_) +STUB( + "hwLDLtaPaJo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEaSERKS9_) +STUB("hwMqSlpTWCk", WKPageSetFixedLayoutSize) +STUB( + "hwUfyriuFNg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEC2Ev) +STUB("hwVKFtvDCU0", _ZN7WebCore11JSDOMWindow9setOpenerERN3JSC9ExecStateENS1_7JSValueE) +STUB("hwVSPCmp5tM", sceKernelCheckedReleaseDirectMemory) +STUB("hwc5T0-l0dY", _ZN7WebCore9HTMLNames40x_itunes_inherit_uri_query_componentAttrE) +STUB( + "hwh0ZfeWfC4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEE7add_refEv) +STUB("hwmGmiURq5E", T5hi) +STUB("hwokTGQKFLo", _ZN6icu_6713UnicodeStringaSERKS0_) +STUB("hwrHV6Pprk4", sceSslDeleteSslConnection) +STUB("hwsuXgmKdaw", sceFontStyleFrameUnsetEffectWeight) +STUB("hwuMsTWU4Kg", sceNpManagerIntUserSignout) +STUB( + "hwxZFkVezZ4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEneERKS9_) +STUB("hwzBUHtAZeE", sceGnmSysIsGameClosed) +STUB("hx+LIg-1koI", sceNpSignalingDeleteContext) +STUB("hx-ViZvrg5M", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V110AvatarSizeEEdeEv) +STUB("hx-fUBL49Js", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110PlayerTypeEEptEv) +STUB("hx-gaKoc9jw", + _ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRanking10getboardIdEv) +STUB("hx-gl40mLUA", _ZNK3sce2Np9CppWebApi11Matchmaking2V113ErrorResponse8getErrorEv) +STUB("hx14gMl7184", mono_aot_Sce_Vsh_Np_ServiceCheckerunbox_trampolines_end) +STUB("hx203o+MZSo", _ZN7WebCore12EventHandler10mouseMovedERKNS_18PlatformMouseEventE) +STUB( + "hx5FV1rA-wM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("hxEUBVTHcys", OCSP_resp_get0) +STUB("hxFXyDfqukU", sceCesMbcsStrToUtf32Str) +STUB( + "hxH+qfc3K2g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEptEv) +STUB("hxLqZDMmldk", sceVideoCoreMediaSourceGetSourceBufferEvent) +STUB("hxMhmz8IDCI", sceFsMlfsUmount) +STUB("hxNhFJr+QE4", _ZN3IPC10ConnectionD1Ev) +STUB( + "hxOYnjQgoI8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEplEm) +STUB("hxPWcZh4OZM", sceAudiodecDecode2Ex) +STUB( + "hxPZWUY138E", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBody5setToERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_23MemberWithMultiPlatformEEEEE) +STUB( + "hxYgOeUZPSY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("hxcr96px0ww", _ZN7WebCore16BlobRegistryImplC1ERKS0_) +STUB("hxk8yqFZG5E", _sceLibcMallocStats) +STUB( + "hxkI-hVH9m8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEaSERKS9_) +STUB( + "hxkhCvDitnc", + _ZN9Inspector21HeapBackendDispatcher10getPreviewElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "hxqz1++KT-g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEC2Ev) +STUB("hy2VjK1gbEU", uspoof_getRestrictionLevel_67) +STUB("hy3Hdr30GxA", _ZN7WebCore8SVGNames15markerWidthAttrE) +STUB("hyATMTuQSoQ", sceHmdInternalSetDeviceConnection) +STUB( + "hyCkdqwgnkA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEC2EPS6_PNS2_10LibContextE) +STUB("hyLvzF3HeWk", _ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody11statusIsSetEv) +STUB( + "hyMPzOm0en8", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessionsC2ERS5_) +STUB( + "hyOGKzdLM78", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("hyVLT2VlOYk", sceNgs2ParseWaveformData) +STUB("hyW5w855fk4", sceUserServiceGetGlsIsRecievedMessageHidden) +STUB("hyX853ocguo", mono_btls_x509_verify_param_copy) +STUB("hyc37UoQ8JY", _ZN3sce7Toolkit2NP2V211SharedMedia7Request14GetScreenshots17DEFAULT_PAGE_SIZEE) +STUB( + "hyc9aKZXL3E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("hydr+dle5x4", + _ZN7WebCore7Process13setIdentifierEN3WTF16ObjectIdentifierINS_21ProcessIdentifierTypeEEE) +STUB("hyeuycsBGsM", _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse15getMatchResultsEv) +STUB("hyf2MiwGHyk", _ZN3sce2Np9CppWebApi7Matches2V119RequestMatchResults8fromJsonERKNS_4Json5ValueE) +STUB("hyfPWjJB8pI", sceLibSecureCryptographySetContext) +STUB("hyjXKNKT-wo", uprv_strndup) +STUB("hyjfkpTHykQ", gTimeZoneFilesInitOnce_67) +STUB("hykD8qmO6XA", sceMbusTerm) +STUB("hykVSV23s78", _ZN3sce7Toolkit2NP18VoucherInputParamsC2Ev) +STUB( + "hylz-AF28vA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE3endEv) +STUB("hyrDIxugcKw", sceNpGlobalHeapTerm) +STUB("hyuye+88uPo", _sceNpIpcDestroyMemory) +STUB( + "hyvpaY7TDPs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEE7get_refEv) +STUB("hz-J3hohXW8", FT_QAlloc) +STUB("hz951X5xto4", + _ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody13unsetSortModeEv) +STUB("hzBAQGt4hMw", WKWebsiteDataStoreCreateNonPersistentDataStore) +STUB("hzFlLcA1s-M", sceLibSecureHashMessage) +STUB( + "hzFttIPH87I", + _ZN9Inspector17ScriptDebugServer27dispatchFunctionToListenersEMS0_FvPNS_19ScriptDebugListenerEE) +STUB( + "hzFwNQWwTHg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEE11release_refEv) +STUB( + "hzG7ZDn0QOc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("hzHPrqEtnxc", WKContextSetFontWhitelist) +STUB( + "hzKEwdix4x0", + _ZNK3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform6toJsonERNS_4Json5ValueEb) +STUB("hzLP5YxUxkQ", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEEplEm) +STUB( + "hzOqwrtq5Vs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB("hzPDO54KbKg", _ZN7WebCore9HTMLNames22onwebkitsourceopenAttrE) +STUB("hzQL-pMsVGU", _ZN7WebCore11JSDOMWindow9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("hzSGJKJYwI4", _ZNK7WebCore8Position25leadingWhitespacePositionENS_9EAffinityEb) +STUB("hzUzqWKl648", _WPrintf.qchar) +STUB( + "hzVdRAT0Dz0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE5abortEv) +STUB("hzX87C+zDAY", bsearch_s) +STUB("hzXY0jXSjeg", WKPageGetDebugPaintFlags) +STUB( + "hza4FIT2sK0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEC2Ev) +STUB("hzbEkdACzfU", _ZN3sce7Toolkit2NP2V210Tournament10TeamMemberaSERKS4_) +STUB("hzdms2JWXlo", _ZN3JSC20JSStringHeapCellTypeC2Ev) +STUB("hzgYdvXB+IU", _ZN3sce7Toolkit2NP2V28Presence7Request14DeletePresenceC1Ev) +STUB( + "hzhZcAPQ8p8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEE7add_refEv) +STUB("hzl0lqxzyDc", _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities5Error9getSourceEv) +STUB("hzlNtrJiHoo", u_strcmpCodePointOrder_67) +STUB( + "hzmsG0HwNcU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEE11get_deleterEv) +STUB("hzoYJvGvG1k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEC1ERKS7_) +STUB("hzrrtt44Xoc", rgctx_fetch_trampoline_rgctx_9_p) +STUB("hzsdjKbFD7g", _Getpwcostate) +STUB( + "hztLjb5lSc8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEE11get_deleterEv) +STUB("hzvhPNPRw0s", _ZNSt11regex_errorC1ENSt15regex_constants10error_typeE) +STUB( + "hzvhYv-xUbk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEEptEv) +STUB( + "hzzYMRBWurg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEC1EPKS8_) +STUB( + "i++NyQZ-ba4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEmmEv) +STUB("i+1kluDITlQ", sceLncUtilGetAppFocusedAppStatus) +STUB( + "i+3mbtdyA7c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEEC2ERKSA_) +STUB("i+4DJ+n0Ty8", _ZN3sce7Toolkit2NP2V210Tournament27TeamVsTeamTournamentDetailsC1ERKS4_) +STUB("i+7T-pa-QW4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEC2Ev) +STUB("i+FpxOCY-KU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEEC2Ev) +STUB( + "i+In6Gi0Fwo", + _ZN7WebCore21JSCSSStyleDeclaration6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_19CSSStyleDeclarationENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "i+MgFlti2vc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEdeEv) +STUB( + "i+MkwgBf+20", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB("i+NXjmvI3v0", _LMBCSData8_67) +STUB( + "i+R80I1fp9s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE6resizeEj) +STUB("i+SjlS9hatI", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container5getIdEv) +STUB("i+SoxJi4Xxk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEE7add_refEv) +STUB( + "i+T6SZR6+fM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEEdeEv) +STUB("i+TnnZSGaQQ", _ZN7CoreIPC15ArgumentEncoder6encodeEj) +STUB( + "i+UWpVYa4PE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE5beginEv) +STUB( + "i+W0YCm3fY0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEC1ERS7_) +STUB("i+cvx0UFWpY", _ZNK7WebCore12BlobRegistry18isBlobRegistryImplEv) +STUB( + "i+kJxSRBfvc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "i+mlLzDuuqU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEED2Ev) +STUB( + "i+nYhu79m6c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEC2EPKS8_) +STUB( + "i+ne9D93Fgc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEC1EPS8_) +STUB( + "i+nhXDVV2SQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEC2EPKS8_) +STUB("i+qWer1gZ8E", _ZN3sce7Toolkit2NP2V23TUS25AtomicAddToAndGetVariableD1Ev) +STUB("i+quCZCL+D8", sceHttpSetProxy) +STUB( + "i+r3hY9gs0A", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetInteger9Ev) +STUB( + "i+rbyTQr1Xc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEC1EPS8_) +STUB( + "i+u-xvmAa0U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEE11get_deleterEv) +STUB("i+u8LnBDcGs", __tsan_mutex_post_divert) +STUB("i+xzwYeeEtk", _ZN3sce2npeqERK16SceNpTitleSecretRKNS0_13NpTitleSecretE) +STUB("i+yshKd8V5k", _ZN7WebCore9HTMLNames7htmlTagE) +STUB( + "i+yt2w7jhKo", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE10setContextEPNS2_10LibContextE) +STUB("i-0d4C9DJrU", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_23NpSessionInvitationInfoEE7destroyEPS3_) +STUB("i-4PMEnIbqQ", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V122UploadDataResponseBody6toJsonERNS_4Json5ValueEb) +STUB( + "i-6vhiGlMwE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE5clearEv) +STUB("i-7v8+UGglc", _rtld_atfork_pre) +STUB("i-9iwOINIo4", _ZN3sce7Toolkit2NP12CategoryInfoC2Ev) +STUB( + "i-AG4lMzGP4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEED2Ev) +STUB( + "i-DcO6mpZ6o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE6resizeEj) +STUB("i-H8tE6wTqI", sceKernelGetDataTransferMode) +STUB("i-NcJi8Ub8E", _ZN3sce7Toolkit2NP2V210Tournament17TournamentDetails8deepCopyERKS4_) +STUB( + "i-TKaSxnTl0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEEcvbEv) +STUB( + "i-U839L1NC8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEE5resetEPS9_) +STUB("i-UZ3w5ajsc", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetAccountId2OnlineIdC2ERS5_) +STUB( + "i-V6yOXWGQo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEixEm) +STUB("i-XwZjw0OOY", _ZN3sce4Json12MemAllocator11notifyErrorEimPv) +STUB("i-beSY2PTnE", + _ZN7WebCore11FrameLoader17HistoryController33restoreScrollPositionAndViewStateEv) +STUB("i-d619hYnkg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEC1Ev) +STUB("i-dfSa1ITg0", Java_java_net_PlainDatagramSocketImpl_socketSetOption0) +STUB("i-esdF3Kz-g", sceLncUtilGetApp0DirPath) +STUB("i-iDZwQYeVM", _ZTVN9Inspector20InspectorTargetAgentE) +STUB( + "i-iEzNiWKUE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEppEv) +STUB("i-ifjh3SLBU", lgammaf) +STUB( + "i-kelscFt-I", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("i-lh1gEcVes", _ZN7WebCore9Scrollbar7mouseUpERKNS_18PlatformMouseEventE) +STUB( + "i-mo+ae4cOE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEppEi) +STUB( + "i-tHVh-3-uY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEC2EPS8_) +STUB( + "i00i5hEbWY4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEppEv) +STUB("i04K2pwkfUg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEEC2Ev) +STUB( + "i05rR6EBImo", + _ZN7WebCore19JSDOMMatrixReadOnlyC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_17DOMMatrixReadOnlyENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "i0DPoufn-nA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE8capacityEv) +STUB("i0DbE5x06fw", sceFaceTrackerReset) +STUB( + "i0ETvez6ips", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("i0Ipda+ehgc", _ZN7WebCore28InspectorFrontendClientLocal8SettingsD1Ev) +STUB( + "i0LMc9EkgGY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEC1Ev) +STUB("i0TT5qPqCYo", sceAppInstUtilCancelDataDiscCopy) +STUB( + "i0TUyG6mWy0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE5beginEv) +STUB("i0VnXM-C9fc", sceNgs2SystemRender) +STUB("i0Za8oZgEJE", _ZN3JSC24getFloat32ArrayClassInfoEv) +STUB( + "i0dgkA6Sels", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEEC1ERKSA_) +STUB("i0dr6grIZyc", sceNpWebApiSetMultipartContentType) +STUB("i0jRYI9yQtM", ulistfmt_openForType_67) +STUB("i0pah9149Bk", ucsdet_getName_67) +STUB("i0q6BKDSDQY", EC_KEY_set_private_key) +STUB("i0rf3jbDsCo", __rshift_D2A) +STUB( + "i0wvBV9BfnY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "i0yXqhPC7zY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEC2Ev) +STUB( + "i12sYg+-3Ao", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEC1Ev) +STUB("i13+SQPoMow", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11TusVariableEE7destroyEPS3_) +STUB( + "i1393UBWu1U", + _ZN3sce4Json11Initializer28setGlobalSpecialFloatHandlerEPFKNS0_5ValueENS0_12FunctionTypeEdPS3_PvPbES6_) +STUB("i180MNC9p4c", _ZNSt8_LocinfoC2EiPKc) +STUB( + "i1C+dJ7o+f8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEC2EPKS8_) +STUB("i1CJf7hDbXM", _ZN7WebCore9HTMLNames16adcampaignidAttrE) +STUB("i1D0nTVcCgk", sceMbusNotifyDriverEvent) +STUB("i1D4zws-Py8", mono_aot_Sce_Vsh_Orbis_CdlgServerNpCommerceplt_end) +STUB("i1GAPIM3DL8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEED1Ev) +STUB("i1ILma56NDA", sceIduUtilGetBgftProgress) +STUB("i1JK+VUlKWM", _ZN7WebCore11MediaPlayer8bufferedEv) +STUB("i1KnWrxf1c0", _ZNK7WebCore19BlurFilterOperation11movesPixelsEv) +STUB( + "i1Lt1JH4kyc", + _ZN3sce2Np9CppWebApi14SessionManager2V134PostGameSessionsSearchResponseBody15setGameSessionsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_17SearchGameSessionEEEEE) +STUB("i1N28hWcD-4", _Getctyptab) +STUB("i1OxuyxlRxw", _ZN3sce7Toolkit2NP2V28Matching7Request11SearchRooms10MIN_OFFSETE) +STUB( + "i1U3qWQ64lo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEmmEi) +STUB("i1VFpGXSPos", _ZN7WebCore19ResourceRequestBase22defaultTimeoutIntervalEv) +STUB( + "i1azVN-jwbs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEEC2ERSA_) +STUB("i1jyy49AjXU", sceAgcDcbWriteData) +STUB("i1kREW2pchs", scePthreadAtfork) +STUB("i1lhp0Wlu+k", sceNpPush2IsInit) +STUB("i1n4E6Vd2-M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEEmmEi) +STUB( + "i1p-MLPKkPc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("i1pLagnFZ5M", _ZN3WTF25createCanonicalUUIDStringEv) +STUB( + "i1pepi0Fy0M", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE8capacityEv) +STUB( + "i1u-KeoT9XM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEmmEi) +STUB("i1zdtddvwdE", _ZNK3WTF6String5splitERKS0_) +STUB("i2-8HA7oe4Q", _ZN3sce7Toolkit2NP15AppSTLAllocatorI13SceNpOnlineIdEeqERKS4_) +STUB( + "i21Bus9WYQA", + _ZN9Inspector23CanvasBackendDispatcher27setShaderProgramHighlightedElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "i220-g9KEfM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE5beginEv) +STUB( + "i27MG1Mksq0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEEC2ERKSF_) +STUB("i28bR54-QFQ", _ZN3sce2np20BufferedStreamReaderD0Ev) +STUB( + "i28jerFC84c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEC2ERKS7_) +STUB( + "i2GZgflkZ9A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEC2EPKS8_) +STUB("i2H+zidMP3Y", _ZNK3WTF8JSONImpl5Value9writeJSONERNS_13StringBuilderE) +STUB("i2KGykoRA-4", _ZN3sce2np4UserC2Ei) +STUB( + "i2SWqERjN1o", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE5emptyEv) +STUB("i2X3EwZCBis", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia11ScreenshotsEE3setEv) +STUB("i2ZMZKwZpWs", sceContentSearchGetTotalContentSize) +STUB("i2fNYHoTATU", mono_btls_x509_store_ctx_get_verify_param) +STUB("i2fbAs+av+g", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats12getBandwidthEv) +STUB( + "i2hCH7liNzQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("i2ifZ3fS2fo", scePthreadRwlockattrDestroy) +STUB("i2jh3WEeSy4", _ZNK3sce2Np9CppWebApi13InGameCatalog2V55Image6toJsonERNS_4Json5ValueEb) +STUB("i2jo27JK9ho", _ZN7WebCore17LibWebRTCProvidernaEm) +STUB("i2kbAbi3ozo", sceNpTrophy2SystemBuildGroupIconUri) +STUB("i2l3IYvQ9UE", _ZNK3sce4Json6Object5emptyEv) +STUB("i2nL46sS-fQ", _ZN7WebCore9HTMLNames7dirAttrE) +STUB("i2tSSjAemtQ", ubidi_getLevelAt_67) +STUB( + "i2w46g3jBfQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEC1EPS8_) +STUB( + "i2way+Mh9yc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEneERKS9_) +STUB("i2yN6xBwooo", _Getstr) +STUB("i30xyj0CsYc", bdjbg_alloc) +STUB("i35pMXdpi0U", WKBundleSetAllowUniversalAccessFromFileURLs) +STUB("i3E1Ywn4t+8", inet_ntoa_r) +STUB("i3E93n0yg1E", _ZN12video_parser5vpcom11LockDestroyEPN3paf6thread5MutexE) +STUB("i3ETrbVSEV8", _ZN7WebCore11DisplayList11FillEllipseD2Ev) +STUB("i3EU0fCS8j8", jpeg_read_header) +STUB("i3EY9pCdNEc", sceSlimglServerSetupSocketPairingTransport) +STUB("i3FLUIOYxDE", _ZN3sce7Toolkit2NP15CategoryInfoSubC2Ev) +STUB("i3HWvW35jao", sceKernelAprResolveFilepathsWithPrefixToIds) +STUB("i3KqKd7TWSk", mono_aot_System_Netunbox_trampolines) +STUB("i3OFbJGd4v4", _ZN3sce2Np9CppWebApi14SessionManager2V130RequestGameSessionMemberPlayerD2Ev) +STUB( + "i3OMwSLRSIc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEC2Ev) +STUB("i3Q5o0TwriM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEEmmEv) +STUB("i3RlS3yopbc", _ZNK7WebCore12SharedBuffer21combineIntoOneSegmentEv) +STUB("i3STzxuwPx0", sceRudpGetStatus) +STUB("i3V5DsrYqxg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce19ServiceEntitlementsEED2Ev) +STUB("i3VAeybXDww", _ZN7WebCore13GraphicsLayer15addChildAtIndexEPS0_i) +STUB("i3VEO7PAzDs", + _ZThn24_N9Inspector22InspectorDebuggerAgent19failedToParseSourceERKN3WTF6StringES4_iiS4_) +STUB( + "i3Wq7nO3Wwc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEED2Ev) +STUB("i3aHaHZtiqE", _ZN7WebCore16HTMLInputElement12setRangeTextERKN3WTF6StringEjjS4_) +STUB( + "i3aOk-FEIy8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEmmEi) +STUB( + "i3agTO5LQvw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEED1Ev) +STUB("i3i0348x6M8", _ZN3sce2Np9CppWebApi6Common8IteratorIlEmmEi) +STUB("i3jcNNLDrjA", _ZN9Inspector19InspectorAuditAgent11muteConsoleEv) +STUB( + "i3nkcKGLx8I", + _ZNK3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("i3rOwm9Ztbw", _ZN3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse15unsetNextOffsetEv) +STUB("i3tB6CuvHb4", scePthreadSetBesteffort) +STUB("i3veCjl-0Zs", _ZN3sce7Toolkit2NP2V27Ranking17SetGameDataResultaSERKS4_) +STUB( + "i3wH59hCTCw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "i3xO6P1YI70", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEptEv) +STUB("i410EL12bUs", _ZN3sce7Toolkit2NP2V23TUS25AtomicAddToAndGetVariableC1Ev) +STUB( + "i47oSM+6lQM", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeader37unsetxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB("i4FsTbO-+x8", u_strrchr) +STUB("i4GIz+JM7Fw", fuse_chan_new) +STUB( + "i4Gk1xrLyiI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB( + "i4H82IjtbGU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEC2Ev) +STUB( + "i4HzAXDKVv4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE3endEv) +STUB("i4J5FvRPG-w", _ZSt10_GetloctxtIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEiRT0_S5_mPKT_) +STUB("i4JbRsPTEPQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEEC2ERSA_) +STUB( + "i4NCdnECw2Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEppEi) +STUB( + "i4OMPeF8-1I", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3CSS8Grouping4TypeEEEN3WTF8OptionalIT_EERKNS6_6StringE) +STUB("i4OMjKIIJNQ", _ZTv0_n24_N12Mp4RetrieverD1Ev) +STUB("i4ToRAb++lE", _ZNK3WTF13DecimalNumber15toStringDecimalEPhj) +STUB( + "i4cDQi9Agqs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEeqERKS9_) +STUB("i4eT3QOzLNI", _ZNK7WebCore12SettingsBase15serifFontFamilyE11UScriptCode) +STUB("i4eu6D3sU+s", _ZNK7WebCore6Editor32isContinuousSpellCheckingEnabledEv) +STUB("i4kxni2dOq4", _ZN7WebCore14SchemeRegistry32canServiceWorkersHandleURLSchemeERKN3WTF6StringE) +STUB("i4lKtRTn-IE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEE7get_refEv) +STUB( + "i4n+EjJtASI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEneERKS9_) +STUB("i4nmZrhI6tY", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody8getValueEv) +STUB("i4tm7MB0ZK0", sceLncUtilIsPs2Emu) +STUB( + "i4tm8Xeej-Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEEaSERSA_) +STUB("i4u95ruk+R4", + _ZNK3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectator14getCustomData1Ev) +STUB( + "i4ud5O7OWWI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariable10initializeEPNS1_6Common10LibContextEPKciNS6_12IntrusivePtrINS3_28AddAndGetVariableRequestBodyEEE) +STUB("i4z2NMo9T3A", sceLibSecureHashGetDigest) +STUB("i4zxQPHkqJs", _ZNK7WebCore20ResourceResponseBase21expectedContentLengthEv) +STUB("i51FQZY--Sw", _ZN3sce7Toolkit2NP2V23TUS7Request12GetVariablesD1Ev) +STUB("i57N7J4ePKo", _ZN7WebCore17JSDOMRectReadOnly7destroyEPN3JSC6JSCellE) +STUB( + "i58WebcTLgU", + _ZN23sceMetadataReaderWriter15ParserInfoTable23registerParserInterfaceEjRKNS_15ParserInterfaceE) +STUB("i5CtXny8nS4", mono_aot_Sce_PlayStation_HighLevel_UI2Platformunbox_trampolines_end) +STUB("i5FMHLlAuCQ", _ZN7WebCore8JSDOMURL15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("i5FkWVx8+i4", + _ZN15AbstractStorage14FacebookFolder13ParseMetadataEPN23sceMetadataReaderWriter8MetadataES3_) +STUB("i5JGgnGVbKU", _ZN3sce2np14HttpConnection7CompareEiPKcS3_t) +STUB("i5Lqdyi9tqo", _ZN7WebCore11DisplayList9DrawImageD1Ev) +STUB( + "i5OvHqE9A2Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEneERKS9_) +STUB("i5TGs-ci6Ws", + _ZNK3sce2Np9CppWebApi14ConnectAccount2V212PartnerToken22accessTokenSecretIsSetEv) +STUB("i5TP5NLmkoQ", sceNpStrBuildHex) +STUB( + "i5Vb2CPtik0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEneERKS9_) +STUB("i5cXickNcHo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEE7add_refEv) +STUB("i5dYsnXsWoA", sceBackupRestoreUtilGetTitles) +STUB( + "i5gc4noksBE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE5beginEv) +STUB("i5mr2DobQXk", _ZN7WebCore21DiagnosticLoggingKeys29succeededLessThan20SecondsKeyEv) +STUB("i5paVISLR78", WKBundlePageInstallPageOverlay) +STUB( + "i5zy1wZ5aQU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEC1EPNS2_10LibContextE) +STUB( + "i6+3zRRQ+Bg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB("i6-sR91Wt-4", sceVideoOutSetBufferAttribute) +STUB( + "i60KjbhKwSc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEED2Ev) +STUB("i64ig3BF6f8", sceRegMgrGetIntInitVal) +STUB("i69T0TU539Q", sceRemoteplayNotifyOskStatus) +STUB( + "i6A6Rk-Mk2o", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEdeEv) +STUB("i6AaIeOsmqM", _ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_16SessionAttributeEE8max_sizeEv) +STUB("i6Bx31ccE6g", _ZNK9Inspector15ScriptCallStack7isEqualEPS0_) +STUB("i6C2aay444A", delegate_virtual_invoke_1) +STUB("i6EfO55+pwo", _ZN3JSC6JSLock12DropAllLocksC1ERNS_2VME) +STUB( + "i6Felv-xnik", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEC1EPNS2_10LibContextE) +STUB( + "i6QHWSXrDwI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEaSERKS7_) +STUB("i6UNdSig1uE", sceFontRenderCharGlyphImageVertical) +STUB("i6Uvq4whoaY", _ZN3sce7Toolkit2NP2V210Tournament17TournamentEventIdC2Ev) +STUB("i6XroQehjtY", mspace_create_ex) +STUB("i6bWR2E0+28", _ZZSt9MakefacetISt8numpunctIwESt8_LocinfoERT_T0_E3buf) +STUB("i6bfTi13ApA", sceAgcDriverSetWorkloadComplete) +STUB("i6cUWwgcRl4", isobmf_decoder_create) +STUB("i6d2xQkSR3M", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia10BroadcastsEE3getEv) +STUB("i6fpxNFB7QE", + _ZN3JSC12StringObject10putByIndexEPNS_6JSCellEPNS_14JSGlobalObjectEjNS_7JSValueEb) +STUB( + "i6g5c7WygyM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE6resizeEj) +STUB( + "i6gVXK9UsD8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE8copyFromERKS9_) +STUB( + "i6gbGDRSsFQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE7popBackEv) +STUB( + "i6obGUD9vv4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEC2ERKS7_) +STUB( + "i6rYDIAHdWg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEdeEv) +STUB("i6yROd9ygJs", sceHmdInternalGetVirtualDisplaySize) +STUB( + "i70bkHHmVSo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEC2EPNS2_10LibContextE) +STUB("i726T0BHbOU", _ZNSt11logic_errorD1Ev) +STUB( + "i78b7WvAIvI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEEC1EPS8_PNS2_10LibContextE) +STUB("i7AQH4VyfZQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEE11release_refEv) +STUB( + "i7Aicgym338", + _ZN3sce2Np9CppWebApi7Matches2V114SubtaskFactory6createEPNS1_6Common10LibContextEPKcNS3_13SubtaskStatusENS3_19SubtaskAvailabilityEPNS5_12IntrusivePtrINS3_7SubtaskEEE) +STUB("i7CzaSPFxi8", _ZN7WebCore15AffineTransform5scaleEd) +STUB("i7LkLAsV0WU", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyD1Ev) +STUB( + "i7OIbuavNHM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEptEv) +STUB("i7Rhg-uQBfU", _ZN3WTF18fastEnableMiniModeEv) +STUB("i7SWfyGf8OU", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112UpdateStatusEEneERKS7_) +STUB( + "i7Z6g69scLs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEmmEi) +STUB( + "i7ZMKcVSryY", + _ZNK3sce2Np9CppWebApi14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayer14getCustomData1Ev) +STUB( + "i7cauz05AQM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEeqERKS9_) +STUB("i7cyFlPyrPU", _ZN11GvMp4Parser6Common11Utf16ToUtf8ERKSbIwSt11char_traitsIwESaIwEEPSs) +STUB("i7d1DpkaDa4", _ZN3sce7Toolkit2NP2V27Ranking17SetGameDataResultC1ERKS4_) +STUB( + "i7do1ijyUqY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEEC2EPNS2_10LibContextE) +STUB( + "i7ef9pC1g2I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("i7fVobEoYBM", _ZN9Inspector21InspectorConsoleAgent13clearMessagesERN3WTF6StringE) +STUB("i7g8xe9GWbo", _ZN3sce7Toolkit2NP2V27Ranking17GetGameDataResult8deepCopyERKS4_) +STUB( + "i7gpsDhcuFg", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSession12getsessionIdEv) +STUB( + "i7iF-HQdAbw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEppEi) +STUB( + "i7iqArrECx8", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB( + "i7jpazytWC8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V135SetMultiVariablesRequestBodyFactory7destroyEPNS3_28SetMultiVariablesRequestBodyE) +STUB("i7nLEhhDYDg", _ZN7WebCore9HTMLNames22webkit_playsinlineAttrE) +STUB( + "i7nMfFJ7s0c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEC2EPKS8_) +STUB("i7q3H18UQKU", _ZN3sce7Toolkit2NP2V212EventsClient5EventD1Ev) +STUB("i7zkNpbpoZc", udatpg_addPattern_67) +STUB("i80IWKzGrCE", _ZThn16_N3sce2np11NpHttpTransD0Ev) +STUB("i83MRPOKCOY", _ZN3sce7Toolkit2NP2V212ActivityFeed14PlayedWithFeedD2Ev) +STUB( + "i88oabcaRzU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEixEm) +STUB("i8H75v2E-6g", _ZN8Gigacage11mallocArrayENS_4KindEmm) +STUB("i8HHFDiCd4U", WKContextTerminateServiceWorkers) +STUB("i8HJ9eMDt+c", _ZN3JSC7JSProxy19getEnumerableLengthEPNS_9ExecStateEPNS_8JSObjectE) +STUB("i8JkRxnCcTs", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE5emptyEv) +STUB( + "i8KYHlSYnoA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE6resizeEj) +STUB("i8MGif9wksg", _ZThn136_NK7WebCore16HTMLMediaElement6pausedEv) +STUB("i8P42ULtalg", mono_native_thread_join) +STUB("i8S8oWIuKv8", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle13unsetPerGenreEv) +STUB("i8TJdO9d7gw", jinit_c_main_controller) +STUB("i8UmXTSq7N4", sceNpCmpNpId) +STUB("i8bSjnP80t0", WKContextResumeHTMLTiles) +STUB("i8djQf+FnoY", udata_open) +STUB( + "i8eDtyMfmb8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEC2Ev) +STUB("i8eZJ-Pcqfc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_17TitleCloudStorage2V19ConditionEEneERKS7_) +STUB( + "i8oedJj9hrA", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEEiRNS2_10LibContextEPT_m) +STUB( + "i8uisdi+H+4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEdeEv) +STUB( + "i8vpGuctUTM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("i8x4exnuJ8o", sceApplicationRequestToChangeRenderingMode) +STUB("i9+nYhSntBI", scePerfTracePmDelete) +STUB("i9-IpmJyVqQ", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEEixEm) +STUB("i9-gPpLwM9k", mono_g_hash_table_destroy) +STUB( + "i90frynEtX0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE3endEv) +STUB( + "i93wq0Z3w2E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEC1ERKS7_) +STUB("i99STC4x3Xc", sceAvControlChangeOutputLayout) +STUB( + "i99kNag3uCU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("i9A0GOpxryc", _ZN3sce3pss4core9PsmObjectD1Ev) +STUB( + "i9AlAUY-9aU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEppEi) +STUB("i9AvJK-l5Jk", SSL_connect) +STUB( + "i9CADO9XvL8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE5beginEv) +STUB( + "i9GYPxbIRKk", + _ZN15AbstractStorage10YoutubeAPI21createUploadParamJsonERKSbIcSt11char_traitsIcENS_8StlAllocIcEEES7_S7_S7_RS5_) +STUB( + "i9HM4NJtHOQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi35ParameterToSetGameSessionProperties40getpatchGameSessionsSessionIdRequestBodyEv) +STUB( + "i9Jo2FOFLy4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "i9LgelCNPy0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEC2EPKS8_) +STUB("i9NM4gcpZhk", sceNpPush2TriggerEmptyUserEvent) +STUB( + "i9PsgLbFqtE", + _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody20getInvitableUserTypeEv) +STUB("i9R3RkZTISs", Java_java_lang_Double_doubleToRawLongBits) +STUB( + "i9U5z1guQRw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEE7add_refEv) +STUB("i9bcaaY-IjI", JVM_GetArrayElement) +STUB( + "i9dKLzeDR0w", + _ZN3sce2Np9CppWebApi12Leaderboards2V137GetBoardDefinitionResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_30GetBoardDefinitionResponseBodyEEE) +STUB("i9dPKYiYaM0", _ZNK7WebCore18PlatformTimeRanges3endEjRb) +STUB( + "i9dvDcd3-Nk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE7popBackEv) +STUB("i9g8BQREIek", _ZSt9use_facetISt10moneypunctIwLb0EEERKT_RKSt6locale) +STUB( + "i9jd0wnRvvE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEmmEv) +STUB("i9kZk+hqWP0", delegate_virtual_invoke_imt_22) +STUB("i9kfLzFhtgs", _ZN4Manx6CookieC1Ev) +STUB("i9mhafzkEi8", sceHttpSetInflateGZIPEnabled) +STUB( + "i9pBBv2NK+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEE11get_deleterEv) +STUB( + "i9rSKgGEPqE", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEEC2ERKSC_) +STUB("iA-DdobUen8", scePadVrControllerReadState) +STUB( + "iA-vC0yvhuU", + _ZN9Inspector26InspectorBackendDispatcherC2ERNS_17BackendDispatcherEPNS_33InspectorBackendDispatcherHandlerE) +STUB( + "iA0CYngvzZ0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE8pushBackERKS8_) +STUB("iA282fSjF30", + _ZN15AbstractStorage14TwitterContent13writeExternalESt10shared_ptrINS_7ContentEE) +STUB("iA5fgZroSXQ", sceDtcpIpActivateAsync) +STUB( + "iA7SeqGvQH4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEED2Ev) +STUB("iAIYn4oAWvI", _ZNK3sce4Json5Array8iteratorptEv) +STUB("iAIdHlP7lYg", _ZN3sce7Toolkit2NP13SessionMemberC1Ev) +STUB( + "iALcMz+hdPQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEptEv) +STUB("iAMvRxEvs5o", sceDebugSuspendThread) +STUB("iAN-9pPHZSE", _ZN15AbstractStorage14StorageManager11GetInstanceERNS_12MemAllocatorEPv) +STUB( + "iASwvwwuix0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEE5resetEPS6_) +STUB( + "iATcGLFMLw4", + _ZN3sce4Json5ValueC2ERKSt3mapISbIcSt11char_traitsIcENS0_8StlAllocIcEEES1_St4lessIS7_ENS5_ISt4pairIS7_S1_EEEE) +STUB( + "iAV45TteJFY", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V135FrequentlyMutedInGameMetricsFactory7destroyEPNS3_28FrequentlyMutedInGameMetricsE) +STUB( + "iAbipH2J-UE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEmmEi) +STUB( + "iAdtLLd1+os", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE7reserveEi) +STUB("iAlTedwf89k", mono_domain_get) +STUB("iAlTxdAl1BU", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead14setCustomData2EPKvm) +STUB( + "iAnfNJv8WMM", + _ZN7WebCore21JSRemoteDOMWindowBaseC1ERN3JSC2VMEPNS1_9StructureEON3WTF6RefPtrINS_15RemoteDOMWindowENS6_13DumbPtrTraitsIS8_EEEEPNS_13JSWindowProxyE) +STUB( + "iAsa54840JE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEC2ERS7_) +STUB("iAzK7QLDpdA", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEEppEv) +STUB("iB+3lLjBUm4", _ZN3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResults7setRankERKi) +STUB("iB+pwrbrNqY", __tsan_get_report_loc) +STUB("iB4zET-Oj+o", WKPageGroupGetTypeID) +STUB("iB7PYeV7Ng8", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V16Rating13setActivityIdEPKc) +STUB( + "iBCCBFFkKhk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE4sizeEv) +STUB("iBFmSwQUIHw", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V15GroupEEmmEi) +STUB( + "iBGfXfHtWVA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE5beginEv) +STUB("iBI2QXRVzEY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEaSERS7_) +STUB("iBQ2omlTuls", sceKernelIccSetBuzzer) +STUB("iBQ6lAQw5Hw", _ZN9Inspector31ConsoleBackendDispatcherHandlerC2Ev) +STUB("iBWc6Yv7Eck", udata_printError_67) +STUB( + "iBZxqPH4DX8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("iBbwD8vxSEk", sceVisionManagerRequestFindUserInRegion) +STUB("iBcl+4lcTpg", + _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody20unsetUpdatedDateTimeEv) +STUB("iBcuhiwKsk0", _ZN3sce7Toolkit2NP2V23TUS16FriendsVariablesaSERKS4_) +STUB("iBdEFRdfpgg", _ZN3sce2np18HttpConnectionPool7DestroyEv) +STUB("iBdEZ1Gqa1c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEmmEi) +STUB("iBg1hsOJr3U", _ZN3sce7Toolkit2NP2V24Core12abortRequestEi) +STUB( + "iBkviyOntFI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE7reserveEi) +STUB("iBrS+wbpuT0", _ZNSt14numeric_limitsIaE9is_signedE) +STUB("iBrTJkDlQv8", _FTan) +STUB( + "iBrmGRPIUms", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEptEv) +STUB( + "iBrwE6aoSz4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEppEv) +STUB("iBt3Oe00Kvc", sceGnmFlushGarlic) +STUB("iByZOVzfSQI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEEC1ERS7_) +STUB( + "iC031JRie60", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEC1EPS8_) +STUB( + "iC2WgHd9ARg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "iC3aR2dPa+I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE8capacityEv) +STUB("iC8g+ZWxbFE", _ZN9Inspector14ConsoleMessageD1Ev) +STUB("iCEovrlyzY0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEED2Ev) +STUB("iCO804ZgzdA", sceGnmValidateCommandBuffers) +STUB( + "iCOVzZFhl-c", + _ZN3sce2Np9CppWebApi11UserProfile2V119BasicProfileFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_12BasicProfileEEE) +STUB( + "iCQddncmbEQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEplEm) +STUB("iCT-r3HVDuo", YGDisplayToString) +STUB("iCV57pdH-fI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEE5resetEPS6_) +STUB("iCWgjeqMHvg", _ZNKSt7codecvtIcc9_MbstatetE10do_unshiftERS0_PcS3_RS3_) +STUB("iCb9Z3+1hTY", _ZNK7WebCore9FloatSize18constrainedBetweenERKS0_S2_) +STUB( + "iCbBHY7CPWk", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi35ParameterToSetGameSessionProperties12getsessionIdEv) +STUB( + "iCbvNIQ8xGI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEC2EPS8_) +STUB("iCeewai3enc", _ZN3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResults9setTeamIdEPKc) +STUB( + "iCeuW2ZzQlM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEmmEi) +STUB("iCjHv43B15Q", _ZN7WebCore9JSElement15subspaceForImplERN3JSC2VME) +STUB( + "iCk0S5W+gew", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEEC1ERSA_) +STUB("iCl-Z-g-uuA", asinhl) +STUB("iCoD0EOIbTM", _ZNSt7_MpunctIwE5_InitERKSt8_Locinfob) +STUB("iCoS6S-NtEw", _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead15unsetMaxPlayersEv) +STUB("iCq5xW5KQW4", sceNpWordFilterCreateRequest) +STUB("iD+dQKaJuU8", _ZNK3sce2Np9CppWebApi12Leaderboards2V14User12getAccountIdEv) +STUB("iD-q2ef7s5Y", + _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_19TextTrackCueGenericE) +STUB("iD7BvlUpd2Y", _ZN3sce2np10JsonStringC2EP14SceNpAllocator) +STUB("iD7Eml2jhNI", _ZN3sce7Toolkit2NP2V28Matching7Request11SetRoomInfo22MAX_SIZE_LOCALIZATIONSE) +STUB( + "iD7XhUEzdo8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEneERKS9_) +STUB( + "iDBnkF5JTKw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEE7add_refEv) +STUB( + "iDGjTvynVug", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEptEv) +STUB("iDGnKo+knvQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEED1Ev) +STUB("iDGttQg4wC4", ucnv_load_67) +STUB("iDILvJ0bEi8", _ZN7WebCore11MathMLNames8msrowTagE) +STUB("iDNRvzAl0QU", ty_range_tab) +STUB( + "iDNpB6b+02I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEE5resetEPS9_) +STUB("iDPs63X-Cl8", _ZN7WebCore25DropShadowFilterOperation5blendEPKNS_15FilterOperationEdb) +STUB("iDQDNqqmNu0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE5beginEv) +STUB( + "iDQFvRN4qzU", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("iDTIi7G3YxU", _ZN2GK9PlayerPSND1Ev) +STUB("iDZS+QeOv2c", YGNodeGetOwner) +STUB( + "iDgjQl3jTa8", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi8getStatsEiRKNS4_19ParameterToGetStatsERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_5StatsEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("iDlso2ZrQfA", sceNpManagerIntGetServerError) +STUB("iDm0dQLmphc", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE3endEv) +STUB( + "iDpzVcFu--Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE5eraseENS2_8IteratorIS6_EERS9_) +STUB("iDrKOYToDe0", _Z28sendIpmiInvokeAsyncMethodCmdiiiiijmPKN4IPMI8DataInfoEib) +STUB( + "iDtGSGdciIs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE5clearEv) +STUB( + "iDw3BMrUz8U", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "iDwYQdCS8Fg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEmmEi) +STUB("iE3CMaB0t70", WKDoubleGetTypeID) +STUB("iE3yMQkaOXM", _ZN7WebCore8SVGNames5kAttrE) +STUB( + "iE6RBJnCRWo", + _ZN3sce2Np9CppWebApi13InGameCatalog2V524ContentDescriptorFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_17ContentDescriptorEEE) +STUB("iE8QHg0jx-k", _ZNK3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator11getPlatformEv) +STUB("iE8trxPKnAg", sceAudioOut2UserGetSupportedAttributes) +STUB( + "iE9udjHphXo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEEdeEv) +STUB("iEE4nhybTTw", BN_free) +STUB("iEEU+O+wPfM", sceVoiceChatGetChannelMemberVoiceConnectionState) +STUB("iEF0IgrHEbI", mono_object_get_domain) +STUB( + "iEI619xwWcc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEED1Ev) +STUB("iEIYS2CqT9g", _ZN7WebCore9FrameView32recalculateScrollbarOverlayStyleEv) +STUB("iELLmz0gVUw", _Z7readAlliPvm) +STUB("iEMK+BtIb2Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE7reserveEi) +STUB("iENy8SuPHL0", _ZNK7WebCore18AdClickAttribution8toStringEv) +STUB("iEOKkrKq5S0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEEC1EPKS6_) +STUB( + "iEWH8rdIqqM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("iEXIEzTjNtI", sceAutoMounterClientTerm) +STUB( + "iEYP9uYObpA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEED2Ev) +STUB("iEe61PaW1pg", ucnv_setFallback) +STUB("iEfUiWkJ3PI", g_VideoOutBaseModeInitialWidth) +STUB("iEjqwmJWL3w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEC2Ev) +STUB("iErIFNXEVDM", sceVshAvcapSetInfo) +STUB( + "iEylaLQJwt4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("iEypYwTA7F0", WKCookieManagerDeleteAllCookiesModifiedAfterDate) +STUB("iEyzMri99mw", mono_aot_I18N_Rareunwind_info) +STUB("iF1iQHzxBJU", sceLibcMspaceMemalign) +STUB( + "iF39BlpQRd8", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi44ParameterToPatchGameSessionsSearchAttributesC1ERS5_) +STUB( + "iF4X5DjZ4y0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEEaSERKS9_) +STUB( + "iF9LIn+GOLM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB( + "iFGIhSUd7o4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "iFOK1QAKMJE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEppEi) +STUB("iFOXfoXRHFQ", _ZN3sce2np13JsonDocParserD1Ev) +STUB("iFPjeNTgyi4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEED1Ev) +STUB( + "iFQRVwFLHxg", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_11DOMDebugger19EventBreakpointTypeEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB("iFQi1PTTbIo", uhash_removeAll) +STUB( + "iFRxhj7ZblQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEED1Ev) +STUB("iFTayJ+haQQ", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13SessionMemberEEeqERKS4_) +STUB( + "iFUVaT4gwiU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEppEi) +STUB( + "iFWiAkkNYY4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE5beginEv) +STUB( + "iFYx9YGBT3E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEE7add_refEv) +STUB( + "iFavDBbOb8o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEED2Ev) +STUB( + "iFe4eVXsvoY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "iFeHm2+Yq54", + _ZN3sce2Np9CppWebApi14IdentityMapper2V333PsnWebError_error_missingElementsC2EPNS1_6Common10LibContextE) +STUB( + "iFglFV7vd5U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEE7add_refEv) +STUB( + "iFglXzaYC1c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("iFgpvfqTaBc", _ZNSt7_MpunctIwE8_GetvalsIwEEvT_PK5lconv) +STUB( + "iFim9ITKi0w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEEC1ERSA_) +STUB("iFirFzgYsvw", sceGnmGetLastWaitedAddress) +STUB( + "iFm1siY0U38", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody35setComparedLastUpdatedUserAccountIdEPKc) +STUB("iFmwQVrfl0g", mono_aot_System_Windowsjit_code_end) +STUB( + "iFrIoip3wfs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEaSERS8_) +STUB( + "iFuEUxIttvs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE3endEv) +STUB("iFzk8ZtVW48", il2cpp_thread_get_top_frame) +STUB("iFzwhERLa6A", + _ZN7WebCore21UserContentController16removeUserScriptERNS_15DOMWrapperWorldERKN3WTF3URLE) +STUB( + "iFzyLn8BgSE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "iG+yTJHAgeo", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB( + "iG-QAMGs5UQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEEC1Ev) +STUB("iG0D3RxoxaQ", monoeg_g_spaced_primes_closest) +STUB("iG0gNTcPCY4", _ZN3JSC17hasIteratorMethodEPNS_14JSGlobalObjectENS_7JSValueE) +STUB( + "iG1+PK-uwdc", + _ZN3sce2Np9CppWebApi14SessionManager2V128ResponseGameSessionSpectatorC2EPNS1_6Common10LibContextE) +STUB("iG1HgCBlL4g", g_strdelimit) +STUB("iG2Ii9QDtE4", _ZN3JSC7Symbols20fontcolorPrivateNameE) +STUB("iG3Y7R3AFOM", WKBundlePageFlushPendingEditorStateUpdate) +STUB("iG6VTE9CEiY", _ZN7WebCore9GLContextD1Ev) +STUB( + "iG7bw2InTPk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE10setContextEPNS2_10LibContextE) +STUB("iG8LUREfhzo", _ZN3sce7Toolkit2NP2V27Session7Request6SearchD2Ev) +STUB("iG8aKd0W0oc", sceMbusSetAppModuleFocus) +STUB( + "iGCUaKs4V88", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEEC1ERSA_) +STUB("iGCw9Sj0aS0", _ZN3sce2Np9CppWebApi7Matches2V126RequestTeamMemberStatisticD1Ev) +STUB("iGDtrGsc8Tk", _ZN7WebCore9HTMLNames8hrefAttrE) +STUB( + "iGET4qAmeVQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEppEi) +STUB("iGJa-SNy2cI", _ZN3sce7Toolkit2NP2V28Matching7Request10CreateRoom19MAX_SIZE_FIXED_DATAE) +STUB( + "iGL5CH8MsA4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEC2Ev) +STUB("iGMt7x5rLyE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEEptEv) +STUB("iGNNpDDjcwo", sceHmdReprojectionUnsetDisplayBuffers) +STUB( + "iGNQ7R33THQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE5beginEv) +STUB("iGOyddQ2L6k", rgctx_fetch_trampoline_rgctx_43) +STUB("iGUUBdVDChU", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession8fromJsonERKNS_4Json5ValueE) +STUB("iGUwbkjTVPk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEptEv) +STUB("iGW9BzHCnmg", + _ZN3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallback9setslotIdEPKc) +STUB( + "iGXsF+F8aAU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEED2Ev) +STUB( + "iGcBv5np1XY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE6resizeEj) +STUB("iGht1d+2tOw", mono_string_to_utf8_checked) +STUB("iGjM0lOS1Ww", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEEC1ERS7_) +STUB( + "iGjW-i-orgg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEEC2EPS8_PNS2_10LibContextE) +STUB("iGjsr1WAtI0", pthread_rwlock_rdlock) +STUB("iGpuaBFQroQ", sceFiosCachePrefetchFH) +STUB( + "iGrvptmhYRI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("iGuym9i4NcU", SSL_ctrl) +STUB("iGxZRUg9NPM", _ZNK3JSC9ClassInfo35hasStaticSetterOrReadonlyPropertiesEv) +STUB("iGxaIAeHSDc", _ZThn16_N9Inspector19InspectorAuditAgent8teardownERN3WTF6StringE) +STUB("iGyv1JRGMwM", jinit_color_converter) +STUB( + "iH+2q9T-r3U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEE7add_refEv) +STUB("iH+oMJn8YPk", vwarnx) +STUB( + "iH+y2MA-Xlo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEeqERKS9_) +STUB("iH4YAIRcecA", acosl) +STUB("iH5WG2Vw97w", WKPreferencesSetPluginsEnabled) +STUB( + "iH784qtXzDM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE5emptyEv) +STUB( + "iH9M7oi18XE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEE3getEv) +STUB("iH9TsMsEJIE", _ZN3sce3pss5orbis5video14VideoPlayerVcs11IsBufferingEv) +STUB("iHBiYOSciqY", SSL_acceptConnectionCommon) +STUB("iHFQ4ROnqJ8", g_getenv) +STUB("iHI3fuoqy3I", jpeg_calc_jpeg_dimensions) +STUB("iHILAmwYRGY", _ZNSt15underflow_errorD0Ev) +STUB( + "iHIVAXlBZtg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEptEv) +STUB("iHKuL5BOd4g", _ZNK7WebCore18AdClickAttribution17wasConversionSentEv) +STUB("iHLFpqBhK04", delegate_virtual_invoke_imt_15_p) +STUB("iHN-+NnVfn8", sceIduUtilLaunchTitle) +STUB("iHPXwHi7Qwk", WKPagePostMessageToInjectedBundle) +STUB("iHVPBLE8qV4", _ZN7WebCore16VisibleSelectionC2ERKNS_15VisiblePositionES3_b) +STUB("iHZb2839dBc", _ZGVNSt8numpunctIcE2idE) +STUB( + "iHgcz5ibC3g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEE11release_refEv) +STUB( + "iHiHnotU9PM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEmmEi) +STUB( + "iHic8WAGTY8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("iHk+QoIFSj4", _ZN3sce7Toolkit2NP2V212ActivityFeed13ButtonCaption12TEXT_MAX_LENE) +STUB("iHlMUQD31Hk", _ZN8meta_gen13JpegRetriever8FinalizeEv) +STUB("iHmve3gZEgY", _ZNK3sce2np9JsonArray7GetItemEiPNS1_4ItemE) +STUB("iHnPdg0PwlQ", _ZNK7WebCore3URL10isBlankURLEv) +STUB("iHpwI4HGi78", Java_com_sony_bdjstack_javax_media_controls_SoundManager_setPanningLR) +STUB("iHtlQT13Zwo", _ZNK7WebCore8Document17useDarkAppearanceEPKNS_11RenderStyleE) +STUB("iHuOWdvQVpg", scePadSetLightBarForTracker) +STUB("iHy3JtWSBGs", _ZN3sce7Toolkit2NP2V210Tournament10TournamentC2Ev) +STUB( + "iI+Ys07F+yc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("iI-6-nvkMic", mono_aot_Sce_Vsh_SystemLoggerWrapperunbox_trampolines_end) +STUB( + "iI-ar6GwPz8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEdeEv) +STUB( + "iI0BxEZt900", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEEC1Ev) +STUB( + "iI2sVE9kBcY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEC1ERKS7_) +STUB("iI3IAf+GFJo", _ZN7WebCore20ResourceLoadObserver10clearStateEv) +STUB( + "iI4El5rK42E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE8pushBackERKS8_) +STUB( + "iI4lTcuuxfY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEeqERKS9_) +STUB("iI6kGxgXzcU", _getprogname) +STUB("iINSFzCIaB8", sceHmdInternalGetHmuOpticalParam) +STUB("iIPTNDG3+pw", Java_java_awt_GnmGraphicsConfiguration_createCompatibleImageType) +STUB( + "iIRsvWBdpKw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("iIU4n0aWdMk", + _ZThn16_N9Inspector20InspectorTargetAgent19sendMessageToTargetERN3WTF6StringERKS2_S5_) +STUB("iIeJWwhbaG0", _ZN7WebCore16VisitedLinkStoreC2Ev) +STUB("iIfTXvh1hiM", _sceUltReaderWriterLockCreate) +STUB("iIiC1HlEOac", _ZN7WebCore12PrintContextD2Ev) +STUB( + "iIlgQkl63B4", + _ZN7WebCore12SettingsBase44setMediaContentTypesRequiringHardwareSupportERKN3WTF6VectorINS_11ContentTypeELm0ENS1_15CrashOnOverflowELm16EEE) +STUB("iIlt6mYPHKY", _ZN3sce7Toolkit2NP2V23TUS7Request16TusVariableInputC2Ev) +STUB("iIpWFcquO3o", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament5EventEEC1Ev) +STUB("iIs5AgbLn-E", _ZN7WebCore18JSHTMLMediaElement11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("iIsF4NzYgD4", glOrbisMapTextureResourceSCE) +STUB("iIuPmcuDIMQ", _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeIPcPvEED2Ev) +STUB("iIy-Tl+Ctug", + _ZN7WebCore23ScaleTransformOperationC2EdddNS_18TransformOperation13OperationTypeE) +STUB( + "iJ-BBq+t3cs", + _ZN3sce7Toolkit2NP2V28Commerce25consumeServiceEntitlementERKNS3_7Request25ConsumeServiceEntitlementEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("iJ3Jr09A3Dc", _ZN3sce7Toolkit2NP2V24Core18CustomResponseData5resetEv) +STUB( + "iJ5THu2J+9w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEEC1Ev) +STUB( + "iJ6wmI0tj0o", + _ZN7WebCore11DisplayList11DrawPatternC1ERNS_5ImageERKNS_9FloatRectES6_RKNS_15AffineTransformERKNS_10FloatPointERKNS_9FloatSizeERKNS_20ImagePaintingOptionsE) +STUB("iJEDK60-2p4", _ZN3sce7Toolkit2NP2V23TUS7Request10DeleteDataD1Ev) +STUB( + "iJN1oqFOLZo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEEcvbEv) +STUB( + "iJNOa1NUHrU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEppEv) +STUB( + "iJT9rxeRQT0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEC2Ev) +STUB( + "iJTWb8+9oM0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("iJVjfm64Qro", _ZN3JSC14SourceProviderD2Ev) +STUB("iJVourQXpgQ", _ZNK7WebCore11MediaPlayer18maxFastForwardRateEv) +STUB("iJb1jW0mR20", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEEaSERS6_) +STUB("iJbG4E+cTL4", png_malloc) +STUB( + "iJdHVLLxRhk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("iJgcFywfmnA", _ZN7WebCore9MediaList12appendMediumERKN3WTF6StringE) +STUB("iJlvTqyPypU", sceCesIso2022StrToUtf8Str) +STUB("iJmD+-6YH9U", _ZNK7WebCore11FontChanges18createEditingStyleEv) +STUB("iJmd2eVDaQ0", unorm_isNormalized_67) +STUB("iJnvgZ6lB7g", mono_aot_Sce_Vsh_DiscPlayerunbox_trampolines_end) +STUB("iJqgX+Ecq98", sceDataTransferTargetAbortTransfer) +STUB("iJrakPWgKco", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEE3getEv) +STUB("iJvZL9l47IE", __ULtod_D2A) +STUB( + "iJzRcH9ysiM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEptEv) +STUB("iK-ol3fZ1vk", _ZN3JSC8JSObject9classNameEPKS0_) +STUB("iK6DVkRsAzU", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEEmmEi) +STUB("iKB76ko-8wo", mono_aot_Mono_Cairomethod_addresses) +STUB( + "iKC2XVEAgjE", + _ZN9Inspector15AsyncStackTraceC1EON3WTF3RefINS_15ScriptCallStackENS1_13DumbPtrTraitsIS3_EEEEbNS1_6RefPtrIS0_NS4_IS0_EEEE) +STUB( + "iKCxlRmq3ls", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEixEm) +STUB( + "iKI4LHl5ZLo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEE11get_deleterEv) +STUB("iKJMWrAumPE", getargc) +STUB( + "iKLF27oG6MY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEED2Ev) +STUB("iKNXKsUtOjY", sceAppMessagingTryGetEventFlag) +STUB( + "iKU2wkjlrh8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "iKUqoJl4dmc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEixEm) +STUB( + "iKVevPSs0CQ", + _ZN7WebCore14SchemeRegistry62registerURLSchemeAsAllowingLocalStorageAccessInPrivateBrowsingERKN3WTF6StringE) +STUB("iKaWKC4Q-vQ", scePssKeyboardGetKeyCode) +STUB( + "iKcASiCIBwk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB("iKdeGTEov3w", fuse_parse_cmdline) +STUB("iKh5XAJ3Htw", _ZN7WebCore29PerspectiveTransformOperationC1ERKNS_6LengthE) +STUB("iKuhuLF+ZBg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEE11release_refEv) +STUB("iKyTy1vaXT0", _ZN2GK9PlayerPSNC1Ev) +STUB( + "iLDCuvDRqhQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEC1EPS6_PNS2_10LibContextE) +STUB( + "iLEIU5+nFms", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("iLKz4+ukLqk", sceSslDisableOption) +STUB("iLM02STS8N4", + _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchStatus13isInitializedEv) +STUB("iLMIGEcXCJg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEC1Ev) +STUB("iLMc5QUOPvQ", unum_getAvailable_67) +STUB("iLPBv-4XD4Q", vzone_openData_67) +STUB( + "iLRgqjtFANA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEaSERKS7_) +STUB("iLSavTYoxx0", _ZTISo) +STUB( + "iLXjdTZ7Fxs", + _ZThn16_N9Inspector22InspectorDebuggerAgent18getFunctionDetailsERN3WTF6StringERKS2_RNS1_6RefPtrINS_8Protocol8Debugger15FunctionDetailsENS1_13DumbPtrTraitsIS9_EEEE) +STUB( + "iLakkVdPya4", + _ZN15AbstractStorage14StorageManager21NotifyStorageAttachedERKSbIcSt11char_traitsIcENS_8StlAllocIcEEENS_11ServiceTypeE) +STUB("iLh0dpxrYZ0", + _ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer14unsetJoinStateEv) +STUB("iLjBYjFaXh4", _ZN3JSC7JSProxy21deletePropertyByIndexEPNS_6JSCellEPNS_9ExecStateEj) +STUB( + "iLnckwH2WBQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "iLpkroi3tZ0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "iLv9DrMjUZM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "iLwizjPw3lw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEC2ERS7_) +STUB("iLxIuu5Xs2A", sceFsErriCtl) +STUB("iLxnuSroJHg", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V15Owner14accountIdIsSetEv) +STUB( + "iM+wcT1ivUg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEaSERKS9_) +STUB("iM-jh22O6cI", RAND_bytes) +STUB( + "iM0VGnx+qag", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEC2EPS8_) +STUB( + "iM1TrHFGNy4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEppEv) +STUB("iMCa6lQRvsY", JNU_ThrowClassNotFoundException) +STUB( + "iMF55LON6eI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEE3getEv) +STUB( + "iMOkL5ve6Uo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEptEv) +STUB("iMQarT42Hpk", ures_getIntVector) +STUB("iMS-OfomYug", _ZN3JSC7Symbols14rawPrivateNameE) +STUB( + "iMWiVXW8FiE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEmmEv) +STUB( + "iMa1bmnG2+c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE6resizeEj) +STUB( + "iMcKgGtukyA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEC1Ev) +STUB( + "iMdW5bcUe28", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEE11release_refEv) +STUB( + "iMgibUAAwdg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEEdeEv) +STUB("iMkHazF68Kc", uset_retain_67) +STUB( + "iMoNfB6j2iA", + _ZN3sce2Np9CppWebApi14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyC1EPNS1_6Common10LibContextE) +STUB("iMp8QpE+XO4", scePthreadMutexattrSettype) +STUB("iMwjBLrzxBk", _ZN3sce7Toolkit2NP2V28Matching6WorldsC2Ev) +STUB("iN02xYlRq0c", _Z24Ime_DicReplaceWordNativeimP11_MonoStringS0_S0_S0_) +STUB("iN1b36PcWNI", _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody10unsetGroupEv) +STUB( + "iN29ycT66O4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEEC2ERKS9_) +STUB("iN3KqF-8R-w", sceAudioInSetFocusForUser) +STUB("iN5-vU6Rb-Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEE7get_refEv) +STUB("iN6h1zseVxw", _ZN3JSC11SlotVisitor16appendHiddenSlowEPNS_6JSCellEN3WTF10DependencyE) +STUB( + "iN9e-A4xCjg", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations11unsetfieldsEv) +STUB("iNBEBueFlGw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEixEm) +STUB( + "iND-jeMS0n4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE3endEv) +STUB( + "iNHOEbi4L9U", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "iNLKYUQcawk", + _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody22invitableUserTypeIsSetEv) +STUB("iNRjjUp2NwQ", monoeg_g_dir_close) +STUB( + "iNS2cwpm9lk", + _ZN3sce7Toolkit2NP8Commerce9Interface14getProductListEPNS1_9Utilities6FutureISt6vectorINS1_11ProductInfoENS1_15AppSTLAllocatorIS7_EEEEERKNS1_22ProductListInputParamsEb) +STUB("iNX6kO6iSaM", _ZNK7WebCore15ActiveDOMObject25virtualHasPendingActivityEv) +STUB("iNbtyJKM0iQ", _Stold) +STUB("iNcxBU7l+0U", _ZN3JSC7Symbols14subPrivateNameE) +STUB( + "iNft9IfbYJc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEE5resetEPS9_) +STUB("iNg5um8fxt0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119ChildActivityStatusEEneERKS7_) +STUB("iNgmnDffwaI", g_shared_slist_remove) +STUB("iNjkt9Poblw", sceSslWrite) +STUB("iNt-rUGOS5w", uidna_nameToASCII_67) +STUB("iNtnapy4KGA", sceVorbisDecTimeTell) +STUB( + "iNw1TahiTtQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("iNyVbQAw1gE", _ZN8meta_gen13JpegRetriever16TRProcessIfdDataEv) +STUB( + "iNzVUwPGgGk", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi32ParameterToPostGameSessionsTouch12getsessionIdEv) +STUB("iO4SROiLK28", uidna_openUTS46_67) +STUB("iO5AOflrTaA", _ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1ERKSt8_Locinfom) +STUB("iOIKA6xtlqE", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEEcvbEv) +STUB("iOK0zwqr4Io", _ZN7WebCore17HTMLAnchorElement7relListEv) +STUB("iOLTktXe6a0", _ZTSa) +STUB("iOTsJTR6Y9U", _ZN3sce2np12HttpTemplate4InitEiPKcib) +STUB("iOX0l28xgSc", rgctx_fetch_trampoline_rgctx_82_p) +STUB("iOZzhl-sc4A", _ZN7WebCore6Editor23setBaseWritingDirectionENS_16WritingDirectionE) +STUB("iObhNwfcH0c", _ZN7WebCore28convertToIntegerEnforceRangeIjEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB( + "iOge-pLR2Lg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE8capacityEv) +STUB("iOihgthBWfs", _ZNK7WebCore8Position4nextENS_16PositionMoveTypeE) +STUB( + "iOkywMaZMD8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEaSERKS9_) +STUB( + "iOmDcGwJA8I", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEppEv) +STUB("iOqpYvGEo6A", scePadSetUserNumber) +STUB("iOwVV+Ose2I", _ZN10Deprecated18ScriptFunctionCall4callERb) +STUB("iOwunxTavFM", + _ZN3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinitionD2Ev) +STUB("iP0K+ZlmZJA", Java_com_sony_bdjstack_core_AppCacheManager_read) +STUB("iP5usIxGDAI", WKBundlePageClearMainFrameName) +STUB("iP62X-ryVaU", GCC_except_table415) +STUB("iP6IU6Sd8wk", AnnotateFlushState) +STUB("iPBqs+YUUFw", _Atomic_fetch_add_4) +STUB("iPDEu4fu2jM", _ZN3sce7Toolkit2NP2V26Trophy7Request20GetTrophyPackSummaryC1Ev) +STUB("iPFjGWz0FJc", WKBundlePageRemoveAllUserContent) +STUB("iPGdf2iMpz8", _ZN7WebCore9HTMLNames28onwebkitwillrevealbottomAttrE) +STUB( + "iPOGYdrP5rg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEC1ERS7_) +STUB( + "iPQ2ZG2xeHs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEEdeEv) +STUB("iPQjy3HrG38", _ZN7WebCore11DisplayList9TranslateD0Ev) +STUB("iPbWXfJjz50", _ZNK7WebCore10PluginData19webVisibleMimeTypesEv) +STUB("iPcGPUsuc9U", _ZN7WebCore11DisplayList10SetLineCapD2Ev) +STUB( + "iPfI2v+oYnQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEppEv) +STUB("iPg5XoG4I-g", mono_aot_Sce_PlayStation_HighLevel_UI2unbox_trampolines_end) +STUB("iPgEtDFsNa8", _ZN7WebCore16HTMLMediaElement12endScrubbingEv) +STUB( + "iPi3dq6dzgU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE5clearEv) +STUB("iPkIfOtxOeo", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12BandwithInfoEE5resetEv) +STUB( + "iPp-UolxygE", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112ErrorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5ErrorEEE) +STUB( + "iPrIR1lXXO4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEC1EPS8_) +STUB( + "iPtFoMschbU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE5beginEv) +STUB("iPtZRWICjrM", scePthreadRwlockTimedrdlock) +STUB("iPwFJCIZK14", sceNpGriefReportDeleteTransaction) +STUB("iPxMYP2FHFM", _ZN3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap15unsetIsRecycledEv) +STUB( + "iQ+fE3Hz8oM", + _ZN9Inspector24RuntimeBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("iQ0Lc1tsvd4", mono_sha1_update) +STUB("iQDc85bbae4", JVM_RawMonitorDestroy) +STUB( + "iQK1pWjfZ5k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEC2EPKS8_) +STUB("iQRVLJQ+OYs", sceVdecCoreTrySyncDecode) +STUB("iQXBbJbfT5k", _ZnwmSt11align_val_tRKSt9nothrow_t) +STUB("iQY7iS5UxOE", mono_shared_hashtable_iter_next) +STUB("iQYeFQw+37Q", _ZN3sce2Np9CppWebApi14SessionManager2V15Error16unsetReferenceIdEv) +STUB( + "iQc-4fZPS2w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("iQfJQDJl2xU", _ZN7WebCore22EmptyFrameLoaderClient18didSaveToPageCacheEv) +STUB("iQiT26+ZGnA", _ZN10__cxxabiv116__enum_type_infoD2Ev) +STUB("iQl--k2ukCk", mono_class_instance_size) +STUB("iQoJc7qieSk", _ZNK3WTF6String10tryGetUtf8ENS_14ConversionModeE) +STUB( + "iQp3XJdBdNY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEC1EPNS2_10LibContextE) +STUB("iQqJcrJ5fSQ", _ZN7WebCore9HTMLNames11focusedAttrE) +STUB("iQqXemLp8CE", _ZN3sce7Toolkit2NP2V23TUS7Request16GetUsersVariableC2Ev) +STUB("iQr9UxPHUFs", sceNpLookupCreateRequest) +STUB( + "iQtRwEeuwp0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEED2Ev) +STUB("iQuWNdsul1U", sceFaceIdentifyLiteGetFeature) +STUB("iQw3iQPhvUQ", sceNetCtlCheckCallback) +STUB( + "iQxCQEhYeZ0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEE11get_deleterEv) +STUB( + "iQxu3lvAckU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEptEv) +STUB( + "iQz+TP1SYMc", + _ZN9Inspector20DOMBackendDispatcher5focusElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("iR39TKpBQ5c", uprv_getCharNameCharacters) +STUB( + "iRBpbAsZQps", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEaSERKS7_) +STUB("iRDKwS0z18M", _ZN7WebCore29cookieRequestHeaderFieldProxyERKNS_8DocumentERKNS_3URLE) +STUB("iRH-NE2evR4", _ZN3sce2np3ipc10IpmiClient4InitEPKNS2_6ConfigE) +STUB("iRIrQRJTss8", _ZN7WebCore9HTMLNames26x_apple_data_detectorsAttrE) +STUB("iRJKpWvOvw0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEED2Ev) +STUB("iRNZ5GV5b0Q", + _ZNK3sce2Np9CppWebApi12Leaderboards2V122GetRankingResponseBody18getTotalEntryCountEv) +STUB("iRX6GJs9tvE", sceAudio3dPortGetStatus) +STUB("iRZduYIV1hs", sceLncUtilUnblockAppSuspend) +STUB( + "iRZqt2EWXEA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("iRdnTgpbVOM", sceBgftServiceIntSetBandwidthPriority) +STUB("iRfxJ54qlG0", WKPreferencesSetWebAudioEnabled) +STUB( + "iRisBn+sF4A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEC2Ev) +STUB( + "iRkjiNEqyPo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEaSERS7_) +STUB("iRm8tkU1ir4", u_getVersion) +STUB( + "iRoJcLEB5yQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEneERKS9_) +STUB( + "iRq+pJWTFgk", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Network7Metrics8PriorityEEEN3WTF8OptionalIT_EERKNS6_6StringE) +STUB( + "iRs7XAI-+qE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("iRuUB-vRDcE", _ZN7WebCore9HTMLNames5thTagE) +STUB("iRvaaSfHBc8", sceNpAsmClientGetServiceBaseUrlA) +STUB("iRxNRCm10Eg", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE7popBackEv) +STUB("iRxtEP5Etyc", sceNpUniversalDataSystemIntRecordArraySetFloat32) +STUB("iS-Vvo7MaQ4", _ZNK7WebCore21NetworkStorageSession12deleteCookieERKN3WTF3URLERKNS1_6StringE) +STUB( + "iS3twTQ3cys", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEED2Ev) +STUB("iS4aWbUonl0", _Mtx_lock) +STUB("iS8phj6rMeA", _ZN3JSC8Debugger13clearBlackboxEv) +STUB( + "iSCjN-jCzUM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEE11get_deleterEv) +STUB( + "iSF0fcnAvBY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE7reserveEi) +STUB( + "iSFm953qrXA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEC1Ev) +STUB("iSGc7kcf8X4", sceKernelDeleteProcessFromCanvasMap) +STUB("iSHhSAr1jks", _ZN3WTF6String6appendEPKDsj) +STUB( + "iSIVpi+6es4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEEptEv) +STUB( + "iSJJLbwR2Yk", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeader10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_43PutPlayerSessionsSessionIdLeaderRequestBodyEEE) +STUB( + "iSNHrtxAerA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE7popBackEv) +STUB( + "iSTNfIyIF1o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "iSULDBUG7ts", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("iSUo7jVM7U0", + _ZN3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayer11setPlatformEPKc) +STUB( + "iSX+ZeIPNJE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("iSYSUkaMV6U", mono_aot_Sce_Vsh_Np_Papcjit_code_end) +STUB("iSZjWw1TGiA", sceHttpGetCookieEnabled) +STUB( + "iSgLZvNsjUo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEEC1ERKSA_) +STUB( + "iShGCpRuyrE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEEaSERKS9_) +STUB("iSlI1LKy7Bg", sceSysUtilSendSystemNotificationWithErrorCode) +STUB("iSmCJmZBjpE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEEC1ERS9_) +STUB("iSolxX558O0", _ZN7WebCore26HTMLTextFormControlElement21setCanShowPlaceholderEb) +STUB("iSqCwE2UP0o", _ZN4Manx13WorkQueueImplC1EPKc) +STUB( + "iSqIYD6ehaY", + _ZNK3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionMemberPlayer6toJsonERNS_4Json5ValueEb) +STUB( + "iSrtD+foPck", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEppEi) +STUB( + "iStStRoBGg4", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessionsaSERS5_) +STUB("iSybA782aFw", sceAudioOutPtOpenEx) +STUB("iT+aFczA7ak", sceVideoOutAddS3dHmdPrivilege) +STUB("iT+wzBrHq50", scePlayReadyCdmiDecryptOpaque2) +STUB("iT5rGSq18GI", WKPageSetBackgroundExtendsBeyondPage) +STUB("iT8+2czkg-A", _ZN3JSC19HeapSnapshotBuilder15appendIndexEdgeEPNS_6JSCellES2_j) +STUB("iTANhsf3zHk", _ZNK9Inspector15RemoteInspector7enabledEv) +STUB( + "iTAx7Gqtk3Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEaSERKS7_) +STUB("iTIgJfwD0MY", _ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEE8pushBackERKS4_) +STUB( + "iTK9s2sCWzk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEplEm) +STUB( + "iTNFDevmDAo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEmmEi) +STUB("iTODM3uXS2s", _ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1ERKSt8_Locinfom) +STUB("iTT38xYbOqI", InetStatStartTestNative) +STUB("iTXe6EWAHek", sceNpManagerIntGetGameAccessToken) +STUB("iTaoxWIQyuY", _ZN7WebCore15GraphicsContext9clearRectERKNS_9FloatRectE) +STUB("iTgPNOBdkIM", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody14variablesIsSetEv) +STUB( + "iTgj-XvNWmo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "iTgr6h-p4LQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEppEv) +STUB("iTraNBq44Do", WKPreferencesSetPeerConnectionEnabled) +STUB( + "iTtCuD165Kk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE10setContextEPNS2_10LibContextE) +STUB( + "iTuz2cgCnGc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB("iTzTuAXWoHE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEaSERS7_) +STUB("iU0z6SdUNbI", fmin) +STUB( + "iU1GbipTqF8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEE11release_refEv) +STUB( + "iU4ahCSu-Jo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEmmEi) +STUB( + "iU4h7ZI2yio", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "iU6ecUx9N7w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEED1Ev) +STUB("iUH7MIZTdBo", jpeg_read_raw_data) +STUB( + "iUP-Askga6o", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer14unsetdirectionEv) +STUB("iUYt6oGGBiI", _ZN7WebCore8FormData10appendBlobERKNS_3URLE) +STUB( + "iUac-AJzs7Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE5beginEv) +STUB("iUarLNk0Dkg", WKPageSetPaginationBehavesLikeColumns) +STUB( + "iUcLtCqSvhA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V116PlayStyleFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_9PlayStyleEEE) +STUB("iUds2oPOQ0A", _ZN3sce2Np9CppWebApi14SessionManager2V113PlayerSession12setSessionIdEPKc) +STUB("iUg3lPaKd4E", WKFrameCreateFrameInfo) +STUB("iUhx-JN27uI", _ZTSSt8messagesIcE) +STUB("iUigHJ2op4M", sceVideoOutSysIsModeS3d) +STUB("iUjiTIiYnZk", sceNpManagerUtilConvertJidToNpId) +STUB( + "iUmtYqF+0dQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEEptEv) +STUB( + "iUng8xTVS9g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEC1ERKS7_) +STUB( + "iUoY7lFj98I", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEeqERKS9_) +STUB("iUohlUDiGac", sceKernelGetCpuFrequency) +STUB("iUsONHVCDbQ", sceLncUtilIsCpuBudgetOfExtraAudioDevicesAvailable) +STUB( + "iUwD42UgjZc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("iV0oqHXZhvs", _ZN7WebCore16BlobRegistryImplnwEmPv) +STUB( + "iV0xhocQRNA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE8capacityEv) +STUB("iV2R8ksNRcc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEEppEi) +STUB( + "iV361qwySjQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("iV3nsYj7oVA", _ZN3JSC9CallFrame18callerSourceOriginERNS_2VME) +STUB("iV7Za9AqOOo", mono_aot_SMDiagnosticsunbox_trampolines_end) +STUB("iVFRt4Ip+f8", sceVideoArbitrationInitialize) +STUB( + "iVGnaHcZvuI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEC2EPKS8_) +STUB("iVKW7nYDUkU", _ZN3WTF40releaseFastMallocFreeMemoryForThisThreadEv) +STUB("iVMzwzzqlE8", _ZN3sce7Toolkit2NP9Interface17registerNpTitleIdERKNS1_9NpTitleIdE) +STUB("iVUJ-VqTtek", _ZN4IPMI6Server12EventHandler20onSyncMethodDispatchEPNS_7SessionEjPvmmS4_m) +STUB( + "iVW0v6nhpWg", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM23AccessibilityProperties7CurrentEEEN3WTF8OptionalIT_EERKNS6_6StringE) +STUB( + "iVf0VdAsXvI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE3endEv) +STUB( + "iVgb7R-LRSk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE7reserveEi) +STUB("iVhDzJwOSO0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEEC2EPNS2_10LibContextE) +STUB("iVhJZvAO2aQ", lldiv) +STUB( + "iVhXC1bMdWk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("iViI+Faa7Aw", _ZN7WebCore8SVGNames20contentStyleTypeAttrE) +STUB( + "iVqqIpmYPA4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEC1EPKS8_) +STUB( + "iVqybNrIyO4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEplEm) +STUB( + "iVr6T4AcbhI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("iW-6A9-ZxaU", + _ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession16customData2IsSetEv) +STUB( + "iW-7MMlswdA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("iW2KVLVygdM", sceApplicationGetDbgExecutablePath) +STUB( + "iW3kD9KmQgk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("iW3vKFeWOQQ", _ZN3sce7Toolkit2NP15AppSTLAllocatorISbIcSt11char_traitsIcENS2_IcEEEED2Ev) +STUB( + "iW6DDkN8OgE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEixEm) +STUB("iW6iaUpR6FU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEEC2ERKS7_) +STUB("iW7iup8xEzw", _ZN7WebCore9HTMLNames9shapeAttrE) +STUB( + "iW9EV9FyKno", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEneERKS9_) +STUB("iW9pUP8vR18", WKPreferencesGetMediaUserGestureInheritsFromDocument) +STUB( + "iW9wHGQGbuk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEED2Ev) +STUB("iWAnZ3ger+8", pthread_suspend_all_np) +STUB("iWFzNMRZJ8w", _ZN3JSC2VM14resetDateCacheEv) +STUB("iWITbDLrqLg", _ZN3sce7Toolkit2NP2V28Commerce7Request11GetProducts17DEFAULT_PAGE_SIZEE) +STUB("iWM-p53q+H4", mono_assembly_foreach) +STUB("iWMhoHS8gqk", _ZTSPKt) +STUB("iWNC2tkDgxw", _ZNSt13bad_exceptionD2Ev) +STUB("iWQWrwiSt8A", sceNetHtons) +STUB("iWRQ8ANp-gc", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessionsD1Ev) +STUB("iWUiWACWr0k", _ZN3sce7Toolkit2NP2V28Commerce7ProductC1Ev) +STUB( + "iWXYETp96rs", + _ZN3JSC12RegExpObject23getGenericPropertyNamesEPNS_8JSObjectEPNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("iWYXKx6f2r4", sqlite3_column_text16) +STUB( + "iWeP7+I7rFk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEptEv) +STUB( + "iWjdWa9Y5iI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEED1Ev) +STUB("iWkjy+4nX+4", mono_btls_ssl_ctx_debug_printf) +STUB("iWmFU6WXUk4", sceSlimglRenderServerThreadStart) +STUB("iWpQ5y7lRWE", __ubsan_handle_shift_out_of_bounds_abort) +STUB("iWpT-n68CwM", + _ZThn16_N9Inspector22InspectorDebuggerAgent19failedToParseSourceERKN3WTF6StringES4_iiS4_) +STUB("iWpc4yo0lFQ", _ZNSt12length_errorC1EPKc) +STUB("iWpzXixD0UE", sceUserServiceGetKeyRepeatStartingTime) +STUB( + "iWsA3xRCLOA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEEaSERSA_) +STUB("iWsFlYMf3Kw", __pthread_cleanup_pop_imp) +STUB("iWtXRduTjHA", _ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2ERKSt8_Locinfom) +STUB("iWwcsTjXh78", scePerfPmcUmcStop) +STUB( + "iWxpyu2a2QE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB("iX-Za3SHQqQ", _ZN3JSC7Symbols29iterationKindValuePrivateNameE) +STUB( + "iX0JndCo8Gw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEE7get_refEv) +STUB("iX56hX3H4Yk", _ZN3JSC4callEPNS_14JSGlobalObjectENS_7JSValueERKNS_8CallDataES2_RKNS_7ArgListE) +STUB("iX75y4XyyiA", __tsan_atomic128_fetch_nand) +STUB( + "iX8DNiv40rw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEppEv) +STUB("iXBaRtD8K50", sceDbgDeleteGpuExceptionEvent) +STUB("iXChH4Elf7M", _ZTISt13basic_istreamIwSt11char_traitsIwEE) +STUB("iXGeleOV-c8", WKWebsiteDataStoreEnableDefaultNetworkProxySettings) +STUB("iXHSKtuZ-tg", fmts) +STUB("iXHz2eJVSVs", Java_java_lang_Class_isAssignableFrom) +STUB( + "iXIAYgVGzKU", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB("iXKK7pSkIMc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEC1ERS7_) +STUB("iXKKlfVQueM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEEdeEv) +STUB( + "iXTp-K9e7IU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEppEi) +STUB( + "iXU7C5Zuy0U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEC1EPS8_) +STUB("iXVrhA51z0M", + _ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_bRSt8ios_basece) +STUB( + "iXX4GY9ODyk", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayerC2Ev) +STUB("iXYBuXcqugQ", _ZN3IPC15ArgumentDecoder21decodeFixedLengthDataEPhmj) +STUB("iXgnlJmCSP4", _ZN3WTF17StringPrintStream7vprintfEPKcP13__va_list_tag) +STUB("iXrXlr3XK4w", _ZN3WTF18ParallelHelperPoolC1EONS_7CStringE) +STUB("iXu7XuFfBhU", _ZN9Inspector15ScriptCallStack6createEv) +STUB("iXwXkTuztI8", _ZN7WebCore11FetchLoaderD1Ev) +STUB("iXzUOM9sXU0", sceNpTusDeleteMultiSlotDataA) +STUB( + "iY27bBrKyAk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEC2EPS8_) +STUB( + "iY3wdEUpPHQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEmmEi) +STUB("iY9c5nf+LCQ", _ZN7WebCore15HTTPHeaderFieldC2ERKS0_) +STUB("iYCgf+sk0iw", _ZN3JSC15ArrayBufferViewD2Ev) +STUB("iYDibzjdBf8", + _ZN15AbstractStorage14YoutubeContent13ParseMetadataEPN23sceMetadataReaderWriter8MetadataES3_) +STUB("iYF3qyklbcA", mono_metadata_parse_custom_mod) +STUB( + "iYFKnyetU4Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE8pushBackERKS8_) +STUB("iYK6OcWwt9M", g_hash_table_foreach_remove) +STUB( + "iYRx4FjQjEM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB("iYUK7bu4HSE", + _ZN3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayer14setCustomData1EPKvm) +STUB("iYWHxsFIhcc", _ZN7WebCore9HTMLNames20oncanplaythroughAttrE) +STUB("iYXS3HPuYjs", WKBundleSetPopupBlockingEnabled) +STUB("iYXf-uzLKL0", X509_STORE_CTX_get_current_cert) +STUB( + "iYa5kFcIfN0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEC2EPNS2_10LibContextE) +STUB("iYmoOGRO+fc", compile) +STUB( + "iYoayZ6LRcY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE21intrusive_ptr_sub_refEPS9_) +STUB("iYqU5PBttKg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEC1Ev) +STUB("iYrCszX93AM", sceVideoOutSysGetVblankStatus2) +STUB( + "iYuwAUVIvzI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEC2ERKS7_) +STUB( + "iYyR6dwyxig", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V312ErrorFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_5ErrorEEE) +STUB( + "iZ+sJFzLU7U", + _ZN7WebCore14LoggedInStatus6createERKNS_17RegistrableDomainERKN3WTF6StringENS0_19CredentialTokenTypeENS0_18AuthenticationTypeENS4_7SecondsE) +STUB( + "iZ-CwTcjJAQ", + _ZN3JSC13ConsoleClient32printConsoleMessageWithArgumentsENS_13MessageSourceENS_11MessageTypeENS_12MessageLevelEPNS_14JSGlobalObjectEON3WTF3RefIN9Inspector15ScriptArgumentsENS6_13DumbPtrTraitsIS9_EEEE) +STUB( + "iZ0oo1g65Ss", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEC1ERS8_) +STUB( + "iZ4MWmOC7VI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEeqERKS9_) +STUB( + "iZ4nxr1dswU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEC1EPNS2_10LibContextE) +STUB("iZ4xUUBLpdI", _ZN3sce7Toolkit2NP2V29Messaging12Notification18NewGameDataMessageD2Ev) +STUB("iZ5JYUTbjuA", _ZN7WebCore4Page20scrollingCoordinatorEv) +STUB("iZ5it+3LGQM", sceKernelResumeProcess) +STUB( + "iZ6yjMT1YSM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB("iZCHNahj++4", _ZNSt7codecvtIcc9_MbstatetE5_InitERKSt8_Locinfo) +STUB("iZD+UvpXBfg", _ZN3WTF8dataFileEv) +STUB("iZFJYJJoZS8", __sys_opmc_disable) +STUB("iZFcLZVClyE", _ZN3WTF7CStringC2EPKcm) +STUB( + "iZN+bjOt0lE", + _ZN9Inspector22InspectorDebuggerAgent21breakpointActionProbeERN3JSC9ExecStateERKNS_22ScriptBreakpointActionEjjNS1_7JSValueE) +STUB("iZRERsL21CU", Java_java_lang_UNIXProcess_forkAndExec) +STUB("iZWhGZ4OHss", _ZN7WebCore20throwGetterTypeErrorERN3JSC9ExecStateERNS0_10ThrowScopeEPKcS6_) +STUB( + "iZZ+5E0G6sQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEE11release_refEv) +STUB("iZZ7g7Tge58", + _ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession17joinDisabledIsSetEv) +STUB( + "iZbb4eSlKWU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE5emptyEv) +STUB("iZcuO+Kb-4E", _ZN3WTF18charactersToDoubleEPKDsmPb) +STUB("iZeYfOxtMRg", _ZN3sce4Json5ValueC1ERKNS0_5ArrayE) +STUB("iZenpjL6Jc8", mono_aot_Sce_Vsh_GameListRetrieverWrapperunbox_trampoline_addresses) +STUB("iZfYbwM82bU", _ZN3WTF19tryFastZeroedMallocEm) +STUB( + "iZfmlVOblHY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEEC2Ev) +STUB( + "iZgOgYRnY2g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEEC2EPS6_PNS2_10LibContextE) +STUB( + "iZlA8N0uork", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEE7get_refEv) +STUB("iZmKEESJ3mw", _ZN3WTF13printInternalERNS_11PrintStreamEPKNS_10StringImplE) +STUB("iZrCfFRsE3Y", _ZTId) +STUB("iZv1dugN9C4", mono_get_uint16_class) +STUB( + "iZyh2ih7LJc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEC2EPKS8_) +STUB("ia4kPsIPeOI", mono_sharedmem_allocator_init) +STUB("iaGdIXzjp80", _ZN3sce7Toolkit2NP2V27Session7Request14SendInvitationD1Ev) +STUB("iaH+Sxlw32k", sceNpTusGetDataAVUser) +STUB( + "iaNJRkleQmI", + _ZN7WebCore13TextIndicator15createWithRangeERKNS_5RangeEtNS_35TextIndicatorPresentationTransitionENS_9FloatSizeE) +STUB("iaOj+R21bm8", mono_aot_Mono_Securityjit_code_end) +STUB("iaPE7kTb08o", jpeg_idct_4x8) +STUB( + "iaPiWS3n6Bc", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB( + "iaQhPQ1ambg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE8capacityEv) +STUB( + "iaVKm5aGA3w", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("iaVe3TiMl7k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEE7get_refEv) +STUB( + "iaWBcuszO20", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE10setContextEPNS2_10LibContextE) +STUB("iaaAR8GaGaU", _ZN7WebCore18TextureMapperLayer15setContentsRectERKNS_9FloatRectE) +STUB("iaaNlbnWC5A", _ZN7WebCore17JSDOMRectReadOnly11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("iaavCoHr4mE", _ZN12video_parser5vpcom8datetime8DateTime11date_formatE) +STUB( + "iafO0w3uo7I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEE7add_refEv) +STUB( + "iag8cxWl7aU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE8capacityEv) +STUB("iaiPHdqpfdk", sceVoiceChatRequestUpdatePlayerSessionVoiceChatChannelName) +STUB( + "iajWlUQ-KZw", + _ZN7WebCore10JSLocation14deletePropertyEPN3JSC6JSCellEPNS1_14JSGlobalObjectENS1_12PropertyNameERNS1_18DeletePropertySlotE) +STUB( + "ialRTEb1xRI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "iapnIPpJAQo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE6resizeEj) +STUB("iavlg3tmJsw", _ZN3sce2Np9CppWebApi6Common6VectorIjE6insertENS2_13ConstIteratorIjEERKjRS6_) +STUB("iawJpYIQM7s", sceMusicPlayerServiceSetTrackList2) +STUB( + "iawlcLiYjLc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEneERKS9_) +STUB( + "ib+alHMUm3Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEEC1Ev) +STUB( + "ib-k5ZhTugQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEEaSERSA_) +STUB("ib0pFlpLlL0", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession21unsetJoinableUserTypeEv) +STUB("ib0ufVZWjjA", MvpHttpHeadCleanup) +STUB("ib10DrJG7Sk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEEC2EPS6_) +STUB("ib13dX0Y3q8", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13integer5IsSetEv) +STUB( + "ib28t1ZV6+I", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEptEv) +STUB("ib2kd7o1mlk", _ZN7WebCore20SVGPathStringBuilder9closePathEv) +STUB( + "ibGlOF1kChE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE5eraseENS2_8IteratorIS6_EERS9_) +STUB( + "ibHfOfPs5c8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEE7get_refEv) +STUB( + "ibINzSwqM4U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEEaSERSA_) +STUB("ibIbR6bhuFw", _ZN7WebCore12JSAudioTrack7destroyEPN3JSC6JSCellE) +STUB( + "ibPJ2K3j0as", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEEptEv) +STUB("ibPpWj9p9aE", + _ZN7WebCore28convertToIntegerEnforceRangeIsEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB("ibQMbb9-2Rg", rgctx_fetch_trampoline_mrgctx_81_p) +STUB( + "ibUyIuNQsHk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEE3getEv) +STUB("ibXh+Mc4wbs", sceShellCoreUtilActivateTerm) +STUB("ibYWv3khTDw", sceFaceAttribute) +STUB( + "ibaQhQADbCo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("ibc-MVbLpTU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Wordfilter16SanitizedCommentEED2Ev) +STUB( + "ibc0Oa-7Q88", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB("ibm1zWXIU-I", _ZNK7WebCore16ResourceResponse23platformCertificateInfoEv) +STUB( + "ibpllLDZHWc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE4sizeEv) +STUB("ibqF5xhmbmI", _ZNK7WebCore11MediaPlayer39contentMIMETypeWasInferredFromExtensionEv) +STUB("ibs6jIR0Bw0", __floatuntidf) +STUB("ibsmmc4e0HM", + _ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody8fromJsonERKNS_4Json5ValueE) +STUB("ibuqevEHYYQ", + _ZNK3JSC8Debugger36handleExceptionInBreakpointConditionEPNS_9ExecStateEPNS_9ExceptionE) +STUB("ibwu-672lHg", udata_getMemory) +STUB("ibyFt0bPyTk", _Tss_set) +STUB("ic-dHSEABEg", u_isUAlphabetic_67) +STUB( + "ic15Yiy+4dA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEEC2ERSA_) +STUB("ic9WjvkFGxA", + _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi24ParameterToReportResults13isInitializedEv) +STUB( + "ic9c+6fHIuM", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("icCnwM4vE+E", _ZN9Inspector21InjectedScriptManagernwEm10NotNullTagPv) +STUB("icFsnbfG0UI", utrie2_internalU8NextIndex_67) +STUB( + "icLpd+rnNGw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEC2EPNS2_10LibContextE) +STUB("icNdSConcbs", _ZN7WebCore4Page13setIsInWindowEb) +STUB( + "icQGQQbEYH0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEC1Ev) +STUB( + "icRLfcfo7jI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE21intrusive_ptr_sub_refEPS9_) +STUB("icUTCdU53Og", _ZN3IPC15ArgumentDecoder6decodeERi) +STUB("icUs3ipN9H4", _ZNK3sce2np14JsonObjectImpl10allocFieldEPKc) +STUB( + "icVsKTP9ZwA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEppEi) +STUB( + "icfKQzmJv78", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "icgcGJwEoQA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEC2Ev) +STUB("icjSnOz1MYY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE5beginEv) +STUB("ickyvjtMLm0", _ZTSPb) +STUB( + "icpL6nhFzcg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEC1EPNS2_10LibContextE) +STUB("icvKV1ws-JI", mono_lock_free_allocator_init_allocator) +STUB("icwhmckYj8E", _ZN7WebCore6RegionD1Ev) +STUB("icx5rQ00bpY", sceDtcpIpStopSeq) +STUB("icxjmZetYeI", uprv_convertToPosix_67) +STUB( + "icxt5mWWz98", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeAccountId2OnlineIdBatchC1Ev) +STUB("id-gaLfaB9w", _ZN3sce2Np9CppWebApi6Common6VectorIiE5beginEv) +STUB("id0JiM1+i5I", scePerfTraceAmmCreate) +STUB( + "id7Ayv6BSZ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("idDB8H4i2ko", _ZNK3sce2Np9CppWebApi7Matches2V113RemovedPlayer11reasonIsSetEv) +STUB("idKmQNHkLSs", _ZNK7WebCore18PlatformTimeRanges6lengthEv) +STUB("idVBrdQRrOw", _ZNK3sce2Np9CppWebApi7Matches2V119RequestMatchResults10getVersionEv) +STUB("idWUOMHlXf0", glViewport) +STUB("idcnNa0WFog", _ZThn8_N3sce2np13JsonDocParser12onArrayValueEjjiNS0_10JsonParser9ValueTypeEPKc) +STUB("idep6z5YE2o", + _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product14setContentTypeERKNS3_11ContentTypeE) +STUB("idhlHm0CZt4", u_releaseDefaultConverter_67) +STUB("idkI+fFFntA", _ZNK7WebCore8Document4pageEv) +STUB("idlaArvdXEs", sceAgcAcbWaitOnAddressGetSize) +STUB("idoWTyyaG20", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEC1Ev) +STUB("idrr8+P+8UU", sceCesGbToUtf16le) +STUB("idsapmYZ49w", _ZTSSt10ctype_base) +STUB( + "idteU1F4RSQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEppEv) +STUB("idvMaIu5H+k", sceImeVshSetParam) +STUB( + "idwqiN9H5Y4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEEC2ERKSA_) +STUB( + "ie-FOUZf7Fw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEC2ERS7_) +STUB("ie-UuLGbYXo", sceAmprAmmCommandBufferModifyMtypeProtectWithGpuMaskId) +STUB("ie2v2DfofTs", sceDbgVLoggingHandler) +STUB("ie4A5lHoO8U", sceMbusDebugStartApplication2) +STUB( + "ie4Y10mau2k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEppEi) +STUB("ie7qhZ4X0Cc", sceSaveDataCommit) +STUB("ie9nlBaM-WI", _ZN3sce7Toolkit2NP2V210Tournament22TeamVsTeamMatchDetails8deepCopyERKS4_) +STUB( + "ieAF1lk+pjs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEppEi) +STUB("ieCNrVrzKd4", sceImeSetText) +STUB("ieEQWlOYTg8", _ZNK3sce2Np9CppWebApi14SessionManager2V114Representative11getPlatformEv) +STUB("ieHw9JRbKV0", uenum_openUCharStringsEnumeration) +STUB( + "ieJLmXr+i-Y", + _ZN3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallback10initializeEPNS1_6Common10LibContextEPKcSA_SA_) +STUB("ieNeByYxFgA", _ZGVNSt14_Error_objectsIiE16_Iostream_objectE) +STUB("ieOpq0KLu40", _ZNK7WebCore15VisiblePosition5rightEbPb) +STUB("ieP6jP138Qo", sceSaveDataIsMounted) +STUB("ieROYX4vspk", sceNpLookupNetConvertNpIdToJid) +STUB( + "ieV2FDHYuOs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEE11get_deleterEv) +STUB( + "ieV6PhqZmDM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("ieWsT1QNJUQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession24disableSystemUiMenuIsSetEv) +STUB( + "ieYA8wr2oQU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEC1Ev) +STUB("iehA+3KavUI", _ZZSt9MakefacetISt8messagesIcESt8_LocinfoERT_T0_E3buf) +STUB("iehMlfnzitM", WKStringIsEqualToUTF8CString) +STUB( + "ieink3I5tDg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEEC2ERKSA_) +STUB("iemhDr7INPw", uset_add_67) +STUB( + "ieuVE0GAaEo", + _ZN7WebCore12ChromeClient19handleAutoplayEventENS_13AutoplayEventEN3WTF9OptionSetINS_18AutoplayEventFlagsEEE) +STUB( + "ieupD6JPmAw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEEC1ERSA_) +STUB( + "if+uHJPCunI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEED2Ev) +STUB("if-BeWwY0aU", sceUserServiceGetNpOnlineId) +STUB("if20lYbjKZ8", Java_com_sony_bdjstack_javax_media_controls_VideoDecoder_getPosition) +STUB("if3Fqudehy0", jpeg_std_message_table) +STUB("if3saS+8mSc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEEC2ERS7_) +STUB("if5ULtFmeIA", _ZN7WebCore24CoordinatedGraphicsLayer18setShowDebugBorderEb) +STUB( + "if5sYLTgYfA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEneERKS9_) +STUB( + "if8zyIkmvR4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("ifAvfzHTDe8", JVM_ConstantPoolGetClassAt) +STUB("ifCCmQZ87f8", _ZN9Inspector28InspectorScriptProfilerAgent29stopSamplingWhenDisconnectingEv) +STUB( + "ifK4lLJA5Bg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEED2Ev) +STUB("ifN6TwFG-z4", _ZN3WTF10StringImpl19createUninitializedEjRPDs) +STUB("ifOC0Tz3yMQ", HttpCacheWrapperFree) +STUB( + "ifRVifgm3Vk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEC1EPS6_PNS2_10LibContextE) +STUB( + "ifXXtEw6p10", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE10setContextEPNS2_10LibContextE) +STUB("ifZEieMZ7QM", _ZN3JSC12StackVisitorC2EPNS_9CallFrameERNS_2VME) +STUB("ifcK41yodsA", call_filter) +STUB( + "ifhI9EfWDOU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEC1Ev) +STUB( + "ifhWh4U0oFc", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("ifhr38MXPj8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE5emptyEv) +STUB("ifjgccZulhg", _ZN7WebCore22DefaultFilterOperationD2Ev) +STUB( + "ifpLCjhh+As", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEEptEv) +STUB("ifqJb-V1QZw", _ZN3sce2np6Handle4InitEv) +STUB("ig-ACL9RLUU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEEdeEv) +STUB( + "ig0sU4CUR2U", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE28getResponseInformationOptionEv) +STUB("ig1ocbR7Ptw", sceRemoteplayImeClose) +STUB("ig1zAhp1Kic", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats6toJsonERNS_4Json5ValueEb) +STUB("ig4VDIRc21Q", _ZNSt7collateIwED0Ev) +STUB("ig69Abe2tZw", _ZN3sce7Toolkit2NP2V211SharedMedia7Request14GetScreenshotsD1Ev) +STUB( + "ig6SRr1GCU4", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERm) +STUB( + "ig7SXo5fHrA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEC2EPS8_) +STUB("igDJIsdI3AA", _ZNK7WebCore19ResourceRequestBase15httpContentTypeEv) +STUB( + "igIMktwPulU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEC1Ev) +STUB( + "igKsFwp7M1w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEE5resetEPS9_) +STUB( + "igLY5HmW6qk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE8pushBackERKS8_) +STUB("igMefp4SAv0", get_authinfo) +STUB("igW6sJOx8DI", monoeg_g_ptr_array_new) +STUB("igWZiDXnBC0", _ZNSt8ios_base7failureC1ERKS0_) +STUB( + "igWl0fjowO4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("igYBTKdzQ5c", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEEptEv) +STUB("igYCKlMX2RI", _ZN9Inspector18InjectedScriptHostD2Ev) +STUB( + "igZmY9t9lu4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEC2EPS6_PNS2_10LibContextE) +STUB("igb+D4BGhaQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEEplEm) +STUB("ighQjrNii7s", _ZN3JSC7Symbols26isArrayIteratorPrivateNameE) +STUB("igpSrATXmAY", glCompressedTexSubImage3D) +STUB( + "igqrKOAZprg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB( + "igs871aV3H0", + _ZN3sce2Np9CppWebApi7Matches2V131UpdateMatchDetailRequestFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_24UpdateMatchDetailRequestEEE) +STUB("igtHVyxqQQc", _ZN3JSC16JSSloppyFunction6s_infoE) +STUB("ih4CD9-gghM", ftruncate) +STUB( + "ih6iWyGJ2bM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE5emptyEv) +STUB("ih8bKMFzrMU", uprv_fmod_67) +STUB("ihAxteheoME", + _ZN7WebCore24RotateTransformOperation6createEdNS_18TransformOperation13OperationTypeE) +STUB("ihBgYrvugv8", Java_com_sony_bdjstack_org_dvb_dsmcc_FileCacheManager_load) +STUB("ihDFQEO2HKs", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEED1Ev) +STUB("ihI86U50NSU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE3endEv) +STUB("ihIHD8BTNxI", FT_Set_Var_Blend_Coordinates) +STUB( + "ihIzDcWIRqU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEdeEv) +STUB("ihKk3eXFpV0", udat_open_59) +STUB("ihNT-uuEAr4", sceVdecswGetAvcPictureInfo) +STUB("ihPWeLj6kkU", _ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody12playersIsSetEv) +STUB( + "ihPnHSNiSwQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE7reserveEi) +STUB( + "ihUc1co7Ia8", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE11hasResponseEv) +STUB("iha6cSNabDU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEEC2EPKS6_) +STUB("ihf-xuMiekk", sceKernelSetSuspendState) +STUB("ihfGsjLjmOM", _Thrd_start_with_name) +STUB("ihixDff5dEM", utrie_open_67) +STUB("ihjPFw3x2VA", WKPreferencesSetHTTPEquivEnabled) +STUB("ihnrzQAz4U4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEC2ERS7_) +STUB( + "ihp2jCTTegg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "ihsscRmaDac", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser13isInitializedEv) +STUB("ihvCY98QfUY", _ZN3sce7Toolkit2NP9Utilities6FutureIbED2Ev) +STUB( + "ihxlct0CP0M", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE5beginEv) +STUB("ihxrbsoSKWc", sceGnmBeginWorkload) +STUB("ii-LNk-LoPI", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_28NpSessionDetailedInformationEED2Ev) +STUB("ii02cujq7HI", _ZN7WebCore8SVGNames6toAttrE) +STUB("ii895dyBjMo", cairo_ft_font_options_substitute) +STUB("iiCJFOgCMk4", _ZN7WebCore5FrameD2Ev) +STUB("iiLb8yqVTS8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEED2Ev) +STUB("iiNSzVaJBnk", mono_aot_Sce_Vsh_GameListRetrieverWrappermethod_addresses) +STUB("iiQUA7ftTA4", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEED1Ev) +STUB("iiQjzvfWDq0", dup) +STUB( + "iiYZCXOo7Go", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "iiYwn4oot+w", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("iic-qqKPK-g", uenum_openCharStringsEnumeration_67) +STUB( + "iicKnp+pPu4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEE3getEv) +STUB("iicmjSXPxa8", __asan_stack_free_3) +STUB("iidBuatjsGc", _ZN3sce3pss5orbis5video14VideoPlayerVcs18VideoCoreSetVolumeEi) +STUB("iidMRmA0MEo", sceMbusDebugGetControlStatus) +STUB("iidogsvYsaU", u_charType_59) +STUB( + "iifAV-TtLyc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEE7get_refEv) +STUB("iiikn8yCV4I", _ZN7WebCore16NetworkSendQueueD2Ev) +STUB( + "iimFMvWti0M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEE11release_refEv) +STUB("iimyKR+9jaE", _ZN3sce3pss5orbis5video15VideoPlayerBase8GetSpeedEv) +STUB("iioP3xFfzJ8", WKHitTestResultIsContentEditable) +STUB("iipSVC14DnY", ucnv_toUnicode_67) +STUB( + "iiqR-H-DYrM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEC1EPNS2_10LibContextE) +STUB("iiqupc3dEOQ", uscript_hasScript_67) +STUB( + "iiw-ejGFfDM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "iiwku1W3HRA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE3endEv) +STUB( + "iiz67QG7uhs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEEaSERKSA_) +STUB( + "iizyTS+hYFk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEC2EPKS9_) +STUB("ij+fJORglqw", incoming_area) +STUB("ij-yZhH9YjY", _ZNKSt7_MpunctIwE14do_frac_digitsEv) +STUB("ij4eaVVoTBU", rgctx_fetch_trampoline_mrgctx_24) +STUB("ij53q1AqKPc", _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead12setSessionIdEPKc) +STUB("ij5A1fmeLvY", sceNpUniversalDataSystemIntRecordArraySetBinary) +STUB("ij6XkA3OrIA", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request14PostPlayedWithC2Ev) +STUB("ij8RtmPx6BU", _ZN3sce7Toolkit2NP2V212EventsClient6EventsC1ERKS4_) +STUB("ijAqq39g4dI", _Puttxt) +STUB("ijGieVme+iM", mono_aot_Sce_Vsh_WebViewDialogunwind_info) +STUB( + "ijHx7ATLDrw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEED1Ev) +STUB( + "ijNNMedTXvQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEE3getEv) +STUB("ijPJrSMtqIY", WKBundlePageSetPageZoomFactor) +STUB( + "ijPOQZNWbuI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEC1Ev) +STUB("ijRkiQ+lRlM", nn_poll) +STUB("ijTy57nFYLw", _ZNK9Inspector14ConsoleMessage12globalObjectEv) +STUB("ijc7yCXzXsc", _Xp_addh) +STUB( + "ijdCo96sLds", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEEC1ERKSA_) +STUB("ijeZL5D5plo", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIiEppEi) +STUB( + "ijijXYpJzC8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("ijkui5Woco4", _ZN7WebCore6Path2DD2Ev) +STUB("ijtKzWkV5h0", audiodeccpuinternal_core_ops_m4aac2) +STUB("ijvRMHfwwjc", sceAmprAmmCommandBufferRemap) +STUB("ik++OlmjX74", mono_gc_finalize_notify) +STUB("ik0kGUB7Ukw", sceAutoMounterClientUnregisterCallback) +STUB( + "ik28OsjCdr8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEdeEv) +STUB("ik6pOKAftzY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEC2Ev) +STUB("ik7nXsVUdMw", hb_font_funcs_set_variation_glyph_func) +STUB("ik86e1xLpoo", sceNpManagerIntSetCommerceDialogPlusResult) +STUB( + "ik99FO9DvAI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE5beginEv) +STUB("ikBt0lqkxPc", _ZNKSt7codecvtIcc9_MbstatetE6lengthERS0_PKcS4_m) +STUB( + "ikE-Wj7+afo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEEC2ERSA_) +STUB("ikERqFYMBAk", _ItL_pS0) +STUB("ikElnlIFyWs", u_strncmpCodePointOrder) +STUB("ikFI73f3hP4", _ZN3sce2np14JsonDocBuilderC1ERKNS0_9JsonValueE) +STUB("ikHEfVYiB5g", _ZN9Inspector14InspectorAgent25evaluateForTestInFrontendERKN3WTF6StringE) +STUB("ikHTMeh60B0", _FXp_setn) +STUB("ikMTrjrw2+s", mono_aot_Sce_Vsh_RequestShareStorageWrapperplt_end) +STUB("ikNH4c6kdMw", unorm2_getNFCInstance) +STUB("ikTKkQLJH-k", _ZN3sce7Toolkit2NP2V26Trophy16TrophyPackTrophy5resetEv) +STUB("ikTNlkIaVhU", _ZN9Inspector28InspectorScriptProfilerAgentD0Ev) +STUB( + "ikYjcWlOg4k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEC1Ev) +STUB( + "ikZ7zqWW6HY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE10setContextEPNS2_10LibContextE) +STUB("ikZjNtJlWTs", WKPageSetPageLength) +STUB("ikcO4yJFPy0", _ZNK7WebCore16ResourceResponse13cfURLResponseEv) +STUB("ikjnoeemspQ", _ZNSs6assignEmc) +STUB("ikkTGg4Cshw", sceKernelGetCallRecord) +STUB("ikmkeez8ATk", sceShellCoreUtilEndUmmDictation) +STUB("ikoP5d39zho", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEEC2EPKS6_) +STUB("ikpz5Fi41gk", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEEaSERKS7_) +STUB("ikqnnysGCoU", mono_poll) +STUB("iktpef6dl3k", scePlayReadyMemGetStats) +STUB( + "ikz7zE2Iqo4", + _ZN7WebCore22EmptyFrameLoaderClient21dispatchDidCommitLoadESt8optionalINS_18HasInsecureContentEE) +STUB("ikzoIQNzdmQ", _ZN3sce2np8JsonBoolD0Ev) +STUB("ikzt3yp+3Bs", _ZN7WebCore9HTMLNames11loopendAttrE) +STUB("il+fPwOykT8", mono_aot_Sce_Vsh_Sl2_Sl2Deliverunbox_trampolines_end) +STUB("il03nluKfMk", sceKernelRaiseException) +STUB("il4E3AEU2NA", _ZN3sce2Np9CppWebApi6Common13ConstIteratorImEC1EPKm) +STUB( + "il4rkcW6gco", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEmmEv) +STUB("il8-JtRpqUk", WKInspectorConnect) +STUB("il8akE0xBgM", JVM_SetNativeThreadName) +STUB( + "ilBRhB57twQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEED2Ev) +STUB("ilCtzC1qS6M", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setPipSubtitleMode) +STUB("ilHmupkeWMQ", _ZN7WebCore9HTMLNames11srclangAttrE) +STUB("ilM1cSlkdrg", _ZNK7WebCore4Page19disabledAdaptationsEv) +STUB("ilZYBLM0oXw", _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_6Path2DE) +STUB("ilbVirqwQrY", _ZN7WebCore21DiagnosticLoggingKeys13webGLStateKeyEv) +STUB("ilca+Zkad0o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEE3getEv) +STUB( + "ildIWoSqX5Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("illVlCHMMQk", _ZN22MmsMdCommonFsOperation17readFileWithCacheEjPv) +STUB( + "ilo8NwzehCQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "ilr+TFplnv4", + _ZN7WebCore11DisplayList14DrawTiledImageC1ERNS_5ImageERKNS_9FloatRectERKNS_10FloatPointERKNS_9FloatSizeESC_RKNS_20ImagePaintingOptionsE) +STUB("ilssCgIV3xE", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18GameCustomDataItemEE7addressERKS3_) +STUB("ilvKlfjyUHo", _ZN9Inspector21InspectorRuntimeAgentD0Ev) +STUB("ilwLM4zOmu4", sceNpGetParentalControlInfo) +STUB("ilz1cNbvqMY", _ZN8meta_gen14ImageRetriever15CreateThumbnailEPKcPcRf) +STUB( + "im+R2fF8Bh0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEdeEv) +STUB("im2ZuItabu4", sceGnmDrawInitToDefaultContextState400) +STUB("im3+ZGv0fKQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEaSERS7_) +STUB("im3Ukk9Laoc", mono_class_get_image) +STUB("im5DNzT35to", _ZN9Inspector34ApplicationCacheFrontendDispatcherdaEPv) +STUB( + "imDb66021ZE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEE11get_deleterEv) +STUB("imHJl7ByHlo", _ZN3JSC8JSObject6toThisEPNS_6JSCellEPNS_9ExecStateENS_8ECMAModeE) +STUB("imHa3TLlTO8", _ZNK7WebCore19ProtectionSpaceBase4portEv) +STUB("imTc7jKwrL8", _ZNK7WebCore8Document28hasEvaluatedUserAgentScriptsEv) +STUB( + "imU9QB6LmXw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("imYE7u89P7k", u_locbund_close_67) +STUB( + "imYRy1ayWs4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE5beginEv) +STUB("imZUVWK3ngM", scePsmThreadCallback) +STUB( + "imas+NydsEw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEC1EPS6_PNS2_10LibContextE) +STUB("imlFraoWzA0", _ZN3sce7Toolkit2NP9Interface12abortRequestERKj) +STUB("imlxgVJc+lE", scePerfPmcL3SetCounter) +STUB( + "imo3tv8Ly1Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEE3getEv) +STUB("impLvKHbKQs", sceClPthreadMutexattrInit) +STUB("imqLd1EUCZ4", + _ZN7WebCore32ScrollingStateFrameScrollingNode14setHeaderLayerERKNS_19LayerRepresentationE) +STUB("imqT45eFHD4", _ZNK3sce3Xml3Dom4Node14getNextSiblingEv) +STUB( + "ims9o7xTW4A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEC2EPNS2_10LibContextE) +STUB("imtNuwHQ32g", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_16SessionAttributeEED1Ev) +STUB("imxVx8lm+KM", sceFontGetHorizontalLayout) +STUB("in19gH7G040", sceNpCalloutStopOnCtx) +STUB("in6PFT5baTk", _ZN3sce2np10JsonNumberD0Ev) +STUB( + "in8cq2B5bHA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEptEv) +STUB( + "inCE6HVYyBk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEC2Ev) +STUB( + "inDDXIz+tlE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("inFEmGAXiFY", _ZN3sce7Toolkit2NP2V27Ranking7Request15GetRangeOfRanks10FIRST_RANKE) +STUB( + "inI0znKnQVw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEppEi) +STUB( + "inKCrt-K5X0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEC2EPNS2_10LibContextE) +STUB("inUgNhPrnbQ", ufieldpositer_close_59) +STUB("inWumYPZgtw", cairo_image_surface_get_width) +STUB( + "inYUzxi3gP4", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13integer9IsSetEv) +STUB("inc-kbPP4jo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEaSERS7_) +STUB("indfCXgY6JY", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEEC1Ev) +STUB("ingZw6BfAtI", + _ZNK3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform12getJoinStateEv) +STUB("inhtz+Vuc1k", scePlayReadyInitializeInitParams) +STUB( + "inmtE+1X+Q4", + _ZN7WebCore8toStringERKN3WTF6VectorINS_11ProxyServerELm0ENS0_15CrashOnOverflowELm16ENS0_10FastMallocEEE) +STUB("inwDBwEvw18", xtime_get) +STUB("inz7o6ReJxU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredTeamsEE5resetEv) +STUB( + "io-+Ahbd3dA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEEptEv) +STUB("io1t7iLOMs8", _ZN3sce7Toolkit2NP2V26Trophy7Request18GetTrophyPackGroup10BASE_GROUPE) +STUB( + "io3bPJnU8No", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEE3getEv) +STUB("io66iqcT950", mono_aot_System_ServiceModel_Webunbox_trampoline_addresses) +STUB("io8Sy3FgnqE", MvpHttpSetRecvTimeout) +STUB("ioA19fwdJlg", _ZN3JSC4Heap4sizeEv) +STUB( + "ioA46oXO-Tc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEEC2EPKS6_) +STUB("ioVn-Xe8050", FT_List_Remove) +STUB("ioaqRTOlpys", _ZN3WTF29cryptographicallyRandomValuesEPvm) +STUB("iobMkN9OlDg", ures_findSubResource) +STUB("iobQKp6kb8o", _ZN3sce2Np9CppWebApi6Common6VectorIlE5eraseENS2_8IteratorIlEERS6_) +STUB("iodpFqBdc+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEE11get_deleterEv) +STUB("iofRyXv0wqI", sceMusicCoreServerSetLaunchUser) +STUB("iorzW0pKOiA", sceGameLiveStreamingScreenOpenSeparateMode) +STUB("iot3o+WKLVI", WKPageSetCustomBackingScaleFactor) +STUB("iotdMaGY+KA", _ZN7WebCore14ReadableStream11isDisturbedERN3JSC9ExecStateENS1_7JSValueE) +STUB("iouk04mK4UY", _ZN23sceMetadataReaderWriter13KeyValueArray8allocateEPFPvmEPFvS1_EPi) +STUB("iovLyay-VDk", _ZN7WebCore11MediaPlayer25seekableTimeRangesChangedEv) +STUB( + "ioxqaxrlAkI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEE11get_deleterEv) +STUB("ip+ObaxsB3w", WKUserScriptCreateWithSource) +STUB("ip5jdmmseLE", gsharedvt_trampoline_p) +STUB( + "ipA8aeZtCYE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEEC1ERKSA_) +STUB( + "ipBVloRKSjg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE8copyFromERKS9_) +STUB("ipDQvhXBhuI", _ZNK3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayer14getCustomData1Ev) +STUB("ipLIammTj2Q", CA_MGMT_freeKeyBlob) +STUB( + "ipW0H4AsCok", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE5eraseENS2_13ConstIteratorIS9_EERSC_) +STUB("ipZRT3HMuJA", _ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequest9setZoneIdEPKc) +STUB("ipkhFNyooqg", _ZNK9Inspector15ScriptArguments11globalStateEv) +STUB( + "ipqXAzxPxgs", + _ZNK3sce2Np9CppWebApi14SessionManager2V129GetPlayerSessionsResponseBody6toJsonERNS_4Json5ValueEb) +STUB("ipqlpcIqRsQ", sceNetCtlRegisterCallbackV6IpcInt) +STUB("iprCTXPVWMI", sceNgs2ParseWaveformFile) +STUB( + "iprX6GA66yM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEEdeEv) +STUB("ipvj6WHIleA", monoeg_g_str_equal) +STUB( + "iq2F-QJJgwc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEEC1EPS8_PNS2_10LibContextE) +STUB("iq4DFmrZRs0", _ZN7WebCore9HTMLNames9alinkAttrE) +STUB("iq7Iszogzis", _ZN7WebCore17PageConsoleClient4muteEv) +STUB( + "iq7r-NF8J78", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEplEm) +STUB( + "iqAE1zUr88A", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEdeEv) +STUB( + "iqByO-kQRtE", + _ZN7WebCore15JSDOMWindowBase20queueTaskToEventLoopERN3JSC14JSGlobalObjectEON3WTF3RefINS1_9MicrotaskENS4_13DumbPtrTraitsIS6_EEEE) +STUB("iqCnLM9ZBGM", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V127ConnectionQualityProperties11getWirelessEv) +STUB( + "iqDGxH4bjrk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("iqDzICiCTY0", g_list_copy) +STUB("iqGl4S9Lo3U", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEE7get_refEv) +STUB("iqJYGVNed1E", _ZN15AbstractStorage10YoutubeAPID1Ev) +STUB( + "iqNHrhb0t9A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEmmEi) +STUB( + "iqNbO2Nuyec", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData22getxPsnAtomicOperationEv) +STUB( + "iqNk333Emng", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE8capacityEv) +STUB("iqQQW2cBmWU", sceVoiceQoSCreateRemoteEndpoint) +STUB("iqQvMQDRznY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredUsersEE3getEv) +STUB("iqS3bVfzFk4", _ZNK7WebCore6Editor17firstRectForRangeERKNS_11SimpleRangeE) +STUB( + "iqTuJKBnCMs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEC1ERS7_) +STUB("iqXnmg8XS0k", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi21ParameterToLeaveMatch10setmatchIdEPKc) +STUB("iqYJfriYQk0", sceDataTransferTargetAbortReboot) +STUB("iqYWUXf6NN4", Java_java_net_PlainDatagramSocketImpl_peekData) +STUB("iqYfxC12sak", sceNpTrophyConfigHasGroupFeature) +STUB("iqbJFecSCAw", + _ZNK3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession23getPlayerJoinableStatusEv) +STUB("iqduChZIy8w", mono_aot_Sce_Vsh_AutoMounterWrapperplt_end) +STUB("iqeXTpstIeg", WKInspectorIsProfilingPage) +STUB( + "iqgW43LmGa0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "iqjoIqxgTTU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEmmEi) +STUB( + "iqm6sy3xsoo", + _ZN3sce2Np9CppWebApi14SessionManager2V159PostPlayerSessionsSessionIdSessionMessageRequestBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_23MemberWithMultiPlatformEEEEEPKcPNS9_INS3_52PostPlayerSessionsSessionIdSessionMessageRequestBodyEEE) +STUB( + "iquUhaUH37E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEmmEv) +STUB("iqzAnluKpSc", _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody14setRulesetNameEPKc) +STUB("ir+sFk4slGE", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification14NewRoomMessageEEC1Ev) +STUB( + "ir--imY-L8M", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE8capacityEv) +STUB("ir2CzSs9K-g", sceNpMatching2SetLobbyMemberDataInternal) +STUB("ir4B5HLcYF0", scePerfPmcL2iSelectEvent) +STUB("ir5wHm8t4yQ", _ZN3sce7Toolkit2NP2V27Session7Request4JoinD1Ev) +STUB( + "ir7umO3uRk8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "ir8xkya5x4Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEED2Ev) +STUB( + "irAASOS718s", + _ZN9Inspector21InspectorRuntimeAgent10saveResultERN3WTF6StringERKNS1_8JSONImpl6ObjectEPKiRNS1_8OptionalIiEE) +STUB("irD6EyOPBZE", sceVencCreateEncoder) +STUB("irDB3eC4LOI", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessionsC2ERS5_) +STUB("irDPR3i-TRU", _ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody13unsetLocationEv) +STUB("irG0C95la6g", X509_NAME_get_index_by_NID) +STUB("irGidH1uj1g", SSL_get_fd) +STUB("irGo1yaJ-vM", _ZNSt7collateIwE2idE) +STUB("irHs+9jhAtM", _ZN7WebCore22CSSAnimationController16resumeAnimationsEv) +STUB("irKVfUXZHw4", _ZN7WebCore9HTMLNames13oninvalidAttrE) +STUB( + "irMIdh1XZF4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEixEm) +STUB("irS8Lu3UfDg", _ZN3sce3pss5orbis5video14VideoPlayerVcs17VideoCoreGetSpeedEv) +STUB("irV8voIAHDw", sceNetCtlGetScanInfoForSsidListScanIpcInt) +STUB("irYPbopbako", mono_type_is_pointer) +STUB("iraaucgzhMA", _ZN7WebCore20LowPowerModeNotifierC1EON3WTF8FunctionIFvbEEE) +STUB("irbJ-9atSSU", mono_aot_System_Reactive_Corejit_got) +STUB("irbymj7rYDU", _ZNK7WebCore10FloatPoint18constrainedBetweenERKS0_S2_) +STUB("irex3q-O6po", _ZN3sce2np14JsonDocBuilder5BuildEPcmPm) +STUB("irgXGd58omE", _ZN7WebCore13JSHTMLElementD1Ev) +STUB("irkby3g5FXk", monoeg_g_list_length) +STUB("irlyiBZcAGc", _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_8LocationE) +STUB("iroiq794arE", mono_lock_free_queue_node_init) +STUB( + "irrkrbNRvdg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB( + "irsRThyFXvE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEED2Ev) +STUB("irtH7fnwebM", _ZN7WebCore9HTMLNames15ontouchmoveAttrE) +STUB("iruPsrXCN7U", FT_Stream_Open) +STUB("irw8X-2YCWk", _ZN3sce2np14JsonObjectImpl5ClearEv) +STUB( + "is+ea8an878", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEC2EPNS2_10LibContextE) +STUB("is-XQhYPRaQ", sceKernelTriggerEport) +STUB("is2FV8Y-bMc", WKPageGetScaleFactor) +STUB( + "is4JJuPclDk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("is4RCW5UGGA", mono_build_date) +STUB("isASk6cqZ6w", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V224TestForProfanityResponse10getMessageEv) +STUB("isCrVb3LudE", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_15RankInformationEE3getEv) +STUB( + "isDhrNMt1Bk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEED1Ev) +STUB( + "isFUomZ-gs8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "isGRBBBwTwU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEC2Ev) +STUB("isGVbUCUx0A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEED1Ev) +STUB( + "isJzpBF4Xyk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEC2EPS8_) +STUB("isKya9LgL2U", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEEC1ERKS6_) +STUB( + "isMV1jXJXTI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEC2EPS8_) +STUB("isNeGe11oOo", _ZN3sce7Toolkit2NP2V28Matching12Notification14NewRoomMessage16MESSAGE_MAX_SIZEE) +STUB("isNn0YyU83c", sceNpManagerIntCheckGameNpAvailabilityA) +STUB( + "isTNIwglK1A", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEptEv) +STUB( + "isUKv5DPhGw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE3endEv) +STUB( + "isXCjS6mTI8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE8copyFromERKS9_) +STUB("isYAJ-sJJ4E", WKPreferencesGetCrossOriginResourcePolicyEnabled) +STUB("ischP2z62kA", _ZNK7WebCore23ScaleTransformOperation10isIdentityEv) +STUB("isdbBZoLdo4", _ZN7WebCore4Page31setRemoteInspectionNameOverrideERKN3WTF6StringE) +STUB( + "isf6HYHQu84", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEED2Ev) +STUB("islhay8zGWo", _LDsign) +STUB( + "islx-FRa7dI", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V116BandwidthFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_9BandwidthEEE) +STUB("isnD1tkLlTA", _ZSt9use_facetISt8messagesIcEERKT_RKSt6locale) +STUB( + "isnOhnsXYo4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEC2ERKS7_) +STUB("isoFwd2uBWI", Java_org_blurayx_s3d_ui_DirectDrawS3D_drawStereoscopic0) +STUB("isruqthpYcw", sceSharePlayInitialize) +STUB( + "iswFqihSWTc", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot9unsetsortEv) +STUB( + "isyYiAjUyF0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEC1Ev) +STUB("it-sj4lhYhU", + _ZN7WebCore22CSSAnimationController28suspendAnimationsForDocumentEPNS_8DocumentE) +STUB("it0E2JHZENE", mono_aot_Sce_Vsh_ShellCoreUtilWrapperunbox_trampolines_end) +STUB( + "it2HB6Gp-Fo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEED1Ev) +STUB( + "it2X59IDj80", + _ZN7WebCore13PathUtilities27pathsWithShrinkWrappedRectsERKN3WTF6VectorINS_9FloatRectELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEEf) +STUB("it6DDrqKGvo", _ZNSt12system_errorD2Ev) +STUB("it74w78c9NI", _ZN7WebCore19AccessibilityObject13isARIAControlENS_17AccessibilityRoleE) +STUB( + "it90JR6e378", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("itBuc3IIDaY", _ZN3sce2np4UserD2Ev) +STUB("itDGbOXx5-U", fuse_unmount_compat22) +STUB( + "itFjjauNd1A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEEC1ERSA_) +STUB("itI9vxmWDCw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE5beginEv) +STUB( + "itM-1SoGm-U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEaSERKS7_) +STUB("itO5Fz0WM-M", _ZN3sce7Toolkit2NP2V27Ranking7Request11GetGameData8MIN_PCIDE) +STUB("itPYH48kadc", umsg_getLocale_67) +STUB("itQ5jyIHDX0", _ZN3sce7Toolkit2NP2V28Presence12Notification14PresenceUpdateC1Ev) +STUB("itQXsoiYHtI", _ZN3sce2np10Cancelable15CheckCancelImplEPKciS3_) +STUB("itShJyJgqGU", _ZN3sce7Toolkit2NP2V29Messaging25GameDataMessageAttachmentC2ERKS4_) +STUB("itZ46iH14Vs", sceSaveDataGetAutoUploadConditions) +STUB( + "itiGycnEkDY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEC1EPS8_) +STUB("itioQwmJGys", cpuset) +STUB("itlWFWV3Tzc", sceScreenShotSetDrcParam) +STUB("itmWuKlMzFI", UI_set_result) +STUB("itqj2YmuAa8", _ZN3sce4Json6Parser5parseERNS0_5ValueEPFiRcPvES5_) +STUB("itsatXayviY", WKPreferencesSetCursiveFontFamily) +STUB( + "ittlzmzFS6E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEED1Ev) +STUB("itv-U5mFPso", pthread_mutex_getprioceiling) +STUB( + "iu-TVztQIys", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "iu2D0k7hojY", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V138SetMultiVariablesRequestBody_variables9setSlotIdERKi) +STUB("iu4kKrtOinI", Java_java_awt_GnmGraphicsDevice_setResolution) +STUB( + "iuAeOx1Z1Ac", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEEC2ERKSA_) +STUB("iuE2B9qKEcc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEE7add_refEv) +STUB("iuLoJwrPubs", _ZN3sce7Toolkit2NP2V27Session7Request6SearchD1Ev) +STUB("iuNtBIixjic", + _ZN3sce2Np9CppWebApi14SessionManager2V120ErrorResponseFactory7destroyEPNS3_13ErrorResponseE) +STUB( + "iuR85wzHxeI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEptEv) +STUB("iuSBiGPYMI0", _ZN7WebCore24CoordinatedGraphicsLayer10setOpacityEf) +STUB("iulVS7DGVeg", _ZN3WTF15ThreadCondition9timedWaitERNS_5MutexENS_8WallTimeE) +STUB("iuu9xmvipyE", _ZN3JSC8Profiler8Database8logEventEPNS_9CodeBlockEPKcRKN3WTF7CStringE) +STUB("iuxyxWs4Bfk", exp2ft) +STUB("iuzPnkZ56VA", _ZN7WebCore9FrameView29setAutoSizeFixedMinimumHeightEi) +STUB("iv2nCQ-ovOM", _ZN3sce2Np9CppWebApi11UserProfile2V112ErrorFactory7destroyEPNS3_5ErrorE) +STUB("iv6MXjuW8Yw", _ZN7WebCore14cookiesEnabledERKNS_21NetworkStorageSessionE) +STUB( + "iv7+B-a69z8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEptEv) +STUB("iv7V3pGPGY0", _ZN3sce7Toolkit2NP2V26Trophy17TrophyPackSummary8deepCopyERKS4_) +STUB( + "ivBpkSQIGm0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEED1Ev) +STUB("ivI59nvu564", sceDeci4hDrfpMkdir_fuse) +STUB("ivIJMuISCPo", sceIduUtilGetDownloadInstallProgress) +STUB("ivMCitpSQNk", _ZNK3sce4Json6Object3endEv) +STUB("ivOXM6LFdNM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEE3getEv) +STUB( + "ivQcJO5s7vY", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditions9terminateEv) +STUB( + "ivQw9ceobCs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEmmEi) +STUB("ivTA-wE+dQ8", monoeg_g_ptr_array_remove_fast) +STUB( + "ivTKajEc7xM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEeqERKS9_) +STUB( + "ivUIhR0MmfY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEE7add_refEv) +STUB("ivV+JQAOX+s", _ZN7WebCore11JSDOMWindow12getPrototypeEPN3JSC8JSObjectEPNS1_14JSGlobalObjectE) +STUB( + "ivYCePfNTZk", + _ZN3sce2Np9CppWebApi14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyC2EPNS1_6Common10LibContextE) +STUB("ivc0GnUuZBg", JVM_IsInterface) +STUB( + "ivd181dxyQ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE7reserveEi) +STUB("ivdx98Ki0Ms", shared_memory_area_alias) +STUB("ivkMzBxwCsY", _ZN7WebCore28InspectorFrontendClientLocal8SettingsnaEm) +STUB( + "ivli5ESknwA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEED1Ev) +STUB( + "ivmI6WJER54", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("ivnnssCwjGI", sceNpStrcpyToBuf) +STUB("ivuKrYwVA90", ucnv_openStandardNames) +STUB("ivx40etKhrY", _ZThn120_N7WebCore9DOMWindowD1Ev) +STUB("iw0H1F+gEZY", _ZN12video_parser18cMp4FFLHndlManagerD2Ev) +STUB( + "iw0R5drTHSU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEneERKS9_) +STUB("iw15QbkkAEk", uscript_getScript_59) +STUB("iw2v53NXNCI", ucnv_usesFallback_67) +STUB( + "iwBspFIZwdU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEEC2EPKS6_) +STUB("iwDNdnEGyhI", _ZN3sce2np6ObjectdlEPvR16SceNpAllocatorEx) +STUB("iwGQqOKMxec", _ZN3sce3Xml3Sax6Parser18setDocumentHandlerEPNS1_15DocumentHandlerE) +STUB( + "iwINLcuW1Zc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("iwIUndpU5ZI", _ZTSSt22_System_error_category) +STUB("iwIzwyIXewg", _ZThn112_NK7WebCore22HTMLFormControlElement12willValidateEv) +STUB( + "iwKcrld9NlI", + _ZN8meta_gen11MsvPromoter28setKeyValue_TBLAVC_IconWidthENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB("iwTNhyaemnw", sceAmprMeasureCommandSizeMapEnd) +STUB( + "iwaWZcNsMVk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo25setsetDataInfoRequestBodyENS1_6Common12IntrusivePtrINS3_22SetDataInfoRequestBodyEEE) +STUB("iwd0jQy9J1Y", _ZN3sce2np8JsonBoolD2Ev) +STUB( + "iwdUoDsf82s", + _ZN9Inspector14InjectedScript12awaitPromiseERKN3WTF6StringEbbbONS1_8FunctionIFvRS2_ONS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISA_EEEERNS1_8OptionalIbEERNSF_IiEEEEE) +STUB("iwi+agK4XO0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEEC2EPS5_PFvS7_EPNS2_10LibContextE) +STUB( + "iwjsqiQVNHY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEmmEv) +STUB("iwlTuTM4oOg", GCC_except_table285) +STUB( + "iwrPvi63iiA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEE7get_refEv) +STUB("iwsJdAZCg34", sceVideoOutSysDeleteVblankEvent) +STUB("iwv8mgvlcms", _ZN7WebCore9HTMLNames16ongestureendAttrE) +STUB("ix+R6upTWRo", _ZN7WebCore7CSSRule10setCssTextERKN3WTF6StringE) +STUB("ix4LWXd12F0", sceNetDhcpGetInfo) +STUB( + "ix6x24NzOPQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEED1Ev) +STUB( + "ix9IpMfnIOM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEmmEv) +STUB("ixD7MUb3poQ", __ubsan_handle_nonnull_return_abort) +STUB("ixHnZ0gYK+g", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed13UsersWhoLikedEED2Ev) +STUB("ixJAz92H1uE", _ZN3sce4Json5Array6insertERKNS1_8iteratorERKNS0_5ValueE) +STUB("ixJxLrgomC4", _ZN4Manx8X509cinf6issuerEv) +STUB("ixMHFqbt4-g", mono_aot_System_Datajit_got) +STUB( + "ixPEBUlouA4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEC2ERS7_) +STUB("ixQohNmWY6A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEEC2EPS6_) +STUB("ixTq0u9X6h0", sceVrTrackerGetState) +STUB("ixWEOmOBavk", _Fetch_or_8) +STUB("ixaGkKXBrjE", mono_btls_x509_store_peek_store) +STUB( + "ixgjvLBsv2g", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfile16unsetlanguageSetEv) +STUB("ixnd2US2oe8", _ZSt9use_facetISt5ctypeIcEERKT_RKSt6locale) +STUB( + "ixrswyNFkxE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE7popBackEv) +STUB("ixrw0h2tWuI", chflags) +STUB( + "ixry7bm+gjY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEE21intrusive_ptr_add_refEPS7_) +STUB( + "iy-uvy4s7ig", + _ZN7CoreIPC18MessageReceiverMap18addMessageReceiverENS_15StringReferenceEPNS_15MessageReceiverE) +STUB("iy1lPjADRUs", _ZTSSt14overflow_error) +STUB( + "iy2z17uqT6c", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB("iy4Obm4ndrg", _ZN3sce2Np9CppWebApi13InGameCatalog2V55Error14setReferenceIdEPKc) +STUB("iy5583blIG4", g_ascii_tolower) +STUB( + "iy6xhcQdqV8", + _ZN3sce7Toolkit2NP2V212ActivityFeed8setLikedERKNS3_7Request8SetLikedEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("iy9MA4qPbh4", + _ZN3sce2Np9CppWebApi12Leaderboards2V113ErrorResponseC1EPNS1_6Common10LibContextE) +STUB( + "iyBGMmsQ-vw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEplEm) +STUB( + "iyBLFfd5+VM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE8copyFromERKS9_) +STUB( + "iyMxJDOjDQI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE8copyFromERKS9_) +STUB("iyO3rE9DGJc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEC1Ev) +STUB("iySvHLi9FM8", _ZN3sce7Toolkit2NP2V26Trophy15TrophyPackGroupD1Ev) +STUB("iyTnezpw1jE", sceSlimglCompositorSetIndirectRenderTargetConfigCommand) +STUB( + "iyUXb4Qe5YY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEC2Ev) +STUB("iyVtm-sSA6M", + _ZN12video_parser20cVideoContentFactory23_releaseVideoContentMp4EPNS_13iVideoContentE) +STUB( + "iyZCsolZfb8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEE7add_refEv) +STUB( + "iyZgSC1984Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE7popBackEv) +STUB( + "iyalXKe35yM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE8copyFromERKS9_) +STUB("iybiXHCbg48", _ZN3sce3pss4core8graphics6OpenGL25GetTextureFormatComponentENS2_11PixelFormatE) +STUB("iycxBMYLgHQ", _ZNK7WebCore11MediaPlayer15extraMemoryCostEv) +STUB("iyd2TyRXfuw", _ZN7WebCore9HTMLNames5tdTagE) +STUB( + "iymftKYZUXg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEC2Ev) +STUB("iyv2v10Y3ho", ures_getStringByIndex) +STUB("iyxzbQoTQO0", _ZN7WebCore8Settings25setUserStyleSheetLocationERKNS_3URLE) +STUB("iyzkWLmgruc", _ZN3JSC12HeapCellTypeD0Ev) +STUB("iz-vTGZcvzM", _ZN7WebCore9InlineBox16placeEllipsisBoxEbfffRfRb) +STUB("iz2shAGFIxc", hypotf) +STUB("iz4u5YcAPsE", ucnv_getStandard) +STUB("iz5C+vluGos", _ZN12video_parser5vpcom8datetime8DateTime13SetDateFormatEPKw) +STUB("iz5PAz+EgqE", _ZN3sce2np13JsonDocParser13onObjectValueEjjPKcNS0_10JsonParser9ValueTypeES3_) +STUB("izHqoD2bQQ8", __tsan_vptr_update) +STUB( + "izLkdjWVAbc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("izM7cVJlAKQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEC1ERKS7_) +STUB("izMQ9Oh4YQ4", ures_getSize_67) +STUB( + "izOdP6awnFI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEdeEv) +STUB("izT0rbXh7oA", sceCesBig5ToUtf32be) +STUB( + "izX-mAkkO0s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEC1EPS8_) +STUB("izXyehpoZGo", sceUltSemaphoreDestroy) +STUB("izc6IhllvRE", mono_bitset_intersection) +STUB("izdZg08ZJlo", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18SessionInformationEED2Ev) +STUB("izfIVmcJB4o", sk_value) +STUB("izfIZqB40b4", _ZNK7WebCore31SimplifiedBackwardsTextIterator5rangeEv) +STUB( + "izgCLnu8XJQ", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEEiRNS2_10LibContextEPT_m) +STUB( + "izjwfc14bC8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE21intrusive_ptr_add_refEPS7_) +STUB("izmoTISVoF8", _ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED0Ev) +STUB("iznUQSSxY60", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEED2Ev) +STUB("izo3BrmWZDM", sceShellCoreUtilIsImposeScreenOverlaid) +STUB( + "izoz91q-haU", + _ZN3sce2Np9CppWebApi12Leaderboards2V111UserFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_4UserEEE) +STUB( + "izrsVo+K-No", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEppEv) +STUB("izssDkN7IAU", sceVideoCoreInterfaceCloseCanvas) +STUB( + "izvEeQH5dOo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE3endEv) +STUB("izvHhqgDt44", sceHttp2SetRecvTimeOut) +STUB("izyV4of1nnA", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V129MatchCompletionRateProperties7getQuitEv) +STUB("izyh9+H3NvA", _ZN3sce7Toolkit2NP2V211SharedMedia10BroadcastsC2Ev) +STUB("j+0RsD6afKQ", rgctx_fetch_trampoline_rgctx_36) +STUB( + "j+7i9HB+Bmg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE6resizeEj) +STUB( + "j+BJIRupgqo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEmmEv) +STUB( + "j+CDcJK0h9A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("j+DwM4iALVI", _ZN7WebCore19serializationForCSSENS_5SRGBAIhEE) +STUB( + "j+IsaIntR8M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEC1EPNS2_10LibContextE) +STUB("j+LRQ7Jimxs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEE7get_refEv) +STUB( + "j+P+IumzUhU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEaSERKS9_) +STUB( + "j+QDOPGp7UE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE8copyFromERKS9_) +STUB("j+TbPIM9h4w", _sceNpManagerDefaultReallocImpl) +STUB("j+XjoRSIvwU", fdopendir) +STUB("j+XnpNHKrGw", delegate_invoke_impl_target_10) +STUB("j+YazVrEz2I", + _ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody22centerToEdgeLimitIsSetEv) +STUB("j+cIshORypg", GCC_except_table488) +STUB( + "j+iNdae6U1E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("j+nH8y+uKK8", _ZN12video_parser12cVpFileCache7getNextEPNS0_10_CacheInfoE) +STUB("j+nM17IrP6A", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEEC1Ev) +STUB( + "j+rfx4b+BCY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEC2EPNS2_10LibContextE) +STUB( + "j+rkZ5zn1Fc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE3endEv) +STUB( + "j+vYxBZcE9M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEEptEv) +STUB( + "j+whEmXX0UE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEC1Ev) +STUB("j+zRqzTSOVM", _ZNK3sce2Np9CppWebApi14IdentityMapper2V311PsnWebError6toJsonERNS_4Json5ValueEb) +STUB("j-2A6uWa4QI", _Z26Ime_KbdGetResourceIdNativemPj) +STUB("j-4S7wJkl-w", mono_set_hazard_table) +STUB( + "j-9x-eqjHrA", + _ZN7WebCore14DOMCacheEngine15queryCacheMatchERKNS_15ResourceRequestERKN3WTF3URLEbRKNS4_7HashMapINS4_6StringES9_NS4_11DefaultHashIS9_EENS4_10HashTraitsIS9_EESD_EERKNS_17CacheQueryOptionsE) +STUB( + "j-BEPh9x3So", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("j-CnRJn3K+Q", sceUserServiceGetNpMAccountId) +STUB( + "j-DtpR+c-L8", + _ZN9Inspector24RuntimeBackendDispatcher5parseElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("j-Fnm8OaiKc", sceSystemLoggerTerminate) +STUB( + "j-Fwh0bKH6Y", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("j-GWi2OpAEc", sceVisionManagerSetCallbackForUpdateCalibrateTrackingLedResult) +STUB( + "j-Jt1z2pvRo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEED1Ev) +STUB("j-K44AmyTaY", _ZN3sce2Np9CppWebApi6Common8IteratorIlEC2Ev) +STUB( + "j-La7-Hq-Vw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEC1Ev) +STUB("j-N8TB-WFjA", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchDetailC1Ev) +STUB( + "j-N9Ws85bE8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEEaSERSA_) +STUB("j-NhaWA0Xgk", _ZNK7WebCore29DeprecatedCSSOMPrimitiveValue14getStringValueEv) +STUB("j-Op3ibRJaQ", sceNetThreadCreate) +STUB("j-Pu-THdpi4", mono_aot_I18N_Otherunwind_info) +STUB( + "j-QZn56ugN8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEppEi) +STUB( + "j-VGVDwB5AE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEEcvbEv) +STUB( + "j-ZbdLhmnCo", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ErrorFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_5ErrorEEE) +STUB("j-acUK9BWpY", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEEdeEv) +STUB("j-b-RFZ3gjw", sceAvSettingGetCurrentOutputMode2_) +STUB( + "j-bIlKHza8E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEmmEv) +STUB("j-erESxNyYE", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE8capacityEv) +STUB("j-gWL6wDros", getifaddrs) +STUB( + "j-hzQs4aTnk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "j-hzRrb1IaE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEC1Ev) +STUB("j-iD1Vbj+IE", s_StdThreadStackSize) +STUB("j-jTOqQ3bjk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEED1Ev) +STUB("j-n92pIpS6U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEaSERS7_) +STUB("j-uMQE+unFY", FT_New_Face) +STUB("j-yHzjm7S74", mono_counters_register_with_size) +STUB("j-zFZRfydsU", png_set_read_user_chunk_fn) +STUB("j-zdtWpCiV4", _ZN8meta_gen17CommonFsOperationD1Ev) +STUB("j0+3uJMxYJY", sceAmprCommandBufferWriteAddress_04_00) +STUB("j01txBCp5tk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeaders7destroyEPS5_) +STUB("j08bZ+o5M1A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE3endEv) +STUB("j0HV+Bc6FPw", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE7reserveEi) +STUB("j0OYQ70uQn0", uprv_log) +STUB("j0OeB4hZBWI", u_digit_67) +STUB("j0Q9ljGaFNE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEEC2Ev) +STUB("j0Vj8xWPy14", _ZN3WTF28numberToFixedPrecisionStringEfjRSt5arrayIcLm123EEb) +STUB("j0WdRf7bUMY", WKCredentialCreate) +STUB( + "j0d-KpxDp7Y", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo24unsetxPsnAtomicOperationEv) +STUB( + "j0i8dAhTv7c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "j0l3J1J28hU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE5clearEv) +STUB("j0m47fCuGj4", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification18NewGameDataMessageEE3setEv) +STUB("j0n2i6H5JeA", _ZN7WebCore4Text16replaceWholeTextERKN3WTF6StringE) +STUB("j0tDpWrJxyo", _ZN3sce7Toolkit2NP2V27Ranking12FriendsRanks5resetEv) +STUB( + "j0x77FTVJMw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEC1EPS8_) +STUB("j0yZCTA9wys", WKPreferencesGetApplePayEnabled) +STUB( + "j13MCgl9-r4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEixEm) +STUB("j1BG8L+rras", SwCtrlManagerStartActivateSession) +STUB("j1F9eNv4e0c", isExpectedMessage) +STUB("j1ITE-EoJmE", sceMoveInit) +STUB("j1L-q8-sQg8", _ZN3sce7Toolkit2NP2V28Commerce14ProductDetails5resetEv) +STUB("j1LyMdaM+C0", sceJpegEncDelete) +STUB("j1S-XMUmCwM", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112GroupingTypeEEC1Ev) +STUB("j1YsEXl5ta4", sceNpPushUnsetNpCommunicationId) +STUB( + "j1blA3bMh9I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "j1cs4nhp0a0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEE7get_refEv) +STUB("j1gwidKnfz4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEE5resetEPS6_) +STUB("j1mZE2GdKgs", uprv_decNumberIsNormal_67) +STUB("j1nvYqvAO1g", rgctx_fetch_trampoline_mrgctx_101_p) +STUB("j1pXItWmu1M", _ZN12video_parser12cVpFileCache8finalizeEv) +STUB("j1qEC6CZgpQ", glGetSynciv) +STUB( + "j1qHv87hqj0", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetrics18setConfidenceScoreERKi) +STUB("j1rSbhWbnmQ", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product16releaseDateIsSetEv) +STUB("j1tigGPnmsQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V115SearchAttributeEEdeEv) +STUB("j1ukOHaatOk", rgctx_fetch_trampoline_mrgctx_42) +STUB( + "j1vMqZr0tvg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEC2EPKS8_) +STUB("j1zryfXHL2k", _ZN3sce2np10JsonStringD0Ev) +STUB("j2-q2HpgmFg", _ZN7WebCore11MediaPlayernwEm10NotNullTagPv) +STUB("j235LpT0WFc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEE7get_refEv) +STUB("j29PIUfIRxQ", _ZN3sce2Np9CppWebApi6Common6VectorIlE5clearEv) +STUB("j2AIqSqJP0w", sceKernelGetdents) +STUB("j2AMaJozbro", JVM_EnableCompiler) +STUB("j2C9no3P4Nw", sceAmprAmmCommandBufferMultiMap) +STUB("j2CZH3AwxZI", _ZNK3sce2np14JsonObjectImpl17fieldSetFindFieldEPNS1_8FieldSetEPKc) +STUB( + "j2EjFs0iVgs", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_11ProductInfoENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB("j2G7tIS3o5s", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectIdaSERS5_) +STUB("j2NwFclwf9M", _Z18attachIpcChannelExiPKciiiPi) +STUB("j2SETV7drVI", delegate_virtual_invoke_imt_m_2_p) +STUB( + "j2Z5IvjUQJY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE3endEv) +STUB("j2a9vp46UWM", il2cpp_class_is_valuetype) +STUB("j2dSNi+SJro", sceNpAsmInitialize) +STUB("j2in3S4xf+0", sceTsOpenFile) +STUB("j2k+klaay8Y", _ZN7WebCore9ImageDataD1Ev) +STUB("j2lfh-PL7L0", mono_aot_Sce_Vsh_Np_Papcjit_got) +STUB("j2vvLyM-NNE", _ZN3sce7Toolkit2NP2V24Core11RequestBaseC2ERKS4_) +STUB("j2xKmRzIV84", cairo_font_options_create) +STUB( + "j32f5MaAyZ0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEE21intrusive_ptr_add_refEPS7_) +STUB( + "j36dWh2kxAE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEneERKS9_) +STUB("j3EtxFkSIhQ", sceAgcAcbDispatchIndirect) +STUB("j3Exaiwjo2g", YGNodeLayoutGetTop) +STUB( + "j3F3QzmXqlw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "j3FSFIKBzOg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEptEv) +STUB("j3FpjemL6Zg", sceNpTrophy2SystemGetTrophySetArray) +STUB("j3IrOCL+DmM", sceSystemStateMgrIsStandbyModeEnabled) +STUB("j3P4hIbbQc0", _ZN7WebCore9HTMLNames15dispositionAttrE) +STUB("j3WrMuzfvz8", uprv_isNaN) +STUB("j3YMu1MVNNo", sceUserServiceInitialize) +STUB("j3YaVPByfqs", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEEaSERS7_) +STUB( + "j3Yh72KT6zI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEaSERKS9_) +STUB("j3Z0VFl6RJM", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V113SubtaskStatusEEmmEi) +STUB( + "j3aXjDcaw44", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEE7add_refEv) +STUB( + "j3dOrbh-Pnk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEE7add_refEv) +STUB("j3eK5GZ-gls", u_setDataDirectory_67) +STUB( + "j3io9btC+1Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEmmEi) +STUB( + "j3l0WIhvHgo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEED2Ev) +STUB("j3liMSP+NcA", _ZN9Inspector18InspectorHeapAgent8snapshotERN3WTF6StringEPdPS2_) +STUB( + "j3oQXKZOsIk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEC1EPNS2_10LibContextE) +STUB( + "j3tmkBq+mvA", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13boolean7IsSetEv) +STUB( + "j3x+R7iDl+U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEE7get_refEv) +STUB("j43P62s5SX4", sceVoiceChatTerminate) +STUB("j4BUeihXWh8", uprv_maxMantissa) +STUB("j4H2Di0rC3Q", + _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse22setMatchStartTimestampEPKc) +STUB("j4H6h1tAvg8", mono_aot_platformjit_code_start) +STUB("j4IAvbKKTzw", _ZN3sce2np14CalloutContextC2Ev) +STUB( + "j4J1raF8Tz8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE4sizeEv) +STUB("j4Kelbss-6w", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_19UserRankInformationEED1Ev) +STUB("j4OuYrBmx60", _ZN7WebCore21DiagnosticLoggingKeys26entryWronglyNotWarmedUpKeyEv) +STUB( + "j4POQZ8hGpE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE5emptyEv) +STUB("j4ViWNHEgww", strlen) +STUB( + "j4ZLNrl0JfY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("j4br8LciwPE", _ZTVN7WebCore8DOMTimerE) +STUB("j4emHHndCPY", sceAgcDcbSetIndexBufferGetSize) +STUB( + "j4f06s+bQS0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEppEi) +STUB("j4gLOIpHgNk", _ZN3sce2np10Cancelable14SetupSubCancelEPS1_PKciS4_) +STUB("j4h82CQWENo", sceSystemGestureUpdateTouchRecognizer) +STUB("j4janbBSgyg", uprv_decNumberNextPlus_67) +STUB("j4jpidD-Itk", WKPreferencesSetPaintTimingEnabled) +STUB("j4kIUS5T3TY", _ZN7WebCore14ResourceHandle12firstRequestEv) +STUB("j4kQYtkzNCY", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_26ActivityFeedCondensedStoryEE10deallocateEPS3_m) +STUB("j4kySXsCM5k", + _ZN7WebCore8FormData15appendFileRangeERKN3WTF6StringExxNS1_8OptionalINS1_8WallTimeEEE) +STUB( + "j4mkkWeoIx0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEEC1Ev) +STUB("j4qPZlQyJUc", _ZN3WTF13printInternalERNS_11PrintStreamEh) +STUB( + "j4qwgiMAz4U", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB("j4xqWctK0UQ", sceAppInstUtilAppGetCompilationDiscInfo) +STUB("j4yXIA2jJ68", sceSystemGestureClose) +STUB("j4znY2-cjNY", _ZNK3sce2Np9CppWebApi7Matches2V120RequestPlayerResults11getPlayerIdEv) +STUB( + "j563bYYKWOs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEptEv) +STUB("j56l9dX6pCI", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIlEdeEv) +STUB( + "j5C44K+duZs", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities26GetUsersActivitiesResponseC2EPNS1_6Common10LibContextE) +STUB("j5Q5zC+A3EM", _ZN7WebCore11DisplayList4ClipC1ERKNS_9FloatRectE) +STUB( + "j5QFq42p1W0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE7popBackEv) +STUB("j5SUJcQbn4Y", WKAuthenticationDecisionListenerGetTypeID) +STUB("j5UQRzykv-I", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE7popBackEv) +STUB( + "j5XK45e3Y6M", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetBoolean9Ev) +STUB( + "j5arlAYXQWQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEppEv) +STUB("j5gK4TdLd8Q", WKUserContentURLPatternIsValid) +STUB("j5h-Y5tFBL8", _ZN3sce7Toolkit2NP2V211SharedMedia10BroadcastsaSERKS4_) +STUB("j5isFVIlZLk", sceCameraSetAppModuleFocus) +STUB( + "j5uIFJtW29w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE7popBackEv) +STUB("j5y1mezPKxE", _ZN12video_parser5vpcom16DirectoryGetNextE) +STUB( + "j64eAmSsLsw", + _ZN7WebCore26MessagePortChannelRegistry26checkRemotePortForActivityERKNS_21MessagePortIdentifierEON3WTF17CompletionHandlerIFvNS_26MessagePortChannelProvider11HasActivityEEEE) +STUB("j64frMoWiJY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEE7add_refEv) +STUB("j64iXjsjnCY", aio_fsync) +STUB("j66aa9OsmyU", _ZNK7WebCore29PerspectiveTransformOperationeqERKNS_18TransformOperationE) +STUB("j6AZ9q1Cob0", WKPreferencesGetKeygenElementEnabled) +STUB("j6CorpmdjRk", _ZN3sce2np14CalloutContext4InitEPKcimm) +STUB("j6FgkXhxp1Y", sceUserServiceSetNpOfflineAccountAdult) +STUB( + "j6GHjTx-1-Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEdeEv) +STUB( + "j6H78w7hZFg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEC1ERS7_) +STUB("j6I6HP9OivU", _ZN3sce7Toolkit2NP2V26Friend12BlockedUsersC1Ev) +STUB("j6LAEE-1npg", sceDataTransferTargetRequestDeactivate) +STUB("j6OnScWpu7k", mbrlen) +STUB( + "j6QQjNlRtKM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEEaSERSA_) +STUB("j6RaAUlaLv0", sceVideoOutWaitVblank) +STUB( + "j6RogAOKsLM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE8copyFromERKS9_) +STUB( + "j6UlMwm9ZxU", + _ZN3JSC19ArrayBufferContentsC2EPvjON3WTF6RefPtrINS2_10SharedTaskIFvS1_EEENS2_13DumbPtrTraitsIS6_EEEE) +STUB( + "j6VCQDJmu-o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("j6Wk8AtmVQM", CERT_validateCertificateWithConf) +STUB("j6WqMm+R1HQ", ucnv_compareNames) +STUB( + "j6bojbSAuAg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE8capacityEv) +STUB( + "j6dlta6+3uo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB("j6mSQs3UgaY", sceGnmRegisterOwnerForSystem) +STUB("j6mWU1nccSQ", _ZNK7WebCore16HTMLImageElement1yEv) +STUB("j6oWzyuDal4", _ZN3sce2np12NpTitleTokenC1Ev) +STUB("j6pkkO2zJtg", sceNetShowIfconfigForBuffer) +STUB("j6qwOi2Nb7k", _ZTVSt16nested_exception) +STUB( + "j6rJkeT7-To", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessions17getacceptLanguageEv) +STUB( + "j6sG770TGE4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE4sizeEv) +STUB( + "j6sSBLWcSpg", + _ZN3sce2Np9CppWebApi14SessionManager2V132FriendJoinedPlayerSessionFactory7destroyEPNS3_25FriendJoinedPlayerSessionE) +STUB("j6zuRCqOTlw", ures_openAvailableLocales) +STUB("j7-jaGWCsyU", _ZN23sceMetadataReaderWriter15ParserInfoTableC2Ev) +STUB("j72lst7BFuc", sceLncUtilAddLocalProcess) +STUB("j73YDHCERVw", _ZN3NTF17URLRequestDataJob10initializeEb) +STUB("j74sHzT1ZAM", _ZN7WebCore19toJSRemoteDOMWindowERN3JSC2VMENS0_7JSValueE) +STUB("j77S9-f8qpM", _ZN3sce7Toolkit2NP2V29Messaging25GameDataMessageAttachmentC1Ev) +STUB("j7Br6V1D-BQ", _ZThn24_N9Inspector22InspectorDebuggerAgent21breakpointActionSoundEi) +STUB("j7DlalBzHh8", sceShareUtilityInitializeEx2) +STUB( + "j7Ek862UY1Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE8capacityEv) +STUB("j7Evw9-OEfo", + _ZN7WebCore17JSDOMRectReadOnly15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("j7J7DtkLt9A", WTFLogVerbose) +STUB("j7Jk3yd3yC8", vscanf) +STUB("j7Jq3g6W0Dg", delegate_virtual_invoke_imt_17_p) +STUB( + "j7RzI2p024Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("j7UBWKZMdkM", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEEC2Ev) +STUB("j7cPZ0+LO50", sceAppInstUtilAppGetStoreCompilationDiscInfo) +STUB("j7e7EQBD6ZA", _ZNSt6_MutexD2Ev) +STUB( + "j7jNxqtgF9E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEaSERS8_) +STUB("j7lQdOHSaMU", _ZN7WebCorelsERN3WTF10TextStreamENS_17CompositeOperatorE) +STUB("j7lvkiMu1Sg", sceFaceDetectionLocal) +STUB( + "j7tIvvali+Y", + _ZN8meta_gen11MsvPromoter29setKeyValue_TBLAVC_IconOffsetENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB("j7th-avmyV4", _ZN3sce7Toolkit2NP2V27Ranking7Request11GetGameDataD2Ev) +STUB("j7xEQQxEwhU", mono_environment_exitcode_set) +STUB( + "j7y1sZVZ8LA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEE7get_refEv) +STUB( + "j7yOwLuDXBg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEdeEv) +STUB("j84nSG4V0B0", copysignl) +STUB( + "j87SoKO0XQs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEED2Ev) +STUB( + "j87mIZ54gMY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE3endEv) +STUB( + "j88I7jHo5tU", + _ZN7WebCore15GraphicsContextC2ERKN3WTF8FunctionIFSt10unique_ptrINS_19GraphicsContextImplESt14default_deleteIS4_EERS0_EEE) +STUB( + "j88jXBckt1o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEEC2EPS8_PNS2_10LibContextE) +STUB("j8AuwriYA+o", _ZN7WebCore11MathMLNames13annotationTagE) +STUB( + "j8DHJfHb8SU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEEC2ERKSA_) +STUB( + "j8DwX36HWKY", + _ZN3JSC8JSObject23putDirectNativeFunctionERNS_2VMEPNS_14JSGlobalObjectERKNS_12PropertyNameEjNS_14NativeFunctionENS_9IntrinsicEPKNS_6DOMJIT9SignatureEj) +STUB( + "j8GaWERLGPw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEC2EPKS8_) +STUB( + "j8Q7SBgMm28", + _ZN3sce4Json11Initializer36setGlobalElementAccessFailureHandlerEPFviPKNS0_6StringEPKmPKNS0_5ValueES9_PvESA_) +STUB( + "j8Rq8pd+Qec", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeaders15getCacheControlEv) +STUB("j8SPG6WjVhk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEE3getEv) +STUB( + "j8XXYWzAm9w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEEaSERKSA_) +STUB( + "j8cJ3ObVUrQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEixEm) +STUB( + "j8oYd8uo-oE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE21intrusive_ptr_sub_refEPS9_) +STUB("j8pbpwtszFM", rgctx_fetch_trampoline_mrgctx_31_p) +STUB( + "j8whp32xTOc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE4sizeEv) +STUB("j8xKtiFj0SY", sceSaveDataGetEventResult) +STUB("j8xl+92A0q4", sceVideoOutSubmitEopFlip) +STUB("j8yt5Jk44pk", SSL_CTX_load_verify_locations) +STUB( + "j9+PnSjSGrc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEEC2ERKSA_) +STUB("j9+w19BOaT0", ucnv_getNextUChar_67) +STUB("j97CjKJNtQI", _ZTIs) +STUB("j98LdSGy4eY", sceRemoteplayGeneratePinCode) +STUB( + "j99n-cKanas", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEEC2ERSA_) +STUB( + "j9AjWtsreNk", + _ZN7WebCore14SecurityPolicy29addOriginAccessWhitelistEntryERKNS_14SecurityOriginERKN3WTF6StringES7_b) +STUB("j9BmDmq3slM", qone) +STUB( + "j9FBAp7B29w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEppEi) +STUB("j9G2WldyfZc", _ZN3JSC8Debugger17stepOutOfFunctionEv) +STUB( + "j9HculGfCSk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEC1Ev) +STUB("j9HpuzNsCTg", _ZThn8_N3sce2np9HttpTrans5WriteEPNS0_6HandleEPKvmPm) +STUB("j9HxSZFGRtI", mono_aot_ReactNative_PUIplt) +STUB("j9LU8GsuEGw", + _ZNKSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecPK2tmPKcSB_) +STUB( + "j9LVJyJjbQI", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEiRNS2_10LibContextEPT_m) +STUB("j9SGTLclro8", _Sincos) +STUB( + "j9Ux8Hkli4g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEEC1ERKSA_) +STUB( + "j9Wi06CTpjI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEEC1Ev) +STUB( + "j9XPYaU-Ft0", + _ZN7WebCore21NetworkStorageSession41setDomainsWithUserInteractionAsFirstPartyERKN3WTF6VectorINS_17RegistrableDomainELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("j9Xt85krooc", sceVoiceQoSDisconnect) +STUB( + "j9b3toPxNk4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEC2ERKS7_) +STUB( + "j9hK9wZMVaU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEdeEv) +STUB("j9i2nZjXvhY", Java_java_util_zip_Inflater_init) +STUB( + "j9jhU5-BfS8", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEED1Ev) +STUB("j9kPTcevisQ", _ZN7WebCore18proxyServersForURLERKN3WTF3URLE) +STUB( + "j9mP-g3HrC4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("j9q57kmgqGc", _ZN3sce7Toolkit2NP2V210Tournament25BracketInformationOfMatchD1Ev) +STUB( + "j9tDhZW4aLE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEppEi) +STUB("j9uGt-TQu74", __tsan_atomic16_fetch_nand) +STUB( + "j9uXbxu3EnU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "j9v+66-K6OI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "j9wQqnUZB9M", + _ZN7WebCore18JSHTMLVideoElementC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_16HTMLVideoElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB("j9yaF1MkGiM", _ZN7WebCore24CoordinatedGraphicsLayer19notifyFlushRequiredEv) +STUB( + "j9znSJuohv8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEE5resetEPS9_) +STUB( + "j9zsQ1hhJ0w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEE7add_refEv) +STUB("jA629PcMCKU", sceSystemServiceGetRenderingMode) +STUB("jA7tDJn-WKI", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V15Error11unsetSourceEv) +STUB("jA8zOzBRX28", BIO_s_file) +STUB( + "jADkWI1Zlqw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEmmEv) +STUB( + "jAE7LH-koHM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEptEv) +STUB( + "jAEymaynqsQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE3endEv) +STUB( + "jAGblwqhdoo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEE5resetEPS6_) +STUB( + "jAHWe9JoK1U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEC1Ev) +STUB("jAIjl2KoR0E", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIlEptEv) +STUB( + "jAJoGOxJAjo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEneERKS9_) +STUB("jALEBkxiGfU", + _ZN9Inspector27InspectorFrontendDispatcher25evaluateForTestInFrontendERKN3WTF6StringE) +STUB("jAO1IJKMhE4", _ZNSt12bad_weak_ptrD1Ev) +STUB("jAOJ75hWzxU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEC2Ev) +STUB("jAPophT9JM4", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEEmmEi) +STUB("jAQVKoDldcU", _ZN7WebCore18PrewarmInformationnaEm) +STUB( + "jAQyEYtMD70", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_13FriendsOfUserENS1_15AppSTLAllocatorIS5_EEEEC1Ev) +STUB( + "jAXgQhT5nQk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "jAc86M302as", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditionsD1Ev) +STUB("jAcYd5Y8NWM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEEC2EPS6_) +STUB("jAdFu-lCZA0", + _ZN3sce2Np9CppWebApi14IdentityMapper2V342PsnWebError_error_validationConstraintInfoD2Ev) +STUB( + "jAdL878Rz-k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("jAdSBeLn2AQ", mono_metadata_decode_row_col) +STUB("jAhKX3VQzow", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEEC2Ev) +STUB( + "jAmyqZBu7fA", + _ZN3sce2Np9CppWebApi14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyD2Ev) +STUB("jAnSKbNmc6U", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11ProductInfoEEC1Ev) +STUB("jApc7NzpYJE", _ZN7WebCore9HTMLNames9allowAttrE) +STUB( + "jAqiU184smU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE6resizeEj) +STUB( + "jAstE+lkQCs", + _ZN3sce2Np9CppWebApi14SessionManager2V167PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_12JoinableUserEEEEEPNS9_INS3_60PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEE) +STUB( + "jAz2V+LPbrM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEE7get_refEv) +STUB( + "jAzQsY8y-ig", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEdeEv) +STUB("jB0PrHhQOZ8", WKBundleFrameGetFrameLoadState) +STUB( + "jB3FyW6yAbw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "jB4DwKnFywc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEeqERKS9_) +STUB("jB7tY3dNbcw", _ZN7WebCore10Pasteboard4readERNS_19PasteboardPlainTextE) +STUB("jB92woGZxrk", _ZN7WebCore8Document7hitTestERKNS_14HitTestRequestERNS_13HitTestResultE) +STUB("jBAPhO31KZw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEcvbEv) +STUB("jBCTMwQx7K4", _ZN3sce7Toolkit2NP2V28Matching7Request20SetInitConfigurationC2Ev) +STUB( + "jBCgClIH0MA", + _ZN3sce2Np9CppWebApi7Matches2V127RequestTeamStatisticFactory7destroyEPNS3_20RequestTeamStatisticE) +STUB("jBGJot7XZDQ", _ZN7Nicosia6Buffer25waitUntilPaintingCompleteEv) +STUB("jBGTcK8HeTc", _ZN3JSC13BooleanObjectC1ERNS_2VMEPNS_9StructureE) +STUB("jBIo6xRVzfo", mono_aot_Sce_Vsh_SyscallWrapperjit_code_start) +STUB("jBLdb1Znt1M", _ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody11offsetIsSetEv) +STUB("jBOZAv6CwkM", _Cnd_init_with_default_name_override) +STUB("jBQzLU+jJUI", _ZN12video_parser7cVpUtil12vp_ff4_fsizeEPvPm) +STUB("jBS6-ydg+A4", _ZN7WebCore13JSDOMRectList15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "jBUkUW2f+7o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEC2Ev) +STUB("jBVoh5di2zk", _ZN7WebCore23AuthenticationChallengeC2Ev) +STUB( + "jBYFGpE6DZY", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS2_6VectorINS5_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS5_INS8_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("jBaSw8hlwdc", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getAllSubtitleLangs) +STUB( + "jBcB9Hv6eNs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEE5resetEPS9_) +STUB("jBcOuEYwXwY", _ZN7WebCore13ContainerNode17getElementsByNameERKN3WTF6StringE) +STUB("jBgBjAj02R8", sceAcmContextDestroy) +STUB("jBkFz78vRDI", _ZNK3sce2Np9CppWebApi13InGameCatalog2V55Image9getFormatEv) +STUB("jBm03rIbPXw", _ZNK7WebCore4Node12lookupPrefixERKN3WTF10AtomStringE) +STUB("jBntlBiKty8", sceAc3EncDeleteEncoder) +STUB("jBtjPMotXo0", _ZNK7WebCore12SharedBuffer11toHexStringEv) +STUB("jBvd6kiGl5I", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_16SessionAttributeEE10deallocateEPS3_m) +STUB("jByWsFYID18", + _ZN3sce2Np9CppWebApi14SessionManager2V118LeaderWithOnlineId11setOnlineIdERK13SceNpOnlineId) +STUB( + "jC41bNFSgaE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEmmEi) +STUB( + "jC4MOLcT90M", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEneERKS9_) +STUB("jC7tfYoad5s", _ZN3WTF15charactersToIntEPKDsmPb) +STUB("jCBI51XHSWE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEEeqERKS7_) +STUB("jCBPNeftkkc", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V117ConnectionQuality9getGlobalEv) +STUB( + "jCHpSCtnq6U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEixEm) +STUB( + "jCHrFcVLx70", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE8capacityEv) +STUB("jCIWDGnwISI", _ZN3sce7Toolkit2NP15AppSTLAllocatorISbIcSt11char_traitsIcENS2_IcEEEEneERKS7_) +STUB("jCJ+gks483A", sceShellCoreUtilGetCrashReportFilterInfoStart) +STUB("jCJEWuExbZg", sceNpManagerIntGetLastAccountLanguage) +STUB( + "jCKKOQlFvro", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEEC1ERSA_) +STUB("jCKhrVa9MEU", _ZN15AbstractStorage7Service4StopEv) +STUB("jCOEQlm1d+A", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeaders7destroyEPS5_) +STUB( + "jCOabkQySE8", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEiRNS2_10LibContextEPT_m) +STUB("jCSXa2n1cXI", sceFaceIdentifyGetWorkingMemorySize) +STUB("jCX3CPIVB8I", _ZNSt6chrono12system_clock12is_monotonicE) +STUB("jCYFjXTF1kQ", uprv_dl_open) +STUB( + "jCaQLDRkmgU", + _ZN9Inspector25TimelineBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) +STUB( + "jCb4oHBTrk8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "jCcS+yw5jfI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEplEm) +STUB("jCdZ5dxG6+Y", _ZN3JSC7Symbols19InfinityPrivateNameE) +STUB("jCeqFWeN9HA", sceOpusCeltDecCtl) +STUB("jCiLoIGRdZA", mono_aot_Sce_Vsh_FileSelectorAdvancejit_code_end) +STUB("jCksK8VIzyE", glTexSubImage3D) +STUB("jCmcdc9W3UQ", __asan_load4_noabort) +STUB( + "jCoL8+nkz1k", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEixEm) +STUB( + "jCprk+fyqOA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE5abortEv) +STUB("jCrFd8gDBmY", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetrics9setJitterERKd) +STUB("jCsaBBpVu8U", _ZN7WebCore24CoordinatedGraphicsLayer16syncBoundsOriginERKNS_10FloatPointE) +STUB("jD1d49MK0Qs", mono_main) +STUB("jD4CJdDY-M4", mono_aot_Sce_Vsh_RequestShareStorageWrapperunbox_trampoline_addresses) +STUB("jDBLjMNUZeg", _ZN7WebCore13MediaQuerySetD2Ev) +STUB("jDDvll2aQpQ", _ZN3sce2np9HttpTrans10SetTimeoutEPKNS1_12TimeoutParamE) +STUB("jDJPigzSKps", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEcvbEv) +STUB( + "jDKm06Sqib8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "jDLpEOrp7n4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("jDQgfO0irO0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEC1Ev) +STUB("jDR-Re3F0Xw", _ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody16rulesetNameIsSetEv) +STUB("jDRAEOe6ruI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEC2Ev) +STUB( + "jDRCrZUGuxY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "jDRP7gkK0p4", + _ZN7WebCore22CacheStorageConnection22deleteRecordsCompletedEmONSt12experimental15fundamentals_v38expectedIN3WTF6VectorImLm0ENS4_15CrashOnOverflowELm16EEENS_14DOMCacheEngine5ErrorEEE) +STUB("jDVc4H3-fJg", _ZN3JSC7Symbols43AsyncGeneratorSuspendReasonAwaitPrivateNameE) +STUB("jDZJsUr4w70", _ZN12video_parser5vpcom8datetime8DateTime3UTCEv) +STUB("jDiVksx1LG8", _ZN3NTF10initializeERKNS_18CreationParametersE) +STUB("jDmNNYhAKg4", _ZN3WTF23fastCommitAlignedMemoryEPvm) +STUB("jDqEqnbvXQo", _ZN3sce7Toolkit2NP2V27NpUtils7Request19DisplaySigninDialogD2Ev) +STUB( + "jDso+gcXOss", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEED2Ev) +STUB("jDtLp261Kcs", + _ZN7WebCore4Page15findTextMatchesERKN3WTF6StringENS1_9OptionSetINS_14FindOptionFlagEEEj) +STUB( + "jE2q-QKAhJY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEmmEi) +STUB( + "jE71d8+agTw", + _ZN7WebCore15ContextMenuItemC2ENS_19ContextMenuItemTypeENS_17ContextMenuActionERKN3WTF6StringEbb) +STUB( + "jEGEP8kXykc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "jEI54r+Zgbw", + _ZN3sce2Np9CppWebApi13InGameCatalog2V527ContainerRatingCountFactory7destroyEPNS3_20ContainerRatingCountE) +STUB("jEIXUAr9XE8", sceNpGameIntentReceiveIntent) +STUB("jEN44InFKLs", _ZNK7WebCore17HTMLOptionElement4textEv) +STUB( + "jEOZkDjAuGM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEE11get_deleterEv) +STUB( + "jEPt3w+Rj2s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEEC2ERSA_) +STUB("jEWIILUU0vA", revoke) +STUB("jEi9RHoe5+o", _ZNK7WebCore11PageOverlay5frameEv) +STUB("jEisFKo1EUo", mono_aot_Sce_Vsh_Np_Papcplt_end) +STUB("jEmIBlk7Ig0", _ZN3JSC7Symbols25newTargetLocalPrivateNameE) +STUB("jEopgpjCnFU", _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE5clearEv) +STUB( + "jEqLasnpKAY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEEC1Ev) +STUB("jEvuBJnu1sI", + _ZN9Inspector26DebuggerFrontendDispatcher12scriptParsedERKN3WTF6StringES4_iiiiPKbPS3_S7_S6_) +STUB("jEwvkt8gDBQ", sceCesBig5ToUcs2) +STUB("jF-Amq3OxZE", ubrk_openRules) +STUB("jF-mCgGuvbQ", sceNpTrophyIntGetRunningTitle) +STUB( + "jF6hbembivI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEmmEi) +STUB( + "jF9P75HLPQ0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEE6assignEPS5_PFvS7_EPNS2_10LibContextE) +STUB("jFEJyInG1Vc", uidna_toASCII_67) +STUB( + "jFFozukj1J4", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM23AccessibilityProperties16LiveRegionStatusEEESt8optionalIT_ERKN3WTF6StringE) +STUB( + "jFK+DuwY9yk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEdeEv) +STUB("jFLOYtUyrko", + _ZN3sce2Np9CppWebApi15Personalization2V121GetAccessCodeResponseC2EPNS1_6Common10LibContextE) +STUB("jFQDI2lqYn0", Java_com_sony_bdjstack_javax_media_content_dripfeed_Player_stopPlayFrames) +STUB("jFSmlgyyEUg", backtrace_game) +STUB("jFTeLww+1Vs", _ZNK7WebCore6ISOBox7boxTypeEv) +STUB( + "jFapeWKhaD0", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToSendGameSessionMessageC1ERS5_) +STUB( + "jFdRposxaY4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEppEv) +STUB("jFlDIIIhQM0", uhash_compareIChars) +STUB("jFmCie3wPJ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEC2ERS7_) +STUB("jFojyV0+Fd0", _ZN3sce2np10JsonNumber3SetEl) +STUB("jFrpOZHCYpk", X509_getm_notBefore) +STUB("jFrqJ8AB100", g_locale_from_utf8) +STUB( + "jFtzDgM+5gA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEEptEv) +STUB("jFza--wUSO4", pS2) +STUB("jG3ibzr-KtA", _ZNK7WebCore10ScrollView12contentsSizeEv) +STUB("jG50CkPQDdU", _ZN8meta_gen14ImageRetriever10SetMetaValEiPc) +STUB("jGAtApdaFc8", _ZN7WebCore19HTMLTextAreaElement15setDefaultValueERKN3WTF6StringE) +STUB("jGDnToT8XbU", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE5emptyEv) +STUB("jGEtfWnk1J4", _ZN7WebCore11MediaPlayer12addTextTrackERNS_22InbandTextTrackPrivateE) +STUB("jGF+MaB4b-M", sceNpArchInit) +STUB("jGHBPci4dzU", sceContentSearchGetApplicationLastUpdateId) +STUB("jGUoByshYSI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEED2Ev) +STUB("jGX22E1WqNc", _ZN3sce2Np9CppWebApi7Matches2V125ResponseCompetitiveResultD1Ev) +STUB("jGcnzPEHoZ8", _ZN15AbstractStorage14YoutubeServiceD1Ev) +STUB("jGd4b-rP2zk", _ZNK7WebCore11FrameLoader27numPendingOrLoadingRequestsEb) +STUB( + "jGdCnSx9T5c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "jGnsuAV-Vv8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEcvbEv) +STUB("jGo2URP56tE", glStencilMask) +STUB("jGqEkPy0iLU", sceVrTrackerSetDeviceRejection) +STUB( + "jGqtSwkBi0E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEppEv) +STUB( + "jGsBBB0NRk8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE8pushBackERKS8_) +STUB( + "jGtbwJBRXmI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB("jGuZFFcr2P0", _ZN9Inspector24CanvasFrontendDispatcher14programDeletedERKN3WTF6StringE) +STUB( + "jGv-T66Cjwk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEEC2ERS9_) +STUB("jGw-fHxRZQ4", _ZN3NTF3URLC1Ev) +STUB("jH148QDT-E8", _ZN7WebCore11JSDOMMatrix4infoEv) +STUB( + "jH8wTQunkiE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEC2EPS6_PNS2_10LibContextE) +STUB( + "jHE38YOBHd8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEEC1Ev) +STUB("jHEwkqLAYQQ", _ZN7WebCore9FrameView39flushCompositingStateIncludingSubframesEv) +STUB("jHMG-2erSH0", _ZN3JSC7Symbols22isArraySlowPrivateNameE) +STUB( + "jHRH+Ai2KzQ", + _ZN7WebCore10JSLocation18getOwnPropertySlotEPN3JSC8JSObjectEPNS1_14JSGlobalObjectENS1_12PropertyNameERNS1_12PropertySlotE) +STUB( + "jHU3E7IxVUI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEppEi) +STUB("jHUHTcQ+MlA", scePlayReadyApiPlatform) +STUB( + "jHZVa2KIdDc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEneERKS9_) +STUB("jHaDBgiK3qo", + _ZN7WebCore18composedTreeAsTextERNS_13ContainerNodeENS_22ComposedTreeAsTextModeE) +STUB("jHc2fHHr9ao", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEC2Ev) +STUB("jHdP0CS4ZlA", sceHttp2RemoveRequestHeader) +STUB("jHdPvIzlpKc", sceGnmDrawIndexMultiInstanced) +STUB("jHgwTMWTHPc", _ZN9Inspector40ApplicationCacheBackendDispatcherHandlerC2ERKS0_) +STUB( + "jHk+uoCTSjA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEC1Ev) +STUB("jHo78LGEtmU", + _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewm) +STUB( + "jHqATHShtL8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("jHrZOsKy7+Y", _ZNK3JSC12PropertySlot12customGetterEPNS_14JSGlobalObjectENS_12PropertyNameE) +STUB( + "jHs453LFtU8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEC1EPS8_) +STUB("jHtRuxwMWWg", mono_metadata_decode_signed_value) +STUB( + "jHuy8ipDMXg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEEC2ERSA_) +STUB( + "jI+MiyB5H1s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEC1EPKS8_) +STUB("jI-FEg4JO+M", _ZNK7WebCore28InspectorFrontendClientLocal13inspectedPageEv) +STUB("jI7N5-eDr1o", _ZN3sce7Toolkit2NP3TUS9Interface10deleteDataERNS1_19TusDeleteDataParamsEb) +STUB( + "jIBUnwny6-U", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeAccountId2OnlineIdBatch5setidENS1_6Common12IntrusivePtrINS6_6VectorINS6_6StringEEEEE) +STUB("jIFSq41pQdQ", _ZN3JSC7JSProxy14deletePropertyEPNS_6JSCellEPNS_9ExecStateENS_12PropertyNameE) +STUB("jIGIkc0WPZk", uprv_decNumberToInt32_67) +STUB( + "jILdhuGfRhg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "jIMqcuD-MPw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE5emptyEv) +STUB("jIUCt1KFUzo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEixEm) +STUB( + "jIYlTmXrdjI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEE11release_refEv) +STUB("jIe8ZED06XI", sceUserServiceGetGlsCameraDepthLevel) +STUB("jIh0oWzlkf8", _ZNK7WebCore6Widget25convertToContainingWindowERKNS_8IntPointE) +STUB("jIjtYfrv7VU", _ZN7WebCore4Page25screenPropertiesDidChangeEv) +STUB("jIlc4p5dSD0", sceAmprMeasureCommandSizeWaitOnAddress) +STUB("jImW-wfqIL8", _ZN7WebCore7Element18insertAdjacentHTMLERKN3WTF6StringES4_) +STUB( + "jIniuS7nvbM", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126PlayStylePropertiesFactory7destroyEPNS3_19PlayStylePropertiesE) +STUB("jIrXMDNIgFY", _ZNK7WebCore4Page22editableElementsInRectERKNS_9FloatRectE) +STUB( + "jIrtZ8RkXPM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("jIvWFH24Bjw", _ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2Em) +STUB("jJ-5qZRZKFo", _ZN7WebCore16commonMediaTypesEv) +STUB("jJ3pYnuJvfM", _ZNK3sce2Np9CppWebApi15Personalization2V15Error12messageIsSetEv) +STUB("jJ5O4VlfE1A", _ZN3sce7Toolkit2NP2V28Commerce8SkuLabelD2Ev) +STUB( + "jJ7MmzmN8CU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEptEv) +STUB("jJ7Sj2xq4GA", uprv_getUTCtime_67) +STUB("jJC7x18ge8k", hypotl) +STUB("jJD6oPDL0q0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEEC1EPS5_PFvS7_EPNS2_10LibContextE) +STUB( + "jJEgt9vx+j0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("jJH2P7KA4XU", sceNpLookupNetSanitizeComment) +STUB("jJKMkpqQr7I", sceLibcHeapMutexFree) +STUB("jJLzd7jxXiM", _ZN7WebCore17makeBoundaryPointERKNS_15VisiblePositionE) +STUB("jJP1vYMEPd4", sceMouseDisconnectPort) +STUB("jJZcBhJFh1U", _ZN3sce7Toolkit2NP2V210Tournament17TournamentDetailsC2Ev) +STUB("jJaUsDKcImo", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getPrimaryAudioStream) +STUB( + "jJch4XzE0x8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("jJePHioTWw0", WKImageCreateFromCairoSurface) +STUB("jJesZMTjJSA", mono_metadata_nesting_typedef) +STUB("jJh4SMt8NFQ", FT_Stream_ReadLongLE) +STUB( + "jJiz5donb-Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEED2Ev) +STUB("jJjpy8hpYCg", uprv_uint32Comparator_67) +STUB( + "jJkYhhiqmwc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEEaSERSA_) +STUB("jJtoPFrxG-I", _ZTSPc) +STUB( + "jJul76d7MDw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEEcvbEv) +STUB( + "jJuxbz0dPP4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("jJwavlmTirk", sceVnaUtilIsLanguageSupported) +STUB("jJyVJyhi5h8", sceAgcDriverSubmitToRazorACQ) +STUB("jJzBpOjtmPc", _ZNK3sce2Np9CppWebApi6Common8IteratorIjEptEv) +STUB("jK+yuYCI7MA", sceAmprCommandBufferWriteCounter_04_00) +STUB( + "jK6IYhNw4M8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEneERKS9_) +STUB( + "jKBIQCtXceU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEixEm) +STUB("jKDY+jQCWzE", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus10ownerIsSetEv) +STUB("jKGLuRzmQsM", _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody11setTicketIdEPKc) +STUB("jKGq8JG6K1Q", sceDebugKillApplication) +STUB( + "jKHSaGRFyTs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEEC1ERS9_) +STUB( + "jKHrKYXskMk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEEptEv) +STUB("jKPJKar5yGY", _ZN3WTF9URLParser24internalValuesConsistentERKNS_3URLE) +STUB("jKQ4hTmAVyI", mono_aot_Mono_Data_Tdsmethod_addresses) +STUB( + "jKSASVEfO+g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEE11get_deleterEv) +STUB("jKb9gh+cHtg", _ZN22MmsMdCommonFsOperation17createCacheBufferERNS_18CreateBufferOptionE) +STUB( + "jKbJo5KPcEc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEppEv) +STUB("jKfv54X+wrE", spaces) +STUB("jKgAUl6cLy0", sceAppMessagingReceiveMsg) +STUB("jKnwOdgck5g", sceShellCoreUtilReleaseSharePlayCpuBudget) +STUB("jKnyH+dgLzE", _ZNK3sce2np9JsonValue7GetNullEv) +STUB("jKp6AIbh4go", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE8capacityEv) +STUB( + "jKx7fV+8I7E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEC1Ev) +STUB("jKyBhcGSfx0", _ZN3JSC18IncrementalSweeper13startSweepingEv) +STUB( + "jKyw1MX-a+U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEC2EPS8_) +STUB("jL9Mmajsnlg", ucptrie_get_67) +STUB("jLDCOND9BVc", ucase_isSoftDotted_67) +STUB( + "jLH3rqLI6cc", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations28unsetinvitationInvalidFilterEv) +STUB( + "jLK+jhEpTUA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE8capacityEv) +STUB( + "jLUHdC1+OI4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEE5resetEPS9_) +STUB("jLV2Nv3i98s", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBodyD1Ev) +STUB("jLYyt8tfmkE", _ZN3WTF20ParallelHelperClient13doSomeHelpingEv) +STUB("jLdgP59WuAo", _ZN13MsvMetaEditor14updateMetaDataEPtm) +STUB("jLew9e14VI8", SSL_CTX_get_ex_data) +STUB("jLfpJIx2rUE", udatpg_getBaseSkeleton_67) +STUB("jLm-QhaeIVw", _ZN7bmalloc29StaticPerProcessStorageTraitsINS_11AllIsoHeapsEE7Storage7s_mutexE) +STUB("jLmjAIno8oQ", WKPageRenderTreeExternalRepresentation) +STUB( + "jLn2yMvVQ0I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEE11release_refEv) +STUB("jLnpY6jw8GY", _ZN9Inspector18InjectedScriptHostD0Ev) +STUB("jLpO843jV50", sceRemotePlayClientStopMicCapture) +STUB( + "jLqJcdPfJs8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEED2Ev) +STUB("jLtYjsSdMPs", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15NpSessionMemberEEneERKS4_) +STUB("jLuEYsdBXZE", _ZN3sce7Toolkit2NP17FriendInfoRequestC2Ev) +STUB("jLx5qd4qyjk", sceDepthSubmit) +STUB( + "jM+puY0r19I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE5beginEv) +STUB( + "jM1GeUyL2ZI", + _ZN9Inspector23WorkerBackendDispatcherC1ERNS_17BackendDispatcherEPNS_30WorkerBackendDispatcherHandlerE) +STUB( + "jM5MFc0xB+0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEEC2Ev) +STUB("jM7P7VZVUEs", _ZN3sce6CanvasC2Ev) +STUB( + "jM7k1P3Uips", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEEC1Ev) +STUB("jM9QbqB-2Bk", WKErrorGetTypeID) +STUB("jMB7EFyu30Y", sincos) +STUB("jMF+SoTsf18", uprv_ebcdicFromAscii_67) +STUB("jMFGWezg5Sc", _ZN7WebCore18TextureMapperLayer15setDebugVisualsEbRKNS_5ColorEf) +STUB("jMHJh50C9Fg", uprv_timezone_67) +STUB("jMNwqYr4R-k", sceRtcGetTickResolution) +STUB("jMRcqynQVRI", sceNpManagerIntValidateCredential) +STUB("jMTGYftmbmw", mono_aot_Sce_Vsh_ShareGuideSceneplt_end) +STUB("jMWTTO6X-kw", _ZNK3sce3Xml3Dom8Document12getFirstAttrENS1_6NodeIdE) +STUB( + "jMhiLlXB5N8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEE7get_refEv) +STUB( + "jMo908ewPso", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEC1Ev) +STUB("jMu+DiqDZBs", _ZNK7WebCore9RenderBox12clientHeightEv) +STUB("jMv40y2A23g", sceCameraSetDefectivePixelCancellation) +STUB("jMxxNNLh6ms", sceNpMatching2SetRoomDataInternalExt) +STUB("jN8k1nPEVbA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEE5resetEPS6_) +STUB("jNF3HS1ziFs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEptEv) +STUB("jNHt+vQhaoM", _Z16WebViewBasGoBackii) +STUB("jNJiyHHKk4w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEEC1Ev) +STUB("jNLNgpietZc", __asan_stack_free_4) +STUB("jNMdItooJzc", sceUltGetUlthreadInfo) +STUB("jNNcYJhzaww", _ZN3sce7Toolkit2NP2V210Wordfilter7Request13FilterCommentC2Ev) +STUB( + "jNOcGbzfoEc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("jNQBQ-mgcD4", _ZN12video_parser5vpcom13AtomicStore64EPyy) +STUB("jNUcZ32cUoI", _ZN7WebCore8SVGNames9orderAttrE) +STUB( + "jNUr08dPmHE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("jNcpGLqj6Qg", sceDeci4hDrfpTruncate) +STUB("jNfpnUiYz3w", fuse_reply_lock) +STUB( + "jNgSfVMI+Zw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE3endEv) +STUB("jNkXfZU3hzY", _ZN7WebCore16HTMLMediaElement14setCrossOriginERKN3WTF10AtomStringE) +STUB("jNnIm+e6ZBs", mono_thread_get_name_utf8) +STUB("jNrnCxGcXBE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEC1ERS7_) +STUB("jNsLCw-eHp8", _ZN3JSC14throwTypeErrorEPNS_14JSGlobalObjectERNS_10ThrowScopeE) +STUB("jO+toP4Qo+E", mono_aot_Sce_Vshunbox_trampolines_end) +STUB("jO2tec4dJ2M", sceAudio3dObjectReserve) +STUB( + "jO5xrqYwcTA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEplEm) +STUB("jO6F+B5EbzU", _ZNK3sce3Xml13AttributeList11isAvailableEv) +STUB("jO7CDRdzrq0", + _ZNK7WebCore11CachedImage20imageSizeForRendererEPKNS_13RenderElementENS0_8SizeTypeE) +STUB("jO8DM8oyego", sceNpEntitlementAccessInitialize) +STUB( + "jOJcY3oKczs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEC2Ev) +STUB("jOKRbJ0P+J0", _ZN3JSC7Symbols30asyncFunctionResumePrivateNameE) +STUB("jOL4KIYUvtM", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_15RankInformationEEC2Ev) +STUB("jON6hX0GtzE", _ZN3sce7Toolkit2NP2V210Tournament6EventsC2Ev) +STUB("jOVTkdrkn74", __asan_set_error_report_callback) +STUB( + "jOWLYWz1emk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEmmEi) +STUB("jOYMhC1OGl4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament7BracketEED2Ev) +STUB( + "jOa8LZhn-m0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB( + "jOhvAQUjH4I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEE11get_deleterEv) +STUB("jOnUkmU6pyQ", sceAt9EncFlush) +STUB("jOqRbqTRABA", _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead11unsetMemberEv) +STUB("jOsUG0BJI-Y", sceUltMutexTryLock) +STUB( + "jP+3Sv1SFMU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEC1Ev) +STUB( + "jP0pVvHxoWc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEmmEv) +STUB( + "jP2OMeJ0MpM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEC2EPS8_) +STUB("jPCM-elCY+c", _ZN3sce2np9JsonValue9SetNumberEPKNS0_10JsonNumberE) +STUB( + "jPCYM4FcQUU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEmmEv) +STUB("jPHPessHa1Q", _ZN9Inspector21InjectedScriptManagerD2Ev) +STUB("jPHbsQTmpAA", + _ZN7WebCore12SharedBuffer6createEON3WTF6VectorIcLm0ENS1_15CrashOnOverflowELm16EEE) +STUB( + "jPHnIGU9gKA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEC2EPKS8_) +STUB("jPKapVQLX70", sceSystemServiceAddLocalProcessForJvm) +STUB( + "jPLQGNm6JF8", + _ZN9Inspector27DOMStorageBackendDispatcher17setDOMStorageItemElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "jPMPLSP8D-8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEC2ERS7_) +STUB("jPO4DqIdSig", _ZN3WTF8CollatorC2EPKcb) +STUB( + "jPOSOkRpM+g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEC2EPNS2_10LibContextE) +STUB( + "jPS4aMXpJwM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEED1Ev) +STUB("jPSW6OPwFSo", _ZN3WTF10StringImpl28convertToLowercaseWithLocaleERKNS_12AtomicStringE) +STUB("jPUHFmeAfHQ", _ZN7WebCore24CoordinatedGraphicsLayer29computeTransformedVisibleRectEv) +STUB( + "jPYDjkMb3qc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE6resizeEj) +STUB("jPd1vzuldfM", sceUpsrvSwitchSystemExBankWithoutVerify) +STUB("jPjV-Uatsgg", mmap_np) +STUB( + "jPuYnwVszSI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "jPwD1pYdQvw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE8pushBackERKS8_) +STUB( + "jPxHmN-6b9Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEE7get_refEv) +STUB("jPywoVsPVR8", __clzti2) +STUB("jQ+9qmrfI-8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE8capacityEv) +STUB("jQ0656do1V4", sceRegMgrToolGetUpdateCnt) +STUB("jQ06QCNi21g", pa_push_marker) +STUB("jQ2n+Kj8H3c", sceMbusSetTestFlag) +STUB( + "jQ57KV0iVmE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "jQ9ZsXTn6RA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("jQCpiycj5t8", _ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_11TusVariableEE8max_sizeEv) +STUB("jQFLIRQ8qAw", _Z26VideoPlayerVcs_IsBufferingi) +STUB("jQKkZgDaCzI", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeINS1_11TusVariableEPvEE7addressERKS6_) +STUB("jQStelPITDc", _ZNK3JSC8Debugger24isInteractivelyDebuggingEv) +STUB( + "jQUpIMwnb-E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEEC2ERKSA_) +STUB("jQcQgA0GJ6k", sceSystemServiceUsbStorageTerm) +STUB("jQei3eLolMU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEED2Ev) +STUB("jQfM7t-YTxs", sceCtrlpRecStop) +STUB("jQgukUzE180", sceFsGetFsMetadataWithProgress) +STUB("jQgy3-KO9qY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE5beginEv) +STUB("jQh1WaXmyHo", WKPreferencesSetIgnoreViewportScalingConstraints) +STUB("jQjAY7H3GOo", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE5emptyEv) +STUB("jQlQ4IR95YU", glTransformFeedbackVaryings) +STUB("jQlStFU3oQ0", JVM_GetMethodIxMaxStack) +STUB("jQoaqzHYacc", sceBgftServiceDownloadResumeTaskAll) +STUB("jQuruQuMlyo", _Fetch_and_seq_cst_4) +STUB("jQx7y+e2+Ww", sceDebugIpmiGetClientInfo) +STUB( + "jQxrl8o7BeI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEEC1Ev) +STUB("jR15qLz+GAs", _ZN3JSC29callHostFunctionAsConstructorEPNS_9ExecStateE) +STUB("jR4o9PMEJec", _ZN3sce7Toolkit2NP18GetUserFeedRequestC2Ev) +STUB("jR6okvzdkvI", sceMbusEnterAudioOutAutoAttenuation) +STUB("jRKHSzq25WA", _ZN3WTF17GregorianDateTimeC2EdNS_15LocalTimeOffsetE) +STUB("jRLwj8TLcQY", _ZTVSt10bad_typeid) +STUB("jRQJBxPThdE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEC2ERKS7_) +STUB("jRX3E9YPAyk", _ZN7WebCore9DragImageaSEOS0_) +STUB("jRbcEntV74A", _ZN7WebCore9HTMLNames19ontransitionendAttrE) +STUB("jRcI8VcgTz4", sceGnmSubmitCommandBuffersForWorkload) +STUB( + "jRg40WZmsNg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEaSERS7_) +STUB( + "jRgdKTEhoGs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEE3getEv) +STUB("jRhI-FXHpm4", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession16unsetCustomData1Ev) +STUB( + "jRhum45LpUY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEED2Ev) +STUB("jRlpsSgGxU0", _ZN7WebCore7PatternD2Ev) +STUB("jRon+xfcXtU", SSL_CTX_add_client_CA) +STUB( + "jRvPrag7z5k", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE5beginEv) +STUB( + "jRxS4pAFBMw", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEEC1Ev) +STUB("jS+3kWmWE3I", _ZN3WTF11Persistence7EncoderlsEt) +STUB("jS-45Q4H8Tw", WKWebsiteDataStoreSetStatisticsVeryPrevalentResource) +STUB("jS3kTN3n2ks", _ZN3sce7Toolkit2NP2V24Core12ResponseDataC1ERKS4_) +STUB("jS4vIPXC3Jc", _ZN7WebCore16ISOSchemeTypeBoxD0Ev) +STUB("jS5DA4y606Q", _ZN9Inspector30TargetBackendDispatcherHandlerD1Ev) +STUB( + "jSBhOonxXqI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE8copyFromERKS9_) +STUB("jSBmTubazDw", mono_bitset_free) +STUB("jSCucWQXbRg", EC_KEY_new) +STUB("jSHMX1oSE+E", sceHttp2WebSocketSendTextMessage) +STUB("jSHXUR6tI8Q", fuse_fs_fsync) +STUB( + "jSIIEN5QYEM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEEC2Ev) +STUB( + "jSKdLNSnCyk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEC1EPNS2_10LibContextE) +STUB("jSKwfmNwSTY", WTFLogAlways) +STUB( + "jSLhwychOfw", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToSendPlayerSessionMessageaSERS5_) +STUB("jSNObmVweOI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEED1Ev) +STUB("jSP3jbv93y4", Java_java_lang_StrictMath_atan) +STUB("jSPir9Rql6s", GCC_except_table237) +STUB("jSWBvOPfSOk", sceNotificationSend) +STUB("jSZNP7xJrcw", sceVoiceUpdatePort) +STUB( + "jSbqSzk2Sc4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEC2EPKS8_) +STUB("jSddVL0G9xk", _ZN7WebCore14LoaderStrategyC2ERKS0_) +STUB( + "jSfKyd1dQOk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE6resizeEj) +STUB("jSkiWiKdm84", rgctx_fetch_trampoline_mrgctx_71_p) +STUB( + "jSm9zGuFAhQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("jSqP-fP6h9o", _Z31VideoPlayerVcs_GetLastErrorCodei) +STUB("jSquWN7i7lc", _ZSt4clog) +STUB( + "jSvL0ivhBRQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("jT09n9CQhnU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEC1ERKS7_) +STUB("jT1FV1SZsdQ", _ZN7Nicosia5Scene6createEv) +STUB("jT3xiGpA3B4", asctime) +STUB("jTBXdHpgJ2E", _ZN3sce7Toolkit2NP2V211SharedMedia10BroadcastsD2Ev) +STUB( + "jTEUBw5jo6g", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeaderC1Ev) +STUB("jTHEz19hsy0", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIjEC1EPKj) +STUB("jTIPn3+J6AI", mono_btls_x509_store_ctx_init) +STUB("jTItNnritjU", _ZThn112_N7WebCore18HTMLMarqueeElement4stopEv) +STUB("jTJCdyv9GLU", sceCameraGetDeviceID) +STUB("jTKhlnqi5+o", crc32) +STUB( + "jTL4k5QUwm8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody32unsetComparedLastUpdatedDateTimeEv) +STUB( + "jTLh1Rt9BeA", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE18getResponseHeadersERSA_) +STUB("jTNAhVZ-5Nc", sceSysUtilSendSystemNotification) +STUB("jTPE1AS7uak", __sys_workaround8849) +STUB("jTXs7HM6z30", _ZNK7WebCore18ImageBufferBackend10toBGRADataEPv) +STUB( + "jTcdCjMNdrk", + _ZN3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinition10initializeEPNS1_6Common10LibContextEi) +STUB( + "jTeqz+0Zzp0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEC1EPS8_) +STUB("jTfGj5oxOgw", _ZNK7WebCore16JSXMLHttpRequest8responseERN3JSC9ExecStateE) +STUB( + "jTp9bRVcYTw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB( + "jTq4vGQHi1k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEC2EPKS8_) +STUB( + "jTslSSGmsE8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEE5resetEPS6_) +STUB("jTuS-1iIK2Y", _ZN3JSC8toBigIntEPNS_14JSGlobalObjectENS_7JSValueE) +STUB( + "jU+u60bwEco", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("jU-dekw-sPc", mono_aot_Sce_Vsh_Np_RifManagerplt) +STUB("jU068RinINY", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEEcvbEv) +STUB("jU2YUZ4YNvY", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container14getReleaseDateEv) +STUB("jUMADs-SOQc", WKIconDatabaseSetIconURLForPageURL) +STUB("jUQ+FlOMEHk", _ZTSSt5ctypeIcE) +STUB( + "jURmdcSMv-s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE7popBackEv) +STUB("jUXCR9ZCsik", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product6toJsonERNS_4Json5ValueEb) +STUB("jUYKhvT0-lg", sceSystemServiceUsbStorageUnregisterCallbackForMapUnavailable) +STUB( + "jUbhHKEa6ds", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE6resizeEj) +STUB( + "jUg8UjncEFI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE10setContextEPNS2_10LibContextE) +STUB("jUh2nDfmLFU", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEEptEv) +STUB( + "jUiRWnLDMtk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEmmEv) +STUB("jUjp+yqMNdQ", sceHttpsSetMinSslVersion) +STUB("jUpGFXt4Hes", umtx_unlock) +STUB( + "jUwHfbICUDA", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS5_INS7_9RecordApi30RecordLargeDataResponseHeadersEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("jUxA6iA5PaM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEC1Ev) +STUB("jUxkuMrcdNA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersD1Ev) +STUB("jV-g6Ihe3aI", _ZN7WebCore22DefaultFilterOperationC2ENS_15FilterOperation13OperationTypeE) +STUB("jV0eSdr+08k", _ZTVN7WebCore11DisplayList17FillRectWithColorE) +STUB("jV5C1zw4fl8", _ZN3JSC7Symbols54promiseResolveThenableJobWithoutPromiseFastPrivateNameE) +STUB("jV6nu+8j1BU", sceEsvmEngineDestroyMediaKeySystemAccess) +STUB("jV8ekjzt5-c", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEEC2ERS7_) +STUB( + "jVAHWDMsX2c", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser9getfieldsEv) +STUB("jVCWcthifr8", sceAjmBatchJobRun) +STUB("jVDuvE3s5Bs", _Fofree) +STUB( + "jVGR07f0IXg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEptEv) +STUB("jVJKlbmOEn4", usearch_open_67) +STUB( + "jVLwbOfrCI0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEdeEv) +STUB( + "jVNXLAg0cDw", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Network7Metrics8PriorityEEESt8optionalIT_ERKN3WTF6StringE) +STUB( + "jVNxaYJcgOQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEC1EPKS8_) +STUB("jVS263HH1b0", expm1l) +STUB( + "jVSfXfl5ixY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEC1ERS8_) +STUB("jVVvn4k5dh4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEEC2EPS6_) +STUB( + "jVZyZx13IYc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEeqERKS9_) +STUB( + "jVaTwiqls1Q", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC2ERKSC_) +STUB("jVdD5Xr7il4", _ZN7WebCore20PasteboardCustomData5EntryaSEOS1_) +STUB("jVg6F-8c6oo", xmlCtxtGetLastError) +STUB("jVhP7R+t-Jc", mono_btls_x509_name_get_entry_type) +STUB("jVhdw7Uv+-s", _ZN12video_parser10cVideoPath10InitializeEv) +STUB("jVj7jqD9mq0", _ZN7WebCore10Pasteboard4readERNS_20PasteboardFileReaderEN3WTF8OptionalImEE) +STUB("jVkiIghRo9w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEE5resetEPS6_) +STUB("jVqXnsWisS0", _ZN7WebCore6Editor24isSelectionUngrammaticalEv) +STUB("jVwOsdqhB2E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEdeEv) +STUB("jVwrGgi4kF0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEEC1EPKS6_) +STUB("jVwxMhFRw8Q", _ZNSt24_Iostream_error_categoryD0Ev) +STUB("jW+HnafeS3Y", sceUltMutexDestroy) +STUB("jW+Posgqpr0", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE4sizeEv) +STUB("jW1ywJJNtdo", mono_parse_env_options) +STUB("jW3twTLXepQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEEdeEv) +STUB("jWIWvcr-3nk", delegate_virtual_invoke_imt_m_13) +STUB("jWKXzwE1M+8", sceCesUtf16beToEucJp) +STUB("jWKiCTjC-us", sceHmdGetDistortionCorrectionCommand2d) +STUB( + "jWRehRraP0U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEmmEi) +STUB("jWSGkxnrdis", _ZN3WTF8JSONImpl5ValueC2Ei) +STUB("jWX53VLp-tg", JVM_GetCPFieldNameUTF) +STUB("jWbsjXK8Tu4", g_strdup_vprintf) +STUB("jWd9FwvNv4E", sceSpGetPid) +STUB( + "jWjgWn1Kh80", + _ZN8meta_gen11MsvPromoter25setKeyValue_TBLV_DeviceIdENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB( + "jWoEUlPhgDo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE21intrusive_ptr_sub_refEPS9_) +STUB("jWoi+KzyT8M", + _ZN3sce2Np9CppWebApi11UserProfile2V111PresenceApi28ParameterToGetBasicPresences9terminateEv) +STUB("jWpkVWdMrsM", sceRazorCpuStopCaptureInternal) +STUB("jWqU2e5DkKs", mono_aot_Sce_Vsh_Orbis_AbstractStoragejit_got) +STUB("jWt2IdZj0-c", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container17getTotalItemCountEv) +STUB("jWvPL6uPnWk", scePlayReadyDebugSetLevel) +STUB("jWvXh3q7dSA", _ZN3NTF17URLRequestDataJobD2Ev) +STUB("jWylMa2FtuA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEED1Ev) +STUB("jX1zq1i8KfI", FT_Stream_Pos) +STUB( + "jX24rCuZGrE", + _ZN7WebCore27ScrollingStateScrollingNode27setScrollableAreaParametersERKNS_24ScrollableAreaParametersE) +STUB( + "jX6HZUWtU8g", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi15recordLargeDataEiRKNS4_26ParameterToRecordLargeDataERNS1_6Common19UpStreamTransactionINS8_12IntrusivePtrINS3_27RecordLargeDataResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("jX9BcvSoZhU", __d2b_D2A) +STUB( + "jX9IRI5U3-o", + _ZNK7WebCore21ContentSecurityPolicy20allowConnectToSourceERKNS_3URLENS0_24RedirectResponseReceivedE) +STUB( + "jXCoXZB1-Wg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEEptEv) +STUB( + "jXEIM3umDyQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEC2EPNS2_10LibContextE) +STUB( + "jXI9GGTxNUY", + _ZN3JSC23SimpleMarkingConstraintC1EN3WTF7CStringES2_NS1_8FunctionIFvRNS_11SlotVisitorEEEENS_20ConstraintVolatilityENS_21ConstraintConcurrencyENS_21ConstraintParallelismE) +STUB( + "jXKnl9o+Qr0", + _ZN3JSC7JSProxy19getOwnPropertyNamesEPNS_8JSObjectEPNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("jXOWuBDaGRM", _ZN7WebCore11FontCascade18shouldUseSmoothingEv) +STUB("jXULZmpg-7E", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_playPlayListAtTime) +STUB("jXUeCRu7DLE", sceNpSnsYouTubeAbortRequest) +STUB("jXVfFs6zVUs", _ZN4Manx11MediaSourceD0Ev) +STUB( + "jXWFpi-TbU0", + _ZN9Inspector32ScriptProfilerFrontendDispatcher16trackingCompleteEdN3WTF6RefPtrINS_8Protocol14ScriptProfiler7SamplesENS1_13DumbPtrTraitsIS5_EEEE) +STUB("jXYtyfAp-n4", _ZN3sce2Np9CppWebApi14SessionManager2V15ErrorD2Ev) +STUB( + "jXbGSQ-LUFw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEppEi) +STUB( + "jXbXTCEv5bw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEEaSERKSA_) +STUB("jXck72ej7tM", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt6vectorI16SceNpTusVariableNS2_IS4_EEEE7addressERS6_) +STUB( + "jXeUt3juQNY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEEC2ERSA_) +STUB( + "jXf0jcry1As", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE8copyFromERKS9_) +STUB("jXkt81d8RC8", _ZNK7WebCore8Settings16showDebugBordersEv) +STUB( + "jXoKpPJW6Ic", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE5clearEv) +STUB("jXqaYpt53+Q", _ZN3JSC7Symbols21replaceAllPrivateNameE) +STUB("jXx0+2Wd1q8", sceNpAppInfoIntCheckAvailabilityAll) +STUB("jXzd4Vr8qeY", + _ZN3sce2Np9CppWebApi14SessionManager2V136GetFriendsPlayerSessionsResponseBodyD1Ev) +STUB("jXznE6+t4Mk", _ZN7WebCore17FrameLoaderClient27registerForIconNotificationEv) +STUB("jY4A0HXFXpE", + _ZN7WebCore11FrameLoader17HistoryController18replaceCurrentItemEPNS_11HistoryItemE) +STUB( + "jYAXNHlcQAc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEneERKS9_) +STUB("jYBiA3W7x30", sceDeci4hDrfpStat_fuse_fullpath) +STUB( + "jYC+Zh-dNcI", + _ZN7WebCore17JSDOMGlobalObject34reportUncaughtExceptionAtEventLoopEPN3JSC14JSGlobalObjectEPNS1_9ExceptionE) +STUB("jYCmAtmNalY", _ZN3sce7Toolkit2NP2V211UserProfile10NpProfilesC1ERKS4_) +STUB("jYFpdilteh4", _ZN3JSC17DebuggerCallFrame10invalidateEv) +STUB("jYMHntdiuBM", _ZN7WebCore13AXObjectCache42gAccessibilityEnhancedUserInterfaceEnabledE) +STUB( + "jYbHjZtPwvY", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession30unsetExclusiveLeaderPrivilegesEv) +STUB("jYgqDP6yoTY", mono_aot_Sce_PlayStation_Orbisplt_end) +STUB("jYo1kdU3L-E", _ZNK9Inspector15ScriptCallStack23firstNonNativeCallFrameEv) +STUB("jYtnpP2ZoSE", _ZN3sce7Toolkit2NP2V27Session8SessionsC1Ev) +STUB("jYzYJ61Srik", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetBoolean9Ev) +STUB( + "jZ838fMhh28", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("jZBVyPKnwBc", _ZNK3sce2Np9CppWebApi7Matches2V116RequestMatchTeam12membersIsSetEv) +STUB("jZCqWFgMehE", sceNpUniversalDataSystemAbortHandle) +STUB("jZGAl9Y-FkM", _ZN7WebCore21JSCSSStyleDeclarationD1Ev) +STUB("jZHHqNYIsx0", _ZNK7WebCore3URL16isMatchingDomainERKN3WTF6StringE) +STUB("jZHntoV85Ms", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEEC1Ev) +STUB("jZJnaQWvQO0", sceAudioOutSetJediSpkVolume2) +STUB("jZMYE8t5sW4", mono_aot_Sce_Vsh_FileSelectorjit_got) +STUB("jZO4ymTXMUo", uscript_isRightToLeft) +STUB( + "jZOsBbRONxc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE7reserveEi) +STUB("jZRyJ1VcPnA", _ZNK7WebCore19ResourceRequestBase10httpMethodEv) +STUB("jZceLU9Ao5Y", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification14NewRoomMessageEE5resetEv) +STUB("jZmLD-ASDto", _ZNKSt19istreambuf_iteratorIwSt11char_traitsIwEE5equalERKS2_) +STUB("jZoqmO5SMQQ", _ZN3sce2Np9CppWebApi7Matches2V111AddedPlayer13setPlayerTypeERKNS3_10PlayerTypeE) +STUB( + "jZyhw-SfSmo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("ja-Nmtu-jG8", d2i_X509) +STUB("ja0sFTz6m9Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEEppEi) +STUB("ja0ysg7RR10", _ZNK7WebCore29DeprecatedCSSOMPrimitiveValue12getRectValueEv) +STUB("ja5EfaZTumE", _ZN7WebCore8SVGNames15feDropShadowTagE) +STUB("ja9COzu+aKM", _ZN4Manx11MediaPlayer10readyStateEv) +STUB( + "jaI3deHC5cY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEE21intrusive_ptr_sub_refEPS7_) +STUB("jaI86M1s1wQ", _ZN3sce7Toolkit2NP2V29Messaging7Request17LocalizedMetadataD1Ev) +STUB( + "jaKntTawnMo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEmmEi) +STUB("jaLGUrwYX84", _ZGVNSt7collateIwE2idE) +STUB("jaNWyA8gAxo", uloc_openKeywords) +STUB("jaPCK8Lw-3E", __asan_region_is_poisoned) +STUB("jaQ3h3J4zd4", WKBundlePageForceRepaint) +STUB( + "jaS2Rspvp98", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEEptEv) +STUB( + "jaVd5xkK0tU", + _ZN3sce2Np9CppWebApi12Leaderboards2V111UserFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_4UserEEE) +STUB("jaYypweDbyA", sceDbgGetReleaseCheckMode) +STUB("jaa1AktSI-g", _ZN7WebCore30InspectorInstrumentationPublic12hasFrontendsEv) +STUB("jabcrdjwdUs", _ZN7WebCore11ImageBufferD0Ev) +STUB("jachrbjpHnM", __asan_destroy_fake_stack) +STUB("jadS3Vb4gdk", _ZN7WebCore14ScrollableArea17willEndLiveResizeEv) +STUB("jaf5nhLNbU4", sceShellUIUtilCreateTaskToken) +STUB( + "jagz1B7ZpgY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB("jajO-tAdNek", _ZN7WebCore20httpHeaderNameStringENS_14HTTPHeaderNameE) +STUB("jajhf-Gi3AI", sceGnmDrawInitToDefaultContextStateInternalSize) +STUB( + "japnYgiHSSY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB("japr92PDRTM", + _ZN7WebCore22externalRepresentationEPNS_5FrameEN3WTF9OptionSetINS_16RenderAsTextFlagEEE) +STUB("jatbHyxH3ek", _Xp_mulx) +STUB("jautSRs4OdQ", sceNpEntitlementAccessRequestUnifiedEntitlementInfo) +STUB("jayvY07C5dk", sceFiosStatSync) +STUB("jaz93yK4a10", _LLgamma_big) +STUB("jb+IRdsgPW8", JSContextGetMemoryUsageStatistics) +STUB("jb-dzmnHPsU", _ZN7WebCore23CoordinatedImageBacking9markDirtyEv) +STUB("jb6LuBv9weg", CA_MGMT_convertPKCS8KeyToKeyBlob) +STUB("jb6ic-qbD30", + _ZN3sce2Np9CppWebApi7Matches2V120RequestPlayerResultsC2EPNS1_6Common10LibContextE) +STUB( + "jb7RCypuNh4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEEC1ERS9_) +STUB("jb8DgWul3oo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEC1EPKS8_) +STUB( + "jb8xgco8bvE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEED2Ev) +STUB("jbAqAvLEP4A", scePadResetOrientationForTracker) +STUB("jbGv+QGGopI", png_get_uint_32) +STUB("jbQiWutzLek", _ZNK3JSC4Heap15isAnalyzingHeapEv) +STUB("jbW4cndvXzA", mono_aot_Sce_PlayStation_PUIPlatformunbox_trampoline_addresses) +STUB("jbYN2b1xRik", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEED1Ev) +STUB("jbZom6ZMBR8", WKRenderObjectCopyTextSnippet) +STUB( + "jbZx1TYBtpo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE5clearEv) +STUB("jbgqYhmVEGY", posix_spawnattr_getschedparam) +STUB("jbj2wBoiCyg", snwprintf_s) +STUB("jbjU4LIcU2Y", + _ZN7WebCore11DisplayList8ReplayerC1ERNS_15GraphicsContextERKNS0_11DisplayListEPNS1_8DelegateE) +STUB( + "jbjgDgqLVGk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEmmEi) +STUB("jbkJFmOZ9U0", sceVoiceResumePortAll) +STUB( + "jbkJK37Hg9Y", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEEC1ERKSB_) +STUB( + "jbkPVI0N18Y", + _ZN3JSC8JSObject25getStructurePropertyNamesEPS0_PNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("jbkqtarv--A", WKBundleBackForwardListGetBackListCount) +STUB( + "jbozgXRugWU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEppEv) +STUB("jbrhzpESHMI", _ZN3WTF16registerGCThreadENS_12GCThreadTypeE) +STUB( + "jbtZsZc96Nw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE5emptyEv) +STUB("jbz9I9vkqkk", vsprintf) +STUB( + "jc3-FB1Ma+8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEEC1ERSA_) +STUB( + "jc4V+AxYNvM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEC1ERKS7_) +STUB("jc4ggMSeqqQ", _ZN7WebCore11MathMLNames9closeAttrE) +STUB("jc7L3HSltT0", _ZNK3sce3Xml3Dom8NodeList11isAvailableEv) +STUB("jc7wDa3P+CU", _ZN7WebCore17FrameLoaderClientD0Ev) +STUB( + "jcAYvQKjwS0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB("jcBgznNmWQU", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData9getslotIdEv) +STUB( + "jcD0G+yL1cU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE5beginEv) +STUB("jcJP8aGqJsE", _ZN3sce7Toolkit2NP2V28Matching4RoomC1ERKS4_) +STUB("jcMzMcZRt-Y", _ZNK3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead11getPlatformEv) +STUB("jcPO4bt5i3o", _ZN3sce2np8HttpFile5CloseEv) +STUB("jcUzfWh26pM", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_10TrophyInfoEED2Ev) +STUB("jcWDNcXLVjE", ucol_getTailoredSet_67) +STUB( + "jcYrwmxaaVI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEC1EPNS2_10LibContextE) +STUB( + "jcb6Ugvihag", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEC1EPS8_) +STUB("jce1Jhbmj7Q", sceNpManagerIntGetTemporarySsoToken) +STUB("jch+HROEKCc", _ZN7WebCore24CoordinatedGraphicsLayer10setFiltersERKNS_16FilterOperationsE) +STUB( + "jcoutV+SGPo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("jct5WjixLgk", ntohl) +STUB("jcve0Kuqci0", Java_java_lang_Throwable_getStackTraceElement) +STUB("jcvh+HnDn7w", _ZN3sce2Np9CppWebApi13InGameCatalog2V511ErrorEntityC2EPNS1_6Common10LibContextE) +STUB("jcwLN-bFEMA", _ZN9Inspector35DOMDebuggerBackendDispatcherHandlerD2Ev) +STUB( + "jcwM0gqvQBc", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot13hasaccountIdsEv) +STUB("jd5v8BPYQds", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEC1ERKS7_) +STUB("jd8tpwH5a2g", _ZN7WebCore9HTMLNames7revAttrE) +STUB("jdC8IMz6aBk", PubSubUnsubscribe) +STUB( + "jdEZBG55uJI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEeqERKS9_) +STUB( + "jdEbTdOhlqI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEneERKS9_) +STUB("jdGvoF4H1Ns", rgctx_fetch_trampoline_rgctx_9) +STUB("jdKlGaUSjOw", _ZN3WTF7RunLoop7currentEv) +STUB( + "jdOvdDTT1wU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEE3getEv) +STUB("jdXXSQ8KE3o", + _ZThn24_N9Inspector22InspectorDebuggerAgent24continueUntilNextRunLoopERN3WTF6StringE) +STUB("jdh4kGVK3gI", monoeg_g_file_open_tmp) +STUB("jdhjw0pRmyQ", sceG2PDialogTerminate) +STUB( + "jdl-ZMniW9Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEppEi) +STUB("jdq6RpvPDvE", mono_profiler_load) +STUB("je5LZGQ1CMI", _ZNK7WebCore9FrameView11needsLayoutEv) +STUB("je9kILAb5Ug", rgctx_fetch_trampoline_rgctx_122) +STUB( + "jeFDKj6oceQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("jeThsDH9l6Y", _ZN7WebCore6Editor30deleteSelectionWithSmartDeleteEbNS_10EditActionE) +STUB( + "jeTmJ2zUyJ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("jeTpU0MqKU0", sceCameraSetForceActivate) +STUB( + "jeVM-OINtp0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEEC1Ev) +STUB("jeXP7LTBe6E", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119ChildActivityStatusEEdeEv) +STUB("jefrnRrBwwM", WKUInt64GetTypeID) +STUB("jeigLlKdp5I", sceVideodecFlush) +STUB( + "jekg6a2C-KE", + _ZN15AbstractStorage14MemfileContent14CreateInstanceESbIcSt11char_traitsIcENS_8StlAllocIcEEEN3paf6common9SharedPtrINS6_6BufferEEE) +STUB( + "jenumiWfP70", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEE11release_refEv) +STUB("jeoSfwwjVlQ", mono_aot_Sce_Vsh_PsnMessageUtilunbox_trampolines) +STUB("jerxcj2Xnbg", _ZNSt13basic_filebufIcSt11char_traitsIcEE9pbackfailEi) +STUB( + "jewHyldkY+g", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("jex0a4BzZiM", sceRnpsAppMgrRemoveAppOnSystemShutdown) +STUB("jf4TB2nUO40", sceHttpSetAuthInfoCallback) +STUB("jf589k-x-q4", + _ZN12video_parser18cProfileCheckerMp419isPlayableThumbnailERKNS_13VpMediaInfo_tE) +STUB( + "jf916Kv0ILY", + _ZN3WTF20ParallelHelperClient7setTaskENS_6RefPtrINS_10SharedTaskIFvvEEENS_13DumbPtrTraitsIS4_EEEE) +STUB("jfCufYd0-+s", _ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody7setPcIdERKi) +STUB( + "jfJ8RYBo8XE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEC2Ev) +STUB( + "jfN6rywcE5w", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("jfRI3snge3o", _Thrd_sleep) +STUB("jfRO0uTjtzA", sceRtcGetWin32FileTime) +STUB("jfTBAvEcfpE", sceCesRefersUcsProfileCp1254) +STUB("jfUA+iYJCBE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEmmEv) +STUB( + "jfXQNy1CR-A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEppEv) +STUB("jfYfik4AEMc", scePsmKitFontConfigGetAttr) +STUB( + "jfbNDMB90Zo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEE7add_refEv) +STUB( + "jfbPuzCqvk0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEppEi) +STUB( + "jfd2kyA5Lzc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("jfeZA8a0GbA", _ZN3WTF15ThreadConditionD1Ev) +STUB("jffxYQ7TikE", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V113AttributeTypeEEppEi) +STUB( + "jfgiDIEwDvY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("jfh8PcEzFI0", _ZN3sce7Toolkit2NP2V27Session16FixedSessionDataD1Ev) +STUB("jfhp+dXY4Ek", + _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi22ParameterToCreateMatch13isInitializedEv) +STUB( + "jfi9uO8whfg", + _ZN9Inspector25NetworkFrontendDispatcher34webSocketHandshakeResponseReceivedERKN3WTF6StringEdNS1_6RefPtrINS_8Protocol7Network17WebSocketResponseENS1_13DumbPtrTraitsIS8_EEEE) +STUB( + "jflEU85sMoE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEEaSERKSA_) +STUB("jfnS-OoDayM", sceHmdInternalSeparateModeSendVideo) +STUB("jfpSx14AeLc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEppEv) +STUB("jfq92K8E1Vc", + _ZZNSt13basic_filebufIcSt11char_traitsIcEE5_InitEP7__sFILENS2_7_InitflEE7_Stinit) +STUB("jfqTdKTGbBI", _ZTIPKw) +STUB("jfqXivaARwE", __tsan_atomic16_exchange) +STUB("jfqq1qgjE58", _ZN3sce2Np9CppWebApi7Matches2V117ResponseMatchTeamC1EPNS1_6Common10LibContextE) +STUB("jfr41GGp2jA", _ZNSt13basic_filebufIcSt11char_traitsIcEE5uflowEv) +STUB("jft8RCvQ6z4", rgctx_fetch_trampoline_rgctx_86_p) +STUB("jfw9-tDYsTs", u_isalnumPOSIX_67) +STUB( + "jg0nwELpUFA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEE7get_refEv) +STUB( + "jg1eAdVUXwM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEE11release_refEv) +STUB("jg33rEKLfVs", sceGnmIsUserPaEnabled) +STUB( + "jg4gYF+JTjw", + _ZN3sce7Toolkit2NP6Trophy9Interface20trophyRetrieveGroupsEPKNS1_26RetrieveTrophyGroupRequestEPNS1_9Utilities6FutureINS1_15TrophyGroupInfoEEEb) +STUB( + "jg6YZkhydOQ", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUser12setaccountIdEPKc) +STUB("jg9yNYDZW-U", _ZN7WebCore9HTMLNames16onratechangeAttrE) +STUB("jgAyn4OgfSI", sceFrontPanelDisplayStickReadState) +STUB("jgBP1LmAL8o", ucnv_close_59) +STUB( + "jgD3qQ5tDcg", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("jgEmbkCl-4c", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEcvbEv) +STUB( + "jgFIudSGdOI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB( + "jgFyYKuSIds", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEaSERS7_) +STUB("jgHh6iq6MwI", _ZN3WTF7CPUTime3getEv) +STUB( + "jgIZ-umm-ls", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEeqERKS9_) +STUB("jgO+nc-VCgU", _ZNK15AbstractStorage14YoutubeStorage13GetCapabilityEv) +STUB( + "jgPIFDxDHOE", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEEiRNS2_10LibContextEPT_m) +STUB( + "jgQEnPbn5PU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE5beginEv) +STUB( + "jgRTipJXyTI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("jgSVnCNr55o", _ZN7WebCore11HistoryItem30setShouldRestoreScrollPositionEb) +STUB( + "jgVMyJCHHJM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEEptEv) +STUB("jgYD8N1DILg", sceKernelGetCompiledSdkVersionByPath) +STUB("jgYSLQl5Ii8", UDataMemory_createNewInstance_67) +STUB( + "jgfcZXdjBsU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEptEv) +STUB("jgfeHk2L+VY", _ZN14OpaqueJSString6createERKN3WTF6StringE) +STUB("jggcz23NvZY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEE7get_refEv) +STUB( + "jgkzt86pH6U", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEptEv) +STUB("jglEOBFFdTw", Java_java_net_PlainDatagramSocketImpl_socketGetOption) +STUB( + "jglL0J-9wvA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEneERKS9_) +STUB("jgnKK+Q5hXs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEppEv) +STUB( + "jgnPYLJv7+o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEE3getEv) +STUB("jgpc-w4H7FU", sceAutoMounterClientInit) +STUB("jgqRtyNvQ14", _Z12getIpcPathExiiiPKciPc) +STUB("jgrJPZW1x8o", _ZN7WebCore20PasteboardCustomDataD1Ev) +STUB("jgryNP7RXMA", _ZN3sce2Np9CppWebApi14SessionManager2V129PostPlayerSessionsRequestBodyD2Ev) +STUB("jgsEbwRfkVY", _ZN3sce7Toolkit2NP2V28Commerce13CategoryLabelD1Ev) +STUB("jgt9K5OHpVI", WKPreferencesSetPunchOutWhiteBackgroundsInDarkMode) +STUB("jgtWHChq7Rs", _ZN7WebCore15DatabaseTracker8setQuotaERKNS_18SecurityOriginDataEy) +STUB("jh+8XiK4LeE", sceKernelIsAddressSanitizerEnabled) +STUB("jh1KeENZShs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEE7get_refEv) +STUB( + "jh1nnCha380", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEED2Ev) +STUB( + "jh7Gzz946YM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEE11get_deleterEv) +STUB("jhD+lV2vx0U", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIfEeqERKS4_) +STUB( + "jhFjMdhkz0k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEixEm) +STUB("jhGfpXqrWwE", Java_java_lang_StrictMath_cosh) +STUB( + "jhJiqh4Ayu0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEE7add_refEv) +STUB( + "jhRbhvtOdgQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEEaSERKSA_) +STUB( + "jhUNGv8UUX8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEEdeEv) +STUB("jhXKGQJ4egI", sceNpWebApiRegisterExtdPushEventCallbackA) +STUB("jhYlRq9ZfZQ", _ZN7WebCore11DisplayList13StrokeEllipseD0Ev) +STUB("jhazuSL1nA8", uprv_decNumberXor_67) +STUB("jhh8iMrVDQ0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS15TusDataStatusesEEC1Ev) +STUB("jhinn3TXn5g", _ZN7WebCore16FontCascadeFontsD1Ev) +STUB( + "jhmORf0UyFg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEixEm) +STUB("jhpc26P+NLI", u_fprintf_67) +STUB( + "jhqMzCnea+8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEEC2ERSA_) +STUB("jhy6fa5a4k4", sceUserServiceSetThemeHomeShareOwner) +STUB( + "ji-Ce+ndrUg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEEC1ERSA_) +STUB( + "ji6LoK55PRk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEED2Ev) +STUB("jiDXPHMvziA", _ZN3sce2Np9CppWebApi6Common6Binary21intrusive_ptr_add_refEPS3_) +STUB( + "jiGF1o2Yhdw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEC1Ev) +STUB("jiItzS6+22g", sceGnmInsertSetMarker) +STUB("jiJJmEiTth8", MASSMADeleteMessage) +STUB("jiMIvs9-MGg", _ZN3sce7Toolkit2NP2V210Tournament17TournamentDetailsaSERKS4_) +STUB("jiMNYgxzT-4", sceUserServiceSetFaceRecognitionRegisterCount) +STUB("jiOGjZPAc-s", _ZN7WebCore21DiagnosticLoggingKeys24networkProcessCrashedKeyEv) +STUB("jiOeDsjiDkY", _ZN3WTF11Persistence5CoderISt5arrayIhLm20EEE6encodeERNS0_7EncoderERKS3_) +STUB("jiS8qhpykyc", + _ZN7WebCore11FrameLoader32setOriginalURLForDownloadRequestERNS_15ResourceRequestE) +STUB( + "jifF1f8RGD4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "jigw9ZnDKLA", + _ZN7WebCore11MemoryCache19getOriginsWithCacheERN3WTF7HashSetINS1_6RefPtrINS_14SecurityOriginENS1_13DumbPtrTraitsIS4_EEEENS_18SecurityOriginHashENS1_10HashTraitsIS7_EEEE) +STUB("jihale46s9E", sceClPthreadAttrSetdetachstate) +STUB("jisqpUJlaPA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUserD1Ev) +STUB("jiuuJN7Ux0Q", AsyncStorageCloseNative) +STUB("jj+cNXH2UeU", unorm2_getNFKCInstance_67) +STUB("jjBI4VL3Nu0", ubidi_getParaLevelAtIndex_67) +STUB("jjBVvPN9964", sceNgs2VoiceGetMatrixInfo) +STUB( + "jjFHXilabRk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEmmEi) +STUB("jjFahkBPCYs", sceHttp2SetAuthEnabled) +STUB( + "jjIWNxOmWqw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEC1EPKS8_) +STUB("jjSAuJJ+9h8", mono_aot_JSC_Netunbox_trampoline_addresses) +STUB("jjaYX30PKz4", _ZN12video_parser5vpcom3rtc13TickAddMonthsEPmPKmi) +STUB( + "jjb7ycMDC+A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEEC1Ev) +STUB( + "jjddXbH1qVg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE8pushBackERKS8_) +STUB("jjf1gXgilqg", sceBdSchedCancelBackgroundCopyRequest) +STUB("jjfQmeS1O8Y", mono_get_intptr_class) +STUB("jjjRS7l1MPM", _FLog) +STUB("jjkCjneOYSs", sceVoiceGetVolume) +STUB("jjpTY0fRA44", _ZN3sce2np13NpAccessToken14GetAccessTokenEPNS0_6HandleERKNS0_4UserEPS1_) +STUB( + "jjqPvITxdRE", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEiRNS2_10LibContextEPT_m) +STUB("jjz2C1StauM", FcLangSetCreate) +STUB("jjzbvzquenM", sceFiosFHOpenWithMode) +STUB( + "jk+UGESd3ao", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE5beginEv) +STUB("jk04YK+R0HU", _ZN9Inspector26DebuggerFrontendDispatcherdlEPv) +STUB( + "jk0RviXBjhQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE5beginEv) +STUB("jk3UFtmPWOg", _ZN4IPMI4impl11SessionImpl10initializeEPKNS1_6ConfigEPNS0_10ServerImplEPv) +STUB( + "jkBOKeSwchc", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations26getinvitationInvalidFilterEv) +STUB( + "jkBwkJmmdbI", + _ZN7WebCore26TextManipulationController24startObservingParagraphsEON3WTF8FunctionIFvRNS_8DocumentERKNS1_6VectorINS0_16ManipulationItemELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEEEEEONS5_INS0_13ExclusionRuleELm0ES7_Lm16ES8_EE) +STUB( + "jkJjSy88H1w", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V345CommunicationRestrictionStatusResponseFactory7destroyEPNS3_38CommunicationRestrictionStatusResponseE) +STUB("jkO72oOjZlY", _ZN9Inspector22InspectorDebuggerAgent5pauseERN3WTF6StringE) +STUB( + "jkPeyZRxmwU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEED2Ev) +STUB("jkQKWQTOu8g", sceNpManagerIntGetOnlineIdInternal) +STUB( + "jkUOu25wwM0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEppEi) +STUB("jkV8zFTpxIk", sceDebugCancelCoredump) +STUB( + "jkXwOdOGkGc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEED1Ev) +STUB("jkdXvsmjI74", mono_btls_x509_chain_up_ref) +STUB("jkeLboYmJTI", _ZN3sce7Toolkit2NP2V210Tournament5EventD2Ev) +STUB("jkegjwQVzUM", WKBundlePageSizeAndMarginsInPixels) +STUB( + "jkeheyJKYgs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEeqERKS9_) +STUB( + "jki6RR3svHs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("jkrrIsrKdVg", _ZNK7WebCore21ISOTrackEncryptionBox20defaultSkipByteBlockEv) +STUB("jktCMQNgyFc", sceShellCoreUtilActivateIsActivated) +STUB("jktww3yJXnc", sceNpBandwidthTestInitStart) +STUB("jkvg3EDhNLU", _ULx86_64_dwarf_put_unwind_info) +STUB("jkw52aHWgtk", BgsStorageFreeListResult) +STUB("jl0VxYZb8-o", FT_Stream_GetChar) +STUB("jlFtUo2MG+Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEixEm) +STUB( + "jlG9ddD36XI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE8copyFromERKS9_) +STUB("jlIfgOEzZ2A", DisableSystemMedia) +STUB("jlJPZ9mRugo", _ZN7WebCore16createFullMarkupERKNS_5RangeE) +STUB("jlNI3SSF41o", _ZTVSt7codecvtIDsc9_MbstatetE) +STUB("jlNozzKfEHI", _ZN7WebCore20SharedBufferDataViewaSERKS0_) +STUB( + "jlUSb0UOzmo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEED2Ev) +STUB( + "jlWU4nh1Zus", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEEC1Ev) +STUB( + "jla7uPPtZqE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEcvbEv) +STUB("jldKqW11J48", _ZN3sce7Toolkit2NP2V26Friend7Request26DisplayFriendRequestDialogC1Ev) +STUB("jli9Oz8s228", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V116TaskAvailabilityEEppEv) +STUB("jliSfePg28E", WKContextConfigurationSetCustomClassesForParameterCoder) +STUB( + "jliguI-f69Y", + _ZN3sce2Np9CppWebApi14IdentityMapper2V318OnlineIdMapFactory6createEPNS1_6Common10LibContextERK13SceNpOnlineIdPNS5_12IntrusivePtrINS3_11OnlineIdMapEEE) +STUB("jlpne2VzubQ", _ZN3sce7Toolkit2NP22SearchNpSessionRequestC2Ev) +STUB( + "jlqIAC9DL+I", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEEiRNS2_21DownStreamTransactionIT_EE) +STUB("jlr-kEPajrA", _ZNK7WebCore17MouseRelatedEvent29locationInRootViewCoordinatesEv) +STUB( + "jlssFRJ4DeM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE5emptyEv) +STUB("jltWpVKtetg", sceSslRead) +STUB("jlyfIt5FAUI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEEC2EPKS6_) +STUB( + "jlziU7cgdOI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("jm+7zL720v4", _ZN3JSC7Symbols39typedArraySpeciesConstructorPrivateNameE) +STUB("jm5XlHqXefI", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE4sizeEv) +STUB("jm5stx2t4Ao", sceDtsEncEncode) +STUB("jm6Esdc5l4s", _ZN3sce7Toolkit2NP2V28Commerce18ServiceEntitlementD1Ev) +STUB( + "jm7DOKJkaFk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEED2Ev) +STUB("jm8YSQFNhDk", _ZN7WebCore16TrackPrivateBasenwEm10NotNullTagPv) +STUB("jmAw4JxEE5A", _ZN3sce7Toolkit2NP2V210Tournament16RegisteredRosterD2Ev) +STUB("jmDcorQ80dY", RSA_up_ref) +STUB( + "jmFWAzJgio4", + _ZN7WebCore24CoordinatedGraphicsLayer12addAnimationERKNS_17KeyframeValueListERKNS_9FloatSizeEPKNS_9AnimationERKN3WTF6StringEd) +STUB( + "jmG9MPf06ng", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEEaSERS9_) +STUB("jmHFoFUQoi8", _ZN7WebCore14SQLiteDatabase27runIncrementalVacuumCommandEv) +STUB( + "jmHSpqaEYMI", + _ZN9Inspector22ContentSearchUtilities29countRegularExpressionMatchesERKN3JSC4Yarr17RegularExpressionERKN3WTF6StringE) +STUB( + "jmHc4EKVjjs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEC1Ev) +STUB( + "jmRrhtnsIFc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEEcvbEv) +STUB("jmZh4NrN1S0", WKPreferencesSetEnumeratingAllNetworkInterfacesEnabled) +STUB( + "jmago3p0Q9s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("jmfZxE7bNUY", _ZN8meta_gen13JpegRetrieverD2Ev) +STUB("jmiUcZi+ONI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS12TusVariablesEED1Ev) +STUB( + "jmk898J5t9I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "jmmq7nthMV4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEEaSERSA_) +STUB( + "jmulyOoeW+4", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V226WebApiFilterRequestFactory7destroyEPNS3_19WebApiFilterRequestE) +STUB("jn+QXnoXVnc", JSValueIsObject) +STUB("jn1yDsO4MJo", mono_aot_System_Runtime_Serializationjit_code_start) +STUB("jn2YAk8JdPU", _ZNK7WebCore10ScrollView18contentsToRootViewERKNS_9FloatRectE) +STUB( + "jn41bnp76r0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEEcvbEv) +STUB("jn95S8jrpJA", + _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponseC1EPNS1_6Common10LibContextE) +STUB( + "jn9Y-JD+IFU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEED2Ev) +STUB("jnAKr7eVqO4", Java_com_sony_gemstack_core_CoreAppAttributes_getAttributes) +STUB("jnGTQJLI0S8", _ZN7WebCore17FrameLoaderClientC2Ev) +STUB("jnH78zLM6qY", _ZN3WTF10StringImpl5adoptEONS_12StringBufferIDsEE) +STUB( + "jnIN59JM7xI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEEC2ERSA_) +STUB("jnKaHGkrxZ4", _sceUltConditionVariableCreate) +STUB( + "jnOmJ0jPx1Q", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB( + "jnQwMJb4lpo", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging25GameDataMessageAttachmentEE12deepCopyFromERS7_) +STUB("jna5sqISK4s", _ZNSt10moneypunctIwLb0EEC1EPKcm) +STUB( + "jnd5nOMvSN0", + _ZN3sce2Np9CppWebApi7Matches2V134RequestTemporaryTeamResultsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_27RequestTemporaryTeamResultsEEE) +STUB("jng0x3KHPkg", _ZNK3sce2Np9CppWebApi7Matches2V118CreateMatchRequest19npServiceLabelIsSetEv) +STUB("jniFKYdQ3jg", _ZN7WebCore24TemporarySelectionChangeD2Ev) +STUB("jnm6vYnrSoA", __hexnan_D2A) +STUB( + "jnonZqJRfQE", + _ZN9Inspector22ContentSearchUtilities22textPositionFromOffsetEmRKN3WTF6VectorImLm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("jnt2nfIHaVM", _ZN3sce7Toolkit2NP2V26Friend7Request19GetFriendsOfFriendsC1Ev) +STUB( + "jnuL9ARhORs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEEC1ERSA_) +STUB("jnvPWZ140Sw", sceVideoDecoderArbitrationEnable) +STUB("jnwYwesKJZ0", GCC_except_table5) +STUB( + "jo+bdiZJNh4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("jo-jT3ZHL6Y", _ZN12video_parser5vpcom3rtc21ParseRFC3339LocalTimeEPmPKc) +STUB("jo3FQhpJzcU", _ZN3sce2np9HttpTrans4InitEPNS0_12HttpTemplateEPNS0_18HttpConnectionPoolEiPKcm) +STUB( + "jo6GDoXkn9E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEC2EPS8_) +STUB( + "jo6xhpTgDjI", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities21UserActivitiesFactory6createEPNS1_6Common10LibContextEPKcRKNS6_6VectorINS6_12IntrusivePtrINS4_8ActivityEEEEEPNSC_INS4_14UserActivitiesEEE) +STUB("jo97o2Mq3wc", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEEixEm) +STUB( + "joBjq5kdx4g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEC2EPS8_) +STUB("joDkiMqALkM", png_get_IHDR) +STUB( + "joE2elCLWHw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "joE99-5pxbs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE7popBackEv) +STUB("joKb-CGzNeo", mono_aot_System_Threading_Tasksjit_got) +STUB("joNORJjCFhg", sceAmprAmmCommandBufferModifyProtect) +STUB( + "joNSa3rn8bc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE21intrusive_ptr_sub_refEPS9_) +STUB("joP+T4CXgRg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEC2Ev) +STUB("joRjtRXTFoc", sceNpWebApiAddHttpRequestHeader) +STUB( + "joTEtuQVQvQ", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsersC1ERS5_) +STUB( + "joU9fo2BWJU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEC1Ev) +STUB("joaerP21Z2U", _ZN7WebCore16ScriptController17bindingRootObjectEv) +STUB("jogUIsOV3-U", htons) +STUB("joiOaI38vZM", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_skipToPlayListItem) +STUB("joyu2ZxJvZY", sceAppInstUtilAppPrepareOverwritePkg) +STUB("jp+4L0zhE+k", SSL_get_SSL_CTX) +STUB( + "jp+Z2IUTTF8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE6resizeEj) +STUB( + "jp-x1JglXBk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEptEv) +STUB("jp2e+RSrcow", lrintl) +STUB("jp2uvitntrc", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry21recordedDateTimeIsSetEv) +STUB( + "jp3RW0PdYTU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEixEm) +STUB("jp75ki1UzRU", CERT_getCertificateKeyUsage) +STUB("jpA+IcvGLJQ", _ZN3sce7Toolkit2NP9Interface9terminateEv) +STUB( + "jpAJlb8kwVE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEE7add_refEv) +STUB("jpAJorTmZgo", ubrk_getLocaleByType) +STUB("jpB7Ik2Qrpw", WKPreferencesGetJavaEnabled) +STUB("jpBkXjnK-U4", NetworkProcessMainPlayStation) +STUB("jpFjmgAC5AE", sceKernelDeleteEqueue) +STUB( + "jpKpQ+dFh9c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEC2Ev) +STUB( + "jpMXaF+rrfI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEEC2ERSA_) +STUB("jpNzRkBnXcU", _ZN3sce7Toolkit2NP2V28Matching7Request11SearchRoomsD1Ev) +STUB( + "jpOpeBe4aKs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEaSERKS9_) +STUB("jpTMyYB8UBI", sceGnmDebuggerSetAddressWatch) +STUB("jpTTcBnPKeM", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed14PlayedWithFeedEE12deepCopyFromERS7_) +STUB( + "jpTduyg4uus", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("jpUjTzRbB4k", UI_method_get_closer) +STUB("jpVunYq0+Vg", _ZN7WebCore21DiagnosticLoggingKeys22unknownEntryRequestKeyEv) +STUB("jpY0vJLjJ1w", _ZN3sce2Np9CppWebApi12Leaderboards2V15Error7setCodeERKi) +STUB("jpY8TUkS-hU", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V18RelationEEC1Ev) +STUB("jpYQ6ihvKTA", mono_aot_Sce_PlayStation_Jsonjit_got) +STUB("jpb8rbo4MwU", LoginMgrCreateUser) +STUB( + "jpbP1bnxp-I", + _ZN7WebCore22EmptyFrameLoaderClient38dispatchDecidePolicyForNewWindowActionERKNS_16NavigationActionERKNS_15ResourceRequestEPNS_9FormStateERKN3WTF6StringEONS9_8FunctionIFvNS_12PolicyActionEEEE) +STUB( + "jpcRp1K8emo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEppEv) +STUB( + "jpdNy2-sE-Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEE7get_refEv) +STUB("jpdtTcaVXpI", sceVorbisDecTimeTotal) +STUB("jpeIEGc1yPA", WKPreferencesSetFixedFontFamily) +STUB("jpeJPqix-XU", mono_aot_Sce_Vsh_RnpsAppMgrWrapperplt_end) +STUB("jpfOSyJCovk", JNU_ClassObject) +STUB( + "jpgxRoYSWJ8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEmmEv) +STUB("jpjT3LHx42U", _ZN4Manx11MediaSourceD1Ev) +STUB("jpjbBAF6BV8", _ZN4Manx3Ssl8finalizeEv) +STUB( + "jpmqQ6KeL0A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB("jpq8GaJ3ER0", sceMbusGetDeviceInfoByBusId_) +STUB("jpxHb1JKdCA", _ZN7WebCore20TransformationMatrix8multiplyERKS0_) +STUB( + "jq3oPa+n4p8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("jq4BNIysAKY", _ZTVN7WebCore11DisplayList11DrawingItemE) +STUB("jq4Srfnz9K8", _LTgamma) +STUB( + "jqBLsGfL7H8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEC2Ev) +STUB( + "jqCAI6-i5F4", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorI16SceNpTusVariableNS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB("jqGF+8hl78A", _ZNK3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error11sourceIsSetEv) +STUB("jqIJi3pJ7Us", u_fgetfile_67) +STUB( + "jqIbNPQuhm0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEptEv) +STUB("jqJgtn69CMY", + _ZN15AbstractStorage15FacebookStorage7IsExistERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("jqLCVPYZF24", _ZN7WebCore20PasteboardCustomData5EntryC1ERKS1_) +STUB("jqMurvieLBk", FTA_Remove_Module_psnames) +STUB("jqRcNtZmLuE", sceKeyboardSetProcessFocus) +STUB("jqTA4juffRg", _ZN3WTF9WorkQueue15concurrentApplyEmONS_8FunctionIFvmEEE) +STUB("jqUGi9VvXUY", _ZN7WebCore21DisplayRefreshMonitorD2Ev) +STUB( + "jqWg8IOprS4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEptEv) +STUB("jqXQ6WN+Ibo", mono_aot_Sce_Vsh_Np_Papcjit_code_start) +STUB("jqYWaTfgZs0", sceRazorCpuSetPopMarkerCallback) +STUB("jqb7HntFQFc", sceWebBrowserDialogInitialize) +STUB( + "jqeqFe-h6sc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEEC2ERKSA_) +STUB("jqhYbYjdmus", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15StatsC2EPNS1_6Common10LibContextE) +STUB("jqj5vbglbZU", sceShellCoreUtilSetRemotePlayStatus) +STUB("jqnDcCBBLOY", _ZNK7WebCore20SharedBufferDataView4sizeEv) +STUB( + "jqnkLVyqtns", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "jqoO9sP3Y2Y", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEED2Ev) +STUB("jqpL3ERqnX4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V120PlayerJoinableStatusEEppEi) +STUB("jqrGJJxFhmU", pthread_barrierattr_setpshared) +STUB( + "jqvz6Wnlcgg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEEC2ERKSA_) +STUB( + "jqyGnISDa2c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEE7add_refEv) +STUB("jqyPIseE6Fg", _ZN3sce7Toolkit2NP2V28Commerce9ContaineraSERKS4_) +STUB("jqyhb1oMgHw", sceRegMgrGetStrInitVal) +STUB("jr+uI0s+r0c", sceDebugGetWaitingListOfUltQueue) +STUB("jr0OcEeQJ8o", _ZN3sce2np12StreamBufferixEi) +STUB( + "jr0qZlPIkqc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEEC1ERSA_) +STUB("jr3NztKU5ig", _ZNK6WebKit17ChildProcessProxy5stateEv) +STUB("jr41BgCFUZE", CRYPTO_free) +STUB("jr52f45OlWg", sceVideoOutCursorSetHotSpot) +STUB("jr5yQE9WYdk", _Tls_setup__Locale) +STUB("jrBcdOTBEW8", mono_arch_get_static_rgctx_trampoline) +STUB("jrFMAwRbQWs", _ZN3WTF6Thread6createEPKcONS_8FunctionIFvvEEE) +STUB("jrQ8dvIEdV8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEC2ERS7_) +STUB( + "jrUpI1B9qiQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEneERKS9_) +STUB("jrVHsKCXA0g", sceHttp2SetCookieBox) +STUB("jrW+AxSrLBk", _ZN3WTF18monthFromDayInYearEib) +STUB("jrWkVMoWd-I", _ZN7WebCore11MathMLNames9widthAttrE) +STUB( + "jrb6hgpa4Cc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEC1ERS7_) +STUB( + "jrhXxOPRWb4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEC1EPKS8_) +STUB("jri3LyXhEGw", sceLibreSslInitEx) +STUB("jrlcgk7ujKI", sqlite3_stmt_readonly) +STUB( + "jrmkUT84I8M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("jrpnVQfJYgQ", sceErrorDialogOpenDetail) +STUB( + "jrqvJogd2oc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEEdeEv) +STUB( + "jrxIAWcJvro", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEC1Ev) +STUB("js06qcwSqnE", sceFsSmrTrim) +STUB("js0MFg3iZcU", _ZN7WebCore16JSStringCallbackD0Ev) +STUB("js1b-JTDMww", searchCommInfoListByKey) +STUB( + "js5bNctzX8Y", + _ZN3sce2Np9CppWebApi7Matches2V126ResponseMatchPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_19ResponseMatchPlayerEEE) +STUB( + "js6buml4NVw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("jsA1PqE7Cpk", _ZN3sce7Toolkit2NP23ChallengeGetDataRequestC2Ev) +STUB( + "jsBU+GLEfPU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEC2EPS8_) +STUB( + "jsCNTcjsYH0", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemProperties10initializeEPNS1_6Common10LibContextEPKcSA_NS6_12IntrusivePtrINS3_55PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEE) +STUB( + "jsCuhhi+gdM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "jsD-y5gt6+E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEEC1Ev) +STUB( + "jsFhdte+c-Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("jsHe99x6l0w", _ZTVN3sce2np8JsonBoolE) +STUB("jsI+ycl8YLI", sceRnpsAppMgrRemoveUfsImageOnSystemShutdown) +STUB( + "jsKJKRA0Vao", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEE7get_refEv) +STUB( + "jsNyepiSt1U", + _ZN3sce2Np9CppWebApi14SessionManager2V122SearchConditionFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_15SearchConditionEEE) +STUB( + "jsQVPUYyuFY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEE11get_deleterEv) +STUB( + "jsS8esMzbZw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEC2Ev) +STUB( + "jsTopAKiKYs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "jsWYewyjlF4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEED1Ev) +STUB("jsYJFoq3pQo", + _ZNK9Inspector15RemoteInspector26listingForInspectionTargetERKNS_22RemoteInspectionTargetE) +STUB("jsg3XD8NZrM", _ZN3sce2Np9CppWebApi14SessionManager2V122GameSessionPushContextD1Ev) +STUB( + "jsjBGNLxWPs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("jslI0CQzOIw", WKWebsiteDataStoreSetStatisticsSubresourceUniqueRedirectTo) +STUB( + "jt+emrF-LlA", + _ZN7WebCore18TextureMapperLayer12sortByZOrderERN3WTF6VectorIPS0_Lm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB( + "jt0u5UP3HfA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEplEm) +STUB("jt25u2q3Nvw", _ZN4IPMI6ClientC2Ev) +STUB("jt3pl7EN17o", sceAgcDcbPrimeUtcl2) +STUB("jt4pCCrVjCU", mono_type_get_modifiers) +STUB( + "jtA-mriXyx4", + _ZN3sce2Np9CppWebApi14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBody13getSpectatorsEv) +STUB("jtDDOIY8KW0", mono_aot_ReactNative_Modules_Vsh_Gct_Telemetryunwind_info) +STUB( + "jtEOdWTsKGA", + _ZN3sce2Np9CppWebApi14SessionManager2V134RequestGameSessionSpectatorFactory7destroyEPNS3_27RequestGameSessionSpectatorE) +STUB("jtFBk5rkwrA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEE5resetEPS8_) +STUB("jtHgUDo2a74", WKPreferencesSetMediaCaptureRequiresSecureConnection) +STUB("jtKsxN12YfA", WKWindowFeaturesGetTypeID) +STUB( + "jtRGdXW4M44", + _ZN3sce7Toolkit2NP2V211SocialMedia21postMessageToFacebookERKNS3_7Request21PostMessageToFacebookEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("jtRnbaQj8JY", __libc_allocate_tls) +STUB("jtWvJ0PETYQ", zrule_equals_67) +STUB("jtYWR9C6sIg", mono_get_exception_stack_overflow) +STUB( + "jtcdGsGcbE0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("jtgNZLiehPY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE4sizeEv) +STUB( + "jtiXLNAWqwE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE21intrusive_ptr_sub_refEPS9_) +STUB("jtkqXpAOY6w", sceGnmSetGsRingSizes) +STUB( + "jtmt5YQ6ffE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEC1Ev) +STUB( + "jtnGzAx8UMo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEC2EPS8_) +STUB("jtoBE5rhKdQ", rgctx_fetch_trampoline_rgctx_75) +STUB("jtuUDPy+C4o", mono_aot_Sce_Vsh_LncUtilWrapperplt_end) +STUB( + "jtwcLp-BmgQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE5beginEv) +STUB("jtzd13HLYHc", _ZN3sce2Np9CppWebApi11Matchmaking2V18LocationD1Ev) +STUB("ju22PxW0Xc0", _ZN3sce7Toolkit2NP15AppSTLAllocatorItEC1ERKS3_) +STUB( + "ju4Na3jmbEg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB("juCmOMgumiM", u_fsettransliterator_67) +STUB("juD4DzXzsNQ", dwarf_cie_info_pool) +STUB("juDPVL6phu8", mono_aot_platformjit_code_end) +STUB("juJhfSfpm5g", _ZL11tidy_globalv) +STUB("juKqIcrP9Es", _ZN3WTF6String6formatEPKcz) +STUB("juOEOUv1DSM", Java_java_awt_GnmGraphics_nativeDrawRoundRect) +STUB("juTxptKt0gE", _ZN19JITSharedDataMemory14shared_reallocEPvm) +STUB( + "juVcNi5OEeY", + _ZN3sce7Toolkit2NP2V28Matching11setRoomInfoERKNS3_7Request11SetRoomInfoEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("juWbTNM+8hw", fsync) +STUB("juYfuLZYAyM", _ZN7WebCore15JSFetchResponse7destroyEPN3JSC6JSCellE) +STUB("juabKNqO+3Y", rgctx_fetch_trampoline_rgctx_126) +STUB("juaxHn6Boy8", sceDebugCreateScratchDataAreaForPrx) +STUB("jugG0cE42Nw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEEptEv) +STUB( + "juhU8c7TE38", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEC1EPS6_PNS2_10LibContextE) +STUB("jujg+gUXTx0", _ZN7WebCore24CoordinatedGraphicsLayer25requestBackingStoreUpdateEv) +STUB("juoVF+HEj1k", _ZN7WebCore4Node18dispatchInputEventEv) +STUB("juqlPZWkJGc", sceShellCoreUtilMountDownloadDataForShellUI) +STUB("jusJu1ps6I8", _ZNK7WebCore9RenderBox11borderRadiiEv) +STUB( + "juwYlsNqcyQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE21intrusive_ptr_add_refEPS9_) +STUB("juxjuz-22RA", _ZN7WebCore26Matrix3DTransformOperation6createERKNS_20TransformationMatrixE) +STUB( + "jv2QXRU2vc0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "jv4SG9DWqpk", + _ZN3sce2Np9CppWebApi14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBody8fromJsonERKNS_4Json5ValueE) +STUB( + "jv851K9fJhk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEC2EPKS8_) +STUB( + "jv8VewUfLFY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEC1Ev) +STUB("jvADx3y3ook", mono_aot_Sce_Facebook_CSSLayoutplt_end) +STUB( + "jvEuZ3Gv-SA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEEaSERSA_) +STUB("jvPer4hz+UU", sceVideoOutSysSetDcePipeMode) +STUB( + "jvRHtGf2ZKI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB( + "jvRvhwaI-Eg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEppEv) +STUB( + "jvSTgQfiDiI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB("jvUW4zydBjQ", _ZN7WebCore18TextureMapperLayer15setRepaintCountEi) +STUB("jvblGx6KoA0", _ZN3sce2np18HttpConnectionPool13GetConnectionEPNS0_12HttpTemplateEPKcS5_tPi) +STUB("jvbytz0ocJc", uprv_decContextSaveStatus_67) +STUB( + "jvmkHg4UNeU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEEaSERS9_) +STUB( + "jvoMA6OiQ2w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEmmEi) +STUB( + "jvrKPD-+NlY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("jvtq5JCPkmU", _ZN3sce2Np9CppWebApi7Matches2V120ResponseInGameRosterD2Ev) +STUB( + "jw0sUQCcT9w", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE4sizeEv) +STUB( + "jw22poRy3xE", + _ZN7WebCore18ImageBufferBackend13drawConsumingERNS_15GraphicsContextERKNS_9FloatRectES5_RKNS_20ImagePaintingOptionsE) +STUB("jw5WqFhENLo", rgctx_fetch_trampoline_mrgctx_74_p) +STUB("jw8zgSAXN1c", _ZN3sce2Np9CppWebApi11Matchmaking2V110UserTicketD1Ev) +STUB("jw9FkZBXo-g", _sceUltUlthreadRuntimeCreate) +STUB("jwCEzr7uEP4", sceGnmDebuggerGetAddressWatch) +STUB("jwGQ1FzOkDg", _ZN12video_parser20cVideoContentFactory22_releaseFFLInstanceMp4EPv) +STUB("jwIH8KRsFYU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEC2Ev) +STUB("jwIZMWyLmuY", _ZN7WebCore11startOfWordERKNS_15VisiblePositionENS_9EWordSideE) +STUB("jwImxXRGSKA", sceVideodec2DeleteDecoder) +STUB("jwJYJ3yTnHk", _Dint.mask) +STUB("jwNS3A8IEN4", mono_aot_Sce_PlayStation_BclExtensionsunwind_info) +STUB("jwO6mScIWL0", _ZNK7WebCore13HitTestResult16absoluteImageURLEv) +STUB("jwOjEhWD6E4", sceNpManagerIntIsUnregisteredClientError) +STUB("jwVsbMqTopY", jpeg_set_marker_processor) +STUB("jwWmYH4LsBY", mono_code_manager_reserve_align) +STUB( + "jwWp+U4zW4o", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "jwh3+vOVO1I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "jwnC2xIikE4", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer12setsessionIdEPKc) +STUB( + "jwpHWPLDDY4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEED2Ev) +STUB("jwsSD7ZhRvw", _ZN9Inspector21DOMFrontendDispatcher15documentUpdatedEv) +STUB( + "jwx-OqS+0Ww", + _ZN7WebCore9TextEvent13initTextEventERKN3WTF12AtomicStringEbbONS1_6RefPtrINS_11WindowProxyENS1_13DumbPtrTraitsIS6_EEEERKNS1_6StringE) +STUB( + "jx0cDuuyBcI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEED2Ev) +STUB("jx3quYqCn2c", _ZN3JSC7Symbols28makeBoundFunctionPrivateNameE) +STUB("jx4ON+-ccNY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEEC2ERKS9_) +STUB("jx5qjwQWSRU", sceDtsEncEncodeAsync) +STUB( + "jx9fPhAskgg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEE3getEv) +STUB( + "jxC6X62V4Yw", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("jxFQgW-VK1U", _ZN7WebCore21DiagnosticLoggingKeys24varyingHeaderMismatchKeyEv) +STUB("jxM0UUOggXU", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi22ParameterToCreateMatchD1Ev) +STUB("jxPY-0x8e-M", _ZNK3sce2np10EventQueue7IsEmptyEv) +STUB("jxW+13G+OhI", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchDetailC2ERS5_) +STUB("jxdvgOcBET0", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container14platformsIsSetEv) +STUB( + "jxeB--4z0t0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE8capacityEv) +STUB( + "jxeWmUEV6bo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEE11release_refEv) +STUB( + "jxgVXoLVLt4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEmmEi) +STUB("jxibnlSK13Y", __asan_report_present) +STUB("jxlpClEsfJQ", _ZNSt12placeholders2_5E) +STUB("jxn875wvWPY", + _ZNK3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponse15nextOffsetIsSetEv) +STUB( + "jy+Nt-Y8XZA", + _ZNK3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody13getMaxPlayersEv) +STUB( + "jy17Z7bbMTw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEC2Ev) +STUB("jy9OortW91s", _ZN12video_parser13cVideoMetaMP415getSeasonNumberEPi) +STUB("jy9urODH0Wo", _ZNSt8messagesIcED0Ev) +STUB( + "jyCD7CY7wYc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEE7get_refEv) +STUB("jyGoZLZlG-M", sceTsJumpPTS) +STUB( + "jyNp75EfOnw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "jyP71LYuCrA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEEC2ERKSA_) +STUB( + "jyPCo6+l5-E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEE7get_refEv) +STUB( + "jyTNLNLHPR8", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEEiRNS2_10LibContextEPT_m) +STUB("jyTWV0OsGc4", X509_STORE_CTX_get_error_depth) +STUB("jyVEy5nIzwc", sceIduUtilLaunchTitleV2) +STUB("jyXTVnmlJD4", _ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED0Ev) +STUB( + "jybbmJ+uEwo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEptEv) +STUB("jydFDMsVG-I", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEptEv) +STUB("jyf32aEUoMs", cairo_device_to_user) +STUB("jyhqbsCB4kQ", WKPreferencesGetArtificialPluginInitializationDelayEnabled) +STUB("jyi5p9XWUSs", sceNpWaitAsync) +STUB( + "jyiEl3-Umt0", + _ZN3sce2Np9CppWebApi14SessionManager2V121RepresentativeFactory6createEPNS1_6Common10LibContextERKmRK13SceNpOnlineIdPKcPNS5_12IntrusivePtrINS3_14RepresentativeEEE) +STUB( + "jyicAnEtuO0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEptEv) +STUB("jykT-VWQVBY", + _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE5_IputES3_RSt8ios_basecPcm) +STUB( + "jylRmR4AnLA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEE11release_refEv) +STUB("jymMDfvg6T4", _ZTVN7WebCore11DisplayList20FillRectWithGradientE) +STUB( + "jyqje3VCc2o", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB( + "jz+lTIAk5Zw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEixEm) +STUB( + "jz-4x-tfQlg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEEC2Ev) +STUB( + "jz01A+JpT9w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEEC1ERSA_) +STUB( + "jz0kPMYtp5Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEmmEi) +STUB( + "jz2tPMp6LW8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEEC1ERKSA_) +STUB("jzCsUXzxmH0", _sceNpReallocImpl) +STUB("jzDgtYoh8-Y", + _ZN7WebCore15setToBackingMapERN3JSC14JSGlobalObjectERNS0_8JSObjectENS0_7JSValueES5_) +STUB("jzFpYtk0zuM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEC1ERKS7_) +STUB("jzHaIiyQYJw", _ZN3sce7Toolkit2NP9Utilities6FutureI24SceNpBandwidthTestResultED1Ev) +STUB("jzKEyc7mRAU", mono_aot_System_Xml_Serializationjit_code_end) +STUB("jzP0MoZpYnI", sceNetEventCallbackDestroy) +STUB( + "jzPB6RZ+0+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEEC1ERKSA_) +STUB( + "jzTSKZ5ZJfI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEptEv) +STUB( + "jzTqYKI5M0I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "jzVDMFlfTUE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE3endEv) +STUB("jzVKlW6HHmU", sceFsDrfsRegisterSocket) +STUB( + "jzZ-3K3Nd0k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "jzflzfTsOUA", + _ZN3JSC8JSObject16getPropertyNamesEPS0_PNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB( + "jzgpd83oc-A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "jzhfxPy4Axk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEmmEi) +STUB( + "jzikSKI3v-w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("jzjrS8gGNdY", glGetRenderbufferParameteriv) +STUB( + "jzkGwpPsFqI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB("jzoBKouomoQ", YGNodeStyleSetHeightPercent) +STUB("jzqHf7eeUNs", rgctx_fetch_trampoline_rgctx_93) +STUB("jzwNmoo5t3g", rgctx_fetch_trampoline_mrgctx_62) +STUB("jzyynGEQT2E", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities12ErrorFactory7destroyEPNS4_5ErrorE) +STUB("k+0fsmsW2q8", _ZN3JSC12VMEntryScopeD2Ev) +STUB("k+0t4ZFxfT0", WKPageSetPageAndTextZoomFactors) +STUB("k+1jPKKqLqE", _ZN7WebCore8Document22scrollingElementForAPIEv) +STUB("k+6XRp7LzQg", YGNodeLayoutGetHeight) +STUB("k+7Gx0pjaYY", ctyp_tab) +STUB("k+8tScXRpY4", delegate_virtual_invoke_imt_m_14_p) +STUB("k+AXqu2-eBc", getpagesize) +STUB("k+LGes6TQQI", sceIpmiMgrPauseDump) +STUB("k+SkqnbyFXo", __asan_stack_malloc_7) +STUB( + "k+V0feQOd4s", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSession12setaccountIdEPKc) +STUB("k+X8sU2x8Jw", mono_btls_x509_lookup_free) +STUB("k+ZqL-6U1jA", _ZSt9use_facetISt10moneypunctIcLb0EEERKT_RKSt6locale) +STUB("k+d8ErxqXgA", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11UserProfile10NpProfilesEE5resetEv) +STUB("k+dk+pYjIac", sceSblACMgrIsPlatformDLL) +STUB("k+hld6qybEs", ures_getStringByKeyWithFallback_67) +STUB("k+jX53jlQm4", nsnp_FreeString) +STUB("k+vGhWux+zo", mono_aot_System_IO_Compressionplt_end) +STUB( + "k+vt7QoOjSM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEaSERKS7_) +STUB("k+zHwjrbxsI", UI_method_get_reader) +STUB( + "k-+aF1Coi9E", + _ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime15CollectionEntryEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE) +STUB("k--77SdydH8", uprv_tzname_clear_cache_67) +STUB( + "k--dgyIs8WQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEE7get_refEv) +STUB( + "k-79WMIMxl4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("k-7kxXGr+r0", sceUserServiceGetFileBrowserFilter) +STUB("k-AmBc942UI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEEC2ERS6_) +STUB("k-JpyR2dYAM", sceAgcAsyncCondExecPatchSetEnd) +STUB("k-M9hVlr04s", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEEaSERS6_) +STUB("k-MLK6CAyUQ", _ZNK7WebCore19HTMLTextAreaElement5valueEv) +STUB( + "k-N352OgMAc", + _ZN3sce2Np9CppWebApi14ConnectAccount2V221PSNError_errorFactory6createEPNS1_6Common10LibContextEiiPNS5_12IntrusivePtrINS3_14PSNError_errorEEE) +STUB("k-NDOMP7m2M", _ZNK3JSC14ProtoCallFrame6calleeEv) +STUB("k-TBNpvmYXs", getNumOfProtocolInfoList) +STUB("k-U-G6UoURU", _ZN3JSC7Symbols35createArgumentsButterflyPrivateNameE) +STUB("k-Wh+dnRRdI", _ZNK3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead11getTicketIdEv) +STUB("k-X0uVfQEb0", _ZN9Inspector17ScriptDebugServernaEm) +STUB( + "k-Yx7lU0FWM", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "k-cNrhxdbEw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("k-ds+HGkVNI", _ZN7WebCore9MediaListD2Ev) +STUB("k-l0Jth-Go8", mrand48) +STUB("k-q+xOxdc3E", sceAvPlayerSetAvSyncMode) +STUB("k-rW4Fyo67M", + _ZNK3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends8getorderEv) +STUB( + "k-rt+v39dNk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE6resizeEj) +STUB("k-sppToVlnc", sceNpSnsTwitchAbortRequest) +STUB("k-tITOPTu-E", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEEC2ERKS7_) +STUB( + "k-z3aWITdfY", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM14ShadowRootTypeEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB("k0+WgfI1FWM", _ZNK9Inspector15ScriptCallFrame20buildInspectorObjectEv) +STUB( + "k004Z2jZeog", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE7reserveEi) +STUB("k03xALL1hR0", _ZN3sce2np10JsonNumberD1Ev) +STUB("k0495LPSWPU", WKContextMenuItemCreateAsCheckableAction) +STUB("k04jLXu3+Ic", sceLibcMspaceMallocStatsFast) +STUB("k05xFQ94Znw", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getMixerGain) +STUB("k0BKafeYaUo", _ZN15AbstractStorage14StorageManager10InitializeEv) +STUB("k0C+3ZgQQ4o", + _ZNK3sce7Toolkit2NP9Utilities6FutureI24SceNpBandwidthTestResultE17getAdditionalInfoEv) +STUB("k0CNy-lj8Eo", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112ErrorFactory7destroyEPNS3_5ErrorE) +STUB( + "k0D-T2Sn3DQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEE5resetEPS9_) +STUB( + "k0D3PhUjII8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("k0E3kZd2JNM", _ZSt17rethrow_exceptionSt13exception_ptr) +STUB("k0F+oQKokYc", _ZN4Manx8X509cinf15serialNumberStrEPPc) +STUB("k0FXPYF5nJE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEEC1Ev) +STUB("k0Gp2cXDeqU", audiodeccpuinternal_core_ops_dts) +STUB("k0Kog-TlHYg", sceFsMountTrophyData) +STUB("k0LeL1oyJro", mono_type_full_name) +STUB( + "k0ND1nv43nY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "k0NbEMvH4xQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE5emptyEv) +STUB("k0PVLsctcUs", _ZN3PAL12CryptoDigest8addBytesEPKvm) +STUB("k0RJXTO3SbQ", scePadGetActiveTime) +STUB( + "k0WHwWy4YXE", + _ZN7WebCore13JSHTMLElementC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_11HTMLElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "k0bnpc0Gqe0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB("k0eC64lQIxM", _ZNK3sce2Np9CppWebApi6Common8IteratorIiEptEv) +STUB("k0hHy5A6jIk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEE7get_refEv) +STUB("k0halcNLNiQ", _ZN3sce3pss4core5audio11SoundPlayerC1EPNS2_5SoundEj) +STUB( + "k0jhCfHxvZA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEC2EPKS8_) +STUB( + "k0joUiR6ZRg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEEC1ERKSA_) +STUB( + "k0mf8aJTF1I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB( + "k0ohq55HfrI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("k0vARyJi9oU", __modsi3) +STUB( + "k0xI5I-UcPY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEED1Ev) +STUB( + "k1-l3-S82-Y", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations10initializeEPNS1_6Common10LibContextEPKc) +STUB("k10QLMNGGTo", + _ZN3JSC13RuntimeMethod15createStructureERNS_2VMEPNS_14JSGlobalObjectENS_7JSValueE) +STUB("k1177T32Vmo", _ZN3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead11setTeamNameEPKc) +STUB( + "k13gSW-k3jk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEE5resetEPS6_) +STUB("k15NAwDzp9k", _ZN3WTF11Persistence7Decoder6decodeERm) +STUB("k15lP5BMirY", Java_sun_awt_image_GnmImageDecoder_readImage__I_3BIILjava_awt_Image_2) +STUB("k17+SANfJsg", kickEnable) +STUB( + "k19M2+XgFK4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("k1AVGqMRF08", _ZN3sce7Toolkit2NP2V24Core15StringifyResultD2Ev) +STUB("k1DUWc4bQN4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEE11get_deleterEv) +STUB( + "k1DeKHg-DP4", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "k1Hsc0qMW9s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEEdeEv) +STUB("k1OoMsQ7tQ8", sceSpNetSend) +STUB("k1PTjHF0qoA", sceCtrlpGetRecData) +STUB("k1SwgkMSOM8", sceRemoteplayInitialize) +STUB("k1V1djYpk7k", sceNetShowIfconfig) +STUB("k1VlSDg9azo", _ZNK3sce2np10JsonObject5CloneEP16SceNpAllocatorEx) +STUB("k1W6RPkd0mc", sceHmdInternalResetLedForVrTracker) +STUB( + "k1Z9vz+VFMM", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetBoolean9Ev) +STUB("k1f4Ns9nsRU", _ZN3sce7Toolkit2NP2V28Matching12RoomPingTimeC1Ev) +STUB("k1gBazlQOKo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEptEv) +STUB( + "k1gxVMyxZ+4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEED1Ev) +STUB("k1jIkFHa9OU", sceKernelProtectDirectMemory) +STUB("k1jUC-pZKaY", ucal_clone_67) +STUB("k1kyzonwd+Q", whexdig_init_D2A) +STUB( + "k1oAIgQ1TZo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEC2Ev) +STUB( + "k1qvxDwyLzc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("k1u0C9qTkoQ", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE5clearEv) +STUB( + "k1w+iYftBjE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEED2Ev) +STUB( + "k2+fbIVi7pU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEEdeEv) +STUB("k210oKgP80Y", sceNpWebApiGetHttpStatusCode) +STUB( + "k28vZFlJrlg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEC1Ev) +STUB("k2D8GDP5dUE", _ZN3sce7Toolkit2NP2V29Messaging12Notification18NewGameDataMessageC2ERKS5_) +STUB( + "k2GDIUotzeM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEE5resetEPS6_) +STUB("k2IDcx-apvQ", _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead15getJoinDisabledEv) +STUB( + "k2JrCbYE0vk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEEC2Ev) +STUB("k2Lax3CbnUg", ubidi_close_67) +STUB("k2LxVh9VNW4", _ZN7WebCore15DatabaseTracker12deleteOriginERKNS_18SecurityOriginDataE) +STUB("k2R8ICGeWjo", _ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionNonPsnPlayerD2Ev) +STUB("k2TwvWIam5I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEE7add_refEv) +STUB("k2VonUL2gF8", _ZN15AbstractStorage4Item14GetStorageNameEv) +STUB("k2X2uwKx11M", _ZTVN9Inspector15InspectorTargetE) +STUB("k2Ybzu4uEiU", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getTextSTStyle) +STUB( + "k2ZpCZWpLeY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEC1EPS8_) +STUB("k2ZyhP7QdaA", sceVideoCoreReleaseDecoderResource) +STUB("k2gUXJKKLiM", mono_aot_Sce_Vsh_AppContentUtilWrapperjit_code_end) +STUB( + "k2ipseJ3nHQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEeqERKS9_) +STUB("k2niR5Rxn84", WKWebsiteDataStoreDisableNetworkProxySettings) +STUB( + "k2qGgMeI8xM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE21intrusive_ptr_sub_refEPS7_) +STUB( + "k2vpmwv6hmg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEixEm) +STUB( + "k2y6Zp4MjNE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEE7get_refEv) +STUB("k3+iBzNHnuY", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi21ParameterToLeaveMatchC2ERS5_) +STUB( + "k3+xuwWWE3c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("k34J5kyOy8w", scePerfTraceIoControllerUpdate) +STUB("k3B5vS6IiKA", _ZN3sce2Np9CppWebApi7Matches2V118RequestTeamResultsC2EPNS1_6Common10LibContextE) +STUB("k3CYE6PLtAg", _ZN7WebCore9HTMLNames8layerTagE) +STUB("k3GhuSNmBLU", sceAgcCbDispatch) +STUB("k3Ha6Y6Kfi4", mono_class_get) +STUB("k3Iuj2Tyt+w", _ZThn16_N9Inspector14InspectorAgent6enableERN3WTF6StringE) +STUB("k3Ot9t-rKUE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEE3getEv) +STUB("k3RI-YRkW-M", CERT_STORE_findPskByIdentity) +STUB( + "k3SYGrPBtpg", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getBoolean9Ev) +STUB("k3TGNqgYs8c", rgctx_fetch_trampoline_mrgctx_48_p) +STUB("k3UAOVz3O+k", _ZN7WebCore9HTMLNames9deferAttrE) +STUB("k3W+YOaPF68", _ZN3sce7Toolkit2NP2V27Session11Invitations8deepCopyERKS4_) +STUB( + "k3aMt00quEA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("k3bF8gFCf00", _ZN7WebCore9JSDOMRect11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("k3bqdFZj9kQ", + _ZN3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator14setCustomData1EPKvm) +STUB( + "k3cgiHaiHzI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEmmEv) +STUB("k3fGJSLc5FI", WKWebsiteDataStoreConfigurationSetIndexedDBDatabaseDirectory) +STUB( + "k3g8yRYgoh0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE5clearEv) +STUB( + "k3gqzpzqtKk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEC1EPS8_) +STUB( + "k3jOok9ypYU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEED2Ev) +STUB( + "k3lUor5qZgI", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12unsetString5Ev) +STUB( + "k3lcTYS1ZDw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("k3rxfdRtCy4", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIdEplEm) +STUB( + "k3tZhNjS84Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("k3vXih3OX4M", _ZN4Manx9X509chain10numOfChainEv) +STUB( + "k3xhtfMmiAg", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3CSS16StyleSheetOriginEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB("k3zPIcgFNv0", sceCameraSetWhiteBalance) +STUB("k4+KjJmzihI", mono_aot_Mono_Dynamic_Interpreterunwind_info) +STUB("k4+nDV9vbT0", scePadGetMotionTimerUnit) +STUB("k4-n-E3wOE4", _ZN7WebCore14LoaderStrategyC2Ev) +STUB( + "k41Xh8zQEkU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE3endEv) +STUB( + "k453G0-qKFI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEplEm) +STUB( + "k46TtS8YRrk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEC2Ev) +STUB("k4Ak+e2D1Hg", sceVideoOutRemoveBufferAttributeOption) +STUB( + "k4DtfD8QBls", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE21intrusive_ptr_add_refEPS9_) +STUB("k4HfprWhc0Q", _ZN9Inspector28HeapBackendDispatcherHandlerD0Ev) +STUB( + "k4IlBTvaiOo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE5emptyEv) +STUB("k4M1w5Xstck", sceNpManagerIntRevalidatePassword) +STUB( + "k4NtQ4VrANE", + _ZN3sce2Np9CppWebApi14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyC2EPNS1_6Common10LibContextE) +STUB( + "k4OMjy6Bbxw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEE11get_deleterEv) +STUB("k4PNvKkDUxg", _ZN3JSC11MarkedBlock13areMarksStaleEv) +STUB("k4Qwy8R+8+w", _ZN3JSC7JSArray11fillArgListEPNS_14JSGlobalObjectERNS_20MarkedArgumentBufferE) +STUB("k4UOY9+yWQw", jio_fprintf) +STUB("k4eCQp7QlrI", jinit_c_prep_controller) +STUB("k4fDMzuXra0", unumsys_getRadix_67) +STUB("k4hOXIKXDWw", _ZN7WebCore9FloatRect11fitToPointsERKNS_10FloatPointES3_) +STUB( + "k4m3aMOP9KE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEplEm) +STUB( + "k4mRrbX2fUs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEE3getEv) +STUB("k4nkv1Hs7ZE", _ZL13_delete_array) +STUB("k4yvkV8yVWU", sceAppInstUtilStartInstall) +STUB( + "k540ZjATtKc", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB( + "k56Qrq3LviI", + _ZN3JSC17JSArrayBufferView19ConstructionContextC2ERNS_2VMEPNS_9StructureEON3WTF6RefPtrINS_11ArrayBufferENS6_13DumbPtrTraitsIS8_EEEEjj) +STUB( + "k59HYoBbBY8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEixEm) +STUB("k5BACNzcm-c", _U_dyn_register) +STUB( + "k5E9zszM24k", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE4sizeEv) +STUB("k5F+BTLtKWY", twom1000) +STUB("k5NZIzggbuk", sceNpTssGetStorageAsync) +STUB("k5QQrJEpRYY", ksem_open) +STUB( + "k5QvL+YQ1zA", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead28setExclusiveLeaderPrivilegesERKNS1_6Common6VectorINS5_6StringEEE) +STUB( + "k5S4qTGgDAw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEEC2ERKSA_) +STUB("k5YhL+P3rJ8", + _ZNK3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse19totalItemCountIsSetEv) +STUB("k5dQGISpej0", rgctx_fetch_trampoline_mrgctx_6_p) +STUB("k5rdY0oueBE", _ZN7WebCore16HTMLMediaElement16returnToRealtimeEv) +STUB( + "k6+It1kMpEI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEC1EPS8_) +STUB( + "k64EBY18h-Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEC2Ev) +STUB("k66VgjV17-M", + _ZN7WebCore8JSDOMURL15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB("k67ADtJOaR8", _ZNK7WebCore5Range8containsERKS0_) +STUB("k68kNfQ7stQ", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEE3getEv) +STUB("k6Cas8UFbgM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEED1Ev) +STUB("k6DIIhksauQ", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicketC2ERS5_) +STUB("k6DPY3tsjAY", mono_aot_System_Xml_Linqunbox_trampoline_addresses) +STUB("k6Er-4hFv0c", mono_aot_Sce_Vsh_SQLiteAuxplt) +STUB( + "k6J92lDhZkk", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("k6JLQGuPEYA", sceVideoOutGetDeviceInfoEx_) +STUB("k6QP2la8pI8", _ZTVN3JSC17DeferredWorkTimerE) +STUB("k6QfiQvAEJc", sceMatSetThreadInfo) +STUB("k6USR9XuXKY", _ZNK3sce7Toolkit2NP9Utilities6FutureIbE3getEv) +STUB("k6YqjzQohfg", sceNpGriefReportReadTextChatFile) +STUB("k6eJxKaYRro", png_set_gAMA) +STUB("k6egh+rev0s", _ZN10Deprecated18ScriptFunctionCallD1Ev) +STUB("k6gj4XMrGYI", uprv_ebcdicToLowercaseAscii) +STUB("k6hVHTe+PaY", _ZNK7WebCore19ResourceRequestBase20firstPartyForCookiesEv) +STUB( + "k6i0R3ForSg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEEaSERSA_) +STUB("k6pGNMwJB08", _Mtx_trylock) +STUB("k7+6XfiVmCw", + _ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends8setlimitEi) +STUB("k7-znEXUGvU", rgctx_fetch_trampoline_mrgctx_117) +STUB( + "k70bmbu5Mx8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEC1Ev) +STUB( + "k73D+1jaJZ0", + _ZN3WTF14FileSystemImpl25pathByAppendingComponentsENS_10StringViewERKNS_6VectorIS1_Lm0ENS_15CrashOnOverflowELm16ENS_10FastMallocEEE) +STUB("k73XwVmjdcw", _ZN3sce2Np9CppWebApi6Common13ConstIteratorImEppEv) +STUB("k76sC3mIVw4", curl_slist_free_all) +STUB( + "k76smePm8jg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB("k77hI5zSW1c", SoundPlay) +STUB("k7F0FcDM-Xc", sceCompanionHttpdStart) +STUB("k7FL8BbFQP8", uloc_getDisplayScript_67) +STUB("k7Ho8t5zisU", _ZNK3JSC14CachedBytecode13commitUpdatesERKN3WTF8FunctionIFvlPKvmEEE) +STUB("k7IJQjNuiPA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEC1Ev) +STUB("k7MybpLQIXY", bemp2sys_tsdecoder_init) +STUB( + "k7NIVdosgUU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEEcvbEv) +STUB("k7Nt6gITEdY", sceFontGraphicsCanvasSetSurfaceFillWithMapping) +STUB( + "k7OUqpSPwj4", + _ZN9Inspector24RuntimeBackendDispatcher20getCollectionEntriesElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("k7OvvamK5A0", _ZN7WebCore8Document16setXMLStandaloneEb) +STUB("k7STwdvqzi0", _ZN7WebCore11HistoryItemC1ERKN3WTF6StringES4_S4_NS_25BackForwardItemIdentifierE) +STUB("k7Sga5WS4zU", _ZN7WebCore13GraphicsLayer9setClientERNS_19GraphicsLayerClientE) +STUB("k7VI-LIHmyw", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V18PlatformEEeqERKS7_) +STUB("k7YlPkO7YN8", _ZN9Inspector22InspectorDebuggerAgent20setPauseOnMicrotasksERN3WTF6StringEb) +STUB( + "k7guAD8vPYg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE5beginEv) +STUB("k7iGTvDQPLQ", sceGnmGetShaderStatus) +STUB("k7jgfzsGybE", _ZN3sce3pss4core8graphics14NativeGraphics29RemovePostSwapBuffersCallbackEj) +STUB("k7kGCEjXnJE", _ZN7WebCore9HTMLNames17onbeforeprintAttrE) +STUB("k7nE-PGQC7o", utrans_transIncrementalUChars_67) +STUB("k7nypVLOXk8", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10getString8Ev) +STUB( + "k7ozpeFMPuk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEEC2ERSA_) +STUB( + "k7u2fD1nxvE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEE5resetEPS6_) +STUB( + "k7v2TYeBZkE", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setBoolean9ERKb) +STUB("k7xndAGVn8U", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEED2Ev) +STUB("k7y31RwRcGg", CommerceHidePsStoreIcon) +STUB("k801tcAVuJg", _ZN9Inspector27CSSBackendDispatcherHandlerD0Ev) +STUB( + "k85iRlJjfiA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEEptEv) +STUB( + "k86IWz1rOr0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEC2EPKS8_) +STUB("k89j2+DvGOs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE4sizeEv) +STUB("k8EXkhIP+lM", sceGnmUnregisterResource) +STUB("k8R5evJkads", _ZN3JSC7Symbols49createResolvingFunctionsWithoutPromisePrivateNameE) +STUB( + "k8SOIZtqqNE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEmmEv) +STUB("k8TumGgmK40", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEED1Ev) +STUB( + "k8WDHhzpVqk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEC2EPS8_) +STUB( + "k8XIRI0lXnk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEeqERKS9_) +STUB( + "k8XVOia6uzA", + _ZN7WebCore20UserGestureIndicatorC1ESt8optionalINS_26ProcessingUserGestureStateEEPNS_8DocumentENS_15UserGestureTypeENS0_23ProcessInteractionStyleE) +STUB( + "k8YUanwTdy8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEE5resetEPS9_) +STUB( + "k8Zi8BFwjCE", + _ZN3sce2Np9CppWebApi14SessionManager2V146PatchPlayerSessionsSessionIdRequestBodyFactory7destroyEPNS3_39PatchPlayerSessionsSessionIdRequestBodyE) +STUB("k8bsbTzn3ho", _UTF32LEData_67) +STUB("k8d54j+HQn4", sceUlpMgrInitDecidState) +STUB( + "k8eeJW5RSc4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("k8fX-3NEK6g", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEEppEi) +STUB("k8gIVSDjoDc", _Z34sceGpuDebuggerUnregisterShaderCodePKN3sce3Gnm16EsStageRegistersE) +STUB("k8rLr8nq-hE", sceAgcDriverGetSetWorkloadStreamInactivePacketSize) +STUB("k8zgjeBmpVY", _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE4_PutES3_PKcm) +STUB( + "k91Rusmvk+A", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEeqERKS9_) +STUB( + "k9HQwu7d5RE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEE11release_refEv) +STUB("k9LC1z8kh-E", sceRegMgrNonSysGetBin) +STUB("k9SMjGSYdTQ", _ZN3sce7Toolkit2NP2V29Challenge10Challenges5resetEv) +STUB("k9WO6OfUzYE", monoeg_g_string_truncate) +STUB("k9Y1npuXse8", ubrk_getLocaleByType_67) +STUB( + "k9ZkxAxQhY8", + _ZN8meta_gen14ImageRetriever16ExtractThumbnailERN23sceMetadataReaderWriter9ThumbnailEP19PromoteInnerContextP17CancelInterface_tP16StorageInterfaceP23PromoteInnerInformation) +STUB( + "k9e5SZQzUYk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEaSERKS9_) +STUB("k9ixmB0yrP4", _ZN4IPMI4impl10ClientImpl9tryGetMsgEjPvPmm) +STUB("k9jCtANC+QM", _ZN3sce2np3ipc17ServiceIpmiClient17UnregisterServiceEi) +STUB("k9kErpz2Sv8", _ZTSl) +STUB("k9meG9QXtn4", sceVorbisDecRawTell) +STUB("k9nIdiZYPzY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEppEv) +STUB( + "k9nUrZtHgG8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEE7add_refEv) +STUB( + "k9nlFynOtSc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEED1Ev) +STUB("k9v2fIJ8mFQ", _ZN3sce6Canvas9acquireIdEv) +STUB("k9yITCrVVRs", _ZN3sce2Np9CppWebApi10Activities2V114UserActivities5ErrorD1Ev) +STUB("k9ykGSoowZc", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchStatus10setmatchIdEPKc) +STUB( + "k9zKu3RL5xs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEED1Ev) +STUB( + "kA-+araXHm4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("kA-TdiOCsaY", frexp) +STUB("kA-V+-skDt0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEC1EPS8_) +STUB("kA0ggtLgY0I", _ZN7WebCore16JSXMLHttpRequest14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB("kA88gbv71ao", sceNpPartyRegisterHandler) +STUB("kAAx2wnPMNg", mono_aot_Sce_Cdlg_Platformunbox_trampoline_addresses) +STUB( + "kABfKrgMeLo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB("kADEz2eAE7c", RSA_new) +STUB("kAJRdVwf-mc", umutablecptrie_set_67) +STUB("kALIJUwm+3Q", _Z23WebViewBaseCanGoForwardii) +STUB("kALvdgEv5ME", _Locksyslock) +STUB( + "kAS0aOT+qHM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEED2Ev) +STUB( + "kAW3OtdlHFc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEdeEv) +STUB("kAay0hfgDJs", _ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED1Ev) +STUB( + "kAce1kl8s64", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEdeEv) +STUB("kAcvu4tpcJI", _ZN7bmalloc3api13freeOutOfLineEPvNS_8HeapKindE) +STUB("kAenWy1Zw5o", sceFontRenderCharGlyphImageHorizontal) +STUB("kAhppPWz40M", _Z10getIpcPathiiPKciPc) +STUB("kAl0+GEuCL0", WKGrammarDetailGetLocation) +STUB( + "kAqL+5apCCQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEneERKS9_) +STUB("kAsMu6O6yZ0", _ZNK3WTF10StringImpl21findIgnoringASCIICaseEPKS0_j) +STUB("kAt6VDbHmro", sceKernelWritev) +STUB("kAwbc1NaV8A", ufile_getch_67) +STUB("kB3Njn2JIxg", sceDebugGetWaitingListOfUltSemaphore) +STUB("kB7iRn6G2NQ", _ZN7WebCore27parseCacheControlDirectivesERKNS_13HTTPHeaderMapE) +STUB( + "kBBS7OZVLzY", + _ZN3sce2Np9CppWebApi14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBody12unsetNatTypeEv) +STUB( + "kBBTQMzX328", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "kBE6T6bmzGo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEE21intrusive_ptr_sub_refEPS7_) +STUB("kBIjlgsWmJ0", _ZN3sce7Toolkit2NP2V28Matching7Request23SetMembersAsRecentlyMetD1Ev) +STUB("kBJzF8x4SyE", sceKernelBatchMap2) +STUB("kBMwammS-EY", _ZN7WebCore24RotateTransformOperation5blendEPKNS_18TransformOperationEdb) +STUB("kBON3bAtfGs", sceNpUtilGetEnv) +STUB( + "kBT2Z9fjRZI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEptEv) +STUB( + "kBTiUlnzJq4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEE11get_deleterEv) +STUB("kBU4pprNnRc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V114SearchOperatorEEC2Ev) +STUB("kBUw9BF1N28", _ZNK7WebCore15HTMLAreaElement12imageElementEv) +STUB( + "kBXZc7YxGc8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "kBYJoa7QCh4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE6resizeEj) +STUB("kBiv08+TCFs", _ZN7WebCore10Pasteboard10readOriginEv) +STUB("kBixi40eQqo", _ZN3NTF6Cookie11CookieJarDB9setEnableEb) +STUB("kBj79hWFelk", _ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest17getNpServiceLabelEv) +STUB("kBjUiQc9P1w", sceCesRefersUcsProfileKsX1003) +STUB("kBo7ItYgSPo", sceUrlConfigResolverGetJscHeapSizeSoftLimit) +STUB("kBpWlgVZLm4", _Atomic_compare_exchange_strong) +STUB( + "kBtSpZrD9Tc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("kBwCPsYX-m4", sceKernelFstat) +STUB("kBxt5LwtLA4", __cxa_free_dependent_exception) +STUB("kBxwE4YfbIM", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product9skusIsSetEv) +STUB("kC-1WFDy3EU", _ZN3JSC12CachePayload16makeEmptyPayloadEv) +STUB( + "kC1J9zobZis", + _ZN7WebCore15ContextMenuItemC2ENS_17ContextMenuActionERKN3WTF6StringEbbRKNS2_6VectorIS0_Lm0ENS2_15CrashOnOverflowELm16EEE) +STUB( + "kC1eHRbt5sc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEmmEv) +STUB( + "kC6sswpjy5A", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEplEm) +STUB( + "kCAPvCctEjA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEEC2ERKSA_) +STUB( + "kCHsJh7yVio", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("kCKHi6JYtmM", rewinddir) +STUB( + "kCKTL1Zoz2o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("kCKipMlRpIM", uregex_hasTransparentBounds_67) +STUB( + "kCUTf3zM8c8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEC2EPS7_PNS2_10LibContextE) +STUB( + "kCVBjCWSOq8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEE11get_deleterEv) +STUB( + "kCWnbqC0RqA", + _ZN7WebCore11FrameLoader14stopAllLoadersENS_26ClearProvisionalItemPolicyENS_17StopLoadingPolicyE) +STUB("kCX0k5t1v-w", _ZN15AbstractStorage14StorageManager6UnloadENS_11ServiceTypeE) +STUB( + "kCbWd2BCgTI", + _ZNK3sce2Np9CppWebApi14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBody6toJsonERNS_4Json5ValueEb) +STUB("kCnt79PYvsg", + _ZN3sce2Np9CppWebApi14SessionManager2V114Representative8fromJsonERKNS_4Json5ValueE) +STUB("kCrmROGUsx0", _ZN7WebCore8SVGNames10valuesAttrE) +STUB("kCurUZVFqcI", sceShareSetCaptureSource) +STUB("kCwnfCC1kM8", _ZN3sce7Toolkit2NP2V210Tournament17TournamentDetailsD1Ev) +STUB("kCyUitYjnKY", mono_get_char_class) +STUB("kCyuvXqGXu0", _ZN9Inspector21CSSFrontendDispatcherdaEPv) +STUB("kCzSGdGoMJo", + _ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody19getComparedDateTimeEv) +STUB("kD+v7gtx55o", _ZNK7WebCore15AffineTransform7mapSizeERKNS_9FloatSizeE) +STUB("kD3l0P19Wzg", _ZThn8_N3sce2np9LocalFileD1Ev) +STUB("kD4ppqGHUsI", _ZN9Inspector22HeapFrontendDispatcher16trackingCompleteEdRKN3WTF6StringE) +STUB("kDAMsRNSPpY", _ZN7WebCore21findEventWithKeyStateEPNS_5EventE) +STUB( + "kDAU7Px3d38", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("kDBfLsW0W5s", + _ZN7WebCore23ScaleTransformOperationC1EdddNS_18TransformOperation13OperationTypeE) +STUB( + "kDF7xvPZ7Xs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE5emptyEv) +STUB("kDHvQLi0PM4", sceVisionManagerGetNumOfRegisterUserDataSlot) +STUB("kDHvtssgHfY", _ZN7WebCore10ScrollView23setPaintsEntireContentsEb) +STUB("kDWhMOmHaP8", YGNodeSetContext) +STUB("kDZvoVssCgQ", strpbrk) +STUB("kDa0SoOwDfQ", + _ZN3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform13unsetPlatformEv) +STUB("kDaQLJv89bs", _ZN3sce2np7RingBuf4PeekEmPvm) +STUB( + "kDbza6wi03Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE5beginEv) +STUB("kDcoibWUH68", _ZN3sce7Toolkit2NP2V28Commerce12ProductLabelC1Ev) +STUB("kDd1MtrPyrU", Java_com_sony_bdjstack_javax_media_controls_SoundManager_bind) +STUB("kDddBW0M4F0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEEC1ERKS7_) +STUB("kDewIzcDLis", _ZN7bmalloc5Cache28tryAllocateSlowCaseNullCacheENS_8HeapKindEm) +STUB("kDfWvHZH3eM", sceKernelIccGetBootTimestamp) +STUB( + "kDg0VkC6Syc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE4sizeEv) +STUB("kDh-NfxgMtE", scePthreadCondSignal) +STUB( + "kDjJ9iUg6+E", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE8readDataEPcm) +STUB( + "kDk13fDq3fE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEC2ERS8_) +STUB( + "kDn+c0if21U", + _ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForRead16setNonPsnPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_25PlayerSessionNonPsnPlayerEEEEE) +STUB("kDxzgCcMty0", AacsPermissionSet) +STUB("kE-pP+SNCrU", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributesD2Ev) +STUB("kE0kdvcHTiY", sceVoiceQoSDeleteLocalEndpoint) +STUB("kE3fi15U9L4", p5_8) +STUB("kECUSNedk3o", sceAvControlGetCurrentOutputMode) +STUB( + "kEDfMhW9s-8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB( + "kEEwbqhiKhQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("kEIAbxGrlao", _ZN3JSC7Symbols26MAX_ARRAY_INDEXPrivateNameE) +STUB("kEMteHSVA+0", WKContextConfigurationCopyMediaKeysStorageDirectory) +STUB("kEO02CaHGng", fuse_reply_statfs) +STUB("kESljrwvBC4", + _ZN9Inspector14InjectedScriptC2EN10Deprecated12ScriptObjectEPNS_20InspectorEnvironmentE) +STUB("kEVyg4136z4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadDataC1ERS5_) +STUB( + "kEZy8spjDzk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE8copyFromERKS9_) +STUB("kEags+FqdZQ", WKFrameCopyTitle) +STUB( + "kEeNTuEiXj4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEdeEv) +STUB("kEitTZ66CXk", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE5emptyEv) +STUB( + "kEmNixfV4Eg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "kEoFa4IyFHo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEED2Ev) +STUB("kEqqyDkmgdI", sceAudio3dGetSpeakerArrayMemorySize) +STUB( + "kErjr1jew74", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEE3getEv) +STUB( + "kEteNnWfhOE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEC2Ev) +STUB("kEyf3apBh4M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEEC2EPS5_PFvS7_EPNS2_10LibContextE) +STUB("kF--s3xZjco", sceUltUlthreadExit) +STUB("kF-yS5OChO8", glGetActiveAttrib) +STUB("kF7oIXtT+pg", _ZN3JSC14AggregateError6s_infoE) +STUB("kF85XyAhZiU", _ZN3sce2Np9CppWebApi13InGameCatalog2V515ContainerRatingD2Ev) +STUB("kF8Mcy9F5O4", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicket7setviewEPKc) +STUB("kF9zjnlAzIA", sceNpTrophyIntNetSyncTitle) +STUB("kFEZPg-FviY", _ZN7WebCore8SVGNames15font_weightAttrE) +STUB("kFKJ3MVcDuo", sceAudioInExtClose) +STUB("kFMRC1JMD+E", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable8fromJsonERKNS_4Json5ValueE) +STUB("kFTkjvDhu7E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEC2ERKS7_) +STUB("kFTwPJB2uP4", + _ZN7WebCore11DisplayList8SetStateC1ERKNS_20GraphicsContextStateEN3WTF9OptionSetINS2_6ChangeEEE) +STUB( + "kFXj8DIw2+I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB("kFXtge4WNeg", WKBundleNodeHandleCopyHTMLTableCellElementCellAbove) +STUB("kFYQ4d6jVls", _ZSt11try_to_lock) +STUB("kFgi4Dou7zo", g_dir_open) +STUB("kFhGYWlemdU", mono_aot_Sce_Vsh_SQLiteAuxunbox_trampolines) +STUB("kFhuwHrIUqs", scePlayerInvitationDialogUpdateStatus) +STUB( + "kFjEExB6F6s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEE7add_refEv) +STUB("kFkOe+-uJ08", _ZN3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer15unsetPlayerNameEv) +STUB("kFkr8Q7gREk", _ZN7WebCore11MediaPlayer11timeChangedEv) +STUB("kFmZcqAKoIg", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEEixEm) +STUB("kFoBBPXWEjE", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V113SubtaskStatusEEppEv) +STUB("kFrQbmo3k4I", _ZNSt9_FacetptrISt10moneypunctIcLb0EEE6_PsaveE) +STUB("kFt4MB3SUEk", sceVrTracker2UnregisterDevice) +STUB("kFw-B-SsQUM", _ZN9Inspector32TimelineBackendDispatcherHandlerC2ERKS0_) +STUB("kFzUzuZWV9Q", rgctx_fetch_trampoline_mrgctx_66_p) +STUB("kG+A6NNwDow", sceFiosDHRead) +STUB( + "kG-fUmGI22I", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsers37unsetxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB( + "kG15qBpjXKE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "kG5D9pp4tHY", + _ZN3sce7Toolkit2NP2V210Tournament19sendTeamMatchReportERKNS3_7Request19SendTeamMatchReportEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB( + "kG5JUaf5L4A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEC1Ev) +STUB("kG8j4DY2tBo", GCC_except_table21) +STUB("kGAitTwtXq0", WKBundleFrameCopySuggestedFilenameForResourceWithURL) +STUB( + "kGCb5J70iY8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEppEv) +STUB( + "kGDti4Ht2CI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEE11release_refEv) +STUB("kGILBTim6ns", _ZN3sce7Toolkit2NP2V28Commerce7Request26SetPsStoreIconDisplayStateD1Ev) +STUB( + "kGIc12UHv0Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEC2EPS8_) +STUB("kGML0n2oG8Y", sceUserServiceGetNotificationSettings_1) +STUB( + "kGRIv-cvRyI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEC1EPS6_PNS2_10LibContextE) +STUB("kGVLc3htQE8", sceVideoOutGetDeviceCapabilityInfo_) +STUB("kGWgW9SKvB0", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeINS1_11TusVariableEPvEE9constructEPS6_RKS6_) +STUB("kGXd-HD7kG8", + _ZN3sce2Np9CppWebApi14ConnectAccount2V212PartnerTokenC2EPNS1_6Common10LibContextE) +STUB("kGjL8v4KTxM", _ZN3sce2Np9CppWebApi11Matchmaking2V15Cause9unsetCodeEv) +STUB("kGqIotiwgJk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEE5resetEPS6_) +STUB("kGwtyyyhjyE", _ZN7WebCore20ISOOriginalFormatBox5parseERN3JSC8DataViewERj) +STUB( + "kGxxu-ViNlY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEmmEv) +STUB("kGzfFi9oKu0", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11InvitationsEE12deepCopyFromERS7_) +STUB("kH2e-B7bIS0", uprv_decContextTestSavedStatus_67) +STUB("kHFcy4n3fsY", + _ZN3sce2Np9CppWebApi14SessionManager2V124GameSessionMemberForReadC1EPNS1_6Common10LibContextE) +STUB("kHFeN1xjG20", _ZNSbIcSt11char_traitsIcEN15AbstractStorage8StlAllocIcEEE6assignERKS4_mm) +STUB("kHGtT70monA", tenth) +STUB("kHGtjFK53PI", _ZN3sce2Np9CppWebApi13InGameCatalog2V511ErrorEntityC1EPNS1_6Common10LibContextE) +STUB( + "kHIOAL89VPA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEC2ERKS7_) +STUB("kHLuEOVfAaA", WKBundleRemoveUserStyleSheet) +STUB("kHOS+St2y7M", sceKernelLwfsTrimBlock) +STUB("kHVXc-AWbMU", _LXp_setw) +STUB( + "kHWhawWqjEA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEaSERKS8_) +STUB( + "kHYZa51TTjI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEC2EPS8_) +STUB("kHaXOqmt2+o", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10CategoriesEED2Ev) +STUB("kHd72ukqbxw", scePlayGoDialogOpen) +STUB("kHd8jF+QltI", + _ZN7WebCore50restrictScaleFactorToInitialScaleIfNotUserScalableERNS_18ViewportAttributesE) +STUB("kHg45qPC6f0", strncat) +STUB("kHiMoVF0FQU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE5emptyEv) +STUB( + "kHjKtkr2twI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEC2EPS8_) +STUB( + "kHoSF--+R5c", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEEdeEv) +STUB("kHuGSHvt3As", _ZN7WebCore21convertToIntegerClampIsEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB( + "kHukcKao95o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE5beginEv) +STUB( + "kHwwoZSc814", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody37comparedLastUpdatedUserAccountIdIsSetEv) +STUB( + "kHzbDZkQ9jM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEaSERS7_) +STUB("kI+vdlRYjgA", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11EntitlementEE7addressERKS3_) +STUB( + "kI0wgtzMZC0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEptEv) +STUB( + "kI6g83dXE0o", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_17ActivityFeedStoryENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB( + "kI7M4qfDppo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("kI7pnL9KnSM", _ZN3JSC4Heap11objectCountEv) +STUB( + "kIBZOwobsSg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEED2Ev) +STUB("kIELFyKj5sg", _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities8Activity12matchIdIsSetEv) +STUB("kIGZ7Erl4GQ", sceFsExtUSBSchedInsert) +STUB( + "kIKAc29CJyE", + _ZN7WebCore17NowPlayingManager30didReceiveRemoteControlCommandENS_20PlatformMediaSession24RemoteControlCommandTypeEPKNS1_21RemoteCommandArgumentE) +STUB("kIPfyV8OB9g", Java_java_lang_ref_Finalizer_invokeFinalizeMethod) +STUB("kIR9uG8dfTY", WKContextSetUsesSingleWebProcess) +STUB( + "kIRFkmA4LjU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE7popBackEv) +STUB( + "kITdY3S+LEE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE23clearOnFinishedCallbackEv) +STUB( + "kITv461ZAyc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEC2ERS7_) +STUB("kITxNY9Pxjo", _ZN3sce7Toolkit2NP2V210Wordfilter16SanitizedCommentD1Ev) +STUB( + "kIUGsJscI7o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB("kIYv-OH1czQ", rgctx_fetch_trampoline_rgctx_39_p) +STUB("kIbwtX5Mi6c", curl_url_cleanup) +STUB("kIdb+iQUzCs", sceAudioPropagationSystemSetAttributes) +STUB( + "kIepcU91z2s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("kImHEIWZ58Q", _ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE) +STUB("kInY4S15M4c", vm_send_ClearBreakpoint) +STUB("kIpdcBM2OZY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE7popBackEv) +STUB( + "kIrwUjd3rP0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEmmEi) +STUB( + "kIs-brG7pNU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEEC1ERKSA_) +STUB( + "kIzhryfx6ng", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEED1Ev) +STUB( + "kJ+2VRpoNaU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE21intrusive_ptr_sub_refEPS7_) +STUB( + "kJ08SigG21Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEED2Ev) +STUB("kJ0Nhf2At8Y", sceAvSettingGetRawHdmiMonitorInfo) +STUB("kJ4XtrNLHMo", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_playPlayListAtItem) +STUB( + "kJ507zw+zEA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEED1Ev) +STUB( + "kJ5ayJkclW0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEC2EPS8_) +STUB("kJ7QpdWODn8", _ZN7WebCore16VisibleSelection22adjustPositionForStartERKNS_8PositionEPNS_4NodeE) +STUB("kJ8A0zrG2WE", _ZN7WebCore12ChromeClientD2Ev) +STUB( + "kJDcQqx7mE0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("kJG1DY2qLJ4", _ZN7WebCore13QualifiedNameC2ERKN3WTF10AtomStringES4_S4_) +STUB( + "kJIGYVoYkQg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEE7get_refEv) +STUB( + "kJNgNx72XyA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEppEv) +STUB("kJQJE0uKm5w", sceNpWebApiRegisterServicePushEventCallback) +STUB( + "kJRDf7LAnDo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEEdeEv) +STUB( + "kJZBH4vDaMs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "kJky7PkET6M", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB( + "kJl1LuCWFDw", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations9getfieldsEv) +STUB("kJlYH5uMAWI", sceNetResolverDestroy) +STUB("kJmdxo4uM+8", + _ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE5_InitERKSt8_Locinfo) +STUB("kJmjt81mXKQ", sceAppContentAddcontEnqueueDownloadByEntitlemetId) +STUB( + "kJoY9lMIFzY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEmmEi) +STUB( + "kJrr94o+vxw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEEC1Ev) +STUB("kJxS50jvGx0", _ZN7WebCore11MediaPlayer4loadERKN3WTF3URLERKNS_11ContentTypeERKNS1_6StringE) +STUB( + "kJxwZI9fiuQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEEC1ERKSA_) +STUB("kJyoJpWuj1o", sceVnaSetupKeyPhraseDetection) +STUB("kK+c8MOkymg", _ZN3sce7Toolkit2NP2V24Core12ResponseBase11resetValuesEv) +STUB("kK0DUW1Ukgc", sceCoredumpGetStopInfoCpu) +STUB("kK2tX4TVoJ4", _ZN3JSC7Symbols34arrayIteratorNextHelperPrivateNameE) +STUB("kK6psDxUQmI", sceFsGetAttribute) +STUB("kKEVAmLFE8Y", _ZN4Manx8X509nameC2EPv) +STUB("kKF3w-XkCWA", _sceNpAllocatorExRealloc) +STUB( + "kKFfFNyKcnE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEdeEv) +STUB("kKHf-FWb-Ko", _ZN3JSC2VM9canUseJITEv) +STUB("kKNeeETGcDg", _ZTVN7WebCore23CoordinatedImageBackingE) +STUB("kKUH0Viib3c", sceNpUniversalDataSystemDestroyEventPropertyObject) +STUB("kKlQ4e-mbjc", GENERAL_NAMES_free) +STUB( + "kL-m0Xuv1SM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEppEv) +STUB( + "kL82cxE5L+E", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10getString9Ev) +STUB("kLB5aGoUJXg", sceSslGetPem) +STUB("kLDgEC1CtLw", sqlite3_last_insert_rowid) +STUB("kLERpSLEraQ", scePlayReadyInitialize) +STUB( + "kLEVXpO3XeQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEC1EPNS2_10LibContextE) +STUB( + "kLGlSgS3C48", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE10setContextEPNS2_10LibContextE) +STUB("kLJQ3XioYiU", sceSaveDataBindPsnAccount) +STUB("kLLazhNh6d4", sceAppInstUtilTerminate) +STUB( + "kLOVG0FopjY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE10setContextEPNS2_10LibContextE) +STUB("kLU6hhXsa2A", sceVoiceQoSConnect) +STUB("kLUAkN6a1e8", sceHmdReprojectionQueryOnionBuffSize) +STUB("kLWG4PzbY7E", _ZN7WebCore18HTMLMarqueeElement5startEv) +STUB("kLXt5iQte48", rgctx_fetch_trampoline_mrgctx_117_p) +STUB( + "kLduJjmPrV8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("kLeJhwuG-q4", sceRnpsAppMgrSetCrlUrl) +STUB("kLfKe5xGxJ8", _ZN6icu_6713UnicodeStringC1Ev) +STUB( + "kLp7JTdKBbc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE10setContextEPNS2_10LibContextE) +STUB("kLpxFPhl4Q8", _ZN3JSC11RegisterSet12argumentGPRSEv) +STUB( + "kLqPRA20q-Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEmmEi) +STUB("kLtEklLY7Z4", sceVencCoreSetPrivacyGuard) +STUB("kLwDVk6wcO0", sceClHttpDeleteRequest) +STUB("kLx46JzbOG0", + _ZN12video_parser13cVideoMetaMP48getTitleENS_9VP_LANG_eEjNS_15VP_SEARCH_OPT_eEPS1_Pv) +STUB( + "kLzq1bVqeWg", + _ZN3sce4Json5Value3setERKSt3mapISbIcSt11char_traitsIcENS0_8StlAllocIcEEES1_St4lessIS7_ENS5_ISt4pairIS7_S1_EEEE) +STUB( + "kM3VgFObOBU", + _ZN7WebCore22EmptyFrameLoaderClient22createJavaAppletWidgetERKNS_7IntSizeERNS_17HTMLAppletElementERKN3WTF3URLERKNS6_6VectorINS6_6StringELm0ENS6_15CrashOnOverflowELm16ENS6_10FastMallocEEESG_) +STUB( + "kM3sUwACCP0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB("kMBw37oH8nI", sceVdecswTrySyncDecodeOutput) +STUB("kMCk5HYXRhA", _ZN7WebCore11DisplayList6RotateC1Ef) +STUB( + "kMGw4D6lQ+k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEC2Ev) +STUB( + "kMHHAhvJdKE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEE7add_refEv) +STUB("kMK3ujs4uBI", _ZN3JSC12NumberObject6s_infoE) +STUB("kMKB-e0+bGY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEED2Ev) +STUB("kMKfZl75bRM", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getMixerMetadataOn) +STUB( + "kMLKAmvCAP0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEEaSERSA_) +STUB("kMMfv2oi3NE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEC1Ev) +STUB("kMNUke1y-Mo", fuse_reply_iov) +STUB("kMS0EmTf14c", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE5emptyEv) +STUB("kMTRFgR4700", _ZTSPKg) +STUB( + "kMUFVTGoa1g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEED2Ev) +STUB("kMWGK8yZPm4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4RoomEE5resetEv) +STUB("kMXQ-OVHLrY", g_strlcpy) +STUB( + "kMYH-RWKmsE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEEC2Ev) +STUB("kMZyb0YevGA", _ZN7WebCore9HTMLNames8asideTagE) +STUB("kMaBFIQNsSI", sceApplicationGetAppInfoByAppId) +STUB("kMb+qpZTQ18", sceMusicPlayerServicePlayStartByTime) +STUB("kMfXlOLbJ9g", _ZN7WebCore11DisplayList11SetLineDashD0Ev) +STUB("kMoBIfGax64", _ZN7WebCore16MIMETypeRegistry29getSupportedNonImageMIMETypesEv) +STUB( + "kMonHAZPs00", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEEC1ERKSA_) +STUB( + "kMowTh3S81M", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser12getaccountIdEv) +STUB("kMpgMy01JZo", _ZN3sce7Toolkit2NP2V27Session21ChangeableSessionDataC2Ev) +STUB( + "kMpoYVZ9fdo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEE7get_refEv) +STUB( + "kMvxaMEP+x0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEE7add_refEv) +STUB("kMydohzpE+Q", _ZN3WTF14FileSystemImpl17openTemporaryFileERKNS_6StringERiS3_) +STUB("kN7Sy7TC+pA", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request15GetSharedVideosC2Ev) +STUB( + "kNCiQhdR4qA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser11unsetoffsetEv) +STUB("kNFSwqzlnUk", _ZThn664_N7WebCore24CoordinatedGraphicsLayer10createTileEjf) +STUB("kNIvrkD-XJk", SSL_setServerNameList) +STUB("kNMZlFmxBH8", _ZN7WebCore20SVGPathStringBuilderD2Ev) +STUB("kNSoVmhYbnY", mono_btls_x509_name_from_data) +STUB("kNVvx6yXTAE", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V112TicketStatusEEppEv) +STUB("kNWg2SkpTa4", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetAccountId2OnlineIdD1Ev) +STUB("kNXDL29aL0E", _ZN7WebCore13CSSStyleSheet7addRuleERKN3WTF6StringES4_NS1_8OptionalIjEE) +STUB( + "kNamuajsFsU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEneERKS9_) +STUB( + "kNbBc6tYgd8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEEC1Ev) +STUB("kNbP1x4atrg", _ZN9Inspector14InjectedScriptD1Ev) +STUB( + "kNiWFq7jWQ0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE4sizeEv) +STUB("kNkrWfrE0bY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEEC1EPKS6_) +STUB("kNmqbnlvatM", + _ZN7WebCore4Page31setUserInterfaceLayoutDirectionENS_28UserInterfaceLayoutDirectionE) +STUB("kNn56Z36kZU", _ZN7WebCore9PageGroup9pageGroupERKN3WTF6StringE) +STUB( + "kNnzQy1wI2E", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEeqERKS9_) +STUB( + "kNoXfjoWXRU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEE5resetEPS6_) +STUB("kNua19l9-0I", cairo_font_options_set_antialias) +STUB( + "kNzhviycGbY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEC2ERKS7_) +STUB( + "kODoY85tTg0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "kOE8lZTZQho", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEC1EPS6_PNS2_10LibContextE) +STUB("kOEP3Dqn1B4", _ZN7WebCore10RenderView10compositorEv) +STUB( + "kOJjB0DwpMw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEED2Ev) +STUB("kOKDFcsjZrA", _ZNK7WebCore19ResourceRequestBase10isSameSiteEv) +STUB("kONYtx9Wm-w", _ZN7WebCore18TextureMapperLayerD0Ev) +STUB( + "kOThalOyBaU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEaSERKS9_) +STUB("kOVSJf52zg8", _ZN7WebCore24ImmutableStylePropertiesD1Ev) +STUB("kOWP4y3+WZE", _ZN3JSC9Structure3pinERKN3WTF14AbstractLockerERNS_2VMEPNS_13PropertyTableE) +STUB("kOXbLzJyLFQ", _ZN3sce7Toolkit2NP2V211UserProfile8RealName20MAX_SIZE_MIDDLE_NAMEE) +STUB( + "kOY3yOljvZQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("kOZTCBZCk4g", glUniformMatrix2x4fv) +STUB( + "kOaUt01Wmr8", + _ZN3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBody19setTicketAttributesERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_9AttributeEEEEE) +STUB("kOci8E1fQzg", + _ZN23sceMetadataReaderWriter7Storage21_findParserByFilePathERKSsPPNS_10ParserInfoE) +STUB("kOcnerypnQA", sceKernelGettimezone) +STUB("kOd75qDlxBM", sceLncUtilGetResultKillApp) +STUB( + "kOeBKp8TgFk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB("kOfZlhbVAkc", sceAmprAmmCommandBufferMapDirectWithGpuMaskId) +STUB("kOj1HiAGE54", sceNetListen) +STUB("kOwDs0cPXSI", WKStringCreateWithUTF8CString) +STUB( + "kOwgVpE5FIs", + _ZN7WebCore11DOMRectListC1ERKN3WTF6VectorINS_9FloatQuadELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("kP+pALcd5K8", mono_runtime_is_shutting_down) +STUB( + "kP-xd8wtAB4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEE3getEv) +STUB("kP0UwniJtRo", _ZN3WTF25fastDecommitAlignedMemoryEPvm) +STUB("kP1VqcMdVqk", _ZN9Inspector24TargetFrontendDispatchernaEm) +STUB("kP4l+nyBjRA", sceVideoOutSysOpenInternal) +STUB("kP96QYFv1KY", _ZN7WebCore20ResourceResponseBase25syntheticRedirectResponseERKN3WTF3URLES4_) +STUB("kP9AaRQ4bs0", sceApplicationSystemShutdown2) +STUB("kPELiw9L-gw", _ZNSt10moneypunctIcLb1EEC2Em) +STUB("kPGXeSQeoWc", __sys_osem_open) +STUB("kPNIRit7x-c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEED2Ev) +STUB( + "kPPhckrTI-o", + _ZNK3sce2Np9CppWebApi14ConnectAccount2V215AccountLinksApi28ParameterToDeleteAccountLink13isInitializedEv) +STUB("kPSQIkWwKtM", _ZN7WebCore24parseDoViCodecParametersERKN3WTF6StringE) +STUB( + "kPVPQs5uG0M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEEptEv) +STUB("kPVQ5FK0f24", RSA_verify) +STUB("kPVhCcZKzjk", ures_openU_67) +STUB("kPhzQHFGd08", utrie2_fromUTrie_67) +STUB("kPmyrOL6c3I", sceVnaSetUmmStatus) +STUB("kPoy66Qyehc", ucnv_load) +STUB( + "kPtUBqPF8zc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("kPvgi8x497Q", sceFiosDLLTerminate) +STUB("kPw6Fca7u9I", mono_aot_System_ComponentModel_DataAnnotationsunbox_trampolines_end) +STUB("kQ+AKNmelSY", _ZStL4ferr) +STUB("kQ-rPCg6ZWU", sceCesEucJpToUtf16be) +STUB("kQ0tHfaz-R4", JSGlobalContextCreateInGroup) +STUB( + "kQ3xwsuFcfs", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessions32setpostPlayerSessionsRequestBodyENS1_6Common12IntrusivePtrINS3_29PostPlayerSessionsRequestBodyEEE) +STUB("kQ41B6QHfHw", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE7popBackEv) +STUB( + "kQ6vHgHuVMo", + _ZN7WebCore18JSHTMLInputElementC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_16HTMLInputElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB("kQA2oXsxb3Y", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEptEv) +STUB( + "kQCE8Yltyes", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEppEi) +STUB("kQEacF2vg-k", _ZNK7WebCore16JSXMLHttpRequest7wrappedEv) +STUB("kQK51-gjXDk", _ZZSt9MakefacetISt10moneypunctIwLb1EESt8_LocinfoERT_T0_E3buf) +STUB("kQPLH6XosxM", _ZN7WebCore17PageConsoleClient7profileEPN3JSC9ExecStateERKN3WTF6StringE) +STUB("kQR2xbsoPrY", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsD2Ev) +STUB("kQTOUSl14E8", mono_aot_Sce_PlayStation_PUIunbox_trampolines) +STUB( + "kQVicS6NZ9A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEED2Ev) +STUB("kQWc+ifDQvA", _ZN7WebCore36ISOProtectionSystemSpecificHeaderBoxD1Ev) +STUB("kQaShAP-AI8", + _ZN3sce2Np9CppWebApi14ConnectAccount2V215AccountLinksApi28ParameterToDeleteAccountLinkC1ERS5_) +STUB("kQelMBYgkK0", _thread_autoinit_dummy_decl) +STUB( + "kQmwzB0qEvY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE5clearEv) +STUB("kQyNibZId5k", _ZN3WTF3URL25fileURLWithFileSystemPathENS_10StringViewE) +STUB( + "kR+kUllBN9A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEEC2ERSA_) +STUB("kR09Tm7VQbw", _ZN7WebCore21HTMLOptionsCollection9setLengthEj) +STUB("kR3ed2pAvV8", _ZN3sce2np12NpHttpClientD1Ev) +STUB("kR48K4AM1Xc", res_load_67) +STUB( + "kR8Mv98yy7M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEED1Ev) +STUB("kR9Z7rmiqAg", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesD2Ev) +STUB("kRCyhNPMrpg", _ZN7WebCore14ScrollableArea32computeScrollbarValueAndOverhangEfffRfS1_) +STUB( + "kRGO-B6iqdE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB("kRGVhisjgMg", _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE4_PutES3_PKwm) +STUB("kRKs44qOGYE", rgctx_fetch_trampoline_mrgctx_65_p) +STUB( + "kRQpOobCp1M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEC1ERKS7_) +STUB("kRXjOtU-NTI", + _ZNK3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody15updateModeIsSetEv) +STUB( + "kRaE3X3CD8I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEppEi) +STUB("kRb0lquIrj0", SSL_getClientRandom) +STUB( + "kRbUAm1Du+g", + _ZN3sce7Toolkit2NP2V27Ranking8setScoreERKNS3_7Request8SetScoreEPNS2_4Core8ResponseINS3_8TempRankEEE) +STUB( + "kRlcrWTBz4w", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("kRms03n0VdU", + _ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer12unsetNatTypeEv) +STUB( + "kRnBMEM21v8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEEC1ERS9_) +STUB("kRoezIaLVtk", WKBundleNavigationActionCopyHitTestResult) +STUB( + "kRpyYvdHfew", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEptEv) +STUB("kRrTcg7BXdM", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_15CategoryInfoSubENS2_IS4_EEEED2Ev) +STUB( + "kRtHEYxmSKg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEneERKS9_) +STUB("kRyTHJ25dsk", _ZN3sce7Toolkit2NP2V27Ranking7Request15GetRangeOfRanks9MIN_RANGEE) +STUB("kS-RIA8mnR8", mono_aot_Sce_Vsh_WebBrowserjit_got) +STUB("kS2VUTkflj0", + _ZN7WebCore21WheelEventTestMonitor18receivedWheelEventERKNS_18PlatformWheelEventE) +STUB( + "kS7upJUC8LA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEC2EPS6_PNS2_10LibContextE) +STUB( + "kS90uDHCoSA", + _ZN7WebCore16ScriptController41executeAsynchronousUserAgentScriptInWorldERNS_15DOMWrapperWorldEONS_23RunJavaScriptParametersEON3WTF17CompletionHandlerIFvNSt12experimental15fundamentals_v38expectedIN3JSC7JSValueENS_16ExceptionDetailsEEEEEE) +STUB("kS92Nwfsyrg", _ZN7WebCore18TextureMapperLayer5setIDEj) +STUB( + "kSASO5nGHAM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEC2EPKS8_) +STUB("kSDbuDTj3V4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEppEv) +STUB( + "kSJX+wh7Puk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEE11release_refEv) +STUB( + "kSQizKwQt2E", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEeqERKS9_) +STUB( + "kST6RcL8oR0", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB( + "kSYZo64APPs", + _ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer15setPushContextsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_22GameSessionPushContextEEEEE) +STUB( + "kSbacQwDzk8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEmmEi) +STUB("kSenGz3mYbY", mono_aot_System_ServiceModelmethod_addresses) +STUB("kSlHq9JlYgI", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V127ConnectionQualityProperties8getWiredEv) +STUB("kSn9KX+DIpU", u_file_write_flush_67) +STUB("kSoGcqsgEh0", sceCesUtf16beToSJis) +STUB("kSqKbSK1s2c", sceApplicationOnAllResourceReleased) +STUB("kSrZSOXL4tA", _ZN3NTF18NetworkControlImpl8finalizeEv) +STUB( + "kSrg5LXEGkM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEaSERS7_) +STUB( + "kStZdq3y3z0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEC2ERS7_) +STUB( + "kStu2hP-grE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEppEv) +STUB( + "kSy8uydXteA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("kT3lQ5+kLC4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE5beginEv) +STUB("kT5k5wjay0I", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE7popBackEv) +STUB("kT7ArRAAzRA", aio_waitcomplete) +STUB( + "kT8bd-DbU68", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEEaSERSA_) +STUB("kTDnY9DqgNI", _ZN7WebCore15AffineTransform4skewEdd) +STUB("kTKLhNn54l8", WKPreferencesSetInactiveMediaCaptureSteamRepromptIntervalInMinutes) +STUB( + "kTKrnp3qY5g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE7reserveEi) +STUB("kTLRjsyzOpQ", _ZN3sce7Toolkit2NP2V212NetworkUtils12Notification14NetStateChange5resetEv) +STUB( + "kTN0BxT3h+w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "kTOirwBv7No", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEmmEv) +STUB( + "kTRxGaK5O6g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE5clearEv) +STUB("kTSg3Fg36FQ", mono_btls_x509_verify_param_set_flags) +STUB("kTVYwxFhSsc", _ZN7WebCore20TransformationMatrixC2ERKNS_15AffineTransformE) +STUB("kTdmL7yvtgs", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIlED2Ev) +STUB("kTfkKhcdW5Y", _ZN3sce2np18HttpConnectionPoolD1Ev) +STUB("kTiAx7e2zU4", sceSystemServiceSuspendLocalProcess) +STUB("kTj1oic2Yvs", _ZTVN7WebCore17LibWebRTCProviderE) +STUB("kTkBElbiq8Y", _ZTVN7WebCore11DisplayList7ClipOutE) +STUB("kTkXfhto+TQ", _ZNSt7codecvtIwc9_MbstatetE7_GetcatEPPKNSt6locale5facetEPKS2_) +STUB("kTlQY47fo88", _ZNKSt13bad_exception8_DoraiseEv) +STUB("kTsKrlnZ2yc", _ZN3sce7Toolkit2NP2V210Tournament20OneVsOneMatchDetailsaSERKS4_) +STUB("kTsZrONvKNc", sceNpEulaDialogGetStatus) +STUB( + "kTtKHlmvvrM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("kTvVphFFblM", _ZN3JSC2VM20arrayBufferSpaceSlowEv) +STUB("kU+kKr5B-Ik", sceFsGetFsMetadata) +STUB("kU-MTW8Vol0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session9SessionIdEED2Ev) +STUB("kU02TR5VIpU", _ZN7WebCore16TrackPrivateBaseC2Ev) +STUB( + "kU4qzexO+Go", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionProperties35hasxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB( + "kU6pJkBM4ls", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "kU73omJbfO0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEE11release_refEv) +STUB( + "kU7PvJJKUng", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERt) +STUB("kUClDq6ptKg", _ZN7WebCore9HTMLNames8pingAttrE) +STUB( + "kUD1QOzq6CE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEmmEi) +STUB( + "kUII2ZZlLig", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEED1Ev) +STUB("kUJ01RD1JGs", + _ZNK7WebCore24CoordinatedGraphicsLayer24dumpAdditionalPropertiesERN3WTF10TextStreamEj) +STUB("kUT4RpxclMQ", sceAppInstUtilAppExists) +STUB( + "kUTB7lvLlR4", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersD2Ev) +STUB("kUVkdSpBkVM", sceCesGbToUtf32) +STUB( + "kUXTOO674kk", + _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest18setChildActivitiesERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_13ChildActivityEEEEE) +STUB("kUa8VHbq2k4", bemp2sys_pesparser_create) +STUB("kUaJUV1b+PM", sceUserServiceGetEventUiFlag) +STUB("kUavKmsczkY", sceVrServiceDialogGetStatus) +STUB("kUayHU5rWDo", sceAppInstUtilAppUnInstallPat) +STUB("kUcO3-Jsbgg", _ZN3sce7Toolkit2NP2V29Messaging7Request28GetGameDataMessageAttachmentD1Ev) +STUB("kUcYN67K9tg", _ZN7WebCore26contextMenuItemTagFontMenuEv) +STUB("kUcinoWwBr8", _WLdtob) +STUB("kUcnaZV-hLs", _ZN7WebCore15JSFetchResponse9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("kUcpXwFfni4", mono_btls_x509_verify_param_set_time) +STUB("kUeYucqnb7o", sceAppContentDownload1Shrink) +STUB("kUg6gg23PpU", u_strFindLast_67) +STUB( + "kUhJrxF7ncY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE4sizeEv) +STUB("kUitiIVR43g", _ZN3sce2np7CalloutD1Ev) +STUB( + "kUjy5mSEGQQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE3endEv) +STUB("kUkGRhupvTo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEEC1EPKS6_) +STUB("kUlvghKs-mA", sceAgcDcbDrawIndirectMulti) +STUB( + "kUoPbs0E1lw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEE11release_refEv) +STUB("kUpgrXIrz7Q", sceKernelGetModuleInfo) +STUB("kUsK6ZtqofM", _ZN3sce2np10NpOnlineIdD0Ev) +STUB( + "kUsuzoxFVik", + _ZN9Inspector24NetworkBackendDispatcher12loadResourceElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("kUv2-yV2vfw", + _ZN7WebCore14FrameSelection7setBaseERKNS_8PositionENS_9EAffinityENS_14EUserTriggeredE) +STUB("kUvfbObJ0gw", + _ZN7WebCore11DOMRectListC2ERKN3WTF6VectorINS_9FloatRectELm0ENS1_15CrashOnOverflowELm16EEE) +STUB("kUzZ7TNCxMw", _ZN3sce7Toolkit2NP26GameCustomDataItemsRequestC1Ev) +STUB("kUzykn1qM6c", WKBundlePageInstallPageOverlayWithAnimation) +STUB( + "kV+DGx-sT-I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "kV-NQA6gcpg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("kV1Appsd6iM", _ZNK3sce2Np9CppWebApi6Common6VectorImE5beginEv) +STUB("kV4DP0OTMNo", sceNpTrophySystemRemoveTitleData) +STUB( + "kV5jOqjJBrI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEC1Ev) +STUB( + "kV7v8Y5DFZM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEE11get_deleterEv) +STUB( + "kVGz48sqNJM", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE8readDataEPcm) +STUB("kVMxSiYD6tc", sceFiosFileReadSync) +STUB( + "kVOyU4dpD+8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEC2Ev) +STUB( + "kVSpLvXWP4c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEEC2Ev) +STUB("kVUjx67DBac", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEEC1Ev) +STUB("kVWBITsSB3o", sceCamera2GetFieldOfView) +STUB("kVZPR0MhBPU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEED1Ev) +STUB("kVbL4hL3K7w", sceNpWebApiSendRequest) +STUB("kVbqWyGfYHY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEC2Ev) +STUB("kVdLpKxNs2c", _ZN6WebKit17ChildProcessProxy21removeMessageReceiverEN3IPC15StringReferenceEm) +STUB("kVeTuFlhh0U", rgctx_fetch_trampoline_rgctx_79_p) +STUB("kVgAgbVf4m8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEEC1EPNS2_10LibContextE) +STUB( + "kVi-0I7TIaw", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12unsetString9Ev) +STUB( + "kVlWyajPBjQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("kVqcLetWp+A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEaSERS7_) +STUB( + "kVqpMGDYTlw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("kVthAlKICsM", _ZN3sce2Np9CppWebApi7Matches2V120ResponseInGameRosterD1Ev) +STUB("kVvGL9aF5gg", _ZN10__cxxabiv120__function_type_infoD0Ev) +STUB("kW3GLb7QfPg", sceAgcInit) +STUB("kW5K7R4rXy8", _ZNSt14numeric_limitsIsE8digits10E) +STUB("kWBaf0WOZBI", sceAudioOut2ReportRegisterHandler) +STUB("kWDfHDajpZM", _ZN7WebCore5Style5Scope30didChangeStyleSheetEnvironmentEv) +STUB( + "kWH76XkadNY", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer15setcontainerIdsEPKc) +STUB("kWKgvWIl2OQ", _ZN7CoreIPC10Connection18connectionDidCloseEv) +STUB("kWLVY4iAwME", WKBundleFrameCopyWebArchive) +STUB( + "kWPLTtMoa4k", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_17ActivityFeedStoryENS1_15AppSTLAllocatorIS5_EEEED2Ev) +STUB( + "kWQbgfGBRqQ", + _ZN9Inspector15ScriptCallStackC1ERN3WTF6VectorINS_15ScriptCallFrameELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB( + "kWSCyC0nJNQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEppEv) +STUB( + "kWe154FhLrg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEC2Ev) +STUB("kWikFRorzyE", _ZN7WebCore10FileSystem20deleteEmptyDirectoryERKN3WTF6StringE) +STUB("kWjWUyOGZQs", sceCesUcsProfileInitUhc) +STUB( + "kWkJyUvkiOU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEE21intrusive_ptr_sub_refEPS7_) +STUB( + "kWnc6s2aECs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEED1Ev) +STUB( + "kWomUmHDEbE", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData21getxPsnNpServiceLabelEv) +STUB("kWxItDKnRsQ", _ZN3JSC17JSArrayBufferView14unsharedBufferEv) +STUB( + "kX-G6gDu73k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEC1Ev) +STUB( + "kX-pDTAsBx8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEED1Ev) +STUB( + "kX48mAtsbko", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB("kX88h1qQ7co", curl_getdate) +STUB("kX8cuOe3V10", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEE11get_deleterEv) +STUB("kXE1imLw7yo", _ZN3sce2np10JsonString5ClearEv) +STUB("kXgcWVbOvtI", WKBundlePagePostSynchronousMessage) +STUB( + "kXlk+Bby3D8", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot13getaccountIdsEv) +STUB("kXoKeEoyfwo", WKPreferencesGetLazyImageLoadingEnabled) +STUB( + "kXoyjBuYG9Y", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEeqERKS9_) +STUB("kXpQ-k8KwX4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEEC1EPNS2_10LibContextE) +STUB( + "kXy+sym0ulQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEC2Ev) +STUB( + "kY+dD6kxIkY", + _ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime12RemoteObject4TypeEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE) +STUB("kY3qp23saNA", _ZN7WebCore11MediaPlayer15clearMediaCacheERKN3WTF6StringENS1_8WallTimeE) +STUB("kY4dsQh+SH4", sceGnmSqttSetDceEventWrite) +STUB("kYGB4Bgsc8g", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersC2Ev) +STUB( + "kYGoa9eplec", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE3endEv) +STUB("kYMBRpJ+Agk", _ZNK3WTF3URL18fragmentIdentifierEv) +STUB("kYY3pgoPUcQ", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE8capacityEv) +STUB("kYZ5uhoFCEc", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEEC2EPS6_) +STUB("kYgNNhsYnJA", _ZN7WebCore27PlatformMediaSessionManager32setIsPlayingToAutomotiveHeadUnitEb) +STUB("kYoZ-ilL+zk", + _ZN7WebCore12SettingsBase20setFantasyFontFamilyERKN3WTF10AtomStringE11UScriptCode) +STUB("kYuAl8IwTf4", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_20ChallengeRecvDetailsEE8allocateEmPKv) +STUB( + "kYwqSr9oHLM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEC1Ev) +STUB( + "kYxc0VDH6lg", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126NatConnectivityFromFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_24NatConnectivityToMetricsEEESA_SA_PNS8_INS3_19NatConnectivityFromEEE) +STUB("kYzNFJoCL8g", _ZN3sce7Toolkit2NP2V27Session9SessionIdC2ERKS4_) +STUB( + "kZ+1Re5i6n8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEEC2ERKSA_) +STUB( + "kZ+TqraGUMU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEcvbEv) +STUB( + "kZ0f4e-CuEo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("kZ5Cc0KqzdI", sceFaceIdentifyExGetWorkingMemorySize) +STUB("kZ7Xre07w70", sceCompositorSetIndirectRenderTargetConfigCommand) +STUB("kZBRiX2f1No", sceVnaRequestPlayCachedTts) +STUB( + "kZFwfdh0z5o", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB( + "kZH1UUQ43gI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot8setgroupENS5_5GroupE) +STUB( + "kZJ2zwbh-Pc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEdeEv) +STUB("kZM-JXhV+kA", _ZN12video_parser5vpcom10LockUnlockEPN3paf6thread5MutexE) +STUB( + "kZOjDmD1NfU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEC1EPS8_) +STUB("kZOsA97Ji0M", _ZN7WebCore12UserActivityC2EPKc) +STUB("kZTq8uGZyV4", mono_aot_Sce_Vsh_SystemLoggerWrapperplt_end) +STUB("kZU3yHbsYWs", _ZNK7WebCore30InvertLightnessFilterOperation5cloneEv) +STUB("kZVK-g6NS1g", _ZN3sce7Toolkit2NP2V29Messaging24GameDataMessageThumbnail5resetEv) +STUB( + "kZXsEM2suWs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEEaSERKSC_) +STUB( + "kZY1ZzxQP5w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEC1ERKS7_) +STUB( + "kZZUQA9BngU", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSE_) +STUB("kZcoT-bZprM", _ZN3NTF17URLRequestJobImpl5startEb) +STUB("kZizwrFvWZY", sceNpMemoryHeapInit) +STUB("kZmsaz7bhS8", _searchProtocolInfoTail) +STUB("kZpi+FEogTM", _ZN7WebCore8IntPointC2ERKNS_10FloatPointE) +STUB("kZsCkTkbZgU", _ZNK7WebCore9FrameView12headerHeightEv) +STUB("kZu8U8Ny974", vzone_close_67) +STUB("ka5TVf37Akg", _ZNK15AbstractStorage7Content7GetTypeEv) +STUB("ka5iSrDrfsk", _ZN12video_parser5vpcom5SleepEi) +STUB( + "ka6-i4eFHAc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "ka91QlkOjFc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "kaAYYbwFoAg", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("kaCVikbrIRM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEE5resetEPS5_) +STUB("kaGqLGDNa0Y", _ZN3sce2Np9CppWebApi7Matches2V118RequestTeamResultsC1EPNS1_6Common10LibContextE) +STUB("kaLFzWxqkFY", aio_read) +STUB( + "kaSY-ybJxCk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE5emptyEv) +STUB( + "kaShY6BE348", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("kaTn7C8H6iU", _ZN3sce3Xml12MemAllocatorD2Ev) +STUB( + "kaX8GptR+D4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEED2Ev) +STUB("kaasopY4BaA", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession18getNonPsnSupportedEv) +STUB("kabdJwBdlmM", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_8TempRankEE3getEv) +STUB( + "kafCGG7SGFo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEmmEv) +STUB( + "kah6wlo6dNk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE4sizeEv) +STUB("kapSfjwHd3U", rgctx_fetch_trampoline_mrgctx_96) +STUB( + "kaplUJQaPpY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "kaq88xK+zp0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEplEm) +STUB( + "kaqIGA9XYU0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEEC1ERS9_) +STUB("kaqTf5y2P0E", sceDebugGetProcessInfo) +STUB("karnJhakdKg", sceShareUtilityAdvanceSetUploadContentData) +STUB("katLYKl5Xhw", InetStatGetStateNative) +STUB( + "kayDoR58+dA", + _ZN3sce7Toolkit2NP8Sessions9Interface6updateEPKNS1_22UpdateNpSessionRequestEPNS1_9Utilities6FutureIiEEb) +STUB("kazBRXPqR7c", sceVideoOutCurveSamplePointsCalc_) +STUB("kazv1NzSB8c", scePadConnectPort) +STUB( + "kb1765xaXIQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEC2ERKS7_) +STUB("kb1zaUdko9I", mono_metadata_guid_heap) +STUB("kb24-4DLyNo", sceSaveDataGetSavePoint) +STUB("kb2thTuS8t8", sceNpCancelEventFlag) +STUB( + "kb4rE5VVRK0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("kb69eYk8KZc", _ZN3sce7Toolkit2NP2V212EventsClient12EventDetailsC2ERKS4_) +STUB( + "kb9U9CgXIi8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEdeEv) +STUB("kbCBiU4L4BE", fuse_lowlevel_new_common) +STUB("kbFaB1rGobk", _ZN9Inspector34ApplicationCacheFrontendDispatcherC1ERNS_14FrontendRouterE) +STUB("kbFr-IcUqH4", sceHttpCacheSystemShutdown) +STUB("kbIIP9aXK9A", sceSaveDataCreateUploadData) +STUB( + "kbMuJiT2XwY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "kbNYohoOWts", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEED2Ev) +STUB( + "kbQFtDvqU7w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEE7get_refEv) +STUB( + "kbQqLr76-tw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEC2EPS8_) +STUB("kbTFhQmXkyA", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils5IdMapEED1Ev) +STUB("kbWqOt3QjKU", sceNpTusSetDataAVUser) +STUB( + "kbbOKaNXJIs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEE7get_refEv) +STUB("kbeSnobHWI8", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session12Notification18InvitationReceivedEED2Ev) +STUB("kbjb2Hw8yiE", umutablecptrie_open) +STUB("kbk2lHn3K1Y", uspoof_getAllowedUnicodeSet_67) +STUB("kbnc3h28u9o", _ZN7WebCore27protocolHostAndPortAreEqualERKNS_3URLES2_) +STUB("kbnolUUfE8c", + _ZN7bmalloc29StaticPerProcessStorageTraitsINS_25ARC4RandomNumberGeneratorEE7Storage8s_memoryE) +STUB("kbw4UHHSYy0", __pthread_cxa_finalize) +STUB("kbzzvMGjXIA", _ZN9Inspector25BrowserFrontendDispatcherC2ERNS_14FrontendRouterE) +STUB("kc+LEEIYakc", sceKernelMapNamedSystemFlexibleMemory) +STUB("kc-O9XKFRIE", sceNpAsmGetServiceBaseUrl) +STUB( + "kc0nnt8EPqU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEC2ERKS7_) +STUB("kc26Da2+ivQ", _ZN7WebCore11DisplayList13StrokeEllipseD1Ev) +STUB( + "kc5xozNnzkM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEEC2ERKSA_) +STUB("kc89FM1Uil4", WKDataGetSize) +STUB( + "kcAI7TN2VjQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEC1ERS7_) +STUB( + "kcC3RF8fHOo", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody30getComparedLastUpdatedDateTimeEv) +STUB( + "kcCjBJsWC-Y", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V135SetMultiVariablesRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_28SetMultiVariablesRequestBodyEEE) +STUB("kcGxOSOGqMI", sceVnaDevideAnalyze) +STUB("kcMvKhb35KU", _ZN3sce2Np9CppWebApi13InGameCatalog2V55Image8fromJsonERKNS_4Json5ValueE) +STUB( + "kcNruJ7-2go", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEC2Ev) +STUB("kcOAlP0yWbs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEEC2EPS6_) +STUB("kcRWp+yP0B8", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_28ActivityFeedSharedVideoStoryEE7addressERKS3_) +STUB("kcS5u0ze3ZA", mono_lock_free_allocator_init_size_class) +STUB("kcldQ7zLYQQ", sceHmdReprojectionStartWithOverlay) +STUB("kcpsln1zBo0", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEEcvbEv) +STUB( + "kcs7+hpbUS4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE5beginEv) +STUB( + "kcyniqn9cz0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE5beginEv) +STUB("kd+48HhlTyg", rgctx_fetch_trampoline_mrgctx_5) +STUB("kd0VbEN5bIY", sceMatPushMarker) +STUB("kd7VZWMHCXg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEE7get_refEv) +STUB("kdFImtTD0hc", sceAmprMeasureCommandSizeMapBegin) +STUB("kdGzLIxpE7k", + _ZN3sce2Np9CppWebApi15Personalization2V111ErrorEntityC2EPNS1_6Common10LibContextE) +STUB("kdJg4Mb8TRY", sceDataTransferTargetEventIsAuthReady) +STUB("kdL5Xm-z3zw", sceMbusDumpUserMediaInfo) +STUB("kdOC-2AE06w", _ZN3sce2np10CancelableD0Ev) +STUB("kdRUKfMeEB4", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE3endEv) +STUB("kdX2pv4ftTY", _ZN3sce7Toolkit2NP2V210Tournament25BracketInformationOfMatchC1Ev) +STUB( + "kdZDIQTVxJ4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEC2Ev) +STUB( + "kde5zVlHMSk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEppEi) +STUB("kdguLiAheLI", execve) +STUB("kdi63Th4zLU", _ZN12video_parser5vpcom24DirectoryDeleteRecursiveE) +STUB("kdrdY-BEJMw", sceNpPushCheckCallback) +STUB("kdrle9Nn6QI", delegate_invoke_impl_target_4_p) +STUB( + "kduzpDTZaVs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE4sizeEv) +STUB( + "kdvf-sQvFPw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEEC2ERKSA_) +STUB( + "kdvgh5WXr9w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEE11release_refEv) +STUB("ke27GvSMU+s", sceNetCtlApCpStop) +STUB( + "ke2mYVrsJY4", + _ZN7WebCore9ImageData6createEON3WTF3RefIN3JSC21GenericTypedArrayViewINS3_19Uint8ClampedAdaptorEEENS1_13DumbPtrTraitsIS6_EEEEjSt8optionalIjE) +STUB("ke36E2bqNmI", + _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecb) +STUB("ke9BmIAcGJ0", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEED1Ev) +STUB( + "keAGErEQKO8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEC1EPS8_) +STUB("keCDF9qi69w", _ZNK7WebCore14HTMLCollection13namedItemSlowERKN3WTF12AtomicStringE) +STUB("keE3gt8C68E", _ZN3JSC4Heap19unregisterWeakGCMapEPNS_13WeakGCMapBaseE) +STUB( + "keGKVn6+tx4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEEdeEv) +STUB("keKRlaxeK9g", sceBdSchedStopScheduling) +STUB("keL4-pjIZRE", _ZN7CoreIPC10Connection13sendSyncReplyEN3WTF10PassOwnPtrINS_14MessageEncoderEEE) +STUB("keMnl-oDLwk", YGNodeStyleSetPosition) +STUB("keONFx5Jpvw", + _ZN3WTF8JSONImpl5Value8asObjectERNS_6RefPtrINS0_6ObjectENS_13DumbPtrTraitsIS3_EEEE) +STUB("keOaOFLkcQQ", _ZN7WebCore6JSFileD2Ev) +STUB("keQTYykAIN4", _ZN7WebCore16HTMLInputElement16setValueAsNumberEdNS_22TextFieldEventBehaviorE) +STUB( + "keS0Oy5E6NY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE5clearEv) +STUB("keVlZpViEAI", _ZThn16_N9Inspector18InspectorHeapAgent2gcERN3WTF6StringE) +STUB("keXoyW-rV-0", _ZTVSt16invalid_argument) +STUB( + "keYgLQ3mv4c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEEC2EPS8_PNS2_10LibContextE) +STUB("keZTgaBCdFs", _ZNK7WebCore11HistoryItem4copyEv) +STUB("kecoHLWDt+U", + _ZN3sce2Np9CppWebApi7Matches2V122RequestPlayerStatistic8fromJsonERKNS_4Json5ValueE) +STUB("kecxfrpSU+g", c) +STUB("keemyvZDMSU", _ZN15AbstractStorage14DailymotionAPI8termHttpEv) +STUB("keipklF0pMY", sceVideoOutAddPreVblankStartEvent) +STUB( + "kep-pcSnuhM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEEcvbEv) +STUB( + "kesaFHQ0i6Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "keu7tb6jHEA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEppEi) +STUB("keuXqJ8QP7g", uiter_current32_67) +STUB("kevKTD6kQxw", BgsStorageOpen) +STUB("kevYNs9JoGk", _ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionMemberPlayerD1Ev) +STUB( + "kevsE-ZjZ8A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEC2EPS6_PNS2_10LibContextE) +STUB("keyBPF9S5Bg", + _ZSt9use_facetISt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale) +STUB( + "keztybI8rGc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE8capacityEv) +STUB("kf36P+MYxfM", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEEC1Ev) +STUB("kf57RhzuP0g", _ZN7WebCore21JSCSSStyleDeclarationD2Ev) +STUB( + "kfEOnCjVRPE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEplEm) +STUB("kfFK8vOBa6c", res_getTableItemByKey_67) +STUB("kfFhWBe0nOE", _ZN3JSC7Symbols37regExpStringIteratorRegExpPrivateNameE) +STUB("kfGxPD0pfqc", + _ZNK3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForRead18nonPsnPlayersIsSetEv) +STUB("kfM7DWrAPoE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEC1EPS8_) +STUB( + "kfNW47jqfIE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEppEv) +STUB("kfOVuKHkkV4", u_strFromUTF8Lenient) +STUB( + "kfQRD-2YNw4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEC1EPS8_) +STUB( + "kfRTX35v-Mw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEmmEi) +STUB("kfT6hC5SF+g", _ZN9Inspector34DOMStorageBackendDispatcherHandlerD0Ev) +STUB("kfVCX7XUVkM", WKPageGetRenderTreeSize) +STUB("kfW9CB2uj9g", mono_profiler_install_thread) +STUB( + "kfYbuncXo5w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEE11release_refEv) +STUB("kfYgv5hOs2w", _ZN7WebCore17NowPlayingManagerC2Ev) +STUB("kfYyjoK1Qq0", utrace_entry_67) +STUB("kfaKs9xDzbo", _ZN3JSC25jsStringWithCacheSlowCaseERNS_2VMERN3WTF10StringImplE) +STUB("kfbIJWJV-Qw", _ZN3JSC7Symbols26generatorResumePrivateNameE) +STUB("kfbMCFJxb6E", + _ZN3JSC9constructEPNS_14JSGlobalObjectENS_7JSValueERKNS_8CallDataERKNS_7ArgListES2_) +STUB( + "kfeR-WpAYt0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("kfhG3oanNo4", + _ZNK3sce2Np9CppWebApi12Leaderboards2V122GetRankingResponseBody6toJsonERNS_4Json5ValueEb) +STUB( + "kfhhktzL7iw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEEC1EPS8_PNS2_10LibContextE) +STUB("kfiTsYANGLc", ucurr_getNumericCode_67) +STUB("kfkHzPUtvoA", + _ZN7WebCore22EmptyFrameLoaderClient21didRunInsecureContentERNS_14SecurityOriginERKNS_3URLE) +STUB("kfmUw2IkEk8", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product18contentRatingIsSetEv) +STUB("kfoq4EGA6xk", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku5setIdEPKc) +STUB("kfrIiNR8AV4", sceUpsrvUpdateSetUpdateMode) +STUB( + "kfrmJv3vBgk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEEC2ERKSA_) +STUB("kfuINXyHayQ", _ZTSy) +STUB("kfyuElAEnis", sceShellCoreUtilSetSystemBGState) +STUB("kg+lH0V61hM", sceVideodecMapMemory) +STUB( + "kg-CHdWPuN4", + _ZN3sce2Np9CppWebApi15Personalization2V110ContentApi13getAccessCodeEiRKNS1_6Common13ParameterBaseERNS5_11TransactionINS5_12IntrusivePtrINS3_21GetAccessCodeResponseEEENSA_INS5_18ResponseHeaderBaseEEEEE) +STUB("kg4x8Prhfxw", getuid) +STUB("kg6VC+4pmXA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEEptEv) +STUB("kg7dgRvYRjs", mono_aot_Sce_Vsh_PsnUtilunwind_info) +STUB( + "kg9xCHu-eNc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEixEm) +STUB("kgA+h50vaJY", _ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetail8fromJsonERKNS_4Json5ValueE) +STUB("kgBsQ1DiV6A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEEC2EPS6_) +STUB("kgDwlmy78k0", sceNpIpc2ClientInit) +STUB("kgGUjo9h2ao", WKBundleFrameFocus) +STUB("kgIHxsUCs8Q", _ZN3sce7Toolkit2NP2V210Tournament18OneVsOneRankResultD1Ev) +STUB( + "kgIhDSCgYtg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEC2EPNS2_10LibContextE) +STUB("kgLz9IuqGvA", jpeg_start_output) +STUB( + "kgMyrXvkIc4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("kgNtcEqgjww", _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody11unsetStatusEv) +STUB("kgOk-kzW+8M", sceRazorCpuInit) +STUB("kgQk2xeWar4", bemp2sys_logprintf_setfunc) +STUB("kgVwp+PI00w", _ZN7WebCore6Editor5pasteEv) +STUB( + "kgWAk0e7xEw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEppEv) +STUB( + "kgXiWJ8jfLQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEdeEv) +STUB("kgdHbrqYQUs", mono_gc_max_generation) +STUB("kgeuOe7oln8", + _ZN15AbstractStorage14YoutubeStorage11DeserializeESt10shared_ptrINS_7ContentEEPS1_INS_4ItemEE) +STUB("kgfm1luhFzc", rgctx_fetch_trampoline_rgctx_8) +STUB("kgie4WdMciY", rgctx_fetch_trampoline_rgctx_30) +STUB("kgoY4sueNqU", sceFaceTrackerFinalize) +STUB( + "kgqx4Gf0dOw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEixEm) +STUB( + "kgwTDckowm0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE5eraseENS2_8IteratorIS6_EERS9_) +STUB("kh+pH-spxOY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE8capacityEv) +STUB( + "kh-Du88nFkI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEEC1Ev) +STUB( + "kh-oiPVTARk", + _ZN7WebCore19JSHTMLSelectElement3putEPN3JSC6JSCellEPNS1_9ExecStateENS1_12PropertyNameENS1_7JSValueERNS1_15PutPropertySlotE) +STUB( + "kh-ra6NRbJw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEC1EPS8_) +STUB("kh0okTVsSq4", _ZN7WebCore4Page14setIsPrerenderEv) +STUB( + "kh3klr6mqzw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("khCnWoFmQhw", _ZN8meta_gen14ImageRetrieverD1Ev) +STUB( + "khIC4oLafeY", + _ZN9Inspector20DOMBackendDispatcherC1ERNS_17BackendDispatcherEPNS_27DOMBackendDispatcherHandlerE) +STUB( + "khJnHIgmZoc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE8pushBackERKS8_) +STUB("khK6KVVPaRc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEEC2Ev) +STUB("khKtQ6XhB-M", _ZN3sce3pss4core8graphics14NativeGraphics19ReleaseSystemMemoryEPv) +STUB("khKucrcspGQ", _ZNK3sce2Np9CppWebApi11UserProfile2V15Error7getCodeEv) +STUB("khMHRfKhXyw", _sceDepthCalcHeteroAdjustParam) +STUB("khSBh3xjSvU", sceCustomMusicCorePostEvent) +STUB("khThzVltokg", _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody9setOffsetERKi) +STUB("khW9hpedbkI", _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi21ParameterToLeaveMatch10getmatchIdEv) +STUB("khZ9Tk-zEU0", _ZN3sce7Toolkit2NP2V211SharedMedia7Request13GetBroadcastsD1Ev) +STUB("khaYelw1Ytc", sceRegMgrSetInt) +STUB("khbdMADH4cQ", _ZNSt9bad_allocD1Ev) +STUB("khbpnjUbhyU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEEcvbEv) +STUB("khngW4IwZtQ", mono_aot_Sce_Cdlg_Platformunwind_info) +STUB("khqNXwrO2Yw", _ZNSt15basic_streambufIcSt11char_traitsIcEE5uflowEv) +STUB( + "khvgaTcMzP0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE8pushBackERKS8_) +STUB("khz5JzN+Sho", mono_class_inflate_generic_method) +STUB( + "khzQadjoEY8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEC1EPS8_) +STUB("ki+ELqYDnlM", + _ZN7WebCore21JSCSSStyleDeclaration11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("ki3Vuu7oPhg", _ZN9Inspector21CSSFrontendDispatcher17styleSheetChangedERKN3WTF6StringE) +STUB("ki5SQPsB4m4", _ZNSt10moneypunctIwLb0EED1Ev) +STUB( + "ki7WrVXdih8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEEC2Ev) +STUB("ki7myINNcOA", _ZN7WebCore10JSLocationD2Ev) +STUB("ki81gh1yZDM", sceUserServiceGetGlsHintFlag) +STUB("ki9Tj7Fyq90", _ZN15AbstractStorage14TwitterContentD0Ev) +STUB("kiA9bZhbnAg", scePadGetIdleCount) +STUB("kiAvx9Y-Q-0", WKPreferencesSetFTPDirectoryTemplatePath) +STUB("kiBDjlxQApI", mono_mlist_next) +STUB( + "kiCBewiKwiU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("kiEcKeRXOsI", _ZN7WebCore17NowPlayingManagerD2Ev) +STUB( + "kiFtL0rXb08", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEixEm) +STUB("kiKEAOzeGRE", mono_aot_Sce_Vsh_FileSelectorunbox_trampolines) +STUB("kiLNP38EFKo", _ZN3sce2Np9CppWebApi15ProfanityFilter2V223FilterProfanityResponseD2Ev) +STUB("kiOnjE4+tqs", _ZN7WebCore6Editor25setIgnoreSelectionChangesEbNS0_15RevealSelectionE) +STUB( + "kiQK7nCT4kg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("kiZSXIWd9vg", strcpy) +STUB( + "kidvZ7d7f68", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEE7get_refEv) +STUB("kie+nv-1HCM", _ZN3WTF19mimeTypeFromDataURLENS_10StringViewE) +STUB("kihFGYJee7o", sceFontSetFontsOpenMode) +STUB("kihUpacjs+I", _ZN9Inspector21DOMFrontendDispatchernaEmPv) +STUB("kii04cMy8zg", YGNodeStyleSetFlexWrap) +STUB( + "kil772156rU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEC2Ev) +STUB( + "kin3o92Akrs", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("kiuL-y6I8ZA", _ZN7WebCore9HTMLNames39webkitwirelessvideoplaybackdisabledAttrE) +STUB( + "kiwGU6ys57A", + _ZN9Inspector26DebuggerFrontendDispatcher18breakpointResolvedERKN3WTF6StringENS1_6RefPtrINS_8Protocol8Debugger8LocationENS1_13DumbPtrTraitsIS8_EEEE) +STUB( + "kj6DL8Mzwc0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC2ERKSA_) +STUB("kjAO5VVQPWk", _ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody9getStatusEv) +STUB("kjB3piQnVh4", _ZNK7WebCore27TranslateTransformOperation1xERKNS_9FloatSizeE) +STUB("kjBgiHX1QR0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEaSERKS7_) +STUB("kjENrCcwC2A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEEC1EPS5_PNS2_10LibContextE) +STUB( + "kjFegP2-C+g", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB( + "kjGLfYIH9OE", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody8fromJsonERKNS_4Json5ValueE) +STUB( + "kjGNMDCO7jk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE3endEv) +STUB( + "kjMbMRAPyk4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEaSERKS9_) +STUB("kjT8geALBJw", _ZNK3JSC7JSValue16toStringSlowCaseEPNS_9ExecStateEb) +STUB("kjUzpV+eSZE", _ZN3JSC7Symbols30generatorFieldStatePrivateNameE) +STUB("kjbbYGTZ1PI", GCC_except_table251) +STUB("kjf2y+Nx7m4", _ZN7WebCore8SVGNames12font_faceTagE) +STUB( + "kjgyDxoLRGE", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("kjokc80XDo0", sceAppInstUtilUnmountBdEmu) +STUB("kjrLbcyhEiw", sceVideodec2GetAvcPictureInfo) +STUB( + "kjxu1NilBpo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEEC1ERKSA_) +STUB( + "kjy+3B3-KYQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEneERKS9_) +STUB("kk+vtLYr0Ig", _ZN3sce7Toolkit2NP2V23TUS16FriendsVariables5resetEv) +STUB( + "kk0RcxxIvAM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEmmEi) +STUB("kk2zHgt--8E", WKPageGetPaginationMode) +STUB( + "kk5-VJanA6Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE21intrusive_ptr_add_refEPS9_) +STUB("kk6mGYu-DUU", _ZNK7WebCore16VisibleSelection10firstRangeEv) +STUB("kk8DJ5cGXDk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEE3getEv) +STUB("kkBDkw3pXPM", rgctx_fetch_trampoline_rgctx_25) +STUB( + "kkEyLyFobPQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "kkHHpP0hmkY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEEaSERKSA_) +STUB( + "kkHYbPDQMK4", + _ZN7WebCore15JSFetchResponseC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_13FetchResponseENS6_13DumbPtrTraitsIS8_EEEE) +STUB("kkJ7Jim78o0", sqlite3_changes) +STUB("kkKAwBhCZTQ", + _ZThn16_N9Inspector22InspectorDebuggerAgent26setPauseForInternalScriptsERN3WTF6StringEb) +STUB("kkTcZskp1i4", _ZN9Inspector15AsyncStackTrace8truncateEm) +STUB("kkW+qhbjpiA", + _ZNK3sce2Np9CppWebApi7Matches2V124RequestCompetitiveResult6toJsonERNS_4Json5ValueEb) +STUB("kkWkqBuJiDU", _ZNK3WTF6Logger17LogSiteIdentifier8toStringEv) +STUB( + "kkb9W0RfPT0", + _ZN7WebCore17PageConsoleClient6recordEPN3JSC14JSGlobalObjectEON3WTF3RefIN9Inspector15ScriptArgumentsENS4_13DumbPtrTraitsIS7_EEEE) +STUB( + "kkc4DONQBns", + _ZN9Inspector24ConsoleBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("kkgOkehWCkE", mono_aot_Sce_Vsh_VideoEdit_Wrapperunbox_trampolines) +STUB("kkh2uFKKr2Y", mono_get_delegate_end_invoke) +STUB( + "kki3wx2WyaQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE8capacityEv) +STUB("kkjTVuDaoeY", mono_aot_Sce_Vsh_SysfileUtilWrappermethod_addresses) +STUB("kkn+iy-mhyg", sceGnmSpmEndSpm) +STUB("kkoW1oW5fSY", _ZN3JSC11MarkedSpace22s_sizeClassForSizeStepE) +STUB("kkpXMCJjHUc", _ZN13MsvMetaEditor14getMtdtBoxInfoEjttPNS_11MtdtBoxInfoE) +STUB( + "kkqMyrPhx0k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE21intrusive_ptr_add_refEPS9_) +STUB("kkuR7IcivEI", _ZN3sce7Toolkit2NP2V26Friend12Notification16FriendlistUpdateD1Ev) +STUB("kkxVQKwPyNE", sceCesUcs2StrGetIso2022Len) +STUB( + "kl+xhcq9jQs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEE11release_refEv) +STUB( + "kl-tIiQqMVE", + _ZN15AbstractStorage18DailymotionStorage15RemoveRecursiveERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("kl03klwNnE0", _ZN7WebCore9DragImageC2EOS0_) +STUB("kl5tuVwRw14", _ZNK23sceMetadataReaderWriter8Metadata15checkWriteFieldEiRS0_S1_Pb) +STUB("kl9cnbrBzrA", WKBundlePageSetPolicyClient) +STUB("klCWUPz9adc", mono_mlist_set_next) +STUB("klGtyOk7wrc", res_unload_67) +STUB("klKSoHIn-Js", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setSubtitleStream) +STUB("klL8TZWRUGk", JSObjectGetTypedArrayLength) +STUB( + "klLqT+Tmbd4", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead30exclusiveLeaderPrivilegesIsSetEv) +STUB("klR8VtfkWAM", _ZN3sce7Toolkit2NP2V27Ranking17GetGameDataResultD1Ev) +STUB("klUhQY5QH70", sceNpSnsYouTubeDialogUpdateStatus) +STUB( + "klVQTxnQou4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEEC1Ev) +STUB( + "klW7rjXBzdg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("klWxQ2nKAHY", _ZNKSt8numpunctIcE13decimal_pointEv) +STUB("klYcFOBICp0", _ZNK7WebCore8Document6originEv) +STUB("klcUCefeE9Q", _ZN7WebCore28InspectorFrontendClientLocal20dispatchMessageAsyncERKN3WTF6StringE) +STUB("kleiPlZktXY", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError7setCodeERKi) +STUB("klhltY+vj3A", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIjEneERKS4_) +STUB("kljmiWjdovQ", _ZTVN7WebCore17PageConsoleClientE) +STUB("klmI66i8Ok8", _ZNK7WebCore31BasicColorMatrixFilterOperation17passthroughAmountEv) +STUB("klwUy2Wg+q8", sceHttp2RedirectCacheFlush) +STUB( + "klxC90Bryrc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEEC1ERKSA_) +STUB( + "km-kcAdXlcY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEppEi) +STUB( + "km48vPkG6cc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE8capacityEv) +STUB("km5-rjNjSFk", _ZN3sce2np15CancelableScopeD1Ev) +STUB("km5JuE5sbWY", mono_verify_corlib) +STUB("km9NyWHsfKE", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V111LeaveReasonEEC1Ev) +STUB( + "kmFFePNrJys", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEED2Ev) +STUB("kmFvQzj-N7Y", mono_aot_Sce_Vsh_Np_ServiceCheckermethod_addresses) +STUB("kmGTNfcloOM", __tsan_write_range_pc) +STUB( + "kmHPSW4RVho", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEEC1Ev) +STUB( + "kmHRCQJIHW4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEEdeEv) +STUB( + "kmKzt5DDuV4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB( + "kmNd8dkBoEc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE10setContextEPNS2_10LibContextE) +STUB("kmRRFXr56os", _ZN4Manx21Curl_cookie_clearsessEP10CookieInfo) +STUB("kmSe30JTs+E", sceVideoOutAddOutputModeEvent) +STUB("kmU9cuJGhCk", _ZN3sce7Toolkit2NP2V23TUS13TusDataStatusC2Ev) +STUB( + "kmYZhRyfCAY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB( + "kmZFGloXNak", + _ZN9Inspector26AnimationBackendDispatcherC1ERNS_17BackendDispatcherEPNS_33AnimationBackendDispatcherHandlerE) +STUB( + "kmZYMlIWw2A", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEptEv) +STUB("kmgkMWjAKHk", __asan_load8_noabort) +STUB("kmjU8Gq720s", il2cpp_class_get_name) +STUB("kmrRhT05fEY", ucase_tolower_67) +STUB("kmtWl3mpASc", ucnv_cbFromUWriteBytes_59) +STUB("kmyFhl7Dijo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE5clearEv) +STUB("kmzNbhlkddA", _ZNSt13basic_filebufIwSt11char_traitsIwEE5imbueERKSt6locale) +STUB("kn+-1UeKBjk", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request13GetPlayedWithC2Ev) +STUB( + "kn+46oQ3bjU", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_17ActivityFeedStoryENS1_15AppSTLAllocatorIS5_EEEED1Ev) +STUB("kn-J1L2j+Nw", uloc_getISO3Language_67) +STUB("kn-rKRB0pfY", _ZnamSt11align_val_t) +STUB("kn0-k32rPJE", _ZNK3sce7Toolkit2NP9Utilities10FutureImpl8hasErrorEv) +STUB("kn0yiYeExgA", ldexpf) +STUB("kn1yesLMf-Y", mono_store_remote_field) +STUB( + "kn3kgFMMM0Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEED2Ev) +STUB("kn3vBOTg-ok", sceShellCoreUtilGetHidConfigFileInfoString) +STUB("kn48WAHAZFs", mono_aot_System_ServiceModel_Internalsunbox_trampoline_addresses) +STUB("kn5tI0VFTVY", sceCompositorSetMemoryCommand) +STUB( + "kn6tyJ3sm5Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEC1EPS8_) +STUB("kn9uqn2FTiE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEEC2EPNS2_10LibContextE) +STUB( + "knIfjchZ0ZY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEixEm) +STUB( + "knOY+Qj2gvg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEE5resetEPS6_) +STUB("knPtjtHAlek", sceFaceTrackerRegisterLostTargetCallback) +STUB("knTIGoyO+iQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEEeqERKS7_) +STUB( + "knVw0sdelnc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE17getNpWebApi2ReqIdEv) +STUB("knX2cGAmdW8", _ZN7WebCore18PlatformPasteboardC1Ev) +STUB("knYA790Sgto", _ZN9Inspector26DatabaseFrontendDispatcherC1ERNS_14FrontendRouterE) +STUB( + "knf0Vwzh5do", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "knfu2iPM6i8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEneERKS9_) +STUB( + "knhIFJY1SZQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEEaSERKSA_) +STUB( + "knkdAywtmes", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEEC1ERKSF_) +STUB("knmEFpLg-Rk", sceOpusDecGetSize) +STUB("knn61ftyz0k", GCC_except_table116) +STUB( + "kno1XAOPpJY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("knrcu8CFvhw", _ZNK7WebCore14FrameSelection36rootEditableElementOrDocumentElementEv) +STUB("kntFpAbDN0w", _ZN10Deprecated25ScriptCallArgumentHandler14appendArgumentEj) +STUB("knyIhlkpLgE", sceHmdReprojectionSetUserEventEnd) +STUB( + "ko-sVohgFlQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEC2EPS8_) +STUB( + "ko5Qlzdc5HM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEixEm) +STUB( + "ko8wlXdFykA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEptEv) +STUB("koAZPUgpi4M", mono_btls_x509_store_ctx_verify_cert) +STUB( + "koBHavtzJn8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEdeEv) +STUB("koBbCMvOKWw", sceNgs2SystemCreate) +STUB("koKFfS8dL4k", setenv_np) +STUB("koKKV5asYps", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE4sizeEv) +STUB("koLfx+JR4pU", _ZN7WebCore15AsyncFileStreamC2ERNS_16FileStreamClientE) +STUB( + "koMk15VWOvU", + _ZThn16_N9Inspector21InspectorRuntimeAgent24getDisplayablePropertiesERN3WTF6StringERKS2_PKbRNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime18PropertyDescriptorEEENS1_13DumbPtrTraitsISE_EEEERNS8_INSA_INSC_26InternalPropertyDescriptorEEENSF_ISK_EEEE) +STUB("koU-Duc1F-0", sceNpManagerIntIsServerMaintenanceError) +STUB("koazg-62JMk", _ZGVNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE) +STUB("kobKeMRfvys", Java_java_lang_Thread_registerNatives) +STUB( + "kogrc7vlYN4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE7popBackEv) +STUB( + "koySkABJbnU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE10setContextEPNS2_10LibContextE) +STUB( + "kozHtJZ1kws", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE10setContextEPNS2_10LibContextE) +STUB("kozdUl5szDE", _ZN7WebCore18TextureMapperLayer17removeAllChildrenEv) +STUB("kozqEeuRwrk", sceShellCoreUtilStopOptimization) +STUB("kp30-C563l8", sceClAudiodecTermLibrary) +STUB( + "kp7Oa4zQ3Ew", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEmmEi) +STUB( + "kp7ZbeTwzGw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEEC2ERSA_) +STUB( + "kp9fC8hcLeA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEEC2ERS9_) +STUB("kpUkwWsPLN0", mono_aot_Sce_Vsh_VideoRecordingWrapperunwind_info) +STUB( + "kpYgbdbpqLY", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEEiRNS2_10LibContextEPT_m) +STUB("kpb4-WlsEhs", utrie2_cloneAsThawed_67) +STUB( + "kpbW7Dr44Gc", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC1Ev) +STUB("kpdWM-W53PQ", _ZN7WebCore21DiagnosticLoggingKeys28exceededActiveMemoryLimitKeyEv) +STUB("kpgJyMtodvw", mono_aot_Sce_Vsh_Gls_GlsSharedMediaViewjit_got) +STUB( + "kpgU5oSdSYI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "kpjkRdlqpmw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEptEv) +STUB("kplVgPllUrk", bin_find) +STUB("kpnMR40PGE4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEEC1ERKS9_) +STUB("kppdpNaVtxw", uhash_open_67) +STUB( + "kptF2evQRM4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "kpuwbB4byXQ", + _ZN9Inspector14InjectedScript19evaluateOnCallFrameERN3WTF6StringEN3JSC7JSValueERKS2_S7_S7_bbbbRNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISB_EEEERbRSt8optionalIiE) +STUB( + "kpz+eN70pIs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEC1ERKS7_) +STUB("kpzrc1VedVs", uhash_hashIChars) +STUB("kpztzg+fzhw", _ZNK3sce2Np9CppWebApi14SessionManager2V110FromMember6toJsonERNS_4Json5ValueEb) +STUB( + "kq2oJOgGs3w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE5clearEv) +STUB( + "kq86LGo9yI4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEneERKS9_) +STUB("kq8SYlloMAw", usearch_handleNextExact_67) +STUB("kqBstEK8Nn8", sceVideoCoreGetStreamUid) +STUB( + "kqExEByzgMU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "kqHqa0Ju19c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEppEv) +STUB("kqK-S56CL9s", _ZN7WebCore16SQLiteFileSystem22computeHashForFileNameERKN3WTF6StringE) +STUB("kqLrJ5z+rxE", WKMediaCacheManagerClearCacheForAllHostnames) +STUB( + "kqM8V1EJAiM", + _ZN3sce7Toolkit2NP7Ranking9Interface18displayRanksByNpIdEPKNS1_15NpIdListRequestEPNS1_9Utilities6FutureINS1_23NpIdListRankInformationEEEb) +STUB("kqP+QHW4KXs", _ZN7WebCore10FloatPointC1ERKNS_8IntPointE) +STUB( + "kqQ-H0EzWEw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEmmEi) +STUB("kqQjq+fMXLo", GCC_except_table335) +STUB( + "kqWe7aTtVYE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEmmEv) +STUB("kqXuuyPGr3c", _ZN4Manx11RunLoopImpl4initEv) +STUB( + "kqal+0xJiSg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("kqcVtm9p8GE", + _ZN9Inspector21InjectedScriptManager19injectedScriptIdForEPN3JSC14JSGlobalObjectE) +STUB("kqkr5AY93fY", sceIduUtilSetSettingInt) +STUB( + "kqtacCdymX4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "kr2iJeFE+Vk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEE7get_refEv) +STUB("kr5ph+wVAtU", _ZSt6ignore) +STUB( + "kr6HI1xnl70", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEED2Ev) +STUB("krBpSS9Z+Rg", _ZTVN9Inspector33AnimationBackendDispatcherHandlerE) +STUB("krChT8KBUDU", sceVideodec2QueryHevcDecoderMemoryInfo) +STUB( + "krEWshsVMDk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEC2EPKS8_) +STUB( + "krIPfyJpZlo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE7popBackEv) +STUB( + "krPNcnL9SyY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEE3getEv) +STUB("krUQA-ec99c", _ULx86_64_dwarf_eval_expr) +STUB("krVAAE+xcQQ", mono_aot_Sce_Vsh_Accessor_Db_Notifyunwind_info) +STUB("krVmAIa9W-0", WKBundleRemoveUserStyleSheets) +STUB("krX3uZpoV3c", _ZNK7WebCore11XPathResult11stringValueEv) +STUB("kre8qoDioWg", ucal_getMillis_67) +STUB( + "krjrCsiVyBQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEE11get_deleterEv) +STUB("krlgjuxfe2I", _ZN7WebCore13GraphicsLayer17distributeOpacityEf) +STUB("krmpDWakBqA", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer10hasuseFreeEv) +STUB("kroxOU831V4", OpenClosedCaptionSettings) +STUB("krrTlkR7akk", _ZN3sce7Toolkit2NP2V210Tournament7Request15EventTypeFilterC2Ev) +STUB("krshE4JAE6M", _ZN10__cxxabiv117__pbase_type_infoD2Ev) +STUB( + "krui00sspeg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("ks-oUmKz2CI", GCC_except_table14) +STUB("ks4vjG1O3Aw", xmlParseChunk) +STUB( + "ks6QL8WiEK0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEdeEv) +STUB("ks8CU+q+J20", _ZN8meta_gen14ImageRetriever14SetTextSortKeyESsi) +STUB( + "ks8Cp6OqO34", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("ksB78CcT0mg", _ZNK7WebCore22DefaultFilterOperation15representedTypeEv) +STUB( + "ksHRN6fY8X0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEC1EPNS2_10LibContextE) +STUB("ksIBN+9hdXw", sceApplicationSystemSuspend2) +STUB( + "ksJ3V5rsn7M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE7reserveEi) +STUB("ksMirNKqiKM", _ZNK3sce7Toolkit2NP9Utilities6FutureI18SceNpTssDataStatusE3getEv) +STUB("ksNM8H72JHg", _ZGVNSt10moneypunctIwLb1EE2idE) +STUB("ksNeDQDIyIU", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus6toJsonERNS_4Json5ValueEb) +STUB("ksNkQK4kg2U", _ZN3sce7Toolkit2NP10IdDatabaseC1ERKNS1_9NpTitleIdEPKc) +STUB( + "ksQTJKz3Dbc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEEptEv) +STUB("ksUJCL0Hq20", sceUserServiceSetSaveDataAutoUpload) +STUB("ksaADiEohY4", _ZN3sce2Np9CppWebApi13InGameCatalog2V59ContainerD2Ev) +STUB("ksasnjlGoTM", _ZN7WebCore16VisibleSelectionC1ERKNS_5RangeENS_9EAffinityEb) +STUB("kscSo79gOHU", + _ZN3sce7Toolkit2NP2V28Presence7Request19LocalizedGameStatus30MAX_SIZE_LOCALIZED_GAME_STATUSE) +STUB( + "ksgIzXQuB0c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE7popBackEv) +STUB("kslGRG0HVL4", + _ZN15AbstractStorage13TwitterFolderC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) +STUB( + "kslp+YtRpBQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEEC1ERSA_) +STUB( + "kslw2Td4CO4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEC2EPNS2_10LibContextE) +STUB("ksmy+WdnC+8", _ZN3sce3Xml3Dom4NodeD2Ev) +STUB("ksn0O9Iilb0", sceHttp2WebSocketSendDataMessageAsync) +STUB("ksob5bCcVKc", _ZN3sce7Toolkit2NP2V28Matching4DataC1Ev) +STUB( + "ksu2XXY7JfE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("ksz-6azjsVc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEEptEv) +STUB("kt+k6jegYZ8", sceNpTusGetMultiUserDataStatusAAsync) +STUB("kt0dKNO1b3Y", monoeg_g_list_find) +STUB( + "kt6OY9y7BeI", + _ZN9Inspector20DOMBackendDispatcher17markUndoableStateElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("ktD2w3D4G2U", sceAudiodecCpuQueryMemSize) +STUB( + "ktFyZH-u2Ew", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEEptEv) +STUB("ktGKgTDt-nU", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo9terminateEv) +STUB( + "ktJAEw2hiQU", + _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities17hasacceptLanguageEv) +STUB("ktKMmXn1R7c", _ZN7WebCore15AffineTransformC1Ev) +STUB("ktNYwXrO-hA", _ZN7WebCore15JSDOMWindowBase22supportsRichSourceInfoEPKN3JSC14JSGlobalObjectE) +STUB("ktP9j1fN-zE", sceVideoOutConfigureOptionsInitialize_) +STUB("ktR6aarrlXI", mono_aot_ReactNative_Debug_DevSupportplt_end) +STUB( + "ktXIyy11-Fo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEC1Ev) +STUB("ktb6iOBLnd4", + _ZN3sce2np3ipc17ServiceIpmiClient20BeginRequestForAsyncEiiPN4IPMI6Client12EventNotifeeE) +STUB("ktcE8i5tv3E", mono_aot_Sce_Vsh_Accessor_Db_Notifyjit_code_start) +STUB("ktcZgVXGigg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEEC1ERS5_) +STUB( + "ktdSlpnUBDg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEEcvbEv) +STUB("ktdp5iauPQc", sceAudioOutSysConfigureOutput) +STUB( + "ktlSt6Q7rHs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEEaSERKSA_) +STUB("ku+u4aJbTns", _ZN9Inspector17ScriptDebugServer22clearBreakpointActionsEv) +STUB( + "ku-kKEgwmxk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEmmEi) +STUB( + "ku0qH7X7YX8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEE7add_refEv) +STUB("ku3qEJ+KNEc", _ZN3sce7Toolkit2NP2V212ActivityFeed4FeedC1ERKS4_) +STUB("ku7D4q1Y9PI", poll) +STUB( + "ku8PCx5FST0", + _ZN3sce2Np9CppWebApi7Matches2V126RequestInGameRosterFactory7destroyEPNS3_19RequestInGameRosterE) +STUB("ku8lWRpthiU", _ZNK3WTF6String5splitEDs) +STUB("kuAFKlN25xY", YGConfigGetInstanceCount) +STUB("kuBF9-t2oT4", unum_setTextAttribute_59) +STUB("kuE1uTiWfuk", sceAgcDriverSysGetClientNumber) +STUB("kuErIHXWIpc", sceShellCoreUtilGetNeedSizeOfAppContent) +STUB("kuPwUklPej4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE8copyFromERKS7_) +STUB( + "kuQ7c8DNR84", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEppEi) +STUB("kuQNntOuMPk", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V113MmrPropertiesC2EPNS1_6Common10LibContextE) +STUB( + "kuUHnPAumFU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEED2Ev) +STUB( + "kuhxreoy+H4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEEaSERKSA_) +STUB( + "kujoCs6ej2g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEE5resetEPS8_) +STUB( + "kukjIZe5zOg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE8copyFromERKS9_) +STUB("kulnUIBjFeI", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed12SharedVideosEE19setCustomReturnCodeEi) +STUB( + "kulyvFSaYaQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEdeEv) +STUB( + "kuolAbZWipc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB( + "kuqvJHi+Lrk", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_18SessionInformationENS1_15AppSTLAllocatorIS5_EEEEC1Ev) +STUB( + "kurUAgsclLU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEE5resetEPS6_) +STUB( + "kuvmwSEOq7E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEC2ERKS8_) +STUB( + "kuwa+g3ryMw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB("kuwjK93kyMY", GCC_except_table84) +STUB("kuwpvpIwSXU", WKBundleNodeHandleGetHTMLInputElementAutoFillButtonEnabled) +STUB( + "kuxRw87ymHo", + _ZN3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyD1Ev) +STUB( + "kuz+nI3VKNQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE21intrusive_ptr_add_refEPS9_) +STUB("kv1zkA+6TOA", ucnv_isAmbiguous) +STUB("kv4eZtyYbl4", _ZN3JSC12GetterSetter6s_infoE) +STUB("kv4kgdjswN0", sceLibcPafMspaceGetFooterValue) +STUB( + "kv8j9yOGxS0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEC1EPKS8_) +STUB( + "kvCqpXzznZY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "kvDyiYtT0+4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("kvEP5-KOG1U", _WPrintf) +STUB("kvKr7MWgCMI", _ZN3WTF14FileSystemImpl14MappedFileDataC2ERKNS_6StringENS0_14MappedFileModeERb) +STUB( + "kvRhepqSNE4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE5clearEv) +STUB("kvU1aLZ+1oc", sceCesRefersUcsProfileCp437) +STUB("kvYEw2lBndk", sceGameLiveStreamingInitialize) +STUB("kvdMF48mB3Y", sceNpBandwidthTestAbort) +STUB( + "kveJxId5X4s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEEC1Ev) +STUB("kvemsBD8L0I", _ZN7WebCore13endOfSentenceERKNS_15VisiblePositionE) +STUB( + "kvlDRs5wvYs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEEdeEv) +STUB("kvnGh1p+TiE", u_getNumericValue_67) +STUB("kvqg376KsJo", _ZTv0_n24_NSoD1Ev) +STUB( + "kvuhXA6WNro", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEptEv) +STUB( + "kvxi1JBufA0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEC2EPS6_PNS2_10LibContextE) +STUB("kvytIh2V46s", sceNetApctlRestart) +STUB("kw-FTaZzJoU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEEptEv) +STUB("kw59dRqXXMg", _ZN3JSC16JSStringIterator6s_infoE) +STUB("kw6QT8E9nKg", _ZN23sceMetadataReaderWriter13ParserManager16_unloadLruParserEv) +STUB( + "kw9gX1MDRx4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("kwAnRLn8YcY", getwd) +STUB("kwELJE1qN0o", sceDbgSetHardwareBreakPoint) +STUB("kwEeiXCFuLg", sceCesRefersUcsProfileIso8859_7) +STUB("kwFVQthiupI", _ZN15AbstractStorage15FacebookStorageD0Ev) +STUB("kwGyyjohI50", sceKernelGetEventData) +STUB("kwKBptlN1OA", + _ZN3WTF13MetaAllocator7releaseERKNS_6LockerINS_4LockEEERNS_19MetaAllocatorHandleE) +STUB( + "kwMKWjGQHg8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "kwTL0bn1TGM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEEneERKS7_) +STUB("kwW5qddf+Lo", _sceNpHeapMalloc) +STUB( + "kwXPGvtlgjY", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEED2Ev) +STUB("kwXohh9KV+M", _ZN7WebCore9HTMLNames16onafterprintAttrE) +STUB("kwYsxmyDsvU", _ZNK7WebCore13HitTestResult11targetFrameEv) +STUB("kwfAtQcWQMY", ucnv_countAliases) +STUB("kwfkc-A3KhQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEC2Ev) +STUB( + "kwg-oLBRBWg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "kwp-0uidHpw", + _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8get_dateES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm) +STUB( + "kwqEgK8z8L8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEC2Ev) +STUB("kwrN3bDhOUs", + _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession21unsetUsePlayerSessionEv) +STUB("kx3Hhnn-ZoU", WKKeyValueStorageManagerGetTypeID) +STUB("kx5wMyKoFKw", _ZN3JSC7Symbols27isStringIteratorPrivateNameE) +STUB("kx72wGECgnA", _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody13unsetTicketIdEv) +STUB("kx8N+M4IIvY", + _ZN3sce2Np9CppWebApi14SessionManager2V131JoinedPlayerSessionWithPlatform14unsetSessionIdEv) +STUB("kx93xV8ys+o", _ZN3sce2np18HttpConnectionPoolC1EP14SceNpAllocator) +STUB( + "kxIC6eRMnYw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("kxSDaGFEHkI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEED2Ev) +STUB( + "kxT4HQZBQKg", + _ZN7WebCore14DocumentLoader22sendCSPViolationReportEONS_3URLEON3WTF3RefINS_8FormDataENS3_13DumbPtrTraitsIS5_EEEE) +STUB("kxU0H1cKegg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEEplEm) +STUB("kxXCvcat1cM", _ZNSt8ios_base4InitD1Ev) +STUB( + "kxe334lTqjU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEC2EPS8_) +STUB("kxm0z4T5mMI", fileno_unlocked) +STUB("kxmCA67rtog", sqlite3_create_collation_v2) +STUB("kxq4vh5obmQ", utf8_prevCharSafeBody) +STUB( + "kxrCVK6MV0c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEEaSERSA_) +STUB("kxuIic9ejsg", _ZN7WebCore22EmptyFrameLoaderClient31transitionToCommittedForNewPageEv) +STUB("kxvEd8ksM7s", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIlEeqERKS4_) +STUB("kxvsg8MG-r8", _ZN7WebCore18PlatformPasteboardC2Ev) +STUB("kxvtq9aAT98", _ZN3NTF17URLRequestJobImplD0Ev) +STUB("kxw+42XLqFU", scePerfPmcNbSetCounter) +STUB( + "kxy96v7m-4c", + _ZN9Inspector15ScriptCallStack6createERN3WTF6VectorINS_15ScriptCallFrameELm0ENS1_15CrashOnOverflowELm16EEE) +STUB( + "kxyhAR28Fi0", + _ZN7WebCore13JSHTMLElement6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_11HTMLElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB("kxz+m8I8ulo", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V15Owner13onlineIdIsSetEv) +STUB("kxz41JdmEx0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS25AtomicAddToAndGetVariableEE3setEv) +STUB("kxzokJHZ2nY", _ZN3sce7Toolkit2NP2V24Core12ResponseBase14getServerErrorEv) +STUB("ky0keBcpiTk", WKPageUpdateWebsitePolicies) +STUB( + "ky61N2r3SBs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE7popBackEv) +STUB("ky81tAjbOXw", _ZN3JSC7Symbols16splitPrivateNameE) +STUB("kyD9gotkDX0", _ZN3sce7Toolkit2NP20ChallengeSendRequestC1Ev) +STUB("kyFOaxSaP0A", sceShellCoreUtilGetAppLaunchedParamIntByBudgetType) +STUB("kyGmfmhB6S8", _ZN7WebCore21WheelEventTestMonitor14deferForReasonEPKvNS0_11DeferReasonE) +STUB("kyHOMHwSpHg", _ZN3sce2np10Cancelable12IsCancelableEv) +STUB("kyJAMd8GRHU", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V111LeaveReasonEEmmEv) +STUB("kyKiXG-dCyc", sceSpNetSocket) +STUB("kyKrw-g1sl4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V510AnnotationEEaSERKS7_) +STUB( + "kyPAhmep5Yk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEC2EPS6_PNS2_10LibContextE) +STUB("kyf-GqSLmwg", _ZThn24_N9Inspector18InspectorHeapAgentD1Ev) +STUB("kyfuY2YfrwA", _ZN9Inspector20InjectedScriptModuleC2ERKN3WTF6StringE) +STUB("kygzx9Bkhbg", sceAvControlSetVideoOutSource) +STUB("kyifJypWYrM", sceKernelSetKnobs) +STUB( + "kypf43W3kX4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "kyrKwneZI8A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEEcvbEv) +STUB("kyuyHN1mRis", _ZN3sce2np10JsonObjectD1Ev) +STUB("kyxGUg-7TOA", sceIduUtilGetOpenPsId) +STUB("kyyI+gLshKQ", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils12Notification15UserStateChangeEE3getEv) +STUB("kyzH1+Z17jI", GCC_except_table549) +STUB( + "kyzi08xywDk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE3endEv) +STUB( + "kz+bpOIJc3w", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEdeEv) +STUB("kz+c9gSdnWM", _ZN7WebCore20ResourceLoadObserver14notifyObserverEv) +STUB("kz0u8JBsADc", mono_property_hash_destroy) +STUB("kz2Z38yTLq0", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUserC1Ev) +STUB( + "kz5-equUTu8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEEC1Ev) +STUB( + "kz6uHuM4tUU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEE7get_refEv) +STUB("kz9bGYFvopY", sceCesUcs2StrGetMbcsLen) +STUB( + "kz9y3urH6ac", + _ZN3sce7Toolkit2NP2V212NetworkUtils22getDetailedNetworkInfoERKNS3_7Request22GetDetailedNetworkInfoEPNS2_4Core8ResponseINS3_16NetStateDetailedEEE) +STUB("kzCQl5OvCew", _ZN7WebCore8SVGNames17flood_opacityAttrE) +STUB( + "kzEq1Rlsavs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEaSERKS9_) +STUB( + "kzIJxGnYqVQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("kzNHu6Ylg0M", _ZN7WebCore11MathMLNames20superscriptshiftAttrE) +STUB("kzP8wjZhZNA", _ZN7WebCore16MIMETypeRegistry19isXMLEntityMIMETypeEN3WTF10StringViewE) +STUB("kzWL2iOsv0E", _ZN10__cxxabiv123__fundamental_type_infoD1Ev) +STUB( + "kzYDWVK95Zk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB("kzfj-YSkW7w", _ZTIPKDs) +STUB( + "kzlYwHj8xiU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEEC1ERKSA_) +STUB("kzlo+KCKmPw", + _ZN9Inspector17BackendDispatcher9getStringEPN3WTF8JSONImpl6ObjectERKNS1_6StringEPb) +STUB("kzr7Kl2pfys", _ZNK3sce2Np9CppWebApi11UserProfile2V15Error14getReferenceIdEv) +STUB( + "kztrwy5ID1w", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE4sizeEv) +STUB( + "kzuPqSTNbfs", + _ZN3sce2Np9CppWebApi7Matches2V125ResponseCompetitiveResult16setPlayerResultsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_21ResponsePlayerResultsEEEEE) +STUB("kzut6ECIRLY", _ZN3WTF28numberToFixedPrecisionStringEdjRSt5arrayIcLm123EEb) +STUB( + "l+-VwnhxsIw", + _ZN3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession23setPlayerJoinableStatusERKNS3_20PlayerJoinableStatusE) +STUB("l+-nGnREYlk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEC2Ev) +STUB( + "l+1k9zV1GR0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEppEi) +STUB( + "l+5bBTgTwrY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB( + "l+5wfN+yytI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEC2Ev) +STUB("l+5xqb1rpOM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE8capacityEv) +STUB("l+AE4U5jOo0", mono_btls_x509_name_peek_name) +STUB("l+EnasCRj9M", WKKeyValueStorageManagerDeleteAllEntries) +STUB( + "l+GTrvt0wN4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEC1EPS8_) +STUB("l+HrV8hb4IU", _ZN4Manx11MediaPlayerD2Ev) +STUB( + "l+KSzhfZ2QM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEE5resetEPS9_) +STUB("l+OspgT++TA", _ZNK7WebCore13MIMETypeCache7isEmptyEv) +STUB( + "l+QAHBbdaLI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB( + "l+S-i0x3tGA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE6resizeEj) +STUB("l+Ug1Xfqhxw", _ZN3sce2Np9CppWebApi15Personalization2V15ErrorC1EPNS1_6Common10LibContextE) +STUB("l+bG5fsYkhg", pthread_rwlockattr_gettype_np) +STUB("l+dKhCxtRHc", sceDepthTerminate) +STUB( + "l+f2xHT8NFo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "l+iQvsXrm2c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEEC2ERKSA_) +STUB("l+ifOLSZlos", __asan_print_accumulated_stats) +STUB( + "l+jwdC0jGRA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE6insertENS2_13ConstIteratorIS9_EERKS9_RSC_) +STUB("l+m1KoYn430", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessionsC2ERS5_) +STUB( + "l+mjribjLgs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "l+mlERjuzP0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEEdeEv) +STUB( + "l+pXjFCsK-s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEED1Ev) +STUB( + "l+rY+7lzSFo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEE7add_refEv) +STUB("l+tHGNrR7X8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEC2ERKS7_) +STUB("l+wN2XJ965U", Java_java_awt_GnmToolkit_sync) +STUB("l-6l96B8x4M", _ZN3sce2Np9CppWebApi14SessionManager2V134PostGameSessionsSearchResponseBodyD2Ev) +STUB( + "l-7BIcL5RsQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("l-BM32tjzqY", + _ZN7WebCore20LegacySchemeRegistry34shouldLoadURLSchemeAsEmptyDocumentERKN3WTF6StringE) +STUB("l-BZxjiRsjM", _ZN3sce7Toolkit2NP22GetSharedVideosRequestC1Ev) +STUB("l-HE9Ui7Jck", _ZN7WebCore22SkewTransformOperationC1EddNS_18TransformOperation13OperationTypeE) +STUB( + "l-NAMrnzkVw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEEaSERKSA_) +STUB("l-NrXOC-Z4o", _ZN7WebCore18JSHTMLImageElementC2ERKS0_) +STUB("l-QHxzJvQok", _ZN7WebCore7Element12setAttributeERKN3WTF12AtomicStringES4_) +STUB( + "l-TNO5sLZQw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE5beginEv) +STUB( + "l-XcadfEQ7w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEE11get_deleterEv) +STUB("l-YAMXAxUq4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEE11release_refEv) +STUB("l-ackmrDncM", _ZNK3sce2Np9CppWebApi7Matches2V114ResponseMember11getPlayerIdEv) +STUB("l-cZLdtVXds", sceAudiodReportMasteringSetParams) +STUB( + "l-lkYRziJq4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEE11get_deleterEv) +STUB( + "l-nV8kVl6mg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEC2EPKS8_) +STUB("l-nl-3BV8nw", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate9getGlobalEv) +STUB( + "l-tNS5Qosas", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE5eraseENS2_8IteratorIS6_EERS9_) +STUB( + "l-vndn4cD2g", + _ZN3JSC8evaluateEPNS_14JSGlobalObjectERKNS_10SourceCodeENS_7JSValueERN3WTF8NakedPtrINS_9ExceptionEEE) +STUB( + "l-xwCyMxSPQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEC1Ev) +STUB("l-zbaxNzruE", sceKernelHwHasOpticalOut) +STUB("l0-MeBL0BNI", sceNpUniversalDataSystemIntNetSyncTitles) +STUB("l01GKoyiQrY", sceImeDicDeleteLearnDics) +STUB( + "l02mfNJJhgM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEixEm) +STUB("l0BjESUy1rE", mono_btls_x509_name_get_raw_data) +STUB("l0Ca3nIU1yA", + _ZN7WebCore15UserInputBridge11loadRequestEONS_16FrameLoadRequestENS_11InputSourceE) +STUB("l0GNH5s-e8U", WKPreferencesGetSpatialNavigationEnabled) +STUB("l0Hmd0lFea8", WKURLRequestCopyFirstPartyForCookies) +STUB( + "l0Ig4txpz-s", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("l0Jxfl0DEdo", sceAgcDriverSetTargetRingForDiag) +STUB("l0T2th-xyx8", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats24matchCompletionRateIsSetEv) +STUB( + "l0Z0NQiqr3M", + _ZN3WTF16addSignalHandlerENS_6SignalEONS_8FunctionIFNS_12SignalActionES0_RNS_7SigInfoERNS_17PlatformRegistersEEEE) +STUB( + "l0atiOpfhWY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "l0clJSZwzQg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEppEi) +STUB( + "l0ie+0FqPCI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEED2Ev) +STUB("l0m6NQu1XF0", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V113SubtaskStatusEEdeEv) +STUB( + "l0nLhJ6D8y8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEC1Ev) +STUB("l0qC0BR1F44", __fixunsxfti) +STUB("l0u3R-ORT-Q", + _ZN7bmalloc29StaticPerProcessStorageTraitsINS_13IsoSharedHeapEE7Storage8s_objectE) +STUB("l0ylL4nYg8Q", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEED1Ev) +STUB( + "l0zyhXHj-7g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEED2Ev) +STUB("l18DIPdfHnU", _ZN7WebCore9HTMLNames26onwebkitwillrevealleftAttrE) +STUB( + "l1BUFZQgZic", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEEaSERKSA_) +STUB( + "l1BjMJ6Db9w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEE7add_refEv) +STUB( + "l1FktHjHtxU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("l1FueUsdBrc", _ZN3JSC13iteratorValueEPNS_9ExecStateENS_7JSValueE) +STUB("l1GgDnAh9WE", _ZN7WebCore9HTMLNames11rowspanAttrE) +STUB( + "l1K0i72XtfY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEdeEv) +STUB("l1NmDeDpNGU", sceSaveDataInitialize2) +STUB("l1PGm+V7-TU", sceAvSettingSetAudioOutModeInvalid_) +STUB("l1PatT2jaok", glCopyBufferSubData) +STUB( + "l1R5eJgjwys", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB( + "l1TKRZndxe4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE7reserveEi) +STUB("l1URiQJlSoU", _ZN3sce4Json5Value9serializeERNS0_6StringEPFiS3_PvES4_) +STUB("l1WyTQmrAXo", mono_exception_from_name_msg) +STUB( + "l1XHqZ1MhCM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("l1XKH6CiQVM", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container16descriptionIsSetEv) +STUB("l1XmBaP5k6w", WKContextSetPlugInAutoStartOriginsFilteringOutEntriesAddedAfterTime) +STUB( + "l1ZcUieyjls", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("l1dzHWw0l8k", _ZN3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferReadD2Ev) +STUB("l1hXwscLuCY", sceVideodec2Flush) +STUB("l1jdfF3GX8Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V112TicketStatusEEaSERKS7_) +STUB("l1sUyuVKflQ", ucol_prepareShortStringOpen_67) +STUB("l1wz5R6cIxE", __popcountti2) +STUB("l22TAIbbtFw", sceShellCoreUtilSetSharePlayStatus) +STUB( + "l22aiCQV8jY", + _ZN7WebCore21NetworkStorageSession31setThirdPartyCookieBlockingModeENS_28ThirdPartyCookieBlockingModeE) +STUB( + "l22h2hByscI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEaSERKS9_) +STUB("l240XTbw2vk", FcFreeTypeCharIndex) +STUB("l29UO6Oj0ds", sceSpPthreadMutexattrSetprioceiling) +STUB("l2IqM94JOLY", g_markup_parse_context_free) +STUB( + "l2K+FX6zZfw", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEEiRNS2_10LibContextEPT_m) +STUB("l2MwSlp+Lwg", ucase_getTypeOrIgnorable_67) +STUB("l2OSdYe9Olc", _ZN7WebCore9HTMLNames8highAttrE) +STUB("l2Oh22F8lQ8", _ZN3sce2Np9CppWebApi6Common13ConstIteratorImE21intrusive_ptr_sub_refEPS4_) +STUB("l2PpmDhlib0", rgctx_fetch_trampoline_rgctx_88) +STUB("l2Q5JMr5TMs", _ZN3sce7Toolkit2NP2V212EventsClient6EventsD1Ev) +STUB("l2TDYxIsVCE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE5beginEv) +STUB("l2UvA4F2i+w", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE8capacityEv) +STUB("l2WwqVEtWh8", run) +STUB("l2i71yxGuxM", ucal_getLocaleByType_67) +STUB("l2ow4NmEiZY", + _ZN3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator16unsetCustomData1Ev) +STUB( + "l2oxj+E2rQg", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi15recordLargeDataEiRKNS4_26ParameterToRecordLargeDataERNS1_6Common19UpStreamTransactionINS8_12IntrusivePtrINS3_27RecordLargeDataResponseBodyEEENSA_INS4_30RecordLargeDataResponseHeadersEEEEE) +STUB("l2u7IHkNheg", sceVencSetPictureConfig) +STUB("l2uU8ExHgjY", _ZN3NTF3URL7setHostERKSs) +STUB( + "l2vlEZYiZNU", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeaderC1ERS5_) +STUB( + "l2zfJG1Cj24", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE8copyFromERKS9_) +STUB( + "l3-83fvIqvM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("l33jN8bqpfs", _ZN9Inspector17BackendDispatcherD2Ev) +STUB( + "l34wZRXth1A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEppEv) +STUB( + "l36IRuRC24Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEC1ERS7_) +STUB("l36UM64Z+i4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody11unsetOffsetEv) +STUB("l38mnl6RPOc", uloc_getAvailable_67) +STUB("l3AOURv-MWU", scePlayReadyDomainCertFind) +STUB("l3EArnZr6-8", WKWebsiteDataStoreSetUseITPDatabase) +STUB( + "l3HJk2ZSNgA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEC1Ev) +STUB("l3LUyryX1Iw", WKPreferencesSetAttachmentElementEnabled) +STUB( + "l3Opx0hfWNI", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "l3PKQGIS998", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEppEi) +STUB( + "l3Uzoh7BOE4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEE7add_refEv) +STUB("l3bNSfEnyzI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEEaSERS9_) +STUB("l3dG7h4TlLg", sceNpPushRegisterNotificationExCallback) +STUB("l3dTrDsh3EE", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18GameCustomDataItemEEC1ERKS4_) +STUB("l3dw8imUbLM", sceAvSettingIsSupportedAudioOutModeByHdmiMonitorInfo) +STUB("l3fh3QW0Tss", scalbnl) +STUB( + "l3h8Bxp7WiU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("l3n0-PPodGM", _ZN3sce2Np9CppWebApi14SessionManager2V129PostPlayerSessionsRequestBodyD1Ev) +STUB( + "l3nSbTE2fcs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEEptEv) +STUB( + "l3wwGXbmTg0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE10setContextEPNS2_10LibContextE) +STUB( + "l3y-c+O-KWA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEppEv) +STUB("l4+4zbGnDz8", _ZNK3sce2Np9CppWebApi15ProfanityFilter2V224TestForProfanityResponse9getStatusEv) +STUB("l40o1x0xhxw", unumsys_openAvailableNames_67) +STUB("l48M+Tp3fAs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEixEm) +STUB( + "l4EJkiteV0w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEE5resetEPS8_) +STUB("l4FB3wNa-Ac", sceSystemServiceLaunchApp) +STUB( + "l4K6mr9TfKs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEE7get_refEv) +STUB("l4MwGYKc07A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEaSERKS7_) +STUB("l4OVTpJCyQI", sceFiosUpdateParameters) +STUB("l4Q2dWEH6UM", sceNgs2SystemSetGrainSamples) +STUB("l4SLBpKUDK4", sceRudpBind) +STUB("l4SyDs6698w", mono_aot_System_Threading_Tasksplt_end) +STUB( + "l4VOpGZ58fQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEEcvbEv) +STUB("l4XJEowv580", sceFontGraphicsUndefineIndexedVertexesGlyphAll) +STUB( + "l4XaVWMclS8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEmmEv) +STUB("l4ZCWwdqXko", WKPageRubberBandsAtBottom) +STUB("l4azYkX86Ds", FT_Get_Gasp) +STUB("l4b7Y+yU9WE", mono_aot_Sce_Vsh_ShellUIUtilWrapperjit_code_end) +STUB("l4f-fpk3yrw", _ZN7WebCore9HTMLNames8labelTagE) +STUB("l4fM9K-Lyks", sceAgcDcbSetIndexBuffer) +STUB( + "l4nTLLl7Ma4", + _ZN7WebCore16BlobRegistryImpl20createResourceHandleERKNS_15ResourceRequestEPNS_20ResourceHandleClientE) +STUB( + "l4o-iBkSznE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEEC1Ev) +STUB("l4rCDU4H2Ew", WKDatabaseManagerDeleteDatabasesWithNameForOrigin) +STUB("l4sQYy5wPkc", sceVdecswTrySyncDecodeInput) +STUB("l4ux3xYxvEQ", _ZN3sce2Np9CppWebApi6Common13ParameterBase22unSetWebtraceTagHeaderEv) +STUB( + "l4vckqKKAzQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEEaSERKSA_) +STUB( + "l4y9FeLnyKw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("l50cntT7awI", _ZN12video_parser13cVideoPathMgvD0Ev) +STUB( + "l51oDgEuI7E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEppEv) +STUB("l55oKq6zmrA", FT_Get_Advances) +STUB("l5FnLbE1-sM", _ZN7WebCore15AsyncFileStreamdlEPv) +STUB("l5I7W9xFlsQ", _ZN3sce3pss4core5audio11SoundPlayer16PauseSurroundPanEd) +STUB("l5JzEGDSvhk", WKBundlePageListenForLayoutMilestones) +STUB("l5Kt5zwZ6Uk", uhash_setKeyHasher) +STUB("l5PHWe0v-gQ", mono_btls_ssl_ctx_set_min_version) +STUB( + "l5QP+S8T5+U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEC1ERS7_) +STUB("l5SkPv2i+f8", sceNpManagerIntGetUserInfo) +STUB( + "l5TNObvSKAw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEC2EPS8_) +STUB("l5UOn8bITyY", + _ZN3WTF8JSONImpl10ObjectBase8asObjectERNS_6RefPtrINS0_6ObjectENS_13DumbPtrTraitsIS3_EEEE) +STUB( + "l5XveyNM2q4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEED2Ev) +STUB("l5bdg4tUTGc", sceShellCoreUtilClearAppData) +STUB("l5gNvkTijQs", __atomic_is_lock_free_internal) +STUB( + "l5hGu7L3w+g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEE7add_refEv) +STUB("l5je6+KYkZQ", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEEmmEi) +STUB("l5pXZRBkjeA", _ZN7WebCore4FileC2ERKN3WTF6StringE) +STUB("l5pZq9+Hw68", _ZN3sce7Toolkit2NP2V26Trophy7Request23DisplayTrophyListDialogD1Ev) +STUB("l5q0L2fFbDg", _ZN4Manx21DisplayRefreshMonitor5startEi) +STUB("l5qMgwcStrs", _ZN7WebCore6Editor26toggleOverwriteModeEnabledEv) +STUB("l6+buTEAciE", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEEptEv) +STUB( + "l64r5lMeLbo", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities19unsetacceptLanguageEv) +STUB( + "l65XBDfPqrI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEE11release_refEv) +STUB("l66OdRYSk2w", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesD1Ev) +STUB("l67qBmMmKP4", sceNpBase64Decoder) +STUB("l6Cf9rb9fZQ", FT_Outline_Embolden) +STUB("l6Dl+2zlua0", sceNpAppInfoIntInitialize) +STUB( + "l6Gt5AF3ug8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEE5resetEPS9_) +STUB("l6Km2sY3UyM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEED1Ev) +STUB( + "l6LdsHNPH84", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("l6PkF6pKhrI", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V16StatusEEmmEv) +STUB("l6RswpAwdFw", _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody11unsetOffsetEv) +STUB("l6Xjhl0uTyI", _ZN3WTF3URL7setPortENS_8OptionalItEE) +STUB( + "l6ZH44VHJ6s", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEeqERKSA_) +STUB("l6aA787njwE", sceFsDeviceAlignedPwrite) +STUB( + "l6f7t6ZU-Mc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEptEv) +STUB( + "l6fu4d6fLPo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB( + "l6jMZVpYYLs", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyC1EPNS1_6Common10LibContextE) +STUB("l6nNtVHY-6I", _ZN3sce7Toolkit2NP2V23TUS7Request20GetFriendsDataStatusC1Ev) +STUB( + "l6pOrzn6E4o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEC1EPS8_) +STUB("l6s7aomzWGA", _ZN3sce2np20BufferedStreamReaderC2EP16SceNpAllocatorEx) +STUB( + "l6teWsU-DiA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEdeEv) +STUB( + "l70aSx+MTn4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEneERKS9_) +STUB( + "l70b0plLk0g", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead15setNonPsnLeaderERKNS1_6Common12IntrusivePtrINS3_12NonPsnLeaderEEE) +STUB( + "l73wVRuUJ0M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEdeEv) +STUB("l7Am6d7QKnE", _ZN9Inspector30WorkerBackendDispatcherHandlerD1Ev) +STUB( + "l7FaTnbBF8A", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE4sizeEv) +STUB("l7GEYs5PMVU", hb_face_create_for_tables) +STUB("l7I7qVZUsXE", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIiEC1Ev) +STUB("l7Lj6F5gBo0", WKPreferencesGetSelectTrailingWhitespaceEnabled) +STUB("l7OtvplI42U", _ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2ERKSt8_Locinfom) +STUB( + "l7PyG5PcNFs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE6resizeEj) +STUB( + "l7ROfx0mtFE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEC1EPS8_) +STUB( + "l7ZUMUx8LI4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEplEm) +STUB( + "l7epMVw9c50", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE3endEv) +STUB("l7fyzOUIgsY", Java_java_lang_Double_doubleToLongBits) +STUB("l7oQ33rm9TI", scePlayerSelectionDialogGetStatus) +STUB("l7tjlKrFezQ", delegate_virtual_invoke_imt_14_p) +STUB("l86FQ6EHbYs", _ZN3sce2Np9CppWebApi7Matches2V14Task9setStatusERKNS3_10TaskStatusE) +STUB("l8Ffoe6XPUE", _ZN3sce7Toolkit2NP2V28Matching7Request15GetRoomPingTimeC2Ev) +STUB( + "l8POlcvpHA0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEE7add_refEv) +STUB("l8UKHjO29+w", _ZN3WTF14SymbolRegistryD2Ev) +STUB( + "l8WkoExH6tU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEplEm) +STUB("l8gsEeVfp+s", WKUserContentExtensionStoreLookup) +STUB( + "l8nPDH524UM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB("l8pC3YBA6DM", _ZN3sce7Toolkit2NP2V24Auth7IdTokenC2ERKS4_) +STUB("l8vw5ia8Wac", sceVideoStreamingEngineMediaKeySessionGetSessionId) +STUB( + "l8w20UDvE2k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("l9+8m2X7wOE", sceFontGraphicsGetVertexesGlyphScale) +STUB("l9-IHLI27ls", YGAlignToString) +STUB( + "l90zl6E9TLA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEmmEi) +STUB("l96YlUEtMPk", sceShellCoreUtilSetDeviceIndexBehavior) +STUB( + "l98LEgEHLHg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE5beginEv) +STUB( + "l9AYAALdaQE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("l9F5EWFI+Nw", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE5beginEv) +STUB( + "l9KCXvU-V2Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEppEi) +STUB( + "l9KpWdtuZ0E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "l9O328JWtfs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "l9P3M+PJL1I", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEptEv) +STUB("l9R+MR9+Zic", mono_btls_error_peek_error_line) +STUB("l9XLBgtKouw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEE3getEv) +STUB( + "l9YP-MpqdbA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEE11release_refEv) +STUB( + "l9ZaB7dnwyg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEE7get_refEv) +STUB( + "l9fcq89Tm48", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEEaSERKSA_) +STUB( + "l9fhsWH6a+Y", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE5beginEv) +STUB("l9kqixNsNq4", _ZN3WTF20ObjectIdentifierBase36generateThreadSafeIdentifierInternalEv) +STUB("l9mr8GfO80k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEEC1EPS5_PNS2_10LibContextE) +STUB("l9nuY5Wn5+c", _ZN7WebCore10FileHandleC1Ev) +STUB("l9uYEtKBIQA", _ZNK7WebCore6Editor16compositionRangeEv) +STUB("l9zev-ybPNs", sceVisionManagerLoadSettings) +STUB("lA+PfiZ-S5A", _ZNSt8messagesIcE2idE) +STUB( + "lA2Lycz6ugQ", + _ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody14setCustomData1EPKvm) +STUB( + "lA2TvyOxJwY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEE11release_refEv) +STUB("lA6gNiTQKx4", rgctx_fetch_trampoline_mrgctx_109_p) +STUB("lA94ZgT+vMM", __isnanf) +STUB("lA9AH3d2f18", _ZN7WebCore18JSHTMLVideoElementD1Ev) +STUB( + "lADNoO++5h8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEEC2EPS8_PNS2_10LibContextE) +STUB("lAEbTbSUTTo", cairo_glyph_free) +STUB("lAFKNV82Fds", _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead13getSearchableEv) +STUB("lAFXMCX8wJc", _ZN3sce3pss4core8graphics14NativeGraphics19AllocateVideoMemoryEjjPv) +STUB("lAIOtUCPCdo", WKContextSetInitializationUserDataForInjectedBundle) +STUB("lAP5qcLE2TA", _ZN7WebCore6JSFile6s_infoE) +STUB("lAPQNiI456E", u_foldCase_59) +STUB( + "lAPvXkjM4Q0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEppEv) +STUB( + "lAQNlXsq4j8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEcvbEv) +STUB("lAR1nkEoMBo", sceUserServiceSetJapaneseInputType) +STUB( + "lAWwzPHmdic", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEE7get_refEv) +STUB("lAa689pKyF0", + _ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession21usePlayerSessionIsSetEv) +STUB("lAh2teRHzLU", sceDepthHeadCandidateDetectorGetResults) +STUB("lAhThwzQI2c", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11SessionDataEE5resetEv) +STUB("lAikj8EfcJg", sceFiosIOFilterCache) +STUB("lAjyQIYAXrU", u_strcpy_67) +STUB("lAmzaKZD31c", monoeg_g_ptr_array_sort) +STUB( + "lAnD8skouYE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEppEi) +STUB("lAoFUedcfqA", sceHmd2GazeGetResult) +STUB("lAq0egJxrXU", _ZN3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsersC2Ev) +STUB("lAr0v8+qd7U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEC1Ev) +STUB("lAvSrKAjxCA", sceShellCoreUtilGetBasicProductShape) +STUB("lAvVjQST+d8", mono_aot_System_Runtime_Serializationjit_got) +STUB( + "lAxJ90p8oOs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "lB+9xPdyNVM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "lB+aop1edwE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEC2Ev) +STUB( + "lB1pCVdiP+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEC1ERS7_) +STUB("lB2n5USANfs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEC2Ev) +STUB( + "lB3OQHmB82o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEC1EPS6_PNS2_10LibContextE) +STUB("lB4tTNqJXKw", WKWebsiteDataStoreSetStatisticsSubresourceUniqueRedirectFrom) +STUB( + "lB6XC4KslCk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEEC1EPS6_) +STUB("lB85GtGGA4c", fuse_fs_opendir) +STUB("lB8driFKaoU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEED1Ev) +STUB( + "lBCMrylxWvc", + _ZN9Inspector18InjectedScriptBase12makeEvalCallERN3WTF6StringERN10Deprecated18ScriptFunctionCallERNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISA_EEEERbRSt8optionalIiE) +STUB( + "lBH0QZwmUzo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEE3getEv) +STUB("lBIwQbS4ypc", _ZN3sce7Toolkit2NP2V212ActivityFeed12SharedVideosaSERKS4_) +STUB("lBL1TXHngws", _ZN7WebCore16VisitedLinkStore23invalidateStylesForLinkEm) +STUB( + "lBNDcqqDgOU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEC2EPNS2_10LibContextE) +STUB("lBQLHeUqi7A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEED2Ev) +STUB( + "lBSUdtsCA4s", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE3endEv) +STUB( + "lBWQ6DzunHs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEmmEi) +STUB("lBZXCkgB5u0", _ZN3sce2np10JsonNumber3SetEi) +STUB("lBbX3vR+Cho", _ZN7WebCore16MIMETypeRegistry32getPreferredExtensionForMIMETypeERKN3WTF6StringE) +STUB("lBffLlW78Yw", _ZN3sce7Toolkit2NP2V210Tournament5MatchD2Ev) +STUB("lBoIgUKNzig", _ZNSt15basic_streambufIcSt11char_traitsIcEE4syncEv) +STUB( + "lBpPW+BsHcs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEE6assignEPSA_PFvSC_EPNS2_10LibContextE) +STUB( + "lBqm4VjzqRY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEE7add_refEv) +STUB("lBspXX0lI0E", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE7popBackEv) +STUB( + "lBtT4ZlACCw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("lBtrk+7lk14", sceNpTssCreateNpTitleCtxA) +STUB( + "lBwddc6ZsIo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEcvbEv) +STUB( + "lBzdQpWarWU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEC2EPS8_) +STUB("lBzkcotvWZw", Java_com_sony_bdjstack_javax_media_controls_VideoSystem_setScreenDeviceVisible) +STUB("lC2+-6XMW38", _ZN7WebCore12SettingsBase26setMinimumDOMTimerIntervalEN3WTF7SecondsE) +STUB( + "lC3LXOGYURw", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations12setaccountIdEPKc) +STUB("lC5PrZi8XSE", _ZN7WebCore13CSSStyleSheet10deleteRuleEj) +STUB( + "lC6NyPIlPns", + _ZN7WebCore22CryptoAlgorithmAES_CBC15platformDecryptERKNS_30CryptoAlgorithmAesCbcCfbParamsERKNS_12CryptoKeyAESERKN3WTF6VectorIhLm0ENS7_15CrashOnOverflowELm16ENS7_10FastMallocEEENS0_7PaddingE) +STUB("lC7MnJ6yDFk", _ZN3sce7Toolkit2NP10IdDatabase11addClientIdEPKc) +STUB("lC8-7cVnkHA", sceRazorCpuUserSignalWaitBeginEx) +STUB("lCAYAK4kfkc", sceNpIdMapperCreateRequest) +STUB("lCB1AE4xSkE", CERT_getRSASignatureAlgo) +STUB("lCBU-o2Lkl4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEixEm) +STUB("lCEWJBsP78Q", u_strncmp_67) +STUB("lCGFH2R+Ov0", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_16SessionAttributeEE7destroyEPS3_) +STUB("lCLtbKBM05c", + _ZN9Inspector15RemoteInspector19updateTargetListingERKNS_24RemoteControllableTargetE) +STUB("lCMw0PGm9sY", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_23NpSessionInvitationInfoEED2Ev) +STUB( + "lCO6+AGMdhk", + _ZN12video_parser17cVideoProfilerMp417_getVideoCodecMp4ER33ff4_play_visual_sample_entry_infoPvPNS_17VpVideoCodecMP4_tE) +STUB( + "lCOIPCEEStk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEEaSERKSA_) +STUB("lCPe5ijeejQ", _ZN3IPC15ArgumentEncoder18releaseAttachmentsEv) +STUB( + "lCQBclc40Ds", + _ZNK3WTF8JSONImpl10ObjectBase8getArrayERKNS_6StringERNS_6RefPtrINS0_5ArrayENS_13DumbPtrTraitsIS6_EEEE) +STUB("lCTCOogRbk0", sceVideoOutRegisterStereoBuffers) +STUB("lCU9IGT-MN8", xmlSAX2StartDocument) +STUB("lCUIV-jwm70", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE5beginEv) +STUB("lCUPWkgmRRc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V117ResponseMatchTypeEEC2EPS6_) +STUB( + "lCXRjNlzCxg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "lCYLHhCnw48", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEC1ERKS7_) +STUB( + "lCcoeldiMhM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEED1Ev) +STUB("lCd7-DV+3EM", _ZNK7WebCore9FloatQuad13containsPointERKNS_10FloatPointE) +STUB("lChhicC8UxY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEE5resetEPS6_) +STUB("lCp17SqY3Nc", __sys_dl_get_info_2) +STUB("lCqD7oycmIM", sceNgs2RackDestroy) +STUB("lCsbKGwOyKg", Java_java_awt_GnmImage_nativeSetIndexColorModelIntPixels) +STUB("lCslUNMhiFU", mono_aot_System_ServiceModel_Webmethod_addresses) +STUB( + "lCuFFm-3UkU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEC2Ev) +STUB("lCvMwo-DZyo", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountIdD1Ev) +STUB( + "lCxKxpEh+A8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser19unsetnpServiceLabelEv) +STUB("lCxr0mW6QDk", _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEEixEm) +STUB("lD-k3hDhlqA", sceLncUtilResumeApp) +STUB( + "lD8cwyZcc6U", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanity15setserviceLabelEPKc) +STUB("lDA-+kHzyYA", WKPageSetPageResourceLoadClient) +STUB("lDCWWROsrEg", _ZNK3sce2np12NpTitleToken6GetStrEv) +STUB( + "lDD8M-Kr-iY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("lDHc6u04CG4", Java_java_util_zip_Inflater_getAdler) +STUB("lDHe1IWyI1I", mono_aot_Sce_Vsh_Np_Webapijit_got) +STUB("lDHhVVXL4z8", WKBundleFrameCopyLayerTreeAsText) +STUB("lDIOMm81QJk", _ZN7WebCore28InspectorFrontendClientLocal19windowObjectClearedEv) +STUB( + "lDM9Cu30lf8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB("lDOAz8sFzb0", monoeg_g_set_prgname) +STUB("lDOEHo0GFHU", _ZN13MsvMetaEditorC2Ev) +STUB( + "lDPABiK09a0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEmmEi) +STUB( + "lDSyYqZkxvY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEdeEv) +STUB("lDTCbhvh-6w", _ZN8meta_gen11MsvPromoter11setMetadataERN23sceMetadataReaderWriter8MetadataE) +STUB("lDTIbqNs0ps", sceNetControl) +STUB("lDTMNXxNoRg", mono_value_copy) +STUB( + "lDdWV4dG9p8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEE11release_refEv) +STUB( + "lDgiI8eub6o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEED2Ev) +STUB("lDhiBfFwyxY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEaSERS7_) +STUB("lDi+K6BUYUw", _ZN7WebCore9FrameView16setPaintBehaviorEN3WTF9OptionSetINS_13PaintBehaviorEEE) +STUB("lDk+F7Hcvn0", _ZN3sce7Toolkit2NP2V212NetworkUtils16NetStateDetailed8deepCopyERKS4_) +STUB( + "lDkky0GmfPw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE10setContextEPNS2_10LibContextE) +STUB( + "lDlzxNdkc2w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEC2Ev) +STUB( + "lDoDPBNnKcg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEaSERS7_) +STUB( + "lDovlaZcuuk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE5clearEv) +STUB( + "lDpY+gsigho", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToSendPlayerSessionMessage13isInitializedEv) +STUB( + "lDq26Q55lJM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("lDqxaY1UbEo", sceMsgDialogInitialize) +STUB("lDt1EAkv2fc", _ZNK7WebCore7Element9outerHTMLEv) +STUB( + "lDuZ+cXMNX8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEC1EPKS8_) +STUB("lDyNoXL7cQA", mono_error_ok) +STUB("lE2O8vM7keo", _ZN7WebCore11DisplayList6RotateD0Ev) +STUB("lE4k3hlQbZk", sceS3daOpen) +STUB( + "lE68WSOdynM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEC2EPS6_PNS2_10LibContextE) +STUB("lE6JLKJQClE", mono_aot_Sce_Vsh_SessionInvitationmethod_addresses) +STUB("lEAGWAtLplg", __default_entry_point) +STUB( + "lEDAkR-XuKI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEaSERS7_) +STUB( + "lEDQSXTM7ho", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEED2Ev) +STUB("lEIEcYhU2vE", FcFontSetAdd) +STUB("lEIjSr7+QME", scePssSoundSetSurroundPanSpeakerConfig) +STUB("lEJse1SUBf4", _ZN3sce7Toolkit2NP2V28Commerce10CategoriesD2Ev) +STUB("lELUb+ymzQE", _ZN3sce3Xml3Dom8Document11resetStatusEv) +STUB("lEMJBGmSagw", _ZNK7WebCore14CredentialBase11persistenceEv) +STUB( + "lEPYbuYmqbU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEEC2EPSA_PFvSC_EPNS2_10LibContextE) +STUB("lEQRC5UQZDI", WKPreferencesGetIsITPDatabaseEnabled) +STUB( + "lEZfWXrpfek", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB( + "lEfhNDDxdog", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE5emptyEv) +STUB("lEmXzXLNQx0", + _ZN7WebCore21JSRemoteDOMWindowBase22javaScriptRuntimeFlagsEPKN3JSC14JSGlobalObjectE) +STUB( + "lEwgw+yl8Q8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEC2EPS8_) +STUB("lEx31f-KID8", Java_java_util_zip_Inflater_getBytesWritten) +STUB("lEzjLelXvso", utrace_getLevel) +STUB( + "lF00zh8J3fs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE5clearEv) +STUB("lF2dztYeA10", _ZN7WebCore9HTMLNames10hiddenAttrE) +STUB("lF66Anf8kfw", mono_aot_Mono_Securityunbox_trampoline_addresses) +STUB("lF66NEAqanc", _ZTVSt14error_category) +STUB("lF7uqZ+SEkU", utext_setNativeIndex) +STUB("lF96Sr8Jf0s", sceShellCoreUtilReportUnexpectedFatalErrorToSystemTelemetry) +STUB("lFCQlUvt40o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEdeEv) +STUB( + "lFDPFn9SVhg", + _ZN3JSC13JSArrayBuffer6createERNS_2VMEPNS_9StructureEON3WTF6RefPtrINS_11ArrayBufferENS5_13DumbPtrTraitsIS7_EEEE) +STUB("lFJb+BlPK1c", sceNetConfigGetDefaultRoute) +STUB("lFKA8eMU5PA", _ZTSPKDi) +STUB("lFKkS3msC8Y", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getSecondaryVideoFullScreen) +STUB( + "lFLW-8TkVqc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEC2EPS6_PNS2_10LibContextE) +STUB("lFOylbeWySU", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScore10setboardIdEi) +STUB("lFVNuWYTTFs", sceFiosOverlayGetInfo) +STUB("lFXMcLwL2B8", rgctx_fetch_trampoline_rgctx_101_p) +STUB("lFeQ5coHUe4", mono_btls_ssl_ctx_new) +STUB( + "lFehdxmx254", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEE5resetEPS9_) +STUB("lFf3UU811v4", sceKernelIsGenuineDevKit) +STUB("lFiaDeAWrd8", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V15GroupEEC1Ev) +STUB("lFoCvh0UOew", + _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession19setUsePlayerSessionERKb) +STUB("lFwCOUdgf2E", ucnv_fromUChars) +STUB("lG3QAnJi3sk", _ZNK7WebCore11MediaSample16videoPixelFormatEv) +STUB("lG4-fc8Yk9o", udat_unregisterOpener_67) +STUB("lG5K6I9L4rY", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_15CategoryInfoSubENS2_IS4_EEEEeqERKS7_) +STUB( + "lG5rLTfAadc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE21intrusive_ptr_sub_refEPS9_) +STUB("lGAjftanhFs", sceHttpAddRequestHeaderRaw) +STUB("lGCN+nKovw4", jpeg_stdio_src) +STUB( + "lGGxV1wvMfg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("lGIw3qfqI60", _ZN3sce2np13RingBufMemoryC2EP16SceNpAllocatorEx) +STUB("lGJTnZqchvA", glBindRenderbuffer) +STUB("lGJvZ508otk", _ZN22MmsMdCommonFsOperationD2Ev) +STUB( + "lGMGzmOGyCk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEdeEv) +STUB("lGMyJRCsrR0", _ZN3NTF21ResourceRequestLoggerD1Ev) +STUB("lGO-mNz54t8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEEptEv) +STUB("lGPBny04wlI", g_markup_parse_context_parse) +STUB("lGb63PP7XDE", _ZN7WebCore6Editor6indentEv) +STUB( + "lGfcafE1NJo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEixEm) +STUB( + "lGhPVdxbbJE", + _ZN3JSC19ArrayBufferContentsC1EPvjON3WTF6RefPtrINS2_10SharedTaskIFvS1_EEENS2_13DumbPtrTraitsIS6_EEEE) +STUB("lGjyfcI++PY", _ZN3sce2np10MemoryFileD2Ev) +STUB("lGnm5Kg-zpA", sceNpTrophySystemBuildTrophyIconUri) +STUB( + "lGp2LofF+9I", + _ZN7WebCore11DOMRectListC2ERKN3WTF6VectorINS_9FloatQuadELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB( + "lGrJCYtArvg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEED1Ev) +STUB("lGvQ0fjtryI", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V114ResultsVersionEEC2Ev) +STUB("lGvSIGQKLQ8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEE5resetEPS5_) +STUB("lGzRzz4Zp9o", _ZN3sce3Xml3Dom4NodeC1ERKS2_) +STUB( + "lH+wZlEGFSU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEneERKS9_) +STUB("lH-Jz4CjVn4", Java_java_lang_reflect_Array_getChar) +STUB("lH57wXDczHk", _ZN15AbstractStorage15HttpTransaction4TermEv) +STUB("lH5InBJyeXY", YGNodeStyleGetFlexWrap) +STUB("lH79sVvHpzo", WKPreferencesGetInspectorAdditionsEnabled) +STUB("lH87l00Fyq0", _ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest17getExpirationTimeEv) +STUB("lH8Wr22Poz0", + _ZN7WebCore17NowPlayingManager17setNowPlayingInfoERNS0_6ClientEONS_14NowPlayingInfoE) +STUB("lHCWCYQW5lc", _ZN7WebCore16VisibleSelectionC1ERKNS_8PositionES3_NS_9EAffinityEb) +STUB( + "lHDCJKobbxo", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("lHDcj3s06Lo", _ZN7WebCore24DocumentMarkerController18addTextMatchMarkerEPKNS_5RangeEb) +STUB("lHGGE+Ubycs", SSL_up_ref) +STUB("lHJpwV5i29M", _ZN7Nicosia5Scene5StateC1Ev) +STUB("lHKLprulT24", sceFiosGetAllDHs) +STUB( + "lHQMAVDRdf8", + _ZN7WebCore14FrameSelection6moveToERKNS_15VisiblePositionENS_14EUserTriggeredENS0_19CursorAlignOnScrollE) +STUB( + "lHQoQMCcpDU", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData24getxPsnAtomicOperationIdEv) +STUB("lHRazILohDQ", _ZNK7WebCore9FrameTree16traversePreviousENS_7CanWrapEPNS_7DidWrapE) +STUB("lHTcSjAnKdI", sceFaceDetection) +STUB("lHUwkXPfq68", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEEC2ERKS7_) +STUB( + "lHjWO0vjWtg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEixEm) +STUB("lHn8JVVdX6Y", _ZN11GvMp4Parser6Common11Utf16ToUtf8EPKwPSs) +STUB( + "lHsfdlodoW0", + _ZN3sce2Np9CppWebApi14SessionManager2V127GetGameSessionsResponseBody15setGameSessionsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_18GameSessionForReadEEEEE) +STUB( + "lHvIe3zakog", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE5beginEv) +STUB( + "lHzpZTlqHg0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE8copyFromERKS9_) +STUB("lI+RrjiDMjU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEEC2EPKS6_) +STUB( + "lI2otc5PumY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE8copyFromERKS9_) +STUB("lI2pfmqtRYg", _ZN7WebCore14SQLiteDatabase4openERKN3WTF6StringEb) +STUB("lI5aPC+BayY", _ZSt9use_facetISt7collateIwEERKT_RKSt6locale) +STUB( + "lI5iBlSzh+A", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE23clearOnFinishedCallbackEv) +STUB("lI9bqGKPlac", + _ZN7WebCore32throwArgumentMustBeFunctionErrorERN3JSC9ExecStateERNS0_10ThrowScopeEjPKcS6_S6_) +STUB("lI9iaIkgrCI", _ZN7WebCore16HTMLInputElement6stepUpEi) +STUB( + "lIH+pR7rtZI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEixEm) +STUB("lIIc7tHGmOE", _ZN3sce7Toolkit2NP2V29Challenge7Request16ConsumeChallengeC1Ev) +STUB( + "lIJwSJzFHGo", + _ZN3sce7Toolkit2NP10Challenges9Interface12sendResponseEPKNS1_24ChallengeResponseRequestEPNS1_9Utilities6FutureINS1_21NotifyChallengeResultEEEb) +STUB( + "lIKkIuSFBFQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "lIMMWVXyDQU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEED2Ev) +STUB("lIRrBaNU-ZI", _sceNpHeapReallocImpl) +STUB("lIb8Z1dZrZ8", _ZN3JSC8Bindings13RuntimeObjectC2ERKS1_) +STUB( + "lIcu6kYtGtQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEppEi) +STUB("lIdCmqcLfN8", Java_sun_awt_GnmUtils_bdjbgTest) +STUB("lIjfS8+da-M", g_PS4PushNotifications) +STUB( + "lIr4Xg565UQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEplEm) +STUB( + "lIunPkkDpZk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEED1Ev) +STUB("lIw5lVusKXQ", sceKernelGetKnobs) +STUB("lIxp9rrgDNk", _ZN3sce7Toolkit2NP2V212ActivityFeed11SharedVideoD2Ev) +STUB("lJ2Efd9PUKI", _ZN3sce2np10CancelLock5BeginEPNS0_6HandleEPKciS5_) +STUB( + "lJ3w1fkalI0", + _ZN9Inspector24ConsoleBackendDispatcher6createERNS_17BackendDispatcherEPNS_31ConsoleBackendDispatcherHandlerE) +STUB("lJ47ObrVU3s", _ZN3sce7Toolkit2NP2V27Ranking7Request11SetGameDataC2Ev) +STUB("lJ9tgYF09zg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEED1Ev) +STUB("lJDQ+cqzH9U", mono_aot_Mono_Data_Tdsunbox_trampolines_end) +STUB( + "lJDc38BPsWc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB( + "lJJYzJC7DDQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEppEv) +STUB("lJPCM50sdTc", _ZTVSt24_Iostream_error_category) +STUB("lJS0-tSESD0", _ZN3sce7Toolkit2NP2V210Tournament27TeamVsTeamTournamentDetailsC2Ev) +STUB( + "lJShrv7ZPBw", + _ZN8meta_gen11MsvPromoter26setKeyValue_TBLV_AccountIdENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB( + "lJT1GzPehRs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE3endEv) +STUB("lJUQuaKqoKY", sceSaveDataDeleteTransactionResource) +STUB( + "lJduRkg1tBQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEC1ERKS7_) +STUB("lJhs-zI+A50", WKAuthenticationChallengeGetDecisionListener) +STUB("lJnP-cn0cvQ", _ZTVSt8numpunctIcE) +STUB( + "lJnbLwj8PVI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEEC2ERSA_) +STUB("lJnlBuCoi7w", mono_reflection_type_get_type) +STUB("lJsvpm4XjtM", mono_image_init) +STUB("lJuu35VxkFY", sceFsUfsRecryptBlocks) +STUB("lJvKp35od0A", _ZN7WebCore15startOfDocumentEPKNS_4NodeE) +STUB("lJxMIwj81SQ", FT_Set_Pixel_Sizes) +STUB("lJxTpIpgTtg", isobmf_box_getdiskoffset) +STUB("lJxveZjlORU", _ZN9Inspector17ScriptDebugServer16dispatchDidPauseEPNS_19ScriptDebugListenerE) +STUB( + "lK+xNG5wPuE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEC1Ev) +STUB("lK8dLBNp9OE", sceGameLiveStreamingGetCurrentStatus2) +STUB( + "lK9nzNzGtBQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEdeEv) +STUB("lKEN2IebgJ0", longjmp) +STUB( + "lKIXbMe9I68", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEaSERKS7_) +STUB("lKNrpnUxwhc", _ZN23sceMetadataReaderWriter22StorageParserInfoTableC2EjPi) +STUB("lKXBdPZC5Ds", mono_aot_System_Runtimejit_code_start) +STUB( + "lKXM3MeMhro", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEC2ERS7_) +STUB( + "lKb-ZDBqrjw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEC1EPKS8_) +STUB( + "lKctc5pfx2c", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetInteger2Ev) +STUB("lKdJElWrIwM", _ZN7WebCore23CoordinatedImageBacking28getCoordinatedImageBackingIDERNS_5ImageE) +STUB("lKfKm6INOpQ", _ZSt10unexpectedv) +STUB("lKfctLchxNs", AsyncStorageGetItemNative) +STUB("lKgkI3GzBZs", WKPreferencesSetNeedsSiteSpecificQuirks) +STUB( + "lKhz9SVAuxU", + _ZN3sce2Np9CppWebApi14SessionManager2V121RepresentativeFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_14RepresentativeEEE) +STUB("lKkmDgJOlGo", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEED2Ev) +STUB( + "lKneoJBI48s", + _ZN3sce2Np9CppWebApi14SessionManager2V125GameSessionForReadFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_18GameSessionForReadEEE) +STUB( + "lKopxPXf420", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "lKouS2zS1xY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEE21intrusive_ptr_add_refEPS7_) +STUB("lKrU+Hgdiyg", _ZThn24_N9Inspector28InspectorScriptProfilerAgent18willEvaluateScriptEv) +STUB( + "lKujEUzY6so", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEEC1ERKSA_) +STUB("lKxuL-PBHeU", _ZN7WebCore11MathMLNames10rspaceAttrE) +STUB("lKyAvVz10f4", _ZN7WebCore19ResourceRequestBase18setHTTPHeaderFieldERKN3WTF6StringES4_) +STUB( + "lKyY5eL58cI", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions25hasusePlayerSessionFilterEv) +STUB("lL+Z3zCKNTs", sceNpTssGetSmallStorage) +STUB("lL3-BLIbi-I", _ZN3sce7Toolkit2NP2V210Tournament15TeamVsTeamMatchC2ERKS4_) +STUB("lL3m7lGCZyk", _ZN3sce2Np9CppWebApi6Common6String8copyFromERKS3_) +STUB("lL4NUMgUVgU", uhash_igeti_67) +STUB( + "lL6z7R+aeGg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEE7add_refEv) +STUB("lL7d8xyua-4", s11) +STUB("lL7pzhQAzK8", u_vparseMessage_67) +STUB("lLCJHnERWYo", sceFontGraphicsCanvasClearPreprocess) +STUB("lLDCzLM1pqE", _ZN3sce2Np9CppWebApi6Common8IteratorIiEC1Ev) +STUB( + "lLG4bzOp6Ec", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE5emptyEv) +STUB( + "lLIsIihcD7o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEE3getEv) +STUB( + "lLLBkhCm0Bw", + _ZNK7WebCore12ChromeClient38shouldUnavailablePluginMessageBeButtonENS_20RenderEmbeddedObject26PluginUnavailabilityReasonE) +STUB("lLLYkMNAA4A", _ZN7WebCore11DisplayList23FillRectWithRoundedHoleD0Ev) +STUB("lLMT9vJAck0", clock_gettime) +STUB( + "lLPA61Rc8rQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEixEm) +STUB( + "lLQ2+uRqfAI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE4sizeEv) +STUB("lLQkvk3me0E", _ZN7WebCore14FrameSelectionC2EPNS_8DocumentE) +STUB( + "lLUy02Mje30", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE4sizeEv) +STUB("lLXYAAuqw7U", _ZTV9MmsMp4Box) +STUB("lLbOUEEQeWE", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEEptEv) +STUB("lLbv0f9D-uw", sceClAudiodecInitLibrary) +STUB("lLkJVewQK68", sceVoiceEnableChat) +STUB("lLmv0IK5UNk", uprv_decNumberToIntegralExact_67) +STUB( + "lLo8R8mUOC8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEppEv) +STUB( + "lLpgyq5S3HA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEneERKS9_) +STUB("lLqb2+WF-5I", rgctx_fetch_trampoline_rgctx_95_p) +STUB( + "lM-oWg+rVp4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEC2EPNS2_10LibContextE) +STUB( + "lM9Nv++4XXM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEE3getEv) +STUB( + "lMAVGjEDw6U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEC1EPS8_) +STUB("lMGV4bOhOx8", sqlite3_finalize) +STUB( + "lMMu6rq428g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEC2EPNS2_10LibContextE) +STUB("lMOEb2HagU0", uldn_scriptCodeDisplayName_67) +STUB( + "lMZkNDjIIqY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEC1EPKS8_) +STUB( + "lMdyP3SDLps", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEptEv) +STUB( + "lMe8kMtBLPg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEdeEv) +STUB( + "lMfEZ-YjLkM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEppEi) +STUB("lMh7fSzSU7E", utrie2_set32_67) +STUB("lMj-sBhWc6c", _ZN7WebCore34contextMenuItemTagDefaultDirectionEv) +STUB("lMjMXS2Ez0M", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities26GetUsersActivitiesResponse8getUsersEv) +STUB("lMjUdn4xQqk", _ZN9Inspector27LayerTreeFrontendDispatcherdaEPv) +STUB("lMrwZQepm+4", rgctx_fetch_trampoline_rgctx_5_p) +STUB("lMvgbDe+KpM", __asan_report_exp_store4) +STUB("lN+0mEFqERo", _ZN10MonoDomain7GetRootEv) +STUB("lN+8Q-cBYXQ", X509_STORE_add_crl) +STUB( + "lN63l-XK8AE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEixEm) +STUB("lN7Gk-p9u78", sceGnmSetSpiEnableSqCountersForUnitInstance) +STUB("lNAJstgvTDI", _ZN7WebCore22EmptyFrameLoaderClient15finishedLoadingEPNS_14DocumentLoaderE) +STUB("lNAevSjQZfY", ucnv_getCompleteUnicodeSet_67) +STUB( + "lNAsvvTRilM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEplEm) +STUB("lNHNe-Ae8Vs", _ZN7WebCore11JSImageDataaSERKS0_) +STUB( + "lNI3BaI52Og", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEC2ERS7_) +STUB("lNLfrD76AdE", ures_openFillIn_67) +STUB("lNMaLXFQN9w", _ZNK3WTF8JSONImpl5Value6isNullEv) +STUB("lNPpoUVElSA", u_charDigitValue) +STUB("lNTTjqQXkf4", _ZN7WebCore19InspectorController12didCompositeERNS_5FrameE) +STUB("lNZ3n4I2ifo", _ZN3JSC21getInt8ArrayClassInfoEv) +STUB("lNi53JL+QIw", WKWebsiteDataStoreConfigurationCopyNetworkCacheDirectory) +STUB("lNicIEursI4", + _ZN3JSC23JSModuleNamespaceObject10putByIndexEPNS_6JSCellEPNS_14JSGlobalObjectEjNS_7JSValueEb) +STUB("lNjmEkGC4iM", udat_setCalendar_67) +STUB( + "lNkIhJuCBno", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "lNm-WGxrjHU", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayer13isInitializedEv) +STUB("lNnUqa1zA-M", sceFontGlyphGetScalePixel) +STUB("lNs-oTKpG9s", _ZThn8_N3sce2np10MemoryFileD1Ev) +STUB("lNsGKaylgnA", utrace_setLevel_67) +STUB( + "lNy6-V-+U54", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE7reserveEi) +STUB("lO+DtQrVJiw", _ZNK7WebCore17CredentialStorage22originsWithCredentialsEv) +STUB( + "lO+q1bUO9u4", + _ZN3JSC8JSObject13putInlineSlowEPNS_9ExecStateENS_12PropertyNameENS_7JSValueERNS_15PutPropertySlotE) +STUB("lO01m-JcDqM", cbrtl) +STUB("lO2rp0uakfM", WKDictionaryGetTypeID) +STUB( + "lO3zZblfbms", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEEptEv) +STUB( + "lO4lOBN8t+s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEEC2ERKS9_) +STUB("lO5WE1I+3-c", _ZN3sce3Xml3Dom8NodeList10insertLastENS1_6NodeIdE) +STUB( + "lO9P+gI1HqA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "lOD28qKtAbQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEE7get_refEv) +STUB("lOF5jrFNZUA", _ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2Em) +STUB( + "lOFLsPXy7IY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEeqERKS9_) +STUB("lOFTLo+dG3Y", _ZNK3WTF3URL14fileSystemPathEv) +STUB("lOG4PfA3zAs", UDataMemory_setData_67) +STUB( + "lOJa7htNIa0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEixEm) +STUB("lOKJd85Bu7U", _ZNK7WebCore22SkewTransformOperation6angleXEv) +STUB("lOKOxhz6Uxw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE8copyFromERKS7_) +STUB("lOR+Nos+Je8", sceVideoOutDriverDeleteEvent) +STUB( + "lOUXqXBz47Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("lOUpCGTt7Z4", _ZN3sce7Toolkit2NP2V28Commerce23ServiceEntitlementLabelD2Ev) +STUB("lOVQnEJEzvY", _Tss_get) +STUB( + "lOYAf1Ryu8w", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEEcvbEv) +STUB("lOYH420riKo", JSObjectGetPropertyAtIndex) +STUB("lOYHtoUcJD4", sceAgcDriverSubmitToHDRScopesACQ) +STUB("lOZmPXxNoYY", mono_type_get_class) +STUB("lOdjgI4XArs", _ZNK3sce2np14JsonObjectImpl8GetFieldEi) +STUB("lOeyzHrWy68", _ZN3sce7Toolkit2NP2V28Matching6MemberaSERKS4_) +STUB("lOfduYnjgbo", sceFontStyleFrameGetEffectSlant) +STUB("lOh+IAEXMU0", _ZN4Manx13WorkQueueImpl6wakeUpEv) +STUB("lOi2xW4VGvE", _ZN7WebCore4Page22resumeAllMediaPlaybackEv) +STUB("lOitg3BrGSw", sceUpsrvSetFakeVersion) +STUB("lOu80DpEwGo", monoeg_g_str_has_suffix) +STUB("lOvHI++z4Z4", _ZN7WebCore15hasAnyPlainTextERKNS_5RangeEt) +STUB( + "lOviM+t3Sw4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE5beginEv) +STUB( + "lP5OFcGJPnE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE3endEv) +STUB( + "lP5lf2ptfVI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEE7get_refEv) +STUB("lP6QEEoBVqE", sceDebugGetJobManagerSequenceList) +STUB("lP9bRJMj0GU", sceFiosFHGetOpenParams) +STUB("lP9zfrhtpBc", _FRecip) +STUB("lPAMjFZEpt8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEC1ERS7_) +STUB( + "lPDJJNvqvPM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("lPDO62PpJIA", sceNpEntitlementAccessGetSkuFlag) +STUB("lPEBYdVX0XQ", sceRtcCheckValid) +STUB("lPHo9QzZK0A", _ZN3sce7Toolkit2NP2V26Trophy17TrophyPackSummary5resetEv) +STUB("lPKKDtEmEgM", ucnv_convertEx) +STUB("lPKlhy6hqfU", _ZN3sce7Toolkit2NP2V28Matching5WorldD2Ev) +STUB("lPLS0qFlY60", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEE7add_refEv) +STUB( + "lPLcRWWjFNk", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V132FrequentlyMutedPropertiesFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_28FrequentlyMutedInGameMetricsEEENS8_INS3_29FrequentlyMutedInPartyMetricsEEEPNS8_INS3_25FrequentlyMutedPropertiesEEE) +STUB("lPNr2mEWUBU", _ZNK7WebCore19ResourceRequestBase10httpOriginEv) +STUB("lPQzOhwPjuw", _ZN3sce2np9RefObjectD1Ev) +STUB("lPSu56iEcdA", _ZN7WebCore17PageConsoleClientC2ERNS_4PageE) +STUB("lPT2iFkMK-M", _ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEED1Ev) +STUB("lPYpsOb9s-I", lgammal) +STUB("lPbaxwlksZM", SwCtrlSinkStreamCancel) +STUB("lPf-b912Gbg", _ZN7WebCore9CaretBase17computeCaretColorERKNS_11RenderStyleEPKNS_4NodeE) +STUB("lPoaOQoIxcY", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_24RegisterGameDataResponseEEC1Ev) +STUB( + "lPqAoelhJnI", + _ZN3sce2Np9CppWebApi14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyC2EPNS1_6Common10LibContextE) +STUB("lPrzNCs0+B4", _ZN7WebCore24CachedResourceHandleBaseC2ERKS0_) +STUB("lPsGHkAb0yM", sceDeci4hDrfpChkInValidUlpHead) +STUB("lPwPDdfX7L8", uhash_openSize) +STUB("lPyvK0d3aXc", ulist_addItemBeginList) +STUB("lQ0HbljpxQA", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIlEppEv) +STUB( + "lQ0k7vFThTk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEE11release_refEv) +STUB("lQ11BpMM4LU", sceNpMutexDestroy) +STUB( + "lQ5ElKf1SDI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEE3getEv) +STUB( + "lQ7+8vb2vx4", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetail10initializeEPNS1_6Common10LibContextEPKc) +STUB("lQ7rWWlOArI", sceCamera2IsValidFrameData) +STUB("lQCVZr1cW8g", NewStringPlatform) +STUB( + "lQHMdtJ9LAA", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE5startEPNS2_10LibContextEm) +STUB("lQOCF84lvzw", sceNpWebApi2SendRequest) +STUB("lQQ-nJpCyqU", _ZNK7WebCore6Editor7canCopyEv) +STUB( + "lQSiG-+O6DU", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE18getResponseHeadersERSB_) +STUB("lQUbnRQ699M", WKFrameInfoCreateFrameHandleRef) +STUB( + "lQWGG+qx1EQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEED2Ev) +STUB("lQXgvDXBGtA", _ZN3sce2np10EventQueueD1Ev) +STUB("lQd8Gb+pKNo", mono_loader_lock) +STUB("lQh55Q8DUAg", sceVideoOutConfigureOutputModeEx_) +STUB( + "lQi3iFX6mf8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEED1Ev) +STUB("lQwRkOw4TaI", + _ZN3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreateC1EPNS1_6Common10LibContextE) +STUB( + "lQwa7mJq+vg", + _ZNK3sce2Np9CppWebApi14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBody6toJsonERNS_4Json5ValueEb) +STUB("lR0xukIgXJs", _ZN7WebCore11MediaPlayernwEmPv) +STUB("lR4yQ2+cnfs", ucnv_reset_59) +STUB( + "lR5a4VfFdQc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE7popBackEv) +STUB("lR66ktNCCG4", sceDevUsbReadCP) +STUB("lR6b+yl6u3c", _ZN7WebCore18TextureMapperLayer16removeFromParentEv) +STUB("lR7fWk-OVI0", + _ZN7WebCore11MessagePort37isExistingMessagePortLocallyReachableERKNS_21MessagePortIdentifierE) +STUB( + "lR9fauFRJyw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEixEm) +STUB("lRFFPidOgTg", _ZNK7bmalloc11IsoTLSEntry6offsetEv) +STUB( + "lRGTr5+KnHY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEC1Ev) +STUB("lRL0zzmbcU0", sceSystemLogger2SetPeripheralConnectionLog) +STUB( + "lRLlqbrwC1g", + _ZN3JSC17profiledConstructEPNS_9ExecStateENS_15ProfilingReasonENS_7JSValueENS_13ConstructTypeERKNS_13ConstructDataERKNS_7ArgListES3_) +STUB( + "lRN7rObDAKw", + _ZN9Inspector21InspectorConsoleAgent9logTimingEPN3JSC14JSGlobalObjectERKN3WTF6StringEONS4_3RefINS_15ScriptArgumentsENS4_13DumbPtrTraitsIS9_EEEE) +STUB("lRNN6cgOimo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEE11release_refEv) +STUB( + "lROD5POCqKg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEEC2Ev) +STUB("lRSUDw0I4qs", mono_aot_Systemmethod_addresses) +STUB("lRXHAc5JwfI", _ZN3JSC7Symbols25fulfillPromisePrivateNameE) +STUB( + "lRZopyj7zU0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE5beginEv) +STUB( + "lRfmpVbllSo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEC2ERS7_) +STUB("lRlQXPSYfTI", WKRenderLayerCopyElementID) +STUB("lRngZXg+OMw", ulocimp_getRegionForSupplementalData) +STUB("lRrzctjunwA", AMDTEE_DLM_StopTADebug) +STUB("lRuxf7+F7Nw", mono_btls_ssl_ctx_set_cert_select_callback) +STUB("lS0tM6n+Q5E", sceCameraSetProcessFocus) +STUB( + "lS1GsSTWKMY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEC1EPS8_) +STUB("lS5X3lpVv9Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEixEm) +STUB( + "lSCTFbuKT8w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEC2Ev) +STUB("lSGEqQCGfbI", WKGeolocationManagerGetTypeID) +STUB( + "lSJYfNEt66M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEaSERKS9_) +STUB("lSPb2EWKGb0", mono_aot_Sce_Vsh_Np_Commonunbox_trampoline_addresses) +STUB( + "lSVQkZM9V6c", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToSendGameSessionMessage12getsessionIdEv) +STUB("lSVTiWV5wLc", sceAudiodecCpuDecode) +STUB("lSaNxHqgrRs", sceDataTransferTargetRequestPwrReq) +STUB("lSd15XqEBAA", _ZN3sce7Toolkit2NP24InviteJoinSessionRequestC2Ev) +STUB("lSe4Oe+76o4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEC1Ev) +STUB( + "lSfM1Z72L2Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEC2EPS8_) +STUB( + "lSh48eYlYv4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("lSlns3bsKAA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE3endEv) +STUB("lSmhCcJC33M", __wrap_lstat) +STUB("lSppkDFatb8", _ZN3JSC4Yarr17RegularExpressionaSERKS1_) +STUB("lSs7T9ncMqA", _ZN3JSC7Symbols18ownKeysPrivateNameE) +STUB("lSxNK9Il2o0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEixEm) +STUB("lSyLI0hhH24", _Z32VideoPlayerVcs_UpdatePlayerStatei) +STUB( + "lSyTqI6BBAY", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE21setOnFinishedCallbackEPFvliSB_PvEPFvliSG_ESG_) +STUB("lSzjYXcFscQ", _ZN7WebCore9HTMLNames17sortdirectionAttrE) +STUB("lT+hm4QHVUI", _ZN3sce3Xml4Attr10initializeEPKNS0_11InitializerE) +STUB( + "lT2ku3p7jNE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE5emptyEv) +STUB("lT4bKLwuA8g", _ZNK3sce2Np9CppWebApi11Matchmaking2V110UserTicket16rulesetNameIsSetEv) +STUB( + "lT5a72FBiv4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEeqERKS9_) +STUB("lT7zcuOXoKo", WKUserContentControllerRemoveAllUserScripts) +STUB("lT9pLsjJ8Ao", _ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error14setReferenceIdEPKc) +STUB("lTEvadIy6RQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V114SearchOperatorEEmmEv) +STUB("lTTrDj5OIwQ", _ZNSoD0Ev) +STUB("lTV7W53O5ss", _ZNK7WebCore13HitTestResult18titleDisplayStringEv) +STUB("lTVL-egrwRw", unorm2_swap_67) +STUB("lTbZuuY7caY", mono_aot_ReactNative_Modules_Vsh_Gct_Telemetry2plt) +STUB( + "lTcyzv91hA8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE5beginEv) +STUB("lTmTt+AaeeM", mono_aot_Mono_Data_Sqliteplt_end) +STUB( + "lTrzM5GsB6k", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_20NpSessionInformationENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB( + "lU0Z9WOHTVg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE3endEv) +STUB("lU9YRFsgwSU", sceSaveDataRestoreBackupData) +STUB("lUHMWrWcowo", + _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBodyC1EPNS1_6Common10LibContextE) +STUB( + "lUIVZer4ibY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEmmEi) +STUB("lUKa4hJWiSY", _ZN3JSC11RegisterSet19calleeSaveRegistersEv) +STUB("lUNDdv7AxtY", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_14TrophyGameInfoEE17getAdditionalInfoEv) +STUB( + "lUNTWKtBZZY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEeqERKS9_) +STUB( + "lUXhDYr4M8E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("lUXyFGSFXKo", _ZN3sce2np4NpIdD0Ev) +STUB("lUYELQFrN8E", _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile23setIsOfficiallyVerifiedERKb) +STUB( + "lUYF1XTZipw", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120MmrPropertiesFactory7destroyEPNS3_13MmrPropertiesE) +STUB("lUa5QQkGSFM", _ZN7WebCore12NamedNodeMap15removeNamedItemERKN3WTF12AtomicStringE) +STUB("lUbUtCi+rG4", _ZL14init_ext_mutexv) +STUB("lUk6wrGXyMw", recvfrom) +STUB("lUll+GkX6ug", _ZN7WebCore9HTMLNames14aria_levelAttrE) +STUB( + "lUnwldMIM7w", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB("lUoqwTQu4Go", sceUserServiceGetUserColor) +STUB( + "lUpnTp3nBtU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEE21intrusive_ptr_add_refEPS6_) +STUB("lUsG1QfgVN4", _ZThn8_N3sce2np6HandleD1Ev) +STUB( + "lUwK30oKhOk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEneERKS9_) +STUB("lV+M4ace0Ts", _ZN7WebCore9GLContextdlEPv) +STUB("lV-Abz4vIac", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEE7add_refEv) +STUB("lV1DFblPQFo", mono_aot_Mono_Dynamic_Interpreterplt) +STUB( + "lV4-707KDTY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEEC1ERKS9_) +STUB("lV4BZtnzeHc", _ZN23sceMetadataReaderWriter7StorageC2EjPi) +STUB( + "lV5KK7PjfxA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEC2EPNS2_10LibContextE) +STUB("lV5XniySQD8", sceVideoDecoderArbitrationEnableSuspendMode) +STUB("lV71GenMZQM", _ZNK7WebCore7Element13hasAttributesEv) +STUB( + "lV8n5yhgEwc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEptEv) +STUB("lVCj8zsZ-Ro", g_dir_rewind) +STUB("lVEcKN4IKM0", _ZN7WebCore9HTMLNames20aria_orientationAttrE) +STUB( + "lVMHpO3I0b4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("lVSR5ftvNag", sceFontCharactersRefersTextCodes) +STUB( + "lVZ9BStvUgE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("lValmqLB7VI", uprv_decContextTestStatus_67) +STUB( + "lVeqb1+uEeI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEC2EPNS2_10LibContextE) +STUB("lVp4Qn0bUX8", + _ZN3sce2Np9CppWebApi7Matches2V120RequestPlayerResults8fromJsonERKNS_4Json5ValueE) +STUB( + "lVrbZRE+8zo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEC2Ev) +STUB("lVsw3kdsgAk", scePerfPmcAperfGetCounter) +STUB("lVt0Ux1pAcg", BN_add_word) +STUB("lVxn1IsZyGE", _ZN7WebCore11startOfLineERKNS_15VisiblePositionE) +STUB( + "lVzTyidvU4w", + _ZN9Inspector14InjectedScript13getPropertiesERN3WTF6StringERKS2_bbRNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime18PropertyDescriptorEEENS1_13DumbPtrTraitsISC_EEEE) +STUB("lW+8pdTQMmg", sceShellCoreUtilShowCriticalErrorDialog) +STUB("lW+f6dBH3wk", _ZN15AbstractStorage14FacebookFolderD0Ev) +STUB("lW6dX7Z0aq4", _ZN7WebCore16MIMETypeRegistry23supportedMediaMIMETypesEv) +STUB("lW7Qtc4Q4bI", WKBundleBackForwardListItemCopyURL) +STUB("lW8taMdqx2I", _ZN3sce7Toolkit2NP2V28Matching7Request9GetWorldsD2Ev) +STUB("lWA7rqvWYAI", unorm2_getRawDecomposition_67) +STUB("lWAsnnbARz8", _ZN7WebCore14JSVoidCallbackC1EPN3JSC8JSObjectEPNS_17JSDOMGlobalObjectE) +STUB( + "lWBaGrtkRi0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("lWDHF6V72lk", _ZNK9JITBridge20sharedMemoryAreaSizeEv) +STUB( + "lWEIv4D94go", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE10setContextEPNS2_10LibContextE) +STUB("lWFasWlhBe4", Java_java_lang_StrictMath_log10) +STUB("lWFb4eL7Igk", sceBgftServiceIntUploadRegisterTask) +STUB("lWGF8NHv880", _DefaultRuneLocale) +STUB("lWJNqXQ6+mI", _ZN3sce7Toolkit2NP2V24Core7Request11AddCallbackD1Ev) +STUB( + "lWKzOF1LCg0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE8capacityEv) +STUB("lWLxT39hCKw", mono_aot_System_Threading_Tasksunbox_trampolines_end) +STUB( + "lWSTxTp9LsE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE7reserveEi) +STUB("lWVDUhXNnYE", _ZN3sce7Toolkit2NP9Utilities6FutureIbEC1Ev) +STUB( + "lWklnER6Ptk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEC1EPNS2_10LibContextE) +STUB("lWlBrUu77Kg", _ZN3sce3pss5orbis9framework12PsmFramework10InitializeERKNS2_12PsmInitParamEiPPc) +STUB("lWs2iFS1rkc", _ZN7WebCore21DiagnosticLoggingKeys23isConditionalRequestKeyEv) +STUB( + "lWtO4slETd0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEplEm) +STUB( + "lWwxp0jbVmQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEaSERKS7_) +STUB("lWzHkMyiyp0", _ZN9Inspector14ConsoleMessagenwEmPv) +STUB("lX+4FNUklF0", __cxa_end_catch) +STUB("lX-usj4-LxA", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_19UserRankInformationEE17getAdditionalInfoEv) +STUB( + "lX0nSVABdys", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEC2ERS7_) +STUB("lX1zn4Di8gA", _ZN7WebCore9HTMLNames11textareaTagE) +STUB( + "lX2it4BGiTc", + _ZN3JSC25MacroAssemblerCodeRefBase11disassemblyENS_21MacroAssemblerCodePtrILN3WTF6PtrTagE3123EEEm) +STUB("lX2klFcD4z8", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku8setPriceERKi) +STUB("lX9M5u0e48k", _ZNSt13bad_exceptionD0Ev) +STUB( + "lXAAtUp-VT4", + _ZN3JSC8JSObject27getOwnNonIndexPropertyNamesEPS0_PNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB( + "lXGUHIsnTVk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEED2Ev) +STUB("lXHMAc9Xjzo", sceVideoOutSysGetCurrentOutputMode_) +STUB( + "lXHyZaBJnew", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("lXKtAHMrwig", sceUserServiceGetParentalBdAge) +STUB("lXMiv1MLPrA", _ZN7WebCore13GraphicsLayer15willBeDestroyedEv) +STUB("lXOfvwAYUbI", + _ZN3sce7Toolkit2NP2V29Messaging7Request27GetGameDataMessageThumbnail18MAX_SIZE_THUMBNAILE) +STUB("lXT0m3P-vs4", sceKernelAioSubmitReadCommandsMultiple) +STUB("lXWApqjC0iQ", _ZN3sce7Toolkit2NP2V29Challenge7Request16GetChallengeDataC1Ev) +STUB("lXc9INQaeh8", _ZN3sce2Np9CppWebApi10Activities2V114UserActivities8Activity12unsetMatchIdEv) +STUB("lXd6YOHfW1A", _ZN9Inspector16toInspectorValueERN3JSC9ExecStateENS0_7JSValueE) +STUB( + "lXeN-I-uhZ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEEC2Ev) +STUB( + "lXeWt+XWpTw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEaSERKS9_) +STUB( + "lXefb2ZzauI", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanity15getserviceLabelEv) +STUB("lXesITh371Q", _ZN7WebCore24DeprecatedGlobalSettings38setLowPowerVideoAudioBufferSizeEnabledEb) +STUB( + "lXhdSMTb5ME", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEED2Ev) +STUB("lXlP+jhO8QI", sceShellCoreUtilGetPlatformPrivacyDefinitionEventData) +STUB( + "lXr+ZxHIFdk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEC1ERKS7_) +STUB("lXturndR3Og", sceIduUtilHideOverlay) +STUB("lXwm2UtDwRQ", fuse_fs_rmdir) +STUB( + "lY-c5XJE1Ek", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEED1Ev) +STUB("lY2txdSWzLA", _ZN3sce3pss5orbis5video14VideoPlayerVcs18VideoCoreGetVolumeEv) +STUB("lY3vdIUZsG4", sceNpManagerIntGetGameTicketWithPid) +STUB( + "lY7M9enT-MQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEED2Ev) +STUB("lY7qdFGr0go", glBindAttribLocation) +STUB("lYA31T9O1KU", audiodeccpuinternal_core_ops_hevag2) +STUB("lYDzBVE5mZs", _ZdlPvm) +STUB("lYGZWRWJP6Q", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEED1Ev) +STUB("lYGrWZuoU54", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEmmEv) +STUB( + "lYGuLAOLQqo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEC1Ev) +STUB("lYJ69+BznHw", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsD2Ev) +STUB( + "lYKDlvaFS6s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "lYNHtD7Ms3M", + _ZN7WebCore23CoordinatedBackingStore10drawBorderERNS_13TextureMapperERKNS_5ColorEfRKNS_9FloatRectERKNS_20TransformationMatrixE) +STUB( + "lYPu-wrIeXE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("lYTGjcy6-X8", _ZN3sce2Np9CppWebApi6Common6VectorIjE21intrusive_ptr_sub_refEPS4_) +STUB("lYUGcgHYT7Y", _ZN15AbstractStorage7AbsFreeEPv) +STUB("lYdqBvDgeHU", sinhl) +STUB( + "lYewQQWrkJo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("lYkDUwyzr0s", sceNpManagerIntGetOnlineIdChangeFlag) +STUB("lYuouxsF218", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE3endEv) +STUB( + "lYva6zoEkvA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEmmEi) +STUB("lYvi-+d8juI", _ZN7WebCore14MicrotaskQueue15mainThreadQueueEv) +STUB("lYz7vbL4W4A", sceAgcDriverPatchClearState) +STUB("lZ2Sd0uEvpo", sceGameLiveStreamingClearSocialFeedbackMessages) +STUB( + "lZ5GFhxG5eI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB("lZ6DGUv+J0w", _ZN7WebCore9HTMLNames6divTagE) +STUB("lZ6RvVl0vo0", sceSysmoduleMapLibcForLibkernel) +STUB("lZ7oA7bWXkw", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats6getMmrEv) +STUB( + "lZ7odheWSbE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEmmEv) +STUB("lZ8qVuIIn-w", mono_set_rootdir) +STUB("lZDjofhKGKQ", _ZN3NTF15DNSPrefetchImpl8finalizeEv) +STUB("lZEI8hQ3tZs", getera) +STUB("lZFjwMoscvA", _ZNK7WebCore7Element14getAttributeNSERKN3WTF10AtomStringES4_) +STUB("lZG-WlKxRqQ", sceKernelGetIdPs) +STUB( + "lZKaugg8K9I", + _ZN7WebCore21ContextMenuController23contextMenuItemSelectedENS_17ContextMenuActionERKN3WTF6StringE) +STUB( + "lZMIEfeKgNU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE5emptyEv) +STUB( + "lZNi6e5cFOw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEEC1Ev) +STUB( + "lZSU6dzjD00", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEplEm) +STUB( + "lZSYF2+1a5g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEmmEv) +STUB("lZSZoN8BstI", sceNpTrophySystemRemoveUserData) +STUB("lZVehk7yFok", _ZNSt15basic_streambufIwSt11char_traitsIwEE6xsgetnEPwi) +STUB("lZWmdDoBDmI", _ZN3sce2np13JsonDocParser9GetResultEPPNS0_9JsonValueE) +STUB("lZXGcqe2Ulc", scePerfTraceIoGetPosition) +STUB( + "lZhes6eFw5s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("lZjY9R3nheo", _ZN23sceMetadataReaderWriter7LPEntryC2EPKNS_10ParserInfoE) +STUB( + "lZk7sUdUd0Y", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEEiRNS2_10LibContextEPT_m) +STUB("lZlazM1Ei+k", _ZN7WebCore22makeRangeSelectingNodeERNS_4NodeE) +STUB( + "lZn6CgqrCGg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "lZniODH-5yc", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "lZt1JXRrGQc", + _ZN3sce2Np9CppWebApi14SessionManager2V128PostGameSessionsResponseBodyC2EPNS1_6Common10LibContextE) +STUB("lZucg4s3vaE", _ZN7WebCore9HTMLNames20onloadedmetadataAttrE) +STUB("lZybtDrBJ60", _ZNK7WebCore16URLDecomposition6searchEv) +STUB( + "lZz7s7PHJGk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEC2Ev) +STUB("lZzFeSxPl08", pthread_setcancelstate) +STUB("lZzLTgdAK00", monoeg_g_shell_unquote) +STUB("lZzcbIX84mc", _ZN3sce2Np9CppWebApi14SessionManager2V124PlayerSessionPushContextD1Ev) +STUB( + "la-Dgw5YZ74", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE5beginEv) +STUB("la2AOWnHEAc", sceFontStyleFrameInit) +STUB( + "la2I2HxjLYo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEE7add_refEv) +STUB( + "la3kjzdVTqc", + _ZN8meta_gen11MsvPromoter31setKeyValue_TBLAVC_IconDataTypeENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB( + "la4+P6rRkX0", + _ZN3sce7Toolkit2NP2V210Tournament10getBracketERKNS3_7Request10GetBracketEPNS2_4Core8ResponseINS3_7BracketEEE) +STUB("la8tsQihoRE", _ZNK12video_parser5vpcom6String9GetStringEv) +STUB( + "laB+zowmoro", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE7reserveEi) +STUB("laF+cd2rvw8", _ZN3WTF13printInternalERNS_11PrintStreamEb) +STUB("laFBaDD-wIw", g_list_prepend) +STUB("laKrAmT4Tx8", ucurr_getRoundingIncrement_67) +STUB("laPctmmWhXo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEE7add_refEv) +STUB( + "laPdFGKzumE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("laUc7-fpK-M", WKRenderObjectCopyElementTagName) +STUB("laWD2Cnsl0o", mono_method_get_header) +STUB( + "laX3h-epLJU", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEEiRNS2_10LibContextEPT_m) +STUB( + "labhVn6ah54", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE5beginEv) +STUB( + "laekEj1BFxk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEC2EPKS8_) +STUB( + "laf1bYKfSIA", + _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody16customData1IsSetEv) +STUB("lafoiUl5-5U", sceVideoOutGetMonitorInfo) +STUB("lagjVl+bHFI", sceNpMatching2GetWorldIdArrayForAllServers) +STUB("lahbB4B2ugY", _Xp_setn) +STUB( + "laiFCovrPnY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEptEv) +STUB("lajqEc1ebOw", delegate_virtual_invoke_imt_13_p) +STUB("laqZEULcfgw", _ZN3sce2np9WorkQueue6CancelEii) +STUB("law08hMff-0", _ZN3NTF6ThreadD0Ev) +STUB("layhczIKTH4", _ZNK3sce2Np9CppWebApi7Matches2V17Subtask15getAvailabilityEv) +STUB("lb+HLLZkbbw", gets_s) +STUB("lb0c0UhEPYg", + _ZN7WebCore4Path14addRoundedRectERKNS_16FloatRoundedRectENS0_19RoundedRectStrategyE) +STUB("lb2fCiLY5Y8", _ZN3JSC7Symbols19executorPrivateNameE) +STUB( + "lb2ugJzMwGM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEC1Ev) +STUB("lb8lnYo-o7k", pthread_rwlock_timedrdlock) +STUB("lb9SkRnyXMc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEC2Ev) +STUB("lbB+UlZqVG0", fread) +STUB("lbC468bO8Xs", _ZN9Inspector32ScriptProfilerFrontendDispatcherC1ERNS_14FrontendRouterE) +STUB("lbCypJvTpPg", mono_get_exception_file_not_found2) +STUB("lbD6Fz8inqY", _ZN7WebCore8SVGNames21stroke_miterlimitAttrE) +STUB( + "lbE-mMsdroM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEptEv) +STUB("lbGSXdPdCx4", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEEmmEv) +STUB( + "lbIc1L+tCQw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE21intrusive_ptr_add_refEPS9_) +STUB("lbLEAN+Y9iI", _ZTISt20bad_array_new_length) +STUB("lbMccQM2iqc", sceGnmSqttGetTraceCounter) +STUB("lbPlT4+QVcE", sceNpUniversalDataSystemEventPropertyObjectSetFloat32) +STUB("lbQKqsERhtE", sceDiscMapIsRequestOnHDD) +STUB( + "lbVhPsFnuLY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEEC1Ev) +STUB("lbXTXRG5nyM", sceNpSessionSignalingGetMemoryInfo) +STUB("lbarclZ21IU", _ZN7WebCore24FrameDestructionObserver14willDetachPageEv) +STUB( + "lbeyc+YwdUM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEmmEi) +STUB( + "lboI8LzkR9w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE8copyFromERKS9_) +STUB("lbpA1nhwsBQ", uplrules_selectWithFormat_59) +STUB("lbtcpd5KoQ4", sceDevUsbTermCP) +STUB("lbtk5X1mecw", sceUltSemaphoreRelease) +STUB("lbz5X8Wvmv8", _ZN3JSC4Heap34reportExtraMemoryAllocatedSlowCaseEm) +STUB("lbzfG5J5UTo", _ZN3sce2Np9CppWebApi6Common15DefaultResponseC2Ev) +STUB("lcE6jFKqgJs", _ZN3sce2Np9CppWebApi13InGameCatalog2V55Error9setReasonEPKc) +STUB("lcKHRKrE2sY", _ZN9Inspector32ScriptProfilerFrontendDispatchernwEmPv) +STUB( + "lcKlbwI+Pxs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEEC2ERS9_) +STUB("lcLx31xx-4M", _ZNK9Inspector14FrontendRouter12hasFrontendsEv) +STUB("lcMM4ecaoz0", + _ZN23sceMetadataReaderWriter11gvMp4Parser24gvMp4ParserWriteMetadataERKSsRKNS_8MetadataE) +STUB("lcNk3Ar5rUQ", __udivmodti4) +STUB("lcaik1AxwEY", sceSlimglCompositorWaitEndOfRendering) +STUB("lch5VxJgLoA", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13FriendsOfUserEEeqERKS4_) +STUB("lckWSkHDBrY", vfscanf) +STUB("lcp9E77DAB4", sceShellCoreUtilTurnOffScreenSaver) +STUB("lcpUikuxzYU", _ZN3JSC11FuzzerAgentD1Ev) +STUB("lcq5jYT-nQ4", mono_aot_System_Web_Servicesunbox_trampoline_addresses) +STUB( + "lcxmQWjHh64", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEED1Ev) +STUB("lcynZT+5c5g", mono_aot_System_Dataunwind_info) +STUB("lczaTIw9Nfc", mono_btls_x509_lookup_shutdown) +STUB("ld+V9lNBhJc", _ZN7WebCore11EventRegionC2Ev) +STUB("ld-zX5i4Y4I", FT_List_Find) +STUB("ld1z8QaWVNw", WKCredentialGetTypeID) +STUB("ld396XJQPgM", sceUserServiceGetVolumeForController) +STUB("ld5ffhHlNdU", _ZN3sce7Toolkit2NP2V24Core7Request16ThreadProperties18STACK_DEFAULT_SIZEE) +STUB("ld9LxpZ8Bgw", nn_connect) +STUB( + "ldAAIxkkAQ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEED1Ev) +STUB( + "ldI0D6K7Rko", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("ldLepR7R76Q", mono_profiler_install) +STUB("ldOOluA3VM4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEmmEv) +STUB( + "ldPbYPAf72s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEEptEv) +STUB("ldPj8FDjzds", mono_aot_Sce_Vsh_Registryjit_code_end) +STUB("ldTUu0haP-s", delegate_virtual_invoke_imt_26) +STUB("ldUjuMepZMs", uprv_fabs_67) +STUB("ldVb3lc75PE", wait) +STUB( + "ldXglr-7FtE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE5beginEv) +STUB( + "ldYIizEBvmg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEaSERKS9_) +STUB( + "ldZpUnt1Pe4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEE7get_refEv) +STUB("ldbrWsQk+2A", _LDnorm) +STUB( + "ldfcXtGsxZE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("ldh-wRP6p7M", umsg_vparse_67) +STUB("ldk9m5h+-no", cairo_select_font_face) +STUB("ldpQGkm2Y40", udatpg_openEmpty_67) +STUB( + "ldrI88FHwTo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEE7add_refEv) +STUB( + "ldrcLyWn0yg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEppEi) +STUB("ldtPEMeam7A", GCC_except_table150) +STUB("ldwx4dhgoh8", + _ZNK3sce2Np9CppWebApi14SessionManager2V131JoinedPlayerSessionWithPlatform12getSessionIdEv) +STUB("ldxacgzSYVM", WKBundleRemoveAllWebNotificationPermissions) +STUB("le2uHgGLAg8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEaSERS7_) +STUB( + "le3ppAcjIj8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE4sizeEv) +STUB( + "le4Q+zHQMwA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEE3getEv) +STUB( + "le7O-Sp64Vo", + _ZNK3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsTouchResponseBody18getTouchedDateTimeEv) +STUB("le8u-T8QXYQ", _ZN7WebCore14ScrollableArea19willStartLiveResizeEv) +STUB("leAAh-LWpg8", ulocimp_getCountry_67) +STUB( + "leAzi2gkKR4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE5startEPNS2_10LibContextE) +STUB("leCAscipfFY", sceVideodecQueryResourceInfo) +STUB("leDQJqf+kW4", ures_getAllItemsWithFallback) +STUB("leF9RqnCKao", _ZN15AbstractStorage18DailymotionServiceD1Ev) +STUB("leGreHlhkn8", _ZN12video_parser7cVpUtil13vp_ff4_memcmpEPvPKvS3_m) +STUB("leH7VMqozF0", ucnv_extContinueMatchFromU_67) +STUB("leHmVbjHyGw", hb_buffer_get_length) +STUB("leQ97cqzChk", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V110Reputation6toJsonERNS_4Json5ValueEb) +STUB( + "leR-nCyii1Y", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEiRNS2_10LibContextEPT_m) +STUB("leSFwTZZuE4", _ZNKSt8numpunctIwE13decimal_pointEv) +STUB( + "leVzt3Jr5o4", + _ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_34DetailedProductInfoListInputParams9ProductIdEE8max_sizeEv) +STUB("leWppF5NDa8", _ZN7WebCore6RegionC2ERKNS_7IntRectE) +STUB("leX0+XNhZTA", JVM_GetMethodParameters) +STUB("leb67rLpf7M", mono_thread_info_yield) +STUB("ledra0RhS6I", WKPreferencesSetJavaScriptRuntimeFlags) +STUB("lej5-tQeuBE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEED2Ev) +STUB( + "lejx9FFU9mU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEC2EPS8_) +STUB("lekMQNRdlRs", _ZN7bmalloc15IsoHeapImplBasenaEm) +STUB("lewDXU6udNg", _ZN3JSC12iteratorStepEPNS_9ExecStateENS_15IterationRecordE) +STUB( + "leypPkXymaA", + _ZN3sce7Toolkit2NP2V27Ranking15getFriendsRanksERKNS3_7Request15GetFriendsRanksEPNS2_4Core8ResponseINS3_12FriendsRanksEEE) +STUB( + "lf+Rp0JaE0E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEppEv) +STUB( + "lf-27JOia2A", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEixEm) +STUB("lf-7QriZ25o", _ZN3JSC21throwOutOfMemoryErrorEPNS_14JSGlobalObjectERNS_10ThrowScopeE) +STUB("lf-PlNJUJlY", _ZN3sce7Toolkit2NP2V210Tournament7Request19SendUserMatchReportC2Ev) +STUB( + "lf-ei0Fgc3E", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEptEv) +STUB( + "lf0EPhOuS78", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEE11release_refEv) +STUB("lf1+CZw5+2Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEixEm) +STUB( + "lf2OrUSkl4I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEppEi) +STUB("lf45wu5A-5M", WKContextConfigurationCopyCustomClassesForParameterCoder) +STUB( + "lf553q6iass", + _ZN3sce2Np9CppWebApi13InGameCatalog2V516ContainerFactory6createEPNS1_6Common10LibContextEPKcS9_S9_PNS5_12IntrusivePtrINS3_9ContainerEEE) +STUB("lf60TRMaxoA", _ZN7WebCore10FileSystem8moveFileERKN3WTF6StringES4_) +STUB( + "lfB46koAdDs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("lfGEXEw3t3M", g_error_free) +STUB("lfNBwjzvN8E", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE8copyFromERKS7_) +STUB("lfOW+hER3dw", uenum_openUCharStringsEnumeration_67) +STUB( + "lfP6VdrtlDk", + _ZN7WebCore11JSDOMWindow6createERN3JSC2VMEPNS1_9StructureEON3WTF3RefINS_9DOMWindowENS6_13DumbPtrTraitsIS8_EEEEPNS_13JSWindowProxyE) +STUB( + "lfPlG5+Sb04", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEC2EPKS8_) +STUB("lfQMRAQl6kI", + _ZN15AbstractStorage13TwitterFolderC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) +STUB( + "lfQpegKgzsk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("lfUiDOAsDoo", + _ZNK3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody15entryLimitIsSetEv) +STUB("lfW-p07A+ss", JSDebuggerTerminate) +STUB("lfWRbhGF-vQ", WKPageGetSessionHistoryURLValueType) +STUB( + "lfXegnZW0vw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEC2ERS7_) +STUB("lfY0K492DV0", WKDictionaryCreate) +STUB("lfZHuOlEJ-E", ucnv_unload) +STUB( + "lfcxA0thlH8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEC2EPS6_PNS2_10LibContextE) +STUB("lffT20IZO4E", mini_set_debug_options) +STUB( + "lffW3cmEsi8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE8capacityEv) +STUB( + "lfiAOnN2o+Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEC1EPKS8_) +STUB("lflDLnoXcwY", _ZNK3sce2Np9CppWebApi11Matchmaking2V19Attribute7getNameEv) +STUB("lfmhZbzP4AY", sceAppInstUtilGetInstallProgressInfo) +STUB("lfoT-NIShRM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredUsersEE3setEv) +STUB( + "lfp+bkXZuks", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("lftcyoraBOU", _ZN9Inspector23CanvasBackendDispatcherD1Ev) +STUB("lftdXgkTxmQ", sceAppInstUtilAppGetInsertedDiscMasterDataId) +STUB("lg2I8bETiZo", sceUserServiceSetMouseHandType) +STUB("lg5OSzh7wVA", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_6NpUserEEC2Ev) +STUB("lg5Z+eVXA-A", SSL_read) +STUB("lgACxYBCgFw", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session9SessionIdEEC1Ev) +STUB("lgB5kgNjUqY", mono_btls_x509_verify_param_lookup) +STUB("lgC8W0Qu1iw", JSObjectCallAsFunction) +STUB("lgDJj+qaCk0", rgctx_fetch_trampoline_mrgctx_114_p) +STUB( + "lgI1c4wSIoI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEeqERKS9_) +STUB("lgITuBsRo2o", sceFiosIOFilterAdd) +STUB("lgK+oIWkJyA", sceKernelAioWaitRequests) +STUB( + "lgOudJHuVPg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE3endEv) +STUB( + "lgQt6j1JJt4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEaSERS7_) +STUB("lgTlIAEJ33M", sceSystemServiceChangeSamuClock) +STUB("lgWSHQ8p4i4", sceVrTrackerSetRestingMode) +STUB("lgWtR4A4EnA", _ZNK3sce2Np9CppWebApi15Personalization2V15Error11reasonIsSetEv) +STUB("lga3Yhyalps", _ZN3JSC12StringObject6s_infoE) +STUB("lgaRYqRh8LU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEC2ERKS7_) +STUB("lgbdvT36kTE", sceShellCoreUtilGetPapcGamePcl) +STUB( + "lggucPYeL8E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEE11release_refEv) +STUB( + "lgh04EbMwD0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEptEv) +STUB( + "lgjdThin7JA", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountId17unsetasOfDateTimeEv) +STUB( + "lglI9lJm4g0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEE7add_refEv) +STUB( + "lglrveGgcfQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEC2EPS8_) +STUB("lglxNJd5SVY", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEEdeEv) +STUB("lgmXPGgPjUY", OCSP_basic_verify) +STUB( + "lgsRVNr0ukI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB( + "lgu-GuXVCOo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB( + "lgxgSuLWABU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEED2Ev) +STUB("lh+5Uj6SVzM", _ZN3JSC13DebuggerScope6createERNS_2VMEPNS_7JSScopeE) +STUB( + "lh1woFDehXc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEC1EPNS2_10LibContextE) +STUB("lh4bGXJ1Pl0", WKContextConfigurationSetIgnoreSynchronousMessagingTimeoutsForTesting) +STUB("lh5Sirif1Js", ures_openDirect) +STUB("lh6XyHyme90", + _ZNK3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForRead12playersIsSetEv) +STUB( + "lh7PHoJ0-Aw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEneERKS9_) +STUB("lhA0LxAAXxU", WKContextTerminateStorageProcess) +STUB("lhE4XS9OJXs", sceNpTrophyConfigGetTrophyDetails) +STUB("lhEIsHzB8r4", sceCameraSetGamma) +STUB( + "lhJWkEh-HXM", + _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE7_GetintERS3_S5_iiRiRKSt5ctypeIwE) +STUB("lhOLsQkhIos", + _ZN7WebCore19InspectorController18disconnectFrontendERN9Inspector15FrontendChannelE) +STUB( + "lhRBOf1F6sQ", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanity22setwebApiFilterRequestENS1_6Common12IntrusivePtrINS3_19WebApiFilterRequestEEE) +STUB("lhRP+ubwkkg", + _ZN9Inspector17BackendDispatcher10getIntegerEPN3WTF8JSONImpl6ObjectERKNS1_6StringEPb) +STUB( + "lhSJCEf8zP0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEEC2ERSA_) +STUB("lhSZLgpu270", SwCtrlManagerEndActivateSession) +STUB( + "lhUQKydA8LU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEmmEi) +STUB("lhYCTQmBkds", sceNpPartyInitialize) +STUB("lheZj-eGtIc", t42_driver_class) +STUB("lhfAhLzIjo0", ucal_get_67) +STUB( + "lhg0dYYufZQ", + _ZN3sce2Np9CppWebApi14IdentityMapper2V349PsnWebError_error_validationConstraintInfoFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_42PsnWebError_error_validationConstraintInfoEEE) +STUB("lhgt7StD7RM", SSL_CTX_new) +STUB("lhmUadzsM0I", _ZNK3sce2Np9CppWebApi11UserProfile2V113BasicPresence17onlineStatusIsSetEv) +STUB("lhnrCOBiTGo", isblank) +STUB("lhpd6Wk6ccs", log10f) +STUB("lhqFzLrLMGo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEEC1EPKS6_) +STUB( + "lhrkL+m08oE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEC2ERS7_) +STUB( + "lhzSiFZZ3Ug", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEC2Ev) +STUB("lhzUScLJE8g", _ZNK7WebCore10RenderView15usesCompositingEv) +STUB("li-UXaq92Vo", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia10BroadcastsEEC1Ev) +STUB( + "li1JXs3gccw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB("li1Y-+rCHtY", _ZN3sce2Np9CppWebApi7Matches2V122RequestPlayerStatistic11setPlayerIdEPKc) +STUB("li4G2knb-vI", X509_EXTENSION_get_data) +STUB( + "li4LTaJPHmw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "liH5I6ebn5I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEEC1ERS9_) +STUB( + "liKLWY4RtaQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEC1ERSA_) +STUB("liKOlmonGMo", sceHmdGet2dDistortionMap) +STUB("liMyO9v1YBA", _ZN3JSC29createNotEnoughArgumentsErrorEPNS_9ExecStateE) +STUB( + "liN2FU+rj8g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE8pushBackERKS8_) +STUB( + "liN9hcUoG3s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEE7get_refEv) +STUB("liOD0-XlX-c", _ZN3JSC12HeapAnalyzeraSERKS0_) +STUB("liPpytPUPMA", sceNpTrophySystemUnregisterTitleSyncedCallback) +STUB("liR+QkhejDk", _ZTIPKDn) +STUB( + "liRmuMcjCFI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE21intrusive_ptr_add_refEPS9_) +STUB("liTcn3EF33g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEC2Ev) +STUB( + "liUqugLNOg4", + _ZN3sce2Np9CppWebApi14SessionManager2V132RequestPlayerSessionMemberPlayer18unsetNonPsnPlayersEv) +STUB("libpnl6UIGg", sceSystemLogger2NativeQueueClientCheckAndMaskData) +STUB("lifv9YgJaYc", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody10limitIsSetEv) +STUB("lihFGjz1c-c", WKContextGetStatisticsWithOptions) +STUB( + "lii9JBEdPQw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEaSERS7_) +STUB("lijglP16UQk", mono_security_core_clr_set_options) +STUB("limbVG3jLPY", _ZNK3sce2Np9CppWebApi11UserProfile2V112BasicProfile10getAboutMeEv) +STUB("liocUXUxdHA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEixEm) +STUB("liqE096ThEk", _ZNK7WebCore37BasicComponentTransferFilterOperation14affectsOpacityEv) +STUB( + "livmD7PbL3Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEplEm) +STUB( + "liwmI+ZLFw4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEeqERKS9_) +STUB("lizLVvMOgs4", mono_aot_Sce_Vsh_BackupRestoreUtilunbox_trampolines) +STUB( + "lj4PYRuDKjI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE21intrusive_ptr_add_refEPS9_) +STUB("ljBQTMlrdfU", sceNpManagerIntUserSignin) +STUB("ljFisaQPwYQ", wcstoimax) +STUB( + "ljPH2ip9IUI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEE5resetEPS9_) +STUB("ljPTWMFwyIM", _ZN7WebCore4Page41setDOMTimerAlignmentIntervalIncreaseLimitEN3WTF7SecondsE) +STUB( + "ljPuK+ZAPug", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEE7add_refEv) +STUB("ljRSoeZdr5s", _ZNK7WebCore14StaticNodeList4itemEj) +STUB("ljWcRNfZaTU", _ZN12video_parser5vpcom14LwMutexTryLockEPNS0_11sys_lwmutexE) +STUB( + "ljYCJdPg5jU", + _ZN7WebCore17JSDOMGlobalObjectC2ERN3JSC2VMEPNS1_9StructureEON3WTF3RefINS_15DOMWrapperWorldENS6_13DumbPtrTraitsIS8_EEEEPKNS1_23GlobalObjectMethodTableE) +STUB("lja0nNPWojg", sceRtcFormatRFC3339Precise) +STUB( + "ljaR4njDJhw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEC2EPKS8_) +STUB("ljacL714xNI", _ZN9Inspector24RuntimeBackendDispatcherD2Ev) +STUB("ljd2tQnZJwk", WKPreferencesSetPluginSandboxProfilesEnabledForAllPlugins) +STUB( + "ljdR544I6ho", + _ZN7WebCore22EmptyFrameLoaderClient30dispatchDidFailProvisionalLoadERKNS_13ResourceErrorENS_19WillContinueLoadingE) +STUB("lje+7Q7rn5U", + _ZN3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsers9terminateEv) +STUB("ljfXt4DhcaQ", _ZN3JSC7Symbols30isSuspendYieldStatePrivateNameE) +STUB( + "ljkbSGgi0H4", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemPropertiesC1Ev) +STUB("ljkqMcC4-mk", sceLibcMspaceAlignedAlloc) +STUB("ljqnF0hmLjo", sceNpGetSdkVersionUInt) +STUB( + "ljsXC9UzsPY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEdeEv) +STUB("ljtJfOAF-9o", + _ZN3sce2Np9CppWebApi14SessionManager2V113ErrorResponseC2EPNS1_6Common10LibContextE) +STUB( + "ljyVf+V3Du8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE7popBackEv) +STUB( + "lk4xU8SRLYk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEC2EPS6_PNS2_10LibContextE) +STUB("lk6kuq3PXFw", GCC_except_table457) +STUB("lkBELjUMn4k", mono_thread_info_detach) +STUB( + "lkFbXxuaBnE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("lkGkunJMfis", mono_metadata_methods_from_event) +STUB("lkGvBL1ly-Y", _ZN15AbstractStorage13YoutubeFolderD1Ev) +STUB( + "lkJI4eoFJFs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEE3getEv) +STUB("lkKJnS1gDRk", _ZN7WebCore8PositionC1EPNS_4NodeEjNS0_10AnchorTypeE) +STUB("lkPny2sBZ7Q", scePssAudSetSurroundPanSpeakerConfig) +STUB( + "lkRMoUPDUsI", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getBoolean8Ev) +STUB( + "lkZVxv-+Mas", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEC2EPS8_) +STUB("lkcoWfBi-Eo", _ZN7WebCore13displayStringERKN3WTF6StringEPKNS_4NodeE) +STUB( + "lklKs6GoULM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEneERKS9_) +STUB("lkqZwKJZ0oo", _ZN7bmalloc15IsoHeapImplBaseD1Ev) +STUB("lkrcJDdhfBI", _ZNK3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeIPcPvEE8max_sizeEv) +STUB("lku-VgKK0RE", __atomic_compare_exchange_4) +STUB("lkuYb67MCJc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEaSERS7_) +STUB( + "lkv4hhr+9MQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE5beginEv) +STUB("lkxCJ3YaY2c", mono_aot_Sce_Vsh_AppInstUtilWrapperunbox_trampoline_addresses) +STUB( + "lkxJE30LpN8", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetAccountId2OnlineId9terminateEv) +STUB("lkxhdb4gfCk", _ZNK3WTF10StringImpl21findIgnoringASCIICaseERKS0_) +STUB("ll5w63kKx+A", ucal_getType_67) +STUB("ll73ctBXNkA", uspoof_getSkeletonUTF8_67) +STUB("ll8I9K4RtUM", sceKernelAllocateDirectMemoryForMiniApp) +STUB("ll99KkqO6ig", + _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE5_FputES3_RSt8ios_basecPKcm) +STUB("llD6Bs1Iec4", _ZN7WebCore26ContextDestructionObserverD0Ev) +STUB( + "llDM5hiwQ6c", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE3endEv) +STUB( + "llEv9S7m1vo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEEC2EPS7_PNS2_10LibContextE) +STUB("llISO4CgRb8", WKPageGetProcessIdentifier) +STUB( + "llJ2L0q0yLs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEED2Ev) +STUB("llKD7L4jVTw", sceDeci4hDrfpStat_fuse) +STUB( + "llULfDKMqXw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEC2EPNS2_10LibContextE) +STUB( + "llUUMzniZ5U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEE11release_refEv) +STUB("lliK9T6ylJg", sceNpTusAddAndGetVariableVUserAsync) +STUB("lljx752rt6o", cpp_demangle_read_expression) +STUB( + "llkh6GoJMk4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEplEm) +STUB( + "llqvU8ojZpg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEppEi) +STUB( + "llqy4dIRDBQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE4sizeEv) +STUB("llqyCSrI+PE", mono_class_get_type_token) +STUB( + "lluK-yGKRAw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEneERKS9_) +STUB("llxMK1-0YkE", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V116TaskAvailabilityEEC2Ev) +STUB("lm+1oyWKwy0", sceVideoOutAddBufferAnisoPrivilege) +STUB( + "lm0XNGEXCqk", + _ZN9Inspector20DOMBackendDispatcher29pushNodeByBackendIdToFrontendElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("lm15-w9hKWY", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEEppEi) +STUB("lm6T1Ur6JRk", sceVrTrackerGetLiveCaptureId) +STUB("lm7aLkrD1aI", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_10TrophyInfoEE17getAdditionalInfoEv) +STUB("lm87PHf4mDQ", u_getIntPropertyMaxValue_67) +STUB( + "lm9k5JtiT5o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "lmEMJXw+6r0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEE7get_refEv) +STUB("lmGv-MMf+b0", _ZTVN7bmalloc15IsoHeapImplBaseE) +STUB( + "lmLR3cQVt0U", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("lmb3oBpMNPU", + _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewy) +STUB("lmdT7cmETN8", access_mem) +STUB( + "lmevD-xVdGA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEED1Ev) +STUB("lmieh+K7+7o", gsharedvt_trampoline) +STUB( + "lmima8meJtc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEcvbEv) +STUB( + "lmjh8pQW6qA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEEC2ERSA_) +STUB( + "lmrMIlbRNdU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE7reserveEi) +STUB("lmrUFMwBGMo", _ZN12video_parser13cVideoPathMnvC2EPKc) +STUB("lmvLKteDg+Q", _ZN7WebCore12NamedNodeMap17removeNamedItemNSERKN3WTF10AtomStringES4_) +STUB( + "ln+Ij9Rlq-s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "ln1jHBy0wN0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("ln23C1hwb5o", CRYPTO_THREADID_set_numeric) +STUB("ln25S0X-S08", curl_mime_filedata) +STUB("ln2t1Lz90zs", rgctx_fetch_trampoline_mrgctx_12) +STUB("ln33zjBrfjk", sceGnmGetTheTessellationFactorRingBufferBaseAddress) +STUB("ln4FHEULB50", Java_com_sony_gemstack_org_dvb_application_AppProxyImpl_n_1startWithArgs) +STUB("ln52C++0GH0", _ZN7WebCore10FileSystem18makeAllDirectoriesERKN3WTF6StringE) +STUB("ln8IwqIWE4I", PSNowGetStreamingStatus) +STUB("lnCNKs85dRg", rgctx_fetch_trampoline_rgctx_80) +STUB("lnHFrZV5zAY", sceSslShowMemoryStat) +STUB("lnJiyHeMGUw", + _ZN9Inspector17BackendDispatcher9getObjectEPN3WTF8JSONImpl6ObjectERKNS1_6StringEPb) +STUB( + "lnMqUBhn+Lc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("lnOqjnXNTwQ", _ZNSt14numeric_limitsIbE8digits10E) +STUB("lnWMwXiWM00", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEC2Ev) +STUB( + "lnWey3kb00A", + _ZN7WebCore8Document7writelnEPS0_ON3WTF6VectorINS2_6StringELm0ENS2_15CrashOnOverflowELm16ENS2_10FastMallocEEE) +STUB( + "lnXkUfK0jvQ", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Console14ConsoleMessage5LevelEEESt8optionalIT_ERKN3WTF6StringE) +STUB("lnaMfsRbwE0", _ZN9Inspector22InspectorDebuggerAgent19registerIdleHandlerEv) +STUB("lnhZ1Sjisfo", _ZNK3WTF9MediaTime11toTimeScaleEjNS0_13RoundingFlagsE) +STUB( + "lnv+cWWra+4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE8capacityEv) +STUB( + "lo6Q8Or8HRY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEEaSERKSA_) +STUB( + "lo6d-8UORxI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEEC2EPS8_PNS2_10LibContextE) +STUB("loCKwHzog0s", sceCesEucKrToUtf16be) +STUB( + "loCb8kE1oP0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEED1Ev) +STUB( + "loCiEIPBeZY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEaSERKS9_) +STUB("loDtTJwIi70", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE5emptyEv) +STUB("loE6cNuCUtk", sceVrSetupDialogOpen) +STUB("loEDv3wwKmc", EVP_CIPHER_CTX_ctrl) +STUB( + "loGYQUR8n4o", + _ZN9Inspector23WorkerBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("loIvEsvUejI", sceSpNetEpollControl) +STUB("loO7FEttses", WKBundlePageClickMenuItem) +STUB("loOqgl+rcV8", mono_mempool_invalidate) +STUB("loQed61sd6c", _ZN7WebCore19JSAnimationTimeline6s_infoE) +STUB("loR8ypxf43E", sceLibcMspaceReportMemoryBlocks) +STUB("loRNMMI+BV4", _ZN7WebCore20ResourceResponseBase19setTextEncodingNameERKN3WTF6StringE) +STUB("lod4jBYhro0", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_23NpSessionInvitationInfoEEC2Ev) +STUB("log6zy2C9iQ", _ZNSt6_MutexC2Ev) +STUB( + "loqc6LQ33rE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE21intrusive_ptr_sub_refEPS7_) +STUB("losEubHc64c", scePthreadMutexattrGetpshared) +STUB( + "lovZ5a3DvII", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE8capacityEv) +STUB( + "loxG5S82Bks", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEEC2ERKSA_) +STUB( + "lp-1T5bORvY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEmmEi) +STUB("lp5VHutyQWk", _ZN3sce7Toolkit2NP2V28Presence8PresenceD2Ev) +STUB("lp7vzwISXMg", sceNpInGameMessageCheckCallback) +STUB( + "lpALnihHtiM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEmmEi) +STUB( + "lpAoheE4ZHM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE21intrusive_ptr_add_refEPS9_) +STUB("lpCTPZZg-B0", _ZN3sce7Toolkit2NP21InvitationDataRequestC2Ev) +STUB("lpJ3zhgftCg", BIO_free) +STUB( + "lpLcwR1zVOk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("lpM48Bj6GmE", rgctx_fetch_trampoline_mrgctx_87_p) +STUB("lpMP8HhkBbg", scePthreadAttrGetinheritsched) +STUB( + "lpOmVz46-4M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEC2EPS8_) +STUB( + "lpWc0uqmGOs", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V127ReputationPropertiesFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_20ReputationPropertiesEEE) +STUB("lpZ3yCy11bo", _ZNK7WebCore18HTMLMarqueeElement12scrollAmountEv) +STUB( + "lplqoQUKtEw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEC1Ev) +STUB( + "lpn+juamid0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEED1Ev) +STUB("lpoACXuNeLk", _ZN3sce2Np9CppWebApi7Matches2V120RequestTeamStatistic9setTeamIdEPKc) +STUB( + "lpoD+BME6Xc", + _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody21setUserCenteredAroundERKNS1_6Common12IntrusivePtrINS3_4UserEEE) +STUB( + "lppAGV7lrVQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEEC2ERKSA_) +STUB("lpr66Gby8dQ", sceNpCalloutStartOnCtx64) +STUB("lpsXm7tzeoc", sceSystemGestureGetTouchEventByEventID) +STUB("lpygKbzSFp8", mono_aot_Mono_CSharpplt_end) +STUB("lpzpfxBrbzI", ucal_clearField_67) +STUB("lq0Anwhj0wY", sceNpTusGetMultiUserDataStatusForCrossSaveAsync) +STUB("lq2rHnIbp68", Java_java_io_UnixFileSystem_setLastModifiedTime) +STUB("lq3OcPBgH1M", jpeg_write_m_byte) +STUB("lq9ADoMECUM", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13WhoLikedStoryEEC2ERKS4_) +STUB("lqCgNLJHlw0", _ZN7WebCore16HTMLImageElement8setWidthEj) +STUB("lqHsrpuW4MI", sceMatUnregisterOwnerAndResources) +STUB("lqIENnevxcI", _ZN3sce7Toolkit2NP10IdDatabase21getCommsIdsForServiceENS1_11ServiceTypeE) +STUB( + "lqKvihKAQz8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEEC2ERSA_) +STUB("lqPT-Bf1s4I", sceHmdInternalCrashReportOpen) +STUB( + "lqX9b80Qbao", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE3endEv) +STUB("lqYBFrbQa9c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEEaSERKS7_) +STUB("lqYSVZfCuD4", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V515ContainerRating6toJsonERNS_4Json5ValueEb) +STUB( + "lqZ+eCZ0nw4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "lqbeU3cYgXA", + _ZN3sce2Np9CppWebApi7Matches2V121ResponseMemberFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_14ResponseMemberEEE) +STUB("lqeZJNlw8C4", _ZNK3sce7Toolkit2NP9Utilities10FutureImpl9hasResultEv) +STUB( + "lqhAf3IR2vo", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification16NewInGameMessageEE12deepCopyFromERS8_) +STUB("lqio+NIqabk", _ZN12video_parser5vpcom4path5SplitERKSsRSsS4_) +STUB( + "lqoiDP91470", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEC1ERS7_) +STUB( + "lqrremlMYhQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEppEi) +STUB("lqye4eoi5nI", _ZN3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse19unsetTotalItemCountEv) +STUB( + "lqzAmVK2At0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEEC2ERSA_) +STUB("lr0Hd+KZqY0", _ZN3sce2Np9CppWebApi13InGameCatalog2V57ProductD1Ev) +STUB( + "lr37dAskB7w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEC2EPS6_PNS2_10LibContextE) +STUB("lr4DyEbLGBA", sceAppInstUtilAppCancelUnInstall) +STUB("lr4gkFj8XKg", _ZN3sce7Toolkit2NP2V27Session20LocalizedSessionInfoC1Ev) +STUB( + "lr6ZK090edk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("lr96Z2yBPtk", sceDeci4hDrfpCalcEntlistSize) +STUB("lrAjHpnIZpU", _ZN7WebCore12ISOWebVTTCueC2ERKS0_) +STUB("lrDE3GJRDlU", _ZN3sce7Toolkit2NP2V212ActivityFeed5MediaC1Ev) +STUB("lrH5mZyNiuA", WKBundleGetDiskCacheStatistics) +STUB("lrH9rFkouoY", sceMbusDebugGetDeviceInfo) +STUB("lrHVkbhs4UI", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy15TrophyPackGroupEE12deepCopyFromERS7_) +STUB("lrKNEr+8Ilk", _ZNK7WebCore25DropShadowFilterOperation5cloneEv) +STUB( + "lrL32UErZa0", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersaSERS5_) +STUB("lrNcuFwunPw", _ZNK3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15Error9codeIsSetEv) +STUB("lrPF-kNBPro", sceUserServiceGetSharePlayFlags) +STUB("lrQSsTRMMr4", _ZSt7_MP_GetPy) +STUB("lrRR4IGYYpA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ResponseCooperativeResultEEC1Ev) +STUB( + "lrTWv4cBBjc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEC2EPKS8_) +STUB( + "lrYP8GG1KJQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEEcvbEv) +STUB("lrYl5U+ryl0", WKPreferencesSetRequestAnimationFrameEnabled) +STUB( + "lrd9iJlFJdo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEC1EPS8_) +STUB( + "lrfClJLnSsE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEE7add_refEv) +STUB("lrjFx4xWnY8", scePadSetForceIntercepted) +STUB("lrp9PxyOwm4", mono_aot_Sce_Vsh_VoiceAndAgentunwind_info) +STUB("lrpe0uiQe1k", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEEC1ERKS7_) +STUB("lrswogWNZyM", sceProprietaryVoiceChatHelperTerminate) +STUB( + "ls1BBy367tw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEppEv) +STUB( + "ls2V7XoWLJU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEC1EPNS2_10LibContextE) +STUB("ls2sUrwLiV0", mono_debug_enabled) +STUB("ls4jfY576lw", sceAgcDriverGetResourceUserData) +STUB( + "ls7bkpiLH8Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEC2Ev) +STUB("ls8GrkE8nr8", _ZNK7WebCore21HTMLOptionsCollection13selectedIndexEv) +STUB("ls8yIODZmzc", _ZN3sce2np9HttpTransD1Ev) +STUB( + "lsAWzF2hQEg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("lsBWl8HgZSs", _ZNK7WebCore19ResourceRequestBase15httpHeaderFieldENS_14HTTPHeaderNameE) +STUB("lsG3aurAqHg", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyD2Ev) +STUB( + "lsKrZMQFuvI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE4sizeEv) +STUB("lsKulh+FqBc", udata_swapDataHeader) +STUB("lsMB2OXXR-Q", _ZN7WebCore13HTTPHeaderMapC2Ev) +STUB("lsMWX5igqyc", _ZTVN7WebCore23ScaleTransformOperationE) +STUB("lsUORZxXYDQ", _ZN7WebCore17CredentialStorage3getERKN3WTF6StringERKNS_15ProtectionSpaceE) +STUB( + "lsVHnGx+qWM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE6resizeEj) +STUB("lsZ2Sh45Brk", _ZN3JSC18GCActivityCallback11cancelTimerEv) +STUB("lsbUGZCjQy8", + _ZN4IPMI4impl10ClientImpl16invokeSyncMethodEjPKNS_8DataInfoEjPiPNS_10BufferInfoEj) +STUB("lsc8IlEjXhI", sceKernelEnterSblock) +STUB("lsdxBeRnEes", sceUserServiceSetGlsIsTwitterEnabled) +STUB("lsoHI3p77nU", MD4_Init) +STUB("lsog-msx-Qk", sceHandDetectionGetDefaultParam) +STUB("lswCEnBeLyA", ubidi_getJoiningType_67) +STUB("lswnCQS09uk", _ZN7WebCore9TimerBase5startEN3WTF7SecondsES2_) +STUB( + "lt+08cJYtIk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE8pushBackERKS8_) +STUB( + "lt+XM9jsvss", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEeqERKS9_) +STUB("lt0gjueRd54", _g_sceLibcExitflag) +STUB("lt0mLhNwjs0", _ZTISt14overflow_error) +STUB( + "lt1kMXuL2io", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEppEv) +STUB("lt3J4dPvEtM", _ZN3sce4Json6Object4PairC2ERKNS0_6StringERKNS0_5ValueE) +STUB("lt7eNuXpw8Q", sceSystemServiceUsbStorageRegisterCallbackForMapAvailable) +STUB("lt8Gm2xNRMI", WKBundleClearApplicationCacheForOrigin) +STUB( + "ltAk9wfMIjI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEEcvbEv) +STUB( + "ltCOlFp0DhU", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser15getmemberFilterEv) +STUB("ltCfaGr2JGE", pthread_mutex_destroy) +STUB("ltDbbPaL9ac", __sync_lock_test_and_set_16_internal) +STUB("ltDpo4Q53sY", _ZN3sce2Np9CppWebApi11Matchmaking2V19SubmitterD2Ev) +STUB("ltGxpBPyaAI", _ZN7WebCore9DOMWindow8locationEv) +STUB("ltIp-28VfjA", mono_aot_Sce_Vsh_GriefReportjit_got) +STUB("ltRLAWAeSaM", _ZTIDh) +STUB( + "ltSTT0UYD+o", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEptEv) +STUB( + "ltVqibb-mn4", + _ZN3sce2Np9CppWebApi14SessionManager2V162PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_55PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEE) +STUB("ltWdd+agvD0", sceFiosFHReadvSync) +STUB( + "ltXl3WqN-JE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("ltbkYHlLvXw", _ZN7WebCore20ResourceResponseBase6setURLERKNS_3URLE) +STUB("ltdh7ya6DHE", Java_com_oracle_bluray_ui_FAAComponentHelper_waitVblank) +STUB( + "ltf2mxxxUK0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE6resizeEj) +STUB("ltgaNmuCMn4", WKPreferencesSetICECandidateFilteringEnabled) +STUB("ltmtp+OUhbk", mono_aot_Sce_Vsh_Accessor_Dbjit_got) +STUB( + "ltogn0y4gpk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("ltsRiUsRsVE", _ZN3sce7Toolkit2NP2V26Friend7Request19GetFriendsOfFriendsD2Ev) +STUB("ltz+EXNZnww", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEEaSERSA_) +STUB( + "ltzbvI1vtcE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEEaSERSA_) +STUB("lu+-cUzjmcU", _ZN3sce7Toolkit2NP2V29Challenge7Request13SendChallengeC2Ev) +STUB("lu1qC5eP52A", sceAppInstUtilGetSubAppTitleIdForSP) +STUB( + "lu22xnp2l5I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE6resizeEj) +STUB( + "lu68yY75blI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEptEv) +STUB( + "lu775oSCss0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE4sizeEv) +STUB("lu9I7jnUvWQ", sceHmdInternalSetDemoMode) +STUB("luANJkMd9CI", _ZNK3sce2Np9CppWebApi6Common8IteratorIiEeqERKS4_) +STUB("luAVKwTECVQ", sceNpSnsIntYtGetTitleAccessToken) +STUB("luJN01QyrnE", + _ZN3sce2Np9CppWebApi14SessionManager2V129PostPlayerSessionsRequestBody17getPlayerSessionsEv) +STUB("luLH2PzqTIM", _ZN7WebCore24ImmutableStylePropertiesD2Ev) +STUB("luMlXp-022c", WKKeyValueStorageManagerGetModificationTimeKey) +STUB( + "luQyI5i2GK0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE6resizeEj) +STUB("luULJAkiLXg", _ZN3sce2Np9CppWebApi12Leaderboards2V14UserC1EPNS1_6Common10LibContextE) +STUB("luXC7N4AUUk", WKUserMediaPermissionRequestAllow) +STUB( + "luYHgRKzlGk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEEdeEv) +STUB( + "luaN6xA1bn8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEneERKS9_) +STUB( + "lubNiMYxAwM", + _ZN9Inspector18InjectedScriptBase15checkCallResultERN3WTF6StringENS1_6RefPtrINS1_8JSONImpl5ValueENS1_13DumbPtrTraitsIS6_EEEERNS4_INS_8Protocol7Runtime12RemoteObjectENS7_ISC_EEEERNS1_8OptionalIbEERNSG_IiEE) +STUB( + "luc9EbZ-YAQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEED1Ev) +STUB("lucmy0T5yYw", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10ContainersEEC2Ev) +STUB( + "ludyIYwcPDs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEcvbEv) +STUB("ludyUJShlO0", + _ZN7WebCore37CrossOriginAccessControlCheckDisabler39setCrossOriginAccessControlCheckEnabledEb) +STUB("lueAbOqz2Kc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEEmmEi) +STUB( + "luf3Hn69K04", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEC1ERKS7_) +STUB("luqF4m0EjWA", sceNpGriefReportInit) +STUB( + "lurIhUVgRiY", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_15PlayedWithStoryENS1_15AppSTLAllocatorIS5_EEEEC1Ev) +STUB("lux7n+Xa3Hc", _ZN3JSC7Symbols35stringIteratorFieldIndexPrivateNameE) +STUB( + "luxAKVOa2KA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE21intrusive_ptr_sub_refEPS7_) +STUB( + "luzd+DEBZPk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "lv5g-R1jUWU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEED2Ev) +STUB( + "lv6o+bEwlK8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEEaSERKSA_) +STUB( + "lv8shXa7WLQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEC1EPKS8_) +STUB("lvD71jP2Mnk", sceKernelMunlockall) +STUB("lvDhwhUC05E", _sendto) +STUB( + "lvMnrGOy-Lo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEEaSERSA_) +STUB("lvNClhNHzxI", sceVoiceQoSCreateLocalEndpoint) +STUB("lvNe25HT2m4", mono_aot_Sce_Vsh_Accessorplt_end) +STUB( + "lvNklfLY5kA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEED2Ev) +STUB( + "lvUU-CFWGd8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEED2Ev) +STUB("lvVs5XsGkaU", __asan_stack_free_7) +STUB("lvWMW6vEqFU", sceAudio3dCreateSpeakerArray) +STUB("lvdDd40gEWs", + _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse22setLastPausedTimestampEPKc) +STUB("lvek8w7yqyE", sceNpHeapGetAllocator) +STUB( + "lvljpaO7euQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE5beginEv) +STUB( + "lvo0kRKvkW4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEEaSERKSA_) +STUB( + "lvohNRoP+vs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEC2EPS8_) +STUB("lvsjPQ8LMH0", LoginMgrInitialize) +STUB( + "lvsv4Apsv64", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEEptEv) +STUB( + "lvvSKVeGhUg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEC2EPNS2_10LibContextE) +STUB("lvvY3mc5Vss", WKContextResetServiceWorkerFetchTimeoutForTesting) +STUB("lvw1tvNIyoU", + _ZN7WebCore17PageConsoleClient10countResetEPN3JSC14JSGlobalObjectERKN3WTF6StringE) +STUB( + "lvwFXWlefao", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEE21intrusive_ptr_sub_refEPS7_) +STUB("lw+2zs8ZHm0", mono_method_get_index) +STUB( + "lw--Qf5v6ws", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB( + "lw0ha6jnVCE", + _ZN3sce2Np9CppWebApi14ConnectAccount2V215AccountLinksApi28ParameterToDeleteAccountLink12setpartnerIdEPKc) +STUB("lw0qrdSjZt8", sceAudio3dPortAdvance) +STUB( + "lw6arVBrcoM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("lw7Gi6FPEas", il2cpp_resolve_icall) +STUB("lw7JZzZnxX8", unum_close_67) +STUB("lw7iv+4KiV4", _ZTVN15AbstractStorage14YoutubeContentE) +STUB("lwLheZe67v0", WKRelease) +STUB("lwMQRl1HNIw", _ZN3sce2Np9CppWebApi7Matches2V113RequestMember11setPlayerIdEPKc) +STUB("lwQpbDXKpbg", sceRegMgrDrvGetEntCnt) +STUB("lwS-7y3jcBI", sceAmprAmmSubmitCommandBuffer) +STUB( + "lwSGEuJJb+A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "lwXslYdmjdU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEC2EPS6_PNS2_10LibContextE) +STUB("lwZZL1IghHU", _ZN10Deprecated12ScriptObjectC2EPN3JSC14JSGlobalObjectEPNS1_8JSObjectE) +STUB("lwcQhAJGEww", _ZN3JSC8JSBigInt6s_infoE) +STUB( + "lwdJ69Qb0IQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEEC1ERKSA_) +STUB("lwmLIBmmvCY", _Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm13IaPerfCounterE) +STUB("lwuZGYakEII", mono_aot_Mono_Data_Sqlitemethod_addresses) +STUB("lx9ZDEcHdMY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session8SessionsEED1Ev) +STUB( + "lxBxdehoyCc", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsC1EPNS1_6Common10LibContextE) +STUB("lxFUVuXU8-s", sceDataTransferTargetRequestSendSsoNew2Old) +STUB("lxH0PZ+dW2E", _ZN7WebCore18AdClickAttribution22parseConversionRequestERKN3WTF3URLE) +STUB( + "lxLmA2gareo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEC2EPKS8_) +STUB("lxNDPDnWfMc", sceNpTusGetMultiUserDataStatusA) +STUB( + "lxNt+gaRxqk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEplEm) +STUB( + "lxPYcFwFTaI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE5clearEv) +STUB("lxQejsuYyCw", _ZN3sce2Np9CppWebApi7Matches2V119RequestInGameRoster10unsetTeamsEv) +STUB( + "lxVugIkqghw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE7popBackEv) +STUB("lxXflJT5qpo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEEC2Ev) +STUB("lxail8CxrHk", curl_multi_timeout) +STUB( + "lxeSW7DArbs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEEC2ERKSA_) +STUB("lxkF5aDz8Vg", scePktMgrRecvDeciPacketBySocket) +STUB( + "lxmFR-5pepY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEED1Ev) +STUB("lxo162czs6I", sceAvSettingGetHdmiConnectDisconnectNum) +STUB("lxtHJMwBsaU", sceNpWebApi2PushEventRegisterPushContextCallback) +STUB("lxtXq6qmrC8", _ZN4IPMI4impl10ClientImplD2Ev) +STUB("lxwnew9-clE", _ZN7WebCore8Document19removeAudioProducerERNS_13MediaProducerE) +STUB("ly+OVnm43zM", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEED2Ev) +STUB("ly+dhAI5ijY", delegate_virtual_invoke_27_p) +STUB("ly0dUDP-HEM", _ZN3sce7Toolkit2NP2V24Auth8AuthCodeD1Ev) +STUB("ly6mnTvew0U", _ZN7WebCore13JSDOMRectList15subspaceForImplERN3JSC2VME) +STUB( + "ly7tin0mTNc", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanity9setlocaleEPKc) +STUB( + "lyCmYr5pbZU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEC2Ev) +STUB( + "lyDzpTI5dWM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEED2Ev) +STUB("lyGfjqRqFDo", _ZTIPKg) +STUB( + "lyKbR8AEuG4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE3endEv) +STUB("lyNTbSBDvZU", bemp2sys_tsdecoder_sendmessage) +STUB("lyPvxnyBgdY", sceLibSecureHashDeleteContext) +STUB("lyTHl5vwovw", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils16NetStateDetailedEE3getEv) +STUB( + "lyUHliB6-6s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEE5resetEPS9_) +STUB( + "lyZ7mGQgUAE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEmmEv) +STUB("lybUu1ZmtaI", _ZN3JSC18GCActivityCallbackC2EPNS_2VME) +STUB("lybyyKtP54c", readdir) +STUB( + "lydPjwJQufI", + _ZN3sce2Np9CppWebApi7Matches2V120RequestMemberFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_13RequestMemberEEE) +STUB( + "lyijf5pPuTQ", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToSetMultiVariablesByUser12setaccountIdEPKc) +STUB( + "lyn9n3NduIc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE3endEv) +STUB("lynApfiP6Lw", _ZNKSt7codecvtIDsc9_MbstatetE9do_lengthERS0_PKcS4_m) +STUB("lyoey7tZKJA", _ZN3sce2Np9CppWebApi6Common8IteratorIdEppEv) +STUB("lz5UM9uG8w0", _ZN9Inspector22HeapFrontendDispatcherdlEPv) +STUB( + "lz6fjs6eWdo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE5clearEv) +STUB("lz9y9UFO2UU", sceFontSetupRenderEffectSlant) +STUB("lzEtlJdFYEI", _ZN9Inspector22InspectorDebuggerAgent21breakpointActionSoundEi) +STUB("lzHk963BL7g", _ZN7WebCore9FrameView28enableFixedWidthAutoSizeModeEbRKNS_7IntSizeE) +STUB("lzIgWzHltTc", _ZNK3sce7Toolkit2NP2V24Core11RequestBase14getServiceTypeEv) +STUB( + "lzJ9mi2It84", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE3endEv) +STUB("lzK3uL1rWJY", _ZNSt8numpunctIwED1Ev) +STUB("lzNKOm6wYLI", Java_org_havi_ui_HFontCapabilities_initIDs) +STUB("lzNy6QrJNW8", _ZN7WebCore28InspectorFrontendClientLocal11showConsoleEv) +STUB("lzOSUf59fmE", UCNV_TO_U_CALLBACK_SUBSTITUTE_59) +STUB("lzPV+a7qECs", _ZN3sce2Np9CppWebApi6Common6VectorImE8pushBackERKm) +STUB( + "lzQbeGRk5gU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEC2Ev) +STUB("lzSYY9OcCZE", _ZN23sceMetadataReaderWriter8KeyValue8allocateEPFPvmEPi) +STUB("lzY-wSdzA1A", rgctx_fetch_trampoline_rgctx_6) +STUB( + "lzaBmnJtK+c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEC1Ev) +STUB( + "lzcQ0kaDth0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEneERKS9_) +STUB( + "lzcQmfnbKVg", + _ZN9Inspector25DebuggerBackendDispatcher18setBreakpointByUrlElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("lzdADYp6Jvg", _ZN3WTF11Persistence5CoderINS_12AtomicStringEE6decodeERNS0_7DecoderERS2_) +STUB( + "lzhZag9cwvM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEeqERKS9_) +STUB("lzhbv9-IQMU", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessionsC2Ev) +STUB( + "lzmaJ-EKM4A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEC2Ev) +STUB( + "lzr5DruFJoo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEmmEi) +STUB("lzs6jNvh9qw", _ZN7WebCore11MediaPlayer18didLoadingProgressEv) +STUB( + "m+-8X5h0vBM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE8capacityEv) +STUB("m+-AT4JRFBw", _ZN3WTF14AtomStringImpl10addLiteralEPKcj) +STUB( + "m+-F0O+9J1c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEppEv) +STUB( + "m+-p7OuQbLs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE21intrusive_ptr_sub_refEPS9_) +STUB("m+3cpksNpBg", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_6NpUserENS1_15AppSTLAllocatorIS5_EEEED1Ev) +STUB("m+4j6LsJjs0", ublock_getCode_59) +STUB("m+4tDzhqnRo", sceAvControlSetHdmiGamutMetadata) +STUB("m+555jaUwPo", _ZN12video_parser13cVideoPathMgv16GetMaclistSuffixEv) +STUB("m+9pmB8r2WE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEEeqERKS7_) +STUB( + "m+DUqqc62GM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEE7get_refEv) +STUB("m+Ju06sMg5k", _ZN9Inspector29AuditBackendDispatcherHandlerD0Ev) +STUB( + "m+PhcyE2DYY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "m+QFDkPo5PY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEppEv) +STUB("m+RVz5IXZkM", + _ZN3JSC20throwGetterTypeErrorEPNS_14JSGlobalObjectERNS_10ThrowScopeERKN3WTF6StringE) +STUB( + "m+T7Cotw794", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "m+U7L1JFVAM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEEC1Ev) +STUB("m+dAaZ5pyO4", _ZNK3sce2np10JsonNumber6GetNumEPcm) +STUB("m+fYyX8oFqw", sceAmprAmmMeasureAmmCommandSizeMapWithGpuMaskId) +STUB( + "m+jd1UDw2Jk", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("m+n3kAr27t8", _ZNSt9basic_iosIcSt11char_traitsIcEED2Ev) +STUB("m+r54tLVz7U", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEED1Ev) +STUB("m+w6RjpjFXc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEED2Ev) +STUB("m+xB1LOH8Ig", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V15OwnerD2Ev) +STUB( + "m+yhnWW8Fvw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB("m+yord8iazk", sceShellCoreUtilStartShutdownTimer) +STUB( + "m+zt04VWTRQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEC2EPNS2_10LibContextE) +STUB( + "m-+qM6c1sfg", + _ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead21setSupportedPlatformsERKNS1_6Common6VectorINS5_6StringEEE) +STUB("m-7cQfah6KY", glGetProgramiv) +STUB( + "m-9G9mQmUMs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEC2EPNS2_10LibContextE) +STUB( + "m-Bb1F7pKeA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V112StatsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5StatsEEE) +STUB("m-Bu5Tzr82A", _LSin) +STUB( + "m-BxVsuaJzk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEEC1ERSA_) +STUB( + "m-DKSM-v7eA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "m-Dk1XfLKmk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEdeEv) +STUB("m-FWe3HamOc", _ZNK7WebCore12SharedBuffer3endEv) +STUB("m-I92Ab50W8", sceNpCommerceDialogTerminate) +STUB("m-J+WwCWVCQ", _ZN3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap14unsetIsCurrentEv) +STUB("m-LAEhzNJdE", izrule_isEquivalentTo_67) +STUB( + "m-LZsVGn3u4", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessions28setxPsnAcceptPlatformNamePs5ENS5_25XPsnAcceptPlatformNamePs5E) +STUB("m-LsKHQetWI", Java_com_sony_bdjstack_system_BDJModule_invokeTitleCallback) +STUB("m-OL13q8AI8", sceHttp2GetAuthEnabled) +STUB("m-S3-C-USvs", sceContentSearchSearchApplication) +STUB("m-VsMMa8Mqo", curl_easy_unescape) +STUB( + "m-Y0N7i0LnY", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessions33unsetxPSNSESSIONMANAGERACCOUNTIDSEv) +STUB( + "m-YORAAlSFg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEE3getEv) +STUB("m-aLrxrcxzA", _ZN9Inspector14InjectedScript13setEventValueEN3JSC7JSValueE) +STUB( + "m-dmJ1M4I4w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEC1EPS6_PNS2_10LibContextE) +STUB("m-fSo3EbxNA", _ZdaPvRKSt9nothrow_t) +STUB("m-g4fU+c+yk", mono_class_get_field_from_name) +STUB( + "m-jEOGXOtRw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEE11release_refEv) +STUB( + "m-jQqJLXYdY", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB( + "m-mTKFwmmbo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEptEv) +STUB("m-oV1ryNAqA", sceMbusCheckEvent) +STUB("m-tIQ1lTREo", _ZN15AbstractStorage17DailymotionFolder5CloseEv) +STUB( + "m-wOm6mvBP4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEE11release_refEv) +STUB("m-zPyAsIpco", sceSslEnableOption) +STUB( + "m-zq4GJkoLQ", + _ZN3sce2Np9CppWebApi14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyD1Ev) +STUB( + "m-ztfk5iCBs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE4sizeEv) +STUB("m0-OOMOcsKc", _ZN3sce2Np9CppWebApi14SessionManager2V123MemberWithMultiPlatformD2Ev) +STUB("m0O4vgMwizw", _ZN3sce7Toolkit2NP2V27Session7Request17ConsumeInvitationC1Ev) +STUB( + "m0Q+3otf0Xg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("m0W-otemmUw", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIfEC2Ev) +STUB("m0YuV8Bys6A", _ZN3JSC17createSyntaxErrorEPNS_9ExecStateERKN3WTF6StringE) +STUB("m0alrQTxjRI", _ZN7WebCore21DiagnosticLoggingKeys22backNavigationDeltaKeyEv) +STUB("m0bTFPN3yzk", EVP_PKEY_new_mac_key) +STUB("m0bqvvAjp2Y", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V117ResponseMatchTypeEEppEv) +STUB("m0cZWkr9kQQ", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setBoolean2ERKb) +STUB("m0f6FvURb3A", _ZN3JSC7Symbols25generatorStatePrivateNameE) +STUB("m0iS6jNsXds", sched_get_priority_min) +STUB( + "m0rJD4Cy83s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEC2Ev) +STUB("m0uSPrCsVdk", _Xp_sqrtx) +STUB("m0uW+8pFyaw", scePngDecCreate) +STUB( + "m0ubLWe3jyo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "m0v5kw2D8R4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEEC2ERSA_) +STUB("m0xKuqISvWY", sceLoginMgrServerClearMorpheusRequiredUserId) +STUB("m0zOt46WpiI", _ZN3JSC22DeferredWatchpointFireD2Ev) +STUB("m11UweHO6Hk", utrie2_enumForLeadSurrogate_67) +STUB("m15Jwox-mic", _ZN3sce2Np9CppWebApi6Common6VectorIlE8pushBackERKl) +STUB( + "m15hdRdqlLw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEppEv) +STUB("m18bTUNF-0g", FT_GlyphLoader_CreateExtra) +STUB("m1DfNRstkSQ", sceNpScorePollAsync) +STUB("m1H6Q9a60wA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEE3getEv) +STUB( + "m1L1OUGR7ag", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEdeEv) +STUB("m1O1f8JAQ5A", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session7SessionEED2Ev) +STUB( + "m1WvyprztKg", + _ZN7WebCore27verifyVaryingRequestHeadersEPKNS_9CookieJarERKN3WTF6VectorISt4pairINS3_6StringES6_ELm0ENS3_15CrashOnOverflowELm16ENS3_10FastMallocEEERKNS_15ResourceRequestE) +STUB("m1Y7YpNH-OY", _ZNK7WebCore11MediaPlayer13requestedRateEv) +STUB("m1YErdIXCp4", sceZlibInitialize) +STUB("m1ZOyvZQDUo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEEppEv) +STUB( + "m1f4JpCA4rU", + _ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody11setSortModeERKNS3_8SortModeE) +STUB( + "m1gsPTRcLxY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEneERKS9_) +STUB("m1h-E6BU6CA", sceUserServiceGetPbtcAdditionalTime) +STUB("m1hF3PWDi34", + _ZN3WTF8JSONImpl9ArrayBase10pushObjectEONS_6RefPtrINS0_10ObjectBaseENS_13DumbPtrTraitsIS3_EEEE) +STUB("m1nD9D9LmP0", uloc_getDefault) +STUB("m1rfq6UDAMY", _ZN7WebCore9HTMLNames9footerTagE) +STUB( + "m1vJnvaksEI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "m1wD+8DqZbE", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10setString7EPKc) +STUB("m2-C4ATpzfI", WKPreferencesGetHyperlinkAuditingEnabled) +STUB( + "m21uX+GYUjo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEC1Ev) +STUB("m27H1GOOU1Y", rgctx_fetch_trampoline_mrgctx_1) +STUB("m2CDzALH31Q", sceDepthGetImage) +STUB("m2Gwc0V8Q+s", + _ZN3sce2Np9CppWebApi7Matches2V119AdditionalStatisticC1EPNS1_6Common10LibContextE) +STUB("m2KOCk55e1w", _ZN3sce7Toolkit2NP19ProductBrowseParamsC1Ev) +STUB("m2NcZQko13E", _ZN2sh13GetAttributesEPv) +STUB("m2Nl98hVWXY", mono_aot_ReactNative_Modules_Vsh_Gct_Telemetry2jit_code_end) +STUB("m2PUt1BUbwQ", _ZN4Manx11MediaPlayer4playEv) +STUB("m2PkI8YCJWc", sceNpManagerIntAddUserStateCallback) +STUB( + "m2Pm9JHAMEk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEE7get_refEv) +STUB("m2PuBAQ06e0", WKWebsiteDataStoreSetStatisticsHasHadUserInteraction) +STUB( + "m2S0+pUgP1s", + _ZN7WebCore25unwrapSerializedCryptoKeyERKN3WTF6VectorIhLm0ENS0_15CrashOnOverflowELm16ENS0_10FastMallocEEES6_RS4_) +STUB("m2S7MkdupGY", vzone_write_67) +STUB("m2Sd6gEcz9o", WKPluginInformationDisplayNameKey) +STUB("m2Z378C5GDU", + _ZN3sce2Np9CppWebApi14SessionManager2V128PostGameSessionsResponseBody15getGameSessionsEv) +STUB( + "m2cH9kRFZGk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEEC2ERKSA_) +STUB("m2fYt-s+A7E", _ZN3sce3pss5orbis9framework21PsmMainThreadCallList8RegisterEPFvPvES4_) +STUB("m2gmPnFLeck", _ZNK7WebCore16HTMLInputElement5widthEv) +STUB( + "m2iu4mOew5s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEaSERS7_) +STUB( + "m2kbaAmb9Yc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE7popBackEv) +STUB("m2lChTx-9tM", _ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2ERKSt8_Locinfom) +STUB("m2lRFfVmh-I", + _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_17AnimationTimelineE) +STUB("m2nsgcvk0ZA", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetAccountId2OnlineIdaSERS5_) +STUB( + "m2s6PJVaSBY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEE7get_refEv) +STUB("m2taGBk1rMs", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE3endEv) +STUB( + "m2yAwCs9LTM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "m2yUOypQ+7Y", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB( + "m2yZIur2btM", + _ZN7WebCore16HTMLMediaElement49bestMediaElementForShowingPlaybackControlsManagerENS_19MediaElementSession23PlaybackControlsPurposeE) +STUB("m36Os8IDTOs", sceFsUmountWorkspace) +STUB("m38rIXXKp48", _ZN7WebCore6CursorC1EPNS_5ImageERKNS_8IntPointE) +STUB("m3CVfyaeuNI", _ZN7WebCore11DisplayList25DrawDotsForDocumentMarkerD1Ev) +STUB( + "m3HLkdP0ndA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEmmEv) +STUB("m3OOLyi6YTI", ucal_getWindowsTimeZoneID_67) +STUB("m3TcEKpIGo4", _ZN7WebCore10ISOFullBoxC1Ev) +STUB("m3WSppWmx-g", + _ZN3JSC8JSObject19putDirectMayBeIndexEPNS_14JSGlobalObjectENS_12PropertyNameENS_7JSValueE) +STUB("m3YXlHlU3j4", _ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE7reserveEi) +STUB("m3YkcPqYBzQ", _ZN3sce3pss5orbis9framework8PsmEvent8RegisterEiPFvRKNS2_12PsmEventDataEPvES7_) +STUB("m3ZM9sjHHTc", AnnotateIgnoreWritesBegin) +STUB("m3hmck-mN8w", ures_openDirect_67) +STUB("m3jEtGAP9jE", _ZN3sce2npeqERKNS0_10NpOnlineIdERK13SceNpOnlineId) +STUB("m3lbV6O14GM", mono_jit_init_version) +STUB("m3plRJj6PGE", _ZN7WebCore24CoordinatedGraphicsLayer21flushCompositingStateERKNS_9FloatRectE) +STUB( + "m3t8OZSFd9A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEED1Ev) +STUB( + "m3uWDAjT+Pc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEptEv) +STUB("m3wvXPX9lSA", _ZNK7WebCore3URL4hostEv) +STUB( + "m3xSADN05oQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB("m3xt4saq6do", rgctx_fetch_trampoline_rgctx_21) +STUB( + "m41ueZ8BO1k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEaSERS8_) +STUB("m47juOmH0VE", sceAppContentGetAddcontInfo) +STUB("m4JiU8k2PyI", sceNpManagerIntCheckNpAvailability) +STUB("m4JmB4l07bY", JSGlobalObjectInspectorControllerConnectFrontend) +STUB("m4KLhkCV1Pk", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_7TssDataEE3getEv) +STUB("m4S+lkRvTVY", __popcountdi2) +STUB( + "m4S5+d2Kpj4", + _ZN9Inspector17ScriptDebugServer19handleBreakpointHitEPN3JSC14JSGlobalObjectERKNS1_10BreakpointE) +STUB("m4V2R4vHnMM", + _ZN9Inspector22InspectorDebuggerAgent27scriptExecutionBlockedByCSPERKN3WTF6StringE) +STUB("m4VaXZE7J6U", WKContextConfigurationSetNetworkProcessPath) +STUB("m4ViMe2r67Y", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS12TusVariablesEE19setCustomReturnCodeEi) +STUB("m4cofzsxUWY", sceCompositorSetEndOfFrameCommand) +STUB( + "m4dGhQ91P3o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "m4fm7Kk8kTI", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi42ParameterToPutGameSessionsSearchAttributes45setputGameSessionsSearchAttributesRequestBodyENS1_6Common12IntrusivePtrINS3_42PutGameSessionsSearchAttributesRequestBodyEEE) +STUB("m4fssAbVP-k", WKInspectorShowResources) +STUB( + "m4k93Xh7-Yw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE5beginEv) +STUB("m4kEqv7eGVY", _ZNSt8numpunctIwEC2EPKcmb) +STUB("m4mV-oApjIQ", _ZN7WebCore8SVGNames11animateAttrE) +STUB("m4ohLv1Fdes", sceOpusDecCtl) +STUB("m4oxk3QAGyE", _ZN3JSC8Debugger21deactivateBreakpointsEv) +STUB( + "m4rNBUqwKxQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEE11release_refEv) +STUB("m4utXlk4Qag", _ZN7WebCore20throwSetterTypeErrorERN3JSC9ExecStateERNS0_10ThrowScopeEPKcS6_) +STUB("m4xXJ1MRvwc", rgctx_fetch_trampoline_mrgctx_34) +STUB("m5+q1dyt2WM", _ZN7bmalloc3api21commitAlignedPhysicalEPvmNS_8HeapKindE) +STUB("m5-2bsNfv7s", scePthreadCondattrInit) +STUB( + "m54vQxuBF4I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "m58fPBFnQqI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("m58lpCIGa1o", WKUserContentURLPatternCreate) +STUB("m5CYKX20wfg", sceSystemServiceInitializePlayerDialogParam) +STUB("m5DU6GnjSlo", + _ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody17setNpServiceLabelERKj) +STUB( + "m5FaOBiw1vQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEEaSERSA_) +STUB("m5J28iw-QPs", _ZN3sce4Json5Value11referStringEv) +STUB("m5KvMLs-5fE", + _ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody17unsetNeedsTmpRankEv) +STUB("m5OsHQx9Ni4", sceShellCoreUtilGetOptimizationStatus) +STUB( + "m5Rg7hZg2VE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEC2EPS8_) +STUB("m5UNbMUJuto", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEC2ERKS7_) +STUB("m5Whdn6BxAQ", + _ZN3sce2Np9CppWebApi7Matches2V123RequestTeamMemberResult8fromJsonERKNS_4Json5ValueE) +STUB("m5YN2mkmFU0", uloc_getISOLanguages) +STUB("m5Z4IOVKjmw", _ZL20check_type_signaturePN10__cxxabiv115__cxa_exceptionEPKSt9type_infoRPv) +STUB("m5iqwxcv7As", rgctx_fetch_trampoline_mrgctx_20_p) +STUB("m5kDI-aUKzQ", + _ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody21ticketAttributesIsSetEv) +STUB( + "m5qxOoGYLMk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEC2EPS6_PNS2_10LibContextE) +STUB( + "m5rMIG2iPgc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEC2EPNS2_10LibContextE) +STUB( + "m5rOqRBcuMI", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("m5sY-h3Z6sM", + _ZN3sce2Np9CppWebApi14SessionManager2V125ResponseGameSessionPlayerC1EPNS1_6Common10LibContextE) +STUB( + "m5sZ8sSDcHI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEEC1Ev) +STUB("m5wN+SwZOR4", putchar) +STUB("m5wkuUjJRCU", _WLdtob.xdigs) +STUB("m5zDvD-LLjo", sceKernelKernelHeapUsage) +STUB("m6-pQhrSRbQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE8copyFromERKS7_) +STUB("m65uKv7IAkI", sceShellCoreUtilSetGnmCompositorOnScreenProfilerFlag) +STUB("m68pZL3KqAM", _ZN3sce3pss4core8graphics14NativeGraphics18GetGraphicsContextEv) +STUB( + "m6B-fJjS3F0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEED1Ev) +STUB("m6F7sE1HQZU", sceNpScoreGetFriendsRankingForCrossSaveAsync) +STUB("m6GXObHRdG8", _ZN3sce7Toolkit2NP2V27Ranking7Request11SetGameDataD2Ev) +STUB("m6N28jBZv3E", _ZN13MsvMetaEditor10updateTextEPKcS1_tj) +STUB("m6N4DtlBu9c", _ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetail18getProfilePicturesEv) +STUB("m6OGa5s8HSo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEC2ERS7_) +STUB("m6P3pKQ-k38", _ZN3sce7Toolkit2NP2V212EventsClient7EventIdD2Ev) +STUB( + "m6Xtv+Ait6A", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeOnlineId2AccountIdBatchD2Ev) +STUB( + "m6e7JjBuB30", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEE5resetEPS6_) +STUB( + "m6g7uJ33DHQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEmmEv) +STUB("m6m0xWGahWw", _ZNK7WebCore9GLContext7displayEv) +STUB( + "m6o+BHqSlG8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEED1Ev) +STUB( + "m6oeoFx4gOA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEneERKS9_) +STUB("m6opsclVqZU", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_21GameCustomDataMessageEED2Ev) +STUB("m6paE6+CiTA", sceDebugIpmiGetServerKidList) +STUB("m6peTW44694", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V115CompetitionTypeEEC1Ev) +STUB("m6rjfL4aMcA", _ZNKSt7codecvtIDic9_MbstatetE9do_lengthERS0_PKcS4_m) +STUB("m6uU37-b27s", _ZSt9_LStrcollIwEiPKT_S2_S2_S2_PKSt8_Collvec) +STUB( + "m7+o9cTFH1w", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBody14getInvitationsEv) +STUB( + "m7-K+yVDhE8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE3endEv) +STUB( + "m7-mQSQzDWE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("m70xPQe-Tjk", _ZN23sceMetadataReaderWriter22StorageParserInfoTable6updateEj) +STUB("m798m5OYA8I", _ZNK3sce2Np9CppWebApi6Common6VectorIdE5beginEv) +STUB("m7CluO-xmkQ", scePerfTraceSpmGetNclk) +STUB("m7EXDQRv7NU", CA_MGMT_free) +STUB( + "m7EjiXs9OSI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "m7LCeI9+ehg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("m7OSrfA7K+s", _ZN15AbstractStorage7ContentD2Ev) +STUB( + "m7UpEhONxMA", + _ZN7WebCore9FrameView28traverseForPaintInvalidationENS_15GraphicsContext24PaintInvalidationReasonsE) +STUB("m7ZpRaRI5LM", ures_getKey) +STUB( + "m7buRwnSJmQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE10setContextEPNS2_10LibContextE) +STUB( + "m7eCWBcQ8B4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEmmEv) +STUB( + "m7eYXxxVnVA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEaSERS7_) +STUB("m7iLTaO9RMs", cosh) +STUB("m7od1ikoZpQ", RtcGetCurrentNetworkTickNative) +STUB("m7qAgircaZY", _ZNSt7_MpunctIcE5_InitERKSt8_Locinfob) +STUB("m7r19sDkltM", g_timer_elapsed) +STUB("m7ykSknwnRg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEED1Ev) +STUB("m7z1nnVU3D8", sceSlimglServerStartWithSocket) +STUB( + "m840Mm9FWQI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE7reserveEi) +STUB( + "m86JlztZT0U", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEeqERKS9_) +STUB("m87BHxt-H60", sceNpGameIntentInitialize) +STUB("m87dkWET7+Q", WKPreferencesCopyMediaContentTypesRequiringHardwareSupport) +STUB( + "m88g4YqaQTo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEE11get_deleterEv) +STUB( + "m89FFZ56thE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("m8AIQvFZFZQ", RAND_status) +STUB( + "m8J4LErRBS8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEED1Ev) +STUB("m8JHnyIOhiY", _ZN7WebCore24CoordinatedGraphicsLayerD0Ev) +STUB("m8KLvqm+xF4", sceTextToSpeechPauseImpl) +STUB("m8LRIJnuqfw", _ZN7WebCore9HTMLNames8roleAttrE) +STUB("m8NTc3Qr2MI", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request15PostInGameStoryC2Ev) +STUB("m8Py4-JilYA", _ZN4Manx5MutexD1Ev) +STUB("m8Qg8VAe++Q", AES_encrypt) +STUB( + "m8QzC6ghMnE", + _ZN9Inspector18InspectorHeapAgent27didCreateFrontendAndBackendEPNS_14FrontendRouterEPNS_17BackendDispatcherE) +STUB("m8RVHoMu39g", uenum_reset_67) +STUB("m8VtSd5I5og", sceUserServiceSetDiscPlayerFlag) +STUB( + "m8avhpJzn4s", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEplEm) +STUB( + "m8bYmEcUMvM", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB( + "m8dkD1Kdk9U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEE11release_refEv) +STUB("m8h5wdC8xOw", _ZNK7WebCore6Editor6clientEv) +STUB("m8oc1t4Rp28", scePatchCheckerInitialize) +STUB( + "m8onZcOiqBo", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectatorC2ERS5_) +STUB( + "m8qkf3vGT9o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEaSERKS9_) +STUB("m8rqXLGqxH4", _ZNK7WebCore14LoaderStrategy12ongoingLoadsEv) +STUB( + "m8rrQ8edDn4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "m8sGa8oLVec", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE21setOnFinishedCallbackEPFvliSB_PvEPFvliSG_ESG_) +STUB( + "m8sLblhGBgU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEppEv) +STUB( + "m8yDiLutYKY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEC2Ev) +STUB("m96WzIHunT8", sceFiosTraceTimestamp) +STUB("m99ARFeStx8", _ZN15AbstractStorage14FacebookFolder4OpenENS_8ItemTypeE) +STUB("m99zKY4J6BQ", _ZNK7WebCore16TrackPrivateBase10trackIndexEv) +STUB( + "m9GOii+QADs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEC1EPS7_PNS2_10LibContextE) +STUB("m9JzZSoDVFY", sceNpSetPlatformType) +STUB("m9L3O6yst-U", sceNpGetParentalControlInfoA) +STUB("m9XZnxw9AmE", sceNpTusGetMultiSlotVariableForCrossSave) +STUB( + "m9Z0fi0UrDA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("m9d0vmu44PI", _ZN3WTF18FunctionDispatcherD1Ev) +STUB("m9dGPgf55j8", sceCtrlpRegisterEventCB) +STUB("m9eWcUpXsvU", __tsan_atomic32_fetch_xor) +STUB( + "m9llx59RRFI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEppEi) +STUB("m9nEKMAp80k", _ZN3WTF22TextBreakIteratorCache9singletonEv) +STUB( + "m9pEMwEBy+I", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUseraSERS5_) +STUB("m9qXOH+XWBM", _ZN7WebCore23createDragImageForRangeERNS_5FrameERKNS_11SimpleRangeEb) +STUB("m9wbJybzV5E", _ZN3sce2np9HttpTrans4InitEPNS0_12HttpTemplateEiPKcS5_tS5_m) +STUB("m9zbs5hsSUQ", __clang_call_terminate) +STUB( + "mA00Xm1g-80", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEC1EPNS2_10LibContextE) +STUB("mA0RfEpzpp8", BIO_new_socket) +STUB("mA0zsbqm+kA", sceNpBandwidthTestInitStartUpload) +STUB("mA34DPndHuk", sceNpManagerIntGetWebAppTokenByRequest) +STUB("mA5JBoo2CgY", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V15Error8fromJsonERKNS_4Json5ValueE) +STUB( + "mA6CUjm+iFU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEptEv) +STUB("mA9-3pYGy08", + _ZNK3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends8getlimitEv) +STUB("mAAi+MJkvKI", _ZN7WebCore23CoordinatedImageBacking10removeHostERNS0_4HostE) +STUB( + "mAB65g8lEf4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEC2EPS8_) +STUB( + "mAChuMwSi9o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEmmEi) +STUB("mACpB5pv-bA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE8copyFromERKS7_) +STUB("mAJiQGwBKOs", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead15maxPlayersIsSetEv) +STUB( + "mAL5-3Pzcxw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("mAPVf1I2+is", sceDebugIpmiGetSessionInfo) +STUB("mARrHQ6vFV8", _ZN7WebCore17HTMLOptionElement11setSelectedEb) +STUB("mASC9qTNl3g", _ZN3sce2np14JsonDocBuilder10GetBufSizeEv) +STUB( + "mAXGE3IMeXw", + _ZN3JSC23JSModuleNamespaceObject3putEPNS_6JSCellEPNS_9ExecStateENS_12PropertyNameENS_7JSValueERNS_15PutPropertySlotE) +STUB("mAZPRnqh048", sceVnaGenerateTelemetrySessionId) +STUB("mAjGpyN7i9s", _ZN7WebCore12JSAudioTrack4infoEv) +STUB( + "mAkS2lr+ftg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB( + "mAv+egTgXkk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEEaSERS9_) +STUB( + "mAwXCpkWaYc", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERd) +STUB("mAxEMYkmByI", il2cpp_method_get_object) +STUB( + "mB3-pVyXXps", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEEdeEv) +STUB("mB7Yek45KO8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEE5resetEPS5_) +STUB( + "mBBMC4Bgw0M", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectatorD2Ev) +STUB( + "mBCLU5LE2pU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE7reserveEi) +STUB( + "mBDAPbGZajM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEE7add_refEv) +STUB("mBE-rCYG6xg", _ZN7WebCore11MediaPlayer16removeVideoTrackERNS_17VideoTrackPrivateE) +STUB( + "mBJg9I82WnE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEdeEv) +STUB("mBMPV-oC2EU", _ZNK7WebCore14ScrollableArea21scrollbarsCanBeActiveEv) +STUB("mBNLXFT1ZOc", uhash_iremove) +STUB("mBOR8lEifX0", + _ZN7WebCore23ApplicationCacheStorage20deleteCacheForOriginERKNS_14SecurityOriginE) +STUB( + "mBRcmEJrVp0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE7reserveEi) +STUB( + "mBS7+3RfZic", + _ZN3sce7Toolkit2NP12ActivityFeed9Interface12dislikeStoryEPKNS1_16LikeStoryRequestEPNS1_9Utilities6FutureIiEEb) +STUB("mBS9mviaUk8", WTFPrintBacktrace) +STUB("mBTFixSxTzQ", sceNpManagerIntGetVshAccessToken) +STUB("mBWJOp64fLM", _ZN8meta_gen13TiffRetriever11GetFirstIFDEv) +STUB( + "mBagn+lW-iM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEEptEv) +STUB( + "mBbG0YM9fEM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEED1Ev) +STUB( + "mBbVotzRGds", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEppEi) +STUB("mBd4AfLP+u8", sceKernelPwritev) +STUB("mBh9vA+yWpU", WKPreferencesSetOfflineWebApplicationCacheEnabled) +STUB( + "mBiZ96bMPYs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEE21intrusive_ptr_add_refEPS7_) +STUB("mBjDvzWpGVs", + _ZN7WebCore17DOMImplementation14createDocumentERKN3WTF6StringES4_PNS_12DocumentTypeE) +STUB( + "mBkitnalZ+Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE6resizeEj) +STUB("mBktJqWy3Nw", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS19FriendsDataStatusesEE19setCustomReturnCodeEi) +STUB("mBp5NfAktUM", _ZN3sce7Toolkit2NP2V28Matching12RoomPingTimeaSERKS4_) +STUB("mBrOTtvKHU0", scePssSoundPlayerStopEx) +STUB( + "mBvBRsrM2H4", + _ZN9Inspector21InspectorRuntimeAgent24getDisplayablePropertiesERN3WTF6StringERKS2_PKiS7_PKbRNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime18PropertyDescriptorEEENS1_13DumbPtrTraitsISG_EEEERNSA_INSC_INSE_26InternalPropertyDescriptorEEENSH_ISM_EEEE) +STUB("mBxWXq2rJMo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEED1Ev) +STUB( + "mByo+t14VCo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE3endEv) +STUB( + "mC+BDo9+Q4o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEEdeEv) +STUB( + "mC-dZXf4cdU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE5clearEv) +STUB( + "mC1CR6Iyk48", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE7reserveEi) +STUB( + "mC2LdiwwC1g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE3endEv) +STUB("mC3BKJFlbNI", sceLncUtilAcquireCpuBudgetOfInGameStore) +STUB("mC57yegC040", sceKernelIsM2DeviceAttached) +STUB( + "mC5kBK7F4rU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("mC8pNZYmjEQ", _ZNK3WTF9MediaTimemiERKS0_) +STUB( + "mCCmRAgNf1A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEE11release_refEv) +STUB( + "mCD6zzh8aEM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEaSERKS7_) +STUB("mCESRUqZ+mw", __fixunssfti) +STUB("mCEvzv4nHIg", _ZN3sce7Toolkit2NP2V29Messaging24GameDataMessageThumbnailC1ERKS4_) +STUB("mCIXittfvrw", FTA_Add_Module) +STUB("mCIjZT8nfvg", WKPageSetSuppressScrollbarAnimations) +STUB( + "mCKghZV-lLg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE8pushBackERKS8_) +STUB("mCLdiNIKtW0", sceNetConfigGetDefaultRoute6) +STUB("mCOOKVuH5+0", _ZN3sce2Np9CppWebApi7Matches2V126RequestTeamMemberStatistic8getStatsEv) +STUB("mCQIhSmCP6o", sceRudpGetOption) +STUB("mCQvGf231qg", ScePsmMonoGcOutOfMemory) +STUB("mCR32lk338U", _ZNK9Inspector14InjectedScript14wrapJSONStringERKN3WTF6StringES4_b) +STUB("mCRwgj3GtEU", _ZNK3sce2Np9CppWebApi11Matchmaking2V113ErrorResponse6toJsonERNS_4Json5ValueEb) +STUB("mCT7n6BnlQ4", ucnv_getType_67) +STUB( + "mCaN+MolnPk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEED1Ev) +STUB("mCiF9kjaxy0", _ZN3sce7Toolkit2NP19JoinPlusInputParamsC1Ev) +STUB("mCoz3k3zPmA", sceGameLiveStreamingSetServiceProviderPermission) +STUB("mCpCL9lHEIM", _ZN8Gigacage10tryReallocENS_4KindEPvm) +STUB("mCqfLfIWWuo", _ZN3sce2np11NpHttpTrans24BuildAuthorizationHeaderERKNS0_13NpAccessTokenEPcm) +STUB("mCsV7izOkjY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEptEv) +STUB( + "mCttNI8nctk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEED1Ev) +STUB("mCyTdtewGpk", udata_setFileAccess) +STUB("mCyfcnKszjM", mono_lls_init) +STUB("mCzZ2tWstrs", mono_get_boolean_class) +STUB("mCztcpS1jGs", + _ZN7WebCore15JSDOMWindowBase36fireFrameClearedWatchpointsForWindowEPNS_9DOMWindowE) +STUB("mD08+3DhtTQ", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError10getMessageEv) +STUB("mD3OeD3UdZk", sceTsEnableStream) +STUB( + "mD6efLts+kY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("mD6r3NshZyo", _ZNK7WebCore12SharedBuffer7isEmptyEv) +STUB("mD6s8HtMdpk", sceNpTusGetFriendsVariableForCrossSave) +STUB("mDE8dam-vJw", _ZN7WebCore18JSHTMLInputElementC1ERKS0_) +STUB( + "mDEWvX3en7o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "mDGzzBPLBh0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEptEv) +STUB("mDIHE-aaRaI", _ZSt22_Random_device_entropyv) +STUB("mDL+MtSW5E0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE8pushBackERKS6_) +STUB( + "mDMwxPR1f4k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE8pushBackERKS8_) +STUB( + "mDQ26kSow0A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB("mDQcxeSGoIM", sceBackupRestoreUtilCancelGetTitles) +STUB("mDTa5Vcz1fk", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container16getContentRatingEv) +STUB( + "mDTsCxnqiP4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEneERKS9_) +STUB("mDeup2ozJz4", _ZN7WebCore27ContentSecurityPolicyClientC2ERKS0_) +STUB("mDmgMOGVUqg", pthread_mutexattr_settype) +STUB("mDsC-cMyXs0", _ZN3sce2Np9CppWebApi7Matches2V111AddedPlayerD1Ev) +STUB("mDwiQvBlU90", _ZNK7WebCore16HTMLInputElement12isEmailFieldEv) +STUB("mE+Ke2wmUU4", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities14UserActivities8fromJsonERKNS_4Json5ValueE) +STUB("mE3-2kNiL3E", mono_aot_Sce_Vsh_SysfileUtilWrapperunbox_trampolines) +STUB( + "mE41OA8YLnc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEEaSERKSA_) +STUB("mE7AqrxBhzc", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V223FilterProfanityResponse8fromJsonERKNS_4Json5ValueE) +STUB( + "mEBPjw9UqoY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEED1Ev) +STUB("mEC+xJKyIjQ", scePadIsDS4Connected) +STUB("mECJLqYrOag", uprv_pow10) +STUB( + "mEJI7CKR-iI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("mEUt-phGd5E", sceNetBweSetInternetConnectionTestResultIpcInt) +STUB("mEXNRN7i8GA", _ZN7Nicosia16SceneIntegration6ClientC2ERKS1_) +STUB( + "mEZjl6qzTOI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEE7get_refEv) +STUB("mEgbc4eb3uY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEaSERKS7_) +STUB( + "mExRUI5pWJs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEC1Ev) +STUB("mEy7di8MT30", sceVideoRecordingSendCommand) +STUB( + "mEz01Gc7NJM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEE5resetEPS6_) +STUB("mF0B64O954g", FT_Stream_ReadShort) +STUB( + "mF4OZqFmL8A", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE6finishEv) +STUB("mF7u8vYxkl8", g_PS4TitleId) +STUB("mF9+FT4UKSE", SSL_CTX_set_max_proto_version) +STUB("mFBxBLtfT6Q", _calloc) +STUB( + "mFD0g-oU3bw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE7reserveEi) +STUB( + "mFDmH1ixPmw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEE11get_deleterEv) +STUB("mFGaMlruNv4", WKRenderLayerGetNormalFlowList) +STUB("mFI4WU0D3c8", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119PlayStyleProperties8fromJsonERKNS_4Json5ValueE) +STUB( + "mFLSY0+Vaa0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEC2Ev) +STUB( + "mFMEimiwfxo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "mFOO56OFuYE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEdeEv) +STUB("mFR2QN8HNVU", sceKeyboardPadEmulateOpen) +STUB("mFWjsTgMf2c", sceAppInstUtilAppInstallPsNowIcon) +STUB("mFZezLIogNI", _ZN3sce2np8JsonFile5CloseEv) +STUB( + "mFaCuGAYz1U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEC2EPS8_) +STUB("mFkAY973pGc", _ZN7WebCore17JSDOMGlobalObject15createStructureERN3JSC2VMENS1_7JSValueE) +STUB( + "mFkKFhatKyA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEmmEv) +STUB("mFldq5h75uc", mono_field_get_value) +STUB("mFmCBCBPQPw", _ZNK7WebCore26Matrix3DTransformOperation4dumpERN3WTF10TextStreamE) +STUB("mFq1M6vw-JM", ACProcessMain) +STUB("mFqTN51nwcE", _ZL23_delete_array_with_size) +STUB( + "mFtlZnCWGjI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEaSERKS7_) +STUB("mFx3dcK+S2c", _ZN7WebCore14ResourceLoader14cancelledErrorEv) +STUB("mFyV2XDaJyU", mono_class_get_fields) +STUB("mG2BEWS7I6U", _ZN3sce7Toolkit2NP29GameCustomDataGameDataRequestC1Ev) +STUB( + "mG5Qa5IYdkg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE6resizeEj) +STUB("mGAe6KVK2Gw", u_getBinaryPropertySet_67) +STUB("mGFiIm0Scn0", _ZN3JSC4Heap17acquireAccessSlowEv) +STUB("mGM-NRBuZvE", WKBundleHitTestResultGetFrame) +STUB("mGMQ9igs1LM", sceMbusResolveByPlayerId) +STUB("mGMeRKWGTL4", FT_Face_GetVariantsOfChar) +STUB( + "mGNsB4+eEjs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE7popBackEv) +STUB( + "mGPKAZ8shIs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEeqERKS9_) +STUB( + "mGPy8a31BJM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "mGUtsPaFnR4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEC2EPS6_PNS2_10LibContextE) +STUB( + "mGVI8YYoRhs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEEC1ERKSA_) +STUB("mGZVZAYs710", Java_com_sony_bdjstack_javax_media_controls_VideoSystem_init) +STUB("mGacX4duSZc", _ZNK7WebCore8Position8previousENS_16PositionMoveTypeE) +STUB("mGbAN4KaRfA", sceMusicCoreServerGetUserData) +STUB( + "mGc7UuDYnig", + _ZN3sce2Np9CppWebApi11Matchmaking2V117UserTicketFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_10UserTicketEEE) +STUB( + "mGcEHP-LiDw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEC2EPKS8_) +STUB("mGd9i+ILujA", _ZN9Inspector24RemoteControllableTarget6updateEv) +STUB( + "mGf123FoKQg", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB("mGfyLTvE+LI", sceNpSnsYouTubeDeleteRequest) +STUB("mGhdGEpOeFQ", WKPageSetMemoryCacheClientCallsEnabled) +STUB("mGriYqpliqc", + _ZNK7WebCore22EmptyFrameLoaderClient25pluginWillHandleLoadErrorERKNS_16ResourceResponseE) +STUB("mGsBNF15gDU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEptEv) +STUB( + "mGsJLBA6bXQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEEaSERKS8_) +STUB("mGsrNZGZm0k", YGNodeStyleSetMinWidth) +STUB( + "mGvMCx+l-JA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEmmEi) +STUB("mGxK+mqJW+4", _ZNK7WebCore10ScrollView18rootViewToContentsERKNS_7IntRectE) +STUB( + "mGxe6fPRxEM", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS9_PvEPFvliSD_ESD_) +STUB("mH++R5XYMFo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEEptEv) +STUB("mH-YHAtaP7I", sceUlpMgrRecvData) +STUB("mH0s73L5x28", _ZNK3JSC14ProtoCallFrame13argumentCountEv) +STUB("mH6mtmF1430", _ZN7WebCore16ResourceResponseC1ERKN3WTF3URLERKNS1_6StringExS7_) +STUB( + "mH7Cj1ZLMFA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEdeEv) +STUB( + "mH8Tulfr9mI", + _ZN3sce7Toolkit2NP2V28Matching15getRoomPingTimeERKNS3_7Request15GetRoomPingTimeEPNS2_4Core8ResponseINS3_12RoomPingTimeEEE) +STUB( + "mHDS3EJIZSw", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUserC1Ev) +STUB("mHE2Hk9Ki80", _ZThn8_N3sce2np11NpHttpTransD1Ev) +STUB( + "mHFi-WpVGHc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "mHGjK9-Tqfo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEC2EPS8_) +STUB("mHLMSAdoAJU", mono_aot_mscorlibjit_code_start) +STUB("mHLewiXwbMo", _ZN9Inspector24CanvasFrontendDispatcher16extensionEnabledERKN3WTF6StringES4_) +STUB("mHOeGccX2Og", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35ErrorC1EPNS1_6Common10LibContextE) +STUB("mHXLseAVFX8", mono_aot_Sce_Vshplt_end) +STUB("mHdZWBajm9Y", ures_getLocaleInternal_67) +STUB("mHi1gWTRwUY", _ZN25MmsFileUpdaterFsOperation10initializeEv) +STUB("mHmgH7DuMBE", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIfEmmEi) +STUB( + "mHtHPNmc+2M", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody14setCustomData1EPKvm) +STUB( + "mI+U-9d7QnQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessions28getxPsnAcceptPlatformNamePs5Ev) +STUB( + "mI-eS1uKEXo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEE11get_deleterEv) +STUB("mI0SR5s7kxE", _ZTSv) +STUB( + "mI0b--FAn5s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("mI6eF+4ovHQ", mono_thread_is_foreign) +STUB( + "mI9gZ+-T70o", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEdeEv) +STUB("mICjvgEAEEE", _ZN3sce7Toolkit2NP15AppSTLAllocatorISbIcSt11char_traitsIcENS2_IcEEEEC1ERKS7_) +STUB("mIMMM6v3k4c", EVP_PKEY_set1_EC_KEY) +STUB( + "mIMxrseJVyI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("mIdran5AG7U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEcvbEv) +STUB( + "mIil6ew0jv4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEC2Ev) +STUB("mIinAn8TvdY", _ZN3sce7Toolkit2NP2V24Core12ResponseBase8isLockedEv) +STUB( + "mIlSwqEn3gs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "mIpFV28GMDY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE6resizeEj) +STUB("mIwYqIRqOqg", _ZN7WebCore8Document16getOverrideStyleEPNS_7ElementERKN3WTF6StringE) +STUB("mJ0L9yTNZHg", mono_aot_Sce_Vsh_Orbis_CdlgServerNpCommerceunwind_info) +STUB( + "mJ6-71OOhDw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEdeEv) +STUB("mJ6StoYAloU", _ZN7WebCore21WheelEventTestTrigger21clearAllTestDeferralsEv) +STUB("mJ7aghmgvfc", sceKernelGetEventId) +STUB("mJ9Zc19qXM8", + _ZN7CoreIPC15ArgumentDecoder29decodeVariableLengthByteArrayERNS_13DataReferenceE) +STUB("mJExuVCCzMA", _ZN3sce2Np9CppWebApi7Matches2V111AddedPlayer8fromJsonERKNS_4Json5ValueE) +STUB("mJF-VraqPGw", sceFsLvdSetDiscIdentity) +STUB("mJINGL5uOck", _ZTVN9Inspector14InspectorAgentE) +STUB( + "mJK+m+niPq8", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getBoolean4Ev) +STUB("mJPaK-5KhUs", sceUpsrvUpdateDoUpdateExpBeta) +STUB( + "mJT1sR07MeE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEED1Ev) +STUB("mJXR1E6iBcs", _ZN7WebCore8SVGNames15tableValuesAttrE) +STUB("mJa3hN6azkE", _ZN13MsvMetaEditor13updateTfraBoxEi) +STUB( + "mJiD1pDdBQw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("mJioj3OMZyk", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setMixerMetadataOn) +STUB("mJjAMxMoouI", _ZNK7WebCore17FrameLoaderClient22shouldPaintBrokenImageERKN3WTF3URLE) +STUB("mJlVV44ycU0", sceImeBackendDeleteCharacter) +STUB("mJnAAK7WYR0", fuse_req_userdata) +STUB( + "mJnPjrbwO5g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEEC1ERKSA_) +STUB("mJpU4Rt4Dk8", tiny) +STUB( + "mJvAxczyEGA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEC2Ev) +STUB( + "mJvY+wLYP2c", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser25hasusePlayerSessionFilterEv) +STUB( + "mJzkrD40Y2U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEC2EPS8_) +STUB( + "mK1dJScTNSU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEE7get_refEv) +STUB( + "mK7JXNIys+k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEC2Ev) +STUB("mKA4m9Tc6-4", bdf_driver_class) +STUB( + "mKAqtHHSRGM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEC1EPNS2_10LibContextE) +STUB( + "mKBe1Z57kvI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEptEv) +STUB( + "mKBpujaUpIg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("mKEAx7QnPeg", sceCompositorMapAnotherProcess) +STUB( + "mKGWP+-5zFE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEEC2ERSA_) +STUB("mKGqVK1SwFk", sceNpManagerIntGetVshToken) +STUB("mKK1NJYJNcQ", _ZNK7WebCore11PageOverlay6boundsEv) +STUB("mKS1nPuA-8I", _ZN3sce2Np9CppWebApi14SessionManager2V130RequestPlayerSessionInvitationD1Ev) +STUB("mKVNPzmu8dc", + _ZN3sce2Np9CppWebApi14SessionManager2V121RepresentativeFactory7destroyEPNS3_14RepresentativeE) +STUB("mKWRtVdKExc", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_23NpSessionInvitationInfoEE17getAdditionalInfoEv) +STUB("mKa8scOc4-k", sceHmdReprojectionStartWideNearWithOverlay) +STUB("mKaphQVePT4", mono_aot_System_Net_Http_WebRequestjit_code_start) +STUB("mKc-BBJE-C0", _ZN9Inspector28InspectorScriptProfilerAgentC2ERNS_12AgentContextE) +STUB("mKgMjXKgjQ8", monoeg_g_filename_from_uri) +STUB("mKhVDmYciWA", floorf) +STUB("mKjbE1OtIP4", _ZN3sce2Np9CppWebApi7Matches2V15Error14setReferenceIdEPKc) +STUB( + "mKjoxCggOjo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE5emptyEv) +STUB("mKnkHtudXvM", _ZNK7WebCore10ScrollView10layoutSizeEv) +STUB("mKnx5sHhxhY", _ZN3WTF14FileSystemImpl11writeToFileEiPKci) +STUB("mKoTx03HRWA", pthread_condattr_init) +STUB("mKqK1QDP4A4", _ZN7WebCore21MediaRecorderProviderD0Ev) +STUB("mKxDjcOwPe0", uprv_decNumberNextMinus_67) +STUB( + "mL1o29NTU-Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEE11release_refEv) +STUB( + "mL1p7w0rMaw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEppEv) +STUB( + "mL6-bt25dYQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEED1Ev) +STUB("mL8NDH86iQI", sceKernelMapNamedFlexibleMemory) +STUB( + "mLDEO5-ycJA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEED1Ev) +STUB("mLDfb0Bl+A8", WKNotificationCopyBody) +STUB("mLEBRnmB7io", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEE3getEv) +STUB("mLHS0Q4GV-o", _ZN3WTF10StringImpl17createFromLiteralEPKc) +STUB("mLOiEi-xKxY", isobmf_box_getmember_length) +STUB("mLRzKdIDwiU", sceCamera2GetConfig) +STUB("mLUbwaxgyJs", _ZN7WebCore31equalIgnoringFragmentIdentifierERKNS_3URLES2_) +STUB("mLVL7N7BVBg", sceGnmUpdatePsShader350) +STUB("mLVdNCQJmJ8", _ZN7WebCore15PlatformDisplay13sharedDisplayEv) +STUB("mLXQ6KRFdu4", sceCesSbcToUtf32le) +STUB("mLfgWSYY3pY", _ZN7bmalloc15IsoHeapImplBaseD0Ev) +STUB("mLv3OywuMTk", WKPreferencesGetShouldDisplayCaptions) +STUB("mLxBS7nHyT4", vzone_useDaylightTime_67) +STUB( + "mLxIRUZyHHU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEEdeEv) +STUB("mM4OblD9xWM", _LTan) +STUB("mM8Mt+tfFr4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching5RoomsEE5resetEv) +STUB("mMBPY4+LaAo", _ZN9Inspector20InspectorTargetAgent6resumeERN3WTF6StringERKS2_) +STUB("mMEITO85Gh4", mono_aot_Sce_Vsh_Db_Sharedplt_end) +STUB("mMP-Uc07EJQ", delegate_virtual_invoke_1_p) +STUB("mMPu4-jx9oI", _ZNSt15_Num_float_base5trapsE) +STUB("mMQNFe5QF8A", GCC_except_table349) +STUB( + "mMSiwvb+dOI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEC2Ev) +STUB("mMSkjbh+0VI", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getBoolean6Ev) +STUB("mMUfpTLzhLs", WKContextConfigurationCopyOverrideLanguages) +STUB( + "mMZnvQlxzbU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEeqERKSA_) +STUB("mMcB2XIDoV4", sceHttpSetRecvBlockSize) +STUB( + "mMj-xysJyaY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEE11release_refEv) +STUB( + "mMmKapbpR+E", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "mMqXb3b9hWw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEE11release_refEv) +STUB("mMurGRP1v0g", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIfEC1EPKf) +STUB( + "mMyiB9Ko010", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEED2Ev) +STUB( + "mMyvDodUdvI", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData17getnpServiceLabelEv) +STUB( + "mMz8mLitVqk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE6resizeEj) +STUB( + "mMzuUh4995E", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEneERKS9_) +STUB( + "mMzyHOimMgc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "mMzzkuyuVPo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEaSERKS9_) +STUB("mN+ZoSN-8hQ", FinalizeImeModule) +STUB( + "mN7g7k5EBTU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEC2EPS8_) +STUB( + "mN8A9vPEbs8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEptEv) +STUB("mNDMTLdRYR8", eglReleaseThread) +STUB("mNDXnwKHKI0", __tsan_unaligned_write2) +STUB("mNFbFFiI-7A", sceSdmaFinalize) +STUB( + "mNGKxhaFJ0k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEC2ERKS7_) +STUB("mNGUNa7RMc0", uhash_hashChars) +STUB("mNIajby8IWQ", _ZN7WebCore15ActiveDOMObjectD0Ev) +STUB("mNN4J+QhVcQ", rvOK) +STUB("mNNKaSxKjRU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth8AuthCodeEED1Ev) +STUB( + "mNToTTzBx5U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE5beginEv) +STUB( + "mNVaOpyS+ts", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEC1ERKS7_) +STUB( + "mNW0O+sZdFs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEEC1ERSA_) +STUB( + "mNZsq-0aHN4", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V122FrequentlyMutedFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_15FrequentlyMutedEEE) +STUB("mNan6QSnpeY", sceHttpAddCookie) +STUB( + "mNazzcvpZ5k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEmmEi) +STUB("mNk6FfI8T7I", + _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE5_FputES3_RSt8ios_basecPKcmmmm) +STUB("mNmvZ+wLzEs", _ZN7WebCore9Scrollbar12mouseEnteredEv) +STUB("mNnB2PWMSgw", sceUserServiceIsKratosPrimaryUser) +STUB("mNnRj+T0Jl0", _ZN7WebCore11DisplayList22BeginTransparencyLayerC1Ef) +STUB("mNr8loz8S-U", _ZN3sce3pss5orbis5video14VideoPlayerVcs24VideoCoreCancelLoopRangeEv) +STUB( + "mNsSccPgFSQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "mNvUTnGWJs8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEC2EPS9_) +STUB("mO0Zvb8sfUo", _ULx86_64_init_mem_validate) +STUB( + "mO3PMbO1D8Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE8pushBackERKS8_) +STUB("mO4yqVDLBTQ", _ZNK3JSC8Profiler8Database4toJSEPNS_9ExecStateE) +STUB("mO8NB8whKy8", sceLibcPafMspaceMallocStats) +STUB("mOBKWn-eJc0", _ZN9Inspector28InspectorScriptProfilerAgentnwEm) +STUB( + "mOCw9c8n7Z4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("mODyaCpyDnM", _ZNK3sce3Xml3Dom8Document7getRootEv) +STUB("mOEO3ETcznk", mono_aot_Sce_Vsh_Passcodejit_code_end) +STUB( + "mOEsDoMenDU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "mOIFD-LYnlQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEED2Ev) +STUB("mOJJLx3R04I", _ZN7WebCore18PlatformTimeRangesaSERKS0_) +STUB( + "mOPbmHu27Rs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEEdeEv) +STUB("mOQZbw5ZIPs", _ZN7WebCore15CSSGroupingRule10deleteRuleEj) +STUB("mOUkgTaSkJU", sceNetConfigEtherGetLinkMode) +STUB("mOYSxu5fXAA", ucnv_countStandards_67) +STUB( + "mOaTFkC2uCE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "mOeCZxNBPys", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "mOfZ3NM9O88", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V232WebApiErrorResponse_errorFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_25WebApiErrorResponse_errorEEE) +STUB("mOmEf-jKSh8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEC1ERKS7_) +STUB("mOnVPtV0iu8", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_19UserRankInformationEE3getEv) +STUB("mOnfZ5aNDQE", _Stollx) +STUB( + "mOsoQCOux20", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB( + "mOvgKvu9vxQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "mP-lhKwvOxE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("mP1OZzqFTKI", vm_send_PatchCallsite) +STUB( + "mP2+rtrWfPk", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_28ActivityFeedSharedVideoStoryENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB("mP2ZcYmDg-o", sceHmdGetDistortionParams) +STUB("mP31WHwSVjQ", sceMbusSetProxy) +STUB( + "mP8nYhg1Y3s", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEeqERKS9_) +STUB("mPASJVwxnsE", uloc_isRightToLeft_67) +STUB( + "mPB8XVQtAfA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEC2EPS6_PNS2_10LibContextE) +STUB("mPBCJsT0YbA", mono_aot_System_Resources_ResourceManagerunbox_trampolines) +STUB("mPIuvpUHm18", _ZNK7WebCore9TreeScope14getElementByIdERKN3WTF10AtomStringE) +STUB("mPKVhQqh2Es", sceHttp2SetCookieMaxNum) +STUB("mPMWkobqS6A", _ZN7WebCore9HTMLNames14ondragoverAttrE) +STUB("mPN01lKHg0g", glGetTexParameterfv) +STUB( + "mPR4hB6SVQo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE5emptyEv) +STUB("mPRFA5CE48g", glDeleteBuffers) +STUB("mPTDt67f7lU", _ZN3sce3pss4core7runtime6serial16InitializeCsharpEv) +STUB("mPW0ZpjRwEg", _ZN11GvMp4Parser6Common11Utf16ToUtf8EPKwPSsi) +STUB( + "mPYD8Kac8nY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("mPYKD12UDQI", sceRegMgrGetInt) +STUB("mPYgU4oYpuY", sceNgs2SystemCreateWithAllocator) +STUB("mPdonXVe31M", sceSulphaGetConnectedClientCount) +STUB( + "mPdpq8fK-wQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE5beginEv) +STUB("mPe+gxeE3IM", + _ZN7WebCore6Editor28replaceRangeForSpellCheckingERKNS_11SimpleRangeERKN3WTF6StringE) +STUB( + "mPe4erC4jh4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEC2EPKS8_) +STUB("mPhKZ8kT9A0", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_16SessionAttributeEEC2Ev) +STUB( + "mPlwuVmsnL0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEE7add_refEv) +STUB("mPorOjIR5M4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy17TrophyPackSummaryEE3getEv) +STUB("mPpPxv5CZt4", sceSystemServiceGetHdrToneMapLuminance) +STUB( + "mPsvM1nNnfM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEptEv) +STUB("mPusYnMBT7M", mono_image_close) +STUB( + "mQ0BwOa+MjY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEmmEv) +STUB("mQ16-QdKv7k", sceAmprAprCommandBufferReadFile) +STUB("mQBD4RanvTc", curl_multi_add_handle) +STUB("mQCm5NmJORg", _ZTSPDs) +STUB("mQJL3KgJ-FU", _ZN12video_parser5vpcom5FlushE) +STUB("mQJwca6ELho", _ZN7WebCore21NetworkStorageSession7forEachERKN3WTF8FunctionIFvRKS0_EEE) +STUB("mQOmuuuwvXk", WKViewAccessibilityFocusedObject) +STUB("mQPLN+TiRDo", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead28setReservationTimeoutSecondsERKi) +STUB("mQRgWho9vFo", _ZN3sce7Toolkit2NP21TusGetVarsInputParamsC2Ev) +STUB("mQU19DRkeyI", sceNpManagerIntCheckSignin) +STUB("mQUuF7HMrSo", _ZNK23sceMetadataReaderWriter8Metadata15checkWriteFieldEiRS0_S1_) +STUB("mQYQAi8B0Yo", FTA_Export_Module_pfr) +STUB( + "mQedfhZzF2k", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEplEm) +STUB("mQf+iu0AG4M", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12BlockedUsersEED1Ev) +STUB( + "mQfTgWuG0FA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB("mQfnDV63lo0", _ZL17unexpectedHandler) +STUB( + "mQiq1dt+n3U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEE11get_deleterEv) +STUB( + "mQmiM05vW14", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS5_INS7_9RecordApi26RecordScoreResponseHeadersEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("mQo0ovALpKM", _ZNK7WebCore20TransformationMatrix7inverseEv) +STUB("mQwyBMwgRRw", _ZN7WebCore13HitTestResultC2ERKNS_15HitTestLocationE) +STUB("mQxh1QCEoG8", + _ZN7WebCore23ApplicationCacheStorage23calculateQuotaForOriginERKNS_14SecurityOriginERl) +STUB( + "mQyrts29X2w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEEC2Ev) +STUB( + "mR2A3nYCc1M", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEdeEv) +STUB( + "mR2TcU8G3n0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEC1Ev) +STUB( + "mR36jJSaabw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEED1Ev) +STUB("mR5E8sI836g", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets17setplatformFilterEPKc) +STUB("mR8s6wwY1Iw", uset_openEmpty_67) +STUB("mR96RU8TVmY", ubidi_getLogicalRun_67) +STUB("mR9j7+SfM34", sceAgcDcbDrawIndexMultiInstancedGetSize) +STUB( + "mRC4Si+1pmw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEEC2ERSA_) +STUB("mRFdWqJ2FdE", Java_java_awt_GnmGraphicsConfiguration_createBufferedImageObject) +STUB("mRG-rE2hclo", mos) +STUB( + "mRGAsj6EV3Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("mRKiJMWWMHo", usearch_next_59) +STUB( + "mRMiFWdUaRk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEmmEi) +STUB("mRQXgXKYsCo", _ZN7WebCore16DatabaseProviderD0Ev) +STUB("mRX62Ymdb6o", _ZN7WebCore24CoordinatedGraphicsLayer17setContentsOpaqueEb) +STUB("mRYtMJ1AGU8", _ZN7WebCore21DiagnosticLoggingKeys21domainCausingCrashKeyEv) +STUB( + "mRaKZ1GRZ5k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEppEv) +STUB( + "mReWaiETx2A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEEcvbEv) +STUB("mRfac50Rcow", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking10UsersRanksEED2Ev) +STUB("mRfyqqkg8w8", sceKernelExpectedHddFormat) +STUB( + "mRgy3QhFRX0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEED1Ev) +STUB( + "mRhtAKP3aA0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("mRhvcY+j95s", mono_aot_Sce_Vsh_Friendjit_got) +STUB( + "mRnh+qJ7na4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEC1EPS6_PNS2_10LibContextE) +STUB("mRs5pc7rH-A", delegate_virtual_invoke_imt_m_16_p) +STUB( + "mRtANQPFqFU", + _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody21leaderPrivilegesIsSetEv) +STUB("mRx65MNGuX8", _ZN8meta_gen13JpegRetriever19JPEGPROM_MON_OFFSETE) +STUB("mRzJ8r-qths", sceFontGraphicsFindIndexedVertexesGlyph) +STUB( + "mS+5yOvycf8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEC1EPKS8_) +STUB("mS6AlOGb31k", ucal_equivalentTo_67) +STUB("mS8j1EcK2tk", _ZNK7WebCore17JSDOMGlobalObject13worldIsNormalEv) +STUB( + "mS9eddVR38E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEC1EPKS8_) +STUB( + "mSF0zl5qwro", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE15receiveResponseEv) +STUB("mSG2okSQ7lI", sceCesUcsProfileInitEucCnGb2312) +STUB( + "mSJkOnMPPxE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEptEv) +STUB( + "mSJzJlq+Vu8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEC2EPS8_) +STUB( + "mSM-Qy4oFi0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEED2Ev) +STUB( + "mSMPotGYEw4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEE3getEv) +STUB("mSOLUUZCZfo", + _ZN3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayer12setAccountIdEPKc) +STUB("mSObVAW3pN4", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIiEdeEv) +STUB( + "mSPz-0uZQWY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEC1Ev) +STUB("mSQCxzWTwVI", sceHttpsDisableOption) +STUB( + "mSZ02sS0kjU", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEED2Ev) +STUB("mSda1B-vfkM", cairo_line_to) +STUB("mSf7SeU8r84", mono_aot_Sce_Vsh_ErrorDialogUtilWrapperunbox_trampolines_end) +STUB( + "mSjW+QtDyTQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEE3getEv) +STUB( + "mSkeMF00tZc", + _ZN3sce2Np9CppWebApi11Matchmaking2V134ListUserTicketsResponseBodyFactory7destroyEPNS3_27ListUserTicketsResponseBodyE) +STUB("mSohbeE5Qfk", WKPreferencesGetWebArchiveDebugModeEnabled) +STUB( + "mSpc7s56QKU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEneERKS9_) +STUB( + "mSqv29YC1Fc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("mStuvI0zOtc", sceAgcDcbDrawIndexIndirectGetSize) +STUB( + "mSxj24NbAFI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEE3getEv) +STUB( + "mT4kyrBw85Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEppEv) +STUB("mT7vO8xIu9g", g_utf8_validate) +STUB("mT9cSJ5H6Zw", _ZN3JSC8Debugger17didEvaluateScriptEN3WTF7SecondsENS_15ProfilingReasonE) +STUB( + "mTAQxSH2aR4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB("mTBZfEal2Bw", mlock) +STUB("mTE03EGFd1E", _ZN3sce2Np9CppWebApi13InGameCatalog2V515ContainerRating8getCountEv) +STUB("mTETTrzNSXM", _ZN7WebCore15ScrollAlignment17alignCenterAlwaysE) +STUB( + "mTSLD8sbsx0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE7popBackEv) +STUB("mTUZfpGBKD4", _ZN3JSC9Structure16isValidPrototypeENS_7JSValueE) +STUB( + "mTVIQTyDrtM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEEC2ERSA_) +STUB( + "mTW6owhjJc0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE3endEv) +STUB( + "mTYA7Fgn6g4", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeader37unsetxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB("mTZxVC3pebc", sceShellCoreUtilIsInternalKratosUser) +STUB("mTbfxl-F9qo", scePerfPmcL2iGetCounter) +STUB("mTcFOuWRrhw", glStencilOpSeparate) +STUB( + "mTcMd-2kivA", + _ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime13ObjectPreview4TypeEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE) +STUB( + "mTdwsiRfpf4", + _ZN3sce2Np9CppWebApi7Matches2V127RequestTeamStatisticFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_20RequestTeamStatisticEEE) +STUB( + "mTj+ChZ5s4c", + _ZN3sce2Np9CppWebApi13InGameCatalog2V516ContainerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_9ContainerEEE) +STUB("mTtjRgg29wQ", _ZN3WTF13MetaAllocator8allocateEmPv) +STUB( + "mU+2iXrDUIU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE3endEv) +STUB("mU-QJxULXgk", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession20nonPsnSupportedIsSetEv) +STUB( + "mU0tlragSvw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEED2Ev) +STUB( + "mU2389ADtJ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEE5resetEPS9_) +STUB( + "mU2zOgpHTBI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEdeEv) +STUB("mU88GYCirhI", _ZNSt10moneypunctIcLb0EE7_GetcatEPPKNSt6locale5facetEPKS1_) +STUB( + "mU9yxtknf4o", + _ZN3sce2Np9CppWebApi14SessionManager2V129GameSessionPushContextFactory7destroyEPNS3_22GameSessionPushContextE) +STUB( + "mUHhxw6hIrQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEC1Ev) +STUB("mUIK7pE9oSQ", + _ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionMemberPlayer16getNonPsnPlayersEv) +STUB( + "mUIxbkhc63g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEE7get_refEv) +STUB("mUN6qPpyBS8", _ZN3JSC11VMInspector6edenGCEPNS_9ExecStateE) +STUB("mUNgfT4aGQs", _ZNK7WebCore23FrameLoaderStateMachine23committingFirstRealLoadEv) +STUB("mUQG6ux03z4", curl_mime_init) +STUB("mUQg2FYG6Qs", mono_aot_Sce_Vsh_RnpsAppMgrWrapperjit_code_start) +STUB("mUU363n4yc0", sceHttpUriSweepPath) +STUB("mUbTjStoCK8", _ZN7WebCore11MathMLNames12numalignAttrE) +STUB("mUcn35JWAvI", sceNpManagerIntGetAccountCountrySdk) +STUB( + "mUesyFAm3Xg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEdeEv) +STUB( + "mUf4RqwiYWk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEEC2ERSA_) +STUB("mUft23Sr2KU", _ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody11getTicketIdEv) +STUB( + "mUgGd90OjgQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "mUgPX5mKFf4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("mUgTynRdg-s", sceSdmaCopyWindowTiled) +STUB("mUhokLJF90Y", _ZN3sce7Toolkit2NP2V27NpUtils5IdMapC2ERKS4_) +STUB( + "mUiRMrZVapE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEEC1Ev) +STUB( + "mUoaNvxznHs", + _ZN7WebCore4Page21replaceRangesWithTextERKN3WTF6VectorINS_11SimpleRangeELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEERKNS1_6StringEb) +STUB("mUtGD4Sa7i4", _ZNK3WTF7CString4hashEv) +STUB("mUuUOWI-C+0", sceConvertKeycodeGetImeKeyboardType) +STUB("mUvnZv0tgS4", _ZN3WTF11Persistence5CoderINS_7CStringEE6encodeERNS0_7EncoderERKS2_) +STUB("mUxaQg9v4ns", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE3endEv) +STUB("mUy-LEiEf9k", + _ZN7WebCore27PlatformMediaSessionManager14addRestrictionENS_20PlatformMediaSession9MediaTypeEj) +STUB("mV0brl0huq4", _ZN12video_parser5vpcom5OpenTE) +STUB("mV3PKml1+B4", + _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest17setNpServiceLabelERKi) +STUB( + "mV4LuMoN0gA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE5clearEv) +STUB( + "mVAxPAejYS0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEC1Ev) +STUB( + "mVCB207-Ng4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEC1Ev) +STUB("mVDzAtQrtls", scePktMgrGetDeciHeader) +STUB("mVIGx-MERdY", _ZN3sce7Toolkit2NP2V26Friend7FriendsaSERKS4_) +STUB("mVKcd5NwiWE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEED1Ev) +STUB("mVKtC00ZKhk", _ZNK7WebCore3URL17lastPathComponentEv) +STUB("mVU3F9ZQgus", DES_set_key) +STUB("mVYxeYUaohc", _ZN7WebCore10JSLocation9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "mVciJ77Zp5w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE5beginEv) +STUB("mVjsa3gFRbU", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error29unsetValidationConstraintInfoEv) +STUB( + "mVkGOZ3Dp7I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEED2Ev) +STUB( + "mVnrLC3WC3E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEppEv) +STUB("mVoWS3zTfxs", WKHTTPCookieStoreDeleteAllCookies) +STUB("mVq7aMGu2oE", rgctx_fetch_trampoline_rgctx_48) +STUB( + "mVw3x5R0m+0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "mW1L9iSSZOw", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectator30unsetxPsnAcceptPlatformNamePs5Ev) +STUB("mW3EHwAVHPA", sceMusicPlayerServiceCreateTrackList) +STUB( + "mW8CTvYcOos", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEED1Ev) +STUB("mW8gkZwXdK4", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetailC2ERS5_) +STUB("mWAh20oTnyg", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIjEC2EPKj) +STUB( + "mWCSosOx8AM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE8pushBackERKS8_) +STUB( + "mWCWm+d+sa0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEdeEv) +STUB("mWHQR9TI4wQ", _ZN7WebCore9DragImageC2Ev) +STUB("mWLV3O8hHw0", _ZN3sce7Toolkit2NP2V27NpUtils7Request19DisplaySigninDialogC2Ev) +STUB("mWPqGWtWjfw", _ZN10MsvUpdaterD0Ev) +STUB("mWRHF5xdnlY", __asan_get_shadow_mapping) +STUB("mWUESJ+J8ws", monoeg_g_slist_reverse) +STUB( + "mWdI3PSj8ZQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEC2ERKS7_) +STUB("mWmEo3ddFA0", _ZN7WebCore21DiagnosticLoggingKeys24activeInForegroundTabKeyEv) +STUB( + "mWnJJFmWDlM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB("mWoN0zovYyc", _ZNK7WebCore6Region5Shape7isValidEv) +STUB("mWqDcrQUvkY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEC1Ev) +STUB("mWtsnHY8JZg", sceNpTrophySystemOpenStorage) +STUB( + "mWuhj8aGC6c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE21intrusive_ptr_add_refEPS9_) +STUB("mWwngKrjBww", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEC1Ev) +STUB("mWx34BXg7VM", monoeg_g_string_append_vprintf) +STUB("mWzuA-LRFmE", _ZN7WebCore11DisplayList11DrawingItemD1Ev) +STUB("mX-OUk8tti8", u_strrstr_67) +STUB("mX-WVA8pNsg", _ZN7WebCore11DisplayList8DrawPathD2Ev) +STUB("mX2cjtETZtI", _ZNK9Inspector14ConsoleMessage4typeEv) +STUB( + "mX49cNvXaZU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE5beginEv) +STUB( + "mX5Lv99V7ac", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V117DataStatusFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_10DataStatusEEE) +STUB("mX7jg1kvaNI", _ZNK3WTF9MediaTime9isBetweenERKS0_S2_) +STUB("mXJwKDDXQ3s", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS12TusVariablesEE3getEv) +STUB( + "mXQytGNQ-s8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEdeEv) +STUB("mXTBaSe0p6E", sceRegMgrEvtGetRegIdForPS4) +STUB( + "mXVaTrd-fVA", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessions13isInitializedEv) +STUB( + "mXWJViZXXb8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("mXZi1D2xwZE", sceNpTusAddAndGetVariableForCrossSaveAsync) +STUB("mXZt0-hxj5M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEC2Ev) +STUB( + "mXbbdrkdS-Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEeqERKS9_) +STUB("mXiNQDB1-Sc", ucnv_convertEx_67) +STUB( + "mXjMhqm6O4Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEcvbEv) +STUB("mXlxhmLNMPg", strtol) +STUB( + "mXmlM2X+fJw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEC2Ev) +STUB("mXn+K9E-wOA", sceAgcDriverGetResourceShaderGuid) +STUB("mXn5CBStvsE", qr5) +STUB("mXq+6gFZ4ow", il2cpp_runtime_unhandled_exception_policy_set) +STUB( + "mXqcN0Pw1dA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB("mXrxANy2IXg", + _ZN3sce2Np9CppWebApi7Matches2V124ResponseMatchTeamFactory7destroyEPNS3_17ResponseMatchTeamE) +STUB( + "mXxiolu+wlo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEC1EPS6_PNS2_10LibContextE) +STUB("mY5RbYVLzr4", u_isJavaSpaceChar) +STUB("mY9FWooxqJY", + _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewb) +STUB("mYA73TXJq6I", _ZN7WebCore10ScrollView4showEv) +STUB("mYE4gR3vmjQ", rgctx_fetch_trampoline_mrgctx_46_p) +STUB( + "mYIPQzOSYKQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEE7get_refEv) +STUB( + "mYM99IZArhk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEED2Ev) +STUB("mYML9wZ+OlA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEC1Ev) +STUB("mYTFNd3Xdmw", u_strcat_67) +STUB("mYUENHsJfe0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEptEv) +STUB( + "mYYuSwFtwEw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEC1ERKS7_) +STUB("mYaWSJuvtg4", _ZNK7WebCore6Editor12selectedTextEt) +STUB( + "mYanXKFFmyI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE6resizeEj) +STUB("mYhbiRtkE1Y", sceNpTusDeleteMultiSlotVariable) +STUB("mYmcfdHwjtw", __ubsan_handle_invalid_builtin_abort) +STUB("mYo06zO7G3c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEED1Ev) +STUB( + "mYtRfKxGxvQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEE7add_refEv) +STUB("mYtSQ0aq2mA", _ZN3sce7Toolkit2NP2V210Tournament6Events5resetEv) +STUB("mYuf10s9APM", _ZN7WebCore22EmptyFrameLoaderClient30dispatchDidPushStateWithinPageEv) +STUB("mYw-ELNDTOg", _ZN7WebCore14SocketProviderD2Ev) +STUB( + "mZ3yKuVuXh0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEneERKS9_) +STUB( + "mZ4ml-01C1s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("mZ6rSjwVmBM", delegate_invoke_impl_target_3_p) +STUB("mZCIdRQX2zM", _ZN7WebCore17PageConsoleClient7profileEPN3JSC14JSGlobalObjectERKN3WTF6StringE) +STUB( + "mZGu3IVzPK4", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi17getUserActivitiesEiRKNS5_28ParameterToGetUserActivitiesERNS1_6Common11TransactionINS9_12IntrusivePtrINS4_26GetUsersActivitiesResponseEEENSB_INS9_18ResponseHeaderBaseEEEEE) +STUB("mZKtksgqmiQ", _ZN7WebCore9InlineBox14adjustPositionEff) +STUB( + "mZOka+M8HRI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEEC2ERSA_) +STUB("mZQNSovP058", WKViewSetActive) +STUB("mZSbNJVJpV8", sceAmprAprCommandBufferReadFileGather) +STUB("mZT9yPjjm4Y", copyright_message) +STUB( + "mZW-My-zemM", + _ZZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8_GetmfldERS3_S5_bRSt8ios_basePcE4_Src) +STUB("mZaw3JtFNPY", _ZN7WebCore16HTMLMediaElement14setCurrentTimeEd) +STUB( + "mZfVyAWV0S8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("mZkLVvKk+S4", _ZN3JSC7Symbols23appendMemcpyPrivateNameE) +STUB("mZlElqorITk", ktimer_gettime) +STUB( + "mZpnKWTHzMQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE5beginEv) +STUB( + "mZsKoSv2yYQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEppEv) +STUB( + "mZxR56GIXBk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEptEv) +STUB("ma2OmJRhSPM", scePerfTracePmAddBufferNotifyEvent) +STUB("ma5sr496itk", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats20frequentlyMutedIsSetEv) +STUB( + "ma9Z8ooKPe0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEEC1Ev) +STUB("maIRvng3S8w", + _ZN7WebCore24CoordinatedGraphicsLayer42findFirstDescendantWithContentsRecursivelyEv) +STUB("maMufPLg+ZM", _Z12DbgPrintDumpPvj) +STUB( + "maRP+XW9P5w", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEneERKS9_) +STUB("maW5cbhbYTY", + _ZN7WebCore17JSDOMRectReadOnly15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB( + "macGsB4kSp4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEeqERKS9_) +STUB( + "macqYvf1Glg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE6resizeEj) +STUB( + "mafGZms72a8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEC1Ev) +STUB( + "majhojqP4lA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEppEv) +STUB( + "mak5thxbli8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEEC1ERKSA_) +STUB( + "makW6W6BGUw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEED1Ev) +STUB( + "maqkBx9nyic", + _ZN9Inspector15ScriptCallStackC1ERN3WTF6VectorINS_15ScriptCallFrameELm0ENS1_15CrashOnOverflowELm16EEE) +STUB( + "maxrfpzzr4U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEE11get_deleterEv) +STUB( + "mayYrZnvcGE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB( + "maz+IM2npKY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE7popBackEv) +STUB("mb4bdMeFRs8", cairo_scaled_font_reference) +STUB("mb6R-w+qlok", + _ZN7WebCore11MemoryCache18resourceForRequestERKNS_15ResourceRequestEN3PAL9SessionIDE) +STUB("mb6purhxZEE", _ZN3JSC7Symbols35regExpStringIteratorDonePrivateNameE) +STUB("mbAfGkDOGyY", il2cpp_property_get_name) +STUB("mbB02o4HFyc", _ZN3JSC7Symbols19padStartPrivateNameE) +STUB( + "mbCOFLvjGzY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEC2EPS9_) +STUB( + "mbCSx+iYNvc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEEptEv) +STUB( + "mbFIUPJ97RI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEE7get_refEv) +STUB("mbGmSOLXgN0", _ZNSt10moneypunctIcLb0EED2Ev) +STUB("mbJHDdjhVeY", scePadVrControllerGetDeviceInformation) +STUB("mbJRq5SJww4", _ZNK7WebCore22CSSAnimationController17animationIntervalEv) +STUB("mbMZ7F+s8oM", scePssMusicPlayerGetLoopFramePos) +STUB("mbMnspiwIvc", rgctx_fetch_trampoline_mrgctx_70) +STUB("mbOc0mgE4GI", sceSystemServiceChangeClock) +STUB("mbOmEAZh82k", jpeg_free_large) +STUB( + "mbUUWzA8wHs", + _ZN9Inspector14ConsoleMessageC1EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelERKN3WTF6StringEONS5_3RefINS_15ScriptArgumentsENS5_13DumbPtrTraitsISA_EEEEONS9_INS_15ScriptCallStackENSB_ISF_EEEEm) +STUB("mbVsMdOmBuE", _ZN3sce7Toolkit2NP2V211SocialMedia7Request7PhotoFb25MAX_PHOTO_DESCRIPTION_LENE) +STUB( + "mbWsAJAgLu0", + _ZN9Inspector23TargetBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) +STUB( + "mbZXecxuq5c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEC1Ev) +STUB("mbakKLPSO4o", sceContentExportFromFileWithThumbnail) +STUB("mbd08Y2w+gs", _ZN10Deprecated11ScriptValueC2ERN3JSC2VMENS1_7JSValueE) +STUB( + "mbdGnNb9n3Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEEC2Ev) +STUB("mbf+avPjVQ4", _ZN3JSC7Symbols34putPromiseInternalFieldPrivateNameE) +STUB("mbgiD2aLEyY", _ZN3sce7Toolkit2NP9Utilities6FutureI7SceNpIdEC1Ev) +STUB( + "mbh1VIHTutY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEE7add_refEv) +STUB( + "mbiYzj2mKVo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEcvbEv) +STUB("mbkFEPSSyFU", __asan_store4_noabort) +STUB("mbmBBltWhjU", _ZN7WebCore8SVGNames11viewBoxAttrE) +STUB( + "mbqkAl4gt0Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEE11release_refEv) +STUB( + "mbvvl0rvNEU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "mbx5Ymz2vRs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEEC2Ev) +STUB( + "mc04AVPrXgY", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("mc2Ulvzkoz8", _ZN3JSC17DeferredWorkTimer16stopRunningTasksEv) +STUB( + "mc9VTudRUZE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEED2Ev) +STUB( + "mcH2bIhoWaQ", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB("mcHjNU1s-LI", _ZN9Inspector27AnimationFrontendDispatcherdaEPv) +STUB( + "mcJZ8UIGJEw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEE5resetEPS7_) +STUB("mcNDtYT3-2A", ReadZStream) +STUB("mcOkVwJvgME", _ZN14OpaqueJSString9tryCreateEON3WTF6StringE) +STUB( + "mcPL9zN6X5I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE8capacityEv) +STUB("mcSn9+r5mrg", u_isblank_67) +STUB("mcT796Qgj+g", FT_Stream_ReadULong) +STUB("mcTQq+l8Ppo", _ZN7WebCore4PathC1Ev) +STUB("mcTU+vOdhiQ", ures_resetIterator_67) +STUB( + "mcUSHy7UFdg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEEaSERSA_) +STUB("mcUl2+5JTmc", mono_set_config_dir) +STUB( + "mcUp-nJ-+DA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEEaSERSA_) +STUB( + "mcVR4S5PuhY", + _ZN3sce2Np9CppWebApi14SessionManager2V167PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_60PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEE) +STUB( + "mcVR86OUL-Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE3endEv) +STUB( + "mcWmbcCwKtA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEC2EPS8_) +STUB("mcWtDgxzRgc", _ZN3JSC10ConfigFileC2EPKc) +STUB( + "mcXUtdAhds8", + _ZNK3sce2Np9CppWebApi14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBody16invitationsIsSetEv) +STUB("mcYVamD0JVM", EVP_aes_256_wrap) +STUB("mcaOJPNnVuA", _ZN3sce7Toolkit2NP2V210Tournament25BracketInformationOfMatchaSERKS4_) +STUB( + "mcfyXdX3ZIo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "mchngS8anLw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEE7add_refEv) +STUB( + "mciNZtOn-2E", + _ZN9Inspector22InspectorDebuggerAgent20didScheduleAsyncCallEPN3JSC14JSGlobalObjectENS0_13AsyncCallTypeEib) +STUB("mcknpnBjZcY", _ZN7WebCore9HTMLNames8listAttrE) +STUB("mcl1c9fyyKs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEE5resetEPS6_) +STUB( + "mcqQ4jBlPP8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEE7get_refEv) +STUB("mctENQO0iGk", _ZN3sce2Np9CppWebApi11UserProfile2V15Error10setMessageEPKc) +STUB("mctaJ9po8Vk", _ZN7WebCore14DocumentLoader25didGetLoadDecisionForIconEbmm) +STUB("mcxYlyKZQr0", sceNpSnsIntCheckServiceAvailability) +STUB("md-340++Yfw", rgctx_fetch_trampoline_mrgctx_32) +STUB("md5zoSWseNM", _ZN9Inspector32DatabaseBackendDispatcherHandleraSERKS0_) +STUB("mdGgLADsq8A", __divdf3) +STUB("mdIPQKe4lRI", _ZNK7WebCore22SkewTransformOperation4dumpERN3WTF10TextStreamE) +STUB("mdJgdwoM0Mo", _ZNK3sce16CommonDialogUtil6Client8getAppIdEv) +STUB("mdJr3sGWWoU", WKInspectorToggleElementSelection) +STUB("mdLGxBXl6nk", __gesf2) +STUB("mdMawHAHVMc", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer8setlimitEi) +STUB( + "mdP3MEkZHcw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEaSERKS9_) +STUB( + "mdRC21RQxeE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE5emptyEv) +STUB("mdUPwgHRqss", sceRazorCpuStopCapture) +STUB("mdUiIw+I9Xc", ucol_secondaryOrder_67) +STUB("mdYczJb+bb0", _ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1ERKSt8_Locinfom) +STUB( + "mdbPThcwWqY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEEC2ERKSA_) +STUB( + "mdblc4eyl50", + _ZN3sce7Toolkit2NP7NetInfo9Interface16getBandwidthInfoEPNS1_9Utilities6FutureI24SceNpBandwidthTestResultEE) +STUB("mdc++HCXSsQ", sceHmdInternalDfuSend) +STUB("mdcx6KcRIkE", _ZNSt14numeric_limitsIwE8digits10E) +STUB("mddy1zct34Q", + _ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody20startSerialRankIsSetEv) +STUB( + "mdgN0xi70-M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEEC1Ev) +STUB( + "mdiiGQ+j-Sw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEppEi) +STUB( + "mdmc39KmVsE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEeqERKS9_) +STUB("mdn4y4jvZTQ", pio2_1thi) +STUB("mdoGohzjCsY", _ZNK7WebCore9FrameTree14isDescendantOfEPKNS_5FrameE) +STUB( + "mdphM5sBsjc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("mdq+8JZmhMo", WKBundleGetOSAllocatorStatistics) +STUB( + "mdsjR6ntZOc", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_14ScriptProfiler9EventTypeEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB("mdtW4Mnp4ZM", sceKernelEndAppMount) +STUB("mdwtkp-FqnI", _ZN7WebCore16TrackPrivateBasenaEm) +STUB("mdyFbaJj66M", sceHmdReprojectionClearUserEventStart) +STUB("me+5VXmudjU", _ZN7WebCore16JSXMLHttpRequest9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "meC6Qbc4qjw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("meEDFqE1AbE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEC1ERKS7_) +STUB("meEjIdbjAA0", sceNpMatching2SetUserInfo) +STUB("meFMaDpdsVI", sceNetCtlApClearEvent) +STUB("meFowhylT54", _ZN7WebCore15JSSVGSVGElement14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB("meIjK6xCa4M", _ZNK7WebCore7IntSize18constrainedBetweenERKS0_S2_) +STUB("meKfwBKCN9A", _ZN7WebCore28InspectorFrontendClientLocal12openInNewTabERKN3WTF6StringE) +STUB("meKvQ+6iQ7U", GCC_except_table38) +STUB("meOi6uOdMGo", mono_aot_Sce_Vsh_ShellUIUtilWrapperunwind_info) +STUB( + "mePfeJyE2oI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEE3getEv) +STUB( + "meQ+WF95qH4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEC2EPKS8_) +STUB( + "meS23Mofvq4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE5clearEv) +STUB("meSO23PI608", mono_aot_System_Datajit_code_end) +STUB("meXSAmyPBUE", sceCompositorCreateIndirectRenderTarget) +STUB("meZ2WMyv4mk", utrie_swap) +STUB( + "mebREbmAwkw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("mebh05x-AVA", _ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody12unsetCommentEv) +STUB("mehR8tSlxa0", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEEC2Ev) +STUB( + "mehklQwgEnk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEEC2ERKSA_) +STUB("mei8gr7fdfc", _ZN7WebCore8SVGNames8nameAttrE) +STUB("meiEHuAdHxo", _ZN2sh17ConstructCompilerEj12ShShaderSpec14ShShaderOutputPK18ShBuiltInResources) +STUB("meiO-5ZCVIE", sceGnmGetCoredumpMode) +STUB("meqxJE9meE8", _ZN4Manx11MediaPlayer5pauseEv) +STUB("mesz2DXnnm8", ucasemap_utf8FoldCase_67) +STUB("meuwG2Ym0Pk", sceNpManagerIntCheckTitlePatch) +STUB("mevhH+2IP8Q", _ZN7WebCore21DiagnosticLoggingKeys22cacheControlNoStoreKeyEv) +STUB("mewKQXPDHYA", uhash_compareScriptSet_67) +STUB("mexc7X4nBFQ", _ZN12video_parser12cVpFileCache10validCacheEx) +STUB("mezh2RA6bAM", _ZN3WTF9MediaTime15createWithFloatEfj) +STUB("mf6n1uCzOY8", WKBundleHitTestResultCopyLinkSuggestedFilename) +STUB("mfHdJTIvhuo", sceLibcMspaceMallocStats) +STUB("mfJBpJ+qoLA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEED1Ev) +STUB( + "mfMH9-vhg08", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEEiRNS2_10LibContextEPT_m) +STUB( + "mfb0FW+jLqo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEmmEi) +STUB("mfbOiuhry-o", _ZNK7WebCore11MediaPlayer17platformErrorCodeEv) +STUB( + "mfeipgBf+ik", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB("mfg+QBFqHGA", _ZN3sce2Np9CppWebApi7Matches2V15Error11unsetReasonEv) +STUB( + "mfi-br2o2ow", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEplEm) +STUB("mfl9H9FLZeQ", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadDataC2Ev) +STUB( + "mfmjMlxelR4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "mfs5C4RDk7c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "mfsiKgM1X2c", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "mftJlHyqmqo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEmmEv) +STUB("mfuV9TYJxQI", delegate_virtual_invoke_imt_m_10) +STUB("mfxElr79O7Q", sceVideoOutSysIsSupportedByMonitorInfo_) +STUB( + "mg-4TDtB0cA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "mg1i5nMl6-s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEmmEi) +STUB( + "mg9DJM+QfDE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEC2Ev) +STUB("mgFnQx7tp0M", _ZN7WebCore22EmptyFrameLoaderClientD2Ev) +STUB("mgFuLMJg7cY", _ZN10Deprecated18ScriptFunctionCallD2Ev) +STUB("mgKTS0PIvd8", sceSlimglCompositorAllocateIndex) +STUB( + "mgLr7cAr0dM", + _ZN7WebCore8Document17addConsoleMessageEOSt10unique_ptrIN9Inspector14ConsoleMessageESt14default_deleteIS3_EE) +STUB("mgNAFnYj41Q", _ZNK7WebCore14LoggedInStatus10hasExpiredEv) +STUB("mgNGxmJltOY", _Closreg) +STUB( + "mgQ35+FRPnQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEeqERKS9_) +STUB("mgTL+L1bGqU", sceNpManagerIntLoginGetWebAccessTokenByClientId) +STUB( + "mgU7W9Go9Yg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEEC1EPSA_PNS2_10LibContextE) +STUB( + "mgaeI7yJCh0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEEptEv) +STUB("mger8+MD62Y", fuse_reply_write) +STUB( + "mglXipH6Zl8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE21intrusive_ptr_sub_refEPS9_) +STUB("mgs+n71u35Y", SSL_connectWithCfgParam) +STUB("mh-o6enVZ-Y", _ZNK7WebCore19InspectorController13drawHighlightERNS_15GraphicsContextE) +STUB("mh0OvdefVzI", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V15Owner11getOnlineIdEv) +STUB("mh0yBFI4Hmk", + _ZN7WebCore11RenderLayer14scrollToOffsetERKNS_8IntPointENS_10ScrollTypeENS_14ScrollClampingE) +STUB( + "mh3GYR-WvxE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEppEv) +STUB("mh9Jro0tcjg", _ZTSSt7_MpunctIwE) +STUB("mhAfefP9m2g", sceAudioInExtCtrl) +STUB("mhBjKWf7rGE", _ZN9Inspector26TimelineFrontendDispatcherC1ERNS_14FrontendRouterE) +STUB("mhD00YrjSbg", deflateReset) +STUB( + "mhEGZurL2Rs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEEcvbEv) +STUB("mhIInD5nz8I", __addsf3) +STUB("mhK+E1i3VuE", FTA_Add_Module_otvalid) +STUB("mhKZJqhGnXg", sceVideodec2QueryLibraryInfo) +STUB("mhLGIWhMLlk", + _ZN15AbstractStorage14StorageManager18UnregisterListenerEPKNS_17ItemEventListenerE) +STUB( + "mhOYhNpZGfQ", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead9setMemberERKNS1_6Common12IntrusivePtrINS3_26PlayerSessionMemberForReadEEE) +STUB("mhPMQfAiaZU", _ZN7WebCore9HTMLNames12expandedAttrE) +STUB("mhR3IufA7fE", _ZSt10defer_lock) +STUB("mhWeZyEHlKQ", sceClPthreadExit) +STUB( + "mhbcAlHHots", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE5emptyEv) +STUB( + "mhc1KUJnqJI", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData21hasxPsnNpServiceLabelEv) +STUB("mhfsMd287UI", _ZN3JSC8JSObject13visitChildrenEPNS_6JSCellERNS_11SlotVisitorE) +STUB("mhhBo88nvTU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEED2Ev) +STUB( + "mhijqs9wYpQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEE5resetEPS9_) +STUB("mhj9gAxCEqM", sceFiosDebugSetProfileCallback) +STUB( + "mhjxe1Bi3Zo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEED2Ev) +STUB("mhk9cFFoeho", _ZN7WebCore17NowPlayingManagerC1Ev) +STUB("mhlESqdehQY", sceCloudClientReset) +STUB("mhoxSElvH0E", _ZNSt10moneypunctIwLb0EE2idE) +STUB( + "mhpVmivdazc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEmmEv) +STUB("mhrZrdppmDc", + _ZN7WebCore20DecodeOrderSampleMap35findSyncSampleAfterPresentationTimeERKN3WTF9MediaTimeES4_) +STUB( + "mhs5ntoGBn8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEC1EPNS2_10LibContextE) +STUB( + "mhsoRAVp-EY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEC1Ev) +STUB( + "mhviITFdt+M", + _ZN9Inspector14InspectorAgent27didCreateFrontendAndBackendEPNS_14FrontendRouterEPNS_17BackendDispatcherE) +STUB( + "mhwdqb2jwFQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEppEv) +STUB( + "mhxPu0GdTGQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEE11get_deleterEv) +STUB("mhxeerdzqD4", _ZThn120_N7WebCore16HTMLMediaElement14beginScrubbingEv) +STUB( + "mhyvGsNUNLg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("mi75GvD9uq0", _ZN7WebCore11HTMLElement12setOuterTextERKN3WTF6StringE) +STUB("mi8ipN3nDyg", _ZN3WTF10SymbolImpl16createNullSymbolEv) +STUB("mi9hSzeuyAM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V511ContentTypeEEneERKS7_) +STUB("miCg4z-c1Gc", sceSulphaSetBookmark) +STUB( + "miIdbqYIQwg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("miJIPnB2cfI", sceNpManagerIntClearVshAccessToken) +STUB( + "miJwNc4GoF4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEneERKS9_) +STUB("miPa6vSAqos", sceKernelIsKratos) +STUB( + "miPfJxz3Lc8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEEC2ERSA_) +STUB("miQ1wVwSexE", getpriority) +STUB( + "miQDUGaOY6k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("miR5GweF1bI", _ZN3WTF10TextStream11writeIndentEv) +STUB("miRJUYf51k4", WKWebsiteDataStoreConfigurationCreate) +STUB("miT17KpoFN4", + _ZN7WebCore31BasicColorMatrixFilterOperationC1EdNS_15FilterOperation13OperationTypeE) +STUB("miVYGbk3LHs", _ZNK3sce3Xml3Dom8Document12getAttributeENS1_6NodeIdEPKNS0_6StringE) +STUB( + "miXcyNCnDMg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEEcvbEv) +STUB( + "miZk26sjVuw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEC2Ev) +STUB( + "miZnvYEIiZw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEE11release_refEv) +STUB( + "mibECvHufbQ", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_4Page7SettingEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB( + "mieJ+AVFBnQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("mihp249C15g", _ZN3WTF31NonSharedCharacterBreakIteratorD2Ev) +STUB( + "miiULkIk7Jw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("mip4rCepyCk", ucol_getKeywordValuesForLocale_59) +STUB("mir9WnxDvVI", _ZN3JSC13iteratorValueEPNS_14JSGlobalObjectENS_7JSValueE) +STUB( + "mivCpZxmDEI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("miwM3X1F+Zs", WKWebsiteDataStoreSetStatisticsTimeToLiveUserInteraction) +STUB( + "miyQxo-bU8o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("mj-41ijwDWI", _ZN7WebCore9HTMLNames8linkAttrE) +STUB("mj8JPPMIzYQ", _ZN7WebCore18PlatformTimeRanges6invertEv) +STUB( + "mjChPky6hL0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB("mjFgpqNavHg", sceNetCtlApRpStart) +STUB( + "mjGnd5Rh-Us", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessions28getxPsnAcceptPlatformNamePs5Ev) +STUB( + "mjKEkExAL8E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEppEi) +STUB( + "mjMdRyFLQYo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEC2EPS8_) +STUB("mjMsl838XM8", sceHmdInternalSetUserType) +STUB("mjOOBRtxx1c", _ZN7WebCore9URLParser19parseURLEncodedFormEN3WTF10StringViewE) +STUB( + "mjQLhtXYaLY", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer34hasxPSNSESSIONMANAGERREQUESTORIGINEv) +STUB("mjUKCkp5gsc", Java_java_net_PlainDatagramSocketImpl_datagramSocketCreate) +STUB("mjZXAF4auqQ", mono_get_exception_io) +STUB("mjaR1-gcxBM", _ZNK7WebCore11RenderStyle10lineHeightEv) +STUB("mjcI9VABYqw", PSNowSendCommand) +STUB( + "mjcTbsv9hmw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEeqERKS9_) +STUB( + "mjgvzvtytfg", + _ZN3sce2Np9CppWebApi14SessionManager2V124GameSessionPlayerFactory7destroyEPNS3_17GameSessionPlayerE) +STUB("mjjTXh+NHWY", sceNpUnregisterStateCallback) +STUB("mjmDNEWc658", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE4sizeEv) +STUB( + "mjoanfY34dI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "mjqI6PzPl+w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "mjs26td005k", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB( + "mjug+A28+yw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEC2ERKS7_) +STUB("mjvL6jg7dVc", _ZN3sce7Toolkit2NP2V26Trophy7Request13SetScreenshot19MAX_NUMBER_TROPHIESE) +STUB("mjwEmBtj7sI", izrule_getNextStart_67) +STUB("mjxFUp94LL4", sceNpSnsYouTubeDialogOpen) +STUB("mjzzjbY1XDM", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V113ErrorResponseD1Ev) +STUB( + "mk+bJkCO4+U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE7reserveEi) +STUB("mk-CrV2yVfw", _ZN22MmsMdCommonFsOperationD0Ev) +STUB("mk-apZiLe-0", _ZN9Inspector19InspectorAuditAgentC2ERNS_12AgentContextE) +STUB( + "mk0DNU-+9SE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEC2EPNS2_10LibContextE) +STUB( + "mk3tnaCUnbc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEE5resetEPS6_) +STUB("mk9eZXZydcQ", _ZN7WebCore11MathMLNames7msubTagE) +STUB("mkBpYa8GoaI", mono_aot_Sce_Vsh_PartyCommonjit_code_end) +STUB("mkFxjg4B3Dg", _m_acc) +STUB("mkI7vGRy-U4", _ZN7WebCore22EmptyFrameLoaderClient11prefetchDNSERKN3WTF6StringE) +STUB("mkLaODh2FTE", _ZN7WebCore7IntRectC1ERKNS_9FloatRectE) +STUB("mkMdmnmWONA", _ZNK7WebCore20LowPowerModeNotifier21isLowPowerModeEnabledEv) +STUB( + "mkOXpvBCbnA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEC1Ev) +STUB("mkRKhhHKm40", mono_aot_Sce_Vsh_VideoServiceWrappermethod_addresses) +STUB("mkRZB0Bt4O8", _ZN3JSC7Symbols27isTypedArrayViewPrivateNameE) +STUB( + "mkTnxn9h+lk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEEcvbEv) +STUB("mkVd4rmHPGY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEC2Ev) +STUB("mkWsKEh0h0o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEptEv) +STUB( + "mkYKpflQFp0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEC2Ev) +STUB("mkZZVt6In6c", _ZN7WebCore6Chrome23enableSuddenTerminationEv) +STUB("mkawd0NA9ts", sysconf) +STUB("mkfHOxiBHWQ", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate8fromJsonERKNS_4Json5ValueE) +STUB("mkgXxsoxWHg", sceKernelClearVirtualRangeName) +STUB( + "mkh-EDeLZO4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEppEv) +STUB("mkmgHfPc6+o", sqlite3_initialize) +STUB("mkmgcRnAJog", FT_GlyphLoader_CopyPoints) +STUB("mkpjgEX1F64", delegate_virtual_invoke_imt_1_p) +STUB("mku1GIeN1Fw", _ZNK3sce2Np9CppWebApi11UserProfile2V114PersonalDetail14firstNameIsSetEv) +STUB("mkuqaH2p26Y", scePssKeyboardPushState) +STUB("mkx2fVhNMsg", pthread_cond_broadcast) +STUB("ml0b4zTo2GA", _ZN3sce7Toolkit2NP2V28Matching7Request9LeaveRoomD2Ev) +STUB("ml5Wqa7VYlA", _ZThn120_NK7WebCore16HTMLMediaElement12playbackRateEv) +STUB("ml8KEf7kShQ", + _ZN7WebCore8Document7writelnEPS0_ON3WTF6VectorINS2_6StringELm0ENS2_15CrashOnOverflowELm16EEE) +STUB("ml8nITTjzF4", uhash_iremovei_67) +STUB("mlBEgk9o0SE", sceContentBinderStart) +STUB("mlDPr5TaxQQ", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEED2Ev) +STUB( + "mlF4mVxWVHo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEC2Ev) +STUB( + "mlGXOT3vtls", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB( + "mlJLbNCQlzs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("mlL4YzHlNa4", + _ZN3WTF10StringImpl57convertToLowercaseWithoutLocaleStartingAtFailingIndex8BitEj) +STUB( + "mlRAo89gE0I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "mlW4cSbN-Wk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEED1Ev) +STUB( + "mlXAVjS5LvM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("mlYGfmqE3fQ", sceSigninDialogInitialize) +STUB("mleFb07fnvo", Java_com_sony_bdjstack_javax_media_controls_SoundManager_getPanningFR) +STUB("mlf7RhgW6w4", jpeg_natural_order6) +STUB( + "mljkaZpffbQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEdeEv) +STUB("mljzuGDZRQ4", sceAgcDcbSetIndexCountGetSize) +STUB( + "mlkKJXgqsfU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEaSERKS7_) +STUB("mll5UrllME0", _ZN3JSC11IsoSubspaceD2Ev) +STUB("mm0znr-xjqI", set_phys_fmem_limit) +STUB("mm4qQkjC13o", mono_jit_info_get_method) +STUB("mmBX7M6ArkM", curl_easy_option_by_id) +STUB( + "mmEix4OkCHQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEED1Ev) +STUB("mmFgyjXMQBs", sceUserServiceSetParentalMorpheus) +STUB( + "mmH0Sw7uDdc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEC1EPKS8_) +STUB("mmLexUbtnfY", sceHttpGetAutoRedirect) +STUB("mmV7Gx7XCYE", mono_aot_Sce_Vsh_Accessor_Dbunbox_trampolines_end) +STUB( + "mmX+v2z1Gss", + _ZN7WebCore17JSHTMLLinkElement6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_15HTMLLinkElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB("mmb08svpVe4", _ZN7WebCore9HTMLNames6colTagE) +STUB("mmf3bvuFdyE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEEC1EPKS6_) +STUB( + "mmg2NxAo8bw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEptEv) +STUB("mmgyb1Pe-s0", _ZN7WebCore17FrameLoaderClient17dispatchDidLayoutEv) +STUB( + "mmoTTd0rBRw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEC2Ev) +STUB("mmq9OwwYx74", _ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED0Ev) +STUB("mmrSzkWDrgA", _ZNSt14numeric_limitsIxE9is_signedE) +STUB("mmrcPPwWjuM", mono_aot_Sce_PlayStation_Orbis_Speechunbox_trampolines_end) +STUB("mmt74yNEHFA", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V15GroupEEdeEv) +STUB("mmt8Sa6tL6c", _sceUltMutexCreate) +STUB("mmuPmLGfFoQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE6resizeEj) +STUB("mmwdcNZkX2w", _ZNK7WebCore4Node28deprecatedShadowAncestorNodeEv) +STUB( + "mmyEAhnq80Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEE3getEv) +STUB("mmyOCxQMVYQ", sceHttp2CreateRequestWithURL) +STUB("mn-tf4QiFzk", sceRtcTickAddMinutes) +STUB("mn0MkxTyRiU", s16) +STUB("mn3xTTGlB5E", _ZN7WebCore9HTMLNames22onwebkitkeymessageAttrE) +STUB("mn5nMA+kVzY", ucnv_getUnicodeSet_67) +STUB( + "mn75BUexzdU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEC2Ev) +STUB("mn8zwZkWdJU", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_19WordFilterSanitizedEED1Ev) +STUB( + "mn9RCl-PJC0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEED1Ev) +STUB( + "mnAu3-tBFSA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE8pushBackERKS8_) +STUB( + "mnNTPaio-YE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("mnOQ3arahJY", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession19getLeaderPrivilegesEv) +STUB( + "mnOrt6liX+0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEE11release_refEv) +STUB( + "mnSTSzzZzaQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEppEv) +STUB("mnWbm0QPad4", _ZN3sce7Toolkit2NP2V29Messaging7Request19SendGameDataMessageD2Ev) +STUB("mndOlYOGP7w", sceCesUtf32leToEucJp) +STUB( + "mnf1ha9m+x8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEptEv) +STUB("mnq3tbhCs34", _ZNKSt5ctypeIcE10do_toupperEc) +STUB( + "mnsMteAzwPI", + _ZN3sce7Toolkit2NP2V212EventsClient9getEventsERKNS3_7Request9GetEventsEPNS2_4Core8ResponseINS3_6EventsEEE) +STUB("mntAmz0tjfc", sceNpUniversalDataSystemIntPostRecord) +STUB("mnufPlYbnN0", _FDtest) +STUB("mo+gaebiE+M", _ZN3sce2np5Mutex4dtorEv) +STUB("mo0bFmWppIw", sigreturn) +STUB( + "mo1d5W2r0YI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE8pushBackERKS8_) +STUB("moAKVLhGVOQ", WKBundleHitTestResultIsDownloadableMedia) +STUB("moDSeLQGJFQ", _LCosh) +STUB("moGcgMNTHvQ", sceNpBase64UrlDecoder) +STUB("moPKPd0A5FA", sceHttpCacheSetResponseHeader) +STUB( + "moSbgrXkLX8", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V112ErrorFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_5ErrorEEE) +STUB("moSh3TH+rsc", _ZN3sce7Toolkit2NP2V28Matching7Request23SetMembersAsRecentlyMet12TEXT_MAX_LENE) +STUB( + "moTL3rhyR94", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("moUyXdlUENM", uscript_getScript_67) +STUB("moVosqIdo8U", sceDeci4hDrfpWrite) +STUB( + "moXd3nJg9W4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEE7add_refEv) +STUB( + "mobMpV2UJYA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEEaSERSA_) +STUB("mog98eYZd3Q", _ZN7WebCore8Document12allDocumentsEv) +STUB("mojeSQq5GwQ", _ZNK7WebCore22EmptyFrameLoaderClient21shouldGoToHistoryItemEPNS_11HistoryItemE) +STUB( + "mokwe-zkSkA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE8pushBackERKS8_) +STUB("moyD0F002XQ", rgctx_fetch_trampoline_mrgctx_92) +STUB("mp5H1CTFVxQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116InitialJoinStateEEC2EPS6_) +STUB( + "mpBbJpGDaso", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE11getResponseERS6_) +STUB( + "mpCoi80J24U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEE5resetEPS9_) +STUB( + "mpEZaKKV5Bw", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations9terminateEv) +STUB("mpFxs7FlqBI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEEC2Ev) +STUB("mpIgf5eE9BY", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectIdC2Ev) +STUB("mpJkhjErUyw", __asan_exp_load16_noabort) +STUB("mpSPLwq1+ds", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_10TrophyInfoEE3getEv) +STUB( + "mpTTQPsFuxQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEC1EPKS8_) +STUB( + "mpUNxqm5-0g", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE5emptyEv) +STUB("mpUUmn9tbKs", wpe_pasteboard_write) +STUB( + "mpYLachEGn0", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToSendPlayerSessionMessage55setpostPlayerSessionsSessionIdSessionMessageRequestBodyENS1_6Common12IntrusivePtrINS3_52PostPlayerSessionsSessionIdSessionMessageRequestBodyEEE) +STUB("mpausIgcZbE", mono_aot_System_ComponentModel_Compositionjit_got) +STUB("mpbGISNJ6go", sceKernelGetSystemExVersion) +STUB("mpbduG0FIos", at_thread_exit_flag) +STUB( + "mpcERKdpPvA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("mpcTgMzhUY8", floor) +STUB("mpddtF9pKRc", sceVideoCoreMediaSourceGetBufferedTimeRanges) +STUB("mpeGML7ulA8", sceShellCoreUtilIsExternalStorageAppMoveInProgress) +STUB("mpk5RNj6HKg", _ZN9Inspector15InspectorTarget17setResumeCallbackEON3WTF8FunctionIFvvEEE) +STUB("mpkohyVqCRM", sceShellCoreUtilActivateAbort) +STUB( + "mplGCpW8qW4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEixEm) +STUB("mpn2l77ClMg", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11ProductInfoEEneERKS4_) +STUB("mpoF71ABciY", sceNpStopVsh) +STUB( + "mpudh5SFcqU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEE7add_refEv) +STUB("mpxAdqW7dKY", sceKernelIsProspero) +STUB("mq0FcoV5WyU", mono_aot_Sce_Vsh_KernelSysWrapperunbox_trampolines_end) +STUB( + "mq4VLnx+fgU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEC1EPS8_) +STUB( + "mq8QKdYWbf8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEplEm) +STUB("mqC+A2WD1xg", GCC_except_table477) +STUB( + "mqDauUvHxtw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEC2EPS8_) +STUB("mqHr2lV6TJA", + _ZN3sce2Np9CppWebApi12Leaderboards2V122GetRankingResponseBodyC2EPNS1_6Common10LibContextE) +STUB("mqM2m4EwgzE", uiter_setUTF16BE_67) +STUB( + "mqM7+dpduR0", + _ZN3sce2Np9CppWebApi14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBody14getInvitationsEv) +STUB("mqQ1TbImxtg", _ZN7WebCore16VisitedLinkStoreD0Ev) +STUB("mqQMh1zPPT8", fstat) +STUB( + "mqQZYP3YrRM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEED2Ev) +STUB("mqREvft-B9Y", WKSerializedScriptValueCreateWithInternalRepresentation) +STUB( + "mqTRRYvdFfY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("mqTT0TMW0iE", WKPreferencesCopyPictographFontFamily) +STUB("mqULNdimTn0", pthread_key_create) +STUB("mqVRQv4SBS4", _ZN3WTF24releaseLineBreakIteratorEP14UBreakIterator) +STUB("mqXE3Scze9I", _ZN7WebCore9TimerBaseD1Ev) +STUB( + "mqXwMzp+7pE", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEEC1Ev) +STUB("mqdNorrB+gI", scePthreadRwlockWrlock) +STUB("mqhjkizrxGA", monoeg_g_shell_quote) +STUB( + "mqkwTTKUuXA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB( + "mqn1rI6-Fmg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEC2EPS8_) +STUB("mqnIxfxIjzs", + _ZN12video_parser17cVideoProfilerMp421_isValidSubtitleTrackEjRKNS_13VpMediaInfo_tES3_) +STUB("mqnQI0BbgcI", _ZN3JSC11VMInspector6edenGCEPNS_2VME) +STUB("mqoB+LN0pW8", sceNetShowNetstatForBuffer) +STUB("mqonkyBCcDs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEC1ERKS7_) +STUB( + "mqpatmx34Sg", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyC2EPNS1_6Common10LibContextE) +STUB("mqtwjCS71n8", _ZN3sce2Np9CppWebApi7Matches2V127ResponseTeamMemberStatistic11setPlayerIdEPKc) +STUB( + "mqy0jchACUA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEC1EPKS8_) +STUB( + "mr2fmsj8sSg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEeqERKS9_) +STUB("mr4YjdpfVFg", glProgramBinary) +STUB("mrF0OjeuOgw", sceFaceAgeRangeIntegrate) +STUB("mrG66gJmZig", _ZN7WebCore14FrameSelection20setSelectionFromNoneEv) +STUB("mrH1AT5sX6k", _ZNSt9basic_iosIcSt11char_traitsIcEE4moveERS2_) +STUB("mrHkGpzNlfM", _ZN3sce2Np9CppWebApi7Matches2V120RequestPlayerResults10unsetScoreEv) +STUB("mrLkr3Hr0SM", JSClassRetain) +STUB("mrLpGmtResQ", _ZTVN15AbstractStorage14TwitterStorageE) +STUB("mrNQVZgYuGI", _ZN3sce7Toolkit2NP2V212EventsClient6Events8deepCopyERKS4_) +STUB("mrNh78tBpmg", sceRemoteplayProhibit) +STUB("mrSnRuWmJDs", rgctx_fetch_trampoline_rgctx_123_p) +STUB("mrTXqsV-EAg", mono_aot_Sce_Vsh_LncUtilWrapperjit_got) +STUB( + "mrTosV63JSQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEmmEi) +STUB("mrVwwY92Dzs", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadDataaSERS5_) +STUB( + "mrWiisK57Lk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEplEm) +STUB("mrbHXqK8wkg", sigwait) +STUB("mrdfGB-P+NU", _ZN3sce2np10JsonObject8SetFieldEPKciPPNS0_10JsonNumberE) +STUB("mrlFU3GkJwc", JVM_FindPrimitiveClass) +STUB("mrocC3M9qjA", _ZN3sce7Toolkit2NP2V211SocialMedia7Request21PostMessageToFacebookD1Ev) +STUB( + "mrpK0oRmdrE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEE7add_refEv) +STUB("mrvPNIBvyAs", uscript_getSampleString) +STUB("mryKx6akQCM", _ZN3JSC8Bindings13RuntimeObjectD1Ev) +STUB("mryrNITeYvI", sceUsbStorageGetDeviceList) +STUB("ms0ZkUw5sR4", mono_arch_get_rethrow_exception) +STUB( + "ms0pz2+M3t4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEE5resetEPS9_) +STUB("ms1xVoZ-Vwc", sceAgcDcbBeginOcclusionQueryGetSize) +STUB( + "ms4PfAZzXyg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE21intrusive_ptr_sub_refEPS9_) +STUB("ms6Fvf6+Ypc", _ZN3WTF14jsValueReallocEPvm) +STUB("ms8kCVrvykA", _ZN3WTF9MediaTimeC1ERKS0_) +STUB("ms9ua5f1lb0", _ZN3sce7Toolkit2NP2V212EventsClient22EventOfficialBroadCastD2Ev) +STUB("msCER7Iibm8", sceSaveDataMountInternal) +STUB( + "msJZoVvKSN0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEC1Ev) +STUB("msW-hp1U0zo", sceLncUtilTryBlockAppSuspend) +STUB("msXACLATLjA", ures_getLocale_67) +STUB( + "msaaZZYKTOE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "msf0JrPKxOE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEE11release_refEv) +STUB("msfSXXy-8H8", __sys_nanosleep) +STUB( + "mskRHcwLjfo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE8capacityEv) +STUB("msrVGGHJsS8", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_11CountryInfoEE3getEv) +STUB("msxwgUAPy-Y", _ZTSSt11range_error) +STUB( + "mt--f7a-XCk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlotC2ERS5_) +STUB( + "mt-ex-fhcHM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEneERKS9_) +STUB( + "mt1CK6tHvuc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEneERKS9_) +STUB("mt2Be6qsnsw", _ZN3sce2np10NpOnlineIdC2ERK13SceNpOnlineId) +STUB( + "mt5L1huWH5Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEC2EPKS8_) +STUB( + "mt7p02m-ZXg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEE7get_refEv) +STUB("mtAGcMQCufk", CurlGetDefaultUA) +STUB("mtDE5k8Nm7A", mparams .5) +STUB( + "mtEs2TQIWSo", + _ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime13ObjectPreviewEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE) +STUB("mtGwhPSWWCs", mono_aot_I18Nunbox_trampolines_end) +STUB("mtTOHB9wslk", _ZN23sceMetadataReaderWriter13allocateValueERKNS_5ValueEPFPvmEPFvS3_EPPS0_) +STUB( + "mtTgkOPhk8Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "mtTy4UsWJuI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEneERKS9_) +STUB( + "mtUp8JZ8A5Q", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("mtWy8+9VNV4", WKRenderLayerCopyElementTagName) +STUB("mtbKHTPBKTM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11UserProfile10NpProfilesEED2Ev) +STUB("mtbYjAKi5NQ", JSValueMakeUndefined) +STUB( + "mtdFQ0VveDg", + _ZN3JSC17JSArrayBufferView19ConstructionContextC1ERNS_2VMEPNS_9StructureEON3WTF6RefPtrINS_11ArrayBufferENS6_13DumbPtrTraitsIS8_EEEEjj) +STUB("mtfxWYuVWgo", _ZN7CoreIPC15ArgumentEncoder6encodeEm) +STUB( + "mtjAzc6AN9A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEC1EPS8_) +STUB("mto2CLCQdo8", ucfpos_getField_67) +STUB( + "mtoREEp+A-g", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB( + "mtoyQoIw2Hs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEcvbEv) +STUB("mtqDK9zkoIE", sceNpLookupDeleteTitleCtx) +STUB( + "mtr2GcnkCpg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE8pushBackERKS8_) +STUB("mtz-poJ42Cs", _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEEC1Ev) +STUB("mtzPnlIuyRI", sceBgftServiceIntUploadQueryTaskSection) +STUB( + "mu-oig+U7QA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("mu7FzFTWB7Q", _ZN7WebCore24presentingApplicationPIDEv) +STUB("muE9OA3xYv4", _ZNK3sce3Xml3Dom8Document10getXmlMetaEv) +STUB( + "muGDkrhLFwk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE8copyFromERKS9_) +STUB("muI2BYSOCK4", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_22ConsumeChallengeResultEED2Ev) +STUB("muIOyDB+DP8", _ZTISt15basic_streambufIwSt11char_traitsIwEE) +STUB("muVR9Eupzzc", uset_charAt_67) +STUB("muWDE+3rA7U", __tsan_ignore_deadlock_begin) +STUB("muYxPZ3hoV8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE4sizeEv) +STUB("muak2D0KKx8", MD5_Init) +STUB("mugwZhMj2pE", sceNpUniversalDataSystemIntRecordObjectSetFloat32) +STUB( + "mukRKYymIx4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEE5resetEPS9_) +STUB( + "mumD99u1S80", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE5emptyEv) +STUB("muoLz7iEl4I", + _ZN7WebCore16HTMLInputElement8setFilesEON3WTF6RefPtrINS_8FileListENS1_13DumbPtrTraitsIS3_EEEE) +STUB( + "muuDi5MzoeM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEC2EPS8_) +STUB("mv++iKizqoM", pS8) +STUB("mv-JN8Ghvlc", sceBgftServiceIntDownloadPauseTaskAll) +STUB( + "mv-R38yNRFs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEneERKS9_) +STUB("mv0DAYhVdT8", _ZN15AbstractStorage12LocalContent13writeExternalESt10shared_ptrINS_7ContentEE) +STUB("mv0O8Zg0woU", sceAmprCommandBufferPopMarker) +STUB( + "mv1rDtuG-To", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("mv286ICDTZ8", _ZN7WebCore24CoordinatedGraphicsLayer26animationStartedTimerFiredEv) +STUB( + "mv47l5pPK-4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "mv6w6CwuIWM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE10setContextEPNS2_10LibContextE) +STUB("mv9rtQAknH4", _ZNK15AbstractStorage6Folder7GetTypeEv) +STUB("mvAt6RoJbqI", _ZN3sce7Toolkit2NP9Utilities6FutureI13SceNpOnlineIdEC2Ev) +STUB( + "mvCH9CFlLLI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEEcvbEv) +STUB("mvD0zQgKzn8", _ZN3sce7Toolkit2NP2V24Core17CustomRequestBaseD1Ev) +STUB("mvDN856KXI8", sceVideoStreamingEngineMediaKeySessionSetEventHandler) +STUB("mvG5gZev4rI", JVM_NanoTime) +STUB("mvIzi5DGTis", + _ZN3sce2Np9CppWebApi12Leaderboards2V120ErrorResponseFactory7destroyEPNS3_13ErrorResponseE) +STUB("mvNKrGBaO1c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEED1Ev) +STUB("mvVL9IPsr2k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEC2ERKS7_) +STUB("mvVhzhPPtag", _ZN7WebCore6Widget16removeFromParentEv) +STUB( + "mveDZlyDjgk", + _ZN3sce2Np9CppWebApi14SessionManager2V140PostGameSessionsTouchResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_33PostGameSessionsTouchResponseBodyEEE) +STUB("mveIcwSS2+U", _ZN7WebCore11ContentTypeC2EON3WTF6StringE) +STUB("mvktq6IlZqY", _ZN7WebCore9HTMLNames5emTagE) +STUB("mvoB0gHt8TU", _ZNK9MmsMp4Box7cmpTypeEPj) +STUB( + "mvqfT6r-yB8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEC2Ev) +STUB( + "mvvFvj1zbcs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEC1EPNS2_10LibContextE) +STUB("mw-VIHa9iaI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce8ProductsEEC2Ev) +STUB("mw0r+WP8nK8", _ZN7WebCore24CoordinatedGraphicsLayer19didChangeAnimationsEv) +STUB( + "mw8au-EPeT0", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser13unsetsortModeEv) +STUB("mwAc9DUaoYY", _ZTVN23sceMetadataReaderWriter8MetadataE) +STUB("mwCjW5FlkG4", sceLoginMgrServerIsRequestedCdlgClose) +STUB( + "mwD6F+YrOEw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEC2EPS8_) +STUB("mwFPufuvMpk", _ZN7WebCore9AnimationD1Ev) +STUB("mwJYST4Bb3U", CMAC_CTX_new) +STUB( + "mwLBfagWmcA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEED1Ev) +STUB( + "mwPzFwhPYyc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE6insertENS2_13ConstIteratorIS5_EERKS5_RS8_) +STUB( + "mwRI0Oucmjg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEEC1ERSA_) +STUB( + "mwS+y2Lvyik", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEmmEi) +STUB("mwSKc1t2fYA", _ZN7WebCore9CSSParserD1Ev) +STUB( + "mwSgmTYRyPk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("mwSvDt0dHF8", eglQueryString) +STUB( + "mwbiyERzlvA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB( + "mwd2ndNjMx0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE5eraseENS2_8IteratorIS6_EERS9_) +STUB( + "mwiMusifxcM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEE7add_refEv) +STUB("mwlNhnlDWjY", delegate_virtual_invoke_imt_17) +STUB("mwnQw64GDxI", ures_openAvailableLocales_67) +STUB("mx0faWWy7F0", mono_btls_x509_revoked_get_revocation_date) +STUB( + "mx1USZ6Wocg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE6resizeEj) +STUB("mx1YlEp90mU", _ZNK7WebCore22DefaultFilterOperation5cloneEv) +STUB( + "mx2W4YXK4K8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE4sizeEv) +STUB("mx3h6KLAu9Y", _ZN7WebCore4Node17stopIgnoringLeaksEv) +STUB( + "mxFJwBFDCvg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEEdeEv) +STUB( + "mxG4y6epe80", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEeqERKS9_) +STUB("mxJteUEmiTQ", g_list_remove) +STUB("mxKx9bxXF2I", scePthreadMutexattrSetpshared) +STUB("mxN+RJIBmo4", uregion_getContainedRegions_67) +STUB("mxO-xnz0a9M", mono_aot_Sce_Vsh_GameListRetrieverWrapperunbox_trampolines_end) +STUB("mxYK3TBPDro", _ZN3WTF11setDataFileEPKc) +STUB("mxaZQnsO-L8", _ZN3JSC8Debugger16clearBreakpointsEv) +STUB( + "mxdG9hCw614", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("mxdiKUT7eAI", _ZN7WebCore27AuthenticationChallengeBaseC1Ev) +STUB("mxfm5iKxLJk", _ZN7WebCore23computeSharedStringHashEPKDsj) +STUB("mxgMmR+1Kr0", sceCameraGetFrameData) +STUB("mxgmMj-Mq-o", sceFontCharacterGetTextOrder) +STUB("mxh32RfHg5Y", _ZNK7WebCore27AuthenticationChallengeBase6isNullEv) +STUB("mxjhjb67uyM", _ZN7WebCore12PrintContext26pageSizeAndMarginsInPixelsEPNS_5FrameEiiiiiii) +STUB("mxjolbeBa78", sceHmdInternalGetDemoMode) +STUB( + "mxkvMuOegeI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEaSERS7_) +STUB("mxnAW+bctsY", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_22ConsumeChallengeResultEE3getEv) +STUB("mxsSETrkaqw", utext_previous32From) +STUB( + "mxtTnBw4Zgo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE21intrusive_ptr_add_refEPS9_) +STUB("mxv24Oqmp0E", _ZNSt15_Num_float_base10is_integerE) +STUB("mxzhhN2-WWQ", ucasemap_setLocale_67) +STUB("my-QYbUjHJM", + _ZN8meta_gen12JpegPromoter10InitializeEP19PromoteInnerContextP23PromoteInnerInformation) +STUB( + "my01LuWq6i8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEEaSERKSB_) +STUB( + "my3IUHxEwSQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEEC1ERKS9_) +STUB( + "my5fVKR4wp0", + _ZN7WebCore22EmptyFrameLoaderClient26dispatchDidReceiveResponseEPNS_14DocumentLoaderEmRKNS_16ResourceResponseE) +STUB("my8Oc0gNZDk", mono_aot_Sce_Vsh_Sticker_StickerLibAccessorplt) +STUB( + "my9ujasm6-0", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERPv) +STUB("myIWSkoJ3bs", GCC_except_table105) +STUB( + "myKfYz1xDCE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE8pushBackERKS8_) +STUB( + "myMC8ROxnjo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEEaSERKSA_) +STUB("myQDQapYJdw", fegetexceptflag) +STUB("myR4iQ03csY", _ZN7WebCore16NavigationActionC2ERKS0_) +STUB("myTyhGbuDBw", _Clocale) +STUB( + "myWrQuuJIUk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEED2Ev) +STUB("myZvY137tks", WKBundlePageGetBackForwardList) +STUB( + "myaJNYQioWY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE5clearEv) +STUB("myh96KZRMMo", _ZN3sce7Toolkit2NP2V210Tournament7Request19SendTeamMatchReportD1Ev) +STUB( + "mykTSZOU5sI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEEC1ERKSA_) +STUB("mypq-tQJOlo", GetAccountAgeA) +STUB( + "myqv+szlg2g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEEptEv) +STUB( + "myt5wCc9vB8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "myu1V6foWCU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEppEv) +STUB( + "myuq5vYU0MA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEED2Ev) +STUB("myuvNr1jabQ", WKInspectorIsElementSelectionActive) +STUB( + "myyiP0GpIeQ", + _ZN7WebCore19StorageQuotaManager6createEmON3WTF8FunctionIFmvEEEONS2_IFvmmmONS1_17CompletionHandlerIFvNS1_8OptionalImEEEEEEEE) +STUB("mz0+WE5XkSc", sceFaceDetectionEx) +STUB("mz1y6TX4dG8", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_28NpSessionDetailedInformationEE3getEv) +STUB("mz2iTY0MK4A", sceFontSupportExternalFonts) +STUB("mz868SDp4PI", _ZNK3WTF14MediaTimeRange12toJSONStringEv) +STUB("mzFdkwKGq-I", _ZN7WebCore16JSStringCallback6createEPN3JSC8JSObjectEPNS_17JSDOMGlobalObjectE) +STUB("mzRlAVX65hQ", _ZNKSt8numpunctIwE16do_decimal_pointEv) +STUB( + "mzUbhebpFq8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEC2ERS8_) +STUB("mzWSRS0Vbfo", mono_method_get_token) +STUB("mzYQPZd-O4c", sceDevUsbWriteCP) +STUB( + "mzb6MQf4-Ng", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEC1ERKS7_) +STUB("mzdokeQiGnU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEEC2ERS7_) +STUB("mzhCkcbagoU", _ZTVN7WebCore11MediaSampleE) +STUB("mzhXPivl8Ps", _ZN4Manx11MediaPlayer4seekEf) +STUB( + "mzjfcAmByCY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("mzlILsFx0cU", _sceNpAllocatorMalloc) +STUB( + "mzoFkKI13Sk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("mzppT1RdIj0", sceApplicationAddProcess2) +STUB("mzqT-T8t4M4", _ZN22MmsMdCommonFsOperation18destroyCacheBufferEv) +STUB("mzrWfOsWESU", uregex_setTimeLimit_67) +STUB( + "mzreM+q4bNg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEC1ERKS8_) +STUB( + "mzrsVTcm1Ok", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEED2Ev) +STUB("mzu52lea-vk", scePerfTraceAmmUpdate) +STUB("mzub0co9dKs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEC2Ev) +STUB( + "mzvw5FS-jnE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEC1Ev) +STUB( + "mzw-P+8wKaI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEE11release_refEv) +STUB("mzwKIfzZzsQ", __tsan_ignore_deadlock_end) +STUB("mzx-fb4nwFg", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_19WordFilterSanitizedEEC2Ev) +STUB( + "n+-OJ0gOPf8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEC2EPKS8_) +STUB("n+2eEQ8aSSU", + _ZN3sce2Np9CppWebApi14SessionManager2V122GameSessionPushContext16setPushContextIdEPKc) +STUB( + "n+6BEs5fB-A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEC2EPS8_) +STUB( + "n+6thoYaJxE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEC1ERKS7_) +STUB( + "n+9CK0KwPlI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEaSERS8_) +STUB("n+J44ByUpVs", _ZN3sce2Np9CppWebApi14SessionManager2V113ErrorResponseD1Ev) +STUB("n+JGk7gk9gs", png_read_end) +STUB("n+JHSOj0nIA", _ZN8meta_gen13JpegRetriever17GetDefaultCommentEv) +STUB("n+LcSnkfUvw", _ZNK7WebCore6Widget14platformWidgetEv) +STUB( + "n+MgiQh55IE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEneERKS9_) +STUB("n+NFkoa0VD0", _ZNSt14numeric_limitsIfE14min_exponent10E) +STUB("n+Pv1PgyfyE", _ZN3sce7Toolkit2NP2V27NpUtils12Notification15UserStateChangeC2ERKS5_) +STUB("n+R7PGJa6MI", sceCamera2GetWhiteBalance) +STUB("n+WAJSfFMxg", ubrk_following_59) +STUB("n+WMO5xUXXw", WKPreferencesSetMainContentUserGestureOverrideEnabled) +STUB("n+WzmrfJIIc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEE11release_refEv) +STUB("n+Znry5gAsA", + _ZN8meta_gen11MsvPromoter21setKeyValue_TBLI_DataENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti) +STUB("n+aUKkC-3sI", _ZTVSt12out_of_range) +STUB( + "n+azXmA0an0", + _ZN3sce2Np9CppWebApi7Matches2V121ResponseMemberFactory6createEPNS1_6Common10LibContextEPKcbPNS5_12IntrusivePtrINS3_14ResponseMemberEEE) +STUB("n+bQ6u1wxSk", _ZN7WebCore13internalErrorERKN3WTF3URLE) +STUB("n+c0VsaCN7A", _ZTVN7WebCore24MatrixTransformOperationE) +STUB( + "n+cCRDmMtsY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEC2EPS8_) +STUB( + "n+gqP-BgisM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE5beginEv) +STUB("n+ktFMPcviM", uhash_compareUChars_67) +STUB("n+rFeP1XXyM", sceCameraGetDeviceConfigWithoutHandle) +STUB( + "n+t1lTOLB58", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEixEm) +STUB("n+wqQh7L9Zo", mono_aot_Sce_Vsh_Np_Tmdbjit_got) +STUB("n-0NbCX8yFc", sceFsExternalStorageGetRawDevice) +STUB("n-1UPRowKe0", _ZNK3sce2Np9CppWebApi6Common8IteratorIdEeqERKS4_) +STUB("n-3HFZvDwBw", _ZNKSt7collateIwE7compareEPKwS2_S2_S2_) +STUB("n-9+9Xe90t4", WKURLRequestCopyURL) +STUB( + "n-FyA8R0C8E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE4sizeEv) +STUB("n-IAZb7QB1Y", sceNetShowRouteForBuffer) +STUB("n-IyBYJNbQ0", monoeg_g_getenv) +STUB( + "n-KdZ3OsRlA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEneERKSA_) +STUB( + "n-LnfbqjR84", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEE7get_refEv) +STUB("n-MGvHHAGpw", _ZN7WebCore9HTMLNames24onwebkitmouseforceupAttrE) +STUB( + "n-POOnb0De4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEaSERKS7_) +STUB("n-PYt6UlnPQ", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112UpdateStatusEEaSERKS7_) +STUB( + "n-fnw4Ogmpc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE5emptyEv) +STUB( + "n-h4fiNPRmk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEneERKS9_) +STUB( + "n-h82bkkLJ0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB( + "n-hVvL9XmlM", + _ZN3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatformC2EPNS1_6Common10LibContextE) +STUB("n-pzjs6rl48", scePerfTraceStart) +STUB( + "n-q--hTURoU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEED2Ev) +STUB("n-tHH4IKZFM", _ZN7WebCore17PageConsoleClient5countEPN3JSC14JSGlobalObjectERKN3WTF6StringE) +STUB("n-xkyAPf-P8", + _ZN7WebCore22CSSAnimationController20pauseAnimationAtTimeERNS_7ElementERKN3WTF10AtomStringEd) +STUB("n-zI3cgPTM0", usprep_prepare_67) +STUB("n-zwIVhJMTY", sceMatAgcUnregisterResource) +STUB("n0+HGo-hFvk", ulist_count_keyword_values_67) +STUB("n0+fCzx5nNQ", mono_aot_System_Web_Servicesjit_code_end) +STUB("n01yNbQO5W4", fchmod) +STUB("n09JRKQpbrw", _ZNK7WebCore6Editor7Command9isEnabledEPNS_5EventE) +STUB("n0BEVlnSNcY", sceCustomMusicAudioOutFinalize) +STUB("n0C1jscw9HA", _ZN3JSC7Symbols30generatorFieldFramePrivateNameE) +STUB( + "n0CfOsYBWUU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEE11release_refEv) +STUB("n0ErFZ2hmKs", __sys_randomized_path) +STUB("n0FeJgonoxQ", sceImeBackendGetConfirmString) +STUB("n0FvTzIPodM", sceKernelGetBioUsageAll) +STUB("n0I27gnpKSI", _ZN8meta_gen12JpegPromoterD0Ev) +STUB("n0IhhBFAvNU", + _ZNK3JSC12PropertySlot20customAccessorGetterEPNS_14JSGlobalObjectENS_12PropertyNameE) +STUB("n0LXybBG1YE", _ZN3sce7Toolkit2NP2V23TUS15TusDataStatusesC1Ev) +STUB( + "n0eqCdZNIZA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEC2EPNS2_10LibContextE) +STUB("n0kT+8Eeizs", iswdigit) +STUB( + "n0lAac92Sgk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody30setComparedLastUpdatedDateTimeERK10SceRtcTick) +STUB("n0lBsnSyAUs", sceMbusDebugRemoveCameraAppModuleFocus) +STUB("n0nvCnrzJI0", scePerfTraceStop) +STUB( + "n0pMUbQ5Oz8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "n0uNJTkBRwU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEdeEv) +STUB( + "n0vlZQIhu-k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE6resizeEj) +STUB( + "n0xT9-U2S5E", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("n0zBIi9gL8E", _ZN3sce7Toolkit2NP2V23TUS7Request17TryAndSetVariableD1Ev) +STUB("n1-v6FgU7MQ", sceKernelConfiguredFlexibleMemorySize) +STUB( + "n11TCVwRRMQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "n13MxN9nglY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEEC1ERKSA_) +STUB( + "n14xIDxjDts", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "n169H+q43G0", + _ZN9Inspector28DOMDebuggerBackendDispatcherC1ERNS_17BackendDispatcherEPNS_35DOMDebuggerBackendDispatcherHandlerE) +STUB("n16Kdoxnvl0", sceAudioOutInitIpmiGetSession) +STUB( + "n1A8mIBOxJ4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEptEv) +STUB("n1DPIeSdKSQ", _Z42SystemParameters_SetSystemPadButtonMeaningi) +STUB( + "n1Iaaj0nZ34", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE5beginEv) +STUB("n1KOc0lTUEs", arc4random_buf) +STUB("n1KPXvNBMyA", _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_7ElementE) +STUB("n1O+i3JtWqk", _ZNK9Inspector15ScriptCallFrame12functionNameEv) +STUB( + "n1Q4d30uUkk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC2Ev) +STUB( + "n1QWJSTlDd4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEixEm) +STUB("n1Y6pGR-8AU", _ZNSt8messagesIwE2idE) +STUB("n1fVBauLrig", _ZN7WebCore21MediaRecorderProvideraSERKS0_) +STUB("n1fn2KFeLDA", sceNpSessionSignalingGetConnectionStatus) +STUB("n1gMH5Z1HD4", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setGraphicsOffsetSequenceId) +STUB("n1jfUfgvIUw", sceDepthGetCalibrationData) +STUB("n1ksRF2w2MY", Java_java_io_RandomAccessFile_close0) +STUB("n1lbw546wwY", WKPreferencesGetRegionBasedColumnsEnabled) +STUB("n1m5ZaCMtpk", _ZNK7WebCore15AffineTransform7mapSizeERKNS_7IntSizeE) +STUB( + "n1pjmhOXaEA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129MatchCompletionRateProperties8fromJsonERKNS_4Json5ValueE) +STUB("n1r-IFbo-pA", JNU_NotifyAll) +STUB( + "n1vZhD2VkK8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEE3getEv) +STUB( + "n1yCLMxpseQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE3endEv) +STUB("n2-b3O8qvqk", _Thrd_current) +STUB("n2-qnouzRIw", _ZN7WebCore9HTMLNames11onpauseAttrE) +STUB("n22d-HIdmMg", sceFontGlyphRenderImageVertical) +STUB( + "n25nNSUwFSU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEED2Ev) +STUB("n260kXCrg1M", ubidi_countParagraphs_67) +STUB("n2843gPbB4k", Java_java_lang_Float_floatToRawIntBits) +STUB( + "n2FA2b9XoPY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "n2JFJv7JGo4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "n2JIGQMwwcM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEmmEv) +STUB("n2MMpvU8igI", scePthreadMutexattrInitForInternalLibc) +STUB( + "n2Pl5e-uu48", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEEdeEv) +STUB("n2QlZrsnuHw", _ZN3sce7Toolkit2NP2V27Session12Notification18InvitationReceivedC2ERKS5_) +STUB( + "n2Vt5fGx-nA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEeqERKS9_) +STUB("n2XkxixrY2k", sceCompositorSetGameSufaceControlCommand) +STUB("n2ZeA5w5uDU", _ZN4Manx7Network6mallocEm) +STUB( + "n2ZfpDnsjjY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("n2fD4A+pb+g", sceAgcCbSetShRegisterRangeDirect) +STUB("n2fSRzuTEY4", sceLibreSslTerm) +STUB("n2hM0Qkiz8s", WKInspectorIsProfilingJavaScript) +STUB("n2jDNez3pz8", _ZN9Inspector22PageFrontendDispatchernwEmPv) +STUB("n2kx+OmFUis", _ZTISt9exception) +STUB("n2mWDsholo8", getwchar) +STUB( + "n2mvr9RWnGA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEED2Ev) +STUB("n2nk-l3evas", nsnp_CheckHMAC) +STUB("n2nyhRL5uUg", sceKernelInternalGetMapStatistics) +STUB("n2oEw79ahcE", mono_aot_System_Reactive_Linqjit_code_start) +STUB("n2oTCajh0fE", sceApplicationSendResultOfDebuggerResumeRequest) +STUB( + "n2sz2sbWgFA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEC2ERS7_) +STUB( + "n2wYP2IZN8k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEC1EPKS8_) +STUB("n371J5cP+uo", physhm_open) +STUB("n38wJyalO6c", TerminateNetLib) +STUB("n3C2Myucss0", mono_aot_System_Web_Servicesmethod_addresses) +STUB("n3G2GtFdwEw", sceHubAppUtilDeeplinkToPSSubscriptions) +STUB( + "n3K+UNMb1Ww", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("n3MYEpevnMo", sceWkFontConfigGetFontFromFontName) +STUB( + "n3QbD66PmWQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEE7get_refEv) +STUB("n3STrw-LsM0", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEEdeEv) +STUB( + "n3VLZRf0Fx8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE5emptyEv) +STUB("n3dXGYgHTFM", goby_GetReachableNodes) +STUB("n3fobCnt5aw", _ZN11GvMp4Parser6Common11Utf16ToUtf8ERKSbIwSt11char_traitsIwESaIwEEPSsi) +STUB( + "n3gwp68uDjs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEppEi) +STUB("n3mIRYR4t+M", + _ZN3JSC49throwConstructorCannotBeCalledAsFunctionTypeErrorEPNS_9ExecStateERNS_10ThrowScopeEPKc) +STUB( + "n3nXHwhDtOE", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V136GetMultiVariablesResponseBodyFactory7destroyEPNS3_29GetMultiVariablesResponseBodyE) +STUB( + "n3o09hkKRos", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("n3q6QEZhIXU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEE11get_deleterEv) +STUB( + "n3w8YA3RmcA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEC2ERKS7_) +STUB("n3y8Rn9hXJo", _ZNSt12length_errorD1Ev) +STUB("n4+3hznhkU4", _ZNSt8messagesIwEC1Em) +STUB("n40jtA5wAls", _ZN7WebCore17FrameLoaderClient29hasFrameSpecificStorageAccessEv) +STUB( + "n42B6D8jyoM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEC2EPS6_PNS2_10LibContextE) +STUB("n42TLoHtWy0", _Z29scePlayGoEmuFsGetChunkNumListPKcmtPtS1_) +STUB("n454+zSQlTA", _ZN3JSC23MacroAssemblerX86Common17s_lzcntCheckStateE) +STUB("n485EBnIWmk", sceAgcWaitRegMemPatchCompareFunction) +STUB( + "n4Db-05lIN4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEED1Ev) +STUB( + "n4GtvWk+uWE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE7reserveEi) +STUB("n4Hk3OLW89E", sceCompositorSetVirtualCanvasPatchCommand) +STUB( + "n4IbbE+Aqck", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemProperties12getsessionIdEv) +STUB( + "n4MrIuom-Gc", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126NatConnectivityFromFactory7destroyEPNS3_19NatConnectivityFromE) +STUB("n4RNMiYDVCc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE5emptyEv) +STUB( + "n4UDsS5Zm+I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEED1Ev) +STUB( + "n4ajvrXToOQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEaSERKS9_) +STUB( + "n4cbL5zSjP0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE8capacityEv) +STUB( + "n4eQW6-7d34", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEC1EPNS2_10LibContextE) +STUB( + "n4h3W0GvqHw", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_15PlayedWithStoryENS1_15AppSTLAllocatorIS5_EEEED1Ev) +STUB("n4j1H0wscak", _ZN3NTF22URLRequestJobScheduler8finalizeEv) +STUB("n4k9JpeSBjs", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEEC1ERS6_) +STUB("n4l3FTZtNQM", sceRemoteplaySetProhibitionForVsh) +STUB("n4o8mgXtF5s", u_iscntrl) +STUB("n4oK9-Sedgw", Java_com_sony_bdjstack_core_AppCacheManager_open) +STUB( + "n4tn6dmub3o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEE11get_deleterEv) +STUB("n4yiKNo1yCs", u_foldCase) +STUB( + "n55eEOu-tII", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEED1Ev) +STUB( + "n586vEw51v8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEppEi) +STUB("n590hj5Oe-k", sceFontCreateLibraryWithEdition) +STUB("n59IAXebVfU", _ZN3JSC2VM15symbolSpaceSlowEv) +STUB("n5CTNFHHvfk", rgctx_fetch_trampoline_rgctx_3_p) +STUB( + "n5CpMsdrCD8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE5beginEv) +STUB("n5ElQVYsU1A", sceAgcDriverUnregisterWorkloadStream) +STUB( + "n5G+iBRnt-E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "n5GTmLB2iPA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEE21intrusive_ptr_sub_refEPS7_) +STUB( + "n5HJHEZaiaY", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB( + "n5J4HwNBtnQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEmmEi) +STUB( + "n5JP7v2Ighs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC1Ev) +STUB("n5JiAJXsbcs", sceRtcSetWin32FileTime) +STUB("n5JmImxTiZU", sceNpMatching2JoinLobby) +STUB( + "n5N9qtRJ38E", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEED0Ev) +STUB("n5O97QK+sCE", mono_class_get_full) +STUB( + "n5OVzaIgpnM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEE3getEv) +STUB("n5OxFJEvPlc", sceRemoteplayGetRemoteplayStatus) +STUB( + "n5QPPs+RqkM", + _ZN9Inspector20DOMBackendDispatcher13hideHighlightElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("n5RBAg98VdI", _ZN3sce7Toolkit2NP2V28Matching7Request7GetDataD1Ev) +STUB("n5TUlwdhGSA", sceFiosDirectoryDeleteSync) +STUB( + "n5TZK6fTT2o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB("n5TrUOqCmfI", PKCS12_PBE_add) +STUB("n5Ts57kOROA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEED1Ev) +STUB("n5Wu8G9LZzQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEE11release_refEv) +STUB( + "n5eio0APBmg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEE3getEv) +STUB("n5hK0leG0XI", mono_domain_add_class_static_data) +STUB( + "n5io1x3aRtM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEC1Ev) +STUB( + "n5j3zPO0VQI", + _ZN9Inspector21InspectorConsoleAgent19addMessageToConsoleESt10unique_ptrINS_14ConsoleMessageESt14default_deleteIS2_EE) +STUB( + "n5l96a7BVO0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEaSERKS7_) +STUB("n5rOcbO6uT4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEptEv) +STUB("n5uAZspm8I0", WKBundlePageExecuteEditingCommand) +STUB( + "n5w51Vgj7Sk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEE5resetEPS7_) +STUB( + "n5wSGFKkJnM", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsC2EPNS1_6Common10LibContextE) +STUB( + "n5wsfWbLU0o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEC2ERS7_) +STUB("n6-12LafAeA", SSL_lookupAlert) +STUB("n60em-2RTtc", _ZN7WebCore8SVGNames20rendering_intentAttrE) +STUB("n65bLL1d+L8", _ZN3JSC17JSPromiseDeferred6createEPNS_9ExecStateEPNS_14JSGlobalObjectE) +STUB( + "n67JqM3qwqk", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeaders21intrusive_ptr_add_refEPS5_) +STUB( + "n6ALakf0SDM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "n6B58mTfxMM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEC1Ev) +STUB("n6F49ESSgEU", sceAvControlGetNativeMonitorInfo) +STUB("n6FC+l9DU70", _ZN3sce4Json5Value3setEPKc) +STUB("n6G09wtp5T4", _ZN7CoreIPC15StringReference6decodeERNS_15ArgumentDecoderERS0_) +STUB( + "n6LdZF4M7p4", + _ZN7WebCore26PresentationOrderSampleMap42findSamplesBetweenPresentationTimesFromEndERKN3WTF9MediaTimeES4_) +STUB("n6MH17TR38U", + _ZNK7WebCore11RenderStyle36visitedDependentColorWithColorFilterENS_13CSSPropertyIDE) +STUB( + "n6NPMtYWlI4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEE11release_refEv) +STUB("n6PRMUwUtXU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEptEv) +STUB( + "n6PneeK7QEM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEC1EPS7_PNS2_10LibContextE) +STUB("n6SEUE4Txvg", ubrk_last) +STUB( + "n6VvFkfzkFA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEppEv) +STUB("n6WEFbtXiGo", mp_send) +STUB("n6aweWpmdI0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge10ChallengesEE5resetEv) +STUB( + "n6mQTBd5lj4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyC1EPNS1_6Common10LibContextE) +STUB( + "n6mVHVx7wVo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE5emptyEv) +STUB( + "n6xB0E+nyoE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEptEv) +STUB("n79wW64CUh8", glVertexAttribI4ui) +STUB("n7AepwR0s34", mktime) +STUB( + "n7CkNJvRRZ4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEptEv) +STUB("n7FS+PSDPkk", _ZN7WebCore9HTMLNames16onpointeroutAttrE) +STUB( + "n7GDXQAOUf0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEE11release_refEv) +STUB( + "n7GSSxCG6cE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "n7H25f3vn8w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("n7Hix+Y8cdg", vm_send_CreateUnboxTrampoline) +STUB( + "n7JvuUScc7U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE8capacityEv) +STUB("n7KgxE8rOuE", sceAudioOutA3dInit) +STUB( + "n7KwJRwM6Og", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEE5resetEPS7_) +STUB("n7Ld6-VjSic", uspoof_getInclusionSet_67) +STUB("n7Qrf8HhJ2E", _ZN7WebCore7Element9clientTopEv) +STUB("n7RJkfW-9oE", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS12TusVariablesEE5resetEv) +STUB( + "n7S7lOfl71U", + _ZN7WebCore30enclosingTextUnitOfGranularityERKNS_15VisiblePositionENS_15TextGranularityENS_18SelectionDirectionE) +STUB( + "n7XsYTiwPIY", + _ZN3sce2Np9CppWebApi6Common23UpDownStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEED1Ev) +STUB("n7bPu80OxTg", showProtocolInfoList) +STUB("n7fxSSTwbQo", sceVshAvcapStart) +STUB( + "n7i4jU+-eEw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB("n7iD5r9+4Eo", _ZTISt11_Facet_base) +STUB("n7iQZcGKwHg", _ZN7WebCore9HTMLNames5rpTagE) +STUB("n7irDGMVsaM", _ZN4Manx11MediaPlayer9setVolumeEf) +STUB( + "n7n1CKfL6u0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEppEv) +STUB("n8+7l03wVdE", sceMbusReleaseControl) +STUB( + "n8-BZpTov9g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE7reserveEi) +STUB("n837mbvLMVY", _ZN12video_parser13cVideoMetaVWG15getArtworkImageEjjPh) +STUB( + "n864xB2lPQ4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEdeEv) +STUB("n88vx3C5nW8", gettimeofday) +STUB("n8AVK7aWTSw", _ZN7WebCore6DOMURL7setHrefERKN3WTF6StringE) +STUB("n8F1ANqg6nw", _ZN3sce7Toolkit2NP2V23TUS12TusVariables13MAX_VARIABLESE) +STUB("n8IqpiMeeZ4", WKPageFindStringMatches) +STUB( + "n8NAvotnCuw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEeqERKS9_) +STUB("n8Pye6iV5Fk", _ZNK7WebCore27AuthenticationChallengeBase15failureResponseEv) +STUB("n8Re5ynSfjU", _ZN7WebCore28InspectorFrontendClientLocal8SettingsC1ERKS1_) +STUB("n8SlmGnoGtI", AacsPermissionInit) +STUB("n8SrCVpRtkg", _ZN7WebCore20protocolIsJavaScriptERKN3WTF6StringE) +STUB( + "n8XRQHI6nxQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEptEv) +STUB("n8ZtvBzZvug", YGNodePrint) +STUB("n8cHns2p7Lc", _ZN7WebCore21BlobDataFileReferenceC1ERKN3WTF6StringE) +STUB("n8gS5RNyEss", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession18swapSupportedIsSetEv) +STUB("n8hMLe31OPA", sceHttp2SetConnectionWaitTimeOut) +STUB("n8o0Aq+yaG0", ucal_setAttribute_67) +STUB("n8onIBR4Qdk", clock_1700) +STUB("n8sphRsRTys", _ZN3sce2Np9CppWebApi6Common6VectorIlE8copyFromERKS4_) +STUB("n8vgpaQg6dA", sceAgcSetRangePredication) +STUB("n9-NJEULZ-0", _ZNKSt24_Iostream_error_category7messageEi) +STUB("n9-Va1Nirj4", sceNpSnsTwitchDialogInitialize) +STUB("n91L+hmVVXQ", monoeg_g_string_printf) +STUB("n92z2LCN3+c", _ZTVN3JSC18GCActivityCallbackE) +STUB("n95Is68jK7w", _ZN7WebCore40registerDefaultPortForProtocolForTestingEtRKN3WTF6StringE) +STUB("n9DxFKQWQFI", WTFReportAssertionFailure) +STUB("n9GZ6rEoFkM", _ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamTournamentC1ERKS4_) +STUB( + "n9HZYGhelGs", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V131NatConnectivityToMetricsFactory6createEPNS1_6Common10LibContextEiiPNS5_12IntrusivePtrINS3_24NatConnectivityToMetricsEEE) +STUB( + "n9I+6gj6FS0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEE11get_deleterEv) +STUB("n9MVeGIJYyU", + _ZN7WebCore15AsyncFileStream7getSizeERKN3WTF6StringENS1_8OptionalINS1_8WallTimeEEE) +STUB("n9RZb0NlidA", _ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamRankResultC1ERKS4_) +STUB( + "n9VLGVm4beE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEEC2ERS9_) +STUB( + "n9VQ3uvbOws", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "n9WTyJm5Wl0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEC1ERKS7_) +STUB( + "n9YD9Nfz6Eo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE3endEv) +STUB("n9YQtZxuqHY", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container14setReleaseDateEPKc) +STUB( + "n9fNTsTpx+M", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEED2Ev) +STUB( + "n9ihDxAE5zo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("n9mE+mAGfLM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V112OnlineStatusEEneERKS7_) +STUB("n9pedsJlpxk", _ZN7WebCore9JSElement14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB("n9pzAHeCCVU", _ZN3sce2np4Cond4ctorEv) +STUB( + "n9w38t1tfqM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEEC1ERKSA_) +STUB("n9xRQPtUP0g", sceShellCoreUtilNavigateToGoHome) +STUB( + "nA0VKJUi2X8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEE5resetEPS9_) +STUB( + "nA45fjr+MNM", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSession13isInitializedEv) +STUB( + "nA4nTdVS5e4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("nA5rRwLrgIU", sceShellCoreUtilSetSocialScreenStatus) +STUB( + "nA9oyW4lVE4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEED1Ev) +STUB("nAAZcZAQrgA", __asan_stack_malloc_always_5) +STUB( + "nAC1eEH3xG0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEED2Ev) +STUB("nACi9QeVg4w", __tsan_external_register_header) +STUB("nAEVsJSF5b0", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_23NpSessionInvitationInfoEEC2ERKS4_) +STUB("nAEqawEZG5s", sceNpEntitlementAccessPollUnifiedEntitlementInfoList) +STUB( + "nAOwGnYSjc0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEC1Ev) +STUB("nAQgas86ruo", + _ZNK3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform14joinStateIsSetEv) +STUB( + "nARu2cgHD3o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEEaSERSA_) +STUB( + "nAXJqQPQ9cQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE4sizeEv) +STUB("nAY81HrWAH8", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicketC1ERS5_) +STUB( + "nAciQg-JdOY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE4sizeEv) +STUB( + "nAdDA3UMCMI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEmmEi) +STUB("nAfQ6qaL1fU", sceFontFtSupportType1) +STUB("nAjUtxqB9LI", _ZN3sce2Np9CppWebApi6Common6VectorImE5eraseENS2_13ConstIteratorImEERS6_) +STUB("nAmKGJb6sRI", + _ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody6toJsonERNS_4Json5ValueEb) +STUB("nApJjpKNBl4", sceAgcFuseShaderHalves) +STUB( + "nApx6BTQIy0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE8capacityEv) +STUB("nB1qwCvvWwc", _ZN7WebCore8SVGNames4aTagE) +STUB( + "nB1rD0ZE508", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEiRNS2_10LibContextEPT_m) +STUB("nB4sLkEBwME", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEEptEv) +STUB("nB5P77Apjzw", _ZN7WebCore28InspectorFrontendClientLocal20sendMessageToBackendERKN3WTF6StringE) +STUB("nB6UZ-CBfe0", _ZNSt8ios_base5imbueERKSt6locale) +STUB("nBCuC-XurKo", WKPreferencesSetHighlightAPIEnabled) +STUB("nBDD66kiFW8", sceShareInitialize) +STUB("nBE10khVsAU", _ZN7WebCore9HTMLNames8slotAttrE) +STUB("nBH6i2s4Glc", sceCameraDeviceOpen) +STUB("nBIItYZJIzk", __tsan_get_report_tag) +STUB("nBIpN4mBMjs", monoeg_malloc) +STUB("nBKrIrp2deY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEE7add_refEv) +STUB( + "nBNMVCMebLA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEmmEi) +STUB("nBTHhrsp88o", sceCesEucKrToUtf32le) +STUB("nBTx0OTc+R0", sceVideoCoreMediaSourceAddSourceBuffer) +STUB("nBYJ4942-WQ", WKPluginInformationBundleIdentifierKey) +STUB("nBaHhQiTjPc", mono_aot_Sce_Vsh_VoiceAndAgentplt_end) +STUB( + "nBcAjS-urnE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEEptEv) +STUB( + "nBfT1+gfsBo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEC1EPNS2_10LibContextE) +STUB( + "nBhothmfqMk", + _ZNK3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfile16hasincludeFieldsEv) +STUB( + "nBkZVT9Z5XQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEEdeEv) +STUB("nBv4CKUGX0Y", sceHmdInternalMapSharedMemory) +STUB("nC01hn2XlzQ", _ZN3JSC7Symbols31stringConcatSlowPathPrivateNameE) +STUB("nC0Zgj4tVAY", _ZN9Inspector18InspectorHeapAgentD1Ev) +STUB("nC34ZWPrJk8", + _ZN7WebCore17TextureMapperTile5paintERNS_13TextureMapperERKNS_20TransformationMatrixEfj) +STUB("nC7zcLzwpEo", uhash_setValueDeleter_67) +STUB( + "nCE0oUzC6sY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEptEv) +STUB("nCETMtuZchA", _ZN7WebCore9HTMLNames10srcsetAttrE) +STUB( + "nCGD-BANzTg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEC2EPS8_) +STUB("nCL0NyZsd5A", sceNetGetDnsInfo) +STUB( + "nCNmgHsCU3U", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB( + "nCRN9+0hXUM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("nCU0dMWnF9w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEaSERS7_) +STUB("nCUgItdN2ms", sceAgcSetShRegIndirectPatchSetNumRegisters) +STUB("nCY4Kbf9kks", usearch_getMatchedStart_67) +STUB("nCfhbtuZbk8", sceUserServiceSetPsnPasswordForDebug) +STUB("nCiDgT74Xis", WKPageCreateSnapshotOfVisibleContent) +STUB("nClGsf5G8Bs", _ZN9Inspector28DOMStorageFrontendDispatcherdlEPv) +STUB("nClH8DV3dsg", _ZN7WebCore14JSVoidCallbackD0Ev) +STUB("nCoQtOC8CG4", mono_aot_Sce_Vsh_Orbis_CdlgServerNpCommerceunbox_trampolines) +STUB("nCx+giT2jrA", _ZN3sce2Np9CppWebApi6Common8IteratorImEC1Ev) +STUB("nCzcAMrlehk", _ZN7WebCore22HTMLPlugInImageElement24restartSnapshottedPlugInEv) +STUB("nD+OxQupMas", WKWebsiteDataStoreConfigurationLegacyTLSEnabled) +STUB( + "nD0Rozqc1c8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEED1Ev) +STUB("nD1h8EpuS60", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEE3getEv) +STUB("nD4xNIeYpNY", ShGetInfo) +STUB("nD58JS2vOU8", sceVnaGetTtsVolume) +STUB("nD5RNcuimOk", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEEixEm) +STUB( + "nD66tDlp+6I", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEC1EPS8_) +STUB("nDDFFbZNeSs", _ZN3sce2Np9CppWebApi11Matchmaking2V15Cause14setReferenceIdEPKc) +STUB("nDKtb2VgKQg", mono_aot_Sce_Vsh_Np_AppLaunchLinkunbox_trampoline_addresses) +STUB("nDNIuVN8XcQ", _ZN3JSC2VM21float64ArraySpaceSlowEv) +STUB( + "nDNOYz5+bsI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEmmEv) +STUB("nDO9AirbPYQ", u_strrchr_67) +STUB("nDPE3mxjQG0", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15CategoryInfoSubEEC2Ev) +STUB( + "nDPLYMNGeaA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEE11release_refEv) +STUB("nDQHNcAA7oE", Java_com_sony_bdjstack_core_CoreApp_getAppBinding) +STUB("nDUS4Xc-Twc", + _ZN7WebCore11HistoryItem11setFormDataEON3WTF6RefPtrINS_8FormDataENS1_13DumbPtrTraitsIS3_EEEE) +STUB( + "nDVnErygi2U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEED1Ev) +STUB("nDWV3sgOqg8", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEEmmEi) +STUB("nDZ6emNRW0k", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEEmmEv) +STUB( + "nDZqpxJOBMc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEC1EPS8_) +STUB( + "nDafNTdjz30", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEeqERKS9_) +STUB( + "nDd7mvflliU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEEaSERSA_) +STUB( + "nDfPLg4mlzI", + _ZN3sce2Np9CppWebApi14SessionManager2V137ResponsePlayerSessionSpectatorFactory6createEPNS1_6Common10LibContextERKmPKcPNS5_12IntrusivePtrINS3_30ResponsePlayerSessionSpectatorEEE) +STUB("nDiFkxIT2+g", _ZN7WebCore9HTMLNames17onpointerdownAttrE) +STUB( + "nDiMvrwlC3s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE5clearEv) +STUB( + "nDkgyE+9CTc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE10setContextEPNS2_10LibContextE) +STUB("nDlY546YL3E", _ZNK3WTF6String25splitAllowingEmptyEntriesEDs) +STUB("nDlc6zRC2t0", mono_aot_Sce_Vsh_SysUtilWrapperunbox_trampoline_addresses) +STUB( + "nDuhg62uWJY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE8copyFromERKS9_) +STUB("nDyn07nzty0", WKPreferencesSetPlugInSnapshottingEnabled) +STUB( + "nDzRKDzOBUo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEEC2ERKSA_) +STUB( + "nE-74O23rSs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEE5resetEPS9_) +STUB( + "nE-Zuiux43Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEEC2ERKSA_) +STUB( + "nE0ooeCMRm8", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi12getContainerEiRKNS4_23ParameterToGetContainerERNS1_6Common11TransactionINS8_12IntrusivePtrINS8_6VectorINSA_INS3_9ContainerEEEEEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB( + "nE2NEewdYRo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEC1EPS9_) +STUB("nE2UZ8S3BYk", unorm2_isNormalized_67) +STUB( + "nE55N5ZbNeI", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setInteger4ERKi) +STUB("nE5bcvHFP9g", res_findResource_67) +STUB( + "nE7Uaw8mvi0", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities17setacceptLanguageEPKc) +STUB( + "nE8nAvjOqRo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEE11get_deleterEv) +STUB("nEEyItC81l8", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchStatusC1ERS5_) +STUB( + "nEIAIXwoaPs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE21intrusive_ptr_add_refEPS9_) +STUB("nEM+zCZz0JI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEEaSERS7_) +STUB("nENvUAsAKdY", sceShellCoreUtilLeavePowerLockSection) +STUB("nEOROxrqYOM", Java_java_net_PlainDatagramSocketImpl_socketSetOption) +STUB("nESq6gIQEFY", _ZN9Inspector22InspectorDebuggerAgent17currentCallFramesERKNS_14InjectedScriptE) +STUB("nEVyOIFw+90", _ZN7WebCore16BlobRegistryImplD1Ev) +STUB( + "nEZZ5vZUD3Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEC2ERKS7_) +STUB( + "nEb8ASolHKM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEeqERKS9_) +STUB( + "nEd0rNq8BOk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEppEi) +STUB("nEiBLNePhho", WKFrameCopyChildFrames) +STUB( + "nEnT4AzTnFM", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setBoolean4ERKb) +STUB("nErh0-bgaRI", _ASCIIData_67) +STUB("nEuTkSQAQFw", _ZTIb) +STUB("nEusu9xBLh0", BgsStorageGetItems) +STUB("nEyFbYUloIM", sceGnmGetShaderProgramBaseAddress) +STUB( + "nF1dSAyNwUM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("nF6bFRUBRAU", sceGnmDispatchInitDefaultHardwareState) +STUB("nF8-CM+tro4", _ZNSbIwSt11char_traitsIwESaIwEE6appendEmw) +STUB("nF9rSdBizhw", mono_btls_free) +STUB( + "nFKouypCJDE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEmmEi) +STUB("nFM3aibrZJA", uprv_decNumberFromUInt32_67) +STUB("nFP8qT9YXbo", sceGameLiveStreamingRegisterCallback) +STUB("nFcgu-TskWM", _ZN3sce2Np9CppWebApi6Common8IteratorINS2_17ParameterBaseImpl6KeySetEEmmEi) +STUB("nFj5i0xNIUE", _ZN3sce7Toolkit2NP2V28Matching5RoomsC2Ev) +STUB( + "nFjsttfAnaQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE5beginEv) +STUB("nFn-3CWQEyo", sceVdecCoreResetDecoder) +STUB( + "nFpP-R2TAsQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "nFs+4WBGkR4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEC2Ev) +STUB( + "nFumBl7JvTc", + _ZN3sce2Np9CppWebApi14SessionManager2V139RequestCreatePlayerSessionPlayerFactory7destroyEPNS3_32RequestCreatePlayerSessionPlayerE) +STUB( + "nFwyTN74zXo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("nFxbcwY2e1U", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE3endEv) +STUB( + "nFytmXf7ZqQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEEC2ERSA_) +STUB("nG+HNBwQ4sw", sceShellCoreUtilGetSocialScreenStatus) +STUB("nG-FYqFutUo", __sys_get_proc_type_info) +STUB( + "nG5zh66OoH4", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEEiRNS2_10LibContextEPT_m) +STUB("nG9zMww7lhE", WKMutableDictionaryCreate) +STUB( + "nGJIGKx6MmA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSD_ESD_) +STUB("nGMLLAcHnZk", ubrk_getAvailable_67) +STUB( + "nGMvy2w-sQs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEED2Ev) +STUB( + "nGOLCAaTsLA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEixEm) +STUB("nGOnPCtlTvI", _ZN10Deprecated25ScriptCallArgumentHandler14appendArgumentERKN3WTF6StringE) +STUB( + "nGV3rMXHPYk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("nGaNQ+PYXo0", ztrans_setTime_67) +STUB("nGacpiUONQ0", sceUserServiceSetNpAge) +STUB( + "nGc0q8k4BeQ", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("nGcM1qlE4H8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEED1Ev) +STUB( + "nGkgvd8xhiY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("nGpCBP0tZpU", ucnv_cbToUWriteSub_67) +STUB( + "nGplbFqJRws", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEE5resetEPS6_) +STUB("nGrt3WvBaqY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEE3getEv) +STUB("nH+q46A17fI", JVM_Recv) +STUB("nH7XM+HhXWc", BIO_write) +STUB("nH9FVvfZhCs", SSL_sslSettings) +STUB( + "nHBrl1yyeAs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEmmEv) +STUB("nHHW4MZGIhM", dll_end) +STUB( + "nHMdq-fVy60", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEC2Ev) +STUB("nHN5qXYONHM", _ZN3sce7Toolkit2NP2V27Session7Request7GetDataD2Ev) +STUB("nHU0qnM6vgI", _ZN7WebCore4Node17isContentEditableEv) +STUB( + "nHXqVhvWHU8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEppEv) +STUB("nHZpTF30wto", sceNpMatching2SetExtraInitParam) +STUB("nHgo2VpnCB8", _ZNK3sce2np10JsonNumber6GetNumEPj) +STUB( + "nHl7LxzrXzA", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification15BlocklistUpdateEE12deepCopyFromERS8_) +STUB( + "nHn07WW2n6w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEC2EPS6_PNS2_10LibContextE) +STUB("nHpBeV8EC84", il2cpp_profiler_install) +STUB("nHrQB-oXKqE", rgctx_fetch_trampoline_rgctx_116) +STUB("nHweqOqUp+Q", _ZN3sce7Toolkit2NP2V24Core7Request23ServerPushNotificationsC2Ev) +STUB("nHzf8lSfj8w", mono_aot_Sce_Vsh_AppInstUtilWrapperplt_end) +STUB("nI+338zCdYU", _ItL_pS2) +STUB("nI0xthFylNU", + _ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession16getMaxSpectatorsEv) +STUB( + "nI7CLeuxsVA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("nIH6ALR8JYA", _ZN3WTF8JSONImpl10ObjectBase6removeERKNS_6StringE) +STUB( + "nIIP9-J1dE8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEppEv) +STUB("nIKhiCaEcPs", MsvUpdaterInfo) +STUB("nILpV8eSUeI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEE3getEv) +STUB( + "nIMqJ0G24xM", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V134ConnectionQualityPropertiesFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_27ConnectionQualityPropertiesEEE) +STUB("nITiXSwEc6w", sceDebugSuspendApplication) +STUB( + "nITzCAaaM38", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEED2Ev) +STUB("nIUaIX+FH2c", _ZN9Inspector15RemoteInspector4stopEv) +STUB("nIWNtQcbQbA", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_17ActivityFeedStoryEEeqERKS4_) +STUB("nIWt+5qjWmo", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlotD1Ev) +STUB("nIY5Kabu1m4", WKContextSetIFilterHTTPProxy) +STUB("nIY9DpOIvR8", _ZN9Inspector20InspectorTargetAgentD2Ev) +STUB("nIaPmAYP0Vs", _ZN3sce2Np9CppWebApi15ProfanityFilter2V219WebApiFilterRequestD1Ev) +STUB("nIbjC1yuj-4", _ZN3WTF8JSONImpl10ObjectBase9setStringERKNS_6StringES4_) +STUB("nIeI69VaPeU", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_11TusVariableENS2_IS4_EEEEC1ERKS7_) +STUB("nIfxkJ8heME", mono_aot_Sce_Vsh_Sl2_NativeQueueClientunwind_info) +STUB("nImOlX+M3MA", _ZN22MmsMdCommonFsOperation8openFileEPKc) +STUB("nIoPyT54-98", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V113SubtaskStatusEEmmEv) +STUB( + "nIqfbQFToMI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEE7add_refEv) +STUB("nIrJzshdiVo", g_list_nth) +STUB( + "nIrlmjsm5w0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEplEm) +STUB( + "nIyTQDVBglY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEE5resetEPS9_) +STUB("nJ0Pu5MzLBw", _ZN3JSC18PropertyDescriptor9setSetterENS_7JSValueE) +STUB("nJ3r2-TtBSU", nn_socket) +STUB( + "nJ5Wkn79SaM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE10setContextEPNS2_10LibContextE) +STUB( + "nJ67Ao7cFtU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE21intrusive_ptr_add_refEPS9_) +STUB("nJFcKLudoq8", _ZNK3sce2Np9CppWebApi6Common6VectorINS2_6StringEE3endEv) +STUB("nJG-Y2BtOEU", _ZN7WebCore17PageConsoleClientC2ERKS0_) +STUB( + "nJJvkXDZ3ME", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE10setContextEPNS2_10LibContextE) +STUB("nJLHw-RLy04", _ZN19JITSharedTextMemory11shared_freeEPv) +STUB("nJNBTl3iOL0", _ZN3JSC14JSRunLoopTimerD1Ev) +STUB("nJNonkUuVms", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEED1Ev) +STUB("nJNyge0UyI8", _ZN3sce7Toolkit2NP2V28Matching4DataC2Ev) +STUB("nJRnY44WMw4", _ZN3sce7Toolkit2NP2V29Messaging15GameDataMessageD2Ev) +STUB("nJVZjaCQ6oI", _ZN7WebCore17FrameLoaderClient29dispatchDidNavigateWithinPageEv) +STUB("nJVgJWVviE4", sceCesRefersUcsProfileJisX0201Roman) +STUB( + "nJadkJ-AvrA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE8pushBackERKS8_) +STUB( + "nJau2r4Avv8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("nJavPEdMDvM", sceFontGlyphRefersMetricsHorizontalAdvance) +STUB("nJdCge1G2wM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEEC2ERS7_) +STUB( + "nJdMZbzLFuA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE3endEv) +STUB("nJf2N15Gj2w", _ZN3JSC11IsoSubspaceC2EN3WTF7CStringERNS_4HeapEPNS_12HeapCellTypeEm) +STUB("nJg34cKegcE", _ZN3WTF8JSONImpl9ArrayBase11pushBooleanEb) +STUB( + "nJgOPImNtg8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEplEm) +STUB("nJjLXvaaLRk", _ZN7WebCore8JSDOMURLD1Ev) +STUB("nJlLZLdhvoI", mono_aot_Sce_Vsh_UpdateServiceWrapperjit_code_end) +STUB( + "nJnMl7E87ZU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "nJnzP+grwUA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEEC2Ev) +STUB("nJp6XjJOysw", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_28ActivityFeedSharedVideoStoryEE7destroyEPS3_) +STUB( + "nJtTyCYh2ZY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE3endEv) +STUB("nJthG9040U8", _ZN4IPMI4impl10ClientImpl10disconnectEv) +STUB( + "nJx2XdScxhE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEptEv) +STUB("nJxCddJNhLU", + _ZN3sce2Np9CppWebApi14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerD1Ev) +STUB("nJz16JE1txM", swprintf) +STUB("nK-6cInedKk", _ZN3sce7Toolkit2NP2V212EventsClient5EventC2Ev) +STUB("nK1g+MwMV10", sceHmdInternalGetCrashDumpInfo) +STUB("nK2kT0o0nxE", _ZNSt13basic_filebufIwSt11char_traitsIwEEC2EP7__sFILE) +STUB("nK7hDj2e37Y", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE5clearEv) +STUB( + "nKCCaE9ZGzk", + _ZN3sce2Np9CppWebApi7Matches2V111TaskFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_4TaskEEE) +STUB( + "nKFhf1JE+2s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEE11release_refEv) +STUB( + "nKJxXUjtksA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("nKLCGmI-oEw", sceMusicCoreServerGetTrackInfo) +STUB("nKSdTXE6XjQ", _ZNK7WebCore9FloatRect21inclusivelyIntersectsERKS0_) +STUB( + "nKV--EXZ+mQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemProperties13isInitializedEv) +STUB("nKWi-N2HBV4", sceKernelPwrite) +STUB("nKaqdLF-yoo", _ZN7WebCore4Node11appendChildERS0_) +STUB( + "nKfEpdnCnWc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEE11release_refEv) +STUB( + "nKkHAalutU0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE3endEv) +STUB( + "nKq3nZNIJmU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEE3getEv) +STUB( + "nKq4u9zsaEw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "nKqmjQLi+gI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEptEv) +STUB( + "nKtGNRD5Lqw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEEcvbEv) +STUB("nKxtfn5Ad40", delegate_virtual_invoke_18_p) +STUB( + "nL2kQRBA0iA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEEdeEv) +STUB("nL3Pa-O0PAE", + _ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody6toJsonERNS_4Json5ValueEb) +STUB("nL6UNJQfVfU", uidna_close_67) +STUB( + "nL7OSW7-1Y0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEC2EPS8_) +STUB("nL8jh-3HkIg", WKPreferencesCopyFixedFontFamily) +STUB( + "nL9HXk4CVXY", + _ZN7WebCore30throwArgumentMustBeObjectErrorERN3JSC14JSGlobalObjectERNS0_10ThrowScopeEjPKcS6_S6_) +STUB( + "nL9vSVq-29s", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB("nLA4Ue4iOGU", + _ZNK3sce2Np9CppWebApi14SessionManager2V124GameSessionMemberForRead12playersIsSetEv) +STUB( + "nLAwO5TMgwM", + _ZN3JSC23createBuiltinExecutableERNS_2VMERKNS_10SourceCodeERKNS_10IdentifierENS_15ConstructorKindENS_16ConstructAbilityE) +STUB( + "nLE8AGfMsd0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEED2Ev) +STUB( + "nLElyOPvF20", + _ZN3sce2Np9CppWebApi14SessionManager2V137RequestGameSessionMemberPlayerFactory7destroyEPNS3_30RequestGameSessionMemberPlayerE) +STUB( + "nLGBmIIU1Kg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEE7get_refEv) +STUB("nLM2i2+65hA", sceGnmUpdateGsShader) +STUB( + "nLMhx9mW5Og", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEppEv) +STUB( + "nLO4obRO3R4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEC1EPNS2_10LibContextE) +STUB( + "nLOOpyCOCHc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEEC2Ev) +STUB("nLOX0V+Mc1g", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEED2Ev) +STUB("nLOlVSvvxRc", _ZNK15AbstractStorage13TwitterFolder7GetStatEPNS_4StatE) +STUB("nLRmQ3ilf1U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEEC1EPKS6_) +STUB( + "nLWFJ15BhJ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEE7add_refEv) +STUB("nLXdeO54p0A", uloc_getLCID_67) +STUB("nLXlxShTk54", uprv_asciitolower_67) +STUB("nLmxzeyq5Ug", g_list_reverse) +STUB("nLnz3XxhWuM", _ZN7WebCore25enclosingBlockFlowElementERKNS_15VisiblePositionE) +STUB("nLvHrhkOvOM", _ZN3sce7Toolkit2NP2V29Messaging7Request19SendGameDataMessageC1Ev) +STUB("nLzU1Fz6FFo", + _ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody20getCenterToEdgeLimitEv) +STUB( + "nM2QpIKKTSA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEC2EPS8_) +STUB( + "nM4w8KFcXqg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEED2Ev) +STUB("nM5XqdeXFPw", _ZN3sce4Json5Value10referArrayEv) +STUB("nM81-nqbH14", _ZN3JSC7JSProxy12getPrototypeEPNS_8JSObjectEPNS_14JSGlobalObjectE) +STUB( + "nM9suoyV5HY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "nMEixBCwtNM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEE7add_refEv) +STUB("nMFArZfMy7U", sceLibSecureCryptographyMessageUnpadding) +STUB( + "nMLvgdqKTX8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEneERKS9_) +STUB("nMLyjnpy2hc", scePssInternalOrbisControllerScan) +STUB("nMMMCp8ab-8", _ZN3sce2Np9CppWebApi14SessionManager2V15Error10setMessageEPKc) +STUB( + "nMQxwZbhY6A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEC2EPNS2_10LibContextE) +STUB("nMXM-3wbMGQ", _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebErrorD1Ev) +STUB("nMZid4oDfi4", sceFontSetupRenderScalePoint) +STUB("nMbAqI1ty8w", sceVideoOutSysSetOverscanRatio) +STUB( + "nMn3TggOwso", + _ZN9Inspector23CanvasBackendDispatcher13stopRecordingElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("nMoFUeBjzrU", glLineWidth) +STUB( + "nMyn74PsJT0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEeqERKS9_) +STUB("nN-ZPSBQrCI", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectIdD2Ev) +STUB("nN8DkKnWd44", uset_removeRange_67) +STUB( + "nNB8esb+P38", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEaSERKS7_) +STUB("nNCXg4kNpuc", sceTsRepresentationIsEnabled) +STUB("nNDGebQ9xr0", InetStatGetResultNative) +STUB("nNDRP34cMD0", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed13UsersWhoLikedEE12deepCopyFromERS7_) +STUB("nNDfmpbZGHM", jcopy_sample_rows) +STUB("nNMv7A2fUNg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12RangeOfRanksEEC2Ev) +STUB("nNNEEXeUnR4", gsharedvt_out_trampoline_p) +STUB("nNPgqRoyKno", jpeg_core_output_dimensions) +STUB("nNeC3F8-g+4", sceNpMatching2SignalingGetConnectionInfoA) +STUB( + "nNfzVOqnIFE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEE11release_refEv) +STUB("nNjpF5qPFx0", _ZNK3sce2Np9CppWebApi7Matches2V119CreateMatchResponse6toJsonERNS_4Json5ValueEb) +STUB("nNkIYT7WtHg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEEC2EPS5_PFvS7_EPNS2_10LibContextE) +STUB("nNkYCQIDb+4", _posix_memalign) +STUB("nNlUtdDDvZ0", sceAgcDcbSetShRegistersIndirectGetSize) +STUB("nNn8Gnn+E6Y", sceUserServiceSetIsQuickSignup) +STUB("nNomSr0Saaw", mono_aot_Sce_Vsh_FileSelectorunwind_info) +STUB( + "nNqExI9JIMk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE6finishEv) +STUB( + "nNs9uBEwVfE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "nNuNwaT7ghg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE8capacityEv) +STUB("nNudbOEqKVI", _ZNK7WebCore8Settings16areImagesEnabledEv) +STUB("nNxUUYCpZkw", sceMbusDumpPlayerInfo) +STUB( + "nO-gM0jBw0M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEE11get_deleterEv) +STUB("nO-tMnaxJiE", sceGnmDebuggerReadGds) +STUB("nO2JzBO650E", jpeg_fdct_8x16) +STUB("nO7lhWYZA+8", _ZN7WebCore4Attr8setValueERKN3WTF10AtomStringE) +STUB("nO8W67-kbko", WKBundleNodeHandleSetHTMLInputElementAutoFilled) +STUB( + "nOC3dwMR83I", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V318PsnWebErrorWrapperC1EPNS1_6Common10LibContextE) +STUB( + "nOD3uK7gUD8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEED2Ev) +STUB( + "nODzF2s1-JY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEE11release_refEv) +STUB("nOGu3X+sJis", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ResponseCooperativeResultEEdeEv) +STUB("nOIEswYD4Ig", __cxa_free_exception) +STUB("nOZRy-slBoA", sceNpPartyCreate) +STUB("nOZZoiGg5vk", _ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse13unsetRelationEv) +STUB("nOadKT6rn7U", u_charsToUChars) +STUB( + "nOhaKRIjsj0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEE7add_refEv) +STUB("nOkViL17ZOo", sceHttpCookieExport) +STUB( + "nOtW63-ilkE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE5emptyEv) +STUB("nP-1wxido7w", _ZN3sce7Toolkit2NP2V27Ranking12RangeOfRanks5resetEv) +STUB("nP-5Rnjgj10", SetVolume) +STUB("nP-LabYxHbk", sceFiosOpSyncWaitForIO) +STUB("nP-yK1MfjXw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEptEv) +STUB( + "nP03q8nsFw4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEC1Ev) +STUB("nP1iDzJb4mE", _ZN7WebCore18JSHTMLImageElement4infoEv) +STUB("nP8b1EXmb4c", _ZN3sce3Xml3Dom4Node12insertBeforeENS1_6NodeIdES3_) +STUB("nPDiD1+RQXY", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEED2Ev) +STUB("nPJ7pUK4fPo", _ZN3sce7Toolkit2NP2V29Messaging15GameDataMessageC1Ev) +STUB("nPKIj4r-2xk", _ZN7WebCore11DisplayList22ApplyDeviceScaleFactorC1Ef) +STUB("nPLHKWJ+J6A", _ZNSt9_FacetptrISt8messagesIwEE6_PsaveE) +STUB("nPLZ4NKCJHg", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V126BandwidthDownstreamMetrics10getAverageEv) +STUB( + "nPSu8-j6Vio", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEC2EPKS8_) +STUB( + "nPUBEBhiwJA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEE3getEv) +STUB("nPcJiVJltXI", _ZN7WebCore29contextMenuItemTagRightToLeftEv) +STUB( + "nPe5fu741OU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEixEm) +STUB( + "nPhdyJkNJ-k", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("nPjJRaPCnL4", sceCesEucCnToUtf16be) +STUB("nPlaotGlNnk", ENGINE_set_default) +STUB( + "nPlnjKxKzbo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("nPlr4B+qS4A", sceBdSchedStartRipping) +STUB( + "nPpYnB49Nx4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEE7get_refEv) +STUB("nPupD+uiK+k", _ZN3sce2Np9CppWebApi7Matches2V118RequestMatchPlayer8fromJsonERKNS_4Json5ValueE) +STUB("nPwXnPFEstQ", + _ZNK7WebCore26Matrix3DTransformOperation5applyERNS_20TransformationMatrixERKNS_9FloatSizeE) +STUB("nPzb7Ly-VjE", sceNgs2ReportUnregisterHandler) +STUB( + "nPzmpX1dlkI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEC2EPKS8_) +STUB( + "nQ4M-ZMhy7o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEE11get_deleterEv) +STUB("nQ9t43vahAE", sceRemotePlayClientAttachVirtualMicrophone) +STUB("nQBJrxkM-5U", _ZN9Inspector14InjectedScript17setExceptionValueEN3JSC7JSValueE) +STUB( + "nQBV1zupj2g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEmmEv) +STUB("nQDDHVj0B9k", _ZN7WebCore9FrameView18setViewExposedRectEN3WTF8OptionalINS_9FloatRectEEE) +STUB( + "nQELG2um-GM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE10setContextEPNS2_10LibContextE) +STUB( + "nQF1o68SKjM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEmmEv) +STUB( + "nQGJlZRQtXU", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi16testForProfanityEiRKNS4_27ParameterToTestForProfanityERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_24TestForProfanityResponseEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("nQGV7DtDVJk", izrule_getRawOffset_67) +STUB( + "nQIv39EUkgo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE5clearEv) +STUB( + "nQJcPxb7Y-g", + _ZN3sce2Np9CppWebApi14SessionManager2V131ResponseGameSessionMemberPlayer10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_25ResponseGameSessionPlayerEEEEE) +STUB( + "nQNXzMGpb+o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEED2Ev) +STUB("nQOilOHEwpw", mono_string_new_utf32) +STUB("nQT5kYLv0cg", sceAgcGetFusedShaderSize) +STUB( + "nQVRfUCusYs", + _ZN3sce7Toolkit2NP12ActivityFeed9Interface12getTitleFeedEPKNS1_19GetTitleFeedRequestEPNS1_9Utilities6FutureISt6vectorINS1_17ActivityFeedStoryENS1_15AppSTLAllocatorISA_EEEEEb) +STUB("nQVWJEGHObc", _sigintr) +STUB( + "nQZL-1zCIj8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEC2Ev) +STUB("nQd1fRJbCWg", mono_aot_Sce_PlayStation_PUIjit_code_end) +STUB( + "nQdampVIgR4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE5beginEv) +STUB( + "nQi8grWaIc8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB("nQm4o5iOye0", _ZN3sce2np3ipc17ServiceIpmiClient20AbortRequestForAsyncEii) +STUB("nQmaJ0eplx8", p5_16384) +STUB("nQvycLYTm7A", _ZN3WTF10AtomString4initEv) +STUB( + "nQzdYoKCyHM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEC2Ev) +STUB("nR-7G2rX8Kc", _ZN7WebCore13CharacterData7setDataERKN3WTF6StringE) +STUB("nR0nX7p2jFo", audiodeccpuinternal_core_ops_dts_hd_lbr) +STUB("nR53xJOC8Es", unumsys_open_59) +STUB("nR6xhiFsOoc", sceAgcDriverNotifyDefaultStates) +STUB( + "nRBedXxS6bE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEE7get_refEv) +STUB("nRCHIYfyAMA", sceBgftServiceIntPlayGoStartDataDiscInstall) +STUB( + "nRCtGVOtQWM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEEaSERS8_) +STUB("nRD+2A9Htb4", WKPreferencesGetMediaCaptureRequiresSecureConnection) +STUB( + "nRD5NDy2UFU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEppEv) +STUB( + "nRKhFcnZnFI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEED2Ev) +STUB("nRL-OKL9vQw", _ZN3sce7Toolkit2NP2V28Matching12Notification14NewRoomMessage5resetEv) +STUB("nRMBVSuaSJQ", _ZNK7WebCore5Range19absoluteBoundingBoxEv) +STUB( + "nRNXww8mJl0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEED2Ev) +STUB("nRNa+ZeFvnY", _ZN7WebCore16DeviceMotionData6createEv) +STUB( + "nROK31VVNmI", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("nRR4MuQjSqY", _ZNK3JSC19HeapSnapshotBuilder18descriptionForCellEPNS_6JSCellE) +STUB( + "nRUitC2aKCY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEED2Ev) +STUB( + "nRWbg280bpE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEE5resetEPS9_) +STUB( + "nRXiHp4ezyA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEixEm) +STUB("nRYvlfcejis", EVP_sha384) +STUB("nRaqLkGmjVs", _ZN7WebCore20ISOOriginalFormatBoxD2Ev) +STUB("nRbLafYFvk4", + _Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm13TaPerfCounterE20SceRazorGpuBroadcast) +STUB("nRf0VQ++OEw", _ZNKSt8numpunctIcE11do_truenameEv) +STUB( + "nRgQayjFems", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE5beginEv) +STUB( + "nRjlT++f7Ys", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEED2Ev) +STUB( + "nRnan5sGJUA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEixEm) +STUB("nRoYV2yeUuw", sceNpScoreGetRankingByRangeForCrossSave) +STUB("nRsDOZGMclk", _ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForReadC2EPNS1_6Common10LibContextE) +STUB("nRsq6ZWfSgU", _ZNK7WebCore6Region5rectsEv) +STUB( + "nRwXJ7Cy6VM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEEC1Ev) +STUB("nS0WaXw9y0k", _ZNK3sce2Np9CppWebApi13InGameCatalog2V517ContentDescriptor7getNameEv) +STUB("nS12FUaQIdw", _ZN7WebCore8JSPath2D7destroyEPN3JSC6JSCellE) +STUB("nS2-g76qxRk", _ZN3JSC16createRangeErrorEPNS_9ExecStateEPNS_14JSGlobalObjectERKN3WTF6StringE) +STUB("nS4i1N-HEws", sceDeci5CreateHostProcess) +STUB( + "nS6xI4DRhPs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "nS8F9xvvo40", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEEaSERSA_) +STUB( + "nSAy48lCVrM", + _ZN3sce7Toolkit2NP2V27NpUtils17checkPsPlusAccessERKNS3_7Request17CheckPsPlusAccessEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("nSIux4OQyJM", FT_GlyphSlot_Own_Bitmap) +STUB( + "nSKHX3lzgfk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("nSSPVGJLMjE", __freeze) +STUB( + "nSWVMYx1TVc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("nSWoL1mOLMg", _ZNK15AbstractStorage18DailymotionService14GetServiceTypeEv) +STUB("nSfJ5OZXgUM", ebuf) +STUB( + "nSfirQLNfwc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEC1EPKS8_) +STUB("nSgZzq-c18Q", __copybits_D2A) +STUB( + "nSihy5n9KVQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEE7add_refEv) +STUB("nSm+f63zez0", WKPluginInformationFrameURLKey) +STUB("nSm0p8gitSI", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_33ActivityFeedSharedScreenshotStoryEED2Ev) +STUB( + "nSo71-xp0yY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEC2Ev) +STUB("nSoL-e4quJU", _ZN7WebCore15ActiveDOMObject6resumeEv) +STUB( + "nSp+IAqg3JU", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot10unsetlimitEv) +STUB( + "nSrHoiuCTKA", + _ZN9Inspector24RuntimeBackendDispatcher14callFunctionOnElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "nSuIqJDkh2c", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi35ParameterToSetGameSessionProperties12setsessionIdEPKc) +STUB("nT-7-iG55M8", sceSystemServiceSetPowerSaveLevel) +STUB("nT2u36kfhV0", _ZNK3sce2Np9CppWebApi13InGameCatalog2V513ContentRating11systemIsSetEv) +STUB("nT3hs17EzBY", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V113AttributeTypeEEC2Ev) +STUB( + "nTDdW9Bfz9g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEC2Ev) +STUB("nTDzCOsvf2I", _ZN3JSC14SourceProviderD1Ev) +STUB( + "nTGW5yFc1bg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEaSERS7_) +STUB("nTH0jYHpwTk", sceDataTransferTargetRequestCreateRebootData) +STUB("nTInke+UfzU", _ZN3sce7Toolkit2NP2V212NetworkUtils7Request16GetBandwidthInfoD1Ev) +STUB("nTJqXsbSS1I", sceNetShowRoute6ForBuffer) +STUB("nTMnPSllCqA", _ZN3JSC8Debugger15updateCallFrameEPNS_9ExecStateENS0_21CallFrameUpdateActionE) +STUB( + "nTNK3WR5-gA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB( + "nTRairDX+qE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEE7get_refEv) +STUB("nTTeDzRoKIo", cairo_ft_font_face_set_synthesize_weight) +STUB("nTYiRmnd7zI", scePssAudSetSurroundPan) +STUB("nTYye7OBy6A", _ZN7WebCore9HTMLNames8embedTagE) +STUB( + "nTZZT3G74ss", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEC2EPNS2_10LibContextE) +STUB("nTc+tFajGqQ", __sys_dynlib_get_info2) +STUB("nTeC2vrEhLQ", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V511ContentTypeEEC2Ev) +STUB( + "nTix0McEEG8", + _ZThn16_N9Inspector21InspectorRuntimeAgent10saveResultERN3WTF6StringERKNS1_8JSONImpl6ObjectEPKiRSt8optionalIiE) +STUB("nTj4w9chYP0", mono_aot_Sce_Vsh_Np_Asmjit_code_end) +STUB( + "nTocQBnYFXo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEED1Ev) +STUB( + "nToeZwLD27Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "nTqha94Gduo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEED2Ev) +STUB("nTrpPLSPKw0", _ZN3sce2Np9CppWebApi14SessionManager2V115SearchConditionD1Ev) +STUB( + "nTsR0oM2J5c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEC1Ev) +STUB("nTt6qZfEXh8", _ZNK7WebCore10ScrollView18rootViewToContentsERKNS_8IntPointE) +STUB("nTxZBp8YNGc", pthread_mutex_setname_np) +STUB("nTyrv3zhvvU", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110TaskStatusEEC1EPS6_) +STUB("nTzGG6OnecQ", _ZN3sce7Toolkit2NP8Commerce9Interface8checkoutERNS1_19CheckoutInputParamsEb) +STUB("nU+IegSkBWk", _ZN7WebCore16SQLiteFileSystem18deleteDatabaseFileERKN3WTF6StringE) +STUB( + "nU11kxO889E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE5clearEv) +STUB("nU47n34EeTY", u_isupper_67) +STUB("nU81mIH-tnw", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE3endEv) +STUB( + "nUA5k9SzUdg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEEC1ERSA_) +STUB("nUC1MKSAv8k", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEE11release_refEv) +STUB( + "nUFqUXAT+do", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEE11get_deleterEv) +STUB( + "nUMK1+ziLDE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEEC1EPS6_PNS2_10LibContextE) +STUB("nUW05xsssiE", _ZL15throw_exceptionPN10__cxxabiv115__cxa_exceptionE) +STUB( + "nUW7KJbwGeg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEC2EPS8_) +STUB( + "nUbBmCE3444", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEE5resetEPS9_) +STUB( + "nUdUMeufKCA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEED2Ev) +STUB( + "nUkmgRikJjQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEC1EPS8_) +STUB("nUp6I7HlQNM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo9setslotIdEi) +STUB("nUqC+XLLLWU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEED2Ev) +STUB("nV9al8rbOKg", _ZNK7WebCore20RenderBoxModelObject18inlineContinuationEv) +STUB( + "nVAcB0kcPRo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE8copyFromERKS9_) +STUB("nVAn9tAFdEA", mono_aot_Sce_Vsh_AppInstUtilWrapperjit_code_start) +STUB("nVAwmjF-TbE", _ZN12Mp4Retriever14processMta2BoxEv) +STUB("nVB1Nsjwpj0", _ZN3sce2npltERKNS0_4TimeERK10SceRtcTick) +STUB("nVHCuTDP998", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V15Owner14unsetAccountIdEv) +STUB( + "nVIoRUWEtX0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEED1Ev) +STUB("nVJKRq8gRoQ", WKBackForwardListCopyBackListWithLimit) +STUB("nVS8UHz1bx0", _WGetstr) +STUB("nVSOF8lrIqQ", _ZThn136_NK7WebCore16HTMLMediaElement12playbackRateEv) +STUB( + "nVU6Ft6polI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUserD1Ev) +STUB("nViezIi5-b8", _ZN12video_parser7cVpUtil13_vp_ff4_fopenEPKcPPvib) +STUB( + "nVj5yFSALyU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEC1EPS6_PNS2_10LibContextE) +STUB("nVkAFM4iCS4", FcPatternDestroy) +STUB("nVn730pUTh4", _ZN9Inspector25ConsoleFrontendDispatcherC2ERNS_14FrontendRouterE) +STUB("nVqRC51nex4", mono_image_get_filename) +STUB("nVutLTLQBFU", _ZN3WTF8JSONImpl10ObjectBase13openAccessorsEv) +STUB("nVvg8lYpHWw", _ZN7WebCore8SVGNames5zAttrE) +STUB( + "nVzQua6+s4U", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEptEv) +STUB("nW024V4Y0+E", _ZNK7WebCore17JSDOMGlobalObject22scriptExecutionContextEv) +STUB( + "nW14b9Q-gUE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEptEv) +STUB( + "nW4zCtAkLhY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "nW74+cem+s0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEppEv) +STUB("nW9JRkciRk4", strtold) +STUB("nW9XeX3eokI", _ZN3sce2np9SemaphoreD1Ev) +STUB( + "nWbnyFV5eEU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEaSERKS9_) +STUB( + "nWczndPNMVg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEdeEv) +STUB("nWdcQxdPTnc", mono_custom_attrs_has_attr) +STUB("nWetCPTS028", _ZN9Inspector22InspectorDebuggerAgent15getScriptSourceERN3WTF6StringERKS2_PS2_) +STUB("nWfZplDjbxQ", _ZNKSt22_Future_error_category7messageEi) +STUB("nWhihHLegiU", _ZN3sce7Toolkit2NP2V28Presence7Request11SetPresenceC2Ev) +STUB("nWigKuh+U8Y", scePerfTraceAprNameEnable) +STUB( + "nWjFS2u-z2g", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE18getResponseHeadersERSB_) +STUB( + "nWjTnmiMEd0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB("nWl-yEHwdbA", _ZN4Manx11MediaPlayerD0Ev) +STUB("nWlIu4rYxck", JVM_GetPrimitiveArrayElement) +STUB( + "nWmrwe1fBJk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE5clearEv) +STUB( + "nWp0dOURRjE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEEC1ERKSA_) +STUB("nWqxZ43uS4U", sceIduUtilUninstallApp) +STUB("nWrfPI4Okmg", sceFontCreateLibrary) +STUB( + "nWtl9LlWXpE", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V125NatConnectivityProperties11setFromNat2ERKNS1_6Common12IntrusivePtrINS3_19NatConnectivityFromEEE) +STUB("nWuza0ZdfqA", sceFiosDirectoryCreateSync) +STUB("nWvH5774ZvI", _ZNK7WebCore30InvertLightnessFilterOperation14transformColorERNS_5SRGBAIfEE) +STUB("nWwBEkoMtCE", png_get_iCCP) +STUB( + "nWzXs2RnZ4M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEC2Ev) +STUB("nX+u+wBSNOo", _ZN7WebCore11MathMLNames11minsizeAttrE) +STUB("nX1faHr2Kf4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEcvbEv) +STUB( + "nX356-1SXIc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEplEm) +STUB("nX3Mbz2TMas", uset_clone_67) +STUB("nXD2WHjuPVY", _ZN3sce3pss4core8graphics14NativeGraphics18ReleaseVideoMemoryEPv) +STUB( + "nXHo76jiyN0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("nXK4qHSpPvQ", _ZN7WebCore28InspectorFrontendClientLocal30constrainedAttachedWindowWidthEjj) +STUB("nXKaTZIVugQ", _ZN3sce7Toolkit2NP2V26Friend7Request22DisplayBlockUserDialogC2Ev) +STUB("nXM0tPnxtI8", _ZN3sce2Np9CppWebApi6Common8IteratorIlEC2EPl) +STUB("nXMv5tFewyM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEEptEv) +STUB("nXPsoyZYXmM", _ZTVN7WebCore11DisplayList7RestoreE) +STUB("nXXkrz-HSAQ", sceNpSnsDailymotionDialogGetResult) +STUB("nXYd1oE9ZM0", FcCharSetAddChar) +STUB("nXa0s7xnbsQ", _ZN3sce2Np9CppWebApi6Common8IteratorImEppEv) +STUB("nXaF1Bxb-Nw", sceNpScoreGetRankingByAccountIdPcIdForCrossSaveAsync) +STUB("nXajMNMYvcI", _ZN12video_parser5vpcom3rtc11TickAddDaysEPmPKmi) +STUB( + "nXdBq7hGNnY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE21intrusive_ptr_sub_refEPS9_) +STUB("nXlI6ZXjQfc", rgctx_fetch_trampoline_mrgctx_115_p) +STUB("nXlhepw9ztI", SSL_sendPending) +STUB( + "nXmKBI9+Ga4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEC1EPS8_) +STUB("nXpC4dnxlI0", sceAjmBatchGetLog) +STUB("nXpje5yNpaE", sceVoiceCreatePort) +STUB("nXr5Rho8Bqk", sceNpTrophySystemGetTrophyTitleData) +STUB( + "nXrKrj+76Ec", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("nXsuPh83H-g", _ZNK7WebCore20TransformationMatrix12isInvertibleEv) +STUB( + "nXvAanWUP38", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEE5resetEPS6_) +STUB("nXwKrwF-wUM", scePigletSetShaderCacheConfiguration) +STUB( + "nXxOlbtvpVI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEC1ERKS7_) +STUB("nY1XtEZgxPM", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11TusVariableEE10deallocateEPS3_m) +STUB( + "nY1vD-t-MiM", + _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse8setTasksERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_4TaskEEEEE) +STUB("nY48HCMg7As", ucol_getKeywordValuesForLocale_67) +STUB("nY6m59RtHew", mono_register_symfile_for_assembly) +STUB( + "nY6si-ukJig", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEC2EPS8_) +STUB("nY6tCbQaVhQ", _ZNK3sce2np14JsonNumberImpl3GetEPm) +STUB("nYA7nXRmwHg", _ZNK7WebCore12ISOWebVTTCue2idEv) +STUB("nYBrkGDqxh8", pthread_testcancel) +STUB("nYKfnhLGyO8", WKCookieManagerSetCookieForHostname) +STUB("nYX3q3hser8", sceHidControlDisconnectPort) +STUB("nYbNPPMMWik", _ZNK9Inspector22RemoteInspectionTarget22remoteDebuggingAllowedEv) +STUB("nYbsl4u517I", fuse_is_lib_option) +STUB("nYdMXcX71j8", _ZN7WebCore16NetworkSendQueue7enqueueERKN3JSC11ArrayBufferEjj) +STUB("nYgxNM6MO90", WKPreferencesSetShouldConvertPositionStyleOnCopy) +STUB("nYh9OiczTZM", _ZN3JSC21MarkedJSValueRefArrayD1Ev) +STUB( + "nYi6wWy+Tzg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE6resizeEj) +STUB("nYl2inMQNcE", + _ZN3sce2Np9CppWebApi14SessionManager2V123MemberWithMultiPlatformC2EPNS1_6Common10LibContextE) +STUB("nYn0Q3iUFqM", _ZN7WebCore11CSSPageRule5styleEv) +STUB( + "nYo3aWOnM0Y", + _ZN3JSC12RegExpObject16getPropertyNamesEPNS_8JSObjectEPNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB( + "nYs209HVPAA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("nYw48gex-mQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEC1ERKS7_) +STUB("nYwM9FJbT1g", _ZN3sce7Toolkit2NP2V28Matching7Request14SendInvitation19MAX_SIZE_ATTACHMENTE) +STUB("nZ4iwVMjc+U", Java_com_sony_bdjstack_core_CoreApp_getKey) +STUB("nZ7mHYhLa6A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEE7add_refEv) +STUB( + "nZE1SZQh+nI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE5emptyEv) +STUB("nZHk+lpqwVQ", __sys_dynlib_load_prx) +STUB( + "nZI+J8dlH3k", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEixEm) +STUB("nZJfapwEuQw", _ZNK3JSC6JSCell8toNumberEPNS_9ExecStateE) +STUB( + "nZNxsX9uPfk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEED1Ev) +STUB("nZZ-9S5sscs", sceDtcpIpStopAuthAsync) +STUB("nZaMCEq4SME", + _ZN7CoreIPC15ArgumentEncoder29encodeVariableLengthByteArrayERKNS_13DataReferenceE) +STUB("nZc-yznH5Gw", _ZN3JSC14JSGlobalObject30deprecatedCallFrameForDebuggerEv) +STUB("nZftcyGspX8", _ZN7WebCore11MathMLNames14mprescriptsTagE) +STUB("nZj1LlF55Uo", _ZNK7WebCore22HTMLFormControlElement12autocompleteEv) +STUB("nZjWJO68oxU", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku17displayPriceIsSetEv) +STUB( + "nZl6pn4k3uo", + _ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse17setPersonalDetailERKNS1_6Common12IntrusivePtrINS3_14PersonalDetailEEE) +STUB( + "nZlIryahlH8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEE5resetEPS9_) +STUB("nZltiqEwZ04", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119PlayStyleProperties11getProgressEv) +STUB( + "nZoGGWeXnVk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEED2Ev) +STUB("nZoXleE24-w", scePerfTraceAprNameDelete) +STUB( + "nZqMHNtatUU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEC1Ev) +STUB("nZqyD260j+A", _ZN7WebCore9GLContextnaEmPv) +STUB("nZrizsh90E8", + _ZN9Inspector22InspectorDebuggerAgent14didParseSourceEmRKNS_19ScriptDebugListener6ScriptE) +STUB( + "nZwbO1YmvDU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEED1Ev) +STUB("na3KO+Tiyu8", _ZN7WebCore14ScrollbarTheme5themeEv) +STUB("na8HiY83Wbo", _ZN3sce7Toolkit2NP2V23TUS7Request12GetVariables18MAX_VARIABLE_SLOTSE) +STUB( + "naDzvd0jgxA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEEptEv) +STUB( + "naFyKEzeevQ", + _ZN3sce2Np9CppWebApi14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyD1Ev) +STUB( + "naICaOSqF4g", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("naInUjYt3so", sceKernelRmdir) +STUB( + "naJtkvNE3s0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEC2Ev) +STUB("naOwex5mTn4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData9setslotIdEi) +STUB("naQq-gbo7oM", _ZN3WTF8JSONImpl5Value6createERKNS_6StringE) +STUB("naSd3GcjHrA", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16TrophyPackTrophyEED1Ev) +STUB( + "naTU67TvfRY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEC1Ev) +STUB("nadjzO4Rufs", WKPageConfigurationCreate) +STUB("nanLrCZSYT8", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE3endEv) +STUB("navnmsciUUM", + _ZN3sce2Np9CppWebApi14SessionManager2V119NonPsnLeaderFactory7destroyEPNS3_12NonPsnLeaderE) +STUB( + "nawDM1RUzlM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEE7add_refEv) +STUB("nawVeDw1vD4", mono_profiler_install_transition) +STUB( + "naxMNrTB+3U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("nazKyHygHhY", sceNpPartySetVoiceChatPriority) +STUB("nb+os+yvPY8", sceNpGriefReportWriteTextChatFile) +STUB( + "nb2n65vTGNM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "nb3--DujhFw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE10setContextEPNS2_10LibContextE) +STUB( + "nb8C7KxShks", + _ZN3JSC7JSArray18getOwnPropertySlotEPNS_8JSObjectEPNS_9ExecStateENS_12PropertyNameERNS_12PropertySlotE) +STUB("nbFv0dBqogw", _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities5Error7getCodeEv) +STUB( + "nbIZtn6wv7A", + _ZN7WebCore25WebSocketChannelInspector29didReceiveWebSocketFrameErrorEPNS_8DocumentERKN3WTF6StringE) +STUB("nbMCuzzIMOg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEEaSERS7_) +STUB( + "nbMeJvVtSs4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEC1EPKS8_) +STUB("nbQ0bXMRlhk", pthread_mutex_reltimedlock_np) +STUB( + "nbQD4CaR7Qo", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("nbRU58b2L1E", + _ZN3sce2Np9CppWebApi11UserProfile2V125GetBasicPresencesResponse17getBasicPresencesEv) +STUB("nbTAoMwiO38", _ZNSt10moneypunctIcLb1EEC1Em) +STUB("nbTHF0RZbMI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed13UsersWhoLikedEED1Ev) +STUB( + "nbU2OguyhTE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEEC2ERKSA_) +STUB("nbhoIua+MKo", monoeg_g_slist_free) +STUB("nbmQMuS3p9I", + _ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody19npServiceLabelIsSetEv) +STUB( + "nbp4dYeeEcI", + _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchStatus27getupdateMatchStatusRequestEv) +STUB("nbpwDxSzw68", _ZN3sce3pss4core8graphics6OpenGL20GetTextureFormatTypeENS2_11PixelFormatE) +STUB("nbrxmv70IpM", _ZNK7WebCore23CoordinatedBackingStore4rectEv) +STUB( + "nbu2Ez9KEMM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEplEm) +STUB("nc6OsiDx630", _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE10date_orderEv) +STUB( + "nc7sxvsSdWk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE5clearEv) +STUB( + "ncB8Tw+dlyM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEEC1Ev) +STUB("ncIZeeV7iGk", uregex_setText_67) +STUB( + "ncIcckZh0rk", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE8readDataEPcm) +STUB("ncMrBz6Ln0g", + _ZN3sce2Np9CppWebApi13InGameCatalog2V514ContainerMediaC2EPNS1_6Common10LibContextE) +STUB("ncO9Ut76oII", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEEC2Ev) +STUB( + "ncXpF+CwdDo", + _ZN3JSC10JSDataView6createEPNS_14JSGlobalObjectEPNS_9StructureEON3WTF6RefPtrINS_11ArrayBufferENS5_13DumbPtrTraitsIS7_EEEEjj) +STUB("ncY4waWIyVU", _ZN3sce3Xml3Sax6Parser5parseEPKNS0_6StringEb) +STUB("ncYgyFZrm6E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEE7add_refEv) +STUB("ncYh3bFVTZg", _ZN3sce7Toolkit2NP2V27Ranking7Request11GetGameData14MAX_NUM_BOARDSE) +STUB( + "ncbyqjOFUuI", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeaders24hasXPsnAtomicOperationIdEv) +STUB("nci5kyImEeE", _ZN12video_parser5vpcom11string_util8dissolveERSt4listISsSaISsEERKSsmcc) +STUB("nckEaytCgSk", _ZN12video_parser12cVpFileCache5fseekExi) +STUB( + "ncklfuEhCUs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEmmEv) +STUB("nclPS1DQcE8", sceFsDevpfsDeleteForVSH) +STUB("nczGteugRow", uhash_nextElement_67) +STUB( + "nczNfb-uPUU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEED2Ev) +STUB("nd+0DEOC68A", sceBgftServiceIntDownloadRegisterTaskByStorageEx) +STUB("nd-xdRd4+BU", glIsBuffer) +STUB("nd01aT+29+Y", WKContextSetUseSeparateServiceWorkerProcess) +STUB("nd29CKcg4Kk", _ZN7WebCore18JSHTMLInputElement4infoEv) +STUB( + "nd6TVOaB3eM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEE11get_deleterEv) +STUB("nd7un+PCaM4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEC1Ev) +STUB( + "ndA5Uz07Xqw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE4sizeEv) +STUB("ndESTzIST6U", + _ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody13locationIsSetEv) +STUB( + "ndGh819r2Kk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEC2EPS8_) +STUB("ndHeGl-LhLE", _ZN3JSC19HeapSnapshotBuilderdaEPv) +STUB("ndJVFcXocIM", _ZN3sce2Np9CppWebApi6Common13ConstIteratorImED1Ev) +STUB("ndLeNWExeZE", sceNpTrophyConfigGetTrophySetInfo) +STUB("ndOe3Wc7xjA", u_getDefaultConverter) +STUB("ndPea+dsRcc", JVM_IsArrayClass) +STUB("ndQAQUk3d+I", _ZN12Mp4Retriever13skipBoxRemainEv) +STUB("ndVahoS4958", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError11unsetErrorsEv) +STUB("ndXGIpbTr3Y", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEEdeEv) +STUB("ndXiA4gT0qY", _ZN7WebCore19watchAdaptationNameEv) +STUB( + "nda3+-dyKTk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEC2Ev) +STUB( + "ndbxPJwHqag", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEC2Ev) +STUB("ndc59UeFwpE", GetVideoOutputStatusInt) +STUB("nddl5xnQQEY", sceNpMatching2GetRoomJoinedSlotMaskLocal) +STUB( + "ndeFXyedE1o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEE7get_refEv) +STUB("ndkx6av9994", jpeg_destroy) +STUB( + "ndnk3BxZiew", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEED2Ev) +STUB( + "ndoO2leAiXs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE3endEv) +STUB( + "ndtD2V5AsbQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("ne0fhImgqB8", _ZN7WebCore9HTMLNames10ondropAttrE) +STUB("ne3CqrAouMo", _ZN9Inspector27DOMBackendDispatcherHandlerD1Ev) +STUB("ne4hrPkNmD8", _ZNK7WebCore17HTMLAnchorElement7relListEv) +STUB("ne5cDiI4OkA", monoeg_g_queue_push_head) +STUB("ne77q1GOlF8", _ZN3sce2np6Thread4JoinEPi) +STUB("neETvp+lxow", sceBgftServiceDownloadPauseTaskAll) +STUB("neFK4isoWN0", Java_java_lang_ClassLoader_findLoadedClass0) +STUB("neGlsHeGLCM", _ZNK7WebCore9RenderBox20flippedClientBoxRectEv) +STUB( + "neIujWlE0x8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("neKaKPwTYGQ", JVM_TraceMethodCalls) +STUB( + "neMzWaM9gw0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEE7add_refEv) +STUB("nePk3oFOMXA", sceRemotePlayClientDetachVirtualMicrophone) +STUB("neT3o7wnkW8", uregex_appendTail_67) +STUB("neXogP3vrw0", _ZN3JSC7Symbols19isRegExpPrivateNameE) +STUB("neZ60m-+Baw", pthread_switch_delete_np) +STUB( + "nemgisj6lwA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("nevQn6f0t2s", _ZN7WebCore8SVGNames6cxAttrE) +STUB("nf0uWdWys1o", _ZN12video_parser18cProfileCheckerMp48finalizeEv) +STUB("nf3nuJp5GJU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEC1ERKS7_) +STUB("nf5uqeF8fxs", delegate_virtual_invoke_26_p) +STUB("nfAfS7f2gR0", sceRegMgrGetInitError) +STUB( + "nfFkE9aSmOs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEED2Ev) +STUB("nfHwXQKYceU", X509_NAME_get_text_by_NID) +STUB("nfI5R0ENsAg", sceApplictionGetStateForDebugger) +STUB("nfMZQIjYo5U", _ZNK7WebCore9CookieJar7cookiesERNS_8DocumentERKN3WTF3URLE) +STUB("nfMiMuiJPBQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEEmmEi) +STUB("nfONaRY48Dg", + _ZN3sce2Np9CppWebApi7Matches2V133RequestTemporaryCompetitiveResultC2EPNS1_6Common10LibContextE) +STUB("nfQJHd52puM", _ZN3sce7Toolkit2NP2V28Matching4RoomaSERKS4_) +STUB( + "nfUAYPVhwuM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEppEi) +STUB("nfY+yMcL494", _ZNK3sce2Np9CppWebApi13InGameCatalog2V517ContentDescriptor6getUrlEv) +STUB( + "nfYx5Y+Z0ZI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEEcvbEv) +STUB("nfc7UmDvD5k", _ZNK7WebCore11MediaPlayer17decodedFrameCountEv) +STUB("nfcXP6NETUc", __sync_fetch_and_sub_16_internal) +STUB("nfhV0tD9-ns", Java_java_lang_Runtime_runFinalization0) +STUB( + "nflT4E20BDw", + _ZN9Inspector24ConsoleBackendDispatcher13clearMessagesElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "nfo6Q6hs514", + _ZN7WebCore11WindowProxy18setJSWindowProxiesEON3WTF7HashMapINS1_6RefPtrINS_15DOMWrapperWorldENS1_13DumbPtrTraitsIS4_EEEEN3JSC6StrongINS_13JSWindowProxyELNS8_30ShouldStrongDestructorGrabLockE0EEENS1_11DefaultHashIS7_EENS1_10HashTraitsIS7_EENSF_ISC_EEEE) +STUB("nfoAqy07tpE", _sceLibcOnce) +STUB("nfoWUQ1eDl8", _ZNK3sce3Xml3Dom8Document11isAvailableEv) +STUB("nfr6YfsSasQ", + _ZNK3sce2Np9CppWebApi7Matches2V121ResponseTeamStatistic25teamMemberStatisticsIsSetEv) +STUB("nfrFZQGkv+4", _ZN7WebCore11DisplayList8DrawPathC2ERKNS_4PathE) +STUB("nfsELpNQ0fo", sceRnpsAppMgrUnblockAppInstall) +STUB( + "nfslwanq-sY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE5startEPNS2_10LibContextE) +STUB("nftirmo6hBg", + _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecb) +STUB("nfyoqm6zlBI", _ZN3sce2Np9CppWebApi7Matches2V123RequestTeamMemberResultD1Ev) +STUB("ng+3+brMOpE", _ZNK7WebCore10ScrollView18rootViewToContentsERKNS_10FloatPointE) +STUB("ng+jNZCCEJ0", + WKWebsiteDataStoreSetResourceLoadStatisticsFirstPartyWebsiteDataRemovalModeForTesting) +STUB( + "ng-K2X9Q46o", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi44ParameterToPatchGameSessionsSearchAttributes10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_44PatchGameSessionsSearchAttributesRequestBodyEEE) +STUB("ng4XlNFMiCo", sceUserServiceSetNpSubAccount) +STUB("ng4zxvZ8n7s", _ZN3sce7Toolkit2NP2V28Commerce7Request25DisplayDownloadListDialog11MAX_TARGETSE) +STUB( + "ngEsUBiK1jI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEdeEv) +STUB("ngOn63Y0Qe0", u_vsprintf_67) +STUB("ngSYhqNOedA", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error18getMissingElementsEv) +STUB("ngT2rbyKTXc", _ZN7WebCore21BlobDataFileReferenceC2ERKN3WTF6StringES4_) +STUB("ngTKSFXsVFU", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE3endEv) +STUB( + "ngU9f6qp2ks", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEEC1ERSB_) +STUB("ngUCrjSRKko", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session12Notification18InvitationReceivedEED1Ev) +STUB( + "ngVaxXFtktE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEC2Ev) +STUB( + "ngWWjTGzBlk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "ngWzWEL9MlY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "ngYyoc7kxYA", + _ZThn16_N9Inspector21InspectorConsoleAgent18getLoggingChannelsERN3WTF6StringERNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Console7ChannelEEENS1_13DumbPtrTraitsISA_EEEE) +STUB("ngZMooSt-ys", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12FriendsRanksEE3getEv) +STUB("ngZnQWyUvGI", statfs) +STUB("ngbXXOIU8do", WKBundlePageSimulateMouseDown) +STUB( + "ngiSWgFK8VY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE3endEv) +STUB( + "ngl-e+GmDpk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE8copyFromERKS9_) +STUB("nh-IxxfQL3c", mono_aot_System_ComponentModel_DataAnnotationsjit_got) +STUB( + "nh-TqmKWmo0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEEcvbEv) +STUB( + "nh1QEJraMJI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEE3getEv) +STUB("nh2IFMgKTv8", kqueue) +STUB("nh7fzBeK+FM", _ZN3sce7Toolkit2NP2V24Core15MemoryPoolStatsD1Ev) +STUB("nhBxqN1sm-c", + _ZN3JSC8JSObject19putDirectMayBeIndexEPNS_9ExecStateENS_12PropertyNameENS_7JSValueE) +STUB( + "nhDT0YVaIHE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEneERKS9_) +STUB( + "nhFyHUHrNf0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE7reserveEi) +STUB("nhLGA3dYkpk", sceFsInitUmountPprPkgOpt) +STUB( + "nhQcqgDcnLw", + _ZN3sce7Toolkit2NP10ParametersC2EPFvRKNS1_5EventEPvERNS1_9NpTitleIdES6_S6_mPNS1_19AllocImplementationE) +STUB( + "nhQi1epkpgM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEneERKS9_) +STUB("nhTJWQnk2A8", + _ZN7WebCore5Frame7setViewEON3WTF6RefPtrINS_9FrameViewENS1_13DumbPtrTraitsIS3_EEEE) +STUB("nhUtzKj6+nY", jpeg_fdct_ifast) +STUB( + "nhVCbuRprA0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEixEm) +STUB( + "nhWOAO8o9OE", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_23NpSessionInvitationInfoENS1_15AppSTLAllocatorIS5_EEEED1Ev) +STUB( + "nhYFM2+nppE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEmmEi) +STUB("nhgjiwPUIzI", sceNpJsonParseExInit) +STUB("nhnpWUm6U1A", __asan_store4) +STUB( + "nhpG2yQb1+Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEptEv) +STUB("nhswP6kdtw8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEEaSERS7_) +STUB( + "nhtdePy5m1A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEED1Ev) +STUB( + "nhy4rBd28f0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEEaSERSA_) +STUB( + "nhyrAOcHAqc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEneERKS9_) +STUB("ni-K-leoQNg", ft_mem_qrealloc) +STUB("ni0NipPWZYQ", ucol_close_67) +STUB("ni0klBYemzQ", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12unsetString3Ev) +STUB( + "ni7OYMQtYfo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEEC1ERSA_) +STUB("ni9yY+yWJmo", _ZN3sce7Toolkit2NP23ChallengeConsumeRequestC2Ev) +STUB( + "niCyTWrRxmQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEE7add_refEv) +STUB("niEWK3zCAGQ", sceMbusDebugTerminateApplication) +STUB("niGYLJrYHsg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEEC1ERSA_) +STUB("niIR3TU71Bg", cairo_set_matrix) +STUB("niK485vUNSQ", _ZN4IPMI4impl11SessionImpl27respondToAsyncMethodRequestEjjiPKNS_8DataInfoEj) +STUB( + "niNYmmtbOZY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEED2Ev) +STUB("niNpqcKvmY0", _ZN12video_parser17cVideoOperatorMnvC1EPKc) +STUB("niOakMzo8VQ", _ZN3sce3Xml3Sax6Parser11setUserDataEPv) +STUB("niPixjs0l2w", _LLogpoly) +STUB( + "niQ1H45ND5M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("niRwsLAx03M", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEEC1Ev) +STUB("niWVNXcJCpM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEE7add_refEv) +STUB("niXN2N4o3yY", _ZN3sce2npeqERKNS0_9NpTitleIdES3_) +STUB("niYrNjsCULE", sceHidControlSetRevokeList2) +STUB("niZ0v7ZxaQ8", _ZN3sce2Np9CppWebApi12Leaderboards2V123RecordScoreResponseBodyD2Ev) +STUB( + "nimiGKR71QE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("nirOLXKNmoc", _ZN3sce2Np9CppWebApi13InGameCatalog2V59PublisherC1EPNS1_6Common10LibContextE) +STUB("nisaYl64P7s", mono_aot_Sce_Vsh_Np_Papcplt) +STUB("niuE7cBVUnM", _ZN3sce2Np9CppWebApi7Matches2V116RequestMatchTeamD2Ev) +STUB("nizs7hXvioQ", GENERAL_NAME_free) +STUB("nj+T-QhU2jc", _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody12unsetPlayersEv) +STUB("nj-3Jr5a4SE", mono_aot_Sce_Vsh_UsbStorageSceneunwind_info) +STUB("nj-eFx533Mc", + _ZN3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinitionaSERS5_) +STUB("nj0zxZTsvg4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEC1Ev) +STUB("nj7uUuh6zfI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEEixEm) +STUB("nj8P0Y1JToE", _ZN7WebCore18JSHTMLImageElement9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("njAb3txIO8k", scePerfTraceIoControllerAddBufferNotifyEvent) +STUB("njBb1RnJ43M", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchStatusD1Ev) +STUB("njBvUisSV84", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEEaSERKS5_) +STUB( + "njCl-tE1k1w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEEC1EPS8_PNS2_10LibContextE) +STUB("njGikRrxkC0", sceRazorCpuPlotValue) +STUB( + "njHmhSZGsio", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB("njLwua7Apwo", ulocdata_setNoSubstitute_67) +STUB("njMNfCeXcIs", mono_aot_System_Reactive_Interfacesmethod_addresses) +STUB("njRCx+Y1umM", _ZN3JSC7Symbols22ArrayBufferPrivateNameE) +STUB("njSuVaOC4UA", mono_native_thread_id_get) +STUB("njTTET86Ag8", sceVideoCoreDeleteStream) +STUB( + "njUO4L32DDM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEC2EPKS8_) +STUB("njVl0vsj1Co", sceDebugGetEventList) +STUB( + "njVoeYPU2XU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE6resizeEj) +STUB("njXgooO8zYw", _ZNK3sce2Np9CppWebApi11Matchmaking2V19Submitter11getPlatformEv) +STUB("njjlb33uOYo", mono_aot_mscorlibjit_got) +STUB( + "njkPByjpEp8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("njq8223axV4", + _ZN9Inspector17BackendDispatcher12CallbackBaseC2EON3WTF3RefIS0_NS2_13DumbPtrTraitsIS0_EEEEl) +STUB("njrvRzhGwqk", _ZNK7WebCore24RotateTransformOperation1xEv) +STUB( + "njtXq32QWDE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "njxwpXkOndY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEED1Ev) +STUB("njzAGv0TEL4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEEC2EPS6_) +STUB( + "njzY4fJXwGs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEC1EPS8_) +STUB("nk+0yTWvoRE", _ZNSo6sentryD2Ev) +STUB("nk2BNuhoqrQ", _ZN15AbstractStorage14DailymotionAPI8initHttpEv) +STUB("nk3yHQPZxLA", _ZNK3WTF10StringView10startsWithEDs) +STUB("nk7y+1-5Rlc", uhash_put) +STUB("nkAloVxQaEc", ScePsmMonoThreadsSetShuttingDown) +STUB("nkCE4t7mLJc", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIiEC1EPi) +STUB("nkF11ZPn6-A", mono_aot_System_Runtime_Extensionsunbox_trampolines_end) +STUB("nkMkM8NEEnI", sceMbusGetSimulatedHandleStatusInfo2) +STUB("nkQjPDHLTnE", _ZN7WebCore16ISOSchemeTypeBoxD1Ev) +STUB("nkSbKYK2gRg", _ZN7WebCore11DisplayList13StrokeEllipseD2Ev) +STUB("nkbTjX8ghpY", BgsStorageGetContainers) +STUB("nkc66Jj+4cE", il2cpp_class_get_declaring_type) +STUB( + "nkhCj51cZ-M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEEC1Ev) +STUB("nktpuKnJu6s", _ZN7WebCore9HTMLNames24webkitattachmentpathAttrE) +STUB( + "nl+KSGi6MUk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("nl0hCP77kLE", _ZN7WebCore16HTMLInputElement7setTypeERKN3WTF12AtomicStringE) +STUB("nl55Llx0JDw", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTicketsD2Ev) +STUB( + "nl5zBZ6iEoc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE8capacityEv) +STUB( + "nl6AtfqkUwg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEED1Ev) +STUB( + "nl7bsKpAhKU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE3endEv) +STUB("nl8lQxwAceM", glBindBuffer) +STUB( + "nlASSSHswJQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE5clearEv) +STUB("nlAk46weq1w", + _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecm) +STUB("nlFQM4R-Aco", _ZN7WebCore11JSDOMWindow4infoEv) +STUB( + "nlNyw7xqkyw", + _ZN3sce2Np9CppWebApi14SessionManager2V143GetFriendsPlayerSessionsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_36GetFriendsPlayerSessionsResponseBodyEEE) +STUB( + "nlO5CFDb4o8", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_34DetailedProductInfoListInputParams9ProductIdEEC2ERKS5_) +STUB( + "nlOImIGecJw", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEiRNS2_10LibContextEPT_m) +STUB("nlOWAiRyxkA", sceUserServiceGetNpAuthErrorFlag) +STUB("nlRz29sqDFk", _ZN3JSC7Symbols17unscopablesSymbolE) +STUB("nlU2VnfpqTM", sceFontWritingLineGetRenderMetrics) +STUB( + "nlW1NcG7d18", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE7popBackEv) +STUB( + "nlXuC1i2uG0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEC2Ev) +STUB("nlYycDAxvdE", _ZNK3WTF6String6latin1Ev) +STUB("nlaojL9hDtA", round) +STUB("nleHqndSeQ0", _ZN3sce2np10CancelLock3EndEPKciS3_) +STUB("nleYBZY-BsY", png_write_image) +STUB( + "nlha9nL7tC8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE7reserveEi) +STUB( + "nlmMXiB0g7U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEED1Ev) +STUB( + "nlqZjbcWgJ0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEE11release_refEv) +STUB("nlrpj3EEGcc", _ZN8meta_gen14ImageRetriever10SetMetaValEim) +STUB( + "nluZgF3QybI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEmmEi) +STUB("nlwpUngmVeM", _ZN9Inspector22InspectorDebuggerAgent29clearInspectorBreakpointStateEv) +STUB("nlxVZWbqzsU", _ZNSt14numeric_limitsIcE6digitsE) +STUB("nm2W87jyoB0", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEEppEi) +STUB( + "nm3mGGxDUO4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE5emptyEv) +STUB("nm7E-8HX0jE", WKPreferencesSetWebSQLDisabled) +STUB( + "nm95h+-2Sdk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEmmEv) +STUB("nmC8xJAWwLY", _ZN3sce7Toolkit2NP2V24Core15StringifyResult15RESULT_MAX_SIZEE) +STUB( + "nmCKBmCOyh4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEC2Ev) +STUB("nmDWFehIWBQ", _ZN7WebCore16ThreadGlobalDataC2Ev) +STUB("nmGqNyrNQj0", _ZN7WebCore22parseVPCodecParametersEN3WTF10StringViewE) +STUB("nmHzU4Gh0xs", sceHmdSetupDialogClose) +STUB("nmL6U3DW8L0", TEECI_InitASD) +STUB( + "nmOGY2RkyFA", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetrics6toJsonERNS_4Json5ValueEb) +STUB("nmP+-IDK-EY", Java_com_sony_bdjstack_ti_Database_getPlayLists) +STUB("nmQLo50WaFA", _ZN7WebCore23ISOSchemeInformationBoxD1Ev) +STUB("nmUsbuL3Rc0", glGenerateMipmap) +STUB( + "nmVLJUjl3JM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEE11release_refEv) +STUB("nmWn8Otb2Nk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEED1Ev) +STUB("nmZO8fyag2o", _ZNK3sce2Np9CppWebApi6Common6VectorIiEixEm) +STUB( + "nmcvCrzt2Wk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEC1Ev) +STUB("nmm20WexfqY", _ZN3sce2Np9CppWebApi15ProfanityFilter2V219WebApiErrorResponse10unsetErrorEv) +STUB( + "nmz5JYKcMfY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB("nn1ttZrCY6M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEC2Ev) +STUB("nn4U0B9p6t8", il2cpp_class_is_subclass_of) +STUB("nn8b-zfOB44", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesD2Ev) +STUB( + "nnEAjD8eDGc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB("nnHeqUMs3lA", libc_application_heap_api) +STUB("nnJBTIMKe4E", mono_aot_Sce_Vsh_Np_ServiceCheckerunwind_info) +STUB("nnLYSczELkM", _ZN7WebCore9HTMLNames19aria_labelledbyAttrE) +STUB("nnNDJYj7dlM", _ZN7WebCore11portAllowedERKNS_3URLE) +STUB( + "nnPOTDW5r7I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEC2EPKS8_) +STUB("nnR7KAIDPv8", sceCameraSetUacModeInternal) +STUB("nnTwtS259xo", mono_hazard_pointer_get) +STUB("nnb4hOLGOMs", il2cpp_thread_get_frame_at) +STUB( + "nnippS4lUsU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEaSERS7_) +STUB( + "nnjuZPpKZTc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEED1Ev) +STUB( + "nnjwC-RXjfo", + _ZN3sce2Np9CppWebApi14SessionManager2V125LeaderWithOnlineIdFactory7destroyEPNS3_18LeaderWithOnlineIdE) +STUB( + "nnkFVoA9NUs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEC2EPS8_) +STUB("nnn-IHAO49Y", uhash_setResizePolicy_67) +STUB( + "nnoJGzckGOg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE8capacityEv) +STUB("nnoxZUHK+SA", pthread_getcpuclockid) +STUB("nntIf9ukTBk", __tsan_atomic8_store) +STUB( + "nnv4jJSEY5s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEC1Ev) +STUB( + "nnyzmJbR40o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEEptEv) +STUB("no-jO-qaBAI", _ZN3JSC15JSWrapperObject13visitChildrenEPNS_6JSCellERNS_11SlotVisitorE) +STUB( + "no0AiqphBIQ", + _ZN7WebCore13KeyboardEvent6createERKNS_21PlatformKeyboardEventEON3WTF6RefPtrINS_11WindowProxyENS4_13DumbPtrTraitsIS6_EEEE) +STUB("no0QS6stnLI", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container5setIdEPKc) +STUB("no3bVGZVnaM", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEEptEv) +STUB( + "no3w6pZUOZY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEC1ERKS7_) +STUB("no6T3EfiS3E", sceSysmoduleIsCameraPreloaded) +STUB("no7Q08r7D4I", _ZN3sce7Toolkit2NP9Utilities6FutureIiED2Ev) +STUB("no9LuKkiLhQ", _ZN3JSC2VM22arrayIteratorSpaceSlowEv) +STUB("noBxgWVHwBg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEptEv) +STUB("noIeQ08Ofho", ASN1_INTEGER_free) +STUB("noJm52uLN00", _ZNK3sce2np4User10IsLoggedInEv) +STUB("noLHUdxm01g", _ZN3WTFeqERKNS_7CStringES2_) +STUB("noQgleu+KLE", sceNpWebApiDeleteRequest) +STUB("noRFMfbcI-g", CERT_enumerateCRL2) +STUB("noWnOQpQcCc", __asan_exp_store16_noabort) +STUB("noY4H2ZEXJw", _ZN3WTF10StringImpl4findEPS0_j) +STUB( + "noaltmxPAhk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEEptEv) +STUB( + "nockraAks2M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEED2Ev) +STUB("nodPWqrkXMw", + _ZN3sce2Np9CppWebApi7Matches2V124LeaveMatchRequestFactory7destroyEPNS3_17LeaveMatchRequestE) +STUB("nofAEAG9+TM", WKPreferencesGetContentChangeObserverEnabled) +STUB( + "nokk2kTpDBA", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setBoolean3ERKb) +STUB("nol3vzTAjz4", udata_close) +STUB("nomcox0J32k", sceFiosDelete) +STUB("nooBSCAPeS8", _ZN3WTF20fastDisableScavengerEv) +STUB( + "nooNPGUKTOg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEED1Ev) +STUB( + "noqPWCIEUpw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEppEi) +STUB( + "nornPdSITDw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEEC2ERSA_) +STUB("nosV+8v+A9o", sceBgftServiceIntDownloadStopTask) +STUB("nosVV9QF4T8", _ZN3sce7Toolkit2NP2V27NpUtils7Request17CheckAvailabilityD1Ev) +STUB("nour4-O5aD0", _ZN4IPMI4impl11SessionImpl6getMsgEjPvPmmPj) +STUB( + "novj1RWeAuE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEE7get_refEv) +STUB( + "now3el7b4WY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEE11get_deleterEv) +STUB("nowu8uQECt4", mono_md5_get_digest) +STUB( + "noxyKZzZAS0", + _ZNK3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBody6toJsonERNS_4Json5ValueEb) +STUB( + "nozS9cbmf4I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE4sizeEv) +STUB("nozvJyzd5dc", _ZN3sce7Toolkit2NP22UpdateNpSessionRequestC1Ev) +STUB( + "np1kl+yPzpI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEC1ERKS7_) +STUB("np2cGvsjqvY", sceVnaCloseTtsStream) +STUB("np6xXcXEnXE", _Thrd_id) +STUB("npDNnVZ56kw", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIlEmmEv) +STUB( + "npE+jcuQKXE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE7reserveEi) +STUB( + "npE5JcylRjw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEC1Ev) +STUB( + "npGPyk9SPQw", + _ZN3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsSearchRequestBodyC2EPNS1_6Common10LibContextE) +STUB( + "npIavlsIRpA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEeqERKS9_) +STUB("npLpPTaSuHg", fscanf) +STUB("npM8ZhjgdZg", _ZN23sceMetadataReaderWriter12readMetadataERKSsRKNS_8MetadataEjRS2_) +STUB( + "npMIfvNUuiQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB( + "npNpDbi00ug", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE3endEv) +STUB( + "npROrQbAfMk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEmmEi) +STUB("npRp9gruTcY", __gethex_D2A) +STUB("npU5V56id34", sceNpSignalingGetContextOption) +STUB( + "npVwjyegYTI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEC1Ev) +STUB("npXHlgPpwI0", _ZN7WebCore24CoordinatedGraphicsLayer16setMasksToBoundsEb) +STUB("npYn4GHMRHs", WKPreferencesGetMultithreadedWebGLEnabled) +STUB("npa5aUCaU2s", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110TaskStatusEEmmEi) +STUB("npdBVCK80cs", _ZN7WebCore14FrameSelection7setBaseERKNS_15VisiblePositionENS_14EUserTriggeredE) +STUB( + "npdGyv74eAc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEC2EPS8_) +STUB( + "npeuTU0Go4A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEC1EPKS8_) +STUB("npfZ5V5VDMU", monoeg_g_slist_last) +STUB("nphtG-7DtyY", _ZN3WTF15ThreadConditionC2Ev) +STUB( + "npmWkG3qBgM", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "npntAsLSDmw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE4sizeEv) +STUB( + "npo5VNRCtKw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEC2Ev) +STUB( + "nppng2ksNkA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE7reserveEi) +STUB("npwsQC9KsdQ", u_vsnprintf_u_67) +STUB("npyROZbXXpw", _ZNK7WebCore16HTMLTitleElement4textEv) +STUB( + "npyfjyCXAaQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("nq-FMcy8LXU", WKGeolocationPermissionRequestGetTypeID) +STUB("nq-gzaZnllo", _ZN3WTF8JSONImpl10ObjectBase4findERKNS_6StringE) +STUB("nq0Lw1g-HpA", _ZN7WebCore8SVGNames18letter_spacingAttrE) +STUB("nq4Y79dxE5M", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_16SessionAttributeEE7addressERS3_) +STUB("nq7lx7M2Blo", mono_aot_Sce_Vsh_UsbStorageSceneunbox_trampolines_end) +STUB("nqCI0o-6rRg", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V117ReputationFactory7destroyEPNS3_10ReputationE) +STUB("nqD9bBu-W6U", _Unwind_GetDataRelBase) +STUB("nqDEnj7M0QE", sceUserServiceGetAutoLoginEnabled) +STUB("nqFAhqzej7s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEE7get_refEv) +STUB("nqG7rqnYw1U", sceSigninDialogGetResult) +STUB("nqHJ9X3L3zI", scePssAudIsStopped) +STUB( + "nqJnq6MoJKQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("nqNjaxls1D8", bdjbg_getInfo) +STUB( + "nqQpr4WAfcw", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody16getComparedValueEv) +STUB("nqR3CLMiJoM", + _ZN7WebCore18TextureMapperLayer15setBackingStoreEPNS_25TextureMapperBackingStoreE) +STUB( + "nqVQ8s+oTjc", + _ZN9Inspector24NetworkBackendDispatcher19setExtraHTTPHeadersElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("nqXpw3MaN50", sceAudioInSetUsbGain) +STUB("nqYEZn6swPY", utrans_toRules_67) +STUB( + "nqdVuR5FJZU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE5beginEv) +STUB("nqiJZ8rcJO4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEC1Ev) +STUB( + "nqkxqaDHNow", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB("nqmUW6Z8xLE", cairo_font_face_reference) +STUB("nqpARwWZmjI", _ZTIPs) +STUB( + "nqpswf9W4fo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB( + "nqt5VkjyH5c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "nquV-k-pdAE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "nqvXpWY6OVU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE10setContextEPNS2_10LibContextE) +STUB( + "nr+wZc+djr4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEC1EPS8_) +STUB( + "nr-tli5Dp54", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEppEi) +STUB( + "nr4+nQ18BxA", + _ZN3sce2Np9CppWebApi14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBody25getJoinableSpecifiedUsersEv) +STUB( + "nr4NB1wKg0M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEEC2Ev) +STUB("nr6ix5Uq8R0", _ZNK3sce2Np9CppWebApi15Personalization2V111ErrorEntity6toJsonERNS_4Json5ValueEb) +STUB( + "nr9Loxpv6XA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEE11get_deleterEv) +STUB("nrJYOIQ6yao", mono_aot_Sce_PlayStation_Jsonjit_code_end) +STUB("nrJmuDu5WFs", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEEC2Ev) +STUB("nrPF1HGjG+0", _ZN7WebCore13SleepDisablerD2Ev) +STUB("nrPfOE8TQu0", sceHttp2AddRequestHeader) +STUB("nrQRlLKzdwE", sceNpProfileDialogOpenA) +STUB("nrQngqVa2mU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEE3getEv) +STUB( + "nrRClfxRpvo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEppEi) +STUB("nrWEGAxN9sw", WKWebsiteDataStoreIsStatisticsRegisteredAsRedirectingTo) +STUB("nrdvxOnxxLc", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_16SessionAttributeEE9constructEPS3_RKS3_) +STUB("nrg-o7sXbKk", _ZN9Inspector26TimelineFrontendDispatchernwEm) +STUB("nrhlqqa1Ryo", _ZN7WebCore10StorageMap6createEj) +STUB("nriDzKvhp2c", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEEC1EPNS2_10LibContextE) +STUB( + "nrmzfDkj9oM", + _ZN3sce2Np9CppWebApi11Matchmaking2V128PlayerForTicketCreateFactory7destroyEPNS3_21PlayerForTicketCreateE) +STUB( + "nrqjNSCR4-Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEEC1EPSA_PNS2_10LibContextE) +STUB("nrvHUJnoOGM", _ZN3sce7Toolkit2NP2V28Commerce7Request11GetProductsC1Ev) +STUB( + "ns58F28dS3g", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectatorD2Ev) +STUB( + "ns5gwIQLOaY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEED2Ev) +STUB("ns8HVzVqaNo", sceShellCoreUtilGetGpuLoadEmulationModeByAppId) +STUB("nsBDTu22CBU", fchmodat) +STUB("nsBS3-CH8uw", + _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession17unsetJoinDisabledEv) +STUB("nsBnBt11r9I", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge18ChallengeThumbnailEEC1Ev) +STUB("nsHS4tnwGyU", _ZN3WTF12base64DecodeERKNS_6StringENS_33SignedOrUnsignedCharVectorAdapterEj) +STUB("nsI9smYR3xQ", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_23NpSessionInvitationInfoEE7addressERKS3_) +STUB("nsN1RbvzhTg", _ZN9Inspector21InspectorRuntimeAgent34setControlFlowProfilerEnabledStateEb) +STUB("nsNNFzmax7s", WKContextMenuItemSetUserData) +STUB("nsOB95QKH+g", _ZN7WebCore9HTMLNames5ttTagE) +STUB( + "nsPhpPh2fF0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEEaSERSA_) +STUB("nsQrd1vIsOU", mono_btls_x509_crl_get_last_update) +STUB("nsSfxRmrl3c", _ZN7WebCore8SVGNames9titleAttrE) +STUB("nsUltDlbQsU", _ZN3WTF14FileSystemImpl10fileExistsERKNS_6StringE) +STUB("nsXnVfbWLtw", _ZN7WebCore11DisplayList8FillPathC2ERKNS_4PathE) +STUB( + "nsYfSphgs-M", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi44ParameterToPatchGameSessionsSearchAttributes9terminateEv) +STUB("nsYoNRywwNg", scePthreadAttrInit) +STUB( + "nsaEY-eY1+s", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser11unsetfieldsEv) +STUB("nsbR5-4UTHU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEE7get_refEv) +STUB("nsc5rBVPrJ8", _ZN3WTF9MediaTime14indefiniteTimeEv) +STUB("nsiPmZQVkx4", _ZN3sce2Np9CppWebApi6Common6VectorImEC1Ev) +STUB("nsieseBIdr8", GCC_except_table117) +STUB( + "nsk+7Li7zkk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE5emptyEv) +STUB( + "nskuTkzXpP8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEdeEv) +STUB( + "nslD-bkfxVw", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEiRNS2_10LibContextEPT_m) +STUB("nslHuWRPL80", _ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequestD2Ev) +STUB("nslw+B78rZU", _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead12setSessionIdEPKc) +STUB("nsqL77brn7c", _ZN9Inspector21InspectorConsoleAgentnaEmPv) +STUB("nsyWCTsI3MY", sceCoredumpGetStopInfoGpu) +STUB( + "nt0eLNmV1KU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEmmEv) +STUB( + "nt1CxYnMsDQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEE3getEv) +STUB( + "nt1jKvNh8EE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEppEi) +STUB( + "nt3TJwSrxXw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB("nt84GNfd0-E", mono_aot_Sce_Vsh_AppDbWrapperjit_code_start) +STUB("ntG-m0A3Hds", _ZN18MmsFileUpdaterBaseD0Ev) +STUB("ntHN+xACke0", uset_toPattern_67) +STUB( + "ntLZLD-b0js", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEC1EPS8_) +STUB("ntP7sqUDJfw", GCC_except_table240) +STUB( + "ntPBH37VMLM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("ntQlwZUs6N4", sceVideoStreamingEngineMediaKeySessionGetExpiration) +STUB( + "ntSz12rGVNw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEEaSERKSA_) +STUB("ntUjLWHNhAM", _ZN10Deprecated25ScriptCallArgumentHandler14appendArgumentEb) +STUB( + "ntWtqFF5eWI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEEC1Ev) +STUB("ntXGPpT9Tpw", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadDataC1ERS5_) +STUB( + "ntZAF17-wGM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEC2ERS7_) +STUB("ntbBpCo9rYk", _Z30VideoPlayerVcs_CancelLoopRangei) +STUB("ntfVELXIYvE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEptEv) +STUB("ntkvNxFOhK4", _ZN3sce7Toolkit2NP24SendInGameMessageRequestC2Ev) +STUB( + "ntmhshS90Hc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEaSERKS8_) +STUB( + "ntpJVZPYFp0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEdeEv) +STUB( + "ntqN5dyAOMA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("ntrc3bEWlvQ", sceFontGlyphRefersMetrics) +STUB( + "ntsHjpErCPo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("ntw5MF+O8pg", png_get_error_ptr) +STUB("ntzwXOocTUY", _ZN12video_parser12cVpFileCache5ftellEPy) +STUB("nu-YBQYFZ98", _ZNK7WebCore26ISOProtectionSchemeInfoBox13schemeTypeBoxEv) +STUB("nu3lB5JtVwA", _ZN15AbstractStorage15FacebookService4StopEv) +STUB("nu4a0-arQis", sceKernelAioInitializeParam) +STUB("nu542EmGFD4", sceShellCoreUtilStartOptimization) +STUB("nuAkppz+PBs", _ZN8meta_gen14ImageRetriever21InitializeFsOperationEPKc) +STUB( + "nuAl3oi6XRs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEC2EPS6_PNS2_10LibContextE) +STUB( + "nuB40D-Vaac", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE8copyFromERKS9_) +STUB( + "nuDhaiUXNHs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEED1Ev) +STUB("nuGuHAit5fM", + _ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody18getCreatedDateTimeEv) +STUB("nuIRlpbxauM", sceUsbdGetMaxIsoPacketSize) +STUB( + "nuIyKfR5cEI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("nuJQ51-qYTg", g_print) +STUB("nuKs4VTWB1M", _ZN3sce7Toolkit2NP2V211SharedMedia11ScreenshotsC2ERKS4_) +STUB("nuLldRPXFWw", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE5emptyEv) +STUB("nuPl4uVXYMM", sceNpAsmClientGetNpTitleId) +STUB("nuRo-SP5gDs", fuse_getgroups) +STUB( + "nuRyh2IkEyI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("nuTGXi-mQ88", sceUserServiceSetChatStatus) +STUB("nuU0-+klRHM", _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOffer10getofferIdEv) +STUB("nuVkOt1FzDE", _ZN3sce7Toolkit2NP2V27Session7Request6Update16HIGHEST_PRIORITYE) +STUB( + "nuckYzk2wlI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEED2Ev) +STUB( + "nuezgVbEboc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "nufgQ-mfdSA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEE7add_refEv) +STUB("nufufTB4jcI", __divsf3) +STUB( + "nugem9yZkoo", + _ZN9Inspector31ScriptProfilerBackendDispatcher13startTrackingElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "nuhprucK5B8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEppEv) +STUB( + "nuiEToWD2E4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEdeEv) +STUB("nukAyhwPuYg", _ZN3sce2Np9CppWebApi7Matches2V14Task13unsetSubtasksEv) +STUB("nukppJUzhrs", _ZN7WebCore6Editor33increaseSelectionListLevelOrderedEv) +STUB( + "numsq0Fd3+I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEC2Ev) +STUB("nun+WRYNLXM", _ZN7bmalloc8FreeListD1Ev) +STUB( + "nurqHBjYMlk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEC2EPS8_) +STUB("nuywyt9n+rk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEC2ERKS7_) +STUB("nv3LkGAUp9Y", _ZN7WebCore22createFragmentFromTextERNS_5RangeERKN3WTF6StringE) +STUB("nv47rdhcTd8", EC_KEY_check_key) +STUB( + "nv6HvGhvNsE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEaSERKS7_) +STUB( + "nv6S9QDl89E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEC2EPS6_PNS2_10LibContextE) +STUB("nvAeA6svNa0", Java_java_util_zip_Deflater_setDictionary) +STUB("nvDX9G4Zns8", monoeg_g_strjoinv) +STUB( + "nvDdWePmIls", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEaSERKS7_) +STUB("nvEwfYAImTs", sceGnmRegisterResource) +STUB( + "nvFVvskdEPk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEC2EPNS2_10LibContextE) +STUB( + "nvGu41GGOf4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEE11release_refEv) +STUB( + "nvH4jHyOAE4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "nvM86mxG5Z8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEmmEi) +STUB("nvMOoFdQYk0", __libunwind_Unwind_SetIP) +STUB( + "nvOLFt+YMIs", + _ZN3sce7Toolkit2NP2V210Tournament12searchEventsERKNS3_7Request12SearchEventsEPNS2_4Core8ResponseINS3_6EventsEEE) +STUB("nvSsAW7tcX8", _ZNKSt8numpunctIwE11do_truenameEv) +STUB("nvU7uMYpyS4", _ZTVN15AbstractStorage12LocalContentE) +STUB("nvVMP+gr9Lo", ubrk_openBinaryRules_67) +STUB("nvXsd0gBCS0", + _ZNK3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallback9getslotIdEv) +STUB( + "nvfu--j5lUg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEC1Ev) +STUB("nvmARkPWT6U", _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15Error9unsetCodeEv) +STUB("nvpNVdivlWE", unorm2_getDecomposition_67) +STUB("nvpU78k-5Kc", sceSystemServiceGetAppIdListOfBigApp) +STUB("nvwQaJIhk2E", mono_aot_Sce_Vsh_Accessorjit_got) +STUB("nvxcj6FlJo4", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEE3getEv) +STUB( + "nvyE7dqGeps", + _ZN3sce7Toolkit2NP9Messaging9Interface34retrieveMessageAttachmentFromEventEPKNS1_21ReceiveMessageRequestEPNS1_9Utilities6FutureINS1_17MessageAttachmentEEE) +STUB( + "nvyNnWpphXc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB("nw5bC1mEO18", _ZNK23sceMetadataReaderWriter8Metadata8getFieldEiRSsRNS_5ValueE) +STUB("nw694oGIoW4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEED1Ev) +STUB("nwAphdkHPTs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V124RequestCooperativeResultEEppEi) +STUB("nwEAY-adORA", _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSessionD1Ev) +STUB("nwJZCgN6eGw", _ZN12video_parser17cVideoOperatorMgvC2EPKc) +STUB("nwKvyObqo9I", _ZN23sceMetadataReaderWriter8Metadata15iterateAllFieldEPFiRKSsRKNS_5ValueEbE) +STUB("nwVj98UTedY", mono_aot_Sce_Vsh_Accessor_Dbjit_code_end) +STUB("nwX0xDpLzR4", scePssInternalKeyboardGetKeyCode) +STUB( + "nwXzEwL3Y0A", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB("nwbBBUpKAtA", _ZNK3WTF24TimeWithDynamicClockTypegtERKS0_) +STUB("nwcHJzdzobE", WKContextGetDatabaseManager) +STUB("nwcJGZk4rdI", _ZN7WebCore9HTMLNames17onpointermoveAttrE) +STUB("nwhezdg292Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEEC1EPKS6_) +STUB("nwqYelH-nW4", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToCancelTicketD1Ev) +STUB("nwsijf03qFg", _ZN3sce7Toolkit2NP2V24Core7Request21BehaviorModificationsC2Ev) +STUB("nwujzxOPXzQ", _ZdlPvmSt11align_val_t) +STUB( + "nx1hcdd8jz8", + _ZN3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBody10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_27ResponsePlayerSessionPlayerEEEEE) +STUB("nx1vYfPRkCs", _Z34sceGpuDebuggerUnregisterShaderCodePKN3sce3Gnm16LsStageRegistersE) +STUB("nx28bgv9hjs", _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_11TusVariableENS2_IS4_EEEEC2Ev) +STUB( + "nx2cEpIXkQo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEC2ERKS7_) +STUB( + "nx33Rqntqh0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEEdeEv) +STUB("nx3kFVXwNOg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend16FriendsOfFriendsEE3setEv) +STUB( + "nx646OeZvDY", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_34DetailedProductInfoListInputParams9ProductIdEEneERKS5_) +STUB("nxCPeDBLP5U", EVP_MD_CTX_init) +STUB( + "nxCQhxuIfaQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB( + "nxEOg3ejTMs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE8capacityEv) +STUB( + "nxEqsmb5iHM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEC1Ev) +STUB("nxFoHbrUn90", _ZN12video_parser5vpcom6StringC2ERKSs) +STUB("nxGZSi5FEwc", sceUserServiceGetPbtcWednesdayHoursEnd) +STUB("nxGetrkrYB0", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_7NpUsersEE17getAdditionalInfoEv) +STUB( + "nxI3oJk75Eo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEEC1Ev) +STUB("nxLDhsSb6GM", WKPreferencesGetInlineMediaPlaybackRequiresPlaysInlineAttribute) +STUB("nxREzUJ97nA", _ZN7WebCore19BlurFilterOperationD0Ev) +STUB( + "nxT6JP617FU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE8capacityEv) +STUB("nxTtVWYk3N8", rgctx_fetch_trampoline_rgctx_4_p) +STUB("nxWdtBJF070", _ZNK3sce2np8JsonBool5CloneEP16SceNpAllocatorEx) +STUB("nxb6lTMECek", + _ZNK3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBody21ticketAttributesIsSetEv) +STUB("nxcdqUGDgW8", CERT_extractDistinguishedNamesFromName) +STUB("nxdioQgDF2E", _ZNSt15_Num_float_base13has_quiet_NaNE) +STUB("nxefs8JHV5U", _ZN15AbstractStorage14MemfileContent6RemoveEv) +STUB("nxh-MTZt8Mk", _ZN7WebCore11DisplayList10StrokeRectC1ERKNS_9FloatRectEf) +STUB( + "nxiDbioYq2w", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE28getResponseInformationOptionEv) +STUB("nxpboyvJGf4", sceNpAsmClientGetServiceBaseUrlWithNpTitleId) +STUB( + "nxqfJEDYMCA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEE3getEv) +STUB("nxus4jy2Qco", _ZN7WebCore17JSDOMGlobalObject14guardedObjectsERKN3WTF14AbstractLockerE) +STUB( + "ny3WL8xZalg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE10setContextEPNS2_10LibContextE) +STUB( + "ny4NAkQXR20", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEmmEv) +STUB("ny4PSAfY9sQ", GCC_except_table409) +STUB("ny5OCn2jr98", _ZN3sce7Toolkit2NP2V28Commerce23ServiceEntitlementLabelC1Ev) +STUB("ny5PSQqfXQc", ucnv_getInvalidChars) +STUB("ny6OzX83aDA", _ZN3sce7Toolkit2NP9Interface20registerServiceLabelERKjNS1_11ServiceTypeE) +STUB("ny6YzqATUME", mono_disasm_code_one) +STUB( + "ny7woJH99n0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "nyCZZhQjJ6k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEEaSERKSB_) +STUB("nyICOUVxtO8", ucnv_toUCountPending_67) +STUB( + "nyMAJmi78PM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("nyO3x1IgiSI", unorm2_getNFKDInstance) +STUB("nyPJWvkvO0A", _ZN7WebCore7Process10identifierEv) +STUB("nyXxTvQbWrw", mono_aot_Sce_Vsh_MarlinDownloaderWrapperjit_code_end) +STUB("nya-R5gDYhM", sceAudioInHqOpen) +STUB( + "nyaNhkKhNdU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE5clearEv) +STUB( + "nyfFQqHZsAQ", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setInteger5ERKi) +STUB("nyg3mLK0R2o", _ZN3sce7Toolkit2NP2V23TSS7TssDataaSERKS4_) +STUB( + "nyjVkhcnyAc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEE11get_deleterEv) +STUB("nymuLF2QARg", _ZN7bmalloc19mapToActiveHeapKindENS_8HeapKindE) +STUB("nyocBnafYt8", WKPageListenForLayoutMilestones) +STUB( + "nypCbu93ay0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEptEv) +STUB("nytN-3-pdvI", sceNpTrophySystemSetDbgParam) +STUB( + "nytuZCBIqvc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEixEm) +STUB("nyw4BJMyZQw", Java_java_util_zip_ZipFile_getMethod) +STUB("nywQVbztKlA", scePktMgrGetDeciPayload) +STUB( + "nyyCebZXdQg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEE3getEv) +STUB("nyyZ-gtaYPc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEC1ERS7_) +STUB("nz1PM7BFHeY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE6resizeEj) +STUB("nz2Vn7gXKYE", _ZN9Inspector26DebuggerFrontendDispatcher25playBreakpointActionSoundEi) +STUB( + "nzH30bgZajU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEaSERKS7_) +STUB( + "nzMYv1lm+TY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB("nzO7rUcBW4c", WKBundleGetTypeID) +STUB("nzPTHVz-FUk", _ZNK7WebCore14SecurityOrigin10canDisplayERKNS_3URLE) +STUB( + "nzSbwR4K0X4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEneERKS9_) +STUB("nzThMO3IUjc", _ZN3JSC8Bindings8InstanceD1Ev) +STUB( + "nzWtU7ofllE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEC1EPNS2_10LibContextE) +STUB( + "nzb9F+nv3pU", + _ZN7WebCore21NetworkStorageSession25deleteCookiesForHostnamesERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("nzdgKYmGj2w", _ZN7WebCore4Page27setUnobscuredSafeAreaInsetsERKNS_9RectEdgesIfEE) +STUB("nzeGzpdalkg", mono_aot_Sce_Vsh_Friendunbox_trampolines) +STUB("nzgzgSapdy8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEC1Ev) +STUB( + "nzhSfMwZu6E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE8copyFromERKS9_) +STUB( + "nziDxdAlqdw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERSB_) +STUB( + "nzjLn2HZlcg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEE7get_refEv) +STUB("nzqN4RdflwM", sceDebugSuspendProcess) +STUB("nzqY06hcp7E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEE7add_refEv) +STUB("nzqbBAP3gZI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE7reserveEi) +STUB( + "nzr+YbB0eAc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEC1EPS8_) +STUB("nzrlUiNpHyE", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Error7getCodeEv) +STUB("nzs+25i3srs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEEC1EPS5_PNS2_10LibContextE) +STUB("nzsQ5vycrCU", _ZN3sce7Toolkit2NP2V211SharedMedia9BroadcastD1Ev) +STUB( + "nzscMpe8RDs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEppEi) +STUB("nzuKTmqQFXY", sceKernelSetBudget) +STUB( + "nzyX6oZkgeo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB( + "nzzDy7croPk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEEC2Ev) +STUB( + "o+0+zJ3rtvI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE7popBackEv) +STUB("o+5KjZ3r4O4", sceBluetoothHidThreadParamInitialize) +STUB("o+5R7hpd4MA", _ZNK3sce2Np9CppWebApi6Common6VectorIlE5emptyEv) +STUB("o+9IFyYo2+g", mono_aot_Sce_Vsh_Sl2_Sl2Clientjit_got) +STUB( + "o+9WvMAzQYs", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEEiRNS2_10LibContextEPT_m) +STUB("o+9bF0JOf9M", _ZN7WebCore8SVGNames11kerningAttrE) +STUB( + "o+C261KAsrI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEE5resetEPS9_) +STUB("o+F26Wk4JtI", sceVideoCoreMediaSourceAbortSourceBuffer) +STUB( + "o+FIPCRA8ZM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("o+HtxlKwm38", _ZN7WebCore28InspectorFrontendClientLocal27setTimelineProfilingEnabledEb) +STUB("o+JvTLCtV-o", ulist_close_keyword_values_iterator) +STUB("o+M9lrGXwlA", _ZN3sce2Np9CppWebApi6Common8IteratorINS2_17ParameterBaseImpl6KeySetEEppEi) +STUB("o+RkbLSDzsw", _ZN7WebCore12GCController43garbageCollectOnAlternateThreadForDebuggingEb) +STUB( + "o+Ti2EvNo00", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEE7get_refEv) +STUB("o+TiqWzvS8s", _ZNK7WebCore20ResourceResponseBase8lazyInitENS0_9InitLevelE) +STUB( + "o+U2qO9E41g", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE3endEv) +STUB("o+X-i3Y20j4", _ZNK7WebCore20HTMLTableCellElement9cellAboveEv) +STUB( + "o+XYqjgPwTk", + _ZN7WebCore6JSFileC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_4FileENS6_13DumbPtrTraitsIS8_EEEE) +STUB("o+cobhAWPDg", _ZN7WebCore16MIMETypeRegistry23isSystemPreviewMIMETypeERKN3WTF6StringE) +STUB("o+fLdWYVdAY", _ZN3WTF10StringView11SplitResult8IteratorppEv) +STUB("o+iFqLhIWvs", AnnotateMemoryIsInitialized) +STUB("o+nLzPY-ObY", _ZN7WebCore15AsyncFileStreamnaEmPv) +STUB("o+ok6Y+DtgY", strerror_s) +STUB("o+roiKCkHO0", + _ZN7WebCore4Page30addActivityStateChangeObserverERNS_27ActivityStateChangeObserverE) +STUB("o+xDP1vQTVY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils16NetStateDetailedEEC1Ev) +STUB( + "o-1mEW2WVXE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "o-5QGWUuuWg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEaSERKS9_) +STUB( + "o-6UUdD-TIs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE8capacityEv) +STUB("o-6Y99a8dKU", scePadSetLoginUserNumber) +STUB( + "o-8ldYVwNrg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEE7add_refEv) +STUB("o-9sR0Ye+-Q", + _ZN7CoreIPC10Connection22createServerConnectionEiPNS0_6ClientEPN7WebCore7RunLoopE) +STUB("o-CU61gUP2A", _ZN9Inspector27DOMStorageBackendDispatcherD2Ev) +STUB("o-GBjVbCTjM", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributesD1Ev) +STUB("o-Lj7ABhtbA", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE7reserveEi) +STUB( + "o-OHqQoJvAE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEmmEv) +STUB("o-Pe49xXyZA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEaSERS7_) +STUB("o-RBPV0qr8c", sceContentSearchGetNumOfContent) +STUB( + "o-XG9k3qgPk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("o-YHosjb1YI", _Z31sceRazorGpuThreadTracePopMarkerPN3sce3Gnm17DrawCommandBufferE) +STUB( + "o-Ykd5XGEb0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEptEv) +STUB( + "o-YqQQXOL8w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEC1Ev) +STUB("o-Z4rChSsSE", scePlayReadyStoreCleanup) +STUB( + "o-egadoJSv0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEEC2Ev) +STUB("o-encoKL0Ys", mono_aot_I18N_Othermethod_addresses) +STUB( + "o-gc5R8f50M", + _ZZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8_GetffldEPcRS3_S6_RSt8ios_basePiE4_Src) +STUB("o-kMHRBvkbQ", lgamma) +STUB("o-loKC1PRU8", _ZN12video_parser12cVpFileCache5freadEPvyPy) +STUB( + "o-sMt4OM+Rc", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToSetMultiVariablesByUserD1Ev) +STUB("o-wo5PLFrZA", _ZN3sce7Toolkit2NP2V23TUS7Request12TusUserInputD1Ev) +STUB("o0+89h9H3xA", sceAvSettingSetVrMode) +STUB("o01rnQ1YyYI", MD5_Final) +STUB("o023LEQu4Y4", uset_applyIntPropertyValue_67) +STUB("o02Mtf8G6V0", sceNpTusDeleteMultiSlotVariableVUser) +STUB("o0AOk-VVP-M", mono_aot_Sce_Vsh_UpdateServiceWrapperjit_got) +STUB("o0DBQpFE13o", sceHttp2GetResponseContentLength) +STUB( + "o0EW9b-1l1Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE7reserveEi) +STUB("o0G0ttErXCI", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setInteger7ERKi) +STUB( + "o0Hto1-gTyQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("o0QIm80v7GU", _ZN3sce2np14JsonStringImpl3SetEPKc) +STUB( + "o0RaLQ1-OWY", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeader9terminateEv) +STUB( + "o0U-uvNTm2o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEC1EPKS8_) +STUB("o0WexTj82pU", _ZNSt14numeric_limitsIhE9is_signedE) +STUB( + "o0YOfFZ9aRE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE10setContextEPNS2_10LibContextE) +STUB("o0hiGv7t+Bo", _ZN7WebCore8Settings16setUsesPageCacheEb) +STUB("o0n5bcVYtN0", WKPreferencesSetTabsToLinks) +STUB("o0npslBGMjA", _ZN7WebCore9HTMLNames11charoffAttrE) +STUB("o0onROt6sAU", WKContextSetLocalStorageDirectory) +STUB("o0qLNFGzBgw", WKPreferencesSetTiledScrollingIndicatorVisible) +STUB("o0y3LLtKpG0", _ZNK7WebCore10ScrollView16contentsToWindowERKNS_7IntRectE) +STUB("o11J529VaAE", sceSystemGestureResetPrimitiveTouchRecognizer) +STUB( + "o16occEFteM", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("o1B4dkvesMc", _FXp_mulx) +STUB("o1BJoFZNBYo", WKBundleNodeHandleCopyDocumentFrame) +STUB("o1DaSnxyWFA", unum_formatDecimal_67) +STUB( + "o1DqVOa3aRY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEED2Ev) +STUB( + "o1Edt4OMRcw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "o1G08-hE8vc", + _ZN9Inspector20DOMBackendDispatcher24getEventListenersForNodeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("o1HEMpGlu2o", mono_dllmap_insert) +STUB("o1LtNnWXDl4", _ZN3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead13unsetTeamNameEv) +STUB("o1QgA6xae78", rgctx_fetch_trampoline_rgctx_73) +STUB("o1QiuGlWP2Q", ucol_setAttribute_59) +STUB("o1RpZgl1RPc", + _ZN3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallback8setimpIdEPKc) +STUB("o1Tw6r1096E", _ZN3WTF10ParkingLot11unparkCountEPKvj) +STUB("o1WZhqSSUcI", png_read_rows) +STUB("o1azI8TGjbc", _ZN3sce2np10NpOnlineId13GetNpOnlineIdERKNS0_4UserEP13SceNpOnlineId) +STUB("o1e5MPZDnMo", uset_set_67) +STUB("o1ljr23bBHM", + _ZN3sce2Np9CppWebApi13InGameCatalog2V514ContainerMedia8fromJsonERKNS_4Json5ValueE) +STUB( + "o1mhEGMS9DU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEE7add_refEv) +STUB( + "o1p95azBlQI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEppEi) +STUB( + "o1pt-TmHxhk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEE7add_refEv) +STUB("o1qlZJqrvmI", _ZNSt10filesystem6_LstatEPKcPNS_5permsE) +STUB("o1r-Wu9pji0", mono_debug_lookup_method) +STUB("o1r9YJZRP+Y", WKBundlePageSetResourceLoadClient) +STUB( + "o1s02Rqyr1A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEC2EPS8_) +STUB("o1vIEHeb6tw", sceFontStringGetWritingForm) +STUB("o1wQdJ-8Wzg", _ZN3WTF10StringView16GraphemeClusters8IteratorC1ERKS0_j) +STUB("o1wcfUo4E3Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEEC2EPS5_PNS2_10LibContextE) +STUB( + "o2-ttAFkbDg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEEcvbEv) +STUB( + "o21SaMIKufk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("o252tIwiufQ", _ZN7WebCore14JSWebAnimation15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "o26ycLX9PNo", + _ZN7WebCore11HistoryItem16setDocumentStateERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("o27+xO5NBZ8", _ZN6Dinkum7threads17_Throw_lock_errorEv) +STUB("o27qlxiacL8", sceVideoCoreMediaSourceSetTimestampOffset) +STUB( + "o2ATvp3cEYc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEC1Ev) +STUB( + "o2DMwHmP6+8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEmmEv) +STUB("o2DgdcKDyq8", _ZN3sce7Toolkit2NP2V27NpUtils12Notification15UserStateChangeD2Ev) +STUB("o2GNvd413oc", + _ZN3sce2Np9CppWebApi7Matches2V120RequestTeamStatistic23getTeamMemberStatisticsEv) +STUB( + "o2LIYvk0H-A", + _ZNK3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallback13isInitializedEv) +STUB( + "o2LdV6PhfhU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("o2PhQ4mUZuE", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11UserProfile10NpProfilesEED1Ev) +STUB("o2V2cFHwAXw", _ZN3JSC25JSInternalPromiseDeferred6rejectEPNS_9ExecStateEPNS_9ExceptionE) +STUB("o2Z-He35x8w", _ZNK3WTF9BitVector4dumpERNS_11PrintStreamE) +STUB("o2fPZBklfHg", WKPageGoBack) +STUB("o2gWHl5I3xA", uloc_acceptLanguage_67) +STUB("o2vvd84nLZU", monoeg_g_utf8_validate) +STUB("o2waU9UJw9E", mspace_free) +STUB( + "o2wvKS3NWso", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEEC2ERKSA_) +STUB("o2zD9745YeE", _ZN7WebCore16DocumentTimeline22animationsAreSuspendedEv) +STUB( + "o3+3sXIBWSc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("o3+RWnHViSg", sceAvPlayerGetVideoData) +STUB("o3-5cvYoBF0", _ZN4Manx3Ssl10SslContextD1Ev) +STUB( + "o34cne4Sze8", + _ZN9Inspector25DatabaseBackendDispatcher6createERNS_17BackendDispatcherEPNS_32DatabaseBackendDispatcherHandlerE) +STUB( + "o34sed4lc6M", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("o35I9yFo0sA", HMAC_Init_ex) +STUB( + "o3A3Yi5DzKk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEEC1ERSA_) +STUB( + "o3AYF6CLdI0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("o3BXFNgV8O0", + _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_14XMLHttpRequestE) +STUB( + "o3EnGARk+uk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEEaSERKSA_) +STUB("o3HwthGY03c", ucol_swapInverseUCA_67) +STUB( + "o3OzXlmPi8Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "o3PRCsQ48Uc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEEC2ERKSA_) +STUB("o3QWhMp98nA", sceAppInstUtilGetPatchInstallStatus) +STUB("o3SdGbKfEHc", _ZNK7WebCore18PlatformTimeRanges7nearestERKN3WTF9MediaTimeE) +STUB("o3Vk4PDllJc", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForReadC1EPNS1_6Common10LibContextE) +STUB("o3bxF-l3DoQ", JSObjectMakeArray) +STUB("o3d7Er1GKvg", mono_aot_Sce_Vsh_Webbrowser_XdbWrapperjit_code_start) +STUB( + "o3p8xVM2Kpw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEED2Ev) +STUB("o3tYKx8oBBA", CommerceDialogInit) +STUB("o3uIiUYOWwo", Java_java_lang_UNIXProcess_waitForProcessExit) +STUB( + "o3vjdn4d+-o", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("o429xYSQUUg", + _ZNK7WebCore10PluginData26supportsWebVisibleMimeTypeERKN3WTF6StringENS0_18AllowedPluginTypesE) +STUB( + "o42ewIL7QgI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEED1Ev) +STUB( + "o4A4-S+hzzs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEptEv) +STUB( + "o4BYhklH9QE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEixEm) +STUB( + "o4CrxoovV1U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEE11get_deleterEv) +STUB("o4DiZqXId90", _ZTSSt10moneypunctIcLb1EE) +STUB( + "o4J+PrJY8+o", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser19unsetplatformFilterEv) +STUB("o4NI2wpFhbI", sceKernelIccSetDownloadMode) +STUB("o4OLQQqqA90", sceAudioOutSetConnections) +STUB( + "o4SZzcbGnRw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEeqERKS9_) +STUB( + "o4fO6qTniyY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "o4gpj9FGjis", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("o4ilFAxoolI", utrie2_enum) +STUB("o4iqIIK4SZQ", _ZN7WebCore15HTMLFormElement9setMethodERKN3WTF6StringE) +STUB( + "o4jC9BSrupw", + _ZZSt9MakefacetISt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEESt8_LocinfoERT_T0_E3buf) +STUB("o4kUYkJG61w", sceBackupRestoreUtilInitialize) +STUB("o4kt51-uO48", _ZTVSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE) +STUB( + "o4luMDW9Msc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEEaSERSA_) +STUB("o4lwmIgu36Q", _ZNK3sce2Np9CppWebApi13InGameCatalog2V55Error10getMessageEv) +STUB("o4mEQJGoptI", _ZN3sce7Toolkit2NP2V210Tournament7Request8GetEventD1Ev) +STUB( + "o4pE6jpvzXk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEC1EPKS8_) +STUB( + "o4qr0d1WQps", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "o4qtwaucN+Y", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi18createGameSessionsEiRKNS4_29ParameterToCreateGameSessionsERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_28PostGameSessionsResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB( + "o4sF8XT4J74", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEC1EPS8_) +STUB( + "o4sy-zZTmmg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("o4wtvMgBpDU", _ZN3sce7Toolkit2NP2V24Core11RequestBaseC1ENS3_11ServiceTypeENS3_12FunctionTypeE) +STUB( + "o56hM0yKrUk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE10setContextEPNS2_10LibContextE) +STUB("o5Ef29GKn3Q", Java_java_net_NetworkInterface_getByInetAddress0) +STUB("o5F+bBj5XVQ", _ZN12video_parser5vpcom24RtcConvertUtcToLocalTimeEP10SceRtcTickS2_) +STUB("o5HryppIGR0", WKPreferencesGetNeedsSiteSpecificQuirks) +STUB( + "o5IM8c6yeTg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEC1EPKS8_) +STUB( + "o5KZBmYt-5M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE8pushBackERKS8_) +STUB( + "o5OC3oP7iHE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEplEm) +STUB("o5VwYgTgLtU", _ZN3WTF10StringImpl17utf8ForCharactersEPKhj) +STUB("o5ZNfuML+b8", EVP_aes_256_cfb8) +STUB( + "o5bmtnegWfM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEmmEv) +STUB("o5bwR+jJ3O8", _ZN3sce2Np9CppWebApi7Matches2V14Task11getSubtasksEv) +STUB( + "o5dAl3Uwmic", + _ZN9Inspector26LayerTreeBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("o5dFu+5lyYU", _ZNK7WebCore9FrameView20clientToDocumentRectENS_9FloatRectE) +STUB( + "o5dJq7tzAD4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEE11release_refEv) +STUB( + "o5e1Nm8e79E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEC2Ev) +STUB("o5fP48+3Egs", _ZN3sce2Np9CppWebApi6Common6StringD2Ev) +STUB( + "o5jCpLPJlWw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEEC2EPS8_PNS2_10LibContextE) +STUB("o5jl0a7Kq-0", _ZN3sce2Np9CppWebApi6Common6VectorIfE3endEv) +STUB("o5qQozz5NCI", mono_image_get_assembly) +STUB("o5z9VIc1MWQ", _ZN7WebCore16BlobRegistryImplC1Ev) +STUB( + "o60DwsRxwEg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEdeEv) +STUB( + "o61VrIggaUo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "o64rfTh46g8", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce19ServiceEntitlementsEE19setCustomReturnCodeEi) +STUB("o65F+Yukk7g", _ZNK3sce2Np9CppWebApi7Matches2V14Task13subtasksIsSetEv) +STUB("o67gODLFpls", sceAmprCommandBufferWriteKernelEventQueueOnCompletion) +STUB( + "o67sxeYbNZ4", + _ZNK7WebCore35CrossOriginPreflightResultCacheItem24allowsCrossOriginHeadersERKNS_13HTTPHeaderMapERN3WTF6StringE) +STUB("o69RpYO-Mu0", scePthreadCondSignalto) +STUB( + "o6AdtWGctXQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEEC1ERSA_) +STUB( + "o6CLshGHFwM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEneERKS9_) +STUB( + "o6F34WHGYX8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("o6F5J53WhHA", utrace_getLevel_67) +STUB("o6J+Gcx336w", _ZN7WebCore26HTMLTextFormControlElement12setRangeTextERKN3WTF6StringE) +STUB("o6MY-h+6hBs", _ZN7CoreIPC10ConnectionD1Ev) +STUB("o6Q0tawLPug", UCNV_FROM_U_CALLBACK_SUBSTITUTE_67) +STUB("o6RX0md55xw", WKPreferencesGetVideoPlaybackRequiresUserGesture) +STUB("o6Tm3oSusgI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEC1ERS7_) +STUB( + "o6VF2m9haOA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEC1EPKS8_) +STUB("o6WQR9AfmXw", mono_string_to_utf32) +STUB("o6Wdj79OU1w", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEEC1Ev) +STUB("o6XRxyR7Qv4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEC1ERKS7_) +STUB("o6ZgXfFdWXQ", sceJpegEncQueryMemorySize) +STUB( + "o6kFQQ6TGg4", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "o6pW2SF3mHY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEdeEv) +STUB("o6qcdlVBjWA", monoeg_g_ptr_array_remove) +STUB("o6vP4l5UqKk", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V510AnnotationEEppEi) +STUB( + "o6x51YIQ21Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEdeEv) +STUB("o6xkaXxMbxg", __sanitizer_unaligned_load16) +STUB("o7+WXe4WadE", sceHttp2SetCookieMaxNumPerDomain) +STUB( + "o70Vh0wYLMQ", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeaders15setCacheControlERKNS1_6Common6StringE) +STUB("o73Zfuck9I8", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEEixEm) +STUB("o787qsGwSJs", _ZN3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse13setNextOffsetERKi) +STUB( + "o7JgJsODI1I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("o7O4z3jwKzo", sceKernelAioPollRequests) +STUB("o7OQzFuXJ28", sceDepth2SetCommand) +STUB( + "o7QMV6Hd50U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE21intrusive_ptr_add_refEPS9_) +STUB("o7Qs2v9Zezk", _ZN3JSC11IsoSubspaceC1EN3WTF7CStringERNS_4HeapEPNS_12HeapCellTypeEmh) +STUB("o7Rj82lRZ98", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfilesD1Ev) +STUB( + "o7aGPnw8ChU", + _ZN3sce2Np9CppWebApi12Leaderboards2V130RecordScoreResponseBodyFactory7destroyEPNS3_23RecordScoreResponseBodyE) +STUB("o7btxEpLl-0", sceAvSettingSetAudioOutModeAny) +STUB( + "o7gZlOosZjk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEE11get_deleterEv) +STUB("o7grRhiGHYI", sceNpPartyGetStateAsUser) +STUB( + "o7k3m9OHdPA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEC1EPKS8_) +STUB( + "o7qknNbBqxg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEEC1EPS6_PNS2_10LibContextE) +STUB("o7r+wKZNjw0", _ZN15AbstractStorage14TwitterService4StopEv) +STUB("o7uKGbtAGs0", _ZNK7WebCore21HTMLFrameOwnerElement13contentWindowEv) +STUB( + "o7venHYK+Qc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEC1EPS8_) +STUB("o827vW9+hR8", mono_aot_System_IO_Compressionplt) +STUB("o83x+Wjbp6k", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlotC1Ev) +STUB("o85fJHjKLDQ", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V342PsnWebError_error_validationConstraintInfo6getKeyEv) +STUB( + "o877M8uYBgc", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("o89JdV1fU2s", rgctx_fetch_trampoline_rgctx_63_p) +STUB("o8Es+aQYa2Q", _ZN4IPMI4impl10ClientImplC1Ev) +STUB("o8KR18ZdywU", _ZN3sce7Toolkit2NP2V212NetworkUtils12Notification14NetStateChangeD2Ev) +STUB( + "o8Ka4+TzyKQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE10setContextEPNS2_10LibContextE) +STUB( + "o8LqnwugGUI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEixEm) +STUB("o8PUxPppffo", YGNodeStyleGetBorder) +STUB( + "o8U2qlkiPeU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB( + "o8e-sH1eU5s", + _ZN3sce7Toolkit2NP2V27Session22getReceivedInvitationsERKNS3_7Request22GetReceivedInvitationsEPNS2_4Core8ResponseINS3_11InvitationsEEE) +STUB( + "o8ePkB0yQ1g", + _ZN3JSC12profiledCallEPNS_9ExecStateENS_15ProfilingReasonENS_7JSValueENS_8CallTypeERKNS_8CallDataES3_RKNS_7ArgListE) +STUB("o8gTS8Zd4lU", _ZN7WebCore11CSSPageRule15setSelectorTextERKN3WTF6StringE) +STUB("o8pWi0ojHHw", mono_aot_System_Corejit_got) +STUB("o8pd4juNbgc", pthread_attr_setaffinity_np) +STUB("o8qKkphzJr0", sceNpManagerIntIsSubAccountByUserId) +STUB("o8qr9kaDEVw", _ZN3sce7Toolkit2NP2V28Commerce18ServiceEntitlementC2Ev) +STUB( + "o8rbozmGtxg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEC2EPNS2_10LibContextE) +STUB("o8tkaLlCbKI", utext_openUChars_67) +STUB("o8uz5K-EbR0", _ZN3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer11setJoinFlagERKb) +STUB("o8vLMU+1kDQ", __sanitizer_dump_coverage) +STUB("o9+yMOok2Zs", utext_openUChars) +STUB("o91g3OpaySs", _ZN9Inspector15RemoteInspector19receivedDataMessageEjPKc) +STUB( + "o93AT9Dsgvg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEE11get_deleterEv) +STUB("o9KCMytXpOo", ucpmap_getRange) +STUB( + "o9MLtiH1Cz4", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEEiRNS2_10LibContextEPT_m) +STUB("o9NlGwT45X8", _ZN3JSC9JSPromise6rejectEPNS_14JSGlobalObjectENS_7JSValueE) +STUB("o9RD998mN8M", _ZN15AbstractStorage14MemfileContent12readExternalESt10shared_ptrINS_7ContentEE) +STUB("o9X6YNkg0G4", OCSP_check_validity) +STUB("o9XhocnFPC8", + _ZN3sce2Np9CppWebApi14SessionManager2V115LocalizedStringC2EPNS1_6Common10LibContextE) +STUB( + "o9bUlKWpBUw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("o9eWRkSL+M4", sceAvPlayerInitEx) +STUB( + "o9fHf1EB3ko", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEixEm) +STUB("o9gi888JOSI", ucal_getKeywordValuesForLocale_67) +STUB("o9hlqKNXyww", _ZNK7WebCore4Node21isRootEditableElementEv) +STUB( + "o9iFitUbeHQ", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo22hasxPsnAtomicOperationEv) +STUB("o9kZLZp-3cE", _ZThn16_N9Inspector22InspectorDebuggerAgent21breakpointActionSoundEi) +STUB("o9nW24FZd9s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEEC1Ev) +STUB("o9on6vm3xLw", _ZNK7WebCore17HTMLAnchorElement4hrefEv) +STUB( + "o9wOTsz8Jjg", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB("o9zsDdoLZoI", utext_next32_67) +STUB("oA+4jY1XJpw", _ZN3sce7Toolkit2NP20CategoryBrowseParamsC2Ev) +STUB( + "oA-yaTaKptY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEptEv) +STUB( + "oA0Z1ubEV1Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEcvbEv) +STUB("oA3NFlm8VFA", + _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile11setRelationERKNS3_8RelationE) +STUB("oA7TAoIYksg", WKBundleBackForwardListItemCopyTitle) +STUB("oA8Vfh+jiDM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging16GameDataMessagesEED1Ev) +STUB( + "oA95E+KIFCo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEdeEv) +STUB("oADSs-FgU7A", + _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse13setResultTypeERKNS3_10ResultTypeE) +STUB("oAF2eBhe0Zw", _ZN3JSC8Debugger10isAttachedEPNS_14JSGlobalObjectE) +STUB("oAK+4v9hR6M", _ZN2sh11GetVaryingsEPv) +STUB("oANwuYVz+JQ", uscript_setRunText_67) +STUB("oATDq0dVMkY", _ZN12video_parser13cVideoPathEtsC1EPKc) +STUB( + "oAdUFoTn9jA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEE5resetEPS9_) +STUB( + "oAeJ3aafJSE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE7popBackEv) +STUB("oAgyce+qHgQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEC1ERS7_) +STUB("oAidKrxuUv0", _ZTVSt12domain_error) +STUB("oAlR5z2iiCA", wcrtomb_s) +STUB( + "oAlmN+Cj7wM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE8capacityEv) +STUB("oAqbL8ads+I", + _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi21ParameterToLeaveMatch20getleaveMatchRequestEv) +STUB( + "oAtXYctBqhI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEppEv) +STUB( + "oAuFlME7yNI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEC1Ev) +STUB("oAylnoYJyHw", sceDeci4hDrfpClosedir_fuse) +STUB("oB730zwoz0s", sceRemoteplayImeSetCaret) +STUB( + "oBCodoDHF2I", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEneERKSA_) +STUB( + "oBNAxguoQaA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEaSERKS9_) +STUB("oBPtPb7GaMg", _ZN3sce3Xml4Attr9terminateEv) +STUB( + "oBWW9MjEOJk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEC2EPNS2_10LibContextE) +STUB( + "oBcQL9+IY8U", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayerD1Ev) +STUB("oBhiTEQfdoM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth7IdTokenEE3getEv) +STUB("oBjlHsifNmk", scePktMgrSetDeciHeader) +STUB("oBkzZHHordA", JVM_ConstantPoolGetSize) +STUB("oBmw4xrmfKs", sceImeDialogAbort) +STUB("oBoDKRJ+3gI", mono_aot_Sce_Vsh_Np_Asmplt) +STUB( + "oBoSvjlL6kE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEE7add_refEv) +STUB( + "oBptHtqBolc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE5eraseENS2_8IteratorIS9_EERSC_) +STUB("oBr313PppNE", sendto) +STUB( + "oBrGvuc2Pz0", + _ZN7WebCore15ArchiveResource6createEON3WTF6RefPtrINS_12SharedBufferENS1_13DumbPtrTraitsIS3_EEEERKNS1_3URLERKNS1_6StringESD_SD_RKNS_16ResourceResponseE) +STUB("oBtqyuYeliA", _ZN3sce7Toolkit2NP28AdditionalSessionInfoRequestC1Ev) +STUB("oBuH3zFWYIg", sceSystemGestureResetTouchRecognizer) +STUB("oBvkeL9i7eo", _ZNK3WTF9MediaTime9timeScaleEv) +STUB("oC4Q1Sl+BQg", _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_17ParameterBaseImpl6KeySetEEptEv) +STUB("oCClOrSfSG8", mono_aot_Sce_Vsh_Np_Webapijit_code_start) +STUB("oCDj+HBOEGU", _ZNK7WebCore10RenderText16linesBoundingBoxEv) +STUB("oCFdaQHIyqE", _ZN7WebCore11DisplayList20EndTransparencyLayerD2Ev) +STUB("oCFy2rRoLiM", + _ZN3JSC9Structure25nonPropertyTransitionSlowERNS_2VMEPS0_NS_21NonPropertyTransitionE) +STUB("oCH4efUlxZ0", __atomic_exchange_n) +STUB("oCIMmU9nczQ", _ZN7WebCore15FocusController15setFocusedFrameEPNS_5FrameE) +STUB("oCIyIqy5I-o", rgctx_fetch_trampoline_rgctx_109) +STUB( + "oCQZKB6Mr4I", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("oCQffGuiNoU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEEaSERS5_) +STUB("oCS+9Zd8fhw", jinit_marker_writer) +STUB("oCTpafdlN+I", _ZN7WebCore21NetworkStorageSessionC1EN3PAL9SessionIDE) +STUB( + "oCZN-YmckhA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEE3getEv) +STUB("oCZVSOCOp7E", _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error12messageIsSetEv) +STUB("oCaql820uPM", _ZN7WebCore6Region5Shape9translateERKNS_7IntSizeE) +STUB( + "oCcGUsVd2OU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEED2Ev) +STUB( + "oCdgiiymSP8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEixEm) +STUB("oCeHcIJ0CPA", utext_getNativeIndex) +STUB( + "oChVQCK-iZE", + _ZN9Inspector21PageBackendDispatcher10getCookiesElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("oCjGECZIlng", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEE7get_refEv) +STUB( + "oCm6z+oTGaQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEdeEv) +STUB( + "oCp+t810yY0", + _ZN3sce2Np9CppWebApi11UserProfile2V120BasicPresenceFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_13BasicPresenceEEE) +STUB("oCrllVH4OE0", _ZN7WebCore32serializationForRenderTreeAsTextERKNS_11LinearSRGBAIfEE) +STUB("oCx3mVNvqzU", _ZN3sce2np3ipc17ServiceIpmiClient11WaitRequestEiij) +STUB( + "oCxyNnP68Ew", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("oCycLmGVp8I", _ZN3JSC18GCActivityCallback12nextFireTimeEv) +STUB( + "oD1W68hViiQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEC1Ev) +STUB("oD32WcwlsMU", + Java_com_sony_bdjstack_javax_media_controls_SoundManager_alloc__Ljava_io_InputStream_2IZ) +STUB("oDHZ8wTdrgc", _ZN3NTF17URLRequestMessage14setSchedulerIdEi) +STUB( + "oDJn-2zsVn0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEeqERKS9_) +STUB("oDMQ96CSgKE", _ZN3sce2np12NpTitleTokenC2ERKS1_) +STUB("oDNgQLmL8Kk", _ZN7WebCore9InlineBox14selectionStateEv) +STUB("oDR18NZmOgg", _ZNK7WebCore25DropShadowFilterOperation11movesPixelsEv) +STUB("oDS5GU57PQU", mono_field_get_object) +STUB("oDVaBU-8ZOo", png_set_user_limits) +STUB("oDoV9tyHTbA", vswprintf_s) +STUB("oDtGxrzLXMU", _ZNKSt7codecvtIwc9_MbstatetE10do_unshiftERS0_PcS3_RS3_) +STUB( + "oDv-YwlAFqY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEEC2Ev) +STUB( + "oDwlZFMzRLQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEC1EPS8_) +STUB( + "oE04I9uK3YU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEmmEv) +STUB("oE1TjI-Oh8M", _ZNK7WebCore5Color6getHSVERdS1_S1_) +STUB("oE32AEOBudE", _ZN3sce7Toolkit2NP2V24Core7Request23ServerPushNotificationsD2Ev) +STUB( + "oE3QoGZFAx8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("oE4a8uIaXxI", sceAvSettingDebugAddCallbacks) +STUB( + "oE656HzSu3M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE8pushBackERKS8_) +STUB("oE6fu1aQDXc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEE5resetEPS5_) +STUB( + "oE6mQezJobo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE8capacityEv) +STUB("oE7gCvN6Ygs", _ZN7WebCore11DisplayList20EndTransparencyLayerD0Ev) +STUB( + "oEAh2dtvK2M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEEC1ERKS9_) +STUB( + "oEHZ5ia8+KY", + _ZN3sce2Np9CppWebApi7Matches2V122RequestMatchStatistics17setTeamStatisticsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_20RequestTeamStatisticEEEEE) +STUB("oEJqGsNtFIw", sceSystemServiceRequestReboot) +STUB("oELQIPJWb68", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEE11get_deleterEv) +STUB("oENf1QxsRcU", _ZN7WebCore13CharacterData10appendDataERKN3WTF6StringE) +STUB( + "oEOkP-uCn9U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEEaSERSA_) +STUB("oEPy5Op-Cws", _ZN3JSC7Symbols23setBucketKeyPrivateNameE) +STUB( + "oEV5eAHnMsY", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_28ActivityFeedSharedVideoStoryENS1_15AppSTLAllocatorIS5_EEEEC2Ev) +STUB("oEi6vM-3E2c", sceCameraGetAutoExposureGain) +STUB( + "oEmzFS7up34", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEEC1Ev) +STUB("oEuPssSYskA", sceHttpDbgShowMemoryPoolStat) +STUB( + "oEvv3Ye3EMI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("oF-nUtAzA6o", _ZN3JSC7JSProxy21deletePropertyByIndexEPNS_6JSCellEPNS_14JSGlobalObjectEj) +STUB( + "oF0IAeV9FL0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEppEi) +STUB("oF3QrlvftiA", WKPreferencesGetTextAutosizingUsesIdempotentMode) +STUB( + "oF6V1WzoW5w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("oF9eBV9eolI", _ZN3sce7Toolkit2NP2V28Presence8PresenceD1Ev) +STUB( + "oFB-Cyu8JKg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEE11release_refEv) +STUB("oFBSUGIKTvs", _ZN7WebCore17PageConsoleClient6unmuteEv) +STUB("oFGpGaiVT3g", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia6VideosEE3getEv) +STUB("oFJhz3tvzBw", mono_field_static_get_value) +STUB("oFJmz+J6ehw", _ZN3sce2Np9CppWebApi14IdentityMapper2V311PsnWebErrorD2Ev) +STUB("oFOKsxQgCGQ", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE6resizeEj) +STUB( + "oFSUCkv9ciI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEEC2ERSA_) +STUB( + "oFTIRC9feu0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEE11release_refEv) +STUB( + "oFUwwE-Rujo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEEC2ERKSA_) +STUB( + "oFWxuOa5k5k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEEC2Ev) +STUB( + "oFXyweW+jo8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("oFYwVmfFFTs", mono_aot_Sce_Vsh_VideoEdit_Wrapperjit_got) +STUB( + "oFaH3DUlSZE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEEC2Ev) +STUB("oFd-2c+zUEY", + _ZN7CoreIPC18MessageReceiverMap15dispatchMessageEPNS_10ConnectionERNS_14MessageDecoderE) +STUB("oFilKysqorM", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product5setIdEPKc) +STUB( + "oFke1O9xEtk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE21intrusive_ptr_add_refEPS9_) +STUB("oFltTuV0f7Y", cairo_set_line_cap) +STUB("oFon+A5v1z8", sceDeviceServiceGetGeneration) +STUB( + "oFuWt79JSnw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEE3getEv) +STUB("oFx2mmWanvg", _ZN15AbstractStorage13YoutubeFolderD0Ev) +STUB( + "oFzBCrDBxeg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEEC2ERKSA_) +STUB( + "oG0AcqKqMpo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE8capacityEv) +STUB("oG2cES6rDn0", _ZN3sce7Toolkit2NP15AppSTLAllocatorIcEC2ERKS3_) +STUB("oG7dPt1Hoyk", _ZN7WebCore13JSDOMRectList14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB("oGASj6Qjq7M", _ZN3sce2np10NpOnlineIdC1ERK13SceNpOnlineId) +STUB("oGEBX0eXGFs", sceNetConfigUpInterface) +STUB("oGIcxlUabSA", sceNpTusTryAndSetVariableAVUser) +STUB("oGKC1n1oPjc", _ZN3JSC4Heap12addFinalizerEPNS_6JSCellEN3WTF8FunctionIFvS2_EEE) +STUB("oGLuenH2o+o", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEEptEv) +STUB( + "oGSO9WCjnTM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC2ERKSA_) +STUB( + "oGWDfWjYAJc", + _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product7setSkusERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_3SkuEEEEE) +STUB( + "oGWHAEXEWts", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEED1Ev) +STUB( + "oGcyqur2+uw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEmmEv) +STUB("oGeoBMv8kCM", mono_aot_Sce_Vsh_EventAppunbox_trampolines_end) +STUB("oGfelMkBk7g", uplrules_selectWithFormat_67) +STUB( + "oGhJ9Jsqxsg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEppEv) +STUB( + "oGhrTX5VtNo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEE11release_refEv) +STUB( + "oGieJv+RBrk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE5beginEv) +STUB("oGktEmYhCDc", _ZN3sce2np14JsonObjectImpl9SetParentEPNS0_9JsonValueE) +STUB("oGlYuEguJWk", WKKeyValueStorageManagerGetKeyValueStorageOrigins) +STUB( + "oGzMcf2F4uY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("oH65Sr0RPpQ", mono_aot_System_ComponentModel_Compositionunbox_trampolines_end) +STUB("oH6EMqs-jUM", sceCesUcsProfileInitEucJpX0208) +STUB("oH6y5G5y-vM", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V18RelationEEmmEv) +STUB("oH7iY6hqark", _ZN3JSC12DateInstance6s_infoE) +STUB("oH8aBmLU+fc", _ZN3sce4Json6Object5clearEv) +STUB("oHCade-0qQ0", sceUsbdFillBulkTransfer) +STUB( + "oHD23xCVCr8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("oHEi49f4lxk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEC1ERKS7_) +STUB("oHFYzEYKvhw", _ZNK9Inspector15ScriptArguments7isEqualERKS0_) +STUB("oHRl7a+zdMU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEEC1ERS7_) +STUB("oHRrt1cfbBI", sceUserServiceSetNpLanguageCode2) +STUB( + "oHTIIxYZEQk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("oHWS+SBRWLc", + _ZN3WTF28normalizeLineEndingsToNativeEONS_6VectorIhLm0ENS_15CrashOnOverflowELm16EEE) +STUB( + "oHcsHlycFE8", + _ZN7WebCore8Document16createExpressionERKN3WTF6StringEONS1_6RefPtrINS_15XPathNSResolverENS1_13DumbPtrTraitsIS6_EEEE) +STUB("oHfmDziL9kY", _ZN7WebCore11CachedImage16imageForRendererEPKNS_12RenderObjectE) +STUB("oHgLjlYtwmc", monoeg_try_realloc) +STUB( + "oHj6nH+MraI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEEC1ERKSA_) +STUB( + "oHp+8dTp4qg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEplEm) +STUB( + "oHphYz+xcGc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEC1Ev) +STUB("oHtPCg88C+0", _ZN12video_parser10cVideoPath14CreatePathNameEPKcS2_PPc) +STUB( + "oHzwCnHBONE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEE5resetEPS9_) +STUB("oI3VVko3QC0", _ZN4Manx8X509cinfD1Ev) +STUB("oI503kl0uvg", _ZN3sce7Toolkit2NP2V27Session13SessionMemberC1Ev) +STUB("oI6BGHcSUK4", WKProtectionSpaceGetCertificateInfo) +STUB( + "oIAblY6YUTQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB( + "oIDAM1jkfLA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEEdeEv) +STUB( + "oIH+5K1Yq5s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEE11release_refEv) +STUB( + "oIHIsxW7Vlg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEC2Ev) +STUB( + "oIMFd-JcdOw", + _ZN3WTF15base64URLDecodeERKNS_6VectorIcLm0ENS_15CrashOnOverflowELm16ENS_10FastMallocEEENS_33SignedOrUnsignedCharVectorAdapterE) +STUB("oINHTqU1qvY", sceShellCoreUtilGetDeviceIndexBehavior) +STUB( + "oIR7L2c6df8", + _ZN15AbstractStorage14StorageManager18GetStorageNameListEPSt6vectorISbIcSt11char_traitsIcENS_8StlAllocIcEEESaIS6_EE) +STUB("oIRFTjoILbg", scePthreadSetschedparam) +STUB( + "oIThwaxGZZQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEEaSERSA_) +STUB("oIXuuzKAH2I", mono_aot_System_Runtime_Extensionsjit_code_start) +STUB("oIaQ6WAUXnE", _ZN3JSC7JSValue21putToPrimitiveByIndexEPNS_9ExecStateEjS0_b) +STUB( + "oIbkY+AqpWY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "oIdeWwOMz7M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEEC1ERKSA_) +STUB("oIhptz7DiRY", sceMusicCoreServerPlayControl) +STUB("oIiqGCvBNrI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEEeqERKS7_) +STUB("oIrASpTTrW8", _ZN7WebCorelsERN3WTF10TextStreamERKNS_12FilterEffectE) +STUB( + "oIsETgbbfzA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEED1Ev) +STUB("oIsFI2cGbqA", _ZN7WebCore18PlatformTimeRangesdaEPv) +STUB("oJ+sgVai4po", g_unsetenv) +STUB( + "oJ00nilvIa8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "oJ3ro0vHBUo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE5emptyEv) +STUB("oJBlwPQRkf0", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V15Error11sourceIsSetEv) +STUB( + "oJFArBvezlU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE10setContextEPNS2_10LibContextE) +STUB( + "oJFVt60P5XI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB("oJJp8jUwSHU", monoeg_g_hash_table_lookup) +STUB("oJKdCkJ8OOE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEEC1EPKS6_) +STUB("oJLMFTs6xpI", _ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody16unsetRulesetNameEv) +STUB("oJLiqgpVjck", ures_getKeywordValues) +STUB( + "oJNvONZXiY0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE5beginEv) +STUB("oJSXws+cIv8", _ZN15AbstractStorage6FolderC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("oJV+0NA8pss", _ZNK3WTF9MediaTimeneERKS0_) +STUB("oJVWu+MGUr4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE5beginEv) +STUB("oJW8zvzVTBA", _ZN3sce7Toolkit2NP2V210Tournament24OfficialBroadCastDetailsD2Ev) +STUB( + "oJf-wnqMIoY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEeqERKS9_) +STUB("oJgSao+DsUs", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEEaSERKS7_) +STUB("oJi1QeSHjrE", _ZNK9MmsMp4Box7cmpTypeEmj) +STUB("oJm1lThZ3iQ", FT_Done_GlyphSlot) +STUB("oJsJLfEJBPI", mono_aot_Sce_Vsh_VideoPlayerunbox_trampoline_addresses) +STUB("oJuf3c6iXZA", _ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody8getLimitEv) +STUB( + "oJv2ffqIXBU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE21intrusive_ptr_sub_refEPS9_) +STUB("oJzfZxZchX4", sceUserServiceGetAgeVerified) +STUB( + "oK09+asDfyk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEC1EPS8_) +STUB("oK0X7DQEu7U", _ZN3sce2np14JsonObjectImplD2Ev) +STUB( + "oK2dhjhxSCo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEneERKS9_) +STUB("oK4eHsYJfOU", mono_btls_x509_verify_param_set_depth) +STUB( + "oK5cLyGrFs8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEC2Ev) +STUB( + "oK5sseZUZPc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("oK6C1fys3dU", _Wctob) +STUB( + "oKDe87-9SxY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEeqERKS9_) +STUB("oKFHBtwR7GM", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats22unsetConnectionQualityEv) +STUB("oKG-LjaBzzs", FTA_Add_Module_t1cid) +STUB( + "oKGZsJT5HW8", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEEiRNS2_10LibContextEPT_m) +STUB( + "oKK-dJ5aLhg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE8copyFromERKS9_) +STUB( + "oKKLFo6HqhQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "oKPClbRzbws", + _ZN9Inspector23WorkerBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("oKQ6hxxj6kE", _ZN7WebCore9HTMLNames12readonlyAttrE) +STUB( + "oKUxihYzEeg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEC1EPKS8_) +STUB( + "oKX--zZk3cg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("oKX6k-xbFjQ", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Publisher7getIconEv) +STUB("oKaMoZGAnXY", delegate_virtual_invoke_imt_m_15_p) +STUB("oKamLgrFO+k", _ZNK7WebCore13HTTPHeaderMap8containsENS_14HTTPHeaderNameE) +STUB( + "oKbrZekemTI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "oKcnwXUXoEA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEppEi) +STUB( + "oKlVQaOf+Qo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEED1Ev) +STUB( + "oKoj7dOfFWY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEC1EPNS2_10LibContextE) +STUB( + "oKvK7ZkoJP4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("oKz+Da7cSXg", _ZN7WebCore21DiagnosticLoggingKeys28succeededLessThan2SecondsKeyEv) +STUB( + "oKzeWZEkfB8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("oL4hGI1PMpw", sceGnmGetGpuBlockStatus) +STUB( + "oL6ZrTdmavc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEEC2Ev) +STUB("oL7kpGk9+2Q", + _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicket13isInitializedEv) +STUB("oL88cTwcKYk", _ZN3sce2np10JsonNumberC2EP14SceNpAllocator) +STUB( + "oL9OPqNCZqE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("oLFi+HuZ7hY", ntohs) +STUB("oLG05JXXEJc", + _ZN3JSC21gregorianDateTimeToMSERNS_2VMERKN3WTF17GregorianDateTimeEdNS2_8TimeTypeE) +STUB("oLKfOjMTnuU", _ZN3sce7Toolkit2NP2V211UserProfile10NpProfilesD2Ev) +STUB( + "oLQm4g2Wzmk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEdeEv) +STUB( + "oLQnU6wqlGs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEC1EPS6_PNS2_10LibContextE) +STUB("oLTNauw+zcc", _ZN3sce2Np9CppWebApi12Leaderboards2V14UserD2Ev) +STUB( + "oLUsp2hIKVU", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_4Page20CookieSameSitePolicyEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB("oLYkibiHqRA", sceNpPartyTerminate) +STUB("oLZX-RyaUNs", _ZN3sce7Toolkit2NP2V27Session11SessionData8deepCopyERKS4_) +STUB( + "oLhByllsilI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("oLjPqUKhzes", pthread_attr_getinheritsched) +STUB( + "oLlc6LrZIK0", + _ZN7WebCore14DOMCacheEngine16copyResponseBodyERKN3WTF7VariantIJDnNS1_3RefINS_8FormDataENS1_13DumbPtrTraitsIS4_EEEENS3_INS_12SharedBufferENS5_IS8_EEEEEEE) +STUB("oLn6pn4vv3g", + _ZN3sce2Np9CppWebApi14SessionManager2V118MatchmakingForReadC2EPNS1_6Common10LibContextE) +STUB("oLpLfV2Ov9A", _ZN3sce2np14CalloutContext4InitEPKNS1_5ParamE) +STUB("oLqlHAaPVws", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEEC1Ev) +STUB( + "oLsiWteQaL0", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser19unsetplatformFilterEv) +STUB("oLuiFClSVsc", + _ZN3sce2Np9CppWebApi7Matches2V119RequestMatchResultsC2EPNS1_6Common10LibContextE) +STUB("oM+1gshdixg", mono_arch_get_nullified_class_init_trampoline) +STUB("oM+8JNTrd24", FcMatrixMultiply) +STUB("oM+XCzVG3oM", sceFontSelectLibraryFt) +STUB("oM-4SAw4I0w", + _ZN3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayer14setCustomData1EPKvm) +STUB("oM0zMNCfXKM", FTA_Support_Modules) +STUB("oM18OCrs60Y", delegate_virtual_invoke_20) +STUB("oM1W-49YawQ", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V115LastUpdatedUserC1EPNS1_6Common10LibContextE) +STUB( + "oM5HbTrkRco", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEeqERKS9_) +STUB("oM5qJ4oZVZU", sceDebugGetSystemStatusCount) +STUB("oM5w6Fb4TWM", SSL_ASYNC_recvMessage2) +STUB( + "oM99B19+FHI", + _ZN7WebCore24DocumentMarkerController10markersForEPNS_4NodeEN3WTF9OptionSetINS_14DocumentMarker10MarkerTypeEEE) +STUB( + "oMEm9ihtCbY", + _ZN9Inspector21PageBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "oMF2+JE339k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEC1Ev) +STUB("oMH4MSzQApk", il2cpp_field_get_value_object) +STUB( + "oMHMC7sRQTo", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser9hasfieldsEv) +STUB("oMIpoxggR-M", mono_config_set_server_mode) +STUB( + "oMLdE-6AWVQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("oMQqGkDVkZ4", _ZN7WebCore16HTMLMediaElement8fastSeekERKN3WTF9MediaTimeE) +STUB("oMT+05u-qiM", _ZN3JSC15ArrayBufferView13setNeuterableEb) +STUB("oMTEf3sNcfc", _Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm14TcsPerfCounterE) +STUB( + "oMW-CUXNEtg", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12string4IsSetEv) +STUB("oMXeTA3Ax6M", _ZN15AbstractStorage18DailymotionContentD1Ev) +STUB("oMXfiCxgjsI", _ZTVN7WebCore19BlurFilterOperationE) +STUB("oMYvEkQV8Fc", _ZN3sce7Toolkit2NP2V212ActivityFeed4Feed8deepCopyERKS4_) +STUB( + "oMf9RjlfK5g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEED2Ev) +STUB( + "oMhkeieUMSE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEED1Ev) +STUB("oMoSQyh4QD8", _Atcount0) +STUB( + "oMuCZrGdHfI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEppEv) +STUB("oMzql+izBYA", mono_get_exception_missing_method) +STUB( + "oN9oPp9vw2s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("oNAnn5cOxfs", _ZTISt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE) +STUB("oNCDI-j9iTI", sceNpUniversalDataSystemIntCreateContext) +STUB( + "oNHtwMj4T+c", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEdeEv) +STUB("oNJNApmHV+M", CERT_GetCertTime) +STUB( + "oNKxZ4R0YBw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("oNOQn3knW6s", sceVideoOutDeleteVblankEvent) +STUB("oNPCLmCUw84", unum_countAvailable_59) +STUB("oNPNdfNJ7G4", il2cpp_set_find_plugin_callback) +STUB("oNRAB0Zs2+0", _ZTISt15underflow_error) +STUB( + "oNTX60qkwiM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("oNYFnbUQ4eE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEC2ERS7_) +STUB( + "oNYM-O1cGcA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC2ERSA_) +STUB("oNcnwBj2ePU", mono_get_exception_bad_image_format2) +STUB("oNdsLXxf6Zo", WKResourceCacheManagerGetTypeID) +STUB( + "oNeSE-zFrG4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEdeEv) +STUB("oNgcYv7sg2E", _ZNK7WebCore20PasteboardCustomData18createSharedBufferEv) +STUB("oNgkhqfe4Xw", sceVencCoreSetInvalidFrame) +STUB( + "oNlfvuuzXeo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE21intrusive_ptr_add_refEPS9_) +STUB("oNlmXbLDtPo", mono_mprotect) +STUB( + "oNlqffpgjg0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE13getLibContextEv) +STUB("oNo8XBS4mt0", _Z32sceGpuDebuggerRegisterShaderCodePKN3sce3Gnm16EsStageRegistersEjPKc) +STUB("oNqSobbGC80", _ZN3sce2np12StreamReader8ReadDataEPNS0_6HandleEPvmPm) +STUB("oNqXU4Ok3w0", _ZN7WebCore8SVGNames9scaleAttrE) +STUB("oNzjWuOH9Bg", _ZN7WebCore10JSLocation11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("oO0pz-Whogw", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_12PresenceInfoEE3getEv) +STUB( + "oO2XMfoE69o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEppEv) +STUB("oO2eVtNQUgM", _ZN7WebCore11CachedFrame21setHasInsecureContentENS_18HasInsecureContentE) +STUB("oO33Uex4Ui0", sceFontGlyphGetAttribute) +STUB( + "oO3lEOB8fik", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEE5resetEPS9_) +STUB("oOB1oaFQTyw", _ZN8meta_gen13JpegRetriever21TRProcessTiffIfdEntryEi) +STUB( + "oOFS4x5k9og", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEE5resetEPS9_) +STUB("oOHDiUvPJTE", mono_aot_System_Numericsunbox_trampolines_end) +STUB("oOHWO-p1xyg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEE3getEv) +STUB("oOLdJrSCQfM", _ZN9Inspector21RemoteInspectorServer5startEPKct) +STUB("oOUV-EwUiJc", _ZN7Nicosia16SceneIntegration6ClientD2Ev) +STUB("oOV9b4PZGq8", __asan_loadN) +STUB( + "oOZ5bmEeO3c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("oOckhjRxPps", curl_formfree) +STUB("oOfRehqy3J4", + _ZN7WebCore21UserContentController16removeUserScriptERNS_15DOMWrapperWorldERKNS_3URLE) +STUB( + "oOgpQRp9XgA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE8capacityEv) +STUB("oOigDJBsN2c", glDeleteProgram) +STUB("oOncfd-d5e0", _ZN3JSC7Symbols18entriesPrivateNameE) +STUB("oOq3dgLo2N8", sceFsGetDeviceSectorsize) +STUB( + "oOv6gd1mj3w", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEplEm) +STUB("oOvKbv-48RQ", ucol_swapInverseUCA) +STUB("oOwl47ouxoM", sceImeVshClearPreedit) +STUB( + "oP-bYhFmDfQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEC1ERS7_) +STUB("oP2ILJnZAkg", _ZN7WebCore20SVGPathStringBuilderD0Ev) +STUB( + "oP6dNrwH2m0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("oP8eWQKmCVQ", SSL_getInstanceFromSocket) +STUB( + "oP9IdlNHXCQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEEC1ERKSA_) +STUB("oPFspNqbSFQ", _ZN3sce7Toolkit2NP2V212ActivityFeed7StoryId12STORY_ID_LENE) +STUB("oPLghhAWgMM", sceAudioOutGetSimulatedHandleStatusInfo2) +STUB("oPO9U42YpgI", sceNpGetGamePresenceStatusA) +STUB("oPPxyIEzD1E", _ZN7WebCore9HTMLNames16aria_checkedAttrE) +STUB( + "oPZS-JCIobo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE5emptyEv) +STUB( + "oPaZ1di3FZ0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("oPhjCYX1Oeg", sceDepthSetCalibrationData) +STUB("oPhtjySuHa8", sceHmd2Close) +STUB("oPkCHryPArQ", WKBundleRemoveAllUserContent) +STUB( + "oPlQaAQqf0k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEC2Ev) +STUB("oPmP-m-k5A0", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSessionD2Ev) +STUB("oPnneTu2bro", _ZNK7WebCore25DropShadowFilterOperationeqERKNS_15FilterOperationE) +STUB("oPrBCCvX5h8", _ZN7WebCore3URLC2ENS_18ParsedURLStringTagERKN3WTF6StringE) +STUB("oPvKj88+T90", _ZN7WebCore9HTMLNames13topmarginAttrE) +STUB("oPzukphzAys", _ZN15AbstractStorage13TwitterFolder6RemoveEb) +STUB("oQDS9nX05Qg", _ZNSt16invalid_argumentD1Ev) +STUB( + "oQNl0LIw7JE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEC2Ev) +STUB("oQOlGmWOjvg", _ZThn136_NK7WebCore16HTMLMediaElement11currentTimeEv) +STUB( + "oQPq9l5EuI0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEppEi) +STUB( + "oQQKMQ5zB4A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEC2EPNS2_10LibContextE) +STUB( + "oQU3jN6YyEA", + _ZNK3sce2Np9CppWebApi14SessionManager2V130PostPlayerSessionsResponseBody6toJsonERNS_4Json5ValueEb) +STUB("oQW3dozHW0k", uprv_tzset_67) +STUB("oQcEW6MgrGw", + _ZN7WebCore19MediaResourceLoaderC2ERNS_8DocumentERNS_16HTMLMediaElementERKN3WTF6StringE) +STUB( + "oQcQ4wakzjY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEC2EPS6_PNS2_10LibContextE) +STUB( + "oQgtvmSNEoo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEppEv) +STUB("oQlBniDJCpo", mono_image_strerror) +STUB("oQmR8kPK+sg", + _ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody18setCreatedDateTimeERK10SceRtcTick) +STUB( + "oQowm0PtyBU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEE7add_refEv) +STUB("oQpl5qCT014", _Unwind_GetGR) +STUB( + "oQpq-a-WRbg", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB( + "oQr3UBnqIt8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEEaSERKSA_) +STUB( + "oQrvxj3qQq8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE8pushBackERKS8_) +STUB("oQsg7vOSWx8", mono_debug_lookup_source_location) +STUB( + "oQyIU7j7hBo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEEC2ERS9_) +STUB("oQySEUfgXRA", sceSaveDataSetupSaveDataMemory2) +STUB("oQyUSZkRlCI", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_18GameCustomDataItemEED1Ev) +STUB("oR1hI6e7AGE", _ZN7WebCore16BlobRegistryImplC2ERKS0_) +STUB("oRBFflIrCg0", sceAudioOutSetPortStatuses) +STUB( + "oRG+58ke2u8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEEaSERKSC_) +STUB( + "oRIHZgt8mCY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEmmEv) +STUB("oRJZnXxok-M", sceAudioOutSysConfigureOutputMode) +STUB("oRMSMUoDGu8", sceIduUtilGetInstalledAppWithOffset) +STUB( + "oRQl-rxS58k", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEdeEv) +STUB("oRR5HoDuB7Y", WKContextMenuItemGetUserData) +STUB("oRTCl8kx8Rw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEC1Ev) +STUB("oRVUM8iVKZg", utrans_close_67) +STUB("oRXI2Mzcgkw", sceSlimglServerStartClient) +STUB("oRclA0Y2+x4", _ZN7WebCore20CanvasActivityRecord27recordWrittenOrMeasuredTextERKN3WTF6StringE) +STUB("oRgsgfJY3Mc", sceFiosFilenoToFH) +STUB( + "oRhd8Y7F6sU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEED2Ev) +STUB( + "oRiKVtbDDgo", + _ZN9Inspector15ScriptCallStack6createERN3WTF6VectorINS_15ScriptCallFrameELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("oRiSQD27XFQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEC2ERS7_) +STUB("oRm77epBqGU", _ZN7WebCore9HTMLNames20aria_placeholderAttrE) +STUB("oRn3Ruc+dgI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEcvbEv) +STUB( + "oRpToe+PTaE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE5beginEv) +STUB("oRpiXk9-Vhc", _ZN3sce7Toolkit2NP2V27Session12SessionImageD1Ev) +STUB("oS+tOQc+xHw", EVP_cleanup) +STUB( + "oS4GMO4DBXI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEdeEv) +STUB( + "oS9nDprxR8A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "oSHjLuPWYWQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEptEv) +STUB("oSHosIf4jpk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEC2ERS7_) +STUB("oSOlHR1+AKw", _ZN3JSC9HandleSet12writeBarrierEPNS_7JSValueERKS1_) +STUB("oSR7UP2qKeQ", WKPreferencesGetIgnoreViewportScalingConstraints) +STUB( + "oSWc-p2PSZc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEdeEv) +STUB( + "oSYe2eRRhEY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE10setContextEPNS2_10LibContextE) +STUB("oSeqX90U4IE", _ZN7WebCore23TextureMapperFPSCounterC1Ev) +STUB( + "oSfDGAhTNLs", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10getString6Ev) +STUB("oSiLqiuDGvs", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchDetail10setmatchIdEPKc) +STUB( + "oSjjW0ScnxU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEaSERKS9_) +STUB( + "oSnYtaV0YUs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE10setContextEPNS2_10LibContextE) +STUB("oSqLOsWstRs", _ZN3sce7Toolkit2NP2V29Messaging24GameDataMessageThumbnailaSERKS4_) +STUB("oSrjUDnp5Ak", _ZN7WebCore8SVGNames15feMorphologyTagE) +STUB("oSs8rlJpbYo", _sinl_impl) +STUB("oStzdgMLp4A", fuse_opt_free_args) +STUB("oSv3omVJrzI", _ZN7WebCore22CSSAnimationController17suspendAnimationsEv) +STUB( + "oSydi5syK9k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEED1Ev) +STUB("oT-j4DqJHY8", scePthreadBarrierattrDestroy) +STUB("oT0mxPLVvvQ", _ZN7WebCore10FileHandleC1ERKN3WTF6StringENS1_14FileSystemImpl12FileOpenModeE) +STUB("oT6+HkTy-ss", _ZN3sce7Toolkit2NP2V28Commerce8SkuLabelD1Ev) +STUB("oT68xenFqSY", sceFiosDHClose) +STUB("oT8K-Q3mxqo", ucnv_isFixedWidth_67) +STUB("oT8md3hcNLI", _ZN9Inspector21InjectedScriptManager25injectedScriptForObjectIdERKN3WTF6StringE) +STUB("oTAnMyqo6bI", BIO_f_ssl) +STUB("oTBVBlVW9PU", sceAudiodReportMasteringStates) +STUB( + "oTCb1wDCXN8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEC2ERS7_) +STUB("oTESn1ZH7PE", _ZN3sce2np8JsonNullD2Ev) +STUB("oTF5wSfGwMc", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container10labelIsSetEv) +STUB("oTGmwGHklf0", WKWebsiteDataStoreConfigurationSetResourceLoadStatisticsDirectory) +STUB( + "oTPtz2LYbqI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE7reserveEi) +STUB("oTSfpmbIxGs", _ZN9Inspector17ScriptDebugServer23getActionsForBreakpointEm) +STUB( + "oTWFUx06jZw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEEC2Ev) +STUB("oTYPKExI0dc", _ZNSt12system_errorC1EiRKSt14error_categoryPKc) +STUB("oTaaYntc8RM", _ZNK15AbstractStorage12LocalService14GetServiceTypeEv) +STUB("oTayTlKeUBY", MD5_Update) +STUB("oThn-THyKOc", sceShellCoreUtilGetTelemetryToken) +STUB( + "oTiOztIV0vI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEmmEv) +STUB("oTirsxQpqj0", _ZN3sce2Np9CppWebApi6Common9terminateERNS2_10LibContextE) +STUB( + "oTqNcLpCD50", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEC2EPS8_) +STUB( + "oTv83hXKOFE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEEeqERKS7_) +STUB("oTwaXklH5dQ", uprv_decNumberRotate_67) +STUB("oTyPrWowA1k", _Foprep.init) +STUB( + "oU0MO3Wh6Yc", + _ZN8meta_gen14ImageRetriever11SetDataOnDBEP19PromoteInnerContextP16StorageInterfaceP17CancelInterface_t) +STUB("oU4h4oBe2l0", sceKernelIsAllowedToSelectDvdRegion) +STUB( + "oU5N-bahhGY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEixEm) +STUB( + "oU5cldV1bzQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEE7add_refEv) +STUB("oU8k7jyr2v4", _ZN3sce7Toolkit2NP8Commerce9Interface8joinPlusERNS1_19JoinPlusInputParamsEb) +STUB("oUDmYkdmEJg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ResponseCooperativeResultEEmmEv) +STUB("oUGLY8urs7w", _ZN12video_parser5vpcom6StringC2EPKw) +STUB("oULMh4JVC4o", _ZN3sce2np18MemoryStreamReaderD1Ev) +STUB("oUOLOwkfnx0", _ZN3sce2Np9CppWebApi7Matches2V119RequestMatchResults22unsetCompetitiveResultEv) +STUB( + "oUPCg9AouM4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEC2Ev) +STUB("oUQJ+FJgjIE", ucache_compareKeys_67) +STUB( + "oUVxxj+IA8Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEC1EPS8_) +STUB("oUY-ExJPK4M", mono_aot_Sce_Vsh_Accessor_Dbjit_code_start) +STUB("oUha0S-Ij9Q", sceVoiceSetMuteFlagAll) +STUB( + "oUiQ+A5Razs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "oUjgPUMQcao", + _ZN3WTF26normalizeLineEndingsToCRLFEONS_6VectorIhLm0ENS_15CrashOnOverflowELm16ENS_10FastMallocEEE) +STUB( + "oUp1HsRwpxs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEC1Ev) +STUB("oUqVMJjXr6g", _ZN23sceMetadataReaderWriter13ParserManager8finalizeEv) +STUB("oUuaMQsTA5Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEppEv) +STUB("oUv-x2Y4-Z8", _ZN3sce7Toolkit2NP9Utilities6FutureIbE3getEv) +STUB( + "oUys1yqqSTs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEC2Ev) +STUB("oUzEzr72vsw", + _ZN7WebCore37WidgetHierarchyUpdatesSuspensionScope35s_widgetHierarchyUpdateSuspendCountE) +STUB("oV9GAdJ23Gw", sceVoiceConnectIPortToOPort) +STUB("oVB19wLdwg0", _ZN7WebCore5FrameD0Ev) +STUB("oVBgNjhMWCo", _ZN3WTF11Persistence7EncoderlsEd) +STUB( + "oVFpb0stwQg", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle15setPerFranchiseERKNS1_6Common12IntrusivePtrINS3_19PlayStylePropertiesEEE) +STUB( + "oVHuzFz9y+8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEE5resetEPS6_) +STUB( + "oVPDOtNL2kQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("oVWR0mlQDzc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEC2Ev) +STUB( + "oVXRya88wfA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEeqERKS9_) +STUB("oVXl3SATvaI", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V114ResultsVersionEEaSERKS7_) +STUB("oVZ+-KgZJGo", scePthreadSetDefaultstacksize) +STUB("oVZ6spoeeN0", _ZN3sce2npgtERK10SceRtcTickRKNS0_4TimeE) +STUB("oVa4LEw33vI", _ZN3sce2Np9CppWebApi14SessionManager2V15Error11unsetReasonEv) +STUB( + "oVcVu-qIg7o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEC1EPS8_) +STUB("oVeQqZBxDtQ", _ZN7WebCore11MathMLNames9munderTagE) +STUB("oVffc-CnA-s", rgctx_fetch_trampoline_mrgctx_79_p) +STUB( + "oVfyc0gtVuw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEC2EPS8_) +STUB("oVgyCJCrGcY", sceUpsrvResumePausedTask) +STUB("oVi7mC1jj-Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEC2Ev) +STUB("oVkZ8W8-Q8A", strtok) +STUB( + "oVl4Ug4v7nA", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("oVmmDG47CRU", ubidi_setReorderingMode_67) +STUB("oVsBjmw2Rl4", sceNpGriefReportCreateRequest) +STUB( + "oW0JyXhSzCs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEptEv) +STUB("oW1z1q5vi-0", fuse_fs_readdir) +STUB("oW6a6GUAFr0", WKWebsiteDataStoreStatisticsClearInMemoryAndPersistentStore) +STUB("oW8ztVC6uu4", mono_assembly_load_reference) +STUB( + "oWGX5pegYls", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEC2Ev) +STUB("oWJpFOZ03Bg", JVM_NewInstanceFromConstructor) +STUB("oWM0QMqiVOo", _ZN7WebCore8SVGNames11onbeginAttrE) +STUB("oWSGw7PNZy0", mono_aot_System_Numericsjit_got) +STUB("oWX083a+4YM", mono_allocator_memdup) +STUB("oWhbxCJiBMM", scePigletGetInteger) +STUB("oWrhZTKS55M", ulocimp_getName) +STUB("oWxr+q7HyAU", YGNodeGetHasNewLayout) +STUB("oWyZFLUVjcI", sceAgcSdmaCopyWindowBC) +STUB("oXARzvLAiyc", sceUserServiceGetParentalGameAgeLevel) +STUB("oXB46A10ZR0", mono_aot_ReactNative_Modules_Vsh_Gct_Telemetry2method_addresses) +STUB("oXD4BLN8wg4", _ZN3sce7Toolkit2NP2V210Tournament4TeamaSERKS4_) +STUB("oXGiUIGK0sw", _ZN3sce2Np9CppWebApi13InGameCatalog2V514ContainerMedia9getImagesEv) +STUB( + "oXLrNSGuy08", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemPropertiesaSERS5_) +STUB( + "oXMEmVm66c0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEC2EPS6_PNS2_10LibContextE) +STUB("oXOyqxO8dX8", sceNpBandwidthTestUploadOnlyInitStart) +STUB( + "oXTBrmMLR2o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE21intrusive_ptr_add_refEPS9_) +STUB("oXVAQutr3Ns", sceUserServiceGetTraditionalChineseInputType) +STUB("oXVgB59UiKM", uenum_next) +STUB( + "oXXh8Ppq6JA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEC1Ev) +STUB( + "oXbF2t4tz1o", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB("oXbddL+50eM", sceCesEucCnToUtf32be) +STUB("oXedF7Z24pk", ureldatefmt_open_67) +STUB("oXfhrGdn3mA", _ZN3sce7Toolkit2NP2V27Session7Request32DisplayReceivedInvitationsDialogD1Ev) +STUB("oXgaqGVnW5o", erf) +STUB("oXgkWQRuOzU", _ZN7WebCore18documentTypeStringERKNS_8DocumentE) +STUB("oXjVieH6ZGQ", sceNpScoreGetRankingByAccountIdPcIdForCrossSave) +STUB("oXkQEVitkCs", scePigletAllocateSystemMemoryEx) +STUB("oXqbsifspg8", _ZN7WebCore8Document34webkitWillExitFullScreenForElementEPNS_7ElementE) +STUB("oXseKdtZASE", ipv6_available) +STUB( + "oXzJtk2Mk8U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("oY+G5rtDZT8", mono_aot_Sce_Vsh_Np_ServiceCheckerjit_code_end) +STUB("oY7J7D5ipxk", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18GameCustomDataItemEE10deallocateEPS3_m) +STUB("oY9+jelulX0", _ZNK7WebCore18PlatformTimeRanges8durationEj) +STUB( + "oYAF2L0814Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE8pushBackERKS8_) +STUB("oYAJlYuBnaw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEEC2ERKS7_) +STUB("oYHyLfnZOYE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEE3getEv) +STUB("oYJAITu1ga8", _ZN9Inspector25BrowserFrontendDispatchernaEm) +STUB("oYM+YzfCm2Y", sceGnmDrawIndexOffset) +STUB("oYMRgkQHoJM", _ZNSt13basic_filebufIcSt11char_traitsIcEE8overflowEi) +STUB("oYPkfm5PMJQ", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification15BlocklistUpdateEED1Ev) +STUB("oYQC9Quj6No", sceLncUtilGetAppLaunchedUser) +STUB( + "oYR1k6MeNKg", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB("oYUTamHByZI", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessionsC1Ev) +STUB("oYVQ8ijlHg0", _ZN3sce7Toolkit2NP2V28Matching7Request10CreateRoom23MAX_SESSION_INDEX_VALUEE) +STUB("oYYVBHqQ0z0", OBJ_txt2obj) +STUB( + "oYZRvWHKp-c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE8copyFromERKS9_) +STUB("oYZoqxL-hH0", + _ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetailC2EPNS1_6Common10LibContextE) +STUB("oYaVmW-rXBE", _ZN7WebCore12TextIteratorC2EPKNS_5RangeEt) +STUB("oYcDkClOA8U", + _ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends10unsetlimitEv) +STUB("oYgLigRT70Q", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V115NatConnectivityD2Ev) +STUB("oYipfXRE1HQ", _ZNK7WebCore21RenderLayerCompositor15rootRenderLayerEv) +STUB("oYkJlMK51SA", sceImeKeyboardOpenInternal) +STUB("oYlGUIQcSNU", mono_threads_assert_gc_unsafe_region) +STUB("oYliMCqNYQg", _ZTISt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE) +STUB( + "oYmFxBSLhSU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEEC2ERKSA_) +STUB("oYpubo9Rb8s", WKPreferencesSetDefaultTextEncodingName) +STUB( + "oYpzi3DjJPE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEC1EPS8_) +STUB("oYr9L7WSCww", sceKernelGetBootReqNotifyCount) +STUB("oYs-uCXSRFM", ucnv_usesFallback) +STUB( + "oYtxg078NnU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEeqERKS9_) +STUB( + "oYuhA9Ogqao", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("oZ5khLR19g4", + _ZN3sce2Np9CppWebApi14SessionManager2V118LeaderWithOnlineIdC1EPNS1_6Common10LibContextE) +STUB("oZ8DMeTU-50", sceNpTusGetMultiUserVariableForCrossSaveAsync) +STUB( + "oZD2mn9Wxu8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEE7get_refEv) +STUB( + "oZHTnnKCI+Y", + _ZN3JSC14JSRunLoopTimer23addTimerSetNotificationEN3WTF6RefPtrINS1_10SharedTaskIFvvEEENS1_13DumbPtrTraitsIS5_EEEE) +STUB("oZLnhi8kH8Y", GetServiceTypeFromTitleId) +STUB( + "oZNIhd1trXw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("oZOpvAmaZgY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEEC1EPS6_) +STUB("oZP-pSXo42k", _ZN12video_parser5vpcom20GetServiceProviderIdEPKcPy) +STUB( + "oZPsvAn4EgY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEneERKS9_) +STUB("oZRfoAHjO0I", WKPreferencesGetScrollingPerformanceLoggingEnabled) +STUB( + "oZSdradkU-g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE10setContextEPNS2_10LibContextE) +STUB("oZUCfP9N1kE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEE5resetEPS6_) +STUB("oZZwcwzugfI", sceVorbisDecPcmSeekLap) +STUB("oZbyJhtKFAc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEE11get_deleterEv) +STUB("oZf2EW1xS70", sceFsCreatePfsSaveDataImage) +STUB("oZf55ZVEu8k", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE5beginEv) +STUB( + "oZmPyRPNiGU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE7popBackEv) +STUB("oZx-SXiRWNE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEmmEv) +STUB("oZxm7WvZF7U", + _ZNK3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectator17pushContextsIsSetEv) +STUB("oZyb9ktuCpA", sceNpMutexUnlock) +STUB("oa0ZDa7v5us", mono_aot_Sce_PlayStation_PUImethod_addresses) +STUB("oa5iD4P4G8g", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V111LeaveReasonEEaSERKS7_) +STUB("oa8shQdXY2A", EVP_PKEY_copy_parameters) +STUB( + "oaEL61s4184", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEC2EPKS8_) +STUB("oaJ1BpN2FQk", sceFontTextSourceInit) +STUB( + "oaM8c7VAqjU", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditions13isInitializedEv) +STUB("oaN4u80lcv4", + _ZN3sce2Np9CppWebApi14ConnectAccount2V216PartnerTokensApi26ParameterToGetPartnerTokenD2Ev) +STUB( + "oaPVgmehY-4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEptEv) +STUB("oaSKGgwTWG0", _ZN3sce2np7RingBuf14CheckinForReadEm) +STUB("oaXu4TS84o0", _ZN3sce7Toolkit2NP2V210Tournament4TeamC1ERKS4_) +STUB("oaZWpS3Ospw", + _ZN7WebCore19JSDOMMatrixReadOnly11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB( + "oah-UwAm7SY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEEC1Ev) +STUB("oajJqVTlu-M", _ZN7WebCore13GraphicsLayer17removeAllChildrenEv) +STUB("oakL15-mBtc", sceFontFtSupportOpenType) +STUB( + "oaneQeJimqg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEED1Ev) +STUB("oapTVZgi-ws", mono_type_is_struct) +STUB("oaqISo2f6rk", glUniformMatrix2fv) +STUB("oasW8mQPUvQ", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIdEC2EPKd) +STUB("oawu0IrFD60", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfilesaSERS5_) +STUB("oayHBGaYS+I", rgctx_fetch_trampoline_rgctx_102) +STUB("ob+qCc9FQK4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V114SearchOperatorEEneERKS7_) +STUB("ob1QmOjHhjs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEED1Ev) +STUB("ob5xAW4ln-0", strchr) +STUB( + "ob7cwdtEPJY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEneERKS9_) +STUB("obCLy8k+BB4", + _ZN7WebCore19JSAnimationTimeline14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB("obFpLJZWo0Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V115SearchAttributeEEC1Ev) +STUB( + "obFxi9YIG6k", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("obG6QKZMh30", mono_privileges_start_init) +STUB( + "obHdP57ABw8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEneERKS9_) +STUB( + "obLXZ1KiDEI", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12unsetString4Ev) +STUB( + "obMO1zrtkmA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEC2Ev) +STUB("obQpnx50kEk", sceSystemLogger2NativeQueueClientSetNativeQueueConfig) +STUB("obWv-QrE1Gw", sceDeci4hDrfpSend) +STUB("obXJpnjajeQ", nsnp_InitTrack) +STUB("obXlrN5+T6g", _ZN7WebCore16DOMGuardedObject14visitAggregateERN3JSC11SlotVisitorE) +STUB( + "obY3M21QZyQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("obZrVXCIJws", _ZN3sce7Toolkit2NP2V29Challenge10ChallengesC1ERKS4_) +STUB("obcvK+BABYY", __tsan_read4_pc) +STUB( + "obhqgRoKe40", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEiRNS2_10LibContextEPT_m) +STUB("obnSzeb-KXk", FT_Get_Char_Index) +STUB( + "obpwwLfR1Ew", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("obresavcww0", _ZN3sce2Np9CppWebApi13InGameCatalog2V59PublisherD1Ev) +STUB("obuxdTiwkF8", sceNetCtlGetInfo) +STUB( + "oc+NOdsMxe0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEC2EPKS8_) +STUB( + "oc+pxLeXwtY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEmmEi) +STUB("oc0Ji7a5MeE", JNU_ThrowNoSuchFieldException) +STUB( + "oc0NU6aDrdE", + _ZN3JSC9constructEPNS_9ExecStateENS_7JSValueENS_13ConstructTypeERKNS_13ConstructDataERKNS_7ArgListES2_) +STUB("oc5ZoXUmVm4", _ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error9setReasonEPKc) +STUB( + "oc6bAPq86GE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEmmEi) +STUB("oc6n6hdUrEM", _ZNK15AbstractStorage4Item12GetThumbnailEPSt10shared_ptrINS_7ContentEE) +STUB("oc8HXLVgc6E", _ZNK7WebCore18PlatformTimeRanges19maximumBufferedTimeEv) +STUB("oc98+zOImus", pathconf) +STUB( + "ocAbEkG4isc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE7releaseEv) +STUB("ocD3Wh0yT1E", _ZN3WTF10ParkingLot9unparkAllEPKv) +STUB("ocFN4P1KsWQ", ft_raster1_renderer_class) +STUB( + "ocGl4qqWuwc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("ocHtyBwHfys", sceWebBrowserDialogTerminate) +STUB("ocHw+wuy2eo", _ZN7WebCore11MediaPlayer8seekableEv) +STUB("ocIKEffh7po", _ZN7WebCore18PluginInfoProviderD1Ev) +STUB( + "ocSHzAdDioc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEED1Ev) +STUB( + "ocSYxEGRIko", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE5beginEv) +STUB( + "ocZDFBAgTKY", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser17hasnpServiceLabelEv) +STUB("ocg6JEGRtz0", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi27ParameterToLeaveGameSessionC1Ev) +STUB( + "ocjtBe4fWzU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEixEm) +STUB("ocljhNqBmBE", _ZN7WebCore9HTMLNames14imagesizesAttrE) +STUB( + "ocuAbaFMW8g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEaSERKS7_) +STUB("ocyIiJnJW24", __nedf2) +STUB( + "od0j-1fQSu8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("od0otGJ2Z3A", u_austrncpy) +STUB("od0pFsDoez0", sceNpAppLauncherInitialize) +STUB("od3QK3h4MEM", mono_mlist_prepend) +STUB("od3yXUJvLPY", sceLncUtilSystemReboot) +STUB("od5QCZhZSfw", sceHttp2GetAutoRedirect) +STUB("odADrumcRh8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEcvbEv) +STUB("odGqtpEAy5A", rgctx_fetch_trampoline_rgctx_14) +STUB("odLMd32iusc", mono_aot_Sce_Vsh_Gls_GlsSharedMediaViewjit_code_start) +STUB( + "odMXj9YzC0Y", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE8capacityEv) +STUB("odPHnVL-rFg", _FTgamma) +STUB( + "odQaamKIdIY", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEEiRNS2_10LibContextEPT_m) +STUB("odSR1DiNc1o", OBJ_obj2nid) +STUB( + "odV0-cpZTrM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE8capacityEv) +STUB("odaWQmWaj-8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEcvbEv) +STUB("odcf2QXShK4", _ZN7WebCore9HTMLNames15imagesrcsetAttrE) +STUB("odjOGg8harg", sceFiosDHReadSync) +STUB("odk8GtS4Buo", mono_event_get_object) +STUB( + "odl74SYsrEQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEED1Ev) +STUB( + "odlZUoqRyD4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEmmEi) +STUB("odlxNwyXfM8", WKPreferencesGetNewBlockInsideInlineModelEnabled) +STUB("odnpjvKHmK8", coil_netctrl_init) +STUB( + "odosqvk4m98", + _ZN9Inspector17ScriptDebugServer11handlePauseEPN3JSC14JSGlobalObjectENS1_8Debugger14ReasonForPauseE) +STUB( + "odrhqTVyCkI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEppEv) +STUB( + "odvzwg4c0is", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEptEv) +STUB( + "odw3JNA9yuc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB("odyn6PGg5LY", _ZNSt14numeric_limitsIdE14min_exponent10E) +STUB( + "oe0BhkaxF4M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("oe51pWaltmY", EC_KEY_up_ref) +STUB("oe8Pw-irfJw", mono_aot_Sce_Vsh_MorpheusUpdWrapperjit_code_start) +STUB("oe92cnJQ9HE", sceImeDialogInitInternal2) +STUB("oe9tS0VztYk", _ZNSt13runtime_errorD2Ev) +STUB("oeBlNAL8aoM", _ZN13MsvMetaEditor20checkCompatibleBrandEv) +STUB("oeCZSK8StuQ", scePerfTraceAmmStop) +STUB( + "oeDvZ4OMWA8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE7popBackEv) +STUB("oeDzjPWu-o8", _ZN7WebCore12ISOWebVTTCueC1EON3WTF9MediaTimeES3_ONS1_6StringES5_S5_S5_S5_) +STUB( + "oeEvVCcrxH8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEE5resetEPS8_) +STUB("oeFut-D7xJM", _ZN8meta_gen11MsvPromoter15freeAllKeyValueEP10KeyValue_ti) +STUB("oeI5GwWRS3U", scePlayReadyEnvelopeRead) +STUB("oeNtdmvV4II", sceVideoOutDriverAddEvent) +STUB( + "oeRuxwcdgdE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "oea1CPeBnB4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEEC1ERSA_) +STUB("oeb8Q84qU24", sceClPthreadCondDestroy) +STUB("oecoIWxTboc", _ZN3sce2Np9CppWebApi6Common6VectorIjEixEm) +STUB("oerBe6J-EMA", il2cpp_unhandled_exception) +STUB( + "oewW5Cp4vRY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEEdeEv) +STUB("oeyHRt5PP+Q", sceShellCoreUtilUnmountHddForRestore) +STUB("of6gh97dpGU", _ZNK7WebCore18PlatformTimeRanges4findERKN3WTF9MediaTimeE) +STUB("ofGsK+xoAaM", sceNetCtlApRpRegisterCallback) +STUB( + "ofJkNqNHJB8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEeqERKS9_) +STUB("ofMR3p9i+Pg", sceFsSetFileReservedTotal) +STUB("ofO4+TUnwIw", _ZNK7WebCore9DOMWindow27pendingUnloadEventListenersEv) +STUB( + "ofQa3L5ZXN0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEEcvbEv) +STUB( + "ofTDJcy-jYc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEC1Ev) +STUB("ofW2sJkl7gY", sceMoveSetCalibrationMode) +STUB("ofaNlI4jEM0", _ZNK3JSC4Yarr17RegularExpression9searchRevERKN3WTF6StringE) +STUB("ofavYMTE30E", JNU_ThrowByNameWithMessageAndLastError) +STUB("ofevXvqCTXA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEE11release_refEv) +STUB( + "offy-KkdphM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEED1Ev) +STUB("ofiCRgOQ0vY", mono_gc_deregister_root) +STUB( + "ofipKhA2RFg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEEC2ERKSA_) +STUB("ofkhJRiQua0", sceVideoOutSysConfigureOutput) +STUB("ofr9gWOxzxo", ucal_countAvailable_67) +STUB( + "ofrzYJWOAcY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEppEi) +STUB("og-YuBhoVII", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionFactory7destroyEPNS3_11GameSessionE) +STUB( + "og1GHtkevoU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE21intrusive_ptr_sub_refEPS9_) +STUB("og2pEincZCQ", _ZN12video_parser10cVideoPath11sExtentListE) +STUB( + "og5gnhi979o", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEeqERKS9_) +STUB("og5vEJWP-w0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEED1Ev) +STUB("og62zpJAjo4", _ZN3sce7Toolkit2NP2V28Commerce7Request25ConsumeServiceEntitlementC2Ev) +STUB("og6IDmhKqO4", _ZNK7WebCore18TextureMapperLayer9layerRectEv) +STUB( + "ogDhrTgiMiM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("ogFCy9EBtYo", _ZN9Inspector25NetworkFrontendDispatcher12dataReceivedERKN3WTF6StringEdii) +STUB("ogJB8Um44ZU", _ZN3JSC7Symbols23concatMemcpyPrivateNameE) +STUB( + "ogL1RBWyB+c", + _ZN3sce2Np9CppWebApi11Matchmaking2V127ListUserTicketsResponseBody10setTicketsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_10UserTicketEEEEE) +STUB("ogOi1AGEtYE", WKCookieManagerSetStorageAccessAPIEnabled) +STUB("ogOtxyBIEio", mono_bitset_find_first_unset) +STUB("ogPDBoLmCcA", mbrtoc16) +STUB("ogPGtnC3dqY", _ZN3JSC8Debugger23setPauseOnNextStatementEb) +STUB( + "ogQYyAL3KlA", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_17ActivityFeedStoryENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB( + "ogRNImffc0s", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE8capacityEv) +STUB( + "ogTbJTx00wg", + _ZN3JSC12StringObject25getOwnPropertySlotByIndexEPNS_8JSObjectEPNS_14JSGlobalObjectEjRNS_12PropertySlotE) +STUB( + "ogc2cNOobW8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB( + "ogfiG5hMNC8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEEC2ERS9_) +STUB("oggFDAoinzk", __tsan_atomic16_compare_exchange_weak) +STUB("oggz4E+E8Mc", _ZN3sce2Np9CppWebApi7Matches2V15ErrorD2Ev) +STUB("oghWcTl49m4", _ZN3sce2Np9CppWebApi12Leaderboards2V15Entry20setHighestSerialRankERKi) +STUB("ogi5ZolMUs4", _ZTVSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE) +STUB("ogjjVYnBJR8", WKClearMockMediaDevices) +STUB( + "oglmfb7zWsw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEC2Ev) +STUB( + "ogm6rdQuFAg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEppEv) +STUB("ogoZ154oVCk", _ZN3sce7Toolkit2NP2V27Ranking17SetGameDataResult8deepCopyERKS4_) +STUB( + "ogsAH5vPgv4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEmmEv) +STUB( + "ogugDtcrIZA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("ogzr9u410Es", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE7popBackEv) +STUB("oh1NN+Wq-2Y", _ZNK3JSC8Debugger10isSteppingEv) +STUB("oh2WU6fkK9Q", _ZN3sce2Np9CppWebApi13InGameCatalog2V520ContainerRatingCount8setScoreERKi) +STUB( + "oh4M7UNtmrw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEC1Ev) +STUB("oh4Vr4iOD2A", _ZN3sce7Toolkit2NP22ProductListInputParamsC1Ev) +STUB("oh68H-4hEAE", sceShellCoreUtilHideBlocksFromUser) +STUB("ohClFxhDjp0", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEE7add_refEv) +STUB( + "ohECoBXM0fg", + _ZN7WebCore30forwardForEachCallToBackingMapERNS_17JSDOMGlobalObjectERN3JSC9CallFrameERNS2_8JSObjectE) +STUB( + "ohH8P0UIiho", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEE21intrusive_ptr_sub_refEPS7_) +STUB("ohLMjo-2jVQ", last_good_addr) +STUB( + "ohUV2PfeiYw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEmmEi) +STUB( + "ohX3f5V37FA", + _ZN3sce2Np9CppWebApi14SessionManager2V130ResponsePlayerSessionSpectatorC1EPNS1_6Common10LibContextE) +STUB("ohaOf309CPU", _ZN4Manx11MediaPlayer4loadEPKcS2_S2_) +STUB("ohbd2DfOICM", Java_java_io_RandomAccessFile_open) +STUB("ohmjLoFjJ5Y", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationProperties10getHelpfulEv) +STUB("oi3kpQPqpMY", _ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1ERKSt8_Locinfom) +STUB("oi4FgE6NNWI", u_printf_67) +STUB("oiCG49pO4ZE", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_26ActivityFeedCondensedStoryEE8allocateEmPKv) +STUB("oiK6kLAtAIE", sceFiosResolveSync) +STUB("oiM5cVJFsgE", coil_netctrl_get_str) +STUB("oiOi7vgPfAY", sceAudioOut2EnableChat) +STUB("oiRP-fp3SN4", FT_Sfnt_Table_Info) +STUB("oiT0vgzmW0M", dlclose) +STUB("oiXYJL0uKjc", vzone_setRawOffset_67) +STUB( + "oiZzW+cyPGI", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi42ParameterWithBinaryRequestBodyToUploadData14getRequestBodyEv) +STUB("oib76F-12fk", sceKernelLseek) +STUB("oicZcfjulAs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEC1Ev) +STUB( + "oig6kSiabbw", + _ZThn24_N7WebCore14DocumentLoader22sendCSPViolationReportEONS_3URLEON3WTF3RefINS_8FormDataENS3_13DumbPtrTraitsIS5_EEEE) +STUB( + "oihHuBNKgUQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE21receiveResponseHeaderEv) +STUB("oilo1okASh0", YGNodeStyleSetMargin) +STUB( + "oimb6YRqF2Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEED1Ev) +STUB("oioCTYBcLFg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE4sizeEv) +STUB("oirBv8VDfaA", AsyncStorageGetAllKeysNative) +STUB("oirFwvQr1Yc", sceCesEucJpToUtf16le) +STUB("oiulDieFUb0", _ZN3JSC11VMInspector16isValidCodeBlockEPNS_9ExecStateEPNS_9CodeBlockE) +STUB("oj-nLrSCRao", _ZN7WebCore11MediaPlayer19networkStateChangedEv) +STUB( + "oj2RAQA++SE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEEC1EPS8_PNS2_10LibContextE) +STUB("ojA1dqecGw4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEED1Ev) +STUB("ojBk-UJxzWw", _ZThn16_N3sce2np10MemoryFileD0Ev) +STUB("ojBkmG7+CgE", sceAmprAmmCommandBufferMapWithGpuMaskId) +STUB("ojLjExhl-hE", u_memset) +STUB("ojMeXkwhnsI", + _ZN3sce3pss4core8graphics15DirectTexture2D15SetImagePointerEiiNS2_11PixelFormatEPv) +STUB( + "ojMxOv2h7qc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEmmEv) +STUB( + "ojOlG9PKTM8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEC1Ev) +STUB("ojRh5YSi1cs", _ZN3JSC11ProxyObjectC2ERNS_2VMEPNS_9StructureE) +STUB("ojW+VKl4Ehs", sceFontSelectGlyphsFt) +STUB( + "ojac7V4XpDU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB("ojbXRC0CmUo", cairo_scaled_font_text_to_glyphs) +STUB("ojc+hdwBaYw", _ZN7WebCore19JSAnimationTimeline15subspaceForImplERN3JSC2VME) +STUB("ojiIeTWOySU", Java_com_sony_gemstack_org_havi_ui_HBackgroundImageDecoder_load) +STUB( + "ojk+4ELb3DA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("ojkbYSTY3As", _ZN7WebCore15FontDescriptionC1Ev) +STUB("ojmvNKQZNUw", sceLncUtilGetGpuCrashFullDumpAppStatus) +STUB("ojnI4H1JJZw", __sanitizer_get_ownership) +STUB("ojqClMqGFwY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEEdeEv) +STUB( + "ojuU6VGqekw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEED2Ev) +STUB( + "ojy+Bvp1HD0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEE11get_deleterEv) +STUB( + "ok1ZMIauuhs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "ok2Lp8euSgs", + _ZN3sce2Np9CppWebApi14SessionManager2V159PostPlayerSessionsSessionIdMemberPlayersResponseBodyFactory7destroyEPNS3_52PostPlayerSessionsSessionIdMemberPlayersResponseBodyE) +STUB( + "ok6VTubgpes", + _ZN3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayer8fromJsonERKNS_4Json5ValueE) +STUB("ok8hDgnuEqM", uloc_toLegacyType_67) +STUB( + "okAxtWIxibY", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser10initializeEPNS1_6Common10LibContextEPKc) +STUB( + "okCLpYV1jMQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEixEm) +STUB( + "okIYvsWr6wg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE4sizeEv) +STUB("okX7IjW0QsI", sceNpUtilSerializeJid) +STUB("okXb7yylMR4", _ZN3sce2Np9CppWebApi6Common6VectorImEC2Ev) +STUB("oka3bEJ5NZM", uhash_deleteScriptSet_67) +STUB("okaqPaVSziI", mono_aot_Sce_Vsh_Np_AppInfoplt_end) +STUB("okb4emkAX00", _ZN7bmalloc29StaticPerProcessStorageTraitsINS_9ScavengerEE7Storage7s_mutexE) +STUB( + "okbwPOT7FM4", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getBoolean7Ev) +STUB( + "okf5UlY5-LU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB("okgIGdr5Iz0", scePlayGoDialogTerminate) +STUB( + "okgIjeFQ8bY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEEcvbEv) +STUB( + "okn8zKWxZWE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("oknoPl8KurA", _ZN12video_parser5vpcom5CloseE) +STUB( + "okq4wr-PG-Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEEC2ERKS9_) +STUB( + "oktwc7QLIeU", + _ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionPlayerFactory7destroyEPNS3_19PlayerSessionPlayerE) +STUB("okzABktskwU", sceRegMgrDrvDataOpen) +STUB("ol-KEFGshOA", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIlEmmEi) +STUB( + "ol4FjXbO74U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEED2Ev) +STUB("ol4LbeTG8mc", sceAudioOutDetachFromApplicationByPid) +STUB("ol7KhQl8kfw", _ZN3sce4Json6Object6insertERKNS1_4PairE) +STUB( + "ol98DtGyxQI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "olAxKc-2FLI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEC1Ev) +STUB("olBDzD1rX2Y", __ctzti2) +STUB("olCnAJHxH+Y", mono_free_method) +STUB( + "olGJ8RRZ4hE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("olGQFkStv1c", _ZN7WebCore21NetworkStorageSession40resetCacheMaxAgeCapForPrevalentResourcesEv) +STUB( + "olGeYgvAgcI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE7popBackEv) +STUB( + "olHmY-ig8cA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEE7get_refEv) +STUB("olL3JJ0yPCc", _ZN7WebCore17LibWebRTCProviderC1ERKS0_) +STUB("olSmXY+XP1E", sceFontTextCodesStepNext) +STUB( + "olTMuaix-oQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEixEm) +STUB("olYPAw8zKmc", mono_type_get_object) +STUB( + "olZJwozESEw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEC2EPKS8_) +STUB( + "olbqvqlFndI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEEC2ERSA_) +STUB( + "olf4MzGpXWM", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi35ParameterToSetGameSessionPropertiesC1Ev) +STUB("oliwAKLVWgM", _ZN7WebCore15HitTestLocationC2ERKS0_) +STUB("olj8ieIBK9k", WKContextSetDatabaseDirectory) +STUB( + "olkBKMfLZ1w", + _ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse12setLanguagesERKNS1_6Common6VectorINS5_6StringEEE) +STUB( + "oln3hXAddPs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("olojYZKYiYs", sceCameraGetRegister) +STUB("olsoiZsezkk", _ZNSt15basic_streambufIwSt11char_traitsIwEE9showmanycEv) +STUB( + "olxGqGZ5egA", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorI16SceNpTusVariableNS1_15AppSTLAllocatorIS5_EEEEC1Ev) +STUB("olxOKqTJPz0", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_12CategoryInfoEED2Ev) +STUB( + "olxrxx7GGaA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("oly3wSwEJ2A", _ZNSt12system_errorC2ESt10error_codePKc) +STUB("om4jx+pJlQo", sceUserServiceSetNpAuthErrorFlag) +STUB( + "om6YvOiYOHs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEEC1ERKSA_) +STUB( + "om9aQbsxdPo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEC1EPS8_) +STUB("omDz0x8lyHk", FT_Get_Sfnt_Table) +STUB("omEjVe8L89s", _ZNK3sce2Np9CppWebApi7Matches2V118RequestMatchPlayer13getPlayerTypeEv) +STUB("omGp+AcigLE", mono_btls_x509_name_get_entry_oid) +STUB( + "omHc+I4WMtw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEeqERKS9_) +STUB("omK8syhP-Xo", mono_btls_x509_chain_from_certs) +STUB("omOKwHLJ90U", _ZN7WebCore16HTMLMediaElement27purgeBufferedDataIfPossibleEv) +STUB("omQZ36ESr98", stdin) +STUB("omT5ldW9X3E", sk_num) +STUB("omVg1AdJGYQ", _ZN3sce7Toolkit2NP2V27Session7Request14SendInvitationC1Ev) +STUB("ombjQXlhves", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIjEplEm) +STUB( + "omeeH5XBsYs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("omf1GoUEJCA", _ZN3sce2np5MutexD0Ev) +STUB("omf6BE2-FPo", sceUserServiceSetMousePointerSpeed) +STUB("omgDKNrhqrs", UI_method_set_reader) +STUB("omgyrKgp3bQ", _ZN7WebCore4Page18setTopContentInsetEf) +STUB("omheU6RVaow", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEED2Ev) +STUB("omk5gt1mqRs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEEppEi) +STUB("omkB3RQAzoI", sceKernelXenterSblock) +STUB("ompqtdvPAyo", _ZN3JSC7Symbols30intlSubstituteValuePrivateNameE) +STUB("omx0wMI12lk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEcvbEv) +STUB( + "omxwJ0bSGs4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEC1Ev) +STUB("omzWoelkO8E", _ZN7WebCore21BlobDataFileReference4pathEv) +STUB("on+1JASSoRU", _ZN3WTF30platformUserPreferredLanguagesEv) +STUB("on0anVfSPlM", ucasemap_getBreakIterator_67) +STUB( + "on16uSjyDXs", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectator28setxPsnAcceptPlatformNamePs5ENS5_25XPsnAcceptPlatformNamePs5E) +STUB("on1ZzO7zyFg", mono_btls_x509_store_ctx_free) +STUB("on4Q-eP3LTc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEC1ERKS7_) +STUB("on6ZH7Abo10", sceAudioOut2ContextDestroy) +STUB( + "onD6xMs1QVM", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectatoraSERS5_) +STUB( + "onDTHdYLYKI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEdeEv) +STUB( + "onFHLEJ6LIA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEE7get_refEv) +STUB("onFll9DvvBY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEptEv) +STUB("onHPS6AKnl0", WKIconDatabaseSetIconDatabaseClient) +STUB( + "onI4oMH1XQs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEEC2Ev) +STUB( + "onMy0vYO09A", + _ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId10hasifMatchEv) +STUB("onNY9Byn-W8", scePthreadJoin) +STUB( + "onPrPM7LYCM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE8capacityEv) +STUB("onTqxi7NTUA", _ZN3sce2Np9CppWebApi7Matches2V113RequestMemberD2Ev) +STUB("ongs2C6YZgA", _ZNSt13_Num_int_base5radixE) +STUB("onh8ugUeSQM", JSObjectSetPropertyForKey) +STUB("onjzAC-bLo8", + _ZN9Inspector17BackendDispatcher9getDoubleEPN3WTF8JSONImpl6ObjectERKNS1_6StringEPb) +STUB("onrsJM-H6Rg", _ZN3sce7Toolkit2NP9Utilities6FutureI16SceNpTusVariableEC2Ev) +STUB( + "onscvYZe428", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEE7get_refEv) +STUB("onsvctvBFhU", rgctx_fetch_trampoline_mrgctx_123_p) +STUB( + "onyRx4AzbfM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEC1EPNS2_10LibContextE) +STUB("oo0lo5EwGbQ", _ZN3JSC7Symbols20isPromisePrivateNameE) +STUB("oo7KoSQGgC8", utmscale_getTimeScaleValue_67) +STUB( + "oo85C0KxxDQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEEC2ERSA_) +STUB("ooCI1mhaiPY", uregex_appendReplacement_67) +STUB( + "ooFYDj1XIdM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE3endEv) +STUB("ooPcqksbLj4", SSL_get_peer_cert_chain) +STUB("ooR0mElMyac", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead22unsetInvitableUserTypeEv) +STUB("ooSMrbrkkiE", sceCesUtf16ToBig5) +STUB("ooWZqSEeX8k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEppEv) +STUB( + "ooc7JCNlQ3w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEE5resetEPS6_) +STUB("oocZi-VpGYc", _ZN3WTF8JSONImpl10ObjectBase9setDoubleERKNS_6StringEd) +STUB("oolj9XRiiek", _ZN3sce2Np9CppWebApi7Matches2V111AddedPlayer11unsetTeamIdEv) +STUB("oomd0c33Dn0", _ZN3JSC2VM25functionRareDataSpaceSlowEv) +STUB( + "ooofO7+qMH4", + _ZN3sce7Toolkit2NP2V211SharedMedia14getScreenshotsERKNS3_7Request14GetScreenshotsEPNS2_4Core8ResponseINS3_11ScreenshotsEEE) +STUB("oov4LEYfr4o", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead19setUsePlayerSessionERKb) +STUB("ooxXMa0uk0U", _ZN3WTF5equalERKNS_10StringImplES2_) +STUB("ooxmfHvkXQ4", _ZN7WebCore6Editor29canDecreaseSelectionListLevelEv) +STUB("op-MlnhQVKM", _ZN7WebCore9HTMLNames10pictureTagE) +STUB("op0eBrkgrYQ", _ZN3sce2Np9CppWebApi14SessionManager2V19ToFactory7destroyEPNS3_2ToE) +STUB("op0yk--Pbns", _ZN4IPMI4impl10ServerImpl13insertSessionEPNS0_11SessionImplE) +STUB("op7lZfbflp4", _ZN7WebCore19ResourceRequestBase23setFirstPartyForCookiesERKN3WTF3URLE) +STUB("opDpl74pi2E", sceNpMatching2SendRoomChatMessage) +STUB("opFenFdq3F4", WKAuthenticationDecisionListenerUseCredential) +STUB("opFs796vTHg", sceNpGameIntentNotifyAppLaunched) +STUB("opIiuXX+a58", _ZN3JSC11RegisterSet7allFPRsEv) +STUB( + "opLoWkchSXw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEEC2Ev) +STUB("opMiSfTJyJo", sceKernelGetDebugMenuModeForRcmgr) +STUB("opQB7KfEmog", _ZN7WebCore5Frame25setPageAndTextZoomFactorsEff) +STUB( + "opQPEue7KKc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEdeEv) +STUB( + "opQcxEuyqug", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE4initEv) +STUB("opR1JeJZCBU", sceAgcAcbSetWorkloadComplete) +STUB("opUhma2Cc+o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEC2Ev) +STUB( + "opY5HiUUqFU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB( + "opYtQJzkB9s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE3endEv) +STUB( + "opaD1UQhVwA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEppEv) +STUB("opghkI9TRV0", uprv_decNumberMinMag_67) +STUB("opk9vPpGlWw", _log2_impl) +STUB("opkpBy1S9Ek", mono_environment_exitcode_get) +STUB( + "oppF6HdHjMY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE10setContextEPNS2_10LibContextE) +STUB("opqf3CJzhms", _ZN3WTF21RefCountedLeakCounterC2EPKc) +STUB( + "opx7oKhVkPg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEED2Ev) +STUB( + "opxlbmj-c5w", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB("oq5hErXegcA", + _ZN3sce2Np9CppWebApi7Matches2V125ResponseCompetitiveResultC2EPNS1_6Common10LibContextE) +STUB("oq8zayuAqeI", _ZN7WebCore12PrintContext9spoolRectERNS_15GraphicsContextERKNS_7IntRectE) +STUB("oqEP9MesQ2A", __sanitizer_set_death_callback) +STUB("oqWuCn2OR6I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEC1Ev) +STUB("oqYAk3zpC64", _ZGVNSt8messagesIwE2idE) +STUB("oqhoukEDo-g", + _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi20ParameterToJoinMatch19getjoinMatchRequestEv) +STUB("oqmE44po4Eo", + _ZN7WebCore20LegacySchemeRegistry35registerURLSchemeAsCachePartitionedERKN3WTF6StringE) +STUB("oqmY25ZV2lw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE4sizeEv) +STUB( + "oqrqXvX7MdQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEneERKS9_) +STUB( + "oqt9KM5+mjw", + _ZN9Inspector25DebuggerBackendDispatcher20setShouldBlackboxURLElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "oqu6GiVem-E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE6resizeEj) +STUB( + "oqvOPxN6SqQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEEC1ERKSA_) +STUB("oqyK+eNC924", + _ZNK3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionMemberPlayer12playersIsSetEv) +STUB("oqzKgOWMDJk", _ZN23sceMetadataReaderWriter13KeyValueArray7releaseERKSsPFvPvE) +STUB("or0CNRlAEeE", _ZNSt12placeholders3_11E) +STUB( + "or0ayP2CMhk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEneERKS9_) +STUB("or0e885BlXo", sceNpWebApiUtilityParseNpId) +STUB("or55417wcDk", sceUltWaitingQueueResourcePoolDestroy) +STUB("or6gfVtkQ2s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEE7add_refEv) +STUB( + "or7+DEeDJyk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEEaSERSA_) +STUB("or96x8OaRrU", _ZN7WebCore7Element12clientHeightEv) +STUB( + "orBoEEybUxg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEE7get_refEv) +STUB("orEBMU4hFLU", monoeg_g_slist_length) +STUB("orIQoGWlBGM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEC2ERS7_) +STUB( + "orNZIWmxEIg", + _ZN3sce2Np9CppWebApi13InGameCatalog2V516PublisherFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_9PublisherEEE) +STUB("orNj+LU-feE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEdeEv) +STUB("orOiqseYzP4", _ZN3sce7Toolkit2NP2V211SharedMedia10Broadcasts8deepCopyERKS4_) +STUB( + "orPbupCaIiI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEplEm) +STUB("orRKxersJBE", _ZN3sce7Toolkit2NP2V24Core11ServerErrorC1Ev) +STUB("orRb69nSo64", _ZN3sce2np6ObjectnwEmR16SceNpAllocatorEx) +STUB("orRliOqiL2g", _ZN7WebCore6DOMURL15createObjectURLERNS_22ScriptExecutionContextERNS_4BlobE) +STUB("orTn+qafMUs", NetCtlInitNative) +STUB( + "orU4L1AsJpY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB("orXjmpvkHuU", curl_mime_subparts) +STUB( + "orYJL3tJx2E", + _ZN9Inspector20DOMBackendDispatcher32removeBreakpointForEventListenerElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "oriUOV5KqeM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEED0Ev) +STUB( + "ortiLL4+3Ps", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEppEv) +STUB("orvHkPITv1E", _ZN23sceMetadataReaderWriter8KeyValue7releaseEPFvPvE) +STUB("orw+fu5nLMk", monoeg_g_usleep) +STUB("orylFUGG-6M", WKBundleFrameGetComputedStyleIncludingVisitedInfo) +STUB("os+UvF9v4vs", + _ZN3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayer15getPushContextsEv) +STUB("os0AbCBgOow", _ZN3JSC7Symbols24argumentCountPrivateNameE) +STUB( + "os3JnI7r9UA", + _ZNK3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody16customData2IsSetEv) +STUB("os4QwIWwOJw", sceApplicationIsResumable) +STUB("os4hZSLNqiw", g_slist_copy) +STUB("os6SV3ZbXo0", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEED2Ev) +STUB( + "os7KjOhexWE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEmmEv) +STUB( + "osA4tgzMULM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEdeEv) +STUB("osFy-sM72sI", _ZNK9Inspector15ScriptCallFrame7isEqualERKS0_) +STUB( + "osMzBigeiAM", + _ZN15AbstractStorage14TwitterStorage15CreateRecursiveERKSbIcSt11char_traitsIcENS_8StlAllocIcEEENS_8ItemTypeEPSt10shared_ptrINS_4ItemEE) +STUB( + "osOqMva56Ko", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEptEv) +STUB("osR4fLPwmb0", GCC_except_table143) +STUB("osSHWP92dx4", WKProtectionSpaceCopyRealm) +STUB( + "osScvw0JGOM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEC1Ev) +STUB("osWtCsta06M", WKPreferencesGetLoadsSiteIconsIgnoringImageLoadingPreference) +STUB("osZckBsVgRg", _ZNK7WebCore24CoordinatedGraphicsLayer22shouldHaveBackingStoreEv) +STUB("oscjJC7TWQo", _ZN3JSC4Heap17registerWeakGCMapEPNS_13WeakGCMapBaseE) +STUB("oslTfJ2LxEc", _ZN3sce2Np9CppWebApi6Common6Binary9setBinaryEPKvm) +STUB( + "osn+QRqZSzY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE3endEv) +STUB("osoNc2UwjJA", sceCesUcsProfileInitIso2022JpCp50222) +STUB("osrpbfyR61g", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEEC2ERS6_) +STUB("ossvuXednsc", sceNpManagerIntIsSubAccount) +STUB( + "ostFfAL1-2M", + _ZN3sce2Np9CppWebApi14SessionManager2V159PostPlayerSessionsSessionIdSessionMessageRequestBodyFactory7destroyEPNS3_52PostPlayerSessionsSessionIdSessionMessageRequestBodyE) +STUB("osuUfqu8oJw", unumsys_getName_59) +STUB( + "osz07MhVuYs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEC1EPS8_) +STUB("oszgKf+pKcE", mono_aot_Sce_Vsh_DataTransferunwind_info) +STUB("ot6-E0L6JWY", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfileC1Ev) +STUB("ot9Mw6ofb74", sceDepth2Terminate) +STUB( + "otLBNE5T4b0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE8capacityEv) +STUB("otRxM636uhw", ucase_fold) +STUB( + "otSBOYTUtRU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEEC1ERS9_) +STUB( + "otU0HIWJSDU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEptEv) +STUB("otUQuZa-mv0", sceHttp2GetMemoryPoolStats) +STUB("otZUtagrnwI", _ZN3sce7Toolkit2NP2V211UserProfile8RealName19MAX_SIZE_FIRST_NAMEE) +STUB("ota-3+co4Jk", _ZTIPh) +STUB( + "otbXTT9NCmY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEEC1ERKSA_) +STUB( + "otcsKZvWHAM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEppEv) +STUB("otfCdjLjGrQ", sceKernelGetVddVid) +STUB( + "otgc7-okOA0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEEC2EPS8_PNS2_10LibContextE) +STUB("oths6jEyBqo", getopt_long_only) +STUB("otkFRPTdg-E", _ZNK3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error8tidIsSetEv) +STUB( + "otmXXLJCZDk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("otpJ9du+n9s", _ZN7WebCore7Element14setAttributeNSERKN3WTF10AtomStringES4_S4_) +STUB( + "otsKDQdECtM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("ottWrt-b9pg", Java_com_sun_dvb_event_MHPEventQueue_postKeyEvent) +STUB( + "otveUIq9Hhg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEE3getEv) +STUB("ou16V5hh5sg", sceAgcDcbCondExecGetSize) +STUB("ou2D4DgV7RE", mono_g_hash_table_remove) +STUB("ou2GyAJwJ+Q", sceKernelGetSubsysId) +STUB("ou7XGX2I+f0", _ZN7WebCore13CharacterData13substringDataEjj) +STUB( + "ouAvf2rJASY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEdeEv) +STUB("ouBHbSngHtA", utext_char32At_67) +STUB("ouDc8nH2bxI", mono_aot_Sce_Vsh_Np_AppInfounbox_trampoline_addresses) +STUB( + "ouFnIACqJuU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE8capacityEv) +STUB( + "ouGhhN0y5Kc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEixEm) +STUB("ouIKBztSwrM", _ZN7WebCore8Document25ensureTimelinesControllerEv) +STUB("ouMiXs4gcA8", YGNodeLayoutGetMargin) +STUB( + "ouO1jqmeuTs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB("ouRl-KC6UTs", JVM_InitAgentProperties) +STUB("ouXHPXjKUL4", _ZTVN6Dinkum7threads21thread_resource_errorE) +STUB("oufOhzK-XYc", + _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead19getSearchAttributesEv) +STUB( + "oulJkfwjAyE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEC2EPS6_PNS2_10LibContextE) +STUB( + "ounc0UJ0EHQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEixEm) +STUB("ouo2obDE6yU", _ZTSSt22_Future_error_category) +STUB("ourM2nlXyXw", sceCompositorSetAgcCompositeCanvasCommand) +STUB("ouu2OBg-jm0", _ZN12Mp4Retriever14processMvhdBoxEv) +STUB( + "ouuS6yaSDvg", + _ZN9Inspector23WorkerBackendDispatcher6createERNS_17BackendDispatcherEPNS_30WorkerBackendDispatcherHandlerE) +STUB( + "ouuc7aD2E40", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEEC2EPS8_PNS2_10LibContextE) +STUB("ouyROWhGUbM", sceNetBweFinishInternetConnectionTestIpcInt) +STUB("ouzzTKM5a4U", _ZN7WebCore18DOMWindowExtensionC2EPNS_9DOMWindowERNS_15DOMWrapperWorldE) +STUB("ov-eK+zm6iQ", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeaders7hasETagEv) +STUB("ov5ffJIXp5Y", __ubsan_handle_builtin_unreachable) +STUB("ov5wOU-dF8s", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V110UpdateModeEEppEv) +STUB("ov7oWnORxTk", _ZNK15AbstractStorage18DailymotionStorage7GetStatEPNS_4StatE) +STUB("ovBbmOZ8AFg", Java_java_awt_GnmFontMetrics_loadFontFromMemory) +STUB( + "ovDo-2OFIZQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE21intrusive_ptr_sub_refEPSA_) +STUB( + "ovJChufCjXc", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody17setNpServiceLabelERKj) +STUB( + "ovWVNwbds+w", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsers12setsessionIdEPKc) +STUB("ovc4ZvD0YjY", _ZN3sce2np9WorkQueue18RemoveFinishedItemEPNS0_8WorkItemE) +STUB("ovdabH7tKu0", sqlite3_total_changes) +STUB( + "oveC6UkVvDk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEC2Ev) +STUB("ovgEnRhGU2E", FTC_SBitCache_New) +STUB("ovguGShbM6M", sceNpSessionSignalingJoinActivate) +STUB("ovmU+5oPjCI", _ZN3sce7Toolkit2NP2V27NpUtils7Request17CheckPsPlusAccessD1Ev) +STUB("ovqX5L1UMjE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEC2ERS7_) +STUB("ovtwh8IO3HE", _Atomic_fetch_sub_2) +STUB("ovyKSSWaaHA", JVM_GetClassCPTypes) +STUB("ovzOMwvVgTY", JSContextGetGlobalContext) +STUB( + "ow+rETvB0N4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEEC1ERKSA_) +STUB("ow-IBPh35ys", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_25ReceivedInGameDataMessageEEC1Ev) +STUB("ow6b-WuYPJQ", sceCesMbcToUtf32be) +STUB("owBScSFneQs", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_19ProductInfoDetailedEE3getEv) +STUB("owCRS3+wOwk", WKPreferencesSetTextAutosizingEnabled) +STUB("owKuegZU4ew", logb) +STUB("owT6zLJxrTs", malloc_initialize) +STUB( + "owTP54Jdw-4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEC1EPS6_PNS2_10LibContextE) +STUB( + "owVFGNaLz6g", + _ZN7WebCore18PlatformTimeRangesC2EON3WTF6VectorINS0_5RangeELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("owWkRYAGd6I", _ZN3sce2Np9CppWebApi7Matches2V123ResponsePlayerStatisticD2Ev) +STUB("owaql6iYlCE", _ZN7WebCore6RegionC2Ev) +STUB("owavSCxIMxE", _ZN7WebCore13ContainerNode16querySelectorAllERKN3WTF6StringE) +STUB("owfXIuSyvFA", _ZNK3sce16CommonDialogUtil6Server10getVersionERj) +STUB( + "owgPhpuSECI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("owm52JoZ8uc", sceNpUtilGetDateSetAuto) +STUB( + "owrpOxU0eoE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE8pushBackERKS8_) +STUB("owt6F7LgUqQ", _ZN7WebCore8SVGNames8typeAttrE) +STUB("owxYieafJSM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce19ServiceEntitlementsEED1Ev) +STUB( + "ox0MIC7zgE0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEEC2Ev) +STUB( + "ox1AsgPQVn8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("ox2Ie98lPAQ", _ZNK3sce2np8NpTicket13GetTicketDataEv) +STUB("ox3wD142jZQ", sceVideoOutSysConfigureOutputMode) +STUB("ox8PemJycj8", _ZN7WebCore14SQLiteDatabaseD2Ev) +STUB("oxAeC3xLbgw", mono_aot_Sce_Vsh_Gls_NativeCallunbox_trampolines_end) +STUB("oxMFU7qWfD8", unorm2_hasBoundaryBefore) +STUB("oxMp8uPqa+U", pthread_set_name_np) +STUB("oxQpdsUY-cg", _ZNK3WTF6String28convertToLowercaseWithLocaleERKNS_10AtomStringE) +STUB("oxVasBZxFVE", _ZN7WebCore16TrackPrivateBasenwEmPv) +STUB("oxVsEWFAiNc", g_list_foreach) +STUB( + "oxX0AY0gWmk", + _ZN3JSC8JSObject23getGenericPropertyNamesEPS0_PNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("oxalVNGQJmQ", _ZN3sce2Np9CppWebApi6Common6VectorIjED1Ev) +STUB("oxbJwN+R0zY", _ZN3JSC19ArrayBufferContentsC1EOS0_) +STUB("oxcjHixZ7+M", _ZN7WebCore9HTMLNames24onanimationiterationAttrE) +STUB( + "oxhgHw0teeM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEneERKS9_) +STUB( + "oxjazfaF5Tk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEE5resetEPS9_) +STUB("oxpki6k4hwY", _ZN7WebCore9MediaListD1Ev) +STUB("oxtVYM5iAGg", fuse_interrupted) +STUB("oxuIoL3hV3M", fuse_fs_poll) +STUB("oxwcZIHAevA", _ZN3JSC12HeapCellTypeD1Ev) +STUB( + "oxzjDPFWwnc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEC1ERS8_) +STUB( + "oy-g+pcheoU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEEdeEv) +STUB("oy7NcAkex1I", cairo_scaled_font_glyph_extents) +STUB("oy8+lROvWc8", _ZN7WebCore18JSHTMLMediaElement9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB( + "oy9BY1LEuQE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEdeEv) +STUB("oy9QXcXcfD0", + _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead6toJsonERNS_4Json5ValueEb) +STUB( + "oy9Qtb91Sds", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEEaSERKS9_) +STUB( + "oyHlzN53QkQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEED1Ev) +STUB( + "oyKM7Fv2eOk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEE11release_refEv) +STUB( + "oyN0x0IS97U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEmmEv) +STUB( + "oyVaeYaxt-4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("oye9egd7IbA", SSL_get_peer_certificate) +STUB("oyl98yuMwTs", _ZN3sce7Toolkit2NP2V212ActivityFeed15PlayedWithStoryD1Ev) +STUB("oyoLlLdruek", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE3endEv) +STUB("oyu6LaExwIo", _ZNK3WTF6String8toUInt64EPb) +STUB( + "oywTzohvkh0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "oyyRTpZkrwE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEED1Ev) +STUB( + "oyzcW+A2liI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEE7get_refEv) +STUB("oz2SlXNAnuI", sceNpUtilParseJid) +STUB("oz6zQq1JwCE", sceAgcDcbAtomicMemGetSize) +STUB( + "oz7LcvPrKnU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEEaSERSA_) +STUB("ozBH1uNV-CA", WKViewScrollBy) +STUB( + "ozEIrKEWrwg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEmmEv) +STUB( + "ozJOeozyB+I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("ozKzBP4aki4", sceAgcAcbCondExecGetSize) +STUB("ozLi0i4r6ds", _ZNKSt8numpunctIcE12do_falsenameEv) +STUB("ozMAr28BwSY", _ZSt14_Xout_of_rangePKc) +STUB("ozTHRE6r2iI", _ZN3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error7setCodeERKi) +STUB("ozcZFDGbLAs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEaSERS7_) +STUB("ozddwj2QrKI", sceLoginMgrServerNotifySafetyNoticeShown) +STUB("ozgt6fyxDWU", _ZN7WebCore11JSDOMWindow12toStringNameEPKN3JSC8JSObjectEPNS1_9ExecStateE) +STUB("ozhniOH0KGs", _ZNK7WebCore8Document8hasFocusEv) +STUB("ozrlpGxYlj4", mono_aot_Sce_Vsh_ShareGuideScenemethod_addresses) +STUB("oztWB+ZCKvI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE6resizeEj) +STUB( + "oztet2zNKgo", + _ZThn16_N9Inspector21InspectorRuntimeAgent5parseERN3WTF6StringERKS2_PNS_8Protocol7Runtime15SyntaxErrorTypeERSt8optionalIS2_ERNS1_6RefPtrINS7_10ErrorRangeENS1_13DumbPtrTraitsISE_EEEE) +STUB("ozwClWsWIJg", _ZN12Mp4Retriever8readFileEjPv) +STUB("ozwJY4AO-V0", _ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody12getSubmitterEv) +STUB( + "p+1CI2F796U", + _ZN3sce2Np9CppWebApi14SessionManager2V150PutPlayerSessionsSessionIdLeaderRequestBodyFactory6createEPNS1_6Common10LibContextERKmPKcPNS5_12IntrusivePtrINS3_43PutPlayerSessionsSessionIdLeaderRequestBodyEEE) +STUB("p+2EnxmaAMM", sceNpMatching2RegisterRoomEventCallback) +STUB( + "p+FQNNZE3n0", + _ZN3sce2Np9CppWebApi14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBody16unsetCustomData1Ev) +STUB("p+GcLqwpL9M", sceNpUniversalDataSystemCreateEvent) +STUB("p+K1iHfbEbY", _ZN9Inspector33LayerTreeBackendDispatcherHandlerC2ERKS0_) +STUB("p+KUQAyiP8s", mono_aot_Sce_PlayStation_Coreunbox_trampoline_addresses) +STUB("p+L8ejjzBko", GCC_except_table173) +STUB( + "p+Q5ib1ogtg", + _ZN3sce7Toolkit2NP2V27Session32displayReceivedInvitationsDialogERKNS3_7Request32DisplayReceivedInvitationsDialogEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("p+ThpykVcyk", _ZNK7WebCore8Document11completeURLERKN3WTF6StringE) +STUB( + "p+ZOhCTomF8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB("p+aCcZDAc6w", _ZN3JSC7JSProxy10putByIndexEPNS_6JSCellEPNS_9ExecStateEjNS_7JSValueEb) +STUB("p+bd65J177I", _ZN3sce2np9WorkQueueC2Ev) +STUB( + "p+ppC4FMtII", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEC2Ev) +STUB("p+rEj0KLb3A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE5beginEv) +STUB( + "p+w4vUIp8zA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V137MatchCompletionRateQuitMetricsFactory6createEPNS1_6Common10LibContextEiPNS5_12IntrusivePtrINS3_30MatchCompletionRateQuitMetricsEEE) +STUB("p+zLIOg27zU", sceFiberGetSelf) +STUB("p+zbVfbuTeI", izrule_getDSTSavings_67) +STUB("p--TkNVsXjA", posix_spawn_file_actions_init) +STUB("p-18HFJsw1Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEC1ERS7_) +STUB( + "p-5+aWQeE2s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE6resizeEj) +STUB("p-79ZEd8qW0", sceSystemServiceUsbStorageGetDeviceList) +STUB("p-7NOjeWS7g", _ZN3WTF10AtomString6numberEj) +STUB( + "p-9opUXvj84", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEdeEv) +STUB( + "p-AtCVOgiY8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEE7get_refEv) +STUB("p-LFZYbDPDU", FT_Get_CID_Is_Internally_CID_Keyed) +STUB("p-NcyN-4t34", sceDebugGetWorkerThreadListOfUltRuntime) +STUB("p-SW25yE-Q8", _ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2Em) +STUB("p-TSC3DF860", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEED1Ev) +STUB("p-ULxRug-2M", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIiED1Ev) +STUB("p-UYdfO11nY", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110PlayerTypeEEneERKS7_) +STUB( + "p-ZSVn8l+Eg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEppEi) +STUB( + "p-aZCxxW1f8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEEdeEv) +STUB( + "p-bzozznaMo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEneERKS9_) +STUB( + "p-cJD5RtKB8", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser17getplatformFilterEv) +STUB("p-jMGxCpEF4", WKPageVerticalRubberBandingIsEnabled) +STUB( + "p-jRyeRiFpk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEmmEi) +STUB( + "p-jb4iTRt-4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE21intrusive_ptr_sub_refEPS9_) +STUB("p-mK12SMrus", _ZN9Inspector8Protocol3CSS11CSSProperty6StatusE) +STUB("p-o74CnoNzY", sceNpGetNpId) +STUB( + "p-q9tb7XQR8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "p-v4Wtbd4vY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEC2Ev) +STUB("p-vxvNBJKSE", _ZN3sce7Toolkit2NP2V23TUS19FriendsDataStatusesC2Ev) +STUB("p-yVOd9mWjs", _ZN3sce7Toolkit2NP2V27Session7Request5LeaveC2Ev) +STUB( + "p00ukrSYLDg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEED2Ev) +STUB( + "p01JiyG-30Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEEC2ERSA_) +STUB("p05cNsRX80g", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_28ActivityFeedSharedVideoStoryEEC1ERKS4_) +STUB("p07Yvdjjoo4", _ZTSPa) +STUB("p09anR3krYY", mono_reflection_get_custom_attrs_by_type) +STUB("p0Bz7Spfm3I", SHA256_Init) +STUB( + "p0Dkt6J4Jpg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEEcvbEv) +STUB("p0DyHXv5zwQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEC1Ev) +STUB("p0IeMemvZKo", _ZNK3sce3Xml3Dom8Document9getParentENS1_6NodeIdE) +STUB("p0PRJbphhqk", uenum_count) +STUB("p0TfCdPEcsk", _sceNpManagerMallocImpl) +STUB( + "p0Wenh2LaF4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("p0Zf2imJtOg", uprv_tzname_clear_cache) +STUB("p0avT2ggev0", sceFontGraphicsSetupShapeFill) +STUB( + "p0bBtOdfZ1Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE5beginEv) +STUB( + "p0bNZqp8wtQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("p0dBN8P6oQk", sceNpManagerIntGetWebAuthorizationCode) +STUB( + "p0dkw+-B1Dc", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectator30unsetxPsnAcceptPlatformNamePs5Ev) +STUB("p0eCRmPrfns", WKPreferencesSetStorageAccessAPIEnabled) +STUB("p0ec8BT41x0", vzone_hasSameRules_67) +STUB("p0g0m9ReWGo", ucal_getLimit_67) +STUB("p0gmbQAKkSg", + _ZN7WebCore25updateRedirectChainStatusERNS_24RedirectChainCacheStatusERKNS_16ResourceResponseE) +STUB( + "p0gvedm33cU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEC1EPS6_PNS2_10LibContextE) +STUB("p0hE-jNTORc", mono_aot_System_Datajit_code_start) +STUB("p0iin+5pyxc", _ZN7WebCore9DOMWindowD1Ev) +STUB( + "p0nhTJs3VTg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEEC2Ev) +STUB( + "p0s9CGWGMzA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEE7add_refEv) +STUB( + "p0yNW4EPnrI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEC2EPNS2_10LibContextE) +STUB( + "p1-tYf5Dw14", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEC1Ev) +STUB("p12OhhUCGEE", CERT_ComputeBufferHash) +STUB("p19NF3jf+CA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE7popBackEv) +STUB("p1EbAmze7CA", _ZN3sce2Np9CppWebApi14SessionManager2V128PostGameSessionsResponseBodyD1Ev) +STUB("p1GngwuQoJU", JVM_FindLoadedClass) +STUB("p1MwPMovrqQ", _ZN7WebCore11DisplayList9TranslateD2Ev) +STUB( + "p1SPtutBLtQ", + _ZN3sce2Np9CppWebApi7Matches2V123RequestMatchTeamFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_16RequestMatchTeamEEE) +STUB("p1VW68C+-T0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEED1Ev) +STUB("p1WMhxL4Wds", + _ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE7_GetcatEPPKNSt6locale5facetEPKS5_) +STUB("p1WOMELu-4A", _ZN3WTF20equalIgnoringNullityEPKDsmPNS_10StringImplE) +STUB("p1Y7ioAP4R4", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19Bandwidth8fromJsonERKNS_4Json5ValueE) +STUB( + "p1ZXwCbgEt0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE5beginEv) +STUB("p1cutHGo-JE", sceNpIpcStartReceiveEvent) +STUB( + "p1i2CaemsJQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEEC2ERKSA_) +STUB( + "p1p28WBntQ8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEED2Ev) +STUB( + "p1qcDRRCr0Q", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsers13isInitializedEv) +STUB("p1vvpKGRXe4", _sceNpHeapFree) +STUB("p1zwikCkFho", RemotePlayNotifyCanWakeup) +STUB("p1zyLn2efJY", YGNodeInsertChild) +STUB("p2-LNHxXjZ0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE5beginEv) +STUB( + "p20k4TNkkis", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEED2Ev) +STUB("p24NzuET1lg", Java_sun_awt_GnmUtils_deleteEqueue) +STUB( + "p27Hbx5l5pM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "p27yy6GkJs4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEppEv) +STUB("p2GJO7T3y0U", + _ZN3JSC15ordinarySetSlowEPNS_14JSGlobalObjectEPNS_8JSObjectENS_12PropertyNameENS_7JSValueES5_b) +STUB( + "p2JCgtORwGE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "p2MnDlkREK8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("p2NKAA3BS6k", sceUserServiceSetPbtcSaturdayHoursStart) +STUB("p2TGctXDx+s", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEEC1EPNS2_10LibContextE) +STUB("p2Z45bTvEFQ", mono_metadata_events_from_typedef) +STUB("p2ZoF0ZliBI", ubidi_getVisualMap_67) +STUB( + "p2bbBiO9daY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEptEv) +STUB( + "p2dD4xgWN-Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEEaSERSA_) +STUB( + "p2dIQ2uomo4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE7reserveEi) +STUB("p2l6cwSqkQI", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getRate) +STUB( + "p2p3mURFjvk", + _ZN3sce2Np9CppWebApi13InGameCatalog2V514ProductFactory6createEPNS1_6Common10LibContextEPKcS9_S9_PNS5_12IntrusivePtrINS3_7ProductEEE) +STUB("p2suRCR4KqE", sceKernelRandomizedPath) +STUB("p2tkXXp2Xro", mono_aot_Sce_Vsh_Friendjit_code_end) +STUB( + "p2uPjeeVeVE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("p2viSd4-PTk", sceNpSnsDailymotionDialogGetStatus) +STUB("p2vxsE2U3RQ", sceNetGetSystemTime) +STUB("p2xgfB-30g8", get_self_auth_info) +STUB("p3+eddRqX24", WKPreferencesSetCoverAreaMultiplier) +STUB("p31IAOfCfVk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEEdeEv) +STUB("p31ySCz+He0", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_19ProductInfoDetailedEEC1Ev) +STUB("p32NBlh5GQc", rgctx_fetch_trampoline_mrgctx_75) +STUB("p367GVhNpE4", _ZN7WebCore11FileMonitorD1Ev) +STUB("p38FKNLfCik", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession16getSwapSupportedEv) +STUB("p3BVovMPEE4", _Unwind_GetRegionStart) +STUB( + "p3Ec2mUWPco", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("p3EiAZKNa-s", _ZN3JSC10JSFunction16getConstructDataEPNS_6JSCellE) +STUB("p3H5c3z5Jnc", _ZN3NTF15ThreadConditionC2Ev) +STUB("p3I+fGoIFCI", _ZN12video_parser18cMp4FFLHndlManager14getFF4MtdtHndlEj) +STUB("p3M3cOSVP34", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE4sizeEv) +STUB("p3Ofu90jHZc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEE5resetEPS6_) +STUB("p3P95HmskyU", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Error12messageIsSetEv) +STUB("p3S2DrPZocg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116JoinableUserTypeEEppEi) +STUB("p3Sq7l2nt6g", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEEC2ERKS6_) +STUB("p3ZXuq+kTQA", _ZNK3sce16CommonDialogUtil6Server14getServerStateEv) +STUB("p3d8TZiX4Zg", umutablecptrie_close) +STUB("p3grARF0IJY", _ZN3WTF6StringC1EPKc) +STUB("p3ikkh2tbg8", ustrcase_mapWithOverlap_67) +STUB( + "p3j95bppH44", + _ZN3sce7Toolkit2NP2V27Session6searchERKNS3_7Request6SearchEPNS2_4Core8ResponseINS3_8SessionsEEE) +STUB( + "p3jbDMREZ8A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEEaSERSA_) +STUB("p3lO3pDgbZc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEE7get_refEv) +STUB("p3nY5yoTFJA", _ZN3sce2Np9CppWebApi11Matchmaking2V110UserTicket13unsetPlatformEv) +STUB( + "p3oJdYaJsqY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEE7get_refEv) +STUB("p3uXvmETGok", WKBundleNodeHandleGetHTMLInputElementLastChangeWasUserEdit) +STUB( + "p41Wsx-xhyE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEaSERKS9_) +STUB("p41XEqKt7Pk", _ZN7WebCore11DisplayList10SetLineCapD0Ev) +STUB("p46F89e+PsY", _ZN7WebCore27CSSComputedStyleDeclaration3refEv) +STUB("p480YiSI5ME", _ZN7WebCore13MediaStrategyD1Ev) +STUB("p48S5v2A4yA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEEC1Ev) +STUB( + "p4JWYLv4noo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEdeEv) +STUB( + "p4OeWfFn-oo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEC2Ev) +STUB( + "p4VtgF4oy5M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEC1ERS7_) +STUB( + "p4WnlOtOHs8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEEcvbEv) +STUB("p4dYJFInGjQ", sceNpTrophy2SystemGetTrophyTitleDetails) +STUB("p4fepPQZPyY", ucal_getDefaultTimeZone_67) +STUB("p4gPgRz1nzs", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11ProductInfoEEC1ERKS4_) +STUB( + "p4hcqKyBk1M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "p4mg3IMZim4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("p4nXf3KE6F0", _ZN3sce7Toolkit2NP2V29Messaging25GameDataMessageAttachmentC1ERKS4_) +STUB( + "p4nbV3FC6ug", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEED2Ev) +STUB( + "p4p+VbOUUUA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEplEm) +STUB( + "p4pCNht7qQw", + _ZN3sce2Np9CppWebApi7Matches2V140RequestTemporaryCompetitiveResultFactory7destroyEPNS3_33RequestTemporaryCompetitiveResultE) +STUB("p4r+rf7CLpw", _ZNK3JSC8JSObject11toPrimitiveEPNS_9ExecStateENS_22PreferredPrimitiveTypeE) +STUB("p4rQDN6X2Pw", WKPreferencesGetSuppressesIncrementalRendering) +STUB("p4vYrlsVpDE", __umodsi3) +STUB( + "p4wk26jmdgs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE7popBackEv) +STUB("p52lBBeQdJM", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10setString1EPKc) +STUB("p5ABYcyCMQ4", mono_aot_Sce_Vsh_RequestShareStorageWrapperplt) +STUB("p5EcQeEeJAE", _sceKernelRtldSetApplicationHeapAPI) +STUB("p5GNJaXO2yE", FT_Raccess_Get_HeaderInfo) +STUB("p5H4D5NQ44w", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V16StatusEEneERKS7_) +STUB("p5LAAfDNDSc", _ZN7WebCore9HTMLNames17aria_relevantAttrE) +STUB( + "p5MJfs0tn4M", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser15setmemberFilterEPKc) +STUB( + "p5OrpEgtoeE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEEptEv) +STUB( + "p5PUHOpDUTk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE8capacityEv) +STUB( + "p5Y86SMa0bQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEEC1EPS6_PNS2_10LibContextE) +STUB("p5Zb6+Jqhlo", _ZN4Manx13WorkQueueImpl4quitEv) +STUB("p5ZkSMRR7AU", sceNpJsonParseEx) +STUB( + "p5b8pUr4nu4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE8capacityEv) +STUB("p5bAdQWOKKM", _ZTVN15AbstractStorage11LocalFolderE) +STUB("p5bM5PPufFY", sceSslSend) +STUB("p5dgfDf1KR8", rgctx_fetch_trampoline_mrgctx_118_p) +STUB("p5hRe1k4Wlg", _ZN3sce2np13JsonDocParserD0Ev) +STUB("p5nOMeQrjY4", _ZNK7WebCore20TransformationMatrix7mapRectERKNS_7IntRectE) +STUB("p5u9FgEEzVg", _ZN7WebCore8Document23setLinkColorForBindingsERKN3WTF6StringE) +STUB("p5vjxmtOkoA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEE7add_refEv) +STUB("p5zH+kefguU", SSL_CTX_use_certificate_ASN1) +STUB("p6-wVsp9tSw", Java_com_sony_gemstack_core_CoreAppState_n_1getState) +STUB("p63Xpg-Fu-k", _ZN3JSC12StringObject21deletePropertyByIndexEPNS_6JSCellEPNS_9ExecStateEj) +STUB( + "p64NoWGrWUI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEC1EPS6_PNS2_10LibContextE) +STUB("p65DgqcLlx8", + _ZN3JSC25JSSegmentedVariableObject13visitChildrenEPNS_6JSCellERNS_11SlotVisitorE) +STUB("p6A1adyQi3E", sceSaveDataCheckSaveDataVersion) +STUB( + "p6Ct8O5WvdM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("p6DbM0OAHNo", iswblank) +STUB("p6HgoDW6jvI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEE7add_refEv) +STUB("p6LrHjIQMdk", _ZNSt8_LocinfoD1Ev) +STUB("p6MqjAO8c24", _ZN7WebCore28convertToIntegerEnforceRangeIiEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB( + "p6OHUO0LQPM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEC2Ev) +STUB("p6P4lMV7QVI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12EventsClient6EventsEEC1Ev) +STUB( + "p6PIa3GAB+A", + _ZN3sce2Np9CppWebApi14SessionManager2V159PostGameSessionsSessionIdMemberSpectatorsRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_52PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEE) +STUB("p6PQ5iZof4A", __cxx_global_var_init .2) +STUB("p6QVJzwCl4A", _ZN7WebCore20SharedBufferDataViewD1Ev) +STUB( + "p6RVoVukh50", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEED1Ev) +STUB("p6RbBPYq4eQ", _ZN9Inspector14FrontendRouter18disconnectFrontendEPNS_15FrontendChannelE) +STUB("p6SYKSPrxy0", WKBundleSetAsynchronousSpellCheckingEnabled) +STUB("p6TDE8T9VoY", _ZN8meta_gen13TiffRetriever17ProcessTiffHeaderEv) +STUB( + "p6Ue0H5Q6Es", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEppEv) +STUB("p6Wz7W1Vu9k", sceSdecDestroySw) +STUB( + "p6e08++5YVs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEppEv) +STUB("p6fLHIan5xw", _ZN8meta_gen11MsvPromoter19retrieveLicenseInfoEv) +STUB("p6lrRW8-MLY", sceLibcMspaceReallocalign) +STUB("p6n3Npi3YY4", sceCameraIsAttached) +STUB("p6qdkIWB7DM", _ZN3sce7Toolkit2NP2V210Tournament12EventDetailsC1Ev) +STUB("p6uAfElXMx0", _ZN7WebCore9HTMLNames14ontouchendAttrE) +STUB( + "p70VlguNes8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEED2Ev) +STUB("p73mqupCtos", _ZN15AbstractStorage10TwitterAPIC1Ev) +STUB( + "p77ahP21v+k", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V131NatConnectivityToMetricsFactory7destroyEPNS3_24NatConnectivityToMetricsE) +STUB("p79B7qNeKWk", sceVnaGetKeyPhraseInfo) +STUB("p79Xqsxuutc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEC1EPS8_) +STUB( + "p7A-y-qXeRk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "p7A7cBK6-qM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE3endEv) +STUB("p7CGEj3VhbQ", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate11globalIsSetEv) +STUB("p7DQObtV1sg", + _ZN3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponseC1EPNS1_6Common10LibContextE) +STUB("p7DQuwFH3tI", JVM_ReleaseUTF) +STUB("p7EEFGWQWeQ", _Z16createIpcChanneliPKciimPi) +STUB("p7FV-mU6EM0", sceVideoOutGetDeviceInfoExOts_) +STUB( + "p7PKWOWWlAw", + _ZN7WebCore29cookieRequestHeaderFieldValueERKNS_21NetworkStorageSessionERKNS_3URLERKNS_12SameSiteInfoES5_St8optionalImESA_NS_20IncludeSecureCookiesE) +STUB( + "p7TH5-RlDcg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEEC2ERSA_) +STUB("p7TUlUh8aR8", _ZN3sce2Np9CppWebApi7Matches2V133RequestTemporaryCompetitiveResultD1Ev) +STUB( + "p7TxN1-1Thg", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody32comparedLastUpdatedDateTimeIsSetEv) +STUB("p7ZYQQM5Rq0", _ZN7WebCore18JSHTMLMediaElement14finishCreationERN3JSC2VME) +STUB("p7ieGjluqCU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEC1Ev) +STUB( + "p7luBxsty20", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEaSERS7_) +STUB( + "p7p3VjCQhL0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEC2Ev) +STUB("p8-44cVeO84", _ZNSt5ctypeIcED0Ev) +STUB( + "p80fJ5XgjPE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEEcvbEv) +STUB("p81jnGe7Z6s", _ZN7WebCore8FormData21resolveBlobReferencesEPNS_16BlobRegistryImplE) +STUB( + "p850xC6E2oM", + _ZN9Inspector24BrowserBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "p8795uafcyU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEptEv) +STUB("p8FxjibSmV0", __asan_report_exp_store_n) +STUB( + "p8GNjz1fA5E", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEeqERKS9_) +STUB("p8H37RdDza0", _ZNK7WebCore13HitTestResult10targetNodeEv) +STUB("p8J-f9vV8so", _ZN3JSC26setCannotUseOSRExitFuzzingEPNS_14JSGlobalObjectEPNS_9CallFrameE) +STUB("p8MKXcJl+DQ", rgctx_fetch_trampoline_mrgctx_18_p) +STUB("p8VOOvRtBwI", sceSpNetRecv) +STUB("p8WqfV5JBM4", _ZN3WTF9MediaTimenaEmPv) +STUB("p8XYeJTk44w", + _ZN3JSC7JSProxy25getOwnPropertySlotByIndexEPNS_8JSObjectEPNS_9ExecStateEjRNS_12PropertySlotE) +STUB("p8Z1uz9Ocjw", sceUserServiceSetGlsStreamingMode) +STUB( + "p8Zh-cl0d2w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE5clearEv) +STUB( + "p8a8BjfY+dw", + _ZN3sce2Np9CppWebApi14IdentityMapper2V340PsnWebError_error_missingElementsFactory7destroyEPNS3_33PsnWebError_error_missingElementsE) +STUB( + "p8arJTtxl10", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("p8dGWrY3d1s", _ZNK7WebCore6Widget9frameRectEv) +STUB( + "p8dcV5Xdw88", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEE11get_deleterEv) +STUB( + "p8gjY-kFNhc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEdeEv) +STUB( + "p8hYNQOs+Hw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEEC1ERKSA_) +STUB("p8hjICuQP74", glIsTexture) +STUB("p8lf45Q-uTg", _ZN9Inspector22InspectorDebuggerAgent16removeBreakpointERN3WTF6StringERKS2_) +STUB( + "p8mIuQgaKF4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEptEv) +STUB("p8nxupRtlEg", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeINS1_11TusVariableEPvEEC2ERKS7_) +STUB("p8qZEIwpBmM", _ZN15AbstractStorage13TwitterFolder8NextItemEPSt10shared_ptrINS_4ItemEE) +STUB("p8ttLHDKSBg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEEaSERS6_) +STUB( + "p8ttkaEY6J0", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification16NewInGameMessageEE19setCustomReturnCodeEi) +STUB( + "p8yKdu8RqFo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEC1Ev) +STUB("p902te3L1dk", _ZN7WebCore24CoordinatedGraphicsLayer15setBoundsOriginERKNS_10FloatPointE) +STUB("p90G4PB-rPc", FT_Atan2) +STUB("p92YB4L6ys8", _ZN3sce7Toolkit2NP9Utilities6FutureI16SceNpTusVariableED2Ev) +STUB( + "p96J3msVZ1U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("p981eM75Hz0", _ZN3sce7Toolkit2NP2V211UserProfile10NpProfilesC1Ev) +STUB("p98bClfIFGc", _ZN7WebCore9FrameView19willStartLiveResizeEv) +STUB( + "p9EIrOs5b5I", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setBoolean5ERKb) +STUB("p9EVUy+kCYI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE5beginEv) +STUB( + "p9KnaZrCv78", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEEC1Ev) +STUB("p9Myoc5VL90", + _ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId8getrangeEv) +STUB("p9Wh6mJoIyU", _ZN7WebCore12GridPosition19setExplicitPositionEiRKN3WTF6StringE) +STUB("p9bBXbQwjqY", sceUpsrvSwitchSystemExBank) +STUB("p9lSvZujLuo", sceHmdInternalGetTv4kCapability) +STUB("p9lalSG5Ois", _ZN7WebCore11HistoryItemC2Ev) +STUB( + "p9m7vqd65UE", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetrics16setNumberOfTimesERKi) +STUB( + "p9t7+fbT3S8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("p9tI+yTvx68", sceAgcDcbWriteDataGetSize) +STUB( + "p9uOi0tfH3E", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126BandwidthPropertiesFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_19BandwidthPropertiesEEE) +STUB("p9v3DtIRZEo", _ZN7WebCore9HTMLNames14mediagroupAttrE) +STUB( + "p9xiDJGGGWU", + _ZN3JSC8Bindings13RuntimeObject18getOwnPropertySlotEPNS_8JSObjectEPNS_9ExecStateENS_12PropertyNameERNS_12PropertySlotE) +STUB("pA6J1tTkLgE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEC2Ev) +STUB("pA8xxaySl7A", sceVideoOutSetGlobalBlendSpace) +STUB( + "pA9B+g8mIxY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("pA9N3VIgEZ4", wcsncat) +STUB("pAAjQL5Ft2M", _ZN3sce7Toolkit2NP2V28Commerce8CategoryC2ERKS4_) +STUB("pABweE7VEhQ", uregex_lookingAt64_67) +STUB("pAEazR4ifq8", WKFrameGetPage) +STUB( + "pAHDzvr0lHM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEC2ERKS7_) +STUB("pAHZ3XUhMpY", u_strlen_67) +STUB("pAI9K0j3zuc", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi20ParameterToJoinMatchC1Ev) +STUB("pAM03YY8KHk", jpeg_write_m_header) +STUB("pAPHOSSoPcU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia10BroadcastsEEC2Ev) +STUB("pAQWOmWnARU", Java_java_lang_Class_getPrimitiveClass) +STUB("pAU4HTJYMp4", g_unichar_tolower) +STUB("pAUHU0koAWs", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData9getslotIdEv) +STUB( + "pAXYG8IZPeE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEC1ERKS7_) +STUB("pAbZ-KnYusQ", scePerfTraceIoControllerGetInfo) +STUB("pAcXoWY-JV8", sceUserServiceGetGlsSortOrder) +STUB( + "pAfvROuK3xg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEdeEv) +STUB( + "pAlrPOaKC2E", + _ZN3sce2Np9CppWebApi14SessionManager2V124GameSessionMemberForRead10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_17GameSessionPlayerEEEEE) +STUB( + "pAoXgurdj04", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE8copyFromERKS9_) +STUB("pAplz5VKalM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEED2Ev) +STUB( + "pAqJSHeTkxc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEixEm) +STUB( + "pAqPiyzSt3k", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_13WhoLikedStoryENS1_15AppSTLAllocatorIS5_EEEED2Ev) +STUB("pAsVC6PkJik", _ZTVN9Inspector27DOMBackendDispatcherHandlerE) +STUB("pAvqneDXt+U", mono_aot_I18N_Rareunbox_trampoline_addresses) +STUB( + "pAw3pEnX+cg", + _ZN3sce3pss4core7imaging4impl8ImageJpg9SaveAsJpgEPKcPKvjRKNS3_11ImageExtentENS3_9ImageModeEjbPNS1_6memory13HeapAllocatorEi) +STUB("pAwe-e5yT+w", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE6resizeEj) +STUB("pAyBQ1E8ooA", sceAppCheckerExecute) +STUB( + "pB+UVz83POQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB( + "pB-vxa3J3uY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEC1EPKS8_) +STUB("pB-yGZ2nQ9o", _sceKernelSetThreadAtexitCount) +STUB("pB7q2sBApu0", _ZN7WebCore11JSImageDataD1Ev) +STUB( + "pB7sHQ95Dms", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEaSERKS7_) +STUB("pBDcmtgduX4", + _ZN3sce2Np9CppWebApi7Matches2V123ResponsePlayerStatistic8fromJsonERKNS_4Json5ValueE) +STUB("pBFu7-y2zYc", uspoof_close_67) +STUB( + "pBGj6RizKfU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE3endEv) +STUB("pBK66yYP97Y", _ZN3sce7Toolkit2NP2V28Commerce7SkuInfo19PRICE_NOT_AVAILABLEE) +STUB("pBKLKuvZ8dA", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetAccountId2OnlineIdC1Ev) +STUB( + "pBOSdF--u0E", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V136MatchCompletionRatePropertiesFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_29MatchCompletionRatePropertiesEEE) +STUB( + "pBQHk87lKlQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEEC1ERSA_) +STUB( + "pBSflV5BOTU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEC1EPS8_) +STUB("pBSgMrf0tnM", + _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody8setGroupERKNS3_5GroupE) +STUB("pBZaaPXoap8", _ZTVN7WebCore11DisplayList18FillCompositedRectE) +STUB("pBcDL54gWdI", operands) +STUB("pBcDo3rvuyQ", DbRecoveryGetRecoverDbStatus) +STUB("pBcZJ+Rrm8g", _ZN4Manx5Mutex7tryLockEv) +STUB("pBeP05gOp44", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE8capacityEv) +STUB( + "pBiaRxV9fLk", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB("pBiaquuxxw8", sceUlpMgrReqOpen) +STUB("pBjyGt87RVY", mono_aot_Sce_Vsh_Orbis_ContentManagerjit_got) +STUB( + "pBm3jUgz03k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB("pBmdJlTPcw0", _ZN3sce2Np9CppWebApi6Common8IteratorIiEaSERKS4_) +STUB( + "pBnxFgaqqtU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE7reserveEi) +STUB("pBoyANdtj+Y", mono_bitset_find_last) +STUB("pBqh-Uh-gns", FT_Stroker_EndSubPath) +STUB( + "pBuoqjThPJ8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("pBwtarKd7eg", RSA_verifySignature) +STUB("pBxafllkvt0", __cxa_bad_cast) +STUB("pBxsdricISw", _ZN3sce7Toolkit2NP2V210Tournament12EventDetailsC1ERKS4_) +STUB("pByyZM7AQqs", _ZN7WebCore9HTMLNames21onaccessiblefocusAttrE) +STUB("pBzKTiHMFzA", mono_runtime_quit) +STUB( + "pC+ZWqAQQl4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEC1EPS8_) +STUB("pC16otJKCBc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEE7get_refEv) +STUB("pC2grp9LzN4", _ZN3WTF16AtomicStringImpl3addEPKh) +STUB("pC5zNv0lecs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEC1Ev) +STUB("pCDG6X3+8sY", _ZNK7WebCore9FrameView18visualViewportRectEv) +STUB("pCEC6vbRldc", _ZN3sce3Xml4AttrD2Ev) +STUB("pCF8Ohwre44", _ZN3sce4Json6String4nposE) +STUB("pCFoofQJtME", _ZL7_delete) +STUB("pCIB7QX5e1g", _ZN3sce2np15CancelableScope3EndEiPKciS3_) +STUB("pCJUJOonjAM", WKPageSetPageZoomFactor) +STUB("pCK4T9Z7IT4", _ZNK15AbstractStorage18DailymotionContent7GetStatEPNS_4StatE) +STUB("pCOWFyed-4o", mono_aot_Sce_Vsh_DbPreparationWrapperplt) +STUB("pCPHOY0VhUY", _ZN3WTF20ParallelHelperClientD1Ev) +STUB("pCQF5n486S4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed14PlayedWithFeedEED2Ev) +STUB("pCWh67X1PHU", _Mbcurmax) +STUB("pCXxVMdoF2w", sceDeci4hDrfpRename_fuse_fullpath) +STUB("pCg5jfEB6lI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE3endEv) +STUB("pCh4kIKMRhY", u_getPropertyName) +STUB( + "pChAYPYSxWA", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchStatus10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_24UpdateMatchStatusRequestEEE) +STUB("pCjXnlN6R4c", _ZNK7WebCore20PasteboardWriterData7isEmptyEv) +STUB( + "pClWcZ+qHaY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEmmEi) +STUB( + "pCmH0ZVZnUo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "pCmittWw84M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEC1EPKS8_) +STUB( + "pCx3V5+yLVg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEdeEv) +STUB("pCzJRpCkA0o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEE11release_refEv) +STUB( + "pD5RuCWaJ68", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEdeEv) +STUB("pDBDcY6uLSA", vfprintf) +STUB("pDCLd02jZXY", mono_aot_System_Net_Httpplt_end) +STUB( + "pDEAOETMFqI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEE5resetEPS6_) +STUB( + "pDFP2BDr4Ek", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEE11release_refEv) +STUB("pDFe-IgbTPg", _ZSt6_ThrowRKSt9exception) +STUB("pDIETOJnVkA", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE3endEv) +STUB( + "pDO6Rd9JJvI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEmmEv) +STUB( + "pDQfyFnqZtw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEE11get_deleterEv) +STUB("pDSDI1d9bYk", ulocdata_getDelimiter_67) +STUB("pDUQVO32lZY", + _ZN3sce2Np9CppWebApi11UserProfile2V111PresenceApi28ParameterToGetBasicPresencesD1Ev) +STUB("pDZja2i2nWI", _ZN7WebCore10FileSystem10deleteFileERKN3WTF6StringE) +STUB("pDcP19rE8is", + _ZN7WebCore19JSHTMLSelectElement14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB("pDeT6Pr+XhU", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getAllAngles) +STUB("pDgm9B6t20U", mono_btls_ssl_handshake) +STUB("pDmme7Bgm6E", sceAudioOut2ContextQueryMemory) +STUB("pDmpH6oM4dM", _ZN7WebCore18JSHTMLMediaElement15subspaceForImplERN3JSC2VME) +STUB( + "pDnyECvjXNI", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13boolean6IsSetEv) +STUB("pDom5-078DA", sceHttp2DeleteTemplate) +STUB( + "pDp-mS36cgA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEppEv) +STUB( + "pDq9d3fUeXI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEmmEi) +STUB( + "pDrV25H24JE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEC2EPS8_) +STUB("pDtTdJ2sIz0", _ZNKSs5_XlenEv) +STUB("pDuPEf3m4fI", sem_init) +STUB( + "pDzlvDD-m34", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEED2Ev) +STUB( + "pDzn9wU4pYU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("pE+UbZdeERI", + _ZSt9use_facetISt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale) +STUB( + "pE22PUU5TZQ", + _ZNK3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfiles16hasincludeFieldsEv) +STUB("pE4L6eMygg8", WKImageGetTypeID) +STUB("pE4Ot3CffW0", _Mtxlock) +STUB("pE5yhroy9m0", sceNpTrophyIntCheckNetSyncTitles) +STUB("pE7esinD1MQ", _ZNK7WebCore28InspectorFrontendClientLocal15inspectionLevelEv) +STUB("pEOtEX2HbIw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEcvbEv) +STUB("pERkMh6RMWc", _ZN3sce7Toolkit2NP2V29Messaging12Notification18NewGameDataMessageC1Ev) +STUB("pETUJ-y0iKI", _ZN3sce2Np9CppWebApi14SessionManager2V15Error9setReasonEPKc) +STUB( + "pEVyTKV222E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEE7add_refEv) +STUB("pEWDYfJwYlc", _ZNK7WebCore15VisiblePosition4leftEbPb) +STUB("pEWwVSoF7p8", _ZN3sce7Toolkit2NP2V29Messaging24GameDataMessageThumbnailD2Ev) +STUB("pEa7YsB+1Gk", utext_current32_67) +STUB( + "pEd0hY5ANXM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEC1EPS8_) +STUB("pEj0Hr9hB7o", mono_aot_Sce_Vsh_Sticker_StickerLibAccessorunbox_trampoline_addresses) +STUB( + "pEnV0VcHNLM", + _ZN3sce7Toolkit2NP9Utilities6FutureISt4listINS1_11TusVariableENS1_15AppSTLAllocatorIS5_EEEED2Ev) +STUB("pEwvXJfzc6w", whexnan) +STUB( + "pF0d3M1kbPY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE21intrusive_ptr_sub_refEPS9_) +STUB("pF0xwB5yYHg", mono_declsec_get_class_action) +STUB("pF1HQjbmQJ0", sceGnmDrawInitToDefaultContextStateInternalCommand) +STUB("pF3Vy1iZ5bs", sceNetConfigEtherPostPlugInOutEvent) +STUB("pF6MaJY4tLM", _ZN3WTF4SHA19hexDigestERKSt5arrayIhLm20EE) +STUB("pF75dzcdyDs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEaSERS7_) +STUB( + "pFDegp2dfRg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEC1EPS8_) +STUB("pFEBy8mr++k", _ZN7WebCore11ContentTypeC2ERKN3WTF6StringE) +STUB("pFEot3VlFEA", _ZN3sce2np7HttpUriC2EP14SceNpAllocator) +STUB( + "pFIRSizCKPg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEixEm) +STUB("pFIaDCkohN8", _ZN7WebCore15DatabaseManager9setClientEPNS_21DatabaseManagerClientE) +STUB("pFLArOT53+w", sceAgcDcbSetShRegisterDirect) +STUB( + "pFLioqgvA5c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "pFM8WL8yxDg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("pFPrjIeAnbw", ubrk_next_67) +STUB("pFQ9UHpO52s", sceAmprCommandBufferNopWithData) +STUB("pFS2eHSDMLU", _ZN3WTF6String6insertERKS0_j) +STUB("pFTi-yOrVeQ", scePadIsValidHandle) +STUB("pFhX3uoMzFg", _ZN3JSC7Symbols33regExpProtoFlagsGetterPrivateNameE) +STUB("pFnXDxo3aog", sceHttpCookieImport) +STUB( + "pFqSNnzepdI", + _ZN9Inspector22HeapFrontendDispatcher16garbageCollectedEN3WTF6RefPtrINS_8Protocol4Heap17GarbageCollectionENS1_13DumbPtrTraitsIS5_EEEE) +STUB("pFwAOaAz5Xc", _ZN3sce7Toolkit2NP23ModifySessionAttributesC1Ev) +STUB("pFzhpCMlJXQ", sceNpMatching2AbortContextStart) +STUB( + "pG+ff4ziVVg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEEaSERSA_) +STUB("pG5v2tRogDk", mono_btls_bio_print_errors) +STUB("pG5ytCcsbF8", sceClPthreadCondInit) +STUB("pG70GT5yRo4", __sys_socketex) +STUB("pGB6fgx51YA", _ZN3sce7Toolkit2NP14RankingRequestC2Ev) +STUB("pGERM4K5W1Y", WKContextConfigurationDiskCacheSizeOverride) +STUB("pGFdISTgS6k", sceNpTrophy2SystemCheckNetSyncTitles) +STUB( + "pGFomIvcw0A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEEptEv) +STUB( + "pGHbmRZmy78", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEmmEi) +STUB( + "pGJNCS7X7Rs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "pGMylP5wrIU", + _ZN7WebCore9ImageData6createERKNS_7IntSizeEON3WTF3RefIN3JSC21GenericTypedArrayViewINS6_19Uint8ClampedAdaptorEEENS4_13DumbPtrTraitsIS9_EEEE) +STUB("pGT0Hy3xqhU", mono_aot_Sce_Vsh_Orbis_ContentManagerunwind_info) +STUB("pGV40iopOv0", _ZN7WebCore22MutableStyleProperties25ensureCSSStyleDeclarationEv) +STUB("pGVyTWxeAPI", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setSecondaryVideoDisplay) +STUB("pGXmMgddE0g", _Z32sceRazorGpuThreadTracePushMarkerPN3sce3Gnm17DrawCommandBufferEPKc) +STUB( + "pGYBrHy9GZA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE5emptyEv) +STUB( + "pGbQivnCv9E", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyC1EPNS1_6Common10LibContextE) +STUB("pGbbc4Cndnw", _ZN3sce7Toolkit2NP2V210Tournament18OneVsOneTournamentC1ERKS4_) +STUB("pGg+6wFDlrM", uhash_iputi) +STUB("pGiyEASBQ-4", scePrintUlpNtfHdr) +STUB("pGllkf3ECvw", sceLibSecureHashAddMessage) +STUB("pGuw5C+UX1A", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE5beginEv) +STUB( + "pGw1fgR58lA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEC2EPNS2_10LibContextE) +STUB("pGxNI4JKfmY", _ZNSs6assignERKSsmm) +STUB( + "pGyteDcvQO4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEC2Ev) +STUB("pH3-dfRpfA0", sceAgcDcbAtomicGds) +STUB("pH4yvvMVlO4", Java_com_sony_bdjstack_javax_media_controls_VideoDecoder_getInputVideoSize) +STUB( + "pH5iqOZqt7g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEC1Ev) +STUB("pH77OiapXx0", _ZN7WebCore16ISOSchemeTypeBox11boxTypeNameEv) +STUB("pHH5hyfxX9Y", sceSystemServiceUsbStorageRequestMapWSB) +STUB("pHLjntY0psg", _sceNpIpcCreateMemoryFromKernel) +STUB( + "pHM7uGJIsD4", + _ZNK7WebCore14FrameSelection17getTextRectanglesERN3WTF6VectorINS_9FloatRectELm0ENS1_15CrashOnOverflowELm16EEENS0_19TextRectangleHeightE) +STUB("pHVhU7MCfO4", _ZN7WebCore3URL10invalidateEv) +STUB( + "pHYv47WUTDc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEeqERKS9_) +STUB( + "pHa6TA0kmmw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "pHblpMhPmXs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEdeEv) +STUB("pHc3bxUzivU", sceHttpSetCookieTotalMaxSize) +STUB("pHmVAreojKs", + _ZN7WebCore22EmptyFrameLoaderClient36transitionToCommittedFromCachedFrameEPNS_11CachedFrameE) +STUB( + "pHrho2t1Wdg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "pHsMmDelq+k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEaSERS7_) +STUB("pHt-cpjRGfI", psl_builtin_sha1sum) +STUB("pHtewtpKctw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEplEm) +STUB( + "pHuzFdEHFLM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEaSERS7_) +STUB("pHzEzRZw3AE", sceRemoteplayGetPrimaryUserId) +STUB("pI+36WQAZrw", _ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBodyD1Ev) +STUB("pI4UL7r2y-U", _ZN7WebCore17JSDOMGlobalObject6gcLockEv) +STUB("pI7oFSPP65A", sceSocialScreenInitialize) +STUB( + "pI99Oop-ayU", + _ZN3sce2Np9CppWebApi14SessionManager2V125GameSessionForReadFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_18GameSessionForReadEEE) +STUB("pIBfRRwKXkc", _ZN7WebCore9HTMLNames8paramTagE) +STUB("pICgBkuuluk", EC_KEY_new_by_curve_name) +STUB("pIJWQeguBMM", mono_aot_Sce_Vsh_ErrorDialogUtilWrapperunbox_trampolines) +STUB("pILwarr9j-g", _ZNK3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE5beginEv) +STUB("pIQpU-xFpC8", _ZN3sce7Toolkit2NP2V27Session13SessionMember13INVALID_INDEXE) +STUB( + "pISp54KJuQ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("pITl48PLFeg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEptEv) +STUB("pIU8u6VsLM8", sceFiosArchiveMount) +STUB("pIZfvPaYmrs", CERT_STORE_addIdentity) +STUB("pIca-U1+RSU", _Z18Ime_KbdCloseNativem) +STUB( + "pIhU0fs2lkA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "pIixOI4BcJM", + _ZNK7WebCore11FontCascade5widthERKNS_7TextRunEPN3WTF7HashSetIPKNS_4FontENS4_7PtrHashIS8_EENS4_10HashTraitsIS8_EEEEPNS_13GlyphOverflowE) +STUB( + "pIjbVlZBVUA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEdeEv) +STUB("pIk2LEeOiYA", _ZN3sce2Np9CppWebApi11UserProfile2V16Avatar8fromJsonERKNS_4Json5ValueE) +STUB("pInrFd17z+s", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_25ReceivedInGameDataMessageEEC2Ev) +STUB("pIpGiaYkHkM", sceAjmMemoryUnregister) +STUB("pIv6cvrnbik", mono_aot_System_Collectionsjit_got) +STUB( + "pIviPFyc7H0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE7popBackEv) +STUB( + "pIzrkSM8eZU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE7reserveEi) +STUB("pJ-vW4wN8Tc", _ZN3sce7Toolkit2NP12CategoryInfoC1Ev) +STUB("pJ1jG+C1oRM", sceCesEucJpToUcs2) +STUB("pJ4iBZ6LEA0", WKPageSetPagePolicyClient) +STUB("pJACq4b4u8s", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS7TusDataEE19setCustomReturnCodeEi) +STUB("pJEZ0JYEcTw", + _ZN3sce2Np9CppWebApi15Personalization2V111ErrorEntityC1EPNS1_6Common10LibContextE) +STUB("pJEy0WY19JM", _ZN7WebCore22MutableStyleProperties6createENS_13CSSParserModeE) +STUB( + "pJGfKNGIPpI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEEcvbEv) +STUB( + "pJHb8t5cIR0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEC2Ev) +STUB( + "pJKa7LpED8U", + _ZN7WebCore6JSNode6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_4NodeENS6_13DumbPtrTraitsIS8_EEEE) +STUB("pJN5evXp+PU", T7lo) +STUB("pJO7UlQf4GA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEC2ERKS7_) +STUB("pJOHRRnVOv8", _ZNK7WebCore11HistoryItem5titleEv) +STUB( + "pJOO+mbBzOM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("pJOiP5PeD58", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEEmmEi) +STUB( + "pJPsENh1eng", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "pJRLQ73hwE8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEdeEv) +STUB( + "pJRmtP9VZ-k", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("pJRqv3bC318", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEE7add_refEv) +STUB( + "pJVmVzElUmQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13integer8IsSetEv) +STUB("pJat8bRYP7s", __asan_report_exp_store4_noabort) +STUB( + "pJcq3nbnqZs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEE3getEv) +STUB("pJdPMQdakrU", _ZN3JSC7Symbols35tailCallForwardArgumentsPrivateNameE) +STUB("pJf1t3SkkWw", sceAudiodecGetContext) +STUB( + "pJjvv1HLwGc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("pJlGhXEt5CU", sceNpGetRandom) +STUB("pJpENyUdQVY", _ZN7WebCore5Range6createERNS_8DocumentERKNS_15VisiblePositionES5_) +STUB("pJqLpjX7IVw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEC2Ev) +STUB("pJqrYc7v9Y4", sceNpManagerIntGetGameAuthorizationCode) +STUB("pJrlpCgR8h4", sceSaveDataDeleteAllUser) +STUB("pJsBUVg+3n0", __hexdig_D2A) +STUB("pJsoArqymHw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEEC2ERS6_) +STUB("pJzji5FvdxU", sceFontGraphicsFillRatesSetFillEffect) +STUB("pK-wzpfYMWY", utrie_set32_67) +STUB( + "pK1oAq2A1EU", + _ZN7WebCore12ChromeClient20reportProcessCPUTimeEN3WTF7SecondsENS_27ActivityStateForCPUSamplingE) +STUB("pK6QcF125kg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEaSERKS7_) +STUB("pK81BVjswyQ", WKBundleFrameCopyProvisionalURL) +STUB( + "pKCOxQ9dBsM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEE3getEv) +STUB("pKGnqGY+qAU", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi27ParameterToLeaveGameSessionC2ERS5_) +STUB( + "pKI0Za-Ggf0", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot9getoffsetEv) +STUB( + "pKIHTJXkQuY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEEC2Ev) +STUB( + "pKMtHu+nBfU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE7popBackEv) +STUB( + "pKQ0VXrvv88", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEEC1ERSA_) +STUB("pKU9YbpGLKQ", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product14unsetPlatformsEv) +STUB("pKUEWyAWkeI", WKIconDatabaseReleaseIconForURL) +STUB("pKY2S4K-6Mg", sceAudioOutSysClose) +STUB("pKcrfPzoNMk", mono_aot_platformunwind_info) +STUB( + "pKgIPdNLv1M", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEeqERKS9_) +STUB("pKjUsK5faF4", _ZNK7WebCore27PlatformMediaSessionManager29applicationDidEnterBackgroundEb) +STUB( + "pKkFL0O6P4o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEC1EPKS8_) +STUB("pKwslsMUmSk", fmod) +STUB( + "pKyIRcsrUXw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEEC1ERSA_) +STUB("pL+mk3X2b2M", _ZN7WebCore16HTMLInputElement9setHeightEj) +STUB( + "pL-5QzoskTM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("pL0JWi-j4bA", mono_mlist_append) +STUB( + "pL4ZsM-e0ws", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEE11release_refEv) +STUB( + "pL6D2mFIA3I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEE7get_refEv) +STUB( + "pLLAcCscl38", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEneERKS9_) +STUB("pLNZVjiFPKE", _ZN4IPMI4impl10ClientImpl12tryGetResultEjPiPvPmm) +STUB("pLOGdHtjnVE", _ZN3NTF5Cache16DiskCacheManagerC1Ev) +STUB("pLYxXzkI0wg", _ZN7WebCore21BackForwardController11itemAtIndexEi) +STUB("pLctuikJSes", _ZN7WebCore10ScrollView23setScrollbarsSuppressedEbb) +STUB( + "pLgDetoUvdE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEC1Ev) +STUB("pLgMebvWxKY", ulpFinal) +STUB("pLh4waaqW7c", _ZNK7WebCore19ResourceRequestBase8httpBodyEv) +STUB("pLjQLOflIUU", sceNpManagerIntGetGameVshTokenWithPid) +STUB("pLoXvGTu73w", _ZNK7WebCore16VisibleSelection5isAllENS_27EditingBoundaryCrossingRuleE) +STUB("pLoyIIF+W90", + _ZN3sce2Np9CppWebApi11UserProfile2V111PresenceApi28ParameterToGetBasicPresencesC2Ev) +STUB("pLr1fEQS1z8", sceNpBandwidthTestShutdown) +STUB("pLuxrniEggE", _ZNK3JSC12PropertySlot14functionGetterEPNS_9ExecStateE) +STUB("pLxnrZfvnmw", + _ZN3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayer14setCustomData1EPKvm) +STUB( + "pLxxreXN2pE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEE3getEv) +STUB("pM--+kIeW-8", sceHttpSetCookieMaxNum) +STUB("pM6IH8xwjQ4", sceMbusEventBusStatusChangeSubscribe) +STUB( + "pMBOcKmx57g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEED1Ev) +STUB("pMK2RT0cyus", sceLncUtilGetAppStatusList) +STUB("pMLs993oHk0", uloc_getCharacterOrientation) +STUB("pMMH71U7FB8", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationPropertiesD1Ev) +STUB( + "pMMf4gq7ios", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEC1EPNS2_10LibContextE) +STUB("pMNrcwBmiTU", + _ZN9Inspector17BackendDispatcher8getValueEPN3WTF8JSONImpl6ObjectERKNS1_6StringEPb) +STUB( + "pMPcx4w2+lo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEE7add_refEv) +STUB("pMQUQSfX6ZE", _ZTSd) +STUB("pMQcZ5MiNHg", _ZTVN7WebCore11DisplayList10SetLineCapE) +STUB("pMVc-tS+h2s", _ZN7WebCore21DiagnosticLoggingKeys15revalidatingKeyEv) +STUB("pMWnITHysPc", _ZNSt6localeD1Ev) +STUB("pMYvjb09mQA", Java_java_lang_Runtime_totalMemory) +STUB("pMb2NRE-Ni0", ufmt_getObject_67) +STUB( + "pMceEA-IDnE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEC2Ev) +STUB( + "pMdZmQd3NYY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEEC1EPS7_PFvS9_EPNS2_10LibContextE) +STUB( + "pMe0xtEijZM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEEC2Ev) +STUB( + "pMePj4GJlyc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEdeEv) +STUB( + "pMjSwNSMrgo", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("pMkuOcjPRsk", WKUserScriptGetTypeID) +STUB("pMqmEivov4M", sceUpsrvUpdateDoUpdateWithEntitlement) +STUB( + "pMwGYxVsnfU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEED2Ev) +STUB("pMxOeBivMSo", _ZN7WebCore4Page29setHorizontalScrollElasticityENS_16ScrollElasticityE) +STUB("pN02FS5SPgg", _ZNSt8_LocinfoC2EPKc) +STUB("pN0HjRU86Jo", sceHmdInternalDfuReset) +STUB( + "pN1RYLViHiE", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetrics8fromJsonERKNS_4Json5ValueE) +STUB("pN6OYq3hEUE", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product29getContentInteractiveElementsEv) +STUB( + "pN9rkxfvGRs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEptEv) +STUB( + "pND3b5qOJEk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEE5resetEPS9_) +STUB("pNFRb6EjosU", _ZNK7WebCore9InlineBox16baselinePositionENS_12FontBaselineE) +STUB("pNH9EoaKVWM", _ZN3JSC16JSAsyncGenerator6s_infoE) +STUB( + "pNIDF2IP2vk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE8capacityEv) +STUB( + "pNJZl4aQELY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEC2EPNS2_10LibContextE) +STUB("pNORP-dktP4", _ZN3sce7Toolkit2NP2V28Commerce10ContainersC2Ev) +STUB("pNUMqmhQiR8", _ZN7WebCore11DisplayList5ScaleC1ERKNS_9FloatSizeE) +STUB( + "pNW9MC7fuZc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEED1Ev) +STUB("pNWIpeE5Wv4", _FXp_sqrtx) +STUB( + "pNcrmQC5fdM", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("pNdf3ybWh48", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEEC1Ev) +STUB( + "pNfdpjO9B40", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("pNg-SxQQPVY", _ZN3sce7Toolkit2NP2V27Ranking17SetGameDataResultC2ERKS4_) +STUB("pNhZrjJUkOk", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError11reasonIsSetEv) +STUB("pNj6-KbfzvQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE7reserveEi) +STUB("pNliRQzOktU", JSObjectGetProperty) +STUB("pNtJdE3x49E", wcscmp) +STUB("pNwJh7+E8Ng", + _ZN8meta_gen14ImageRetriever10InitializeEP23PromoteInnerInformationiN9db_schema9CodecTypeE) +STUB("pNx4P15sDAk", ubidi_getDirection_67) +STUB( + "pNxe58k+Inw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEplEm) +STUB("pNy9E8Now3M", WKPageGetTextZoomFactor) +STUB( + "pNyc5WhtCSM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEEcvbEv) +STUB( + "pO+c5pL9FS0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEaSERKS7_) +STUB("pO0sA7m+UKY", FT_ClassicKern_Validate) +STUB("pO2sQB1RR2c", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEED1Ev) +STUB( + "pO6iUM4dmiI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEC2EPS8_) +STUB("pO96TwzOm5E", sceKernelGetDirectMemorySize) +STUB("pO9cpXuuPwU", SoundTerminate) +STUB("pOEPVuZSH5g", sceApplicationGetCpuUsage2) +STUB( + "pOI+-AxPNgc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEC1EPKS8_) +STUB( + "pOJA21g9RCY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEED0Ev) +STUB( + "pOKn0iFNtCU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEED1Ev) +STUB( + "pOQEWRz7-xE", + _ZN3sce2Np9CppWebApi14SessionManager2V138JoinedPlayerSessionWithPlatformFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_31JoinedPlayerSessionWithPlatformEEE) +STUB("pORpGtdlfqQ", FT_Get_Multi_Master) +STUB("pOTLKv4IdPc", sceMbusGetUsersDeviceInfo) +STUB( + "pOVIkXQLs4s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEE11get_deleterEv) +STUB("pOWKUOuqKng", mono_runtime_get_main_args) +STUB("pOd-OizWMuY", _ZN8meta_gen13JpegRetrieverD0Ev) +STUB( + "pOfQInfCa4o", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeader13isInitializedEv) +STUB( + "pOjw6Hh291Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEC2EPS8_) +STUB("pOlBN11P9J4", mono_aot_I18N_MidEastplt_end) +STUB( + "pOlgVvpFlGU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("pOmNmyRKlIE", scePthreadMutexGetspinloops) +STUB("pOmcRglskbI", getCertSigAlgo) +STUB("pOoh9qPEo3g", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging24GameDataMessageThumbnailEED2Ev) +STUB( + "pOqoJ33P-VQ", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V129ConnectionQualityWiredMetrics17getPacketLossRateEv) +STUB( + "pOrMRLKTtWo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "pOxeHT063Yg", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer15getserviceLabelEv) +STUB("pOzS3021z74", _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOffer7getviewEv) +STUB("pOzrilVe4IE", _ZN7WebCore9DOMWindow30dispatchAllPendingUnloadEventsEv) +STUB("pP4r8aQAzzU", _ZN7WebCore8Document22webkitCancelFullScreenEv) +STUB("pP76ElRLm78", _ZNSt12placeholders3_17E) +STUB("pP8FlCo5KjU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEptEv) +STUB("pP8RgquS2+4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116JoinableUserTypeEEaSERKS7_) +STUB( + "pPDDhRBhxjk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEC1EPS8_) +STUB("pPEDP-idDOk", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119NatConnectivityFrom9getToNat3Ev) +STUB( + "pPEuwyTHRIY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEEC1EPS8_PNS2_10LibContextE) +STUB( + "pPHjhHqFfFw", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setBoolean2ERKb) +STUB( + "pPOSsajGYBg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEC2Ev) +STUB( + "pPPV1y6tTIQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEC1EPS8_) +STUB("pPSFfl-Q-C0", _ZN3sce7Toolkit2NP2V210Wordfilter16SanitizedComment8deepCopyERKS4_) +STUB( + "pPUweQXqzCY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEE11get_deleterEv) +STUB("pPVQ8STok8k", _ZNK3JSC6JSCell12toObjectSlowEPNS_14JSGlobalObjectE) +STUB("pPVeaW3oK5s", _ZN7WebCore6Editor35increaseSelectionListLevelUnorderedEv) +STUB( + "pPWv2pOXj5w", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB( + "pPcQAkaLYhE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("pPdYDr1KDsI", __atomic_fetch_xor_4) +STUB("pPfNd6QD3nk", ucurr_forLocaleAndDate) +STUB("pPikP5n3mmY", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku11setUseLimitERKi) +STUB( + "pPimGOezL3A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "pPizF3DyBDA", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities12ErrorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS6_12IntrusivePtrINS4_5ErrorEEE) +STUB("pPs3qZTZQvQ", _ZN3sce4Json5Array9pop_frontEv) +STUB( + "pPxU3HVSLu8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEEaSERSA_) +STUB("pPycmu6NL9o", _ZN7WebCore11MathMLNames14fontweightAttrE) +STUB("pQ+OGYuSoTM", _ZN9Inspector26AnimationBackendDispatcherD0Ev) +STUB("pQ-JHL7FkOk", nn_shutdown) +STUB("pQ0Q4V-i7MA", _ZNK7WebCore17CSSPrimitiveValue13getFloatValueENS_11CSSUnitTypeE) +STUB("pQ1USbInTUQ", mono_aot_Sce_Vsh_Np_ServiceChecker2method_addresses) +STUB("pQ9+KPwjQkA", _ZNK3sce2Np9CppWebApi11Matchmaking2V110UserTicket11getPlatformEv) +STUB("pQANZJGkdfQ", _ZN7WebCore19TransformOperationsC1Eb) +STUB("pQDPh3MUo6c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEEC2EPS4_PNS2_10LibContextE) +STUB( + "pQDnCmiFqdk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE8capacityEv) +STUB("pQGpHYopAIY", sceNetNtohl) +STUB( + "pQIs3SYFDnk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEC1EPS6_PNS2_10LibContextE) +STUB( + "pQKFFcbSJww", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("pQKHqQZ84QA", _ZTVN7WebCore9CookieJarE) +STUB("pQLJV5SEAqk", sceNetBweStartInternetConnectionTestBandwidthTestIpcInt) +STUB( + "pQQjZ-f6BMU", + _ZN3sce2Np9CppWebApi14SessionManager2V129PlayerSessionSpectatorFactory6createEPNS1_6Common10LibContextERKmRK13SceNpOnlineIdPKcSE_PNS5_12IntrusivePtrINS3_22PlayerSessionSpectatorEEE) +STUB("pQRviAsoFa0", _ZN3sce7Toolkit2NP2V28Commerce7Request13GetContainersD2Ev) +STUB( + "pQSNLaYkj84", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEeqERKS9_) +STUB( + "pQUKYNtefKU", + _ZN3sce2Np9CppWebApi14SessionManager2V112ErrorFactory6createEPNS1_6Common10LibContextElPKcPNS5_12IntrusivePtrINS3_5ErrorEEE) +STUB( + "pQWfmZh1FNs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEED2Ev) +STUB( + "pQXooiV2ors", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEE11release_refEv) +STUB("pQYlY0YQm3w", WKBundleSetAuthorAndUserStylesEnabled) +STUB("pQZ0kMnqWPU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEED1Ev) +STUB("pQZjEV7j8+A", _ZN7WebCore9HTMLNames11optgroupTagE) +STUB("pQayMXYQa+M", sceRegMgrPrivateStorageDirPermit) +STUB("pQhd2HrNmdA", _ZN3sce7Toolkit2NP2V28Matching12RoomPingTime8deepCopyERKS4_) +STUB("pQjigMgG-N8", __start__Ztext) +STUB("pQktOxWPJUs", _ZN9Inspector38ScriptProfilerBackendDispatcherHandlerD2Ev) +STUB( + "pQn1HrvjPw8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEeqERKS9_) +STUB("pQntjcFYZZo", _ZN7WebCore6JSFile15subspaceForImplERN3JSC2VME) +STUB( + "pQpi5vZCbzU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEneERKS9_) +STUB("pQtHunes6DY", udat_clone_67) +STUB( + "pQyRwQhLGhY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEeqERKS9_) +STUB("pR+9VvD3ld0", mono_aot_System_Reactive_Coreunbox_trampolines_end) +STUB("pR2Ae3d5-6s", sceVnaReadTtsStream) +STUB("pR3-b3aK+Io", utrans_unregister_67) +STUB("pR9ULw2VrSs", + _ZN15AbstractStorage14YoutubeContentC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) +STUB( + "pREBJBfY1Xo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEEdeEv) +STUB( + "pRFnT68pscY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("pRNesNnAa2k", _ZN3sce2Np9CppWebApi7Matches2V119CreateMatchResponse8fromJsonERKNS_4Json5ValueE) +STUB("pRa-1shF58s", WKDatabaseManagerGetOriginQuotaKey) +STUB("pRbEzaV30qI", sceNetThreadJoin) +STUB("pRbiJ9Xm+UA", getzone_o) +STUB("pRgpBtHx8P4", sceNpAppInfoIntDestroyRequest) +STUB("pRowWv-qvIY", mono_aot_Sce_Cdlg_Platformplt) +STUB("pRpclGdCA9I", _ZN7WebCore8Gradient12addColorStopEONS0_9ColorStopE) +STUB( + "pRq2H0BNjLE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEC1EPNS2_10LibContextE) +STUB("pRuw9KxL6FI", _ZN7WebCore9HTMLNames15marginwidthAttrE) +STUB("pRvz++QdUEI", _ZNK7WebCore9FloatQuad11boundingBoxEv) +STUB("pS-OPJQtq5s", sceFsInitUmountLwfsCompatOpt) +STUB( + "pS-TVEH+IMU", + _ZN9Inspector20DOMBackendDispatcher6moveToElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("pS-t9AJblSM", _ZNKSt9bad_alloc8_DoraiseEv) +STUB("pS2tjBxzJr4", sceGnmSqttGetWrapCounts) +STUB("pS7nI6sFIOQ", mono_aot_Sce_Vsh_SystemLoggerWrappermethod_addresses) +STUB("pS96n3Qoz1Q", WKPreferencesGetMediaPreloadingEnabled) +STUB( + "pSA+683NX28", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEE7get_refEv) +STUB( + "pSDfPenTEZw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("pSHHnWM+tac", _ZN3sce2Np9CppWebApi7Matches2V120RequestTeamStatistic8getStatsEv) +STUB( + "pSQAXUewWlk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEE11release_refEv) +STUB("pSQBJJDceyk", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312AccountIdMapC1EPNS1_6Common10LibContextE) +STUB( + "pSQUSAGFxr0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEE11get_deleterEv) +STUB("pSQz254t3ug", _ZNKSt5ctypeIwE10do_scan_isEsPKwS2_) +STUB("pSUTufzQ4og", sceDtcpIpWaitAsync) +STUB( + "pSelZAq3Gzw", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V132NatConnectivityPropertiesFactory7destroyEPNS3_25NatConnectivityPropertiesE) +STUB("pSgOzwkzx4Y", FT_Add_Default_Modules) +STUB("pSh4a1XK8eA", sceAvSettingCallbackFuncsInit_) +STUB( + "pSjdqs610Z8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEC2Ev) +STUB("pSo71k98t6U", _ZN9Inspector15RemoteInspector28receivedGetTargetListMessageEv) +STUB("pSpDCDyxkaY", _Stoullx) +STUB( + "pSpO3hPNv64", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEptEv) +STUB( + "pSq7SObvxVg", + _ZN7WebCore14ResourceHandle25loadResourceSynchronouslyEPNS_17NetworkingContextERKNS_15ResourceRequestENS_23StoredCredentialsPolicyERNS_13ResourceErrorERNS_16ResourceResponseERN3WTF6VectorIcLm0ENSB_15CrashOnOverflowELm16ENSB_10FastMallocEEE) +STUB("pSqC0JZWBsU", WKInspectorIsVisible) +STUB("pSrfYqO6q2Y", _ZN7WebCore17LibWebRTCProvidernwEmPv) +STUB( + "pSsmohguau8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEeqERKS9_) +STUB( + "pSzqIk82Rfc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("pT05qnuORso", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEEmmEi) +STUB( + "pT1g-6L6yJ0", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionProperties13isInitializedEv) +STUB( + "pT1ptF856pU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "pT2CdljMUNI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEaSERKS9_) +STUB("pT4ViD0o-bM", sceLibSecureCryptographyGetContextSize) +STUB( + "pTAlr-dhIyM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("pTDJICHaSk4", _ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE6resizeEj) +STUB( + "pTG9JHBfK48", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEC1EPS8_) +STUB("pTGFQtwwed8", _ZN3sce2Np9CppWebApi14ConnectAccount2V28PSNErrorD2Ev) +STUB( + "pTIWHdPlTz0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEE7get_refEv) +STUB( + "pTIhFj01j+E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE5beginEv) +STUB("pTQS9K0L17Q", JNU_ToString) +STUB("pTTcO+0cxvY", sceRegMgrPrivateStorageMeasure) +STUB("pTZT4hsbxb4", mono_aot_System_ServiceModelplt) +STUB( + "pTbPc39gNr4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("pTgf4wXWSO4", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112GroupingTypeEEneERKS7_) +STUB( + "pTilR5Bo5mA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEED2Ev) +STUB("pTl2U-BU34A", rgctx_fetch_trampoline_mrgctx_22_p) +STUB("pTmq0fAKv7Y", _ZN3sce7Toolkit2NP16NpSessionRequestC1Ev) +STUB( + "pTnWn2lqv+Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEEdeEv) +STUB( + "pTndrh403GY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEE11get_deleterEv) +STUB( + "pTqYCBU04W4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEC1EPKS8_) +STUB( + "pTrytI141T0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE5beginEv) +STUB("pTtsLDP0PcI", g_WebAssemblyModuleRecordPoison) +STUB("pTvAKV1iQkE", sceNpSnsFacebookDeleteRequest) +STUB("pTzwexztolg", _ZN3JSC7Symbols28sentinelMapBucketPrivateNameE) +STUB("pU-QydtGcGY", sceKernelMemoryPoolReserve) +STUB( + "pU0qHcNBIA8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("pU2Smb1a7jE", png_free_data) +STUB("pU3xyTxVS+w", _ZN7WebCore16BackForwardCache14pruneToSizeNowEjNS_13PruningReasonE) +STUB( + "pU5136Kn9lA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEE7get_refEv) +STUB("pU54jHctkAs", _ZN7WebCore15AsyncFileStreamnwEmPv) +STUB("pU5QYX+50hM", _ZN7WebCore10TimeRanges3addEdd) +STUB( + "pU7lRDROrps", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEE5resetEPS9_) +STUB("pU9V579IXI8", _ZNK7WebCore17SMILTimeContainer19animationFrameDelayEv) +STUB("pUGXlfaAj04", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEEaSERS7_) +STUB("pUJjT1ly6bI", _ZN3sce2Np9CppWebApi7Matches2V120ResponseMatchResults22unsetCompetitiveResultEv) +STUB("pUNYBQhD1oQ", sceCustomMusicCoreSendEvent) +STUB("pUQnXa5Mp9E", sceFsLvdAttachSingleImage) +STUB("pUSjD6Wmxo4", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToCancelTicketC1Ev) +STUB("pUaVtOhugPw", _ZN7WebCore11DisplayList12PutImageDataD1Ev) +STUB("pUgVd0pfnz4", _ZN3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectatorD1Ev) +STUB( + "pUgi1Yey6Cc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE3endEv) +STUB( + "pUgnmJfR5hw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "pUlDYtYqdWI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "pUlrprmY2w4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEC1EPNS2_10LibContextE) +STUB( + "pUs6LRCfmKs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEE5resetEPS9_) +STUB( + "pUtECb1AiqE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEaSERKS7_) +STUB("pUtMsRLFGwU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEEeqERKS7_) +STUB("pUw8oIcCMXk", _ZN3JSC18BytecodeCacheErroraSERKNS0_13StandardErrorE) +STUB( + "pUzdNRe+ESU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE5beginEv) +STUB("pV+10L18QyI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE5beginEv) +STUB( + "pV236XKHYh4", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayer37unsetxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB("pVFD+VTLysQ", _ZN3sce7Toolkit2NP2V27Session7Request6Create16DEFAULT_PRIORITYE) +STUB("pVK4++v04ac", sceGameRightGetLogoPngImageSizeInBytes) +STUB("pVLe+5PkfMY", sceVorbisDecSeekable) +STUB( + "pVNLwekGFZY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEE11get_deleterEv) +STUB("pVO1rIj3RBs", _ZNK3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator12getJoinStateEv) +STUB( + "pVQDZ8U74-A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE5beginEv) +STUB( + "pVTs1BDPJ1Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("pVUPcUmtmck", _ZN3JSC15WeakHandleOwnerD1Ev) +STUB("pVXutWd0GIw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEED1Ev) +STUB( + "pVY5LAm5cwU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEE11release_refEv) +STUB("pVYj0EAFKIU", WKWebsiteDataStoreReinitializeAppBoundDomains) +STUB( + "pVZmBosjLLI", + _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody17joinDisabledIsSetEv) +STUB( + "pVjAJiudBmE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE21intrusive_ptr_add_refEPS9_) +STUB("pVjisbvtQKU", fetestexcept) +STUB("pVlk0kpmp+8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEED1Ev) +STUB("pVpx298dCy8", _ZN8meta_gen13JpegRetriever20JPEGPROM_MDAY_OFFSETE) +STUB("pVsEKLk5bIA", sceUserServiceGetSaveDataSort) +STUB( + "pVvX-N6ANdE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEC2EPKS8_) +STUB( + "pVvuwD+2o4o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEC1EPS8_) +STUB("pVxEtvHOtXc", sceVideoRecordingRestModeProcessStart) +STUB("pW5Q-ZBNZ4U", _ZN7WebCore4Page16setActivityStateEj) +STUB("pW6Oj8SC-2E", uloc_getDisplayName_67) +STUB( + "pWE9pFFi68Q", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V333CommunicationRestrictionStatusApi44ParameterToGetCommunicationRestrictionStatus9terminateEv) +STUB("pWFZWkRX16M", WKPageIsPinnedToTopSide) +STUB("pWFx2bo5OuQ", _ZN3sce7Toolkit2NP15AppSTLAllocatorIcEC2Ev) +STUB("pWJjCkKDbes", _ZN3sce2np10JsonStringD1Ev) +STUB("pWLG7WOpVcw", sceAgcDriverUnregisterResource) +STUB( + "pWXi2imUUcw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB( + "pWb7aWjy9JQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEC2EPS8_) +STUB("pWbsmM0vKvI", _ZN7WebCore13CSSStyleSheet8cssRulesEv) +STUB("pWfq6iqEo0Q", + _ZN7WebCore12SharedBufferC2EON3WTF6VectorIcLm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("pWg3+mTkoTI", CERT_rawVerifyOID) +STUB("pWh1MZkpWDo", _ZN3sce7Toolkit2NP2V27Session8SessionsaSERKS4_) +STUB( + "pWi-35AozuA", + _ZNK7WebCore11FontCascade8drawTextERNS_15GraphicsContextERKNS_7TextRunERKNS_10FloatPointEjSt8optionalIjENS0_24CustomFontNotReadyActionE) +STUB("pWkG2yY1f8g", X509_STORE_CTX_get_error) +STUB("pWkKuPgWHR8", _ZN4IPMI4impl11SessionImplC2Ev) +STUB( + "pWlqF5V2FwM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE5emptyEv) +STUB("pWmS7LajYlo", sceAudioOutGetSimulatedHandleStatusInfo) +STUB("pWmgWzoTWIE", _ZN3JSC17createSyntaxErrorEPNS_14JSGlobalObjectERKN3WTF6StringE) +STUB("pWneteSVJeI", sceCesGbUcsProfileSetSbcs) +STUB("pWntRpPm9kg", mono_perfcounter_foreach) +STUB( + "pWoV05qr-5s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEC1EPKS8_) +STUB("pWuDO5fb7Yw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEED2Ev) +STUB("pWwmsDizpB0", _ZN7WebCore6JSFile14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB("pWzdtw18an0", _ZN7WebCore22DefaultFilterOperationC1ENS_15FilterOperation13OperationTypeE) +STUB( + "pX--x2-9IOA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEEC1ERSA_) +STUB("pX-zIvHeGYI", _ZN7WebCore17JSDOMRectReadOnlyC2ERKS0_) +STUB("pX14dbZetTQ", _ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody11getTicketIdEv) +STUB("pX7xZaOlPk8", WKPageCanGoBack) +STUB("pXI1y1rz4+w", sceNpStartVsh) +STUB("pXJh3aVk8Ks", sceContentDeleteById) +STUB( + "pXMBJ4EVMzY", + _ZNK3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession26getSpectatorJoinableStatusEv) +STUB( + "pXMRqVV2YWs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEED1Ev) +STUB("pXRO7hiHbZw", _ZN3sce3Xml3Dom8Document9terminateEv) +STUB("pXU3zucemj8", + _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_16HTMLImageElementE) +STUB("pXVPlSQxwKM", _ZN3JSC13RuntimeMethod4infoEv) +STUB( + "pXYeGGzJXSM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEE21intrusive_ptr_sub_refEPS7_) +STUB("pXYlucRhimU", sceTsGetUrlEncryptionType) +STUB( + "pXZ-gZPRoKQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEE11release_refEv) +STUB( + "pXbe5-SLsnM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEEdeEv) +STUB("pXbjIk883pg", __tsan_mutex_pre_lock) +STUB( + "pXd41wIQpyI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEE7add_refEv) +STUB("pXgkBbeSZT8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEED1Ev) +STUB("pXkvVgBaFNQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEEaSERS7_) +STUB("pXnPhDouZC8", WKBundleOverrideBoolPreferenceForTestRunner) +STUB("pXv-WCokNsY", mono_string_new) +STUB("pXvbDfchu6k", strncasecmp) +STUB("pY1NNqZbJ+4", WKPageHasSelectedRange) +STUB("pY1mQY0ntQ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEC1Ev) +STUB("pY26MyYGt8Q", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_23NpIdListRankInformationEEC1Ev) +STUB( + "pY4jGLBgpMs", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody37unsetComparedLastUpdatedUserAccountIdEv) +STUB("pY7yMG1BXGU", _ZN12Mp4RetrieverC2Ev) +STUB("pYFelASnlTo", _ZN3sce7Toolkit2NP2V210Tournament5EventC1ERKS4_) +STUB( + "pYGXKb-fezA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEC1ERKS7_) +STUB("pYHt5lL67G8", WKPageWillHandleHorizontalScrollEvents) +STUB("pYINcHa7ayw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEEaSERS7_) +STUB( + "pYJ0xpu8WH0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEeqERKS9_) +STUB( + "pYNO1V7HAbk", + _ZN3sce7Toolkit2NP2V29Challenge13sendChallengeERKNS3_7Request13SendChallengeEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB( + "pYPATjupQ74", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE7reserveEi) +STUB( + "pYQG7HFyiGQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE4sizeEv) +STUB("pYX+BazQZ2A", _ZN9Inspector17ScriptDebugServerD1Ev) +STUB("pYoKs3lPy88", sceAgcDcbDrawIndirectMultiGetSize) +STUB("pYowsUXdydw", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_21AbortGameDataResponseEE3getEv) +STUB( + "pYr2DQmjB3A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEC1EPKS6_) +STUB( + "pYsmGy-7xoY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "pYtcnYfJyh4", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V333CommunicationRestrictionStatusApi44ParameterToGetCommunicationRestrictionStatusD2Ev) +STUB("pYwJJhTpTSY", WKRenderLayerGetNegativeZOrderList) +STUB( + "pYxBt2lRH1o", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("pZ1ctWkAU9Y", sceVorbisDecPcmSeek) +STUB( + "pZ6VqXKyYdI", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEEiRNS2_10LibContextEPT_m) +STUB( + "pZ7vaHMbdzU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("pZ9WXcClPO8", _ZTVN10__cxxabiv120__si_class_type_infoE) +STUB( + "pZBR7Homig0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEeqERKS9_) +STUB( + "pZE4MZyuo34", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEC1ERKS8_) +STUB("pZEuvsgyal8", _ZNK3sce2Np9CppWebApi6Common6VectorIiE5beginEv) +STUB("pZIfXtc8V3M", _ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetail16unsetDisplayNameEv) +STUB("pZL154KvMjU", sceUserServiceIsKratosUser) +STUB("pZLJkQq6x3k", uplrules_getKeywords_67) +STUB("pZLN3Bi59us", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEE3getEv) +STUB( + "pZXmVlo3uWs", + _ZN9Inspector14InjectedScript20getCollectionEntriesERN3WTF6StringERKS2_S5_iiRNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime15CollectionEntryEEENS1_13DumbPtrTraitsISC_EEEE) +STUB( + "pZdS-7qwKEs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE3endEv) +STUB( + "pZep7k3wmK8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEmmEi) +STUB("pZlOm1aF3aA", sceAudio3dAudioOutClose) +STUB( + "pZmQJ26DuXM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("pZvrLdhriNk", curl_version_info) +STUB("pa54YI0o9qg", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging25GameDataMessageAttachmentEEC1Ev) +STUB("pa5tm9SAR6Q", _ZN3sce7Toolkit2NP2V29Challenge7Request16ConsumeChallengeD1Ev) +STUB("pa9f4LzRbpw", rgctx_fetch_trampoline_mrgctx_5_p) +STUB("paAIs8klrR4", _ZN7WebCore9HTMLNames11charsetAttrE) +STUB( + "paALP-eUgtw", + _ZNK3sce2Np9CppWebApi14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBody6toJsonERNS_4Json5ValueEb) +STUB( + "paAXinP5Sr0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB( + "paBV3oIQHWI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEC1EPNS2_10LibContextE) +STUB("paCCZ5DrKZ0", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V224TestForProfanityResponseC1EPNS1_6Common10LibContextE) +STUB( + "paDWuzWSUDY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEC2EPS8_) +STUB("paE4W44wWtU", sceVrTrackerDeregisterDevice) +STUB("paHcj4DoPQ4", FcPatternAddCharSet) +STUB( + "paHn1z7+n5Y", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot8getgroupEv) +STUB( + "paHrdj7MXrs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEC1EPKS8_) +STUB( + "paJCCZZql+c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE7popBackEv) +STUB( + "paKY7v9SbmU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEED1Ev) +STUB( + "paTZUydafhg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEptEv) +STUB("paXZ12DD6nI", udata_setCommonData_67) +STUB( + "paoSKZuVu7k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEE11get_deleterEv) +STUB( + "pap4ILfLNCo", + _ZN3sce7Toolkit2NP2V27NpUtils22getAccountIdByOnlineIdERKNS3_7Request22GetAccountIdByOnlineIdEPNS2_4Core8ResponseINS3_5IdMapEEE) +STUB("papHVcWkO5A", _ZTSi) +STUB( + "paq1L9DeOMA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("pasmxuptQVc", + _ZN7WebCore11FrameLoader22findFrameForNavigationERKN3WTF12AtomicStringEPNS_8DocumentE) +STUB("patTzc7zBjw", _ZN3sce4Json6Object8iteratorD2Ev) +STUB("pavITQF6RPg", monoeg_g_log) +STUB("pavcy48PkDM", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getSubtitleLang) +STUB( + "paxFTkA1hjU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEC2EPS6_PNS2_10LibContextE) +STUB("paxl8uV+-a8", digits) +STUB("pb-liQoi9uQ", il2cpp_class_get_namespace) +STUB("pb0nCZ5k8Os", _ZN7WebCore15SQLiteStatement7prepareEv) +STUB( + "pb12vAbdWsY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEeqERKS9_) +STUB("pb20o9PCWxE", sceDebugIpmiGetClientKidListByDump) +STUB("pb27SXMl9IE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE21intrusive_ptr_add_refEPS7_) +STUB("pb2XPMV5beI", sceShellCoreUtilPostActivityForPsNow) +STUB( + "pb2tZUNFwdk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEED1Ev) +STUB( + "pb3-lRvcGxI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEE5resetEPS6_) +STUB("pb30-gZKW80", _ZN3sce7Toolkit2NP2V27Session7Request6Create15MAX_INDEX_VALUEE) +STUB("pb7gQyE4uLY", ucurr_getKeywordValuesForLocale) +STUB("pb8AS3aYSvs", _ZN3sce2Np9CppWebApi6Common6VectorIfE5beginEv) +STUB( + "pbDORofgH0U", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("pbIYanAlsV8", _ZN3sce7Toolkit2NP2V28Commerce7Request26DisplayProductBrowseDialogD2Ev) +STUB("pbKEH93JlIE", _ZN7WebCore9HTMLNames12selectedAttrE) +STUB("pbNIQx2DjPo", JVM_DesiredAssertionStatus) +STUB("pbNoy5OiS3k", _ZN7WebCore20LegacySchemeRegistry27registerURLSchemeAsNoAccessERKN3WTF6StringE) +STUB( + "pbODKYfA7pk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlot9setslotIdEi) +STUB("pbPYIhZc+9U", _ZNK7WebCore11FrameLoader6pageIDEv) +STUB("pbQYmZ8YkFs", _ZN7WebCore24CoordinatedGraphicsLayer21setBackfaceVisibilityEb) +STUB("pbT-iQht85o", _ZN4IPMI6Client6Config14MsgQueueConfigC2Ev) +STUB("pbTq-nEsN1w", SSL_setSessionFlags) +STUB( + "pbTtJVnBdXI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE7reserveEi) +STUB("pbUudIEKcm8", psl_dist_filename) +STUB( + "pbgXkzk-GCY", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEEC2Ev) +STUB("pbiAyrIGjxo", _ZN7WebCore23CoordinatedBackingStore14removeAllTilesEv) +STUB("pbl-VhuKb8g", _ZN3JSC4Heap26reportAbandonedObjectGraphEv) +STUB("pbnNnahE8vk", sceAmprMeasureCommandSizePopMarker) +STUB("pbolHsxA72U", _ULx86_64_init_local) +STUB( + "pbpdHEY1ch8", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setInteger1ERKi) +STUB("pbpgXFx3OlQ", X509_NAME_ENTRY_get_data) +STUB("pbq4TEu+qa0", UI_get0_user_data) +STUB("pbs5-GMRRKY", _ZN9Inspector40ApplicationCacheBackendDispatcherHandlerD0Ev) +STUB("pbsHpXSaGo0", uhash_iput_67) +STUB( + "pbyuNJy2-Y4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEE7get_refEv) +STUB("pc4-Lqosxgk", _ZTSPx) +STUB("pc4guaUPVqA", sceSaveDataGetMountedSaveDataCount) +STUB("pc6PxOmaeMg", sceVideoCoreLaunchVideoCore) +STUB("pc9NJOCM4pA", rgctx_fetch_trampoline_rgctx_78) +STUB("pcDd-Imyg-E", monoeg_g_array_free) +STUB("pcLFw6F9XHo", _ZN3sce4Json5Value3setERKSbIcSt11char_traitsIcENS0_8StlAllocIcEEE) +STUB( + "pcM-4gvmMus", + _ZN3sce2Np9CppWebApi7Matches2V131ResponseTeamMemberResultFactory6createEPNS1_6Common10LibContextEPKcdPNS5_12IntrusivePtrINS3_24ResponseTeamMemberResultEEE) +STUB("pcMWUfvnSVw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEaSERKS7_) +STUB("pcN-khOV8IU", _ZN3sce7Toolkit2NP2V210Tournament17OfficialBroadCastC1ERKS4_) +STUB("pcO3tHP+YZY", _ZN18scePssCAudioSystem20GetPlayerForResourceEjRjiiij) +STUB("pcR28kXlitA", uset_containsRange_67) +STUB("pcV2EOj8QXo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEEC2EPS6_) +STUB("pcdODEfEwdo", g_slist_nth) +STUB("pcgeS6said4", usearch_getOffset_67) +STUB( + "pcjrtQeaPNk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEC2Ev) +STUB( + "pcnyUwUrRLc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEED1Ev) +STUB("pcyX1aTQ75U", rgctx_fetch_trampoline_general_p) +STUB("pczcmuVoGFU", WKPreferencesGetShouldAllowUserInstalledFonts) +STUB( + "pcznuVqfb50", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEppEi) +STUB("pd02UI9TbOA", readlink) +STUB("pd0OULBpdtQ", _ZN3JSC7Options14dumpAllOptionsEP7__sFILENS0_9DumpLevelEPKc) +STUB("pd4C7da6sEg", sceGnmGetDebugTimestamp) +STUB("pdDq7y06YLw", _ZN3JSC7Symbols25iteratedObjectPrivateNameE) +STUB("pdESZ0dXj9A", _ZN3sce2Np9CppWebApi7Matches2V113ChildActivity8fromJsonERKNS_4Json5ValueE) +STUB("pdEV7bI6COI", sceAgcCreateInterpolantMapping) +STUB("pdHf4ajqblI", VerifyClassCodesForMajorVersion) +STUB("pdLJFDkJQno", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE3endEv) +STUB( + "pdLfaDNMkx8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEneERKS9_) +STUB("pdWyB2nnKnE", __sync_fetch_and_or_16_internal) +STUB( + "pdZQ2n5TuGI", + _ZN7WebCore9subdivideERKN3WTF6VectorINS_10MarkedTextELm0ENS0_15CrashOnOverflowELm16EEENS_15OverlapStrategyE) +STUB( + "pda39BIW0kE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE5beginEv) +STUB("pdbdz2ccLfo", sceDebugGetUltCondvarInfo) +STUB("pdgKDWdLmQg", _ZN3JSC8Debugger12atExpressionEPNS_9ExecStateE) +STUB("pdhVtBudcd4", _ZN3sce7Toolkit2NP2V26Friend16FriendsOfFriendsC2Ev) +STUB( + "pdk4tvTMjCs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE5beginEv) +STUB("pdoMKgNybi4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching5RoomsEE3setEv) +STUB("pdthjGxsmn4", _ZN7WebCore14SchemeRegistry33shouldTreatURLSchemeAsCORSEnabledERKN3WTF6StringE) +STUB("pdw32NjjNkc", uregex_groupUText_67) +STUB("pdwofrxAnAs", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody9getOffsetEv) +STUB("pe-Xg5L82M4", _ZN3sce7Toolkit2NP2V211UserProfile7Request24DisplayUserProfileDialogC2Ev) +STUB( + "pe1n0ow98yQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "pe2n1VYZ-vg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEE11get_deleterEv) +STUB("pe9LDCl9BvA", _ZN3sce2Np9CppWebApi14SessionManager2V130RequestGameSessionMemberPlayerD1Ev) +STUB( + "peEYULi5qdA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("peH3KIJ2R4k", mono_aot_ReactNative_Debug_DevSupportunbox_trampolines_end) +STUB("peRY-tJib-Y", uloc_toLegacyType) +STUB("peSbz8jaqpo", WKKeyValueStorageManagerGetCreationTimeKey) +STUB("peWBA9e0+AM", WTFLog) +STUB("peXVeJTTL-M", _ZN3sce2Np9CppWebApi15ProfanityFilter2V224TestForProfanityResponseD2Ev) +STUB( + "peXmkwDdTXk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEEC2ERS9_) +STUB("pebqbE5ws8s", siglongjmp) +STUB("pekT-IsAkQU", _ZN15AbstractStorage7Content12GetMimeTypesEv) +STUB("pesTllXToAQ", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_16SessionAttributeEE8allocateEmPKv) +STUB( + "peuXf6OVCgk", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData24getxPsnAtomicOperationIdEv) +STUB( + "pey3KFG3eb8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEmmEv) +STUB("pf0-lfD-+mk", _ZN7WebCore10TimeRangesC1Edd) +STUB( + "pf02T+-lqZs", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification14NewRoomMessageEE19setCustomReturnCodeEi) +STUB("pf2fwfamoG0", _ZNK7WebCore24CoordinatedGraphicsLayer17usesContentsLayerEv) +STUB("pf628cq+CQ4", _ZN3sce2np18HttpConnectionPool6IsFullEv) +STUB( + "pf6t9snlC+E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEEptEv) +STUB("pfBItkEwD0U", _ZN7WebCore18ImageBufferBackendD1Ev) +STUB("pfCKv1MsrF0", _ZN7WebCore16convertToIntegerImEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB("pfDXjZM40pA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus8fromJsonERKNS_4Json5ValueE) +STUB("pfEdqnJygn4", _ZN3JSC12StackVisitor13gotoNextFrameEv) +STUB( + "pfFcBByTwRU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("pfJgSA4jO3M", sceNpAtomicInc32) +STUB( + "pfLlLLvaxVY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEdeEv) +STUB( + "pfPsbP7fkBA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEE11release_refEv) +STUB( + "pfSFSC5piwM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEmmEv) +STUB("pfTzSIZFIwQ", sceSocialScreenReserveHighFrameRateVideoCaptureRequest) +STUB("pfXiPsHcrfE", Java_sun_awt_GnmUtils_bdjbgLock) +STUB("pfaJtb7SQ80", sceNpWebApiDeleteExtdPushEventFilter) +STUB("pfbhDk0QFBU", _ZN7WebCore8SVGNames9feTileTagE) +STUB("pfiqU2f6PQY", sceCamera2SetGamma) +STUB("pfn3Fha1ydc", sceNetEmulationSet) +STUB("pfn513lUppA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEED2Ev) +STUB( + "pfp-fm4gHng", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEE6assignEPS7_PFvS9_EPNS2_10LibContextE) +STUB("pfrX1wK6Pn4", _ZNK7WebCore8Document13axObjectCacheEv) +STUB("pfsfgcIdv8o", utext_next32From_67) +STUB("pfz4rzKJc6g", sceUserServiceSetSaveDataSort) +STUB("pg-rfgBX5i0", _ZN7WebCore6ISOBox14minimumBoxSizeEv) +STUB("pg1nCPwIcMI", mono_arch_build_imt_thunk) +STUB("pgAUdhIEdgc", _ZN3sce7Toolkit2NP2V23TSS7TssDataC2Ev) +STUB("pgCwGXHuMSA", _ZN3JSC7Symbols31promiseStateRejectedPrivateNameE) +STUB("pgFAiLR5qT4", sceNgs2SystemQueryBufferSize) +STUB( + "pgHUgJQ9YIE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEE11release_refEv) +STUB("pgJiHTB0vas", _ZN3WTF11Persistence7DecoderC2EPKhm) +STUB("pgMrBCaUTSE", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge10ChallengesEED2Ev) +STUB( + "pgQMZdH6zhc", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10setString1EPKc) +STUB("pgTD0qw023s", _ZN7WebCore15JSFetchResponse14finishCreationERN3JSC2VME) +STUB("pgTUnz0y0Z4", _ZN3JSC2VM14throwExceptionEPNS_14JSGlobalObjectENS_7JSValueE) +STUB("pgUZpAErN+k", Java_java_util_zip_Deflater_getBytesRead) +STUB("pgY7Rg3HlJA", _ZNK7WebCore23AuthenticationChallenge20authenticationClientEv) +STUB( + "pgbZH0LZY-4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEEaSERKSA_) +STUB("pgcFR5TmZp4", u_strToJavaModifiedUTF8_67) +STUB("pgcNwFHoOL4", sceNpTusGetMultiSlotDataStatus) +STUB("pgcpl5MSryg", _ZN3sce3pss4core7runtime20TerminateDiagnosticsEv) +STUB("pgfsfmVnZ80", _ZN7WebCore15SQLiteStatement14executeCommandEv) +STUB( + "pgjpsWo5Juc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEppEi) +STUB( + "pglLf7ffiao", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEmmEi) +STUB("pgmsbivJe6E", NET_GetSockOpt) +STUB("pgnOeOF2Nkc", _ZN7WebCore4Node11removeChildERS0_) +STUB("pgneomvAf9A", _ZN7WebCore11DisplayList20EndTransparencyLayerC1Ev) +STUB("pgrAmiR9KXc", png_create_read_struct) +STUB( + "pgtcMHy+JBg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEppEi) +STUB("pgvyZZ+d1ck", u_strCompare) +STUB("ph1MliUBME4", pi_lo) +STUB( + "ph8dhOGEod0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEE11get_deleterEv) +STUB("phGnhQ1dkQg", _ZN3sce7Toolkit2NP2V27Session17SessionInfoUpdateC1Ev) +STUB( + "phHXsd0zfno", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeaderD2Ev) +STUB("phLqTXCRrKs", _ZNK7WebCore9FrameTree11scopedChildERKN3WTF10AtomStringE) +STUB("phTWWsmF8Bw", _ZN3JSC18GCActivityCallback21s_shouldCreateGCTimerE) +STUB("phfrEjuQHv4", _ZNK7WebCore21UserContentURLPattern7matchesERKNS_3URLE) +STUB("phfswsU36v0", GCC_except_table554) +STUB( + "phhLKBZA5T4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEC1ERKS7_) +STUB("phi4au-2t04", FTA_Export_Module_cff) +STUB("phjL3OaXy2Y", _ZN3sce7Toolkit2NP2V211SharedMedia6Videos5resetEv) +STUB("phnc2tr9Qpo", mono_threads_attach_tools_thread) +STUB("phnjLKz4njM", aio_cancel) +STUB("php5E0sv9F0", sceDeci4hDrfpOpen_fuse_fullpath) +STUB("phpvMCk4Thw", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V19JoinStateEEmmEv) +STUB( + "phqcPGBe3jc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("phrfcTjyAjg", rgctx_fetch_trampoline_rgctx_106_p) +STUB( + "phs4MSUNkNA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEppEv) +STUB( + "phueB6QtB5o", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("pi90NsG3zPA", sceLibcMspaceCreateForMonoMutex) +STUB("piCcjGsXCFA", _ZN3sce7Toolkit2NP2V26Friend7Request10GetFriendsD2Ev) +STUB( + "piFbAbHqJzo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEEC2ERKSA_) +STUB("piG6ktf2BTU", _ZN15AbstractStorage14StorageManager20get_service_instanceENS_11ServiceTypeE) +STUB("piIWwrIiWBo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEppEi) +STUB("piJabTDQRVs", _ZNSbIwSt11char_traitsIwESaIwEE6assignERKS2_mm) +STUB("piKOKYLjAKM", _ZN4IPMI4impl10ServerImpl18doAsyncCallRequestEiPvi) +STUB( + "piNyT-1unL4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEED2Ev) +STUB("piQw9Ke3H9E", mono_assembly_open) +STUB("piUmuhIuQBs", _ZN3WTF3URL21setFragmentIdentifierENS_10StringViewE) +STUB( + "piWGad-OQsI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE8copyFromERKS9_) +STUB("piWdZNlOTLo", glCopyTexSubImage3D) +STUB( + "piYVneH1f8I", + _ZN7WebCore12ChromeClient24didAssociateFormControlsERKN3WTF6VectorINS1_6RefPtrINS_7ElementENS1_13DumbPtrTraitsIS4_EEEELm0ENS1_15CrashOnOverflowELm16EEE) +STUB( + "piev9QvnVfA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE21intrusive_ptr_sub_refEPS7_) +STUB("pigZNPpN0eE", mono_arch_setup_jit_tls_data) +STUB("pijY8IMRCTQ", _ZN3sce7Toolkit2NP2V29Messaging12Notification18NewGameDataMessageD1Ev) +STUB("pimWNsC+fcM", _ZN7WebCore24FrameDestructionObserverD2Ev) +STUB("pirtQS12b7E", _ZN3sce7Toolkit2NP2V212EventsClient12EventDetails22MAX_NUM_RELATED_EVENTSE) +STUB( + "piwaHUn7QjQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEC2EPS6_PNS2_10LibContextE) +STUB( + "pj2BLRex3hI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE8capacityEv) +STUB( + "pj5WrKeK87g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEEaSERSA_) +STUB( + "pjBb1tD5BdA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEEaSERSA_) +STUB("pjFe3a7J1Qg", _ZN3JSC8Debugger13pauseIfNeededEPNS_14JSGlobalObjectE) +STUB("pjGOFX2e3MM", _ZN7Nicosia16SceneIntegration6createERNS_5SceneERNS0_6ClientE) +STUB("pjNd-xUVAdU", _ZN3sce2np10JsonObject8SetFieldEPKcmPPNS0_10JsonNumberE) +STUB("pjPCronWdxI", scePadVirtualDeviceDisableButtonRemapping) +STUB( + "pjVGJ0B1cfo", + _ZN7WebCore14DocumentLoader21setCustomHeaderFieldsEON3WTF6VectorINS_18CustomHeaderFieldsELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB( + "pjVbgaScJWc", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_34DetailedProductInfoListInputParams9ProductIdEE8allocateEmPKv) +STUB("pjWdrjrTepQ", _ZN3sce2np10JsonNumberD2Ev) +STUB("pjYjuwxaZYI", _ZN7WebCore8SVGNames20maskContentUnitsAttrE) +STUB("pjZ+3rsSJbY", + _ZN3WTF8JSONImpl9ArrayBase7asArrayERNS_6RefPtrINS0_5ArrayENS_13DumbPtrTraitsIS3_EEEE) +STUB("pjcKlYf+CRY", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V115CompetitionTypeEEC2EPS6_) +STUB("pjgp0s6o2PY", _CompoundTextData_67) +STUB("pjkDsgxli6c", sceVideoOutModeSetAny_) +STUB( + "pjtBReGInLo", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot19unsetnpServiceLabelEv) +STUB("pjv9sziz-UE", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_28AdditionalSessionInformationEED1Ev) +STUB("pk0AuomQM1o", sceHttpSetHttp09Enabled) +STUB("pk3Ve1iKYlg", _ZZ16_SetgloballocaleE10registered) +STUB("pk3gvztshvk", mono_aot_JSC_Netplt_end) +STUB( + "pk4Pu8Ljs98", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEED2Ev) +STUB("pk4p3CEJflE", sceFaceIdentifyLiteGetWorkingMemorySize) +STUB("pk6gDcQRKxs", cairo_font_options_set_subpixel_order) +STUB( + "pk78PSpgheI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEppEv) +STUB("pkGTJH2IstM", u_memchr32) +STUB("pkGd7QQqUPc", utrie_unserialize_67) +STUB( + "pkKfmORC96w", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("pkP97nU1QO4", WKPageConfigurationSetWebsiteDataStore) +STUB("pkRrHiX3o1s", mono_aot_Sce_Vsh_Orbis_ContentManagerjit_code_end) +STUB( + "pkTwnsB6jVQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEC2EPS8_) +STUB("pkWZ8Cj8AOM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V110UpdateModeEEneERKS7_) +STUB("pkY05qCmfDU", _ZN3JSC24TerminatedExecutionError6s_infoE) +STUB( + "pkY4tvgkS8A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEE7get_refEv) +STUB("pkYiKw09PRA", fseeko) +STUB("pkbUKLl2x8Y", mono_exception_from_name) +STUB("pkp3QbugMSA", uloc_setDefault_67) +STUB( + "pkrLr63jSpA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE3endEv) +STUB("pkri5OAPsJk", sceOpusCeltDecTerminate) +STUB("pkuKqhkpVG4", WKPreferencesSetCaptureVideoInGPUProcessEnabled) +STUB("pkvTLVJ+Crs", _ZN7WebCore18JSHTMLMediaElement9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "pl0-DMiyMy8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE4sizeEv) +STUB("pl1KxL35BEA", rgctx_fetch_trampoline_mrgctx_2) +STUB("pl2aP-pdYRc", ucnv_detectUnicodeSignature) +STUB("pl4pWsecyrY", sceFiosFHPreadv) +STUB("plFfI6NhbaM", _UTF16BEData_67) +STUB("plK52OfeEIc", sceShellCoreUtilGetUserIdOfMorpheusUser) +STUB("plOum3e+U+Y", _ZN7WebCore12SharedBuffer6appendEPKcm) +STUB("plP0UcQ6jRk", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11InvitationsEED2Ev) +STUB("plUh+Axzi30", + _ZNK3sce2Np9CppWebApi12Leaderboards2V122GetRankingResponseBody22getLastUpdatedDateTimeEv) +STUB("pla0a0fKGeM", GCC_except_table203) +STUB("plbxmi4Te84", WKPageGetSourceForFrame) +STUB( + "plc8gLfdRIg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE6insertENS2_13ConstIteratorIS9_EERKS9_RSC_) +STUB("pldj9rH-ldA", _ZN7WebCore8SVGNames13clip_pathAttrE) +STUB( + "pleuuED1nRY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB("plgjsu34VAA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE8pushBackERKS8_) +STUB("pliO538pAGM", _ZTVN7WebCore11DisplayList15DrawNativeImageE) +STUB("pllCQeJFVOA", mono_aot_Sce_Vsh_Orbis_BgftAccessorjit_got) +STUB("pllJ6xDOUj8", _ZNK7WebCore13ContainerNode17firstElementChildEv) +STUB("plrvkKV-6B4", sceMusicCoreServerSelectCore) +STUB( + "plvkkA-vsRM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEE11release_refEv) +STUB("pm1zY5K6mBA", _ZN3JSC12CachePayloadC2EOS0_) +STUB( + "pmANUMgPHTU", + _ZN3sce2Np9CppWebApi12Leaderboards2V112EntryFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5EntryEEE) +STUB( + "pmBcVkOdcls", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEE11get_deleterEv) +STUB("pmGIATxaodw", _ZN3sce2Np9CppWebApi7Matches2V117ResponseMatchTeam12unsetMembersEv) +STUB("pmHBFJyju9E", sceNpUtilGetWebApi2FakeRateLimit) +STUB( + "pmHLV+ygY8E", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_11ProductInfoENS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv) +STUB( + "pmKJmr54KI4", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot13isInitializedEv) +STUB( + "pmLjYlo30E8", + _ZN23sceMetadataReaderWriter15ParserInfoTable18registerParserInfoERKSt6vectorINS_10ParserInfoESaIS2_EE) +STUB( + "pmNGAJT0a5k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("pmS3ZsTZjRo", _ZN7WebCore10OriginLockD1Ev) +STUB("pmTLXT9+iZ8", mono_btls_x509_get_issuer_name) +STUB("pmW5v9hORos", sceUserServiceSetPlayTogetherFlags) +STUB( + "pmYCSFQ3s8I", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEC2EPS8_) +STUB("pmZ0xgBMeqo", _ZN7WebCore12BlobRegistryC2Ev) +STUB("pmZi4yM8pxM", WKBundleFrameAllowsFollowingLink) +STUB( + "pmgE9a-bpHQ", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectatorC1Ev) +STUB( + "pmidbiFcQTs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEEC1ERKSA_) +STUB("pmjobSVHuY0", sceNetCtlApRegisterCallback) +STUB("pmlJvP+0kb0", u_isMirrored_67) +STUB("pmqZU82Xnbo", _ZN3WTF11Persistence7EncoderlsEi) +STUB("pmsiKjV1nU0", _ZN7WebCore10JSLocation12getPrototypeEPN3JSC8JSObjectEPNS1_14JSGlobalObjectE) +STUB("pn+qaJirfGI", _ZN3sce2np14JsonObjectImplD1Ev) +STUB("pn25GI6nxCY", EC_KEY_set_group) +STUB( + "pn6mAzCPrQY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEplEm) +STUB("pn8nk-yt6yU", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V224TestForProfanityResponse10setMessageEPKc) +STUB("pnGWJKqlAss", WKPageGetBytecodeProfile) +STUB("pnHR-aj9edo", sceUserServiceSetGlsCameraReflection) +STUB( + "pnHs8kwO0NU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEE11get_deleterEv) +STUB("pnKvyFASuLM", mono_aot_Sce_Vsh_Np_Managermethod_addresses) +STUB("pnNMkgu6kNQ", JVM_ClassDepth) +STUB("pnViDRPI0YM", _ZN7WebCore17PageConsoleClient10profileEndEPN3JSC9ExecStateERKN3WTF6StringE) +STUB( + "pnY3iN-5O9A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEEC1Ev) +STUB("pnZXireDoeI", scePadDisconnectDevice) +STUB( + "pnbkxcj4FKg", + _ZN3sce2Np9CppWebApi14SessionManager2V136RequestPlayerSessionSpectatorFactory7destroyEPNS3_29RequestPlayerSessionSpectatorE) +STUB( + "pncKzlpsGBs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEptEv) +STUB( + "pngYSqXU4JA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("pngra5JlGpI", _ZN9Inspector24RemoteControllableTargetC2Ev) +STUB("pnhfr5I83G8", _LMBCSData5_67) +STUB("pnhvMEwCg3A", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEEC1Ev) +STUB("pnppB2o6Mz4", _ZN9MmsMp4BoxD0Ev) +STUB( + "pnqlQsByWBQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEE11get_deleterEv) +STUB("pnrTbQPxeSE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEC1ERS7_) +STUB("pnrTmk9jY8s", _ZN3WTF16AtomicStringImpl11addSlowCaseERNS_10StringImplE) +STUB( + "pnxT7ugMINU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE8pushBackERKS8_) +STUB( + "pnzAE1C-qYA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("po1M8887cuw", setVideoMode) +STUB("po1PLRReuiA", + _ZN3sce2Np9CppWebApi14SessionManager2V131JoinedPlayerSessionWithPlatform13unsetPlatformEv) +STUB( + "po1VWYQ8bno", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("po1X86mgHDU", sceSslEnableVerifyOption) +STUB("po33migRv1I", sceMbusDebugSetOtherProcessExcludedAction) +STUB( + "po5vyX+Wq3A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEE7add_refEv) +STUB("po7-qgrfFYE", _ZN7WebCore12ChromeClient14elementDidBlurERNS_7ElementE) +STUB( + "po78zwMkJ-I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEED2Ev) +STUB("po9eImAEhY4", sceVoiceChatRequestRegisterSession) +STUB("poNkx+sxJwo", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEE5resetEPS6_) +STUB( + "poQIXjmdiXw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEC2Ev) +STUB("poQaKh1C0pI", _ZNK7WebCore8FormData14asSharedBufferEv) +STUB("poR69U9yJdc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEEaSERKS7_) +STUB("poSZevJzCfA", _ZN3WTF21sentenceBreakIteratorENS_10StringViewE) +STUB("poXzXMJahvY", _ZN3sce7Toolkit2NP2V24Core7Request20DefaultRequestParamsC1Ev) +STUB("poYmiDn8pMc", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEEC2Ev) +STUB("poZA3taGwok", _ZN23sceMetadataReaderWriter10jpegParser18jpegParserFinalizeEv) +STUB( + "podVPPEQoYo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEED2Ev) +STUB("poiq+MU6ve8", __asan_poison_intra_object_redzone) +STUB("poksl3FygPM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session14InvitationDataEE3getEv) +STUB("ponsEALyh+U", + _ZN7WebCore6DOMURL15createPublicURLERNS_22ScriptExecutionContextERNS_14URLRegistrableE) +STUB("popS2EonCvE", YGNodeStyleSetMinHeight) +STUB("poqHjBxSoWs", _ZN3JSC20JSStringHeapCellTypeD0Ev) +STUB("potS1HOUEe4", _ZN3JSC12SymbolObjectC1ERNS_2VMEPNS_9StructureE) +STUB("pp+0lObTso0", _ZN3JSC12CachePayloadC1EOS0_) +STUB("pp-4dgShzik", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEEC2Ev) +STUB( + "pp-4lD+ZtPc", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions28getxPsnAcceptPlatformNamePs5Ev) +STUB("pp88xnRgJrM", _ZN3sce2np15CancelableScopeC2Ev) +STUB( + "ppDbdCtJ7iI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("ppGBCnDG3vg", g_slist_length) +STUB("ppGQy8LSfjI", _ZN3NTF18CreationParametersC1Ev) +STUB( + "ppJ4ozefjhQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEED1Ev) +STUB("ppKEnUaCRFE", mono_aot_Sce_Vsh_RequestShareStorageWrapperjit_got) +STUB( + "ppNxg297XLg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEE11get_deleterEv) +STUB("ppR2zSPkEJE", _ZN9Inspector20InjectedScriptModuleD2Ev) +STUB( + "ppSOTl37-+k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEC1Ev) +STUB( + "ppU82Obfy84", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEC2Ev) +STUB( + "ppVmWy76iFA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEE7add_refEv) +STUB("ppWFdoDMMSs", sceLncUtilGetAppIdOfMiniApp) +STUB("ppYD8W2a7NE", uset_applyPropertyAlias_67) +STUB("ppYGbPKiUxo", _ZN12video_parser17cTsFFLHndlManagerD2Ev) +STUB( + "ppaQfUmmLyw", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUser19unsetnpServiceLabelEv) +STUB("ppavVktd1RY", _ZN3JSC11ArrayBuffer22tryCreateUninitializedEjj) +STUB("ppgCt8zkm9o", mono_aot_Sce_Vsh_Np_Asmjit_code_start) +STUB("pphEhnnuXKA", _ZTISt7collateIwE) +STUB( + "ppjd1qDhrtI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEE5resetEPS6_) +STUB( + "pppF-YqaXbE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEEptEv) +STUB( + "ppsXSSP3exY", + _ZN9Inspector21PageBackendDispatcher28setCompositingBordersVisibleElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("ppuI25hXypA", _ZNK7WebCore22EmptyFrameLoaderClient9userAgentERKN3WTF3URLE) +STUB("ppyod3XEauc", _ZN15AbstractStorage14MemfileContent4OpenEit) +STUB( + "pq7sFJ6E6Sg", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEED1Ev) +STUB("pq8SV3vBKGE", sceFsMountPartiallyCryptedDownloadData) +STUB( + "pq9ZdG93LCc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEED2Ev) +STUB( + "pqArETTj4rQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEEC2Ev) +STUB("pqHqTLkcCsI", _ZN7WebCore9HTMLNames10acronymTagE) +STUB( + "pqJpLI+u49o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEE21intrusive_ptr_sub_refEPS7_) +STUB("pqMwW+z6Bqk", _ZN3sce7Toolkit2NP2V27Ranking10UsersRanks5resetEv) +STUB( + "pqcl+yHDEsc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE7popBackEv) +STUB( + "pqgzzKTGrtw", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeader35hasxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB("pqkUIVdtoD0", _ZN7WebCore8SVGNames4initEv) +STUB("pqkwFXiIzQc", sceSdecGetVersionSwHevc) +STUB("pqm3fr0Gwig", _ZN7WebCore11FontCascadeC2ERKNS_16FontPlatformDataENS_17FontSmoothingModeE) +STUB( + "pqyKuI4+ybA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "pr23JEHeZSw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEC1EPKS8_) +STUB( + "prEXXn3y2lQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "prJ++4gQB9U", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionProperties9terminateEv) +STUB("prLlUz38GWA", _ZN3NTF5Cache16DiskCacheManagerD2Ev) +STUB("prSVrFdvQiU", CERT_getCertificateKeyUsage2) +STUB("prYOfcDkSOM", fuse_daemonize) +STUB("prZNuK3iTi8", sceNpManagerIntTerm) +STUB("pra1acTrS9Y", _ZNK3WTF8JSONImpl9ArrayBase10memoryCostEv) +STUB( + "prdnkHm+2Dw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE7popBackEv) +STUB("pre9BjkyDhs", mono_runtime_invoke) +STUB("prj9aMR74bA", _ZN3sce2np3ipc10IpmiClient11IsConnectedEv) +STUB( + "prkiJfwOJF0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEC1EPNS2_10LibContextE) +STUB( + "prny-f68N0c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEaSERS7_) +STUB("prqMnBIs0A8", _ZNK7WebCore14CredentialBase4userEv) +STUB("prrajDZ+qo8", delegate_virtual_invoke_4_p) +STUB("prtyx-DpDa4", _ZN23sceMetadataReaderWriter16extractThumbnailERKSsjRNS_9ThumbnailE) +STUB("prvA2U9aEOI", _ZThn32_N7WebCore14DocumentLoader12dataReceivedERNS_14CachedResourceEPKci) +STUB( + "prvmTVTf+VU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEE5resetEPS9_) +STUB( + "pry1Wu-+oGc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE28getResponseInformationOptionEv) +STUB("ps1pljzurbc", unum_setSymbol_67) +STUB("ps246w9eXI8", _ZN3sce2npeqERKNS0_4TimeERK10SceRtcTick) +STUB( + "ps3D17Djuzk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEmmEv) +STUB( + "ps4+Mi9GiUk", + _ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_errorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_17PsnWebError_errorEEE) +STUB("ps6DScRSuzA", mono_aot_Sce_Vsh_GameCustomDatajit_code_start) +STUB( + "ps9dR2UwMZE", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemPropertiesD1Ev) +STUB( + "psAFGoh26OY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("psEBzx9eWFY", _ZN3sce7Toolkit2NP2V210Tournament12EventDetailsC2ERKS4_) +STUB( + "psHqSERB9-U", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("psL2NgHxoHk", _ZN9Inspector31RuntimeBackendDispatcherHandlerD1Ev) +STUB("psLU09dc2Vc", scePsmUtilInitialize) +STUB("psMmvmdPKds", PEM_read_RSAPrivateKey) +STUB("psMw46v680s", mono_context_init) +STUB("psXSO6UJhdk", _ZN23sceMetadataReaderWriter13ParserManager20unregisterParserInfoEv) +STUB( + "psXX8fBD-dQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEE3getEv) +STUB("psb-WHk17uM", _ZN9Inspector33InspectorBackendDispatcherHandlerC2Ev) +STUB("psdqLsaPnkk", cairo_show_text) +STUB("psfRkWQkO6A", _ZN3sce7Toolkit2NP2V27Session8SessionsC2Ev) +STUB("psjVBg5y6OM", _ZN7bmalloc11IsoTLSEntryD0Ev) +STUB("pstHydwsxu8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEC1ERKS7_) +STUB( + "psv1BCNjMlo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEE11get_deleterEv) +STUB("psv2gbihC1A", sceAudio3dReportUnregisterHandler) +STUB( + "psvXpSy4w6U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEC2Ev) +STUB("pswNs+jkuMs", mono_metadata_generic_class_is_valuetype) +STUB("psx0YiAKm7k", fegetenv) +STUB( + "pszaab3+KQ4", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12Notification14NetStateChangeEE12deepCopyFromERS8_) +STUB("pszozBA4Ceo", WKBundlePageSetFullScreenClient) +STUB("pt0Eyg26hqw", WKAXObjectRole) +STUB("pt1GkEbsFU0", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce19ServiceEntitlementsEE5resetEv) +STUB("pt5E-D13kf0", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession14getCustomData1Ev) +STUB("pt8E9JYqZm4", _ZN3sce2npneERKNS0_10NpOnlineIdES3_) +STUB( + "pt9I-cOjb+A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEppEv) +STUB("ptB75ZpQkTk", _ZNK7WebCore12CSSStyleRule12selectorTextEv) +STUB("ptE7eJxWp0c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE3endEv) +STUB("ptEq8HFfa58", sceSystemTtsCancel) +STUB( + "ptHzPSL8UZA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEeqERKS9_) +STUB("ptJ0UzKA1RQ", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110ResultTypeEEeqERKS7_) +STUB("ptL8XWgpGS4", __clzsi2) +STUB("ptLHakydn9Y", JVM_DTraceIsSupported) +STUB("ptLO-Q70PM0", __CTOR_END__) +STUB( + "ptM3HXJZxAQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEED1Ev) +STUB("ptTcX4k6zB4", _ZN7WebCore17CSSPrimitiveValue13setFloatValueENS_11CSSUnitTypeEd) +STUB( + "ptWfe9KT6kk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEED1Ev) +STUB("ptYKwIWRtmg", SSL_get_wbio) +STUB("ptb571AzPy4", _ZN4IPMI4impl11SessionImpl7sendMsgEjPKvmPj) +STUB("ptcVrGLXo2g", _ZN7WebCore8SVGNames21feSpecularLightingTagE) +STUB("pte3M-79b9E", sqlite3_db_release_memory) +STUB("ptecTDe+jIU", _ZN3WTF9BitVector13OutOfLineBits7destroyEPS1_) +STUB("pthr+JHvjZI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEmmEv) +STUB("ptilqlqqqA4", ufmt_isNumeric_67) +STUB( + "ptnYYiZ9EZM", + _ZN3sce2Np9CppWebApi14SessionManager2V124SearchGameSessionFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_17SearchGameSessionEEE) +STUB("ptnisEt6NKA", mono_class_value_size) +STUB("ptoJYu3CkyQ", sceMatRegisterOwner) +STUB( + "ptqBLEPkiy0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEE7add_refEv) +STUB("ptrpYTFs0Sc", _ZN3sce2Np9CppWebApi7Matches2V122RequestPlayerStatisticD2Ev) +STUB("ptwhA0BQVeE", _ZNSt6locale6globalERKS_) +STUB("pu1ZY4p73F0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEED2Ev) +STUB( + "pu2X4vOIY+k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("pu39pU8UgCo", sceNpBase64Encoder) +STUB("pu4kxXkYz3E", sceVideodec2CreateHevcDecoder) +STUB( + "pu6KdQ3Ob30", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("pu7PhyzEQj4", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_28ActivityFeedSharedVideoStoryEEeqERKS4_) +STUB("pu8CWYnACfE", _ZN7WebCore13isStartOfLineERKNS_15VisiblePositionE) +STUB( + "pu8rvX5Cs68", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEED1Ev) +STUB("puHrnP8V-dY", sceMbusEventReceive) +STUB("puIp2blegQg", _ZN3WTF13StringBuilder6appendEPKDsj) +STUB("puKN8NkZWLw", _ZN3JSC7Symbols27compileStreamingPrivateNameE) +STUB( + "puLucQV9ugU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE4sizeEv) +STUB("puQuMVvVcwQ", _ZNK13MsvMetaEditor17isFragmentedMovieEj) +STUB( + "puS8i8qrHTo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEC1Ev) +STUB("puT82CSQzDE", sched_setscheduler) +STUB( + "puXXiEInTOQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEneERKS9_) +STUB( + "puakWgWqnmw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE4sizeEv) +STUB( + "pualRC7d67E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("pubVXAG+Juc", sceUserServiceSetNpOnlineId) +STUB( + "puesPxZFDaQ", + _ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer12setJoinStateERKNS3_16InitialJoinStateE) +STUB("pugWCMMWZ6w", _ZN7WebCore11BidiContext41copyStackRemovingUnicodeEmbeddingContextsEv) +STUB("pupKRlW6z-w", WKFrameCanProvideSource) +STUB("pv0SZf2Y4Rc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE5emptyEv) +STUB("pv2etu4pocs", remainder) +STUB("pv62hFssuN0", _ZN3JSC8JSObject6s_infoE) +STUB( + "pv7cJ4UKycQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE6resizeEj) +STUB("pv9CI5VC+R0", sceVideoOutAdjustColor_) +STUB("pv9M2jHJ6iw", ksem_close) +STUB("pv9qYGyI3+U", sceMbusSetUserMuteStatus) +STUB( + "pvAkZRnxwHg", + _ZN9Inspector31ScriptProfilerBackendDispatcher6createERNS_17BackendDispatcherEPNS_38ScriptProfilerBackendDispatcherHandlerE) +STUB("pvGklMDOeSk", scePlayReadyMemAlloc) +STUB("pvKooBHIGck", JSRemoteInspectorSetInspectionEnabledByDefault) +STUB( + "pvQ+t1DFOJs", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "pvQ4lWmooiU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEptEv) +STUB( + "pvRf2YD38ao", + _ZN9Inspector27DOMStorageBackendDispatcher20clearDOMStorageItemsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("pvS3ah9jYFA", _ZL26_sceLibcDeleteArrayNothrowPvRKSt9nothrow_t) +STUB( + "pvSc2kfFbCw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEED1Ev) +STUB("pvTkErDXk9Y", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIjED2Ev) +STUB("pvUFDOHilnE", sceAmprAmmCommandBufferDestructor) +STUB("pvVutouDb0k", _ZN7WebCore9HTMLNames8dataAttrE) +STUB("pvY8x-Orrtg", ucnv_getAliases_67) +STUB("pvlMMFCqIjo", + _ZNSt15basic_streambufIwSt11char_traitsIwEE7seekposESt4fposI9_MbstatetENSt5_IosbIiE9_OpenmodeE) +STUB("pvngPUCq7Ag", mono_aot_Sce_Vsh_Np_AppLaunchLinkunbox_trampolines_end) +STUB("pvqbxIs0WrE", _ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest17matchResultsIsSetEv) +STUB("pvrxLNz47ZY", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEEcvbEv) +STUB("pvuuD5bRjf0", sceEsvmEngineMediaKeySystemAccessCreateMediaKeys) +STUB("pvw-vL7XCVU", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_20ChallengeRecvDetailsEEC1Ev) +STUB("pvyGn4aGOPg", _ZN7WebCore8Document35webkitWillEnterFullScreenForElementEPNS_7ElementE) +STUB("pw+70ClLYlY", pthread_spin_lock) +STUB("pw+zuLAiI3U", JSPropertyNameAccumulatorAddName) +STUB("pw7u7WgTeJs", sceRnpsAppMgrCreateUpdateRequest) +STUB("pw7y4QBCXho", + _ZNK3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate6toJsonERNS_4Json5ValueEb) +STUB( + "pw8fw8zXV8Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE8capacityEv) +STUB( + "pwCgFRs7EGs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEptEv) +STUB( + "pwGsf78pCmc", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEEiRNS2_10LibContextEPT_m) +STUB("pwJkDsaYSPg", JSMemoryActivitySettingsConfigSCE) +STUB("pwK2decHfCE", _ZN7WebCore9HTMLNames6subTagE) +STUB("pwKvaV-T4UI", _ZNK7WebCore19HTMLOptGroupElement14groupLabelTextEv) +STUB("pwL2DHoqP74", udata_setAppData_67) +STUB( + "pwMf23mWGok", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEC1EPNS2_10LibContextE) +STUB( + "pwYzUX2AUj8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEC1EPS8_) +STUB("pwfB2NmlBYk", _ZNK3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap13getIsRecycledEv) +STUB( + "pwgFEtS6yX4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEEcvbEv) +STUB("pwl29nuNnqI", glDisable) +STUB( + "pwla28qrC5U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE4sizeEv) +STUB( + "pwlaDmjLRvg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEneERKS9_) +STUB("pwmheU-TDRE", _ZN3sce7Toolkit2NP2V26Friend12Notification16FriendlistUpdate5resetEv) +STUB("pwnE9Oa1uF8", sceNpTusDeleteMultiSlotVariableA) +STUB( + "pws9868taPs", + _ZN7WebCore6Editor28replaceSelectionWithFragmentERNS_16DocumentFragmentENS0_17SelectReplacementENS0_12SmartReplaceENS0_10MatchStyleENS_10EditActionENS_22MailBlockquoteHandlingE) +STUB("pwsiDMmVexg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia11ScreenshotsEEC1Ev) +STUB( + "px-ljoRlBsM", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "px3NuWFK2ck", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScore25setrecordScoreRequestBodyENS1_6Common12IntrusivePtrINS3_22RecordScoreRequestBodyEEE) +STUB("pxBsD-X9eH0", sceHttpDbgShowStat) +STUB("pxFnS1okTFE", _Fetch_and_8) +STUB("pxJceSvRIwo", mono_aot_Sce_Vsh_Messagesunbox_trampoline_addresses) +STUB("pxOxU2MPbqw", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification18NewGameDataMessageEEC2Ev) +STUB("pxPzCHnJ4SA", _ZN3sce2Np9CppWebApi14IdentityMapper2V312AccountIdMapD1Ev) +STUB("pxSamUuGTCA", mono_aot_Sce_PlayStation_Corejit_code_end) +STUB("pxaRurrLwhc", _ZN3NTF6Cookie11CookieJarDB10initializeEiPKc) +STUB( + "pxaiIdb3vm4", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129MatchCompletionRateProperties7setQuitERKNS1_6Common12IntrusivePtrINS3_30MatchCompletionRateQuitMetricsEEE) +STUB( + "pxeE7oPw2Jk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEE11get_deleterEv) +STUB( + "pxfOofcLLYU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEC1Ev) +STUB("pxnCmagrtao", listen) +STUB("pxnbpFzaPqQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEC1Ev) +STUB( + "pxqjxpEO7To", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE10setContextEPNS2_10LibContextE) +STUB("pxsEKRiWAMw", WKPageLoadAlternateHTMLString) +STUB( + "pxtarjzxY4o", + _ZN7WebCore8Document25setConsoleMessageListenerEON3WTF6RefPtrINS_14StringCallbackENS1_13DumbPtrTraitsIS3_EEEE) +STUB("pxx-GoOSdw4", sceAgcAcbSetMarkerSpan) +STUB( + "pxznvCp8ZxQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEeqERKS9_) +STUB("py3XgZy9cec", T3lo) +STUB("py6L8jiVAN8", sceKernelGetSanitizerMallocReplaceExternal) +STUB("py8-vzIY-RY", sceNetCtlApDialogInitialize) +STUB("py8p6kZcHmA", sceCameraRemoveAppModuleFocus) +STUB("pyAyDVpDOhw", sceKernelGetProductCode) +STUB("pyBabUesXN4", _ZNSt10moneypunctIwLb1EEC1EPKcm) +STUB("pyCXumhqCwA", + _ZThn24_N9Inspector18InspectorHeapAgent17didGarbageCollectEN3JSC15CollectionScopeE) +STUB("pyKuV2SE-jQ", _ZN3JSC25JSSegmentedVariableObject17findVariableIndexEPv) +STUB("pyOvcVqEWm8", _ZN3JSC8DebuggernaEmPv) +STUB("pyQGSKQNhyc", _ZN3sce7Toolkit2NP2V210Tournament5EventC1Ev) +STUB( + "pyROYtDTUUE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEED1Ev) +STUB("pyTwHOBu94E", _ZN9Inspector28DOMDebuggerBackendDispatcherD2Ev) +STUB( + "pygrsRxjMH4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEdeEv) +STUB("pyoZ0o2qhgE", sceTsEnableRepresentation) +STUB("pypgpxtISiE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEEplEm) +STUB( + "pyuM66t-j60", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEEcvbEv) +STUB("pyuaQ-qKOS4", _ZN3sce7Toolkit2NP2V212EventsClient7EventIdD1Ev) +STUB("pz4hSShqA4g", rgctx_fetch_trampoline_rgctx_55_p) +STUB("pzDvOlb2dm4", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error6toJsonERNS_4Json5ValueEb) +STUB("pzGuDRM9Xu4", _ZNK4Manx6Cookie14netscapeCookieEv) +STUB("pzL+aAk0tQA", sceNpTrophySystemGetTitleSyncStatus) +STUB( + "pzPZVK1DHr4", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124NatConnectivityToMetrics18setConfidenceScoreERKi) +STUB("pzU95Jvku7A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEEppEi) +STUB("pzUa7KEoydw", sceLibcMspaceIsHeapEmpty) +STUB("pzUm3CfzWjI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE5eraseENS2_8IteratorIS6_EERS9_) +STUB("pzbbsK7QLws", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEC2Ev) +STUB( + "pzcIMVDKvI4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEC2EPS8_) +STUB("pzfFqaTMsFc", _ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE) +STUB( + "pzhdkWrC-2c", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEptEv) +STUB("pzl-F73sa6k", xmlCtxtUseOptions) +STUB( + "pznxmo5J67Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEC1EPS7_PFvS9_EPNS2_10LibContextE) +STUB("pztV4AF18iI", sincosf) +STUB( + "pzxd5By92+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("pzz-Hxq0Grw", _ZN3sce7Toolkit2NP2V26Trophy7Request20GetTrophyPackSummaryC2Ev) +STUB( + "pzzgvXKyDvc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEmmEi) +STUB("q+2W8YdK0F8", sceNgs2StreamResetOption) +STUB( + "q+50oeoRpnY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE6finishEv) +STUB("q+7UTGELzj4", sceUserServiceGetLightBarBaseBrightness) +STUB("q+8lk-9sRWU", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetInteger5Ev) +STUB("q+9E0X3aWpU", _Stoull) +STUB("q+ABaps-NmI", rgctx_fetch_trampoline_mrgctx_9_p) +STUB("q+AdV-EHiKc", gamma_r) +STUB("q+Bo5mE87YU", mono_aot_Sce_Vsh_GriefReportStorageunbox_trampoline_addresses) +STUB("q+Fpzlz5LkQ", _ZN3JSC12SymbolObject6s_infoE) +STUB("q+GZ0W9lx9A", sceNpUniversalDataSystemIntDestroyContext) +STUB("q+NxQ4ogEDw", WKFrameInfoGetTypeID) +STUB( + "q+P0Hi89Q0Q", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEneERKS9_) +STUB( + "q+QLqa7il+Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE5beginEv) +STUB("q+Qw1ESxCj8", sceCompositorIsDebugCaptureEnabled) +STUB( + "q+RCF9lNURo", + _ZN9Inspector24NetworkBackendDispatcher16resolveWebSocketElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("q+SQjILxj1o", _ZN7WebCore37CrossOriginAccessControlCheckDisableraSERKS0_) +STUB("q+Tr434xeJw", g_try_realloc) +STUB("q+cZ3BJhN8k", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12string5IsSetEv) +STUB("q+cypk3W8IM", FTC_ImageCache_LookupScaler) +STUB( + "q+eNVNyIPV0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "q+fgXapQYeA", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10getString7Ev) +STUB("q+lPgqZniW4", sceRegMgrGetVersion) +STUB("q+pTE+YnGkg", sceBgftServiceIntDownloadResumeTask) +STUB("q+s0Lqw-GCQ", _ZNK7WebCore5Frame13ownerRendererEv) +STUB("q+u+S1lf-zM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE5emptyEv) +STUB("q+uCQLffwQE", _ZN3sce2np3ipc17ServiceIpmiClient14PollEventQueueEiPvm) +STUB("q+zBzsf8GeM", _ZNK3sce2Np9CppWebApi6Common6VectorIjE5beginEv) +STUB("q-0w-Ex39L4", _ZN7WebCore11MathMLNames13separatorAttrE) +STUB( + "q-1MtCzGtyc", + _ZN3sce2Np9CppWebApi7Matches2V127ResponseInGameRosterFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_20ResponseInGameRosterEEE) +STUB("q-6FQH5JAwM", uprv_decContextZeroStatus_67) +STUB("q-89AuIWC3s", sceOpusSilkEncTerminate) +STUB( + "q-CXJB9sW+g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEEptEv) +STUB("q-CaGIByNbY", WKCertificateInfoCopyVerificationErrorDescription) +STUB("q-CnH+l6Fd0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEED1Ev) +STUB("q-Hwxr4yls0", WKCookieManagerSetClient) +STUB("q-J0pWv2yqE", WKPreferencesResetAllInternalDebugFeatures) +STUB("q-ROGvfeJP8", + _ZSt9use_facetISt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale) +STUB("q-Sd1ZBupYw", ScePsmMonoPrivilegesStartInit) +STUB("q-Ue2YZGwYU", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V18Variable9getSlotIdEv) +STUB("q-WOrJNOlhI", _ZNSt15_Num_float_base10has_denormE) +STUB("q-aXv0dOJeo", _ZN3sce2Np9CppWebApi14SessionManager2V116FromNonPsnMemberD2Ev) +STUB("q-fR65TgwIg", _ZN3sce7Toolkit2NP10IdDatabaseD2Ev) +STUB("q-hZf47nHhQ", __asan_memset) +STUB("q-kGyQJyDoI", sceBgftServiceIntDownloadClearStats) +STUB("q-kxuaF7URU", sceGameLiveStreamingSetMaxBitrate) +STUB( + "q-l4nEK8s7Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEED1Ev) +STUB("q-lWNyZ6brg", _ZN7WebCore9FrameView17paintControlTintsEv) +STUB("q-oCmZIJo8E", _ZN3WTF18ParallelHelperPoolC1Ev) +STUB( + "q-oWggxB6xI", + _ZNK3sce2Np9CppWebApi14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBody14getCustomData1Ev) +STUB("q-qhDxP67Hg", sceGnmSetResourceRegistrationUserMemory) +STUB("q-u3UcSDz54", _ZN3WTF10TextStreamlsEPKv) +STUB("q-uIM1VNvwg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11UserProfile10NpProfilesEE3getEv) +STUB( + "q-wOgRKk2oc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEE11release_refEv) +STUB( + "q-xMRMjkQ1s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEmmEv) +STUB( + "q-yZd-6+Jg0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE5beginEv) +STUB("q0-8fEJ1Ut4", + _Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm14TcpPerfCounterE20SceRazorGpuBroadcast) +STUB( + "q0-OyIMk1mk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEED2Ev) +STUB( + "q03+3pJ55HY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEEC1ERSA_) +STUB("q05IXuNA2NE", _ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED1Ev) +STUB("q090kVFxvro", _ZN4IPMI7SessionC2Ev) +STUB("q09ozMR1Gr4", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEEppEv) +STUB("q0CBI7DJ0X8", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfilesC1Ev) +STUB("q0F6yS-rCms", strcspn) +STUB( + "q0GWpcvfbCs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("q0NXsQTzAI0", sceDepthUpdate) +STUB("q0Vs36lLVrw", generic_trampoline_aot_plt_p) +STUB("q0W5GJMovMs", sceVideodecDecode) +STUB("q0er6lvq1sc", _ZN3JSC7JSProxy12setPrototypeEPNS_8JSObjectEPNS_14JSGlobalObjectENS_7JSValueEb) +STUB("q0fsHjITt5A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEED2Ev) +STUB("q0gN8e4VLZo", sceVideodec2TermLibrary) +STUB("q0iQ6QttHjQ", glCreateProgram) +STUB("q0k+n0PWmZs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEEdeEv) +STUB( + "q0l8RtJhP0M", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEeqERKS9_) +STUB("q0lU6mBq1fA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEdeEv) +STUB("q0mkcionphc", _ZN3WTF11Persistence5CoderINS_6StringEE6decodeERNS0_7DecoderERS2_) +STUB("q0q2zzV9Z24", _ZN7WebCore9HTMLNames16onmouseleaveAttrE) +STUB( + "q0qPum3Q9CA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEptEv) +STUB("q0qeup2r7hA", _ZNK3sce4Json6String8capacityEv) +STUB("q0vhGj7e1tU", WKPageDidAllowPointerLock) +STUB("q0xAlUzTa-Y", _ZN7WebCore21DiagnosticLoggingKeys40backgroundCPUUsageToDiagnosticLoggingKeyEd) +STUB("q1+R1z2aE0E", _ZN3WTF13FastBitVector10clearRangeEmm) +STUB("q1-YfqGcZYE", _ZN9Inspector23TargetBackendDispatcherD1Ev) +STUB( + "q18lVQ14bGc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("q1C32LVaXGc", mono_aot_I18N_MidEastmethod_addresses) +STUB("q1GAmySAovY", _ZN7WebCore22FontCascadeDescriptionC1Ev) +STUB("q1GxBfGHO0s", sceRazorCpuWorkloadRunEnd) +STUB("q1HXJrqXhwQ", _ZN9Inspector26AnimationBackendDispatcherD2Ev) +STUB( + "q1IQU-Y5ck8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("q1OvUam0BJU", __isthreaded) +STUB( + "q1QAh+K5zeE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEppEv) +STUB( + "q1X18lx5Jx0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEaSERS7_) +STUB("q1X3ShQEW00", sceCesEucCnUcsProfileSetSbcs) +STUB("q1cHNfGycLI", scePadRead) +STUB("q1eydak0HVM", _ZN3sce3Xml3Dom4NodeD1Ev) +STUB("q1hQTVuwUIw", ubidi_reorderVisual_67) +STUB( + "q1iyGeL-8JY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEEaSERSA_) +STUB("q1ocbbE7dmo", _ZN3sce2Np9CppWebApi6Common8IteratorIdEmmEi) +STUB("q1p1LN5w4Bc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEEppEi) +STUB( + "q1pkKY77ZOo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEE7get_refEv) +STUB("q1vrENqA6Eg", + _ZN7WebCore8Settings24setStorageBlockingPolicyENS_14SecurityOrigin21StorageBlockingPolicyE) +STUB("q2+Sa0MIe94", udat_countAvailable_67) +STUB("q23TogAtn1A", JNU_ThrowByName) +STUB("q24aRzI78Sk", scePlayReadyReaderBind) +STUB("q28pJ1goHew", _ZN3sce7Toolkit2NP16AttachmentDetailC2Ev) +STUB("q29R3lLE4nY", WKPreferencesGetDoNotTrackEnabled) +STUB( + "q2CTOWjhG1g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEED1Ev) +STUB( + "q2Dkf9pgkhA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEplEm) +STUB("q2ESpjCIk7w", FTA_Remove_Module_autofitter) +STUB("q2EidydGLu8", WKBundlePostSynchronousMessage) +STUB("q2GoS4tv3-A", _ZN7WebCore12ChromeClient32didInvalidateDocumentMarkerRectsEv) +STUB("q2USyzLF4kI", _ZN3sce2np6ObjectdaEPvR16SceNpAllocatorEx) +STUB( + "q2aBpWDfJx8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEneERKS9_) +STUB("q2eqZBGasE0", sceDeci4hOpen) +STUB( + "q2gueVMn-bs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEC1ERKS7_) +STUB( + "q2hA3hwP+Cw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEE5resetEPS8_) +STUB( + "q2iR7btmAQY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE5emptyEv) +STUB("q2mzzZIG8xg", + _ZN3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator12setJoinStateERKNS3_9JoinStateE) +STUB( + "q2riJZgEHLQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("q2tsVO3lM4A", sceNpCondInit) +STUB("q2yvLSzfNHg", JSDebuggerStart) +STUB( + "q32ZB4cii7k", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V333CommunicationRestrictionStatusApi44ParameterToGetCommunicationRestrictionStatusC2ERS5_) +STUB("q32rwiywweU", mono_aot_Sce_Vsh_Np_Trophyjit_code_end) +STUB( + "q350DDiwlvo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE10setContextEPNS2_10LibContextE) +STUB( + "q38gHQZkSQ8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "q3CSy0rfHgw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE5beginEv) +STUB( + "q3FYjx4I83Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEplEm) +STUB("q3GPwVLyGEQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEED2Ev) +STUB("q3ISwoRCq-s", mono_btls_ssl_ctx_up_ref) +STUB("q3M7XzBKC3s", sceNpGetAccountDateOfBirthA) +STUB( + "q3PvR6Z6cAQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEE5resetEPS8_) +STUB( + "q3Rzac2pvA0", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectatorC2Ev) +STUB( + "q3X40cSiIWk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEaSERKS7_) +STUB("q3XFQI9e0eQ", _ZN3sce7Toolkit2NP2V210Tournament6EventsC1ERKS4_) +STUB("q3YO1c0RqFo", _ZNK3sce4Json6Object8iteratoreqERKS2_) +STUB( + "q3cOoF9WtTg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("q3e8+nEguyE", sceHmdReprojectionStart2dVr) +STUB("q3m8gBZYTcI", sceIduUtilSetSchedule) +STUB("q3mX36AQeC4", u_strFromUTF32WithSub) +STUB("q3nWOTJHIM4", glGetUniformfv) +STUB("q3s6++iIzjE", _ZThn16_N3sce2np9LocalFileD1Ev) +STUB( + "q3ukGQfN0HQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEEaSERKSA_) +STUB( + "q3vr2hnBVdY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEE11get_deleterEv) +STUB( + "q456-F0+KXU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEmmEi) +STUB("q47Oj+x2btE", __ubsan_handle_missing_return) +STUB("q4Do+BaViWk", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18GameCustomDataItemEEC2Ev) +STUB("q4EyfhLHc0Q", sceRazorCpuSetLiveServerThreadSettings) +STUB("q4G7qxTJWps", _ZN3sce2np7HttpUriC2EP16SceNpAllocatorEx) +STUB("q4H1OsUcung", _ZN7WebCore20TransformationMatrix8rotate3dEdddd) +STUB( + "q4RDnrN5wVQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE6resizeEj) +STUB("q4RWb8nK8Z0", mono_aot_Sce_Vsh_WebViewDialogunbox_trampolines_end) +STUB("q4UFICay6Hk", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEED1Ev) +STUB("q4VuU-QsLOE", sceAgcAcbMemSemaphore) +STUB("q4qhGebYuGI", ft_mem_qalloc) +STUB( + "q4wDcUUSLdI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEED1Ev) +STUB("q4zrlHzLmi4", WKUserContentControllerAddUserScript) +STUB("q527znq3hOE", sceEsvmEngineMediaKeysDestroySession) +STUB("q55uzKbhV5M", __tsan_write2) +STUB("q57yEzL0cG8", JNU_ThrowArrayIndexOutOfBoundsException) +STUB("q59Hw1J7Bik", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEED2Ev) +STUB( + "q59TWRRN6-w", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEdeEv) +STUB( + "q5AYLQjLe+E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEmmEv) +STUB( + "q5AmdDIYhCY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEdeEv) +STUB( + "q5E56q+kAVk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE3endEv) +STUB( + "q5EC0HWEL94", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("q5G7i+IAvpM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEC2Ev) +STUB( + "q5MLMU6psnY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE10setContextEPNS2_10LibContextE) +STUB("q5MWYCDfu3c", strtoimax) +STUB( + "q5Q6Gv47ISI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("q5V1eZmYXKo", sqlite3_prepare_v2) +STUB("q5VWW64fkh4", sceMusicCoreServerPlaySpUri) +STUB("q5Vv5jMz8mU", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEEdeEv) +STUB("q5WzucyVSkM", rintf) +STUB( + "q5byhpKAqqk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE5emptyEv) +STUB( + "q5fTRfLWvrY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE3endEv) +STUB("q5fjKos2e+Y", _ZN3JSC7Symbols33arrayIteratorFieldKindPrivateNameE) +STUB( + "q5g9RXvIiZE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEEptEv) +STUB( + "q5mkXmGzOoM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEC1Ev) +STUB( + "q5qMWcL5hqU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEC1EPKS8_) +STUB("q5rDcr3qIgU", delegate_virtual_invoke_7) +STUB("q5ryZo1EDKI", _ZN3sce7Toolkit2NP2V28Matching7Request10CreateRoom22MAX_SIZE_LOCALIZATIONSE) +STUB("q5ucPOQPJv0", WKBundleBackForwardListItemGetTypeID) +STUB( + "q5v165SMV5I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE8copyFromERKS9_) +STUB( + "q5vIhOzFj-o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEmmEv) +STUB( + "q6+vJjUHRpw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("q6-2LZBKQOQ", mono_aot_Sce_Vsh_Np_Webapiplt_end) +STUB("q6-H-qFeRJk", X509_STORE_new) +STUB("q629pGti59c", _ZN7WebCore15ActiveDOMObject15suspendIfNeededEv) +STUB( + "q69qdLfAED4", + _ZN7WebCore24ScrollingStateStickyNode17updateConstraintsERKNS_33StickyPositionViewportConstraintsE) +STUB( + "q6Bv6z-ZtJA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEC2EPS6_PNS2_10LibContextE) +STUB("q6EWScb8SvU", tt_cmap13_class_rec) +STUB( + "q6Fu9t-WFiQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessions35getxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB("q6H4TJJB9mI", mono_aot_System_Dataunbox_trampolines_end) +STUB( + "q6JooLE6v90", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE3endEv) +STUB("q6KNflHlOIA", _ZN7WebCore15HitTestLocation12rectForPointERKNS_11LayoutPointEjjjj) +STUB("q6PrWQHQRnM", _ZN7WebCore12KeyedEncoder7encoderEv) +STUB("q6T4WRt5XuQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE7popBackEv) +STUB("q6TQMO8HYWc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEEaSERKS6_) +STUB("q6Zk6Zfm5p4", ufmt_getArrayItemByIndex_67) +STUB( + "q6bJN0Y1GXk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEppEi) +STUB("q6eAMucXIEM", sceNpTrophySystemDestroyTrophyConfig) +STUB( + "q6gcQi8Xww8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEeqERKS9_) +STUB( + "q6h9UPToBBk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEEC1EPKS6_) +STUB( + "q6kpNPCDPn4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE5clearEv) +STUB( + "q6nwZq5lPy8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEC2Ev) +STUB("q6rbX0jUvqk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEE11release_refEv) +STUB( + "q6uxxVXhw80", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEaSERKS9_) +STUB("q6yAtHbMlyk", sceTextToSpeechGetStatusImpl) +STUB("q75YGaxUT3s", sceVoiceChatRequestUnregisterSession) +STUB("q76RU0c+L+4", sceOpusCeltDecDecodeWithPriority) +STUB("q7C5HXlYmcg", rgctx_fetch_trampoline_mrgctx_93) +STUB("q7DfXkCip5M", u_isUUppercase_67) +STUB("q7GK98-nYSE", sceNpMatching2SetRoomDataExternal) +STUB("q7I0E-KhAOI", _ZNK7WebCore11ContentType13containerTypeEv) +STUB("q7IonEqrItY", mono_btls_key_is_rsa) +STUB( + "q7Lcot6l1rs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEixEm) +STUB("q7MbpPmWX5c", WKPreferencesGetStorageBlockingPolicy) +STUB( + "q7Rj6xKPYp8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEEC2ERSA_) +STUB("q7SUMx9iSKQ", _ZN7WebCore12EditingStyleD1Ev) +STUB("q7U6tEAQf7c", sceNpTrophyCreateHandle) +STUB( + "q7XEwPfV+wk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE5clearEv) +STUB( + "q7Zgok6zidw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEE11get_deleterEv) +STUB("q7hEYgz3m8Q", __kernel_sinl) +STUB( + "q7k-Yr0fbe8", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("q7kTOFaQrW4", FTA_Export_Module_smooth_lcdv) +STUB( + "q7pH2yjimHk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "q7t3mS4fWpM", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEEC2Ev) +STUB("q8+-tBzlgGo", sr02) +STUB( + "q82FrY0m5uQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEED2Ev) +STUB("q88lQ+GP5Yk", sceAgcDcbDrawIndex) +STUB( + "q88nARTCDrE", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBodyC2EPNS1_6Common10LibContextE) +STUB("q89N9L8q8FU", _ZNSt12domain_errorD0Ev) +STUB("q8At7QPwzJg", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEEptEv) +STUB("q8BOLc4uDeU", _ZN7WebCore10FileSystem18createSymbolicLinkERKN3WTF6StringES4_) +STUB("q8CfetImdIY", sceFiosFileWrite) +STUB("q8Em2m6W25A", mono_aot_ReactNative_Modules_Vsh_Gct_Telemetry2unbox_trampolines) +STUB( + "q8FWoqBIXMM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEC2ERS7_) +STUB( + "q8Jd7oAtLWk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEC1Ev) +STUB( + "q8S81Jhd6c4", + _ZN7WebCore21SerializedScriptValue6createERN3JSC9ExecStateENS1_7JSValueEON3WTF6VectorINS1_6StrongINS1_8JSObjectEEELm0ENS5_15CrashOnOverflowELm16EEERNS6_INS5_6RefPtrINS_11MessagePortENS5_13DumbPtrTraitsISE_EEEELm0ESA_Lm16EEENS_20SerializationContextE) +STUB("q8XE9mDjoAk", _ZN9Inspector22RemoteInspectionTarget25setRemoteDebuggingAllowedEb) +STUB("q8Yi8z7VEdE", _ZN7WebCore8SVGNames15svgNamespaceURIE) +STUB( + "q8YrDcY70A4", + _ZN3WTF33indexOfBestMatchingLanguageInListERKNS_6StringERKNS_6VectorIS0_Lm0ENS_15CrashOnOverflowELm16EEERb) +STUB( + "q8ZRvJZ4ags", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEE3getEv) +STUB("q8a6R8SJHms", sceSystemLogger2NativeQueueClientGetEvent) +STUB( + "q8bD4BbFO5g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "q8bbjdR59wQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEC2EPS8_) +STUB( + "q8cRCzDU9lk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEED2Ev) +STUB("q8fEMeIqd5w", _ZNK3WTF3URL19protocolHostAndPortEv) +STUB("q8iKymW1wQU", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container8getLabelEv) +STUB("q8j9OSdnN1Y", sceNetGetArpInfo) +STUB( + "q8oa5shXlsw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEEC1Ev) +STUB("q8r5G1kuApQ", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEE3getEv) +STUB("q8sAT77cytk", WKPreferencesCopyFTPDirectoryTemplatePath) +STUB("q8tk6IyjHIo", mono_aot_Sce_Vsh_KernelSysWrappermethod_addresses) +STUB("q8uDENNkFzs", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence8PresenceEEC2Ev) +STUB("q8uoKpOlCVY", _ZN3sce7Toolkit2NP2V210Tournament7Request18GetRegisteredTeamsD1Ev) +STUB( + "q8znOzx38hc", + _ZN3JSC23JSModuleNamespaceObject19getOwnPropertyNamesEPNS_8JSObjectEPNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB( + "q9-vE4ZHT7k", + _ZN7WebCore27PlatformMediaSessionManager17beginInterruptionENS_20PlatformMediaSession16InterruptionTypeE) +STUB( + "q91-Fn9d2kM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEEaSERSA_) +STUB( + "q93AIPSfuLg", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicket28setxPsnAcceptPlatformNamePs5ENS5_25XPsnAcceptPlatformNamePs5E) +STUB( + "q93ahLHCf4M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEC2EPNS2_10LibContextE) +STUB( + "q95Cje+bXhk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEEaSERKSA_) +STUB("q96oBmczAWU", WKPointCreate) +STUB( + "q97QLaFlcs4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEC2Ev) +STUB( + "q9Ac0wYBOgQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead22receivedTimestampIsSetEv) +STUB("q9DNMMuQt4E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEC1ERS7_) +STUB( + "q9EjOxmz7Q8", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetrics16setNumberOfTimesERKi) +STUB("q9ONK5ZpMVQ", sceCesMbcsStrToUcs2Str) +STUB("q9PEYKv1Ed0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEptEv) +STUB("q9SHp+5SOOQ", __fixdfdi) +STUB( + "q9WGB8NrmVY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEEdeEv) +STUB("q9YcRtDEijs", _ZN3sce2Np9CppWebApi13InGameCatalog2V53SkuD2Ev) +STUB("q9abGtyD65E", qs2) +STUB("q9dm4b24RRI", _ZN7WebCore22ResourceLoadStatistics13primaryDomainERKNS_3URLE) +STUB("q9fcjkDvQy4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEE7add_refEv) +STUB("q9iRVgGbrL0", sceVisionManagerWaitResponse) +STUB("q9kzJ0gemWs", _ZN2GK9PlayerPSN11requestGameEb) +STUB( + "q9nvRIkqkAU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEppEi) +STUB("q9oilMJnxjM", _ZN3sce2Np9CppWebApi11UserProfile2V16Avatar7setSizeERKNS3_10AvatarSizeE) +STUB("q9rMtHuXvZ8", _ZNSt17bad_function_callD0Ev) +STUB("q9rs7Vyz9d0", _ZN4Manx23keyIdentifierForKeyCodeEi) +STUB( + "q9s3a8Q3o6s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("q9uuZihXR+U", + _ZN3JSC33throwTerminatedExecutionExceptionEPNS_14JSGlobalObjectERNS_10ThrowScopeE) +STUB("q9wGc2dhHSQ", uprv_ceil_67) +STUB( + "q9wHJmXXxI4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEmmEv) +STUB("qA31JvxR-EQ", __dynstr_end) +STUB( + "qAA+VPxp6kY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEaSERKS7_) +STUB( + "qABw0u-4qLE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEED1Ev) +STUB( + "qAEo9B91sCE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEE5resetEPS9_) +STUB("qAHa0u1aU8E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEE7get_refEv) +STUB("qAKct8DTeBU", sceCesRefersUcsProfileIso8859_3) +STUB("qAKozVBI6lY", _ZN3sce7Toolkit2NP2V28Matching7Request13GetAttributesC1Ev) +STUB("qAKtgVDTrAM", _ZN7WebCore14SQLiteDatabase14executeCommandERKN3WTF6StringE) +STUB( + "qALG0KRixsY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEEdeEv) +STUB( + "qAMRBSL5jhE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEC1EPS6_PNS2_10LibContextE) +STUB( + "qANERAtJ48o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEC1EPS6_PNS2_10LibContextE) +STUB( + "qAPGL-LkFKI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("qAPXM5DN62Q", FT_Reference_Library) +STUB( + "qAU1+2POoMA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEixEm) +STUB("qAUXQ9GdWp8", sceNpAuthGetAuthorizationCodeA) +STUB("qAYgHhXz2lg", _ZN7WebCore13ContainerNode20getElementsByTagNameERKN3WTF12AtomicStringE) +STUB("qAoMArbG384", sceNpManagerIntValidateQrCodeSession) +STUB( + "qApvJWktSqw", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser11setsortModeENS5_8SortModeE) +STUB("qAqfKFQJNFk", _ZN7WebCore9DragImageC1Ev) +STUB("qAv1-ceZ9iQ", _ZNK7WebCore20ResourceResponseBase23hasCacheValidatorFieldsEv) +STUB("qAxo1idgdPY", two) +STUB( + "qAy2EdoN8Tg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB( + "qAzGjrbOeZE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEEC1EPS8_PNS2_10LibContextE) +STUB("qB+V9Qvf9qg", EVP_PKEY_get1_EC_KEY) +STUB( + "qB2-9007vRI", + _ZN7WebCore17CredentialStorage35removeSessionCredentialsWithOriginsERKN3WTF6VectorINS_18SecurityOriginDataELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("qB2iptxCJXY", _ZNK7WebCore6Editor7Command11isSupportedEv) +STUB("qB5W5ljFCIk", curl_pushheader_byname) +STUB("qB5nGjWa-bk", sceLibcPafMspaceDestroy) +STUB("qBDmpCyGssE", scePthreadCancel) +STUB( + "qBEYnwggJWo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEC1EPS8_) +STUB("qBMjqyBn3OM", _ZN3sce4Json5ValueC1Ev) +STUB( + "qBMwKODbb4E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "qBSvxQCYPIY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "qBVJeBkrEAs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEEdeEv) +STUB("qBVx0vmleoc", EC_KEY_free) +STUB("qBXAbzF+65g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEEppEv) +STUB("qBbh+M9UcKA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEC2Ev) +STUB("qBj38O9+qX8", mono_btls_x509_chain_peek_certs) +STUB("qBjnR0HtMYI", sceVrTrackerSetDurationUntilStatusNotTracking) +STUB("qBlMzJbMa7c", _ZN3sce2np4NpIdC2ERKS1_) +STUB( + "qBmj97QzuME", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEixEm) +STUB("qBohKqdkAqE", FT_Get_PFR_Kerning) +STUB("qBoyFCWs6bw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEE7get_refEv) +STUB( + "qBsEBz2CuXE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("qBsIS0FFRvQ", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEE7add_refEv) +STUB( + "qBzr9wh9Mik", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEneERKS9_) +STUB( + "qC+YNRAswAw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEC2EPKS8_) +STUB("qC+tiGwcW7E", FTA_Export_Module_gxvalid) +STUB("qC3QW+AltHs", sceContentDeleteByPath) +STUB( + "qC4CQPetJQo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE17getNpWebApi2ReqIdEv) +STUB("qC8BIIGtfNk", glUniform2i) +STUB( + "qCD197SX69s", + _ZN9Inspector28DOMDebuggerBackendDispatcher16setXHRBreakpointElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("qCDIxJL+IN8", sceCoredumpInternalGetThreadContextInfo) +STUB( + "qCHyqnp0o70", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEE11release_refEv) +STUB("qCL0KDAv1Os", sceSrcUtilityFlush) +STUB( + "qCMKiqhK81U", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEC1EPNS2_10LibContextE) +STUB("qCN4tzRWpmc", _ZN3sce2Np9CppWebApi14SessionManager2V118MatchmakingForReadD1Ev) +STUB("qCPLiH0+opI", YGNodeStyleSetOverflow) +STUB("qCSfqDILlns", sceKernelMemoryPoolExpand) +STUB("qCTiOEgKX3w", _ZN3sce7Toolkit2NP2V28Presence7Request11GetPresenceD1Ev) +STUB( + "qCV+zjqfYbk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEC2EPNS2_10LibContextE) +STUB("qCYQmUqUn7A", _ZTVN3IPC13DataReferenceE) +STUB( + "qCc5VL6EWDM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEEdeEv) +STUB("qCcBSIApplE", _ZN7WebCore11DisplayList8FillRectC2ERKNS_9FloatRectE) +STUB("qCgK7DkHGY4", _ZN7bmalloc9ScavengerC1ERKSt11scoped_lockIJNS_5MutexEEE) +STUB("qClU7cfYPEk", _ZNK3sce2np14JsonNumberImpl5CloneEP14SceNpAllocator) +STUB( + "qCt0iKt8coc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEixEm) +STUB( + "qCxotJ5cvG0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEC1EPS8_) +STUB("qCy8xtv0opg", _ZN3sce2Np9CppWebApi12Leaderboards2V14User14unsetAccountIdEv) +STUB("qD+C9Xkw5fE", _ZN3sce7Toolkit2NP11MessageDataC2Ev) +STUB("qD1JHHZrbW8", _ZN7WebCore6FourCCC1Ej) +STUB("qD5Su6YGVWM", sceFiosOverlayModify) +STUB( + "qD5gOzYTjDY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEppEv) +STUB( + "qD8atp6eBis", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEED1Ev) +STUB( + "qDBLB3BRqN4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEEC1ERSA_) +STUB( + "qDEfF837Uw0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEEC1ERKSA_) +STUB("qDG1RS462uA", _ZN3sce2np13RingBufMemoryC2EP14SceNpAllocator) +STUB( + "qDHw7bK8nCg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE7popBackEv) +STUB( + "qDIEnJv2rqs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEE7add_refEv) +STUB("qDIcu3MnDOk", sceDebugResumeThread) +STUB("qDIjYbghS7o", _ZN3JSC18GCActivityCallback6doWorkERNS_2VME) +STUB("qDJNxYUjvYw", _ZN3sce7Toolkit2NP2V28Matching4Room16getRoomAttributeEPKc) +STUB("qDP21JPNjTs", sceMbusIsUsingDevice) +STUB("qDQ3PKPFeKc", _ZNK7WebCore8Settings15isScriptEnabledEv) +STUB( + "qDT8zESJVvU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "qDVhN66Hl0M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEaSERKS7_) +STUB("qDagOjvJdNk", sceImeVshSetCaretGeometry) +STUB("qDazN57vZi8", ucal_getDSTSavings_67) +STUB( + "qDbGEP9ntyw", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("qDeCAe9ho54", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEED2Ev) +STUB("qDg9UkReYAU", _ZN3sce2Np9CppWebApi6Common6VectorIdEC1Ev) +STUB( + "qDlj0r-0jzg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEC2Ev) +STUB( + "qDmc3eK4nt4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEE7add_refEv) +STUB("qDrqs9Dv+Bw", sceVideoArbitrationEnable) +STUB("qDu+t28zExY", _ZN3sce4Json9RootParamC2Ev) +STUB( + "qDurOPG+2JE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE8capacityEv) +STUB("qDwDfJxdkTg", _ZN3sce7Toolkit2NP2V28Commerce7Request26DisplayProductBrowseDialogC2Ev) +STUB( + "qDwlKWlhphw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEaSERKS9_) +STUB( + "qE+a2qjEsN4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEEC1EPS8_PNS2_10LibContextE) +STUB( + "qE1XkxL0sU4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "qE6DpKbtD3Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE7reserveEi) +STUB( + "qE8hXVIVzUc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEdeEv) +STUB( + "qE9PDKpC-YA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("qEAjgXcSmZ4", rgctx_fetch_trampoline_mrgctx_8_p) +STUB("qEAmbwS3uRA", u_fscanf_u_67) +STUB( + "qEBpdCpdhus", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEE11get_deleterEv) +STUB("qEGeDXvL3fc", sceFontGraphicsAgcSurfaceInit) +STUB("qELVsdP6BXk", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product11ratingIsSetEv) +STUB( + "qELuvj6J1JI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEC1ERS7_) +STUB( + "qEO4f2XuI9w", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEEdeEv) +STUB( + "qEQfdDVbFT8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE4sizeEv) +STUB( + "qERHn9hCtsQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEEC1ERKSA_) +STUB("qES1DKEVmNk", _ZN7WebCore7Element20setIntegralAttributeERKNS_13QualifiedNameEi) +STUB("qEUJBsB7yMk", sceShellCoreUtilGetOutOfVrPlayZoneWarning) +STUB("qEWEdAxoWA8", _ZN3JSC12RegExpObject14finishCreationERNS_2VME) +STUB( + "qEX32FiXU5w", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEneERKS9_) +STUB("qEdv4gRyL+4", _ZN3JSC17JSPromiseDeferred6rejectEPNS_9ExecStateEPNS_9ExceptionE) +STUB("qEfO3orVVfY", GCC_except_table463) +STUB("qEmKPg7Y1MQ", rgctx_fetch_trampoline_rgctx_76) +STUB("qEoBtYT8-mE", _ZN7WebCore15GraphicsContext9translateEff) +STUB("qEob3o53s2M", _ZNSt8numpunctIcED1Ev) +STUB("qEr-kX-ZRag", _ZN23sceMetadataReaderWriter8Metadata11deleteFieldERKSs) +STUB( + "qEu3YLJ4V7Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEE3getEv) +STUB("qEvDssa4tOE", _FErf_small) +STUB("qEvRt3Wki8E", _ZN3WTF6String6appendERKS0_) +STUB( + "qF3CwterKvk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEixEm) +STUB("qF3mHeMAHVk", _ZNSt8messagesIcEC2EPKcm) +STUB( + "qF7F9Adwz30", + _ZN3sce2Np9CppWebApi14SessionManager2V157PostPlayerSessionsSessionIdInvitationsResponseBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_50PostPlayerSessionsSessionIdInvitationsResponseBodyEEE) +STUB( + "qF7Fiv42jMw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEplEm) +STUB("qF9j5SGAiUk", sceIduUtilSetSysLanguage) +STUB("qFA5cSGCjEo", sceCesRefersUcsProfileCp1255) +STUB( + "qFDKPtf3Nd0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB("qFG3gUOjf6A", _ZN7WebCore16VisibleSelectionC2ERKNS_8PositionES3_NS_9EAffinityEb) +STUB( + "qFH50deeNkY", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEiRNS2_10LibContextEPT_m) +STUB("qFI5KXuXXpE", mono_aot_Sce_Vsh_Np_ServiceChecker2unbox_trampolines) +STUB( + "qFJQ0w5FUSU", + _ZN3sce2Np9CppWebApi14SessionManager2V124SearchGameSessionFactory7destroyEPNS3_17SearchGameSessionE) +STUB( + "qFK13fYNo44", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEE5resetEPS9_) +STUB( + "qFKbkGc57f4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEED1Ev) +STUB("qFNfF98BeVU", __tsan_locate_address) +STUB("qFOAu+-BOb8", _ZN3sce7Toolkit2NP2V29Messaging12Notification16NewInGameMessageC2Ev) +STUB( + "qFOeogBYxJQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEC2Ev) +STUB("qFP0-OhWXxs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEEC2EPS6_) +STUB( + "qFVwdjl70c8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEE3getEv) +STUB("qFXamgC8dMU", _ZNK7WebCore25DropShadowFilterOperation5colorEv) +STUB("qFYwlVP8fy8", _ZN7Nicosia16SceneIntegration6ClientD1Ev) +STUB( + "qFZ+mREbWYg", + _ZN3JSC16CompleteSubspaceC1EN3WTF7CStringERNS_4HeapEPNS_12HeapCellTypeEPNS_22AlignedMemoryAllocatorE) +STUB("qFaTWMvHz1c", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V110ReputationC1EPNS1_6Common10LibContextE) +STUB("qFdG8Ucfeqg", _ZN3sce2np3ipc17ServiceIpmiClient4InitEPNS2_6ConfigE) +STUB("qFg2SuyTJJY", sceHttpSetAuthEnabled) +STUB( + "qFj1vZ2WmXs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEC1ERKS7_) +STUB( + "qFk1WDx2xqg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("qFkvfDxBWGM", _ZN7WebCore24StorageNamespaceProviderD2Ev) +STUB( + "qFmYWAQzTFc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE5beginEv) +STUB("qFoSMtD8eLg", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer12unsetuseFreeEv) +STUB("qFogOCeaPuM", Java_java_util_zip_CRC32_updateBytes0) +STUB( + "qFpKT7x6aNo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB("qFqqEdKdR4w", + _ZNK3sce2Np9CppWebApi12Leaderboards2V127RecordLargeDataResponseBody11getObjectIdEv) +STUB("qFsiZIl1YTU", + _ZN7WebCore19InspectorController18disconnectFrontendEPN9Inspector15FrontendChannelE) +STUB("qFujOxHUDSs", scePfsGetHeaderReadCommand) +STUB( + "qFxKNfMoZAY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEE7get_refEv) +STUB( + "qFz8fbyj0Z0", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEED1Ev) +STUB("qG-Qrqsc5Uk", sceShareUtilityOpenShareMenuForShareContent) +STUB("qG35lhqoJnE", _mono_register_opcode_emulation) +STUB("qG50MWOiS-Q", _Files) +STUB( + "qG7snESXrEM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEmmEi) +STUB( + "qGAd9ZjMToU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEmmEv) +STUB( + "qGC6OYsJItQ", + _ZN3sce2Np9CppWebApi14SessionManager2V131RequestGameSessionPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_24RequestGameSessionPlayerEEE) +STUB("qGColqeTLIY", _ZN7WebCore8JSPath2D11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("qGIX2VTcNJo", u_isUAlphabetic) +STUB("qGJxcUrNnc4", SSL_CTX_use_PrivateKey_ASN1) +STUB("qGKq0Htcy4k", _ZN8meta_gen11MsvPromoter15convertLangTypeEN9db_schema12LanguageTypeE) +STUB("qGLoXEHAZ8M", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V120PlayerJoinableStatusEEdeEv) +STUB( + "qGOjSDj-ep0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("qGP4bmSiOWI", s10) +STUB( + "qGP5Eyy5gjc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEEC2ERSA_) +STUB("qGP74T5OWJc", sceGnmValidateDispatchCommandBuffers) +STUB( + "qGP8hoLWSEI", + _ZN3sce2Np9CppWebApi14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBody17getPlayerSessionsEv) +STUB("qGSgIy5dbT8", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE7popBackEv) +STUB( + "qGVTG-awwJ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEED1Ev) +STUB("qGWTLnEZOG4", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE3endEv) +STUB( + "qGZvdeP9j5c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEE11release_refEv) +STUB("qGiGp64JAKM", _ZTVN9Inspector26LayerTreeBackendDispatcherE) +STUB("qGldV9JFaJ8", _ZN3WTF15AutomaticThread9isWaitingERKNS_14AbstractLockerE) +STUB("qGn7eyiecBc", il2cpp_alloc) +STUB("qGp5Hv7tsGs", _ZN7WebCore12TextEncodingC1EPKc) +STUB( + "qGqExbfrGy4", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB( + "qGvB1uMiXpg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEE11get_deleterEv) +STUB( + "qGwknHP6ohM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEEptEv) +STUB("qH-qzNamQcA", WKPreferencesSetCrossOriginResourcePolicyEnabled) +STUB( + "qH1I8Z-GLwo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE21intrusive_ptr_add_refEPS9_) +STUB("qH1gXoq71RY", scePthreadMutexInitForInternalLibc) +STUB("qHQWno0ZEDY", EVP_VerifyFinal) +STUB("qHUN3ffqVEs", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE21intrusive_ptr_add_refEPS7_) +STUB( + "qHUq4D769ns", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEppEi) +STUB("qHeRG+gU1BA", uregex_matches_67) +STUB("qHgbK+xwr+0", _ZN7WebCore21DiagnosticLoggingKeys11timedOutKeyEv) +STUB( + "qHjVmLJG+cQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("qHnIsG9JqQE", isdst) +STUB("qHr9fv68O3E", _ZN3WTF11Persistence7EncoderD1Ev) +STUB( + "qHw2q-38BfA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEC1Ev) +STUB("qI0Sl8pNDbc", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V116PlayStyleFactory7destroyEPNS3_9PlayStyleE) +STUB("qI2HG1pV+OA", sceUserServiceGetThemeBgImageZoom) +STUB( + "qI3zBXQ85do", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEixEm) +STUB( + "qI5Kzls2Q8k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEE11release_refEv) +STUB("qIB-HHTKOCs", sceRegMgrEvtGetCntForPS4) +STUB( + "qIBi1G2KOD8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEE11release_refEv) +STUB( + "qIDOqw4JFgg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("qIJiUzoPBzk", _ZNK3sce2Np9CppWebApi11Matchmaking2V19Attribute7getTypeEv) +STUB("qINWb8ZDW9k", + _ZN7WebCore11MediaPlayer18setBufferingPolicyENS_16MediaPlayerEnums15BufferingPolicyE) +STUB("qISjDHrxONc", sceHttpWaitRequest) +STUB( + "qIXxCeMcY5o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEmmEv) +STUB("qIag-OgyLCQ", + _ZN3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinition11unsetfieldsEv) +STUB( + "qIcRS+qUSE0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEEcvbEv) +STUB( + "qIeCJNcJr18", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("qIgSdMADtcQ", _ZN7WebCore14areRangesEqualEPKNS_5RangeES2_) +STUB("qIjSKZfWk5I", sceKernelSpawn) +STUB( + "qIjfdg22cto", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEppEi) +STUB( + "qIn0nVS-S8k", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE5beginEv) +STUB( + "qInosp1TVPo", + _ZN3sce7Toolkit2NP12ActivityFeed9Interface13getPlayedWithEPKNS1_20GetPlayedWithRequestEPNS1_9Utilities6FutureISt6vectorINS1_15PlayedWithStoryENS1_15AppSTLAllocatorISA_EEEEEb) +STUB( + "qIsgUdV2fso", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEC1ERS7_) +STUB("qIvLs0gYxi0", sceSslFreeCaCerts) +STUB("qIx30tyaz6c", scePlayReadyApiVersionString) +STUB("qIz+DBSTKZM", _ZN3WTF7RunLoop17setWakeUpCallbackEONS_8FunctionIFvvEEE) +STUB("qJ3IvrOoXg0", sceNpTrophyConfigGetTrophyFlagArray) +STUB( + "qJ4-GJRinTU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEE5resetEPS9_) +STUB("qJ9zHC03lWw", mono_aot_System_ComponentModel_Compositionunbox_trampoline_addresses) +STUB("qJFh32pZAJQ", FT_Get_MM_Var) +STUB("qJIWE1tDq+Q", _ZN7WebCore24CoordinatedGraphicsLayer14syncLayerStateEv) +STUB("qJPfpmhvO24", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredTeamsEE3setEv) +STUB("qJSedl9Beks", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEEixEm) +STUB("qJb7IXDg9xk", _ZN3sce2np10JsonParserD1Ev) +STUB( + "qJbJXAaQ-QA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEplEm) +STUB("qJnZcaDrZvI", sceKernelGetQafNameForRcmgr) +STUB( + "qJnchZ7TJpo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEneERKS9_) +STUB( + "qJnhkZf84og", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEdeEv) +STUB( + "qJocOycvm-M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "qJpBn6PDXpg", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Runtime15PropertyPreview4TypeEEEN3WTF8OptionalIT_EERKNS6_6StringE) +STUB("qJpr45shtzs", _ZNK7WebCore20ResourceResponseBase11httpVersionEv) +STUB("qJtifJKf73E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEED2Ev) +STUB("qJy7oOalHMg", mono_signature_get_params) +STUB("qJzB+g1dUq4", kldfirstmod) +STUB("qJzHA1ugk-M", sceRegMgrPrivateStorageFileName) +STUB("qK+HSbM6Yxc", tbl) +STUB("qK2RJYzNooQ", + _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_15DOMRectReadOnlyE) +STUB("qK4o2656W4w", sceNpWebApiUnregisterPushEventCallback) +STUB( + "qK53fTiVkAA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEC2EPKS8_) +STUB("qK5rAgZ9IDM", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt6vectorI16SceNpTusVariableNS2_IS4_EEEED1Ev) +STUB( + "qK95BHNw1Vg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEEaSERSA_) +STUB( + "qKBx3dyuiaU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("qKDZnT2Hzi8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEC2ERKS7_) +STUB("qKJ2G1pGKmU", WKPageBackgroundExtendsBeyondPage) +STUB( + "qKLP6ky0cJo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEED2Ev) +STUB("qKQiNX91IGo", __cxa_rethrow_primary_exception) +STUB("qKUojuHYhw8", _ZNK9Inspector14FrontendRouter12sendResponseERKN3WTF6StringE) +STUB("qKZxQYEA7lk", _ZN7WebCore17PageConfigurationD1Ev) +STUB( + "qKc7hce710w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEC2EPKS8_) +STUB("qKdpVnrTRxI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEEC1ERKS7_) +STUB( + "qKeIWRxr4No", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEEC1EPS6_PNS2_10LibContextE) +STUB("qKfj8jo1vcE", _ZNK3sce2Np9CppWebApi11UserProfile2V114PersonalDetail16displayNameIsSetEv) +STUB( + "qKkiGChNON0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEE11get_deleterEv) +STUB( + "qKuEKDU1b8g", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE5emptyEv) +STUB("qKuPcB3bhxc", TEECI_SetTimeout) +STUB("qKvmIU5Xolg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth7IdTokenEEC2Ev) +STUB( + "qKx4qWM8bUc", + _ZN12video_parser17cVideoProfilerMp422_determineDefaultTrackERNS_7cVpListINS_13VpMediaInfo_tEjEERNS0_13VpTrackInfo_tEMS0_FNS_11VP_RESULT_eEPS2_E) +STUB("qL-FqHcH2uw", sceVisionManagerGetStoreCameraImgYPtr) +STUB( + "qL1AzELGgI0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("qL2YTjAPqBo", rgctx_fetch_trampoline_rgctx_56) +STUB("qLDCAl8ygCw", sceVideoOutSysGetResolutionStatus2) +STUB( + "qLEQkuIIzrY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEeqERKS9_) +STUB("qLHvDU8bmOo", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11InvitationsEE3setEv) +STUB("qLIzHK7b8ow", sceVnaTerminate) +STUB("qLJikNaWCUQ", _ZN7WebCore20UserGestureIndicator21processingUserGestureEPNS_8DocumentE) +STUB( + "qLQ1-hCI+sI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE21intrusive_ptr_add_refEPS7_) +STUB("qLQW-wuHyhE", + _ZNK3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession11getPlatformEv) +STUB("qLaZpcCmXaM", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V111LeaveReasonEEppEi) +STUB("qLc40W8P7ZA", sceCesSbcToUtf16) +STUB("qLhQmTQ9NK8", ucnv_countAliases_67) +STUB("qLiZvjk8bOA", closeallreg_o) +STUB("qLlWp3eZRiM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEEC1ERS6_) +STUB( + "qLoJuTBivw4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE7reserveEi) +STUB("qLpSK75lXI4", sceAudioOutOpenEx) +STUB("qLqzbBxATrU", sceNpSnsIntDeleteRequest) +STUB( + "qLsAEQ69RmY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEC2EPKS8_) +STUB("qLtLvmkqD14", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V124RequestCooperativeResultEEdeEv) +STUB("qLvbFF9u5Lo", _ZN7WebCore8JSPath2D6s_infoE) +STUB("qLyMowz-S2U", _ZNK3sce2Np9CppWebApi7Matches2V126RequestTeamMemberStatistic11getPlayerIdEv) +STUB( + "qLyOzq-4qlQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEEptEv) +STUB( + "qLykzfCOnEQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("qM0gUepGWT0", _ZNSt13basic_filebufIcSt11char_traitsIcEE5imbueERKSt6locale) +STUB("qM6EjseJ7ro", _ZN9Inspector15RemoteInspector6ClientD0Ev) +STUB("qM73Xs89xOk", fuse_mount_compat25) +STUB("qMFHbHrZi2c", mono_aot_System_Numericsjit_code_end) +STUB( + "qMHQAxW8eXs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEED2Ev) +STUB( + "qMIMu7+KN+M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("qMNH-1t3iOI", rgctx_fetch_trampoline_rgctx_49) +STUB("qMOzfrrKkfo", WKPageFixedLayoutSize) +STUB( + "qMPOsrW9YfA", + _ZN3sce2Np9CppWebApi14SessionManager2V136GetPlayerSessionsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_20PlayerSessionForReadEEEEEPNS9_INS3_29GetPlayerSessionsResponseBodyEEE) +STUB( + "qMSdxwoVXYs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEppEv) +STUB( + "qMTGJftSbFs", + _ZN3sce7Toolkit2NP2V211UserProfile27displayGriefReportingDialogERKNS3_7Request27DisplayGriefReportingDialogEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB( + "qMTh9q8R0Hg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "qMVXQZWCLS4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEEC2ERKSA_) +STUB( + "qMVaTy7Cqnc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEC2EPNS2_10LibContextE) +STUB("qMXslRdZVj4", _ZSt13resetiosflagsNSt5_IosbIiE9_FmtflagsE) +STUB( + "qMYMahQKgPQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "qMaRL+4NugY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEC2Ev) +STUB("qMavPJYZ3cE", _ZN7WebCore17PageConsoleClientD2Ev) +STUB("qMd1pP1EjJY", mono_btls_pkcs12_get_count) +STUB( + "qMdQ8SYRnAA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEptEv) +STUB("qMh967qT828", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEC1ERKS7_) +STUB( + "qMi2MIQeIk8", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationPropertiesC1EPNS1_6Common10LibContextE) +STUB("qMkCle9z0Tk", WKDatabaseManagerGetDatabaseDetailsNameKey) +STUB("qMklgSxMYQs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEEC2ERKS7_) +STUB("qMlDXDv8CU4", _ZNK3sce2Np9CppWebApi7Matches2V15Error9getReasonEv) +STUB("qMlfB1ZhMDc", sceAgcDcbDrawIndexOffsetGetSize) +STUB("qMn0KHwwAlQ", _ZN7WebCore21DiagnosticLoggingKeys18noLongerInCacheKeyEv) +STUB( + "qMnxqsiepTY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB("qMp2fTDCyMo", expl) +STUB( + "qMrYI+NT+qI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEC1Ev) +STUB("qMspKE0Wko4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEC2ERS7_) +STUB( + "qMukwqrJKiw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "qMvrX6FVujc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB("qMwyrQPxwc4", _ZN7WebCore20PasteboardWriterData10WebContentD2Ev) +STUB( + "qMz6Lah82GE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEEC1ERS9_) +STUB("qN4AaiA27e8", _ZN3sce7Toolkit2NP2V210Tournament14RegisteredUserC2ERKS4_) +STUB( + "qN4XN9YisqM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEEaSERSB_) +STUB( + "qNCgxITo4YA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("qNEbb12P1FE", _ZN3sce7Toolkit2NP2V210Tournament5MatchC1Ev) +STUB( + "qNF9Z3Ic2sw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("qNFxZKCj3PM", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_16SessionAttributeEEeqERKS4_) +STUB( + "qNIO8gAomeU", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEEiRNS2_10LibContextEPT_m) +STUB( + "qNLRyuiv3SI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "qNPGeEtdxlA", + _ZN3sce7Toolkit2NP8Sessions9Interface7getInfoEPKNS1_16NpSessionRequestEPNS1_9Utilities6FutureINS1_28NpSessionDetailedInformationEEEb) +STUB( + "qNTBcCNa7iY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEptEv) +STUB("qNWrWWaNFVw", scePerfSetUevt) +STUB( + "qNX-eJ+1fqg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEC1EPNS2_10LibContextE) +STUB("qNY3C4S6yHQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEED1Ev) +STUB("qNYv+voo3jg", + _ZN7WebCore10FileSystem15fileIsDirectoryERKN3WTF6StringENS0_25ShouldFollowSymbolicLinksE) +STUB( + "qNbHRHwgoL4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE6resizeEj) +STUB("qNbjzkre+NE", sceDebugIpmiGetBlockedIpcInfo) +STUB( + "qNcWmRVKZ4g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE10setContextEPNS2_10LibContextE) +STUB( + "qNdtEIx1WHo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEaSERKS9_) +STUB("qNe8uNe3EpQ", sceShellCoreUtilMountHddForBackup) +STUB( + "qNeytNwl2wI", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12unsetString2Ev) +STUB( + "qNfKenfuLYg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEdeEv) +STUB( + "qNm6vSstM8o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEppEi) +STUB( + "qNsMxeuAx64", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE7popBackEv) +STUB( + "qNtHENvSUIA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("qNtPJNKGExA", _ZN7WebCore43initializeMaximumHTTPConnectionCountPerHostEv) +STUB("qO+9xZinAqo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEaSERS7_) +STUB( + "qO-gljTv7Dk", + _ZN9Inspector14ConsoleMessage13addToFrontendERNS_25ConsoleFrontendDispatcherERNS_21InjectedScriptManagerEb) +STUB("qO4MLGs1o58", _ZNSt9_Num_base9is_moduloE) +STUB("qOD-ksTkE08", _ZTISt8bad_cast) +STUB("qODYPP+Rr2Y", usearch_getMatchedLength_67) +STUB( + "qOEo3HwdUwM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEixEm) +STUB("qOGZyzFCrzI", _ZNK7WebCore7Element20getIntegralAttributeERKNS_13QualifiedNameE) +STUB("qOGvhm61g-E", _ZNK7WebCore11MediaPlayer6volumeEv) +STUB("qOK0mhQmMRI", _ZN3JSC8Debugger14addToBlacklistEm) +STUB("qONLvDR0x68", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_21NotifyChallengeResultEEC1Ev) +STUB( + "qONTMr5XTgU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEC1EPNS2_10LibContextE) +STUB("qONj4mfcE6U", __sanitizer_unaligned_store32) +STUB( + "qOOduJBSJvw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEcvbEv) +STUB("qOR4QarLY5Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEED2Ev) +STUB( + "qOUoumdq3C4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEEC1Ev) +STUB( + "qOVMZbx+Lsw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "qOVfzEgkPnI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEEC1EPSA_PFvSC_EPNS2_10LibContextE) +STUB("qOX315waZLo", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISbIcSt11char_traitsIcENS2_IcEEEE9constructEPS6_RKS6_) +STUB("qOXDhY0fgyU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEEC1Ev) +STUB("qObDxIp+tUc", _Costate2) +STUB( + "qObFr8xEFfo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("qOdPJTwy-vQ", + _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets16getrulesetFilterEv) +STUB("qOefcpoSs0k", sceNetCtlDisconnectIpcInt) +STUB( + "qOjmNnxs374", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEEC1Ev) +STUB( + "qOkG6L16PZI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEC1EPS6_PNS2_10LibContextE) +STUB("qOkciFIHghY", _ZNSt14numeric_limitsIbE9is_moduloE) +STUB("qOlJvbHHCkg", _ZN3JSC7Symbols19isObjectPrivateNameE) +STUB("qOlxBR2lpG0", sceLoginMgrServerCheckTutorialShown) +STUB("qOmEpCDDDIY", _ZN7WebCore19AccessibilityObject20anchorElementForNodeEPNS_4NodeE) +STUB("qOmh6HvHhSs", sceVideoRecordingQueryHddSize2) +STUB("qOmoaiKx7OY", sceHubAppUtilGetInstallationStatus) +STUB("qOn+wm28wmA", sceSslGetCaList) +STUB("qOpZPAFEvIs", sceOpusDecTerminate) +STUB( + "qOrloelVfXU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEeqERKS9_) +STUB( + "qOsLGE45VF0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "qOwGPkDUoRM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEdeEv) +STUB( + "qOwk-Xj1Qlw", + _ZN7WebCore12PrintContext27spoolAllPagesWithBoundariesERNS_5FrameERNS_15GraphicsContextERKNS_9FloatSizeE) +STUB("qP-EvQRl2Hc", sceLoginDialogInitialize) +STUB("qP0GBNQy6dc", mono_btls_ssl_destroy) +STUB("qP2DGnK-hWI", _ZN7WebCore11HTMLElement6setDirERKN3WTF10AtomStringE) +STUB("qP3GEWZrWC0", _ZN3JSC7Symbols36setIteratorFieldSetBucketPrivateNameE) +STUB("qPAYECEJ1Ik", vm_send_BuildIMTThunk) +STUB("qPAdtEm3ek8", _ZN7WebCore8SVGNames17radialGradientTagE) +STUB("qPFW9BKwJyo", GCC_except_table404) +STUB( + "qPGN2pr47qA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEEC1ERKSA_) +STUB( + "qPLa5OXaImQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEppEi) +STUB("qPNYqJQdssU", _ZN3JSC19ArrayBufferContentsC2EPvjON3WTF8FunctionIFvS1_EEE) +STUB("qPOsKSdHIUY", _ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody12offerIdIsSetEv) +STUB("qPPSZxeGpBc", unlink_large_large_chunk) +STUB("qPTx4Ol2VBI", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE5beginEv) +STUB("qPaL89nLj2M", _ZN9Inspector31ConsoleBackendDispatcherHandlerD2Ev) +STUB("qPe7-h5Jnuc", asctime_s) +STUB("qPf-+J6CHd8", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11InvitationsEEC2Ev) +STUB("qPjPzqK12cI", _ZN3sce2Np9CppWebApi14SessionManager2V112NonPsnLeader11setPlayerIdEPKc) +STUB( + "qPlIpU6JZ8s", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("qPmNux1iUko", __tsan_destroy_fiber) +STUB("qPmVvaTN8Dk", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEED2Ev) +STUB("qPoYiUREVG4", + _ZN3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectator11setOnlineIdERK13SceNpOnlineId) +STUB( + "qPpdNbuAJQA", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead21setSupportedPlatformsERKNS1_6Common6VectorINS5_6StringEEE) +STUB( + "qPqGdzlbKSU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB( + "qPrQMHucCrg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEE11release_refEv) +STUB("qPvg3vvKVZc", _ZNK7WebCore11JSDOMWindow4selfERN3JSC14JSGlobalObjectE) +STUB("qPwDxHRnnF0", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEC2Ev) +STUB("qPy9OcDfwPU", _ZThn24_N9Inspector22InspectorDebuggerAgent16willRunMicrotaskEv) +STUB( + "qPyGvnqSXxE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEptEv) +STUB("qPyVDjLOedQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEptEv) +STUB("qQ-yGYSiy6g", mono_exception_walk_trace) +STUB( + "qQ2fygWcZKY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEC2EPNS2_10LibContextE) +STUB("qQ4c52GZlYw", _ZTSPKDs) +STUB("qQ96-aBFJz0", _ZN7WebCore11MediaPlayer18liveUpdateIntervalEv) +STUB( + "qQGzkNX4NLA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEC1EPS8_) +STUB("qQHCi9pjDps", sceNgs2StreamRunCommands) +STUB("qQJfO8HAiaY", sceNpRegisterStateCallbackA) +STUB("qQMUbG5L6oE", ubrk_setUText) +STUB( + "qQN7eBG96yY", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEiRNS2_10LibContextEPT_m) +STUB( + "qQQ0Jj5YhvQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEdeEv) +STUB("qQS2YPUhCTY", _ZN6WebKit17ChildProcessProxy15clearConnectionEv) +STUB("qQWV-1FVAnY", _ZNK15AbstractStorage15FacebookStorage13GetCapabilityEv) +STUB("qQZGdYkEytk", _ZN3sce4Json11InitializerD2Ev) +STUB("qQjT3pNT14o", WKPreferencesGetTextAreasAreResizable) +STUB("qQmgUcV7N6w", Java_java_lang_ClassLoader_00024NativeLibrary_load0) +STUB("qQoLWGXNlDI", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead18unsetMaxSpectatorsEv) +STUB("qQtTxRn8w5A", u_formatMessage_67) +STUB("qQwC0qx1Sdo", _ZN9Inspector14InspectorAgentnwEm10NotNullTagPv) +STUB("qQzi4cx9FYc", _ZN7WebCore18CustomHeaderFieldsD2Ev) +STUB("qR56HqfBHXg", mono_aot_I18N_CJKunbox_trampolines) +STUB( + "qR57vtAF3gw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE8pushBackERKS8_) +STUB("qR6GVq1IplU", _ZTSSt4_Pad) +STUB( + "qRAX1AHQnyQ", + _ZN8meta_gen11MsvPromoter26setKeyValue_TBLV_SeasonNumENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB("qRBrE+T5ajc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE7popBackEv) +STUB("qRFwHXip2Y8", _ZN3sce2Np9CppWebApi6Common17ParameterBaseImpl18unSetRequestHeaderEPKc) +STUB("qRL4gUpMneE", mono_aot_System_Transactionsjit_got) +STUB("qRLH+Z7g4DA", _ZN3sce7Toolkit2NP2V28Matching6MemberC2Ev) +STUB("qRLpm-alR90", sqlite3_value_text16) +STUB("qRUACYyUNFA", sceVrSetupDialogGetStatus) +STUB( + "qRW88q8Fv5k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEED2Ev) +STUB("qRbFgenhRU4", _ZN12video_parser7cVpUtil16convLangIsoToStrEtPcj) +STUB( + "qRbM+gs03e0", + _ZN3sce2Np9CppWebApi14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyD1Ev) +STUB("qRjpKsDbrjI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEEaSERKS7_) +STUB( + "qRkGXAEOXJ4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEED1Ev) +STUB("qRyF3OyzJrQ", delegate_invoke_impl_target_9_p) +STUB( + "qS3lHoEoaHA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEEdeEv) +STUB("qS85SeRSd8A", JSDisableGCTimer) +STUB( + "qS8HiU9TQAk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEC2EPS8_) +STUB("qSDSI1y7dvQ", + _ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors25unsetValidationConstraintEv) +STUB( + "qSF9O8ZTCuA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEE7add_refEv) +STUB("qSKl0BnrCcM", mono_aot_Sce_Vsh_Orbis_BgftAccessorunbox_trampolines) +STUB("qSPtYrJTJMo", MASSMAInitialize) +STUB("qSPximdlUuY", sceDebugGetApplicationIdByTitleId) +STUB("qSUqGWVDKuc", uprv_timezone) +STUB( + "qSWUwjkHxyY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEE7get_refEv) +STUB( + "qSYq4NBj630", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("qSaZEXaoDkg", uset_retainAll_67) +STUB("qSbpBon7f2s", glUniformBlockBinding) +STUB("qSdbWnQFsUg", WKViewHandleKeyboardEvent) +STUB("qSfNDAxTqSA", _ZN7WebCore28InspectorFrontendClientLocal26changeAttachedWindowHeightEj) +STUB("qSgs-wwrlLU", sceUserServiceSetSystemLoggerHashedAccountIdTtl) +STUB("qSiIrmgy1D8", _ZTSPKb) +STUB("qSjr63bfZwM", _ZN3WTF14FileSystemImpl13listDirectoryERKNS_6StringES3_) +STUB( + "qSkuGHtDIRQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEdeEv) +STUB("qSl4KOer9FQ", Java_java_security_AccessController_getInheritedAccessControlContext) +STUB("qSmqLXXCPas", _ZN3sce4Json6StringC1Ev) +STUB( + "qSpI9daAy+g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEED2Ev) +STUB("qSuSPi84UTw", + _ZThn16_N9Inspector22InspectorDebuggerAgent20setBreakpointsActiveERN3WTF6StringEb) +STUB("qSul5Durywc", _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_6StringEEptEv) +STUB( + "qSuuS4N7GTs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("qT0ciXOUTpo", _ZThn136_N7WebCore16HTMLMediaElement14setCurrentTimeEd) +STUB( + "qT2e00Mf2Gs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEC2EPNS2_10LibContextE) +STUB("qT4WArvd-FI", _ZN3JSC2VM20proxyObjectSpaceSlowEv) +STUB("qT5uLG2KQHM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEppEi) +STUB("qT707tJvsQ8", sceCesRefersUcsProfileCp775) +STUB("qT7SIucN81c", + _ZN7WebCore14SchemeRegistry40registerURLSchemeServiceWorkersCanHandleERKN3WTF6StringE) +STUB("qT8-eJKe+rI", sceUserServiceSetGlsLiveQuality) +STUB("qTES2h4rwcc", mono_array_new_specific) +STUB( + "qTFnxKcfGuw", + _ZN3sce2Np9CppWebApi14SessionManager2V138JoinedPlayerSessionWithPlatformFactory7destroyEPNS3_31JoinedPlayerSessionWithPlatformE) +STUB("qTH-il6o328", _ZN3sce7Toolkit2NP2V27Session21ChangeableSessionDataD2Ev) +STUB("qTHiabfEukw", sceApplicationSetCanvasHandle) +STUB( + "qTJDqZ2nTZs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "qTJG09HRWis", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEEC1ERSA_) +STUB("qTKSOk6q8qU", Java_com_sony_gemstack_org_dvb_application_AppsDatabaseImpl_n_1enableCallbacks) +STUB("qTMaB6u3ZWU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE8pushBackERKS6_) +STUB("qTO5Lzc9gv0", _ZN3sce2Np9CppWebApi10Activities2V114UserActivities8Activity7setNameEPKc) +STUB("qTPRMh4eY60", sceCameraGetAutoWhiteBalance) +STUB( + "qTRUATzPpac", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEC2Ev) +STUB( + "qTeAtPQ0gSo", + _ZN3sce2Np9CppWebApi12Leaderboards2V129GetRankingResponseBodyFactory6createEPNS1_6Common10LibContextERK10SceRtcTickiPNS5_12IntrusivePtrINS3_22GetRankingResponseBodyEEE) +STUB("qTgw+f54K34", _ZTIPKy) +STUB( + "qThBuGC36r8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEC1EPNS2_10LibContextE) +STUB("qTq2nT8tmcE", _ZN7WebCore6Editor16pasteAsPlainTextEv) +STUB("qTqH7FctY-U", _ZN3JSC4Heap7collectENS_15SynchronousnessENS_9GCRequestE) +STUB("qTwVlzGoViY", _ZTVSt22_System_error_category) +STUB( + "qTz4JLzNM9s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEppEv) +STUB("qU9JeLiphww", glVertexAttrib3fv) +STUB( + "qUBsmDiLFoU", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody19npServiceLabelIsSetEv) +STUB("qUD4allHGi0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEE5resetEPS6_) +STUB("qUFOjETOS-4", goby_Init) +STUB( + "qUHtmJlJbeI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEC2Ev) +STUB("qUJIkmd3tyw", WKPreferencesGetColorFilterEnabled) +STUB("qUMCTs-e7Ac", mono_shared_mutex_destroy) +STUB("qUP3pQuGplg", _ZN3WTF10TextStream7releaseEv) +STUB("qUPwIPKvyxM", + _ZN7bmalloc29StaticPerProcessStorageTraitsINS_13IsoSharedHeapEE7Storage7s_mutexE) +STUB( + "qUPxZ5odKlM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE21intrusive_ptr_add_refEPS9_) +STUB("qUTUcm+dXeM", mono_declsec_get_method_action) +STUB( + "qUWj0hHoNrc", + _ZN9Inspector26LayerTreeBackendDispatcher6createERNS_17BackendDispatcherEPNS_33LayerTreeBackendDispatcherHandlerE) +STUB( + "qUXx3KblAQ8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("qUZ2DFowEE4", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEEdeEv) +STUB("qUb2BtUqCAs", _ZN3WTF13StringBuilder12appendNumberEj) +STUB( + "qUbyg7HcJH8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE8copyFromERKS9_) +STUB( + "qUeaaDDDRZA", + _ZNK3sce2Np9CppWebApi14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBody12natTypeIsSetEv) +STUB( + "qUiP-r-GcCw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEC1Ev) +STUB("qUjwsPujhXM", access_fpreg) +STUB( + "qUpPIdlwIdI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEC1EPS8_) +STUB("qUra-RxFAlY", udat_toPatternRelativeDate_67) +STUB("qUxH+Damft4", _ZTIw) +STUB("qUyJrh2QnEI", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetBoolean7Ev) +STUB("qUziNVrQ+wo", _ZNK3sce2Np9CppWebApi7Matches2V119ResponseTeamResults8getScoreEv) +STUB("qV+NuHWcYDQ", _ZNK3sce2Np9CppWebApi13InGameCatalog2V513ContentRating6getUrlEv) +STUB( + "qV4G5hDV7cM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("qVBNhnqUz-4", sceShellCoreUtilAcquireBgmCpuBudget) +STUB("qVFutWcNYZ8", sceUpsrvUpdateDoUpdateWithPupPath) +STUB("qVHpv0PxouI", mbrtowc) +STUB( + "qVItNHWqkcc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEE7add_refEv) +STUB("qVJCg3IPUd0", _ZL22_sceLibcDeleteWithSizePvm) +STUB("qVMoaUF+sEw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEED2Ev) +STUB("qVOSuDRHCpA", _ZN3sce4Json5Array5clearEv) +STUB("qVPwv-fKXn4", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEEC2Ev) +STUB("qVS+sF8gDgk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEptEv) +STUB("qVZ2JP25Cyo", mono_aot_System_ServiceModeljit_code_end) +STUB("qVbYezgf968", _ZNK3sce2Np9CppWebApi7Matches2V120ResponseMatchResults6toJsonERNS_4Json5ValueEb) +STUB( + "qVdiZyuLAtM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "qVe4wscxxTk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "qVgEilbwQ9s", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEaSERKSA_) +STUB( + "qViwH1DS+1I", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEppEi) +STUB("qVmEbYCnt6k", _ZN7WebCore21NetworkStorageSessionC2EN3PAL9SessionIDE) +STUB("qVqE22mHm6M", WKPreferencesGetMinimumZoomFontSize) +STUB("qVrMxeDN6Zs", _ZN7WebCore13HTTPHeaderMapC1Ev) +STUB( + "qVrpZiQY5Qs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEEC2EPS8_PNS2_10LibContextE) +STUB("qVwHRUAzJWM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEED2Ev) +STUB("qVwgrECn6lI", _ZN3sce7Toolkit2NP2V210Tournament17TournamentDetailsC2ERKS4_) +STUB("qVxzDsyHBWY", sceVrTrackerGetStateRelative) +STUB( + "qVyhgyIgQlE", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody35setComparedLastUpdatedUserAccountIdEPKc) +STUB("qVzpKiF63s8", vzone_writeFromStart_67) +STUB("qW-XDR3BWfg", _ZN3sce2Np9CppWebApi6Common13ParameterBase16setRequestHeaderEPKcS5_) +STUB( + "qW0bkHFCKO4", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEEiRNS2_10LibContextEPT_m) +STUB( + "qW7aQOea1Yc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEEC1Ev) +STUB("qW8CbjKrkUM", _ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEE21intrusive_ptr_sub_refEPS5_) +STUB("qW9M0bQ-Zx0", sceNpScoreCreateTitleCtx) +STUB("qWAGxvQ7X6c", + _ZN12video_parser20cVideoContentFactory17_getContainerTypeEPKcRNS_19VP_CONTAINER_TYPE_eE) +STUB("qWESlyXMI3E", sceLibcMspacePosixMemalign) +STUB("qWFV6ZnNsRI", sceVisionManagerRequestCalibrateTrackingLed) +STUB("qWGMU2q898I", _ZNK7WebCore37BasicComponentTransferFilterOperation17passthroughAmountEv) +STUB( + "qWO4BVZ41Dw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("qWYHOFwqCxY", sceUserServiceGetAccessibilityVibration) +STUB("qWcbJkBj1Lg", sceNpWebApiSetRequestTimeout) +STUB( + "qWeeLwQrs4s", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB("qWhyDl-dhSk", scePerfPmcResetProc) +STUB("qWoGe2XqwVw", sceKernelIccIndicatorBootDone) +STUB("qWrpSb35t4M", _ZN7WebCore24CoordinatedGraphicsLayer21setShowRepaintCounterEb) +STUB( + "qWuHTSAp348", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEE7get_refEv) +STUB("qWw6FXj0JGo", g_timer_new) +STUB( + "qX+agTpRkZ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("qX2IjV3icX0", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15PlayedWithStoryEE7addressERKS3_) +STUB( + "qX3kaElsvyY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEE7get_refEv) +STUB( + "qX49025dHQA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEC2ERS7_) +STUB("qX5yvoPqSpQ", _ZN3WTF9dayInYearEiii) +STUB("qXFWh-zLIos", _ZTVN7WebCore16DatabaseProviderE) +STUB( + "qXGGSOni-Pc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEE5resetEPS9_) +STUB( + "qXJ9Gbm7lLo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEC1Ev) +STUB("qXJKxeEqmic", _ZN3JSC7JSProxy9classNameEPKNS_8JSObjectERNS_2VME) +STUB( + "qXL7ilwIZUw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE4sizeEv) +STUB( + "qXM5anCHQ0E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEE11release_refEv) +STUB("qXMciKkR0H0", sceDebugWriteProcessRegister) +STUB( + "qXMrp9KnLqc", + _ZN7WebCore14DocumentLoader16redirectReceivedERNS_14CachedResourceEONS_15ResourceRequestERKNS_16ResourceResponseEON3WTF17CompletionHandlerIFvS4_EEE) +STUB( + "qXNvbxcNm2A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEC2Ev) +STUB( + "qXQ0Lqvf4JY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEEptEv) +STUB( + "qXQlCDt8Mb4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC2ERKSA_) +STUB("qXSNbAnlsKg", u_isIDIgnorable) +STUB("qXTJPJYZQrA", _ZN9Inspector19InspectorAuditAgentdlEPv) +STUB("qXUXM3P1VlM", _ZN7WebCore17JSXPathExpression9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("qXWvt+uD1oA", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEEC1Ev) +STUB("qXfTToOHVgs", WKBundleFrameGetDocumentBackgroundColor) +STUB( + "qXixftOpb7c", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("qXkZo1LGnfk", _Atomic_compare_exchange_strong_2) +STUB( + "qXqpvqFWZVQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEE5resetEPS9_) +STUB( + "qXtsIH-5Lsg", + _ZN3sce2Np9CppWebApi14SessionManager2V137ResponsePlayerSessionSpectatorFactory7destroyEPNS3_30ResponsePlayerSessionSpectatorE) +STUB("qXuAm4m41Do", _ZNK7WebCore14DOMCacheEngine6Record4copyEv) +STUB("qXzav3VQQ00", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEppEi) +STUB( + "qY+eIfI5JDA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("qY+oMNXkc6Y", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE5beginEv) +STUB( + "qY1qoW3T1+w", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE3endEv) +STUB("qY895ndHoiI", _ZN3WTF22FastBitVectorWordOwner13setEqualsSlowERKS0_) +STUB( + "qYCSesOwYMo", + _ZN7WebCore22EmptyFrameLoaderClient22dispatchDidFailLoadingEPNS_14DocumentLoaderEmRKNS_13ResourceErrorE) +STUB( + "qYDCEgv6G+0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "qYFqca3YUbs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEE5resetEPS6_) +STUB( + "qYGymoTVWck", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE3endEv) +STUB("qYIaDKP6Xx4", WKWebsitePoliciesSetContentBlockersEnabled) +STUB( + "qYJWnTjQAyg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEC2ERKS7_) +STUB( + "qYO+BopAoBM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEC2EPNS2_10LibContextE) +STUB( + "qYRYtTChA0k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("qYUBbnO9I4Q", _ZN7WebCore16VisitedLinkStoreD2Ev) +STUB("qYaeRL6NMcM", mono_aot_ReactNative_Components_Vshjit_got) +STUB("qYbmAxRGuq8", sceMusicPlayerServiceGetTrackListVersion) +STUB( + "qYctVoQvq-Y", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_20ChallengeRecvDetailsENS1_15AppSTLAllocatorIS5_EEEED1Ev) +STUB("qYhnoevd9bI", _ZSt9terminatev) +STUB("qYjc+6V1cmo", _ZN9Inspector24WorkerFrontendDispatcherdaEPv) +STUB("qYu6y1E0Qbg", sceCesRefersUcsProfileCp1250) +STUB("qYwuXe0hTHs", sceKernelGetDebugMenuModeForPsmForRcmgr) +STUB( + "qZ+LE90i7+s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEE7get_refEv) +STUB( + "qZ16EOB9iLw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEptEv) +STUB( + "qZ9U8QaSAJc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEaSERKS9_) +STUB("qZB1vmD6X+s", _ZN3sce7Toolkit2NP2V28Matching6Member5resetEv) +STUB("qZDRsY7kQ0s", WKContextGetUsesSingleWebProcess) +STUB("qZNF03+ghLI", sceCompositorFlush) +STUB("qZQOqcZu+Ow", qs3) +STUB("qZT629zocjs", _ZNK7CoreIPC10Connection31platformCanSendOutgoingMessagesEv) +STUB( + "qZgNdt-aIIY", + _ZN7WebCore13PathUtilities26pathWithShrinkWrappedRectsERKN3WTF6VectorINS_9FloatRectELm0ENS1_15CrashOnOverflowELm16EEEf) +STUB("qZi55RxIdis", _ZN3sce7Toolkit2NP2V210Tournament20OneVsOneMatchDetailsD1Ev) +STUB( + "qZtogg7bY6k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEE11release_refEv) +STUB("qZzUY4uyYsY", _ZN7WebCore10ScrollView20setCanHaveScrollbarsEb) +STUB("qa1+CeXKDPc", sceVrTrackerStartLiveCapture) +STUB( + "qa9mNUGwwZ8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "qaEIQYUzGdo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEEaSERKSA_) +STUB( + "qaNvOfI397U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEEC2ERSA_) +STUB( + "qaPMkls5UvU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEneERKS9_) +STUB( + "qaPrCPhdSDY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE4sizeEv) +STUB("qaW3qA9kDdU", _ZN7WebCore8SVGNames15horiz_adv_xAttrE) +STUB( + "qaX9EIvXUZc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("qaXoJf3l2cM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V112TicketStatusEEneERKS7_) +STUB("qaZVfbB2kuk", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessionsD2Ev) +STUB( + "qabFZJRvgvk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEC2Ev) +STUB("qakAHajpl2Q", _ZN3JSC19JSGeneratorFunction6s_infoE) +STUB("qazqkwEEaFY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEptEv) +STUB("qb2WPXNjGgc", _Z30sceRazorGpuThreadTraceShutdownv) +STUB("qb3HEr5op0s", _ZNK3sce2Np9CppWebApi6Common8IteratorImEptEv) +STUB("qb4NgfYbH90", sceSystemLogger2DeliveryGetResult) +STUB("qb4U+7L1r5s", __cfi_init) +STUB("qb6A7pSgAeY", _ZNSt9bad_allocD0Ev) +STUB("qb6qqMpPLds", _ZN7WebCore14SchemeRegistry15isBuiltinSchemeERKN3WTF6StringE) +STUB("qb8BBWmmHbQ", + _ZN3sce7Toolkit2NP9Interface17registerNpCommsIdERKNS1_15CommunicationIdENS1_11ServiceTypeE) +STUB( + "qb8yZH1jtr4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEC1EPKS8_) +STUB( + "qbFE+TEqMo4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEEC2ERSA_) +STUB( + "qbFzE4Z6gUs", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer54setpostPlayerSessionsSessionIdMemberPlayersRequestBodyENS1_6Common12IntrusivePtrINS3_51PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEE) +STUB("qbG3dvn-Qvo", + _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchStatusRequest17setNpServiceLabelERKi) +STUB("qbMXW8giTwA", utrace_data_67) +STUB("qbOCEUdzp4g", _ZN7WebCore11MemoryCache11setDisabledEb) +STUB("qbSOcfnrb28", delegate_virtual_invoke_imt_0) +STUB("qbW7qOvVafI", _ZN3sce2np10JsonNumber6SetNumEm) +STUB( + "qbbEiMcviqM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEEaSERSA_) +STUB( + "qbcB+dNKg88", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE17getNpWebApi2ReqIdEv) +STUB( + "qbddD9lUhOA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEE5resetEPS9_) +STUB("qbiKL0cLdw4", mono_aot_Systemunbox_trampoline_addresses) +STUB( + "qbmJ9Ssfpuw", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData26unsetxPsnAtomicOperationIdEv) +STUB( + "qbnWfsnkk4U", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "qboybeVhhac", + _ZN3sce2Np9CppWebApi13InGameCatalog2V527ContainerRatingCountFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_20ContainerRatingCountEEE) +STUB("qbrU92iCLn8", _ZN7WebCore11MessagePort16messageAvailableEv) +STUB("qbwy0Ub8b3M", sceUserServiceGetUserNumber) +STUB("qbyn8mAjUPw", _ZN3sce7Toolkit2NP2V23TUS7Request7GetDataC2Ev) +STUB("qc-X7Y+SL5o", _ZN7WebCore18callerGlobalObjectERN3JSC14JSGlobalObjectERNS0_9CallFrameE) +STUB("qc-pEFyi4hU", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V117ConnectionQuality8fromJsonERKNS_4Json5ValueE) +STUB("qc4pnagDrkQ", _ZN3sce7Toolkit2NP2V23TUS7Request10DeleteDataC1Ev) +STUB( + "qc91mdJQ5AQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEC1EPKS8_) +STUB("qcAPv3sQhmY", _ZN4Manx18Curl_flush_cookiesEP13SessionHandlei) +STUB( + "qcCC2dveqro", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEC1Ev) +STUB("qcEhpyjjTMY", rgctx_fetch_trampoline_mrgctx_55) +STUB("qcFkko0v36s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEEC2EPS6_) +STUB("qcK6F+tDBv8", + _ZN3sce2Np9CppWebApi7Matches2V120ResponseMatchResults10setVersionERKNS3_14ResultsVersionE) +STUB( + "qcL3AzcAYFg", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setInteger3ERKi) +STUB("qcM8nnO-V2k", WKUserScriptGetMainFrameOnly) +STUB( + "qcMgYgAWXv8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEC1EPS8_) +STUB( + "qcZAKFdQxzw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEC2EPS8_) +STUB("qcZZ8FqdT8c", sceFiosOverlayGetList) +STUB("qcaIknDQLwE", _ZTIN6Dinkum7threads21thread_resource_errorE) +STUB("qcbq6ZtAiL0", _ZN7WebCore11DisplayList10SetLineCapD1Ev) +STUB( + "qcnhx1UAjaQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEmmEi) +STUB( + "qcpVC8kHO5k", + _ZN3sce7Toolkit2NP2V23TUS19addToAndGetVariableERKNS3_7Request19AddToAndGetVariableEPNS2_4Core8ResponseINS3_12TusVariablesEEE) +STUB("qcwPekjtvyE", _ZN3WTF3absERKNS_9MediaTimeE) +STUB( + "qcyeiCogJMU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "qd0z0Rd39e0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEEC2Ev) +STUB("qd1v-zYjor4", _ZNK3sce2Np9CppWebApi7Matches2V123RequestTeamMemberResult8getScoreEv) +STUB( + "qdArV9gP0vA", + _ZN9Inspector22ContentSearchUtilities22textPositionFromOffsetEmRKN3WTF6VectorImLm0ENS1_15CrashOnOverflowELm16EEE) +STUB( + "qdCS8CcF0-8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEppEv) +STUB("qdEq1NFqUO8", mono_aot_Sce_Vsh_DbPreparationWrapperunwind_info) +STUB("qdGFBoLVNKI", quick_exit) +STUB("qdGywZ8cs0Q", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia11ScreenshotsEE19setCustomReturnCodeEi) +STUB("qdHsu+gIxRo", _ZTVSt5ctypeIwE) +STUB("qdKPuKgz4dE", _ZN9Inspector23CanvasBackendDispatcherD0Ev) +STUB("qdLo7hti5rc", sceMatAgcUnregisterAllResourcesForOwner) +STUB( + "qdOR6nq1GOs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE21intrusive_ptr_sub_refEPS9_) +STUB("qdUvVU8TFLA", _ZN3JSC11VMInspector2gcEPNS_9ExecStateE) +STUB( + "qdVZCBvCX0g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEC2Ev) +STUB("qdb0LpnRm6M", _ZN7WebCore11DisplayList9DrawImageD0Ev) +STUB("qddMPmxBYYg", _ZN23sceMetadataReaderWriter14StorageManager8finalizeEv) +STUB("qdh9NZ5zYuE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEdeEv) +STUB("qdj8mOsqF0w", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEEC2ERS7_) +STUB("qdjxnl9J8ss", mono_signature_get_call_conv) +STUB( + "qdky893hwgE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEppEi) +STUB("qdlHjTa9hQ4", fdopen) +STUB( + "qdm3mC63FnQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "qdoLpGEQ1XE", + _ZN7WebCore11ImageBuffer13sinkIntoImageESt10unique_ptrIS0_St14default_deleteIS0_EENS_18PreserveResolutionE) +STUB("qduLx0vnofc", _ZN3WTF10StringView16GraphemeClusters8IteratorC2ERKS0_j) +STUB("qdvU43se+yY", _ZN3JSC20failNextNewCodeBlockEPK15OpaqueJSContext) +STUB("qdwolNeMtao", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V114SearchOperatorEEdeEv) +STUB("qdzhHHYhwdM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEC2ERS7_) +STUB( + "qe+OMPedB5U", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB( + "qe-mZd1mw68", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEC1EPS6_PNS2_10LibContextE) +STUB("qe-vjGkl2a8", + _ZN23sceMetadataReaderWriter11gvMp4Parser27gvMp4ParserExtractThumbnailERKSsRNS_9ThumbnailE) +STUB( + "qe0SajNgsUI", + _ZN3sce2Np9CppWebApi14ConnectAccount2V219PartnerTokenFactory6createEPNS1_6Common10LibContextEPKcS9_RKNS5_6VectorINS5_6StringEEElPNS5_12IntrusivePtrINS3_12PartnerTokenEEE) +STUB("qe7oZ+v4PWA", sceHttpDeleteRequest) +STUB("qeA5qUg9xBk", _ZNSt9_Num_base12max_digits10E) +STUB("qeAJHzVkBvA", + _ZN3sce2Np9CppWebApi14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyD2Ev) +STUB("qeBFfaIThIM", _ZN3sce7Toolkit2NP2V26Friend12Notification16FriendlistUpdateC2Ev) +STUB("qeF-q5KDtAc", sceNpMatching2GetUserInfoList) +STUB("qeNAVBWLQfs", _ZN3sce7Toolkit2NP2V24Core17CustomRequestBaseC1ERKS4_) +STUB("qeRMSD4OtHI", Java_com_sony_bdjstack_init_Init_initLogSocket) +STUB("qeU-RFq8c7A", mono_aot_Sce_Vsh_VideoRecordingWrapperplt) +STUB("qeUNRM8Wl6w", sceCustomMusicCoreBgmClose) +STUB("qeVN+wIVdAM", _ZN7WebCore10TimeRanges6createEv) +STUB("qeWAM1uDRvk", _ZTVN7WebCore11DisplayList8RecorderE) +STUB( + "qeZCDyfdq2U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEEC1ERKSA_) +STUB( + "qecMmTSe8O0", + _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody12setSubmitterERKNS1_6Common12IntrusivePtrINS3_9SubmitterEEE) +STUB("qectilqOQAs", il2cpp_thread_detach) +STUB( + "qeiMQlDNP4E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE7reserveEi) +STUB( + "qejktx65+zE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEED2Ev) +STUB("qenOn6SFIkw", ucnv_MBCSSimpleGetNextUChar_67) +STUB( + "qeo7GQhR+bs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE7reserveEi) +STUB("qeo9LBh4+Y0", _ULx86_64_needs_initialization) +STUB("qesF88X4DRg", sceAmprMeasureCommandSizeReadFileGather) +STUB("qf0TxSALFNw", udatpg_getBestPattern_59) +STUB("qf2I9BlKXis", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product7getTypeEv) +STUB( + "qf55pb73AKU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEED2Ev) +STUB("qf7OY7ifzzY", ScePsmMonoRaiseException) +STUB( + "qf7VG+RXNwQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEplEm) +STUB("qf9oZYiIk1Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEED2Ev) +STUB("qfNBROhf3q8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEC1ERS7_) +STUB( + "qfNWi-kqx60", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE5beginEv) +STUB("qfPu91qDeRM", _ZN3sce7Toolkit2NP17MessageAttachmentD1Ev) +STUB( + "qfRrRE-A-MM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("qfVbOLtgty8", _ZN3sce7Toolkit2NP9Utilities6FutureI19SceNpTrophyGameDataEC1Ev) +STUB("qfVwWqZmwhU", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_17TitleCloudStorage2V19ConditionEEC2Ev) +STUB("qfX0H3hZR-0", rgctx_fetch_trampoline_rgctx_75_p) +STUB("qfdBMD8tNKs", sqlite3_column_bytes) +STUB( + "qfiROPVCXtM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE6resizeEj) +STUB( + "qfiSh+n0BxY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("qforJrgwbuY", _ZN3sce2np9JsonValue7GetNullEv) +STUB( + "qfsfSrvEyAQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("qfwf0ujsr-w", _ZN7WebCore18PrewarmInformationC1Ev) +STUB( + "qg-8KAXiWXM", + _ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody16unsetCustomData1Ev) +STUB("qg-EzLhSaWg", _ZN7WebCore8SVGNames11textPathTagE) +STUB("qgBKNnO1BaI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEdeEv) +STUB( + "qgF7uEC+cMY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEptEv) +STUB("qgItU8JFUhg", _ZN12video_parser5vpcom8datetime8DateTime10NetworkUTCEv) +STUB("qgNK9+82H8A", rgctx_fetch_trampoline_mrgctx_23) +STUB( + "qgO7VU6m4jg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE6resizeEj) +STUB("qgQL4t1Ywng", mono_aot_System_Transactionsplt) +STUB("qgS+x1WhS-c", _ZN3JSC14ProtoCallFrame11setArgumentEmNS_7JSValueE) +STUB("qgT8-Cudu-k", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18GameCustomDataItemEE8allocateEmPKv) +STUB( + "qgWF-qoQ+R8", + _ZN9Inspector20DOMBackendDispatcher16querySelectorAllElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("qgZpgSSrmAE", mono_btls_x509_lookup_mono_new) +STUB( + "qgaq6Dp-0jM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEmmEi) +STUB("qgc4ehrLEsc", mono_aot_Sce_Vsh_Np_RifManagermethod_addresses) +STUB( + "qgjSRhicI0w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEC2EPS8_) +STUB( + "qgkZzSqW0oE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEEC1ERKSA_) +STUB("qglYjtw0+Zk", mono_aot_Sce_Vsh_SysfileUtilWrapperplt) +STUB("qgt6cIuingk", sceVshAvcapStop) +STUB("qgx+NN+F2P0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEEC1EPS5_PFvS7_EPNS2_10LibContextE) +STUB("qgxDBjorUxs", sceHttpCreateConnectionWithURL) +STUB("qgyLyT6tAv0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEC1Ev) +STUB( + "qgyUBo2hpUA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE8pushBackERKS8_) +STUB( + "qh-Ymtf1J6A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEEC1EPS8_PNS2_10LibContextE) +STUB( + "qh3HbUTyK78", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData23unsetxPsnNpServiceLabelEv) +STUB("qh3YUmeXi-8", _ZN12video_parser13cVideoPathMgv17GetLicenseEKBNameEPc) +STUB( + "qhBkdFDGrbc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("qhBwgG5-f3I", addProtocolInfoList) +STUB("qhDBtIo+auw", sceRtcSetCurrentNetworkTick) +STUB("qhJZnqY2oIs", _ZN3sce7Toolkit2NP2V211SharedMedia5VideoC2Ev) +STUB("qhJxMmYtqKQ", delegate_virtual_invoke_22_p) +STUB("qhPJ1EfqLjQ", sceSystemServiceGetParentSocketForPs2Emu) +STUB("qhQqwzzwTW8", ubrk_countAvailable_67) +STUB("qhUdIkqN-2w", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V116TaskAvailabilityEEdeEv) +STUB("qhWR6O+Zp+U", u_strcmp) +STUB("qhXb7tPYUZ8", _ZNK3WTF9MediaTime7compareERKS0_) +STUB("qhZbOi+2qLY", sceNetCtlApRpClearEvent) +STUB( + "qhc+1e5gUSc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE8capacityEv) +STUB( + "qhcmXZiLvHg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEC2Ev) +STUB("qhd6-U5vTtQ", _ZN12video_parser5vpcom10SwapEndianEPhPKhii) +STUB("qheRt4fL0BU", _ZN7WebCore12NodeIteratorD1Ev) +STUB("qhfc2KF032Q", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V117InvitableUserTypeEEdeEv) +STUB("qhl2n16vjmU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS15TusDataStatusesEED1Ev) +STUB( + "qhsuAaf795o", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE5beginEv) +STUB( + "qi+xvgAV4bo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEdeEv) +STUB( + "qi39DDnPiJQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE10setContextEPNS2_10LibContextE) +STUB("qiAvfROsb6Y", WKContextConfigurationSetResourceLoadStatisticsDirectory) +STUB("qiC1z22pL74", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12EventsClient6EventsEE5resetEv) +STUB( + "qiCGthXZoRw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "qiD2PU2Jstc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEED1Ev) +STUB("qiF3loVWl8M", WKPreferencesSetCaretBrowsingEnabled) +STUB( + "qiF9FxIUbVw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEplEm) +STUB( + "qiIwqn0yd0s", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEeqERKS9_) +STUB("qiJyXuCTOF0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEmmEi) +STUB("qiL4fFObAxM", sceKernelGetCpuTemperature) +STUB("qiR-4jx1abE", _ZNSs6appendERKSsmm) +STUB( + "qiRvIgdptSw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEC1EPKS8_) +STUB( + "qiSpfiuaM2s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEEC1Ev) +STUB( + "qiTePMyqCjc", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfile12setaccountIdEPKc) +STUB( + "qie8qosEhNI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEppEv) +STUB("qiiiJb+DAW0", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorImEdeEv) +STUB( + "qikSwbQcs5g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEC2EPS8_) +STUB("qiloU7D8MBM", _ZTSSt15basic_streambufIwSt11char_traitsIwEE) +STUB( + "qilxbQrJD54", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "qirskRqLT3M", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEdeEv) +STUB("qiuiYDTTSv0", _ZN3JSC14ProtoCallFrame15clearCurrentVPCEv) +STUB("qivys5MfyN8", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V138SetMultiVariablesRequestBody_variables8getValueEv) +STUB("qizcGi9y7KU", + _ZN3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBody19getTicketAttributesEv) +STUB("qj0dNtgkDbw", _ZN7WebCore15createLiveRangeERKN3WTF8OptionalINS_11SimpleRangeEEE) +STUB( + "qj1f-eb32P4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("qjBlw2cVMAM", vasprintf) +STUB("qjHCYVd2NH0", _ZN9Inspector30TargetBackendDispatcherHandlerD0Ev) +STUB("qjNxRFy6JC0", _ZN9Inspector14InspectorAgentnwEmPv) +STUB("qjOgGXHAGEA", ures_initStackObject) +STUB("qjWeIkH81-Y", ucnv_cbFromUWriteBytes) +STUB( + "qjXs4PyRgAU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEdeEv) +STUB("qjebiZKT83w", _ZN3WTF24AutomaticThreadConditionD2Ev) +STUB("qjpJ7bYIsMU", _ZN7WebCore9HTMLNames13aria_helpAttrE) +STUB("qjrn0E95Tak", WKBundlePageGetAppCacheUsageForOrigin) +STUB( + "qjt5ttUTZ0c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "qjtszSM5uAM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEEC1EPS6_PNS2_10LibContextE) +STUB("qjyK90UVVCM", _ZTVSo) +STUB("qk+vmxE8fNg", TWO23) +STUB("qkHOAYtCFxg", sceKeyboardDebugGetDeviceId) +STUB( + "qkI-ccOPbDA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "qkLgkojqfcA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE5beginEv) +STUB( + "qkSHpg+1000", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEdeEv) +STUB("qkVj5Kf6ekI", + _ZThn16_N9Inspector22InspectorDebuggerAgent20setShouldBlackboxURLERN3WTF6StringERKS2_bPKbS7_) +STUB("qkc8lfVX6xI", _ZTVN7WebCore11DisplayList8FillRectE) +STUB("qkgRiwHyheU", sceVideodecCreateDecoder) +STUB( + "qkgs+qZ3ifg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEEaSERKSA_) +STUB("qkidjMT42sQ", scePlayReadyLicenseGetProperty) +STUB( + "qkjlBSp8Fwk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEC2Ev) +STUB("qkl3Siab04M", _ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED0Ev) +STUB("qkpaFbsjLGs", _ZN7WebCore17JSHTMLLinkElement11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("qktY6n8C9mM", _ZN7WebCore6DOMURL6createERKN3WTF6StringES4_) +STUB( + "qktltyo6XMA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("qkuA-unH7PU", + _ZNKSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecPK2tmcc) +STUB("qkySrQ4FGe0", sceFontGraphicsRenderResource) +STUB("qkym2p3fg3E", _ZN7WebCore11MathMLNames14actiontypeAttrE) +STUB( + "ql+Dvy3QiKc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEEaSERSA_) +STUB("ql1h2F4TIcE", + _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse22getLastPausedTimestampEv) +STUB("ql2w-SrRGbI", _ZN3JSC14ProtoCallFrame12setCodeBlockEPNS_9CodeBlockE) +STUB("ql2yTbxzqno", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEEaSERKS7_) +STUB("ql6C5tkX4hQ", mono_aot_Sce_Vsh_Orbis_BgftAccessorunbox_trampolines_end) +STUB("ql6hz7ZOZTs", _ZTSSt17bad_function_call) +STUB( + "qlCbGZLh5BQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEEcvbEv) +STUB( + "qlFSb3YfsvU", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEEiRNS2_10LibContextEPT_m) +STUB("qlHZw5NpNZ0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEC2Ev) +STUB("qlKTLH4tj-I", _ZNK7WebCore6Widget25convertFromContainingViewERKNS_10FloatPointE) +STUB("qlKq57g8Ybk", __asan_load1_noabort) +STUB( + "qlPOaFRkg2o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "qlQNioJVVcc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "qlR8rMa7TBw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEED1Ev) +STUB("qlTr81UvpT0", mono_profiler_install_statistical_call_chain) +STUB("qlVcrnLgYGA", _ZN3sce7Toolkit2NP2V212EventsClient17EventShareFactoryC1Ev) +STUB("qlWLlgf0DyY", WKUserContentExtensionStoreCreate) +STUB("qlWiRfOJx1A", __fpclassifyd) +STUB("qlbDXy03lIE", mono_aot_System_ComponentModel_DataAnnotationsplt) +STUB( + "qlcekUWWmQ4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEmmEv) +STUB( + "qlgDemLtG48", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEC1EPS8_) +STUB("qlk9pSLsUmM", pthread_attr_getschedparam) +STUB( + "qllw1ReMYsI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEEC1ERKSA_) +STUB("qlm5N3rn058", mono_declsec_get_inheritdemands_class) +STUB("qlolMc1PYeA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEC2Ev) +STUB( + "qlv7toJ3XDc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEC2Ev) +STUB( + "qlvV3qxuDNs", + _ZN7WebCore10MouseEvent14initMouseEventERKN3WTF10AtomStringEbbONS1_6RefPtrINS_11WindowProxyENS1_13DumbPtrTraitsIS6_EEEEiiiiibbbbsPNS_11EventTargetE) +STUB("qm1zT6B1vCU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEE3getEv) +STUB("qm2-iVs4W0Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEcvbEv) +STUB( + "qmCgb8jcu4g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEE5resetEPSA_) +STUB("qmDH4PGK8vQ", sqlite3_bind_null) +STUB( + "qmFXOojCM00", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEptEv) +STUB("qmINYLuqzaA", sceNpWebApi2IntCreateRequest) +STUB("qmIYOuqK320", GCC_except_table459) +STUB("qmL9I2PfTtI", _ZNK7WebCore7Element10attributesEv) +STUB("qmLWT2PLf20", JNU_ThrowNoSuchFieldError) +STUB( + "qmOPD0+TyQM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("qmQy5IS2NHc", mono_conc_hashtable_foreach) +STUB("qmRdK0yL9xA", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEED2Ev) +STUB("qmSkVbWtvkA", mono_aot_System_ServiceModel_Webunbox_trampolines) +STUB("qmXc-zdTUtw", mono_aot_Sce_Vsh_VoiceMsg_VoiceMsgWrapperunbox_trampoline_addresses) +STUB("qmZHHehEDog", sceNpManagerIntLoginValidateCredential) +STUB("qma2Q24pDPI", JSValueToObject) +STUB("qmbCbaOpxPY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching6WorldsEE3getEv) +STUB("qmcPfIOW67A", _ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEED2Ev) +STUB( + "qmh-IZWi-BQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "qmigPf7kHgM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEixEm) +STUB("qmjmnSyJ+ik", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS12TusVariablesEE3setEv) +STUB("qmnEVyMNgEA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEE3getEv) +STUB( + "qmrMxyrmRek", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEC1EPS8_) +STUB("qmtHTmA-CcQ", _ZNK3sce2np4Time18ConvertToPosixTimeEPl) +STUB("qmxGbVvXh6w", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V120PlayerJoinableStatusEEptEv) +STUB("qmya3Mw0akk", EVP_aes_128_ctr) +STUB( + "qn+ghagvOIM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "qn2B0usD7C4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEC1EPS8_) +STUB( + "qn8eMe6BxiE", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer20getuseCurrencySymbolEv) +STUB( + "qn9xJfHz8ks", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119NatConnectivityFrom9setToNat3ERKNS1_6Common12IntrusivePtrINS3_24NatConnectivityToMetricsEEE) +STUB( + "qnAiviTWX+Q", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB("qnB+y2qRV48", udata_getInfo) +STUB( + "qnBABNvaa0w", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorI16SceNpTusVariableNS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB("qnDdqDwt7No", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEEC2EPKS6_) +STUB("qnI61-kCm1E", sceAvSettingGetCurrentDeviceInfo_) +STUB( + "qnKHxJe0OQ4", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V125NatConnectivityProperties11setFromNat3ERKNS1_6Common12IntrusivePtrINS3_19NatConnectivityFromEEE) +STUB( + "qnLwh3D32qo", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeAccountId2OnlineIdBatchC1ERS5_) +STUB( + "qnM4mJUXKTo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "qnP8TZ0ry1o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEE11release_refEv) +STUB("qnVSx0dMIj4", WKRenderLayerIsClipped) +STUB("qnXuCOQKKto", mono_btls_x509_get_issuer_name_string) +STUB("qnaGQEHRoH4", + _ZN3JSC14JSGlobalObject14queueMicrotaskEON3WTF3RefINS_9MicrotaskENS1_13DumbPtrTraitsIS3_EEEE) +STUB("qnhUHM3-3mI", + _ZN9Inspector17BackendDispatcherC1EON3WTF3RefINS_14FrontendRouterENS1_13DumbPtrTraitsIS3_EEEE) +STUB("qnkMYyAuCt0", OBJ_cmp) +STUB( + "qnknJ8IgYQE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEEC1ERKSA_) +STUB("qnlCAx-AKVA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEED1Ev) +STUB("qnoG-P8RCKg", SSL_CTX_set_alpn_select_cb) +STUB("qnoSWI+-9+8", __sanitizer_dump_trace_pc_guard_coverage) +STUB("qnpv-sAGHww", _ZN3WTF8msToYearEd) +STUB( + "qnqutcNsh3E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEEdeEv) +STUB("qnvk932UxYg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEdeEv) +STUB("qo5mH49gnDA", sceNpPushTerm) +STUB("qoCSp8m0Ybo", sceCesRefersUcsProfileCp860) +STUB( + "qoIIkRB1ScQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("qoMUZrLYgB4", _ZN7WebCore8Document33webkitDidExitFullScreenForElementEPNS_7ElementE) +STUB("qoNvFHi6YKU", _ZN3sce2Np9CppWebApi6Common10InitParamsD2Ev) +STUB("qoO6VaMuvG0", _ZN3WTF19isCompilationThreadEv) +STUB("qoPgZ4p-RQ8", _ZN7WebCore9HTMLNames5olTagE) +STUB( + "qoZv93FLYow", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEEaSERKSA_) +STUB( + "qoaH+WqekyU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEEC1Ev) +STUB("qodr9TJuFds", FTA_Add_Module_pshinter) +STUB( + "qohdsJtig+c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEC1Ev) +STUB("qoiX1Aim+dk", rgctx_fetch_trampoline_mrgctx_121_p) +STUB( + "qoijn1zyHn0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEED2Ev) +STUB( + "qoisVROShIQ", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody16unsetCustomData2Ev) +STUB( + "qooZeFzDaMA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEE7add_refEv) +STUB("qorBNOn3BWk", + _ZN3sce2Np9CppWebApi14SessionManager2V112JoinableUserC1EPNS1_6Common10LibContextE) +STUB("qos3JIrKrDg", hb_ot_layout_language_find_feature) +STUB( + "qoseNaHOodw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEC1Ev) +STUB( + "qowP29+9aKQ", + _ZN3sce2Np9CppWebApi7Matches2V118AddedPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_11AddedPlayerEEE) +STUB("qoysbJFu5sI", FT_Get_First_Char) +STUB( + "qp-RQX71vQk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("qp-rTrq1klk", sceNpTusGetMultiSlotVariableVUserAsync) +STUB("qp2zYFWjFHo", _LMBCSData16_67) +STUB( + "qp4TYCVb4cI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "qp4kyC5DUEE", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_28ActivityFeedSharedVideoStoryENS1_15AppSTLAllocatorIS5_EEEED2Ev) +STUB( + "qpAeYLrF-Wk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEED2Ev) +STUB("qpApG2IF8po", _ZN3JSC7Symbols29allocateInt16ArrayPrivateNameE) +STUB("qpGITzPE+Zc", sceGnmDebugHardwareStatus) +STUB( + "qpGmCQDONr4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEEneERKS7_) +STUB( + "qpJdCH51P-U", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEEC2ERKSC_) +STUB("qpPCA8hKCHU", + _ZN3sce2Np9CppWebApi15Personalization2V118ErrorEntityFactory7destroyEPNS3_11ErrorEntityE) +STUB( + "qpPDmo-Cr1A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEEaSERSA_) +STUB("qpSe9uajx7c", _ZN7WebCore17SQLiteTransaction6commitEv) +STUB( + "qpUCbf18cWY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEEC2ERKS9_) +STUB("qpUgzdXZkLA", WKWebsiteDataStoreConfigurationSetNetworkCacheDirectory) +STUB("qpX63wX9p2g", + _ZNK3sce2Np9CppWebApi14SessionManager2V132RequestPlayerSessionMemberPlayer12playersIsSetEv) +STUB("qpZ3oQs9aoQ", _ZNK7WebCore13HitTestResult9imageRectEv) +STUB( + "qpbE8yWmvAo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE8pushBackERKS8_) +STUB( + "qpgvPHxmRoI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEmmEv) +STUB( + "qpgygaPW1bY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE6resizeEj) +STUB("qphY013lGno", _ZNK7WebCore13MediaQuerySet9mediaTextEv) +STUB("qpi9pgZKF5g", _ZN3WTF16codePointCompareERKNS_6StringES2_) +STUB( + "qpisSDWGlr8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE10setContextEPNS2_10LibContextE) +STUB("qpo-mEOwje0", sceSystemGestureOpen) +STUB("qpoMWWd+nL4", mono_lock_free_queue_init) +STUB( + "qpqAsPMQlxs", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi32ParameterToPostGameSessionsTouch9terminateEv) +STUB( + "qpsnOUa1OxE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE7popBackEv) +STUB("qpuf5izWYX4", _ZN7WebCore17makeBoundaryPointERKNS_8PositionE) +STUB("qq4KgMh3GPk", _ZN3sce7Toolkit2NP2V212EventsClient13EventDurationD2Ev) +STUB( + "qq6Y5eES5UE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("qqDWhdVfwY0", _ZN7WebCore12ChromeClient17elementDidRefocusERNS_7ElementE) +STUB("qqDpxJnCHyo", uloc_getLocaleForLCID) +STUB( + "qqIW-c0HggE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEdeEv) +STUB("qqKbZiXA178", WKWebsiteDataStoreSetPerOriginStorageQuota) +STUB("qqL5VYwFLgo", sceShellCoreUtilUnmountDownloadDataForShellUI) +STUB("qqMCwlULR+E", sceVideodec2QueryDecoderMemoryInfo) +STUB("qqPegxeG3Oo", _Getint.barr) +STUB("qqRhRVbPBuQ", mono_aot_ReactNative_Debug_DevSupportunbox_trampoline_addresses) +STUB("qqUVGDgQBm0", sceNpTrophyGetTrophyInfo) +STUB("qqUxjwJzc2I", mono_thread_attach) +STUB("qqeEvE7I8yo", _ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody10unsetCauseEv) +STUB("qqg8sYkQrGY", WKAuthenticationChallengeGetPreviousFailureCount) +STUB("qqhKZavy4Pg", _ZN3JSC13WatchpointSet11fireAllSlowERNS_2VMERKNS_10FireDetailE) +STUB("qqisiZ8UC0Y", _ZN7WebCore14WebSocketFrameC2ENS0_6OpCodeEbbbPKcm) +STUB("qqkywbrhVtk", _ZN3sce7Toolkit2NP2V26Friend7Request10GetFriendsC1Ev) +STUB( + "qqmtIWlcanQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEC2Ev) +STUB( + "qqrURwTsr5s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEC1EPS6_PNS2_10LibContextE) +STUB( + "qqx-9bmZHfE", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_18SessionInformationENS1_15AppSTLAllocatorIS5_EEEED1Ev) +STUB("qqx0zUoj5wE", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request11GetWhoLikedD1Ev) +STUB("qqxmzUag73w", + _ZN12video_parser18cProfileCheckerMp419_isPlayableVideoMP4ERKNS_13VpMediaInfo_tE) +STUB("qr+T1Bp3AqE", _ZN3WTF5Mutex6unlockEv) +STUB("qr3uSLa6vy0", mono_aot_Sce_Vsh_LncUtilWrappermethod_addresses) +STUB( + "qr5pio5BIWI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB( + "qrBMeojnyt4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("qrLv6QEOWhA", mono_string_length) +STUB( + "qrO6ev2Y6eQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions7getviewEv) +STUB( + "qrOR6VGSVJ4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE3endEv) +STUB("qrQBa2BjHWM", _ZN7WebCore8SVGNames6svgTagE) +STUB( + "qrWF8C9nZcE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE7popBackEv) +STUB("qrWtbADYadA", _ZNK7WebCore23ScaleTransformOperation1yEv) +STUB("qra0GikO7Rw", + _ZThn24_N9Inspector22InspectorDebuggerAgent23setAsyncStackTraceDepthERN3WTF6StringEi) +STUB("qrapkI6uMQQ", rgctx_fetch_trampoline_rgctx_86) +STUB("qrawY2PcD-w", _ZN4IPMI4impl11SessionImpl22getServerRequestSocketEv) +STUB( + "qrcV6Z5IkII", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("qrckJiorSWg", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_17TitleCloudStorage2V19ConditionEEC1Ev) +STUB( + "qrjwWpwgz28", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEC2Ev) +STUB("qrmirrWJQR8", _ZN7WebCore11SimpleRangeC1ERKNS_13BoundaryPointES3_) +STUB("qroQoD6LphI", _ZN8meta_gen12JpegPromoter17IsValidResolutionEv) +STUB("qroYZkwRuPA", clock_1600) +STUB("qrp1SAH70hc", mono_aot_Sce_Cdlg_Platformunbox_trampolines) +STUB( + "qrqa5INhe3k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEEC1ERSA_) +STUB("qrtHDfenuWU", _ZN3JSC7Symbols14anyPrivateNameE) +STUB( + "qrvU6ziDWew", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("qs+B5yWiMc4", WKInspectorGetPage) +STUB("qs0-G75Qdyg", mono_aot_Sce_Vsh_Np_Udsunbox_trampolines) +STUB( + "qs1JxlKKgBg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEaSERKS9_) +STUB("qs5agwaZZh0", _ZN7WebCore11DisplayList10StrokeRectC2ERKNS_9FloatRectEf) +STUB( + "qsBZj3gwqT8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE5clearEv) +STUB( + "qsBrBrx6fVw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEeqERKSA_) +STUB("qsMqg3Z51Fk", _ZN7WebCore11MathMLNames11rowspanAttrE) +STUB( + "qsWOTZATzQQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEC1EPS8_) +STUB( + "qsb9UM93-dk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEE7add_refEv) +STUB("qsdmgXjqSgk", pthread_rwlockattr_destroy) +STUB("qse7oiGtKVs", + _ZSt9use_facetISt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale) +STUB("qsf3QUNkffc", goby_CheckPersonality) +STUB("qshCrfnk0Lg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEEC1EPS5_PNS2_10LibContextE) +STUB( + "qslWj3LQoOs", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V318PsnWebErrorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_11PsnWebErrorEEE) +STUB("qslq9aFiJ+k", _ZNK3sce7Toolkit2NP2V24Core17CustomRequestBase20getCustomServiceTypeEv) +STUB("qsmbiog279w", _ZN3sce7Toolkit2NP9Interface19appendEventCallbackEPFvRKNS1_5EventEPvE) +STUB("qsolSac3t68", WKPreferencesSetShouldDisplayTextDescriptions) +STUB("qspAL8bgcBY", sceAgcDriverIsSubmitValidationEnabled) +STUB("qt+Pxyj3avA", mono_btls_x509_verify_param_new) +STUB( + "qt-8av8yQ70", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEneERKS9_) +STUB("qt7nhBcfZ4E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEC1Ev) +STUB("qt8HISNT7CQ", _ZN10Deprecated25ScriptCallArgumentHandler14appendArgumentEi) +STUB( + "qtF5DkojQjc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE5clearEv) +STUB( + "qtG9crnyypU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB("qtJGxiya8aw", mono_security_core_clr_get_options) +STUB( + "qtPuN2WQssI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEED1Ev) +STUB("qtSRTF4UXRo", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13SessionMemberEE9constructEPS3_RKS3_) +STUB("qtSwAppE7YY", _ZNK7WebCore21ISOTrackEncryptionBox22defaultPerSampleIVSizeEv) +STUB( + "qtUMRZKaO0g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEEcvbEv) +STUB( + "qtUnUKfoZsI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEppEi) +STUB("qtWkrjEIRkM", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V19JoinStateEEdeEv) +STUB( + "qtYkYD+6qlU", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12string5IsSetEv) +STUB("qtZnGunkrJw", mono_btls_bio_mem_get_data) +STUB( + "qta3xdI3N6o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE6insertENS2_8IteratorIS5_EERKS5_RS8_) +STUB( + "qtagaBorsKQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEED1Ev) +STUB("qtasqbvwgV4", scePadGetCapability) +STUB("qtgEboQL0YE", _ZN15AbstractStorage9AbsMallocEm) +STUB("qth3UD+opL0", _ZN3sce7Toolkit2NP2V23TUS7Request10DeleteDataC2Ev) +STUB("qtiGLra7yZs", + _ZN15AbstractStorage15FacebookContent13writeExternalESt10shared_ptrINS_7ContentEE) +STUB("qtjjorW1V94", sceShellCoreUtilSetPsStoreIconLayout) +STUB("qtnI8Lcfauc", mono_aot_Sce_Vsh_ShellCoreUtilWrapperplt_end) +STUB( + "qtpsesHRF6o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEmmEv) +STUB("qtpzdwMMCPc", + _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewm) +STUB("qtqdVrcEY3E", + _ZN7WebCore18JSHTMLImageElement19getNamedConstructorERN3JSC2VMEPNS1_14JSGlobalObjectE) +STUB("qtsNCMuYybc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEEplEm) +STUB("qu0HEGVhoeg", delegate_virtual_invoke_imt_16_p) +STUB("qu2b52fLA+Q", _ZN3JSC10JSCellLock10unlockSlowEv) +STUB( + "qu3Jcm--TBc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEC1EPNS2_10LibContextE) +STUB( + "qu6JLIxrq6s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("qu7GUBjarBs", _ZN7WebCore16SQLiteFileSystem28appendDatabaseFileNameToPathERKN3WTF6StringES4_) +STUB("qu8pjijBHbk", SSL_CTX_use_certificate) +STUB( + "qu8vIEhVfZg", + _ZN3sce2Np9CppWebApi7Matches2V116RequestMatchTeam10setMembersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_13RequestMemberEEEEE) +STUB("quDzSFP+4w8", _ZN9Inspector14InjectedScriptC2Ev) +STUB( + "quI23Nu+eyA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEED1Ev) +STUB("quIxw751PLs", sceMatPopMarker) +STUB("quLMPtgh9DQ", mono_aot_Sce_Vsh_Sl2_Sl2Deliverplt_end) +STUB( + "quOPs6s7-lU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("quZqrOeI5IE", _ZN7WebCore11DisplayList8ClipPathD0Ev) +STUB("quqaVbDrNVs", _ZN3JSC26ReadonlyPropertyWriteErrorE) +STUB("quwl9vCRP2M", mono_aot_Sce_Vsh_Np_Udsmethod_addresses) +STUB("qv+X8gozqF4", sceSystemServiceChangeMemoryClockToDefault) +STUB( + "qv2s41hXB1g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("qv3QDQALDk0", _ZNK7WebCore11FrameLoader20activeDocumentLoaderEv) +STUB( + "qv89o1YBBqs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "qv8sZrJaJCM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("qv9cZX3xWQo", hb_font_funcs_set_glyph_h_origin_func) +STUB("qvIqMtkTneg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEE7add_refEv) +STUB("qvMUCyyaCSI", sceKernelAprSubmitCommandBufferAndGetId) +STUB( + "qvMsHR5hMxY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEaSERS7_) +STUB("qvPRZI8SUG4", _ZNK7WebCore21ContentSecurityPolicy22overridesXFrameOptionsEv) +STUB( + "qvSN6bm4RU4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEEC1ERKSA_) +STUB("qvTpLUKwq7Q", _Atomic_exchange) +STUB( + "qvUY4MlCtCQ", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEEiRNS2_10LibContextEPT_m) +STUB("qvbdJc7bG+s", sceAmprMeasureCommandSizeMapDirectBegin) +STUB("qvd-b81Cb4s", OPENSSL_add_all_algorithms_noconf) +STUB( + "qvdWYH5SGaw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("qvnC4OYmLhw", WKWebsiteDataStoreSetStatisticsShouldClassifyResourcesBeforeDataRecordsRemoval) +STUB( + "qvp47ao23og", + _ZN3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator15setPushContextsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_22GameSessionPushContextEEEEE) +STUB("qvpEuKumIGM", _ZN3sce2np10EventQueue7DestroyEv) +STUB( + "qvpJQX7jnw4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("qvxgr03sZ7Y", _ZN3sce7Toolkit2NP2V28Presence8Presence5resetEv) +STUB( + "qw6OZkAHrjk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEED1Ev) +STUB( + "qw6zRo17ICc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("qwCIdZVjc4Q", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEEaSERS5_) +STUB( + "qwFU2qpMyq4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEplEm) +STUB("qwFemTBSZnY", _ZN15AbstractStorage14TwitterContent5FlushEv) +STUB( + "qwMg6QYZXPE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("qwP9U9HsZ6k", _ZN3sce4Json5ValueC2ERKSt4listIS1_NS0_8StlAllocIS1_EEE) +STUB("qwR1gtp-WS0", _FErfc) +STUB( + "qwRvxkgZEDc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB( + "qwUI90qILms", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("qwUmQpkZ8mQ", mono_metadata_init_comp) +STUB("qwVA-vxAa84", mono_profiler_set_statistical_mode) +STUB("qwWrcmID6rA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate13unsetPerGenreEv) +STUB( + "qwa0biONtPI", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "qwapQw60+gk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEE5resetEPS9_) +STUB("qwj7kV1NkYU", _ZN7WebCore8SVGNames22feComponentTransferTagE) +STUB("qwlV11ypPsM", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V511ContentTypeEEmmEv) +STUB("qwlqQlGKshk", usprep_swap_67) +STUB("qwpkgJLSVHQ", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11EntitlementEE10deallocateEPS3_m) +STUB( + "qwpp2-JtYyQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("qwt8-vXGRPg", mono_gc_invoke_finalizers) +STUB( + "qx1lOeGUCrY", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "qx2DiebHMcE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB("qx9L9N8XpCg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEC1EPS6_) +STUB("qxDCjIWZ0Y0", _ZN3sce7Toolkit2NP2V27Session14InvitationDataC2ERKS4_) +STUB("qxFhjZ2MRM8", _sceLibcLockFinalize) +STUB( + "qxG+-0bsvVA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEE3getEv) +STUB("qxKY6yYmLws", BN_CTX_end) +STUB( + "qxNOwnTQzQs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEaSERS7_) +STUB( + "qxOkvqPmPgM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEmmEv) +STUB( + "qxSrG71aeME", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "qxTxtPNo46A", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEplEm) +STUB("qxVqb-SUAko", sceDebugIpmiGetConnectionWaitingThreadListBySessionKid) +STUB("qxeDFuz5buU", GCC_except_table405) +STUB( + "qxiDhrp8boY", + _ZN7WebCore11JSDOMMatrixC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_9DOMMatrixENS6_13DumbPtrTraitsIS8_EEEE) +STUB("qxpqg1B6-VI", _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeIPcPvEE7addressERKS6_) +STUB( + "qxwEMy0cySY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("qxzDKG7bkuQ", _ZN7WebCore21JSCSSStyleDeclaration7destroyEPN3JSC6JSCellE) +STUB( + "qy0jCOZYCyc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEmmEv) +STUB("qy3Q2y7Ki4U", _ZN3sce2np10JsonStringD2Ev) +STUB("qy4V8O+snLU", _ZN3sce2np6Thread9IsRunningEv) +STUB( + "qy5i0fNH0yA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("qy9gmBY0B6w", _ZN3sce7Toolkit2NP2V26Trophy17TrophyPackSummaryC1Ev) +STUB("qyAWKtbK9xI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE21intrusive_ptr_add_refEPS7_) +STUB("qyB3FpjlDSY", _ULx86_64_handle_signal_frame) +STUB("qyEX-fuiboI", _ZN9Inspector24WorkerFrontendDispatcherC2ERNS_14FrontendRouterE) +STUB( + "qyLe-tXZ4VE", + _ZN7WebCore11DisplayList11DrawPatternC2ERNS_5ImageERKNS_9FloatRectES6_RKNS_15AffineTransformERKNS_10FloatPointERKNS_9FloatSizeERKNS_20ImagePaintingOptionsE) +STUB("qyM2bxYFPAk", sceAgcAcbCondExec) +STUB( + "qySYkSVueVM", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionPropertiesC1ERS5_) +STUB( + "qyVquB+tPXs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("qyWDKCx4To8", _ZN7WebCore6Editor34setMarkedTextMatchesAreHighlightedEb) +STUB("qyWV8EB3AV4", _ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody10limitIsSetEv) +STUB("qyXgtTLslZk", fuse_set_getcontext_func) +STUB( + "qycpawq618M", + _ZN3sce2Np9CppWebApi7Matches2V123RequestMatchTeamFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_16RequestMatchTeamEEE) +STUB( + "qyeARh57Q4g", + _ZN7WebCore14StaticNodeList6createEON3WTF6VectorINS1_3RefINS_4NodeENS1_13DumbPtrTraitsIS4_EEEELm0ENS1_15CrashOnOverflowELm16EEE) +STUB("qyhQZ35WxX4", sceVisionManagerGetResultOfCalibrateHmd) +STUB("qyqQWtdNIPE", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariableD1Ev) +STUB("qyrvYUMvr9s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEE11get_deleterEv) +STUB("qyxAFj3tPGg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEEeqERKS7_) +STUB("qyz32XqayaM", _Z43sceGpuDebuggerSetShaderRegistratationBufferPvj) +STUB("qyzUBXXLwfw", _ZN9Inspector14FrontendRouter6createEv) +STUB("qz4egqkqF5Y", sceAppInstUtilAppGetMoveErrorAppList) +STUB("qz7TQJXq1Ao", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEE7add_refEv) +STUB("qz90x6QkNP4", _ZN3JSC7Symbols24applyFunctionPrivateNameE) +STUB( + "qz9q9QlQCtc", + _ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse10setAvatarsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_6AvatarEEEEE) +STUB("qzEwpfbLVxI", cairo_set_font_face) +STUB("qzLx+qU8IPM", ucnv_getAvailableName_67) +STUB("qzMN2XKGA4k", sceAgcAcbCopyData) +STUB("qzNjJYKVli0", sceFontGraphicsSetFramePolicy) +STUB( + "qzOyUdN00MY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("qzP6B1vnYlc", JVM_CX8Field) +STUB("qzQGh1dSy0M", _ZNK7WebCore6Editor17firstRectForRangeEPNS_5RangeE) +STUB("qzQQWBOHJt4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEdeEv) +STUB( + "qzQWgoLfwsA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEE7add_refEv) +STUB("qzRKFPZapIk", uloc_getVariant) +STUB( + "qzaAmwm1FTs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "qzcMgfkB4E0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEED1Ev) +STUB("qzeDQW9di6I", + _ZN3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession14unsetSessionIdEv) +STUB("qzjL5iJVh5o", _ZN3JSC8Debugger17stepOverStatementEv) +STUB( + "qzkfM4Bp0Js", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE6resizeEj) +STUB("qzt6F50Wxic", WKWebsiteDataStoreSetResourceLoadStatisticsShouldDowngradeReferrerForTesting) +STUB( + "qzvloKSVRo4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "r+++5VvjpRk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEixEm) +STUB( + "r++EXL2l-jY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEdeEv) +STUB("r++oFgAiV3A", uhash_iremovei) +STUB("r+0PYA15guI", s12) +STUB( + "r+1TzI+TnH4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE21intrusive_ptr_add_refEPS9_) +STUB("r+49R3euh1w", u_memrchr32_67) +STUB("r+6EhwNd-yQ", mono_metadata_signature_dup) +STUB("r+6MxwEIYBw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEC1ERS7_) +STUB("r+8MepeuzD8", ucnv_unload_67) +STUB("r+DywjicdRA", mono_thread_new_init) +STUB("r+EWYk7uIo4", _ZN3sce2Np9CppWebApi6Common6VectorIdE5beginEv) +STUB("r+J44kwe3nA", sceCesGbToUtf8) +STUB("r+PkgVQFXW8", _ZN3sce7Toolkit2NP2V210Tournament24OfficialBroadCastDetails8deepCopyERKS4_) +STUB("r+Z3U7BeMAE", + _ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead11setPlatformERKNS3_8PlatformE) +STUB("r+Zh+vPNNzs", _ZN3sce7Toolkit2NP2V211SharedMedia10ScreenshotC1Ev) +STUB("r+aGsGP2oyo", JVM_GetMethodIxNameUTF) +STUB( + "r+arPYr9fb8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEC1Ev) +STUB( + "r+bobzRe1IM", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi20ParameterToJoinMatch10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_16JoinMatchRequestEEE) +STUB( + "r+eXy9SLeXQ", + _ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId10getifMatchEv) +STUB("r+gX3FnwPVM", delegate_virtual_invoke_imt_m_1) +STUB( + "r+jU4rXRMm8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEC1EPNS2_10LibContextE) +STUB("r+kkC2OXw10", _ZN15AbstractStorage14MemfileContentD2Ev) +STUB("r+paJGaB-bU", mono_aot_Sce_Vsh_EventServiceWrapperjit_got) +STUB("r+qKw+ueD+Q", sceAudioOutMasteringGetState) +STUB("r+sszvEAbyk", _ZNSt9basic_iosIcSt11char_traitsIcEE8setstateEj) +STUB( + "r+wsQ9N-pTU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEixEm) +STUB("r+zkazHnHlE", _ZN7bmalloc3api15mallocOutOfLineEmNS_8HeapKindE) +STUB("r--OB6JZtEw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE5beginEv) +STUB("r-11HWJyOiY", _ZN7WebCore14FrameSelectionC1EPNS_8DocumentE) +STUB("r-167z6BZHA", _ZN7WebCore18ScrollingStateTree6commitENS_19LayerRepresentation4TypeE) +STUB("r-2-a0c7Kfc", sceCompanionHttpdOptParamInitialize) +STUB("r-3VcPGTSfs", _ZN7WebCore17SQLiteTransactionD1Ev) +STUB( + "r-4YwYFNX0w", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEptEv) +STUB( + "r-4mjEkGdeI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE21intrusive_ptr_add_refEPS9_) +STUB("r-8-utEiGb8", _ZN3sce7Toolkit2NP2V24Core5EmptyaSERKS4_) +STUB("r-HaHlFmrBQ", _ZN6WebKit17ChildProcessProxyC2Ev) +STUB( + "r-IV7myZ87Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEE3getEv) +STUB( + "r-JSsJQFUsY", + _ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE8_PutmfldES3_bRSt8ios_basewbSbIwS2_SaIwEEw) +STUB("r-LTgAHhLHQ", WKPreferencesSetTopNavigationToDataURLsAllowed) +STUB("r-N+4pmGgtw", _ZN3sce7Toolkit2NP21AccessCodeInputParamsC1Ev) +STUB( + "r-OOKt7WiT8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEC2EPS8_) +STUB("r-OiMbqJuEQ", glGetSamplerParameteriv) +STUB("r-S1cObIqLw", sceBgftServiceIntDownloadGetUserStorageSize) +STUB("r-STrXYwY9k", _ZN3JSC7Options9s_optionsE) +STUB( + "r-TaByAiFBk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE7reserveEi) +STUB("r-TogOMFNc8", sceCesSbcToUtf32) +STUB("r-Wr8J0lqlI", _ZNK10__cxxabiv121__vmi_class_type_info7cast_toEPvPKNS_17__class_type_infoE) +STUB("r-XNO1bD-WA", _ZN3sce7Toolkit2NP2V210Tournament25OneVsOneTournamentDetailsC2Ev) +STUB("r-ZLkfnrlgw", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container18contentRatingIsSetEv) +STUB( + "r-bB0qdowjY", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB("r-lmfDcFyRE", sceIduUtilDeleteSaveData) +STUB("r-pOyN6AhsM", sceNetCtlApStop) +STUB("r-qf5g6rpvs", ures_getKeywordValues_67) +STUB("r-twZl6gN5k", + _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead19getCreatedTimestampEv) +STUB("r-zwpKMAgZs", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19BandwidthC2EPNS1_6Common10LibContextE) +STUB( + "r02+lHTqu0o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEppEv) +STUB("r07vD4SP2sc", sceLncUtilStartLaunchAppByTitleId) +STUB("r086my47qVA", WKPreferencesSetDeferredCSSParserEnabled) +STUB("r0CpwRVV56g", _ZN7WebCore31SimplifiedBackwardsTextIteratorC1ERKNS_11SimpleRangeE) +STUB("r0I61agWyvw", mono_aot_Sce_Vsh_VoiceAndAgentmethod_addresses) +STUB("r0NLdipzCw8", _ZN3WTF9MediaTimedlEPv) +STUB("r0Obro5wOdM", _ZN3JSC11RegisterSet14stackRegistersEv) +STUB("r0PYNWZLZS8", _ZN3sce2np7Callout5StartEmPNS1_7HandlerE) +STUB("r0QtEP0p4Gs", sceCompositorSetVideoOutMode) +STUB("r0bRjKqIBxE", WKContextMenuItemCopyTitle) +STUB("r0fVFU6ham8", _ZN7WebCore23commonInclusiveAncestorERKNS_11SimpleRangeE) +STUB( + "r0oR7UBGOYQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("r0ohxexxI3Y", + _ZN3sce2Np9CppWebApi14SessionManager2V112NonPsnLeaderC1EPNS1_6Common10LibContextE) +STUB("r0t1NxWUNwI", _ZN4IPMI4impl11SessionImpl26respondToSyncMethodRequestEiPKvm) +STUB("r0ye0xLWrtU", getAvailableProtocolInfoListNum) +STUB( + "r1-ecxhXwGo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEeqERKS9_) +STUB( + "r1-wTIyIlT8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE6finishEv) +STUB( + "r15nZRV6DjU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "r16J7f4XaR0", + _ZN3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBody10setPayloadEPKc) +STUB( + "r18FkRCvPBQ", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEEiRNS2_10LibContextEPT_m) +STUB("r19KpG1WP-o", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEE7get_refEv) +STUB( + "r1DPmfbUOKI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE7popBackEv) +STUB("r1MHRZTlMuQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEEppEv) +STUB("r1V9IFEE+Ts", sceAudioOutExConfigureOutputMode) +STUB("r1W-NtOi6E8", _ZNKSt5ctypeIwE10do_toupperEPwPKw) +STUB("r1f9mCImJCk", sceAvSettingSetAudioOutModeAny_) +STUB( + "r1ghFHdtGU0", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearchaSERS5_) +STUB("r1k-y+1yDcQ", _ZNSt14numeric_limitsIDiE8digits10E) +STUB("r1lsrmBP5i8", _ZN7WebCore9HTMLNames11onresetAttrE) +STUB("r1p+26H3NfQ", _ZN3WTF29equalIgnoringASCIICaseNonNullEPKNS_10StringImplES2_) +STUB("r1q1AFT-pms", JNU_ThrowIllegalArgumentException) +STUB( + "r1rbdow7aAw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB("r2+NfKBLFUQ", _ZN7WebCore21convertToIntegerClampItEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB("r20Y87D+ibY", _ZNK9Inspector22RemoteInspectionTarget3urlEv) +STUB("r22bYtshVmc", _ZN7WebCore9HTMLNames8meterTagE) +STUB("r24IV1PYa1g", _ZN3sce3pss5orbis9framework8PsmEvent10InitializeEv) +STUB("r28hEh6cNH0", sceAgcDriverGetHsOffchipParam) +STUB("r2C1PcTDYxk", FTA_Add_Module_autofitter) +STUB("r2ChuXgZiXQ", PEM_read_bio_X509) +STUB( + "r2HZ4Ydk9Ec", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEE3getEv) +STUB("r2LlyYTQMrY", _ZTVN7WebCore26Matrix3DTransformOperationE) +STUB( + "r2NQzMNLPP0", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getBoolean1Ev) +STUB("r2O0f9X-mqs", _ZN3sce2np10MemoryFile5WriteEPNS0_6HandleEPKvmPm) +STUB("r2P4v9m3K3s", WKBackForwardListGetForwardItem) +STUB("r2QXTDdHL2Q", rgctx_fetch_trampoline_rgctx_107_p) +STUB("r2QuHIT8u9I", sceUserServiceGetVolumeForMorpheusSidetone) +STUB( + "r2QyKVGwmmA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("r2RAGCixu6c", _ZN9Inspector29SupplementalBackendDispatcherC2ERNS_17BackendDispatcherE) +STUB("r2YKj15vOsY", _ZN12video_parser5vpcom4SeekE) +STUB( + "r2bgNtNAbTM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEED2Ev) +STUB("r2eb0xi4zjE", YGWrapToString) +STUB("r2rDWToC1MQ", _ZN3sce3Xml3Dom6NodeIdC2EPvS3_b) +STUB("r2s-nWfv9v4", _ZN3sce7Toolkit2NP2V212ActivityFeed9StoryUserC1Ev) +STUB("r2t2OdFU5SA", terminate_Jp) +STUB( + "r31jn2QrKSU", + _ZN9Inspector25NetworkFrontendDispatcher15loadingFinishedERKN3WTF6StringEdPS3_NS1_6RefPtrINS_8Protocol7Network7MetricsENS1_13DumbPtrTraitsIS9_EEEE) +STUB("r31lVqmxhZU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEC2ERKS7_) +STUB( + "r34ZD2bEDtM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("r370kbA+D2A", scePlayReadyCdmiIsLicenseAckRequired) +STUB( + "r3AqzkHLVTM", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessionsC1Ev) +STUB( + "r3BN7hhd2-8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("r3DkI-tYskg", _ZN7WebCore18ScrollingStateTreeC2EPNS_25AsyncScrollingCoordinatorE) +STUB("r3SJxnlaTlg", png_set_progressive_read_fn) +STUB( + "r3X7G2QjAtg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEEC2ERSA_) +STUB("r3Y3UiOISoo", _ZN7WebCore11JSImageDataC1ERKS0_) +STUB( + "r3d0HMEEJAo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("r3dWNxl4X-g", _ZN3sce2Np9CppWebApi7Matches2V124ResponseTeamMemberResult8setScoreERKd) +STUB("r3f8P85Jo2Q", sceBgftServiceIntDownloadDebugGetBgftEnvInfoString) +STUB( + "r3gmMgAlnGc", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUserC1ERS5_) +STUB( + "r3iYCrMLo6k", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB( + "r3jDzGL9cKQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "r3swmtAXFZA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEED1Ev) +STUB( + "r3sxcJrfSIM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEEC2ERKSA_) +STUB("r3tNGoVJ2YA", __ffsdi2) +STUB( + "r3tiRylj8S8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEmmEv) +STUB( + "r3ugeNlP73g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEC1Ev) +STUB("r3wY39B7+oo", _ZN3WTF22CrossThreadTaskHandlerC1EPKcNS0_25AutodrainedPoolForRunLoopE) +STUB("r42bWcQbtZY", sceNpCommerceDialogGetResult) +STUB( + "r43oJMKUKxY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE3endEv) +STUB("r44mAxdSG+U", scePadSetAngularVelocityDeadbandState) +STUB( + "r461lCORffM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEED1Ev) +STUB("r46sWu8eiG4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEEixEm) +STUB("r49JO54AgnE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEppEv) +STUB( + "r4BklzzAlUM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEEC2EPS8_PNS2_10LibContextE) +STUB("r4I84Y9nE5s", mono_aot_Sce_Vsh_MorpheusUpdWrapperplt_end) +STUB("r4KEihtwxGs", sceFontGlyphRenderImageHorizontal) +STUB("r4MsnprQKbo", ztrans_getTo_67) +STUB( + "r4N4SzzE1pQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEE7get_refEv) +STUB( + "r4NnrbhiEXA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE5beginEv) +STUB("r4QjLpqC-vw", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11TusVariableEED1Ev) +STUB("r4UOB4rrxD4", _ZNK7WebCore15ContextMenuItem4typeEv) +STUB("r4XacqHvkn4", sceNpSessionSignalingActivateSession) +STUB("r4Z3PQsaRBY", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEEC1Ev) +STUB( + "r4ai-Lzra0Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEC2Ev) +STUB("r4bOmdTOkfs", mono_profiler_install_gc_roots) +STUB( + "r4cbzfOcNI4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("r4kpLiYaVyM", _ZTVN8meta_gen13TiffRetrieverE) +STUB("r4o4j3iaN64", _ZN7WebCore22EmptyFrameLoaderClient30didRestoreFromBackForwardCacheEv) +STUB("r4oAo9in0TA", sceNpScoreSanitizeComment) +STUB( + "r4odcss6vJo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEE11release_refEv) +STUB("r4qw6DTdDDg", generic_trampoline_jump_p) +STUB( + "r4taBiWZTRw", + _ZThn16_N9Inspector19InspectorAuditAgent3runERN3WTF6StringERKS2_PKiRNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISB_EEEERNS1_8OptionalIbEE) +STUB("r4vFACIEDbI", _ZN3sce7Toolkit2NP2V210Tournament10TeamMemberC2ERKS4_) +STUB("r4wCfU5dxr4", _ZN7WebCore13IdentifierRep3getEPKc) +STUB("r4zVk342NH4", _ZN7bmalloc11IsoTLSEntryD2Ev) +STUB( + "r5-H6+Y4eYg", + _ZN6WebKit17ChildProcessProxy19dispatchSyncMessageERN3IPC10ConnectionERNS1_14MessageDecoderERSt10unique_ptrINS1_14MessageEncoderESt14default_deleteIS7_EE) +STUB("r52Dd0-g5Eo", ures_getUTF8StringByIndex_67) +STUB( + "r57+nPvx-5s", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("r57gyQh8njo", u_charFromName_67) +STUB( + "r59bxwttlFY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEE11get_deleterEv) +STUB("r5AXj55AGYo", _ZN3JSC32JSDestructibleObjectHeapCellTypeD2Ev) +STUB( + "r5BjJ2+UVWw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEED2Ev) +STUB("r5CShmcua+M", _ZN3sce4Json6Object8iteratorC2ERKS2_) +STUB("r5DSHLlSlkg", + _ZN3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectator17unsetPushContextsEv) +STUB("r5GFocLPNhA", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEEdeEv) +STUB("r5IsX1dPwUk", glDeleteShader) +STUB("r5MHuqZI-kw", _ZN7WebCore9HTMLNames11defaultAttrE) +STUB( + "r5Pj8S4CUYM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEED1Ev) +STUB("r5QyX8BvB2c", _ZNK7WebCore19ProtectionSpaceBase26receivesCredentialSecurelyEv) +STUB("r5RM+LBPkWA", _ZN7WebCore24CoordinatedGraphicsLayer15addChildAtIndexEPNS_13GraphicsLayerEi) +STUB( + "r5TJu58DcDM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("r5YSgAZsO4o", _ZNK3sce3Xml13AttributeList12getAttributeEPKNS0_6StringE) +STUB( + "r5bsQjwGHKo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEEC1Ev) +STUB("r5ekNJ1+Wrg", + _ZN3sce2Np9CppWebApi14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyD2Ev) +STUB( + "r5fIil5Lbgs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEED1Ev) +STUB("r5iHlAhWyUA", _ZN7WebCore6Chrome5printERNS_5FrameE) +STUB("r5ic7SNqMiQ", _ZN7WebCore11FontCascade21setShouldUseSmoothingEb) +STUB("r5pA-YyuuZ8", + _ZN3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResults8fromJsonERKNS_4Json5ValueE) +STUB( + "r5pSdddhfYE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEaSERS7_) +STUB("r5see1jyEsU", sceVdecwrapGetDecodeOutput) +STUB( + "r5twFOWofFA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("r5uv3mpXnXg", _ZNK7WebCore11HTMLElement3dirEv) +STUB("r6237rhFfsY", ucase_addStringCaseClosure_67) +STUB("r63GKN25X8o", mono_btls_x509_store_up_ref) +STUB( + "r6D86mwYvys", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "r6FSzhfoFYw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEC1ERS7_) +STUB("r6Go5XHEHz0", _ZN9Inspector21InjectedScriptManager17injectedScriptForEPN3JSC9ExecStateE) +STUB( + "r6ICL3ZMpYY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEE7add_refEv) +STUB("r6MyYJkryz8", sceNpCheckPlus) +STUB("r6PF1NMzp0Q", _ZN15AbstractStorage15FacebookServiceD0Ev) +STUB( + "r6Quept7TTo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEEC2ERSA_) +STUB("r6SZpllRVXo", mono_aot_Sce_Vsh_KernelSysWrapperjit_code_end) +STUB("r6T0Rr2Nr88", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEE7add_refEv) +STUB("r6Wuu1Tc438", u_getFC_NFKC_Closure) +STUB( + "r6a-IftYxWU", + _ZN9Inspector20CSSBackendDispatcher16createStyleSheetElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "r6a2qSIW0Kc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEC2EPS6_PNS2_10LibContextE) +STUB( + "r6et+nJRQ5w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEE7get_refEv) +STUB( + "r6fVYC8rnMU", + _ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime13ObjectPreviewEE11runtimeCastEON3WTF6RefPtrINS5_8JSONImpl5ValueENS5_13DumbPtrTraitsIS8_EEEE) +STUB("r6hBVQq1dWQ", ucase_toFullUpper_67) +STUB( + "r6oeGe1VQlQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "r6pEhUdr+5k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEE5resetEPS9_) +STUB( + "r72nGLomlgA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEE7add_refEv) +STUB( + "r73SPJHGah4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEppEi) +STUB("r74Ku+5taTc", _ZN3JSC24reportZappedCellAndCrashERNS_4HeapEPKNS_6JSCellE) +STUB( + "r74rpKLR9-g", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEixEm) +STUB( + "r7992c7RQtE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "r7BvRALMzPg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE5beginEv) +STUB("r7GpJXebmjg", _ZN7WebCore15NavigatorBeacon4fromERNS_9NavigatorE) +STUB( + "r7I+o+gMQ18", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEED2Ev) +STUB( + "r7JrMLiQ1hk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEC1EPNS2_10LibContextE) +STUB( + "r7NrV7M5210", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEC2Ev) +STUB( + "r7PmVIzF2Fg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEptEv) +STUB("r7R1dUN3oS0", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V110AvatarSizeEEaSERKS7_) +STUB("r7R5PcnkCt8", + _ZN3sce2Np9CppWebApi14SessionManager2V124PlayerSessionPushContextC1EPNS1_6Common10LibContextE) +STUB("r7Sr1i7KLus", sceCesMbcsStrGetUtf8Len) +STUB("r7U2ThCt1ag", _ZN3JSC14formatDateTimeERKN3WTF17GregorianDateTimeENS_14DateTimeFormatEb) +STUB("r7UpNm1Po9s", _ZN3sce2np3ipc10IpmiClient16invokeSyncMethodEjPKvmPvPmm) +STUB("r7b7rAUjAQM", mono_btls_pkcs12_free) +STUB("r7bQ7kO3-Co", mono_shared_mempool_alloc) +STUB("r7d8eEp5vJE", sceNpManagerIntClearGameAccessToken) +STUB( + "r7eQLCV0o9k", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEEC2ERKSC_) +STUB("r7f7M5q3snU", sceHmdInternalMmapGetCount) +STUB("r7s4ZK35o3Y", _ZNK3WTF6String16removeCharactersEPFbDsE) +STUB( + "r7wWhxfOuxg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("r7z5YQFZo+U", sceAcmBatchJobNotification) +STUB( + "r7zPjaLDVoU", + _ZN9Inspector21InspectorRuntimeAgent13getPropertiesERN3WTF6StringERKS2_PKbPKiS9_S7_RNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime18PropertyDescriptorEEENS1_13DumbPtrTraitsISG_EEEERNSA_INSC_INSE_26InternalPropertyDescriptorEEENSH_ISM_EEEE) +STUB( + "r8+bx3icHY4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "r8+rAWhT400", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEEdeEv) +STUB( + "r8003V6UwZg", + _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE7_GetfmtES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tmPKc) +STUB("r81tp3TlPE4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEEC1EPS6_) +STUB("r82K1GapsD0", _ZN7WebCore9HTMLNames14ondblclickAttrE) +STUB("r86pc6e3qQk", utf8_countTrailBytes) +STUB("r8HE653o+HI", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyD1Ev) +STUB("r8HfW2ap6GI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE4sizeEv) +STUB("r8Hs5DDlMYw", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament7BracketEE3setEv) +STUB("r8Md8WuqsoA", _ZNK3WTF15AutomaticThread4nameEv) +STUB("r8MkJWy6j6s", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEEaSERS6_) +STUB("r8Oq2NHzWTc", _ZN13MsvMetaEditor11ConvertTtoBEt) +STUB("r8QyPRbTAAk", sceSystemServiceNotifyBgmCoreTermination) +STUB("r8U40XnqPzM", ucol_getSortKey_67) +STUB("r8UkXtceG0s", _ZTVN15AbstractStorage14TwitterContentE) +STUB( + "r8VcbyT+iAs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEE7add_refEv) +STUB("r8aky-w4ENA", + _ZN15AbstractStorage14FacebookFolder12RemoveFolderERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) +STUB("r8b19knbYr8", mono_aot_ReactNative_Modules_Vshjit_got) +STUB("r8b4fQiebU4", _ZN3sce2Np9CppWebApi11UserProfile2V113BasicPresenceD1Ev) +STUB("r8dfx9oS3us", sceShareUtilityAdvanceQueryServiceInfoA) +STUB("r8fhxx1gq6U", _ZN3sce2Np9CppWebApi6Common6VectorIfE7popBackEv) +STUB( + "r8hPOgobo3w", + _ZNK3sce2Np9CppWebApi11UserProfile2V111PresenceApi28ParameterToGetBasicPresences13isInitializedEv) +STUB("r8jbPI8izd0", _ZN9Inspector18InspectorHeapAgent13startTrackingERN3WTF6StringE) +STUB("r8knxrn-LZ8", _ZN3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatformD1Ev) +STUB("r8mVMwlafF8", sceNpSessionSignalingRequestPrepare) +STUB("r8mvOaWdi28", il2cpp_api_lookup_symbol) +STUB("r8nkOHa-47M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEEC2EPS5_PNS2_10LibContextE) +STUB( + "r8uiehY9Fqc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEE5resetEPS6_) +STUB("r8zSU7mBZqc", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getCurrentPlayItemId) +STUB("r91VXwrT5AI", _ZThn136_NK7WebCore16HTMLMediaElement7canPlayEv) +STUB( + "r95WOmjxPb4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEC2ERS7_) +STUB("r98I08t+LOg", sceAgcDcbDrawIndexIndirectMultiGetSize) +STUB("r9Bet+s6fKc", sceNpMutexLock) +STUB("r9BgI0PfJZg", sceNpWordFilterCreateTitleCtx) +STUB("r9CsgwF3tOU", _ZN3sce7Toolkit2NP2V212EventsClient15EventUserStatusD1Ev) +STUB( + "r9EQk4-7iFA", + _ZN3sce2Np9CppWebApi11UserProfile2V125GetFriendsResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_18GetFriendsResponseEEE) +STUB("r9FFtkT+gYM", _ZN7WebCore12DOMTokenList6tokensEv) +STUB("r9GyJMHv0yw", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead21leaderPrivilegesIsSetEv) +STUB("r9IEZUZrtA4", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_16EventInformationEE3getEv) +STUB("r9KGqGpwTpg", sceAudioOutSetDevConnection) +STUB("r9MAlvcfkFk", ucasemap_setBreakIterator_67) +STUB( + "r9MDy-gsjkY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEEcvbEv) +STUB("r9MeaxiziS4", mono_error_init_flags) +STUB("r9MlfKcu6N4", sceRemotePlayClientStartMicCapture) +STUB( + "r9eapVrSr5s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEaSERS7_) +STUB( + "r9n-E9PuVyk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("r9nVN6JyD4A", _sceLibcMemalign) +STUB( + "r9nYloY1GM4", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser9hasoffsetEv) +STUB( + "r9qYF83eWpE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEmmEi) +STUB("r9qekNbogMo", _ZN3sce2Np9CppWebApi6Common6VectorIiE7reserveEi) +STUB("r9z2aGbF4hg", _ZN7WebCore26IdentityTransformOperation5blendEPKNS_18TransformOperationEdb) +STUB("r9zkv0skrw4", _ZN3sce7Toolkit2NP2V27Session11SessionDataD2Ev) +STUB( + "rA45O1KNdLU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEE3getEv) +STUB("rA7E7LfU7Sk", _ZN3JSC20createReferenceErrorEPNS_14JSGlobalObjectERKN3WTF6StringE) +STUB("rA9LgVq5Svk", _ZN4Manx13WorkQueueImplD0Ev) +STUB( + "rAE21nIqin8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEE11release_refEv) +STUB("rAKTv3Z5OQQ", _ZN3JSC12GlobalJSLockC1Ev) +STUB("rAOOqDAxBIk", sceNpWordFilterAbortRequest) +STUB("rAQfp8dc5Mk", _Z16Bgm_BgmNoizeTesti) +STUB("rASXozKkQ9g", sceImeVshSetPanelPosition) +STUB("rAT++7Kt224", _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_11TusVariableENS2_IS4_EEEED1Ev) +STUB("rAU9SRsnG3E", WKContextRegisterURLSchemeAsCanDisplayOnlyIfCanRequest) +STUB("rAUEx7YK0rI", UCNV_TO_U_CALLBACK_SUBSTITUTE_67) +STUB("rAXmGoO-VmE", sceHmdInternalSetDefaultLedData) +STUB( + "rAYElm0IYHw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEE5resetEPS8_) +STUB("rAZtwARzp6w", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_15CategoryInfoSubENS2_IS4_EEEED1Ev) +STUB( + "rAk+752F2PU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEaSERS7_) +STUB("rAkuRf44hSE", _ZN7WebCore9TreeScope17elementsFromPointEdd) +STUB( + "rAnSCvzPOok", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE5beginEv) +STUB( + "rAp+vhhVZss", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEEC1EPS6_PNS2_10LibContextE) +STUB( + "rAvpKcWLc30", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScore24hasxPsnAtomicOperationIdEv) +STUB( + "rAyDpTSCJnI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEC2EPS8_) +STUB("rB0oqLSjH6g", _ZN3sce2np8NpCommIdC2ERKS1_) +STUB("rB1RFXt+i-Y", sceDebugDetachProcess) +STUB("rB2mYuU-igs", sceDeci4hDrfpRemove_fuse_fullpath) +STUB("rB70KuquYxs", sceUserServiceSetSharePlayFramerateHost) +STUB("rB8XP9T6Dsk", sceBufferRealloc) +STUB( + "rB99eTi8wks", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEEdeEv) +STUB( + "rBCq22VDbTE", + _ZN3sce7Toolkit2NP2V28Commerce29displayVoucherCodeInputDialogERKNS3_7Request29DisplayVoucherCodeInputDialogEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("rBDEhJgMruY", sceVideoOutSysConfigureOutputMode_) +STUB( + "rBETXCRC2M0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE5beginEv) +STUB( + "rBEzL-Eh6dQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("rBFA69fgIw8", _ZN3JSC22JSFinalizationRegistry6s_infoE) +STUB( + "rBNBuzCGsLQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE5startEPNS2_10LibContextE) +STUB("rBPmQseo12E", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEEplEm) +STUB("rBS6qOXYp90", _ZN3JSC7Symbols15racePrivateNameE) +STUB("rBSF8DcDRLU", _ZNK7WebCore8Document17viewportArgumentsEv) +STUB( + "rBSSENOSKvw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE5beginEv) +STUB( + "rBYZxW18dEY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE3endEv) +STUB("rBZ+OjdFBAk", _ZN7WebCore27createDragImageForSelectionERNS_5FrameERNS_17TextIndicatorDataEb) +STUB("rBbtKToRRq4", _Atomic_compare_exchange_weak_1) +STUB("rBcHsDR4huI", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Publisher9iconIsSetEv) +STUB( + "rBl0A6F95Rs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEC1ERS7_) +STUB( + "rBlj2F7cZ8c", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "rBmgaFkHLWg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEaSERKS7_) +STUB("rBnve0h78Iw", _ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error11unsetErrorsEv) +STUB("rBoGFnN+Hrw", _ZN7WebCore16BlobRegistryImpldaEPv) +STUB( + "rBtUdyxM9Ew", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEED1Ev) +STUB("rBwjuScLBnY", _ZN9Inspector21InspectorConsoleAgent11startTimingERKN3WTF6StringE) +STUB("rByX5mcOWk0", g_timer_destroy) +STUB("rBz1OlRUnKY", ScePsmMonoDelegateToFtnptr) +STUB( + "rC0HX0fvvmg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEC1Ev) +STUB( + "rC1XuKQaqwg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "rC4JiegW8rI", + _ZN3sce2Np9CppWebApi14SessionManager2V132RequestPlayerSessionMemberPlayer16setNonPsnPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_38RequestCreatePlayerSessionNonPsnPlayerEEEEE) +STUB( + "rC4asp0tO3U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEC2EPS8_) +STUB( + "rC6DV8RL7u4", + _ZN7WebCore21JSTextTrackCueGenericC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_19TextTrackCueGenericENS6_13DumbPtrTraitsIS8_EEEE) +STUB("rC7yBRkTkqk", _ZSt9use_facetISt10moneypunctIwLb1EEERKT_RKSt6locale) +STUB("rCE8Sd2JALQ", WKMediaCacheManagerGetHostnamesWithMediaCache) +STUB( + "rCFy+3IHE1Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEaSERS7_) +STUB("rCJ7v9GFezU", unum_open_67) +STUB("rCKWJdcZRiw", _ZN7WebCore9HTMLNames4pTagE) +STUB("rCPCMV9J+kw", SSL_CTX_free) +STUB("rCRh3V03bPs", _ZN3sce2np12StreamReader4ReadEPNS0_6HandleEPNS0_9StreamCtxEPvmPm) +STUB("rCTGkBIHfPY", pthread_spin_trylock) +STUB("rCVSmBr4CVo", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11TusVariableEED2Ev) +STUB("rCabRpgyBR4", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V113SubtaskStatusEEeqERKS7_) +STUB( + "rCbvxfo5a5U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("rChPcBekxAk", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_15ActivityStoryIdEED1Ev) +STUB("rCicuxDju1M", mono_aot_Sce_Vsh_UsbStorageSceneplt_end) +STUB( + "rCk5YpHJwGs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEEC2ERKSA_) +STUB("rClO2jsRFL0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEaSERKS7_) +STUB("rClTWgPeQDo", _ZNK7WebCore9FloatRect8containsERKNS_10FloatPointENS0_12ContainsModeE) +STUB("rCnUNBv-jKs", _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse17unsetInGameRosterEv) +STUB( + "rCnuFv-wB+k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEmmEv) +STUB("rCnvauevHHc", sceNpManagerIntLoginSignin) +STUB( + "rCr53JL1bmk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB("rCyg+xFA0kA", _ZNK9Inspector15ScriptArguments24getFirstArgumentAsStringERN3WTF6StringE) +STUB("rD1uDD2rEso", glUniformMatrix4x3fv) +STUB("rD2XyYFMrz0", mono_compile_method) +STUB("rDFh87N07Lw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEC1ERKS7_) +STUB("rDG6T-LSAck", Java_java_io_ObjectStreamClass_initNative) +STUB("rDMyAf1Jhug", __isinff) +STUB("rDTW4UZwsHo", _ZN12Mp4Retriever14processTrakBoxEv) +STUB( + "rDbtNQ4t0Is", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEmmEi) +STUB("rDcmAMe5F34", GCC_except_table99) +STUB("rDddMsCTYJA", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_6NpUserEE7destroyEPS3_) +STUB( + "rDdvZA+B2C0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "rDieCyhml5c", + _ZN7WebCore9FontCache22createFontPlatformDataERKNS_15FontDescriptionERKN3WTF12AtomicStringEPKNS_18FontTaggedSettingsIiEEPKNS_19FontVariantSettingsENS_34FontSelectionSpecifiedCapabilitiesE) +STUB("rDkflpHzrRE", sceUserServiceSetGlsLfpsSortOrder) +STUB( + "rDo87DiUnIk", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3CSS8PseudoIdEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB("rDpDyVRTdSY", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE4sizeEv) +STUB( + "rDqaeul9AC8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEE3getEv) +STUB("rDtFuWpxAgM", sceMatPushMarkerStatic) +STUB( + "rE-bpivbKVA", + _ZN9Inspector17BackendDispatcher12sendResponseElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "rE2-SSZ7Tok", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEED1Ev) +STUB( + "rE3XmsZiHos", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEC2Ev) +STUB("rE9QZyKNUVk", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE5clearEv) +STUB( + "rEE8+5bbgco", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V345CommunicationRestrictionStatusResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_38CommunicationRestrictionStatusResponseEEE) +STUB("rEMG2FORiIs", _ZN7WebCore11DisplayList8FillPathC1ERKNS_4PathE) +STUB("rEMzR6lwR-I", _ZN3sce3pss5orbis5input50InputManager_GetInvalidOperationByOtherUsersNativeEPb) +STUB("rENdf2qgOE4", cairo_close_path) +STUB("rERaTGtN0zc", _ZN3sce7Toolkit2NP2V28Commerce18ServiceEntitlementC1Ev) +STUB("rESvbHhCMnU", BN_CTX_free) +STUB( + "rEVoMY9SQ7Q", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("rEVzB2M-69w", uidna_nameToUnicodeUTF8_67) +STUB( + "rEY7CD-09rI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("rEaoUJRD8Wk", + _ZN7WebCore10JSDocument15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB("rEeMuMnKvSA", _ZN7WebCore14DocumentLoader15detachFromFrameEv) +STUB("rEh728kXk3w", sceNgs2VoiceGetStateFlags) +STUB( + "rEkV+ShwyFM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEmmEi) +STUB("rErIKbleNdk", + _ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody17waitsForDataIsSetEv) +STUB("rErmWpWZcKE", _ZTVN3WTF8JSONImpl5ValueE) +STUB("rEt3OdJ9JMY", _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse10getMatchIdEv) +STUB( + "rEvhXRVOWQE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEEC1ERKS9_) +STUB( + "rEz9jmDS+EY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEEaSERSA_) +STUB("rEzd-SUbkbU", _ZNK3sce2Np9CppWebApi6Common6VectorIfE5emptyEv) +STUB("rF07weLXJu8", _ZNSt8bad_castD2Ev) +STUB( + "rF2kql3-85o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE5clearEv) +STUB("rF5BMbyEszI", WKBundleFrameCopyCounterValue) +STUB( + "rF5h2PXWFvg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEmmEi) +STUB( + "rFBpruGjpz4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEptEv) +STUB("rFCJnwsHUYA", sceApplicationGetAppPackageInfoForCoredump) +STUB("rFDrxsdwWCY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEC2Ev) +STUB( + "rFFxx44Zmtc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEED1Ev) +STUB("rFHlht2DdoY", + _ZNK3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer14getCustomData1Ev) +STUB( + "rFNzw7PCoVQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "rFOrapbOB7k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEC2Ev) +STUB("rFQd6MrFmA0", __ubsan_handle_float_cast_overflow_abort) +STUB( + "rFUt9dKuCek", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE5eraseENS2_13ConstIteratorIS9_EERSC_) +STUB("rFW7xEUHq-I", WKPreferencesSetCompositingBordersVisible) +STUB("rFYrdyiAwE8", _ZN7WebCore11MathMLNames18mathbackgroundAttrE) +STUB("rFYwm9z1sBM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEEmmEv) +STUB("rFcQRK+GMcQ", _ZN3sce2np9NpTitleIdD0Ev) +STUB("rFejiB5ds6Y", _ZN7WebCore24distanceBetweenPositionsERKNS_15VisiblePositionES2_) +STUB("rFfP4eJja84", uscript_nextRun_67) +STUB( + "rFgB3y-6q98", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEptEv) +STUB("rFiChDgHkGQ", CA_MGMT_extractKeyBlobTypeEx) +STUB( + "rFllVVmBJS0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEC1ERKS7_) +STUB("rFm8t09eAxs", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error20missingElementsIsSetEv) +STUB( + "rFmky6SYG9c", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEixEm) +STUB("rFp3SIH8rXA", mono_aot_Sce_Vsh_FileSelectorAdvanceunbox_trampolines_end) +STUB( + "rFqeqMadDKU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEC2Ev) +STUB( + "rFraRDbxOps", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayer28hasxPsnAcceptPlatformNamePs5Ev) +STUB( + "rFt3a3MT5Cc", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V325PsnWebErrorWrapperFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_18PsnWebErrorWrapperEEE) +STUB("rG1Qu1lwPAw", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEEixEm) +STUB( + "rG1SXK5XvbI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEaSERS7_) +STUB("rG2ESToL3K0", _ZN3sce3Xml3Dom15DocumentBuilderD1Ev) +STUB("rG7W98YlHTw", VerifyClassname) +STUB( + "rG8GX5GsJO0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEC2EPNS2_10LibContextE) +STUB("rG8xXX-L7NU", _Ux86_64_is_fpreg) +STUB("rGBBgGamo5c", sceCesUtf16ToEucKr) +STUB( + "rGBOn9BlxHk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEC2ERKS7_) +STUB("rGCLqREfQlM", sceCloudClientCancelRequestGame) +STUB( + "rGChFIFjACs", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS4_PvEPFvliS9_ES9_) +STUB("rGHPK67nebg", _ZN3sce7Toolkit2NP2V27Ranking12RangeOfRanksaSERKS4_) +STUB( + "rGKL-KxOVNQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE3endEv) +STUB("rGN32QOaG1Y", mono_btls_x509_store_ctx_from_ptr) +STUB( + "rGNNMSvsCHg", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeader46setputPlayerSessionsSessionIdLeaderRequestBodyENS1_6Common12IntrusivePtrINS3_43PutPlayerSessionsSessionIdLeaderRequestBodyEEE) +STUB("rGNm+FjIXKk", sceHttpCreateRequest2) +STUB("rGSEtxY7Pds", _ZN12video_parser5vpcom15GetCommonStringERKi) +STUB("rGSY5kqmIQo", ures_getInt) +STUB( + "rGV5NVK86WM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEE3getEv) +STUB( + "rGVD1AHDPbw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE3endEv) +STUB( + "rGZfLzFS5mQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEC2Ev) +STUB("rGccgf7LjyA", sceNpManagerStopVsh) +STUB( + "rGcnlOFyjl8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEC2EPS8_) +STUB("rGeiyVYzqo0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEEC2EPS6_PNS2_10LibContextE) +STUB("rGgWAntk5qs", SSL_CTX_set_info_callback) +STUB( + "rGhIGIDwTao", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE7reserveEi) +STUB("rGkq346FJrs", + _ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors12unsetMessageEv) +STUB( + "rGlSUPWJVyE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEC1Ev) +STUB("rGoboR+Egrc", _ZN7WebCore9HTMLNames27webkitattachmentbloburlAttrE) +STUB("rGwMJU-Z60g", mono_aot_System_ServiceModelunbox_trampolines_end) +STUB("rH+tkxgXLPI", _ZN7WebCore9HTMLNames17aria_expandedAttrE) +STUB("rH2mWEndluc", scePthreadMutexattrGetkind) +STUB( + "rH5-TraEnxk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE4sizeEv) +STUB("rH8hY8WuDvg", sceApplicationNotifyPhase) +STUB( + "rHANA+NUzXc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEED1Ev) +STUB( + "rHFROdBBD7E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEEaSERKSA_) +STUB( + "rHIOSjJ7JzE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEED1Ev) +STUB("rHJ2sx9bGIg", _ZN3JSC15TypeProfilerLog17processLogEntriesERKN3WTF6StringE) +STUB( + "rHOVyKCMHjM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEdeEv) +STUB("rHRr+131ATY", llabs) +STUB("rHSo-yI3Q+U", mono_custom_attrs_free) +STUB( + "rHUkJKD-LN0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEppEv) +STUB("rHVNXPmC65Q", _ZN7bmalloc8FreeList5clearEv) +STUB("rHXQyGpHfdw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEED1Ev) +STUB( + "rHYtxPVFchU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE5emptyEv) +STUB("rHanQbFAxhg", EVP_PKEY_CTX_new) +STUB( + "rHb7R9ccbmA", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetBoolean7Ev) +STUB( + "rHd7pYIn2fg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEC2EPNS2_10LibContextE) +STUB( + "rHf5cNUxBgo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE3endEv) +STUB("rHimiSy9VdU", _ZN3sce7Toolkit2NP2V27Session11InvitationsC1Ev) +STUB( + "rHng21YAeYY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEC2EPS6_PNS2_10LibContextE) +STUB("rHuM4YIbyrk", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container13unsetChildrenEv) +STUB( + "rHw87qDePG8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEED2Ev) +STUB("rHz0QJW4zAo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEEeqERKS7_) +STUB( + "rHzXUC9OHh8", + _ZN15AbstractStorage15HttpTransaction15SendHttpRequestERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEiRKSt3mapIS5_S5_St4lessIS5_ESaISt4pairIS6_S5_EEEmb) +STUB( + "rI1SbBosH90", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEC2ERKS7_) +STUB( + "rI1mnrO5kok", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEEC2EPSA_PFvSC_EPNS2_10LibContextE) +STUB("rI2TLYtQOug", _ZNK3sce2Np9CppWebApi7Matches2V113ChildActivity15getAvailabilityEv) +STUB("rI2wkRi6nNU", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE5clearEv) +STUB("rI39CFx2B58", _ZN7WebCore15JSDOMWindowBase4infoEv) +STUB("rI9PMHXJO+Q", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicket11setticketIdEPKc) +STUB("rI9jlW2FAC4", _ZN3WTF11Persistence7EncoderlsEj) +STUB("rI9lNAXPMIw", sceAgcDriverGetResourceType) +STUB("rIB2Lqvbmyw", mono_get_uint32_class) +STUB( + "rIEbvyxN3AE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE5beginEv) +STUB( + "rIG+es1uNS0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEC2EPNS2_10LibContextE) +STUB("rIH7UTXfho4", sceCompsoitorGetRenderingTime) +STUB("rIKEui9oRJg", _ZN3WTF8pageMaskEv) +STUB( + "rILPCmFoOoc", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "rIO-h62heYY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEneERKS9_) +STUB("rISufqUfxtI", _ZN12video_parser5vpcom11LwMutexLockEPNS0_11sys_lwmutexEy) +STUB("rIT2ClXDu7Q", _ZN7WebCore20ISOOriginalFormatBoxaSERKS0_) +STUB( + "rIVfPkGXhsA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE8pushBackERKS8_) +STUB("rIXoNZkmSbI", WKAXObjectGetTypeID) +STUB("rIZnR6eSpvk", scePadResetOrientation) +STUB( + "rIgTGKsjMac", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesC1EPNS1_6Common10LibContextE) +STUB( + "rIqBOhWxNYA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("rIrumhLPtG4", mono_aot_Sce_Vsh_Np_Snsunbox_trampoline_addresses) +STUB("rJ1ctJzy4tg", _ZN3JSC17JSPromiseDeferred6createERNS_2VMEPNS_8JSObjectENS_7JSValueES5_) +STUB("rJAmYfnKn2Q", _ZN3sce7Toolkit2NP2V210Tournament7Request10GetBracketD1Ev) +STUB("rJFDhypHYaY", sceLibreSslGetMemoryPoolStats) +STUB("rJFvhRrqdKI", _ZN3sce7Toolkit2NP2V29Challenge10ChallengesD2Ev) +STUB("rJNPJqDCpiI", sceNpMatching2GetWorldInfoList) +STUB("rJPGshRLOpc", _ZNK3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead13teamNameIsSetEv) +STUB("rJTtAVw7H5I", _ZN7WebCore40defaultTextEncodingNameForSystemLanguageEv) +STUB("rJUyMrDdxJg", sceAgcDriverGetShaderDebuggingStatus) +STUB( + "rJVd64l41v4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEEC2ERSA_) +STUB("rJWnDO35mR8", glGetQueryObjectuiv) +STUB("rJWslrzgww8", scePlayReadyCdmiUpdate) +STUB("rJX8As6nMrY", _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfileD2Ev) +STUB("rJcLupv6yz8", _ZNK7WebCore11MediaSample13videoRotationEv) +STUB("rJd1hbDatCY", _ZNK7WebCore18PlatformTimeRanges7containERKN3WTF9MediaTimeE) +STUB( + "rJqPkNYQnLI", + _ZNK3sce2Np9CppWebApi14SessionManager2V130ResponsePlayerSessionSpectator6toJsonERNS_4Json5ValueEb) +STUB( + "rJsartzbW-0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEC1EPNS2_10LibContextE) +STUB( + "rJygR7RFQdI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "rK3Pycz8Gno", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE7popBackEv) +STUB("rK7wU7R7feE", _ZN9Inspector8Protocol3CSS11CSSProperty4NameE) +STUB( + "rK9GCV+0eyk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEC2Ev) +STUB("rKBUtgRrtbk", sceVideoOutRegisterBuffers2) +STUB("rKBbPSETkpU", _ZN3WTF10WorkerPool8postTaskEONS_8FunctionIFvvEEE) +STUB( + "rKBk2NUKHK4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEED2Ev) +STUB("rKD5kXcvN0E", SSL_ASYNC_connectCommon) +STUB("rKKqbTOAarE", _ZN7WebCore40clearDefaultPortForProtocolMapForTestingEv) +STUB( + "rKLgHZZHEWA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEEC2Ev) +STUB( + "rKPAR3kaqYU", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB("rKPTlHwGa4k", scePlayerInvitationDialogOpen) +STUB( + "rKQWg-Ppsno", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE8capacityEv) +STUB("rKR0lSOhmmw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEC1ERS7_) +STUB( + "rKR3IvSntcM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEC1EPS8_) +STUB("rKRiqL7quEg", Java_java_io_ObjectInputStream_allocateNewObject) +STUB( + "rKRsYMFHLMY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEdeEv) +STUB( + "rKSFqai1oiU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEE21intrusive_ptr_sub_refEPS7_) +STUB("rKT4rTbgt7Q", ustrcase_internalToTitle_67) +STUB( + "rKVl-biX8jw", + _ZN9Inspector25DebuggerBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "rKYoJ7UskJ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEEC1ERS9_) +STUB("rKaPnExi-70", _ZN3JSC8JSObject12isExtensibleEPS0_PNS_14JSGlobalObjectE) +STUB("rKaW5ETSvSA", Java_sun_awt_GnmUtils_getEngineFromImage) +STUB( + "rKhU+og7e74", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB( + "rKlUXKdlRm8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("rKq9nG+L9Xo", sceAmprAmmCommandBufferModifyMtypeProtect) +STUB( + "rKtz2EfCiBs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEE7add_refEv) +STUB("rKwwPYaJ5Ck", _Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm13CpPerfCounterE) +STUB("rKyTQRDAnxw", Java_sun_awt_GnmUtils_getEngineFromGraphics) +STUB("rL123FrWRGY", mono_jit_parse_options) +STUB("rL67kXE01Mg", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request15GetSharedVideosD1Ev) +STUB("rL8YfuwG02c", + _ZN12video_parser17cVideoProfilerMp418setDefaultLanguageENS_11MediaType_eENS_9VP_LANG_eE) +STUB( + "rLAslU3PdL4", + _ZN3sce2Np9CppWebApi14SessionManager2V161GetUsersAccountIdPlayerSessionsInvitationsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_54GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEE) +STUB("rLBzi9aobXU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE4sizeEv) +STUB("rLEw4n5yI40", sceUserServiceGetGlsCameraEffect) +STUB("rLIrZv4LN4Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEEmmEi) +STUB( + "rLJDjtPn7u4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEEcvbEv) +STUB( + "rLJaNbc0TU4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEEptEv) +STUB( + "rLJeP+GsLz4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("rLK6S3dUUEA", WKPreferencesGetAVFoundationEnabled) +STUB( + "rLMiXnSAP6U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "rLPAlYpAyns", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "rLRukClGA28", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_34DetailedProductInfoListInputParams9ProductIdEEeqERKS5_) +STUB("rLUW3fPPXvg", _ZN7WebCore17HTMLSelectElement7setSizeEj) +STUB("rLV7ZbHNgeA", _ZN3JSC12VMEntryScopeD1Ev) +STUB("rLV7ZbjxqD0", _ZN7WebCore20PasteboardCustomData5EntryC1EOS1_) +STUB("rLZHS6UNwUg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE3endEv) +STUB( + "rLdfvDSOOL0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEE3getEv) +STUB("rLiFc4+HyHw", + _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basece) +STUB("rLj8gTIKh08", bemp2sys_tsfilter_create) +STUB("rLn-Coo48ow", rgctx_fetch_trampoline_rgctx_19_p) +STUB("rLsPBLktI-A", _ZNK7WebCore16HTMLInputElement13valueAsNumberEv) +STUB( + "rLtRIHGn-g8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEED2Ev) +STUB("rLtUwUHIUG0", _ZN3sce7Toolkit2NP2V28Matching7Request7GetDataC2Ev) +STUB("rLuypv9iADw", __fixunsdfti) +STUB( + "rLvNPp1gwro", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE21intrusive_ptr_add_refEPS9_) +STUB("rLxHpLiCPw4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEED1Ev) +STUB("rM-1hkuOhh0", sceImeVshDisableController) +STUB( + "rM16RUJ+ruk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEplEm) +STUB( + "rM1pB40ImUI", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody25totalDataStatusCountIsSetEv) +STUB("rM2aePgqMVc", _ZN7WebCore12ChromeClient28supportsFullScreenForElementERKNS_7ElementEb) +STUB("rM3UhfGefM4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEdeEv) +STUB( + "rM9tdylxdj0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEED2Ev) +STUB("rMByn5JGEn0", u_strcasecmp_67) +STUB("rMLZl2MKzgk", _ZNK3JSC11ArrayBuffer5sliceEii) +STUB( + "rMN7NiO+P24", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("rMQUlsBTvEQ", g_strchomp) +STUB( + "rMU1k3iGBQI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditionsC1ERS5_) +STUB( + "rMXlAdCYpNQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("rMZOszpS+f8", _ZN3sce7Toolkit2NP2V26Friend16FriendsOfFriendsC1Ev) +STUB("rMZwfKbHfqE", _ZTVN9Inspector33ApplicationCacheBackendDispatcherE) +STUB("rMaiuPQsNoM", sceSdmaOpen) +STUB("rMbGu0HyUlc", mono_assembly_load) +STUB( + "rMe8lTyoBwY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEC1Ev) +STUB("rMnQ2wsSy-c", WKInspectorIsAttached) +STUB("rMqqdr74UvQ", WKWebsiteDataStoreSetStatisticsExpiredStatistic) +STUB("rMyh97BU5pY", sceNetGetMemoryPoolStats) +STUB("rN+7ZJ865FI", _ZN3WTF11Persistence7EncoderlsEb) +STUB("rN-dVW42j+w", __sanitizer_symbolize_pc) +STUB("rN7ixySUh-A", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEEC2ERS6_) +STUB( + "rNB37TTOrVw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEEC1ERKSA_) +STUB("rNESfCCKTJ8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersC1ERS5_) +STUB( + "rNFK4EgFoBM", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEEC1Ev) +STUB( + "rNGWT3c8wto", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEEC2ERKSA_) +STUB("rNJ1+3KoZP4", _ZN3sce2np18MemoryStreamReaderD2Ev) +STUB( + "rNL4HZ9kH1U", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEdeEv) +STUB("rNLVCzbCJgE", _ZNK7WebCore6Length21nonNanCalculatedValueEi) +STUB( + "rNRNEpZ-xrI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE8pushBackERKS8_) +STUB("rNRtm1uioyY", sceKernelHasNeoMode) +STUB("rNX1rOYx8Pk", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku27unsetDisplayPlusUpsellPriceEv) +STUB("rNX5+wtR2nY", _ZN7WebCore28InspectorFrontendClientLocal24startProfilingJavaScriptEv) +STUB("rNYLEsL7M0k", _ZNSt12future_errorD0Ev) +STUB("rNewlobNvNQ", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15ErrorC2EPNS1_6Common10LibContextE) +STUB("rNhWz+lvOMU", _sceKernelSetThreadDtors) +STUB("rNhsFZF85Fw", _ZN3sce7Toolkit2NP2V29Messaging22GameDataMessageDetailsC1Ev) +STUB("rNlBxrgYJGI", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V110Reputation17unsetPerFranchiseEv) +STUB("rNlxdAXX08o", sceFontGraphicsDefineIndexedVertexesGlyph) +STUB( + "rNoQTDSkF0Y", + _ZN7WebCore11CachedFrame26setCachedFramePlatformDataESt10unique_ptrINS_23CachedFramePlatformDataESt14default_deleteIS2_EE) +STUB( + "rNtFkA-ODIw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEneERKS9_) +STUB("rNxUdFXvbmY", _ZN7WebCore21BlobDataFileReference16revokeFileAccessEv) +STUB("rNzcsITOLWg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEixEm) +STUB( + "rNzqsiDErg0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEED1Ev) +STUB( + "rO1Q4iQzHB0", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS5_INS7_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "rO3EJVfG9lg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEE7add_refEv) +STUB( + "rO6zLDShStE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEEC2ERSA_) +STUB("rO8tQwOajrw", _ZN7WebCore21JSCSSStyleDeclaration15subspaceForImplERN3JSC2VME) +STUB("rO9Z63HVtmI", _ZN3sce7Toolkit2NP2V210Tournament12MatchDetailsC2Ev) +STUB( + "rOASmpJVjEQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEmmEv) +STUB( + "rOHXZDOtmrk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEppEi) +STUB("rONISOlHgZI", pfr_driver_class) +STUB("rONrD2xHVZk", _ZNK7WebCore27TranslateTransformOperation1yEv) +STUB( + "rOO80s82v6E", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB( + "rOPKDdFz8BI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEE11release_refEv) +STUB("rOPsD3LoB0s", head_s) +STUB( + "rOQkjAKRaaQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEdeEv) +STUB( + "rOSqjpaZSmg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEC2ERKS7_) +STUB("rOT0UMvtCCA", ksem_getvalue) +STUB( + "rOTALbLWKX0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEE7add_refEv) +STUB("rOTg1Nljp8w", sceRemoteplayImeSetText) +STUB( + "rOVUNCaqRTA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("rOYUEPXgOqk", mono_gchandle_free) +STUB( + "rOeQsX13vJk", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser30unsetxPsnAcceptPlatformNamePs5Ev) +STUB("rOf+hS4E7iE", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle17perFranchiseIsSetEv) +STUB( + "rOfyLCJWU7Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE8pushBackERKS8_) +STUB("rOghwK6XnUo", scePssMusicPlayerSetSurroundPan) +STUB("rOiaNsXnaJg", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE8copyFromERKS7_) +STUB( + "rOpRkOI6fpM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE5clearEv) +STUB( + "rOtiV-sP228", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE5emptyEv) +STUB("rOyGBl1GZHQ", __asan_report_exp_store2) +STUB("rP+VpCCUJtw", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11EntitlementEE9constructEPS3_RKS3_) +STUB("rP+c9jTIaic", _ZN3sce2np9JsonValue5ClearEv) +STUB("rP-rdKffodM", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V18Variable18getLastUpdatedUserEv) +STUB("rP1Z5VoDsWw", glUniform3ui) +STUB("rP40jSNZ-6Y", sceSpPthreadJoin) +STUB("rP5Vq2av3Fg", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIdE21intrusive_ptr_sub_refEPS4_) +STUB( + "rP6LuEVqFCE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEC2Ev) +STUB("rP9G1kItPl4", JSSynchronousEdenCollectForDebugging) +STUB("rP9VyAtSJ08", eglCopyBuffers) +STUB("rPDLpn5xox8", sceLncUtilGetAppFocusedAppId) +STUB("rPHhEmlHVaI", _ZN7WebCore12JSAudioTrackaSERKS0_) +STUB("rPIa7nRCV6U", _ZNK3sce2Np9CppWebApi14SessionManager2V16Friend19playerSessionsIsSetEv) +STUB("rPLiLh9xkmc", _ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody12unsetOfferIdEv) +STUB( + "rPOxx7tJbwo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE8copyFromERKS9_) +STUB( + "rPQWciUNh4I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEEC1EPS8_PNS2_10LibContextE) +STUB("rPRlHpErskQ", _ZN3JSC32JSDestructibleObjectHeapCellTypeD1Ev) +STUB("rPTVIzMv45s", _ZN12video_parser13cVideoPathMgv20GetLicenseEKBVersionEv) +STUB("rPbVwkzWWJg", sceNpPushRegisterInContextNotificationtCallback) +STUB("rPl0INNc-M8", sceNpGameIntentGetPropertyValueString) +STUB("rPo6tV8D9bM", sceSystemServiceGetStatus) +STUB( + "rPsrUctsZ0k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEC1EPS6_PNS2_10LibContextE) +STUB( + "rPvsHYtZ-xU", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V110MmrFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_3MmrEEE) +STUB("rPx0crdR-M4", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead16setMaxSpectatorsERKi) +STUB( + "rPxhVLFJBm4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB("rPyRy5q6vXg", _ZN7WebCore11DisplayList9TranslateC1Eff) +STUB("rQ-70s51wrc", _LSnan) +STUB("rQ63V5bdaH8", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats18getNatConnectivityEv) +STUB("rQFNwRTkhZA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEptEv) +STUB("rQFVBXp-Cxg", fseek) +STUB("rQGJeNjOuUk", _ZNK3sce4Json5Array4sizeEv) +STUB( + "rQGVRbZAhOI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE3endEv) +STUB("rQIXRuuWS3w", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking10UsersRanksEEC1Ev) +STUB("rQQeUNpkEcc", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanityC2ERS5_) +STUB("rQeJLS4B49w", fuse_setup_compat25) +STUB("rQht6vu1qCc", addTelemetryErrorListener) +STUB("rQhzp0Mu5m0", _ZNK15AbstractStorage12LocalStorage7GetStatEPNS_4StatE) +STUB("rQman9NXrg4", + _ZN7WebCore12SettingsBase22setSansSerifFontFamilyERKN3WTF12AtomicStringE11UScriptCode) +STUB( + "rQnJ71XxaF4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEE3getEv) +STUB("rQr2nSz91OY", _ZN7WebCore11DisplayList8FillRectC1ERKNS_9FloatRectE) +STUB("rQvMIxmFD6A", ksem_wait) +STUB( + "rR-PqRI4VSY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEE7add_refEv) +STUB("rR-yli78ysM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEE5resetEPS6_) +STUB("rR-zf8sZQ7g", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_23NpIdListRankInformationEED1Ev) +STUB("rR2eyeOg1kQ", _ZN3sce7Toolkit2NP2V24Core11ServerErrorC2Ev) +STUB("rR8wq7YFRZs", sceFiosFHPread) +STUB( + "rRBZ0c0qYfE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEaSERS7_) +STUB( + "rRCC0VQo20Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("rRCIxcuzMgs", _ZNK7WebCore11MediaPlayer18shouldDisableSleepEv) +STUB( + "rRHofmmEh1g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEC2EPS8_) +STUB("rRHvWnv1Osk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEED1Ev) +STUB( + "rRIS8XZEjBs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEE11release_refEv) +STUB("rRIhC3REvac", _ZNK3sce2Np9CppWebApi6Common6VectorINS2_6StringEE5emptyEv) +STUB("rRJWFhS9zxw", _ZN7bmalloc14debugHeapCacheE) +STUB("rRN89jBArEM", sceNpUInt32ToStr) +STUB("rROQ64kvlIk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE4sizeEv) +STUB("rRPmAC3SDo0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE7reserveEi) +STUB("rRREUD0CXy8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEEC1EPS5_PNS2_10LibContextE) +STUB("rRWSb8kAhkc", rgctx_fetch_trampoline_rgctx_120_p) +STUB("rRXrA7NLgJM", _ZNK3JSC11ArrayBuffer5sliceEi) +STUB("rRYXtFLsNV4", _ZN3WTF16callOnMainThreadEPFvPvES0_) +STUB( + "rRZCijq3o9Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEC1Ev) +STUB("rRgC2-nilx8", _ZN3WTF9MediaTime16createWithDoubleEd) +STUB("rRjtwYGnsas", _ZN3JSC8JSObject6toThisEPNS_6JSCellEPNS_14JSGlobalObjectENS_8ECMAModeE) +STUB( + "rRkUnn8f344", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB( + "rRm+pW++9W0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("rRmMX83UL1E", _ZNKSt8messagesIcE8do_closeEi) +STUB( + "rRt32ct3kys", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyC2EPNS1_6Common10LibContextE) +STUB("rRwPDGtr0fA", _ZN7WebCore8Document24addMediaCanStartListenerEPNS_21MediaCanStartListenerE) +STUB( + "rRy2xbCR5ag", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody18unsetComparedValueEv) +STUB("rS+3o7dQQzQ", + _ZN3JSC21linkAndEvaluateModuleEPNS_14JSGlobalObjectERKNS_10IdentifierENS_7JSValueE) +STUB("rS0WPhToVaQ", mono_aot_Sce_Vsh_Np_ServiceChecker2unbox_trampoline_addresses) +STUB( + "rS0at0n6IpY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("rS3h8f-Dibk", _ZN3sce2Np9CppWebApi12Leaderboards2V15ErrorD2Ev) +STUB("rS4gAx77IeA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEC2Ev) +STUB( + "rS5l5R56PLM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE5clearEv) +STUB("rSADYzp-RTU", _ZTVSt13basic_filebufIcSt11char_traitsIcEE) +STUB( + "rSE8WMxQ5Jc", + _ZN9Inspector33ApplicationCacheBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) +STUB( + "rSEzoGB2lxc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEE11get_deleterEv) +STUB( + "rSH+VpOlLB8", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification15BlocklistUpdateEE19setCustomReturnCodeEi) +STUB("rSIBG3MSHtc", ucsdet_open_67) +STUB( + "rSKOJzOghVM", + _ZN7WebCore21JSCSSStyleDeclarationC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_19CSSStyleDeclarationENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "rST+V1INOjk", + _ZN3sce2Np9CppWebApi11Matchmaking2V120ErrorResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_13ErrorResponseEEE) +STUB("rSW2hZt1Oo4", glVertexAttribDivisor) +STUB("rSa46Z635eI", _ZNK7WebCore17CharacterIterator5rangeEv) +STUB("rSccNDU3ikw", JVM_GetManagement) +STUB("rScpE8zKNHI", ubidi_getClassCallback_67) +STUB( + "rSg05ki1QwA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEE7add_refEv) +STUB("rSgYEXIuJAI", _ZN3sce7Toolkit2NP2V27NpUtils7Request17CheckPsPlusAccessD2Ev) +STUB("rShmqXHwoQE", sceNpScoreGetRankingByRangeAsync) +STUB( + "rShzEap9sdQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEE11release_refEv) +STUB("rSjUG0S004I", _ZN7WebCore13JSHTMLElement14finishCreationERN3JSC2VME) +STUB("rSoIFQL84uA", rgctx_fetch_trampoline_rgctx_44_p) +STUB("rSquvOtwQmk", sceSystemStateMgrExtendShutdownTimer) +STUB("rSsusHq9Y4Y", JSValueToNumber) +STUB( + "rT3rMvsTaZg", + _ZN3sce2Np9CppWebApi14SessionManager2V138ResponsePlayerSessionInvitationFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_31ResponsePlayerSessionInvitationEEE) +STUB("rT4NWysyX+g", sceNpAsmClientGetRelatedGameNpTitleIds) +STUB("rT4WKQaKGig", _sceLibcMallocFinalize) +STUB("rT7hixBagTI", _ZN3JSC8Debugger13hasBreakpointEmRKN3WTF12TextPositionEPNS_10BreakpointE) +STUB("rT9Yk55JGho", sceNpServiceCheckerIntInitialize) +STUB("rTAIdc3ghq4", _ZN8meta_gen13JpegRetriever16ProcessMakerNoteEv) +STUB("rTElN++NV00", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEC2ERS8_) +STUB("rTIV11nMQuM", sceGnmValidateOnSubmitEnabled) +STUB( + "rTLLQ-1kGdY", + _ZN8meta_gen11MsvPromoter26setKeyValueTBLTLanguageExtENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti) +STUB("rTNM7adVYog", _getpeername) +STUB("rTNYCkfforg", sceKernelGetUpdVersion) +STUB("rTNZW2LJz+E", sceVorbisDecTimeSeekPageLap) +STUB("rTQ9bzaUftI", mono_aot_Sce_Vsh_PsnMessageUtilplt_end) +STUB("rTTWU3xHaCE", WKInspectorTogglePageProfiling) +STUB("rTWz8J7gUaM", jpeg_get_large) +STUB("rTXw65xmLIA", sceKernelAllocateDirectMemory) +STUB( + "rTZEisjyGZQ", + _ZThn64_N7WebCore9FrameView27availableContentSizeChangedENS_14ScrollableArea25AvailableSizeChangeReasonE) +STUB("rTa0Vp-4nKA", sceSystemServiceInvokeAppLaunchLink) +STUB("rTb6vWn9eL0", glTextureStorage2DEXT) +STUB("rTcK9MJi7XQ", _ZN7WebCore23throwNonFiniteTypeErrorERN3JSC14JSGlobalObjectERNS0_10ThrowScopeE) +STUB( + "rTddkwTLcWc", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats13setReputationERKNS1_6Common12IntrusivePtrINS3_10ReputationEEE) +STUB("rTgOs4NhM-E", WKPreferencesSetServiceControlsEnabled) +STUB("rTjM9QpSyOM", sceFiosDirectoryDelete) +STUB( + "rTnuWm98LpE", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("rTu7zaYoryI", sceFsUmountDownloadData) +STUB("rU+Xq2LKJws", _ZN3JSC8Debugger19clearNextPauseStateEv) +STUB("rU0ByKESekI", _ZN3JSC18GCActivityCallback10setEnabledEb) +STUB("rU0UzNMZDIs", _ZN4IPMI4impl10ClientImpl6getMsgEjPvPmmPj) +STUB("rU1dwuW0Bxk", _ZNK7WebCore17FrameLoaderClient25shouldLoadMediaElementURLERKNS_3URLE) +STUB("rU3HK9Q0r8o", sceHmdGetInertialSensorData) +STUB("rU5NxTYe880", _ZNK7WebCore16HTMLInputElement17validationMessageEv) +STUB("rUCnKEbzd+E", _ZNK3sce2Np9CppWebApi6Common8IteratorIfEdeEv) +STUB( + "rUF2q44CGAQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("rUFWLJP6kIE", rgctx_fetch_trampoline_rgctx_97) +STUB("rUIce+31AEw", _ZN3sce2Np9CppWebApi7Matches2V118RequestMatchPlayer11setPlayerIdEPKc) +STUB("rUOEItvA-4w", _ZN3sce7Toolkit2NP2V210Tournament25OneVsOneTournamentDetailsD1Ev) +STUB( + "rUPvVfHPk60", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEaSERKSA_) +STUB("rUSjmJ0daUk", _ZN3WTF10StringImpl6createEPKh) +STUB( + "rUUR-IH+DuY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEC1EPS7_PFvS9_EPNS2_10LibContextE) +STUB( + "rUYSOj47c9k", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEEcvbEv) +STUB("rUZfugj0RMc", _ZN3WTF18fastMallocGoodSizeEm) +STUB( + "rUdersUjIxQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEEC2ERKSB_) +STUB( + "rUfxsL0Zkr4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEmmEv) +STUB("rUlEjud-4jE", uspoof_getCheckResultRestrictionLevel_67) +STUB("rUm4xXy5TH0", WKFormSubmissionListenerGetTypeID) +STUB("rUm5+ODGAUQ", sceApplicationDebugSpawnAndSetAllFocus) +STUB("rUuVjyR+Rd4", sceAgcDcbGetLodStatsGetSize) +STUB("rUwx4qab9VE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEEC1EPS4_PFvS6_EPNS2_10LibContextE) +STUB("rV-eVrM64es", unorm_quickCheckWithOptions_67) +STUB("rV07jlO-+6Q", EVP_aes_128_cbc) +STUB("rV4kjWvRQYE", _ZN3sce7Toolkit2NP2V26Trophy15TrophyPackGroupC2Ev) +STUB("rV9fIoSZicw", mono_aot_Sce_Vsh_Np_Trophymethod_addresses) +STUB("rVAPAY6H3mw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE8pushBackERKS6_) +STUB( + "rVIAzkXeEyA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEC1ERKS7_) +STUB( + "rVIHd4FTGvo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "rVJS3CeUwxs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEeqERKS9_) +STUB("rVK3QqurCkg", sceAvControlIsModeSystemDefault) +STUB("rVNVc74vUAY", sceVorbisDecHalfrate) +STUB("rVOmPz2RBlg", sceAgcAcbSetWorkloadsActive) +STUB( + "rVQG+DxfaAs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "rVQZN6kv3Zk", + _ZN7WebCore11FileMonitorC2ERKN3WTF6StringEONS1_3RefINS1_9WorkQueueENS1_13DumbPtrTraitsIS6_EEEEONS1_8FunctionIFvNS0_14FileChangeTypeEEEE) +STUB("rVZHSP9xD+Q", + _ZN3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform14unsetSessionIdEv) +STUB("rVZe903G-BU", + _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSessionC1EPNS1_6Common10LibContextE) +STUB("rVdu+F4JFC4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEC1Ev) +STUB("rVghiu7iE9o", sceIduUtilSetPupVersion) +STUB("rVjRvHJ0X6c", sceKernelVirtualQuery) +STUB("rVkZUDFdolc", _ZN3sce2Np9CppWebApi12Leaderboards2V122GetRankingResponseBodyD2Ev) +STUB("rVtImV4rxSA", _ZN3sce2npltERK10SceRtcTickRKNS0_4TimeE) +STUB("rW+n1QeUDdo", WKBundleHitTestResultCopyAbsoluteMediaURL) +STUB( + "rW24b0rgvkg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEC1Ev) +STUB( + "rW6vq2T7+yo", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId19unsetnpServiceLabelEv) +STUB( + "rWF-AX29jbY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEEC2EPS6_PNS2_10LibContextE) +STUB("rWGecUisNcA", _ZThn64_NK7WebCore9FrameView12tiledBackingEv) +STUB("rWGu8s-c9MM", mono_aot_Sce_Vsh_RnpsAppMgrWrapperunbox_trampoline_addresses) +STUB( + "rWGw63xCXBY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEC2EPS8_) +STUB("rWJW9d0XphI", _ZN7WebCore8Document22setAnimatingFullScreenEb) +STUB("rWJsgmsQkhQ", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V15Owner13unsetOnlineIdEv) +STUB("rWNFYWaW5OI", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_6NpUserEEeqERKS4_) +STUB( + "rWP-wo3luzE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEaSERKS7_) +STUB("rWPnHtWTIRg", JSGlobalContextUnsetDebuggerRunLoop) +STUB("rWSuTWY2JN0", vsnprintf_s) +STUB("rWUTcKdkUzQ", sceVideoOutGetEventData) +STUB("rWVNHNnEx6g", sceSharePlayStartStreaming) +STUB("rWapdQmQQRQ", sceEditMp4Abort) +STUB("rWdFPCabS3A", _ZN7WebCore8SVGNames9localAttrE) +STUB( + "rWjXEzbHdps", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE5emptyEv) +STUB( + "rWmKyjok+zE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEEC2Ev) +STUB("rWqcuf+8h2M", shmat) +STUB( + "rWui94DPdP4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEC2Ev) +STUB("rWxYHhhR4h4", scePlayReadyReaderDecryptOpaque) +STUB("rWzPAzEcvi0", + _ZN3JSC8Bindings8InstanceC2EON3WTF6RefPtrINS0_10RootObjectENS2_13DumbPtrTraitsIS4_EEEE) +STUB("rX0u9f3fbeQ", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed4FeedEED2Ev) +STUB("rX30iWQqqzg", sceNetShowNetstatEx) +STUB( + "rX4+XQ6MUPI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEC1Ev) +STUB( + "rX4CjhmalpA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE6resizeEj) +STUB("rX4rdDndd1I", mono_object_to_string) +STUB("rX58aCQCMS4", _ZNSt5ctypeIcE10table_sizeE) +STUB("rXAzfK5NcGE", _ZN7WebCore9HTMLNames11onendedAttrE) +STUB("rXHi08e0g80", SSL_set_bio) +STUB("rXL9V01Y7wM", _ZN7WebCore10JSDocument15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("rXOsqWISrB4", _ZN7WebCore26Matrix3DTransformOperationC1ERKNS_20TransformationMatrixE) +STUB("rXSf8HdoOKg", _ZN3JSC12JSSourceCode6s_infoE) +STUB("rXV8az6X+fM", sceGnmSqttGetWrapCounts2) +STUB("rXVOuOSwqK4", ureldatefmt_close_67) +STUB("rXbzVpqX6ro", _ZN7WebCore12ISOWebVTTCueC2ERKN3WTF9MediaTimeES4_) +STUB("rXe5udZ-aIU", _ZN3JSC8Debugger18stepNextExpressionEv) +STUB("rXnVu5Uxzw4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching6WorldsEEC1Ev) +STUB( + "rXwjNGu83zc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEC2EPS8_) +STUB("rXyPtzELvLs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE5emptyEv) +STUB( + "rY+UJoweJzs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEaSERKS7_) +STUB("rY2Mw7TEOhc", sceVideoCoreChangeActiveStatus) +STUB("rY89QdUEOok", u_isIDStart_67) +STUB( + "rYAqeGlKweY", + _ZN3JSC8JSObject47putDirectNativeIntrinsicGetterWithoutTransitionERNS_2VMEPNS_14JSGlobalObjectENS_10IdentifierENS_14NativeFunctionENS_9IntrinsicEj) +STUB("rYB3TclJnuQ", _ZN7WebCore10FileSystem14MappedFileDataD1Ev) +STUB("rYBIlc3NXHA", _ZN3JSC22FullGCActivityCallback12doCollectionERNS_2VME) +STUB("rYIoQpw2t6Q", _ZN7WebCore8SVGNames7defsTagE) +STUB( + "rYLrGFoqfi4", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERy) +STUB( + "rYMWOD7Ecvk", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetrics18getConfidenceScoreEv) +STUB( + "rYR8ya7vsGg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEEdeEv) +STUB("rYSa0iFQ8JI", u_setMutexFunctions_67) +STUB("rYWJ3CJ8+6w", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEEptEv) +STUB( + "rYZjyjEI1ms", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEplEm) +STUB( + "rYbuulHdUKY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEC1EPS8_) +STUB("rYchd9SXp9Q", _ZN3sce7Toolkit2NP2V29Messaging7Request27GetReceivedGameDataMessagesC2Ev) +STUB("rYcvUnov8-A", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEED1Ev) +STUB("rYvLW1z2poM", sceSaveDataCheckBackupDataForCdlg) +STUB( + "rYyqxRndZTs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEE3getEv) +STUB("rZ+UQWsAIOM", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V110Reputation12perGameIsSetEv) +STUB( + "rZ02Gaoshig", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "rZ4Kle+HFyc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEEC2Ev) +STUB("rZ5sEWyLqa4", _ZNSt13_Num_int_base9is_moduloE) +STUB("rZH-neMr4ms", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEE11get_deleterEv) +STUB( + "rZIh+zHzkqo", + _ZN9Inspector14ConsoleMessageC2EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelERKN3WTF6StringEONS5_3RefINS_15ScriptArgumentsENS5_13DumbPtrTraitsISA_EEEEONS9_INS_15ScriptCallStackENSB_ISF_EEEEm) +STUB( + "rZLIbR2ap-k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE3endEv) +STUB( + "rZQWxIIWHPU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEE11release_refEv) +STUB("rZTbknP5umM", _ZN12video_parser5vpcom6_WriteEPNS_8_vp_fileEPKvjPi) +STUB( + "rZVrGFpfDtY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE8copyFromERKS9_) +STUB("rZYoZcqqJdo", sceFaceParts) +STUB( + "rZZ3JHwY57w", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivitiesD2Ev) +STUB( + "rZbqM6KbFg8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEEC2ERSA_) +STUB("rZgGJmKVHUM", g_list_insert_before) +STUB("rZiZDOQA0ow", il2cpp_class_get_bitmap_size) +STUB( + "rZj+KzgGobg", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeaders6createEPNS1_6Common10LibContextERNS6_12IntrusivePtrIS5_EEl) +STUB( + "rZn7gPbAARU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEaSERKS9_) +STUB("rZqWV3eXgOA", sceRudpRead) +STUB( + "rZqvX-vxRLc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEEaSERKSA_) +STUB("rZr8MolSf60", _ZN7WebCore10Pasteboard5writeERKNS_13PasteboardURLE) +STUB("rZwUkaQ02J4", _ZTVSt7collateIwE) +STUB("ra+kuj5vEl4", _ZNK7WebCore11MediaPlayer23hasSingleSecurityOriginEv) +STUB("ra-vD4R5XxA", _ZNK7WebCore16ResourceResponse25platformSuggestedFilenameEv) +STUB("raCPuJElyf8", sceCesUcs2ToEucCn) +STUB("raCb+s141kA", GCC_except_table9) +STUB( + "raGY+eoBc64", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("raLgIUi3xmk", _ZNSt7collateIcEC1ERKSt8_Locinfom) +STUB("raO+bB7q2cY", __sys_osem_close) +STUB("raPSwcqnyag", utext_freeze) +STUB("raRgiuQfvWk", sceLibcMspaceGetAddressRanges) +STUB( + "raRzOb3l+Ig", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("raaLMARDhV0", _ZN3sce7Toolkit2NP2V27Session7Request6SearchC1Ev) +STUB("rafRG8hKN7I", ScePsmMonoEnableJitTimeLog) +STUB("raiRjz4INVs", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationProperties12getGoodSportEv) +STUB( + "rakXDXLe8r0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEED2Ev) +STUB("ramvq-iT3s0", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15NpSessionMemberEEC1ERKS4_) +STUB("rayE1B7gs1U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEEC1EPKS6_) +STUB( + "rayaHIsskOg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEED1Ev) +STUB( + "razS4tGpuuw", + _ZN3sce2Np9CppWebApi7Matches2V130ResponsePlayerStatisticFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_23ResponsePlayerStatisticEEE) +STUB("rb+XR5iVTV0", sceUpsrvGetRebootFlag) +STUB( + "rb2ySUEMLTQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEC2ERKS7_) +STUB("rb3hOutmFwM", u_strToUTF32_67) +STUB("rb8JKArrzc0", sceKernelInternalHeapPrintBacktraceWithModuleInfo) +STUB("rbGPNj3pjxY", _ZN3sce7Toolkit2NP2V212NetworkUtils13NetStateBasicC1ERKS4_) +STUB( + "rbGzRY5fH1I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEED2Ev) +STUB( + "rbLYPAGOal0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEEdeEv) +STUB( + "rbP8eeEWgIQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEptEv) +STUB( + "rbQNX5KQBeA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEC2ERKS7_) +STUB("rbRlgPbLAMY", _ZN7WebCore17PageConsoleClient21shouldPrintExceptionsEv) +STUB("rbSZBjXBjGs", _ZN7WebCore11DisplayList7RestoreC2Ev) +STUB( + "rbSmiaRuFfg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE10setContextEPNS2_10LibContextE) +STUB("rbUDYXA3vfs", _ZN3sce2Np9CppWebApi13InGameCatalog2V517ContentDescriptor7setNameEPKc) +STUB( + "rbV3Y0QXz5k", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEeqERKS9_) +STUB( + "rbYLOTokdCw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEmmEi) +STUB( + "rbanPfiPdPs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "rbenGXbEcmA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE21intrusive_ptr_sub_refEPS9_) +STUB("rbjUiBdg6A0", _ZN9Inspector22InspectorDebuggerAgent7disableERN3WTF6StringE) +STUB("rbknaUjpqWo", sceNpGetAccountIdA) +STUB("rbngEtORXxs", _ZN7WebCore14StaticNodeListD0Ev) +STUB( + "rbpXCPzTkKg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEcvbEv) +STUB("rbqZK23Mr1M", _ZN3JSC14ProtoCallFrame15setGlobalObjectEPNS_14JSGlobalObjectE) +STUB("rbqZig38AT8", sceHttp2SendRequest) +STUB("rbsJZPsEjN8", _ZThn16_N3sce2np11NpHttpTransD1Ev) +STUB("rbyBjvpNuME", res_getBinaryNoTrace) +STUB("rbyrcC7Wv4c", + _ZN3sce2Np9CppWebApi14IdentityMapper2V318PsnWebErrorFactory7destroyEPNS3_11PsnWebErrorE) +STUB( + "rc+trR1fiMg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEeqERKS9_) +STUB( + "rc9r4-GH7zs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEEC1Ev) +STUB("rcAUV2nlB-Y", sceCesUtf32leToEucKr) +STUB("rcAqicKKOmw", sceCesUcsProfileInitGbkCp936) +STUB( + "rcGXdHIrkCg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEC1Ev) +STUB( + "rcKv0it5iRg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEE3getEv) +STUB( + "rcOSLRaP3BE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE5emptyEv) +STUB("rcQ-AfZ+VEY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEC2ERKS7_) +STUB("rcQCUr0EaRU", _Getptoupper) +STUB( + "rcThmzM+pr8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("rcVv5ivMhY0", lrintf) +STUB( + "rcX373vw1vE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEppEv) +STUB("rcYIfDMSmbg", WTFLogAlwaysAndCrash) +STUB("rcYiqxMPEpM", _ZNK7WebCore19ProtectionSpaceBase20authenticationSchemeEv) +STUB("rcZ6dDIXE7o", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE8capacityEv) +STUB("rccmWjglnzI", sceDevUsbDeleteCPKevent) +STUB("rcdQ1CShDnE", _ZN4Manx14NetworkProfile16unMountUploadDirEv) +STUB( + "rcgT1XmQ4ak", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("rcgv2ciDrtc", sceAudioInSetDevConnection) +STUB( + "rcgyexsX9sc", + _ZN7WebCore20LegacySchemeRegistry58registerURLSchemeAsAllowingDatabaseAccessInPrivateBrowsingERKN3WTF6StringE) +STUB( + "rcj5LToqbu4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE10setContextEPNS2_10LibContextE) +STUB( + "rcjn3KVuCzA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("rcldOUXTuIc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEC1Ev) +STUB("rcrVFJsQWRY", scePthreadGetaffinity) +STUB( + "rcuVv8KP-Qo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEE5resetEPS9_) +STUB("rcylknsUDwg", sceNpSignalingGetConnectionInfoA) +STUB("rd+-SzL202E", sceLncUtilSuspendLocalProcess) +STUB("rd+L-TM71fk", _ZN9Inspector20DOMBackendDispatcherD0Ev) +STUB("rd-Gds6NmLo", _ZN7WebCore8JSDOMURL11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("rd2QRPO5S1Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEC2ERS7_) +STUB( + "rd3y4BQohvg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEptEv) +STUB( + "rd4I2Ll-WqI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEED2Ev) +STUB("rd4PnYgzm4o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEC2Ev) +STUB( + "rd6CkjAC3B0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE4sizeEv) +STUB("rd72e5gjrKc", + _ZN6WebKit12ChildProcess18addMessageReceiverEN3IPC15StringReferenceERNS1_15MessageReceiverE) +STUB( + "rd9B+rgR+X0", + _ZNK3sce2Np9CppWebApi14ConnectAccount2V216PartnerTokensApi26ParameterToGetPartnerToken24getdeepTokenVerificationEv) +STUB("rdEN7D3ZN1E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE5beginEv) +STUB( + "rdEooEfb-ms", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE21intrusive_ptr_sub_refEPS9_) +STUB("rdNRROFLwE4", Java_java_net_SocketInputStream_init) +STUB( + "rdQ5MOEiBWQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEED2Ev) +STUB( + "rdSSrS97dO8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE3endEv) +STUB("rdTuRx2MoOA", _ZN3sce2Np9CppWebApi6Common6VectorIlEC1EPNS2_10LibContextE) +STUB("rddQYXM0CjM", sceAmprMeasureCommandSizeResetGatherScatterState) +STUB( + "rddzEGhxe10", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("rdfLsGwcBeg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEE7add_refEv) +STUB("rdgUHoQOD6I", uregex_reset_67) +STUB("rdgs5Z1MyFw", sceNpWebApiCreateRequest) +STUB("rdht7pwpNfM", __floatsisf) +STUB("rdi9BAfDLq8", sceNpUniversalDataSystemEventPropertyArraySetArray) +STUB("rdjSZAW7BPE", _ZN3sce2Np9CppWebApi7Matches2V113RemovedPlayer8fromJsonERKNS_4Json5ValueE) +STUB( + "rdjlhyey7og", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEcvbEv) +STUB( + "rdmiAcwXmfs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEneERKS9_) +STUB("rdu8Deuj850", _ZN3sce7Toolkit2NP14TssInputParamsC2Ev) +STUB("rducUH7Y62g", sceRegMgrBackupPushDataForPS4) +STUB("re2ovzw+NRw", _ZN3sce2Np9CppWebApi6Common12FutureResultIiE3getEPNS2_10ThreadPoolE) +STUB("re4SilJGu5g", mono_aot_System_Data_Services_Clientunbox_trampoline_addresses) +STUB("re4y32MvUFQ", _ZN7WebCore18DOMWindowExtensionC1EPNS_9DOMWindowERNS_15DOMWrapperWorldE) +STUB( + "reB63R+EXI8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE5beginEv) +STUB("reDisWOzHVM", u_fgetcodepage_67) +STUB("reIWsBdmSsQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEE7add_refEv) +STUB("reIsHryCDx4", sceNetCtlScanIpcInt) +STUB("reRu9Jq3IYs", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicketD2Ev) +STUB("rea47PfCUwU", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariableC2EPNS1_6Common10LibContextE) +STUB("rebo0q4yREE", sceRegMgrIsInitOK) +STUB("rei4kjOSiyc", sceNpTitleMetadataIntAbortRequest) +STUB("rejCrx7MUpk", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking10UsersRanksEE12deepCopyFromERS7_) +STUB("rem7tg-zM2I", _ZN3sce2Np9CppWebApi6Common13ParameterBase9terminateEv) +STUB( + "repg03VMplo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEptEv) +STUB( + "rer3V-RHVPk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEE11release_refEv) +STUB("retc+-uRMhk", sceHmd2GazeGetResultForFoveatedRendering) +STUB("rez819wV7AU", sceUserServiceSetEventFilterTeamEvent) +STUB( + "rf-6UO-lrls", + _ZN7WebCore16WebSocketChannelC1ERNS_8DocumentERNS_22WebSocketChannelClientERNS_14SocketProviderE) +STUB("rf0BfDQG1KU", _ZTSSt7codecvtIcc9_MbstatetE) +STUB( + "rf3yJK-055Q", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V110Reputation15setPerFranchiseERKNS1_6Common12IntrusivePtrINS3_20ReputationPropertiesEEE) +STUB("rf5CXHDbDCo", _ZN7WebCore9HTMLNames6mapTagE) +STUB( + "rf6OfStP64w", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEeqERKS9_) +STUB( + "rf7CybcoNUk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEneERKS9_) +STUB( + "rf7WNnHHGRg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEaSERKS7_) +STUB( + "rf9PcENfA6E", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEEiRNS2_10LibContextEPT_m) +STUB( + "rfDI3Kjs5+0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "rfHKNYOsamo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEE7add_refEv) +STUB("rfMiDDs1bgE", rgctx_fetch_trampoline_rgctx_104_p) +STUB("rfNM54bi+fc", _ZNK3JSC7JSValue19synthesizePrototypeEPNS_14JSGlobalObjectE) +STUB( + "rfW3TNaZ0HE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEED1Ev) +STUB("rfYTE+X39pY", sceVorbisDecTimeSeekLap) +STUB("rfYnuMJmVOk", mono_allocator_stats) +STUB("rfjRhTDHEmA", scePerfTraceIoGetEntry) +STUB("rfnPKQVKc4A", sceFaceEstimatePoseRegion) +STUB("rfreexWs9f4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEdeEv) +STUB( + "rfvVGIjOVeM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE8copyFromERKS9_) +STUB("rfw6ufRsmow", sceNgs2StreamQueryInfo) +STUB("rfyVBEB1HTo", _ZN7WebCore12ChromeClient13isViewVisibleEv) +STUB( + "rfz+5lVAvQE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEE3getEv) +STUB("rfzMKpgI32U", u_parseMessageWithError_67) +STUB("rg4TnGAAWYI", _ZN13MsvMetaEditor11addMetaDataEjPtmtt) +STUB("rg5JEBlKCuo", basename) +STUB( + "rgBGXHwbMs4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEeqERKS9_) +STUB("rgE75-SQ+lU", hb_buffer_set_unicode_funcs) +STUB("rgLjmfdXocI", sceAjmInstanceSwitch) +STUB( + "rgRPLEAlMLw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEEC2ERSA_) +STUB( + "rgUdN65beM0", + _ZThn16_N9Inspector22InspectorDebuggerAgent15searchInContentERN3WTF6StringERKS2_S5_PKbS7_RNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol12GenericTypes11SearchMatchEEENS1_13DumbPtrTraitsISE_EEEE) +STUB("rgZcR0TudEU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEE7get_refEv) +STUB("rgdarYdQmtc", _ZN12video_parser19_isValidArtworkSizeEj) +STUB("rgjZEBFXsiM", _ZN3sce7Toolkit2NP2V28Matching6WorldsD2Ev) +STUB("rgrhz3d6cx8", sceSystemLogger2DeliverySetBatchDeliveryEvent) +STUB("rgtMCOpyBSc", sceVdecswSetDecodeOutput) +STUB("rgtbpTzx0RA", _ZN3sce2np4UserC1ERKS1_) +STUB("rgxoxDaIKlo", mono_aot_Sce_Vsh_KernelSysWrapperunbox_trampoline_addresses) +STUB("rh+nzKy2ij4", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setMixerMute) +STUB( + "rh1AbkB83ds", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE3endEv) +STUB( + "rh3U-+A2IRE", + _ZN3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession28unsetSpectatorJoinableStatusEv) +STUB("rh7L-TliPoc", _ZNKSt5ctypeIwE5do_isEsw) +STUB( + "rh8SgOAh5+w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB("rh8UcxwmPQQ", mono_aot_Sce_Vsh_Np_Webapijit_code_end) +STUB( + "rhAMPRI6d+8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE6resizeEj) +STUB("rhGXoNPv81s", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V15GroupEEaSERKS7_) +STUB( + "rhJAq1MYySE", + _ZN9Inspector21HeapBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("rhJg5tjs83Q", _ZNSt15_Num_float_base15has_denorm_lossE) +STUB( + "rhLNFnXBSyw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEdeEv) +STUB("rhQEi8V9zdU", mono_aot_System_Xmlunbox_trampolines) +STUB( + "rhTQAuHRcQQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEED2Ev) +STUB("rha5LcpZjAI", WKSecurityOriginGetTypeID) +STUB("rhaZxqryYz4", rgctx_fetch_trampoline_rgctx_104) +STUB("rhd-8JSGyIE", _ZN3JSC8Bindings13RuntimeObject10invalidateEv) +STUB("rhexhX2SxP8", _ZN8meta_gen13JpegRetriever19JPEGPROM_SEC_OFFSETE) +STUB("rhhKDT2zXiU", sceNetSocketInternal) +STUB( + "rhkv2NERtz4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEE5resetEPS7_) +STUB( + "rhl7OJaEv9g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEED2Ev) +STUB("rhm50omLdyM", _ZN12video_parser7cVpUtil16convCodeToStringEPKNS0_11NameTable_tEiPPc) +STUB("rhmQ142bvvU", glVertexAttribI4uiv) +STUB("rho9DH-0ehs", sceAudioOutSetVolumeDown) +STUB( + "rhocsCWUmyM", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("rhqf6JmhtHg", curl_mime_encoder) +STUB( + "rhsu5DQzwFo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEEptEv) +STUB("rhsxEVJjABA", uregex_setStackLimit_67) +STUB( + "rhxXeFerKNw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEE3getEv) +STUB( + "rhzoiNj6-iY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("ri+pvPRpw38", _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities5Error11reasonIsSetEv) +STUB( + "ri-BvRek9mw", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12unsetString4Ev) +STUB("ri0p0jQDuIQ", _ZN3sce7Toolkit2NP2V27Ranking17GetGameDataResultaSERKS4_) +STUB("ri40vr7nItM", uhash_setKeyDeleter) +STUB( + "riAOQbKXbo0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEE3getEv) +STUB("riBxNiKLvI0", + _ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE5_InitERKSt8_Locinfo) +STUB("riDNIcSKwRI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEE3getEv) +STUB( + "riHguZ4vaiE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEEC2ERKSA_) +STUB("riLIfC20s1A", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product9getRatingEv) +STUB( + "riNt4W6RwHw", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessionsC1ERS5_) +STUB("riPQfAdebHk", sceHmdInternal3dAudioClose) +STUB("riPS1H4Vcag", mono_aot_Sce_Vsh_PsnUtilunbox_trampoline_addresses) +STUB("riQ3gSGNDIE", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEEdeEv) +STUB( + "riRQWy-NFlM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB( + "riRRlDNL3do", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE7reserveEi) +STUB("ribM4Kso22Q", mono_custom_attrs_from_property) +STUB("ridDhAPwj4c", sceHttpCacheCreateRequest) +STUB("riets0BFHMY", _LXp_mulh) +STUB( + "rirB0VsOz1Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEED2Ev) +STUB("rirCdpvtqCg", ulocdata_getNoSubstitute_67) +STUB("ris-XwSqzyM", _ZNK7WebCore14ScrollableArea20contentAreaWillPaintEv) +STUB("ritvwrITiVY", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE5emptyEv) +STUB( + "rixKLVgTH4o", + _ZN3sce7Toolkit2NP6Trophy9Interface22trophyRetrieveProgressEPNS1_9Utilities6FutureI19SceNpTrophyGameDataEEbi) +STUB( + "riyMPF0LADo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEC2EPKS8_) +STUB( + "rizWF1Dm8zI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEEdeEv) +STUB("rj+CqR+ZfHQ", _ZN3sce7Toolkit2NP2V28Commerce8ProductsC1ERKS4_) +STUB("rj2swQ9qAW0", _ZN3sce7Toolkit2NP2V27Session9SessionId8deepCopyERKS4_) +STUB("rjAd4nCY4DM", sceHmd2ReprojectionClearUserEventEnd) +STUB("rjBYoBJ59xQ", _ZN3JSC12GlobalJSLockD1Ev) +STUB("rjDyMB27L-U", + _ZNK7Nicosia10Animations25hasActiveAnimationsOfTypeEN7WebCore18AnimatedPropertyIDE) +STUB("rjEuM0nb8xg", sceKernelInternalMemoryGetAvailableSize) +STUB("rjEuYA3xLDM", udata_close_67) +STUB("rjFtynMQeHU", _ZN7WebCore9JSDOMRect15subspaceForImplERN3JSC2VME) +STUB("rjGjpDDPp-U", _ZN3sce2Np9CppWebApi7Matches2V117LeaveMatchRequest10getPlayersEv) +STUB("rjICp0cpHJM", sceAvSettingGetLoopbackBuffer) +STUB( + "rjSFBXRNkp0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE5clearEv) +STUB("rjU70FGcXDw", sceTextToSpeechTermImpl) +STUB("rjXFQQQrE+k", scePatchCheckerTerminate) +STUB("rjXWL1hs2qg", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product13ageLimitIsSetEv) +STUB("rjak2Xm+4mE", scalbf) +STUB("rjatoAGW+Fo", sceNpPushSetNpCommunicationId) +STUB( + "rjcZp+J5HnM", + _ZN7WebCore21NetworkStorageSession10setCookiesERKN3WTF6VectorINS_6CookieELm0ENS1_15CrashOnOverflowELm16EEERKNS_3URLESA_) +STUB( + "rjgPyUvoK90", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEC2EPKS8_) +STUB("rjhJTHdhXe8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEC2ERS7_) +STUB("rjm9e3FB2HM", _ZN4Manx19Curl_cookie_cleanupEP10CookieInfo) +STUB("rjnCmUev3aU", u_strcspn) +STUB("rjo4jKFUJ-8", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12Notification14NetStateChangeEED1Ev) +STUB( + "rjpsbrvcyAg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEppEi) +STUB( + "rjrYM604tow", + _ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors29unsetValidationConstraintInfoEv) +STUB("rjtDiEcehAE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEEC2Ev) +STUB( + "rk9KW+tJ2Dk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEeqERKS9_) +STUB("rk9Yk81l3Bc", _ZN7WebCore11toDisplayP3ERKNS_5SRGBAIfEE) +STUB( + "rkB4-3GrB6o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE8pushBackERKS8_) +STUB( + "rkMAfteUvoc", + _ZN7WebCore20UserGestureIndicatorC2EN3WTF6RefPtrINS_16UserGestureTokenENS1_13DumbPtrTraitsIS3_EEEENS3_12GestureScopeENS3_21IsPropagatedFromFetchE) +STUB("rkRNkU97Aso", uprv_max_67) +STUB("rkUyPX8peTs", JVM_GetVersionInfo) +STUB("rkV5b-p490g", sceShellCoreUtilGetEffectiveTotalSizeOfUserPartition) +STUB("rkWOabkkpVo", _ZTIDs) +STUB( + "rka3Yxo7XNM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEEC1EPS8_PNS2_10LibContextE) +STUB( + "rkhnnoxLYog", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEE5resetEPS9_) +STUB( + "rkjl5Iy63nU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEaSERS7_) +STUB("rkmHtq6GqNs", _ZN7WebCore11DisplayList11SetLineJoinC1ENS_8LineJoinE) +STUB( + "rkrSPV8K7n4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("rkw4Bgve0G4", il2cpp_thread_current) +STUB("rkzlx4vFM3c", qR3) +STUB( + "rl+JRhYDpDc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE8pushBackERKS8_) +STUB( + "rl3FH9p5oWc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEC1ERKS7_) +STUB( + "rl41YEuESIE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE21intrusive_ptr_add_refEPS9_) +STUB("rl7aW17qQb8", FTA_Export_Module_otvalid) +STUB("rlDZ+e9CEPA", _ZN3sce7Toolkit2NP2V28Commerce7Request25DisplayDownloadListDialogC2Ev) +STUB( + "rlEE66C+eF0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEE7get_refEv) +STUB("rlFTieoEoms", _ZN3sce7Toolkit2NP2V210Tournament12GenericEventD2Ev) +STUB("rlH9KhEJp2c", _ZNK7WebCore19ResourceRequestBase17redirectedRequestERKNS_16ResourceResponseEb) +STUB("rlJ57qgSdUs", + _ZN3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayer8fromJsonERKNS_4Json5ValueE) +STUB("rlJVOpAFI38", _ZN3sce7Toolkit2NP2V27Ranking8TempRank8deepCopyERKS4_) +STUB( + "rlJagN4Hsmk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEEdeEv) +STUB( + "rlK9Km9ok-M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEaSERKS9_) +STUB( + "rlLGYadKFAQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEED2Ev) +STUB("rlM6QokMGkY", scePlayReadyProfileClear) +STUB("rlMRvh71O1c", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi21ParameterToLeaveMatchaSERS5_) +STUB("rlMTyDizfms", _ZN7WebCore11MediaSampleD1Ev) +STUB( + "rlNbSYZ3FV0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE21intrusive_ptr_add_refEPS9_) +STUB("rlOCpNWBbhQ", _ZNK7WebCore14JSWebAnimation7wrappedEv) +STUB("rlTwz32Y4kY", _ZNK7WebCore13ScriptElement13scriptContentEv) +STUB( + "rlVYydvU7Jk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE3endEv) +STUB( + "rlVgJ-S05Gs", + _ZN3sce2Np9CppWebApi7Matches2V129GetMatchDetailResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_22GetMatchDetailResponseEEE) +STUB( + "rlYgMXVrhtg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEE5resetEPS9_) +STUB("rlZA2fu7noY", + _ZN3JSC14JSGlobalObjectC2ERNS_2VMEPNS_9StructureEPKNS_23GlobalObjectMethodTableE) +STUB("rlfaE8TqUJI", NetCtlRegisterCallbackNative) +STUB( + "rlk7TMgefJE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("rlnpPNMzl70", _ZNK7WebCore11MediaPlayer28supportsAcceleratedRenderingEv) +STUB("rlrP1MrtN3k", _ZN7WebCore17snapshotFrameRectERNS_5FrameERKNS_7IntRectEj) +STUB( + "rlsVqmIwWSM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEppEi) +STUB( + "rltTgrrn5yc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEEC2ERKSA_) +STUB( + "rltzlTlIBcs", + _ZN3sce7Toolkit2NP8Matching9Interface15sendRoomMessageEjSbIcSt11char_traitsIcENS1_15AppSTLAllocatorIcEEEPtji) +STUB("rlz-6+QTzIM", _ZN7WebCore11DisplayList10StrokePathD1Ev) +STUB( + "rlzNo1ur5aE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEED1Ev) +STUB("rm+OcISAwjc", _ZN7WebCore11DisplayList4ItemD0Ev) +STUB("rm+m2vE9Emg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEEC2Ev) +STUB( + "rm28pCFLmfc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEixEm) +STUB("rm2zzbZ6HjM", _ZN9pathscale13set_terminateEPFvvE) +STUB("rm4CXVezfrY", __asan_stack_malloc_6) +STUB("rm4riMbfxC8", _ZN3sce7Toolkit2NP2V28Commerce14ProductDetails20RATING_SYSTEM_ID_LENE) +STUB("rm5-jOxSZzQ", sceKernelWriteModifyMtypeProtectWithGpuMaskIdCommand) +STUB( + "rm8Ic-iS6O8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE5emptyEv) +STUB("rmT-cQv3G4I", WKWebsiteDataStoreEnableCustomNetworkProxySettings) +STUB("rmUbfy+ZWi4", uhash_equalsScriptSet_67) +STUB("rmZhkWIZkNo", _ZN7WebCore11DisplayList8Replayer6replayERKNS_9FloatRectEb) +STUB("rme+Po9yI5M", _ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1Em) +STUB("rmgXsZ-2Tyk", sceAudioInInputs) +STUB("rmh6gdjzO-4", sceFsMountLwfs) +STUB( + "rmkLUJBSeOI", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions28getxPsnAcceptPlatformNamePs5Ev) +STUB("rmlzcfJb1f4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEEdeEv) +STUB( + "rmoAoVWmHSE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEC2EPS8_) +STUB( + "rmowFcK6Bk8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("rmqFEa6z7-Y", expand) +STUB( + "rmsKHBS7lAw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "rmwVnzaCcZE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("rmx9e1dVgfE", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V18RelationEEC2EPS6_) +STUB("rn02uWMPkFA", _ZN3sce2Np9CppWebApi7Matches2V111TaskFactory7destroyEPNS3_4TaskE) +STUB( + "rn2EM02Bh8s", + _ZN3sce2Np9CppWebApi7Matches2V120RemovedPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_13RemovedPlayerEEE) +STUB("rn3z+5BtLCI", JVM_ConstantPoolGetFieldAt) +STUB( + "rn6YkgiKLOs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE5emptyEv) +STUB( + "rn7WSTzuHew", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEC2EPS7_PNS2_10LibContextE) +STUB( + "rn7gm+PXjo8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEC1EPKS8_) +STUB("rn7ot06ElIs", sceUlpMgrRecv) +STUB("rn8x6aBfveM", _ZN3JSC8Debugger13pauseIfNeededEPNS_9ExecStateE) +STUB("rnEhHqG-4xo", sceUserServiceGetAccessibilityChatTranscription) +STUB("rnKp-QI6kXU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEEixEm) +STUB("rneEgXU3tg4", + WKWebsiteDataStoreSetResourceLoadStatisticsShouldBlockThirdPartyCookiesForTesting) +STUB( + "rnghqL6qRKs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEEaSERKSA_) +STUB("rnjsFB0Fqps", sceTsGetRepresentationCount) +STUB( + "rnpOkaX2cXA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB("rnvDWnAiM2M", sceSystemServiceUsbStorageRegisterCallback) +STUB("rnvDgF681Mw", JVM_ConstantPoolGetTagAt) +STUB("rnxaQ+2hSMI", _Putfld) +STUB( + "rnxz+p6oBok", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("rnzbm5jZVY0", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_19ProductInfoDetailedEEeqERKS4_) +STUB("ro+rO6YYRb8", ucnv_getInvalidChars_67) +STUB("ro1JFV7JR+E", sceHmdReprojectionSetUserEventToStart) +STUB("ro2UeQegoQs", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEE5resetEPS6_) +STUB( + "ro2qr+KXFD4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEneERKS9_) +STUB( + "ro4CUUlapfI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "ro5de0xt80E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "ro6CCSaZ4no", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEED1Ev) +STUB("roAJqGa0EE8", WKWebsiteDataStoreStatisticsHasLocalStorage) +STUB( + "roGeoRmquEI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEE3getEv) +STUB("roHN4ml+tB8", sceHmdInternalSetBrightness) +STUB( + "roMT+HhG-ow", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEmmEv) +STUB("roRdjnBqqqY", _ZN4IPMI4impl10ServerImpl13removeSessionEPNS0_11SessionImplE) +STUB("roUQwCYYegE", sceShellCoreUtilNotifyBgmCoreTermination) +STUB( + "roUWFGL+rYY", + _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody15maxPlayersIsSetEv) +STUB("roYcJbeb5oE", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session14InvitationDataEE5resetEv) +STUB( + "roehuUw9Ako", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "roitq0ZGXmY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE5clearEv) +STUB( + "rooLmhPE+C8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC1ERKSA_) +STUB( + "rotPo546Hos", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("rozCRBSzSz8", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_26EventInformationListDetailEE3getEv) +STUB("roztnFEs5Es", _ZNKSt7collateIwE10do_compareEPKwS2_S2_S2_) +STUB( + "rp1D8Eomcm4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEED2Ev) +STUB( + "rp3yXkWOkWg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("rp4DB+ICfcg", sceUserServiceSetPbtcSundayHoursEnd) +STUB("rp9ESANSaSs", JSObjectSetPrototype) +STUB( + "rp9z8jO+ywY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "rpBLK2hPM7M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE7popBackEv) +STUB("rpHeawAwasE", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE6resizeEj) +STUB( + "rpMdrE4mZcw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEEaSERSA_) +STUB( + "rpPmeQFAsVI", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS5_INS7_9RecordApi30RecordLargeDataResponseHeadersEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISE_SF_EE) +STUB( + "rpXv3V-R4lo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "rpfqWEAxpeY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEC2EPS6_PNS2_10LibContextE) +STUB("rpl4rhpUhfg", _Atomic_fetch_xor_2) +STUB("rpl8meIq+K8", _ZN4IPMI4impl10ServerImpl18removeSessionByKeyEjPPNS0_11SessionImplE) +STUB( + "rpm4HK5qEbk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "rpmRha1Eq9s", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE11getResponseERS4_) +STUB( + "rppaWIPD9nA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEppEv) +STUB("rpsD9ynfjc0", _ZN3WTF13dumpCharacterERNS_11PrintStreamEc) +STUB("rpv+luk5Ye0", u_toupper) +STUB("rq-lql9vg6I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEC2Ev) +STUB("rq2cjXgDpDE", mono_set_allocator_vtable) +STUB( + "rq2fY5tAOT4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEEptEv) +STUB( + "rq73eO5xSRc", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "rq7XkQEWG3U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE6resizeEj) +STUB( + "rq88Q+VflsI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEEaSERSA_) +STUB( + "rq8Zo5Ehza4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("rq8uO9k2PrA", _ZN4Manx11BundleOrbis4loadEPKc) +STUB("rqAXVNqYPZg", jpeg_fdct_5x10) +STUB( + "rqJY3cug9do", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE10setContextEPNS2_10LibContextE) +STUB( + "rqLKOatBkvs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEC1Ev) +STUB("rqUpcB-Eib0", _ZN7WebCore8SVGNames16patternUnitsAttrE) +STUB("rqYK96mLBMk", _ZN7WebCore5ColoraSEOS0_) +STUB( + "rqbWev706rs", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_33ActivityFeedSharedScreenshotStoryEE10deallocateEPS3_m) +STUB("rqc7P6EDCsY", _ZNK3sce2Np9CppWebApi14IdentityMapper2V311PsnWebError8getErrorEv) +STUB("rqkh2kXvLSw", sceNetCtlRegisterCallbackIpcInt) +STUB("rqwFKI4PAiM", sceKernelAprWaitCommandBuffer) +STUB( + "rqx2prSJ36M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEC1EPNS2_10LibContextE) +STUB("rqz1tQY+Qs4", _ZN3sce7Toolkit2NP15AppSTLAllocatorI16SceNpTusVariableEneERKS4_) +STUB( + "rqzJKEgeR0s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEptEv) +STUB( + "rr-wpm2m3w4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("rr0J1uqeWm0", mono_aot_Sce_Vsh_UserServiceWrapperjit_got) +STUB("rr1ZXuEFbNc", mono_aot_Sce_Vsh_Np_RifManagerjit_got) +STUB("rr203gRHGls", utf8_prevCharSafeBody_67) +STUB("rr2G6WWH3Gk", _ZN3JSC12RegExpObjectC2ERNS_2VMEPNS_9StructureEPNS_6RegExpE) +STUB("rr4OOqEvgIQ", mono_get_exception_null_reference) +STUB("rr8g0GkA+GE", WKViewValueChangedForPopupMenu) +STUB("rrC1l0vNVBE", _ZN3sce7Toolkit2NP2V26Friend12Notification16FriendlistUpdateC1ERKS5_) +STUB("rrCKHsGoQZo", _ZN12Mp4RetrieverD0Ev) +STUB("rrH0wWxGdLQ", sceAppInstUtilAppGetAddcontListTotalSize) +STUB( + "rrHinHqA6Z0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEeqERKS9_) +STUB( + "rrPdDt+BrFs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEmmEv) +STUB( + "rrQ0tlR5q+I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "rrcsO2ML0kk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEmmEv) +STUB( + "rrdQH2oeLjI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "rre6bvImiZU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE13getLibContextEv) +STUB("rreWDZ-xXTg", _ZN3JSC7Symbols16everyPrivateNameE) +STUB("rrgxakQtvc0", isgraph) +STUB("rrh3-CBqrZQ", _ZNK7WebCore19ResourceRequestBase3urlEv) +STUB("rrhx6wXU41g", _ZN3WTF9BitVector9mergeSlowERKS0_) +STUB("rriXMS0a7BM", sceUserServiceSetGlsCameraSize) +STUB( + "rrjAFQlNdPo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEeqERKS9_) +STUB("rrjVP8VjeBk", mono_aot_I18Nplt) +STUB("rrkqRMuld-k", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19BandwidthD1Ev) +STUB("rrmN7i-Wx-c", _ZN7WebCore18EventLoopTaskGroup14queueMicrotaskEON3WTF8FunctionIFvvEEE) +STUB("rrnAgjO-pv0", + _ZN7WebCore19JSDOMMatrixReadOnly9serializeERN3JSC14JSGlobalObjectERS0_RNS_17JSDOMGlobalObjectE) +STUB( + "rrqNi95bhMs", + _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8get_timeES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm) +STUB( + "rrvcPR0oei0", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody37comparedLastUpdatedUserAccountIdIsSetEv) +STUB( + "rs-e++Qw4TM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "rs-gHEqtoyo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEC2EPNS2_10LibContextE) +STUB("rs2jXKJDyLE", _ZNK3sce2Np9CppWebApi14IdentityMapper2V312AccountIdMap13onlineIdIsSetEv) +STUB("rsA9ntEeoYE", _ZN3sce7Toolkit2NP2V212EventsClient7EventIdC2Ev) +STUB("rsCnY+W+Tio", _ZN12video_parser5vpcom6StringC1ERKSbIwSt11char_traitsIwESaIwEE) +STUB( + "rsFyYWQDPrM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "rsHukkzU3NU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE11getResponseERS6_) +STUB( + "rsIpdOpbj04", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "rsJ-E9td5SU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEeqERKS9_) +STUB("rsS5cBMihAM", + _ZNSt13basic_filebufIcSt11char_traitsIcEE7seekposESt4fposI9_MbstatetENSt5_IosbIiE9_OpenmodeE) +STUB( + "rsT5MdHF4zw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEEC1ERKSA_) +STUB( + "rsWSWqF9OrE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("rsX-wqqmCbw", _ZN7WebCore11DisplayList20DrawTiledScaledImageD0Ev) +STUB("rsYdKipTI5Y", YGPositionTypeToString) +STUB("rseyJKAQpjw", _ZN7WebCore7Element14setAttributeNSERKN3WTF12AtomicStringES4_S4_) +STUB("rsl9KQ-agyA", sceUsbdGetDevice) +STUB("rsnmpSOdNzQ", _ZN3JSC9CallFrame15isAnyWasmCalleeEv) +STUB("rsqqpUwcsQY", __libunwind_Unwind_Resume_or_Rethrow) +STUB( + "rsr8jYN+ZHo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEmmEv) +STUB("rsrNnCwuy4w", sceDiscMapBitmapInfoServerStart) +STUB( + "rsy6udpHdu4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEC1Ev) +STUB( + "rsy9uL8d64A", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions28hasxPsnAcceptPlatformNamePs5Ev) +STUB("rt-WeUGibfg", sceUsbdHandleEventsLocked) +STUB("rt2-QhL5nEw", _ZN3sce7Toolkit2NP2V210Tournament7Request8GetEventD2Ev) +STUB("rt2P9NlhEb8", _ZN3JSC7Symbols21Int32ArrayPrivateNameE) +STUB("rt6X0CPa8hA", _ZN4IPMI4impl11SessionImpl12getSessionIdEv) +STUB("rt8sKepvhKI", sceAppInstUtilResumeInstall) +STUB("rt9GX+642U0", WKPreferencesSetMediaPlaybackRequiresUserGesture) +STUB( + "rtAG3MYqzkg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEED2Ev) +STUB("rtBENmz8Iwc", __divmodsi4) +STUB( + "rtCnug1TujU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "rtFhrkMbmTk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE5clearEv) +STUB("rtJbtl9z910", _ZN7WebCore13JSDOMRectList7destroyEPN3JSC6JSCellE) +STUB("rtN25hsMVv0", _ZN7WebCore9HTMLNames19ongesturechangeAttrE) +STUB( + "rtR3xPFVNMs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "rtTZJldifw4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("rtV7-jWC6Yg", log) +STUB("rtWWBSqgRzo", _ZN3WTF21RefCountedLeakCounter9decrementEv) +STUB("rtYUAxh2gSA", _ZN7WebCore7Element12setOuterHTMLERKN3WTF6StringE) +STUB("rteGfmnXhLU", _ZN3sce7Toolkit2NP2V26Friend7FriendsD1Ev) +STUB("rtfm1OQgEK8", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEEmmEv) +STUB( + "rtgUuGTer0E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEEC1ERKSA_) +STUB("rti25OtlE7w", _ZNK3sce2np13JsonArrayImpl17itemArrayAddValueEPNS1_9ItemArrayEPKNS0_9JsonValueE) +STUB("rtjxnvq9Qwk", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEEC1Ev) +STUB("rtk5rcqrLck", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEEcvbEv) +STUB( + "rtuHtSOEwtU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "rtwTzpkRdrM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "rtxV26lGxUU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("ru8cb4he6O8", sceGnmSqttStartTrace) +STUB("ruF+U6DexT4", sceUserServiceGetNpLanguageCode2) +STUB( + "ruK0VauMjyw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("ruMrqQQNO0Y", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_25ReceivedInGameDataMessageEE3getEv) +STUB("ruN8WLy404c", YGNodeGetChildCount) +STUB("ruNe-FgCzO8", sceContentSearchGetMetadataValue) +STUB("ruP-T7+cy1g", _ZN7WebCore9Scrollbar9mouseDownERKNS_18PlatformMouseEventE) +STUB("ruR8rglNPvE", scePerfTraceAprNameGetInfo) +STUB("ruS-boGA0zs", sceBgftServiceIntDownloadSetStartState) +STUB( + "ruVTcANTQmI", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBody10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_25ResponseGameSessionPlayerEEEEE) +STUB("ruZ9hhQ8oUk", pthread_getstack_np) +STUB( + "ruZjtsKF5OE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEplEm) +STUB("ruZtIwbCFjk", _ZTVSt7collateIcE) +STUB("ruaWrFPIjFw", _ZN7WebCore18JSHTMLInputElementD2Ev) +STUB("ruavD39yI2Q", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V110Reputation15getPerFranchiseEv) +STUB("ruebbI-LimI", mono_metadata_load_generic_param_constraints_checked) +STUB( + "ruhMvhzt+Ow", + _ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead21getSupportedPlatformsEv) +STUB("ruibZqJ0i7A", _ZNSt9basic_iosIwSt11char_traitsIwEE5imbueERKSt6locale) +STUB("ruj4nqADjDM", _ZN7WebCore9HTMLNames5trTagE) +STUB("rukSIqiQ-CQ", sceM4aacEncClearContextEx) +STUB("rul24vLhE0Q", WKUserContentURLPatternCopyHost) +STUB( + "rulTaTjK3NE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE8capacityEv) +STUB( + "rup7cnHgWWs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE5beginEv) +STUB( + "rusVOPM1oF4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEC2ERS7_) +STUB("ruvLq5s4ZzU", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetInteger4Ev) +STUB( + "ruwML54fK20", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE21intrusive_ptr_add_refEPS9_) +STUB("ruyD9QkP8dI", fchown) +STUB("rv0psaVHnf8", _ZNK3sce2Np9CppWebApi11Matchmaking2V110UserTicket11statusIsSetEv) +STUB( + "rv1uHavZUgo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEdeEv) +STUB( + "rv3rnyOdKTI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEEaSERKSA_) +STUB("rv8Kv-PnXJ4", _ZN7WebCore22MutableStylePropertiesD2Ev) +STUB( + "rv8xU4hWLto", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB("rvBSfTimejE", scePlayGoGetInstallSpeed) +STUB("rvCywCbc7Pk", sceVrTrackerCpuPushMarker) +STUB( + "rvG6vxXMQBE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE5emptyEv) +STUB("rvJ+IqRSAT4", _ZNK3sce2Np9CppWebApi7Matches2V120ReportResultsRequest19npServiceLabelIsSetEv) +STUB( + "rvLcnANRjp4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE21intrusive_ptr_add_refEPS9_) +STUB("rvNWRuHY6AQ", _Loctab) +STUB( + "rvNbBjvBKIw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEE5resetEPS9_) +STUB( + "rvNfpNv5Uys", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEixEm) +STUB( + "rvQ3iCpGgC8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE5emptyEv) +STUB( + "rvRsmQ0vaPM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEppEv) +STUB("rvWqWoXSmYo", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_22FriendsRankInformationEE17getAdditionalInfoEv) +STUB( + "rvXpEW0WUIs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE5beginEv) +STUB("rvY1o0UBxaY", _ZN3sce3pss5orbis9framework11PsmArrayObj9ToPointerEv) +STUB( + "rvfkT3l5o9A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEppEv) +STUB("rviP9C2IZfo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEED1Ev) +STUB("rvjIztKWq64", _ZN7WebCore18TextureMapperLayer20setContentsTilePhaseERKNS_9FloatSizeE) +STUB("rvkeBTqelqc", + _ZNK3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer16customData1IsSetEv) +STUB( + "rvwptoNh5bw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEeqERKS9_) +STUB("rvxc2gSxsRA", sceRnpsAppMgrDestroyBundle) +STUB("rvyO0fzB-II", _ZN3sce7Toolkit2NP2V26Trophy7Request19GetUnlockedTrophiesD2Ev) +STUB( + "rvyRpLkUsAo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEC1EPS8_) +STUB("rvz8xYxhMW0", _ZN3sce2np7RingBuf4dtorEv) +STUB( + "rw-45eQnZuw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE6resizeEj) +STUB("rw35hzXVZgU", sceFsInitUmountLwfsOpt) +STUB("rw6zVhgCPB4", _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOffer13isInitializedEv) +STUB("rwC+kk9Ir-0", _ZN7WebCore7Element10offsetLeftEv) +STUB("rwJsqFwpr5Q", _ZN7WebCore15DOMWrapperWorld13clearWrappersEv) +STUB("rwM99K5fzIk", sceNpPush2UnregisterDataType) +STUB( + "rwTRDgH3nrM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEE5resetEPS9_) +STUB( + "rwXcAOpCnAA", + _ZN9Inspector21HeapBackendDispatcher15getRemoteObjectElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "rwZ6hiWrmyY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEED2Ev) +STUB("rwcYBorkaIo", _ZN7WebCore17JSHTMLLinkElement9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("rwf3LEbBaKE", uprv_fmod) +STUB("rwfMfMQl21M", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE3endEv) +STUB("rwjfy+8+84c", _ZN3JSC22EdenGCActivityCallbackD1Ev) +STUB("rwnTeqYe0bY", SpeechCancel) +STUB("rwovEv6eKGQ", uprv_isNegativeInfinity) +STUB("rwq1iArT-Hc", __sanitizer_get_estimated_allocated_size) +STUB("rwrMuecizqA", __ubsan_handle_function_type_mismatch_v1) +STUB("rwy+lzkDNBc", _ZN7WebCore13StyleRuleBase7destroyEv) +STUB( + "rwzEqYi8oW0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEE7add_refEv) +STUB("rwzelteuTd0", uregex_getTimeLimit_67) +STUB("rx1xb6jbJ9g", fuse_reply_buf) +STUB("rx2qbyMARn8", WTFLogChannelByName) +STUB( + "rx3TxXB1G94", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE4initEv) +STUB( + "rx3a9I1GwWw", + _ZN3sce2Np9CppWebApi7Matches2V118RequestTeamResults20setTeamMemberResultsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_23RequestTeamMemberResultEEEEE) +STUB( + "rx4U+ccwKA0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE10setContextEPNS2_10LibContextE) +STUB("rx6FnnUyW5I", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE7popBackEv) +STUB("rx6wK+L8tIE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEED1Ev) +STUB("rx7EcAS2ARk", sceUsbStorageRequestMapWSB) +STUB("rx98IFa3Nq8", WKViewReplyJavaScriptConfirm) +STUB("rxAx2s8-EAk", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEED1Ev) +STUB("rxClJyOYLPo", mono_metadata_compute_size) +STUB( + "rxFpCl9ua-w", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEcvbEv) +STUB( + "rxTnTs7PV7Q", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_18SessionInformationENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB( + "rxXO-ua4smg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEmmEi) +STUB("rxXvAxEbq8I", sceGpuTraceStop) +STUB("rxZjrt0XJUc", WKWebsiteDataStoreRemoveAllFetchCaches) +STUB("rxblJbgGoLQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEE5resetEPS6_) +STUB( + "rxe7HVaQePA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEEC1ERSA_) +STUB("rxi1nCOKWc8", sceUsbdInterruptTransfer) +STUB( + "rxkIurXISz8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEE11release_refEv) +STUB( + "rxls8KHB5HA", + _ZN23sceMetadataReaderWriter13ParserManager14getParserInfosEjPSt6vectorIPNS_10ParserInfoESaIS3_EE) +STUB( + "rxqCyXbOi3Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE5beginEv) +STUB("rxtuiZ2wS88", _ZN3sce7Toolkit2NP2V28Commerce7Request13GetCategoriesC2Ev) +STUB( + "rxxPeIYD3fs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEED1Ev) +STUB("ry+I3fgrkfE", sceKernelWriteEventQueueOnCompletionCommand) +STUB( + "ry17VPOU1iw", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSD_ESD_) +STUB("ry19IKublQw", _ZN3sce7Toolkit2NP2V210Tournament7Request18GetRegisteredUsersC2Ev) +STUB("ry52QkQeAWo", cairo_image_surface_create) +STUB("ryA0BvjZKrY", _ZN7WebCore18pluginTooSmallTextEv) +STUB("ryCxtgjNuU4", _ZN3JSC18GCActivityCallback11didAllocateEm) +STUB( + "ryE3pNcC6PM", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10setString6EPKc) +STUB( + "ryFHGxystJQ", + _ZN7WebCore6Editor13rangeOfStringERKN3WTF6StringEPNS_5RangeENS1_9OptionSetINS_14FindOptionFlagEEE) +STUB( + "ryKbtnTBR+4", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountId11setonlineIdERK13SceNpOnlineId) +STUB("ryPlnDDI3rU", sceFontGetRenderScaledKerning) +STUB("ryT1ZUGBCxI", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getInteger2Ev) +STUB( + "ryTnjFTGn30", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEED1Ev) +STUB("ryUXM2DuqT4", _ZNK7WebCore19ResourceRequestBase7isEmptyEv) +STUB( + "ryUke378RyY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE5eraseENS2_13ConstIteratorIS5_EERS8_) +STUB("ryUxD-60bKM", _ZnwmRKSt9nothrow_t) +STUB( + "ryYp3mWn46Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEC2ERS7_) +STUB("ryZMo6agV9Q", + _ZN3sce2Np9CppWebApi12Leaderboards2V127RecordLargeDataResponseBodyC2EPNS1_6Common10LibContextE) +STUB( + "ryZWTziZxF0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB( + "rycK0NvlqVU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "ryfvL3pfhqM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("ryl2DYMxlZ0", _ZNSt13basic_filebufIwSt11char_traitsIwEE7_UnlockEv) +STUB("ryl5QyVQL+o", shared_memory_area_map) +STUB("rymOrz6HZAs", psl_load_fp) +STUB("ryykbHJ04Cw", + _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewx) +STUB("ryyn6-WJm6U", nexttowardl) +STUB( + "rz57O7bbnPU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE7popBackEv) +STUB( + "rz5k8OHfefQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("rzCicCsOcPg", WKPageConfigurationGetRelatedPage) +STUB("rzEsC81gurc", sceKernelSetGPI) +STUB("rzH0laaVCEU", _ZN3sce7Toolkit2NP2V211SharedMedia7Request9GetVideos13MAX_PAGE_SIZEE) +STUB("rzIWh7FJnmU", FT_Stroker_GetCounts) +STUB("rzMyjrfU6Ag", WKWebsiteDataStoreConfigurationSetStaleWhileRevalidateEnabled) +STUB( + "rzQKjz1S65c", + _ZN3sce7Toolkit2NP8Matching9Interface12leaveSessionEPKNS1_18SessionInformationEPNS1_9Utilities6FutureIiEEb) +STUB( + "rzZCoZ+maG8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE8copyFromERKS9_) +STUB("rza9NDv-OoI", WKPageReloadWithoutContentBlockers) +STUB("rzdrjp17kMY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEED2Ev) +STUB("rzfOSPn1w7k", sceSdmaWaitForEvent) +STUB( + "rzhvnTyZ5BM", + _ZN12video_parser13cVideoMetaVWG16getThumbnailInfoENS_9VP_LANG_eENS_15VP_SEARCH_OPT_eEPNS_18VpThumbnailInfo_t_E) +STUB("rziD1QcU+AE", + _ZNK3sce2Np9CppWebApi14ConnectAccount2V214PSNError_error6toJsonERNS_4Json5ValueEb) +STUB( + "rziodMeo-a8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEEaSERKSA_) +STUB("rzktTwuBJwc", _ZNK7WebCore12ChromeClient17minimumWindowSizeEv) +STUB( + "rzlk+9P+KbY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEE11get_deleterEv) +STUB( + "rzodUIn410c", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEE3getEv) +STUB( + "rzunEPioFtU", + _ZN3sce7Toolkit2NP10ParametersC1EPFvRKNS1_5EventEPvERNS1_9NpTitleIdES6_S6_mPNS1_19AllocImplementationE) +STUB( + "rzx3cgTlsNE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE8copyFromERKS9_) +STUB( + "rzx5qPNNXok", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("s++OzrFF-1g", mono_aot_ReactNative_Components_Vshunbox_trampolines_end) +STUB("s+0pSDvfJkk", _ZN3sce7Toolkit2NP2V27Session7Request6CreateD1Ev) +STUB("s+2Mtr-o+X8", _ZTVN9Inspector38ScriptProfilerBackendDispatcherHandlerE) +STUB("s+42ELWxjCI", _ZNK3WTF6String4utf8Ev) +STUB("s+C+abjNOWc", WKPreferencesSetAcceleratedDrawingEnabled) +STUB("s+Gety9ZDs4", _ZNK7WebCore22EmptyFrameLoaderClient21shouldGoToHistoryItemERNS_11HistoryItemE) +STUB( + "s+HAFTtGy24", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEdeEv) +STUB( + "s+I4seyTy+4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEplEm) +STUB( + "s+IPZZwEOpE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("s+LfDF7LKxM", _Atomic_compare_exchange_strong_4) +STUB("s+MeMHbB1Ro", _Scanf) +STUB("s+PUo8AbBrw", __asan_register_globals) +STUB("s+QHU9RLHS4", pthread_getconcurrency) +STUB( + "s+SeEgj1ntg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEEC2ERKSA_) +STUB("s+UraPFZBLI", _ZN3sce2Np9CppWebApi6Common8IteratorINS2_6StringEEC2EPS4_) +STUB("s+VGAMDQ0AQ", sceAgcGetDataPacketPayloadRange) +STUB( + "s+XWhVQ-l1A", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB( + "s+YrCI1EeBs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEEC2ERS8_) +STUB("s+dG6iqG7j0", _ZN3sce2np3ipc17ServiceIpmiClient4dtorEv) +STUB( + "s+e-gvfqQyA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEEdeEv) +STUB( + "s+flRU8XTbA", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("s+gRU6gfdLM", sceNpSessionSignalingManualUdpEstablishConnection) +STUB( + "s+i8DgX0ljw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEE5resetEPS9_) +STUB("s+kWxdUt81s", fuse_chan_recv) +STUB("s+kar-RW2lI", mono_init_version) +STUB( + "s+lrU-zZsEc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEEdeEv) +STUB("s+mgGos0htI", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V117ResponseMatchTypeEEmmEi) +STUB("s+t7U3430nk", rgctx_fetch_trampoline_rgctx_99_p) +STUB("s+uku3je12E", + _ZNK3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeINS1_11TusVariableEPvEE8max_sizeEv) +STUB( + "s+vd4SttYcU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEmmEv) +STUB( + "s+xL+l2aMsg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEED1Ev) +STUB( + "s+ztfvHkhNE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEdeEv) +STUB( + "s-4DAVr+GjA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEE11release_refEv) +STUB("s-6xbR71jQI", sceCompositorGetAnotherProcessVideoAddress) +STUB("s-757sLlVkE", _ZN7WebCore28BackingStoreBackendCairoImplD2Ev) +STUB("s-C88O6Y8iU", _ZN3sce2np9LocalFileD2Ev) +STUB("s-J66ar9g50", sceHmdInitialize315) +STUB( + "s-JUfz5iQ0Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEE11release_refEv) +STUB("s-Ml8NxBKf4", _LDscale) +STUB("s-NFgV+HfTk", _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead11unsetMemberEv) +STUB("s-PEdREq5oE", _ZN3WTF15AutomaticThread16threadIsStoppingERKNS_14AbstractLockerE) +STUB( + "s-U53rgtssM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEC2EPNS2_10LibContextE) +STUB( + "s-XBRBn5djs", + _ZN9Inspector26AnimationBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("s-YCXQpB7Vg", mono_aot_Sce_Vsh_ShareServerPostWrapperunwind_info) +STUB("s-ZHwpqG0NE", utext_nativeLength) +STUB( + "s-jIWyOZJsQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEED1Ev) +STUB( + "s-lqRZqMug8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEE5resetEPS9_) +STUB( + "s-omTQTsT+0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("s-v6QLCddRE", _ZNK7WebCore25DropShadowFilterOperation8locationEv) +STUB( + "s0+824ouaJM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEC1EPS6_PNS2_10LibContextE) +STUB( + "s03hIqVcZJg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE7popBackEv) +STUB( + "s06W03Wl1BE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE5abortEv) +STUB( + "s09ncwufdZ8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "s0E+jrkzo-A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEC1ERS7_) +STUB( + "s0I424tAEeE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE6resizeEj) +STUB( + "s0Jsa37a0Ps", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "s0N2SJ3zv3A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEC2EPS8_) +STUB( + "s0OCPuSXWJA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("s0PXkgZgBYI", OCSP_crl_reason_str) +STUB("s0R93InPFGk", _ZN3IPC15ArgumentEncoder6encodeEl) +STUB("s0SCpy0r7QQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEaSERS7_) +STUB( + "s0V0RF9Hiek", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("s0V1HJcZWEs", _ZNSt12placeholders3_14E) +STUB( + "s0cP3yzBP3w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEC2Ev) +STUB( + "s0et0D57SeU", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser11hassortModeEv) +STUB( + "s0g3ABxLcxo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEneERKS9_) +STUB("s0ltgi1PRLw", _ZN3sce7Toolkit2NP2V24Core13CallbackEventaSERKS4_) +STUB("s0mJ4sXn1YY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEixEm) +STUB("s0nFd+EnB8k", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_34DetailedProductInfoListInputParams9ProductIdEED2Ev) +STUB( + "s0s5Mo37xU0", + _ZNK3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE11getResponseERS8_) +STUB("s0u30pOfi9Q", _ZN3sce7Toolkit2NP2V24Core7Request10TermParamsC1Ev) +STUB("s0v1hj9ip3A", monoeg_g_strlcpy) +STUB("s1--uE9mBFw", sceAudioOutClose) +STUB( + "s1292BbRCB0", + _ZN8meta_gen14ImageRetriever7PromoteERKN23sceMetadataReaderWriter8MetadataERS2_P19PromoteInnerContextP17CancelInterface_tP16StorageInterfaceP23PromoteInnerInformation) +STUB("s13MdrE2ZVA", _ZN7WebCore17LibWebRTCProviderC2Ev) +STUB("s13ZeeH6Jvw", _ZN4Manx11MediaPlayer7setRateEf) +STUB( + "s13vyICNA7Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEE7get_refEv) +STUB("s16FCbWaiDA", uenum_count_67) +STUB( + "s17k7RTv0TI", + _ZN3sce2Np9CppWebApi7Matches2V129GetMatchDetailResponseFactory6createEPNS1_6Common10LibContextEPKcNS3_6StatusES9_NS3_12GroupingTypeENS3_15CompetitionTypeENS3_10ResultTypeEiPNS5_12IntrusivePtrINS3_22GetMatchDetailResponseEEE) +STUB("s19dG0nY-dE", WKContextSetClient) +STUB( + "s1B5q4WCSM4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEneERKS9_) +STUB("s1DS0Vvz-18", _ZN7WebCore16TrackPrivateBaseD0Ev) +STUB("s1EM2NdPf0Y", _ZNSt8numpunctIwEC1ERKSt8_Locinfomb) +STUB( + "s1S-XTZ28XY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE3endEv) +STUB("s1SncJ87V-Q", + _ZN3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectator16unsetCustomData1Ev) +STUB("s1UIJXfLWkA", _ZN9Inspector24BrowserBackendDispatcherD0Ev) +STUB("s1W93bDgGXw", _ZN7WebCore11DisplayList9ClearRectD0Ev) +STUB("s1YT7yEqqq0", rgctx_fetch_trampoline_mrgctx_111) +STUB("s1b2SRBzSAY", _ZTSPv) +STUB("s1c4VkLO-pk", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_20ChallengeRecvDetailsEE7destroyEPS3_) +STUB( + "s1cX-x69mDA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE10setContextEPNS2_10LibContextE) +STUB("s1e88GPYMYQ", ft_smooth_renderer_class) +STUB("s1eH+iCoJ5Y", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V15GroupEEptEv) +STUB("s1mBmFd1g4I", _ZNSt9_FacetptrISt7collateIwEE6_PsaveE) +STUB("s1tJ1zBkky4", CERT_STORE_findCertBySubject) +STUB("s1vHv0LgpWI", + _ZN3sce2Np9CppWebApi14SessionManager2V122GameSessionPushContextC1EPNS1_6Common10LibContextE) +STUB( + "s1vJf8IpHzM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEC1ERS7_) +STUB("s1zGYYF-xC0", scePs2EmuMenuDialogTerminate) +STUB("s2-NPIvz+iA", sceHttpSetNonblock) +STUB("s23Q07skOlc", scePlayReadyEnvelopeSeek) +STUB("s28dalBwp2g", sceVideoRecordingOpen2) +STUB("s2CcKWuund4", wcstod.fpi) +STUB("s2D6sduLP3I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEC2Ev) +STUB( + "s2GAqRFaRVY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEptEv) +STUB( + "s2JYrJe6Zuo", + _ZN9Inspector26AnimationBackendDispatcher19requestEffectTargetElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("s2JbJNRhw2E", + _ZN7WebCore11JSDOMWindow21deletePropertyByIndexEPN3JSC6JSCellEPNS1_14JSGlobalObjectEj) +STUB("s2Nu2w6oJNc", ScePsmMonoObjectGetClass) +STUB("s2Ovsjqu4ZQ", g_spaced_primes_closest) +STUB("s2PjRq4By9U", sceKernelLwfsLseek) +STUB("s2R6fWKJDto", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11SessionDataEEC2Ev) +STUB( + "s2Y3GQKKufk", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi47ParameterWithBinaryRequestBodyToRecordLargeDataC2Ev) +STUB( + "s2a+XhLOik0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE21intrusive_ptr_add_refEPSA_) +STUB("s2aqch+mz7c", _ZN7WebCore24CoordinatedGraphicsLayer15resetLayerStateEv) +STUB( + "s2dq7xeW17I", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V115NatConnectivity9setGlobalERKNS1_6Common12IntrusivePtrINS3_25NatConnectivityPropertiesEEE) +STUB( + "s2e+cJ9S3l8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEmmEi) +STUB("s2eGsgUF9vk", _ZnamSt11align_val_tRKSt9nothrow_t) +STUB( + "s2gMFDV2NrU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE10setContextEPNS2_10LibContextE) +STUB("s2mB3mnwAUE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEC1Ev) +STUB("s2mf1DhqJnA", uhash_removeAll_67) +STUB( + "s2qm-DVq1ys", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEdeEv) +STUB("s2rezq2XYk4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEED2Ev) +STUB("s2uTZ1W+T4k", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS19FriendsDataStatusesEE5resetEv) +STUB( + "s2wfES4swT8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "s2x2bFNPB+0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEC2Ev) +STUB( + "s2x3ROLArqc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEEC2ERKSA_) +STUB("s2zG12AYKTg", _ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED0Ev) +STUB("s31rYkpIMMQ", sceNetConfigSetIfmtu) +STUB( + "s3A1enBs+6k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE10setContextEPNS2_10LibContextE) +STUB( + "s3IxmwFE4OA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "s3Q+LOzwREo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEC2EPS8_) +STUB("s3SsTnKs5Vg", WKContextSetWebProcessPath) +STUB("s3WmPxkb0Hs", + _ZNK3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator17pushContextsIsSetEv) +STUB( + "s3bra2eSy2c", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("s3gPHgV8JLg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEEptEv) +STUB("s3mNCN-95Lk", _ZN7WebCore9JSElement14finishCreationERN3JSC2VME) +STUB("s3qCnsS3ATE", FTA_Remove_Module_gxvalid) +STUB("s3rKgGTVFxA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEED2Ev) +STUB( + "s3tyjhEdkcc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEC2EPNS2_10LibContextE) +STUB( + "s3wBedmspEo", + _ZN3sce2Np9CppWebApi14SessionManager2V129PlayerSessionSpectatorFactory7destroyEPNS3_22PlayerSessionSpectatorE) +STUB("s3xvWqQGYck", _ULx86_64_dwarf_create_state_record) +STUB("s3zTH-bFeRk", _ZN3JSC7Symbols29toLocaleTimeStringPrivateNameE) +STUB("s4-olElR8+M", _ZN9Inspector27PerGlobalObjectWrapperWorldD2Ev) +STUB("s46e1bVNWNg", _ZN7WebCore28InspectorFrontendClientLocal8SettingsnwEm) +STUB( + "s47LDVeMEbA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEeqERKS9_) +STUB("s48DoEoWm8A", delegate_virtual_invoke_5_p) +STUB( + "s4G45M9w8tc", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("s4Nx7gSL-rQ", _ZN12video_parser5vpcom6DeleteE) +STUB("s4OcLqLsKn0", sceSystemServiceGetVersionNumberOfCameraCalibrationData) +STUB("s4PtLnp9yw4", sceShellCoreUtilExtendShutdownTimer) +STUB("s4UEa5iBJdc", sceNpInGameMessageCreateHandle) +STUB("s4VBXpnbPbI", fuse_destroy) +STUB("s4XIMlhWmTA", _ZN3sce7Toolkit2NP2V212ActivityFeed14PlayedWithFeedC2ERKS4_) +STUB( + "s4fvMMc5h74", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("s4r174wiVJg", JSSetGcMaxHeapSize) +STUB("s4tJF+n0mZ0", sceKernelCreateSblock) +STUB( + "s4uuDl6SVDQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE21intrusive_ptr_add_refEPS9_) +STUB("s53pj2RetQQ", _ZN9Inspector31ScriptProfilerBackendDispatcherD2Ev) +STUB("s57NRP+x7TU", _ZN3sce3pss4core5audio11SoundPlayerC2EPNS2_5SoundEj) +STUB("s5CjNIxhlHM", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_6TicketEE17getAdditionalInfoEv) +STUB("s5EqYh5kbwM", sceHmdInternalSocialScreenGetFadeState) +STUB("s5Jgo6yw-o0", JSObjectMakeTypedArray) +STUB("s5KB79+vKyA", mono_monitor_try_enter) +STUB( + "s5QPq8WHovA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE5beginEv) +STUB("s5RkPnIHq9g", _ZN7WebCore16convertToIntegerIiEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB( + "s5Sdtp7arWg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE8copyFromERKS9_) +STUB("s5WckG2j6Y4", _ZN4Manx14NetworkProfile16setCookieEnabledEb) +STUB("s5XKQo9CHyw", curl_mvprintf) +STUB("s5YYeNMcav8", mono_aot_Sce_Vsh_Gls_NativeCallplt) +STUB( + "s5Yf-0h2kyE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "s5el2evQ0cM", + _ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForReadC1EPNS1_6Common10LibContextE) +STUB( + "s5gIm6mJFkw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEEC1EPS6_PNS2_10LibContextE) +STUB("s5i75HCzG6w", _ZTVN15AbstractStorage15FacebookServiceE) +STUB( + "s5iEhKE+1BU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEED2Ev) +STUB("s5o2MRVhjkA", _ZN3sce7Toolkit2NP2V28Presence7Request19LocalizedGameStatusC1Ev) +STUB("s5rNHj-Fx+I", _ZN3sce7Toolkit2NP2V24Core17CustomRequestBaseC2Ev) +STUB("s5sv2KhvlxE", glClearDepthf) +STUB("s5tkwwxWX8c", _ZN7WebCore11DisplayList7RestoreC1Ev) +STUB( + "s5xvFcUb3Ao", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions9terminateEv) +STUB("s6+kdc0wpAo", __asan_store1_noabort) +STUB( + "s60YhSD3mYM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEptEv) +STUB("s61G-85MVI8", _ZNK3sce2Np9CppWebApi7Matches2V122RequestPlayerStatistic11getPlayerIdEv) +STUB("s62MgBhosjU", _Unwind_Backtrace) +STUB( + "s62xMWuk9F8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "s63+vyhlINI", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "s63-Hu9hAco", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEC1EPKS8_) +STUB("s660artQ8Kg", res_getIntVectorNoTrace_67) +STUB( + "s66mcrl-vNQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEplEm) +STUB("s67G-KeDKOo", vwarn) +STUB("s68O9rqdXyY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEE5resetEPS6_) +STUB( + "s6DqutS7KR0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "s6FVJpesuag", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("s6KzWGD8P3k", WKPreferencesGetICECandidateFilteringEnabled) +STUB( + "s6NEQgqixbA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEdeEv) +STUB("s6NIjUCdhnM", ENGINE_get_id) +STUB("s6U8oUKr1zQ", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer8haslimitEv) +STUB("s6W4Zl4Slgk", sceNpUniversalDataSystemCreateEventPropertyObject) +STUB("s6a5LF1NG4g", sceVorbisDecOpenCallbacks) +STUB("s6asvnWD9xY", uprv_copyAscii_67) +STUB("s6eWze7IAok", rgctx_fetch_trampoline_mrgctx_50_p) +STUB("s6hnap+4SM8", _ZN3sce16CommonDialogUtil6Client13openCmnDialogEPvm) +STUB( + "s6nd0Z++Tew", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEdeEv) +STUB("s6qnyKuSfU8", _ZN7WebCore13MIMETypeCacheC2Ev) +STUB("s6sTWrzxZzY", sceDeci4hDrfpEventHandler) +STUB("s6ucQ90BW3g", sceSystemServiceActivateHevcSoftAbort) +STUB( + "s7-TSEVo6Yk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEneERKS9_) +STUB("s728+rAmwBw", Java_java_net_Inet6AddressImpl_getHostByAddr) +STUB( + "s73S4RrlWzs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEEC2ERKSA_) +STUB( + "s77MdtQY0kA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEaSERKS9_) +STUB("s77ZLU-juKw", JSContextCreateBacktrace) +STUB( + "s7Cg1wGVRew", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEE3getEv) +STUB("s7CvzS+9ZIs", scePadMbusTerm) +STUB( + "s7D1ibOby8I", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEaSERKS7_) +STUB( + "s7DDlZ4lEKM", + _ZN9Inspector20DOMBackendDispatcher33getAccessibilityPropertiesForNodeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "s7KzzN+toqw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEE7get_refEv) +STUB("s7MWC+YVXfQ", _ZN13MsvMetaEditorD0Ev) +STUB("s7PjdUkvY1s", _ZNK3JSC17DebuggerCallFrame29deprecatedVMEntryGlobalObjectEv) +STUB("s7QZGcHR6hI", WKPageSetEnableHorizontalRubberBanding) +STUB("s7UPLV3pQ5w", _ZN3JSC6JSLock12DropAllLocksC1EPNS_2VME) +STUB( + "s7XXk0rxSgg", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB("s7YLdo2-V3E", _ZN7WebCore18TextureMapperLayer14setPreserves3DEb) +STUB( + "s7YtGdt8Sg4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB("s7ZkDunmDMo", _ZN3JSC16SamplingProfiler39noticeCurrentThreadAsJSCExecutionThreadEv) +STUB("s7ff9Qd2hS4", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request15PostInGameStory11MAX_ACTIONSE) +STUB( + "s7g6oOBa3PU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEE5resetEPS6_) +STUB( + "s7hD13SS4AA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE5clearEv) +STUB("s7iufk7kth4", fuse_req_interrupt_func) +STUB( + "s7lbEIuRQf0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB("s7ndKtFBHgc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEC2ERKS7_) +STUB( + "s7safFh5zGY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("s7umoxlKe5A", Java_java_awt_GnmGraphics_nativeFillRoundRect) +STUB( + "s8-4iaa0pmQ", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanity15setserviceLabelEPKc) +STUB("s81mWDo1fVk", clock_gettime_np) +STUB("s82naOD3HfA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEC1Ev) +STUB( + "s86g+B+O4CI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE10setContextEPNS2_10LibContextE) +STUB("s8GYJeFHkAM", _ZN9Inspector22HeapFrontendDispatchernwEmPv) +STUB("s8GYZ2aPoTU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEEC1Ev) +STUB("s8HHdKjfNLM", _ZN3sce7Toolkit2NP2V23TUS15TusDataStatuses8deepCopyERKS4_) +STUB( + "s8KS6Miam0w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEC2EPS8_) +STUB( + "s8Ld3Pj8+1M", + _ZN7WebCore11DOMRectListC1ERKN3WTF6VectorINS_9FloatRectELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("s8QiuCjOpXo", _ZN3sce7Toolkit2NP14TssInputParamsC1Ev) +STUB("s8UAsZfh0S8", generic_trampoline_jit_p) +STUB( + "s8VZCH8dHM8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEC1EPKS8_) +STUB("s8ZoG4mimcw", _ZN7WebCorelsERN3WTF10TextStreamERKNS_9RectEdgesIfEE) +STUB("s8ejD-SADXQ", sceNpIpcRegisterCallback) +STUB( + "s8f-v7gWQS0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEE21intrusive_ptr_add_refEPS7_) +STUB("s8gWJrY1W-k", ksem_post) +STUB("s8gdXxUXmQk", mono_defaults) +STUB("s8h6Ld659to", _ZN12video_parser13cVideoPathEts11sExtentListE) +STUB("s8kM7N-y-eI", _ZN9Inspector17BackendDispatcher17sendPendingErrorsEv) +STUB("s8qnQ+t8nzs", + _ZN7WebCore32ScrollingStateFrameScrollingNode17setLayoutViewportERKNS_9FloatRectE) +STUB("s8r2Coyc+XE", _ZN3sce7Toolkit2NP2V28Matching12Notification14NewRoomMessageaSERKS5_) +STUB("s8sghK+NjTI", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRateD2Ev) +STUB( + "s8u6zWgtJDE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE6resizeEj) +STUB( + "s8vFKm0uadE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("s8vuHbvbtis", sceSystemServiceUsbStorageRequestUnmap) +STUB("s8wCTgpBNrQ", _ZN7WebCore11DisplayList7ClipOutC2ERKNS_9FloatRectE) +STUB( + "s8ycwY29Gk0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE13getLibContextEv) +STUB("s9+zoKE8cBA", sceNpAppInfoIntFinalize) +STUB("s9-RaxukuzQ", sceKernelCloseEventFlag) +STUB("s9BsLfgWTeM", cairo_format_stride_for_width) +STUB("s9H87awmb1U", _ZN7WebCore8SVGNames17vert_origin_xAttrE) +STUB( + "s9HbQo62wCo", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126BandwidthDownstreamMetrics20setStandardDeviationERKi) +STUB("s9M5bNj1iwM", WKPreferencesSetMediaPreloadingEnabled) +STUB("s9N6WZ-FfYU", _ZN3JSC8Debugger25didReachDebuggerStatementEPNS_9CallFrameE) +STUB( + "s9Ojb9DCb0E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEEcvbEv) +STUB("s9Pb0O3EpQI", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus10unsetOwnerEv) +STUB( + "s9PpgoWp7NA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE8capacityEv) +STUB("s9R+2c-7pQc", monoeg_g_utf8_strdown) +STUB("s9TpQC332NU", _ZNK3sce3Xml3Dom4Node13getChildNodesEv) +STUB( + "s9WTS1LBqbI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEED1Ev) +STUB("s9ZGiVCPqmk", _ZN15AbstractStorage18DailymotionService5StartEv) +STUB( + "s9cIrRJmxII", + _ZN3sce2Np9CppWebApi11UserProfile2V111PresenceApi28ParameterToGetBasicPresences13setaccountIdsEPKc) +STUB("s9e3+YpRnzw", sceSaveDataDialogInitialize) +STUB("s9eYZVa9d3Q", _ZN7WebCore10FileSystem29fileMetadataFollowingSymlinksERKN3WTF6StringE) +STUB("s9fAZSJxkYI", __tsan_atomic32_compare_exchange_val) +STUB("s9gPPnwVoss", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116InitialJoinStateEEmmEi) +STUB( + "s9jNLuwcrFU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB("s9kexYWR8ic", + _ZN3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayer11setPlayerIdEPKc) +STUB("s9knR+WWOyI", sceAvControlInit) +STUB("s9pLwF0h43s", _ZN3sce7Toolkit2NP2V210Tournament4TeamD2Ev) +STUB("s9qIeprVILk", SSL_getServerRandom) +STUB( + "s9zymlj1mBE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEE5resetEPS6_) +STUB( + "sA-XkoCiw0o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEEcvbEv) +STUB("sA3IshgN8u8", glEnableVertexAttribArray) +STUB("sA6+5XdbqMA", sceVideoRecordingGetInfo) +STUB( + "sA6KbjYdFZM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEC2EPNS2_10LibContextE) +STUB( + "sAJjj1NITcM", + _ZN9Inspector24RuntimeBackendDispatcher8evaluateElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("sANJySwSTFw", _ZN13MsvMetaEditor14getChunkOffsetEjPmb) +STUB("sAOwy+Puovw", unorm2_getNFDInstance_59) +STUB("sARExmkG0eg", _ZN3JSC8Debugger15setSteppingModeENS0_12SteppingModeE) +STUB( + "sAWtRtcYd38", + _ZN7WebCore15SQLiteStatement21getColumnBlobAsVectorEiRN3WTF6VectorIcLm0ENS1_15CrashOnOverflowELm16EEE) +STUB("sAZqO2+5Qqo", sceRudpGetSizeReadable) +STUB("sAh7qypptsc", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEEdeEv) +STUB("sAkhueUiNOU", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEEptEv) +STUB("sAleh-BoxLA", sceNetSyncGet) +STUB( + "sArDTuA0-Z8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE6isBusyEv) +STUB("sArLidAWSVE", mono_aot_Sce_Cdlg_Platformjit_code_end) +STUB( + "sAsuefmJihE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE5beginEv) +STUB("sAvWxE0IN0g", ubidi_isOrderParagraphsLTR_67) +STUB("sAxbHhAWMXM", sceInvitationDialogOpenA) +STUB("sB-c6VjBmOs", sceMbusEventBusStatusChangeUnsubscribe) +STUB( + "sB10bK37lKQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "sB3D+eW3+w0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEC2EPS6_PNS2_10LibContextE) +STUB("sB3dPDza3bk", RemotePlayGetConnectUserId) +STUB("sB7ylbYL398", _ZN3sce7Toolkit2NP15AppSTLAllocatorIiE7destroyEPi) +STUB( + "sB9mOFUmKP0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("sBB2jzten6A", mono_aot_Sce_Vsh_Passcodeunbox_trampoline_addresses) +STUB("sBBuXmJ5Kjk", inet_addr) +STUB("sBCTjFk7Gi4", _ZTINSt8ios_base7failureE) +STUB("sBHhzqDUvkU", BgsStorageClose) +STUB( + "sBL7iv99r9s", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("sBRYY54nTLo", _ZNK7WebCore11MediaPlayer21mediaTimeForTimeValueERKN3WTF9MediaTimeE) +STUB( + "sBSWuteVwhg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEEcvbEv) +STUB("sBU5xuq8Kss", EVP_MD_CTX_new) +STUB( + "sBVzdImF4zo", + _ZN7WebCore22TextureMapperAnimationC1ERKN3WTF6StringERKNS_17KeyframeValueListERKNS_9FloatSizeERKNS_9AnimationEbNS1_13MonotonicTimeENS1_7SecondsENS0_14AnimationStateE) +STUB( + "sBX5vYXGesk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("sBXB61cK3pQ", _ZN3IPC15ArgumentEncoder6encodeEh) +STUB("sBYBAkdDGPY", _ZNK7WebCore16URLDecomposition8hostnameEv) +STUB( + "sBZraPRzeuU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEC1ERKS7_) +STUB( + "sBayXlOaubI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEEaSERKSA_) +STUB( + "sBeVbj3vJpU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEEC2Ev) +STUB("sBfT3Gm2ks4", _ZN7WebCore21JSTextTrackCueGeneric4infoEv) +STUB("sBkAqyF5Gns", sceVrTrackerCpuPopMarker) +STUB("sBrm-SSAP0E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEE5resetEPS6_) +STUB("sBuosLdocdQ", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_6NpUserEEC2ERKS4_) +STUB("sBxCIRS9NKs", _ZN9Inspector28DOMStorageFrontendDispatchernaEmPv) +STUB( + "sC11+Dl1d1Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEdeEv) +STUB("sC1zGDM6E8U", WKPreferencesGetPluginsEnabled) +STUB( + "sC7pWx5yVIw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEE11release_refEv) +STUB("sCIKCGXjHK8", _ZN4Manx10FontStream4readEPvjS1_) +STUB("sCJd99Phct0", scePthreadSetcanceltype) +STUB("sCLt7bapxUA", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112UpdateStatusEEmmEi) +STUB( + "sCO0tqjB0B8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEppEv) +STUB("sCQ6eAA8QV4", _ZN7WebCore11MathMLNames13munderoverTagE) +STUB("sCR2UEuBDaE", mono_aot_Sce_PlayStation_Imeunbox_trampolines) +STUB("sCTND5arqN0", _ZN3sce7Toolkit2NP2V29Messaging7Request17LocalizedMetadataC2Ev) +STUB( + "sCXywP3LZ8Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEEaSERKS9_) +STUB( + "sCgF5uMB-FI", + _ZNK7WebCore9FrameView35convertFromRendererToContainingViewEPKNS_13RenderElementERKNS_7IntRectE) +STUB( + "sCnkOGMZjH8", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId10initializeEPNS1_6Common10LibContextEPKc) +STUB( + "sD1-VLMVqiQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEE11release_refEv) +STUB("sD6DlU9wkwc", _ZN7WebCore9FontCache21purgeInactiveFontDataEj) +STUB( + "sD9TzYmp-VU", + _ZN7WebCore17PageConsoleClient10addMessageEOSt10unique_ptrIN9Inspector14ConsoleMessageESt14default_deleteIS3_EE) +STUB("sDCBrmc61XU", sceSaveDataPrepare) +STUB( + "sDCMC+3Ef7Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEE7get_refEv) +STUB("sDEcg2NhaQ4", _ZN3sce2Np9CppWebApi14SessionManager2V12ToC1EPNS1_6Common10LibContextE) +STUB( + "sDFtGrxZfGY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEC2EPKS8_) +STUB("sDOFamOKWBI", _Atomic_compare_exchange_weak_2) +STUB( + "sDQO4LVSnEw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEptEv) +STUB("sDR4ftb+15A", _ZN3sce7Toolkit2NP2V26Trophy7Request18RegisterTrophyPackD2Ev) +STUB("sDUV9VsqJD8", CERT_checkCertificateIssuerSerialNumber) +STUB("sDVeJCWbfBY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEaSERKS7_) +STUB("sDW6WO4WMd4", _ZN7WebCore16ISOSchemeTypeBoxC1ERKS0_) +STUB( + "sDZZF3CjwMI", + _ZN3sce2Np9CppWebApi14SessionManager2V150PutPlayerSessionsSessionIdLeaderRequestBodyFactory7destroyEPNS3_43PutPlayerSessionsSessionIdLeaderRequestBodyE) +STUB("sDbgvVgZ2DQ", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_19GetGameDataResponseEED1Ev) +STUB("sDdLBPGX63M", _ZN3sce7Toolkit2NP2V210Tournament14RegisteredUserD2Ev) +STUB( + "sDnxtpHECSc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEplEm) +STUB("sDotUt1uEhA", scePigletAllocateVideoMemoryEx) +STUB("sDqpKnwnAJQ", sceNpPush2Init) +STUB("sDuWnr1d9ko", _ZN3WTF20ConcurrentPtrHashSet5clearEv) +STUB("sDueCW2ou2o", _ZN3sce2Np9CppWebApi7Matches2V119AdditionalStatistic8fromJsonERKNS_4Json5ValueE) +STUB("sDuhHGNhHvE", sceFontGetKerning) +STUB( + "sDw6m8rQLYw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEppEv) +STUB( + "sDwNwHaxRD0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEaSERS7_) +STUB( + "sDyS3AlcuTQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEEaSERSA_) +STUB( + "sE+k5Z8XXuo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEptEv) +STUB( + "sE+t4QVrkX0", + _ZN7WebCore26MessagePortChannelRegistry24didEntangleLocalToRemoteERKNS_21MessagePortIdentifierES3_N3WTF16ObjectIdentifierINS_21ProcessIdentifierTypeEEE) +STUB( + "sE-qJQhj7UE", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124ConnectionQualityFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_17ConnectionQualityEEE) +STUB( + "sE3dWCkHXk8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEC1Ev) +STUB( + "sE5aAPZTvKg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("sE60+THBdnE", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119SubtaskAvailabilityEEppEv) +STUB( + "sE6BRycRd68", + _ZN7WebCore11JSDOMWindow14deletePropertyEPN3JSC6JSCellEPNS1_14JSGlobalObjectENS1_12PropertyNameERNS1_18DeletePropertySlotE) +STUB("sECngYnr1kU", _ZN3sce2Np9CppWebApi7Matches2V120RequestPlayerResults11setPlayerIdEPKc) +STUB("sEKpfqARKPI", utext_setup) +STUB("sEML7N3KjvU", + _ZN3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallbackC2Ev) +STUB( + "sENPCC++BmI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEEaSERKSA_) +STUB( + "sERYKIp-pBw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("sETNbyWsEHs", _Unwind_GetIP) +STUB( + "sEZB+PxMG5g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEC1EPKS8_) +STUB("sEZaB9KQ10k", sceNpManagerIntLoginGetAuthenticateResponse) +STUB("sEaygI2j4GI", _ZN7WebCore16DOMGuardedObject5clearEv) +STUB("sEbjBLLEVk0", ubidi_getLogicalIndex_67) +STUB( + "sEbl41zgwTw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEC1ERKS7_) +STUB("sEca1nUOueA", _ZTVSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE) +STUB("sEdWzeyWzU0", + _ZN3sce3Xml3Dom8Document15addElementChildENS1_6NodeIdEPKNS0_6StringEPKNS0_13AttributeListES6_) +STUB("sEeHt7xxn54", _ZN3sce7Toolkit2NP2V210Tournament15RegisteredTeamsD2Ev) +STUB("sEgWSAmTMvc", _ZN7WebCore19JSAnimationTimelineC2ERKS0_) +STUB( + "sEgjjnU7NjA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEplEm) +STUB( + "sEmmzHjsyN8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEC1ERS7_) +STUB("sEvU-zoQtwo", _ZN3sce7Toolkit2NP2V210Tournament12GenericEvent8deepCopyERKS4_) +STUB( + "sEvd1G2jjKU", + _ZN3JSC8JSObject23getGenericPropertyNamesEPS0_PNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB( + "sF+muICSFkU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE8copyFromERKS9_) +STUB( + "sF-q8P2uN40", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("sFBYIeXLlqk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEC2ERKS7_) +STUB( + "sFC4bs0sv3o", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot15unsetaccountIdsEv) +STUB( + "sFCzy2SWjts", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEplEm) +STUB("sFDXBmJvlSQ", _ZN7WebCore4Page15setHeaderHeightEi) +STUB("sFDmBXjzJKs", _ZN15AbstractStorage13YoutubeFolder6RemoveEb) +STUB( + "sFDugUjlzOE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "sFGaQpsGDc4", + _ZN9Inspector28DOMDebuggerBackendDispatcher6createERNS_17BackendDispatcherEPNS_35DOMDebuggerBackendDispatcherHandlerE) +STUB("sFMMti8RuvA", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE3endEv) +STUB("sFN0uAZmk04", _ZN15AbstractStorage14StorageManager15ReleaseInstanceEv) +STUB( + "sFWLjFzF4wM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB("sFaZ+uKk2Bs", jpeg_abort_compress) +STUB( + "sFbAyX3C4L8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEEC2EPS8_PNS2_10LibContextE) +STUB("sFd-YS2a808", _ZNK7WebCore9InlineBox10lineHeightEv) +STUB("sFf4gVVBJ-k", mono_method_get_last_managed) +STUB("sFj9Q+77gHg", ucal_roll_67) +STUB("sFjcaILv9NQ", _ZN7WebCore20HTMLTableCellElement21setRowSpanForBindingsEj) +STUB("sFkNd11FFAQ", _ZN3sce7Toolkit2NP2V28Matching12Notification11RefreshRoomC1Ev) +STUB("sFtninKXq8g", + _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody20setCenterToEdgeLimitERKi) +STUB("sFx2y4rXSUI", __asan_report_exp_store1) +STUB( + "sFyf-UQZ-aE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEC1EPKS8_) +STUB("sFyjs51eee4", _ZN3sce7Toolkit2NP2V210Tournament22TeamVsTeamMatchDetailsC1ERKS4_) +STUB("sG16FCVow8E", + _ZN7WebCore18ImageBufferBackendC2ERKNS_9FloatSizeERKNS_7IntSizeEfNS_10ColorSpaceE) +STUB("sG6E6DyW-sE", mono_aot_Sce_PlayStation_BclExtensionsplt) +STUB( + "sG6yGzDsCzs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE5beginEv) +STUB("sGDGC-IkPso", mono_aot_System_Xml_Serializationunwind_info) +STUB( + "sGGXtlPmSDo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEE3getEv) +STUB( + "sGJzxO9xzDQ", + _ZN7WebCore22EmptyFrameLoaderClient12createPluginERKNS_7IntSizeERNS_17HTMLPlugInElementERKN3WTF3URLERKNS6_6VectorINS6_6StringELm0ENS6_15CrashOnOverflowELm16ENS6_10FastMallocEEESG_RKSB_b) +STUB( + "sGM3Yn5xx3s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE7reserveEi) +STUB("sGMdV+y-sI8", sceSaveDataManualUpload) +STUB("sGQ4E5E0gQM", monoeg_g_strfreev) +STUB("sGQ9+cKSeZ0", mono_debugger_insert_breakpoint) +STUB("sGSwMuEpFB8", mono_shared_hashtable_insert_replace) +STUB( + "sGXuruF81ic", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEC1EPNS2_10LibContextE) +STUB( + "sGZF1AmFQfQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEppEi) +STUB("sGZVzPhOGyc", _ZN7WebCore16HTMLImageElement5widthEb) +STUB("sGhCzaJf+jQ", _ZThn8_N3sce2np9HttpTransD0Ev) +STUB("sGhgHFXrqHc", mono_class_from_typeref) +STUB("sGkbVZBtW9g", _ZN3sce7Toolkit2NP2V212ActivityFeed6ActionC1Ev) +STUB( + "sGnKmyIsLV4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEC2EPS7_PFvS9_EPNS2_10LibContextE) +STUB( + "sGpTmx78YW8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEppEi) +STUB("sGvy8+6WUVc", monoeg_g_get_charset) +STUB( + "sGx9VZvuwz0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEC2EPS8_) +STUB("sH23RdP9ngQ", sceIduUtilResumeAllDownloads) +STUB("sH97Xl4NkSs", WKPreferencesSetUseGiantTiles) +STUB("sHD3IYrTikk", g_queue_new) +STUB("sHE-Q-kf2Ds", _ZN9Inspector21createScriptCallStackEPN3JSC14JSGlobalObjectEm) +STUB("sHFtASIGevU", + _ZN7WebCore24CoordinatedGraphicsLayer41syncPendingStateChangesIncludingSubLayersEv) +STUB("sHIZ2KSx1C4", _ZN9Inspector33AnimationBackendDispatcherHandlerD0Ev) +STUB("sHJ2PvfxFZg", WKPreferencesGetMediaPlaybackRequiresUserGesture) +STUB( + "sHKk4YURpRU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEdeEv) +STUB( + "sHOb75HYe8E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("sHRmbEWM4rM", _ZN15AbstractStorage12LocalStorage13GetRootFolderEPSt10shared_ptrINS_6FolderEE) +STUB( + "sHSYOLaQhX4", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "sHTVXESgs40", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE5eraseENS2_8IteratorIS6_EERS9_) +STUB( + "sHagUsvHBnk", + _ZZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_bRSt8ios_basecRKSsE4_Src) +STUB( + "sHbABjRnpQw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEEaSERKSA_) +STUB( + "sHccu2ZdQFc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE21intrusive_ptr_add_refEPS9_) +STUB("sHd+Oo1+vGI", sceM4aacEncCreateEncoderEx) +STUB("sHnaF6S19xA", _ZN7WebCore25DropShadowFilterOperationC1ERKNS_8IntPointEiRKNS_5ColorE) +STUB("sHnpJtSIfyY", sceVideoCoreSetAudioVolume) +STUB("sHp-phKVCeo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEED1Ev) +STUB( + "sHwE1Apbkc8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEEC2ERKS9_) +STUB("sHwcgaO9wYc", __ubsan_handle_dynamic_type_cache_miss) +STUB("sHwze4QZwx0", _ZN7WebCore8SVGNames5dAttrE) +STUB( + "sHydxqXaEeA", + _ZN3sce2Np9CppWebApi14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBody14setCustomData1EPKvm) +STUB("sHziAegVp74", sigaltstack) +STUB("sI9zmxu0y6c", ucol_equals_67) +STUB( + "sIAc2zqb0P8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE10setContextEPNS2_10LibContextE) +STUB( + "sICNnPpd6Gk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEppEi) +STUB("sIFx734+xys", sceNpWebApiCreateServicePushEventFilter) +STUB( + "sIKLx4-06Gs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEcvbEv) +STUB("sIQ2j-9PjgU", _ZN3WTF13MetaAllocator17freeFreeSpaceNodeEPNS0_13FreeSpaceNodeE) +STUB("sIRARF-nT28", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V124RequestCooperativeResultEEC2Ev) +STUB("sIRliTXfBkw", + _ZN3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResults20getTeamMemberResultsEv) +STUB( + "sIUkv9LFSv4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("sIh8GwcevaQ", sceVrTrackerRegisterDevice) +STUB( + "sIj6KzDJnQU", + _ZN3sce2Np9CppWebApi7Matches2V129GetMatchDetailResponseFactory7destroyEPNS3_22GetMatchDetailResponseE) +STUB("sIlRvQqsN2Y", pthread_rwlock_wrlock) +STUB("sIptIZ6s6PA", _ZN3sce7Toolkit2NP2V27Session17SessionInfoUpdate17MAX_LOCALIZATIONSE) +STUB("sIqSQo+M2dU", uspoof_serialize_67) +STUB("sIvK5xl5pzw", _ZTISt5_IosbIiE) +STUB("sIvMhKPPhK0", _ZNK3WTF10StringView8endsWithEDs) +STUB( + "sIx7kL-SBeM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE3endEv) +STUB("sJ2pYN9sWO0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEEC1Ev) +STUB( + "sJ7AlHIIu08", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEdeEv) +STUB("sJ7v8HSsn-E", scePerfPmcNbSelectEvent) +STUB("sJ87pPDuCKs", _ZN7WebCore12ChromeClient24didInsertMenuItemElementERNS_19HTMLMenuItemElementE) +STUB( + "sJCbSWlIJsI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEC2EPNS2_10LibContextE) +STUB("sJD4BrPh7pA", sceRnpsAppMgrSetEventFlagForClients) +STUB( + "sJGg6MrZVuM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEppEv) +STUB("sJIve7S2o-0", _ZN9Inspector26DatabaseFrontendDispatchernaEm) +STUB("sJJV-WZZxcg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12RangeOfRanksEEC1Ev) +STUB("sJKms7e6oqo", WKErrorCopySslVerificationResultString) +STUB("sJKs4SnHxXk", _ZN3WTF14FileSystemImpl8seekFileEixNS0_14FileSeekOriginE) +STUB("sJR-x5mI1i8", _ZN7WebCore16ResourceResponseD1Ev) +STUB("sJSDnJRJHhI", sceNpTrophySystemGetProgress) +STUB( + "sJT9wB14X18", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE21intrusive_ptr_add_refEPS7_) +STUB("sJUCpXFEH1s", uregex_replaceFirst_67) +STUB("sJUU2ZW-yxU", _ZTINSt6locale5facetE) +STUB("sJVPrwAjvos", _ZNK7WebCore6Quirks50shouldIgnoreAriaForFastPathContentObservationCheckEv) +STUB( + "sJWuZFu2c4k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEED2Ev) +STUB("sJXQ9YzIJiU", sceCesMbcsUcsSetMbcsReplacementCharUCode) +STUB("sJXyWHjP-F8", sceAmprCommandBufferWriteAddressOnCompletion) +STUB("sJYcP569Utk", _ZN9Inspector15ScriptCallFrameD2Ev) +STUB("sJb-AsJQS5A", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V19RatingApi21ParameterToPostRatingC2Ev) +STUB("sJbzLdIr3Ks", sceVideoStreamingEngineMediaKeySessionLoad) +STUB("sJfD4gfgHiM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEEC2Ev) +STUB( + "sJfIIysLhqk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEE11get_deleterEv) +STUB( + "sJjXtJdZG1Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE8copyFromERKS9_) +STUB("sJmYKWu+TbY", _ZN7WebCore21convertToIntegerClampIhEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB("sJmwAgLsH6o", _ZN7WebCore17FrameLoaderClientdlEPv) +STUB("sJptZwvs1is", sceGameCustomDataDialogGetResult) +STUB("sJrF-d2uL0Y", sceKernelWriteMultiMapCommand) +STUB("sJrQ1OIhBYw", _ZN7WebCore8Settings31setICECandidateFilteringEnabledEb) +STUB( + "sJrviTxKGYY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEixEm) +STUB( + "sJsmF9BqXUo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE5beginEv) +STUB( + "sJvQfdP-JMo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEEaSERSA_) +STUB( + "sK+3loZPQoA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEaSERKS7_) +STUB("sK0VMImfJ+c", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats20unsetNatConnectivityEv) +STUB( + "sK6emNvEZAc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEC2Ev) +STUB("sK7rb1+0III", _ZN7WebCore16HTMLMediaElement15enterFullscreenEv) +STUB("sK8u6H-As9E", WKPreferencesSetResourceTimingEnabled) +STUB("sKAQuhAC9q4", GCC_except_table75) +STUB( + "sKBopvEKaYQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("sKCRcHKGXQU", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEEC1Ev) +STUB( + "sKDGMK38G-Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEppEv) +STUB("sKGFFY59ksY", sceNpTrophySystemCheckRecoveryRequired) +STUB("sKLOdgu+I7c", scePlayReadyApiIsStarted) +STUB("sKO-tFF-e2w", _ZThn96_N7WebCore14XMLHttpRequestD0Ev) +STUB( + "sKS0aZvK73M", + _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities17getnpServiceLabelEv) +STUB("sKTmdCpk-50", u_getIntPropertyMap_67) +STUB("sKWdKL366lc", _ZN3sce7Toolkit2NP2V211SharedMedia6VideosD1Ev) +STUB( + "sKXs4MUFCtU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEplEm) +STUB("sKg+Bx+VSoM", _ZN7WebCore23CoordinatedBackingStore6createEv) +STUB("sKg9twdTL7s", _ZN7WebCore9HTMLNames9clearAttrE) +STUB( + "sKjf4a4TD9o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEC2EPNS2_10LibContextE) +STUB( + "sKka2juerPk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEC2EPS8_) +STUB("sKneJjUXWkQ", FT_Outline_GetOutsideBorder) +STUB("sKpRuwjaR-w", delegate_virtual_invoke_imt_m_3) +STUB("sKsewiHYZ0A", mono_aot_System_ServiceModel_Internalsjit_code_start) +STUB("sKsup0uBn2U", sceMusicCoreServerLaunchSpCore) +STUB("sL1oNQHcDN0", _ZNK3sce3Xml3Dom4Node11getNodeTypeEv) +STUB( + "sL3J4VDTwb8", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersD1Ev) +STUB( + "sLJKOIi1HKM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEED2Ev) +STUB( + "sLPWVtaSAuI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEC2EPKS8_) +STUB( + "sLR-tRvUdI8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEneERKS9_) +STUB( + "sLT636ECOlk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEEC2ERSA_) +STUB("sLTFA0Bgofc", _ZN7WebCore11BitmapImageC1EPNS_13ImageObserverE) +STUB( + "sLWiidMO4y8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEaSERKS7_) +STUB("sLeKDfZ9euI", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_33ActivityFeedSharedScreenshotStoryEE7destroyEPS3_) +STUB( + "sLf-mlZft-Q", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOffer30unsetxPsnAcceptPlatformNamePs5Ev) +STUB("sLfbMNvBhWM", _ZN12video_parser7cVpUtil22vp_ff4_fread_by_threadEPvS1_mPm) +STUB("sLfxYROuNZU", sceDeci5Open) +STUB("sLg6rUpiYSM", _ZN15AbstractStorage6FolderD2Ev) +STUB( + "sLsgea61aA0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEE11get_deleterEv) +STUB("sLubakV5c9k", delegate_virtual_invoke_imt_19_p) +STUB("sLyA+kBuo4I", __tsan_mutex_post_unlock) +STUB("sM-QYa6m8yo", Java_java_lang_Compiler_registerNatives) +STUB("sM3Mg-AAklQ", ptohdw) +STUB( + "sMDMWJQdBok", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("sMNhRrZzpEg", _ZNK3sce2Np9CppWebApi7Matches2V15Error16referenceIdIsSetEv) +STUB("sMPxv9l0JdI", _ZN3sce7Toolkit2NP2V212EventsClient5Event16MAX_SIZE_IMG_URLE) +STUB("sMSsHlwlg74", sceFsExtUSBSchedDestroy) +STUB( + "sMTkXrRIGRY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEED2Ev) +STUB("sMW2cWXt-yk", sceMbusDebugSetControllerFocusByAppId) +STUB( + "sMXbvgG6k7g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE21intrusive_ptr_sub_refEPS9_) +STUB("sMguT4RpX7g", ulocimp_getScript_67) +STUB("sMko2YZqDNQ", sceLibcBacktraceGetBufferSize) +STUB( + "sMmZIQq6gbQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEcvbEv) +STUB( + "sMnNu3RIyPQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE7popBackEv) +STUB( + "sMnTQ7ikLSc", + _ZN7WebCore24CoordinatedGraphicsLayer11setChildrenEON3WTF6VectorINS1_3RefINS_13GraphicsLayerENS1_13DumbPtrTraitsIS4_EEEELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("sMp-nZwlMn4", _ZNK3sce7Toolkit2NP9Utilities6FutureI19SceNpTrophyGameDataE3getEv) +STUB("sMrCm3RCnj0", __cxx_global_var_init .3) +STUB("sMuHESqmB2I", _GLOBAL__sub_I_locale0.cpp) +STUB( + "sMxQaIk5ZQU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEeqERKS9_) +STUB("sN-LluSZTCQ", _ZN7WebCore21MediaRecorderProviderD2Ev) +STUB("sN0yJ8MrDBY", _ZN7WebCore6RegionaSERKS0_) +STUB("sN6Hwe9p7zU", _ZTVN3WTF15AutomaticThreadE) +STUB("sNB-wBpi-uM", _ZN7WebCore17HTMLSelectElement7optionsEv) +STUB("sNEbgt8b2z4", WKSizeGetValue) +STUB("sNHr6sLUsRE", sceKernelXexitSblock) +STUB("sNOOoclzYwY", + Java_sun_awt_image_GnmImageDecoder_readImage__ILjava_lang_String_2Ljava_awt_Image_2) +STUB("sNT-LAYpcUw", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus24unsetLastUpdatedDateTimeEv) +STUB("sNbxxwNdlHY", sceNpTrophySystemWrapRemoveUserData) +STUB("sNfZ1l+SLDA", _ZTv0_n24_N13MsvMetaEditorD1Ev) +STUB( + "sNgjJZW2A7M", + _ZN7WebCore14JSWebAnimationC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_12WebAnimationENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "sNhm-5mQJXs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE4sizeEv) +STUB( + "sNnL2W3FAnM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEEC1Ev) +STUB( + "sNq9H9Wcg+c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEC1EPKS8_) +STUB("sNqGp2I-m+c", _ZN7WebCore24MatrixTransformOperationD1Ev) +STUB("sNqZ3+Md+mU", _ZN12video_parser5vpcom10_WaitAsyncEPNS_8_vp_fileE) +STUB("sNsnvyObgWI", _ZN7WebCore11MediaPlayer17readyStateChangedEv) +STUB( + "sNtHPUTzajE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEE11get_deleterEv) +STUB("sNwbKcFbWSY", delegate_virtual_invoke_13) +STUB( + "sO4g3UZ4dYA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEED2Ev) +STUB( + "sOBqXoesg1A", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsC1EPNS1_6Common10LibContextE) +STUB("sOJS1xfmxrQ", g_list_delete_link) +STUB("sOOMlZoy1pg", wcsrtombs) +STUB( + "sOP+q1ABB1I", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi32ParameterToPostGameSessionsTouchaSERS5_) +STUB( + "sOP1zNsyMjg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEC1Ev) +STUB("sOPMXiEr0gg", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEEmmEi) +STUB("sOWackhwGso", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEE5resetEPS6_) +STUB("sOd1cuy1dGE", _ZN4Manx9X509chainC2EPKS0_) +STUB("sOeWNRwjulU", _ZN7WebCore9HTMLNames8openAttrE) +STUB("sOk-uorn-eA", _ZN3sce2Np9CppWebApi14ConnectAccount2V214PSNError_error7setCodeERKi) +STUB("sOmFDbGKe+I", sceVencCoreQueryPreset) +STUB("sOmU4vnx3s0", _ZN3sce4Json5ValueC1Ed) +STUB( + "sOxqFJQIFac", + _ZN3sce2Np9CppWebApi14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyD1Ev) +STUB("sOz2j1Lxl48", _ZTIPKx) +STUB("sP+J+8XGmJ8", _ZN13MsvMetaEditor18convertUTF8toUTF16EPKhPPtPmm) +STUB("sP4FleNgG68", g_GarlicHeapSize) +STUB("sP5VXKVP4fA", + _ZN7WebCore32ScrollingStateFrameScrollingNode26setMinLayoutViewportOriginERKNS_10FloatPointE) +STUB("sP5rfVNdvWM", res_getResource) +STUB("sPC7XE6hfFY", srandom) +STUB("sPECNs8xNqs", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetailD2Ev) +STUB("sPELpAWhcQQ", _ZN7WebCore15HTMLFormElement25elementsForNativeBindingsEv) +STUB("sPFYlDaJr+s", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils5IdMapEEC2Ev) +STUB( + "sPFsbqYfNsw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEneERKS9_) +STUB( + "sPL0McTJAgE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE8capacityEv) +STUB("sPOuZ9sYM+w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEaSERS7_) +STUB( + "sPPZxMtZ6uw", + _ZN3sce2Np9CppWebApi7Matches2V128ResponsePlayerResultsFactory6createEPNS1_6Common10LibContextEPKciPNS5_12IntrusivePtrINS3_21ResponsePlayerResultsEEE) +STUB("sPTHcIpRE5U", _ZN3JSC8Debugger9callEventEPNS_9CallFrameE) +STUB("sPU6b2LaPqg", __ubsan_handle_cfi_check_fail_abort) +STUB( + "sPZWle3jOIQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEE3getEv) +STUB("sPchLutSWIY", _ZN3JSC7Symbols31instantiateStreamingPrivateNameE) +STUB("sPcruQNhydA", _ZN7WebCore11DisplayList6RotateD2Ev) +STUB("sPhrQD31ClM", sceRazorCpuFlushOccurred) +STUB("sPjle5HfNtc", vzone_getPreviousTransition_67) +STUB("sPkdOxw1xMM", _ZN12Mp4Retriever8GetInt16EPh) +STUB("sPlY1lQ48pY", _ZN7WebCore11MemoryCache18pruneLiveResourcesEb) +STUB("sPm6TDzbt8k", _ZNK3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE4sizeEv) +STUB("sPpIzn0+nLk", rgctx_fetch_trampoline_rgctx_22_p) +STUB("sPti0OkVM8c", _ZN3sce2np6Thread7DestroyEv) +STUB("sPuK5ic3GD4", sceSystemServiceOpenChallengeActivity) +STUB("sPxTZD-Xqdk", xmlCreateMemoryParserCtxt) +STUB("sPy1tlA51l8", _ZN7WebCore25ArchiveResourceCollection21archiveResourceForURLERKNS_3URLE) +STUB("sPzuwX9QJoI", _ZN7CoreIPC15ArgumentDecoder21decodeFixedLengthDataEPhmj) +STUB("sQ0avkeBLo4", u_releaseDefaultConverter) +STUB( + "sQ7I-KmeaFc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEmmEi) +STUB( + "sQ8-J3XbQ9s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("sQKeaOlUKJE", _ZN3JSC18GCActivityCallback18tryCreateEdenTimerEPNS_4HeapE) +STUB("sQL6jQkE+Ow", atexit_mutex) +STUB("sQL8D-jio7U", _Fopen) +STUB( + "sQLg4cF4Re8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEE7get_refEv) +STUB("sQXidYHrbCU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEEC2Ev) +STUB("sQcvFCJYqD8", il2cpp_string_new) +STUB("sRDeKXVxWGA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEEC2ERS9_) +STUB( + "sREprMFaQQQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE8capacityEv) +STUB("sRIARmcXPHE", CERT_getCertificateExtensions) +STUB( + "sRLwk4iScZA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEED2Ev) +STUB( + "sRRZBOA0FX8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEptEv) +STUB("sRVb2Cf0GHg", sceNpTssCreateNpTitleCtx) +STUB("sRXiEgbhWdo", _ZN3sce7Toolkit2NP2V27Ranking7Request13GetUsersRanks8MAX_PCIDE) +STUB( + "sRaPZDJatvQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEED2Ev) +STUB("sRblWBmBbH8", _ZN7WebCore16FrameLoadRequestaSEOS0_) +STUB("sRct7PKHJgc", + _ZN3JSC12RegExpObject14deletePropertyEPNS_6JSCellEPNS_9ExecStateENS_12PropertyNameE) +STUB( + "sRfni-uvJtA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEC1EPS8_) +STUB( + "sRkaBMMleFI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEE11release_refEv) +STUB( + "sRn6qePT54Q", + _ZN3sce2Np9CppWebApi14SessionManager2V139RequestCreatePlayerSessionPlayerFactory6createEPNS1_6Common10LibContextEPKcS9_RKNS5_6VectorINS5_12IntrusivePtrINS3_24PlayerSessionPushContextEEEEEPNSB_INS3_32RequestCreatePlayerSessionPlayerEEE) +STUB("sRo9+ZfRpbg", _ZNK3sce2Np9CppWebApi6Common8IteratorIiEneERKS4_) +STUB( + "sRoFUJ8DzT8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEEC1ERKSA_) +STUB("sRqv1+4ki0s", _ZN3JSC2VM23asyncGeneratorSpaceSlowEv) +STUB("sRuiwiiCnQg", sceCesRefersUcsProfileBs4730) +STUB( + "sRwJvwndrhY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEE11get_deleterEv) +STUB( + "sRywAgMJEdY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEEdeEv) +STUB( + "sS0hiufj8PA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "sS1wZJevVpM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("sS5fF+fht2c", _ZNSt10moneypunctIcLb0EED0Ev) +STUB("sS78n6ASF8U", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEEneERKS7_) +STUB("sSAUCCU1dv4", sceAmprMeasureCommandSizeWriteKernelEventQueue_04_00) +STUB("sSD8SHia8Zc", SSL_getClientSessionInfo) +STUB( + "sSDJ8Zfjadc", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13boolean9IsSetEv) +STUB( + "sSKylfxokqE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE10setContextEPNS2_10LibContextE) +STUB( + "sSSN+uEnc0Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEC2EPNS2_10LibContextE) +STUB( + "sSUrb50Z2P0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "sSVbAQBjk60", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEE11release_refEv) +STUB( + "sSWQwgDNWOc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEE7get_refEv) +STUB("sSYpL+hDUFw", _ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody9getStatusEv) +STUB("sSb3te485KU", WKBundlePageSetAppCacheMaximumSize) +STUB("sSfferPYzLI", uprv_unmapFile_67) +STUB( + "sSj7b0l2z7U", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEdeEv) +STUB( + "sSjdXa806MI", + _ZNK3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead6toJsonERNS_4Json5ValueEb) +STUB( + "sSlsbOwD-MQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEEptEv) +STUB( + "sSo6jergzpU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEppEi) +STUB("sSr4mR33SaY", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData9terminateEv) +STUB( + "sSspvQhhGgw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "sSvbRvuoZd8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEC1EPS8_) +STUB("sT4nBQKUPqM", sceNetResolverStartNtoaMultipleRecordsEx) +STUB("sT6Q6VG-muM", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V110Reputation10getPerGameEv) +STUB( + "sTB89uirCE4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEppEi) +STUB( + "sTEnCZ5sWOY", + _ZN9Inspector23CanvasBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("sTFaycIFUKU", _ZN7WebCore11DisplayList20DrawTiledScaledImageD2Ev) +STUB("sTFqbfXJGG4", sceVrSetupDialogInitialize) +STUB("sTJ5WzgrEC0", _ZN3WTF13tryFastMallocEm) +STUB("sTPNcoCJKkI", mono_image_rva_map) +STUB("sTTKtmcsvyg", _ZN7WebCore19ResourceRequestBase25setDefaultTimeoutIntervalEd) +STUB( + "sTYzO+Xn1ho", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEEdeEv) +STUB("sTaUDDnGOpE", _ZNSt10moneypunctIwLb1EEC2Em) +STUB("sTcSmxjOhOU", _ZN12video_parser13cVideoMetaMP417getThumbnailImageEjjPh) +STUB( + "sTfQi6ilyxc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEEptEv) +STUB( + "sTj76C6wbME", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEED2Ev) +STUB("sTmBGgQPBIU", WKURLRequestGetTypeID) +STUB("sTnxJOJIdTs", _ZN3sce7Toolkit2NP2V27NpUtils5IdMapaSERKS4_) +STUB("sTqVHpVwnyE", sceSpNetPoolCreate) +STUB("sTtvF4QVhjg", sceNpManagerIntGetOnlineIdSdk) +STUB( + "sTy-gJqnYOs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("sU2St3agdjg", sceNgs2StreamCreate) +STUB("sUB4lq+oR4w", _ZN3JSC23AbstractSamplingCounter30s_abstractSamplingCounterChainE) +STUB("sUBw7Gx1fyE", atanhi) +STUB( + "sUJDiHmu4HE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEeqERKS9_) +STUB( + "sUK09gF4VNM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEED2Ev) +STUB("sUKIKIjKoUk", _ZN3sce2Np9CppWebApi6Common8IteratorImEppEi) +STUB( + "sUKiujKSkVo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("sUNAIsT+Bcc", _ZN3sce7Toolkit2NP2V28Commerce7Request27DisplayCategoryBrowseDialogC2Ev) +STUB("sUO777nQSTQ", inflateReset) +STUB("sUP1hBaouOw", _Getpctype) +STUB("sUXGfNMalIo", sceNpTrophy2RegisterUnlockCallback) +STUB( + "sUbFH8X3sEc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "sUcBcpmh8Eo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEC1EPS8_) +STUB( + "sUg-XnKqwkw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEED1Ev) +STUB( + "sUgRpTd44mU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("sUhJWmXNXog", _ZN3sce3pss5orbis5video14VideoPlayerVcs17UpdatePlayerStateEv) +STUB("sUpnddNKE3A", _ZN9Inspector18InspectorHeapAgent18willGarbageCollectEv) +STUB( + "sUwK0fwuP-U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEEaSERKS9_) +STUB("sUzSOBtTR0o", sceDeci4hDrfpOpen_fuse) +STUB( + "sV+l8SEZl1Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEED2Ev) +STUB("sV2tK+yOhBU", sceRtcSetCurrentAdNetworkTick) +STUB("sV6ry-Fd-TM", __atomic_store) +STUB("sV7xqY5CZjU", ucol_setVariableTop_67) +STUB("sV87Gv51KWM", _ZN3JSC7JSArray9setLengthEPNS_9ExecStateEjb) +STUB( + "sV9GuCS8fh0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEC1EPNS2_10LibContextE) +STUB( + "sVAjtdZ-42U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE8copyFromERKS9_) +STUB("sVGtoUBVB7E", sceApplicationGetCoredumpDirPath) +STUB("sVN0cBKC-4s", sceContentExportValidateContents) +STUB( + "sVNSRvEIAoU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("sVUkO0TTpM8", _ZTIPKi) +STUB("sVWxmu5kgrg", __tsan_atomic64_compare_exchange_strong) +STUB( + "sVXipnRMd5U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEE7get_refEv) +STUB("sVamW-aioY8", _ZN7WebCore24CoordinatedGraphicsLayer19didChangeLayerStateEv) +STUB( + "sVdRXw9aw90", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEEC2EPS8_PNS2_10LibContextE) +STUB( + "sVjJdXO-TkU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("sVjRiKaZf0M", _ZN3sce2Np9CppWebApi14ConnectAccount2V28PSNError8fromJsonERKNS_4Json5ValueE) +STUB("sVlXf6SaZXw", _ZN3JSC7Symbols27ensureRegisteredPrivateNameE) +STUB("sVm5pjPVBMQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEmmEv) +STUB("sVqWVifA7to", jio_printf) +STUB("sVxqnXkAYXs", _ZN7WebCore8DOMTimerD2Ev) +STUB("sVz0nv5+nec", res_getArrayItem_67) +STUB( + "sW+R9Ux+MFU", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations34getxPSNSESSIONMANAGERINVITATIONIDSEv) +STUB("sW2qdiJjx+w", _ZN3NTF17URLRequestMessageD0Ev) +STUB( + "sW3KxMp513Q", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_18GameCustomDataItemENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB("sW3km27c12M", sceVoiceChatRequestCreatePlayerSessionVoiceChatChannel) +STUB("sW4-ui2TU20", _ZN3sce7Toolkit2NP2V210Tournament4TeamC2ERKS4_) +STUB( + "sW40lUAOMgY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEEcvbEv) +STUB( + "sW546+9hMq4", + _ZN7WebCore10JSLocation3putEPN3JSC6JSCellEPNS1_14JSGlobalObjectENS1_12PropertyNameENS1_7JSValueERNS1_15PutPropertySlotE) +STUB("sW6h+-un80k", _ZNK3sce2Np9CppWebApi14SessionManager2V118LeaderWithOnlineId12getAccountIdEv) +STUB( + "sW7i8gs5Img", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE6resizeEj) +STUB("sW8v+7HYQkc", mono_aot_Sce_PlayStation_BclExtensionsunbox_trampolines) +STUB("sWFCAvUcuVU", _ZN3sce7Toolkit2NP2V212ActivityFeed4FeedD2Ev) +STUB( + "sWFieijcCNs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEC2EPS6_PNS2_10LibContextE) +STUB("sWGGR-emFt0", _ZNK7WebCore18TextureMapperLayer7opacityEv) +STUB("sWQiqKvYTVA", sceHttpAbortWaitRequest) +STUB( + "sWVVteHocts", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE5eraseENS2_13ConstIteratorIS9_EERSC_) +STUB( + "sWVyC97FeOw", + _ZN3sce2Np9CppWebApi14SessionManager2V128PostGameSessionsResponseBodyC1EPNS1_6Common10LibContextE) +STUB( + "sWWorj9U6i8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEE11release_refEv) +STUB( + "sWYQiNwj27M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEE3getEv) +STUB("sWbST0oQKsc", sceAmprCommandBufferSetMarkerWithColor) +STUB( + "sWdftQqQh9M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "sWgRK8X5dZM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEC2Ev) +STUB("sWkjalo6to4", _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V314MissingElementD2Ev) +STUB( + "sWramXU-1CM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEE11get_deleterEv) +STUB( + "sWum+klUxIs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEplEm) +STUB("sWz2lW5k5n0", _ZN3sce2Np9CppWebApi14SessionManager2V134PostGameSessionsSearchResponseBodyD1Ev) +STUB("sWzsc5TftTo", _ZN7WebCore18staticCSSValuePoolE) +STUB("sX3o6Zmihw0", + _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewd) +STUB("sX5tVQk5TQk", ucnv_getInvalidUChars_67) +STUB("sX6BQ1Cxw6A", __exp__D) +STUB("sXJagndrPWo", _ZN3WTF10StringImpl28convertToUppercaseWithLocaleERKNS_12AtomicStringE) +STUB( + "sXKqkOVSzJQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEaSERS7_) +STUB("sXOUVXT4nDE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEcvbEv) +STUB("sXVQUIGmk2U", sceNpGetPlatformType) +STUB( + "sXVW97AxYGI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE5beginEv) +STUB("sXaxl1QGorg", _ZNSt15basic_streambufIcSt11char_traitsIcEE6xsputnEPKci) +STUB("sXfFudQgKlA", _ZN7WebCore14DocumentWriter11setEncodingERKN3WTF6StringEb) +STUB("sXfJDBYoCFE", _ZN3sce2Np9CppWebApi13InGameCatalog2V525ContentInteractiveElement7setNameEPKc) +STUB("sXn8uN-ijvw", NpWebTerminate) +STUB("sXqZHVhnkU0", _ZN12Mp4Retriever14processMetaStrEv) +STUB( + "sXrd0hR6i+Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "sXuTeINQ-LE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC2ERKSB_) +STUB("sY+Gszr8EhE", uprv_decNumberNextToward_67) +STUB( + "sY-AtE4ddQc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEC1Ev) +STUB( + "sY5T9psn9Uk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("sY8beqtqGv0", sceMusicPlayerServiceInitialize3) +STUB("sYBNLrMxjAM", sceVrTracker2GetControllerImage) +STUB("sYSAnPx-tj0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament16RegisteredRosterEE3setEv) +STUB("sYSfAewkXkU", sceUpsrvUpdateDoUpdateSystemEx) +STUB( + "sYTM1BgKvik", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("sYVdB5+RE74", __asan_stack_malloc_always_8) +STUB("sYa4bmPc27k", _ZNK3WTF12AtomicString23convertToASCIILowercaseEv) +STUB("sYbHBtk-bMs", JVM_RegisterMethodHandleMethods) +STUB( + "sYhItu7Pte4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEEcvbEv) +STUB("sYj1Nwq78yQ", _ZNK7WebCore16HTMLImageElement11cachedImageEv) +STUB( + "sYnCTWA8M70", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEppEi) +STUB("sYp7HHmGz1U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEED2Ev) +STUB( + "sYqkcpnTeT0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEEaSERKSA_) +STUB( + "sYrZLOwccTs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE4sizeEv) +STUB("sYvqaums-rk", _ZN7WebCore9HTMLNames11declareAttrE) +STUB("sYyou0hGbP8", _ZN15AbstractStorage14YoutubeServiceC2Ev) +STUB("sYz-SxY8H6M", _Locsum) +STUB( + "sZ1mwg6zAy8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEdeEv) +STUB("sZ8FuTrbhUc", _ZN3sce7Toolkit2NP2V24Core15StringifyResultC1Ev) +STUB("sZ93QMbGRJY", gammaf) +STUB("sZIoMRGO+jk", _ZN3sce4Json5ValueC1ERKNS0_6StringE) +STUB("sZLrjx-yEx4", wcstombs_s) +STUB("sZO0+H5iTbc", coil_create_semaphore) +STUB("sZQD0EyW3AQ", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession16unsetCustomData2Ev) +STUB( + "sZWxrmyqycs", + _ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionNonPsnPlayerC1EPNS1_6Common10LibContextE) +STUB("sZYNm-cAb1E", WKPageGroupGetPreferences) +STUB("sZa0DHXu5DM", _ZN4Manx14NetworkProfile11netCtlCheckEv) +STUB( + "sZcAdwfNX+A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEED1Ev) +STUB("sZdEKjVwJfQ", _ZN3sce7Toolkit2NP21TusSetVarsInputParamsC1Ev) +STUB( + "sZfISrEaVVw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEC1EPS8_) +STUB( + "sZgXR44ZqMo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEE7get_refEv) +STUB("sZmUzrbtoz8", RSA_padding_add_PKCS1_PSS) +STUB( + "sZnakVph2RU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("sZqK7D-U8W8", sceFontGraphicsProcessRenderSequence) +STUB("sZuwaDPATKs", getdtablesize) +STUB( + "sZzP7POJL9o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEEdeEv) +STUB("sZzliEQrICM", FT_Get_Name_Index) +STUB("sa1LKJP-ePw", _ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_errorD2Ev) +STUB("sa379tyrupc", _ZN3sce7Toolkit2NP2V210Tournament22TeamVsTeamMatchDetailsC1Ev) +STUB("sa9t1NLDwME", sceDeci4hDrfpTruncate_fuse) +STUB( + "saD6eQwwD80", + _ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionPlayerFactory6createEPNS1_6Common10LibContextERKmRK13SceNpOnlineIdPKcSE_PNS5_12IntrusivePtrINS3_19PlayerSessionPlayerEEE) +STUB("saGH8j4QSPI", _ZN7WebCore8Document7scriptsEv) +STUB("saK0rH25IW4", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfoD2Ev) +STUB("saNCRNfjeeg", __fixdfsi) +STUB("saQ8kwN8vrE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEE11get_deleterEv) +STUB("saSUnPWLq9E", _ZSt16_Xoverflow_errorPKc) +STUB( + "saUTN-7B9rQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "saUqTqc3pR4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEmmEv) +STUB("saVFKrdYV8I", _ZN7WebCore9HTMLNames15ondragstartAttrE) +STUB( + "saVSkdOk+vM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEixEm) +STUB("saYB0b2ZWtI", sceNetCtlClearEventForNpToolkit) +STUB("sacQFSsnugw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEC2ERKS7_) +STUB( + "sanPjfcIoeM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEppEv) +STUB("sap+QiqYRhA", _ZN7WebCore12HTMLDocument6heightEv) +STUB( + "sarh1zyddwc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEE11get_deleterEv) +STUB("sauGBcaBNVk", ubidi_getText_67) +STUB("sb+9wZKIx1s", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredUsersEE19setCustomReturnCodeEi) +STUB( + "sb2OfzpZelE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEE5resetEPS9_) +STUB("sb2vivqtLS0", _ZNKSt24_Iostream_error_category4nameEv) +STUB( + "sb9I70UrG7Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEE5resetEPS6_) +STUB("sbCus2-wUQ8", _ZN3WTF6String6numberEl) +STUB( + "sbEBofduTjo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEppEv) +STUB("sbMQcXYiRY4", + _ZN7WebCore25WebSocketChannelInspector18didCreateWebSocketEPNS_8DocumentERKN3WTF3URLE) +STUB("sbPqKt-e0bk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody9setOffsetERKi) +STUB("sbSYZLR5AiE", sceNpUniversalDataSystemEventPropertyArraySetFloat64) +STUB("sbTemob+-Zw", _ZNK7WebCore18PlatformTimeRanges5startEjRb) +STUB( + "sbXXIA7Khw4", + _ZN7WebCore11JSImageData6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_9ImageDataENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "sbanZDBJO98", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEC2EPNS2_10LibContextE) +STUB( + "sbdBxHyik54", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEmmEv) +STUB("sbezrCUFXP4", mono_aot_Sce_Vsh_AutoMounterWrappermethod_addresses) +STUB( + "sbfbBFhDwAM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser8setlimitEi) +STUB("sbkKs39irAM", mono_btls_ssl_ctx_set_max_version) +STUB("sbs1gkGQMRc", utrie2_openFromSerialized) +STUB( + "sbs5LsyJXb8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEEC2ERKS8_) +STUB("sbs5dzWn8cE", curl_global_init_mem) +STUB("sbunWSs+4F8", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_22FriendsRankInformationEED2Ev) +STUB("sbyLJgK1M8Y", sceCesUtf16leToEucJp) +STUB( + "sbzClcoR-RQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB("sc1fkfZ4fyM", sceMusicFwRemoveSrc) +STUB( + "sc24S6DeRYc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEED1Ev) +STUB( + "sc3r5YYOSrE", + _ZNK3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBody6toJsonERNS_4Json5ValueEb) +STUB( + "sc6RlA-0FLM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEptEv) +STUB("sc6oASvj4zI", _ZN3sce2Np9CppWebApi14SessionManager2V113PlayerSessionD1Ev) +STUB("sc75vjmOOm0", _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26RecordScoreResponseHeadersD1Ev) +STUB( + "sc7nVAAAwxg", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot11setsortModeENS5_8SortModeE) +STUB("scA1QSh8cfE", sceAgcSdmaSetTileModesBC) +STUB("scCBvfXGeRM", sceNpAsmClientGetRelatedGameNpTitleIdsA) +STUB("scGRzF-d0Cs", WKWebsiteDataStoreRemoveAllServiceWorkerRegistrations) +STUB("scIpGdxRLfg", _ZN3JSC7Symbols24generatorNextPrivateNameE) +STUB("scJOf8iFCf0", sceVnaSetClientStatus) +STUB( + "scK-HwlUvRQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("scRASIAEXKc", _ZN3JSC16SamplingProfiler18reportTopFunctionsERN3WTF11PrintStreamE) +STUB("scRnB3aZI8Q", _ZN3JSC7Symbols34regExpProtoSourceGetterPrivateNameE) +STUB("scTDLlhRrGI", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request15GetSharedVideosC1Ev) +STUB( + "scUv5jCak28", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEE7add_refEv) +STUB( + "scVZ5u1pVhg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE5emptyEv) +STUB("scYjSEuq2ik", _ZN15AbstractStorage4ItemD0Ev) +STUB( + "scacbbHJm0s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEE7add_refEv) +STUB("scaro-xEuUM", sceFontGraphicsFillRatesSetLayout) +STUB("scb5kXMbsVU", _ZN12video_parser13cVideoMetaVWG18getMetadataBufSizeENS_12VP_META_TYPEEjPj) +STUB( + "scj4VyRr3oA", + _ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeaders15getLastModifiedEv) +STUB("scl7UXNelNQ", bdjbg_lock) +STUB("scmlDM8NafE", YGNodeCanUseCachedMeasurement) +STUB( + "scujyRfLgJQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEC2ERKS7_) +STUB("scvqkMgVNz8", sceSrcUtilitySetPriority) +STUB("scvvgjccZqA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEEC1EPKS6_) +STUB("scwJ33x7R-k", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEEptEv) +STUB( + "sczprp+lEq0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB( + "sd0VFVRQTDs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "sd26VYH1XxI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEC1ERS7_) +STUB("sd7QPzwvdHg", _ZN13MsvMetaEditor24getTrackPresentationTypeEPj) +STUB("sd8GFcARuLg", _ZN7WebCore5Range13setStartAfterERNS_4NodeE) +STUB("sdAwPks5xqg", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110TaskStatusEEaSERKS7_) +STUB( + "sdBgzCncvP0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE3endEv) +STUB( + "sdDfPQUkm2I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEmmEv) +STUB("sdHfxDWFUEM", _ZNSt9basic_iosIcSt11char_traitsIcEED1Ev) +STUB( + "sdInE9Jwafo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEE3getEv) +STUB( + "sdLFPkrlwAQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "sdMi-PSQJ-c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEE7add_refEv) +STUB("sdNhOF-blVI", mono_aot_System_Windowsjit_code_start) +STUB("sdYVzaZgFbY", _ZN7WebCore12blobRegistryEv) +STUB( + "sdfWYcbdhTQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEE5resetEPS6_) +STUB( + "sdglkJ+4P1Y", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("sdiDyE-vZEc", _ZN7WebCore12SettingsBase26defaultMinimumZoomFontSizeEv) +STUB( + "sdirKzjsO1c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEC2EPS8_) +STUB( + "sdn3PoQJbao", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEixEm) +STUB( + "sdtfzKB1kZ8", + _ZN7WebCore14SocketProvider24createSocketStreamHandleERKNS_3URLERNS_24SocketStreamHandleClientEN3PAL9SessionIDERKN3WTF6StringE) +STUB("se0KYvZSzg8", sceKeyboardGetHandle) +STUB("se3uU7lRMHY", _LExp) +STUB( + "se6DNF5ncjw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEEptEv) +STUB("seAPDWWOvGs", rethrow_exception) +STUB("seAwa3sHAnk", _ZNK3JSC8Debugger18isAlreadyProfilingEv) +STUB("seAwrHWgE5c", getSecondaryStreamNumByProtocolNumber) +STUB("seBa3svGA08", _ZN7WebCore18callerGlobalObjectERN3JSC9ExecStateE) +STUB( + "seBoSuoZ3T8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE5beginEv) +STUB("seCvUt91WHY", sceHttpCookieFlush) +STUB( + "seE2KLYOKqU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("seFUsEpxwRs", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus20unsetLastUpdatedUserEv) +STUB( + "seHla5zR33Q", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitationsaSERS5_) +STUB( + "seN39M5xVEU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEEC2ERKS9_) +STUB("seNO2-2PWHg", _ZN3sce7Toolkit2NP2V27Ranking12RangeOfRanksD2Ev) +STUB( + "seUrmOZq5wQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE7reserveEi) +STUB("seWenhQWhj4", JVM_SocketShutdown) +STUB("seXSJqfktdM", _ZN3sce7Toolkit2NP2V24Core12ResponseDataC2ERKS4_) +STUB( + "sectGCpimr8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEE5resetEPS8_) +STUB("seiFdosfod4", _ZN9Inspector19InspectorAuditAgentD1Ev) +STUB( + "sevvF3I-cHM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEC2Ev) +STUB( + "seweWjLnG4c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEppEi) +STUB("seyrqIc4ovc", wctrans) +STUB("sf+zna6VqrE", _ZN3sce2Np9CppWebApi14ConnectAccount2V214PSNError_error14setReferenceIdEPKc) +STUB("sf0YhEryHTo", g_try_malloc) +STUB( + "sf1jWR4jvY0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEE11release_refEv) +STUB("sf3iS0NA+5Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEC1Ev) +STUB("sf3uzhc5TAY", monoeg_malloc0) +STUB("sfHiKXDuL1Y", rgctx_fetch_trampoline_mrgctx_74) +STUB("sfKygSjIbI8", _getdirentries) +STUB( + "sfR5TZ0-n3I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEC1EPS8_) +STUB("sfRXuOQix9A", _ZN3sce3Xml4AttrD1Ev) +STUB("sfRsq9Yq2Y8", glGetShaderiv) +STUB("sfT5pcH7Oic", mono_security_enable_core_clr) +STUB( + "sfUxLOimAQQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEeqERKS9_) +STUB( + "sfa1FQhtQAY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEC1EPKS8_) +STUB("sfb15YAkqP0", _ZN7WebCore19CryptoAlgorithmECDH18platformDeriveBitsERKNS_11CryptoKeyECES3_) +STUB("sfbs6MLi-vM", WKContextConfigurationProcessSwapsOnWindowOpenWithOpener) +STUB("sfhuVL3MA7Y", _ZN7WebCore7Element7matchesERKN3WTF6StringE) +STUB( + "sfiGuVx72hA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE5beginEv) +STUB( + "sfkG49UNAo4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE10setContextEPNS2_10LibContextE) +STUB("sfmawT-nIUc", cairo_create) +STUB("sfnZfLSFUwY", _ZN7WebCore11MathMLNames14backgroundAttrE) +STUB("sfq23ZVHVEw", sceNpWebApiIntRegisterServicePushEventCallbackA) +STUB( + "sfqh+kqVp5I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE10setContextEPNS2_10LibContextE) +STUB( + "sfw1zSO4sd8", + _ZN7WebCore10FileHandleC2ERKN3WTF6StringENS1_14FileSystemImpl12FileOpenModeENS1_9OptionSetINS5_12FileLockModeEEE) +STUB( + "sfx5KAen5wU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE6resizeEj) +STUB("sfyF18YQz4s", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_20NpSessionInformationEE3getEv) +STUB("sfyZ8ToBf0M", _ZN7WebCore16DatabaseProviderD2Ev) +STUB( + "sg+2bwKIadk", + _ZN3JSC7JSProxy19getOwnPropertyNamesEPNS_8JSObjectEPNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("sg+qkgx+sQc", _ZN3WTF11Persistence5CoderINS_6StringEE6encodeERNS0_7EncoderERKS2_) +STUB( + "sg-NpW+3Um0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEED1Ev) +STUB( + "sg102dGsvp4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE5eraseENS2_8IteratorIS6_EERS9_) +STUB( + "sg5eJceJZGQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE21intrusive_ptr_sub_refEPS9_) +STUB("sgBm2G5A7pw", _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities5Error16referenceIdIsSetEv) +STUB( + "sgDT3DJKrr0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEED2Ev) +STUB("sgICbJoUPj4", WKUserMediaPermissionRequestGetTypeID) +STUB( + "sgJoEV3MRdw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEE7add_refEv) +STUB( + "sgLwzE+OmHU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE7reserveEi) +STUB( + "sgMNitDH2wk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEppEv) +STUB("sgRPNJjrWjg", sceSystemServiceSetOutOfVrPlayZoneWarning) +STUB("sgTcvX09U94", _ZN7WebCore13AXObjectCache21gAccessibilityEnabledE) +STUB( + "sgV-YXq3v0A", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeaders24setXPsnAtomicOperationIdERKNS1_6Common6StringE) +STUB("sgWeDrEt24U", sceNetCtlApAppStartWithRetryPid) +STUB("sgb3QwryREE", _ZN3sce7Toolkit2NP2V28Commerce14ProductDetailsC2Ev) +STUB("sgdGnQMxHrQ", _ZN7WebCore10ScrollView16setParentVisibleEb) +STUB("sggbcM+X2M0", u_foldCase_67) +STUB("sgh9D+MBBKA", _ZN3sce2np13JsonDocParser9GetResultEPPNS0_10JsonObjectE) +STUB("sghqnAxBHvA", _fini.completed) +STUB("sgp3WWz043s", scePlayReadyCdmiRetrieveOpaqueDecryptedContent) +STUB( + "sgrAAXnn7ug", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEED2Ev) +STUB("sgs8U4KyQqo", _ZN3sce7Toolkit2NP2V27Session12Notification18InvitationReceivedC2Ev) +STUB( + "sgvWsLGBeHo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEED1Ev) +STUB("sgvza6LNOQU", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_20NpSessionInformationEED2Ev) +STUB( + "sh50jtUwQqQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEppEv) +STUB( + "sh6vVRtfoJk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE8capacityEv) +STUB("shAlo80wZCg", __cxx_global_var_init .32) +STUB("shEE8O17TMI", sceAppInstUtilAppInstallMediaPlayer) +STUB( + "shGONc0fDsw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEED2Ev) +STUB( + "shMpjaG9PaU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE7reserveEi) +STUB( + "shSDUQaDkkA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "shY4L0uC6Wc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEC1EPKS8_) +STUB("shYTuH7J8ME", ulist_addItemEndList_67) +STUB( + "shawYWZUKRQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "shc+917EXXk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEC1ERS8_) +STUB( + "shjlN9-dkQ0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEEC1EPS8_PNS2_10LibContextE) +STUB("shn5GKv+7Rs", WKWebsiteDataStoreConfigurationSetCookieStorageFile) +STUB("shnIfcpPTFI", _ZN3sce7Toolkit2NP2V24Core13CallbackEventD1Ev) +STUB( + "shsyj1FfVkQ", + _ZN3sce2Np9CppWebApi7Matches2V118AddedPlayerFactory6createEPNS1_6Common10LibContextEPKcNS3_10PlayerTypeEPNS5_12IntrusivePtrINS3_11AddedPlayerEEE) +STUB("shuRTOL2pX4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEE3getEv) +STUB( + "shx880gc4LA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("si-4OZVQfeo", _ZNK3WTF10StringView25containsIgnoringASCIICaseERKS0_) +STUB("si-TLaBGtdw", sceNpServiceChecker2IntCheckServiceFlagArray) +STUB("si-erRQV5ic", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_28ActivityFeedSharedVideoStoryEEneERKS4_) +STUB( + "si1Vll2Kodc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("si5AmqiLgyw", _ZN9Inspector15ScriptCallFrameC1ERKN3WTF6StringES4_mjj) +STUB("si5cGkRLSH8", png_longjmp) +STUB("si6oSGibQe0", umutablecptrie_buildImmutable_67) +STUB("si8k+sIOQxk", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEEptEv) +STUB( + "siCOvQ4ICGc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEEaSERKSA_) +STUB( + "siHssYt72wE", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("siOnS0C7Quo", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEEptEv) +STUB( + "siWkeyN1Q9w", + _ZN7WebCore14ScrollableArea27scrollToOffsetWithAnimationERKNS_10FloatPointENS_14ScrollClampingE) +STUB("siWmRtGuWJ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEaSERKS7_) +STUB("siYafTIfQdU", _ZN3JSC22getInt32ArrayClassInfoEv) +STUB("sibdY9nhkvA", WKBundleSwitchNetworkLoaderToNewTestingSession) +STUB("sieAbhcD2Bw", sceNpSnsYouTubeDialogGetStatus) +STUB("sieQ--PINWg", ERR_clear_error) +STUB("sifm7Y9VKQA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEppEi) +STUB( + "sihR8H0elUo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("sij3OtJpHFc", _Mbtowc) +STUB("sijsfM-blKs", uloc_getLCID) +STUB("sinmW4Wm6OQ", cairo_get_current_point) +STUB("sit3xZSmxGo", _ZNK7WebCore14SecurityOrigin23domainForCachePartitionEv) +STUB("sitYQh8tLL4", jpeg_idct_14x7) +STUB("sj2z5W3eMhE", _ZN7WebCore11MediaPlayer17resetMediaEnginesEv) +STUB("sj5t4TQtEB4", _ZN3JSC2VM14throwExceptionEPNS_9ExecStateEPNS_8JSObjectE) +STUB("sjDOTvQZaro", _ZN7WebCore4Page27setZoomedOutPageScaleFactorEf) +STUB("sjDWp2xXEHw", ScePsmMonoProfilerLoad) +STUB("sjHE+m3Tx64", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getCurrentFrameRate) +STUB("sjHVQbtPfTg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEaSERS7_) +STUB( + "sjMCmMfiNRo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE4sizeEv) +STUB( + "sjNa43ZEbEA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE6resizeEj) +STUB( + "sjNr7W+TIt8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEEcvbEv) +STUB("sjO22SYzcAE", u_fgetlocale_67) +STUB("sjRyWirEJOI", _ZN7WebCore14FrameSelection19absoluteCaretBoundsEPb) +STUB("sjTK3TIOrRs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEC2ERS7_) +STUB( + "sjY8rXlFwIE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB( + "sjaM8+nUsh8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE5beginEv) +STUB("sjaobBgqeB4", sceNpUniversalDataSystemInitialize) +STUB("sjiGCrWRJJU", fuse_fs_new) +STUB( + "sjlC0E0BTns", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEC2Ev) +STUB("sjnIeFCuTD0", sceNpDeleteEventFlag) +STUB("sjpZIyT3CZc", YGNodeRemoveChild) +STUB("sjpkrhugvVI", _setjmp) +STUB("sjqt7A0BTmk", __asan_allocas_unpoison) +STUB( + "sjuglKCCqNs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEE7add_refEv) +STUB( + "sjybYaGtldc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEE11get_deleterEv) +STUB("sk-IXIIGdyc", getRegisteredDomain) +STUB("sk2KoFde7ag", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEEC2EPS5_PFvS7_EPNS2_10LibContextE) +STUB( + "sk4C--GnV6I", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEaSERKS9_) +STUB("sk54bi6FtYM", sceNpWebApi2CreateUserContext) +STUB("skA+6x7XmJs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEED1Ev) +STUB("skEOZuLwrKg", _ZN7WebCore21JSTextTrackCueGeneric6s_infoE) +STUB("skIfr3+tx9E", _ZN7bmalloc15IsoHeapImplBase11didDecommitEPvm) +STUB("skPbQ0XoJLo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEEC2Ev) +STUB("skVQJ97OrRQ", mono_aot_System_Net_Httpmethod_addresses) +STUB("skWncvVzg68", mono_type_create_from_typespec) +STUB( + "skYVs-qyeIM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "skdS9HT9B7s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEixEm) +STUB("skdZ13AH6to", _ZN3sce7Toolkit2NP9Interface23unregisterEventCallbackEv) +STUB( + "skedv4DCNas", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE4sizeEv) +STUB("skipUpdQW1w", _ZNK7WebCore6Cookie4hashEv) +STUB("skkbXPiUNb4", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEEixEm) +STUB( + "skniY8iy+9Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEEptEv) +STUB("sksl7DuWb9c", WKWebsiteDataStoreGetTypeID) +STUB( + "skt3h9QRhAc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEEC2ERSA_) +STUB( + "skvvFtbUzoE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEE11get_deleterEv) +STUB("skxe5P3d0X8", + _ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForRead8fromJsonERKNS_4Json5ValueE) +STUB( + "sl19nLank4w", + _ZN9Inspector27DOMStorageBackendDispatcher20removeDOMStorageItemElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("sl6kUtmc2jQ", _ZThn64_N7WebCore9FrameView17willEndLiveResizeEv) +STUB("slCSOYBcEOI", WKPreferencesSetMediaCapabilitiesEnabled) +STUB( + "slKr6Awrcus", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEppEi) +STUB( + "slKxJ2a4V0g", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEeqERKS9_) +STUB( + "slR87n-RYsE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEE3getEv) +STUB( + "slSjmCvfgD0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("slT42meZHBo", scePerfPmcUmcGetCounter) +STUB("slXxzNzcPrs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEEmmEv) +STUB("slbyivqRTA0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEED1Ev) +STUB("slkUdcMYXaI", _ZN3JSC12importModuleEPNS_14JSGlobalObjectERKNS_10IdentifierENS_7JSValueES5_) +STUB( + "slkhBwNISxo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEdeEv) +STUB("slkr1eWM1o8", sceApplicationLocalProcessSuspend) +STUB( + "slmFu5tIaG0", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemProperties58setpatchPlayerSessionsSessionIdMembersAccountIdRequestBodyENS1_6Common12IntrusivePtrINS3_55PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEE) +STUB("slmKkuIoC28", _ZN3sce2np10EventQueue5AbortEt) +STUB("slrgdUEeSj0", _ZN3sce7Toolkit2NP2V26Trophy15TrophyPackGroupC1Ev) +STUB( + "slsTBcn+s84", + _ZNK3sce2Np9CppWebApi14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBody16customData1IsSetEv) +STUB( + "slvvHT5LSEw", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody20setInvitableUserTypeERKNS3_23CustomInvitableUserTypeE) +STUB( + "slxJLGRy4qc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEED2Ev) +STUB( + "sm+o3cBeHk4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEC1Ev) +STUB("sm-jHBB+qao", _ZN3sce7Toolkit2NP2V210Tournament17TournamentEventIdD1Ev) +STUB("sm2gEcdUZjE", _ZN7WebCore20ResourceResponseBase25sanitizeSuggestedFilenameERKN3WTF6StringE) +STUB( + "sm6c31lxIrU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEppEv) +STUB( + "sm9NBbc2yow", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("smCpmvwKDVQ", WKPreferencesCreateCopy) +STUB( + "smGvLcA3nVY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEE11release_refEv) +STUB("smIj7eqzZE8", clock_getres) +STUB( + "smMwBnzHdH0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEmmEi) +STUB("smQl0Bi1Ick", scePfsGetPreadBlockRange) +STUB( + "smTG2kPpGp8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEC1ERS7_) +STUB("smU-F8Y1zfs", _ZN7WebCore14SecurityPolicy18setLocalLoadPolicyENS0_15LocalLoadPolicyE) +STUB( + "smUYzLBhGeU", + _ZN9Inspector25DebuggerBackendDispatcher8stepNextElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("smWEktiyyG0", scePthreadMutexattrDestroy) +STUB( + "smXWd+gI2CU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEppEv) +STUB( + "smac8ux7jYI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEmmEi) +STUB("smbQukfxYJM", getenv) +STUB( + "smdLM5IuE7Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEppEi) +STUB("smdd1xjT6lk", _Wcscollx.initial) +STUB("smds+4HUjns", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEC2EPS8_) +STUB("smeljzleGRQ", _ZTIc) +STUB( + "smjpaCqCn2s", + _ZN3sce7Toolkit2NP6Trophy9Interface22trophyRetrieveProgressEPKNS1_33RetrieveUserTrophyProgressRequestEPNS1_9Utilities6FutureI19SceNpTrophyGameDataEEb) +STUB("smpeN8iWrcc", cairo_move_to) +STUB("smqnBlj5tfk", sceHidControlGetAuthInformation) +STUB( + "smtdpDToNuA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEE7get_refEv) +STUB( + "smwAAHq-Q-o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEED2Ev) +STUB("smwyQcAh3tk", _ZN7WebCore18PlatformPasteboard5writeERKN3WTF6StringES4_) +STUB("smzJ80M7lMs", uhash_compareIChars_67) +STUB("sn-GBuOk8zk", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus13unsetObjectIdEv) +STUB( + "sn0QDUaWm1g", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE5beginEv) +STUB( + "sn3YLJS815Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEEdeEv) +STUB("sn4HNCtNRzY", _ZNK3sce4Json5Value11getUIntegerEv) +STUB( + "sn6k0KPkb6g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEC2Ev) +STUB( + "sn7AM6cWKpU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEE3getEv) +STUB("sn82hoI2VTo", ulistfmt_format_67) +STUB("snJVFfQAH8o", _ZN3WTF16AtomicStringImpl3addEPKNS_10StringImpl16StaticStringImplE) +STUB("snOzH0NQyO0", sceUserServiceSetFaceRecognitionDeleteCount) +STUB("snRhWp5iOYc", _ZN7WebCore11HistoryItem20setOriginalURLStringERKN3WTF6StringE) +STUB( + "snUone92hj8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEED1Ev) +STUB("snVIK-VDeCo", _ZN7WebCore11MemoryCache14evictResourcesEv) +STUB( + "snWcGhO1omE", + _ZN3sce2Np9CppWebApi14SessionManager2V141GetUsersAccountIdGameSessionsResponseBody15getGameSessionsEv) +STUB("snYs7Nf-RKk", sceVrTracker2GetPlayAreaOrientedBoundingBox) +STUB( + "snbJkdRE2cQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("sng98qULzPA", sceNpTrophyIntGetLocalTrophySummary) +STUB("sngv+7kclEc", _ZNK7WebCore13HitTestResult14innerNodeFrameEv) +STUB("snld9-av8Vw", mono_conc_hashtable_insert) +STUB("snloJp6qQCc", _ZN3sce2npgtERKNS0_4TimeERK10SceRtcTick) +STUB("snrg9ysE6-k", _ZNK3JSC7JSValue16toObjectSlowCaseEPNS_14JSGlobalObjectE) +STUB( + "sns+-2vq4g4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEixEm) +STUB("snvSTMmFd2U", + _ZN15AbstractStorage18DailymotionStorageC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("snwyFJq9ONg", mono_get_double_class) +STUB("so7o-HhMCU0", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi32ParameterToPostGameSessionsTouchD1Ev) +STUB("so8sDM5GdaE", unorm2_getNFKCInstance_59) +STUB("soAIjspgdt8", sceVideoOutDriverResetBufferLabel) +STUB("soCTtsk3Nuo", _ZN7WebCore22colorWithOverrideAlphaEjf) +STUB("soJYW9FTRvU", _ZN3sce7Toolkit2NP2V210Tournament7Request12SearchEventsC1Ev) +STUB("soLdLb-erpM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEaSERS7_) +STUB( + "soP-6bpJvP0", + _ZN9Inspector22PageFrontendDispatcher14frameNavigatedEN3WTF6RefPtrINS_8Protocol4Page5FrameENS1_13DumbPtrTraitsIS5_EEEE) +STUB( + "soPYwCnlM6U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEED1Ev) +STUB("soWa0pMndTM", SSL_get1_session) +STUB("soXFgC22q8c", sceCesUcsProfileInitIso2022JpRfc1468) +STUB( + "soaEbLQwAu4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEEC1ERKSA_) +STUB("sobnH40rWwo", _ZN12video_parser17cVideoOperatorMp4D2Ev) +STUB("soe0UNVVm5k", JVM_DumpThreads) +STUB("soe8n0cgXbI", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11TusVariableEE7addressERS3_) +STUB("soeZLyjPkcA", _ZNK3sce2Np9CppWebApi7Matches2V118CreateMatchRequest6toJsonERNS_4Json5ValueEb) +STUB("soiXa1AXb90", jpeg_finish_compress) +STUB("soq7GTbVMkw", sceShellCoreUtilIsBgmCpuBudgetAcquired) +STUB( + "soqr0pX-AfA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEC2EPNS2_10LibContextE) +STUB("souvIsqYHkg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEE7add_refEv) +STUB("sowzvTN5IkQ", _ZNK3WTF10StringView23convertToASCIILowercaseEv) +STUB("soxJ6tUOKC0", _ZN7WebCore18PluginInfoProvider7addPageERNS_4PageE) +STUB("soyX4A8RqBc", _ZN3JSC8JSObject12setPrototypeEPS0_PNS_9ExecStateENS_7JSValueEb) +STUB( + "sozOJWiUtAg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEmmEi) +STUB("sozuXSdm-Rk", _ZThn136_N7WebCore9DOMWindowD0Ev) +STUB( + "sp1qCZ7aFwk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEC2ERS7_) +STUB("sp7j+b8Tx3Q", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer7getsortEv) +STUB("sp8661+AcEI", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsD2Ev) +STUB("sp8rujVUiVA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEaSERS7_) +STUB( + "spEIuAErUjE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEC1EPNS2_10LibContextE) +STUB( + "spKmDDXh9Qk", + _ZN9Inspector17BackendDispatcher12sendResponseElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEEb) +STUB("spLNXZdR-XQ", uloc_getDisplayKeywordValue) +STUB( + "spMyeJazoxo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEppEv) +STUB("spOa93PWZk8", + _ZN3WTF10ParkingLot13unparkOneImplEPKvRKNS_12ScopedLambdaIFlNS0_12UnparkResultEEEE) +STUB( + "spRFys4loPA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEC2EPS8_) +STUB("spRPDDCYuXw", _ZN7WebCore11MathMLNames16mmultiscriptsTagE) +STUB("spW--yoLQ9o", sceUserServiceUnregisterEventCallback) +STUB("spdS-hedavE", sceVoiceChatInitialize) +STUB("spf5UNA3IyE", _ZN12video_parser5vpcom3rtc19TickAddMicrosecondsEPmPKml) +STUB("spfLzPwvZxs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEE3getEv) +STUB("spg8MujSU44", + _ZN3sce7Toolkit2NP15CommunicationIdC1ERKSbIcSt11char_traitsIcENS1_15AppSTLAllocatorIcEEES9_S9_) +STUB("spjcxyNX-KE", sceAmprAmmCommandBufferModifyProtectWithGpuMaskId) +STUB("splBMMcF3yk", _ZNSt7collateIcEC1EPKcm) +STUB("splXjoRt+jY", WKBundleNodeHandleCopySnapshotWithOptions) +STUB( + "spm6LuJNpV4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEEC2ERKSA_) +STUB("spov0bD6PpM", sceMatUpdateModuleList) +STUB("spsjzV2pTSc", + _ZN15AbstractStorage7Service11NextStorageERSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("spsqcVlnWHg", ztrans_getFrom_67) +STUB("sptP0R+70K8", _ZN7WebCore9FrameView37updateLayoutAndStyleIfNeededRecursiveEv) +STUB("sq0tL84dvR4", _ZN7WebCore12SettingsBase28defaultTextAutosizingEnabledEv) +STUB("sq2WIFm9wYY", mono_aot_Sce_Vsh_Np_AppInfounwind_info) +STUB("sq4hb-Vo1+0", _ZN3JSC14ProtoCallFrame8argumentEm) +STUB("sqAWie7Wryo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEE11release_refEv) +STUB("sqBiG3IG7O0", mono_aot_SMDiagnosticsunbox_trampolines) +STUB("sqEJZ2yMVNw", FcDefaultSubstitute) +STUB("sqEXNciZQjg", _ZN3JSC7Options16s_defaultOptionsE) +STUB("sqHPGs5Yn0Q", _ZN3JSC7Symbols20sameValuePrivateNameE) +STUB("sqKhTikzfNA", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_7NpUsersEED1Ev) +STUB("sqNxD6H5ZOQ", _ZN3sce2np9HttpTransC1EP16SceNpAllocatorEx) +STUB( + "sqR0uAG41-I", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEiRNS2_10LibContextEPT_m) +STUB("sqS31+ABfJQ", ures_countArrayItems) +STUB("sqWytnhYdEg", _ZNSt8ios_base4InitC1Ev) +STUB( + "sqZiaga6P7M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEEcvbEv) +STUB( + "sqaadtpAMvI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEcvbEv) +STUB( + "sqb45u3vTSI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEEC2Ev) +STUB("sqd6qrPkmyk", rgctx_fetch_trampoline_rgctx_35_p) +STUB("sqgmtOXwL-A", mono_aot_I18N_MidEastunwind_info) +STUB( + "sqhBcLlrrT4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("sqi-3HC0EJE", _ZN3JSC8JSObject12getPrototypeEPS0_PNS_9ExecStateE) +STUB( + "sqi5rzeiIsg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEED2Ev) +STUB( + "sqj88aIy8DA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEppEi) +STUB( + "sqlOYCjqiAY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEED2Ev) +STUB( + "sqrMUCHQbCI", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEEC2ERKSF_) +STUB("sqsMyl+M20c", WKPreferencesSetApplePayEnabled) +STUB( + "sqv5cRXIYa4", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetrics17setPacketLossRateERKi) +STUB("sqvt2GyexGg", jpeg_idct_13x13) +STUB("sqyhd5-36Ok", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE5clearEv) +STUB( + "sr-LrxtZMGg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEcvbEv) +STUB("sr095NLKaAc", sceShareUtilityAdvanceResetPlayingContent) +STUB( + "sr0BBAAdsv0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEmmEi) +STUB( + "sr6voujVpz4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEC2EPS8_) +STUB("sr7s8OJgsiI", + _Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm14SpiPerfCounterE20SceRazorGpuBroadcast) +STUB("srEqyHOsfFg", _ZN7WebCore22contextMenuItemTagBoldEv) +STUB( + "srFlhjVa5Q8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEEcvbEv) +STUB("srJHx3p48v0", sceSlimglCompositorDeleteIndirectRenderTarget) +STUB("srJj-3x1CkA", _ZN9Inspector23WorkerBackendDispatcherD0Ev) +STUB("srO2Ejihv7A", mono_aot_Sce_Vsh_VideoFramework_Platformjit_code_start) +STUB( + "srOcBw9r8io", + _ZN9Inspector14ConsoleMessageC2EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelERKN3WTF6StringEONS5_3RefINS_15ScriptArgumentsENS5_13DumbPtrTraitsISA_EEEEPNS1_9ExecStateEm) +STUB("srP5JTU5gpg", GCC_except_table434) +STUB("srbMS5I5r+w", _ZN7WebCore14ScrollableArea15contentsResizedEv) +STUB("srbUZoGRVXA", _ZTVN4IPMI7SessionE) +STUB( + "srbWnHQ6hX8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEE3getEv) +STUB("srcPt2vU6ok", _ZN3JSC4Heap20protectedObjectCountEv) +STUB("sreH33xjV0A", _ZNK3sce2np9Semaphore6IsInitEv) +STUB( + "sripLDA6OB0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEC2EPS6_PNS2_10LibContextE) +STUB("srk2C1Dh6ac", utrans_getUnicodeID_67) +STUB("srmkzHu3vQA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEED1Ev) +STUB("srnAu7m5VKk", sceMatResizeCommsBuffer) +STUB("srsNBr6bNGk", mono_aot_System_Net_Http_WebRequestplt_end) +STUB("srwl1hhFoUI", _ZNSt10filesystem7_RenameEPKcS1_) +STUB("srylh7myPrc", _ZThn152_NK7WebCore8Document11completeURLERKN3WTF6StringE) +STUB("srzSVSbKn7M", isxdigit) +STUB("ss-Gb0pTkfg", _ZN3WTF6Thread15allThreadsMutexEv) +STUB("ss1xGhJRunI", _ZNK3sce2Np9CppWebApi11Matchmaking2V15Error7getCodeEv) +STUB("ss2xO9IJxKQ", sceNpCondTimedwait) +STUB( + "ss3Tv1Bw3gc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE7popBackEv) +STUB( + "ss4ICbG0bb4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEE11get_deleterEv) +STUB("ss9kEt9oNt8", _ZN3sce7Toolkit2NP2V212NetworkUtils12Notification14NetStateChangeC2Ev) +STUB( + "ssFWO7eplx8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEC2Ev) +STUB( + "ssHAvsKkRdc", + _ZN9Inspector22InspectorDebuggerAgent19evaluateOnCallFrameERN3WTF6StringERKS2_S5_PS4_PKbS8_S8_S8_S8_S8_RNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISC_EEEERNS1_8OptionalIbEERNSH_IiEE) +STUB("ssIzVl7hH8g", mspace_malloc) +STUB("ssKWX2KjGGs", _ZN3sce7Toolkit2NP2V29Messaging7Request19SendGameDataMessageD1Ev) +STUB("ssNlwZtVGgY", _ZNK7WebCore7Element28getUnsignedIntegralAttributeERKNS_13QualifiedNameE) +STUB("ssOYh2vfiQs", _ZN7WebCore17CharacterIterator7advanceEi) +STUB("ssOcL1iqcTE", sceDepth2GetImage) +STUB("ssRp1pDeUB0", sceOpusCeltEncTerminate) +STUB("ssSRZ-3Dh5w", sceAppInstUtilAppDestroyPkg) +STUB( + "ssZfxyK1H7U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEC2ERS7_) +STUB("ssfpN9JL3jE", _ZTVN7bmalloc11IsoTLSEntryE) +STUB("sshzsz+pttE", _ZN3sce2Np9CppWebApi13InGameCatalog2V511ErrorEntity8fromJsonERKNS_4Json5ValueE) +STUB("ssmH9nMYO4o", sceKernelGetCpuUsage) +STUB( + "ssrj8w9flLM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEmmEv) +STUB("ssxeVRrB1u8", mono_aot_System_ServiceModelplt_end) +STUB("st-oQvV7HVI", _ZNK3sce2np9EventFlag6IsInitEv) +STUB("st0OJ4GSnT4", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V15Error16unsetReferenceIdEv) +STUB( + "st4kdjpNEYk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("st7OEVdTjoE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEEC1Ev) +STUB( + "stC+UpwiV0E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE21intrusive_ptr_sub_refEPS9_) +STUB("stDSYW2SBVM", sceGnmDrawOpaqueAuto) +STUB("stJKr+gjsv0", _ZN4Manx9X509chainC1EPKS0_) +STUB("stL5F2l-AII", rgctx_fetch_trampoline_rgctx_125_p) +STUB("stQ7AsondmE", sceHmdInternalSeparateModeSendAudio) +STUB( + "stU0QFRDG8A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEC1EPNS2_10LibContextE) +STUB("stUzNgtFmtY", _ZN3sce2np3ipc17ServiceIpmiClient15RegisterServiceEPKNS1_17ServiceClientInfoE) +STUB("stV-zlmkiGE", il2cpp_bounded_array_class_get) +STUB( + "stW0gWLtgsM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE8pushBackERKS8_) +STUB("stegXBPbxWE", _ZN3JSC4Heap9unprotectENS_7JSValueE) +STUB("stfN9HXNUWU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V112OnlineStatusEEaSERKS7_) +STUB( + "stjm4dCg1Lg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEC2ERKS7_) +STUB("stlghnic3Jc", sceAjmBatchJobInlineBuffer) +STUB("stopIxEckAY", uprv_dl_open_67) +STUB("sttlr6e-LsI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEEC1Ev) +STUB("stv1S3BKfgw", _Wctombx) +STUB("stwPblrV7vk", u_strFromUTF8_67) +STUB("su0zXmF7Cto", _ZN7WebCore15SQLiteStatement7bindIntEii) +STUB("su119CyR5HM", uprv_isInvariantUString_67) +STUB("su3S99ot9hg", _ZN7WebCore16TrackPrivateBasedlEPv) +STUB("su65s8-rLsk", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead20getInvitableUserTypeEv) +STUB("su69HT3GxaY", _ZN3WTF11weekdayNameE) +STUB("su7jW3VDDb4", sceNpUniversalDataSystemGetMemoryStat) +STUB( + "su9jNTbI31M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE8copyFromERKS9_) +STUB("suAZ4dOD80U", udata_getRawMemory_67) +STUB("suBXoV90W+A", _ZN3JSC7Symbols21awaitValuePrivateNameE) +STUB("suBcgvSkEcM", _ZTVN12video_parser13cVideoMetaMP4E) +STUB("suCrEbr0xIQ", pthread_attr_setstackaddr) +STUB( + "suDMbVWUAIc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEED2Ev) +STUB( + "suFLEjYWZqU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE5beginEv) +STUB( + "suFf7cB2y0o", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("suFjXqXcAxM", _ZN7WebCore11DisplayList8DrawPathD0Ev) +STUB( + "suRAu5LfwY8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEptEv) +STUB("suUlSjWr7CE", sceGnmSdmaGetMinCmdSize) +STUB("suaBxzlL0p0", _ZNSt9_Num_base5trapsE) +STUB( + "suar0nu4gsg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE5emptyEv) +STUB("suczT1Sa7kc", _ZN7WebCore18ImageBufferBackendD0Ev) +STUB("sudDy2ctXmc", sceVencCoreQueryMemorySize) +STUB( + "suecKJzc7sQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB("sukPd-xBDjM", sceUserServiceGetMouseHandType) +STUB( + "sulCsR56mto", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEEC1ERKSA_) +STUB("sutMXpKgCr0", _ZN3JSC29callHostFunctionAsConstructorEPNS_14JSGlobalObjectEPNS_9CallFrameE) +STUB("suww6V0qqpU", cairo_scale) +STUB("suxln7PooIo", _ZN3sce2np10EventQueue7DequeueEPvmj) +STUB("sv+XaoHkUIk", WKPreferencesGetCaretBrowsingEnabled) +STUB("sv84XKn8F-Q", _ZN3JSC15createEvalErrorEPNS_14JSGlobalObjectERKN3WTF6StringE) +STUB( + "sv9WjXW3zVQ", + _ZN3sce2Np9CppWebApi11UserProfile2V132GetBasicPresencesResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_25GetBasicPresencesResponseEEE) +STUB("sv9yvbNVpAs", getDecryptionKeys) +STUB("svAQxJ3yow4", _ZN3sce2npgeERKNS0_4TimeES3_) +STUB("svCbPg09I3s", ucnv_MBCSIsLeadByte_67) +STUB("svFP+RQpUbk", _ZNK7WebCore11MediaPlayer6pausedEv) +STUB("svIkqWCw-LU", _ZN3WTF14createIteratorENS_10StringViewE) +STUB("svL3d4oO8uQ", + _ZN3sce2Np9CppWebApi12Leaderboards2V113ErrorResponseC2EPNS1_6Common10LibContextE) +STUB("svM8Dv6w8Ns", delegate_virtual_invoke_imt_21) +STUB("svNh5xr4zew", _ZN3sce7Toolkit2NP2V28Commerce13CategoryLabelC2Ev) +STUB("svVC24WHdNo", rgctx_fetch_trampoline_mrgctx_0) +STUB( + "svY6+7lTPdw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEEC1EPS5_PFvS7_EPNS2_10LibContextE) +STUB("svZJHZRDQm4", sceDevUsbReadHost) +STUB("svoejwB+4xk", _ZN12video_parser17cVideoOperatorEtsD2Ev) +STUB( + "svqKVshd3Fg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("svtevndvMLo", + _ZN3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayer15getPushContextsEv) +STUB("svwNDrtDkgI", _ZN10Deprecated12ScriptObjectC1EPN3JSC14JSGlobalObjectEPNS1_8JSObjectE) +STUB("svygVJARrD4", ucpmap_get) +STUB("sw2+TzZR71g", glGetFramebufferAttachmentParameteriv) +STUB( + "sw5wrgxobVg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEEC1ERSA_) +STUB("sw65+7wXCKE", sceFontSetScalePoint) +STUB( + "sw6epkZvIWo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEED1Ev) +STUB("sw98L1MbqpM", uloc_setKeywordValue) +STUB("sw9MM-C5WjQ", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26RecordScoreResponseHeadersC2ERS5_) +STUB( + "swFQ96weUt8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE5emptyEv) +STUB( + "swHHoWHZM4g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "swHKuLc5O+c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEC2EPS8_) +STUB("swIuchTFP9A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEEaSERKS7_) +STUB( + "swM6ikjd0M4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEdeEv) +STUB("swYSTbBmwXo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEC1ERS7_) +STUB( + "swZN1Y3yDH8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEdeEv) +STUB( + "swaj+F+XnAs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEC1EPS8_) +STUB("swbWGPtTGMc", _ZN3sce7Toolkit2NP2V27Session7Request7GetInfoC1Ev) +STUB( + "swdXFJPwt2A", + _ZN7WebCore13JSDOMRectList25getOwnPropertySlotByIndexEPN3JSC8JSObjectEPNS1_9ExecStateEjRNS1_12PropertySlotE) +STUB("swipd-HACPk", _ZN3sce2Np9CppWebApi13InGameCatalog2V55ImageD2Ev) +STUB("swrIPzOxcmM", FT_Get_Module) +STUB("swrsxmobY1c", sceDeci4hWrite) +STUB( + "sx-mGnQPyeg", + _ZN3WTF9URLParser9serializeERKNS_6VectorINS_12KeyValuePairINS_6StringES3_EELm0ENS_15CrashOnOverflowELm16ENS_10FastMallocEEE) +STUB("sx1OJpJQNKo", uprv_dl_close) +STUB( + "sx1xlEpYTwE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEE5resetEPS9_) +STUB("sx2zpRS6VjA", _ZN7WebCore16NetworkSendQueue7enqueueERNS_4BlobE) +STUB("sx6QhgD1ziw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEE11get_deleterEv) +STUB( + "sxD6kwNBzRs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEEaSERKS9_) +STUB("sxHajJOslN0", sceNpIsCEX) +STUB("sxI9MUSKmsM", _ZN3JSC4Yarr20unicodeMatchPropertyEN3WTF6StringE) +STUB( + "sxLb3u25nE4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEEC2ERKS9_) +STUB( + "sxLwFHn5PEg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE5emptyEv) +STUB( + "sxMMUypRB7Y", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE8capacityEv) +STUB( + "sxOcoGEYEZw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "sxOiOj-0vVw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "sxW66ReQFS4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("sxWLqDD3iHw", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEED1Ev) +STUB( + "sxZYBM8gJ2A", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE8capacityEv) +STUB("sxavOcVMOFA", _ZN3WTF14FileSystemImpl24fileSystemRepresentationERKNS_6StringE) +STUB( + "sxcCNkdS4bg", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM23AccessibilityProperties7CheckedEEESt8optionalIT_ERKN3WTF6StringE) +STUB("sxeCh1gYUVI", _ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_6Path2DE) +STUB( + "sxhfgg4mpBQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "sxiE6NW4+7c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("sxy+SswdQ+Y", _ZN7WebCore37contextMenuItemTagOpenLinkInNewWindowEv) +STUB( + "sy-dc4+KByg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEE11get_deleterEv) +STUB("sy3PioM8TPE", sceNpAppLauncherTerminate) +STUB("sy56JOeQbHk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEdeEv) +STUB( + "sy5UxtyfClk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("sy62mPCxbTs", _ZN9Inspector15AsyncStackTrace21willDispatchAsyncCallEm) +STUB( + "sy8FQX9uB7s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEED1Ev) +STUB("syAWYDf3bMU", mono_aot_Mono_Data_Tdsplt) +STUB("syDD+xcUmEs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEED1Ev) +STUB("syERpIZ2gV4", mono_aot_System_Xml_Serializationunbox_trampolines_end) +STUB("syGFFMBNH2g", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEED1Ev) +STUB("syK5g6mvSX8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEC1Ev) +STUB( + "syNsPZoTyhc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB("syQ-XzzyAmI", + _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody9setStatusERKNS3_12TicketStatusE) +STUB("sySDeo6O57s", u_flushDefaultConverter_67) +STUB( + "sySG4MR0gZU", + _ZNK3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead20getReceivedTimestampEv) +STUB( + "sySLKh3I3qU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("syTFGqfBLQE", sceLibcMspaceCheckMemoryBounds) +STUB("syTSeH+lXfQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEE3getEv) +STUB("syUI9dod+FM", rgctx_fetch_trampoline_rgctx_99) +STUB("syViOKKpLXU", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15PlayedWithStoryEEC2Ev) +STUB("syWd-JCitpo", glVertexAttrib1fv) +STUB("sydJTxUiLLI", ShCompile) +STUB("syjHZRA2aiE", mono_aot_Sce_Vsh_Np_Managerunbox_trampolines) +STUB("syjfXIZi0+8", _ZNSt9_FacetptrISt10moneypunctIwLb0EEE6_PsaveE) +STUB("sylevnx-fqk", FTA_Support_Format_OpenType) +STUB("syqL4ibxyo4", _Z27sceRazorGpuThreadTraceStartPN3sce3Gnm21DispatchCommandBufferE) +STUB("sysY2FHYff4", sceNpTrophy2DestroyContext) +STUB( + "syt4bZFBAhY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEC2Ev) +STUB("sywg-RnhZMA", sceRegMgrSrvGetRegion) +STUB( + "sz0R08lhAac", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEEC2Ev) +STUB("sz5oQE2fWWg", _ZN3JSC2VM19int16ArraySpaceSlowEv) +STUB("sz8I4nYCVl8", + _Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm15PaScPerfCounterE20SceRazorGpuBroadcast) +STUB( + "szB8HRqzsaY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEmmEv) +STUB("szEVu+edXV4", sceRudpInitiate) +STUB("szG7hz2yEhA", sceAgcAcbPrimeUtcl2) +STUB("szJ8gsZdoHE", CERT_CompSubjectAltNames2) +STUB( + "szOv05+9UAg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEEdeEv) +STUB("szUTqQasrxo", __asan_load_cxx_array_cookie) +STUB("szUft0jERdo", _Tan) +STUB( + "szXxCGvOLgQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEC1EPS8_) +STUB("szZTWmnOwpI", _ZN3sce7Toolkit2NP2V212EventsClient22EventOfficialBroadCastD1Ev) +STUB("szg0-nj983E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE8copyFromERKS9_) +STUB( + "szh23cI8erY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEEdeEv) +STUB( + "szmwrItrPwo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEE5resetEPS9_) +STUB( + "szogrF491Qw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEppEi) +STUB( + "szqw7Af0otQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("szwrXfLPPlE", + _ZN7WebCore22EmptyFrameLoaderClient21didRunInsecureContentERNS_14SecurityOriginERKN3WTF3URLE) +STUB( + "t+0u+F+QcCk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEC2Ev) +STUB( + "t+3dIjfjYHo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE10setContextEPNS2_10LibContextE) +STUB("t+6tvd72XNE", WKCertificateInfoGetCertificateChainSize) +STUB("t+Dx3eQtBPQ", _ZNK3sce4Json6String5rfindEcm) +STUB("t+NmJaH41H0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V510AnnotationEEC1EPS6_) +STUB("t+O8mxM6oSg", sceAvSettingAddCallbacks) +STUB("t+Q+yseJEAY", _ZNK3sce2Np9CppWebApi7Matches2V15Error11reasonIsSetEv) +STUB("t+T8UG8jats", _ZN3sce2np12NpHttpClientC2EP16SceNpAllocatorEx) +STUB("t+Ud3L1cDv0", monoeg_g_path_get_basename) +STUB("t+YcylFcfaA", + _ZN3sce2Np9CppWebApi11UserProfile2V119BasicProfileFactory7destroyEPNS3_12BasicProfileE) +STUB( + "t+c4ihEfykU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEED1Ev) +STUB( + "t+ewoY+XQjE", + _ZN3sce2Np9CppWebApi6Common23UpDownStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextEm) +STUB( + "t+iFDGd+o3s", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB( + "t+k7XSB1eF0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEC2Ev) +STUB( + "t+kFLeYqs+o", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session12Notification18InvitationReceivedEE19setCustomReturnCodeEi) +STUB("t+rTx5NW+qU", __sys_socketclose) +STUB("t+t0roe8hm8", invpio2lo) +STUB("t+us0ywW1tA", izrule_getStaticClassID_67) +STUB("t+wyvrLa-78", _ZN3sce2Np9CppWebApi11Matchmaking2V116AttributeFactory7destroyEPNS3_9AttributeE) +STUB("t-19whstaJk", _ZN7WebCore11DisplayList7RestoreD1Ev) +STUB( + "t-2Gf4IBiJA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEC2Ev) +STUB("t-7LW7iYP3w", mono_aot_Sce_Vsh_CloudClientmethod_addresses) +STUB("t-9Ij2BOB34", sceDevUsbAddHostStreamKevent) +STUB("t-BDxreA7sU", sceAvSettingSetVideoOutModeAny_) +STUB("t-Fwv83WoZ0", _ZN3WTF17charactersToFloatEPKhmRm) +STUB("t-I2Lbj8a+0", sceUserServiceGetShareDailymotionRefreshToken) +STUB( + "t-IpsrCv2WY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEneERKS9_) +STUB("t-LReqPs1TU", _ZN7WebCore21JSRemoteDOMWindowBase7destroyEPN3JSC6JSCellE) +STUB( + "t-NCm4dRPl0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEeqERKS9_) +STUB("t-RJTDVo3WU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE6resizeEj) +STUB("t-XZYsp1+Yg", + _ZN12video_parser16cVideoContentMp414getDrmInstanceEPPNS_9iVideoDrmENS1_16InitializeMode_eE) +STUB( + "t-YO0GlpdOE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEC1EPNS2_10LibContextE) +STUB( + "t-aIljxeVOY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEE7get_refEv) +STUB("t-hL9pkzNqs", utrace_exit) +STUB( + "t-ixhcbMo0A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE7reserveEi) +STUB( + "t-lXb5q9LbI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEC1Ev) +STUB("t-lgJRT2GeA", _ZNK7WebCore4Node10shadowHostEv) +STUB("t-nd5-w3HN0", rgctx_fetch_trampoline_rgctx_115) +STUB("t-qktupt2bk", delegate_virtual_invoke_imt_8) +STUB("t-qt2vUwvKA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEED1Ev) +STUB( + "t-tNMj1vbVw", + _ZN3sce7Toolkit2NP2V24Auth10getIdTokenERKNS3_7Request10GetIdTokenEPNS2_4Core8ResponseINS3_7IdTokenEEE) +STUB("t-vIc5cTEzg", sceGnmDriverInternalRetrieveGnmInterfaceForValidation) +STUB("t-xwlN+36QQ", sceMoveGetBluetoothAddress) +STUB("t01PPnyXwTY", + _ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead11setOnlineIdERK13SceNpOnlineId) +STUB( + "t01q5wkbDpY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEppEi) +STUB("t04S4aC0LCM", sceUserServiceGetParentalBrowser) +STUB("t04gsObcCZ0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEcvbEv) +STUB( + "t08m4z6iyaE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEED1Ev) +STUB( + "t091XfeKHng", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi23getMultiVariablesByUserEiRKNS4_34ParameterToGetMultiVariablesByUserERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_29GetMultiVariablesResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("t0BDAdteenQ", AnnotateRWLockCreateStatic) +STUB("t0CMZQnA74Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEED2Ev) +STUB("t0HIQWnvK9E", sceGnmDebuggerReadSqIndirectRegister) +STUB("t0P5z5yuFPA", sceNpWordFilterDeleteTitleCtx) +STUB("t0QQEaFsC-M", ures_getFunctionalEquivalent) +STUB( + "t0RkpipoC1E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEED2Ev) +STUB( + "t0Uli1p6rYA", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser30unsetxPsnAcceptPlatformNamePs5Ev) +STUB( + "t0Upc-BAuQs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEED1Ev) +STUB("t0W8-TBYlXc", jpeg_read_scanlines) +STUB( + "t0YI6m3brqI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("t0ZlQjKCRC0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11SessionDataEED2Ev) +STUB("t0dsowseKjE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEEC2ERS7_) +STUB("t0eLBGKYT1E", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy17TrophyPackSummaryEED1Ev) +STUB("t0fXUzq61Z4", _fcntl) +STUB("t0gtqDVSszU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEC1Ev) +STUB("t0mZZZf98ck", Java_java_awt_GnmGraphics_nativeFillArc) +STUB( + "t0nsVfANzIs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEC1Ev) +STUB("t0sljfEfaQs", ztrans_close_67) +STUB("t0xDVZkT36o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE3endEv) +STUB("t0z87PlggWI", sceWorkspaceIsUpdatePending) +STUB( + "t1-CMuVEVVw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("t14djbbLe0U", mono_gc_wbarrier_object_copy) +STUB("t1BD8Fwyk5I", delegate_virtual_invoke_imt_5) +STUB("t1Bl3QUgCIw", uloc_getTableStringWithFallback) +STUB( + "t1HNXigX3K0", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser8getlimitEv) +STUB("t1JcugBLj0g", mono_aot_Microsoft_CSharpunwind_info) +STUB( + "t1KADNIrU0E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEixEm) +STUB( + "t1LJFMnXA8Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE8capacityEv) +STUB("t1Mq1RsJMQg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEE7get_refEv) +STUB( + "t1NVitgGvQQ", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesC2EPNS1_6Common10LibContextE) +STUB("t1SVKlD6KPc", _ZN3sce7Toolkit2NP2V27Ranking12RangeOfRanksD1Ev) +STUB( + "t1T8kPTXKm8", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "t1Y2pJUuBb4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEEC2ERSA_) +STUB("t1foZtjoF2w", _ZN3sce3Xml4AttrC2ERKS1_) +STUB( + "t1gUHiT0rFo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE4sizeEv) +STUB("t1jOb3-bSOA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEC1Ev) +STUB("t1oU0+93b+s", sceUserServiceSetGlsFloatingMessage) +STUB("t1svU-fltEM", _ZN7WebCore6Widget8setFocusEb) +STUB("t1vNu082-jM", sceAgcDcbDrawIndexIndirect) +STUB("t1ytXodWUH0", putenv) +STUB("t1ziJxm-7dM", WKPreferencesSetAVFoundationNSURLSessionEnabled) +STUB("t25JH5hkhoI", mono_aot_Sce_Vsh_SysUtilWrapperunbox_trampolines_end) +STUB("t2FvHRXzgqk", sceErrorDialogGetStatus) +STUB( + "t2O3wooBu3E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "t2Qd5V11mek", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE4initEv) +STUB("t2VeaVgUBLI", _ZN9Inspector18InspectorHeapAgentC2ERNS_12AgentContextE) +STUB("t2WKtyLuqKs", mono_aot_ReactNative_Vsh_Commonmethod_addresses) +STUB("t2a2r42erzA", _ZN3sce7Toolkit2NP15PresenceDetailsC1Ev) +STUB("t2dW1YJCdBE", _ZN3sce3Xml6StringC1EPKc) +STUB("t2firQTyFsI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEC1Ev) +STUB("t2gmPz-+STc", _ZN7WebCore9HTMLNames11oninputAttrE) +STUB( + "t2lZROPcUpk", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesC1EPNS1_6Common10LibContextE) +STUB("t2oH2VXgmqY", _ZN3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_errorD1Ev) +STUB( + "t2qSzqfnslU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEED2Ev) +STUB("t2r-vTvYlTo", sceMbusDetachFromApplicationByPid) +STUB("t2uMaDVXwnM", YGNodeSetHasNewLayout) +STUB("t30LG1ibIJE", sceAgcDriverUserDataImmediateWrite) +STUB("t32fvb0XlfQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession16customData2IsSetEv) +STUB( + "t39dKpPEuVA", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERd) +STUB("t3CQzag7-zs", sceNpTrophyIntGetProgress) +STUB("t3DifqR5Dqw", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4DataEE5resetEv) +STUB("t3HY010u9lI", EVP_CIPHER_CTX_init) +STUB("t3IfO2xuW6o", sceNpUniversalDataSystemPostRecord) +STUB("t3J5pXxhJlI", sceUsbdFillInterruptTransfer) +STUB("t3KbP5U+qZ4", mono_btls_x509_add_explicit_trust) +STUB("t3OGsg+i+u4", + _ZNK3sce2Np9CppWebApi7Matches2V123ResponsePlayerStatistic6toJsonERNS_4Json5ValueEb) +STUB( + "t3PTq8j1EWw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEE7add_refEv) +STUB("t3RFHn0bTPg", index) +STUB("t3XMeHmtcbs", _ZN9Inspector23WorkerBackendDispatcherD1Ev) +STUB( + "t3Y63SE7O08", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE8pushBackERKS8_) +STUB( + "t3YbJR63qBw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEEC1ERKSA_) +STUB( + "t3cZoz+5ERU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEC1EPKS8_) +STUB("t3cjsiajD-M", utrans_openIDs_67) +STUB("t3daRkbqdaI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session7SessionEEC2Ev) +STUB("t3jTkJdul2s", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE5emptyEv) +STUB("t3rfBQmc4sY", + _ZN3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponseC2EPNS1_6Common10LibContextE) +STUB("t3rvRkdJmmk", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEEC1ERS6_) +STUB("t3seWZY4Cy4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEEC2EPS6_) +STUB( + "t3spMYrri1I", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody35getComparedLastUpdatedUserAccountIdEv) +STUB("t3suZsEB5dA", _ZN3JSC4Heap18sweepSynchronouslyEv) +STUB("t3vCgnT5YL0", ft_mem_dup) +STUB("t4-ETHKlsgM", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_6NpUserEE7addressERS3_) +STUB( + "t4-KJiSB1hA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE5beginEv) +STUB("t4-o+sizWvY", _ZNSt15basic_streambufIwSt11char_traitsIwEE4syncEv) +STUB( + "t449Jd3Ef30", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions25setusePlayerSessionFilterEPKc) +STUB("t4ExS+SwLjs", sceAmprCommandBufferWriteAddressFromCounter_04_00) +STUB("t4FA0L6NjqY", + _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession15setJoinDisabledERKb) +STUB( + "t4G3L6IL9fg", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "t4Is6vIFqz0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE8pushBackERKS8_) +STUB("t4LC0C6pAkQ", _Z39sceGpuDebuggerUnregisterFetchShaderCodePKv) +STUB( + "t4LrHdBfcRk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE28getResponseInformationOptionEv) +STUB("t4Nxp6h9G-w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEED1Ev) +STUB("t4PRYawDi44", _ZN7WebCore6JSNodeD1Ev) +STUB( + "t4UaaMFL1rA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB( + "t4VAukZcGMs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEplEm) +STUB("t4VsMdzH3ns", _ZNK7WebCore11MediaPlayer8durationEv) +STUB("t4XEnVukn0c", _ZN7WebCore11MathMLNames9mslineTagE) +STUB("t4XjVUCWGjU", uloc_getDisplayCountry_67) +STUB( + "t4Zox5WFJk8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEixEm) +STUB("t4cE9gz19eM", _ZNK3sce2np10JsonNumber3GetEPj) +STUB("t4e879M-cSw", sceTextToSpeech2Close) +STUB("t4gUfGsjk+g", sceUsbdGetStringDescriptorAscii) +STUB( + "t4jM62o92TY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "t4k+5hB2DdY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEED2Ev) +STUB("t4lnn4rB+U0", sceLibSecureDestroy) +STUB("t4plRC4G6ms", sceSdmaCopyWindowTiledNonBlocking) +STUB( + "t4vH1P4Gi6k", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEE3getEv) +STUB("t4vLDMxzzf0", sceFiosFHWritevSync) +STUB( + "t4w-02wmMvI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEppEv) +STUB( + "t4wP82flJKY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEmmEv) +STUB( + "t4zuLZWFIwE", + _ZN9Inspector25DatabaseBackendDispatcherC1ERNS_17BackendDispatcherEPNS_32DatabaseBackendDispatcherHandlerE) +STUB( + "t531i64+s7I", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB( + "t53XwB7mO-Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEC1Ev) +STUB( + "t56436G0Cdw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEC2Ev) +STUB( + "t591rxAGAd0", + _ZN7WebCore20ApplicationCacheHost28maybeLoadFallbackForRedirectEPNS_14ResourceLoaderERNS_15ResourceRequestERKNS_16ResourceResponseE) +STUB("t5Buq8foIvg", kenv) +STUB( + "t5DRR9SC8hI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("t5K+IeMVD1Q", sceSystemServiceGetPlatformPrivacyDefinitionVersion) +STUB("t5ShV0jWEFE", sceSystemServiceGetAppStatus) +STUB( + "t5X7lHI-pzQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "t5XcrZVHeN8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("t5YrizufpQc", sceAudioOut2ContextResetParam) +STUB("t5ZvUiZ1hpE", sceRemoteplayPrintAllRegistData) +STUB("t5cZhzOEeDM", _ZN3sce2np3ipc14service_client13CreateRequestEimPKvPi) +STUB( + "t5fTmGjinq8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEE3getEv) +STUB("t5jUe-yQ-UQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer11getPlatformEv) +STUB("t5r9dsMMsZU", u_isJavaIDPart_67) +STUB( + "t5voWfwjz+k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEC1EPKS8_) +STUB( + "t5wUaQJFsVM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEppEv) +STUB( + "t60DlrycZ7k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEC2EPS8_) +STUB("t65Y1ezjxZg", _ZN7WebCore18JSHTMLImageElement15subspaceForImplERN3JSC2VME) +STUB( + "t67qIS7bNYU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEC2Ev) +STUB("t6AGbOV3ohE", _ZN3sce7Toolkit2NP2V212EventsClient5Event19MAX_SIZE_EVENT_NAMEE) +STUB("t6AHhkWu4mY", _ZN3sce4Json5ArrayC2Ev) +STUB("t6BJb3VdLF4", _ZN3sce7Toolkit2NP10IdDatabaseC2ERKNS1_15CommunicationIdERKNS1_9NpTitleIdEPKc) +STUB("t6BZr+tUcec", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEEmmEv) +STUB("t6Keu-hK0us", _ZN3sce7Toolkit2NP2V27Ranking12FriendsRanksD2Ev) +STUB("t6NwIzt2IE8", sceApplicationKickCoredump) +STUB( + "t6R5OYhzsdk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEED2Ev) +STUB( + "t6Upjb-EoTU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("t6WodT2HRUc", _ZN12video_parser17cVideoProfilerMp416getThumbnailInfoEjPPNS_13VpMediaInfo_tE) +STUB( + "t6Z9F-Qtn7Y", + _ZN3sce2Np9CppWebApi14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBody8fromJsonERKNS_4Json5ValueE) +STUB( + "t6dkvbCGKcY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE7reserveEi) +STUB("t6egllDqQ2M", _ZNSt13bad_exceptionD1Ev) +STUB( + "t6g1hQXzLp0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEEC1EPSA_PNS2_10LibContextE) +STUB("t6haf4s-eE0", fstatat) +STUB( + "t6mhEex56+Y", + _ZThn24_N9Inspector22InspectorDebuggerAgent15searchInContentERN3WTF6StringERKS2_S5_PKbS7_RNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol12GenericTypes11SearchMatchEEENS1_13DumbPtrTraitsISE_EEEE) +STUB("t6wavVJoaKI", _ZN7WebCore14lineBreakTableE) +STUB( + "t6zhCIr1+X8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEE5resetEPS9_) +STUB("t7-VbMosbR4", sceGnmRegisterGnmLiveCallbackConfig) +STUB("t7GoRkoarko", _ZN3sce2Np9CppWebApi15Personalization2V15Error8fromJsonERKNS_4Json5ValueE) +STUB("t7JO426T0B8", _ZN7WebCore17FrameLoaderClientC2ERKS0_) +STUB("t7K3DznwwOU", WKBundleSetTabKeyCyclesThroughElements) +STUB( + "t7KXU1pSr8M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "t7KypxHT4ac", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_9Animation8FillModeEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB("t7M8dp4ejQs", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error25validationConstraintIsSetEv) +STUB( + "t7OTzQxoeD4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEixEm) +STUB("t7P0IxbIAoc", _ZN3sce7Toolkit2NP2V28Presence7Request11SetPresence18MAX_SIZE_GAME_DATAE) +STUB("t7PlZ9nt5Lc", sceAgcCbNopGetSize) +STUB("t7Rj-6hsPAs", _ZN12video_parser5vpcom6String5SplitERKSs) +STUB("t7Sao1Z9Vgc", _ZN9Inspector18InspectorHeapAgentD2Ev) +STUB("t7UEJrhojhk", _ZN3sce4Json5Value9referRealEv) +STUB("t7VRrJSesi4", __tsan_atomic128_exchange) +STUB("t7WE9mb1TB8", sceUsbdGetBusNumber) +STUB("t7Z7GPyzupk", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_15TrophyGroupInfoEE3getEv) +STUB("t7ZZDNA29kk", uprv_isInfinite) +STUB("t7ZnM1gdYv4", sceUpsrvUpdateAppdbForEap) +STUB("t7b6dmpQNiI", sceNpTusPollAsync) +STUB( + "t7biotnR6zw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEppEv) +STUB("t7cd-9uauro", _ZN7WebCore9HTMLNames19ontransitionrunAttrE) +STUB( + "t7h+EeaNd0A", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "t7ly31b0Ndc", + _ZN7WebCore17LibWebRTCProvider19unregisterMDNSNamesEN3WTF16ObjectIdentifierINS_22DocumentIdentifierTypeEEE) +STUB( + "t7oQehTwARU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEC1EPNS2_10LibContextE) +STUB( + "t7pLBo3h+DE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEEC1Ev) +STUB("t7sxUY1f9+E", ft_raster5_renderer_class) +STUB( + "t7ttTIi8D8Y", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("t7wgZYusSnI", uldn_variantDisplayName_67) +STUB( + "t8-zRyLWOXE", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "t823lvIY9FE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "t84AiYnMwPg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE5beginEv) +STUB( + "t87txqZxvSI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "t89edC22WqI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE8pushBackERKS8_) +STUB("t8CPiqofH98", _ZN3sce2np10JsonParserC1Ev) +STUB("t8HI9sZ4TSM", glStencilOp) +STUB("t8PLXbBCiRA", sceAgcDriverGetWorkloadStreamInfo) +STUB( + "t8R7wcsTvYU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEcvbEv) +STUB( + "t8YYXzCCCKk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE7reserveEi) +STUB("t8Ybwsq4Bwk", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119ChildActivityStatusEEC2Ev) +STUB("t8YrYpCU5dg", + _ZN7WebCore15DatabaseTracker14deleteDatabaseERKNS_18SecurityOriginDataERKN3WTF6StringE) +STUB("t8af5bB+uos", mono_aot_Sce_PlayStation_BclExtensionsunbox_trampolines_end) +STUB( + "t8be3DFxkvA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEEaSERS9_) +STUB( + "t8dlNjod35I", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEEdeEv) +STUB("t8fZIYwdZUw", mono_array_new) +STUB("t8iGsBWithY", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking10UsersRanksEE19setCustomReturnCodeEi) +STUB("t8ieiuOIXN4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEED2Ev) +STUB("t8lPLT-KHqU", mono_arch_get_throw_trampoline) +STUB("t8pR4ug-os0", sceCompositorSetVirtualCanvasCommandFooter) +STUB( + "t8qcUSRKTQU", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo24hasxPsnAtomicOperationIdEv) +STUB("t8rMPQgl5dc", _ZN7WebCore10LayoutRect5uniteERKS0_) +STUB("t8sFCgJAClE", errx) +STUB( + "t8x35nWuR44", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE5emptyEv) +STUB("t8zhrbdsuoA", mono_aot_Sce_Vsh_Registryunbox_trampolines) +STUB("t9+wuaHoApA", mono_aot_Sce_Vsh_GriefReportplt_end) +STUB("t9-W9qSznuY", SwCtrlSinkStreamSetEOS) +STUB( + "t94+szusplQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEC1EPS8_) +STUB("t955rNVr4y4", mono_btls_x509_get_not_after) +STUB( + "t983U4BA2zY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "t98L+Xm0ES4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE5emptyEv) +STUB( + "t9AcO9Byp08", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE8pushBackERKS8_) +STUB( + "t9Co0qEKVqI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEEaSERKSA_) +STUB( + "t9EZoTE7cng", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("t9F9hDCrx8s", _ZN7WebCore20LowPowerModeNotifierD2Ev) +STUB( + "t9HbGqfK7Ac", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEEC1ERKS9_) +STUB( + "t9KFD4KPNmc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEC2EPNS2_10LibContextE) +STUB("t9MvsTzeGcs", _ZNK7WebCore8Document9sessionIDEv) +STUB("t9OApWMdsWU", _ZNK7WebCore16HTMLInputElement4sizeEv) +STUB("t9T0QM17Kvo", sceNgs2ParseWaveformUser) +STUB("t9T3rqRsy40", _ZN7WebCore18JSHTMLMediaElementD2Ev) +STUB("t9UsFLWjw7Y", _ZN7WebCore12ChromeClient24exitFullScreenForElementEPNS_7ElementE) +STUB( + "t9Yws2ro2vc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEE11release_refEv) +STUB("t9anqIXZiQ0", _ZN7Nicosia29ImageBackingTextureMapperImpl11flushUpdateEv) +STUB("t9bGoeZojHI", _ZN3sce7Toolkit2NP2V24Auth7Request11GetAuthCodeD2Ev) +STUB("t9cqEi3l2i8", sceDebugGetWaitingListOfUltRwlock) +STUB("t9joHosD1EA", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEED2Ev) +STUB("t9mt909J16c", _ZN3JSC7Symbols20Int8ArrayPrivateNameE) +STUB( + "t9tWAaJHuK0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEppEv) +STUB("t9uyR6Oqs5E", rgctx_fetch_trampoline_mrgctx_54) +STUB( + "t9v9QFzQSb0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE10setContextEPNS2_10LibContextE) +STUB("t9vVyTglqHQ", scePthreadBarrierWait) +STUB("t9wc8TjtPs0", + _ZN3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMapC2EPNS1_6Common10LibContextE) +STUB( + "t9xprzWi8dU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEmmEi) +STUB("t9z8U-64ERs", _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error9pathIsSetEv) +STUB( + "t9z8VIg2AlM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEC2Ev) +STUB("tA0yCbGfg1M", _ZN3sce7Toolkit2NP2V24Core7Request11MemoryPools21HTTP_MEM_MINIMUM_SIZEE) +STUB("tA2zuHFomr4", _ZN4Manx11MediaPlayer8durationEv) +STUB( + "tA32YquUY0g", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE7popBackEv) +STUB("tA4JXxjzLVA", _ZN9Inspector22RemoteAutomationTargetD1Ev) +STUB("tA7jn3E6Kp8", _ZN15AbstractStorage18DailymotionContentD0Ev) +STUB("tA9pgP1FzuY", _ZN7WebCore19TransformOperationsC2Eb) +STUB( + "tAFOiTg3Jlg", + _ZN15AbstractStorage18DailymotionStorage9GetForderERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_6FolderEE) +STUB( + "tAGC3Hz2pkI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEC2ERKS7_) +STUB( + "tAHrLQZukJE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEC2Ev) +STUB("tAJSGdhpxPg", _ZNK7WebCore29PerspectiveTransformOperation11perspectiveEv) +STUB("tAKsRU6tXBM", _Z38sceGpuDebuggerIsGpuDebuggingInProgressv) +STUB("tAM5bByjhWw", _ZNSo5flushEv) +STUB("tAOi95GIW5Y", _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeIPcPvEEC2Ev) +STUB( + "tARbDAYZ1Ug", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEppEi) +STUB( + "tATzPhqfSiw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEplEm) +STUB( + "tAVoI3BqaF0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEE11get_deleterEv) +STUB( + "tAWT9hbV96A", + _ZN9Inspector21InspectorRuntimeAgent20getCollectionEntriesERN3WTF6StringERKS2_PS4_PKiS8_RNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime15CollectionEntryEEENS1_13DumbPtrTraitsISF_EEEE) +STUB("tAhExWDSoQQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEEC1Ev) +STUB("tAiwTShd7M8", + _ZN3sce2Np9CppWebApi14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyD2Ev) +STUB( + "tAmLUBBgRQA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEC1EPKS8_) +STUB("tAoG7GBkUZ4", GetCurrentSrcId) +STUB("tAuQSNscAqg", WKPreferencesCreate) +STUB("tAv+Gv2kNyM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEC2Ev) +STUB("tAxnXpzDgFw", sceNpTrophySystemPerformRecovery) +STUB("tB0FMsDKaWc", + _ZN3sce2Np9CppWebApi7Matches2V120RequestTeamStatisticC1EPNS1_6Common10LibContextE) +STUB("tB3BB8AsrjU", sceNetEventCallbackGetError) +STUB("tB7JUWg6kMY", _ZNK7WebCore17FullscreenManager19isFullscreenEnabledEv) +STUB( + "tBA3quzEWSc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEC2EPS8_) +STUB( + "tBLocQUKq-w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEaSERKS9_) +STUB("tBOiS4Czg+Y", delegate_virtual_invoke_imt_11) +STUB("tBRj6JqsxsA", _ZN7WebCore16MIMETypeRegistry15getPDFMIMETypesEv) +STUB("tBVTv-0RQmQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEppEv) +STUB("tBcC0hyP--g", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEEdeEv) +STUB( + "tBeVpFFMMKU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB("tBmG8zjBnGc", _ZN22ScePssDecoderMP3_orbis19BufferedDecodeChunkEPKhjRjPsjS2_S2_) +STUB( + "tBq9yWcmwE0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEppEi) +STUB("tBtMurHd2m8", _ZNK7WebCore12ChromeClient17plugInExtraScriptEv) +STUB("tBw4xNkm5xY", _ZN7WebCore18platformStrategiesEv) +STUB("tC-fTUkwRsQ", _ZN7WebCore10XLinkNames8showAttrE) +STUB("tC0xEkmmrSY", mono_context_get_domain_id) +STUB("tCAFLc4j724", _ZN7WebCore16FrameLoadRequestC2EOS0_) +STUB( + "tCCDGA3b7DA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE5emptyEv) +STUB( + "tCCRO1u4Ag0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEC1Ev) +STUB("tCFbw1wGrqk", unlinkat) +STUB("tCHbBBMaRuM", u_strToPunycode_67) +STUB("tCJ0z971lFk", monoeg_g_timer_destroy) +STUB("tCMhTh7h8D4", FT_New_Memory) +STUB("tCOYIku29OE", curl_mime_headers) +STUB( + "tCQvzR5MPZM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEE7get_refEv) +STUB("tCQzG0iC8zw", sceKernelIccGetPowerNumberOfBootShutdown) +STUB("tCS9bOfyptA", utext_setup_67) +STUB( + "tCVnTKlIKgA", + _ZN9Inspector27InspectorFrontendDispatcher20activateExtraDomainsEN3WTF6RefPtrINS1_8JSONImpl7ArrayOfINS1_6StringEEENS1_13DumbPtrTraitsIS6_EEEE) +STUB("tCXJCVmBvp0", _ZN3JSC7JSArray3popEPNS_14JSGlobalObjectE) +STUB("tCaqZSzBy-s", + _ZNK3WTF6String25splitAllowingEmptyEntriesEDsRKNS_8FunctionIFvRKNS_10StringViewEEEE) +STUB( + "tCi2HGtNZYc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEED1Ev) +STUB("tCihLs4UJxQ", _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE4_RepES3_cm) +STUB("tCrHs952Gz0", ubidi_writeReverse_67) +STUB("tCw8Wu6dXkg", _ZN3JSC7Symbols31symbolIteratorGetterPrivateNameE) +STUB("tCzAJwzzF0I", _ZN9Inspector32ScriptProfilerFrontendDispatcher26programmaticCaptureStoppedEv) +STUB( + "tD+pzenBV-U", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEptEv) +STUB("tD06ETcZqgI", + _ZN3sce2Np9CppWebApi7Matches2V123RequestMatchTeamFactory7destroyEPNS3_16RequestMatchTeamE) +STUB("tD0GSIfddH0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17GetGameDataResultEE3setEv) +STUB( + "tD7xGIyqe00", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEEC1ERKSA_) +STUB("tDBjxghgDXc", + _ZNK3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse23getIsOfficiallyVerifiedEv) +STUB("tDDzvLlQ7CE", _ZN3WTF27protocolHostAndPortAreEqualERKNS_3URLES2_) +STUB( + "tDExYbmBmt4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEED2Ev) +STUB("tDHzkxsF60k", _ZN3sce7Toolkit2NP2V27NpUtils5IdMapC1Ev) +STUB( + "tDRu6NI8zIE", + _ZN7WebCore11DisplayList15DrawNativeImageC2ERKN3WTF6RefPtrI14_cairo_surfaceNS2_13DumbPtrTraitsIS4_EEEERKNS_9FloatSizeERKNS_9FloatRectESF_RKNS_20ImagePaintingOptionsE) +STUB( + "tDV0gQhJbs4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEneERKS9_) +STUB("tDfGV3gqBZs", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersC1ERS5_) +STUB("tDhVqVa-tvU", _ZN15AbstractStorage12SerializableD2Ev) +STUB("tDjU6UN7meM", sceRemotePlayClientRemoveController) +STUB("tDmwpod2EnU", _Z38NetworkInformation_GetDevPortIPAddressPl) +STUB("tDpnyx0AidQ", _ZNK3sce7Toolkit2NP9Utilities10FutureImpl8getErrorEv) +STUB("tDrC76+l4s8", _ZN3sce7Toolkit2NP15AppSTLAllocatorISbIcSt11char_traitsIcENS2_IcEEEEC2ERKS7_) +STUB("tDs31ASQGV8", _ZN3sce2npneERK12SceNpTitleIdRKNS0_9NpTitleIdE) +STUB("tDssQCH2syY", FT_Stream_GetOffset) +STUB("tDtjgaXYmuo", sceAppInstUtilInstallByPackage) +STUB("tDvJUBoe9WE", _ZN7WebCore16convertToIntegerIaEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB( + "tDxKK54nviE", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13boolean5IsSetEv) +STUB("tDzpTBJ5p+E", _ZNK9Inspector18InjectedScriptBase11scriptStateEv) +STUB("tE8O2yjJydE", _ZN12video_parser17cVideoOperatorMnvD2Ev) +STUB("tEDVOghTIbw", _ZN3WTF6Thread27exchangeIsCompilationThreadEb) +STUB("tEGD9ugK0w8", sceNpSessionServiceGetRunningGamePlayerSession) +STUB("tEMRrONRlXg", mono_class_from_mono_type) +STUB("tERtNxTopHQ", _ZN7WebCore20DecodeOrderSampleMap20findDependentSamplesEPNS_11MediaSampleE) +STUB("tEX0VLjVjaQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEEC2Ev) +STUB("tEXEVk+5tR8", jpeg_fdct_1x2) +STUB("tEaSuJ9bUwU", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsD2Ev) +STUB( + "tEawNYPhxYg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEEaSERKSA_) +STUB("tEayT5DVTv8", _ZN4IPMI4impl10ServerImpl10initializeEPKcPNS_6Server12EventHandlerEPvmmmb) +STUB( + "tEebRSTwQhE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEE11release_refEv) +STUB( + "tEgYdZ5JJxY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEneERKS9_) +STUB("tEhDOOiD+Lk", _ZN7WebCore21BackForwardController6goBackEv) +STUB( + "tEiZZ9v5A2Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEE5resetEPS6_) +STUB( + "tEitSUPeYQM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("tEjFmn-2SRE", + _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse19setCancellationTimeERKi) +STUB( + "tEn+OVW3iys", + _ZN7WebCore14ResourceHandle25loadResourceSynchronouslyEPNS_17NetworkingContextERKNS_15ResourceRequestENS_23StoredCredentialsPolicyERNS_13ResourceErrorERNS_16ResourceResponseERN3WTF6VectorIcLm0ENSB_15CrashOnOverflowELm16EEE) +STUB("tEqKiVelM9M", _ZTVN7WebCore11DisplayList6SetCTME) +STUB("tEshvgFXF68", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_26ActivityFeedCondensedStoryEED2Ev) +STUB("tEsohhOlYZY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEC1ERKS7_) +STUB("tEuHPAtxAcg", monoeg_g_free) +STUB("tEvDqkJ-z1E", __remainderl) +STUB("tEz4k-OKxdE", _ZN7WebCore8SVGNames7viewTagE) +STUB("tEz9h727kzw", _ZN7WebCore17FullscreenManager27setFullscreenControlsHiddenEb) +STUB( + "tF0jtg3c2Gs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE4sizeEv) +STUB( + "tF4iLLzeCTc", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody15setJoinDisabledERKb) +STUB("tF6GpBRiB-A", mtx) +STUB("tFD04DtJY+g", sceKernelGetBetaUpdateTestForRcmgr) +STUB( + "tFLd6fRdI+w", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "tFM+qm7RVPw", + _ZN9Inspector22InspectorDebuggerAgent16didSetBreakpointERKN3JSC10BreakpointERKN3WTF6StringERKNS_16ScriptBreakpointE) +STUB( + "tFO5HJyq5aA", + _ZN3sce2Np9CppWebApi14IdentityMapper2V342PsnWebError_error_validationConstraintInfo8setValueEPKc) +STUB( + "tFSpbM87rFE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEC1EPNS2_10LibContextE) +STUB("tFT0Peb2BCU", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession19expirationTimeIsSetEv) +STUB( + "tFWFxcN81k8", + _ZN7WebCore8Document17setFocusedElementEPNS_7ElementENS_14FocusDirectionENS0_22FocusRemovalEventsModeE) +STUB("tFY6zzpnlOs", _ZN4IPMI4impl11SessionImpl11tryDispatchEPvm) +STUB( + "tFaFjRy3qDw", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate15setPerFranchiseERKNS1_6Common12IntrusivePtrINS3_29MatchCompletionRatePropertiesEEE) +STUB( + "tFalGODIwGs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEEC1ERKSA_) +STUB( + "tFe8YsdlKyc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEC1EPNS2_10LibContextE) +STUB("tFe964qzGEM", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainerD1Ev) +STUB("tFgzEdfmEjI", __mulvsi3) +STUB("tFhQrz2mnCg", _ZN3JSC14JSGlobalObjectD2Ev) +STUB("tFnU-LMl1+c", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils13NetStateBasicEED2Ev) +STUB("tFpNQfD+SM8", _ZN3sce2Np9CppWebApi6Common18ResponseHeaderBaseD2Ev) +STUB( + "tFt-yGl3-xM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEplEm) +STUB( + "tFt9v6hO1Hg", + _ZN3sce2Np9CppWebApi7Matches2V134ResponseTeamMemberStatisticFactory7destroyEPNS3_27ResponseTeamMemberStatisticE) +STUB( + "tFuPAKkrjl8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEC1Ev) +STUB("tG+805b1Njk", pthread_set_defaultstacksize_np) +STUB( + "tG-AbytnhqI", + _ZNK3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody6toJsonERNS_4Json5ValueEb) +STUB("tG2rgh18duc", _deleteProtocolInfoListOneNode) +STUB("tG8pGyxdLEs", modfl) +STUB("tGD20G5g8bU", u_vformatMessage_67) +STUB( + "tGEoBfzsfAo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "tGF3E-CCPOY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEEC1ERSA_) +STUB("tGIL+vkTlJA", _ZN9Inspector32DebuggerBackendDispatcherHandlerC2Ev) +STUB("tGKaqH2rxA8", _ZN7WebCore11MediaPlayer15minTimeSeekableEv) +STUB( + "tGX+vN9LD4E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEEC2EPS6_PNS2_10LibContextE) +STUB( + "tGb5g0v-YIA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE5eraseENS2_8IteratorIS6_EERS9_) +STUB( + "tGbu30qyHkA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEixEm) +STUB( + "tGcdUkF8c2E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEppEv) +STUB("tGeOQLpMGgA", ubrk_previous) +STUB( + "tGhGEEMH5IY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEmmEv) +STUB("tGiGSvZ9oz4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEC2Ev) +STUB("tGkzQrFgT3s", mono_mempool_destroy) +STUB("tGlf9htYirI", rgctx_fetch_trampoline_rgctx_66_p) +STUB("tGmYdLIYT98", FT_Get_Glyph_Name) +STUB( + "tGoR77UmuOw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEdeEv) +STUB( + "tGvdX6NItfU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEC2EPNS2_10LibContextE) +STUB( + "tGzlCipWs60", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody12getConditionEv) +STUB("tH+nf8PVkP8", sceMatReallocPoolMemory) +STUB("tH-+IbGsGNE", _ZNK9Inspector28InspectorScriptProfilerAgent18isAlreadyProfilingEv) +STUB( + "tH2xOYetupc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEneERKSA_) +STUB("tH3Xx0hHX6I", _ZThn32_N7WebCore14DocumentLoader14notifyFinishedERNS_14CachedResourceE) +STUB("tHC-+Eiiy1k", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEED2Ev) +STUB("tHCoD1Tx+ac", + _ZN7WebCore11JSDOMWindow14queueMicrotaskERN3JSC14JSGlobalObjectERNS1_9CallFrameE) +STUB("tHD5FPFXtu4", sceNpMatching2SignalingGetConnectionStatus) +STUB("tHE2mqrhR4c", sceShellCoreUtilGetDeviceStatus) +STUB("tHOriQLfXsY", SSL_set_connect_state) +STUB( + "tHRdzy7gP0c", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEdeEv) +STUB("tHS0+SqTtLI", _ZN7WebCore17JSDOMGlobalObject6s_infoE) +STUB( + "tHVFPeIlZyc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE3endEv) +STUB( + "tHYzLzaaP6g", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEneERKS7_) +STUB("tHaO36kincQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEED1Ev) +STUB("tHcsBV+HAh4", _ZN3sce2Np9CppWebApi14SessionManager2V127PostGameSessionsRequestBodyD2Ev) +STUB("tHeVbJMcEv8", sceDebugWriteThreadRegister) +STUB("tHfJqKINFR8", _ZN3sce2Np9CppWebApi6Common8IteratorIdEC2EPd) +STUB("tHiLdIY4GNk", mono_aot_Sce_Vsh_VideoRecordingWrappermethod_addresses) +STUB("tHkyOSFwdIc", _ZNK7WebCore19ProtectionSpaceBase7isProxyEv) +STUB("tHn68ic3YC4", WTFReportFatalError) +STUB("tHnYDUM6SpQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator16getJoinTimestampEv) +STUB( + "tHsroet98oc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEE7add_refEv) +STUB("tI+vyqSJZRY", sceApplicationEndSclkChange) +STUB( + "tI-J0JstHG0", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("tI-w0kRXieM", WKPageRubberBandsAtRight) +STUB("tI0+aDKcS0w", _ZTVN3JSC22FullGCActivityCallbackE) +STUB("tI5IAnzhn2U", _ZN3JSC11IsoSubspaceD1Ev) +STUB("tI8jLI69Eps", mono_aot_Sce_Vsh_PartyCommonunbox_trampolines_end) +STUB( + "tI9hD6Dxa4I", + _ZN7WebCore21JSTextTrackCueGenericC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_19TextTrackCueGenericENS6_13DumbPtrTraitsIS8_EEEE) +STUB("tIBqJnfzdQ4", _ZN3JSC10Identifier3addEPNS_2VMEPKc) +STUB("tIBrrdbjJBA", sceMatMemoryPoolCommit) +STUB("tIFiGM-V5FM", mono_assembly_get_name) +STUB("tIFx9bIsbtY", _ZN3sce7Toolkit2NP2V211UserProfile10NpProfiles5resetEv) +STUB("tIHFKkXNm7E", _ZN3WTF11Persistence7Encoder6encodeEd) +STUB("tIIRbXa2ZOk", _ZN15AbstractStorage7Service5StartEv) +STUB("tIOEarKV-to", _ZN7WebCore15JSDOMWindowBase22javaScriptRuntimeFlagsEPKN3JSC14JSGlobalObjectE) +STUB( + "tIOSD17DimQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEppEi) +STUB("tISoK3yWWkk", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V117ResponseMatchTypeEEC2Ev) +STUB( + "tIVHkfsRvJ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEED1Ev) +STUB( + "tIWNj5Uxdj8", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V117ReputationFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_10ReputationEEE) +STUB( + "tIXS5ilXknA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEeqERKSA_) +STUB("tIXkiw8aHoM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEC2Ev) +STUB("tIYf0W5VTi8", sceScreenShotDisable) +STUB( + "tIaXrMzjP4E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEE6assignEPS7_PFvS9_EPNS2_10LibContextE) +STUB("tIdXUhSLyOU", sceSystemServiceAddLocalProcessForPs2Emu) +STUB("tIeRJikd80s", _ZN7WebCore11MemoryCache24pruneDeadResourcesToSizeEj) +STUB("tIhsqj0qsFE", free) +STUB( + "tIibxzxWkWM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE3endEv) +STUB("tIkZcQS39gU", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody8getLimitEv) +STUB("tImUgGSSHpc", sceSystemServiceActivateHevcTerm) +STUB("tIo9oybpiyU", _ZN3JSC8Bindings8Instance16newRuntimeObjectEPNS_14JSGlobalObjectE) +STUB("tIoaIHr7FF8", mono_aot_Sce_Vsh_ProfileCacheunbox_trampolines_end) +STUB( + "tIzpCp04BFQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEEcvbEv) +STUB("tJ2EMNwxLic", _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse17matchResultsIsSetEv) +STUB("tJ9NnDfCmms", + _ZN7WebCore20DecodeOrderSampleMap23findSampleWithDecodeKeyERKSt4pairIN3WTF9MediaTimeES3_E) +STUB("tJ9kX6guf3I", sceMbusDumpAppInfo) +STUB( + "tJFJev3-d60", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetInteger5Ev) +STUB("tJIBW+ULF6Y", _ZN3sce7Toolkit2NP2V24Core19JsonMemoryPoolStatsD1Ev) +STUB("tJMAm9ZBelo", + _ZN3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinitionD1Ev) +STUB( + "tJNNBAQ4-1Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("tJQluywQAJw", _ZN3JSC7Symbols40promiseResolveThenableJobFastPrivateNameE) +STUB( + "tJS4UxfNdnw", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("tJU-ttrsXsk", _ZNSiD1Ev) +STUB("tJc2S26es-Q", _ZN7WebCore6JSNodeC1ERKS0_) +STUB("tJi9lnN2N7M", _ZN7WebCore12SharedBuffer6appendERKS0_) +STUB( + "tJsO066eZKc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEC1EPKS8_) +STUB( + "tJtkOUSnCD8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE4initEv) +STUB( + "tJy9TiP9qB8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEcvbEv) +STUB("tJzhs8Af+Cc", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12string8IsSetEv) +STUB("tK1QsvfrOq8", _ZN3sce2np14JsonNumberImplC2EP14SceNpAllocator) +STUB("tK43eONuPyM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEC2Ev) +STUB("tK7bQQRz-FM", _ZN7WebCore27ScrollingStateScrollingNode15setScrollOriginERKNS_8IntPointE) +STUB("tK9HQgUWmuA", mono_aot_System_ServiceModelunbox_trampoline_addresses) +STUB("tKB-k8XkvjY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEC2EPS8_) +STUB( + "tKFrG0f4Hds", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEppEv) +STUB( + "tKGKVNdBsFY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEEC2Ev) +STUB("tKKSuKEZC00", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEED2Ev) +STUB( + "tKL0j+bk0is", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEneERKS9_) +STUB("tKLmVIUkpyM", sceImeConfirmCandidate) +STUB( + "tKMSfKFKcCA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEEC2Ev) +STUB("tKSmk2JsMAA", sceAudioPropagationSourceSetAudioPath) +STUB( + "tKTsWt8FRTA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("tKaE15lxeA8", _ZN3WTF10TextStreamlsEi) +STUB("tKb1NGqDL3o", sceDepthDisableHeteroMode) +STUB("tKdGd0-scmA", mono_print_unhandled_exception) +STUB("tKfRuHiYTeM", __sanitizer_ptr_cmp) +STUB( + "tKmhQVaQD7w", + _ZN7WebCore10JSLocationC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_8LocationENS6_13DumbPtrTraitsIS8_EEEE) +STUB("tKmks3TRYtY", ucol_getContractionsAndExpansions_67) +STUB("tKnnOFtstc8", __asan_unpoison_memory_region) +STUB( + "tKqy5+7rLuk", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("tKumjQSzhys", sceAudioDeviceControlGet) +STUB("tKv2udX-bTw", _ZN3JSC16IsoSubspacePerVMD1Ev) +STUB("tKx8sTtdtpk", _ZN7WebCore24CoordinatedGraphicsLayer15setDrawsContentEb) +STUB("tKynE51F0QE", + _ZN7WebCore6DOMURL15revokeObjectURLERNS_22ScriptExecutionContextERKN3WTF6StringE) +STUB("tKzyAw3ywjo", _ZN3sce2Np9CppWebApi6Common6String8copyFromEPKc) +STUB( + "tL+UakQgtRo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEEptEv) +STUB("tL2AEPejVQE", sceAudioPropagationPathGetNumPoints) +STUB("tL78UsUiY0k", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEE7get_refEv) +STUB("tLB5+4TEOK0", putc) +STUB("tLBY9RqvLDU", _ZN7WebCore24CoordinatedGraphicsLayer11syncFiltersEv) +STUB("tLC+H-hAaGk", mono_aot_Sce_Vsh_Np_AppInfoplt) +STUB( + "tLCK4GJe9jY", + _ZN3sce2Np9CppWebApi14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyC2EPNS1_6Common10LibContextE) +STUB("tLDeuoj2F5Y", _ZN7WebCore7Element17removeAttributeNSERKN3WTF12AtomicStringES4_) +STUB( + "tLDy3c2V7zw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEneERKS9_) +STUB("tLFTpZ4SVLw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEED2Ev) +STUB( + "tLH4HdObeNQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB("tLJjunCGCQI", _ZN3WTF9WorkQueue13dispatchAfterENS_7SecondsEONS_8FunctionIFvvEEE) +STUB("tLL3OC-mrCg", mono_class_is_enum) +STUB("tLLRdXuJrhQ", ucnv_fixFileSeparator_67) +STUB("tLTma0k0U3E", sceAgcDriverUserDataImmediateWritePacket) +STUB( + "tLYsjuz2SeY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEaSERKS9_) +STUB("tLZIrkonAeY", mono_aot_Sce_Vsh_ShareGuideSceneplt) +STUB( + "tLj505n8c6M", + _ZN7WebCore15ContextMenuItemC2ENS_19ContextMenuItemTypeENS_17ContextMenuActionERKN3WTF6StringEPNS_11ContextMenuE) +STUB( + "tLjIQU2XbfU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEEC1ERKSA_) +STUB("tLjcWeVfcJg", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11ProductInfoEE10deallocateEPS3_m) +STUB( + "tLsXC-ruzB0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("tLtIJWgGINI", _ZN15AbstractStorage7StorageC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("tLx8lvzU-ic", sceNpSessionSignalingInitializeWithPort) +STUB( + "tLyPG5q2eEM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE5beginEv) +STUB( + "tM6KqH1h0v8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("tM82T9tK-Rw", _ZNSt15basic_streambufIcSt11char_traitsIcEED0Ev) +STUB( + "tM8z3ZypBGM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEE7get_refEv) +STUB("tMAkKsnMDb0", toup_tab) +STUB("tMAxWmbzRZM", _ZNK7WebCore9FrameView22absoluteToDocumentRectENS_9FloatRectEN3WTF8OptionalIfEE) +STUB("tMIB6CLPWpo", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEC1Ev) +STUB( + "tMKnbwt1yZI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEEaSERSA_) +STUB("tMWlx2AgEiY", _ZN7bmalloc12IsoTLSLayout3addEPNS_11IsoTLSEntryE) +STUB("tMYHEVj4j+o", sceFiosSuspend) +STUB("tMYNTHCKtXI", mono_aot_System_Reactive_Interfacesunbox_trampolines) +STUB("tMYQaTa9te0", qr2) +STUB( + "tMYcgWa17hI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEEC1ERKS9_) +STUB("tMejy0jA0N8", _ZN3WTF8JSONImpl9ArrayBaseC1Ev) +STUB( + "tMgB+M+Mjzc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEEdeEv) +STUB("tMgpmzMA4Zc", sceMusicPlayerServiceSetAudioVolume) +STUB("tMgsVupCT8w", _ZN7WebCore9HTMLNames20ondurationchangeAttrE) +STUB( + "tMjZV2vfKm0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEplEm) +STUB( + "tMk+l0ayDPg", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V125FrequentlyMutedProperties9setInGameERKNS1_6Common12IntrusivePtrINS3_28FrequentlyMutedInGameMetricsEEE) +STUB( + "tMk8vvJaqEA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEE5resetEPS7_) +STUB( + "tMkOO5VhiDg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE6resizeEj) +STUB("tMkgUvy3XaQ", _ZN7WebCore4Page14layoutIfNeededEv) +STUB("tMll44TLd3o", _ZN3sce2Np9CppWebApi12Leaderboards2V15Entry7setPcIdERKi) +STUB("tMlqtsKLCNs", _ZN7WebCore8SVGNames10pointsAttrE) +STUB( + "tMqBmVagvbw", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Runtime15PropertyPreview7SubtypeEEESt8optionalIT_ERKN3WTF6StringE) +STUB( + "tMqRu-T4wxo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEE5resetEPS9_) +STUB("tMsAp7GTcPU", _ZN7WebCore8SVGNames32glyph_orientation_horizontalAttrE) +STUB("tMuzuZcUIcA", sceSystemServiceResumeLocalProcess) +STUB("tMyRfRbu-90", _ZN9Inspector21DOMFrontendDispatcher20pseudoElementRemovedEii) +STUB( + "tMyw9nvz7PE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEEcvbEv) +STUB("tMzCmRNHFyQ", Java_java_io_FileSystem_getFileSystem) +STUB( + "tN5kOlh4vdI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEEaSERSA_) +STUB("tN9h-eGhruY", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEED1Ev) +STUB("tNGIaEi-9HE", mono_metadata_properties_from_typedef) +STUB("tNJjozY-ivY", _ZN7WebCore24parseXFrameOptionsHeaderERKN3WTF6StringE) +STUB( + "tNKVf6A3Vwk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("tNOlmxee-Nk", sceImeVshSetCaretIndexInPreedit) +STUB("tNR5qosldvI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEaSERKS7_) +STUB("tNROB7dPHHw", _ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamRankResultaSERKS4_) +STUB( + "tNWpbCUj1pk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEC2ERKS7_) +STUB("tNXC2h-miiI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEC1ERKS7_) +STUB("tNXfREP8F4I", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEmmEi) +STUB("tNZY3tIIo0M", sceUserServiceSetSystemLoggerHashedAccountIdClockType) +STUB("tNaDjIbVOwc", sceKernelWriteMapDirectWithGpuMaskIdCommand) +STUB( + "tNb5+oQza2M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEC2ERKS7_) +STUB("tNcUS+wrQ8c", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEED1Ev) +STUB("tNer1ID2n+0", _ZN3JSC7Symbols40tryGetByIdWithWellKnownSymbolPrivateNameE) +STUB( + "tNjHjBxPo7s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("tNkEUoHLZTo", _ZN3sce7Toolkit2NP2V26Friend12BlockedUsersD1Ev) +STUB( + "tNl-nWucfrk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEC2Ev) +STUB("tNn5WBkta60", sceAmprCommandBufferNop) +STUB("tNp-O7jY0g8", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainerC1ERS5_) +STUB("tNtJ+dT97aM", __asan_load2_noabort) +STUB("tNuT48mApTc", sceGnmPaHeartbeat) +STUB("tNyFsr+CzlE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEEcvbEv) +STUB("tNzfhCKsWCo", mono_aot_Mono_Data_Tdsjit_got) +STUB("tO+MzKT6aLU", _ZN3sce7Toolkit2NP15AppSTLAllocatorI16SceNpTusVariableEC1ERKS4_) +STUB("tO-l2H+brh4", mono_shared_mempool_get_allocated) +STUB( + "tO27rPADLNY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE21intrusive_ptr_add_refEPS9_) +STUB("tO2b+Gu2OW0", + _ZNK3sce7Toolkit2NP9Utilities6FutureISbIcSt11char_traitsIcENS1_15AppSTLAllocatorIcEEEE3getEv) +STUB("tO3zi5GOrgc", _ZN7WebCore9HTMLNames18accept_charsetAttrE) +STUB("tO4tw6Me0AQ", _ZN7WebCore9HTMLNames10lowsrcAttrE) +STUB("tO8DvyElInw", sceUsbStorageIsExist) +STUB( + "tO9I58zL4Ko", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEdeEv) +STUB( + "tOC4bvbIFTU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEEC1Ev) +STUB("tOEgO3XNm+o", sceVencCoreGetAuData) +STUB( + "tOExaqAXum4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEC2EPNS2_10LibContextE) +STUB("tOJ-WGFDt-Y", sceNpAsmClientCreateRequest2) +STUB( + "tOO0AcS4+mA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEED2Ev) +STUB( + "tOO2ffhgPHw", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13integer2IsSetEv) +STUB("tOUKGSFs7NY", _ZN7WebCore13CSSStyleSheet7addRuleERKN3WTF6StringES4_St8optionalIjE) +STUB("tOZ6fwwHZOA", sceRtcFormatRFC3339PreciseLocalTime) +STUB( + "tOadN80cvZs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("tOicWgmk4ZI", daylight) +STUB("tOjxcU5Sxf0", _ZN18scePssCAudioSystem20GetPlayerForResourceEjRjiiiji) +STUB( + "tOk-V6BhOBA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEE7get_refEv) +STUB("tOpKdHTbvFk", _ZN23sceMetadataReaderWriter10ParserInfoD2Ev) +STUB("tOpqyDyMje4", sceNpSignalingGetMemoryInfo) +STUB("tOqC+o20N34", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEEplEm) +STUB( + "tOr-31I3pXQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEEptEv) +STUB("tOr9C4XdXeM", utrace_vformat) +STUB("tOrRi-v3AOM", sceNetNtohll) +STUB( + "tP5PyYt4r5E", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEEiRNS2_10LibContextEPT_m) +STUB("tPEorGsctr8", Java_java_lang_ClassLoader_00024NativeLibrary_load) +STUB("tPHJi1jejKs", il2cpp_current_thread_get_top_frame) +STUB("tPHxFS+55pY", glReadPixels) +STUB( + "tPHzijz-GSE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "tPLFGuHAaQs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEdeEv) +STUB("tPMgXN+Gp0w", _ZNK7WebCore19ResourceRequestBase13isConditionalEv) +STUB( + "tPUqNylsYZM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEC1EPKS8_) +STUB( + "tPVAAV8uids", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEeqERKS9_) +STUB( + "tPW4AvaijAA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB("tPW8wH1Bn6Q", _ZN7WebCore9HTMLNames13truespeedAttrE) +STUB("tPWsbOUGO8k", shm_unlink) +STUB( + "tPX-jz1w27s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEE11release_refEv) +STUB( + "tPXE1G9m5Ns", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEeqERKS9_) +STUB("tPYT-kGbZh8", sceRemoteplayConfirmDeviceRegist) +STUB( + "tPYWe1g1NOY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE7popBackEv) +STUB("tPa8cN2Gb0g", _ZN7bmalloc3api29tryLargeZeroedMemalignVirtualEmmNS_8HeapKindE) +STUB("tPfQU2pD4-M", sceSystemServiceShowDisplaySafeAreaSettings) +STUB("tPkqsYtozCE", _ZN9Inspector31ConsoleBackendDispatcherHandlerD1Ev) +STUB("tPmBneGv-8Y", _ZNK7WebCore10ScrollView18rootViewToContentsERKNS_9FloatRectE) +STUB("tPmjSerIixo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEC2Ev) +STUB("tPn1i1B9LfU", _ZN3sce7Toolkit2NP2V27Session7Request4Join16DEFAULT_PRIORITYE) +STUB("tPqTZRv-IeA", jpeg_alloc_quant_table) +STUB( + "tPs0d36FjI0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE7reserveEi) +STUB("tPsGA6EzNKA", _ZNSt5ctypeIcED1Ev) +STUB( + "tPwOSJZBA6k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEED1Ev) +STUB( + "tPxWWmILYcM", + _ZN7WebCore17FrameLoaderClient52dispatchDidReconnectDOMWindowExtensionToGlobalObjectEPNS_18DOMWindowExtensionE) +STUB( + "tPzDJyzks5A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEEC1ERSA_) +STUB("tPzhAGqQaD4", JSObjectGetPropertyForKey) +STUB("tQ+ca-SFZIY", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_24RegisterGameDataResponseEE3getEv) +STUB("tQ2fT0hNFSY", _ZN3sce7Toolkit2NP2V26Friend12Notification16FriendlistUpdateC2ERKS5_) +STUB("tQ3tXfVZreU", sceNpTrophySystemGetLocalTrophySummary) +STUB("tQ6zNr0O6GA", sceFiosDateGetCurrent) +STUB("tQIo+GIPklo", _ZSt14_Xlength_errorPKc) +STUB("tQNolUV1q5A", swscanf_s) +STUB("tQOrMf4KtIo", _ZN3sce2np3ipc17ServiceIpmiClient12AbortRequestEii) +STUB( + "tQPonjG8d9s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEmmEi) +STUB("tQV0OYD101g", _ZN3JSC7Symbols29arraySpeciesCreatePrivateNameE) +STUB("tQd-CVQUoko", _ZN7bmalloc8FreeList14initializeBumpEPcj) +STUB( + "tQdMxjYquj0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE7popBackEv) +STUB( + "tQgPrFvN92g", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody21getTotalVariableCountEv) +STUB( + "tQkWECNWCmY", + _ZN3sce2Np9CppWebApi13InGameCatalog2V527ContainerRatingCountFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_20ContainerRatingCountEEE) +STUB( + "tQmwolkjshc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEEdeEv) +STUB("tQnqbIc4LUk", WKViewContextMenuItemSelected) +STUB("tQpOPpYwv7o", sceAudioInSetPortConnections) +STUB( + "tR+spxW0pUs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("tR-DbBNz49g", _ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_15NpSessionMemberEE8max_sizeEv) +STUB("tR6pYhfnTHs", WKPreferencesGetInspectorUsesWebKitUserInterface) +STUB("tRBeaJrpPiQ", + _Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm13DbPerfCounterE20SceRazorGpuBroadcast) +STUB("tRDWBd4G-8c", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17SetGameDataResultEE3getEv) +STUB( + "tRGwHkt1Pzo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEEC1ERSA_) +STUB("tRHP0V+ZrzQ", + _ZN3sce2Np9CppWebApi14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyD2Ev) +STUB( + "tRP7JoU5bGk", + _ZN3JSC7JSArray17defineOwnPropertyEPNS_8JSObjectEPNS_9ExecStateENS_12PropertyNameERKNS_18PropertyDescriptorEb) +STUB("tRPZufpBbYs", _ZNK7WebCore11MediaPlayer7seekingEv) +STUB("tRRjjk6gqzI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEE5resetEPS5_) +STUB("tRTGVdmiGzQ", uloc_toUnicodeLocaleType) +STUB( + "tRTiIr5Ch3k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEE7get_refEv) +STUB("tRVJLbW7c00", sceCloudClientTestConnection) +STUB("tRVc4zZBoGA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEEeqERKS7_) +STUB("tRVmIlyGUSA", sceFiosDebugSetTraceMask) +STUB( + "tRXLO8Rce40", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayer11setplayerIdEPKc) +STUB( + "tRbxPtzGw2g", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEeqERKS9_) +STUB("tRcD9zm4TQI", mono_object_hash) +STUB("tRdCmMXTagg", + _ZNK7WebCore22EmptyFrameLoaderClient31interruptedForPolicyChangeErrorERKNS_15ResourceRequestE) +STUB("tRdLlsyNo9g", sceDebugSetStepThread) +STUB( + "tRhY3UCz0s0", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V131NatConnectivityToMetricsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_24NatConnectivityToMetricsEEE) +STUB("tRhekl227Io", _ZNK9Inspector14ConsoleMessage6sourceEv) +STUB( + "tRif+V6BM0U", + _ZZSt9MakefacetISt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEESt8_LocinfoERT_T0_E3buf) +STUB("tRj5Mps8b0g", _ZN3JSC2VM19int32ArraySpaceSlowEv) +STUB("tRjEOZ3e0Tw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEC1Ev) +STUB( + "tRoPH6RcJ8o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE5clearEv) +STUB("tRrU4kb6AtE", _ZN3WTF11portAllowedERKNS_3URLE) +STUB("tRrh53bVLq4", _ZN3JSC19HeapSnapshotBuildernaEmPv) +STUB("tRtElxBLU-0", _ZN7WebCore6Path2DnwEm10NotNullTagPv) +STUB("tS3Zt0TJ7Ps", u_strToWCS_67) +STUB("tS4Vnaq2L4Y", _ZN3JSC7JSArray15copyToArgumentsEPNS_14JSGlobalObjectEPNS_7JSValueEjj) +STUB("tS5JwC4RP2k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEEC2Ev) +STUB("tS8-IO1AbCM", WKBundleSetMinimumLogicalFontSize) +STUB( + "tS90R6tXXa8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEEC2Ev) +STUB("tS9cMOapHWU", WKBundleNodeHandleCopyHTMLIFrameElementContentFrame) +STUB("tSBxhAPyytQ", sceAgcDcbSetNumInstances) +STUB("tSEVQ2wu6Q8", sceDebugReadProcessRegister) +STUB("tSFK-c43YAI", sceKernelGetSocClock) +STUB("tSFoKsNPwds", _ZN7WebCore36ISOProtectionSystemSpecificHeaderBoxC2Ev) +STUB("tSHtCJTrxnk", OBJ_sn2nid) +STUB("tSM6+q9HRmU", _ZN7WebCore11MediaPlayer32acceleratedRenderingStateChangedEv) +STUB( + "tSNPCWN3ppU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("tSNvjtWkIfQ", _ZN7WebCore9FrameView8addChildERNS_6WidgetE) +STUB("tSODkniGpoE", sceCesUtf32beToEucKr) +STUB("tSRqQ-+Y4PE", _ZN3sce4Json6ObjectC2ERKS1_) +STUB( + "tSVK+cKeOH4", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE5getIdEv) +STUB("tSYd7MXN0yQ", sceNetApctlStartWithRetry) +STUB("tSeXchsZYm4", pss_code_mem_alloc) +STUB( + "tSedViyjopQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEC2ERKS7_) +STUB( + "tShtKH+FF6s", + _ZN9Inspector26AnimationBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "tSiAUT8rW9I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEEC2Ev) +STUB( + "tSidO7-ElY0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE21intrusive_ptr_sub_refEPS9_) +STUB("tSqQIT+jjsw", _ZN3sce7Toolkit2NP18GetUserFeedRequestC1Ev) +STUB("tSr+h942oXA", __tsan_external_read) +STUB( + "tSusGI+SAnk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEEC1ERS9_) +STUB( + "tSwKOFlx8sk", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitationsC2ERS5_) +STUB("tSxzKJq0HIw", _ZThn16_N9Inspector20InspectorTargetAgentD0Ev) +STUB( + "tSzLFOXh+pU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE5abortEv) +STUB("tSzrgOU29Pk", _ZN3JSC4Heap17isValidAllocationEm) +STUB("tT+OeNyAeKE", mono_aot_Sce_Vsh_Gls_GlsSharedMediaViewplt_end) +STUB( + "tT9ldmMROHM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEE11get_deleterEv) +STUB("tTBDMlVQIo0", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead17unsetJoinDisabledEv) +STUB("tTC3WlZSb4Q", + _ZN9Inspector22InspectorDebuggerAgent8didPauseEPN3JSC14JSGlobalObjectENS1_7JSValueES4_) +STUB("tTDqwhYbUUo", _Makeloc) +STUB( + "tTE8qfYDXy8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEEC2Ev) +STUB("tTImOZcDu4o", _ZNK3sce2Np9CppWebApi7Matches2V120ReportResultsRequest17getNpServiceLabelEv) +STUB("tTLEJS3+OIM", WKHTTPCookieStoreGetTypeID) +STUB("tTS5kgFcjWM", _ZN7WebCore9HTMLNames13maxlengthAttrE) +STUB("tTW6TdBv6wo", _ZN3WTF13printInternalERNS_11PrintStreamEx) +STUB("tTXCDT7IfKE", _ZN7WebCore11DisplayList4SaveD1Ev) +STUB( + "tTXCyBlhXHM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEED1Ev) +STUB( + "tTYWTBIqG88", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("tTZ+kreIIqI", _ZNK3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResults9getTeamIdEv) +STUB( + "tTZZUbreazw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEEaSERSB_) +STUB("tTbDAeQuIxs", _ZN7WebCore10FileSystem19filesHaveSameVolumeERKN3WTF6StringES4_) +STUB( + "tTdmfMMmjJQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEE3getEv) +STUB( + "tTfdZdopzlo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEaSERS7_) +STUB( + "tTt4q-cPOXg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEC2EPS8_) +STUB("tTtbdC1ovVk", unum_getTextAttribute_59) +STUB( + "tTwsK2zSA5U", + _ZN3sce2Np9CppWebApi14SessionManager2V168PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_12JoinableUserEEEEEPNS9_INS3_61PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEE) +STUB("tTxh9o6sVLI", _ZN3sce7Toolkit2NP2V27Ranking7Request15GetFriendsRanksC2Ev) +STUB("tU3aRFH+log", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE5emptyEv) +STUB( + "tU4wMxPL4cw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEptEv) +STUB( + "tU8F2l1kCmI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEE6assignEPS7_PFvS9_EPNS2_10LibContextE) +STUB( + "tU8u32gOIlU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEEC2ERKSA_) +STUB( + "tUAia+oO3bQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEEaSERSA_) +STUB( + "tUCS1NimIjQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEED1Ev) +STUB( + "tUCkdNODRds", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE10setContextEPNS2_10LibContextE) +STUB("tUJ648pgEyc", il2cpp_class_from_system_type) +STUB( + "tUJBKMv+thY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE21intrusive_ptr_add_refEPS7_) +STUB("tUJHNKZmFYg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEEC1ERKS6_) +STUB("tUT0r9LCo9g", _ZNK3sce2Np9CppWebApi12Leaderboards2V122GetRankingResponseBody12entriesIsSetEv) +STUB( + "tUVOb558hHY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("tUcY4ZhaAqs", ubidi_getLogicalMap_67) +STUB("tUfrHpMgwBk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEEC2EPNS2_10LibContextE) +STUB("tUgT33RRx2w", _ZN3sce2Np9CppWebApi10Activities2V114UserActivities5ErrorD2Ev) +STUB( + "tUiLfUhq85s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEEaSERKSA_) +STUB("tUiWdAiCcc4", _ZN3sce2Np9CppWebApi7Matches2V17Subtask9setStatusERKNS3_13SubtaskStatusE) +STUB( + "tUnPaoa2FSQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V128PostGameSessionsResponseBody6toJsonERNS_4Json5ValueEb) +STUB("tUo2aRfWs5I", _ZNSt14numeric_limitsIeE14max_exponent10E) +STUB( + "tUpt3GJb9ZY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEEC2Ev) +STUB( + "tUwfiXbOkoc", + _ZN3sce2Np9CppWebApi14SessionManager2V137PostPlayerSessionsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_13PlayerSessionEEEEEPNS9_INS3_30PostPlayerSessionsResponseBodyEEE) +STUB("tV18n8OcheI", sceNpTrophySystemRemoveAll) +STUB("tV3Hpka3rcg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEEaSERS6_) +STUB("tV3N4LyIutE", sceSystemLogger2DeliveryTerminate) +STUB( + "tV9qXAjqXkk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEC2Ev) +STUB( + "tVAnG4P+Zvs", + _ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime18PropertyDescriptorEE11runtimeCastEON3WTF6RefPtrINS5_8JSONImpl5ValueENS5_13DumbPtrTraitsIS8_EEEE) +STUB("tVBpsmZQvjI", + _ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errorsC2EPNS1_6Common10LibContextE) +STUB("tVCSUib8C4Y", sceKernelGetChildApp) +STUB( + "tVCtmnhUdkg", + _ZN3JSC14ProtoCallFrame4initEPNS_9CodeBlockEPNS_14JSGlobalObjectEPNS_8JSObjectENS_7JSValueEiPS7_) +STUB("tVEdZe3wlbY", sceGnmGpuPaDebugLeave) +STUB("tVGIPxZgQr4", + _ZN7WebCore16isEndOfParagraphERKNS_15VisiblePositionENS_27EditingBoundaryCrossingRuleE) +STUB("tVHE+C8vGXk", _ZTVSt8bad_cast) +STUB( + "tVIThZIc1Ts", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEE11release_refEv) +STUB("tVJpWGFi-+M", SSL_set_ex_data) +STUB("tVYTVNDLSl4", sceCesGbToUtf32be) +STUB("tVaQLuaFe0I", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEE3getEv) +STUB( + "tVgwYjogi+M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEC2EPS8_) +STUB( + "tVjQCobKSaE", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("tVkX3Yby7Y0", unorm_concatenate_67) +STUB("tVnfe7+IZEk", _ZN7Nicosia16SceneIntegrationD1Ev) +STUB("tVqWH4ZUChg", _ZN3sce7Toolkit2NP2V28Matching17AttributeMetadataC2Ev) +STUB( + "tVrcG969VUg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("tVwhmwnT3tY", rgctx_fetch_trampoline_mrgctx_71) +STUB("tVxmPrBJufE", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Wordfilter16SanitizedCommentEE5resetEv) +STUB( + "tW8YR8wpOpc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEC2Ev) +STUB("tW9W+CAG4FE", sceAcmBatchStartBuffer) +STUB("tWBYHiUxfGM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody8fromJsonERKNS_4Json5ValueE) +STUB("tWES3w99BPs", _ZN7WebCore17CSSPrimitiveValue14setStringValueENS_11CSSUnitTypeERKN3WTF6StringE) +STUB("tWFPPuAJxks", scePthreadGetcpuclockid) +STUB("tWI4Ej9k9BY", __negdf2) +STUB("tWIbltNkRvU", WKPageSetPageFindClient) +STUB("tWKhEaNvFCc", _ZNK7WebCore14ScrollableArea17totalContentsSizeEv) +STUB( + "tWMIEzsdIOs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEmmEi) +STUB("tWN91o4uKzw", _ZN7WebCore15AffineTransform5blendERKS0_d) +STUB("tWS4uYFTU0M", sceFiosFHTruncateSync) +STUB( + "tWSiyWDeAvY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEEC1ERSA_) +STUB( + "tWVEX8YWQwI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("tWW+bu6jBPA", rgctx_fetch_trampoline_mrgctx_37) +STUB( + "tWZ9ofoWyc4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("tWiSgXov8GM", sceVdecswSyncDecodeOutput) +STUB( + "tWj64s-TYQ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("tWk0nSidNi4", _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetail7getviewEv) +STUB( + "tWmkaICuw1Y", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeOnlineId2AccountIdBatchaSERS5_) +STUB( + "tWn8HpQcYyo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEEdeEv) +STUB( + "tWnuhSX8tQM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEppEi) +STUB( + "tWoUcwGqOxE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("tWoe9IlGAhs", sceVideoRecordingStart) +STUB("tWpe8mmJswo", mono_shared_mutex_init) +STUB( + "tWtyj2fjWVk", + _ZN3sce2Np9CppWebApi11Matchmaking2V120ErrorResponseFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_5ErrorEEEPNS8_INS3_13ErrorResponseEEE) +STUB("tWzrZ7vvWIg", WKPreferencesCopySansSerifFontFamily) +STUB("tX+X7SrADMY", _ZN7WebCore15WindowEventLoop27breakToAllowRenderingUpdateEv) +STUB( + "tX0sOLDx5WU", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStats17setnpServiceLabelEj) +STUB( + "tX3xBBbBQN0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEE3getEv) +STUB("tX8ED4uIAsQ", __udivdi3) +STUB("tX9i8gWFw2E", Java_java_lang_SecurityManager_currentClassLoader0) +STUB( + "tXG8yaR6CZU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEE7add_refEv) +STUB("tXNLLCUCfOE", sceVideoCoreIfSetFunctionTableUnlimited) +STUB("tXNeek-WA+4", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13WhoLikedStoryEE10deallocateEPS3_m) +STUB("tXTYVHfJ3Ac", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEC1Ev) +STUB( + "tXVE6vrXktQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEEptEv) +STUB("tXXeQRUWwvU", _ZN3sce2Np9CppWebApi14ConnectAccount2V214PSNError_error10setMessageERKi) +STUB("tXf8m1pD2a4", + _ZN7WebCore12RenderWidget9setWidgetEON3WTF6RefPtrINS_6WidgetENS1_13DumbPtrTraitsIS3_EEEE) +STUB( + "tXgdzLuvd8k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEE7get_refEv) +STUB("tXhczWuQIls", _ZN3sce2Np9CppWebApi7Matches2V114ResponseMemberD1Ev) +STUB("tXjKU0zFtTU", mono_aot_Sce_PlayStation_HighLevel_UI2unbox_trampolines) +STUB( + "tXnQP-AjJKM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus8setOwnerERKNS1_6Common12IntrusivePtrINS3_5OwnerEEE) +STUB( + "tXsoMjBbA24", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEC2Ev) +STUB("tXwdR3KKGTY", _ZN7WebCore16TrackPrivateBaseD1Ev) +STUB( + "tXxHPSycl7A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEcvbEv) +STUB( + "tXz5e46oRnM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEdeEv) +STUB("tXzkpzXH9Ng", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEEixEm) +STUB( + "tY6KfsieVnE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEEC1ERKS9_) +STUB("tY7yQOR9-8s", glGetActiveUniform) +STUB("tYBLm0BoQdQ", _ZNSt10moneypunctIcLb0EEC1Em) +STUB("tYCFlMnA9Cg", + _ZNK3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends13isInitializedEv) +STUB( + "tYCRGwqj2k0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEC1EPS8_) +STUB("tYLQOjzG0RI", WKInspectorShowConsole) +STUB( + "tYOUz5pK1eQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEC2EPS8_) +STUB("tYPjyjJfs98", _ZN3sce7Toolkit2NP2V211UserProfile10NpProfilesC2ERKS4_) +STUB( + "tYSIjatqdec", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE10setContextEPNS2_10LibContextE) +STUB("tYTJIi4s6t0", cairo_get_operator) +STUB("tYUsTbbXrG0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils5IdMapEE12deepCopyFromERS7_) +STUB("tYVWcWDnctE", sceRudpListen) +STUB("tYX4PkoKBpk", ucsdet_getUChars_67) +STUB("tYXmk-1qlkA", _ZN23sceMetadataReaderWriter8Metadata8setFieldERKSsRKNS_5ValueE) +STUB("tYfl-tPCGXw", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_15TrophyGroupInfoEE3getEv) +STUB( + "tYkxaBl3luA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEE11release_refEv) +STUB("tYlRCuN-3Jo", _ZN3sce7Toolkit2NP23ChallengeGetItemRequestC1Ev) +STUB("tYlc1DAuIOE", sceSlimglSupportServerProcess) +STUB("tYmOHeWa4W0", _ZN3sce7Toolkit2NP2V27Ranking7Request13GetUsersRanksC1Ev) +STUB( + "tYrHq0BkIT4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEEcvbEv) +STUB( + "tYrTk2-QBFk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEeqERKS9_) +STUB( + "tYtZSHvXHso", + _ZThn24_N9Inspector22InspectorDebuggerAgent18continueToLocationERN3WTF6StringERKNS1_8JSONImpl6ObjectE) +STUB( + "tZ+2Lm15pOE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEED1Ev) +STUB("tZ1lckB5o2A", glDeleteTextures) +STUB("tZ2yplY8MBY", sceKernelGetPageTableStats) +STUB("tZ44OvX2XDY", _ZN3sce3pss4core7imaging4Font31NotifySystemConfigurationChangeEPKc) +STUB( + "tZBviK4b-Ng", + _ZThn16_N9Inspector21InspectorRuntimeAgent10saveResultERN3WTF6StringERKNS1_8JSONImpl6ObjectEPKiRNS1_8OptionalIiEE) +STUB( + "tZCRtmdcpS0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEEptEv) +STUB("tZCSL5ulnB4", sceGnmGetGpuInfoStatus) +STUB("tZDDEo2tE5k", sceAmprCommandBufferGetSize) +STUB("tZI-K0skIX0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEcvbEv) +STUB( + "tZKZbu0m8xY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEC2EPS8_) +STUB( + "tZQUpCDyt+0", + _ZN3sce2Np9CppWebApi13InGameCatalog2V514ContainerMedia9setImagesERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_5ImageEEEEE) +STUB( + "tZRVO66E8Og", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("tZSQ+VFbsxE", glUniform4fv) +STUB("tZTQnArQQsw", _ZN7WebCore12JSAudioTrack11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("tZUhORwFcsE", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEEptEv) +STUB("tZY4+SZNFhA", msync) +STUB( + "tZaMN9avrwI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEED1Ev) +STUB("tZdMwygCW2w", png_init_io) +STUB( + "tZe+f1d2cpQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEneERKS9_) +STUB("tZgU77v7J2c", _ZN3sce7Toolkit2NP20ChallengeRecvDetailsC1Ev) +STUB("tZifIaEReZ0", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEEixEm) +STUB("tZioKsu5pxs", _ZNK3sce3Xml3Dom8NodeList9getLengthEv) +STUB("tZj4yquwuhI", _ZNKSt7_MpunctIcE16do_decimal_pointEv) +STUB( + "tZkHl73EeN8", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("tZmrptYQSvQ", _ZN12video_parser18cMp4FFLHndlManager18getFF4OdSampleHndlEjj) +STUB("tZoBhu3Y-qY", _ZNK7WebCore10RenderText8textNodeEv) +STUB( + "tZpSnzYhp9Q", + _ZN9Inspector27DOMStorageBackendDispatcher18getDOMStorageItemsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("tZvtetuMmm0", uprv_compareInvEbcdicAsAscii_67) +STUB("tZxK5i13Vi0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEE7get_refEv) +STUB("tZyvY1I7uqk", _ZNK7WebCore16HTMLTableElement7captionEv) +STUB( + "ta-1ObY1TsI", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi42ParameterToPutGameSessionsSearchAttributesC2Ev) +STUB("ta-oGegHdTQ", sceDbgGetExecutablePath) +STUB("ta89HthrfEo", + _ZNK3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends9hasfilterEv) +STUB("ta8lASAxro4", _ZN3sce2npneERKNS0_4UserES3_) +STUB("taM+OFvIQOQ", uiter_setUTF8_67) +STUB( + "taM3cRkZT+Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEEcvbEv) +STUB("taQTPWjQxKw", _ULx86_64_stash_frame) +STUB("taRWhTJFTgE", sceKernelGetdirentries) +STUB("taRc5-z61so", _ZNK7WebCore19JSHTMLSelectElement7wrappedEv) +STUB("taVak8LhC1o", mono_aot_System_Netjit_got) +STUB( + "tabYYRHwzp4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE21intrusive_ptr_add_refEPS7_) +STUB( + "tabpiA7RwmI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEptEv) +STUB("tad-whnuQxI", uset_containsAllCodePoints_67) +STUB("tai-HSaPBZU", _ZN9Inspector28HeapBackendDispatcherHandlerC2Ev) +STUB("tajPa-5Fx9M", + _ZN7WebCore10JSLocation15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB("taqEUfh8XtI", _ZN3sce2Np9CppWebApi12Leaderboards2V15ErrorC1EPNS1_6Common10LibContextE) +STUB( + "tarMBBZmlyY", + _ZN3sce2Np9CppWebApi14SessionManager2V160PostGameSessionsSessionIdMemberSpectatorsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_28ResponseGameSessionSpectatorEEEEEPNS9_INS3_53PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEE) +STUB("tavzoCklAu4", _ZN3JSC4Yarr12errorToThrowEPNS_14JSGlobalObjectENS0_9ErrorCodeE) +STUB( + "tayzlhuZcno", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEC1EPS8_) +STUB( + "tazqejXZBa0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE3endEv) +STUB("tb++akeq9p8", _ZN7WebCore3URL25fileURLWithFileSystemPathERKN3WTF6StringE) +STUB( + "tb+NTSWJw74", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEE3getEv) +STUB("tb3cZTCl8Ps", sceContentExportFinish) +STUB("tbC6eRj2EoE", _ZN3JSC7Symbols25AggregateErrorPrivateNameE) +STUB( + "tbEiWBTUnLE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEaSERS7_) +STUB("tbFbj4oRbK8", mono_aot_Sce_Vsh_SyscallWrapperplt) +STUB("tbGlFkI2QxQ", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_6NpUserEED1Ev) +STUB("tbNCyh-W7zA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEC1ERS7_) +STUB( + "tbPywsJDdL8", + _ZN9Inspector22InspectorDebuggerAgent28schedulePauseOnNextStatementENS_26DebuggerFrontendDispatcher6ReasonEON3WTF6RefPtrINS3_8JSONImpl6ObjectENS3_13DumbPtrTraitsIS6_EEEE) +STUB("tbUtPuQKNcw", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchDetailC2Ev) +STUB( + "tbVDVMhArRQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEdeEv) +STUB("tbWxzNR07RQ", _ZNK3WTF9MediaTime4dumpERNS_11PrintStreamE) +STUB("tbXJrGyYTko", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15NpSessionMemberEEC2Ev) +STUB("tbeA-hlRlHc", _ZN15AbstractStorage15HttpTransactionC1Ev) +STUB("tbgoC5M0Sgg", uprv_dl_close_67) +STUB("tbhRqP+K-1c", _ZN3WTF13ReadWriteLock8readLockEv) +STUB( + "tbhXNZwWhfo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEC1EPS8_) +STUB( + "tblYR5gHnE8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEED1Ev) +STUB( + "tbpTX2oTlZ8", + _ZN7WebCore32ScrollingStateFrameScrollingNode21setContentShadowLayerERKNS_19LayerRepresentationE) +STUB("tbqWFB+UHMQ", + _ZGVZL14report_failure19_Unwind_Reason_CodePN10__cxxabiv115__cxa_exceptionEE4e_ti) +STUB( + "tbrfZNGB4Gs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEE7get_refEv) +STUB("tbs4tGxCa5E", _ZN7WebCore18MessagePortChannel14processForPortERKNS_21MessagePortIdentifierE) +STUB( + "tc+aJKgL9FU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEC2Ev) +STUB( + "tc1rmiwcvl0", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody23setTotalDataStatusCountERKi) +STUB("tc6OvKVVv+0", _ZNSt9_FacetptrISt10moneypunctIwLb1EEE6_PsaveE) +STUB("tc6mjkaUH9o", _ZN3WTF11Persistence7Decoder6decodeERi) +STUB( + "tc7YMGTjHZE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEmmEv) +STUB("tcBJa2sYx0w", __ltdf2) +STUB( + "tcCetlezJ5Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "tcEhUEM2ZKc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEaSERKS9_) +STUB( + "tcFXFni9QWM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEeqERKS9_) +STUB("tcLDimriUlI", FT_Get_Var_Design_Coordinates) +STUB("tcN0ngcXegg", j0) +STUB("tcSNPbqj3pk", sceNpGriefReportCdPost) +STUB("tcSjvPP2-4s", u_isspace) +STUB("tcUPZOxXdiE", sceFsGetClusterStatistics) +STUB( + "tcUWWTyqWSs", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi35ParameterToSetGameSessionProperties40setpatchGameSessionsSessionIdRequestBodyENS1_6Common12IntrusivePtrINS3_37PatchGameSessionsSessionIdRequestBodyEEE) +STUB("tcVQcBMJato", eglCreatePixmapSurface) +STUB("tcVeGFc80oQ", _ZN7WebCore37BasicComponentTransferFilterOperationD2Ev) +STUB("tcVi5SivF7Q", sprintf) +STUB( + "tcWfuozeqaE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEED2Ev) +STUB("tcXG96zu+a8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE8copyFromERKS7_) +STUB( + "tcZIun-aX0o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEED1Ev) +STUB("tcdvTUlPnL0", _ZNSt10moneypunctIcLb1EED0Ev) +STUB( + "tce2rQPPxPc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEEC1ERKSA_) +STUB("tcf9HUwNaX0", res_getArrayItem) +STUB( + "tck9g-yOqPg", + _ZN3sce4Json11Initializer28setGlobalTypeMismatchHandlerEPFRKNS0_5ValueENS0_9ValueTypeEPS3_S6_PvES7_) +STUB( + "tcl4gghIlJg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEE5resetEPS6_) +STUB("tcm8nRXZwNU", sceGameCustomDataDialogGetStatus) +STUB( + "tcnDVMG2Dpk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEplEm) +STUB("tcrzVOZGz9g", getpwuid) +STUB("td+DYvbbDfk", pthread_get_specificarray_np) +STUB("td3-B6sLCag", utrie2_get32) +STUB("td8GJFROaEA", _ZNK3sce2np4User9GetUserIdEv) +STUB("tdAZsC7MdHo", _ItL_pS4) +STUB("tdGo+EDYs3w", mono_metadata_nested_in_typedef) +STUB( + "tdM3DUX7eZU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "tdNvGJ1912I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE5clearEv) +STUB("tdPOA8QmW3Y", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable20unsetLastUpdatedUserEv) +STUB("tdQArULbNQk", sceNpSnsFacebookDialogInitialize) +STUB("tdT-m7BcuWI", _ZNK7WebCore26Matrix3DTransformOperation5cloneEv) +STUB("tdTeGlglz80", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEC1Ev) +STUB( + "tdWe9cUtIJY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE8pushBackERKS8_) +STUB( + "tdZXb5t2yic", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE3endEv) +STUB("tdcAqgCS+uI", mbstowcs_s) +STUB("tdcal7GAw5Q", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_22ConsumeChallengeResultEEC1Ev) +STUB("tdgoXqPSNKk", _ZNK3sce2Np9CppWebApi7Matches2V127ResponseTeamMemberStatistic11getPlayerIdEv) +STUB("tdh9Qm7Je4Q", _ZN3sce2Np9CppWebApi13InGameCatalog2V513ContentRating9setSystemEPKc) +STUB( + "tdhi24d4rSA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB( + "tdi4d4n7qLs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEC1Ev) +STUB( + "tdjexAqKMvw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEE3getEv) +STUB("tdkeGhuxqZM", _ZN7WebCore15CSSGroupingRule10insertRuleERKN3WTF6StringEj) +STUB("tdncLeu20ow", __tsan_get_current_fiber) +STUB("tdpqr1lzbOw", sceDebugGetApplicationList) +STUB("tdqlF-ReFI8", sqlite3_value_text) +STUB("tdt1pcVlfac", + _ZN3sce2Np9CppWebApi14SessionManager2V129GetPlayerSessionsResponseBody17getPlayerSessionsEv) +STUB("tdwyUqTenRI", _ZN3JSC4Heap18addToRememberedSetEPKNS_6JSCellE) +STUB( + "tdznos-Agzw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEeqERKS9_) +STUB("te+MBYMzDhY", scePthreadResumeAll) +STUB( + "te3jy7otMSM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEdeEv) +STUB( + "te3oD0RflPk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEEC1ERKSA_) +STUB("te7XXGBo6fY", _ZN3sce2Np9CppWebApi7Matches2V120RequestTeamStatisticD1Ev) +STUB("teCyKKZPjME", sceAudioOutStopSharePlay) +STUB( + "teEF1DNeEKo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEE3getEv) +STUB("teGoPWnEgd4", sceLncUtilIsAppSuspended) +STUB("teIqLgy2D+M", _ZN7WebCore12SameSiteInfo6createERKNS_15ResourceRequestE) +STUB( + "teKJVHyfvQE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE6resizeEj) +STUB("teLywa5jrbk", _ZN7WebCore16FrameLoadRequestC1EOS0_) +STUB("teMFfokLLkU", + _ZN7WebCore4Page28setOverrideViewportArgumentsERKN3WTF8OptionalINS_17ViewportArgumentsEEE) +STUB("teQaDxtEdIA", mono_aot_Mono_Dynamic_Interpreterunbox_trampolines_end) +STUB( + "teVVyNl4BWg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEC1EPKS8_) +STUB("teVnFAL6GNY", sceNpJsonParseInit) +STUB("tea1EXJiSB8", sceNpManagerIntGetAccessTokenViaImplicitFlow) +STUB( + "tecjhOr9WAs", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi42ParameterToPutGameSessionsSearchAttributes45getputGameSessionsSearchAttributesRequestBodyEv) +STUB( + "tehquu2BBP8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEEC1ERKSA_) +STUB("tei1IrlQ7Yg", _ZN10Deprecated11ScriptValueC2Ev) +STUB("teiItL2boFw", sceKernelReleaseFlexibleMemory) +STUB( + "teiV8wvtt18", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEE11release_refEv) +STUB("tesM6ViaX6M", sceNpAppLaunchLink2IntGetCompatibleTitleIdNum) +STUB("teuK4QnJTGg", sceNetCtlGetIfStat) +STUB( + "tewDXILmabo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE4termEv) +STUB( + "tewFk6K6aB8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody30setComparedLastUpdatedDateTimeERK10SceRtcTick) +STUB("texLPLDXDso", sceSystemStateMgrIsGpuPerformanceNormal) +STUB("tezktVy0WgY", usearch_next_67) +STUB( + "tf-NwugDexI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEC2EPS8_) +STUB( + "tf1-Mh5B6y0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB("tf25gBJ+feI", sceAppCheckerAbort) +STUB("tf3dP8kVauc", CERT_enumerateCRL) +STUB( + "tf5+y8ZjnQs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("tf5du8bk4BI", _ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriendsaSERS5_) +STUB("tf6au78SDqY", mono_aot_Sce_Vsh_Accessorplt) +STUB("tfFcPa1I5w8", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10ContainersEE12deepCopyFromERS7_) +STUB("tfIRAK171cg", uhash_setKeyHasher_67) +STUB("tfNbpqL3D0M", vsscanf_s) +STUB("tfQ0kbxb2nQ", _ZN7WebCore14DocumentLoader14notifyFinishedERNS_14CachedResourceE) +STUB( + "tfQgc4r4HQM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEC1EPS6_PNS2_10LibContextE) +STUB( + "tfTrGA8NvDY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEC1EPS8_) +STUB( + "tfVwUxH9AY0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEEC2Ev) +STUB( + "tffBZJOq+yg", + _ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRanking24hasgetRankingRequestBodyEv) +STUB("tfhHT4x-jEI", sceVideoCoreChangeDisplayStatus) +STUB("tfmEv+TVGFU", _ZGVNSt10moneypunctIwLb0EE2idE) +STUB("tfnVwz2tTuA", mono_get_exception_thread_interrupted) +STUB("tfqGvR6HbC4", sceFsInitMountLwfsOpt) +STUB("tft0vpf8GIs", _ZN7WebCore17JSHTMLLinkElementC1ERKS0_) +STUB( + "tfydseFQZ6s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "tfz3G0qyoAk", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10setString3EPKc) +STUB( + "tfzTwJY5xfg", + _ZN3sce2Np9CppWebApi14SessionManager2V138ResponseGameSessionMemberPlayerFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_25ResponseGameSessionPlayerEEEEEPNS9_INS3_31ResponseGameSessionMemberPlayerEEE) +STUB( + "tg42oMO6+Yc", + _ZN7WebCore12EventHandler40selectionExtentRespectingEditingBoundaryERKNS_16VisibleSelectionERKNS_11LayoutPointEPNS_4NodeE) +STUB("tg59cpaTwXM", mono_image_lookup_resource) +STUB("tg64lLYQyeY", _ZN12Mp4Retriever18processUdtaBoxMainEv) +STUB( + "tg7JVdTXeDY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEmmEi) +STUB( + "tgAlJR4d18k", + _ZN3WTF20ParallelHelperClient17runTaskInParallelENS_6RefPtrINS_10SharedTaskIFvvEEENS_13DumbPtrTraitsIS4_EEEE) +STUB("tgDoqJtpl7w", _ZN3sce7Toolkit2NP20CategoryBrowseParamsC1Ev) +STUB( + "tgMBjWUaHPw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE7reserveEi) +STUB("tgMVZH7ZyuQ", monoeg_assertion_message) +STUB( + "tgPSrk75t3c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEE5resetEPS9_) +STUB( + "tgPYoQPXM+E", + _ZN9Inspector25DebuggerBackendDispatcher17setOverlayMessageElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("tgPoC4+mOy4", sceTsGetNextAuInfo) +STUB("tggx5SZ5H+k", __asan_report_store1) +STUB("tgioGpKtmbE", _Mtx_init_with_name) +STUB( + "tgipLuHtoVw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEppEi) +STUB("tgoE87ZlQTo", _ZN3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponseD2Ev) +STUB( + "tgpbZU-29tQ", + _ZN7WebCore22HTMLFormControlElement13checkValidityEPN3WTF6VectorINS1_6RefPtrIS0_NS1_13DumbPtrTraitsIS0_EEEELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("tgqe6pejnj4", _ZN7WebCore15JSFetchResponse4infoEv) +STUB("tgt2iAIloys", WKPageGetBackForwardList) +STUB( + "tgu8Waf+7lw", + _ZN7WebCore31TextureMapperPlatformLayerProxy27activateOnCompositingThreadEPNS0_10CompositorEPNS_18TextureMapperLayerE) +STUB("tgvbJBuWcGY", __tsan_atomic16_load) +STUB("tgxvowtOtX4", SwCtrlManagerSetSRM) +STUB("th2Ae7bw-9U", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11ProductInfoEE7addressERKS3_) +STUB( + "th7zMKW-8OU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEppEi) +STUB("thA48N-0VwQ", FT_Stream_Free) +STUB( + "thCHipcOjPQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEE7get_refEv) +STUB( + "thD0bx3NMec", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEC2Ev) +STUB("thDTXTikSmc", _ZTSPKh) +STUB("thDt9upZlp8", sceHmdGetDeviceInformation) +STUB( + "thEN4CZrhfY", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionProperties12getsessionIdEv) +STUB("thFvRaPMBeg", sceFsDevpfsFetchMetaEntry) +STUB( + "thHphV6k9SY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEED1Ev) +STUB("thJiv7AgGXY", sceUlpMgrQueuePush) +STUB("thLNHvkWSeg", sceAudioInSetConnectionsForUser) +STUB( + "thNpav624xA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEC2EPS6_PNS2_10LibContextE) +STUB( + "thOrajbTcyc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEC1Ev) +STUB("thTS+57zoLM", sceHttpUriUnescape) +STUB( + "thWUG34JhnA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEptEv) +STUB( + "thXGszFCk80", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE5eraseENS2_8IteratorIS6_EERS9_) +STUB("thXqBd6xy1k", mono_aot_Sce_Vsh_LncUtilWrapperplt) +STUB("thbPcG7E7qk", sceGnmDrawIndexIndirectCountMulti) +STUB("thk14jReXAs", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13SessionMemberEE7addressERKS3_) +STUB( + "thyCVuVdvt0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "thzrpGw+y0A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEEcvbEv) +STUB("ti05wqo4hwA", _ZN9Inspector34DOMStorageBackendDispatcherHandlerC2ERKS0_) +STUB("ti2hAooRtQI", rgctx_fetch_trampoline_rgctx_84_p) +STUB( + "ti5XumbdCx0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEED2Ev) +STUB("ti74yN+Sg8o", _ZNK3JSC6DOMJIT9HeapRange4dumpERN3WTF11PrintStreamE) +STUB( + "tiGE6itroKo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB("tiIlroGki+g", sceFontGetFontResolution) +STUB("tiOgRYEeYgw", _ULx86_64_local_addr_space) +STUB("tiXgxTWTTXY", Java_java_net_Inet4AddressImpl_getLocalHostName) +STUB( + "tiYvOPyDViQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEaSERKS8_) +STUB("tic8Zq5xRys", Java_org_blurayx_s3d_ui_DirectDrawS3D_drawStereoscopic) +STUB( + "tiguyVQWGHs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEC2Ev) +STUB("tihlSpbkjW4", JVM_NativePath) +STUB( + "tij7spC1Pz8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEixEm) +STUB("tijTjZqsz-Y", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V13Mmr8fromJsonERKNS_4Json5ValueE) +STUB( + "tikVyImuS54", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("timf-m2k7j4", _ZNK7WebCore16HTMLMediaElement11canPlayTypeERKN3WTF6StringE) +STUB("tiouZ2JaGjk", + _ZN3sce2np10JsonParser17jsonParseCallbackEP13JsonParseInfoijjPKcPK12JsonValueElmi) +STUB("tizCFt051h8", _ZNSt10filesystem6_LstatEPKcPNS_5permsEPi) +STUB("tj-NdbZ2aps", _Z24VideoPlayerVcs_GetVolumei) +STUB("tj-nUlJCp-8", ktimer_getoverrun) +STUB("tj-sfrnuzJ0", g_PS4TitleNPHasTrophyPack) +STUB("tj3+JFCC6bE", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V511ContentTypeEEppEi) +STUB( + "tj4--dku240", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEC1Ev) +STUB("tj6YdqFHAiI", _ZN7WebCore24CoordinatedGraphicsLayer12syncPositionERKNS_10FloatPointE) +STUB("tjBm-5cNIyQ", ucase_isSoftDotted) +STUB("tjHNFUnT8kc", mono_aot_Sce_Vsh_Orbis_BgftAccessorjit_code_start) +STUB("tjIKODhAIPA", _ZN7WebCore16HTMLInputElement15setEditingValueERKN3WTF6StringE) +STUB("tjJ-aT7ndxw", _ZNK7WebCore13ExceptionData12isolatedCopyEv) +STUB( + "tjLUgI-06iQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEppEv) +STUB("tjMHQP1PJPk", _ZN7WebCore8SVGNames9mediaAttrE) +STUB( + "tjMbEKRozJA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("tjOYtZ4xFN0", _ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEE5beginEv) +STUB("tjOajwNhgRA", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110TaskStatusEEptEv) +STUB( + "tjRIBQhZYbc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEC1EPS8_) +STUB("tjZgJ24KMJs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEptEv) +STUB("tjbj7QysZwk", + _ZN15AbstractStorage14YoutubeContentC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) +STUB("tjeOs2M291o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEE11release_refEv) +STUB( + "tjfSBe9kLwE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEED2Ev) +STUB("tjiktx28Qmg", _ZN3sce2Np9CppWebApi6Common8IteratorImEC2Ev) +STUB("tjkLCorH8uU", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIiEplEm) +STUB("tjuEJo1obls", psignal) +STUB("tjw5PNNDpTU", monoeg_g_list_foreach) +STUB( + "tjwkahKT8Fc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEC1EPKS8_) +STUB( + "tjwl9s25xtk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("tjyjJ+JcC-g", delegate_virtual_invoke_21) +STUB( + "tk+PSz1QUZM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEC1Ev) +STUB("tk0p0JmiBkM", sceNetShowPolicy) +STUB("tk57Pd6sBUM", _ZN7WebCore11DisplayList17FillRectWithColorD0Ev) +STUB( + "tkChl7BzCQ4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE13getLibContextEv) +STUB( + "tkDqvHewUCU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("tkKBGKmUGa4", WKPreferencesGetSyntheticEditingCommandsEnabled) +STUB("tkNek0GUewk", _ZN7WebCore22EmptyFrameLoaderClient31dispatchDidCancelClientRedirectEv) +STUB("tkNfuSDEgYg", sceNpPush2UnsetNpCommunicationId) +STUB("tkO6YK-5qK4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEaSERKS7_) +STUB("tkRwnzG4Tus", sceG2PDialogUpdateStatus) +STUB("tkS7SQsVnOQ", mono_assembly_loaded_full) +STUB("tkW6evZKLSQ", mono_aot_ReactNative_PUIunbox_trampolines) +STUB("tkWdIsfDtPE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEEC1EPS6_PNS2_10LibContextE) +STUB( + "tkXup62fs8s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEEC1Ev) +STUB( + "tkYArh1U2Ns", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEC2Ev) +STUB("tkYRLdbxLPA", _ZNK3sce7Toolkit2NP15CommunicationId5getIdEv) +STUB("tkZ7jVV6wJ8", _ZNSt10bad_typeidD2Ev) +STUB( + "tkdxU++cwHE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEE11release_refEv) +STUB( + "tkeegOaBEY0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEE11release_refEv) +STUB("tkfkwdKXdSM", _ZN9Inspector25ConsoleFrontendDispatcherdlEPv) +STUB("tkjQ3qlm7Q8", _ZN12video_parser10cVideoPath8FinalizeEv) +STUB( + "tkoKXFaw-FU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEEC2ERSA_) +STUB("tkqNipin1EI", _ZNSt7collateIcEC2Em) +STUB("tkrYzxqJE1c", _ZN3JSC8Debugger16toggleBreakpointERNS_10BreakpointENS0_15BreakpointStateE) +STUB( + "tkz5iAQQCGA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEE11release_refEv) +STUB("tkzbKikPJDU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE5emptyEv) +STUB( + "tl+KtpmjYeU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEE7get_refEv) +STUB("tl04STIArl8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEC2Ev) +STUB("tl72PmqhXww", FT_Face_GetCharsOfVariant) +STUB( + "tl8Q2hJN3kk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEE3getEv) +STUB("tlF0Q4BsxOc", ucnv_cbFromUWriteSub) +STUB( + "tlGOSXXyHnY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEixEm) +STUB( + "tlHO5MLwggw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEED1Ev) +STUB("tlIqwG4H+zs", _ZNK7WebCore14ScrollableArea32verticalScrollbarStateForTestingEv) +STUB("tlLGI8Tw+dU", _ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetail11setLastNameEPKc) +STUB("tlLu+KqzgDY", sceKernelGetProductStr) +STUB("tlRJlQrHMnI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEED1Ev) +STUB( + "tlScnRDzH-o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEED2Ev) +STUB("tlSlRtSqNbE", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15NpSessionMemberEE9constructEPS3_RKS3_) +STUB("tlYWQZYPpeQ", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIdEmmEv) +STUB("tlbwNSkkrsM", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_23NpSessionInvitationInfoEE9constructEPS3_RKS3_) +STUB("tlfWS7PHmoY", _ZN7WebCore14roundedIntRectERKNS_9FloatRectE) +STUB("tlgulkXDKdY", _ZN3JSC7Symbols22Uint32ArrayPrivateNameE) +STUB("tlhUtenYAsM", _ZN12video_parser5vpcom5_TellEPNS_8_vp_fileEPx) +STUB( + "tlhhan9QWqo", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament16RegisteredRosterEE19setCustomReturnCodeEi) +STUB("tlj2lbY+CZs", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11EntitlementEEneERKS4_) +STUB( + "tlpTJzJNruI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEeqERKS9_) +STUB("tlpXm5KLgqk", _ZN3sce7Toolkit2NP2V24Core8ResponseINS3_5EmptyEEC1Ev) +STUB( + "tlr5D1tgD4M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEC2ERS8_) +STUB("tluz-CQSrnM", _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse13getActivityIdEv) +STUB("tlvU9LeSPT8", _ZN7WebCore24CoordinatedGraphicsLayer10createTileEjf) +STUB( + "tlxGEdWIwa4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEplEm) +STUB("tm++mIQYHUI", _ZN3sce7Toolkit2NP2V27Ranking12RangeOfRanks14MAX_NUM_BOARDSE) +STUB("tm+Ktm7aelA", glGetBooleanv) +STUB( + "tm15+rwx5pc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEC1Ev) +STUB("tm2ZNDsk9wI", _ZN3sce2Np9CppWebApi14SessionManager2V112ErrorFactory7destroyEPNS3_5ErrorE) +STUB( + "tm34QkmAd3Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEEaSERSA_) +STUB("tm3Hb4s0et8", sceFiosCachePrefetchFHRangeSync) +STUB("tm5DPUBTjxE", _ZN7WebCore21DiagnosticLoggingKeys12retrievalKeyEv) +STUB( + "tm5NAHOsYr4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE5emptyEv) +STUB("tm6Sm6lzkOU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEcvbEv) +STUB( + "tmHQakReRvI", + _ZN3JSC12profiledCallEPNS_14JSGlobalObjectENS_15ProfilingReasonENS_7JSValueERKNS_8CallDataES3_RKNS_7ArgListE) +STUB( + "tmJRKboEn9A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEppEi) +STUB("tmOiNISgk2I", sceIduTerm) +STUB("tmUOdbwJw1E", _ZN7WebCore10FileHandle4readEPvi) +STUB("tmb4NgTbI8M", _ZN3sce7Toolkit2NP2V210Tournament25BracketInformationOfMatchD2Ev) +STUB("tmcEKba0ilI", scePssPadrGetOutputPortDescription) +STUB("tme8lbzh1Kc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEEC1ERKS5_) +STUB("tmeC+p2Gbr0", _ZN9Inspector15AsyncStackTrace6removeEv) +STUB("tmfr97+ED5I", sceAmprMeasureCommandSizeSetMarkerWithColor) +STUB( + "tmiGXs5z2HE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("tn0Pv3hgFAY", + _ZN6WebKit12ChildProcess17initializeProcessERKNS_36ChildProcessInitializationParametersE) +STUB("tn1V1FW4GwQ", _ZN7WebCore11MathMLNames9mspaceTagE) +STUB("tn3VlD0hG60", scePthreadMutexUnlock) +STUB( + "tn7Lpk1HtZo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "tnEUacE8vQA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE10setContextEPNS2_10LibContextE) +STUB("tnTAwqsdFUM", _ZN7WebCorelsERN3WTF10TextStreamERKNS_11LayoutPointE) +STUB( + "tnTpFDujuxQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("tnVSnLF46eo", uregex_group_67) +STUB("tnWbIo5dwGg", _ZN12video_parser17cVideoProfilerMp416_createMediaListEv) +STUB( + "tnY8pV5hv4g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("tnb93oT7MSA", mono_aot_Sce_Vsh_GameCustomDataunbox_trampoline_addresses) +STUB( + "tnhRpmq7ESA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEEC2Ev) +STUB("tnjpe06tA9k", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEEdeEv) +STUB("tnlAgPCKyTk", __atomic_compare_exchange_8) +STUB("tnoY99KMo6s", + _ZN3JSC8Bindings13RuntimeObject23throwInvalidAccessErrorEPNS_9ExecStateERNS_10ThrowScopeE) +STUB( + "tns9e3Rnga4", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12unsetString2Ev) +STUB("tnsXStMu3rQ", _ZN4Manx20Curl_cookie_clearallEP10CookieInfo) +STUB("tnvxzeWju10", WKBundleNavigationActionGetNavigationType) +STUB( + "tnym874g8jE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB("tnytRb-rZp4", WKPageGetSamplingProfilerOutput) +STUB( + "tnzGX57mNg8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("to7GggwECZU", _ZNSt7codecvtIcc9_MbstatetED2Ev) +STUB("to9n4euEEQ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE5beginEv) +STUB("toA08wQSTX8", _ZNK3JSC8Bindings10RootObject12globalObjectEv) +STUB( + "toGcFWFrsIY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEE7get_refEv) +STUB("toINCwQIbPc", _ZN7WebCore21ContentSecurityPolicyD2Ev) +STUB( + "toJNLKVSDAo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEE7get_refEv) +STUB("toKeztkXRnQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEC1ERKS7_) +STUB( + "toMfUd3jFmo", + _ZN7WebCore30InspectorInstrumentationWebKit23shouldInterceptResponseEPKNS_5FrameERKNS_16ResourceResponseE) +STUB("toO3YXHsAdg", _ZN7WebCore13MIMETypeCacheC2ERKS0_) +STUB("toOJe5IsGwg", sceNpEulaDialogCheckVersion) +STUB("toRrPoaJkAk", sceFsDevpfsEventResponseComplete) +STUB("toStvl2IEYA", mono_class_get_namespace) +STUB("toXPpb5jhhk", psl_latest) +STUB("toa7gp3TAUs", mono_aot_ReactNative_PUIplt_end) +STUB( + "toc89R5ubLs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE6resizeEj) +STUB("todWCdo0-vk", __asan_exp_store2_noabort) +STUB( + "tofSVdGAKbQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEC1EPS8_) +STUB("toi8xxcSfJ0", sceNetConfigRoutingStop) +STUB( + "tolViuRDLoY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("ton5sEBpDh4", __tsan_mutex_post_lock) +STUB( + "tooLXjwy79Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEppEv) +STUB("torVI4+PfTU", _ZN3sce7Toolkit2NP2V29Messaging7Request28GetGameDataMessageAttachmentC2Ev) +STUB("touqMEt6qXQ", sceAmprAmmSetPageTablePoolOccupancyNotificationThreshold) +STUB("tow2sT8FF3c", WKBundleSetServiceWorkerProxyCreationCallback) +STUB( + "tp0fvf8ZfT4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEED2Ev) +STUB( + "tp3pnPv1Dg8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEeqERKS9_) +STUB( + "tp9D6VQmy9k", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEE3getEv) +STUB("tpFJ8LIKvPw", sceNpUniversalDataSystemRegisterContext) +STUB("tpKYaXK-zVs", sceOpusCeltEncEncode) +STUB("tpLPh+8xIiQ", _ZN3sce2Np9CppWebApi14SessionManager2V110FromMemberD2Ev) +STUB("tpLtl6725oA", + _ZN7WebCore22EmptyFrameLoaderClient25pluginWillHandleLoadErrorERKNS_16ResourceResponseE) +STUB( + "tpNFED7Q-XI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEaSERKS9_) +STUB("tpQBXFxLy+8", sceLibSecureHashSetContext) +STUB( + "tpQy7w8qrNo", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB("tpThrBsInto", unmount) +STUB("tpVW+9x7KcM", WKPageGroupSetPreferences) +STUB("tpXVNSFwJRs", _ZN3sce2np3ipc14service_client11InitServiceEi) +STUB( + "tpc4P8r5QJA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("tpeDOXj0M4k", _ZN3sce7Toolkit2NP2V27Session9SessionIdaSERKS4_) +STUB( + "tpfJEnyYOzc", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemProperties12getsessionIdEv) +STUB("tpgPa5JQE38", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE5clearEv) +STUB("tpiLDvUwdM0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEE5eraseENS2_13ConstIteratorIS4_EERS7_) +STUB("tpjHVdInkVc", _ZN3JSC22EdenGCActivityCallback12doCollectionEv) +STUB("tplByifH2p0", _ZNK7WebCore10FloatPoint15matrixTransformERKNS_15AffineTransformE) +STUB("tplbitAzba4", mono_aot_Sce_Vsh_UpdateServiceWrapperunbox_trampolines) +STUB("tpm8YLsW-YU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEE11get_deleterEv) +STUB("tppo+23RxWE", + _ZSt9use_facetISt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale) +STUB("tpslt5d45m4", _ZN7WebCore11MediaPlayer4playEv) +STUB( + "tpuE+0wfumM", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEEiRNS2_10LibContextEPT_m) +STUB("tpvWHLIvEU4", _ZN3JSC13JSArrayBuffer6s_infoE) +STUB("tpwJiHcU4f0", + _ZNK3sce7Toolkit2NP9Utilities6FutureI19SceNpTrophyGameDataE17getAdditionalInfoEv) +STUB( + "tpwxDQKwT9w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE21intrusive_ptr_sub_refEPS9_) +STUB("tpx0zNA9X+o", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId8setrangeEPKc) +STUB( + "tpz4YwJwqcQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEED1Ev) +STUB("tq-7fdC5Oms", _ZN3WTF10StringImpl6createEPKDsj) +STUB("tq1e1kFa2s8", UI_create_method) +STUB("tq511UiaNlE", CA_MGMT_getCertSignAlgoType) +STUB( + "tq5a0dSyJqA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEE11get_deleterEv) +STUB( + "tq5le1Gz49w", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE28getResponseInformationOptionEv) +STUB( + "tq7YPBGE29E", + _ZN3sce2Np9CppWebApi14SessionManager2V125MatchmakingForReadFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_18MatchmakingForReadEEE) +STUB("tq8LnCPE9tQ", _ZN7WebCore21JSDeprecatedCSSOMRect9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("tqEWky5gu2A", _ZN3sce2np13RingBufMemoryC1EP14SceNpAllocator) +STUB("tqFeSiHCgDs", _ZN3JSC2VM17dataViewSpaceSlowEv) +STUB( + "tqG5Huex03c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEC1Ev) +STUB( + "tqGAo9hm0rA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEED2Ev) +STUB("tqHQdMPde4E", sceRegMgrCntlStart) +STUB("tqJIKzoCMXE", ASN1_STRING_to_UTF8) +STUB("tqKiU7Aq5RM", _ZN7Nicosia16SceneIntegrationC1ERNS_5SceneERNS0_6ClientE) +STUB("tqMEyVwoePk", JNU_GetFieldByName) +STUB( + "tqSFBC5-lMQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEaSERKS9_) +STUB( + "tqUoLmzvojU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEC1ERKS7_) +STUB("tqWD7hd81YM", WKPreferencesGetEditableLinkBehavior) +STUB("tqWOrCWRP+U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEEppEv) +STUB("tqcoZYzrqUE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEEaSERKS7_) +STUB("tqeCpXiyN3Y", ucnv_getType) +STUB("tqnmnBCbNZI", glVertexAttrib2fv) +STUB("tqo89+Bqhk0", _ZN7WebCore5Image20loadPlatformResourceEPKc) +STUB("tqsf6e48Zls", _ZN7WebCore9HTMLNames9canvasTagE) +STUB( + "tqtf-J5Bd7I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "tqyoVlt9nIU", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets30unsetxPsnAcceptPlatformNamePs5Ev) +STUB("tr1Uc33FqHY", JSObjectSetPropertyAtIndex) +STUB( + "trBNTjCV-u4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE6insertENS2_13ConstIteratorIS9_EERKS9_RSC_) +STUB( + "trFuQ69lrO4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEE11release_refEv) +STUB( + "trGvQ1hngj4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEED2Ev) +STUB("trPXDKRnszQ", _ZN3sce7Toolkit2NP28GameCustomDataUseFlagRequestC1Ev) +STUB( + "trQSuGFhQ-I", + _ZN3sce7Toolkit2NP8Matching9Interface14searchSessionsEPKNS1_21SearchSessionsRequestEPNS1_9Utilities6FutureISt6vectorINS1_18SessionInformationENS1_15AppSTLAllocatorISA_EEEEEb) +STUB("trS9Z6W2Avs", _ZNK7WebCore19HTMLTableRowElement15sectionRowIndexEv) +STUB("trUJ7-dGeuM", mono_conc_hashtable_lookup) +STUB("trYWw7dUt9Y", _ZN3WTF13ReadWriteLock11writeUnlockEv) +STUB("trZ6QGW6jHs", sceNpTusTryAndSetVariableVUserAsync) +STUB( + "trjSUMHOY70", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB("trkBwRDwQWI", _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile13unsetRelationEv) +STUB( + "trkslirrv80", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB( + "trorTg-EOL4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEE11get_deleterEv) +STUB("trpV4nuUVh8", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15PlayedWithStoryEED2Ev) +STUB("truziR2fSWk", WKPreferencesGetStorageAccessPromptsEnabled) +STUB("trzC1XDcVws", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEED1Ev) +STUB("ts0M5vFJsGs", __preinit_array_start) +STUB("ts25M0mp2uY", sceKernelIsGenuineCEX) +STUB( + "ts3uhOcUc8E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEEC1ERSA_) +STUB("ts4l3D9+mhA", _ZN7WebCore13GraphicsLayer16removeFromParentEv) +STUB("ts6GlZOKRrE", scePlayGoInitialize) +STUB( + "ts9Z5rCjD20", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE7popBackEv) +STUB( + "tsBWXTghdZo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("tsD-S+BOeVQ", mono_aot_System_ComponentModel_Compositionunbox_trampolines) +STUB("tsGVru3hCe8", sceHttpCreateRequest) +STUB("tsLdzS-kuMw", sceCustomMusicServiceSendRequest) +STUB("tsMa2QkyNR8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEED2Ev) +STUB("tsOAovB8CYw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEE7add_refEv) +STUB("tsUeTvSZGnc", _ZN3sce2Np9CppWebApi12Leaderboards2V14UserD1Ev) +STUB("tsV6KkeyJEE", _ZN7WebCore18TextureMapperLayer15setReplicaLayerEPS0_) +STUB("tsZi60H4ypY", sceMoveTerm) +STUB( + "tsaKqC0oYEk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEEC2Ev) +STUB("tsc4z+9Xk+c", _ZN3WTF13jsValueMallocEm) +STUB( + "tseQGNjvB1k", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEeqERKS9_) +STUB("tsiBm2NZQfo", _ZNSt14_Num_ldbl_base9is_iec559E) +STUB("tsjTKGHszm0", _ZN3JSC11ArrayBuffer15createFromBytesEPKvjON3WTF8FunctionIFvPvEEE) +STUB("tslCukqFE+E", sceCameraGetDefectivePixelCancellation) +STUB( + "tsoHGgrOveM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEC2Ev) +STUB("tspJxRlPFj0", _ZN7WebCore13SleepDisablerD1Ev) +STUB("tspYcZ4NF4U", BIO_vfree) +STUB( + "tsufpMXyPWE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEmmEv) +STUB("tsvEmnenz48", __cxa_atexit) +STUB("tsxiIkaIaxI", + _ZN3sce2Np9CppWebApi14SessionManager2V131JoinedPlayerSessionWithPlatform11setPlatformEPKc) +STUB("tt0DzTUWdtQ", _ZNK7WebCore5Color8darkenedEv) +STUB("tt4Zqamn2p8", _ZNKSt15_Ref_count_base12_Get_deleterERKSt9type_info) +STUB("tt7JPF8Mr6Q", _Z12Image_SaveAsiP11_MonoStringPKN3sce3pss4core7imaging19ImageCompressOptionE) +STUB("tt9VRk4F9co", _ZN3sce7Toolkit2NP2V23TUS7Request12GetVariablesC2Ev) +STUB("ttA9TcO06uA", _ZN3sce2npleERKNS0_4TimeES3_) +STUB( + "ttEEge6yV9g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("ttGMjtWwhT4", _ZN3JSC2VM30unlinkedEvalCodeBlockSpaceSlowEv) +STUB("ttHNfU+qDBU", pthread_mutex_init) +STUB("ttIE2SCyzQs", _ZN3sce7Toolkit2NP2V210Tournament27TeamVsTeamTournamentDetailsD2Ev) +STUB( + "ttJJfHB1Y9c", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEdeEv) +STUB("ttJy+1DbvDo", _ZN9Inspector33ApplicationCacheBackendDispatcherD1Ev) +STUB( + "ttLxzDPx4HI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEixEm) +STUB( + "ttNIdKi62-4", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB("ttU+JOhShl4", sceMoveReadStateLatest) +STUB( + "ttYGcIjCrqQ", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_23NpSessionInvitationInfoENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB("ttZRFSBzDPQ", sceBgftServiceIntDebugPlayGoClearSetFreeZone) +STUB( + "tteNdj34k70", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEE11get_deleterEv) +STUB("ttg3VJv7+Wg", _ZNK7WebCore13RenderElement16imageOrientationEv) +STUB( + "ttgSLI3rc0k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEED2Ev) +STUB("ttiSviAPLXI", sceUserServiceGetSharePlayResolutionHost) +STUB("ttqRubDMXOQ", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationPropertiesD2Ev) +STUB( + "ttrfJ+ooAWg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEmmEv) +STUB("ttsPBsOaRZ8", mono_method_can_access_field) +STUB( + "tttn6Q1CdI0", + _ZN3sce7Toolkit2NP6Events9Interface12getEventListEPKNS1_16EventListRequestEPNS1_9Utilities6FutureINS1_26EventInformationListDetailEEEb) +STUB( + "ttuNAM8JMDc", + _ZN9Inspector25DebuggerBackendDispatcher8stepIntoElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "ttzZq4SGBwk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEeqERKS9_) +STUB("tu-Ex57uUFI", WKWebsiteDataStoreConfigurationCopyServiceWorkerRegistrationDirectory) +STUB("tu0SDPl+h88", sceSaveDataGetClientThreadPriority) +STUB( + "tu7bF1PqlWc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEEC1Ev) +STUB("tuBR2AhkJAo", ERR_peek_last_error) +STUB("tuG43TDjSc0", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE6resizeEj) +STUB( + "tuG6q3CfYRw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "tuHGEIDrKAY", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V231TestForProfanityResponseFactory7destroyEPNS3_24TestForProfanityResponseE) +STUB("tuHUDp1zwXA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116InitialJoinStateEEC1Ev) +STUB("tuR+7OEvvDg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE5beginEv) +STUB("tuXB67YJ3QI", mono_aot_Mono_Cairounwind_info) +STUB("tuYMzz5wrks", _ZN3sce7Toolkit2NP2V24Core7Request11MemoryPools21JSON_MEM_DEFAULT_SIZEE) +STUB("tuZYWihy4cU", _ZNK3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE3endEv) +STUB( + "tuaMKZPZkxw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEppEv) +STUB( + "tubegHp0xd8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEplEm) +STUB( + "tug+YWKZ29Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEppEi) +STUB("tul3-GzejQc", sceBluetoothHidInit) +STUB( + "tuqxNaYtmmA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE5beginEv) +STUB("tuscfitnhEo", sceSslCreateConnection) +STUB( + "tutXatEmpzU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEED2Ev) +STUB( + "tv-lWgIJK14", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEmmEv) +STUB( + "tv4H5OC4JGE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "tvAaQmHD+C0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "tvP44md+WjE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEE5resetEPS9_) +STUB( + "tvQBw2Po2aA", + _ZN7WebCore21ComplexTextController7advanceEjPNS_11GlyphBufferENS_19GlyphIterationStyleEPN3WTF7HashSetIPKNS_4FontENS4_11DefaultHashIS8_EENS4_10HashTraitsIS8_EEEE) +STUB("tvQH9NYsJpQ", _ZN3sce2np10Cancelable6CancelEi) +STUB("tvVB-PvTH4s", _ZN3sce7Toolkit2NP2V23TUS16FriendsVariablesD2Ev) +STUB("tvYQoCdopVg", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setInteger2ERKi) +STUB( + "tvZ6C2fY7zw", + _ZN7WebCore6Editor18insertDictatedTextERKN3WTF6StringERKNS1_6VectorINS_20DictationAlternativeELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEEPNS_5EventE) +STUB("tvdntvBP5GM", kldstat) +STUB("tvdzQkm+UaY", sceNetConfigUnsetIfFlags) +STUB("tvhjgR5-DlE", JSValueIsBoolean) +STUB("tvkQRDe6hNo", ksem_unlink) +STUB("tvnxawGcaOU", _ZN3JSC12SymbolObjectC2ERNS_2VMEPNS_9StructureE) +STUB("tvpHe5kBO4E", geteuid) +STUB("tvqMmuD-7pA", _ZNK7WebCore6Editor7Command26allowExecutionWhenDisabledEv) +STUB( + "tvrrdJ2nFa4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEE3getEv) +STUB("tw2L5yOcXDQ", AMDTEE_DLM_GetDebugToken) +STUB( + "tw7DaREsh0Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEC1Ev) +STUB("tw7HaKBGnUc", ps5) +STUB("twBh5GOSDI4", _ZN3sce7Toolkit2NP2V211SharedMedia7Request13GetBroadcastsC1Ev) +STUB( + "twC5R3zmJ5o", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer12getsessionIdEv) +STUB( + "twEUgWQaH1k", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetrics8fromJsonERKNS_4Json5ValueE) +STUB( + "twFmGjxidAQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEaSERKS7_) +STUB("twGVBYdKbMg", _ZN3sce2Np9CppWebApi13InGameCatalog2V520ContainerRatingCount8setCountERKi) +STUB("twGXom56jw0", sceCompositorGetRenderTargetResolution) +STUB( + "twP+PPFW3p4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("twRfxl26QHM", _ZN7WebCore31TextureMapperPlatformLayerProxy10invalidateEv) +STUB( + "twSWOB0QUBA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEE7get_refEv) +STUB("twT9SclEjBI", sceDeci4hDrfpRmdir_fuse_fullpath) +STUB("twVupeaYYrk", sceNpMatching2SignalingGetConnectionInfo) +STUB( + "twcSfRXrLRE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEaSERKS9_) +STUB("twcx6YB8Isw", g_hash_table_new) +STUB("twfQODVy4tM", _ZN7WebCore11DisplayList11ClearShadowC2Ev) +STUB("twiNZBeuppA", sceAvSettingIsSuspendedProcessOutputModeAvailable) +STUB( + "twigZX3pv30", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEE11get_deleterEv) +STUB( + "twldcOvLN+E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEaSERKS9_) +STUB("twm1B3FPw48", mono_aot_I18N_Rareunbox_trampolines_end) +STUB( + "twp42f4c+48", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEC1EPS8_) +STUB( + "twqKc+0M4XA", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("twrAIl4N+EM", u_isblank) +STUB("twrSaoZ9cJs", sceVideoOutAddBuffer4k2kPrivilege) +STUB("twvTi0QJjjg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEEaSERKS6_) +STUB( + "twxBVgwCVBc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEC2EPNS2_10LibContextE) +STUB("twyYa-zm6m0", mono_event_get_name) +STUB("tx07rUxYsoU", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku20unsetPlusUpsellPriceEv) +STUB("tx5pKeUBkgE", _ZN7WebCore22EmptyFrameLoaderClient16restoreViewStateEv) +STUB("tx5pwlB7l9c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEED2Ev) +STUB("tx78UNG6YoM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4RoomEEC1Ev) +STUB("tx9d4wJoNIk", mono_aot_Sce_Vsh_SystemLoggerUtilWrapperjit_code_start) +STUB("txBwhP9PKYI", _ZN7WebCore15GraphicsContext8fillPathERKNS_4PathE) +STUB("txDKxYFVbOI", mono_aot_Sce_Vsh_Registryjit_got) +STUB( + "txFAgpcaRno", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEE7get_refEv) +STUB("txHtngJ+eyc", scePthreadAttrGetguardsize) +STUB("txIF7w41SkM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16TrophyPackTrophyEE3getEv) +STUB("txIPTHNsC1w", curl_url_dup) +STUB("txJMgFi7Ni8", ufmt_getType_67) +STUB("txJTOe0Db6M", logbl) +STUB( + "txL1ieL-iIE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEEC1Ev) +STUB("txL81jikrBc", Java_java_net_PlainDatagramSocketImpl_setTimeToLive) +STUB( + "txSqgh0rO-A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "txX572c0UnI", + _ZN8meta_gen11MsvPromoter25setKeyValue_TBLI_DataTypeENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti) +STUB( + "txZX5sPg+A8", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions31setxPSNSESSIONMANAGERSESSIONIDSEPKc) +STUB("txfJx872s3k", GCC_except_table296) +STUB( + "txgUaRTH5UY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEE7add_refEv) +STUB( + "txhYrQf9blU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEmmEv) +STUB( + "txkfRjupWso", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("txl9WEJMVGk", _ZN9Inspector14ConsoleMessagedaEPv) +STUB( + "txnuIHdUhSg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEeqERKS9_) +STUB("txrhzUV0pL8", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session8SessionsEEC2Ev) +STUB("txstbRSp1d4", u_getPropertyValueEnum_67) +STUB("tyAI3WUi9Mg", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V113MmrProperties9setRatingERKi) +STUB("tyArYWj+1QE", sceNpBandwidthTestShutdownWithDetailedInfo) +STUB("tyDcgp4byT4", mono_aot_ReactNative_Modules_Vshunbox_trampoline_addresses) +STUB( + "tyESFME0nVY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEC2EPS8_) +STUB("tyEilmtbHGw", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEEptEv) +STUB("tyF8jxT9cso", WKBundleNavigationActionGetEventModifiers) +STUB("tyHd3P7oDrU", _ZNKSt9exception8_DoraiseEv) +STUB("tyIYDSPN1WA", _ZNK7WebCore14ScrollableArea34horizontalScrollbarStateForTestingEv) +STUB("tyJ3nwCe91c", mono_aot_Sce_Vsh_ShareServerPostWrapperplt_end) +STUB( + "tyKE3D-LH0Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE3endEv) +STUB("tyYRZwL4rog", sceShareUtilityAdvanceWakeUpShareMenuBroadcast) +STUB( + "tyaGTmWpQi4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEE11get_deleterEv) +STUB("tyaZmNJ-O-I", _ZN3sce2Np9CppWebApi6Common8IteratorIiEppEv) +STUB("tygy6ny87Q0", _ZN7Nicosia29BackingStoreTextureMapperImpl11flushUpdateEv) +STUB( + "tyhW2Nr7psM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE4sizeEv) +STUB("tynva-9jrtI", sceNpTitleMetadataIntDeleteRequest) +STUB("typPPaFDo34", _ZN7WebCore7Element21insertAdjacentElementERKN3WTF6StringERS0_) +STUB("tyqgy-e1ipo", mono_string_from_utf16) +STUB( + "tyr+6AQL9SQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEC1EPS8_) +STUB( + "tys1WrqGpKw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE5beginEv) +STUB( + "tysCUl3pEPY", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions17hasacceptLanguageEv) +STUB( + "tyuWqmtxaQI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEE11release_refEv) +STUB("tz6Lq93L+ck", _ZN7WebCore11DisplayList17DrawFocusRingPathD1Ev) +STUB( + "tzH315eSjKs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEptEv) +STUB( + "tzHWzkSfQ-c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB("tzLyXXPWt64", _ZNK3JSC18BytecodeCacheError7messageEv) +STUB("tzMbgxjofRM", _ZN7WebCore5Range6setEndEON3WTF3RefINS_4NodeENS1_13DumbPtrTraitsIS3_EEEEj) +STUB( + "tzS6b8nEvm4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEE7get_refEv) +STUB("tzSRcqR5f2k", _Z36Font_NotifySystemConfigurationChangev) +STUB( + "tzUrPjnaJVM", + _ZN7WebCore9FrameView27scrollToOffsetWithAnimationERKNS_8IntPointENS_10ScrollTypeENS_14ScrollClampingE) +STUB( + "tza7Sg5IMPw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEaSERS7_) +STUB("tzaSPxMt7II", uprv_isASCIILetter) +STUB( + "tzbzqVY3daw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE3endEv) +STUB("tzdcm0PdtMg", Java_java_util_jar_JarFile_getMetaInfEntryNames) +STUB("tze0dIM21E4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEC2Ev) +STUB("tze15yHINUs", _ZN8meta_gen11MsvPromoter20retrieveDurationInfoEv) +STUB( + "tzeNfdKNl+o", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE3endEv) +STUB( + "tzfEi-Fte1o", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetrics27setCompletionRatePerReasonsERKi) +STUB("tzgPpLnmFbc", sceContentBinderReset) +STUB("tzgWqtlSSmc", _ZNK9Inspector14ConsoleMessage11scriptStateEv) +STUB("tzkR1CcdSi4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE8copyFromERKS9_) +STUB("tzmyUhAg07Y", _ZN3sce7Toolkit2NP19TusDeleteDataParamsC1Ev) +STUB( + "tzq1xPOjElI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEE11get_deleterEv) +STUB( + "tzrce8P9NaI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("tzxvuatEcGY", mono_aot_Sce_Vsh_Messagesunbox_trampolines) +STUB( + "tzyU0+dpvQI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEC1EPS7_PNS2_10LibContextE) +STUB( + "tzzWE9T5+j8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEE5resetEPS6_) +STUB( + "u+-aueFjunY", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129ConnectionQualityWiredMetrics18setConfidenceScoreERKi) +STUB("u+1+5X2oEh8", _ZN7WebCore10JSDocument11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("u+6z-j2wdjk", + _ZN15AbstractStorage12LocalStorage7IsExistERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("u+8oP5YDJhQ", SSL_version) +STUB( + "u+8wVbq+IA8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEC2EPS8_) +STUB("u+A-gWoEYDI", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi24ParameterToReportResultsC2ERS5_) +STUB("u+A16O-TAHk", _ZN3sce2np10JsonParserD0Ev) +STUB( + "u+FsYdCUZ5k", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEcvbEv) +STUB("u+I4-57o1u4", _ZN3sce2Np9CppWebApi7Matches2V116RequestMatchTeam13unsetTeamNameEv) +STUB( + "u+J7+eDzVd8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEC2Ev) +STUB("u+NMS-YShsI", _ZN7WebCore6JSNode23visitAdditionalChildrenERN3JSC11SlotVisitorE) +STUB("u+RjFXYQMZk", _ZN3sce7Toolkit2NP2V211UserProfile7Request27GetVerifiedAccountsForTitleD1Ev) +STUB( + "u+X9HOsJdxw", + _ZN3sce2Np9CppWebApi12Leaderboards2V129RecordScoreRequestBodyFactory7destroyEPNS3_22RecordScoreRequestBodyE) +STUB( + "u+YSLnPGct0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEE11get_deleterEv) +STUB( + "u+a0FJgCgOY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEeqERKS9_) +STUB("u+brAYVFGUs", GC_createInstanceIDs) +STUB( + "u+eQ2Rh2cng", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEE7get_refEv) +STUB("u+g1hu2lQ+c", _ZNK7WebCore12RenderObject15containingBlockEv) +STUB("u+iH3rRyPEE", sceNpAsmClientGetNpComInfo4) +STUB("u+jJYuyhPyA", + _ZNK7WebCore24MatrixTransformOperation5applyERNS_20TransformationMatrixERKNS_9FloatSizeE) +STUB( + "u+jU17-QYKw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEC1Ev) +STUB("u+lIRj0Uhos", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEE3getEv) +STUB("u+lIalCYOho", sceBluetoothHidUnregisterDevice) +STUB("u+mlUkWpU3Y", sceKernelGetModuleListInternal) +STUB("u+pX7fHyM58", _ZN7WebCore24CoordinatedGraphicsLayer16syncImageBackingEv) +STUB("u+qYvs561Qw", _ZN3JSC2VM15canUseRegExpJITEv) +STUB("u+vBj8SN+NM", Java_java_net_PlainSocketImpl_socketGetOption) +STUB("u+wW71g+oWI", mono_shared_area_for_pid) +STUB("u+yGTt6rB6o", mono_aot_Sce_Vsh_RemotePlayunbox_trampoline_addresses) +STUB("u-0RrBA1ycc", _ZN3sce7Toolkit2NP2V28Commerce7Request27DisplayCategoryBrowseDialogD2Ev) +STUB("u-8eJHYqWpU", WKContextSetAllowsAnySSLCertificateForWebSocketTesting) +STUB("u-9bhWQApq8", sceVideoOutCursorSetImageAddress) +STUB("u-E+6d9PiP8", sceUserServiceSetAutoLoginEnabled) +STUB("u-FTU5Apy+4", WKWebsiteDataStoreConfigurationCopyIndexedDBDatabaseDirectory) +STUB("u-GlxOsA5GU", _ZN7WebCore10StorageMap4copyEv) +STUB("u-Ohylelvn4", uprv_isASCIILetter_67) +STUB("u-TlLaJUJEA", _ZN3sce2np7RingBuf7DestroyEv) +STUB("u-U2XPc2JjI", _ZN3sce7Toolkit2NP2V28Commerce23ServiceEntitlementLabelD1Ev) +STUB("u-U52wzG5OI", uset_add_59) +STUB("u-UKurURDpI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE5clearEv) +STUB("u-V9QYnCWxo", g_slist_reverse) +STUB("u-VOHg8k-ys", mono_aot_System_IO_Compression_FileSystemjit_code_end) +STUB("u-WrYDaJA3k", sceNgs2SystemDestroy) +STUB( + "u-X3DApyb4M", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEptEv) +STUB("u-ZZQ0nnX4A", _ZN7WebCore16JSXMLHttpRequest15subspaceForImplERN3JSC2VME) +STUB("u-dCVE6fQAU", sceUserServiceGetJapaneseInputType) +STUB("u-ggcoP--yc", _ZNK7WebCore5Color9lightnessEv) +STUB( + "u-hgHYADm9I", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEmmEi) +STUB( + "u-nG7-ARPkc", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V333CommunicationRestrictionStatusApi44ParameterToGetCommunicationRestrictionStatusaSERS5_) +STUB("u-nocHxdjDs", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getInteger1Ev) +STUB("u-pmtvu14hE", _ZN7WebCore15FocusController10setFocusedEb) +STUB( + "u-pnBdftINs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("u-rdLhMlauo", WKPreferencesGetMediaStreamEnabled) +STUB("u-xQSTHjrjM", mono_aot_Sce_Vsh_Messages_DbAccessLibjit_got) +STUB( + "u022KpCRU2A", + _ZN8meta_gen11MsvPromoter33setKeyValue_TBLI_ContentTableTypeENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti) +STUB("u05NnI+P+KY", sceHttpRedirectCacheFlush) +STUB( + "u05qhWFr4Qw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEEC2ERSA_) +STUB( + "u0Anh9dF3K8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEptEv) +STUB("u0C0O5q1jyI", _ZN12video_parser5vpcom6_FlushEPNS_8_vp_fileE) +STUB( + "u0E3hp46ut8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB("u0E8Xi0easM", hb_icu_script_to_script) +STUB("u0KG+4Fxisc", res_getStringNoTrace_67) +STUB("u0LKA0lKiX0", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12string1IsSetEv) +STUB("u0V7lM9s3II", fuse_unmount) +STUB("u0VlcjS4ELs", + _ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchStatusRequest6toJsonERNS_4Json5ValueEb) +STUB("u0XOsuOmOzc", vswprintf) +STUB( + "u0bOcQmOlQ0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEixEm) +STUB("u0hSyMPmgr4", _ZNK7WebCore13ContainerNode17childElementCountEv) +STUB("u0k8j8Fz3u0", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10getString5Ev) +STUB( + "u0lmyOdYmNI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEED2Ev) +STUB("u0mv-G5GWxg", _ZN7WebCore11WindowProxyD1Ev) +STUB("u0rYiDia4io", mono_custom_attrs_from_class) +STUB("u0yN6tzBors", _ZSt14_Raise_handler) +STUB("u1+cfR6UUP4", + _ZN7WebCore15DatabaseManager19fullPathForDatabaseERNS_14SecurityOriginERKN3WTF6StringEb) +STUB( + "u1-tRhtrudI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "u13KsAJCYt4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("u14Y1HFh0uY", acoshl) +STUB("u14rcshrFmI", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_11TusVariableENS2_IS4_EEEE9constructEPS6_RKS6_) +STUB("u16WKNmQUNg", _ZNSt14numeric_limitsIeE12max_digits10E) +STUB( + "u19EXDZwHB4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEE5resetEPS9_) +STUB("u1BIPLpvRLo", + _ZNK3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponse19previousOffsetIsSetEv) +STUB("u1GRHp+oWoY", scePadGetHandle) +STUB( + "u1GZo5PJgL0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEC2EPNS2_10LibContextE) +STUB("u1JVDP28ycg", sceLncUtilBlockAppSuspend) +STUB( + "u1KKeXELhcI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("u1LTy5HZ1Z0", sceCesUtf32beToUhc) +STUB( + "u1LryfY0KLU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEC1ERS7_) +STUB("u1M9z9DevV0", _ZN3JSC7Symbols26regExpMatchFastPrivateNameE) +STUB("u1OhA6iVnbQ", _ZN3sce7Toolkit2NP2V210Tournament25BracketInformationOfMatchC2ERKS4_) +STUB("u1QdTBc2r5s", _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_11TusVariableENS2_IS4_EEEED2Ev) +STUB("u1UlXA+WAG0", WKPreferencesSetAsynchronousSpellCheckingEnabled) +STUB( + "u1Wf14GHEEA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEEptEv) +STUB("u1YfMF4eIn8", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification15BlocklistUpdateEED2Ev) +STUB("u1h3TO-d9qI", sceFsSmrTrimPath) +STUB("u1jBAAJQh4A", _ZN9Inspector18InspectorHeapAgent18clearHeapSnapshotsEv) +STUB("u1jYWyP2OeU", _ZN3WTF19ParallelEnvironment7executeEPv) +STUB("u1pYqMV1+rY", _ZN3sce7Toolkit2NP2V26Friend7Request19GetFriendsOfFriendsD1Ev) +STUB( + "u1tUh0U1r5E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEEdeEv) +STUB("u1tsbQ1hZwI", _ZN7WebCore8SVGNames16surfaceScaleAttrE) +STUB("u1wbCugKzYQ", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry10getCommentEv) +STUB("u1yEt9b-19k", + _ZN8meta_gen11MsvPromoter20setKeyValue_TBLV_CciENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB( + "u21sptloQvE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEC2EPS8_) +STUB( + "u28Nxv3uTj4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEC1EPKS8_) +STUB("u29iwsk-hI4", rgctx_fetch_trampoline_mrgctx_123) +STUB( + "u2AQWozMKug", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEED2Ev) +STUB("u2GrRj85Riw", sceHidControlGetDeviceInfo) +STUB("u2MAta5SS84", _ZNSt7codecvtIDic9_MbstatetE2idE) +STUB("u2REGRW7HV0", scePigletReleaseVideoMemory) +STUB("u2T2DiA5hRI", sceAgcDcbStallCommandBufferParser) +STUB("u2TX5uSfxRo", _ZN9Inspector32ScriptProfilerFrontendDispatcher26programmaticCaptureStartedEv) +STUB("u2XjomABnhY", JSRemoteInspectorStart) +STUB("u2g5VER9UnM", sceAgcDriverHp3dLockEnd) +STUB( + "u2gIjbacPs0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEE6assignEPS7_PFvS9_EPNS2_10LibContextE) +STUB("u2gKuDWpTDY", _ZN7WebCore10ISOFullBoxaSERKS0_) +STUB("u2gNWVnCndA", _ZN4Manx8X509name7onelineEPcj) +STUB("u2gfAW6xw8k", _ZN7WebCore20NetworkStateNotifier9singletonEv) +STUB("u2kPEkUHfsg", __cmpti2) +STUB("u2nWCcA7Z4E", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_25ReceivedInGameDataMessageEED2Ev) +STUB("u2q6WCRbxH8", twop84) +STUB("u2tMGOLaqnE", _ZSt14_Atomic_assertPKcS0_) +STUB( + "u2vqqZA520E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE6resizeEj) +STUB("u2vunBIph6w", WKBundleRangeHandleGetBoundingRectInWindowCoordinates) +STUB("u2vuxsATicc", run_cfi_program) +STUB("u2ws57jhxSc", _ZN7WebCore11MediaPlayernaEmPv) +STUB("u2xZSvGh2-w", _ZN3sce2Np9CppWebApi14SessionManager2V132RequestPlayerSessionMemberPlayerD1Ev) +STUB( + "u2zEPO5vpXQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEC2ERKS7_) +STUB("u31bZNgtlrs", _ZN7WebCore21NetworkStorageSession22processMayUseCookieAPIEv) +STUB("u32UXVridxQ", sceLibcPafMspaceRealloc) +STUB("u36SHyuWQCA", FTA_Export_Module_type42) +STUB("u38IZ8Z7qYY", sqlite3_column_blob) +STUB("u39XzpncQzA", _ZNK7WebCore8Document21haveStylesheetsLoadedEv) +STUB("u3A+c4f+SQ4", rgctx_fetch_trampoline_rgctx_125) +STUB( + "u3D4PhkviYM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEE7get_refEv) +STUB( + "u3DB2fdUQ8Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEE6assignEPS7_PFvS9_EPNS2_10LibContextE) +STUB("u3FFTUykrBk", _ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamTournamentC2Ev) +STUB("u3NmAGMYF2E", _ZN9Inspector22PageFrontendDispatchernaEmPv) +STUB( + "u3OjK-DsJ1I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEEC2Ev) +STUB( + "u3PhZEv8L8Q", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("u3Q565olUAQ", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session12Notification18InvitationReceivedEE5resetEv) +STUB( + "u3QV-RGXE8M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE5beginEv) +STUB( + "u3QkNCt4y6k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "u3R+eVpXq5s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEEptEv) +STUB( + "u3Sr2sExc8M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEC2EPKS8_) +STUB("u3WF8YmSU-s", + _ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody21comparedDateTimeIsSetEv) +STUB( + "u3btrT-56Qo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEEC2Ev) +STUB("u3cBTPdkbKU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEixEm) +STUB( + "u3d8e3YEpuA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "u3dW5fU+kMo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE8copyFromERKS9_) +STUB("u3h77G+tFVc", sceKernelIsGenuineN) +STUB("u3qpybXQm9U", cpp_demangle_read_tmpl_args) +STUB("u3sH1KCFd9U", _ZN7WebCore16ScriptController11createWorldERKN3WTF6StringENS0_9WorldTypeE) +STUB("u474-bA7ul0", sceShellCoreUtilGetAppLaunchedParamInt) +STUB( + "u480BvMky-8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEE11get_deleterEv) +STUB( + "u49J-rEDPCA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB("u4D+PriSpxE", WKWebsitePoliciesSetPopUpPolicy) +STUB( + "u4DfEmHsg4I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEE11get_deleterEv) +STUB("u4FNPlIIAtw", _Errno) +STUB("u4GPog8SXto", _ZNK7WebCore16HTMLOListElement9itemCountEv) +STUB( + "u4TBaQHOxd0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB( + "u4W3uvKV26A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEcvbEv) +STUB( + "u4W9Ny8hic0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB("u4Wm2T1fYA0", monoeg_g_file_test) +STUB("u4YLcz+Oh-M", _ZN3JSC2VM9tryCreateENS_8HeapTypeEPN3WTF7RunLoopE) +STUB("u4bCGkqhOB4", sceShareUtilityAdvanceInitialize) +STUB("u4gajE5Ykc4", _ZN3WTF10StringImpl19s_atomicEmptyStringE) +STUB( + "u4hXh5246aE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEC2EPNS2_10LibContextE) +STUB("u4i9T9uVt8E", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V116TaskAvailabilityEEptEv) +STUB("u4iK-IyK+ps", _ZTv0_n24_N13MsvMetaEditorD0Ev) +STUB( + "u4iZ5QR8Pas", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEE11get_deleterEv) +STUB("u4mfxMbciJg", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V111LeaveReasonEEC2EPS6_) +STUB( + "u4p7Z+wE35A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEixEm) +STUB("u4t9zBOs1Gw", _ZN3sce2Np9CppWebApi6Common13ConstIteratorImEmmEi) +STUB("u4uYkZNxIcg", _ZN7WebCore16HTMLMediaElement19mediaCacheDirectoryEv) +STUB("u4w4eIh6yBI", WKUserMediaPermissionRequestDeny) +STUB("u59lB8RS-+M", _ZN9Inspector18InspectorHeapAgent7disableERN3WTF6StringE) +STUB( + "u5DwMkrK4BM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEppEi) +STUB( + "u5GYBCMlh-I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEED1Ev) +STUB( + "u5I8KpBBIyE", + _ZN3sce2Np9CppWebApi14SessionManager2V132RequestPlayerSessionMemberPlayerC1EPNS1_6Common10LibContextE) +STUB("u5IYJtq4D-4", _ZN4IPMI6Server6ConfigC2Ev) +STUB( + "u5LoR-jtDuY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEE21intrusive_ptr_sub_refEPS7_) +STUB( + "u5PRU+rEUMo", + _ZN3sce2Np9CppWebApi15Personalization2V128GetAccessCodeResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_21GetAccessCodeResponseEEE) +STUB("u5PpeLvhfNY", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEEC1Ev) +STUB("u5QsY4w3PH4", _ZN7WebCore31BasicColorMatrixFilterOperationD1Ev) +STUB( + "u5SUG5hhQkM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEmmEv) +STUB("u5SwcJ82lAU", _ZN7WebCore11DisplayList22ApplyDeviceScaleFactorC2Ef) +STUB( + "u5V4OTQTFRQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE8copyFromERKS9_) +STUB( + "u5VO0aSGUw0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEeqERKS9_) +STUB("u5a7Ofymqlg", fesettrapenable) +STUB("u5dPpeNUOj4", _ZNK7WebCore13HitTestResult14absolutePDFURLEv) +STUB("u5dQ9GaLr0M", mono_aot_Sce_Vshunbox_trampoline_addresses) +STUB("u5fZd3KZcs0", sceFontCreateRenderer) +STUB("u5g0kZcJ0wI", FTC_Manager_Lookup_Face) +STUB( + "u5kJvKnuft8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEdeEv) +STUB("u5oqtlIP+Fw", sceNetCtlCheckCallbackForNpToolkit) +STUB("u5pQ01e-HF8", WKPreferencesGetEncryptedMediaAPIEnabled) +STUB("u5soAUgmiLU", _ZNK7WebCore23CoordinatedImageBacking2idEv) +STUB( + "u5wYBuFCPLQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEE5resetEPS6_) +STUB( + "u5wezm4fIe0", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionPropertiesC2ERS5_) +STUB("u5x8bw9m4KI", _ZN7WebCore9HTMLNames12hreflangAttrE) +STUB("u5yK3bGG1+w", _ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1ERKSt8_Locinfom) +STUB("u5zp3yXW5wA", _ZTSSt14error_category) +STUB( + "u6+iSxWkC3A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEC1Ev) +STUB( + "u6+sn+SdqQo", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser10getslotIdsEv) +STUB("u61C0itcI3I", _ZN3sce2Np9CppWebApi11Matchmaking2V110UserTicket11unsetStatusEv) +STUB( + "u69K7726ukw", + _ZN3sce2Np9CppWebApi7Matches2V128ResponsePlayerResultsFactory7destroyEPNS3_21ResponsePlayerResultsE) +STUB( + "u6B5+szgWaY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEE11release_refEv) +STUB( + "u6BZ6EC5lDg", + _ZN9Inspector21InjectedScriptManagerC1ERNS_20InspectorEnvironmentEON3WTF3RefINS_18InjectedScriptHostENS3_13DumbPtrTraitsIS5_EEEE) +STUB("u6FSGzt9Ay0", _ZN15AbstractStorage14YoutubeStorage14GetStorageSizeEPlS1_S1_) +STUB( + "u6FeIYeg3hE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEED2Ev) +STUB( + "u6NRNJREiEE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE3endEv) +STUB( + "u6Nh4Mifmtc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "u6Nwj4zg458", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEEdeEv) +STUB( + "u6PcsW0OtPI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEE3getEv) +STUB("u6UfGT9+HEA", _ZNKSt19istreambuf_iteratorIcSt11char_traitsIcEE5equalERKS2_) +STUB("u6VyDVUkYvE", mono_btls_x509_get_signature_algorithm) +STUB("u6Xquj1bFwc", FT_Stream_GetUShort) +STUB("u6Yu5pxRfxk", WKArrayIsMutable) +STUB("u6Zl2vSMcCo", mono_shared_internal_hash_table_init) +STUB("u6aU7eizxRM", _ZN9Inspector20InspectorTargetAgent16connectToTargetsEv) +STUB( + "u6ct0se+SXQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE5emptyEv) +STUB("u6hVEgKlQVQ", g_VideoOutPixelFormat) +STUB("u6sGRTHlIRM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEEC1Ev) +STUB( + "u70n-4-PGMI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEppEv) +STUB("u70oWo92SYQ", sceAcm_ConvReverb_SharedInput) +STUB("u72ExnxtAI4", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats14bandwidthIsSetEv) +STUB("u75oEC-8rTg", scePlayReadyReinitialize) +STUB("u7B6rIlbgpQ", _ZN3sce7Toolkit2NP2V210Tournament7Request10TeamFilterD2Ev) +STUB("u7BCcu2R+jA", _ZN7WebCore14DocumentWriter3endEv) +STUB("u7EiMtweIl8", _ZThn16_N9Inspector20InspectorTargetAgent15setPauseOnStartERN3WTF6StringEb) +STUB("u7I+EvFoPz0", _ZN3JSC7Symbols26regExpSplitFastPrivateNameE) +STUB("u7IZtgWvCeg", _ZN3JSC20PromiseDeferredTimer10runRunLoopEv) +STUB("u7IhbI9GHjk", ufmt_getUChars_67) +STUB( + "u7KZ-Vj1-RM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEC1ERKS7_) +STUB("u7NoGsVfzcU", unorm2_getNFKCInstance) +STUB("u7PDM36vric", _ZN8meta_gen13JpegRetriever19CheckDateTimeFormatEi) +STUB( + "u7RtZK+-mag", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEC1Ev) +STUB("u7W1aQNgwDo", mono_btls_ssl_close) +STUB( + "u7X2QihXnIU", + _ZN9Inspector17ScriptDebugServer27dispatchFunctionToListenersERKN3WTF7HashSetIPNS_19ScriptDebugListenerENS1_7PtrHashIS4_EENS1_10HashTraitsIS4_EEEEMS0_FvS4_E) +STUB("u7YNF83VIFU", _ZNK3WTF6String5splitEDsbRKNS_8FunctionIFvRKNS_10StringViewEEEE) +STUB("u7a76NMzKoc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEEaSERKS7_) +STUB("u7iltoiu9bo", sceClKernelNanosleep) +STUB( + "u7lNSxibIU0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("u7xu+K8TGbA", sceFsUmountLwfsCompat) +STUB("u81EMGz-sUw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEC2EPS8_) +STUB("u82YRvIENeo", CERT_extractRSAKey) +STUB("u864sHJcCjk", _WLdtob.Xdigs) +STUB("u8BkdHb1+Po", sceAgcDriverWaitUntilSafeForRendering) +STUB("u8E0lzektMg", mono_get_exception_invalid_cast) +STUB("u8LyMEJB5fA", _ZN7WebCore20TransformationMatrixC1ERKNS_15AffineTransformE) +STUB("u8M56qpqTtw", rtld_printf) +STUB("u8OCyPpV3NI", _ZN7WebCore10ISOFullBoxD1Ev) +STUB( + "u8OWqS4Y0rg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEppEv) +STUB("u8Oj4n7I8Us", izrule_getName_67) +STUB("u8RjGa4p7xg", Java_com_sony_bdjstack_javax_media_controls_VideoSystem_getVideoScreenRect) +STUB( + "u8TXaVIZTrg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEEcvbEv) +STUB("u8TemmbLDog", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEED1Ev) +STUB("u8W421I-mjg", rgctx_fetch_trampoline_mrgctx_124) +STUB( + "u8WCHKS+55E", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26RecordScoreResponseHeaders6createEPNS1_6Common10LibContextERNS6_12IntrusivePtrIS5_EEl) +STUB("u8WyPl4r3Oc", u_isIDPart) +STUB("u8YMB256Eu4", _ZN3WTF14FileSystemImpl29fileMetadataFollowingSymlinksERKNS_6StringE) +STUB( + "u8YroWpNMNk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEixEm) +STUB("u8bAD4wrr-4", _ZN3sce7Toolkit2NP2V26Friend7Request15GetBlockedUsersC2Ev) +STUB("u8cBqPtM6v8", _ZN3sce7Toolkit2NP2V28Commerce14ProductDetailsC1ERKS4_) +STUB("u8d8odfTl2M", sceVideoCoreSetFullScreen) +STUB( + "u8fHy+cqj2k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEC2ERS7_) +STUB("u8fpXsjm+Rk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEptEv) +STUB( + "u8hEs5tRbrA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEE7add_refEv) +STUB("u8ilnaXaSl8", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_24RegisterGameDataResponseEEC2Ev) +STUB("u8opZ3UBjFs", + _ZN7WebCore17FrameLoaderClient28didLoadFromRegistrableDomainEONS_17RegistrableDomainE) +STUB( + "u8wPDYpz1ag", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEC2EPS8_) +STUB( + "u8xCTQt+4Xk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEaSERKS9_) +STUB( + "u9+J0ZX4wQE", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification11RefreshRoomEE12deepCopyFromERS8_) +STUB("u9+VMq390NA", Java_java_awt_GnmGraphics_getBufferedImagePeer) +STUB( + "u9-0IGvCSPw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEEC2ERSA_) +STUB("u92daif-zrY", il2cpp_profiler_set_events) +STUB( + "u94EzmpCAok", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEED2Ev) +STUB("u9BCzVRcu48", _ZN3sce7Toolkit2NP15AppSTLAllocatorI13SceNpOnlineIdE7addressERS3_) +STUB( + "u9Bt8aI4Ngs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("u9H28omaVEc", _ZNK3JSC9JSPromise6statusERNS_2VME) +STUB("u9Hwxp2D0c8", _Z20WTFCrashWithInfoImpliPKcS0_immm) +STUB( + "u9JJpqbCZfQ", + _ZN3JSC41constructFunctionSkippingEvalEnabledCheckEPNS_9ExecStateEPNS_14JSGlobalObjectERKNS_7ArgListERKNS_10IdentifierERKNS_12SourceOriginERKN3WTF6StringERKNSD_12TextPositionEiNS_24FunctionConstructionModeENS_7JSValueE) +STUB( + "u9JKvT+Al6U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "u9OToMLggOs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEEcvbEv) +STUB("u9R3zIVtCdg", _ZN15AbstractStorage18DailymotionService4StopEv) +STUB("u9XQPaGXOiI", _ZNK7WebCore14ScrollableArea14scrolledToLeftEv) +STUB("u9YKpRRHe-M", sceRazorCaptureImmediate) +STUB("u9b+YOcnskM", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfilesC1ERS5_) +STUB("u9bEzhBxoL0", _ZN3WTF13xmlnsAtomDataE) +STUB( + "u9gwkt9vGn8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEppEi) +STUB("u9jRWuEU9ZQ", _ZN3sce3pss5orbis9framework11PsmCallList10UnregisterEPFvPvES4_) +STUB("u9phDtunvak", wcs2b) +STUB("u9plkqa2e0k", sceNpTrophyIntAbortHandle) +STUB("u9qukeAVp2E", mono_aot_Sce_Vsh_MyGameListjit_code_start) +STUB("u9s1aUWSZB0", _ZN3sce2np12StreamWriter9WriteDataEPNS0_6HandleEPNS0_9StreamCtxEPKvmPm) +STUB("u9tBiSNnvn8", _ZN3sce2np13NpAccessTokenD2Ev) +STUB("u9yKks02-rA", sceUsbdLockEvents) +STUB("uA-9hDsGpxA", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE4sizeEv) +STUB("uA2V1TG78p0", sceWebTerminate) +STUB( + "uA2y7rAyiJY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEC2Ev) +STUB( + "uA4gIUqAFkA", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_20ChallengeRecvDetailsENS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv) +STUB( + "uAB-6CxmjxA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEE11get_deleterEv) +STUB( + "uAEpTDlaAJ4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEmmEi) +STUB("uAEpsrhbvKw", + _ZN3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead8fromJsonERKNS_4Json5ValueE) +STUB("uAHc6pgeFaQ", CERT_STORE_addIdentityPSK) +STUB("uAKuqBgtD-Q", _ZNK7WebCore16HTMLMediaElement6volumeEv) +STUB( + "uAKzZBMsl74", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE5clearEv) +STUB("uAMs0e65nCk", u_memmove) +STUB("uAPBw-7641s", sceUserServiceGetKratosPrimaryUser) +STUB("uAQuprnfbIo", _ZN7WebCore12TextIteratorD1Ev) +STUB( + "uARdCQX--zc", + _ZN7WebCore20DecodeOrderSampleMap28findSamplesBetweenDecodeKeysERKSt4pairIN3WTF9MediaTimeES3_ES6_) +STUB( + "uAc7QXsAZwk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEED1Ev) +STUB( + "uAeOBAV9hpU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEE7add_refEv) +STUB("uAfQ++jp5GM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEEppEv) +STUB( + "uAgG9VG1nBw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEEC2ERKSA_) +STUB( + "uAiN+0KWdp8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V129UploadDataResponseBodyFactory7destroyEPNS3_22UploadDataResponseBodyE) +STUB("uAiUQEGDoNM", sceCesUcsProfileInitEucKr) +STUB("uAqC-jZlakk", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEEaSERKS7_) +STUB( + "uAwJJE2XyXE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEC2Ev) +STUB( + "uAwPcUe6Q1A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("uAwfiZ4QJpI", utrie2_isFrozen) +STUB("uAxS1aVr6OY", sceMatRegisterResource) +STUB("uAxutFsbhyQ", + _ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead9unsetFromEv) +STUB("uAyWBZtHkgM", JSObjectGetArrayBufferByteLength) +STUB("uB8VlDD4e0s", sceZlibWaitForDone) +STUB("uBDKFasVr2c", sceUserServiceSetPbtcMondayHoursEnd) +STUB("uBDapoJVOBg", mono_aot_Sce_Vsh_AppInstUtilWrapperunbox_trampolines) +STUB("uBESzz4CQws", sceNpMatching2RegisterRoomMessageCallback) +STUB("uBIN24Tv2MI", sceNgs2ReportRegisterHandler) +STUB("uBN2pO1YkOM", sceOpusSilkEncInitialize) +STUB( + "uBNf2CBkyls", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("uBPlr0lbuiI", sceNetCtlGetState) +STUB("uBRW3tEoWWM", sceCamera2Close) +STUB("uBU78KWosUY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEC2ERKS7_) +STUB("uBURSzaJ+ig", _ZN3WTF17double_conversion23StringToDoubleConverter13StringToFloatEPKtmPm) +STUB("uBaW3NPAKL4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEC2ERKS7_) +STUB("uBjfcMAhIJs", sceWkFontConfigGetFont) +STUB("uBkmhxUW+PA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEC2Ev) +STUB("uBlwRfRb-CM", _ZNSt13runtime_errorD1Ev) +STUB("uBoKXflFvyo", _ZNK3JSC18BytecodeCacheError7isValidEv) +STUB("uBqy-2-dQ-A", MOCANA_freeMocana) +STUB( + "uBrkx8zvGoM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEEaSERKSA_) +STUB("uBsmYwl5edU", _ZN3sce2Np9CppWebApi6Common6VectorIlE5beginEv) +STUB("uBu37aIWp8c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEC1Ev) +STUB( + "uBvSzZvntAU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEC1Ev) +STUB( + "uC+h7BEDRBQ", + _ZN7WebCore13JSDOMRectList18getOwnPropertySlotEPN3JSC8JSObjectEPNS1_14JSGlobalObjectENS1_12PropertyNameERNS1_12PropertySlotE) +STUB( + "uC-DmNKwiOA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("uC1u3CH7Yh0", _ZN3sce2Np9CppWebApi6Common8IteratorIfEppEv) +STUB("uCCOEG+axwM", _ZTVN7WebCore14DocumentLoaderE) +STUB("uCDdgFMfEb0", _ZN7WebCore16ThreadGlobalDataD2Ev) +STUB("uCEbE7yUA6g", mono_btls_x509_name_from_name) +STUB("uCF7fEQAXGM", _ZN3sce7Toolkit2NP2V210Tournament4TeamC1Ev) +STUB("uCQlbYa5RUg", Java_java_net_NetworkInterface_init) +STUB("uCRed7SvX5E", __cxa_get_globals_fast) +STUB("uCSQpoMePf4", __malloc_limit__) +STUB("uCSXhLtoeZo", _ZN3JSC4Heap8capacityEv) +STUB("uCSYwChcjvs", Java_com_sony_bdjstack_security_aacs_AACSOnline_clearNonce) +STUB( + "uCV5Myh-sKk", + _ZN15AbstractStorage18DailymotionStorage11DeserializeESt10shared_ptrINS_7ContentEEPS1_INS_4ItemEE) +STUB( + "uCVQ8MsRqlc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEixEm) +STUB("uCXfVUOudJk", _ZN7WebCore8SVGNames16unicode_bidiAttrE) +STUB( + "uCZYLkqsAxA", + _ZN7WebCore21HTMLOptionsCollection3addERKN3WTF7VariantIJNS1_6RefPtrINS_17HTMLOptionElementENS1_13DumbPtrTraitsIS4_EEEENS3_INS_19HTMLOptGroupElementENS5_IS8_EEEEEEERKNS1_8OptionalINS2_IJNS3_INS_11HTMLElementENS5_ISF_EEEEiEEEEE) +STUB( + "uCZdii3T6zc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEEdeEv) +STUB("uCZf2L27th8", sceNpEntitlementAccessRequestUnifiedEntitlementInfoList) +STUB( + "uCboqDszR9o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEC1Ev) +STUB( + "uCf2PWpNRPg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEC1ERKS7_) +STUB( + "uChZcMJrPPU", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeaders21intrusive_ptr_sub_refEPS5_) +STUB("uCievourBqo", + _ZN7WebCore6JSFile15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB( + "uCkZcc7Il+4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("uCkgJOrYUL4", sceFiosDHOpen) +STUB("uCrIC0oNwj0", + _ZN8meta_gen11MsvPromoter17setIntMsvMetadataENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB( + "uCvICEX69-Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEC2Ev) +STUB("uCzPBLYt0lw", + _ZNK3sce2Np9CppWebApi14SessionManager2V115LocalizedString6toJsonERNS_4Json5ValueEb) +STUB("uD2YhzQSc7s", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEEC1Ev) +STUB("uD3Iz6lyy0Q", png_start_read_image) +STUB("uD4RiMiUBns", _ZN7WebCore8SVGNames11targetYAttrE) +STUB("uD4sY4950jk", mono_aot_Sce_Vsh_PatchCheckerClientWrappermethod_addresses) +STUB( + "uD5JjZuD3js", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEC2EPS8_) +STUB("uD5cnILClQk", _ZN7WebCore18TextureMapperLayer7setSizeERKNS_9FloatSizeE) +STUB( + "uDBfX0I2YdQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE8pushBackERKS8_) +STUB( + "uDDh1xPjwlU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "uDG1JTZz244", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("uDNVMv6AgrQ", JSValueIsObjectOfClass) +STUB("uDXTnGbAz44", FT_Stream_New) +STUB( + "uDYCTPwBAw4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("uDaa6i4O9xo", mono_thread_current) +STUB( + "uDewSccySeg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEmmEi) +STUB("uDmKDObs+Tc", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19BandwidthC1EPNS1_6Common10LibContextE) +STUB("uDmOK82jyok", _ZN23sceMetadataReaderWriter22StorageParserInfoTableD2Ev) +STUB("uDnvEmFkyh4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEEC1EPKS6_) +STUB("uDpLQEshfOc", mono_aot_Sce_Vsh_Webbrowser_XdbWrapperjit_code_end) +STUB("uDq9djPshPQ", mono_aot_System_Netmethod_addresses) +STUB( + "uDsEULiUTWs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEE11release_refEv) +STUB("uDv80Z-OaP8", goby_FreeRemoteInfo) +STUB("uDwHwwoT6rg", sceBgftServiceIntDownloadGetTaskInfo) +STUB("uDyILPgHF9Q", _ZN3sce2np8JsonBool5ClearEv) +STUB("uDz2mwaGQxc", WKBundleBackForwardListClear) +STUB( + "uE66jMkB9Ws", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE21intrusive_ptr_add_refEPS9_) +STUB("uE6ZULK1Nh0", _ZNK7WebCore17CSSPrimitiveValue15getCounterValueEv) +STUB( + "uE6qgIGRF4c", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEneERKS9_) +STUB( + "uECKlze1JW0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEC1Ev) +STUB( + "uEGKSnH21u4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeaders24setXPsnAtomicOperationIdERKNS1_6Common6StringE) +STUB( + "uEHVn4vqG+A", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_19ProductInfoDetailedENS1_15AppSTLAllocatorIS5_EEEEC1Ev) +STUB("uEN6W+91atQ", _ZN9Inspector17BackendDispatcher12CallbackBase11sendFailureERKN3WTF6StringE) +STUB( + "uEc6NvOkju0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEE7get_refEv) +STUB("uEf4XON5h7k", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE5clearEv) +STUB( + "uEgi7FRczUA", + _ZN3sce2Np9CppWebApi14SessionManager2V113FriendFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_6FriendEEE) +STUB( + "uEhMScyOEmg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEC1Ev) +STUB( + "uEkyMVQaEHk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("uEoilaSHu4Y", _ZN12video_parser13cVideoMetaVWGC1EPNS_18cMp4FFLHndlManagerE) +STUB("uEphK1ILyTQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEC2ERKS7_) +STUB("uEqMfMITvEI", sceDbgPlayGoRequestNextChunk) +STUB("uEtgPWgPxOk", mkstemp) +STUB( + "uEu13OL+mRM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEC1EPKS8_) +STUB("uEwag-0YZPc", sceNpMutexInit) +STUB("uF+dNdiMQwI", udata_closeSwapper) +STUB("uF0tF9gRZvw", _ZN7WebCore16convertToIntegerIhEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB( + "uF2H0VdJsc4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEC1Ev) +STUB("uF8hDs1CqWI", _Getpwctytab) +STUB("uFDGJA7FHNU", + _ZN7WebCore18JSHTMLInputElement15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("uFJpaKNBAj4", sceNpRegisterGamePresenceCallback) +STUB( + "uFKDJlVyxPE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEneERKS9_) +STUB( + "uFOOmHvcRMs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("uFUnPAXlyuw", sceMbusDebugSetCameraAppModuleFocus) +STUB( + "uFZJHz-iWB0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEppEv) +STUB("uFZKofgqDxQ", + _ZN7WebCore21SerializedScriptValue11deserializeEPK15OpaqueJSContextPPK13OpaqueJSValue) +STUB("uFa+zk-qFos", _ZN7WebCore15makeSimpleRangeERKNS_20VisiblePositionRangeE) +STUB("uFbUD2YNHIQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V120PlayerJoinableStatusEEmmEv) +STUB("uFgrUuHyVlY", _ZN7WebCore11JSImageData11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("uFhnnDX0jqk", rgctx_fetch_trampoline_rgctx_65_p) +STUB( + "uFmIv4UT-ns", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE7reserveEi) +STUB("uFupHs7z5AI", _ZN7WebCore4IconD1Ev) +STUB("uFxVYJEkcmc", sceNpTusGetMultiSlotVariableVUser) +STUB("uFyR1GbgpLE", _ZN7WebCore9HTMLNames8partAttrE) +STUB("uG3xw77eZvc", _ZN3sce2Np9CppWebApi14SessionManager2V124GameSessionMemberForRead10getPlayersEv) +STUB("uG59t516E9Y", _ZN3WTF10TextStream8nextLineEv) +STUB( + "uGBhHj7lRFk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEC2EPS6_PNS2_10LibContextE) +STUB("uGChIgrdASs", _ZN9Inspector26DebuggerFrontendDispatchernwEm) +STUB( + "uGFj2Ul7-iQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEEcvbEv) +STUB("uGGFqiI9Ets", _ZNK9Inspector14ConsoleMessage4lineEv) +STUB( + "uGK-c7gP1lQ", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToSendPlayerSessionMessageC1Ev) +STUB("uGPZjD9HVJE", _ZN3sce2np13JsonArrayImplD1Ev) +STUB("uGUYHJaEF8c", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112GroupingTypeEEmmEv) +STUB("uGWre1STrpk", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V110AvatarSizeEEptEv) +STUB( + "uGWw0JVoTOs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEEC1Ev) +STUB( + "uGhA7D070sk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEC2EPS8_) +STUB("uGjapTSgkJE", _ZN7WebCore13NodeTraversal4lastERKNS_13ContainerNodeE) +STUB("uGnFTTL5rzg", sceVideoCoreInterfaceSetFunctionTable) +STUB( + "uGoMOwBH0dE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("uGs4yyYTASM", sceAmprAmmMeasureAmmCommandSizeMultiMapWithGpuMaskId) +STUB( + "uGsG1OipI34", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("uGyN1CkvwYU", sceHmdInternalGetStatusReport) +STUB( + "uH+7HG8qre4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEEaSERSA_) +STUB("uHAsYIPFXPA", _ZN15AbstractStorage14YoutubeContent8SeekTimeElPl) +STUB("uHOOEbuzjEQ", _ZN3sce2np9EventFlagD0Ev) +STUB("uHS8HCqVPT4", deleteAllowedHourFormats_67) +STUB( + "uHU6o2zpLZ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEED1Ev) +STUB("uHXPG4nyonA", mono_shared_mempool_contains_addr) +STUB("uHYqyw8zwRw", mono_aot_Sce_Vsh_ShareGuideSceneunbox_trampolines) +STUB("uHkueep1tc8", mkdirat) +STUB("uHli9mP4lRI", uloc_getVariant_67) +STUB("uHm+ouId424", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEEptEv) +STUB("uHobIZSa1dI", sceSdmaFlushAllWithEvent) +STUB("uHtBrJrJv4I", + _ZN3sce2Np9CppWebApi14SessionManager2V114RepresentativeC1EPNS1_6Common10LibContextE) +STUB("uHtKS5V1T5k", sceNpTusGetDataAsync) +STUB("uHu90db-foU", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_6TicketEEC2Ev) +STUB("uHwApAJIslU", GCC_except_table340) +STUB("uI+tX0l4hnw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEE7get_refEv) +STUB("uI2wsKNmoVk", _ZN7WebCore24CoordinatedGraphicsLayer12syncChildrenEv) +STUB( + "uI3wTfJ67Nc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEE11get_deleterEv) +STUB("uI6fjh6uDF0", WKContextGetNetworkProcessIdentifier) +STUB( + "uI7ceOlcD58", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEC2ERS7_) +STUB( + "uIBgmEs8vIo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE5beginEv) +STUB("uIIZREKsTQU", _ZN9Inspector14ConsoleMessage14incrementCountEv) +STUB("uIJu0mEGQ60", sceCesUhcToUtf16be) +STUB("uIKl7FoX6Pg", mono_aot_I18N_Westjit_got) +STUB("uINq9QxFYqU", sceNpSnsIntFbGetGameAccessTokenAllowed) +STUB( + "uINr6KrIoIU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "uIQ1nOcN8B0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB("uIQDp-GmPnw", WKBundleFrameGetACMemoryInfo) +STUB("uIS-li19ItI", WKWebsiteDataStoreConfigurationSetApplicationCacheDirectory) +STUB("uISRjQQphhM", _ZN15AbstractStorage11LocalFolderC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB( + "uITsIlaiYBc", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUser17getnpServiceLabelEv) +STUB("uIV7vlecUPo", ENGINE_by_id) +STUB( + "uIXEdSTBNiA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "uIdephR0re4", + _ZN3sce7Toolkit2NP8Matching9Interface13updateSessionEPNS1_18SessionInformationEPtNS1_5Event9UserEventE) +STUB("uIfEB5AuPK8", _ZN12video_parser13cVideoMetaVWG13_readMetadataEv) +STUB( + "uIgbcW-SA3o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEC2Ev) +STUB( + "uIgs1DmooMY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEEdeEv) +STUB("uIhIaI5Qw-U", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V115NatConnectivity9getGlobalEv) +STUB( + "uIhb7VT3Y7U", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "uInMNwcNAlw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEC1Ev) +STUB("uInYhy7xa+U", sceSystemServiceReenableMediaPlay) +STUB("uInnlQmu6BM", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE5beginEv) +STUB("uIoYWKOA9yo", cairo_matrix_rotate) +STUB( + "uIsyA-GVzVg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEE11get_deleterEv) +STUB("uIw-6X6SSME", _ZN9Inspector21InspectorConsoleAgent6enableERN3WTF6StringE) +STUB("uIwxsqDlHRc", sceAgcGetRegisterDefaultsInternal) +STUB("uIz-Qam52G4", _ZN12video_parser5vpcom11string_util8tokenizeERSt4listISsSaISsEERKSsmc) +STUB("uJ0VhGcxCTQ", sceAudio3dPortFreeState) +STUB("uJ2Md9n7HJI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE7reserveEi) +STUB("uJ3m8INuikg", sceAjmBatchJobClearContext) +STUB("uJ70+H3g6jw", + _ZN3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectatorC1EPNS1_6Common10LibContextE) +STUB( + "uJ82zdkfV-w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEC1ERS8_) +STUB("uJH0UZFEMRg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEptEv) +STUB("uJLcEvXbRwg", _ZN3sce7Toolkit2NP2V211UserProfile7Request13GetNpProfilesD2Ev) +STUB("uJNEnzNCtao", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead25unsetLocalizedSessionNameEv) +STUB("uJNQT7s8ikg", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEEixEm) +STUB("uJOiRR205j8", _ZN7WebCore12GridPosition15setSpanPositionEiRKN3WTF6StringE) +STUB("uJTTb-x3Kks", sceIduUtilGetNumSchedules) +STUB( + "uJU3TvqdQT0", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUserD2Ev) +STUB("uJUGbADcTTg", _ZN7WebCore11MediaPlayer19syncTextTrackBoundsEv) +STUB( + "uJV+qVMCWvA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "uJW70WO58C8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEEC1ERS9_) +STUB("uJYXNFvJ1lY", Java_java_net_Inet4AddressImpl_getHostByAddr) +STUB( + "uJaa376XtU4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE7reserveEi) +STUB("uJcwhqr2Tbs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V115SearchAttributeEEmmEi) +STUB( + "uJdTCXqA2fc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEE3getEv) +STUB( + "uJg+OCnLtos", + _ZN9Inspector26InspectorBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("uJgWvzGN6aI", _ZN3sce7Toolkit2NP2V28Commerce16RatingDescriptorC2Ev) +STUB( + "uJgdAAK-Gks", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEmmEi) +STUB("uJhCMIgHtBo", _ZN7WebCore14ProcessWarming25collectPrewarmInformationEv) +STUB("uJiGR0cme+g", _ZN7WebCore17JSHTMLLinkElement4infoEv) +STUB("uJoZRn-1Zcg", uloc_openKeywordList) +STUB( + "uJsUiCet9JQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE10setContextEPNS2_10LibContextE) +STUB("uJvJAiSPQuc", cuse_lowlevel_new) +STUB( + "uJz78qBVRxQ", + _ZN7WebCore9FrameView30scrollPositionForFixedPositionERKNS_10LayoutRectERKNS_10LayoutSizeERKNS_11LayoutPointES9_fbNS_30ScrollBehaviorForFixedElementsEii) +STUB("uJziRsODk1c", sceAgcDriverGetResourceRegistrationMaxNameLength) +STUB( + "uK-KeYnSzUg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEdeEv) +STUB("uK-XPIiI+jQ", _ZN9Inspector21InjectedScriptManager10disconnectEv) +STUB( + "uK0sr7dsqZM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB("uK7vGxAQVxM", FT_Set_Debug_Hook) +STUB("uKAqJDFFpso", _ZN3sce2Np9CppWebApi14ConnectAccount2V212PartnerToken20setAccessTokenSecretEPKc) +STUB("uKBkvN84hbw", UCNV_FROM_U_CALLBACK_SKIP) +STUB( + "uKC1KVphJr0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEC2ERKS7_) +STUB( + "uKD8-96+SNs", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody22unsetInvitableUserTypeEv) +STUB("uKNPDudJTmo", cairo_scaled_font_create) +STUB( + "uKOneIfJrbs", + _ZN9Inspector25DebuggerBackendDispatcher20setPauseOnExceptionsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("uKPHIxkRT6w", sceNpTrophySystemGetTrpTitleIcon) +STUB( + "uKT6W0vqRcs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEEC1ERSA_) +STUB("uKTDW8hk-ts", sceNpCommerceSetPsStoreIconLayout) +STUB("uKTxb5P1CQ0", _ZN4Manx6Screen15availableHeightEv) +STUB("uKVbrw3xW8o", _ZN3JSC7Symbols24getByIdDirectPrivateNameE) +STUB( + "uKaCgVaHqGY", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEEiRNS2_10LibContextEPT_m) +STUB("uKjh3hI1npw", hb_ot_tag_to_script) +STUB("uKkBLhXCMC8", mono_assembly_get_assemblyref) +STUB("uKl2mNtDE6o", mono_profiler_install_jit_compile) +STUB("uKnoYK2OebM", il2cpp_field_get_value) +STUB("uKr5dZIABo4", _ZNK7WebCore10LayoutRect8containsERKS0_) +STUB("uKwVHZIMDbg", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEEeqERKS7_) +STUB("uKwYpqeUkzo", _Unwind_GetBSP) +STUB("uLAfeeY2T2Y", _ZN3WTF21MemoryPressureHandler9singletonEv) +STUB("uLB0JWTbLhk", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110ResultTypeEEmmEi) +STUB("uLKVE19J+iU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_12FutureResultIiEEED1Ev) +STUB("uLMT97BG-mM", _ZN7WebCore17FullscreenManager18willExitFullscreenEv) +STUB("uLVGXwLzfME", _ZN7WebCore9JSDOMRect4infoEv) +STUB("uLVXOwPH-ys", + _ZN15AbstractStorage17DailymotionFolderC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) +STUB("uLcnckzRuF4", + _ZN3sce2Np9CppWebApi13InGameCatalog2V522ContainerRatingFactory7destroyEPNS3_15ContainerRatingE) +STUB("uLf5hm8BYzs", _ZN4Manx14NetworkProfile15updateProxyInfoEv) +STUB( + "uLgLwgxdOt0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("uLq7dPUZAyY", _ZN3sce3pss5orbis9framework21PsmMainThreadCallList10UnregisterEPFvPvES4_) +STUB("uLqHpoktUzI", _ZN7WebCore8SVGNames16font_face_uriTagE) +STUB( + "uLvJppvbAMs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE8copyFromERKS9_) +STUB("uLwzd3AmWBA", mono_aot_Mono_Dynamic_Interpreterjit_code_end) +STUB("uLxkG09gC9Q", _ZN7WebCore8SVGNames8vkernTagE) +STUB( + "uLzo94lrfSs", + _ZN3sce2Np9CppWebApi14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBody10setNatTypeERKi) +STUB( + "uM2gao7IN+Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEC1EPNS2_10LibContextE) +STUB("uM3tl64pJNU", sceSrcUtilityFinalize) +STUB("uM5yTn9gVQ8", __tsan_atomic16_fetch_or) +STUB( + "uMAJcevHm4g", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEptEv) +STUB("uMD+19V462k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEppEi) +STUB("uMJFOA62mVU", sceNpCondSignal) +STUB("uMMG8cuJNr8", _ZNSt15_Num_float_base17has_signaling_NaNE) +STUB("uMPfxHtGcSA", _ZN3JSC4Heap32setGarbageCollectionTimerEnabledEb) +STUB("uMTWH7WU7mQ", _ZNK3sce2Np9CppWebApi14SessionManager2V115SearchCondition12getAttributeEv) +STUB("uMWav34mMq8", _ZN4IPMI4impl10ServerImplD2Ev) +STUB( + "uMYCp-jBsIM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEC2Ev) +STUB("uMd3+hRMxHs", _ZN3sce7Toolkit2NP2V24Core7Request11MemoryPools20SSL_MEM_DEFAULT_SIZEE) +STUB("uMeLdbwheag", fmal) +STUB("uMei1W9uyNo", exit) +STUB("uMfHNhvqp-U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE4sizeEv) +STUB("uMiUG1S+Z+A", _ZN3sce2Np9CppWebApi7Matches2V15Error9setReasonEPKc) +STUB( + "uMk8PvI5pN4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEptEv) +STUB("uMkqgm70thg", sceUserServiceGetGlsLanguageFilter) +STUB( + "uMm2FXLD5Og", + _ZN7WebCore15ActiveDOMObjectC2EPNS_22ScriptExecutionContextENS0_33CheckedScriptExecutionContextTypeE) +STUB("uMm5jtE1kS0", _ZNK7WebCore13HitTestResult13mediaHasAudioEv) +STUB("uMnQSjJGaHk", _ZN3sce7Toolkit2NP2V23TUS7Request16GetUsersVariableD1Ev) +STUB( + "uMr9TxukgLk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEmmEv) +STUB("uMtUYDmWD3I", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEEC2ERKS6_) +STUB("uMuGhA2DXkw", _ZN3JSC19InlineWatchpointSet7fireAllERNS_2VMEPKc) +STUB("uMzCRoHb63c", Java_java_lang_ClassLoader_resolveClass0) +STUB("uN-2vZbD6fU", _ZN23sceMetadataReaderWriter22StorageParserInfoTableD1Ev) +STUB( + "uN0u5rVqe1c", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEptEv) +STUB("uN7wT+JlBoA", mono_log_close_logfile) +STUB("uN9iGVRcQNI", _ZNK7WebCore8Document10alinkColorEv) +STUB( + "uNADD2XciMk", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getInteger3Ev) +STUB("uNAUmANZMEw", sceJpegDecQueryMemorySize) +STUB("uNBcuOM-orU", + _ZN3JSC10JSFunctionC1ERNS_2VMEPNS_16NativeExecutableEPNS_14JSGlobalObjectEPNS_9StructureE) +STUB("uNBguxxOcgI", sceVorbisDecStreams) +STUB("uNCARQQDkbg", _ZN7WebCore8Settings25setUserStyleSheetLocationERKN3WTF3URLE) +STUB("uNCtsC7HE80", _ZZSt9MakefacetISt10moneypunctIcLb1EESt8_LocinfoERT_T0_E3buf) +STUB("uNF-qFHt8G0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17GetGameDataResultEEC2Ev) +STUB("uNOxyBsDQb8", + _ZN3sce2Np9CppWebApi7Matches2V120ErrorResponseFactory7destroyEPNS3_13ErrorResponseE) +STUB("uNPUU9tAUw4", sceMatAllocPhysicalMemory) +STUB("uNTAIV2KkXI", mono_aot_Sce_Vsh_Np_Managerplt_end) +STUB("uNTluLfYgS8", sceNetConfigSetIfLinkLocalAddr6) +STUB( + "uNXoZilhivk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "uNchuAk+6vU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEdeEv) +STUB( + "uNg3L8azMIg", + _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities26GetUsersActivitiesResponse6toJsonERNS_4Json5ValueEb) +STUB( + "uNhqaYt3eBk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEED1Ev) +STUB("uNqLv8MBdwg", sceMusicCoreServerGetSpWakeupAuthorityList) +STUB( + "uNrmNzg4Hy0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE3endEv) +STUB( + "uNsyGsKzFSo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("uNu7j3pL2mQ", sceSaveDataPromote5) +STUB("uNzuMI2Smqg", sceBgftServiceIntDownloadGetExtUsbUserStorageSize) +STUB("uO6YxonQkJI", _ZTSSt5_IosbIiE) +STUB( + "uOAyLHTOLHY", + _ZN3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayerC1EPNS1_6Common10LibContextE) +STUB("uODuM76vS4U", + _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecm) +STUB( + "uOEm1Zz6Yuc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEED1Ev) +STUB( + "uOITpL5-7Es", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE5beginEv) +STUB( + "uOKdq2cE+0w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEE11get_deleterEv) +STUB( + "uONEqIIroeI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE6resizeEj) +STUB("uOQoa-hW3gA", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V16Rating17setNpServiceLabelERKj) +STUB("uOVa2UlpF0M", WKBundleRemoveAllVisitedLinks) +STUB("uOWeAeBDuM0", _ZN3JSC13JSONStringifyEPNS_14JSGlobalObjectENS_7JSValueEj) +STUB("uOWuJZyEwUM", _ZN7WebCore24CachedResourceHandleBase11setResourceEPNS_14CachedResourceE) +STUB( + "uOXvPwJZ+2w", + _ZN9Inspector20DOMBackendDispatcher11resolveNodeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("uObO1I15Se0", sceNpAsmClientGetNpComInfo3) +STUB("uOcJWTLDtgw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEaSERKS7_) +STUB( + "uOcLl5zOh1E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE5beginEv) +STUB( + "uOhkHwrueIU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEE7get_refEv) +STUB("uOr14Z8P6Ms", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEcvbEv) +STUB( + "uOuXpOcuni4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEC2Ev) +STUB( + "uOyXf6fIIqI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEED2Ev) +STUB("uOycFzjMWTU", mono_aot_Sce_Vsh_CloudClientjit_code_start) +STUB("uP3wt8xeABw", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V115NatConnectivityD1Ev) +STUB("uP4OP7rPYyM", _Printf.percent) +STUB("uP4u3DK9vxg", _Fopen.rwacc) +STUB( + "uP5Wx4jurho", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEC1EPS8_) +STUB( + "uP7UpUdDNUY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "uP7ici27GVQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEC2Ev) +STUB("uP8AtPqt+ms", mono_aot_System_Xmljit_code_start) +STUB( + "uP9aPPHOeag", + _ZN9Inspector25DatabaseBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "uPBxGgP0xcM", + _ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody14setCustomData2EPKvm) +STUB("uPEHcToMgdQ", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE3endEv) +STUB( + "uPIrw-bzvwI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "uPNAIH+asg0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEED2Ev) +STUB("uPO717XxK1g", _sceNpMemoryHeapShowMemoryStat) +STUB( + "uPP1UzHz3BI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEC1Ev) +STUB( + "uPPfsu7Bo+Q", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEeqERKS9_) +STUB("uPR3a9peE4k", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE6resizeEj) +STUB( + "uPS6yM1BjOo", + _ZN7WebCore19JSHTMLSelectElement10putByIndexEPN3JSC6JSCellEPNS1_14JSGlobalObjectEjNS1_7JSValueEb) +STUB( + "uPWm4ln-Iqk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEE3getEv) +STUB("uPXP9uT1Zp8", _ZN7WebCore9HTMLNames16enterkeyhintAttrE) +STUB("uPbKbN7X5B4", _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeINS1_11TusVariableEPvEEC2Ev) +STUB( + "uPcynqAmMLY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEC2EPNS2_10LibContextE) +STUB("uPj-CXHNEFE", sceNpSnsIntAbortRequest) +STUB("uPjhklRIi2g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEcvbEv) +STUB( + "uPom72iFSLc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEED1Ev) +STUB("uPqxvaoLkbM", sceM4aacEncClearContext) +STUB( + "uPu5cAaLIRo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEC1EPS8_) +STUB( + "uPz3-6FpnN8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEE11get_deleterEv) +STUB("uPza8y4cMC4", initCommInfoList) +STUB( + "uQ1nhZaGJy4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "uQ1tPQwvbV8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEEC2Ev) +STUB("uQ4HFlHUJy0", UI_method_set_writer) +STUB("uQ6pBAcK42U", _ZN7WebCore28DisplayRefreshMonitorManager13sharedManagerEv) +STUB("uQFv8aNF8Jc", _ZNSt10moneypunctIcLb0EEC2ERKSt8_Locinfomb) +STUB("uQJjmIpY2Ok", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_19GetGameDataResponseEE3getEv) +STUB("uQPBVPOhM00", _ZN3NTF21URLRequestFormElementD2Ev) +STUB( + "uQbmFdTvbno", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("uQc9P8Hrr6U", sceHmdInternalGetBrightness) +STUB( + "uQd4iI6u4jg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "uQd55+WGOnM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEC1Ev) +STUB("uQiK7fjU6y8", sceRudpAccept) +STUB( + "uQmSd3wko78", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("uQsPFALidlg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEEaSERS7_) +STUB("uQsRTwqZM3I", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request7GetFeed17DEFAULT_PAGE_SIZEE) +STUB( + "uR+A5n4mmG4", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEiRNS2_10LibContextEPT_m) +STUB("uR1wFHXX1XQ", sceSystemStateMgrReboot) +STUB( + "uR4qPf61ZvA", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScore22hasxPsnAtomicOperationEv) +STUB("uR5Cz0aA4AA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEC1ERKS7_) +STUB("uR5F-DA5ML0", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setSecondaryAudioStream) +STUB( + "uR63v7Jt6VM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEcvbEv) +STUB( + "uR8uMnUti7E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE4sizeEv) +STUB("uRCMM+lLRZk", GCC_except_table68) +STUB("uREzL5i86Vo", Java_java_io_FileOutputStream_write) +STUB("uROsAczW6OU", _ZNSt10moneypunctIwLb1EEC1ERKSt8_Locinfomb) +STUB("uRU0lQe+9xY", sceUserServiceGetFaceRecognitionDeleteCount) +STUB( + "uRZ2aQNKx2A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "uRbM4M5aF9Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB( + "uRbMuQ2EcFQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE7reserveEi) +STUB( + "uRbp+hFQ6O8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "uRczZFV+Or4", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeaders15hasLastModifiedEv) +STUB( + "uRd8HZpEfII", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "uRgh9mhpSl8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE8capacityEv) +STUB( + "uRhqnylvSug", + _ZN7WebCore11FrameLoader17HistoryController36saveScrollPositionAndViewStateToItemEPNS_11HistoryItemE) +STUB("uRj8BEc2NKk", + _ZN7WebCore15FocusController15setInitialFocusENS_14FocusDirectionEPNS_13KeyboardEventE) +STUB( + "uRmViNor+mc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEC2Ev) +STUB("uRosf8GQbHQ", sceHttp2SetInflateGZIPEnabled) +STUB("uRq3B-dOzuo", uregex_useTransparentBounds_67) +STUB( + "uRqpazPkiGs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEC2EPS6_PNS2_10LibContextE) +STUB( + "uRrccOKObqg", + _ZN7WebCore9ImageDataC2ERKNS_7IntSizeEON3WTF3RefIN3JSC21GenericTypedArrayViewINS6_19Uint8ClampedAdaptorEEENS4_13DumbPtrTraitsIS9_EEEE) +STUB("uRsskUhAfnM", sceNpWebApiVshInitialize) +STUB( + "uRuBf71eYD0", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("uRvcCZ2XhEg", g_ArrayPrototypePoison) +STUB("uS05QSvf+tY", _ZN3sce7Toolkit2NP2V26Trophy7Request6UnlockC1Ev) +STUB("uS1Uto3McwE", WKPreferencesGetWebRTCMDNSICECandidatesEnabled) +STUB( + "uS6QQDB+Wcw", + _ZN3sce2Np9CppWebApi7Matches2V111TaskFactory6createEPNS1_6Common10LibContextEPKcNS3_10TaskStatusENS3_16TaskAvailabilityEPNS5_12IntrusivePtrINS3_4TaskEEE) +STUB( + "uS7pVemFFRo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEEcvbEv) +STUB("uS9P+bSWOC0", CERT_STORE_findIdentityCertChainNext) +STUB("uSCkLIMckMk", _ZN7WebCore11XPathResult12snapshotItemEj) +STUB("uSKZ2FPIMfk", u_strncpy_67) +STUB("uSLgWz8ohak", sceNpManagerIntGetUserIdByOnlineId) +STUB( + "uSMrsAMws8Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("uSNNaVzIbyI", _ZN3JSC8Debugger9exceptionEPNS_9ExecStateENS_7JSValueEb) +STUB("uSNqxrARpEQ", ft_module_get_service) +STUB( + "uSXQRQzpGgA", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("uSY70W0dkA4", mono_btls_ssl_ctx_peek_store) +STUB("uSanpch7iLE", + _ZN23sceMetadataReaderWriter10jpegParser26jpegParserExtractThumbnailERKSsRNS_9ThumbnailE) +STUB( + "uScUPWyOjAU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEC1EPS8_) +STUB("uSeJeaPNBFQ", _ZN7WebCore13JSDOMRectList4infoEv) +STUB("uSjDEEo9Vec", _ZNK3sce2Np9CppWebApi6Common6VectorINS2_6StringEE5beginEv) +STUB("uSl496Y8eeA", mono_aot_System_ServiceModel_Internalsunbox_trampolines_end) +STUB("uSrXaxT+oPQ", sceAjmBatchJobGetCodecInfo) +STUB("uSsvYtPuUdQ", _ZNK3sce2Np9CppWebApi6Common6VectorIjE8capacityEv) +STUB( + "uStrWg7XpWM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE3endEv) +STUB( + "uSuVZ1eLmt4", + _ZN7WebCore17JSHTMLLinkElementC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_15HTMLLinkElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "uSwpX8iH5qo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE10setContextEPNS2_10LibContextE) +STUB("uT-4nK3GPew", mono_assembly_open_full) +STUB("uT0+9jY9AfM", _ZN7WebCore16createFullMarkupERKNS_4NodeE) +STUB("uT2xEKnilDY", mono_aot_System_Reactive_Linqjit_code_end) +STUB("uT4EBfl284o", sceFiosCachePrefetchFHRange) +STUB( + "uT4hP43dsiU", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody14unsetInteger10Ev) +STUB("uT9sA6KaYTI", + _ZNK3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession14getSessionNameEv) +STUB("uTA9WNAsuJ4", _ZN7WebCore9HTMLNames13accesskeyAttrE) +STUB( + "uTBQbeJe0xQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEEcvbEv) +STUB("uTDkdY+Gquc", _ZN3WTF24callOnMainRunLoopAndWaitEONS_8FunctionIFvvEEE) +STUB("uTL5h-iE3u0", _ZN7WebCore17HTMLCanvasElement9toDataURLERKN3WTF6StringE) +STUB("uTNe7A2gscY", _ZN3sce7Toolkit2NP2V212ActivityFeed11SharedVideoC2Ev) +STUB( + "uTNtBFDLLcU", + _ZNK3sce2Np9CppWebApi14SessionManager2V130RequestPlayerSessionInvitation6toJsonERNS_4Json5ValueEb) +STUB("uTNzSYfPGLU", _ZN3sce2Np9CppWebApi11Matchmaking2V115LocationFactory7destroyEPNS3_8LocationE) +STUB("uTOOoxHbtkc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEE11release_refEv) +STUB("uTQbKfuJXAM", _ZN7WebCore13TextIndicator6createERKNS_17TextIndicatorDataE) +STUB( + "uTRcZNJiTRs", + _ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBodyC2EPNS1_6Common10LibContextE) +STUB("uTRcii-1Idc", _ZNK7WebCore31BasicColorMatrixFilterOperation14transformColorERNS_5SRGBAIfEE) +STUB("uTRx3+3gc+k", + _ZN7WebCore22EmptyFrameLoaderClient31dispatchDidReceiveContentLengthEPNS_14DocumentLoaderEmi) +STUB( + "uTUqGWc6b5I", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi47ParameterWithBinaryRequestBodyToRecordLargeData14setRequestBodyEPKhm) +STUB("uTW+63goeJs", InitializeImeModule) +STUB( + "uTWW7GR8-YM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEppEv) +STUB("uTXC9aSxDz4", _ZN7WebCore11MathMLNames12notationAttrE) +STUB( + "uTYlOtJnWIg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEED2Ev) +STUB( + "uTZQIw18Rho", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEdeEv) +STUB("uTd181B3Y58", _ZNK7WebCore24CachedResourceHandleBasecvMS0_PNS_14CachedResourceEEv) +STUB("uTgyjMYaqX0", + _ZN3sce2Np9CppWebApi7Matches2V120RequestTeamStatistic25unsetTeamMemberStatisticsEv) +STUB("uTiJLq4hayE", _ZNSt14numeric_limitsIhE8digits10E) +STUB( + "uTrP29Wp9fA", + _ZN7WebCore11JSDOMWindow18getOwnPropertySlotEPN3JSC8JSObjectEPNS1_9ExecStateENS1_12PropertyNameERNS1_12PropertySlotE) +STUB( + "uTvJnnKxwTk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEmmEv) +STUB( + "uTznXkW2cco", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEppEi) +STUB( + "uU3G4j4PkzE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE10setContextEPNS2_10LibContextE) +STUB("uU4zmFmloQA", _ZN7WebCore15DatabaseTracker23trackerWithDatabasePathERKN3WTF6StringE) +STUB("uU61+5U5Z3I", WKViewClearSelection) +STUB( + "uU7GW41qlC0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEEdeEv) +STUB("uU8DcyPGPj8", __tsan_atomic64_fetch_xor) +STUB("uUAV3+OHzJI", _ZN7WebCore11MathMLNames17annotation_xmlTagE) +STUB("uUDq10y4Raw", _ZNKSt7_MpunctIcE13do_neg_formatEv) +STUB( + "uURiDeFaw+s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE8copyFromERKS9_) +STUB( + "uUV9NMozQa4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEC2EPS8_) +STUB( + "uUWvIrs0T9o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEppEi) +STUB("uUhHdmHrmSU", __wrap_symlink) +STUB("uUjwGu7aZuU", glDeleteTransformFeedbacks) +STUB("uUq1q3l2pD0", WKKeyValueStorageManagerDeleteEntriesForOrigin) +STUB( + "uUzKvubyd0A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEptEv) +STUB( + "uV-7ibqsigA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "uV1KaHMy3qs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEC2ERS7_) +STUB("uV3bjt5IJgs", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE3endEv) +STUB("uVAfWmv+cc8", sceNpManagerIntGetTicket) +STUB( + "uVG3HFxZ5mY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE5beginEv) +STUB( + "uVG4nFt3IIM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEeqERKS9_) +STUB( + "uVKwCgQaHfc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("uVLETIxb0yA", _ZNK15AbstractStorage14YoutubeStorage10GetServiceEv) +STUB("uVOxy7dQTFc", _ZNSt10moneypunctIwLb1EED2Ev) +STUB("uVQK08ctBG0", _ZL5codes) +STUB("uVRcM2yFdP4", fminf) +STUB("uVXcivvVHzU", j1f) +STUB( + "uVcxYdNI58E", + _ZN3sce7Toolkit2NP12ActivityFeed9Interface14postPlayedWithEPKNS1_17PlayedWithRequestEPNS1_9Utilities6FutureINS1_15ActivityStoryIdEEEb) +STUB("uVdONJ4yNrc", glAttachShader) +STUB("uVeK-dCqDDI", _ZN7WebCore9GLContext7currentEv) +STUB( + "uVgZmBOIlXU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEC2EPS8_) +STUB( + "uVhnA9G47-4", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE21setOnFinishedCallbackEPFvliS6_PvEPFvliSD_ESD_) +STUB( + "uVi0q+spM5M", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE4sizeEv) +STUB( + "uVi6Z+toDwg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEC1Ev) +STUB( + "uViVmrvTxbI", + _ZN9Inspector22InspectorDebuggerAgent21breakpointActionProbeEPN3JSC14JSGlobalObjectERKNS_22ScriptBreakpointActionEjjNS1_7JSValueE) +STUB( + "uVl68ZrnhOE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEC1EPS6_) +STUB("uVoPGNUyeZU", glGetProgramInfoLog) +STUB("uVoRmKYYtcI", wpe_unicode_to_key_code) +STUB( + "uVqo3bTWBbE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("uVsMQhMnxbE", _ZN3WTF10fastCallocEmm) +STUB("uVwdNifr5O8", _ZThn16_N9Inspector18InspectorHeapAgent8snapshotERN3WTF6StringEPdPS2_) +STUB("uVxaUTCMBiI", PKCS12_free) +STUB( + "uVyEWj1zias", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V129UploadDataResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_22UploadDataResponseBodyEEE) +STUB("uVzufRohxCU", EVP_DigestFinal_ex) +STUB( + "uW4bk+mPlM8", + _ZN15AbstractStorage13TwitterFolder10NewContentERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_7ContentEE) +STUB("uW4vfTwMQVo", sceSaveDataUmount2) +STUB("uW5wKgMp0JQ", WKContextConfigurationSetDiskCacheSizeOverride) +STUB("uW8TLDZhSV4", _ZN3JSC11RegisterSet7allGPRsEv) +STUB("uWCl+lTaUyM", jdiv_round_up) +STUB("uWDXpyKhBTw", rgctx_fetch_trampoline_rgctx_58) +STUB("uWIYLFkkwqk", scePlayGoGetLocus) +STUB( + "uWMIJsUfFwo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE3endEv) +STUB("uWNeRp70BRw", sceVoiceChatRequestLeaveVoiceChatGroup) +STUB( + "uWWyicdMgWU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEmmEv) +STUB( + "uWX-pOK8mVc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEdeEv) +STUB("uWXZu+HXZw0", _ZN7WebCore16MIMETypeRegistry24unsupportedTextMIMETypesEv) +STUB("uWZBRxLAvEg", _ZNKSt12system_error8_DoraiseEv) +STUB("uWaDlxZI6nE", _ZNK7WebCore12NamedNodeMap14getNamedItemNSERKN3WTF12AtomicStringES4_) +STUB("uWpTjViz8Rg", _ZN3sce2Np9CppWebApi6Common8IteratorIfEppEi) +STUB( + "uWw8SL2VJw0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEC2EPKS8_) +STUB( + "uWx7Xd2dgkE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEC1Ev) +STUB("uWyW3v98sU4", sceKernelCheckReachability) +STUB("uX0nKsUo8gc", + _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewy) +STUB( + "uX0sXC5UmOo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEppEi) +STUB("uX5ukpv+Lxw", _ZN3sce7Toolkit2NP2V26Friend12BlockedUsersC2Ev) +STUB("uX9JzEAQiZ8", + _ZN7WebCore21JSTextTrackCueGeneric11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB( + "uXDuiwP0hlo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEED2Ev) +STUB("uXI9qelUUlw", __tsan_unaligned_read4) +STUB("uXIXqbSceSE", _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead14unsetSessionIdEv) +STUB("uXJeEurJF8c", _ZNK3WTF10AtomString23convertToASCIIUppercaseEv) +STUB("uXJio0aNxk4", YGNodeStyleGetWidth) +STUB("uXOqUmL+3vo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEixEm) +STUB("uXPlVNPQipM", sceFsLvdDetach) +STUB("uXR5stkS+W4", scePssMusicPlayerUserCreate) +STUB( + "uXUZ3QDz5Uk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE8copyFromERKS9_) +STUB("uXUoF-VjclI", _ZN3sce2Np9CppWebApi6Common6VectorIiED2Ev) +STUB( + "uXVO22Vdj7U", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEneERKS9_) +STUB("uXZAS3XfshY", _ZN3JSC7Symbols24speciesGetterPrivateNameE) +STUB("uXj-oWD2334", _ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1Em) +STUB("uXluFL9Byo0", u_toupper_59) +STUB( + "uXm-+Vq20pw", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE5getIdEv) +STUB( + "uXup4zYmoYI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEEC2ERSA_) +STUB( + "uXvj9aqGt0Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEE3getEv) +STUB( + "uY6pgeR3OHM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEppEv) +STUB( + "uYC5xxC8dvE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEEdeEv) +STUB("uYELOMVnmNQ", sceWebBrowserDialogNavigate) +STUB("uYFjM3ReDRQ", cairo_pattern_create_radial) +STUB( + "uYFv60TQXPY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB("uYHlTj-PnX4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEED2Ev) +STUB("uYI-Ut2eIzE", _ZN7WebCore14LoaderStrategy34responseFromResourceLoadIdentifierEm) +STUB( + "uYRGK9M-kP4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB("uYdGxAnSrr4", _ZN7WebCore29SQLiteStatementAutoResetScopeC1EPNS_15SQLiteStatementE) +STUB( + "uYdiOWB804s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE5beginEv) +STUB( + "uYfP736JtRU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEE3getEv) +STUB("uYhiELUtLgA", sceRemoteplayIsRemotePlaying) +STUB("uYjA59lYaH8", scePlayReadyProfileResume) +STUB( + "uYoeDr2PqjE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB("uYpN3d-+c9o", _ZNK7WebCore11MediaPlayer4rateEv) +STUB( + "uYpyA8er8CU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("uYunNHRcXQU", delegate_virtual_invoke_6) +STUB("uYx2ZEq998s", sceFiosRename) +STUB( + "uZ4KJRuYkDY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEC1Ev) +STUB( + "uZ7F+rP1muQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEEaSERKSA_) +STUB("uZCi5aYi35w", TEEC_ReleaseSharedMemory) +STUB( + "uZE97FeWiKs", + _ZN9Inspector25DebuggerBackendDispatcher5pauseElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "uZEqpjhUKrs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("uZG5rmROeg4", sceUserServiceSetPbtcWednesdayHoursEnd) +STUB( + "uZI2-2wAqtw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE7popBackEv) +STUB( + "uZI4ymmqs3c", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE5beginEv) +STUB("uZTQHI50WpY", sceContentExportFromDataWithThumbnail) +STUB("uZW-mqsxkrM", sceAgcCbBranchGetSize) +STUB("uZXjTVsS-hU", sceMusicPlayerServiceTerminate) +STUB( + "uZYQ7IQfWrs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("uZYkD7Vda7Y", _ZN7WebCore9HTMLNames11captureAttrE) +STUB("uZZDmi7MP0o", _ZN7WebCore17HTMLCanvasElement27setMaxPixelMemoryForTestingEm) +STUB("uZnL4QZxzkI", sceNpManagerIntUnbind) +STUB("uZq9X7FZfOk", scePssMusicPlayerGetSurroundPan) +STUB("uZqc4JpFdeY", sceSaveDataDeleteUser) +STUB("uZrCQCIDYgY", _ZN7WebCore10XLinkNames8hrefAttrE) +STUB("uZrOwuNJX-M", sceRazorCpuPushMarkerStatic) +STUB("uZrg74SvVvk", sceEsvmEngineMediaKeySessionGetKeyStatuses) +STUB("uZuLK3v55JY", _ZN7WebCore21DiagnosticLoggingKeys25missingValidatorFieldsKeyEv) +STUB( + "uZyj4nJsqSI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEppEv) +STUB("uZz3ci7XYqc", sceUltQueueTryPop) +STUB("uZz94vYMiNs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE3endEv) +STUB("ua+13Hk9kKs", sceImeKeyboardSetMode) +STUB("uaALL3BTAUQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession16customData1IsSetEv) +STUB("uaB-LoJqHis", sceNpAuthGetIdToken) +STUB("uaCfG0TAPmg", sceNpManagerIntLoginParseJsonUserInfo) +STUB("uaKuW8v5TIw", __sanitizer_reset_coverage) +STUB( + "uaPLudZDRSk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEneERKS9_) +STUB( + "uaPp1MpJ0UA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEC2EPS6_PNS2_10LibContextE) +STUB("uaQLyOXnEU4", _ZN3sce7Toolkit2NP5EventC2EPKNS1_8UserInfoE) +STUB( + "uaRmccuN+v0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEC1EPKS8_) +STUB("uaSGoo1vVU8", mono_jit_info_get_code_size) +STUB("uaXURZ5NMGw", sceSpNetEpollWait) +STUB("uad7k07h1HM", sceNpSnsTwitchDialogUpdateStatus) +STUB( + "uadmWFUj4r4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEdeEv) +STUB("uaiGNR0Sbvc", _ZN15AbstractStorage12LocalContent8SeekTimeElPl) +STUB("uaieF+glFPs", sceSystemServiceLaunchPlayerDialog) +STUB( + "uamw6ddP2K8", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM18LiveRegionRelevantEEESt8optionalIT_ERKN3WTF6StringE) +STUB("uapVh6ndBrg", mono_runtime_delegate_invoke) +STUB("uaqZvga3Fkg", sceLncUtilCrashSyscore) +STUB("uasPTZrSnjY", + _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody21unsetTicketAttributesEv) +STUB("uat8HBPqBak", _ZN7WebCore11DisplayList8DrawLineD2Ev) +STUB("uaxFW+LGzGY", sceCesUtf32StrGetMbcsLen) +STUB("uaxqQAB2Ozk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEaSERKS7_) +STUB("ub+d08lid68", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEED1Ev) +STUB( + "ub-4aF7I0Lg", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi17deleteGameSessionEiRKNS4_28ParameterToDeleteGameSessionERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB("ub-ueWij7es", + _ZNK3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession12getSessionIdEv) +STUB("ub4yceOLlbQ", glVertexAttrib4f) +STUB("ub8Gq5NufoY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS3_18CustomResponseDataEEC1Ev) +STUB( + "ub8a6ctanCg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "ub9Su0WNymM", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations30unsetxPsnAcceptPlatformNamePs5Ev) +STUB("ubB+tVwd4-U", sceGpuTraceCancel) +STUB("ubD+FitjqhA", sceCamera2SetVideoSync) +STUB("ubJZVBCQFgk", _ZN3sce2Np9CppWebApi7Matches2V118RequestTeamResults7setRankERKi) +STUB("ubPRQdYlwSs", _ZN7WebCore9HTMLNames9scriptTagE) +STUB("ubQSgnluQP4", _WScanf.qchar) +STUB("ubQlmG6njvM", rgctx_fetch_trampoline_mrgctx_89) +STUB( + "ubRC7kMEocE", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setBoolean6ERKb) +STUB("ubUpW4CUi58", WKWebsiteDataStoreConfigurationSetWebSQLDatabaseDirectory) +STUB("ubWGqqrsQz4", _ZN3sce7Toolkit2NP2V212EventsClient12EventDetails22MAX_SIZE_PROMOTER_NAMEE) +STUB("ubXxox6sjJ4", _ItL_qS2) +STUB("ubeOpKpFwZk", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V324ValidationConstraintInfoD2Ev) +STUB("ubr-PIGrHb0", _ZNK3sce2Np9CppWebApi13InGameCatalog2V55Image9typeIsSetEv) +STUB("ubtOpuxX4qM", _ZN3JSC17DebuggerCallFrame15currentPositionERNS_2VME) +STUB("ubu+mUNY3GI", _ZN7WebCore10FloatPoint9normalizeEv) +STUB( + "ubyp3e7YMdw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEC2Ev) +STUB( + "uc-+hLj0+RU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("uc-MH98BJo8", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_6NpUserENS1_15AppSTLAllocatorIS5_EEEEC1Ev) +STUB( + "ucEQLd6FObE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEppEi) +STUB("ucEsi62soTo", sceAudio3dAudioOutOpen) +STUB("ucFJiTO1EUw", dlerror) +STUB("ucKj65n4dCM", _ZNK3JSC12StackVisitor5Frame12functionNameEv) +STUB( + "ucO5SkY4gIU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEEC1ERKSA_) +STUB( + "ucOP9llCucE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE3endEv) +STUB("ucPqYWsrCUc", + _ZSt9use_facetISt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale) +STUB("ucQnl+JZlKI", _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession16unsetCustomData1Ev) +STUB( + "ucT-RtUvUpg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEmmEv) +STUB( + "ucb9qXK3fws", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEdeEv) +STUB("ucdj6a5Hf3E", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt6vectorI16SceNpTusVariableNS2_IS4_EEEE8allocateEmPKv) +STUB( + "ucgKQraG-Vs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEEaSERSA_) +STUB("ucmNWbdZNhc", _ZN3WTF11Persistence7DecoderrsERNS_8OptionalIdEE) +STUB("ucxfOk6R-B8", _ZN7WebCore16DOMGuardedObjectC2ERNS_17JSDOMGlobalObjectERN3JSC6JSCellE) +STUB( + "ucyieM4FAaU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("ud-L5OvD5bA", sceBluetoothHidInterruptOutput) +STUB("ud1P9Z-rI9Q", uregex_setMatchCallback_67) +STUB( + "ud5pZBOkUMM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEC2Ev) +STUB( + "ud6I2Iis-lU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("ud7hEku-VXE", _ZN7WebCore9HTMLNames18onanimationendAttrE) +STUB( + "ud7nv2HX4Ws", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getInteger3Ev) +STUB("udAPjod3tpU", u_isxdigit) +STUB("udAxvCePkUs", sceVoiceResetPort) +STUB("udNKq54S-xU", mono_btls_x509_name_get_entry_value) +STUB("udPSdxup+Q4", WKBundlePageCallAfterTasksAndTimers) +STUB("udSCe0cO+54", _ZNK3WTF6String28convertToLowercaseWithLocaleERKNS_12AtomicStringE) +STUB("udTM6Nxx-Ng", _ZTVSt11logic_error) +STUB("udTbHw5oKC4", _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeINS1_11TusVariableEPvEEC1Ev) +STUB( + "udUzJlCwtCM", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_9Animation14AnimationStateEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB("udWWfVZ5cPg", sceFsInitUmountSaveDataOpt) +STUB("udZmgiZVFZ8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEE3getEv) +STUB("uda1zGpaOqo", _ZN12video_parser21MpegvideoAvcParse3DDSEPhiPNS_24SceMpegvideoAvc3DDSParamE) +STUB("udajK8+CB+g", _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse9getZoneIdEv) +STUB("udeK-Ks31U8", _ZN7WebCore8SVGNames14glyph_nameAttrE) +STUB( + "udflhEV8tB8", + _ZNK3sce2Np9CppWebApi14SessionManager2V132RequestPlayerSessionMemberPlayer18nonPsnPlayersIsSetEv) +STUB("udfv0ISDDQA", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging24GameDataMessageThumbnailEEC2Ev) +STUB( + "udfynCHinYE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE5emptyEv) +STUB("udgitr6I1Vk", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEEC2Ev) +STUB("udhcXivSwFQ", _ZN3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer10setNatTypeERKi) +STUB( + "udjTbFCC+U0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEEC1Ev) +STUB( + "udmPFEi00pM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEmmEi) +STUB("udmos65cRQo", _ZN3sce2Np9CppWebApi7Matches2V118RequestTeamResultsD1Ev) +STUB( + "udnF6+H72UM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE7reserveEi) +STUB("udns7ikzOnE", sceDataTransferRequestTransferTimePS4) +STUB("udoSfHla8yA", GetVolume) +STUB( + "udocGKaPXA8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEC1EPNS2_10LibContextE) +STUB( + "udsO02KCayM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("udsU8VfPMiQ", _ZN3sce7Toolkit2NP2V29Messaging24GameDataMessageThumbnailC1Ev) +STUB("udwfbBwAWVc", _ZN7WebCore6Editor38commandIsSupportedFromMenuOrKeyBindingERKN3WTF6StringE) +STUB("udwmZJCe+Nk", _ZN3sce7Toolkit2NP2V26Trophy16UnlockedTrophiesD1Ev) +STUB("udxusD5bgWg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEEppEv) +STUB( + "udyVIVVbCu0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEC2Ev) +STUB("ue13srrrLqA", _ZN7WebCore15AffineTransform5flipXEv) +STUB("ue3o0cfflkM", _ZN2GK9PlayerPSN15cancelStartGameEv) +STUB("ueBDsJH29YI", WKContextConfigurationCopyInjectedBundlePath) +STUB("ueDakuJBHxI", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_16SessionAttributeEEneERKS4_) +STUB("ueXsXnzWBqI", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats8fromJsonERKNS_4Json5ValueE) +STUB("ueZ5Ryx4OSg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEED2Ev) +STUB("ueZqqz5clfg", _ZNK7WebCore8Settings23needsSiteSpecificQuirksEv) +STUB( + "uebhxMrwtg0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEEdeEv) +STUB("ueega6v3GUw", sceRtcSetTick) +STUB( + "uehBxUMp9dQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "ueiHcR1VuG4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEaSERKS9_) +STUB("ueiLds63ryU", _ZN7WebCore17JSDOMRectReadOnlyD2Ev) +STUB("uekVJTVqBGc", _ZNK3WTF3URL21truncatedForUseAsBaseEv) +STUB("ueohGT35aPU", _ZN9Inspector33AnimationBackendDispatcherHandlerC2ERKS0_) +STUB( + "uev6lIhgzjM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEplEm) +STUB("uf-RIkZUazQ", ucptrie_getType) +STUB("uf2iLFwyhQ4", + _ZNK3sce2Np9CppWebApi14SessionManager2V118MatchmakingForRead6toJsonERNS_4Json5ValueEb) +STUB("uf77muc5Bog", sceNpTusTryAndSetVariableAVUserAsync) +STUB("ufDDnJvofro", OBJ_cleanup) +STUB("ufGZsAPiWH4", _ZN7WebCore11MathMLNames12stretchyAttrE) +STUB("ufKUQQ8FwXQ", unorm_normalize_59) +STUB( + "ufMwxAt9Wlw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEmmEi) +STUB("ufWVY3o70GA", _ZN3JSC8JSObject11hasInstanceEPNS_9ExecStateENS_7JSValueE) +STUB("ufZdCzu8nME", __sync_lock_test_and_set_16) +STUB("ufb1tKP3DRI", rgctx_fetch_trampoline_mrgctx_64) +STUB("ufesWMVX6iU", sceRemoteplayGetMbusDeviceInfo) +STUB("ufexf4aNiwg", sceVrTrackerRegisterDeviceInternal) +STUB("uffEeeP+lNU", _ZN9Inspector14FrontendRouterC1Ev) +STUB("uffabrxlIGw", mono_btls_x509_store_add_orbis_certs) +STUB( + "ufhm3H7RdV4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEC2EPNS2_10LibContextE) +STUB( + "ufiLQgC0v0M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEC1EPS8_) +STUB("ufoBDuHGOlM", SSL_getSessionStatus) +STUB("ufqiLmjiBeM", __atomic_load_2) +STUB( + "ufrD1UGL-B8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEE5resetEPS9_) +STUB("ufvWCWWs4sM", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V110UpdateModeEEmmEi) +STUB("ug01kFuh4vs", mono_aot_Sce_Vsh_Np_AuCheckplt) +STUB("ug1fTsmntv4", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEEptEv) +STUB("ugBmqrDZeVU", + _ZN7WebCore26ThreadableWebSocketChannel23webSocketConnectRequestERNS_8DocumentERKN3WTF3URLE) +STUB("ugDPL8U56Rs", umutablecptrie_getRange_67) +STUB( + "ugJ1UAAO5As", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEED2Ev) +STUB( + "ugJ92rxX-8Y", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessions28hasxPsnAcceptPlatformNamePs5Ev) +STUB( + "ugJPoEDHYXs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEC2EPNS2_10LibContextE) +STUB("ugJXRBTIcdY", _ULx86_64_set_fpreg) +STUB( + "ugKZNs10Mno", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB("ugOHPs5+waI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEED1Ev) +STUB("ugR4z6HcTt0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEppEv) +STUB("ugZkPwKokqE", _ZN7WebCore5Cairo11ShadowStateC1ERKNS_20GraphicsContextStateE) +STUB( + "ugaT-gOol4Y", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEdeEv) +STUB( + "ugksT7FfWoc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB( + "ugqzdATcuew", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEneERKS9_) +STUB("ugtWLQ2FDgM", _ZN3sce7Toolkit2NP2V28Matching7Request11SetRoomInfoD1Ev) +STUB( + "ugwCIHpmN68", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEaSERKS9_) +STUB("ugxIai0X0HA", + _ZNK3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator12getAccountIdEv) +STUB( + "uh+DBfdZMzM", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEiRNS2_10LibContextEPT_m) +STUB("uh2EuCm2YCY", _ZNK7WebCore29PerspectiveTransformOperation4dumpERN3WTF10TextStreamE) +STUB("uh2LjaW+xMI", rgctx_fetch_trampoline_mrgctx_107_p) +STUB("uh7RQK-+n20", _ZNK3WTF7RunLoop9TimerBase8isActiveEv) +STUB("uhCaukuz-SM", closeall) +STUB("uhCmn81s-mU", sceGameLiveStreamingScreenInitialize) +STUB("uhD7g7zXIQo", sceSystemServiceShowClosedCaptionAdvancedSettings) +STUB( + "uhDaambKRNE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEcvbEv) +STUB( + "uhEaA4AjzKw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE8pushBackERKS8_) +STUB( + "uhFR+J1wVsU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEeqERKS9_) +STUB("uhJ+bSomPoE", sceDbgGetCpuGpuFrequencySetting) +STUB( + "uhLmb+na0lc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEptEv) +STUB("uhSJXVMYQWc", sceNpPushStartNotificationA) +STUB("uhSjF5hCtbI", _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicket7hasviewEv) +STUB("uhXr-WOPNFI", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEEptEv) +STUB("uhYTnarXhZM", _Tls_setup__Errno) +STUB("uhZXEKm3lkk", _ZNK3sce2Np9CppWebApi6Common6String5emptyEv) +STUB( + "uhbEBoeL20g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE21intrusive_ptr_add_refEPS9_) +STUB("uhbwdrVWKnk", WKTextCheckerSetTestingMode) +STUB( + "uhjICfmWhyE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEC2EPS6_PNS2_10LibContextE) +STUB("uhnb6dnXOnc", _ZNSt4_PadC2EPKc) +STUB("uhnbOEaOjPk", _ZN4Manx14NetworkProfile3getENS_14SettingOptTypeEPcj) +STUB("uhpcXLeQsqs", mono_aot_Sce_Vsh_ProfileCacheplt) +STUB( + "uhqPZeZPSIw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "uhskTrKa5xA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEEcvbEv) +STUB( + "uhusgd7UzGA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEC1Ev) +STUB("uhwssTtt3yo", sceUserServiceSetEventSortEvent) +STUB( + "uhxDqVGiDTY", + _ZN15AbstractStorage14MemfileContentC2ESbIcSt11char_traitsIcENS_8StlAllocIcEEEN3paf6common9SharedPtrINS6_6BufferEEE) +STUB( + "ui0oztI0kmA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEptEv) +STUB( + "ui1gt1JZqjM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE5beginEv) +STUB("ui4s+3Sg6is", _ZN9Inspector32ScriptProfilerFrontendDispatcherC2ERNS_14FrontendRouterE) +STUB("ui6EuBxIaMM", sceAudioOut2LoContextQueryMemory) +STUB("ui722edOhCU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEaSERKS7_) +STUB("ui9fWiWye0o", _ZNK7WebCore17NowPlayingManager15supportsSeekingEv) +STUB("uiDKKpAQzO0", sceIduIsRifInstalled) +STUB("uiDkfX8F6IU", WKContextMenuItemGetTypeID) +STUB( + "uiDzVg4GhYk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEmmEv) +STUB("uiHpJ8MEi4I", rgctx_fetch_trampoline_rgctx_72_p) +STUB("uiKfzfd8Mas", mono_aot_Sce_Vsh_EventServiceWrapperplt) +STUB("uiNw6AxXTIs", WKUserContentControllerAddUserContentFilter) +STUB("uiOi3D5osbI", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_14TrophyGameInfoEEC1Ev) +STUB( + "uiP3F7iJYsE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEC1EPKS8_) +STUB("uiPVQSxXlsc", _ZNK3sce3Xml3Dom8Document10isReadOnlyEv) +STUB("uiPjI4MiUG4", mono_aot_System_Netunbox_trampolines_end) +STUB("uiRALKOdAZk", _ZNSt8numpunctIwE5_InitERKSt8_Locinfob) +STUB( + "uiSvOOqkftU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEixEm) +STUB("uiT87zoTX-I", _ZN7WebCore9HTMLNames8citeAttrE) +STUB("uiZDc8EEwtc", JVM_GetAllThreads) +STUB("uic2FBmyTDE", rgctx_fetch_trampoline_rgctx_76_p) +STUB("uidGfFopL5M", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15CategoryInfoSubEEC2ERKS4_) +STUB("uipV6x48ZHs", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEEC2Ev) +STUB("uirI2Gi9lFE", + _ZN15AbstractStorage14FacebookFolder13RemoveContentERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("uisYUWMn-+U", sceUserServiceSetNotificationBehavior) +STUB("uit423bpn6Q", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11TusVariableEEneERKS4_) +STUB("uivgEVjcAyQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEED2Ev) +STUB("uiyG1M9D8-4", sceFacePartsGetWorkingMemorySize) +STUB( + "uiysGgtmviU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE3endEv) +STUB( + "uiz-aiHA4LU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEEaSERSA_) +STUB("uj+HLgqmsTY", _ZN3WTF21makeRFC2822DateStringEjjjjjjji) +STUB("uj3aP9oDm3g", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEEixEm) +STUB( + "uj4CNwK+VZA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE11getResponseERS8_) +STUB("uj86YxCYid0", sceNpStrToUInt32) +STUB("uj8oGGu4uow", isobmf_box_getflags32b) +STUB("uj9Cz7Tk0cc", sceNpProfileDialogOpen) +STUB("uj9WUwBqWNY", mono_btls_x509_get_subject_name) +STUB( + "ujCZFcGFLXk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEC1EPS8_) +STUB("ujCdMRb+W+g", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEEixEm) +STUB("ujGbVNwbnsg", _ZNK7WebCore9DOMWindow18getMatchedCSSRulesEPNS_7ElementERKN3WTF6StringEb) +STUB("ujGjL77K+TM", _ZN7WebCore9HTMLNames26x_apple_editable_imageAttrE) +STUB("ujJhGfJ7Hl8", _ZN7WebCore21NetworkStorageSessionD2Ev) +STUB("ujL8cgs4+bE", _ZNK3sce2Np9CppWebApi7Matches2V118RequestMatchPlayer13getPlayerNameEv) +STUB("ujNrClE1MjA", _ZN3WTFltERKNS_7CStringES2_) +STUB("ujZrhbEvbqE", mono_aot_Sce_Vsh_Np_IdMapperunbox_trampolines) +STUB( + "ujaw4nlg-OU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "ujcD1NhqiD0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE8copyFromERKS9_) +STUB("ujeTlfJlFVU", __tsan_read2) +STUB("ujiJ7W6roc8", pTlsThreadContext) +STUB("ujpJL4lI1sQ", _ZN6WebKit12ChildProcess26messageSenderDestinationIDEv) +STUB("ujpcmXzvHls", __asan_exp_load2_noabort) +STUB("ujtFwWJnv+E", sceNpManagerIntLoginVerifyDeviceCode) +STUB( + "ujtgdGZD0t4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEE7get_refEv) +STUB( + "ujzmg7Y2Dhs", + _ZN3sce2Np9CppWebApi14ConnectAccount2V216PartnerTokensApi26ParameterToGetPartnerToken10initializeEPNS1_6Common10LibContextEPKcb) +STUB("uk--E9fhsws", mono_aot_Microsoft_CSharpjit_got) +STUB("uk--yYLi-bI", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIiEmmEi) +STUB("uk-1vOGrxXg", _ZNSt9basic_iosIwSt11char_traitsIwEE4fillEw) +STUB( + "uk137jXZTd8", + _ZN9Inspector20CSSBackendDispatcherC2ERNS_17BackendDispatcherEPNS_27CSSBackendDispatcherHandlerE) +STUB("uk9X17a4Ecg", JVM_GetClassName) +STUB("ukANcY00vgs", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEED2Ev) +STUB("ukBq62OPAYA", sceNpServiceChecker2IntIsSetServiceType) +STUB("ukC55HsotJ4", sceNpTusTryAndSetVariable) +STUB("ukEeOizCkIU", _sceNpManagerGetNpMemAllocator) +STUB("ukHVyQtxsxo", mono_install_compile_method) +STUB("ukKiCHfFJVQ", WKContextSetDiskCacheSpeculativeValidationEnabled) +STUB( + "ukMRZael2xs", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("ukNBBv9WDXA", + _ZN3sce7Toolkit2NP9Utilities6FutureISbIcSt11char_traitsIcENS1_15AppSTLAllocatorIcEEEEC1Ev) +STUB( + "ukOdkwtqQ1k", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB("ukPQnpBeU2k", SHA1_Final) +STUB("ukPVyxONIH8", sceVencCoreUnmapTargetMemoryByPid) +STUB("ukQodCmg99s", _ZN3sce4Json5Value22setTypeMismatchHandlerEPFRKS1_NS0_9ValueTypeEPS2_S5_PvES6_) +STUB("ukScek6qnn8", mono_aot_Sce_Vsh_ErrorDialogUtilWrapperplt_end) +STUB( + "ukWWwFPMHEI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEED1Ev) +STUB("ukhG1vaBfZg", mono_metadata_get_constant_index) +STUB("ukkAU3uqfqc", sceOpusSilkEncEncode) +STUB("uklp6XpnYLs", ulocdata_getLocaleSeparator_67) +STUB( + "ukp5X0crKPE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEE7add_refEv) +STUB("ukqI0fEBLSs", sceVideoCoreRegistEventCallback) +STUB("ukr6FBSrkJw", sceNpTusAddAndGetVariableVUser) +STUB( + "ukr6kbNljfk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE10setContextEPNS2_10LibContextE) +STUB( + "ukxAF09hktE", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "ukytsyDkqq4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEC1EPKS8_) +STUB("ul-kdmwPExY", sceUsbStorageDialogGetResult) +STUB( + "ul-pKV4m3Gk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEaSERS8_) +STUB("ul57hvm6mBc", sceKernelGetOpenPsIdForSystem) +STUB("ul5OAm3L+J4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEC1Ev) +STUB("ul8RI0nVEIQ", _ZNK3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer13getPlayerTypeEv) +STUB("ulBlTGJU5JU", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError12unsetMessageEv) +STUB("ulEvSNNPm7s", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V18SortModeEEppEv) +STUB( + "ulFPuTDRh3U", + _ZN9Inspector24RuntimeBackendDispatcher13releaseObjectElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "ulHXga6XhQY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEC1EPNS2_10LibContextE) +STUB("ulLP+f5h0rg", _ZNK3sce3Xml3Dom8Document13hasChildNodesENS1_6NodeIdE) +STUB("ulORziuDeWU", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container13unsetAgeLimitEv) +STUB("ulPuWk7bYCU", sceNpAsmGenerateNpTitleToken) +STUB( + "ulRtMoG0ClI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEplEm) +STUB( + "ulTx15-LXFk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V125IdempotentVariableFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_18IdempotentVariableEEE) +STUB( + "ulWxdt6MgtA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEdeEv) +STUB( + "ulX-iif7-Ms", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEE5resetEPS6_) +STUB("ulXqWMAxwRs", sceCesEucCnToUcs2) +STUB("ule245hXEZM", _ZN3sce7Toolkit2NP2V28Commerce7Request13GetCategoriesD2Ev) +STUB( + "ulixy4x0Inw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEEaSERSA_) +STUB( + "ulj0jxgynVI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEmmEv) +STUB( + "uljckB7P73Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEE11get_deleterEv) +STUB( + "ullXabxk1Ks", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("ullbxCtCniE", getNumOfCommInfoList) +STUB("ullzNvYhJvk", _ZN3sce2Np9CppWebApi10Activities2V114UserActivities8ActivityD1Ev) +STUB( + "uloJ1oZ5Hng", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEmmEv) +STUB( + "uloi1p2ixYA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEC2Ev) +STUB("ultFJQj8-yY", _ZN7WebCore24CoordinatedGraphicsLayer21invalidateCoordinatorEv) +STUB( + "ulzwUCGBrZc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEEptEv) +STUB("um2Cu6EKiSo", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEED1Ev) +STUB( + "um8cLH9WITs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEaSERKS9_) +STUB("um8nmEK9a8Y", sendData) +STUB( + "umBy2KEx6vI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEEaSERKSA_) +STUB( + "umHTaq7nuVM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEC1EPS8_) +STUB("umIqupy8UU0", FT_Outline_Done_Internal) +STUB( + "umL4OeLN9yU", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("umLsULVr3Js", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEE5resetEPS5_) +STUB("umP81Dvxlk0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEEptEv) +STUB("umRPVA-p9k4", _ZN7WebCore18PluginInfoProviderD0Ev) +STUB( + "umS4VZb440k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE5clearEv) +STUB( + "umXymDVKK4k", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEplEm) +STUB( + "umahRxjo6+Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "umjRgQU8O8I", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEEcvbEv) +STUB( + "umjYKp8Bc6c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE5beginEv) +STUB( + "umm5m+mXiZs", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser9terminateEv) +STUB("umnzcAFHbII", _ZN7WebCore15SQLiteStatement9bindValueEiRKN3WTF7VariantIJDnNS1_6StringEdEEE) +STUB("umquPEvWklc", Java_java_lang_Class_registerNatives) +STUB("umvikw1If0c", _ZN7WebCore14SecurityOrigin30isLocalHostOrLoopbackIPAddressEN3WTF10StringViewE) +STUB("un-D0PsVeKI", _ZN7WebCore17DOMImplementation19createCSSStyleSheetERKN3WTF6StringES4_) +STUB( + "un0zp+ZyXTg", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitationsC1ERS5_) +STUB( + "un1SdiWKqFM", + _ZNK7WebCore21ContentSecurityPolicy20allowConnectToSourceERKN3WTF3URLENS0_24RedirectResponseReceivedE) +STUB( + "un3q34bUJ10", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "un9MlNjYzV0", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("unOEuYwSpXU", _ZL15_delete_nothrow) +STUB("unY7ZQ4yRRE", do_check_tree) +STUB("ungeknobzMM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEED2Ev) +STUB("unk-IdKq+R8", WKPageGroupRemoveAllUserStyleSheets) +STUB( + "unlro8ukm7c", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEplEm) +STUB( + "unlxRKxuo8Q", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEEaSERKSC_) +STUB("unmBOMX8j4g", _ZN3sce7Toolkit2NP2V28Commerce14ProductDetails29MAX_RATING_SYSTEM_DESCRIPTORSE) +STUB("untnO4d6OQs", _ZNK9Inspector24RemoteControllableTarget16targetIdentifierEv) +STUB("uo+eoPzdQ-s", sceAudioOutStartSharePlay) +STUB( + "uo215cnZ4JU", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "uo35Bm-yp7s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("uo3JXMzZRLM", _ZN4Manx11getFontDataEPKcPPvPj) +STUB("uo7YshH1vnI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEED2Ev) +STUB( + "uoAvgH+Y19Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("uoC6WmyO4Dg", EVP_PKEY_size) +STUB("uoCC5iMYRRk", _ZN7WebCore12RenderObject17absoluteTextQuadsERKNS_11SimpleRangeEb) +STUB( + "uoDAuFhTsI8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEED1Ev) +STUB("uoDJDAlVmgs", _ZNK7WebCore21WheelEventDeltaFilter16filteredVelocityEv) +STUB("uoFvgzwawAY", sceNpTusGetDataAVUserAsync) +STUB( + "uoGzCEleQS4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB("uoLEglsvThA", + _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse24matchStartTimestampIsSetEv) +STUB("uoSZQi-ImGo", _ZNK3WTF8JSONImpl10ObjectBase9getStringERKNS_6StringERS2_) +STUB( + "uoTwghbWiEU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE5eraseENS2_8IteratorIS6_EERS9_) +STUB("uoUpLGNkygk", sceCommonDialogInitialize) +STUB("uoVZzqNKqGQ", Java_com_sony_bdjstack_security_aacs_AACSOnline_getVolumeID) +STUB("uodLYyUip20", fclose) +STUB("uogRLNVSArA", sceHeadTrackerSearchCandidate) +STUB( + "uohk0jLEP20", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE7popBackEv) +STUB("uolst0E6XfM", mono_assembly_set_main) +STUB( + "uor-t1ddrqw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEaSERKS9_) +STUB( + "uot5Q1CZ16Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEC1EPNS2_10LibContextE) +STUB("uoxr3PU+4as", _ZN7WebCore17FrameLoaderClient29dispatchDidChangeMainDocumentEv) +STUB("up+A+h06FM8", _ZN7WebCore23createEmptyEditorClientEv) +STUB("up3p5G0j8Jk", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15NpSessionMemberEE7addressERKS3_) +STUB("up4R3KfldIo", _ZN9Inspector27InspectorFrontendDispatchernaEmPv) +STUB( + "up4fWFeqtW4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE4sizeEv) +STUB( + "up6hCyhBzdQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEppEi) +STUB("up9Z19akYXM", sceSystemTtsRegisterCallback) +STUB("upA0jOZLS+0", ucurr_countCurrencies) +STUB( + "upAw452HXrU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEC2Ev) +STUB( + "upDj81RWW6M", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEeqERKS9_) +STUB("upE3vG41+o8", _ZN12video_parser7cVpUtil7GetTimeEv) +STUB("upEB3XUvH8o", sceBluetoothHidUnregisterCallback) +STUB( + "upHLxHweB1U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEE11release_refEv) +STUB("upKNCUpJ018", sceUpsrvUpdateCheckGetPackageInfo) +STUB( + "upLbknmc9RU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("upUWKHXcvi0", _ZN3WTF14FileSystemImpl19getFileCreationTimeERKNS_6StringE) +STUB( + "upX9E2aXlUY", + _ZN3sce2Np9CppWebApi14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBody8fromJsonERKNS_4Json5ValueE) +STUB("upXZ4sdogk8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEEC2Ev) +STUB( + "upa2v34E4gc", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("upeKra1FaQk", FTA_Support_Format_Pfr) +STUB( + "upg-U7BkMv0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEEC1ERSA_) +STUB( + "upgOo2JCiFo", + _ZN9Inspector20DOMBackendDispatcher21releaseBackendNodeIdsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("uphWwLZAuXA", _ZN3sce2np6Thread9EntryFuncEPv) +STUB( + "uphz8FfSKXE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEE11get_deleterEv) +STUB("upkD4O7byJU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEE5resetEPS6_) +STUB("upoVrzMHFeE", scePthreadMutexTrylock) +STUB("uprMqgSaDGg", _ZN7WebCore11PageOverlay15setNeedsDisplayERKNS_7IntRectE) +STUB("uprUZZEWTqk", _ZNSt15basic_streambufIwSt11char_traitsIwEE5imbueERKSt6locale) +STUB( + "upuozOH-3u8", + _ZN3sce2Np9CppWebApi14SessionManager2V140ResponsePlayerSessionMemberPlayerFactory7destroyEPNS3_33ResponsePlayerSessionMemberPlayerE) +STUB("upwSZWmYwqE", _ZN10__cxxabiv116__enum_type_infoD1Ev) +STUB("upy4ftIyYvw", unorm_quickCheck_67) +STUB("upzdrzOYkS0", _ZN3sce2np10CancelableD1Ev) +STUB( + "uq+C1oo3Zto", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEE21intrusive_ptr_sub_refEPS7_) +STUB( + "uq-lAaIu4fA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("uq-mcVtogrk", mono_metadata_declsec_from_index) +STUB("uq14jeDMgHM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEE7add_refEv) +STUB("uq1imV74tBs", sceKernelSaveApp) +STUB("uq2Y5BFz0PE", sceFiberGetInfo) +STUB("uqHkyjI7MOk", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error9codeIsSetEv) +STUB("uqJlNd9XIrA", sceKernelAddResource) +STUB( + "uqK0IM9-jhI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEppEv) +STUB("uqLGWOX7-YE", _ZNSt9basic_iosIwSt11char_traitsIwEE4initEPSt15basic_streambufIwS1_Eb) +STUB("uqO-mdcKdLY", _ZN7WebCore6Editor17insertOrderedListEv) +STUB("uqP02+Rw9UE", _ZN3sce7Toolkit2NP2V27NpUtils7Request22GetAccountIdByOnlineIdD2Ev) +STUB("uqTupLakPfA", _ZNK7WebCore19BlurFilterOperation12stdDeviationEv) +STUB( + "uqUxMm+2Xxo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEC1Ev) +STUB( + "uqcJqCihDcg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEdeEv) +STUB( + "uqcNqM-rNKs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("uqcPJLWL08M", sceNpPollAsync) +STUB("uqcmh9mV7sI", WKPageSetPaginationLineGridEnabled) +STUB( + "uqcsOGcJnTw", + _ZNK3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody6toJsonERNS_4Json5ValueEb) +STUB("uqepScAJpOA", monoeg_g_string_append_len) +STUB("uqi3lGMd6uc", + _ZN3sce2Np9CppWebApi13InGameCatalog2V518ErrorEntityFactory7destroyEPNS3_11ErrorEntityE) +STUB("uqqzkKLKVbk", __tsan_ignore_thread_end) +STUB("uqrbCvCIBMU", _ZN4IPMI4impl11SessionImpl27respondToAsyncMethodRequestEjiPKvm) +STUB( + "uqs2KtNPxSo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEC2EPKS8_) +STUB("uqtzFZTOtZs", mono_aot_Sce_Vsh_Np_ServiceCheckerplt) +STUB("uquVH4-Du78", sceVideoOutClose) +STUB("uqwYatrm6s8", sceDebugGetSyncObjectData) +STUB("ur-FVzZo-y0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEEC2EPS5_PNS2_10LibContextE) +STUB( + "ur-ygtdrYyI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEEC1ERKSA_) +STUB( + "ur2ybD3saew", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEEC1ERSA_) +STUB("ur5SShyG0dk", sceNpWordFilterPollAsync) +STUB("urD45QcJ6Zg", _ZNK7WebCore12CSSMediaRule5mediaEv) +STUB("urFiZZY7T8A", _ZN7WebCore11DisplayList15DrawNativeImageD2Ev) +STUB("urKMKB5JbHw", upvec_setValue_67) +STUB( + "urLvfFiYoD0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEC2EPS6_PNS2_10LibContextE) +STUB( + "urM4hWhR1GQ", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB("urOpESTBZmo", _ZN3sce4Json6ObjectaSERKS1_) +STUB("urUHkGGweA4", sceFiosFHWrite) +STUB("urWaUWkEGZg", sceNetCtlUnregisterCallbackForLibIpcInt) +STUB("urWbmBbaVjM", WKURLResponseGetExpectedContentLength) +STUB( + "urYQY9Zk1hs", + _ZN3sce2Np9CppWebApi7Matches2V126RequestMatchResultsFactory7destroyEPNS3_19RequestMatchResultsE) +STUB( + "urd1WPf2EEs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEC2EPKS8_) +STUB("urh--IUYyvk", mono_aot_System_Runtime_Serializationunbox_trampoline_addresses) +STUB( + "urh4MEq9+FM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("urjBmaVzF3Q", jpeg_idct_12x6) +STUB("url0cRGWmJ4", mono_bitset_new) +STUB("urpDB9rHb4s", EVP_DecryptFinal_ex) +STUB("urrv9v-Ge6g", _LErf_one) +STUB("uryBfUoKlVg", sceMbusAcquireControlWithState) +STUB( + "urz1KK4Je0U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEC1EPNS2_10LibContextE) +STUB("us+hb1r9BN4", + _ZN3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsers8setlimitEi) +STUB("us3bDnDzd70", _FAtan) +STUB( + "us3lWL7IcSo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE8copyFromERKS9_) +STUB("us4G15wBdCY", _ZN7WebCore12NodeIterator12previousNodeEv) +STUB("us4sbukgU+w", sceAvSettingAddCallbacksForLnc) +STUB( + "us6maXrzfmI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEC2Ev) +STUB( + "usCsjERykS8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEEC1ERSA_) +STUB( + "usH3l8ZyzKs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEaSERKS9_) +STUB("usHTMoFoBTM", sceKernelEnableDmemAliasing) +STUB( + "usIxHOMOL8U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEC2ERKS7_) +STUB("usKbuvy2hQg", __cxa_call_unexpected) +STUB( + "usLjuF0ps-M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEC2EPS8_) +STUB("usOkP82BwtA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEED1Ev) +STUB("usQAkcXA5IE", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15NpSessionMemberEE7addressERS3_) +STUB("usQDRS-1HZ8", __fixxfti) +STUB( + "usRHzEHxDGs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEaSERKS9_) +STUB( + "usSN40TsolA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEC1EPNS2_10LibContextE) +STUB( + "usSuc3gM1nY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEEptEv) +STUB( + "usZ82wbQDpM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEEC1Ev) +STUB("usdM3+ti5Tw", SSL_get_session) +STUB("usfzZN9cTCA", _ZN7WebCore8Document19dispatchWindowEventERNS_5EventEPNS_11EventTargetE) +STUB( + "usmQXtRa9y8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEC1Ev) +STUB("ustthZNDMRM", _ZN7WebCore15ActiveDOMObjectC2ERNS_8DocumentE) +STUB( + "usvTU2XlFZw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("uswjVhjstSM", _ZN7WebCore6Editor10applyStyleEPNS_15StylePropertiesENS_10EditActionE) +STUB("ut+atyIgpQw", cairo_surface_get_content) +STUB("ut8I892aPW8", _ZN3WTF5MutexC2Ev) +STUB( + "ut8sm9eMDZU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("ut9wVImO9FE", utrans_getID_67) +STUB("utHD2Ab-Ixo", sceHmdReprojectionFinalizeCapture) +STUB( + "utJZnEmKkKY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "utL6tclTXZQ", + _ZN3sce2Np9CppWebApi14SessionManager2V132FriendJoinedPlayerSessionFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_25FriendJoinedPlayerSessionEEE) +STUB("utLW7uXm3Ss", feenableexcept) +STUB("utN8Kzd07MY", mono_aot_ReactNative_Modules_Vshplt) +STUB("utPVsMMCv3w", _ZN3sce2np10JsonParserC1EP14SceNpAllocator) +STUB("utPrVdxio-8", sceVideoOutGetOutputStatus) +STUB("utSFHQbm8+I", _ZN3sce7Toolkit2NP15AppSTLAllocatorI16SceNpTusVariableED1Ev) +STUB("utU3Of+7oW4", + _ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionNonPsnPlayer11setPlayerIdEPKc) +STUB( + "utXsVn9n1Jw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEEC1Ev) +STUB( + "utZ2bUQ28bM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("utbDQH3jIwk", _ZN3WTF13StringBuilder12appendNumberEm) +STUB( + "utc6dVHWA7w", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE7releaseEv) +STUB("utdV0Hz4lDw", _ZNK7WebCore15HTMLAreaElement11computeRectEPNS_12RenderObjectE) +STUB("utfVDoB8axs", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V15Owner11setOnlineIdERK13SceNpOnlineId) +STUB("utgDXc1BACM", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEEC2Ev) +STUB( + "utmLwdY7n0I", + _ZN3sce7Toolkit2NP8Sessions9Interface14getSessionDataEPKNS1_16NpSessionRequestEPNS1_9Utilities6FutureINS1_17MessageAttachmentEEEb) +STUB( + "utnW0VWxPKg", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetBoolean3Ev) +STUB("utpOGuRV3GE", Java_org_blurayx_s3d_ui_DirectDrawS3D_drawStereoscopicImages) +STUB("utqJMZsvM00", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE5beginEv) +STUB("utsQd6B-s3E", mono_aot_Sce_Vsh_Accessorjit_code_end) +STUB("utvyzIg5aUY", ucal_getFieldDifference_67) +STUB( + "uu-kbUPeuD4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE5clearEv) +STUB( + "uu15chtvdeM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEE5resetEPS9_) +STUB( + "uu1y2TddB+c", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEneERKS9_) +STUB("uu2-Lf82Gro", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEE7get_refEv) +STUB( + "uu2XyVoeXH0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEE7add_refEv) +STUB("uu5+2E0u2hI", _ZNK3sce2Np9CppWebApi11Matchmaking2V110UserTicket11getTicketIdEv) +STUB("uu94irFOGpA", sceNgs2VoiceControl) +STUB("uuA1kdv7Dt0", _ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error9getErrorsEv) +STUB("uuF9vP1RSZ8", WKPageComputePagesForPrinting) +STUB("uuGLzGM+ngk", _ZN9Inspector22InspectorDebuggerAgent16willRunMicrotaskEv) +STUB("uuH2zXclw68", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEE7add_refEv) +STUB("uuJB4mOieYU", _ZN3JSC8Bindings13RuntimeObjectaSERKS1_) +STUB( + "uuL3r754mRk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "uuM7zfz7xeE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEE7add_refEv) +STUB( + "uuQvUlZvDVs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEneERKS7_) +STUB( + "uuR9eNdZp54", + _ZN3sce2Np9CppWebApi14IdentityMapper2V342PsnWebError_error_validationConstraintInfo8fromJsonERKNS_4Json5ValueE) +STUB("uuTo7JlfhX4", _ZN7WebCore9JSElementD1Ev) +STUB( + "uuWzXZnbs2k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEmmEv) +STUB("uuga3RipCKQ", _ZNSt6locale7_Locimp7_AddfacEPNS_5facetEm) +STUB( + "uukWbYS6Bn4", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERe) +STUB("uup00IKisiI", mono_aot_Sce_Vsh_Accessor_Db_Notifyjit_code_end) +STUB( + "uurKSI3V0Nk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEEC2ERKSA_) +STUB( + "uuw1ZM6VEBQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("uuyEiBHghY4", _ZN3sce2np5NpEnv8GetNpEnvEPS1_) +STUB("uv0Ae+jCeWY", sceHmd2ReprojectionSetAllowPositionalReprojection) +STUB( + "uv35bvjILf8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "uv7ObDkuzdU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("uv8tYCzpgvM", _ZNK7WebCore17HTMLOptionElement5labelEv) +STUB( + "uvEBlyPL0pU", + _ZN7WebCore12SettingsBase44setMediaContentTypesRequiringHardwareSupportERKN3WTF6VectorINS_11ContentTypeELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("uvF1t6x2E+E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V120PlayerJoinableStatusEEC1Ev) +STUB("uvI+-gAeubM", _ZN3sce7Toolkit2NP2V210Tournament16RegisteredRoster8deepCopyERKS4_) +STUB("uvRKg7NXD8g", rgctx_fetch_trampoline_mrgctx_94_p) +STUB("uvT2iYBBnkY", sceKernelSync) +STUB("uvTyJVHNBEE", _ZThn16_N9Inspector20InspectorTargetAgent6resumeERN3WTF6StringERKS2_) +STUB("uvVR70ZxFrQ", sceUserServiceLogin) +STUB( + "uvVj5kOIgqI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("uvYTUK5xYG8", _ZN3sce2np3ipc17ServiceIpmiClient10DisconnectEv) +STUB( + "uvZjbPBUB8M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEC2EPS8_) +STUB("uvc-7KNyrh0", mono_metadata_get_marshal_info) +STUB( + "uvc6RA9lkH4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEmmEi) +STUB("uvdBMpdVn1A", _ZThn24_N9Inspector18InspectorHeapAgent18willGarbageCollectEv) +STUB( + "uveElzbXFDA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEC2EPS8_) +STUB("uvkEVRu907A", GCC_except_table372) +STUB("uvkGGQN9d2A", _ZN3JSC12HeapAnalyzerD1Ev) +STUB( + "uvt4kIGB+tY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE7reserveEi) +STUB("uvtLlI3dT8o", WKBundleFrameGetJavaScriptWrapperForNodeForWorld) +STUB( + "uvtxF0SkWCQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("uvyQS9AIBoQ", _ZN3sce3web11WebViewBase31postMessageToNavigatorSceObjectEPKc) +STUB("uvzX0EMoQwA", sceSdmaCopyWindowL2LNonBlocking) +STUB("uw9QT3dcY9c", _ZNK3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead11getTeamNameEv) +STUB( + "uwGiQtDAUoY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEeqERKS9_) +STUB("uwHcXkst1Dw", + _ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody18getUpdatedDateTimeEv) +STUB( + "uwJOPXAFHeM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEC1EPKS8_) +STUB("uwJp2vMxUIk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEdeEv) +STUB( + "uwKKxPLzHhI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEneERKS9_) +STUB("uwU-tDLhfl8", _ZN3sce7Toolkit2NP2V26Friend12Notification16FriendlistUpdateC1Ev) +STUB( + "uwaDkiieYIM", + _ZN3sce2Np9CppWebApi14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBody14setCustomData1EPKvm) +STUB("uwb9P8Z6SZE", + _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_11DOMRectListE) +STUB("uwhRVrBN01s", _ZN12video_parser17cVideoOperatorMgvC1EPKc) +STUB( + "uwhztB49KOQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEED1Ev) +STUB("uwiT+sz9G8Y", _ZNK3sce3Xml3Dom4Node12getNodeValueEv) +STUB("uwr58kSXeO8", mono_profiler_install_gc_finalize) +STUB("uwrYnv4VP9w", __asan_stack_free_10) +STUB( + "uwrsM5o3H6M", + _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicket28hasxPsnAcceptPlatformNamePs5Ev) +STUB( + "uwtZoQ5yvnQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("uwwGTnAkErQ", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V110UpdateModeEEmmEv) +STUB( + "uwyCOYcAHKg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEED1Ev) +STUB( + "uwyS7Wrlx4g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEC1EPNS2_10LibContextE) +STUB( + "ux+e8nhxuP8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEC2Ev) +STUB("ux-0NhndeA0", _ZN7WebCore11MediaPlayer23loadWithNextMediaEngineEPKNS_18MediaPlayerFactoryE) +STUB( + "ux0X+NCGj2I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE5beginEv) +STUB( + "ux1S8CzaE5U", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEdeEv) +STUB("ux9VESJUgh4", sceRemotePlayClientGetClientStatus) +STUB("uxBsn9tw54w", _ZN3sce2Np9CppWebApi7Matches2V112ErrorFactory7destroyEPNS3_5ErrorE) +STUB("uxF1YyU9K4U", _ZN7CoreIPC15ArgumentEncoder21encodeFixedLengthDataEPKhmj) +STUB("uxHzMOecPE0", mono_btls_x509_verify_param_get_mono_flags) +STUB("uxLmJ141PmA", sceNpManagerIntGetUserIdByMAccountId) +STUB( + "uxTICg-qF8g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("uxYGQe+Cpl8", sceAppInstUtilAppGetAllAppSize) +STUB( + "uxdWJfjUo-w", + _ZN15AbstractStorage10YoutubeAPI17GetUploadLocationERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEmS7_S7_S7_S7_RS5_) +STUB( + "uxixkUViik0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("uxjsWK6rp7U", _ZN9Inspector17ScriptDebugServerC2ERN3JSC2VME) +STUB("uxkf2nt6L3U", + _ZN3sce2Np9CppWebApi14ConnectAccount2V219PartnerTokenFactory7destroyEPNS3_12PartnerTokenE) +STUB("uxlL+ZCoDMc", + _ZNK3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayer16customData1IsSetEv) +STUB("uxnGQ5fXMcM", _GLOBAL__sub_I_wiostrea.cpp) +STUB( + "uxnYEz-nfJY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEixEm) +STUB("uy0gUEmdYQQ", + _ZNK7WebCore37BasicComponentTransferFilterOperation14transformColorERNS_15FloatComponentsE) +STUB( + "uy47Uz5bQj0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEixEm) +STUB("uy71phtDkr0", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEEC1Ev) +STUB("uyAWfkQyuls", sceDbgRemoveExceptionHandler) +STUB( + "uyBpPXo46xA", + _ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionMemberPlayerC2EPNS1_6Common10LibContextE) +STUB("uyFH8gMpSzo", delegate_virtual_invoke_23) +STUB("uyGRGSrgX0s", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEEC2ERKS6_) +STUB("uyGl1QPqY7s", WKFramePolicyListenerGetTypeID) +STUB("uyNO0GnFhPw", _ZN3sce2np9WorkQueueD0Ev) +STUB( + "uyO5Blv8lBY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEEC1Ev) +STUB("uyWPJAXD42g", _ZNK9Inspector15ScriptCallFrame8isNativeEv) +STUB("uyg+XHR4HbQ", WKPageSetPageInjectedBundleClient) +STUB( + "uyhqFnXDd2o", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEEiRNS2_10LibContextEPT_m) +STUB("uyjjXGqy-Ek", glGetError) +STUB("uyk8HJ8-cr8", _ZN7WebCore11MathMLNames18mathmlNamespaceURIE) +STUB("uyng028lflU", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead19setCreatedTimestampEPKc) +STUB("uyo-bsZsxII", sceNpManagerIntBindByJsonUserInfo) +STUB( + "uyshkozr+nQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "uyuiunK8+Wc", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi27ParameterToLeaveGameSession13isInitializedEv) +STUB( + "uyxeWkA-qbI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("uyzkHuDZk1U", _ZNK3sce7Toolkit2NP15CommunicationIdltERKS2_) +STUB( + "uz+MJbPpIEg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC2Ev) +STUB("uz3bWkbHZu4", tls_free) +STUB( + "uzAD7FE76ZI", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser15hasmemberFilterEv) +STUB("uzArIKaDDL0", X509_STORE_CTX_get_ex_data) +STUB( + "uzGnh2xjAuA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE5beginEv) +STUB( + "uzIqgh+acq8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEdeEv) +STUB("uzLsJUMjvLY", mono_property_get_get_method) +STUB( + "uzVCt9gqp4c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEEC2Ev) +STUB("uzWWa4ZDvfI", Java_java_lang_reflect_Array_getShort) +STUB("uzXBOD-IILs", isobmf_decoder_get_decoder_tree) +STUB("uzXggTP3g74", _ZN3sce7Toolkit2NP9Utilities6FutureI16SceNpTusVariableE3getEv) +STUB( + "uzbD+NtkhkY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEmmEi) +STUB("uzcG7yXI5CE", _ZN3sce7Toolkit2NP2V212ActivityFeed15PlayedWithStory8deepCopyERKS4_) +STUB( + "uzcfTdyUMlo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "uzdFe0dVzmw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEC1EPNS2_10LibContextE) +STUB("uzgggMZ2EPg", _ZN7WebCore11WindowProxy12globalObjectERNS_15DOMWrapperWorldE) +STUB( + "uzgnlW3QnTo", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody13setMaxPlayersERKi) +STUB("uzjd6-P2U9o", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEEptEv) +STUB( + "uzjxQM+QNuM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE5emptyEv) +STUB("uzm8HX1wuCY", ServiceSupported) +STUB("uzwVD0EhcMs", ufieldpositer_close_67) +STUB("v++knRdEXjU", sceBgftServiceIntPatchGoGetProgress) +STUB( + "v+3hpQ35lLk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE3endEv) +STUB("v+95sEUB1I4", mono_aot_System_Xml_Serializationplt) +STUB( + "v+Ag6HOyXgE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEC2EPNS2_10LibContextE) +STUB("v+B1MpEp2-8", _ZN3sce7Toolkit2NP2V27Ranking12FriendsRanksC2Ev) +STUB("v+CNwmj-C08", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEEC2EPKS4_) +STUB("v+CRSpiQyVM", sceDbgVideoOutAddOutputModeVr60Privilege) +STUB( + "v+ElqV7RLWQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEEcvbEv) +STUB("v+FLN9Ew6t4", _ZNK7WebCore11MediaPlayer29preferredAudioCharacteristicsEv) +STUB("v+NFsQzXp6s", _ZN3sce7Toolkit2NP2V27Session12SessionImage14IMAGE_MAX_SIZEE) +STUB( + "v+OjglkDH0A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEppEi) +STUB( + "v+RLoHUqPGE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE6resizeEj) +STUB("v+SAyXDkOCI", WKResourceCacheManagerGetCacheOrigins) +STUB("v+TCMUBUWog", WKContextSetInvalidMessageFunction) +STUB("v+UiSkMrLnA", JVM_DTraceGetVersion) +STUB( + "v+XLH2F7Y7k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEED2Ev) +STUB("v+Y-fOQaNQ8", _ZN3sce7Toolkit2NP2V26Trophy17TrophyPackSummary19MAX_NUMBER_TROPHIESE) +STUB("v+emMH26l38", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEEC1Ev) +STUB("v+gdG9IEq0U", uhash_equals_67) +STUB("v+jSLz4ul6w", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16TrophyPackTrophyEE5resetEv) +STUB( + "v+kHsxfDGDA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("v+mo-+xOSx8", _ZN9Inspector21DOMFrontendDispatcher16childNodeRemovedEii) +STUB( + "v+o2-jDM-NQ", + _ZN7WebCore4FontC2ERKNS_16FontPlatformDataENS0_6OriginENS0_12InterstitialENS0_10VisibilityENS0_19OrientationFallbackE) +STUB("v+pTEFOmZbs", _ZN3NTF15ThreadConditionD1Ev) +STUB("v+pwjz0nPFg", Java_java_awt_GnmFontMetrics_destroyFont) +STUB( + "v+tXF9ppYiQ", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("v+wt5RIz2pE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEC1ERKS7_) +STUB( + "v+zQvIym9iE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "v-1phlSHY-4", + _ZN7WebCore13JSDOMRectList6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_11DOMRectListENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "v-2GPUYYfuU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB("v-3pLv86Z94", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15NpSessionMemberEE10deallocateEPS3_m) +STUB("v-6NQpE4qI4", _ZN3JSC7Symbols38putSetIteratorInternalFieldPrivateNameE) +STUB("v-8p7HmlvNc", mono_aot_Sce_Vsh_Webbrowser_XdbWrapperunbox_trampolines_end) +STUB( + "v-9lo7pej7Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("v-AK1AxQhS0", sceSaveDataUnregisterEventCallback) +STUB( + "v-E9qIzjhX4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEEC2ERSA_) +STUB("v-GLQkXqXcY", mono_aot_Newtonsoft_Json_PlayStationunbox_trampolines_end) +STUB("v-IyqlDdj-4", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEED1Ev) +STUB("v-PBDOPDf5I", writeIS) +STUB("v-PIc7iEKIs", WKWebsiteDataStoreConfigurationSetNetworkCacheSpeculativeValidationEnabled) +STUB("v-VB0EguQWg", sceDeci5GetStatus) +STUB( + "v-ZNtVIr-2w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEC2Ev) +STUB( + "v-e59KEpL1Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEC2EPKS8_) +STUB( + "v-gdf3tRhRM", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS5_INS7_9RecordApi30RecordLargeDataResponseHeadersEEEEEiRNS2_19UpStreamTransactionIT_T0_EE) +STUB( + "v-ixqAuUd0E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEE7get_refEv) +STUB("v-jo7pzhulg", Java_java_awt_GnmImage_nativeSetIndexColorModelBytePixels) +STUB("v-vwe8z-BgY", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11EntitlementEEC1ERKS4_) +STUB("v-wr+lpl4I8", _ZNK3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors9pathIsSetEv) +STUB("v-y7BqCa6ys", _ZN7WebCore16ResourceResponseC1ERKNS_3URLERKN3WTF6StringExS7_) +STUB( + "v-z3mSAgnSo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEC2EPKS9_) +STUB( + "v0+Qw8jSf9s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE8copyFromERKS9_) +STUB( + "v0+kLtPeDrc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE6resizeEj) +STUB("v08CAVZPz-0", WKBundlePageHasComposition) +STUB("v08Z2LADJYM", _ZN7WebCore18TextureMapperLayer15setDebugVisualsEbRKNS_5ColorEfb) +STUB("v09ZcAhZzSc", _ZdaPvSt11align_val_t) +STUB("v09z7nEYyEM", ucal_setGregorianChange_67) +STUB("v0GdXLN1MyE", mono_get_byte_class) +STUB("v0GvL1SMt8M", _ZNK7WebCore22EmptyFrameLoaderClient14shouldFallBackERKNS_13ResourceErrorE) +STUB( + "v0IZH7Fe9yo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEC2Ev) +STUB("v0IwtX6l-7c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEEC2EPS6_) +STUB("v0JWbHa4tIE", _ZN12video_parser5vpcom17_DirectoryGetNextEPNS_8_vp_fileEPN3paf6DirEntE) +STUB( + "v0KnP9POD3g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEppEv) +STUB("v0L5z77rkJ4", sceKernelGetFirstImageAddr) +STUB( + "v0O7iFLzc8c", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEEiRNS2_10LibContextEPT_m) +STUB( + "v0QBkpbijIc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEC2EPNS2_10LibContextE) +STUB("v0QQM-2OkC8", _ZN7WebCore26ActiveDOMCallbackMicrotaskD2Ev) +STUB( + "v0TyU4f3xhw", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V125NatConnectivityPropertiesC1EPNS1_6Common10LibContextE) +STUB("v0c4YLLJxIM", __ubsan_handle_type_mismatch_abort) +STUB( + "v0c4rWMxnbk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEE7add_refEv) +STUB("v0dVsqUmQaw", sceAvControlGetDetailHdcpStatus) +STUB("v0phZwa4R5o", sceFontSetEffectWeight) +STUB( + "v0ppwpsz8+s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEEC2Ev) +STUB("v0q0kTm2wHo", u_terminateUChars) +STUB("v0uBZ16Lx-0", _ZN3JSC4Heap20writeBarrierSlowPathEPKNS_6JSCellE) +STUB( + "v11XG5-RNng", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEmmEi) +STUB("v13+vbzf0k8", _ZN3sce7Toolkit2NP2V212EventsClient10EventColorC1Ev) +STUB( + "v1OvG9mjgBg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEEC1Ev) +STUB( + "v1SALP2Agbk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V138SetMultiVariablesRequestBody_variables8setValueERKl) +STUB("v1Skcjggmtw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEaSERKS7_) +STUB("v1TrX+3ZB10", sceSaveDataCheckBackupDataInternal) +STUB("v1UGaRTZSKU", _ZN3WTF14FileSystemImpl11getFileSizeEiRx) +STUB("v1WebHtIa24", _ZTISt7codecvtIDsc9_MbstatetE) +STUB( + "v1ZMNTTLmQk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "v1b+Nix8bwU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEE7add_refEv) +STUB( + "v1bjBNuZDjw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "v1e8a-uR1Ic", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE5beginEv) +STUB( + "v1fbrOsKyqs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEC2Ev) +STUB( + "v1g5GaD6yyU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEC2EPS6_PNS2_10LibContextE) +STUB("v1i-IaTIYfs", __tsan_set_fiber_name) +STUB("v1kZlJPZo80", Java_com_sony_bdjstack_org_bluray_storage_PersistentDataAreaInfo_getMaxPsSize) +STUB("v1kay0us3J4", uloc_openKeywordList_67) +STUB("v1lCb6JzKZ0", WKBundleFrameHasVerticalScrollbar) +STUB("v1lXY+9IGYg", sceSdmaCopyWindowL2L) +STUB("v1nFz9ePsQk", _ZN7WebCore16VisitedLinkStore23invalidateStylesForLinkEj) +STUB("v1ohFUoIOhM", __sanitizer_set_report_fd) +STUB( + "v1r5DCPXHKw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "v1wahzq0FSA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEE3getEv) +STUB( + "v1yFXQ8V0Ao", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEEaSERSA_) +STUB( + "v1z5wM78kIw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEC1EPS6_PNS2_10LibContextE) +STUB( + "v2-CklYc3pY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEneERKS9_) +STUB("v20c4Nmpmn8", sceUpsrvUpdateCheckIsSystemBetaClosed) +STUB( + "v20wCjVHtkE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEcvbEv) +STUB( + "v23k3vPi+Q8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEC1EPS6_PNS2_10LibContextE) +STUB("v243mvYg0Y0", sceHmdInternalSetPortStatus) +STUB("v24X+XNEZ10", _ZN7WebCore11DisplayList10DrawGlyphsD2Ev) +STUB("v25sGiJRwAA", mono_class_get_type) +STUB( + "v2AWPuzu50E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEEptEv) +STUB("v2E64Horvks", usearch_setPattern_59) +STUB( + "v2FMYRKCe08", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("v2Fgc4zXSZA", mono_reflection_get_custom_attrs_data) +STUB( + "v2GD9K3u7LQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEcvbEv) +STUB("v2HF+4vnxGc", strtod.fpinan) +STUB( + "v2HOE1wGfNM", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectator28hasxPsnAcceptPlatformNamePs5Ev) +STUB( + "v2MGARlKNuI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEC1EPS8_) +STUB("v2Nj6+EfYfo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEC1Ev) +STUB("v2Ov-F1PsKo", _ZN3JSC11VMInspector17codeBlockForFrameEPNS_9ExecStateEj) +STUB("v2RYVGrJDkM", sceNpPartyGetMemberInfoA) +STUB( + "v2V+-GC0QnQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "v2XEe0GOqXM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE3endEv) +STUB( + "v2crxhXqKBg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEC1EPS8_) +STUB( + "v2dS6RrHRZg", + _ZN3sce7Toolkit2NP6Trophy9Interface18trophyRetrieveGameEPKNS1_25RetrieveTrophyGameRequestEPNS1_9Utilities6FutureINS1_14TrophyGameInfoEEEb) +STUB( + "v2gRdKqCD9Q", + _ZN3sce7Toolkit2NP9Interface17checkAvailabilityEPKNS1_24CheckAvailabilityRequestEPNS1_9Utilities6FutureINS1_23CheckAvailabilityResultEEEb) +STUB("v2hFBiyS13w", sceHttp2WebSocketClose) +STUB("v2hk1-AZ06A", WKBundleFrameGetParentFrame) +STUB( + "v2i8PEkSO1U", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE10setContextEPNS2_10LibContextE) +STUB( + "v2olKD5aCoA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEE3getEv) +STUB("v2pxETU7EMk", sceNpGriefReportAbortTransaction) +STUB( + "v2tK7VY31q8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("v2wWXxnErk4", mono_aot_Sce_Vsh_Messagesunbox_trampolines_end) +STUB("v2y883L5C-E", _ZN3sce3pss5orbis9framework11PsmArrayObj6LengthEv) +STUB("v2yJZLY0w1U", _ZN3sce2np10Cancelable7DestroyEv) +STUB("v2yM9OvxVKU", _ZN7WebCore16HTMLVideoElement21webkitEnterFullscreenEv) +STUB("v2yobc9NBQE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEE11release_refEv) +STUB("v3-wwBXRBW4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEEC1ERKS9_) +STUB( + "v32CWu6YpiU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEE6assignEPS7_PFvS9_EPNS2_10LibContextE) +STUB( + "v34+VNB57XA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEE11release_refEv) +STUB( + "v36B3totUbw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEC1Ev) +STUB( + "v39fBD2JKOY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEC1EPKS8_) +STUB("v3EVw6+3tLM", _ZN7bmalloc11IsoTLSEntrynaEmPv) +STUB( + "v3G6bumnEcg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEC2Ev) +STUB("v3KLxyFw6oU", _ZN3sce2Np9CppWebApi15Personalization2V112ErrorFactory7destroyEPNS3_5ErrorE) +STUB("v3KR8jUiYis", _ZNK7WebCore16HTMLMediaElement19isVisibleInViewportEv) +STUB("v3LXmnWVWXk", sceKernelNotifyAppEvent) +STUB( + "v3NeGekzIEQ", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeaders6createEPNS1_6Common10LibContextERNS6_12IntrusivePtrIS5_EEl) +STUB("v3Qv1I3P7x4", glBindBufferRange) +STUB( + "v3VqOJsJ+CU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("v3hD6yHyoi0", WKMutableArrayCreate) +STUB( + "v3lOwOlGc9c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEEC1ERKSA_) +STUB("v3vg2+cooYw", sceSaveDataSetSaveDataLibraryUser) +STUB("v4+gzuTkv6k", _ZN3sce16CommonDialogUtil6Client11updateStateEv) +STUB( + "v45KTmYikAA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEED1Ev) +STUB("v49DpIG8FDc", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session14InvitationDataEE12deepCopyFromERS7_) +STUB( + "v49Yzd7aQzc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "v4C7e-FAfQI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEEaSERKSA_) +STUB("v4PQgOCztxw", _ZTVN7WebCore31BasicColorMatrixFilterOperationE) +STUB( + "v4RqJ2IfJf8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEC1EPKS8_) +STUB("v4T7KQ-iRWk", _ZN7WebCore20TransformationMatrix6blend4ERKS0_d) +STUB("v4URbcx9JPI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEEC2EPKS6_) +STUB("v4V7yvdU9zo", sceKernelEnableDmemAliasing2) +STUB( + "v4WkN4Zcggg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEmmEv) +STUB("v4X5tkn3aEc", _ZN7WebCore15AffineTransformC1Edddddd) +STUB( + "v4aCxDuiTNE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE3endEv) +STUB( + "v4aoI4ilEQY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE6resizeEj) +STUB( + "v4b0mNyo57o", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEeqERKS9_) +STUB( + "v4chDAic9Do", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("v4eUw70y6uc", _ZN3sce2Np9CppWebApi14SessionManager2V114Representative12setAccountIdERKm) +STUB( + "v4iJJqmrDnE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEED1Ev) +STUB("v4jtbaYwet4", _ZN3sce7Toolkit2NP2V28Presence12Notification14PresenceUpdateC2ERKS5_) +STUB( + "v4nUMrhR+F8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("v4ovShGk46M", + _ZN7WebCore14ScrollableArea6scrollENS_15ScrollDirectionENS_17ScrollGranularityEf) +STUB( + "v4qydoqtYWA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEptEv) +STUB("v4r2uz0R1ys", _ZN3WTF20resetAccumulatedLogsEv) +STUB( + "v4tch35zXbk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEE11get_deleterEv) +STUB("v4uRS01Mvoc", _ZN3sce7Toolkit2NP3Sns9Interface10setAppIdFbERKm) +STUB("v5-8NZmvyrA", FcObjectSetBuild) +STUB("v55UY3gMHis", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112OwnerFactory7destroyEPNS3_5OwnerE) +STUB( + "v57e1kZUWA0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("v59-vWXcohM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE4sizeEv) +STUB("v5Jv0hKmYiI", _ZN7WebCore7Pattern6createEON3WTF3RefINS_5ImageENS1_13DumbPtrTraitsIS3_EEEEbb) +STUB("v5MBboL9c34", mono_aot_Sce_Vsh_SystemLoggerWrapperunbox_trampoline_addresses) +STUB( + "v5OrkoIzFcU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEmmEi) +STUB( + "v5Pbz4LPKQU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE5clearEv) +STUB("v5V6QwgYPw4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEC2EPS8_) +STUB( + "v5XXLp+CXmg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEdeEv) +STUB("v5Z2LAKua28", _ZN3sce2np3ipc17ServiceIpmiClient21CreateRequestForAsyncEPiiPKvm) +STUB("v5la07-B+AE", _ZNK7WebCore10JSDocument7wrappedEv) +STUB( + "v5m8xFJtCMg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEC2Ev) +STUB( + "v5re8lY0FqE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEC1Ev) +STUB( + "v5ublTkG6c4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo26unsetxPsnAtomicOperationIdEv) +STUB( + "v5vsa4U6LIw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "v5zptjHG1XU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEcvbEv) +STUB("v6+-XI7oasY", EVP_DecryptInit_ex) +STUB("v6+kwbqmq5Y", _ZN7WebCore11FontCascadeC2EONS_22FontCascadeDescriptionEff) +STUB("v66u7NRfT4Q", _ZN7CoreIPC15ArgumentEncoder6encodeEh) +STUB("v68DxeBPf7k", _ZNK3sce7Toolkit2NP9Utilities6FutureIbE17getAdditionalInfoEv) +STUB( + "v68sXmVGvD8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEixEm) +STUB("v6CSwwcnMO8", _ZN7WebCore13JSHTMLElementD2Ev) +STUB( + "v6DBchCNBo4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("v6EZ-YWRdMs", scePlayGoGetEta) +STUB("v6HHTabpyxk", il2cpp_array_new) +STUB("v6I4XZYurCw", _ZN9Inspector14ConsoleMessage20autogenerateMetadataEPN3JSC14JSGlobalObjectE) +STUB( + "v6IlznuIOTI", + _ZN3sce2Np9CppWebApi14SessionManager2V157PostGameSessionsSessionIdMemberPlayersResponseBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_25ResponseGameSessionPlayerEEEEEPNS9_INS3_50PostGameSessionsSessionIdMemberPlayersResponseBodyEEE) +STUB( + "v6KPVwntIlA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE3endEv) +STUB("v6LjiH858Sc", sceVorbisDecPcmTotal) +STUB("v6M4txecCuo", sceNetEtherNtostr) +STUB("v6OElL4DxCo", sceDbgRequireSystemSwVersion) +STUB( + "v6OJwqfxqzQ", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("v6R-xUDmU7s", _ZN3sce7Toolkit2NP2V26Friend7Request22DisplayBlockUserDialogD1Ev) +STUB( + "v6SwJa9pfJU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE8copyFromERKS9_) +STUB( + "v6XB7GY1X0k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEE5resetEPS9_) +STUB("v6a1gYifQ0U", g_Audio3dVirtualSpeakerCount) +STUB( + "v6fwGeb4GRM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE8capacityEv) +STUB("v6rXYSx-WGA", _Strcollx) +STUB("v6vY3goqn2s", + _ZN3JSC21gregorianDateTimeToMSERNS_2VM9DateCacheERKN3WTF17GregorianDateTimeEdNS3_8TimeTypeE) +STUB("v7-fTYajrMs", udat_setBooleanAttribute_67) +STUB( + "v77cFiV54ic", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEE11release_refEv) +STUB("v77y2pf21w8", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_20ChallengeRecvDetailsEEC1ERKS4_) +STUB("v7AAAMo0Lz4", sceSaveDataSetupSaveDataMemory) +STUB("v7DYuX0G5TQ", sceLncUtilSetAppFocus) +STUB( + "v7FyrPDEGIk", + _ZN3JSC23JSModuleNamespaceObject25getOwnPropertySlotByIndexEPNS_8JSObjectEPNS_14JSGlobalObjectEjRNS_12PropertySlotE) +STUB("v7IHQF5Lnqc", sceNpTrophy2SystemBuildTrophyIconUri) +STUB("v7K5ZMlOnQo", _ZN3WTF6String6numberEj) +STUB("v7Pd1fwDpIs", _ZN7WebCore15CSSFontFaceRule5styleEv) +STUB("v7R-hUNADd8", delegate_virtual_invoke_imt_25_p) +STUB("v7RJfl5wa6M", _ZN3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayerD2Ev) +STUB("v7S7LhP2OJc", wcstombs) +STUB("v7T3JNH73sU", + _ZN3JSC6RegExp5matchERNS_2VMERKN3WTF6StringEjRNS3_6VectorIiLm0ENS3_15CrashOnOverflowELm16EEE) +STUB( + "v7TKfTh8nbw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE10setContextEPNS2_10LibContextE) +STUB( + "v7WbzofulSY", + _ZN3sce7Toolkit2NP2V29Messaging37displayReceivedGameDataMessagesDialogERKNS3_7Request37DisplayReceivedGameDataMessagesDialogEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("v7XHt2HwUVI", _ZNSt14numeric_limitsIyE6digitsE) +STUB("v7XXpvTVcS4", _ZN7WebCore11DisplayList8DrawLineD0Ev) +STUB("v7ZseaEAgpc", dp_h) +STUB("v7a3UnyBmN4", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBodyD2Ev) +STUB( + "v7a8OkeJYfo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEaSERKS7_) +STUB("v7dRprTYrgU", + _ZN4IPMI6Server12EventHandler21onAsyncMethodDispatchEPNS_7SessionEjjPKNS_8DataInfoEj) +STUB( + "v7fgi5j+o0Y", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE5beginEv) +STUB("v7nsHgKZUw0", _ZN7WebCore11DisplayList20EndTransparencyLayerC2Ev) +STUB("v7rWMZ9150M", WKRetain) +STUB( + "v7yVy5DuwQc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEC2EPS8_) +STUB("v8+25H9WIX4", _sceNpManagerCreateMemoryFromPool) +STUB("v8-KyLvjWKw", glUniformMatrix4fv) +STUB("v80CmKYcdO0", moduleSegAddrKernelStart) +STUB("v81dfnaMfUY", sceShellCoreUtilChangeToStaffModeForIDU) +STUB("v821dWbGiPE", mono_signbit_float) +STUB("v82lu5bVR5I", _ZN7WebCore9HTMLNames11onpasteAttrE) +STUB("v84qvisf2mM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEcvbEv) +STUB("v85YejRnPgM", u_strToUpper_59) +STUB("v87FwDl-wDw", uprv_compareInvEbcdic_67) +STUB("v89KlZlqitQ", uprv_getCharNameCharacters_67) +STUB( + "v8EfB-ChCzg", + _ZNK7WebCore12ChromeClient30unavailablePluginButtonClickedERNS_7ElementENS_20RenderEmbeddedObject26PluginUnavailabilityReasonE) +STUB( + "v8FB9GEqyKM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEC1Ev) +STUB("v8HD38Ke0Xs", ucol_getReorderCodes_67) +STUB("v8MrcmGcm9E", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE8copyFromERKS7_) +STUB("v8P+9PRqg10", scePadVrControllerSetTriggerEffects) +STUB("v8P1X84ytFY", _ZNKSt7_MpunctIwE16do_decimal_pointEv) +STUB("v8iOE+j8a5o", sceAudioOut2MasteringSetParam) +STUB( + "v8n724ORkcA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEeqERKS9_) +STUB( + "v8od0-MjdgE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE4sizeEv) +STUB( + "v8qfJT-ah6w", + _ZN3sce2Np9CppWebApi7Matches2V116JoinMatchRequest10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_11AddedPlayerEEEEE) +STUB("v8qmLz5bH+8", _ZN3sce2Np9CppWebApi6Common6VectorIdE10setContextEPNS2_10LibContextE) +STUB( + "v8r5lw59-Fw", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "v8yOLPWnqjg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEC1EPS9_) +STUB( + "v8zBCNv6rKc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEEaSERSA_) +STUB( + "v9+LDyGwQKg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEEcvbEv) +STUB("v9-zcVG7Nzo", mono_aot_appjit_code_end) +STUB( + "v94oPrITvWw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE5beginEv) +STUB("v95AEAzqm+0", putchar_unlocked) +STUB("v9CSqw6Ve0w", _ZN15AbstractStorage14StorageManager9TerminateEv) +STUB( + "v9DGOSzMPTo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEE3getEv) +STUB("v9ERBDafV60", sceDbgIsDebuggerAttached) +STUB("v9Evh4f3TrY", + _ZNK3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer12natTypeIsSetEv) +STUB("v9HHsaa42qE", _ZNSt9_Num_base10is_boundedE) +STUB( + "v9IiuYGthKg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "v9LGd2O41Jo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEC2EPS8_) +STUB( + "v9MgjaAm8+I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "v9MpAzzytNE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEEaSERKSA_) +STUB("v9N11LJEe1M", _ZN7WebCore4FontD1Ev) +STUB("v9VWGQSj02A", _ZN7WebCorelsERN3WTF10TextStreamENS_8LineJoinE) +STUB("v9XNTmsmz+M", __absvti2) +STUB("v9XTZHXoJyQ", sceCameraWaitForLukeReady) +STUB( + "v9Xg6wpHHyk", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer28setxPsnAcceptPlatformNamePs5ENS5_25XPsnAcceptPlatformNamePs5E) +STUB( + "v9ZnnzB7S7g", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error18setMissingElementsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_14MissingElementEEEEE) +STUB("v9df3q4i+uU", mono_aot_Sce_Vsh_Sl2_Sl2Deliverunbox_trampoline_addresses) +STUB("v9lOD9R-HzU", _ZThn32_N7WebCore14DocumentLoaderD0Ev) +STUB( + "v9mm+euMhsA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEppEv) +STUB("v9o4hfrXuSI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEC2Ev) +STUB( + "v9p97IYyaqg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE8copyFromERKS9_) +STUB( + "v9pLlwZ7yhw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEC2ERS7_) +STUB("v9qcK4yrkZo", ucnvsel_selectForString_67) +STUB("v9rljAqSt0A", ucol_keyHashCode_67) +STUB( + "v9wzwj86T14", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEED1Ev) +STUB("v9yZld7wuo0", _ZNK3sce2Np9CppWebApi7Matches2V124RequestCompetitiveResult16teamResultsIsSetEv) +STUB( + "v9yy-Nup9jI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "v9zEpBDkcvI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEEC1ERKSA_) +STUB( + "vA-hoWD0078", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEC1EPKS8_) +STUB( + "vAG31RmAePo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE4sizeEv) +STUB("vAJCcVB-TLw", + _ZNK3sce2Np9CppWebApi14SessionManager2V131JoinedPlayerSessionWithPlatform14sessionIdIsSetEv) +STUB( + "vAK1gR6KeLw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEC1Ev) +STUB( + "vAK6N0sS7JU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEEdeEv) +STUB("vANdRKdHPvk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEptEv) +STUB("vASXd7ETI+k", _ZN3sce2Np9CppWebApi14SessionManager2V15Error11unsetSourceEv) +STUB("vAY7v43Mpt0", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10setString5EPKc) +STUB( + "vAaTOUHp0tA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEED2Ev) +STUB("vAc9y8UQ31o", funlockfile) +STUB("vAhLG78zONs", mono_debug_symfile_free_location) +STUB("vAi26oOxOMw", WKPageBlurFocusedNode) +STUB( + "vAvwsPH4XfY", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V131BandwidthUpstreamMetricsFactory7destroyEPNS3_24BandwidthUpstreamMetricsE) +STUB( + "vAxeapZsLP0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE5beginEv) +STUB("vAy6j+Avg34", scePssMusicPlayerGetLoopTimePosition) +STUB("vAzb43sibZg", mono_code_manager_commit) +STUB( + "vB-f0eblIDU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE3endEv) +STUB("vB3LeG0NhPo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEEptEv) +STUB("vB46oxXMExI", + _ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer16unsetCustomData1Ev) +STUB( + "vB4o36fieQ8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE4sizeEv) +STUB( + "vBAaedyi1Y4", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEEiRNS2_10LibContextEPT_m) +STUB("vBG-4D6uycE", sceClHttpSetEpoll) +STUB("vBLfTFUvgyI", _ZN7WebCore21convertToIntegerClampImEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB( + "vBLnad-Wlb4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEC2Ev) +STUB( + "vBMD2aa269M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEE11get_deleterEv) +STUB("vBO2biHEyHY", _ZN3sce7Toolkit2NP15AppSTLAllocatorIcEneERKS3_) +STUB("vBP4ytNRXm0", __parityti2) +STUB("vBRr1KfUbAs", _ZN3sce7Toolkit2NP2V24Core13CallbackEventD2Ev) +STUB( + "vBTyBcdhvLM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEC1Ev) +STUB( + "vBXBZD587E8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE8copyFromERKS9_) +STUB("vBb+-gj8SRk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEaSERKS7_) +STUB("vBbgEh-BAII", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE5emptyEv) +STUB( + "vBd2vGbLqVU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("vBgcE5-2Cig", sceNpUniversalDataSystemIntRecordArraySetUInt64) +STUB("vBhjjg+rbsQ", _ZN7WebCore8Settings20setCoreMathMLEnabledEb) +STUB("vBoyDfg+EVA", _ZN7WebCore8IntPointC1ERKNS_10FloatPointE) +STUB( + "vBu3vxVzbDo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE21intrusive_ptr_sub_refEPS9_) +STUB("vBvYlXbJZPU", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12Notification14NetStateChangeEED2Ev) +STUB( + "vC+9bTkDipA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "vC-HcCfxtEU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEE5resetEPS9_) +STUB("vC-uSETCFUY", sceUserServiceSetAccountRemarks) +STUB( + "vC6SC+mPlp0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEC1EPNS2_10LibContextE) +STUB("vC9xr5PCWzo", _ZN7WebCore15JSFetchResponse9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB( + "vCFTfAoPeZo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEC1Ev) +STUB( + "vCFvSGjSvIc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEC1Ev) +STUB("vCGv7xDoaDI", _ZN7WebCore21JSCSSStyleDeclaration6s_infoE) +STUB("vCIFGeI6adI", + _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewe) +STUB( + "vCKMv3NfbMc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEC2EPS8_) +STUB("vCLVhOcdQMY", _ZN10__cxxabiv119__pointer_type_infoD2Ev) +STUB( + "vCMW32Y+EXo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEEcvbEv) +STUB("vCO3QXgLCCQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEC2ERKS7_) +STUB("vCQLavj-3CM", _Dtento) +STUB( + "vCQQfPWKxLA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEED2Ev) +STUB( + "vCTTs2hk2jY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEmmEi) +STUB("vCaW0fgVQmc", sceWebBrowserDialogGetResult) +STUB( + "vCi-PkJw1jU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEixEm) +STUB("vCjNSyErniU", _ZN3sce2Np9CppWebApi6Common13ConstIteratorImEC2EPm) +STUB("vCmNRJY0lcw", _ZN3sce7Toolkit2NP2V210Tournament22TeamVsTeamMatchDetailsD1Ev) +STUB( + "vCn-9B2GUQc", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData21getxPsnNpServiceLabelEv) +STUB( + "vCoNNi6eokA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEC2EPS8_) +STUB("vCp4+dq8hdc", fuse_remove_signal_handlers) +STUB("vCpt1jyL6C4", SSL_ASYNC_getSendBuffer) +STUB("vD07bzuy3RM", _ZN7WebCore6WidgetD2Ev) +STUB("vDAAek4FGdM", _ZN7WebCore11FontCascadeC1EONS_22FontCascadeDescriptionEff) +STUB("vDBxHvHMVH8", _ZN12video_parser18cMp4FFLHndlManager10_checkinitEv) +STUB( + "vDDzigoLjUA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEmmEv) +STUB("vDIkdw80j10", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getPSR) +STUB("vDLMoJLde8I", scePadSetTiltCorrectionState) +STUB( + "vDLyy9TNfFw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEC1EPNS2_10LibContextE) +STUB("vDMSsKNrv38", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEC2Ev) +STUB( + "vDQQQFrxCIc", + _ZN7WebCore24DocumentMarkerController14markersInRangeERNS_5RangeEN3WTF9OptionSetINS_14DocumentMarker10MarkerTypeEEE) +STUB("vDRXJbuETl8", delegate_invoke_impl_target_4) +STUB( + "vDRnof1gOoU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEixEm) +STUB("vDSseQ4HPRc", _ZNK3WTF8JSONImpl9ArrayBase5beginEv) +STUB("vDVTsfukSuU", BN_bn2bin) +STUB( + "vDZCB62Fy2c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("vDceHrLeyfw", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking8TempRankEE19setCustomReturnCodeEi) +STUB( + "vDeYAAqVrww", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeOnlineId2AccountIdBatch9terminateEv) +STUB("vDenqj6dzGk", sceVideoCoreAcquireDecoderResourceForBeWrapper) +STUB("vDhz8cimA9A", mono_shared_mempool_strdup) +STUB( + "vDjX1FLPIuQ", + _ZN3sce7Toolkit2NP2V23TUS16getUsersVariableERKNS3_7Request16GetUsersVariableEPNS2_4Core8ResponseINS3_12TusVariablesEEE) +STUB("vDjaM8UkOdU", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15CategoryInfoSubEEC1ERKS4_) +STUB( + "vDkW1TbBfhg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEdeEv) +STUB( + "vDl7VCJiKDM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEE5resetEPS8_) +STUB("vDnqZKeD914", _ZN7WebCore11MathMLNames16displaystyleAttrE) +STUB( + "vDrZ1cb7T2A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE5clearEv) +STUB("vDrj6vV4d60", WKFramePolicyListenerUseInNewProcessWithPolicies) +STUB("vDrrU4mHrM4", _Z17tryGetIpmiMessageiPvPmm) +STUB("vDt7lFXpdvc", _ZN7WebCore18PrewarmInformationdaEPv) +STUB("vDv8dP6VDik", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEED1Ev) +STUB( + "vDvAInmcT70", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEEC2ERKSA_) +STUB("vDx7zD34kQg", sceMbusAddHandleByVidPid) +STUB("vE+WlomLSh4", ksem_timedwait) +STUB("vE4TO9FR1qg", u_memset_67) +STUB("vE61ounVJEI", JSSetOptions) +STUB("vE6aOzR19g4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEC2Ev) +STUB( + "vE7MGSnApX8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEE11release_refEv) +STUB("vEGSpl7lJQY", _ZN9Inspector26DatabaseFrontendDispatcherdlEPv) +STUB("vEJojV4SYvY", + _ZN3JSC2VM22ensureSamplingProfilerEON3WTF3RefINS1_9StopwatchENS1_13DumbPtrTraitsIS3_EEEE) +STUB("vEL3fySJ6Wk", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEEC1EPS4_) +STUB("vENhdeMSnzA", ulocimp_canonicalize) +STUB("vEP-r4QCjAM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEEC1EPKS6_) +STUB("vER3cIMBHqI", sceCameraSetDefectivePixelCancellationInternal) +STUB("vEUpXrlBeUw", jpeg_get_small) +STUB("vEaqE-7IZYc", _Cnd_wait) +STUB( + "vEckgATwQ0w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEED2Ev) +STUB("vEdl5Er9THU", _ZNSt14numeric_limitsIDsE8digits10E) +STUB( + "vEjbtxDZ2nk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE10setContextEPNS2_10LibContextE) +STUB("vEnRh4J8MiE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEmmEi) +STUB( + "vEo117HInFA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEC2Ev) +STUB( + "vEoUomGgFcA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEppEi) +STUB( + "vEr0V2niEOs", + _ZN7WebCore11FileMonitorC1ERKN3WTF6StringEONS1_3RefINS1_9WorkQueueENS1_13DumbPtrTraitsIS6_EEEEONS1_8FunctionIFvNS0_14FileChangeTypeEEEE) +STUB("vErUHVC+luw", _ZN12video_parser5vpcom6StringplERKS1_) +STUB("vEv-yQtu1Ms", _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody10getPlayersEv) +STUB("vEyzhjEFiHo", _ZN7WebCore8SVGNames8langAttrE) +STUB("vF1HFjetwSI", GCC_except_table77) +STUB( + "vF1wv8DqBI0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "vF2povsxSqM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEEptEv) +STUB( + "vF8HDGTpci8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEED2Ev) +STUB("vF9KJFlGvOY", + _ZN7WebCore14SchemeRegistry36registerAsCanDisplayOnlyIfCanRequestERKN3WTF6StringE) +STUB( + "vF9cveA36yI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "vFEp70VqkaU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE7popBackEv) +STUB("vFKxcH7PpWU", _ZN12video_parser5vpcom5_FreeEPv) +STUB( + "vFMRb8-gA7I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEED1Ev) +STUB( + "vFMrU19Hm3s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEE7get_refEv) +STUB("vFPv9eN5bXw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEE3getEv) +STUB("vFSzbv76iMA", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi20ParameterToJoinMatchD1Ev) +STUB("vFVAvC5qdNw", _ZN7WebCore21BackForwardController8backItemEv) +STUB("vFWzXVdtsvk", _ZNK3WTF10StringView16GraphemeClusters8IteratorneERKS2_) +STUB( + "vFYalC3k0ZE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEC2EPS6_PNS2_10LibContextE) +STUB( + "vFabqIUtYQU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "vFfl8BOSUeg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEeqERKS9_) +STUB("vFhTf6l2lug", utext_openUnicodeString) +STUB("vFiLxQM2Frg", _ZN3JSC7Symbols24mapBucketNextPrivateNameE) +STUB( + "vFiyjdVAL68", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("vFkdkzJgSpw", sceUsbStorageRegisterCallback) +STUB( + "vFl2mKXIQnk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB( + "vFmly8iXFas", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEC1EPS6_PNS2_10LibContextE) +STUB( + "vFnq5-Wze2k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE8copyFromERKS9_) +STUB("vFqcniq7yJw", + _ZN7WebCore26provideDeviceOrientationToEPNS_4PageEPNS_23DeviceOrientationClientE) +STUB("vFr8dUbMeH4", _ZNK15AbstractStorage17DailymotionFolder13GetCapabilityEv) +STUB( + "vFspcWd6iUY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEEdeEv) +STUB("vFuoBQf3cJY", _ZN7WebCore9ImageDataC1ERKNS_7IntSizeE) +STUB("vG+5EykVXWs", _ZN3JSC7Symbols31getByIdDirectPrivatePrivateNameE) +STUB( + "vG+neseeIqM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEppEv) +STUB( + "vG3KJe45rVo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEC2Ev) +STUB( + "vGAZLUyQ51w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEppEv) +STUB("vGCjFnHz92U", scePssMusicPlayerSetLoopTimePosition) +STUB( + "vGKW6C7xPSY", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetString10Ev) +STUB("vGLd7FKUyw0", __kernel_tan) +STUB("vGMYQNn0X3s", sceBgftServiceIntDownloadHideTask) +STUB("vGOMeCbW94Q", _ZN9Inspector19InspectorAuditAgent13unmuteConsoleEv) +STUB("vGSB0qGWsMw", _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse20unsetMatchStatisticsEv) +STUB( + "vGTfbZrqQr4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE3endEv) +STUB("vGUN049tJiM", _ZN3WTF8JSONImpl5ValueC1EPKc) +STUB( + "vGUgKX-ryME", + _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody12setSubmitterERKNS1_6Common12IntrusivePtrINS3_9SubmitterEEE) +STUB("vGX6Vm0RBBc", Java_sun_awt_image_PNGImageDecoder_filterRow) +STUB("vGZQk+0JO28", _ZN3sce7Toolkit2NP2V211SharedMedia7Request9GetVideosC1Ev) +STUB("vGdY7JJeyiE", _ZN7WebCore8SVGNames10feMergeTagE) +STUB( + "vGf4kCH2J-k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEE7add_refEv) +STUB( + "vGgBs+ZPewc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEixEm) +STUB("vGl844uSUPk", mono_aot_I18Njit_got) +STUB( + "vGmSzNZQIJI", + _ZN7WebCore7JSRange6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_5RangeENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "vHAKNmxiL-U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEppEv) +STUB("vHCGXG+KeDA", WKPageGetPaginationLineGridEnabled) +STUB("vHDtsqbebfs", _ZN7WebCore24CachedResourceHandleBaseaSERKS0_) +STUB("vHGVN2bUMfM", _ZN3sce7Toolkit2NP19AllocImplementationD2Ev) +STUB("vHM6zyeLxg8", _ZN3sce2Np9CppWebApi7Matches2V111AddedPlayer14unsetAccountIdEv) +STUB( + "vHS-UHj9gAQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEE11get_deleterEv) +STUB("vHUJgCmE8is", sceAppInstUtilGetAppSlotInfoList) +STUB( + "vHWIOtgtx-I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("vHWd4Z92rhQ", _ZN7WebCore19JSDOMMatrixReadOnlyC2ERKS0_) +STUB("vHX9guneRBY", sceAgcCbMemSemaphore) +STUB( + "vHXHX+dZxIE", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("vHaV+tsSVu4", _ZN3sce2np12StreamWriter9WriteDataEPNS0_6HandleEPKvmPm) +STUB( + "vHfkjVgW5c8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("vHgmeSUmYoM", ubrk_swap_67) +STUB( + "vHi+EGGtXdA", + _ZN3sce2Np9CppWebApi14SessionManager2V141GetUsersAccountIdGameSessionsResponseBody8fromJsonERKNS_4Json5ValueE) +STUB( + "vHoZpnHyjA4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEC2ERS7_) +STUB("vHp-0qQ-0OY", _ZNSt9_FacetptrISt7codecvtIDic9_MbstatetEE6_PsaveE) +STUB("vHqIXYINXfI", __cxx_global_var_init .35) +STUB( + "vHuLHltf+LM", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10getString1Ev) +STUB( + "vHx9GQp7-uA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEC2EPS6_PNS2_10LibContextE) +STUB("vHxEybs8Dq4", msetname) +STUB("vHy+a4gLBfs", _ZNSt6chrono12steady_clock9is_steadyE) +STUB("vI1LT9WaNzs", mono_threads_exit_gc_unsafe_region) +STUB( + "vI1WMtv8mxU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE3endEv) +STUB("vI5VE4zcoUI", delegate_virtual_invoke_imt_m_2) +STUB("vI85k3GQcz8", _ZSt15future_categoryv) +STUB( + "vI9K7NGTObs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEE7add_refEv) +STUB( + "vI9Y1nbVVks", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEC2Ev) +STUB("vIJPARS8imE", _ZN10__cxxabiv117__pbase_type_infoD1Ev) +STUB("vIJU0OBb-0g", _ZN7WebCore21DiagnosticLoggingKeys11occurredKeyEv) +STUB("vILEMo+UUIE", _ZN3WTF13tryFastCallocEmm) +STUB("vINvzJOaqws", _ZN3sce2np4Time12GetUserClockEPS1_) +STUB( + "vITO0rPjJxM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE21intrusive_ptr_sub_refEPS9_) +STUB("vIZ550rGxVU", SSL_CTX_set_cert_store) +STUB( + "vIb2zd5J+E8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEaSERKS9_) +STUB( + "vIcFdyzHx-g", + _ZN3JSC7JSProxy17defineOwnPropertyEPNS_8JSObjectEPNS_14JSGlobalObjectENS_12PropertyNameERKNS_18PropertyDescriptorEb) +STUB("vIftfz9WmKw", mono_array_addr_with_size) +STUB("vIhR-n+3OKg", AnnotateIgnoreReadsEnd) +STUB("vIsoJsLvvlM", sceConvertKeycodeGetVirtualKeycode) +STUB("vIuen2qlRmo", _sceUltUlthreadOptParamInitialize) +STUB("vIvOZfMqpFM", delegate_virtual_invoke_imt_24) +STUB("vIzNvnAbsbI", _ZN7WebCore16FloatRoundedRectC2ERKNS_9FloatRectERKNS0_5RadiiE) +STUB("vJ2j5txZ2NA", _ZN3sce7Toolkit2NP2V27Session8SessionsD1Ev) +STUB("vJCNa4PHzQM", _ZN3sce2Np9CppWebApi6Common6VectorIjE5eraseENS2_13ConstIteratorIjEERS6_) +STUB("vJDHUZsipug", _ZNK9Inspector15ScriptCallStack2atEm) +STUB("vJDc5E6dDaQ", uenum_unext_59) +STUB("vJGDnNh4I0g", sceNpJsonParse) +STUB("vJGnqFj6ygE", _ZN15AbstractStorage13YoutubeFolder5CloseEv) +STUB("vJKV4uJSIzA", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V15GroupEEppEi) +STUB("vJQgipCqAM4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils5IdMapEE3setEv) +STUB( + "vJVbzaLJGCU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEC1EPKS8_) +STUB( + "vJXAVk0zdFc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEaSERS7_) +STUB("vJhYrkgTYWY", sceBgftServiceIntGetNotificationEvent) +STUB("vJimiT9NVQw", _ZN3sce7Toolkit2NP2V29Messaging7Request28GetGameDataMessageAttachmentC1Ev) +STUB("vJj32msqh9o", mono_aot_SMDiagnosticsunwind_info) +STUB("vJpI6fyAHog", _ZN3sce2Np9CppWebApi14SessionManager2V116FromNonPsnMember13setPlayerNameEPKc) +STUB("vJqP99QzX4I", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEEixEm) +STUB("vJr7ZAgj2hw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEC2ERS7_) +STUB( + "vJrnbutABoE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEptEv) +STUB("vJusUgRbsfM", _ZN7WebCore11DisplayList22ApplyDeviceScaleFactorD2Ev) +STUB("vJvkDeuvomU", _ZTVN9Inspector20DOMBackendDispatcherE) +STUB( + "vJvwknN-6tU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEEdeEv) +STUB( + "vJyBRjgE+fo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "vK1sRvIOx1w", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser17getnpServiceLabelEv) +STUB( + "vKBI-SgieQc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("vKBZ5aWv-BI", mmsize_is_not_initialized) +STUB( + "vKE2vwnumf0", + _ZThn32_N7WebCore14DocumentLoader16responseReceivedERNS_14CachedResourceERKNS_16ResourceResponseEON3WTF17CompletionHandlerIFvvEEE) +STUB("vKHE7wNteLg", _ZNK7WebCore16HTMLImageElement1xEv) +STUB("vKILPrCBeXQ", __asan_load4) +STUB( + "vKIzjL6E2hs", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetBoolean8Ev) +STUB("vKJsFe9RYIE", __cxx_global_var_init .8) +STUB("vKL406KPJRs", sceFiosResume) +STUB("vKOOZbgDjr4", bemp2sys_psdecoder_init) +STUB("vKObO5LG+x8", _ZN3WTF10StringImpl23defaultWritingDirectionEPb) +STUB( + "vKaC4HP88c8", + _ZN7WebCore26MessagePortChannelRegistry22didPostMessageToRemoteEONS_23MessageWithMessagePortsERKNS_21MessagePortIdentifierE) +STUB("vKbf07G7KPE", sceDbgKeyboardRead) +STUB("vKjxH-Yw7Ls", _ZN3WTF8JSONImpl5Value6createEb) +STUB( + "vKtXOb26WsY", + _ZN7WebCore13JSDOMRectList18getOwnPropertySlotEPN3JSC8JSObjectEPNS1_9ExecStateENS1_12PropertyNameERNS1_12PropertySlotE) +STUB("vKwrGP3+r1I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEEaSERKS9_) +STUB( + "vL+Hu+YaXAU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEEC1Ev) +STUB("vL0xXrIPKA4", _ZN3JSC8JSObject17preventExtensionsEPS0_PNS_14JSGlobalObjectE) +STUB( + "vL37Q-5XLYk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEEaSERKSA_) +STUB("vL7GroUb1q8", mono_table_info_get_rows) +STUB("vLBmK3-kGnM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEEC2EPKS6_) +STUB( + "vLDu5m0n9CQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEE7get_refEv) +STUB( + "vLEkp4ZlWLY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE6resizeEj) +STUB("vLIRBGF+bRs", _ZN7WebCore9HTMLNames9oncutAttrE) +STUB( + "vLL1WvtCXe4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEED1Ev) +STUB("vLLuuDx92lU", _ZN3JSC11VMInspector13dumpCallFrameEPNS_2VMEPNS_9CallFrameEj) +STUB("vLOl08NCj+0", _ZN7WebCore19ResourceRequestBase17setCachePartitionERKN3WTF6StringE) +STUB( + "vLPYq273Kz8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEC2ERS7_) +STUB( + "vLQH+hbPmGo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEEC1Ev) +STUB( + "vLWG91tcjas", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE5beginEv) +STUB("vLXAXGgzAmQ", udatpg_setAppendItemFormat_67) +STUB( + "vLXwPWfKwJo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEC1EPS8_) +STUB( + "vLYxOZEtW5k", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEE3getEv) +STUB( + "vLegFQwyGE4", + _ZN7WebCore24CoordinatedGraphicsLayer11setChildrenERKN3WTF6VectorIPNS_13GraphicsLayerELm0ENS1_15CrashOnOverflowELm16EEE) +STUB("vLii6YzmaaA", WKFrameHandleGetTypeID) +STUB("vLl0C9Oq5Ls", + _ZN7WebCore16ScriptController24jsObjectForPluginElementEPNS_17HTMLPlugInElementE) +STUB( + "vLpNFjC9lc4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB("vLrBL8DQiz8", sceAgcDcbSetPredicationDisableGetSize) +STUB( + "vLxOOIaPLJ4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditionsC2Ev) +STUB( + "vM1-VNjx0gs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEneERKS9_) +STUB("vM2cLeGhLjU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE5beginEv) +STUB( + "vM3020c14tU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEdeEv) +STUB( + "vM3iN5Xfsuc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE8sendDataEPKvm) +STUB( + "vM9eguaL-54", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE7popBackEv) +STUB( + "vM9ru2KdSvo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEmmEv) +STUB( + "vMCgehfELYg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEneERKS9_) +STUB( + "vMDHvkF2jss", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE3endEv) +STUB("vMJl5YoKjls", + _ZN7WebCore11DOMRectListC1ERKN3WTF6VectorINS_9FloatQuadELm0ENS1_15CrashOnOverflowELm16EEE) +STUB("vMLWuJckGv0", sceVideoOutSysGetMonitorInfo_) +STUB( + "vMLyb9yvAyQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("vMMG0bhp7Do", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEppEi) +STUB("vMMNm3F9Jpc", mono_aot_Sce_Vsh_Gls_NativeCallplt_end) +STUB("vMNk9+aNPXw", _ZN7WebCore9HTMLNames17webkitgrammarAttrE) +STUB("vMPn2lAhggg", ECDSA_size) +STUB("vMQJRUKsf3U", sceLoginDialogTerminate) +STUB("vMQPol5T6DY", WKRenderLayerGetFrameContentsLayer) +STUB("vMQuL4mBxU0", _ZNK7WebCore14DocumentLoader11frameLoaderEv) +STUB( + "vMS+2SqOVWs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "vMTpRygKTrI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("vMTyjS2g3z0", _searchCommInfoTail) +STUB("vMbLSFR3QYs", _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE3endEv) +STUB( + "vMevvbTO+So", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEED2Ev) +STUB( + "vMkE3BaO7S0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("vMsePZhPOLY", _ZN7bmalloc11IsoTLSEntrynaEm) +STUB( + "vMv57E4fe9Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEC1EPS8_) +STUB( + "vMz0h1KyB0I", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEEeqERKS7_) +STUB("vN+uSr3WpOI", WKPreferencesGetAllowsPictureInPictureMediaPlayback) +STUB( + "vN6v40TG1Ow", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE8capacityEv) +STUB("vN9sTP63WT8", sceNpFriendListDialogOpenA) +STUB("vNAY9KJ8gqE", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_23NpSessionInvitationInfoEED1Ev) +STUB("vNFWwy493LY", _ZN3WTF11TimingScope11scopeDidEndEv) +STUB("vNIVuapMDtc", _ULx86_64_Ifind_dynamic_proc_info) +STUB("vNJUvWIQp1M", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEEC1ERS7_) +STUB( + "vNKDC3oFOEo", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations26hasinvitationInvalidFilterEv) +STUB("vNMe+-hRAFU", sceBgftServiceIntUploadUnregisterTask) +STUB( + "vNNAZQ6Ihpc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE5emptyEv) +STUB("vNNCUDOFpFY", WKBundleGarbageCollectJavaScriptObjects) +STUB( + "vNPcZCS-hkA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEC2Ev) +STUB( + "vNQ4pvdhseY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "vNS+yIXktYg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEeqERKS9_) +STUB("vNcLSBfLtbk", + _ZN3sce3pss5orbis9framework12PsmFramework20RegisterInternalCallEPKNS2_12PsmCallEntryE) +STUB("vNd7hsJfOWo", _ZN3sce7Toolkit2NP2V211SharedMedia7Request14GetScreenshotsD2Ev) +STUB("vNe1w4diLCs", __tls_get_addr) +STUB("vNjX4ranwes", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE5beginEv) +STUB( + "vNu26-r1Lg4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEE11release_refEv) +STUB("vO4B-42ef-k", sceHttpSetRequestStatusCallback) +STUB( + "vO9tRdyPrxQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEEptEv) +STUB("vOA3a52SjWo", _ZN3sce7Toolkit2NP15AppSTLAllocatorIcEC1ERKS3_) +STUB("vOCnHYUBWcc", _Z35SoundPlayer_MoveSurroundPanDistanceifd) +STUB( + "vOF8urhKFHo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("vOFs-wz9T-k", _ZN7WebCore10JSDocument14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB( + "vOHLBs6GX4Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEEptEv) +STUB("vOJUjgpFs94", mono_aot_Sce_Vsh_Np_IdMapperjit_got) +STUB("vOMJJNpLyZs", _ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEED2Ev) +STUB( + "vOMOmmsuNs4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEptEv) +STUB("vOMkFwCg4S4", YGConfigGetDefault) +STUB("vOPZesKARBo", _ZN3sce7Toolkit2NP2V28Commerce8CategoryC1Ev) +STUB("vOQXrlD31B0", _ZN3sce7Toolkit2NP2V211SharedMedia7Request9GetVideos17DEFAULT_PAGE_SIZEE) +STUB("vOTH9Iec7Yc", _ZN3sce4Json9RootParamD1Ev) +STUB("vOTI8dBuMsY", il2cpp_unity_liveness_calculation_from_root) +STUB("vOhW2Wdz0t4", FT_Get_SubGlyph_Info) +STUB("vOhqz-IMiW4", sceSystemServiceTurnOffScreenSaver) +STUB( + "vOjbi6jzArs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEptEv) +STUB("vOjhV4Hkm3M", __asan_exp_load4_noabort) +STUB("vOnN7+ssLAU", + _ZN7WebCore11DisplayList14DrawingContext17replayDisplayListERNS_15GraphicsContextE) +STUB("vOnuOBh0qBM", mono_aot_Sce_Vsh_GriefReportStorageplt_end) +STUB( + "vOqrV7p7WsQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEEdeEv) +STUB("vOwhzBrEV4E", _ZN7WebCore15clearBackingSetERN3JSC14JSGlobalObjectERNS0_8JSObjectE) +STUB( + "vP2k7-okFG4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEppEi) +STUB("vP4A5J4SjVY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ResponseCooperativeResultEEC2Ev) +STUB("vP5WyiSNRHQ", uregion_areEqual_67) +STUB( + "vP6B+ssxePA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEeqERKS9_) +STUB( + "vP8CjHl8Wgw", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRateC1EPNS1_6Common10LibContextE) +STUB( + "vP8DOUhwhTs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("vP9N8rOMbJQ", WKPageGroupAddUserScript) +STUB("vPDhEhu48p4", _ZN3sce7Toolkit2NP2V23TUS19FriendsDataStatusesaSERKS4_) +STUB("vPHIPjHJjyo", sceDataTransferRequestGetAppInfoPS4) +STUB("vPN5TrcOIY4", _ZNK7WebCore11MediaPlayer11initialTimeEv) +STUB("vPNPrrU6PP8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEdeEv) +STUB("vPP6vKHY8Tg", _sceSdmaNop) +STUB( + "vPYn+1XWhQE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEeqERKS9_) +STUB( + "vPhuUqRWid0", + _ZN7WebCore13PathUtilities26pathWithShrinkWrappedRectsERKN3WTF6VectorINS_9FloatRectELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEEf) +STUB("vPi3gSzw79M", sceCamera2GetSharpness) +STUB("vPju3W13byw", _ZN3sce2np9WorkQueue18WaitForPendingItemEPPNS0_8WorkItemEPb) +STUB("vPplCGG5Oac", ucasemap_close_67) +STUB("vPx5smu5Wio", _ZN7WebCore9HTMLNames15ondragenterAttrE) +STUB("vPxKoc5MyxQ", sceShellCoreUtilGetDeviceIndexBehaviorWithTimeout) +STUB("vPzJldDSxXc", sceRudpNetReceived) +STUB("vPzTqyJy2cE", _ZN15AbstractStorage12LocalServiceD2Ev) +STUB("vQ2mg8-XwuM", _ZN7WebCore9HTMLNames26onwebkitanimationstartAttrE) +STUB( + "vQBgtFYNqlM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEED1Ev) +STUB("vQE6-ztj3Ks", _ZN7WebCore20TransformationMatrix4skewEdd) +STUB("vQGVOZmLEXE", _ZN7bmalloc3api16disableScavengerEv) +STUB( + "vQLBThlpkBc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEaSERKS9_) +STUB( + "vQMltY9T5+k", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEptEv) +STUB("vQV-tQgElC4", uset_size_67) +STUB( + "vQVoxu3+xvA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEED2Ev) +STUB( + "vQWUK3lkOvg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEEcvbEv) +STUB( + "vQZXbnctY+0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEixEm) +STUB("vQah03QdJqE", _ZNK7WebCore22SkewTransformOperation10isIdentityEv) +STUB("vQgTn573K8A", _ZNK7WebCore15HTMLFormElement6methodEv) +STUB("vQhIcDhwZvg", _ZN3sce7Toolkit2NP2V28Presence7Request14DeletePresenceD1Ev) +STUB("vQhkSQfb87Y", _ZN7WebCore11PageOverlayD0Ev) +STUB("vQlEe5xlWVU", _ZNK7WebCore9FrameView28isEnclosedInCompositingLayerEv) +STUB("vQm4fDEsWi8", pthread_attr_getstack) +STUB("vQnjoBqpO1w", _ZN7WebCore20DictationAlternativeC2Ev) +STUB("vQpEDCAr8ss", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEEC2ERKS6_) +STUB( + "vQsf8LJeE+0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEE11get_deleterEv) +STUB("vQwAX-xV-Dg", _ZNK3WTF6String31convertToLowercaseWithoutLocaleEv) +STUB( + "vQzQFaYfxtg", + _ZN9Inspector23TargetBackendDispatcher6createERNS_17BackendDispatcherEPNS_30TargetBackendDispatcherHandlerE) +STUB("vR3+bfUo-Qo", _ZN3sce4Json6Parser10parseValueERNS0_5ValueERNS0_11InputStreamEPS2_) +STUB("vRB6SfZc+10", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEED1Ev) +STUB("vRCQeHxYCec", + _ZN3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayer13setPlayerNameEPKc) +STUB( + "vRCiNj84CnU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEppEv) +STUB( + "vRN75ngp0ww", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEC1EPS8_) +STUB("vRP9yTeN0YI", mono_signature_vararg_start) +STUB("vRW6XDP-8J4", u_strchr32) +STUB("vRYgaGOXZ4w", _ZN3sce7Toolkit2NP2V211SharedMedia5VideoC1Ev) +STUB("vRfefAiKSgs", __cxx_global_var_init .6) +STUB("vRgpAhKJJ+M", sceUserServiceSetGlsInitSpectating) +STUB( + "vRkef+KyE4A", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE4sizeEv) +STUB("vRoArM9zaIk", sceAgcSetUcRegIndirectPatchAddRegisters) +STUB( + "vRoX+L7CgSI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEED1Ev) +STUB( + "vRpYko5WTm4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEC1Ev) +STUB( + "vRrYDiBuvcI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEE21intrusive_ptr_sub_refEPS7_) +STUB("vRxf4d0ulPs", sceFontRenderSurfaceSetScissor) +STUB("vRztlQrM5e8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEC2Ev) +STUB("vS-RnoD1BSY", __sys_opmc_set_ctl) +STUB("vS-g6oXTuW8", sceApplicationGetCanvasHandleByPid) +STUB( + "vS0DGdQQ4pQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEC2EPS6_PNS2_10LibContextE) +STUB("vS20kteXHdw", sceCamera2SetAutoWhiteBalance) +STUB("vSCc5IpzQ-w", glVertexAttrib1f) +STUB( + "vSEy9gd+gFs", + _ZN3sce2Np9CppWebApi14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyD1Ev) +STUB( + "vSFi66yk+V4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEC2EPS8_) +STUB( + "vSJJmP6lpMk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEdeEv) +STUB("vSMAm3cxYTY", sceKernelMprotect) +STUB( + "vSO+cSIBKBc", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Runtime15PropertyPreview7SubtypeEEEN3WTF8OptionalIT_EERKNS6_6StringE) +STUB("vSVDGr+kcIo", recvtbl_update) +STUB("vSbTJ-uoECY", u_strstr_67) +STUB("vSfTzLW9fCw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEC2ERS7_) +STUB("vSgOFqqXwo8", _ZN25MmsFileUpdaterFsOperation11undoTmpFileEPKc) +STUB("vShVt3gtn98", WKBundleFramePauseAnimationOnElementWithId) +STUB( + "vShbnvHoBZQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEEdeEv) +STUB( + "vSinOb77H+k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEmmEi) +STUB("vSjGf4cBpmU", sceBgftServiceDownloadGetProgress) +STUB("vSjaC2630xg", _ZN3sce7Toolkit2NP2V28Commerce8Category17CATEGORY_NAME_LENE) +STUB("vSqCOi+yAqo", _ZN13MsvMetaEditor13updateStcoBoxEi) +STUB("vSuMO1cYzgs", delegate_virtual_invoke_imt_20_p) +STUB( + "vT+-9HqXj4U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB("vT+IwqoJ5Bw", _ZN7WebCore9HTMLNames10hspaceAttrE) +STUB("vT2xmTf1RHU", sceCustomMusicAudioOutGetMuted) +STUB( + "vT5oiXX2aHA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEEptEv) +STUB( + "vT77yoS0azc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("vT9xhqPO6+0", sceNpLookupCreateTitleCtxA) +STUB( + "vTIBVeYng90", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEE11get_deleterEv) +STUB("vTKW3REJYNA", _ZN3JSC7Options23enableRestrictedOptionsEb) +STUB( + "vTKb-05Oh0M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "vTMJ4lvT5fk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("vTOCaA3cMUA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEC2ERKS7_) +STUB( + "vTVWjoFDvL0", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26getMultiDataStatusesBySlotEiRKNS4_37ParameterToGetMultiDataStatusesBySlotERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_32GetMultiDataStatusesResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("vTZ34rw1sfg", FT_GlyphLoader_Done) +STUB("vTbQUay9w+k", sceDataTransferTargetRequestGetDeviceInfo) +STUB( + "vTbRF6O-bAQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEppEi) +STUB("vTcRCX6SQVo", WKWebsiteDataStoreSetAdditionalRootCA) +STUB( + "vTmt757JhBo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEE7get_refEv) +STUB( + "vTsSoV2qysw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEEC1ERKSA_) +STUB( + "vTvTwYtpEeg", + _ZN7WebCore21UserContentController13addUserScriptERNS_15DOMWrapperWorldESt10unique_ptrINS_10UserScriptESt14default_deleteIS4_EE) +STUB( + "vTvZQbjw88U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEC2EPS8_) +STUB("vU+FqrH+pEY", sceDbgPlayGoSnapshot) +STUB("vU7TQ62pItw", sceNgs2SystemGetInfo) +STUB("vU9svJtEnWc", _ZSt4setwi) +STUB( + "vUGaALcX4AA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE5startEPNS2_10LibContextE) +STUB("vUHYThFDlc0", jvmciHotSpotVMLongConstants) +STUB( + "vUMG-1dA6UI", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V136MatchCompletionRatePropertiesFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_35MatchCompletionRateCompletedMetricsEEEiNS8_INS3_38MatchCompletionRateDisconnectedMetricsEEENS8_INS3_30MatchCompletionRateQuitMetricsEEEPNS8_INS3_29MatchCompletionRatePropertiesEEE) +STUB("vUMkWXQff3w", sceSharePlayGetCurrentInfo) +STUB( + "vUPPOcmS4tI", + _ZNK3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfile16getincludeFieldsEv) +STUB("vURZNQ8+cP0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEptEv) +STUB("vUbvfpTOyZw", _ZN7WebCore9FrameView20resetTrackedRepaintsEv) +STUB( + "vUdFc22NMw0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEneERKS9_) +STUB("vUdp217ffmM", _ZN3NTF21ResourceRequestLoggerC2Ev) +STUB( + "vUj6dMqsoYM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEEC1Ev) +STUB("vUtyZPXF0X0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce8ProductsEE5resetEv) +STUB( + "vUuAzw0Q6Is", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEE11get_deleterEv) +STUB("vUwH0XCej9k", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error6toJsonERNS_4Json5ValueEb) +STUB("vUx-PsH0wAA", _ZNK7WebCore16DOMGuardedObject12globalObjectEv) +STUB("vUz7RsxUmHI", WKPreferencesGetAllowsAirPlayForMediaPlayback) +STUB( + "vV4aCssYOX8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEplEm) +STUB( + "vV5cH-CLWA8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEE3getEv) +STUB("vV8MnMpofkE", sceAppInstUtilDeleteExternalPs5All) +STUB("vVBwwOmK0I0", _ZN7WebCore16MIMETypeRegistry22systemPreviewMIMETypesEv) +STUB("vVEIpOou3ek", __asan_get_report_bp) +STUB( + "vVH1QnDN-sA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE5beginEv) +STUB( + "vVJikAkV16Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEC2ERKS7_) +STUB("vVMzuNNoGeA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE3endEv) +STUB( + "vVZjA1mVz64", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEE11get_deleterEv) +STUB("vVagP7XKZgo", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEED1Ev) +STUB( + "vVdnsJN9DzQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEE11get_deleterEv) +STUB("vVeoeg4g9kk", rot3) +STUB("vVf8Bc9PMu4", _ZN3sce7Toolkit2NP2V24Auth8AuthCodeaSERKS4_) +STUB("vVk1SOjVN48", sceBgftServiceIntDownloadQueryTask) +STUB("vVlcZ+rSW-w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEixEm) +STUB("vVxVAZ8z14k", WKPreferencesSetHiddenPageDOMTimerThrottlingAutoIncreases) +STUB("vVxgiBpuqaM", YGNodeSetBaselineFunc) +STUB( + "vW-nnV62ea4", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERb) +STUB("vW0zRb6OvR0", _ZN7WebCore11ImageSource20frameDurationAtIndexEm) +STUB("vW1rypyIbjY", __ubsan_handle_alignment_assumption) +STUB("vW2qWKYmlvw", sceUserServiceGetSystemLoggerHashedAccountIdClockType) +STUB("vWA1r9CiPgI", _ZNK3sce3Xml3Dom8Document13hasAttributesENS1_6NodeIdE) +STUB("vWBUbKWs53U", WKBundleSetUserStyleSheetLocation) +STUB( + "vWGuDzNjowU", + _ZNK3sce2Np9CppWebApi14ConnectAccount2V216PartnerTokensApi26ParameterToGetPartnerToken13isInitializedEv) +STUB( + "vWIhCTZ0B7c", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfiles13setaccountIdsEPKc) +STUB( + "vWKgZK11WLY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE3endEv) +STUB( + "vWL6JETk2EQ", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12unsetString1Ev) +STUB("vWU-odnS+fU", sceAmprMeasureCommandSizeReadFile) +STUB( + "vWXhIlYstwc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEE7add_refEv) +STUB( + "vWYd2+VupsY", + _ZN7WebCore22HTMLFormControlElement13checkValidityEPN3WTF6VectorINS1_6RefPtrIS0_NS1_13DumbPtrTraitsIS0_EEEELm0ENS1_15CrashOnOverflowELm16EEE) +STUB("vWbEQjE5O9g", _ZNK7WebCore4Node14isDescendantOfERKS0_) +STUB("vWbyrN4+1ZA", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEEmmEi) +STUB("vWgVOv3-IjI", _ZN7WebCore21DiagnosticLoggingKeys27canceledLessThan5SecondsKeyEv) +STUB("vWjFmwE-qPQ", __tsan_write8_pc) +STUB("vWkaB9NZpGA", glBindFramebuffer) +STUB( + "vWr3duzc1XA", + _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container12setPlatformsERKNS1_6Common6VectorINS5_6StringEEE) +STUB("vWyD1LS3fFM", mono_aot_System_Runtime_Serializationjit_code_end) +STUB( + "vWzRjw5WjF0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEplEm) +STUB("vX+NfOHOI5w", _ZN6Dinkum7threads10lock_errorD1Ev) +STUB( + "vXDMzfZl1KY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEaSERS7_) +STUB("vXE-dIUIZlE", tcsendbreak) +STUB("vXNlggH6sNY", _ZN7WebCore24CoordinatedGraphicsLayer19adjustContentsScaleEv) +STUB("vXRp9zVGPzU", il2cpp_init) +STUB("vXXxzDf2BWM", mono_aot_Sce_Vsh_PatchCheckerClientWrapperunbox_trampolines_end) +STUB("vXZhrtJxkGc", sceSysmoduleUnloadModuleInternal) +STUB("vXcL24sHmsQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEEC1EPS5_PNS2_10LibContextE) +STUB( + "vXgKZUlWrFo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE10setContextEPNS2_10LibContextE) +STUB("vXlMo2IuqIg", JVM_StopThread) +STUB("vXu991uXNUo", u_caseInsensitivePrefixMatch) +STUB("vXvHNa4wkCI", _ZNKSt9basic_iosIcSt11char_traitsIcEE5rdbufEv) +STUB("vXvLTrtRn90", _ZN4Manx21DisplayRefreshMonitor10waitVblankEv) +STUB( + "vXxkYvomDXQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEE7get_refEv) +STUB("vY-muZt5ojc", sceHidControlSetProcessFocus) +STUB( + "vY-ry25Mh-o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEEC1Ev) +STUB("vY1-RZtvvbk", sceSystemServiceSuspendBackgroundApp) +STUB( + "vY26v5gSHNs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEeqERKS9_) +STUB("vY2bEjTQwD4", X509_get_pubkey) +STUB("vY7uoGDSK14", _ZN3WTF27exchangeIsCompilationThreadEb) +STUB("vYCGx4xa37w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEC2Ev) +STUB("vYFsze1SqU8", sceAudioInSetAllMute) +STUB( + "vYFuvsEqvF4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE8capacityEv) +STUB("vYHJtZyhhEI", sceShellCoreUtilIsBgmCpuBudgetAvailable) +STUB("vYHtlsqK5ug", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEEC2ERS9_) +STUB("vYLd9fXeOkc", _ZN3WTF17double_conversion23DoubleToStringConverter19EcmaScriptConverterEv) +STUB( + "vYOjHcnr0hA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE8pushBackERKS8_) +STUB("vYQLyTYE6nw", psl_builtin) +STUB("vYS-YC+Cdkg", sceMatReserveVirtualRange) +STUB("vYSUFNI1Nvc", _ZThn24_N9Inspector22InspectorDebuggerAgent15didRunMicrotaskEv) +STUB( + "vYSfaPb4EwQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEptEv) +STUB("vYU8P9Td2Zo", sceKernelAioInitializeImpl) +STUB("vYUsnwafPbg", _ZN9Inspector21InjectedScriptManager15clearEventValueEv) +STUB("vYWK2Pz8vGE", _ZSt7_FiopenPKcNSt5_IosbIiE9_OpenmodeEi) +STUB("vYb+RkDnJBw", sceMbusDebugAcquireControlWithState2) +STUB( + "vYb5IYXfmuc", + _ZN9Inspector25DebuggerBackendDispatcher18getFunctionDetailsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "vYeRrCwvLNM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEE11release_refEv) +STUB( + "vYg8ZNig5OI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "vYm5d85EsjA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEC1Ev) +STUB("vYp+D8+KQqk", mono_aot_ReactNative_PUIunwind_info) +STUB("vYq95mjOFD8", _ZN3sce7Toolkit2NP2V212NetworkUtils16NetStateDetailedaSERKS4_) +STUB( + "vYyo4SCY1pw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEC2EPS8_) +STUB("vYz7gkTnLis", _ZNK7WebCore8DOMTimer24intervalClampedToMinimumEv) +STUB( + "vZ-DXAqD0PA", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser7hassortEv) +STUB("vZ02QSIHZBw", usearch_getBreakIterator_67) +STUB("vZ700a3Jeq0", mono_gc_collection_count) +STUB( + "vZ7He8aveSs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEE11release_refEv) +STUB( + "vZ9CGClnmZ4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEC2EPKS8_) +STUB("vZ9OAENGrBs", mono_declsec_get_demands) +STUB( + "vZBcDdYD4Ig", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEEptEv) +STUB( + "vZEjKAvq2b8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE5beginEv) +STUB( + "vZF-1NbmvsI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEppEi) +STUB( + "vZLGn98Q4tk", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("vZMcAfsA31I", setbuf) +STUB("vZNIcB3n+bg", sceFiosTimeIntervalToNanoseconds) +STUB("vZNvgdJXM8k", _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody11unsetStatusEv) +STUB( + "vZOAHmw5eF0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("vZXDqs2x7t0", _ZN3sce2np10CancelableD2Ev) +STUB("vZZWE4UTMyg", Java_com_sony_bdjstack_org_bluray_storage_BindingunitDataAreaInfo_getFreeBuSize) +STUB( + "vZZfc6Il1SE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEEC1Ev) +STUB("vZaJVJV+K7M", _ZN7WebCore16TrackPrivateBasenaEmPv) +STUB("vZaZ-ph19fc", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEEC2EPS6_) +STUB( + "vZbYvpMjZH4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEEC1Ev) +STUB("vZctofy+yiU", _ZN7WebCore17NowPlayingManagernwEmPv) +STUB("vZikpIeFVMY", _ZNK7WebCore16HTMLInputElement12isFileUploadEv) +STUB("vZj9Ghirb88", utrace_getFunctions) +STUB("vZjaJ6+zWIA", + _ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody26needsRecordedDateTimeIsSetEv) +STUB("vZkmJmvqueY", _Lockfilelock) +STUB("vZnKC-qJyuo", __sanitizer_cov) +STUB( + "vZpUjfJnUwc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEC2EPNS2_10LibContextE) +STUB( + "vZpc0LQ9KwQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEC2EPS8_) +STUB("vZser6ysSbM", sceKernelIsMainOnStandbyMode) +STUB("vZuL5d4VEJQ", _ZN9Inspector17BackendDispatcherD1Ev) +STUB("va+mHDV+Lwo", _ZN3sce7Toolkit2NP2V27Session7Request7GetDataD1Ev) +STUB( + "va7LmNH8zrI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE21intrusive_ptr_add_refEPS9_) +STUB("va7Me5Jwuzs", _ZNK9Inspector22InspectorDebuggerAgent17shouldBlackboxURLERKN3WTF6StringE) +STUB( + "vaGUU-7krdc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEE7get_refEv) +STUB("vaLPKYnyR1A", _ZNK7WebCore12ISOWebVTTCue12toJSONStringEv) +STUB("vaMxz9+R1Q4", scePktMgrSetUlpResHdr) +STUB("vaPIXMS4kpw", _ZN7WebCore28convertToIntegerEnforceRangeItEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB( + "vaPrXkOXAfg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEC1Ev) +STUB("vaQ3oyReTCw", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TSS7TssDataEE5resetEv) +STUB( + "vaWkZvvw92E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEC1Ev) +STUB( + "vabELSjiGpw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB("vaf2FC81Yjc", __tsan_atomic16_fetch_add) +STUB("vag289xf25c", _ZN3JSC12StringObject10putByIndexEPNS_6JSCellEPNS_9ExecStateEjNS_7JSValueEb) +STUB("vahTGzCJaMQ", _ZN7WebCore11JSDOMWindowD2Ev) +STUB("vakoyx9nkqo", _Genld) +STUB( + "vaonw-qqV+k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEED2Ev) +STUB("vatp8UwS+nE", _ZN15AbstractStorage7Service6UnLoadEPS0_) +STUB("vauI0qkQcjw", _ZN3sce2Np9CppWebApi6Common6VectorIjEC1EPNS2_10LibContextE) +STUB( + "vaw-YOcx5aY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEEC2ERSA_) +STUB("vaz1FGfx6hA", mono_aot_Sce_Vsh_MarlinDownloaderWrapperunwind_info) +STUB( + "vb1DUXRZTXs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("vb2lzbfKjNM", _ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession15searchableIsSetEv) +STUB( + "vb6CEcyAThA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEC2EPNS2_10LibContextE) +STUB("vb787LObaN8", _ZN3JSC19ArrayBufferContentsC1EPvjON3WTF8FunctionIFvS1_EEE) +STUB("vbD0xa+1ZX4", bdjbg_clear) +STUB("vbDE8iuKPKY", sceAudiodecDecodeWithPriorityEx) +STUB("vbDnTIHPyfI", mono_install_assembly_load_hook) +STUB("vbEbCa9rwVA", scePktMgrSetUlpNtfPayload) +STUB("vbEqgeYEbBQ", sceShellCoreUtilNotifySystemSuspendTelemetryInfo) +STUB( + "vbFf5Z7OlSQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE7popBackEv) +STUB( + "vbHHJKmT6ac", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38deletePlayerSessionsMemberNonPsnPlayerEiRKNS4_49ParameterToDeletePlayerSessionsMemberNonPsnPlayerERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB( + "vbJtJ6-JGaQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEC1Ev) +STUB( + "vbJxberpWTs", + _ZN3sce2Np9CppWebApi7Matches2V134RequestTemporaryTeamResultsFactory6createEPNS1_6Common10LibContextEPKciPNS5_12IntrusivePtrINS3_27RequestTemporaryTeamResultsEEE) +STUB( + "vbJzvM3FB18", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE3endEv) +STUB("vbMEQcz6O8g", sceLncUtilGetAppCategory) +STUB( + "vbMczXBYYaI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEEC2Ev) +STUB("vbOtZbSzsE8", + _ZN7WebCore23ScaleTransformOperation6createEdddNS_18TransformOperation13OperationTypeE) +STUB( + "vbPIX5AF3UU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEaSERKS9_) +STUB("vbQO-YgVbAQ", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicketC2Ev) +STUB("vbSnHbPsfH8", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEED1Ev) +STUB( + "vbY-Hgi0mmE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEEcvbEv) +STUB( + "vbY475HSNxw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEC2Ev) +STUB( + "vbZ4jZzGgfE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEED1Ev) +STUB("vbZLomImmEE", sceNetConfigRoutingShowRoutingConfig) +STUB("vbcR4Ken6AA", sceGnmFindResources) +STUB("vbgCuYKySLI", _ZNKSt8messagesIcE6do_getEiiiRKSs) +STUB("vbh-MWtjMh4", _ZN3sce7Toolkit2NP2V24Core7Request10InitParamsC1Ev) +STUB("vbjmDDIBzzc", _ZN3WTF16tryJSValueMallocEm) +STUB("vbo0I+4DWy0", _ZN7WebCore8SVGNames6k2AttrE) +STUB("vboBiA6kae0", + _ZN7WebCore8Document5writeEPS0_ON3WTF6VectorINS2_6StringELm0ENS2_15CrashOnOverflowELm16EEE) +STUB("vbtWT3lZBOM", sceNpMatching2GetRoomPasswordLocal) +STUB( + "vbv0cJsxbmQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE7reserveEi) +STUB("vbzj1L-tcCE", _ZN3sce7Toolkit2NP2V23TUS12TusVariablesC2ERKS4_) +STUB( + "vbzy4o7MvZ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEE11release_refEv) +STUB("vc+izrehl3Q", g_JSWebAssemblyInstancePoison) +STUB( + "vc0vCuWiJSg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "vc6Mu0VHc+Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEEC1ERSA_) +STUB("vcBDDGi8xl0", sceDebugGetCrashInfoForCoredump) +STUB( + "vcDF1DWwMVs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE7reserveEi) +STUB("vcDMMUBBG+g", psl_free_string) +STUB("vcEmTpxouso", utext_hasMetaData) +STUB("vcGKNO9o50E", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_10TrophyInfoEEC2Ev) +STUB("vcGcgbhP0BU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEED1Ev) +STUB("vcN1gg+gWRg", cairo_set_source_surface) +STUB("vcRPgIzgnpg", WKPreferencesSetStorageBlockingPolicy) +STUB("vcTpyR-ztbs", _ZTT12Mp4Retriever) +STUB( + "vccf6Y54AOQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE21intrusive_ptr_add_refEPS9_) +STUB("vcd5Kfs1QeA", sceUserServiceGetPbtcFridayHoursStart) +STUB( + "vcgfSZOpqLg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEED1Ev) +STUB("vcinzxhrTLA", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku7setNameEPKc) +STUB( + "vckS4ay-5Q8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE7popBackEv) +STUB("vckdzbQ46SI", sceGnmSetLsShader) +STUB("vcmNN+AAXnY", sceAgcSetCxRegIndirectPatchSetAddress) +STUB("vcnDHacnGEU", _ZN3sce7Toolkit2NP2V24Core11ServerError17JSON_DATA_MAX_LENE) +STUB("vcqW92jr2zw", _ZNK3sce2Np9CppWebApi7Matches2V119RequestMatchResults22competitiveResultIsSetEv) +STUB("vcrFJP7x4wE", _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse11zoneIdIsSetEv) +STUB( + "vcsCWIrJX0A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE7popBackEv) +STUB( + "vcwDWPUs3x0", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("vd+fYjNhIyg", _sinf_impl) +STUB( + "vd6+qcf1l48", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("vd7ot5olwUM", mono_counters_cleanup) +STUB( + "vdBPCk0CF5Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEED2Ev) +STUB("vdBd3PMBFp4", sceUserServiceSetGlsAccessTokenUstream) +STUB("vdM7J5Xjh2A", WKContextGetCacheModel) +STUB("vdTyx2A8pMc", _ZNK3JSC8JSObject11hasPropertyEPNS_14JSGlobalObjectEj) +STUB("vdV5zDWJ9Q8", glUniform3iv) +STUB("vdVczMe-fhA", _ZN7WebCore22ScriptExecutionContext2vmEv) +STUB("vdZLA9D5hks", _ZN3JSC11ArrayBuffer10transferToERNS_2VMERNS_19ArrayBufferContentsE) +STUB( + "vdaQJqyTyjs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE5emptyEv) +STUB( + "vdcPddw6zGE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB("vdeWIyIqZ5o", _ZNK7WebCore5Color9luminanceEv) +STUB("vdgNshVNxVM", WebProcessMainPlayStation) +STUB( + "vdj8HUBlp7Q", + _ZN3sce7Toolkit2NP2V23TUS18getFriendsVariableERKNS3_7Request18GetFriendsVariableEPNS2_4Core8ResponseINS3_16FriendsVariablesEEE) +STUB( + "vdk6rLp8ivc", + _ZNK3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead22invitationInvalidIsSetEv) +STUB("vdpVwH3lbwU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEC1Ev) +STUB("vdsTa93atXY", sceNetCtlGetResultV6IpcInt) +STUB("vdsj9De6dXc", _ZN3WTF10TextStreamlsEj) +STUB("vdtz66awjCQ", mono_log_write_logfile) +STUB("vdxxSjPNWcc", _ZN7WebCore4Page19appearanceDidChangeEv) +STUB("vdyaIbyTdT0", __sanitizer_cov_with_check) +STUB("vdytWzmaKdY", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V112ErrorFactory7destroyEPNS3_5ErrorE) +STUB( + "ve+AMZfC5wo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEE7add_refEv) +STUB( + "ve45Yj7c5xE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE8capacityEv) +STUB("ve6bZi+1sYQ", sceNgs2ModuleQueueEnumItems) +STUB("veCelGOGszU", JSGlobalObjectInspectorControllerDisconnectFrontend) +STUB("veNviXt6wC0", _ZN3sce4Json5ValueC2ERKNS0_6StringE) +STUB( + "veRySWMcttw", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanity10initializeEPNS1_6Common10LibContextEPKcSA_NS6_12IntrusivePtrINS3_19WebApiFilterRequestEEE) +STUB("veTpNwFxcog", _ZN9Inspector25TimelineBackendDispatcherD0Ev) +STUB("veUz0LV2k1w", _ZN7WebCore30makeRangeSelectingNodeContentsERNS_4NodeE) +STUB( + "veWpaDIXr7s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEC1Ev) +STUB("veb-YBrOqo0", sceVdecswResetDecoder) +STUB( + "veci7lUC+IY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEED2Ev) +STUB("vegw8qax5MI", scePadGetLicenseControllerInformation) +STUB("veifnrR6cAs", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEEdeEv) +STUB("vejouEusC7g", sceCameraSetDebugStop) +STUB("veqvgYwHs5I", fuse_reply_create) +STUB( + "vesXN9z01kU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEE11get_deleterEv) +STUB("veuGEZz1YAU", _ZN3JSC8Debugger18willExecuteProgramEPNS_9CallFrameE) +STUB("veyRW0q677M", ufmt_getDecNumChars_67) +STUB("vf+lYeOXdI8", sceNpAsmClientGetGameNpTitleInfo) +STUB( + "vf2us8FoMvk", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V321MissingElementFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_14MissingElementEEE) +STUB("vf3QYbCLeCY", vzone_countTransitionRules_67) +STUB("vf4jCzaSGe4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE5beginEv) +STUB("vfBKsg+lKWc", _ZN3sce2np4Path12AddDelimiterEPcmc) +STUB( + "vfCRwvD36lk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEEC1ERKSA_) +STUB( + "vfCpQ4zA1Lg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEppEi) +STUB("vfEDGY+mX+o", uspoof_check2_67) +STUB( + "vfFo-z1QAKY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEC1EPKS8_) +STUB("vfHBP2-WXcM", sceNpManagerIntGetGameVshToken) +STUB("vfTkyZSghXw", __tsan_atomic128_fetch_or) +STUB("vfV2r97B45A", X509_STORE_add_cert) +STUB("vfXUizQrSRo", _ZN9Inspector30TargetBackendDispatcherHandlerC2Ev) +STUB("vfYHb8KmJig", + _ZN3JSC8DataView6createEON3WTF6RefPtrINS_11ArrayBufferENS1_13DumbPtrTraitsIS3_EEEEjj) +STUB("vfZ67jeCHOU", mono_class_array_element_size) +STUB("vfdVdj1FZqg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEmmEv) +STUB("vffCFgX7T3M", sceFsBfsCheckCleanFlag) +STUB("vfgrlPxJbZk", Java_java_awt_GnmGraphicsDevice_getScreenHeight) +STUB("vfj-qG-ZQx8", _ZNK9Inspector14FrontendRouter17hasRemoteFrontendEv) +STUB("vfjalAPB8ko", _ZN15AbstractStorage15FacebookContentD2Ev) +STUB( + "vfjcDZZ8eBY", + _ZN9Inspector21HeapBackendDispatcherC2ERNS_17BackendDispatcherEPNS_28HeapBackendDispatcherHandlerE) +STUB("vfmUxlocdUY", sceNpManagerIntGetTicketNB) +STUB( + "vfnFtQXSnYA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEED2Ev) +STUB( + "vfo4k6ceDGY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEplEm) +STUB("vfrL8gPlm2Y", sceRudpGetMaxSegmentSize) +STUB("vfsqo2lsOMQ", _ZN3sce7Toolkit2NP25PostInvitationDataRequestC2Ev) +STUB("vfzFZDaFuKU", sceAvSettingGetDetailedHdcpStatus) +STUB("vg+z4S3rshw", _ZN7WebCore9HTMLNames11keytypeAttrE) +STUB("vg-JBVgN8pE", _ZNK3WTF7SecondsmiENS_13MonotonicTimeE) +STUB( + "vg11oqJtMas", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEC2EPS8_) +STUB( + "vgLupZuxUEQ", + _ZN3JSC13RuntimeMethod18getOwnPropertySlotEPNS_8JSObjectEPNS_14JSGlobalObjectENS_12PropertyNameERNS_12PropertySlotE) +STUB("vgTyRFegScw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEED1Ev) +STUB( + "vgWV89SfYJs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEE11get_deleterEv) +STUB("vgWmm4FMVqM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEEC2Ev) +STUB( + "vgZfQqddV8A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE7reserveEi) +STUB("vgcKWwf4kk4", _ZN7WebCore16FrameLoadRequestD2Ev) +STUB("vgcx22BXwqE", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed12SharedVideosEE12deepCopyFromERS7_) +STUB("vgf46AAoa4U", uset_getItem_67) +STUB("vgiKQgxeEj4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEE5resetEPS6_) +STUB("vgjjTExnI5Q", _ZN7WebCore12ChromeClient22setRootFullScreenLayerEPNS_13GraphicsLayerE) +STUB("vgqGmTwyUoU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEC1Ev) +STUB("vgtxLSgXQBc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEC1Ev) +STUB( + "vh1dJwmvCVA", + _ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead15setInvitationIdEPKc) +STUB("vh3aQ+JUpSU", sceAvSettingGetDeviceInfo) +STUB( + "vh4GMSV8rvs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEC1ERKS7_) +STUB( + "vh7VfZtu8-s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEE5resetEPS9_) +STUB("vh7bnvXXn1g", mono_aot_Sce_Vsh_Np_AppLaunchLinkjit_got) +STUB("vh9S93S1eCM", _ZNK7WebCore5Range10cloneRangeEv) +STUB("vh9aGR3ALP0", y1) +STUB("vhBlGxkfit4", WKWebsiteDataStoreConfigurationSetCacheStorageDirectory) +STUB("vhETq-NiqJA", _SceLibcDebugOut) +STUB("vhJR0H0Mb9Q", _ZN3WTF9BitVector8clearAllEv) +STUB("vhMuvhtZZ9w", _ZNK7WebCore5Event8composedEv) +STUB("vhNb5iqkunQ", Java_java_awt_GnmImage_initIDs) +STUB("vhOKW8oKZwc", _ZN7WebCore16VisitedLinkStoreD1Ev) +STUB("vhPKxN6zs+A", _Fpcomp) +STUB("vhScBXNbSU0", Java_java_lang_StrictMath_cos) +STUB("vhXUFXPBbJg", _ZThn136_NK7WebCore16HTMLMediaElement8durationEv) +STUB("vhYYgXJp19o", _ZN7WebCore8SVGNames12keyTimesAttrE) +STUB("vhbvgH7wWiE", _ZN3sce2np9EventFlag4ctorEv) +STUB("vhcrecqZy-k", pthread_multi_np) +STUB( + "vhdho86+4IU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEED1Ev) +STUB("vhi1mRBniyw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEED2Ev) +STUB("vhkGPhHa-K8", mono_aot_Sce_Vsh_Sl2_NativeQueueClientmethod_addresses) +STUB("vhlQXKkQFe0", sceKernelEnablePthreadObjectCheck) +STUB( + "vhmAOnNcTqE", + _ZN9Inspector24NetworkBackendDispatcher15addInterceptionElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("vhnwsUWgvuI", _ZN7WebCore11JSImageData14finishCreationERN3JSC2VME) +STUB("vhp-FrMLRcc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEdeEv) +STUB( + "vhpEFtlyJ44", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setString10EPKc) +STUB("vhrCV8DnLGs", _sceNpAllocatorStrdupImpl) +STUB("vhtcIgZG-Lk", realpath) +STUB("vhv5V-CW1Ds", _ZN3sce7Toolkit2NP18GetWhoLikedRequestC2Ev) +STUB("vi0uz2KDi60", WKPreferencesGetGamepadsEnabled) +STUB("viBI7oUPQlQ", _ZN7WebCore4Page23touchEventRectsForEventERKN3WTF6StringE) +STUB( + "viBnBsFBJCk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE7popBackEv) +STUB("viDiKA1IsE0", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session12Notification18InvitationReceivedEEC1Ev) +STUB("viIZ4QRZU9Q", _ZN7WebCore10TreeWalker10parentNodeEv) +STUB("viNrML1jmY0", mono_aot_System_Xmlplt) +STUB( + "viRU8Rk3vg0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE21intrusive_ptr_sub_refEPSA_) +STUB("viRXSHZYd0c", sceSslClose) +STUB("viTi0fADFbc", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi20ParameterToJoinMatchC1ERS5_) +STUB( + "viUBVDi3pnI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE5beginEv) +STUB( + "viUDmJaqUSw", + _ZN9Inspector15RemoteInspector34updateAutomaticInspectionCandidateEPNS_22RemoteInspectionTargetE) +STUB("viUGxdv-ncg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEED2Ev) +STUB("viVXAwmmYrY", sceNpUniversalDataSystemEventPropertyArraySetInt64) +STUB( + "viYcMt6vRCE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("vidPiWaBav0", mono_get_trampoline_func) +STUB("vigGUgP4l0o", _ZN7WebCore9HTMLNames27disablepictureinpictureAttrE) +STUB("vign+p49lhE", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request7GetFeedC2Ev) +STUB("viiwFMaNamA", strstr) +STUB( + "vilc5plSsv0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEED2Ev) +STUB("vim76aC7ick", _ZN3sce7Toolkit2NP2V210Tournament17OfficialBroadCastC1Ev) +STUB("vimV3uv6Ef0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEC2Ev) +STUB("vire3ERrd2w", mono_aot_Sce_Vsh_WebBrowserunbox_trampoline_addresses) +STUB("vivlRyE8lOE", uprv_decNumberFromInt32_67) +STUB("viw0OkjLHgQ", WKBundlePageIsTrackingRepaints) +STUB( + "vixXOEM0Ejw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEEC2ERSA_) +STUB( + "vj+ZcOiyY98", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEdeEv) +STUB("vj04qzp7uKY", sceNpUtilJsonGetOneChar) +STUB("vj1wM+GCC1g", _ZN7WebCore23HTMLTableSectionElement4rowsEv) +STUB("vj2WUi2LrfE", fscanf_s) +STUB( + "vj4Bmjde1qs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEC1Ev) +STUB( + "vj4Q8Ywp-cQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEC2EPS8_) +STUB("vj6CQGWtEBg", sceNpUniversalDataSystemEventToString) +STUB( + "vjNiDhTlX0Q", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody37comparedLastUpdatedUserAccountIdIsSetEv) +STUB("vjZcyB5cS4g", mono_string_new_len) +STUB("vjjJqCmTcVo", sceM4aacEncFlushWithPriorityEx) +STUB("vjjqXVUcU8w", sceDtsEncCreateEncoder) +STUB("vjl8jLeIG4k", WKPreferencesGetShouldSuppressKeyboardInputDuringProvisionalNavigation) +STUB("vjpOUncQJqM", mono_aot_Sce_Vsh_Lxjit_got) +STUB("vjrRP-QN7VU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEE3getEv) +STUB("vjuXE9+Pj-c", sceCesIso2022StrToUtf16Str) +STUB("vjw99oC+SaU", _ZNK3sce2Np9CppWebApi14SessionManager2V113PlayerSession12getSessionIdEv) +STUB("vjwKTGa21f0", sceNetShowNetstatExForBuffer) +STUB("vjwlDmsGtME", sceNpFreeKernelMemory) +STUB("vjzot7nsFTY", WKPreferencesSetRestrictedHTTPResponseAccess) +STUB( + "vk2tqOoKiLc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEC2Ev) +STUB("vk4wujfGsQs", mono_profiler_install_thread_name) +STUB("vk51jCXVmnY", mono_class_get_byref_type) +STUB("vk71LUV2VVw", _ZN4IPMI4impl11SessionImpl12getClientPidEv) +STUB("vk7MRoekMtc", sceAppInstUtilSwitchConfig) +STUB( + "vk8UmfbjMEY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEppEi) +STUB("vk94fFclz+8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEC2ERKS7_) +STUB( + "vk9HhhwOBgU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "vkAWvo6zxgg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("vkBmwJuOKgY", sceOpusDecDecodeWithPriority) +STUB( + "vkED3xfXKcY", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("vkEu8WAPKCQ", Java_com_sony_bdjstack_core_CoreXletContext_n_1resumeRequest) +STUB("vkF76axbx5g", _ZN3sce7Toolkit2NP9Utilities6FutureI18SceNpTssDataStatusEC2Ev) +STUB("vkFhc8MY8qw", rgctx_fetch_trampoline_rgctx_32) +STUB( + "vkHaQAC+zh0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("vkYRIcGVDC4", rgctx_fetch_trampoline_mrgctx_48) +STUB( + "vkdULYKEyAU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE21intrusive_ptr_sub_refEPS7_) +STUB( + "vkfv-xg9c50", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEE7get_refEv) +STUB("vkiAJSuuZTU", _ZN3NTF15ThreadCondition6signalEv) +STUB("vkjq4GNSnMo", __asan_stack_free_0) +STUB( + "vksPyhJAScc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEED1Ev) +STUB("vkuuLfhnSZI", __cxa_throw) +STUB("vkytkdvu2Rs", mono_profiler_install_appdomain_name) +STUB( + "vl+gGNlwdZU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEneERKS9_) +STUB( + "vl2XG7dtID8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEptEv) +STUB("vl6Ph3ohLng", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersD2Ev) +STUB( + "vl6XhTnf7hs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEC2EPNS2_10LibContextE) +STUB("vl8QdnxNxq4", scePsmRegisterInternalCall) +STUB("vl8WPU-FB8Q", mono_aot_Sce_Vsh_Np_Snsjit_got) +STUB("vlDnnYMKSRM", _ZN3sce7Toolkit2NP2V210Tournament7Request12SearchEventsD2Ev) +STUB("vlFgEMZJkMI", _ZN12video_parser5vpcom8datetime8DateTime24ConvertDateTimeToRtcTickERS2_) +STUB( + "vlG6IkQkc0s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEE3getEv) +STUB("vlGsIsU6PU0", _ZN7WebCore26UserTypingGestureIndicatorC1ERNS_5FrameE) +STUB("vlJgDNWp6EM", _ZN9Inspector32DatabaseBackendDispatcherHandler18ExecuteSQLCallbackD1Ev) +STUB( + "vlPdZ1N8fbg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "vlWvhK1SNvI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE6isBusyEv) +STUB("vlb49C4p-Nw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEaSERS7_) +STUB("vlbD17iIrEM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEED1Ev) +STUB("vldKDlc5n+U", mono_image_get_table_info) +STUB("vlhKurmO2dM", _ZN3sce3Xml6StringaSERKS1_) +STUB("vlhN1cAt9VA", _ZN7WebCore10XLinkNames4initEv) +STUB("vlphmbz43Oo", _ZN7WebCore8Document13createElementERKNS_13QualifiedNameEb) +STUB("vm-GpchQDfQ", rgctx_fetch_trampoline_mrgctx_11) +STUB("vm2V6pGIJBo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEC1Ev) +STUB("vm6Neuz4T+0", uloc_setKeywordValue_59) +STUB( + "vm8TrICcea0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEC2EPNS2_10LibContextE) +STUB( + "vmAexuhEilI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE21intrusive_ptr_add_refEPS9_) +STUB("vmEA+inNCQI", udat_applyPattern_67) +STUB( + "vmFhubPKafg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEEdeEv) +STUB( + "vmGZt1y-MQc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEppEi) +STUB("vmNIN9pyMSY", _ZN7WebCore17JSDOMRectReadOnly6s_infoE) +STUB("vmUlV489bmA", _ZN3sce7Toolkit2NP2V28Commerce18ServiceEntitlementD2Ev) +STUB( + "vmY+Ag5zf08", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEEaSERKSA_) +STUB( + "vmdfSuybiDU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("vmeEa2lMfgg", + _ZN7WebCore8Settings48setICECandidateFilteringEnabledInspectorOverrideEN3WTF8OptionalIbEE) +STUB("vmfiJPIqX00", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_13TusDataOutputEE17getAdditionalInfoEv) +STUB("vmt3ZOlQu3o", _ZN3sce2np10Cancelable16CleanupSubCancelEPS1_) +STUB("vmxJDEM3utA", il2cpp_exception_from_name_msg) +STUB("vmyNiUtPbFw", Java_com_sony_bdjstack_system_BDJModule_getCurrentTitle) +STUB( + "vn3f6-3yeLw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEptEv) +STUB( + "vn4Vs1azxXQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE5emptyEv) +STUB("vn5B1QygBJM", PEM_read_bio_PrivateKey) +STUB("vnAsWGibAKA", u_strFromJavaModifiedUTF8WithSub_67) +STUB("vnBo2BIrkYI", _ZN7WebCore21JSRemoteDOMWindowBaseD1Ev) +STUB("vnENYAh8TbM", MvpHttpSetRedirectCb) +STUB("vnF2BMqw4o0", _ZN3sce7Toolkit2NP2V28Presence16PlatformPresenceD2Ev) +STUB("vnHLgood2LA", sceBgftServiceIntDownloadFindActiveGameAndGameAcTask) +STUB("vnHq+jcDKBM", cairo_region_destroy) +STUB("vnKYv2NuO5U", sceKernelWriteUnmapToPrtCommand) +STUB("vnLqlsltLJs", _ZN7WebCore14XMLHttpRequestD0Ev) +STUB("vnN+F-UFxBw", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17SetGameDataResultEEC1Ev) +STUB("vnOHXW08CF8", _ZN12video_parser5vpcom11Utf16ToUtf8ERKSbIwSt11char_traitsIwESaIwEEPSs) +STUB("vnQjcL0T0W4", sceAvControlSetAudioMuteForShutdown) +STUB("vnZZHHKamgw", _ZN3sce2np14HttpConnectionD0Ev) +STUB( + "vnc8KbAUDVY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEppEi) +STUB( + "vnhLe4qBUI0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE5clearEv) +STUB("vnp7yntvlPY", sceFaceTrackerSearchTarget) +STUB( + "vnpT7JTtr8g", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE5beginEv) +STUB( + "vnsy7vxfH74", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEED1Ev) +STUB("vntJzlBc5pE", _GLOBAL__I_000101) +STUB("vnuz9fv1Bcg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEEC1EPNS2_10LibContextE) +STUB( + "vnz5qqFZXZg", + _ZN7WebCore28throwArgumentMustBeEnumErrorERN3JSC14JSGlobalObjectERNS0_10ThrowScopeEjPKcS6_S6_S6_) +STUB( + "vo0B+ILvFuc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEE3getEv) +STUB("vo2FiTXAekk", _ZN4IPMI6Server6ConfigC1Ev) +STUB("vo44gbqDKr4", _ZN7WebCore9DOMWindow5closeEv) +STUB( + "vo9Y4reCG7I", + _ZN3sce2Np9CppWebApi14SessionManager2V125MatchmakingForReadFactory7destroyEPNS3_18MatchmakingForReadE) +STUB("voAQW45oKuo", sceSaveDataIsDeletingUsbDb) +STUB( + "voD+iDaSxFk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEneERKS9_) +STUB("voGUWdA8Dr8", _ZN7WebCore20FocusNavigationScope7scopeOfERNS_4NodeE) +STUB("voI4gM9SvHE", mono_aot_Sce_Vsh_Gls_NativeCalljit_got) +STUB("voLOq3g1XTI", _ZNK7WebCore12SettingsBase15fixedFontFamilyE11UScriptCode) +STUB("voOYmhF1vsQ", sceRegMgrToolGetEntryCnt) +STUB( + "voPA4a6MlgI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEmmEi) +STUB("voTNGBrrKl0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEdeEv) +STUB( + "voTyzW0zH1M", + _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities8haslimitEv) +STUB("voU-Z78vUsU", _ZNSt9basic_iosIwSt11char_traitsIwEE8setstateEj) +STUB("voUp4sJ5mfU", WKContextSetHistoryClient) +STUB( + "voYBe5+3mYY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "voaPtmT6M1s", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEC2Ev) +STUB( + "vogHqjoAFgA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEED1Ev) +STUB("vogkh2726ZQ", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEED1Ev) +STUB("vogma5QshU4", _ZN4IPMI4impl10ClientImpl7connectEPKvmPi) +STUB("vokkJ0aDf54", sceUsbdGetIsoPacketBuffer) +STUB( + "vomFRiKSeNs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE7popBackEv) +STUB("vomdcuEXaVs", _ZN3sce2np8JsonBoolC1EP14SceNpAllocator) +STUB("vorbJH09wBc", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEEdeEv) +STUB( + "vory-+xosb8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEptEv) +STUB( + "voys+PSXXlQ", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser8haslimitEv) +STUB("vp-6QnC995U", _ZZSt9MakefacetISt10moneypunctIwLb0EESt8_LocinfoERT_T0_E3buf) +STUB("vp2WfOU+CHI", rgctx_fetch_trampoline_mrgctx_116) +STUB( + "vp55ui-m5Sk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "vp8XwrxAoVQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEE11release_refEv) +STUB("vp9utKGSdLA", _ZN7WebCore11DisplayList8FillPathD0Ev) +STUB("vpA-xXvhfeY", sceG2PDialogGetResult) +STUB("vpD3oDcNC7s", _ZN7WebCore11MediaPlayer22setPrivateBrowsingModeEb) +STUB( + "vpEulkx5WAw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("vpOkYyu4J8A", _ZN3JSC17MarkingConstraintD1Ev) +STUB("vpQ1E-1oDkg", ucnvsel_openFromSerialized_67) +STUB("vpTHmA6Knvg", sceSysmoduleUnloadModuleByNameInternal) +STUB("vpXNnpnL1RU", delegate_virtual_invoke_imt_23) +STUB( + "vpY0dk4KrLk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "vpYbxiMA0YY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEEC2EPS7_PNS2_10LibContextE) +STUB("vpe0S3x700Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEEC2EPNS2_10LibContextE) +STUB( + "vpen+AiTSKY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE5emptyEv) +STUB( + "vpiGQCM4KAo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE5clearEv) +STUB( + "vpjk8V31-+U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEC2EPKS8_) +STUB( + "vpkkVwCPaxE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEptEv) +STUB("vpmyHoYwUa4", g_malloc0) +STUB("vpo3SbGFuEk", __sys_dynlib_get_list_for_libdbg) +STUB("vpsLLotiSUg", sceVrTrackerSetLEDBrightness) +STUB("vq1bwQVjgTI", + _ZN3JSC14throwTypeErrorEPNS_14JSGlobalObjectERNS_10ThrowScopeEN3WTF12ASCIILiteralE) +STUB("vq8FBoJCd7c", WKPageSupportsTextZoom) +STUB( + "vq8XTrh-S5U", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanity13isInitializedEv) +STUB("vq8ubGb2XjQ", sceShellCoreUtilGetTitleWorkaroundFileString) +STUB("vqA9bl6WsF0", _sceNpAllocatorStrndup) +STUB("vqGYLPaU2iM", fuse_exited) +STUB("vqHjAaWVhsA", Java_java_io_UnixFileSystem_rename0) +STUB( + "vqM513s-YZM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("vqMvoe76W6k", SystemServiceParamGetString) +STUB("vqRUqYVEoI0", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEED2Ev) +STUB( + "vqRiOXIt670", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEE5resetEPS6_) +STUB("vqTAC3fu1io", _ZNK7WebCore8Position25computeNodeBeforePositionEv) +STUB("vqWNB3q8QKg", mono_debug_set_symbol_table) +STUB("vqX-PYS3MPc", FcPatternAddLangSet) +STUB("vqcDp05KbzU", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V112TicketStatusEEC1Ev) +STUB("vqcgtB9o53s", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEC2Ev) +STUB( + "vqd1JePh86M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("vqehMw479K8", _ZN12video_parser13cVideoMetaVWG15setVideoContentEPNS_13iVideoContentE) +STUB("vqekW3s-eFg", _ZN3sce2np10CancelableC2Ev) +STUB("vqfNc8gKX7M", ures_getVersionByKey) +STUB("vqglGWumI7U", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEEdeEv) +STUB( + "vqiDk0TOrZQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEC2Ev) +STUB( + "vqjxnHncfY0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE7popBackEv) +STUB( + "vqrwsEUjdAE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEC2Ev) +STUB("vqs0LwSmn3c", mono_assemblies_cleanup) +STUB("vqtytrxgLMs", iswspace) +STUB("vquYrvImjPg", sceLncUtilForceKillApp) +STUB("vqxIrzBTLa8", _ZN7WebCore9HTMLNames25onaccessibleincrementAttrE) +STUB( + "vqxPVD38IiI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE6resizeEj) +STUB("vqxvSBNXwkA", sceFsGschedCtl) +STUB( + "vr0wC2nuUFk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE5beginEv) +STUB("vr1jqtKxO80", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEC2ERKS7_) +STUB( + "vr5JMsRP2Ag", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEED1Ev) +STUB("vr6DMbEWSWM", addProhibitionFlagListener) +STUB("vr9PZuHnPz0", _ZN3sce7Toolkit2NP2V26Friend6FriendC1Ev) +STUB("vrAa-QIUW8c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116JoinableUserTypeEEC2EPS6_) +STUB("vrB7PDQyxWY", terminateWave_Jp) +STUB("vrBLBaiUr5g", eglDestroyContext) +STUB("vrFU0cMVEBs", _ZN4Manx10FontStream7destroyEPv) +STUB("vrM02A5Gy1M", sceNpWebApiRegisterExtdPushEventCallback) +STUB("vrM9+g-DQVY", sceClKernelDeleteEventFlag) +STUB( + "vrQ6foG0Enk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB("vrQXYRo1Gwk", sceUsbdOpenDeviceWithVidPid) +STUB( + "vrS76t0Vkf4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEEC2Ev) +STUB("vrZNehbMgsU", FcFontSetDestroy) +STUB("vrZgN7nMcGM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE3endEv) +STUB("vrbQ4m+VRrU", _ZN7WebCore9makeRangeERKNS_15VisiblePositionES2_) +STUB("vrcfgNgTsG0", _ZNK7WebCore17FrameLoaderClient32isServiceWorkerFrameLoaderClientEv) +STUB( + "vreXlMwxs6w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE8copyFromERKS9_) +STUB( + "vrj-AEnY6FY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEED2Ev) +STUB("vrjUHiaZXZk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEaSERS7_) +STUB("vrnMhgHNe44", _ZN3sce7Toolkit2NP2V27Ranking12FriendsRanks8MIN_PCIDE) +STUB("vrqGZr3Opv8", _ZN7WebCorelsERN3WTF10TextStreamENS_24ScrollableAreaParametersE) +STUB("vrre3KW6OPg", sceNpManagerIntGetPlusMemberType) +STUB("vrsBTWHRWeE", _ZN7CoreIPC10Connection11sendMessageEN3WTF10PassOwnPtrINS_14MessageEncoderEEEj) +STUB( + "vrsJ4BTYSyY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEC2EPNS2_10LibContextE) +STUB( + "vruZjP6q0kc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEE7add_refEv) +STUB("vs+KPSoE7AM", sceKernelDeleteBudget) +STUB( + "vs2SuyIZid4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEneERKS9_) +STUB( + "vs2qoQicpfI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEED2Ev) +STUB( + "vs5VwPgD+l8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEEdeEv) +STUB("vsFmK6kctfg", uprv_decNumberMax_67) +STUB("vsHzA+l+WEs", mono_aot_Mono_Data_Tdsunbox_trampoline_addresses) +STUB("vsK6LzRtRLI", basename_r) +STUB("vsLSwMwC8LU", mono_aot_Sce_Vsh_DiscPlayerunbox_trampolines) +STUB("vsOZMpVlVUo", _ZN2GK9PlayerPSN11shutdownLibEv) +STUB( + "vsRsx8fkyoQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEixEm) +STUB("vsT-G8rVr3U", _ZNK3WTF9MediaTime9timeValueEv) +STUB("vsTIMSFJu8A", _ZN7WebCore16scriptNameToCodeERKN3WTF6StringE) +STUB( + "vsTcchbB4Ng", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "vsU9t+mhl9s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEC1Ev) +STUB( + "vsUt59MVKB8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEdeEv) +STUB( + "vsWJSzmqnNo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEEC2ERSA_) +STUB("vsa5zadYbRA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE8capacityEv) +STUB("vsiIXtrW0ng", _ZN23sceMetadataReaderWriter8MetadataC2Ev) +STUB("vsnpgQEzvpw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEE7add_refEv) +STUB("vsq87mW6H9Q", _ZNK3sce7Toolkit2NP15AppSTLAllocatorI13SceNpOnlineIdE8max_sizeEv) +STUB("vssBwvYvBgY", ubidi_isJoinControl_67) +STUB( + "vstSWF2rPLE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("vsvqZ5etggk", WKPreferencesGetTabToLinksEnabled) +STUB("vswjIkOXbuU", scePerfTraceIoControllerStart) +STUB( + "vsx29tsSDrA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEED2Ev) +STUB( + "vsxgHNLYryA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEE3getEv) +STUB( + "vszOAtv7yd0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEmmEv) +STUB("vt+EegMao3E", _ZN3JSC2VM23stringIteratorSpaceSlowEv) +STUB("vt3ajvJVk90", initInetAddressIDs) +STUB("vt5MavQkAq0", ztrans_clone_67) +STUB( + "vt6A80t7+6o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEE3getEv) +STUB("vtBruB+RWUw", sceDtcpIpInitAuthAsync) +STUB("vtCXhxDeosw", sceGnmValidateSubmitAndFlipCommandBuffers) +STUB( + "vtD7scRqfK0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("vtHRQyWv+sw", JSObjectMake) +STUB("vtHb71Bu0WA", _ZN7WebCore12NodeIterator8nextNodeEv) +STUB("vtHd00f0O50", sceFiosDirectoryExists) +STUB("vtJllvqhN2I", _ZN7WebCore23MediaQueryParserContextC1ERKNS_8DocumentE) +STUB( + "vtK+fvbxZeo", + _ZZSt9MakefacetISt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEESt8_LocinfoERT_T0_E3buf) +STUB( + "vtL-VxXOi+U", + _ZN9Inspector24RuntimeBackendDispatcher26disableControlFlowProfilerElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("vtMqGmlyyJI", mono_aot_Sce_Vsh_UserServiceWrapperunbox_trampolines_end) +STUB("vtO0WQZ9QlA", _ZN7WebCore8SVGNames17font_face_nameTagE) +STUB("vtPV6pXhGzs", ln2LO) +STUB( + "vtVMpp29bkE", + _ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBodyC1EPNS1_6Common10LibContextE) +STUB("vtZ7ZWBa0FQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEaSERS7_) +STUB("vtZIn9HtYbs", sceSocialScreenCloseSeparateMode) +STUB("vtee7NQmNCY", __tens_D2A) +STUB("vtgjNg+r9gs", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_15TrophyGroupInfoEE17getAdditionalInfoEv) +STUB( + "vtjezVIyVFw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEixEm) +STUB( + "vtn0b0w2e4Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEEC1Ev) +STUB( + "vtu9wPsgijQ", + _ZN3sce2Np9CppWebApi7Matches2V131ResponseTeamMemberResultFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_24ResponseTeamMemberResultEEE) +STUB("vtxQvXlNvHk", _ZN9Inspector26DatabaseFrontendDispatchernwEmPv) +STUB("vtxf9L4-SPA", _ZN3sce3pss4core8graphics15DirectTexture2DC2EiiNS2_11PixelFormatEPv) +STUB( + "vty0BFt13OM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEppEi) +STUB( + "vty7dMmUqOE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("vu0B+BGlol4", _ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED2Ev) +STUB("vu4W4iqtB8w", _ZN7WebCore26IdentityTransformOperationC1Ev) +STUB("vuAHSJGCTmw", _ZN7WebCore19JSAnimationTimeline9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "vuEwc1lpJ-U", + _ZN3sce7Toolkit2NP14GameCustomData9Interface11getGameDataEPKNS1_29GameCustomDataGameDataRequestEPNS1_9Utilities6FutureINS1_17MessageAttachmentEEEb) +STUB( + "vuFpfLd6dBU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEED2Ev) +STUB( + "vuHQpu36jdA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEED1Ev) +STUB( + "vuIVD1hJMz8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("vuNSwp-c4Aw", _ZN7WebCore18PlatformTimeRangesnwEmPv) +STUB("vuSXe69VILM", sceAgcDcbGetLodStats) +STUB("vuSwNoBWY0Y", _ZNK7WebCore16HTMLInputElement15isDateTimeFieldEv) +STUB( + "vuYWz9sCgyk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("vuZ2MzLx7cE", _ZN12video_parser17cVideoProfilerMp420isCompatibleBrandVWGEj) +STUB("vuae5JPNt9A", sceKernelAddAmprSystemEvent) +STUB("vubFP0T6MP0", sceNgs2SystemEnumHandles) +STUB("vubR4LgD6Co", _ZNK7WebCore7IntRect8containsERKS0_) +STUB( + "vucP6X7J6VU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE4sizeEv) +STUB("vueMJ9oUwkc", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V112OnlineStatusEEC1Ev) +STUB("vukVSPgromM", _ZN7WebCore8DOMTimerD1Ev) +STUB("vulSgVsNPc8", + _ZN3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSessionC2EPNS1_6Common10LibContextE) +STUB("vup0rbTEOPU", sceNpManagerIntBindCompleted) +STUB("vuuFugcw5ss", FTA_Export_Module_psnames) +STUB( + "vuuhLVMge8g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE7popBackEv) +STUB( + "vv+7DNbY9kw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEEC2EPS6_PNS2_10LibContextE) +STUB( + "vv-Q0+mtyAQ", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence12Notification14PresenceUpdateEE12deepCopyFromERS8_) +STUB("vv1C43NDF0c", ucol_openFromShortString_67) +STUB( + "vv3qtk91VLQ", + _ZN3JSC8JSObject9getMethodEPNS_9ExecStateERNS_8CallDataERNS_8CallTypeERKNS_10IdentifierERKN3WTF6StringE) +STUB("vv6g8zoanL4", sceNetCtlClearEventForLibIpcInt) +STUB( + "vv6h5j-aHkE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEE5resetEPS9_) +STUB("vv8XlwrbcpU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEdeEv) +STUB("vv9llKM3Fb4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEED2Ev) +STUB("vv9n14vQtmo", sceSystemServiceUsbStorageInit) +STUB( + "vvA7HtdtWnY", + _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE13get_monthnameES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm) +STUB("vvAH9+4ZHz0", WKBundleClearAllDatabases) +STUB("vvBFlIe+6G4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEE5resetEPS5_) +STUB("vvC9W8aejhg", _ZN7WebCore13ContainerNode22getElementsByTagNameNSERKN3WTF10AtomStringES4_) +STUB( + "vvEQDiTXONg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE7reserveEi) +STUB( + "vvHZyHFY+-U", + _ZN15AbstractStorage15HttpTransaction15SendHttpRequestERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEiRKSt3mapIS5_S5_St4lessIS5_ESaISt4pairIS6_S5_EEEm) +STUB("vvNLZvvxBmE", _ZN7WebCore6RegionC1EOS0_) +STUB( + "vvQIL6kUy8g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEC1EPS8_) +STUB("vvV94Hanzbg", + _ZN3sce2Np9CppWebApi7Matches2V128RequestTemporaryMatchResults8fromJsonERKNS_4Json5ValueE) +STUB("vvXa3gMSPPs", _ZN7WebCore9HTMLNames10objectAttrE) +STUB("vvY8hoSqgkg", _recvDeciPacket) +STUB("vvjtS0L3f6g", sceCesRefersUcsProfileCp858) +STUB("vvlbLKHioMM", WKPreferencesGetDownloadAttributeEnabled) +STUB("vvo9XxrVac0", __tsan_read_range) +STUB( + "vvomojuUv1I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEC2Ev) +STUB( + "vvr5oBK30Oc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEppEi) +STUB( + "vvwFM5P4jLs", + _ZN9Inspector23CanvasBackendDispatcher14resolveContextElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "vvybz2VwXos", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("vvzWO-DvG1s", sceNpWebApi2DeleteRequest) +STUB("vw0sBeeULiY", _ZN9Inspector21DOMFrontendDispatcher21childNodeCountUpdatedEii) +STUB( + "vw99DBQArNI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEEC1Ev) +STUB("vw9CJc+EUsE", _ZNK7WebCore3URL30stringCenterEllipsizedToLengthEj) +STUB("vwFaWsNoiQw", WKFrameIsDisplayingMarkupDocument) +STUB( + "vwHiSIpnJ7w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEED1Ev) +STUB("vwMx2NhWdLw", _ZNSt7codecvtIDic9_MbstatetED0Ev) +STUB( + "vwPvprtknm0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "vwVqW6y6Vl8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("vwXzo+jfK3E", _ZN3sce7Toolkit2NP2V27Session11InvitationsaSERKS4_) +STUB("vwYmQUAC9vY", _ZN7WebCore11MathMLNames11largeopAttrE) +STUB("vwb5ITvdTRQ", _ZN3sce7Toolkit2NP21SearchSessionsRequestC2Ev) +STUB( + "vwfPbL86F2k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEaSERSA_) +STUB( + "vwiHVosK3jc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEppEv) +STUB("vwm9cq-niz4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEEixEm) +STUB("vwnvJeGAzoQ", fuse_fs_chown) +STUB( + "vwp49cqgJKg", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeaders6createEPNS1_6Common10LibContextERNS6_12IntrusivePtrIS5_EEl) +STUB("vwtVpHQKelI", sceVideoOutDeleteOutputModeEvent) +STUB("vwuV+1OuYEQ", restore_context) +STUB( + "vwyDJS+eV2M", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEEiRNS2_10LibContextEPT_m) +STUB("vx++1-xNUUU", uprv_decNumberToEngString_67) +STUB( + "vx04U-ES5hc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEE11release_refEv) +STUB( + "vx087261QG4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEC1EPKS9_) +STUB("vx4I6uMoiww", + _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody17setNpServiceLabelERKj) +STUB("vx5AOtDXs7I", JVM_LoadLibrary) +STUB( + "vx5jqotHp1c", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE5emptyEv) +STUB("vx9MQYicBVQ", sceCamera2SetAutoExposureGain) +STUB("vxC58+DRk-U", sceAmprMeasureCommandSizeWriteAddressFromCounterPairOnCompletion) +STUB("vxG9gVozU1I", mono_aot_Mono_CSharpunwind_info) +STUB( + "vxGoubeNoNQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEED1Ev) +STUB( + "vxLxSsCqStM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEmmEv) +STUB( + "vxN9vAjnNok", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13boolean3IsSetEv) +STUB("vxgqrJxDPHo", sinl) +STUB( + "vxmPtMiAgAA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEEC1ERSA_) +STUB("vxnQI1naSHA", sceDataTransferTargetRequestAuth) +STUB( + "vxqKbMCrDnI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("vxqe9CJNFYE", _ZN7WebCore8SVGNames6fxAttrE) +STUB( + "vxwSEWT8zKQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEE3getEv) +STUB("vxx2FqLL02Y", _ZN9Inspector24TargetFrontendDispatcherC1ERNS_14FrontendRouterE) +STUB("vy-0DOQobkU", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable11slotIdIsSetEv) +STUB("vy-1N0ya9WE", WKPreferencesSetDisplayContentsEnabled) +STUB("vy2QVV5FG+w", _ZN3sce7Toolkit2NP9Interface13userLoggedOutEi) +STUB("vy7eoV5ZwXQ", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V318PsnWebErrorWrapper8getErrorEv) +STUB( + "vy8d4oLVhvQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEED2Ev) +STUB("vyGNmiXdIX0", GCC_except_table0) +STUB("vyLotuB6AS4", _Cnd_do_broadcast_at_thread_exit) +STUB("vyOS18Unsuw", _ZNK7WebCore16DocumentTimeline17animationIntervalEv) +STUB("vyOiJyvWOik", WKCookieManagerStartObservingCookieChanges) +STUB("vyOyAdtvQ0c", uldn_getContext_67) +STUB( + "vyPaY3RukLc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEE11release_refEv) +STUB( + "vyPbpu9Fh-A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "vyQypkSkhos", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB("vySBdUuFMaI", _ZN3sce2Np9CppWebApi7Matches2V119RequestMatchResultsD1Ev) +STUB( + "vyacpUcrtrI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEEcvbEv) +STUB("vycUuYWwilI", _ZN3sce7Toolkit2NP2V24Core7Request10TermParamsD1Ev) +STUB( + "vyeeiHeesC8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE5beginEv) +STUB( + "vyg9vDLa+ic", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEEaSERKSA_) +STUB("vyh-T6sMqnw", sceAudioInSetCompressorPreGain) +STUB("vyjdThnQfQQ", sceRazorCpuTagBuffer) +STUB( + "vyoZSjq7qE4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEC2Ev) +STUB("vypUd4KfkRQ", _ZN3sce2Np9CppWebApi11Matchmaking2V19AttributeD2Ev) +STUB("vyqQpWI+O48", _ZNSt14numeric_limitsItE9is_signedE) +STUB( + "vyqYI2ox9EA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEmmEv) +STUB( + "vysEG577lAY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE8pushBackERKS8_) +STUB( + "vysMqbStXIo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEC1EPNS2_10LibContextE) +STUB( + "vysijnZfDu4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEEaSERKSA_) +STUB("vytOYzDyTq0", sceOpusSilkEncEncodeWithPriorityAndTimeout) +STUB("vyw+ZSJy6I0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEEneERKS7_) +STUB( + "vywdbaNLYRA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEdeEv) +STUB("vz+ivKCnVfo", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_waitMediaPresentation) +STUB("vz+pg2zdopI", sceKernelGetEventUserData) +STUB("vz51DOc4a6s", WKPreferencesSetBackspaceKeyNavigationEnabled) +STUB( + "vz7hud5xS+k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "vzB+gD2pqRY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEneERKS9_) +STUB("vzCxCYaLWdw", _ZN3sce3pss4core9threading4Cond4WaitEi) +STUB( + "vzDf4jlkntU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEE5resetEPS6_) +STUB("vzHs3C8lWJk", sceFontCloseFont) +STUB("vzKNY2nY7Jk", _ZNK3sce2Np9CppWebApi6Common6VectorImE4sizeEv) +STUB("vzMEkwBQciM", sceHmdReprojectionStop) +STUB("vzRcaojx-Ow", _ZN3JSC7Symbols37regExpStringIteratorStringPrivateNameE) +STUB("vzSsREBYrsQ", _ZN3JSC11ArrayBuffer9tryCreateEPKvj) +STUB("vzWoetyaUuA", sceShellCoreUtilIsTemperatureDanger) +STUB("vzXww2IsYTM", _ZN3sce2Np9CppWebApi6Common10LibContext14getMemoryStatsERNS3_11MemoryStatsE) +STUB("vzeiWTCsQ4c", _ZN7WebCore14cookiesEnabledERKNS_8DocumentE) +STUB("vzh0qoLIEuo", _ZNSt10bad_typeidD1Ev) +STUB("vzjoFGeH3Bw", u_hasBinaryProperty_59) +STUB("vzjy4m03hos", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEC1ERKS7_) +STUB("vzn-L+Pa+jc", NET_MapSocketOption) +STUB("vzn9i64fOoI", mono_aot_Sce_Vsh_Np_Snsmethod_addresses) +STUB( + "vzqBsbLv4aY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEED1Ev) +STUB("vzv39zHU5fE", _Getint.flit) +STUB("vzvznsnpjKM", sceAudioOut2DisableChat) +STUB("vzxq98EYhBc", _ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetail15unsetMiddleNameEv) +STUB( + "vzzKlg8mYE8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEptEv) +STUB( + "vzzsCMCvkVA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEC1ERKS8_) +STUB( + "w+-O6Zjhois", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEC2ERKS7_) +STUB( + "w+0zYfh+Q4Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "w+5LeYpJmm0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB("w+BDXaxOgHc", mono_g_hash_table_foreach_remove) +STUB("w+C8QXqZKSw", _ZN3sce2np7HttpUriD0Ev) +STUB( + "w+IDZZy2FI8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEC1EPS6_PNS2_10LibContextE) +STUB( + "w+IP0HxzLrA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEeqERKS9_) +STUB("w+KD02icC2Q", _ZN7WebCore18JSHTMLMediaElement6s_infoE) +STUB("w+Ln0G-V+0s", mono_gc_register_root_wbarrier) +STUB("w+T7oawE1mg", + _ZNK9Inspector15RemoteInspector16listingForTargetERKNS_24RemoteControllableTargetE) +STUB("w+VAG2k831M", _ZN3sce7Toolkit2NP2V27Ranking12RangeOfRanks8MIN_PCIDE) +STUB("w+aChZeGKxo", X509_EXTENSION_get_critical) +STUB("w+aYuzzk7Pk", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanityaSERS5_) +STUB("w+cra2P9A1c", mono_btls_x509_name_print_bio) +STUB("w+iqFw6Gxcc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEED2Ev) +STUB( + "w+v1fHraAvs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE7reserveEi) +STUB("w+zq7XO9OxE", _ZN3sce7Toolkit2NP2V28Matching7Request17KickOutRoomMemberD1Ev) +STUB("w-+WNw8yu+w", _ZN7WebCore9HTMLNames7spanTagE) +STUB("w-+wrYo+NLE", _ZN7WebCore8Document19accessSVGExtensionsEv) +STUB( + "w-AeCczg-IY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE7popBackEv) +STUB("w-AryX51ObA", fabsl) +STUB("w-BvXF4O6xo", llround) +STUB("w-DRBxwE6As", uhash_iremove_67) +STUB("w-E4CYjDhgk", _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile12getLanguagesEv) +STUB("w-HImrt0ifw", mono_aot_Sce_Vsh_SysUtilWrapperplt_end) +STUB( + "w-IAYSaRmvQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEC2Ev) +STUB( + "w-IXTE8QpP8", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12string6IsSetEv) +STUB("w-J2Q4evZwQ", _ZN9Inspector22PageFrontendDispatcherC1ERNS_14FrontendRouterE) +STUB("w-M4Kng47xs", _ZN7WebCore18PluginInfoProviderD2Ev) +STUB( + "w-P3u2x2g3E", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE11getResponseERSB_) +STUB("w-YQeV7ysVc", _ZNK3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap14accountIdIsSetEv) +STUB("w-c7U0MW2KY", sceNpTusGetMultiUserDataStatusForCrossSaveVUser) +STUB("w-g3dpRum5w", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEcvbEv) +STUB("w-jl-X+z1AA", mono_aot_Sce_Vsh_ShellCoreUtilWrapperjit_got) +STUB("w-lfhWHjbiY", rgctx_fetch_trampoline_mrgctx_58_p) +STUB("w-pm2E3zz6M", WKBundleFrameDisableThrottlingByTime) +STUB("w-pn1iTYQo0", _ZNK3JSC8FreeList4dumpERN3WTF11PrintStreamE) +STUB( + "w-rf4D2cUWM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEEeqERKS7_) +STUB( + "w-u3i2dblmI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE21intrusive_ptr_add_refEPS9_) +STUB("w-zWDsN+0bQ", _ZN4IPMI4impl10ServerImplC1Ev) +STUB("w-zmfqesLSk", _ZN3WTF11Persistence7Encoder6encodeEj) +STUB("w00D0ddSQLA", _ZN3JSC20failNextNewCodeBlockEPNS_14JSGlobalObjectE) +STUB("w01JUEpJMx8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEcvbEv) +STUB("w02zjBeV+n4", sceVshAvcapSelect) +STUB("w03a1pfG8oM", EVP_CipherUpdate) +STUB("w07dR+ym+z8", WKBundleNodeHandleSetHTMLInputElementAutoFillButtonEnabled) +STUB( + "w07lGYtLjy0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("w07ozLZGz1c", _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest17unsetMatchResultsEv) +STUB("w0EL1OPQG+A", + _ZN7WebCore9unionRectERKN3WTF6VectorINS_9FloatRectELm0ENS0_15CrashOnOverflowELm16EEE) +STUB( + "w0HOMHeDucc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEE11get_deleterEv) +STUB( + "w0JxbltmZo8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE5beginEv) +STUB("w0KIjnDwdP4", _ZNK7WebCore37BasicComponentTransferFilterOperation5cloneEv) +STUB( + "w0Kl5dQun8E", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("w0LHtIi60Sk", ucnv_getAliases) +STUB("w0P0WAfYXJQ", _ZN3WTF11jsValueFreeEPv) +STUB("w0VlZyYxb5Y", __asan_exp_store1_noabort) +STUB( + "w0f1w5yrJDU", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("w0hI3xsK-hc", sceFontFtSupportWinFonts) +STUB("w0hLuNarQxY", sceVideoOutConfigureOutput) +STUB("w0iYKyr2494", mono_aot_ReactNative_Debug_DevSupportjit_got) +STUB( + "w0lR0I6KXoE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEE21intrusive_ptr_add_refEPS7_) +STUB("w0pV8P7Kwa8", locale_getKeywordsStart_67) +STUB("w0sIuwQkQIQ", _ZN3sce7Toolkit2NP2V210Tournament13OneVsOneMatchC1ERKS4_) +STUB( + "w0v9ua1oI8M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEEC1ERSA_) +STUB( + "w0wpHYTi6EA", + _ZN7WebCore24TemporarySelectionChangeC2ERNS_8DocumentEN3WTF8OptionalINS_16VisibleSelectionEEENS3_9OptionSetINS_24TemporarySelectionOptionEEE) +STUB( + "w0y-w2XHpzo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEE11release_refEv) +STUB("w1+L-27nYas", sceSslDisableOptionInternalInsecure) +STUB("w11G58-u4p8", + _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE5_FfmtEPccNSt5_IosbIiE9_FmtflagsE) +STUB("w13Ojm7ON9o", sceFiosFHOpenWithModeSync) +STUB("w178uGYbIJs", _Xp_subx) +STUB( + "w186vLuIoeQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEppEv) +STUB( + "w18IlkZ-9eE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE21intrusive_ptr_sub_refEPS9_) +STUB("w18rHzRZh8k", _ZN3sce2Np9CppWebApi13InGameCatalog2V59ContainerC2EPNS1_6Common10LibContextE) +STUB("w18yIZcPEuE", _ZN7WebCore4Page16userAgentChangedEv) +STUB( + "w1Aw4IaC4FA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEC2Ev) +STUB("w1C462s+amc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEC2ERKS7_) +STUB("w1CdZU2Srwo", _ZNK7WebCore16HTMLInputElement6isTextEv) +STUB( + "w1CpFksS6GQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEdeEv) +STUB( + "w1ILDngAKzU", + _ZN3sce2Np9CppWebApi14SessionManager2V136GetFriendsPlayerSessionsResponseBody10setFriendsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_6FriendEEEEE) +STUB("w1JXzWCP5UM", _ZN3WTF3URL14setHostAndPortENS_10StringViewE) +STUB("w1K+MDlGq0A", _ZN7WebCore11DisplayList15FillRoundedRectD2Ev) +STUB("w1KFAHVqpaU", sceAgcCbBranch) +STUB( + "w1M-utahFaQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEED1Ev) +STUB("w1NxRBQqfmQ", printf_s) +STUB( + "w1YJKJjxrTU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEdeEv) +STUB("w1bUtZYR1Y4", _ZN9Inspector14InjectedScriptC1ERKS0_) +STUB("w1cVjNKnISM", + _ZN9Inspector17BackendDispatcher8getArrayEPN3WTF8JSONImpl6ObjectERKNS1_6StringEPb) +STUB( + "w1hpCwDa0K0", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120MmrPropertiesFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_13MmrPropertiesEEE) +STUB("w1k0uL-2zrQ", uhash_count) +STUB("w1mZOJCxvhQ", sceUsbStorageGetdentsClose) +STUB("w1o05aHJT4c", random) +STUB("w1qonuIftF0", _ZN3JSC12DateInstance14finishCreationERNS_2VMEd) +STUB("w1sx3pgttn8", _ZN3sce7Toolkit2NP9Utilities10FutureImpl7setBusyEv) +STUB("w1yWDjuh0I0", TEEC_InvokeCommand) +STUB("w2+qV1RJgcI", _sceNpMalloc) +STUB("w2-7PMpiZf4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersC2ERS5_) +STUB("w20PJO0UULM", GCC_except_table40) +STUB("w21YgGGNtBk", sceNetEpollAbort) +STUB( + "w24JWki+TWI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "w24SxBCgsqg", + _ZN3sce2Np9CppWebApi14SessionManager2V138ResponsePlayerSessionInvitationFactory7destroyEPNS3_31ResponsePlayerSessionInvitationE) +STUB("w2CfS40uMZs", rgctx_fetch_trampoline_rgctx_90) +STUB("w2CtqF+x7og", CERT_STORE_traversePskListNext) +STUB("w2GyuoXCnkw", _ZNSbIwSt11char_traitsIwESaIwEE6insertEmmw) +STUB( + "w2PgnER5IuY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEppEv) +STUB( + "w2Sw+d8o7pA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEC2EPS8_) +STUB("w2TjgpWqhb4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEptEv) +STUB( + "w2UjbzRy0dU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "w2WJke4VKTI", + _ZN7WebCore15JSDOMWindowBaseC1ERN3JSC2VMEPNS1_9StructureEON3WTF6RefPtrINS_9DOMWindowENS6_13DumbPtrTraitsIS8_EEEEPNS_13JSWindowProxyE) +STUB("w2aPcrilqmg", glInsertEventMarkerEXT) +STUB("w2cA8NF7Vfw", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku14getIsPlusPriceEv) +STUB( + "w2eXY6+5+LU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEppEi) +STUB("w2lGr-89zLc", CERT_setKeyFromSubjectPublicKeyInfo) +STUB( + "w2mbK6BnaM8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEE11release_refEv) +STUB("w2nJKnaUKtU", mono_btls_x509_crl_get_version) +STUB( + "w2o0oqlupI4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEC2ERS7_) +STUB("w2pVQm5Z72o", delegate_virtual_invoke_imt_m_1_p) +STUB("w2rJhmD+dsE", sceAgcDriverAddEqEvent) +STUB( + "w32FiX4-pNg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEptEv) +STUB("w32pxSSQ4Rs", WKBundleHitTestResultGetTargetFrame) +STUB( + "w35UGpO4cM8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "w3743Nv8q7A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("w3BY+tAEiQY", sceVideoOutRegisterBuffers) +STUB("w3EwgYSQdD8", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110PlayerTypeEEppEi) +STUB( + "w3FrVqvZ-Oc", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getBoolean4Ev) +STUB("w3OPGzG+9lo", _ZN7WebCore13ContainerNode20getElementsByTagNameERKN3WTF10AtomStringE) +STUB("w3PQxs6fUrk", + _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_12WebAnimationE) +STUB("w3PdaSTSwGE", sceAudioOutOutputs) +STUB( + "w3SzWwBiuRE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEneERKS9_) +STUB("w3T-3kR7DU0", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15NpSessionMemberEE7destroyEPS3_) +STUB( + "w3UCLoi93Z8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEC2EPNS2_10LibContextE) +STUB("w3YSzEB7zcM", _ZNK12video_parser5vpcom8datetime8DateTimeltERKS2_) +STUB("w3d3ARP2oIU", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V117ConnectionQuality6toJsonERNS_4Json5ValueEb) +STUB("w3d6oZK52-I", JSValueIsEqual) +STUB( + "w3e-AnIIIFg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEdeEv) +STUB("w3gRFGRjpZ4", _WStold) +STUB( + "w3i2r7Z2hCc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE5clearEv) +STUB("w3jAgmDwR2c", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEptEv) +STUB("w3lhMQ7YIM8", _ZN7WebCore13MediaStrategyC2ERKS0_) +STUB("w3nLHf8S5Cs", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEEcvbEv) +STUB("w3oAt9XvOZI", _ZN7WebCore13hostsAreEqualERKNS_3URLES2_) +STUB("w3qT8TVfP+Y", _ZN3sce7Toolkit2NP2V24Core15StringifyResultC2Ev) +STUB( + "w3vXlbRFdVA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEC1ERKS7_) +STUB( + "w3y1Sid7ETQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEixEm) +STUB("w4-d0n60hdo", sceAgcDcbSetUcRegisterDirect) +STUB( + "w42rA6Ucync", + _ZN9Inspector21InspectorRuntimeAgent10getPreviewERN3WTF6StringERKS2_RNS1_6RefPtrINS_8Protocol7Runtime13ObjectPreviewENS1_13DumbPtrTraitsIS9_EEEE) +STUB("w45VYZhR0LQ", __cxx_global_var_init .31) +STUB("w4DigjYSWdc", _ZNK3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V16Rating13getActivityIdEv) +STUB( + "w4FGkXcYdFM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("w4GAO3Mnqsw", delegate_virtual_invoke_imt_m_8_p) +STUB( + "w4HUgsX35to", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEC2EPS8_) +STUB( + "w4K4nTYwhVE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB( + "w4LLHSXo+Ho", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEppEv) +STUB( + "w4MTpQdUGoU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEC2EPS8_) +STUB( + "w4RYpvkqVzY", + _ZN9Inspector24BrowserBackendDispatcherC1ERNS_17BackendDispatcherEPNS_31BrowserBackendDispatcherHandlerE) +STUB("w4WRrXbNFI4", mono_aot_Sce_Vsh_Accessormethod_addresses) +STUB( + "w4X-RYzPtHg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEdeEv) +STUB( + "w4fiJLJudqI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEppEi) +STUB("w4inP0fKuDI", sceVideoOutSysSetInvertedColors) +STUB("w4juY6EK-Nc", _UTF8Data_67) +STUB( + "w4mdnqIzag0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEEC1EPSA_PFvSC_EPNS2_10LibContextE) +STUB("w4stabUucgU", mono_aot_Sce_Vsh_Themeplt) +STUB("w4tKwcFJp-c", _ZN9Inspector31BrowserBackendDispatcherHandlerD0Ev) +STUB("w4uMPmErD4I", sceNpTrophyGetGroupIcon) +STUB( + "w4yNVHKXoBE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEED2Ev) +STUB("w5+VCznos5E", _ZN3sce4Json5Array8iteratorppEv) +STUB("w52SREE0dR4", _ZN7WebCore27PlatformMediaSessionManager6createEv) +STUB("w52w1Vmhpyk", mono_aot_Sce_Vsh_Np_Managerunbox_trampolines_end) +STUB( + "w531V2fXzQY", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToSetMultiVariablesByUserC2ERS5_) +STUB("w53a2jJMk8s", _ZN7WebCore9HTMLNames30onwebkitanimationiterationAttrE) +STUB( + "w594drqs8QY", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB("w5CGykBBU5M", _ZNSt10filesystem9_Read_dirERA260_cPvRNS_9file_typeE) +STUB("w5IHyvahg-o", sem_timedwait) +STUB("w5JFbRGFRdM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEEneERKS7_) +STUB( + "w5KNg66Pyvc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "w5SNgng6EFs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("w5UbvPLGye0", _ZN3sce4Json5ArrayaSERKS1_) +STUB("w5ZBRGN1lzY", CA_MGMT_verifyCertWithKeyBlob) +STUB( + "w5aWkxQSB+g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEC1EPKS8_) +STUB("w5dCH5YIQk0", _ZN7WebCore8SVGNames6y2AttrE) +STUB("w5fcCG+t31g", sceKernelAprResolveFilepathsWithPrefixToIdsAndFileSizes) +STUB("w5moABNwnRY", sceAvPlayerResume) +STUB("w5nLp1yb4ek", _ZN3JSC7Symbols24mapBucketHeadPrivateNameE) +STUB( + "w5qeEJdAYuc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEneERKS9_) +STUB("w5sfH9r8ZJ4", sceFontFtTermAliases) +STUB("w5uuoBZXSpY", _ZNK3WTF9MediaTimeeqERKS0_) +STUB("w5yd8587Xyo", WKPluginInformationUpdatePastLastBlockedVersionIsKnownAvailableKey) +STUB("w6+xSKBBn6Y", UCNV_FROM_U_CALLBACK_SKIP_67) +STUB( + "w60uXAL4f8o", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE11getResponseERSB_) +STUB("w61Pg+jLO8I", _ZNK7WebCore4Node18lookupNamespaceURIERKN3WTF10AtomStringE) +STUB("w61SY5yYjuQ", _ZN3JSC2VM12setSpaceSlowEv) +STUB("w62wXXsQx5E", sceUlpMgrVshInitialize) +STUB("w63v6LpnB-A", unorm2_getCombiningClass) +STUB("w63vEAvU8Gc", _ZN4Manx11MediaPlayer10setVisibleEb) +STUB("w65Kj8tAgZw", _ZN9Inspector14InspectorAgent7disableERN3WTF6StringE) +STUB( + "w6703CINjG8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE8capacityEv) +STUB("w67APvj+zAM", sceVdecwrapSetDecodeInput) +STUB( + "w69eiIfctsk", + _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession19setSearchAttributesERKNS1_6Common12IntrusivePtrINS3_16SearchAttributesEEE) +STUB("w6Aq68dFoP4", fwide) +STUB("w6DbBUELkM0", _ZN7WebCore15JSFetchResponse15subspaceForImplERN3JSC2VME) +STUB("w6Dj1VJt5qY", sceAgcSetPacketPredication) +STUB( + "w6L9YRgZtm0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "w6RAp0mQ7TA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEE11get_deleterEv) +STUB("w6UnDaSvKlQ", udat_parse_67) +STUB( + "w6XJFzrM-ls", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "w6XS1glDZjk", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanity9getlocaleEv) +STUB( + "w6bAUvPMY-c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEC2EPS9_) +STUB("w6dfLpf9Os4", _ZN3sce2Np9CppWebApi12Leaderboards2V122GetRankingResponseBodyD1Ev) +STUB("w6i46WqVNOM", YGNodeStyleSetMaxHeightPercent) +STUB("w6iPDnixJ+E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEC1ERKS7_) +STUB("w6mEl-Dsqyw", mono_method_can_access_method) +STUB( + "w6qfs5qDsWo", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_11ProductInfoENS1_15AppSTLAllocatorIS5_EEEED2Ev) +STUB( + "w6qsNmNw8RI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEEC1ERKS9_) +STUB("w6t2+R4KJNY", il2cpp_class_enum_basetype) +STUB("w6uemFn00hc", WKPopupMenuItemIsItem) +STUB("w74B12wektg", mono_aot_Sce_Vsh_Np_RifManagerunwind_info) +STUB("w7AHqrq1-CI", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_26ActivityFeedCondensedStoryEE7addressERKS3_) +STUB("w7CYvjrBvbQ", + _ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody20createdDateTimeIsSetEv) +STUB( + "w7DVRpIQ5Qs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEdeEv) +STUB("w7EWjn-P2xY", sceCesMbcsUcsSetMbcsReplacementCharCode) +STUB("w7FAdToteV8", _ZN3sce7Toolkit2NP10IdDatabase15getAuthClientIdEv) +STUB( + "w7HdvBQTRjY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("w7ICzzcAJCU", sceAvSettingChangeOutputMode2) +STUB("w7Ipp9Xl7hg", sceVideoOutAllowOutputResolutionWqhdDetection) +STUB("w7PUHXO-d8I", _ZN3sce3pss5orbis9framework14PsmDelegateObj11FreePointerEv) +STUB("w7TgSPl+20I", WKBundleBackForwardListCopyItemAtIndex) +STUB("w7U3s-k8gLM", sceKernelGetEmergencyErrorLog) +STUB( + "w7ZyvHMmfRk", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_23NpSessionInvitationInfoENS1_15AppSTLAllocatorIS5_EEEEC2Ev) +STUB( + "w7aUmEXv+y4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEE7get_refEv) +STUB( + "w7cQ9wg1K4A", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE5emptyEv) +STUB("w7coJpIhnaY", _ZN9Inspector19InspectorAuditAgentnaEmPv) +STUB( + "w7dhcAcuWTQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEC1EPS8_) +STUB( + "w7dzcE37Z8o", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersC1ERS5_) +STUB("w7fk0ybEJnY", rgctx_fetch_trampoline_rgctx_105) +STUB( + "w7flM1v62u8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEC1EPS6_PNS2_10LibContextE) +STUB("w7iSnu6cmt4", _ZN3JSC7Symbols59rejectPromiseWithFirstResolvingFunctionCallCheckPrivateNameE) +STUB( + "w7k-Y3MMQf0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE5beginEv) +STUB("w7mZl3yVB7Q", _ZN7WebCore18SocketStreamHandleC2ERKN3WTF3URLERNS_24SocketStreamHandleClientE) +STUB("w7nqTT3zgxU", _ZN3sce4Json6Object8iteratoraSERKS2_) +STUB("w7oz0AWHpT4", sceCompanionHttpdSetStatus) +STUB( + "w7q61lFBQiY", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("w7tvvHZZzug", sceCustomMusicCoreSendSpMessage) +STUB( + "w7xKaLUu+m0", + _ZN3sce2Np9CppWebApi14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBody14setInvitationsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_36UsersPlayerSessionsInvitationForReadEEEEE) +STUB( + "w7yDlqxamEs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEEC1ERKSA_) +STUB("w81lhpVGBxQ", _ZSt10_MaklocstrIwEPT_PKcS1_RKSt7_Cvtvec) +STUB("w821BlZf9os", fuse_chan_destroy) +STUB( + "w823lEYO-WI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEED2Ev) +STUB( + "w82s9BDwJrw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEEC1ERSA_) +STUB( + "w82wtS2KLuM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("w832qwBmcGk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEEC1Ev) +STUB("w85s+ZPDKaM", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE6resizeEj) +STUB( + "w87Ygqmsh-I", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEptEv) +STUB("w8B8XrLet3I", _ZN3sce7Toolkit2NP2V210Tournament17TournamentDetailsC1Ev) +STUB("w8BEUsIYn8w", sceHmdInternalAnotherScreenGetVideoStatus) +STUB("w8CwaZXGm9I", _ZN3sce7Toolkit2NP2V23TUS7Request18GetFriendsVariableD1Ev) +STUB( + "w8EhpT2DdkE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("w8ErqlEVa0g", + _ZN15AbstractStorage17DailymotionFolderC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) +STUB("w8G-27K4CKo", _ZN7WebCore17CharacterIteratorC1ERKNS_11SimpleRangeEt) +STUB("w8HVkEeXPv8", sceAgcDcbDispatchIndirectGetSize) +STUB("w8HwYE-9KJs", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEEC2Ev) +STUB("w8IeS1o82UU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEaSERKS7_) +STUB( + "w8KbNecPQtY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEC1EPS8_) +STUB( + "w8Kp3IeqSq0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEplEm) +STUB("w8MmFAAxfqM", _ZN7WebCore16ThreadGlobalDataC1Ev) +STUB("w8Nmxq0h8Nw", _ZN3sce7Toolkit2NP2V28Commerce7Request25ConsumeServiceEntitlementC1Ev) +STUB( + "w8O0SVCZG7Q", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEdeEv) +STUB("w8S6R14D7AE", _ZThn32_N7WebCore14XMLHttpRequestD0Ev) +STUB("w8VNR7vBvd4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEE7get_refEv) +STUB("w8W-dnXAAGs", _ZN7WebCore10ScrollView24setUnobscuredContentSizeERKNS_9FloatSizeE) +STUB("w8ZcqPInh-0", _ZN3sce7Toolkit2NP15AppSTLAllocatorItED1Ev) +STUB("w8f2A-BvnZA", ublock_getCode_67) +STUB( + "w8fPcLuFbsc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE5emptyEv) +STUB("w8gdCsz9E5g", sceDtcpIpAddHeader) +STUB( + "w8jWT8QANxg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEixEm) +STUB("w8rgJiyY10M", WKPluginInformationBundleVersionKey) +STUB( + "w8t98uWdcZU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEeqERKS9_) +STUB( + "w8twuSVe2tI", + _ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors18setMissingElementsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_33PsnWebError_error_missingElementsEEEEE) +STUB( + "w8vLQe1FsQ0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE8copyFromERKS9_) +STUB( + "w9-3YXZURBI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEC1Ev) +STUB("w90fasGOyHU", _ZNK7WebCore16DOMGuardedObject13guardedObjectEv) +STUB( + "w92VqQPsii0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB("w943c-AqXdc", mono_custom_attrs_get_attr) +STUB( + "w95ozZhH9kQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEC2ERS7_) +STUB("w95vkt1NLpk", Java_com_sony_bdjstack_ti_Database_getTitles) +STUB("w99gsSH-nWA", sceImeBackendGetStatus) +STUB("w9ALlfS+-1U", _ZNK7WebCore26IdentityTransformOperationeqERKNS_18TransformOperationE) +STUB( + "w9BT3Y6NzeA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEC2ERKS8_) +STUB("w9GNxAdZ79A", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEEC2ERS6_) +STUB("w9LQhp4wNfE", _ZN7WebCore16FileReaderLoader5startEPNS_22ScriptExecutionContextERNS_4BlobE) +STUB( + "w9Nsaw9iEHg", + _ZN9Inspector20DOMBackendDispatcher15removeAttributeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("w9NzCYAjEpQ", + _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecd) +STUB( + "w9O+1MIAUX4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEED1Ev) +STUB( + "w9QCHi+hPMM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE8capacityEv) +STUB("w9TsZbsSuX0", uset_cloneAsThawed_67) +STUB("w9W42rQpJ-Q", _ZNK7WebCore5Color10serializedEv) +STUB( + "w9ZgjsqV7nY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEC2ERSA_) +STUB( + "w9aKAn3xJRA", + _ZN7WebCore21JSTextTrackCueGeneric15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB( + "w9ehtsVTkSo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEEC1Ev) +STUB( + "w9fCz0pbHdw", + _ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE7_GetcatEPPKNSt6locale5facetEPKS5_) +STUB("w9iZlvnkMFU", WKPreferencesGetResourceTimingEnabled) +STUB("w9jZHU5QjxM", _ZN3sce16CommonDialogUtil6ServerD2Ev) +STUB( + "w9k2aLQa6SU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEplEm) +STUB( + "w9r0wLnFf5Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEEC2ERSA_) +STUB("w9rvk3g-YW4", _ZN3sce7Toolkit2NP2V28Commerce10ContainersC1ERKS4_) +STUB("w9uM8jBkjhw", _ZN4IPMI4impl10ServerImpl11getUserDataEv) +STUB( + "w9uZ-+PhMpU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEED1Ev) +STUB("w9wlKcHrmm8", sceSystemServiceShowControllerSettings) +STUB("w9yljZe2Mlg", rgctx_fetch_trampoline_rgctx_40_p) +STUB("wA-2odSyaxE", _ZN7WebCore9FrameView34setViewportSizeForCSSViewportUnitsENS_7IntSizeE) +STUB("wA0LYGRV2KQ", glEndQuery) +STUB("wA33q23RD+A", + _ZN3JSC9StructureC2ERNS_2VMEPNS_14JSGlobalObjectENS_7JSValueERKNS_8TypeInfoEPKNS_9ClassInfoEhj) +STUB("wA3Ju2GJJIM", g_list_insert_sorted) +STUB( + "wA4w6a2xzjw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE8capacityEv) +STUB( + "wA9LkwMGgBs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE5beginEv) +STUB( + "wAAscxfXHmk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEptEv) +STUB( + "wADLCKVd1JM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "wAExtzKnFJo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEC1Ev) +STUB("wAGPHKduRHM", _ZN3sce2Np9CppWebApi7Matches2V113RemovedPlayerD1Ev) +STUB("wAKZ-det+yo", sceFiosInitialize) +STUB("wAWyYd8-0Bk", _ZNK7WebCore12BlobDataItem6lengthEv) +STUB("wAcnCK2HCeI", _ZNSt13basic_filebufIwSt11char_traitsIwEE6setbufEPwi) +STUB("wAcxBDLHj1M", sceNpUniversalDataSystemEventPropertyObjectSetBinary) +STUB( + "wAhiJ-NBtGk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEEC1ERS9_) +STUB("wAzC8QJlE7I", _ZN3JSC19HeapSnapshotBuilder4jsonEN3WTF8FunctionIFbRKNS_16HeapSnapshotNodeEEEE) +STUB( + "wAzZBL1th8k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEEC2ERSA_) +STUB( + "wB+AH4fShrg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEE11release_refEv) +STUB("wB+ROFjttwc", _ZN7WebCore8SVGNames15ideographicAttrE) +STUB("wB-Ti-ZJXfY", _ZThn8_N7WebCore26ActiveDOMCallbackMicrotaskD0Ev) +STUB( + "wB1by-Hmycw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEC1Ev) +STUB( + "wB6INCwV06E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("wB7IWzGp2v0", sceNpUniversalDataSystemDestroyContext) +STUB("wB7VXMN6d7Y", sceDtcpIpCloseContentAsync) +STUB("wBEOCxJbzQw", scePsmUtilGetEmojiAssetManagerSize) +STUB("wBGmrRTUC14", sceUserServiceGetFriendFlag) +STUB("wBKAYO7yEXw", FT_GlyphSlot_Oblique) +STUB("wBOQWjbWMfU", sceGameLiveStreamingEnableSocialFeedback) +STUB("wBP+8k4bjBk", _ZN3sce7Toolkit2NP2V27Ranking10UsersRanksD2Ev) +STUB("wBQMZWJzHiY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEEC2ERKS7_) +STUB( + "wBUDlInFkwY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEED2Ev) +STUB("wBWjyBqYees", sceDtcpIpTimeSeekAsync) +STUB("wBaVZTLTjkg", _ZN15AbstractStorage7Service18clear_storage_listEv) +STUB( + "wBapqN9t0uY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEED1Ev) +STUB("wBas1oKAXRU", _ZN3JSC14setNeverInlineEPNS_14JSGlobalObjectEPNS_9CallFrameE) +STUB( + "wBfWCpMIIxw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEED1Ev) +STUB("wBgjoKfPqIw", fuse_fs_statfs) +STUB( + "wBi9o+gWaBA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEE5resetEPS9_) +STUB( + "wBmAgGRsD0I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEppEv) +STUB("wBrBQaGdYZA", mono_bitset_count) +STUB( + "wBu7Gn-xo2E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEmmEv) +STUB( + "wBvJJ-Z+IIs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEC1EPS6_PNS2_10LibContextE) +STUB("wC1-8lzM0G0", _ZN3sce2Np9CppWebApi7Matches2V111AddedPlayer15unsetPlayerNameEv) +STUB( + "wC1iOMNxYsM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEE7add_refEv) +STUB( + "wC2X9ITaeSE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB("wCGnkXhpRL4", sceUserServiceGetNpSubAccount) +STUB( + "wCUcxRLL6DU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEE11release_refEv) +STUB("wCVGrdAIASQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE10setContextEPNS2_10LibContextE) +STUB( + "wCVzkaeoabk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEC2Ev) +STUB("wCYFnwyl09w", _ZN7WebCore14ResourceHandleD1Ev) +STUB("wCZgPpQxGPM", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V18RelationEEaSERKS7_) +STUB("wCZvQ40us4c", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_21GameCustomDataMessageEED1Ev) +STUB("wCavZQ+m1PA", posix_spawnattr_setsigmask) +STUB( + "wCb2qHP9WiQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEE11get_deleterEv) +STUB("wCbG1uR6-T0", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container31contentInteractiveElementsIsSetEv) +STUB("wCbG33VsbqQ", sceShellCoreUtilIsInSystemSuspendBlackList) +STUB("wCehaWNuStY", _U_dyn_info_list_addr) +STUB("wCfhaj6ayFw", _ZN7WebCore9JSElementC1ERKS0_) +STUB( + "wCnHglA0CH8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("wCnSbQWYyP4", _ZThn16_N9Inspector21InspectorConsoleAgentD0Ev) +STUB("wCp6xFoeY9g", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_20ChallengeRecvDetailsEE3getEv) +STUB("wCqghwW7vQw", sceCompositorDeleteIndirectRenderTarget) +STUB("wCyLaecbav8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEEaSERS7_) +STUB("wCzksa5NdKc", _ZN7WebCore11PageOverlay5layerEv) +STUB( + "wCzu57ZKgnM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "wD0FJFkTaNA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEEaSERSA_) +STUB( + "wD1gWklp3oQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEEaSERSA_) +STUB( + "wD3JOSikEB4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEptEv) +STUB( + "wD4Jjvk4cVk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEEC1ERKS9_) +STUB("wDD01ujw2oA", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEEmmEv) +STUB("wDEeBUCdbtk", _ZNK3sce2Np9CppWebApi7Matches2V113ChildActivity6toJsonERNS_4Json5ValueEb) +STUB( + "wDGD-DP01zw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEEC2Ev) +STUB( + "wDJ69yUQH08", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEdeEv) +STUB( + "wDK7QHoNjsY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEEdeEv) +STUB("wDLaq7IgfIc", _ZN3sce2np14JsonDocBuilderD0Ev) +STUB("wDN73R0zRVw", _ZN4Manx10FontStream4openEPKcPv) +STUB( + "wDNMGlJCwYk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEE11release_refEv) +STUB( + "wDNecvohIKk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE5beginEv) +STUB( + "wDPkdiNL-+A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEC2EPS8_) +STUB("wDQjpdaJG9A", _ZN3JSC8JSObject12toStringNameEPKS0_PNS_14JSGlobalObjectE) +STUB( + "wDbLSoFcinw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEaSERKS7_) +STUB("wDiTejvV0kY", _ZN7WebCore5ColorC1ERKS0_) +STUB( + "wDkdepgbsWs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEptEv) +STUB("wDmFLuFw5aw", WKBatteryManagerSetProvider) +STUB("wDmL2EH0CBs", iswalnum) +STUB("wDve80ZAAYU", _ZN7WebCore8Document46wasLoadedWithDataTransferFromPrevalentResourceEv) +STUB( + "wE-9E-966Cw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEE11release_refEv) +STUB("wE9w-+kLQfE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE8copyFromERKS7_) +STUB("wEBJdtyV-Zg", mono_class_get_nesting_type) +STUB("wED4ZXCFJT0", sceGnmDispatchIndirectOnMec) +STUB("wEDj2m5omQA", _ZN3JSC8Debugger25setPauseOnExceptionsStateENS0_22PauseOnExceptionsStateE) +STUB("wEFMvcwAB+4", _ZN7WebCore23AuthenticationChallengeC1ERKS0_) +STUB( + "wEGTKxqXnJk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE7reserveEi) +STUB("wEGeGTNWR1A", _ZN3WTF6ThreadD2Ev) +STUB( + "wEH6Y07Vo4Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("wEI22DiMH6U", sceBgftServiceIntUploadStopTask) +STUB("wEImmi0YYQM", __atomic_fetch_add_2) +STUB( + "wELMF7QvNns", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEneERKS9_) +STUB( + "wENlb4XZ+N0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEC1EPS8_) +STUB("wEO+gMHs9NU", sceHmd2ReprojectionGetMirroringDisplayBufferSizeAlign) +STUB("wERs34fb56w", uprv_dlsym_func) +STUB("wESN-qrVhOU", _ZN3sce2np9WorkQueue4dtorEv) +STUB( + "wEU8oFtBXT8", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERb) +STUB("wEZyFXNW9Lc", WKBundleFrameConvertMonotonicTimeToDocumentTime) +STUB("wEa1mGMVTw4", _ZN7WebCore9HTMLNames11itemrefAttrE) +STUB("wEaYn3s7qns", sceDebugIpmiGetConnectionWaitingThreadListByClientKid) +STUB( + "wEcqDuLhtkw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB("wEgCff0QN5M", g_JSWebAssemblyModulePoison) +STUB( + "wEjwDQ8+OeY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEppEv) +STUB("wElyE0OmoRw", _ZTSSt7collateIcE) +STUB("wEnKdXQL3rQ", _ZN3sce7Toolkit2NP2V212NetworkUtils13NetStateBasicC2Ev) +STUB( + "wEneStn02Eg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEptEv) +STUB("wEoYa5LiVCs", _ZN7WebCore8Settings23setDefaultFixedFontSizeEi) +STUB("wEtM+4xC5E4", RecvPacket) +STUB( + "wF+-UtkqvWA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEptEv) +STUB( + "wF-4CFPuJ-A", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE3endEv) +STUB("wF0KcxK20BE", sceHttpAuthCacheImport) +STUB( + "wFIkD+CwiQs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE4sizeEv) +STUB("wFLNa9nYSIU", + _ZNK7WebCore10FontRanges21glyphDataForCharacterEiNS_30ExternalResourceDownloadPolicyE) +STUB("wFPny9+OrAE", mono_metadata_custom_attrs_from_index) +STUB("wFQIZS-t2mo", mono_method_verify) +STUB("wFXXSbam0Kc", + _ZN3JSC21msToGregorianDateTimeERNS_2VM9DateCacheEdN3WTF8TimeTypeERNS3_17GregorianDateTimeE) +STUB( + "wFXrBZx4OsU", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC1ERKS8_) +STUB( + "wFbR5j-BiuE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("wFcm6bgWB9Q", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData11setobjectIdEPKc) +STUB("wFdynVv+1oQ", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V18Variable8getValueEv) +STUB("wFeAxEeEi-8", sceVoiceVADSetVersion) +STUB("wFgImJ86udM", _ZN23sceMetadataReaderWriter8KeyValue8allocateERKSsRKNS_5ValueEPFPvmEPFvS6_EPi) +STUB( + "wFlaB1TdnNs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEEC2Ev) +STUB( + "wFoQ7S4I5q0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("wFpxQmjDScM", _ZN9Inspector31NetworkBackendDispatcherHandlerC2ERKS0_) +STUB( + "wFqdeqYlg88", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEED2Ev) +STUB("wFqdvVnjKN0", _ZN3sce7Toolkit2NP15SnsPostFacebookC1Ev) +STUB( + "wFuxyFKF7Ew", + _ZN9Inspector26LayerTreeBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) +STUB("wFvgq-KXT0Q", sceShellCoreUtilGetNetEvConfigFileInfoString) +STUB("wG+84pnNIuo", sceNpUniversalDataSystemDestroyEvent) +STUB("wG0JOWdhhQU", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V18SortModeEEaSERKS7_) +STUB( + "wG2LGyp2MOY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEC1Ev) +STUB("wG53ujmymHI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEcvbEv) +STUB("wG6+Pqh1prQ", sceFaceTrackerGetUserIdByTrackId) +STUB( + "wG8x1bxQR7M", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "wG9h+PBe4Qw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEmmEi) +STUB("wG9oAbiICqU", mono_btls_ssl_ctx_set_debug_bio) +STUB( + "wGBrgG6TMUo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEE11release_refEv) +STUB( + "wGByAWBOtd4", + _ZN9Inspector20DOMBackendDispatcher21setInspectModeEnabledElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("wGDlA53kLcQ", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE8pushBackERKS6_) +STUB( + "wGFuciKe0vs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB("wGGhfabJAbs", FTA_Remove_Module_psaux) +STUB("wGIeG3YVk-Q", _ZN7WebCore3URLC1ENS_18ParsedURLStringTagERKN3WTF6StringE) +STUB( + "wGJbXuZv1lE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "wGQXC6Vgc7Q", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEEiRNS2_10LibContextEPT_m) +STUB( + "wGQjB6xSgzw", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayeraSERS5_) +STUB( + "wGUkI5sj-40", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEE5resetEPS9_) +STUB( + "wGWAtM-2KF8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEEC1ERSA_) +STUB( + "wGWUnwbzyto", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEEcvbEv) +STUB("wGa2F00ouvc", getRegisteredCommInfoList) +STUB("wGe2stW-CTw", glGetFragDataLocation) +STUB( + "wGfADiCZkpk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEC2EPS8_) +STUB("wGksbXEKspk", _ZN7WebCore30closestWordBoundaryForPositionERKNS_15VisiblePositionE) +STUB( + "wGl5e8mtRRc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "wGlu6rXyoRM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEEC1Ev) +STUB("wGn8sX26Fds", glFlushMappedBufferRange) +STUB( + "wGoNcujHd6U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEED1Ev) +STUB("wGobSSrBM4s", sceLncUtilGetLocalProcessStatusList) +STUB("wGokRTIQZgc", bdjbg_init) +STUB("wGwfmZ5wFDg", delegate_virtual_invoke_imt_m_9_p) +STUB("wH0c4j52kRA", _ZN12video_parser7cVpUtil12LowerToUpperEPcS1_i) +STUB("wH3QXGZ+uL8", uhash_remove_67) +STUB("wH4XZCjtfW0", _ZNK7WebCore10MouseEvent9toElementEv) +STUB("wH6T3uq38q0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEcvbEv) +STUB("wH9jkBRLvzg", Java_java_net_PlainSocketImpl_socketConnect) +STUB( + "wHEPO3sCuL4", + _ZN9Inspector17BackendDispatcher12CallbackBase11sendSuccessEON3WTF6RefPtrINS2_8JSONImpl6ObjectENS2_13DumbPtrTraitsIS5_EEEE) +STUB( + "wHFTWPgZwag", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEC1Ev) +STUB( + "wHJmKb0MzR0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEC1Ev) +STUB("wHKiDjNLQwI", sceMusicPlayerServiceGetTrackInfo) +STUB( + "wHL0uW+3Y2Y", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEdeEv) +STUB("wHNEWUkYzso", sceAppInstUtilAppInstallRequestAddcontFromDisc) +STUB("wHTcu1PV-MU", cairo_image_surface_get_data) +STUB("wHY17vvA+mA", sceNpManagerIntOnlineId2UserId) +STUB("wHY2UG30T4c", sceDevUsbDeleteHostKevent) +STUB("wHZwCpZVcGI", udata_setCommonData) +STUB("wHaIouHsywc", GCC_except_table130) +STUB("wHacm9eagys", sceMbusAddHandleWithModuleId) +STUB("wHbu4oz+z0I", sceVorbisDecReadFilter) +STUB("wHbuZmRg3do", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEE3getEv) +STUB("wHfRSkpiyzQ", _ZN3sce7Toolkit2NP23DownloadListInputParamsC2Ev) +STUB( + "wHg5OebY5YI", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_9Recording4TypeEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB( + "wHgCwuTTv3s", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEptEv) +STUB( + "wHkTl2YJe6A", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils12Notification15UserStateChangeEE19setCustomReturnCodeEi) +STUB("wHnZU1qtiqw", sceHmdInternal3dAudioOpen) +STUB("wHrImHQ9U0M", GCC_except_table241) +STUB("wHrNxxWgZd0", Java_com_sony_bdjstack_javax_media_controls_VideoDecoder_getVideoSize) +STUB( + "wHsorDExfzs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "wHvd1TWHDYU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "wHwqSXZaXTU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEneERKS9_) +STUB( + "wI-sksm6Ufw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("wI2MuSfoGmY", _ZNK7WebCore11MediaSample13videoMirroredEv) +STUB("wI2eC442QK8", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsD1Ev) +STUB("wI4UPNf5YNY", _ZN7WebCore14ResourceHandle20forceContentSniffingEv) +STUB("wI63wNMkAqM", udatpg_close_67) +STUB("wIBkDNjs6Z4", _ZN3JSC7Symbols19toObjectPrivateNameE) +STUB( + "wIFwPakNn90", + _ZN7WebCore13MutationEvent17initMutationEventERKN3WTF12AtomicStringEbbPNS_4NodeERKNS1_6StringES9_S9_t) +STUB("wIFznvI3rYU", xval) +STUB("wIGold7Lro0", sceNetConfigAddRouteWithInterface) +STUB("wIIyZWfURJk", mono_aot_Sce_Vsh_WebBrowserunbox_trampolines) +STUB("wIJsiqY+BMk", sceRudpGetContextStatus) +STUB("wIMt4miKfyY", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError12messageIsSetEv) +STUB( + "wIMytf3QdVI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "wIOkhBPBBMw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE6resizeEj) +STUB("wIRtYc0hrWM", _ZN3JSC41DeferredStructureTransitionWatchpointFireC1ERNS_2VMEPNS_9StructureE) +STUB("wITIbalx5gk", _ZN7WebCore9HTMLNames20aria_describedbyAttrE) +STUB("wITj6RMihC4", _ZN3WTF6Thread14changePriorityEi) +STUB( + "wIWAXGW+wMo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEC1EPNS2_10LibContextE) +STUB( + "wIWiYu1UCDk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE5emptyEv) +STUB("wIX00Brskoc", sceNpServiceCheckerIntGetAvailability) +STUB("wIX4m0mLfqA", sceNpManagerIntAddOnlineIdChangeCallback) +STUB( + "wIXZby0U++A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEC2Ev) +STUB("wIZEfsXrrxA", + _ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest19npServiceLabelIsSetEv) +STUB("wIc92b0x6hk", sceSystemServiceLaunchTournamentsTeamProfile) +STUB("wIeVYYUX2ak", GetMute) +STUB("wIfsAn4YUUQ", + _ZN7WebCore5Range6createERNS_8DocumentEON3WTF6RefPtrINS_4NodeENS3_13DumbPtrTraitsIS5_EEEEiS9_i) +STUB( + "wIgJaQL8Qfo", + _ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead12setSessionIdEPKc) +STUB( + "wIl28yJQCh0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEplEm) +STUB( + "wIovHSlt9R0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEC1Ev) +STUB("wIp3xo8a-RY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEaSERKS7_) +STUB("wIsKy+TfeLs", sceNetCtlRegisterCallbackForNpToolkit) +STUB("wIua3QUWZ10", _ZN3PAL13SleepDisablerD2Ev) +STUB("wJ-RDAi-Owc", sceFsISSchedStatThread) +STUB("wJ-k9+UShJg", _ZN3sce2np9EventFlag6CancelEm) +STUB( + "wJ5Lifc0Huc", + _ZN3sce2Np9CppWebApi12Leaderboards2V113ErrorResponse8setErrorERKNS1_6Common12IntrusivePtrINS3_5ErrorEEE) +STUB("wJ5jCpkCv-c", CA_MGMT_certDistinguishedNameCompare) +STUB("wJABa1X4+ec", sceKernelGetExecutableModuleHandle) +STUB( + "wJGWP8GMugU", + _ZN7WebCore6Editor21applyStyleToSelectionEON3WTF3RefINS_12EditingStyleENS1_13DumbPtrTraitsIS3_EEEENS_10EditActionENS0_15ColorFilterModeE) +STUB("wJGfm1nMv6s", _ZN7WebCore9HTMLNames7menuTagE) +STUB( + "wJGxnrKRwT0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEptEv) +STUB("wJIX1JM1ACo", JVM_GetSockOpt) +STUB("wJIeK4RrCTg", UCNV_FROM_U_CALLBACK_SUBSTITUTE_59) +STUB( + "wJL2gUPbqT0", + _ZN7WebCore4Page13rangeOfStringERKN3WTF6StringEPNS_5RangeENS1_9OptionSetINS_14FindOptionFlagEEE) +STUB("wJP+nBVypew", mono_aot_Sce_Vsh_Orbis_BgftAccessorjit_code_end) +STUB("wJPWycVGzrs", sceNpScoreGetRankingByAccountIdPcId) +STUB("wJUZjU5SfhY", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIdEptEv) +STUB( + "wJV54iyWL3Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEED1Ev) +STUB("wJWqKZOj4Ts", _ZN3sce2Np9CppWebApi12Leaderboards2V14User12setAccountIdERKm) +STUB("wJXikG6QFN8", sceVideodec2Reset) +STUB("wJZkhHdjP7I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE5emptyEv) +STUB("wJdI4GD6sYI", mono_aot_ReactNative_Modules_Vsh_Gct_Telemetrymethod_addresses) +STUB( + "wJn-wV7mWq4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("wJsl7dz2gWs", _ZNK4Manx6Cookie8httpOnlyEv) +STUB("wJtaTpNZfH4", sceGnmSqttSetCuPerfMask) +STUB("wJvsHbLD7aI", _ZN3WTF10StringImpl4findEPS0_) +STUB("wJvtSG39UTY", _ZN4Manx12getFontScaleEPKwj) +STUB("wJxIJlJqUMw", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13SessionMemberEEC1ERKS4_) +STUB("wJzrbtZ7MOk", cairo_surface_create_for_rectangle) +STUB( + "wK7wakwDDQY", + _ZN3JSC8JSObject24getOwnPropertyDescriptorEPNS_14JSGlobalObjectENS_12PropertyNameERNS_18PropertyDescriptorE) +STUB("wKBkBYiG32Q", _ZN3JSC17DeferredWorkTimer14hasPendingWorkEPNS_8JSObjectE) +STUB("wKL93RskfiM", utext_getNativeIndex_67) +STUB("wKVEDIjE89w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEmmEv) +STUB( + "wKaGqgeY0Ro", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEEaSERSA_) +STUB( + "wKbnGGz7uaU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB("wKnIMi3wISE", mono_aot_I18N_MidEastjit_code_end) +STUB("wKojqISnuVU", sceAvControlSet2dVrMode) +STUB("wKsLxRq5+fg", _Mbstate) +STUB( + "wKsttCRkGbY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEED1Ev) +STUB( + "wKtyVH-Y4ac", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("wKvnAYtcaPs", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes14unsetInteger10Ev) +STUB("wKzE7cS9yxw", + _ZN9Inspector21InspectorConsoleAgentC2ERNS_12AgentContextEPNS_18InspectorHeapAgentE) +STUB( + "wKzx0ueRLtg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEptEv) +STUB("wL1gyXiT9JQ", il2cpp_gc_get_used_size) +STUB("wL34WUtZtCk", _ZN3sce7Toolkit2NP2V28Commerce9ContainerC1ERKS4_) +STUB("wL3jP+QXAHo", mono_method_desc_match) +STUB("wL4rygvgvTQ", _ZN7bmalloc6IsoTLS28determineMallocFallbackStateEv) +STUB( + "wLH1RMZFkN8", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody6toJsonERNS_4Json5ValueEb) +STUB("wLHhrPqDtiM", _ZN7WebCore8SVGNames13pointsAtYAttrE) +STUB("wLNtZytqFAQ", sceDataTransferRequestStartFgTransfer) +STUB("wLP4k8D3hWw", _ZN7WebCore19ResourceRequestBase15setHTTPReferrerERKN3WTF6StringE) +STUB("wLPactuWzSQ", uidna_IDNToUnicode_67) +STUB( + "wLWbyI95Me0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE6resizeEj) +STUB("wLaxchvEEnk", sceNpLookupDeleteRequest) +STUB("wLlFkwG9UcQ", time) +STUB("wLljjEtN3vY", + _ZN15AbstractStorage14TwitterStorage9SerializeESt10shared_ptrINS_7ContentEES1_INS_4ItemEE) +STUB( + "wLnZuXkEPC4", + _ZN7WebCore5Cairo11drawSurfaceERNS_20PlatformContextCairoEP14_cairo_surfaceRKNS_9FloatRectES7_NS_20InterpolationQualityEfRKNS0_11ShadowStateERNS_15GraphicsContextE) +STUB("wLo6wmyVRMQ", ScePsmMonoTerm) +STUB("wLpBqSY0Su4", _ZN7WebCore7Element13scrollByPagesEi) +STUB("wLqQQWyOdpc", FT_CMap_New) +STUB("wLsJlmgEIaI", _ZN3sce4Json5Value10referValueERKNS0_6StringE) +STUB("wLvhNHWWJTU", scePerfTraceUpdate) +STUB( + "wLzFZP2jCb4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEC2ERKS7_) +STUB("wLzJUeJqDxQ", sceBgftServiceIntPlayGoGetDiscIniChunksInstallProgress) +STUB("wM3y9VvsxC8", _ZN7WebCore20serializationForHTMLENS_5SRGBAIhEE) +STUB("wM4LO2iK3s8", _ZNK3sce4Json6String5emptyEv) +STUB("wM4q1JMisvA", _ZN3sce2np9WorkQueue15GetFinishedItemENS0_14WorkItemStatusE) +STUB("wM4xiBYyJW0", _ZN7WebCore9HTMLNames13figcaptionTagE) +STUB( + "wM8Sl4uXkxw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEC2Ev) +STUB("wMG6XaKZ41E", + _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody20unsetCreatedDateTimeEv) +STUB("wMOrtsivX30", _ZNK3sce2Np9CppWebApi13InGameCatalog2V511ErrorEntity8getErrorEv) +STUB("wMQnfMu7jyM", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEEixEm) +STUB( + "wMRQdFYGqIQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEED1Ev) +STUB( + "wMRffYg83Qw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEC2EPS6_PNS2_10LibContextE) +STUB( + "wMUJ9uf6iug", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEEC2Ev) +STUB("wMZIIoyhuHY", sceCesSJisCodeToJisX0213) +STUB("wMZWLJunf5c", _ZNK7WebCore13HitTestResult19listBasedTestResultEv) +STUB( + "wMgjdZGE2ys", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("wMmr-E7JTRA", sceUserServiceGetVolumeForDs4Speaker) +STUB("wMtSHLNAVj0", sceUserServiceGetShareStatus2) +STUB("wMu+dIbw7c0", _ZN3WTF29cryptographicallyRandomNumberEv) +STUB( + "wMvWuauNe2o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE10setContextEPNS2_10LibContextE) +STUB("wMyjXnidJQ0", WKPageSetShouldSendEventsSynchronously) +STUB("wN-ay2QYC0U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEE3getEv) +STUB("wN5zRLw4J6A", sceUserServiceSetFileBrowserSortTitle) +STUB( + "wN7zerW5YV0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEC2EPS8_) +STUB( + "wN96B0UeyJc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEEC1Ev) +STUB( + "wN9jwcMcX0c", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE8capacityEv) +STUB( + "wNBlO05CwVU", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12unsetString1Ev) +STUB("wNC8Z93URKU", _ZN3sce7Toolkit2NP2V27Ranking7Request11GetGameDataD1Ev) +STUB( + "wNCioeod8JI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEC1ERKS7_) +STUB("wNKlMLyTzww", + _ZN3JSC8Bindings13RuntimeObject12methodGetterEPNS_9ExecStateElNS_12PropertyNameE) +STUB( + "wNMvcz16tWo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEC2Ev) +STUB( + "wNPcpZMO6Uc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEixEm) +STUB( + "wNRLYP8IKzk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "wNSSE4AmzCc", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountId15hasasOfDateTimeEv) +STUB("wNUdyLfKQ9U", YGNodeStyleGetFlexBasis) +STUB("wNeGsNes5ck", sceKernelIccNotifyBootStatus) +STUB("wNhdQWqZALM", _ZN3WTF17StringPrintStreamC1Ev) +STUB("wNkGgsVUB+c", _ZL10ThreadInfo) +STUB( + "wNmAtLXM7T8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEC1ERKS7_) +STUB( + "wNr1eANu1Ik", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitationsC2ERS5_) +STUB( + "wNsK58YlEw0", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody17unsetJoinDisabledEv) +STUB( + "wNt1TVJ9IP8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("wNu7k5j5npw", generic_trampoline_rgctx_lazy_fetch_p) +STUB( + "wNxXfVYHBgQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEE5resetEPS6_) +STUB("wO1-omboFjo", _Stoflt) +STUB("wO1D4B90k0k", cairo_device_destroy) +STUB("wO2ZzwwSOGA", ucol_greater_67) +STUB("wO2ywgcl98w", mono_bitset_test_bulk) +STUB( + "wO5nfZ6PI-g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "wO6b-MeeLrM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEaSERKS7_) +STUB("wO8Zzs7YvCw", _ZN13MsvMetaEditor11UpdateTitleEPKcS1_t) +STUB("wOE-bzWk1UE", _ZN7WebCore8SVGNames23underline_thicknessAttrE) +STUB("wOIw2laLcl8", _ZN3JSC8Subspace33parallelNotEmptyMarkedBlockSourceEv) +STUB("wOK56TKiIhY", _ZL21emergency_malloc_lock) +STUB( + "wOPGv1BomT4", + _ZThn24_N9Inspector28InspectorScriptProfilerAgent17didEvaluateScriptEN3WTF7SecondsEN3JSC15ProfilingReasonE) +STUB("wOWXwyIvlew", uloc_getName) +STUB("wOXvcIahiGU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEaSERS7_) +STUB("wOe+n1xNytw", WKPreferencesSetViewGestureDebuggingEnabled) +STUB("wOfhYxc7QjI", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead14setCustomData1EPKvm) +STUB("wOgJGhjCAmw", sceVoiceChatGetChannelMemberActiveChannelMatchingState) +STUB( + "wOpYb99W8ZY", + _ZN3sce2Np9CppWebApi7Matches2V125RequestTeamResultsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_18RequestTeamResultsEEE) +STUB( + "wOurCGxbBFM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEC1EPNS2_10LibContextE) +STUB("wOxscP3TysM", ScePsmMonoArraySizeInBytes) +STUB( + "wP+ZFD1VWDs", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V18Variable8setOwnerERKNS1_6Common12IntrusivePtrINS3_5OwnerEEE) +STUB("wP-FIy-gRq0", + _ZN3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsers9setoffsetEi) +STUB("wP0Ab2maR1Y", sceNetCtlGetScanInfoBssidForSsidListScanIpcInt) +STUB( + "wP0b3RiDNNc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEppEi) +STUB( + "wP99ev8a9fM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEED2Ev) +STUB( + "wP9gzp8v0Y0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEE7add_refEv) +STUB( + "wPBG6ln9gNw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEppEv) +STUB("wPBtYd5mlzo", SSL_CTX_use_PrivateKey_file) +STUB("wPDgF0XIIqQ", sceKernelStreamWriteDeactivate) +STUB("wPEv3CHUImU", _ZNK3sce2Np9CppWebApi7Matches2V120ResponseMatchResults20getCooperativeResultEv) +STUB("wPFah4-5Xec", sceNpTusAddAndGetVariableA) +STUB( + "wPGIwCmKy9w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("wPGlix12L-k", _ZN7WebCore12SharedBufferC2Ev) +STUB("wPJGwI2RM2I", sceSystemGestureUpdateAllTouchRecognizer) +STUB("wPL3R1Y1gec", _ZN7WebCore8SVGNames27strikethrough_thicknessAttrE) +STUB("wPLpcdkKn9E", _Z16acceptIpcChanneli) +STUB( + "wPN6j-0Zp84", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEE5resetEPS6_) +STUB("wPNEMtjHfrI", mono_aot_I18N_CJKunbox_trampolines_end) +STUB( + "wPO9107ThVw", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlotD1Ev) +STUB("wPQ0rMK4-JU", FT_Load_Char) +STUB( + "wPRE7cD-bK8", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("wPZSJibBFsw", sceAudiodecRegisterCodec) +STUB("wPZXJQrLeds", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V223FilterProfanityResponse6toJsonERNS_4Json5ValueEb) +STUB( + "wPa261TK7MU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "wPgOX8UG1cQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEdeEv) +STUB("wPmbrkSpTzk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEaSERKS7_) +STUB("wPp+bNFYY3w", _ZN3WTF12AtomicString6numberEi) +STUB( + "wPs3GdqeMzE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEEC1Ev) +STUB( + "wPsI1qthIVI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEEC2Ev) +STUB("wPt4xvqhcLQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEEdeEv) +STUB("wPtNaLuyLKk", sceDataTransferTargetRequestReboot) +STUB("wPwQ0-epfJw", __wrap_readlink) +STUB("wPxplF32pXE", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V113AttributeTypeEEC1Ev) +STUB( + "wQ-fzWkSvs0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEdeEv) +STUB( + "wQ-qtBqg3s8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE3endEv) +STUB("wQ5dN1p4tcE", scePktMgrSetUlpResPayload) +STUB( + "wQ6ttE59npg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB("wQ9-tXakN90", _ZN3WTF14dupCloseOnExecEi) +STUB("wQ9IitfPED0", sceFontOutlineVertexesInterfaceInit) +STUB("wQ9pO7tm3DU", _ZN4IPMI6Server12EventHandler21onAsyncMethodDispatchEPNS_7SessionEjjPvmS4_m) +STUB("wQDizdO49CA", sceUserServiceSetGlsCommunityId) +STUB( + "wQDq0I43k8o", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE5beginEv) +STUB( + "wQHX90pXenw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEED1Ev) +STUB("wQIS4tGUhrI", _ZN7WebCore9HTMLNames8titleTagE) +STUB("wQLMyxkpyoY", ucptrie_internalU8PrevIndex) +STUB("wQN9ut1tpP8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V510AnnotationEEneERKS7_) +STUB("wQP33i9qQPI", _ZN3JSC16IsoSubspacePerVM5forVMERNS_2VME) +STUB("wQPkA8yHr4M", _ZN7WebCore11ContentTypeC1ERKN3WTF6StringE) +STUB("wQRrOOXbxlM", _ZN9Inspector28InspectorScriptProfilerAgentnaEm) +STUB("wQW9FiqIg2I", sceFsWsCreate) +STUB( + "wQX-boqRCAk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEmmEv) +STUB( + "wQYIcgNc024", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE3endEv) +STUB( + "wQZSd2EOn0E", + _ZN3sce2Np9CppWebApi7Matches2V127ReportResultsRequestFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_19RequestMatchResultsEEEPNS8_INS3_20ReportResultsRequestEEE) +STUB( + "wQdnQh3mEq8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("wQeNb+Lq4ak", fuse_fs_access) +STUB( + "wQfCJVC8JeE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE5beginEv) +STUB("wQfd7kfRZvo", sceCameraIsConfigChangeDone) +STUB("wQgEa1jmctg", _ZN7WebCore18PlatformTimeRangesC1ERKS0_) +STUB( + "wQhnoUPCJVo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEEC2EPS8_PNS2_10LibContextE) +STUB("wQlp94zzrWg", sceRegMgrSrvGetQAFforReg) +STUB("wQpMj4CVRs8", _ZN7WebCore18CustomHeaderFieldsC2Ev) +STUB( + "wQr-6Qn7-oc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEEC1Ev) +STUB("wQucK2Io0XQ", rgctx_fetch_trampoline_mrgctx_34_p) +STUB("wR0f0av3W9I", + _ZN3sce2Np9CppWebApi14SessionManager2V117SearchGameSessionC2EPNS1_6Common10LibContextE) +STUB("wR0o0b2T5gM", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V18Variable8getOwnerEv) +STUB("wR7tDCezaiU", _ZNK3WTF6String28convertToUppercaseWithLocaleERKNS_12AtomicStringE) +STUB("wRA9-Ih1MkU", _ZNK7WebCore15ActiveDOMObject30assertSuspendIfNeededWasCalledEv) +STUB("wRB3MY5Nhq4", _ZN12video_parser18cProfileCheckerMp4D1Ev) +STUB("wRCrMpSjzjw", utrans_openInverse_67) +STUB( + "wREfYiBWM9I", + _ZN7WebCore30InspectorInstrumentationWebKit31shouldInterceptResponseInternalERKNS_5FrameERKNS_16ResourceResponseE) +STUB( + "wRKSZIgR3-Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEC1ERS7_) +STUB( + "wRNwB78LWe4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "wROJUFhYabE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEED1Ev) +STUB("wRPXMGtkOq0", sceMbusInit) +STUB( + "wRWPSrhLQNo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEE3getEv) +STUB( + "wRWkB7UnAaQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEEC1Ev) +STUB("wRYVA5Zolso", sceKernelClockGetres) +STUB("wRbq6ZjNop4", sceAgcGetRegisterDefaults2Internal) +STUB("wRcRGwS8arU", + _ZN7WebCore20LegacySchemeRegistry32registerURLSchemeAsEmptyDocumentERKN3WTF6StringE) +STUB("wRflNM0P98U", _ZN7WebCore8Document13svgExtensionsEv) +STUB("wRgdMnfoD6A", unum_toPattern_67) +STUB("wRgkEJFWGCY", _ZN3sce2Np9CppWebApi7Matches2V120RequestPlayerResultsD1Ev) +STUB( + "wRjo0NmR0HE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEC1EPS6_PNS2_10LibContextE) +STUB("wRmWjXuPRHc", _ZNK7WebCore9FrameView18layoutViewportRectEv) +STUB("wRs5S54zjm0", llroundl) +STUB( + "wRt2ee3IEDo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEED2Ev) +STUB( + "wRtLygC6DmU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE5clearEv) +STUB("wRyKNdtYYEY", _ZTSSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE) +STUB("wS3FCjBDN6w", _ZN7WebCore11RoundedRectC1ERKNS_10LayoutRectERKNS_10LayoutSizeES6_S6_S6_) +STUB( + "wS4BmP9WtKA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEneERKS9_) +STUB("wS5flYFv0H0", _ZN7WebCore17valueToByteStringERN3JSC14JSGlobalObjectENS0_7JSValueE) +STUB( + "wS6DC0qTbqk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE3endEv) +STUB( + "wS6EYAZD0Jk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEE11release_refEv) +STUB( + "wS8gTToRWjc", + _ZN3sce2Np9CppWebApi14SessionManager2V134PostGameSessionsSearchResponseBodyC2EPNS1_6Common10LibContextE) +STUB("wSCKvDDBPy4", _ZN3sce2np7HttpUriD1Ev) +STUB("wSGXKvag-Jg", sceNpGriefReportWriteReportItem) +STUB( + "wSISvG5+77c", + _ZN9Inspector24ConsoleBackendDispatcherC2ERNS_17BackendDispatcherEPNS_31ConsoleBackendDispatcherHandlerE) +STUB("wSO4Z94Iskw", _ZN12video_parser17cVideoOperatorEtsC2EPKc) +STUB("wSQv7alS9b4", _ZNK3JSC8JSObject43anyObjectInChainMayInterceptIndexedAccessesERNS_2VME) +STUB("wSZKMWhisbM", _ZN7WebCore5Image9nullImageEv) +STUB( + "wSaAXPfXPy0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE21intrusive_ptr_sub_refEPS9_) +STUB("wSjT8aUbVp8", ubidi_setReorderingOptions_67) +STUB( + "wSlE4pliCxc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEEaSERKSA_) +STUB( + "wSmDr9K1FRc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEC1Ev) +STUB("wSx76W-9DSM", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEEptEv) +STUB("wSxRrFKzKXk", sceKernelGetBasicProductShape) +STUB( + "wSz6s4suf5c", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "wSzE2cYEsJo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEC1EPS8_) +STUB("wT+HL7oqjYc", _ZNSt10moneypunctIcLb1EED1Ev) +STUB( + "wT4spuhbnWA", + _ZN3sce2Np9CppWebApi14SessionManager2V136JoinedGameSessionWithPlatformFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_29JoinedGameSessionWithPlatformEEE) +STUB("wT7N0P--+wk", mono_aot_Sce_Vsh_VideoRecordingWrapperunbox_trampolines_end) +STUB("wT8R-goU-wo", _ZNK7WebCore17FrameLoaderClient42shouldEnableInAppBrowserPrivacyProtectionsEv) +STUB( + "wT9FeIU2VW0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEC2ERS7_) +STUB("wTAwYxAyh3I", _ZN3sce7Toolkit2NP2V28Commerce12SubContainerC1ERKS4_) +STUB( + "wTJk2JlpUE0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEmmEi) +STUB("wTKF4mUlSew", sceImeVshConfirmPreedit) +STUB("wTNvcaQngco", fuse_fs_setxattr) +STUB("wTO4cMkVNaM", sceSrcUtilityGetHandleSize) +STUB( + "wTOnh4yymKY", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer15getcontainerIdsEv) +STUB( + "wTQo9rormds", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE5emptyEv) +STUB("wTRdXzKM3u4", _ZNK7WebCore20ResourceResponseBase16textEncodingNameEv) +STUB("wTSoWfa8CaA", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEE3getEv) +STUB( + "wTTGWdtpbBQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEC2EPS6_PNS2_10LibContextE) +STUB("wTUwGfspKic", sceNpTrophyGetGroupInfo) +STUB("wTW3RnfuwJg", fuse_exit) +STUB("wTZgIXezihg", _ZN7WebCore18DOMWindowExtensionD0Ev) +STUB("wTb9YrUl2LA", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIiED2Ev) +STUB("wTcAJ9lu8ek", mono_aot_Sce_Vsh_SystemLoggerWrapperunbox_trampolines) +STUB( + "wTevu7VbQms", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("wTjDJ6In3Cg", lcong48) +STUB( + "wTomv6Ohxss", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("wTpfglkmv34", sceMsgDialogProgressBarSetValue) +STUB("wTuuw4-6HI8", sceNpTusGetMultiSlotVariableForCrossSaveVUser) +STUB("wTwostbt3gg", + _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchDetail13isInitializedEv) +STUB( + "wTzaoJtap74", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEE21intrusive_ptr_sub_refEPS7_) +STUB("wU2zzSFpOF0", Java_java_lang_reflect_Array_setDouble) +STUB( + "wU5ZEI9nl0g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEC1Ev) +STUB("wU6aXxIr4bQ", _ZN3WTF12base64DecodeENS_10StringViewENS_33SignedOrUnsignedCharVectorAdapterEj) +STUB("wU8DpYIoYsQ", _ZN3sce2Np9CppWebApi7Matches2V14Task13setActivityIdEPKc) +STUB( + "wU8W8tHD8pU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEED2Ev) +STUB("wU95MQW2F3c", _ZN3sce7Toolkit2NP2V212EventsClient13EventDurationD1Ev) +STUB( + "wUAquNjzA5g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEmmEi) +STUB( + "wUCRGap1j0U", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERe) +STUB( + "wUCS9-fuOKg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("wUCcX6gR2+g", ucol_getVariableTop_67) +STUB("wUFdGCoSBjM", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_26ActivityFeedCondensedStoryEE7destroyEPS3_) +STUB("wUMAZ4-w0zA", _ZN3sce7Toolkit2NP2V27NpUtils12Notification15UserStateChangeD1Ev) +STUB( + "wUMtxk7SrRg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEC1Ev) +STUB("wUT4cOK0bj0", sceNpManagerIntTemporarySignout) +STUB("wUYrOBcxB34", X509_verify_cert) +STUB("wUa+oPQvFZ0", _Hypot) +STUB("wUbSyYekZ2Y", WKBundlePageNumberForElementById) +STUB("wUcj2Hfr2W8", Java_java_awt_GnmRobotHelper_init) +STUB("wUd8+HNDBcg", _ZNK3sce2Np9CppWebApi14ConnectAccount2V212PartnerToken6toJsonERNS_4Json5ValueEb) +STUB("wUdJhLXHJ20", _ZN7WebCore4Node14setTextContentERKN3WTF6StringE) +STUB( + "wUgRrWyJBdI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEE11get_deleterEv) +STUB("wUmwXZHaX1w", sceNpMatching2SignalingGetPingInfo) +STUB("wUy0lj1mDdk", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils13NetStateBasicEE3setEv) +STUB( + "wUz-T7nQrio", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("wUzYBhKdcJY", ucnv_extGetUnicodeSet_67) +STUB( + "wUzoLk4a5J0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE5emptyEv) +STUB("wV+UKEz5Qjc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEE11release_refEv) +STUB("wV-UQh6FVLY", _ZNK3sce2Np9CppWebApi7Matches2V119RequestMatchResults6toJsonERNS_4Json5ValueEb) +STUB("wV04-VveLpE", sceVnaStartKeywordDetection) +STUB( + "wV1V9Qz5CoM", + _ZN7WebCore17PageConsoleClient10addMessageEN3JSC13MessageSourceENS1_12MessageLevelERKN3WTF6StringES7_jjONS4_6RefPtrIN9Inspector15ScriptCallStackENS4_13DumbPtrTraitsISA_EEEEPNS1_9ExecStateEm) +STUB("wV3jlvsT5jA", sceUserServiceSetEventCalendarType) +STUB( + "wVAUKJ+Y+4I", + _ZN7WebCore20RenderEmbeddedObject29setPluginUnavailabilityReasonENS0_26PluginUnavailabilityReasonE) +STUB("wVCUVg3XpAQ", mono_aot_System_Net_Http_WebRequestjit_code_end) +STUB("wVO9QbbpOBU", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V15ErrorD1Ev) +STUB("wVY5DpvU6PU", + _ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_bRSt8ios_basewe) +STUB("wVbBBrqhwdw", __mulodi4) +STUB("wVdn78HKc30", sceNpHeapDestroy) +STUB( + "wVesrZ5ZPW0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEC1EPNS2_10LibContextE) +STUB("wVfsyIq050c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEEC2ERS9_) +STUB( + "wVjOw7Ct+nk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE6resizeEj) +STUB("wVkehxutK-U", sceImeForTestFunction) +STUB("wVlPnnW7Evk", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE5emptyEv) +STUB("wVo8f0DV38E", lchmod) +STUB("wVoC0+Jf2EY", uprv_uint16Comparator) +STUB("wVpBRe2xp+s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEC2ERS7_) +STUB( + "wVqC52o2PHQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEED2Ev) +STUB("wVqClDHSLdY", _ZN7WebCore20TransformationMatrix9translateEdd) +STUB( + "wVqfIbX8-9o", + _ZN7WebCore17FullscreenManager27requestFullscreenForElementEPNS_7ElementENS0_19FullscreenCheckTypeE) +STUB("wVqoOFPQiJI", generic_trampoline_delegate) +STUB("wVqxM58sIKs", sceNpTrophy2UnregisterUnlockCallback) +STUB("wVsAb+Zyr1Y", sceShareUtilityAdvanceQueryServiceInfo) +STUB("wVv6bgzPwss", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEED1Ev) +STUB("wVwETBRI6B4", _ZN3sce7Toolkit2NP2V27Session11SessionDataC1ERKS4_) +STUB("wVwPU50pS1c", sceAudioOutSetMixLevelPadSpk) +STUB("wW+Pyy9LiGA", _ZNK7WebCore20ResourceResponseBase14isInHTTPFamilyEv) +STUB("wW+k21cmbwQ", _ioctl) +STUB("wW-C9fYsgnU", _ZN9Inspector22HeapFrontendDispatchernaEm) +STUB( + "wW4jTznZqAE", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemPropertiesD1Ev) +STUB( + "wW5ObWAQ8HA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "wW73PoQwp9s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEptEv) +STUB( + "wW8d4yFcbt0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEED1Ev) +STUB("wWExpSMGya0", WKBundleFileHandleCreateWithPath) +STUB("wWG7OQuQq-w", mono_mempool_new) +STUB( + "wWGStrYAlCw", + _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container8setMediaERKNS1_6Common12IntrusivePtrINS3_14ContainerMediaEEE) +STUB( + "wWIsjOqfcSc", + _ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_bRSt8ios_baseRNSt5_IosbIiE8_IostateERSbIwS2_SaIwEE) +STUB( + "wWJ+kkgYhCw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEmmEv) +STUB( + "wWJyB5whlAk", + _ZN7WebCore10resolveDNSERKN3WTF6StringEmONS0_17CompletionHandlerIFvONSt12experimental15fundamentals_v38expectedINS0_6VectorINS_9IPAddressELm0ENS0_15CrashOnOverflowELm16ENS0_10FastMallocEEENS_8DNSErrorEEEEEE) +STUB("wWRgV0esq0Q", res_getTableItemByIndex_67) +STUB("wWSwCjA8pSI", WKAuthenticationChallengeGetTypeID) +STUB("wWTqVcTnep8", _ZN3sce2np4Cond4InitEPKcPNS0_5MutexE) +STUB("wWX34VUoyDM", _ZN7WebCore9HTMLNames9classAttrE) +STUB("wWZzH-BwWuA", sceUserServiceSetGlsCameraPosition) +STUB( + "wWaf491txRo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEE3getEv) +STUB( + "wWdKuMPssRQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("wWhSR9TfAr4", _ZN7WebCore28InspectorFrontendClientLocal8SettingsnaEmPv) +STUB("wWlM3tS1tuA", _ZN3sce2Np9CppWebApi7Matches2V120ReportResultsRequest20unsetMatchStatisticsEv) +STUB( + "wWlsbrijeUU", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V139GetMultiDataStatusesResponseBodyFactory7destroyEPNS3_32GetMultiDataStatusesResponseBodyE) +STUB( + "wWpV2tnUO2M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEC1EPS8_) +STUB("wWqhq3JF9l8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEC2Ev) +STUB("wWqxpgm-r9k", _ZN12video_parser5vpcom4FreeE) +STUB( + "wWwolctzj3s", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("wWyRB5M4a3Y", _ZN9Inspector22PageFrontendDispatcherC2ERNS_14FrontendRouterE) +STUB("wX+icr0jCqo", _ZN7WebCore26UserTypingGestureIndicator27processingUserTypingGestureEv) +STUB("wX3Ia8aX7Os", _ZN3sce2Np9CppWebApi14SessionManager2V127ResponsePlayerSessionPlayerD1Ev) +STUB( + "wX3ZGWU6Rf4", + _ZN3JSC14LocalAllocator16allocateSlowCaseERNS_4HeapEPNS_17GCDeferralContextENS_21AllocationFailureModeE) +STUB("wX42s8vaL7A", _ZN3sce2np13JsonArrayImplC2EP14SceNpAllocator) +STUB( + "wX884JEwgpQ", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi44ParameterToPatchGameSessionsSearchAttributesD2Ev) +STUB("wX9wVFaegaM", sceSystemServiceLaunchEventDetails) +STUB("wXCMy4EwaLE", sceVoiceVADPVTAdjustment) +STUB("wXEc3+fNcO4", curl_multi_init) +STUB("wXEliVW3L4A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEC1Ev) +STUB( + "wXHB-1eaNac", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEEptEv) +STUB( + "wXHC8WL1WtE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEC1Ev) +STUB( + "wXKwM18yvkk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEC1EPKS8_) +STUB("wXPsyQEEP6I", _ZN3sce7Toolkit2NP2V211SocialMedia7Request7PhotoFb21MAX_PHOTO_CAPTION_LENE) +STUB("wXQ1M9E-ogs", _ZN7WebCore15HTTPHeaderField6createEON3WTF6StringES3_) +STUB( + "wXU9YAKJGi4", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "wXUzOYXw2dI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEeqERKS9_) +STUB("wXV5Sv+uG2I", _ZN7WebCore4Page8setMutedEj) +STUB("wXWYitYDaJA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V117ConnectionQualityC1EPNS1_6Common10LibContextE) +STUB("wXXU8LN9RXE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEcvbEv) +STUB( + "wXYqSpkCM0Q", + _ZN7WebCore16JSXMLHttpRequestC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_14XMLHttpRequestENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "wXc2hfdYNUo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEE7add_refEv) +STUB( + "wXcVkckulTE", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsers37unsetxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB("wXfHhmzUjK4", sceNpManagerIntLoginGetOnlineId) +STUB( + "wXfO-QmzhV4", + _ZN9Inspector22AuditBackendDispatcherC1ERNS_17BackendDispatcherEPNS_29AuditBackendDispatcherHandlerE) +STUB( + "wXhQDd2RrrI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEC2EPKS8_) +STUB( + "wXkOHKULqNY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("wXmx+vN8puE", sceKernelIccGetPowerUpCause) +STUB("wXpm75McNZo", sceNpAsmClientGetServiceBaseUrlWithNpTitleIdA) +STUB("wXs12eD3uvA", ilogbl) +STUB("wY1Hja4xbtY", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEdeEv) +STUB("wY5rQQnQWD0", SSL_CTX_ctrl) +STUB("wY9g+hVxLTM", _ZN3sce2np14CalloutContextD2Ev) +STUB("wYCxExkKxYA", _ZN7WebCore15SQLiteStatement22isColumnDeclaredAsBlobEi) +STUB("wYFEykrGECM", rgctx_fetch_trampoline_rgctx_1_p) +STUB("wYN5mmv6Ya8", sceGnmSqttGetHiWater) +STUB("wYRIszRYC0Y", _ZN9Inspector19InspectorAuditAgentdaEPv) +STUB("wYVuhWth0do", sceVideoCoreAddStream) +STUB("wYWYC8xNFOI", _ZTSSt9basic_iosIwSt11char_traitsIwEE) +STUB( + "wYZ0ywolE9A", + _ZN8meta_gen11MsvPromoter27setKeyValue_TBLV_AudioCodecENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB( + "wYZiMwWeTcQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEED1Ev) +STUB( + "wYgVlPBPvFs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("wYhXVfS2Et4", sceHttpDestroyEpoll) +STUB( + "wYk90daP+AY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE6resizeEj) +STUB( + "wYvnOJcQpms", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("wZ2eXClFUaE", sceLoginMgrServerDialogGetAppId) +STUB( + "wZ99D5PHv+E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEE11release_refEv) +STUB( + "wZAelMXpVAk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE5beginEv) +STUB( + "wZGgNuqYAPY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEptEv) +STUB("wZKWyC3oiZ4", uscript_isRightToLeft_67) +STUB( + "wZLOavQzUlM", + _ZN3sce2Np9CppWebApi14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBody10getPlayersEv) +STUB( + "wZQ1q5x1rww", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEC1EPS8_) +STUB("wZST0SYCWWc", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus7getInfoEv) +STUB( + "wZUxqE35ri4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "wZZjGhWcIsw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEppEv) +STUB("wZakRQsWGos", sceAudioOutExGetSystemInfo) +STUB("wZi5ly2guNw", _Exit) +STUB("wZk528e6788", WKPreferencesSetMediaUserGestureInheritsFromDocument) +STUB("wZmGZj5fkwo", _ZNK7WebCore19HTMLOptGroupElement18ownerSelectElementEv) +STUB( + "wZnbgj4T16k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEmmEv) +STUB("wZp1hBtjV1I", SSL_ASYNC_init) +STUB( + "wZrUD8baQQs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB( + "wZsOyeU0h+0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEED2Ev) +STUB("wZtLdyq2dKg", sceBluetoothHidDisconnectDevice) +STUB( + "wZuzcZ6s3lI", + _ZN7WebCore9JSElement6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_7ElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB("wZy4GYPh3jg", + _ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession21searchAttributesIsSetEv) +STUB("wZy5M6lzip0", sceNpAsmClientInitialize) +STUB( + "wa0ENtgf4mI", + _ZN3JSC12StringObject27getOwnNonIndexPropertyNamesEPNS_8JSObjectEPNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("wa0Fla8BAgo", _ZNK3sce2Np9CppWebApi14SessionManager2V16Friend6toJsonERNS_4Json5ValueEb) +STUB("wa3-drCW0hQ", _ZN3sce7Toolkit2NP2V28Commerce7Request27DisplayCategoryBrowseDialogD1Ev) +STUB("wa5hk9onoBI", + _ZN7WebCore28throwArgumentMustBeEnumErrorERN3JSC9ExecStateERNS0_10ThrowScopeEjPKcS6_S6_S6_) +STUB("wa6e-twAW6w", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE3endEv) +STUB("wa7RuAVTdZw", + _ZN15AbstractStorage12LocalContent6RenameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("wa8NEoWeUeI", _ZNK9Inspector15ScriptCallFrame9sourceURLEv) +STUB("waIF+5fE5HQ", symlink) +STUB( + "waM0cFaBPbA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEptEv) +STUB("waPcxYiR3WA", scePthreadCondattrDestroy) +STUB( + "waQeIth0ptU", + _ZNK3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBody10getPayloadEv) +STUB( + "waWmwuvoo7M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEC1EPNS2_10LibContextE) +STUB( + "waXza6OXAIM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB("wac+NJFrLjw", _ZN7WebCore16JSStringCallback11handleEventERKN3WTF6StringE) +STUB("wacOdHclu2Q", _ZN3JSC9ExecState10codeOriginEv) +STUB("wacykQ2UrWk", _ZN3WTF13allPrivilegesEv) +STUB("wadT3QBCGY0", sceKeyboardInit) +STUB( + "wadufVirZ2M", + _ZN7WebCore11MediaPlayer6createERNS_17MediaPlayerClientENS_16MediaPlayerEnums21MediaEngineIdentifierE) +STUB("waeEzwwYfZY", sceNpServiceCheckerIntAbortRequest) +STUB("waexoHL0Bf4", _WStoldx) +STUB( + "waf723vBHUc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "waic+rKvYd0", + _ZN3sce2Np9CppWebApi7Matches2V135RequestTemporaryMatchResultsFactory6createEPNS1_6Common10LibContextENS3_14ResultsVersionENS5_12IntrusivePtrINS3_33RequestTemporaryCompetitiveResultEEEPNS9_INS3_28RequestTemporaryMatchResultsEEE) +STUB("wapB9dMovnk", sceTextToSpeechSpeakImpl) +STUB("wardDDbhb30", _ZN7WebCore21DiagnosticLoggingKeys28succeededLessThan5SecondsKeyEv) +STUB( + "warsaDxzTrw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEeqERKS9_) +STUB( + "wauipyi4ao4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE8pushBackERKS8_) +STUB("waxtA2Hq4ds", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE3endEv) +STUB("wayCkcYCt8A", _ZN3sce7Toolkit2NP2V211SharedMedia10BroadcastsD1Ev) +STUB("wazw2x2m3DQ", isspace) +STUB( + "wb0neIT-WOk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEC2EPKS8_) +STUB("wb5bJ2DTstU", _ZN7WebCore11MathMLNames9depthAttrE) +STUB("wb5sAYgRno8", _ZN7WebCore8SVGNames13directionAttrE) +STUB( + "wb6DrE9SoPU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("wb8H3F+T6Ew", sceFiosClearTimeStamps) +STUB("wbFpBDuG7d8", PlayUri) +STUB( + "wbJwnUIvFHo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEppEi) +STUB("wbQLIhaKdb8", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE4sizeEv) +STUB( + "wbQjnVQyHeI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEC2ERKS7_) +STUB("wbU4k7UTZ1Y", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_12PresenceInfoEE3getEv) +STUB("wbYAWZcJiNo", sceHmdReprojectionStartCompoundEye) +STUB( + "wbaEjgNdvSE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEED1Ev) +STUB( + "wbepOPQxp+Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEC1EPNS2_10LibContextE) +STUB( + "wbl7gST+MQo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEixEm) +STUB("wbyY8kfNfaI", FTA_Add_Module_raster5) +STUB("wc+BF0ckhUk", _ZNK3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap11getOnlineIdEv) +STUB("wc+TGlgmpBk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEEdeEv) +STUB( + "wc+k3ulMh0Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEED1Ev) +STUB( + "wc29eAT9XbI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEE11get_deleterEv) +STUB( + "wcCnNqO32EI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEC2EPS8_) +STUB("wcEWUJj2LMk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEptEv) +STUB("wcEjyhkFg4c", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEED1Ev) +STUB("wcMdaOhONK0", monoeg_g_path_is_absolute) +STUB("wcMdf-kMx7o", FT_Bitmap_Embolden) +STUB("wcOCedFKan4", _ZN3sce2np9Semaphore6CreateEiiPKc) +STUB("wcOQ8Fz73+M", sceFontGraphicsRegionInitRoundish) +STUB("wcPF-KWqPe0", mono_aot_Mono_Data_Sqlitejit_code_end) +STUB("wcVuyTUr5ys", VLONG_freeVlongQueue) +STUB("wcWBEKsFbAQ", _ZTVSt9basic_iosIcSt11char_traitsIcEE) +STUB("wcWXUiFSwIE", _ZN7WebCore23visiblePositionForIndexEiPNS_13ContainerNodeE) +STUB("wcZfH4Ik-EY", + _ZN7WebCore18JSHTMLInputElement14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB( + "wce-A8JY0xs", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponse6toJsonERNS_4Json5ValueEb) +STUB( + "wceqmJ4ODg8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEC1EPKS8_) +STUB("wcgr5mte7T8", _ZNK3sce4Json5Array8iteratordeEv) +STUB("wchZ9bYTOdM", _ZNK7WebCore14DocumentLoader21archiveResourceForURLERKN3WTF3URLE) +STUB( + "wckSTjPm2uQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEC1Ev) +STUB("wcmKzVY9Vds", monoeg_g_slist_free_1) +STUB("wcnrR9-W4nU", _ZN3sce7Toolkit2NP22BlockedListInfoRequestC2Ev) +STUB( + "wcrvw1fMT4g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("wcxz4F94s6k", sceShareUtilityAdvanceWakeUpShareMenuDefault) +STUB("wcziVeTN1Mc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEaSERS7_) +STUB("wd+PTkXXAKQ", _ZNK7WebCore16HTMLInputElement13isSearchFieldEv) +STUB("wd+YWDKMTQE", _ZN3sce2np9NpTitleIdC1ERKS1_) +STUB( + "wd0tWmzbAOk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEC2EPS6_PNS2_10LibContextE) +STUB( + "wd2qX0p5x-A", + _ZN6WebKit17ChildProcessProxy18addMessageReceiverEN7CoreIPC15StringReferenceEPNS1_15MessageReceiverE) +STUB("wd3NsMeiyj4", WKFrameGetMainResourceData) +STUB("wd3t5dSrf+Y", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEE3getEv) +STUB( + "wd4TA00miTA", + _ZN7WebCore23wrapSerializedCryptoKeyERKN3WTF6VectorIhLm0ENS0_15CrashOnOverflowELm16ENS0_10FastMallocEEES6_RS4_) +STUB("wd6gQnA8uxA", _ZN15AbstractStorage18DailymotionContent5FlushEv) +STUB( + "wd8He9kUzgo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEEcvbEv) +STUB( + "wd8J06DkYP4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEeqERKS9_) +STUB( + "wdA8mYiCa5E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEmmEi) +STUB( + "wdCBfmqkcxM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "wdCZ9TnhNcE", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeaders26unsetXPsnAtomicOperationIdEv) +STUB("wdGk4zfCt70", sceVideoCoreGetThumbnail2) +STUB("wdHn7mu2XDY", JVM_RawMonitorExit) +STUB("wdKllyHxakk", + _ZN3sce2Np9CppWebApi14SessionManager2V136GetFriendsPlayerSessionsResponseBodyD2Ev) +STUB( + "wdMLvPGqbhI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEE5resetEPS9_) +STUB("wdNyuvN52Q4", _ZNK3sce2Np9CppWebApi11Matchmaking2V15Cause9codeIsSetEv) +STUB("wdPaII721tY", ynf) +STUB("wdRBDMIxI7I", sceSlimglCompositorFlushWithRepeat) +STUB("wdUufa9g-D8", dup2) +STUB( + "wdVE-l0p4iw", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEiRNS2_10LibContextEPT_m) +STUB("wdVtIsFSBCg", _ZN3JSC7Symbols21newPromisePrivateNameE) +STUB("wda1xC2CEiM", _ZNK7WebCore16HTMLInputElement15isPasswordFieldEv) +STUB( + "wdaVuxz4VWI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEE3getEv) +STUB("wdbMxG42K3c", _ZN4IPMI4impl10ServerImpl13searchSessionEjPPNS0_11SessionImplE) +STUB("wdbdMn2JHZc", _ZN3WTF11PrintStream20printfVariableFormatEPKcz) +STUB("wdl-XapuxKU", CERT_VerifyCertificatePolicies) +STUB("wdlG0uhWXQ8", ucasemap_setOptions_67) +STUB("wdtQbz77hZQ", Java_java_lang_StrictMath_rint) +STUB("wdvL7CVmWok", _ZL17_delete_with_size) +STUB("we-vQBAugV8", _CStrxfrm) +STUB("we3oTKSPSTw", sceRazorCpuTagArray) +STUB("we5t5V4Fc70", sceKernelGetForceUpdateModeForRcmgr) +STUB("we7HVzurlQM", scePssKeyboardReadState) +STUB("weALTw0uesc", _ZTISt7_MpunctIcE) +STUB("weDug8QD-lE", atanf) +STUB( + "weE-KlBm2zk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE8copyFromERKS9_) +STUB("weHzhyGPOqY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEC2EPS8_) +STUB( + "weJ7sVMp-Xo", + _ZN9Inspector23CanvasBackendDispatcher11requestNodeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "weL21YREm3k", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB("weLsgM28tbk", _ZNK7WebCore22CSSAnimationController11isSuspendedEv) +STUB( + "weOKcj6lCrE", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEEC2Ev) +STUB( + "weSJChst4EI", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessions30unsetxPsnAcceptPlatformNamePs5Ev) +STUB("weUj0OH8zx4", mono_method_get_class) +STUB("weVsBCT+TTQ", FT_Outline_Get_Orientation) +STUB("weWeRsgFPZ0", _ZN3sce7Toolkit2NP2V28Matching4Room15MAX_NUM_MEMBERSE) +STUB( + "webuoXhvq4o", + _ZN9Inspector14InjectedScript24getDisplayablePropertiesERN3WTF6StringERKS2_bRNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime18PropertyDescriptorEEENS1_13DumbPtrTraitsISC_EEEE) +STUB( + "weg52p8qZLo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEdeEv) +STUB("wejAWiNi3WM", _ZN3JSC17FuzzerPredictionsC2EPKc) +STUB("wely4nloH1g", _ZN3sce7Toolkit2NP2V211UserProfile9NpProfile17MAX_SIZE_ABOUT_MEE) +STUB("wepEQ8+9p+Q", _ZN9Inspector27AnimationFrontendDispatcher11nameChangedERKN3WTF6StringEPS3_) +STUB("wevBAVcbcII", sceCesUtf16beToEucCn) +STUB("wewK46-v8RA", _ZNK7WebCore6Cursor19setAsPlatformCursorEv) +STUB("wezXBwKdjAY", u_strstr) +STUB( + "wezlRzu+ng8", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsersC1Ev) +STUB( + "wf3TOTYzm+Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE10setContextEPNS2_10LibContextE) +STUB("wf6CfVJj9PQ", hb_ot_layout_table_get_script_tags) +STUB("wf6EuM9IZW0", _ZN9Inspector32ScriptProfilerFrontendDispatcher13trackingStartEd) +STUB( + "wf813gVN0Pk", + _ZN7WebCore16JSXMLHttpRequestC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_14XMLHttpRequestENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "wfAdCbuS7to", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("wfCKx4jRc4w", mono_aot_Sce_Vsh_PsnUtilunbox_trampolines) +STUB("wfDoJ0yldXQ", _ZN3WTF14FileSystemImpl10deleteFileERKNS_6StringE) +STUB( + "wfFIPfB4YEs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEdeEv) +STUB( + "wfGLXxHqXys", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEmmEv) +STUB("wfHaa8-Oa08", handler_block_trampoline) +STUB("wfIHsC6JMfI", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEEmmEi) +STUB( + "wfMAwMqO7ew", + _ZN3JSC23JSModuleNamespaceObject14deletePropertyEPNS_6JSCellEPNS_14JSGlobalObjectENS_12PropertyNameERNS_18DeletePropertySlotE) +STUB("wfMMpSVlls4", _ZN7WebCore32ScrollingStateFrameScrollingNode24setVisualViewportEnabledEb) +STUB("wfP0F1NEDBI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEEC1ERS7_) +STUB("wfYIRd1gBrQ", + _ZN7WebCore37BasicComponentTransferFilterOperationC2EdNS_15FilterOperation13OperationTypeE) +STUB("wfdrvK3YMjw", _ZNK3sce2Np9CppWebApi6Common8IteratorIlEptEv) +STUB("wfmOIv-V73Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE5beginEv) +STUB("wfqHM5ztNrk", _ZN7WebCore16HTMLMediaElement15togglePlayStateEv) +STUB("wfr181TfXYA", _ZN7WebCore22CSSAnimationController27resumeAnimationsForDocumentEPNS_8DocumentE) +STUB( + "wfrVXOICUws", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEEiRNS2_10LibContextEPT_m) +STUB("wg3jml40GrY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEC1ERKS7_) +STUB("wg6ha67pN3g", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119PlayStylePropertiesD2Ev) +STUB("wg6kvThzUC4", ucase_getType) +STUB("wgBMXJJA6K4", sceCameraSetExposureGain) +STUB("wgDImKoGKCM", _ZNSt11logic_errorD2Ev) +STUB("wgIKemgsVmc", WKBundleNodeHandleGetHTMLInputElementAutoFillAvailable) +STUB("wgIXtceNUzE", _ZThn16_N9Inspector14InspectorAgent7disableERN3WTF6StringE) +STUB("wgVAwa31l0E", sceUserServiceSetGlsLanguageFilter) +STUB("wgaUyb3bh0o", sceAudioOut2LoPortCreate) +STUB("wggIIjWSt-E", _ZNSt7collateIwEC1ERKSt8_Locinfom) +STUB("wgiQlxsZrYg", _ZNK7WebCore16VisibleSelection17isInPasswordFieldEv) +STUB( + "wgixLqlk+jU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEEC1ERSA_) +STUB("wgsrg1sdaHs", _ZN3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayer12setAccountIdERKm) +STUB("wgtn0xBBbF4", u_isalnum_67) +STUB( + "wgxsg2GKvAE", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetAccountId2OnlineId12getaccountIdEv) +STUB("wh0BPS24H4c", ulist_getListSize_67) +STUB("wh0hpCt-mm0", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEE7add_refEv) +STUB( + "wh4kAWLa7DE", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsersD2Ev) +STUB( + "wh8+IRNnDvc", + _ZN3sce7Toolkit2NP12ActivityFeed9Interface11getUserFeedEPKNS1_18GetUserFeedRequestEPNS1_9Utilities6FutureISt6vectorINS1_17ActivityFeedStoryENS1_15AppSTLAllocatorISA_EEEEEb) +STUB("wh8nG-MSV94", ulist_removeString) +STUB( + "whGNkG2iQ6s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEmmEv) +STUB( + "whIG7nhC3VQ", + _ZN3sce2Np9CppWebApi14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBody13getSpectatorsEv) +STUB("whRxl6Hhrzg", sceHmdInternalAnotherScreenGetFadeState) +STUB( + "whYnIMRGj3Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEEcvbEv) +STUB("whb1RL7K4Ss", sceAgcSetCxRegIndirectPatchSetNumRegisters) +STUB("whdHnfy8pXE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEE7add_refEv) +STUB("whf3SRXlvUM", _ZN7WebCore9FloatRect9intersectERKS0_) +STUB("whiHmjHx9KM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEdeEv) +STUB( + "whiKX5x0CSc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEE7get_refEv) +STUB("whnNR7vJo40", _ZN3JSC23JSModuleNamespaceObjectC2ERNS_2VMEPNS_9StructureE) +STUB("whrS4oksXc4", sceFontMemoryInit) +STUB( + "whvnS9jrhUM", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V318PsnWebErrorWrapper6toJsonERNS_4Json5ValueEb) +STUB( + "wi0ZSqvBXus", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEE5resetEPS9_) +STUB( + "wi2nosL6l1k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEC1Ev) +STUB("wi38W6Uke7w", + _ZN3sce2Np9CppWebApi14SessionManager2V124PlayerSessionPushContext16setPushContextIdEPKc) +STUB("wi3cFT1Yv9s", ps2) +STUB("wi5L94psWjQ", WKDataCreate) +STUB( + "wiDCzQ62kZg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEEC1ERSA_) +STUB( + "wiDFRhmAMgs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("wiEINApongA", _ZNK7WebCore5Frame23visiblePositionForPointERKNS_8IntPointE) +STUB( + "wiQJKzK19sw", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEEiRNS2_10LibContextEPT_m) +STUB("wiR+rIcbnlc", _ZSt4_Fpz) +STUB( + "wiRepnsbKvM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE8copyFromERKS9_) +STUB("wiT9jeC7xPw", sceSaveDataSyncSaveDataMemory) +STUB("wiXkdEzbLto", _ZN3sce2np10JsonObject8SetFieldEPKcjPPNS0_10JsonNumberE) +STUB("wibWed78GyY", sceKernelOpenEport) +STUB("wifdnhhBt-w", _ZN3sce2Np9CppWebApi15Personalization2V15Error11unsetReasonEv) +STUB("wigNLIF1CtE", sceDebugGetJobManagerSequenceInfo) +STUB("wii9zt2+wT8", _ZN7WebCore9HTMLNames13onwaitingAttrE) +STUB( + "win0kqmvdVk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE8copyFromERKS9_) +STUB("witw87BCwQw", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_21AbortGameDataResponseEE17getAdditionalInfoEv) +STUB("wivfLfaFAZg", nsnp_ActionPerform) +STUB("wivkVUSZp0g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEEC1Ev) +STUB( + "wiwhJ-h76qo", + _ZN7WebCore5Frame10createViewERKNS_7IntSizeERKNS_5ColorEbS3_RKNS_7IntRectEbNS_13ScrollbarModeEbSA_b) +STUB( + "wiy8vU-LxhI", + _ZN3sce2Np9CppWebApi14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyD1Ev) +STUB("wj+W7YDAsYA", mono_aot_I18N_CJKunbox_trampoline_addresses) +STUB("wj-U+mMbyAM", sceFiosFileWriteSync) +STUB( + "wj-gtCnx9bM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEE7add_refEv) +STUB( + "wj1jNFRE0v4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEE7get_refEv) +STUB("wj1kOyNF4vM", sceHmd2ReprojectionDisableVrMode) +STUB( + "wj2tQ1sC3RE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("wj623seXmas", _ZN3JSC7Symbols25isDerivedArrayPrivateNameE) +STUB( + "wjEqajQVMxc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEE5resetEPS9_) +STUB("wjFtVi5JXd8", _sceLibcFinalize) +STUB("wjG0GyCyaP0", iswgraph) +STUB("wjKZzSD+l+Y", _ZN3WTF16AtomicStringImpl14lookUpSlowCaseERNS_10StringImplE) +STUB("wjM4V2CBwFA", _ZN9Inspector21InspectorRuntimeAgentC2ERNS_12AgentContextE) +STUB("wjNhItL2wzg", sceNpTusChangeModeForOtherSaveDataOwners) +STUB( + "wjRVdDgsftI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEneERKS9_) +STUB("wjSdyu9YME4", _ZN12video_parser5vpcom11_CloseAsyncEPNS_8_vp_fileE) +STUB("wjYEvo4xbcA", sceNpWebApiUnregisterNotificationCallback) +STUB( + "wjciyY5IppY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE8pushBackERKS8_) +STUB("wjffxAKdynU", _ZN3JSC9Integrity6Random29reloadAndCheckShouldAuditSlowERNS_2VME) +STUB( + "wjiUFVbvUoo", + _ZN8meta_gen11MsvPromoter33setKeyValue_TBLV_BroadcastStationENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB( + "wjj3HIyL06A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB("wjlHlTsAt9I", + _ZN3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResultsC1EPNS1_6Common10LibContextE) +STUB( + "wjyDuihTuRg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEppEv) +STUB("wk+N4x6rZTg", ubidi_getPairedBracketType_67) +STUB("wk2sB--Ochw", WKPreferencesSetFontSmoothingLevel) +STUB( + "wk4h9nc6yLU", + _ZN3sce2Np9CppWebApi14ConnectAccount2V215AccountLinksApi28ParameterToDeleteAccountLink9terminateEv) +STUB("wk7T5gAoQQE", sceClHttpCreateTemplate) +STUB( + "wkAlWB3LYS8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE23clearOnFinishedCallbackEv) +STUB("wkCHQKHpRe4", _ZNK3sce2Np9CppWebApi7Matches2V119RequestInGameRoster10teamsIsSetEv) +STUB("wkE+qauDby0", WKPreferencesCopyStandardFontFamily) +STUB("wkEaOIbARu4", _ZTVN7WebCore11DisplayList11FillEllipseE) +STUB( + "wkIJZ15k9RA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEppEi) +STUB("wkIxHrwZ3+M", sceLoginMgrServerSetMorpheusRequiredUserId) +STUB("wkMHh3vaOAc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE5eraseENS2_8IteratorIS6_EERS9_) +STUB( + "wkMwBPjXlyg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE7popBackEv) +STUB( + "wkNMBc9m4Fk", + _ZN3sce7Toolkit2NP11UserProfile9Interface11getOnlineIdEPNS1_9Utilities6FutureI13SceNpOnlineIdEEPKNS1_18UserProfileRequestEb) +STUB("wkO4Gn84wrs", sceApplicationGetCanvasHandle) +STUB("wkQIXlS-Ezs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEED1Ev) +STUB("wkQR9+xTFKY", sceAmprAmmGetVirtualAddressRanges) +STUB( + "wkSzYVGNoLU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEptEv) +STUB( + "wkTEt29+9X4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEeqERKS9_) +STUB("wkUYiXcwABA", _ZN7WebCore8Document16closeForBindingsEv) +STUB( + "wkV1nZeRc3c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("wke-PxIaZQA", jpeg_set_colorspace) +STUB("wkgY4lDEV9k", _ZN3sce7Toolkit2NP2V26Trophy7Request18RegisterTrophyPackC1Ev) +STUB("wkjHgJiWE1E", _ZN3NTF15ThreadCondition9broadcastEv) +STUB( + "wkkpHpCrbS0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEptEv) +STUB("wklLVioomR8", _ZN7WebCore11DisplayList4SaveD0Ev) +STUB("wknrJ6zVkZM", _ZN3JSC22JSFinalizationRegistry9liveCountERKN3WTF6LockerINS_10JSCellLockEEE) +STUB("wkoWoPYCk+Y", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110ResultTypeEEdeEv) +STUB("wkpMPlbnk2s", u_uastrncpy) +STUB( + "wkpoP0pEb1w", + _ZN3JSC19JSNativeStdFunction6createERNS_2VMEPNS_14JSGlobalObjectEiRKN3WTF6StringEONS5_8FunctionIFlS4_PNS_9CallFrameEEEENS_9IntrinsicENS_14NativeFunctionE) +STUB("wkqJuVOPu1w", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE3endEv) +STUB("wkseM3LWPuc", sceAudioPropagationSourceDestroy) +STUB("wktCiyWoDTI", sceErrorDialogOpenWithReport) +STUB( + "wkuuqGaR4CI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser10unsetlimitEv) +STUB("wkwjz0Xdo2A", sceNpProfileDialogClose) +STUB("wl-GeZ-8gGQ", kmq_notify) +STUB("wl-mK89cDIs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEED1Ev) +STUB( + "wl-ouSCxP24", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "wl0gtsBrMq0", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124NatConnectivityToMetricsC1EPNS1_6Common10LibContextE) +STUB("wl13K7W8iRw", _ZN3sce2Np9CppWebApi14ConnectAccount2V28PSNErrorC1EPNS1_6Common10LibContextE) +STUB( + "wl1GA8QnYHg", + _ZN7WebCore30InspectorInstrumentationWebKit22shouldInterceptRequestEPKNS_5FrameERKNS_15ResourceRequestE) +STUB( + "wl2g7GlHxIY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEneERKS9_) +STUB("wl8UZHw2yFA", fuse_fs_listxattr) +STUB("wlEdSSqaz+E", _LXp_movx) +STUB( + "wlGMRTMED+A", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("wlHuQ9YdrAg", WKWebsiteDataStoreStatisticsHasIsolatedSession) +STUB("wlIcfy4NdP8", EVP_ecdsa) +STUB("wlK146pHnQ4", locale_getKeywordsStart) +STUB("wlO4ljYI06M", cairo_image_surface_create_for_data) +STUB( + "wlQnvyBv+R0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEC1Ev) +STUB("wlU6Iu7HHrE", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadDataC2Ev) +STUB("wlVbDmlcvsE", mono_aot_Sce_Vsh_SysfileUtilWrapperjit_code_end) +STUB( + "wlZmXuHrOII", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("wlgM8cLl1mQ", _ZNK3sce3Xml4Attr11isAvailableEv) +STUB("wlhojPPGYLY", rgctx_fetch_trampoline_mrgctx_97) +STUB("wllBMaXU-u8", _ZN7WebCore15DeferredPromise6rejectENS_13ExceptionCodeERKN3WTF6StringE) +STUB( + "wllHz+woGN8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "wloqXtBDoDs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEppEv) +STUB("wlxvESTUplk", sceSystemStateMgrGetTriggerCode) +STUB( + "wm-0TjSwUTc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEEC1ERSA_) +STUB("wm8iY4kA9GY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEC1ERS7_) +STUB( + "wm916etHJsE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE8pushBackERKS8_) +STUB("wm9QKozFM+s", _ZTSPKc) +STUB( + "wmASRqjb664", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEEcvbEv) +STUB( + "wmIYD63igYM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEE11release_refEv) +STUB( + "wmNkdGz6DRY", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessions37unsetxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB("wmO9vm06vE8", _ZN3sce7Toolkit2NP2V210Tournament12MatchDetails5resetEv) +STUB("wmPCi3jLSWY", mono_btls_x509_verify_param_get_peername) +STUB("wmPHfTTwYME", delegate_virtual_invoke_imt_m_12) +STUB( + "wmQxnTOOUsY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "wmcFwi8F4TE", + _ZN3sce7Toolkit2NP7Ranking9Interface24abortGameDataTransactionEPKNS1_20AbortGameDataRequestEPNS1_9Utilities6FutureINS1_21AbortGameDataResponseEEEb) +STUB("wmdQ0-bB-HA", bdjbg_getAddress) +STUB( + "wmeIeUwQoGE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEppEi) +STUB("wmgRxbLxmjE", g_strdup_printf) +STUB( + "wmh+VW1iEXw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEC1ERKS7_) +STUB("wmi-p2uDgS0", WKPreferencesSetMediaPlaybackAllowsInline) +STUB( + "wmiNTH3QnqM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEC2EPS8_) +STUB("wmkXFgerLnM", _Wcscollx) +STUB("wmkk8v-vEI0", _ZNK7WebCore21BackForwardController12forwardCountEv) +STUB("wmmdJ3Glkhs", _GLOBAL__sub_I_locale.cpp) +STUB("wmmg8TtKQgY", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeDataaSERS5_) +STUB("wmoIm94hqik", sceNetGetDns6Info) +STUB("wmrsU1v51iQ", _ZN3sce3pss5orbis5video15VideoPlayerBase15CancelLoopRangeEv) +STUB( + "wmxlO2eIAkw", + _ZN3sce2Np9CppWebApi15Personalization2V112ErrorFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_5ErrorEEE) +STUB( + "wn+ML2prt2k", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEdeEv) +STUB("wn0XQ-nHTrU", delegate_invoke_impl_target_7) +STUB("wn316XLYBO8", _ZN9Inspector32ScriptProfilerFrontendDispatcherdaEPv) +STUB("wn3UsfmQPbI", _ZN3WTF9BitVector6resizeEm) +STUB( + "wn8CSaJWbew", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE7reserveEi) +STUB( + "wn9cpcgpbzQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEE7add_refEv) +STUB( + "wnDQ1OQhVZs", + _ZN7WebCore11FileChooser11chooseFilesERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16EEE) +STUB("wnK17vsAWS8", + _ZN7WebCore22CSSAnimationController20pauseAnimationAtTimeERNS_7ElementERKN3WTF12AtomicStringEd) +STUB("wnMuJEY0ZwE", WKBundlePageSetScaleAtOrigin) +STUB("wnOj4agNOuo", mono_mempool_stats) +STUB("wnWMkCYv0m4", sceVdecCoreCreateDecoder) +STUB("wnm9XDiv+yc", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEEmmEi) +STUB("wnmjinMVP1o", _ZNK7WebCore14ScrollableArea15scrolledToRightEv) +STUB( + "wnn7JlD7SeQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEEptEv) +STUB( + "wnnDnNtFolU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEmmEi) +STUB("wny-gONKbF8", + _ZN9Inspector20InspectorTargetAgent26didCommitProvisionalTargetERKN3WTF6StringES4_) +STUB("wnzAlf1xqko", _ZNK7WebCore15StyleProperties19getPropertyCSSValueENS_13CSSPropertyIDE) +STUB("wo6+V7jxzG0", sqlite3_busy_handler) +STUB("woB-r3hY2Jo", _ZN3sce7Toolkit2NP2V28Commerce7Request13GetCategoriesD1Ev) +STUB("woFiOo3Dy2k", Java_com_sony_gemstack_org_havi_ui_HBackgroundImageDecoder_loadStream) +STUB("woGXdge3elg", _ZN7WebCore11MediaPlayer9setVolumeEd) +STUB("woNpu+45RLk", sceUserServiceGetAgeLevel) +STUB("woOjHrkjIYg", sceFontGetRenderEffectWeight) +STUB( + "woPfFeWQXBs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE5beginEv) +STUB("woQta4WRpk0", setstate) +STUB( + "woSh2q66JsA", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanity13isInitializedEv) +STUB( + "woZc2gIgOJ0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEeqERKS9_) +STUB("woec1toi4Xw", _ZN3sce4Json5Array8pop_backEv) +STUB("woiQjVObPyE", _ZN3sce7Toolkit2NP2V212EventsClient7Request9GetEvents13MAX_PAGE_SIZEE) +STUB("wokDNP+QIVo", _ZN7WebCore17HistoryController33restoreScrollPositionAndViewStateEv) +STUB("wone-rWxGj8", _ZN4Manx7Network6callocEmm) +STUB("wow7z65IAUA", _ZN3JSC7Symbols25getPrototypeOfPrivateNameE) +STUB("wozVkExRax4", _ZGVNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE) +STUB( + "wp8+c84G5Xw", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser10initializeEPNS1_6Common10LibContextEPKcSA_) +STUB( + "wp88+fHA+V8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEEC1ERSA_) +STUB( + "wpB8YBPBHLQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEE7add_refEv) +STUB( + "wpJc1af1Pf0", + _ZN8meta_gen11MsvPromoter8makeDataEP30MsvFilePromoteInnerInformationP19MsvStorageInterfaceP20MsvCancelInterface_tP22MsvPromoteInnerContext) +STUB("wpMHmauFaok", sceMbusDebugStartApplication) +STUB("wpNJwmDDtxw", _Unwind_RaiseException) +STUB("wpVk0ZMVrgc", Java_com_sony_bdjstack_javax_media_controls_VideoDecoder_getAspectRatio) +STUB( + "wpaLSvbAuvw", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "wpaaZ6UTMX0", + _ZN3sce2Np9CppWebApi13InGameCatalog2V524ContentDescriptorFactory7destroyEPNS3_17ContentDescriptorE) +STUB("wpdqNpD4Oiw", _ZN7WebCore9FrameView46resumeVisibleImageAnimationsIncludingSubframesEv) +STUB("wpeyFwJ+UEI", sceCameraSetVideoSync) +STUB( + "wpgFYvMIYFA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEE11get_deleterEv) +STUB("wplWEywqaB8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEC2Ev) +STUB("wpm6Yq7c4YE", sceMbusSetAutoLoginMode) +STUB("wpmdn-sgNnA", mono_aot_Sce_Vsh_MyGameListplt_end) +STUB( + "wpoLBwYWzV0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("wppQMWb54-c", _ZN7WebCore15JSDOMWindowBase25willRemoveFromWindowProxyEv) +STUB("wps6M1FgHE4", sceUltGetConditionVariableInfo) +STUB("wpuIiVoCWcM", _Cnd_unregister_at_thread_exit) +STUB( + "wpwlYjCcoQA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEEC2ERSB_) +STUB( + "wq2qZCnqQ5o", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser13isInitializedEv) +STUB("wq9ovitmhDY", utrie2_clone_67) +STUB( + "wqHK7gA8TAY", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanity9terminateEv) +STUB("wqT2JkU-DlM", mono_aot_Sce_Vsh_RnpsAppMgrWrapperunbox_trampolines) +STUB("wqT9gHXJ1Ag", _ZN7WebCore8Document11styleSheetsEv) +STUB( + "wqVz3uk6yh0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEE11get_deleterEv) +STUB("wqX2adojDcQ", t1_cmap_classes) +STUB( + "wqdQwlli2As", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEED2Ev) +STUB( + "wqeztUqcGfM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEEaSERKSA_) +STUB("wqhRTaTyx9k", _ZN9Inspector21InjectedScriptManager20injectedScriptSourceEv) +STUB("wqmZ0fFZC-s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEE3getEv) +STUB("wqsJvRXwl58", sceImeDialogGetPanelSize) +STUB( + "wqssY87NA7k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEC2Ev) +STUB("wqwAA9+g8nI", GCC_except_table2) +STUB("wqy12obc2tI", _ZN3sce2Np9CppWebApi13InGameCatalog2V55ImageC2EPNS1_6Common10LibContextE) +STUB("wqz7049QaFY", sceMbusGetDeviceInfoByBusId) +STUB( + "wr+r0z62D0Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEEC1ERKSA_) +STUB( + "wr-MBcv5iAY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEE5resetEPS6_) +STUB("wr-YBWA7pdY", AES_set_decrypt_key) +STUB("wr23dPKyWc0", sceAgcCbReleaseMem) +STUB( + "wr3SNhigjD8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEE7get_refEv) +STUB( + "wr4hgoa+q28", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "wr6EWehyZ7E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEED2Ev) +STUB( + "wr7CFBuL-O0", + _ZN3sce2Np9CppWebApi14SessionManager2V160PostGameSessionsSessionIdMemberSpectatorsResponseBodyFactory7destroyEPNS3_53PostGameSessionsSessionIdMemberSpectatorsResponseBodyE) +STUB( + "wrBaVDnhIus", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEC1Ev) +STUB("wrImtTqUSGM", sceNpTusGetFriendsVariableAAsync) +STUB("wrR3T5i7gpY", _ZNSt10moneypunctIcLb0EEC1ERKSt8_Locinfomb) +STUB("wrViKyVxU7w", _ZN7CoreIPC10Connection18platformInvalidateEv) +STUB("wrXoaAVpSC8", _ZN3sce2Np9CppWebApi6Common18ResponseHeaderBaseC1Ev) +STUB("wranYyxOhKI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEEdeEv) +STUB("wrb3I3Ze1C8", jpeg_resync_to_restart) +STUB( + "wrjmSQBJYfk", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V120ErrorResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_13ErrorResponseEEE) +STUB( + "wrn8dpfNGYw", + _ZN3JSC4Yarr17RegularExpressionC1ERKN3WTF6StringENS0_19TextCaseSensitivityENS0_13MultilineModeENS0_11UnicodeModeE) +STUB( + "wrsrG0VvApc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "wruc-v0IjkQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEixEm) +STUB("wrvImDVG0oI", mono_class_name_from_token) +STUB("ws2+DizWbiA", mono_aot_Sce_Vsh_Np_ServiceChecker2jit_code_start) +STUB("ws3SV2Lco9Q", _ZN7WebCore15GraphicsContext18setShouldAntialiasEb) +STUB("ws3x3yjUyeE", _ZN3sce2np9HttpTrans23SetRequestContentLengthEm) +STUB("wsDL-mZT9kk", WKBundleFrameCopyMarkerText) +STUB("wsDgvrp7L+s", + _ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody16setMaxScoreLimitERKl) +STUB("wsEuLCHNws4", _ZN3sce7Toolkit2NP2V24Core17CustomRequestBaseC2ERKS4_) +STUB("wsHBBoanjUE", mono_aot_Sce_Vsh_VideoRecordingWrapperplt_end) +STUB( + "wsHGxMKlGEs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEC1ERS7_) +STUB("wsJi8j+bReE", _sceNpManagerDefaultMallocImpl) +STUB("wsMiVPm1q5Y", _ZNK7WebCore9ImageData4sizeEv) +STUB("wsPFPZ9PXuE", _Mbtowcx.initial) +STUB("wsYj-RibX+8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEptEv) +STUB("wsfyvM+VbUk", _sceNpHeapRealloc) +STUB( + "wsjs8zB9pZY", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer22unsetuseCurrencySymbolEv) +STUB( + "wslsrv65YlU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEC2Ev) +STUB( + "wt+XIZqOSYk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEEC2Ev) +STUB("wt1EzCRjrnQ", __tsan_write16) +STUB("wt3qUO8WM3U", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead19getLeaderPrivilegesEv) +STUB("wt5Hku2i1nY", HMAC_Final) +STUB("wt9vj056mm8", _ZN3sce7Toolkit2NP2V26Trophy7Request18RegisterTrophyPackC2Ev) +STUB("wtC7YtnXtl8", + _ZN3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayer8fromJsonERKNS_4Json5ValueE) +STUB( + "wtCqSLXjHQ0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEE11get_deleterEv) +STUB( + "wtD-G91PM1U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEE11get_deleterEv) +STUB("wtDBw-PQhB8", _ZN3sce3Xml3Dom6NodeIdaSES2_) +STUB( + "wtEzX+eFNg4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEED1Ev) +STUB("wtGdruHZH54", _ZN12video_parser18cProfileCheckerMp415isPlayableVideoERKNS_13VpMediaInfo_tE) +STUB( + "wtIsmGU5oZo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEED1Ev) +STUB("wtNEh1E9ALA", sceShellCoreUtilChangeRunLevel) +STUB("wtRfzEatT-A", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE8copyFromERKS7_) +STUB( + "wtRpixAI5nc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEEptEv) +STUB("wtSeaM-ASQM", _ZNK9Inspector14FrontendRouter9sendEventERKN3WTF6StringE) +STUB( + "wtU16nMAos0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEC1Ev) +STUB("wtYQga8KPmc", + _ZN7WebCore22SkewTransformOperation6createEddNS_18TransformOperation13OperationTypeE) +STUB( + "wtZjdBIuTQ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("wtaQ6KY2w5w", d2i_PrivateKey_bio) +STUB("wtfLylhLraw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEE3getEv) +STUB("wtkt-teR1so", pthread_attr_init) +STUB( + "wtmczRQGNQY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("wts8U0YjzRs", WKPreferencesSetGamepadsEnabled) +STUB("wtsKupaBsyk", _ZN3sce7Toolkit2NP2V28Commerce7SkuInfo12SKU_NAME_LENE) +STUB("wtt3bMa7d3c", mono_aot_Sce_Vsh_PsnUtilmethod_addresses) +STUB("wtwkSorHafA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V114SearchOperatorEEeqERKS7_) +STUB( + "wu9X75DVt1A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE7reserveEi) +STUB("wuAQt-j+p4o", exp2f) +STUB("wuCroIGjt2g", open) +STUB( + "wuH7SumxAIA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEneERKS9_) +STUB("wuHXJ3Gf3Pw", + _ZN3sce2Np9CppWebApi14SessionManager2V112NonPsnLeader8fromJsonERKNS_4Json5ValueE) +STUB("wuI7c7UNk0A", sceUserServiceRegisterEventCallback) +STUB( + "wuK0aVDaGtA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEE7add_refEv) +STUB("wuKE2HtEBv8", WKPreferencesSetSmartInsertDeleteEnabled) +STUB("wuO6ywpV88M", _ZN3sce7Toolkit2NP2V26Friend7FriendsC2ERKS4_) +STUB("wuOrunkpIrU", _ZTVSt17bad_function_call) +STUB( + "wuT6Q5sL5Io", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEEC1ERKSA_) +STUB( + "wuW1UPrpmHY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("wuZWrED-ZR8", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi27ParameterToLeaveGameSessionaSERS5_) +STUB( + "wuaM6ZnZU74", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEaSERKS9_) +STUB( + "wuaVabiE21w", + _ZN3sce7Toolkit2NP8Matching9Interface12quickSessionEPKNS1_21SearchSessionsRequestEPNS1_9Utilities6FutureINS1_18SessionInformationEEEb) +STUB( + "wueqXsTnIew", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEE3getEv) +STUB("wuettmP-HHY", _ZNK3sce2Np9CppWebApi7Matches2V121ResponsePlayerResults7getRankEv) +STUB("wufj+gE6dw8", sceNpSessionSignalingManualUdpAbortConnection) +STUB("wuiJZ6Iy6Mc", T_CString_toUpperCase) +STUB("wuik+woCHt8", _ZN3sce7Toolkit2NP2V24Auth7Request10GetIdToken14MAX_SIZE_SCOPEE) +STUB( + "wunKhwzbMIQ", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Console12ChannelLevelEEESt8optionalIT_ERKN3WTF6StringE) +STUB("wuofk67iiw8", g_shared_slist_free) +STUB("wupHEf8WOhM", sceNpMatching2SignalingSetPort) +STUB( + "wupUdUFU-f4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEE7add_refEv) +STUB("wurmB0Y21Xs", _ZN9Inspector22RemoteInspectionTargetC2Ev) +STUB( + "wutdNAxORmk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("wuxc928fFWI", _ZN7WebCore5FrameD1Ev) +STUB("wv+exEIuY8I", mono_jit_thread_detach) +STUB( + "wv+uok7-UBk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlot9terminateEv) +STUB("wv2pUs9uypk", RSA_check_key) +STUB("wv2pdoxb-UQ", uloc_toUnicodeLocaleKey_67) +STUB("wv3u3hHm49g", _ZNK3sce16CommonDialogUtil6Server9isSetDataEv) +STUB("wv98Lg06pw8", _ZN12video_parser17cVideoProfilerMp417_createVideoCodecEjPNS_13VpMediaInfo_tE) +STUB("wvB-vvrz6Es", _ZN9Inspector22PageFrontendDispatcherdaEPv) +STUB( + "wvDKH1RiZhU", + _ZN15AbstractStorage14StorageManager16NotifyWriteCloseERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("wvEuxS8THyg", g_string_append_len) +STUB("wvIL7UyShfk", create_state_record_for) +STUB("wvS9v2o0piQ", _ZN7WebCore18TextureMapperLayer21setBackfaceVisibilityEb) +STUB( + "wvVHCC8H1kM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE8copyFromERKS9_) +STUB("wvYYiy75zIg", _ZN3sce7Toolkit2NP2V23TUS14DataContentionD1Ev) +STUB( + "wvYbrMZIWps", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEC1Ev) +STUB( + "wvbNP+CPA1c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEaSERKS9_) +STUB("wvc0E5cTehw", sceWorkspaceGetPendingUpdateEntries) +STUB("wveDdcyazjU", _ZN12video_parser5vpcom5_OpenEPcS1_PPNS_8_vp_fileE) +STUB( + "wveh518ilBI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEEaSERSA_) +STUB("wvmDxUD2G-Y", _ZN3sce7Toolkit2NP2V24Core7Request17ExternalAllocatorC2Ev) +STUB( + "wvnTRM83N8A", + _ZN3JSC8Bindings13RuntimeObject23throwInvalidAccessErrorEPNS_14JSGlobalObjectERNS_10ThrowScopeE) +STUB( + "wvnZIveWCM0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("wvqDod5pVZg", posix_spawnattr_getsigmask) +STUB("wvuUDv0jrMI", sceNetRecvmsg) +STUB("wvxn+5DjD2E", _ZNK7WebCore15GraphicsContext6getCTMENS0_18IncludeDeviceScaleE) +STUB( + "ww1DUG2Ryrc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEaSERS7_) +STUB("ww1hNbx-IdQ", mono_aot_Sce_Vsh_Orbis_Bgftmethod_addresses) +STUB("ww3UUl317Ng", _ZNKSt22_System_error_category23default_error_conditionEi) +STUB("ww84UvJnzCY", _ZN7WebCore9HTMLNames24onaccessiblesetvalueAttrE) +STUB("wwCg7TqLgJ0", mono_assembly_names_equal) +STUB("wwDnDDsQVc0", _ZNK3sce4Json6String4findEPKcmm) +STUB("wwM99gjFf1Y", sceAvPlayerCurrentTime) +STUB("wwNmjWmlsls", _ZN7WebCore20ResourceLoadObserver14sharedIfExistsEv) +STUB("wwOr3NA7FRc", T_CString_integerToString) +STUB("wwa0VBO4qGo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ChildActivityAvailabilityEEdeEv) +STUB("wwa18JPi0d8", + _ZN7WebCore12JSTimeRanges15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB("wwc2N-3c9no", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEptEv) +STUB( + "wwgvNe9YUl4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEEC1ERKSA_) +STUB("wwhRQ4xVAbE", rgctx_fetch_trampoline_rgctx_20) +STUB( + "wwjCjtyh2EQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEeqERKS9_) +STUB("wwpRNgW81Cs", sceLncUtilLoadExec) +STUB( + "wwsoDm+0Uo4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEED1Ev) +STUB("wwudiUTbQqc", mono_aot_Sce_Vsh_Np_Trophyunbox_trampolines) +STUB("wwyXc68wvnA", get_module_info_list) +STUB("wx3F3oIzsnI", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEEptEv) +STUB( + "wx8esAtU1wE", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEiRNS2_10LibContextEPT_m) +STUB("wx9TDplJKB4", scePlayGoDialogGetResult) +STUB( + "wxEFNQ46DrM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEC2Ev) +STUB("wxEMfjv1CKI", uprv_convertToLCID) +STUB( + "wxNoewChZ2M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE5clearEv) +STUB("wxOGIkMHz8w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEaSERKS7_) +STUB("wxOWH7WVHa0", _ZN3WTF11ThreadGroup3addERKNS_14AbstractLockerERNS_6ThreadE) +STUB( + "wxOa6oKNcR4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEE7add_refEv) +STUB( + "wxP5KJug-vk", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13string10IsSetEv) +STUB( + "wxTfb+3Oqj4", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3CSS17CSSPropertyStatusEEESt8optionalIT_ERKN3WTF6StringE) +STUB("wxa7G9oh+gM", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError9setReasonEPKc) +STUB( + "wxbgwFfJaLk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE7reserveEi) +STUB("wxirhbbuv84", u_isUUppercase) +STUB( + "wxizIS2cXrg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("wxmwEoR8Uuw", kldload) +STUB("wxmyc+71ijI", sceMbusConvertToLocalDeviceId2) +STUB("wxp0--c0U4g", _ZN3sce2Np9CppWebApi12Leaderboards2V15EntryC2EPNS1_6Common10LibContextE) +STUB( + "wxrB06iK4Jc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEdeEv) +STUB("wxueDeVwBzM", _ZN7WebCore10FileSystem14MappedFileDataD2Ev) +STUB("wxvih+mlh9I", _ZN3JSC14ArrayPrototype6s_infoE) +STUB( + "wy0Twe1Mu2A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE7popBackEv) +STUB( + "wy8n7600AnQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEE5resetEPS9_) +STUB("wyBXqc+sMkM", _ZN3sce7Toolkit2NP2V28Commerce7Request29DisplayVoucherCodeInputDialogD2Ev) +STUB( + "wyEuZhFhbOE", + _ZN15AbstractStorage4Item8set_metaERN23sceMetadataReaderWriter8MetadataERKSbIcSt11char_traitsIcENS_8StlAllocIcEEESA_) +STUB( + "wyFsYg0I4GI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEE5resetEPS6_) +STUB( + "wyGSRMNB-Dk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEEdeEv) +STUB("wyHEcvcomPY", _ZN3sce7Toolkit2NP23CategoryInfoInputParamsC1Ev) +STUB("wyKFUOWdu3Q", sceFontWritingLineWritesOrder) +STUB("wyMVddyr5pM", _Z26sceRazorGpuThreadTraceStopPN3sce3Gnm17DrawCommandBufferE) +STUB("wyMkX6F1ijI", WKPageGetContentsAsString) +STUB("wyMpl9JQ35A", + _ZNK3sce2Np9CppWebApi7Matches2V124RequestCompetitiveResult18playerResultsIsSetEv) +STUB("wyOUIvHW0EE", WKPageSetCustomUserAgent) +STUB( + "wyOdOMHofOE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE3endEv) +STUB("wyU98EXAYxU", sceCameraAudioReset) +STUB("wyXkR6TfWWQ", _ZN3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectatorD2Ev) +STUB("wybPkXuWnoE", u_enumCharTypes) +STUB( + "wye0fos4iBE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEdeEv) +STUB("wyhPDqTVXp0", g_log) +STUB("wyivI8dViTw", _ZN3JSC10ConfigFileC1EPKc) +STUB( + "wyj62bHdCBI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEEC1ERSA_) +STUB("wyjo39YYJYE", _ZN3NTF5Cache16DiskCacheManager10initializeEPKc) +STUB("wynVOzUT0WY", _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession16unsetSearchIndexEv) +STUB("wypyvhVuLyY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEaSERKS9_) +STUB("wysUOmlzXkE", mono_aot_Sce_Vsh_PsnMessageUtilunwind_info) +STUB("wyvlEgZ-55w", sceNpMatching2GetLobbyInfoList) +STUB( + "wyyvee2yVG4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE8capacityEv) +STUB( + "wyzOjTPKy9Q", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersC1ERS5_) +STUB( + "wz4o75sM+yU", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V133BandwidthDownstreamMetricsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_26BandwidthDownstreamMetricsEEE) +STUB("wz5xdJm7GsY", _ZN7WebCore12EventHandler23setImmediateActionStageENS_20ImmediateActionStageE) +STUB( + "wz8E5ZPl0LE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEdeEv) +STUB("wzDVSHoU54o", sceAppInstUtilInstall) +STUB("wzHToVdMoLA", sceClHttpCreateEpoll) +STUB( + "wzI5coqdDm0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("wzKD2FLvwEg", __tsan_atomic8_fetch_or) +STUB( + "wzPnRMhBvY0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEixEm) +STUB("wzQ6l9N1svA", WKPreferencesSetKeygenElementEnabled) +STUB("wzQVKDTRqGA", ScePsmMonoArrayElementType) +STUB("wzTeHvzmD-Q", _ZN7WebCore12TextIterator7advanceEv) +STUB("wzcMWoLSyoI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEEdeEv) +STUB( + "wzepHFTyUV4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE3endEv) +STUB("wzfUZV6ZcM4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEE5resetEPS5_) +STUB("wzg3WcRMCfg", _ZN7WebCore21ISOTrackEncryptionBoxD2Ev) +STUB( + "wzl9X-9W2zM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEixEm) +STUB("wzlainWo3eE", + _ZNK3sce2Np9CppWebApi14SessionManager2V128ResponseGameSessionSpectator12getAccountIdEv) +STUB("wzm2XBeo-QA", _ZNK7WebCore18SecurityOriginData12isolatedCopyEv) +STUB("wzqAM7IYGzU", _ZN3sce2np8JsonFileD1Ev) +STUB("wzr6GTOo9Dw", sceVisionManagerOpen) +STUB( + "wzsrWjMssGE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE21intrusive_ptr_add_refEPS9_) +STUB("wzu8fkKsGPU", _ZNK7WebCore20TransformationMatrix7mapQuadERKNS_9FloatQuadE) +STUB( + "wzu9ApfQtos", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSB_) +STUB("wzvqT4UqKX8", sceKernelLoadStartModule) +STUB("wzzIp0t1OzU", _ZNK15AbstractStorage14TwitterStorage13GetCapabilityEv) +STUB( + "x+-ckRh2B+I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEE5resetEPS9_) +STUB("x+0LGhJIwNU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEppEv) +STUB( + "x+0i4BLFtUA", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayer35hasxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB( + "x+HNgzZXyqU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE3endEv) +STUB("x+JkNr3eoxs", sceKernelCallIndirectBuffer3) +STUB("x+LtLglMhq0", + _ZN7WebCore11JSDOMWindow10putByIndexEPN3JSC6JSCellEPNS1_14JSGlobalObjectEjNS1_7JSValueEb) +STUB("x+Njtyfrolg", _ZN3sce7Toolkit2NP2V210Tournament13OneVsOneMatchD1Ev) +STUB("x+PBjiexUWI", WKPageSetApplicationNameForUserAgent) +STUB( + "x+R1-6MhYtk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE3endEv) +STUB( + "x+Xddbzup0A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("x+Zqfr2TmKs", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend16FriendsOfFriendsEED2Ev) +STUB("x+ZxRNVDnQ0", _ZN3sce7Toolkit2NP2V24Core17CustomRequestBaseC1Ev) +STUB( + "x+bH7Ykt6bc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB("x+cnsAxKSHo", sceNetCtlGetNatInfoIpcInt) +STUB("x+e5jfR5gbc", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V18Variable11slotIdIsSetEv) +STUB( + "x+geCt730S8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE5clearEv) +STUB( + "x+jZ+7cfi9s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEC1ERS7_) +STUB( + "x+jqljfFu5I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEE7get_refEv) +STUB( + "x+nxQC52xh4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEED1Ev) +STUB( + "x+uE1eXSdSc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB("x-+VBgfltm0", _ZN3sce7Toolkit2NP2V212EventsClient5EventC1ERKS4_) +STUB("x-04iOzl1xs", copysignf) +STUB("x-2E-Ys4WR4", _ZNK7WebCore5Range32compareBoundaryPointsForBindingsEtRKS0_) +STUB( + "x-45WOaqFrQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEC1EPKS8_) +STUB( + "x-6qQFDDWu4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEmmEv) +STUB("x-GADNupuTw", u_terminateUChars_67) +STUB("x-Jdve+yCj8", mono_domain_set_config) +STUB( + "x-K2rRqpWBI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEeqERKS9_) +STUB( + "x-KeYbbkESg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE10setContextEPNS2_10LibContextE) +STUB( + "x-P5fvJh-3Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEE11release_refEv) +STUB("x-SSNEsxvWU", _ZN7WebCore21DisplayRefreshMonitorD0Ev) +STUB("x-TnfqNALJE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEcvbEv) +STUB("x-U1t6zrlNg", delegate_invoke_impl_target_0_p) +STUB("x-U4mJWRcNI", sceAvSettingSetVideoOutSource) +STUB( + "x-hfyNZxHtM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEeqERKS9_) +STUB("x-mbDkDf0Fk", sceImeBackendBackspaceCharacter) +STUB("x-qJ+Gn7tlE", _ZN3sce7Toolkit2NP2V24Core12ResponseDataD1Ev) +STUB( + "x-t2kXmLeJs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEptEv) +STUB("x-v44qRnzVA", sceKernelAprCtrl) +STUB("x-za71ceNzM", _ZN7WebCore13MIMETypeCache13canDecodeTypeERKN3WTF6StringE) +STUB("x01jxu+vxlc", sceImeDialogGetResult) +STUB("x04CquQRWyI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEC2ERS7_) +STUB( + "x0Brkub1MVM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEplEm) +STUB("x0CT-AkKsBI", + _ZN3JSC4callEPNS_9ExecStateENS_7JSValueENS_8CallTypeERKNS_8CallDataES2_RKNS_7ArgListE) +STUB("x0DZ4jSUQBM", + _ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody21unsetComparedDateTimeEv) +STUB( + "x0GAKVp21YQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE8copyFromERKS9_) +STUB( + "x0K9OBt05M0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEppEv) +STUB( + "x0NpPFip64s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEED1Ev) +STUB("x0OZJuCAlAo", WKPreferencesSetReferrerPolicyAttributeEnabled) +STUB("x0OgOogmxQM", _ZNK7WebCore12NamedNodeMap4itemEj) +STUB( + "x0PSo89uugM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("x0SVrzZN7bg", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead19getCreatedTimestampEv) +STUB("x0UkrHRXP-M", rgctx_fetch_trampoline_rgctx_33_p) +STUB( + "x0c7V+oVGT8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("x0iW5Wp59go", _WLdtob.Inf) +STUB("x0oTVOySvTU", sceRegMgrSrvGetRealMachineType) +STUB("x0qQft2uK1M", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEEixEm) +STUB("x0rDFBY8wus", _ZN7WebCore16DatabaseProviderD1Ev) +STUB( + "x0rFpK0CYWg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEppEi) +STUB("x0slGBQW+wY", sceVoicePausePort) +STUB( + "x1+ZUeM71hw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEaSERKS7_) +STUB("x14XFcPNLJU", sceAvSettingAddCallbacksForSocialScreen) +STUB("x1AP-G3h75A", _ZN7WebCore21RemoteCommandListener6createERNS_27RemoteCommandListenerClientE) +STUB( + "x1SNXYN7BMc", + _ZN7WebCore14DocumentLoader16responseReceivedERNS_14CachedResourceERKNS_16ResourceResponseEON3WTF17CompletionHandlerIFvvEEE) +STUB("x1UB9bwDSOw", sceSystemServiceDisableMusicPlayer) +STUB("x1X76arYMxU", scePthreadAttrGet) +STUB("x1Y7yiYSk7c", sceNpWebApiCreateContext) +STUB("x1lSidy2jos", _ZN12video_parser17cTsFFLHndlManagerD1Ev) +STUB( + "x1mUEbuU+LQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEEC1Ev) +STUB( + "x1ni-ESKA3o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEC1ERKS7_) +STUB("x1qOW7nJmTI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEixEm) +STUB("x1rX1MnIGsY", WKPreferencesSetIsITPDatabaseEnabled) +STUB("x1vTXM-GLCE", _ZNSt14numeric_limitsIbE6digitsE) +STUB("x1zDWttcIpQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEEC2Ev) +STUB("x2-o9eBw3ZU", sceSystemServiceNavigateToGoHome) +STUB("x24L8vgb3Wo", WKPreferencesSetLinkPreloadEnabled) +STUB("x24tEAC59g0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE8pushBackERKS6_) +STUB( + "x2AvUWcCuqs", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesC2EPNS1_6Common10LibContextE) +STUB("x2Bw3o33jBY", WKBundleNavigationActionGetShouldTryAppLinks) +STUB("x2EFECqrLYI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEEC1EPS6_) +STUB("x2Ksjt250dk", delegate_virtual_invoke_imt_24_p) +STUB("x2S70omOz8k", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_6NpUserEE8allocateEmPKv) +STUB( + "x2SO4giawto", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "x2STgP6CSrw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEEC2ERS9_) +STUB( + "x2XLaUgQvOs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("x2Zc5mg3MT4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEptEv) +STUB("x2b3n6CWpSc", __cxx_global_var_init .27) +STUB("x2nJkPwKx04", sceOpusDecDecodeFloatWithPriorityAndTimeout) +STUB("x2oy+FMgElQ", delegate_invoke_impl_target_6_p) +STUB("x2tlaNw89TU", _ZN7WebCore10parseRangeERKN3WTF6StringERxS4_S4_) +STUB("x2xwtORZ9vM", mono_aot_Sce_Vsh_Sticker_StickerLibAccessorplt_end) +STUB("x2y7V2Cx8gc", rgctx_fetch_trampoline_rgctx_27_p) +STUB( + "x2za5Um52I4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEE11release_refEv) +STUB( + "x3-ui+WUwGE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEaSERS7_) +STUB( + "x31TzMJZl68", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("x32H0fUz6a4", mono_aot_ReactNative_PUIunbox_trampoline_addresses) +STUB( + "x32xAI4h4XY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEmmEv) +STUB("x32zUERnINY", _ZN9Inspector18InjectedScriptHost19isHTMLAllCollectionERN3JSC2VMENS1_7JSValueE) +STUB("x34TwRfJjZs", _ZNK3JSC12DateInstance29calculateGregorianDateTimeUTCERNS_2VM9DateCacheE) +STUB("x39L8AYS1VE", mono_profiler_install_iomap) +STUB("x3ClVaLIb1I", _ZN3sce7Toolkit2NP2V212NetworkUtils13NetStateBasic8deepCopyERKS4_) +STUB( + "x3G5RSdGS+A", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi42ParameterWithBinaryRequestBodyToUploadDataD2Ev) +STUB("x3HHFYSGufU", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error8fromJsonERKNS_4Json5ValueE) +STUB("x3K61sY5m8Q", sceAgcDriverSysEnableSubmitDone45Exception) +STUB( + "x3Klzcfxxv4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEppEi) +STUB( + "x3LhxXjWNqk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEppEv) +STUB("x3MYWe-pXzE", mono_aot_System_Reactive_Corejit_code_start) +STUB( + "x3UvJl6byuk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEEC1ERSA_) +STUB("x3W40-ViYoI", delegate_virtual_invoke_29) +STUB( + "x3ixpcz+b-g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEE7add_refEv) +STUB( + "x3npKS-hxa0", + _ZN15AbstractStorage15FacebookService23create_storage_instanceERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB( + "x3sn--uj+fw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEEaSERSA_) +STUB("x3u2afS3nMo", _ZN7WebCore9HTMLNames13onkeydownAttrE) +STUB("x3x3Qz5F8ZI", _ZN3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead13unsetOnlineIdEv) +STUB("x4-3rrCkF1s", pa_pop_marker) +STUB("x446yQG1vbo", _ZN3sce7Toolkit2NP2V24Core7Request21BehaviorModificationsD2Ev) +STUB("x49BHJ1GkTA", X509_get0_notAfter) +STUB( + "x4AI8dPkg1g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEixEm) +STUB("x4AUdbhpRB0", _ZN3sce4Json5ValueC1Em) +STUB("x4CazkClw00", _ZN9Inspector20DOMBackendDispatcherD1Ev) +STUB( + "x4F7vCkU7Z8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB( + "x4G-29np7pM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEC1Ev) +STUB( + "x4HfuLOYwlo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEppEv) +STUB("x4ODe4nEtxE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEEaSERS7_) +STUB("x4QytmKUIr8", _ZN4Manx4Pipe6createEPiS1_) +STUB( + "x4StMjMgcWQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEE3getEv) +STUB("x4SuxMR26I4", _ZNK3sce4Json6String4findEcm) +STUB( + "x4TQqifCI1E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEC2Ev) +STUB( + "x4VzGj2Puzs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEC2Ev) +STUB("x4W7eWiDXm4", mono_aot_System_Reactive_Linqunwind_info) +STUB( + "x4WgOx9wwG4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEixEm) +STUB( + "x4eEc+xVkQ0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEC1Ev) +STUB("x4ecR8nY5zo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEE3getEv) +STUB("x4fETeuAcVU", CryptographyDecryptAES128CBC) +STUB("x4lSE7dbIk0", udatpg_getDateTimeFormat_67) +STUB( + "x4lSqRDWELs", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEEC2ERKSC_) +STUB( + "x4se1u3Rzwk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "x4sp8UN8lkQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliSB_PvEPFvliSF_ESF_) +STUB("x4t1dx2puc8", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging16GameDataMessagesEE12deepCopyFromERS7_) +STUB( + "x4tzeu8o2ak", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEppEi) +STUB("x4vQj3JKKmc", pthread_mutex_getspinloops_np) +STUB( + "x4wkOK84sBs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEdeEv) +STUB( + "x5+-LBUvGZo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB( + "x51mSQN3qnU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEEC2ERSA_) +STUB("x538fD7WHSk", mono_debug_open_image_from_memory) +STUB( + "x55nI-tKPqA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("x55q-bC-i+8", FcPatternGetLangSet) +STUB( + "x5AaeU17S+Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEED2Ev) +STUB("x5Ab8Um6X3k", WKBundlePageCanHandleRequest) +STUB("x5CG2VMX4WM", vm_send_MapFile) +STUB("x5CgqP9ManE", WKPageTerminate) +STUB("x5CxXKVuMeU", _ZN7WebCore18TextureMapperLayerdaEPv) +STUB("x5ETQ5yFeCE", _ZN7WebCore11RoundedRectC2ERKNS_10LayoutRectERKNS_10LayoutSizeES6_S6_S6_) +STUB("x5FvFAajrAg", _ZN3sce7Toolkit2NP2V27NpUtils12Notification15UserStateChangeC1ERKS5_) +STUB( + "x5G3oECDx0c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEC1EPKS8_) +STUB("x5MKM-6mgNs", udat_applyPatternRelative_67) +STUB("x5PHjJsfkoU", _ZN3WTF11fastReallocEPvm) +STUB("x5RhYy0RLb4", _ZN9Inspector28InspectorScriptProfilerAgentC1ERNS_12AgentContextE) +STUB( + "x5SF26jHPYw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEptEv) +STUB( + "x5U04zAfiWQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEneERKS9_) +STUB("x5VPqg5iyAk", sceAudioPropagationSystemDestroy) +STUB("x5crCoykxlM", sceTsDisableRepresentation) +STUB("x5dq50ZjuCo", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE5beginEv) +STUB( + "x5e3ZH-Oz+Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEE11release_refEv) +STUB("x5fMr5644iE", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry14getHighestRankEv) +STUB( + "x5fzdh3vxs8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEE5resetEPS9_) +STUB( + "x5h3Mv4pcEM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("x5hqKRKziYU", sceShellCoreUtilActivateInit) +STUB("x5ip2i2zX0M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEEaSERKS7_) +STUB( + "x5pnMEi8CeY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEC2Ev) +STUB("x5yAFCJRz8I", _ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2Em) +STUB("x6+Bdn50A3Q", u_memcasecmp_67) +STUB( + "x6+EruGBBZ0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE8pushBackERKS8_) +STUB("x6-jvqF098Q", _ZNK3sce2Np9CppWebApi14ConnectAccount2V212PartnerToken20getAccessTokenSecretEv) +STUB("x61cJE335hY", ures_openFillIn) +STUB( + "x63FI5PDpuw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEC1EPS6_PNS2_10LibContextE) +STUB("x6B3NsiKgnY", mono_aot_Sce_Vsh_Np_Udsplt_end) +STUB("x6G-3h8dupI", _ZN7WebCore9HTMLNames15scrolldelayAttrE) +STUB("x6GCwqRJgTM", _ZNSt15basic_streambufIcSt11char_traitsIcEE8overflowEi) +STUB( + "x6LCN0EK-Wo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEneERKS9_) +STUB("x6LF3hMLGPA", _ZN7WebCore18PlatformPasteboard5writeERKNS_20PasteboardCustomDataE) +STUB("x6NdPqXhx-I", _ZN3sce7Toolkit2NP2V24Auth7IdTokenD2Ev) +STUB("x6STXhIEG0M", sceShellCoreUtilGetPsnAccountInfo) +STUB( + "x6TF+ULH-J4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("x6UtfbftZEo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEEC1ERS9_) +STUB( + "x6V32cBicyo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEptEv) +STUB("x6VrO1EEKm4", WKPreferencesGetLoadsImagesAutomatically) +STUB("x6W1wEeq6iA", _ZN3JSC14JSModuleRecord8evaluateEPNS_9ExecStateE) +STUB("x6YdJcD5edE", YGNodeMarkDirty) +STUB("x6aTU6zBgYg", _ZN9Inspector24NetworkBackendDispatcherD1Ev) +STUB("x6deXUpQbBo", sceGameLiveStreamingSetPresetSocialFeedbackCommandsDescription) +STUB( + "x6hv6xg63sI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEppEi) +STUB( + "x6jPNCOFmQw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE7popBackEv) +STUB( + "x6k8rREYAZs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEneERKS9_) +STUB("x6kUDye23Qw", _ZThn16_N9Inspector22InspectorDebuggerAgent8stepOverERN3WTF6StringE) +STUB("x6m8P9DBPSc", sceUserServiceGetThemeEntitlementId) +STUB( + "x6tgIzARLK4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "x6wcM7JLHhY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEE7add_refEv) +STUB("x72MwKv0+Bo", _ZNK7WebCore8FormData13lengthInBytesEv) +STUB( + "x76hEmgW4os", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEdeEv) +STUB( + "x7D8fB+APYI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEC1EPKS8_) +STUB( + "x7HqVMDRovM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE8pushBackERKS8_) +STUB("x7KuotsuFsU", _ZN12video_parser17cVideoProfilerMp416_createMovieInfoEv) +STUB("x7PXf5XGMgM", _ZN7WebCore8XMLNames15xmlNamespaceURIE) +STUB("x7Pq7rNZ890", logF_head) +STUB("x7SQEXfeovg", sceAmprMeasureCommandSizeWriteAddressFromTimeCounterOnCompletion) +STUB("x7WYsWKaRi8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEEC2Ev) +STUB("x7WZnR869O0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging16GameDataMessagesEEC1Ev) +STUB( + "x7Z54hFIN-c", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS2_6VectorINS5_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS5_INS8_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "x7a+BKS-XZc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "x7bEySFrMi4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEEptEv) +STUB("x7g7Ebeo8-U", mlockall) +STUB("x7hvV9lxH40", _ZN7WebCore9HTMLNames11compactAttrE) +STUB("x7lVXgjV94U", _ZN7WebCore9HTMLNames8smallTagE) +STUB("x7pQExTeqBY", _ZNSt10filesystem9_Make_dirEPKcS1_) +STUB( + "x7qtY2aNG8w", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEdeEv) +STUB( + "x7rfe81l+3E", + _ZN7WebCore22EmptyFrameLoaderClient11createFrameERKNS_3URLERKN3WTF6StringERNS_21HTMLFrameOwnerElementES7_bii) +STUB("x7uT8WsdXiw", ucnv_openAllNames_67) +STUB("x7vtyar1sEY", _ZNSt8ios_base7failureD0Ev) +STUB( + "x7yPpOk0CwE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEEC2ERKSA_) +STUB("x81--PzmGug", sceAppInstUtilAppConvertAppDownloadToDisc) +STUB("x81Ss-WpUEw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEEC1ERS7_) +STUB( + "x8A3ICUVqDE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEC1Ev) +STUB( + "x8AvYY6pUu4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE7releaseEv) +STUB( + "x8BadY5mbWM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEeqERKS9_) +STUB( + "x8ChKf8HJOY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("x8H4hnt+k78", scePigletAllocateSystemMemory) +STUB("x8LHSvl5N6I", _ZTISt11logic_error) +STUB( + "x8OFjLd4sZ4", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId10setifMatchEPKc) +STUB( + "x8OJ0DXr-r4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEC2Ev) +STUB("x8PFBjJhH7E", _ZNSt8messagesIwEC2Em) +STUB("x8Yu1n3NMo0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Wordfilter16SanitizedCommentEEC1Ev) +STUB("x8d77-9XWqI", _ZNK7WebCore5Color6getHSLERdS1_S1_) +STUB("x8dc5Y8zFgc", cosl) +STUB( + "x8eQ0n6GZPg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("x8eruQ-MSck", mono_aot_Sce_Vsh_Registryjit_code_start) +STUB("x8fiUZc8BGs", + _ZN3sce2Np9CppWebApi14ConnectAccount2V216PartnerTokensApi26ParameterToGetPartnerTokenaSERS5_) +STUB("x8mJ9x9-beY", sceDebugGetEventListForEQueueFd) +STUB("x8npgO9yaNE", glGetVertexAttribIiv) +STUB( + "x8nrSlYKZWs", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10getString8Ev) +STUB("x8qnXqh-tiM", sceMouseRead) +STUB("x8sY6aSiMNI", __asan_stack_malloc_1) +STUB("x8tkTyIE2d4", coil_set_debugger_attached) +STUB("x8uvuFOPZhU", sceAvPlayerAddSourceEx) +STUB("x8y0qzLiYOU", FT_Has_PS_Glyph_Names) +STUB("x94EvR+FAZc", JSWeakObjectMapClear) +STUB("x95QTWiQURY", mono_aot_Sce_Vsh_Sl2_NativeQueueClientjit_got) +STUB( + "x9610y+vXOU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "x980He6wpH8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEE6assignEPS5_PFvS7_EPNS2_10LibContextE) +STUB("x98GXa9QfmY", __ubsan_handle_type_mismatch) +STUB( + "x993-vtrX3s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEEdeEv) +STUB( + "x99V3tArvzE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEptEv) +STUB( + "x99WfCkRuv8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEppEv) +STUB("x9Et46dq93c", _ZN3WTF9BitVector13OutOfLineBits6createEm) +STUB( + "x9HY+8LbDsw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("x9IpDLtzwVQ", _ZN3sce2Np9CppWebApi6Common6VectorIdE3endEv) +STUB("x9O4rLl7ZeE", _ZN3sce7Toolkit2NP2V212EventsClient11EventInGameC2Ev) +STUB("x9OoYMTjb4c", _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse13setActivityIdEPKc) +STUB( + "x9PzC5CFugM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEptEv) +STUB("x9SN0TpFOrc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEcvbEv) +STUB("x9W3XZyylbQ", _ZN7WebCore11DisplayList14ConcatenateCTMC2ERKNS_15AffineTransformE) +STUB("x9XrvF3ulmM", __tsan_unaligned_read8) +STUB("x9bSmRSE+hc", sceNetCtlEnableBandwidthManagementIpcInt) +STUB("x9bs4uf-vWE", ures_findSubResource_67) +STUB("x9hkly4XJFc", + _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead23supportedPlatformsIsSetEv) +STUB("x9icWnPFGcg", + _ZN7WebCore10Pasteboard4readERNS_26PasteboardWebContentReaderENS_23WebContentReadingPolicyE) +STUB("x9mgKEJJ24c", FTC_Manager_LookupSize) +STUB("x9nBgCbadYs", _ZNK7WebCore15ActiveDOMObject16isContextStoppedEv) +STUB( + "x9rXTc6Q80I", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEmmEv) +STUB( + "x9ucF2xeR1o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEaSERKS9_) +STUB("x9uumWcxhXU", wcsspn) +STUB( + "x9y-CK67bxc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("x9yyuiVwzEI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEppEv) +STUB( + "xA+rJXMHbqo", + _ZN7WebCore13MIMETypeCache17addSupportedTypesERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("xA-vTlUUu0w", _ZN7WebCore14SecurityPolicy18shouldHideReferrerERKNS_3URLERKN3WTF6StringE) +STUB("xA074SXcjRo", WKBackForwardListGetCurrentItem) +STUB( + "xA129Wck6j4", + _ZN9Inspector25DebuggerBackendDispatcherC1ERNS_17BackendDispatcherEPNS_32DebuggerBackendDispatcherHandlerE) +STUB( + "xA2FtqZR8KQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEE7add_refEv) +STUB( + "xA3MirCdc2s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEED1Ev) +STUB( + "xA42mNb2XoA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEE5resetEPS6_) +STUB("xA7NvdrsNg0", mono_aot_System_Netplt) +STUB("xAE5zO3kEi0", _ZN9Inspector28PageBackendDispatcherHandlerC2Ev) +STUB("xAIJ9uRYGrw", sceFontGraphicsSurfaceSetTargetView) +STUB("xAKAe6kFk90", sceKernelInternalMapDirectMemory) +STUB("xAVlh3AunAA", _ZN3sce7Toolkit2NP2V23TUS25TusDataStatusForCrossSaveD2Ev) +STUB( + "xAWIJPSPOcg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEC2ERS7_) +STUB("xAdGRA3ucDg", sceNpManagerIntLoginGet2svInfo) +STUB("xAeBOa0A3kk", sceAgcAcbSetMarker) +STUB( + "xAhFZiCrK7w", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEeqERKS9_) +STUB("xAo5lvA+W3o", u_setTimeZoneFilesDirectory) +STUB( + "xAqtm7i85OU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEC1EPS8_) +STUB( + "xArhBhqvta4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("xAtgq3Uz-VA", _ZN3sce3pss5orbis5video14VideoPlayerVcs23GetNetworkStateForDebugEv) +STUB("xB-bdVRR4Ig", _ZN3sce7Toolkit2NP2V26Trophy17TrophyPackSummaryC2ERKS4_) +STUB( + "xB0TBuOQUVg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEEcvbEv) +STUB("xBA1pQQ0cco", mono_aot_Sce_Vsh_PsnUtilplt) +STUB("xBBKTSCC6qU", _ZN3sce2Np9CppWebApi7Matches2V122RequestMatchStatisticsD2Ev) +STUB("xBETAlxKe5Q", _ZN3sce2np7HttpUri6ConcatEPKcS3_PcmPm) +STUB("xBF8Fgr9ijE", mono_profiler_install_code_chunk_destroy) +STUB( + "xBGM8UyKYFA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("xBOnLORfxB4", _ZNK7WebCore15HTMLFormElement12autocompleteEv) +STUB( + "xBWBSZy0IVc", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("xBXvYPKkbns", _ZN13MsvMetaEditor9searchBoxEPKcb) +STUB("xBZFJROAY60", WKBundlePageIsUsingDarkAppearance) +STUB( + "xBc43YoKzfs", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("xBcAK4m9CQs", _ZNK3sce2Np9CppWebApi11Matchmaking2V15Error10getMessageEv) +STUB("xBd3WoSt2PA", sceUltGetMutexInfo) +STUB("xBkBINKo6gw", sceNpTrophySystemUnregisterTitleUpdateCallback) +STUB( + "xBlmflvkdFA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEEC2Ev) +STUB( + "xBnTYVjQcg0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEdeEv) +STUB( + "xBna7PoLYVY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE7reserveEi) +STUB( + "xBrYWSEri04", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEED1Ev) +STUB("xBtnc-hPeag", unorm2_getInstance) +STUB( + "xBwfK0a8HNw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEC2EPS8_) +STUB("xC33v2DhfRM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEE3getEv) +STUB( + "xC3kq9EHJS4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE7reserveEi) +STUB("xC8OivuT6nQ", _ZNK3sce2Np9CppWebApi7Matches2V118CreateMatchRequest17getExpirationTimeEv) +STUB("xCC2+A1QU2M", _ZN7WebCore22EmptyFrameLoaderClient18makeRepresentationEPNS_14DocumentLoaderE) +STUB("xCDZxQZwL48", rgctx_fetch_trampoline_rgctx_73_p) +STUB( + "xCGVteZkQYc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE8copyFromERKS9_) +STUB( + "xCHE7jJ7j4E", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEEC1Ev) +STUB("xCKL92JE4V8", mono_image_fixup_vtable) +STUB("xCMuNG9KIgw", _ZN7WebCore16MIMETypeRegistry20isJavaAppletMIMETypeERKN3WTF6StringE) +STUB( + "xCNRSev9h5A", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEiRNS2_10LibContextEPT_m) +STUB("xCTKl5FsEOM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEEC1ERKS7_) +STUB("xCU2xwTBJP8", _ZN7WebCore14ResourceHandle11clearClientEv) +STUB("xCa6ex49oUQ", _ZN3sce7Toolkit2NP2V27NpUtils7Request22GetOnlineIdByAccountIdD2Ev) +STUB( + "xCafp5ZhL4Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEEptEv) +STUB("xCd0WNG05U4", + _ZN3sce2Np9CppWebApi11UserProfile2V113BasicPresence15setOnlineStatusERKNS3_12OnlineStatusE) +STUB("xCeTs4XzS8k", _ZN7WebCore11MediaPlayer13volumeChangedEd) +STUB( + "xCg+igDBo3Q", + _ZN3sce7Toolkit2NP2V28Presence11setPresenceERKNS3_7Request11SetPresenceEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("xCilgvjEqEs", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18SessionInformationEE7addressERS3_) +STUB("xCkh-S5yz3Q", _ZN7WebCore17FrameLoaderClient31dispatchDidChangeProvisionalURLEv) +STUB( + "xCn5Vc6N19g", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayer12setsessionIdEPKc) +STUB("xCp+mHd2wd0", + _ZNK7WebCore12ChromeClient35dispatchViewportPropertiesDidChangeERKNS_17ViewportArgumentsE) +STUB("xCqEoId1vUs", mono_aot_Sce_Vsh_PatchCheckerClientWrapperplt) +STUB("xCqLd47LRsI", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku15setDisplayPriceEPKc) +STUB( + "xCxLYQzFTpE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEC2EPS8_) +STUB("xCxMQ7Efh4k", sceRegMgrSrvGetRegionStr) +STUB("xCz8oCboV7Y", jpeg_fdct_7x7) +STUB("xD2EhCk2nO0", mono_aot_Sce_Vsh_MimeTypeplt_end) +STUB("xD3+P-Dx0B0", _ZN12video_parser13cVideoPathMgv14GetMaclistNameEPc) +STUB("xDBg3J+QMqM", _ZN3sce7Toolkit2NP2V29Messaging7Request17LocalizedMetadataC1Ev) +STUB( + "xDEa2lswa5c", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "xDFZEyVxx-Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEmmEi) +STUB("xDHPARrk3wM", sceVideoCoreChangeSubtitle) +STUB( + "xDHk-HYO6rs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEED1Ev) +STUB("xDMYRn1Mc-g", _ZN3sce2np9HttpTrans4InitERKNS0_12HttpTemplateEiPKcm) +STUB("xDPdCurOujQ", sceAgcDriverGetTraceInitiator) +STUB( + "xDY0T9zWJ+M", + _ZN3sce2Np9CppWebApi14SessionManager2V124SearchGameSessionFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_17SearchGameSessionEEE) +STUB("xDcpRKGsA4c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEixEm) +STUB( + "xDhBHz812xA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE13goToProcessedEi) +STUB("xDiIcwLtCoQ", _ZN4Manx6CookieD1Ev) +STUB( + "xDik7tORws0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("xDrWJARfCbk", _ZThn8_N3sce2np6Handle10CancelImplEi) +STUB( + "xDsl9jCU0J8", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt4listINS1_11TusVariableENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB( + "xDwvWxMr16A", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE5emptyEv) +STUB("xDxKwXP9YIU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16UnlockedTrophiesEED2Ev) +STUB("xDxiiWc1pgU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEED2Ev) +STUB("xDzU2wxFzF4", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V224TestForProfanityResponse6toJsonERNS_4Json5ValueEb) +STUB("xDzWWofyEtA", sceMatTagAllocation) +STUB( + "xE4xDL554n8", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead21setSupportedPlatformsERKNS1_6Common6VectorINS5_6StringEEE) +STUB("xE6liwbu0NE", uhash_iget) +STUB( + "xE8ZuCrICxQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("xECsbsDabJE", _ZN3WTF19MetaAllocatorHandleD1Ev) +STUB("xEIapZTJY8E", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Publisher9unsetIconEv) +STUB( + "xEKkjMXN9Pk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("xEKp9dwsU1U", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE8pushBackERKS6_) +STUB("xENtRue8dpI", strtof) +STUB( + "xEfw4sMd9HI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEEC2ERKSA_) +STUB("xEg9rENUCrA", WKPreferencesGetXSSAuditorEnabled) +STUB("xEjBSjulggc", _ZN7WebCore21MediaRecorderProviderD1Ev) +STUB("xEmf8jJoTcE", mono_aot_Sce_Vsh_SQLitejit_got) +STUB( + "xEqHUm9Un9o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "xErJ8lPMPno", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEED1Ev) +STUB("xEszJVGpybs", sprintf_s) +STUB( + "xEtsDDk95eY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEE11get_deleterEv) +STUB( + "xEwbbFlxAEI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEixEm) +STUB("xExAZRNEpEM", sceHttpCacheReadData) +STUB("xEyNUoXLzxM", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable6toJsonERNS_4Json5ValueEb) +STUB("xF1F1M-8SM8", Java_java_io_UnixFileSystem_setPermission) +STUB("xFIZ75qI1NQ", _ZN3sce2Np9CppWebApi6Common6VectorImE21intrusive_ptr_add_refEPS4_) +STUB( + "xFLvvglzVzg", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124ConnectionQualityFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_17ConnectionQualityEEE) +STUB("xFMn-zbvccU", _ZN7WebCore9GLContextC2ERNS_15PlatformDisplayE) +STUB( + "xFNJVteMh8w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEE7add_refEv) +STUB("xFRjRu9SCAw", _ItL_pS6) +STUB("xFRto5ktLbw", mono_aot_Sce_PlayStation_PUIunwind_info) +STUB("xFTGcWzxgh4", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId10unsetrangeEv) +STUB("xFWEGxd-NWM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEE11get_deleterEv) +STUB("xFebsA4YsFI", pthread_rwlockattr_init) +STUB("xFmF5rhJH+o", _ZN4Manx3Ssl10SslContext21postNotifyOriginFrameE) +STUB("xFnlhQw0Zfc", WKBundlePageSetComposition) +STUB( + "xFq2lAPT1B0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEdeEv) +STUB( + "xFqYVKFQHJU", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions35hasxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB("xFva4yxsVW8", _ZNSt8numpunctIcED2Ev) +STUB( + "xFwfmckqZ8w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE7popBackEv) +STUB( + "xFz1rsxI6Yg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEC1EPNS2_10LibContextE) +STUB( + "xFz35oE8-FQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEC1Ev) +STUB("xG+cz2ROfoc", YGNodeStyleSetFlexShrink) +STUB("xG0uiwYsPkg", _ZN3sce7Toolkit2NP2V28Commerce14ProductDetails25SERVICE_PROVIDER_NAME_LENE) +STUB( + "xG5ncWijH1o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEEC1Ev) +STUB( + "xG8+eHbnajM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEC1EPNS2_10LibContextE) +STUB("xGAEbwA7FNo", FcPatternCreate) +STUB("xGGfdp3gJME", _ZN3WTF11Persistence7EncoderlsEm) +STUB("xGOZLk4Ci8c", _ZN7WebCore9HTMLNames14onprogressAttrE) +STUB("xGT4Mc55ViQ", _Fofind) +STUB( + "xGTc5A0PYGE", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEEiRNS2_10LibContextEPT_m) +STUB("xGWv5lIesok", _ZN7WebCore8SVGNames17v_ideographicAttrE) +STUB("xGbaQPsHCFI", _ZNSt10filesystem10_Close_dirEPv) +STUB("xGevQ8oWgwU", u_scanf_parse_67) +STUB( + "xGj97VendkY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE3endEv) +STUB( + "xGjQOJMY2yQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEixEm) +STUB( + "xGm8M65BM0I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "xGpcTosoL60", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "xGpgzdhesE8", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScore24setxPsnAtomicOperationIdEPKc) +STUB("xGsMGzTYI3o", WKPreferencesGetThreadedScrollingEnabled) +STUB("xGw9DzhKxfo", _ZN3WTF12AtomicString6numberEd) +STUB("xGwa20Nmb2w", sceMoveTrackerPlayStart) +STUB( + "xGyy6PF9IBI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEppEv) +STUB( + "xGzBYv+B7SI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("xGzizWELpCk", YGNodeGetContext) +STUB("xH+Wozh5WZY", + _ZN7WebCore17JSHTMLLinkElement15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB("xH4Q9UILL3o", sceAudio3dBedWrite2) +STUB("xH5BX74yfvg", _ZNK7WebCore11PageOverlay19viewToOverlayOffsetEv) +STUB( + "xH6GlizFCsc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEED2Ev) +STUB("xH9+FFBAwVI", + _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody14unsetSubmitterEv) +STUB("xHAiSVEEjSI", sceNpMemoryHeapGetAllocatorEx) +STUB("xHBi0i+z3VU", _ZN3JSC8DebuggerD2Ev) +STUB( + "xHFUUPeij+s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEEC2ERSA_) +STUB( + "xHKG1HgJyf4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEE5resetEPS9_) +STUB("xHSNCLrQq3A", sceVoiceDisableChat) +STUB( + "xHSxYg8BAlc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEEcvbEv) +STUB("xHTZMQx6OZ4", __tsan_gpu_full_acquire) +STUB("xHVUdb5NNSw", u_memcpy) +STUB("xHW7NNh3kD8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEE11release_refEv) +STUB("xHXHyRoA-EA", Java_java_io_ObjectOutputStream_getPrimitiveFieldValues) +STUB( + "xHbrJlQ2tJI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEEptEv) +STUB( + "xHlAIbS0Dro", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEED1Ev) +STUB("xHoW2U3h3Uc", _ZN7WebCore11MathMLNames9mglyphTagE) +STUB("xHpt6+2pGYk", sceSslGetNotAfter) +STUB("xHq87H78dho", sceNetBandwidthControlGetDataTraffic) +STUB("xHr7sblfjwc", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetail9terminateEv) +STUB("xHzy6JMpcs8", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V324ValidationConstraintInfo8getValueEv) +STUB( + "xI+SSLaA9xc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "xI2dIFPjl1s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEppEi) +STUB("xI6xSSQA3qM", mono_domain_get_id) +STUB("xI8avtVkGWw", sceVdecCoreCreateDecoderSvp) +STUB("xID4FVwShdw", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V13MmrD2Ev) +STUB("xIDyivHSSmU", _ZN7CoreIPC14MessageEncoder47setShouldDispatchMessageWhenWaitingForSyncReplyEb) +STUB("xIFe7m4wqX4", SSL_initServerCert) +STUB("xIFvIR8xXfg", _ZN3sce7Toolkit2NP2V212ActivityFeed12SharedVideosC1ERKS4_) +STUB("xIGhjgZac+0", _ZN9Inspector23TargetBackendDispatcherD2Ev) +STUB( + "xIJDCKiFUmc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE5clearEv) +STUB( + "xIKDGNGXNgE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEC1ERS7_) +STUB("xIKF2AX+53c", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEEdeEv) +STUB("xIMClZZz50k", sceShellCoreUtilActivateRecordActivation) +STUB("xIQbqE-cXqE", _ZTVN7WebCore16TrackPrivateBaseE) +STUB( + "xIRTqklHvOE", + _ZN9Inspector21PageBackendDispatcher17overrideUserAgentElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("xIZcjHdeKaU", _ZTVN7WebCore24CoordinatedGraphicsLayerE) +STUB("xIb1AFc6YpI", __tsan_current_error_report) +STUB("xIbyVXcGV28", Java_java_io_FileInputStream_close0) +STUB( + "xIciPeK0n9g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEppEi) +STUB( + "xIdBBTvAz7o", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData10initializeEPNS1_6Common10LibContextEPKci) +STUB("xIdOw1PLvVQ", _ZN3sce7Toolkit2NP2V29Messaging7Request17SendInGameMessageD2Ev) +STUB( + "xIkHGMXJFhA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEmmEv) +STUB("xIkcEpdMxrw", sceCompositorInit) +STUB( + "xIpOxahDVlg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEdeEv) +STUB("xIphIzDc-ZM", mono_btls_ssl_connect) +STUB( + "xIqJdMaCQ6k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEC2EPS6_PNS2_10LibContextE) +STUB("xIx3rgbZkPA", mono_type_get_underlying_type) +STUB("xIy0W9HvBL4", + _ZN7WebCore8Document15openForBindingsERNS_9DOMWindowES2_RKN3WTF6StringERKNS3_10AtomStringES6_) +STUB("xIz9VSusdWk", _ZN7WebCore19BlurFilterOperationD1Ev) +STUB( + "xIzLXw0g1Jg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEC1EPS8_) +STUB( + "xIzkox6kbJw", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions16setincludeFieldsENS1_6Common12IntrusivePtrINS6_6VectorINS6_6StringEEEEE) +STUB("xJ5NFWC3m+k", sceSaveDataDirNameSearchInternal) +STUB( + "xJ9HOFO7os4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEE5resetEPS6_) +STUB("xJHMfJSxPUg", JVM_DTraceIsProbeEnabled) +STUB("xJHXJ5fxBGY", bdjbg_copyPlanes) +STUB("xJIUb8Mfpqc", _ZN3sce7Toolkit2NP2V24Core20getErrorCodeAsStringEiRNS3_15StringifyResultE) +STUB("xJIr8LUoRF4", _ZN7WebCore17FrameLoaderClient19finishedLoadingIconEmPNS_12SharedBufferE) +STUB( + "xJPWSymYFhs", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser10unsetlimitEv) +STUB("xJRNEp2d-Wg", _ZN3WTF13StringBuilder22appendQuotedJSONStringERKNS_6StringE) +STUB("xJRyp4B6KSI", _ZNK3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer12natTypeIsSetEv) +STUB("xJSKJ54imKU", mono_aot_Sce_Vsh_VrEnvironmentunwind_info) +STUB("xJUQDRAno+Q", _ZN7WebCore18HTMLMarqueeElement4stopEv) +STUB("xJYAvA1ubc8", _ZN12video_parser5vpcom9OpenAsyncE) +STUB("xJZvN8ywcko", _ZNK3JSC12StackVisitor5Frame20computeLineAndColumnERjS2_) +STUB( + "xJaxgqlm6Wo", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC1ERKSC_) +STUB("xJbY3QNYIzM", _ZN15AbstractStorage15HttpTransaction8SendDataEPKvm) +STUB( + "xJdufPYllLs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEaSERKS7_) +STUB( + "xJeioPn7uFU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEeqERKS9_) +STUB( + "xJenPvYZaO0", + _ZN7WebCore11FrameLoader16loadFrameRequestEONS_16FrameLoadRequestEPNS_5EventEON3WTF6RefPtrINS_9FormStateENS5_13DumbPtrTraitsIS7_EEEE) +STUB( + "xJhOAhp5SiU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEE11release_refEv) +STUB( + "xJhfeQtTUMo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEEC1Ev) +STUB("xJiXtC0IuMQ", mono_shared_mutex_unlock) +STUB("xJrAJW1ibOs", _ZN14OpaqueJSStringD2Ev) +STUB("xJsxrCNpOjU", WKBooleanGetValue) +STUB("xJtkTRMQhEA", sceUserServiceSetGlsSortOrderGame) +STUB("xJvhaEzgb8Y", WKPreferencesGetDataTransferItemsEnabled) +STUB("xK56zMV6L4g", _ZN7WebCore6Path2DdaEPv) +STUB( + "xK6UXGpTPtU", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot17getnpServiceLabelEv) +STUB("xK7B8RkMD6s", _ZN3WTF6Config17permanentlyFreezeEv) +STUB( + "xKEKGWPSAJs", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_18GameCustomDataItemENS1_15AppSTLAllocatorIS5_EEEED2Ev) +STUB("xKF1H20+f3c", _ZN3sce7Toolkit2NP15AppSTLAllocatorIcED2Ev) +STUB("xKH2Sg7xO-g", _ZN7WebCore13GraphicsLayer20setReplicatedByLayerEPS0_) +STUB("xKIGMVEduec", + _ZN3sce2Np9CppWebApi14ConnectAccount2V216PartnerTokensApi26ParameterToGetPartnerTokenC1Ev) +STUB( + "xKK30TtQFr8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEC1EPS6_PNS2_10LibContextE) +STUB("xKQvzQ1q63A", WKPageCopyActiveURL) +STUB("xKSgaSVX1io", sceShellCoreUtilSetAppData) +STUB( + "xKYOafUsokA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEED1Ev) +STUB("xKZwQWXnnG0", utrie2_openDummy) +STUB( + "xKawSymHepI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("xKc5mDhiV8I", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEEC1Ev) +STUB( + "xKfX6zOWrNY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEC1Ev) +STUB( + "xKiOo15Kcn0", + _ZN9Inspector18InjectedScriptHost21getInternalPropertiesERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB( + "xKjQErcHiSg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "xKjvZQc9mS0", + _ZN7WebCore16BlobRegistryImpl19writeBlobToFilePathERKN3WTF3URLERKNS1_6StringEONS1_8FunctionIFvbEEE) +STUB("xKkINBg2a9Q", _ZN3sce7Toolkit2NP2V212ActivityFeed15PlayedWithStoryC1Ev) +STUB( + "xKl8TEc8ex0", + _ZN7WebCore11JSDOMWindowC2ERN3JSC2VMEPNS1_9StructureEON3WTF3RefINS_9DOMWindowENS6_13DumbPtrTraitsIS8_EEEEPNS_13JSWindowProxyE) +STUB("xKsz5R8YMnQ", udatpg_getAppendItemFormat_67) +STUB("xL-AIWXwEQU", _ZN3sce7Toolkit2NP2V27Ranking7Request15GetFriendsRanks14MAX_NUM_BOARDSE) +STUB( + "xL1fjHSSpeQ", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("xL5mH37tkIA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V117ResponseMatchTypeEEeqERKS7_) +STUB( + "xLBQuWC3wSc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEaSERKSA_) +STUB( + "xLEc4iOjE-U", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setInteger9ERKi) +STUB( + "xLHN5+xMFUE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEC1Ev) +STUB("xLNi34K9wx4", WKBundleGetLiveDocumentURLs) +STUB("xLQ2PgKkCag", _ZN3sce7Toolkit2NP2V23TUS19FriendsDataStatusesD1Ev) +STUB( + "xLSWFY33SNQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEC1Ev) +STUB( + "xLUZYlHXi0M", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEeqERKS9_) +STUB("xLXHyF8De0c", _sceLibcMspaceRealloc) +STUB( + "xLZr4GJRMLo", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERe) +STUB("xLaM0VCrVBA", uloc_getParent) +STUB( + "xLdjWXlnwq0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "xLmGp4+8vUo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEmmEi) +STUB( + "xLo6LHXmsFY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEC2ERS7_) +STUB("xLoVJKHvRMU", __asan_init) +STUB( + "xLpfOwfh9Ms", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE11hasResponseEv) +STUB("xLryCIDKa0c", sceDataTransferRequestGetUsersPS4) +STUB( + "xLw0kufhicc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB("xLwrrUgb7hU", mono_aot_Sce_Vsh_DiscPlayerplt) +STUB("xLyXWnkUXyk", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE5beginEv) +STUB("xM+sHakL1AU", ptohw) +STUB("xM0dBqZ6zz4", uprv_decNumberPower_67) +STUB("xM5re58mxj8", _ZNSt7codecvtIDsc9_MbstatetE2idE) +STUB("xMC5Psx4v9k", sceFiosCacheContainsFileRange) +STUB( + "xME1OGvXnro", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEmmEi) +STUB( + "xMFY+VDS-o0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEneERKS9_) +STUB("xMLT-YYz4zo", mono_gc_make_root_descr_user) +STUB( + "xMN3a1yLXYI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEC1Ev) +STUB("xMP0AJuA8uo", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_10TrophyInfoEED1Ev) +STUB( + "xMQgFKGYk1E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE10setContextEPNS2_10LibContextE) +STUB( + "xMRRPDUOn1I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE21intrusive_ptr_sub_refEPSA_) +STUB( + "xMUKo+Nar0c", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEplEm) +STUB( + "xMYZdMAKtTI", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayerC2ERS5_) +STUB( + "xMZmqqxYeQI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEEcvbEv) +STUB("xMb2Ch5scV4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEEdeEv) +STUB("xMdAAKfBCAQ", _ZN3sce7Toolkit2NP9Interface16terminateServiceENS1_11ServiceTypeE) +STUB("xMe6RPFDPLA", WKPreferencesGetWebGLEnabled) +STUB( + "xMihnFIYnRc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEE7add_refEv) +STUB("xMksIr3nXug", __atomic_fetch_and_8) +STUB("xMlxiPxwrAw", glVertexAttribI4i) +STUB("xMmIU5R9IHY", sceNpTrophySystemWrapGetTrophyTitleIdsByNpTitleId) +STUB("xMmIi98WDUQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ChildActivityAvailabilityEEC1EPS6_) +STUB("xMo9ENEu2E0", sceHmd2ReprojectionSetParam) +STUB("xMoJVrbD2rQ", JVM_GetComponentType) +STUB( + "xMwB6PGoi8M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEC2Ev) +STUB("xMzCRdjMZc8", rgctx_fetch_trampoline_rgctx_15_p) +STUB("xN+r1xNXlfg", _ZN7WebCore8SVGNames16stroke_widthAttrE) +STUB( + "xN05qT6p0B0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEneERKS9_) +STUB( + "xN33K5UQCQg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE3endEv) +STUB("xN4eAaVG-rI", __asan_load2) +STUB("xN7BBNHgLrs", _ZN3WTF6StringC1EPKh) +STUB("xN8mpDR2BTY", _ZN3sce7Toolkit2NP9Interface5init2EPFvRKNS1_5EventEERNS1_9NpTitleIdE) +STUB( + "xN8ylEqf+8U", + _ZN9Inspector20CSSBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("xNDi9AbcCWg", sceBackupRestoreUtilGetBackupProgress) +STUB("xNPv1ey9cEQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEE7get_refEv) +STUB("xNRh+DqJx4k", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_33ActivityFeedSharedScreenshotStoryEE7addressERS3_) +STUB("xNWZr+mLVwc", _ZN3JSC11ArrayBuffer6createEjj) +STUB( + "xNbLWXi0ucc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEdeEv) +STUB( + "xNcVnG-rlCc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB("xNel84IThc0", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead21joinableUserTypeIsSetEv) +STUB("xNhOneyp6W8", _ZN7WebCore11PageOverlay15setNeedsDisplayEv) +STUB("xNjgqL+SEf8", + _ZN3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallbackaSERS5_) +STUB( + "xNp7tZ3AoZw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEE11get_deleterEv) +STUB("xNpWJsHzlpw", __sanitizer_sandbox_on_notify) +STUB( + "xNw1EZ04xPc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEC1Ev) +STUB("xNxRXaItFE0", psl_builtin_file_time) +STUB( + "xO1Bcredhfs", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEEiRNS2_10LibContextEPT_m) +STUB("xO2liLZlQcA", _ZN7WebCore11MediaPlayer19originsInMediaCacheERKN3WTF6StringE) +STUB("xO9q1axBX6E", _ZN7WebCore14DocumentLoader10commitDataEPKcm) +STUB("xOB78urQB6o", + _ZN15AbstractStorage15FacebookStorage11DeserializeESt10shared_ptrINS_7ContentEEPS1_INS_4ItemEE) +STUB("xOC0RMoxhIM", _ZN3sce3Xml3Sax6ParserD2Ev) +STUB("xOF0-FNtQjo", throw_corlib_exception_p) +STUB( + "xOMOnUg-0Fg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEC2EPKS8_) +STUB("xONraGfpcUI", _ZN3WTF14FileSystemImpl14MappedFileDataD2Ev) +STUB("xOPEGmoEd-U", _ZN3sce7Toolkit2NP2V27Ranking12RangeOfRanks10FIRST_RANKE) +STUB("xOQ9oACobA4", sceUltUlthreadGetSelf) +STUB("xOSwbRCn1AA", _ZN7WebCore8SVGNames16stdDeviationAttrE) +STUB("xOZLTgIzN-M", sceAudioOutSetAllMute) +STUB( + "xOcodQBg6lk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEEC1EPS7_PNS2_10LibContextE) +STUB("xOo2f6redWI", _ZN7WebCore19TextResourceDecoder5flushEv) +STUB( + "xOufK+lmPj4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEE11release_refEv) +STUB( + "xOwrB-uyIZo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEmmEv) +STUB("xOyw2GZwj3Y", _ZN3sce2np13JsonArrayImplD0Ev) +STUB("xP3aCoP48XI", _ZNK15AbstractStorage14MemfileContent13GetCapabilityEv) +STUB("xP45eIntEis", sceFiosFHStatSync) +STUB("xP4EC4Sp9GI", mono_assembly_get_image) +STUB( + "xP5wFtRAPLs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEC2EPS8_) +STUB("xP6BkeQUcgY", _ZN7WebCore18SecurityOriginData22fromDatabaseIdentifierERKN3WTF6StringE) +STUB("xP6Sta4xjvs", WKPluginInformationPathKey) +STUB( + "xP6xy9SFSxQ", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Runtime12RemoteObject4TypeEEEN3WTF8OptionalIT_EERKNS6_6StringE) +STUB("xP9Uf30UolY", mono_aot_Sce_Vsh_PatchCheckerClientWrapperplt_end) +STUB("xPDpybSVciw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEE7get_refEv) +STUB( + "xPDzGjyjYEQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEE5resetEPS6_) +STUB("xPHdjSBeL1M", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12FriendsRanksEED2Ev) +STUB( + "xPKyV9+ZHas", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEC1ERS8_) +STUB("xPRHNaD3kTc", sceNpUtilCmpAccountId) +STUB("xPSfvE5URlw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEdeEv) +STUB( + "xPTkSf+AtE4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEED2Ev) +STUB("xPVphAvh+AY", _ZN3NTF8Registry8finalizeEv) +STUB("xPYPMODatn4", _ZN7WebCore26IdentityTransformOperation6createEv) +STUB( + "xPblZiJjpvM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "xPbysB3-I84", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUserC2ERS5_) +STUB("xPfDuZPWMLM", sceMusicFwGetVolume) +STUB("xPgm+IdmVVY", _ZN7WebCore10TimeRangesC2Edd) +STUB( + "xPgqdW6vjGA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEEaSERKSC_) +STUB( + "xPk8r0PfFUA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEE11get_deleterEv) +STUB("xPlaFipjpdo", _ZN3sce7Toolkit2NP2V28Commerce7Product13IMAGE_URL_LENE) +STUB( + "xPligOYHgRE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEmmEi) +STUB("xPnJ0vXyyc4", _ZN7CoreIPC10Connection18platformInitializeEi) +STUB( + "xPpALBjiuoc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEE5resetEPS6_) +STUB("xPpX-cwnsKs", WKPageIsWebProcessResponsive) +STUB("xPrF2nGPBXQ", sceNpDeleteSema) +STUB( + "xPufXzFRSIE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEixEm) +STUB("xPvV6oMKOWY", sceNpManagerIntGetAuthorizationCodeWithPsnoUri) +STUB("xPwxj0myDK0", delegate_virtual_invoke_imt_m_4_p) +STUB( + "xQ-I7yjm9qM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE5emptyEv) +STUB("xQ1Z6ln5ZqQ", __asan_get_report_access_type) +STUB("xQBvuJvBpZU", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence12Notification14PresenceUpdateEE3setEv) +STUB( + "xQCbCJnclV8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "xQCuxQjDykA", + _ZN7WebCore11JSDOMWindowC1ERN3JSC2VMEPNS1_9StructureEON3WTF3RefINS_9DOMWindowENS6_13DumbPtrTraitsIS8_EEEEPNS_13JSWindowProxyE) +STUB("xQEFvezBtjQ", _ZN3sce3Xml3Dom8NodeList10initializeEPKNS0_11InitializerE) +STUB("xQI1SMBDGvk", _ZN6WebKit14WebProcessMainEiPPc) +STUB("xQIIfJ860sk", sceKernelMunlock) +STUB("xQM94RIreRc", _ZN3sce2np12NpTitleTokenC1ERKS1_) +STUB("xQN7xUiSiV0", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEEC1ERS6_) +STUB("xQN8sy8hF6I", _ZNSt9basic_iosIwSt11char_traitsIwEE4swapERS2_) +STUB("xQQ4VSubx-k", _ZN3WTF14dataLogFStringEPKc) +STUB("xQTGbK3PhdM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEE7get_refEv) +STUB("xQWMTaC3jWM", GCC_except_table439) +STUB( + "xQaCLgd8tvY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEEC1ERKSA_) +STUB("xQeIryTX7dY", sceRemoteplayApprove) +STUB("xQfR51i4kck", sceNpTusTryAndSetVariableAsync) +STUB( + "xQjlHvyt3+I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "xQk44jzVAKM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEixEm) +STUB( + "xQkHONkC2rM", + _ZN3sce2Np9CppWebApi6Common23UpDownStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE8readDataEPcm) +STUB("xQl140Mui6k", _ZN12video_parser13_VpBitreadSetEPNS_21VpMpegvideoAvcBitreadEPhi) +STUB("xQnFpj+cG5I", _ZN7WebCore17NowPlayingManagerD1Ev) +STUB( + "xQrLY3Rq9og", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEED1Ev) +STUB( + "xQt3uaEv-z4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEdeEv) +STUB("xQtNieUQLVg", _ZNSt14numeric_limitsIdE6digitsE) +STUB("xQviXmvC1ec", _ZN3sce7Toolkit2NP2V23TSS7TssDataC1ERKS4_) +STUB("xQzl2xHVGY0", _ULx86_64_dwarf_step) +STUB("xR0ySWXoAb4", sceIduUtilGetDiscInfo) +STUB("xR44CqBw19M", _ZN15AbstractStorage18DailymotionServiceD0Ev) +STUB("xR8S67myUos", sceNpManagerIntLoginCreateAuthenticationTicket) +STUB("xR9aJZla4Gk", + _ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody20updatedDateTimeIsSetEv) +STUB( + "xRE7yoqv9Og", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE7popBackEv) +STUB("xRLmDkkM2QU", _ZNK7WebCore27PlatformMediaSessionManager15supportsSeekingEv) +STUB("xRMd6l8mBDM", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEEdeEv) +STUB("xRNB7qkCEzk", _Getfloat.digits) +STUB("xROUuk7ItMM", _Fetch_and_seq_cst_2) +STUB("xRScmxStBzg", sceRnpsAppMgrTerminate) +STUB( + "xRWqA7NEwVw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE8pushBackERKS8_) +STUB( + "xRX85XEvkYE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEED2Ev) +STUB("xRaUqwmMl8g", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEEixEm) +STUB( + "xRaguf2MZ0c", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V138SetMultiVariablesRequestBody_variables10valueIsSetEv) +STUB("xRdE7tve5lA", mono_counters_dump) +STUB( + "xRdOYHccZdA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEneERKS9_) +STUB("xReSebwKApA", sceFiosFHSeek) +STUB("xRfVUGhMmx8", _ZN7WebCore9HTMLNames7minAttrE) +STUB("xRg8w6r62Wc", _ZNK3sce2Np9CppWebApi15ProfanityFilter2V219WebApiErrorResponse8getErrorEv) +STUB( + "xRgvoRyJulQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "xRlNX6VVyxY", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersD2Ev) +STUB("xRltLJD8Sz0", mono_aot_Sce_Vsh_Orbis_ContentManagerunbox_trampolines_end) +STUB("xRoQNAA+nbM", _ZN7WebCore12ChromeClient30preferredScrollbarOverlayStyleEv) +STUB("xRpbhAqd+08", AnnotateCondVarWait) +STUB( + "xRpuYiu5q-Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEmmEv) +STUB( + "xRqRIeV4csc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("xRsGImhRf3s", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V510AnnotationEEC2Ev) +STUB("xRwCqdPeNug", _ZN3sce7Toolkit2NP2V29Messaging22GameDataMessageDetailsD1Ev) +STUB("xRwvvcfZfHM", sceKernelBacktraceSelf) +STUB("xRycekLYXdc", _Vacopy) +STUB("xS-Hjw1psYs", _ZN3sce2np13JsonDocParserD2Ev) +STUB( + "xS2e-clFuog", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEED1Ev) +STUB("xS43U4VgIXE", sceSpPthreadAttrSetinheritsched) +STUB("xS5S5V+3uQ4", _ZN7WebCore8Settings30setResourceUsageOverlayVisibleEb) +STUB("xS5ULz5uAXI", _ZNK3sce2Np9CppWebApi6Common6VectorIlEixEm) +STUB("xSAR0LTcRKM", sceAgcDcbJump) +STUB("xSFLN9EXFbQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEppEv) +STUB( + "xSnZycO+93U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEC2ERKS7_) +STUB( + "xSpaV1+j8As", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEC1EPS6_PNS2_10LibContextE) +STUB("xSrhtSLIjOc", sceRemoteplaySetApMode) +STUB( + "xSrpiS5XKbw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEEC2ERS9_) +STUB("xSxPHmpcNzY", _ZNSs6assignEPKcm) +STUB("xSy6mntarUQ", sceFsInitMountLwfsCompatOpt) +STUB( + "xSy8b-9WeM4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEeqERKS9_) +STUB("xSzv-6H17w4", _ZN7WebCore26makeBoundaryPointAfterNodeERNS_4NodeE) +STUB("xT+rhsQNLfw", _ZNK7WebCore18PlatformPasteboard10readStringEmRKN3WTF6StringE) +STUB( + "xT2qjFxeXB4", + _ZN9Inspector26AnimationBackendDispatcher12stopTrackingElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "xT3Am-+qo2Y", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser10setslotIdsEPKc) +STUB("xT3Cpz0yh6Y", sceKernelAioSubmitWriteCommandsMultiple) +STUB( + "xT3e-qs91IU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "xT41NJu+3vg", + _ZN9Inspector20DOMBackendDispatcher13highlightRectElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("xT55MQDY9lg", sceMusicPlayerServiceInitialize2) +STUB( + "xTJHUtERIzo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEplEm) +STUB("xTJYIk5zjF8", scePatchCheckerCancel) +STUB( + "xTMs6eJUqxc", + _ZNK3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody16getMaxSpectatorsEv) +STUB( + "xTRALFH+qUM", + _ZN3sce2Np9CppWebApi7Matches2V126AdditionalStatisticFactory7destroyEPNS3_19AdditionalStatisticE) +STUB( + "xTZp7jmodUk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEppEi) +STUB("xTcttXJ3Utg", sceNetConfigDelArpWithInterface) +STUB("xTd54EEL1Ao", sceCesSbcToUtf8) +STUB("xTfnxYXtinY", WKBundleInspectorClose) +STUB("xTkbVML7bwo", mono_aot_System_Reactive_Interfacesunbox_trampoline_addresses) +STUB( + "xToCQXMWkOE", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi21ParameterToLeaveMatch20setleaveMatchRequestENS1_6Common12IntrusivePtrINS3_17LeaveMatchRequestEEE) +STUB("xTsOqp-1bE4", sceGnmSpmSetSpmSelects2) +STUB( + "xTvoPbR9VOM", + _ZNK3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfiles14haslanguageSetEv) +STUB( + "xTyore9Lagg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE5beginEv) +STUB( + "xTzi3NVtaac", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEmmEi) +STUB( + "xU-t7ETffLQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB( + "xU4XJ0T-jfw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEED2Ev) +STUB( + "xU5lDpO39rU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEE11get_deleterEv) +STUB("xU60KtGN8j0", _ZN3sce7Toolkit2NP2V210Tournament16RegisteredRosterD1Ev) +STUB("xUBz9+Iln64", _ZN7WebCore15ActiveDOMObject7suspendENS_19ReasonForSuspensionE) +STUB("xUDTB4S7g20", _ZNK7WebCore8Document6domainEv) +STUB( + "xULVsMb2kto", + _ZN3JSC19HeapSnapshotBuilder23analyzeVariableNameEdgeEPNS_6JSCellES2_PN3WTF17UniquedStringImplE) +STUB("xUQcbV4BLFo", mono_aot_Sce_Vsh_VrEnvironmentunbox_trampoline_addresses) +STUB("xURDbke-S9Q", mono_aot_ReactNative_Modules_Vshplt_end) +STUB( + "xUW6fkiTtjM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot11unsetfieldsEv) +STUB("xUWjwwxZX7c", uidna_nameToASCII_59) +STUB("xUZEheAPMYs", _ZN3WTF17GregorianDateTime21setToCurrentLocalTimeEv) +STUB("xUZaboL3o64", _ZN3sce7Toolkit2NP2V210Tournament7Request18GetRegisteredUsersD2Ev) +STUB("xUembDYTM9o", mono_aot_Sce_Vsh_RemotePlayunbox_trampolines) +STUB( + "xUhWFIwG5Sk", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V129MatchCompletionRateProperties15getDisconnectedEv) +STUB( + "xUnEBPqwAMA", + _ZN7WebCore6Widget5paintERNS_15GraphicsContextERKNS_7IntRectENS0_25SecurityOriginPaintPolicyEPNS_18EventRegionContextE) +STUB("xUp4-mftj5I", sceOpusCeltDecGetSize) +STUB("xUs+FXeJsVU", __asan_report_load4) +STUB("xUsJSLsdv9I", _Unwind_Resume_or_Rethrow) +STUB("xUt7yXvFz3M", _ZN7WebCore14ScrollableArea21scrollbarStyleChangedENS_14ScrollbarStyleEb) +STUB("xUxaNqgIvEI", _ZNK7WebCore14ScrollableArea23mouseEnteredContentAreaEv) +STUB("xUzs8eT2cAc", mono_aot_Sce_Vsh_Orbis_Bgftjit_code_end) +STUB( + "xV0NRbm2apI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE5beginEv) +STUB( + "xV55YQSV5P8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEED2Ev) +STUB( + "xV8U4M2b3NE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEC1ERKS7_) +STUB( + "xVBAM8y9BqE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEEC2ERKSA_) +STUB("xVLeuiaA94g", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS16FriendsVariablesEEC1Ev) +STUB( + "xVMo+gsZnKA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEEC2EPS6_PNS2_10LibContextE) +STUB("xVWTWmYYs-0", _ZNK7WebCore12ChromeClient36pageExtendedBackgroundColorDidChangeENS_5ColorE) +STUB( + "xVXvZQv+9DU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE8capacityEv) +STUB("xVcVD7jgI9k", _ZN7WebCore10JSDocumentD2Ev) +STUB("xViqJdDgKl0", sceNpUnregisterPlusEventCallback) +STUB( + "xVis9LnAkcg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("xVlRy5NAUsw", GetClosedCaptionSettings) +STUB( + "xVn51+NyaWo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEplEm) +STUB( + "xVpDiHQh72w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEppEi) +STUB( + "xVy7vlLopDY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEE7get_refEv) +STUB("xVyBpIhTAxg", _ZN3JSC10JSFunction6createERNS_2VMEPNS_18FunctionExecutableEPNS_7JSScopeE) +STUB( + "xW3-ONAd5Oc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE6resizeEj) +STUB("xW3s82uY8pI", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_23NpSessionInvitationInfoEE8allocateEmPKv) +STUB( + "xW5vcB6E43o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEcvbEv) +STUB("xW6BSxCc9wk", T_CString_stringToInteger_67) +STUB( + "xW7lrjSYy-s", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V231TestForProfanityResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_24TestForProfanityResponseEEE) +STUB( + "xWDZ0jzZbgg", + _ZN3sce7Toolkit2NP10ParametersC1EPFvRKNS1_5EventEERNS1_9NpTitleIdEPvmPNS1_19AllocImplementationE) +STUB("xWP4UmjuEs8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEC2ERS7_) +STUB( + "xWVU6ihXBWw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEED2Ev) +STUB( + "xWYf9Q68kJU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "xWZSt9j3A5c", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser28setxPsnAcceptPlatformNamePs5ENS5_25XPsnAcceptPlatformNamePs5E) +STUB("xWZkfYm5LDY", _ZNK3sce2Np9CppWebApi13InGameCatalog2V515ContainerRating8getTotalEv) +STUB( + "xWgIGF1yvjo", + _ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead19setPlayerAttributesERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_9AttributeEEEEE) +STUB("xWk5R+wvzNA", _ZN7WebCore8Document11execCommandERKN3WTF6StringEbS4_) +STUB("xWpb1SCRK8o", udatpg_getBestPattern_67) +STUB("xWpmqXWWI4A", _ZN7bmalloc5Cache27deallocateSlowCaseNullCacheENS_8HeapKindEPv) +STUB("xWrwK4hdRsg", _ZN3sce7Toolkit2NP34DetailedProductInfoListInputParams9ProductIdC2Ev) +STUB("xWvs8ZzLQSI", WKBundleNodeHandleSetHTMLInputElementAutoFillAvailable) +STUB("xWyIbzz9fIM", _ZN7WebCore17AnimationTimeline14setCurrentTimeEN3WTF7SecondsE) +STUB( + "xX4FQr6oHro", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V321MissingElementFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_14MissingElementEEE) +STUB("xX4RLegarbg", sceAudioOutMasteringInit) +STUB( + "xX4pWVlMTXQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEC1Ev) +STUB("xX4qgaV2NVQ", GCC_except_table167) +STUB("xX6s+z0q6oo", _ZTISt9type_info) +STUB("xX7sD1IdylE", _ZN3sce7Toolkit2NP9Utilities6FutureI19SceNpTrophyGameDataED2Ev) +STUB("xX9ex6bQiBI", _ZN3JSC8Bindings13RuntimeObjectD2Ev) +STUB("xXCqbDBx6mA", CA_MGMT_extractSerialNum) +STUB("xXFCf61XfUc", mono_aot_Sce_Vsh_VideoServiceWrapperplt) +STUB("xXM1q-ayw2Y", _ZN10__cxxabiv117__class_type_infoD2Ev) +STUB( + "xXMSDR04TTI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEmmEv) +STUB( + "xXONtULNIIA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEE3getEv) +STUB( + "xXVIQeX+vJ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEC1ERKS7_) +STUB("xXWrbaaPNNg", cairo_pattern_add_color_stop_rgba) +STUB("xXWslPRXf9Y", WKContextStartMemorySampler) +STUB("xXZXZyGw65E", _ZN7WebCore18TextureMapperLayer16replicaTransformEv) +STUB("xXdH+HZsm5E", _ZNK3WTF8WallTime24approximateMonotonicTimeEv) +STUB("xXe+Dc3g6Lc", _ZNK7WebCore14ScrollableArea23mouseMovedInContentAreaEv) +STUB("xXj0rnNUYIk", sceKernelIccNvsFlush) +STUB("xXkwDDcyfBw", LoginMgrSetLoginFlag) +STUB("xXmxcLeOZCA", _ZN3sce7Toolkit2NP2V27Session7Request5LeaveD2Ev) +STUB("xXqX5FltSmw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEneERKS9_) +STUB( + "xXqoqrbJclo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEED1Ev) +STUB( + "xXrKF4aA5OA", + _ZN7WebCore21SerializedScriptValueC2EON3WTF6VectorIhLm0ENS1_15CrashOnOverflowELm16EEESt10unique_ptrINS2_IN3JSC19ArrayBufferContentsELm0ES3_Lm16EEESt14default_deleteIS9_EE) +STUB( + "xXsA32yEN9o", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_15PlayedWithStoryENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB("xXwYFScOgCo", YGNodeStyleSetWidthAuto) +STUB( + "xXx8ESBzxas", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEC2EPS8_) +STUB("xY4YsPzhSUs", _ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetail13unsetLastNameEv) +STUB( + "xY4gVXA0efE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEppEv) +STUB("xY607JqjoPk", sceNpManagerIntGetTitleToken) +STUB("xYAvCGJR1qI", JVM_Socket) +STUB("xYB11qM66J8", _ZN23sceMetadataReaderWriter13writeMetadataERKSsRKNS_8MetadataEj) +STUB( + "xYBMxQl5ZcI", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM10PseudoTypeEEESt8optionalIT_ERKN3WTF6StringE) +STUB("xYDJom8RawI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12FriendsRanksEEC2Ev) +STUB( + "xYF5MTUq86U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEaSERKS9_) +STUB( + "xYGfTu-lJUk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("xYHAR2W390o", _ZN3JSC14JSRunLoopTimerD0Ev) +STUB( + "xYIq4mY2VS4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEmmEv) +STUB("xYN7D+8y-KA", _ZN3sce7Toolkit2NP2V27Session7Request5LeaveD1Ev) +STUB("xYU+-XLaVhU", _ZN4Manx9X509chainC1EPv) +STUB("xYWiGBLHydA", _ZN7WebCore18PluginInfoProvider7refreshEb) +STUB("xYY8intnuPs", monoeg_g_snprintf) +STUB("xYf-z05L7UE", AsyncStorageSetItemNative) +STUB("xYhfbebbRFw", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_12CategoryInfoEEC2Ev) +STUB("xYiYl8j0EM4", _ZN13MsvMetaEditorD2Ev) +STUB("xYmwUKajQbI", _ZN7WebCore16HTMLMediaElement30setWebkitClosedCaptionsVisibleEb) +STUB( + "xYsCXjf2Rk0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "xYtAiIjVno8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEC1EPS8_) +STUB("xYzqQiTzIYc", jpeg_fdct_float) +STUB( + "xZ2OF6809Mk", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRanking24setgetRankingRequestBodyENS1_6Common12IntrusivePtrINS3_21GetRankingRequestBodyEEE) +STUB("xZ54Il-u1vs", sceNetDumpDestroy) +STUB("xZ9RzH9zuBw", _ZN3NTF5MutexD1Ev) +STUB("xZDG33ZHAOc", sceSdmaCopyTiledNonBlocking) +STUB( + "xZEnaurxDkQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEixEm) +STUB( + "xZFwm4i60Mc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEC1Ev) +STUB("xZH-GUWHsLc", + _ZN3sce2Np9CppWebApi14SessionManager2V114RepresentativeC2EPNS1_6Common10LibContextE) +STUB( + "xZKx35zAAGQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "xZLL0Y9IImE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEptEv) +STUB( + "xZLt5BQhLUs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEC2ERKS7_) +STUB( + "xZO222a-8f8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "xZSmTrUsQSg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE8pushBackERKS8_) +STUB("xZWYmRsx-SU", _ZN3sce7Toolkit2NP2V24Core12ResponseBase13setReturnCodeEi) +STUB("xZXQuNSTC6o", sceNpTusGetMultiUserVariableVUserAsync) +STUB("xZXZshCE8BU", _ZN3sce7Toolkit2NP2V212NetworkUtils16NetStateDetailedC1Ev) +STUB("xZYXhT-qMno", _ZNK3WTF6String31convertToUppercaseWithoutLocaleEv) +STUB( + "xZei0PHUxtI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEEaSERSA_) +STUB("xZk+QcivrFE", sceNpManagerIntCreateRequest) +STUB( + "xZnRsyFt2pk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEED2Ev) +STUB( + "xZo+lwT0DQQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEEC2Ev) +STUB("xZposkLLevs", _ZN7WebCore18TextureMapperLayer16setBackdropLayerEPS0_) +STUB("xZqiZvmcp9k", _ZNSt4_Pad7_LaunchEPP7pthread) +STUB( + "xZsQTaAJEV0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEED2Ev) +STUB("xZtXq554Lbg", _ZNK3sce16CommonDialogUtil6Client13getFinishDataEPvm) +STUB("xZtbq5w3jiY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE5emptyEv) +STUB( + "xZut-p9njRc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEEC2ERKSA_) +STUB("xa+fRWAU3PU", _ZN3sce7Toolkit2NP2V24Auth7IdTokenC2Ev) +STUB( + "xa3bCjRCv6g", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE21intrusive_ptr_sub_refEPS7_) +STUB( + "xa5nyS2AFUk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE6resizeEj) +STUB( + "xa6No6D1pSE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEC2EPS9_) +STUB("xa8oL9dmXkM", sceNgs2PanInit) +STUB("xaA5TmMu4Fg", _ZN12video_parser17cVideoProfilerMp415_createMediaSubEj) +STUB( + "xaBmRh8df0k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEC2EPS8_) +STUB("xaC6Jbw2pLg", _ZN7WebCore16convertToIntegerIiEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB( + "xaIq0CtQKoY", + _ZN7WebCore11JSDOMMatrixC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_9DOMMatrixENS6_13DumbPtrTraitsIS8_EEEE) +STUB("xaJ+90PDWq0", _ZN7WebCore17FrameLoaderClient15didCreateWindowERNS_9DOMWindowE) +STUB( + "xaJFdsoROcI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEE11get_deleterEv) +STUB("xaOTiuxIQNY", sceNetConfigWlanAdhocSetWakeOnWlan) +STUB("xaQHq4LK5zQ", glPushGroupMarkerColorSCE) +STUB("xaT+yTMJJP8", WKDictionaryCopyKeys) +STUB("xaUk9FnXrT4", uprv_decNumberCompareSignal_67) +STUB("xaZ3K60Wwz0", sceAudioOut2LoPortGetState) +STUB("xaZIwYQG0rw", _ZN7WebCore22EmptyFrameLoaderClient18frameLoadCompletedEv) +STUB("xacsaU-hKOE", _ZN7WebCore20ResourceResponseBaseC1ERKN3WTF3URLERKNS1_6StringExS7_) +STUB( + "xae8xDbhfws", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB( + "xai8h1+3ttg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEC2Ev) +STUB("xakUpzS9qv0", CA_MGMT_extractSignature) +STUB("xanAHBoj6Yk", _ZN3sce2Np9CppWebApi14SessionManager2V112NonPsnLeaderD1Ev) +STUB("xaswa+ndZS0", FTA_Export_Module_raster1) +STUB("xb1xlIhf0QY", sceCompanionUtilInitialize) +STUB("xb3+9+02Tb8", _ZN3sce7Toolkit2NP2V210Tournament13OneVsOneMatchC2Ev) +STUB("xb8VgcXQhvI", sceAgcBranchPatchSetThenTarget) +STUB("xb8u4xT3-zg", fuse_teardown) +STUB( + "xb9EjAi8zDg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE5clearEv) +STUB( + "xbBY3WvR4Pk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC2ERKSA_) +STUB( + "xbH8wKcAz6o", + _ZN7WebCore27PlatformMediaSessionManager24removeAudioCaptureSourceERNS_20PlatformMediaSession18AudioCaptureSourceE) +STUB("xbIUIcHILDA", mono_btls_x509_add_reject_object) +STUB( + "xbRdpqj9Mog", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "xbYj8xOauko", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEC2EPS8_) +STUB( + "xbcGIdNLWXk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEEC2ERKSA_) +STUB("xbd1v1ock4A", _ZN7WebCore16MIMETypeRegistry32isSupportedImageResourceMIMETypeERKN3WTF6StringE) +STUB("xbjUjDk2Ov4", _ZNK7WebCore14DocumentLoader19isLoadingInAPISenseEv) +STUB("xbma7s2JMEk", + _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributesC1EPNS1_6Common10LibContextE) +STUB("xboOgWkcWVw", _ZNK7WebCore11MediaPlayer22didPassCORSAccessCheckEv) +STUB("xbqCEIzvg3E", sceImeBackendAllConfirm) +STUB("xbsFHrTpdoc", _ZN7WebCore27PlatformMediaSessionManager29applicationWillBecomeInactiveEv) +STUB("xbsHap7BnBw", sceDataTransferTargetAbortLaunch) +STUB( + "xbwmj+AEwzQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE5clearEv) +STUB("xbxNatawohc", sceGnmSubmitAndFlipCommandBuffers) +STUB( + "xc-oXBJ5OG4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEEC2EPS6_PNS2_10LibContextE) +STUB("xc2TNwBtUJo", _ZN7WebCore9HTMLNames6isAttrE) +STUB("xcHRGhm9GeI", _ZN3WTF16AtomicStringImpl7addUTF8EPKcS2_) +STUB("xcJCXHqBrjE", FTA_Add_Module_smooth_lcdv) +STUB( + "xcLhhLuQI+o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "xcOFeB3r5v8", + _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody18setUpdatedDateTimeERK10SceRtcTick) +STUB("xcRYR-r3oKk", _ZN7WebCore16convertToIntegerItEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB("xcauS25MvZ0", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V115LastUpdatedUser14accountIdIsSetEv) +STUB("xcc6DTcL8QA", __cxa_bad_typeid) +STUB("xcgfVoUmj7w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEEC1ERKS7_) +STUB( + "xchJ5tmzcBw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("xclPccnXtsc", _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse14matchTypeIsSetEv) +STUB("xcuJj4t8vWQ", _ZN9Inspector27DOMStorageBackendDispatcherD0Ev) +STUB("xd4QqZ8SHSM", uset_applyPattern_67) +STUB("xd7O9oMO+nI", _ZNSt14_Num_ldbl_base13has_quiet_NaNE) +STUB( + "xdBOmnyARSk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEC2EPNS2_10LibContextE) +STUB( + "xdHivV7ag3s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("xdHqQoggdfo", _ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1Em) +STUB("xdNfbpothF4", __tsan_mutex_post_signal) +STUB("xdP1IeSO2T4", _ZN3JSC8JSObject6freezeERNS_2VME) +STUB("xda7MBYkUc4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEdeEv) +STUB("xddD23+8TfQ", sceNpEntitlementAccessGetAddcontEntitlementInfo) +STUB("xdeyFN68o7Y", + _ZNK3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionNonPsnPlayer11getPlayerIdEv) +STUB( + "xdgVtKwQGWc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEED2Ev) +STUB( + "xdjQInxR6v8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEC1EPNS2_10LibContextE) +STUB("xdtEozwG5LM", + _ZN9Inspector21InspectorRuntimeAgent29willDestroyFrontendAndBackendENS_16DisconnectReasonE) +STUB("xdvjDJ-mL7w", _ZN9MmsMp4BoxC1Ev) +STUB( + "xdvmNG4l5Gw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEixEm) +STUB("xdvsBbplHHc", _ZN7bmalloc11EnvironmentC1ERKSt11scoped_lockIJNS_5MutexEEE) +STUB("xdwXJaTNSdo", _ZN7WebCore11DisplayList10StrokeRectD0Ev) +STUB("xdxuhUkYalI", CERT_STORE_addIdentityWithCertificateChain) +STUB( + "xdyyu1E3D-M", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("xdzlDALrdBs", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_17ActivityFeedStoryEED1Ev) +STUB("xe+zjaz4zLk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEEneERKS7_) +STUB( + "xe0EZWWJkjU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEC2EPS8_) +STUB("xe1ffNTYHs4", _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScoreaSERS5_) +STUB( + "xe4tlAQA310", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlotC1ERS5_) +STUB("xe7jxinnieM", WKBackForwardListGetBackItem) +STUB( + "xeFWT5tDy7M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEC2Ev) +STUB("xeHNDZ8Sk3E", _ZN9Inspector15ScriptCallStackD1Ev) +STUB("xeNnnv-Lfw4", _ZN3sce7Toolkit2NP2V27Session17SessionInfoUpdate16SESSION_NAME_LENE) +STUB("xePvUf6IXfc", u_isspace_67) +STUB("xeTLfxVIQO4", sceRazorCaptureCommandBuffersOnlyImmediate) +STUB("xeTxrnBIa+Q", _ZN7WebCore18DOMWindowExtensionC1EPNS_5FrameERNS_15DOMWrapperWorldE) +STUB("xeWLWLBfE+I", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIjEC1Ev) +STUB("xeYO4u7uyJ0", fopen) +STUB("xebyez5Qcm4", _ZN3JSC8JSBigInt10createFromEPNS_14JSGlobalObjectEi) +STUB("xegFfZKBVlw", sceHttpSetSendTimeOut) +STUB( + "xegkEMb4ZUs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEEC1ERSA_) +STUB( + "xeiqNTqC8uk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("xej9400EPrk", _ZN3JSC2VM25callbackFunctionSpaceSlowEv) +STUB("xejRyEbsLcw", FT_Stream_ReleaseFrame) +STUB("xele5n8grDs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEppEv) +STUB("xepciUc5wpk", __ubsan_handle_out_of_bounds_abort) +STUB( + "xeqQ6VssObU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "xerkq73ldzg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEEC1EPS6_PNS2_10LibContextE) +STUB("xesmlSI-KCI", pthread_attr_setscope) +STUB("xetF04gznxY", _ZN7WebCore18TextureMapperLayer2idEv) +STUB( + "xetcJm3vijo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("xeu-pV8wkKs", sceKernelIsInSandbox) +STUB( + "xeunZETVUSk", + _ZN15AbstractStorage14StorageManager10GetStorageERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_7StorageEE) +STUB("xexuBx9rGvg", sceDebugGetGpuInfoArea) +STUB("xeyXzjIu2IA", _ZNK9Inspector21InjectedScriptManager20inspectorEnvironmentEv) +STUB("xez2fQ-9XM0", _ZN7WebCore6Editor39insertParagraphSeparatorInQuotedContentEv) +STUB( + "xf-Hs4BrBzc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEC1EPS8_) +STUB("xf-XRFu56-8", eglWaitGL) +STUB( + "xf52BGsznyo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEppEi) +STUB("xf64ZHPO1ms", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku20plusUpsellPriceIsSetEv) +STUB( + "xf8E5W9NqiQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("xfB04bSjrZY", sceShareUtilityAdvanceTerminate) +STUB("xfE3WNru10U", ucpmap_getRange_67) +STUB("xfIua+p93JM", _ZN7WebCore14FrameSelection18setCaretVisibilityENS_9CaretBase15CaretVisibilityE) +STUB("xfM0lTzZ2cg", _ZN7WebCore11MediaPlayer10setPreloadENS_16MediaPlayerEnums7PreloadE) +STUB("xfOSCbCiY44", + _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewPKv) +STUB("xfOqgLUa7jQ", _ZN3JSC7Symbols15pushPrivateNameE) +STUB("xfQm3FWZ-og", _ZN3WTF18ParallelHelperPoolD1Ev) +STUB("xfRjtUW5FKo", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V511ContentTypeEEC1Ev) +STUB( + "xfbrffz2otU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEC1Ev) +STUB( + "xfh+R1jbwwA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEC2ERS7_) +STUB( + "xfhyqhJzgT4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEC1ERS7_) +STUB("xfm7bGiCIPg", sceKernelStreamWriteDelete) +STUB( + "xfmGwgBnPp8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEdeEv) +STUB( + "xfmwfNXGekY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE3endEv) +STUB( + "xfqVuTHooTM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEC2EPS8_) +STUB("xfqpXSahYAE", sceBgftServiceIntUploadSetStartState) +STUB("xfrFfxRfm0c", isobmf_decoder_destroy) +STUB( + "xfsyezp3NUw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEC1Ev) +STUB("xftR500Mk5s", sceBackupRestoreUtilRestoreData) +STUB("xfw0+A2aiWE", sceWkFontConfigGetAttr) +STUB("xfw84SLnzeI", _ZN3sce3pss5orbis9framework12PsmInitParamC2Ev) +STUB( + "xfwyZgrnz24", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEaSERKS9_) +STUB("xfy2uloQTls", sceFsUfsLargewriteFsckWithMM) +STUB( + "xg+LTTVPYZs", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEiRNS2_10LibContextEPT_m) +STUB("xg-mmIlUNQs", _ZN3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBodyD2Ev) +STUB("xg5Kn1Zto4k", eglGetConfigs) +STUB("xg9A5nBRkB0", _ZNK3sce2Np9CppWebApi11UserProfile2V113BasicPresence15getOnlineStatusEv) +STUB("xgCo-trtSlA", sceIduUtilPauseAllDownloads) +STUB("xgDjJKpcyHo", scePngEncEncode) +STUB("xgGebSiuK70", sceVnaStopKeyPhraseDetection) +STUB( + "xgJJWgWd+3s", + _ZN9Inspector26LayerTreeBackendDispatcher13layersForNodeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "xgKnQ88Bt1M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEE11get_deleterEv) +STUB( + "xgMriYCwzjM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "xgNMDK5pLm4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEC2Ev) +STUB( + "xgSj40dLuA4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEED1Ev) +STUB( + "xgUcw+0fJaI", + _ZN9Inspector23CanvasBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) +STUB( + "xgVQ4YelhzE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE3endEv) +STUB( + "xgYKOv94JXE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE8copyFromERKS9_) +STUB( + "xghp8sr7cZc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("xgjt4Dkhfuo", _ZN7WebCore11MediaPlayer20playbackStateChangedEv) +STUB("xgmdmZZJV-8", _ZN7WebCore8SVGNames10feImageTagE) +STUB( + "xgotjceZNic", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEdeEv) +STUB( + "xgq3bSsppoY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEEC2ERKS9_) +STUB("xguce2V69xQ", ubrk_following_67) +STUB( + "xgxEp7-LxrM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE3endEv) +STUB( + "xgzN8lvXVQY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEE11release_refEv) +STUB( + "xgzZG6Ibmw8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEEaSERSA_) +STUB( + "xh-Bx7jIWLg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEEaSERKSA_) +STUB("xh0BAnLIBEM", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session14InvitationDataEE19setCustomReturnCodeEi) +STUB( + "xh324hUgi-M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEcvbEv) +STUB("xh3OpSkf0l0", coil_popen) +STUB( + "xh5YNVcG1R8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEC2EPS8_) +STUB( + "xh5kyvuTEgA", + _ZN3sce7Toolkit2NP8Sessions9Interface17getInvitationInfoEPKNS1_21InvitationInfoRequestEPNS1_9Utilities6FutureINS1_23NpSessionInvitationInfoEEEb) +STUB("xh9-wUa4fv8", mono_sgen_set_thread_type) +STUB("xhAcaIwnrgk", _ZNK3sce4Json6Object5beginEv) +STUB( + "xhAvMG3KmOU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEEC2Ev) +STUB( + "xhCfFrD0gmU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEptEv) +STUB("xhDUq5emaGw", WKInspectorDetach) +STUB("xhH2dgpJC70", WKPreferencesSetSourceBufferChangeTypeEnabled) +STUB( + "xhIGeTUl2BI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEEC2EPS7_PFvS9_EPNS2_10LibContextE) +STUB("xhLEBvmyrcU", _ZSt9use_facetISt7codecvtIDic9_MbstatetEERKT_RKSt6locale) +STUB("xhLHHsgt39w", scePktMgrGetProtocolNumber) +STUB("xhMUowfYUnI", _ZN3sce2Np9CppWebApi15ProfanityFilter2V219WebApiErrorResponseD1Ev) +STUB( + "xhNJ77aU1Wc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEE3getEv) +STUB("xhb-r8etmAA", sceAppContentSmallSharedDataGetAvailableSpaceKb) +STUB("xhfp2YniggY", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEEC2Ev) +STUB( + "xhin9lbRj-M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEaSERKS9_) +STUB( + "xhlKg2g4Nnc", + _ZN3sce2Np9CppWebApi7Matches2V119RequestMatchResults20setCooperativeResultERKNS3_24RequestCooperativeResultE) +STUB("xhmR4dQ6+1w", _ZNK3sce2Np9CppWebApi7Matches2V111AddedPlayer13getPlayerTypeEv) +STUB("xhphdEm4s3Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEEC2EPNS2_10LibContextE) +STUB( + "xhpqli3Mxh8", + _ZN9Inspector26DebuggerFrontendDispatcher14didSampleProbeEN3WTF6RefPtrINS_8Protocol8Debugger11ProbeSampleENS1_13DumbPtrTraitsIS5_EEEE) +STUB("xhrI4zhlBuA", sceRegMgrIsChange) +STUB("xhx5rVZEpnw", sceHmdInternalSetDebugGpo) +STUB( + "xhzZwGDaeVk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEplEm) +STUB("xi+DB2YrLV0", mono_aot_Sce_Vsh_JsExtensionunbox_trampoline_addresses) +STUB( + "xi4NeE6IwTA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("xiBhgxFf7d8", sceFsInitMountPprPkgOpt) +STUB("xiH4YdjKEYc", glTexStorage2DEXT) +STUB("xiJubl4cUak", RemotePlayNotifyPinCodeError) +STUB("xiT8hFe2M24", udat_format_67) +STUB("xiTqbFc7w+w", sceFiosGetGlobalDefaultOpAttr) +STUB("xiauk1N3Esw", _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForReadD2Ev) +STUB("xih0DndiTn8", _ZN7WebCore21NetworkStorageSession14maxAgeCacheCapERKNS_15ResourceRequestE) +STUB("xii+yBgtDgg", __asan_get_report_description) +STUB("xikhaDNOD-8", _ZNK7WebCore24CoordinatedGraphicsLayer14primaryLayerIDEv) +STUB( + "xikr4To-F5g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEdeEv) +STUB("xilbMn7q9qE", _ZN15AbstractStorage7Content6RenameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("xiqd+QkuYXc", _ZNSt15underflow_errorD2Ev) +STUB( + "xirLnO9W5Tk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB( + "xiyeYe-s1CM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "xiykGTfqFOA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEmmEi) +STUB("xj1xUHCK428", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15NpSessionMemberEED1Ev) +STUB("xj3JN8SfKIM", unorm2_swap) +STUB("xj3tNJptfLI", FT_Stroker_BeginSubPath) +STUB( + "xj45wmGJ0wg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEppEi) +STUB( + "xj9C+E1ZSYk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEC2ERS7_) +STUB("xjBDFWUNvCw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEmmEi) +STUB("xjBjT+qFC5Q", _ZNK7WebCore6Region8containsERKS0_) +STUB("xjCW0JsAcmI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEptEv) +STUB( + "xjCsUZiSn0U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEppEi) +STUB( + "xjDxTFaEGn4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("xjE7xLfrLUk", sceSystemServiceGetAppFocusedAppStatus) +STUB("xjInQNqTrZU", __asan_exp_store4) +STUB("xjKlGy9x95I", + _ZN7WebCore26MessagePortChannelRegistry27messagePortChannelDestroyedERNS_18MessagePortChannelE) +STUB("xjVZ2aqjVrg", CurlMultiInitialize) +STUB( + "xjVhrq2KPJA", + _ZN3sce2Np9CppWebApi14SessionManager2V158PostPlayerSessionsSessionIdMemberPlayersRequestBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_26RequestPlayerSessionPlayerEEEEEPNS9_INS3_51PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEE) +STUB( + "xjXbEh3Rlxs", + _ZN3sce2Np9CppWebApi7Matches2V125CreateMatchRequestFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_18CreateMatchRequestEEE) +STUB( + "xjY6CqSSnq0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEE7get_refEv) +STUB( + "xjiyo-kM7Eo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("xjjhT5uw08o", sceAudioOutExPtClose) +STUB( + "xjp4yqGNY2A", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB("xjr8uy5qexM", + _ZN7WebCore27ScrollingStateScrollingNode21setScrollableAreaSizeERKNS_9FloatSizeE) +STUB("xjs+AdvF4j0", _ZNK3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectator11getPlatformEv) +STUB("xjw8dmAtKOc", _ZNK3sce2Np9CppWebApi7Matches2V111AddedPlayer13getPlayerNameEv) +STUB("xjyWb8N4xFM", _ZN3sce2Np9CppWebApi13InGameCatalog2V55Image9setFormatERKNS4_6FormatE) +STUB("xk0AcarP3V4", scePadOpen) +STUB( + "xkCQUBBDI9o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "xkD4VxvDKgU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEdeEv) +STUB("xkIWP8hwCtA", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13boolean2IsSetEv) +STUB( + "xkJoVDI2m70", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB("xkLfem4ShVY", _ZN7WebCore19JSAnimationTimelineD1Ev) +STUB("xkLx3jMR+C8", mono_aot_Sce_Vsh_ShellUIUtilWrapperunbox_trampolines) +STUB("xkUBYXiLzB8", _ZN12video_parser5vpcom21_AbortCloseConnectionEPNS_8_vp_fileE) +STUB("xkYy-HPYh-Y", ucol_getStrength_67) +STUB("xkf7inWsr-M", WKPreferencesGetServiceControlsEnabled) +STUB("xkiZgSlJ9q0", _ZN7WebCore3URL8setQueryERKN3WTF6StringE) +STUB( + "xkjbTlSBiAo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEppEv) +STUB("xkymWiGdMiI", sceHttpGetCookieStats) +STUB( + "xkzA3MKiLqo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("xl+1PNJSId0", _ZN4Manx6System19setVirtualRangeNameEPvmPKc) +STUB("xl-NQkj2YFE", u_austrncpy_67) +STUB("xl0o3af5rH4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEC2Ev) +STUB( + "xl2WxiWFPD4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEC1EPS6_PNS2_10LibContextE) +STUB( + "xl55PMv6NLc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEptEv) +STUB( + "xlEQuJBBgrM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE5emptyEv) +STUB("xlMpv-0dQqQ", _ZN7WebCore8JSDOMURL14finishCreationERN3JSC2VME) +STUB("xlQcp4Sc0gk", rgctx_fetch_trampoline_rgctx_120) +STUB("xlRcc7Rcqgo", hypot3f) +STUB("xlZothImIe4", sceRnpsAppMgrDestroyUpdateRequest) +STUB( + "xlbcwfK6dTA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEC2EPS8_) +STUB( + "xlgA01CQtBo", + _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE5_IfmtEPcPKcNSt5_IosbIiE9_FmtflagsE) +STUB( + "xlh7WUvub4Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEppEi) +STUB( + "xlhlTHvRVM8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEEaSERSA_) +STUB( + "xlj6+kd2l8o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEEC2ERKSA_) +STUB( + "xlr2Vh1z4qQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEC2ERS7_) +STUB( + "xm+Bl1ITTKw", + _ZN3sce2Np9CppWebApi13InGameCatalog2V521ContainerMediaFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_14ContainerMediaEEE) +STUB("xm2bDJ1gvz8", _ZN3sce7Toolkit2NP15AppSTLAllocatorI13SceNpOnlineIdEC1ERKS4_) +STUB( + "xm6BUShx81g", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE8capacityEv) +STUB( + "xm7dBJUzRlc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEED2Ev) +STUB("xm8JxcngD74", + _ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_17AnimationTimelineE) +STUB( + "xm8ithI58J4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEEC2Ev) +STUB("xmAnv5rrQGE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEC2Ev) +STUB("xmF0yIF4iXc", sceNpPollSema) +STUB( + "xmJUuG8cBgs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE4sizeEv) +STUB("xmJYAfy6m1w", _ULx86_64_init_remote) +STUB("xmP9O7ieSMk", YGNodeStyleSetMaxHeight) +STUB("xmPtQWBvGJQ", _ZN3sce2Np9CppWebApi14SessionManager2V15Error14setReferenceIdEPKc) +STUB("xmQq6hB1vqE", WKPopupMenuItemCopyText) +STUB( + "xmROlnKlOjo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEppEv) +STUB("xmWi73o1BR0", sceAgcDriverSubmitMultiCommandBuffersDirect) +STUB( + "xmdRHj7wRTc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEEaSERKSB_) +STUB("xmhnAoxN3Wk", sceAppContentGetPftFlag) +STUB( + "xmiQXCKsp9Q", + _ZN3sce2Np9CppWebApi7Matches2V127ResponseInGameRosterFactory7destroyEPNS3_20ResponseInGameRosterE) +STUB("xmjNkL14Jho", Java_java_io_RandomAccessFile_open0) +STUB( + "xmk2pGerHvY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEEC1ERKS9_) +STUB("xmnt-POI+Sc", _ZN3sce2Np9CppWebApi7Matches2V117ResponseMatchTeamC2EPNS1_6Common10LibContextE) +STUB("xmodkU3kfhg", _ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead8fromJsonERKNS_4Json5ValueE) +STUB( + "xmp5mz0qTnw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEC1ERKS7_) +STUB("xmqLf-a8vYY", _ZN3sce3pss5orbis9framework8PsmEvent4SendERKNS2_12PsmEventDataE) +STUB( + "xmshc+a-bO4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEptEv) +STUB("xmyYZ9Gnh08", mono_aot_Sce_Vsh_ShellUIUtilWrapperplt) +STUB("xn+H+GSLQHw", rgctx_fetch_trampoline_mrgctx_19) +STUB( + "xn91SnYf9Lg", + _ZNK3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsTouchResponseBody20touchedDateTimeIsSetEv) +STUB("xn9OOHPX-QY", _ZN3sce7Toolkit2NP2V26Friend7Request26DisplayFriendRequestDialogC2Ev) +STUB("xn9aIpe+XQQ", sceVdecwrapDeleteDecoder) +STUB("xnARf4a4prE", _ZNK7WebCore11MediaPlayer16supportsScanningEv) +STUB("xnIArSSzecM", _ZN9Inspector33LayerTreeBackendDispatcherHandlerC2Ev) +STUB( + "xnKGHn4JBLA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V13Mmr15setPerFranchiseERKNS1_6Common12IntrusivePtrINS3_13MmrPropertiesEEE) +STUB("xnLbph2g12A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEE7get_refEv) +STUB( + "xnNbhjSRnb0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "xnO8AQsvVfo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEC2EPS8_) +STUB( + "xnOlwqVJ-ak", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB( + "xnWq-1KvI54", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEneERKS9_) +STUB("xnb525v3YTs", _ZN3sce2Np9CppWebApi11Matchmaking2V113ErrorResponseC1EPNS1_6Common10LibContextE) +STUB("xnd8BJzAxmk", sceAppContentGetAddcontInfoList) +STUB( + "xniPUAXUvec", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEEaSERSA_) +STUB("xnkBcS0p1KM", _ZNK7WebCore8Position8upstreamENS_27EditingBoundaryCrossingRuleE) +STUB( + "xnq-OqIAcWQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEE3getEv) +STUB( + "xo-qf+3Cjk4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEneERKS9_) +STUB("xo1n7aUR-Cc", + _ZNK3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15Error6toJsonERNS_4Json5ValueEb) +STUB("xo1zSCziW4k", _ZN7WebCore9HTMLNames8textAttrE) +STUB("xo9Z9W9CVN4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEEC1EPKS6_) +STUB( + "xoBAYkAPaeM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("xoLxyUwgfJI", _ZNK3sce2np14JsonNumberImpl3GetEPj) +STUB( + "xoNSKpgHsJU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEE11get_deleterEv) +STUB("xoOeMPVrBAE", mono_aot_Sce_Vsh_Np_Snsjit_code_end) +STUB("xoOfzXJM30s", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V110AvatarSizeEEC1Ev) +STUB("xoRfQxAhHjk", sceLibreSslInitEx2) +STUB( + "xoU8a7hiluo", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10setString6EPKc) +STUB("xoV4mkbjaHk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEED2Ev) +STUB( + "xoVRBbnuDos", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEC1EPS6_PNS2_10LibContextE) +STUB("xoYuJahGyBE", _ZN3sce7Toolkit2NP2V28Commerce7SkuInfoD1Ev) +STUB( + "xoZBq0jyP4A", + _ZN9Inspector22InspectorDebuggerAgent12breakProgramENS_26DebuggerFrontendDispatcher6ReasonEON3WTF6RefPtrINS3_8JSONImpl6ObjectENS3_13DumbPtrTraitsIS6_EEEE) +STUB("xoaQMJQ9JFg", WKBundleFrameCopyURL) +STUB("xod2jO9Gs4s", sceUserServiceSetNpAccountId) +STUB("xody9WF4sxA", _ZN3JSC2VM21intlCollatorSpaceSlowEv) +STUB("xoe4ss9GmYc", cairo_region_num_rectangles) +STUB( + "xoepu05KeBw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEED1Ev) +STUB( + "xoezweEjLQc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEEC1ERSA_) +STUB( + "xojr0stkbwE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEmmEi) +STUB("xon5yCPxbAw", nsnp_FinTrack) +STUB( + "xopr29uh7bQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEEcvbEv) +STUB( + "xotzrkLV-aU", + _ZN3sce7Toolkit2NP2V28Commerce11getProductsERKNS3_7Request11GetProductsEPNS2_4Core8ResponseINS3_8ProductsEEE) +STUB( + "xouTWfx8ZJk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEEC1EPS6_PNS2_10LibContextE) +STUB("xox-Ow5yyDs", ulocimp_toBcpKey_67) +STUB( + "xozlqyejt88", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("xp-IoIUYCaQ", _ZN7WebCore14DocumentLoaderD2Ev) +STUB( + "xp2O7zNDs9k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEED2Ev) +STUB("xpB7NUYCht8", _ZN3sce7Toolkit2NP2V210Tournament7BracketC2Ev) +STUB( + "xpJvJOUq2QE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEppEi) +STUB("xpKodkgAS4Q", _ZN3JSC7Symbols14bigPrivateNameE) +STUB("xpLjHhJBhpo", _ZN3sce2np15CancelableScopeD2Ev) +STUB( + "xpLmwEwUd7k", + _ZNK3sce2Np9CppWebApi14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBody11getPlatformEv) +STUB("xpMw3H+9ThQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEED2Ev) +STUB( + "xpNCIgq5370", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "xpONiiZZKWE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE4sizeEv) +STUB( + "xpOurHtWuhM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEC2Ev) +STUB( + "xpPB01QKvTo", + _ZN3sce2Np9CppWebApi14SessionManager2V131RequestGameSessionPlayerFactory7destroyEPNS3_24RequestGameSessionPlayerE) +STUB("xpQjiERB8Gk", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEE5resetEPS4_) +STUB("xpSP40U+pqc", _ZNK7WebCore36ISOProtectionSystemSpecificHeaderBox6keyIDsEv) +STUB( + "xpT59kwSjy0", + _ZN15AbstractStorage12LocalService23create_storage_instanceERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("xpUqzg1gPtg", u_vfprintf_u_67) +STUB("xpYOrYjAoUc", _ZNK7WebCore36ISOProtectionSystemSpecificHeaderBox4dataEv) +STUB("xpZ6UBuyYx4", _ZN7WebCore9FontCache22lastResortFallbackFontERKNS_15FontDescriptionE) +STUB( + "xpZ7Pt9FlNg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "xpbaGZUFupI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("xphrZusl78E", sceNetGetsockopt) +STUB("xphwiQQzH+M", _ZN7WebCore16HTMLInputElement7setSizeEj) +STUB( + "xpnfRRrT8Yw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEC1EPS6_PNS2_10LibContextE) +STUB("xpoHjYrdN7k", _ZN7WebCore8SVGNames18text_renderingAttrE) +STUB( + "xpp-SMIswCU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEneERKS9_) +STUB( + "xptStTyYP6Y", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot9terminateEv) +STUB( + "xpxMNUILJoM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "xq1VKkD3NVc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEneERKS9_) +STUB("xq6hhVsBYWQ", _ZN7WebCore7Pattern24setPatternSpaceTransformERKNS_15AffineTransformE) +STUB( + "xqBBk1UCXRY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEED2Ev) +STUB("xqChFx35EBw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEE5resetEPS6_) +STUB( + "xqED9tMkNA0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEmmEi) +STUB( + "xqG06cqpYbc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEE7add_refEv) +STUB( + "xqIUnKeeNdY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEC1ERKS7_) +STUB( + "xqJEF6uRQnQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEEC1Ev) +STUB("xqLXNRuiapQ", _ZN7WebCore24CoordinatedGraphicsLayer23setContentsNeedsDisplayEv) +STUB( + "xqTlJ+S45J8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "xqV4ImHW7tY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE6resizeEj) +STUB("xqV7Ohv9sKI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEEC1ERS7_) +STUB("xqbiS7PMrSE", glGetString) +STUB("xqbu+3-b+oc", _ZN7WebCore11DisplayList11SetLineDashD1Ev) +STUB( + "xqefYhqwgr4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEptEv) +STUB("xqeyyKUZcQ4", gsharedvt_out_trampoline) +STUB("xqgVCEflEDY", scePadSetFeatureReport) +STUB("xqhNCItwXpQ", __ubsan_handle_nonnull_return) +STUB("xqjAbn8VNGo", FTA_Support_Format_Type42) +STUB("xqjc1z94eDQ", _ZL4_new) +STUB( + "xqlD9fbc50I", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("xqlFMfkztKg", audiodeccpuinternal_core_ops_ddp) +STUB("xqmkjHCEOSY", sceUsbdFillIsoTransfer) +STUB( + "xqp1UaH70oI", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V142MatchCompletionRateCompletedMetricsFactory6createEPNS1_6Common10LibContextEiPNS5_12IntrusivePtrINS3_35MatchCompletionRateCompletedMetricsEEE) +STUB("xqsffBWdttE", _ZN9Inspector28InspectorScriptProfilerAgent26programmaticCaptureStartedEv) +STUB("xqtJm0VrtY8", sceFsISSchedResultToPriority) +STUB( + "xqxAsjLX+VM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEED2Ev) +STUB("xqyby-wgUnY", _ZN9Inspector17ScriptDebugServer14removeListenerEPNS_19ScriptDebugListenerEb) +STUB( + "xr+Lyh6Z5GI", + _ZN3sce2Np9CppWebApi14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyC1EPNS1_6Common10LibContextE) +STUB("xr-Nm6Z3X7E", mono_aot_Sce_Vsh_Db_Sharedunwind_info) +STUB("xr1gIsJ-9Ns", sceMatRealloc) +STUB("xr2263Do-NU", _ZN3WTF24currentTextBreakLocaleIDEv) +STUB("xr7g9J2cPGk", _ZN3sce7Toolkit2NP2V28Matching7Request11SearchRoomsC2Ev) +STUB( + "xrCCOxztM74", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEEptEv) +STUB( + "xrH8ImHHeTA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEC2EPNS2_10LibContextE) +STUB( + "xrK53HXV6T8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE10setContextEPNS2_10LibContextE) +STUB("xrUu20T3aFc", + _ZN12video_parser13cVideoMetaMP417getThumbnailImageENS_9VP_LANG_eENS_15VP_SEARCH_OPT_eEjPh) +STUB( + "xrVUQFoTJoM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEC2EPS6_PNS2_10LibContextE) +STUB("xrXnHw4+bTc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE7popBackEv) +STUB("xrY2KyKW7DE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEE7get_refEv) +STUB( + "xrbGDDaOpUg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE7popBackEv) +STUB( + "xrbnS5ZT8kk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEdeEv) +STUB( + "xrcwt7OT90o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEmmEv) +STUB( + "xrfUcqpeS-8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("xri4mdpM17I", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEE7add_refEv) +STUB( + "xrk4JD0kQZg", + _ZN3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator8fromJsonERKNS_4Json5ValueE) +STUB( + "xrmMiP+2LjA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEixEm) +STUB("xrmmI832R4U", sceUltConditionVariableDestroy) +STUB("xrqDcLK015g", _ZN22MmsMdCommonFsOperationC1Ev) +STUB( + "xrsRUSdq1qM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("xrtki9sUopg", sceUserServiceGetAccessibilityKeyremapEnable) +STUB( + "xrxsLCBMUV8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "xryuT8j5Yc0", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_13FriendsOfUserENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB( + "xs3PXq5UEEE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEE3getEv) +STUB( + "xs4LLymnPA0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEcvbEv) +STUB( + "xs69CnIiWu4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("xsCKY9Bdkaw", _ZN7WebCore8SVGNames11polylineTagE) +STUB("xsDEHCFMIlw", + _ZN7WebCore19ResourceRequestBase14setCachePolicyENS_26ResourceRequestCachePolicyE) +STUB( + "xsGKAWz7gvQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "xsIfPHtgnoQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEEC2ERS9_) +STUB( + "xsLaMtM1jc8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEEC1ERKSA_) +STUB("xsRN6gUx-DE", _ZNSt13_Regex_traitsIwE6_NamesE) +STUB( + "xsVpsKwZ25E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEED1Ev) +STUB( + "xsVsa0KO68Q", + _ZN3sce2Np9CppWebApi14SessionManager2V134ResponsePlayerSessionPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_27ResponsePlayerSessionPlayerEEE) +STUB("xsXQD5ybREw", _ZNSt22_Future_error_categoryD1Ev) +STUB("xsYdh9NsuK0", pthread_mutexattr_setgen_np) +STUB("xsdpIleRxwM", _ZNK3sce2Np9CppWebApi13InGameCatalog2V55Image11formatIsSetEv) +STUB("xshoqgGROyY", TWO52) +STUB( + "xsiiq8MpPG0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEE5resetEPS6_) +STUB("xspD08cWeyE", _ZN12video_parser5vpcom3rtc14GetDaysInMonthEtt) +STUB( + "xspFecBA4VE", + _ZN7WebCore10JSLocation17defineOwnPropertyEPN3JSC8JSObjectEPNS1_14JSGlobalObjectENS1_12PropertyNameERKNS1_18PropertyDescriptorEb) +STUB( + "xsqZL8jhYus", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEC2Ev) +STUB("xstcTqAhTys", sceNetCtlGetInfoIpcInt) +STUB( + "xsuwNjF-iJU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEEC2ERSA_) +STUB("xszTt3hOPcA", sceDepth2SetCameraFactoryCalibrationData) +STUB( + "xt2r-7qWZL8", + _ZN9Inspector24RuntimeBackendDispatcher19setSavedResultAliasElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "xt5lwl3ZnUw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEE11get_deleterEv) +STUB("xt62sAe2704", ucnv_cbFromUWriteUChars_59) +STUB("xt9gfRnciNk", _ZN3sce7Toolkit2NP2V212NetworkUtils7Request22GetDetailedNetworkInfoD2Ev) +STUB("xtB+gqdTSZc", _ZNK7WebCore4Page21wheelEventTestMonitorEv) +STUB( + "xtU2TwmQ89E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEC1EPKS8_) +STUB("xtZsdK1-NsY", _ZN3sce7Toolkit2NP2V26Friend7Request10GetFriendsC2Ev) +STUB("xtb9fOR6ilA", FTA_Remove_Module_smooth_lcd) +STUB("xtbb-2f703A", sceGameCustomDataDialogInitialize) +STUB("xtduHw3-uNw", u_charsToUChars_67) +STUB("xtfuUrufWx4", + _ZN3sce7Toolkit2NP10ParametersC2EPFvRKNS1_5EventEPvES6_S6_mPNS1_19AllocImplementationE) +STUB("xtgoMt+v-H0", _ZN7WebCore8Document11createRangeEv) +STUB("xtiudkYGWWA", _ZN7WebCorelsERN3WTF10TextStreamENS_14ScrollClampingE) +STUB( + "xtpeTuEScZU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEED2Ev) +STUB( + "xtyGPyEWqd0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEED1Ev) +STUB("xu9qWN0YYC4", _ZN3sce2np10EventQueue4ctorEv) +STUB("xuEUMolGMwU", _ZTSSt8numpunctIwE) +STUB("xuFJk0QcYI0", mono_aot_Sce_Vsh_GameCustomDataplt) +STUB("xuGZeGhiElE", _ZN7WebCore11HTMLElement12setDraggableEb) +STUB("xuLuaJ4Ywlg", sceShareUtilityAdvanceValidateContents) +STUB( + "xuMmKYzaIfs", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE11hasResponseEv) +STUB( + "xuPcHjd8Ics", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEED2Ev) +STUB("xuUODA8UmEE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEEppEi) +STUB("xuY99Qcb108", FT_Set_Char_Size) +STUB("xuaSjMP7VYc", _ZNK3WTF6String18simplifyWhiteSpaceEPFbDsE) +STUB("xub82YQ3rlA", _ZNK3sce2Np9CppWebApi7Matches2V123RequestTeamMemberResult11getPlayerIdEv) +STUB("xubh1B6X354", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyD2Ev) +STUB("xubw0SjW4Y0", sceNpGriefReportGetTicket) +STUB( + "xugo4hJuBQQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("xus+q86JKcc", mono_aot_System_Web_Servicesplt_end) +STUB("xutLbQdqyb4", sceFiosArchiveMountSync) +STUB("xutwCvsydkk", sceNpTusDeleteMultiSlotDataVUser) +STUB("xv+fnq7Isic", _ZN3JSC9JSPromise6s_infoE) +STUB("xv-740aYMAY", _ZN7WebCore9HTMLNames9optionTagE) +STUB("xv-UN1kbqGk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEE11release_refEv) +STUB("xv2WbSZW-VU", _ZN3sce7Toolkit2NP2V28Matching6MemberD1Ev) +STUB( + "xv4u18VhqN4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB("xv6M1yhM3iA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V110UpdateModeEEeqERKS7_) +STUB( + "xvDAA5LMB5M", + _ZN3sce2Np9CppWebApi14SessionManager2V132RequestPlayerSessionMemberPlayer10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_32RequestCreatePlayerSessionPlayerEEEEE) +STUB( + "xvHMlQoNjzQ", + _ZN3sce2Np9CppWebApi6Common23UpDownStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC2ERKS8_) +STUB( + "xvInXWxtAUQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEC1Ev) +STUB("xvJiFea+JnQ", _ZN3sce7Toolkit2NP2V28Matching9AttributeC1Ev) +STUB("xvKW01mGR+M", SHA224_Init) +STUB("xvMc8QuNzpo", sceDataTransferTargetAbortGetUsers) +STUB("xvOmFQg-ZsM", WKHitTestResultCopyAbsolutePDFURL) +STUB( + "xvRSNoHcIoc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB("xvRvFtnUk3E", _ZNKSt9bad_alloc4whatEv) +STUB( + "xvVHjBrnDeo", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE5getIdEv) +STUB("xvVR0CBPFAM", _ZNKSt23_Generic_error_category4nameEv) +STUB("xvVRiqap334", _ZN3WTF11Persistence7DecoderrsERNS_8OptionalImEE) +STUB("xvXzhIx7GAs", AnnotateRWLockCreate) +STUB( + "xvaKkMO6Na4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEppEv) +STUB("xvbXZYq6yfI", _LMBCSData1_67) +STUB("xvdhNdIHvWA", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEEC2Ev) +STUB("xvfYB20ddwU", + _ZNK3sce2Np9CppWebApi14SessionManager2V125ResponseGameSessionPlayer6toJsonERNS_4Json5ValueEb) +STUB( + "xviE63dqNU8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB( + "xvl9ao1vSXY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE8pushBackERKS8_) +STUB("xvquTEbr1ro", WKPreferencesSetAriaReflectionEnabled) +STUB("xvsP5Yz6FmY", sceNpUniversalDataSystemEventPropertyObjectSetUInt64) +STUB("xvvl0wloTaQ", _ZN3JSC8DebuggerdlEPv) +STUB( + "xvwBLvAw5rk", + _ZN7WebCore6JSFileC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_4FileENS6_13DumbPtrTraitsIS8_EEEE) +STUB("xw3kZgIgZlU", _ZN3sce7Toolkit2NP9Utilities6FutureI16SceNpTusVariableED1Ev) +STUB( + "xw3zPfi9UM0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEE6assignEPS5_PFvS7_EPNS2_10LibContextE) +STUB("xw7nZtsLETs", _ZN7WebCore21BlobDataFileReference20prepareForFileAccessEv) +STUB("xwAg3lsPCus", _ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequestC1EPNS1_6Common10LibContextE) +STUB("xwB67z-O5-o", sceFsReserveCluster) +STUB("xwEkKL6aw3w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEaSERKS7_) +STUB( + "xwFAyLVrn60", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEppEv) +STUB("xwJIlK0bHgA", sceNpTusGetMultiUserDataStatusVUser) +STUB("xwPoRLiohzA", _ZN3JSC13JSFinalObject6s_infoE) +STUB( + "xwTdfRiiexM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEmmEv) +STUB("xwWm8jzrpeM", sceNetDhcpdStop) +STUB( + "xwaQP4Q1yPw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEE11get_deleterEv) +STUB("xwbklOkRVcA", mono_aot_Sce_Vsh_SystemLoggerWrapperjit_got) +STUB("xweOi2QT-BE", sceCompanionHttpdUnregisterRequestCallback) +STUB("xweP3QvBaY4", mono_aot_Sce_Vsh_BackupRestoreUtiljit_code_start) +STUB("xwhyGPZkW6w", sceVideoOutSysCursorEnable) +STUB( + "xwio9nqWJoI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE8pushBackERKS8_) +STUB( + "xwjQ26lv5S0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE5beginEv) +STUB("xwmX4Gh8-qk", _ZN7WebCore9JSCSSRule9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB( + "xwnULl4OsG0", + _ZN7WebCore17PageConsoleClient6recordEPN3JSC9ExecStateEON3WTF3RefIN9Inspector15ScriptArgumentsENS4_13DumbPtrTraitsIS7_EEEE) +STUB("xwrhoiKrVi4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEmmEi) +STUB( + "xwy1I52dE8o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEEptEv) +STUB("xx+jorq5D5c", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12BandwithInfoEED2Ev) +STUB( + "xx-iKzgVqeU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE8pushBackERKS8_) +STUB( + "xx1FEaGhi4g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEixEm) +STUB( + "xx2rtUG2aPs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE3endEv) +STUB("xx4FGisubsA", uprv_getMaxCharNameLength) +STUB("xx7vPTh323Y", WKViewSetDrawsTransparentBackground) +STUB("xxBnIBiUVzY", _ZN3sce4Json5Value14s_nulluintegerE) +STUB( + "xxCBvEF4QKA", + _ZN7WebCore19JSAnimationTimelineC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_17AnimationTimelineENS6_13DumbPtrTraitsIS8_EEEE) +STUB("xxCPbEBdoEU", MASSMCReadMessage) +STUB("xxLlsTkSZN8", _ZN3sce3Xml3Dom4Node11appendChildENS1_6NodeIdE) +STUB("xxMDs4ufX0I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEaSERKS7_) +STUB( + "xxNUT08kzVk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEE5resetEPS8_) +STUB("xxNXw-XIe6c", _ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody8getCauseEv) +STUB("xxNgaOEz9Es", _ZN9Inspector15RemoteInspector5startEv) +STUB("xxOTJpEyoj4", _ZN3sce2np7Callout10IsTimedoutEv) +STUB( + "xxXCZ3KTzM4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "xxZjYrZssiI", + _ZN3sce4Json5ValueC1ERKSt3mapISbIcSt11char_traitsIcENS0_8StlAllocIcEEES1_St4lessIS7_ENS5_ISt4pairIS7_S1_EEEE) +STUB("xxaJLwPko8I", _ZN7WebCore20ResourceResponseBase18setHTTPHeaderFieldERKN3WTF6StringES4_) +STUB("xxbFcHNWw-E", mono_aot_Sce_Vsh_Gls_GlsSharedMediaViewjit_code_end) +STUB("xxdwmfFNjjE", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicket9terminateEv) +STUB( + "xxlDfmaad0g", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlotC2ERS5_) +STUB( + "xxn2ztabcVM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEdeEv) +STUB("xxsW1hXL2mM", _ZN15AbstractStorage14DailymotionAPID1Ev) +STUB("xxzE5TCEbmY", uloc_getDisplayCountry) +STUB( + "xy0MR+OOZI8", + _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE13get_monthnameES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm) +STUB( + "xy21s43pMMY", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody32unsetComparedLastUpdatedDateTimeEv) +STUB("xy3ZAbOfOU0", _ZN3WTF11Persistence7EncoderC2Ev) +STUB( + "xy3jCkIDL44", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEppEv) +STUB("xy4m3oQ08NE", _ZN7WebCore21DiagnosticLoggingKeys26failedLessThan20SecondsKeyEv) +STUB( + "xy9Wsk8l+vM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEE7get_refEv) +STUB("xyAI6HDk2XI", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchStatusaSERS5_) +STUB( + "xyEnosLGLxE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEC1EPS8_) +STUB( + "xyM9+9j874c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEmmEv) +STUB("xyNrzqqlgdY", _ZN3sce7Toolkit2NP2V210Tournament12MatchDetailsC1Ev) +STUB("xyRRwQMH5ug", curl_multi_cleanup) +STUB("xyT8IUCL3CI", sceAudioOutPtOpen) +STUB("xyZDCLZrWcM", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesD2Ev) +STUB("xyZTA6sX-TQ", mono_aot_Sce_Vsh_Registryplt_end) +STUB( + "xyaUjXbBaj8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEE5resetEPS9_) +STUB( + "xybBkmDCM2Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE5clearEv) +STUB("xybbGMCr738", sceKeyboardRead) +STUB("xycd6m3nWSM", g_free) +STUB("xycgYEIntak", WKViewHandleImeEvent) +STUB("xycySR37A1k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEEC1EPS5_PNS2_10LibContextE) +STUB("xyd+kSAhtSw", CERT_extractDistinguishedNames) +STUB("xyfUK0D2OWA", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V115FrequentlyMuted11globalIsSetEv) +STUB( + "xyh1m8wK5ag", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEeqERKS9_) +STUB("xylThGsMZuE", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12EventsClient6EventsEED1Ev) +STUB("xyq9yabh7qg", _ZN3sce7Toolkit2NP2V212ActivityFeed15PlayedWithStoryaSERKS4_) +STUB("xywYcRB7nbQ", sceAudioOut2UserCreate) +STUB("xyzaQM0Aj04", _ZN3JSC7Symbols20generatorPrivateNameE) +STUB( + "xz-TR3kX2Ok", + _ZN3sce2Np9CppWebApi11UserProfile2V120BasicPresenceFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_13BasicPresenceEEE) +STUB("xz0YMi6BfNk", sceSaveDataMount5) +STUB("xz4yGTI1ka0", _ZN3sce7Toolkit2NP2V28Matching7Request10CreateRoom20MAX_SIZE_ROOM_STATUSE) +STUB("xz6aex17NzE", _ZN3JSC7Symbols37regExpPrototypeSymbolMatchPrivateNameE) +STUB( + "xzD9oEDLT2k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEED1Ev) +STUB("xzG8mG9YlKY", sceNpTusGetDataAAsync) +STUB("xzGyte9YwAg", g_shell_unquote) +STUB("xzIOBz33RrM", mono_aot_Sce_Vsh_WebBrowserunbox_trampolines_end) +STUB( + "xzJi8SoPq1w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEppEv) +STUB("xzQE-eMzCT8", _ZN7WebCore8SVGNames11azimuthAttrE) +STUB("xzQVBcKYoI8", sceUserServiceGetSecureHomeDirectory) +STUB("xzUiAXg3Ius", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEaSERKS7_) +STUB("xzVZA1oYXo4", sceAudioOut2DebugStateCtrl) +STUB( + "xzYpD5d24aA", + _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14do_get_weekdayES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm) +STUB("xzZiQgReRGE", labs) +STUB("xzdYHCQhKR8", mono_type_is_valid_enum_basetype) +STUB("xzdhJrL3Hns", sceUserServiceGetUserGroupNum) +STUB( + "xzemkrbm9rM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB("xziWz-gUiXs", _ZN3WTF9MediaTime20negativeInfiniteTimeEv) +STUB("xzjeirkjUnY", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE8capacityEv) +STUB("xzkqkH5qWbc", _ZN9Inspector21DOMFrontendDispatcher16attributeRemovedEiRKN3WTF6StringE) +STUB( + "xznuUNEg50k", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEE3getEv) +STUB("xzpWAV02YH0", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V111OfferStatusEEC2Ev) +STUB("xzuZoR3+QAE", Java_com_sony_bdjstack_javax_media_controls_VideoDecoder_transform) +STUB("xzxO3BH+D6M", WKAXObjectHelpText) +STUB("y+13zwV-wM8", _ZN7WebCore8SVGNames7stopTagE) +STUB("y+2XcDavHEo", _ZN7WebCore8SVGNames6x2AttrE) +STUB("y+3x0+LPnRI", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersC2ERS5_) +STUB( + "y+9z8ZPit4k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEEC1Ev) +STUB("y+BdR6GtOps", _ZN7WebCore10XLinkNames17xlinkNamespaceURIE) +STUB("y+E+IUZYVmU", __mulsc3) +STUB( + "y+MJuZs0HZY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEdeEv) +STUB("y+RAunMRPNI", g_slist_delete_link) +STUB("y+Z1jwavobw", rgctx_fetch_trampoline_rgctx_62_p) +STUB("y+ZFCsZYNME", SSL_ASYNC_start) +STUB("y+eBtrEElvs", scePlayReadyLicenseAcqGenerateAck) +STUB( + "y+eSAgEeMXA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEppEi) +STUB("y+h4IElSYkw", _ZN3sce7Toolkit2NP2V28Commerce14ProductDetailsC2ERKS4_) +STUB("y+hOBQoKCak", mono_aot_Sce_Vsh_Np_Pbtcjit_code_start) +STUB("y+iI2lkX+qI", sceGnmSetWaveLimitMultiplier) +STUB( + "y+lynIV0i9Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEC1EPKS8_) +STUB("y+mZON99QYo", _ZNK3sce2Np9CppWebApi7Matches2V118CreateMatchRequest13getActivityIdEv) +STUB("y+o5ZkkHMik", sceDebugGetMonoVMInfo) +STUB( + "y+wn7s8OcUo", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getInteger5Ev) +STUB("y-2kA5FvIyw", mono_aot_Sce_Vsh_Orbis_CdlgServerNpCommercemethod_addresses) +STUB( + "y-9MUtaWOZ0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEneERKS9_) +STUB("y-DJK+d+leg", sceNpTusGetMultiSlotVariableAVUserAsync) +STUB( + "y-EYD4QYLNY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEEC1EPS6_PNS2_10LibContextE) +STUB( + "y-FUWwmDhxM", + _ZN3sce2Np9CppWebApi14SessionManager2V134PostGameSessionsSearchResponseBodyC1EPNS1_6Common10LibContextE) +STUB( + "y-Ot0kzrV68", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEED2Ev) +STUB( + "y-QLBFgd+Co", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEED1Ev) +STUB( + "y-W6nKBt3cM", + _ZN7WebCore19JSHTMLSelectElement17defineOwnPropertyEPN3JSC8JSObjectEPNS1_14JSGlobalObjectENS1_12PropertyNameERKNS1_18PropertyDescriptorEb) +STUB("y-ZCGGbJyUU", WKBundleHitTestResultCopyNodeHandle) +STUB("y-bbIiLALd4", _ZTSN6Dinkum7threads10lock_errorE) +STUB( + "y-kH8HZ4sRY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE5emptyEv) +STUB( + "y-m7ObwVY-8", + _ZN7WebCore20PasteboardCustomDataC2EON3WTF6StringEONS1_6VectorINS0_5EntryELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("y-pCS5uWxG4", ENGINE_ctrl) +STUB("y-rEfomFKXU", + _ZN3sce7Toolkit2NP2V23TSS7getDataERKNS3_7Request7GetDataEPNS2_4Core8ResponseINS3_7TssDataEEE) +STUB("y-vtU6-d5-Y", WKViewportAttributesGetTypeID) +STUB("y-xe7dpaNBY", _ZN3JSC8Bindings13RuntimeObject15subspaceForImplERNS_2VME) +STUB("y06sk8in9AI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEEC1EPS6_) +STUB("y0BDcAt6FGE", _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead13getMaxPlayersEv) +STUB("y0BjcHdMTmI", mono_aot_Sce_Vsh_JsExtensionunbox_trampolines_end) +STUB("y0BpcQP1nto", _ZN3sce2Np9CppWebApi11UserProfile2V125GetBasicPresencesResponseD1Ev) +STUB( + "y0CpshxvtjI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE21intrusive_ptr_add_refEPS9_) +STUB("y0HO+blUxa8", ures_getByIndex_67) +STUB("y0JyEJWo-P0", mono_aot_Sce_CloudClient_App_Platformunwind_info) +STUB("y0Jyu1-OMFw", _ZN3JSC7Symbols28promiseFieldFlagsPrivateNameE) +STUB( + "y0KVK9G7l7k", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V19RatingApi10postRatingEiRKNS4_21ParameterToPostRatingERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB("y0KkAydy9xE", sceGameLiveStreamingStartGenerateStandbyScreenResource) +STUB("y0LF1cuZaa8", mono_aot_Sce_Vsh_PsnUtiljit_got) +STUB( + "y0La2tlmWU0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "y0Qk5PTGJRc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEC1ERS7_) +STUB("y0SswDKrSiQ", WKPageGroupCreateWithIdentifier) +STUB("y0aapzyadSw", utrace_setLevel) +STUB("y0b2W+wEmrs", _ZN7WebCore16JSXMLHttpRequest13visitChildrenEPN3JSC6JSCellERNS1_11SlotVisitorE) +STUB( + "y0cvXmh4-wo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEptEv) +STUB("y0hzUSFrkng", _ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1ERKSt8_Locinfom) +STUB("y0q33hmapKk", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi28ParameterToDeleteGameSessionC1Ev) +STUB("y0sdlMI3lEY", _ZN3JSC7Symbols16smallPrivateNameE) +STUB("y0tHjQrzBJk", _ZN3JSC9JSONParseEPNS_14JSGlobalObjectERKN3WTF6StringE) +STUB("y0v3kg9elKc", _ZN3JSC12JSLockHolderC2EPNS_14JSGlobalObjectE) +STUB("y0wcICJ1I8U", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V19JoinStateEEptEv) +STUB("y1-VASByNaU", il2cpp_string_new_len) +STUB( + "y14zCuQQ9lI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEC1Ev) +STUB( + "y173wd3nz2c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "y17Zp8jXTdY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("y1C0Rs-WDJY", _ZN3sce7Toolkit2NP2V28Matching7Request8JoinRoomD1Ev) +STUB("y1CAx287dGI", sce_to_fios_open_params) +STUB("y1Ch2nXs4IQ", fpurge) +STUB( + "y1MqEVNE55Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEED2Ev) +STUB( + "y1S2yuZ9T8M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEC2Ev) +STUB("y1UT6IS4u-U", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEE3getEv) +STUB("y1dYQsc67ys", _ZNSt14overflow_errorD0Ev) +STUB("y1e+omRUMhY", _ZN15AbstractStorage13TwitterFolder4OpenENS_8ItemTypeE) +STUB( + "y1fI457JCrA", + _ZN9Inspector28DOMDebuggerBackendDispatcher18setEventBreakpointElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "y1kUvQLysR4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("y1qxfafYMHE", _ZTVN3JSC20JSStringHeapCellTypeE) +STUB("y1uSgrWf0tU", YGNodeSetMeasureFunc) +STUB( + "y1yd3Y8+m4s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEEaSERKSA_) +STUB( + "y1zpgXG4UJc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEEC1Ev) +STUB("y2-hP-KoTMI", sceAudioOutSysGetSystemInfo) +STUB( + "y207ECDzXqw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEmmEi) +STUB("y20mWUHGzj8", glActiveTexture) +STUB("y25WcIE0ly0", _ZN9Inspector25ConsoleFrontendDispatchernaEm) +STUB("y29rp3N5qf4", _ZN4IPMI4impl10ClientImpl13pollEventFlagEjmjPm) +STUB("y2LOMMK1Uyw", sceVshctlSetProprietaryChatStatus) +STUB( + "y2O3rlscY54", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEneERKS9_) +STUB( + "y2ZmLW5GfFg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("y2qG+S4-36A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEE11release_refEv) +STUB( + "y2qHeDBxuQs", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEEiRNS2_10LibContextEPT_m) +STUB( + "y2sq4TujP0I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("y2zjSLAEFbY", mono_aot_Sce_Vsh_Passcodejit_got) +STUB( + "y2zq11F6pbQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEmmEv) +STUB( + "y3+Ta70yKDs", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeaders21intrusive_ptr_sub_refEPS5_) +STUB( + "y31ASJjUWzA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEC1EPS8_) +STUB("y31G8GvPBWc", sceDevUsbDeleteHostStreamKevent) +STUB("y33KR+d7Ldg", _ZN4IPMI4impl11SessionImplD1Ev) +STUB( + "y35pE4K5-PI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("y38avcHnyMY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth7IdTokenEED2Ev) +STUB("y3959iBFPP0", YGNodeLayoutGetLeft) +STUB( + "y3B9tUiLFXo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEE11release_refEv) +STUB( + "y3ESMdEBxco", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEEC1Ev) +STUB( + "y3EuGQKXixg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE4sizeEv) +STUB("y3GWJqWbvIo", _ZN7WebCorelsERN3WTF10TextStreamERKNS_14TimingFunctionE) +STUB( + "y3IfPvCBQgo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEE7add_refEv) +STUB( + "y3Ig0qCwihU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("y3N3ILzbKV8", GCC_except_table13) +STUB( + "y3NiQUUL33c", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeAccountId2OnlineIdBatch5getidEv) +STUB("y3Qu90d+jUg", __tsan_read16_pc) +STUB("y3T+uuG1YGg", ucnv_openPackage) +STUB( + "y3T7LZllqg4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEC2Ev) +STUB("y3V0bIq38NE", wctomb_s) +STUB( + "y3W1bx8dPfs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEEC1EPS5_PFvS7_EPNS2_10LibContextE) +STUB("y3Yqewe4JAU", WTFLogWithLevel) +STUB("y3ZxC7Sxmd8", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEEC1Ev) +STUB( + "y3e1er1Sf80", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEneERKS9_) +STUB( + "y3fpyQbTXss", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEaSERKS9_) +STUB("y3iNnPlPfyw", + _ZN3sce2Np9CppWebApi14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyD2Ev) +STUB( + "y3jG5RBYv60", + _ZN3sce2Np9CppWebApi11Matchmaking2V130SubmitTicketRequestBodyFactory6createEPNS1_6Common10LibContextEPKcRKNS5_6VectorINS5_12IntrusivePtrINS3_21PlayerForTicketCreateEEEEEPNSB_INS3_23SubmitTicketRequestBodyEEE) +STUB( + "y3jSEW1KMCo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEEC2Ev) +STUB( + "y3kKukZKeDg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEEaSERSA_) +STUB( + "y3kyo-BvI-E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "y3l0y2rKxdQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE21intrusive_ptr_sub_refEPS9_) +STUB("y3n-6vhbSVo", GCC_except_table265) +STUB( + "y3o7sO7MazE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEEaSERKSA_) +STUB("y3rGQlA5STk", _ZN3sce7Toolkit2NP2V26Friend12Notification15BlocklistUpdateC2Ev) +STUB("y3s0v8asWeI", _ZN7WebCore9HTMLNames11menuitemTagE) +STUB("y3vtrJxxa0A", __asan_report_exp_load4_noabort) +STUB("y3zHpdZO6ME", sceNpTrophy2GetTrophyInfoArray) +STUB("y40h-JVoapA", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEEC2ERKS7_) +STUB("y40y9iXJIbs", __asan_set_shadow_f5) +STUB("y41H0Z-KBYg", _ZN3sce7Toolkit2NP2V212NetworkUtils12BandwithInfoC2ERKS4_) +STUB( + "y43sBLs6FqY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEEC2EPS7_PNS2_10LibContextE) +STUB("y4D7OLrl9y8", _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile12unsetAvatarsEv) +STUB("y4Dg0njlwIU", ft_synthesize_vertical_metrics) +STUB( + "y4HVyO+Tc40", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEppEi) +STUB( + "y4LasKS5Ut0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEC1EPNS2_10LibContextE) +STUB("y4MDLBBNwcU", + _ZN3JSC11createErrorEPNS_14JSGlobalObjectENS_22ErrorTypeWithExtensionERKN3WTF6StringE) +STUB( + "y4NS73unGKs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEE7get_refEv) +STUB( + "y4UouqrhBYs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEE11release_refEv) +STUB( + "y4VQs-im058", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEC1ERKS7_) +STUB("y4WlO8qzHqI", fedisableexcept) +STUB( + "y4Y6pjZbCPc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEppEi) +STUB( + "y4bW5bb8TkI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEEC2Ev) +STUB("y4l-VBLsNio", sceVideoOutGetPortStatusInfo) +STUB( + "y4mbKrd-sTc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEEcvbEv) +STUB( + "y4nYkZYXB1w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE8pushBackERKS8_) +STUB( + "y4tAprWj+d8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE8pushBackERKS8_) +STUB("y4yHm7QGLhE", mono_counters_init) +STUB("y52qHlKZ4t0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEED2Ev) +STUB( + "y53mtcwMguw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE8capacityEv) +STUB( + "y54mIUs2vbw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEC1EPNS2_10LibContextE) +STUB("y55QWr8yzrY", sceApplicationBlockingKill3) +STUB( + "y567gPDwGdA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEED1Ev) +STUB( + "y58SzTMC31M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEC2EPS8_) +STUB("y59QUpecpOE", _ZNK7WebCore17RenderTextControl22textFormControlElementEv) +STUB("y5C1ublO8hg", _ZN7WebCore8Settings20setMediaTypeOverrideERKN3WTF6StringE) +STUB( + "y5HGbAmWn+M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEC2EPS8_) +STUB( + "y5ID6VHvPNg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEeqERKS7_) +STUB("y5IJdPxdBrE", sceCompositorQuit) +STUB("y5JnCLW7ccU", sceUserServiceGetCaptureStatus) +STUB("y5Q1CWGjKCU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEEC1ERS7_) +STUB( + "y5RmfGXPUf0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEC1EPNS2_10LibContextE) +STUB("y5Ta5JCzQHY", sceNpWebApiCreatePushEventFilter) +STUB("y5Vwb-jFM6A", _ZN7WebCore38contextMenuItemTagWritingDirectionMenuEv) +STUB( + "y5W5FDe+Agc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEppEi) +STUB( + "y5ZQqATwm0U", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEEiRNS2_10LibContextEPT_m) +STUB( + "y5ZsDBSrG7I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEEaSERSA_) +STUB( + "y5aR-waFrfg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEmmEi) +STUB("y5bRBoUqDQU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEED2Ev) +STUB( + "y5egg0vH458", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEaSERKS9_) +STUB("y5h7f8H1Jnk", sceMoveGetExtensionPortInfo) +STUB("y5ja7WI05rs", sceNpScoreGetRankingByRangeAAsync) +STUB("y5jp97KAQuQ", _ZNK7WebCore16HTMLInputElement16isTelephoneFieldEv) +STUB("y5mY6SonuNQ", _ZTVN7WebCore16DOMGuardedObjectE) +STUB( + "y5niumAd7hs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE8capacityEv) +STUB( + "y5rZoeM72CY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEEC1ERKSA_) +STUB( + "y5tgCILPlyY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEE11get_deleterEv) +STUB("y5v7URrv4PU", _ZN3WTF40parseES5DateFromNullTerminatedCharactersEPKcRb) +STUB( + "y5vxewuHsyQ", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("y5xKqqrxGvU", FT_Done_MM_Var) +STUB("y5xmS-Dbl6U", sceNpIpcGetEvent) +STUB( + "y5yYMmQItlw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEC1EPS8_) +STUB("y6-LmcBLRuk", _ZN7WebCore30rejectPromiseWithThisTypeErrorERN3JSC9ExecStateEPKcS4_) +STUB("y64VGUuAHFk", _ZN7WebCorelsERN3WTF10TextStreamERKNS_20TransformationMatrixE) +STUB( + "y65KX1d6n+8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEED1Ev) +STUB("y67NuLB0Xpc", + _ZN7WebCore15JSDOMWindowBase34shouldInterruptScriptBeforeTimeoutEPKN3JSC14JSGlobalObjectE) +STUB("y6AEzLH6ZXk", sceSpNetResolverCreate) +STUB( + "y6Azzwut0T4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEEC1ERSA_) +STUB( + "y6Ds6fyw8wY", + _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product9setRatingERKNS1_6Common12IntrusivePtrINS3_15ContainerRatingEEE) +STUB( + "y6JG3bkK2tg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEEcvbEv) +STUB( + "y6K7P7+QrgE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEmmEi) +STUB("y6Kl6Jt1Moo", _ZNK3WTF9MediaTime14hasBeenRoundedEv) +STUB("y6KoDPDVjCQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEEppEv) +STUB( + "y6L58-dqZPE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB( + "y6MIzjigX54", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEED1Ev) +STUB( + "y6O40Vz61sE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEEcvbEv) +STUB("y6RZQrRPti0", mono_class_from_name_case) +STUB("y6ZoKj2OtO8", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_19ProductInfoDetailedEEC2ERKS4_) +STUB( + "y6eEmUuBep8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEC1ERS7_) +STUB("y6fVIGl1ilg", _ZN3sce7Toolkit2NP2V212EventsClient12EventDetailsD2Ev) +STUB( + "y6iOFRXNm6Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEC2Ev) +STUB( + "y6ieDza2YoY", + _ZN3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyC2EPNS1_6Common10LibContextE) +STUB("y6kRaKNQgNE", _ZN3JSC7Symbols22isGeneratorPrivateNameE) +STUB( + "y6l9LbrusJk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "y6mbTn0JNLk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE3endEv) +STUB( + "y6mtufRE5JM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEEC2ERSA_) +STUB( + "y6n9Xn9v9aA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129ConnectionQualityWiredMetrics8fromJsonERKNS_4Json5ValueE) +STUB( + "y6oEtOMCxI8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEC2Ev) +STUB( + "y6q0L3omZgo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEC2Ev) +STUB("y6rgZwIWlmk", udata_swapInvStringBlock_67) +STUB("y6sRnKP+WLc", sceUpsrvUpdateCheckDoCheckSystemVersionDown) +STUB("y6u4mEvMfA0", il2cpp_class_instance_size) +STUB("y6v9vaWZC1A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEE7add_refEv) +STUB( + "y6vJnuVFgiQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEEaSERKSA_) +STUB("y6xETTqSGWM", _ZN9Inspector21InjectedScriptManagernwEm) +STUB("y7+O6u182Rg", _ZNK3sce2Np9CppWebApi7Matches2V119AdditionalStatistic11getStatsKeyEv) +STUB("y7-9PnwOxIA", _ZN7WebCore8Document8postTaskEONS_22ScriptExecutionContext4TaskE) +STUB("y7FAYefKaGw", outgoing_area) +STUB( + "y7FUfrz4kGI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB("y7JD1gfwyfA", sceNpEntitlementAccessGetGameTrialsFlag) +STUB("y7LneQXMe7E", _ZNK9Inspector14InjectedScript12previewValueEN3JSC7JSValueE) +STUB("y7MgGX889Mo", sceVoiceChatRequestCreateGameSessionVoiceChatChannel) +STUB( + "y7NMLxODL18", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setBoolean9ERKb) +STUB("y7OjtaGU5Wk", mono_btls_ssl_use_private_key) +STUB("y7RSdNrw2eA", delegate_virtual_invoke_imt_m_19) +STUB("y7SDME7N1Bg", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17SetGameDataResultEE12deepCopyFromERS7_) +STUB("y7UJ6XG5tUI", Java_com_sony_gemstack_org_dvb_application_AppProxyImpl_n_1getState) +STUB("y7Y2k8D6Bv4", _ZN9Inspector24WorkerFrontendDispatchernaEm) +STUB("y7ZM4mdkTrk", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V112ErrorFactory7destroyEPNS3_5ErrorE) +STUB( + "y7ZbpDdUd-U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE5beginEv) +STUB("y7aMFEkj4PE", _ZSt15_Xruntime_errorPKc) +STUB("y7qIpQmewS8", _ZThn32_N7WebCore14XMLHttpRequestD1Ev) +STUB("y7uxQXIITME", _ZNK7WebCore25DropShadowFilterOperation14affectsOpacityEv) +STUB( + "y7x1gzR8Jas", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEC2EPS8_) +STUB("y7xm2JcXgOM", + _ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody18getUpdatedDateTimeEv) +STUB( + "y7zi3OGD7YA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEmmEi) +STUB( + "y8+7EreNqVs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEC2EPKS8_) +STUB("y80IHZ5UxDE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEE3getEv) +STUB("y8JFcLacpm0", _sceDepthHeadCandidateTrackerGetInformation) +STUB("y8LNzdPJW6k", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE5beginEv) +STUB("y8PXwxTZ9Hc", _ZNSt14_Num_ldbl_base10has_denormE) +STUB("y8YNNx71uI0", _ZN3JSC2VMD2Ev) +STUB("y8YTG9tKkZU", _ZN7WebCore21DeviceOrientationData6createEN3WTF8OptionalIdEES3_S3_NS2_IbEE) +STUB( + "y8YXt7Y9730", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE5beginEv) +STUB( + "y8imcaQP2a0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE21intrusive_ptr_sub_refEPS7_) +STUB("y8j-jP6bHW4", __subvsi3) +STUB("y8jha02Bsu0", _ZNK3WTF10StringImpl21findIgnoringASCIICaseERKS0_j) +STUB("y8utRZcni8U", _ZN3sce7Toolkit2NP2V24Core5Empty8deepCopyERKS4_) +STUB("y8w4lDQtlAo", _ZN7WebCore20UserGestureIndicatorD2Ev) +STUB("y8zF9ff5Vfo", _ZN7WebCore17FullscreenManager18didEnterFullscreenEv) +STUB( + "y95CSpYO3jo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEC2EPS8_) +STUB("y9AkLN0usik", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead6toJsonERNS_4Json5ValueEb) +STUB("y9CL7tutRKQ", _ZN3WTF12CountingLock10unlockSlowEv) +STUB("y9DXbdhSQ-4", __libunwind_Unwind_GetBSP) +STUB("y9E45vFg2Hw", Java_java_awt_GnmGraphicsEnvironment_init) +STUB( + "y9HSX0yKRMg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEC2Ev) +STUB("y9LxpxOPY9M", _ZNK7WebCore8IntPoint18constrainedBetweenERKS0_S2_) +STUB("y9OoA+P5cjk", wcrtomb) +STUB("y9Ur6T0A0p8", _FQuad) +STUB("y9Vc1aQH-Vw", _ZNK3sce2Np9CppWebApi7Matches2V123ResponsePlayerStatistic11getPlayerIdEv) +STUB("y9XY6RAx6TU", + _ZNK7WebCore11ImageBuffer9copyImageENS_16BackingStoreCopyENS_18PreserveResolutionE) +STUB("y9c6Qx9HKFA", sceBgftServiceIntDebugPlayGoGetPlayGoStatusString) +STUB("y9cCHa8L64A", sceFsExternalStorageVerifyMetadata) +STUB( + "y9qaazUDd5k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEEC1ERSA_) +STUB("y9rpICKLMcw", JSObjectMakeTypedArrayWithArrayBufferAndOffset) +STUB( + "y9xaDmjopOw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEE11get_deleterEv) +STUB("yA44W1yuOhQ", _ZN7WebCore11JSDOMWindow17preventExtensionsEPN3JSC8JSObjectEPNS1_9ExecStateE) +STUB( + "yA72c0a5bTY", + _ZN3sce7Toolkit2NP2V212ActivityFeed15getSharedVideosERKNS3_7Request15GetSharedVideosEPNS2_4Core8ResponseINS3_12SharedVideosEEE) +STUB( + "yACjwEY+sJ4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE3endEv) +STUB("yANlCFHmPhw", _ZN3JSC7Symbols17isViewPrivateNameE) +STUB("yAPWPJ0yP04", ScePsmMonoIoInstallCallbacks) +STUB("yAQNPON4Tko", sceGnmGetPhysicalCounterFromVirtualizedInternal) +STUB("yARHEYLajs0", sceNpPartyShowInvitationListA) +STUB("yARaOs411s4", _ZN3WTF6String6numberEy) +STUB("yARnQeWzhdM", sceUserServiceGetPartySettingFlags) +STUB( + "yAWOPCczSCs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEppEi) +STUB("yAWUqugjPvE", sceUserServiceGetPlayTogetherFlags) +STUB("yAZ5vOpmBus", __vfprintf) +STUB("yAhHsSMlkw4", jpeg_idct_4x4) +STUB("yAi6H-Mr8nU", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V116TaskAvailabilityEEC1EPS6_) +STUB( + "yAjWOEWBgeo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEC2EPS7_PNS2_10LibContextE) +STUB( + "yAkEH7s6xNs", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser9getoffsetEv) +STUB( + "yAmCHBTGFGY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEC1Ev) +STUB("yAn22GxqrJc", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEEC1EPS6_) +STUB("yAna0qELJwU", _ZN3sce7Toolkit2NP15AppSTLAllocatorIiEeqERKS3_) +STUB("yAobGI2Whrg", _ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2ERKSt8_Locinfom) +STUB( + "yAtD6UgDFdg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE3endEv) +STUB( + "yAvJ+oUh7JQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEeqERKS9_) +STUB("yAwSbJkN0oI", jio_print) +STUB("yAx+ucBv8Ks", _ZN7WebCore18PlatformTimeRangesnaEmPv) +STUB( + "yAxhGyDIvzg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEED1Ev) +STUB("yB+1wOOpQIU", xmlFreeDoc) +STUB("yB-W95HtJT4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V120PlayerJoinableStatusEEC2Ev) +STUB( + "yB1AQCB9ASI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEneERKS9_) +STUB("yB1t+hdHNFA", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17SetGameDataResultEEC2Ev) +STUB("yB3cojJya2g", + _ZN3sce3pss5orbis5input37InputManager_GetAnalogStickModeNativeEPNS2_15AnalogStickModeE) +STUB("yB4QFDBIcRc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEEC2EPNS2_10LibContextE) +STUB("yB530dMX22E", _ZN7WebCore12EditingStyle8hasStyleENS_13CSSPropertyIDERKN3WTF6StringE) +STUB( + "yB9Rd8ZFtuU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "yBDCsxgLY3M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "yBEI+rzE0tU", + _ZN3sce2Np9CppWebApi7Matches2V125RequestTeamResultsFactory6createEPNS1_6Common10LibContextEPKciPNS5_12IntrusivePtrINS3_18RequestTeamResultsEEE) +STUB("yBJgtZBUXc0", mono_ldtoken) +STUB("yBLMmRHYMNA", ucol_greaterOrEqual_67) +STUB( + "yBQluAFUutk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("yBSbIidwuO0", _ZNK7WebCore21ISOTrackEncryptionBox10defaultKIDEv) +STUB( + "yBU60-0pcck", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("yBZdGSpnkHU", sceDebugReadEventForTest) +STUB("yBaQ0h9m1NM", sceSystemGestureGetPrimitiveTouchEventByPrimitiveID) +STUB("yBcVZXNgjds", _ZNK3sce2Np9CppWebApi14SessionManager2V112JoinableUser6toJsonERNS_4Json5ValueEb) +STUB("yBeFthDF1Is", _ZN3JSC7Symbols19dollarVMPrivateNameE) +STUB( + "yBi-TsrkBS0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB( + "yBkEdD-xjfQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE5eraseENS2_8IteratorIS6_EERS9_) +STUB("yBlLjtA44w8", _ZN3sce2Np9CppWebApi14SessionManager2V12ToD1Ev) +STUB("yBp4itt5K7s", monoeg_g_strdup_vprintf) +STUB( + "yBrCRP0g7e0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("yBsk1OwTRgY", JVM_GetNanoTimeAdjustment) +STUB("yBxn29qtJGA", ScePsmMonoRuntimeSetShuttingDown) +STUB("yByBRIl47TE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEEC1ERS6_) +STUB( + "yBySdI1Kwrc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEeqERKSA_) +STUB("yByyc7LWVyo", _ZN7WebCore14MicrotaskQueueC1ERN3JSC2VME) +STUB("yBzQ4LTnp8U", _ZN9Inspector24CanvasFrontendDispatchernaEm) +STUB( + "yC2RRZrHSOw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEEaSERSA_) +STUB("yC8lFao8mY4", sceValidationGpuGetErrors) +STUB("yCBKPL04RH0", _ZN7WebCore15GraphicsContext20endTransparencyLayerEv) +STUB("yCCsRYlv+5w", sceNpUniversalDataSystemIntRecordArraySetFloat64) +STUB( + "yCDZ--JeA5o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEppEv) +STUB("yCEJIsjIOO8", FT_Set_Var_Design_Coordinates) +STUB( + "yCESHRphxfs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE4sizeEv) +STUB("yCH96l0k5B8", g_path_is_absolute) +STUB("yCIWVaAGicE", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112UpdateStatusEEC1EPS6_) +STUB( + "yCKCNPDdPdc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("yCN5HUwLaVU", sceUpsrvUpdateDoUpdate) +STUB( + "yCPNIkdy7v4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "yCRm0PEP5bs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("yCVElwj0FzQ", + _ZN7WebCore18JSHTMLInputElement13visitChildrenEPN3JSC6JSCellERNS1_11SlotVisitorE) +STUB( + "yCYhCmQo+HU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("yCdGspbNHZ8", sys_siglist) +STUB( + "yCi6Ty9mE5Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEE3getEv) +STUB("yCiC7AYIYVo", WKViewReplyJavaScriptPrompt) +STUB("yCm5r5A5mYE", _ZThn8_N3sce2np13JsonDocParser12onStartArrayEjj) +STUB("yCm8+Pk+cys", mono_aot_I18N_MidEastjit_code_start) +STUB("yCo3HzKQSts", eglBindAPI) +STUB( + "yCpRRhrFF5M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEaSERKS9_) +STUB("yCrMjTRLqi4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEE7add_refEv) +STUB( + "yCy94PCgEeg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEcvbEv) +STUB("yCyJ7A+ywp0", + _Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm13SxPerfCounterE20SceRazorGpuBroadcast) +STUB( + "yD+TSgBu+XI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEEC1EPS8_PNS2_10LibContextE) +STUB( + "yD-LJhseU0s", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEEiRNS2_10LibContextEPT_m) +STUB("yD3I2CRcKmw", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEEptEv) +STUB( + "yD3kHZV7EYc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEED2Ev) +STUB("yD4-QaNSink", FT_Cos) +STUB("yD5dVtX3I2s", sceDeci4hDrfpSetOption) +STUB("yD8VgEPHrz0", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountIdC2Ev) +STUB( + "yDBhmjN31Cg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEE7get_refEv) +STUB("yDBwVAolDgg", sceKernelIsStack) +STUB( + "yDD6hBdH3v8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEptEv) +STUB("yDEj826Hp-0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEEptEv) +STUB("yDG0A0GSJX0", _ZN3WTF11emptyStringEv) +STUB( + "yDG3cRg9fgE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEEC2Ev) +STUB("yDIjrzfaDk4", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V18Variable6toJsonERNS_4Json5ValueEb) +STUB("yDJ-r-8f4S4", sceNpTrophySystemNetSyncTitles) +STUB("yDLZuz3-X6I", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStatsC2ERS5_) +STUB("yDPuV0SXp7g", __ctzdi2) +STUB("yDTlMc94tkc", _ZN7WebCore8SVGNames9slopeAttrE) +STUB( + "yDW2QM6sGKo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "yDY6XbgoHuU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEmmEv) +STUB("yDZIQ3t5QGE", _ZN23sceMetadataReaderWriter14StorageManagerC1Ev) +STUB("yDaWxUE50s0", pthread_mutexattr_getprotocol) +STUB("yDcav8XDhNE", _ZN7WebCore32logMemoryStatisticsAtTimeOfDeathEv) +STUB("yDdbQr1oLOc", _ZNSt8messagesIcED2Ev) +STUB("yDe86KCEP4s", _ZN7WebCore9AnimationC2Ev) +STUB( + "yDfMLEGDphw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEEdeEv) +STUB("yDfugz8JXv0", _ZN3sce7Toolkit2NP2V28Matching4Room5resetEv) +STUB( + "yDl+bUrYW+E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE8pushBackERKS8_) +STUB("yDnwZsMnX0Q", __srget) +STUB( + "yDpZkyQHYFU", + _ZN3sce2Np9CppWebApi12Leaderboards2V120ErrorResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_13ErrorResponseEEE) +STUB("yDpknX+Ixkc", __asan_get_report_access_size) +STUB("yDpnUOiHods", __sce_alloc_params) +STUB("yDx4ChtWlr8", _ZN7WebCore26ContextDestructionObserver16contextDestroyedEv) +STUB( + "yE2GDqAMHwY", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsersC1Ev) +STUB( + "yE2qY7bYIpY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEEptEv) +STUB("yE38ESr-lzs", Java_java_awt_GnmImage_nativeGetWidth) +STUB("yERuWzI3unc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEED2Ev) +STUB("yEYXcbAGK14", sceAudio3dSetGpuRenderer) +STUB("yEbJXKxVJJA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEE5resetEPS6_) +STUB("yEe48o1cHZA", + _ZN3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayer11setOnlineIdERK13SceNpOnlineId) +STUB( + "yEegvjZ+5aY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("yEfKFT5Ks7g", _ZN4Manx3Ssl9sslctxfunEPvS1_) +STUB("yEfR8cTAifY", _ZN7WebCore14SubframeLoader12allowPluginsEv) +STUB( + "yEi52NScke8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE5beginEv) +STUB("yEiJ-qqr6Cg", sceSaveDataDialogGetResult) +STUB( + "yErbCgbHn6Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEEC2ERKSA_) +STUB("yF+a1DlKQ1U", searchCommInfoListByKeyAndProtocolNumberWithActivate) +STUB("yF1AOIs530E", mono_aot_System_Xml_Linqplt_end) +STUB("yFAjKLA-+0Y", _ZN3sce7Toolkit2NP30GameCustomDataThumbnailRequestC1Ev) +STUB("yFDNUIA-SjE", mono_bitset_set) +STUB("yFDwjmOf5Ho", mono_aot_Sce_Vsh_Orbis_Bgftunwind_info) +STUB( + "yFESIdtULms", + _ZN7WebCore14DocumentLoader35enqueueSecurityPolicyViolationEventEONS_28SecurityPolicyViolationEvent4InitE) +STUB("yFFYApjZHQg", fuse_session_remove_chan) +STUB( + "yFGb2s4ByxE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("yFJY7Te6ZRQ", glShaderBinary) +STUB( + "yFUlU-ozqr0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEC2EPNS2_10LibContextE) +STUB("yFVdc7AU9CE", _ZN7WebCore9CookieJar12deleteCookieERKNS_8DocumentERKN3WTF3URLERKNS4_6StringE) +STUB("yFVnOdGxvZY", scePadSetVibration) +STUB( + "yFVo+k6NC5E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEEC1Ev) +STUB( + "yFY+qwyq4EU", + _ZN7WebCore17FrameLoaderClient52dispatchWillDestroyGlobalObjectForDOMWindowExtensionEPNS_18DOMWindowExtensionE) +STUB("yFbiMBfNKnw", Java_com_sony_bdjstack_ti_Database_checkPlayListVersion) +STUB( + "yFeJ6U3p-IQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEaSERKS9_) +STUB("yFpO-JNMJhg", _ZNK7WebCore12TextEncoding7domNameEv) +STUB("yFs8CcUN6CU", internal_reallocalign) +STUB("yFtfUBc5dsc", _ZN4IPMI6Client6Config14MsgQueueConfigC1Ev) +STUB("yFxsCLoBma4", _ZNK7WebCore20TransformationMatrix7mapRectERKNS_9FloatRectE) +STUB( + "yG-Xxdu2F0E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("yG1+UXqztsA", + _ZN7WebCore15JSSVGSVGElement15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("yG3VRjWUFh8", _ZNK9Inspector22InspectorDebuggerAgent21injectedScriptManagerEv) +STUB("yGBvL9qLxNI", scePlayReadyProfileStop) +STUB("yGFPeRo8LME", mono_aot_Sce_Vsh_Orbis_ContentManagerjit_code_start) +STUB("yGII1y64fqE", _ZN3NTF3URLC1EPKc) +STUB("yGKn6vdYInc", sceCesMbcsStrToUtf8Str) +STUB( + "yGPGp7mnGmw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEEptEv) +STUB( + "yGflsUY0vbA", + _ZN3sce2Np9CppWebApi14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyD2Ev) +STUB( + "yGk0WlzXqsk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE5beginEv) +STUB( + "yGkblzIDDM4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE10setContextEPNS2_10LibContextE) +STUB( + "yGl+lPMsKQU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEEptEv) +STUB("yGoMi6Jtw8Q", searchProtocolInfoListBySock) +STUB( + "yGpIkLpID04", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE8copyFromERKS9_) +STUB("yGpb4AjIY7I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEC2Ev) +STUB("yGs2NY0kG5E", _ZN3JSC7Symbols39AsyncGeneratorStateCompletedPrivateNameE) +STUB( + "yGunjfYbfCk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE8copyFromERKS9_) +STUB("yGyMlXr7b94", _ZNK3WTF9MediaTimegtERKS0_) +STUB("yH-uQW3LbX0", pthread_kill) +STUB( + "yH0QPebkOrI", + _ZN7WebCore21NetworkStorageSession23getHostnamesWithCookiesERN3WTF7HashSetINS1_6StringENS1_11DefaultHashIS3_EENS1_10HashTraitsIS3_EEEE) +STUB("yH17Q6NWtVg", sceUserServiceGetEvent) +STUB("yH7aiV+YpZU", _ZN3sce7Toolkit2NP2V26Trophy16UnlockedTrophiesD2Ev) +STUB("yH7i+hXjFTk", _ZN3sce7Toolkit2NP2V24Core8ResponseINS3_18CustomResponseDataEE3getEv) +STUB("yH83vkJ7cEY", _ZNK3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse15nextOffsetIsSetEv) +STUB("yHASI8VDPMo", _ZN3sce3Xml3Dom8NodeList5clearEv) +STUB("yHE4d2C-Ius", _ZN3WTF13printInternalERNS_11PrintStreamEd) +STUB( + "yHKxkVazVnA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB("yHNzl5vZB0k", mono_profiler_install_gc_moves) +STUB( + "yHPvIuNR1xs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEaSERKS9_) +STUB("yHQf-R7Y9uA", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEEdeEv) +STUB("yHQt8Qf6LRA", _ZN3sce7Toolkit2NP2V211SharedMedia5VideoD1Ev) +STUB("yHRImAkUvpc", + _ZNSt9_FacetptrISt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEE6_PsaveE) +STUB("yHUuMr3FiFw", _ZN7WebCore22ResourceLoadStatistics20reduceTimeResolutionEN3WTF8WallTimeE) +STUB( + "yHW2s7ZgOec", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "yHWHPGmIhz0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE7popBackEv) +STUB("yHZvUA01NKo", _ZN7WebCore4Page37setInLowQualityImageInterpolationModeEb) +STUB("yHcYcXyDo8I", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V324ValidationConstraintInfo6setKeyEPKc) +STUB("yHdEPtBDCVY", _ZN3sce7Toolkit2NP2V28Commerce7Request18DownloadListTargetC1Ev) +STUB( + "yHhJYi42N5w", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEeqERKS9_) +STUB( + "yHiMvrq6bxg", + _ZN7WebCore39cleanHTTPRequestHeadersForAccessControlERNS_15ResourceRequestERKN3WTF7HashSetINS_14HTTPHeaderNameENS2_7IntHashIS4_EENS2_20StrongEnumHashTraitsIS4_EEEE) +STUB("yHiQUEutgJ0", WKPageTryRestoreScrollPosition) +STUB("yHl0pPA3rPQ", sceNpManagerIntLoginResetSsoToken) +STUB("yHomqKxhVqk", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19Bandwidth11unsetGlobalEv) +STUB( + "yHtRqfg7Yq4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEEC2Ev) +STUB( + "yI5Gto2AWzM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEmmEi) +STUB("yI6EdumLZDY", png_set_chunk_malloc_max) +STUB("yI8ZKsn2NmU", _ZN3WTF11ThreadGroup3addERNS_6ThreadE) +STUB("yIGNaksBciY", _ZN3JSC7Symbols14supPrivateNameE) +STUB("yII2DPovCBk", __asan_unregister_globals) +STUB("yIS+nYFfwwY", _ZN7WebCore11MathMLNames13malignmarkTagE) +STUB( + "yIaFKciCsmo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEE7get_refEv) +STUB("yIan54+8Xp0", JVM_ConstantPoolGetMethodAtIfLoaded) +STUB( + "yIfKB83lFuQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEC2EPNS2_10LibContextE) +STUB( + "yImneaojuCA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEneERKS9_) +STUB("yIn4l8OO1zA", _ZNSt8numpunctIcEC2EPKcmb) +STUB( + "yIqlNvuBOVA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEE5resetEPS6_) +STUB("yIrZrdWAxtc", WKPageCallAfterNextPresentationUpdate) +STUB("yJ-VbwlllSI", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product14publisherIsSetEv) +STUB( + "yJ5HTrwXtxo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE21intrusive_ptr_sub_refEPS9_) +STUB("yJ5aAgI8wSk", _ZN3sce2Np9CppWebApi6Common8IteratorIlEaSERKS4_) +STUB( + "yJCFqZnMunI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE3endEv) +STUB( + "yJFNz4Kn2ig", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE5abortEv) +STUB( + "yJGGZYVHbn4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE4sizeEv) +STUB("yJQmnLc1uBU", _ZN7WebCore24JSDeprecatedCSSOMCounter9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("yJS1c8SNwEQ", _ZN3sce7Toolkit2NP2V29Messaging22GameDataMessageDetailsD2Ev) +STUB("yJTRBivRI0M", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_25ChallengeBinaryDataResultEED1Ev) +STUB( + "yJY1em1-Lao", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "yJZInxwzEaI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEED2Ev) +STUB("yJeqoME3WSg", u_fgetc_67) +STUB("yJgSyMHFd3U", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product10unsetLabelEv) +STUB("yJioUrTXJdU", _ZN3sce7Toolkit2NP2V211UserProfile7Request27DisplayGriefReportingDialogC1Ev) +STUB("yJw2m6UWDYU", sceNpSessionSignalingGetConnectionInfo) +STUB("yK+A+hJbooE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEE7get_refEv) +STUB("yK-Mn3rbHnE", Java_java_util_zip_ZipFile_initIDs) +STUB( + "yK37Zt4yv6w", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeader46getputPlayerSessionsSessionIdLeaderRequestBodyEv) +STUB("yK3VESxclT0", __libunwind_Unwind_RaiseException) +STUB("yK8R9Noa6Yg", _ZN7WebCore16parseHTMLIntegerEN3WTF10StringViewE) +STUB( + "yKAjfQUF8K0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEcvbEv) +STUB( + "yKBLuYHHlVU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEE5resetEPS6_) +STUB( + "yKDYtdrBNFo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE3endEv) +STUB("yKDy8S5yLA0", sceSaveDataTerminate) +STUB("yKJAzD4l2v8", _ZTVN9Inspector17ScriptDebugServerE) +STUB("yKK1wx6dIq0", _ULx86_64_dwarf_read_encoded_pointer) +STUB("yKKINymjSZA", _ZN3JSC8Debugger23setBreakpointsActivatedEb) +STUB( + "yKKONChiYQM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB("yKPZXrni0qw", udatpg_close_59) +STUB( + "yKR8ewswyBw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEixEm) +STUB( + "yKVS3gtRAMM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEEC1ERKSA_) +STUB("yKbc2jUOHUg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEEppEi) +STUB("yKesHVodhLA", _ZNK7WebCore15ProgressTracker17estimatedProgressEv) +STUB("yKfATNkQZdc", sceSysUtilSendAddressingSystemNotificationWithDeviceId) +STUB("yKpwzbnoERo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEEcvbEv) +STUB("yKr9SM9DnOI", delegate_virtual_invoke_imt_10_p) +STUB("yKsnG1hdcsY", _ZN12video_parser14cVideoOperator18getRelatedFileNameEPKcPPc) +STUB("yKvsrXm+Y0I", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEED1Ev) +STUB( + "yKxhmSdpPgg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEmmEi) +STUB("yKy2yHbclT0", FTC_CMapCache_Lookup) +STUB("yKzrXcRncFg", _ZN3sce2Np9CppWebApi6Common6VectorIjE21intrusive_ptr_add_refEPS4_) +STUB("yL8dMdCi4Ys", _ZNSt10filesystem13_Current_set2EPKc) +STUB("yL91YD-WTBc", _Exp) +STUB("yLAMIlW84rc", png_set_bgr) +STUB( + "yLC60jiMELg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEmmEi) +STUB("yLE5H3058Ao", _ZTVNSt8ios_base7failureE) +STUB( + "yLM0Rgpr4Lw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "yLMHVPDAdnA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEmmEi) +STUB("yLNS49PfZcE", twop64) +STUB("yLNkraMvdcg", _ZN9Inspector22InspectorDebuggerAgent27didClearAsyncStackTraceDataEv) +STUB("yLNm3n7fgpw", sceUserServiceGetImeAutoCapitalEnabled) +STUB( + "yLO7IOH1-8s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEixEm) +STUB("yLObGRgzS3Q", _ZN7WebCore28convertToIntegerEnforceRangeImEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB( + "yLPkWsv8yEo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "yLRE2E7yNSo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEEaSERKSA_) +STUB( + "yLVVpi4ejjs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("yLYPhN6kRbc", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEEC1Ev) +STUB( + "yLi80C7-+z8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEptEv) +STUB("yLithEbczRA", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession20unsetNonPsnSupportedEv) +STUB( + "yLj-JJHIPl4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB("yLjdW66Ajmo", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10setString3EPKc) +STUB("yLkbqb1MhiE", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V111LeaveReasonEEppEv) +STUB("yLmhIcOD8ps", _ZN7WebCore17FrameLoaderClient11allowScriptEb) +STUB( + "yLpIQTwXrnQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("yLpPF0tbn1M", + _ZNK3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V16Rating17getNpServiceLabelEv) +STUB("yLsRvY6gTfM", _ZN3JSC19HeapSnapshotBuilderC2ERNS_12HeapProfilerENS0_12SnapshotTypeE) +STUB( + "yLsfcG+pPtI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEE11get_deleterEv) +STUB("yLtMsTWo9zs", _ZNK7WebCore20HTMLTableCellElement9cellIndexEv) +STUB( + "yM+LVI5ik94", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEE11get_deleterEv) +STUB("yM1RZp9-uvw", _ZN7WebCore8SVGNames19shape_renderingAttrE) +STUB("yM6UFAsJJr4", _ZNK7WebCore16URLDecomposition4hostEv) +STUB("yMDfjiVHygo", mono_trampoline_patch_callsite) +STUB("yMFapP1PGPQ", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsD1Ev) +STUB("yMJadOCdJ4o", jpeg_fdct_4x2) +STUB("yMKfWN2vgrA", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13WhoLikedStoryEEneERKS4_) +STUB( + "yMMjQdc3qbE", + _ZN3sce2Np9CppWebApi14SessionManager2V16Friend17setPlayerSessionsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_25FriendJoinedPlayerSessionEEEEE) +STUB( + "yMRI+sMuv+0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEppEv) +STUB( + "yMRiXk2aN74", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE5beginEv) +STUB( + "yMSZGW5Pipo", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStats10initializeEPNS1_6Common10LibContextEj) +STUB("yMVmRtyZXOU", __tsan_atomic16_fetch_xor) +STUB( + "yMgUOuTmX2I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE5beginEv) +STUB( + "yMhExj5h9QA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("yMi0xAOpmXM", sceNpUniversalDataSystemEventPropertyArraySetUInt32) +STUB("yMjhTScPufs", unum_open_59) +STUB( + "yMkckeRmsD8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("yMlhpCA8I2A", _ZN3JSC7Symbols30promiseOrCapabilityPrivateNameE) +STUB( + "yMoBGKzuoIY", + _ZN3sce2Np9CppWebApi14SessionManager2V127RequestPlayerSessionFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_20RequestPlayerSessionEEE) +STUB("yMosJYTG-QI", _ZN3WTF3URL15hostIsIPAddressENS_10StringViewE) +STUB("yMs5663vXes", _ZN7WebCore21BlobDataFileReference24expectedModificationTimeEv) +STUB("yMsg1aIvVeQ", _ZN7WebCore8Document13createCommentERKN3WTF6StringE) +STUB("yMsrqRsZRLs", _ZN9Inspector14FrontendRouterC2Ev) +STUB("yMwu1M4Yo3w", _ZN12video_parser17cVideoOperatorM4vC1EPKc) +STUB("yN++1o6xQOk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEE7add_refEv) +STUB( + "yN-jOAbNs8E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE5clearEv) +STUB("yN4VzSIfYfs", ASN1_OBJECT_free) +STUB( + "yN5gElrybuk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("yN7Jhuv8g24", sceAvPlayerVprintf) +STUB("yN9HIRioBhA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEEC1EPS6_) +STUB("yN9P84N3C9k", _ZNK3WTF9MediaTimeleERKS0_) +STUB( + "yNCPx0FmDx4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE7releaseEv) +STUB("yNDda-gJoqc", UDataMemory_isLoaded_67) +STUB("yNFPPeNhIwk", CommerceDialogBrowseCategory) +STUB("yNHtnupFZR8", _ZN3sce7Toolkit2NP2V27Ranking12FriendsRanksC1Ev) +STUB("yNQd6y3x2bI", + _ZN15AbstractStorage10TwitterAPI5StartERKSbIcSt11char_traitsIcENS_8StlAllocIcEEES7_S7_l) +STUB("yNSTVr+YftI", delegate_virtual_invoke_imt_18) +STUB( + "yNSW7uKP-Cw", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities14UserActivities13setActivitiesERKNS1_6Common6VectorINS6_12IntrusivePtrINS4_8ActivityEEEEE) +STUB("yNo0nYzR-2s", _ZNK7WebCore5Frame15contentRendererEv) +STUB("yNpM5BWhI70", + _ZN3JSC14JSGlobalObjectC1ERNS_2VMEPNS_9StructureEPKNS_23GlobalObjectMethodTableE) +STUB("yNpqI81w8Pg", _ZN3sce7Toolkit2NP7TusDataC2Ev) +STUB("yNtYRsxZ6-A", sceHmdInternalGetIpdSettingEnableForSystemService) +STUB("yNvohIAx0Dk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEE3getEv) +STUB( + "yNxRu00sD9c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE21intrusive_ptr_add_refEPS9_) +STUB("yNz+hz7aqvQ", _ZN3sce7Toolkit2NP2V212NetworkUtils7Request19GetBasicNetworkInfoD2Ev) +STUB("yO-ekZ5toaQ", sceShellCoreUtilReportSessionErrorToGaikaiController) +STUB( + "yO-iNSdsu+w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEEC2ERKSA_) +STUB("yO4Azml3bts", mono_set_is_debugger_attached) +STUB("yO4v82K2cS0", + _ZN7WebCore24CoordinatedGraphicsLayer14setCoordinatorEPNS_30CoordinatedGraphicsLayerClientE) +STUB("yO5QMIxMjVE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEC1ERKS7_) +STUB("yO6vE0Y9eiY", sceMatFreeRange) +STUB("yO7OIU45UnQ", sceShellCoreUtilDeleteDownloadedHidConfigFile) +STUB( + "yO88BZra7WA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUserD2Ev) +STUB("yO9JwdRhtSA", sceKeyboardGetKey2Char) +STUB("yOBcAzeyqJY", sceSdecGetFrameSwHevc) +STUB("yOIO-WByGdE", sceAvControlSetHdcpStatus) +STUB("yOIrzfg6AfM", _ZN3JSC7Symbols24isConcatSpreadableSymbolE) +STUB("yOJC0BpCABE", _ZN7WebCore10ScrollView17setUseFixedLayoutEb) +STUB( + "yOO+Ou+e4M8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB("yOP2KPiQqcQ", ztrans_setTo_67) +STUB( + "yOQ2pnMagzA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEE3getEv) +STUB("yOQ8dQ41tvs", scePlayReadyCdmiDestroyMediaKeySystemAccess) +STUB( + "yORnm6N3rGA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB("yOSHgqviJok", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinition9getfieldsEv) +STUB("yOTZJwXUKbk", __asan_stack_malloc_2) +STUB("yOUEV9uQzCs", + _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody20unsetStartSerialRankEv) +STUB("yOUuI64kBuc", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanityD1Ev) +STUB( + "yOcBBGcsn0Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE5beginEv) +STUB( + "yOeiy3SE63k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE5clearEv) +STUB("yOfGg-I1ZII", scePthreadRwlockattrInit) +STUB("yOft2w3okT8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEC1ERS7_) +STUB("yOg0rlUCw-E", _ZNK7WebCore29PerspectiveTransformOperation5cloneEv) +STUB("yOiIXPOEmf0", il2cpp_array_class_get) +STUB( + "yOlKNWNFyhY", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("yOptilQI5nk", jpeg_write_raw_data) +STUB( + "yOqm283NVec", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEE11get_deleterEv) +STUB("yOug-gRlxcM", _ZN3sce7Toolkit2NP15AppSTLAllocatorI13SceNpOnlineIdE7addressERKS3_) +STUB("yOyUp3CncVw", WKContextMenuItemSeparatorItem) +STUB("yP1IuW1xeIk", mspace_realloc) +STUB( + "yP1L2gFM5oM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "yP4ORU4pKRg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEaSERKS9_) +STUB("yP8syAvWyWI", _ZNK7WebCore8Settings26authorAndUserStylesEnabledEv) +STUB( + "yPEnZfzEq3o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE21intrusive_ptr_add_refEPS9_) +STUB("yPL7P+S79ec", + _ZN3sce2Np9CppWebApi14ConnectAccount2V212PartnerTokenC1EPNS1_6Common10LibContextE) +STUB( + "yPOYOEdZCiA", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountId11getonlineIdEv) +STUB("yPOn3-ezo5o", _ZN9Inspector19InspectorAuditAgent8teardownERN3WTF6StringE) +STUB("yPPtp1RMihw", asinhf) +STUB("yPQg5zkuE+s", _ZN7WebCore24StorageNamespaceProviderD1Ev) +STUB("yPRGiJGWA-4", _ZN3WTF13ReadWriteLock10readUnlockEv) +STUB( + "yPUjdnIA8qY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEEC1Ev) +STUB( + "yPUq8tM6izQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEppEv) +STUB("yPWUl2lDWeo", ucol_setStrength_59) +STUB("yPZ38ODrJOQ", _ZN3sce2Np9CppWebApi13InGameCatalog2V55Error12unsetMessageEv) +STUB("yPe1oduOM7s", _ZN3JSC7JSArray4pushEPNS_9ExecStateENS_7JSValueE) +STUB( + "yPm15kaFxYA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEC2Ev) +STUB("yPmQcnrgR2Y", _ZN3sce2np13JsonDocParserC2EP16SceNpAllocatorExPK7JsonDef) +STUB("yPni3AwPKpg", _ZN7WebCore11FileChooserD2Ev) +STUB( + "yPog5CehZdY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEEcvbEv) +STUB( + "yPq9QkK5B0E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB( + "yPshar3J8aI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEE7get_refEv) +STUB( + "yPtcydcJxiY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEC1EPS9_) +STUB("yPuxTL2GJO0", EVP_PKEY_id) +STUB("yPvrI4y0GKA", + _ZNK3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayer14getCustomData1Ev) +STUB("yQ7SgQu4L98", curl_easy_pause) +STUB( + "yQ8js9JjOx4", + _ZN9Inspector25TimelineBackendDispatcher4stopElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("yQ9IKIbwzeg", _ZN7WebCore16MIMETypeRegistry23getMIMETypeForExtensionERKN3WTF6StringE) +STUB("yQCPXYQA5E0", SceDrfpChkRecvBuf) +STUB( + "yQIGByF9KWA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "yQL6+uRJKgc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE5beginEv) +STUB( + "yQQEs8lAKDQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE7releaseEv) +STUB("yQU7XYO5JjQ", _ZN7WebCore7RunLoop3runEv) +STUB("yQYqKNrMU2k", u_setMemoryFunctions_67) +STUB("yQed09jA3VA", FcConfigReference) +STUB("yQi7BnTuGFc", _ZN12Mp4Retriever14processMoovBoxEv) +STUB("yQlTradAr2U", _ZN3sce7Toolkit2NP2V210Tournament12GenericEventD1Ev) +STUB("yQp6cDDiyDE", _ZN3JSC8Debugger19activateBreakpointsEv) +STUB( + "yQqFxfLr6uA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEC1ERKS7_) +STUB( + "yQwzgh8mgLQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE5emptyEv) +STUB( + "yQyV-gQaoMs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEED1Ev) +STUB("yQzdmwjI3es", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V113SubtaskStatusEEptEv) +STUB("yR+B+74egrE", WKBundlePageDidEnterFullScreen) +STUB("yR-ZtgXKFe0", JSDebuggerStop) +STUB("yR0qKU-abqY", sceCesRefersUcsProfileKsX1003Tilde0x7e) +STUB( + "yR1PA8ywh58", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("yR3k0vfjKII", sceAudioLatencyEstimationRelease) +STUB("yRC0ADN9ssU", sceCesMbcToUtf16) +STUB("yRFIwCMIaIA", + _ZThn16_N9Inspector21InspectorRuntimeAgent25enableControlFlowProfilerERN3WTF6StringE) +STUB( + "yRKzWjq+Io4", + _ZN3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayer15setPushContextsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_24PlayerSessionPushContextEEEEE) +STUB("yRMZVl0eX7w", _ZN7CoreIPC15StringReference4Hash4hashERKS0_) +STUB( + "yRNxUcClBvg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEED1Ev) +STUB( + "yRPJ5VPq3dk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEixEm) +STUB( + "yRTFOAOGotw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE10setContextEPNS2_10LibContextE) +STUB( + "yRUhpn0cj90", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyC2EPNS1_6Common10LibContextE) +STUB("yRWxhEAt52g", _ZN3WTF6StringC2EPKhj) +STUB( + "yRYYJgw0Wmw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("yRg6c26uLlQ", _ZN12video_parser10cVideoPath10GetDirNameEi) +STUB("yRkAXdREMgo", sceVencCoreMapTargetMemory) +STUB("yRqTU7pcIVU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEEC2EPKS6_) +STUB("yRsuqVarybc", _ZN7WebCore6Path2DC1ERKNS_4PathE) +STUB("yRv6gNM1DHo", mono_aot_ReactNative_Modules_Vsh_Gct_Telemetryplt_end) +STUB("yS-FJI-37oc", tt_cmap0_class_rec) +STUB("yS0Iib8DE+U", sceCesJisX0208ToSJisCode) +STUB("yS0XpsJEDzo", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEC1Ev) +STUB( + "yS2YSORVIxQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEC2EPS8_) +STUB( + "yS2fJYNRpeg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE5clearEv) +STUB( + "yS7mdMnsD9w", + _ZN7WebCore20UserGestureIndicatorC1EN3WTF6RefPtrINS_16UserGestureTokenENS1_13DumbPtrTraitsIS3_EEEENS3_12GestureScopeENS3_21IsPropagatedFromFetchE) +STUB("yS8U2TGCe1A", nanosleep) +STUB("ySDXDVe96yQ", _ZN8meta_gen13JpegRetriever20JPEGPROM_YEAR_OFFSETE) +STUB( + "ySDeVHK5Fao", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEC1Ev) +STUB("ySGKPZACkls", _ZTVN9Inspector21InspectorConsoleAgentE) +STUB( + "ySGPkBOd80g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE7popBackEv) +STUB("ySHH5B166D4", JVM_GetCPFieldSignatureUTF) +STUB( + "ySI-EmPkTpo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEmmEv) +STUB( + "ySMN+4MzG2E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEC2EPNS2_10LibContextE) +STUB("ySN+Pa+NUGI", sceNpUniversalDataSystemIntCheckNetSyncTitles) +STUB("ySX0YQHJEsg", u_cleanup_67) +STUB("ySed+OBAs-U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEC1ERS7_) +STUB("ySfCAURn-Uc", _ZNK7WebCore11RenderStyle5colorEv) +STUB("ySh2GsVQTzs", sceNpTrophySystemWrapGetTitleDetails) +STUB( + "ySiMqDSHx20", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEEiRNS2_10LibContextEPT_m) +STUB("ySnPSSkF4F8", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_13TusDataOutputEE3getEv) +STUB( + "yStLVN2pCBI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("yStTYSeb4NM", sceFontGraphicsUpdateRotation) +STUB( + "ySzGqKQg3IY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEppEi) +STUB("yT7UConFh4U", _ZN3sce7Toolkit2NP2V29Messaging25GameDataMessageAttachment8deepCopyERKS4_) +STUB("yTC1T2lLJwY", sceMbusGetDeviceInfo) +STUB("yTCmRbF6f4A", _ZN7WebCore12RenderObject16paintingRootRectERNS_10LayoutRectE) +STUB("yTEaoBaswOU", sceDataTransferRequestLaunchPS4) +STUB( + "yTFMyG4xpRY", + _ZN3sce2Np9CppWebApi11Matchmaking2V115LocationFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_8LocationEEE) +STUB( + "yTGqsDpNQkg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE3endEv) +STUB( + "yTKz3MwrArM", + _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody11setLocationERKNS1_6Common12IntrusivePtrINS3_8LocationEEE) +STUB( + "yTX95l0C2Ug", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("yTZX5enqmeg", _ZN7Nicosia16SceneIntegration17createUpdateScopeEv) +STUB( + "yTf-J3bhWbA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "yTfhT-GVfb0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEaSERS8_) +STUB( + "yTiB54qW4EY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEppEv) +STUB("yTj62I7kw4s", sceKernelPreadv) +STUB( + "yTr9SdtKxg8", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanity9getlocaleEv) +STUB("yU1gxF6BVDM", mono_aot_System_Resources_ResourceManagerjit_got) +STUB( + "yU4-BCjWhHo", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser17setnpServiceLabelEj) +STUB("yU4Dlx9Wgtk", _ZN7WebCore21MediaRecorderProvidernwEm) +STUB("yU4Ev02ViDc", _ZN9Inspector15RemoteInspector12stopInternalENS0_10StopSourceE) +STUB("yU6S1LkjfnU", X509V3_EXT_print) +STUB("yU7JH4JWypE", _ZN7WebCore9HTMLNames10ondragAttrE) +STUB("yU8y1LOWdq4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariableC1Ev) +STUB("yU96LVMP6Ls", _ZN7WebCore29PerspectiveTransformOperationD1Ev) +STUB("yUBESvCCJ4I", sceAgcCbSetShRegistersDirectGetSize) +STUB("yUEiOjyQK2w", AacsUpdateKeyArea) +STUB("yUEkCHmTWtI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEixEm) +STUB("yUFawTfTM5c", _ZNSt15basic_streambufIcSt11char_traitsIcEE7_UnlockEv) +STUB( + "yUHQZr36wko", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "yUNLlWKRF4U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("yUSPR-cbjTk", _ZN7WebCore17NowPlayingManager25clearNowPlayingInfoClientERNS0_6ClientE) +STUB( + "yUSeijS5jMg", + _ZN7WebCore11DisplayList16DrawLinesForTextC1ERKNS_10FloatPointERKNS_9FloatSizeEfRKN3WTF6VectorIdLm0ENS8_15CrashOnOverflowELm16ENS8_10FastMallocEEEbb) +STUB("yUU8KDyU5Xw", _ZN3WTF14FileSystemImpl18makeAllDirectoriesERKNS_6StringE) +STUB("yUUbHmWz8uA", _ZN7WebCore10JSLocation15subspaceForImplERN3JSC2VME) +STUB("yUYFq2ATAwc", _ZTVN7WebCore11DisplayList11DrawPatternE) +STUB( + "yUbA7XPfKkk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEE7add_refEv) +STUB("yUd2ukhZLJI", SSL_findConnectionInstance) +STUB("yUfIPssm6A0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEaSERKS7_) +STUB("yUh0BIPbhVo", sceLncUtilGetEventForDaemon) +STUB("yUi+qT877AI", _ZStL5rsfunRSt8ios_baseNSt5_IosbIiE9_FmtflagsE) +STUB( + "yUiSujeW4CA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEC1EPKS8_) +STUB("yUjzhXw23N0", _ZNK7WebCore6Editor13canEditRichlyEv) +STUB("yUkFDbw+X1M", mono_ldstr) +STUB("yUlNeIZTAQo", uplrules_openForType_59) +STUB( + "yUp7Z6maIa4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEptEv) +STUB("yUtW5ySnfH8", ucnv_io_stripEBCDICForCompare_67) +STUB( + "yUuXnzgOUYU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE5beginEv) +STUB( + "yV0W1GTF-C8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("yV0oIJX5YZE", mono_aot_System_Transactionsunwind_info) +STUB("yV1vwsw1S3g", ScePsmMonoDisableJitTimeLog) +STUB("yV6Un4C8GCk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEEC2ERKSA_) +STUB( + "yVGMkWZkIpI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "yVIrerE2nO8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEEptEv) +STUB( + "yVJZuJMAmYw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEmmEi) +STUB( + "yVLdV+3XdsI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB( + "yVTSX5OGO1o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEC1EPS8_) +STUB("yVUXlSyV1wU", _ZN7WebCore11DisplayList11FillEllipseD1Ev) +STUB("yVUZbAd5TUw", initDecidBootEvf) +STUB("yVXOAcXkzoo", sceDevUsbIsHostConnected) +STUB("yVYgf1C7v3E", mono_assembly_name_get_version) +STUB("yVcJhDCpuVw", _ZN3sce2Np9CppWebApi7Matches2V119RequestInGameRoster8fromJsonERKNS_4Json5ValueE) +STUB( + "yVe2olNlNNQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEE7get_refEv) +STUB("yVg07UrVewU", sceBgftServiceIntDebugPlayGoRevertToFullState) +STUB( + "yVjzB0lL-hg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEmmEi) +STUB( + "yVkTiH5nMPA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("yVkxiIdHpLs", _ZTVN7WebCore29PerspectiveTransformOperationE) +STUB("yVobQd4t+iA", u_setAtomicIncDecFunctions) +STUB("yVsSKO6nVTE", + _ZN3sce2Np9CppWebApi7Matches2V120ResponseMatchResults8fromJsonERKNS_4Json5ValueE) +STUB("yW-duefVP+k", g_strjoin) +STUB("yW5gfrDFAoc", sceCompositorSetLocalStallCommand) +STUB("yW93VPfQoMs", mono_aot_Sce_Vsh_SysfileUtilWrapperunwind_info) +STUB( + "yW9JYYV0WZM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEE7get_refEv) +STUB("yW9cQ5YLYmw", _ZN7bmalloc6IsoTLS21s_mallocFallbackStateE) +STUB( + "yWBB0IkS0Mo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEEcvbEv) +STUB("yWEHUFkY1qI", sceNpTusGetDataA) +STUB( + "yWGXnAbRGtc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEEC1ERSA_) +STUB( + "yWHFYKWFaNI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEEC1Ev) +STUB("yWMBHiRdEbk", sceNpManagerIntLoginGetUserId) +STUB( + "yWN30Y2iUE8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEEcvbEv) +STUB("yWNs0Vy8yU8", _ZN3sce7Toolkit2NP15SnsPostFacebookC2Ev) +STUB("yWQvBLnFWLs", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V115CompetitionTypeEEdeEv) +STUB("yWRnSRBGcto", YGLogWithConfig) +STUB("yWUnSM8xJP8", uprv_decNumberShift_67) +STUB("yWVYb3JCjvs", GCC_except_table199) +STUB("yWcto7E39+k", sceNpAsmClientGetAppId) +STUB("yWefaqPBkOE", _ZN9Inspector22RemoteInspectionTargetaSERKS0_) +STUB( + "yWfkUKBTDSc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEC2EPS8_) +STUB("yWgylTZwel0", _ZN3JSC7Symbols44AsyncGeneratorStateSuspendedStartPrivateNameE) +STUB("yWmo+fmo4jM", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEEdeEv) +STUB("yWnTOhbW6js", EC_KEY_get0_group) +STUB("yWtcXBVlsfs", _ZN3sce7Toolkit2NP2V212ActivityFeed5Story20USER_COMMENT_MAX_LENE) +STUB("yWzaLZyKagc", ulocdata_getExemplarSet_67) +STUB("yX-TpbFAYxo", sceUserServiceGetGlsBcTitle) +STUB("yX0iynOfQOQ", _ZN3sce7Toolkit2NP2V28Matching7Request13GetAttributesC2Ev) +STUB( + "yX206D348Lc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEptEv) +STUB("yX8qSFmkiyc", sceNpManagerIntClearParentalControlInfoSubAccount) +STUB("yX91W3884fA", _ZN7WebCore14DocumentLoader22cancelMainResourceLoadERKNS_13ResourceErrorE) +STUB("yX9ISVXv+0M", _ZN3sce2np4CondD1Ev) +STUB("yXCT9kMl9bE", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEEcvbEv) +STUB("yXJlgXljItk", sceNpTrophySystemDebugUnlockTrophy) +STUB("yXMjXN--3rY", _ZN3sce2npneERKNS0_4TimeERK10SceRtcTick) +STUB("yXPJ8Gm2f0M", GCC_except_table115) +STUB("yXefJHaH0Kc", sceFsUmountTrophyData) +STUB("yXi5Jl-4kuw", _ZNK3sce2Np9CppWebApi6Common9RefObject11GetRefCountEv) +STUB("yXn9vfYK9wc", _ZN7WebCore5Frame27resizePageRectsKeepingRatioERKNS_9FloatSizeES3_) +STUB( + "yXr5aFlHz1I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE6resizeEj) +STUB( + "yXsv06uW7Us", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEEC1Ev) +STUB("yXvfR+AcgaY", sceUserServiceGetParentalMorpheus) +STUB("yXwC3k7IkHE", cval) +STUB("yXzWWF0i02Q", ucnv_getStandard_67) +STUB( + "yY7vYc6-8Qk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "yY8+5WNb3V4", + _ZN3sce2Np9CppWebApi14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBody8fromJsonERKNS_4Json5ValueE) +STUB( + "yYBVvXPDfls", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEixEm) +STUB("yYC621tqYd8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEEaSERKS6_) +STUB("yYIymfQGl2E", _ZN10__cxxabiv121__vmi_class_type_infoD2Ev) +STUB( + "yYJS5mzuwZM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEC2Ev) +STUB("yYJgK8mLxt4", Java_java_awt_GnmGraphics_nativeFillOval) +STUB("yYPYU5GS1to", sceClKernelWaitEventFlag) +STUB("yYPii65uHyw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEE7get_refEv) +STUB( + "yYTGHr7OqtY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE8copyFromERKS9_) +STUB("yYiYypRtAEg", _ZN3JSC7Symbols32asyncGeneratorResolvePrivateNameE) +STUB("yYiv7rqRorw", sceDebugIpmiGetChannelInfo) +STUB("yYk819F9TyU", _ZSt8_XLgammad) +STUB( + "yYlMVp1bLC0", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_20NpSessionInformationENS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv) +STUB( + "yYlUhUgN8+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("yYmbZk8UBzM", _ZN7WebCore9HTMLNames8stepAttrE) +STUB("yYmiiGW0jfk", sceAppInstUtilGetDataDiscCopyProgress) +STUB( + "yYoliAl9bR4", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_13FriendsOfUserENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB( + "yYu0KcuuvPQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "yYwWgFJAmAk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEC2ERKS7_) +STUB("yYwzNjbdtrk", __asan_report_store2) +STUB("yYzno8-lK3g", _ZN7WebCore6Editor13performDeleteEv) +STUB( + "yZ+9sTX9F6I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("yZ+xfcqaPFQ", + _ZN7WebCore11DisplayList8SetStateC2ERKNS_20GraphicsContextStateEN3WTF9OptionSetINS2_6ChangeEEE) +STUB("yZ4EJ0rUh9c", png_progressive_combine_row) +STUB( + "yZ5pk4BxujI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE5abortEv) +STUB("yZ6tARqyAas", _ZN7WebCore21MediaRecorderProviderC1Ev) +STUB("yZ8MpxQizWM", WKOpenPanelParametersGetAllowsDirectories) +STUB("yZ9-GqpKktw", WKPageLoadPlainTextStringWithUserData) +STUB( + "yZA4dYfnPvo", + _ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForReadC2EPNS1_6Common10LibContextE) +STUB("yZAHahM6ssQ", _ZN7WebCore14JSWebAnimation14finishCreationERN3JSC2VME) +STUB("yZEzHFP7Z-Y", _ZN3JSC8DebuggerC2ERNS_2VME) +STUB("yZJAEU9jvAE", _ZN3JSC19ArrayBufferContentsC2Ev) +STUB("yZJDPmY5cjg", _ZN3JSC7Symbols26stringSplitFastPrivateNameE) +STUB("yZJHi07ZdFY", GCC_except_table96) +STUB( + "yZXHTizv-14", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEixEm) +STUB("yZZX3eafqV4", sceCustomMusicAudioOutGetVolume) +STUB( + "yZbyRCr2fNU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEEcvbEv) +STUB("yZl+ktKJ1TY", mono_aot_Sce_Vsh_Sticker_StickerLibAccessorunwind_info) +STUB("yZmHOKICuxg", _ZTIN6Dinkum7threads10lock_errorE) +STUB("yZnj69haxj8", jpeg_write_tables) +STUB( + "yZp3q2b8yL8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEE11release_refEv) +STUB( + "yZt6EEkDSIw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEptEv) +STUB("ya+s8zGxVQQ", _ZN3sce2np4NpIdD2Ev) +STUB( + "ya10xz-PpUs", + _ZNK7WebCore14ScrollableArea37visibleContentRectIncludingScrollbarsENS0_26VisibleContentRectBehaviorE) +STUB("yaBlj3xh9TA", _ZN9Inspector38ScriptProfilerBackendDispatcherHandlerD0Ev) +STUB("yaFXXViLWPw", opterr) +STUB( + "yaGmh0EBpWo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEEC2Ev) +STUB("yaIK6PiubAE", + _ZN3sce2Np9CppWebApi7Matches2V120ReportResultsRequestC2EPNS1_6Common10LibContextE) +STUB( + "yaJz-k6gPfs", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("yaLoGJ4WXyc", _ZNK3sce2Np9CppWebApi7Matches2V121ResponsePlayerResults11getPlayerIdEv) +STUB( + "yaQWsOMQVG8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEE11get_deleterEv) +STUB("yaRL7i-Vkng", sceBgftServiceIntDebugDownloadRequest) +STUB( + "yaScMU9oawA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("yaVAdLDxUj0", sceNetConfigSetDefaultScope) +STUB( + "yaXHW69e2uE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE3endEv) +STUB("yafuTC2QBYE", _ZNK3sce2np13JsonArrayImpl9allocItemEv) +STUB("yah8Bk4TcYY", scePadSetShareButtonMaskForRemotePlay) +STUB("yapg7kJD7IY", _ZNK3JSC6JSCell9getStringEPNS_14JSGlobalObjectERN3WTF6StringE) +STUB("yaqRzTPg758", _ZN7WebCore8SVGNames14font_styleAttrE) +STUB( + "yas5CjDRQb4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEE7get_refEv) +STUB( + "yat3lJ+1sXA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEC1Ev) +STUB( + "yauCGpmXrIs", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS5_INS7_9RecordApi30RecordLargeDataResponseHeadersEEEEEiRNS2_19UpStreamTransactionIT_T0_EE) +STUB("yawdym+zDvw", sched_setparam) +STUB("yb2cRhagD1I", sceGnmDrawInitDefaultHardwareState350) +STUB("yb9iUBPkSS0", fdimf) +STUB("yb9tILRzD1k", uloc_minimizeSubtags) +STUB("ybBvkcrRCOk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE8pushBackERKS6_) +STUB("ybDnyDzHef4", mono_aot_Sce_Facebook_CSSLayoutjit_code_start) +STUB( + "ybGfaeB5jDg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEEcvbEv) +STUB("ybJdNCerw80", mono_aot_Sce_Vsh_Sl2_Sl2Clientunbox_trampoline_addresses) +STUB("ybJfgvrAMZY", _ZNK3JSC8JSObject8toStringEPNS_9ExecStateE) +STUB("ybWIaZPqV9Q", mono_metadata_methods_from_property) +STUB( + "ybZT2YAMoZ4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEC1EPS8_) +STUB( + "ybgXBlCu3y4", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody14integer10IsSetEv) +STUB("yblI0ggG0Sk", _ZN7WebCore9HTMLNames16webkitspeechAttrE) +STUB( + "ybm5WtpB-bs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEEcvbEv) +STUB("ybn35k-I+B0", _ZSt13_Cl_charnames) +STUB("yc-vi84-2aE", _ZN6Dinkum7codecvt10_Cvt_checkEmm) +STUB("yc1XEzBopCw", utext_openConstUnicodeString) +STUB("yc56OLM15Y0", WKBundleGetMemoryCacheStatistics) +STUB("yc6+6xulIOs", uhash_compareChars) +STUB("yc6frp5gq4w", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V127ConnectionQualityPropertiesD1Ev) +STUB( + "yc7kZNvtoI8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEptEv) +STUB( + "yc8BugX7O7M", + _ZN3sce2Np9CppWebApi14SessionManager2V138JoinedPlayerSessionWithPlatformFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_31JoinedPlayerSessionWithPlatformEEE) +STUB("ycB339rTvzI", _ZN3JSC12SmallStrings24singleCharacterStringRepEh) +STUB( + "ycF0e9jpXEQ", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData17hasnpServiceLabelEv) +STUB( + "ycF9Yobuq3U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE8copyFromERKS9_) +STUB( + "ycHpTCCMKWA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "ycKawlErthk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEE11release_refEv) +STUB("ycMCyFmWJnU", _Xp_addx) +STUB("ycSZmq4JInA", _ZN7WebCore16DatabaseProviderC2Ev) +STUB( + "ycSfM5Dv5dU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("ycTK-Kln6O0", _ZN7WebCore24MatrixTransformOperationD2Ev) +STUB( + "ycUK6xxNJ58", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEC1EPNS2_10LibContextE) +STUB("ycUmaLtD3Mo", sceDebugIpmiGetSessionKidList) +STUB( + "ycV2YI0oP58", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEC1EPS8_) +STUB( + "ycVDqGptJeQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE21intrusive_ptr_add_refEPS9_) +STUB("ycfSfwLb+hE", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities8ActivityC2EPNS1_6Common10LibContextE) +STUB("ycfT7v8QTaQ", _ZN3JSC7Symbols25dateTimeFormatPrivateNameE) +STUB("ycgIs7zcXBs", uprv_eastrncpy) +STUB("ycjIR9LmD5g", _ZN7WebCore14LoaderStrategy40networkMetricsFromResourceLoadIdentifierEm) +STUB("ycjO5ZqWmzg", _ZN7WebCore8SVGNames30glyph_orientation_verticalAttrE) +STUB("yckyiVrQ-jU", ucnv_detectUnicodeSignature_67) +STUB( + "ycnljgMIQEE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEplEm) +STUB("ycodiP2I0xo", sceGameLiveStreamingSetPresetSocialFeedbackCommands) +STUB( + "ycqAxxqt0hU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEptEv) +STUB("ycxHHEa11OI", _ZN3WTF11StackBounds32currentThreadStackBoundsInternalEv) +STUB("yd+Vw-Wm2VI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEEaSERS9_) +STUB("yd8DxOWMHuU", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessionsaSERS5_) +STUB( + "ydCOXw3Ia-w", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEE3getEv) +STUB("ydDzmMXQ6Ns", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12RoomPingTimeEE3setEv) +STUB("ydF+WuH0fAk", sceFontRendererSetOutlineBufferPolicy) +STUB("ydF4H0hkWJI", _ZN7WebCore23ApplicationCacheStorage16deleteAllEntriesEv) +STUB("ydHbnzAObIs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE4sizeEv) +STUB("ydOyL8ejcOk", AnnotateMemoryIsUninitialized) +STUB( + "ydP2siqj6dE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE7reserveEi) +STUB("ydPWu5RLWT4", _ZN3sce7Toolkit2NP2V212ActivityFeed5MediaD2Ev) +STUB("ydQbQdaCiiQ", uscript_resetRun_67) +STUB( + "ydRVLHgtCTw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEppEi) +STUB("ydYhl73f9Tg", _Ctype2) +STUB( + "ydaUojfUa70", + _ZN3sce7Toolkit2NP2V28Commerce21displayCheckoutDialogERKNS3_7Request21DisplayCheckoutDialogEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("yddEedgQS8s", _ZN3sce7Toolkit2NP2V210Tournament20OneVsOneMatchDetailsC2Ev) +STUB( + "ydkhuCA5xss", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEneERKS9_) +STUB("ydn0oek+7Vw", _ZN7WebCore8SVGNames11versionAttrE) +STUB("ydpMi1jbcqw", uprv_decNumberFromString_67) +STUB("ydppzeaHCGY", _ZNK7WebCore19ResourceRequestBase13httpUserAgentEv) +STUB("ydvXuVZjWJE", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEEC2Ev) +STUB( + "ydvwIA45F2g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEC1Ev) +STUB( + "ydxGcCUNQPo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEC1EPS6_PNS2_10LibContextE) +STUB("ydxMtwwv2Rg", _ZN3sce7Toolkit2NP2V211SharedMedia7Request9GetVideosD2Ev) +STUB( + "ydzVilv4a+U", + _ZN7WebCore8Document18createNodeIteratorERNS_4NodeEmON3WTF6RefPtrINS_10NodeFilterENS3_13DumbPtrTraitsIS5_EEEEb) +STUB( + "ye-ZcEFhvLc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEE5resetEPS6_) +STUB( + "ye2BkPJvC9A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE5clearEv) +STUB( + "ye34mG6AIq0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("ye3MzDSYACw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEEC1EPNS2_10LibContextE) +STUB("ye4sPvqyPfM", _ZN15AbstractStorage13TwitterFolderD2Ev) +STUB( + "yeAsPEQj05M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEC2EPKS8_) +STUB("yeDn+BX34wc", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13WhoLikedStoryEE7destroyEPS3_) +STUB("yeDwxm1ilhQ", _ZNK7WebCore12RenderObject23absoluteBoundingBoxRectEbPb) +STUB( + "yeHn2AyCGWQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEEC2ERKSA_) +STUB("yeL7tJilPGk", + _ZN7WebCore15JSFetchResponse15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB( + "yeN7opkDfDc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEED2Ev) +STUB( + "yeO1vEk64K8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEC2EPS8_) +STUB( + "yeO5ylLUV9E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEC2EPS6_PNS2_10LibContextE) +STUB("yeQKjHETi40", sceGameLiveStreamingGetSocialFeedbackMessagesCount) +STUB("yeRcOaMeUE0", _ZN9Inspector22InspectorDebuggerAgent19clearExceptionValueEv) +STUB("yeT4SlbsVMw", fuse_register_module) +STUB( + "yeTzx6km0tI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEC1Ev) +STUB("yeW8YJ4T7K4", sceKernelSuspendSystem) +STUB( + "yeaU+oXzM6I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEED1Ev) +STUB( + "yebSn3d0cYA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE4sizeEv) +STUB( + "yecMG2gN3Rg", + _ZN3sce2Np9CppWebApi12Leaderboards2V129GetRankingResponseBodyFactory7destroyEPNS3_22GetRankingResponseBodyE) +STUB( + "yenHmkeQGLY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEED1Ev) +STUB("yeo+OavFtlE", u_memcmpCodePointOrder_67) +STUB("yeq+5kkY8uM", ipio2) +STUB( + "yeqN79rgBhE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("yet584Rwd64", uprv_ebcdicFromAscii) +STUB( + "yetnrTkZE+g", + _ZN7WebCore7Element34setAttributeWithoutSynchronizationERKNS_13QualifiedNameERKN3WTF12AtomicStringE) +STUB("yf-ptW9lec0", _ZN8meta_gen14ImageRetriever19IsImageModeRGBA8888E9ImageMode) +STUB( + "yf28KWKEPaU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "yf3mNtD01vo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEptEv) +STUB("yf4ONvspEfI", _ZN7WebCore16MIMETypeRegistry26getSupportedImageMIMETypesEv) +STUB("yf7TAkcauE8", mono_btls_x509_name_hash) +STUB( + "yfB+iNO-SPA", + _ZN3sce3pss4core7imaging4impl5Image9SaveAsJpgEPKcPKvjRKNS3_11ImageExtentENS3_9ImageModeEjbPNS1_6memory13HeapAllocatorEi) +STUB( + "yfC0KhMjXZw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "yfDcb4yzWGM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("yfDdRikXhic", _ZN3JSC18IncrementalSweeper12stopSweepingEv) +STUB("yfEC9RapuPg", mono_aot_Sce_Vsh_KernelSysWrapperunbox_trampolines) +STUB( + "yfJeWzTTP+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "yfM7279lnTU", + _ZN9Inspector25DebuggerBackendDispatcher28setPauseOnDebuggerStatementsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("yfNiwy8p5Ds", curl_mime_filename) +STUB("yfNlvcUnAbI", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE3endEv) +STUB("yfNwXqOshk0", sceRegMgrLogPull) +STUB( + "yfOyWyCyYqY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "yfQPriQMuiU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEneERKS9_) +STUB("yfQknp9hDbI", uidna_labelToUnicode_67) +STUB("yfRB4uRKs38", _ZN7WebCore25ArchiveResourceCollection21archiveResourceForURLERKN3WTF3URLE) +STUB("yfSdswDaElo", sceCameraSetAutoExposureGain) +STUB( + "yfTc5Zu8F6Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEE11get_deleterEv) +STUB("yfbbzRuWWJA", _ZNK3sce2Np9CppWebApi13InGameCatalog2V520ContainerRatingCount8getScoreEv) +STUB( + "yfhxMfaGTig", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "yflVJSerY-M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEC1ERS7_) +STUB( + "yfmKktrIO+E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEED2Ev) +STUB("yfn+OUTExgM", sceSblRcMgrIsAllowLimitedUiInspector) +STUB( + "yg2Wgpjr4ew", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEixEm) +STUB("yg4Y70OvWzg", _ZNK7WebCore3URL4portEv) +STUB("yg6hx58UNqc", sceHttpCacheSetQuota) +STUB( + "yg780OGQPJs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEppEi) +STUB("ygBBNKUKLaw", _ZN12video_parser5vpcom11Utf16ToUtf8EPKwPSs) +STUB("ygFbQp-84-U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEEC2EPKS6_) +STUB( + "ygL-RUMNAn0", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("ygLeNBGWgf8", _ZN3sce2Np9CppWebApi7Matches2V118RequestMatchPlayer13setPlayerNameEPKc) +STUB("ygNEUWA5Ejw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEEC1ERS6_) +STUB( + "ygQeh9f-3e4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEC2EPKS8_) +STUB( + "ygULAwAPRfU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEptEv) +STUB("ygVuZ1Hb-nc", sceUserServiceGetEventSortEvent) +STUB( + "ygW+9NhN-s4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEED2Ev) +STUB( + "ygbEgW-Rhwc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("yge0amJn5G4", _ZN7WebCore9CookieJar10setCookiesERNS_8DocumentERKN3WTF3URLERKNS3_6StringE) +STUB( + "ygflD8epI7s", + _ZN8meta_gen11MsvPromoter27setKeyValue_TBLV_VideoCodecENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB( + "ygk5Xcfla-M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEEaSERSA_) +STUB("ygkwGUwd8fE", _ZN3WTF22CrossThreadTaskHandler13postTaskReplyEONS_15CrossThreadTaskE) +STUB("ygq0PnLt7d4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEED2Ev) +STUB("ygqHYKoKF3s", mono_aot_Sce_Vsh_SQLiteunbox_trampoline_addresses) +STUB( + "ygw2ALdc0VQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE4sizeEv) +STUB( + "ygy2JLWWbPI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE8copyFromERKS9_) +STUB("yh01Gf9ozWY", _ZN3sce2Np9CppWebApi6Common6BinaryD2Ev) +STUB("yh18Slngnk0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE8copyFromERKS7_) +STUB("yh1e4VXFKdI", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer11unsetoffsetEv) +STUB("yh5s9ZNTupY", u_strspn_67) +STUB( + "yh8Jtx4+xEw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE7popBackEv) +STUB("yh9cwn547UA", mono_aot_Sce_Vsh_Accessor_Db_Notifyunbox_trampolines_end) +STUB("yhDqYedMpcg", _ZN3sce7Toolkit2NP2V27Session10InvitationD1Ev) +STUB("yhFCnaz5daw", sceGnmUnregisterAllResourcesForOwner) +STUB("yhIvIhbplIg", uhash_compareCaselessUnicodeString_67) +STUB("yhQZNxbdHNg", sceNpUniversalDataSystemIntRecordObjectSetBinary) +STUB("yhbF6MbVuYc", _Stopfx) +STUB("yhd+GKb-NyQ", gp_trace) +STUB("yheJGN-ay+A", sceAgcDcbSetBoolPredicationEnableGetSize) +STUB("yheulqylKwI", sceRemoteplayNotifyUserDelete) +STUB("yhgOE7Zx8cw", WKPreferencesSetAcceleratedCompositingForOverflowScrollEnabled) +STUB("yhi+PCUvXCg", _ZN4Manx7RunLoop8finalizeEv) +STUB("yhjskT+uMLo", mono_aot_Sce_Vsh_Gls_NativeCalljit_code_end) +STUB("yhm05BhrZ3M", _ZN3JSC8Bindings13RuntimeObject6s_infoE) +STUB("yhvlh96OiNE", _ZNK3WTF13DecimalNumber19toStringExponentialEPhj) +STUB("yhxKO9LYc8A", sigvec) +STUB( + "yi0NgbIx-FM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEplEm) +STUB( + "yi3tXcGVIgQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEC2EPS8_) +STUB("yi7Wtl+fVLE", _ZNK7WebCore18AdClickAttribution10hasExpiredEv) +STUB("yi9NGkVtu1g", _ZN3sce2Np9CppWebApi6Common6VectorIlEC1Ev) +STUB("yiFwzamZzAI", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi20ParameterToJoinMatchaSERS5_) +STUB("yiJexlXFYFs", il2cpp_current_thread_get_stack_depth) +STUB("yiOOLA2vkLA", glGetQueryiv) +STUB("yiOhxHhSzC0", sceAudioOut2LoPortSetAttributes) +STUB("yiUUfhRhKqE", _ZN7WebCore12JSTreeWalker9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("yiWTOXaovLQ", _ZN7WebCore8SVGNames16missing_glyphTagE) +STUB( + "yicIzbLFL5o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEC2Ev) +STUB( + "yicQxK6qijw", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeOnlineId2AccountIdBatch5setidENS1_6Common12IntrusivePtrINS6_6VectorINS6_6StringEEEEE) +STUB("yica-O4akgw", _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest17unsetInGameRosterEv) +STUB("yigBLNiYtOg", scePlayReadyBufferMalloc) +STUB("yigC8-yxwo0", _ZN7WebCore15ActiveDOMObjectC2EPNS_8DocumentE) +STUB( + "yigdNEwVMh8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEC2Ev) +STUB("yigr4V0-HTM", sceHttpSetRecvTimeOut) +STUB("yiiB+pbygU4", WKNotificationGetTypeID) +STUB("yijCQimNNaM", rgctx_fetch_trampoline_rgctx_11_p) +STUB("yijJlGJL-6s", usearch_setPattern_67) +STUB("yila9jgNlzs", mono_get_exception_type_load) +STUB("yilqCyLATnc", __ubsan_handle_type_mismatch_v1) +STUB("yit-Idli5gU", __atomic_exchange_4) +STUB( + "yitGiNCDQps", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "yixDW3EPcQ8", + _ZN3sce2Np9CppWebApi7Matches2V133RequestTemporaryCompetitiveResult16setPlayerResultsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_20RequestPlayerResultsEEEEE) +STUB("yixh7HDKWfk", sceNpTusGetFriendsDataStatusA) +STUB( + "yixjdYrIHJE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE8capacityEv) +STUB("yj1Rme9dSK4", _ZN7WebCore9HTMLNames8imageTagE) +STUB( + "yj73o2yhIcM", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB( + "yj7Bqnei75s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE7reserveEi) +STUB( + "yj9KGoSd8E8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "yjBmdYc+nCk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEaSERKS9_) +STUB("yjF+6ttYNNs", _ZN2sh10GetInfoLogEPv) +STUB("yjHAiyDd7+o", WKStringGetUTF8CString) +STUB( + "yjRpKxKXvZg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("yjW9EWkjwmw", _ZN3JSC15IsoHeapCellTypeC1ENS_15DestructionModeEPFvPNS_6JSCellEE) +STUB( + "yjXFUPnLFYM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEC2Ev) +STUB("yjYQzZ1jF88", _sceLibcMallocStatsFast) +STUB("yjZTHRRFVcU", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_18SessionInformationEE3getEv) +STUB("yjcDrwFK2UM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEE7get_refEv) +STUB("yjjDwtgu4jE", NpWebDeleteRequest) +STUB("yjjjjR4oPk8", _ZNK3sce2Np9CppWebApi15Personalization2V121GetAccessCodeResponse7getSaidEv) +STUB("yjkykVlf+OI", uhash_get) +STUB("yjmcex4MSBU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEE11get_deleterEv) +STUB("yjsf6SvXA08", _ZNK3sce4Json6String4findEPKcm) +STUB( + "yjueQNUclf4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB( + "yjvZPujei5Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEppEi) +STUB( + "yjwFf2hsRfQ", + _ZN3sce2Np9CppWebApi11Matchmaking2V131SubmitTicketResponseBodyFactory7destroyEPNS3_24SubmitTicketResponseBodyE) +STUB( + "yjzDLnWUbwo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEC2Ev) +STUB( + "yk05VJ8evEs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEED1Ev) +STUB("yk3V1q4WZhI", _ZN9Inspector22RemoteAutomationTargetD2Ev) +STUB( + "yk4qnFjEZUU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEE11release_refEv) +STUB( + "yk5uyhOB+g8", + _ZN7WebCore15JSDOMWindowBase20moduleLoaderEvaluateEPN3JSC14JSGlobalObjectEPNS1_9ExecStateEPNS1_14JSModuleLoaderENS1_7JSValueES8_S8_) +STUB("yk9a99tC+uU", uhash_removei_67) +STUB( + "ykC1TuhVtdI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEmmEv) +STUB( + "ykELY3Rr7OY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEC2EPS6_) +STUB( + "ykIRhYqogeM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB("ykNDaBA+y+k", WKPreferencesSetAllowsPictureInPictureMediaPlayback) +STUB("ykNF6P3ZsdA", _CStrftime) +STUB("ykNpWs3ktLY", sceCompanionHttpdInitialize) +STUB( + "ykOnYgLhGLU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEEC1ERSA_) +STUB( + "ykQbBGcko9c", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("ykUZXoqozJc", sceBdSchedConfigure2) +STUB("ykVoiqE-0Xs", + _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession21unsetSearchAttributesEv) +STUB("ykWsQEP-SUQ", _ZN7WebCore16ResourceResponseC1Ev) +STUB("ykZeajTxEcA", _ItL_atanhi) +STUB("ykads267mpg", jpeg_idct_10x10) +STUB("ykeQDiF4RoM", pR5) +STUB( + "ykk-gdIrz5A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEED2Ev) +STUB( + "ykratZnSX7E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEE11release_refEv) +STUB("yktn8p4+OCM", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE7reserveEi) +STUB("ykwIZfVD08s", sceSaveDataChangeDatabase) +STUB("ykxoXM-84fA", _ZN3sce2Np9CppWebApi7Matches2V113ChildActivityC1EPNS1_6Common10LibContextE) +STUB("ykyWnXSOang", _ZN10Deprecated11ScriptValueC1ERKS0_) +STUB("yl-Pvv8Clr0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEcvbEv) +STUB("yl2jH6kx6VY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce8ProductsEEC1Ev) +STUB( + "yl3T9brJay4", + _ZN3sce2Np9CppWebApi14SessionManager2V136PostPlayerSessionsRequestBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_20RequestPlayerSessionEEEEEPNS9_INS3_29PostPlayerSessionsRequestBodyEEE) +STUB( + "yl84jhpvkrE", + _ZNK3sce2Np9CppWebApi14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayer11getPlayerIdEv) +STUB( + "yl8IzOc32sM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE10setContextEPNS2_10LibContextE) +STUB("yl9PN56UdCo", _ZN8meta_gen11MsvPromoter29determineDefaultThumbnailInfoEv) +STUB( + "ylBVz-qhPMQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEEC2Ev) +STUB("ylBk6S0VO3o", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116JoinableUserTypeEEeqERKS7_) +STUB("ylEDbSGfA9s", rgctx_fetch_trampoline_rgctx_90_p) +STUB( + "ylNJzZMVUEE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEE7get_refEv) +STUB("ylTRxi27Neg", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable10valueIsSetEv) +STUB("ylUF8H4Wsu4", _ZN7WebCore17FullscreenManager16cancelFullscreenEv) +STUB( + "ylWFd8JM0j4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSD_) +STUB("ylWkAz6mDtc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEE11get_deleterEv) +STUB("ylZDP33j6rU", __sanitizer_cov_trace_cmp) +STUB( + "ylaepAn64Ws", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEptEv) +STUB( + "ylbwej8+-EA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEEC2ERSA_) +STUB( + "yldkmT5FXF0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEE5resetEPS7_) +STUB("ylpB9Qb+tKM", _ZN7WebCore8SVGNames8pathAttrE) +STUB("ylwBm-5KMW4", __tsan_get_current_report) +STUB("ym1zt5eSs-k", WKPreferencesGetMockCaptureDevicesEnabled) +STUB( + "ym2e5kV-PVk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEneERKS9_) +STUB( + "ym2oUkCCNiM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEEC2ERKSA_) +STUB("ym4GfBh+wQI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEixEm) +STUB("ym4gF58uw-0", unorm2_composePair_67) +STUB("ym4qnctv97I", WKSecurityOriginGetProtocol) +STUB( + "ym5chG5zs0A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEEC1Ev) +STUB("ymB4A1QMkI0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEED1Ev) +STUB("ymDMCu+TZMk", mono_delegate_to_ftnptr) +STUB("ymEj5HE5iP8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEC1ERKS7_) +STUB( + "ymJBZ8bDOXc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEE5resetEPS6_) +STUB("ymJUCSROIpI", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product5getIdEv) +STUB( + "ymRFcqBiON4", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS2_6VectorINS5_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS5_INS8_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISH_SI_EE) +STUB( + "ymT99ScwWrs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEC1ERS7_) +STUB("ymTIKjlVMtc", _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_6StringEEdeEv) +STUB("ymTeY5kaJ94", mono_assembly_name_new) +STUB("ymWHLBbFJG0", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku17getAnnotationNameEv) +STUB("ymWO6sZglMw", _ZN7WebCore20PasteboardCustomDataC2ERKS0_) +STUB( + "ymXIbWzlgJA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("ymXfiwv59Z0", _ZTISt15basic_streambufIcSt11char_traitsIcEE) +STUB("ymbgIPBJAVc", _ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody11unsetStatusEv) +STUB( + "ymd3u+hVmD8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEdeEv) +STUB( + "ymi-kqEXbTE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEC1EPS6_PNS2_10LibContextE) +STUB("ymiwVjPB5+k", sceHmdReprojectionDebugGetLastInfoMultilayer) +STUB("ymkxOwCxW5w", uloc_getKeywordValue_67) +STUB("ymlluwxOn8M", _ZN3sce3pss4core9PsmObjectD0Ev) +STUB("ympycJtxqjU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEEC1ERKS7_) +STUB( + "ymwrPYuQ2c0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEED1Ev) +STUB("yn2JoBJXOik", _ZN7WebCore18TextureMapperLayer10setOpacityEf) +STUB("yn2loAZJRfk", sceTextToSpeechCloseImpl) +STUB("yn5y5JJ9BX8", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed4FeedEEC2Ev) +STUB( + "yn6rw9ZB56c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEC1EPS8_) +STUB( + "ynBPwvClji8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE5clearEv) +STUB("ynFKQ5bfGks", sceSysmoduleIsLoadedInternal) +STUB("ynJ1rTAPsZU", + _ZN9Inspector34createScriptCallStackFromExceptionEPN3JSC14JSGlobalObjectEPNS0_9ExceptionEm) +STUB("ynKv9QCSbto", sceHmdInternalGetPuRevision) +STUB("ynOkla1p3Tg", _ZN7WebCore9GLContext7versionEv) +STUB("ynSqYL8VpoA", sceFontGetEffectSlant) +STUB( + "ynTNEUkPX0o", + _ZN3sce2Np9CppWebApi7Matches2V128ResponseTeamStatisticFactory7destroyEPNS3_21ResponseTeamStatisticE) +STUB( + "ynWc6I+Ku-w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEEC1ERS9_) +STUB("ynhv3cB2oTs", mono_aot_Sce_Vsh_VoiceAndAgentjit_code_end) +STUB("ynl0ijBXWN4", __tsan_atomic32_fetch_and) +STUB( + "ynlaPRle2sc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEE5resetEPS6_) +STUB("ynnez97AZAU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEEneERKS7_) +STUB( + "ynram5IlLUo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEC1Ev) +STUB("ynuwpfHw+pA", _ZN7WebCore8SVGNames8refXAttrE) +STUB( + "ynvhoQekbwg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB( + "yo1eR3eeGFc", + _ZN7WebCore30InspectorInstrumentationWebKit25interceptResponseInternalERKNS_5FrameERKNS_16ResourceResponseEmON3WTF17CompletionHandlerIFvS6_NS7_6RefPtrINS_12SharedBufferENS7_13DumbPtrTraitsISA_EEEEEEE) +STUB("yo3JXb4xvbE", Java_sun_awt_GnmUtils_bdjbgDisplay) +STUB( + "yo8nEi+xzjA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("yoAHt--Rr3w", _ZN3JSC7Symbols14mapPrivateNameE) +STUB("yoDGUzNQrVc", monoeg_g_hash_table_new_full) +STUB( + "yoDcCTYHb68", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEC2Ev) +STUB("yoE9C0Fx68s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEdeEv) +STUB( + "yoIZHmkxo9w", + _ZN3sce7Toolkit2NP2V26Friend19getFriendsOfFriendsERKNS3_7Request19GetFriendsOfFriendsEPNS2_4Core8ResponseINS3_16FriendsOfFriendsEEE) +STUB("yoKkZ3Mf0bU", WKPreferencesSetMockScrollbarsEnabled) +STUB("yoRHHh0smrQ", mono_shared_ptr_array_new) +STUB("yoVdeXZzPck", _ZN4IPMI6Client6Config14MsgQueueConfig20estimateMsgQueueSizeEmj) +STUB( + "yoXuf3SUgBo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("yoZeQaoGAqw", _ZN3sce7Toolkit2NP2V212ActivityFeed5StoryD2Ev) +STUB( + "yobi6YSUplM", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations36unsetxPSNSESSIONMANAGERINVITATIONIDSEv) +STUB( + "yobzIKyawqg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB("yodHlcBEUww", WKPageWebProcessIsResponsive) +STUB( + "yoe3Akv6h5Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEEptEv) +STUB("yofHspnD9us", _ZNSt13basic_filebufIcSt11char_traitsIcEE7_UnlockEv) +STUB( + "yohEJecL09E", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB("yoinU+hTpdM", _ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest15getInGameRosterEv) +STUB( + "yonC2kmUnzk", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions17getacceptLanguageEv) +STUB("yor08VzFtZo", WKWebsiteDataStoreSetStatisticsPrevalentResource) +STUB("yorRU1THn4M", WKRenderObjectCopyName) +STUB( + "yp2sg4cjLJY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE8pushBackERKS8_) +STUB("yp5Nh+hby74", ucnv_countAvailable) +STUB( + "ypEKWvivmKs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEED2Ev) +STUB("ypMMye20xkM", sceClHttpDestroyEpoll) +STUB("ypMObSwfcns", sceNpTusSetMultiSlotVariableAAsync) +STUB( + "ypOpDgf5Ay8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEE11release_refEv) +STUB("ypOz3lP3VhE", ubrk_isBoundary) +STUB("ypQ1+CIeMQ4", _ZNK3sce2Np9CppWebApi7Matches2V119ResponseTeamResults10scoreIsSetEv) +STUB("ypUP0j11hyM", utf8_countTrailBytes_67) +STUB("ypVBz4uPKcQ", sceAgcDcbDrawIndexIndirectMulti) +STUB( + "ypWHTMPvl7k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "ypa7qWNLMPg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEC2EPS8_) +STUB("ypazoTrKYhE", _ZN3sce4Json12MemAllocatorD0Ev) +STUB( + "yphNihkPEng", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEE7add_refEv) +STUB("ypl-BoZZKOM", sceSystemStateMgrTickMusicPlayback) +STUB("ypl6NduS5gw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEE3getEv) +STUB( + "ypm6-0ePRWs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEptEv) +STUB("ypnh6IamnAk", + _ZThn16_N9Inspector22InspectorDebuggerAgent20setPauseOnAssertionsERN3WTF6StringEb) +STUB("yppBcbu0B48", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEEptEv) +STUB("yppUV49ur84", sceMbusDebugResumeApplication) +STUB("ypq5jFNRIJA", _ZNKSt7_MpunctIwE14do_curr_symbolEv) +STUB( + "yprMxWx1Uxc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEEC1ERS9_) +STUB( + "ypwpnlM2-p4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE5beginEv) +STUB("ypyVOrJH+KQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEdeEv) +STUB( + "ypydgl92gd4", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser28getxPsnAcceptPlatformNamePs5Ev) +STUB("yq+USbNftkM", _ZN7Nicosia16SceneIntegration9setClientERNS0_6ClientE) +STUB("yq0Uhq9JwJo", sceCompositorMemoryPoolDecommit) +STUB( + "yq0dlbH8P24", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEdeEv) +STUB( + "yq0iKZUS+S4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEED1Ev) +STUB( + "yq6TaUWC0D0", + _ZN3sce2Np9CppWebApi14SessionManager2V157PostGameSessionsSessionIdMemberPlayersResponseBodyFactory7destroyEPNS3_50PostGameSessionsSessionIdMemberPlayersResponseBodyE) +STUB("yqAjaOhzfaQ", _ZN3sce7Toolkit2NP2V211SharedMedia7Request13GetBroadcasts13MAX_PAGE_SIZEE) +STUB("yqEZPpNd-NY", rgctx_fetch_trampoline_mrgctx_44) +STUB("yqIOrJbpTu4", sceDebugSpawnApplication) +STUB( + "yqMIA3nwj6g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEC1EPNS2_10LibContextE) +STUB( + "yqNp1gFvUqU", + _ZN3sce2Np9CppWebApi14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBody14getInvitationsEv) +STUB("yqROfLGUmDg", + _ZN7WebCore28convertToIntegerEnforceRangeIlEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB( + "yqUBKzpjZmA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEmmEv) +STUB("yqV+YhYhz7g", ucase_isCaseSensitive_67) +STUB( + "yqXYm-j0a6I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEmmEv) +STUB( + "yqXc0L92fMo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEC2Ev) +STUB( + "yqeRpJMiv68", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB( + "yqiG+rC3mT0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE3endEv) +STUB("yqj2bpN3gcU", sceRnpsAppMgrGetEventForShellUI) +STUB("yqlejW6-6OE", + _ZN9Inspector21InspectorConsoleAgent29willDestroyFrontendAndBackendENS_16DisconnectReasonE) +STUB( + "yqnYT+cUvIQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEED2Ev) +STUB( + "yqroW1bAB84", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEE7get_refEv) +STUB("yqsFy9yg2rU", sceNpManagerIntLoginGetEmail) +STUB( + "yqtk-ZffON4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEixEm) +STUB("yqvosp+aMWE", _ZN3sce2Np9CppWebApi11UserProfile2V113BasicPresenceC2EPNS1_6Common10LibContextE) +STUB("yqy2+88mUx8", EVP_aes_256_ctr) +STUB( + "yr+L4mkn3+E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEC1Ev) +STUB("yr9EzrSEsfo", _ZN7WebCore10StorageMap20setItemIgnoringQuotaERKN3WTF6StringES4_) +STUB( + "yr9z5R--25U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEptEv) +STUB( + "yrAMEZyU8fM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEE11get_deleterEv) +STUB( + "yrDuA7PEtSk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEeqERKS9_) +STUB( + "yrEqhN42Sdo", + _ZN7WebCore15JSSVGSVGElementC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_13SVGSVGElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB("yrHMwh-w9vo", il2cpp_field_get_type) +STUB("yrHudi97Mfw", sceShellUIUtilTerminate) +STUB("yrME3knbt8U", sceNpManagerIntGetVshTokenNB) +STUB("yrOZFj7C79Q", _ZN3sce7Toolkit2NP30DetailedProductInfoInputParamsC2Ev) +STUB("yrOs-YRTmJo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEC2ERS7_) +STUB("yrOv0czHCp4", sceSpNetPoolDestroy) +STUB("yrPTLmYWUIM", ucptrie_get) +STUB( + "yrPUuJ5BTaI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEEC1Ev) +STUB( + "yrPh5oge7E8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEaSERKS9_) +STUB( + "yrRz1HggR4s", + _ZN3sce7Toolkit2NP14GameCustomData9Interface11getItemListEPKNS1_26GameCustomDataItemsRequestEPNS1_9Utilities6FutureISt6vectorINS1_18GameCustomDataItemENS1_15AppSTLAllocatorISA_EEEEEb) +STUB("yrRzS4hL0SM", mono_aot_Sce_Vsh_Themejit_code_end) +STUB("yrTg4lLuK4A", _ZN3sce7Toolkit2NP2V29Messaging22GameDataMessageDetails21MAX_SIZE_TEXT_MESSAGEE) +STUB( + "yrVsMQv0uA0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEppEi) +STUB("yrWwBt9NZPY", WKRenderObjectGetAbsolutePosition) +STUB("yrbzVXtDvXg", _ZN7WebCore14XMLHttpRequestD2Ev) +STUB( + "yrdVvQsDrQM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEC1EPS8_) +STUB("yrtHJUH2eFc", _ZN3sce3pss4core8graphics14NativeGraphics18StoreGraphicsStateEv) +STUB("yrtsLmTfa48", FT_New_Library) +STUB("yrx+40YKqiI", timespec_get) +STUB("yrxEUkJRSXk", mono_aot_Sce_Vsh_PartyCommonmethod_addresses) +STUB("ys1JAOGzNG0", sceNetCtlApDialogUpdateStatus) +STUB("ys1W6EwuVw4", __absvdi2) +STUB("ys2e9VRBPrY", sceUsbdWaitForEvent) +STUB("ys5mC+j7w+E", _ZN3JSC7Symbols21Uint8ArrayPrivateNameE) +STUB( + "ysAnsG6EfkM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEED1Ev) +STUB("ysD289WLu2c", _ZN3JSC7Symbols29speciesConstructorPrivateNameE) +STUB("ysDKUM6kzXg", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence12Notification14PresenceUpdateEEC2Ev) +STUB( + "ysEBRXaO0lM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEppEi) +STUB("ysPB2G+jd14", sceOpusDecDecodeCancelForTimeout) +STUB("ysPsWcgN2LU", _ZN7WebCore13JSHTMLElement9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("ysQE+BpZ1Ok", + _ZN3sce2Np9CppWebApi7Matches2V126RequestTeamMemberStatisticC1EPNS1_6Common10LibContextE) +STUB( + "ysQUhm2uSt4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE5clearEv) +STUB("ysWfX5PPbfc", sceGameLiveStreamingLaunchLiveViewer) +STUB( + "ysY3J7mKS0c", + _ZN3sce2Np9CppWebApi14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBody13getSpectatorsEv) +STUB("ysYpNHM+f2U", WKBundleIsPageBoxVisible) +STUB("ysdXgAoy-XY", _ZN7WebCore22EmptyFrameLoaderClient12dispatchShowEv) +STUB("ysfNnf9JPS8", _ZN4IPMI6ServerD0Ev) +STUB("ysfza71rm9M", sceScreenShotDisableNotification) +STUB("ysmw6J-P8Ak", sceNpSessionSignalingInitialize) +STUB("yssxWr+ar0U", WebCoreHas3DRendering) +STUB("ysyIpyYl0CA", _ZN3sce2Np9CppWebApi14SessionManager2V115SearchCondition11unsetValuesEv) +STUB( + "yt+DSySHR1M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEEaSERKSA_) +STUB("yt3rhCWxg-E", _ZN7WebCore10ISOFullBoxD0Ev) +STUB( + "yt6s7nyCMao", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEC1EPS8_) +STUB( + "yt73vm77v4Q", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi28ParameterToDeleteGameSession9terminateEv) +STUB("yt7hn3QeBvY", u_strpbrk) +STUB( + "ytB6j1U649o", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeaders7destroyEPS5_) +STUB("ytDl3m9Pbew", mono_method_header_get_clauses) +STUB( + "ytE0j5i6+QA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "ytEyVfOqFHI", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectator55getpostGameSessionsSessionIdMemberSpectatorsRequestBodyEv) +STUB("ytGILcCyIuc", WKPreferencesSetPDFPluginEnabled) +STUB("ytGq+CQicI8", ucnv_convertEx_59) +STUB("ytHFpyVl7gw", JSObjectGetPrototype) +STUB( + "ytHxQmhBCGM", + _ZN3sce2Np9CppWebApi14SessionManager2V157PostGameSessionsSessionIdSessionMessageRequestBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_23MemberWithMultiPlatformEEEEEPKcPNS9_INS3_50PostGameSessionsSessionIdSessionMessageRequestBodyEEE) +STUB("ytMU6x1nlmU", sceSystemServiceActivateHevcSoftInit) +STUB("ytQULN-nhL4", pthread_rwlock_init) +STUB("ytcnibbNVGo", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15CategoryInfoSubEE10deallocateEPS3_m) +STUB("ytew5kOntw4", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_11TusVariableENS2_IS4_EEEEC2ERKS7_) +STUB( + "ytg22DCFILg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "ytguFakl2UU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEC2Ev) +STUB( + "ythYvG6sW7Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEED2Ev) +STUB("ytsTenQqDuY", _ZN7WebCore11MemoryCache13getStatisticsEv) +STUB( + "ytt1FyX059Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "yu+aQr1mrdQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEEaSERSA_) +STUB("yu0tB6uMU5s", _ZN9Inspector21HeapBackendDispatcherD1Ev) +STUB("yu70AW8PuRE", _ZNK3JSC8Debugger18hasProfilingClientEv) +STUB("yu8Q3WtZ158", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredTeamsEE3getEv) +STUB( + "yu8ShqlznjM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEED1Ev) +STUB( + "yu9acd6YiJA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("yuEd7UeRJ3Q", _ZNK3WTF8JSONImpl10ObjectBase4sizeEv) +STUB( + "yuFm3GOhbqI", + _ZN3sce7Toolkit2NP11UserProfile9Interface20getNpUserInformationEPNS1_9Utilities6FutureINS1_6NpUserEEEPKNS1_18UserProfileRequestEb) +STUB("yuFpAAX1omQ", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities14UserActivities13getActivitiesEv) +STUB( + "yuIEnVvcpt0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("yuO2H2Uvnos", sceHttpGetResponseContentLength) +STUB("yuOrMQkmgZg", psnames_module_class) +STUB("yuVVf5Gl8m0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V113AttributeTypeEEC2EPS6_) +STUB("yuXv2Slmbng", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer9hasoffsetEv) +STUB( + "yuY6d+g1Zi8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEppEi) +STUB( + "yuYYYguFLRc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("yudT4-bglko", _ZN3sce4Json19InternalInitializerD1Ev) +STUB("yuh3+ydqVVc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEED2Ev) +STUB( + "yujI0-CdorE", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsersC2Ev) +STUB( + "yusKPbeZcSc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEC2Ev) +STUB( + "yuwFtH2bdDo", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeader35hasxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB("yv--ZFO7R5g", Java_com_sony_mhpstack_mhpsupport_appsupport_AppObjectRegistry_n_1init) +STUB("yv-2j-rlxIA", _ZNK7WebCore6Editor7Command7executeEPNS_5EventE) +STUB("yv-3EmS1Z80", _ZNK7WebCore11XPathResult12booleanValueEv) +STUB("yv8JYywpwz8", _ZN7WebCore12EventHandler20sendContextMenuEventERKNS_18PlatformMouseEventE) +STUB("yv9ptY-N-ZI", _ZN3sce7Toolkit2NP19AllocImplementationD0Ev) +STUB("yvD66FSFyNg", _ZN7WebCore17LibWebRTCProvider24registerWebKitVP9DecoderEv) +STUB( + "yvH2Z6lu8jA", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeaders21intrusive_ptr_add_refEPS5_) +STUB( + "yvJ3RrwZzSk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEE11get_deleterEv) +STUB("yvJjv5jHQdE", _ZN15AbstractStorage12LocalServiceC2Ev) +STUB("yvK+8QIuztw", _ZN7WebCore15AsyncFileStream4readEPci) +STUB("yvL0St8BV7E", _ZNK3WTF10StringView26getCharactersWithASCIICaseENS0_15CaseConvertTypeEPDs) +STUB("yvO7b8l2elA", _ZN7WebCore15ContextMenuItemD2Ev) +STUB("yvRWD9ZiZh0", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_stopPlay) +STUB("yvVVgYBvwts", __asan_report_store16_noabort) +STUB("yvW7eYsbfBk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEED2Ev) +STUB("yvZ73uQUqrk", sceGnmSubmitDone) +STUB("yvaNTRiKXmo", sceNpThreadGetId) +STUB("yvbO67OvrFc", sceApplicationGetShellCoreAppId) +STUB("yvcX0NDFdJ4", scePsmMountDirectoryEx) +STUB("yvej5-SVNKk", _ZN9Inspector17ScriptDebugServerD2Ev) +STUB("yvenH6FKBnc", __ubsan_handle_nullability_arg_abort) +STUB("yvhjR7PTRgc", __atomic_fetch_sub_2) +STUB("yvnsZ36Cok0", _ZN3JSC14JSGlobalObject14finishCreationERNS_2VME) +STUB("yvp6fh6kF6E", + _ZN3sce3pss5orbis9framework8PsmEvent19UnregisterDelegatorEPFvRKNS2_12PsmEventDataEPvES7_) +STUB( + "yvqeJ0L65CI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEC1EPS8_) +STUB("yvxMRGAeWIY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEEC2Ev) +STUB( + "yw+8U9CGq4A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE8copyFromERKS9_) +STUB( + "yw2QhADovM8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlotC1Ev) +STUB( + "yw4fkSHV3l0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("yw69M-xnQgk", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124NatConnectivityToMetrics14setSuccessRateERKi) +STUB( + "yw8uy4gJVjY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEppEi) +STUB( + "yw9EbtfD1sE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEED1Ev) +STUB("yw9QE5xbiwY", _ZN3JSC7Symbols28Uint8ClampedArrayPrivateNameE) +STUB( + "ywJWXDIippA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEaSERKS7_) +STUB( + "ywJpNe675zo", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERj) +STUB("ywNkJmYQIaQ", Java_com_sony_gemstack_org_dvb_application_AppProxyImpl_n_1start) +STUB("ywPrr9tliWE", _ZN7WebCore9GLContext20isExtensionSupportedEPKcS2_) +STUB("ywU-pWrM-Vw", _ZN7WebCore13MIMETypeCache14supportedTypesEv) +STUB("ywa-7cLQm7k", JNU_PrintString) +STUB("ywmONkF81ok", scePthreadSuspend) +STUB( + "ywrLTszQlew", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEEdeEv) +STUB("ywv2X-q-9is", _ZNSt15underflow_errorD1Ev) +STUB( + "ywyynPaLAOc", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB( + "yx0CgRANrTI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEE3getEv) +STUB( + "yx7dJbqLTXI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEC2EPS8_) +STUB( + "yxDI4srLSdU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEE5resetEPS9_) +STUB("yxIXLt4jqNE", OCSP_response_get1_basic) +STUB("yxJfRazxV4Y", _ZN7WebCore9FrameView29layoutOrVisualViewportChangedEv) +STUB("yxK68584JAU", sceNpScoreSetThreadParam) +STUB( + "yxL-w+n9amY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEE21intrusive_ptr_add_refEPS7_) +STUB( + "yxSf8TurfYg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE4sizeEv) +STUB("yxVOFYHhNco", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEED2Ev) +STUB("yxWnBlhzO6U", _ZN3sce2Np9CppWebApi7Matches2V114ResponseMember11setPlayerIdEPKc) +STUB( + "yxWoeXxy3fg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEC1EPNS2_10LibContextE) +STUB( + "yxXjdARQHPQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEC1EPNS2_10LibContextE) +STUB( + "yxanJ4F2N0o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE21intrusive_ptr_add_refEPS9_) +STUB("yxbGzBQC5xA", ferror_unlocked) +STUB("yxdJQwADKOs", mono_aot_System_ServiceModel_Webplt) +STUB("yxfqc0ukAso", _ZN3WTF11Persistence7Encoder6encodeEl) +STUB( + "yxgHVlRCfzA", + _ZN3sce2Np9CppWebApi7Matches2V120ErrorResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_13ErrorResponseEEE) +STUB( + "yxgh5zLJJzs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEED2Ev) +STUB("yxiUUPJoyYI", sceShellCoreUtilShowErrorDialogWithParam) +STUB("yxltbsxpvbo", fuse_main) +STUB("yxrud6sRAWE", _ZN3sce2Np9CppWebApi12Leaderboards2V15EntryC1EPNS1_6Common10LibContextE) +STUB( + "yxsXb7LqzrM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEE5resetEPS9_) +STUB("yxwlKktzy6Y", _ZN3WTF10StringImpl7destroyEPS0_) +STUB( + "yxwzegj58Ow", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_18GameCustomDataItemENS1_15AppSTLAllocatorIS5_EEEEC2Ev) +STUB( + "yxy4kHYWWMo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE8capacityEv) +STUB( + "yxz4GKZkkUk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB( + "yxzkRt7CDVo", + _ZN3JSC12RegExpObject27getOwnNonIndexPropertyNamesEPNS_8JSObjectEPNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB( + "yy0PGJk9uic", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEmmEi) +STUB("yy12gayUXxw", _ZN15AbstractStorage12LocalStorageC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB( + "yy3ImXGa340", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStats17getnpServiceLabelEv) +STUB("yy4HvBpneq4", _ZN7WebCore11DisplayList7ClipOutD0Ev) +STUB("yy4ipwYOGJU", + _ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBodyC2EPNS1_6Common10LibContextE) +STUB("yy6C7k7FPZY", sceFiosArchiveUnmountSync) +STUB( + "yy83rJGsWXM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEE11release_refEv) +STUB("yyAMU7O65qY", glGetVertexAttribfv) +STUB( + "yyIzRZ+QVR8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEC2EPS8_) +STUB("yyJshE4eV3U", glCopyTexImage2D) +STUB( + "yyJslOmxzPQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEaSERKS9_) +STUB( + "yyKTEk6-KyY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEC1EPNS2_10LibContextE) +STUB( + "yyNIwzfKRk0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "yyPtD6VrTe0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEEaSERSA_) +STUB("yyQokKTeeHw", + _ZN15AbstractStorage10YoutubeAPI6FinishERiRSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB( + "yyRldDO3aQw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE8pushBackERKS8_) +STUB("yyUpxOH0BuQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEC1Ev) +STUB("yyZpiLag+Hs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEC2EPKS8_) +STUB("yyaxDUR3t1U", _ZN7WebCore9PageGroupC1ERKN3WTF6StringE) +STUB("yydppE2Vm94", mono_aot_Sce_Vsh_RnpsAppMgrWrapperplt) +STUB("yyg938MYX34", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEE7get_refEv) +STUB( + "yykC20xgacA", + _ZN7WebCore22EmptyFrameLoaderClient31dispatchDecidePolicyForResponseERKNS_16ResourceResponseERKNS_15ResourceRequestEON3WTF8FunctionIFvNS_12PolicyActionEEEE) +STUB("yyrCVUOCeZo", _ZNK7WebCore11RenderStyle11fontCascadeEv) +STUB( + "yyropxy8qyc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEEC2ERSA_) +STUB("yyuK50fsLYY", _ZN3PAL13SleepDisablerD1Ev) +STUB( + "yyw-EeUuvsI", + _ZN7WebCore16JSXMLHttpRequest6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_14XMLHttpRequestENS6_13DumbPtrTraitsIS8_EEEE) +STUB("yywUvTJKKFw", mono_aot_Sce_Vsh_Orbis_Bgftplt_end) +STUB( + "yyxk72QSAsE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEC2EPS8_) +STUB( + "yyyKthMKUbg", + _ZN7WebCore10StorageMap11importItemsEON3WTF7HashMapINS1_6StringES3_NS1_11DefaultHashIS3_EENS1_10HashTraitsIS3_EES7_EE) +STUB( + "yz+J7tB05yU", + _ZN7WebCore23getHostnamesWithCookiesERKNS_21NetworkStorageSessionERN3WTF7HashSetINS3_6StringENS3_10StringHashENS3_10HashTraitsIS5_EEEE) +STUB( + "yz0nm8D5DqM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE5abortEv) +STUB("yz5l9NVnL4I", WKContextConfigurationSetProcessSwapsOnNavigation) +STUB("yz62gWjUHa8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE8capacityEv) +STUB("yzAdSdSXLLE", _ZN7WebCore13JSDOMRectListC2ERKS0_) +STUB( + "yzF8vw51DOQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEEaSERSA_) +STUB( + "yzFv+QjUSMc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEE7add_refEv) +STUB("yzHLxMQNAbo", _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile13unsetOnlineIdEv) +STUB( + "yzNS84mNFow", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEmmEi) +STUB("yzNSwp-+G98", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEC2Ev) +STUB( + "yzSTPk+NArM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEED2Ev) +STUB( + "yzSZ+EEapIE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("yzXDk7ReeKU", _ZN3JSC15createTypeErrorEPNS_9ExecStateERKN3WTF6StringE) +STUB("yzYn2Pwc2LM", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry12getSmallDataEv) +STUB( + "yzacyy-KxL4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEneERKS9_) +STUB( + "yzassaFFdsw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEptEv) +STUB("yzcKSTTCz1M", _ZGVNSt10moneypunctIcLb1EE2idE) +STUB("yzdPwfxKRnw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEmmEi) +STUB("yzdlZNaiebQ", _ZN7WebCore10JSDocument6s_infoE) +STUB("yzeXuww-UWg", sceRudpPollCancel) +STUB("yzmRg-FYuDY", _ZN7WebCore8Settings26setSimpleLineLayoutEnabledEb) +STUB( + "yznuO1bJJds", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE4termEv) +STUB("yzr9X5laXEA", _ZN3JSC7Symbols27iterationKindKeyPrivateNameE) +STUB( + "yzrYgzJHIE4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE6resizeEj) +STUB("yztlVAacZkA", mono_aot_I18N_Westmethod_addresses) +STUB("yzwDZ2BtHm0", mono_amd64_have_tls_get) +STUB( + "yzz5D5vIrEE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEC1EPKS8_) +STUB( + "z+-YaF-ukxw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE4sizeEv) +STUB( + "z+8BceqAfpg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEEC2ERKSA_) +STUB("z+GEemoTxOo", scePadSetUserColor) +STUB("z+M1pu-ssOM", jpeg_finish_decompress) +STUB("z+P+xCnWLBk", _ZdlPv) +STUB("z+PKMme1cFU", + _ZN3sce2np10JsonParser17JsonParseCallbackEP13JsonParseInfoijjPKcPK12JsonValueElmiPv) +STUB("z+Tkc0MTS9E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEED2Ev) +STUB("z+TvcXz6sPE", _ZN3WTF22equalIgnoringASCIICaseEPKNS_10StringImplES2_) +STUB("z+WmkJ7BjqA", monoeg_g_hash_table_new) +STUB( + "z+aXXhCwtKU", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession28setExclusiveLeaderPrivilegesERKNS1_6Common6VectorINS5_6StringEEE) +STUB( + "z+bvJYf7eJ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEEC2ERSA_) +STUB("z+cswsLsRSE", _ZN7WebCore29DeprecatedCSSOMPrimitiveValue13setFloatValueEtd) +STUB("z+dacXqbPiw", _ZN7WebCore17LibWebRTCProviderC1Ev) +STUB("z+fI+IuMKpY", u_memrchr_67) +STUB( + "z+gvuAl5Hs8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEED2Ev) +STUB("z+hRdf8ZPp0", _ZN3JSC19HeapSnapshotBuildernwEmPv) +STUB( + "z+kaUbOPFLE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEC1EPS8_) +STUB("z+lnWWgaXlI", sceDebugGetProcessTime) +STUB("z+rxFarLiwM", WKPreferencesSetWebAnimationsEnabled) +STUB( + "z+wbQ82XMCE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEmmEv) +STUB( + "z+wmg9OZiSo", + _ZN9Inspector21PageBackendDispatcher12snapshotRectElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("z--DdTsSd4w", rgctx_fetch_trampoline_mrgctx_79) +STUB("z--iL8XnFKQ", uiter_setString_59) +STUB("z-3YG9nlhWE", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_7NpUsersEE3getEv) +STUB("z-6lKUn6pp8", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TSS7TssDataEE12deepCopyFromERS7_) +STUB( + "z-D2EJg5sQw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEC1EPS8_) +STUB("z-DYQLnvrPc", _ZN3sce2Np9CppWebApi11Matchmaking2V110UserTicket11setPlatformERKNS3_8PlatformE) +STUB("z-I94rQUMRY", sceNpManagerIntSigninByJsonUserInfo) +STUB("z-L6coXk6yo", _ZGVNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE) +STUB( + "z-NcSCRIgls", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE10setContextEPNS2_10LibContextE) +STUB("z-Nqg5KFtBU", WKDictionaryAddItem) +STUB("z-OrNOmb6kk", _Tgamma) +STUB( + "z-RFmuQiLt4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE8capacityEv) +STUB("z-RMILqP6tE", sceHmdTerminate) +STUB("z-UyIf+UXpY", _ZN3JSC15constructNumberEPNS_9ExecStateEPNS_14JSGlobalObjectENS_7JSValueE) +STUB("z-Vtoq+OkUU", _ZN7WebCore14SQLiteDatabaseD1Ev) +STUB("z-Vz1l8rYNg", sceVnaOpenTtsStream) +STUB("z-Wy213lFiE", _ZN9Inspector22InspectorDebuggerAgentD2Ev) +STUB("z-XjOZ0TwXc", _ZN10Deprecated12ScriptObjectC1EPN3JSC9ExecStateEPNS1_8JSObjectE) +STUB("z-hJNdfLRN0", sceUserServiceGetPbtcThursdayDuration) +STUB("z-lDAneweNE", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_28NpSessionDetailedInformationEEC2Ev) +STUB("z-lbCrpteB4", sceUserServiceSetIPDRight) +STUB("z-m061OoEqQ", sceFontGraphicsAgcDrawupFillTexturePattern) +STUB( + "z-mxgF+KRdc", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB( + "z-ni1MWLxh4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEneERKS9_) +STUB( + "z-ra1pfxiig", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("z-uF5OT+NqU", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE3endEv) +STUB( + "z-zTGYp5L98", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEEC2Ev) +STUB("z0+0gXUJWs8", sceHmd2ReprojectionClearUserEventStart) +STUB("z02CN9uBlVE", sceDebugGetProcessCoredumpHandlerResult) +STUB("z05p5xr2UAI", _ZN3JSC22EdenGCActivityCallback12lastGCLengthEv) +STUB( + "z09sb3eZmAQ", + _ZN3sce2Np9CppWebApi14SessionManager2V123SearchAttributesFactory7destroyEPNS3_16SearchAttributesE) +STUB("z0DbvoZ0C0Y", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth7IdTokenEE12deepCopyFromERS7_) +STUB( + "z0KUGQCUATM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE4sizeEv) +STUB("z0KtN1vqF2E", sceHmdReprojectionQueryGarlicBuffSize) +STUB("z0LZTCiy0KM", Java_sun_misc_Signal_findSignal) +STUB("z0LjFRRF9Ms", _ZN7WebCore9HTMLNames16aria_currentAttrE) +STUB( + "z0Mf-vP-2xY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEeqERKS9_) +STUB("z0OhwgG3Bik", __unordsf2) +STUB( + "z0RuBPo00RM", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi35ParameterToSetGameSessionPropertiesaSERS5_) +STUB( + "z0V4DTOb6qU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEE11get_deleterEv) +STUB("z0ZEvJEipiI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V112TicketStatusEEC1EPS6_) +STUB("z0azszTZ1ic", _ZN3sce7Toolkit2NP20JoinNpSessionRequestC1Ev) +STUB("z0b3IxfaSbI", _ZN15AbstractStorage14TwitterContent8SeekTimeElPl) +STUB( + "z0coF0P1vZ4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB("z0dtnPxYgtg", chmod) +STUB("z0h7iE7V9z0", _ZN7WebCore24parseHEVCCodecParametersERKN3WTF6StringE) +STUB("z0rTBoG5zX8", sceDebugIpmiGetEncryptedInfoAllForCoredump) +STUB("z0tS2-PZwoE", SSL_CTX_use_certificate_file) +STUB( + "z0vfBXlLZNA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE8capacityEv) +STUB( + "z0z0TDsrMxQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("z0zd9JqbxYs", sceFiosPrintf) +STUB("z1-BWq3Vxa4", _ZNK7WebCore4Node9renderBoxEv) +STUB("z1EfxK6E0ts", _Feraise) +STUB("z1Gkrg6ifyk", _ZTVN4IPMI4impl10ClientImplE) +STUB("z1H3Jl70X1A", _ZN7WebCore8SVGNames15baseProfileAttrE) +STUB( + "z1HxbeZHC94", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEplEm) +STUB( + "z1IULOyUpdw", + _ZN3JSC23VariableWriteFireDetail5touchERNS_2VMEPNS_13WatchpointSetEPNS_8JSObjectERKNS_12PropertyNameE) +STUB("z1JA8-iJt3k", sceSaveDataBackup) +STUB( + "z1JTu75g0WE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEED2Ev) +STUB( + "z1NjcNd08ug", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEeqERKS9_) +STUB("z1SfUFSYPJA", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToCancelTicket11setticketIdEPKc) +STUB("z1SpoQyfYqk", sceNpRemotePlaySessionSignalingTerminate) +STUB("z1TlnsoaCKY", _ZN9Inspector24RemoteControllableTargetD0Ev) +STUB("z1Uh28yzDzI", sceUserServiceSetVoiceRecognitionLastUsedOsk) +STUB("z1YKwAsz6gY", + _ZNK3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator6toJsonERNS_4Json5ValueEb) +STUB("z1hZfQC1mSU", mono_metadata_interfaces_from_typedef) +STUB( + "z1kqaAL3nxA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE5abortEv) +STUB("z1lqKZwIEns", _ZTVN7WebCore13MediaStrategyE) +STUB("z1tp1K1MZf8", mono_aot_Sce_Vsh_VoiceAndAgentplt) +STUB("z26WFyCE4+Q", tls_connect) +STUB( + "z2BhX-rQywA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE4sizeEv) +STUB("z2FYWrVpatI", mono_aot_Sce_Vsh_Sticker_StickerLibAccessorjit_code_start) +STUB( + "z2Fzmwg267Y", + _ZN3sce2Np9CppWebApi14SessionManager2V127GameSessionSpectatorFactory6createEPNS1_6Common10LibContextERKmRK13SceNpOnlineIdPKcSE_PNS5_12IntrusivePtrINS3_20GameSessionSpectatorEEE) +STUB("z2Sl4DL-zCc", PEM_X509_INFO_read_bio) +STUB( + "z2VQDdlIm3s", + _ZN7WebCore21NetworkStorageSession18grantStorageAccessERKNS_17RegistrableDomainES3_N3WTF8OptionalINS4_16ObjectIdentifierINS_19FrameIdentifierTypeEEEEENS6_INS_18PageIdentifierTypeEEE) +STUB("z2YMNmnyqa0", _ZNK7WebCore4Node13ownerDocumentEv) +STUB( + "z2aX9S2FMuQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE8copyFromERKS9_) +STUB( + "z2aYcRAMzoQ", + _ZN3sce2Np9CppWebApi14SessionManager2V135ResponseGameSessionSpectatorFactory6createEPNS1_6Common10LibContextERKmPKcPNS5_12IntrusivePtrINS3_28ResponseGameSessionSpectatorEEE) +STUB("z2duB-hHQSM", sceAgcSetShRegIndirectPatchAddRegisters) +STUB( + "z2ezH9cCCGI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB( + "z2glQGAAkDw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "z2gs+BXVPvg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB("z2y1t0rVKEc", mono_aot_Sce_PlayStation_Orbis_Speechjit_code_start) +STUB("z2yvgjNhOPQ", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12string2IsSetEv) +STUB("z3-e09j9-zc", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setMixerPanPosition) +STUB( + "z3-wKu+cAFo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEC2Ev) +STUB("z387+4GRGtY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament6EventsEE5resetEv) +STUB("z394AzuRItE", sceM4aacEncDeleteEncoder) +STUB("z3CYZN32+ow", _ZN7WebCore19StorageQuotaManager30requestSpaceOnBackgroundThreadEm) +STUB("z3HMx6djzdM", sceUpsrvUpdateDoUpdateWithPupInfo) +STUB("z3IKYu5KIFA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEEC1Ev) +STUB("z3KIaLSG3Bg", u_memchr_67) +STUB( + "z3Opyiz81Ds", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEmmEi) +STUB("z3SbEVzLxhw", _ZN3sce3pss4core5audio11SoundPlayer23MoveSurroundPanDistanceEfd) +STUB( + "z3TOxjSf8Bg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE7popBackEv) +STUB("z3UIha9ZNvQ", uregex_setUText_67) +STUB("z3VLCO88RDo", _ZN3JSC8Bindings8InstanceD2Ev) +STUB( + "z3XElKbvc00", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEmmEi) +STUB( + "z3deRJnnUhg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE3endEv) +STUB("z3hCBPUQbs4", _ZN7WebCore6JSNode22visitOutputConstraintsEPN3JSC6JSCellERNS1_11SlotVisitorE) +STUB( + "z3id8GlN+Hc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB("z3lrumdQe0c", _ZN3JSC17DeferredWorkTimerC2ERNS_2VME) +STUB("z3qLvuQ6R8w", JSObjectSetProperty) +STUB("z3w2MHaHX7Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEED2Ev) +STUB( + "z41NP05uU3E", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivitiesC1Ev) +STUB( + "z443k3CYNz0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE8pushBackERKS8_) +STUB("z48tr3-Vl60", __asan_stack_malloc_always_10) +STUB("z4ANp4VBCxw", _ZN7WebCore8SVGNames10heightAttrE) +STUB( + "z4AgeSXRHhQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEC2EPS8_) +STUB( + "z4E6CW0IONg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEEcvbEv) +STUB( + "z4HO35XViqM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE7reserveEi) +STUB( + "z4NdheepadQ", + _ZN3sce7Toolkit2NP2V28Matching13getAttributesERKNS3_7Request13GetAttributesEPNS2_4Core8ResponseINS3_12Notification11RefreshRoomEEE) +STUB("z4R2v+SShUE", _ZNK3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse10getAboutMeEv) +STUB("z4SY18ookLQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEEptEv) +STUB( + "z4UYNF29AJM", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("z4VKVtL7JbU", sceLoginMgrServerGetSharePlayAllowPadOperation) +STUB( + "z4Wqx0JeICU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB("z4bPTXR6wP0", monoeg_g_logv) +STUB("z4lurSzVfZs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEED1Ev) +STUB("z4rLQmYM8dU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEptEv) +STUB("z4rX4Whh8hQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEEmmEi) +STUB( + "z4vr9yeGgtc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "z4whJe4tMVc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "z4z3Ms3nx+s", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessions32getpostPlayerSessionsRequestBodyEv) +STUB("z4zamLphAP4", NetCtlGetDeviceTypeNative) +STUB( + "z5-9rMlVrqI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEC2EPS8_) +STUB("z506+nKTUW4", + _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead16customData1IsSetEv) +STUB("z507GOpYdG4", _ZN3sce7Toolkit2NP30GameCustomDataThumbnailRequestC2Ev) +STUB("z512iNLrlSs", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE7reserveEi) +STUB( + "z542ftrjD5A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEEptEv) +STUB("z554oW2MmsQ", + _ZN7WebCore24CoordinatedGraphicsLayer22setBackdropFiltersRectERKNS_16FloatRoundedRectE) +STUB("z56G4GxeH6E", _ZN3sce7Toolkit2NP2V210Tournament17TournamentDetailsD2Ev) +STUB("z58h5a5HWwI", WKArrayCreate) +STUB( + "z59+jN37VKg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEdeEv) +STUB( + "z59MnCxoQlU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE8pushBackERKS8_) +STUB("z5DeosSQuyc", JVM_GetThreadStateValues) +STUB( + "z5EVhYRTDk8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC1ERSA_) +STUB("z5F7djFOXd4", _ZN3sce2Np9CppWebApi15Personalization2V121GetAccessCodeResponse7setCodeEPKc) +STUB( + "z5Gm6x3HnB0", + _ZN7WebCore6Editor13rangeOfStringERKN3WTF6StringERKNS1_8OptionalINS_11SimpleRangeEEENS1_9OptionSetINS_14FindOptionFlagEEE) +STUB("z5Gy5T3tptE", __asan_after_dynamic_init) +STUB("z5INA8l9gKQ", _ZNSt9basic_iosIcSt11char_traitsIcEED0Ev) +STUB( + "z5LyeOaxkUU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEmmEv) +STUB("z5ST9CIgHa0", sceDepthEnableExtendedMode) +STUB("z5Sm+kGDagU", ucsdet_detect_67) +STUB( + "z5YziVxtk9o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEE5resetEPS9_) +STUB("z5bryflAZCo", mono_type_get_signature) +STUB("z5e9ck9iUDc", sceApplicationCrashSyscore) +STUB("z5gEC3cj9vo", _ZN7WebCore12JSAudioTrackD1Ev) +STUB( + "z5hFI7uip88", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEeqERKS9_) +STUB("z5jq0pKMIkw", delegate_virtual_invoke_imt_2_p) +STUB("z5jzThJoxXg", uspoof_check2UTF8_67) +STUB("z5kGCpRaSFo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEC1EPS8_) +STUB("z5kwfM5InpI", _sceNpFree) +STUB("z5ob91+BOkA", _ZNK7WebCore18SecurityOriginData18databaseIdentifierEv) +STUB("z5ornO9coA4", _ZNK3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer11getPlatformEv) +STUB("z5r7s1+31jo", delegate_virtual_invoke_imt_25) +STUB( + "z5s1gdxTM10", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEC2EPKS8_) +STUB("z5tDEL9yymw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEEC2ERKS7_) +STUB( + "z5uV+Nn-cxk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE3endEv) +STUB("z5ufrutjJsA", _ZN7WebCore12JSTimeRangesaSERKS0_) +STUB( + "z60dlTRdpbU", + _ZN3JSC17JSArrayBufferView19ConstructionContextC1ERNS_2VMEPNS_9StructureEjjNS1_18InitializationModeE) +STUB("z64HadEjQZI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEcvbEv) +STUB( + "z6HhXyflYX0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEmmEi) +STUB( + "z6IzPp3PC4Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEC1EPS8_) +STUB("z6JPqb0S0zU", __sanitizer_print_stack_trace) +STUB( + "z6VhdWSdeKo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEEaSERSA_) +STUB("z6Vqe4T3DoA", __tsan_atomic_thread_fence) +STUB( + "z6Xp3cGxIhk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE5beginEv) +STUB( + "z6dqUcgK22s", + _ZNK3sce2Np9CppWebApi14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBody6toJsonERNS_4Json5ValueEb) +STUB("z6eJnrUEaVY", sceOpusCeltDecCreateEx) +STUB("z6eXJFh2VAE", sceUpsrvTerminate) +STUB("z6gjSOYHpk8", mono_aot_Sce_Vsh_GameCustomDataplt_end) +STUB("z6jlVGfI9+g", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12RangeOfRanksEE19setCustomReturnCodeEi) +STUB("z6kAEifN7go", sceCesUtf32beToGb) +STUB("z6mHjcDTRm4", _ZN3sce7Toolkit2NP2V29Challenge18ChallengeThumbnailD2Ev) +STUB("z6n1CGBcIn0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE5emptyEv) +STUB("z6nXBwR0J5k", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_15CategoryInfoSubENS2_IS4_EEEEC2ERKS7_) +STUB( + "z6vV+ZxOCmA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE21intrusive_ptr_sub_refEPS9_) +STUB("z6wKQLUIVUU", uldn_regionDisplayName_67) +STUB( + "z6yueun0fMQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("z755FgX+8GE", _ZN7Nicosia9AnimationC2ERKS0_) +STUB( + "z75X3Tqhssk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEaSERKS7_) +STUB( + "z77J-ldy4oc", + _ZN3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallback12seteventTypeEPKc) +STUB("z78RX2DPoZ4", usearch_first_67) +STUB( + "z7BFj3KcgSo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEC1Ev) +STUB("z7D3a8pXEeE", CpsInitKey) +STUB( + "z7LCAQx7gnA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEE11release_refEv) +STUB( + "z7N8RKn67Gc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEC2EPS8_) +STUB("z7STeF6abuU", _Mtxinit) +STUB( + "z7Uq-Soo9bs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEptEv) +STUB("z7VF3vt+2D4", _Printf.fbit) +STUB("z7WVEeHImSw", _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26RecordScoreResponseHeadersC1Ev) +STUB("z7XcwQNqw2A", rgctx_fetch_trampoline_rgctx_19) +STUB("z7Xe6MIhQvA", _ZN3sce2Np9CppWebApi13InGameCatalog2V55ImageD1Ev) +STUB("z7aCCd9hMsI", __fpclassifyf) +STUB("z7aM3BYr4tA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEE7add_refEv) +STUB("z7dJxs3w7Ro", mono_aot_System_ServiceModeljit_got) +STUB("z7ey00+6y+Q", _ZN3WTF10nullStringEv) +STUB("z7fnKAMX0-o", il2cpp_add_internal_call) +STUB("z7p4mxbkli0", sceNpTrophy2SystemGetTrpIconByUri) +STUB( + "z7qlJZ6B0po", + _ZN9Inspector24NetworkBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("z7vL5ivaWso", sceCesJisX0213ToSJisCode) +STUB( + "z8+hp1Jme1M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEE7add_refEv) +STUB("z83caOn94fM", _ZNSt6chrono12steady_clock12is_monotonicE) +STUB("z8BXNyMol8M", _ZN3JSC13InferredValue15notifyWriteSlowERNS_2VMENS_7JSValueERKNS_10FireDetailE) +STUB( + "z8G7RPpLkVw", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC2Ev) +STUB("z8GPiQwaAEY", _malloc_init) +STUB("z8Hv8TPbCx0", _ZN7WebCore9HTMLNames11standbyAttrE) +STUB("z8I2q5Id9Jc", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS16FriendsVariablesEE12deepCopyFromERS7_) +STUB( + "z8Ii6vFJINw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEEptEv) +STUB( + "z8L912eEkBg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEC2EPKS8_) +STUB("z8MkteJw5yU", mono_aot_ReactNative_Vsh_Commonunbox_trampoline_addresses) +STUB("z8N+d7DLC4E", sceOpusCeltDecCreate) +STUB("z8RCP536GOM", sceNpTrophySystemBuildGroupIconUri) +STUB("z8TY8SaPtIw", _ZN9Inspector24CanvasFrontendDispatcherC2ERNS_14FrontendRouterE) +STUB( + "z8ZDxKfrziU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "z8ZXesSA7C8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEdeEv) +STUB("z8gA40d5yuA", coil_dlopen) +STUB("z8lecpCHpqU", __atomic_exchange_1) +STUB("z8qO7hql4Fs", _ZN3sce2np12StreamReader8ReadDataEPNS0_6HandleEPNS0_9StreamCtxEPvmPm) +STUB( + "z8r-78IHT9w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("z8s5YSelTK8", _ZN3JSC16SamplingProfiler5startEv) +STUB( + "z9+UX01RREc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEED2Ev) +STUB( + "z91xEea5wRM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "z93VO3rMDCk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEeqERKS9_) +STUB( + "z95sA8VSQQA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEaSERKS9_) +STUB( + "z9DMp7xPkyc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEE7get_refEv) +STUB("z9Dal4vwKOQ", _ZN7WebCore10ScrollView4hideEv) +STUB( + "z9KcfrNjtn4", + _ZN3sce2Np9CppWebApi14SessionManager2V136PostPlayerSessionsRequestBodyFactory7destroyEPNS3_29PostPlayerSessionsRequestBodyE) +STUB("z9LJMgz0BNs", _ZN7WebCore9HTMLNames13scrollingAttrE) +STUB("z9NY+Mq4PAI", shmctl) +STUB( + "z9Nq3U0135g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEE3getEv) +STUB( + "z9PBkeipTVg", + _ZN9Inspector31RuntimeBackendDispatcherHandler20AwaitPromiseCallbackC2EON3WTF3RefINS_17BackendDispatcherENS2_13DumbPtrTraitsIS4_EEEEi) +STUB( + "z9T5eoicGQs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "z9UgOZxV3ss", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE6resizeEj) +STUB("z9VhBzk67Yw", _ZN7WebCore18TextureMapperLayer11setPositionERKNS_10FloatPointE) +STUB("z9Wsaf34JA4", FT_Request_Metrics) +STUB("z9YQIyuTMV4", FTA_Remove_Module_raster1) +STUB("z9ZK6EHEF3M", _ZN3sce7Toolkit2NP22GetSharedVideosRequestC2Ev) +STUB("z9bFNJbPeCs", Java_java_lang_Class_forName0) +STUB("z9dJVj8OPBI", ucnv_MBCSGetUnicodeSetForUnicode_67) +STUB( + "z9duV0JPOqA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEppEv) +STUB( + "z9eFvGusjMA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("z9hgjLd1SGA", sceAppContentGetAddcontInfoByEntitlementId) +STUB("z9oMRRuS3fk", _ZN9Inspector21InspectorConsoleAgentdaEPv) +STUB("z9rAJ6lhtiM", _ZN7WebCore11DisplayList8DrawRectC2ERKNS_9FloatRectEf) +STUB( + "z9rLcJ-4ZJw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEEaSERSA_) +STUB( + "z9vqrN1CUBU", + _ZN7WebCore11DOMRectListC2ERKN3WTF6VectorINS_9FloatRectELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB( + "z9vsJosXpSY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEC2EPKS8_) +STUB("z9x75h6MxPM", WKPreferencesGetServerTimingEnabled) +STUB("zA1zs85cN7o", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V115NatConnectivity6toJsonERNS_4Json5ValueEb) +STUB("zA203bO-dcI", mono_reflection_assembly_get_assembly) +STUB( + "zA6ixiRJpJI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEaSERKS9_) +STUB("zA7Ortm3zGA", sceMusicFwSendMessageSynchronously) +STUB( + "zAB-1rdheDU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "zAC6t66Itvs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEC1EPS8_) +STUB("zAHAj5CNMBk", ulistfmt_close_67) +STUB("zANZ8G7tRWs", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS16FriendsVariablesEE3getEv) +STUB("zARyDXgocuk", _ZN3sce2np3ipc17ServiceIpmiClientC2Ev) +STUB("zAXnjSRSwII", jvmciHotSpotVMStructs) +STUB("zAZawbpZMdY", udict_swap_67) +STUB("zAhjsTvP4tE", mono_shared_hashtable_set_destroy_func) +STUB( + "zAlOlNulooY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE5clearEv) +STUB( + "zAmJ1SckBwA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE7reserveEi) +STUB("zAvqfrR2f7c", _ZN3sce2np12NpTitleToken5ClearEv) +STUB( + "zB+J4T-G89Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEC2EPS8_) +STUB("zB+KjKIxT3U", _ZN3sce3Xml3Dom8DocumentD1Ev) +STUB("zB-63450NPk", _ZNK3WTF9BitVector12hashSlowCaseEv) +STUB("zB0vaHTzA6g", sceNpTusGetMultiUserVariableVUser) +STUB( + "zB3r4stwlOc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEEC1ERKSB_) +STUB( + "zB8jxCeKNH8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEaSERKS7_) +STUB("zBBl5IJX2P4", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V223FilterProfanityResponse12messageIsSetEv) +STUB( + "zBCt-Jv4PIg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEC1Ev) +STUB("zBHGQsN5Yfw", _ZNSt9_Num_base14min_exponent10E) +STUB("zBJIqidrETc", _ZN7WebCore9HTMLNames23onorientationchangeAttrE) +STUB("zBLxX8JRMoo", sceUserServiceGetGlsCameraSize) +STUB( + "zBNzzqEI2I4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEEaSERKSA_) +STUB("zBRMJA2kqGU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils5IdMapEED2Ev) +STUB( + "zBSHnQzKOvw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEEaSERSA_) +STUB("zBVCQ3u6M80", _ZN7WebCore9HTMLNames18ondevicechangeAttrE) +STUB( + "zBYTOLFj9gM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEptEv) +STUB( + "zBbHfKK1oFY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEppEv) +STUB( + "zBbfvllFSSs", + _ZN9Inspector20DOMBackendDispatcher22getSupportedEventNamesElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "zBiSjW+RO4k", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEdeEv) +STUB( + "zBqaMCBgTJU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEC2EPKS8_) +STUB( + "zByexg0V34g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("zC+hnmcVEOw", _ZN15AbstractStorage4ItemC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB( + "zC4vaUr+gEc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE8capacityEv) +STUB("zC6I4ty37NA", sceFontGraphicsSetupGlyphFillPlot) +STUB("zC7DdUja3a4", _ZN8Gigacage6mallocENS_4KindEm) +STUB( + "zC849BE7MJk", + _ZN9Inspector25NetworkFrontendDispatcher19responseInterceptedERKN3WTF6StringENS1_6RefPtrINS_8Protocol7Network8ResponseENS1_13DumbPtrTraitsIS8_EEEE) +STUB("zCB24JBovnQ", _ZNSt8numpunctIcE7_GetcatEPPKNSt6locale5facetEPKS1_) +STUB( + "zCEK6jdeT4E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE5beginEv) +STUB("zCGvIdh-FLU", _ZN3sce2Np9CppWebApi7Matches2V113RemovedPlayer11unsetReasonEv) +STUB("zCIiOlzrCLs", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody11offsetIsSetEv) +STUB( + "zCKopzhlo6k", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEeqERKS9_) +STUB( + "zCQ1x2VVnpw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE7reserveEi) +STUB("zCWZmXXN600", sceNpMatching2CreateJoinRoom) +STUB("zCZqrp8OkFY", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V113ErrorResponseC2EPNS1_6Common10LibContextE) +STUB("zCbL68Xfpdc", _ZN3sce7Toolkit2NP2V210Tournament17OfficialBroadCastC2Ev) +STUB("zCgYva0hGps", _ZN7WebCore10ISOFullBoxC1ERKS0_) +STUB( + "zCgvCRgAh40", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "zChnYfZg7og", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEC1EPS8_) +STUB( + "zCi5QdW+4ts", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi13reportResultsEiRKNS4_24ParameterToReportResultsERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB("zCnSJWp-Qj8", optind) +STUB( + "zCnuvukOHLE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEC1EPKS8_) +STUB("zCqaT-DJauA", _ZNK7WebCore11MediaPlayer8fileSizeEv) +STUB("zCrPfqRak0U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEEC2ERS9_) +STUB( + "zCtu2b0uq40", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEixEm) +STUB("zCv2XqjG0EM", _ZN3sce7Toolkit2NP26GameCustomDataItemsRequestC2Ev) +STUB("zCvvTlRfuq0", _ZNK7WebCore22SkewTransformOperation5cloneEv) +STUB( + "zCxANLkDXiY", + _ZN3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayerC1EPNS1_6Common10LibContextE) +STUB( + "zD6sQvhfB9M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEED2Ev) +STUB( + "zDA3WR2zMvc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("zDG5Hx6Y3F0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEC2Ev) +STUB("zDNEy9hON-w", WKNavigationResponseCanShowMIMEType) +STUB("zDPcKA7Kt7k", ustrcase_getTitleBreakIterator_67) +STUB( + "zDQkDLdA04o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEC2Ev) +STUB("zDRP63kmmWM", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEED1Ev) +STUB( + "zDTR7vNoYGM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEEC1Ev) +STUB("zDTxL-Jz1iM", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead14getCustomData2Ev) +STUB("zDeGymmw1lg", sceSdmaConstantFillNonBlocking) +STUB("zDeH4tr+0cQ", sceNpTusDeleteMultiSlotDataVUserAsync) +STUB("zDhfzUr-oQ8", mono_context_get) +STUB("zDjF2G+6tI0", sceNpTrophyConfigGetTrophyGroupArray) +STUB( + "zDljReZqK70", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE3endEv) +STUB("zDr2ObG0dkA", _ZN7WebCore8Document8referrerEv) +STUB( + "zDzVRv7Ymls", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEixEm) +STUB("zE+R6Rcx3W0", sceNpWebApiDeletePushEventFilter) +STUB("zE-wXIZjLoM", sceKernelDebugRaiseExceptionOnReleaseMode) +STUB("zE0V+0aouZ4", FT_Match_Size) +STUB("zE2ws3Iyrqc", sceDepthSetSrTnrParameter) +STUB("zEABHq1m74A", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlotC2Ev) +STUB("zECbYPJ4I2I", WKPreferencesGetCaptureAudioInGPUProcessEnabled) +STUB("zEDkUWLVwFI", sceSharePlayStopStandby) +STUB("zEDr9rVnQcY", _ZN15AbstractStorage17DailymotionFolder6RemoveEb) +STUB("zEGWE+DCdMk", _Z19Ime_ConfigSetNativeimji) +STUB("zEIsQ9w0db4", _ZN7WebCore9HTMLNames5brTagE) +STUB("zEJf7JZDmrM", _ZN3sce3pss5orbis9framework27TerminatePsmFrameworkCsharpEv) +STUB( + "zEU+nypnr-0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEC2Ev) +STUB( + "zEW67Sgzjmw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEptEv) +STUB("zEWBWsEG9kU", WKPreferencesSetPaginateDuringLayoutEnabled) +STUB( + "zEYSnuUGoPA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE17getNpWebApi2ReqIdEv) +STUB("zEZvGyjEhuk", sceNpIdMapperOnlineIdToAccountId) +STUB("zEdJ-HenBsU", _ZN9Inspector34ApplicationCacheFrontendDispatchernaEm) +STUB( + "zEe6hoQ1Vxg", + _ZN3sce7Toolkit2NP2V27Ranking11setGameDataERKNS3_7Request11SetGameDataEPNS2_4Core8ResponseINS3_17SetGameDataResultEEE) +STUB("zEhcQGEiPik", _ZTSSt12length_error) +STUB("zEmi6zvei2k", sceKernelIccGetThermalAlert) +STUB( + "zEvc7FGhxwc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEmmEv) +STUB( + "zExF+36MYnw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEEaSERKSA_) +STUB( + "zEzcoGd2VIc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEE11get_deleterEv) +STUB( + "zF1QELCDU5Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE5clearEv) +STUB( + "zF20vau6Gyo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEE7get_refEv) +STUB("zF2GfKzBgqU", _ZNKSt7_MpunctIwE13do_pos_formatEv) +STUB( + "zF3+HPq-P7c", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlot13setaccountIdsEPKc) +STUB( + "zF3VlJ4G-SE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("zF3d9oawtRw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEE7get_refEv) +STUB("zF4GnUv7KPw", _ZN3JSC13WatchpointSetC2ENS_15WatchpointStateE) +STUB( + "zF5a3efos8I", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_20ChallengeRecvDetailsENS1_15AppSTLAllocatorIS5_EEEEC1Ev) +STUB("zF66yDnWH54", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIfEptEv) +STUB( + "zF7dzaagi3E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE8capacityEv) +STUB("zF8-CRvRXnM", sceFiosFileGetSizeSync) +STUB( + "zF9zZPTLj1k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "zFDPaFShCH8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEED1Ev) +STUB( + "zFF0NupB5UU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("zFJ35q3RVnY", scePadShareOutputData) +STUB( + "zFJpPeyi6Rc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEE7add_refEv) +STUB( + "zFaDWFqNfmY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEC1Ev) +STUB("zFaau6WD5yo", _ZN7WebCore17computeCurrentAgeERKNS_16ResourceResponseEN3WTF8WallTimeE) +STUB( + "zFeD29zehXY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEED1Ev) +STUB("zFeUNwT+TAA", _ZN3sce7Toolkit2NP2V212EventsClient5EventD2Ev) +STUB("zFgFHId7vAE", sceNpSignalingGetPeerNetInfo) +STUB( + "zFpZuFxyNZU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEcvbEv) +STUB( + "zFqCywstLec", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB("zFttNR+XSE0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEEppEi) +STUB("zFwPB6djiUE", png_get_image_width) +STUB("zFwxBZREkG8", _ZN3WTF5MutexC1Ev) +STUB( + "zFx3cpsLY5g", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEeqERKS9_) +STUB( + "zFyAsx7-orM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEC1Ev) +STUB("zG0BNJOZdm4", optarg) +STUB("zG5fn-2qo3Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEcvbEv) +STUB("zGBlsQBANKs", mono_property_hash_insert) +STUB( + "zGG1mZT8ZDI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("zGHnh4mo8-0", _ZN4Manx8ImeEventC1ENS0_12ImeEventTypeEPKci) +STUB("zGIJZUsq5OU", _ZNK3sce2Np9CppWebApi7Matches2V120ReportResultsRequest15getMatchResultsEv) +STUB( + "zGQgdfLJtbo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEptEv) +STUB("zGS-34LirNE", jpeg_CreateCompress) +STUB( + "zGTI6eF4BCs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEED1Ev) +STUB("zGaiJod9Vic", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session9SessionIdEED1Ev) +STUB("zGcivYiZ-Q4", + _ZNSt9_FacetptrISt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEE6_PsaveE) +STUB("zGkrCJ8+koo", __tsan_read8) +STUB("zGpCWBtVC0A", _ZTSc) +STUB( + "zGpSrzcgkj8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEplEm) +STUB("zGsaQ8j2MsI", WKBundleFrameGetTypeID) +STUB("zGuhKwXM9I0", u_getUnicodeVersion) +STUB( + "zH+1V4o84ZA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEE11release_refEv) +STUB("zH8DY-gzCa0", uprv_add32_overflow) +STUB("zH9F3-83I8o", _ZN7WebCore9HTMLNames11bgcolorAttrE) +STUB("zH9I3DE6iBE", sceCesUhcToUtf32be) +STUB("zH9KeMugav8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEC1ERKS7_) +STUB("zHD-PGImDeY", WKPageConfigurationSetPageGroup) +STUB("zHDtAQFFfxA", _ZN3sce7Toolkit2NP2V210Tournament15RegisteredUsersC2Ev) +STUB( + "zHDuFk78Evk", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectator28getxPsnAcceptPlatformNamePs5Ev) +STUB( + "zHGvPFR4AN0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEppEi) +STUB("zHHFjV32y3E", mono_assembly_name_get_name) +STUB( + "zHT3vgiriqA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE8pushBackERKS8_) +STUB("zHchY8ft5pk", pthread_attr_destroy) +STUB("zHgIPaK+F4c", _ZN7WebCore21DiagnosticLoggingKeys8otherKeyEv) +STUB("zHjIa5t6Fz0", mparams .1) +STUB( + "zHkdGpzBaow", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEE7get_refEv) +STUB("zHlSFNJABuA", _ZN9Inspector22InspectorDebuggerAgent7stepOutERN3WTF6StringE) +STUB( + "zHmatB66Uc8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEC2EPS8_) +STUB("zHpFxLUEX9Y", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container14getContentTypeEv) +STUB("zHshn8qPs3A", _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile19unsetPersonalDetailEv) +STUB( + "zHt4dLyyO8M", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEneERKS9_) +STUB( + "zHtEdDbd-rE", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("zHtnGa2jFQs", _ZN3sce7Toolkit2NP2V27Ranking12FriendsRanks14MAX_NUM_BOARDSE) +STUB("zHuMUGb-AQI", sceImeCheckRemoteEventParam) +STUB("zHxRg0AUZm8", sceNpAsmClientClearNpTitleTokenA) +STUB("zI+X8+h6dL8", sceUsbStorageDialogGetStatus) +STUB( + "zI0+8x15cVM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEC2Ev) +STUB("zI21P1K2XFE", Java_com_sony_bdjstack_init_Init_initJni) +STUB("zI5kPLikrZY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEC1Ev) +STUB("zI5tXeMaKWM", _ZNK7WebCore5Range12pastLastNodeEv) +STUB("zIA5MWzPQ0M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEEC2ERKS7_) +STUB( + "zIH1Tu81BNg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "zIIwCm8D6Mg", + _ZN9Inspector14ConsoleMessageC1EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelEON3WTF6VectorINS5_12JSONLogValueELm0ENS5_15CrashOnOverflowELm16EEEPNS1_9ExecStateEm) +STUB("zIKL4kZleuc", sceCameraSetAutoWhiteBalance) +STUB( + "zILnNJZ1nEE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEEC1ERKSA_) +STUB("zILy8t+5bPo", sceVideoOutSetBlankAfterResume) +STUB("zIMH5hIuWk4", _ZNK15AbstractStorage14YoutubeContent10GetServiceEv) +STUB("zINGw6gUtWg", _ZN9Inspector27DOMBackendDispatcherHandlerD2Ev) +STUB( + "zIVdwwhx75A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEC2ERKS7_) +STUB("zIVq000MUx0", _ZN12video_parser7cVpUtil13convTimeScaleEyjjPy) +STUB( + "zIX0xikzmSw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEED1Ev) +STUB( + "zIY7jVZ4d44", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEppEi) +STUB( + "zIYEJfpfjuI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEaSERS7_) +STUB( + "zIYQZDETN94", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEC2EPNS2_10LibContextE) +STUB("zIbIJFlXjcQ", _ZN3sce7Toolkit2NP2V211UserProfile10NpProfiles8deepCopyERKS4_) +STUB( + "zId64D3wiV0", + _ZN7WebCore33validateCrossOriginResourcePolicyERKNS_14SecurityOriginERKNS_3URLERKNS_16ResourceResponseE) +STUB("zIkzeuSbTuY", mono_btls_x509_verify_param_set_host) +STUB( + "zIlMU8UFgxs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("zIttPL4lCv0", _ZN7WebCore8JSPath2DD2Ev) +STUB( + "zIw1ThL82HA", + _ZN3JSC14CachedBytecode17addFunctionUpdateEPKNS_26UnlinkedFunctionExecutableENS_22CodeSpecializationKindEN3WTF3RefIS0_NS5_13DumbPtrTraitsIS0_EEEE) +STUB("zIx-FcuPXVM", sceFiosCachePrefetchFHSync) +STUB( + "zJ-YkDHcwn4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEppEi) +STUB("zJ0+NAGTfXA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEdeEv) +STUB( + "zJ4SY5KYzI8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEE7get_refEv) +STUB("zJ8KXrFK1Zw", _ZNK7WebCore11MediaPlayer22documentSecurityOriginEv) +STUB("zJ8P2q3ZflM", glTexImage3D) +STUB("zJGf8xjFnQE", sceNetSocketAbort) +STUB("zJJv8-ZagRU", rgctx_fetch_trampoline_mrgctx_10) +STUB( + "zJKKFhkA6hc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEE7get_refEv) +STUB( + "zJKq1BgsXeQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("zJMMllZfUL0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE3endEv) +STUB( + "zJOCiJmm1ig", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEED2Ev) +STUB("zJOq3ux6y4A", infoUnlock) +STUB("zJVbOMno+mw", _ZN3JSC7Symbols51hasObservableSideEffectsForStringReplacePrivateNameE) +STUB("zJYi5br6ZiQ", sceHttpsDisableOptionPrivate) +STUB("zJcRJVOAmzk", __tsan_unaligned_write4) +STUB("zJdh+LWNjow", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus13objectIdIsSetEv) +STUB("zJkby7Eh+nE", sceClPthreadMutexattrSetprioceiling) +STUB("zJp4pTlyzGg", unumf_formatDouble_67) +STUB( + "zJr2h8Aqzjc", + _ZN3sce2Np9CppWebApi13InGameCatalog2V510SkuFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_3SkuEEE) +STUB("zK47IhHFaX0", mono_aot_Sce_Vsh_MyGameListunbox_trampolines) +STUB("zK5beUUFxPs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEEC2Ev) +STUB( + "zK5n5dyaKqg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE5beginEv) +STUB("zK8u4xz5xgQ", _ZN7WebCore16CSSParserContextC1ERNS_8DocumentERKNS_3URLERKN3WTF6StringE) +STUB( + "zKFwDjXOFI0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEC1Ev) +STUB( + "zKHeo82lcSY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEEC2Ev) +STUB("zKM+7cHdQgc", _ZN6icu_6713UnicodeStringD1Ev) +STUB("zKQEeM0cBVs", sceOpusCeltDecDecodeFloat) +STUB( + "zKTXf4wcOow", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEEC1Ev) +STUB("zKX+287hwdQ", _ZN3JSC25JSInternalPromiseDeferred6s_infoE) +STUB( + "zKXmNQK6KVI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEEdeEv) +STUB( + "zKaGzYZpT-w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEED1Ev) +STUB( + "zKbDOY04vWM", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetBoolean2Ev) +STUB("zKbg6elkzAk", _ZN7WebCore39rangeExpandedAroundPositionByCharactersERKNS_15VisiblePositionEi) +STUB("zKbm12dz0po", _ZN7WebCore11DisplayList18DrawFocusRingRectsD0Ev) +STUB("zKdA-gZaZSs", _ZN3JSC7Symbols26isBoundFunctionPrivateNameE) +STUB("zKg5AOZL6V0", _ZNK3WTF10StringImpl25endsWithIgnoringASCIICaseERKS0_) +STUB("zKo+GsSb3Ys", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEppEi) +STUB("zKoVok6FFEI", sceNpScoreGetGameData) +STUB( + "zKr048X2O6E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "zKsrsHcA3z0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "zKuMrX5A4gQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEC2EPS8_) +STUB("zKudLmcrbCU", _ZN3sce7Toolkit2NP2V28Matching12Notification11RefreshRoomD2Ev) +STUB("zKxUpYXi21E", mono_shared_area_instances) +STUB( + "zL3O1lpg9WE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEC2Ev) +STUB("zL45QQlAuTY", _ZN19ScePssCMediaDecoder19BufferedDecodeChunkEPKhjRjPsjS2_S2_) +STUB( + "zL6sVkPpQYE", + _ZN9Inspector22AuditBackendDispatcher8teardownElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("zL6yr+wPGX4", _ZN7WebCore8SVGNames16marker_startAttrE) +STUB("zLEuSU+hl-w", sceKernelIccGetBDPowerState) +STUB("zLHSNIak9pY", _ZN3sce7Toolkit2NP2V28Presence7Request19LocalizedGameStatusD2Ev) +STUB( + "zLI13hYpwg8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEneERKS9_) +STUB( + "zLIIPDJzf88", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEC1Ev) +STUB( + "zLJs2QfSYzY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEEcvbEv) +STUB("zLONlyzsrCU", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_12PresenceInfoEEC2Ev) +STUB("zLXFB83-JLc", uprv_decNumberCopyNegate_67) +STUB( + "zLXmtdb5CJM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "zLbJKsnjYSs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE10setContextEPNS2_10LibContextE) +STUB("zLc1BoKtSO0", _ZN12Mp4Retriever14processHdlrBoxEv) +STUB( + "zLcgdc+3oho", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEE7get_refEv) +STUB( + "zLiEaayL+xE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB("zLlLc3h2Prk", scePthreadGetconcurrency) +STUB( + "zLor0OcYT5g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEixEm) +STUB("zLrVvtCBBuk", _ZN15AbstractStorage12LocalStorage13writeExternalESt10shared_ptrINS_7ContentEE) +STUB( + "zLun3X7uHtA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEptEv) +STUB("zLzJ8SYXeSg", _ZN3WTF11Persistence7EncoderC1Ev) +STUB( + "zM2exXWvRxc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEEptEv) +STUB("zM6YDpjXj9E", + _ZN7WebCore38updateResponseHeadersAfterRevalidationERNS_16ResourceResponseERKS0_) +STUB("zMA017igJyk", curl_msprintf) +STUB( + "zMB8hPRcBZ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEC2EPS6_PNS2_10LibContextE) +STUB("zMCYAqNRllc", __cxa_demangle) +STUB("zMD3bA26OQY", _ZN7WebCore16ResourceResponseC1ERKS0_) +STUB("zMIbxLolq6s", uplrules_select_67) +STUB("zMMLx4tVFf0", + _ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer14setCustomData1EPKvm) +STUB( + "zMO5JYB-H7o", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE5emptyEv) +STUB("zMSZuyLqCAs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEEC1ERKS9_) +STUB( + "zMSyHPD9hd4", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchDetail10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_24UpdateMatchDetailRequestEEE) +STUB( + "zMV+5IFxYFI", + _ZN7WebCore20ApplicationCacheHost17maybeLoadResourceERNS_14ResourceLoaderERKNS_15ResourceRequestERKN3WTF3URLE) +STUB("zMV8Kfjy1iw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEC1ERS7_) +STUB( + "zMWivYh6Y50", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi42ParameterToPutGameSessionsSearchAttributesD2Ev) +STUB( + "zMYq1lIh+ig", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE8copyFromERKS9_) +STUB("zMZVwzkSsq8", _ZN7WebCore20DictationAlternativeC1Ejjm) +STUB("zMbMGN1EK10", _ZN7WebCore24GraphicsContextImplCairo13createFactoryEP6_cairo) +STUB("zMetPkNDkYU", sceDebugIpmiGetSessionKidListByServerKid) +STUB( + "zMfXYgktE-g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE21intrusive_ptr_sub_refEPS9_) +STUB("zMgXM79jRhw", sceSaveDataShutdownStart) +STUB( + "zMkVe6Vvnh8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE7popBackEv) +STUB("zMkimbaunbE", _ZN3sce2Np9CppWebApi14SessionManager2V111GameSession12setSessionIdEPKc) +STUB( + "zMm86Gk97pg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEED1Ev) +STUB( + "zMvLwkAzZnI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEEcvbEv) +STUB("zN1Nt4FdDG0", _ZN9Inspector28DOMStorageFrontendDispatcherdaEPv) +STUB("zN3+nuA0SFQ", sceFontCharacterGetTextFontCode) +STUB("zN3LirRaa3I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEEC2EPKS6_) +STUB("zN3TYAlQEsk", WKPluginInformationMIMETypeKey) +STUB("zN4908PoI3k", sceFaceTrackerGetWorkingMemorySize) +STUB( + "zNFXwqZwK-0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEE11release_refEv) +STUB("zNGh-zoQTD0", sceHttpRemoveRequestHeader) +STUB( + "zNLmf1sQQaE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("zNM-D6RGHAE", _ZN3sce2Np9CppWebApi12Leaderboards2V113ErrorResponseD1Ev) +STUB( + "zNR9uoRqWh4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "zNVLf+l2Dzw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE4sizeEv) +STUB("zNZ9d6sSrSo", _ZN12video_parser13cVideoPathMsvD2Ev) +STUB("zNb6IxegrCE", sceNpLwCondDestroy) +STUB( + "zNcMnRWe-D8", + _ZN3sce2Np9CppWebApi7Matches2V131UpdateMatchStatusRequestFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_24UpdateMatchStatusRequestEEE) +STUB( + "zNlZOe89edo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEE5resetEPS9_) +STUB("zNnPUDTRrMw", sceHeadTrackerGetNumberOfRunningInstance) +STUB( + "zNuGs8h0rlc", + _ZN3sce2Np9CppWebApi14SessionManager2V145RequestCreatePlayerSessionNonPsnPlayerFactory7destroyEPNS3_38RequestCreatePlayerSessionNonPsnPlayerE) +STUB("zNvCnHpkPmM", sceUserServiceGetPadSpeakerVolume) +STUB( + "zO5XEc0tfqI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEppEv) +STUB("zO7NlO2unTI", sceCesUtf32ToMbc) +STUB("zO8MS-Rrk0U", _ZN7WebCore24CoordinatedGraphicsLayer20updateContentBuffersEv) +STUB("zO9CmE-GeKQ", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEE11get_deleterEv) +STUB("zO9UL3qIINQ", sceRtcGetCurrentNetworkTick) +STUB("zO9inFdWORE", _ZTVN9Inspector23WorkerBackendDispatcherE) +STUB( + "zO9pvIb5Arw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEE11get_deleterEv) +STUB("zOA2tHzOY8I", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEptEv) +STUB( + "zOEJx7duNpI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "zOIdcGA+nvc", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountId15setasOfDateTimeEPKc) +STUB( + "zOJqiT+vI-A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE3endEv) +STUB("zOPA5qnbW2U", _ZNSt5ctypeIwED0Ev) +STUB("zOSPmCu3Voc", _ZN7WebCore6Editor24replaceSelectionWithTextERKN3WTF6StringEbbNS_10EditActionE) +STUB( + "zOX3bdLrtxY", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEEiRNS2_10LibContextEPT_m) +STUB( + "zOb+JO+qnUI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("zOnJttJv-8w", _ZN3WTF7CStringC1EPKc) +STUB("zOnK2Venb2M", sceAvControlSetDispclk) +STUB("zOpDY5DsWxI", JVM_IHashCode) +STUB("zOupd5FZLOM", _ZN7WebCore8JSDOMURLaSERKS0_) +STUB("zOwBXJsSAOQ", + _ZN3sce2Np9CppWebApi14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerD2Ev) +STUB("zOxc6QhUelk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEEptEv) +STUB("zOySpeRm7w8", _ZN7WebCore13JSDOMRectListC1ERKS0_) +STUB("zOznE5hOJHU", + _ZN7WebCore16MIMETypeRegistry34isSupportedImageVideoOrSVGMIMETypeERKN3WTF6StringE) +STUB( + "zP2vARpDHj4", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot11getsortModeEv) +STUB("zP4ZNlXLBVg", sceAgcDriverCreateQueue) +STUB( + "zP6ZcZ6KVDk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEE3getEv) +STUB( + "zP9+xiYBwgE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEC1ERS7_) +STUB("zPDRirPat0g", _ZN7WebCore4Page12setIsVisibleEb) +STUB( + "zPE2NgE7TJc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("zPEbF-EnN5c", uset_containsString_67) +STUB( + "zPHMLiBMtqk", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsers12setsessionIdEPKc) +STUB( + "zPL-qkixtkk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE21intrusive_ptr_add_refEPS9_) +STUB("zPRDqgIAc1k", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEED1Ev) +STUB( + "zPRpC4PDSSM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE8pushBackERKS8_) +STUB("zPWCqkg7V+o", _ZSt14get_unexpectedv) +STUB("zPWH7YflRh4", _ZNK7WebCore6Quirks44shouldAvoidResizingWhenInputViewBoundsChangeEv) +STUB("zPdlo9OiO0g", sceCesEucJpToUtf8) +STUB( + "zPibPzXzeqU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEEC1ERSA_) +STUB("zPk9WNQtOkc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEC2Ev) +STUB( + "zPkXn3yQi0s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEE7add_refEv) +STUB( + "zPp37GDq1us", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEED1Ev) +STUB("zPwoIKJ7Nw4", mono_aot_mscorlibunbox_trampolines_end) +STUB( + "zPxf+H8eW1o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEEC2ERSA_) +STUB("zPyz2yKqBY4", mono_aot_Mono_Cairojit_code_end) +STUB("zQ0sxMllUxk", mono_aot_System_Collectionsplt_end) +STUB( + "zQ6QAcs3+is", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEE5resetEPS6_) +STUB("zQ7gIvt11Pc", sceNpPartyUnregisterPrivateHandler) +STUB("zQ7qs2J-Veg", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE5clearEv) +STUB( + "zQDEEgroDS0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEaSERKS7_) +STUB("zQDUtwE4ChY", _ZN3JSC4Heap17releaseAccessSlowEv) +STUB("zQDZtAHh-RM", _ZN7WebCore22EmptyFrameLoaderClient13didFinishLoadEv) +STUB( + "zQDgU1jkrlk", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126MatchCompletionRateFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_19MatchCompletionRateEEE) +STUB("zQE8Ba3MvSw", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_25ReceivedInGameDataMessageEE3getEv) +STUB("zQJ3Wgpr2xE", WKPreferencesGetPaginateDuringLayoutEnabled) +STUB( + "zQJoCtuVABA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB("zQLVD+vqI0Y", _ZN3WTF17StringPrintStreamC2Ev) +STUB( + "zQNIOw05SQM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("zQQIrnpCoFA", _Fetch_and_seq_cst_1) +STUB("zQRMb7uXGag", _ZN3sce2Np9CppWebApi7Matches2V120ReportResultsRequest19unsetNpServiceLabelEv) +STUB( + "zQSmCd4ysmA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEE7add_refEv) +STUB("zQb9y+VO8WY", _ZN3sce7Toolkit2NP2V212ActivityFeed14PlayedWithFeedC1Ev) +STUB("zQbA-QPfK4I", JSObjectSetPrivateProperty) +STUB("zQduSmnc1KA", _ZNK3WTF24TimeWithDynamicClockTypegeERKS0_) +STUB( + "zQiM2AwuvtY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEEaSERSA_) +STUB("zQmtzzBK6wQ", _ZN3JSC18IncrementalSweeperC1EPNS_4HeapE) +STUB("zQorHBFYz2M", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product14unsetPublisherEv) +STUB( + "zQqlTqV3xgw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEED2Ev) +STUB("zQsd8K1pV6A", WKWebsitePoliciesGetContentBlockersEnabled) +STUB("zQtLRTqceMY", _ZN3sce4Json5Array9push_backERKNS0_5ValueE) +STUB("zR+717YnmNs", JVM_GetSystemPackages) +STUB("zR+J2PPJgSU", sceUserServiceGetGlsInitSpectating) +STUB("zR-AzD83G4U", _ZN12video_parser5vpcom11string_util8ToStringEPKvm) +STUB("zR0ajY4BmKc", _ZNK3WTF13DecimalNumber28bufferLengthForStringDecimalEv) +STUB("zR4ZbbWPTpQ", mono_jit_init) +STUB("zR55pJsx9CY", _ZN7WebCore10FileSystem11getFileSizeEiRx) +STUB("zR9EFyANWYc", JVM_FindClassFromBootLoader) +STUB("zRA9SAGlVYA", mono_assembly_get_object) +STUB( + "zRB81VoPaKU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("zREgl-R2PHU", _ZN7WebCore16FontCascadeFontsD2Ev) +STUB("zRLQm+ABmI8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE5beginEv) +STUB("zRaImZOpp7Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEEdeEv) +STUB( + "zRcjVA5r72Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE5beginEv) +STUB("zRiYco2OGYk", _ZN7WebCore16FileReaderLoader6cancelEv) +STUB( + "zRr1TUKh6TQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("zRrGwmwDsUE", _ZN3sce7Toolkit2NP19ActivityFeedRequestC2Ev) +STUB( + "zRrdWNSfF4M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEEC2ERKSA_) +STUB( + "zRwZM5AhJs0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEC1Ev) +STUB("zRySuja7WWw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEED1Ev) +STUB("zRyxua-raik", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils13NetStateBasicEEC2Ev) +STUB("zS-D-ttUS5I", scePerfTraceSpmDelete) +STUB("zS-rkk0AOoY", + _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead21usePlayerSessionIsSetEv) +STUB("zS07xxypy7I", qS5) +STUB( + "zS0XDfv066M", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE3endEv) +STUB( + "zS5TXOV7kCw", + _ZN3sce7Toolkit2NP2V28Matching20setInitConfigurationERKNS3_7Request20SetInitConfigurationEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("zS6ZPLgQJcA", sceShellCoreUtilGetPsStoreIconState) +STUB("zS6wfitCuEg", _ZN3sce7Toolkit2NP2V28Commerce7SkuInfoD2Ev) +STUB("zS94yyJRSUs", _Getpwcstate) +STUB("zSDwbTp6598", WKMediaSessionMetadataCopyArtworkURL) +STUB( + "zSJsBx0VZ3o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEEptEv) +STUB("zSKWPuhvdv8", mono_btls_bio_free) +STUB("zSQbtwa1Isg", _ZN7WebCore9HTMLNames5h6TagE) +STUB("zSR6kEWpr0c", sceNpSnsIntTest) +STUB( + "zSSBGJRa9lg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEE6assignEPS5_PFvS7_EPNS2_10LibContextE) +STUB( + "zSSjy1VsjNU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEC1Ev) +STUB( + "zSURo5cOYRA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEED2Ev) +STUB( + "zSZ-3ERvvO4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEC2EPS8_) +STUB( + "zSZleB81cVY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEptEv) +STUB("zSehLdHI0FA", _ZNKSt8messagesIwE7do_openERKSsRKSt6locale) +STUB( + "zSgQi8dNy4A", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS25AtomicAddToAndGetVariableEE19setCustomReturnCodeEi) +STUB("zSp-vRHGkmc", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification18NewGameDataMessageEED1Ev) +STUB( + "zSpWXV1Wd8g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEEdeEv) +STUB("zSru96TAjkQ", + _ZN7WebCore21UserContentController20removeUserStyleSheetERNS_15DOMWrapperWorldERKNS_3URLE) +STUB( + "zSu+BVgi3TE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE28getResponseInformationOptionEv) +STUB("zSysSZXqYRc", _ZN3NTF18NetworkControlImpl10initializeEv) +STUB( + "zT0-KIGR9zk", + _ZN3sce2Np9CppWebApi14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyC2EPNS1_6Common10LibContextE) +STUB("zT0XBtgtOSI", sceNpScoreRecordScore) +STUB("zT2EQ3EA2-g", p5_256) +STUB("zTDf3oNLysY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEE11get_deleterEv) +STUB( + "zTIeQUC5wiM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEE11release_refEv) +STUB("zTIgFOre0mQ", _ZN18MmsFileUpdaterBase18GetContentFilenameEP4xMMSmPcj) +STUB("zTIz7u9gQhs", _ZNSt13basic_ostreamIwSt11char_traitsIwEE5flushEv) +STUB( + "zTRTPuQ24-o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEC2EPS6_PNS2_10LibContextE) +STUB( + "zTUHjUh1lN0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEEcvbEv) +STUB("zTX7LL+w12Q", + _ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE7_GetcatEPPKNSt6locale5facetEPKS5_) +STUB( + "zTa4TCchuRI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE5beginEv) +STUB( + "zTn001OoAt0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEE11get_deleterEv) +STUB("zTnim89xUWY", scePs2EmuMenuDialogClose) +STUB( + "zTohLb2j5nI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE8copyFromERKS9_) +STUB("zTpTVxQPab4", _ZN3JSC7Symbols60resolvePromiseWithFirstResolvingFunctionCallCheckPrivateNameE) +STUB( + "zTpVC2mcgUk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "zTsla-RGNsI", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariable12getaccountIdEv) +STUB("zTwZdI8AZ5Y", _ZNK3sce4Json5Value10getBooleanEv) +STUB("zTxuFF09sQY", mono_get_exception_class) +STUB( + "zTyTrri6MD4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEED2Ev) +STUB( + "zTzsv5tnEvM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEppEv) +STUB( + "zU-3r2OY+z8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEC2Ev) +STUB("zU69Lq0w96I", _ZN3JSC7JSValue13isValidCalleeEv) +STUB("zU7CLfyIDwo", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEEC1Ev) +STUB("zUBEypuu+Qk", _ZNK7WebCore11MediaPlayer18supportsFullscreenEv) +STUB( + "zUBGb5STPBY", + _ZN7WebCore21JSCSSStyleDeclaration18getOwnPropertySlotEPN3JSC8JSObjectEPNS1_9ExecStateENS1_12PropertyNameERNS1_12PropertySlotE) +STUB("zUDW7kIFclI", sceVideoOutRazorRemoveCallback) +STUB( + "zUE+Hb++dYk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEppEi) +STUB("zUM-RG5Hmyc", sceNpFriendListDialogOpen) +STUB("zUMbo2HaFrU", _ZN7WebCore21setPlatformStrategiesEPNS_18PlatformStrategiesE) +STUB("zUPxUHo9rv4", _ZN7WebCore5Color10tagAsValidEv) +STUB( + "zUVyrUaoDhg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEE7get_refEv) +STUB("zUY8+rHQ4CU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEC1ERS7_) +STUB("zUgEW9fMnxs", sceAppInstUtilAppIsInInstalling) +STUB("zUwmtNuJABI", _ZTIPn) +STUB("zUyETbglIz4", + _ZN3sce2Np9CppWebApi14SessionManager2V118MatchmakingForReadC1EPNS1_6Common10LibContextE) +STUB("zUyrfES8UgE", _ZN8meta_gen13TiffRetriever15ProcessTiffDataENS_3ifdEPNS_9tifferrorE) +STUB("zV05yXZmNKg", _ZN7WebCore28InspectorFrontendClientLocal24showMainResourceForFrameEPNS_5FrameE) +STUB( + "zV4C5bcYMCI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEC1Ev) +STUB("zV6Q0ijIDhk", _Z16WTFCrashWithInfoiPKcS0_immmmm) +STUB( + "zV8+TqLhEbU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEaSERS7_) +STUB( + "zVBsCi9K4s0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("zVJ8KjLAETY", _ZN3JSC2VM23callbackObjectSpaceSlowEv) +STUB( + "zVJzifJClno", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "zVKCmvzrf34", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEptEv) +STUB("zVPu40y7qgk", delegate_virtual_invoke_2) +STUB( + "zVRl1Qu1Dow", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEEC1EPS8_PNS2_10LibContextE) +STUB("zVWWeOOhzyw", il2cpp_method_is_instance) +STUB("zVYsRbSrJiE", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEEdeEv) +STUB("zVZE+fAhgFY", sceNpLookupNetInit) +STUB( + "zVm5OFIjG-I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEE6assignEPS5_PFvS7_EPNS2_10LibContextE) +STUB( + "zVn8Q0HPj7g", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeaders5parseEPNS1_6Common10LibContextElPNS6_12IntrusivePtrIS5_EE) +STUB("zVurBMjzQqM", + _ZN12video_parser20cVideoContentFactory17allocVideoContentEPKcPPNS_13iVideoContentEb) +STUB("zVvatWPvxC0", _ZN3sce7Toolkit2NP2V28Commerce7Request21DisplayCheckoutDialogC2Ev) +STUB( + "zVyIbesDcmg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEmmEv) +STUB("zVymWhK3EXA", jpeg_fdct_3x6) +STUB("zVzecw8b4g8", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching5RoomsEE19setCustomReturnCodeEi) +STUB( + "zW+t23PyK-k", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE17getResponseHeaderERSA_) +STUB( + "zW-b8eQAqGU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE5emptyEv) +STUB( + "zW50kf6S1V8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "zW5JMCeSgdQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB("zW6mUeF4XHg", _ZN7WebCore9FontCache9singletonEv) +STUB("zWByRCe8gvc", _ZNK7WebCore7Element28renderOrDisplayContentsStyleEv) +STUB("zWEQweG0SfU", _sceNpAllocatorStrndupImpl) +STUB("zWG4mt3iYuk", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_17TitleCloudStorage2V19ConditionEEppEv) +STUB("zWIFe+d77PU", _ZThn16_N3sce2np9HttpTransD0Ev) +STUB( + "zWIbTWy8ylI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("zWJt5iSLkro", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getSecondaryAudioLang) +STUB("zWLNS5Wap+Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE8capacityEv) +STUB( + "zWNIWnEyj0U", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSession37unsetxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB("zWP0d9r9zl4", _ZN9Inspector26TimelineFrontendDispatcherC2ERNS_14FrontendRouterE) +STUB("zWSNYg14Uag", _ZNSt7_MpunctIcEC2Emb) +STUB( + "zWSYc1djqJ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB("zWY448upzsM", __tsan_atomic16_fetch_and) +STUB("zWaD-ACT3yg", _ZN3WTF8JSONImpl9ArrayBaseD1Ev) +STUB("zWdJYlMai5M", _ZNK7WebCore11XPathResult10resultTypeEv) +STUB( + "zWhW-6vsOJQ", + _ZN3sce7Toolkit2NP2V28Commerce13getContainersERKNS3_7Request13GetContainersEPNS2_4Core8ResponseINS3_10ContainersEEE) +STUB("zWhqEwkF-C0", _ZN3WTF18ParallelHelperPoolD2Ev) +STUB("zWkArFP1YQI", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container9skusIsSetEv) +STUB("zWny6IVMs+s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEEC1EPKS6_) +STUB("zWobZk9QAG4", mono_aot_Sce_Vsh_BackupRestoreUtiljit_got) +STUB( + "zWrfHpF4tZs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "zWtBv4Awbcc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEED1Ev) +STUB( + "zWtDQFkgQv8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB("zWtXSodWImQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEC1ERS7_) +STUB("zWv7Vc-DZUQ", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_22ConsumeChallengeResultEE3getEv) +STUB("zWvOap1xKUE", _ZNK7WebCore15HTMLFormElement6actionEv) +STUB("zWvkcHmDHnw", _ZN7WebCorelsERN3WTF10TextStreamENS_30ScrollBehaviorForFixedElementsE) +STUB( + "zWxCdCbUB88", + _ZN9Inspector22InspectorDebuggerAgent17resolveBreakpointERKNS_19ScriptDebugListener6ScriptERN3JSC10BreakpointE) +STUB("zWxkwk8uSco", + _ZN7WebCore13GraphicsLayer13addChildAboveEON3WTF3RefIS0_NS1_13DumbPtrTraitsIS0_EEEEPS0_) +STUB("zWy8nNFWNFo", _ZTVN9Inspector20CSSBackendDispatcherE) +STUB( + "zX-+i80Jn8A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEEC2ERSA_) +STUB("zX0skVT0j-U", _ZN3WTF17fastAlignedMallocEmm) +STUB("zX2PgPpNlx8", unorm_compare_67) +STUB("zX3ht91VT4k", ucase_getTrie_67) +STUB("zX7rzx9kd4k", _ZN7WebCore11JSImageDataD2Ev) +STUB("zX9DrNdYROA", _ZN7WebCore8CSSValue7destroyEv) +STUB("zXCi78bYrEI", _Log) +STUB("zXGAqz9u3MU", mono_aot_Sce_Vsh_Np_Papcunbox_trampoline_addresses) +STUB("zXGofBSUKgU", cond) +STUB("zXLTj+arR+c", i2c2i_) +STUB( + "zXMxxCjysQs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE7popBackEv) +STUB("zXPERrs8Gh4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE3endEv) +STUB("zXTL17+Nsx8", _ZN7WebCore13ContainerNode22getElementsByTagNameNSERKN3WTF12AtomicStringES4_) +STUB( + "zXVZL3ANGFM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE7reserveEi) +STUB( + "zXZ7ZVHfEMs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "zXZh5hOACco", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEEcvbEv) +STUB("zXaFo7euxsQ", sceNpWebApi2IntInitialize) +STUB( + "zXbdKL7sEzE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEppEv) +STUB( + "zXcwDHvTVKI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("zXdVl2D7dUk", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEED1Ev) +STUB( + "zXfczrjKgEQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE3endEv) +STUB( + "zXhbssGMUtc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE7popBackEv) +STUB("zXiD0GC9Vh8", _ZNK9Inspector15AsyncStackTrace8isLockedEv) +STUB("zXqcE0fizz0", sceHttpsUnloadCert) +STUB("zXukItkUuko", sceNpManagerIntLoginValidateKratosAuthCode) +STUB("zXvd6iNyfgc", sceSslConnect) +STUB("zXxrg22n7xM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUserC2Ev) +STUB("zY3+DACnnfE", _ZNK3sce2Np9CppWebApi7Matches2V118CreateMatchRequest19expirationTimeIsSetEv) +STUB( + "zY7Os41ugBw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEppEi) +STUB("zYD6ZtYhj9A", + _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody21unsetTicketAttributesEv) +STUB("zYEd3EEVrNI", monoeg_g_markup_parse_context_free) +STUB("zYHryd8vd0w", _ZNSt7codecvtIDsc9_MbstatetED0Ev) +STUB("zYJ-O9gzCLE", mono_aot_Microsoft_CSharpunbox_trampoline_addresses) +STUB("zYLz0S-xya0", RSA_private_decrypt) +STUB("zYN+RSpoAgo", sceIduUtilGetDownloadState) +STUB( + "zYPo9bSYZlM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEaSERKS9_) +STUB("zYTCgEvUBxU", + _ZNK3sce2Np9CppWebApi14SessionManager2V127ResponsePlayerSessionPlayer12getAccountIdEv) +STUB( + "zYXXiOm1coY", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats22setMatchCompletionRateERKNS1_6Common12IntrusivePtrINS3_19MatchCompletionRateEEE) +STUB("zYbDjIOq1ms", _ZN9Inspector21InspectorRuntimeAgent26disableControlFlowProfilerERN3WTF6StringE) +STUB("zYcY-IzcDKs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEixEm) +STUB("zYdHFbS40bA", + _ZN7WebCore14ScrollableArea19willRemoveScrollbarEPNS_9ScrollbarENS_20ScrollbarOrientationE) +STUB( + "zYiF3Eb4iE4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEplEm) +STUB("zYqwC5u+u8w", + _ZN7WebCore15GraphicsContext21setCompositeOperationENS_17CompositeOperatorENS_9BlendModeE) +STUB( + "zYttnqIaAS4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEneERKS9_) +STUB("zYxeSaZ1luk", _ZTVN9Inspector24NetworkBackendDispatcherE) +STUB( + "zZ49bdPVQAo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEEptEv) +STUB("zZ9omrpUunw", + _ZN3sce7Toolkit2NP2V28Matching11refreshRoomEPKNS3_12Notification11RefreshRoomEPNS3_4RoomE) +STUB( + "zZC4jeTG-XE", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB( + "zZGBiJPffo0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEaSERKS7_) +STUB( + "zZGmO0+EDao", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEneERKS9_) +STUB("zZHQ8k5tC40", _ZN7WebCore12PrintContext13numberOfPagesERNS_5FrameERKNS_9FloatSizeE) +STUB( + "zZLxTvE17k4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEaSERKS9_) +STUB("zZMO9pBSMaw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEEppEi) +STUB( + "zZOForuHIok", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEE3getEv) +STUB("zZQD3EwJo3c", sceFontDestroyGraphicsService) +STUB("zZRJ8kGwFV8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEE3getEv) +STUB("zZS92GP7Dg0", WKSerializedScriptValueGetInternalRepresentation) +STUB("zZSprI560pg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEE7get_refEv) +STUB("zZUqSZXlTpY", _ZN3sce2Np9CppWebApi11UserProfile2V16Avatar8unsetUrlEv) +STUB( + "zZbcW67WQ6E", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEneERKS9_) +STUB("zZdK5+6pGfo", _ZN7WebCore13TextureMapper6createEv) +STUB("zZj313J34FY", _ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest17inGameRosterIsSetEv) +STUB( + "zZqT68GzqAs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEC1Ev) +STUB( + "zZwQkcoEExY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEED2Ev) +STUB("za4xJfzCBcM", sceHmdGet2dVrCommand) +STUB("za50kXyi3SA", _ZNSt16nested_exceptionD0Ev) +STUB("za62OqYDt2g", mono_aot_I18N_Westjit_code_start) +STUB( + "zaBrfEB8ElY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEEdeEv) +STUB("zaG6EZmCuxM", sceBgftServiceDownloadResumeTask) +STUB( + "zaHL1KJzRi0", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "zaJtZY2wUEY", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody22setDisableSystemUiMenuERKNS1_6Common6VectorINS5_6StringEEE) +STUB("zaKEz6GvobM", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V18VariableD2Ev) +STUB("zaOSeNU-x3A", mono_aot_System_Runtime_Extensionsunbox_trampolines) +STUB( + "zaTyaBC4nFs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE5beginEv) +STUB( + "zaVwoMWlbR4", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEiRNS2_10LibContextEPT_m) +STUB( + "zabZjcS+kPk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEixEm) +STUB("zadJ2FWJud4", WKArrayCreateAdoptingValues) +STUB( + "zakO956WX5Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEE5resetEPS9_) +STUB("zap-HZc2kVw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEaSERS7_) +STUB( + "zatGJvWWWew", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEptEv) +STUB("zaz2l8nwNQM", _ZN9Inspector18InjectedScriptHost7subtypeEPN3JSC9ExecStateENS1_7JSValueE) +STUB( + "zb+ObDRqUOE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEC1Ev) +STUB("zb3436295XU", _ZNSt9type_infoD2Ev) +STUB("zb3JJZUdPXE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116JoinableUserTypeEEppEv) +STUB("zb7Jwpf4AUE", _ZTSDh) +STUB("zb9BwXixLGQ", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence12Notification14PresenceUpdateEEC1Ev) +STUB("zb9MeGIQHgk", _ZN3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap12setAccountIdERKm) +STUB( + "zbAhDw2qpdM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEED1Ev) +STUB( + "zbDL46ODZQU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEmmEi) +STUB("zbDW39JL4HU", _ZN9Inspector17ScriptDebugServerdaEPv) +STUB("zbKF-ejbR0Q", sceVoiceChatRequestDeletePlayerSessionVoiceChatChannel) +STUB("zbLvDhUY9UM", _ZN7WebCore8IntPointC1ERKNS_7IntSizeE) +STUB("zbNxHb+tC4g", _ZN3sce7Toolkit2NP22UpdateAttributeRequestC2Ev) +STUB( + "zbRPzWJe1hg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("zbRmW1H0Pj0", _ZN3sce2Np9CppWebApi15Personalization2V15Error14setReferenceIdEPKc) +STUB( + "zbTyWDC+P40", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEE11release_refEv) +STUB("zbliTwZKRyU", _ZN3sce2npneERKNS0_13NpTitleSecretES3_) +STUB("zbnJUYvGHlc", _ZN3sce7Toolkit2NP2V210Tournament25OneVsOneTournamentDetailsD2Ev) +STUB("zboqmwdgMc4", ucsdet_close_59) +STUB("zbqe0MhGE9w", mono_aot_ReactNative_Components_Vshjit_code_end) +STUB( + "zbrc+7gmwrg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "zbuhBzUc-cg", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "zc+YjUnp-RQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE8copyFromERKS9_) +STUB("zc0zfEAQRBM", _ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody13locationIsSetEv) +STUB( + "zc4QhcERzsk", + _ZN9Inspector26InspectorBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "zc4gMADxk94", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "zcD4sFqrU4U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEED1Ev) +STUB("zcD6WcvPfrs", _ZN9Inspector21InjectedScriptManagernaEmPv) +STUB( + "zcF9lnsVLIg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEmmEi) +STUB("zcFzSvY7Lmc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEdeEv) +STUB("zcG3MCGlhu4", uprv_decNumberCopy_67) +STUB( + "zcJJkgJHnK4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEED2Ev) +STUB("zcTHbCw69WE", _ZN3sce7Toolkit2NP2V27NpUtils7Request17CheckAvailabilityC1Ev) +STUB( + "zcUoz9K41Cw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEC2Ev) +STUB( + "zcWamuS-M80", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("zcYxoKYeQSM", jinit_merged_upsampler) +STUB( + "zcZHqRXNWfc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEptEv) +STUB("zccQaiAKfeI", il2cpp_set_commandline_arguments) +STUB("zccRzonVGec", _ZNK7WebCore11FrameLoader16outgoingReferrerEv) +STUB( + "zcem8HE4-gk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB("zcfZQyM7eAE", _ZNK3sce4Json5Array5frontEv) +STUB("zchVMt4ZlL4", _ZN7WebCore8SVGNames16units_per_emAttrE) +STUB( + "zcjQTXu7bg0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEEC1ERSA_) +STUB( + "zcjhWD6gTFo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE5beginEv) +STUB("zck+6bVj5pA", nan) +STUB("zcmEKghdRNU", _ZN3sce7Toolkit2NP2V28Commerce8ProductsC2ERKS4_) +STUB( + "zcrwWIakGno", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEC2ERKS7_) +STUB("zcvf3sc8O-U", sceApplicationCrashSystemProcess) +STUB( + "zcvlPI4vgnc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "zcwRrm-4KtQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEED1Ev) +STUB("zcyv1BcVoYc", _ZN7WebCore18ParsedContentRangeC2Elll) +STUB( + "zd3EU-HBSf8", + _ZN9Inspector21HeapBackendDispatcherC1ERNS_17BackendDispatcherEPNS_28HeapBackendDispatcherHandlerE) +STUB("zd4oVXWGD2Y", sceShellCoreUtilSetGpuLoadEmulationModeByAppId) +STUB("zd7CtmDZAhQ", _ZN17ScePssCameraOrbis4OpenEP16ScePssCameraSizej) +STUB("zd9ns0ChOTg", __increment_D2A) +STUB( + "zdAttXWZrW0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "zdBACSMu8qc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "zdBSfq05ojg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEmmEv) +STUB("zdCex1HjCCM", _ZTVSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE) +STUB("zdDT5zA70UE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEEC1EPS6_) +STUB( + "zdFw3mZYt7c", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE8capacityEv) +STUB("zdJ3GXAcI9M", __divsi3) +STUB("zdKa8rNTi2s", WKWebsiteDataStoreResetQuota) +STUB("zdRXyt-65kA", _ZN3sce2np13RingBufMemory6IsInitEv) +STUB( + "zdRdroJEUhE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("zdSsGpN+fyM", + _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_10AudioTrackE) +STUB("zdX1bs4u4m0", _ZN7WebCore18TextureMapperLayer13setAnimationsERKN7Nicosia10AnimationsE) +STUB( + "zdXBn69ZdwY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEC2EPS6_PNS2_10LibContextE) +STUB("zdXuWMxjzEU", _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35ErrorD1Ev) +STUB("zdYdKRQC3rw", sceFontGraphicsExchangeResource) +STUB("zdaF5N-Xe2M", __sys_debug_init) +STUB("zdgiIPRqET4", sceVrSetupDialogTerminate) +STUB("zdiM3wxIsUY", uenum_unext) +STUB( + "zdtHAyCKF4E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE4sizeEv) +STUB("zdtXKn9X7no", sceHttp2SetCookieRecvCallback) +STUB( + "zdueXFYI4fM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEEC1ERKSA_) +STUB("ze0ky5Q1yE8", sceSystemStateMgrGetCurrentState) +STUB( + "ze2nQ4lK7Cg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEppEi) +STUB("ze4kWDwPjso", _ZN4Manx9WorkQueue6createEPKc) +STUB( + "ze85Wd+hNyc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEED2Ev) +STUB( + "ze9jrNxp7Y0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB("zeOjcvFuiJc", delegate_virtual_invoke_imt_m_18_p) +STUB("zePYFs8UtNw", sceFiosPathncmp) +STUB("zeTWL++Uiv0", WKDatabaseManagerGetDatabaseDetailsCreationTimeKey) +STUB( + "zeaFfOQO308", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC1ERKS8_) +STUB("zeeK9qCn3pE", u_isprint_59) +STUB("zejy08lV0fE", _ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody12unsetPlayersEv) +STUB("zek4fVO9RPw", sceAppInstUtilAppGetAddcontNum) +STUB("zemLlPNbl-g", _ZN3JSC26createIteratorResultObjectEPNS_14JSGlobalObjectENS_7JSValueEb) +STUB( + "zemxp9PndxE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEE3getEv) +STUB("zepqHjfGe0M", _ZN3sce2np8WorkItem14FinishCallbackEv) +STUB("zesk2cm-12I", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead23unsetSupportedPlatformsEv) +STUB("zetC8Tp1S8w", FT_Set_MM_Blend_Coordinates) +STUB( + "zevFdK2mpc0", + _ZN9Inspector23CanvasBackendDispatcher33setRecordingAutoCaptureFrameCountElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("zezfYI2+DWA", scePerfPmcOpen) +STUB( + "zf2lVtuMncg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEC1EPKS9_) +STUB( + "zf3p0-6YMnM", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetrics8fromJsonERKNS_4Json5ValueE) +STUB("zf4+IDdC57s", WKPageHandleMouseEvent) +STUB( + "zf8lEDEwkfE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEmmEi) +STUB( + "zfA1o0NBo98", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEmmEv) +STUB( + "zfB4P+MGWWA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE5clearEv) +STUB("zfHQn-D9dk4", vm_send_SetWriteBarrier) +STUB("zfMQ8VGNv7o", _ZN12video_parser5vpcom4OpenE) +STUB("zfRDx10cJj4", u_strCompare_67) +STUB("zfSj4nfmhN4", _ZN9Inspector22InspectorDebuggerAgentC2ERNS_12AgentContextE) +STUB( + "zfa-TLIeIMs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEdeEv) +STUB("zfcxg-ewMK8", sceAgcDcbRewind) +STUB("zfp+RAzI+Cg", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate11unsetGlobalEv) +STUB("zfsUWHtCz8M", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEE7get_refEv) +STUB("zfvBGft4XrY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEC1Ev) +STUB( + "zg2jQz-Ox9M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEE5resetEPS9_) +STUB("zg3vLuclpKE", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V19RatingApi21ParameterToPostRatingC1Ev) +STUB("zg4V0sEwG4o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEC1Ev) +STUB("zg6u-N6Otxs", sceAgcDcbQueueEndOfShaderActionGetSize) +STUB("zg7exiteekI", _ZN3WTF37parseDateFromNullTerminatedCharactersEPKcRbRi) +STUB("zgD0fDO3nh0", _ZN7WebCore12PrintContext9spoolPageERNS_15GraphicsContextEif) +STUB("zgDj49uMFxw", _ZN7WebCore20LegacySchemeRegistry36allURLSchemesRegisteredAsCORSEnabledEv) +STUB( + "zgRB1FNSWf4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEE3getEv) +STUB( + "zgTDir-Kpa0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEC2Ev) +STUB("zgTEX-tEz88", GCC_except_table164) +STUB( + "zgV90xqdo0s", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE8capacityEv) +STUB("zgXifHT9ErY", sceVideoOutIsFlipPending) +STUB("zgc1ua7bweY", _ZNK3WTF6String8toIntPtrEPb) +STUB("zgcGWjoLj+A", _ZN3sce7Toolkit2NP2V211SharedMedia7Request14GetScreenshotsC1Ev) +STUB("zgdoEsexgpk", _ZN3WTF10TextStreamlsEf) +STUB("zgfjonBihuw", _ZN3sce7Toolkit2NP28GameCustomDataMessageRequestC2Ev) +STUB( + "zgfxjrrn70A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEC2EPS6_PNS2_10LibContextE) +STUB("zgiBwE5awBo", _ZN3sce2Np9CppWebApi6Common9RefObjectC2Ev) +STUB( + "zgmbxB+d8Gw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("zgsf+dRKz-s", _WGetint.digits) +STUB("zgt5jBUZjPw", WKContextSetMaximumNumberOfProcesses) +STUB("zguOEvG9DWs", _ZNK7WebCore9TimerBase16nextFireIntervalEv) +STUB("zh-nQ-UtuvE", _ZN3WTF13StringBuilder6appendEPKhj) +STUB( + "zh1Aa8BNoYU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEppEi) +STUB("zh2KsQZlAN4", sceNpManagerIntRemoveSigninStateCallback) +STUB("zh9Gn2BvJMg", Zero) +STUB("zhAIFVIN1Ds", __multi3) +STUB("zhN1XL9nbkY", JVM_GetCPFieldClassNameUTF) +STUB( + "zhfRIdpWhX4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEE3getEv) +STUB("zhfxTlKXm48", _ZN3sce2Np9CppWebApi15ProfanityFilter2V223FilterProfanityResponse9setStatusEPKc) +STUB("zhn3KOT4QNQ", + _ZN7WebCore16ScriptController17canExecuteScriptsENS_33ReasonForCallingCanExecuteScriptsE) +STUB("zhpPtt-dFNc", g_slist_append) +STUB( + "zhs8yEMn8No", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("zhzogJszFCs", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEE11release_refEv) +STUB( + "zi-eyYOv8Yw", + _ZN7WebCore19ResourceRequestBase30addHTTPHeaderFieldIfNotPresentENS_14HTTPHeaderNameERKN3WTF6StringE) +STUB("zi560G+L1w4", uhash_removeElement_67) +STUB("zi7wi7oi1HE", _ZTVN7WebCore37BasicComponentTransferFilterOperationE) +STUB("ziEAh6tUUQQ", mono_aot_Sce_PlayStation_HighLevel_UI2plt_end) +STUB("ziPDcIjO0Vk", sceImeGetPanelSize) +STUB("ziQTe-4++Kw", + _ZN3sce2Np9CppWebApi7Matches2V123JoinMatchRequestFactory7destroyEPNS3_16JoinMatchRequestE) +STUB( + "ziRfD9bmDqk", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats12setBandwidthERKNS1_6Common12IntrusivePtrINS3_9BandwidthEEE) +STUB("ziVA3whp3p4", sceAgcRewindPatchSetRewindState) +STUB("ziVGnouCLtg", sceNetApctlGetInfo) +STUB( + "ziX+Gbs-PE8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE8capacityEv) +STUB( + "ziZHkZMlOf4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("zid2aggMils", sceSdecQueryMemorySw) +STUB("zifARKK+45o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEdeEv) +STUB("ziiOdlGJLMY", sceDeci4hDrfpChstat_chmod_fuse) +STUB( + "zijdiG-hmig", + _ZN3JSC12StringObject18getOwnPropertySlotEPNS_8JSObjectEPNS_9ExecStateENS_12PropertyNameERNS_12PropertySlotE) +STUB("zijlNB4cxv4", mono_btls_x509_lookup_new) +STUB( + "zilEarSbDx0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEixEm) +STUB("zio+5O5L-4M", _ZTVN12video_parser10cVideoPathE) +STUB( + "ziqzqniL9hk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEE11get_deleterEv) +STUB( + "zivL1SD9TBs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEEC1ERSA_) +STUB("ziwWade4cVQ", _ZNK7WebCore12ChromeClient18scrollRectIntoViewERKNS_7IntRectE) +STUB("zixowWHO-dY", utrans_openU_67) +STUB("zj6w6cG8ggA", _ZN3sce7Toolkit2NP34DetailedProductInfoListInputParamsC2Ev) +STUB("zjB-cbY-OcE", WKURLCopyLastPathComponent) +STUB( + "zjLzzgsOdrQ", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM23AccessibilityProperties16LiveRegionStatusEEEN3WTF8OptionalIT_EERKNS6_6StringE) +STUB( + "zjOYFNW9IPE", + _ZN9Inspector15ScriptArguments6createEPN3JSC14JSGlobalObjectEON3WTF6VectorINS1_6StrongINS1_7UnknownELNS1_30ShouldStrongDestructorGrabLockE0EEELm0ENS4_15CrashOnOverflowELm16ENS4_10FastMallocEEE) +STUB("zjTFAbmrB3Y", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124BandwidthUpstreamMetrics10setAverageERKi) +STUB( + "zjTIlgkSomg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEcvbEv) +STUB("zjVJtbnq1Jc", __asan_report_load1) +STUB("zjgjbkK2y9M", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEED2Ev) +STUB( + "zjhvp2arwRE", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124BandwidthUpstreamMetrics20setStandardDeviationERKi) +STUB("zjiDHjIxU0M", Java_java_lang_reflect_Array_multiNewArray) +STUB( + "zjm6ynhq8SE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEEcvbEv) +STUB("zjogjCD8WMI", uset_close_67) +STUB( + "zjqTmP0ST9A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE5beginEv) +STUB( + "zjwDWUYFBt0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEdeEv) +STUB( + "zjxVzMdu4N4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEC2EPS6_PNS2_10LibContextE) +STUB("zjxjqNfga3Y", sceCustomMusicCoreBgmSetAudioVolume) +STUB("zk6c65xoyO0", sceNpWebApiCreateContextA) +STUB("zk7Es711EV8", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry7getRankEv) +STUB( + "zk7xoL5RKIg", + _ZN3sce2Np9CppWebApi14SessionManager2V168PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyFactory7destroyEPNS3_61PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyE) +STUB("zkAmOUm-R00", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEEdeEv) +STUB("zkCx9c2QKBc", _ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED1Ev) +STUB("zkEcdYH+3-0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEC1ERKS7_) +STUB( + "zkGRvE1yBMg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEEaSERKSA_) +STUB("zkK8n-lhgF4", RegisterPrivateMessage) +STUB("zkLhehDz0Mc", _ZN7WebCore22FontCascadeDescriptionC2Ev) +STUB("zkUC74aJxpE", _ZNKSt7_MpunctIwE16do_negative_signEv) +STUB("zkWd4PjrY6A", + _ZN3sce7Toolkit2NP2V27Session21ChangeableSessionData32SESSION_CHANGEABLE_DATA_MAX_SIZEE) +STUB("zkZ87olRiNU", _ZNK7WebCore29PerspectiveTransformOperation19isRepresentableIn2DEv) +STUB("zkaNI1552m4", _ZN15AbstractStorage4Item6RenameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("zkbV8yksKAg", _ZN3JSC15WeakHandleOwnerD0Ev) +STUB("zkg+kaBk8Dw", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_13NetStateBasicEE3getEv) +STUB("zkhfTgB1ABM", _ZNK7bmalloc11IsoTLSEntry4sizeEv) +STUB( + "zkmFMahOwaY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEC1Ev) +STUB("zkmLrEtTrOk", _ZN3sce3pss4core8graphics14NativeGraphics20AllocateSystemMemoryEjjPv) +STUB("zknJJRS5drs", + _ZN3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectator11setPlatformEPKc) +STUB( + "zkpMnOayee4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE10setContextEPNS2_10LibContextE) +STUB( + "zkpqAYyDL5o", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC1ERKSC_) +STUB("zktbzr-oSy0", _ZN7WebCore12ChromeClient34notifyScrollerThumbIsVisibleInRectERKNS_7IntRectE) +STUB( + "zkvFZH-Q7Qw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEC1EPS8_) +STUB( + "zkxYThoWn1E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE6resizeEj) +STUB("zl+vBWy7l7g", rgctx_fetch_trampoline_mrgctx_106_p) +STUB( + "zl-LNegO4Po", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEE3getEv) +STUB("zl35YNs9jnI", sceNetResolverStartNtoa6) +STUB("zl51JMf2kGo", sceCesUtf32leToEucCn) +STUB( + "zl52IDSIVks", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE6resizeEj) +STUB( + "zl5u02vtDlE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEplEm) +STUB("zl7hupSO0C0", sceKernelSendNotificationRequest) +STUB("zl8HXebvmiI", uprv_getMaxValues_67) +STUB("zl8amn17Exk", _ZN3sce3Xml18SerializeParameterC1Ev) +STUB("zlC2eo7bXAs", _ZN7WebCore17HTMLSelectElement20optionSelectedByUserEibb) +STUB("zlIEk1HjPsI", rgctx_fetch_trampoline_general) +STUB( + "zlIWMQUnsf8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEED2Ev) +STUB("zlMZOG3VDYg", SSL_ioctl) +STUB( + "zlOFiZDuvkk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "zlS+hnNf1vE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE5emptyEv) +STUB( + "zlTUFBU1Ig8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEC2Ev) +STUB( + "zlTeIgUlipQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEE11get_deleterEv) +STUB( + "zlTu6xpPdAw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE5emptyEv) +STUB("zlWHf6iA+G0", mono_aot_Sce_Vsh_Messagesjit_got) +STUB("zlXqkzPY-ds", sceSystemServiceTickVideoPlayback) +STUB("zlYFwFq6GV8", WKPreferencesSetFileAccessFromFileURLsAllowed) +STUB("zlZiUttYnZI", _ZN7WebCore19toAutofillFieldNameERKN3WTF12AtomicStringE) +STUB( + "zlc-5UD3z8U", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEneERKS9_) +STUB("zlfEH8FmyUA", _Stoul) +STUB("zloBP1Yo108", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEptEv) +STUB("zlpy-PIFmvc", _ZN7WebCore15JSDOMWindowBase7destroyEPN3JSC6JSCellE) +STUB( + "zlrgxWJoR4U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEC1EPS6_PNS2_10LibContextE) +STUB("zlsr9mUGhro", sceNpUniversalDataSystemIntDeleteAllRecord) +STUB( + "zm+niwNQwBo", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSession35hasxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB("zm-C3Oi6IQg", mono_method_desc_from_method) +STUB("zm28lXJU440", _ZNK9Inspector18InjectedScriptBase10hasNoValueEv) +STUB("zm2i2w7R9tU", _ZN9Inspector31NetworkBackendDispatcherHandlerC2Ev) +STUB("zm7AblpGSLk", WKBundleClearResourceLoadStatistics) +STUB("zm7DYNMbcEU", _ZN7WebCore15PasteboardImageD1Ev) +STUB( + "zmBdLABEt94", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB("zmIG3Jx3Cbc", _ZN7WebCore11MediaPlayer29acceleratedCompositingEnabledEv) +STUB("zmLCNBoISQE", uregex_getFindProgressCallback_67) +STUB( + "zmLftEGbspQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("zmMWRKwedmw", uloc_toLanguageTag) +STUB( + "zmN31MrlBkM", + _ZN3sce2Np9CppWebApi14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerC1EPNS1_6Common10LibContextE) +STUB("zmOmSLnqlBQ", _ZN3sce2np9WorkQueue9CancelAllEi) +STUB("zmSVzK3uhDE", _ZNK3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error11reasonIsSetEv) +STUB( + "zmT8rFatO30", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("zmUqZyLpEhs", SystemDialogInit) +STUB("zmW6w78BlDg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEEneERKS6_) +STUB("zmW9l9-fo9A", MvpHttpInit) +STUB("zmdWH6IM42w", _Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm14CpcPerfCounterE) +STUB( + "zmkuipnqy3Y", + _ZN9Inspector28DOMDebuggerBackendDispatcher29removeEventListenerBreakpointElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("zmtI0YFu-VU", _ZN9Inspector27LayerTreeFrontendDispatchernwEmPv) +STUB("zmuNxmhKMPw", _ZN12video_parser13cVideoMetaVWG14getChapterInfoERjPNS_11VpChapter_tE) +STUB("zmujoSR7YuA", _ZN7WebCore16NetworkSendQueue5clearEv) +STUB("zmw2uVSEj94", sceAgcDriverUserDataWriteSetMarker) +STUB("zmweoslW02I", mono_aot_ClassLibrary1unbox_trampolines) +STUB("zmxAXmg0bJ4", utrie2_internalU8NextIndex) +STUB("zmxl1XK4I3s", _ZN9Inspector19InspectorAuditAgent5setupERN3WTF6StringEPKi) +STUB("zmymoDNsdKM", glUniform3i) +STUB("zmzMriMPMag", sceCesUtf16StrGetIso2022Len) +STUB("zmzXbCRHFGI", fuse_fs_ftruncate) +STUB("zn1GN6GVKwY", GetAuthorizationCode) +STUB( + "zn3xaqOKq84", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEplEm) +STUB("zn4Ar03CuZM", g_list_remove_link) +STUB("zn4MCC35uZw", _ZN9Inspector27AnimationFrontendDispatcherC1ERNS_14FrontendRouterE) +STUB( + "zn6dc7j9NPg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "znDbtfaBOu4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEC2Ev) +STUB("znFHu15HXEM", sceNpGriefReportReadGroupMessageFile) +STUB("znI3q8S7KQ4", _sceUltUlthreadCreate) +STUB("znJpNAsiZ6s", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110PlayerTypeEEC2Ev) +STUB("znO6Mqpf5YI", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V122UploadDataResponseBody11getObjectIdEv) +STUB( + "znPDs6G6m+I", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEplEm) +STUB("znQfHvmsccU", mono_aot_Sce_CloudClient_App_Platformjit_code_start) +STUB("znS+s4RFPNk", sceApplicationSpawn2) +STUB("znTNnkjSDjI", mono_aot_Sce_Vsh_JsExtensionjit_code_end) +STUB("znTl0-ypsj8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEC2ERKS7_) +STUB("znTrJH9b2h8", DTLSv1_server_method) +STUB("znVOxkSVnXU", _ZNK3JSC6JSCell11toPrimitiveEPNS_9ExecStateENS_22PreferredPrimitiveTypeE) +STUB( + "znVvRh5M+Lc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEixEm) +STUB( + "znXp1VoblNA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEC2EPS8_) +STUB("znaWI0gpuo8", scePadGetTriggerEffectState) +STUB( + "zneVpuBQTPo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEC2Ev) +STUB("znfzNa3xFuc", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15NpSessionMemberEED2Ev) +STUB("zngUTKZc6FQ", sceUlpMgrVshGetStatCmd) +STUB( + "znmby8RHXxk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEaSERKS9_) +STUB( + "znsFbouEp0k", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEdeEv) +STUB( + "znvUpuY8Abg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE5beginEv) +STUB( + "zny-S89Df1Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEEC1Ev) +STUB("zo2La0t9A5E", png_get_io_ptr) +STUB("zo4G5WWYpKg", sceNpPartyRegisterPrivateHandler) +STUB( + "zo9EMpWJM-I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEC2Ev) +STUB( + "zo9b2rva5aM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEE7get_refEv) +STUB("zoCPLeMXy0A", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13WhoLikedStoryEEC1Ev) +STUB( + "zoCSwiVp3gs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("zoEw5DysaTo", _ZNK7WebCore24CoordinatedGraphicsLayer9coverRectEv) +STUB( + "zoIWRIwqlGE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEEC1Ev) +STUB("zoIu9W2wWcw", _ZN7WebCore9SampleMap5clearEv) +STUB( + "zoP+wGrmWfA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEdeEv) +STUB( + "zoWI7kskQRw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEEC1ERSA_) +STUB( + "zoe12gBdpeA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEixEm) +STUB("zogPrkd46DY", strxfrm) +STUB("zomDC7JDB24", s20) +STUB( + "zomvAQ5RFdA", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERPv) +STUB("zonHaB54R9U", _ZN3JSC13BooleanObjectC2ERNS_2VMEPNS_9StructureE) +STUB("zonyi51GcZw", WKCredentialCreateWithCertificateInfo) +STUB( + "zoqYey1FiOA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEaSERKS9_) +STUB( + "zosLcv8iPi8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEmmEv) +STUB( + "zovjRX79KtU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEEaSERKSA_) +STUB("zox2sOpGPy0", unorm2_getNFKDInstance_67) +STUB("zoxb0wEChEM", sceContentDeleteInitialize) +STUB( + "zp-8udvcWSE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEdeEv) +STUB("zp-WhNc0GWc", _ZN7WebCore9HTMLNames14novalidateAttrE) +STUB("zp0bP404ycw", mono_btls_ssl_read) +STUB("zp1FwzOY2+4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEaSERKS7_) +STUB( + "zp1qLAqgn34", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEeqERKS9_) +STUB( + "zp20uanch10", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEC1EPNS2_10LibContextE) +STUB( + "zp3MPoXcRaw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEC1EPS8_) +STUB( + "zp3j2YHPEas", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEeqERKS9_) +STUB( + "zp5pLVG32rw", + _ZN7WebCore24DocumentMarkerController13filterMarkersERKNS_11SimpleRangeERKN3WTF8FunctionIFbRKNS_14DocumentMarkerEEEENS4_9OptionSetINS6_10MarkerTypeEEENS_32RemovePartiallyOverlappingMarkerE) +STUB("zp6YtG3sS0I", mono_metadata_signature_alloc) +STUB( + "zpDAexC47EA", + _ZN3sce2Np9CppWebApi14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBody17setPlayerSessionsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_31JoinedPlayerSessionWithPlatformEEEEE) +STUB( + "zpDIIeT+ZQY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE4initEv) +STUB("zpJ2bR7uqdM", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEEdeEv) +STUB( + "zpLq+kG0GLs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEeqERKS9_) +STUB("zpNYH5r0tCs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEE7get_refEv) +STUB("zpOIOqhdlMA", _ZN3sce7Toolkit2NP15AppSTLAllocatorIiE9constructEPiRKi) +STUB("zpP-lfAo7RQ", _ZN7WebCore20CachedResourceLoader31garbageCollectDocumentResourcesEv) +STUB("zpPQkEySyxM", sceCesRefersUcsProfileCp864) +STUB("zpVCZPtswnc", + _ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession19getUsePlayerSessionEv) +STUB( + "zpVqxjmDJLM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEppEi) +STUB( + "zpYz1pjYsLE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEneERKS9_) +STUB("zpiPsH7dbFQ", sceNpWebApi2AbortRequest) +STUB("zptosxCqOgw", _ZN9Inspector26TimelineFrontendDispatcher16recordingStartedEd) +STUB("zpuDFfjHETM", WKPreferencesCopyCursiveFontFamily) +STUB("zpy7LnTL5p0", __kernel_sin) +STUB("zpyebY9tjPM", _ZNK7WebCore6Editor7Command15isTextInsertionEv) +STUB( + "zpytJpxCtzM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEEC1EPS8_PNS2_10LibContextE) +STUB("zpzV5xDLsZ4", mono_btls_pkcs12_get_certs) +STUB( + "zq+qJ57PqpQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEED2Ev) +STUB("zq45SROKj9Q", sceUserServiceSetSaveDataTutorialFlag) +STUB("zq5QioRR36Y", _ZN7WebCore9HTMLNames14aria_labelAttrE) +STUB( + "zq5zv1pV1So", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUser17getnpServiceLabelEv) +STUB("zq6TRaNNGg4", + _ZNK3sce2Np9CppWebApi14SessionManager2V122GameSessionPushContext16getPushContextIdEv) +STUB("zqASRvZg6d0", _LNan) +STUB("zqEvgYYZ7yw", _ZN19JITSharedTextMemory27shared_malloc_max_footprintEv) +STUB( + "zqGeUoVYSxw", + _ZN15AbstractStorage17DailymotionFolder9NewFolderERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_6FolderEE) +STUB("zqJhBxAKfsc", __stdoutp) +STUB("zqOGToT2dH8", _ZTIPKs) +STUB("zqQWBy7O-00", u_memrchr) +STUB("zqVKRM554Ds", _ZN3sce7Toolkit2NP2V28Matching12Notification14NewRoomMessageC2ERKS5_) +STUB("zqc3B1lvZfI", ures_openNoDefault) +STUB("zqcsrTW-umY", d2i_PKCS7) +STUB("zqd9o-7JtJA", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE6resizeEj) +STUB("zqe0Dw9BCpc", FcPatternFormat) +STUB("zqg8Dqiwkl4", + _ZN3sce2Np9CppWebApi7Matches2V17Subtask15setAvailabilityERKNS3_19SubtaskAvailabilityE) +STUB("zqhg+QuI9Zk", ubidi_getParaLevel_67) +STUB("zqjkZ5VKFSg", sceSystemServiceGetParentSocketForJvm) +STUB("zqmukclA+FU", _ZNK15AbstractStorage15FacebookContent13GetCapabilityEv) +STUB("zqnrK2T3+fM", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_34DetailedProductInfoListInputParams9ProductIdEEC1Ev) +STUB("zqqgK8OxnPQ", WKPreferencesSetInternalDebugFeatureForKey) +STUB("zqrHhDLSkNQ", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEED1Ev) +STUB("zqsgWAHMGy0", _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeINS1_11TusVariableEPvEED2Ev) +STUB("zqw-u2J6V0k", _ZN3sce7Toolkit2NP2V23TUS25TusDataStatusForCrossSaveD1Ev) +STUB("zqxvJ1GjxAA", sceDataTransferTargetAbortBindSavedata) +STUB( + "zqyJbLgab-w", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE6finishEv) +STUB("zqzjS4yvpZc", mono_utf8_validate_and_len_with_bounds) +STUB("zqzpiMbGPjk", _ZN3JSC17DebuggerCallFrame11callerFrameEv) +STUB("zr094EQ39Ww", __cxa_pure_virtual) +STUB("zr0d5c07u50", _ZTVN9Inspector15RemoteInspectorE) +STUB("zr16QO3R4+0", _ZN3sce2Np9CppWebApi11UserProfile2V15ErrorC2EPNS1_6Common10LibContextE) +STUB( + "zr1c4zGgkjY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEeqERKS9_) +STUB( + "zr2+MlM-ay4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEE11release_refEv) +STUB( + "zrBEg06jOjM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEE7get_refEv) +STUB( + "zrDT805HCuk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEixEm) +STUB( + "zrEp8lu3vAI", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEED1Ev) +STUB("zrIUDKZx0iE", sceCameraGetHue) +STUB("zrQI7NxivBQ", sceClSslGetSerialNumber) +STUB("zrRhCOIFxSM", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11InvitationsEE19setCustomReturnCodeEi) +STUB( + "zrT5+mz5i5A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEC2Ev) +STUB("zrUN909NIUM", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container12unsetVersionEv) +STUB( + "zrVMsaC5Zo8", + _ZNK7WebCore10PluginData34getWebVisibleMimesAndPluginIndicesERN3WTF6VectorINS_13MimeClassInfoELm0ENS1_15CrashOnOverflowELm16EEERNS2_ImLm0ES4_Lm16EEE) +STUB("zrWaWV6ltmE", sceVisionManagerGenerateRegisterUserDataFinalize) +STUB( + "zrWd+vz8UPU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB( + "zraletqLGAI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE21intrusive_ptr_add_refEPS9_) +STUB("zrm95g8viEA", rgctx_fetch_trampoline_mrgctx_73) +STUB("zrmR88ClfOs", _ZNSt6locale7_LocimpC2Eb) +STUB("zru8Zhuy1UY", sceUserServiceGetImeInputType) +STUB("zrwvlRfQ0Q0", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_14TrophyGameInfoEEC2Ev) +STUB("zrxfyCmnlBE", _ZN7WebCore6JSFile4infoEv) +STUB("zrxj3h66ScY", sceApplicationKickCoredump2) +STUB( + "zs-86pylwGU", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS5_INS7_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("zs1b1Y6IBdI", sceAudiodReportMasteringGetParams) +STUB("zs2x0c+f2hU", _ZN10Deprecated25ScriptCallArgumentHandlerC1EPN3JSC14JSGlobalObjectE) +STUB("zs3xXmdkZgY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEEC1Ev) +STUB("zs4i9SEHy0g", sceUserServiceSetKeyRepeatSpeed) +STUB("zs60MvClEkc", sceUserServiceGetEventCalendarType) +STUB("zs817D8+hPA", _Unwind_ForcedUnwind) +STUB( + "zs9MtG0Hs1s", + _ZN12video_parser17cVideoProfilerMp417_getAudioCodecAACER32ff4_play_audio_sample_entry_infoPvPNS_17VpAudioCodecAAC_tE) +STUB("zsJcWtE81Rk", sceUserServiceGetShareButtonAssign) +STUB( + "zsJczqdANTw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "zsKZKa3UWYE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEEaSERKSA_) +STUB( + "zsKpHtD+sj4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEE7get_refEv) +STUB("zsLlAeMeZJM", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE8copyFromERKS7_) +STUB("zsMzX135ofU", sceKernelGetAppInfoByAppId) +STUB( + "zsOqjXApJOQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearch8haslimitEv) +STUB("zsTvhCDrOjQ", __sys_netcontrol) +STUB("zsUmqFv3Lwk", sceNpTrophy2SystemGetTrophyGroupConf) +STUB("zsVbNbWPYzg", sceSpPthreadSetprio) +STUB( + "zsb-DqyS78k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEaSERS7_) +STUB( + "zsgfR4DoIEc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEC1Ev) +STUB("zsjL8QmtjdQ", _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse11unsetZoneIdEv) +STUB( + "zsjXVCIuVNo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEE7get_refEv) +STUB( + "zsnJHxXTB-E", + _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse15setInGameRosterERKNS1_6Common12IntrusivePtrINS3_20ResponseInGameRosterEEE) +STUB( + "zspoEGa3ns8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEC1ERS7_) +STUB( + "zsrHFLO0o8g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE5beginEv) +STUB("zsxq8S+s6og", sqlite3_interrupt) +STUB("zsycIG7Lxv8", _ZN7WebCore9HTMLNames21aria_keyshortcutsAttrE) +STUB("zt0a0bbge+w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEaSERS7_) +STUB("zt4LYf6rchQ", _ZN3sce7Toolkit2NP2V28Presence16PlatformPresence20MAX_SIZE_GAME_STATUSE) +STUB( + "ztCJ35iqz2M", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE18getResponseHeadersERSA_) +STUB("ztFmebpmDCY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament16RegisteredRosterEED2Ev) +STUB( + "ztFwCfq6KRM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE5emptyEv) +STUB( + "ztJZkOERbWI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEC1EPS8_) +STUB( + "ztJmcRVYce8", + _ZN3sce2Np9CppWebApi14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyC2EPNS1_6Common10LibContextE) +STUB( + "ztLITfz5fMs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEmmEv) +STUB( + "ztLPAeA0tjA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE21intrusive_ptr_add_refEPS9_) +STUB("ztNI+Mt+UoA", utf8_nextCharSafeBody) +STUB("ztNqqNCl1Tw", __sys_opmc_set_ctr) +STUB("ztPRp3gnFeo", _ZN3sce3Xml4Attr8setValueEPKNS0_6StringE) +STUB("ztTyvdGDypw", _ZN4Manx11MediaPlayer6createEPNS_17MediaPlayerClientE) +STUB("ztVjMJiz5ks", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament7BracketEED1Ev) +STUB("ztWW11yMTzU", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V18VariableC2EPNS1_6Common10LibContextE) +STUB( + "ztYU44quhIE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEixEm) +STUB("ztZBIqHXTi8", GCC_except_table106) +STUB("ztcLG495eZ0", _ZN7WebCore8SVGNames31color_interpolation_filtersAttrE) +STUB( + "ztcwNgwq75c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEED2Ev) +STUB("ztd0J2u9G7c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEmmEi) +STUB("ztdtXYywksE", _ZN7Nicosia5SceneC1Ev) +STUB( + "ztml3ftoBJY", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("ztoert0JFlI", + _ZN7WebCore24CoordinatedGraphicsLayer20setReplicatedByLayerEPNS_13GraphicsLayerE) +STUB("ztqH5qNTpTk", sceCameraCloseByHandle) +STUB("ztqIj-a6WsI", WKSecurityOriginGetHost) +STUB("ztvVfnQawjQ", _ZN7WebCore15AsyncFileStreamnaEm) +STUB("ztxZdb1IY+M", hb_font_set_ppem) +STUB( + "zu+NpJ6mvOY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("zu+kJHmQcbE", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_15TrophyGroupInfoEEC2Ev) +STUB("zu2fyrTeSqg", mono_property_set_value) +STUB( + "zu5QRkztjTM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE5clearEv) +STUB("zuCubBF5OZ8", + _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession30unsetReservationTimeoutSecondsEv) +STUB("zuLwl48uyYI", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEEptEv) +STUB( + "zuNMb3J-BOo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEEC1Ev) +STUB("zuPUJ9mkPe0", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Error6toJsonERNS_4Json5ValueEb) +STUB("zuPf4SsogPc", _ZN3JSC7Symbols38getMapIteratorInternalFieldPrivateNameE) +STUB("zuQqTYaKNl4", xmlStrndup) +STUB( + "zuTBQEWnwqQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEED1Ev) +STUB( + "zuVI1wtttBE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE6resizeEj) +STUB("zuW6UxRHTxQ", sceUlpMgrReqSuspend) +STUB( + "zuZ4ZCJtTKU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEC2Ev) +STUB("zuftnZ9BD9w", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS7TusDataEEC1Ev) +STUB("zugltxeIXM0", _ZSt15_sceLibcLocinfoPKc) +STUB( + "zuhD0xFjLp4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEC1EPS8_) +STUB("zul0o1q+gL0", fuse_session_exit) +STUB( + "zunhoocIbJY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("zurkNUps5o8", _ZN3sce2np9RefObject6AddRefEv) +STUB("zutcTfS-+cw", __hash_end) +STUB("zuxWAg3HAac", sceMoveResetLightSphere) +STUB("zv+cECZ-Oq4", _ZN3JSC10JSDataView6s_infoE) +STUB("zv1EMhI7R1c", _ZNKSt8numpunctIcE16do_thousands_sepEv) +STUB("zv2H93kZz-U", Java_java_lang_Float_floatToIntBits) +STUB("zv7EBvM-xCQ", _ZN9Inspector24CanvasFrontendDispatcherC1ERNS_14FrontendRouterE) +STUB( + "zv9FDHSv88k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEppEv) +STUB( + "zv9opN-N1P4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEeqERKS9_) +STUB("zvBc67GjA9A", _ZN3sce7Toolkit2NP2V211SocialMedia7Request12ActionLinkFbD1Ev) +STUB("zvIq6Rg+sec", WKPreferencesSetHiddenPageCSSAnimationSuspensionEnabled) +STUB("zvK3sRYJ4BY", rgctx_fetch_trampoline_mrgctx_68_p) +STUB("zvLDsefSYaQ", fuse_setup_common) +STUB( + "zvOHidIPUwE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEdeEv) +STUB( + "zvQvII6wEbw", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUser13isInitializedEv) +STUB("zvbdw+VaDnQ", _ZN7WebCore11MediaPlayer11isAvailableEv) +STUB("zvl6nrvd0sE", _Dsign) +STUB("zvvWMJWZYmk", _ZN9Inspector25ConsoleFrontendDispatchernwEmPv) +STUB("zvyKP0Z3UvU", sceVrTrackerGetPlayAreaWarningInfo) +STUB( + "zvyXC38k7NQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEEC1Ev) +STUB("zvzWA5IZMsg", sceNetResolverStartAton6) +STUB("zw+celG7zSI", sceRazorCpuPushMarker) +STUB( + "zw6E6FqHWRc", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionPropertiesaSERS5_) +STUB( + "zw6q3oVOk5E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEC1Ev) +STUB("zw6ysj-m+m4", JVM_NewArray) +STUB( + "zwBb0IHksGo", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13integer8IsSetEv) +STUB("zwC-pVt1RY4", sceMoveTrackerRecordStart) +STUB("zwDiN3-CRTA", _ZN3sce4Json5Value11s_nullarrayE) +STUB( + "zwG69HAT31Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE6resizeEj) +STUB("zwJXh4lxS5E", _ZN3sce7Toolkit2NP2V29Challenge7Request21GetChallengeThumbnailD1Ev) +STUB("zwKP6QVOb-A", rgctx_fetch_trampoline_mrgctx_100_p) +STUB("zwMGP3ASKMI", cairo_set_line_width) +STUB( + "zwU7HmDe5VQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE5beginEv) +STUB("zwV79ZJ9qAU", __fpclassifyl) +STUB("zwY0YV91TTI", sceGnmSubmitCommandBuffers) +STUB( + "zwanSYhyr6Q", + _ZN7WebCore22CacheStorageConnection19putRecordsCompletedEmONSt12experimental15fundamentals_v38expectedIN3WTF6VectorImLm0ENS4_15CrashOnOverflowELm16EEENS_14DOMCacheEngine5ErrorEEE) +STUB( + "zwbPj1mzJK0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("zwcNQT0Avck", _ZNKSt5ctypeIcE8do_widenEc) +STUB("zwcpjJ7WUgQ", sceVdecCoreQueryComputeResourceInfo) +STUB("zwqZKFMyqyg", _ZN3JSC16throwSyntaxErrorEPNS_9ExecStateERNS_10ThrowScopeERKN3WTF6StringE) +STUB("zwrYKbWfb9Y", _ZN7WebCore9HTMLNames12codetypeAttrE) +STUB("zwv1oIhLnjI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEEC2EPS6_PNS2_10LibContextE) +STUB("zwvAXAgGj84", _ZNK3WTF6String4utf8ENS_14ConversionModeE) +STUB( + "zwvThzS7r8U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEC1EPNS2_10LibContextE) +STUB("zx0jGj+nSIM", u_memcmp) +STUB( + "zx8WjtrSkaY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEE11release_refEv) +STUB("zx9n5GVq4pI", ubrk_open_67) +STUB( + "zxEFw9u9zBE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEplEm) +STUB("zxH6K4iZYM4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEaSERS7_) +STUB("zxHIZqmB-IE", WKBundleFrameEnableHTMLTile) +STUB( + "zxNcIXs-Wdo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEC1EPKS8_) +STUB( + "zxO0cyAx+98", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V129ConnectionQualityWiredMetrics6toJsonERNS_4Json5ValueEb) +STUB("zxXkp97At0s", fuse_lowlevel_notify_poll) +STUB("zxecOOffO68", vsyslog) +STUB("zxfZ6nZg3IM", _ZN3sce7Toolkit2NP2V27Session14InvitationDataD2Ev) +STUB( + "zxiuqO0vYWo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "zxkmXYkYZZs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEEC1Ev) +STUB( + "zxpp9+Nf46Y", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V318PsnWebErrorWrapper8fromJsonERKNS_4Json5ValueE) +STUB("zxq5Jv-hmY8", ulist_getNext_67) +STUB("zxs+Flq6LEY", scePlayReadyReaderClose) +STUB("zxsyxyiLthM", FTA_Add_Module_truetype) +STUB("zy3pxy0zp7M", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEEC1ERKS7_) +STUB("zy5AMBUbsfE", mono_property_get_object) +STUB("zy5YK4P7Ll4", __tsan_atomic16_compare_exchange_val) +STUB("zy9ivTre1ko", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEC1ERS7_) +STUB( + "zyC4p3vDAdI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEC2EPS8_) +STUB("zyCqcJqhpds", _ZN9Inspector20InspectorTargetAgentnwEm) +STUB("zyEjK7M--t8", + _ZN7WebCore14SchemeRegistry40setDomainRelaxationForbiddenForURLSchemeEbRKN3WTF6StringE) +STUB("zyFrOtG-5Jg", sceDataTransferTargetAbortEth0) +STUB("zyHY0hMqpQM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEEC2EPS6_) +STUB("zyT4syigGks", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V114ResultsVersionEEeqERKS7_) +STUB("zyTMmUiR2tQ", glGetQueryObjecti64vEXT) +STUB( + "zyZ3tnUzGh8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEneERKS9_) +STUB( + "zybg9S9ZOtE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEEC2ERSA_) +STUB("zyebgmQUnWY", glCompileShader) +STUB("zyezaHweY3U", FT_New_Size) +STUB( + "zyhNaY3RW6U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("zyhiiLKndO8", _ZNSt7codecvtIcc9_MbstatetE7_GetcatEPPKNSt6locale5facetEPKS2_) +STUB("zytPJruS5qI", _ZN7WebCore4Page21resumeAnimatingImagesEv) +STUB("zywJSk2ZkPo", mono_gc_reference_queue_new) +STUB("zz0053HDYL4", _ZN2GK9PlayerPSNC2Ev) +STUB( + "zz05DbdG5EY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEE7add_refEv) +STUB( + "zz0teJPSNRQ", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEEiRNS2_10LibContextEPT_m) +STUB("zz11uoSib9o", ubrk_refreshUText_67) +STUB("zz3ltHntE4c", + _ZN7WebCore10JSDocument22visitOutputConstraintsEPN3JSC6JSCellERNS1_11SlotVisitorE) +STUB( + "zz5MBIlXrmQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("zz5gyMxsuPc", generic_trampoline_aot_plt) +STUB("zz7uHQZ6UTo", + _ZN3sce2Np9CppWebApi14SessionManager2V112JoinableUser8fromJsonERKNS_4Json5ValueE) +STUB("zzB0StvRab4", sceHttpAuthCacheFlush) +STUB("zzBMiEGifFU", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchDetailaSERS5_) +STUB( + "zzBnlr10qaw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEptEv) +STUB("zzDN3aMsHzg", _ZNK3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer14accountIdIsSetEv) +STUB( + "zzEil2Eo1MU", + _ZN3sce2Np9CppWebApi7Matches2V130ResponsePlayerStatisticFactory6createEPNS1_6Common10LibContextEPKcRKNS5_6VectorINS5_12IntrusivePtrINS3_19AdditionalStatisticEEEEEPNSB_INS3_23ResponsePlayerStatisticEEE) +STUB("zzKyvoELf4I", sceKernelGetSocSensorTemperature) +STUB("zzMmzrXuwvc", _ZN3sce2Np9CppWebApi13InGameCatalog2V512ErrorFactory7destroyEPNS3_5ErrorE) +STUB( + "zzO8ZGJ74ng", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEEC1Ev) +STUB("zzOYC2KEvvU", u_errorName_59) +STUB( + "zzYFbqz4s04", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEC1ERS7_) +STUB("zzaAvrFAND0", _ZNK7WebCore12DOMTokenList8containsERKN3WTF12AtomicStringE) +STUB("zzbNPe0YsDk", _ZN3sce7Toolkit2NP2V27Session13SessionMemberC2Ev) +STUB( + "zzkocAJmyHc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEE3getEv) +STUB( + "zzksdAEPwVY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB("zzslOMIcxSU", _ZN3sce7Toolkit2NP2V26Trophy16UnlockedTrophiesC1Ev) +STUB( + "zzubCm+nDzc", + _ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_bRSt8ios_baseRNSt5_IosbIiE8_IostateERe) +STUB("zzvRwca5iwU", delegate_virtual_invoke_imt_30) +STUB( + "zzwBT4Nl7t0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEE7add_refEv) diff --git a/scripts/ps4_names.txt b/scripts/ps4_names.txt index 34b4c76b..caad2b4d 100644 --- a/scripts/ps4_names.txt +++ b/scripts/ps4_names.txt @@ -1,11223 +1,94276 @@ -sceAvSettingDebugSetProcessAttribute -sceApplicationRaiseExceptionToLocalPid -sceNgs2RackUnlock -sceNpLwCondInit -sceCompanionHttpdTerminate -sceFaceIdentifyExSimilarity -sceNpUtilXmlUnescape -sceVshAvcapDeleteSyncer -sceUserServiceGetPbtcSaturdayHoursStart -sceAvSettingSetHdcpStatus -scePktMgrRecvDeciPacket -sceUserServiceGetGlsFloatingMessage -sceVideoCoreInterfaceDestroyFrameBufferContext -sceCesUtf8ToEucCn -sceDtcpIpPollAsync -sceShellCoreUtilRequestRebootApp -sceSystemServiceActivateHevc -sceTextToSpeech2GetSystemStatus -sceNetConfigWlanDiagGetDeviceInfo -sceNpGetAccountAge -scePadResetLightBarAll -sceSaveDataCheckBackupDataLight -scePthreadAttrGetscope -sceApplicationContinue -sceKernelQueryTraceMemory -sceLncUtilNotifyCoredumpRequestEnd -sceHttpCacheRevalidateWithMemoryPool -sceNpMatching2SetDefaultRequestOptParam -sceCesGbToUtf16be -sceFiosOpIsCancelled -sceNpAtomicCas32 -sceNpRemotePlaySessionSignalingJoinSession -sceVorbisDecReadFloat -sceAgcDriverGetGpuPrintfWorkArea -sceGnmSetEmbeddedVsShader -sceFiosGetDefaultOpAttr -scePerfTraceIoControllerEnable -sceFontStringGetTerminateOrder -sceRudpNetFlush -scePthreadSetspecific -sceOpusDecDecode -sceLibcMspaceSetMallocCallback -scePatchCheckerSetCache -sceSlimglServerSetPolicy -sceKernelSwitchToNeoMode -sceAudioInOpenEx -sceSslFreeCaList -sceFiosOpGetActualCount -sceFontWritingLineRefersRenderStep -sceHttpGetCookie -sceVideoOutInitializeOutputOptions -sceNpManagerIntSubmitUserCode -sceUsbStorageUnregisterCallback -sceBluetoothHidGetFeatureReport -sceContentExportTerm -sceFsUfsStopOperation -sceVdecswCreateDecoder -scePthreadRwlockUnlock -sceMusicCoreServerSetTitleId -sceSharePlayGetCurrentConnectionInfoA -sceM4aacEncFlush -sceKernelDeleteSblock -sceGnmPaDisableFlipCallbacks -sceUserServiceGetGlsTtsFlags -sceShareFactoryUtilGetLaunchStatusOfShareFactory -sceCesUhcUcsProfileSetSbcs -sceAppContentAppParamGetString -sceNpTrophy2GetGroupInfoArray -sceHmdInternalGetPUVersion -pthread_barrier_destroy -sceUserServiceGetGlsCameraEliminationLevel -sceNpSessionSignalingGetConnectionStatistics -sceDebugGetFileInfoForCoredump -sceNpManagerIntGetAccountAge -sceSysUtilSendSystemNotificationWithAppNameRelatedToUser -sceNpTusSetDataVUser -sceNetGetNameToIndex -sceAgcDriverAgrSubmitMultiDcbs -sceAgcDriverIsTraceInProgress -pthread_detach -sceHmdInternalEventInitialize -sceCameraStopByHandle -sceAppInstUtilRequestInstallDiscGame -sceVideoOutGetHdmiMonitorInfo_ -sceHidControlSetJediVolumeGain -sceKernelGetUtokenNpEnvSwitchingForRcmgr -sceNpFriendListDialogClose -sceAudioOut2MbusInit -sceCoredumpAttachMemoryRegion -scePadResetLightBarAllByPortType -sceLncUtilSystemShutdown -sceNpInGameMessageDeleteHandle -scePsmUtilRegisterCallbacks -sceAgcDriverUserDataWritePushMarker -sceDataTransferHostLaunch -scePerfTraceCreate -sceSaveDataGetSaveDataRootDir -scePadEnableExtensionPort -sceDebugGetModuleInfo -sceApplicationNotifyCoredumpRequestProgress -sceLibSecureAddHash -sceM4aacEncEncodeWithPriorityEx -sceAppInstUtilRequestDataDiscCopy -sceAudiodecDecode2 -sceFsUfsReallocateSparseFile -ScePsmMonoDlFallbackRegister -sceFontFtSupportSystemFonts -sceVideoOutSysCursorObtain -sceNetDumpAbort -sceKernelGetProcessType -sceCustomMusicCoreStartOperation2 -scePatchCheckerGetApplicableTick -sceKernelDebugGpuPaDebugIsInProgress -ScePsmMonoRuntimeResourceLimit -sceShellCoreUtilExfatFormatExternalHdd -sceRnpsAppMgrHasEventForShellUI -sceFontFtSupportFontFormats -sceAudioOut2SpeakerArrayCreate -sceAgcDcbPushMarker -sceSdmaTryFlush -sceVisionManagerRequestCalibrateStereoCamera -sceMbusRemoveHandle -sceVideoOutSysSetOutputCsc -sceNetCtlGetStateV6 -pthread_mutexattr_getprioceiling -sceFsInitMountSaveDataOpt -sceFiosDeallocatePassthruFH -sceLncUtilLaunchApp -sceNpGriefReportCdTerm -sceNpCloseEventFlag -sceNpWebApi2CreateMultipartRequest -sceNpWebApi2Initialize -sceKernelHwHasWlanBt -sceSaveDataSupportedFakeBrokenStatus -sceDebugGetProcessCoredumpHandlerEventInfo -sceUserServiceGetGlsLiveQuality4 -sceUserServiceSetSaveDataAutoSync -sceKernelPread -sceGnmRaiseUserExceptionEvent -sceNpPush2SetGlobalMutex -sceKernelSetDataTransferMode -sceNpUniversalDataSystemEventEstimateSize -sceAppInstUtilGetInsertedDiscRoleType -sceFaceIdentifyLiteSimilarity -sceVideoOutGetHdmiRawEdid_ -sceAppInstUtilAppInstallAll -sceHmd2ReprojectionSetMirroringOption -sceVideoOutGetStatusForWebcore -scePlayReadyEnvelopeClose -sceAgcDcbStallCommandBufferParserGetSize -sceMusicPlayerServiceSetRepeatMode -sceNpPartyRegisterHandlerA -sceIduUtilIsRifInstalled -sceMatMemoryPoolReserve -sceHttp2CreateTemplate -sceUsbdHandleEventsTimeout -sceNpManagerIntGetVshAccessTokenWithCheck -sceGnmSetupMipStatsReport -sceKernelGetAppCategoryType -scePatchCheckerSetFakeCache -sceNpRegisterPremiumEventCallback -sceDebugGetSyncExclusiveWaiterList -sceHmdSetupDialogTerminate -sceHmdInternalSetVirtualDisplaySize -sceDebugTriggerCoredumpForSystem -sceBgftServiceIntPlayGoResume -sceAppMessagingSendMsg -sceSystemServiceLaunchWebBrowser -sceSysUtilSendSystemNotificationParamInit -sceDeci4hDrfpFtruncate_fuse -sceLoginMgrServerSetUserStatus -scePlayReadyReaderDecryptMultiple -sceFiosFHStat -sceDebugSetProcessEventCntlFlag -scePadSetVrTrackingMode -sceAudioOutGetInfo -sceSysUtilSendTrcCheckNotificationRequest -sceDataTransferTargetRequestSendSsoOld2New -sceCompanionHttpdRegisterRequestCallback2 -sceAudiodecCpuInternalDecode -sceHttp2WebSocketCreateRequest -sceFsErriGetState -sceImeBackendGetConvertMode -sceKernelReadTsc -sceVideoOutSysSetHdrScopeCallbacks -sceImeDialogSetPanelPosition -sceUpsrvVerifySystemExBank -sceUserServiceGetAccessibilityTriggerEffect -sceLncUtilNotifyVshReady -sceImeUpdate -sceShareUtilityOpenShareMenuBroadcast -sceUlpMgrSaveConnectionInfoList -sceFsUfsCollectTelemetry -sceRtcTickAddYears -sceVdecwrapQueryFrameBufferInfo -sceHmdInternalSocialScreenSetOutput -sceBgftServiceIntPlayGoFindTaskId -scePngDecQueryMemorySize -sceUserServiceIsSharePlayClientUser -sceNpUniversalDataSystemIntPostRecordData -sceAppInstUtilAppUpdateStartTime -sceSpPthreadCreate -sceSystemServiceActivateMpeg2Start -sceDtcpIpInit -sceNpAppLaunchLinkIntDestroyRequest -sceNpTrophy2GetTrophyIcon -sceSystemServiceActivateHevcGetStatus -sceShellCoreUtilSetUserFocus -sceCesUhcToUtf16 -sceNpServiceChecker2IntInitialize -scanf_s -sceLibSecureCryptographyGenerateKey -sceRemoteplaySetRpMode -sceDtcpIpRemoveHeader -sceFsLvdDisableLayer -sceHmd2ReprojectionQueryDisplayBufferSizeAlign -sceSystemGestureDebugGetVersion -sceAgcSetSubmitMode -sceGameLiveStreamingPermitServerSideRecording -sceMouseSetProcessFocus -sceSharePlayStartStandby -sceCesBig5ToUtf32le -sceLncUtilGetVideoFinalizeState -sceCesRefersUcsProfileKoi8R -sceUsbStorageGetDeviceInfo -sceCameraGetDeviceIDWithoutOpen -scePssCAudSetSurroundPan -sceHttp2SetConnectTimeOut -sceAgcDcbSetShRegistersIndirect -_sceLibcMallocInitialize -sceImeVshSendTextInfo -sceHidControlGetVersionInfo -sceUsbdGetDescriptor -sceMusicPlayerServiceRemoveAllData -sceDataTransferTargetRequestSearch -sceUsbdCancelTransfer -scePerfPmcL2iStop -sceNpTrophySystemDestroyHandle -sceNpSnsFacebookAbortRequest -sceAudioOutMbusInit -sceShellCoreUtilIsBgmPlaying -sceNpTusGetDataForCrossSaveVUser -sceVideoCoreSetInitialInfo -sceNpPartyShowInvitationList -sceHttp2WebSocketSetPingTimeout -sceNpTitleMetadataIntGetInfo -sceNetConfigWlanScan -sceAvSettingGetHdmiMonitorInfo -sceVideoOutDeleteFlipEvent -sceNpManagerIntLoginGetAccessToken -sceFontCharacterLooksFormatCharacters -sceSslGetMemoryPoolStats -scePlayGoPrefetch -sceNpSetTimeout -_Assert -sceDebugGetFileInfo -sceAudio3dGetSpeakerArrayMixCoefficients -sceVnaGetMicStatus -sceIduUtilGetInstalledApp -scePlayGoGetProgress -sceVisionManagerRequestRegisterUserInRegion -sceShellCoreUtilGetCrashReportInfoForBoot -sceAudio3dGetSpeakerArrayMixCoefficients2 -sceNpUnregisterPremiumEventCallback -sceAgcAcbDmaData -sceDebugGetUltWaitingQueueResourcePoolInfo -sceNpTssGetData -sceScreenShotIsDisabled -sceGnmSdmaCopyTiled -sceShellCoreUtilMakeManifestFile -pthread_attr_setstack -sceNgs2VoiceGetState -sceSslGetPeerCert -sceRemoteplayServerLock -sceOpusCeltEncEncodeFloat -sceVideoCorePlayControl -sceFiosDirectoryCreate -sceNpSignalSema -sceKernelSetProcessProperty -sceSslDisableOptionInternal -scePthreadAttrSetdetachstate -sceSaveDataMountSys -sceMusicCoreServerSetAudioMute -sceAudiodecTerminate -sceMoveTrackerControllersUpdate -sceNgs2FftQuerySize -sceKernelInternalMemoryGetModuleSegmentInfo -sceContentSearchCloseMetadata -sceUserServiceGetNpEnv -sceHmdInternalGetVirtualDisplayDepth -scePlayReadyCdmiFreeOpaqueDecryptedContent -sceKernelSleep -scePthreadRwlockattrSetpshared -sceNpRemotePlaySessionSignalingManualUdpCreateJoinSession -sceUltGetQueueDataResourcePoolInfo -sceKernelPrepareToResumeProcess -sceNpOpenSema -sceSaveDataCheckCloudData -sceNpMatching2ContextStop -scePthreadAttrGetstacksize -sceShellCoreUtilGetGameLiveStreamingStatus -sceNpGlobalHeapGetAllocator -sceVideoOutConfigureOutputModeExSubmitDoneUnsafe_ -sceRemoteplayImeNotify -sceUltUlthreadRuntimeDestroy -scePlayReadyApiStart -sceLibcMspaceCreate -sceShellCoreUtilPostErrorLog -sceShellUIUtilInitialize -sceUserServiceGetVoiceRecognitionTutorialState -sceVideoOutSysSetHdrMetadata -sceFontGraphicsCanvasStartDrawing -sceBgftServiceIntDownloadCheckPatchUpdateState -sceLibcPafMspaceCalloc -sceNpPartyGetVoiceChatPriority -sceIduIsAppInstalled -sceFontGraphicsGetDrawingFrameHandle -sceGameRightGetStringSizeInBytes -sceAppInstUtilAppGetAppInstallStatusByAppInfo -ScePsmMonoDebugInit -sceKernelConvertUtcToLocaltime -sceSpPthreadAttrSetstacksize -sceAgcSetStaticBuffer -sceAudio3dPortQueryDebug -sceFiosCancelAllOps -sceAjmBatchWait -sceClPthreadAttrDestroy -ScePsmMonoThreadSetThreadsExhaustedCallback -sceNpTrophySystemIsServerAvailable -scePthreadAttrGetstack -sceAppInstUtilAppSetSavedataUploadStatus -sceHttp2GetAllResponseHeaders -sceAvControlSetHdrMetadata -sceUserServiceGetGamePresets -sceUsbdFreeTransfer -sceNpTrophySystemCheckNetSync -sceNgs2SystemSetSampleRate -sceHmdInternalGetEyeStatus -sceVrSetupDialogGetResult -sceAgcDriverUserDataWritePacket -sceAgcDcbAcquireMemGetSize -sceCompositorInsertThreadTraceMarker -sceCesUcs2ToUhc -sceAudioPropagationSourceSetAttributes -pthread_attr_getaffinity_np -sceHttpSetEpoll -sceShellCoreUtilRequestCameraCalibration -sceVideoCoreInterfaceFinishRendering -scePfsGetSingleBlockReadCommand -sceGnmSpmSetSpmSelects -sceDeci4hDrfpTruncate_fuse_fullpath -sceVideoOutSetAlphaControl -sceCompositorSetIndirectCanvasCommand -sceNpUniversalDataSystemEventPropertyArraySetBool -sceFiosFHTruncate -pthread_getspecific -sceNetShowRouteWithMemory -sceFiosDHCloseSync -sceNetConfigDelIfaddr -sceNpSnsTwitchCreateRequest -sceAvSettingNotifyResponseForSocialScreen -sceAgcCbSetUcRegistersDirect -sceAgcDriverModuleRegistration -sceRegMgrSrvGetMachineType -sceVideoStreamingEngineMediaKeySessionGetKeyStatuses -sceGnmSqttSetTraceBuffer2 -sceNpServiceChecker2IntGetServiceFlagArray -sceDeci4hDrfpReaddir_fuse -sceAppInstUtilAppInstallSharePlayLink -sceS3dConversionExec -sceVoiceChatAbortRequest -sceRtcTickAddSeconds -sceUpsrvUpdateGetUrlForBetaAgreement -sceTextToSpeech2GetSpeechStatus -sceAudioOutSetHeadphoneOutMode -sceHttp2SetMinSslVersion -sceAmprMeasureCommandSizeWaitOnAddress_04_00 -sceGnmDispatchDirect -sceFontGraphicsSetupShapeFillPlot -sceKernelUtimes -sceUserServiceSetGlsAccessTokenTwitch -pthread_cancel -sceNpTusDeleteMultiSlotData -sceAudioSystemSystemSuspend -sceIduUtilGetCompilationDiscTitleInfo -sceIduUtilEnablePriorityDownloads -sceLibcPafMspaceReportMemoryBlocks -sceVorbisDecTimeSeekPage -sceNpGriefReportCreateTransaction -sceContentExportInit2 -sceNpAppLaunchLink2IntDestroyRequest -sceGnmDrawInitDefaultHardwareState200 -sceUserServiceGetGlsCameraEdgeLevel -sceNpGameIntentTerminate -sceUlpMgrSend -sceShareTerminate -sceShellCoreUtilTalkKeyEventReceived -sceSslTerm -sceSystemGestureGetTouchRecognizerInformation -sceKeyboardClose -sceMbusEventCreate -scePadVertualDeviceAddDevice -sceNetGetIfName -sceNpLookupSetTimeout -sceFontGraphicsGetIndexedVertexesGlyph -sceAgcDriverGetWaitRenderingPacketSizeInDwords -sceVisionManagerRequestInitializeRegisterUserData -sceKernelConvertLocaltimeToUtc -sceKernelGetUtokenStoreModeForRcmgr -sceGnmSetSpiEnableSqCounters -sceShellCoreUtilDoFsck -sceRegMgrToolGetInfo -sceNpSnsTwitchDialogClose -sceIpmiMgrGetIpcBlockerPid -sceMoveGetDeviceId -sceAmprMeasureCommandSizePushMarker -sceHttpSetConnectTimeOut -sceCompanionHttpdStop -sceValidationGpuRegisterMemoryCheckCallback -sceNpProfileDialogTerminate -sceDebugDestroyScratchExecutableArea -sceCompanionHttpdGetUserId -sceSystemServiceGetDbgExecutablePath -sceCesJiscsToUcs -sceAudioOutExClose -pthread_cond_init -sceNpMatching2RegisterSignalingCallback -sceNpSignalingActivateConnection -sceSaveDataSetAutoUploadSetting -sceAvSettingNotifyDeviceEvent -sceSslGetSslError -sceAmprAmmCommandBufferRemapIntoPrt -sceUserServiceSetNpNpId -sceDataTransferGetPrepareFgTransferProgress -sceUpsrvUpdateDoExternalDeviceUpdate -sceUserServiceGetVolumeForOtherDevices -sceApplicationExitSpawn2 -sceSystemServiceGetAppTitleId -sceSysCoreReceiveEvent -sceRemoteplayServerUnLock -sceAgcAcbRewindGetSize -sceHttpGetStatusCode -sceSpPthreadMutexattrSettype -sceNpCommerceDialogInitialize -scePadDisableVibration -scePerfPmcL2iSetCounter -sceNpAsmGenerateNpTitleToken2 -sceCameraGetAttribute -sceCesRefersUcsProfileIso8859_9 -sceNpRegisterStateCallbackForToolkit -sceNetCtlGetResult -sceNpManagerIntLoginRevalidatePassword -sceHmdInternalAnotherScreenOpen -sceSystemServiceAddLocalProcess -sceNpAsmClientAbortRequest -_sceFiberGetThreadFramePointerAddress -sceUserServiceSetGlsCameraTransparency -sceNgs2RackQueryBufferSize -sceDbgVideoOutAddProcessAttribute -sceDataTransferTargetAbortGetDeviceInfo -sceKernelAprSubmitCommandBufferAndGetResult_TEST -sceAgcQueueEndOfPipeActionPatchAddress -scePlayerSelectionDialogClose -sceGameUpdateGetAddcontLatestVersion -sceNetConfigAddArpWithInterface -sceShellCoreUtilExitMiniApp -sceHttpCacheSystemSendStatistics -sceHttpCreateTemplate -_sceNpAllocatorExConvertAllocator -sceKernelIccReadPowerBootMessage -sceAvSettingSetAudioOutModeInvalid -sceFontRenderSurfaceSetStyleFrame -sceGameLiveStreamingStopDebugBroadcast -sceTextToSpeechSpeakContinuousImpl -scePerfPmcStartProc -sceGnmSysSubmitCommandBuffersWithPid -sceVideoOutDriverDecrementBufferLabel -sceMatUninitialize -sceUsbdAllocTransfer -sceCesSbcToUcs2 -sceKeyboardDeviceOpen -sceNetBweUnregisterCallbackIpcInt -sceNpServerErrorJsonGetErrorCode -sceNgs2GeomResetSourceParam -sceM4aacEncEncodeEx -sceVdecswQueryComputeMemoryInfo -_sceModuleParam -sceNpTusDeleteMultiSlotVariableAsync -sceAgcDcbSetIndexIndirectArgs -sceHttpGetLastErrno -sceIpmiMgrGetIpcBlockerPidByAppId -scePlayReadyProfileEnter -sceShellCoreUtilShowErrorDialog -pthread_attr_getstacksize -sceUsbStorageRegisterCallbackForMapAvailable -sceVoiceChatRequestLeavePlayerSessionVoiceChatChannel -sceVisionManagerSetCallbackForUpdateCalibrateHmdResult -sceNetConfigSetIfFlags -sceKernelInternalMapNamedDirectMemory -sceAc3EncFlush -sceNpTusTryAndSetVariableA -sceAudiodReportSetEnableFlag -sceMatTagVirtualMemory -sceMbusDebugSetAppModuleFocus -sceKernelGetMainSocId -sceVdecwrapFlushDecodeOutput -sceCompositorWaitEvent -sceHmdReprojectionUnsetCallback -sceCameraInitializeRegistryCalibData -sceAudioOut2ContextCreate -sceNpSnsIntYtGetAccessToken -sceShellCoreUtilGoBackToKratosCurrentSessionGame -sceNpManagerIntGetVshTokenA -sceRazorCpuUnTagBuffer -sceKernelGetUtokenFlagedUpdaterForRcmgr -sceHidControlSetRevokeList -sceRudpSetOption -sceHmdInternalSetCrashReportCommand -sceSaveDataMount2 -sceSystemServiceAcquireFb0 -sceInvitationDialogOpen -sceNpTusGetMultiUserDataStatusAsync -sceUlpMgrGetDecidState -_sceUltMutexOptParamInitialize -sceFontWritingLineClear -sceMusicPlayerServiceGetPlaybackResults -sceUserServiceGetUserGroupName -sceSystemLogger2Initialize -sceCamera2GetContrast -sceKernelMkdir -sceAvSettingGetCurrentHdmiDeviceId -scePlayReadyProfileLeave -sceAgcDcbAtomicMem -sceVisionManagerRequestFindPad -sceNpMatching2Initialize -scePerfTraceSpmStop -sceNpUniversalDataSystemCreateRecordData -sceAppInstUtilGetParentalControlLevel -sceKernelPollSema -sceKernelEventLogClose -pthread_rwlock_destroy -scePthreadOnce -sceAvControlChangeProcessAttribute -sceNetCtlGetConnectionElapsedTimeIpcInt -sceNetSetDns6Info -sceAudioOut2PortUnregister -sceImeOpenInternal -sceMoveTrackerGetVersion -sceHttpGetMemoryPoolStats -scePlayReadyCdmiGetSessionAppContext -ScePsmMonoJitInit -sceCamera2Finalize -sceKernelCreateSema -sceRtcGetCurrentTick -sceAudioOutSetJediJackVolume -sceNetConfigFlushRoute -sceVideoOutSetDisplayEventPosition -sceRegMgrCntlGetFileName -sceNpLwMutexLock -sceDebugGetModuleMetaData -sceNetCtlApCheckCallback -sceNpWebApiAddMultipartPart -sceUserServiceSetImePointerMode -scePktMgrPrepareUlpNtfPacket -sceDeci4hDrfpOpendir_fuse -sceLncUtilGetAppType -sceAgcDriverDebugHardwareStatus -sceKernelIsTestKit -sceNpLwMutexInit -sceNpTusSetMultiSlotVariableVUser -sceNpManagerIntGetAuthorizationCodeA -sceDevUsbAddCPKevent -sceAgcDriverCwsrResumeAcq -sceAvSettingDebugClearDiagCommand -sceAgcDcbSetCxRegisterDirectGetSize -sceMoveReadStateRecentForTracker -sceUsbdUnlockEventWaiters -scePadGetExtensionUnitInfo -ScePsmMonoJitCleanup -sceNpSnsYouTubeGetAccessToken -sceEsvmEngineMediaKeysCreateSession -sceNpAppLaunchLinkIntInitialize -scePthreadMutexattrSetprotocol -sceSdmaQueryWorkingBufferSize -sceVideoOutGetVblankStatus -sceMouseMbusInit -sceKernelOpen -sceShellCoreUtilGetPsStoreIconLayout -sceNpUtilGetDbgCommerce -sceBdSchedGetBackgroundCopyRequest -sceFsUfsRecryptIsUnfinished -sceNpManagerIntGetAccountIdSdk -_sceLibcMspaceLock -scePerfPmcL2iGetCounterSelf -sceNetCtlUnsetStunWithPaddingFlagIpcInt -sceMatMspaceCreate -sceAudio3dObjectUnreserve -sceNpTrophy2SystemCheckCallback -sceDataTransferTargetRequestStartTransfer -sceNpIpcCheckCallback -sceUserServiceSetVoiceRecognitionTutorialState -sceNpMatching2GetLobbyMemberDataInternal -sceM4aacEncFlushWithPriority -sceVrTrackerSetDurationForStatusNotTracking -sceSystemGestureAppendTouchRecognizer -sceNetCtlRegisterCallbackV6 -scePktMgrGetSeqNum -sceGameRightGetVersion -sceKernelIccGetCPMode -sceNpLookupNetAbortRequest -sceNpWebApi2PushEventAbortHandle -sceVideoOutSysGetPortStatusInfo_ -sceCompositorReleaseCommandBuffer -sceSystemServiceChangeMemPstate -scePadGetInfo -sceHmdInternalMmapIsConnect -sceMoveTrackerRecordSave -sceLncUtilReleaseCpuBudgetOfImeForBigApp -sceCompositorResetZoomCommand -sceCoredumpDebugForceCoredumpOnAppClose -sceFontUnbindRenderer -sceDbgUserChannelPrint -sceUsbStorageGetMountPointOfShellCore -sceNpPushIntBeginInactive -sceNpTusGetDataForCrossSave -sceSlimglCompositorSetEndOfFrameCommand -sceShareUtilityAdvanceWakeUpShareMenu -sceMatUnregisterResource -scePktMgrSetPacketSize -sceMbusDebugGetInternalInfo -sceUserServiceGetDefaultNewUserGroupName -sceKernelGetAslrStatus -sceFsUnbindPackages -sceMbusRegisterDriver -sceNpIpcDeleteRequest -sceSslCheckRecvPending -ScePsmMonoStringFromUtf16 -sceNgs2GeomCalcListener -sceNpAsmGetServiceIdInfo -sceHmdInternalGetDebugTextMode -sceNpManagerIntInit -sceAudioOutEnable3DAudioForUser -sceNpMatching2GetLobbyMemberDataInternalList -sceSulphaMessage -sceNpCondDestroy -sceNpManagerIntAuthGetAuthorizationCode -sceFsDeviceAlignedPread -sceBluetoothHidSetFeatureReport -sceNpEntitlementAccessRequestConsumeEntitlement -scePlayReadyDomainJoinGenerateChallenge -sceHmdDistortionGetWorkMemoryAlign -sceDataTransferTargetRequestPrepareTransfer -sceNpWordFilterCensorComment -sceHttpSendRequest -sceShellCoreUtilNavigateToAnotherApp -sceDepthCalculateRectificationInformation -sceSystemServiceIsBgmCpuBudgetAvailable -_sceLibcAtexitMutexInit -sceNpScoreRecordGameDataAsync -sceHmdInternalRegisterEventCallback -sceVdecCoreSyncDecodeOutputSw -sceAudioOut2GetAmbisonicsEncodeCoefficients -sceSaveDataCheckSaveDataBroken -sceNpScoreAbortRequest -sceAt9EncQueryMemSize -sceKernelGetTscFrequency -sceNetConfigWlanAdhocPspEmuGetWakeOnWlanInfo -ScePsmMonoTypeIsValueType -sceKernelUsleep -sceFiosStatisticsPrint -sceShellCoreUtilNotifyImeStatusChanged -sceClHttpTerm -sceJpegDecDecode -sceShellUIUtilLaunchTask -scePlayerInvitationDialogGetStatus -sceNpAppInfoIntCheckServiceAvailability -scePssMusicPlayerStopEx -sceNpTrophy2SystemRemoveUserData -sceIduUtilClearAllSchedules -sceNpTusCreateNpTitleCtxA -sceSystemServiceGetDisplaySafeAreaInfo -sceCesSJisToUtf8 -_sceLibcGetMallocParam -sceAppInstUtilPauseInstall -sceCompositorSetFlipCommand -sceUserServiceGetGlsCameraContrast -sceHmdGetDeviceInformationByHandle -sceAgcDcbDrawIndirect -sceFontGraphicsProcessWaitAllSequences -sceGnmInsertWaitFlipDone -sceShellCoreUtilGetFsckProgress -sceAgcDcbCopyData -sceHttpGetAcceptEncodingGZIPEnabled -sceAjmDecAt9ParseConfigData -sceAgcDcbAtomicGdsGetSize -scePthreadGetprio -sceKernelInternalResumeDirectMemoryRelease -sceKernelOpenEventFlag -sceUpsrvPostErrorLog -sceNpAsmClientDeleteRequest -sceClKernelReleaseFlexibleMemory -sceAppInstUtilGetInstallStatus -sceKernelIccControlBDPowerState -sceContentSearchTerm -sceUserServiceGetUserName -sceAppInstUtilAppGetAppOtherSize -sceKernelMapperGetParam -sceKernelTitleWorkaroundIsEnabled -sceUserServiceGetControlCenterFunctionControlSettings -sceUserServiceGetAccessibilityZoom -sceRazorCpuStartCapture -ScePsmMonoSecurityEnableCoreClr -pthread_attr_setsolosched_np -sceSaveDataUmountSys -sceUserServiceGetGlsOverlayPosition -sceUserServiceGetImeLastUnit -sceSpNetSocketClose -sceNpUniversalDataSystemIntRecordObjectSetBool -sceNpTrophySystemCheckNetSyncTitles -sceKernelIsModuleLoaded -sceClHttpSetAutoRedirect -sceNpIdMapperNpIdToAccountId -scePatchCheckerUpdateAppdbForEap -sceFontGraphicsFillRatesInit -sceVideoOutSysGetFlipStatus -sceNetMemoryFree -sceDebugGetUltInfo -sceHttpSetDelayBuildRequestEnabled -sceHeadTrackerQueryWorkingMemory -sceNpIpcClientInit -sceKernelGetEventFilter -sceVrTrackerRegisterDevice2 -sceDebugGetUltQueueInfo -sceVnaGetAgentSettings -sceProfileCacheGetTrueName -sceGnmLogicalCuIndexToPhysicalCuIndex -sceNetDbgInit -sceMusicFwGetCurrentTime -sceNpMatching2GetRoomDataExternalList -sceNetConfigWlanInfraScanJoin -pthread_cond_timedwait -sceMbusDumpPortHandleInfo -sceAudioOut2GetSpeakerArrayAmbisonicsCoefficients -sceNpTrophyUnlockTrophy -sceOpusDecDestroy -sceNpSetEventFlag -sceAudioOut2GetIpcHandle -sceGnmMapComputeQueue -sceAgcJumpPatchSetTarget -sceNpTusGetMultiSlotVariableAAsync -sceVideodec2MapMemory -sceUpsrvUpdateGetEulaDisplay -sceVideoOutConfigureOutputEx -sceSdmaCancelQueue -sceAvControlGetCurrentOutputModeWithSync -sceVideoOutSysDeleteVblankEvent2 -sceUserServiceSetGlsTtsSpeed -sceNetCtlGetEtherLinkMode -sceCameraStop -sceRudpGetLocalInfo -sceNpAsmClientGetNpTitleToken2 -scePerfTracePmStop -sceMoveWriteCalibrationInfo -sceSystemServiceActivateHevcIsActivated -sceNpSignalingGetPeerNetInfoResult -sceCesUtf32ToBig5 -sceAmprMeasureCommandSizeWriteAddressFromCounterPair_04_00 -sceKernelGetSubsysSubId -sceGnmSqttSelectMode -scePadSetTriggerEffect -sceFiosSetGlobalDefaultOpAttr -sceAgcGetRegisterDefaults2 -sceAppInstUtilAppGetAddcontInfo -sceMouseExtensionSetCursor -sceVideoOutSysSetBlackLevel -sceFontFtSupportOpenTypeTtf -sceNpFriendListDialogInitialize -sceNpUniversalDataSystemIntDeleteUserDataWithServerData -sceUsbStorageGetdentsOpen -pthread_cond_signal -sceHttpSetPriorityOption -scePadReadForTracker -scePthreadMutexDestroy -sceFiosFHWritev -sceMusicFwSetShuffle -sceShellCoreUtilSetSplashScreenState -sceAgcDriverGetSetFlipPacketSizeInDwords -pthread_attr_setstacksize -sceFontStyleFrameGetScalePixel -sceNpTrophy2GetGameIcon -sceIpmiMgrRaiseExceptionToPid -sceKernelWriteSdkEventLogV -sceCesIso2022UcsContextInit -sceKernelBatchMap -sceApplicationSuspendSystemForDebugger -sceSystemServiceKillLocalProcessForJvm -scePthreadCondInit -sceOpusDecDecodeFloat -scePssMouseReadState -sceDebugCreateScratchExecutableAreaForPrx -sceNpManagerIntGetAuthorizationCodeWithRedirectUri -sceNpUniversalDataSystemIntRecordObjectSetObject -sceAvSettingDebugSetHdmiMonitorInfo -sceKernelGetIdTableCurrentCount -pthread_mutex_unlock -sceFiosExistsSync -sceNpGriefReportWriteTemporaryFile -sceShellCoreUtilIsAccessibilityZoomLocked -sceNpScoreCensorComment -sceAudioOut2MasteringTerm -sceCesSJisToUtf16le -sceAvSettingNotifyVideoOutMode -sceAgcDcbDmaDataGetSize -sceVencQueryHeader -sceOpusDecInitialize -sceNpTusAddAndGetVariableAAsync -sceCameraGetConnectedDeviceAndDriverMode -pthread_setcanceltype -sceZlibGetResult -scePsmKitFontConfigGetFont -sceNetSendmsg -sceNpWebApiUnregisterServicePushEventCallback -sceNetFreeAllRouteInfo -sceAppInstUtilAppGetNoRelatedAddcontTitleList -sceNpTusAbortRequest -sceDebugProcessSpawn -sceVencCoreSetInputFrame -sceDepth2WaitAndExecutePostProcess -scePerfPmcUmcStart -sceNpWebApi2IntPushEventCreateCtxIndFilter -sceDtcpIpTerm -sceAudioOutSetCaesarVolume -sceNpHeapGetStat -sceTextToSpeech2Cancel -sceVoiceQoSEnableChat -sceSigninDialogGetStatus -sceFiosFHPreadSync -sceKernelSetSafemodeDirect -sceNetSetsockopt -sceSpNetResolverDestroy -sceNpLookupNetNpId -sceFsStatWorkspace -sceNetCtlUnregisterCallbackForNpToolkit -sceCesUtf16beToEucKr -sceBackupRestoreUtilCancelRestoreData -sceFsUfsInitalizeSparseFile -sceG2PDialogClose -sceKernelAioPollRequest -sceNpPush2UnregisterNotificationExCallback -sceNpWebApiGetErrorCode -sceShellCoreUtilLog -sceNpTrophySystemWrapGetGroupDetails -sceLoginDialogUpdateStatus -sceNpCheckNpAvailability -sceUpsrvUpdateRequestDownloadPupCancel -sceVideoOutSysGetDeviceInfo -sceDeci4hDrfpInitMountDoneEvf -sceNpUniversalDataSystemCreateRecordObject -sceKernelDebugInjectProcessEvent -sceDbgInstallExceptionHandlerAltStack -sceCamera2IsAttached -scePsmCoreClrCallback -sceS3daGetInfo -sceClSslInit -sceFiosOpSyncWait -sceValidationGpuOnSubmit -sceSystemServiceRaiseExceptionLocalProcess -sceCompositorGetRemainedCommandNum -sceScreenShotEnable -sceAmprAmmMeasureAmmCommandSizeAllocatePaForPrt -sceClNetInit -sceKernelNotifyAppStateChanged -sceCamera2SetSharpness -sceKernelWriteModifyProtectWithGpuMaskIdCommand -sceLncUtilStartKillApp -sceKernelInternalSuspendDirectMemoryRelease -sceHttpCacheSetCacheSharing -sceSslLoadRootCACert -sceVideoOutSysHdmiMonitorInfoIsMorpheus -sceNetRecvfrom -scePadVrControllerRead -sceKernelFdatasync -sceIduUtilIsDiscCompilationDisc -sceGnmSdmaConstFill -sceFsDevpfsCancelWaitEvent -sceClKernelMapNamedFlexibleMemory -sceAmprMeasureCommandSizeWriteAddressFromCounterOnCompletion -sceSaveDataMount -sceBgftServiceDownloadPauseTask -sceAc3EncEncodeAsync -sceDataTransferCheckBgTransferRunning -scePsmRegisterPInvokeCallTable -sceLncUtilIsCdlgActivated -sceShellCoreutilGetCrashReportProcessInformation -sceApplicationGetStateForDebugger -sceOpusSilkEncEncodeWithPriority -sceHmdDistortionGetWorkMemorySize -sceFaceIdentifySimilarity -scePerfPmcSdfGetCounter -sceNpMatching2SignalingGetLocalNetInfo -sceFsUfsAllocatePatchImage -sceMbusSetUsbPowerBlackList -sceNpManagerIntLoginGetAccessTokenViaImplicitFlow -sceFsUfsMkfs -sceAudioOutSysGetOutputInfo -sceFontStyleFrameSetEffectSlant -sceAjmBatchJobDecode -sceSysmoduleLoadModuleInternal -sceShellCoreUtilGetManifestFileStatus -sceAmprAmmCommandBufferUnmapToPrt -sceMatMprotect -sceAgcDriverRegisterWorkloadStream -sceKernelHwGetBdDriveInfo -pthread_condattr_setpshared -sceNpProfileDialogGetStatus -sceFontGetVerticalLayout -sceCesEucJpToUtf16 -sceNetHtonll -sceDebugIpmiGetConnectRequestInfoList -sceNpEntitlementAccessGetAddcontEntitlementInfoIndividual -sceVisionManagerGenerateRegisterUserData -sceUserServiceGetPbtcFridayDuration -sceKernelGetSystemSwBeta -sceNpWebApi2CreateRequest -sceIduReboot -sceGnmDriverInternalRetrieveGnmInterfaceForReplay -sceNpManagerIntUpdateVshToken -sceFontRenderCharGlyphImage -__cxa_guard_acquire -sceKernelWaitCommandBufferCompletion -sceDataTransferTerminate -sceFiosTerminate -scePssKeyboardInitialize -sceImeKeyboardUpdate -sceVdecswTryGetDecodeOutput -sceHttp2Init -sceShellCoreUtilIsPowerSaveAlertRequested -sceAvControlGetDeviceInfo -sceHmdReprojectionStartWideNear -sceMusicPlayerServiceGetAudioVolume -sceAgcWaitRegMemPatchAddress -sceKernelGetSpecialIForRcmgr -sceNpSignalingInitialize -scePlayReadyCdmiGetExpiration -sceNpGriefReportCdBaseDataInit -sceKernelAioCancelRequests -sceShellCoreUtilGetProgressOfFsck -sceKernelWriteMapDirectCommand -sceUserServiceGetNotificationSettings2 -sceEsvmEngineMediaKeySystemAccessGetConfiguration -scePssSoundPlayerSetSurroundPan -sceRtcGetDaysInMonth -sceVisionManagerGetRegisterUserDataVersion -scePlayGoGetLanguageMask -sceSharePlayServerUnLock -sceFontBindRenderer -sceAmprMeasureCommandSizePushMarkerWithColor -sceNpWebApiGetMemoryPoolStats -sceIduUtilGetSettingBin -sceVideoCoreChangeAudioStream -sceGameLiveStreamingSetCameraFrameSetting -scePthreadEqual -sceCesUtf8ToSbc -sceCompositorSetPostEventCommand -sceSystemGestureFinalizePrimitiveTouchRecognizer -sceNetCtlApDialogClose -scePerfPmcSdfStart -sceSystemServiceGetNoticeScreenSkipFlag -sceDebugAcquireAndUpdateDebugRegister -sceNetConfigWlanBackgroundScanStop -sceUserServiceLogout -sceAppCheckerExecuteEx -sceNpManagerIntGetAccountDateOfBirthSdk -sceNpGetAccountLanguage2 -sceNpWebApi2CheckTimeout -sceMbusDumpModuleStateInfo -sceAudioInVmicDestroy -sceFiosFHPwritev -sceNpScoreSanitizeCommentAsync -sceUserServiceGetVolumeForSidetone -sceCameraSetTrackerMode -scePerfTraceAmmDelete -sceNetConfigDownInterface -sceVrTrackerStopLiveCapture -sceAudioInAsyncOpen -sceNpScoreGetRankingByAccountIdForCrossSave -scePssMusicPlayerGetPlayState -sceSystemServiceRequestCameraCalibration -sceKernelWriteMapCommand -sceAgcAsyncCondExecPatchSetCommandAddress -sceNpTrophy2SystemBuildRewardIconUri -sceNpCheckCallback -sceFsMlfsMount -sceAudioPropagationSourceQueryInfo -sceDebugReadProcessMemoryForSDBGP -sceNpTusCreateRequest -sceAjmBatchJobGetStatistics -sceBgftServiceIntDebugPlayGoRevertToInitialState -sceNpPartyCheckCallback -sceNpRemotePlaySessionSignalingEstablishConnection -sceRemoteplayGetConnectUserId -pthread_getthreadid_np -sceNpManagerIntGetVshClientId -sceUserServiceSetImeInitFlag -sceSocialScreenDialogGetStatus -sceDebugReadProcessResourceStatData -sceMusicCoreServerSetSpWakeupAuthorityList -sceVrTracker2IrGetDebugRawImage -sceAvControlChangeScanInMode -pthread_resume_all_np -scePigletGetConfigurationVSH -sceRudpEnd -sceFontGetFontStyleInformation -sceUserServiceGetUserIdByNpAccountId -sceCameraSetContrast -sceHmdReprojectionSetUserEventToFinish -sceMbusAcquireControlWithStateFlag -sceNpTrophySystemWrapDebugLockTrophy -sceHmdInternalGetPUSerialNumber -sceAvControlIsColorimetryHdr -sceKernelMlock -scePthreadExit -sceHttpUriMerge -sceAudioOut2InitializeEx -sceMusicCoreServerSetShuffle -sceSaveDataGetSaveDataRootPath -scePlayReadyLicenseAcqGetAdditionalResponseData -sceLncUtilSetCdlgExec -sceNpManagerIntClearParentalControlInfo -sceDepthSetRoi -sceDeci4hClose -sceSystemServiceTelemetrySetData -sceNpSnsYouTubeCreateRequest -sceDeci4hDrfpSearchTbl -sceNgs2SystemQueryInfo -sceAudiodecDecode2WithPriorityEx -sceUserServiceGetNotificationBehavior -sceNpRemotePlaySessionSignalingManualUdpJoinSession -sceAudiodecClearContextEx -sceNgs2CalcWaveformBlock -sceSystemGestureInitializePrimitiveTouchRecognizer -sceImeBackendConvertCancel -sceNetCtlApRpGetResult -sceNetAddrConfig6Start -scePthreadAttrSetaffinity -sceAppContentAddcontUnmount -ScePsmMonoAddInternalCall -sceNpAsmClientGetServiceIdInfoA -sceSystemServiceReportAbnormalTermination -sceAudioInGetRerouteCount -sceUsbdClearHalt -sceNpTrophyConfigGetTrophyTitleDetails -sceMoveTrackerTerm -scePadReadHistory -sceUpsrvUpdateGetUrlForFeatureListBeta -sceSysUtilSendSystemNotificationWithAppInfo -sceVoiceQoSGetRemoteEndpointAttribute -sceDevUsbInitCP -sceGameCustomDataDialogClose -sceHmdInternalGetDebugSocialScreenMode -sceUserServiceGetEventVsh -sceAppContentGetAddcontInfoListByIroTag -sceAmprCommandBufferWriteCounterOnCompletion -sceDiscIdGet -sceDebugTriggerVrCaptureDump -scePlayReadyDomainCertEnumInit -sceMatMapDirectMemory -sceCesUtf32leToBig5 -sceNetSysctl -scePthreadAttrSetschedpolicy -_sceLibcMalloc -sceFiosDebugDumpOp -sceAudioOutMasteringSetParam -sceVideoStreamingEngineMediaKeysCreateSession -sceNpManagerIntGetOnlineId -sceUlpMgrVshUnmountCmd -sceNpManagerIntGetNpIdSdk -sceNpSetAdditionalScope -sceUserServiceSetPadSpeakerVolume -sceNpEntitlementAccessPollConsumableEntitlementInfo -sceVideoOutGetHdmiMonitorInfoNoMask_ -sceUserServiceGetPbtcMondayHoursEnd -scePthreadMutexSetspinloops -sceImeVshGetPanelPositionAndForm -sceNpManagerIntGetTicketA -sceAgcDcbWaitOnAddressGetSize -scePlayReadyCdmiDecryptMultipleOpaque -sceShellCoreUtilIsKilledOrSuspendedByLogout -sceNpUtilJidToNpId -scePs2EmuMenuDialogGetStatus -sceNpSessionSignalingManualUdpJoin -sceSystemServiceDisablePartyVoice -sceKernelAllocateToolMemory -sceDtcpIpCancelActivate -sceNetSocketClose -sceFsTransactionCancel -sceFaceShapeTrack -sceNpUniversalDataSystemTerminate -sceDtcpIpOpenContentAsync -sceNpUniversalDataSystemIntRecordArraySetInt32 -sceAudioInDeviceOpenEx -sceMbusConvertToLocalDeviceId -sceCesUtf16leToSJis -sceVideoRecordingGetSupportInfo -scePlayGoSetInstallSpeed -sceHmdInternalSetM2LedBrightness -sceFontFtSupportTrueType -_sceLibcLockInitialize -sceHmd2GetDeviceInformationByHandle -sceAudioOut2GetSpeakerArrayCoefficients -sceCompositorSetFilterType -sceNpUtilGetWebTraceSetting -sceShellCoreUtilNotifyFarsightUIDone -sceDeci4hDrfpClosedir -sceKernelCancelSema -sceNpSnsDailymotionDialogTerminate -sceDbgAmprAprGetNumberOfErrors -sceBluetoothHidRegisterDevice -sceNpUniversalDataSystemEventPropertyObjectSetFloat64 -sceVideoOutSysUpdateRenderingMode -sceNpSnsYouTubeDialogClose -sceHttpDeleteTemplate -sceCameraGetCalibDataForEve -sceUserServiceGetGlsIsRecDisabled -sceVideoCoreInterfaceCloseVideoOut -sceNpTrophy2GetGameInfo -sceKernelGetProcessTime -sceLoginMgrServerInitialize -scePlayerReviewDialogUpdateStatus -sceDeci4hDrfpFchstat_fuse -sceHmdInternalSetIPD -sceFiosGetAllFHs -sceGnmDriverInternalRetrieveGnmInterfaceForGpuDebugger -sceUlpMgrUnregisterProtocol -sceCesUcsProfileInitIso2022JpCp50221 -sceGnmUpdatePsShader -sceFiosSetThreadDefaultOpAttr -sceGnmFindResourcesPublic -sceSdecGetVersionSw2 -sceNpMatching2RegisterLobbyEventCallback -sceNpTusSetData -sceSslGetAlpnSelected -sceSaveDataCheckIpmiIfSize -sceDbgMapperVirtualQuery -sceKernelGetProcessTypeOfBudget -sceGnmGetResourceBaseAddressAndSizeInBytes -sceCompositorMakeCanvasHandle -sceShellCoreUtilSetIDUMode -sceHmd2ReprojectionTerminate -pthread_single_np -sceNpTrophySystemGetDbgParamInt -sceKernelAddUserEvent -ScePsmMonoSetDirs -sceAmprAmmMeasureAmmCommandSizeMapAsPrt -sceShellCoreUtilDeleteDownloadedNetEvConfigFile -sceDevUsbDeleteHostRawKevent -sceFontCreateGraphicsService -sceLibcPafMspaceReallocalign -scePktMgrGetUlpCmdHdr -sceUserServiceGetGlsCommunityId -sceVideoOutGetPortStatusInfoByBusSpecifier_ -sceCesUtf32leToSJis -sceNpTusGetMultiSlotDataStatusForCrossSaveVUserAsync -sceRazorCaptureSinceLastFlip -sceAmprCommandBufferConstructMarker -sceAudioOutExPtOpen -sceUlpMgrSetNetmpListenSock -sceNpTusAddAndGetVariableForCrossSaveVUser -sceSystemGestureUpdateTouchRecognizerRectangle -sceFontGetFontGlyphsOutlineProfile -sceAgcDriverGetAllocatedToolMemoryForGpuReset -sceVideoOutSysIsUserStatusVr -sceImeBackendTemporalConfirm -sceNpUtilJsonUnescape -sceUsbStorageUnregisterCallbackForMapUnavailable -sceShellCoreUtilGetCrashReportStatus -sceBluetoothHidRegisterCallback -sceShareUtilityAdvanceFromFileWithTitleIdList -sceSystemServiceGetParentSocketForPsmKit -pthread_cleanup_push -sceDtcpIpStartSeq -sceVideoRecordingRestModeProcessGetStatus -sceMusicFwGetNetworkState -sceMusicPlayerServiceSetTrackList -sceKernelSignalSema -sceLncUtilActivateCdlg -sceAudioOut2ContextSetAttributes -sceShellCoreUtilIsTitleWorkaroundEnabled -pthread_suspend_np -sceNpScoreCensorCommentAsync -sceFaceShapeFit -sceVencDeleteEncoder -sceSocialScreenDialogClose -sceFsDevpfsInitFetchMetaEntryCtx -sceSysmoduleGetModuleInfoForUnwind -sceFiosOpGetPath -sceHttpRequestGetAllHeaders -sceAmprMeasureCommandSizeWriteAddress_04_00 -sceVideoCoreInterfaceOpenVideoOut -sceVideoNativeExtEssential_IsInit -sceRnpsAppMgrGetUpdateProgress -sceNpPartyGetMemberSessionInfo -sceNpAsmClientDeleteResourceContext2 -sceNpRemotePlaySessionSignalingSetCustomProperty -sceHmdInternalMirroringModeSetAspect -sceSpPthreadCondWait -sceLibcHeapSetAddressRangeCallback -sceNpPush2RegisterExtendedDataFilter -sceSystemServiceGetGpuLoadEmulationMode -sceVideoOutAddBuffer -sceSpPthreadMutexattrSetprotocol -sceNetCtlApGetResult -sceShareCaptureVideoClip -sceAudioInVmicWrite -sceNgs2SystemGetUserData -sceNpUniversalDataSystemEventPropertyArraySetString -sceNpUtilCanonicalizeNpIdForPs4 -sceAmprMeasureCommandSizeWriteCounterOnCompletion -sceKernelSetGpuCu -sceUserServiceSetVolumeForController -sceUserServiceGetLastLoginOrder -pthread_barrierattr_init -sceKernelGetGPI -sceLncUtilDeactivateCdlg -sceFontGraphicsStructureCanvas -scePthreadDetach -sceAmprCommandBufferSetMarker -scePadGetDeviceInfo -sceVoiceGetMemorySize -sceDebugIpmiGetChannelKidList -sceSaveDataDialogOpen -sceNpTusSetDataAAsync -_sceNpManagerDestroyMemory -sceAudio3dObjectSetAttributes -sceGnmDrawIndirect -sceSystemServiceGetMainAppTitleId -sceKernelGetThreadName -sceNetConfigDelRoute6 -sceSystemServiceUsbStorageUnregisterCallbackForMapAvailable -sceKernelWrite -scePadGetInfoByPortType -scePadIsMoveConnected -sceCompsoitorGetGpuClock -sceUserServiceGetGlsLiveQuality5 -sceDeci4hDrfpChkInValidDeciHead -sceNetConfigSetDefaultRoute6 -sceKernelReserveSystemDirectMemory -sceNpLwMutexDestroy -sceAudioOutGetSparkVss -sceUserServiceGetHrtf -sceRemoteplaySetLogLevel -pthread_mutex_setspinloops_np -sceKernelAddProcessToCanvasMap -sceClPthreadMutexInit -sceSblACMgrCheckPlatformDLL -sceNpTrophySystemNetSyncTitle -sceSslReuseConnection -sceFiosOpGetRequestCount -sceKernelRename -sceFiosOpGetBuffer -sceSaveDataSetEventInfo -sceSystemLogger2NativeQueueClientSetDeliveryResult -sceUserServiceGetNotificationSettings_2 -scePthreadMutexattrSetprioceiling -sceSpPthreadCondattrInit -sceCesMbcsUcsContextInit -sceAppInstUtilInitialize -sceVoiceStart -sceCesRefersUcsProfileIso8859_13 -scePthreadMain -sceNpUniversalDataSystemEventPropertyObjectSetInt64 -sceUserServiceSetGlsCameraEdgeLevel -sceKernelAddTimerEvent -sceAgcDcbAcquireMem -sceKernelGetQafExpirationTimeNotafterForRcmgr -sceRemoteplayImeNotifyEventResult -sceApplicationDebugSpawnDaemon -_sceNpIpcDefaultMallocImpl -sceSpPthreadMutexattrDestroy -sceHttpUnsetEpoll -sceVisionManagerGenerateRegisterUserDataInitialize -sceGnmSdmaOpen -sceDepthLoadCalibrationData -sceFsUfsExtendFile -sceAgcDriverGetEqEventType -sceAudioDeviceControlSet -sceApplicationSendDebugSpawnResult2 -sceNpUniversalDataSystemIntGetMemoryStat -sceNpOpenEventFlag -sceGpuExceptionAddRazorHandler -sceUserServiceGetNpNpId -sceUserServiceGetRegisteredUserIdList -sceUserServiceGetCurrentUserGroupIndex -sceCesEucJpToUtf32be -sceAppInstUtilGetConfigList -sceAppInstUtilMountBdEmu -sceFontGraphicsStructureVertexesGlyph -sceAvSettingGetHdmiKsvList -sceVrTrackerCpuProcess -sceDeci5Write -scePssCameraSetConfigType -sceNpTusSetMultiSlotVariableAsync -sceDebugGetUltListOfUltRuntime -sceM4aacEncDeleteEncoderEx -sceShareFactoryUtilLaunchShareFactory -sceImeBackendPartConfirm -pthread_setaffinity_np -sceAjmBatchJobDecodeSingle -sceHttpUriBuild -sceMusicPlayerServiceSeek -sceNpEntitlementAccessGetEntitlementKey -sceVisionManagerGetResultOfCalibrateStereoCamera -sceSystemServiceChangeNumberOfGpuCu -sceNpWebApiDeleteHandle -sceDepthQueryMemory -sceAudioInOpen -scePlayReadyCdmiRemove -sceCameraGetCalibDataFromDevice -sceFontDestroyGraphicsDevice -sceKernelWriteWriteAddressCommand -sceNpTusGetDataVUserAsync -sceFsInitCreatePfsTrophyDataOpt -sceClHttpWaitRequest -sceGnmValidateGetDiagnostics -sceDataTransferAbortRequest -sceShellCoreUtilAccessibilityZoomLock -sceDebugGetDataListOfUltQueue -sceNpIpcClientInitInternal -sceClHttpAddRequestHeader -sceKernelAioDeleteRequest -sceGameCustomDataDialogOpen -scePsmUtilFinalize -sceCesUcsProfileInitSJis1997X0208 -sceVideoOutGetBufferInformation -sceNpTrophy2SystemDebugUnlockTrophy -sceHttp2CookieFlush -sceSdmaFenceNonBlocking -sceSystemServiceShowClosedCaptionSettings -scePadReadStateExt -sceNetCtlApDialogTerminate -sceGameLiveStreamingUnregisterCallback -sceContentDeleteTerminate -sceVdecswFinalizeDecodeSequence -sceVideoOutSysModeIsSystemDefault -sceShellCoreUtilDownloadTitleWorkaroundFileFromServer -sceClKernelMunmap -sceNetConfigDelMRoute -sceClSendSystemNotification -sceCompositorSetSeparateContextCommand -sceUserServiceGetParentalGameWhiteList -sceMatInitialize -sceNpManagerIntClearOnlineIdChangeFlag -sceKernelWriteMapCommand2 -sceNpUtilXmlEscape -sceAppContentGetAddcontDownloadProgress -sceCesUtf32ToGb -sceUserServiceSetFriendFlag -sceUserServiceCreateGuestUser -sceClAudiodecDeleteDecoder -sceFiosOpDelete -ScePsmMonoClassFromName -sceTsGetNextUnitData -sceUserServiceGetPbtcFridayHoursEnd -scePthreadBarrierInit -sceCesUcsProfileInitEucJis2004 -sceHmdInternalDfuGetStatus -sceCompositorSetEventCommand -sceNpEulaDialogGetResult -sceCesSJisToUtf32 -sceShellCoreUtilGetAutoPowerDownRemainingSeconds -sceDbgUserChannelPrintf -sceAudioInSetMicLevel -sceKernelPrepareToSuspendProcess -sceUserServiceGetNotificationSettings -sceNetEventCallbackWaitCB -sceMbusDebugGetPriorityInfo -sceFsUfsAllocateSaveData -sceUserServiceSetSystemLoggerHashedAccountId -sceFsMlfsMountWithFlags -sceVnaSetSessionTimeoutSettings -sceFontGetAttribute -sceAgcDriverFindResourcesPublic -sceAjmBatchJobSetResampleParametersEx -sceNpMatching2GetRoomMemberDataInternal -sceNetGetIfnameNumList -scePthreadMutexGetprioceiling -sceDebugStopChildProcesses -sceMusicCoreServerTerminate -sceNpManagerIntRemoveOnlineIdChangeCallback -sceCoredumpAttachUserFile -sceOpusSilkEncCtl -sceNetCtlApAppInitWpaKeyForQa -sceAudioOutGetSystemInfoEx -sceGnmDrawIndexIndirectMulti -sceAudioInDeviceHqOpen -sceClHttpAbortRequest -sceDataTransferAbortFgTransfer -sceFontGraphicsUpdateClipping -sceDbgAssertionHandler -sceFiosFHClose -sceDebugGetSyncWaiterList -sceAjmBatchStart -sceVideoOutVrrPegToFixedRate -pthread_mutexattr_setprotocol -sceBgftServiceIntDownloadGetProgress -sceSystemServiceGetPlatformPrivacyDefinitionData -sceGnmSetPsShader350 -sceGnmCreateWorkloadStream -sceUserServiceGetParentalDvd -sceAudioPropagationSourceSetAudioPaths -sceAvControlIsHdrSupportedByMonitorInfo -sceShareFeatureProhibit -_sceLibcUnwindMutexInit -sceUltConditionVariableWait -sceNpInt32ToStr -sceS3dConversionQueryAttr -sceSaveDataDebugGetThreadId -sceNpSignalingCreateContext -sceImeBackendOpen -sceAvSettingControlHdcpEncryption -sceAppMessagingSendMsgToShellUI -sceNpUniversalDataSystemCreateContext -sceNpSnsIntFbGetGameAccessToken -sceDeci4hRead -sceDebugInit -sceLoginMgrServerDialogGetOpenParam -sceHmdInternalAnotherScreenSendVideo -sceNpTusDeleteMultiSlotDataAAsync -sceSharePlayResumeScreenForCdlg -sceNpScoreGetFriendsRankingAAsync -sceVrServiceDialogOpen -sceApplicationSwitchToNeoMode -sceBgftServiceIntDownloadGetGameAndGameAcProgress -sceDebugIpmiGetServerInfo -sceDbgKeyboardGetKey2Char -scePthreadAttrDestroy -sceLncUtilSetRemotePlayServiceFlag -scePlayReadyDomainJoinProcessResponse -sceHttpCreateEpoll -sceUserServiceSetGlsIsMuteEnabled -sceNpManagerIntSignout -sceHmd2ReprojectionSetUserEventEnd -sceUserServiceGetGlsAccessTokenNiconicoLive -sceSystemServiceDisableMediaPlay -sceSystemServiceReceiveEvent -sceSaveDataGetMountInfo -sceNpTusGetMultiSlotDataStatusAVUserAsync -sceCamera2SetContrast -sceCesUcs2ToSbc -sceHmdInternalGetRequiredPUPVersion -sceNpTusGetFriendsDataStatusForCrossSaveAsync -sceCameraIsConnectedForSystem -sceNetApctlUnregisterCallback -sceShareFactoryUtilTerminate -sceVideodec2GetVp9PictureInfo -sceNpEntitlementAccessPollConsumeEntitlement -sceNetConfigWlanAdhocClearWakeOnWlan -sceNetSyncCreate -sceNetDhcpStop -sceNpManagerIntWebLoginRequired -sceMbusGetDeviceInfoByCondition -pthread_key_delete -sceHmdReprojectionSetCallback -scePadVrControllerSetTriggerEffect -sceFontCharacterGetBidiLevel -sceAgcDcbSetNumInstancesGetSize -scePerfPmcStopProc -sceCesUtf16ToMbc -scePlayReadyFinalize -sceNpTrophyConfigGetTrophySetInfoInGroup -scePktMgrIsRecvDataReady -sceUserServiceGetFileSelectorSortTitle -sceVencStartEncode -sceNpManagerIntSigninByJson -sceNpTusGetMultiUserVariable -sceNpSnsTwitchDialogGetResult -sceNpTusSetThreadParam -sceFontCharacterRefersTextBack -sceMsgDialogProgressBarSetMsg -sceNetConfigUpInterfaceWithFlags -ScePsmMonoRuntimeResourceSetCallback -sceKeyboardReadState -sceCesUtf8StrToIso2022Str -sceGnmQueryResourceRegistrationUserMemoryRequirements -sceNpTrophy2GetGroupIcon -sceLibcPafMspaceMallocUsableSize -sceVideoNativeExtEssential_Initialize -sceVrTracker2Initialize -sceVideoOutSysCursorDisable -sceRemoteplayDisconnect -sceNpTusAddAndGetVariableForCrossSaveVUserAsync -scePlayReadyBufferInit -sceGameRightGetLogoPngImage -sceUltQueueTryPush -sceSocialScreenSetMode -scePerfTracePmGetInfo -sceNetInitParam -sceNpPushUnregisterNotificationCallback -sceNetGetRouteInfo -sceNetGetMacAddress -sceRudpEnableInternalIOThread -sceAudioInIsSharedDevice -sceHmdInternalDfuCheckAfterPvt -sceDebugGetThreadInfo -sceApplicationSpawnDaemon -sceNpManagerIntClearTicket -sceNpSignalingDeactivateConnection -scePthreadRwlockInit -sceRnpsAppMgrBlockAppInstall -sceGpuExceptionRemoveDebuggerHandler -scePthreadCreate -sceAgcDriverSubmitMultiDcbs -sceBgftServiceIntSetTaskVisible -sceAudiodecClearContext -sceAudioOutExOpen -sched_yield -scePerfTraceSpmRead -sceGnmRequestFlipAndSubmitDoneForWorkload -sceUserServiceGetGlsBroadcastUiLayout -sceSlimglCompositorFlush -sceHttp2SetCookieMaxSize -sceMouseSetProcessPrivilege -sceNpWaitSema -sceVnaRequestTts -sceHmdClose -sceNpAsmClientGetGameTitleBanInfo -sceNpAuthCreateRequest -sceCompositorCommandGpuPerfBegin -sceGameLiveStreamingClearSpoilerTag -scePerfTraceIoControllerStop -sceShellCoreUtilStartRebootTimer -sceUserServiceGetNpAccountId -sceAc3EncIsEncoding -sceAgcDcbDrawIndexGetSize -sceMsgDialogUpdateStatus -sceOpusCeltDecDecode -sceNpWebApiSetHandleTimeout -sceMatNewFrame -sceTsReleaseBuffer -sceVideoCoreMediaSourceGetInputBufferEmptySize -_sceUltQueueDataResourcePoolOptParamInitialize -scePsmUtilGetPsmIniFile -sceSystemStateMgrWakeUp -sceHttpDbgGetConnectionStat -sceAmprAmmMeasureAmmCommandSizeMap -sceLibcPafMspaceCreate -sceShareUtilityAdvanceFromFileWithContentIdList -sceAvSettingGetMorpheusPuStatus -sceBgftServiceIntDownloadUnregisterTask -sceNpCreateEventFlag -sceAmprMeasureCommandSizeWaitOnCounter -sceUserServiceSetParentalBrowser -sceFiosFileGetSize -sceAudioInSetNoiseGateThreshold -sceSystemServiceKillLocalProcess -sceHmdInternalResetInertialSensor -sceVideoOutGetResolutionStatus -sceAgcSetUcRegIndirectPatchSetAddress -sceHmdSetupDialogGetResult -sceSaveDataGetCloudQuotaInfo -sceAgcAcbPopMarker -sceNpManagerIntGetSigninState -sceVideoCoreGetThumbnail -sceNpManagerIntCreateLoginContext -sceZlibFinalize -scePadClose -sceClPthreadCondSignal -sceCesRefersUcsProfileKoi8U -sceCesUcsProfileInitGb18030_2000 -ScePsmMonoDelegateFreeFtnptr -sceUserServiceSetGlsIsRecDisabled -sceNpWordFilterCreateTitleCtxA -sceNpSnsIntPostOpenGraph -scePthreadCondattrGetclock -sceNgs2CustomRackGetModuleInfo -sceUserServiceGetAppearOfflineSetting -sceRazorCpuWorkloadSubmit -sceCesUtf16ToGb -sceAvSettingSetProcessAttribute -sceFontGraphicsTextureRefersSurface -sceKernelGetGPO -sceNpManagerUtilSystemMessage -scePigletGetUsageVSH -sceNetConfigWlanApStop -sceNetCtlApRpStop -sceFontSetupRenderScalePixel -sceAudiodReportUnregisterHandler -sceHmdGetViewStatus -sceVisionManagerGetRegisterUserDataSize -sceHidControlSetUserColor -sceSulphaGetNeededMemory -scePthreadCondattrSetpshared -sceKernelWriteWaitOnAddressCommand -sceNpMatching2CreateContextInternal -sceRegMgrNonSysSetBin -sceVorbisDecTimeSeek -ScePsmMonoStringNewWrapper -sceKeyboardMbusInit -sceFontGraphicsSequenceGetAgcCommandsForJump -_sceFiberInitializeWithInternalOptionImpl -sceNpTrophySystemGetTrophyData -sceNpManagerIntGetAccountCountry -sceDepthSetCommands -sceDebugIpmiGetDump -sceFontGetTypographicDesign -sceNpManagerIntGetOfflineAccountId -scePadOpenExt2 -sceMatRegisterResourceType -sceFontSupportGlyphs -sceVideoOutCursorSetPositionStereo -sceScreenShotSetOverlayImageWithOrigin -sceAgcDcbSetCfRegisterDirect -sceUpsrvUpdateGetFeatureList -scePlayGoGetChunkId -sceCesUhcToUcs2 -sceAppContentGetRegion -sceNpWebApiGetHttpResponseHeaderValueLength -sceNpUniversalDataSystemEventPropertyObjectSetObject -sceEditMp4SetFinishCallback -sceUserServiceGetGlsMessageFilterLevel -sceNpSnsTwitchDialogTerminate -sceNpUniversalDataSystemIntTerminate -sceDtsEncFlush -sceVrTrackerGetResult -sceFontGraphicsStructureDesign -scePadEnableAutoDetect -sceFsExfatfsMkfs -sceNpWebApiCreateHandle -sceMbusDebugAcquireControlList -scePlayReadyApiStop -sceMusicPlayerServiceStop -sceCesUtf16StrGetMbcsLen -sceCesRefersUcsProfileIso8859_4 -sceNpBase64UrlGetDecodeSize -sceSaveDataGetSaveDataMemory -sceFiosCacheContainsFileRangeSync -sceNpGriefReportCdAbortRequest -sceCesUcs2ToEucJp -sceUserServiceSetVolumeForMorpheusSidetone -sceAjmBatchJobControl -sceShellCoreUtilGetEntitlementIdFromNpEntitlementMgr -sceBgftServiceIntDownloadRegisterTaskByStorage -scePlayReadyProfileStart -pthread_mutex_lock -sceFsUfsGetExtentMap -sceAgcSdmaCopyLinear -sceUserServiceSetAppearOfflineSetting -sceShareUtilityAdvanceSetPlayingContent -sceMbusChangeAppModuleState -sceShellCoreUtilRequestShutdown -scalbln -sceNpTrophyConfigGetTrophyGroupDetails -sceUserServiceSetPasscode -sceNgs2GeomResetListenerParam -sceVideodec2GetHevcPictureInfo -sceNpUniversalDataSystemIntDestroyRecordObject -sceSlimglCompositorSetIndirectCanvasCommand -sceAudio3dAudioOutOutput -sceCompositorReserveCommandBuffer -sceSlimglClientMonitorServerStart -scePerfPmcSelectEvent -sceKernelIccIndicatorStandbyBoot -sceLibcFopenWithFD -scePlayReadyLicenseAcqProcessAckResponse -sceRemoteplayProhibitStreaming -sceShareSetContentParam -sceVideoRecordingOpen -sceSslGetNameEntryInfo -sceCustomMusicCoreBgmOpen2 -sceUserServiceSetIsFakePlus -sceMusicPlayerServiceEndTransaction -sceNpScoreGetFriendsRankingAsync -sceHttpCacheSetData -sceAudioOutSetSystemDebugState -sceCesRefersUcsProfileIso8859_6 -sceUsbdFillControlTransfer -sceVideoOutSysGetBus -sceDebugGetSyncObjectList -sceRegMgrMemset -sceNpTrophySystemGetTitleIcon -sceHttpsFreeCaList -sceUserServiceGetPbtcWednesdayHoursStart -scanf -sceUserServiceSetPbtcMondayHoursStart -sceGnmSqttSetHiWater -pthread_equal -sceHttpSetCookieMaxSize -sceVdecCoreMapMemoryBlock -sceDtcpIpGetErrorCode -sceNetBandwidthControlSetPolicy -sceMoveTrackerRecordStop -pthread_attr_setinheritsched -scePngEncCreate -sceHmdReprojectionSetUserEventStart -sceAppContentTemporaryDataMount -sceDepthSetPostFilterParameter -sceVoiceChatRequestDeleteGameSessionVoiceChatChannel -sceSystemServiceKillLocalProcessForPsmKit -sceAppInstUtilAppAllowDownloadInstall -sceNpTrophy2SystemDestroyContext -sceAppContentAddcontEnqueueDownload -sceLibcPafMspacePosixMemalign -sceKernelGetPagingStatsOfAllThreads -sceVideoOutLockBuffer -sceHttpGetEpoll -_sceDepthDisplayDebugScreen -sceAjmBatchJobRunSplitBufferRa -scePssThreadIsActive -sceUpsrvUpdateCancelBDUpdate -sceVideoCoreChangeHdcpSetting -scePrintUlpResHdr -sceEsvmEngineMediaKeySessionUpdate -sceNpTrophy2SystemGetTrophyTitleConf -sceAgcWaitRegMemPatchReference -sceAmprMeasureCommandSizeReadFileScatter -sceMusicCoreServerGetTitleId -sceCesBig5ToUtf16be -sceCustomMusicCoreGetSystemAudioVolume -sceKernelReserveVirtualRange -sceUserServiceSetHoldAudioOutDevice -sceSpNetEpollAbort -sceLncUtilIsDiscPlayerForeground -sceGnmInsertPopMarker -sceSystemStateMgrStartShutdownTimer -sceLoginMgrServerGetMoveAssignmentModeForIDU -scePerfPmcMcSeqStop -sceFsUfsHideBlocksFromUser -sceFontCreateWritingLine -sceHttpCacheRevalidate -sceKernelGetCurrentFanDuty -sceVencCoreQueryHeader -sceAgcCbCondWrite -sceNpTusGetMultiSlotDataStatusAAsync -sceKernelClearEventFlag -sceAudioOut2MasteringInitEx -sceNpManagerIntSignin -sceNpMatching2ContextStart -sceUrlConfigResolverGetDefaultQueryParameter -sceVshAvcapInit -sceSslGetIssuerName -sceVshctlSetPartyStatus -sceFontStyleFrameGetScalePoint -sceNpTrophy2SystemIsServerAvailable -sceNetConfigWlanAdhocScanJoin -sceAppInstUtilAppInstallGetLinkState -sceAudioPropagationSystemQueryMemory -sceRazorCpuUserSignalWaitBegin -sceRegMgrGetVersionForPS4 -sceShellCoreUtilResetBgdcConfig -sceLncUtilGetCdlgExec -ScePsmMonoDebuggerAgentParseOptions -sceUserServiceGetAccountRemarks -sceShellCoreUtilRequestEjectDevice -sceValidationGpuGetDiagnostics -scePthreadAttrGetaffinity -scePlayGoGetInstallChunkId -sceVoiceQoSDisableChat -sceFontGlyphDefineAttribute -scePadStartRecording -sceNpWebApi2IntPushEventCreateDestPs4CtxIndFilter -sceAjmBatchJobSetResampleParameters -sceSpNetResolverAbort -sceCesGbUcsProfileSet4ByteCharRange -sceNpTusGetMultiUserVariableForCrossSaveVUserAsync -sceFsUfsAllocateDownloadData -sceNpTusGetMultiSlotDataStatusA -ScePsmMonoStringLength -sceSystemServiceTelemetrySetData2 -sceHeadTrackerFinalize -sceMbusUserLogin -sceDeviceServiceInitialize -sceKeyboardGetDeviceInfo -sceVideodec2Decode -sceNpLookupCreateTitleCtx -sceKernelWriteDipswData -sceKernelGetResource -sceFaceTrackerRegisterRecoveryFromLostTargetCallback -sceNpServiceCheckerIntDestroyRequest -sceAvSettingCloseLoopbackBuffers -sceSaveDataSetParam -sceMbusStartAudioOutAuxBroadcast -sceNpWordFilterWaitAsync -sceAppInstUtilAppInstallPs4CloudGame -sceUserServiceGetSaveDataTutorialFlag -sceSystemStateMgrLeaveMediaPlaybackMode -ScePsmMonoRegisterBundledAssemblies -sceHmdDistortionSetOutputMinColor -sceMbusDebugStartApplicationNull -sceAppInstUtilAppGetIrremovableAppList -sceFiosDebugDumpError -sceImeBackendReset -scePadSetVibrationForce -sceNpFriendListDialogGetStatus -sceKernelGetCompiledSdkVersionByPid -sceAudioOutSetPadSpkVolume -sceNpMatching2SignalingGetPeerNetInfo -sceNpLookupNetCreateTitleCtx -sceAgcDriverSetValidationErrorOutputFrequency -sceCesRefersUcsProfileJisX0201RomanTilde0x7e -atexit -sceHmd2ReprojectionGetStatus -sceFiosIsValidHandle -sceHmdInternalSetVirtualDisplayDepth -sceHmdGetDistortionWorkMemoryAlign -sceUserServiceGetGlsIsCameraHidden -_sceNpManagerFreeImpl -sceKernelSlvNotifyError -sceCesEucKrToUtf32 -sceNetInetPton -sceNetConfigSetIfaddr -sceFrontPanelDisplaySetOutputMode -sceAgcAcbPushMarkerSpan -sceUsbdFillControlSetup -sceVideoOutAdjustColor2_ -sceSystemServiceDisableNoticeScreenSkipFlagAutoSet -sceUpsrvUpdateGetBetaAgreementUrlForUpdate -sceCamera2SetExposureGain -sceCameraSetRegister -sceIduUtilGetNumInstalledApps -sceAgcDcbSetIndexCount -sceAppInstUtilGetMainAppTitleId -pthread_rwlockattr_settype_np -sceClPthreadAttrSetinheritsched -sceNetCtlClearEventIpcInt -_sceKernelRtldThreadAtexitDecrement -sceBgftServiceTerm -sceVnaCancelTts -sceKernelGetUtokenExpirationTimeNotafterForRcmgr -sceUserServiceSetGlsCameraDepthLevel -sceUserServiceSetTopMenuTutorialFlag -sceSystemServiceShowErrorDialog -sceFontGetResolutionDpi -sceAvSettingSetVideoOutModeInvalid_ -sceMbusSetDeviceFunctionState -sceAppInstUtilAppUnInstallTypes -sceRtcEnd -sceUltReaderWriterLockUnlockRead -sceDeci5Read -sceCesSbcToUtf32be -sceAmprAmmCommandBufferMapDirect -sceUserServiceSetImeAutoCapitalEnabled -sceKernelIccGetErrLog -scePsmTerminate -sceKernelSetProcessName -sceNpGetAccountDateOfBirth -sceNpWebApiIntInitialize -sceUserServiceSetNpMAccountId -sceGnmPaEnableFlipCallbacks -sceCameraSetVideoSyncInternal -sceApplicationSetControllerFocusPermissionToSubProcess -sceVideoOutSysGetResolutionStatus -sceInvitationDialogGetResult -sceAudioOut2PortSetAttributes -sceDebugResumeApplication -sceUserServiceGetGlsAccessTokenTwitch -sceRtcConvertLocalTimeToUtc -sceNpCheckNpAvailabilityA -sceKernelIsCEX -sceAmprCommandBufferConstructor -sceNpTrophySystemDbgCtl -sceApplicationIsSuspendable -sceFsGetSmrInfo -sceCompositorGetAnotherProcessSystemSize -sceAudioPropagationRoomCreate -scePadTrackerGetWorkingMemorySize -sceNpMatching2GetSslMemoryInfo -sceKernelMapSanitizerShadowMemory -sceFiosFHToFileno -sceFiosCacheFlushFileRangeSync -sceNetCtlApRpUnregisterCallback -sceFsBindApplication -sceAcmBatchStartBuffers -sceHmdReprojectionStartMultilayer -sceUpsrvUpdateGetFeatureListUrlForSystemExUpdate -sceFontDefineAttribute -sceUserServiceSetHrtf -sceUltMutexLock -sceNpCloseSema -sceShareUtilityOpenShareMenuDefault -sceAudio3dDeleteSpeakerArray -sceAppInstUtilAppGetAddcontListAll -sceFiosOverlayResolveSync -sceWkFontConfigGetFontName -sceVoiceChatRequestCreateVoiceChatGroup -sceCustomMusicCoreGetHdcpStatus -sceImeDialogGetPanelPositionAndForm -sceLibSecureHashHmac -sceNpManagerIntUpdateVshTokenA -sceNpScoreGetFriendsRanking -sceHttpSetDefaultAcceptEncodingGZIPEnabled -sceBgftServiceIntUploadGetProgress -sceGnmDrawInitToDefaultContextState -sceDebugIpmiGetConnectionInfoList -sceRtcGetCurrentClock -sceCesGbToUtf32le -sceUsbStorageRegisterCallbackForMapUnavailable -sceKernelDeleteEventFlag -sceAutoMounterClientGetUsbDeviceInfo -sceAudioInCountPorts -sceDepthSetRoiset -sceUserServiceGetSystemLoggerHashedAccountId -sceTextToSpeech2Speak -sceCompanionHttpdAddHeader -sceClHttpSetNonblock -sceShareOpenMenuForContent -sceUsbdGetDeviceList -sceKernelQueryToolMemory -sceDeci4hDrfpStat -s_sceLibcMallocState -sceCesUtf16leToUhc -sceKernelDebugReleaseDebugContext -sceBgftServiceIntDownloadGetPatchGoProgress -sceNpProfileDialogGetResult -sceNetSetDnsInfoToKernel -sceAmprAmmMeasureAmmCommandSizeRemap -sceKernelDeleteGpuExceptionEvent -sceVshAvcapReadAudio -sceSocialScreenGetIgnoreSeparateMode -sceLncUtilSuspendBackgroundApp -sceCesRefersUcsProfileCp857 -sceUserServiceGetNpCountryCode -sceNpSessionSignalingManualUdpCreateJoin -sceRtcGetTick -sceUserServiceSetPbtcSaturdayHoursEnd -sceBgftServiceIntAbortNotificationEvent -scePlayReadyCdmiSetSessionCallbacks -sceCoredumpRegisterCoredumpHandler -sceVnaSetEnableAssistantLegalCheckStatus -sceHttpCacheCreateRequestWithTag -scePssSoundPlayerGetPlayState -sceApplicationGetCoreFileName -sceCameraSetConfigInternal -sceInvitationDialogUpdateStatus -sceNpCalloutInitCtx -sceAudioOut2PortCreateEx -sceHmdInternalPushVr2dData -scePngEncQueryMemorySize -sceNpDbgAssignDebugId -sceLibSecureCryptographyResetContext -sceJpegDecDecodeWithInputControl -sceUserServiceGetGlsCameraChromaKeyLevel -scePerfPmcL2iStart -sceAvControlSetGamutMetadata -sceFsUfsCollectTelemetry2 -sceFiosSaveTimeStamp -sceNpUniversalDataSystemIntRecordObjectSetArray -sceLncUtilContinueApp -sceFsDevpfsFsck -sceShellCoreUtilGetIDUMode -sceHmdReprojectionClearUserEventEnd -sceAppInstUtilAppCancelableUnInstall -sceClHttpInit -sceEsvmEngineMediaKeysSetEventHandler -sceUserServiceSetPbtcMode -sceKernelGetProcParam -sceNpIpcAbortRequest -sceAudioOutSuspendResume -sceCameraSetAttributeInternal -sceNpManagerIntSetCheckPlusResult -sceShellCoreUtilGetHidConfigFileString -sceNpManagerIntBindOfflineAccountId -sceBgftServiceIntDownloadStartTaskAll -sceUserServiceSetPartyMuteListA -sceKernelIccIndicatorStandby -sceFontGraphicsSetupRotation -sceDataTransferHostAbort -sceCesRefersUcsProfileCp1251 -sceAppContentAppParamGetInt -sceRtcParseRFC3339 -sceNpRemotePlaySessionSignalingAbortConnection -sceRegMgrBackupNeedMem -sceAudioOutSystemControlSet -sceCustomMusicServiceTerminate -sceCesSbcToUtf16le -sceNetCtlApRpStartWithRetry -sceCameraStart -sceRazorCpuJobManagerSequence -sceImeBackendParamInit -sceAppContentSmallSharedDataFormat -sceDataTransferRequestPrepareFgTransfer -sceFsMountLwfsCompat -pthread_getname_np -sceVisionManagerInitialize -sceKernelDebugOutText -sceNpWebApi2IntInitialize2 -sceAppInstUtilAppGetAppInstallStatus -sceKernelSetCoredumpAppInfo -sceCompositorCheckCrash -sceFsInitMountGamePkgOpt -sceGnmRegisterGdsResource -scePlayerSelectionDialogOpen -sceNpManagerPrxStopVsh -sceApplicationInitializeForShellCore -sceAppInstUtilGetExternalPs5AllSize -sceAudioOutA3dExit -scePthreadAttrGetsolosched -sceAgcDcbSetBaseDispatchIndirectArgsGetSize -sceSystemServiceNavigateToAnotherApp -sceUltReaderWriterLockTryLockWrite -sceNetHtonl -sceVoiceInit -sceRudpProcessEvents -scePthreadMutexLock -sceHandDetectionGetWorkingMemorySize -sceShellCoreUtilCheckerAbort -sceKernelPrepareDirectMemorySwap -sceCustomMusicCoreStopOperation -sceMatFree -sceUserServiceGetVoiceAgentEnableWup -sceKernelAioSetParam -sceSystemStateMgrRequestToKeepMainOnStandby -sceGnmSqttGetStatus -sceNpWebApi2DeleteUserContext -sceErrorDialogTerminate -sceHttp2GetStatusCode -_sceUltQueueCreate -sceNpAppLaunchLinkIntCreateRequest -sceNpPollEventFlag -sceEsvmEngineMediaKeySessionGetSessionId -sceDataTransferTargetAbortGetTitles -sceAudio3dPortGetAttributesSupported -sceRegMgrPrivateStorageCount -sceNpCommerceDialogInitializeInternal -sceSdmaConstantFill -sceKernelMtypeprotect -sceCompositorFlushWithRepeat -sceAudioOut2LoPortDestroy -sceShellCoreUtilGetRegion -scePerfTracePmEnable -sceDeviceServiceGetEventState -sceShellCoreUtilStopPsNowGame -scePadIsMoveReproductionModel -sceVideoCoreAcquireDecoderResource -sceNgs2VoiceQueryInfo -sceHmdInternalGetIPD -scePadDisconnectPort -sceDebugGetVirtualMemoryDetailInfoForCoredump -sceNpManagerIntCheckTitleSystemUpdate -scePlayReadyCdmiGetMediaKeyStatus -scalbnf -sceVrTrackerUpdateMotionSensorData -sceClPthreadMutexattrSettype -sceShellCoreUtilGetSuspendConfirmationDialogFlag -sceFontGraphicsSetupClipping -sceSystemServiceReenableMusicPlayer -sceFontGlyphRefersMetricsHorizontal -sceVorbisDecGetDecodePriority -sceAudioOut2LoInit -sceGameRightGetString -sceGnmSysGetClientNumber -sceKernelPollEventFlag -sceNpManagerIntGetAccountType -sceMatSetUserCallstackCapture -sceHttpGetAuthEnabled -sceVideoOutSysRemovePrivilege -sceNetGetStatisticsInfoInternal -sceLibcPafMspaceFree -sceNpScoreGetRankingByNpId -sceAcm_ConvReverb_SharedIr -sceM4aacEncTerminate -sceNpAsmClientSetNpTitleId -sceFiosFileTruncate -sceNetConfigWlanDiagSetAntenna -sceNpClearEventFlag -sceBgftServiceDownloadStopTaskAll -sceDepthHeadCandidateTrackerSetValidationInformation -sceShellCoreUtilEnterPowerLockSection -sceBgftServiceDownloadStartTask -sceRazorCpuUserSignalPost -sceHandDetection -sceNpSessionSignalingActivateUser -__cxa_guard_release -sceVideoStreamingEngineMediaKeySessionGenerateRequest -scePatchCheckerDestroyHandler -sceCesBig5ToUtf16le -sceCompositorSetInvisibleCanvasCommand -sceAudio3dBedWrite -sceVoiceQoSGetRemoteEndpoint -sceKernelGetRenderingMode -sceRazorCaptureCommandBuffersOnlySinceLastFlip -sceKernelGetMemoryPstate -sceNetApctlStartConf -sceIduIsStaffMode -sceNetInetNtop -sceCesRefersUcsProfileCp866 -sceCompositorGetClientList -sceCesEucCnToUtf16le -pthread_rename_np -sceNetRecv -sceKernelSetBackupRestoreMode -sceNpManagerIntGetNpIdInternal -sceNetCtlDisableBandwidthManagementIpcInt -sceAvPlayerPause -sceGameLiveStreamingTerminate -sceCesMbcToUcs2 -sceKernelJitGetSharedMemoryInfo -sceMbusConvertToMbusDeviceId -sceHmdInternalSetVRMode -pthread_rwlock_timedwrlock -sceCompositorReleaseLocalStall -sceSharePlayNotifyDialogOpen -sceVdecswQueryDecoderMemoryInfo -sceHttp2SendRequestAsync -sceEsvmEngineMediaKeySystemAccessDestroyMediaKeys -sceBdSchedGetExtentMap -sceGnmMapComputeQueueWithPriority -sceAvSettingSetDisplayBlackLevel -sceSaveDataGetAllSize -sceNpTitleMetadataIntCreateRequest -sceFsCreatePprPfsTrophyDataImage -sceKernelSetMemoryPstate -sceNpSetContentRestriction -sceNpMallocImpl -scePerfPmcNbStop -sceHmdInternalCrashReportReadDataSize -sceVideoStreamingEngineMediaKeySystemAccessDestroyMediaKeys -sceVnaUnregisterCallback -scePlayReadyLicenseAcqGenerateChallenge -sceNpManagerIntGetCommunicationRestrictionStatus -sceShellCoreUtilDownloadNetEvConfigFileFromServer -scePerfPmcClose -sceSocialScreenDialogTerminate -sceLibSecureHashGetBlockSize -sceHttpCacheRedirectedConnectionEnabled -sceRazorCpuInitDataTags -sceFontGraphicsUndefineIndexedVertexesGlyph -sceHttpInit -scePsmKitFontConfigGetFontName -sceVideoOutSysGetVideoOutModeByBusSpecifier -sceVdecswSyncDecodeInput -sceAgcGetDefaultCxStateFlat -sceNpWebApi2PushEventStartPushContextCallback -sceSysUtilSendNotificationRequest -sceUserServiceSetPbtcPlayTime -s_fixed_buf -sceVisionManagerRequestClose -sceHttp2SetResolveTimeOut -sceSdmaClose -sceUsbdClaimInterface -sceAgcDcbSetIndexIndirectArgsGetSize -sceUserServiceGetTeamShowAboutTeam -sceNpGriefReportCreateClient -sceNpSessionSignalingGetGroupFromPeerAddress -sceFsSetSystemReserveSize -sceLncUtilEnableSuspendNotification -sceAudioOutStopAuxBroadcast -sceVideoCoreInterfaceGetCanvasVideoBufferAddress -sceCesMbcToUtf32 -sceNetCtlApGetState -sceUserServiceSetThemeEntitlementId -sceCesEucCnToUtf8 -sceNpSignalingGetConnectionInfo -sceNpScoreRecordScoreAsync -sceMusicFwSkipPrevious -sceSaveDataGetProgress -sceAgcDriverQueryResourceRegistrationUserMemoryRequirements -sceContentExportFromData -sceFiosFHCloseSync -sceFontGraphicsAppendGradientSegment -sceDataTransferTargetRequestLaunch -sceUserServiceSetIsRemotePlayAllowed -sceNpAppLaunchLinkIntAbortRequest -sceNgs2SystemResetOption -sceGnmSqttGetWritebackLabels -sceTsSetAvailableBW -sceVrTrackerGpuWaitAndCpuProcess -sceDebugReadThreadRegister -sceGnmSqttSetTraceBuffers -sceKernelSandboxPath -sceKernelAprSubmitCommandBufferAndGetResult -sceNpAppInfoIntCheckAvailabilityA -sceSlimglServerSetupGetDomainSocket -sceLoginMgrServerCreateUser -sceVoiceQoSEnd -sceVideoStreamingEngineMediaKeySystemAccessGetKeySystem -sceAgcDriverSetWorkloadStreamInactive -sceNpUniversalDataSystemDestroyHandle -sceHidControlGetJediExtensionUnitInfo -sceNpMatching2KickoutRoomMember -sceKernelUnlink -sceLibcPafMspaceTrim -sceNpManagerIntAbortRequest -scePadVrControllerGetTriggerEffectStates -sceHidControlDisconnectHandle -scePthreadMutexGetyieldloops -sceMbusDebugReenableBgmForShellUi -sceGnmValidateAndSubmitCommandBuffers -sceSaveDataDebugTarget -sceSystemLoggerSetLogData -sceApplicationDeclareShellCore -sceNpScoreGetRankingByRangeForCrossSaveAsync -sceUserServiceSetImeRunCount -sceNpTrophy2SystemGetTrophyDetails -sceUpsrvUpdateCheckGetUpdatelistURL -sceAudio3dStrError -sceHmdInternalGetVr2dData -sceSslLoadCert -sceNgs2VoiceRunCommands -sceAgcCbDispatchGetSize -sceMusicPlayerServiceBeginTransaction -sceShellCoreUtilGetImposeMenuFlagForPs2Emu -sceKernelExitSblock -sceMbusEventDestroy -sceShareCaptureVideoClipExtended -sceTextToSpeechResumeImpl -scePigletReleaseVideoMemoryEx -scePadDeviceClassGetExtendedInformation -sceAvControlSetDefaultAudioOutMode -sceHmd2ReprojectionGetCurrentOutput -sceUsbdLockEventWaiters -sceHttpCreateRequestWithURL -sceBgftServiceIntDownloadReregisterTaskPatch -sceFaceIdentifyGetFeature -sceCamera2SetWhiteBalance -sceVshAvcapSetStaticInfo -sceShellCoreUtilCleanupCrashReport -sceNpScoreGetFriendsRankingForCrossSave -sceAgcDriverAgrSubmitDcb -scePlayerInvitationDialogGetResult -sceKernelGetProcessAbiType -ScePsmMiniGetDebugOptions -sceNpSnsFacebookDialogGetResult -sceVideoCoreInterfaceMainLoop -sceVideoOutAddSetModeEvent -sceNpUtilGetTrcNotify -sceHmd2SetVibration -scePerfTraceDelete -sceKernelReleaseTraceDirectMemory -sceOpusCeltEncEncodeWithPriority -sceVideoOutSysAddVblankEvent2 -sceKernelGetLibkernelTextLocation -sceUserServiceSetGlsIsRecievedMessageHidden -sceSystemServiceLoadExecVideoServiceWebApp -sceDataTransferInitialize -sceGnmSpmStartSpm -sceFsSetWorkspaceFileHash -_sceDepthSetHeteroAdjustParam -sceVoiceStop -sceMusicCoreServerUpdateSpWakeupAuthorityList -sceAvSettingGetHdcpStatus -sceFsInitMountDownloadDataOpt -sceSysUtilSendSystemNotificationWithParams -sceSystemStateMgrEnterMediaPlaybackMode -pthread_attr_getsolosched_np -sceNetResolverStartAton -sceDepthEnableHeteroMode -sceKernelAprGetFileStat -sceUserServiceSetNotificationSettings2 -sceNpCalloutTermCtx -sceRtcTickAddTicks -sceNpEntitlementAccessRequestConsumeServiceEntitlement -sceGnmUnmapComputeQueue -sceKernelSetSafemode -pthread_barrierattr_destroy -sceHmdInternalAnotherScreenSendAudio -sceProprietaryVoiceChatHelperGetVoiceChatUsageState -sceFaceIdentifyExGetFeature -sceNpTusGetMultiSlotVariableAVUser -sceNpSnsYouTubeDialogTerminate -sceNpRemotePlaySessionSignalingGetMemoryInfo -sceFsUfsDirectWrite -sceApplicationLocalProcessResume -sceNpAsmClientCreateResourceContext2 -sceFontStringRefersTextCharacters -sceVideoOutAddStereoBuffer -sceFontGraphicsUpdateShapeFill -sceRazorCpuSync -sceRtcFormatRFC2822LocalTime -sceHmdInternalGetPuPositionParam -sceRegMgrNonSysSetStr -sceAjmStrError -sceAjmInstanceCreate -sceVshAvcapReadVideo -sceAmprAmmMeasureAmmCommandSizeUnmap -sceUpsrvUpdateCheckCancel -sceNpUniversalDataSystemEventPropertyObjectSetUInt32 -sceNpTrophyNetIsServerAvailable -sceSslGetNanoSSLModuleId -sceNetResolverAbort -sceAgcDcbDrawIndexOffset -sceFontGraphicsCanvasRenewal -sceKernelAllocateMainDirectMemory -sceNpHeapInit -sceNetSetDnsInfo -sceCompanionHttpdGet2ndScreenStatus -sceUserServiceSetShareDailymotionAccessToken -sceFiberReturnToThread -sceKernelIsExperimentalBeta -sceShellCoreUtilGetUmmStatus -sceCameraGetMmapConnectedCount -sceAudioPropagationSystemLock -scePadGetFeatureReport2 -sceHttp2SslDisableOption -sceDbgGetSystemSwVersion -ScePsmMonoEnvironmentExitcodeGet -sceKernelWriteModifyProtectCommand -sceSpPthreadExit -pthread_yield -sceAppContentDownload1Expand -sceHttp2CookieImport -sceAppInstUtilAppDestroyMetadata -sceInvitationDialogTerminate -sceNpAppLaunchLink2IntCreateRequest -scePatchCheckerGetPackageInfo -sceRazorCpuGetDataTagStorageSize -sceNpPushIntGetBindUserState -sceNpSignalingGetConnectionFromPeerAddressA -sceNpTusGetDataForCrossSaveVUserAsync -scePthreadRwlockDestroy -sceFacePartsEx -sceSystemServiceGetAppIdOfMiniApp -sceNpMatching2LeaveLobby -sceKernelGetDirectMemoryType -sceUserServiceGetGlsTtsSpeed -sceMusicFwIsEnded -sceNpMatching2LeaveRoom -sceUsbStorageInit -sceKernelGetPrefixVersion -sceKernelSetPhysFmemLimit -sceScreenShotEnableNotification -sceSocialScreenDialogUpdateStatus -sceEsvmEngineMediaKeySessionLoad -sceVisionManagerRequestRecogUtility -scePigletHeapDump -sceCameraOpen -sceKernelDirectMemoryQuery -sceHttpCacheClearAll -sceFsUfsFsckWithMM -sceAgcDcbCondExec -sceMbusAcquireControlList -sceNpTusCreateNpTitleCtx -sceApplicationSwitchToNeoMode2 -sceHttp2SetRedirectCallback -sceRegMgrCntlDeleteReg -sceUsbdAttachKernelDriver -scePlayReadyContentGetProperty -sceSaveDataUmount -sceKernelGetProcessTimeCounterFrequency -sceAvPlayerDisableStream -sceRemoteplayTerminate -sceSdmaCopyTiled -sceUserServiceSetParentalGameAgeLevel -sceCommonDialogIsUsed -sceKernelMapDirectMemory2 -sceSystemServiceChangeUvdClock -sceDeci4hCreateHostProcessAndWait -sceMouseDebugGetDeviceId -scePsmUtilGetDebugAssetManagerSize -sceNpTrophySetInfoGetTrophyNum -sceNpManagerIntGetNpEnv -sceNetAddrConfig6GetInfo -sceVideoOutDebugLatencyMeasureGetLatestLatency -sceHmdReprojectionInitializeCapture -sceContentSearchGetNumOfApplication -sceNpEulaDialogOpen -sceNKWebInitialize -sceAgcDcbSetCfRegisterRangeDirect -sceKernelCreateBudget -ScePsmMonoGcWbarrierGenericStore -sceApplicationLocalProcessKill -sceAmprAprCommandBufferReadFileGatherScatter -sceHmdGet2DEyeOffset -sceNetCtlGetWifiType -sceMusicFwSetLoop -sceNpBandwidthTestGetStatus -pthread_resume_np -sceAgcDcbSetMarkerSpan -sceBgftServiceIntDownloadUnregisterTaskAll -sceBgftServiceIntInit -sceSystemServiceGetAppLaunchedUser -sceNpTrophy2CreateContext -sceNpAppInfoIntCheckServiceAvailabilityAll -sceFontWritingSetMaskInvisible -sceAgcDriverSysSubmitFlipHandleProxy -sceAudioPropagationResetAttributes -sceKernelRestoreApp -sceNgs2JobSchedulerResetOption -sceNpInGameMessageAbortHandle -sceNpManagerIntLoginGetWebAccessToken -sceKernelSubmitAIO -sceImeBackendClose -sceGnmValidateDisableDiagnostics2 -sceSysUtilSendAddressingSystemNotificationWithUserId -sceRnpsAppMgrGetAppInfoDebugString -sceSystemServiceActivateHevcInit -sceShareUtilityAdvanceGetServiceInfo -sceUpsrvStartUpdateSession -sceUserServiceSetSharePlayResolutionHost -sceVnaUtilGetVoiceInputStatus -sceMoveTrackerCameraUpdate -sceUserServiceGetPbtcThursdayHoursEnd -sceDeci4hDrfpOpendir_fuse_fullpath -sceFontCharacterRefersTextNext -sceHttp2WebSocketCloseAsync -sceDbgAddGpuExceptionEvent -scePatchCheckerCheckPatch -scePthreadCondTimedwait -sceBdSchedCancelPrioritizedBackgroundCopyRequest -sceFiosFHReadSync -sceNpTrophy2SystemRemoveTitleData -sceLncUtilUnregisterDaemon -sceRegMgrStrncpy -sceNpManagerIntGetAuthorizationCode -sceAudioInGetSilentState -sceKernelSetPrtAperture -sceNpEulaDialogUpdateStatus -sceFontGetPixelResolution -sceKernelCreateEventFlag -sceAudioOut2PortRegister -sceSlimglCompositorSetIndirectCompositionCommand -sceSpKernelNanosleep -sceNpTrophy2GetRewardIcon -sceFaceShapeGetWorkingMemorySize -sceAudiodecDecodeEx -sceKernelYieldCpumode -sceSysUtilSendSystemNotificationWithText -sceLoginDialogGetResult -sceRtcGetTime_t -sceNetConfigAddRoute6 -scePthreadAttrSetstack -sceGnmDriverInternalVirtualQuery -sceSigninDialogUpdateStatus -sceAppInstUtilAppInstallRequestCompilationDiscApp -sceNpLwCondSignalTo -sceDbgSetBreakOnWarningState -sceFontFtSetAliasFont -sceNpUniversalDataSystemEventPropertyArraySetInt32 -_sceNpAllocatorFree -sceMatMemoryPoolMove -sceAmprMeasureCommandSizeWriteAddressOnCompletion -sceKernelAprResolveFilepathsWithPrefixToIdsAndFileSizesForEach -sceSystemServiceUsbStorageIsExist -sceKernelIccGetHwInfo -sceAppInstUtilAppCancelMoveApps -sceNetConfigWlanAdhocPspEmuSetWakeOnWlan -sceFontGenerateCharGlyph -sceRazorCpuUserSignalWaitEnd -sceKernelAvailableDirectMemorySize -sceNpSetGamePresenceOnlineA -sceHmd2ReprojectionInitialize -sceAvControlSimulateProcessOutputModeArbitration -sceKernelGetPsmIntdevModeForRcmgr -sceAgcDriverIDHSSubmit -scePthreadSemWait -sceUsbStorageUnregisterCallbackForMapAvailable -sceRemoteplayImeOpen -sceUserServiceGetVoiceAgentStatusBitFactory -sceNetResolverCreate -scePlayReadyLicenseDeleteInMemory -sceAgcDcbEventWriteGetSize -sceFiosDirectoryCreateWithMode -sceCesRefersUcsProfileAsciiWithKatakana -sceFsISSchedMapStat -sceNpSignalingGetConnectionStatistics -sceNpManagerIntGetAccountLanguage -sceNpManagerIntSetPlusMemberTypeNB -sceAvControlIsModeGen1Vr -sceNpTusGetFriendsVariableA -sceKernelSuspendDirectMemoryRelease -sceVideoCoreInterfaceLoadModule -sceApplicationSuspend -sceAudioOutConfigureOutputModeEx -sceKernelGetSocPowerConsumption -sceFaceTrackerUnregisterUser -sceRudpCreateContext -sceVshAvcapOpenVideoEx -sceTsGetRepresentationInfo -sceVideoOutSetFlipRate -sceDevUsbAddHostRawKevent -sceNpIpcBeginRequest -sceNpCommerceDialogGetStatus -sceNpManagerIntGetAccountDateOfBirthA -sceValidationGpuValidate -sceDeci4hDrfpWrite_fuse -sceKernelMapperGetUsageStatsData -sceMatRegisterGroup -sceNpTusGetDataForCrossSaveAsync -sceWebBrowserDialogGetStatus -sceBackupRestoreUtilGetBackupDataInfo -sceNpIpc2ClientTerm -pthread_cond_signalto_np -sceShellCoreUtilFireCrashReport -sceCesUtf16beToSbc -sceLncUtilRaiseExceptionLocalProcess -sceNpTusSetMultiSlotVariableVUserAsync -sceAudio3dPortGetState -sceShellCoreUtilGetPlatformPrivacySetting -sceClNetPoolDestroy -sceRtcTickAddMonths -sceKernelGetAutoUpdateVersion -sceFsTrophyImageError -sceUserServiceSetSharePlayFlags -sceAppContentDownloadDataFormat -sceVideodec2CreateDecoder -sceMusicPlayerServiceGetCurrentPlayStatus -sceAppInstUtilInstallPatch -sceSystemTtsIsAccessibilityAvailable -sceSaveDataUpload -sceAgcDriverGetRegShadowInfo -sceAudioPropagationSystemRegisterMaterial -sceKernelGetBackupRestoreModeOfNextBoot -sceNpLwMutexUnlock -sceUserServiceGetChatStatus -sceAgcGetDataPacketPayloadAddress -sceCesGbToUtf16 -sceNpWebApiReadData -sceHttpUriCopy -sceImeDialogGetPanelSizeExtended -sceHmdInternalSetDebugSocialScreenMode -scePktMgrSetUlpNtfHdr -sceVorbisDecRawSeek -sceNpMatching2JoinRoom -sceShellCoreUtilTriggerPapcUpdate -sceSystemLogger2DeliveryGetBatchResult -sceAudioInHqOpenEx -sceRegMgrGetStr -sceNpMatching2SignalingGetPeerNetInfoResult -sceSysmoduleLoadModuleByNameInternal -sceFontGraphicsDesignStartDrawing -sceFontAttachDeviceCacheBuffer -sceRegMgrSrvCnvRegionInt -sceMsgDialogGetStatus -sceShellCoreUtilIsRemotePlayCpuBudgetAcquired -sceSaveDataGetDataBaseFilePath -sceDbgSetBreakOnErrorState -sceFsUfsFsck -sceKernelEndAppMount2 -sceVideoCoreInterfaceUnloadModule -sceMoveTrackerPlayGetStates -sceVisionManagerRequestFindUserWithoutIdentify -sceShellCoreUtilActivateStartAsync -pthread_barrier_wait -sceAgcAcbCopyDataGetSize -sceShellCoreUtilGetPs4AppCategoryDefaultsListId -sceNpTusDeleteRequest -sceCesUtf32beToBig5 -sceOpusCeltEncCreate -sceNpManagerIntCreateLoginRequest -sceUserServiceGetInitialUser -sceFontGraphicsSequenceGetAgcCommandsForSubmit -sceRemoteplayGetRpMode -sceVnaSetDucking -sceUserServiceSetNotificationSettings_3 -sceUserServiceGetPbtcSaturdayHoursEnd -sceFontGraphicsDrawupFillTextureImageObject -scePadMbusInit -sceKernelRead -sceLncUtilGetCoredumpState -scePlayerSelectionDialogTerminate -sceKernelDebugGetPauseCount -sceKernelSettimeofday -sceDepthSaveInternalBuffers -scePadTrackerTerm -sceUserServiceCreateKratosUser -sceNetGetSockInfo6 -sceAppInstUtilAppIsInUpdating -sceNpTusTryAndSetVariableForCrossSaveVUserAsync -sceHttp2GetAllTrailingHeaders -sceFsUmountSaveData -sceNpSignalingGetConnectionFromPeerAddress -sceFontGetScalePixel -sceKernelSetAppInfo -sceUsbStorageDialogOpen -sceCesIso2022StrGetUtf8Len -sceAmprMeasureCommandSizeWaitOnCounter_04_00 -scePlayReadyCdmiCreateMediaKeys -_sceNpAllocatorExStrdup -sceAgcSdmaConstFill -sceFsUfsGrowLwfs -sceAudiodecCpuInternalClearContext -sceMatMemoryPoolExpand -sceHttpCreateRequestWithURL2 -sceGameLiveStreamingGetCurrentStatus -sceUpsrvUpdateCheckDoCheckSystemForDevKit -sceNpAuthGetIdTokenA -sceUserServiceSetVibrationEnabled -sceMbusBindDeviceWithUserId -sceNpSessionSignalingTerminate -sceClHttpUnsetEpoll -sceShellCoreUtilClearPs4AppCategoryDefaultsListUpdate -sceVoiceGetPortInfo -sceRazorCpuWorkloadRunBeginEx -sceNpPush2RegisterDataType -sceVoiceChatProcessEvent -sceHmdInternalGetHmuPowerStatusForDebug -sceAjmGetFailedInstance -sceAgcDcbDispatchIndirect -sceVrTrackerResetAll -sceDtsEncIsEncoding -sceClHttpsSetSslCallback -scePlayerReviewDialogOpen -sceCesSJisToUtf32be -sceMouseExtensionReadState -sceUserServiceGetGlsLiveQuality -sceAudioInSetMode2 -sceMbusAddHandleByUserId -sceUpsrvUpdateCheckDestroyHandler -sceDbgSetExceptionHandlerAltStack -sceNpStrToInt64 -sceVideoOutSetToneMap_ -sceVideoOutAddDisplayPositionEvent -sceDeci4hDrfpRename -sceRtcGetDayOfWeek -sceWebBrowserDialogResetCookie -sceUserServiceTerminateForShellCore -sceNetConfigAddRoute -sceMbusGetDeviceDescription -sceNpUniversalDataSystemPostEvent -sceSlimglCompositorGetCanvasHandle -sceShellCoreUtilGetSystemBGWaveState -sceCesUtf8ToEucJp -sceKernelCreateEqueue -sceVdecCoreDeleteDecoder -sceDtcpIpStartAuthAsync -sceRazorCpuResizeTaggedBuffer -pthread_main_np -sceHttp2WebSocketSendDataMessage -sceMbusDebugSuspendApplication -sceNpManagerIntClearVshTokenA -sceAppContentAddcontShrink -sceVideoOutAddBufferYccPrivilege -sceKernelError -sceHmdGetDistortionWorkMemorySize -sceNpPush2CreatePushContext -scePlayGoSnapshot -scePadRemoteControlInsertData -sceVoiceQoSDebugGetStatus -sceGameLiveStreamingStopGenerateStandbyScreenResource -sceUserServiceSetNpLanguageCode -sceNpSessionSignalingGetCustomProperty -sceSysmoduleGetModuleHandleInternal -sceNgs2FftProcess -sceBgftServiceIntDebugPlayGoIsPaused -sceAgcCreatePrimState -sceNpGameIntentLaunchApp -sceBgftServiceIntDownloadSetResumeState -sceCamera2GetSaturation -sceKernelStreamWriteStat -scePthreadResume -sceAgcSdmaCopyTiledBC -sceFsUfsAllocateAdditionalContents -sceSysUtilSendSystemNotificationWithUserName -sceFiosPrintTimeStamps -scePadEnableUsbConnection -sceAgcDriverUnregisterGpuResetCallbacks -sceFsNsfsAddOverlayToNamespace -sceVorbisDecRawTotal -sceNpTusGetMultiSlotVariableForCrossSaveAsync -scePadVrControllerSetVibration -sceKernelSetVirtualRangeName -sceBufferFree -sceVdecCoreFinalizeComputeResource -sceNpCommerceShowPsStoreIcon -sceDepthHeadCandidateTrackerGetResult -sceNpGlobalHeapGetAllocatorPtr -sceSystemServiceSaveVideoToken -sceHmd2GazeGetCalibrationData -sceAudioOut2GetSpeakerInfo -sceHmd2ReprojectionSetUserEventStart -sceFontGraphicsFillPlotInit -sceRazorCpuSetPushMarkerCallback -sceNpTrophySystemWrapRemoveAll -sceHttpsLoadCert -sceNpAppLaunchLink2IntInitialize -sceRegMgrNonSysGetStr -sceKernelDebugRaiseExceptionWithContext -sceAgcDriverDeleteEqEvent -sceKernelGetOpenPsId -sceMusicPlayerServiceUnpause -sceAmprCommandBufferWaitOnAddress_04_00 -sceFsUfsAllocateGameImage -sceMusicPlayerServiceSetShuffle -sceSlimglCompositorSetInvisibleCanvasCommand -sceSystemServiceSetControllerFocusPermission -ScePsmMonoArrayAddrWithSize -sceMbusSetVolumeDown -sceSysmodulePreloadModuleForLibkernel -sceKernelSetEmergencyErrorLog -sceFontGraphicsEndFrame -sceSslGetSerialNumber -sceAgcDriverSetHsOffchipParamDirect -sceNpTusGetMultiSlotVariableForCrossSaveVUserAsync -sceKernelGetAIOData -sceAcm_IFFT -sceNpPartyGetId -sceFontGraphicsGetVertexesGlyphMetrics -sceApplicationSendResultOfDebuggerTitleIdLaunchRequest -sceNpTssGetDataAsync -sceCameraGetDeviceConfig -sceVrTracker2CheckDeviceIsInsidePlayAreaBoundary -sceNpTrophyIntDestroyHandle -sceNpStrParseHex -sceShareUtilityTerminate -sceSpNetResolverGetError -sceUsbdSetInterfaceAltSetting -sceAudioInVmicCreate -sceShellCoreUtilTickHeartBeat -sceNpBandwidthTestDownloadOnlyInitStart -sceLibreSslInit -sceFiosOpReschedule -sceNpTusGetFriendsDataStatus -sceVideodec2InitLibrary -sceAmprMeasureCommandSizeReadFileGatherScatter -sceGnmSqttGetTraceWptr -sceFaceDetectionGetWorkingMemorySize -sceVideoOutColorSettingsSetGamma_ -sceMusicCoreServerGetPlayStatus -sceNpGriefReportWriteGroupMessageFile -sceBackupRestoreUtilBackupData -sceAudiodReportOutput -sceCoredumpWriteUserData -sceNpLookupNetTerm -sceDtsEncDeleteEncoder -sceVideoCoreInterfaceCreateCanvasContext -sceMoveSetExtensionPortOutput -sceDepthValidateCurrentCalibrationData -sceAgcDriverIsCaptureInProgress -sceUserServiceGetPbtcSaturdayDuration -sceDebugGetWaitingListOfUltMutex -sceAvSettingCallbackFuncsInitForLnc -sceApplicationGetCoredumpState -sceNpCommerceDialogOpen -memcmp -sceFiosArchiveSetDecompressorThreadCount -sceShareFactoryUtilGetLaunchStatus -sceGnmSysOpen -sceIduUtilSetMoveMode -sceNpTusGetMultiSlotDataStatusForCrossSave -sceKeyboardDisconnectDevice -sceCameraAudioOpen -sceCompositorSetGnmContextCommand -sceUserServiceSetGlsCameraChromaKeyLevel -sceNpLookupNetInitWithFunctionPointer -sceNpSessionSignalingGetConnectionFromPeerAddress2 -sceVoicePausePortAll -sceOpusDecDecodeFloatWithPriority -scePthreadSemGetvalue -sceNpTusGetMultiUserVariableForCrossSaveVUser -sceNetCtlSetStunWithPaddingFlagIpcInt -scePthreadAttrSetsolosched -sceNpPushInit -sceKernelMsync -sceUsbdGetConfigDescriptor -sceNpAsmGetRelatedGameNpTitleIds -scePthreadRegisterThreadDeathHook -sceNpUniversalDataSystemIntInitialize -scePadSetProcessPrivilege -sceBackupRestoreUtilTerminate -sceKernelWaitAIO -scePthreadCondattrGetpshared -sceLoginMgrServerSetMorpheusAssignEnabledFlag -sceCesUcsProfileInitEucJpX0208Ss2Ss3 -sceBgftServiceIntPlayGoGetDownloadTaskId -sceNpMatching2RegisterLobbyMessageCallback -sceCoredumpAttachUserMemoryFile -sceNpTrophy2GetGroupInfo -sceVrTracker2RegisterDevice -sceIduUtilDisablePriorityDownloads -sceKernelMapTraceMemory -sceVisionManagerGetLibraryVersion -scePlayerSelectionDialogInitialize -scePadOutputReport -sceNetDhcpGetInfoEx -ScePsmMonoInit -sceRegMgrDrvDataCheckGet -sceProfileCacheGetProfilePicture -sceNpWebApiSendMultipartRequest2 -sceOpusSilkEncEncodeFloat -sceAudioOutExPtGetLastOutputTime -sceUltUlthreadTryJoin -scePadResetLightBar -sceNpAsmTerminate -sceSdecQueryMemorySw2 -sceNetCtlApRpCheckCallback -sceNpMutexTryLock -sceShellCoreUtilIncrementVersionNumberOfCameraCalibrationData -sceNpManagerIntCheckNpState -sceSaveDataGetSaveDataRootUsbPath -sceAgcAcbRewind -sceRtcFormatRFC3339LocalTime -sceAudioOut2ContextBedWrite -sceLncUtilGetAppStatus -sceRemoteplayGetOperationStatus -sceVorbisDecHalfrateP -sceBgftServiceIntUploadStartTask -sceImeBackendConvertForward -pthread_attr_getstackaddr -scePthreadAttrSetschedparam -sceHmd2GetFieldOfView -sceHmdReprojectionSetDisplayBuffers -sceImeDisableController -pthread_attr_setdetachstate -sceHmdInternalAnotherScreenSetFadeAndSwitch -sceVrTrackerResetOrientationRelative -sceFsWsDelete -scePadEnableSpecificDeviceClass -sceNpTrophyDestroyContext -sceCesRefersUcsProfileCp737 -sceImeDicDeleteUserDics -sceNetSetDns6InfoToKernel -sceNpTusSetDataVUserAsync -sceShellCoreUtilGetUserFocus -sceSslSetVerifyCallback -sceUltGetSemaphoreInfo -sceDeci4hDrfpFtruncate_fuse_fullpath -sceNpManagerIntAddPlusMemberTypeCallback -sceAc3EncEncode -sceRtcGetDosTime -scePerfTraceSpmEnable -sceEsvmEngineMediaKeySessionClose -sceVideoOutSysReadCrc -sceAvControlGetCurrentDeviceId -sceNpIpcClientTest1 -sceNetShowIfconfigWithMemory -sceSystemServiceActivateHevcStart -sceClPthreadCondattrDestroy -sceHmdInternalCreateSharedMemory -sceKernelSetNeoModeClock -sceNetConfigSetDefaultRoute -sceBgftServiceSyncCall -sceNpFriendListDialogTerminate -sceAudioOut2LoContextCreate -sceGnmDrawIndexIndirect -sceAmprAmmCommandBufferConstructor -sceNgs2ModuleArrayEnumItems -sceMusicCoreServerTriggerEvent -sceMusicPlayerServiceRemoveTrackList -sceDebugReadThreadRegisterForSDBGP -sceShellCoreUtilReleaseBgmCpuBudget -sceSpNetEpollDestroy -sceRazorCpuGpuMarkerSync -sceNpTrophy2ShowTrophyList -sceCesRefersUcsProfileJisX0201Tilde0x7e -sceKernelGetCoredumpAppInfo -sceLibcInternalBacktraceForGame -scePthreadGetthreadid -sceAvSettingInit -scePerfPmcStop -sceVideoOutRegisterBufferAttribute -sceGnmComputeWaitSemaphore -sceHmdInternalMirroringModeSetAspectDebug -sceNpPartyGetMemberVoiceInfo -sceHmdInternalGetPuBuildNumber -sceSystemGestureRemoveTouchRecognizer -sceFaceAgeGetWorkingMemorySize -sceMbusDebugAddProcess -sceNpTusAddAndGetVariableForCrossSave -sceUsbdFreeDeviceList -sceImeVshInformConfirmdString2 -sceVideodec2QueryDecoderInfo -sceHmdDistortionGetCompoundEyeCorrectionCommand -sceSaveDataDialogGetStatus -sceFiosArchiveGetMountBufferSize -sceVisionManagerGetResultOfFindUserWithoutIdentify -sceNpMatching2SetSignalingOptParam -sceUserServiceSetNpOfflineAccountId -sceMbusEnableChat -sceShellCoreUtilGetVMStatsForTelemetry -sceAvPlayerStart -sceNpScoreGetRankingByNpIdPcId -sceAppInstUtilSetPrimaryAppSlot -sceVrTrackerRecalibrate -sceDeci4hDrfpCreate_fuse_fullpath -sceMbusDebugSetApplicationFocusByAppId -sceNpUniversalDataSystemCreateRecordArray -sceHttp2SslEnableOption -sceNpManagerIntLoginGetDeviceCodeInfo -pthread_mutexattr_setpshared -sceHttpAddRequestHeader -sceFontGetRenderScalePixel -sceDebugTriggerCoredump -sceRegMgrPrivateStorageDirName -scePerfTracePmDeleteBufferNotifyEvent -sceImeBackendGetString -sceUserServiceSetShareStatus -pthread_cond_setname_np -sceUserServiceGetThemeBgImageDimmer -sceUpsrvUpdateGetFeatureListUrlForUpdate -sceRazorCpuSetPushMarkerStaticCallback -sceNetConfigAddArp -sceAppInstUtilAppGetInstallAddcontFromDiscStatus -sceCesUtf8ToMbc -sceMbusLeaveAudioOutAutoAttenuation -sceContentSearchGetMetadataFieldInfo -sceRazorCpuIsCapturing -sceNpSetNpTitleId -sceCompsoitorGetProcessRenderingTime -sceAgcDriverSysGetGfxAppGpuResetStatus -sceShellUIUtilGetAppUrl -sceKernelSetIoreq -sceUserServiceGetGlsSortOrderGame -sceAvSettingChangeProcessAttribute -sceNpSessionServiceGetJoinedPartySession -sceNpUtilParseTitleId -sceKernelMlockall -sceNpUtilJsonEscape -sceHidControlGetDeviceName -sceUserServiceGetThemeTextShadow -sceFontGraphicsUpdateFillMethod -sceKernelClearGameDirectMemory -pthread_rwlock_unlock -sceNpManagerIntDeleteLoginContext -sceNetInetNtopWithScopeId -sceDataTransferTargetRequestBindSavedata -sceInvitationDialogGetStatus -sceAvSettingIsSupportedVideoOutModeByHdmiMonitorInfo -sceNpJoinThread -pthread_condattr_setclock -sceUserServiceSetGlsIsCameraHidden -sceNpPartyGetStateAsUserA -sceVideoOutSysAddVblankEvent -sceLibcGetFD -sceUsbdHandleEvents -scePthreadAttrSetguardsize -sceRazorCpuInitializeInternal -sceAjmBatchJobRunBufferRa -sceRegMgrCntlGetFilesCount -sceSslGetNotBefore -pthread_self -sceRegMgrNonSysCheckError -sceAppContentSmallSharedDataUnmount -sceSystemServiceDeclareReadyForSuspend -sceUserServiceSetPbtcWednesdayDuration -sceIduUtilDownloadInstallPkg -sceShareCaptureScreenshot -sceAudiodecInitialize -sceAjmBatchJobGetGaplessDecode -sceUpsrvUpdateGetBetaFeatureListUrlForUpdate -sceNpDbgDumpBinary -sceSysUtilSendNpDebugNotificationRequest -sceNpManagerUtilSystemMessageWithUserId -sceAmprAprCommandBufferMapBegin -sceValidationGpuGetErrorInfo -sceKernelSetUpdatemode -sceSystemLoggerInitialize -sceNpTrophy2GetTrophyInfo -sceHmdInternalSetS3dPassMode -sceBufferAlloc -sceShellCoreUtilGetCheckerString -sceGnmDriverInternalRetrieveGnmInterfaceForHDRScopes -sceSystemServiceGetSubAppTitleId -ScePsmMonoArrayElementSize -sceNpLwCondWait -sceKernelIccIndicatorStandbyShutdown -sceDeci5CreateHostProcessAndWait -_sceNpAllocatorExStrndup -sceFiosFHSyncSync -sceFsTransactionStart -sceNpTusGetMultiSlotVariable -sceLoginMgrServerNotifyHmdConnectInfo -scePthreadAttrSetstackaddr -sceShellCoreUtilFillUpSpaceOnSmrHdd -scePssSoundPlayerGetSurroundPan -sceSystemServiceActivateMpeg2Abort -sceEditMp4Terminate -sceApplicationSystemReboot -sceLoginDialogClose -sceAgcDriverInitResourceRegistration -sceAgcDriverGetDefaultOwner -sceUserServiceGetGlsCameraPosition -sceNpPartyGetMemberInfo -sceMoveTrackerPlayStep -sceFiosTimeIntervalFromNanoseconds -sceShellCoreUtilDeclareEndOfExternalStorageAppMove -sceRazorCpuBeginArchiveFileAccess -sceAudiodecCreateDecoderEx -sceFsPartitionTrim -sceKernelGetSanitizerNewReplace -sceUserServiceCreateSharePlayClientUser -sceVdecCoreSetDecodeInput -sceSlimglIPCSetup -sceMoveTrackerInit -sceGnmSqttSelectTokens -sceNpGetUserIdByOnlineId -sceShellCoreUtilNotificatonRequestedForIDU -sceKernelTriggerUserEvent -scePs2EmuMenuDialogInitialize -sceHmdReprojectionStopCapture -sceUserServiceSetGlsSortOrder -sceVoiceQoSSetLocalEndpointAttribute -sceFiosIsSuspended -sceAgcAcbQueueEndOfShaderActionGetSize -sceVisionManagerRequestFindUser -scePthreadMutexattrInit -sceKernelGetCpumodeGame -sceCompositorGetDummySize -scePadLastLotusButtonData -sceMbusDebugSetPriority -sceFiosOpCancel -sceDebugInitForCoredump -sceMusicCoreServerGetPlayStartCondition -sceSystemLogger2SetEventAsyncEx -sceContentExportStart -sceVideoRecordingCloseByHandle -sceNetConfigAddMRoute -sceVideoOutSysConfigureLayout -sceDevUsbWriteHost -sceNpManagerIntIsSystem -sceFontGetRenderScalePoint -sceNetCtlGetScanInfoByBssidIpcInt -sceDebugClearStepThread -sceCesUcsToJiscs -sceGnmGetOffChipTessellationBufferSize -sceSystemServiceChangeAcpClock -sceAmprCommandBufferWriteAddressFromTimeCounterOnCompletion -scePssCameraGetConfigType -sceNetPppoeStop -pthread_getschedparam -sceFontGraphicsUpdateSlantShift -sceNpLwCondSignalAll -pthread_exit -sceSystemLogger2NativeQueueClientSetDeliveryEnable -sceFsUfsSeekHoleInFile -sceFontGraphicsDrawupFillTexturePatternObject -sceWorkspaceApplyUpdateForFiles -sceKernelDebugAcquireAndUpdateDebugRegister -scePadTrackerCalibrate -sceMusicCoreServerLaunchUsbMusicCore -sceApplicationDebugSpawnCommonDialog -sceKernelLwfsWrite -sceVoiceChatGetChatChannelMemberInfoList -sceFiosVprintf -sceNpUniversalDataSystemDestroyRecordArray -sceRnpsAppMgrInitialize -sceAgcDriverRequestCaptureStop -sceUserServiceGetGlsBcTags -scePerfPmcL3SelectEvent -sceContentSearchGetMyApplicationIndex -sceDebugCreateScratchExecutableArea -sceSdmaCopyLinearNonBlocking -sceHttp2SetRequestContentLength -sceShellCoreUtilGetPs4AppCategoryForTitleId -sceAvSettingSetVideoOutModeInvalid -sceNpGriefReportDeleteRequest -sceVnaSetWakeupPhrase -sceCompositorGetVideoSize -sceFaceAttributeGetWorkingMemorySize -sceNpUniversalDataSystemIntCreateRecordArray -sceNetConfigGetIfaddr6 -sceDbgKeyboardClose -sceGnmSetEsShader -sceAudioInExtSetAecMode -sceMbusDebugGetApplicationStartupInfo -sceCesRefersUcsProfileIso8859_1 -sceSystemGestureCreateTouchRecognizer -sceNpAppLaunchLink2IntFinalize -sceBackupRestoreUtilCancelBackupData -sceFontDestroyLibrary -scePthreadAttrGetschedparam -sceFiosCachePrefetchFileRange -sceCamera2GetAutoExposureGain -sceVideoOutSysSetDisplayParameters -sceSlimglIPCEnd -sceGnmEndWorkload -sceNpWordFilterSetTimeout -sceMusicCoreServerSetPlaylist -sceNpMemoryHeapGetAllocator -sceMusicFwSendMessageAsynchronously -sceNpTusGetFriendsVariableForCrossSaveAsync -scePadSetProcessPrivilegeOfButtonRemapping -sceVideoRecordingSetInfo -sceShellCoreUtilGetCrashReportCoreFileSetSize -sceGameLiveStreamingClearPresetSocialFeedbackCommands -sceDebugGetUltMutexInfo -sceAgcAcbSetWorkloadStreamInactive -sceUpsrvUpdateCheckDoCheckGame -sceNetCtlApInit -sceVideoCoreInterfaceSetVideoOutBufferInfo -sceFiosFHGetSize -sceKernelSetCompressionAttribute -sceUserServiceSetKeyRepeatStartingTime -sceBdSchedGetPrioritizedBackgroundCopyRequest -sceUsbdSetConfiguration -sceDbgDeleteExternalTriggerEvent -sceNpUniversalDataSystemEventPropertyObjectSetBool -sceAgcDriverSubmitMultiCommandBuffers -sceUlpMgrSetDecidState -sceUserServiceGetGlsStreamingMode -sceHmd2ReprojectionSetTiming -sceHubAppUtilDeeplinkToLiveDetailView -sceNpWebApiInitializeForPresence -sceUserServiceSetFileSelectorSortContent -sceDevUsbReadHostRaw -sceShellCoreUtilFreeUpSpaceOnSmrHdd -sceNpTusSetDataAVUserAsync -scePerfTraceIoControllerCreate -sceUserServiceIsGuestUser -sceAgcDcbSetWorkloadStreamInactive -sceAmprAmmCommandBufferRemapWithGpuMaskId -sceDataTransferTargetRequestTransferSpeed -sceCesMbcsUcsContextInitCopy -scePfsGetBlockTableReadCommand -sceUsbdExit -sceSpPthreadCondattrDestroy -sceM4aacEncEncode -sceNpManagerIntGetParentalControlFlag -sceAmprCommandBufferWaitOnCounter -sceWebBrowserDialogOpen -sceNpUtilGetIgnoreNpTitleId -sceUserServiceGetFileSelectorFilter -sceNpScoreGetRankingByNpIdPcIdAsync -sceKernelAioDeleteRequests -sceAvSettingNotifyProcessPostSuspend -sceFsMountGamePkg -sceImeDicReplaceWord -sceAgcCbCondWriteGetSize -sceVencCoreSyncEncode -sceApplicationResume -sceDbgAmprAmmGetNumberOfErrors -sceApplicationBlockingKill2 -sceHandTrackerEraseResult -sceBgftServiceIntDownloadFindActiveTask -sceGnmGetGpuCoreClockFrequency -sceNpUtilGetNpLanguageCode2Str -sceCesEucKrUcsProfileSetSbcs -sceFiosDebugDumpDH -sceVideoCoreInterfaceCreateFrameBufferContext -sceAvSettingNotifyUmdEvent -sceTextToSpeechCancelImpl -sceDeci4hDrfpFstat_fuse -sceVdecswGetPictureInfo -sceContentExportInit -sceSharePlayProhibitController -sceVencCoreStartSequence -sceSystemStateMgrExtendShutdownTimerForPostAutoUpdateProcess -sceFontGraphicsGetDeviceUsage -sceAudioPropagationSourceGetAudioPathCount -sceFiosRenameSync -sceCesUcs2ToEucKr -sceKernelGetAppInfo -sceKernelWriteMapWithGpuMaskIdCommand -sceVshAvcapOpenVideo -sceSaveDataChangeInternal -sceAgcDcbMemSemaphore -sceNpScoreDeleteNpTitleCtx -scePadTrackerInit -sceSaveDataGetAutoUploadSetting -sceContentSearchOpenMetadata -SdkVersion -sceAudioOut2GetSpeakerArrayMemorySize -scePlayReadyReaderDecrypt_Legacy -sceBufferInit -sceNpWebApiInitialize -sceNetGetRandom -sceRazorCpuWriteBookmark -sceCesUtf16ToSJis -sceCoredumpDebugTriggerCoredump -sceCompositorAllocateIndex -sceDbgGetModuleInfo -sceDebugDestroyPerfScratchExecutableArea -sceMbusStopAudioOutAuxBroadcast -sceNetBweGetInfoIpcInt -sceSystemServiceLaunchTournamentList -sceKernelWriteRemapWithGpuMaskIdCommand -sceClPthreadAttrInit -sceNpTusSetDataAsync -sceVideoOutDriverGetFinishedEopHandle -sceNpIntGetPlatformType -sceScreenShotSetParam -sceAudioOutSysGetMonitorInfo -sceDbgInstallExceptionHandler -sceRazorCpuFiberLogNameChange -sceNetGetStatisticsInfo -_sceLibcReallocalign -sceShellCoreUtilSetSystemBGWaveState -sceImeBackendConvertBackward -sceNpAppLaunchLinkIntGetCompatibleTitleIdList -sceAgcDcbSetCxRegistersIndirectGetSize -scePthreadRename -sceNpUniversalDataSystemIntRecordArraySetBool -sceUserServiceDestroyUser -sceDbgBacktraceSelf -sceNpTusGetMultiSlotVariableA -sceCesBig5ToUtf16 -sceKernelEventLogOpen -sceMouseExtensionScalePosition -sceWebInitialize -sceFiosArchiveMountWithOrderSync -sceShellCoreUtilIsShowCrashReport -scePthreadSemInit -sceLoginMgrServerNotifyEasySignInUserCode -sceOpusCeltDecDecodeFloatWithPriority -sceNpInGameMessageInitialize -sceFsUfsLargewriteFsck -sceFiosDHOpenSync -sceGnmDrawIndexAuto -sceLncUtilDeclareReadyForSuspend -sceVideoNativeExtEssential_CreateDecInstance -sceVisionManagerRegistryClear -scePerfTraceIoControllerDeleteBufferNotifyEvent -sceSocialScreenCrashDaemon -sceAgcDcbSetIndexSize -sceNpRegisterPlusEventCallback -sceCesIso2022StrToUtf32Str -sceFaceTrackerGetTrackIdByUserId -sceWorkspaceApplyUpdateForAllFiles -sceVideoOutDriverGetLatestEopHandle -sceGpuTraceParametersSetDuration -sceUserServiceSetPbtcFridayHoursStart -sceNpMatching2SignalingCancelPeerNetInfo -sceNpTrophyDestroyHandle -sceSpNetConnect -sceGnmUpdateHsShader -sceAgcSdmaFlush -scePktMgrGetUlpCmdPayload -sceApplicationSendResultOfDebuggerKillRequest -sceNpAsmClientCreateResourceContext -sceAgcAcbWaitUntilSafeForRendering -sceNpSignalingGetConnectionFromNpId -sceHttp2GetCookie -sceNpTusGetDataVUser -sceVencCoreGetPicParams -sceShareCaptureScreenshotExtended -sceUsbdGetConfigDescriptorByValue -sceDeci4hDrfpChstat_utimens_fuse -sceNpUtilGetNpDebug -sceCesBig5ToUtf32 -sceKernelTitleWorkdaroundIsEnabled -sceAudioOutSetPadJackVolume -sceFsCreateExfatPartition -sceAvSettingIsSuspendedProcessOutputModeAvailable2 -sceVideoCoreInterfaceOpenCanvas -sceBgftServiceIntPlayGoGetApplicationIniChunkSize -sceMoveGetDeviceInfo -sceNpScoreCreateNpTitleCtxA -sceAgcBranchPatchSetCompareAddress -sceM4aacEncEncodeWithPriority -sceBgftServiceDownloadFindActivePupTask -sceShellCoreUtilLaunchByUri -sceVisionManagerGetResultOfRegisterUserInRegion -sceDevUsbCloseHostStream -sceCustomMusicAudioOutGetAllMusicVolume -sceHandTrackerGetDepthRoi -sceNgs2SystemSetUserData -pthread_mutexattr_gettype -scePthreadAttrSetcreatesuspend -sceGnmSubmitAndFlipCommandBuffersForWorkload -sceNpNotifyPlusFeature -sceNpAppLauncherLaunchApp -sceMsgDialogProgressBarInc -sceMbusResolveByDeviceId -sceHttp2SetResolveRetry -sceApplicationGetProcs -sceMoveTrackerCaptureInit -_sceDepthEnableDebugScreen -sceSystemTtsSpeakRequest -sceSystemServiceGetRemoteplayStatus -sceMusicFwIsStopped -sceKernelLoadStartModuleForSysmodule -sceSystemGestureUpdatePrimitiveTouchRecognizer -sceCompositorLockCommandBuffer -sceWorkspaceIsBlockedByDataTransfer -sceNpUserGetUserIdList -sceUserServiceSetImeInputType -sceNpGetAccountCountry -sceShellCoreUtilShowPsUnderLockIndicator -sceVdecwrapMapMemory -sceBgftServiceIntUploadStartTaskAll -sceNpTusGetMultiUserVariableA -sceUsbdGetDeviceAddress -sceNpTusAddAndGetVariableAVUserAsync -sceUserServiceGetGlsCameraReflection -sceLncUtilDisableSuspendNotification -sceClSslTerm -sceCesIso2022StrGetUtf16Len -sceAppContentDownloadDataGetAvailableSpaceKb -sceLncUtilAcquireCpuBudgetOfImeForBigApp -sceAmprCommandBufferConstructNop -sceVnaGetEventData -sceLibSecureHashResetContext -sceHttpSetCookieSendCallback -sceAmprCommandBufferGetCurrentOffset -sceFaceAllPartsGetWorkingMemorySize -sceFontGetScalePoint -sceBgftServiceIntDownloadSetHighPriority -sceDeci4hDrfpFtruncate -scePthreadMutexattrGetprotocol -sceVisionManagerGetResultOfFindUserInRegion -sceFsInitUmountGamePkgOpt -sceNpCreateRequest -sceLibSecureAddCipher -sceHttpCacheRetrieve -sceAvControlGetMonitorInfo -sceNetBweRegisterCallbackIpcInt -sceFontGetRenderEffectSlant -sceFsUfsAllocateAligned -sceAudioPropagationSystemQueryInfo -sceAudioOutGetPortState -sceKernelGetUniversalMode -sceFontGraphicsTextureMakeFillTexture -sceNpIntCheckPlus -sceMbusGetControlStatus -scePlayerSelectionDialogGetResult -ScePsmMonoStringNew -sceHidControlGetDeviceId -sceNpSessionSignalingCreateContext -sceDataTransferTargetAbortPwrReq -sceAmprCommandBufferDestructor -sceFsISSchedStatDescriptor -sceGnmGetCoredumpAddress -sceSystemStateMgrTickPartyChat -sceGameLiveStreamingSetGuardAreas -_sceUltReaderWriterLockOptParamInitialize -sceHmdInternalIsCommonDlgMiniAppVr2d -sceLibcFopenWithFH -sceFiosArchiveGetDecompressorThreadCount -sceUserServiceSetGlsCameraBrightness -sceAudioOutSetPortConnections -sceNpMatching2GetUserInfoListA -sceNpTrophy2CreateHandle -sceUpsrvUpdateCheckCreateHandler -sceGnmSysEnableSubmitDone45Exception -sceCameraGetCalibDataFromDeviceForEve -sceFontWordsFindWordCharacters -sceDebugKillProcess -scePerfPmcNbGetCounter -sceKernelGetQafGenerationForRcmgr -sceFontFtSupportPcf -sceNpIntGetNpTitleId -sceCesRefersUcsProfileCp1253 -sceVorbisDecBitrate -sceCompanionUtilTerminate -sceNpTrophy2SystemCreateHandle -scePthreadSemTrywait -sceSystemStateMgrNotifySystemSuspendResumeProgress -sceNpGriefReportReadLfpsCommentFile -sceNpManagerIntGetUserIdByOnlineIdSdk -scePigletAllocateVideoMemory -sceIduUtilGetCompilationDiscInfo -sceNpTusDeleteNpTitleCtx -sceNetApctlInit -sceCompositorSetMorpheusState -sceVoiceQoSDeleteRemoteEndpoint -sceNpManagerIntTermInternal -sceKernelIsGenuineKratosCex -sceKernelGiveDirectMemoryToMapper -sceNetShowNetstatWithMemory -sceNetCtlGetResultV6 -sceKernelBeginAppMount -sceKernelEventLogPread -sceNpTusGetMultiUserDataStatusForCrossSaveVUserAsync -sceAgcDcbContextStateOpGetSize -sceFiosCacheContainsFileSync -sceNpIntGetAppType -sceGnmGetEqTimeStamp -sceBgftServiceIntPlayGoCheckDiscIniChunksInstall -sceAgcDcbPopMarker -sceAmprCommandBufferWriteKernelEventQueue_04_00 -sceVideoOutRemoveBuffer -sceNpAuthDeleteRequest -sceVideoOutSysResetZoomBuffers -sceVideoCoreInterfaceSetFunctionTableExt -sceUltSemaphoreTryAcquire -sceLoginDialogGetStatus -sceHmdInternalMmapGetSensorCalibrationData -sceDebugReadEvent -sceShellCoreUtilPreNotifyOfSharePlay -scePerfTraceEnable -sceKernelCloseSema -sceKernelSetDipsw -sceNetCtlConnectConfIpcInt -sceRegMgrDrvDataClose -sceVrTrackerGetResourceInfo -sceAvPlayerPostInit -scePlayerReviewDialogClose -sceVrTracker2ResetLocalCoordinateWithPose -sceMatMemoryPoolBatch -sceGameLiveStreamingScreenTerminate -sceAgcDriverSubmitMultiAcbs -pthread_mutexattr_destroy -sceTextToSpeechOpenImpl -sceNpEntitlementAccessAbortRequest -sceUltUlthreadYield -sceLibcHeapMutexCalloc -sceSystemServiceIsGameLiveStreamingOnAir -sceDebugNoStopOnDLLoad -sceRegMgrLogStart -sceGnmDisableMipStatsReport -scalb -sceVisionManagerRequestStoreCameraImgY -scePerfTraceGetMemoryStats -sceFontStyleFrameGetEffectWeight -sceAppMessagingSendMsgToShellCore -sceKeyboardOpen -sceSslDeleteConnection -sceDbgKeyboardReadState -sceNpStopApp -sceNetConfigDelArp -sceSysUtilSendSystemNotificationWithTextRelatedToUser -sceContentExportFromFileWithTitleIdList -sceVencCoreQueryMemorySizeEx -sceGpuExceptionAddDebuggerHandler -sceNetMemoryAllocate -sceLncUtilNotifyCoredumpRequestProgress -sceUserServiceSetAccessibilityZoom -sceNpLookupNetDeleteRequest -sceNpRemotePlaySessionSignalingGetLocalNetInfo -sceNpManagerIntAccountId2UserId -scePthreadTimedjoin -sceNpTrophyGetGameIcon -sceUserServiceGetSaveDataAutoSync -ScePsmMonoConfigParse -sceAgcDriverIsPaDebug -sceBgftServiceIntUploadSetUploadError -sceNetCtlApRpStartConf -sceDbgAmprAmmGetErrors -sceCesUtf32beToEucCn -sceBluetoothHidParamInitialize -sceSystemServiceAppGetAppInstallStatus -scePssMusicPlayerSetLoopFramePos -sceVdecCoreInitializeComputeResource -sceCesIso2022JpUcsProfileSetSbcs -sceCesUtf8ToUhc -sceNetErrnoLoc -sceBgftServiceIntDownloadStartTask -sceKernelBeginAppMount2 -sceHttpSetAcceptEncodingGZIPEnabled -sceLncUtilGetParentSocket -sceGnmIsCoredumpValid -ScePsmMonoJitExec2 -sceMusicCoreServerSetAudioVolume -sceNpTrophySystemWrapRemoveTitleData -sceHmdDistortionGetCorrectionCommand -sceTsGetStreamInfo -sceMsgDialogClose -sceFontGraphicsTextureMakeFillTextureImage -scePlayGoPrefetchOptionalChunk -sceNpWebApiRegisterNotificationCallback -sceRtcGetCurrentRawNetworkTick -sceCameraGetWhiteBalance -sceClHttpDeleteTemplate -sceAmprAmmWaitCommandBufferCompletion -sceVideoOutAddFlipEvent -sceFsDevpfsWaitEvent -sceUserServiceSetGlsCamCrop -sceKernelWriteMultiMapWithGpuMaskIdCommand -_sceDepthSetCameraFactoryCalibrationData -sceVideoCoreSetInitializeInfo -sceKernelGetModuleInfoInternal -sceDebugGetModuleList -sceAgcDcbContextStateOp -sceUsbdClose -sceUltReaderWriterLockLockRead -sceImeBackendSetConvertMode -sceKernelDebugRaiseExceptionWithInfo -sceAudio3dAudioOutOutputs -sceWorkspaceMirrorBarrier -scePlayReadyCdmiGetKeySystem -sceKeyboardDisconnectPort -sceDbgGetDebugSuspendCount -sceShellCoreUtilGetRunLevel -sceVshAvcapGetInfo -sceUserServiceSetGlsIsFacebookEnabled -sceMbusEventCallbackFuncsInit_ -sceKernelAioSubmitReadCommands -sceIduUtilReboot -sceShellCoreUtilStartPsNowGame -ScePsmMonoJitParseOptions -sceKernelDeleteEport -sceNpServiceClientTerm -sceNpSnsFacebookDialogOpen -sceVideoOutCursorIsUpdatePending -sceAgcDriverSetupRegisterShadow -sceNetCtlUnregisterCallbackV6IpcInt -sceNpManagerIntGetAuthServerErrorFlag -sceAudioOutExGetOutputInfo -sceUserServiceSetThemeTextShadow -sceNpUtilUtf8GetOneChar -sceWkFontConfigGetFontPath -sceGnmDrawIndex -scePthreadSuspendAll -sceNpUniversalDataSystemCreateEventPropertyArray -sceLibcOnce -sceNpSnsYouTubeDialogInitialize -sceHandDetectionLocal -sceNpPush2DeleteUserContext -sceEsvmEngineMediaKeysSetServerCertificate -sceNpManagerIntDeleteRequest -sceBgftServiceIntDownloadDebugGetStat -sceImeConfigGet -sceNpInt64ToStr -sceFontGraphicsCanvasSetSurfaceFill -sceNetGetIfList -sceNpMatching2SetRoomMemberDataInternal -scePthreadGetname -sceFontGraphicsStructureDesignResource -sceDevUsbInit -sceRnpsAppMgrPushEventForShellUI -sceAudioOut2LoContextPush -sceUserServiceSetGamePresets -sceUpsrvUpdateDoUpdateBeta -sceAvControlIsDeviceConnected -sceNpManagerIntGetTitleTokenWithCheck -sceGnmDebuggerResumeWavefront -sceUserServiceGetPbtcFlag -sceUserServiceSetPbtcTzOffset -sceNpTrophyGroupArrayGetNum -sceNpAsmClientGetNpTitleToken -sceVideoOutAddDriver -sceKernelGetUtokenExpirationTimeNotbeforeForRcmgr -sceSaveDataRestoreBackupDataForCdlg -sceVideoOutSubmitChangeBufferAttribute2 -sceRegMgrCntSetInitReinst -scePthreadBarrierDestroy -sceNpManagerIntGetAccountNpEnv -sceUsbdFreeConfigDescriptor -sceKernelWaitAIOs -sceNpHexToInt -sceSlimglCompositorWaitPostEvent -sceGameCustomDataDialogTerminate -sceUserServiceSetGlsLiveQuality4 -sceNpWebApi2GetHttpResponseHeaderValueLength -sceJpegDecDelete -sceDebugNoStopChildProcesses -sceUserServiceGetGlsBroadcastService -sceMoveTrackerCaptureTerm -sceNpManagerIntStartSystemMode -sceMoveOpen -sceGnmValidateGetVersion -sceHmdInternalSetIPDSettingEnableForSystemService -sceNgs2StreamCreateWithAllocator -sceAmprMeasureCommandSizeWriteCounter_04_00 -sceKernelWriteSdkEventLog -sceFontSetResolutionDpi -sceAvSettingRemoveProcessOutputMode -sceAudioOutGetFocusEnablePid -sceHttpsEnableOptionPrivate -sceTsOpenFileEx -sceAudioSystemSystemResume -sceIduUtilGetEnvironment -sceFontGraphicsUpdateShapeFillPlot -sceNpTusGetMultiUserDataStatusVUserAsync -sceVorbisDecBitrateInstant -sceAppInstUtilAppGetAddcontInfoByContentId -sceErrorDialogInitialize -sceMatAllocPoolMemory -sceAudioOutStartAuxBroadcast -sceFontClearDeviceCache -sceNpTcsIntUploadDataToNewSlotAbort -sceUserServiceGetFileSelectorSortContent -sceImeDialogGetStatus -scePerfTracePmUpdate -sceCameraGetVrCaptureInfo -sceVrTrackerTerm -sceScreenShotIsVshScreenCaptureDisabled -sceNetCtlConnectIpcInt -sceNpAsmGetNpCommInfo2 -sceUsbStorageRequestMap -sceMusicFwSetCurrentTime -sceNpWordFilterCreateAsyncRequest -sceNpUniversalDataSystemEventPropertyArraySetBinary -sceContentBinderGetNumOfDifference -sceSocialScreenConfigureSeparateMode -sceMoveSetVibration -sceMbusDebugReleaseControl -sceNpServiceChecker2IntCreateRequest -sceNpManagerIntUnbindOfflineAccountId -sceIduUtilIsDiscInserted -sceVrTracker2CheckPointIsInsidePlayAreaBoundary -sceLncUtilIsAppLaunched -sceDeci4hGetStatus -sceShellCoreUtilIsUsbMassStorageMounted -scePadDeviceClassParseData -sceNpSignalingSetContextOption -sceVideoCoreInterfaceGetRenderFrameBuffer -sceUserServiceSetShareStatus2 -scePsmUtilGetLabelAssetManagerSize -pthread_spin_destroy -sceUlpMgrVshInstallCmd -sceIduUtilIsInitialised -sceUserServiceGetIsFakePlus -sceAvControlSetHdcpEncryption -scePlayReadyBufferRealloc -sceCesUcs2ToGb -sceIduUtilSetSettingStr -sceNpWebApiCreateContextForContactsApp -sceFontGraphicsUpdateLocation -sceSpPthreadCondInit -sceUpsrvInitialize -sceVideoOutSubmitChangeBufferAttribute -sceKernelSetEventFlag -sceFsNsfsSetGlobalExclude -sceVoiceInitHQ -sceCompanionUtilOptParamInitialize -sceNpGetGamePresenceStatus -sceFontTextCodesStepBack -sceVrTracker2Finalize -sceApplicationGetCpuUsage -sceHttpGetEpollId -sceGpuTraceParametersInit -sceCustomMusicCoreSendMulticastEvent -scePlayReadyReaderDecryptMultipleOpaque -sceAudioInChangeAppModuleState -sceNpEntitlementAccessGenerateTransactionId -sceFontGetRenderCharGlyphMetrics -sceMusicCoreServerGetSpTrackInfo -sceNpRemotePlaySessionSignalingGetConnectionStatus -sceSysUtilSendSystemNotificationWithDeviceIdRelatedToUser -sceUlpMgrInit -sceNpTrophySetInfoGetTrophyFlagArray -sceCompositorInitWithProcessOrder -sceFaceTrackerGetResult -sceNpTssGetStorage -sceUpsrvUpdateGetProgress -sceHidControlSetHandleState -sceUserServiceGetImeRunCount -sceKernelMapFlexibleMemory -scePadVirtualDeviceInsertData -sceShellCoreUtilSetSkipUpdateCheck -sceHttpUriParse -sceHmdReprojectionQueryOnionBuffAlign -sceHttp2GetCookieBox -sceUsbStorageDialogInitialize -sceHttpCacheCompleteRequest -sceNpCommerceDialogOpen2 -sceRemoteplayChangeEnterKey -sceHttp2AbortRequest -sceAudioOutSetMorpheusWorkingMode -sceVideoOutGetCoredumpOutputMode -sceNpTrophySystemRegisterTitleUpdateCallback -sceAudioOut2UserDestroy -scePthreadMutexTimedlock -sceUserServiceSetUserGroupIndex -sceVrTracker2ResetLocalCoordinate -sceKernelGetDefaultToolMemorySize -sceGnmDrawInitDefaultHardwareState -sceNpBase64UrlEncoder -sceDebugCreatePerfScratchDataArea -scePlayGoGetSupportedOptionalChunk -sceClAudiodecDecode -sceVrTrackerSubmitCompute -sceUpsrvUpdateGetUrlForFeatureList -sceApplicationRaiseException -sceBluetoothHidSetOutputReport -sceLncUtilKillLocalProcess -sceUserServiceSetPartySettingFlags -sceKernelDeleteAmprSystemEvent -sceHttpTerm -sceVideoCoreInterfaceAddVblankEvent -sceNetConfigWlanInfraLeave -sceNpInGameMessagePrepareA -sceHandTrackerInitialize -sceMusicCoreServerGetStatusOfTracks -sceShellCoreUtilNotifyYouTubeAccountLinkStatusChanged -sceCesUtf8StrGetMbcsLen -sceAudio3dGetDefaultOpenParameters -sceNpTrophy2SystemDebugLockTrophy -sceCustomMusicCoreStartOperation -sceVnaSetWakeUpPhraseTelemetry -sceKernelDeleteACInfo -sceNetEpollDestroy -sceNpWebApi2AddMultipartPart -pthread_mutex_timedlock -sceImeDialogInitInternal3 -sceMoveTrackerCalibrateReset -sceVideoOutSysGetColorConversionStatus -sceNpUniversalDataSystemIntCreateHandle -sceNpStartApp -scePatchCheckerClearCache -sceAudioOut2ReportUnregisterHandler -sceFontGetScriptLanguage -sceVorbisDecRead -sceMbusDebugDecodeApplicationStartupInfo -sceKernelGetModuleList -sceNpMatching2SendRoomMessage -sceUserServiceGetTopMenuLimitItem -sceAgcDmaDataPatchSetDstAddressOrOffset -sceNpManagerIntCreateAuthenticationTicket -sceVideoOutSysGetCurrentOutputMode -sceAudioOutA3dControl -sceShellCoreUtilResetAutoPowerDownTimer -sceUserServiceSetIPDLeft -sceKernelDeleteHRTimerEvent -sceUserServiceGetPbtcSundayHoursEnd -sceUserServiceGetPbtcSundayHoursStart -sceRudpActivate -sceRnpsAppMgrUnregisterShellUI -sceUserServiceGetHomeDirectory -sceNpManagerIntAddActiveSigninStateCallback -sceDebugGetEventSubscriptionListForEQueueFd -sceSaveDataDebugCheckBackupData -sceHttpCacheSystemTerm -scePsmUtilGetHighResoImageAssetManagerSize -sceVrTracker2GetResult -sceNpUniversalDataSystemIntRecordArraySetUInt32 -sceUserServiceGetNpLanguageCode -sceShellCoreUtilGetCrashReportInfoStart -sceKernelCloseEport -sceNetResolverGetError -sceMbusSetRoutingMode -sceFiosFHPwritevSync -sceImeVshSetSelectionText -sceUltReaderWriterLockTryLockRead -sceRnpsAppMgrStartService -sceAgcQueueEndOfPipeActionPatchGcrCntl -sceNpPartyLeave -sceSystemServiceGetUIStatus -sceHmdSetupDialogGetStatus -pthread_mutexattr_setkind_np -sceFiosOpGetOffset -sceNpLookupCreateAsyncRequest -sceImeDicDeleteWord -sceHttpsGetSslError -sceKernelGetHwModelName -sceFontGlyphRefersMetricsHorizontalX -sceUpsrvUpdateCheckRequestCheckGame -sceDevUsbAddHostKevent -scePlayerInvitationDialogInitialize -sceVencCoreSetPasteImage -sceAudioOutSetJediJackVolume2 -sceSdecExecuteSwHevc -sceAudioOutSystemControlGet -sceNpCheckCallbackForLib -sceCesUtf32beToEucJp -sceAmprAmmCommandBufferMap -sceUserServiceGetVoiceAgentSessionTimeout -sceVdecCoreSyncDecodeWptr -sceSystemServiceGetEventForDaemon -sceRazorCpuBeginLogicalFileAccess -sceDeci4hDrfpRmdir_fuse -sceDepth2QueryMemory -sceDataTransferGetFgTransferProgress -sceKernelGetFsSandboxRandomWord -scePthreadCondBroadcast -sceNpHeapFreeImpl -sceBdSchedSetDiscIdentity -sceNpServiceClientInit -sceDebugReleaseDebugRegister -sceMusicCoreServerForceKillCurrentCore -sceUserServiceSetPbtcFlag -sceNetEmulationGet -sceAudioOut2PortCreate -sceNpTusTryAndSetVariableForCrossSaveAsync -sceDataTransferTargetAbortPrepareTransfer -sceHttpAbortRequestForce -sceVnaPlayTts -pthread_attr_setguardsize -sceAppInstUtilGetContentSize2 -sceHttpAddQuery -scePsmExecute -sceVideoCoreSetThumbnailInfo -sceNpTrophySystemCloseStorage -sceNgs2RackSetUserData -pthread_attr_getguardsize -sceNetCtlGetNatInfo -sceUserServiceSetPbtcThursdayHoursStart -sceAgcCbSetUcRegisterRangeDirectGetSize -sceAmprAmmMeasureAmmCommandSizeModifyProtect -sceJpegDecCreate -sceFontWritingLineGetOrderingSpace -sceNetResolverConnect -sceGnmDebuggerResumeWavefrontCreation -sceUserServiceSetVolumeForDs4Speaker -sceUserServiceSetShareStatus3 -sceKernelCheckDipsw -sceNpGetAccountCountryA -sceShellCoreUtilWriteSmrHddDummyData -sceKernelWaitEventFlag -sceUltConditionVariableSignal -sceUserServiceGetPbtcSundayDuration -sceKernelGetDebugMenuMiniModeForRcmgr -scePthreadMulti -sceNgs2SystemUnlock -sceNetCtlGetState2IpcInt -sceAmprMeasureCommandSizeWriteAddressFromCounter_04_00 -sceUserServiceSetThemeBgImageDimmer -pthread_sigmask -sceDebugReadProcessRegisterForSDBGP -scePthreadAttrGetdetachstate -sceSpPthreadCondDestroy -pthread_attr_setschedpolicy -pthread_getaffinity_np -sceHidControlSetApplicationFocus -sceNpAppInfoIntCheckServiceAvailabilityAllA -sceAvPlayerGetVideoDataEx -sceVisionManagerRequestOpen -sceFiberFinalize -sceVisionManagerSetCallbackForUpdateStoreFrame -sceAudioOutInit -sceAmprAprCommandBufferReadFileScatter -sceVnaSetAgentIntentSessionTelemetry -sceRnpsAppMgrGetAppInfo -sceCesUtf16leToSbc -sceAudioInClose -scePlayReadyCdmiClose -sceFsUfsRecryptSyncMetadata -sceLoginMgrServerSetLoginFlag -sceSystemGestureGetPrimitiveTouchEventsCount -sceUserServiceSetNpEnv -sceNpWordFilterSanitizeComment -sceVnaGetAgentAvailabilityInfo -sceSystemServiceActivateMpeg2Term -sceNpScoreGetGameDataAsync -sceAjmBatchJobGetResampleInfo -sceLoginMgrServerDialogNotifyCloseFinished -sceCameraSetCalibDataForEve -sceVideoOutSysUpdatePrivilege -sceVencCoreStopSequence -sceHttp2CookieExport -sceMusicPlayerServiceSetUsbStorageDeviceInfo -sceSigninDialogOpen -sceShareUtilityInitialize -sceKernelSetPackageInfo -sceNpUniversalDataSystemEventPropertyArraySetFloat32 -pthread_create_name_np -sceDataTransferTargetRequestComplete -sceSystemServiceLoadExec -sceImeDicGetWords -sceKernelIsMainOnStanbyMode -sceCesUtf32StrToIso2022Str -sceVideoOutColorSpaceConversionSettingsSetDefaultSdrToHdrConversion_ -sceAvControlIsAudioOutModeSupportedByMonitorInfo -sceUserServiceSetUserName -sceUserServiceGetPbtcPlayTime -sceFsSmrTrimAll -sceNpAsmAbort -sceNpMatching2GetRoomDataInternal -sceAgcAcbResetQueue -sceNpTrophySystemSetDbgParamInt -scePerfTraceAmmDeleteBufferNotifyEvent -sceAppInstUtilGetSubAppTitleId -sceCamera2GetAttribute -sceScreenShotCapture -sceDebugGetFileListForCoredump -sceNpTrophySystemCheckCallback -sceWorkspaceGetNumberOfPendingUpdates -scePssMousePushState -sceFsDevpfsRegisterEvent -sceKernelDeleteReadEvent -sceDiscIdGet2 -sceNetCtlGetInfoV6 -sceMatAgcUnregisterOwnerAndResources -sceFontOpenFontInstance -sceNpTrophySystemAbortHandle -sceNpWebApiAbortRequest -sceFiberRename -sceNpMatching2SendLobbyChatMessage -sceLoginMgrServerGetLogoutInfo -sceJpegEncCreate -sceShellCoreUtilPreNotifyOfRemotePlay -pthread_mutex_trylock -sceBdSchedSetPrioritizedBackgroundCopyRequest -sceGameLiveStreamingPermitLiveStreaming -sceKernelIsDebuggerAttached -sceAgcDriverIsSuspendPointInFlight -sceKeyboardSetProcessPrivilege -sceHttpSetResolveRetry -sceCesUtf8StrGetIso2022Len -sceRegMgrBackupNeedMemForPS4 -sceAgcSetNop -sceApplicationIsCrashReportBeingProcessed -sceShellCoreUtilSetGameLiveStreamingStatus -sceGnmSetResourceUserData -sceHmdInitialize -sceUserServiceSetCaptureStatus -sceNetConfigWlanAdhocLeave -sceVdecCoreGetDecodeOutput -sceApplicationSetMemoryPstate -Seek -sceFsLvdAttach -sceNetPoolDestroy -sceFiosDHGetPath -sceUsbStorageDialogClose -sceCameraSetLensCorrection -sceVrTrackerQueryMemory -sceUserServiceGetThemeHomeShareOwner -sceUlpMgrReqClose -pthread_cond_reltimedwait_np -sceFsUfsMkfsWithFixedCylinderGroupSize -sceSaveDataDebugCreateSaveDataRoot -sceNpScoreGetRankingByAccountId -sceNpAsmClientDeleteResourceContext -sceVideoOutDeleteDriver -sceSharePlaySetProhibitionModeWithAppId -sceOpusDecCreateEx -sceSystemGestureGetPrimitiveTouchEventByIndex -sceKernelNormalizePath -sceNpScoreGetRankingByRange -sceVisionManagerCancelRequest -sceNpTusGetMultiSlotDataStatusForCrossSaveVUser -sceNpWebApiCreateMultipartRequest -sceNpMatching2GetRoomMemberIdListLocal -sceDebugGetProcessPropertyForCoredump -sceClHttpSendRequest -sceVoiceQoSSetConnectionAttribute -sceNpWebApiSendMultipartRequest -sceVideoOutHdmiMonitorInfoIsSupportedHdcpVersion_ -sceNpUtilGetNthChar -sceKernelSetCpumodeGame -sceDebugIpmiGetBlockTimeInfoList -sceKernelCreateEport -sceFsDevpfsEventComplete -sceVnaCheckCallback -scalbn -sceShellCoreUtilIsNeededCrashReport -sceVideoOutSetContentType -sceAudiodecDecode -sceVrSetupDialogUpdateStatus -sceGnmSpmInit2 -sceVisionManagerFinalize -sceVideoRecordingClose -sceNpAuthGetAuthorizationCodeV3 -sceSlimglServerEndClient -sceAudioOutSetMainOutput -sceClPthreadSetprio -sceNpWebApi2PushEventDeleteFilter -sceHttpDbgShowConnectionStat -sceUserServiceSetParentalBdAge -sceSaveDataDialogUpdateStatus -sceKernelSwitchToBaseMode -sceCustomMusicSelect -sceIduUtilRegisterOverlayMsg -scePadSetAngularVelocityBiasCorrectionState -sceAvPlayerAddSource -sceNpTusSetTimeout -sceHandTrackerSetDepthInfo -sceVshAvcapOpenAudioEx -sceNpGameIntentGetUdsNpComId -sceNpSetGamePresenceOnline -sceKernelAioWaitRequest -sceRazorCpuJobManagerJob -sceUserServiceSetVolumeForOtherDevices -_sceVideoRecordingQueryParam -sceNpGriefReportTerm -sceSystemServiceIsShellUiFgAndGameBgCpuMode -sceNpWebApiClearAllUnusedConnection -sceAppInstUtilGetRestoreState -sceNpManagerIntLoginAuthenticate -sceSysUtilSendSystemNotificationWithAppId -sceImeDialogInitInternal -sceMbusGetDeviceInfoByCondition_ -sceAgcAcbAcquireMem -sceNpMatching2RegisterManualUdpSignalingCallback -sceShellCoreUtilDeclareBeginOfExternalStorageAppMove -sceAvControlIsVideoOutModeSupportedByMonitorInfo -sceNpLookupNetCreateRequest -sceAmprAmmMeasureAmmCommandSizeMapDirectWithGpuMaskId -scePs2EmuMenuDialogUpdateStatus -sceDataTransferTargetGetRebootData -sceFiosDebugStatisticsPrint -sceNpWebApi2PushEventSetHandleTimeout -sceTextToSpeechInitImpl -sceFontOpenFontMemory -scePktMgrPrepareUlpResPacket -sceGnmSetCsShader -sceNpEulaDialogInitialize -sceBgftServiceDownloadStopTask -sceApplicationSave -sceNpGetAccountLanguage -sceFontGraphicsSetupColorRates -sceDebugGetUltSemaphoreInfo -sceRudpWrite -sceGicGetValue -sceNpTrophy2SystemRemoveAll -sceMusicPlayerServicePlay -sceNpScoreGetRankingByAccountIdForCrossSaveAsync -sceSystemServiceGetSubAppTitleIdForSP -sceMbusDisableChat -sceVnaSetVoiceOskOptInStatus -sceSocialScreenSetIgnoreSeparateMode -sceMbusDumpHandleStatusInfoAll -sceKernelRtldControl -sceNpIpcWaitRequest -sceNpCheckNpReachability -_sceLibcMspaceReallocalign -sceAvSettingDebugGetDetailedHdcpStatus -sceNgs2FftInit -sceApplicationRestore -sceFsSetClusterCacheSize -sceHttpSetCookieRecvCallback -sceNetDhcpGetAutoipInfo -sceNpPush2SendPushStatisticsDataSystemTelemetry -sceKernelStreamWriteActivate -sceNetThreadExit -sceHttpCreateConnection -sceFiberStopContextSizeCheck -sceNpPush2Term -sceNpWebApiSendRequest2 -sceAgcDcbPrimeUtcl2GetSize -sceSdmaMapUserVAddress -sceCesMbcsStrGetUtf16Len -sceAudiodecCpuInternalInitDecoder -sceFiosFHWriteSync -sceGnmLogicalTcaUnitToPhysical -sceSysUtilSendSystemNotificationWithUserNameInfo -sceNpUniversalDataSystemGetStorageStat -sceCesUtf16beToUhc -sceNpGriefReportDeleteTicketData -sceNpScoreCreateNpTitleCtx -sceNpPush2OptionalCheckCallback -sceAppInstUtilAppGetInsertedDiscTitleId -sceGnmGetNumTcaUnits -sceShareUnregisterContentEventCallback -sceAvSettingNotifyProcessSuspend -sceAcm_FFT -sceHttpSetCookieMaxNumPerDomain -sceAudioInExtInput -sceKernelAddACInfo -sceUserServiceGetPbtcTuesdayHoursEnd -sceNpServiceChecker2IntAbortRequest -sceCesUtf16leToGb -sceAmprAmmGetUsageStatsData -_sceLibcInternal -sceNpUniversalDataSystemIntRecordObjectSetFloat64 -sceSdmaFlushAllCb -scePatchCheckerRequestCheckPatchByType -sceFiosDeleteSync -sceNpRegisterGamePresenceCallbackA -sceLncUtilSystemSuspend -sceAgcDriverRegisterGpuResetCallbacks -sceNpTrophySystemGetTrpTrophyIcon -sceSaveDataGetAppLaunchedUser -scePssAudGetSurroundPan -sceGnmSetCsShaderWithModifier -sceNpAuthGetAuthorizationCode -sceLoginMgrServerSetSharePlayMode -sceNpUtilNpIdToJid -sceShellCoreUtilIsGameLiveStreamingOnAir -scePthreadRwlockattrGettype -sceNpHeapMallocImpl -sceFsUfsGrowfs -sceRemoteplayGetApMode -sceHttpGetConnectionStat -sceKernelMapDirectMemory -sceGnmSqttGetBcInfo -sceDebugGetThreadListAsIdent -sceUsbdSubmitTransfer -sceKernelGetPrtAperture -sceClHttpGetMemoryPoolStats -sceKernelIccGetSysEventLog -sceSpNetEpollCreate -sceHttpDbgShowRequestStat -sceMbusDebugAcquireControl -sceDeci4hDrfpMkdir_fuse_fullpath -sceIpmiMgrStartDump -sceHmdInternalGetDebugMode -sceMoveIsReproductionModel -sceBluetoothHidDebugGetVersion -sceShellCoreUtilGetSharePlayStatus -sceShellCoreUtilGetCrashReportUploadStatus -sceKernelEventLogRead -sceDepthGetRectificationInformation -sceNpTrophy2SystemRegisterTitleUpdateCallback -sceUsbdGetConfiguration -sceSystemServiceUsbStorageGetdentsRead -sceKernelInternalGetKmemStatistics -sceVideoCoreSetPlaybackRange -scePerfPmcL3GetCounterSelf -sceSystemGestureGetPrimitiveTouchEvents -sceFontGetCharGlyphMetrics -sceNetCtlGetScanInfoForSsidScanIpcInt -sceNpSnsDailymotionDialogClose -sceNpSessionSignalingSetCustomProperty -sceDebugGetVirtualMemoryInfoForCoredump -sceAcm_Panner -sceFontFtSupportCid -sceAvControlSetAvOutputMode -sceImeVshOpen -sceHmd2GazeGetCalibrationDataMaxSize -sceVisionManagerGetCalibrateTrackingLedNecessity -sceDebugResumeProcess -sceCustomMusicCoreBgmStop -sceProprietaryVoiceChatHelperInitialize -sceCesUtf32beToMbc -sceCameraSetCalibData -pthread_spin_unlock -sceNetCtlApRpGetState -sceAgcDriverUserDataWritePopMarker -sceVdecswGetVp9PictureInfo -sceAgcDcbSetWorkloadsActive -sceMbusCheckDriverCallback -sceKernelLwfsAllocateBlock -sceSystemServiceChangeMemoryClock -sceHttpSetEpollId -sceNpManagerPrxStartVsh -sceCustomMusicCoreBgmStart -sceDepthEnableHeteroModeAndGenerateInformation -sceFontDeleteGlyph -sceAgcDcbSetCxRegisterDirect -sceNpCreateSema -sceFiosExists -sceNpTrophyGetTrophyUnlockState -sceUserServiceSetGlsBroadcastService -sceCesUtf16ToEucJp -sceMatReleasePhysicalMemory -sceKernelDeleteUserEvent -sceHmdGetDistortionWorkMemorySizeFor2d -scePfsPread -sceKernelGetFlagedUpdaterForRcmgr -sceNetCtlSetErrorNotificationEnabledIpcInt -sceDeci4hDrfpChstat_utimens_fuse_fullpath -sceNpMatching2SignalingEnableManualUdpMode -scePadVirtualDeviceGetRemoteSetting -sceAppInstUtilAppProhibitDownloadInstall -sceSaveDataSyncCloudList -sceCesUtf32ToEucKr -sceHmdInternalIsMiniAppVr2d -sceRtcGetCurrentAdNetworkTick -sceAppInstUtilGetAddcontInfoList2 -sceCesRefersUcsProfileCp1252 -sceNpTusGetMultiSlotDataStatusForCrossSaveAsync -sceVideoStreamingEngineMediaKeySystemAccessSetCdmStorageConfig -sceGnmSdmaFlush -sceGnmSqttGetGpuClocks -sceNpCommerceDialogUpdateStatus -sceNpServiceCheckerIntFinalize -sceSdmaKickQueue -sceJpegDecParseHeader -sceVnaNotify -sceSystemServiceUsbStorageGetDeviceInfo -sceNpTusGetFriendsDataStatusAsync -sceDeci4hDrfpRemove -sceHmdInternalIsCommonDlgVr2d -sceNetCtlApGetInfo -sceNpTitleMetadataIntGetNpTitleId -sceDebugGetUltQueueDataResourcePoolInfo -sceSigninDialogTerminate -sceKernelMemoryPoolDecommit -sceLibcInternalSetMallocCallback -sceVideoCoreSyncSendRequest -sceGameUpdateCheck -sceLibcMspaceCalloc -sceRegMgrCheckError -sceLncUtilGetResultLaunchAppByTitleId -sceClPthreadMutexLock -sceSystemStateMgrEnterStandby -sceBgftServiceIntDownloadGetApplicationDataSize -scePthreadTestcancel -sceTextToSpeech2RegisterTextConversionItem -sceMbusRemoveProxy -sceUserServiceGetGlsCameraBrightness -scePthreadRwlockattrGetpshared -sceFiberStartContextSizeCheck -sceVisionManagerSetCallbackForUpdateRecog -sceAgcDriverGetOwnerName -sceImeCheckFilterText -sceHttpCacheSystemInit -sceLoginMgrServerNotifyShellUIState -sceHttpDbgEnableProfile -sceAvControlGetPuType -sceNpProfileDialogInitialize -sceGnmSdmaCopyLinear -sceNpPushIntRegisterNotificationPacketCallback -sceUserServiceSetGlsTtsFlags -sceUserServiceGetIsRemotePlayAllowed -sceNpMatching2GetServerId -sceRegMgrSetbin -sceHmdReprojectionSetOutputMinColor -sceRudpPollDestroy -sceHmdInternalSetPortConnection -sceBdSchedGetState -sceAgcGetPacketSize -sceM4aacEncFlushEx -sceShellCoreUtilFormatHddForRestore -sceRtcInit -sceUserServiceSetFileSelectorSortTitle -sceNpScoreGetGameDataByAccountId -sceDeci4hDrfpClose_fuse -sceNpScoreGetBoardInfo -scePlayGoSetLanguageMask -sceCesUcsProfileInitBig5Cp950 -sceLncUtilLaunchByName2 -sceAudioInInput -sceNpPush2UnregisterExtendedDataFilter -sceEsvmEngineMediaKeySystemAccessSetCdmStorageConfig -sceFontGraphicsSetupFillMethod -sceShareUtilityOpenShareMenu -sceVideoCoreSetAudioMute -sceMsgDialogGetResult -sceMbusSetScratchData -sceFaceTrackerGetUserFeature -scePatchCheckerEnableAutoDownload -sceNpUtilXmlGetOneChar -sceNpManagerUtilGetVshScopeList -sceLncUtilGetAppCategoryType -sceAgcCbNop -sceNpIntGetNpTitleIdSecret -sceCesSJisToUcs2 -sceNpRtcParseRFC3339 -_sceUltWaitingQueueResourcePoolOptParamInitialize -sceVideoCoreInterfaceDestroyCanvasContext -sceVideoCoreGetPlayStatus2 -sceSrcUtilityGetDelaySamples -sceKernelDlsym -sceKernelRdup -sceVnaSetInputDevice -sceFiosGetSuspendCount -sceUserServiceGetGlsLfpsSortOrder -scePlayReadyApiVersion -sceMbusNotifyBtDisconnection -sceFontGetLibrary -sceFsUfsMkLwfs -sceShellCoreUtilIsAppLaunched -sceVorbisDecComment -sceSystemServiceAcquireBgmCpuBudget -sceVideoOutControlHdcpEncryption -sceAmprAmmCommandBufferUnmap -sceVencSetDecodedFrame -sceSystemServiceUsbStorageRegisterCallbackForMapUnavailable -sceAgcAcbDmaDataGetSize -sceKernelReportUnpatchedFunctionCall -sceMbusAddAudioOutHandleAttribute -scePsmReadConfigurationFile -scePlayGoOpen -sceRtcConvertUtcToLocalTime -sceNpWebApiCreateExtdPushEventFilter -sceErrorDialogOpen -sceKernelStreamWriteCreate -sceSigninDialogClose -sceNpUnregisterStateCallbackA -sceNgs2RackGetInfo -sceNpEntitlementAccessPollUnifiedEntitlementInfo -sceVrServiceDialogTerminate -sceNpUtilityTerm -sceRudpPollWait -sceLibcHeapSetTraceMarker -sceCompositorSetIndirectCompositionCommand -sceUlpMgrVshReadEvent -sceMusicPlayerServiceNextTrack -sceDeci4hDrfpOpen -sceUpsrvUpdateGetEulaStrLen -sceAppInstUtilAppGetCustomThemeInfo -sceCesUtf8ToSJis -sceNpEntitlementAccessRequestServiceEntitlementInfo -sceFiosPathNormalize -sceKernelWriteWaitOnCounterCommand -scePigletSetConfigurationVSH -sceVnaGetVoiceDataCollectionSettingsAsync -sceSrcUtilityResample -sceUserServiceSetFileBrowserFilter -sceAgcDriverGetResourceName -sceNpUniversalDataSystemIntRecordObjectSetInt64 -sceNpScoreGetRankingByRangeA -sceGnmValidateResetState -sceCesEucKrToUtf32be -sceVideoOutAddBufferAttributeOption -sceKernelReleaseDirectMemory -sceVideoOutLatencyMeasureSetStartPoint -sceNpXmlParseInit -sceKernelCallIndirectBuffer2 -sceAgcCbSetUcRegisterRangeDirect -sceNetConfigWlanBackgroundScanQuery -sceRtcTickAddHours -sceNpManagerIntGetUserIdByNpId -sceAvSettingDebugSetDiagState -sceAgcDriverGetRegShadowInfoAgr -sceFontGraphicsSetupLocation -sceCoredumpAttachMemoryRegionAsUserFile -sceCtrlpSetPlayData -sceFontFtSetAliasPath -sceUserServiceGetTopMenuTutorialFlag -sceAudioOutSysOpen -sceNpTusTryAndSetVariableForCrossSave -sceRegMgrPrivateStorageRead -sceVnaDisableAgentGui -scePatchCheckerCreateHandler -sceMbusStartAudioOutSharePlay -sceAjmFinalize -sceNgs2RackRunCommands -sceGnmDebuggerWriteGds -sceSdecDestroySw2 -sceFsTransactionSaveDataInitMountOpt -scePadSetConnection -sceGameLiveStreamingSetStandbyScreenResource -sceAgcDriverSetHsOffchipParam -sceAgcDcbSetBaseDrawIndirectArgsGetSize -sceFontCreateString -sceAppInstUtilGetAddons -sceHttp2WaitAsync -scePlayGoTerminate -sceVorbisDecPcmTell -sceRnpsAppMgrFinishUrlRequest -sceCesEucCnToUtf16 -sceKernelJitCreateAliasOfSharedMemory -sceShellCoreUtilActivateStart -sceVideoStreamingEngineMediaKeySystemAccessCreateMediaKeys -sceUrlConfigResolverGetAppConfig -sceImeBackendEnterCharacter -sceLibcBacktraceSelf -sceVideoOutSetWindowModeMargins -sceNpManagerIntSetRequestHeader -sceNpUtilGetFakeDisplayNameMode -sceFontGraphicsDrawVertexesGlyph -scePerfTraceAprNameCreate -sceLncUtilGetAppId -sceRudpPollCreate -sceCesUtf32ToSJis -sceApplicationSignalShellCoreHeartBeat -sceNpTrophyConfigGetTrophySetVersion -sceNpAllocateKernelMemoryNoAlignment -sceAgcDcbWaitUntilSafeForRendering -sceSystemServiceReleaseBgmCpuBudget -sceVisionManagerRequestFindPadCorrespondRegion -sceNpTrophySystemRegisterTitleSyncedCallback -scePssPadrGetOutputPortCount -sceDtcpIpPoolAsync -sceGnmResetVgtControl -sceCustomMusicServiceInitialize -sceCesRefersUcsProfileCp862 -sceTsCloseFile -sceUserServiceIsLoggedIn -sceKernelGetUtokenFakeSharefactoryForRcmgr -sceCompanionUtilGetRemoteOskEvent -sceAudioOutPtClose -scePadSetButtonRemappingInfo -sceHttp2SetCookieSendCallback -sceSharePlayGetEvent -scePerfPmcSetCounter -sceHmdReprojectionDebugGetLastInfo -sceShellCoreUtilSetGpuLoadEmulationMode -sceAgcDriverAcquireRazorACQ -sceNpUniversalDataSystemEventPropertyObjectSetString -sceShellCoreUtilGetCloudClientStatus -sceUserServiceSetForegroundUser -sceNpWebApi2AddWebTraceTag -scePlayReadyCdmiCreateMediaKeySystemAccess -sceSystemServiceDisableSuspendNotification -sceShellCoreUtilNavigateToLaunchedApp -sceFsMountPprPkg -sceFiosFHGetPath -sceDebugGetThreadList -sceAppInstUtilGetAppEmptySlot -sceCompositorGetDmemOffset -sceNpServiceCheckerIntGetAvailabilityList -sceMbusSetThreadParam -sceAgcQueueEndOfPipeActionPatchData -sceUsbdCheckConnected -sceSpPthreadDetach -sceDbgUserChannelVPrintf -sceUserServiceGetGlsBroadcastChannel -sceNpSnsTwitchDeleteRequest -sceAjmBatchInitialize -sceNgs2RackGetUserData -scePssInternalKeyboardGetUTF8Chars -sceFontGraphicsUpdateFillRates -sceFontControl -sceUsbStorageDialogUpdateStatus -sceGnmDriverInternalRetrieveGnmInterfaceForGpuException -sceAgcLinkShaders -sceNpMatching2Terminate -sceSystemServiceDisablePersonalEyeToEyeDistanceSetting -sceMbusStopAudioOutSharePlay -sceFiosFHTell -sceMusicCoreServerUnregistEventCallback -sceRudpFlush -sceNpWebApi2PushEventCreateFilter -sceVideoOutGetEventCount -sceAudioOutSparkControlSetEqCoef -sceMbusDumpDeviceInfo -sceUserServiceSetPbtcTuesdayHoursEnd -sceUserServiceGetVoiceAgentTtsSpeed -sceMbusRemoveCameraAppModuleFocus -sceFiosOverlayRemove -sceAppInstUtilGetAddcontInfoList3 -sceKernelGetSystemSwVersion -sceDeci4hDrfpChstat_chmod_fuse_fullpath -sceFsUfsAllocateTrophyData -sceAudio3dPortDestroy -sceNpGriefReportCdInit -sceKernelOpenSema -sceNgs2RackGetVoiceHandle -sceLncUtilBlockingGetEventForDaemon -sceSystemServiceChangeMemoryClockToBaseMode -sceSystemServiceActivateHevcSoftGetStatus -sceSlimglServerSetupSocketPairingBy -sceNetConfigCleanUpAllInterfaces -sceNgs2RackLock -sceUserServiceGetIsQuickSignup -sceHmdInternalSetM2LedOn -sceNpAuthCreateAsyncRequest -sceAmprCommandBufferSetBuffer -sceNpTrophySystemGetTrpGroupIcon -sceAudiodReportRegisterHandler -sceHeadTrackerInitialize -sceUserServiceSetGlsCameraBgFilter -sceVshAvcapReadUserdata -sceNpLookupNetCensorComment -sceVideoOutCursorSetPosition -sceFontSetScalePixel -sceHandTrackerGetDataMemorySize -sceVideoOutConfigureOutputMode_ -sceRemotePlayClientTerminateStreaming -sceNpWebApiIntCreateRequest -sceCesSJisToUtf16 -sceNpUtilCanonicalizeNpIdForPsp2 -sceCesUcsProfileInitEucJpCp51932 -sceNpUtilBuildTitleId -sceSysUtilSendSystemNotificationWithAppName -sceVencQueryMemorySize -sceSystemServiceKillApp -sceHttp2CreateCookieBox -sceUserServiceSetThemeBgImageWaveColor -sceMusicCoreServerGetCoreInfo -sceVideoOutUnregisterBuffers -sceCompositorGetSystemSize -sceAvPlayerSetAvailableBandwidth -sceDebugIpmiGetClientKidListByServerKid -sceAgcDcbPushMarkerSpan -sceCompositorGetCanvasHandle -scePadVirtualDeviceAddDevice -sceFaceTrackerGetDefaultConfig -sceVdecwrapResetDecoder -sceKernelClearBootReqNotifyCount -sceMatMemoryPoolDecommit -sceHmdSetupDialogInitialize -sceUserServiceSetGlsTtsPitch -sceVideoNativeExtEssential_DestroyDecInstance -sceNpMatching2GrantRoomOwner -scePerfPmcMcSeqSetCounter -sceVideoCoreAbortRequest -sceMatSetPrtAperture -sceNetCtlGetResultIpcInt -sceRazorCpuInitializeGpuMarkerContext -scalblnl -sceNpTusGetMultiSlotDataStatusVUser -sceCesUtf16beToMbc -sceVideoOutDriverGetBufferLabelAddress -sceMatFreePoolMemory -sceValidationGpuGetVersion -sceAvControlGetPuStatus -sceLncUtilSetControllerFocusPermission -sceAudioInGetHandleStatusInfo -sceUserServiceSetParentalDvdRegion -sceNpWebApi2SendMultipartRequest -sceAgcGetGsOversubscription -sceSystemServiceGetRecentLotusPushedButton -sceCesRefersUcsProfileIso8859_15 -sceKernelFutimes -sceVencCoreUnmapTargetMemory -scePthreadAttrGetschedpolicy -sceSdecCreateSw2 -sceAmprMeasureCommandSizeNop -sceNpWebApi2PushEventCreatePushContext -sceUserServiceGetImePointerMode -sceHmdSetupDialogOpen -scePlayGoDialogGetStatus -sceNetSyncWait -sceHmdGetFieldOfView -_sceUltSemaphoreOptParamInitialize -sceNpSignalingTerminate -sceAppInstUtilGetInstallProgress -sceIduUtilGetSettingInt -sceFontGraphicsDrawRegionShape -sceNpTusDeleteMultiSlotVariableAAsync -sceNetCtlApCpStart -sceLoginMgrServerUpdateUserIdRalatedToPadUniqueId -sceRtcTickAddDays -sceBgftServiceDownloadRegisterTaskByStorage -sceFiosCacheFlushSync -sceLncUtilForceKillLocalProcess -sceNpManagerIntGetParentalControlInfo -sceGameUpdateTerminate -sceKernelGetPagingStatsOfAllObjects -sceHmdReprojectionAddDisplayBuffer -sceCesRefersUcsProfileCp852 -sceShellCoreUtilGetCrashReportResult -sceNpCommerceDialogClose -sceAudioInSetPortStatuses -sceImeDialogInit -sceFiosTimeGetCurrent -sceAjmBatchCancel -sceCameraSetProcessFocusByHandle -scePerfPmcUmcSetCounter -sceIduUtilInitialize -sceVisionManagerApplyCalibrateHmdResult -sceLibcHeapGetTraceInfo -sceNpLookupNetSetTimeout -sceCesRefersUcsProfileCp1258 -sceImeDicAddWord -sceShellCoreUtilGetHidConfigName -sceAudioOut2LoContextSetAttributes -scePerfTraceAmmEnable -sceBgftServiceIntDownloadDebugDeleteBgftEnvFile -sceHmdInternalSetIpdSettingEnableForSystemService -sceKernelMapNamedDirectMemory -sceNetResolverStartNtoa -sceDevUsbTermHost -_sceLibcMspaceUnlock -sceCtrlpPlayStart -sceUserServiceGetNotificationSettings_3 -sceGnmInsertDingDongMarker -sceDataTransferTargetRequestPrepareTransferProgress -sceAgcDriverGetResourceBaseAddressAndSizeInBytes -sceBdSchedConfigure -sceVideoArbitrationAcceptEvent -sceKernelAddCpumodeEvent -sceVrTrackerSetExtendedMode -sceDebugGetUlObjectList -sceNpManagerIntGetUserIdByOfflineAccountId -sceShellUIUtilLaunchByUri -sceUserServiceGetDeletedUserInfo -sceUserServiceSetImePredictiveTextEnabled -sceFontGraphicsSetupScaling -sceUserServiceGetPbtcTzOffset -sceVdecwrapSyncDecode -sceUserServiceGetShareDailymotionAccessToken -sceHttpCacheClear -sceAvPlayerClose -sceBackupRestoreUtilGetRequiredSize -sceFontCreateGraphicsServiceWithEdition -sceRegMgrPrivateStorageIsNvsChange -sceNetInit -sceMusicFwSkipNext -scePlayGoGetToDoList -sceAmprAmmSubmitCommandBuffer3 -sceHmdInternalSetLedOn -sceUserServiceGetPbtcMondayDuration -sceSdecResetSwHevc -sceNpTrophySystemDebugLockTrophy -sceFsInitMountTrophyDataOpt -sceUserServiceGetGlsBroadcastersComment -sceNetCtlApUnregisterCallback -sceLibSecureCryptographyMessagePaddingSize -scePthreadBarrierattrSetpshared -sceDeci4hDrfpChstat -sceUpsrvUpdateCheckDoCheckSystemWithPupInfo -sceClAudiodecCreateDecoder -sceGameLiveStreamingApplySocialFeedbackMessageFilter -sceRegMgrGetBin -sceDebugIpmiGetServerWaitingThreadList -sceNpTusAddAndGetVariableAVUser -sceLoginMgrServerTerminate -sceKernelIccGetUSBPowerState -sceVideodec2GetPictureInfo -sceHmdInternal3dAudioSendData -sceMusicPlayerServicePreviousTrack -sceVideoStreamingEngineDestroyMediaKeySystemAccess -sceNetApctlClearEvent -sceVisionManagerGetResultOfFindUser -sceBgftServiceDownloadFindTaskByContentId -sceVideoOutIsOutputSupported -sceNpTusGetMultiUserDataStatus -sceKernelSuspendProcess -sceDeci4hDrfpClose -sceFiosFileExistsSync -sceSystemServiceGetAppIdOfRunningBigApp -sceSpPthreadAttrSetschedparam -sceRegMgrDrvGetUpdateCnt -sceNpManagerIntBindByJson -_sceNpFreeImpl -sceRtcParseDateTime -sceAvPlayerStartEx -sceClNetPoolCreate -sceNpMatching2DestroyContext -sceDeci4hDrfpCreate -sceBgftServiceIntGetTaskInfoValueInt -sceFsUnbindApplication -sceNpPushIntGetConnectionState -sceGnmGetCoredumpProtectionFaultTimestamp -sceAppInstUtilAppUnInstallForRemote -sceGnmGetResourceName -sceUserServiceGetVibrationEnabled -scePsmMountDirectory -sceMatUnmapMemory -sceUserServiceGetGlsCameraTransparency -sceUsbStorageDialogTerminate -sceNpSnsDailymotionDialogOpen -sceAudioOutChangeAppModuleState -sceVisionManagerGetResultOfFindFace -sceAudiodecCreateDecoder -sceSystemServiceEnablePersonalEyeToEyeDistanceSetting -sceNpAsmClientGetServiceBaseUrl -ScePsmMonoStringChars -ScePsmMonoRuntimeQuit -sceSystemServiceIsEyeToEyeDistanceAdjusted -sceVideoOutSysIsUserStatusSystemDefault -sceCamera2SetConfig -sceUserServiceGetAccessibilityZoomFollowFocus -sceImeVshUpdateContext -sceWebBrowserDialogOpenForPredeterminedContent -sceNpManagerIntGetGameTitleTokenA -sceNpCheckPremium -sceNpUtilGetFakeRateLimit -sceNetCtlGetStateV6IpcInt -sceUserServiceGetHmuZoom -sceNpIpcUnregisterCallback -scePlayReadyCdmiGetMediaKeyCount -sceFontStyleFrameSetScalePoint -sceHttp2DeleteCookieBox -sceCompanionHttpdInitialize2 -sceKernelGetExtLibcHandle -sceNpUtilGetNpTestPatch -sceUserServiceSetGlsBroadcastChannel -sceUserServiceSetShareDailymotionRefreshToken -scePerfTracePmCreate -scePthreadSetcancelstate -sceNpTusDeleteMultiSlotDataAsync -sceBgftServiceIntTerm -sceGnmDriverInternalRetrieveGnmInterface -sceAvPlayerEnableStream -sceAvSettingSet2dVrMode -sceNpUniversalDataSystemIntDestroyHandle -sceTsGetSeekWindow -sceAudioOut2ArbitrationInitialize -sceKernelUnsetDipsw -sceBgftServiceIntDebugPlayGoIsSetFreeZone -sceNpUtilGetNpLanguageCode -sceNpAppLaunchLink2IntAbortRequest -sceVisionManagerSetCallbackForUpdateCalibrateStereoCameraResult -sceFiosFHPreadvSync -sceVideoOutDriverTriggerEvent -sceFiosIOFilterPsarcDearchiver -sceGameLiveStreamingGetProgramInfo -sceFontGetCharGlyphCode -sceApplicationLocalProcessKill2 -sceAmprAmmSubmitCommandBuffer2 -sceLibcMspaceMalloc -scePerfTraceGetInfo -sceCesUtf32leToSbc -scePadVrControllerGetTriggerEffectState -sceCesUtf16leToEucCn -sceKernelDebugRaiseException -sceCameraClose -sceRudpTerminate -sceVideoCoreGetCanvasHandle -sceNpInGameMessageSendData -sceClHttpReadData -sceNetApctlGetResult -sceHidControlConnectHandle -sceValidationGpuInitContext -sceVideoOutSysSetDimmer -sceVideoRecordingStop -_sceLibcFree -sceNpWebApi2ReadData -sceSharePlayGetCurrentConnectionInfo -sceFiosDirectoryExistsSync -sceCesRefersUcsProfileGbT1988 -sceAgcSetAmmSemaphoreMemory -sceNpEventGetCurrentNetworkTick -sceAgcCondExecPatchSetEnd -sceDepthHandCandidateTrackerGetResult -sceShareSetContentParamForApplicationTitle -sceVorbisDecSetDecodePriority -sceCompositorSetCursorImageAddress -sceDataTransferTargetRequestGetDeviceInfoApplication -sceImeCheckUpdateTextInfo -scePthreadSingle -sceNpSessionSignalingGetLocalNetInfo -sceDataTransferRequestGetSavedataInfoPS4 -sceUsbdUnrefDevice -sceDebugGetProcessList -sceMbusUnregisterDriver -sceSocialScreenTerminate -sceMusicCoreServerSetAutoPlay -sceUserServiceGetRegisteredHomeUserIdList -sceAvPlayerSetLooping -sceContentExportFromFile -sceCompositorSetAgcContextCommand -sceKernelGetBudget -sceAgcGetStaticBuffer -sceNetConnect -scePlayReadyBufferFree -sceFiosFileExists -sceAgcSdmaClose -sceSaveDataGetUpdatedDataCount -sceVorbisDecSerialNumber -sceNpManagerIntGetUserIdByAccountId -sceClPthreadMutexattrSetprotocol -sceDbgSetMinimumLogLevel -sceCompanionHttpdRegisterRequestCallback -sceNpManagerIntGetMAccountId -sceNpHasSignedUp -sceDseehxFlush -sceCameraGetExposureGain -sceFontStringGetTerminateCode -sceVideoOutGetBufferLabelAddress -sceHmd2ReprojectionBeginFrame -sceNpTrophySystemGetGroupIcon -sceNpManagerIntGetGameTitleBanInfo -sceKernelGetTraceMemoryStats -sceCesSJisCodeToJisX0208 -sceNpPush2RegisterNotificationExCallback -sceUlpMgrQueueTryPop -sceUserServiceGetParentalGame -scePlayReadyLicenseAcqProcessResponse -sceUsbStorageGetdentsRead -sceSpPthreadMutexUnlock -sceCesUcs2StrToMbcsStr -sceDataTransferAbortSearchPS4 -sceKernelSetDirectMemoryType -ScePsmMonoDomainAssemblyOpen -sceNpTusGetFriendsDataStatusAAsync -scePadSwitchConnection -sceKernelGetBuildNumber -sceApplicationSwitchToBaseMode -scePadDisableTriggerEffect -sceNpManagerIntRevalidatePasswordOld -sceAmprAmmMeasureAmmCommandSizeModifyMtypeProtect -sceGnmSdmaCopyWindow -sceLibcPafMspaceMallocStatsFast -sceKernelAprSubmitCommandBuffer_TEST -sceSystemServiceReleaseFb0 -sceFontGraphicsProcessWaitSequence -sceVoiceEnd -sceNpSnsFacebookCreateRequest -sceKernelSwitchToNativeMode -pthread_cond_wait -sceVshAvcapOpenAudio -sceGnmSqttSwitchTraceBuffer -sceMoveIsValidHandle -sceVnaStopAnalyze -sceFontTextSourceSetWritingForm -sceNpRemotePlaySessionSignalingCreateJoinSession -sceDataTransferTargetGetFailedUsers -sceRtcGetCurrentDebugNetworkTick -sceFsISSchedStatCurrentThread -sceNpAsmClientGetNpComInfo -__stack_chk_fail -pthread_rwlockattr_setpshared -sceHmdReprojectionInitialize -sceUserServiceSetGlsLiveQuality5 -sceFsCheckFormat -sceUlpMgrRegisterProtocol -sceAvSettingChangeOutputMode -sceKernelDeleteCpumodeEvent -scePthreadRwlockRdlock -pthread_mutex_getyieldloops_np -sceNpManagerIntNotifyPlusFeature -pthread_create -sceUserServiceGetNpAge -sceAudio3dPortClose -sceVdecCoreSyncDecode -sceNpAbortRequest -sceNetAddrConfig6Stop -sceMouseGetHandle -sceCesRefersUcsProfileCp1257 -scePssCameraGetCameraConnection -sceCameraSetSharpness -sceSystemServiceActivateHevcSoftTerm -sceVnaStartAnalyze -sceHmdInternalGetDeviceInformationByHandle -sceHeadTrackerUpdate -sceSslCreateSslConnection -sceAgcDcbEndOcclusionQueryGetSize -sceVideoOutDriverGetEopHandle -sceLoginMgrServerLoginServiceGetRequestParam -sceFsDevpfsDeregisterEvent +ACProcessMain +AES_cbc_encrypt +AES_cfb128_encrypt +AES_ctr128_encrypt +AES_decrypt +AES_ecb_encrypt +AES_encrypt +AES_set_decrypt_key +AES_set_encrypt_key +AMDTEE_DLM_FetchDebugStrings +AMDTEE_DLM_GetDebugToken +AMDTEE_DLM_StopTADebug +ASN1_INTEGER_free +ASN1_INTEGER_get +ASN1_OBJECT_free +ASN1_STRING_data +ASN1_STRING_get0_data +ASN1_STRING_length +ASN1_STRING_print +ASN1_STRING_to_UTF8 +ASN1_STRING_type +ASN1_TIME_print +AacsBusDecrypt +AacsDecrypt +AacsModuleInit +AacsModuleStart +AacsModuleStartInternal +AacsModuleStop +AacsModuleTerm +AacsPermissionActivate +AacsPermissionActivateCheck +AacsPermissionCheck +AacsPermissionGetNonce +AacsPermissionInit +AacsPermissionSet +AacsSelectKey +AacsSelectKeyFrom +AacsUpdateKeyArea +AnnotateBenignRace +AnnotateBenignRaceSized +AnnotateCondVarSignal +AnnotateCondVarSignalAll +AnnotateCondVarWait +AnnotateEnableRaceDetection +AnnotateExpectRace +AnnotateFlushExpectedRaces +AnnotateFlushState +AnnotateHappensAfter +AnnotateHappensBefore +AnnotateIgnoreReadsBegin +AnnotateIgnoreReadsEnd +AnnotateIgnoreSyncBegin +AnnotateIgnoreSyncEnd +AnnotateIgnoreWritesBegin +AnnotateIgnoreWritesEnd +AnnotateMemoryIsInitialized +AnnotateMemoryIsUninitialized +AnnotateMutexIsNotPHB +AnnotateMutexIsUsedAsCondVar +AnnotateNewMemory +AnnotateNoOp +AnnotatePCQCreate +AnnotatePCQDestroy +AnnotatePCQGet +AnnotatePCQPut +AnnotatePublishMemoryRange +AnnotateRWLockAcquired +AnnotateRWLockCreate +AnnotateRWLockCreateStatic +AnnotateRWLockDestroy +AnnotateRWLockReleased +AnnotateThreadName +AnnotateTraceMemory +AnnotateUnpublishMemoryRange +AsyncGetCallTrace +AsyncStorageClearNative +AsyncStorageCloseNative +AsyncStorageGetAllKeysNative +AsyncStorageGetItemNative +AsyncStorageOpenNative +AsyncStorageRemoveItemNative +AsyncStorageSetItemNative +BIO_ctrl +BIO_f_ssl +BIO_free +BIO_new +BIO_new_fp +BIO_new_mem_buf +BIO_new_socket +BIO_printf +BIO_puts +BIO_s_file +BIO_s_mem +BIO_up_ref +BIO_vfree +BIO_write +BN_CTX_end +BN_CTX_free +BN_CTX_new +BN_CTX_start +BN_add_word +BN_bin2bn +BN_bn2bin +BN_free +BN_hex2bn +BN_mod_inverse +BN_mul +BN_new +BN_num_bits +BN_print +BN_set_word +BN_sub_word +BgsStorageClose +BgsStorageFreeKeyValueResult +BgsStorageFreeListResult +BgsStorageGetContainers +BgsStorageGetItems +BgsStorageGetItemsBySearch +BgsStorageOpen +C1hi +C1lo +CA_MGMT_allocCertDistinguishedName +CA_MGMT_certDistinguishedNameCompare +CA_MGMT_convertKeyBlobToPKCS8Key +CA_MGMT_convertKeyDER +CA_MGMT_convertKeyPEM +CA_MGMT_convertPKCS8KeyToKeyBlob +CA_MGMT_convertProtectedPKCS8KeyToKeyBlob +CA_MGMT_decodeCertificate +CA_MGMT_enumAltName +CA_MGMT_enumCrl +CA_MGMT_extractAllCertDistinguishedName +CA_MGMT_extractBasicConstraint +CA_MGMT_extractCertASN1Name +CA_MGMT_extractCertTimes +CA_MGMT_extractKeyBlobEx +CA_MGMT_extractKeyBlobTypeEx +CA_MGMT_extractPublicKeyInfo +CA_MGMT_extractSerialNum +CA_MGMT_extractSignature +CA_MGMT_free +CA_MGMT_freeCertDistinguishedName +CA_MGMT_freeCertDistinguishedNameOnStack +CA_MGMT_freeCertificate +CA_MGMT_freeKeyBlob +CA_MGMT_freeSearchDetails +CA_MGMT_getCertSignAlgoType +CA_MGMT_keyBlobToDER +CA_MGMT_keyBlobToPEM +CA_MGMT_makeKeyBlobEx +CA_MGMT_rawVerifyOID +CA_MGMT_reorderChain +CA_MGMT_returnCertificatePrints +CA_MGMT_verifyCertWithKeyBlob +CA_MGMT_verifySignature +CERT_CompSubjectAltNames +CERT_CompSubjectAltNames2 +CERT_CompSubjectAltNamesExact +CERT_CompSubjectCommonName +CERT_CompSubjectCommonName2 +CERT_ComputeBufferHash +CERT_GetCertTime +CERT_STORE_addCertAuthority +CERT_STORE_addIdentity +CERT_STORE_addIdentityNakedKey +CERT_STORE_addIdentityPSK +CERT_STORE_addIdentityWithCertificateChain +CERT_STORE_addTrustPoint +CERT_STORE_createStore +CERT_STORE_findCertBySubject +CERT_STORE_findIdentityByTypeFirst +CERT_STORE_findIdentityByTypeNext +CERT_STORE_findIdentityCertChainFirst +CERT_STORE_findIdentityCertChainNext +CERT_STORE_findPskByIdentity +CERT_STORE_releaseStore +CERT_STORE_traversePskListHead +CERT_STORE_traversePskListNext +CERT_VerifyCertificatePolicies +CERT_VerifyCertificatePolicies2 +CERT_VerifyValidityTime +CERT_VerifyValidityTime2 +CERT_VerifyValidityTimeWithConf +CERT_checkCertificateIssuer +CERT_checkCertificateIssuer2 +CERT_checkCertificateIssuerSerialNumber +CERT_decryptRSASignature +CERT_decryptRSASignatureBuffer +CERT_enumerateAltName +CERT_enumerateAltName2 +CERT_enumerateCRL +CERT_enumerateCRL2 +CERT_enumerateCRLAux +CERT_extractAllDistinguishedNames +CERT_extractDistinguishedNames +CERT_extractDistinguishedNames2 +CERT_extractDistinguishedNamesFromName +CERT_extractRSAKey +CERT_extractSerialNum +CERT_extractSerialNum2 +CERT_extractValidityTime +CERT_extractValidityTime2 +CERT_getCertExtension +CERT_getCertSignAlgoType +CERT_getCertificateExtensions +CERT_getCertificateExtensions2 +CERT_getCertificateIssuerSerialNumber +CERT_getCertificateIssuerSerialNumber2 +CERT_getCertificateKeyUsage +CERT_getCertificateKeyUsage2 +CERT_getCertificateSubject +CERT_getCertificateSubject2 +CERT_getNumberOfChild +CERT_getRSASignatureAlgo +CERT_getSignatureItem +CERT_getSubjectCommonName +CERT_getSubjectCommonName2 +CERT_isRootCertificate +CERT_isRootCertificate2 +CERT_rawVerifyOID +CERT_rawVerifyOID2 +CERT_setKeyFromSubjectPublicKeyInfo +CERT_setKeyFromSubjectPublicKeyInfoCert +CERT_validateCertificate +CERT_validateCertificateWithConf +CERT_verifySignature +CMAC_CTX_free +CMAC_CTX_new +CMAC_Final +CMAC_Init +CMAC_Update +CONF_modules_free +CONF_modules_load_file +CRYPTO_THREADID_set_callback +CRYPTO_THREADID_set_numeric +CRYPTO_cleanup_all_ex_data +CRYPTO_free +CRYPTO_initAsymmetricKey +CRYPTO_malloc +CRYPTO_memcmp +CRYPTO_num_locks +CRYPTO_set_add_lock_callback +CRYPTO_set_locking_callback +CRYPTO_set_mem_functions +CRYPTO_uninitAsymmetricKey +Canonicalize +CheckSystemEvents +CloseZStream +CmdThread +CmdfullpathThread +CommerceDialogBrowseCategory +CommerceDialogBrowseProduct +CommerceDialogInit +CommerceDialogRedeemPromotionCode +CommerceHidePsStoreIcon +CommerceSetPsStoreIconLayout +CommerceShowPsStoreIcon +CpsInitKey +CreateWebApiLibCtx +CreateZStream +CryptographyDecryptAES128CBC +CryptographyDecryptAES128CBC_HS256 +CryptographyDecryptAES128GCM +CryptographyEncryptAES128CBC +CryptographyEncryptAES128GCM +CryptographyGenerateHmacSha256 +CurlGetDefaultUA +CurlMultiInitialize +CurlMultiQueueRequest +CurlSendRequest +DES_ecb_encrypt +DES_set_key +DES_set_odd_parity +DH_get0_key +DH_get0_pqg +DSA_get0_key +DSA_get0_pqg +DTLSv1_client_method +DTLSv1_server_method +DW.ref.__gxx_personality_v0 +DbRecoveryGetRecoverDbStatus +DbRecoveryRecoverDb +DecryptRnpsBundle +DestroyWebApiLibCtx +DisableSystemMedia +DvdMac +ECDH_compute_key +ECDSA_sign +ECDSA_size +ECDSA_verify +EC_GROUP_free +EC_GROUP_get_degree +EC_GROUP_new_by_curve_name +EC_KEY_check_key +EC_KEY_free +EC_KEY_generate_key +EC_KEY_get0_group +EC_KEY_get0_private_key +EC_KEY_get0_public_key +EC_KEY_new +EC_KEY_new_by_curve_name +EC_KEY_set_group +EC_KEY_set_private_key +EC_KEY_set_public_key +EC_KEY_up_ref +EC_POINT_free +EC_POINT_mul +EC_POINT_new +EC_POINT_oct2point +EC_POINT_point2oct +ENGINE_by_id +ENGINE_cleanup +ENGINE_ctrl +ENGINE_ctrl_cmd +ENGINE_finish +ENGINE_free +ENGINE_get_first +ENGINE_get_id +ENGINE_get_next +ENGINE_init +ENGINE_load_builtin_engines +ENGINE_load_private_key +ENGINE_set_default +ERR_clear_error +ERR_error_string +ERR_error_string_n +ERR_free_strings +ERR_get_error +ERR_load_crypto_strings +ERR_peek_error +ERR_peek_last_error +ERR_print_errors_cb +ERR_remove_thread_state +EVP_CIPHER_CTX_cleanup +EVP_CIPHER_CTX_ctrl +EVP_CIPHER_CTX_free +EVP_CIPHER_CTX_init +EVP_CIPHER_CTX_new +EVP_CIPHER_CTX_set_flags +EVP_CIPHER_CTX_set_padding +EVP_CIPHER_block_size +EVP_CipherFinal_ex +EVP_CipherInit_ex +EVP_CipherUpdate +EVP_DecryptFinal_ex +EVP_DecryptInit_ex +EVP_DecryptUpdate +EVP_Digest +EVP_DigestFinal_ex +EVP_DigestInit +EVP_DigestInit_ex +EVP_DigestSignFinal +EVP_DigestSignInit +EVP_DigestUpdate +EVP_DigestVerifyFinal +EVP_DigestVerifyInit +EVP_EncryptFinal_ex +EVP_EncryptInit +EVP_EncryptInit_ex +EVP_EncryptUpdate +EVP_MD_CTX_cleanup +EVP_MD_CTX_create +EVP_MD_CTX_destroy +EVP_MD_CTX_free +EVP_MD_CTX_init +EVP_MD_CTX_new +EVP_MD_size +EVP_PKCS82PKEY +EVP_PKEY_CTX_ctrl +EVP_PKEY_CTX_new +EVP_PKEY_copy_parameters +EVP_PKEY_decrypt +EVP_PKEY_decrypt_init +EVP_PKEY_encrypt +EVP_PKEY_encrypt_init +EVP_PKEY_free +EVP_PKEY_get0_DH +EVP_PKEY_get0_DSA +EVP_PKEY_get0_RSA +EVP_PKEY_get1_EC_KEY +EVP_PKEY_get1_RSA +EVP_PKEY_id +EVP_PKEY_new +EVP_PKEY_new_mac_key +EVP_PKEY_set1_EC_KEY +EVP_PKEY_set1_RSA +EVP_PKEY_size +EVP_PKEY_type +EVP_PKEY_up_ref +EVP_SignFinal +EVP_VerifyFinal +EVP_aes_128_cbc +EVP_aes_128_cfb8 +EVP_aes_128_ctr +EVP_aes_128_gcm +EVP_aes_128_wrap +EVP_aes_192_cbc +EVP_aes_192_cfb8 +EVP_aes_192_ctr +EVP_aes_192_gcm +EVP_aes_192_wrap +EVP_aes_256_cbc +EVP_aes_256_cfb8 +EVP_aes_256_ctr +EVP_aes_256_gcm +EVP_aes_256_wrap +EVP_cleanup +EVP_ecdsa +EVP_md5 +EVP_sha1 +EVP_sha224 +EVP_sha256 +EVP_sha384 +EVP_sha512 +ErrorDialogClose +ErrorDialogInit +ErrorDialogOpen +FTA_Add_Module +FTA_Add_Module_autofitter +FTA_Add_Module_bdf +FTA_Add_Module_cff +FTA_Add_Module_gxvalid +FTA_Add_Module_otvalid +FTA_Add_Module_pcf +FTA_Add_Module_pfr +FTA_Add_Module_psaux +FTA_Add_Module_pshinter +FTA_Add_Module_psnames +FTA_Add_Module_raster1 +FTA_Add_Module_raster5 +FTA_Add_Module_sfnt +FTA_Add_Module_smooth +FTA_Add_Module_smooth_lcd +FTA_Add_Module_smooth_lcdv +FTA_Add_Module_t1cid +FTA_Add_Module_truetype +FTA_Add_Module_type1 +FTA_Add_Module_type42 +FTA_Add_Module_winfonts +FTA_Export_Module_autofitter +FTA_Export_Module_bdf +FTA_Export_Module_cff +FTA_Export_Module_gxvalid +FTA_Export_Module_otvalid +FTA_Export_Module_pcf +FTA_Export_Module_pfr +FTA_Export_Module_psaux +FTA_Export_Module_pshinter +FTA_Export_Module_psnames +FTA_Export_Module_raster1 +FTA_Export_Module_raster5 +FTA_Export_Module_sfnt +FTA_Export_Module_smooth +FTA_Export_Module_smooth_lcd +FTA_Export_Module_smooth_lcdv +FTA_Export_Module_t1cid +FTA_Export_Module_truetype +FTA_Export_Module_type1 +FTA_Export_Module_type42 +FTA_Export_Module_winfonts +FTA_Remove_Module_autofitter +FTA_Remove_Module_bdf +FTA_Remove_Module_cff +FTA_Remove_Module_gxvalid +FTA_Remove_Module_otvalid +FTA_Remove_Module_pcf +FTA_Remove_Module_pfr +FTA_Remove_Module_psaux +FTA_Remove_Module_pshinter +FTA_Remove_Module_psnames +FTA_Remove_Module_raster1 +FTA_Remove_Module_raster5 +FTA_Remove_Module_sfnt +FTA_Remove_Module_smooth +FTA_Remove_Module_smooth_lcd +FTA_Remove_Module_smooth_lcdv +FTA_Remove_Module_t1cid +FTA_Remove_Module_truetype +FTA_Remove_Module_type1 +FTA_Remove_Module_type42 +FTA_Remove_Module_winfonts +FTA_Support_Format_Bdf +FTA_Support_Format_Cid +FTA_Support_Format_OpenType +FTA_Support_Format_OpenType_Otf +FTA_Support_Format_OpenType_Ttf +FTA_Support_Format_Pcf +FTA_Support_Format_Pfr +FTA_Support_Format_TrueType +FTA_Support_Format_TrueTypeGx +FTA_Support_Format_Type1 +FTA_Support_Format_Type42 +FTA_Support_Format_WinFonts +FTA_Support_Hinter_AutoFitter +FTA_Support_Modules +FTA_Support_Renderer_Raster1 +FTA_Support_Renderer_Raster5 +FTA_Support_Renderer_Smooth +FTA_Support_Renderer_Smooth_Lcd +FTA_Support_Renderer_Smooth_Lcdv +FTC_CMapCache_Lookup +FTC_CMapCache_New +FTC_ImageCache_Lookup +FTC_ImageCache_LookupScaler +FTC_ImageCache_New +FTC_Image_Cache_Lookup +FTC_Image_Cache_New +FTC_Manager_Done +FTC_Manager_LookupFace +FTC_Manager_LookupSize +FTC_Manager_Lookup_Face +FTC_Manager_Lookup_Size +FTC_Manager_New +FTC_Manager_RemoveFaceID +FTC_Manager_Reset +FTC_Node_Unref +FTC_SBitCache_Lookup +FTC_SBitCache_LookupScaler +FTC_SBitCache_New +FTC_SBit_Cache_Lookup +FTC_SBit_Cache_New +FT_Activate_Size +FT_Add_Default_Modules +FT_Add_Module +FT_Alloc +FT_Angle_Diff +FT_Atan2 +FT_Attach_File +FT_Attach_Stream +FT_Bitmap_Convert +FT_Bitmap_Copy +FT_Bitmap_Done +FT_Bitmap_Embolden +FT_Bitmap_Init +FT_Bitmap_New +FT_CMap_Done +FT_CMap_New +FT_CeilFix +FT_ClassicKern_Free +FT_ClassicKern_Validate +FT_Cos +FT_DivFix +FT_Done_Face +FT_Done_FreeType +FT_Done_Glyph +FT_Done_GlyphSlot +FT_Done_Library +FT_Done_MM_Var +FT_Done_Memory +FT_Done_Size +FT_Face_CheckTrueTypePatents +FT_Face_GetCharVariantIndex +FT_Face_GetCharVariantIsDefault +FT_Face_GetCharsOfVariant +FT_Face_GetVariantSelectors +FT_Face_GetVariantsOfChar +FT_Face_SetUnpatentedHinting +FT_FloorFix +FT_Free +FT_Get_Advance +FT_Get_Advances +FT_Get_CID_From_Glyph_Index +FT_Get_CID_Is_Internally_CID_Keyed +FT_Get_CID_Registry_Ordering_Supplement +FT_Get_CMap_Format +FT_Get_CMap_Language_ID +FT_Get_Char_Index +FT_Get_Charmap_Index +FT_Get_FSType_Flags +FT_Get_First_Char +FT_Get_Font_Format +FT_Get_Gasp +FT_Get_Glyph +FT_Get_Glyph_Name +FT_Get_Kerning +FT_Get_MM_Var +FT_Get_Module +FT_Get_Module_Interface +FT_Get_Multi_Master +FT_Get_Name_Index +FT_Get_Next_Char +FT_Get_PFR_Advance +FT_Get_PFR_Kerning +FT_Get_PFR_Metrics +FT_Get_PS_Font_Info +FT_Get_PS_Font_Private +FT_Get_PS_Font_Value +FT_Get_Postscript_Name +FT_Get_Renderer +FT_Get_Sfnt_Name +FT_Get_Sfnt_Name_Count +FT_Get_Sfnt_Table +FT_Get_SubGlyph_Info +FT_Get_Track_Kerning +FT_Get_TrueType_Engine_Type +FT_Get_Var_Blend_Coordinates +FT_Get_Var_Design_Coordinates +FT_Get_X11_Font_Format +FT_GlyphLoader_Add +FT_GlyphLoader_CheckPoints +FT_GlyphLoader_CheckSubGlyphs +FT_GlyphLoader_CopyPoints +FT_GlyphLoader_CreateExtra +FT_GlyphLoader_Done +FT_GlyphLoader_New +FT_GlyphLoader_Prepare +FT_GlyphLoader_Reset +FT_GlyphLoader_Rewind +FT_GlyphSlot_Embolden +FT_GlyphSlot_Oblique +FT_GlyphSlot_Own_Bitmap +FT_Glyph_Copy +FT_Glyph_Get_CBox +FT_Glyph_Stroke +FT_Glyph_StrokeBorder +FT_Glyph_To_Bitmap +FT_Glyph_Transform +FT_Has_PS_Glyph_Names +FT_Init_FreeType +FT_Library_SetLcdFilter +FT_Library_SetLcdFilterWeights +FT_Library_Version +FT_List_Add +FT_List_Finalize +FT_List_Find +FT_List_Insert +FT_List_Iterate +FT_List_Remove +FT_List_Up +FT_Load_Char +FT_Load_Glyph +FT_Load_Sfnt_Table +FT_Lookup_Renderer +FT_Match_Size +FT_Matrix_Invert +FT_Matrix_Multiply +FT_Matrix_Multiply_Scaled +FT_MulDiv +FT_MulDiv_No_Round +FT_MulFix +FT_New_Face +FT_New_GlyphSlot +FT_New_Library +FT_New_Memory +FT_New_Memory_Face +FT_New_Size +FT_OpenType_Free +FT_OpenType_Validate +FT_Open_Face +FT_Outline_Check +FT_Outline_Copy +FT_Outline_Decompose +FT_Outline_Done +FT_Outline_Done_Internal +FT_Outline_Embolden +FT_Outline_EmboldenXY +FT_Outline_GetInsideBorder +FT_Outline_GetOutsideBorder +FT_Outline_Get_BBox +FT_Outline_Get_Bitmap +FT_Outline_Get_CBox +FT_Outline_Get_Orientation +FT_Outline_New +FT_Outline_New_Internal +FT_Outline_Render +FT_Outline_Reverse +FT_Outline_Transform +FT_Outline_Translate +FT_Property_Get +FT_Property_Set +FT_QAlloc +FT_QRealloc +FT_Raccess_Get_DataOffsets +FT_Raccess_Get_HeaderInfo +FT_Raccess_Guess +FT_Realloc +FT_Reference_Face +FT_Reference_Library +FT_Remove_Module +FT_Render_Glyph +FT_Render_Glyph_Internal +FT_Request_Metrics +FT_Request_Size +FT_RoundFix +FT_Select_Charmap +FT_Select_Metrics +FT_Select_Size +FT_Set_Char_Size +FT_Set_Charmap +FT_Set_Debug_Hook +FT_Set_MM_Blend_Coordinates +FT_Set_MM_Design_Coordinates +FT_Set_Pixel_Sizes +FT_Set_Renderer +FT_Set_Transform +FT_Set_Var_Blend_Coordinates +FT_Set_Var_Design_Coordinates +FT_Sfnt_Table_Info +FT_Sin +FT_Sqrt32 +FT_SqrtFixed +FT_Stream_Close +FT_Stream_EnterFrame +FT_Stream_ExitFrame +FT_Stream_ExtractFrame +FT_Stream_Free +FT_Stream_GetChar +FT_Stream_GetLong +FT_Stream_GetLongLE +FT_Stream_GetOffset +FT_Stream_GetShort +FT_Stream_GetShortLE +FT_Stream_GetULong +FT_Stream_GetULongLE +FT_Stream_GetUOffset +FT_Stream_GetUShort +FT_Stream_GetUShortLE +FT_Stream_New +FT_Stream_Open +FT_Stream_OpenLZW +FT_Stream_OpenMemory +FT_Stream_Pos +FT_Stream_Read +FT_Stream_ReadAt +FT_Stream_ReadChar +FT_Stream_ReadFields +FT_Stream_ReadLong +FT_Stream_ReadLongLE +FT_Stream_ReadOffset +FT_Stream_ReadShort +FT_Stream_ReadShortLE +FT_Stream_ReadULong +FT_Stream_ReadULongLE +FT_Stream_ReadUOffset +FT_Stream_ReadUShort +FT_Stream_ReadUShortLE +FT_Stream_ReleaseFrame +FT_Stream_Seek +FT_Stream_Skip +FT_Stream_TryRead +FT_Stroker_BeginSubPath +FT_Stroker_ConicTo +FT_Stroker_CubicTo +FT_Stroker_Done +FT_Stroker_EndSubPath +FT_Stroker_Export +FT_Stroker_ExportBorder +FT_Stroker_GetBorderCounts +FT_Stroker_GetCounts +FT_Stroker_LineTo +FT_Stroker_New +FT_Stroker_ParseOutline +FT_Stroker_Rewind +FT_Stroker_Set +FT_Tan +FT_Trace_Get_Count +FT_Trace_Get_Name +FT_TrueTypeGX_Free +FT_TrueTypeGX_Validate +FT_Vector_From_Polar +FT_Vector_Length +FT_Vector_Polarize +FT_Vector_Rotate +FT_Vector_Transform +FT_Vector_Transform_Scaled +FT_Vector_Unit +FcCharSetAddChar +FcCharSetCreate +FcCharSetDestroy +FcCharSetMerge +FcCharSetSubtractCount +FcConfigCreate +FcConfigDestroy +FcConfigGetCurrent +FcConfigReference +FcConfigSubstitute +FcDefaultSubstitute +FcFontList +FcFontMatch +FcFontRenderPrepare +FcFontSetAdd +FcFontSetCreate +FcFontSetDestroy +FcFontSetMatch +FcFontSort +FcFreeTypeCharIndex +FcInit +FcInitBringUptoDate +FcLangSetAdd +FcLangSetCreate +FcLangSetDestroy +FcLangSetHasLang +FcMatrixMultiply +FcObjectSetBuild +FcObjectSetDestroy +FcPatternAddBool +FcPatternAddCharSet +FcPatternAddDouble +FcPatternAddInteger +FcPatternAddLangSet +FcPatternAddMatrix +FcPatternAddString +FcPatternCreate +FcPatternDel +FcPatternDestroy +FcPatternDuplicate +FcPatternEqual +FcPatternFilter +FcPatternFormat +FcPatternGet +FcPatternGetBool +FcPatternGetCharSet +FcPatternGetFTFace +FcPatternGetInteger +FcPatternGetLangSet +FcPatternGetMatrix +FcPatternGetString +FcPatternReference +FcPatternRemove +FinalizeImeModule +FinalizeMediaModule +ForbidCopyrightProtectedContents +GCC_except_table0 +GCC_except_table1 +GCC_except_table10 +GCC_except_table100 +GCC_except_table101 +GCC_except_table102 +GCC_except_table103 +GCC_except_table104 +GCC_except_table105 +GCC_except_table106 +GCC_except_table11 +GCC_except_table110 +GCC_except_table114 +GCC_except_table115 +GCC_except_table116 +GCC_except_table117 +GCC_except_table118 +GCC_except_table12 +GCC_except_table125 +GCC_except_table13 +GCC_except_table130 +GCC_except_table136 +GCC_except_table14 +GCC_except_table143 +GCC_except_table15 +GCC_except_table150 +GCC_except_table16 +GCC_except_table164 +GCC_except_table165 +GCC_except_table166 +GCC_except_table167 +GCC_except_table168 +GCC_except_table169 +GCC_except_table17 +GCC_except_table170 +GCC_except_table171 +GCC_except_table172 +GCC_except_table173 +GCC_except_table175 +GCC_except_table178 +GCC_except_table179 +GCC_except_table18 +GCC_except_table180 +GCC_except_table187 +GCC_except_table19 +GCC_except_table198 +GCC_except_table199 +GCC_except_table2 +GCC_except_table20 +GCC_except_table203 +GCC_except_table21 +GCC_except_table210 +GCC_except_table22 +GCC_except_table221 +GCC_except_table222 +GCC_except_table223 +GCC_except_table227 +GCC_except_table23 +GCC_except_table232 +GCC_except_table235 +GCC_except_table237 +GCC_except_table24 +GCC_except_table240 +GCC_except_table241 +GCC_except_table242 +GCC_except_table243 +GCC_except_table246 +GCC_except_table251 +GCC_except_table255 +GCC_except_table260 +GCC_except_table265 +GCC_except_table269 +GCC_except_table27 +GCC_except_table272 +GCC_except_table273 +GCC_except_table274 +GCC_except_table28 +GCC_except_table280 +GCC_except_table285 +GCC_except_table286 +GCC_except_table296 +GCC_except_table3 +GCC_except_table300 +GCC_except_table302 +GCC_except_table312 +GCC_except_table32 +GCC_except_table321 +GCC_except_table326 +GCC_except_table330 +GCC_except_table331 +GCC_except_table332 +GCC_except_table333 +GCC_except_table334 +GCC_except_table335 +GCC_except_table336 +GCC_except_table340 +GCC_except_table345 +GCC_except_table349 +GCC_except_table35 +GCC_except_table351 +GCC_except_table352 +GCC_except_table36 +GCC_except_table362 +GCC_except_table367 +GCC_except_table37 +GCC_except_table372 +GCC_except_table379 +GCC_except_table38 +GCC_except_table386 +GCC_except_table4 +GCC_except_table40 +GCC_except_table400 +GCC_except_table401 +GCC_except_table402 +GCC_except_table403 +GCC_except_table404 +GCC_except_table405 +GCC_except_table406 +GCC_except_table407 +GCC_except_table408 +GCC_except_table409 +GCC_except_table411 +GCC_except_table414 +GCC_except_table415 +GCC_except_table416 +GCC_except_table423 +GCC_except_table43 +GCC_except_table434 +GCC_except_table435 +GCC_except_table439 +GCC_except_table446 +GCC_except_table457 +GCC_except_table458 +GCC_except_table459 +GCC_except_table46 +GCC_except_table463 +GCC_except_table468 +GCC_except_table47 +GCC_except_table471 +GCC_except_table473 +GCC_except_table476 +GCC_except_table477 +GCC_except_table478 +GCC_except_table479 +GCC_except_table48 +GCC_except_table480 +GCC_except_table483 +GCC_except_table488 +GCC_except_table49 +GCC_except_table492 +GCC_except_table5 +GCC_except_table52 +GCC_except_table520 +GCC_except_table527 +GCC_except_table530 +GCC_except_table531 +GCC_except_table532 +GCC_except_table549 +GCC_except_table553 +GCC_except_table554 +GCC_except_table555 +GCC_except_table59 +GCC_except_table6 +GCC_except_table60 +GCC_except_table61 +GCC_except_table63 +GCC_except_table64 +GCC_except_table65 +GCC_except_table66 +GCC_except_table68 +GCC_except_table7 +GCC_except_table72 +GCC_except_table75 +GCC_except_table76 +GCC_except_table77 +GCC_except_table8 +GCC_except_table80 +GCC_except_table81 +GCC_except_table84 +GCC_except_table89 +GCC_except_table9 +GCC_except_table90 +GCC_except_table92 +GCC_except_table93 +GCC_except_table94 +GCC_except_table95 +GCC_except_table96 +GCC_except_table97 +GCC_except_table98 +GCC_except_table99 +GC_createInstanceIDs +GENERAL_NAMES_free +GENERAL_NAME_free +GetAccountAgeA +GetAccountCountryA +GetAccountIdA +GetAccountLanguage2 +GetAuthorizationCode +GetCapabilities +GetClosedCaptionSettings +GetContentFileStatusLib +GetCurrentSrcId +GetCurrentTime +GetLibHttpCtxId +GetMediaPlaybackInfo +GetMute +GetOnlineId +GetPhotoInfoLib +GetProcessTime +GetPs4AppCategoryForTitleId +GetServiceType +GetServiceTypeFromTitleId +GetSrcIdList +GetStringPlatformChars +GetUsbDeviceListArray +GetUsbThumbnailEntryListLib +GetVideoOutputStatus +GetVideoOutputStatusInt +GetVolume +HMAC +HMAC_CTX_cleanup +HMAC_CTX_init +HMAC_Final +HMAC_Init +HMAC_Init_ex +HMAC_Update +Hide +HttpCacheWrapperFree +HttpCacheWrapperRetrieve +HttpCacheWrapperRevalidate +InetStatGetResultNative +InetStatGetStateNative +InetStatStartTestNative +InitializeEncoding +InitializeImeModule +InitializeLib +InitializeMediaModule +InitializeNetLib +IsDebuggingSupported +IsSrcIdPlaying +JNI_GetCreatedJavaVMs +JNI_OnLoad +JNU_CallMethodByName +JNU_CallMethodByNameV +JNU_CallStaticMethodByName +JNU_ClassClass +JNU_ClassObject +JNU_ClassString +JNU_ClassThrowable +JNU_CopyObjectArray +JNU_Equals +JNU_GetEnv +JNU_GetFieldByName +JNU_GetStaticFieldByName +JNU_GetStringPlatformChars +JNU_IsInstanceOfByName +JNU_MonitorWait +JNU_NewObjectByName +JNU_NewStringPlatform +JNU_Notify +JNU_NotifyAll +JNU_PrintClass +JNU_PrintString +JNU_ReleaseStringPlatformChars +JNU_SetFieldByName +JNU_SetStaticFieldByName +JNU_ThrowArrayIndexOutOfBoundsException +JNU_ThrowByName +JNU_ThrowByNameWithLastError +JNU_ThrowByNameWithMessageAndLastError +JNU_ThrowClassNotFoundException +JNU_ThrowIOException +JNU_ThrowIOExceptionWithLastError +JNU_ThrowIllegalAccessError +JNU_ThrowIllegalAccessException +JNU_ThrowIllegalArgumentException +JNU_ThrowInstantiationException +JNU_ThrowInternalError +JNU_ThrowNoSuchFieldError +JNU_ThrowNoSuchFieldException +JNU_ThrowNoSuchMethodError +JNU_ThrowNoSuchMethodException +JNU_ThrowNullPointerException +JNU_ThrowNumberFormatException +JNU_ThrowOutOfMemoryError +JNU_ThrowStringIndexOutOfBoundsException +JNU_ToString +JSCheckScriptSyntax +JSClassCreate +JSClassRelease +JSClassRetain +JSContextCreateBacktrace +JSContextGetGlobalContext +JSContextGetGlobalObject +JSContextGetGroup +JSContextGetMemoryUsageStatistics +JSContextGroupAddHeapFinalizer +JSContextGroupAddMarkingConstraint +JSContextGroupClearExecutionTimeLimit +JSContextGroupCreate +JSContextGroupRelease +JSContextGroupRemoveHeapFinalizer +JSContextGroupRetain +JSContextGroupSetExecutionTimeLimit +JSContextThreadYield +JSDebuggerInitialize +JSDebuggerStart +JSDebuggerStop +JSDebuggerTerminate +JSDisableGCTimer +JSEndProfiling +JSEvaluateScript +JSGarbageCollect +JSGetMemoryUsageStatistics +JSGlobalContextCopyName +JSGlobalContextCreate +JSGlobalContextCreateInGroup +JSGlobalContextGetIncludesNativeCallStackWhenReportingExceptions +JSGlobalContextGetRemoteInspectionEnabled +JSGlobalContextRelease +JSGlobalContextRetain +JSGlobalContextSetDebuggerRunLoopWithCurrentRunLoop +JSGlobalContextSetIncludesNativeCallStackWhenReportingExceptions +JSGlobalContextSetName +JSGlobalContextSetRemoteInspectionEnabled +JSGlobalContextSetUnhandledRejectionCallback +JSGlobalContextUnsetDebuggerRunLoop +JSGlobalObjectInspectorControllerConnectFrontend +JSGlobalObjectInspectorControllerDisconnectFrontend +JSGlobalObjectInspectorControllerDispatchMessageFromFrontend +JSMemoryActivitySettingsConfigSCE +JSMemoryStatsQuerySCE +JSObjectCallAsConstructor +JSObjectCallAsFunction +JSObjectCopyPropertyNames +JSObjectDeletePrivateProperty +JSObjectDeleteProperty +JSObjectDeletePropertyForKey +JSObjectGetArrayBufferByteLength +JSObjectGetArrayBufferBytesPtr +JSObjectGetGlobalContext +JSObjectGetPrivate +JSObjectGetPrivateProperty +JSObjectGetProperty +JSObjectGetPropertyAtIndex +JSObjectGetPropertyForKey +JSObjectGetPrototype +JSObjectGetProxyTarget +JSObjectGetTypedArrayBuffer +JSObjectGetTypedArrayByteLength +JSObjectGetTypedArrayByteOffset +JSObjectGetTypedArrayBytesPtr +JSObjectGetTypedArrayLength +JSObjectHasProperty +JSObjectHasPropertyForKey +JSObjectIsConstructor +JSObjectIsFunction +JSObjectMake +JSObjectMakeArray +JSObjectMakeArrayBufferWithBytesNoCopy +JSObjectMakeConstructor +JSObjectMakeDate +JSObjectMakeDeferredPromise +JSObjectMakeError +JSObjectMakeFunction +JSObjectMakeFunctionWithCallback +JSObjectMakeRegExp +JSObjectMakeTypedArray +JSObjectMakeTypedArrayWithArrayBuffer +JSObjectMakeTypedArrayWithArrayBufferAndOffset +JSObjectMakeTypedArrayWithBytesNoCopy +JSObjectSetPrivate +JSObjectSetPrivateProperty +JSObjectSetProperty +JSObjectSetPropertyAtIndex +JSObjectSetPropertyForKey +JSObjectSetPrototype +JSPropertyNameAccumulatorAddName +JSPropertyNameArrayGetCount +JSPropertyNameArrayGetNameAtIndex +JSPropertyNameArrayRelease +JSPropertyNameArrayRetain +JSRemoteInspectorDisableAutoStart +JSRemoteInspectorGetInspectionEnabledByDefault +JSRemoteInspectorServerStart +JSRemoteInspectorSetInspectionEnabledByDefault +JSRemoteInspectorSetLogToSystemConsole +JSRemoteInspectorSetParentProcessInformation +JSRemoteInspectorStart +JSReportExtraMemoryCost +JSRunLoop +JSRunLoopIterateCurrentRunLoop +JSScriptCreateFromString +JSScriptCreateReferencingImmortalASCIIText +JSScriptEvaluate +JSScriptRelease +JSScriptRetain +JSSetGcMaxHeapSize +JSSetOptions +JSStartProfiling +JSStringCreateWithCharacters +JSStringCreateWithCharactersNoCopy +JSStringCreateWithUTF8CString +JSStringGetCharactersPtr +JSStringGetLength +JSStringGetMaximumUTF8CStringSize +JSStringGetUTF8CString +JSStringIsEqual +JSStringIsEqualToUTF8CString +JSStringRelease +JSStringRetain +JSSynchronousEdenCollectForDebugging +JSSynchronousGarbageCollectForDebugging +JSValueCreateJSONString +JSValueGetType +JSValueGetTypedArrayType +JSValueIsArray +JSValueIsBoolean +JSValueIsDate +JSValueIsEqual +JSValueIsInstanceOfConstructor +JSValueIsNull +JSValueIsNumber +JSValueIsObject +JSValueIsObjectOfClass +JSValueIsStrictEqual +JSValueIsString +JSValueIsSymbol +JSValueIsUndefined +JSValueMakeBoolean +JSValueMakeFromJSONString +JSValueMakeNull +JSValueMakeNumber +JSValueMakeString +JSValueMakeSymbol +JSValueMakeUndefined +JSValueProtect +JSValueToBoolean +JSValueToNumber +JSValueToObject +JSValueToStringCopy +JSValueUnprotect +JSWeakCreate +JSWeakGetObject +JSWeakObjectMapClear +JSWeakObjectMapCreate +JSWeakObjectMapGet +JSWeakObjectMapRemove +JSWeakObjectMapSet +JSWeakRelease +JSWeakRetain +JVM_Accept +JVM_ActiveProcessorCount +JVM_AllocateNewArray +JVM_AllocateNewObject +JVM_ArrayCopy +JVM_AssertionStatusDirectives +JVM_Available +JVM_Bind +JVM_CX8Field +JVM_ClassDepth +JVM_ClassLoaderDepth +JVM_Clone +JVM_Close +JVM_CompileClass +JVM_CompileClasses +JVM_CompilerCommand +JVM_Connect +JVM_ConstantPoolGetClassAt +JVM_ConstantPoolGetClassAtIfLoaded +JVM_ConstantPoolGetDoubleAt +JVM_ConstantPoolGetFieldAt +JVM_ConstantPoolGetFieldAtIfLoaded +JVM_ConstantPoolGetFloatAt +JVM_ConstantPoolGetIntAt +JVM_ConstantPoolGetLongAt +JVM_ConstantPoolGetMemberRefInfoAt +JVM_ConstantPoolGetMethodAt +JVM_ConstantPoolGetMethodAtIfLoaded +JVM_ConstantPoolGetSize +JVM_ConstantPoolGetStringAt +JVM_ConstantPoolGetTagAt +JVM_ConstantPoolGetUTF8At +JVM_CountStackFrames +JVM_CurrentClassLoader +JVM_CurrentLoadedClass +JVM_CurrentThread +JVM_CurrentTimeMillis +JVM_DTraceActivate +JVM_DTraceDispose +JVM_DTraceGetVersion +JVM_DTraceIsProbeEnabled +JVM_DTraceIsSupported +JVM_DefineClass +JVM_DefineClassWithSource +JVM_DefineClassWithSourceCond +JVM_DefineModule +JVM_DesiredAssertionStatus +JVM_DisableCompiler +JVM_DoPrivileged +JVM_DumpAllStacks +JVM_DumpThreads +JVM_EnableCompiler +JVM_Exit +JVM_FillInStackTrace +JVM_FindClassFromBootLoader +JVM_FindClassFromCaller +JVM_FindClassFromClass +JVM_FindClassFromClassLoader +JVM_FindLibraryEntry +JVM_FindLoadedClass +JVM_FindPrimitiveClass +JVM_FindSignal +JVM_FreeMemory +JVM_GC +JVM_GetAllThreads +JVM_GetArrayElement +JVM_GetArrayLength +JVM_GetCPClassNameUTF +JVM_GetCPFieldClassNameUTF +JVM_GetCPFieldModifiers +JVM_GetCPFieldNameUTF +JVM_GetCPFieldSignatureUTF +JVM_GetCPMethodClassNameUTF +JVM_GetCPMethodModifiers +JVM_GetCPMethodNameUTF +JVM_GetCPMethodSignatureUTF +JVM_GetCallerClass +JVM_GetClassAccessFlags +JVM_GetClassAnnotations +JVM_GetClassCPEntriesCount +JVM_GetClassCPTypes +JVM_GetClassConstantPool +JVM_GetClassContext +JVM_GetClassDeclaredConstructors +JVM_GetClassDeclaredFields +JVM_GetClassDeclaredMethods +JVM_GetClassFieldsCount +JVM_GetClassInterfaces +JVM_GetClassLoader +JVM_GetClassMethodsCount +JVM_GetClassModifiers +JVM_GetClassName +JVM_GetClassNameUTF +JVM_GetClassSignature +JVM_GetClassSigners +JVM_GetComponentType +JVM_GetDeclaredClasses +JVM_GetDeclaringClass +JVM_GetEnclosingMethodInfo +JVM_GetFieldAnnotations +JVM_GetFieldIxModifiers +JVM_GetHostName +JVM_GetInheritedAccessControlContext +JVM_GetInterfaceVersion +JVM_GetLastErrorString +JVM_GetManagement +JVM_GetMethodAnnotations +JVM_GetMethodDefaultAnnotationValue +JVM_GetMethodIxArgsSize +JVM_GetMethodIxByteCode +JVM_GetMethodIxByteCodeLength +JVM_GetMethodIxExceptionIndexes +JVM_GetMethodIxExceptionTableEntry +JVM_GetMethodIxExceptionTableLength +JVM_GetMethodIxExceptionsCount +JVM_GetMethodIxLocalsCount +JVM_GetMethodIxMaxStack +JVM_GetMethodIxModifiers +JVM_GetMethodIxNameUTF +JVM_GetMethodIxSignatureUTF +JVM_GetMethodParameterAnnotations +JVM_GetMethodParameters +JVM_GetNanoTimeAdjustment +JVM_GetPrimitiveArrayElement +JVM_GetPrimitiveFieldValues +JVM_GetProtectionDomain +JVM_GetSockName +JVM_GetSockOpt +JVM_GetStackAccessControlContext +JVM_GetStackTraceDepth +JVM_GetStackTraceElement +JVM_GetSystemPackage +JVM_GetSystemPackages +JVM_GetTemporaryDirectory +JVM_GetThreadStateNames +JVM_GetThreadStateValues +JVM_GetVersionInfo +JVM_Halt +JVM_HoldsLock +JVM_IHashCode +JVM_InitAgentProperties +JVM_InitProperties +JVM_InitializeCompiler +JVM_InitializeSocketLibrary +JVM_InternString +JVM_Interrupt +JVM_InvokeMethod +JVM_IsArrayClass +JVM_IsConstructorIx +JVM_IsInterface +JVM_IsInterrupted +JVM_IsNaN +JVM_IsPrimitiveClass +JVM_IsSameClassPackage +JVM_IsSilentCompiler +JVM_IsSupportedJNIVersion +JVM_IsThreadAlive +JVM_LatestUserDefinedLoader +JVM_Listen +JVM_LoadClass0 +JVM_LoadLibrary +JVM_Lseek +JVM_MaxMemory +JVM_MaxObjectInspectionAge +JVM_MonitorNotify +JVM_MonitorNotifyAll +JVM_MonitorWait +JVM_NanoTime +JVM_NativePath +JVM_NewArray +JVM_NewInstanceFromConstructor +JVM_NewMultiArray +JVM_OnExit +JVM_Open +JVM_PrintStackTrace +JVM_RaiseSignal +JVM_RawMonitorCreate +JVM_RawMonitorDestroy +JVM_RawMonitorEnter +JVM_RawMonitorExit +JVM_Read +JVM_Recv +JVM_RecvFrom +JVM_RegisterMethodHandleMethods +JVM_RegisterPerfMethods +JVM_RegisterSignal +JVM_RegisterUnsafeMethods +JVM_ReleaseUTF +JVM_ResolveClass +JVM_ResumeThread +JVM_Send +JVM_SendTo +JVM_SetArrayElement +JVM_SetClassSigners +JVM_SetLength +JVM_SetNativeThreadName +JVM_SetPrimitiveArrayElement +JVM_SetPrimitiveFieldValues +JVM_SetProtectionDomain +JVM_SetSockOpt +JVM_SetThreadPriority +JVM_Sleep +JVM_Socket +JVM_SocketAvailable +JVM_SocketClose +JVM_SocketShutdown +JVM_StartThread +JVM_StopThread +JVM_SupportsCX8 +JVM_SuspendThread +JVM_Sync +JVM_Timeout +JVM_TotalMemory +JVM_TraceInstructions +JVM_TraceMethodCalls +JVM_UnloadLibrary +JVM_Write +JVM_Yield +JVM_handle_bsd_signal +Java_com_oracle_bluray_ui_FAAComponentHelper_createHandle +Java_com_oracle_bluray_ui_FAAComponentHelper_deleteHandle +Java_com_oracle_bluray_ui_FAAComponentHelper_waitVblank +Java_com_sony_bdjstack_core_AppCacheManager_close +Java_com_sony_bdjstack_core_AppCacheManager_isCached +Java_com_sony_bdjstack_core_AppCacheManager_isLoaded +Java_com_sony_bdjstack_core_AppCacheManager_open +Java_com_sony_bdjstack_core_AppCacheManager_read +Java_com_sony_bdjstack_core_AppCacheManager_seek +Java_com_sony_bdjstack_core_CoreApp_getAppBinding +Java_com_sony_bdjstack_core_CoreApp_getBasePath +Java_com_sony_bdjstack_core_CoreApp_getClasspathExtension +Java_com_sony_bdjstack_core_CoreApp_getInitialArguments +Java_com_sony_bdjstack_core_CoreApp_getInitialClass +Java_com_sony_bdjstack_core_CoreApp_getKey +Java_com_sony_bdjstack_core_CoreApp_getName +Java_com_sony_bdjstack_core_CoreApp_threadBody +Java_com_sony_bdjstack_core_CoreXletContext_n_1notifyDestroyed +Java_com_sony_bdjstack_core_CoreXletContext_n_1notifyPause +Java_com_sony_bdjstack_core_CoreXletContext_n_1resumeRequest +Java_com_sony_bdjstack_init_Init_cleanup +Java_com_sony_bdjstack_init_Init_enableStdio +Java_com_sony_bdjstack_init_Init_initJni +Java_com_sony_bdjstack_init_Init_initLogSocket +Java_com_sony_bdjstack_init_Init_removeFiles +Java_com_sony_bdjstack_init_Init_startCore +Java_com_sony_bdjstack_javax_media_content_dripfeed_Player_playFrame +Java_com_sony_bdjstack_javax_media_content_dripfeed_Player_startPlayFrames +Java_com_sony_bdjstack_javax_media_content_dripfeed_Player_stopPlayFrames +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_accessiblePlayList +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_addEventTime +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_checkRate +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_clearEventTime +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getAlignedSubtitle +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getAllAngles +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getAllPrimaryAudioLangs +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getAllPrimaryAudioStreams +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getAllSecondaryAudioLangs +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getAllSecondaryAudioStreams +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getAllSubtitleLangs +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getAllSubtitleStreams +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getAngle +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getCurrentFrameRate +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getCurrentPlayItemId +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getCurrentPosition +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getGPR +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getGraphicsOffsetSequenceId +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getMaskedUOTable +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getMixerGain +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getMixerLevel +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getMixerMetadataOn +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getMixerMute +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getMixerPanFR +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getMixerPanLR +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getPSR +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getPlayableTime +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getPrimaryAudioLang +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getPrimaryAudioStream +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getRate +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getSecondaryAudioLang +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getSecondaryAudioStream +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getSecondaryVideoDisplay +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getSecondaryVideoFullScreen +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getSecondaryVideoStream +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getSubtitleDisp +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getSubtitleLang +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getSubtitleStream +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getSubtitleType +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getTextSTStyle +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_init +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_isPipPlayList +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_isPipSubtitleMode +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_isSecondaryVideoAsyncStream +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_playPlayList +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_playPlayListAtItem +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_playPlayListAtMark +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_playPlayListAtTime +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_removeEventTime +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setAlignedSubtitle +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setAngle +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setAutoplayPlayList +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setGPR +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setGraphicsOffsetSequenceId +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setMixerGain +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setMixerLevel +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setMixerMetadataOn +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setMixerMute +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setMixerPanFR +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setMixerPanLR +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setMixerPanPosition +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setPipSubtitleMode +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setPrimaryAudioDefaultLang +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setPrimaryAudioLang +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setPrimaryAudioStream +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setRate +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setSecondaryAudioDefaultLang +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setSecondaryAudioLang +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setSecondaryAudioStream +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setSecondaryVideoDisplay +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setSecondaryVideoFullScreen +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setSecondaryVideoStream +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setStopPosition +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setSubtitleDefaultLang +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setSubtitleDisp +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setSubtitleLang +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setSubtitleStream +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setTextSTStyle +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_skipToNextEntryMark +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_skipToNextLinkPoint +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_skipToPlayListItem +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_skipToPlayListMark +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_skipToPrevEntryMark +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_skipToPrevLinkPoint +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_stopPlay +Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_waitMediaPresentation +Java_com_sony_bdjstack_javax_media_controls_SoundManager_alloc__Ljava_io_InputStream_2IZ +Java_com_sony_bdjstack_javax_media_controls_SoundManager_alloc___3BIIZ +Java_com_sony_bdjstack_javax_media_controls_SoundManager_bind +Java_com_sony_bdjstack_javax_media_controls_SoundManager_free +Java_com_sony_bdjstack_javax_media_controls_SoundManager_getDataId +Java_com_sony_bdjstack_javax_media_controls_SoundManager_getGainDB +Java_com_sony_bdjstack_javax_media_controls_SoundManager_getGainLevel +Java_com_sony_bdjstack_javax_media_controls_SoundManager_getGainMute +Java_com_sony_bdjstack_javax_media_controls_SoundManager_getIndex +Java_com_sony_bdjstack_javax_media_controls_SoundManager_getPanningFR +Java_com_sony_bdjstack_javax_media_controls_SoundManager_getPanningLR +Java_com_sony_bdjstack_javax_media_controls_SoundManager_init +Java_com_sony_bdjstack_javax_media_controls_SoundManager_pause +Java_com_sony_bdjstack_javax_media_controls_SoundManager_setGainDB +Java_com_sony_bdjstack_javax_media_controls_SoundManager_setGainLevel +Java_com_sony_bdjstack_javax_media_controls_SoundManager_setGainMute +Java_com_sony_bdjstack_javax_media_controls_SoundManager_setPanningFR +Java_com_sony_bdjstack_javax_media_controls_SoundManager_setPanningLR +Java_com_sony_bdjstack_javax_media_controls_SoundManager_setPanningPosition +Java_com_sony_bdjstack_javax_media_controls_SoundManager_start +Java_com_sony_bdjstack_javax_media_controls_SoundManager_stop +Java_com_sony_bdjstack_javax_media_controls_SoundManager_unbind +Java_com_sony_bdjstack_javax_media_controls_VideoDecoder_getAspectRatio +Java_com_sony_bdjstack_javax_media_controls_VideoDecoder_getInputVideoSize +Java_com_sony_bdjstack_javax_media_controls_VideoDecoder_getPosition +Java_com_sony_bdjstack_javax_media_controls_VideoDecoder_getVideoSize +Java_com_sony_bdjstack_javax_media_controls_VideoDecoder_init +Java_com_sony_bdjstack_javax_media_controls_VideoDecoder_transform +Java_com_sony_bdjstack_javax_media_controls_VideoSystem_getGraphicsPlaneOffsetValue +Java_com_sony_bdjstack_javax_media_controls_VideoSystem_getKeepResolutionMode +Java_com_sony_bdjstack_javax_media_controls_VideoSystem_getScreenAspectRatio +Java_com_sony_bdjstack_javax_media_controls_VideoSystem_getScreenConfigurationId +Java_com_sony_bdjstack_javax_media_controls_VideoSystem_getVideoScreenRect +Java_com_sony_bdjstack_javax_media_controls_VideoSystem_init +Java_com_sony_bdjstack_javax_media_controls_VideoSystem_setBackgroundDeviceColor +Java_com_sony_bdjstack_javax_media_controls_VideoSystem_setGraphicsPlaneOffsetValue +Java_com_sony_bdjstack_javax_media_controls_VideoSystem_setScreenConfiguration +Java_com_sony_bdjstack_javax_media_controls_VideoSystem_setScreenDeviceVisible +Java_com_sony_bdjstack_org_bluray_bdplus_StatusImpl_get +Java_com_sony_bdjstack_org_bluray_bdplus_StatusImpl_send +Java_com_sony_bdjstack_org_bluray_bdplus_StatusImpl_set +Java_com_sony_bdjstack_org_bluray_storage_BindingunitDataAreaInfo_getFreeBuSize +Java_com_sony_bdjstack_org_bluray_storage_BindingunitDataAreaInfo_getTotalBuSize +Java_com_sony_bdjstack_org_bluray_storage_PersistentDataAreaInfo_getMaxPsSize +Java_com_sony_bdjstack_org_bluray_storage_PersistentDataAreaInfo_getTotalPsSize +Java_com_sony_bdjstack_org_bluray_ti_DiscManagerImpl_init +Java_com_sony_bdjstack_org_bluray_ui_FrameAccurateAnimationClock_getMicroSeconds +Java_com_sony_bdjstack_org_bluray_vfs_VFSManagerImpl_isDiscEjected +Java_com_sony_bdjstack_org_bluray_vfs_VFSManagerImpl_proxyDisableClip +Java_com_sony_bdjstack_org_bluray_vfs_VFSManagerImpl_proxyEnableClip +Java_com_sony_bdjstack_org_bluray_vfs_VFSManagerImpl_proxyGetDisabledClipIDs +Java_com_sony_bdjstack_org_bluray_vfs_VFSManagerImpl_proxyGetState +Java_com_sony_bdjstack_org_bluray_vfs_VFSManagerImpl_proxyIsEnabledClip +Java_com_sony_bdjstack_org_bluray_vfs_VFSManagerImpl_proxyPrepareUpdating +Java_com_sony_bdjstack_org_bluray_vfs_VFSManagerImpl_proxyRequestUpdating +Java_com_sony_bdjstack_org_dvb_dsmcc_FileCacheManager_load +Java_com_sony_bdjstack_org_dvb_dsmcc_FileCacheManager_unload +Java_com_sony_bdjstack_org_dvb_event_Init_registerKeyEventCallback +Java_com_sony_bdjstack_security_aacs_AACSOnline_checkPermission +Java_com_sony_bdjstack_security_aacs_AACSOnline_clearNonce +Java_com_sony_bdjstack_security_aacs_AACSOnline_getContentCertID +Java_com_sony_bdjstack_security_aacs_AACSOnline_getDeviceBindingID +Java_com_sony_bdjstack_security_aacs_AACSOnline_getNonce +Java_com_sony_bdjstack_security_aacs_AACSOnline_getPMSN +Java_com_sony_bdjstack_security_aacs_AACSOnline_getVolumeID +Java_com_sony_bdjstack_security_aacs_AACSOnline_isCacheable +Java_com_sony_bdjstack_security_aacs_AACSOnline_setPermission +Java_com_sony_bdjstack_system_BDJModule_destroy +Java_com_sony_bdjstack_system_BDJModule_getCurrentTitle +Java_com_sony_bdjstack_system_BDJModule_getState +Java_com_sony_bdjstack_system_BDJModule_invokeTitleCallback +Java_com_sony_bdjstack_system_BDJModule_postKeyEvent +Java_com_sony_bdjstack_system_BDJModule_prepareTitle__I +Java_com_sony_bdjstack_system_BDJModule_prepareTitle__II +Java_com_sony_bdjstack_system_BDJModule_prepareTitle__Ljava_lang_String_2 +Java_com_sony_bdjstack_system_BDJModule_startTitle +Java_com_sony_bdjstack_system_BDJModule_terminateTitle +Java_com_sony_bdjstack_system_BDJModule_waitForExit +Java_com_sony_bdjstack_ti_Database_checkPlayListVersion +Java_com_sony_bdjstack_ti_Database_getCurrentPlayItem +Java_com_sony_bdjstack_ti_Database_getCurrentPlayListTable +Java_com_sony_bdjstack_ti_Database_getDiscId +Java_com_sony_bdjstack_ti_Database_getPlayItems +Java_com_sony_bdjstack_ti_Database_getPlayListTable +Java_com_sony_bdjstack_ti_Database_getPlayLists +Java_com_sony_bdjstack_ti_Database_getStream +Java_com_sony_bdjstack_ti_Database_getStreams +Java_com_sony_bdjstack_ti_Database_getTitle +Java_com_sony_bdjstack_ti_Database_getTitles +Java_com_sony_bdjstack_ti_Database_init +Java_com_sony_gemstack_core_CoreAppAttributes_getAttributes +Java_com_sony_gemstack_core_CoreAppAttributes_n_1getPriority +Java_com_sony_gemstack_core_CoreAppContext_n_1isInterrupted +Java_com_sony_gemstack_core_CoreAppId_n_1init +Java_com_sony_gemstack_core_CoreAppState_n_1getState +Java_com_sony_gemstack_io_FilePath_n_1closedir +Java_com_sony_gemstack_io_FilePath_n_1delete +Java_com_sony_gemstack_io_FilePath_n_1makecanonical +Java_com_sony_gemstack_io_FilePath_n_1mkdir +Java_com_sony_gemstack_io_FilePath_n_1opendir +Java_com_sony_gemstack_io_FilePath_n_1readdir +Java_com_sony_gemstack_io_FilePath_n_1rename +Java_com_sony_gemstack_io_FilePath_n_1stat +Java_com_sony_gemstack_io_factories_jar_JarEntryInputStream_getProxy +Java_com_sony_gemstack_io_factories_jar_JarEntryInputStream_setProxy +Java_com_sony_gemstack_io_factories_jar_JarRandomAccessFile_getProxy +Java_com_sony_gemstack_io_factories_jar_JarRandomAccessFile_setProxy +Java_com_sony_gemstack_io_factories_ps_PSAttributes_n_1getAttributes +Java_com_sony_gemstack_io_factories_ps_PSAttributes_n_1setAttributes +Java_com_sony_gemstack_org_dvb_application_AppProxyImpl_n_1getMaster +Java_com_sony_gemstack_org_dvb_application_AppProxyImpl_n_1getState +Java_com_sony_gemstack_org_dvb_application_AppProxyImpl_n_1hasBeenStarted +Java_com_sony_gemstack_org_dvb_application_AppProxyImpl_n_1init +Java_com_sony_gemstack_org_dvb_application_AppProxyImpl_n_1initialisation +Java_com_sony_gemstack_org_dvb_application_AppProxyImpl_n_1load +Java_com_sony_gemstack_org_dvb_application_AppProxyImpl_n_1pause +Java_com_sony_gemstack_org_dvb_application_AppProxyImpl_n_1start +Java_com_sony_gemstack_org_dvb_application_AppProxyImpl_n_1startWithArgs +Java_com_sony_gemstack_org_dvb_application_AppProxyImpl_n_1stop +Java_com_sony_gemstack_org_dvb_application_AppsDatabaseImpl_n_1acceptCurrService +Java_com_sony_gemstack_org_dvb_application_AppsDatabaseImpl_n_1acceptRunningApp +Java_com_sony_gemstack_org_dvb_application_AppsDatabaseImpl_n_1disableCallbacks +Java_com_sony_gemstack_org_dvb_application_AppsDatabaseImpl_n_1enableCallbacks +Java_com_sony_gemstack_org_dvb_application_AppsDatabaseImpl_n_1getAppKeyFromId +Java_com_sony_gemstack_org_dvb_application_AppsDatabaseImpl_n_1getAttributesFromId +Java_com_sony_gemstack_org_dvb_application_AppsDatabaseImpl_n_1getAvailableAppIds +Java_com_sony_gemstack_org_dvb_application_AppsDatabaseImpl_n_1getSize +Java_com_sony_gemstack_org_dvb_application_AppsDatabaseImpl_n_1init +Java_com_sony_gemstack_org_dvb_application_AppsDatabaseImpl_n_1isAvailable +Java_com_sony_gemstack_org_havi_ui_HBackgroundImageDecoder_display +Java_com_sony_gemstack_org_havi_ui_HBackgroundImageDecoder_displaySurface +Java_com_sony_gemstack_org_havi_ui_HBackgroundImageDecoder_displaySurfaceStereo +Java_com_sony_gemstack_org_havi_ui_HBackgroundImageDecoder_freeSurface +Java_com_sony_gemstack_org_havi_ui_HBackgroundImageDecoder_getImageData +Java_com_sony_gemstack_org_havi_ui_HBackgroundImageDecoder_init +Java_com_sony_gemstack_org_havi_ui_HBackgroundImageDecoder_load +Java_com_sony_gemstack_org_havi_ui_HBackgroundImageDecoder_loadStream +Java_com_sony_gemstack_resources_ResourceManager_hasStream +Java_com_sony_gemstack_resources_ResourceManager_initJNI +Java_com_sony_gemstack_resources_ResourceManager_releaseStream +Java_com_sony_gemstack_resources_ResourceManager_reserveStream +Java_com_sony_mhpstack_debug_DebugOutput_setNativeDebugFlag +Java_com_sony_mhpstack_mhpsupport_appsupport_AppObjectRegistry_n_1init +Java_com_sun_bluray_ui_FAABaseComponent_createHandle +Java_com_sun_bluray_ui_FAABaseComponent_deleteHandle +Java_com_sun_bluray_ui_FAABaseComponent_waitVblank +Java_com_sun_dvb_event_MHPEventQueue_init +Java_com_sun_dvb_event_MHPEventQueue_postKeyEvent +Java_com_sun_dvb_event_MHPEventQueue_run +Java_com_sun_dvb_event_UserEventRegistry_keyCodeRegistered +Java_com_sun_dvb_event_UserEventRegistry_keyCodeUnregistered +Java_com_sun_havi_ui_FreeTypeFontFace_pGetFontFamily +Java_com_sun_havi_ui_FreeTypeFontFace_pGetSupportedCharacterRanges +Java_com_sun_havi_ui_FreeTypeFontFace_pIsCharAvailable +Java_com_sun_havi_ui_FreeTypeFontFace_pLoadFontFace +Java_com_sun_havi_ui_FreeTypeFontFace_pReleaseFontFace +Java_java_awt_Component_paintLock +Java_java_awt_Component_paintUnlock +Java_java_awt_FlushThread_flush +Java_java_awt_GnmDefaultGraphicsConfiguration_createColorModel +Java_java_awt_GnmFontMetrics_destroyFont +Java_java_awt_GnmFontMetrics_getStringWidth +Java_java_awt_GnmFontMetrics_initIDs +Java_java_awt_GnmFontMetrics_loadFont +Java_java_awt_GnmFontMetrics_loadFontFromCache +Java_java_awt_GnmFontMetrics_loadFontFromMemory +Java_java_awt_GnmGraphicsConfiguration_createBufferedImageObject +Java_java_awt_GnmGraphicsConfiguration_createCompatibleImageType +Java_java_awt_GnmGraphicsDevice_disposePSD +Java_java_awt_GnmGraphicsDevice_getIDstring +Java_java_awt_GnmGraphicsDevice_getScreenHeight +Java_java_awt_GnmGraphicsDevice_getScreenWidth +Java_java_awt_GnmGraphicsDevice_openScreen +Java_java_awt_GnmGraphicsDevice_setResolution +Java_java_awt_GnmGraphicsDevice_updateScreenDimensions +Java_java_awt_GnmGraphicsEnvironment_cleanup +Java_java_awt_GnmGraphicsEnvironment_init +Java_java_awt_GnmGraphicsEnvironment_initIDs +Java_java_awt_GnmGraphicsEnvironment_nativeSetWindow +Java_java_awt_GnmGraphicsEnvironment_run +Java_java_awt_GnmGraphicsEnvironment_runConsoleEventThread +Java_java_awt_GnmGraphics_clonePSD +Java_java_awt_GnmGraphics_disposePSD +Java_java_awt_GnmGraphics_getBufferedImagePeer +Java_java_awt_GnmGraphics_initIDs +Java_java_awt_GnmGraphics_nativeChangeClipRect +Java_java_awt_GnmGraphics_nativeClearRect +Java_java_awt_GnmGraphics_nativeCopyArea +Java_java_awt_GnmGraphics_nativeDrawArc +Java_java_awt_GnmGraphics_nativeDrawLine +Java_java_awt_GnmGraphics_nativeDrawOval +Java_java_awt_GnmGraphics_nativeDrawPolygon +Java_java_awt_GnmGraphics_nativeDrawRect +Java_java_awt_GnmGraphics_nativeDrawRoundRect +Java_java_awt_GnmGraphics_nativeDrawString +Java_java_awt_GnmGraphics_nativeFillArc +Java_java_awt_GnmGraphics_nativeFillOval +Java_java_awt_GnmGraphics_nativeFillPolygon +Java_java_awt_GnmGraphics_nativeFillRect +Java_java_awt_GnmGraphics_nativeFillRoundRect +Java_java_awt_GnmGraphics_nativeRemoveClip +Java_java_awt_GnmGraphics_nativeSetColor +Java_java_awt_GnmGraphics_nativeSetComposite +Java_java_awt_GnmGraphics_nativeSetPaintMode +Java_java_awt_GnmGraphics_nativeSetStroke +Java_java_awt_GnmGraphics_nativeSetXORMode +Java_java_awt_GnmImage_clonePSD +Java_java_awt_GnmImage_disposePSD +Java_java_awt_GnmImage_initIDs +Java_java_awt_GnmImage_nativeDrawImage +Java_java_awt_GnmImage_nativeDrawImageScaled +Java_java_awt_GnmImage_nativeGetHeight +Java_java_awt_GnmImage_nativeGetRGB +Java_java_awt_GnmImage_nativeGetRGBArray +Java_java_awt_GnmImage_nativeGetWidth +Java_java_awt_GnmImage_nativeSetColorModelBytePixels +Java_java_awt_GnmImage_nativeSetColorModelIntPixels +Java_java_awt_GnmImage_nativeSetDirectColorModelPixels +Java_java_awt_GnmImage_nativeSetIndexColorModelBytePixels +Java_java_awt_GnmImage_nativeSetIndexColorModelIntPixels +Java_java_awt_GnmImage_nativeSetRGB +Java_java_awt_GnmImage_nativeSetRGBArray +Java_java_awt_GnmRobotHelper_createScreenCapture +Java_java_awt_GnmRobotHelper_doKeyActionNative +Java_java_awt_GnmRobotHelper_doKeyActionOnWidget +Java_java_awt_GnmRobotHelper_doMouseActionNative +Java_java_awt_GnmRobotHelper_init +Java_java_awt_GnmScaledImage_pSetScalingHints +Java_java_awt_GnmToolkit_beep +Java_java_awt_GnmToolkit_getScreenResolution +Java_java_awt_GnmToolkit_sync +Java_java_awt_GraphicsEnvironment_getMouseLocation +Java_java_awt_Window_pChangeCursor +Java_java_awt_Window_pSetWarningString +Java_java_awt_Window_pShow +Java_java_io_FileDescriptor_initIDs +Java_java_io_FileDescriptor_sync +Java_java_io_FileDescriptor_sync0 +Java_java_io_FileInputStream_available0 +Java_java_io_FileInputStream_close0 +Java_java_io_FileInputStream_initIDs +Java_java_io_FileInputStream_open +Java_java_io_FileInputStream_open0 +Java_java_io_FileInputStream_read0 +Java_java_io_FileInputStream_readBytes +Java_java_io_FileInputStream_skip +Java_java_io_FileInputStream_skip0 +Java_java_io_FileOutputStream_close0 +Java_java_io_FileOutputStream_initIDs +Java_java_io_FileOutputStream_open +Java_java_io_FileOutputStream_open0 +Java_java_io_FileOutputStream_openAppend +Java_java_io_FileOutputStream_write +Java_java_io_FileOutputStream_write0 +Java_java_io_FileOutputStream_writeBytes +Java_java_io_FileSystem_getFileSystem +Java_java_io_ObjectInputStream_allocateNewArray +Java_java_io_ObjectInputStream_allocateNewObject +Java_java_io_ObjectInputStream_bytesToDoubles +Java_java_io_ObjectInputStream_bytesToFloats +Java_java_io_ObjectInputStream_latestUserDefinedLoader +Java_java_io_ObjectInputStream_setObjectFieldValue +Java_java_io_ObjectInputStream_setPrimitiveFieldValues +Java_java_io_ObjectOutputStream_doublesToBytes +Java_java_io_ObjectOutputStream_floatsToBytes +Java_java_io_ObjectOutputStream_getObjectFieldValue +Java_java_io_ObjectOutputStream_getPrimitiveFieldValues +Java_java_io_ObjectStreamClass_getFieldIDs +Java_java_io_ObjectStreamClass_hasStaticInitializer +Java_java_io_ObjectStreamClass_initNative +Java_java_io_RandomAccessFile_close0 +Java_java_io_RandomAccessFile_getFilePointer +Java_java_io_RandomAccessFile_getFilePointer0 +Java_java_io_RandomAccessFile_initIDs +Java_java_io_RandomAccessFile_length0 +Java_java_io_RandomAccessFile_open +Java_java_io_RandomAccessFile_open0 +Java_java_io_RandomAccessFile_read0 +Java_java_io_RandomAccessFile_readBytes +Java_java_io_RandomAccessFile_seek0 +Java_java_io_RandomAccessFile_setLength0 +Java_java_io_RandomAccessFile_write0 +Java_java_io_RandomAccessFile_writeBytes +Java_java_io_UnixFileSystem_canonicalize0 +Java_java_io_UnixFileSystem_checkAccess +Java_java_io_UnixFileSystem_createDirectory +Java_java_io_UnixFileSystem_createFileExclusively +Java_java_io_UnixFileSystem_delete0 +Java_java_io_UnixFileSystem_deleteOnExit +Java_java_io_UnixFileSystem_getBooleanAttributes0 +Java_java_io_UnixFileSystem_getLastModifiedTime +Java_java_io_UnixFileSystem_getLength +Java_java_io_UnixFileSystem_initIDs +Java_java_io_UnixFileSystem_list +Java_java_io_UnixFileSystem_rename0 +Java_java_io_UnixFileSystem_setLastModifiedTime +Java_java_io_UnixFileSystem_setPermission +Java_java_io_UnixFileSystem_setReadOnly +Java_java_lang_ClassLoader_00024NativeLibrary_find +Java_java_lang_ClassLoader_00024NativeLibrary_load +Java_java_lang_ClassLoader_00024NativeLibrary_load0 +Java_java_lang_ClassLoader_00024NativeLibrary_unload +Java_java_lang_ClassLoader_defineClass0 +Java_java_lang_ClassLoader_findBootstrapClass +Java_java_lang_ClassLoader_findLoadedClass0 +Java_java_lang_ClassLoader_registerNatives +Java_java_lang_ClassLoader_resolveClass0 +Java_java_lang_Class_forName0 +Java_java_lang_Class_getPrimitiveClass +Java_java_lang_Class_isAssignableFrom +Java_java_lang_Class_isInstance +Java_java_lang_Class_registerNatives +Java_java_lang_Compiler_registerNatives +Java_java_lang_Double_doubleToLongBits +Java_java_lang_Double_doubleToRawLongBits +Java_java_lang_Double_longBitsToDouble +Java_java_lang_Float_floatToIntBits +Java_java_lang_Float_floatToRawIntBits +Java_java_lang_Float_intBitsToFloat +Java_java_lang_Object_getClass +Java_java_lang_Object_registerNatives +Java_java_lang_Package_getSystemPackage0 +Java_java_lang_Package_getSystemPackages0 +Java_java_lang_Runtime_availableProcessors +Java_java_lang_Runtime_execInternal +Java_java_lang_Runtime_freeMemory +Java_java_lang_Runtime_gc +Java_java_lang_Runtime_maxMemory +Java_java_lang_Runtime_runFinalization0 +Java_java_lang_Runtime_totalMemory +Java_java_lang_Runtime_traceInstructions +Java_java_lang_Runtime_traceMethodCalls +Java_java_lang_SecurityManager_classDepth +Java_java_lang_SecurityManager_classLoaderDepth0 +Java_java_lang_SecurityManager_currentClassLoader0 +Java_java_lang_SecurityManager_currentLoadedClass0 +Java_java_lang_SecurityManager_getClassContext +Java_java_lang_Shutdown_halt +Java_java_lang_Shutdown_halt0 +Java_java_lang_Shutdown_runAllFinalizers +Java_java_lang_StrictMath_IEEEremainder +Java_java_lang_StrictMath_acos +Java_java_lang_StrictMath_asin +Java_java_lang_StrictMath_atan +Java_java_lang_StrictMath_atan2 +Java_java_lang_StrictMath_ceil +Java_java_lang_StrictMath_cos +Java_java_lang_StrictMath_cosh +Java_java_lang_StrictMath_exp +Java_java_lang_StrictMath_expm1 +Java_java_lang_StrictMath_floor +Java_java_lang_StrictMath_log +Java_java_lang_StrictMath_log10 +Java_java_lang_StrictMath_log1p +Java_java_lang_StrictMath_pow +Java_java_lang_StrictMath_rint +Java_java_lang_StrictMath_sin +Java_java_lang_StrictMath_sinh +Java_java_lang_StrictMath_sqrt +Java_java_lang_StrictMath_tan +Java_java_lang_StrictMath_tanh +Java_java_lang_String_intern +Java_java_lang_System_identityHashCode +Java_java_lang_System_initProperties +Java_java_lang_System_mapLibraryName +Java_java_lang_System_registerNatives +Java_java_lang_System_setErr0 +Java_java_lang_System_setIn0 +Java_java_lang_System_setOut0 +Java_java_lang_Thread_registerNatives +Java_java_lang_Throwable_fillInStackTrace +Java_java_lang_Throwable_getStackTraceDepth +Java_java_lang_Throwable_getStackTraceElement +Java_java_lang_UNIXProcess_destroyProcess +Java_java_lang_UNIXProcess_forkAndExec +Java_java_lang_UNIXProcess_initIDs +Java_java_lang_UNIXProcess_waitForProcessExit +Java_java_lang_ref_Finalizer_invokeFinalizeMethod +Java_java_lang_reflect_Array_get +Java_java_lang_reflect_Array_getBoolean +Java_java_lang_reflect_Array_getByte +Java_java_lang_reflect_Array_getChar +Java_java_lang_reflect_Array_getDouble +Java_java_lang_reflect_Array_getFloat +Java_java_lang_reflect_Array_getInt +Java_java_lang_reflect_Array_getLength +Java_java_lang_reflect_Array_getLong +Java_java_lang_reflect_Array_getShort +Java_java_lang_reflect_Array_multiNewArray +Java_java_lang_reflect_Array_newArray +Java_java_lang_reflect_Array_set +Java_java_lang_reflect_Array_setBoolean +Java_java_lang_reflect_Array_setByte +Java_java_lang_reflect_Array_setChar +Java_java_lang_reflect_Array_setDouble +Java_java_lang_reflect_Array_setFloat +Java_java_lang_reflect_Array_setInt +Java_java_lang_reflect_Array_setLong +Java_java_lang_reflect_Array_setShort +Java_java_lang_reflect_Proxy_defineClass0 +Java_java_net_DatagramPacket_init +Java_java_net_Inet4AddressImpl_getHostByAddr +Java_java_net_Inet4AddressImpl_getLocalHostName +Java_java_net_Inet4AddressImpl_lookupAllHostAddr +Java_java_net_Inet4Address_init +Java_java_net_Inet6AddressImpl_getHostByAddr +Java_java_net_Inet6AddressImpl_getLocalHostName +Java_java_net_Inet6AddressImpl_lookupAllHostAddr +Java_java_net_Inet6Address_init +Java_java_net_InetAddressImplFactory_isIPv6Supported +Java_java_net_InetAddress_init +Java_java_net_NetworkInterface_getAll +Java_java_net_NetworkInterface_getByIndex +Java_java_net_NetworkInterface_getByIndex0 +Java_java_net_NetworkInterface_getByInetAddress0 +Java_java_net_NetworkInterface_getByName0 +Java_java_net_NetworkInterface_init +Java_java_net_PlainDatagramSocketImpl_bind +Java_java_net_PlainDatagramSocketImpl_bind0 +Java_java_net_PlainDatagramSocketImpl_connect0 +Java_java_net_PlainDatagramSocketImpl_dataAvailable +Java_java_net_PlainDatagramSocketImpl_datagramSocketClose +Java_java_net_PlainDatagramSocketImpl_datagramSocketCreate +Java_java_net_PlainDatagramSocketImpl_disconnect0 +Java_java_net_PlainDatagramSocketImpl_getTTL +Java_java_net_PlainDatagramSocketImpl_getTimeToLive +Java_java_net_PlainDatagramSocketImpl_init +Java_java_net_PlainDatagramSocketImpl_join +Java_java_net_PlainDatagramSocketImpl_leave +Java_java_net_PlainDatagramSocketImpl_peek +Java_java_net_PlainDatagramSocketImpl_peekData +Java_java_net_PlainDatagramSocketImpl_receive +Java_java_net_PlainDatagramSocketImpl_receive0 +Java_java_net_PlainDatagramSocketImpl_send +Java_java_net_PlainDatagramSocketImpl_setTTL +Java_java_net_PlainDatagramSocketImpl_setTimeToLive +Java_java_net_PlainDatagramSocketImpl_socketGetOption +Java_java_net_PlainDatagramSocketImpl_socketSetOption +Java_java_net_PlainDatagramSocketImpl_socketSetOption0 +Java_java_net_PlainSocketImpl_initProto +Java_java_net_PlainSocketImpl_socketAccept +Java_java_net_PlainSocketImpl_socketAvailable +Java_java_net_PlainSocketImpl_socketBind +Java_java_net_PlainSocketImpl_socketClose0 +Java_java_net_PlainSocketImpl_socketConnect +Java_java_net_PlainSocketImpl_socketCreate +Java_java_net_PlainSocketImpl_socketGetOption +Java_java_net_PlainSocketImpl_socketListen +Java_java_net_PlainSocketImpl_socketSendUrgentData +Java_java_net_PlainSocketImpl_socketSetOption +Java_java_net_PlainSocketImpl_socketSetOption0 +Java_java_net_PlainSocketImpl_socketShutdown +Java_java_net_SocketInputStream_init +Java_java_net_SocketInputStream_socketRead0 +Java_java_net_SocketOutputStream_init +Java_java_net_SocketOutputStream_socketWrite0 +Java_java_security_AccessController_doPrivileged__Ljava_security_PrivilegedAction_2 +Java_java_security_AccessController_doPrivileged__Ljava_security_PrivilegedAction_2Ljava_security_AccessControlContext_2 +Java_java_security_AccessController_doPrivileged__Ljava_security_PrivilegedExceptionAction_2 +Java_java_security_AccessController_doPrivileged__Ljava_security_PrivilegedExceptionAction_2Ljava_security_AccessControlContext_2 +Java_java_security_AccessController_getInheritedAccessControlContext +Java_java_security_AccessController_getStackAccessControlContext +Java_java_util_ResourceBundle_getClassContext +Java_java_util_TimeZone_getSystemGMTOffsetID +Java_java_util_TimeZone_getSystemTimeZoneID +Java_java_util_jar_JarFile_getMetaInfEntryNames +Java_java_util_zip_Adler32_update +Java_java_util_zip_Adler32_updateBytes +Java_java_util_zip_CRC32_update +Java_java_util_zip_CRC32_updateBytes +Java_java_util_zip_CRC32_updateBytes0 +Java_java_util_zip_Deflater_deflateBytes +Java_java_util_zip_Deflater_end +Java_java_util_zip_Deflater_getAdler +Java_java_util_zip_Deflater_getBytesRead +Java_java_util_zip_Deflater_getBytesWritten +Java_java_util_zip_Deflater_init +Java_java_util_zip_Deflater_initIDs +Java_java_util_zip_Deflater_reset +Java_java_util_zip_Deflater_setDictionary +Java_java_util_zip_Inflater_end +Java_java_util_zip_Inflater_getAdler +Java_java_util_zip_Inflater_getBytesRead +Java_java_util_zip_Inflater_getBytesWritten +Java_java_util_zip_Inflater_inflateBytes +Java_java_util_zip_Inflater_init +Java_java_util_zip_Inflater_initIDs +Java_java_util_zip_Inflater_reset +Java_java_util_zip_Inflater_setDictionary +Java_java_util_zip_ZipEntry_initFields +Java_java_util_zip_ZipEntry_initIDs +Java_java_util_zip_ZipFile_close +Java_java_util_zip_ZipFile_freeEntry +Java_java_util_zip_ZipFile_getCSize +Java_java_util_zip_ZipFile_getEntry +Java_java_util_zip_ZipFile_getMethod +Java_java_util_zip_ZipFile_getNextEntry +Java_java_util_zip_ZipFile_getSize +Java_java_util_zip_ZipFile_getTotal +Java_java_util_zip_ZipFile_getZipMessage +Java_java_util_zip_ZipFile_initIDs +Java_java_util_zip_ZipFile_open +Java_java_util_zip_ZipFile_read +Java_java_util_zip_ZipFile_startsWithLOC +Java_org_blurayx_s3d_ui_DirectDrawS3D_drawStereoscopic +Java_org_blurayx_s3d_ui_DirectDrawS3D_drawStereoscopic0 +Java_org_blurayx_s3d_ui_DirectDrawS3D_drawStereoscopicImages +Java_org_blurayx_s3d_ui_DirectDrawS3D_drawStereoscopicImages0 +Java_org_blurayx_s3d_ui_DirectDrawS3D_initIDs +Java_org_dvb_event_EventManager_postAWTEvent +Java_org_havi_ui_HFontCapabilities_initIDs +Java_org_havi_ui_HFontCapabilities_pGetSupportedCharacterRanges +Java_org_havi_ui_HFontCapabilities_pIsCharAvailable +Java_sun_awt_DownloadedFont_getAvailableFontFaces +Java_sun_awt_DownloadedFont_getFontFamily +Java_sun_awt_DownloadedFont_getStatus +Java_sun_awt_DownloadedFont_loadFromFile +Java_sun_awt_DownloadedFont_loadFromMemoryFinish +Java_sun_awt_DownloadedFont_loadFromMemoryInit +Java_sun_awt_DownloadedFont_loadFromMemoryWrite +Java_sun_awt_DownloadedFont_nativeDispose +Java_sun_awt_GnmUtils_bdjbgAlloc +Java_sun_awt_GnmUtils_bdjbgAllocFromImage +Java_sun_awt_GnmUtils_bdjbgClear +Java_sun_awt_GnmUtils_bdjbgCopyPlanes +Java_sun_awt_GnmUtils_bdjbgDisplay +Java_sun_awt_GnmUtils_bdjbgFree +Java_sun_awt_GnmUtils_bdjbgGetAddress +Java_sun_awt_GnmUtils_bdjbgLock +Java_sun_awt_GnmUtils_bdjbgTest +Java_sun_awt_GnmUtils_bdjbgUnlock +Java_sun_awt_GnmUtils_copyBackgroundToPrimaryPlane +Java_sun_awt_GnmUtils_copyPlanesBackgroundToPrimary +Java_sun_awt_GnmUtils_createEqueue +Java_sun_awt_GnmUtils_deleteEqueue +Java_sun_awt_GnmUtils_getBackgroundEngine +Java_sun_awt_GnmUtils_getEngineFromGraphics +Java_sun_awt_GnmUtils_getEngineFromImage +Java_sun_awt_GnmUtils_getPrimaryEngine +Java_sun_awt_GnmUtils_invokeDisplayCallback +Java_sun_awt_GnmUtils_postKeyEvent +Java_sun_awt_GnmUtils_setDefaultFontHandle +Java_sun_awt_GnmUtils_waitEqueue +Java_sun_awt_GnmUtils_waitFlipEvent +Java_sun_awt_GnmUtils_waitVblankEvent +Java_sun_awt_image_GnmImageDecoder_initIDs +Java_sun_awt_image_GnmImageDecoder_readImage__ILjava_io_InputStream_2ILjava_awt_Image_2 +Java_sun_awt_image_GnmImageDecoder_readImage__ILjava_lang_String_2Ljava_awt_Image_2 +Java_sun_awt_image_GnmImageDecoder_readImage__I_3BIILjava_awt_Image_2 +Java_sun_awt_image_PNGImageDecoder_composeRowByte +Java_sun_awt_image_PNGImageDecoder_composeRowInt +Java_sun_awt_image_PNGImageDecoder_decodeColor83 +Java_sun_awt_image_PNGImageDecoder_filterRow +Java_sun_misc_AtomicLongCSImpl_attemptUpdate +Java_sun_misc_AtomicLong_VMSupportsCS8 +Java_sun_misc_Signal_findSignal +Java_sun_misc_Signal_handle0 +Java_sun_misc_Signal_raise0 +Java_sun_net_PortConfig_getLower0 +Java_sun_net_PortConfig_getUpper0 +Java_sun_reflect_NativeConstructorAccessorImpl_newInstance0 +Java_sun_reflect_NativeMethodAccessorImpl_invoke0 +Java_sun_reflect_Reflection_getCallerClass +Java_sun_reflect_Reflection_getClassAccessFlags +KillMusicCore +LOGICAL_PAGE_SIZE +LockCommInfoList +LockProtocolInfoList +LoginMgrCreateUser +LoginMgrDestroyUser +LoginMgrInitialize +LoginMgrSetLoginFlag +LoginMgrSetUserStatus +LoginMgrTerminate +MASSMADeleteMessage +MASSMAInitialize +MASSMASendMessage +MASSMATerminate +MASSMCDeleteMessage +MASSMCReadMessage +MASSMCTerminate +MASSValueSizeMax +MD4_Final +MD4_Init +MD4_Update +MD5 +MD5_Final +MD5_Init +MD5_Update +MOCANA_freeMocana +MOCANA_initMocana +MsvUpdaterInfo +MvpHttpAbort +MvpHttpDeInit +MvpHttpGet +MvpHttpGetLastError +MvpHttpHead +MvpHttpHeadCleanup +MvpHttpInit +MvpHttpPost +MvpHttpSetCert +MvpHttpSetRecvTimeout +MvpHttpSetRedirectCb +NET_Bind +NET_GetSockOpt +NET_InetAddressToSockaddr +NET_MapSocketOption +NET_SetSockOpt +NET_SockaddrEqualsInetAddress +NET_ThrowNew +NET_Wait Need_sceLibc -scePlayReadyMemRealloc -sceFontGraphicsTextureGetSurface -scePthreadGetschedparam -sceNpGlobalHeapGetAllocatorExPtr -sceNetBandwidthControlSetDefaultParam -sceLncUtilRaiseException -sceApplicationGetCanvasHandleByApplicationLocalPid -sceImeConfigSet -sceVideoCoreAsyncSendRequest -sceHttpReadData -sceLibSecureRemoveHash -sceHttpDeleteConnection -scePfsPreadDecompressBlock -sceKernelSetCallRecord -sceNpAsmClientGetNpComInfo2A -sceNpNotifyPremiumFeature -sceSystemServiceRequestToChangeRenderingMode -sceVisionManagerClose -sceKernelDebugGetSdkLogText -sceGnmDriverInternalRetrieveGnmInterfaceForResourceRegistration -sceEditMp4Unite -sceKernelIccGetPowerOperatingTime -sceHmdReprojectionStopLiveCapture -sceRazorCpuFiberSwitch -sceAudioPropagationSourceCalculateAudioPaths -scePlayerSelectionDialogUpdateStatus -sceGameLiveStreamingCheckCallback -sceNpTrophy2SystemAbortHandle -sceContentSearchGetContentLastUpdateId -sceNpSnsIntFbGetTitleInfo -sceNetBandwidthControlGetPolicy -scePlayReadyReset -sceHttpSetChunkedTransferEnabled -sceAudioOut2ContextAdvance -sceNpTrophySystemGetTrpTrophyConfig -sceFontGraphicsFillPlotSetMapping -sceSocialScreenDialogInitialize -sceFontDestroyWritingLine -sceNpTrophyIntGetTrpIconByUri -sceCamera2Initialize -sceFiberSwitch -scePadVirtualDeviceDeleteDevice -sceAppInstUtilGetPrimaryAppSlot -sceShellCoreUtilPreNotifyOfGameLiveStreaming -sceKernelMmap -sceShellCoreUtilIsEyeToEyeDistanceAdjusted -sceAc3EncCreateEncoder -sceVisionManagerGetHitCountOfRegisterUserData -sceSaveDataDirNameSearch2 -sceNpStrncpyToBuf -sceRandomGetRandomNumber -sceNetAccept -_sceNpManagerReallocImpl -sceFiosDLLInitialize -sceUserServiceSetThemeWaveColor -sceLibcPafMspaceMemalign -sceVnaNotifyStatus -sceKernelIsAssistMode -sceNpManagerIntGetUserList -sceSaveDataGetAutoUploadRequestInfo -sceNpAuthSetTimeout -sceNpUniversalDataSystemDestroyRecordObject -sceImeKeyboardClose -sceGameLiveStreamingGetSocialFeedbackMessages -sceNetConfigWlanGetDeviceConfig -scePigletHeapGetInfo -sceSystemServiceActivateHevcSoftStart -sceSaveDataManualDelete -scePadSetFeatureReport2 -sceGnmDebuggerHaltWavefront -sceVideoDecoderArbitrationInitialize -sceHttpSetSocketCreationCallback -sceUserServiceGetThemeBgImageWaveColor -sceNetConfigSetIfaddr6WithFlags -sceNpScoreGetGameDataByAccountIdAsync -sceUltQueueDestroy -sceHmdInternalGetDeviceStatus -sceShellCoreUtilGetSupportSiteURL -sceRegMgrNonSysSetInt -sceSystemServiceDisableSuspendConfirmationDialog -sceNpInGameMessageSendDataA -sceUserServiceGetIPDLeft -sceKernelResumeDirectMemoryRelease -sceAvSettingWaitCallback -sceWebBrowserDialogClose -sceNpBandwidthTestShutdownInt -sceCtrlpGetMode -sceHttpSetRequestContentLength -sceGnmDeleteEqEvent -sceNpGetSystemClockUsec -sceVideoCoreSyncAddStream -ScePsmMonoAssemblyOpenFull -sceVoiceQoSReadPacket -sceDepthHasCalibrationData -sceFontGlyphGetGlyphForm -sceMatMspaceDestroy -sceNpWordFilterDeleteRequest -sceVideoOutSysGetDeviceCapabilityInfoByBusSpecifier_ -scePadGetFeatureReport -sceNpManagerIntSetTimeout -sceKernelCancelEventFlag -sceGnmDebuggerWriteSqIndirectRegister -sceVisionManagerRequestHeadDetection -sceDepthInitialize -sceNpManagerIntRemovePlusMemberTypeCallback -sceAvSettingGetCurrentOutputMode -sceHmd2ReprojectionGetMirroringWorkMemorySizeAlign -sceFontGraphicsUndefineIndexedVertexesGlyphs -sceFiosFHPwrite -sceVoiceGetMuteFlag -sceHidControlGetSparkState -sceSystemStateMgrStartRebootTimer -sceVideoCoreGetPlayStatus -sceNetAllocateAllRouteInfo -sceLibcPafMspaceCheckMemoryBounds -sceNpAppLaunchLink2IntGetCompatibleTitleIdList -sceDebugGetSystemStatusBlob -sceVorbisDecPcmSeekPage -sceNpTrophyIntGetRunningTitles -sceVideoOutConfigureLayout -sceCesEucKrToUtf16 -sceNpWebApiDeleteServicePushEventFilter -sceNpWebApiRegisterPushEventCallback -sceRnpsAppMgrRegisterShellUI -sceVideoCoreInterfaceWaitCanvasFlip -sceSlimglClientMonitorServerEnd -sceKernelGetHwSerialNumber -sceMusicFwGetMuted -sceNpGetSdkVersion -sceUserServiceGetAppSortOrder -sceAudioOutExGetMonitorInfo -sceSystemServiceRegisterDaemon -sceAppInstUtilGetMainAppTitleIdForSP -sceRegMgrCntlStopHdd -sceVideoOutSetBufferAttribute2 -sceAvSettingIsVrSupportedByHdmiMonitorInfo2 -sceSystemServiceActivateMpeg2Init -pthread_timedjoin_np -sceGameCustomDataDialogUpdateStatus -sceNetConfigWlanInfraGetRssiInfo -sceCesSJisPutCode -pthread_mutexattr_getpshared -sceNpWebApi2PushEventUnregisterPushContextCallback -sceAvSettingCallbackFuncsInit -sceShareFactoryUtilBackToGameFromShareFactory -sceAppInstUtilAppCancelGetAllAppSize -sceDataTransferTargetRequestGetUsers -sceNpWebApiUnregisterExtdPushEventCallback -scePlayReadyLicenseGetExpirationTime -scePadTrackerReadState -sceAgcDriverGetPaDebugInterfaceVersion -sceBgftServiceIntDownloadRestartTask -scePthreadKeyDelete -sceUserServiceInitializeForShellCore -sceShareUtilityAdvanceWakeUpShareMenuForShareContent -sceAudioOutGetLastOutputTime -sceVoiceChatRegisterHandlers -sceS3dConversionOpen -sceDbgGetModuleList -sceCustomMusicCoreBgmOutput -scePerfPmcReset -sceFontGraphicsAgcDrawupFillTextureImage -sceDeci4hDrfpGetOption -sceRegMgrSrvCnvRegionStr -sceSslDisableVerifyOption -sceRudpGetNumberOfPacketsToRead -sceAgcDcbClearState -sceAgcAcbDispatchIndirectGetSize -sceFontSetScriptLanguage -sceAvSettingOpenLoopbackBuffers -sceMusicPlayerServiceReceiveEvent -sceFontGetCharVariationGlyphCode -sceHmdGetEyeStatus -sceLncUtilIsActiveCdlg -sceSaveDataGetBoundPsnAccountCount -sceVdecswGetHevcPictureInfo -sceMusicCoreServerTryLoadCore -sceKernelIsDisableRazor -sceNpSnsIntYtRefreshMasterToken -scePrecompiledShaderEntries -sceDbgClearHardwareBreakPoint -sceVshAvcapGetStaticInfo -sceAmprAmmGiveDirectMemory -sceNpScoreGetBoardInfoAsync -sceKernelGetEventFflags -sceNpTrophySystemBuildTitleIconUri -sceDebugDestroyScratchDataArea -scePlayReadyCdmiDestroyMediaKeys -sceNpTusAddAndGetVariableAsync -pthread_attr_setcreatesuspend_np -sceKernelGetResidentCount -memcpy -sceAjmModuleRegister -sceSystemServiceSetNoticeScreenSkipFlag -sceNetSocket -sceUserServiceGetPbtcMode -sceTsGetAvailableBW -sceNpTusGetMultiUserVariableForCrossSave -scePadGetBluetoothAddress -sceNetDhcpdStart -scePerfTracePmStart -sceNetConfigWlanAdhocSetExtInfoElement -sceNpAsmClientGetCacheControlMaxAge -sceBgftServiceDownloadStartTaskAll -sceGnmValidationRegisterMemoryCheckCallback -sceAudioOut2LoContextGetQueueLevel -sceVrTrackerUnregisterDevice -pthread_switch_add_np -scePlayReadyMemFree -sceGnmSqttSelectTarget -sceMouseGetDeviceInfo -sceUltSemaphoreAcquire -sceNpPush2PollUserPresenceOfflineEvent -sceVoiceSetVolume -sceUserServiceGetParentalContentControl -sceKernelClockGettime -sceDataTransferTargetAbortDeactivate -sceNetDuplicateIpStop -sceGpuTraceParametersSetMemorySize -sceVnaSetLanguageSettings -sceMusicPlayerServiceRemoveTrackEntry -sceVideoOutSysModeIsVr -sceGnmSpmSetDelay -scePlayReadyDomainCertEnumFini -sceNetResolverConnectDestroy -sceVnaUtilGetSupportedLanguageList -sceAvSettingSetHdcpMode -sceNpPush2CreateUserContext -sceVnaGetSupportedLanguageInfo -sceNetPppoeStart -sceSaveDataDeleteBackupData -sceGameCustomDataDialogOpenA -sceAudioOutSetConnectionsForUser -sceVnaGetFeedbackStatus -sceFsBindPackages -sceCameraSetHue -sceDevUsbInitHost -sceAgcDcbRewindGetSize -sceCesUcsProfileInitEucJpX0208Ss2 -sceBgftServiceIntPatchGoGetState -sceNetConfigSetIfaddr6 -sceGnmGetOwnerName -sceProprietaryVoiceChatHelperSetVoiceChatState -sceKernelStopUnloadModule -sceFiosStat -sceGnmGpuPaDebugEnter -sceGnmSqttWaitForEvent -sceCesRefersUcsProfileCp861 -sceDebugIpmiGetClientKidList -sceMbusIsBgmProhibited -scePlayReadyBufferInitWithData -sceVencSetReferenceFrameInvalidationConfig -sceVideoRecordingCopyBGRAtoNV12 -sceKernelIsDevKit -sceUserServiceGetLoginFlag -sceShareGetCurrentStatus -sceNetConfigDelRoute -sceAudioOutOutput -sceFsExfatMkfsExternalHdd -sceDataTransferTargetRequestEndTransfer -pthread_resume_user_context_np -sceVideoOutSysCursorRelease -sceDebugWriteProcessMemory -sceHmd2Terminate -sceKernelSetAppState -sceNpSnsIntLinkedStatus -sceCesIso2022UcsContextInitCopy -sceSslSetMinSslVersion -sceCesUtf32ToSbc -sceMbusDebugAcquireControlWithStateFlag -sceDtcpIpByteSeekAsync -sceKernelGetQafExpirationTimeNotbeforeForRcmgr -sceDebugDestroyPerfScratchDataArea -sceNpManagerIntClearUsedFlag -sceSharePlaySetMode -sceNpGriefReportReadReportItem -sceNpWebApi2PushEventDeletePushContext -sceHmdInternalAnotherScreenClose -scePngDecDelete -sceKernelGetCpuUsageProc2 -sceJpegEncEncode -sceVisionManagerGetResultOfFindPad -sceShellCoreUtilFormatHdd -sceAgcDriverSuspendPointSubmit -sceAjmInstanceGetSize -sceAudio3dReportRegisterHandler -sceUserServiceSetUserGroupName -sceKernelGetModuleInfo2 -sceAgcDcbSetMarker -sceAgcDcbSetShRegisterDirectGetSize -sceCameraAccGetData -sceGnmDrawInitDefaultHardwareState175 -sceKernelRemoveExceptionHandler -sceNpSnsDailymotionDialogUpdateStatus -scePfsGetUncompressedSize -sceRudpGetRemoteInfo -sceKernelDebugGetPrivateLogText -sceConvertKeycodeGetCharacter -sceNpUInt64ToStr -scePadReadExt -sceMbusDumpProcMediaInfo -sceNpManagerIntParseJsonUserInfo -sceCamera2SetAttribute -sceVrTrackerInit -sceNetConfigWlanApStart -sceNetConfigEtherSetLinkMode -sceNpGetNavSdkVersion -sceGameLiveStreamingSetInvitationSessionId -sceAgcBranchPatchSetElseTarget -sceLncUtilRegisterCdlgSharedMemoryName -sceNpManagerIntGetOnlineIdByAccountId -sceFsCheckSingleUser -sceFsInitUmountDownloadDataOpt -sceNpUniversalDataSystemEventPropertyArraySetUInt64 -sceDebugReadProcessMemory -sceValidationGpuDisableDiagnostics -sceHttpParseStatusLine -sceUserServiceGetGlsAnonymousUserId -sceAudio3dPortGetBufferLevel -sceNpManagerStartVsh -sceKernelReadv -sceNpUniversalDataSystemIntRecordArraySetInt64 -sceAgcSetShRegIndirectPatchSetAddress -sceMatAlloc -sceMouseInit -sceAmprAprCommandBufferDestructor -sceLncUtilReleaseCpuBudgetOfInGameStore -sceKernelGetBackupRestoreMode -sceSystemServiceGetAppCategoryType -sceAudioOut2LoTerminate -sceAppContentSmallSharedDataMount -scePadGetVersionInfo -sceLibcPafMspaceMalloc -sceLncUtilReleaseCpuBudgetOfExtraAudioDevices -sceSlimglClientStartIPC -sceKernelNanosleep -sceRegMgrPrivateStorageStart -sceSaveDataGetSaveDataMemory2 -sceHmd2ReprojectionEnableMirroring -sceHmd2ReprojectionSetParamWithBuffer -sceHmdInternalCrashReportReadData -sceNpTusGetMultiSlotDataStatusAsync -sceHttp2ReadData -sceKernelGetKqueueFromEqueue -sceAmprAmmCommandBufferMultiMapWithGpuMaskId -sceKernelAprResolveFilepathsToIdsAndFileSizesForEach -sceUserServiceSetGlsTtsVolume -sceImeBackendModeCaretPrevious -sceNetCtlApAppInitWpaKey -sceFontGraphicsUpdateGlyphFill -sceKernelAddWriteEvent -sceCompositorWaitEndOfRendering -sceShellCoreUtilSignalUserInput -sceRemotePlayClientInitialize -sceFaceAgeRangeEstimate -sceKernelDeleteSema -sceCesRefersUcsProfileIso8859_14 -sceMusicPlayerServiceInsertTrackEntry -sceFontGlyphRefersOutline -sceSslGetNameEntryCount -sceSdmaCopyWindowT2TNonBlocking -sceFiosCacheFlushFileSync -sceAudioOutGetSystemState -sceFontGraphicsSetupSlantShift -sceUserServiceGetPbtcPlayTimeLastUpdated -sceGnmDriverTraceInProgress -sceKernelAddHRTimerEvent -sceNpUniversalDataSystemIntCreateRecordData -sceCesRefersUcsProfileCp869 -sceKernelSetVmContainer -sceAudioOut2ContextGetQueueLevel -sceDeci4hDrfpRemove_fuse -sceRemoteplayIsRemoteOskReady -sceAudiodecCpuInternalQueryMemSize -sceHttpCacheSystemClearAll -sceAppContentInitialize -sceUserServiceSetPbtcThursdayDuration -sceUsbdUnlockEvents -sceIduGetEnv -sceCesEucJpToUtf32le -sceLncUtilKillAppWithReason -sceNetResolverStartNtoaMultipleRecords -sceCtrlpGetAvailPlayBufferNum -sceDebugGetApplicationInfo -sceLoginMgrServerDestroyUser -sceUsbdReleaseInterface -sceVencCoreCreateEncoder -sceHmdInternalGetDeviceInformation -sceAvSettingSetHdmiGamutMetadata_ -sceCesGbUcsProfileSetUdaMapping -scePlayGoRequestNextChunk -sceCameraGetCalibrationData -sceUserServiceGetUserStatus -sceFontGraphicsBeginFrame -sceAcmBatchWait -sceUsbdKernelDriverActive -sceWebBrowserDialogSetZoom -sceShellCoreUtilGetHidConfigNum -sceUsbStorageClearFakeWriteProtection -sceGnmDebugReset -sceCesMbcsStrToUtf16Str -sceSlimglCompositorCreateIndirectRenderTarget -sceVnaSetVoiceDataCollectionSettingsAsync -sceKernelIccSetCpuInfoBit -sceKernelWriteRemapIntoPrtCommand -sceAmprCommandBufferGetBufferBaseAddress -sceImeOpen -sceSaveDataDeleteTitle -sceOpusDecCancel -sceSaveDataCheckBackupData -scePadSetLightBar -sceUsbdControlTransfer -pthread_rwlock_reltimedwrlock_np -sceCompositorIsReady4K -sceNpPushIntUnregisterNotificationPacketCallback -ScePsmMonoThreadSuspendAllOtherThreads -sceCameraGetSaturation -sceOpusSilkEncCreateEx -sceUserServiceSetPbtcSaturdayDuration -sceNpEntitlementAccessRequestConsumableEntitlementInfo -sceGnmLogicalCuMaskToPhysicalCuMask -scePngEncDelete -sceUserServiceSetPbtcFridayDuration -sceDepth2SaveInternalBuffers -sceUltQueuePop -sceAudioOutMasteringTerm -_sceUltConditionVariableOptParamInitialize -pthread_cleanup_pop -sceMatReallocBegin -sceVencCoreSetPicParams -sceGnmValidateGetDiagnosticInfo -sceNpPartyJoin -sceVideoRecordingInit -pthread_cond_destroy -sceProfileCacheGetAvatar -sceVoiceQoSInitHQ -sceCesUtf8StrToMbcsStr -sceKernelStreamWriteRead -scePerfPmcSelectEventProc -sceMouseOpen -sceBgftServiceIntDebugPlayGoSnapshotByTitleId -sceAjmInstanceDestroy -sceNetNtohs -sceNpSnsFacebookDialogGetStatus -sceNpSessionSignalingGetConnectionFromNetAddress -sceNpScoreGetRankingByNpIdAsync -sceNpTrophySystemBuildNetTrophyIconUri -sceUserServiceSetGlsBroadcastUiLayout -scePlayReadyReaderCommit -sceUserServiceGetDiscPlayerFlag -sceNpAuthGetIdTokenV3 -sceRemoteplaySetProhibition -sceNpUtilGetNpLanguageCodeStr -sceNpAsmDeleteRequest -sceUltReaderWriterLockLockWrite -sceNpJsonParseBuf -scePsmKitFontConfigGetFontPath -sceEsvmEngineMediaKeySessionSetEventHandler -sceNpManagerIntGetGameTicket -sceSaveDataTransferringMountPs4 -sceDebugAttachProcess -sceNpTrophySystemGetTrophyIcon -sceLibcHeapUnsetTraceMarker -sceAgcDcbDrawIndexMultiInstanced -sceFiosDateToComponents -scePlayerReviewDialogTerminate -sceVrServiceDialogUpdateStatus -sceAgcDcbSetBaseIndirectArgs -sceFontGlyphRenderImage -sceSystemServiceEnableSuspendConfirmationDialog -sceVideodec2QueryComputeMemoryInfo -sceDataTransferRequestRebootAuthPS4 -sceShellCoreUtilClearPsnAccountInfo -sceNpTrophySystemGetTrophyConfig -sceNpGriefReportWriteReportItem2 -sceKernelGetModuleInfoForUnwind -sceTextToSpeechGetAudioDataImpl -sceNpIsDevelopmentMode -sceNetCtlUnregisterCallback -sceAudioOutGetInfoOpenNum -sceHmdReprojectionStartCapture -sceVnaGetVoiceOskOptInStatus -sceMbusGetDeviceInfo_ -sceLibSecureCryptographyDeleteContext -sceKernelStreamWriteWrite -sceIduUtilSystemVersion -sceCesMbcsStrGetUtf32Len -pthread_attr_getschedpolicy -sceAvSettingNotifyProcessPostResume -scePthreadAttrGetstackaddr -sceImeVshSetSelectGeometry -sceNetConfigDelDefaultRoute -sceFontOpenFontFile -sceVshAvcapCreateSyncer -sceSslFreeSslCertName -sceLncUtilIsShellUiFgAndGameBgCpuMode -sceUserServiceSetNotificationSettings_2 -sceMbusResolveByHandle -sceMbusDebugAcquireControlWithState -sceCesRefersUcsProfileGbT1988Tilde0x7e -sceMusicCoreServerTriggerEventSync -_sceNpHeapStrndup -scePerfTraceAprNameStart -sceImeBackendGetCandidateListSize -sceVoiceChatRequestLeaveGameSessionVoiceChatChannel -sceKernelDebugSpawn -sceConvertKeycodeGetCharacterFromKeyboardData -sceAudioInGetGain -sceHmdInternalGetDefaultLedData -sceAudioPropagationRoomDestroy -sceM4aacEncGetContext -sceMbusSetDuckingSetting -sceSaveDataDelete -sceLoginServiceRequestDevices -sceUsbdGetActiveConfigDescriptor -sceKernelGetResourceLimit -sceFontFtSupportPfr -sceSdmaFlushAll -sceOpusSilkEncCancel -sceSpPthreadMutexInit -sceNpScoreSetTimeout -sceFontGraphicsRegionInitCircular -sceSaveDataCheckSaveDataVersionLatest -sceKernelIsGenuineTestKit -sceAudiodecDecode2WithPriority -_sceNpHeapStrdupImpl -sceLoginDialogOpen -sceAppContentDownload0Shrink -sceApplicationSetApplicationFocus -sceCesBig5ToUtf8 -scalblnf -sceDataTransferTargetRequestAbortSearch -sceNpDeleteRequest -sceMoveSetLightSphereForTracker -sceCesRefersUcsProfileIso8859_5 -sceNpMatching2SetRoomDataInternal -scePerfPmcSdfSetCounter -sceNpManagerIntAddSigninStateCallback -sceAgcDriverRequestCaptureStart -sceUltGetReaderWriterLockInfo -sceUserServiceGetGlsTtsVolume -sceAgcDriverUnregisterAllResourcesForOwner -sceVrTracker2GetPlayAreaBoundaryGeometry -sceCesGbToUcs2 -scePthreadBarrierattrInit -sceVideoOutGetPortStatusInfo_ -sceVideoCoreInterfaceSetCanvasId -sceUsbdControlTransferGetSetup -sceAudio3dPortGetList -sceNetEpollCreate -sceUlpMgrGetNetmpListenSock -pthread_rwlock_tryrdlock -sceFsSetAttribute -sceMusicFwGetLoop -sceSpKernelGettimeofday -sceApplicationSpawnCommonDialog -sceDataTransferTargetRequestGetTitles -sceSysCoreGetEventCount -sceKernelWriteWriteCounterCommand -sceAjmBatchJobDecodeSplit -sceNpAuthWaitAsync -sceNetCtlApDialogOpen -sceAvSettingSimulateProcessOutputModeArbitration_ -scePigletSetConfiguration -sceHmdGetDistortionWorkMemoryAlignFor2d -scePlayReadyLicenseCount -sceSaveDataGetSaveDataCount -sceAgcDriverCwsrSuspendAcq -sceShellCoreUtilExecuteCrashReport -sceAgcDriverHp3dLockStart -sceIduUtilTerminate -sceDebugInitForTest -sceSaveDataManualDownload -sceSaveDataDelete5 -sceVideoOutUnregisterBufferAttribute -sceFontDestroyString -scePsmGetConfiguration -sceRudpSetEventHandler -sceHmd2ReprojectionGetPredictedDisplayTime -sceFsWsFsck -sceG2PDialogInitialize -sceNpUtilGetSystemLanguage -sceGnmValidateDisableDiagnostics -sceShellCoreUtilCrashReportRequestCancel -sceSystemServiceIsBgmPlaying -sceClPthreadMutexUnlock -sceLncUtilKillApp -sceDtcpIpReadAsync -sceDataTransferTargetAbortSendSsoNew2Old -sceAppContentTemporaryDataGetAvailableSpaceKb -sceFontCharacterLooksWhiteSpace -_sceLibcRealloc -sceGameLiveStreamingSetLinkCommentPreset -sceVideoOutGetFlipStatus -sceCesUhcToUtf8 -sceAgcUpdateInterpolantMapping -scePerfPmcNbStart -sceKernelReadDipswData -sceNpIntGetGamePresenceStatus -sceVideoOutCursorSet2xMagnify -sceNpIpcClientTerm -sceRnpsAppMgrCreateUrlRequest -sceSlimglStartServer -sceUserServiceSetAccessibilityKeyremapData -sceApplicationFinalize -sceRazorCpuDisableFiberUserMarkers -sceFsTransactionSaveDataMount -sceDseehxInit -sceSaveDataRebuildDatabase -sceVideoCoreInterfaceGetCanvasVideoBufferSize -scePthreadMutexattrGetprioceiling -sceCesEucJpUcsProfileSetSbcs -sceAppInstUtilJson -sceCoredumpGetThreadContextInfo -sceSdmaEndQueueMode -sceNpEntitlementAccessPollServiceEntitlementInfo -sceBgftServiceDownloadQueryTask -sceNpSignalingGetPeerNetInfoA -sceLibcHeapGetAddressRanges -sceFiosDebugDumpFH -sceUserServiceSetNpAccountUpgradeFlag -sceAjmBatchJobSetGaplessDecode -sceNetApctlStart -sceFaceTrackerInitialize -scePthreadBarrierattrGetpshared -sceAjmBatchJobEncode -sceOpusCeltDecDestroy -sceNpJsonParseBufInit -sceKernelDeleteAIO -sceFiosOpWait -sceFontSetTypographicDesign -sceLncUtilGetAppIdOfRunningBigApp -sceTextToSpeech2Terminate -sceKernelFcntl -sceFiosFHReadv -sceUserServiceSetPbtcMondayDuration -sceVoiceQoSWritePacket -sceMbusSetScratchDataUpdatedEventMask -sceDebugGetSyncWaiterListForEQueueFd -sceSulphaGetDefaultConfig -scePerfTraceAprNameAddBufferNotifyEvent -sceImeBackendGetCandidateList -sceSystemServiceParamGetString -sceNpTrophySystemGetUserFileInfo -sceFontSupportSystemFonts -sceMusicCoreServerSetRepeatMode -sceNpManagerIntRemoveActiveSigninStateCallback -sceHmdInternalDfuClose -sceNpManagerIntInitInternal -sceSocialScreenOpenSeparateMode -sceCtrlpRecStart -sceAppInstUtilAppUnInstall -sceAudioInInit -sceDbgAddExternalTriggerEvent -sceSysUtilSendSystemNotificationWithDeviceId -sceShareRegisterContentEventCallback -sceUserServiceGetTopMenuNotificationFlag -sceNpSnsIntCreateRequest -scePigletReleaseSystemMemoryEx -sceFontGraphicsAdjustFillRadialGradient -sceHttpSetAutoRedirect -sceVideoOutClearFlipMaster -sceKernelGetUtokenWeakenedPortRestrictionForRcmgr -scePlayReadyCdmiGenerateRequest -sceNpPartyGetMembers -sceMouseExtensionSetConfig -sceVnaUtilInitialize -sceUserServiceGetVoiceRecognitionLastUsedOsk -sceCompositorSetFlipCommand2 -sceRnpsAppMgrRecoverUfsImage -sceUlpMgrVshFinalize -sceKernelLwfsSetAttribute -sceVideoOutVrrUnpegFromFixedRate -sceRemotePlayClientShowHomeScreen -scePthreadMutexattrSetgen -sceNpJsonParse2 -sceShareSetScreenshotOverlayImage -sceCompositorGetSystemAddress -sceImeGetPanelPositionAndForm -sceAvSettingNotifyProcessResume -sceNpLookupNpId -sceAgcDebugRaiseException -sceUserServiceGetPbtcThursdayHoursStart -scePthreadYield -scePlayReadyProfilePause -sceMoveSetLightSphere -sceKernelGetParentApp -sceCamera2GetHue -sceFiosCachePrefetchFile -sceAgcDriverAllocateToolMemoryForGpuReset -sceLoginServiceInitialize -sceAgcQueueEndOfPipeActionPatchType -sceShellCoreUtilUnmountAppRight -sceVdecCoreTrySyncDecodeWptr -sceVnaGetWakeupPhraseInfoCount -scePadVrControllerReadCombinedState -scePlayReadyCdmiGetConfiguration -sceAjmBatchJobGetInfo -sceNetShowRoute6WithMemory -sceNetGetpeername -sceAppContentGetDownloadedStoreCountry -sceSslGetCaCerts -sceNpTusGetFriendsDataStatusForCrossSave -sceDbgKeyboardOpen -sceContentSearchSearchContent -sceUserServiceGetVolumeForGenericUSB -_sceUltQueueDataResourcePoolCreate -sceNpEntitlementAccessGetAddcontEntitlementInfoList -sceAgcCbSetUcRegistersDirectGetSize -sceDeci4hDrfpReleaseBuffer -sceNpUniversalDataSystemIntRecordObjectSetUInt32 -sceUpsrvGetSystemExUpdateTaskState -sceRazorCpuStartCaptureInternal -sceNpTrophyRegisterContext -sceShellCoreUtilSetImposeStatusFlag -sceNpSetNpTitleIdVsh -sceOpusCeltEncInitialize -sceFsISSchedUnmapStat -sceSslSetAlpn -sceGnmDriverCaptureInProgress -sceZlibInflate -sceUserServiceIsUserStorageAccountBound -sceClPthreadJoin -sceDebugGetWaitingListOfUltCondvar -sceFontSetEffectSlant -sceUsbdInit -sceHttpCacheRetrieveWithMemoryPool -sceNpGetAccountLanguageA -sceMusicCoreServerSetTrackList -_sceNpHeapFreeImpl -sceImeSetCandidateIndex -sceKernelGetResourceOne -sceAgcDcbResetQueue -sceAudioOutExGetLastOutputTime -sceSystemGestureGetTouchEventByIndex -sceNetShutdown -sceSdecGetVersionSw -sceUpsrvUpdateDoUpdateWithHandler -sceEsvmEngineMediaKeySessionGenerateRequest -sceUpsrvUpdateCheckDoCheckSystemBeta -sceFsDevpfsCreateForVSH -sceMbusDebugEncodeApplicationStartupInfo -sceNpIdMapperAccountIdToOnlineId -sceAppContentAddcontEnqueueDownloadSp -sceMusicPlayerServiceGetPlayStatusExtension -sceVrTrackerGpuSubmit -sceAudioOut2Set3DLatency -sceNpIntToHex -sceGameCustomDataDialogGetResultA -sceCesUtf32beToSbc -sceDebugGetJobManagerInfo -sceFiosOverlayAdd -sceImeSetTextGeometry -sceNpManagerIntGetClientCredentialAccessToken -sceNpWebApiIntCreateServicePushEventFilter -sceCamera2Stop -sceWebBrowserDialogSetCookie -sceNgs2RackQueryInfo -sceUserServiceGetKeyboardType -sceNpPartyGetMembersA -sceHeadTrackerStop -sceNgs2ModuleEnumConfigs -sceFaceTrackerStopTracking -sceHttpSetResolveTimeOut -sceUsbdTryLockEvents -sceNpCmpNpIdInOrder -sceNpStrToUInt64 -sceGpuTraceParametersSetGroup -sceUserServiceSetGlsAnonymousUserId -sceVoiceSetBitRate -sceAudioOutSysGetHdmiMonitorInfo -sceShellCoreUtilAcquireRemotePlayCpuBudget -scePerfPmcSdfStop -sceShellCoreUtilPfAuthClientConsoleTokenClearCache -sceNpAsmClientGetServiceIdInfo -sceUserServiceSetTopMenuNotificationFlag -sceNpWebApi2SetRequestTimeout -sceNpRemotePlaySessionSignalingLeaveSession -sceRegMgrBackupPullDataForPS4 -_sceUltQueueOptParamInitialize -sceHmdReprojectionQueryGarlicBuffAlign -scePatchCheckerRequestCheckPatch -sceImeClose -sceAppInstUtilAppUnInstall2 -sceKernelEventLogWrite -sceDebugGetProcessTimeCounter -sceNpAppLaunchLinkIntFinalize -sceSysUtilSendAddressingSystemNotification -sceDbgLoggingHandler -sceKernelGetCpuUsageAll -sceKernelGetUtokenDataExecutionForRcmgr -sceBgftServiceIntUploadQueryTask -sceAudiodecDeleteDecoder -sceAppInstUtilAppUnInstallForMultiInstall -sceNpGlobalHeapInit -sceVoiceQoSGetStatus -sceNpAsmClientGetRelatedGameNpTitleIdsResult -sceSystemServiceGetAppId -sceLibSecureCryptographyGetBlockSize -sceMusicCoreServerGetPlayStatus_vsh -sceUpsrvGetCompletedTaskId -sceUserServiceGetEventFilterTeamEvent -_sceLibcMallocUsableSize -sceNetDuplicateIpStart -sceVrTracker2QueryMemory -sceGameLiveStreamingSetDefaultServiceProviderPermission -sceUserServiceSetEventUiFlag -_sceNpIpcReallocImpl -sceSaveDataInitialize3 -sceVorbisDecPcmSeekPageLap -sceKernelWriteUnmapCommand -_sceKernelRtldThreadAtexitIncrement -scePrintDeciHeader -sceCamera2SetSaturation -sceEditMp4Initialize -sceMusicFwIsPlaying -sceFontGraphicsUpdatePositioning -sceNgs2SystemEnumRackHandles -sceHmd2ReprojectionQueryBufferSizeAlign -sceUserServiceSetSystemLoggerHashedAccountIdParam -sceKernelIccGetCountTime -sceNpTrophySystemDestroyContext -sceAudioInSetSparkParam -sceVideodecDeleteDecoder -sceNpTcsIntDownloadData -sceSystemStateMgrVshAutoUpdate -sceIduUtilGetAppVersion -sceNetConfigWlanSetDeviceConfig -sceUsbdRefDevice -sceSharePlayServerLock -sceVideoOutGetEventId -sceM4aacEncCreateEncoder -sceNpManagerIntCheckNpStateA -sceCameraIsValidFrameData -sceFiosOpGetAttr -sceVideoOutSubmitFlip -sceNpPush2RegisterNotificationCallback -sceNgs2RackCreateWithAllocator -sceHttpsSetSslVersion -sceKernelSetProcessPropertyString -sceAmprAmmMeasureAmmCommandSizeMultiMap -sceFiosDirectoryCreateWithModeSync -pthread_mutexattr_getkind_np -sceNpPartySendBinaryMessage -scePngDecParseHeader -sceNpSignalingGetLocalNetInfo -sceVoiceQoSInit -sceCamera2GetAutoWhiteBalance -sceCompositorPrivacyMaskPushArea -sceNpPushRegisterExtendedDataFilter -sceHmdInternalSetHmuPowerControl -pthread_atfork -sceAgcDriverRegisterDefaultOwner -sceNpManagerIntGetActiveSigninState -sceAppInstUtilGetInstallProgressInfoForMultiDisc -sceMouseExtensionGetCursor -sceMbusReenableBgmForShellUi -sceGnmGetResourceShaderGuid -sceUserServiceGetIPDRight -sceValidationGetVersion -sceNpSessionSignalingCreateJoinActivate -_sceLibcPosixMemalign -sceNetCtlCheckCallbackForLibIpcInt -sceVideoOutSysUpdateDisplayParameter -sceSrcUtilityGetPriority -sceImeDialogForTestFunction -sceCameraAudioClose -sceShellCoreUtilFormatExternalHdd -sceSaveDataDebugRemoveSaveDataRoot -sceNpSessionSignalingGetGroupFromSessionId -sceGnmSqttFini -sceAudio3dPortCreate -sceNpLookupNetConvertJidToNpId -sceNetCtlRegisterCallback -sceNpWebApiGetConnectionStats -sceKernelGetACInfoAllForCoredump -sceVorbisDecClear -sceGnmSetGsShader -sceKernelClose -sceHttp2SetPreSendCallback -sceAmprCommandBufferClearBuffer -sceCameraGetProductInfo -sceAgcDriverTmpInitIdhs -sceAgcDriverSetWorkloadsActive -sceSystemServiceGetParentSocket -sceNetConfigDelDefaultRoute6 -sceFsWsFetchFileMetadata -sceSaveDataGetFormat -_sceLibcInitialize -sceDeviceServiceQueryDeviceInfo_ -sceAppInstUtilAppUnInstallAddcont -sceCesRefersUcsProfileIso8859_16 -sceTextToSpeech2Initialize -sceUserServiceGetPbtcTuesdayDuration -sceNpUniversalDataSystemIntRecordArraySetArray -sceVideoOutCursorEnable -sceSslUnloadCert -sceAgcDcbSetUcRegistersIndirectGetSize -sceFsUmountGamePkg -sceUserServiceCreateUser -ScePsmMonoGcSetHeapSizeLimit -sceGnmInsertThreadTraceMarker -sceUserServiceSetParentalDvd -scePthreadAttrSetstacksize -sceHmdInternalBindDeviceWithUserId -sceHttpCacheTerm -sceDepth2Submit -sceCesUcsProfileInitGb18030_2005 -sceNpAppInfoIntCheckAvailability -sceFiosArchiveGetMountBufferSizeSync -sceVnaCancelDownloadTts -sceVrTracker2SetCoordinateSystem -sceFiosStatisticsGet -sceOpusCeltEncEncodeFloatWithPriority -sceApplicationIsPrimaryProcess -scePthreadMutexattrSetkind -sceMbusGetDeviceInfoByConditionForDeviceService -sceNpTrophyIntNetSyncTitles -sceKernelCancelAIO -sceUserServiceGetFileBrowserSortTitle -sceUpsrvUpdateCheckDoCheckSystemExpBeta -scePlayerReviewDialogGetStatus -sceAgcCbSetShRegistersDirect -sceBgftServiceIntDownloadGetPatchProgress -sceSharePlayTerminate -sceVideoOutGetVideoOutModeByBusSpecifier_ -sceAvPlayerIsActive -sceNpServerErrorJsonParseInit -sceNpInGameMessageGetMemoryPoolStatistics -sceNpMatching2SignalingEstablishConnection -scePlayGoClose -pthread_attr_get_np -sceHmdSetupDialogUpdateStatus -sceUserServiceSetGlsBcTags -_sceNpIpcCreateMemoryFromPool -sceBackupRestoreUtilCancelGetRequiredSize -scePerfPmcL3Start -sceUserServiceGetPartyMuteList -sceVisionManagerGetWorkingMemorySize -scePerfTraceSpmStart -sceCesUcs2ToBig5 -sceRtcIsLeapYear -sceAvControlSetColorEffect -sceAgcDriverSubmitDcb -sceHmdInternalGetHmuSerialNumber -sceNetGetInterfaceStats -sceShellCoreUtilSetSystemBGWaveColor -sceFontGraphicsFillMethodInit -sceShellCoreUtilAccessibilityZoomUnlock -sceAgcDriverGetReservedDmemForAgc -sceAudio3dInitialize -sceFontGraphicsDrawupFillFlatColor -sceKernelDeleteFileEvent -_sceNpRealloc -sceGnmGetResourceUserData -sceGnmGetEqEventType -sceVideoOutOpen -sceLncUtilIsHostBoot -sceNpIpcEndRequest -scePadGetDataInternal -sceDeviceServiceTerminate -sceCesRefersUcsProfileIso8859_8 -sceUpsrvUpdateGetUpdateTaskMgrInfo -sceNpArchTerm -sceKernelIsDevelopmentMode -sceGnmDestroyWorkloadStream -scePlayerReviewDialogInitialize -sceNpEulaDialogCheckVersionAbort -sceFontFtSupportTrueTypeGx -sceRazorCpuEndArchiveFileAccess -sceKernelFchmod -sceKernelGetEventError -sceHmdGetDistortionMap -sceFontDettachDeviceCacheBuffer -sceLncUtilFinishSpecialResume -sceSpNetErrnoLoc -sceVencCoreMapTargetMemoryByPid -sceCesUtf32beToSJis -sceGameUpdateCreateRequest -sceVideodec2ReleaseComputeQueue -_sceNpIpcDefaultReallocImpl -pthread_rwlock_setname_np -sceNpAsmDeleteConnection -sceVdecCoreQueryFrameBufferInfo -sceCoredumpSetUserDataType -sceUserServiceGetSaveDataAutoUpload -sceVnaSetKeyPhraseCategoryEnable -sceVencCoreDeleteEncoder -sceAudioLatencyEstimationInitialize -sceCesUtf16leToMbc -sceSysUtilSendWebDebugNotificationRequest -sceShellCoreUtilNotificationCancelForIDU -sceKernelMapperSetPageTablePoolOccupancyNotificationThreshold -scePerfPmcSdfSelectEvent -sceHttpTryGetNonblock -sceSaveDataDialogProgressBarInc -sceKernelSetBaseModeClock -sceFaceAllParts -sceLncUtilRegisterDaemon -_sceUltUlthreadRuntimeOptParamInitialize -sceGnmUpdateVsShader -sceLncUtilAcquireCpuBudgetOfExtraAudioDevices -_sceNpIpcGetNpMemAllocator -sceHidControlDisconnectDevice -sceNpLookupPollAsync -sceS3dConversionClose -sceContentBinderInitialize -sceNetResolverConnectCreate -sceNpMatching2CreateJoinRoomA -sceNpManagerIntRemoveUserStateCallback -scePfsGetWorkBufferSize -sceAmprCommandBufferWaitOnAddress -sceUserServiceGetGlsAccessTokenUstream -sceBgftServiceDownloadRegisterTask -sceNpTusGetMultiUserVariableAVUserAsync -sceShellCoreUtilGetCrashReportInfoForBootStart -sceShellCoreUtilGetAppEnterButtonAssign -sceAppContentAddcontMount -sceVideoOutAddBufferHdrPrivilege -sceAudioInVmicSetMute -sceAudioInSetMode -sceKernelAprResolveFilepathsWithPrefixToIdsForEach -scePlayReadyNewDecryptContext -sceCustomMusicCoreGetBgmAuthorityStatus -_sceNpIpcMallocImpl -sceLncUtilIsSpeculativeLaunch -sceDeci4hDrfpWaitRes -sceDebugGetProcessResourceStatData -sceAmprCommandBufferGetType -sceAgcDcbJumpGetSize -sceUserServiceSetGlsAccessTokenNiconicoLive -sceAudio3dPortPush -scePssKeyboardGetUTF8Chars -scePerfTraceAmmAddBufferNotifyEvent -sceAppInstUtilRegisterDownload -sceAmprMeasureCommandSizeSetMarker -sceKernelAddReadEvent -sceSysUtilSendAddressingSystemNotificationWithUserName -sceVrTrackerNotifyEndOfCpuProcess -sceUsbdOpen -sceGnmSetHsShader -sceFiosArchiveMountWithOrder -sceMbusUserLogout -sceLoginMgrServerConvertToUserId -sceRtcSetCurrentDebugNetworkTick -sceVencCoreSetInputFrameByPid -sceVnaWaitReady -sceSocialScreenInitializeSeparateModeParameter -sceOpusCeltDecInitialize -sceNpRtcConvertToPosixTime -sceAgcDriverSetResourceUserData -sceUserServiceSetParentalContentControl -sceNpGriefReportDeleteClient -sceKernelGetCpumode -sceCameraSetConfig -sceFiosFileDelete -sceShellCoreUtilNotificationRequestedForIDU -sceNetCtlApRpGetInfo -sceFontTextSourceRewind -sceKernelGetCpuUsageProc -sceUserServiceGetPsnPasswordForDebug -sceFontStyleFrameGetResolutionDpi -sceVideoCoreAsyncAddStream -sceDebugIpmiGetServerDispatchInfo -sceNpGlobalHeapGetAllocatorEx -sceAudiodecDecodeWithPriority -pthread_attr_getdetachstate -sceSharePlayNotifyForceCloseForCdlg -sceBgftServiceIntDownloadRegisterTask -sceHmd2ReprojectionEnableVrMode -sceKernelFtruncate -sceNpFreeImpl -_sceNpAllocatorRealloc -sceSystemServiceActivateHevcAbort -sceUserServiceSetPbtcPlayTimeLastUpdated -scePktMgrSetUlpNtfPayloadCommonNotification -_sceNpIpcFreeImpl -sceHttp2SetTimeOut -sceBackupRestoreUtilDeleteBackupData -sceNpUniversalDataSystemPostRecordData -sceDepthSetPreFilterParameter -sceKernelWriteRemapCommand -sceAudioOut2MasteringGetState -sceAudiodecDeleteDecoderEx -sceCesUtf32leToUhc -sceShellCoreUtilGetVersionNumberOfCameraCalibrationData -sceKernelGetUtokenSaveDataRepairForRcmgr -sceFsUfsMkfsForSystem -sceAudioOutExConfigureOutput -sceVnaRequestDialogTts -sceFontGraphicsDrawupFillLinearGradient -sceFiosGetAllOps -sceAudioLatencyEstimationAddData -sceUserServiceGetNpAccountUpgradeFlag -sceNpRegisterStateCallback -sceHeadTrackerStart -sceNpGetUserIdByAccountId -scePerfTraceDeleteBufferNotifyEvent -sceNpInGameMessagePrepare -sceAgcDriverUserDataGetPacketSize -sceS3daSendData -sceKernelTerminateProcess -sceFontSetGraphicsErrorCallback -sceKernelSetFsstParam -sceUserServiceGetHoldAudioOutDevice -sceNpWebApiIntRegisterServicePushEventCallback -sceKernelReserve2mbPage -sceAudiodecInitLibrary -sceHmdDistortionGetWideNearCorrectionCommand -sceImeKeyboardGetInfo -sceIduUtilSetSettingBin -sceCompanionHttpdGetEvent -sceScreenShotGetDrcParam -sceAudioPropagationSystemSetRays -sceLibcMspaceFree -sceAgcDriverSetupAsyncGraphics -sceRegMgrToolDataCheckGet -sceAgcDcbWaitRegMem -sceMoveTrackerPlayGetImages -sceHttpDbgSetPrintf -sceKernelGetUtokenUseSoftwagnerForRcmgr -sceSystemServiceHideSplashScreen -sceAudioInDeviceOpen -sceFiosPathcmp -sceFontGraphicsSetVertexesGlyphScale -sceSaveDataDeleteProspero -sceOpusSilkEncDestroy -pthread_rwlockattr_getpshared -sceNpMatching2SearchRoom -scePlayReadyFreeDecryptContext -sceDeci4hDrfpOpendir -sceSystemServiceGetTitleWorkaroundInfo -sceFaceTrackerRegisterUser -sceNpSnsFacebookGetAccessToken -scePlayerReviewDialogGetResult -ScePsmMonoStringToUtf8 -pthread_mutexattr_getgen_np -sceUsbdEventHandlerActive -sceUserServiceGetPbtcWednesdayDuration -sceNpWebApiGetHttpResponseHeaderValue -sceSaveDataUmountWithBackup -scePthreadSemDestroy -sceShellCoreUtilTriggerPapcRecalculation -sceShellCoreUtilGetProgressOfFormatExternalHdd -sceNpPushUnregisterExtendedDataFilter -sceUlpMgrVshUninstallCmd -sceKernelMemoryPoolCommit -sceNpTusSetDataA -sceUpsrvUpdateStartUpdateTask -sceCesUtf32leToMbc -sceVdecswGetDecodeOutput -sceApplicationNotifyCoredumpRequestEnd -sceNpUniversalDataSystemDestroyEventPropertyArray -sceFontWritingRefersRenderStep -sceSystemServiceActivateMpeg2GetStatus -sceNgs2VoiceGetOwner -scePthreadSetprio -sceDiscMapBitmapInfoServerStop -sceS3daClose -sceFsISSchedConfigCurrentThread -sceAgcAcquireMemSetEngine -sceNpRtcFormatRFC3339 -sceVideoOutGetCurrentOutputMode_ -sceGnmInsertPushMarker -scePadSetVibrationMode -sceLncUtilGetCdlgStatus -sceKernelInitializeDipsw -sceDataTransferTargetAbortTransferSpeed -sceHeadTrackerUpdateDebug -sceUserServiceGetGlsIsMuteEnabled -sceUserServiceSetPbtcThursdayHoursEnd -sceFontGraphicsUpdateColorRates -sceContentBinderIsUpdated -sceShellCoreUtilGetSystemBGWaveColor -sceUserServiceGetNpLoginId -sceEditMp4GetStatus -scePlayReadyDomainLeaveProcessResponse -sceAgcDriverRegisterResource -sceFontGraphicsFillRatesSetMapping -scePthreadMutexIsowned -sceLibcMspaceDestroy -sceNpUtilityInit -sceNpUniversalDataSystemIntRecordObjectSetInt32 -sceAppInstUtilGetAppMoveProgressInfo -sceFontGraphicsRegionInit -sceDebugIpmiGetTidListByDump -sceCesMbcsStrGetUcs2Len -sceVnaStartKeyPhraseDetection -sceSaveDataTransferringMount -sceKernelDebugPackageCorrupted -sceKernelGetCompiledSdkVersion -sceAudioOutAttachToApplicationByPid -sceFontCreateGraphicsDevice -scePlayReadyDomainLeaveGenerateChallenge -sceDbgEnableExtraHeapDebugInfo -sceVideoOutHdmiMonitorInfoIsSupportedVideoOutMode_ -sceAt9EncEncode -sceNpTusGetMultiUserDataStatusAVUserAsync -scePngDecDecode -sceFontGraphicsSetupGlyphFill -sceNgs2VoiceGetPortInfo -sceCesRefersUcsProfileIso8859_11 -sceDeci4hDrfpRmdir -sceNpTusDeleteMultiSlotVariableVUserAsync -sceAppInstUtilAppUnInstallByUser -sceKernelAddUserEventEdge -scePadOpenExt -sceKernelQueryMemoryProtection -sceUserServiceGetCreatedVersion -sceShellCoreUtilGetSplashScreenState -sceNpSnsTwitchGetAccessToken -sceDeci4hDrfpReserveBuffer -sceShellCoreUtilIsScreenSaverOn -sceShellCoreUtilGetAppData -sceUltWaitingQueueResourcePoolGetWorkAreaSize -sceDebugCreatePerfScratchExecutableArea -sceDepth2SetRoi -sceRtcFormatRFC3339 -sceNpManagerIntPsnCoreInternalTest -sceCompositorSetScalingLayoutInfo -scePthreadCondWait -sceSdecDestroySwHevc -sceNpWebApiAbortHandle -sceShellCoreUtilGetSystemBGState -sceCesUtf32ToUhc -sceBgftServiceIntDebugPlayGoRevertToSnapshot -sceFsUmountLwfs -sceNpSnsDailymotionDialogInitialize -sceImeSetCaret -sceVdecCoreTrySyncDecodeOutputSw -sceCesRefersUcsProfileCp1256 -sceShellCoreUtilDownloadHidConfigFileFromServer -sceDataTransferTargetGetTransferProgress -sceVideoCoreInterfaceInitializeInterface -sceNpManagerIntGetWebAppToken -sceMbusDisconnectDevice -sceAgcDriverGetSetWorkloadCompletePacketSize -sceWorkspaceApplyUpdate -scePadGetMotionSensorPosition -sceUserServiceSetVolumeForSidetone -sceAvSettingIsSupportedHdcpVersionByHdmiMonitorInfo -sceBgftServiceInit -sceAudiodReportLoudness -sceHmdInternalCheckS3dPassModeAvailable -sceNetCtlRegisterCallbackForLibIpcInt -sceKernelSetBesteffort -sceNpServerErrorJsonParse -sceKernelAprResolveFilepathsToIds -sceNpUniversalDataSystemIntDeleteAllData -sceUserServiceSetHmuBrightness -ScePsmMonoArrayLength -sceAppInstUtilAppUnInstallTheme -sceNpWebApi2PushEventCreateHandle -sceEditMp4InitializeParam -sceCameraGetGamma -sceAudio3dTerminate -sceMbusAddHandleByDeviceId -sceErrorDialogUpdateStatus -sceInvitationDialogClose -sceAudioPropagationPortalSetAttributes -sceDepthSetRectificationInformation -scePsmInitialize -sceKernelGetAppState -sceAppInstUtilAppSetRemasterInstallType -sceHttp2WebSocketSendTextMessageAsync -sceOpusCeltEncGetSize -sceAppInstUtilGetAddcontInstalledStatus -sceCameraGetDeviceInfo -sceUserServiceGetThemeWaveColor -sceFontCreateRendererWithEdition -sceCesUtf8ToBig5 +Need_sceLibcInternal +NetCtlCheckCallbackNative +NetCtlGetDeviceTypeNative +NetCtlGetStateNative +NetCtlInitNative +NetCtlRegisterCallbackNative +NetCtlTermNative +NetCtlUnregisterCallbackNative +NetworkProcessMainPlayStation +NewStringPlatform +NpStateManagerRegisterCallback +NpStateManagerRtcSetTick +NpStateManagerStart +NpStateManagerStop +NpStateManagerUnregisterCallback +NpWebAbortRequest +NpWebDeleteRequest +NpWebInitialize +NpWebReadData +NpWebTerminate +OBJ_cleanup +OBJ_cmp +OBJ_create +OBJ_nid2sn +OBJ_obj2nid +OBJ_sn2nid +OBJ_txt2obj +OCSP_BASICRESP_free +OCSP_CERTID_free +OCSP_RESPONSE_free +OCSP_basic_add1_cert +OCSP_basic_verify +OCSP_cert_status_str +OCSP_cert_to_id +OCSP_check_validity +OCSP_crl_reason_str +OCSP_resp_count +OCSP_resp_find_status +OCSP_resp_get0 +OCSP_response_get1_basic +OCSP_response_status +OCSP_response_status_str +OCSP_single_get0_status +OPENSSL_add_all_algorithms_noconf +OPENSSL_init_ssl +OPENSSL_load_builtin_modules +OpenClosedCaptionAdvancedSettings +OpenClosedCaptionSettings +OpenSSL_version +PEM_X509_INFO_read_bio +PEM_read_RSAPrivateKey +PEM_read_X509 +PEM_read_bio_PrivateKey +PEM_read_bio_X509 +PEM_read_bio_X509_AUX +PEM_write_bio_X509 +PIo2 +PKCS12_PBE_add +PKCS12_free +PKCS12_parse +PKCS7_free +PKCS8_PRIV_KEY_INFO_free +PKFree +PSNowGetStatus +PSNowGetStreamingStatus +PSNowInitialize +PSNowReset +PSNowSendCommand +PSNowSetAuthCodes +PSNowSetSettings +PSNowTerminate +PixelFormatLookup +PlayUri +PlaybackCommand +PubSubCreateContext +PubSubPublish +PubSubSubscribe +PubSubUnsubscribe +RAND_add +RAND_bytes +RAND_file_name +RAND_load_file +RAND_status +RSA_check_key +RSA_flags +RSA_free +RSA_generate_key_ex +RSA_get0_key +RSA_new +RSA_padding_add_PKCS1_PSS +RSA_padding_add_PKCS1_PSS_mgf1 +RSA_private_decrypt +RSA_private_encrypt +RSA_public_decrypt +RSA_public_encrypt +RSA_sign +RSA_size +RSA_up_ref +RSA_verify +RSA_verifySignature +RSA_verify_PKCS1_PSS +ReadZStream +RecvDeciHeader +RecvDeciPayload +RecvPacket +RecvThread +RegisterPrivateMessage +RemotePlayClearConnectHistory +RemotePlayConfirmDeviceRegist +RemotePlayDisconnect +RemotePlayGeneratePinCode +RemotePlayGetConnectHistory +RemotePlayGetConnectUserId +RemotePlayGetConnectionStatus +RemotePlayGetRemoteplayStatus +RemotePlayGetRpMode +RemotePlayIsRemotePlaying +RemotePlayNotifyCanWakeup +RemotePlayNotifyPinCodeError +RemotePlayNotifyUserDelete +RemotePlayProhibitStreaming +RemotePlaySetProhibition +RemotePlaySetProhibitionForVsh +RemotePlaySetRpMode +RemoveMediaSource +RnpsGetOpenPsIdForSystem +RnpsGetTicks +RtcGetCurrentAdNetworkTickNative +RtcGetCurrentDebugNetworkTickNative +RtcGetCurrentNetworkTickNative +S1hi +S1lo +SHA1 +SHA1_Final +SHA1_Init +SHA1_Update +SHA224_Final +SHA224_Init +SHA224_Update +SHA256 +SHA256_Final +SHA256_Init +SHA256_Update +SHA384_Final +SHA384_Init +SHA384_Update +SHA512_Final +SHA512_Init +SHA512_Update +SSL_ASYNC_acceptConnection +SSL_ASYNC_closeConnection +SSL_ASYNC_connect +SSL_ASYNC_connectCommon +SSL_ASYNC_getRecvBuffer +SSL_ASYNC_getSendBuffer +SSL_ASYNC_init +SSL_ASYNC_initServer +SSL_ASYNC_recvMessage +SSL_ASYNC_recvMessage2 +SSL_ASYNC_sendMessage +SSL_ASYNC_sendMessagePending +SSL_ASYNC_start +SSL_CIPHER_get_bits +SSL_CIPHER_get_name +SSL_CIPHER_get_version +SSL_CTX_add0_chain_cert +SSL_CTX_add_client_CA +SSL_CTX_callback_ctrl +SSL_CTX_check_private_key +SSL_CTX_clear_chain_certs +SSL_CTX_ctrl +SSL_CTX_free +SSL_CTX_get_cert_store +SSL_CTX_get_ex_data +SSL_CTX_get_ex_new_index +SSL_CTX_get_verify_mode +SSL_CTX_load_verify_locations +SSL_CTX_load_verify_mem +SSL_CTX_new +SSL_CTX_sess_set_new_cb +SSL_CTX_set1_groups_list +SSL_CTX_set_alpn_protos +SSL_CTX_set_alpn_select_cb +SSL_CTX_set_cert_store +SSL_CTX_set_cert_verify_callback +SSL_CTX_set_cipher_list +SSL_CTX_set_client_cert_cb +SSL_CTX_set_default_passwd_cb +SSL_CTX_set_default_passwd_cb_userdata +SSL_CTX_set_ex_data +SSL_CTX_set_info_callback +SSL_CTX_set_max_proto_version +SSL_CTX_set_min_proto_version +SSL_CTX_set_msg_callback +SSL_CTX_set_next_proto_select_cb +SSL_CTX_set_quiet_shutdown +SSL_CTX_set_session_id_context +SSL_CTX_set_verify +SSL_CTX_up_ref +SSL_CTX_use_PrivateKey +SSL_CTX_use_PrivateKey_ASN1 +SSL_CTX_use_PrivateKey_file +SSL_CTX_use_certificate +SSL_CTX_use_certificate_ASN1 +SSL_CTX_use_certificate_chain_file +SSL_CTX_use_certificate_file +SSL_SESSION_free +SSL_SESSION_get_master_key +SSL_SESSION_up_ref +SSL_accept +SSL_acceptConnection +SSL_acceptConnectionCommon +SSL_alert_desc_string_long +SSL_assignCertificateStore +SSL_check_private_key +SSL_closeConnection +SSL_connect +SSL_connectWithCfgParam +SSL_ctrl +SSL_enableCiphers +SSL_findConnectionInstance +SSL_free +SSL_get0_alpn_selected +SSL_get0_param +SSL_get1_session +SSL_getCipherInfo +SSL_getClientRandom +SSL_getClientSessionInfo +SSL_getCookie +SSL_getInstanceFromSocket +SSL_getNextSessionId +SSL_getSSLTLSVersion +SSL_getServerRandom +SSL_getSessionCache +SSL_getSessionFlags +SSL_getSessionInfo +SSL_getSessionStatus +SSL_getSocketId +SSL_get_SSL_CTX +SSL_get_certificate +SSL_get_client_random +SSL_get_current_cipher +SSL_get_error +SSL_get_ex_data +SSL_get_ex_data_X509_STORE_CTX_idx +SSL_get_ex_new_index +SSL_get_fd +SSL_get_peer_cert_chain +SSL_get_peer_certificate +SSL_get_privatekey +SSL_get_rbio +SSL_get_servername +SSL_get_session +SSL_get_shutdown +SSL_get_verify_result +SSL_get_wbio +SSL_init +SSL_initServerCert +SSL_initiateRehandshake +SSL_ioctl +SSL_isSessionSSL +SSL_library_init +SSL_load_error_strings +SSL_lockSessionCacheMutex +SSL_lookupAlert +SSL_negotiateConnection +SSL_new +SSL_peek +SSL_pending +SSL_read +SSL_recv +SSL_recvPending +SSL_releaseTables +SSL_retrieveServerNameList +SSL_rngFun +SSL_select_next_proto +SSL_send +SSL_sendAlert +SSL_sendPending +SSL_setCookie +SSL_setServerCert +SSL_setServerNameList +SSL_setSessionFlags +SSL_set_SSL_CTX +SSL_set_bio +SSL_set_connect_state +SSL_set_ex_data +SSL_set_fd +SSL_set_session +SSL_set_verify +SSL_shutdown +SSL_sslSettings +SSL_up_ref +SSL_use_PrivateKey_ASN1 +SSL_use_certificate_ASN1 +SSL_validateCertParam +SSL_version +SSL_want +SSL_write +SSLeay +SSLv23_client_method +SSLv23_server_method +SceDrfpChkRecvBuf SceDrfpIncrFragNo -sceNpManagerIntClearVshToken -sceUpsrvGetNextUpdateCheckDateTime -sceNpTrophySystemGetDbgParam -sceNgs2SystemSetLoudThreshold -sceDebugIpmiGetKidInfoListForCoredump -sceHttp2AuthCacheFlush -scePlayReadyLicenseDelete -scePadVrControllerSetVibrationMode -sceAjmBatchErrorDump -sceUlpMgrVshNextChunkCmd -sceFsDevpfsA53IocGetBuildMetadataStatus -sceRemoteplayNotifyPinCodeError -sceFontGlyphGetOutlineVertexes -scePlayReadyReaderRetrieveOpaqueContent -_sceKernelSetThreadAtexitReport -sceSystemModalDialogClose -sceUserServiceGetVoiceAgentEnable -sceUpsrvUpdateGetBetaAgreementUrl -sceG2PDialogGetStatus -sceAjmModuleUnregister -sceAgcGetRegisterDefaults -sceMouseDeviceOpen -s_useStdThreadStackSize -sceWebBrowserDialogGetEvent -sceHmdGetFieldOfView2d -sceSocialScreenDialogGetResult -sceDebugGetProcessCoredumpHandlerEventBlob -sceNpIpcClientTermInternal -sceVideoOutSetFlipMaster -sceCompositorSystemConfig -sceNpMatching2SignalingGetPort -sceKernelInstallExceptionHandler -sceKernelPrintBacktraceWithModuleInfo -sceDeci4hDrfpFchstat -sceFontGraphicsSetupFillRates -sceKernelTruncate -sceAgcDcbDmaData -sceImeParamInit -sceDeci4hDrfpRecv -sceNetCtlGetScanInfoBssidIpcInt -sceAvPlayerGetAudioData -sceIduUtilGetDiskSpaceStats -sceNpSnsIntTwGetSystemAccessToken -sceFsNsfsUmount -sceUsbStorageTerm -sceGpuTraceStart -sceDepth2Initialize -sceAudioOutAssignHRTF -sceFsSysStorageGetStatus -sceHttpGetNonblock -sceImeVshUpdate -sceVideoCoreChangeDisplaySize -sceFsLvdAttachPartiallyCryptedDownloadData -sceHmdInternalAnotherScreenGetAudioStatus -pthread_setspecific -sceAgcDcbDrawIndexAutoGetSize -sceAvControlSetDefaultVideoOutMode -sceKernelIsNeoMode -sceNpSessionSignalingGetGroupInfo -sceNpManagerIntCheckGameNpAvailabilityWithPid -sceLncUtilGetAppIdOfBigApp -sceAppInstUtilAppInstallTitleDir -sceUserServiceGetPbtcMondayHoursStart -sceInvitationDialogGetResultA -sceVshAvcapOpenUserdata -sceKernelAprGetFileSize -sceUserServiceGetGlsBroadcastersCommentColor -sceSlimglCompositorSetPostEventCommand -sceKernelGetIoreq -pthread_barrier_setname_np -sceHttp2SetAuthInfoCallback -sceSpNetResolverStartNtoa -sceSpPthreadAttrInit -sceNetApctlCheckCallback -sceNpUniversalDataSystemEventPropertyObjectSetArray -sceNetShowNetstat -sceHmdInternalSeparateModeGetAudioStatus -sceHmdGetDistortionCorrectionCommandApprox -sceMusicPlayerServiceInitialize -sceSaveDataClearProgress -sceClHttpDeleteConnection -sceFacePartsResultCheck -sceClKernelSetEventFlag -sceNetDhcpStart -sceFiosOpGetError -ScePsmMonoClassGetMethodFromName -sceAudioInDeviceIdOpen -sceAgcDriverRegisterOwner -sceNpManagerIntLoginSetSsoToken -sceTextToSpeech2Open -sceShareFactoryUtilInitialize -sceAmprAprCommandBufferMapEnd -sceSlimglClientPulse -sceNpSignalingCancelPeerNetInfo -sceCesUtf16leToBig5 -sceFontGraphicsDrawingFinish -sceCesUhcToUtf32 -sceVoiceChatRequestJoinPlayerSessionVoiceChatChannel -sceAppInstUtilAppGetSize -sceNpTrophySystemGetTitleFileStatus -sceSaveDataDirNameSearchPs4 -sceNpAppLaunchLinkIntGetCompatibleTitleIdNum -sceNpManagerIntGetParentalControlInfoNB -_sceDepthSetHeteroMode -sceMusicCoreServerInitialize -sceUserServiceGetGlsLiveQuality3 -sceUserServiceGetPasscode -sceNpIntSetPlatformType -sceGnmSqttInit -sceKernelSflashSetWritePrio -sceAudioOutSetUsbVolume -sceBgftServiceIntPlayGoIsPaused -sceVideoOutSysSetDimmer2 -sceVideoOutSysAddSetModeEvent -sceVoiceChatUnregisterMicEventHandler -sceLncUtilSetControllerFocus -sceFontFtSupportType42 -sceNpUtilGetNpLanguageCode2 -sceUserServiceSetNotificationSettings -sceGnmSetEmbeddedPsShader -sceAvControlIsSuspendedProcessOutputModeAvailable -sceFontGraphicsDrawupFillRadialGradient -sceNpAppInfoIntCheckServiceAvailabilityA -scePthreadMutexSetprioceiling -sceFsNsfsMountWithFlags -sceMatReallocEnd -sceAvPlayerJumpToTime -sceVnaInitialize -sceRazorCpuNamedSync -scePthreadRwlockTryrdlock -sceCloudClientSetAuthCodes -sceNpGetOnlineId -sceKernelDebugGetAppStatus -sceAvSettingDriverUpdateStatus -sceNpManagerIntOnlineId2NpId -sceNpIpcIsInit -sceVideoDecoderArbitrationAcceptEvent -sceUserServiceSetEventSortTitle -sceApplicationInitialize -scePlayReadyCdmiGetSessionId -sceShellCoreUtilGetAppEnableTTS -sceAudioOut2MasteringInit -sceFontSetupRenderEffectWeight -scePssCAudIsStopped -sceNpRemotePlaySessionSignalingInitialize -sceAudioPropagationSystemUnregisterMaterial -sceLibSecureCryptographyMessagePadding -sceAgcAcbAtomicMem -catchReturnFromMain -sceFontSelectGraphicsAgc -sceSharePlayNotifyOpenQuickMenu -sceAgcDcbSetZPassPredicationEnableGetSize -sceKeyboardGetConnection -sceHttpSetCookieEnabled -sceAgcDriverDestroyQueue -sceVideoOutHdmiMonitorInfoIsSupportedHdcpVersion -sceNpTusGetData -sceSystemLogger2SetLog -sceVoiceQoSGetLocalEndpoint -sceRtcTickAddMicroseconds -sceHttp2SetSendTimeOut -sceKernelSflashGetWritePrio -sceKernelAioSubmitWriteCommands -sceNpPartyCreateA -sceNpManagerIntGetPlusMemberTypeNB -sceVideoCoreMediaSourceGetPlaybackQuality -sceFontGraphicsSetupPositioning -sceNpManagerIntLoginCheckSignin -sceNpManagerIntGetAccountId -pthread_mutex_setprioceiling -sceVshAvcapUpdateSyncer -sceUltGetWaitingQueueResourcePoolInfo -sceSystemServiceUsbStorageRequestMap -sceAppContentGetEntitlementKey -sceNpJsonParse2Init -sceDebugGetDLLoadFlag -sceUserServiceGetKeyRepeatSpeed -sceUsbdControlTransferGetData -sceFontGlyphGetMetricsForm -sceNpWebApiDeleteContext -sceOpusCeltEncCtl -sceMoveClose -sceNpUniversalDataSystemEventPropertyArraySetObject -sceBackupRestoreUtilPrepareBackup -sceContentBinderTerminate -sceHmdReprojectionStartLiveCapture -sceCompositorSetVrMode -scePerfTraceIoControllerDelete -sceNpPushStopNotificationA -sceNpIpcStopReceiveEvent -sceLncUtilResumeLocalProcess -ScePsmMonoGetExceptionOutOfMemory -sceAvSettingTerm -sceSystemServicePowerTick -sceNpTrophyCreateContext -sceSdmaInitialize -sceAudioOutExSystemInfoIsSupportedAudioOutExMode -sceAudio3dPortOpen -scePthreadSetName -sceAppInstUtilGetInsertedDiscTotal -sceRegMgrRecoverRegNvs -sceNetInfoDumpStop -sceBgftServiceIntGetTaskInfoValueStringIndex -sceNpManagerIntCheckGameNpAvailability -sceValidationGpuInit -ScePsmMonoJitInitVersion -sceVnaInitializeForParty -sceSaveDataGetParam -pthread_rwlock_trywrlock -sceIduUtilRegisterFlag -sceBluetoothHidGetReportDescriptor -sceGnmSetWaveLimitMultipliers -sceLncUtilGetCdlgType -sceKernelUuidCreate -sceVideoOutSysUpdateScalerParameters -sceBdSchedStartGame -sceKernelGetCpuUsageThread -sceNpLwCondSignal -sceAgcDriverSetTFRing -sceShellCoreUtilDeleteDiscInstalledTitleWorkaroundFile -sceNetConfigWlanAdhocJoin -sceVoiceQoSGetConnectionAttribute -sceSystemServiceSetOutOfVrPlayAreaFlag -sceNetInetPtonEx -sceLibSecureCryptographyGetKeySize -sceClPthreadCondWait -sceLoginMgrServerInitializeSharePlayAllowPadOperation -sceVrTrackerGetTime -sceAmprMeasureCommandSizeNopWithData -sceUserServiceGetGlsIsTwitterEnabled -sceLoginMgrServerGetMorpheusRequiredUserId -sceAgcDriverTriggerCapture -sceNpTrophySystemGetUserFileStatus -sceFsExtUSBSchedInsertForHDD -sceCameraGetLensCorrection -sceVideoOutAddVblankEvent -pthread_setschedparam -sceNetBweCheckCallbackIpcInt -sceDebugIpmiGetChannelWaitingThreadList -sceVideoRecordingGetVideoOutMode -sceFaceTrackerAddUserFeature -sceInvitationDialogInitialize -sceImeBackendGetCaretIndex -sceNpSnsYouTubeDialogGetResult -sceNpWebApi2GetMemoryPoolStats -sceGpuExceptionRemoveRazorHandler -sceFontSelectRendererFt -sceVencCoreSetPictureType -sceUserServiceSetFileBrowserSortContent -sceNpPushIntEndInactive -scePlayReadyReaderDecrypt -sceCesIso2022StrGetUtf32Len -sceNpManagerIntLoginGetAuthorizationCode -sceVrTracker2GetCoordinateSystem -sceAgcAcbEventWriteGetSize -sceUrlConfigResolverGetDeviceId -sceCesEucKrToUtf8 -sceSrcUtilityInitialize -sceVideoCoreGenerateThumbnail2 -sceCameraChangeAppModuleState -sceHttpAuthCacheExport -sceNpPush2SetNpCommunicationId -sceHidControlInit -sceGameLiveStreamingStartSocialFeedbackMessageFiltering -sceRemoteplayNotifySubmitCode -sceKernelLoadStartModuleInternalForMono -scePlayReadyApiInitializeInitParams -sceDeci4hDrfpFstat -sceAudioOutGetHandleStatusInfo -sceAgcUpdatePrimState -sceBackupRestoreUtilGetRestoreProgress -ScePsmMonoSecuritySetCoreClrPlatformCallback -sceVisionManagerGetCalibrateTrackingLedInfo -sceNpTrophySystemWrapDebugUnlockTrophy -sceUserServiceGetGlsCameraBgFilter -sceUsbdDetachKernelDriver -sceUserServiceGetMousePointerSpeed -sceNpAppInfoIntAbortRequest -sceNpGriefReportReadJsonFile -sceClPthreadCreate -sceCustomMusicCoreSetSystemAudioVolume -sceLncUtilSuspendApp -scePerfPmcGetCounterSelf -sceNetBweClearEventIpcInt -sceFontGraphicsRelease -sceShareFeaturePermit -sceNpManagerIntLoginSetUserId -sceVdecwrapQueryDecoderMemoryInfo -sceNpAsmCreateConnection -sceAjmInstanceExtend -sceUserServiceSetGlsOverlayPosition -sceKernelFlock -sceNpUniversalDataSystemEventPropertyObjectSetInt32 -sceCesRefersUcsProfileJisX0201 -sceNpTusGetFriendsVariableAsync -sceBgftServiceIntDownloadDebugDownloadBgftEnvFile -sceVideoRecordingGetInfoByHandle -sceCesUhcToUtf32le -sceLibSecureHashGetDigestSize -sceMatAgcRegisterResource -sceNpUnregisterStateCallbackForToolkit -sceUsbdGetMaxPacketSize -sceKernelAddGpuExceptionEvent -sceMoveTrackerCalibrateYaw -sceGameUpdateInitialize -sceKernelJitMapSharedMemory -scePssSoundPlayerUserCreate -sceNpServiceCheckerIntCreateRequest -sceSystemServiceGetAppType -sceCesRefersUcsProfileCp855 -sceDebugIpmiGetServerKidListByDump -sceLoginMgrServerDialogSetResult -sceKernelMemoryPoolBatch -sceSystemServiceLaunchUdsApp -sceFaceTrackerRegisterStopTrackingCallback -sceAmprAprCommandBufferResetGatherScatterState -sceNpAsmClientGetGameNpTitleToken -sceMbusDumpModuleStateInfoAll -sceRegMgrSetInitLevel -sceAutoMounterClientGetUsbDeviceList -sceNpTusGetMultiUserVariableAsync -sceRnpsAppMgrSetUpdateUrl -ScePsmMonoRuntimeInvoke -sceNpSnsFacebookDialogClose -sceVisionManagerSetCallbackForUpdateCtrlCore -sceBgftServiceIntGetNotificationParam -sceDtcpIpGetHttpStatusCode -sceAgcDcbSetFlip -sceUserServiceGetImePredictiveTextEnabled -sceAudioOutSysHdmiMonitorInfoIsSupportedAudioOutMode -sceMoveTrackerGetState -sceUserServiceGetHmuBrightness -sceDevUsbWriteHostRaw -sceKernelDeleteTimerEvent -sceBluetoothHidGetDeviceInfo -sceAgcCondExecPatchSetCommandAddress -sceNetDumpRead -sceSystemStateMgrStartVshAutoUpdateTimer -sceUserServiceSetPbtcFridayHoursEnd -sceUserServiceSetPbtcTuesdayDuration -sceNpLookupWaitAsync -sceNpTrophyGetGameInfo -sceAudioInExtOpen -sceAudioOutPtGetLastOutputTime -sceAudio3dPortGetQueueLevel -scePlayGoDialogUpdateStatus -sceUserServiceGetVoiceAgentEnableByButton -sceSysUtilSendSystemNotificationWithUserId -sceSaveDataCopy5 -sceNpIsPlusMember -sceUpsrvUpdateSetEulaAccept -scePlayReadyCdmiSetServerCertificate -scePthreadAttrSetscope -sceAvSettingSetDispclk -sceAudioInSetConnections -sceVoiceWriteToIPort -sceNpManagerUtilConvertOldAuthServerError -sceKernelGetAllowedSdkVersionOnSystem -sceUserServiceGetMicLevel -sceFiosArchiveUnmount -sceHttp2WebSocketSetPingInterval -sceNpMatching2CreateContext -sceAudioOut2Terminate -sceFsWsMount -sceMbusAttachToApplicationByPid -sceHttp2Term -_sceUltWaitingQueueResourcePoolCreate -sceHmdInternalIsGameVr2d -sceKernelAllocateDirectMemory2 -sceVnaGetWakeupPhraseInfo -pthread_get_user_context_np -sceFiosIsIdle -sceKernelAvailableToolMemorySize -sceCamera2GetFrameData -sceFiosFileRead -scePssPadrGetOutputIsRunning -sceUserServiceGetGlsCamCrop -sceMouseConnectPort -sceVideoOutColorSpaceConversionSettingsSetSdrToHdrConversion_ -sceUserServiceSetGlsCameraEliminationLevel -sceUserServiceGetShareStatus -scePadReadState -sceNpAtomicDec32 -sceNpServiceChecker2IntGetServiceAvailabilityA -sceNpManagerIntDeclareSystemProcess -sceRazorCpuPopMarker -scePadSetVibrationTriggerEffectWeakWhileEmbeddedMicInUse -sceAudio3dPortSetAttribute -sceCesRefersUcsProfileIso8859_10 -sceNetConfigWlanAdhocGetWakeOnWlanInfo -sceLibcInternalMemoryGetWakeAddr -sceFontGraphicsAdjustGradientSpread -sceHttp2SetSslCallback -sceRnpsAppMgrRemoveApp -sceKernelIsPs4Process -sceSpSelect -sceNpPush2DeletePushContext -sceNetCtlIsBandwidthManagementEnabledIpcInt -sceSystemServiceShowImposeMenuForPs2Emu -sceNetCtlApAppStartWithRetry -sceHidControlGetJediState -sceSaveDataDialogTerminate -sceHttpUriEscape -sceBgftServiceIntDownloadStopTaskAll -sceShellCoreUtilUnmountHddForBackup -sceAppInstUtilGetContentSize -sceAgcDcbDrawIndexAuto -sceBgftServiceIntUploadUnregisterTaskAll -sceMusicCoreServerGetLastLaunchUser -sceSystemServiceChangeCpuPstate -sceHmdGetAssyError -sceUserServiceGetNpDateOfBirth -scePfsValidate -sceRemoteplayNotifyNpPushWakeup -sceNpUniversalDataSystemIntRecordArraySetString -sceCompositorSetPatchCommand -sceVorbisDecInfo -sceImeBackendModeCaretNext -sceUserServiceGetGlsLiveQuality2 -sceNetSyncSignal -scePerfTraceAddBufferNotifyEvent -sceNpEntitlementAccessDeleteRequest -sceAudioLatencyEstimationGetDelayTime -sceLibSecureHashGetContextSize -sceImeBackendForTestFunction -sceFontRebindRenderer -sceFsUfsEstimateZoneCapacityForUser -sceCesEucCnToUtf32le -sceNpGetProcessId -sceGnmDispatchIndirect -sceEsvmEngineMediaKeySessionRemove -sceNpFriendListDialogGetResult -pthread_once -sceNetCtlTerm -sceMatWriteBookmark -sceRnpsAppMgrGetAppInfoList -ScePsmMonoJitExec -sceSystemServiceChangeGpuClock -sceUserServiceSetNpCountryCode -sceBgftServiceIntDebugPlayGoSuspend -sceVoiceGetResourceInfo -sceKernelIccGetCpuInfoBit -sceSaveDataSaveIconByPath -sceNpIdMapperDeleteRequest -sceCtrlpInit -sceAjmBatchJobRunSplit -sceNpSessionSignalingDestroyContext -sceDtsEncWaitEncode -sceFontGetFontGlyphsCount -sceKernelDirectMemoryQueryForId -sceImeBackendGetCandidateSelect -sceAvPlayerStop -sceBgftServiceIntDebugPlayGoSetFreeZone -sceMbusEventCallbackFuncsInit -sceAt9EncClearContext -scePlayReadyContentSetProperty -sceAmprAmmMeasureAmmCommandSizeMapDirect -sceGnmRegisterOwner -sceShellCoreUtilGetTitleWorkaroundFileInfoString -sceBgftServiceIntUploadGetAvailableTaskCount -sceFaceTrackerUpdate -sceShellCoreUtilGetAppLaunchTypeInfo -sceAcmContextCreate -sceSaveDataDebugProspero -sceAmprAmmCommandBufferMapAsPrt -sceUserServiceGetAccessibilityPressAndHoldDelay -sceCesUtf32ToEucJp -sceAgcDriverUnregisterOwnerAndResources -sceAmprCommandBufferWriteAddressFromCounterPairOnCompletion -sceNetConfigWlanAdhocCreate -pthread_mutexattr_setprioceiling -pthread_spin_init -sceMbusDumpProcMediaInfoAll -sceSystemServiceGetLocalProcessStatusList -sceDebugGetEventSubscriptionList -sceDebugGetProcessResourceStatCount -sceUpsrvUpdateGetObfuscatedString -sceAudio3dPortFlush -sceUserServiceSetAccessibilityKeyremapEnable -sceSaveDataMount3 -sceRtcGetCurrentClockLocalTime -sceNpSignalingActivateConnectionA -sceFiosShutdownAndCancelOps -sceAudioPropagationPortalDestroy -sceNpUtilGetWebApi2FakeRateLimitTarget -sceClPthreadCondattrInit -sceCompanionHttpdUnregisterRequestBodyReceptionCallback -sceFiosOpWaitUntil -sceKernelGetHwFeatureInfoForDecid -sceNpTcsIntUploadDataToNewSlotBegin -sceAudioOut2UserCreateEx -sceAgcDriverSuspendPointSubmitDirect -sceLibcGetFH -sceAppMessagingTryReceiveMsg -sceNetEpollControl -sceUserServiceSetGlsLiveQuality3 -sceVideoOutRazorAddCallback -sceNpLookupNetIsInit -sceRemoteplayClearAllRegistData -sceIduInstallPkg -sceSdmaCopyLinear -sceVisionManagerRequestFindFace -sceVdecCoreCreateDecoderBid -sceNetCtlApDialogGetResult -sceNpDbgDumpText -sceCameraGetConfig -sceShellCoreUtilGetFreeSizeOfUserPartition -sceNpWaitEventFlag -sceNpTusTryAndSetVariableVUser -sceVideoRecordingInitialize -sceFontFtSupportBdf -sceUserServiceSetLoginFlag -sceVrSetupDialogClose -sceSystemServiceNavigateToGoBackWithValue -sceAvSettingChangeOutputMode3 -sceUserServiceSetTraditionalChineseInputType -sceVideoCoreMediaSourceRemoveSourceBuffer -sceUserServiceSetNpLoginId -_sceNpAllocatorExFree -sceDebugGetProcessEventCntlFlag -sceAmprMeasureCommandSizeWriteKernelEventQueueOnCompletion -sceAppContentAddcontDelete -sceMbusAddHandle -sceCesUcsProfileInitSJis1997Cp932 -sceAppInstUtilAppStoreCompilationDiscInfo -sceSystemServiceLaunchStore -sceSaveDataInitialize -sceBgftServiceIntUploadRestartTask -sceBgftServiceIntUploadHideTask -sceAvSettingGetCurrentOutputMode_ -sceImeVshInformConfirmdString -scePlayerInvitationDialogClose -sceNpPanic -sceUserServiceSetGlsBroadcastersComment -sceKernelGetPsnAccessTraceLogForRcmgr -sceVoiceChatRequestDeleteVoiceChatGroup -_sceFiberAttachContextAndSwitch -sceKernelIccControlUSBPowerState -sceUserServiceGetSystemLoggerHashedAccountIdParam -sceHmdReprojectionFinalize -sceHandTrackerSetFaceInfo -pthread_barrier_init -sceVdecCoreQueryInstanceSize -sceUserServiceSetPartyMuteList -sceGnmSysSubmitFlipHandleProxy -sceVideoOutDriverIncrementBufferLabel -sceGameLiveStreamingSetSpoilerTag -sceLncUtilGetEventForShellUI -_sceNpHeapMallocImpl -sceNetConfigWlanAdhocPspEmuClearWakeOnWlan -scePerfTraceAmmStart -sceDebugGetFiberInfo -sceCesSbcToUtf16be -sceVideoRecordingQueryMemSize -sceAgcDcbSetCxRegistersIndirect -sceAgcDriverGetEqContextId -sceAppInstUtilAppInstallSharePlayLinkByUser -sceSystemStateMgrStartStadbyTimer -sceHandDetectionLocalGetDefaultParam -sceCompositorReleaseIndex -sceKernelWaitSema -ScePsmMonoFree -sceFaceDetectionGetDefaultParam -sceSdecQueryMemorySwHevc -sceFiosCachePrefetchFileRangeSync -sceKernelGetPhysPageSize -sceKernelGetModuleList2 -sceNpDbgStrHex -sceCesIso2022StrGetUcs2Len -sceMbusSetCameraAppModuleFocus -sceSystemTtsUnregisterCallback -sceFiberRun -sceHmdInternalSocialScreenSetFadeAndSwitch -sceHmdInternalDfuStart -pthread_setprio -sceUpsrvUpdateGetDownloadProgress -_sceNpAllocatorExMalloc -sceGnmSqttFinishTrace -sceUserServiceSetThemeBgImageZoom -sceHttpSetResponseHeaderMaxSize -sceAvSettingSetVideoOutputColorEffect -sceNpBase64GetDecodeSize -pthread_barrierattr_getpshared -sceSystemServiceEnableSuspendNotification -sceAppContentTemporaryDataFormat -sceCameraGetContrast -sceOpusDecCreate -sceFsISSchedConfigDescriptor -sceNetConfigRoutingShowtCtlVar -sceSpPthreadMutexattrInit -sceKernelGetResidentFmemCount -sceDebugGetFileList -sceNpPushStartNotification -sceNpGetAccountId -sceVnaGetVadState -sceAmprAprCommandBufferConstructor -sceDebugCreateScratchDataArea -sceNpManagerIntParseIdToken -sceMusicCoreServerCheckCoreStatus -sceNpSessionSignalingCreateContext2 -sceVnaRequestDownloadTts -sceHttpGetAllResponseHeaders -sceAgcDriverPassInfoDownward -sceShellCoreUtilMountAppRight -sceApplicationSendResultOfDebuggerSuspendRequest -sceVisionManagerSetCallbackForUpdateCameraFrame -scePlayReadyCdmiLoad -sceLibSecureCryptographyEncrypt -sceNpPartyGetState -sceNpGriefReportCdDeleteRequest -sceDeci4hDrfpMountDone -sceNpEntitlementAccessPollServiceEntitlementInfoList -sceSharePlayStopStreaming -sceDevUsbAcceptHostStream -sceBgftServiceIntDownloadRegisterTaskStore -sceCompositorSetVirtualCanvasAgcContextCommand -scePthreadSelf -sceRazorCpuShutdown -sceAudioOut2ContextPush -sceNpUnregisterGamePresenceCallbackA -sceAgcDcbEventWrite -sceKernelDebugGetSchedLockMode -sceAudioPropagationSourceGetRays -sceFiosIsInitialized -sceSysmoduleUnloadModuleInternalWithArg -sceAvSettingCheckCallback -sceFiosCloseAllFiles -sceVideoCoreMediaSourceSetDuration -sceKernelGetProsperoSystemSwVersion -sceAudioPropagationSystemCreate -sceVencQueryPreset -sceKernelAvailableFlexibleMemorySize -pthread_getprio -sceSpPthreadCondSignal -sceAgcDcbSetUcRegisterDirectGetSize -sceAvSettingCallbackFuncsInitForLnc_ -sceGnmInsertPushColorMarker -sceNetCtlConnectWithRetryIpcInt -sceHmdInternalGetSensorCalibrationData -sceCesUtf8ToGb -sceNpEulaDialogClose -sceTsStartFileStreaming -sceGnmSysResetOttvLibrary -sceLoginServiceTerminate -sceGameLiveStreamingGetCurrentBroadcastScreenLayout -sceSlimglCompositorGetError -sceAvPlayerInit -sceHandTrackerUpdate -sceVoiceChatRequestJoinVoiceChatGroup -sceSdmaBeginQueueMode -sceNpTrophyAbortHandle -sceSystemModalDialogOpen -sceNpManagerIntLoginAddJsonInfo -sceNpServiceChecker2IntGetServiceAvailability -sceApplicationBlockingKill -sceLncUtilUnregisterCdlgSharedMemoryName -sceSystemServiceActivateMpeg2IsActivated -sceHidControlConnectPort -sceNpUniversalDataSystemIntAbortHandle -sceAppInstUtilAppConvertAppDiscToDownload -sceNpTrophySystemGetTrophyGroupData -sceBdSchedSetBackgroundCopyRequest -scePerfTraceAmmGetInfo -sceUpsrvUpdateDestroyUpdateTask -sceRtcSetDosTime -sceSulphaGetClientInfo -sceAgcSdmaOpen -sceCesUcs2StrToIso2022Str -sceDeci4hDrfpRename_fuse -sceAudioOut2LoContextAdvance -sceUserServiceGetEventSortTitle -sceNpIpcClientTest2 -scePthreadRwlockTimedwrlock -sceAudioOutSetRecMode -sceNpUniversalDataSystemIntRecordObjectSetString -sceHmdInternalSetVirtualDisplayHeight -sceVnaPlaySound -sceAvPlayerPrintf -sceScreenShotSetOverlayImage -sceFiosIOFilterRemove -sceOpusSilkEncEncodeCancelForTimeout -sceNetGetIfListOnce -sceKernelCallIndirectBuffer -scePerfPmcL3Stop -sceVoiceChatGetMicState -sceFontRendererResetOutlineBuffer -sceShellCoreUtilGetRemotePlayStatus -sceAppInstUtilAppGetAddcontList -scePthreadSemPost -sceNpUniversalDataSystemIntDestroyRecordArray -sceGnmInsertSetColorMarker -sceVoiceDisconnectIPortFromOPort -sceVoiceChatRegisterMicEventHandler -sceNpUtilHttpUrlEncode -sceNpMatching2CreateContextA -sceSpNetSetsockopt -sceHidControlGetBatteryState -sceLibcInternalHeapErrorReportForGame -sceNpIdMapperAccountIdToNpId -sceAppMessagingClearEventFlag -sceVrTrackerSetHookFunction -sceFaceTrackerRegisterStartTrackingCallback -sceTsSetStartingBW -sceFontRendererGetOutlineBufferSize -sceVideoOutUnlockBuffer -sceNetCtlApRestart -sceRudpInit -sceHmdDistortionInitialize -ScePsmMonoThreadpoolSetMaxThreads -sceSaveDataRestoreLoadSaveDataMemory -sceUpsrvUpdateCheckDoCheckSystem -sceUserServiceGetPartyMuteListA -sceMbusRemoveAudioOutHandleAttribute -sceCesRefersUcsProfileJisX0201Katakana -sceVdecswSetDecodeInput -sceGnmSpmInit -sceCesMbcToUtf8 -scePerfPmcMperfGetCounter -sceLibcDebugOut -sceNetCtlGetInfoV6IpcInt -sceAudioInSetUserMute -sceCompositorSetZoomCommand -sceSystemStateMgrIsShellUIShutdownInProgress -sceHmd2ReprojectionDisableMirroring -sceFiberOptParamInitialize -sceSlimglCompositorSetMemoryCommand -sceNpWebApiTerminate -sceNetSyncDestroy -_sceNpHeapStrdup -sceNpManagerIntIsTemporarySignout -sceShellCoreUtilSetUIStatus -scePssCAudGetSurroundPan -sceUserServiceGetNpOfflineAccountAdult -sceVdecwrapMapDirectMemory -sceAvPlayerSetTrickSpeed -_sceFiberAttachContextAndRun -sceKernelJitCreateSharedMemory -sceShellCoreUtilNotifyFsReadError -sceLncUtilRegisterShellUI -sceFiosDateFromComponents -sceCompositorGetAnotherProcessSystemAddress -sceFsWsGetStatus -sceUserServiceInitialize2 -sceNpServiceCheckerIntIsCached -sceUserServiceGetPbtcTuesdayHoursStart -_sceDepthHeadCandidateTrackerSetInformation -sceNpManagerIntGetNpId -sceNpTusGetMultiSlotDataStatusAVUser -scePlayReadyEnvelopeGetSize -sceNetInetPtonWithScopeId -sceAgcSuspendPointAndCheckStatus -sceAudioOutSetVolume -sceMatBatchMap -sceSystemServiceLaunchByName2 -sce_libc_tls_heap -sceClKernelUsleep -sceNetEtherStrton -sceAudioPropagationPortalCreate -sceAgcAcbJumpGetSize -sceUpsrvUpdateGetUpdateTaskInfo -sceMsgDialogOpen -sceGnmAreSubmitsAllowed -sceKernelGetUtokenUseSoftwagnerForAcmgr -sceVdecCoreFlushDecodeOutput -sceGnmAddEqEvent -sceAudioOut2SetSystemDebugState -sceDepthGetSrParameter -sceMbusGetSimulatedHandleStatusInfo -sceNpIpcCancelCallback -sceBgftServiceIntGetTaskInfoValueString -sceAvSettingGetNativeHdmiMonitorInfo -sceFiosFHOpenSync -sceAgcDriverSubmitCommandBuffer -sceNpSignalingTerminateConnection -scePatchCheckerDisableAutoDownload -sceUserServiceSetAppSortOrder -sceAmprAmmMeasureAmmCommandSizeRemapWithGpuMaskId -sceFontGraphicsCanvasSetSurfaceFillWithLayout -sceGameLiveStreamingScreenCloseSeparateMode -sceAgcDcbCopyDataGetSize -sceUserServiceSetTeamShowAboutTeam -sceApplicationExitSpawn -sceCesUtf16ToSbc -sceVoiceDeletePort -sceEsvmEngineMediaKeySessionGetExpiration -sceNpUniversalDataSystemDestroyRecordData -sceHttp2SetAutoRedirect -sceNetBandwidthControlGetIfParam -sceFontGraphicsUpdateGlyphFillPlot -sceFsInitUmountTrophyDataOpt -sceNpCondSignalTo -sceFaceTrackerStartTracking -sceVorbisDecGetLastDecodeError -sceKernelAddAmprEvent -sceFiosCachePrefetchFileSync -sceShellCoreUtilSetGameLiveStreamingOnAirFlag -sceBgftServiceIntDebugDownloadCorruptPkg -sceNpSignalingGetConnectionStatus -scePlayReadyDomainCertEnumNext -sceRtcSetTime_t -sceVrTrackerSaveInternalBuffers -scePrintUlpCmdHdr -sceFiosFileDeleteSync -sceLoginMgrServerLoginServiceNotifyRequestFinished -sceHttp2SetRequestNoContentLength -sceNetBind -sceNpWebApi2Terminate -sceAmprAprCommandBufferMapDirectBegin -sceDeci4hDrfpMkdir -sceNpScoreGetRankingByAccountIdPcIdAsync -sceMbusDebugTerminateProcess -sceUserServiceSetShareButtonAssign -sceHttp2ReadDataAsync -sceNpTusTryAndSetVariableAAsync -sceVideoRecordingQueryMemSize2 -sceAutoMounterClientRegisterCallback -sceFiosCacheContainsFile -sceFiosOpSetBuffer -sceNpTusGetMultiSlotDataStatusVUserAsync -sceDataTransferTargetAbortSendSsoOld2New -sceNpTrophy2RegisterContext -scePthreadRwlockTrywrlock -sceHmd2GetDeviceInformation -sceNpUniversalDataSystemIntRecordObjectSetUInt64 -sceGpuExceptionGetStatus -sceSslSetSslVersion -sceCesUtf16ToEucCn -sceUserServiceSetPbtcTuesdayHoursStart -sceVencCoreQueryPresetEx -sceSystemServiceIsScreenSaverOn -sceNpInGameMessageTerminate -sceKernelDeleteAmprEvent -scePthreadMutexSetyieldloops -sceGnmSetPsShader -sceShellCoreUtilMountHddForRestore -sceVdecwrapCreateDecoder -sceDbgKeyboardInit -sceBgftServiceIntDebugDownloadRegisterPkg -sceGnmGetDbgGcHandle -sceCameraSetSaturation -sceRazorGpuInit -sceAvControlChangeOutputMode -sceBgftServiceIntDownloadGetPlayGoProgress -sceShellCoreUtilGetPbtcUserInfoList -sceContentExportFromFileWithContentIdList -sceCesSJisGetCode -sceAppContentRequestPatchInstall -sceVdecCoreAnalyzeStream -sceImeDialogForceClose -sceGnmDingDong -sceKernelReboot -sceClKernelCreateEventFlag -sceSaveDataDebugCleanMount -sceGameLiveStreamingStopSocialFeedbackMessageFiltering -sceNpIntRegisterGamePresenceCallback -sceCesMbcToUtf16le -scePlayReadyDebugPrintf -sceAmprCommandBufferReset -sceAppInstUtilAppInstallCloudGame -sceFsMountDownloadData -sceAgcDcbSetPredication -sceGameUpdateDeleteRequest -sceNpTusGetMultiSlotVariableAsync -sceNpScoreRecordGameData -sceAppContentTemporaryDataUnmount -sceUserServiceSetGlsHintFlag -sceGnmGetResourceType -sceRudpSetMaxSegmentSize -sceFontStyleFrameUnsetScale -sceShellCoreUtilGetGpuLoadEmulationMode -sceNetSend -sceSystemLogger2Terminate -sceFiosOpIsDone -sceNgs2StreamDestroy -sceNetDumpCreate -sceIduUtilIsAppInstalled -sceFontGraphicsStructureSurfaceTexture -sceUsbdGetDeviceDescriptor -scePadIsBlasterConnected -sceGnmSpmSetMuxRam2 -sceG2PDialogOpen -sceContentSearchOpenMetadataByContentId -sceHmdFillDistortionBuffer -sceNetUsleep -sceAudioOut2GetSystemState -sceUserServiceSetVolumeForGenericUSB -sceAjmMemoryRegister -sceSblRcMgrIsIntdevForPSM -sceHmdInternalDfuSetMode -sceNpWebApi2SetMultipartContentType -sceOpusCeltEncCreateEx -sceKernelGetSafemode -sceDeci4hDrfpWaitMountDone -sceApplicationSetControllerFocus -sceKernelGetSanitizerNewReplaceExternal -sceNetResolverConnectAbort -_sceNpHeapStrndupImpl -sceNpManagerIntClearPlusMemberType -sceAppInstUtilAppInstallPkg -sceAppInstUtilAppCancelableUnInstallByUser -sceVisionManagerGetResultOfCalibrateTrackingLed -sceSslGetFingerprint -sceNpEntitlementAccessRequestServiceEntitlementInfoList -scePadSetExtensionReport -sceNpCondSignalAll -sceGnmSysClose -sceCesSJisUcsProfileSetSbcs -sceKernelGetSanitizerMallocReplace -scePthreadSetaffinity -sceAmprCommandBufferWriteAddressFromTimeCounter_04_00 -sceNpManagerIntGetGameTitleToken -sceTsStopFileStreaming -sceAvPlayerChangeStream -sceAppContentTemporaryDataMount2 -sceKernelMemoryPoolGetBlockStats -sceUserServiceTerminate -sceVisionManagerRequestPadTracking -sceAppInstUtilCheckAppSystemVer -sceAgcCbSetShRegisterRangeDirectGetSize -scePlayReadyReaderFreeOpaqueContent -sceCompositorGetVideoAddress -sceNetCtlUnregisterCallbackIpcInt -sceBgftServiceIntDownloadPauseTask -sceGnmDingDongForWorkload -sceNpScoreSetPlayerCharacterId -sceUltConditionVariableSignalAll -_init_env -sceNpManagerIntLoginBind -sceNetBweStartInternetConnectionTestIpcInt -sceNpUtilNumChars -sceSystemServiceReenableVoiceRecognition -scePthreadCondattrSetclock -sceMbusEventCreate_ -sceSlimglServerRegisterShaderFile -sceCesUtf16beToBig5 -sceNpWebApiIntCreateCtxIndExtdPushEventFilter -ScePsmWapiCryptoPolicyCallback -sceNpPush2WaitCallback -sceHmdInternalSetForcedCrash -sceAmprAmmMeasureAmmCommandSizeModifyMtypeProtectWithGpuMaskId -sceCameraGetSharpness -scePktMgrSendDeciPacket -sceNpTusSetMultiSlotVariable -sceVideoCoreGenerateThumbnail -sceNetConfigDelDefaultRouteDev -sceFsMountSaveData -sceAudioOutGetSimulatedBusUsableStatusByBusType -sceKernelEventLogInit -_sceNpAllocatorStrdup -sceHmd2Initialize -sceSaveDataSaveIcon -sceHttp2DeleteRequest -sceNetBandwidthControlGetDefaultParam -sceKernelSetBootReqNotify -sceHttpCacheDeleteRequest -sceUserServiceSetMicLevel -sceCamera2GetExposureGain -sceMouseClose -pthread_setname_np -sceKernelDeleteWriteEvent -sceUserServiceSetUserStatus -sceVideoCoreInterfaceFlushVideoOutBuffer -sceKernelProtectDirectMemoryForPID -sceNpTrophySystemCreateHandle -sceRemoteplayClearConnectHistory -sceFiosStatisticsReset -sceLncUtilTerminate -sceCesRefersUcsProfileIso8859_2 -sceBgftServiceDownloadFindActivePatchTask -sceCompanionUtilGetEvent -sceNpAuthAbortRequest -sceHmdInternalDfuCheckPartialUpdateAvailable -sceNetShowRoute -sceNpIpcCreateRequest -sceGnmSetVgtControl -sceM4aacEncInitialize -sceAgcAcbEventWrite -sceSystemServiceUsbStorageGetdentsOpen -sceKernelAddFileEvent -sceSaveDataLoadIcon -sceUserServiceSetNpDateOfBirth -sceVencSetRateControlConfig -_sceNpManagerDefaultFreeImpl -sceFsDevpfsMountForFSMP -sceCustomMusicAudioOutSetAllMusicVolume -scePngDecDecodeWithInputControl -sceVoiceGetBitRate -sceAudioOutArbitrationInitialize -sceFontOpenFontSet -sceRazorCpuUserSignalPostEx -sceNetConfigSetDefaultRouteDev -sceKeyboardConnectPort -sceNgs2RackCreate -sceCameraStartByHandle -sceNetConfigWlanBackgroundScanStart -sceGnmSpmSetSelectCounter -sceRemoteplayImeGetEvent -sceCesSJisToUtf32le -sceNpManagerIntUpdateBcAccessToken -sceNpAsmClientGetNpComInfo2 -sceVdecCoreSetDecodeInputSvp -sceDebugGetUltRuntimeInfo -sceVoiceReadFromOPort -sceDataTransferTargetAbortGetDeviceInfoApplication -sceAmprCommandBufferWaitOnCounter_04_00 -sceNpSessionSignalingDeactivate -sceKernelMunmap -sceApplicationGetMode -sceNpUnregisterNpReachabilityStateCallback -sceNpGriefReportCdCreateRequest -sceNpTusAddAndGetVariable -sceNpServerErrorJsonMultiGetErrorCode -pthread_condattr_getclock -sceNetTerm -sceDataTransferHostNotifyEasySignInReady -sceUserServiceSetPbtcSundayHoursStart -sceGnmDrawIndirectCountMulti -sceKernelGetFakeFinalizeMenuForRcmgr -sceKernelDeleteSavedApp -sceUlpMgrVshMountCmd -sceNpTusGetMultiUserDataStatusForCrossSave -sceNetEventCallbackCreate -sceVnaSendAgentEvent -sceNpAppInfoIntCreateRequest -sceMatTagPool -scePerfTraceAprNameUpdate -scePigletGetShaderCacheConfiguration -sceNetInfoDumpStart -sceVrServiceDialogGetResult -sceFontCreateWords -sceShellCoreUtilPostPsmEventToShellUI -sceCesUhcToUtf16le -sceHttpCacheInit -sceAgcDcbSetIndexSizeGetSize -sceKernelSetGPO -sceValidationGpuGetDiagnosticInfo -sceGameLiveStreamingStartDebugBroadcast -scePerfTraceSpmCreate -sceCesEucJpToUtf32 -sceKernelIsAuthenticNeo -scePerfTraceAprNameDeleteBufferNotifyEvent -sceFsInitCreatePfsSaveDataOpt -sceCesUtf16StrToMbcsStr -sceAudioOut2PortDestroy -sceAgcDmaDataPatchSetSrcAddressOrOffsetOrImmediate -sceNpSnsFacebookDialogTerminate -sceAgcAcbAtomicGds -sceSaveDataSetSaveDataMemory2 -sceIduInit -sceAvSettingEnterAudioMuteForShutdown -sceNpTusSetMultiSlotVariableA -sceUserServiceGetSystemLoggerHashedAccountIdTtl -sceShellCoreUtilReleaseRemotePlayCpuBudget -pthread_suspend_user_context_np -sceFiosFHRead -sceNpPush2UnregisterNotificationCallback -sceNpMatching2GetSignalingOptParamLocal -sceShellCoreUtilShowErrorDialogWithFormatArgs -sceLoginMgrServerDialogNotifyOpenFinished -sceVnaSetLocation -scePadSetMotionSensorState -sceSystemServiceAddLocalProcessForPsmKit -sceVoiceSetThreadsParams -sceSystemStateMgrIsBdDriveReady -scePthreadMutexInit -sceDepthWaitAndExecutePostProcess -sceSharePlaySetProhibition -sceImeBackendGetConvertString -sceFontCharacterGetSyllableStringState -sceNpAsmClientClearNpTitleToken -scePs2EmuMenuDialogOpen -sceVoiceQoSSetRemoteEndpointAttribute -sceAgcAcbPushMarker -sceFontGraphicsStructureCanvasSequence -sceNpLookupNetInitWithMemoryPool -scePktMgrGetPacketSize -sceNpTrophyCaptureScreenshot -sceLncUtilUnregisterShellUI -sceShareGetRunningStatus -scePadTrackerUpdate -sceMouseSetHandType -sceFiosOpRescheduleWithPriority -sceAvPlayerGetStreamInfoEx -sceShellCoreUtilDeleteDownloadedTitleWorkaroundFile -sceSysmoduleIsCalledFromSysModule -sceNpAsmClientTerminate -sceVorbisDecRawSeekLap -sceNpAsmClientGetNpTitleTokenA -sceSpPthreadMutexLock -sceNetCtlApTerm -sceGameLiveStreamingLaunchLiveViewerA -sceSystemServiceUsbStorageUnregisterCallback -sceNpServiceChecker2IntFinalize -sceSystemLogger2GetTimestamp -sceAgcDriverSetFlip -sceAudioOutDeviceIdOpen -sceAgcDcbDrawIndirectGetSize -sceVnaSetSessionInfo -sceKernelSetTimezoneInfo -sceNpTusGetFriendsVariable -sceLncUtilGetAppStatusListForShellUIReboot -sceSdecCreateSw -sceNpManagerIntCheckNpAvailabilityByPid -sceSystemServiceIsAppSuspended -sceAgcSetCxRegIndirectPatchAddRegisters -sceRemoteplayNotifyMbusDeviceRegistComplete -sceNpGameIntentLaunchApp2 -sceGnmSqttSetUserdataTimer -sceUltFinalize -sceNpManagerIntPfAuth -sceCesUtf32leToGb -sceKernelMapToolMemory -sceVideoOutSysGetVblankStatus -sceGameUpdateAbortRequest -sceUpsrvUpdateGetFeatureListUrl -sceFontGraphicsCanvasGetPreprocess -scePadIsLightBarBaseBrightnessControllable -sceHmdInternalSeparateModeClose -sceHmdOpen -sceSystemServiceDisableVoiceRecognition -sceAudioOutSetSparkParam -sceVnaStopKeywordDetection -sceAmprAmmCommandBufferAllocatePaForPrt -sceBgftServiceIntUploadSetHighPriority -sceAjmInstanceAvailable -sceRtcSetCurrentTick -sceSystemServiceRequestPowerOff -sceClHttpCreateRequestWithURL -sceNpPushStopNotification -scePadDeviceOpen -sceFontGetEffectWeight -sceAudioPropagationSourceCreate -sceGnmDriverTriggerCapture -sceAvPlayerGetStreamInfo -sceNpTrophy2DestroyHandle -sceDebugGetThreadInfoByIdent -sceNpManagerIntMAccountId2UserId -sceDeci4hDrfpRead_fuse -sceUserServiceGetParentalDvdRegion -sceWorkspaceGetName -sceNpTrophyShowTrophyList -sceClPthreadAttrSetschedparam -sceFontStyleFrameSetResolutionDpi -sceCesUtf32StrGetIso2022Len -sceUserServiceSetKeyboardType -sceVideoCoreMediaSourceEndOfStream -sceNpManagerIntGetUserState -sceNpSignalingCreateContextA -sceUserServiceSetPbtcWednesdayHoursStart -sceVisionManagerRequestCalibrateHmd -sceNetApctlTerm -sceBgftServiceIntUploadGetTaskInfo -sceBufferDup -sceHmdInternalSetDebugTextMode -sceCesRefersUcsProfileCp865 -sceCompositorSetDebugPositionCommand -sceHmdInternalCrashReportClose -sceCompositorSetKeepDisplayBufferCommand -sceVideoOutSysClose -sceNpSessionSignalingGetConnectionFromPeerAddress -pthread_condattr_destroy -sceVideoOutSysSubmitSubWindowLayout -sceUsbdSetIsoPacketLengths -sceCustomMusicCoreBgmOpen -sceNpScoreDeleteRequest -sceImeKeyboardGetResourceId -sceRegMgrNonSysGetInt -scePssKeyboardTerminate -sceIduUtilGetMasterVersion -scePsmResourceCallback -sceNpMatching2GetRoomMemberDataExternalList -sceCesUtf8ToEucKr -sceCompositorSetSystemConfigWithMask -sceNetApctlGetState -sceGnmInitialize -sceContentSearchInit -sceSaveDataAbort -pthread_mutexattr_init -sceSslGetSubjectName -sceFiosFHSync -sceCesSJisToUtf16be -sceNpScoreGetRankingByAccountIdAsync -sceShellCoreUtilSetBgmProhibition -sceNpAsmGetNpCommInfo -sceNpScoreChangeModeForOtherSaveDataOwners -sceNpManagerIntUpdateVshAccessToken -sceDtcpIpTermAuthAsync -sceFontStyleFrameUnsetEffectSlant -sceFontGraphicsDrawingCancel -sceUltQueuePush -sceSpPthreadAttrDestroy -sceCesEucCnToUtf32 -_sceNpHeapShowMemoryStat -sceGameLiveStreamingEnableLiveStreaming -sceHmdInternalSetHmuPowerControlForDebug -sceAmprCommandBufferPushMarker -sceVideoOutAdjustColorSpaceConversion_ -sceCesUtf16beToGb -pthread_rwlock_reltimedrdlock_np -sceSystemLogger2SetAsyncPeripheralConnectionLog -sceShellCoreUtilGetAppLaunchedParamStringByBudgetType -sceSaveDataDebugFile -sceVisionManagerGetResultOfFindPadCorrespondRegion -sceAgcAcbAtomicMemGetSize -sceFontStyleFrameSetScalePixel -sceKernelNotifySystemSuspendStart -sceCesUcs2ToSJis -sceNetShowPolicyWithMemory -sceShellCoreUtilTestBusTransferSpeed -sceFontFtSupportOpenTypeOtf -sceSdmaCopyWindowT2T -sceDbgAmprAprGetErrors -sceLncUtilGetDbgExecutablePath -sceCompositorWaitPostEvent -sceCoredumpDebugTextOut -sceGnmGetPhysicalCounterFromVirtualized -sceHmdInternalGetVirtualDisplayHeight -sceUltGetUlthreadRuntimeInfo -sceNpMemoryHeapDestroy -sceNetPoolCreate -sceUltQueueDataResourcePoolDestroy -scePadSetLightBarBaseBrightness -sceIduUtilGetSettingStr -sceRegMgrGetBinInitVal -sceHandTrackerGetDefaultParam -sceAjmInstanceCodecType -sceNpCmpOnlineId -sceRegMgrEvtGetRegId -sceLibSecureRandom -sceSystemServiceActivateHevcSoftIsActivated -sceNpSnsTwitchDialogOpen -sceVideoOutSysResetAtGpuReset -sceShellCoreUtilNotifyPsnAccountInfoReceived -sceNpTrophySystemCreateContext -sceUsbStorageSetFakeMapLockForDebug -sceNpPushRegisterNotificationCallback -sceAjmInitialize -sceFrontPanelDisplayInitialize -sceMatAgcRegisterOwner -sceGnmSqttSwitchTraceBuffer2 -sceUserServiceSetLightBarBaseBrightness -sceVideoCoreReleaseDecoderResourceForBeWrapper -sceAvSettingDriverChangeConnectionStatus -sceAjmBatchJobControlBufferRa -sceCamera2Open -sceRazorCpuJobManagerDispatch -sceAvSettingRemoveCallbacks -sceHmdReprojectionStart -sceNpManagerIntGetAccountDateOfBirth -scePadGetSphereRadius -sceCameraSetAttribute -sceMouseExtensionRead -pthread_setschedparam_np -sceMbusDebugDisableBgmForShellUi -sceNpWebApi2InitializeForPresence -sceHmdInternalResetLedForVsh -sceLibSecureRemoveCipher -sceVnaSetTtsDuckingLevel -sceGnmDebugModuleReset -sceApplicationNotifyVshReady -sceFontGraphicsSetupHandleDefault -sceNetEpollWait -scePigletReleaseSystemMemory -sceUpsrvUpdateDoCheckBootUpdate -sceNpCommerceHidePsStoreIcon -sceUpsrvUpdateDoUpdateWithPupPath2 -sceVideoOutSysUpdateDisplayParameter_ -sceShellCoreUtilExitMiniAppWithValue -sceOpusSilkEncCreate -sceUserServiceSetPbtcAdditionalTime -sceHmdInternalDfuOpen -sceNpManagerIntLoginGetAccountId -sceDebugGetMonoVMList -sceLoginMgrServerNotifyEasySignInFinished -sceNpLookupNetDeleteTitleCtx -sceNgs2StreamQueryBufferSize -sceSaveDataDirNameSearch -sceLncUtilGetAppIdListOfBigApp -sceKernelGetPs4SystemSwVersion -_sceApplicationGetAppId -sceSystemLogger2SetLogAsync -sceAgcDriverGetTFRing -sceNpGetNpReachabilityState -sceAvControlChangeOutputModeForDiag -sceAgcAcbJump -sceKernelMemoryPoolMove -sceUsbdGetDeviceSpeed -pthread_attr_getscope -sceRnpsAppMgrRequestUpdateCheck -sceSystemServiceNavigateToGoBack -sceNpReallocImpl -sceFontFtInitAliases -sceNpSnsIntFbGetSystemAccessToken -sceNpManagerIntGetAccountLanguageA -sceSaveDataCancel -sceFsInitWorkspaceFileMetadataParam -scePerfPmcGetCounter -sceUsbdEventHandlingOk -sceHmdInternalSetDebugMode -scePlayReadyCdmiCreateMediaKeySession -sceVideoOutSysSetRedirectFlip -sceUsbStorageSetFakeWriteProtection -sceApplicationKill -sceSystemStateMgrCancelShutdownTimer -sceNpTrophyGetTrophyIcon -sceSaveDataGetEventInfo -sceAvPlayerSetLogCallback -sceNetCtlApDialogGetStatus -scePerfPmcL3GetCounter -sceNetApctlStop -sceVideoOutSysReadCrc64 -sceUserServiceGetSharePlayFramerateHost -sceCesUtf16leToEucKr -sceFontTextSourceSetDefaultFont -sceNetCtlGetBandwidthInfoIpcInt -sceAgcAcbPrimeUtcl2GetSize -sceVideodec2AllocateComputeQueue -sceAjmDecMp3ParseFrame -sceMouseDisconnectDevice -sceNpMatching2SignalingAbortConnection -sceFontGraphicsUpdateScaling -sceKernelAprSubmitCommandBuffer -sceVoiceChatDeleteRequest -sceKernelTraceMemoryTypeProtect -sceAudioPropagationSourceGetAudioPath -sceNgs2GeomApply -sceDeci4hDrfpChkGetConf -sceOpusDecDecodeWithPriorityAndTimeout -sceDeci4hDrfpCreate_fuse -sceBluetoothHidGetDeviceName -sceCamera2Start -sceNpTusGetMultiUserVariableAAsync -sceCesIso2022StrToUcs2Str -scePsmUtilGetSystemAssetManagerSize -sceCameraSetLensCorrectionInternal -sceDeci4hDrfpReaddir -sceMbusAcquireControl -ScePsmMonoPrivilegesFinishInit -sceNpManagerIntBindGetWebAppToken -sceBgftServiceIntExtUsbCheckActiveDownloadTasks -sceTsGetLiveStatus -sceAvControlGetHdcpStatus -sceSocialScreenDialogOpen -sceRegMgrResetVal -sceGnmGetResourceRegistrationBuffers -sceCompositorSetResolutionCommand -sceSystemServiceSetGpuLoadEmulationMode -sceUserServiceGetFriendCustomListLastFocus -sceHmdInternalCrashReportCancel -sceVnaRegisterCallback -sceRegMgrSyncHdd -sceVencCoreSetBitRate -sceUserServiceGetForegroundUser -sceHmdInternalSeparateModeGetVideoStatus -sceNpEntitlementAccessRequestConsumeUnifiedEntitlement -sceBgftServiceIntUploadStopTaskAll -sceKernelGetIpcPath -sceVencGetConfig -sceMsgDialogTerminate -sceNpGetState -scePerfPmcMcSeqGetCounter -sceFontGraphicsFillPlotSetLayout -sceUserServiceGetGlsTtsPitch -sceSysmoduleUnloadModule -sceContentExportGetProgress -sceRazorCpuWorkloadRunBegin -sceCesEucKrToUcs2 -sceAudioOut2LoContextDestroy -sceSlimglServerWaitRenderThread -sceMbusAcquireControlWithState2 -sceCameraOpenByModuleId -sceUpsrvUpdateGetImageWritingProgress -sceNpTrophySystemGetTrophyTitleIds -sceKernelStat -scePs2EmuMenuDialogGetResult -sceSystemServiceUsbStorageGetdentsClose -sceAgcAsyncRewindPatchSetRewindState -scePthreadAttrSetinheritsched -sceRegMgrSetBin -sceKernelAprResolveFilepathsToIdsForEach -sceNpLookupAbortRequest -sceAgcAcbWriteData -sceBgftServiceIntDebugPlayGoResume -sceAudioOut2GetSystemStateEx -sceVoiceQoSGetLocalEndpointAttribute -sceImeKeyboardOpen -sceVideoOutLatencyControlWaitBeforeInput -sceFontGetFontMetrics -sceAgcAcbSetFlip -sceMbusSetSocialScreenAudioMode -sceSystemServiceChangeCpuClock -sceSaveDataDebugEditDB -sceVdecswDeleteDecoder -sceNpTrophyIntCreateHandle -sceVencStopEncode -sceFsUfsCheckFixedCylinderGroupSize -sceAudioOutSetMorpheusParam -sceAppInstUtilAppRequestMoveApps -sceAppContentAddcontMountByEntitlemetId -sceContentExportCancel -sceNpWebApi2AddHttpRequestHeader -sceHmdInternalCheckDeviceModelMk3 -sceVencMapMemory -sceHttp2GetCookieStats -sceNpCreateAsyncRequest -sceRtcFormatRFC2822 -sceKernelSetGameDirectMemoryLimit -sceKernelGettimeofday -sceNetConfigGetIfaddr -sceVnaSetEnableAssistantSettings -sceNgs2GetWaveformFrameInfo -sceAudioOutOpen -sceErrorDialogClose -sceBgftServiceIntDownloadResumeTaskAll -sceVideoOutSysCursorIsUpdatePending -pthread_set_user_context_np -sceVideoOutDeletePreVblankStartEvent -sceVoiceGetPortAttr -sceOpusSilkEncEncodeFloatWithPriorityAndTimeout -sceAgcDriverRegisterGdsResource -sceCamera2GetCalibrationData -sceVideoOutSetGamutMetadata_ -sceRazorCpuShutdownDataTags -sceSaveDataDialogIsReadyToDisplay -sceAmprCommandBufferWriteAddressFromCounterPair_04_00 -scePthreadGetspecific -sceBackupRestoreUtilGetBackupParam -sceFiosFHOpen -sceAudioOut2SpeakerArrayDestroy -sceNpManagerIntGetIssuerId -sceNetConfigRoutingStart -sceNpManagerIntGetUserNum -scePadSetLightBarBlinking -scePthreadMutexattrGetgen -pthread_attr_setschedparam -sceUltQueueDataResourcePoolGetWorkAreaSize -sceImeFilterText -sceDebugGetUltRwlockInfo -sceNpHeapShowStat -scePadSetAutoPowerOffCount -sceDevUsbTerm -sceFsUfsMkfsForExternalHDD -sceAgcAcbAcquireMemGetSize -sceFontDestroyRenderer -scePlayReadyCdmiDestroyMediaKeySession -sceNetClearDnsCache -sceFsLvdWaitResumed -sceAjmBatchJobInitialize -sceApplicationGetCoredumpDirAndFileName -sceLncUtilInitialize -sceSystemServiceActivateHevcSoft -sceNpWebApiClearUnusedConnection -sceRegMgrBackupPullData -sceClNetTerm -sceDataTransferTargetEventIsIPv6Ready -sceAmprCommandBufferPushMarkerWithColor -sceVshAvcapClose -sceNpAppInfoIntCheckAvailabilityAllA -sceSysUtilSendSystemNotification2 -sceImeBackendAllDeleteConvertString -sceNpTssGetSmallStorageAsync -sceMoveReadStateRecent -sceNpSessionServiceSendPlayerSessionInvitations -sceRazorIsLoaded -sceSystemServiceLaunchWebApp -sceMbusDebugCheckProcessResume -sceAgcCreateShader -sceHmd2Open -sceDseehxExtInit -sceHttpsEnableOption -sceFontWritingRefersRenderStepCharacter -sceAgcSdmaCopyWindowGen2 -sceSystemServiceGetAppIdOfBigApp -sceUserServiceSetGlsBroadcastersCommentColor -sceGnmDrawIndirectMulti -sceShellCoreUtilGetAppLaunchedParamString -sceUserServiceGetGlsIsFacebookEnabled -sceMusicCoreServerSetTrack -sceDataTransferTargetEventIsPwrReqReady -sceNpManagerIntBind -sceApplicationNotifyVshMainOnStandby -sceKernelVirtualQueryAll -sceVrTracker2LocateCoordinateSystem -sceKernelGetModuleInfoFromAddr -sceUserServiceSetTopMenuLimitItem -__stack_chk_guard -sceGnmRequestMipStatsReportAndReset -sceVideodecReset -sceNpEulaDialogTerminate -sceSystemServiceShowEyeToEyeDistanceSetting -ScePsmMonoThreadSetMaxThreads -sceCompositorHandleProcessEvents -sceAppInstUtilGetTitleIdFromPkg -sceDeci4hDrfpReaddir_fuse_fullpath -scePerfPmcStart -sceDevUsbResume -sceNpUtilGetShareTitleCheck -pthread_setconcurrency -sceShellCoreUtilIsIDUState -sceShellCoreUtilAcquireSharePlayCpuBudget -sceUserServiceGetFileBrowserSortContent -sceDeci4hDrfpGetMsgBuf -sceNetShowRoute6 -sceShellCoreUtilPostLaunchConfirmResult -sceNpCalloutStartOnCtx -sceAppInstUtilAppRecoverApp -sceFontWritingInit -sceDeci4hDrfpRead -sceUlpMgrSendData -sceCesRefersUcsProfileCp874 -scePlayReadyCdmiDecryptOpaque -sceCesRefersUcsProfileCp850 -scePlayGoDialogInitialize -sceVideoOutCursorDisable -sceCompositorSetRepeatCommand -sceNpXmlParse -sceNpStrToInt32 -sceLibcMspaceMallocUsableSize -sceUserServiceGetNpOfflineAccountId -sceAjmBatchStartBuffer -sceRtcSetConf -sceKernelGetSystemLevelDebuggerModeForRcmgr -sceCoredumpUnregisterCoredumpHandler -sceSdecCreateSwHevc -sceMbusDisableBgmForShellUi -sceFsUfsRecryptGetState -sceCompositorCommandGpuPerfEnd -sceSaveDataDialogClose -_sceNpManagerCreateMemoryFromKernel -sceCompanionHttpdRegisterRequestBodyReceptionCallback -sceNetConfigWlanDiagSetTxFixedRate -sceNpGriefReportPost -sceNpWebApi2PushEventDeleteHandle -sceCesRefersUcsProfileCp863 -sceMusicPlayerServicePause -sceLibSecureInit -sceCesUcsProfileInitSJis2004X0213 -sceRudpEnableInternalIOThread2 -sceNKWebTerminate -sceFontGraphicsReportError -sceFiosDebugDumpDate -sceNpTusGetMultiUserDataStatusAVUser -sceAppInstUtilRestoreDataSource -sceNpIdMapperAbortRequest -sceUserServiceSetFriendCustomListLastFocus -sceNpManagerIntCheckPlus -sceClPthreadAttrSetstacksize -sceNpUniversalDataSystemIntRecordDataEstimateSize -sceSystemServiceKillLocalProcessForPs2Emu -sceSystemGestureGetTouchEvents -sceSysmoduleIsLoaded -sceNpManagerIntAuthGetIdToken -sceOpusCeltEncDestroy -sceRtcCompareTick -scePerfTraceAprNameStop -sceKernelAllocateDirectMemoryForApp -sceNetApctlRegisterCallback -sceShellCoreUtilGetUIStatus -sceSystemServiceChangeMemoryClockToMultiMediaMode -sceUserServiceGetLoginUserIdList -sceNpMatching2RegisterContextCallback -sceApplicationRaiseExceptionToPid -sceKernelAioCancelRequest -sceAgcSetUcRegIndirectPatchSetNumRegisters -sceRudpGetSizeWritable -sceShellCoreUtilGetSmrHddInfoString -sceKernelOpenInternal +ScePsmMiniGetDebugOptions +ScePsmMonoAddInternalCall +ScePsmMonoArrayAddrWithSize +ScePsmMonoArrayElementSize +ScePsmMonoArrayElementType +ScePsmMonoArrayLength +ScePsmMonoArraySizeInBytes ScePsmMonoAssemblyGetImage -sceKernelFsync -sceSaveDataDeleteCloudData -sceFsCreatePfsTrophyDataImage -sceVideoCoreInterfaceSubmitCanvases -sceCesMbcToUtf32le -sceKernelGetProcessName -sceUpsrvUpdateDoUpdateAsync -sceNpTusGetMultiUserVariableAVUser -sceNpAsmClientGetNpComInfo2WithHmac -sceVdecswReleaseComputeQueue -sceVideoOutSysSetZoomBuffers -sceVideoOutDeleteSetModeEvent -sceEditMp4Edit -sceNpWebApi2PushEventRegisterCallback -sceNpIntIsOnlineIdString -sceVideoOutSysAddSetModeEvent2 -sceNpTrophy2SystemCreateContext -sceNpTrophy2AbortHandle -sceMbusDumpHandleStatusInfo -sceFsISSchedResultToSlot -sceVideoRecordingGetStatus -sceClHttpCreateConnectionWithURL -sceNpCondWait -sceVideoOutSysCursorSetPosition -sceFiosGetThreadDefaultOpAttr -sceSystemServiceParamGetInt -sceDataTransferRequestSearchPS4 -sceFontStyleFrameSetEffectWeight -sceUserServiceGetFaceRecognitionRegisterCount -sceNpSnsTwitchDialogGetStatus -sceVideoNativeExtEssential_Finalize -scePlayGoDialogClose -sceNpTusTryAndSetVariableForCrossSaveVUser -sceCompositorGetDummyAddress -sceKeyboardPadEmulateClose -sceUserServiceSetCreatedVersion -sceRegMgrSetStr -sceGnmComputeWaitOnAddress -sceAvSettingGetHdmiRawEdid -sceKernelChmod -sceValidationGpuClearState -sceFontGraphicsDrawRectangleShape -sceNpTrophy2SystemRegisterTitleSyncedCallback -sceKernelGetProcessTimeCounter -sceUpsrvUpdateCheckDoCheckSystemForSettings -sceNpCreateThread -sceGnmUnregisterOwnerAndResources -sceClHttpSetRedirectCallback -sceDebugStopOnDLLoad -sceNpManagerIntGetAccountCountryA -scePthreadSemTimedwait -sceNpSnsFacebookDialogUpdateStatus -sceCesUtf16StrToIso2022Str -sceNpIntRegisterCheckCallback -sceCameraAudioGetData -sceShellCoreUtilActivateGetStatus -sceDiscMapGetPackageSize -sceUsbStorageRequestUnmap -sceAudio3dPortGetParameters -sceHttp2AddCookie -scePadSetProcessFocus -sceFontWritingGetRenderMetrics -scePadReadBlasterForTracker -sceUserServiceSetGlsMessageFilterLevel -sceFsWsUmount -sceHttpTrySetNonblock -sceAvControlIsDeepColorSupportedByMonitorInfo -sceGameLiveStreamingScreenInitializeSeparateModeParameter -sceUsbdBulkTransfer -sceSulphaInit -scePlayReadyCloneDecryptContext -sceDtcpIpCheckActivationAsync -sceCtrlpPlayStop -sceNpScoreWaitAsync -pthread_mutex_setyieldloops_np -sceDevUsbSuspend -scePlayReadyEnvelopeInitializeRead -sceNpFriendListDialogUpdateStatus -sceFsDrfsResumeSocket -sceClPthreadDetach -sceAvSettingSetAvOutputMode -sceNpTrophySystemWrapGetTrophyDetailsArray -sceAgcDriverSysIsGameClosed -sceBgftServiceIntDownloadQueryTaskSection -sceImeVshUpdateContext2 -sceImeDialogGetCurrentStarState -sceNpSnsIntUnlink -sceFsUfsCheckCleanFlag -sceVisionManagerSetCallbackForUpdateRunningStatus -sceCesMbcToUtf16be -sceGnmGetProtectionFaultTimeStamp -sceNpGriefReportIsInit -sceFsLvdAttach2 -sceSystemServiceChangeVceClock -sceKernelWaitEqueue -sceHttpDbgGetRequestStat -scePthreadCondDestroy -sceSdmaUnmapUserVAddress -sceApplicationBeginSclkChange -sceSslEnableOptionInternal -sceRemoteplayGiveApproval -sceKernelGetCurrentCpu -_sceNpMallocImpl -sceNpTrophySystemGetNextTitleFileEntryStatus -sceLncUtilGetAppTitleId -sceMusicCoreServerKillCurrentCore -scePerfPmcMcSeqStart -sceUsbdGetStringDescriptor -sceAudioOut2Initialize -sceIduUtilUpdateSelf -sceVoiceChatGetChatGroupMemberInfoList -sceHmdInternalSetSidetone -sceRemoteplayGetConnectionStatus -sceHmdGetFieldOfViewApprox -scePlayGoGetOptionalChunk -sceNetBandwidthControlSetIfParam -sceRemoteplayGetConnectHistory -sceMusicCoreServerRegistEventCallback -sceFsISSchedConfigThread -sceNpUniversalDataSystemIntCreateRecordObject -sceAgcDriverGetGpuRefClks -sceKernelAllocateTraceDirectMemory -sceUserServiceGetAccessibilityKeyremapData -sceShellCoreUtilSetPsStoreIconState -sceDeci4hCreateHostProcess -sceShellCoreUtilGetGnmCompositorOnScreenProfilerFlag -sceSysmoduleLoadModule -sceApplicationSystemSuspend -sceEditMp4QueryMemSize -sceUltGetQueueInfo -sceDataTransferTargetRequestActivate -sceUserServiceSetNotificationSettings_1 -sceSaveDataInitializeForCdlg -sceHmdInternalSeparateModeOpen -scePadStopRecording -sceVoiceResumePort -sceGnmSetVsShader -sceAmprMeasureCommandSizeWriteAddressFromTimeCounter_04_00 -sceShellCoreUtilGetCheckerStringEx -sceCamera2SetHue -sceUserServiceSetAgeVerified -sceMoveGetCalibrationInfo -sceUltReaderWriterLockDestroy -sceUltUlthreadJoin -sceHmdInternalMmapGetModeId -sceAudioPropagationReportApi -sceSystemServiceInitializeForShellCore -sceGameLiveStreamingScreenSetMode -scePlayerInvitationDialogTerminate -sceAvSettingChangeOutputModeForDiag -sceMatUnregisterAllResourcesForOwner -sceSystemServiceOpenTournamentOccurrence -sceHmdDistortionGet2dVrCommand -sceKernelAprResolveFilepathsToIdsAndFileSizes -sceHmd2GetFieldOfViewWithoutHandle -sceNpManagerIntGetNpIdByOnlineId -sceNpManagerUtilGetVshEapScopeList -sceUserServiceSetGlsCameraContrast -sceFiosIOFilterGetInfo -sceSlimglCompositorReleaseIndex -sceRtcTickAddWeeks -sceDbgVideoOutRemoveProcessAttribute -sceNpTrophySystemWrapGetPlayedTrophyTitles -sceShellUIUtilGetDefaultQueryParameter -sceCamera2GetGamma -sceSystemStateMgrTurnOff -pthread_mutex_isowned_np -sceAppInstUtilAppInstallContentPush -sceSulphaShutdown -sceNpScoreGetFriendsRankingA -sceFiosFHPwriteSync -sceSpPthreadMutexDestroy -sceNpAllocateKernelMemoryWithAlignment -sceLncUtilKickCoredumpOnlyProcMem -sceKernelReleaseToolMemory -sceClPthreadMutexDestroy -sceGnmRequestFlipAndSubmitDone -sceSystemStateMgrSendCecOneTouchPlayCommand -sceGnmSqttSetUserData -sceNpMatching2JoinRoomA -sceKernelIccIndicatorShutdown -sceUserServiceSetHmuZoom -sceFiosFileTruncateSync -sceUserServiceSetParentalGame -sceNpWebApiSetMaxConnection -sceAmprCommandBufferWriteAddressFromCounterOnCompletion -sceAgcDriverSubmitAcb -sceNpManagerUtilDebugDumpByte -sceBdSchedDeconfigure -sceNgs2SystemLock -sceAudioInDeviceIdHqOpen -scePlayGoSetToDoList -sceVnaRequestDownloadCahcedTts -sceRemoteplayImeFilterResult -sceNpWebApiCheckTimeout -sceFontGetGlyphExpandBufferState -sceNpManagerIntNpId2UserId -sceRazorCpuEndLogicalFileAccess -sceCompositorSetCompositeCanvasCommandInC -sceGnmSqttStopTrace -sceSaveDataDebug -sceNpScoreCreateRequest -sceUpsrvUpdateGetEulaStr -sceShellCoreUtilIsSharePlayCpuBudgetAcquired -sceVideoRecordingTerm -sceNgs2SystemRunCommands -sceShellCoreUtilDeleteSmrHddDummyData -sceDeci5Close -sceContentBinderSearchDifference -sceHttpSetPolicyOption -sceIduUtilIsStaffMode -sceNpGriefReportWriteActivityAttachFile -sceUserServiceGetUserGroupNameList -sceImeVshSetPreeditGeometry -sceAudioOut2PortGetState -sceVideoOutDeleteDisplayPositionEvent -sceNgs2PanGetVolumeMatrix -sceSystemServiceGetPSButtonEvent -sceCompositorGetAnotherProcessVideoSize -sceUltReaderWriterLockUnlockWrite -sceHttpsGetCaList -sceCesUtf16ToUhc -sceAmprAmmMeasureAmmCommandSizeModifyProtectWithGpuMaskId -sceFontRenderSurfaceInit -sceLoginMgrServerCheckSafetyNoticeShown -scePthreadSetconcurrency -sceNetConfigAddIfaddr -scePthreadKeyCreate -sceVdecswFlushDecodeOutput -sceSystemStateMgrWaitVshAutoUpdateVerifyDone -sceAvSettingSetVideoOutModeAny -sceRemotePlayClientAddEventListener -sceSrcUtilityInitializeEx -sceMoveTrackerGetWorkingMemorySize -sceNpManagerIntGetParentalControlInfoA -sceSharePlayCrashDaemon -sceMouseSetPointerSpeed -sceUserServiceSetGlsCameraEffect -sceNetIoctl -sceNpUniversalDataSystemIntDestroyRecordData -sceIduUtilGetSchedule -sceLibcMspaceRealloc -sceCesRefersUcsProfileAscii -scePadGetControllerInformation -sceSaveDataCreateTransactionResource -sceNpAuthPollAsync -sceHmdInternalDfuSendSize -sceNpUniversalDataSystemIntRecordArraySetObject -sceVrTrackerGpuWait -sceVideoCoreUnregistEventCallback -sceNetCtlInit -sceApplicationSpawnAndSetAllFocus -sceUpsrvUpdateCreateUpdateTask -sceFaceTrackerRegisterFixUserIdCallback -sceLoginMgrServerNotifyTutorialShown -sceUserServiceGetImeInitFlag -sceHmdGetWideNearDistortionCorrectionCommand -sceNpAsmClientCreateRequest -sceAppContentDownload0Expand -sceNpMatching2GetMemoryInfo -sceOpusSilkEncGetSize -sceHmdReprojectionStartMultilayer2 -sceRegMgrBackupPushData -scePthreadMutexattrGettype -sceRegMgrEvtGetCnt -sceHmdGetDistortionCorrectionCommand -sceUltUlthreadRuntimeGetWorkAreaSize -sceIduUtilShowOverlay -sceImeVshClose -sceShellCoreUtilGetFreeSizeOfAvContentsTmp -sceAt9EncCreateEncoder -sceNetSendto -sceNetCtlGetStateIpcInt -sceLibcMspaceGetFooterValue -sceVoiceSetMuteFlag -sceFiosDebugStatisticsReset -sceFsExternalStorageDeconfigure -sceImeDialogTerm -sceAgcDriverGetSetWorkloadsActivePacketSize -sceVideoCoreMediaSourceAppendData -sceCoredumpConfigDumpMode -sceVorbisDecCrossLap -sceAmprCommandBufferGetNumCommands -sceDebugGetVirtualMemoryInfo -scePthreadRwlockattrSettype -sceUltMutexUnlock -sceAudioOutSetJediSpkVolume -scePlayReadyEnvelopeOpen -pthread_condattr_getpshared -sceNpStrnParseHex -sceWebBrowserDialogUpdateStatus -sceSaveDataDownload -sceCompanionHttpdSetBody -sceSaveDataSetSaveDataMemory -sceUpsrvUpdateRequestDownloadPup -sceMusicCoreServerGetEvent -sceFsExternalStorageInitialize -_sceUltSemaphoreCreate -sceAudiodecTermLibrary -sceVideoCoreCancelThumbnail -sceFontMemoryTerm -sceMusicFwSetVolume -sceShellCoreUtilIsEyeDistanceAdjusted -sceDeci4hDrfpFstat_fuse_fullpath -sceLibcInternalMemoryMutexEnable -sceSystemGestureGetTouchEventsCount -pthread_join -s_fixed_count -sceHttpSetRedirectCallback -sceAgcSuspendPoint -sceHmd2ReprojectionSetRenderConfig -sceAudiodecCpuClearContext -sceBluetoothHidGetInputReport -sceRegMgrPrintInfo -sceVrServiceDialogClose -sceGameLiveStreamingScreenConfigureSeparateMode -sceNpServiceChecker2IntDestroyRequest -sceAgcSdmaCopyTiledGen2 -sceSlimglServerRegisterShaderBinary -sceUserServiceGetAccessibilityZoomEnabled -scePadGetDeviceId -sceAgcDcbSetWorkloadComplete -sceVdecCoreSetDecodeOutputSw -sceAgcGetSemaphoreLabel -sceOpusSilkEncEncodeFloatWithPriority -scePadGetExtControllerInformation -sceVideoOutRazorRecallCallbacks -sceUserServiceSetPbtcSundayDuration -sceCameraGetCalibData -sceRegMgrPrivateStorageDirCount -sceSaveDataBindPsnAccountForSystemBackup -sceSysmoduleLoadModuleInternalWithArg -sceClPthreadMutexattrDestroy -sceMbusGetSparkState -sceNpAsmCreateRequest -sceNpManagerUtilConvertNpIdToJid -sceVideodec2MapDirectMemory -sceNetCtlUnregisterCallbackV6 -sceVdecswAllocateComputeQueue -sceMbusGetSimulatedBusUsableStatusByBusType -_sceLibcCalloc -sceUserServiceSetGlsBcTitle -sceEsvmEngineRequestMediaKeySystemAccess -sceAppInstUtilAppGetInsertedDiscTitleIdList -sceNpGriefReportWriteJsonFile -sceNpFriendListDialogGetResultA -sceAppInstUtilAppCancelGetAppOtherSize -sceFsLvdAttachSingleDefaultImage -sceAgcCbQueueEndOfPipeActionGetSize -sceDebugGetDebugRegisterStatusMap -pthread_mutex_init_for_mono -sceNetGetSockInfo -sceVencSetConfig -sceLibSecureCryptographyDecrypt -sceScreenShotGetAppInfo -sceNpRemotePlaySessionSignalingGetCustomProperty -sceDepthSetSrParameter -_sceNpIpcDefaultFreeImpl -sceNpWebApi2PushEventUnregisterCallback -sceUserServiceSetFileSelectorFilter -sceHttpParseResponseHeader -sceCameraWaitForEveReady -sceUserServiceSetGlsLiveQuality2 -sceUserServiceSetParentalGameWhiteList -sceShellCoreUtilGetShellUIVMStats -ScePsmMonoDomainGet -sceCesJisGetLevel -sceFsLvdEnableLayer -sceVoiceChatCreateRequest -sceGnmSdmaClose -sceHidControlSetJediAudioOutPath -sceNpUniversalDataSystemCreateHandle -sceUserServiceIsLoggedInWithoutLock -sceSystemServiceReenablePartyVoice -sceMbusResolveByUserId -sceKernelTerminateSysCore -sceGameLiveStreamingSetMetadata -sceVdecCoreMapMemory -sceSlimglClientLiveTimeout -sceSaveDataDebugCompiledSdkVersion -_sceFiberInitializeImpl -sceMatMtypeprotect -sceFontDestroyWords -sceAudioInSetSparkSideTone -sceCesEucKrToUtf16le -sceSystemLogger2SetEventAsync -sceAgcWaitRegMemPatchMask -sceVrServiceDialogInitialize -sceNpTusWaitAsync -sceDseehxConvert -sceUltInitialize -sceValidationGpuRegisterInitContext -sceVideoOutGetHdmiKsvList_ -sceRudpPollControl -sceNpProfileDialogUpdateStatus -sceCameraGetRegistryInfo -sceSaveDataDialogProgressBarSetValue -sbuf -sceNpSessionSignalingGetConnectionFromNetAddress2 -sceNpServerErrorJsonParseMultiInit -sceKernelIccSetCPMode -_sceLibcStdThreadStackSizeInit -sceVoiceChatRequestUpdateGameSessionVoiceChatChannelName -sceAgcAcbAtomicGdsGetSize -sceCesUtf32ToEucCn -sceRegMgrPrivateStorageInject -sceCesUtf32StrToMbcsStr -sceAudiodecCpuInitDecoder -sceAvSettingNotifyAudioOutMode -sceAvPlayerStreamCount -sceAppMessagingSetEventFlag -sceSslInit -sceKernelGetVrCaptureSize -sceAc3EncWaitEncode -sceDebugGetCrashInfoDetailForCoredump -sceNetCtlApGetConnectInfo -sceCameraAudioGetData2 -sceVoiceVADAdjustment -sceVshAvcapTerm -sceUserServiceGetShareStatus3 -sceGameLiveStreamingPostSocialMessage -sceFontGraphicsProcessSetSyncPolicy -sceNetCtlGetNetEvConfigInfoIpcInt -sceNpTusCreateTitleCtx -sceAudioPropagationSourceRender -sceSslRecv -sceCesUcs2ToMbc -sceKernelNotifySystemSuspendResumeProgress -sceUserServiceSetImeLastUnit -sceVideodec2CreateDecoderBid -sceHttpGetRegisteredCtxIds -sceNpIntIsValidOnlineId -sceNpWebApi2GetHttpResponseHeaderValue -sceGnmSpmSetMuxRam -sceApplicationGetCompiledSdkVersionByAppId -sceVideoOutSysGetPortStatusInfoByBusSpecifier_ -sceNpManagerIntLoginSetAccountInfo -sceNpManagerIntGetSigninTelemetryInfo -sceShellCoreUtilExitApp -sceValidationGpuOnValidate -sceNetGetsockname -sceNpLwMutexTryLock -sceVoiceChatRequestJoinGameSessionVoiceChatChannel -sceFontStringRefersRenderCharacters -sceFiosResolve -sceWorkspaceApplyUpdateForDirectory -sceNpBandwidthTestInitStartDownload -sceNpHeapReallocImpl -sceKernelWriteModifyMtypeProtectCommand -sceUlpMgrCloseAllConnectedClients -sceSaveDataRegisterEventCallback -scePsmUtilGetOffscreenAssetManagerSize -sceGnmValidateDrawCommandBuffers -sceAudioPropagationSystemGetRays -sceLibcPafMspaceIsHeapEmpty -sceAgcAcbWaitRegMem -sceHttpsSetSslCallback -scePadInit -sceNetConfigDelIfaddr6 -sceHttpAbortRequest -sceUsbdResetDevice -sceAgcDcbSetUcRegistersIndirect -sceNpTrophyNumInfoGetTotal -sceContentBinderEnd -sceSystemServiceGetPlatformPrivacySetting -sceNpRegisterNpReachabilityStateCallback -sceKernelCheckedReleaseDirectMemory -sceSslDeleteSslConnection -sceFontStyleFrameUnsetEffectWeight -sceNpManagerIntUserSignout -sceGnmSysIsGameClosed -sceNpSignalingDeleteContext -sceCesMbcsStrToUtf32Str -sceVideoCoreMediaSourceGetSourceBufferEvent -sceFsMlfsUmount -sceAudiodecDecode2Ex -_sceLibcMallocStats -sceHmdInternalSetDeviceConnection -sceNgs2ParseWaveformData -sceUserServiceGetGlsIsRecievedMessageHidden -sceLibSecureCryptographySetContext -sceMbusTerm -sceNpGlobalHeapTerm -_sceNpIpcDestroyMemory -sceLibSecureHashMessage -sceLncUtilGetAppFocusedAppStatus -sceHttpSetProxy -sceKernelGetDataTransferMode -sceLncUtilGetApp0DirPath -sceFaceTrackerReset -sceAppInstUtilCancelDataDiscCopy -sceNgs2SystemRender -sceNpWebApiSetMultipartContentType -sceMbusNotifyDriverEvent -sceIduUtilGetBgftProgress -sceAgcDcbWriteData -scePthreadAtfork -sceNpPush2IsInit -sceContentSearchGetTotalContentSize -scePthreadRwlockattrDestroy -sceNpTrophy2SystemBuildGroupIconUri -sceSlimglServerSetupSocketPairingTransport -sceKernelAprResolveFilepathsWithPrefixToIds -sceRudpGetStatus -scePthreadSetBesteffort -sceLncUtilIsPs2Emu -sceLibSecureHashGetDigest -sceNpStrBuildHex -sceBackupRestoreUtilGetTitles -sceVideoOutSetBufferAttribute -sceRegMgrGetIntInitVal -sceRemoteplayNotifyOskStatus -sceFontRenderCharGlyphImageVertical -sceAgcDriverSetWorkloadComplete -sceHmdInternalGetVirtualDisplaySize -sceNpCmpNpId -sceApplicationRequestToChangeRenderingMode -scePerfTracePmDelete -sceAvControlChangeOutputLayout -sceNpPush2TriggerEmptyUserEvent -sceHttpSetInflateGZIPEnabled -scePadVrControllerReadState -sceDtcpIpActivateAsync -sceDebugSuspendThread -sceKernelIccSetBuzzer -sceVisionManagerRequestFindUserInRegion -sceGnmFlushGarlic -sceGnmValidateCommandBuffers -sceNpWordFilterCreateRequest -sceNpManagerIntGetServerError -sceAudioOut2UserGetSupportedAttributes -sceVoiceChatGetChannelMemberVoiceConnectionState -sceAutoMounterClientTerm -sceVshAvcapSetInfo -sceLibcMspaceMemalign -sceGnmGetLastWaitedAddress -sceMbusSetAppModuleFocus -sceHmdReprojectionUnsetDisplayBuffers -pthread_rwlock_rdlock -sceFiosCachePrefetchFH -sceIduUtilLaunchTitle -scePadSetLightBarForTracker -sceHmdInternalGetHmuOpticalParam -_sceUltReaderWriterLockCreate -sceCesIso2022StrToUtf8Str -sceDataTransferTargetAbortTransfer -sceAppMessagingTryGetEventFlag -scePssKeyboardGetKeyCode -sceSslDisableOption -sceFsErriCtl -scePthreadMutexattrSettype -sceAudioInSetFocusForUser -sceSslWrite -sceVorbisDecTimeTell -scePadSetUserNumber -scePthreadRwlockTimedrdlock -sceNpGriefReportDeleteTransaction -sceVdecCoreTrySyncDecode -sceNpLookupCreateRequest -sceFaceIdentifyLiteGetFeature -sceNetCtlCheckCallback -sceAudio3dPortGetStatus -sceLncUtilUnblockAppSuspend -sceBgftServiceIntSetBandwidthPriority -sceNpAsmClientGetServiceBaseUrlA -sceNpUniversalDataSystemIntRecordArraySetFloat32 -sceKernelDeleteProcessFromCanvasMap -sceHttpGetCookieEnabled -sceSysUtilSendSystemNotificationWithErrorCode -sceAudioOutPtOpenEx -sceVideoOutAddS3dHmdPrivilege -scePlayReadyCdmiDecryptOpaque2 -sceNpManagerIntGetGameAccessToken -sceVideoOutSysIsModeS3d -sceNpManagerUtilConvertJidToNpId -sceKernelGetCpuFrequency -sceLncUtilIsCpuBudgetOfExtraAudioDevicesAvailable -sceVideoArbitrationInitialize -sceApplicationGetDbgExecutablePath -pthread_suspend_all_np -sceNetHtons -sceSlimglRenderServerThreadStart -sceUserServiceGetKeyRepeatStartingTime -scePerfPmcUmcStop -sceDbgDeleteGpuExceptionEvent -sceNpTusDeleteMultiSlotDataA -sceVideoOutSysGetVblankStatus2 -sceKernelResumeProcess -sceNpTusGetDataAVUser -sceVoiceChatRequestUpdatePlayerSessionVoiceChatChannelName -sceMusicPlayerServiceSetTrackList2 -sceShellCoreUtilActivateTerm -sceFaceAttribute -sceDtcpIpStopSeq -scePerfTraceAmmCreate -sceAgcAcbWaitOnAddressGetSize -sceCesGbToUtf16le -sceImeVshSetParam -sceAmprAmmCommandBufferModifyMtypeProtectWithGpuMaskId -sceDbgVLoggingHandler -sceMbusDebugStartApplication2 -sceSaveDataCommit -sceImeSetText -sceSaveDataIsMounted -sceNpLookupNetConvertNpIdToJid -sceUserServiceGetNpOnlineId -sceRemoteplayImeClose -sceVdecswGetAvcPictureInfo -sceKernelSetSuspendState -sceGnmBeginWorkload -sceMbusDebugGetControlStatus -sceNpUniversalDataSystemIntRecordArraySetBinary -sceAmprAmmCommandBufferRemap -sceAutoMounterClientUnregisterCallback -sceNpManagerIntSetCommerceDialogPlusResult -sceKernelGetCallRecord -sceShellCoreUtilEndUmmDictation -scePlayReadyMemGetStats -sceKernelRaiseException -sceNpGetParentalControlInfo -sceGnmDrawInitToDefaultContextState400 -scePsmThreadCallback -scePerfPmcL3SetCounter -sceClPthreadMutexattrInit -sceFontGetHorizontalLayout -sceNpCalloutStopOnCtx -scePlayReadyInitializeInitParams -sceMusicCoreServerSetLaunchUser -sceGameLiveStreamingScreenOpenSeparateMode -sceNetCtlRegisterCallbackV6IpcInt -sceNgs2ParseWaveformFile -sceVoiceQoSCreateRemoteEndpoint -sceDataTransferTargetAbortReboot -sceNpTrophyConfigHasGroupFeature -sceNpMatching2SetLobbyMemberDataInternal -scePerfPmcL2iSelectEvent -sceVencCreateEncoder -sceNetCtlGetScanInfoForSsidListScanIpcInt -sceKernelTriggerEport -sceNpManagerIntCheckGameNpAvailabilityA -sceSharePlayInitialize -sceSaveDataGetAutoUploadConditions -sceScreenShotSetDrcParam -pthread_mutex_getprioceiling -sceDeci4hDrfpMkdir_fuse -sceIduUtilGetDownloadInstallProgress -sceNpStrcpyToBuf -sceAmprMeasureCommandSizeMapEnd -sceVideoOutSysDeleteVblankEvent -sceNetDhcpGetInfo -sceVrTrackerGetState -sceSlimglCompositorSetIndirectRenderTargetConfigCommand -sceCesBig5ToUtf32be -sceUltSemaphoreDestroy -sceShellCoreUtilIsImposeScreenOverlaid -sceVideoCoreInterfaceCloseCanvas -sceHttp2SetRecvTimeOut -_sceNpManagerDefaultReallocImpl -sceUserServiceGetNpMAccountId -sceSystemLoggerTerminate -sceVisionManagerSetCallbackForUpdateCalibrateTrackingLedResult -sceNetThreadCreate -sceAvSettingGetCurrentOutputMode2_ -s_StdThreadStackSize -sceAmprCommandBufferWriteAddress_04_00 -sceMoveInit -sceJpegEncDelete -sceNpPushUnsetNpCommunicationId -sceKernelGetdents -sceAmprAmmCommandBufferMultiMap -sceNpAsmInitialize -sceTsOpenFile -sceAgcAcbDispatchIndirect -sceNpTrophy2SystemGetTrophySetArray -sceSystemStateMgrIsStandbyModeEnabled -sceUserServiceInitialize -sceVoiceChatTerminate -sceAgcDcbSetIndexBufferGetSize -sceSystemGestureUpdateTouchRecognizer -sceAppInstUtilAppGetCompilationDiscInfo -sceSystemGestureClose -sceCameraSetAppModuleFocus -sceUserServiceSetNpOfflineAccountAdult -sceDataTransferTargetRequestDeactivate -sceVideoOutWaitVblank -sceGnmRegisterOwnerForSystem -sceNetShowIfconfigForBuffer -sceLncUtilAddLocalProcess -sceShareUtilityInitializeEx2 -sceAppInstUtilAppGetStoreCompilationDiscInfo -sceFaceDetectionLocal -sceSaveDataGetEventResult -sceVideoOutSubmitEopFlip -sceRemoteplayGeneratePinCode -sceVoiceQoSDisconnect -sceSystemServiceGetRenderingMode -sceAcmContextDestroy -sceAc3EncDeleteEncoder -sceShellCoreUtilGetCrashReportFilterInfoStart -sceNpManagerIntGetLastAccountLanguage -sceFaceIdentifyGetWorkingMemorySize -sceOpusCeltDecCtl -sceNpGameIntentReceiveIntent -sceCesBig5ToUcs2 -sceNpTrophyIntGetRunningTitle -sceNpArchInit -sceContentSearchGetApplicationLastUpdateId -sceVrTrackerSetDeviceRejection -scePlayReadyApiPlatform -sceHttp2RemoveRequestHeader -sceGnmDrawIndexMultiInstanced -sceUserServiceGetGlsCameraDepthLevel -sceAmprMeasureCommandSizeWaitOnAddress -sceNpLookupNetSanitizeComment -sceLibcHeapMutexFree -sceMouseDisconnectPort -sceVnaUtilIsLanguageSupported -sceAgcDriverSubmitToRazorACQ -sceAmprCommandBufferWriteCounter_04_00 -sceDebugKillApplication -sceAppMessagingReceiveMsg -sceShellCoreUtilReleaseSharePlayCpuBudget -sceRemotePlayClientStopMicCapture -sceDepthSubmit -sceRtcGetTickResolution -sceNpManagerIntValidateCredential -sceCameraSetDefectivePixelCancellation -sceNpMatching2SetRoomDataInternalExt -sceUltGetUlthreadInfo -sceDeci4hDrfpTruncate -sceAudio3dObjectReserve -sceNpEntitlementAccessInitialize -sceAt9EncFlush -sceUltMutexTryLock -sceSystemServiceAddLocalProcessForJvm -sceUpsrvSwitchSystemExBankWithoutVerify -sceRegMgrToolGetUpdateCnt -sceMbusSetTestFlag -sceSystemServiceUsbStorageTerm -sceCtrlpRecStop -sceFsGetFsMetadataWithProgress -sceBgftServiceDownloadResumeTaskAll -sceDebugIpmiGetClientInfo -sceMbusEnterAudioOutAutoAttenuation -sceGnmSubmitCommandBuffersForWorkload -sceHttp2WebSocketSendTextMessage -sceNotificationSend -sceVoiceUpdatePort -sceCameraGetDeviceID -sceSysUtilSendSystemNotification -sceSystemServiceUsbStorageUnregisterCallbackForMapUnavailable -sceHttpsSetMinSslVersion -sceEsvmEngineDestroyMediaKeySystemAccess -sceAjmBatchJobRun -sceUltMutexDestroy -sceCesUtf16beToEucJp -sceHmdGetDistortionCorrectionCommand2d -sceSpGetPid -sceRazorCpuStopCaptureInternal -scePlayReadyDebugSetLevel -sceNpSnsYouTubeAbortRequest -sceNpAppInfoIntCheckAvailabilityAll -sceDeci4hDrfpStat_fuse_fullpath -sceNpUniversalDataSystemAbortHandle -sceAudioOutSetJediSpkVolume2 -sceDbgGetReleaseCheckMode -sceShellUIUtilCreateTaskToken -sceGnmDrawInitToDefaultContextStateInternalSize -sceNpEntitlementAccessRequestUnifiedEntitlementInfo -sceFiosStatSync -scePadResetOrientationForTracker -sceVoiceResumePortAll -sceNpManagerIntGetTemporarySsoToken -sceG2PDialogTerminate -sceCameraSetForceActivate -sceVideodecFlush -sceRnpsAppMgrRemoveAppOnSystemShutdown -sceHttpSetAuthInfoCallback -sceRtcGetWin32FileTime -sceCesRefersUcsProfileCp1254 -scePsmKitFontConfigGetAttr -sceHmdInternalSeparateModeSendVideo -sceGnmIsUserPaEnabled -sceFrontPanelDisplayStickReadState -sceKernelGetCompiledSdkVersionByPath -sceAutoMounterClientInit -sceKernelIsAddressSanitizerEnabled -sceNpWebApiRegisterExtdPushEventCallbackA -sceUserServiceSetThemeHomeShareOwner -sceGnmInsertSetMarker -sceUserServiceSetFaceRecognitionRegisterCount -sceClPthreadAttrSetdetachstate -sceNgs2VoiceGetMatrixInfo -sceHttp2SetAuthEnabled -sceBdSchedCancelBackgroundCopyRequest -sceVoiceGetVolume -sceFiosFHOpenWithMode -sceNpManagerIntGetOnlineIdInternal -sceDebugCancelCoredump -sceShellCoreUtilActivateIsActivated -sceNpBandwidthTestInitStart -sceSslRead -sceDtsEncEncode -_sceUltConditionVariableCreate -sceVideoDecoderArbitrationEnable -sceAmprAmmCommandBufferModifyProtect -sceNpWebApiAddHttpRequestHeader -sceAppInstUtilAppPrepareOverwritePkg -sceKernelDeleteEqueue -sceGnmDebuggerSetAddressWatch -sceVorbisDecTimeTotal -sceMbusGetDeviceInfoByBusId_ -sceKeyboardSetProcessFocus -sceRazorCpuSetPopMarkerCallback -sceWebBrowserDialogInitialize -sceShellCoreUtilSetRemotePlayStatus -pthread_barrierattr_setpshared -sceRegMgrGetStrInitVal -sceDebugGetWaitingListOfUltQueue -sceVideoOutCursorSetHotSpot -sceHttp2SetCookieBox -sceLibreSslInitEx -sceErrorDialogOpenDetail -sceFsSmrTrim -sceRnpsAppMgrRemoveUfsImageOnSystemShutdown -sceAgcDcbPrimeUtcl2 -sceGnmSetGsRingSizes -sceDebugCreateScratchDataAreaForPrx -sceShellCoreUtilMountDownloadDataForShellUI -sceVideoOutSysSetDcePipeMode -_sceUltUlthreadRuntimeCreate -sceGnmDebuggerGetAddressWatch -sceVideodec2DeleteDecoder -sceNpManagerIntIsUnregisteredClientError -sceDtsEncEncodeAsync -sceTsJumpPTS -sceIduUtilLaunchTitleV2 -sceNpWaitAsync -_sceNpReallocImpl -sceNetEventCallbackDestroy -sceFsDrfsRegisterSocket -sceIpmiMgrPauseDump -sceSblACMgrIsPlatformDLL -sceUserServiceGetFileBrowserFilter -sceAgcAsyncCondExecPatchSetEnd -sceAvPlayerSetAvSyncMode -sceNpSnsTwitchAbortRequest -sceLibcMspaceMallocStatsFast -sceFsMountTrophyData -scePadGetActiveTime -sceSpNetSend -sceCtrlpGetRecData -sceRemoteplayInitialize -sceNetShowIfconfig -sceHmdInternalResetLedForVrTracker -sceKernelProtectDirectMemory -sceNpWebApiGetHttpStatusCode -sceVideoCoreReleaseDecoderResource -scePerfTraceIoControllerUpdate -sceAgcCbDispatch -sceCameraSetWhiteBalance -scePadGetMotionTimerUnit -sceVideoOutRemoveBufferAttributeOption -sceNpManagerIntRevalidatePassword -sceAppInstUtilStartInstall -sceNpTssGetStorageAsync -sceVideoOutGetDeviceInfoEx_ -sceMatSetThreadInfo -sceNpGriefReportReadTextChatFile -sceCompanionHttpdStart -sceFontGraphicsCanvasSetSurfaceFillWithMapping -sceGnmGetShaderStatus -sceGnmUnregisterResource -sceUlpMgrInitDecidState -sceAgcDriverGetSetWorkloadStreamInactivePacketSize -sceRegMgrNonSysGetBin -sceVorbisDecRawTell -sceNpPartyRegisterHandler -sceFontRenderCharGlyphImageHorizontal -sceKernelWritev -sceDebugGetWaitingListOfUltSemaphore -sceKernelBatchMap2 -sceNpUtilGetEnv -sceCesRefersUcsProfileKsX1003 -sceUrlConfigResolverGetJscHeapSizeSoftLimit -sceKernelFstat -sceShareSetCaptureSource -sceVisionManagerGetNumOfRegisterUserDataSlot -sceKernelIccGetBootTimestamp -scePthreadCondSignal -sceVoiceQoSDeleteLocalEndpoint -sceAvControlGetCurrentOutputMode -sceAudio3dGetSpeakerArrayMemorySize -sceUltUlthreadExit -sceNpTrophyIntNetSyncTitle -sceAudioInExtClose -scePlayerInvitationDialogUpdateStatus -sceVrTracker2UnregisterDevice -sceFiosDHRead -sceUserServiceGetNotificationSettings_1 -sceVideoOutGetDeviceCapabilityInfo_ -sceKernelLwfsTrimBlock -scePlayGoDialogOpen -sceFsExtUSBSchedInsert -sceAudioPropagationSystemSetAttributes -sceAvSettingGetRawHdmiMonitorInfo -sceNpWebApiRegisterServicePushEventCallback -sceNetResolverDestroy -sceAppContentAddcontEnqueueDownloadByEntitlemetId -sceVnaSetupKeyPhraseDetection -sceCoredumpGetStopInfoCpu -sceFsGetAttribute -_sceNpAllocatorExRealloc -sceNpUniversalDataSystemDestroyEventPropertyObject -sceSslGetPem -scePlayReadyInitialize -sceSaveDataBindPsnAccount -sceAppInstUtilTerminate -sceVoiceQoSConnect -sceHmdReprojectionQueryOnionBuffSize -sceRnpsAppMgrSetCrlUrl -sceVencCoreSetPrivacyGuard -sceClHttpDeleteRequest -sceVdecswTrySyncDecodeOutput -sceApplicationGetAppInfoByAppId -sceMusicPlayerServicePlayStartByTime -sceKernelGettimezone -sceLncUtilGetResultKillApp -sceAmprAmmCommandBufferMapDirectWithGpuMaskId -sceNetListen -sceVideoOutSysOpenInternal -sceApplicationSystemShutdown2 -sceVnaSetUmmStatus -sceFiosDLLTerminate -sceCesEucJpToUtf16be -sceCesUtf16beToSJis -sceApplicationOnAllResourceReleased -sceSystemServiceSuspendLocalProcess -sceNpEulaDialogGetStatus -sceFsGetFsMetadata -sceAppInstUtilAppExists -sceCesGbToUtf32 -sceUserServiceGetEventUiFlag -sceVrServiceDialogGetStatus -sceAppInstUtilAppUnInstallPat -sceAppContentDownload1Shrink -sceAgcDcbDrawIndirectMulti -sceKernelGetModuleInfo -sceNpTrophySystemRemoveTitleData -sceFiosFileReadSync -sceCamera2GetFieldOfView -sceNpWebApiSendRequest -sceAgcInit -sceAudioOut2ReportRegisterHandler -sceCesUcsProfileInitUhc -sceGnmSqttSetDceEventWrite -sceFaceIdentifyExGetWorkingMemorySize -sceCompositorSetIndirectRenderTargetConfigCommand -sceVnaRequestPlayCachedTts -sceNpMemoryHeapInit -sceDebugGetProcessInfo -sceShareUtilityAdvanceSetUploadContentData -sceVideoOutCurveSamplePointsCalc_ -scePadConnectPort -sceSaveDataGetSavePoint -sceNpCancelEventFlag -sceHttpCacheSystemShutdown -sceSaveDataCreateUploadData -sceNpTusSetDataAVUser -sceKernelMapNamedSystemFlexibleMemory -sceNpAsmGetServiceBaseUrl -sceVnaDevideAnalyze -sceHmdReprojectionStartWithOverlay -sceMatPushMarker -sceAmprMeasureCommandSizeMapBegin -sceDataTransferTargetEventIsAuthReady -sceMbusDumpUserMediaInfo -sceNpPushCheckCallback -sceNetCtlApCpStop -sceBdSchedStopScheduling -sceVideoOutAddPreVblankStartEvent -sceUpsrvUpdateSetUpdateMode -sceShellCoreUtilSetSystemBGState -sceVideodecMapMemory -sceNpIpc2ClientInit -sceRazorCpuInit -sceFaceTrackerFinalize -_sceDepthCalcHeteroAdjustParam -sceCustomMusicCorePostEvent -sceRegMgrSetInt -sceUserServiceGetGlsHintFlag -scePadGetIdleCount -sceFontSetFontsOpenMode -sceAppInstUtilUnmountBdEmu -sceVideodec2GetAvcPictureInfo -sceGnmSpmEndSpm -sceCesUcs2StrGetIso2022Len -sceNpSnsYouTubeDialogUpdateStatus -sceHttp2RedirectCacheFlush -sceVideoOutAddOutputModeEvent -sceShellCoreUtilGetHidConfigFileInfoString -sceCompositorSetMemoryCommand -sceFaceTrackerRegisterLostTargetCallback -sceOpusDecGetSize -sceHmdReprojectionSetUserEventEnd -sceNgs2SystemCreate -sceNpManagerIntIsServerMaintenanceError -sceShellCoreUtilStopOptimization -sceClAudiodecTermLibrary -sceVideoCoreGetStreamUid -sceIduUtilSetSettingInt -sceVideodec2QueryHevcDecoderMemoryInfo -sceApplicationSystemSuspend2 -sceUserServiceSetSaveDataAutoUpload -sceHttp2WebSocketSendDataMessageAsync -sceNpTusGetMultiUserDataStatusAAsync -sceAudiodecCpuQueryMemSize -sceVideoOutConfigureOptionsInitialize_ -sceAudioOutSysConfigureOutput -sceAgcDriverSysGetClientNumber -sceShellCoreUtilGetNeedSizeOfAppContent -sceLibcPafMspaceGetFooterValue -sceCesRefersUcsProfileCp437 -sceGameLiveStreamingInitialize -sceNpBandwidthTestAbort -sceNetApctlRestart -sceDbgSetHardwareBreakPoint -sceCesRefersUcsProfileIso8859_7 -sceKernelGetEventData -_sceNpHeapMalloc -scePerfPmcNbSetCounter -sceShellCoreUtilGetAppLaunchedParamIntByBudgetType -sceSpNetSocket -sceAvControlSetVideoOutSource -sceKernelSetKnobs -sceIduUtilGetOpenPsId -sceCesUcs2StrGetMbcsLen -pthread_rwlockattr_gettype_np -sceDepthTerminate -sceAudiodReportMasteringSetParams -sceKernelHwHasOpticalOut -sceNpUniversalDataSystemIntNetSyncTitles -sceImeDicDeleteLearnDics -sceAgcDriverSetTargetRingForDiag -sceSaveDataInitialize2 -sceAvSettingSetAudioOutModeInvalid_ -sceVideodec2Flush -sceShellCoreUtilSetSharePlayStatus -sceSpPthreadMutexattrSetprioceiling -sceVencSetPictureConfig -scePlayReadyDomainCertFind -sceNpPushRegisterNotificationExCallback -sceAvSettingIsSupportedAudioOutModeByHdmiMonitorInfo -scalbnl -sceSystemServiceLaunchApp -sceFiosUpdateParameters -sceNgs2SystemSetGrainSamples -sceRudpBind -sceFontGraphicsUndefineIndexedVertexesGlyphAll -sceAgcDcbSetIndexBuffer -sceVdecswTrySyncDecodeInput -sceNpManagerIntGetUserInfo -sceShellCoreUtilClearAppData -sceNpBase64Decoder -sceNpAppInfoIntInitialize -sceFsDeviceAlignedPwrite -scePlayerSelectionDialogGetStatus -sceVideoStreamingEngineMediaKeySessionGetSessionId -sceFontGraphicsGetVertexesGlyphScale -sceShellCoreUtilSetDeviceIndexBehavior -sceVisionManagerLoadSettings -sceUserServiceSetJapaneseInputType -sceDepthHeadCandidateDetectorGetResults -sceFiosIOFilterCache -sceHmd2GazeGetResult -sceShellCoreUtilGetBasicProductShape -sceNpTssCreateNpTitleCtxA -sceRazorCpuUserSignalWaitBeginEx -sceNpIdMapperCreateRequest -sceVideoOutRegisterStereoBuffers -sceNgs2RackDestroy -sceLncUtilResumeApp -sceNetControl -sceMsgDialogInitialize -sceS3daOpen -scePssSoundSetSurroundPanSpeakerConfig -sceShellCoreUtilReportUnexpectedFatalErrorToSystemTelemetry -sceNetConfigGetDefaultRoute -sceFiosOverlayGetInfo -sceKernelIsGenuineDevKit -sceHttpAddRequestHeaderRaw -sceNpTrophySystemBuildTrophyIconUri -sceFiosGetAllDHs -sceFaceDetection -_sceNpHeapReallocImpl -sceKernelGetKnobs -sceSaveDataDeleteTransactionResource -sceFsUfsRecryptBlocks -sceGameLiveStreamingGetCurrentStatus2 -sceNpTssGetSmallStorage -sceFontGraphicsCanvasClearPreprocess -sceClAudiodecInitLibrary -sceVoiceEnableChat -sceGnmSetSpiEnableSqCountersForUnitInstance -sceFontGlyphGetScalePixel -sceVideoOutDriverDeleteEvent -sceAgcDriverSubmitToHDRScopesACQ -sceFontStyleFrameGetEffectSlant -sceUpsrvSetFakeVersion -sceDebugGetJobManagerSequenceList -sceFiosFHGetOpenParams -sceNpEntitlementAccessGetSkuFlag -sceRtcCheckValid -sceDeci4hDrfpChkInValidUlpHead -sceNpMutexDestroy -sceCamera2IsValidFrameData -sceNpWebApi2SendRequest -sceVideoOutConfigureOutputModeEx_ -sceDevUsbReadCP -sceSystemLogger2SetPeripheralConnectionLog -sceCameraSetProcessFocus -sceAudiodecCpuDecode -sceDataTransferTargetRequestPwrReq -sceSaveDataRestoreBackupData -sceUserServiceGetUserColor -sceVideoDecoderArbitrationEnableSuspendMode -sceFontCharactersRefersTextCodes -scePerfPmcAperfGetCounter -sceShellCoreUtilShowCriticalErrorDialog -sceBgftServiceIntUploadRegisterTask -sceVideoOutSysGetCurrentOutputMode_ -sceUserServiceGetParentalBdAge -sceKernelAioSubmitReadCommandsMultiple -sceShellCoreUtilGetPlatformPrivacyDefinitionEventData -sceIduUtilHideOverlay -sceNpManagerIntGetGameTicketWithPid -sceNpManagerIntGetOnlineIdChangeFlag -sceAgcDriverPatchClearState -sceGameLiveStreamingClearSocialFeedbackMessages -sceSysmoduleMapLibcForLibkernel -sceKernelGetIdPs -sceNpTrophySystemRemoveUserData -scePerfTraceIoGetPosition -pthread_setcancelstate -sceFontStyleFrameInit -sceVideoOutGetMonitorInfo -sceNpMatching2GetWorldIdArrayForAllServers -pthread_rwlock_timedrdlock -sceGnmSqttGetTraceCounter -sceNpUniversalDataSystemEventPropertyObjectSetFloat32 -sceDiscMapIsRequestOnHDD -sceNpSessionSignalingGetMemoryInfo -sceDevUsbTermCP -sceUltSemaphoreRelease -sceSlimglCompositorWaitEndOfRendering -sceShellCoreUtilTurnOffScreenSaver -sceUserServiceGetVolumeForController -sceVideodecQueryResourceInfo -sceAppInstUtilGetInstallProgressInfo -sceAppInstUtilAppGetInsertedDiscMasterDataId -sceUserServiceSetMouseHandType -sceFiosIOFilterAdd -sceKernelAioWaitRequests -sceSystemServiceChangeSamuClock -sceVrTrackerSetRestingMode -sceShellCoreUtilGetPapcGamePcl -sceNpTrophyConfigGetTrophyDetails -sceCameraSetGamma -sceNpPartyInitialize -sceHmdGet2dDistortionMap -sceNpTrophySystemUnregisterTitleSyncedCallback -sceSystemLogger2NativeQueueClientCheckAndMaskData -sceNpManagerIntUserSignin -sceRtcFormatRFC3339Precise -sceLibcMspaceAlignedAlloc -sceNpGetSdkVersionUInt -scePssAudSetSurroundPanSpeakerConfig -sceKernelAllocateDirectMemoryForMiniApp -sceDeci4hDrfpStat_fuse -sceNpTusAddAndGetVariableVUserAsync -sceVideoOutAddBufferAnisoPrivilege -sceVrTrackerGetLiveCaptureId -sceGnmGetTheTessellationFactorRingBufferBaseAddress -sceSslShowMemoryStat -sceCesEucKrToUtf16be -sceVrSetupDialogOpen -sceSpNetEpollControl -sceLibcMspaceReportMemoryBlocks -scePthreadMutexattrGetpshared -sceNpInGameMessageCheckCallback -scePthreadAttrGetinheritsched -sceNpCalloutStartOnCtx64 -sceSystemGestureGetTouchEventByEventID -sceNpTusGetMultiUserDataStatusForCrossSaveAsync -sceMatUnregisterOwnerAndResources -sceHmdInternalCrashReportOpen -sceAppInstUtilAppCancelUnInstall -sceDeci4hDrfpCalcEntlistSize -sceMbusDebugGetDeviceInfo -sceUserServiceGetSharePlayFlags -scePadSetForceIntercepted -sceProprietaryVoiceChatHelperTerminate -sceAgcDriverGetResourceUserData -sceKernelEnterSblock -sceUserServiceSetGlsIsTwitterEnabled -sceHandDetectionGetDefaultParam -sceSystemServiceUsbStorageRegisterCallbackForMapAvailable -pthread_mutex_destroy -sceFiosFHReadvSync -sceAppInstUtilGetSubAppTitleIdForSP -sceHmdInternalSetDemoMode -sceNpSnsIntYtGetTitleAccessToken -sceNpGriefReportInit -sceKernelMunlockall -sceVoiceQoSCreateLocalEndpoint -sceAudio3dCreateSpeakerArray -sceNpHeapGetAllocator -sceAudio3dPortAdvance -sceRegMgrDrvGetEntCnt -sceAmprAmmSubmitCommandBuffer -sceDataTransferTargetRequestSendSsoNew2Old -sceNpTusGetMultiUserDataStatusA -scePktMgrRecvDeciPacketBySocket -sceAvSettingGetHdmiConnectDisconnectNum -sceNpWebApi2PushEventRegisterPushContextCallback -sceLibSecureHashDeleteContext -sceFontSetupRenderEffectSlant -sceAvControlSetHdmiGamutMetadata -sceAmprAmmMeasureAmmCommandSizeMapWithGpuMaskId -sceShellCoreUtilStartShutdownTimer -sceNpCommerceDialogTerminate -sceHttp2GetAuthEnabled -sceContentSearchSearchApplication -sceMbusCheckEvent -sceSslEnableOption -scePngDecCreate -sceLoginMgrServerClearMorpheusRequiredUserId -sceNpScorePollAsync -sceZlibInitialize -sceUserServiceGetPbtcAdditionalTime -sceDepthGetImage -sceNpManagerIntAddUserStateCallback -sceFsUmountWorkspace -sceAppContentGetAddcontInfo -sceNpManagerIntCheckNpAvailability -sceCompositorSetEndOfFrameCommand -sceOpusDecCtl -scePthreadCondattrInit -sceSystemServiceInitializePlayerDialogParam -sceShellCoreUtilGetOptimizationStatus -sceKernelKernelHeapUsage -sceShellCoreUtilSetGnmCompositorOnScreenProfilerFlag -sceNpScoreGetFriendsRankingForCrossSaveAsync -sceDebugIpmiGetServerKidList -scePerfTraceSpmGetNclk -sceSlimglServerStartWithSocket -sceNpGameIntentInitialize -sceTextToSpeechPauseImpl -sceUserServiceSetDiscPlayerFlag -scePatchCheckerInitialize -sceFiosTraceTimestamp -sceNpSetPlatformType -sceNpGetParentalControlInfoA -sceNpTusGetMultiSlotVariableForCrossSave -sceCtrlpRegisterEventCB -sceNpBandwidthTestInitStartUpload -sceNpManagerIntGetWebAppTokenByRequest -sceDebugIpmiGetSessionInfo -sceVnaGenerateTelemetrySessionId -sceNpManagerIntGetVshAccessToken -sceKernelPwritev -scePssSoundPlayerStopEx -sceLncUtilAcquireCpuBudgetOfInGameStore -sceKernelIsM2DeviceAttached -sceNetConfigGetDefaultRoute6 -sceRudpGetOption -ScePsmMonoGcOutOfMemory -sceGameLiveStreamingSetServiceProviderPermission -sceTsEnableStream -sceNpTusGetFriendsVariableForCrossSave -sceBackupRestoreUtilCancelGetTitles -pthread_mutexattr_settype -scePadIsDS4Connected -sceNetBweSetInternetConnectionTestResultIpcInt -sceVideoRecordingSendCommand -sceKeyboardPadEmulateOpen -sceAppInstUtilAppInstallPsNowIcon -sceMbusResolveByPlayerId -sceMusicCoreServerGetUserData -sceNpSnsYouTubeDeleteRequest -sceUlpMgrRecvData -sceKernelGetEventId -sceFsLvdSetDiscIdentity -sceUpsrvUpdateDoUpdateExpBeta -sceImeBackendDeleteCharacter -sceCompositorMapAnotherProcess -sceNpManagerIntGetVshToken -sceHmdReprojectionStartWideNearWithOverlay -pthread_condattr_init -sceKernelMapNamedFlexibleMemory -sceCamera2GetConfig -sceGnmUpdatePsShader350 -sceCesSbcToUtf32le -sceHttpSetRecvBlockSize -sceSdmaFinalize -sceHttpAddCookie -sceUserServiceIsKratosPrimaryUser -sceLibcPafMspaceMallocStats -sceNetConfigEtherGetLinkMode -sceHmdGetDistortionParams -sceMbusSetProxy -sceHttp2SetCookieMaxNum -sceRegMgrGetInt -sceNgs2SystemCreateWithAllocator -sceSulphaGetConnectedClientCount -sceSystemServiceGetHdrToneMapLuminance -sceAmprAprCommandBufferReadFile -sceNpManagerIntCheckSignin -sceAgcDcbDrawIndexMultiInstancedGetSize -sceKernelExpectedHddFormat -sceFontGraphicsFindIndexedVertexesGlyph -sceCesUcsProfileInitEucCnGb2312 -sceHttpsDisableOption -sceAgcDcbDrawIndexIndirectGetSize -sceShellCoreUtilIsInternalKratosUser -scePerfPmcL2iGetCounter -sceHttpUriSweepPath -sceNpManagerIntGetAccountCountrySdk -sceSdmaCopyWindowTiled -sceConvertKeycodeGetImeKeyboardType -scePktMgrGetDeciHeader -sceMusicPlayerServiceCreateTrackList -sceNpTrophySystemOpenStorage -sceRegMgrEvtGetRegIdForPS4 -sceNpTusAddAndGetVariableForCrossSaveAsync -sceAgcDriverGetResourceShaderGuid -sceNpTusDeleteMultiSlotVariable -sceAmprAprCommandBufferReadFileGather -scePerfTracePmAddBufferNotifyEvent -scePadVrControllerGetDeviceInformation -scePssMusicPlayerGetLoopFramePos -sceSystemServiceChangeClock -sceContentExportFromFileWithThumbnail -sceNpSnsIntCheckServiceAvailability -sceRazorCpuStopCapture -sceHmdInternalDfuSend -sceKernelEndAppMount -sceHmdReprojectionClearUserEventStart -sceNpMatching2SetUserInfo -sceNetCtlApClearEvent -sceCompositorCreateIndirectRenderTarget -sceGnmGetCoredumpMode -sceNpManagerIntCheckTitlePatch -sceLibcMspaceMallocStats -sceVideoOutSysIsSupportedByMonitorInfo_ -sceSlimglCompositorAllocateIndex -sceNpManagerIntLoginGetWebAccessTokenByClientId -sceAudioInExtCtrl -sceVideodec2QueryLibraryInfo -sceClPthreadExit -sceFiosDebugSetProfileCallback -sceCloudClientReset -sceSulphaSetBookmark -sceNpManagerIntClearVshAccessToken -sceKernelIsKratos -sceNetCtlApRpStart -sceHmdInternalSetUserType -sceNpUnregisterStateCallback -sceNpSnsYouTubeDialogOpen -sysconf -sceKernelClearVirtualRangeName -scePssKeyboardPushState -pthread_cond_broadcast -sceContentBinderStart -sceSigninDialogInitialize -sceAgcDcbSetIndexCountGetSize -sceUserServiceSetParentalMorpheus -sceHttpGetAutoRedirect -_sceUltMutexCreate -sceHttp2CreateRequestWithURL -sceRtcTickAddMinutes -sceCesUtf32leToEucJp -sceNpUniversalDataSystemIntPostRecord -sceNpBase64UrlDecoder -sceHttpCacheSetResponseHeader -sceDeci4hDrfpWrite -sceKernelGetSystemExVersion -sceVideoCoreMediaSourceGetBufferedTimeRanges -sceShellCoreUtilIsExternalStorageAppMoveInProgress -sceShellCoreUtilActivateAbort -sceNpStopVsh -sceKernelIsProspero -pthread_key_create -scePthreadRwlockWrlock -sceNetShowNetstatForBuffer -sceFaceAgeRangeIntegrate -sceRemoteplayProhibit -sceUsbStorageGetDeviceList -sceAgcDcbBeginOcclusionQueryGetSize -sceSaveDataMountInternal -sceLncUtilTryBlockAppSuspend -sceNpLookupDeleteTitleCtx -sceBgftServiceIntUploadQueryTaskSection -sceNpUniversalDataSystemIntRecordObjectSetFloat32 -sceBgftServiceIntDownloadPauseTaskAll -sceAmprCommandBufferPopMarker -sceVideoStreamingEngineMediaKeySessionSetEventHandler -sceLoginMgrServerIsRequestedCdlgClose -scePthreadMutexattrSetpshared -sceCameraGetFrameData -sceFontCharacterGetTextOrder -sceHmdInternalGetDemoMode -sceFaceDetectionEx -sceFontSupportExternalFonts -sceDevUsbWriteCP -_sceNpAllocatorMalloc -sceApplicationAddProcess2 -scePerfTraceAmmUpdate -sceCamera2GetWhiteBalance -sceCameraGetDeviceConfigWithoutHandle -sceFsExternalStorageGetRawDevice -sceNetShowRouteForBuffer -scePerfTraceStart -sceMatAgcUnregisterResource -sceCustomMusicAudioOutFinalize -sceImeBackendGetConfirmString -sceKernelGetBioUsageAll -sceMbusDebugRemoveCameraAppModuleFocus -scePerfTraceStop -sceKernelConfiguredFlexibleMemorySize -sceAudioOutInitIpmiGetSession -sceNpSessionSignalingGetConnectionStatus -sceDepthGetCalibrationData -sceFontGlyphRenderImageVertical -scePthreadMutexattrInitForInternalLibc -sceCompositorSetGameSufaceControlCommand -sceAgcCbSetShRegisterRangeDirect -sceLibreSslTerm -sceKernelInternalGetMapStatistics -sceApplicationSendResultOfDebuggerResumeRequest -sceHubAppUtilDeeplinkToPSSubscriptions -sceWkFontConfigGetFontFromFontName -sceAgcWaitRegMemPatchCompareFunction -sceCompositorSetVirtualCanvasPatchCommand -sceRemoteplaySetProhibitionForVsh -sceFontCreateLibraryWithEdition -sceAgcDriverUnregisterWorkloadStream -sceRtcSetWin32FileTime -sceNpMatching2JoinLobby -sceRemoteplayGetRemoteplayStatus -sceFiosDirectoryDeleteSync -sceAvControlGetNativeMonitorInfo -sceAudioOutA3dInit -sceVshAvcapStart -sceMbusReleaseControl -sceHttp2SetConnectionWaitTimeOut -sceAgcSetRangePredication -sceNpSnsTwitchDialogInitialize -sceShellCoreUtilNavigateToGoHome -sceShellCoreUtilSetSocialScreenStatus -sceNpEntitlementAccessPollUnifiedEntitlementInfoList -sceFontFtSupportType1 -sceAgcFuseShaderHalves -sceShareInitialize -sceCameraDeviceOpen -sceCesEucKrToUtf32le -sceVideoCoreMediaSourceAddSourceBuffer -sceHmdInternalMapSharedMemory -sceNetGetDnsInfo -sceAgcSetShRegIndirectPatchSetNumRegisters -sceUserServiceSetPsnPasswordForDebug -sceVnaGetTtsVolume -sceShellCoreUtilLeavePowerLockSection -sceGnmGetShaderProgramBaseAddress -sceGnmDispatchInitDefaultHardwareState -sceGameLiveStreamingRegisterCallback -sceVdecCoreResetDecoder -sceShellCoreUtilGetSocialScreenStatus -sceUserServiceSetNpAge -sceNpMatching2SetExtraInitParam -sceDebugSuspendApplication -sceCesRefersUcsProfileJisX0201Roman -sceFontGlyphRefersMetricsHorizontalAdvance -sceHmdInternalGetCrashDumpInfo -sceMusicCoreServerGetTrackInfo -sceKernelPwrite -sceGnmUpdateGsShader -sceLibSecureCryptographyMessageUnpadding -scePssInternalOrbisControllerScan -sceFontSetupRenderScalePoint -sceVideoOutSysSetOverscanRatio -sceTsRepresentationIsEnabled -sceNpMatching2SignalingGetConnectionInfoA -sceAgcDcbSetShRegistersIndirectGetSize -sceUserServiceSetIsQuickSignup -sceMbusDumpPlayerInfo -sceGnmDebuggerReadGds -sceNpPartyCreate -sceHttpCookieExport -sceFiosOpSyncWaitForIO -sceCesEucCnToUtf16be -sceBdSchedStartRipping -sceNgs2ReportUnregisterHandler -sceRemotePlayClientAttachVirtualMicrophone -sceAgcGetFusedShaderSize -sceAgcDriverNotifyDefaultStates -sceBgftServiceIntPlayGoStartDataDiscInstall -sceNpScoreGetRankingByRangeForCrossSave -sceDeci5CreateHostProcess -sceSystemServiceSetPowerSaveLevel -sceDataTransferTargetRequestCreateRebootData -sceNetShowRoute6ForBuffer -scePssAudSetSurroundPan -pthread_mutex_setname_np -scePerfTraceAprNameEnable -sceIduUtilUninstallApp -sceFontCreateLibrary -sceFiosDirectoryCreateSync -sceNpSnsDailymotionDialogGetResult -sceNpScoreGetRankingByAccountIdPcIdForCrossSaveAsync -sceAjmBatchGetLog -sceVoiceCreatePort -sceNpTrophySystemGetTrophyTitleData -scePigletSetShaderCacheConfiguration -pthread_testcancel -sceHidControlDisconnectPort -sceDtcpIpStopAuthAsync -scePerfTraceAprNameDelete -sceKernelRmdir -sceNpPartySetVoiceChatPriority -sceNpGriefReportWriteTextChatFile -pthread_mutex_reltimedlock_np -sceFsDevpfsDeleteForVSH -sceBgftServiceIntDownloadRegisterTaskByStorageEx -sceNpTrophyConfigGetTrophySetInfo -sceNpMatching2GetRoomJoinedSlotMaskLocal -sceBgftServiceDownloadPauseTaskAll -sceRemotePlayClientDetachVirtualMicrophone -pthread_switch_delete_np -sceRegMgrGetInitError -sceApplictionGetStateForDebugger -_sceLibcOnce -sceRnpsAppMgrUnblockAppInstall -sceUserServiceSetNpSubAccount -sceFsInitUmountPprPkgOpt -sceNpJsonParseExInit -sceMbusDebugTerminateApplication -sceHidControlSetRevokeList2 -scePerfTraceIoControllerAddBufferNotifyEvent -sceRazorCpuPlotValue -sceVideoCoreDeleteStream -sceDebugGetEventList -ScePsmMonoThreadsSetShuttingDown -sceMbusGetSimulatedHandleStatusInfo2 -sceUserServiceGetNpAuthErrorFlag -sceFontWritingLineGetRenderMetrics -sceHmdSetupDialogClose -sceCameraSetUacModeInternal -pthread_getcpuclockid -sceSysmoduleIsCameraPreloaded -sceNpWebApiDeleteRequest -sceFiosDelete -sceBgftServiceIntDownloadStopTask -sceVnaCloseTtsStream -sceNpSignalingGetContextOption -sceUserServiceGetAutoLoginEnabled -sceSigninDialogGetResult -scePssAudIsStopped -sceAudioInSetUsbGain -sceHttp2AddRequestHeader -sceNpProfileDialogOpenA -sceShellCoreUtilGetGpuLoadEmulationModeByAppId -scePthreadAttrInit -sceCoredumpGetStopInfoGpu -sceVideoStreamingEngineMediaKeySessionGetExpiration -sceFontGlyphRefersMetrics -sceKernelAioInitializeParam -sceShellCoreUtilStartOptimization -sceUsbdGetMaxIsoPacketSize -sceNpAsmClientGetNpTitleId -sceUserServiceSetChatStatus -sceGnmRegisterResource -sceSystemServiceGetAppIdListOfBigApp -scePssInternalKeyboardGetKeyCode -sceUserServiceGetPbtcWednesdayHoursEnd -sceNpAsmClientGetServiceBaseUrlWithNpTitleId -sceAudioInHqOpen -sceNpTrophySystemSetDbgParam -scePktMgrGetDeciPayload -sceDebugSuspendProcess -sceKernelSetBudget -sceBluetoothHidThreadParamInitialize -sceVideoCoreMediaSourceAbortSourceBuffer -scePadSetLoginUserNumber -sceContentSearchGetNumOfContent -scePlayReadyStoreCleanup -sceAvSettingSetVrMode -sceNpTusDeleteMultiSlotVariableVUser -sceHttp2GetResponseContentLength -sceSystemGestureResetPrimitiveTouchRecognizer -sceFontStringGetWritingForm -sceVideoCoreMediaSourceSetTimestampOffset -sceAvPlayerGetVideoData -sceAppInstUtilGetPatchInstallStatus -sceKernelIccSetDownloadMode -sceAudioOutSetConnections -sceBackupRestoreUtilInitialize -sceAmprCommandBufferWriteKernelEventQueueOnCompletion -scePthreadCondSignalto -sceJpegEncQueryMemorySize -sceHttp2SetCookieMaxNumPerDomain -sceKernelAioPollRequests -sceDepth2SetCommand -sceAvSettingSetAudioOutModeAny -sceNpPartyGetStateAsUser -pthread_attr_setaffinity_np -sceNpManagerIntIsSubAccountByUserId -sceAvPlayerInitEx -sceDeci4hDrfpClosedir_fuse -sceRemoteplayImeSetCaret -scePktMgrSetDeciHeader -sceImeDialogAbort -sceSystemGestureResetTouchRecognizer -sceAvSettingDebugAddCallbacks -sceSystemServiceRequestReboot -sceCameraGetAutoExposureGain -sceHttpDbgShowMemoryPoolStat -sceDeviceServiceGetGeneration -sceNetConfigUpInterface -sceNpTusTryAndSetVariableAVUser -sceCesUcsProfileInitEucJpX0208 -sceUsbdFillBulkTransfer -sceUserServiceSetNpLanguageCode2 -sceShellCoreUtilGetDeviceIndexBehavior -scePthreadSetschedparam -sceMusicCoreServerPlayControl -sceUserServiceGetAgeVerified -sceGnmGetGpuBlockStatus -sceNpPartyTerminate -pthread_attr_getinheritsched -sceFontSelectLibraryFt -sceDebugGetSystemStatusCount -sceNpUniversalDataSystemIntCreateContext -sceVideoOutDeleteVblankEvent -sceVencCoreSetInvalidFrame -sceFontGlyphGetAttribute -sceFsGetDeviceSectorsize -sceImeVshClearPreedit -sceAudioOutGetSimulatedHandleStatusInfo2 -sceNpGetGamePresenceStatusA -sceDepthSetCalibrationData -sceHmd2Close -sceSaveDataSetupSaveDataMemory2 -sceAudioOutSetPortStatuses -sceAudioOutSysConfigureOutputMode -sceIduUtilGetInstalledAppWithOffset -sceSlimglServerStartClient -sceFiosFilenoToFH -scePthreadBarrierattrDestroy -sceFiosDHClose -sceAudiodReportMasteringStates -sceShellCoreUtilGetTelemetryToken -sceKernelIsAllowedToSelectDvdRegion -sceVoiceSetMuteFlagAll -sceVoiceConnectIPortToOPort -scePthreadSetDefaultstacksize -sceUpsrvResumePausedTask -sceNpGriefReportCreateRequest -scePigletGetInteger -sceAgcSdmaCopyWindowBC -sceUserServiceGetParentalGameAgeLevel -sceNpBandwidthTestUploadOnlyInitStart -sceUserServiceGetTraditionalChineseInputType -sceCesEucCnToUtf32be -sceNpScoreGetRankingByAccountIdPcIdForCrossSave -scePigletAllocateSystemMemoryEx -sceGnmDrawIndexOffset -sceLncUtilGetAppLaunchedUser -sceImeKeyboardOpenInternal -sceKernelGetBootReqNotifyCount -sceNpTusGetMultiUserVariableForCrossSaveAsync -sceVorbisDecPcmSeekLap -sceFsCreatePfsSaveDataImage -sceNpMutexUnlock -sceFontTextSourceInit -sceFontFtSupportOpenType -sceSystemLogger2NativeQueueClientSetNativeQueueConfig -sceDeci4hDrfpSend -sceNetCtlGetInfo -sceWebBrowserDialogTerminate -sceNpAppLauncherInitialize -sceLncUtilSystemReboot -sceHttp2GetAutoRedirect -sceFiosDHReadSync -sceImeDialogInitInternal2 -scePerfTraceAmmStop -scePlayReadyEnvelopeRead -sceVideoOutDriverAddEvent -sceClPthreadCondDestroy -sceShellCoreUtilUnmountHddForRestore -sceNetCtlApRpRegisterCallback -sceFsSetFileReservedTotal -sceMoveSetCalibrationMode -sceVideoOutSysConfigureOutput -sceShellCoreUtilHideBlocksFromUser -sceFiosResolveSync -sceAudioOut2EnableChat -sceKernelLseek -sceCesEucJpToUtf16le -sceAmprAmmCommandBufferMapWithGpuMaskId -sceFontSelectGlyphsFt -sceLncUtilGetGpuCrashFullDumpAppStatus -sceNpUtilSerializeJid -scePlayGoDialogTerminate -sceRegMgrDrvDataOpen -sceAudioOutDetachFromApplicationByPid -sceFontTextCodesStepNext -sceCameraGetRegister -sceUserServiceSetNpAuthErrorFlag -sceUserServiceSetMousePointerSpeed -sceKernelXenterSblock -sceAudioOut2ContextDestroy -scePthreadJoin -sceCesUtf16ToBig5 -sceNpMatching2SendRoomChatMessage -sceNpGameIntentNotifyAppLaunched -sceKernelGetDebugMenuModeForRcmgr -sceAgcAcbSetWorkloadComplete -sceNpWebApiUtilityParseNpId -sceUltWaitingQueueResourcePoolDestroy -sceApplicationIsResumable -sceCesUcsProfileInitIso2022JpCp50222 -sceNpManagerIntIsSubAccount -sceDepth2Terminate -sceHttp2GetMemoryPoolStats -sceKernelGetVddVid -sceAgcDcbCondExecGetSize -sceKernelGetSubsysId -sceCompositorSetAgcCompositeCanvasCommand -sceNetBweFinishInternetConnectionTestIpcInt -sceNpSessionSignalingJoinActivate -sceCesMbcToUtf32be -sceNpUtilGetDateSetAuto -sceVideoOutSysConfigureOutputMode -pthread_set_name_np -sceNpUtilParseJid -sceAgcDcbAtomicMemGetSize -sceAgcAcbCondExecGetSize -sceLoginMgrServerNotifySafetyNoticeShown -sceNpMatching2RegisterRoomEventCallback -sceNpUniversalDataSystemCreateEvent -sceFiberGetSelf -sceSystemServiceUsbStorageGetDeviceList -sceDebugGetWorkerThreadListOfUltRuntime -sceNpGetNpId -_sceNpManagerMallocImpl -sceFontGraphicsSetupShapeFill -sceNpManagerIntGetWebAuthorizationCode -sceNpIpcStartReceiveEvent -_sceNpHeapFree -sceUserServiceSetPbtcSaturdayHoursStart -sceKernelRandomizedPath -sceNpSnsDailymotionDialogGetStatus -sceNetGetSystemTime -sceNpTrophy2SystemGetTrophyTitleDetails -_sceKernelRtldSetApplicationHeapAPI -sceNpJsonParseEx -sceSslSend -sceSaveDataCheckSaveDataVersion -sceSdecDestroySw -sceLibcMspaceReallocalign -sceCameraIsAttached -sceVnaGetKeyPhraseInfo -sceVideoOutGetDeviceInfoExOts_ -sceSpNetRecv -sceUserServiceSetGlsStreamingMode -sceUpsrvSwitchSystemExBank -sceHmdInternalGetTv4kCapability -sceAgcDcbWriteDataGetSize -sceVideoOutSetGlobalBlendSpace -scePerfTraceIoControllerGetInfo -sceUserServiceGetGlsSortOrder -sceAppCheckerExecute -_sceKernelSetThreadAtexitCount -sceUlpMgrReqOpen -sceDeci4hDrfpRename_fuse_fullpath -sceAudioOut2ContextQueryMemory -sceHttp2DeleteTemplate -sceNpTrophyIntCheckNetSyncTitles -sceGnmDrawInitToDefaultContextStateInternalCommand -sceNetConfigEtherPostPlugInOutEvent -sceAgcDcbSetShRegisterDirect -sceAmprCommandBufferNopWithData -scePadIsValidHandle -sceHttpCookieImport -sceNpMatching2AbortContextStart -sceClPthreadCondInit -sceNpTrophy2SystemCheckNetSyncTitles -scePrintUlpNtfHdr -sceLibSecureHashAddMessage -sceAgcDcbAtomicGds -sceSystemServiceUsbStorageRequestMapWSB -_sceNpIpcCreateMemoryFromKernel -sceHttpSetCookieTotalMaxSize -sceRemoteplayGetPrimaryUserId -sceSocialScreenInitialize -sceFiosArchiveMount -sceAjmMemoryUnregister -sceCesEucJpToUcs2 -sceAudiodecGetContext -sceNpGetRandom -sceNpManagerIntGetGameAuthorizationCode -sceSaveDataDeleteAllUser -sceFontGraphicsFillRatesSetFillEffect -sceAudioOutSysClose -sceNpManagerIntGetGameVshTokenWithPid -sceNpBandwidthTestShutdown -sceHttpSetCookieMaxNum -sceMbusEventBusStatusChangeSubscribe -sceLncUtilGetAppStatusList -sceUpsrvUpdateDoUpdateWithEntitlement -sceHmdInternalDfuReset -sceKernelGetDirectMemorySize -sceApplicationGetCpuUsage2 -sceMbusGetUsersDeviceInfo -scePthreadMutexGetspinloops -sceNetNtohl -sceNetBweStartInternetConnectionTestBandwidthTestIpcInt -sceRegMgrPrivateStorageDirPermit -sceVnaReadTtsStream -sceNetThreadJoin -sceNpAppInfoIntDestroyRequest -sceFsInitUmountLwfsCompatOpt -sceGnmSqttGetWrapCounts -sceDtcpIpWaitAsync -sceAvSettingCallbackFuncsInit_ -sceLibSecureCryptographyGetContextSize -sceRegMgrPrivateStorageMeasure -sceNpSnsFacebookDeleteRequest -sceKernelMemoryPoolReserve -sceCustomMusicCoreSendEvent -sceFsLvdAttachSingleImage -sceGameRightGetLogoPngImageSizeInBytes -sceVorbisDecSeekable -sceUserServiceGetSaveDataSort -sceVideoRecordingRestModeProcessStart -sceAgcDriverUnregisterResource -sceAudioOutGetSimulatedHandleStatusInfo -sceCesGbUcsProfileSetSbcs -sceNpStartVsh -sceContentDeleteById -sceTsGetUrlEncryptionType -sceAgcDcbDrawIndirectMultiGetSize -sceVorbisDecPcmSeek -sceUserServiceIsKratosUser -sceAudio3dAudioOutClose -sceVrTrackerDeregisterDevice -sceDebugIpmiGetClientKidListByDump -sceShellCoreUtilPostActivityForPsNow -sceAmprMeasureCommandSizePopMarker -sceSaveDataGetMountedSaveDataCount -sceVideoCoreLaunchVideoCore -sceGnmGetDebugTimestamp -sceAgcCreateInterpolantMapping -sceDebugGetUltCondvarInfo -sceNpAtomicInc32 -sceSocialScreenReserveHighFrameRateVideoCaptureRequest -sceNpWebApiDeleteExtdPushEventFilter -sceCamera2SetGamma -sceNetEmulationSet -sceUserServiceSetSaveDataSort -sceNgs2SystemQueryBufferSize -sceNpTusGetMultiSlotDataStatus -sceDeci4hDrfpOpen_fuse_fullpath -sceLibcMspaceCreateForMonoMutex -scePadVirtualDeviceDisableButtonRemapping -sceVideoOutModeSetAny_ -sceHttpSetHttp09Enabled -sceFaceIdentifyLiteGetWorkingMemorySize -sceOpusCeltDecTerminate -sceFiosFHPreadv -sceShellCoreUtilGetUserIdOfMorpheusUser -sceMusicCoreServerSelectCore -sceNpUtilGetWebApi2FakeRateLimit -sceUserServiceSetPlayTogetherFlags -sceNetCtlApRegisterCallback -sceUserServiceSetGlsCameraReflection -scePadDisconnectDevice -sceSslEnableVerifyOption -sceMbusDebugSetOtherProcessExcludedAction -sceVoiceChatRequestRegisterSession -sceLncUtilGetAppIdOfMiniApp -sceFsMountPartiallyCryptedDownloadData -sceSdecGetVersionSwHevc -sceNpManagerIntTerm -scePsmUtilInitialize -sceAudio3dReportUnregisterHandler -sceSystemTtsCancel -sceMatRegisterOwner -sceNpBase64Encoder -sceVideodec2CreateHevcDecoder -sceMbusEventReceive -sceUserServiceSetNpOnlineId -sceVideoOutAdjustColor_ -sceMbusSetUserMuteStatus -scePlayReadyMemAlloc -sceAmprAmmCommandBufferDestructor -sceEsvmEngineMediaKeySystemAccessCreateMediaKeys -pthread_spin_lock -sceRnpsAppMgrCreateUpdateRequest -sceNpTusDeleteMultiSlotVariableA -sceHttpDbgShowStat -sceAgcAcbSetMarkerSpan -sceKernelGetSanitizerMallocReplaceExternal -sceNetCtlApDialogInitialize -sceCameraRemoveAppModuleFocus -sceKernelGetProductCode -sceTsEnableRepresentation -sceNpTrophySystemGetTitleSyncStatus -sceLibcMspaceIsHeapEmpty -sceNgs2StreamResetOption -sceUserServiceGetLightBarBaseBrightness -sceNpUniversalDataSystemIntDestroyContext -sceCompositorIsDebugCaptureEnabled -sceRegMgrGetVersion -sceBgftServiceIntDownloadResumeTask -sceOpusSilkEncTerminate -ScePsmMonoPrivilegesStartInit -sceBgftServiceIntDownloadClearStats -sceGameLiveStreamingSetMaxBitrate -sceGnmSetResourceRegistrationUserMemory -sceDepthUpdate -sceVideodecDecode -sceVideodec2TermLibrary -sceRazorCpuWorkloadRunEnd -sceCesEucCnUcsProfileSetSbcs -scePadRead -scePlayReadyReaderBind -sceDeci4hOpen -sceNpCondInit -sceNpGetAccountDateOfBirthA -sceHmdReprojectionStart2dVr -sceIduUtilSetSchedule -sceRazorCpuSetLiveServerThreadSettings -sceAgcAcbMemSemaphore -sceEsvmEngineMediaKeysDestroySession -sceMusicCoreServerPlaySpUri -sceNpTrophySystemDestroyTrophyConfig -sceTextToSpeechGetStatusImpl -sceVoiceChatRequestUnregisterSession -sceOpusCeltDecDecodeWithPriority -sceNpMatching2SetRoomDataExternal -sceNpTrophyCreateHandle -sceAgcDcbDrawIndex -sceFiosFileWrite -sceSystemLogger2NativeQueueClientGetEvent -sceNetGetArpInfo -sceCesMbcsStrToUcs2Str -sceVisionManagerWaitResponse -sceCesRefersUcsProfileIso8859_3 -sceNpAuthGetAuthorizationCodeA -sceNpManagerIntValidateQrCodeSession -sceLibcPafMspaceDestroy -scePthreadCancel -sceVrTrackerSetDurationUntilStatusNotTracking -sceContentDeleteByPath -sceCoredumpInternalGetThreadContextInfo -sceSrcUtilityFlush -sceKernelMemoryPoolExpand -sceFiosOverlayModify -sceDebugResumeThread -sceMbusIsUsingDevice -sceImeVshSetCaretGeometry -sceVideoArbitrationEnable -sceFontGraphicsAgcSurfaceInit -sceShellCoreUtilGetOutOfVrPlayZoneWarning -sceIduUtilSetSysLanguage -sceCesRefersUcsProfileCp1255 -sceHttpSetAuthEnabled -scePfsGetHeaderReadCommand -sceShareUtilityOpenShareMenuForShareContent -sceGnmValidateDispatchCommandBuffers -scePthreadMutexInitForInternalLibc -sceUserServiceGetThemeBgImageZoom -sceRegMgrEvtGetCntForPS4 -sceHttpWaitRequest -sceKernelSpawn -sceSslFreeCaCerts -scePlayReadyApiVersionString -sceNpTrophyConfigGetTrophyFlagArray -sceKernelGetQafNameForRcmgr -sceRegMgrPrivateStorageFileName -sceNpWebApiUnregisterPushEventCallback -sceVisionManagerGetStoreCameraImgYPtr -sceVideoOutSysGetResolutionStatus2 -sceVnaTerminate -sceCesSbcToUtf16 -sceAudioOutOpenEx -sceNpSnsIntDeleteRequest -sceAgcDcbDrawIndexOffsetGetSize -scePerfSetUevt -sceDebugIpmiGetBlockedIpcInfo -sceShellCoreUtilMountHddForBackup -sceNetCtlDisconnectIpcInt -sceLoginMgrServerCheckTutorialShown -sceVideoRecordingQueryHddSize2 -sceHubAppUtilGetInstallationStatus -sceSslGetCaList -sceOpusDecTerminate -sceLoginDialogInitialize -sceNgs2StreamRunCommands -sceNpRegisterStateCallbackA -sceVrSetupDialogGetStatus -sceDebugGetApplicationIdByTitleId -sceUserServiceSetSystemLoggerHashedAccountIdTtl -sceCesRefersUcsProfileCp775 -sceUserServiceSetGlsLiveQuality -sceApplicationSetCanvasHandle -sceCameraGetAutoWhiteBalance -sceShellCoreUtilAcquireBgmCpuBudget -sceUpsrvUpdateDoUpdateWithPupPath -sceVrTrackerGetStateRelative -sceNpScoreCreateTitleCtx -sceLibcMspacePosixMemalign -sceVisionManagerRequestCalibrateTrackingLed -sceUserServiceGetAccessibilityVibration -sceNpWebApiSetRequestTimeout -scePerfPmcResetProc -sceKernelIccIndicatorBootDone -sceDebugWriteProcessRegister -sceMusicPlayerServiceGetTrackListVersion -sceCesRefersUcsProfileCp1250 -sceKernelGetDebugMenuModeForPsmForRcmgr -sceCompositorFlush -sceVrTrackerStartLiveCapture -sceSystemLogger2DeliveryGetResult -sceUserServiceGetUserNumber -sceFiosOverlayGetList -sceMatAgcUnregisterAllResourcesForOwner -sceHttpDeleteRequest -sceNpMatching2GetUserInfoList -sceCustomMusicCoreBgmClose -sceAmprMeasureCommandSizeReadFileGather -ScePsmMonoRaiseException -sceVshAvcapStop -sceHttpCreateConnectionWithURL -sceRtcSetCurrentNetworkTick -sceSystemServiceGetParentSocketForPs2Emu -sceNetCtlApRpClearEvent -sceKernelGetCpuTemperature -sceKeyboardDebugGetDeviceId -sceVideodecCreateDecoder -scePlayReadyLicenseGetProperty -sceFontGraphicsRenderResource -pthread_attr_getschedparam -sceNpWebApi2IntCreateRequest -sceNpManagerIntLoginValidateCredential -sceAvSettingGetCurrentDeviceInfo_ -sceNpPushTerm -sceCesRefersUcsProfileCp860 -sceNpTusGetMultiSlotVariableVUserAsync -sceGnmDebugHardwareStatus -sceSystemGestureOpen -sceShellCoreUtilUnmountDownloadDataForShellUI -sceVideodec2QueryDecoderMemoryInfo -sceNpTrophyGetTrophyInfo -pthread_rwlockattr_destroy -sceAgcDriverIsSubmitValidationEnabled -scePadGetCapability -sceShellCoreUtilSetPsStoreIconLayout -sceMatPopMarker -sceSystemServiceChangeMemoryClockToDefault -sceKernelAprSubmitCommandBufferAndGetId -sceAmprMeasureCommandSizeMapDirectBegin -_sceLibcLockFinalize -sceDebugIpmiGetConnectionWaitingThreadListBySessionKid -sceAgcAcbCondExec -sceVisionManagerGetResultOfCalibrateHmd -sceAppInstUtilAppGetMoveErrorAppList -sceAgcAcbCopyData -sceFontGraphicsSetFramePolicy -sceCesGbToUtf8 -sceAudioOutMasteringGetState -sceCompanionHttpdOptParamInitialize -sceBgftServiceIntDownloadGetUserStorageSize -sceCesSbcToUtf32 -sceIduUtilDeleteSaveData -sceNetCtlApStop -sceLncUtilStartLaunchAppByTitleId -sceCompositorSetVideoOutMode -sceAudioOutExConfigureOutputMode -sceAvSettingSetAudioOutModeAny_ -sceAgcDriverGetHsOffchipParam -sceUserServiceGetVolumeForMorpheusSidetone -scePlayReadyCdmiIsLicenseAckRequired -sceBgftServiceIntDownloadDebugGetBgftEnvInfoString -sceNpCommerceDialogGetResult -scePadSetAngularVelocityDeadbandState -sceFontGlyphRenderImageHorizontal -sceNpSessionSignalingActivateSession -sceNpScoreSanitizeComment -sceVdecwrapGetDecodeOutput -sceNpCheckPlus -sceCesMbcsStrGetUtf8Len -sceNpManagerIntClearGameAccessToken -sceHmdInternalMmapGetCount -sceAcmBatchJobNotification -sceSystemServiceNotifyBgmCoreTermination -sceShareUtilityAdvanceQueryServiceInfoA -sceNpSessionSignalingRequestPrepare -sceAgcDcbDrawIndexIndirectMultiGetSize -sceNpMutexLock -sceNpWordFilterCreateTitleCtx -sceAudioOutSetDevConnection -sceRemotePlayClientStartMicCapture -_sceLibcMemalign -sceNpWordFilterAbortRequest -sceImeVshSetPanelPosition -sceHmdInternalSetDefaultLedData -sceDebugDetachProcess -sceDeci4hDrfpRemove_fuse_fullpath -sceUserServiceSetSharePlayFramerateHost -sceBufferRealloc -sceVideoOutSysConfigureOutputMode_ +ScePsmMonoAssemblyOpenFull +ScePsmMonoClassFromName +ScePsmMonoClassGetMethodFromName +ScePsmMonoConfigParse +ScePsmMonoDebugInit +ScePsmMonoDebuggerAgentParseOptions +ScePsmMonoDelegateFreeFtnptr ScePsmMonoDelegateToFtnptr -pthread_spin_trylock -sceNpManagerIntLoginSignin -sceUserServiceSetGlsLfpsSortOrder -sceMatPushMarkerStatic -sceNgs2VoiceGetStateFlags -sceApplicationGetAppPackageInfoForCoredump -sceCesUtf16ToEucKr -sceCloudClientCancelRequestGame -sceHttpCreateRequest2 -sceNpManagerStopVsh -scePthreadMutexattrGetkind -sceApplicationNotifyPhase -sceAgcDriverGetResourceType -sceCompsoitorGetRenderingTime -scePadResetOrientation -sceLibreSslGetMemoryPoolStats -sceNpMatching2GetWorldInfoList -sceAgcDriverGetShaderDebuggingStatus -scePlayReadyCdmiUpdate -sceVideoOutRegisterBuffers2 -scePlayerInvitationDialogOpen -sceAmprAmmCommandBufferModifyMtypeProtect -sceUserServiceGetGlsCameraEffect -sceImeVshDisableController -sceSdmaOpen -sceNetGetMemoryPoolStats -sceKernelHasNeoMode -_sceKernelSetThreadDtors -sceFontGraphicsDefineIndexedVertexesGlyph -sceRemoteplayImeSetText -scePssMusicPlayerSetSurroundPan -sceSpPthreadJoin -sceLncUtilGetAppFocusedAppId -sceNpPushRegisterInContextNotificationtCallback -sceNpGameIntentGetPropertyValueString -sceSystemServiceGetStatus -sceFiosFHPread -sceNpUInt32ToStr -sceNpScoreGetRankingByRangeAsync -sceSystemStateMgrExtendShutdownTimer -sceNpAsmClientGetRelatedGameNpTitleIds -_sceLibcMallocFinalize -sceNpServiceCheckerIntInitialize -sceGnmValidateOnSubmitEnabled -sceKernelGetUpdVersion -sceVorbisDecTimeSeekPageLap -sceKernelAllocateDirectMemory -sceSystemServiceInvokeAppLaunchLink -sceFiosDirectoryDelete -sceFsUmountDownloadData -sceHmdGetInertialSensorData -sceApplicationDebugSpawnAndSetAllFocus -sceAgcDcbGetLodStatsGetSize -sceAvControlIsModeSystemDefault -sceVorbisDecHalfrate -sceAgcAcbSetWorkloadsActive -sceIduUtilSetPupVersion -sceKernelVirtualQuery -sceVideoOutGetEventData -sceSharePlayStartStreaming -sceEditMp4Abort -scePlayReadyReaderDecryptOpaque -sceNetShowNetstatEx -sceGnmSqttGetWrapCounts2 -sceVideoCoreChangeActiveStatus -sceSaveDataCheckBackupDataForCdlg -sceFaceParts -sceRudpRead -sceCesUcs2ToEucCn -sceLibcMspaceGetAddressRanges +ScePsmMonoDisableJitTimeLog +ScePsmMonoDlFallbackRegister +ScePsmMonoDomainAssemblyOpen +ScePsmMonoDomainGet ScePsmMonoEnableJitTimeLog -sceUpsrvGetRebootFlag -sceKernelInternalHeapPrintBacktraceWithModuleInfo -sceNpGetAccountIdA -sceHttp2SendRequest -sceCesUtf32leToEucKr -sceCesUcsProfileInitGbkCp936 -sceDevUsbDeleteCPKevent -sceAudioInSetDevConnection -scePthreadGetaffinity -sceNpSignalingGetConnectionInfoA -sceLncUtilSuspendLocalProcess -sceAmprMeasureCommandSizeResetGatherScatterState -sceNpWebApiCreateRequest -sceNpUniversalDataSystemEventPropertyArraySetArray -sceRegMgrBackupPushDataForPS4 -sceNetCtlScanIpcInt -sceRegMgrIsInitOK -sceNpTitleMetadataIntAbortRequest -sceHmd2GazeGetResultForFoveatedRendering -sceUserServiceSetEventFilterTeamEvent -sceVorbisDecTimeSeekLap -scePerfTraceIoGetEntry -sceFaceEstimatePoseRegion -sceNgs2StreamQueryInfo -sceAjmInstanceSwitch -sceSystemLogger2DeliverySetBatchDeliveryEvent -sceVdecswSetDecodeOutput -sceNetSocketInternal -sceAudioOutSetVolumeDown -sceHmdInternal3dAudioClose -sceHttpCacheCreateRequest -sceHmd2ReprojectionClearUserEventEnd -sceKernelInternalMemoryGetAvailableSize -sceAvSettingGetLoopbackBuffer -sceTextToSpeechTermImpl -scePatchCheckerTerminate -scalbf -sceNpPushSetNpCommunicationId -sceShellCoreUtilGetEffectiveTotalSizeOfUserPartition -scePlayReadyProfileClear -sceKernelWriteModifyMtypeProtectWithGpuMaskIdCommand -sceAudioInInputs -sceFsMountLwfs -sceUlpMgrRecv -sceUserServiceGetAccessibilityChatTranscription -sceTsGetRepresentationCount -sceSystemServiceUsbStorageRegisterCallback -sceHmdReprojectionSetUserEventToStart -sceHmdInternalSetBrightness -sceShellCoreUtilNotifyBgmCoreTermination -sceUserServiceSetPbtcSundayHoursEnd -sceNetCtlRegisterCallbackIpcInt -sceKernelAprWaitCommandBuffer -sceAppInstUtilAppGetAddcontListTotalSize -sceUserServiceSetGlsCameraSize -sceUsbdGetDevice -sceDiscMapBitmapInfoServerStart -sceUsbdHandleEventsLocked -sceAppInstUtilResumeInstall -sceGnmSqttStartTrace -sceUserServiceGetNpLanguageCode2 -sceContentSearchGetMetadataValue -scePerfTraceAprNameGetInfo -sceBgftServiceIntDownloadSetStartState -pthread_getstack_np -sceM4aacEncClearContextEx -scePlayGoGetInstallSpeed -sceVrTrackerCpuPushMarker -sceRnpsAppMgrDestroyBundle -sceFsInitUmountLwfsOpt -sceNpPush2UnregisterDataType -sceUsbStorageRequestMapWSB -sceGpuTraceStop -sceUsbdInterruptTransfer -sceKernelWriteEventQueueOnCompletionCommand -sceFontGetRenderScaledKerning -sceKernelSetGPI -sceSdmaWaitForEvent -pthread_getconcurrency -sceAgcGetDataPacketPayloadRange -sceNpSessionSignalingManualUdpEstablishConnection -sceCompositorGetAnotherProcessVideoAddress -sceHmdInitialize315 -sceAudioOutClose -scePs2EmuMenuDialogTerminate -sceHttpSetNonblock -scePlayReadyEnvelopeSeek -sceVideoRecordingOpen2 +ScePsmMonoEnvironmentExitcodeGet +ScePsmMonoFree +ScePsmMonoGcOutOfMemory +ScePsmMonoGcSetHeapSizeLimit +ScePsmMonoGcWbarrierGenericStore +ScePsmMonoGetExceptionOutOfMemory +ScePsmMonoInit +ScePsmMonoIoInstallCallbacks +ScePsmMonoJitCleanup +ScePsmMonoJitExec +ScePsmMonoJitExec2 +ScePsmMonoJitInit +ScePsmMonoJitInitVersion +ScePsmMonoJitParseOptions ScePsmMonoObjectGetClass -sceKernelLwfsLseek -sceNetConfigSetIfmtu -sceSystemServiceGetVersionNumberOfCameraCalibrationData -sceShellCoreUtilExtendShutdownTimer -sceNpInGameMessageCreateHandle -sceKernelCreateSblock -sceHmdInternalSocialScreenGetFadeState -sceNpUniversalDataSystemCreateEventPropertyObject -sceVorbisDecOpenCallbacks -sceDeci4hDrfpEventHandler -sceSystemServiceActivateHevcSoftAbort -scePadMbusTerm -sceNpIpcRegisterCallback -sceSystemServiceUsbStorageRequestUnmap -sceNpAppInfoIntFinalize -sceKernelCloseEventFlag -sceSaveDataDialogInitialize -sceAvControlInit -sceVideoRecordingGetInfo -sceRudpGetSizeReadable -sceNetSyncGet -sceInvitationDialogOpenA -sceMbusEventBusStatusChangeUnsubscribe -sceVrTrackerCpuPopMarker -scePthreadSetcanceltype -sceSaveDataPrepare -scePigletAllocateVideoMemoryEx -sceNpPush2Init -sceFontGetKerning -sceNpManagerIntLoginGetAuthenticateResponse -sceSaveDataManualUpload -sceIduUtilResumeAllDownloads -sceM4aacEncCreateEncoderEx -sceVideoCoreSetAudioVolume -sceNpWebApiCreateServicePushEventFilter -sceVrTrackerRegisterDevice -pthread_rwlock_wrlock -scePerfPmcNbSelectEvent -sceRnpsAppMgrSetEventFlagForClients -sceNpTrophySystemGetProgress -sceCesMbcsUcsSetMbcsReplacementCharUCode -sceAmprCommandBufferWriteAddressOnCompletion -sceVideoStreamingEngineMediaKeySessionLoad -sceGameCustomDataDialogGetResult -sceKernelWriteMultiMapCommand -sceNpTrophySystemCheckRecoveryRequired -scePlayReadyApiIsStarted -sceMusicCoreServerLaunchSpCore -sceDeci5Open -sceFsExtUSBSchedDestroy -sceMbusDebugSetControllerFocusByAppId -sceLibcBacktraceGetBufferSize -sceKernelXexitSblock -sceNpTrophySystemWrapRemoveUserData -sceVencCoreQueryPreset -sceRazorCpuFlushOccurred -sceSystemServiceOpenChallengeActivity -sceNpTssCreateNpTitleCtx -sceCesRefersUcsProfileBs4730 -sceAmprMeasureCommandSizeWriteKernelEventQueue_04_00 -sceNetResolverStartNtoaMultipleRecordsEx -sceVrSetupDialogInitialize -sceSpNetPoolCreate -sceNpManagerIntGetOnlineIdSdk -sceNgs2StreamCreate -sceNpTrophy2RegisterUnlockCallback -sceDeci4hDrfpOpen_fuse -sceRtcSetCurrentAdNetworkTick -sceApplicationGetCoredumpDirPath -sceContentExportValidateContents -sceVoiceChatRequestCreatePlayerSessionVoiceChatChannel -sceHttpAbortWaitRequest -sceAmprCommandBufferSetMarkerWithColor -sceNpGetPlatformType -sceMusicPlayerServiceInitialize3 -sceVrTracker2GetControllerImage -sceUpsrvUpdateDoUpdateSystemEx -sceFontGraphicsProcessRenderSequence -sceDeci4hDrfpTruncate_fuse -sceNetCtlClearEventForNpToolkit -sceNpUniversalDataSystemEventPropertyArraySetFloat64 -sceCesUtf16leToEucJp -sceMusicFwRemoveSrc -sceAgcSdmaSetTileModesBC -sceNpAsmClientGetRelatedGameNpTitleIdsA -sceVnaSetClientStatus -sceFontGraphicsFillRatesSetLayout -sceSrcUtilitySetPriority -sceKeyboardGetHandle -sceHttpCookieFlush -sceNpWebApiIntRegisterServicePushEventCallbackA -sceSystemServiceSetOutOfVrPlayZoneWarning -sceNetCtlApAppStartWithRetryPid -scePlayReadyCdmiRetrieveOpaqueDecryptedContent -sceAppInstUtilAppInstallMediaPlayer -sceNpServiceChecker2IntCheckServiceFlagArray -sceNpSnsYouTubeDialogGetStatus +ScePsmMonoPrivilegesFinishInit +ScePsmMonoPrivilegesStartInit ScePsmMonoProfilerLoad -sceNpUniversalDataSystemInitialize -sceNpDeleteEventFlag -sceNpWebApi2CreateUserContext -scePerfPmcUmcGetCounter -sceApplicationLocalProcessSuspend -scePfsGetPreadBlockRange -scePthreadMutexattrDestroy -sceHidControlGetAuthInformation -sceUserServiceSetFaceRecognitionDeleteCount -sceVrTracker2GetPlayAreaOrientedBoundingBox -sceNpTrophyIntGetLocalTrophySummary -sceVideoOutDriverResetBufferLabel -sceCesUcsProfileInitIso2022JpRfc1468 -sceShellCoreUtilIsBgmCpuBudgetAcquired -sceUserServiceUnregisterEventCallback -sceVoiceChatInitialize -sceAmprAmmCommandBufferModifyProtectWithGpuMaskId -sceMatUpdateModuleList -sceShareUtilityAdvanceResetPlayingContent -sceSlimglCompositorDeleteIndirectRenderTarget -sceMatResizeCommsBuffer -sceNpCondTimedwait -sceDepth2GetImage -sceOpusCeltEncTerminate -sceAppInstUtilAppDestroyPkg -sceKernelGetCpuUsage -sceGnmDrawOpaqueAuto -sceHmdInternalSeparateModeSendAudio -sceAjmBatchJobInlineBuffer -sceNpUniversalDataSystemGetMemoryStat -pthread_attr_setstackaddr -sceGnmSdmaGetMinCmdSize -sceVencCoreQueryMemorySize -sceUserServiceGetMouseHandType -sceDevUsbReadHost -sceFontSetScalePoint -sceDeci4hWrite -sceNpIsCEX -sceNpAppLauncherTerminate -sceLibcMspaceCheckMemoryBounds -sceNpTrophy2DestroyContext -sceRegMgrSrvGetRegion -sceRudpInitiate -sceAgcAcbPrimeUtcl2 -sceAvSettingAddCallbacks -sceDevUsbAddHostStreamKevent -sceAvSettingSetVideoOutModeAny_ -sceUserServiceGetShareDailymotionRefreshToken -sceGnmDriverInternalRetrieveGnmInterfaceForValidation -sceMoveGetBluetoothAddress -sceUserServiceGetParentalBrowser -sceGnmDebuggerReadSqIndirectRegister -sceNpWordFilterDeleteTitleCtx -sceWorkspaceIsUpdatePending -sceUserServiceSetGlsFloatingMessage -sceAgcDcbDrawIndexIndirect -sceErrorDialogGetStatus -sceMbusDetachFromApplicationByPid -sceAgcDriverUserDataImmediateWrite -sceNpTrophyIntGetProgress -sceNpUniversalDataSystemPostRecord -sceUsbdFillInterruptTransfer -sceAmprCommandBufferWriteAddressFromCounter_04_00 -sceTextToSpeech2Close -sceUsbdGetStringDescriptorAscii -sceLibSecureDestroy -sceSdmaCopyWindowTiledNonBlocking -sceFiosFHWritevSync -sceSystemServiceGetPlatformPrivacyDefinitionVersion -sceSystemServiceGetAppStatus -sceAudioOut2ContextResetParam -sceRemoteplayPrintAllRegistData -sceApplicationKickCoredump -sceGnmRegisterGnmLiveCallbackConfig -sceAgcCbNopGetSize -sceUsbdGetBusNumber -sceUpsrvUpdateAppdbForEap -sceNpTusPollAsync -sceAgcDriverGetWorkloadStreamInfo -sceCompositorSetVirtualCanvasCommandFooter -sceNgs2ParseWaveformUser -sceDebugGetWaitingListOfUltRwlock -scePthreadBarrierWait -sceNpTrophySystemPerformRecovery -sceNetEventCallbackGetError -sceKernelIccGetPowerNumberOfBootShutdown -sceRemotePlayClientRemoveController -sceAppInstUtilInstallByPackage -sceNpSessionServiceGetRunningGamePlayerSession -sceKernelGetBetaUpdateTestForRcmgr -pthread_set_defaultstacksize_np -sceMatReallocPoolMemory -sceNpMatching2SignalingGetConnectionStatus -sceShellCoreUtilGetDeviceStatus -sceDebugWriteThreadRegister -sceApplicationEndSclkChange -sceMatMemoryPoolCommit -sceScreenShotDisable -sceSystemServiceAddLocalProcessForPs2Emu -sceSystemServiceActivateHevcTerm -sceMbusDumpAppInfo -sceImeConfirmCandidate -sceAudioPropagationSourceSetAudioPath -sceDepthDisableHeteroMode -sceAudioDeviceControlGet -sceAudioPropagationPathGetNumPoints -sceAgcDriverUserDataImmediateWritePacket -sceNpSessionSignalingInitializeWithPort -sceFiosSuspend -sceMusicPlayerServiceSetAudioVolume -sceSystemServiceResumeLocalProcess -sceImeVshSetCaretIndexInPreedit -sceUserServiceSetSystemLoggerHashedAccountIdClockType -sceKernelWriteMapDirectWithGpuMaskIdCommand -sceAmprCommandBufferNop -sceGnmPaHeartbeat -sceUsbStorageIsExist -sceVencCoreGetAuData -sceNpAsmClientCreateRequest2 -sceRtcFormatRFC3339PreciseLocalTime -sceNpSignalingGetMemoryInfo -sceNetNtohll -sceRemoteplayConfirmDeviceRegist -sceSystemServiceShowDisplaySafeAreaSettings -sceNpTrophySystemGetLocalTrophySummary -sceFiosDateGetCurrent -sceAudioInSetPortConnections -sceCloudClientTestConnection -sceFiosDebugSetTraceMask -sceDebugSetStepThread -sceAgcDcbSetNumInstances -sceDebugReadProcessRegister -sceKernelGetSocClock -sceCesUtf32beToEucKr -sceNetApctlStartWithRetry -sceNpTrophySystemRemoveAll -sceSystemLogger2DeliveryTerminate -sceKernelGetChildApp -sceGnmGpuPaDebugLeave -sceCesGbToUtf32be -sceAcmBatchStartBuffer -scePthreadGetcpuclockid -sceFiosFHTruncateSync -sceVdecswSyncDecodeOutput -sceVideoRecordingStart -sceVideoCoreIfSetFunctionTableUnlimited -sceRudpListen -sceSlimglSupportServerProcess -sceKernelGetPageTableStats -sceGnmGetGpuInfoStatus -sceAmprCommandBufferGetSize -sceDbgGetExecutablePath -sceKernelGetdirentries -sceContentExportFinish -sceNpGriefReportCdPost -sceFsGetClusterStatistics -sceGameCustomDataDialogGetStatus -pthread_get_specificarray_np -sceNpSnsFacebookDialogInitialize -sceDebugGetApplicationList -scePthreadResumeAll -sceAudioOutStopSharePlay -sceLncUtilIsAppSuspended -sceNpJsonParseInit -sceNpManagerIntGetAccessTokenViaImplicitFlow -sceKernelReleaseFlexibleMemory -sceNpAppLaunchLink2IntGetCompatibleTitleIdNum -sceNetCtlGetIfStat -sceSystemStateMgrIsGpuPerformanceNormal -sceAppCheckerAbort -sceVideoCoreChangeDisplayStatus -sceFsInitMountLwfsOpt -sceTsGetNextAuInfo -sceHmdGetDeviceInformation -sceFsDevpfsFetchMetaEntry -sceUlpMgrQueuePush -sceAudioInSetConnectionsForUser -sceHttpUriUnescape -sceGnmDrawIndexIndirectCountMulti -sceFontGetFontResolution -sceNetShowPolicy -sceNpPush2UnsetNpCommunicationId -sceG2PDialogUpdateStatus -sceKernelGetProductStr -sceFiosCachePrefetchFHRangeSync -sceIduTerm -scePssPadrGetOutputPortDescription -sceAmprMeasureCommandSizeSetMarkerWithColor -scePthreadMutexUnlock -sceNpEulaDialogCheckVersion -sceFsDevpfsEventResponseComplete -sceNetConfigRoutingStop -sceAmprAmmSetPageTablePoolOccupancyNotificationThreshold -sceNpUniversalDataSystemRegisterContext -sceOpusCeltEncEncode -sceLibSecureHashSetContext -sceRegMgrCntlStart -sceNpTusTryAndSetVariableVUserAsync -sceKernelIsGenuineCEX -scePlayGoInitialize -sceHttpCreateRequest -sceCustomMusicServiceSendRequest -sceMoveTerm -sceCameraGetDefectivePixelCancellation -pthread_mutex_init -sceMoveReadStateLatest -sceBgftServiceIntDebugPlayGoClearSetFreeZone -sceUserServiceGetSharePlayResolutionHost -sceSaveDataGetClientThreadPriority -sceBluetoothHidInit -sceSslCreateConnection -sceNetConfigUnsetIfFlags -sceCompositorGetRenderTargetResolution -sceDeci4hDrfpRmdir_fuse_fullpath -sceNpMatching2SignalingGetConnectionInfo -sceAvSettingIsSuspendedProcessOutputModeAvailable -sceVideoOutAddBuffer4k2kPrivilege -scePthreadAttrGetguardsize -sceNpBandwidthTestShutdownWithDetailedInfo -sceShareUtilityAdvanceWakeUpShareMenuBroadcast -sceNpTitleMetadataIntDeleteRequest -sceContentBinderReset -sceNpAsmClientGetNpComInfo4 -sceBluetoothHidUnregisterDevice -sceKernelGetModuleListInternal -sceVideoOutCursorSetImageAddress -sceUserServiceSetAutoLoginEnabled -sceNgs2SystemDestroy -sceUserServiceGetJapaneseInputType -sceHttpRedirectCacheFlush -scePadGetHandle -sceLncUtilBlockAppSuspend -sceCesUtf32beToUhc -sceFsSmrTrimPath -sceHidControlGetDeviceInfo -scePigletReleaseVideoMemory -sceAgcDcbStallCommandBufferParser -sceAgcDriverHp3dLockEnd -sceLibcPafMspaceRealloc -sceKernelIsGenuineN -sceShellCoreUtilGetAppLaunchedParamInt -sceShareUtilityAdvanceInitialize -sceFontCreateRenderer -sceNetCtlCheckCallbackForNpToolkit -sceAcm_ConvReverb_SharedInput -scePlayReadyReinitialize -sceClKernelNanosleep -sceFsUmountLwfsCompat -sceAgcDriverWaitUntilSafeForRendering -sceVideoCoreSetFullScreen -sceRazorCaptureImmediate -sceNpTrophyIntAbortHandle -sceUsbdLockEvents -sceWebTerminate -sceUserServiceGetKratosPrimaryUser -sceCesUcsProfileInitEucKr -sceMatRegisterResource -sceZlibWaitForDone -sceUserServiceSetPbtcMondayHoursEnd -sceNpMatching2RegisterRoomMessageCallback -sceNgs2ReportRegisterHandler -sceOpusSilkEncInitialize -sceNetCtlGetState -sceCamera2Close -sceWkFontConfigGetFont -sceNpEntitlementAccessRequestUnifiedEntitlementInfoList -sceFiosDHOpen -sceBgftServiceIntDownloadGetTaskInfo -sceDbgPlayGoRequestNextChunk -sceNpMutexInit -sceNpRegisterGamePresenceCallback -sceMbusDebugSetCameraAppModuleFocus -sceNpTusGetMultiSlotVariableVUser -sceVideoCoreInterfaceSetFunctionTable -sceAmprAmmMeasureAmmCommandSizeMultiMapWithGpuMaskId -sceHmdInternalGetStatusReport -sceSdmaFlushAllWithEvent -sceNpTusGetDataAsync -sceCesUhcToUtf16be -sceNpSnsIntFbGetGameAccessTokenAllowed -sceSystemServiceReenableMediaPlay -sceAgcGetRegisterDefaultsInternal -sceAudio3dPortFreeState -sceAjmBatchJobClearContext -sceIduUtilGetNumSchedules -sceAgcDriverGetResourceRegistrationMaxNameLength -sceNpTrophySystemGetTrpTitleIcon -sceNpCommerceSetPsStoreIconLayout -sceSrcUtilityFinalize -sceNpCondSignal -exit -sceUserServiceGetGlsLanguageFilter -sceJpegDecQueryMemorySize -sceVorbisDecStreams -sceMatAllocPhysicalMemory -sceNetConfigSetIfLinkLocalAddr6 -sceMusicCoreServerGetSpWakeupAuthorityList -sceSaveDataPromote5 -sceBgftServiceIntDownloadGetExtUsbUserStorageSize -sceNpAsmClientGetNpComInfo3 -_sceNpMemoryHeapShowMemoryStat -sceNpSnsIntAbortRequest -sceM4aacEncClearContext -sceHmdInternalGetBrightness -sceRudpAccept -sceSystemStateMgrReboot -sceUserServiceGetFaceRecognitionDeleteCount -sceHttp2SetInflateGZIPEnabled -sceNpWebApiVshInitialize -sceNpManagerIntGetUserIdByOnlineId -sceAjmBatchJobGetCodecInfo -sceFiosCachePrefetchFHRange -sceNpManagerIntGetTicket -sceSaveDataUmount2 -scePlayGoGetLocus -sceVoiceChatRequestLeaveVoiceChatGroup -sceKernelCheckReachability -sceFsLvdDetach -scePssMusicPlayerUserCreate -sceWebBrowserDialogNavigate -sceRemoteplayIsRemotePlaying -scePlayReadyProfileResume -sceFiosRename -sceUserServiceSetPbtcWednesdayHoursEnd -sceContentExportFromDataWithThumbnail -sceAgcCbBranchGetSize -sceMusicPlayerServiceTerminate -sceNpManagerIntUnbind -scePssMusicPlayerGetSurroundPan -sceSaveDataDeleteUser -sceRazorCpuPushMarkerStatic -sceEsvmEngineMediaKeySessionGetKeyStatuses -sceUltQueueTryPop -sceImeKeyboardSetMode -sceNpAuthGetIdToken -sceNpManagerIntLoginParseJsonUserInfo -sceSpNetEpollWait -sceNpSnsTwitchDialogUpdateStatus -sceSystemServiceLaunchPlayerDialog -sceLncUtilCrashSyscore -sceCesUtf32StrGetMbcsLen -sceGpuTraceCancel -sceCamera2SetVideoSync -sceAudio3dAudioOutOpen -sceBluetoothHidInterruptOutput -sceVoiceResetPort -sceFsInitUmountSaveDataOpt -sceDataTransferRequestTransferTimePS4 -sceRtcSetTick -sceNpTusTryAndSetVariableAVUserAsync -sceRemoteplayGetMbusDeviceInfo -sceVrTrackerRegisterDeviceInternal -sceGameLiveStreamingScreenInitialize -sceSystemServiceShowClosedCaptionAdvancedSettings -sceDbgGetCpuGpuFrequencySetting -sceNpPushStartNotificationA -sceUserServiceSetEventSortEvent -sceAudioOut2LoContextQueryMemory -sceIduIsRifInstalled -sceUserServiceSetNotificationBehavior -sceFacePartsGetWorkingMemorySize -sceNpStrToUInt32 -sceNpProfileDialogOpen -sceNpManagerIntLoginVerifyDeviceCode -sceNpServiceChecker2IntIsSetServiceType -sceNpTusTryAndSetVariable -_sceNpManagerGetNpMemAllocator -sceVencCoreUnmapTargetMemoryByPid -sceOpusSilkEncEncode -sceVideoCoreRegistEventCallback -sceNpTusAddAndGetVariableVUser -sceUsbStorageDialogGetResult -sceKernelGetOpenPsIdForSystem -sceNpAsmGenerateNpTitleToken -sceCesEucCnToUcs2 -sceAudioOutStartSharePlay -sceNpTusGetDataAVUserAsync -sceCommonDialogInitialize -sceHeadTrackerSearchCandidate -sceSystemTtsRegisterCallback -sceBluetoothHidUnregisterCallback -sceUpsrvUpdateCheckGetPackageInfo -scePthreadMutexTrylock -sceKernelSaveApp -sceFiberGetInfo -sceKernelAddResource -sceNpPollAsync -sceVideoOutClose -sceDebugGetSyncObjectData -sceNpWordFilterPollAsync -sceFiosFHWrite -sceNetCtlUnregisterCallbackForLibIpcInt -sceMbusAcquireControlWithState -sceAvSettingAddCallbacksForLnc -sceKernelEnableDmemAliasing -sceHmdReprojectionFinalizeCapture -sceVideoOutGetOutputStatus -sceNgs2VoiceControl -sceHmd2ReprojectionSetAllowPositionalReprojection -sceKernelSync -sceUserServiceLogin -sceSdmaCopyWindowL2LNonBlocking -sceRemotePlayClientGetClientStatus -sceNpManagerIntGetUserIdByMAccountId -sceAppInstUtilAppGetAllAppSize -sceDbgRemoveExceptionHandler -sceNpManagerIntBindByJsonUserInfo -sceBgftServiceIntPatchGoGetProgress -sceDbgVideoOutAddOutputModeVr60Privilege -sceSaveDataUnregisterEventCallback -sceDeci5GetStatus -sceKernelGetFirstImageAddr -sceAvControlGetDetailHdcpStatus -sceFontSetEffectWeight -sceSaveDataCheckBackupDataInternal -sceSdmaCopyWindowL2L -sceUpsrvUpdateCheckIsSystemBetaClosed -sceHmdInternalSetPortStatus -sceNpPartyGetMemberInfoA -sceHttp2WebSocketClose -sceNpGriefReportAbortTransaction -sceKernelNotifyAppEvent -sceSaveDataSetSaveDataLibraryUser -sceKernelEnableDmemAliasing2 -scePlayGoGetEta -sceVorbisDecPcmTotal -sceNetEtherNtostr -sceDbgRequireSystemSwVersion -sceSaveDataSetupSaveDataMemory -sceLncUtilSetAppFocus -sceNpTrophy2SystemBuildTrophyIconUri +ScePsmMonoRaiseException +ScePsmMonoRegisterBundledAssemblies +ScePsmMonoRuntimeInvoke +ScePsmMonoRuntimeQuit +ScePsmMonoRuntimeResourceLimit +ScePsmMonoRuntimeResourceSetCallback +ScePsmMonoRuntimeSetShuttingDown +ScePsmMonoSecurityEnableCoreClr +ScePsmMonoSecuritySetCoreClrPlatformCallback +ScePsmMonoSetDirs +ScePsmMonoStringChars +ScePsmMonoStringFromUtf16 +ScePsmMonoStringLength +ScePsmMonoStringNew +ScePsmMonoStringNewWrapper +ScePsmMonoStringToUtf8 +ScePsmMonoTerm +ScePsmMonoThreadSetMaxThreads +ScePsmMonoThreadSetThreadsExhaustedCallback +ScePsmMonoThreadSuspendAllOtherThreads +ScePsmMonoThreadpoolSetMaxThreads +ScePsmMonoThreadsSetShuttingDown +ScePsmMonoTypeIsValueType +ScePsmWapiCryptoPolicyCallback +SdkVersion +Seek +SendNtfMsg +SendPrivateMessage +ServiceSupported +SetCurrentSrcId +SetCurrentTime +SetDataFolder +SetMute +SetServiceType +SetVolume +ShCompile +ShConstructCompiler +ShDestruct +ShGetActiveAttrib +ShGetActiveUniform +ShGetInfo +ShGetInfoLog +ShGetObjectCode +ShInitBuiltInResources +ShInitialize +ShareGetCurrentStatus +ShareInitialize +ShareTerminate +ShowNotification +SoundInitialize +SoundLoad +SoundPlay +SoundTerminate +SpeechCancel +SpeechClose +SpeechInitialize +SpeechSpeak +SpeechStatus +SpeechTerminate +SwCtrlManagerActivate +SwCtrlManagerCancelActivate +SwCtrlManagerCancelInitialize +SwCtrlManagerCheckActivate +SwCtrlManagerCheckInitialize +SwCtrlManagerEndActivateSession +SwCtrlManagerFinalize +SwCtrlManagerInitialize +SwCtrlManagerSetSRM +SwCtrlManagerStartActivateSession +SwCtrlSinkAuthenticate +SwCtrlSinkCancel +SwCtrlSinkFinalize +SwCtrlSinkInitialize +SwCtrlSinkStreamCancel +SwCtrlSinkStreamFinalize +SwCtrlSinkStreamGetReadPointer +SwCtrlSinkStreamGetWritePointer +SwCtrlSinkStreamInitialize +SwCtrlSinkStreamIsEOS +SwCtrlSinkStreamSetEOS +SwCtrlSinkStreamSetReadPointer +SwCtrlSinkStreamSetWritePointer +SwCtrlSinkStreamStart +SwCtrlSinkStreamStop +SwReset +SystemDialogInit +SystemDialogOpen +SystemServiceParamGetInt +SystemServiceParamGetString +T3hi +T3lo +T5hi +T5lo +T7hi +T7lo +TEECI_InitASD +TEECI_SetTimeout +TEEC_CloseSession +TEEC_InvokeCommand +TEEC_OpenSession +TEEC_ReleaseSharedMemory +TEEC_RequestCancellation +TLS_client_method +TWO23 +TWO52 +T_CString_int64ToString +T_CString_int64ToString_67 +T_CString_integerToString +T_CString_integerToString_67 +T_CString_stringToInteger +T_CString_stringToInteger_67 +T_CString_toLowerCase +T_CString_toLowerCase_67 +T_CString_toUpperCase +T_CString_toUpperCase_67 +TerminateLib +TerminateNetLib +ThreadUtils_SetSchedulePolicy +UCNV_FROM_U_CALLBACK_ESCAPE +UCNV_FROM_U_CALLBACK_ESCAPE_59 +UCNV_FROM_U_CALLBACK_ESCAPE_67 +UCNV_FROM_U_CALLBACK_SKIP +UCNV_FROM_U_CALLBACK_SKIP_67 +UCNV_FROM_U_CALLBACK_STOP +UCNV_FROM_U_CALLBACK_STOP_59 +UCNV_FROM_U_CALLBACK_STOP_67 +UCNV_FROM_U_CALLBACK_SUBSTITUTE +UCNV_FROM_U_CALLBACK_SUBSTITUTE_59 +UCNV_FROM_U_CALLBACK_SUBSTITUTE_67 +UCNV_TO_U_CALLBACK_ESCAPE +UCNV_TO_U_CALLBACK_ESCAPE_67 +UCNV_TO_U_CALLBACK_SKIP +UCNV_TO_U_CALLBACK_SKIP_67 +UCNV_TO_U_CALLBACK_STOP +UCNV_TO_U_CALLBACK_STOP_59 +UCNV_TO_U_CALLBACK_STOP_67 +UCNV_TO_U_CALLBACK_SUBSTITUTE +UCNV_TO_U_CALLBACK_SUBSTITUTE_59 +UCNV_TO_U_CALLBACK_SUBSTITUTE_67 +UDataMemory_createNewInstance_67 +UDataMemory_init_67 +UDataMemory_isLoaded_67 +UDataMemory_normalizeDataPointer_67 +UDataMemory_setData_67 +UDatamemory_assign_67 +UI_OpenSSL +UI_create_method +UI_destroy_method +UI_get0_user_data +UI_get_input_flags +UI_get_string_type +UI_method_get_closer +UI_method_get_opener +UI_method_get_reader +UI_method_get_writer +UI_method_set_closer +UI_method_set_opener +UI_method_set_reader +UI_method_set_writer +UI_set_result +UnLockCommInfoList +UnLockProtocolInfoList +UnregisterPrivateMessage +UseSharedSpaces +VLONG_freeVlongQueue +VerifyClass +VerifyClassCodes +VerifyClassCodesForMajorVersion +VerifyClassForMajorVersion +VerifyClassname +VerifyFixClassname +WKAXObjectButtonState +WKAXObjectCopyDescription +WKAXObjectCopyHelpText +WKAXObjectCopyTitle +WKAXObjectCopyURL +WKAXObjectDescription +WKAXObjectFrame +WKAXObjectGetTypeID +WKAXObjectHelpText +WKAXObjectPage +WKAXObjectRole +WKAXObjectTitle +WKAXObjectURL +WKAccessibilityCanUseSecondaryAXThread +WKAccessibilityEnableEnhancedAccessibility +WKAccessibilityEnhancedAccessibilityEnabled +WKAccessibilityFocusedObject +WKAccessibilityRootObject +WKAddMockMediaDevice +WKApplicationCacheManagerDeleteAllEntries +WKApplicationCacheManagerDeleteEntriesForOrigin +WKApplicationCacheManagerGetApplicationCacheOrigins +WKApplicationCacheManagerGetTypeID +WKArrayAppendItem +WKArrayCreate +WKArrayCreateAdoptingValues +WKArrayGetItemAtIndex +WKArrayGetSize +WKArrayGetTypeID +WKArrayIsMutable +WKArrayRemoveItemAtIndex +WKAuthenticationChallengCopyRequestURL +WKAuthenticationChallengeGetDecisionListener +WKAuthenticationChallengeGetPreviousFailureCount +WKAuthenticationChallengeGetProposedCredential +WKAuthenticationChallengeGetProtectionSpace +WKAuthenticationChallengeGetTypeID +WKAuthenticationChallengeIsForMainResource +WKAuthenticationChallengeIsInMainFrame +WKAuthenticationDecisionListenerCancel +WKAuthenticationDecisionListenerGetTypeID +WKAuthenticationDecisionListenerRejectProtectionSpaceAndContinue +WKAuthenticationDecisionListenerUseCredential +WKBackForwardListClear +WKBackForwardListCopyBackListWithLimit +WKBackForwardListCopyForwardListWithLimit +WKBackForwardListGetBackItem +WKBackForwardListGetBackListCount +WKBackForwardListGetCurrentItem +WKBackForwardListGetForwardItem +WKBackForwardListGetForwardListCount +WKBackForwardListGetItemAtIndex +WKBackForwardListGetTypeID +WKBackForwardListItemCopyOriginalURL +WKBackForwardListItemCopyTitle +WKBackForwardListItemCopyURL +WKBackForwardListItemGetTypeID +WKBatteryManagerGetTypeID +WKBatteryManagerProviderDidChangeBatteryStatus +WKBatteryManagerProviderUpdateBatteryStatus +WKBatteryManagerSetProvider +WKBatteryStatusCreate +WKBatteryStatusGetTypeID +WKBooleanCreate +WKBooleanGetTypeID +WKBooleanGetValue +WKBundleActivateMacFontAscentHack +WKBundleAddOriginAccessAllowListEntry +WKBundleAddOriginAccessWhitelistEntry +WKBundleAddUserScript +WKBundleAddUserStyleSheet +WKBundleBackForwardListClear +WKBundleBackForwardListCopyItemAtIndex +WKBundleBackForwardListGetBackListCount +WKBundleBackForwardListGetForwardListCount +WKBundleBackForwardListGetTypeID +WKBundleBackForwardListItemCopyChildren +WKBundleBackForwardListItemCopyOriginalURL +WKBundleBackForwardListItemCopyTarget +WKBundleBackForwardListItemCopyTitle +WKBundleBackForwardListItemCopyURL +WKBundleBackForwardListItemGetTypeID +WKBundleBackForwardListItemHasCachedPageExpired +WKBundleBackForwardListItemIsInBackForwardCache +WKBundleBackForwardListItemIsInPageCache +WKBundleBackForwardListItemIsSame +WKBundleBackForwardListItemIsTargetItem +WKBundleClearAllDatabases +WKBundleClearAllDiskCaches +WKBundleClearAllDiskcaches +WKBundleClearApplicationCache +WKBundleClearApplicationCacheForOrigin +WKBundleClearDiskCachesByPattern +WKBundleClearHistoryForTesting +WKBundleClearResourceLoadStatistics +WKBundleCopyOriginsWithApplicationCache +WKBundleCreateWKDataFromUInt8Array +WKBundleDOMWindowExtensionCreate +WKBundleDOMWindowExtensionGetFrame +WKBundleDOMWindowExtensionGetScriptWorld +WKBundleDOMWindowExtensionGetTypeID +WKBundleExtendClassesForParameterCoder +WKBundleFileHandleCreateWithPath +WKBundleFrameAllowsFollowingLink +WKBundleFrameCallShouldCloseOnWebView +WKBundleFrameClearOpener +WKBundleFrameContainsAnyFormControls +WKBundleFrameContainsAnyFormElements +WKBundleFrameConvertMonotonicTimeToDocumentTime +WKBundleFrameCopyCertificateInfo +WKBundleFrameCopyChildFrames +WKBundleFrameCopyCounterValue +WKBundleFrameCopyInnerText +WKBundleFrameCopyLayerTreeAsText +WKBundleFrameCopyMIMETypeForResourceWithURL +WKBundleFrameCopyMarkerText +WKBundleFrameCopyName +WKBundleFrameCopyProvisionalURL +WKBundleFrameCopySecurityOrigin +WKBundleFrameCopySuggestedFilenameForResourceWithURL +WKBundleFrameCopyURL +WKBundleFrameCopyWebArchive +WKBundleFrameCopyWebArchiveFilteringSubframes +WKBundleFrameCreateFrameHandle +WKBundleFrameCreateHitTestResult +WKBundleFrameDisableThrottlingByTileCount +WKBundleFrameDisableThrottlingByTime +WKBundleFrameEnableHTMLTile +WKBundleFrameEnableMemoryInfo +WKBundleFrameEnableThrottlingByTileCount +WKBundleFrameEnableThrottlingByTime +WKBundleFrameFocus +WKBundleFrameForJavaScriptContext +WKBundleFrameGetACMemoryInfo +WKBundleFrameGetComputedStyleIncludingVisitedInfo +WKBundleFrameGetContentBounds +WKBundleFrameGetDocumentBackgroundColor +WKBundleFrameGetFrameLoadState +WKBundleFrameGetJavaScriptContext +WKBundleFrameGetJavaScriptContextForWorld +WKBundleFrameGetJavaScriptWrapperForFileForWorld +WKBundleFrameGetJavaScriptWrapperForNodeForWorld +WKBundleFrameGetJavaScriptWrapperForRangeForWorld +WKBundleFrameGetNumberOfActiveAnimations +WKBundleFrameGetPage +WKBundleFrameGetParentFrame +WKBundleFrameGetPendingUnloadCount +WKBundleFrameGetScrollOffset +WKBundleFrameGetTypeID +WKBundleFrameGetVisibleContentBounds +WKBundleFrameGetVisibleContentBoundsExcludingScrollbars +WKBundleFrameHandlesPageScaleGesture +WKBundleFrameHasHorizontalScrollbar +WKBundleFrameHasVerticalScrollbar +WKBundleFrameIsMainFrame +WKBundleFramePauseAnimationOnElementWithId +WKBundleFramePauseTransitionOnElementWithId +WKBundleFrameRegisterAsyncImageDecoder +WKBundleFrameResumeAnimations +WKBundleFrameSetAccessibleName +WKBundleFrameSetTextDirection +WKBundleFrameStopLoading +WKBundleFrameSuspendAnimations +WKBundleGarbageCollectJavaScriptObjects +WKBundleGarbageCollectJavaScriptObjectsOnAlternateThreadForDebugging +WKBundleGetAppCacheUsageForOrigin +WKBundleGetApplicationConnection +WKBundleGetDiskCacheStatistics +WKBundleGetFastMallocStatistics +WKBundleGetJavaScriptHeapStatistics +WKBundleGetJavaScriptObjectsCount +WKBundleGetLiveDocumentURLs +WKBundleGetMemoryCacheStatistics +WKBundleGetOSAllocatorStatistics +WKBundleGetTypeID +WKBundleGetWebNotificationID +WKBundleHitTestResultCopyAbsoluteImageURL +WKBundleHitTestResultCopyAbsoluteLinkURL +WKBundleHitTestResultCopyAbsoluteMediaURL +WKBundleHitTestResultCopyAbsolutePDFURL +WKBundleHitTestResultCopyImage +WKBundleHitTestResultCopyLinkLabel +WKBundleHitTestResultCopyLinkSuggestedFilename +WKBundleHitTestResultCopyLinkTitle +WKBundleHitTestResultCopyNodeHandle +WKBundleHitTestResultCopyURLElementHandle +WKBundleHitTestResultGetFrame +WKBundleHitTestResultGetImageRect +WKBundleHitTestResultGetIsSelected +WKBundleHitTestResultGetMediaType +WKBundleHitTestResultGetTargetFrame +WKBundleHitTestResultGetTypeID +WKBundleHitTestResultIsDownloadableMedia +WKBundleHitTestResultMediaHasAudio +WKBundleHitTestResultMediaIsInFullscreen +WKBundleInitialize +WKBundleInspectorClose +WKBundleInspectorEvaluateScriptForTest +WKBundleInspectorGetTypeID +WKBundleInspectorSetJavaScriptProfilingEnabled +WKBundleInspectorSetPageProfilingEnabled +WKBundleInspectorShow +WKBundleIsPageBoxVisible +WKBundleIsProcessingUserGesture +WKBundleNavigationActionCopyDownloadAttribute +WKBundleNavigationActionCopyFormElement +WKBundleNavigationActionCopyHitTestResult +WKBundleNavigationActionGetEventModifiers +WKBundleNavigationActionGetEventMouseButton +WKBundleNavigationActionGetNavigationType +WKBundleNavigationActionGetShouldOpenExternalURLs +WKBundleNavigationActionGetShouldTryAppLinks +WKBundleNavigationActionGetTypeID +WKBundleNodeHandleCopyDocument +WKBundleNodeHandleCopyDocumentFrame +WKBundleNodeHandleCopyHTMLFrameElementContentFrame +WKBundleNodeHandleCopyHTMLIFrameElementContentFrame +WKBundleNodeHandleCopyHTMLTableCellElementCellAbove +WKBundleNodeHandleCopySnapshotWithOptions +WKBundleNodeHandleCopyVisibleRange +WKBundleNodeHandleCreate +WKBundleNodeHandleGetElementBounds +WKBundleNodeHandleGetHTMLInputElementAutoFillAvailable +WKBundleNodeHandleGetHTMLInputElementAutoFillButtonBounds +WKBundleNodeHandleGetHTMLInputElementAutoFillButtonEnabled +WKBundleNodeHandleGetHTMLInputElementAutoFillButtonType +WKBundleNodeHandleGetHTMLInputElementAutoFilled +WKBundleNodeHandleGetHTMLInputElementAutofilled +WKBundleNodeHandleGetHTMLInputElementLastAutoFillButtonType +WKBundleNodeHandleGetHTMLInputElementLastChangeWasUserEdit +WKBundleNodeHandleGetHTMLTextAreaElementLastChangeWasUserEdit +WKBundleNodeHandleGetRenderRect +WKBundleNodeHandleGetTypeID +WKBundleNodeHandleSetHTMLInputElementAutoFillAvailable +WKBundleNodeHandleSetHTMLInputElementAutoFillButtonEnabled +WKBundleNodeHandleSetHTMLInputElementAutoFillButtonEnabledWithButtonType +WKBundleNodeHandleSetHTMLInputElementAutoFilled +WKBundleNodeHandleSetHTMLInputElementAutoFilledAndViewable +WKBundleNodeHandleSetHTMLInputElementAutofilled +WKBundleNodeHandleSetHTMLInputElementSpellcheckEnabled +WKBundleNodeHandleSetHTMLInputElementValueForUser +WKBundleNumberOfPages +WKBundleOverrideBoolPreferenceForTestRunner +WKBundlePageAddUserScript +WKBundlePageAddUserScriptInWorld +WKBundlePageAddUserStyleSheet +WKBundlePageCallAfterTasksAndTimers +WKBundlePageCanHandleRequest +WKBundlePageCanShowMIMEType +WKBundlePageClearApplicationCache +WKBundlePageClearApplicationCacheForOrigin +WKBundlePageClearMainFrameName +WKBundlePageClickMenuItem +WKBundlePageClose +WKBundlePageConfirmComposition +WKBundlePageConfirmCompositionWithText +WKBundlePageCopyContextMenuAtPointInWindow +WKBundlePageCopyContextMenuItems +WKBundlePageCopyGroupIdentifier +WKBundlePageCopyOriginsWithApplicationCache +WKBundlePageCopyRenderLayerTree +WKBundlePageCopyRenderTree +WKBundlePageCopyRenderTreeExternalRepresentation +WKBundlePageCopyRenderTreeExternalRepresentationForPrinting +WKBundlePageCopyTrackedRepaintRects +WKBundlePageCreateScaledSnapshotInDocumentCoordinates +WKBundlePageCreateSnapshotInDocumentCoordinates +WKBundlePageCreateSnapshotInViewCoordinates +WKBundlePageCreateSnapshotWithOptions +WKBundlePageDidEnterFullScreen +WKBundlePageDidExitFullScreen +WKBundlePageDumpHistoryForTesting +WKBundlePageExecuteEditingCommand +WKBundlePageExtendIncrementalRenderingSuppression +WKBundlePageFindString +WKBundlePageFindStringMatches +WKBundlePageFlushPendingEditorStateUpdate +WKBundlePageForceRepaint +WKBundlePageGetAppCacheUsageForOrigin +WKBundlePageGetBackForwardList +WKBundlePageGetBackingScaleFactor +WKBundlePageGetInspector +WKBundlePageGetMainFrame +WKBundlePageGetPageGroup +WKBundlePageGetPageZoomFactor +WKBundlePageGetRenderTreeSize +WKBundlePageGetTextZoomFactor +WKBundlePageGetTypeID +WKBundlePageGroupCopyIdentifier +WKBundlePageGroupGetTypeID +WKBundlePageHasComposition +WKBundlePageHasLocalDataForURL +WKBundlePageInsertNewlineInQuotedContent +WKBundlePageInstallPageOverlay +WKBundlePageInstallPageOverlayWithAnimation +WKBundlePageIsControlledByAutomation +WKBundlePageIsEditingCommandEnabled +WKBundlePageIsSuspended +WKBundlePageIsTrackingRepaints +WKBundlePageIsUsingDarkAppearance +WKBundlePageIsUsingEphemeralSession +WKBundlePageListenForLayoutMilestones +WKBundlePageNumberForElementById +WKBundlePageOverlayClear +WKBundlePageOverlayCreate +WKBundlePageOverlayFractionFadedIn +WKBundlePageOverlayGetTypeID +WKBundlePageOverlaySetAccessibilityClient +WKBundlePageOverlaySetNeedsDisplay +WKBundlePagePostMessage +WKBundlePagePostMessageIgnoringFullySynchronousMode +WKBundlePagePostSynchronousMessage +WKBundlePagePostSynchronousMessageForTesting +WKBundlePageRegisterScrollOperationCompletionCallback +WKBundlePageRemoveAllUserContent +WKBundlePageReplaceStringMatches +WKBundlePageResetApplicationCacheOriginQuota +WKBundlePageResetTrackedRepaints +WKBundlePageSetAppCacheMaximumSize +WKBundlePageSetApplicationCacheOriginQuota +WKBundlePageSetBottomOverhangImage +WKBundlePageSetCompositingPolicyOverride +WKBundlePageSetComposition +WKBundlePageSetContextMenuClient +WKBundlePageSetDefersLoading +WKBundlePageSetDiagnosticLoggingClient +WKBundlePageSetEditorClient +WKBundlePageSetEventThrottlingBehaviorOverride +WKBundlePageSetFooterBanner +WKBundlePageSetFormClient +WKBundlePageSetFullScreenClient +WKBundlePageSetHeaderBanner +WKBundlePageSetPageLoaderClient +WKBundlePageSetPageZoomFactor +WKBundlePageSetPaintedObjectsCounterThreshold +WKBundlePageSetPolicyClient +WKBundlePageSetResourceLoadClient +WKBundlePageSetScaleAtOrigin +WKBundlePageSetTextZoomFactor +WKBundlePageSetTopOverhangImage +WKBundlePageSetTracksRepaints +WKBundlePageSetUIClient +WKBundlePageSetUnderlayPage +WKBundlePageSetUseDarkAppearance +WKBundlePageSimulateMouseDown +WKBundlePageSimulateMouseMotion +WKBundlePageSimulateMouseUp +WKBundlePageSizeAndMarginsInPixels +WKBundlePageStartMonitoringScrollOperations +WKBundlePageStopExtendingIncrementalRenderingSuppression +WKBundlePageStopLoading +WKBundlePageUninstallPageOverlay +WKBundlePageUninstallPageOverlayWithAnimation +WKBundlePageViewportConfigurationAsText +WKBundlePageWillEnterFullScreen +WKBundlePageWillExitFullScreen +WKBundlePostMessage +WKBundlePostSynchronousMessage +WKBundleRangeHandleCopySnapshotWithOptions +WKBundleRangeHandleCreate +WKBundleRangeHandleGetBoundingRectInWindowCoordinates +WKBundleRangeHandleGetTypeID +WKBundleReleaseMemory +WKBundleRemoveAllUserContent +WKBundleRemoveAllVisitedLinks +WKBundleRemoveAllWebNotificationPermissions +WKBundleRemoveOriginAccessAllowListEntry +WKBundleRemoveOriginAccessWhitelistEntry +WKBundleRemoveUserScript +WKBundleRemoveUserScripts +WKBundleRemoveUserStyleSheet +WKBundleRemoveUserStyleSheets +WKBundleReportException +WKBundleResetApplicationCacheOriginQuota +WKBundleResetOriginAccessAllowLists +WKBundleResetOriginAccessWhitelists +WKBundleResourceLoadStatisticsNotifyObserver +WKBundleScriptWorldClearWrappers +WKBundleScriptWorldCopyName +WKBundleScriptWorldCreateWorld +WKBundleScriptWorldDisableOverrideBuiltinsBehavior +WKBundleScriptWorldGetTypeID +WKBundleScriptWorldMakeAllShadowRootsOpen +WKBundleScriptWorldNormalWorld +WKBundleSetAllowFileAccessFromFileURLs +WKBundleSetAllowStorageAccessFromFileURLS +WKBundleSetAllowUniversalAccessFromFileURLs +WKBundleSetAppCacheMaximumSize +WKBundleSetApplicationCacheOriginQuota +WKBundleSetAsyncFrameScrollingEnabled +WKBundleSetAsynchronousSpellCheckingEnabled +WKBundleSetAuthorAndUserStylesEnabled +WKBundleSetClient +WKBundleSetDatabaseQuota +WKBundleSetFrameFlatteningEnabled +WKBundleSetGarbageCollectClient +WKBundleSetGeolocationPermission +WKBundleSetJavaScriptCanAccessClipboard +WKBundleSetMinimumLogicalFontSize +WKBundleSetPageVisibilityState +WKBundleSetPluginsEnabled +WKBundleSetPopupBlockingEnabled +WKBundleSetPrivateBrowsingEnabled +WKBundleSetServiceWorkerProxyCreationCallback +WKBundleSetShouldTrackVisitedLinks +WKBundleSetSpatialNavigationEnabled +WKBundleSetTabKeyCyclesThroughElements +WKBundleSetUseDashboardCompatibilityMode +WKBundleSetUserStyleSheetLocation +WKBundleSetWebNotificationPermission +WKBundleShutdownProcess +WKBundleSwitchNetworkLoaderToNewTestingSession +WKCertificateInfoCopyCertificateAtIndex +WKCertificateInfoCopyPrivateKey +WKCertificateInfoCopyPrivateKeyPassword +WKCertificateInfoCopyVerificationErrorDescription +WKCertificateInfoCreateWithCertficateChain +WKCertificateInfoCreateWithClientCertificate +WKCertificateInfoGetCertificateChain +WKCertificateInfoGetCertificateChainSize +WKCertificateInfoGetTypeID +WKCertificateInfoGetVerificationError +WKClearMockMediaDevices +WKConnectionGetTypeID +WKConnectionPostMessage +WKConnectionSetConnectionClient +WKContextAccessibilityEnabled +WKContextAddSupportedPlugin +WKContextAddVisitedLink +WKContextAllowSpecificHTTPSCertificateForHost +WKContextClearCachedCredentials +WKContextClearCurrentModifierStateForTesting +WKContextClearLegacyPrivateBrowsingLocalStorage +WKContextClearSupportedPlugins +WKContextClearVisitedLinks +WKContextConfigurationAlwaysKeepAndReuseSwappedProcesses +WKContextConfigurationCopyApplicationCacheDirectory +WKContextConfigurationCopyCookieStoragePath +WKContextConfigurationCopyCustomClassesForParameterCoder +WKContextConfigurationCopyDiskCacheDirectory +WKContextConfigurationCopyIndexedDBDatabaseDirectory +WKContextConfigurationCopyInjectedBundlePath +WKContextConfigurationCopyLocalStorageDirectory +WKContextConfigurationCopyMediaKeysStorageDirectory +WKContextConfigurationCopyNetworkProcessPath +WKContextConfigurationCopyOverrideLanguages +WKContextConfigurationCopyResourceLoadStatisticsDirectory +WKContextConfigurationCopyStorageProcessPath +WKContextConfigurationCopyWebProcessPath +WKContextConfigurationCopyWebSQLDatabaseDirectory +WKContextConfigurationCreate +WKContextConfigurationCreateWithLegacyOptions +WKContextConfigurationDiskCacheSizeOverride +WKContextConfigurationFullySynchronousModeIsAllowedForTesting +WKContextConfigurationGetUserId +WKContextConfigurationIgnoreSynchronousMessagingTimeoutsForTesting +WKContextConfigurationPrewarmsProcessesAutomatically +WKContextConfigurationProcessSwapsOnNavigation +WKContextConfigurationProcessSwapsOnWindowOpenWithOpener +WKContextConfigurationSetAlwaysKeepAndReuseSwappedProcesses +WKContextConfigurationSetApplicationCacheDirectory +WKContextConfigurationSetCookieStoragePath +WKContextConfigurationSetCustomClassesForParameterCoder +WKContextConfigurationSetDiskCacheDirectory +WKContextConfigurationSetDiskCacheSizeOverride +WKContextConfigurationSetFullySynchronousModeIsAllowedForTesting +WKContextConfigurationSetIgnoreSynchronousMessagingTimeoutsForTesting +WKContextConfigurationSetIndexedDBDatabaseDirectory +WKContextConfigurationSetInjectedBundlePath +WKContextConfigurationSetLocalStorageDirectory +WKContextConfigurationSetMediaKeysStorageDirectory +WKContextConfigurationSetNetworkProcessPath +WKContextConfigurationSetOverrideLanguages +WKContextConfigurationSetPrewarmsProcessesAutomatically +WKContextConfigurationSetProcessSwapsOnNavigation +WKContextConfigurationSetProcessSwapsOnWindowOpenWithOpener +WKContextConfigurationSetResourceLoadStatisticsDirectory +WKContextConfigurationSetShouldCaptureAudioInUIProcess +WKContextConfigurationSetShouldConfigureJSCForTesting +WKContextConfigurationSetStorageProcessPath +WKContextConfigurationSetUserId +WKContextConfigurationSetUsesWebProcessCache +WKContextConfigurationSetWebProcessPath +WKContextConfigurationSetWebSQLDatabaseDirectory +WKContextConfigurationShouldCaptureAudioInUIProcess +WKContextConfigurationUsesWebProcessCache +WKContextCopyPlugInAutoStartOriginHashes +WKContextCreate +WKContextCreateWithConfiguration +WKContextCreateWithInjectedBundlePath +WKContextDisableProcessTermination +WKContextDownloadURLRequest +WKContextEnableAccessibility +WKContextEnableProcessTermination +WKContextGarbageCollectJavaScriptObjects +WKContextGetAccessibilityEnabled +WKContextGetApplicationCacheManager +WKContextGetBatteryManager +WKContextGetCacheModel +WKContextGetCookieManager +WKContextGetDatabaseManager +WKContextGetDatabaseProcessIdentifier +WKContextGetGeolocationManager +WKContextGetGlobalStatistics +WKContextGetIconDatabase +WKContextGetKeyValueStorageManager +WKContextGetMaximumNumberOfProcesses +WKContextGetMediaCacheManager +WKContextGetMediaSessionFocusManager +WKContextGetMemoryCacheDisabled +WKContextGetNetworkProcessIdentifier +WKContextGetNotificationManager +WKContextGetOriginDataManager +WKContextGetPluginSiteDataManager +WKContextGetProcessModel +WKContextGetResourceCacheManager +WKContextGetSharedProcessContext +WKContextGetSharedThreadContext +WKContextGetStatistics +WKContextGetStatisticsWithOptions +WKContextGetTypeID +WKContextGetUsesSingleWebProcess +WKContextGetWebSecurityFilter +WKContextGetWebsiteDataStore +WKContextJavaScriptConfigurationFileEnabled +WKContextMenuCopySubmenuItems +WKContextMenuItemCopyTitle +WKContextMenuItemCreateAsAction +WKContextMenuItemCreateAsCheckableAction +WKContextMenuItemCreateAsSubmenu +WKContextMenuItemGetChecked +WKContextMenuItemGetEnabled +WKContextMenuItemGetTag +WKContextMenuItemGetType +WKContextMenuItemGetTypeID +WKContextMenuItemGetUserData +WKContextMenuItemSeparatorItem +WKContextMenuItemSetUserData +WKContextPauseHTMLTiles +WKContextPostMessageToInjectedBundle +WKContextPreconnectToServer +WKContextRefreshPlugIns +WKContextRegisterURLSchemeAsBypassingContentSecurityPolicy +WKContextRegisterURLSchemeAsCachePartitioned +WKContextRegisterURLSchemeAsCanDisplayOnlyIfCanRequest +WKContextRegisterURLSchemeAsEmptyDocument +WKContextRegisterURLSchemeAsSecure +WKContextResetServiceWorkerFetchTimeoutForTesting +WKContextResumeDownload +WKContextResumeHTMLTiles +WKContextSetAccessibilityEnabled +WKContextSetAdditionalPluginsDirectory +WKContextSetAllowsAnySSLCertificateForServiceWorkerTesting +WKContextSetAllowsAnySSLCertificateForWebSocketTesting +WKContextSetAlwaysUsesComplexTextCodePath +WKContextSetCacheModel +WKContextSetCanHandleHTTPSServerTrustEvaluation +WKContextSetClient +WKContextSetConnectionClient +WKContextSetCookieMode +WKContextSetCookieStorageDirectory +WKContextSetCustomWebContentServiceBundleIdentifier +WKContextSetDatabaseDirectory +WKContextSetDiskCacheSpeculativeValidationEnabled +WKContextSetDomainRelaxationForbiddenForURLScheme +WKContextSetDownloadClient +WKContextSetFilterHTTPProxy +WKContextSetFontAllowList +WKContextSetFontWhitelist +WKContextSetHTTPPipeliningEnabled +WKContextSetHTTPProxy +WKContextSetHistoryClient +WKContextSetIFilterHTTPProxy +WKContextSetIconDatabasePath +WKContextSetInitializationUserDataForInjectedBundle +WKContextSetInjectedBundleClient +WKContextSetInvalidMessageFunction +WKContextSetJavaScriptConfigurationFileEnabled +WKContextSetJavaScriptGarbageCollectorTimerEnabled +WKContextSetLocalStorageDirectory +WKContextSetMaximumNumberOfProcesses +WKContextSetMemoryCacheDisabled +WKContextSetNetworkProxySettings +WKContextSetPlugInAutoStartOriginHashes +WKContextSetPlugInAutoStartOrigins +WKContextSetPlugInAutoStartOriginsFilteringOutEntriesAddedAfterTime +WKContextSetPrewarmsProcessesAutomatically +WKContextSetPrimaryWebsiteDataStore +WKContextSetPrivilegedNetworkBandwidth +WKContextSetProcessModel +WKContextSetServiceWorkerFetchTimeoutForTesting +WKContextSetShouldUseFontSmoothing +WKContextSetStorageAccessAPIEnabled +WKContextSetSystemStorageDirectory +WKContextSetUseSeparateServiceWorkerProcess +WKContextSetUserID +WKContextSetUserStorageDirectory +WKContextSetUsesNetworkProcess +WKContextSetUsesSingleWebProcess +WKContextSetWebProcessPath +WKContextSetWebSecurityFilter +WKContextStartMemorySampler +WKContextStopMemorySampler +WKContextSyncLocalStorage +WKContextTerminateNetworkProcess +WKContextTerminateServiceWorkerProcess +WKContextTerminateServiceWorkers +WKContextTerminateStorageProcess +WKContextUseTestingNetworkSession +WKContextWarmInitialProcess +WKCookieManagerDeleteAllCookies +WKCookieManagerDeleteAllCookiesModifiedAfterDate +WKCookieManagerDeleteCookiesForHostname +WKCookieManagerGetHTTPCookieAcceptPolicy +WKCookieManagerGetHostnamesWithCookies +WKCookieManagerGetTypeID +WKCookieManagerSetClient +WKCookieManagerSetCookieForHostname +WKCookieManagerSetCookieStoragePartitioningEnabled +WKCookieManagerSetHTTPCookieAcceptPolicy +WKCookieManagerSetStorageAccessAPIEnabled +WKCookieManagerStartObservingCookieChanges +WKCookieManagerStopObservingCookieChanges +WKCredentialCopyUser +WKCredentialCreate +WKCredentialCreateWithCertificateInfo +WKCredentialGetTypeID +WKDataCreate +WKDataGetBytes +WKDataGetSize +WKDataGetTypeID +WKDatabaseManagerDeleteAllDatabases +WKDatabaseManagerDeleteDatabasesForOrigin +WKDatabaseManagerDeleteDatabasesWithNameForOrigin +WKDatabaseManagerGetDatabaseDetailsCreationTimeKey +WKDatabaseManagerGetDatabaseDetailsCurrentUsageKey +WKDatabaseManagerGetDatabaseDetailsDisplayNameKey +WKDatabaseManagerGetDatabaseDetailsExpectedUsageKey +WKDatabaseManagerGetDatabaseDetailsKey +WKDatabaseManagerGetDatabaseDetailsModificationTimeKey +WKDatabaseManagerGetDatabaseDetailsNameKey +WKDatabaseManagerGetDatabaseOrigins +WKDatabaseManagerGetDatabasesByOrigin +WKDatabaseManagerGetOriginKey +WKDatabaseManagerGetOriginQuotaKey +WKDatabaseManagerGetOriginUsageKey +WKDatabaseManagerGetTypeID +WKDatabaseManagerSetClient +WKDatabaseManagerSetQuotaForOrigin +WKDictionaryAddItem +WKDictionaryCopyKeys +WKDictionaryCreate +WKDictionaryGetItemForKey +WKDictionaryGetSize +WKDictionaryGetTypeID +WKDictionaryIsMutable +WKDictionaryRemoveItem +WKDictionarySetItem +WKDoubleCreate +WKDoubleGetTypeID +WKDoubleGetValue +WKDownloadCancel +WKDownloadCopyRedirectChain +WKDownloadCopyRequest +WKDownloadGetID +WKDownloadGetOriginatingPage +WKDownloadGetResumeData +WKDownloadGetTypeID +WKDownloadGetWasUserInitiated +WKErrorCopyDomain +WKErrorCopyFailingURL +WKErrorCopyLocalizedDescription +WKErrorCopySslVerificationResultString +WKErrorCopyWKErrorDomain +WKErrorGetErrorCode +WKErrorGetSslVerificationResult +WKErrorGetTypeID +WKFormSubmissionListenerContinue +WKFormSubmissionListenerGetTypeID +WKFrameCanProvideSource +WKFrameCanShowMIMEType +WKFrameCopyChildFrames +WKFrameCopyMIMEType +WKFrameCopyProvisionalURL +WKFrameCopyTitle +WKFrameCopyURL +WKFrameCopyUnreachableURL +WKFrameCreateFrameHandle +WKFrameCreateFrameInfo +WKFrameGetCertificateInfo +WKFrameGetFrameLoadState +WKFrameGetMainResourceData +WKFrameGetPage +WKFrameGetParentFrame +WKFrameGetResourceData +WKFrameGetTypeID +WKFrameGetWebArchive +WKFrameHandleGetFrameID +WKFrameHandleGetTypeID +WKFrameInfoCreateFrameHandleRef +WKFrameInfoGetTypeID +WKFrameIsDisplayingMarkupDocument +WKFrameIsDisplayingStandaloneImageDocument +WKFrameIsFrameSet +WKFrameIsMainFrame +WKFramePolicyListenerDownload +WKFramePolicyListenerGetTypeID +WKFramePolicyListenerIgnore +WKFramePolicyListenerUse +WKFramePolicyListenerUseInNewProcess +WKFramePolicyListenerUseInNewProcessWithPolicies +WKFramePolicyListenerUseWithPolicies +WKFrameStopLoading +WKGeolocationManagerGetTypeID +WKGeolocationManagerProviderDidChangePosition +WKGeolocationManagerProviderDidFailToDeterminePosition +WKGeolocationManagerProviderDidFailToDeterminePositionWithErrorMessage +WKGeolocationManagerSetProvider +WKGeolocationPermissionRequestAllow +WKGeolocationPermissionRequestDeny +WKGeolocationPermissionRequestGetTypeID +WKGeolocationPositionCreate +WKGeolocationPositionCreate_b +WKGeolocationPositionCreate_c +WKGeolocationPositionGetTypeID +WKGetTypeID +WKGrammarDetailCopyGuesses +WKGrammarDetailCopyUserDescription +WKGrammarDetailCreate +WKGrammarDetailGetLength +WKGrammarDetailGetLocation +WKGrammarDetailGetTypeID +WKGraphicsContextGetTypeID +WKHTTPCookieStoreDeleteAllCookies +WKHTTPCookieStoreGetTypeID +WKHTTPCookieStoreSetCookieForHostname +WKHTTPCookieStoreSetHTTPCookieAcceptPolicy +WKHitTestResultCopyAbsoluteImageURL +WKHitTestResultCopyAbsoluteLinkURL +WKHitTestResultCopyAbsoluteMediaURL +WKHitTestResultCopyAbsolutePDFURL +WKHitTestResultCopyLinkLabel +WKHitTestResultCopyLinkTitle +WKHitTestResultCopyLookupText +WKHitTestResultGetElementBoundingBox +WKHitTestResultGetTypeID +WKHitTestResultIsContentEditable +WKIconDatabaseCheckIntegrityBeforeOpening +WKIconDatabaseClose +WKIconDatabaseCopyIconDataForPageURL +WKIconDatabaseCopyIconURLForPageURL +WKIconDatabaseEnableDatabaseCleanup +WKIconDatabaseGetTypeID +WKIconDatabaseReleaseIconForURL +WKIconDatabaseRemoveAllIcons +WKIconDatabaseRetainIconForURL +WKIconDatabaseSetIconDataForIconURL +WKIconDatabaseSetIconDatabaseClient +WKIconDatabaseSetIconURLForPageURL +WKImageCreate +WKImageCreateCairoSurface +WKImageCreateFromCairoSurface +WKImageGetSize +WKImageGetTypeID +WKImeEventGetInputLanguage +WKImeEventMake +WKImeEventRelease +WKInspectorAttach +WKInspectorClose +WKInspectorConnect +WKInspectorDetach +WKInspectorGetPage +WKInspectorGetTypeID +WKInspectorHide +WKInspectorIsAttached +WKInspectorIsConnected +WKInspectorIsDebuggingJavaScript +WKInspectorIsElementSelectionActive +WKInspectorIsFront +WKInspectorIsProfilingJavaScript +WKInspectorIsProfilingPage +WKInspectorIsVisible +WKInspectorShow +WKInspectorShowConsole +WKInspectorShowMainResourceForFrame +WKInspectorShowResources +WKInspectorToggleElementSelection +WKInspectorToggleJavaScriptDebugging +WKInspectorToggleJavaScriptProfiling +WKInspectorTogglePageProfiling +WKKeyValueStorageManagerDeleteAllEntries +WKKeyValueStorageManagerDeleteEntriesForOrigin +WKKeyValueStorageManagerGetCreationTimeKey +WKKeyValueStorageManagerGetKeyValueStorageOrigins +WKKeyValueStorageManagerGetModificationTimeKey +WKKeyValueStorageManagerGetOriginKey +WKKeyValueStorageManagerGetStorageDetailsByOrigin +WKKeyValueStorageManagerGetTypeID +WKKeyboardEventMake +WKMediaCacheManagerClearCacheForAllHostnames +WKMediaCacheManagerClearCacheForHostname +WKMediaCacheManagerGetHostnamesWithMediaCache +WKMediaCacheManagerGetTypeID +WKMediaSessionMetadataCopyAlbum +WKMediaSessionMetadataCopyArtist +WKMediaSessionMetadataCopyArtworkURL +WKMediaSessionMetadataCopyTitle +WKMediaSessionMetadataGetTypeID +WKMessageListenerGetTypeID +WKMessageListenerSendReply +WKMouseEventMake +WKMutableArrayCreate +WKMutableDictionaryCreate +WKNavigationActionGetTypeID +WKNavigationActionShouldPerformDownload +WKNavigationDataCopyNavigationDestinationURL +WKNavigationDataCopyOriginalRequest +WKNavigationDataCopyTitle +WKNavigationDataCopyURL +WKNavigationDataGetTypeID +WKNavigationGetTypeID +WKNavigationResponseCanShowMIMEType +WKNavigationResponseGetTypeID +WKNotificationCopyBody +WKNotificationCopyDir +WKNotificationCopyIconURL +WKNotificationCopyLang +WKNotificationCopyTag +WKNotificationCopyTitle +WKNotificationGetID +WKNotificationGetSecurityOrigin +WKNotificationGetTypeID +WKNotificationManagerGetLocalIDForTesting +WKNotificationManagerGetTypeID +WKNotificationManagerProviderDidClickNotification +WKNotificationManagerProviderDidCloseNotifications +WKNotificationManagerProviderDidRemoveNotificationPolicies +WKNotificationManagerProviderDidShowNotification +WKNotificationManagerProviderDidUpdateNotificationPolicy +WKNotificationManagerSetProvider +WKNotificationPermissionRequestAllow +WKNotificationPermissionRequestDeny +WKNotificationPermissionRequestGetTypeID +WKOpenPanelParametersCopyAcceptedFileExtensions +WKOpenPanelParametersCopyAcceptedMIMETypes +WKOpenPanelParametersCopyAllowedMIMETypes +WKOpenPanelParametersCopyCapture +WKOpenPanelParametersCopySelectedFileNames +WKOpenPanelParametersGetAllowsDirectories +WKOpenPanelParametersGetAllowsMultipleFiles +WKOpenPanelParametersGetCaptureEnabled +WKOpenPanelParametersGetMediaCaptureType +WKOpenPanelParametersGetTypeID +WKOpenPanelResultListenerCancel +WKOpenPanelResultListenerChooseFiles +WKOpenPanelResultListenerGetTypeID +WKOriginDataManagerDeleteAllEntries +WKOriginDataManagerDeleteEntriesForOrigin +WKOriginDataManagerDeleteEntriesModifiedBetweenDates +WKOriginDataManagerGetOrigins +WKOriginDataManagerGetTypeID +WKPageAreScrollbarAnimationsSuppressed +WKPageBackgroundExtendsBeyondPage +WKPageBeginPrinting +WKPageBlurFocusedNode +WKPageCallAfterNextPresentationUpdate +WKPageCanDelete +WKPageCanGoBack +WKPageCanGoForward +WKPageCenterSelectionInVisibleArea +WKPageClearAdClickAttribution +WKPageClearLoadedSubresourceDomains +WKPageClearSelection +WKPageClearUserMediaState +WKPageClearWheelEventTestMonitor +WKPageClearWheelEventTestTrigger +WKPageClose +WKPageComputePagesForPrinting +WKPageConfigurationCreate +WKPageConfigurationGetContext +WKPageConfigurationGetPageGroup +WKPageConfigurationGetPreferences +WKPageConfigurationGetRelatedPage +WKPageConfigurationGetTypeID +WKPageConfigurationGetUserContentController +WKPageConfigurationGetWebsiteDataStore +WKPageConfigurationSetBackgroundCPULimit +WKPageConfigurationSetContext +WKPageConfigurationSetInitialCapitalizationEnabled +WKPageConfigurationSetPageGroup +WKPageConfigurationSetPreferences +WKPageConfigurationSetRelatedPage +WKPageConfigurationSetUserContentController +WKPageConfigurationSetWebsiteDataStore +WKPageCopyActiveURL +WKPageCopyApplicationNameForUserAgent +WKPageCopyCommittedURL +WKPageCopyCustomTextEncodingName +WKPageCopyCustomUserAgent +WKPageCopyPageConfiguration +WKPageCopyPendingAPIRequestURL +WKPageCopyProvisionalURL +WKPageCopyRelatedPages +WKPageCopySessionState +WKPageCopyStandardUserAgentWithApplicationName +WKPageCopyTitle +WKPageCopyUserAgent +WKPageCountStringMatches +WKPageCreateSnapshotOfVisibleContent +WKPageDidAllowPointerLock +WKPageDidDenyPointerLock +WKPageDumpAdClickAttribution +WKPageEndPrinting +WKPageExecuteCommand +WKPageFindString +WKPageFindStringMatches +WKPageFixedLayoutSize +WKPageForceRepaint +WKPageGetAcceleratedCompositingBackgroundColor +WKPageGetAddsVisitedLinks +WKPageGetAllowsRemoteInspection +WKPageGetBackForwardList +WKPageGetBackingScaleFactor +WKPageGetBytecodeProfile +WKPageGetContentsAsMHTMLData +WKPageGetContentsAsString +WKPageGetContext +WKPageGetDebugPaintFlags +WKPageGetEstimatedProgress +WKPageGetFocusedFrame +WKPageGetFrameSetLargestFrame +WKPageGetGapBetweenPages +WKPageGetImageForFindMatch +WKPageGetInspector +WKPageGetIsControlledByAutomation +WKPageGetMainFrame +WKPageGetMediaCaptureEnabled +WKPageGetMediaState +WKPageGetPageCount +WKPageGetPageGroup +WKPageGetPageLength +WKPageGetPageZoomFactor +WKPageGetPaginationBehavesLikeColumns +WKPageGetPaginationLineGridEnabled +WKPageGetPaginationMode +WKPageGetProcessIdentifier +WKPageGetRenderTreeSize +WKPageGetResourceCachingDisabled +WKPageGetSamplingProfilerOutput +WKPageGetScaleFactor +WKPageGetScrollPinningBehavior +WKPageGetSelectionAsWebArchiveData +WKPageGetSessionBackForwardListItemValueType +WKPageGetSessionHistoryURLValueType +WKPageGetSourceForFrame +WKPageGetTextZoomFactor +WKPageGetTypeID +WKPageGetVibration +WKPageGoBack +WKPageGoForward +WKPageGoToBackForwardListItem +WKPageGroupAddUserContentFilter +WKPageGroupAddUserScript +WKPageGroupAddUserStyleSheet +WKPageGroupCopyIdentifier +WKPageGroupCreateWithIdentifier +WKPageGroupGetPreferences +WKPageGroupGetTypeID +WKPageGroupGetUserContentController +WKPageGroupRemoveAllUserContentFilters +WKPageGroupRemoveAllUserScripts +WKPageGroupRemoveAllUserStyleSheets +WKPageGroupRemoveUserContentFilter +WKPageGroupSetPreferences +WKPageHandleImeEvent +WKPageHandleKeyboardEvent +WKPageHandleMediaEvent +WKPageHandleMouseEvent +WKPageHandleWheelEvent +WKPageHasHorizontalScrollbar +WKPageHasMediaSessionWithActiveMediaElements +WKPageHasSelectedRange +WKPageHasVerticalScrollbar +WKPageHideFindUI +WKPageHorizontalRubberBandingIsEnabled +WKPageIsClosed +WKPageIsContentEditable +WKPageIsMockRealtimeMediaSourceCenterEnabled +WKPageIsPinnedToBottomSide +WKPageIsPinnedToLeftSide +WKPageIsPinnedToRightSide +WKPageIsPinnedToTopSide +WKPageIsPlayingAudio +WKPageIsWebProcessResponsive +WKPageListenForLayoutMilestones +WKPageLoadAlternateHTMLString +WKPageLoadAlternateHTMLStringWithUserData +WKPageLoadData +WKPageLoadDataWithUserData +WKPageLoadFile +WKPageLoadFileWithUserData +WKPageLoadHTMLString +WKPageLoadHTMLStringWithUserData +WKPageLoadPlainTextString +WKPageLoadPlainTextStringWithUserData +WKPageLoadURL +WKPageLoadURLRequest +WKPageLoadURLRequestWithUserData +WKPageLoadURLWithShouldOpenExternalURLsPolicy +WKPageLoadURLWithUserData +WKPageLoadWebArchiveData +WKPageLoadWebArchiveDataWithUserData +WKPageLoadedSubresourceDomains +WKPageLookUpFrameFromHandle +WKPageMarkAdClickAttributionsAsExpiredForTesting +WKPageMoveFocusInTabOrder +WKPagePostMessageToInjectedBundle +WKPageReload +WKPageReloadExpiredOnly +WKPageReloadFromOrigin +WKPageReloadWithoutContentBlockers +WKPageRenderTreeExternalRepresentation +WKPageRequestStorageAccessConfirmResultListenerCall +WKPageRequestStorageAccessConfirmResultListenerGetTypeID +WKPageRestoreFromSessionState +WKPageRestoreFromSessionStateWithoutNavigation +WKPageResumeActiveDOMObjectsAndAnimations +WKPageRubberBandsAtBottom +WKPageRubberBandsAtLeft +WKPageRubberBandsAtRight +WKPageRubberBandsAtTop +WKPageRunBeforeUnloadConfirmPanelResultListenerCall +WKPageRunBeforeUnloadConfirmPanelResultListenerGetTypeID +WKPageRunJavaScriptAlertResultListenerCall +WKPageRunJavaScriptAlertResultListenerGetTypeID +WKPageRunJavaScriptConfirmResultListenerCall +WKPageRunJavaScriptConfirmResultListenerGetTypeID +WKPageRunJavaScriptInMainFrame +WKPageRunJavaScriptInMainFrameAndReturnString +WKPageRunJavaScriptPromptResultListenerCall +WKPageRunJavaScriptPromptResultListenerGetTypeID +WKPageSelectContextMenuItem +WKPageSelectFindMatch +WKPageSetAdClickAttributionConversionURLForTesting +WKPageSetAdClickAttributionOverrideTimerForTesting +WKPageSetAddsVisitedLinks +WKPageSetAllowsRemoteInspection +WKPageSetApplicationNameForUserAgent +WKPageSetBackgroundExtendsBeyondPage +WKPageSetCaretVisible +WKPageSetControlledByAutomation +WKPageSetCustomBackingScaleFactor +WKPageSetCustomTextEncodingName +WKPageSetCustomUserAgent +WKPageSetDebugPaintFlags +WKPageSetEnableHorizontalRubberBanding +WKPageSetEnableVerticalRubberBanding +WKPageSetFixedLayoutSize +WKPageSetGapBetweenPages +WKPageSetIgnoresViewportScaleLimits +WKPageSetMaintainsInactiveSelection +WKPageSetMayStartMediaWhenInWindow +WKPageSetMediaCaptureEnabled +WKPageSetMediaVolume +WKPageSetMemoryCacheClientCallsEnabled +WKPageSetMockCameraOrientation +WKPageSetMuted +WKPageSetPageAndTextZoomFactors +WKPageSetPageContextMenuClient +WKPageSetPageDiagnosticLoggingClient +WKPageSetPageFindClient +WKPageSetPageFindMatchesClient +WKPageSetPageFormClient +WKPageSetPageInjectedBundleClient +WKPageSetPageLength +WKPageSetPageLoaderClient +WKPageSetPageNavigationClient +WKPageSetPagePolicyClient +WKPageSetPageResourceLoadClient +WKPageSetPageStateClient +WKPageSetPageUIClient +WKPageSetPageZoomFactor +WKPageSetPaginationBehavesLikeColumns +WKPageSetPaginationLineGridEnabled +WKPageSetPaginationMode +WKPageSetResourceCachingDisabled +WKPageSetRubberBandsAtBottom +WKPageSetRubberBandsAtLeft +WKPageSetRubberBandsAtRight +WKPageSetRubberBandsAtTop +WKPageSetScaleFactor +WKPageSetScaleFactorKeepingScrollOffset +WKPageSetScrollPinningBehavior +WKPageSetSession +WKPageSetShouldSendEventsSynchronously +WKPageSetSuppressScrollbarAnimations +WKPageSetTextZoomFactor +WKPageSetUseFixedLayout +WKPageSetUserContentExtensionsEnabled +WKPageSetVisibilityState +WKPageStopLoading +WKPageSupportsTextEncoding +WKPageSupportsTextZoom +WKPageSuspendActiveDOMObjectsAndAnimations +WKPageTerminate +WKPageTryClose +WKPageTryRestoreScrollPosition +WKPageUpdateWebsitePolicies +WKPageUseFixedLayout +WKPageValidateCommand +WKPageVerticalRubberBandingIsEnabled +WKPageWebProcessIsResponsive +WKPageWillHandleHorizontalScrollEvents +WKPlugInInformationReplacementObscuredKey +WKPluginInformationBundleIdentifierKey +WKPluginInformationBundleShortVersionKey +WKPluginInformationBundleVersionKey +WKPluginInformationDefaultLoadPolicyKey +WKPluginInformationDisplayNameKey +WKPluginInformationFrameURLKey +WKPluginInformationHasSandboxProfileKey +WKPluginInformationMIMETypeKey +WKPluginInformationPageURLKey +WKPluginInformationPathKey +WKPluginInformationPluginURLKey +WKPluginInformationPluginspageAttributeURLKey +WKPluginInformationUpdatePastLastBlockedVersionIsKnownAvailableKey +WKPluginSiteDataManagerClearAllSiteData +WKPluginSiteDataManagerClearSiteData +WKPluginSiteDataManagerGetSitesWithData +WKPluginSiteDataManagerGetTypeID +WKPointCreate +WKPointGetTypeID +WKPointGetValue +WKPopupMenuItemCopyText +WKPopupMenuItemGetTypeID +WKPopupMenuItemIsEnabled +WKPopupMenuItemIsItem +WKPopupMenuItemIsSeparator +WKPreferencesCopyCursiveFontFamily +WKPreferencesCopyDefaultTextEncodingName +WKPreferencesCopyFTPDirectoryTemplatePath +WKPreferencesCopyFantasyFontFamily +WKPreferencesCopyFixedFontFamily +WKPreferencesCopyMediaContentTypesRequiringHardwareSupport +WKPreferencesCopyPictographFontFamily +WKPreferencesCopySansSerifFontFamily +WKPreferencesCopySerifFontFamily +WKPreferencesCopyStandardFontFamily +WKPreferencesCreate +WKPreferencesCreateCopy +WKPreferencesCreateWithIdentifier +WKPreferencesEnableAllExperimentalFeatures +WKPreferencesGetAVFoundationEnabled +WKPreferencesGetAVFoundationNSURLSessionEnabled +WKPreferencesGetAccelerated2DCanvasEnabled +WKPreferencesGetAcceleratedCompositingEnabled +WKPreferencesGetAcceleratedCompositingForOverflowScrollEnabled +WKPreferencesGetAcceleratedDrawingEnabled +WKPreferencesGetAccessibilityObjectModelEnabled +WKPreferencesGetAggressiveTileRetentionEnabled +WKPreferencesGetAllowCrossOriginSubresourcesToAskForCredentials +WKPreferencesGetAllowMediaContentTypesRequiringHardwareSupportAsFallback +WKPreferencesGetAllowsAirPlayForMediaPlayback +WKPreferencesGetAllowsPictureInPictureMediaPlayback +WKPreferencesGetAnimatedImageAsyncDecodingEnabled +WKPreferencesGetAntialiasedFontDilationEnabled +WKPreferencesGetApplePayCapabilityDisclosureAllowed +WKPreferencesGetApplePayEnabled +WKPreferencesGetApplicationChromeModeEnabled +WKPreferencesGetAriaReflectionEnabled +WKPreferencesGetArtificialPluginInitializationDelayEnabled +WKPreferencesGetAsynchronousPluginInitializationEnabled +WKPreferencesGetAsynchronousPluginInitializationEnabledForAllPlugins +WKPreferencesGetAsynchronousSpellCheckingEnabled +WKPreferencesGetAttachmentElementEnabled +WKPreferencesGetAudioPlaybackRequiresUserGesture +WKPreferencesGetAuthorAndUserStylesEnabled +WKPreferencesGetAutostartOriginPlugInSnapshottingEnabled +WKPreferencesGetBackspaceKeyNavigationEnabled +WKPreferencesGetBeaconAPIEnabled +WKPreferencesGetCSSAnimationTriggersEnabled +WKPreferencesGetCSSCustomFilterEnabled +WKPreferencesGetCSSOMViewScrollingAPIEnabled +WKPreferencesGetCSSRegionsEnabled +WKPreferencesGetCanvasUsesAcceleratedDrawing +WKPreferencesGetCaptureAudioInGPUProcessEnabled +WKPreferencesGetCaptureAudioInUIProcessEnabled +WKPreferencesGetCaptureVideoInGPUProcessEnabled +WKPreferencesGetCaptureVideoInUIProcessEnabled +WKPreferencesGetCaretBrowsingEnabled +WKPreferencesGetColorFilterEnabled +WKPreferencesGetCompositingBordersVisible +WKPreferencesGetCompositingRepaintCountersVisible +WKPreferencesGetContentChangeObserverEnabled +WKPreferencesGetCookieEnabled +WKPreferencesGetCoverAreaMultiplier +WKPreferencesGetCrossOriginResourcePolicyEnabled +WKPreferencesGetCrossOriginWindowPolicyEnabled +WKPreferencesGetCustomPasteboardDataEnabled +WKPreferencesGetDNSPrefetchingEnabled +WKPreferencesGetDOMPasteAllowed +WKPreferencesGetDOMTimersThrottlingEnabled +WKPreferencesGetDataTransferItemsEnabled +WKPreferencesGetDatabasesEnabled +WKPreferencesGetDefaultFixedFontSize +WKPreferencesGetDefaultFontSize +WKPreferencesGetDeferredCSSParserEnabled +WKPreferencesGetDeveloperExtrasEnabled +WKPreferencesGetDiagnosticLoggingEnabled +WKPreferencesGetDialogElementEnabled +WKPreferencesGetDirectoryUploadEnabled +WKPreferencesGetDisplayContentsEnabled +WKPreferencesGetDoNotTrack +WKPreferencesGetDoNotTrackEnabled +WKPreferencesGetDownloadAttributeEnabled +WKPreferencesGetEditableLinkBehavior +WKPreferencesGetEnableInheritURIQueryComponent +WKPreferencesGetEncodingDetectorEnabled +WKPreferencesGetEncryptedMediaAPIEnabled +WKPreferencesGetEnumeratingAllNetworkInterfacesEnabled +WKPreferencesGetFetchAPIEnabled +WKPreferencesGetFetchAPIKeepAliveEnabled +WKPreferencesGetFileAccessFromFileURLsAllowed +WKPreferencesGetFontSmoothingLevel +WKPreferencesGetForceEnableVideo +WKPreferencesGetForceFTPDirectoryListings +WKPreferencesGetForceSoftwareWebGLRendering +WKPreferencesGetFrameFlatteningEnabled +WKPreferencesGetFullScreenEnabled +WKPreferencesGetGamepadsEnabled +WKPreferencesGetHTTPEquivEnabled +WKPreferencesGetHiddenPageCSSAnimationSuspensionEnabled +WKPreferencesGetHiddenPageDOMTimerThrottlingAutoIncreases +WKPreferencesGetHiddenPageDOMTimerThrottlingEnabled +WKPreferencesGetHighlightAPIEnabled +WKPreferencesGetHixie76WebSocketProtocolEnabled +WKPreferencesGetHyperlinkAuditingEnabled +WKPreferencesGetICECandidateFilteringEnabled +WKPreferencesGetIgnoreViewportScalingConstraints +WKPreferencesGetImageControlsEnabled +WKPreferencesGetInactiveMediaCaptureSteamRepromptIntervalInMinutes +WKPreferencesGetIncrementalRenderingSuppressionTimeout +WKPreferencesGetInlineMediaPlaybackRequiresPlaysInlineAttribute +WKPreferencesGetInspectorAdditionsEnabled +WKPreferencesGetInspectorUsesWebKitUserInterface +WKPreferencesGetInteractiveFormValidationEnabled +WKPreferencesGetIntersectionObserverEnabled +WKPreferencesGetInvisibleMediaAutoplayPermitted +WKPreferencesGetIsAccessibilityIsolatedTreeEnabled +WKPreferencesGetIsITPDatabaseEnabled +WKPreferencesGetIsNSURLSessionWebSocketEnabled +WKPreferencesGetIsSecureContextAttributeEnabled +WKPreferencesGetJavaEnabled +WKPreferencesGetJavaEnabledForLocalFiles +WKPreferencesGetJavaScriptCanAccessClipboard +WKPreferencesGetJavaScriptCanOpenWindowsAutomatically +WKPreferencesGetJavaScriptEnabled +WKPreferencesGetJavaScriptMarkupEnabled +WKPreferencesGetJavaScriptRuntimeFlags +WKPreferencesGetKeygenElementEnabled +WKPreferencesGetLargeImageAsyncDecodingEnabled +WKPreferencesGetLazyImageLoadingEnabled +WKPreferencesGetLegacyEncryptedMediaAPIEnabled +WKPreferencesGetLinkPreloadEnabled +WKPreferencesGetLoadsImagesAutomatically +WKPreferencesGetLoadsSiteIconsIgnoringImageLoadingPreference +WKPreferencesGetLocalFileContentSniffingEnabled +WKPreferencesGetLocalStorageEnabled +WKPreferencesGetLogsPageMessagesToSystemConsoleEnabled +WKPreferencesGetLongMousePressEnabled +WKPreferencesGetMainContentUserGestureOverrideEnabled +WKPreferencesGetMediaCapabilitiesEnabled +WKPreferencesGetMediaCaptureRequiresSecureConnection +WKPreferencesGetMediaControlsScaleWithPageZoom +WKPreferencesGetMediaDevicesEnabled +WKPreferencesGetMediaPlayable +WKPreferencesGetMediaPlaybackAllowsInline +WKPreferencesGetMediaPlaybackRequiresUserGesture +WKPreferencesGetMediaPreloadingEnabled +WKPreferencesGetMediaSourceEnabled +WKPreferencesGetMediaStreamEnabled +WKPreferencesGetMediaUserGestureInheritsFromDocument +WKPreferencesGetMenuItemElementEnabled +WKPreferencesGetMetaRefreshEnabled +WKPreferencesGetMinimumFontSize +WKPreferencesGetMinimumZoomFontSize +WKPreferencesGetMockCaptureDevicesEnabled +WKPreferencesGetMockScrollbarsEnabled +WKPreferencesGetModernMediaControlsEnabled +WKPreferencesGetMultithreadedWebGLEnabled +WKPreferencesGetNeedsSiteSpecificQuirks +WKPreferencesGetNeedsStorageAccessFromFileURLsQuirk +WKPreferencesGetNewBlockInsideInlineModelEnabled +WKPreferencesGetNotificationsEnabled +WKPreferencesGetOfflineWebApplicationCacheEnabled +WKPreferencesGetPDFPluginEnabled +WKPreferencesGetPageCacheEnabled +WKPreferencesGetPageCacheSupportsPlugins +WKPreferencesGetPageVisibilityBasedProcessSuppressionEnabled +WKPreferencesGetPaginateDuringLayoutEnabled +WKPreferencesGetPaintTimingEnabled +WKPreferencesGetPeerConnectionEnabled +WKPreferencesGetPlugInSnapshottingEnabled +WKPreferencesGetPluginSandboxProfilesEnabledForAllPlugins +WKPreferencesGetPluginsEnabled +WKPreferencesGetPrimaryPlugInSnapshotDetectionEnabled +WKPreferencesGetPrivateBrowsingEnabled +WKPreferencesGetProcessSwapOnNavigationEnabled +WKPreferencesGetPunchOutWhiteBackgroundsInDarkMode +WKPreferencesGetQTKitEnabled +WKPreferencesGetReferrerPolicyAttributeEnabled +WKPreferencesGetRegionBasedColumnsEnabled +WKPreferencesGetRemotePlaybackEnabled +WKPreferencesGetRequestAnimationFrameEnabled +WKPreferencesGetResourceTimingEnabled +WKPreferencesGetResourceUsageOverlayVisible +WKPreferencesGetRestrictedHTTPResponseAccess +WKPreferencesGetScreenFontSubstitutionEnabled +WKPreferencesGetScrollingPerformanceLoggingEnabled +WKPreferencesGetSelectTrailingWhitespaceEnabled +WKPreferencesGetSelectionPaintingWithoutSelectionGapsEnabled +WKPreferencesGetServerTimingEnabled +WKPreferencesGetServiceControlsEnabled +WKPreferencesGetShouldAllowUserInstalledFonts +WKPreferencesGetShouldConvertPositionStyleOnCopy +WKPreferencesGetShouldDisplayCaptions +WKPreferencesGetShouldDisplaySubtitles +WKPreferencesGetShouldDisplayTextDescriptions +WKPreferencesGetShouldPrintBackgrounds +WKPreferencesGetShouldRespectImageOrientation +WKPreferencesGetShouldSuppressKeyboardInputDuringProvisionalNavigation +WKPreferencesGetShouldUseServiceWorkerShortTimeout +WKPreferencesGetShowsToolTipOverTruncatedText +WKPreferencesGetShowsURLsInToolTipsEnabled +WKPreferencesGetSimpleLineLayoutDebugBordersEnabled +WKPreferencesGetSimpleLineLayoutEnabled +WKPreferencesGetSmartInsertDeleteEnabled +WKPreferencesGetSnapshotAllPlugIns +WKPreferencesGetSourceBufferChangeTypeEnabled +WKPreferencesGetSpatialNavigationEnabled +WKPreferencesGetStorageAccessAPIEnabled +WKPreferencesGetStorageAccessPromptsEnabled +WKPreferencesGetStorageBlockingPolicy +WKPreferencesGetSubpixelAntialiasedLayerTextEnabled +WKPreferencesGetSubpixelCSSOMElementMetricsEnabled +WKPreferencesGetSuppressesIncrementalRendering +WKPreferencesGetSyntheticEditingCommandsEnabled +WKPreferencesGetTabToLinksEnabled +WKPreferencesGetTabsToLinks +WKPreferencesGetTelephoneNumberParsingEnabled +WKPreferencesGetTextAreasAreResizable +WKPreferencesGetTextAutosizingEnabled +WKPreferencesGetTextAutosizingUsesIdempotentMode +WKPreferencesGetThreadedScrollingEnabled +WKPreferencesGetTiledScrollingIndicatorVisible +WKPreferencesGetTopNavigationToDataURLsAllowed +WKPreferencesGetTypeID +WKPreferencesGetUniversalAccessFromFileURLsAllowed +WKPreferencesGetUseGiantTiles +WKPreferencesGetUserInterfaceDirectionPolicy +WKPreferencesGetUserTimingEnabled +WKPreferencesGetVideoPlaybackRequiresUserGesture +WKPreferencesGetViewGestureDebuggingEnabled +WKPreferencesGetVisibleDebugOverlayRegions +WKPreferencesGetWebAnimationsCSSIntegrationEnabled +WKPreferencesGetWebAnimationsEnabled +WKPreferencesGetWebArchiveDebugModeEnabled +WKPreferencesGetWebAudioEnabled +WKPreferencesGetWebAuthenticationEnabled +WKPreferencesGetWebAuthenticationLocalAuthenticatorEnabled +WKPreferencesGetWebGLEnabled +WKPreferencesGetWebRTCLegacyAPIEnabled +WKPreferencesGetWebRTCMDNSICECandidatesEnabled +WKPreferencesGetWebSQLDisabled +WKPreferencesGetWebSecurityEnabled +WKPreferencesGetWebShareEnabled +WKPreferencesGetXSSAuditorEnabled +WKPreferencesResetAllInternalDebugFeatures +WKPreferencesResetTestRunnerOverrides +WKPreferencesSetAVFoundationEnabled +WKPreferencesSetAVFoundationNSURLSessionEnabled +WKPreferencesSetAccelerated2DCanvasEnabled +WKPreferencesSetAcceleratedCompositingEnabled +WKPreferencesSetAcceleratedCompositingForOverflowScrollEnabled +WKPreferencesSetAcceleratedDrawingEnabled +WKPreferencesSetAccessibilityObjectModelEnabled +WKPreferencesSetAggressiveTileRetentionEnabled +WKPreferencesSetAllowCrossOriginSubresourcesToAskForCredentials +WKPreferencesSetAllowMediaContentTypesRequiringHardwareSupportAsFallback +WKPreferencesSetAllowsAirPlayForMediaPlayback +WKPreferencesSetAllowsPictureInPictureMediaPlayback +WKPreferencesSetAnimatedImageAsyncDecodingEnabled +WKPreferencesSetAntialiasedFontDilationEnabled +WKPreferencesSetApplePayCapabilityDisclosureAllowed +WKPreferencesSetApplePayEnabled +WKPreferencesSetApplicationChromeModeEnabled +WKPreferencesSetAriaReflectionEnabled +WKPreferencesSetArtificialPluginInitializationDelayEnabled +WKPreferencesSetAsynchronousPluginInitializationEnabled +WKPreferencesSetAsynchronousPluginInitializationEnabledForAllPlugins +WKPreferencesSetAsynchronousSpellCheckingEnabled +WKPreferencesSetAttachmentElementEnabled +WKPreferencesSetAudioPlaybackRequiresUserGesture +WKPreferencesSetAuthorAndUserStylesEnabled +WKPreferencesSetAutostartOriginPlugInSnapshottingEnabled +WKPreferencesSetBackspaceKeyNavigationEnabled +WKPreferencesSetBeaconAPIEnabled +WKPreferencesSetCSSAnimationTriggersEnabled +WKPreferencesSetCSSCustomFilterEnabled +WKPreferencesSetCSSOMViewScrollingAPIEnabled +WKPreferencesSetCSSRegionsEnabled +WKPreferencesSetCanvasUsesAcceleratedDrawing +WKPreferencesSetCaptureAudioInGPUProcessEnabled +WKPreferencesSetCaptureAudioInUIProcessEnabled +WKPreferencesSetCaptureVideoInGPUProcessEnabled +WKPreferencesSetCaptureVideoInUIProcessEnabled +WKPreferencesSetCaretBrowsingEnabled +WKPreferencesSetColorFilterEnabled +WKPreferencesSetCompositingBordersVisible +WKPreferencesSetCompositingRepaintCountersVisible +WKPreferencesSetContentChangeObserverEnabled +WKPreferencesSetCookieEnabled +WKPreferencesSetCoverAreaMultiplier +WKPreferencesSetCrossOriginResourcePolicyEnabled +WKPreferencesSetCrossOriginWindowPolicyEnabled +WKPreferencesSetCursiveFontFamily +WKPreferencesSetCustomPasteboardDataEnabled +WKPreferencesSetDNSPrefetchingEnabled +WKPreferencesSetDOMPasteAllowed +WKPreferencesSetDOMTimersThrottlingEnabled +WKPreferencesSetDataTransferItemsEnabled +WKPreferencesSetDatabasesEnabled +WKPreferencesSetDefaultFixedFontSize +WKPreferencesSetDefaultFontSize +WKPreferencesSetDefaultTextEncodingName +WKPreferencesSetDeferredCSSParserEnabled +WKPreferencesSetDeveloperExtrasEnabled +WKPreferencesSetDiagnosticLoggingEnabled +WKPreferencesSetDialogElementEnabled +WKPreferencesSetDirectoryUploadEnabled +WKPreferencesSetDisplayContentsEnabled +WKPreferencesSetDoNotTrack +WKPreferencesSetDoNotTrackEnabled +WKPreferencesSetDownloadAttributeEnabled +WKPreferencesSetEditableLinkBehavior +WKPreferencesSetEnableInheritURIQueryComponent +WKPreferencesSetEncodingDetectorEnabled +WKPreferencesSetEncryptedMediaAPIEnabled +WKPreferencesSetEnumeratingAllNetworkInterfacesEnabled +WKPreferencesSetExperimentalFeatureForKey +WKPreferencesSetFTPDirectoryTemplatePath +WKPreferencesSetFantasyFontFamily +WKPreferencesSetFetchAPIEnabled +WKPreferencesSetFetchAPIKeepAliveEnabled +WKPreferencesSetFileAccessFromFileURLsAllowed +WKPreferencesSetFixedFontFamily +WKPreferencesSetFontSmoothingLevel +WKPreferencesSetForceEnableVideo +WKPreferencesSetForceFTPDirectoryListings +WKPreferencesSetForceSoftwareWebGLRendering +WKPreferencesSetFrameFlatteningEnabled +WKPreferencesSetFullScreenEnabled +WKPreferencesSetGamepadsEnabled +WKPreferencesSetHTTPEquivEnabled +WKPreferencesSetHiddenPageCSSAnimationSuspensionEnabled +WKPreferencesSetHiddenPageDOMTimerThrottlingAutoIncreases +WKPreferencesSetHiddenPageDOMTimerThrottlingEnabled +WKPreferencesSetHighlightAPIEnabled +WKPreferencesSetHixie76WebSocketProtocolEnabled +WKPreferencesSetHyperlinkAuditingEnabled +WKPreferencesSetICECandidateFilteringEnabled +WKPreferencesSetIgnoreViewportScalingConstraints +WKPreferencesSetImageControlsEnabled +WKPreferencesSetInactiveMediaCaptureSteamRepromptIntervalInMinutes +WKPreferencesSetIncrementalRenderingSuppressionTimeout +WKPreferencesSetInlineMediaPlaybackRequiresPlaysInlineAttribute +WKPreferencesSetInspectorAdditionsEnabled +WKPreferencesSetInspectorUsesWebKitUserInterface +WKPreferencesSetInteractiveFormValidationEnabled +WKPreferencesSetInternalDebugFeatureForKey +WKPreferencesSetIntersectionObserverEnabled +WKPreferencesSetInvisibleMediaAutoplayPermitted +WKPreferencesSetIsAccessibilityIsolatedTreeEnabled +WKPreferencesSetIsITPDatabaseEnabled +WKPreferencesSetIsNSURLSessionWebSocketEnabled +WKPreferencesSetIsSecureContextAttributeEnabled +WKPreferencesSetJavaEnabled +WKPreferencesSetJavaEnabledForLocalFiles +WKPreferencesSetJavaScriptCanAccessClipboard +WKPreferencesSetJavaScriptCanOpenWindowsAutomatically +WKPreferencesSetJavaScriptEnabled +WKPreferencesSetJavaScriptMarkupEnabled +WKPreferencesSetJavaScriptRuntimeFlags +WKPreferencesSetKeygenElementEnabled +WKPreferencesSetLargeImageAsyncDecodingEnabled +WKPreferencesSetLazyImageLoadingEnabled +WKPreferencesSetLegacyEncryptedMediaAPIEnabled +WKPreferencesSetLinkPreloadEnabled +WKPreferencesSetLoadsImagesAutomatically +WKPreferencesSetLoadsSiteIconsIgnoringImageLoadingPreference +WKPreferencesSetLocalFileContentSniffingEnabled +WKPreferencesSetLocalStorageEnabled +WKPreferencesSetLogsPageMessagesToSystemConsoleEnabled +WKPreferencesSetLongMousePressEnabled +WKPreferencesSetMainContentUserGestureOverrideEnabled +WKPreferencesSetMediaCapabilitiesEnabled +WKPreferencesSetMediaCaptureRequiresSecureConnection +WKPreferencesSetMediaContentTypesRequiringHardwareSupport +WKPreferencesSetMediaControlsScaleWithPageZoom +WKPreferencesSetMediaDevicesEnabled +WKPreferencesSetMediaPlayable +WKPreferencesSetMediaPlaybackAllowsInline +WKPreferencesSetMediaPlaybackRequiresUserGesture +WKPreferencesSetMediaPreloadingEnabled +WKPreferencesSetMediaSourceEnabled +WKPreferencesSetMediaStreamEnabled +WKPreferencesSetMediaUserGestureInheritsFromDocument +WKPreferencesSetMenuItemElementEnabled +WKPreferencesSetMetaRefreshEnabled +WKPreferencesSetMinimumFontSize +WKPreferencesSetMinimumZoomFontSize +WKPreferencesSetMockCaptureDevicesEnabled +WKPreferencesSetMockScrollbarsEnabled +WKPreferencesSetModernMediaControlsEnabled +WKPreferencesSetMultithreadedWebGLEnabled +WKPreferencesSetNeedsSiteSpecificQuirks +WKPreferencesSetNeedsStorageAccessFromFileURLsQuirk +WKPreferencesSetNewBlockInsideInlineModelEnabled +WKPreferencesSetNotificationsEnabled +WKPreferencesSetOfflineWebApplicationCacheEnabled +WKPreferencesSetPDFPluginEnabled +WKPreferencesSetPageCacheEnabled +WKPreferencesSetPageCacheSupportsPlugins +WKPreferencesSetPageVisibilityBasedProcessSuppressionEnabled +WKPreferencesSetPaginateDuringLayoutEnabled +WKPreferencesSetPaintTimingEnabled +WKPreferencesSetPeerConnectionEnabled +WKPreferencesSetPictographFontFamily +WKPreferencesSetPlugInSnapshottingEnabled +WKPreferencesSetPluginSandboxProfilesEnabledForAllPlugins +WKPreferencesSetPluginsEnabled +WKPreferencesSetPrimaryPlugInSnapshotDetectionEnabled +WKPreferencesSetPrivateBrowsingEnabled +WKPreferencesSetProcessSwapOnNavigationEnabled +WKPreferencesSetPunchOutWhiteBackgroundsInDarkMode +WKPreferencesSetQTKitEnabled +WKPreferencesSetReferrerPolicyAttributeEnabled +WKPreferencesSetRegionBasedColumnsEnabled +WKPreferencesSetRemotePlaybackEnabled +WKPreferencesSetRequestAnimationFrameEnabled +WKPreferencesSetResourceTimingEnabled +WKPreferencesSetResourceUsageOverlayVisible +WKPreferencesSetRestrictedHTTPResponseAccess +WKPreferencesSetSansSerifFontFamily +WKPreferencesSetScreenFontSubstitutionEnabled +WKPreferencesSetScrollingPerformanceLoggingEnabled +WKPreferencesSetSelectTrailingWhitespaceEnabled +WKPreferencesSetSelectionPaintingWithoutSelectionGapsEnabled +WKPreferencesSetSerifFontFamily +WKPreferencesSetServerTimingEnabled +WKPreferencesSetServiceControlsEnabled +WKPreferencesSetShouldAllowUserInstalledFonts +WKPreferencesSetShouldConvertPositionStyleOnCopy +WKPreferencesSetShouldDisplayCaptions +WKPreferencesSetShouldDisplaySubtitles +WKPreferencesSetShouldDisplayTextDescriptions +WKPreferencesSetShouldPrintBackgrounds +WKPreferencesSetShouldRespectImageOrientation +WKPreferencesSetShouldSuppressKeyboardInputDuringProvisionalNavigation +WKPreferencesSetShouldUseServiceWorkerShortTimeout +WKPreferencesSetShowsToolTipOverTruncatedText +WKPreferencesSetShowsURLsInToolTipsEnabled +WKPreferencesSetSimpleLineLayoutDebugBordersEnabled +WKPreferencesSetSimpleLineLayoutEnabled +WKPreferencesSetSmartInsertDeleteEnabled +WKPreferencesSetSnapshotAllPlugIns +WKPreferencesSetSourceBufferChangeTypeEnabled +WKPreferencesSetSpatialNavigationEnabled +WKPreferencesSetStandardFontFamily +WKPreferencesSetStorageAccessAPIEnabled +WKPreferencesSetStorageAccessPromptsEnabled +WKPreferencesSetStorageBlockingPolicy +WKPreferencesSetSubpixelAntialiasedLayerTextEnabled +WKPreferencesSetSubpixelCSSOMElementMetricsEnabled +WKPreferencesSetSuppressesIncrementalRendering +WKPreferencesSetSyntheticEditingCommandsEnabled +WKPreferencesSetTabToLinksEnabled +WKPreferencesSetTabsToLinks +WKPreferencesSetTelephoneNumberParsingEnabled +WKPreferencesSetTextAreasAreResizable +WKPreferencesSetTextAutosizingEnabled +WKPreferencesSetTextAutosizingUsesIdempotentMode +WKPreferencesSetThreadedScrollingEnabled +WKPreferencesSetTiledScrollingIndicatorVisible +WKPreferencesSetTopNavigationToDataURLsAllowed +WKPreferencesSetUniversalAccessFromFileURLsAllowed +WKPreferencesSetUseGiantTiles +WKPreferencesSetUseLegacyTextAlignPositionedElementBehavior +WKPreferencesSetUserInterfaceDirectionPolicy +WKPreferencesSetUserTimingEnabled +WKPreferencesSetVideoPlaybackRequiresUserGesture +WKPreferencesSetViewGestureDebuggingEnabled +WKPreferencesSetVisibleDebugOverlayRegions +WKPreferencesSetWebAnimationsCSSIntegrationEnabled +WKPreferencesSetWebAnimationsEnabled +WKPreferencesSetWebArchiveDebugModeEnabled +WKPreferencesSetWebAudioEnabled +WKPreferencesSetWebAuthenticationEnabled +WKPreferencesSetWebAuthenticationLocalAuthenticatorEnabled +WKPreferencesSetWebGLEnabled +WKPreferencesSetWebRTCLegacyAPIEnabled +WKPreferencesSetWebRTCMDNSICECandidatesEnabled +WKPreferencesSetWebSQLDisabled +WKPreferencesSetWebSecurityEnabled +WKPreferencesSetWebShareEnabled +WKPreferencesSetXSSAuditorEnabled +WKPreferencesUseLegacyTextAlignPositionedElementBehavior +WKProtectionSpaceCopyCertificateInfo +WKProtectionSpaceCopyHost +WKProtectionSpaceCopyRealm +WKProtectionSpaceGetAuthenticationScheme +WKProtectionSpaceGetCertificateInfo +WKProtectionSpaceGetIsProxy +WKProtectionSpaceGetPort +WKProtectionSpaceGetReceivesCredentialSecurely +WKProtectionSpaceGetServerType +WKProtectionSpaceGetTypeID +WKRectCreate +WKRectGetTypeID +WKRectGetValue +WKRegistrableDomainCreate +WKRelease +WKRemoveMockMediaDevice +WKRenderLayerCopyElementID +WKRenderLayerCopyElementTagName +WKRenderLayerCopyRendererName +WKRenderLayerGetAbsoluteBounds +WKRenderLayerGetBackingStoreMemoryEstimate +WKRenderLayerGetCompositingLayerType +WKRenderLayerGetElementClassNames +WKRenderLayerGetFrameContentsLayer +WKRenderLayerGetNegativeZOrderList +WKRenderLayerGetNormalFlowList +WKRenderLayerGetPositiveZOrderList +WKRenderLayerGetRenderer +WKRenderLayerGetTypeID +WKRenderLayerIsClipped +WKRenderLayerIsClipping +WKRenderLayerIsReflection +WKRenderObjectCopyElementID +WKRenderObjectCopyElementTagName +WKRenderObjectCopyName +WKRenderObjectCopyTextSnippet +WKRenderObjectGetAbsolutePosition +WKRenderObjectGetChildren +WKRenderObjectGetElementClassNames +WKRenderObjectGetFrameRect +WKRenderObjectGetTextLength +WKRenderObjectGetTypeID +WKResetMockMediaDevices +WKResourceCacheManagerClearCacheForAllOrigins +WKResourceCacheManagerClearCacheForOrigin +WKResourceCacheManagerGetCacheOrigins +WKResourceCacheManagerGetTypeID +WKRetain +WKRunLoopCallOnMainThread +WKRunLoopInitializeMain +WKRunLoopRunMain +WKRunLoopStopMain +WKSecurityOriginCopyDatabaseIdentifier +WKSecurityOriginCopyHost +WKSecurityOriginCopyProtocol +WKSecurityOriginCopyToString +WKSecurityOriginCreate +WKSecurityOriginCreateFromDatabaseIdentifier +WKSecurityOriginCreateFromString +WKSecurityOriginGetHost +WKSecurityOriginGetPort +WKSecurityOriginGetProtocol +WKSecurityOriginGetTypeID +WKSendDisplayConfigurationChangedMessageForTesting +WKSerializedScriptValueCreate +WKSerializedScriptValueCreateWithInternalRepresentation +WKSerializedScriptValueDeserialize +WKSerializedScriptValueGetInternalRepresentation +WKSerializedScriptValueGetTypeID +WKSessionStateCopyData +WKSessionStateCreateFromData +WKSessionStateGetTypeID +WKSizeCreate +WKSizeGetTypeID +WKSizeGetValue +WKStringCopyJSString +WKStringCreateWithJSString +WKStringCreateWithUTF8CString +WKStringGetCharacters +WKStringGetLength +WKStringGetMaximumUTF8CStringSize +WKStringGetTypeID +WKStringGetUTF8CString +WKStringGetUTF8CStringNonStrict +WKStringIsEmpty +WKStringIsEqual +WKStringIsEqualToUTF8CString +WKStringIsEqualToUTF8CStringIgnoringCase +WKTextCheckerChangeSpellingToWord +WKTextCheckerCheckSpelling +WKTextCheckerContinuousSpellCheckingEnabledStateChanged +WKTextCheckerGrammarCheckingEnabledStateChanged +WKTextCheckerSetClient +WKTextCheckerSetTestingMode +WKUInt64Create +WKUInt64GetTypeID +WKUInt64GetValue +WKURLCopyHostName +WKURLCopyLastPathComponent +WKURLCopyPath +WKURLCopyScheme +WKURLCopyString +WKURLCreateWithBaseURL +WKURLCreateWithUTF8CString +WKURLGetTypeID +WKURLIsEqual +WKURLRequestCopyFirstPartyForCookies +WKURLRequestCopyHTTPMethod +WKURLRequestCopySettingHTTPBody +WKURLRequestCopyURL +WKURLRequestCreateWithWKURL +WKURLRequestGetTypeID +WKURLRequestSetDefaultTimeoutInterval +WKURLResponseCopyMIMEType +WKURLResponseCopyMimeType +WKURLResponseCopySuggestedFilename +WKURLResponseCopyURL +WKURLResponseGetExpectedContentLength +WKURLResponseGetHttpStatusCode +WKURLResponseGetTypeID +WKURLResponseHTTPStatusCode +WKURLResponseIsAttachment +WKUserContentControllerAddUserContentFilter +WKUserContentControllerAddUserScript +WKUserContentControllerCopyUserScripts +WKUserContentControllerCreate +WKUserContentControllerGetTypeID +WKUserContentControllerRemoveAllUserContentFilters +WKUserContentControllerRemoveAllUserScripts +WKUserContentExtensionStoreCompile +WKUserContentExtensionStoreCreate +WKUserContentExtensionStoreGetTypeID +WKUserContentExtensionStoreLookup +WKUserContentExtensionStoreRemove +WKUserContentURLPatternCopyHost +WKUserContentURLPatternCopyScheme +WKUserContentURLPatternCreate +WKUserContentURLPatternGetTypeID +WKUserContentURLPatternIsValid +WKUserContentURLPatternMatchesSubdomains +WKUserContentURLPatternMatchesURL +WKUserMediaPermissionCheckGetTypeID +WKUserMediaPermissionCheckSetUserMediaAccessInfo +WKUserMediaPermissionRequestAllow +WKUserMediaPermissionRequestAudioDeviceUIDs +WKUserMediaPermissionRequestDeny +WKUserMediaPermissionRequestGetTypeID +WKUserMediaPermissionRequestVideoDeviceUIDs +WKUserScriptCopySource +WKUserScriptCreateWithSource +WKUserScriptGetInjectionTime +WKUserScriptGetMainFrameOnly +WKUserScriptGetTypeID +WKVibrationGetTypeID +WKVibrationSetProvider +WKViewAccessibilityFocusedObject +WKViewAccessibilityHitTest +WKViewAccessibilityRootObject +WKViewClearBackingStores +WKViewClearSelection +WKViewContextMenuItemSelected +WKViewCreate +WKViewDidEnterFullScreen +WKViewDidExitFullScreen +WKViewGetCanvasHole +WKViewGetPage +WKViewGetPageScaleFactor +WKViewGetPunchHoles +WKViewGetViewScaleFactor +WKViewHandleImeEvent +WKViewHandleKeyboardEvent +WKViewHandleMouseEvent +WKViewHandleWheelEvent +WKViewIsFullScreen +WKViewPaint +WKViewPaintToCurrentGLContext +WKViewReplyAuthenticationChallenge +WKViewReplyCertificateVerification +WKViewReplyCreateNewPage +WKViewReplyJavaScriptAlert +WKViewReplyJavaScriptConfirm +WKViewReplyJavaScriptPrompt +WKViewRequestExitFullScreen +WKViewRestoreBackingStores +WKViewScrollBy +WKViewSetACMemoryInfo +WKViewSetActive +WKViewSetBackgroundColor +WKViewSetDrawsBackground +WKViewSetDrawsTransparentBackground +WKViewSetFocus +WKViewSetFocused +WKViewSetIsVisible +WKViewSetPageScaleFactor +WKViewSetSize +WKViewSetViewAccessibilityClient +WKViewSetViewClient +WKViewSetViewContextMenuClient +WKViewSetViewPopupMenuClient +WKViewSetViewScaleFactor +WKViewSetVisible +WKViewSyncCoordinatedGraphicsState +WKViewValueChangedForPopupMenu +WKViewWillEnterFullScreen +WKViewWillExitFullScreen +WKViewportAttributesGetTypeID +WKWebsiteDataStoreClearAdClickAttributionsThroughWebsiteDataRemoval +WKWebsiteDataStoreClearAllDeviceOrientationPermissions +WKWebsiteDataStoreClearAppBoundSession +WKWebsiteDataStoreClearBundleIdentifierInNetworkProcess +WKWebsiteDataStoreClearDiskCache +WKWebsiteDataStoreConfigurationCopyApplicationCacheDirectory +WKWebsiteDataStoreConfigurationCopyCacheStorageDirectory +WKWebsiteDataStoreConfigurationCopyCookieStorageFile +WKWebsiteDataStoreConfigurationCopyIndexedDBDatabaseDirectory +WKWebsiteDataStoreConfigurationCopyLocalStorageDirectory +WKWebsiteDataStoreConfigurationCopyMediaKeysStorageDirectory +WKWebsiteDataStoreConfigurationCopyNetworkCacheDirectory +WKWebsiteDataStoreConfigurationCopyResourceLoadStatisticsDirectory +WKWebsiteDataStoreConfigurationCopyServiceWorkerRegistrationDirectory +WKWebsiteDataStoreConfigurationCopyWebSQLDatabaseDirectory +WKWebsiteDataStoreConfigurationCreate +WKWebsiteDataStoreConfigurationGetNetworkCacheSpeculativeValidationEnabled +WKWebsiteDataStoreConfigurationGetPerOriginStorageQuota +WKWebsiteDataStoreConfigurationGetStaleWhileRevalidateEnabled +WKWebsiteDataStoreConfigurationGetTestingSessionEnabled +WKWebsiteDataStoreConfigurationGetTypeID +WKWebsiteDataStoreConfigurationLegacyTLSEnabled +WKWebsiteDataStoreConfigurationSetApplicationCacheDirectory +WKWebsiteDataStoreConfigurationSetCacheStorageDirectory +WKWebsiteDataStoreConfigurationSetCookieStorageFile +WKWebsiteDataStoreConfigurationSetIndexedDBDatabaseDirectory +WKWebsiteDataStoreConfigurationSetLegacyTLSEnabled +WKWebsiteDataStoreConfigurationSetLocalStorageDirectory +WKWebsiteDataStoreConfigurationSetMediaKeysStorageDirectory +WKWebsiteDataStoreConfigurationSetNetworkCacheDirectory +WKWebsiteDataStoreConfigurationSetNetworkCacheSpeculativeValidationEnabled +WKWebsiteDataStoreConfigurationSetPerOriginStorageQuota +WKWebsiteDataStoreConfigurationSetResourceLoadStatisticsDirectory +WKWebsiteDataStoreConfigurationSetServiceWorkerRegistrationDirectory +WKWebsiteDataStoreConfigurationSetStaleWhileRevalidateEnabled +WKWebsiteDataStoreConfigurationSetTestingSessionEnabled +WKWebsiteDataStoreConfigurationSetWebSQLDatabaseDirectory +WKWebsiteDataStoreCreateNonPersistentDataStore +WKWebsiteDataStoreCreateWithConfiguration +WKWebsiteDataStoreDisableNetworkProxySettings +WKWebsiteDataStoreDoesStatisticsDomainIDExistInDatabase +WKWebsiteDataStoreDumpResourceLoadStatistics +WKWebsiteDataStoreEnableCustomNetworkProxySettings +WKWebsiteDataStoreEnableDefaultNetworkProxySettings +WKWebsiteDataStoreGetAllStorageAccessEntries +WKWebsiteDataStoreGetDefaultDataStore +WKWebsiteDataStoreGetFetchCacheOrigins +WKWebsiteDataStoreGetFetchCacheSizeForOrigin +WKWebsiteDataStoreGetHTTPCookieStore +WKWebsiteDataStoreGetResourceLoadStatisticsEnabled +WKWebsiteDataStoreGetTypeID +WKWebsiteDataStoreHasAppBoundSession +WKWebsiteDataStoreIsStatisticsEphemeral +WKWebsiteDataStoreIsStatisticsGrandfathered +WKWebsiteDataStoreIsStatisticsHasHadUserInteraction +WKWebsiteDataStoreIsStatisticsOnlyInDatabaseOnce +WKWebsiteDataStoreIsStatisticsPrevalentResource +WKWebsiteDataStoreIsStatisticsRegisteredAsRedirectingTo +WKWebsiteDataStoreIsStatisticsRegisteredAsSubFrameUnder +WKWebsiteDataStoreIsStatisticsRegisteredAsSubresourceUnder +WKWebsiteDataStoreIsStatisticsVeryPrevalentResource +WKWebsiteDataStoreReinitializeAppBoundDomains +WKWebsiteDataStoreRemoveAllFetchCaches +WKWebsiteDataStoreRemoveAllIndexedDatabases +WKWebsiteDataStoreRemoveAllServiceWorkerRegistrations +WKWebsiteDataStoreRemoveFetchCacheForOrigin +WKWebsiteDataStoreRemoveITPDataForDomain +WKWebsiteDataStoreRemoveLocalStorage +WKWebsiteDataStoreResetQuota +WKWebsiteDataStoreSetAdditionalRootCA +WKWebsiteDataStoreSetAppBoundDomainsForTesting +WKWebsiteDataStoreSetCacheModelSynchronouslyForTesting +WKWebsiteDataStoreSetClientCertificate +WKWebsiteDataStoreSetPerOriginStorageQuota +WKWebsiteDataStoreSetResourceLoadStatisticsDebugMode +WKWebsiteDataStoreSetResourceLoadStatisticsDebugModeWithCompletionHandler +WKWebsiteDataStoreSetResourceLoadStatisticsEnabled +WKWebsiteDataStoreSetResourceLoadStatisticsFirstPartyHostCNAMEDomainForTesting +WKWebsiteDataStoreSetResourceLoadStatisticsFirstPartyWebsiteDataRemovalModeForTesting +WKWebsiteDataStoreSetResourceLoadStatisticsPrevalentResourceForDebugMode +WKWebsiteDataStoreSetResourceLoadStatisticsShouldBlockThirdPartyCookiesForTesting +WKWebsiteDataStoreSetResourceLoadStatisticsShouldDowngradeReferrerForTesting +WKWebsiteDataStoreSetResourceLoadStatisticsThirdPartyCNAMEDomainForTesting +WKWebsiteDataStoreSetResourceLoadStatisticsToSameSiteStrictCookiesForTesting +WKWebsiteDataStoreSetStatisticsCacheMaxAgeCap +WKWebsiteDataStoreSetStatisticsCrossSiteLoadWithLinkDecoration +WKWebsiteDataStoreSetStatisticsExpiredStatistic +WKWebsiteDataStoreSetStatisticsGrandfathered +WKWebsiteDataStoreSetStatisticsGrandfatheringTime +WKWebsiteDataStoreSetStatisticsHasHadUserInteraction +WKWebsiteDataStoreSetStatisticsIsRunningTest +WKWebsiteDataStoreSetStatisticsLastSeen +WKWebsiteDataStoreSetStatisticsMaxStatisticsEntries +WKWebsiteDataStoreSetStatisticsMergeStatistic +WKWebsiteDataStoreSetStatisticsMinimumTimeBetweenDataRecordsRemoval +WKWebsiteDataStoreSetStatisticsNotifyPagesWhenDataRecordsWereScanned +WKWebsiteDataStoreSetStatisticsPrevalentResource +WKWebsiteDataStoreSetStatisticsPruneEntriesDownTo +WKWebsiteDataStoreSetStatisticsShouldClassifyResourcesBeforeDataRecordsRemoval +WKWebsiteDataStoreSetStatisticsSubframeUnderTopFrameOrigin +WKWebsiteDataStoreSetStatisticsSubresourceUnderTopFrameOrigin +WKWebsiteDataStoreSetStatisticsSubresourceUniqueRedirectFrom +WKWebsiteDataStoreSetStatisticsSubresourceUniqueRedirectTo +WKWebsiteDataStoreSetStatisticsTimeToLiveUserInteraction +WKWebsiteDataStoreSetStatisticsTopFrameUniqueRedirectFrom +WKWebsiteDataStoreSetStatisticsTopFrameUniqueRedirectTo +WKWebsiteDataStoreSetStatisticsVeryPrevalentResource +WKWebsiteDataStoreSetUseITPDatabase +WKWebsiteDataStoreStatisticsClearInMemoryAndPersistentStore +WKWebsiteDataStoreStatisticsClearInMemoryAndPersistentStoreModifiedSinceHours +WKWebsiteDataStoreStatisticsClearThroughWebsiteDataRemoval +WKWebsiteDataStoreStatisticsDeleteCookiesForTesting +WKWebsiteDataStoreStatisticsHasIsolatedSession +WKWebsiteDataStoreStatisticsHasLocalStorage +WKWebsiteDataStoreStatisticsProcessStatisticsAndDataRecords +WKWebsiteDataStoreStatisticsResetToConsistentState +WKWebsiteDataStoreStatisticsSubmitTelemetry +WKWebsiteDataStoreStatisticsUpdateCookieBlocking +WKWebsiteDataStoreUpdateBundleIdentifierInNetworkProcess +WKWebsitePoliciesCopyCustomHeaderFields +WKWebsitePoliciesCreate +WKWebsitePoliciesGetAllowedAutoplayQuirks +WKWebsitePoliciesGetAutoplayPolicy +WKWebsitePoliciesGetContentBlockersEnabled +WKWebsitePoliciesGetDataStore +WKWebsitePoliciesGetPopUpPolicy +WKWebsitePoliciesGetTypeID +WKWebsitePoliciesSetAllowedAutoplayQuirks +WKWebsitePoliciesSetAutoplayPolicy +WKWebsitePoliciesSetContentBlockersEnabled +WKWebsitePoliciesSetCustomHeaderFields +WKWebsitePoliciesSetDataStore +WKWebsitePoliciesSetPopUpPolicy +WKWheelEventMake +WKWindowFeaturesGetTypeID +WTFAnnotateBenignRaceSized +WTFAnnotateHappensAfter +WTFAnnotateHappensBefore +WTFCrash +WTFCrashWithSecurityImplication +WTFGetBacktrace +WTFInitializeLogChannelStatesFromString +WTFIsDebuggerAttached +WTFLog +WTFLogAlways +WTFLogAlwaysAndCrash +WTFLogAlwaysV +WTFLogChannelByName +WTFLogVerbose +WTFLogWithLevel +WTFPrintBacktrace +WTFReportArgumentAssertionFailure +WTFReportAssertionFailure +WTFReportAssertionFailureWithMessage +WTFReportBacktrace +WTFReportError +WTFReportFatalError +WTFReportNotImplementedYet +WTFSetLogChannelLevel +WTFWillLogWithLevel +WebBrowserGetEnvelopeData +WebCoreHas3DRendering +WebProcessMainManx +WebProcessMainPlayStation +WriteZStream +X509V3_EXT_print +X509_EXTENSION_get_critical +X509_EXTENSION_get_data +X509_EXTENSION_get_object +X509_INFO_free +X509_LOOKUP_file +X509_NAME_ENTRY_get_data +X509_NAME_get_entry +X509_NAME_get_index_by_NID +X509_NAME_get_text_by_NID +X509_NAME_oneline +X509_NAME_print_ex +X509_PUBKEY_get0_param +X509_STORE_CTX_free +X509_STORE_CTX_get1_chain +X509_STORE_CTX_get_chain +X509_STORE_CTX_get_current_cert +X509_STORE_CTX_get_error +X509_STORE_CTX_get_error_depth +X509_STORE_CTX_get_ex_data +X509_STORE_CTX_init +X509_STORE_CTX_new +X509_STORE_CTX_set_error +X509_STORE_add_cert +X509_STORE_add_crl +X509_STORE_add_lookup +X509_STORE_free +X509_STORE_new +X509_STORE_set_flags +X509_STORE_up_ref +X509_VERIFY_PARAM_set1_host +X509_VERIFY_PARAM_set1_ip_asc +X509_VERIFY_PARAM_set_hostflags +X509_check_issued +X509_free +X509_get0_extensions +X509_get0_notAfter +X509_get0_notBefore +X509_get0_signature +X509_get_ext +X509_get_ext_count +X509_get_ext_d2i +X509_get_issuer_name +X509_get_pubkey +X509_get_serialNumber +X509_get_subject_name +X509_get_version +X509_getm_notAfter +X509_getm_notBefore +X509_load_crl_file +X509_print_ex +X509_up_ref +X509_verify_cert +X509_verify_cert_error_string +YGAlignToString +YGAssert +YGConfigCopy +YGConfigFree +YGConfigGetContext +YGConfigGetDefault +YGConfigGetInstanceCount +YGConfigGetUseWebDefaults +YGConfigIsExperimentalFeatureEnabled +YGConfigNew +YGConfigSetContext +YGConfigSetExperimentalFeatureEnabled +YGConfigSetLogger +YGConfigSetPointScaleFactor +YGConfigSetUseWebDefaults +YGDimensionToString +YGDirectionToString +YGDisplayToString +YGEdgeToString +YGExperimentalFeatureToString +YGFlexDirectionToString +YGFloatIsUndefined +YGInteropSetLogger +YGJustifyToString +YGLog +YGLogLevelToString +YGLogWithConfig +YGMeasureModeToString +YGNodeCalculateLayout +YGNodeCanUseCachedMeasurement +YGNodeClone +YGNodeCopyStyle +YGNodeFree +YGNodeFreeRecursive +YGNodeGetBaselineFunc +YGNodeGetChild +YGNodeGetChildCount +YGNodeGetContext +YGNodeGetHasNewLayout +YGNodeGetInstanceCount +YGNodeGetMeasureFunc +YGNodeGetOwner +YGNodeGetParent +YGNodeGetPrintFunc +YGNodeInsertChild +YGNodeIsDirty +YGNodeLayoutGetBorder +YGNodeLayoutGetBottom +YGNodeLayoutGetDirection +YGNodeLayoutGetHadOverflow +YGNodeLayoutGetHeight +YGNodeLayoutGetLeft +YGNodeLayoutGetMargin +YGNodeLayoutGetPadding +YGNodeLayoutGetRight +YGNodeLayoutGetTop +YGNodeLayoutGetWidth +YGNodeMarkDirty +YGNodeNew +YGNodeNewWithConfig +YGNodePrint +YGNodeRemoveAllChildren +YGNodeRemoveChild +YGNodeReset +YGNodeSetBaselineFunc +YGNodeSetChildren +YGNodeSetContext +YGNodeSetHasNewLayout +YGNodeSetMeasureFunc +YGNodeSetPrintFunc +YGNodeStyleGetAlignContent +YGNodeStyleGetAlignItems +YGNodeStyleGetAlignSelf +YGNodeStyleGetAspectRatio +YGNodeStyleGetBorder +YGNodeStyleGetDirection +YGNodeStyleGetDisplay +YGNodeStyleGetFlex +YGNodeStyleGetFlexBasis +YGNodeStyleGetFlexDirection +YGNodeStyleGetFlexGrow +YGNodeStyleGetFlexShrink +YGNodeStyleGetFlexWrap +YGNodeStyleGetHeight +YGNodeStyleGetJustifyContent +YGNodeStyleGetMargin +YGNodeStyleGetMaxHeight +YGNodeStyleGetMaxWidth +YGNodeStyleGetMinHeight +YGNodeStyleGetMinWidth +YGNodeStyleGetOverflow +YGNodeStyleGetPadding +YGNodeStyleGetPosition +YGNodeStyleGetPositionType +YGNodeStyleGetWidth +YGNodeStyleSetAlignContent +YGNodeStyleSetAlignItems +YGNodeStyleSetAlignSelf +YGNodeStyleSetAspectRatio +YGNodeStyleSetBorder +YGNodeStyleSetDirection +YGNodeStyleSetDisplay +YGNodeStyleSetFlex +YGNodeStyleSetFlexBasis +YGNodeStyleSetFlexBasisAuto +YGNodeStyleSetFlexBasisPercent +YGNodeStyleSetFlexDirection +YGNodeStyleSetFlexGrow +YGNodeStyleSetFlexShrink +YGNodeStyleSetFlexWrap +YGNodeStyleSetHeight +YGNodeStyleSetHeightAuto +YGNodeStyleSetHeightPercent +YGNodeStyleSetJustifyContent +YGNodeStyleSetMargin +YGNodeStyleSetMarginAuto +YGNodeStyleSetMarginPercent +YGNodeStyleSetMaxHeight +YGNodeStyleSetMaxHeightPercent +YGNodeStyleSetMaxWidth +YGNodeStyleSetMaxWidthPercent +YGNodeStyleSetMinHeight +YGNodeStyleSetMinHeightPercent +YGNodeStyleSetMinWidth +YGNodeStyleSetMinWidthPercent +YGNodeStyleSetOverflow +YGNodeStyleSetPadding +YGNodeStyleSetPaddingPercent +YGNodeStyleSetPosition +YGNodeStyleSetPositionPercent +YGNodeStyleSetPositionType +YGNodeStyleSetWidth +YGNodeStyleSetWidthAuto +YGNodeStyleSetWidthPercent +YGOverflowToString +YGPositionTypeToString +YGPrintOptionsToString +YGSetLogger +YGSetMemoryFuncs +YGUnitToString +YGWrapToString +ZIP_CRC32 +ZIP_Close +ZIP_Open +Zero +_ASCIIData_67 +_Assert +_Atan +_Atcount +_Atcount0 +_Atdata +_Atfuns +_Atomic_compare_exchange_strong +_Atomic_compare_exchange_strong_1 +_Atomic_compare_exchange_strong_2 +_Atomic_compare_exchange_strong_4 +_Atomic_compare_exchange_strong_8 +_Atomic_compare_exchange_weak +_Atomic_compare_exchange_weak_1 +_Atomic_compare_exchange_weak_2 +_Atomic_compare_exchange_weak_4 +_Atomic_compare_exchange_weak_8 +_Atomic_copy +_Atomic_exchange +_Atomic_exchange_1 +_Atomic_exchange_2 +_Atomic_exchange_4 +_Atomic_exchange_8 +_Atomic_fetch_add_1 +_Atomic_fetch_add_2 +_Atomic_fetch_add_4 +_Atomic_fetch_add_8 +_Atomic_fetch_and_1 +_Atomic_fetch_and_2 +_Atomic_fetch_and_4 +_Atomic_fetch_and_8 +_Atomic_fetch_or_1 +_Atomic_fetch_or_2 +_Atomic_fetch_or_4 +_Atomic_fetch_or_8 +_Atomic_fetch_sub_1 +_Atomic_fetch_sub_2 +_Atomic_fetch_sub_4 +_Atomic_fetch_sub_8 +_Atomic_fetch_xor_1 +_Atomic_fetch_xor_2 +_Atomic_fetch_xor_4 +_Atomic_fetch_xor_8 +_Atomic_flag_clear +_Atomic_flag_test_and_set +_Atomic_is_lock_free_1 +_Atomic_is_lock_free_2 +_Atomic_is_lock_free_4 +_Atomic_is_lock_free_8 +_Atomic_load_1 +_Atomic_load_2 +_Atomic_load_4 +_Atomic_load_8 +_Atomic_signal_fence +_Atomic_store_1 +_Atomic_store_2 +_Atomic_store_4 +_Atomic_store_8 +_Atomic_thread_fence +_Atomic_thread_fence._Guard +_Atqexit +_Atrealloc +_Atthreadexit +_Bocu1Data_67 +_Btowc +_CESU8Data_67 +_CStrftime +_CStrxfrm +_CTinfo +_CWcsxfrm +_Call_once +_Call_onceEx +_Clearlocks +_Clocale +_Close +_Closreg +_Cnd_broadcast +_Cnd_destroy +_Cnd_do_broadcast_at_thread_exit +_Cnd_init +_Cnd_init_with_default_name_override +_Cnd_init_with_name +_Cnd_register_at_thread_exit +_Cnd_signal +_Cnd_timedwait +_Cnd_unregister_at_thread_exit +_Cnd_wait +_CompoundTextData_67 +_Cosh +_Costate +_Costate2 +_Ctype +_Ctype2 +_CurrentRuneLocale +_Daysto +_Dbl +_Dclass +_DefaultRuneLocale +_Deletegloballocale +_Denorm +_Dint +_Dint.mask +_Dint.sub +_Divide +_Dnorm +_Do_call +_Dscale +_Dsign +_Dtento +_Dtest +_Dunscale +_Eps +_Erf_one +_Erf_small +_Erfc +_Errno +_Exit +_Exp +_FAtan +_FCosh +_FDclass +_FDenorm +_FDint +_FDint.mask +_FDint.sub +_FDivide +_FDnorm +_FDscale +_FDsign +_FDtento +_FDtest +_FDunscale +_FEps +_FErf_one +_FErf_small +_FErfc +_FExp +_FFpcomp +_FGamma_big +_FHypot +_FInf +_FLog +_FLogpoly +_FNan +_FPlsw +_FPmsw +_FPoly +_FPow +_FQuad +_FQuadph +_FRecip +_FRint +_FRteps +_FSin +_FSincos +_FSinh +_FSnan +_FTan +_FTgamma +_FXbig +_FXp_addh +_FXp_addx +_FXp_getw +_FXp_invx +_FXp_ldexpx +_FXp_movx +_FXp_mulh +_FXp_mulx +_FXp_setn +_FXp_setw +_FXp_sqrtx +_FXp_subx +_FZero +_Fac_tidy +_Fail_s +_Feraise +_Fetch_add_8 +_Fetch_and_8 +_Fetch_and_seq_cst_1 +_Fetch_and_seq_cst_2 +_Fetch_and_seq_cst_4 +_Fetch_or_8 +_Fetch_or_seq_cst_1 +_Fetch_or_seq_cst_2 +_Fetch_or_seq_cst_4 +_Fetch_xor_8 +_Fetch_xor_seq_cst_1 +_Fetch_xor_seq_cst_2 +_Fetch_xor_seq_cst_4 +_Fgpos +_Files +_Flt +_Fltrounds +_Fofind +_Fofindbyfd +_Fofree +_Fopen +_Fopen.rwacc +_Foprep +_Foprep.init +_Fpcomp +_Frprep +_Fspos +_Fwprep +_GLOBAL__I_000101 +_GLOBAL__I_000102 +_GLOBAL__sub_I_iostream.cpp +_GLOBAL__sub_I_locale.cpp +_GLOBAL__sub_I_locale0.cpp +_GLOBAL__sub_I_orbis_thread.cpp +_GLOBAL__sub_I_wiostrea.cpp +_Gamma_big +_Genld +_Gentime +_Getcloc +_Getctyptab +_Getdst +_Geterrno +_Getfld +_Getfloat +_Getfloat.digits +_Getgloballocale +_Getint +_Getint.barr +_Getint.digits +_Getint.flit +_Getmbcurmax +_Getpcostate +_Getpctype +_Getpmbstate +_Getptimes +_Getptolower +_Getptoupper +_Getpwcostate +_Getpwcstate +_Getpwctrtab +_Getpwctytab +_Getstr +_Gettime +_Getzone +_HZData_67 +_Hugeval +_Hypot +_IMAPData_67 +_ISCIIData_67 +_ISO2022Data_67 +_Inf +_Isdst +_Iswctype +_ItL_aT +_ItL_atanhi +_ItL_atanlo +_ItL_pS0 +_ItL_pS1 +_ItL_pS2 +_ItL_pS3 +_ItL_pS4 +_ItL_pS5 +_ItL_pS6 +_ItL_pi_lo +_ItL_qS1 +_ItL_qS2 +_ItL_qS3 +_ItL_qS4 +_ItL_qS5 +_LAtan +_LCosh +_LDclass +_LDenorm +_LDint +_LDint.mask +_LDint.sub +_LDivide +_LDnorm +_LDscale +_LDsign +_LDtento +_LDtest +_LDunscale +_LEps +_LErf_one +_LErf_small +_LErfc +_LExp +_LFpcomp +_LGamma_big +_LHypot +_LInf +_LLgamma_big +_LLog +_LLogpoly +_LMBCSData11_67 +_LMBCSData16_67 +_LMBCSData17_67 +_LMBCSData18_67 +_LMBCSData19_67 +_LMBCSData1_67 +_LMBCSData2_67 +_LMBCSData3_67 +_LMBCSData4_67 +_LMBCSData5_67 +_LMBCSData6_67 +_LMBCSData8_67 +_LNan +_LPlsw +_LPmsw +_LPoly +_LPow +_LQuad +_LQuadph +_LRecip +_LRint +_LRteps +_LSin +_LSincos +_LSinh +_LSnan +_LTan +_LTgamma +_LXbig +_LXp_addh +_LXp_addx +_LXp_getw +_LXp_invx +_LXp_ldexpx +_LXp_movx +_LXp_mulh +_LXp_mulx +_LXp_setn +_LXp_setw +_LXp_sqrtx +_LXp_subx +_LZero +_Latin1Data_67 +_Ldbl +_Ldtob +_Litob +_Locale +_Locale2 +_Lock_shared_ptr_spin_lock +_Lock_spin_lock +_Lockfilelock +_Locksyslock +_Locsum +_Loctab +_Locterm +_Locvar +_Log +_Logpoly +_Lseek +_MBCSData_67 +_Makeloc +_Makestab +_Makewct +_Mbcurmax +_Mbcurmax2 +_Mbstate +_Mbstate2 +_Mbtowc +_Mbtowcx +_Mbtowcx.initial +_Mtx_current_owns +_Mtx_destroy +_Mtx_init +_Mtx_init_with_default_name_override +_Mtx_init_with_name +_Mtx_lock +_Mtx_timedlock +_Mtx_trylock +_Mtx_unlock +_Mtxdst +_Mtxinit +_Mtxlock +_Mtxunlock +_Nan +_Nats +_Nnl +_Open +_OrbisTextureImage2DCanvas +_PJP_CPP_Copyright +_PJP_C_Copyright +_PathLocale +_Plsw +_Pmsw +_Poly +_Pow +_Printf +_Printf.fbit +_Printf.fchar +_Printf.percent +_Putfld +_Putstr +_Puttxt +_Quad +_Quadph +_Randseed +_Read +_Readloc +_Recip +_Restore_state +_Rint +_Rteps +_SCSUData_67 +_Save_state +_Scanf +_SceLibcDebugOut +_SceLibcTelemetoryOut +_Setgloballocale +_Shared_ptr_flag +_Sin +_Sincos +_Sinh +_Skip +_Snan +_Stderr +_Stdin +_Stdout +_Stod +_Stodx +_Stof +_Stoflt +_Stofx +_Stold +_Stoldx +_Stoll +_Stollx +_Stolx +_Stopfx +_Stoul +_Stoull +_Stoullx +_Stoulx +_Stoxflt +_Stoxflt.digits +_Stoxflt.vals +_Strcollx +_Strcollx.initial +_Strerror +_Strxfrmx +_Strxfrmx.initial +_Tan +_Tgamma +_Thrd_abort +_Thrd_create +_Thrd_current +_Thrd_detach +_Thrd_equal +_Thrd_exit +_Thrd_id +_Thrd_join +_Thrd_lt +_Thrd_sleep +_Thrd_start +_Thrd_start_with_attr +_Thrd_start_with_name +_Thrd_start_with_name_attr +_Thrd_yield +_Times +_Tls_setup__Costate +_Tls_setup__Ctype +_Tls_setup__Errno +_Tls_setup__Locale +_Tls_setup__Mbcurmax +_Tls_setup__Mbstate +_Tls_setup__Times +_Tls_setup__Tolotab +_Tls_setup__Touptab +_Tls_setup__WCostate +_Tls_setup__Wcstate +_Tls_setup__Wctrans +_Tls_setup__Wctype +_Tolotab +_Tolotab2 +_Touptab +_Touptab2 +_Towctrans +_Tss_create +_Tss_delete +_Tss_get +_Tss_set +_Ttotm +_Tzoff +_UIx86_64__mempool_alloc +_UIx86_64__mempool_free +_UIx86_64__mempool_init +_UIx86_64__sos_alloc +_UIx86_64_full_mask +_UIx86_64_mi_init +_ULx86_64_Iextract_dynamic_proc_info +_ULx86_64_Ifind_dynamic_proc_info +_ULx86_64_Iput_dynamic_unwind_info +_ULx86_64_access_fpreg +_ULx86_64_access_reg +_ULx86_64_create_addr_space +_ULx86_64_destroy_addr_space +_ULx86_64_dwarf_callback +_ULx86_64_dwarf_create_state_record +_ULx86_64_dwarf_eval_expr +_ULx86_64_dwarf_extract_proc_info_from_fde +_ULx86_64_dwarf_find_proc_info +_ULx86_64_dwarf_find_save_locs +_ULx86_64_dwarf_make_proc_info +_ULx86_64_dwarf_put_unwind_info +_ULx86_64_dwarf_read_encoded_pointer +_ULx86_64_dwarf_search_unwind_table +_ULx86_64_dwarf_step +_ULx86_64_dwarf_to_unw_regnum_map +_ULx86_64_get_fpreg +_ULx86_64_get_proc_info +_ULx86_64_get_proc_info_by_ip +_ULx86_64_get_proc_name +_ULx86_64_get_reg +_ULx86_64_get_save_loc +_ULx86_64_handle_signal_frame +_ULx86_64_init +_ULx86_64_init_local +_ULx86_64_init_mem_validate +_ULx86_64_init_remote +_ULx86_64_is_signal_frame +_ULx86_64_local_addr_space +_ULx86_64_local_addr_space_init +_ULx86_64_local_resume +_ULx86_64_lock +_ULx86_64_needs_initialization +_ULx86_64_r_uc_addr +_ULx86_64_resume +_ULx86_64_set_caching_policy +_ULx86_64_set_fpreg +_ULx86_64_set_reg +_ULx86_64_sigreturn +_ULx86_64_stash_frame +_ULx86_64_step +_UTF16BEData_67 +_UTF16Data_67 +_UTF16LEData_67 +_UTF16v2Data_67 +_UTF32BEData_67 +_UTF32Data_67 +_UTF32LEData_67 +_UTF7Data_67 +_UTF8Data_67 +_U_dyn_cancel +_U_dyn_info_list +_U_dyn_info_list_addr +_U_dyn_register +_Unlock_shared_ptr_spin_lock +_Unlock_spin_lock +_Unlockfilelock +_Unlocksyslock +_Unwind_Backtrace +_Unwind_DeleteException +_Unwind_FindEnclosingFunction +_Unwind_ForcedUnwind +_Unwind_GetBSP +_Unwind_GetCFA +_Unwind_GetDataRelBase +_Unwind_GetGR +_Unwind_GetIP +_Unwind_GetIPInfo +_Unwind_GetLanguageSpecificData +_Unwind_GetRegionStart +_Unwind_GetTextRelBase +_Unwind_RaiseException +_Unwind_Resume +_Unwind_Resume_or_Rethrow +_Unwind_SetGR +_Unwind_SetIP +_Ux86_64_dwarf_init +_Ux86_64_flush_cache +_Ux86_64_get_accessors +_Ux86_64_get_elf_image +_Ux86_64_getcontext +_Ux86_64_getcontext_trace +_Ux86_64_is_fpreg +_Ux86_64_regname +_Ux86_64_setcontext +_Ux86_64_strerror +_Vacopy +_WCostate +_WCostate2 +_WFrprep +_WFwprep +_WGenld +_WGenld.lzero +_WGetfld +_WGetfloat +_WGetfloat.digits +_WGetint +_WGetint.barr +_WGetint.digits +_WGetint.flit +_WGetstr +_WLdtob +_WLdtob.Inf +_WLdtob.Nan +_WLdtob.Xdigs +_WLdtob.inf +_WLdtob.nan +_WLdtob.xdigs +_WLitob +_WPrintf +_WPrintf.fbit +_WPrintf.fchar +_WPrintf.percent +_WPrintf.qchar +_WPutfld +_WPutstr +_WPuttxt +_WScanf +_WScanf.qchar +_WScanf.schar +_WStod +_WStodx +_WStof +_WStoflt +_WStofx +_WStold +_WStoldx +_WStoll +_WStopfx +_WStoul +_WStoull +_WStoxflt +_WStoxflt.digits +_WStoxflt.vals +_Wcscollx +_Wcscollx.initial +_Wcsftime +_Wcstate +_Wcstate2 +_Wcsxfrmx +_Wctob +_Wctomb +_Wctombx +_Wctombx.initial +_Wctrans +_Wctrans2 +_Wctype +_Wctype2 +_Write +_Xbig +_Xp_addh +_Xp_addx +_Xp_getw +_Xp_invx +_Xp_ldexpx +_Xp_movx +_Xp_mulh +_Xp_mulx +_Xp_setn +_Xp_setw +_Xp_sqrtx +_Xp_subx +_Xtime_diff_to_ts +_Xtime_get_ticks +_Xtime_to_Useconds +_Xtime_to_ts +_Z10getIpcPathiiPKciPc +_Z12DbgPrintDumpPvj +_Z12Image_SaveAsiP11_MonoStringPKN3sce3pss4core7imaging19ImageCompressOptionE +_Z12getIpcPathExiiiPKciPc +_Z13Image_ConvertijjPi +_Z13insertOnArrayPPjmj +_Z14getIpmiMessageiPvPmmPj +_Z15checkCreateRoomRKN3sce7Toolkit2NP2V28Matching7Request10CreateRoomE +_Z15sendIpmiMessageiPKvmPj +_Z16Bgm_BgmNoizeTesti +_Z16WTFCrashWithInfoiPKcS0_i +_Z16WTFCrashWithInfoiPKcS0_im +_Z16WTFCrashWithInfoiPKcS0_imm +_Z16WTFCrashWithInfoiPKcS0_immm +_Z16WTFCrashWithInfoiPKcS0_immmm +_Z16WTFCrashWithInfoiPKcS0_immmmm +_Z16WebViewBasGoBackii +_Z16acceptIpcChanneli +_Z16attachIpcChanneliPKciiPi +_Z16createIpcChanneliPKciimPi +_Z16detachIpcChanneli +_Z17Ime_KbdOpenNativeRN3sce11playstation4core3Ime24ImeKeyboardParamInternalERm +_Z17destroyIpcChanneli +_Z17receiveIpmiPacketiPvmPiS0_ +_Z17tryGetIpmiMessageiPvPmm +_Z18Ime_KbdCloseNativem +_Z18attachIpcChannelExiPKciiiPi +_Z18createIpcChannelExiPKciiimPi +_Z18sendIpmiConnectCmdiPvPKvm +_Z18sendIpmiConnectResiiiii +_Z18trySendIpmiMessageiPKvm +_Z19Ime_ConfigGetNativeimjRi +_Z19Ime_ConfigSetNativeimji +_Z20Ime_DicAddWordNativeimP11_MonoStringS0_ +_Z20Ime_KbdGetInfoNativemjRN3sce11playstation4core3Ime15ImeKeyboardInfoE +_Z20WTFCrashWithInfoImpliPKcS0_im +_Z20WTFCrashWithInfoImpliPKcS0_imm +_Z20WTFCrashWithInfoImpliPKcS0_immm +_Z20WTFCrashWithInfoImpliPKcS0_immmm +_Z20WTFCrashWithInfoImpliPKcS0_immmmm +_Z20WTFCrashWithInfoImpliPKcS0_immmmmm +_Z20WTFCrashWithInfoImpliPKcS0_immmmmmm +_Z20WebViewBaseCanGoBackii +_Z20WebViewBaseGoForwardii +_Z20sceNpIpcGetIpcClientv +_Z21Ime_KbdGetEventNativemRN3sce11playstation4core3Ime14ImeEventNativeE +_Z21VideoPlayerVcs_CreatePiP11_MonoStringiiiiii +_Z21clearIpmiMessageQueuei +_Z21scePlayGoDevTerminatev +_Z21sendIpmiDisconnectCmdii +_Z21sendIpmiDisconnectResii +_Z22scePlayGoDevInitializeP21ScePlayGoDevInitParam +_Z23Ime_DicDeleteWordNativeimP11_MonoStringS0_ +_Z23Ime_UpdateContextNativemP11_MonoStringj +_Z23VideoPlayerVcs_GetSpeedi +_Z23VideoPlayerVcs_SetSpeedii +_Z23WebViewBaseCanGoForwardii +_Z23sceMatMapFlexibleMemoryPKvmii +_Z24Ime_DicReplaceWordNativeimP11_MonoStringS0_S0_S0_ +_Z24Ime_GetDicWordListNativeimPP11_MonoStringS1_ +_Z24VideoPlayerVcs_GetVolumei +_Z24VideoPlayerVcs_SetVolumeii +_Z24receiveIpmiDisconnectResiPi +_Z25sceLibcForceTlsDestructori +_Z25sceMatRegisterGdsResourcemmjmPKcjm +_Z25scePlayGoEmuFsEnableChunktPt +_Z26Camera_GetConfigTypeNativeiPi +_Z26Camera_SetConfigTypeNativeii +_Z26Ime_KbdGetResourceIdNativemPj +_Z26Ime_SetCaretGeometryNativemN3sce11playstation4core3Ime8ImeCaretE +_Z26VideoPlayerVcs_IsBufferingi +_Z26scePlayGoDevAddMappingInfoPKcmt +_Z26sceRazorGpuThreadTraceInitP28SceRazorGpuThreadTraceParams +_Z26sceRazorGpuThreadTraceSavePKc +_Z26sceRazorGpuThreadTraceStopPN3sce3Gnm17DrawCommandBufferE +_Z26sceRazorGpuThreadTraceStopPN3sce3Gnm21DispatchCommandBufferE +_Z27Ime_DicDeleteUserDicsNativei +_Z27SoundPlayer_MoveSurroundPanifhfd +_Z27VideoPlayerVcs_SetLoopRangeimm +_Z27sceMatReleaseFlexibleMemoryPKvm +_Z27sceRazorGpuThreadTraceResetv +_Z27sceRazorGpuThreadTraceStartPN3sce3Gnm17DrawCommandBufferE +_Z27sceRazorGpuThreadTraceStartPN3sce3Gnm21DispatchCommandBufferE +_Z27sendIpmiInvokeSyncMethodCmdiiiiPKN4IPMI8DataInfoEPKNS_10BufferInfoEib +_Z27sendIpmiInvokeSyncMethodResiiiiPKN4IPMI10BufferInfoEb +_Z28Ime_DicDeleteLearnDicsNativei +_Z28SoundPlayer_PauseSurroundPanid +_Z28checkAttributeNameDuplicatesmPN3sce7Toolkit2NP2V28Matching9AttributeE +_Z28sceMatAgcRegisterGdsResourcemmjmPKcjm +_Z28scePlayGoDevGetHashTableInfoP25ScePlayGoDevHashTableInfo +_Z28scePlayGoDevReleaseHashTablev +_Z28scePlayGoEmuFsGetChunkStatustPtPh +_Z28sendIpmiInvokeAsyncMethodCmdiiiiijmPKN4IPMI8DataInfoEib +_Z28sendIpmiInvokeAsyncMethodResiiiiiPKN4IPMI8DataInfoEb +_Z29PsmGraphicsGetGraphicsContextv +_Z29Sound_CreateSurroundPanPlayeriPi +_Z29scePlayGoEmuFsGetChunkNumListPKcmtPtS1_ +_Z30Camera_IsCameraConnectedNativeiPb +_Z30VideoPlayerVcs_CancelLoopRangei +_Z30receiveIpmiInvokeSyncMethodResiPiPN4IPMI10BufferInfoEjb +_Z30sceRazorGpuThreadTraceShutdownv +_Z31Ime_SetSelectRectGeometryNativemN3sce11playstation4core3Ime15ImeTextGeometryE +_Z31VideoPlayerVcs_GetLastErrorCodei +_Z31sceRazorGpuThreadTracePopMarkerPN3sce3Gnm17DrawCommandBufferE +_Z32Ime_SetPreeditRectGeometryNativemN3sce11playstation4core3Ime15ImeTextGeometryE +_Z32SoundPlayer_MoveSurroundPanAngleifhd +_Z32VideoPlayerVcs_UpdatePlayerStatei +_Z32sceGpuDebuggerRegisterShaderCodePKN3sce3Gnm16CsStageRegistersEjPKc +_Z32sceGpuDebuggerRegisterShaderCodePKN3sce3Gnm16EsStageRegistersEjPKc +_Z32sceGpuDebuggerRegisterShaderCodePKN3sce3Gnm16GsStageRegistersEjPKc +_Z32sceGpuDebuggerRegisterShaderCodePKN3sce3Gnm16HsStageRegistersEjPKc +_Z32sceGpuDebuggerRegisterShaderCodePKN3sce3Gnm16LsStageRegistersEjPKc +_Z32sceGpuDebuggerRegisterShaderCodePKN3sce3Gnm16PsStageRegistersEjPKc +_Z32sceGpuDebuggerRegisterShaderCodePKN3sce3Gnm16VsStageRegistersEjPKc +_Z32sceRazorGpuThreadTracePushMarkerPN3sce3Gnm17DrawCommandBufferEPKc +_Z32sceRazorGpuThreadTracePushMarkerPN3sce3Gnm17DrawCommandBufferEPKcj +_Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm13CbPerfCounterE20SceRazorGpuBroadcast +_Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm13CpPerfCounterE +_Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm13DbPerfCounterE20SceRazorGpuBroadcast +_Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm13IaPerfCounterE +_Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm13SxPerfCounterE20SceRazorGpuBroadcast +_Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm13TaPerfCounterE20SceRazorGpuBroadcast +_Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm13TdPerfCounterE20SceRazorGpuBroadcast +_Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm14CpcPerfCounterE +_Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm14CpfPerfCounterE +_Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm14GdsPerfCounterE +_Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm14SpiPerfCounterE20SceRazorGpuBroadcast +_Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm14TcaPerfCounterE +_Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm14TccPerfCounterE +_Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm14TcpPerfCounterE20SceRazorGpuBroadcast +_Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm14TcsPerfCounterE +_Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm14VgtPerfCounterE20SceRazorGpuBroadcast +_Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm15PaScPerfCounterE20SceRazorGpuBroadcast +_Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm15PaSuPerfCounterE20SceRazorGpuBroadcast +_Z34VideoPlayerVcs_GetBufferedPositioniPmS_ +_Z34sceGpuDebuggerUnregisterShaderCodePKN3sce3Gnm16CsStageRegistersE +_Z34sceGpuDebuggerUnregisterShaderCodePKN3sce3Gnm16EsStageRegistersE +_Z34sceGpuDebuggerUnregisterShaderCodePKN3sce3Gnm16GsStageRegistersE +_Z34sceGpuDebuggerUnregisterShaderCodePKN3sce3Gnm16HsStageRegistersE +_Z34sceGpuDebuggerUnregisterShaderCodePKN3sce3Gnm16LsStageRegistersE +_Z34sceGpuDebuggerUnregisterShaderCodePKN3sce3Gnm16PsStageRegistersE +_Z34sceGpuDebuggerUnregisterShaderCodePKN3sce3Gnm16VsStageRegistersE +_Z34scePlayGoEmuFsLoadChunkMappingInfoPvmS_mt +_Z35SoundPlayer_MoveSurroundPanDistanceifd +_Z35scePlayGoDevGenerateKernelHashTablePPvPmS0_S1_ +_Z36Font_NotifySystemConfigurationChangev +_Z36VideoPlayerVcs_GetReadyStateForDebugi +_Z36sceRazorGpuThreadTraceEnableCountersPN3sce3Gnm17DrawCommandBufferE +_Z36sceRazorGpuThreadTraceEnableCountersPN3sce3Gnm21DispatchCommandBufferE +_Z37PsmGraphicsAddPostSwapBuffersCallbackPFvPvES_ +_Z37sceGpuDebuggerEnableTargetSideSupportv +_Z37sceGpuDebuggerRegisterFetchShaderCodePKvjPKc +_Z37sceGpuDebuggerSetGlobalExceptionsMaskj +_Z38NetworkInformation_GetDevPortIPAddressPl +_Z38VideoPlayerVcs_GetNetworkStateForDebugi +_Z38sceGpuDebuggerGetEnabledExceptionsMaskPKN3sce3Gnm16CsStageRegistersEPj +_Z38sceGpuDebuggerGetEnabledExceptionsMaskPKN3sce3Gnm16EsStageRegistersEPj +_Z38sceGpuDebuggerGetEnabledExceptionsMaskPKN3sce3Gnm16GsStageRegistersEPj +_Z38sceGpuDebuggerGetEnabledExceptionsMaskPKN3sce3Gnm16HsStageRegistersEPj +_Z38sceGpuDebuggerGetEnabledExceptionsMaskPKN3sce3Gnm16LsStageRegistersEPj +_Z38sceGpuDebuggerGetEnabledExceptionsMaskPKN3sce3Gnm16PsStageRegistersEPj +_Z38sceGpuDebuggerGetEnabledExceptionsMaskPKN3sce3Gnm16VsStageRegistersEPj +_Z38sceGpuDebuggerIsGpuDebuggingInProgressv +_Z38sceGpuDebuggerSetEnabledExceptionsMaskPN3sce3Gnm16CsStageRegistersEj +_Z38sceGpuDebuggerSetEnabledExceptionsMaskPN3sce3Gnm16EsStageRegistersEj +_Z38sceGpuDebuggerSetEnabledExceptionsMaskPN3sce3Gnm16GsStageRegistersEj +_Z38sceGpuDebuggerSetEnabledExceptionsMaskPN3sce3Gnm16HsStageRegistersEj +_Z38sceGpuDebuggerSetEnabledExceptionsMaskPN3sce3Gnm16LsStageRegistersEj +_Z38sceGpuDebuggerSetEnabledExceptionsMaskPN3sce3Gnm16PsStageRegistersEj +_Z38sceGpuDebuggerSetEnabledExceptionsMaskPN3sce3Gnm16VsStageRegistersEj +_Z39sceGpuDebuggerUnregisterFetchShaderCodePKv +_Z40PsmGraphicsRemovePostSwapBuffersCallbackj +_Z42SystemParameters_GetSystemPadButtonMeaningRi +_Z42SystemParameters_SetSystemPadButtonMeaningi +_Z43sceGpuDebuggerSetShaderRegistratationBufferPvj +_Z5dummyv +_Z7readAlliPvm +_Z8writeAlliPKvm +_ZGVNSt10moneypunctIcLb0EE2idE +_ZGVNSt10moneypunctIcLb1EE2idE +_ZGVNSt10moneypunctIwLb0EE2idE +_ZGVNSt10moneypunctIwLb1EE2idE +_ZGVNSt14_Error_objectsIiE14_System_objectE +_ZGVNSt14_Error_objectsIiE15_Generic_objectE +_ZGVNSt14_Error_objectsIiE16_Iostream_objectE +_ZGVNSt20_Future_error_objectIiE14_Future_objectE +_ZGVNSt7codecvtIcc9_MbstatetE2idE +_ZGVNSt7collateIcE2idE +_ZGVNSt7collateIwE2idE +_ZGVNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE +_ZGVNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE +_ZGVNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE +_ZGVNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE +_ZGVNSt8messagesIcE2idE +_ZGVNSt8messagesIwE2idE +_ZGVNSt8numpunctIcE2idE +_ZGVNSt8numpunctIwE2idE +_ZGVNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE +_ZGVNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE +_ZGVNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE +_ZGVNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE +_ZGVNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE +_ZGVNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE +_ZGVNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE +_ZGVNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE +_ZGVZL14report_failure19_Unwind_Reason_CodePN10__cxxabiv115__cxa_exceptionEE4e_ti +_ZGVZNSt13basic_filebufIcSt11char_traitsIcEE5_InitEP7__sFILENS2_7_InitflEE7_Stinit +_ZGVZNSt13basic_filebufIwSt11char_traitsIwEE5_InitEP7__sFILENS2_7_InitflEE7_Stinit +_ZGVZNSt6locale5_InitEvE14classic_locimp +_ZL10ThreadInfo +_ZL10_new_array +_ZL10parse_lsdaP15_Unwind_ContextPh +_ZL10read_valuecPPh +_ZL11_sceLibcNewm +_ZL11tidy_globalv +_ZL12_new_nothrow +_ZL12alloc_or_diem +_ZL12ext_once_mtx +_ZL13_delete_array +_ZL13global_locale +_ZL14_sceLibcDeletePv +_ZL14ext_once_state +_ZL14free_exceptionPc +_ZL14init_ext_mutexv +_ZL14report_failure19_Unwind_Reason_CodePN10__cxxabiv115__cxa_exceptionE +_ZL15_delete_nothrow +_ZL15throw_exceptionPN10__cxxabiv115__cxa_exceptionE +_ZL16_sceLibcNewArraym +_ZL16buffer_allocated +_ZL16emergency_buffer +_ZL16terminateHandler +_ZL17_delete_with_size +_ZL17exception_cleanup19_Unwind_Reason_CodeP17_Unwind_Exception +_ZL17unexpectedHandler +_ZL18_new_array_nothrow +_ZL18_sceLibcNewNothrowmRKSt9nothrow_t +_ZL19_sceLibcDeleteArrayPv +_ZL19check_action_recordP15_Unwind_ContextP13dwarf_eh_lsdaPhPN10__cxxabiv115__cxa_exceptionEPmRPv +_ZL19get_type_info_entryP15_Unwind_ContextP13dwarf_eh_lsdai +_ZL20check_type_signaturePN10__cxxabiv115__cxa_exceptionEPKSt9type_infoRPv +_ZL21_delete_array_nothrow +_ZL21_sceLibcDeleteNothrowPvRKSt9nothrow_t +_ZL21emergency_malloc_lock +_ZL21emergency_malloc_wait +_ZL21thread_local_handlers +_ZL22_sceLibcDeleteWithSizePvm +_ZL22dwarf_eh_find_callsiteP15_Unwind_ContextP13dwarf_eh_lsdaP15dwarf_eh_action +_ZL23_delete_array_with_size +_ZL23_sceLibcNewArrayNothrowmRKSt9nothrow_t +_ZL25_delete_with_size_nothrow +_ZL26_sceLibcDeleteArrayNothrowPvRKSt9nothrow_t +_ZL27_sceLibcDeleteArrayWithSizePvm +_ZL27dependent_exception_cleanup19_Unwind_Reason_CodeP17_Unwind_Exception +_ZL29_sceLibcDeleteWithSizeNothrowPvmRKSt9nothrow_t +_ZL2hc +_ZL31_delete_array_with_size_nothrow +_ZL33__orbis_default_terminate_handlerv +_ZL34__orbis_default_unexpected_handlerv +_ZL34_sceLibcDeleteArrayWithSizeNothrowPvmRKSt9nothrow_t +_ZL4_new +_ZL4msgs +_ZL5codes +_ZL5traceP15_Unwind_ContextPv +_ZL7_delete +_ZN10Deprecated11ScriptValueC1ERKS0_ +_ZN10Deprecated11ScriptValueC1ERN3JSC2VMENS1_7JSValueE +_ZN10Deprecated11ScriptValueC1Ev +_ZN10Deprecated11ScriptValueC2ERKS0_ +_ZN10Deprecated11ScriptValueC2ERN3JSC2VMENS1_7JSValueE +_ZN10Deprecated11ScriptValueC2Ev +_ZN10Deprecated11ScriptValueD1Ev +_ZN10Deprecated11ScriptValueD2Ev +_ZN10Deprecated11ScriptValueaSERKS0_ +_ZN10Deprecated12ScriptObjectC1EPN3JSC14JSGlobalObjectEPNS1_8JSObjectE +_ZN10Deprecated12ScriptObjectC1EPN3JSC9ExecStateEPNS1_8JSObjectE +_ZN10Deprecated12ScriptObjectC2EPN3JSC14JSGlobalObjectEPNS1_8JSObjectE +_ZN10Deprecated12ScriptObjectC2EPN3JSC9ExecStateEPNS1_8JSObjectE +_ZN10Deprecated18ScriptFunctionCall4callERb +_ZN10Deprecated18ScriptFunctionCall4callEv +_ZN10Deprecated18ScriptFunctionCallC1ERKNS_12ScriptObjectERKN3WTF6StringEPFN3JSC7JSValueEPNS8_14JSGlobalObjectES9_RKNS8_8CallDataES9_RKNS8_7ArgListERNS4_8NakedPtrINS8_9ExceptionEEEE +_ZN10Deprecated18ScriptFunctionCallC1ERKNS_12ScriptObjectERKN3WTF6StringEPFN3JSC7JSValueEPNS8_9ExecStateES9_NS8_8CallTypeERKNS8_8CallDataES9_RKNS8_7ArgListERNS4_8NakedPtrINS8_9ExceptionEEEE +_ZN10Deprecated18ScriptFunctionCallC2ERKNS_12ScriptObjectERKN3WTF6StringEPFN3JSC7JSValueEPNS8_14JSGlobalObjectES9_RKNS8_8CallDataES9_RKNS8_7ArgListERNS4_8NakedPtrINS8_9ExceptionEEEE +_ZN10Deprecated18ScriptFunctionCallC2ERKNS_12ScriptObjectERKN3WTF6StringEPFN3JSC7JSValueEPNS8_9ExecStateES9_NS8_8CallTypeERKNS8_8CallDataES9_RKNS8_7ArgListERNS4_8NakedPtrINS8_9ExceptionEEEE +_ZN10Deprecated18ScriptFunctionCallD1Ev +_ZN10Deprecated18ScriptFunctionCallD2Ev +_ZN10Deprecated25ScriptCallArgumentHandler14appendArgumentEN3JSC7JSValueE +_ZN10Deprecated25ScriptCallArgumentHandler14appendArgumentEPKc +_ZN10Deprecated25ScriptCallArgumentHandler14appendArgumentERKN3WTF6StringE +_ZN10Deprecated25ScriptCallArgumentHandler14appendArgumentEb +_ZN10Deprecated25ScriptCallArgumentHandler14appendArgumentEi +_ZN10Deprecated25ScriptCallArgumentHandler14appendArgumentEj +_ZN10Deprecated25ScriptCallArgumentHandler14appendArgumentEl +_ZN10Deprecated25ScriptCallArgumentHandler14appendArgumentEm +_ZN10Deprecated25ScriptCallArgumentHandler14appendArgumentEx +_ZN10Deprecated25ScriptCallArgumentHandlerC1EPN3JSC14JSGlobalObjectE +_ZN10Deprecated25ScriptCallArgumentHandlerC1EPN3JSC9ExecStateE +_ZN10Deprecated25ScriptCallArgumentHandlerC2EPN3JSC14JSGlobalObjectE +_ZN10Deprecated25ScriptCallArgumentHandlerC2EPN3JSC9ExecStateE +_ZN10Deprecated25ScriptCallArgumentHandlerD1Ev +_ZN10Deprecated25ScriptCallArgumentHandlerD2Ev +_ZN10Deprecated25ScriptCallArgumentHandlernaEm +_ZN10Deprecated25ScriptCallArgumentHandlernwEm +_ZN10MonoDomain3GetEv +_ZN10MonoDomain7GetRootEv +_ZN10MsvUpdater10InitializeEv +_ZN10MsvUpdater11getFileSizeEmPl +_ZN10MsvUpdater11getFilenameEmPc +_ZN10MsvUpdater13UpdateContentEPK18MmsFileUpdateParam +_ZN10MsvUpdater13getCurrentValEv +_ZN10MsvUpdater9getIsMSNVEmPb +_ZN10MsvUpdaterC1Ev +_ZN10MsvUpdaterC2Ev +_ZN10MsvUpdaterD0Ev +_ZN10MsvUpdaterD1Ev +_ZN10MsvUpdaterD2Ev +_ZN10__cxxabiv116__enum_type_infoD0Ev +_ZN10__cxxabiv116__enum_type_infoD1Ev +_ZN10__cxxabiv116__enum_type_infoD2Ev +_ZN10__cxxabiv117__array_type_infoD0Ev +_ZN10__cxxabiv117__array_type_infoD1Ev +_ZN10__cxxabiv117__array_type_infoD2Ev +_ZN10__cxxabiv117__class_type_infoD0Ev +_ZN10__cxxabiv117__class_type_infoD1Ev +_ZN10__cxxabiv117__class_type_infoD2Ev +_ZN10__cxxabiv117__pbase_type_infoD0Ev +_ZN10__cxxabiv117__pbase_type_infoD1Ev +_ZN10__cxxabiv117__pbase_type_infoD2Ev +_ZN10__cxxabiv119__pointer_type_infoD0Ev +_ZN10__cxxabiv119__pointer_type_infoD1Ev +_ZN10__cxxabiv119__pointer_type_infoD2Ev +_ZN10__cxxabiv120__function_type_infoD0Ev +_ZN10__cxxabiv120__function_type_infoD1Ev +_ZN10__cxxabiv120__function_type_infoD2Ev +_ZN10__cxxabiv120__si_class_type_infoD0Ev +_ZN10__cxxabiv120__si_class_type_infoD1Ev +_ZN10__cxxabiv120__si_class_type_infoD2Ev +_ZN10__cxxabiv121__vmi_class_type_infoD0Ev +_ZN10__cxxabiv121__vmi_class_type_infoD1Ev +_ZN10__cxxabiv121__vmi_class_type_infoD2Ev +_ZN10__cxxabiv123__fundamental_type_infoD0Ev +_ZN10__cxxabiv123__fundamental_type_infoD1Ev +_ZN10__cxxabiv123__fundamental_type_infoD2Ev +_ZN10__cxxabiv129__pointer_to_member_type_infoD0Ev +_ZN10__cxxabiv129__pointer_to_member_type_infoD1Ev +_ZN10__cxxabiv129__pointer_to_member_type_infoD2Ev +_ZN11GvMp4Parser6Common11Utf16ToUtf8EPKwPSs +_ZN11GvMp4Parser6Common11Utf16ToUtf8EPKwPSsi +_ZN11GvMp4Parser6Common11Utf16ToUtf8ERKSbIwSt11char_traitsIwESaIwEEPSs +_ZN11GvMp4Parser6Common11Utf16ToUtf8ERKSbIwSt11char_traitsIwESaIwEEPSsi +_ZN11GvMp4Parser6Common11Utf8ToUtf16EPKcPSbIwSt11char_traitsIwESaIwEE +_ZN11GvMp4Parser6Common11Utf8ToUtf16EPKcPSbIwSt11char_traitsIwESaIwEEi +_ZN11GvMp4Parser6Common11Utf8ToUtf16ERKSsPSbIwSt11char_traitsIwESaIwEE +_ZN11GvMp4Parser6Common11Utf8ToUtf16ERKSsPSbIwSt11char_traitsIwESaIwEEi +_ZN12Mp4Retriever10GetDbFTypeENS_15mp4DbFieldIdTagE +_ZN12Mp4Retriever10InitializeEv +_ZN12Mp4Retriever10registMetaEjPh +_ZN12Mp4Retriever11byte2bitNumEhhh +_ZN12Mp4Retriever11loadFullBoxEv +_ZN12Mp4Retriever11mp4TimeToTmEmR2tm +_ZN12Mp4Retriever11processMainEv +_ZN12Mp4Retriever11skipBoxBodyEv +_ZN12Mp4Retriever13convertToUtf8EPtmPhmb +_ZN12Mp4Retriever13processEsDescERPhii +_ZN12Mp4Retriever13skipBoxRemainEv +_ZN12Mp4Retriever14mp4DbFieldInfoE +_ZN12Mp4Retriever14processEsdsBoxEv +_ZN12Mp4Retriever14processFreeBoxEv +_ZN12Mp4Retriever14processFtypBoxEv +_ZN12Mp4Retriever14processHdlrBoxEv +_ZN12Mp4Retriever14processLoopBoxEv +_ZN12Mp4Retriever14processMdatBoxEv +_ZN12Mp4Retriever14processMdhdBoxEv +_ZN12Mp4Retriever14processMdiaBoxEv +_ZN12Mp4Retriever14processMetaBoxEv +_ZN12Mp4Retriever14processMetaStrEv +_ZN12Mp4Retriever14processMinfBoxEv +_ZN12Mp4Retriever14processMoovBoxEv +_ZN12Mp4Retriever14processMta2BoxEv +_ZN12Mp4Retriever14processMvhdBoxEv +_ZN12Mp4Retriever14processStblBoxEv +_ZN12Mp4Retriever14processStsdBoxEv +_ZN12Mp4Retriever14processTkhdBoxEv +_ZN12Mp4Retriever14processTrakBoxEv +_ZN12Mp4Retriever14processUdtaBoxEv +_ZN12Mp4Retriever14processUuidBoxEv +_ZN12Mp4Retriever15processMetaAlbmEv +_ZN12Mp4Retriever15processMetaYearEv +_ZN12Mp4Retriever18m_mpegSearchStatusE +_ZN12Mp4Retriever18processMetaStrMainEjPh +_ZN12Mp4Retriever18processUdtaBoxMainEv +_ZN12Mp4Retriever18releaseFileMetaValEv +_ZN12Mp4Retriever20getSizeConvertToUtf8EPtmb +_ZN12Mp4Retriever20processUuidId3v23BoxEv +_ZN12Mp4Retriever21m_dbFieldInfoInitFlagE +_ZN12Mp4Retriever7ProcessEPKc +_ZN12Mp4Retriever7loadBoxEv +_ZN12Mp4Retriever8FinalizeEv +_ZN12Mp4Retriever8GetDbFIdENS_15mp4DbFieldIdTagE +_ZN12Mp4Retriever8GetInt16EPh +_ZN12Mp4Retriever8readFileEjPv +_ZN12Mp4Retriever8seekFileElb +_ZN12Mp4Retriever9ExtractI2EPh +_ZN12Mp4Retriever9ExtractI4EPh +_ZN12Mp4Retriever9ExtractI8EPh +_ZN12Mp4Retriever9metaIdTblE +_ZN12Mp4RetrieverC1Ev +_ZN12Mp4RetrieverC2Ev +_ZN12Mp4RetrieverD0Ev +_ZN12Mp4RetrieverD1Ev +_ZN12Mp4RetrieverD2Ev +_ZN12video_parser10VpCeilLog2Ej +_ZN12video_parser10cVideoPath10GetDirNameEi +_ZN12video_parser10cVideoPath10GetDirNameEv +_ZN12video_parser10cVideoPath10GetExtNameEv +_ZN12video_parser10cVideoPath10InitializeEv +_ZN12video_parser10cVideoPath11GetDirLevelEv +_ZN12video_parser10cVideoPath11GetFileNameEv +_ZN12video_parser10cVideoPath11GetPathNameEv +_ZN12video_parser10cVideoPath11sExtentListE +_ZN12video_parser10cVideoPath13GetDeviceNameEv +_ZN12video_parser10cVideoPath13sNetProtocolsE +_ZN12video_parser10cVideoPath14CreatePathNameEPKcS2_PPc +_ZN12video_parser10cVideoPath14IsValidContentEv +_ZN12video_parser10cVideoPath19GetPathNameOriginalEv +_ZN12video_parser10cVideoPath21StandardizePathStringEPcPS1_ +_ZN12video_parser10cVideoPath8FinalizeEv +_ZN12video_parser10cVideoPathC1EPKc +_ZN12video_parser10cVideoPathC2EPKc +_ZN12video_parser10cVideoPathD0Ev +_ZN12video_parser10cVideoPathD1Ev +_ZN12video_parser10cVideoPathD2Ev +_ZN12video_parser12cVpFileCache10initializeEPKcbi +_ZN12video_parser12cVpFileCache10validCacheEx +_ZN12video_parser12cVpFileCache11updateCacheEPNS0_10_CacheInfoEx +_ZN12video_parser12cVpFileCache3RunEv +_ZN12video_parser12cVpFileCache5freadEPvyPy +_ZN12video_parser12cVpFileCache5fseekExi +_ZN12video_parser12cVpFileCache5fsizeEPy +_ZN12video_parser12cVpFileCache5ftellEPy +_ZN12video_parser12cVpFileCache7getNextEPNS0_10_CacheInfoE +_ZN12video_parser12cVpFileCache7stopRunEv +_ZN12video_parser12cVpFileCache8finalizeEv +_ZN12video_parser13_VpBitreadSetEPNS_21VpMpegvideoAvcBitreadEPhi +_ZN12video_parser13cVideoMetaMP410getGPSInfoEPNS_11VpGPSInfo_tE +_ZN12video_parser13cVideoMetaMP410initializeEv +_ZN12video_parser13cVideoMetaMP411_initializeEv +_ZN12video_parser13cVideoMetaMP411getMetadataENS_12VP_META_TYPEENS_9VP_LANG_eENS_15VP_SEARCH_OPT_eEjPNS_12VpMetadata_tE +_ZN12video_parser13cVideoMetaMP411getMetadataENS_12VP_META_TYPEEjjPNS_12VpMetadata_tE +_ZN12video_parser13cVideoMetaMP413getChapterNumERjPj +_ZN12video_parser13cVideoMetaMP414getChapterInfoERjPNS_11VpChapter_tE +_ZN12video_parser13cVideoMetaMP415getSeasonNumberEPi +_ZN12video_parser13cVideoMetaMP415setVideoContentEPNS_13iVideoContentE +_ZN12video_parser13cVideoMetaMP416getEpisodeNumberEPi +_ZN12video_parser13cVideoMetaMP416getThumbnailInfoENS_9VP_LANG_eENS_15VP_SEARCH_OPT_eEPNS_18VpThumbnailInfo_t_E +_ZN12video_parser13cVideoMetaMP416getThumbnailInfoEjPNS_18VpThumbnailInfo_t_E +_ZN12video_parser13cVideoMetaMP417getThumbnailImageENS_9VP_LANG_eENS_15VP_SEARCH_OPT_eEjPh +_ZN12video_parser13cVideoMetaMP417getThumbnailImageEjjPh +_ZN12video_parser13cVideoMetaMP417getTimeZoneOffsetEPs +_ZN12video_parser13cVideoMetaMP418getMetadataBufSizeENS_12VP_META_TYPEENS_9VP_LANG_eENS_15VP_SEARCH_OPT_eEPj +_ZN12video_parser13cVideoMetaMP418getMetadataBufSizeENS_12VP_META_TYPEEjPj +_ZN12video_parser13cVideoMetaMP419_readThumbnailImageEPcxjPh +_ZN12video_parser13cVideoMetaMP428_createExternalThumbnailInfoEPNS0_18VpThumbnailInfoMP4E +_ZN12video_parser13cVideoMetaMP48finalizeEv +_ZN12video_parser13cVideoMetaMP48getTitleENS_9VP_LANG_eEjNS_15VP_SEARCH_OPT_eEPS1_Pv +_ZN12video_parser13cVideoMetaMP49_finalizeEv +_ZN12video_parser13cVideoMetaMP4C1EPNS_18cMp4FFLHndlManagerE +_ZN12video_parser13cVideoMetaMP4C2EPNS_18cMp4FFLHndlManagerE +_ZN12video_parser13cVideoMetaMP4D0Ev +_ZN12video_parser13cVideoMetaMP4D1Ev +_ZN12video_parser13cVideoMetaMP4D2Ev +_ZN12video_parser13cVideoMetaVWG10getGPSInfoEPNS_11VpGPSInfo_tE +_ZN12video_parser13cVideoMetaVWG10initializeEv +_ZN12video_parser13cVideoMetaVWG11getMetadataENS_12VP_META_TYPEENS_9VP_LANG_eENS_15VP_SEARCH_OPT_eEjPNS_12VpMetadata_tE +_ZN12video_parser13cVideoMetaVWG11getMetadataENS_12VP_META_TYPEEjjPNS_12VpMetadata_tE +_ZN12video_parser13cVideoMetaVWG12_getMetadataENS_12VP_META_TYPEENS_9VP_LANG_eENS_15VP_SEARCH_OPT_eEPPNS_12VpMetadata_tE +_ZN12video_parser13cVideoMetaVWG12_getMetadataENS_12VP_META_TYPEEjPPNS_12VpMetadata_tE +_ZN12video_parser13cVideoMetaVWG12_getPriorityENS_9VP_LANG_eES1_ +_ZN12video_parser13cVideoMetaVWG13_changeEndianENS_12VP_META_TYPEEPvj +_ZN12video_parser13cVideoMetaVWG13_readMetadataEv +_ZN12video_parser13cVideoMetaVWG13getChapterNumERjPj +_ZN12video_parser13cVideoMetaVWG14getArtworkInfoEjPNS_18VpThumbnailInfo_t_E +_ZN12video_parser13cVideoMetaVWG14getChapterInfoERjPNS_11VpChapter_tE +_ZN12video_parser13cVideoMetaVWG15convMetaEncTypeEt +_ZN12video_parser13cVideoMetaVWG15getArtworkImageEjjPh +_ZN12video_parser13cVideoMetaVWG15getSeasonNumberEPi +_ZN12video_parser13cVideoMetaVWG15setVideoContentEPNS_13iVideoContentE +_ZN12video_parser13cVideoMetaVWG16getEpisodeNumberEPi +_ZN12video_parser13cVideoMetaVWG16getThumbnailInfoENS_9VP_LANG_eENS_15VP_SEARCH_OPT_eEPNS_18VpThumbnailInfo_t_E +_ZN12video_parser13cVideoMetaVWG16getThumbnailInfoEjPNS_18VpThumbnailInfo_t_E +_ZN12video_parser13cVideoMetaVWG17getThumbnailImageENS_9VP_LANG_eENS_15VP_SEARCH_OPT_eEjPh +_ZN12video_parser13cVideoMetaVWG17getTimeZoneOffsetEPs +_ZN12video_parser13cVideoMetaVWG18_createArtworkInfoENS_9VP_LANG_eENS_15VP_SEARCH_OPT_eEPNS_13cVideoMetaMP418VpThumbnailInfoMP4E +_ZN12video_parser13cVideoMetaVWG18_createArtworkInfoEjPNS_13cVideoMetaMP418VpThumbnailInfoMP4E +_ZN12video_parser13cVideoMetaVWG18_createChapterInfoERj +_ZN12video_parser13cVideoMetaVWG18getMetadataBufSizeENS_12VP_META_TYPEENS_9VP_LANG_eENS_15VP_SEARCH_OPT_eEPj +_ZN12video_parser13cVideoMetaVWG18getMetadataBufSizeENS_12VP_META_TYPEEjPj +_ZN12video_parser13cVideoMetaVWG19_setArtworkSizeInfoEPNS_12VpMetadata_tEPNS_13cVideoMetaMP418VpThumbnailInfoMP4E +_ZN12video_parser13cVideoMetaVWG20_changeEndianArtworkEPvj +_ZN12video_parser13cVideoMetaVWG20_changeEndianChapterEPvj +_ZN12video_parser13cVideoMetaVWG28_createInternalThumbnailInfoEPNS_13cVideoMetaMP418VpThumbnailInfoMP4E +_ZN12video_parser13cVideoMetaVWG8finalizeEv +_ZN12video_parser13cVideoMetaVWG8getTitleENS_9VP_LANG_eEjNS_15VP_SEARCH_OPT_eEPS1_Pv +_ZN12video_parser13cVideoMetaVWGC1EPNS_18cMp4FFLHndlManagerE +_ZN12video_parser13cVideoMetaVWGC2EPNS_18cMp4FFLHndlManagerE +_ZN12video_parser13cVideoMetaVWGD0Ev +_ZN12video_parser13cVideoMetaVWGD1Ev +_ZN12video_parser13cVideoMetaVWGD2Ev +_ZN12video_parser13cVideoPathEts11sExtentListE +_ZN12video_parser13cVideoPathEtsC1EPKc +_ZN12video_parser13cVideoPathEtsC2EPKc +_ZN12video_parser13cVideoPathM4v11sExtentListE +_ZN12video_parser13cVideoPathM4vC1EPKc +_ZN12video_parser13cVideoPathM4vC2EPKc +_ZN12video_parser13cVideoPathMgv10GetEKBNameEPci +_ZN12video_parser13cVideoPathMgv10InitializeEv +_ZN12video_parser13cVideoPathMgv11sExtentListE +_ZN12video_parser13cVideoPathMgv14GetLicenseNameEPc +_ZN12video_parser13cVideoPathMgv14GetMaclistNameEPc +_ZN12video_parser13cVideoPathMgv14GetMaclistNameEPcc +_ZN12video_parser13cVideoPathMgv16GetMaclistSuffixEv +_ZN12video_parser13cVideoPathMgv16SetMaclistSuffixEc +_ZN12video_parser13cVideoPathMgv17GetLicenseEKBNameEPc +_ZN12video_parser13cVideoPathMgv17GetMaclistEKBNameEPc +_ZN12video_parser13cVideoPathMgv17GetNewMaclistNameEPc +_ZN12video_parser13cVideoPathMgv17GetOldMaclistNameEPc +_ZN12video_parser13cVideoPathMgv20GetBackupLicenseNameEPc +_ZN12video_parser13cVideoPathMgv20GetLicenseEKBVersionEv +_ZN12video_parser13cVideoPathMgv20GetMaclistEKBVersionEv +_ZN12video_parser13cVideoPathMgv20SetLicenseEKBVersionEi +_ZN12video_parser13cVideoPathMgv20SetMaclistEKBVersionEi +_ZN12video_parser13cVideoPathMgv8FinalizeEv +_ZN12video_parser13cVideoPathMgvC1EPKc +_ZN12video_parser13cVideoPathMgvC2EPKc +_ZN12video_parser13cVideoPathMgvD0Ev +_ZN12video_parser13cVideoPathMgvD1Ev +_ZN12video_parser13cVideoPathMgvD2Ev +_ZN12video_parser13cVideoPathMnv11sExtentListE +_ZN12video_parser13cVideoPathMnvC1EPKc +_ZN12video_parser13cVideoPathMnvC2EPKc +_ZN12video_parser13cVideoPathMp411sExtentListE +_ZN12video_parser13cVideoPathMp4C1EPKc +_ZN12video_parser13cVideoPathMp4C2EPKc +_ZN12video_parser13cVideoPathMsv10InitializeEv +_ZN12video_parser13cVideoPathMsv11sExtentListE +_ZN12video_parser13cVideoPathMsv8FinalizeEv +_ZN12video_parser13cVideoPathMsvC1EPKc +_ZN12video_parser13cVideoPathMsvC2EPKc +_ZN12video_parser13cVideoPathMsvD0Ev +_ZN12video_parser13cVideoPathMsvD1Ev +_ZN12video_parser13cVideoPathMsvD2Ev +_ZN12video_parser14cVideoOperator18getRelatedFileNameEPKcPPc +_ZN12video_parser14cVideoOperator18getRelatedFileNameEiPPc +_ZN12video_parser14cVideoOperator22getRelativeFileExtListEv +_ZN12video_parser14cVideoOperator23getRelativeFileExtCountEv +_ZN12video_parser14cVideoOperatorC1EPKc +_ZN12video_parser14cVideoOperatorC1Ev +_ZN12video_parser14cVideoOperatorC2EPKc +_ZN12video_parser14cVideoOperatorC2Ev +_ZN12video_parser14cVideoOperatorD0Ev +_ZN12video_parser14cVideoOperatorD1Ev +_ZN12video_parser14cVideoOperatorD2Ev +_ZN12video_parser16cVideoContentMp410initializeEv +_ZN12video_parser16cVideoContentMp414getDrmInstanceEPPNS_9iVideoDrmENS1_16InitializeMode_eE +_ZN12video_parser16cVideoContentMp414getFflInstanceEPPv +_ZN12video_parser16cVideoContentMp415getMetaInstanceEPPNS_10iVideoMetaE +_ZN12video_parser16cVideoContentMp418releaseDrmInstanceEPNS_9iVideoDrmE +_ZN12video_parser16cVideoContentMp419getOperatorInstanceEPPNS_14iVideoOperatorE +_ZN12video_parser16cVideoContentMp419getProfilerInstanceEPPNS_14iVideoProfilerE +_ZN12video_parser16cVideoContentMp419releaseMetaInstanceEPNS_10iVideoMetaE +_ZN12video_parser16cVideoContentMp423releaseOperatorInstanceEPNS_14iVideoOperatorE +_ZN12video_parser16cVideoContentMp423releaseProfilerInstanceEPNS_14iVideoProfilerE +_ZN12video_parser16cVideoContentMp46_brandEv +_ZN12video_parser16cVideoContentMp48finalizeEv +_ZN12video_parser16cVideoContentMp4C1EPNS_18cMp4FFLHndlManagerE +_ZN12video_parser16cVideoContentMp4C2EPNS_18cMp4FFLHndlManagerE +_ZN12video_parser16cVideoContentMp4D0Ev +_ZN12video_parser16cVideoContentMp4D1Ev +_ZN12video_parser16cVideoContentMp4D2Ev +_ZN12video_parser17_VpBitreadReadBitEPNS_21VpMpegvideoAvcBitreadEiPvi +_ZN12video_parser17cTsFFLHndlManager10initializeEv +_ZN12video_parser17cTsFFLHndlManager8finalizeEv +_ZN12video_parser17cTsFFLHndlManagerC1EPKc +_ZN12video_parser17cTsFFLHndlManagerC2EPKc +_ZN12video_parser17cTsFFLHndlManagerD1Ev +_ZN12video_parser17cTsFFLHndlManagerD2Ev +_ZN12video_parser17cVideoOperatorEtsC1EPKc +_ZN12video_parser17cVideoOperatorEtsC2EPKc +_ZN12video_parser17cVideoOperatorEtsD0Ev +_ZN12video_parser17cVideoOperatorEtsD1Ev +_ZN12video_parser17cVideoOperatorEtsD2Ev +_ZN12video_parser17cVideoOperatorM4vC1EPKc +_ZN12video_parser17cVideoOperatorM4vC2EPKc +_ZN12video_parser17cVideoOperatorM4vD0Ev +_ZN12video_parser17cVideoOperatorM4vD1Ev +_ZN12video_parser17cVideoOperatorM4vD2Ev +_ZN12video_parser17cVideoOperatorMgvC1EPKc +_ZN12video_parser17cVideoOperatorMgvC2EPKc +_ZN12video_parser17cVideoOperatorMnvC1EPKc +_ZN12video_parser17cVideoOperatorMnvC2EPKc +_ZN12video_parser17cVideoOperatorMnvD0Ev +_ZN12video_parser17cVideoOperatorMnvD1Ev +_ZN12video_parser17cVideoOperatorMnvD2Ev +_ZN12video_parser17cVideoOperatorMp4C1EPKc +_ZN12video_parser17cVideoOperatorMp4C2EPKc +_ZN12video_parser17cVideoOperatorMp4D0Ev +_ZN12video_parser17cVideoOperatorMp4D1Ev +_ZN12video_parser17cVideoOperatorMp4D2Ev +_ZN12video_parser17cVideoProfilerMp410initializeEv +_ZN12video_parser17cVideoProfilerMp411_addElementERNS_7cVpListINS_13VpMediaInfo_tEjEERS2_ +_ZN12video_parser17cVideoProfilerMp412_createMediaEjMS0_FNS_11VP_RESULT_eEjPNS_13VpMediaInfo_tEEMNS_18cProfileCheckerMp4EFbRKS2_EMS0_FS1_S3_ERNS_7cVpListIS2_jEE +_ZN12video_parser17cVideoProfilerMp412getAudioInfoEjPPNS_13VpMediaInfo_tE +_ZN12video_parser17cVideoProfilerMp412getMediaInfoEjPPNS_13VpMediaInfo_tE +_ZN12video_parser17cVideoProfilerMp412getMovieInfoEPPNS_13VpMovieInfo_tE +_ZN12video_parser17cVideoProfilerMp412getVideoInfoEjPPNS_13VpMediaInfo_tE +_ZN12video_parser17cVideoProfilerMp415_createMediaSubEj +_ZN12video_parser17cVideoProfilerMp415getSubtitleInfoEjPPNS_13VpMediaInfo_tE +_ZN12video_parser17cVideoProfilerMp416_createMediaListEv +_ZN12video_parser17cVideoProfilerMp416_createMovieInfoEv +_ZN12video_parser17cVideoProfilerMp416getThumbnailInfoEjPPNS_13VpMediaInfo_tE +_ZN12video_parser17cVideoProfilerMp417_createAudioCodecEjPNS_13VpMediaInfo_tE +_ZN12video_parser17cVideoProfilerMp417_createVideoCodecEjPNS_13VpMediaInfo_tE +_ZN12video_parser17cVideoProfilerMp417_getAudioCodecAACER32ff4_play_audio_sample_entry_infoPvPNS_17VpAudioCodecAAC_tE +_ZN12video_parser17cVideoProfilerMp417_getAudioCodecVWGEPNS_13VpMediaInfo_tE +_ZN12video_parser17cVideoProfilerMp417_getVideoCodecAVCER33ff4_play_visual_sample_entry_infoPvPNS_17VpVideoCodecAVC_tE +_ZN12video_parser17cVideoProfilerMp417_getVideoCodecMp4ER33ff4_play_visual_sample_entry_infoPvPNS_17VpVideoCodecMP4_tE +_ZN12video_parser17cVideoProfilerMp417_getVideoCodecVWGEPNS_13VpMediaInfo_tE +_ZN12video_parser17cVideoProfilerMp417_releaseMediaListERNS_7cVpListINS_13VpMediaInfo_tEjEEMS0_FNS_11VP_RESULT_eEPS2_E +_ZN12video_parser17cVideoProfilerMp417getMediaInfoCountENS_11MediaType_eEPj +_ZN12video_parser17cVideoProfilerMp418_createMediaCommonEjPNS_13VpMediaInfo_tE +_ZN12video_parser17cVideoProfilerMp418_getFileProfileVWGEP17ff4_com_fprf_info +_ZN12video_parser17cVideoProfilerMp418_releaseAudioCodecEPNS_13VpMediaInfo_tE +_ZN12video_parser17cVideoProfilerMp418_releaseVideoCodecEPNS_13VpMediaInfo_tE +_ZN12video_parser17cVideoProfilerMp418hasProtectedStreamEv +_ZN12video_parser17cVideoProfilerMp418setDefaultLanguageENS_11MediaType_eENS_9VP_LANG_eE +_ZN12video_parser17cVideoProfilerMp419_additionalCheckAACERNS_7cVpListINS_13VpMediaInfo_tEjEERNS0_13VpTrackInfo_tE +_ZN12video_parser17cVideoProfilerMp419_releaseMediaCommonEPNS_13VpMediaInfo_tE +_ZN12video_parser17cVideoProfilerMp420_createSubtitleCodecEjPNS_13VpMediaInfo_tE +_ZN12video_parser17cVideoProfilerMp420_createThumbnailInfoEjPNS_13VpMediaInfo_tE +_ZN12video_parser17cVideoProfilerMp420getMediatimeByOffsetExjjPy +_ZN12video_parser17cVideoProfilerMp420isCompatibleBrandVWGEj +_ZN12video_parser17cVideoProfilerMp421_isValidSubtitleTrackEjRKNS_13VpMediaInfo_tES3_ +_ZN12video_parser17cVideoProfilerMp421_releaseSubtitleCodecEPNS_13VpMediaInfo_tE +_ZN12video_parser17cVideoProfilerMp421_releaseThumbnailInfoEPNS_13VpMediaInfo_tE +_ZN12video_parser17cVideoProfilerMp422_determineDefaultTrackERNS_7cVpListINS_13VpMediaInfo_tEjEERNS0_13VpTrackInfo_tEMS0_FNS_11VP_RESULT_eEPS2_E +_ZN12video_parser17cVideoProfilerMp48finalizeEv +_ZN12video_parser17cVideoProfilerMp4C1EPNS_18cMp4FFLHndlManagerE +_ZN12video_parser17cVideoProfilerMp4C2EPNS_18cMp4FFLHndlManagerE +_ZN12video_parser17cVideoProfilerMp4D0Ev +_ZN12video_parser17cVideoProfilerMp4D1Ev +_ZN12video_parser17cVideoProfilerMp4D2Ev +_ZN12video_parser18cMp4FFLHndlManager10_checkinitEv +_ZN12video_parser18cMp4FFLHndlManager10initializeEjj +_ZN12video_parser18cMp4FFLHndlManager10initializeEv +_ZN12video_parser18cMp4FFLHndlManager10unuseTrackEj +_ZN12video_parser18cMp4FFLHndlManager12lockPlayHndlEv +_ZN12video_parser18cMp4FFLHndlManager13getFF4ComHndlEv +_ZN12video_parser18cMp4FFLHndlManager14getFF4DrefHndlEj +_ZN12video_parser18cMp4FFLHndlManager14getFF4ElstHndlEj +_ZN12video_parser18cMp4FFLHndlManager14getFF4MtdfHndlEj +_ZN12video_parser18cMp4FFLHndlManager14getFF4MtdtHndlEj +_ZN12video_parser18cMp4FFLHndlManager14getFF4MtsmHndlEv +_ZN12video_parser18cMp4FFLHndlManager14getFF4PlayHndlEv +_ZN12video_parser18cMp4FFLHndlManager14getFF4StsdHndlEj +_ZN12video_parser18cMp4FFLHndlManager14getFF4TrefHndlEjj +_ZN12video_parser18cMp4FFLHndlManager14unlockPlayHndlEv +_ZN12video_parser18cMp4FFLHndlManager16_adjustTrackInfoEjb +_ZN12video_parser18cMp4FFLHndlManager17FF4ErrorToVPErrorE11ff4_retcode +_ZN12video_parser18cMp4FFLHndlManager18getFF4OdSampleHndlEjj +_ZN12video_parser18cMp4FFLHndlManager18getFF4UuidPrivHndlEyy +_ZN12video_parser18cMp4FFLHndlManager20getFF4UBoxSearchHndlEyy +_ZN12video_parser18cMp4FFLHndlManager8finalizeEv +_ZN12video_parser18cMp4FFLHndlManager8useTrackEj +_ZN12video_parser18cMp4FFLHndlManagerC1EPKc +_ZN12video_parser18cMp4FFLHndlManagerC2EPKc +_ZN12video_parser18cMp4FFLHndlManagerD1Ev +_ZN12video_parser18cMp4FFLHndlManagerD2Ev +_ZN12video_parser18cProfileCheckerMp410initializeEPNS_18cMp4FFLHndlManagerE +_ZN12video_parser18cProfileCheckerMp415isPlayableAudioERKNS_13VpMediaInfo_tE +_ZN12video_parser18cProfileCheckerMp415isPlayableVideoERKNS_13VpMediaInfo_tE +_ZN12video_parser18cProfileCheckerMp416_isPlayableMovieEv +_ZN12video_parser18cProfileCheckerMp418isPlayableSubtitleERKNS_13VpMediaInfo_tE +_ZN12video_parser18cProfileCheckerMp419_isPlayableAudioAACERKNS_13VpMediaInfo_tE +_ZN12video_parser18cProfileCheckerMp419_isPlayableVideoAVCERKNS_13VpMediaInfo_tE +_ZN12video_parser18cProfileCheckerMp419_isPlayableVideoMP4ERKNS_13VpMediaInfo_tE +_ZN12video_parser18cProfileCheckerMp419isPlayableThumbnailERKNS_13VpMediaInfo_tE +_ZN12video_parser18cProfileCheckerMp421isPlayableVideoLengthEy +_ZN12video_parser18cProfileCheckerMp424isPlayableVideoHMMPMpeg4ERKNS_13VpMediaInfo_tE +_ZN12video_parser18cProfileCheckerMp48finalizeEv +_ZN12video_parser18cProfileCheckerMp4C1Ev +_ZN12video_parser18cProfileCheckerMp4C2Ev +_ZN12video_parser18cProfileCheckerMp4D1Ev +_ZN12video_parser18cProfileCheckerMp4D2Ev +_ZN12video_parser19_isValidArtworkSizeEj +_ZN12video_parser20cVideoContentFactory17_getContainerTypeEPKcRNS_19VP_CONTAINER_TYPE_eE +_ZN12video_parser20cVideoContentFactory17allocVideoContentEPKcPPNS_13iVideoContentEb +_ZN12video_parser20cVideoContentFactory19releaseVideoContentEPNS_13iVideoContentE +_ZN12video_parser20cVideoContentFactory21_createFFLInstanceMp4EPKcPPvb +_ZN12video_parser20cVideoContentFactory22_createVideoContentMp4EPvPPNS_13iVideoContentE +_ZN12video_parser20cVideoContentFactory22_releaseFFLInstanceMp4EPv +_ZN12video_parser20cVideoContentFactory23_releaseVideoContentMp4EPNS_13iVideoContentE +_ZN12video_parser21MpegvideoAvcParse3DDSEPhiPNS_24SceMpegvideoAvc3DDSParamE +_ZN12video_parser22VpMpegvideoAvcParsePPSEPhiPNS_21VpMpegvideoAvcPPSCtrlE +_ZN12video_parser22VpMpegvideoAvcParseSPSEPhiPNS_21VpMpegvideoAvcSPSCtrlE +_ZN12video_parser23VpMpegvideoMp4aParseDSIEPhiPNS_23VpMpegvideoMp4aDSIParamE +_ZN12video_parser23VpMpegvideoMp4vParseDSIEPhiPNS_23VpMpegvideoMp4vDSIParamE +_ZN12video_parser24_isBestArtworkResolutionEjj +_ZN12video_parser25_isValidArtworkResolutionEjj +_ZN12video_parser26_isBetterArtworkResolutionEjjjj +_ZN12video_parser41VpMpegvideoAvcParsePPS_get_slice_group_idEPNS_21VpMpegvideoAvcPPSCtrlEiPh +_ZN12video_parser44VpMpegvideoAvcParsePPS_get_run_length_minus1EPNS_21VpMpegvideoAvcPPSCtrlEiPj +_ZN12video_parser47VpMpegvideoAvcParseSPS_get_offset_for_ref_frameEPNS_21VpMpegvideoAvcSPSCtrlEiPi +_ZN12video_parser48VpMpegvideoAvcParsePPS_get_top_left_bottom_rightEPNS_21VpMpegvideoAvcPPSCtrlEiPjS2_ +_ZN12video_parser5vpcom10CloseAsyncE +_ZN12video_parser5vpcom10LockCreateEPPN3paf6thread5MutexEy +_ZN12video_parser5vpcom10LockUnlockEPN3paf6thread5MutexE +_ZN12video_parser5vpcom10RtcSetTickEPNS_12_VP_DATETIMEEPK10SceRtcTick +_ZN12video_parser5vpcom10SwapEndianEPhPKhii +_ZN12video_parser5vpcom10_OpenAsyncEPcS1_yPPNS_8_vp_fileEPNS0_23VP_FILE_RESOURCE_STATUSEPvPFNS_11VP_RESULT_eES3_S7_E +_ZN12video_parser5vpcom10_ReadAsyncEPNS_8_vp_fileEPvjPijS3_PFNS_11VP_RESULT_eES2_S3_jS4_S3_E +_ZN12video_parser5vpcom10_WaitAsyncEPNS_8_vp_fileE +_ZN12video_parser5vpcom11AtomicNop64EPy +_ZN12video_parser5vpcom11LockDestroyEPN3paf6thread5MutexE +_ZN12video_parser5vpcom11LwMutexLockEPNS0_11sys_lwmutexEy +_ZN12video_parser5vpcom11Utf16ToUtf8EPKwPSs +_ZN12video_parser5vpcom11Utf16ToUtf8EPKwPSsi +_ZN12video_parser5vpcom11Utf16ToUtf8ERKSbIwSt11char_traitsIwESaIwEEPSs +_ZN12video_parser5vpcom11Utf16ToUtf8ERKSbIwSt11char_traitsIwESaIwEEPSsi +_ZN12video_parser5vpcom11Utf8ToUtf16EPKcPSbIwSt11char_traitsIwESaIwEE +_ZN12video_parser5vpcom11Utf8ToUtf16EPKcPSbIwSt11char_traitsIwESaIwEEi +_ZN12video_parser5vpcom11Utf8ToUtf16ERKSsPSbIwSt11char_traitsIwESaIwEE +_ZN12video_parser5vpcom11Utf8ToUtf16ERKSsPSbIwSt11char_traitsIwESaIwEEi +_ZN12video_parser5vpcom11_CloseAsyncEPNS_8_vp_fileE +_ZN12video_parser5vpcom11_setOpenArgEPcS1_PN3paf9LocalFile7OpenArgEb +_ZN12video_parser5vpcom11initializer22SetGetCommonStringFuncEPFPKwRKiE +_ZN12video_parser5vpcom11string_util7mappingERSt3mapISsSsSt4lessISsESaISt4pairIKSsSsEEERS6_mcc +_ZN12video_parser5vpcom11string_util8ToStringEPKvm +_ZN12video_parser5vpcom11string_util8dissolveERSt4listISsSaISsEERKSsmcc +_ZN12video_parser5vpcom11string_util8tokenizeERSt4listISsSaISsEERKSsmc +_ZN12video_parser5vpcom12UTF8stoSJISsEPKhjPhPj +_ZN12video_parser5vpcom13AtomicStore64EPyy +_ZN12video_parser5vpcom13DirectoryOpenE +_ZN12video_parser5vpcom13LwMutexCreateEPNS0_11sys_lwmutexEPNS0_12lwmutex_attrE +_ZN12video_parser5vpcom13LwMutexUnlockEPNS0_11sys_lwmutexE +_ZN12video_parser5vpcom13UTF16stoUTF8sEPKtjPhPj +_ZN12video_parser5vpcom13UTF8stoUTF16sEPKhjPtPj +_ZN12video_parser5vpcom14DirectoryCloseE +_ZN12video_parser5vpcom14LwMutexDestroyEPNS0_11sys_lwmutexE +_ZN12video_parser5vpcom14LwMutexTryLockEPNS0_11sys_lwmutexE +_ZN12video_parser5vpcom14_DirectoryOpenEPcPPNS_8_vp_fileE +_ZN12video_parser5vpcom15GetCommonStringERKi +_ZN12video_parser5vpcom15GetHandleStatusE +_ZN12video_parser5vpcom15_DirectoryCloseEPNS_8_vp_fileE +_ZN12video_parser5vpcom15_convErrPafToVpEi +_ZN12video_parser5vpcom16DirectoryGetNextE +_ZN12video_parser5vpcom16_GetHandleStatusEPNS_8_vp_fileEPNS0_23VP_FILE_RESOURCE_STATUSE +_ZN12video_parser5vpcom17_DirectoryGetNextEPNS_8_vp_fileEPN3paf6DirEntE +_ZN12video_parser5vpcom18LwMutexAttrNameSetEPcPKc +_ZN12video_parser5vpcom20GetServiceProviderIdEPKcPy +_ZN12video_parser5vpcom21_AbortCloseConnectionEPNS_8_vp_fileE +_ZN12video_parser5vpcom22IsExistsRemovableMediaEv +_ZN12video_parser5vpcom22SetFileAccessFunctionsEPNS0_10_VP_FILEIOE +_ZN12video_parser5vpcom23RtcGetCurrentSecureTickEP10SceRtcTick +_ZN12video_parser5vpcom24DirectoryDeleteRecursiveE +_ZN12video_parser5vpcom24RtcConvertUtcToLocalTimeEP10SceRtcTickS2_ +_ZN12video_parser5vpcom25_DirectoryDeleteRecursiveEPcj +_ZN12video_parser5vpcom29SetDefaultFileAccessFunctionsEv +_ZN12video_parser5vpcom3rtc10IsLeapYearEPKm +_ZN12video_parser5vpcom3rtc10IsLeapYearEt +_ZN12video_parser5vpcom3rtc11TickAddDaysEPmPKmi +_ZN12video_parser5vpcom3rtc12ParseRFC3339EPmPKc +_ZN12video_parser5vpcom3rtc12TickAddHoursEPmPKmi +_ZN12video_parser5vpcom3rtc12TickAddWeeksEPmPKmi +_ZN12video_parser5vpcom3rtc12TickAddYearsEPmPKmi +_ZN12video_parser5vpcom3rtc13FormatRFC3339EPcPKmi +_ZN12video_parser5vpcom3rtc13TickAddMonthsEPmPKmi +_ZN12video_parser5vpcom3rtc14GetCurrentTickEPm +_ZN12video_parser5vpcom3rtc14GetDaysInMonthEPKm +_ZN12video_parser5vpcom3rtc14GetDaysInMonthEtt +_ZN12video_parser5vpcom3rtc14TickAddMinutesEPmPKml +_ZN12video_parser5vpcom3rtc14TickAddSecondsEPmPKml +_ZN12video_parser5vpcom3rtc19GetCurrentLocalTickEPm +_ZN12video_parser5vpcom3rtc19ParseSQLiteDateTimeEPmPKc +_ZN12video_parser5vpcom3rtc19ParseSQLiteDateTimeEPmPNS1_24SQLiteDateTimeFormatTypeEPKc +_ZN12video_parser5vpcom3rtc19TickAddMicrosecondsEPmPKml +_ZN12video_parser5vpcom3rtc20FormatSQLiteDateTimeEPcmPKmc +_ZN12video_parser5vpcom3rtc21ConvertDateTimeToTickEPKNS1_8DateTimeEPm +_ZN12video_parser5vpcom3rtc21ConvertLocalTimeToUtcEPKmPm +_ZN12video_parser5vpcom3rtc21ConvertTickToDateTimeEPKmPNS1_8DateTimeEPNS1_10DateTimeExE +_ZN12video_parser5vpcom3rtc21ConvertUtcToLocalTimeEPKmPm +_ZN12video_parser5vpcom3rtc21GetCurrentNetworkTickEPm +_ZN12video_parser5vpcom3rtc21ParseRFC3339LocalTimeEPmPKc +_ZN12video_parser5vpcom3rtc22FormatRFC3339LocalTimeEPcPKm +_ZN12video_parser5vpcom4FreeE +_ZN12video_parser5vpcom4InitEPNS0_10_VP_FILEIOEPNS0_13_VP_MEMACCESSE +_ZN12video_parser5vpcom4OpenE +_ZN12video_parser5vpcom4ReadE +_ZN12video_parser5vpcom4SeekE +_ZN12video_parser5vpcom4TellE +_ZN12video_parser5vpcom4TermEv +_ZN12video_parser5vpcom4path5SplitERKSsRSsS4_ +_ZN12video_parser5vpcom4path8SplitExtERKSsRSsS4_ +_ZN12video_parser5vpcom5ChmodE +_ZN12video_parser5vpcom5CloseE +_ZN12video_parser5vpcom5FlushE +_ZN12video_parser5vpcom5OpenTE +_ZN12video_parser5vpcom5SleepEi +_ZN12video_parser5vpcom5WriteE +_ZN12video_parser5vpcom5_FreeEPv +_ZN12video_parser5vpcom5_OpenEPcS1_PPNS_8_vp_fileE +_ZN12video_parser5vpcom5_ReadEPNS_8_vp_fileEPvjPi +_ZN12video_parser5vpcom5_SeekEPNS_8_vp_fileExNS0_12VP_SEEK_TYPEEPx +_ZN12video_parser5vpcom5_TellEPNS_8_vp_fileEPx +_ZN12video_parser5vpcom6CallocE +_ZN12video_parser5vpcom6DeleteE +_ZN12video_parser5vpcom6MallocE +_ZN12video_parser5vpcom6String18SetFormattedStringEPKcz +_ZN12video_parser5vpcom6String18SetFormattedStringEPKwz +_ZN12video_parser5vpcom6String5SplitERKSs +_ZN12video_parser5vpcom6String5SplitEc +_ZN12video_parser5vpcom6StringC1EPKc +_ZN12video_parser5vpcom6StringC1EPKw +_ZN12video_parser5vpcom6StringC1ERKSbIwSt11char_traitsIwESaIwEE +_ZN12video_parser5vpcom6StringC1ERKSs +_ZN12video_parser5vpcom6StringC1Ev +_ZN12video_parser5vpcom6StringC2EPKc +_ZN12video_parser5vpcom6StringC2EPKw +_ZN12video_parser5vpcom6StringC2ERKSbIwSt11char_traitsIwESaIwEE +_ZN12video_parser5vpcom6StringC2ERKSs +_ZN12video_parser5vpcom6StringC2Ev +_ZN12video_parser5vpcom6StringD1Ev +_ZN12video_parser5vpcom6StringD2Ev +_ZN12video_parser5vpcom6StringeqERKS1_ +_ZN12video_parser5vpcom6StringneERKS1_ +_ZN12video_parser5vpcom6StringpLERKS1_ +_ZN12video_parser5vpcom6StringplERKS1_ +_ZN12video_parser5vpcom6_ChmodEPci +_ZN12video_parser5vpcom6_CloseEPNS_8_vp_fileE +_ZN12video_parser5vpcom6_FlushEPNS_8_vp_fileE +_ZN12video_parser5vpcom6_OpenTEPcS1_bPPNS_8_vp_fileE +_ZN12video_parser5vpcom6_WriteEPNS_8_vp_fileEPKvjPi +_ZN12video_parser5vpcom7GetstatE +_ZN12video_parser5vpcom7ReallocE +_ZN12video_parser5vpcom7_CallocEjj +_ZN12video_parser5vpcom7_DeleteEPc +_ZN12video_parser5vpcom7_MallocEj +_ZN12video_parser5vpcom8LockLockEPN3paf6thread5MutexEy +_ZN12video_parser5vpcom8MemalignE +_ZN12video_parser5vpcom8_GetstatEPcPNS0_12VP_FILE_STATE +_ZN12video_parser5vpcom8_ReallocEPvj +_ZN12video_parser5vpcom8datetime8DateTime10NetworkUTCEv +_ZN12video_parser5vpcom8datetime8DateTime11date_formatE +_ZN12video_parser5vpcom8datetime8DateTime11time_formatE +_ZN12video_parser5vpcom8datetime8DateTime12ParseRFC3339EPKc +_ZN12video_parser5vpcom8datetime8DateTime13GetDateFormatEv +_ZN12video_parser5vpcom8datetime8DateTime13GetTimeFormatEv +_ZN12video_parser5vpcom8datetime8DateTime13SetDateFormatEPKw +_ZN12video_parser5vpcom8datetime8DateTime13SetTimeFormatEPKw +_ZN12video_parser5vpcom8datetime8DateTime15datetime_formatE +_ZN12video_parser5vpcom8datetime8DateTime17SetDateTimeFormatEPKw +_ZN12video_parser5vpcom8datetime8DateTime19ParseSQLiteDateTimeEPKc +_ZN12video_parser5vpcom8datetime8DateTime24ConvertDateTimeToRtcTickERS2_ +_ZN12video_parser5vpcom8datetime8DateTime24ConvertRtcTickToDateTimeEPm +_ZN12video_parser5vpcom8datetime8DateTime3NowEv +_ZN12video_parser5vpcom8datetime8DateTime3UTCEv +_ZN12video_parser5vpcom8datetime8DateTime9DayOfWeekEttt +_ZN12video_parser5vpcom8datetime8DateTimeC1Ettttttj +_ZN12video_parser5vpcom8datetime8DateTimeC2Ettttttj +_ZN12video_parser5vpcom8datetime8DateTimeD1Ev +_ZN12video_parser5vpcom8datetime8DateTimeD2Ev +_ZN12video_parser5vpcom9OpenAsyncE +_ZN12video_parser5vpcom9ReadAsyncE +_ZN12video_parser5vpcom9WaitAsyncE +_ZN12video_parser5vpcom9_MemalignEjj +_ZN12video_parser7cVpUtil10SwapEndianEPhS1_i +_ZN12video_parser7cVpUtil11vp_ff4_freeEPvS1_ +_ZN12video_parser7cVpUtil12LowerToUpperEPcS1_i +_ZN12video_parser7cVpUtil12vp_ff4_fopenEPKcPPv +_ZN12video_parser7cVpUtil12vp_ff4_freadEPvS1_mPm +_ZN12video_parser7cVpUtil12vp_ff4_fseekEPvli +_ZN12video_parser7cVpUtil12vp_ff4_fsizeEPvPm +_ZN12video_parser7cVpUtil12vp_ff4_ftellEPvPm +_ZN12video_parser7cVpUtil13TimecodeToHMSEjjRiS1_S1_ +_ZN12video_parser7cVpUtil13_vp_ff4_fopenEPKcPPvib +_ZN12video_parser7cVpUtil13convTimeScaleEyjjPy +_ZN12video_parser7cVpUtil13vp_ff4_fcloseEPv +_ZN12video_parser7cVpUtil13vp_ff4_fwriteEPvPKvmPm +_ZN12video_parser7cVpUtil13vp_ff4_mallocEPvm +_ZN12video_parser7cVpUtil13vp_ff4_memcmpEPvPKvS3_m +_ZN12video_parser7cVpUtil13vp_ff4_memcpyEPvS1_mPKvm +_ZN12video_parser7cVpUtil13vp_ff4_memsetEPvS1_im +_ZN12video_parser7cVpUtil14GetRemainHeapGEv +_ZN12video_parser7cVpUtil14_freadToBufferEPNS0_13VpFileCache_tEx +_ZN12video_parser7cVpUtil14vp_ff4_memmoveEPvS1_mPKvm +_ZN12video_parser7cVpUtil14vp_ff4_strncmpEPvPKcS3_m +_ZN12video_parser7cVpUtil14vp_ff4_strncpyEPvPcmPKcm +_ZN12video_parser7cVpUtil15SwapUTF16EndianEPwS1_i +_ZN12video_parser7cVpUtil15convLangIsoToVpEtPNS_9VP_LANG_eE +_ZN12video_parser7cVpUtil15convLangVpToIsoENS_9VP_LANG_eEPt +_ZN12video_parser7cVpUtil16convCodeToStringEPKNS0_11NameTable_tEiPPc +_ZN12video_parser7cVpUtil16convLangIsoToStrEtPcj +_ZN12video_parser7cVpUtil18vp_ff4_remove_fileEPc +_ZN12video_parser7cVpUtil22vp_ff4_fopen_by_threadEPKcPPvj +_ZN12video_parser7cVpUtil22vp_ff4_fread_by_threadEPvS1_mPm +_ZN12video_parser7cVpUtil22vp_ff4_fseek_by_threadEPvli +_ZN12video_parser7cVpUtil22vp_ff4_fsize_by_threadEPvPm +_ZN12video_parser7cVpUtil22vp_ff4_ftell_by_threadEPvPm +_ZN12video_parser7cVpUtil23vp_ff4_fclose_by_threadEPv +_ZN12video_parser7cVpUtil7GetTimeEv +_ZN12video_parser7cVpUtil8DiffTimeERNS_5vpcom8datetime8DateTimeES4_ +_ZN12video_parser7cVpUtil9PrintDumpEPvi +_ZN12video_parser7dump_brEPNS_21VpMpegvideoAvcBitreadE +_ZN12video_parser8cPDLUtil11getPDLStateEPKcyyPNS_8PDLStateE +_ZN12video_parser8cPDLUtil15AnalyzeMoovAtomEPKcPjPb +_ZN12video_parser8cPDLUtil17getMp4StateForPDLEPKcyyPNS_8Mp4StateE +_ZN13MsvMetaEditor10InitializeEv +_ZN13MsvMetaEditor10resizeFileEmiPmPc +_ZN13MsvMetaEditor10updateTextEPKcS1_tj +_ZN13MsvMetaEditor10writeFileXEjPv +_ZN13MsvMetaEditor11ConvertTtoBEt +_ZN13MsvMetaEditor11UpdateTitleEPKcS1_t +_ZN13MsvMetaEditor11addMetaDataEjPtmtt +_ZN13MsvMetaEditor12getChunkInfoEjPm +_ZN13MsvMetaEditor12truncateFileEPKcl +_ZN13MsvMetaEditor13checkMetadataEPttPb +_ZN13MsvMetaEditor13updateMfraBoxEi +_ZN13MsvMetaEditor13updateMoovBoxEi +_ZN13MsvMetaEditor13updateStcoBoxEi +_ZN13MsvMetaEditor13updateTfhdBoxEi +_ZN13MsvMetaEditor13updateTfraBoxEi +_ZN13MsvMetaEditor13updateTrafBoxEi +_ZN13MsvMetaEditor14getChunkOffsetEjPmb +_ZN13MsvMetaEditor14getMoovBoxInfoEv +_ZN13MsvMetaEditor14getMtdtBoxInfoEjttPNS_11MtdtBoxInfoE +_ZN13MsvMetaEditor14initializeMetaEPKc +_ZN13MsvMetaEditor14updateMetaDataEPtm +_ZN13MsvMetaEditor15SwapUTF16EndianEPwPKwi +_ZN13MsvMetaEditor15getMetaDataInfoEjtt +_ZN13MsvMetaEditor16getFunctionFlagsEPj +_ZN13MsvMetaEditor17updateChunkOffsetEi +_ZN13MsvMetaEditor17updateEachMoofBoxEi +_ZN13MsvMetaEditor18convertUTF8toUTF16EPKhPPtPmm +_ZN13MsvMetaEditor19getMetaDataUnitInfoEjttPNS_11MtdtBoxInfo12DataUnitInfoEPb +_ZN13MsvMetaEditor19getModificationTimeEP2tm +_ZN13MsvMetaEditor19getPresentationTypeEPj +_ZN13MsvMetaEditor20checkCompatibleBrandEv +_ZN13MsvMetaEditor20cmUtChangeDateToTimeEPK2tmPj +_ZN13MsvMetaEditor22searchUuidWithUserTypeEPKjPib +_ZN13MsvMetaEditor24getTrackPresentationTypeEPj +_ZN13MsvMetaEditor8compact2EtPh +_ZN13MsvMetaEditor8compact4EjPh +_ZN13MsvMetaEditor8compact8EmPh +_ZN13MsvMetaEditor8openFileEPKc +_ZN13MsvMetaEditor9readFileXEjPv +_ZN13MsvMetaEditor9searchBoxEPKcb +_ZN13MsvMetaEditor9seekFileXElj +_ZN13MsvMetaEditor9tellFileXEv +_ZN13MsvMetaEditorC1Ev +_ZN13MsvMetaEditorC2Ev +_ZN13MsvMetaEditorD0Ev +_ZN13MsvMetaEditorD1Ev +_ZN13MsvMetaEditorD2Ev +_ZN13OpaqueJSClassD1Ev +_ZN13OpaqueJSClassD2Ev +_ZN14OpaqueJSString6createEON3WTF6StringE +_ZN14OpaqueJSString6createERKN3WTF6StringE +_ZN14OpaqueJSString9tryCreateEON3WTF6StringE +_ZN14OpaqueJSString9tryCreateERKN3WTF6StringE +_ZN14OpaqueJSStringD1Ev +_ZN14OpaqueJSStringD2Ev +_ZN15AbstractStorage10TwitterAPI11SendContentEPKvl +_ZN15AbstractStorage10TwitterAPI5StartERKSbIcSt11char_traitsIcENS_8StlAllocIcEEES7_S7_l +_ZN15AbstractStorage10TwitterAPI6FinishERiRSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage10TwitterAPIC1Ev +_ZN15AbstractStorage10TwitterAPID1Ev +_ZN15AbstractStorage10YoutubeAPI11SendContentEPKvl +_ZN15AbstractStorage10YoutubeAPI14SetAccessTokenERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage10YoutubeAPI17GetUploadLocationERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEmS7_RS5_ +_ZN15AbstractStorage10YoutubeAPI17GetUploadLocationERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEmS7_S7_S7_S7_RS5_ +_ZN15AbstractStorage10YoutubeAPI21createUploadParamJsonERKSbIcSt11char_traitsIcENS_8StlAllocIcEEES7_S7_S7_RS5_ +_ZN15AbstractStorage10YoutubeAPI5StartERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage10YoutubeAPI6FinishERiRSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage10YoutubeAPI6ResumeERSbIcSt11char_traitsIcENS_8StlAllocIcEEERlm +_ZN15AbstractStorage10YoutubeAPI7SuspendEv +_ZN15AbstractStorage10YoutubeAPI8initHttpEv +_ZN15AbstractStorage10YoutubeAPI8termHttpEv +_ZN15AbstractStorage10YoutubeAPIC1Ev +_ZN15AbstractStorage10YoutubeAPIC2Ev +_ZN15AbstractStorage10YoutubeAPID1Ev +_ZN15AbstractStorage10YoutubeAPID2Ev +_ZN15AbstractStorage11LocalFolder10NewContentERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_7ContentEE +_ZN15AbstractStorage11LocalFolder12RemoveFolderERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb +_ZN15AbstractStorage11LocalFolder12readExternalESt10shared_ptrINS_7ContentEE +_ZN15AbstractStorage11LocalFolder13RemoveContentERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage11LocalFolder13writeExternalESt10shared_ptrINS_7ContentEE +_ZN15AbstractStorage11LocalFolder4OpenENS_8ItemTypeE +_ZN15AbstractStorage11LocalFolder5CloseEv +_ZN15AbstractStorage11LocalFolder6RemoveEb +_ZN15AbstractStorage11LocalFolder8NextItemEPSt10shared_ptrINS_4ItemEE +_ZN15AbstractStorage11LocalFolder9NewFolderERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_6FolderEE +_ZN15AbstractStorage11LocalFolderC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage11LocalFolderC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage11LocalFolderD0Ev +_ZN15AbstractStorage11LocalFolderD1Ev +_ZN15AbstractStorage11LocalFolderD2Ev +_ZN15AbstractStorage12LocalContent12readExternalESt10shared_ptrINS_7ContentEE +_ZN15AbstractStorage12LocalContent13ParseMetadataEPN23sceMetadataReaderWriter8MetadataES3_ +_ZN15AbstractStorage12LocalContent13writeExternalESt10shared_ptrINS_7ContentEE +_ZN15AbstractStorage12LocalContent4OpenEit +_ZN15AbstractStorage12LocalContent4ReadEPvlPl +_ZN15AbstractStorage12LocalContent5CloseEv +_ZN15AbstractStorage12LocalContent5FlushEv +_ZN15AbstractStorage12LocalContent5WriteEPKvlPl +_ZN15AbstractStorage12LocalContent6RemoveEv +_ZN15AbstractStorage12LocalContent6RenameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage12LocalContent8SeekByteEliPl +_ZN15AbstractStorage12LocalContent8SeekTimeElPl +_ZN15AbstractStorage12LocalContentC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage12LocalContentC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage12LocalContentD0Ev +_ZN15AbstractStorage12LocalContentD1Ev +_ZN15AbstractStorage12LocalContentD2Ev +_ZN15AbstractStorage12LocalService13SearchStorageEv +_ZN15AbstractStorage12LocalService18append_storagelistERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb +_ZN15AbstractStorage12LocalService19isSandBoxRandomWordERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage12LocalService20GetSandBoxRandomWordEv +_ZN15AbstractStorage12LocalService23create_storage_instanceERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage12LocalService4StopEv +_ZN15AbstractStorage12LocalService5StartEv +_ZN15AbstractStorage12LocalServiceC1Ev +_ZN15AbstractStorage12LocalServiceC2Ev +_ZN15AbstractStorage12LocalServiceD0Ev +_ZN15AbstractStorage12LocalServiceD1Ev +_ZN15AbstractStorage12LocalServiceD2Ev +_ZN15AbstractStorage12LocalStorage11DeserializeESt10shared_ptrINS_7ContentEEPS1_INS_4ItemEE +_ZN15AbstractStorage12LocalStorage12readExternalESt10shared_ptrINS_7ContentEE +_ZN15AbstractStorage12LocalStorage13GetRootFolderEPSt10shared_ptrINS_6FolderEE +_ZN15AbstractStorage12LocalStorage13writeExternalESt10shared_ptrINS_7ContentEE +_ZN15AbstractStorage12LocalStorage14GetStorageSizeEPlS1_S1_ +_ZN15AbstractStorage12LocalStorage15CreateRecursiveERKSbIcSt11char_traitsIcENS_8StlAllocIcEEENS_8ItemTypeEPSt10shared_ptrINS_4ItemEE +_ZN15AbstractStorage12LocalStorage15RemoveRecursiveERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage12LocalStorage5ChModERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEt +_ZN15AbstractStorage12LocalStorage7GetItemERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_4ItemEE +_ZN15AbstractStorage12LocalStorage7IsExistERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage12LocalStorage9SerializeESt10shared_ptrINS_7ContentEES1_INS_4ItemEE +_ZN15AbstractStorage12LocalStorageC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage12LocalStorageC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage12LocalStorageD0Ev +_ZN15AbstractStorage12LocalStorageD1Ev +_ZN15AbstractStorage12LocalStorageD2Ev +_ZN15AbstractStorage12Serializable12readExternalESt10shared_ptrINS_7ContentEE +_ZN15AbstractStorage12Serializable13writeExternalESt10shared_ptrINS_7ContentEE +_ZN15AbstractStorage12SerializableC1Ev +_ZN15AbstractStorage12SerializableC2Ev +_ZN15AbstractStorage12SerializableD1Ev +_ZN15AbstractStorage12SerializableD2Ev +_ZN15AbstractStorage13TwitterFolder10NewContentERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_7ContentEE +_ZN15AbstractStorage13TwitterFolder12RemoveFolderERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb +_ZN15AbstractStorage13TwitterFolder13RemoveContentERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage13TwitterFolder4OpenENS_8ItemTypeE +_ZN15AbstractStorage13TwitterFolder5CloseEv +_ZN15AbstractStorage13TwitterFolder6RemoveEb +_ZN15AbstractStorage13TwitterFolder8NextItemEPSt10shared_ptrINS_4ItemEE +_ZN15AbstractStorage13TwitterFolder9NewFolderERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_6FolderEE +_ZN15AbstractStorage13TwitterFolderC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb +_ZN15AbstractStorage13TwitterFolderC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb +_ZN15AbstractStorage13TwitterFolderD0Ev +_ZN15AbstractStorage13TwitterFolderD1Ev +_ZN15AbstractStorage13TwitterFolderD2Ev +_ZN15AbstractStorage13YoutubeFolder10NewContentERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_7ContentEE +_ZN15AbstractStorage13YoutubeFolder12RemoveFolderERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb +_ZN15AbstractStorage13YoutubeFolder13RemoveContentERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage13YoutubeFolder4OpenENS_8ItemTypeE +_ZN15AbstractStorage13YoutubeFolder5CloseEv +_ZN15AbstractStorage13YoutubeFolder6RemoveEb +_ZN15AbstractStorage13YoutubeFolder9NewFolderERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_6FolderEE +_ZN15AbstractStorage13YoutubeFolderC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb +_ZN15AbstractStorage13YoutubeFolderC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb +_ZN15AbstractStorage13YoutubeFolderD0Ev +_ZN15AbstractStorage13YoutubeFolderD1Ev +_ZN15AbstractStorage13YoutubeFolderD2Ev +_ZN15AbstractStorage14DailymotionAPI7SuspendEv +_ZN15AbstractStorage14DailymotionAPI8initHttpEv +_ZN15AbstractStorage14DailymotionAPI8termHttpEv +_ZN15AbstractStorage14DailymotionAPIC1Ev +_ZN15AbstractStorage14DailymotionAPIC2Ev +_ZN15AbstractStorage14DailymotionAPID1Ev +_ZN15AbstractStorage14DailymotionAPID2Ev +_ZN15AbstractStorage14FacebookFolder10NewContentERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_7ContentEE +_ZN15AbstractStorage14FacebookFolder11SetMetadataEPN23sceMetadataReaderWriter8MetadataE +_ZN15AbstractStorage14FacebookFolder12RemoveFolderERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb +_ZN15AbstractStorage14FacebookFolder12create_albumEv +_ZN15AbstractStorage14FacebookFolder12readExternalESt10shared_ptrINS_7ContentEE +_ZN15AbstractStorage14FacebookFolder13ParseMetadataEPN23sceMetadataReaderWriter8MetadataES3_ +_ZN15AbstractStorage14FacebookFolder13RemoveContentERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage14FacebookFolder13writeExternalESt10shared_ptrINS_7ContentEE +_ZN15AbstractStorage14FacebookFolder4OpenENS_8ItemTypeE +_ZN15AbstractStorage14FacebookFolder5CloseEv +_ZN15AbstractStorage14FacebookFolder6RemoveEb +_ZN15AbstractStorage14FacebookFolder8NextItemEPSt10shared_ptrINS_4ItemEE +_ZN15AbstractStorage14FacebookFolder9NewFolderERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_6FolderEE +_ZN15AbstractStorage14FacebookFolderC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb +_ZN15AbstractStorage14FacebookFolderC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb +_ZN15AbstractStorage14FacebookFolderD0Ev +_ZN15AbstractStorage14FacebookFolderD1Ev +_ZN15AbstractStorage14FacebookFolderD2Ev +_ZN15AbstractStorage14MemfileContent12readExternalESt10shared_ptrINS_7ContentEE +_ZN15AbstractStorage14MemfileContent13writeExternalESt10shared_ptrINS_7ContentEE +_ZN15AbstractStorage14MemfileContent14CreateInstanceESbIcSt11char_traitsIcENS_8StlAllocIcEEEN3paf6common9SharedPtrINS6_6BufferEEE +_ZN15AbstractStorage14MemfileContent14CreateInstanceESbIcSt11char_traitsIcENS_8StlAllocIcEEEPvm +_ZN15AbstractStorage14MemfileContent4OpenEit +_ZN15AbstractStorage14MemfileContent4ReadEPvlPl +_ZN15AbstractStorage14MemfileContent5CloseEv +_ZN15AbstractStorage14MemfileContent5FlushEv +_ZN15AbstractStorage14MemfileContent5WriteEPKvlPl +_ZN15AbstractStorage14MemfileContent6RemoveEv +_ZN15AbstractStorage14MemfileContent8SeekByteEliPl +_ZN15AbstractStorage14MemfileContent8SeekTimeElPl +_ZN15AbstractStorage14MemfileContentC1ESbIcSt11char_traitsIcENS_8StlAllocIcEEEN3paf6common9SharedPtrINS6_6BufferEEE +_ZN15AbstractStorage14MemfileContentC2ESbIcSt11char_traitsIcENS_8StlAllocIcEEEN3paf6common9SharedPtrINS6_6BufferEEE +_ZN15AbstractStorage14MemfileContentD0Ev +_ZN15AbstractStorage14MemfileContentD1Ev +_ZN15AbstractStorage14MemfileContentD2Ev +_ZN15AbstractStorage14StorageManager10GetStorageERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_7StorageEE +_ZN15AbstractStorage14StorageManager10InitializeEv +_ZN15AbstractStorage14StorageManager10m_instanceE +_ZN15AbstractStorage14StorageManager11GetInstanceERNS_12MemAllocatorEPv +_ZN15AbstractStorage14StorageManager11GetInstanceEv +_ZN15AbstractStorage14StorageManager12NotifyCreateERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb +_ZN15AbstractStorage14StorageManager12NotifyRemoveERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb +_ZN15AbstractStorage14StorageManager15ReleaseInstanceEv +_ZN15AbstractStorage14StorageManager16NotifyWriteCloseERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage14StorageManager16RegisterListenerEPNS_17ItemEventListenerE +_ZN15AbstractStorage14StorageManager16RegisterListenerEPNS_20StorageEventListenerE +_ZN15AbstractStorage14StorageManager16get_storage_nameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage14StorageManager17NotifySetMetadataERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage14StorageManager18GetStorageNameListEPSt6vectorISbIcSt11char_traitsIcENS_8StlAllocIcEEESaIS6_EE +_ZN15AbstractStorage14StorageManager18UnregisterListenerEPKNS_17ItemEventListenerE +_ZN15AbstractStorage14StorageManager18UnregisterListenerEPKNS_20StorageEventListenerE +_ZN15AbstractStorage14StorageManager20get_service_instanceENS_11ServiceTypeE +_ZN15AbstractStorage14StorageManager21NotifyStorageAttachedERKSbIcSt11char_traitsIcENS_8StlAllocIcEEENS_11ServiceTypeE +_ZN15AbstractStorage14StorageManager21NotifyStorageDetachedERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage14StorageManager4FreeEPv +_ZN15AbstractStorage14StorageManager4LoadENS_11ServiceTypeE +_ZN15AbstractStorage14StorageManager6MallocEm +_ZN15AbstractStorage14StorageManager6UnloadENS_11ServiceTypeE +_ZN15AbstractStorage14StorageManager6UpdateENS_11ServiceTypeE +_ZN15AbstractStorage14StorageManager9TerminateEv +_ZN15AbstractStorage14StorageManagerC1Ev +_ZN15AbstractStorage14StorageManagerC2Ev +_ZN15AbstractStorage14StorageManagerD1Ev +_ZN15AbstractStorage14StorageManagerD2Ev +_ZN15AbstractStorage14TwitterContent11SetMetadataEPN23sceMetadataReaderWriter8MetadataE +_ZN15AbstractStorage14TwitterContent12readExternalESt10shared_ptrINS_7ContentEE +_ZN15AbstractStorage14TwitterContent13ParseMetadataEPN23sceMetadataReaderWriter8MetadataES3_ +_ZN15AbstractStorage14TwitterContent13writeExternalESt10shared_ptrINS_7ContentEE +_ZN15AbstractStorage14TwitterContent4OpenEit +_ZN15AbstractStorage14TwitterContent4ReadEPvlPl +_ZN15AbstractStorage14TwitterContent5CloseEv +_ZN15AbstractStorage14TwitterContent5FlushEv +_ZN15AbstractStorage14TwitterContent5WriteEPKvlPl +_ZN15AbstractStorage14TwitterContent6RemoveEv +_ZN15AbstractStorage14TwitterContent6RenameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage14TwitterContent8SeekByteEliPl +_ZN15AbstractStorage14TwitterContent8SeekTimeElPl +_ZN15AbstractStorage14TwitterContentC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb +_ZN15AbstractStorage14TwitterContentC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb +_ZN15AbstractStorage14TwitterContentD0Ev +_ZN15AbstractStorage14TwitterContentD1Ev +_ZN15AbstractStorage14TwitterContentD2Ev +_ZN15AbstractStorage14TwitterService13SearchStorageEv +_ZN15AbstractStorage14TwitterService23create_storage_instanceERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage14TwitterService4StopEv +_ZN15AbstractStorage14TwitterService5StartEv +_ZN15AbstractStorage14TwitterServiceC1Ev +_ZN15AbstractStorage14TwitterServiceC2Ev +_ZN15AbstractStorage14TwitterServiceD0Ev +_ZN15AbstractStorage14TwitterServiceD1Ev +_ZN15AbstractStorage14TwitterServiceD2Ev +_ZN15AbstractStorage14TwitterStorage10GetContentERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_7ContentEE +_ZN15AbstractStorage14TwitterStorage11DeserializeESt10shared_ptrINS_7ContentEEPS1_INS_4ItemEE +_ZN15AbstractStorage14TwitterStorage13GetRootFolderEPSt10shared_ptrINS_6FolderEE +_ZN15AbstractStorage14TwitterStorage14GetStorageSizeEPlS1_S1_ +_ZN15AbstractStorage14TwitterStorage15CreateRecursiveERKSbIcSt11char_traitsIcENS_8StlAllocIcEEENS_8ItemTypeEPSt10shared_ptrINS_4ItemEE +_ZN15AbstractStorage14TwitterStorage15RemoveRecursiveERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage14TwitterStorage7GetItemERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_4ItemEE +_ZN15AbstractStorage14TwitterStorage7IsExistERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage14TwitterStorage9GetForderERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_6FolderEE +_ZN15AbstractStorage14TwitterStorage9SerializeESt10shared_ptrINS_7ContentEES1_INS_4ItemEE +_ZN15AbstractStorage14TwitterStorageC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage14TwitterStorageC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage14TwitterStorageD0Ev +_ZN15AbstractStorage14TwitterStorageD1Ev +_ZN15AbstractStorage14TwitterStorageD2Ev +_ZN15AbstractStorage14YoutubeContent11SetMetadataEPN23sceMetadataReaderWriter8MetadataE +_ZN15AbstractStorage14YoutubeContent12readExternalESt10shared_ptrINS_7ContentEE +_ZN15AbstractStorage14YoutubeContent13ParseMetadataEPN23sceMetadataReaderWriter8MetadataES3_ +_ZN15AbstractStorage14YoutubeContent13writeExternalESt10shared_ptrINS_7ContentEE +_ZN15AbstractStorage14YoutubeContent4OpenEit +_ZN15AbstractStorage14YoutubeContent4ReadEPvlPl +_ZN15AbstractStorage14YoutubeContent5CloseEv +_ZN15AbstractStorage14YoutubeContent5FlushEv +_ZN15AbstractStorage14YoutubeContent5WriteEPKvlPl +_ZN15AbstractStorage14YoutubeContent6RemoveEv +_ZN15AbstractStorage14YoutubeContent6RenameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage14YoutubeContent8SeekByteEliPl +_ZN15AbstractStorage14YoutubeContent8SeekTimeElPl +_ZN15AbstractStorage14YoutubeContentC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb +_ZN15AbstractStorage14YoutubeContentC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb +_ZN15AbstractStorage14YoutubeContentD0Ev +_ZN15AbstractStorage14YoutubeContentD1Ev +_ZN15AbstractStorage14YoutubeContentD2Ev +_ZN15AbstractStorage14YoutubeService13SearchStorageEv +_ZN15AbstractStorage14YoutubeService23create_storage_instanceERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage14YoutubeService4StopEv +_ZN15AbstractStorage14YoutubeService5StartEv +_ZN15AbstractStorage14YoutubeServiceC1Ev +_ZN15AbstractStorage14YoutubeServiceC2Ev +_ZN15AbstractStorage14YoutubeServiceD0Ev +_ZN15AbstractStorage14YoutubeServiceD1Ev +_ZN15AbstractStorage14YoutubeServiceD2Ev +_ZN15AbstractStorage14YoutubeStorage10GetContentERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_7ContentEE +_ZN15AbstractStorage14YoutubeStorage11DeserializeESt10shared_ptrINS_7ContentEEPS1_INS_4ItemEE +_ZN15AbstractStorage14YoutubeStorage13GetRootFolderEPSt10shared_ptrINS_6FolderEE +_ZN15AbstractStorage14YoutubeStorage14GetStorageSizeEPlS1_S1_ +_ZN15AbstractStorage14YoutubeStorage15CreateRecursiveERKSbIcSt11char_traitsIcENS_8StlAllocIcEEENS_8ItemTypeEPSt10shared_ptrINS_4ItemEE +_ZN15AbstractStorage14YoutubeStorage15RemoveRecursiveERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage14YoutubeStorage7GetItemERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_4ItemEE +_ZN15AbstractStorage14YoutubeStorage7IsExistERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage14YoutubeStorage9GetForderERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_6FolderEE +_ZN15AbstractStorage14YoutubeStorage9SerializeESt10shared_ptrINS_7ContentEES1_INS_4ItemEE +_ZN15AbstractStorage14YoutubeStorageC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage14YoutubeStorageC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage14YoutubeStorageD0Ev +_ZN15AbstractStorage14YoutubeStorageD1Ev +_ZN15AbstractStorage14YoutubeStorageD2Ev +_ZN15AbstractStorage15FacebookContent11SetMetadataEPN23sceMetadataReaderWriter8MetadataE +_ZN15AbstractStorage15FacebookContent12readExternalESt10shared_ptrINS_7ContentEE +_ZN15AbstractStorage15FacebookContent13ParseMetadataEPN23sceMetadataReaderWriter8MetadataES3_ +_ZN15AbstractStorage15FacebookContent13writeExternalESt10shared_ptrINS_7ContentEE +_ZN15AbstractStorage15FacebookContent4OpenEit +_ZN15AbstractStorage15FacebookContent4ReadEPvlPl +_ZN15AbstractStorage15FacebookContent5CloseEv +_ZN15AbstractStorage15FacebookContent5FlushEv +_ZN15AbstractStorage15FacebookContent5WriteEPKvlPl +_ZN15AbstractStorage15FacebookContent6RemoveEv +_ZN15AbstractStorage15FacebookContent6RenameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage15FacebookContent8SeekByteEliPl +_ZN15AbstractStorage15FacebookContent8SeekTimeElPl +_ZN15AbstractStorage15FacebookContentC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb +_ZN15AbstractStorage15FacebookContentC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEbb +_ZN15AbstractStorage15FacebookContentC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb +_ZN15AbstractStorage15FacebookContentC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEbb +_ZN15AbstractStorage15FacebookContentD0Ev +_ZN15AbstractStorage15FacebookContentD1Ev +_ZN15AbstractStorage15FacebookContentD2Ev +_ZN15AbstractStorage15FacebookService13SearchStorageEv +_ZN15AbstractStorage15FacebookService23create_storage_instanceERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage15FacebookService4StopEv +_ZN15AbstractStorage15FacebookService5StartEv +_ZN15AbstractStorage15FacebookServiceC1Ev +_ZN15AbstractStorage15FacebookServiceC2Ev +_ZN15AbstractStorage15FacebookServiceD0Ev +_ZN15AbstractStorage15FacebookServiceD1Ev +_ZN15AbstractStorage15FacebookServiceD2Ev +_ZN15AbstractStorage15FacebookStorage11DeserializeESt10shared_ptrINS_7ContentEEPS1_INS_4ItemEE +_ZN15AbstractStorage15FacebookStorage11SetMetadataEPN23sceMetadataReaderWriter8MetadataE +_ZN15AbstractStorage15FacebookStorage13GetRootFolderEPSt10shared_ptrINS_6FolderEE +_ZN15AbstractStorage15FacebookStorage14GetStorageSizeEPlS1_S1_ +_ZN15AbstractStorage15FacebookStorage15CreateRecursiveERKSbIcSt11char_traitsIcENS_8StlAllocIcEEENS_8ItemTypeEPSt10shared_ptrINS_4ItemEE +_ZN15AbstractStorage15FacebookStorage15RemoveRecursiveERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage15FacebookStorage7GetItemERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_4ItemEE +_ZN15AbstractStorage15FacebookStorage7IsExistERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage15FacebookStorage9SerializeESt10shared_ptrINS_7ContentEES1_INS_4ItemEE +_ZN15AbstractStorage15FacebookStorageC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage15FacebookStorageC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage15FacebookStorageD0Ev +_ZN15AbstractStorage15FacebookStorageD1Ev +_ZN15AbstractStorage15FacebookStorageD2Ev +_ZN15AbstractStorage15HttpTransaction15ReceiveResponseERSbIcSt11char_traitsIcENS_8StlAllocIcEEERiS6_ +_ZN15AbstractStorage15HttpTransaction15SendHttpRequestERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEiRKSt3mapIS5_S5_St4lessIS5_ESaISt4pairIS6_S5_EEEm +_ZN15AbstractStorage15HttpTransaction15SendHttpRequestERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEiRKSt3mapIS5_S5_St4lessIS5_ESaISt4pairIS6_S5_EEEmb +_ZN15AbstractStorage15HttpTransaction4InitEv +_ZN15AbstractStorage15HttpTransaction4TermEv +_ZN15AbstractStorage15HttpTransaction8SendDataEPKvm +_ZN15AbstractStorage15HttpTransactionC1Ev +_ZN15AbstractStorage15HttpTransactionC2Ev +_ZN15AbstractStorage15HttpTransactionD1Ev +_ZN15AbstractStorage15HttpTransactionD2Ev +_ZN15AbstractStorage17DailymotionFolder10NewContentERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_7ContentEE +_ZN15AbstractStorage17DailymotionFolder12RemoveFolderERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb +_ZN15AbstractStorage17DailymotionFolder13RemoveContentERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage17DailymotionFolder4OpenENS_8ItemTypeE +_ZN15AbstractStorage17DailymotionFolder5CloseEv +_ZN15AbstractStorage17DailymotionFolder6RemoveEb +_ZN15AbstractStorage17DailymotionFolder9NewFolderERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_6FolderEE +_ZN15AbstractStorage17DailymotionFolderC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb +_ZN15AbstractStorage17DailymotionFolderC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb +_ZN15AbstractStorage17DailymotionFolderD0Ev +_ZN15AbstractStorage17DailymotionFolderD1Ev +_ZN15AbstractStorage17DailymotionFolderD2Ev +_ZN15AbstractStorage18DailymotionContent11SetMetadataEPN23sceMetadataReaderWriter8MetadataE +_ZN15AbstractStorage18DailymotionContent12readExternalESt10shared_ptrINS_7ContentEE +_ZN15AbstractStorage18DailymotionContent13ParseMetadataEPN23sceMetadataReaderWriter8MetadataES3_ +_ZN15AbstractStorage18DailymotionContent13writeExternalESt10shared_ptrINS_7ContentEE +_ZN15AbstractStorage18DailymotionContent4OpenEit +_ZN15AbstractStorage18DailymotionContent4ReadEPvlPl +_ZN15AbstractStorage18DailymotionContent5CloseEv +_ZN15AbstractStorage18DailymotionContent5FlushEv +_ZN15AbstractStorage18DailymotionContent5WriteEPKvlPl +_ZN15AbstractStorage18DailymotionContent6RemoveEv +_ZN15AbstractStorage18DailymotionContent6RenameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage18DailymotionContent8SeekByteEliPl +_ZN15AbstractStorage18DailymotionContent8SeekTimeElPl +_ZN15AbstractStorage18DailymotionContentC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb +_ZN15AbstractStorage18DailymotionContentC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb +_ZN15AbstractStorage18DailymotionContentD0Ev +_ZN15AbstractStorage18DailymotionContentD1Ev +_ZN15AbstractStorage18DailymotionContentD2Ev +_ZN15AbstractStorage18DailymotionService13SearchStorageEv +_ZN15AbstractStorage18DailymotionService23create_storage_instanceERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage18DailymotionService4StopEv +_ZN15AbstractStorage18DailymotionService5StartEv +_ZN15AbstractStorage18DailymotionServiceC1Ev +_ZN15AbstractStorage18DailymotionServiceC2Ev +_ZN15AbstractStorage18DailymotionServiceD0Ev +_ZN15AbstractStorage18DailymotionServiceD1Ev +_ZN15AbstractStorage18DailymotionServiceD2Ev +_ZN15AbstractStorage18DailymotionStorage10GetContentERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_7ContentEE +_ZN15AbstractStorage18DailymotionStorage11DeserializeESt10shared_ptrINS_7ContentEEPS1_INS_4ItemEE +_ZN15AbstractStorage18DailymotionStorage13GetRootFolderEPSt10shared_ptrINS_6FolderEE +_ZN15AbstractStorage18DailymotionStorage14GetStorageSizeEPlS1_S1_ +_ZN15AbstractStorage18DailymotionStorage15CreateRecursiveERKSbIcSt11char_traitsIcENS_8StlAllocIcEEENS_8ItemTypeEPSt10shared_ptrINS_4ItemEE +_ZN15AbstractStorage18DailymotionStorage15RemoveRecursiveERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage18DailymotionStorage7GetItemERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_4ItemEE +_ZN15AbstractStorage18DailymotionStorage7IsExistERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage18DailymotionStorage9GetForderERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_6FolderEE +_ZN15AbstractStorage18DailymotionStorage9SerializeESt10shared_ptrINS_7ContentEES1_INS_4ItemEE +_ZN15AbstractStorage18DailymotionStorageC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage18DailymotionStorageC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage18DailymotionStorageD0Ev +_ZN15AbstractStorage18DailymotionStorageD1Ev +_ZN15AbstractStorage18DailymotionStorageD2Ev +_ZN15AbstractStorage4Item11GetPathNameEv +_ZN15AbstractStorage4Item11SetMetadataEPN23sceMetadataReaderWriter8MetadataE +_ZN15AbstractStorage4Item13ParseMetadataEPN23sceMetadataReaderWriter8MetadataES3_ +_ZN15AbstractStorage4Item14GetStorageNameEv +_ZN15AbstractStorage4Item6RenameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage4Item7GetNameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage4Item7GetNameEv +_ZN15AbstractStorage4Item8set_metaERN23sceMetadataReaderWriter8MetadataERKSbIcSt11char_traitsIcENS_8StlAllocIcEEESA_ +_ZN15AbstractStorage4Item8set_metaERN23sceMetadataReaderWriter8MetadataERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEm +_ZN15AbstractStorage4ItemC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage4ItemD0Ev +_ZN15AbstractStorage4ItemD1Ev +_ZN15AbstractStorage4ItemD2Ev +_ZN15AbstractStorage4ItemdlEPv +_ZN15AbstractStorage4ItemnwEm +_ZN15AbstractStorage6FolderC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage6FolderD0Ev +_ZN15AbstractStorage6FolderD1Ev +_ZN15AbstractStorage6FolderD2Ev +_ZN15AbstractStorage7AbsFreeEPv +_ZN15AbstractStorage7Content12GetExtensionERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage7Content12GetMimeTypesEv +_ZN15AbstractStorage7Content6RenameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage7ContentC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage7ContentD0Ev +_ZN15AbstractStorage7ContentD1Ev +_ZN15AbstractStorage7ContentD2Ev +_ZN15AbstractStorage7Service11NextStorageERSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage7Service13CreateStorageERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_7StorageEE +_ZN15AbstractStorage7Service18clear_storage_listEv +_ZN15AbstractStorage7Service4LoadENS_11ServiceTypeE +_ZN15AbstractStorage7Service4StopEv +_ZN15AbstractStorage7Service5StartEv +_ZN15AbstractStorage7Service6UnLoadEPS0_ +_ZN15AbstractStorage7ServiceC2Ev +_ZN15AbstractStorage7ServiceD0Ev +_ZN15AbstractStorage7ServiceD1Ev +_ZN15AbstractStorage7ServiceD2Ev +_ZN15AbstractStorage7StorageC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE +_ZN15AbstractStorage7StorageD0Ev +_ZN15AbstractStorage7StorageD1Ev +_ZN15AbstractStorage7StorageD2Ev +_ZN15AbstractStorage9AbsMallocEm +_ZN17ScePssCameraOrbis4OpenEP16ScePssCameraSizej +_ZN18MmsFileUpdaterBase18GetContentFilenameEP4xMMSmPcj +_ZN18MmsFileUpdaterBase18RegenerateMetadataEP4xMMSPKc +_ZN18MmsFileUpdaterBaseC2Ev +_ZN18MmsFileUpdaterBaseD0Ev +_ZN18MmsFileUpdaterBaseD1Ev +_ZN18MmsFileUpdaterBaseD2Ev +_ZN18ScePssDecoderHevag19BufferedDecodeChunkEPKhjRjPsjS2_S2_ +_ZN18ScePssDecoderHevag9TerminateEv +_ZN18scePssCAudioSystem20GetPlayerForResourceEjRjiiij +_ZN18scePssCAudioSystem20GetPlayerForResourceEjRjiiiji +_ZN19HardwareConcurrencyC2Ev +_ZN19JITSharedDataMemory11shared_freeEPv +_ZN19JITSharedDataMemory13shared_callocEmm +_ZN19JITSharedDataMemory13shared_mallocEm +_ZN19JITSharedDataMemory14shared_reallocEPvm +_ZN19JITSharedDataMemory15shared_mallinfoEv +_ZN19JITSharedDataMemory15shared_memalignEmm +_ZN19JITSharedDataMemory27shared_malloc_max_footprintEv +_ZN19JITSharedDataMemory9sbrk_infoE +_ZN19JITSharedTextMemory11shared_freeEPv +_ZN19JITSharedTextMemory15shared_mallinfoEv +_ZN19JITSharedTextMemory15shared_memalignEmm +_ZN19JITSharedTextMemory27shared_malloc_max_footprintEv +_ZN19JITSharedTextMemory9sbrk_infoE +_ZN19ScePssCMediaDecoder14BufferedDecodeEPKvjRjPvjS2_S2_ +_ZN19ScePssCMediaDecoder19BufferedDecodeChunkEPKhjRjPsjS2_S2_ +_ZN19ScePssCMediaDecoder6DecodeEPKvjRjPvjS2_S2_ +_ZN22MmsMdCommonFsOperation11readToCacheEmj +_ZN22MmsMdCommonFsOperation12createBufferEj +_ZN22MmsMdCommonFsOperation12readToBufferEmjPvj +_ZN22MmsMdCommonFsOperation13destroyBufferEv +_ZN22MmsMdCommonFsOperation13storeFileSizeEv +_ZN22MmsMdCommonFsOperation17createCacheBufferERNS_18CreateBufferOptionE +_ZN22MmsMdCommonFsOperation17readFileWithCacheEjPv +_ZN22MmsMdCommonFsOperation18CreateBufferOptionC1Ev +_ZN22MmsMdCommonFsOperation18CreateBufferOptionC2Ev +_ZN22MmsMdCommonFsOperation18destroyCacheBufferEv +_ZN22MmsMdCommonFsOperation19readFileWithNoCacheEjPv +_ZN22MmsMdCommonFsOperation7isExistEPKc +_ZN22MmsMdCommonFsOperation8openFileEPKc +_ZN22MmsMdCommonFsOperation8readFileEjPv +_ZN22MmsMdCommonFsOperation8seekFileElb +_ZN22MmsMdCommonFsOperation8tellFileEv +_ZN22MmsMdCommonFsOperation9closeFileEv +_ZN22MmsMdCommonFsOperationC1Ev +_ZN22MmsMdCommonFsOperationC2Ev +_ZN22MmsMdCommonFsOperationD0Ev +_ZN22MmsMdCommonFsOperationD1Ev +_ZN22MmsMdCommonFsOperationD2Ev +_ZN22ScePssDecoderMP3_orbis19BufferedDecodeChunkEPKhjRjPsjS2_S2_ +_ZN23sceMetadataReaderWriter10ParserInfoC1ERKS0_ +_ZN23sceMetadataReaderWriter10ParserInfoC2ERKS0_ +_ZN23sceMetadataReaderWriter10ParserInfoD2Ev +_ZN23sceMetadataReaderWriter10initializeEv +_ZN23sceMetadataReaderWriter10jpegParser18jpegParserFinalizeEv +_ZN23sceMetadataReaderWriter10jpegParser20jpegParserInitializeEv +_ZN23sceMetadataReaderWriter10jpegParser22jpegParserReadMetadataERKSsRKNS_8MetadataERS3_ +_ZN23sceMetadataReaderWriter10jpegParser23jpegParserWriteMetadataERKSsRKNS_8MetadataE +_ZN23sceMetadataReaderWriter10jpegParser26jpegParserExtractThumbnailERKSsRNS_9ThumbnailE +_ZN23sceMetadataReaderWriter11_storageHddE +_ZN23sceMetadataReaderWriter11getMimeTypeERKSsRSt6vectorIjSaIjEE +_ZN23sceMetadataReaderWriter11gvMp4Parser19gvMp4ParserFinalizeEv +_ZN23sceMetadataReaderWriter11gvMp4Parser21gvMp4ParserInitializeEv +_ZN23sceMetadataReaderWriter11gvMp4Parser23gvMp4ParserReadMetadataERKSsRKNS_8MetadataERS3_ +_ZN23sceMetadataReaderWriter11gvMp4Parser24gvMp4ParserWriteMetadataERKSsRKNS_8MetadataE +_ZN23sceMetadataReaderWriter11gvMp4Parser27gvMp4ParserExtractThumbnailERKSsRNS_9ThumbnailE +_ZN23sceMetadataReaderWriter12_storageHostE +_ZN23sceMetadataReaderWriter12getMimeTypesERKSsiPi +_ZN23sceMetadataReaderWriter12readMetadataERKSsRKNS_8MetadataEjRS2_ +_ZN23sceMetadataReaderWriter13KeyValueArray3getERKSsRNS_5ValueE +_ZN23sceMetadataReaderWriter13KeyValueArray3getEiRSsRNS_5ValueERb +_ZN23sceMetadataReaderWriter13KeyValueArray3setEPNS_8KeyValueE +_ZN23sceMetadataReaderWriter13KeyValueArray6expandEPFPvmEPFvS1_E +_ZN23sceMetadataReaderWriter13KeyValueArray6shrinkEv +_ZN23sceMetadataReaderWriter13KeyValueArray7releaseEPFvPvE +_ZN23sceMetadataReaderWriter13KeyValueArray7releaseERKSsPFvPvE +_ZN23sceMetadataReaderWriter13KeyValueArray7releaseEiPFvPvE +_ZN23sceMetadataReaderWriter13KeyValueArray8allocateEPFPvmEPFvS1_EPi +_ZN23sceMetadataReaderWriter13ParserManager10initializeEv +_ZN23sceMetadataReaderWriter13ParserManager11_loadParserEPKNS_10ParserInfoEj +_ZN23sceMetadataReaderWriter13ParserManager12_checkStatusEv +_ZN23sceMetadataReaderWriter13ParserManager13releaseParserEi +_ZN23sceMetadataReaderWriter13ParserManager13requestParserEii +_ZN23sceMetadataReaderWriter13ParserManager14getParserInfosEjPSt6vectorIPNS_10ParserInfoESaIS3_EE +_ZN23sceMetadataReaderWriter13ParserManager16_unloadLruParserEv +_ZN23sceMetadataReaderWriter13ParserManager17getParserInfoListERSt6vectorINS_10ParserInfoESaIS2_EE +_ZN23sceMetadataReaderWriter13ParserManager18registerParserInfoERKSt6vectorINS_10ParserInfoESaIS2_EE +_ZN23sceMetadataReaderWriter13ParserManager20unregisterParserInfoEv +_ZN23sceMetadataReaderWriter13ParserManager23registerParserInterfaceEjRKNS_15ParserInterfaceE +_ZN23sceMetadataReaderWriter13ParserManager8finalizeEv +_ZN23sceMetadataReaderWriter13ParserManagerC1Ev +_ZN23sceMetadataReaderWriter13ParserManagerC2Ev +_ZN23sceMetadataReaderWriter13_storageTableE +_ZN23sceMetadataReaderWriter13allocateValueERKNS_5ValueEPFPvmEPFvS3_EPPS0_ +_ZN23sceMetadataReaderWriter13isCorrectTypeEPNS_5ValueE +_ZN23sceMetadataReaderWriter13writeMetadataERKSsRKNS_8MetadataEj +_ZN23sceMetadataReaderWriter13writeMetadataERKSsRKNS_8MetadataEjPS2_ +_ZN23sceMetadataReaderWriter14StorageManager10getStorageERKSsPPNS_7StorageE +_ZN23sceMetadataReaderWriter14StorageManager10initializeEv +_ZN23sceMetadataReaderWriter14StorageManager21updateParserInfoTableEv +_ZN23sceMetadataReaderWriter14StorageManager8finalizeEv +_ZN23sceMetadataReaderWriter14StorageManagerC1Ev +_ZN23sceMetadataReaderWriter14StorageManagerC2Ev +_ZN23sceMetadataReaderWriter15ParserInfoTable13getParserInfoEjPPNS_10ParserInfoE +_ZN23sceMetadataReaderWriter15ParserInfoTable14getParserInfosEjPSt6vectorIPNS_10ParserInfoESaIS3_EE +_ZN23sceMetadataReaderWriter15ParserInfoTable17getParserInfoListERSt6vectorINS_10ParserInfoESaIS2_EE +_ZN23sceMetadataReaderWriter15ParserInfoTable18registerParserInfoERKSt6vectorINS_10ParserInfoESaIS2_EE +_ZN23sceMetadataReaderWriter15ParserInfoTable20unregisterParserInfoEv +_ZN23sceMetadataReaderWriter15ParserInfoTable23registerParserInterfaceEjRKNS_15ParserInterfaceE +_ZN23sceMetadataReaderWriter15ParserInfoTableC1Ev +_ZN23sceMetadataReaderWriter15ParserInfoTableC2Ev +_ZN23sceMetadataReaderWriter15ParserInfoTableD1Ev +_ZN23sceMetadataReaderWriter15ParserInfoTableD2Ev +_ZN23sceMetadataReaderWriter15ParserInterfaceC1ERKS0_ +_ZN23sceMetadataReaderWriter15ParserInterfaceC2ERKS0_ +_ZN23sceMetadataReaderWriter15g_parserManagerE +_ZN23sceMetadataReaderWriter16extractExtensionERKSsRSs +_ZN23sceMetadataReaderWriter16extractThumbnailERKSsjRNS_9ThumbnailE +_ZN23sceMetadataReaderWriter16g_storageManagerE +_ZN23sceMetadataReaderWriter16getNumOfMimeTypeERKSsPi +_ZN23sceMetadataReaderWriter17getParserInfoListERSt6vectorINS_10ParserInfoESaIS1_EE +_ZN23sceMetadataReaderWriter18registerParserInfoERKSt6vectorINS_10ParserInfoESaIS1_EE +_ZN23sceMetadataReaderWriter20LoadedParserInfoList13acquireParserEjjPPKNS_10ParserInfoE +_ZN23sceMetadataReaderWriter20LoadedParserInfoList13releaseParserEj +_ZN23sceMetadataReaderWriter20LoadedParserInfoList14registerParserEPKNS_10ParserInfoE +_ZN23sceMetadataReaderWriter20LoadedParserInfoList16unregisterParserEj +_ZN23sceMetadataReaderWriter20LoadedParserInfoList24getUnloadParserCandidateEPj +_ZN23sceMetadataReaderWriter20LoadedParserInfoList6getNumEv +_ZN23sceMetadataReaderWriter20LoadedParserInfoListC1Ev +_ZN23sceMetadataReaderWriter20LoadedParserInfoListC2Ev +_ZN23sceMetadataReaderWriter20unregisterParserInfoEv +_ZN23sceMetadataReaderWriter22StorageParserInfoTable6updateEj +_ZN23sceMetadataReaderWriter22StorageParserInfoTableC1EjPi +_ZN23sceMetadataReaderWriter22StorageParserInfoTableC2EjPi +_ZN23sceMetadataReaderWriter22StorageParserInfoTableD1Ev +_ZN23sceMetadataReaderWriter22StorageParserInfoTableD2Ev +_ZN23sceMetadataReaderWriter23registerParserInterfaceEjRKNS_15ParserInterfaceE +_ZN23sceMetadataReaderWriter5ValueaSERS0_ +_ZN23sceMetadataReaderWriter7LPEntryC1EPKNS_10ParserInfoE +_ZN23sceMetadataReaderWriter7LPEntryC2EPKNS_10ParserInfoE +_ZN23sceMetadataReaderWriter7Storage11getMimeTypeERKSsRSt6vectorIjSaIjEE +_ZN23sceMetadataReaderWriter7Storage12readMetadataERKSsRKNS_8MetadataEjRS3_ +_ZN23sceMetadataReaderWriter7Storage16extractThumbnailERKSsjRNS_9ThumbnailE +_ZN23sceMetadataReaderWriter7Storage21_findParserByFilePathERKSsPPNS_10ParserInfoE +_ZN23sceMetadataReaderWriter7Storage21updateParserInfoTableEv +_ZN23sceMetadataReaderWriter7StorageC1EjPi +_ZN23sceMetadataReaderWriter7StorageC2EjPi +_ZN23sceMetadataReaderWriter7StorageD0Ev +_ZN23sceMetadataReaderWriter7StorageD1Ev +_ZN23sceMetadataReaderWriter7StorageD2Ev +_ZN23sceMetadataReaderWriter8KeyValue7releaseEPFvPvE +_ZN23sceMetadataReaderWriter8KeyValue8allocateEPFPvmEPi +_ZN23sceMetadataReaderWriter8KeyValue8allocateERKSsRKNS_5ValueEPFPvmEPFvS6_EPi +_ZN23sceMetadataReaderWriter8Metadata11DeserializeERN3sce4Json5ValueERS0_ +_ZN23sceMetadataReaderWriter8Metadata11deleteFieldERKSs +_ZN23sceMetadataReaderWriter8Metadata13_selectSubsetERKS0_ +_ZN23sceMetadataReaderWriter8Metadata15iterateAllFieldEPFiRKSsRKNS_5ValueEbE +_ZN23sceMetadataReaderWriter8Metadata8getFieldEiRSsRNS_5ValueE +_ZN23sceMetadataReaderWriter8Metadata8getFieldEiRSsRNS_5ValueERb +_ZN23sceMetadataReaderWriter8Metadata8setFieldERKSs +_ZN23sceMetadataReaderWriter8Metadata8setFieldERKSsRKNS_5ValueE +_ZN23sceMetadataReaderWriter8Metadata9SerializeERS0_RN3sce4Json5ValueE +_ZN23sceMetadataReaderWriter8MetadataC1EPFPvmEPFvS1_E +_ZN23sceMetadataReaderWriter8MetadataC1ERKS0_ +_ZN23sceMetadataReaderWriter8MetadataC1ERKS0_PFPvmEPFvS3_E +_ZN23sceMetadataReaderWriter8MetadataC1Ev +_ZN23sceMetadataReaderWriter8MetadataC2EPFPvmEPFvS1_E +_ZN23sceMetadataReaderWriter8MetadataC2ERKS0_ +_ZN23sceMetadataReaderWriter8MetadataC2ERKS0_PFPvmEPFvS3_E +_ZN23sceMetadataReaderWriter8MetadataC2Ev +_ZN23sceMetadataReaderWriter8MetadataD0Ev +_ZN23sceMetadataReaderWriter8MetadataD1Ev +_ZN23sceMetadataReaderWriter8MetadataD2Ev +_ZN23sceMetadataReaderWriter8MetadataaSERKS0_ +_ZN23sceMetadataReaderWriter8finalizeEv +_ZN23sceMetadataReaderWriter9freeValueEPNS_5ValueEPFvPvE +_ZN24ScePssDecoderAtrac_orbis19BufferedDecodeChunkEPKhjRjPsjS2_S2_ +_ZN24scePssCAudioSourcePlayer12SetPlayStateEit +_ZN24scePssCAudioSourcePlayer9SetVolumeEfjj +_ZN25MmsFileUpdaterFsOperation10AllocLargeEm +_ZN25MmsFileUpdaterFsOperation10initializeEv +_ZN25MmsFileUpdaterFsOperation11moveTmpFileEPKc +_ZN25MmsFileUpdaterFsOperation11openTmpFileEv +_ZN25MmsFileUpdaterFsOperation11seekTmpFileEmb +_ZN25MmsFileUpdaterFsOperation11undoTmpFileEPKc +_ZN25MmsFileUpdaterFsOperation12closeTmpFileEv +_ZN25MmsFileUpdaterFsOperation12writeTmpFileEPKvm +_ZN25MmsFileUpdaterFsOperation13finishTmpFileEv +_ZN25MmsFileUpdaterFsOperation13removeTmpFileEPKc +_ZN25MmsFileUpdaterFsOperation19seekAndWriteTmpFileEmPKvmb +_ZN25MmsFileUpdaterFsOperation8copyFileEmj +_ZN25MmsFileUpdaterFsOperation8finalizeEv +_ZN25MmsFileUpdaterFsOperation8openFileEPKc +_ZN25MmsFileUpdaterFsOperation9FreeLargeEPv +_ZN25MmsFileUpdaterFsOperation9writeFileEPKvj +_ZN25MmsFileUpdaterFsOperationC1Ev +_ZN25MmsFileUpdaterFsOperationC2Ev +_ZN25MmsFileUpdaterFsOperationD0Ev +_ZN25MmsFileUpdaterFsOperationD1Ev +_ZN25MmsFileUpdaterFsOperationD2Ev +_ZN27FilePromoteInnerInformationC1EPKc +_ZN27FilePromoteInnerInformationC2EPKc +_ZN2GK9PlayerPSN11requestGameEb +_ZN2GK9PlayerPSN11setPlatformEv +_ZN2GK9PlayerPSN11setSettingsEPKcb +_ZN2GK9PlayerPSN11shutdownLibEv +_ZN2GK9PlayerPSN13initializeLibEb +_ZN2GK9PlayerPSN14testConnectionEv +_ZN2GK9PlayerPSN15cancelStartGameEv +_ZN2GK9PlayerPSN15requestClientIdEv +_ZN2GK9PlayerPSN17cancelRequestGameEv +_ZN2GK9PlayerPSN4stopEv +_ZN2GK9PlayerPSN5resetEb +_ZN2GK9PlayerPSN5resetEv +_ZN2GK9PlayerPSNC1ERKS0_ +_ZN2GK9PlayerPSNC1Ev +_ZN2GK9PlayerPSNC2ERKS0_ +_ZN2GK9PlayerPSNC2Ev +_ZN2GK9PlayerPSND0Ev +_ZN2GK9PlayerPSND1Ev +_ZN2GK9PlayerPSND2Ev +_ZN2GK9PlayerPSNaSERKS0_ +_ZN2sh10GetInfoLogEPv +_ZN2sh10InitializeEv +_ZN2sh11GetUniformsEPv +_ZN2sh11GetVaryingsEPv +_ZN2sh13GetAttributesEPv +_ZN2sh13GetObjectCodeEPv +_ZN2sh14ShaderVariableC1ERKS0_ +_ZN2sh14ShaderVariableC1Ev +_ZN2sh14ShaderVariableD1Ev +_ZN2sh14ShaderVariableaSERKS0_ +_ZN2sh17ConstructCompilerEj12ShShaderSpec14ShShaderOutputPK18ShBuiltInResources +_ZN2sh20InitBuiltInResourcesEP18ShBuiltInResources +_ZN2sh33CheckVariablesWithinPackingLimitsEiRKSt6vectorINS_14ShaderVariableESaIS1_EE +_ZN2sh7CompileEPvPKPKcmm +_ZN2sh8DestructEPv +_ZN3IPC10Connection24createSyncMessageEncoderENS_15StringReferenceES1_mRm +_ZN3IPC10ConnectionD1Ev +_ZN3IPC13ArgumentCoderIN3WTF6StringEE6decodeERNS_15ArgumentDecoderERS2_ +_ZN3IPC13ArgumentCoderIN3WTF6StringEE6encodeERNS_15ArgumentEncoderERKS2_ +_ZN3IPC13DataReference6decodeERNS_15ArgumentDecoderERS0_ +_ZN3IPC15ArgumentDecoder16removeAttachmentERNS_10AttachmentE +_ZN3IPC15ArgumentDecoder21decodeFixedLengthDataEPhmj +_ZN3IPC15ArgumentDecoder29decodeVariableLengthByteArrayERNS_13DataReferenceE +_ZN3IPC15ArgumentDecoder6decodeERb +_ZN3IPC15ArgumentDecoder6decodeERd +_ZN3IPC15ArgumentDecoder6decodeERf +_ZN3IPC15ArgumentDecoder6decodeERh +_ZN3IPC15ArgumentDecoder6decodeERi +_ZN3IPC15ArgumentDecoder6decodeERj +_ZN3IPC15ArgumentDecoder6decodeERl +_ZN3IPC15ArgumentDecoder6decodeERm +_ZN3IPC15ArgumentDecoder6decodeERt +_ZN3IPC15ArgumentEncoder13addAttachmentEONS_10AttachmentE +_ZN3IPC15ArgumentEncoder18releaseAttachmentsEv +_ZN3IPC15ArgumentEncoder6encodeEb +_ZN3IPC15ArgumentEncoder6encodeEd +_ZN3IPC15ArgumentEncoder6encodeEf +_ZN3IPC15ArgumentEncoder6encodeEh +_ZN3IPC15ArgumentEncoder6encodeEi +_ZN3IPC15ArgumentEncoder6encodeEj +_ZN3IPC15ArgumentEncoder6encodeEl +_ZN3IPC15ArgumentEncoder6encodeEm +_ZN3IPC15ArgumentEncoder6encodeEt +_ZN3IPC18MessageReceiverMap15dispatchMessageERNS_10ConnectionERNS_14MessageDecoderE +_ZN3IPC18MessageReceiverMap19dispatchSyncMessageERNS_10ConnectionERNS_14MessageDecoderERSt10unique_ptrINS_14MessageEncoderESt14default_deleteIS6_EE +_ZN3IPC18MessageReceiverMap21removeMessageReceiverENS_15StringReferenceE +_ZN3JSC10ConfigFile14setProcessNameEPKc +_ZN3JSC10ConfigFile20setParentProcessNameEPKc +_ZN3JSC10ConfigFile5parseEv +_ZN3JSC10ConfigFileC1EPKc +_ZN3JSC10ConfigFileC2EPKc +_ZN3JSC10Identifier27checkCurrentAtomStringTableERNS_2VME +_ZN3JSC10Identifier29checkCurrentAtomicStringTableEPNS_2VME +_ZN3JSC10Identifier29checkCurrentAtomicStringTableEPNS_9ExecStateE +_ZN3JSC10Identifier3addEPNS_2VMEPKc +_ZN3JSC10Identifier3addEPNS_9ExecStateEPKc +_ZN3JSC10Identifier3addERNS_2VMEPKc +_ZN3JSC10Identifier4fromEPNS_9ExecStateEi +_ZN3JSC10Identifier4fromEPNS_9ExecStateEj +_ZN3JSC10Identifier4fromERNS_2VMEd +_ZN3JSC10Identifier4fromERNS_2VMEi +_ZN3JSC10Identifier4fromERNS_2VMEj +_ZN3JSC10IsoCellSet33parallelNotEmptyMarkedBlockSourceEv +_ZN3JSC10JSCellLock10unlockSlowEv +_ZN3JSC10JSCellLock8lockSlowEv +_ZN3JSC10JSDataView6createEPNS_14JSGlobalObjectEPNS_9StructureEON3WTF6RefPtrINS_11ArrayBufferENS5_13DumbPtrTraitsIS7_EEEEjj +_ZN3JSC10JSDataView6createEPNS_9ExecStateEPNS_9StructureEON3WTF6RefPtrINS_11ArrayBufferENS5_13DumbPtrTraitsIS7_EEEEjj +_ZN3JSC10JSDataView6s_infoE +_ZN3JSC10JSDollarVM6s_infoE +_ZN3JSC10JSFunction11displayNameERNS_2VME +_ZN3JSC10JSFunction11getCallDataEPNS_6JSCellE +_ZN3JSC10JSFunction16getConstructDataEPNS_6JSCellE +_ZN3JSC10JSFunction21calculatedDisplayNameERNS_2VME +_ZN3JSC10JSFunction4nameERNS_2VME +_ZN3JSC10JSFunction6createERNS_2VMEPNS_14JSGlobalObjectEiRKN3WTF6StringENS_14NativeFunctionENS_9IntrinsicES9_PKNS_6DOMJIT9SignatureE +_ZN3JSC10JSFunction6createERNS_2VMEPNS_18FunctionExecutableEPNS_7JSScopeE +_ZN3JSC10JSFunction6s_infoE +_ZN3JSC10JSFunctionC1ERNS_2VMEPNS_14JSGlobalObjectEPNS_9StructureE +_ZN3JSC10JSFunctionC1ERNS_2VMEPNS_16NativeExecutableEPNS_14JSGlobalObjectEPNS_9StructureE +_ZN3JSC10JSFunctionC2ERNS_2VMEPNS_14JSGlobalObjectEPNS_9StructureE +_ZN3JSC10JSFunctionC2ERNS_2VMEPNS_16NativeExecutableEPNS_14JSGlobalObjectEPNS_9StructureE +_ZN3JSC10LinkBuffer31finalizeCodeWithDisassemblyImplEbPKcz +_ZN3JSC10LinkBuffer34finalizeCodeWithoutDisassemblyImplEv +_ZN3JSC10LinkBuffer8linkCodeERNS_14MacroAssemblerENS_20JITCompilationEffortE +_ZN3JSC10callSetterEPNS_14JSGlobalObjectENS_7JSValueES2_S2_NS_8ECMAModeE +_ZN3JSC10callSetterEPNS_9ExecStateENS_7JSValueES2_S2_NS_8ECMAModeE +_ZN3JSC10initializeEv +_ZN3JSC10loadModuleEPNS_14JSGlobalObjectERKN3WTF6StringENS_7JSValueES6_ +_ZN3JSC10loadModuleEPNS_14JSGlobalObjectERKNS_10SourceCodeENS_7JSValueE +_ZN3JSC10loadModuleEPNS_9ExecStateERKN3WTF6StringENS_7JSValueES6_ +_ZN3JSC10loadModuleEPNS_9ExecStateERKNS_10SourceCodeENS_7JSValueE +_ZN3JSC11ArrayBuffer10transferToERNS_2VMERNS_19ArrayBufferContentsE +_ZN3JSC11ArrayBuffer13createAdoptedEPKvj +_ZN3JSC11ArrayBuffer15createFromBytesEPKvjON3WTF6RefPtrINS3_10SharedTaskIFvPvEEENS3_13DumbPtrTraitsIS8_EEEE +_ZN3JSC11ArrayBuffer15createFromBytesEPKvjON3WTF8FunctionIFvPvEEE +_ZN3JSC11ArrayBuffer19createUninitializedEjj +_ZN3JSC11ArrayBuffer22tryCreateUninitializedEjj +_ZN3JSC11ArrayBuffer27primitiveGigacageDestructorEv +_ZN3JSC11ArrayBuffer6createEONS_19ArrayBufferContentsE +_ZN3JSC11ArrayBuffer6createEPKvj +_ZN3JSC11ArrayBuffer6createERS0_ +_ZN3JSC11ArrayBuffer6createEjj +_ZN3JSC11ArrayBuffer9shareWithERNS_19ArrayBufferContentsE +_ZN3JSC11ArrayBuffer9tryCreateEPKvj +_ZN3JSC11ArrayBuffer9tryCreateERS0_ +_ZN3JSC11ArrayBuffer9tryCreateEjj +_ZN3JSC11FuzzerAgent13getPredictionEPNS_9CodeBlockERKNS_10CodeOriginEm +_ZN3JSC11FuzzerAgentD0Ev +_ZN3JSC11FuzzerAgentD1Ev +_ZN3JSC11FuzzerAgentD2Ev +_ZN3JSC11Interpreter13dumpCallFrameEPNS_9ExecStateE +_ZN3JSC11IsoSubspaceC1EN3WTF7CStringERNS_4HeapEPNS_12HeapCellTypeEm +_ZN3JSC11IsoSubspaceC1EN3WTF7CStringERNS_4HeapEPNS_12HeapCellTypeEmh +_ZN3JSC11IsoSubspaceC2EN3WTF7CStringERNS_4HeapEPNS_12HeapCellTypeEm +_ZN3JSC11IsoSubspaceC2EN3WTF7CStringERNS_4HeapEPNS_12HeapCellTypeEmh +_ZN3JSC11IsoSubspaceD0Ev +_ZN3JSC11IsoSubspaceD1Ev +_ZN3JSC11IsoSubspaceD2Ev +_ZN3JSC11JSGenerator6s_infoE +_ZN3JSC11JSWithScope6createERNS_2VMEPNS_14JSGlobalObjectEPNS_7JSScopeEPNS_8JSObjectE +_ZN3JSC11JSWithScope6s_infoE +_ZN3JSC11MarkedBlock13areMarksStaleEv +_ZN3JSC11MarkedBlock15aboutToMarkSlowEj +_ZN3JSC11MarkedBlock6Handle13areMarksStaleEv +_ZN3JSC11MarkedSpace22s_sizeClassForSizeStepE +_ZN3JSC11ProxyObject14finishCreationERNS_2VMEPNS_14JSGlobalObjectENS_7JSValueES5_ +_ZN3JSC11ProxyObject14finishCreationERNS_2VMEPNS_9ExecStateENS_7JSValueES5_ +_ZN3JSC11ProxyObject18structureForTargetEPNS_14JSGlobalObjectENS_7JSValueE +_ZN3JSC11ProxyObject6s_infoE +_ZN3JSC11ProxyObjectC1ERNS_2VMEPNS_9StructureE +_ZN3JSC11ProxyObjectC2ERNS_2VMEPNS_9StructureE +_ZN3JSC11RegisterSet12argumentGPRSEv +_ZN3JSC11RegisterSet14stackRegistersEv +_ZN3JSC11RegisterSet19calleeSaveRegistersEv +_ZN3JSC11RegisterSet21macroScratchRegistersEv +_ZN3JSC11RegisterSet25reservedHardwareRegistersEv +_ZN3JSC11RegisterSet7allFPRsEv +_ZN3JSC11RegisterSet7allGPRsEv +_ZN3JSC11SlotVisitor10appendSlowEPNS_6JSCellEN3WTF10DependencyE +_ZN3JSC11SlotVisitor16appendHiddenSlowEPNS_6JSCellEN3WTF10DependencyE +_ZN3JSC11SlotVisitor25addParallelConstraintTaskEN3WTF6RefPtrINS1_10SharedTaskIFvRS0_EEENS1_13DumbPtrTraitsIS6_EEEE +_ZN3JSC11SymbolTable14finishCreationERNS_2VME +_ZN3JSC11SymbolTable6s_infoE +_ZN3JSC11SymbolTableC1ERNS_2VME +_ZN3JSC11SymbolTableC2ERNS_2VME +_ZN3JSC11VMInspector11isValidCellEPNS_4HeapEPNS_6JSCellE +_ZN3JSC11VMInspector13dumpCallFrameEPNS_2VMEPNS_9CallFrameEj +_ZN3JSC11VMInspector13dumpCallFrameEPNS_9ExecStateEj +_ZN3JSC11VMInspector13dumpRegistersEPNS_9CallFrameE +_ZN3JSC11VMInspector14dumpCellMemoryEPNS_6JSCellE +_ZN3JSC11VMInspector16isValidCodeBlockEPNS_2VMEPNS_9CodeBlockE +_ZN3JSC11VMInspector16isValidCodeBlockEPNS_9ExecStateEPNS_9CodeBlockE +_ZN3JSC11VMInspector17codeBlockForFrameEPNS_2VMEPNS_9CallFrameEj +_ZN3JSC11VMInspector17codeBlockForFrameEPNS_9ExecStateEj +_ZN3JSC11VMInspector18dumpSubspaceHashesEPNS_2VME +_ZN3JSC11VMInspector22dumpCellMemoryToStreamEPNS_6JSCellERN3WTF11PrintStreamE +_ZN3JSC11VMInspector23currentThreadOwnsJSLockEPNS_2VME +_ZN3JSC11VMInspector23currentThreadOwnsJSLockEPNS_9ExecStateE +_ZN3JSC11VMInspector2gcEPNS_2VME +_ZN3JSC11VMInspector2gcEPNS_9ExecStateE +_ZN3JSC11VMInspector6edenGCEPNS_2VME +_ZN3JSC11VMInspector6edenGCEPNS_9ExecStateE +_ZN3JSC11VMInspector8isInHeapEPNS_4HeapEPv +_ZN3JSC11VMInspector9dumpStackEPNS_2VMEPNS_9CallFrameEj +_ZN3JSC11VMInspector9dumpStackEPNS_9ExecStateEj +_ZN3JSC11VMInspector9dumpValueENS_7JSValueE +_ZN3JSC11VMInspector9forEachVMEON3WTF8FunctionIFNS0_13FunctorStatusERNS_2VMEEEE +_ZN3JSC11checkSyntaxEPNS_14JSGlobalObjectERKNS_10SourceCodeEPNS_7JSValueE +_ZN3JSC11checkSyntaxEPNS_9ExecStateERKNS_10SourceCodeEPNS_7JSValueE +_ZN3JSC11checkSyntaxERNS_2VMERKNS_10SourceCodeERNS_11ParserErrorE +_ZN3JSC11createErrorEPNS_14JSGlobalObjectENS_22ErrorTypeWithExtensionERKN3WTF6StringE +_ZN3JSC11createErrorEPNS_14JSGlobalObjectENS_7JSValueERKN3WTF6StringEPFS4_S6_S6_NS_11RuntimeTypeENS_13ErrorInstance28SourceTextWhereErrorOccurredEE +_ZN3JSC11createErrorEPNS_14JSGlobalObjectENS_9ErrorTypeERKN3WTF6StringE +_ZN3JSC11createErrorEPNS_14JSGlobalObjectERKN3WTF6StringE +_ZN3JSC11createErrorEPNS_9ExecStateENS_7JSValueERKN3WTF6StringEPFS4_S6_S6_NS_11RuntimeTypeENS_13ErrorInstance28SourceTextWhereErrorOccurredEE +_ZN3JSC11createErrorEPNS_9ExecStateENS_9ErrorTypeERKN3WTF6StringE +_ZN3JSC11createErrorEPNS_9ExecStateERKN3WTF6StringE +_ZN3JSC11regExpFlagsERKN3WTF6StringE +_ZN3JSC12BigIntObject14finishCreationERNS_2VMENS_7JSValueE +_ZN3JSC12BigIntObject14finishCreationERNS_2VMEPNS_8JSBigIntE +_ZN3JSC12BigIntObject6createERNS_2VMEPNS_14JSGlobalObjectENS_7JSValueE +_ZN3JSC12BigIntObject6s_infoE +_ZN3JSC12BigIntObjectC1ERNS_2VMEPNS_9StructureE +_ZN3JSC12BigIntObjectC2ERNS_2VMEPNS_9StructureE +_ZN3JSC12CachePayload16makeEmptyPayloadEv +_ZN3JSC12CachePayload17makeMallocPayloadEON3WTF9MallocPtrIhNS1_10FastMallocEEEm +_ZN3JSC12CachePayload17makeMappedPayloadEON3WTF14FileSystemImpl14MappedFileDataE +_ZN3JSC12CachePayloadC1EOS0_ +_ZN3JSC12CachePayloadC2EOS0_ +_ZN3JSC12CachePayloadD1Ev +_ZN3JSC12CachePayloadD2Ev +_ZN3JSC12CachePayloadaSEOS0_ +_ZN3JSC12DateInstance14finishCreationERNS_2VMEd +_ZN3JSC12DateInstance6s_infoE +_ZN3JSC12DateInstance7destroyEPNS_6JSCellE +_ZN3JSC12DateInstanceC1ERNS_2VMEPNS_9StructureE +_ZN3JSC12DateInstanceC2ERNS_2VMEPNS_9StructureE +_ZN3JSC12GetterSetter6s_infoE +_ZN3JSC12GlobalJSLockC1Ev +_ZN3JSC12GlobalJSLockC2Ev +_ZN3JSC12GlobalJSLockD1Ev +_ZN3JSC12GlobalJSLockD2Ev +_ZN3JSC12HeapAnalyzerC2ERKS0_ +_ZN3JSC12HeapAnalyzerC2Ev +_ZN3JSC12HeapAnalyzerD0Ev +_ZN3JSC12HeapAnalyzerD1Ev +_ZN3JSC12HeapAnalyzerD2Ev +_ZN3JSC12HeapAnalyzeraSERKS0_ +_ZN3JSC12HeapCellTypeC1ENS_14CellAttributesE +_ZN3JSC12HeapCellTypeC2ENS_14CellAttributesE +_ZN3JSC12HeapCellTypeD0Ev +_ZN3JSC12HeapCellTypeD1Ev +_ZN3JSC12HeapCellTypeD2Ev +_ZN3JSC12HeapVerifier12validateCellEPNS_8HeapCellEPNS_2VME +_ZN3JSC12HeapVerifier15checkIfRecordedEm +_ZN3JSC12JSLockHolderC1EPNS_14JSGlobalObjectE +_ZN3JSC12JSLockHolderC1EPNS_2VME +_ZN3JSC12JSLockHolderC1EPNS_9ExecStateE +_ZN3JSC12JSLockHolderC1ERNS_2VME +_ZN3JSC12JSLockHolderC2EPNS_14JSGlobalObjectE +_ZN3JSC12JSLockHolderC2EPNS_2VME +_ZN3JSC12JSLockHolderC2EPNS_9ExecStateE +_ZN3JSC12JSLockHolderC2ERNS_2VME +_ZN3JSC12JSLockHolderD1Ev +_ZN3JSC12JSLockHolderD2Ev +_ZN3JSC12JSSourceCode6s_infoE +_ZN3JSC12NumberObject6s_infoE +_ZN3JSC12RegExpObject14deletePropertyEPNS_6JSCellEPNS_14JSGlobalObjectENS_12PropertyNameERNS_18DeletePropertySlotE +_ZN3JSC12RegExpObject14deletePropertyEPNS_6JSCellEPNS_9ExecStateENS_12PropertyNameE +_ZN3JSC12RegExpObject14finishCreationERNS_2VME +_ZN3JSC12RegExpObject16getPropertyNamesEPNS_8JSObjectEPNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE +_ZN3JSC12RegExpObject16getPropertyNamesEPNS_8JSObjectEPNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE +_ZN3JSC12RegExpObject17defineOwnPropertyEPNS_8JSObjectEPNS_14JSGlobalObjectENS_12PropertyNameERKNS_18PropertyDescriptorEb +_ZN3JSC12RegExpObject17defineOwnPropertyEPNS_8JSObjectEPNS_9ExecStateENS_12PropertyNameERKNS_18PropertyDescriptorEb +_ZN3JSC12RegExpObject23getGenericPropertyNamesEPNS_8JSObjectEPNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE +_ZN3JSC12RegExpObject23getGenericPropertyNamesEPNS_8JSObjectEPNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE +_ZN3JSC12RegExpObject27getOwnNonIndexPropertyNamesEPNS_8JSObjectEPNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE +_ZN3JSC12RegExpObject27getOwnNonIndexPropertyNamesEPNS_8JSObjectEPNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE +_ZN3JSC12RegExpObject6s_infoE +_ZN3JSC12RegExpObjectC1ERNS_2VMEPNS_9StructureEPNS_6RegExpE +_ZN3JSC12RegExpObjectC2ERNS_2VMEPNS_9StructureEPNS_6RegExpE +_ZN3JSC12SmallStrings24singleCharacterStringRepEh +_ZN3JSC12StackVisitor13gotoNextFrameEv +_ZN3JSC12StackVisitor5Frame8sourceIDEv +_ZN3JSC12StackVisitorC1EPNS_9CallFrameERNS_2VME +_ZN3JSC12StackVisitorC1EPNS_9ExecStateEPNS_2VME +_ZN3JSC12StackVisitorC2EPNS_9CallFrameERNS_2VME +_ZN3JSC12StackVisitorC2EPNS_9ExecStateEPNS_2VME +_ZN3JSC12StringObject10putByIndexEPNS_6JSCellEPNS_14JSGlobalObjectEjNS_7JSValueEb +_ZN3JSC12StringObject10putByIndexEPNS_6JSCellEPNS_9ExecStateEjNS_7JSValueEb +_ZN3JSC12StringObject14deletePropertyEPNS_6JSCellEPNS_14JSGlobalObjectENS_12PropertyNameERNS_18DeletePropertySlotE +_ZN3JSC12StringObject14deletePropertyEPNS_6JSCellEPNS_9ExecStateENS_12PropertyNameE +_ZN3JSC12StringObject14finishCreationERNS_2VMEPNS_8JSStringE +_ZN3JSC12StringObject17defineOwnPropertyEPNS_8JSObjectEPNS_14JSGlobalObjectENS_12PropertyNameERKNS_18PropertyDescriptorEb +_ZN3JSC12StringObject17defineOwnPropertyEPNS_8JSObjectEPNS_9ExecStateENS_12PropertyNameERKNS_18PropertyDescriptorEb +_ZN3JSC12StringObject18getOwnPropertySlotEPNS_8JSObjectEPNS_14JSGlobalObjectENS_12PropertyNameERNS_12PropertySlotE +_ZN3JSC12StringObject18getOwnPropertySlotEPNS_8JSObjectEPNS_9ExecStateENS_12PropertyNameERNS_12PropertySlotE +_ZN3JSC12StringObject19getOwnPropertyNamesEPNS_8JSObjectEPNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE +_ZN3JSC12StringObject19getOwnPropertyNamesEPNS_8JSObjectEPNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE +_ZN3JSC12StringObject21deletePropertyByIndexEPNS_6JSCellEPNS_14JSGlobalObjectEj +_ZN3JSC12StringObject21deletePropertyByIndexEPNS_6JSCellEPNS_9ExecStateEj +_ZN3JSC12StringObject25getOwnPropertySlotByIndexEPNS_8JSObjectEPNS_14JSGlobalObjectEjRNS_12PropertySlotE +_ZN3JSC12StringObject25getOwnPropertySlotByIndexEPNS_8JSObjectEPNS_9ExecStateEjRNS_12PropertySlotE +_ZN3JSC12StringObject27getOwnNonIndexPropertyNamesEPNS_8JSObjectEPNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE +_ZN3JSC12StringObject27getOwnNonIndexPropertyNamesEPNS_8JSObjectEPNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE +_ZN3JSC12StringObject3putEPNS_6JSCellEPNS_14JSGlobalObjectENS_12PropertyNameENS_7JSValueERNS_15PutPropertySlotE +_ZN3JSC12StringObject3putEPNS_6JSCellEPNS_9ExecStateENS_12PropertyNameENS_7JSValueERNS_15PutPropertySlotE +_ZN3JSC12StringObject6s_infoE +_ZN3JSC12StringObjectC1ERNS_2VMEPNS_9StructureE +_ZN3JSC12StringObjectC2ERNS_2VMEPNS_9StructureE +_ZN3JSC12SymbolObject14finishCreationERNS_2VMEPNS_6SymbolE +_ZN3JSC12SymbolObject6s_infoE +_ZN3JSC12SymbolObjectC1ERNS_2VMEPNS_9StructureE +_ZN3JSC12SymbolObjectC2ERNS_2VMEPNS_9StructureE +_ZN3JSC12TypeProfiler36typeInformationForExpressionAtOffsetENS_28TypeProfilerSearchDescriptorEjlRNS_2VME +_ZN3JSC12VMEntryScopeC1ERNS_2VMEPNS_14JSGlobalObjectE +_ZN3JSC12VMEntryScopeC2ERNS_2VMEPNS_14JSGlobalObjectE +_ZN3JSC12VMEntryScopeD1Ev +_ZN3JSC12VMEntryScopeD2Ev +_ZN3JSC12addErrorInfoEPNS_14JSGlobalObjectEPNS_8JSObjectEb +_ZN3JSC12addErrorInfoEPNS_9ExecStateEPNS_8JSObjectEb +_ZN3JSC12importModuleEPNS_14JSGlobalObjectERKNS_10IdentifierENS_7JSValueES5_ +_ZN3JSC12importModuleEPNS_9ExecStateERKNS_10IdentifierENS_7JSValueES5_ +_ZN3JSC12isFromJSCodeEPv +_ZN3JSC12iteratorStepEPNS_14JSGlobalObjectENS_15IterationRecordE +_ZN3JSC12iteratorStepEPNS_9ExecStateENS_15IterationRecordE +_ZN3JSC12profiledCallEPNS_14JSGlobalObjectENS_15ProfilingReasonENS_7JSValueERKNS_8CallDataES3_RKNS_7ArgListE +_ZN3JSC12profiledCallEPNS_14JSGlobalObjectENS_15ProfilingReasonENS_7JSValueERKNS_8CallDataES3_RKNS_7ArgListERN3WTF8NakedPtrINS_9ExceptionEEE +_ZN3JSC12profiledCallEPNS_9ExecStateENS_15ProfilingReasonENS_7JSValueENS_8CallTypeERKNS_8CallDataES3_RKNS_7ArgListE +_ZN3JSC12profiledCallEPNS_9ExecStateENS_15ProfilingReasonENS_7JSValueENS_8CallTypeERKNS_8CallDataES3_RKNS_7ArgListERN3WTF8NakedPtrINS_9ExceptionEEE +_ZN3JSC13BooleanObject14finishCreationERNS_2VME +_ZN3JSC13BooleanObject6s_infoE +_ZN3JSC13BooleanObjectC1ERNS_2VMEPNS_9StructureE +_ZN3JSC13BooleanObjectC2ERNS_2VMEPNS_9StructureE +_ZN3JSC13ConsoleClient19printConsoleMessageENS_13MessageSourceENS_11MessageTypeENS_12MessageLevelERKN3WTF6StringES7_jj +_ZN3JSC13ConsoleClient32printConsoleMessageWithArgumentsENS_13MessageSourceENS_11MessageTypeENS_12MessageLevelEPNS_14JSGlobalObjectEON3WTF3RefIN9Inspector15ScriptArgumentsENS6_13DumbPtrTraitsIS9_EEEE +_ZN3JSC13ConsoleClient32printConsoleMessageWithArgumentsENS_13MessageSourceENS_11MessageTypeENS_12MessageLevelEPNS_9ExecStateEON3WTF3RefIN9Inspector15ScriptArgumentsENS6_13DumbPtrTraitsIS9_EEEE +_ZN3JSC13DebuggerScope6createERNS_2VMEPNS_7JSScopeE +_ZN3JSC13DebuggerScope6s_infoE +_ZN3JSC13ErrorInstance17sanitizedToStringEPNS_14JSGlobalObjectE +_ZN3JSC13ErrorInstance17sanitizedToStringEPNS_9ExecStateE +_ZN3JSC13ErrorInstance6s_infoE +_ZN3JSC13InferredValue15notifyWriteSlowERNS_2VMENS_7JSValueEPKc +_ZN3JSC13InferredValue15notifyWriteSlowERNS_2VMENS_7JSValueERKNS_10FireDetailE +_ZN3JSC13JSArrayBuffer6createERNS_2VMEPNS_9StructureEON3WTF6RefPtrINS_11ArrayBufferENS5_13DumbPtrTraitsIS7_EEEE +_ZN3JSC13JSArrayBuffer6s_infoE +_ZN3JSC13JSFinalObject13visitChildrenEPNS_6JSCellERNS_11SlotVisitorE +_ZN3JSC13JSFinalObject6s_infoE +_ZN3JSC13JSMapIterator14finishCreationERNS_2VMEPNS_5JSMapE +_ZN3JSC13JSMapIterator14finishCreationERNS_2VMEPNS_5JSMapENS_13IterationKindE +_ZN3JSC13JSMapIterator6s_infoE +_ZN3JSC13JSONStringifyEPNS_14JSGlobalObjectENS_7JSValueES2_ +_ZN3JSC13JSONStringifyEPNS_14JSGlobalObjectENS_7JSValueEj +_ZN3JSC13JSONStringifyEPNS_9ExecStateENS_7JSValueEj +_ZN3JSC13JSSetIterator10createPairEPNS_14JSGlobalObjectENS_7JSValueES3_ +_ZN3JSC13JSSetIterator10createPairEPNS_9ExecStateENS_7JSValueES3_ +_ZN3JSC13JSSetIterator14finishCreationERNS_2VMEPNS_5JSSetE +_ZN3JSC13JSSetIterator14finishCreationERNS_2VMEPNS_5JSSetENS_13IterationKindE +_ZN3JSC13JSSetIterator6s_infoE +_ZN3JSC13PropertyTable6s_infoE +_ZN3JSC13RuntimeMethod12lengthGetterEPNS_9ExecStateElNS_12PropertyNameE +_ZN3JSC13RuntimeMethod14finishCreationERNS_2VMERKN3WTF6StringE +_ZN3JSC13RuntimeMethod15createPrototypeERNS_2VMERNS_14JSGlobalObjectE +_ZN3JSC13RuntimeMethod15createStructureERNS_2VMEPNS_14JSGlobalObjectENS_7JSValueE +_ZN3JSC13RuntimeMethod15subspaceForImplERNS_2VME +_ZN3JSC13RuntimeMethod18getOwnPropertySlotEPNS_8JSObjectEPNS_14JSGlobalObjectENS_12PropertyNameERNS_12PropertySlotE +_ZN3JSC13RuntimeMethod18getOwnPropertySlotEPNS_8JSObjectEPNS_9ExecStateENS_12PropertyNameERNS_12PropertySlotE +_ZN3JSC13RuntimeMethod4infoEv +_ZN3JSC13RuntimeMethod6createEPNS_14JSGlobalObjectES2_PNS_9StructureERKN3WTF6StringEPNS_8Bindings6MethodE +_ZN3JSC13RuntimeMethod6createEPNS_9ExecStateEPNS_14JSGlobalObjectEPNS_9StructureERKN3WTF6StringEPNS_8Bindings6MethodE +_ZN3JSC13RuntimeMethod6s_infoE +_ZN3JSC13RuntimeMethodC1EPNS_14JSGlobalObjectEPNS_9StructureEPNS_8Bindings6MethodE +_ZN3JSC13RuntimeMethodC1ERNS_2VMEPNS_9StructureEPNS_8Bindings6MethodE +_ZN3JSC13RuntimeMethodC2EPNS_14JSGlobalObjectEPNS_9StructureEPNS_8Bindings6MethodE +_ZN3JSC13RuntimeMethodC2ERNS_2VMEPNS_9StructureEPNS_8Bindings6MethodE +_ZN3JSC13ShadowChicken16functionsOnStackEPNS_14JSGlobalObjectEPNS_9CallFrameE +_ZN3JSC13ShadowChicken16functionsOnStackEPNS_9ExecStateE +_ZN3JSC13WatchpointSet11fireAllSlowERNS_2VMEPKc +_ZN3JSC13WatchpointSet11fireAllSlowERNS_2VMEPNS_22DeferredWatchpointFireE +_ZN3JSC13WatchpointSet11fireAllSlowERNS_2VMERKNS_10FireDetailE +_ZN3JSC13WatchpointSetC1ENS_15WatchpointStateE +_ZN3JSC13WatchpointSetC2ENS_15WatchpointStateE +_ZN3JSC13WatchpointSetD1Ev +_ZN3JSC13WatchpointSetD2Ev +_ZN3JSC13iteratorCloseEPNS_14JSGlobalObjectENS_15IterationRecordE +_ZN3JSC13iteratorCloseEPNS_9ExecStateENS_15IterationRecordE +_ZN3JSC13iteratorValueEPNS_14JSGlobalObjectENS_7JSValueE +_ZN3JSC13iteratorValueEPNS_9ExecStateENS_7JSValueE +_ZN3JSC13vmEntryToWasmEPvPNS_2VMEPNS_14ProtoCallFrameE +_ZN3JSC14AggregateError6s_infoE +_ZN3JSC14ArrayPrototype6s_infoE +_ZN3JSC14CachedBytecode15addGlobalUpdateEN3WTF3RefIS0_NS1_13DumbPtrTraitsIS0_EEEE +_ZN3JSC14CachedBytecode17addFunctionUpdateEPKNS_26UnlinkedFunctionExecutableENS_22CodeSpecializationKindEN3WTF3RefIS0_NS5_13DumbPtrTraitsIS0_EEEE +_ZN3JSC14ExecutableBase6s_infoE +_ZN3JSC14JSGlobalObject10globalExecEv +_ZN3JSC14JSGlobalObject13clearRareDataEPNS_6JSCellE +_ZN3JSC14JSGlobalObject13visitChildrenEPNS_6JSCellERNS_11SlotVisitorE +_ZN3JSC14JSGlobalObject14exposeDollarVMERNS_2VME +_ZN3JSC14JSGlobalObject14finishCreationERNS_2VME +_ZN3JSC14JSGlobalObject14finishCreationERNS_2VMEPNS_8JSObjectE +_ZN3JSC14JSGlobalObject14queueMicrotaskEON3WTF3RefINS_9MicrotaskENS1_13DumbPtrTraitsIS3_EEEE +_ZN3JSC14JSGlobalObject16addStaticGlobalsEPNS0_18GlobalPropertyInfoEi +_ZN3JSC14JSGlobalObject17defineOwnPropertyEPNS_8JSObjectEPNS_9ExecStateENS_12PropertyNameERKNS_18PropertyDescriptorEb +_ZN3JSC14JSGlobalObject17defineOwnPropertyEPNS_8JSObjectEPS0_NS_12PropertyNameERKNS_18PropertyDescriptorEb +_ZN3JSC14JSGlobalObject18getOwnPropertySlotEPNS_8JSObjectEPNS_9ExecStateENS_12PropertyNameERNS_12PropertySlotE +_ZN3JSC14JSGlobalObject18getOwnPropertySlotEPNS_8JSObjectEPS0_NS_12PropertyNameERNS_12PropertySlotE +_ZN3JSC14JSGlobalObject25s_globalObjectMethodTableE +_ZN3JSC14JSGlobalObject25setRemoteDebuggingEnabledEb +_ZN3JSC14JSGlobalObject30deprecatedCallFrameForDebuggerEv +_ZN3JSC14JSGlobalObject3putEPNS_6JSCellEPNS_9ExecStateENS_12PropertyNameENS_7JSValueERNS_15PutPropertySlotE +_ZN3JSC14JSGlobalObject3putEPNS_6JSCellEPS0_NS_12PropertyNameENS_7JSValueERNS_15PutPropertySlotE +_ZN3JSC14JSGlobalObject4initERNS_2VME +_ZN3JSC14JSGlobalObject6createERNS_2VMEPNS_9StructureE +_ZN3JSC14JSGlobalObject6s_infoE +_ZN3JSC14JSGlobalObject7destroyEPNS_6JSCellE +_ZN3JSC14JSGlobalObjectC1ERNS_2VMEPNS_9StructureEPKNS_23GlobalObjectMethodTableE +_ZN3JSC14JSGlobalObjectC2ERNS_2VMEPNS_9StructureEPKNS_23GlobalObjectMethodTableE +_ZN3JSC14JSGlobalObjectD1Ev +_ZN3JSC14JSGlobalObjectD2Ev +_ZN3JSC14JSModuleRecord6s_infoE +_ZN3JSC14JSModuleRecord8evaluateEPNS_14JSGlobalObjectE +_ZN3JSC14JSModuleRecord8evaluateEPNS_9ExecStateE +_ZN3JSC14JSRunLoopTimer13timeUntilFireEv +_ZN3JSC14JSRunLoopTimer23addTimerSetNotificationEN3WTF6RefPtrINS1_10SharedTaskIFvvEEENS1_13DumbPtrTraitsIS5_EEEE +_ZN3JSC14JSRunLoopTimer26removeTimerSetNotificationEN3WTF6RefPtrINS1_10SharedTaskIFvvEEENS1_13DumbPtrTraitsIS5_EEEE +_ZN3JSC14JSRunLoopTimerD0Ev +_ZN3JSC14JSRunLoopTimerD1Ev +_ZN3JSC14JSRunLoopTimerD2Ev +_ZN3JSC14LocalAllocator16allocateSlowCaseEPNS_17GCDeferralContextENS_21AllocationFailureModeE +_ZN3JSC14LocalAllocator16allocateSlowCaseERNS_4HeapEPNS_17GCDeferralContextENS_21AllocationFailureModeE +_ZN3JSC14ProtoCallFrame11setArgumentEmNS_7JSValueE +_ZN3JSC14ProtoCallFrame12setCodeBlockEPNS_9CodeBlockE +_ZN3JSC14ProtoCallFrame12setThisValueENS_7JSValueE +_ZN3JSC14ProtoCallFrame14needArityCheckEv +_ZN3JSC14ProtoCallFrame15clearCurrentVPCEv +_ZN3JSC14ProtoCallFrame15setGlobalObjectEPNS_14JSGlobalObjectE +_ZN3JSC14ProtoCallFrame17setPaddedArgCountEj +_ZN3JSC14ProtoCallFrame29setArgumentCountIncludingThisEi +_ZN3JSC14ProtoCallFrame4initEPNS_9CodeBlockEPNS_14JSGlobalObjectEPNS_8JSObjectENS_7JSValueEiPS7_ +_ZN3JSC14ProtoCallFrame4initEPNS_9CodeBlockEPNS_8JSObjectENS_7JSValueEiPS5_ +_ZN3JSC14ProtoCallFrame8argumentEm +_ZN3JSC14ProtoCallFrame9setCalleeEPNS_8JSObjectE +_ZN3JSC14ProtoCallFrameC1Ev +_ZN3JSC14ProtoCallFrameC2Ev +_ZN3JSC14ProtoCallFrameaSERKS0_ +_ZN3JSC14SourceProvider5getIDEv +_ZN3JSC14SourceProviderC2ERKNS_12SourceOriginEON3WTF6StringERKNS4_12TextPositionENS_24SourceProviderSourceTypeE +_ZN3JSC14SourceProviderC2ERKNS_12SourceOriginERKN3WTF6StringERKNS4_12TextPositionENS_24SourceProviderSourceTypeE +_ZN3JSC14SourceProviderD0Ev +_ZN3JSC14SourceProviderD1Ev +_ZN3JSC14SourceProviderD2Ev +_ZN3JSC14StructureCache32emptyObjectStructureConcurrentlyEPNS_14JSGlobalObjectEPNS_8JSObjectEj +_ZN3JSC14StructureCache32emptyObjectStructureForPrototypeEPNS_14JSGlobalObjectEPNS_8JSObjectEjbPNS_18FunctionExecutableE +_ZN3JSC14StructureCache43emptyStructureForPrototypeFromBaseStructureEPNS_14JSGlobalObjectEPNS_8JSObjectEPNS_9StructureE +_ZN3JSC14constructArrayEPNS_14JSGlobalObjectEPNS_9StructureEPKNS_7JSValueEj +_ZN3JSC14constructArrayEPNS_14JSGlobalObjectEPNS_9StructureERKNS_7ArgListE +_ZN3JSC14constructArrayEPNS_9ExecStateEPNS_9StructureEPKNS_7JSValueEj +_ZN3JSC14constructArrayEPNS_9ExecStateEPNS_9StructureERKNS_7ArgListE +_ZN3JSC14createURIErrorEPNS_14JSGlobalObjectERKN3WTF6StringE +_ZN3JSC14createURIErrorEPNS_9ExecStateERKN3WTF6StringE +_ZN3JSC14formatDateTimeERKN3WTF17GregorianDateTimeENS_14DateTimeFormatEb +_ZN3JSC14iteratorMethodEPNS_14JSGlobalObjectEPNS_8JSObjectE +_ZN3JSC14iteratorMethodERNS_9ExecStateEPNS_8JSObjectE +_ZN3JSC14setNeverInlineENS_7JSValueE +_ZN3JSC14setNeverInlineEPK15OpaqueJSContextPK13OpaqueJSValue +_ZN3JSC14setNeverInlineEPNS_14JSGlobalObjectEPNS_9CallFrameE +_ZN3JSC14setNeverInlineEPNS_9ExecStateE +_ZN3JSC14throwTypeErrorEPNS_14JSGlobalObjectERNS_10ThrowScopeE +_ZN3JSC14throwTypeErrorEPNS_14JSGlobalObjectERNS_10ThrowScopeEN3WTF12ASCIILiteralE +_ZN3JSC14throwTypeErrorEPNS_14JSGlobalObjectERNS_10ThrowScopeERKN3WTF6StringE +_ZN3JSC14throwTypeErrorEPNS_9ExecStateERNS_10ThrowScopeE +_ZN3JSC14throwTypeErrorEPNS_9ExecStateERNS_10ThrowScopeEN3WTF12ASCIILiteralE +_ZN3JSC14throwTypeErrorEPNS_9ExecStateERNS_10ThrowScopeERKN3WTF6StringE +_ZN3JSC15ArrayBufferView13setNeuterableEb +_ZN3JSC15ArrayBufferViewC2EON3WTF6RefPtrINS_11ArrayBufferENS1_13DumbPtrTraitsIS3_EEEEj +_ZN3JSC15ArrayBufferViewC2EON3WTF6RefPtrINS_11ArrayBufferENS1_13DumbPtrTraitsIS3_EEEEjj +_ZN3JSC15ArrayBufferViewD0Ev +_ZN3JSC15ArrayBufferViewD1Ev +_ZN3JSC15ArrayBufferViewD2Ev +_ZN3JSC15IsoHeapCellType11finishSweepERNS_11MarkedBlock6HandleEPNS_8FreeListE +_ZN3JSC15IsoHeapCellType7destroyERNS_2VMEPNS_6JSCellE +_ZN3JSC15IsoHeapCellTypeC1ENS_15DestructionModeEPFvPNS_6JSCellEE +_ZN3JSC15IsoHeapCellTypeC2ENS_15DestructionModeEPFvPNS_6JSCellEE +_ZN3JSC15JSArrowFunction6s_infoE +_ZN3JSC15JSAsyncFunction6s_infoE +_ZN3JSC15JSScriptFetcher6s_infoE +_ZN3JSC15JSWeakObjectRef14finishCreationERNS_2VMEPNS_8JSObjectE +_ZN3JSC15JSWeakObjectRef6s_infoE +_ZN3JSC15JSWrapperObject13visitChildrenEPNS_6JSCellERNS_11SlotVisitorE +_ZN3JSC15ObjectPrototype6s_infoE +_ZN3JSC15RegExpPrototype13visitChildrenEPNS_6JSCellERNS_11SlotVisitorE +_ZN3JSC15TypeProfilerLog17processLogEntriesERKN3WTF6StringE +_ZN3JSC15TypeProfilerLog17processLogEntriesERNS_2VMERKN3WTF6StringE +_ZN3JSC15WeakHandleOwner26isReachableFromOpaqueRootsENS_6HandleINS_7UnknownEEEPvRNS_11SlotVisitorE +_ZN3JSC15WeakHandleOwner26isReachableFromOpaqueRootsENS_6HandleINS_7UnknownEEEPvRNS_11SlotVisitorEPPKc +_ZN3JSC15WeakHandleOwner8finalizeENS_6HandleINS_7UnknownEEEPv +_ZN3JSC15WeakHandleOwnerC1ERKS0_ +_ZN3JSC15WeakHandleOwnerC1Ev +_ZN3JSC15WeakHandleOwnerC2ERKS0_ +_ZN3JSC15WeakHandleOwnerC2Ev +_ZN3JSC15WeakHandleOwnerD0Ev +_ZN3JSC15WeakHandleOwnerD1Ev +_ZN3JSC15WeakHandleOwnerD2Ev +_ZN3JSC15constructNumberEPNS_14JSGlobalObjectENS_7JSValueE +_ZN3JSC15constructNumberEPNS_9ExecStateEPNS_14JSGlobalObjectENS_7JSValueE +_ZN3JSC15constructStringERNS_2VMEPNS_14JSGlobalObjectENS_7JSValueE +_ZN3JSC15createEvalErrorEPNS_14JSGlobalObjectERKN3WTF6StringE +_ZN3JSC15createEvalErrorEPNS_9ExecStateERKN3WTF6StringE +_ZN3JSC15createTypeErrorEPNS_14JSGlobalObjectE +_ZN3JSC15createTypeErrorEPNS_14JSGlobalObjectERKN3WTF6StringE +_ZN3JSC15createTypeErrorEPNS_9ExecStateE +_ZN3JSC15createTypeErrorEPNS_9ExecStateERKN3WTF6StringE +_ZN3JSC15encodeCodeBlockERNS_2VMERKNS_13SourceCodeKeyEPKNS_17UnlinkedCodeBlockE +_ZN3JSC15encodeCodeBlockERNS_2VMERKNS_13SourceCodeKeyEPKNS_17UnlinkedCodeBlockEiRNS_18BytecodeCacheErrorE +_ZN3JSC15ordinarySetSlowEPNS_14JSGlobalObjectEPNS_8JSObjectENS_12PropertyNameENS_7JSValueES5_b +_ZN3JSC15ordinarySetSlowEPNS_9ExecStateEPNS_8JSObjectENS_12PropertyNameENS_7JSValueES5_b +_ZN3JSC15typedArrayModesE +_ZN3JSC16CompleteSubspace12allocateSlowERNS_2VMEmPNS_17GCDeferralContextENS_21AllocationFailureModeE +_ZN3JSC16CompleteSubspace16allocatorForSlowEm +_ZN3JSC16CompleteSubspaceC1EN3WTF7CStringERNS_4HeapEPNS_12HeapCellTypeEPNS_22AlignedMemoryAllocatorE +_ZN3JSC16CompleteSubspaceC2EN3WTF7CStringERNS_4HeapEPNS_12HeapCellTypeEPNS_22AlignedMemoryAllocatorE +_ZN3JSC16CompleteSubspaceD0Ev +_ZN3JSC16CompleteSubspaceD1Ev +_ZN3JSC16CompleteSubspaceD2Ev +_ZN3JSC16InternalFunction11getCallDataEPNS_6JSCellE +_ZN3JSC16InternalFunction11getCallDataEPNS_6JSCellERNS_8CallDataE +_ZN3JSC16InternalFunction13visitChildrenEPNS_6JSCellERNS_11SlotVisitorE +_ZN3JSC16InternalFunction14finishCreationERNS_2VMERKN3WTF6StringENS0_14NameVisibilityE +_ZN3JSC16InternalFunction14finishCreationERNS_2VMERKN3WTF6StringENS0_16NameAdditionModeE +_ZN3JSC16InternalFunction16getConstructDataEPNS_6JSCellE +_ZN3JSC16InternalFunction16getConstructDataEPNS_6JSCellERNS_13ConstructDataE +_ZN3JSC16InternalFunction23createSubclassStructureEPNS_14JSGlobalObjectEPNS_8JSObjectEPNS_9StructureE +_ZN3JSC16InternalFunction27createSubclassStructureSlowEPNS_9ExecStateENS_7JSValueEPNS_9StructureE +_ZN3JSC16InternalFunction40createFunctionThatMasqueradesAsUndefinedERNS_2VMEPNS_14JSGlobalObjectEiRKN3WTF6StringENS_14NativeFunctionE +_ZN3JSC16InternalFunction4nameEv +_ZN3JSC16InternalFunction6s_infoE +_ZN3JSC16InternalFunctionC1ERNS_2VMEPNS_9StructureENS_14NativeFunctionES5_ +_ZN3JSC16InternalFunctionC2ERNS_2VMEPNS_9StructureENS_14NativeFunctionES5_ +_ZN3JSC16IsoSubspacePerVM5forVMERNS_2VME +_ZN3JSC16IsoSubspacePerVMC1EN3WTF8FunctionIFNS0_18SubspaceParametersERNS_2VMEEEE +_ZN3JSC16IsoSubspacePerVMC2EN3WTF8FunctionIFNS0_18SubspaceParametersERNS_2VMEEEE +_ZN3JSC16IsoSubspacePerVMD1Ev +_ZN3JSC16IsoSubspacePerVMD2Ev +_ZN3JSC16JSAsyncGenerator6s_infoE +_ZN3JSC16JSSloppyFunction6s_infoE +_ZN3JSC16JSStrictFunction6s_infoE +_ZN3JSC16JSStringIterator6s_infoE +_ZN3JSC16SamplingProfiler17stackTracesAsJSONEv +_ZN3JSC16SamplingProfiler18reportTopBytecodesERN3WTF11PrintStreamE +_ZN3JSC16SamplingProfiler18reportTopBytecodesEv +_ZN3JSC16SamplingProfiler18reportTopFunctionsERN3WTF11PrintStreamE +_ZN3JSC16SamplingProfiler18reportTopFunctionsEv +_ZN3JSC16SamplingProfiler39noticeCurrentThreadAsJSCExecutionThreadEv +_ZN3JSC16SamplingProfiler5startEv +_ZN3JSC16ScriptExecutable6s_infoE +_ZN3JSC16SymbolTableEntry16freeFatEntrySlowEv +_ZN3JSC16callCustomSetterEPNS_14JSGlobalObjectENS_7JSValueEbPNS_8JSObjectES2_S2_ +_ZN3JSC16callCustomSetterEPNS_14JSGlobalObjectEPFbS1_llEbNS_7JSValueES4_ +_ZN3JSC16callCustomSetterEPNS_9ExecStateENS_7JSValueEbPNS_8JSObjectES2_S2_ +_ZN3JSC16callCustomSetterEPNS_9ExecStateEPFbS1_llEbNS_7JSValueES4_ +_ZN3JSC16clearArrayMemsetEPNS_12WriteBarrierINS_7UnknownEN3WTF15DumbValueTraitsIS1_EEEEj +_ZN3JSC16clearArrayMemsetEPdj +_ZN3JSC16createRangeErrorEPNS_14JSGlobalObjectERKN3WTF6StringE +_ZN3JSC16createRangeErrorEPNS_9ExecStateEPNS_14JSGlobalObjectERKN3WTF6StringE +_ZN3JSC16createRangeErrorEPNS_9ExecStateERKN3WTF6StringE +_ZN3JSC16getFunctionRealmERNS_2VMEPNS_8JSObjectE +_ZN3JSC16globalParseCountE +_ZN3JSC16profiledEvaluateEPNS_14JSGlobalObjectENS_15ProfilingReasonERKNS_10SourceCodeENS_7JSValueERN3WTF8NakedPtrINS_9ExceptionEEE +_ZN3JSC16profiledEvaluateEPNS_9ExecStateENS_15ProfilingReasonERKNS_10SourceCodeENS_7JSValueERN3WTF8NakedPtrINS_9ExceptionEEE +_ZN3JSC16setNeverOptimizeENS_7JSValueE +_ZN3JSC16setNeverOptimizeEPK15OpaqueJSContextPK13OpaqueJSValue +_ZN3JSC16setNeverOptimizeEPNS_14JSGlobalObjectEPNS_9CallFrameE +_ZN3JSC16setNeverOptimizeEPNS_9ExecStateE +_ZN3JSC16slowValidateCellEPNS_14JSGlobalObjectE +_ZN3JSC16slowValidateCellEPNS_6JSCellE +_ZN3JSC16throwSyntaxErrorEPNS_14JSGlobalObjectERNS_10ThrowScopeE +_ZN3JSC16throwSyntaxErrorEPNS_14JSGlobalObjectERNS_10ThrowScopeERKN3WTF6StringE +_ZN3JSC16throwSyntaxErrorEPNS_9ExecStateERNS_10ThrowScopeE +_ZN3JSC16throwSyntaxErrorEPNS_9ExecStateERNS_10ThrowScopeERKN3WTF6StringE +_ZN3JSC17CommonIdentifiers18appendExternalNameERKNS_10IdentifierES3_ +_ZN3JSC17DebuggerCallFrame10invalidateEv +_ZN3JSC17DebuggerCallFrame11callerFrameEv +_ZN3JSC17DebuggerCallFrame15currentPositionERNS_2VME +_ZN3JSC17DebuggerCallFrame20positionForCallFrameERNS_2VMEPNS_9CallFrameE +_ZN3JSC17DebuggerCallFrame20positionForCallFrameERNS_2VMEPNS_9ExecStateE +_ZN3JSC17DebuggerCallFrame20sourceIDForCallFrameEPNS_9CallFrameE +_ZN3JSC17DebuggerCallFrame20sourceIDForCallFrameEPNS_9ExecStateE +_ZN3JSC17DebuggerCallFrame5scopeEv +_ZN3JSC17DeferredWorkTimer10runRunLoopEv +_ZN3JSC17DeferredWorkTimer14addPendingWorkERNS_2VMEPNS_8JSObjectEON3WTF6VectorINS_6StrongINS_6JSCellELNS_30ShouldStrongDestructorGrabLockE0EEELm0ENS5_15CrashOnOverflowELm16ENS5_10FastMallocEEE +_ZN3JSC17DeferredWorkTimer14hasPendingWorkEPNS_8JSObjectE +_ZN3JSC17DeferredWorkTimer16scheduleWorkSoonEPNS_8JSObjectEON3WTF8FunctionIFvvEEE +_ZN3JSC17DeferredWorkTimer16stopRunningTasksEv +_ZN3JSC17DeferredWorkTimer17cancelPendingWorkEPNS_8JSObjectE +_ZN3JSC17DeferredWorkTimer26hasDependancyInPendingWorkEPNS_8JSObjectEPNS_6JSCellE +_ZN3JSC17DeferredWorkTimer6createERNS_2VME +_ZN3JSC17DeferredWorkTimer6doWorkERNS_2VME +_ZN3JSC17DeferredWorkTimerC1ERNS_2VME +_ZN3JSC17DeferredWorkTimerC2ERNS_2VME +_ZN3JSC17DeferredWorkTimerD0Ev +_ZN3JSC17DeferredWorkTimerD1Ev +_ZN3JSC17DeferredWorkTimerD2Ev +_ZN3JSC17FunctionOverrides18reinstallOverridesEv +_ZN3JSC17FuzzerPredictionsC1EPKc +_ZN3JSC17FuzzerPredictionsC2EPKc +_ZN3JSC17JSAPIGlobalObject6s_infoE +_ZN3JSC17JSAPIValueWrapper6s_infoE +_ZN3JSC17JSArrayBufferView14finishCreationERNS_2VME +_ZN3JSC17JSArrayBufferView14unsharedBufferEv +_ZN3JSC17JSArrayBufferView18possiblySharedImplEv +_ZN3JSC17JSArrayBufferView19ConstructionContextC1ERNS_2VMEPNS_9StructureEON3WTF6RefPtrINS_11ArrayBufferENS6_13DumbPtrTraitsIS8_EEEEjj +_ZN3JSC17JSArrayBufferView19ConstructionContextC1ERNS_2VMEPNS_9StructureEjjNS1_18InitializationModeE +_ZN3JSC17JSArrayBufferView19ConstructionContextC2ERNS_2VMEPNS_9StructureEON3WTF6RefPtrINS_11ArrayBufferENS6_13DumbPtrTraitsIS8_EEEEjj +_ZN3JSC17JSArrayBufferView19ConstructionContextC2ERNS_2VMEPNS_9StructureEjjNS1_18InitializationModeE +_ZN3JSC17JSArrayBufferView22slowDownAndWasteMemoryEv +_ZN3JSC17JSArrayBufferView6s_infoE +_ZN3JSC17JSArrayBufferViewC1ERNS_2VMERNS0_19ConstructionContextE +_ZN3JSC17JSArrayBufferViewC2ERNS_2VMERNS0_19ConstructionContextE +_ZN3JSC17JSInternalPromise4thenEPNS_14JSGlobalObjectEPNS_10JSFunctionES4_ +_ZN3JSC17JSInternalPromise4thenEPNS_9ExecStateEPNS_10JSFunctionES4_ +_ZN3JSC17JSInternalPromise6createERNS_2VMEPNS_9StructureE +_ZN3JSC17JSInternalPromise6s_infoE +_ZN3JSC17JSPromiseDeferred6createEPNS_9ExecStateEPNS_14JSGlobalObjectE +_ZN3JSC17JSPromiseDeferred6createERNS_2VMEPNS_8JSObjectENS_7JSValueES5_ +_ZN3JSC17JSPromiseDeferred6rejectEPNS_9ExecStateENS_7JSValueE +_ZN3JSC17JSPromiseDeferred6rejectEPNS_9ExecStateEPNS_9ExceptionE +_ZN3JSC17JSPromiseDeferred6s_infoE +_ZN3JSC17JSPromiseDeferred7resolveEPNS_9ExecStateENS_7JSValueE +_ZN3JSC17MarkingConstraint17quickWorkEstimateERNS_11SlotVisitorE +_ZN3JSC17MarkingConstraint20prepareToExecuteImplERKN3WTF14AbstractLockerERNS_11SlotVisitorE +_ZN3JSC17MarkingConstraintC2EN3WTF7CStringES2_NS_20ConstraintVolatilityENS_21ConstraintConcurrencyENS_21ConstraintParallelismE +_ZN3JSC17MarkingConstraintD0Ev +_ZN3JSC17MarkingConstraintD1Ev +_ZN3JSC17MarkingConstraintD2Ev +_ZN3JSC17StructureRareData6s_infoE +_ZN3JSC17checkModuleSyntaxEPNS_14JSGlobalObjectERKNS_10SourceCodeERNS_11ParserErrorE +_ZN3JSC17checkModuleSyntaxEPNS_9ExecStateERKNS_10SourceCodeERNS_11ParserErrorE +_ZN3JSC17createJSMicrotaskERNS_2VMENS_7JSValueE +_ZN3JSC17createJSMicrotaskERNS_2VMENS_7JSValueES2_S2_S2_ +_ZN3JSC17createSyntaxErrorEPNS_14JSGlobalObjectERKN3WTF6StringE +_ZN3JSC17createSyntaxErrorEPNS_9ExecStateERKN3WTF6StringE +_ZN3JSC17hasIteratorMethodEPNS_14JSGlobalObjectENS_7JSValueE +_ZN3JSC17hasIteratorMethodERNS_9ExecStateENS_7JSValueE +_ZN3JSC17processConfigFileEPKcS1_S1_ +_ZN3JSC17profiledConstructEPNS_14JSGlobalObjectENS_15ProfilingReasonENS_7JSValueERKNS_8CallDataERKNS_7ArgListES3_ +_ZN3JSC17profiledConstructEPNS_9ExecStateENS_15ProfilingReasonENS_7JSValueENS_13ConstructTypeERKNS_13ConstructDataERKNS_7ArgListES3_ +_ZN3JSC17weakClearSlowCaseERPNS_8WeakImplE +_ZN3JSC18BytecodeCacheErroraSERKNS0_10WriteErrorE +_ZN3JSC18BytecodeCacheErroraSERKNS0_13StandardErrorE +_ZN3JSC18BytecodeCacheErroraSERKNS_11ParserErrorE +_ZN3JSC18CustomGetterSetter6s_infoE +_ZN3JSC18ErrorHandlingScopeC1ERNS_2VME +_ZN3JSC18ErrorHandlingScopeC2ERNS_2VME +_ZN3JSC18ErrorHandlingScopeD1Ev +_ZN3JSC18ErrorHandlingScopeD2Ev +_ZN3JSC18GCActivityCallback10setEnabledEb +_ZN3JSC18GCActivityCallback11cancelTimerEv +_ZN3JSC18GCActivityCallback11didAllocateERNS_4HeapEm +_ZN3JSC18GCActivityCallback11didAllocateEm +_ZN3JSC18GCActivityCallback11willCollectEv +_ZN3JSC18GCActivityCallback12nextFireTimeEv +_ZN3JSC18GCActivityCallback13scheduleTimerEN3WTF7SecondsE +_ZN3JSC18GCActivityCallback15createEdenTimerEPNS_4HeapE +_ZN3JSC18GCActivityCallback15createFullTimerEPNS_4HeapE +_ZN3JSC18GCActivityCallback18tryCreateEdenTimerEPNS_4HeapE +_ZN3JSC18GCActivityCallback18tryCreateFullTimerEPNS_4HeapE +_ZN3JSC18GCActivityCallback21s_shouldCreateGCTimerE +_ZN3JSC18GCActivityCallback6cancelEv +_ZN3JSC18GCActivityCallback6doWorkERNS_2VME +_ZN3JSC18GCActivityCallback6doWorkEv +_ZN3JSC18GCActivityCallbackC2EPNS_2VME +_ZN3JSC18GCActivityCallbackC2EPNS_4HeapE +_ZN3JSC18GCActivityCallbackC2ERNS_2VME +_ZN3JSC18GCActivityCallbackD0Ev +_ZN3JSC18GCActivityCallbackD1Ev +_ZN3JSC18GCActivityCallbackD2Ev +_ZN3JSC18IncrementalSweeper12stopSweepingEv +_ZN3JSC18IncrementalSweeper13startSweepingERNS_4HeapE +_ZN3JSC18IncrementalSweeper13startSweepingEv +_ZN3JSC18IncrementalSweeper6doWorkEv +_ZN3JSC18IncrementalSweeperC1EPNS_4HeapE +_ZN3JSC18IncrementalSweeperC2EPNS_4HeapE +_ZN3JSC18NullGetterFunction6s_infoE +_ZN3JSC18NullSetterFunction6s_infoE +_ZN3JSC18PropertyDescriptor11setWritableEb +_ZN3JSC18PropertyDescriptor12setUndefinedEv +_ZN3JSC18PropertyDescriptor13setDescriptorENS_7JSValueEj +_ZN3JSC18PropertyDescriptor13setEnumerableEb +_ZN3JSC18PropertyDescriptor15setConfigurableEb +_ZN3JSC18PropertyDescriptor17defaultAttributesE +_ZN3JSC18PropertyDescriptor19setCustomDescriptorEj +_ZN3JSC18PropertyDescriptor21setAccessorDescriptorEPNS_12GetterSetterEj +_ZN3JSC18PropertyDescriptor9setGetterENS_7JSValueE +_ZN3JSC18PropertyDescriptor9setSetterENS_7JSValueE +_ZN3JSC18enableSuperSamplerEv +_ZN3JSC18logTotalPhaseTimesEv +_ZN3JSC18sanitizeStackForVMEPNS_2VME +_ZN3JSC18sanitizeStackForVMERNS_2VME +_ZN3JSC19ArrayBufferContents5clearEv +_ZN3JSC19ArrayBufferContentsC1EOS0_ +_ZN3JSC19ArrayBufferContentsC1EPvjON3WTF6RefPtrINS2_10SharedTaskIFvS1_EEENS2_13DumbPtrTraitsIS6_EEEE +_ZN3JSC19ArrayBufferContentsC1EPvjON3WTF8FunctionIFvS1_EEE +_ZN3JSC19ArrayBufferContentsC1Ev +_ZN3JSC19ArrayBufferContentsC2EOS0_ +_ZN3JSC19ArrayBufferContentsC2EPvjON3WTF6RefPtrINS2_10SharedTaskIFvS1_EEENS2_13DumbPtrTraitsIS6_EEEE +_ZN3JSC19ArrayBufferContentsC2EPvjON3WTF8FunctionIFvS1_EEE +_ZN3JSC19ArrayBufferContentsC2Ev +_ZN3JSC19ArrayBufferContentsD1Ev +_ZN3JSC19ArrayBufferContentsD2Ev +_ZN3JSC19ArrayBufferContentsaSEOS0_ +_ZN3JSC19ControlFlowProfiler36basicBlockExecutionCountAtTextOffsetEilRNS_2VME +_ZN3JSC19ControlFlowProfiler37hasBasicBlockAtTextOffsetBeenExecutedEilRNS_2VME +_ZN3JSC19HeapSnapshotBuilder10appendEdgeEPNS_6JSCellES2_ +_ZN3JSC19HeapSnapshotBuilder10appendNodeEPNS_6JSCellE +_ZN3JSC19HeapSnapshotBuilder11analyzeEdgeEPNS_6JSCellES2_NS_11SlotVisitor14RootMarkReasonE +_ZN3JSC19HeapSnapshotBuilder11analyzeNodeEPNS_6JSCellE +_ZN3JSC19HeapSnapshotBuilder13buildSnapshotEv +_ZN3JSC19HeapSnapshotBuilder15appendIndexEdgeEPNS_6JSCellES2_j +_ZN3JSC19HeapSnapshotBuilder15setLabelForCellEPNS_6JSCellERKN3WTF6StringE +_ZN3JSC19HeapSnapshotBuilder16analyzeIndexEdgeEPNS_6JSCellES2_j +_ZN3JSC19HeapSnapshotBuilder22appendPropertyNameEdgeEPNS_6JSCellES2_PN3WTF17UniquedStringImplE +_ZN3JSC19HeapSnapshotBuilder22appendVariableNameEdgeEPNS_6JSCellES2_PN3WTF17UniquedStringImplE +_ZN3JSC19HeapSnapshotBuilder22hasExistingNodeForCellEPNS_6JSCellE +_ZN3JSC19HeapSnapshotBuilder23analyzePropertyNameEdgeEPNS_6JSCellES2_PN3WTF17UniquedStringImplE +_ZN3JSC19HeapSnapshotBuilder23analyzeVariableNameEdgeEPNS_6JSCellES2_PN3WTF17UniquedStringImplE +_ZN3JSC19HeapSnapshotBuilder23getNextObjectIdentifierEv +_ZN3JSC19HeapSnapshotBuilder23setWrappedObjectForCellEPNS_6JSCellEPv +_ZN3JSC19HeapSnapshotBuilder29nextAvailableObjectIdentifierE +_ZN3JSC19HeapSnapshotBuilder30previousSnapshotHasNodeForCellEPNS_6JSCellERj +_ZN3JSC19HeapSnapshotBuilder34resetNextAvailableObjectIdentifierEv +_ZN3JSC19HeapSnapshotBuilder38setOpaqueRootReachabilityReasonForCellEPNS_6JSCellEPKc +_ZN3JSC19HeapSnapshotBuilder4jsonEN3WTF8FunctionIFbRKNS_16HeapSnapshotNodeEEEE +_ZN3JSC19HeapSnapshotBuilder4jsonESt8functionIFbRKNS_16HeapSnapshotNodeEEE +_ZN3JSC19HeapSnapshotBuilder4jsonEv +_ZN3JSC19HeapSnapshotBuilderC1ERNS_12HeapProfilerE +_ZN3JSC19HeapSnapshotBuilderC1ERNS_12HeapProfilerENS0_12SnapshotTypeE +_ZN3JSC19HeapSnapshotBuilderC2ERNS_12HeapProfilerE +_ZN3JSC19HeapSnapshotBuilderC2ERNS_12HeapProfilerENS0_12SnapshotTypeE +_ZN3JSC19HeapSnapshotBuilderD0Ev +_ZN3JSC19HeapSnapshotBuilderD1Ev +_ZN3JSC19HeapSnapshotBuilderD2Ev +_ZN3JSC19HeapSnapshotBuilderdaEPv +_ZN3JSC19HeapSnapshotBuilderdlEPv +_ZN3JSC19HeapSnapshotBuildernaEm +_ZN3JSC19HeapSnapshotBuildernaEmPv +_ZN3JSC19HeapSnapshotBuildernwEm +_ZN3JSC19HeapSnapshotBuildernwEm10NotNullTagPv +_ZN3JSC19HeapSnapshotBuildernwEmPv +_ZN3JSC19InlineWatchpointSet11inflateSlowEv +_ZN3JSC19InlineWatchpointSet7fireAllERNS_2VMEPKc +_ZN3JSC19InlineWatchpointSet7freeFatEv +_ZN3JSC19JSGeneratorFunction6s_infoE +_ZN3JSC19JSNativeStdFunction6createERNS_2VMEPNS_14JSGlobalObjectEiRKN3WTF6StringEONS5_8FunctionIFlS4_PNS_9CallFrameEEEENS_9IntrinsicENS_14NativeFunctionE +_ZN3JSC19JSNativeStdFunction6createERNS_2VMEPNS_14JSGlobalObjectEiRKN3WTF6StringEOSt8functionIFlPNS_9ExecStateEEENS_9IntrinsicENS_14NativeFunctionE +_ZN3JSC19JSNativeStdFunction6s_infoE +_ZN3JSC19JSSymbolTableObject14deletePropertyEPNS_6JSCellEPNS_14JSGlobalObjectENS_12PropertyNameERNS_18DeletePropertySlotE +_ZN3JSC19JSSymbolTableObject14deletePropertyEPNS_6JSCellEPNS_9ExecStateENS_12PropertyNameE +_ZN3JSC19JSSymbolTableObject27getOwnNonIndexPropertyNamesEPNS_8JSObjectEPNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE +_ZN3JSC19JSSymbolTableObject27getOwnNonIndexPropertyNamesEPNS_8JSObjectEPNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE +_ZN3JSC19JSSymbolTableObject6s_infoE +_ZN3JSC19SourceProviderCache5clearEv +_ZN3JSC19SourceProviderCacheD1Ev +_ZN3JSC19SourceProviderCacheD2Ev +_ZN3JSC19SparseArrayValueMap6s_infoE +_ZN3JSC19disableSuperSamplerEv +_ZN3JSC19g_superSamplerCountE +_ZN3JSC19initializeThreadingEv +_ZN3JSC19iteratorForIterableEPNS_14JSGlobalObjectENS_7JSValueE +_ZN3JSC19iteratorForIterableEPNS_14JSGlobalObjectEPNS_8JSObjectENS_7JSValueE +_ZN3JSC19iteratorForIterableEPNS_9ExecStateENS_7JSValueE +_ZN3JSC19iteratorForIterableERNS_9ExecStateEPNS_8JSObjectENS_7JSValueE +_ZN3JSC19numberOfDFGCompilesENS_7JSValueE +_ZN3JSC19numberOfDFGCompilesEPK15OpaqueJSContextPK13OpaqueJSValue +_ZN3JSC19numberOfDFGCompilesEPNS_14JSGlobalObjectEPNS_9CallFrameE +_ZN3JSC19numberOfDFGCompilesEPNS_9ExecStateE +_ZN3JSC19reifyStaticAccessorERNS_2VMERKNS_14HashTableValueERNS_8JSObjectENS_12PropertyNameE +_ZN3JSC20AbstractModuleRecord6s_infoE +_ZN3JSC20AbstractModuleRecord8evaluateEPNS_14JSGlobalObjectE +_ZN3JSC20AbstractModuleRecord8evaluateEPNS_9ExecStateE +_ZN3JSC20JSStringHeapCellTypeC1Ev +_ZN3JSC20JSStringHeapCellTypeC2Ev +_ZN3JSC20JSStringHeapCellTypeD0Ev +_ZN3JSC20JSStringHeapCellTypeD1Ev +_ZN3JSC20JSStringHeapCellTypeD2Ev +_ZN3JSC20MarkedArgumentBuffer10slowAppendENS_7JSValueE +_ZN3JSC20PromiseDeferredTimer10runRunLoopEv +_ZN3JSC20PromiseDeferredTimer17hasPendingPromiseEPNS_17JSPromiseDeferredE +_ZN3JSC20PromiseDeferredTimer29hasDependancyInPendingPromiseEPNS_17JSPromiseDeferredEPNS_6JSCellE +_ZN3JSC20TypedArrayControllerC2Ev +_ZN3JSC20TypedArrayControllerD0Ev +_ZN3JSC20TypedArrayControllerD1Ev +_ZN3JSC20TypedArrayControllerD2Ev +_ZN3JSC20WriteBarrierCounters22usesWithBarrierFromCppE +_ZN3JSC20WriteBarrierCounters25usesWithoutBarrierFromCppE +_ZN3JSC20createReferenceErrorEPNS_14JSGlobalObjectERKN3WTF6StringE +_ZN3JSC20createReferenceErrorEPNS_9ExecStateERKN3WTF6StringE +_ZN3JSC20failNextNewCodeBlockEPK15OpaqueJSContext +_ZN3JSC20failNextNewCodeBlockEPNS_14JSGlobalObjectE +_ZN3JSC20failNextNewCodeBlockEPNS_9ExecStateE +_ZN3JSC20speculationFromValueENS_7JSValueE +_ZN3JSC20throwGetterTypeErrorEPNS_14JSGlobalObjectERNS_10ThrowScopeERKN3WTF6StringE +_ZN3JSC20waitForVMDestructionEv +_ZN3JSC21MarkedJSValueRefArrayC1EP15OpaqueJSContextj +_ZN3JSC21MarkedJSValueRefArrayC2EP15OpaqueJSContextj +_ZN3JSC21MarkedJSValueRefArrayD1Ev +_ZN3JSC21MarkedJSValueRefArrayD2Ev +_ZN3JSC21createUint8TypedArrayEPNS_14JSGlobalObjectEPNS_9StructureEON3WTF6RefPtrINS_11ArrayBufferENS4_13DumbPtrTraitsIS6_EEEEjj +_ZN3JSC21createUint8TypedArrayEPNS_9ExecStateEPNS_9StructureEON3WTF6RefPtrINS_11ArrayBufferENS4_13DumbPtrTraitsIS6_EEEEjj +_ZN3JSC21getInt8ArrayClassInfoEv +_ZN3JSC21gregorianDateTimeToMSERNS_2VM9DateCacheERKN3WTF17GregorianDateTimeEdNS3_8TimeTypeE +_ZN3JSC21gregorianDateTimeToMSERNS_2VMERKN3WTF17GregorianDateTimeEdNS2_8TimeTypeE +_ZN3JSC21linkAndEvaluateModuleEPNS_14JSGlobalObjectERKNS_10IdentifierENS_7JSValueE +_ZN3JSC21linkAndEvaluateModuleEPNS_9ExecStateERKNS_10IdentifierENS_7JSValueE +_ZN3JSC21loadAndEvaluateModuleEPNS_14JSGlobalObjectEPNS_6SymbolENS_7JSValueES4_ +_ZN3JSC21loadAndEvaluateModuleEPNS_14JSGlobalObjectERKN3WTF6StringENS_7JSValueES6_ +_ZN3JSC21loadAndEvaluateModuleEPNS_14JSGlobalObjectERKNS_10SourceCodeENS_7JSValueE +_ZN3JSC21loadAndEvaluateModuleEPNS_9ExecStateERKN3WTF6StringENS_7JSValueES6_ +_ZN3JSC21loadAndEvaluateModuleEPNS_9ExecStateERKNS_10SourceCodeENS_7JSValueE +_ZN3JSC21msToGregorianDateTimeERNS_2VM9DateCacheEdN3WTF8TimeTypeERNS3_17GregorianDateTimeE +_ZN3JSC21msToGregorianDateTimeERNS_2VMEdN3WTF8TimeTypeERNS2_17GregorianDateTimeE +_ZN3JSC21objectConstructorSealEPNS_14JSGlobalObjectEPNS_8JSObjectE +_ZN3JSC21throwOutOfMemoryErrorEPNS_14JSGlobalObjectERNS_10ThrowScopeE +_ZN3JSC21throwOutOfMemoryErrorEPNS_14JSGlobalObjectERNS_10ThrowScopeERKN3WTF6StringE +_ZN3JSC21throwOutOfMemoryErrorEPNS_9ExecStateERNS_10ThrowScopeE +_ZN3JSC22ArrayAllocationProfile13updateProfileEv +_ZN3JSC22DeferredWatchpointFire21takeWatchpointsToFireEPNS_13WatchpointSetE +_ZN3JSC22DeferredWatchpointFire7fireAllEv +_ZN3JSC22DeferredWatchpointFireC2ERNS_2VME +_ZN3JSC22DeferredWatchpointFireD0Ev +_ZN3JSC22DeferredWatchpointFireD1Ev +_ZN3JSC22DeferredWatchpointFireD2Ev +_ZN3JSC22EdenGCActivityCallback11gcTimeSliceEm +_ZN3JSC22EdenGCActivityCallback12doCollectionERNS_2VME +_ZN3JSC22EdenGCActivityCallback12doCollectionEv +_ZN3JSC22EdenGCActivityCallback12lastGCLengthERNS_4HeapE +_ZN3JSC22EdenGCActivityCallback12lastGCLengthEv +_ZN3JSC22EdenGCActivityCallback9deathRateERNS_4HeapE +_ZN3JSC22EdenGCActivityCallback9deathRateEv +_ZN3JSC22EdenGCActivityCallbackC1EPNS_4HeapE +_ZN3JSC22EdenGCActivityCallbackC2EPNS_4HeapE +_ZN3JSC22EdenGCActivityCallbackD0Ev +_ZN3JSC22EdenGCActivityCallbackD1Ev +_ZN3JSC22EdenGCActivityCallbackD2Ev +_ZN3JSC22FullGCActivityCallback11gcTimeSliceEm +_ZN3JSC22FullGCActivityCallback12doCollectionERNS_2VME +_ZN3JSC22FullGCActivityCallback12doCollectionEv +_ZN3JSC22FullGCActivityCallback12lastGCLengthERNS_4HeapE +_ZN3JSC22FullGCActivityCallback12lastGCLengthEv +_ZN3JSC22FullGCActivityCallback16setDidGCRecentlyEv +_ZN3JSC22FullGCActivityCallback9deathRateERNS_4HeapE +_ZN3JSC22FullGCActivityCallback9deathRateEv +_ZN3JSC22FullGCActivityCallbackC1EPNS_4HeapE +_ZN3JSC22FullGCActivityCallbackC2EPNS_4HeapE +_ZN3JSC22FullGCActivityCallbackD0Ev +_ZN3JSC22FullGCActivityCallbackD1Ev +_ZN3JSC22FullGCActivityCallbackD2Ev +_ZN3JSC22JSFinalizationRegistry14finishCreationERNS_2VMEPNS_8JSObjectE +_ZN3JSC22JSFinalizationRegistry6s_infoE +_ZN3JSC22JSFinalizationRegistry9deadCountERKN3WTF6LockerINS_10JSCellLockEEE +_ZN3JSC22JSFinalizationRegistry9liveCountERKN3WTF6LockerINS_10JSCellLockEEE +_ZN3JSC22createOutOfMemoryErrorEPNS_14JSGlobalObjectE +_ZN3JSC22createOutOfMemoryErrorEPNS_14JSGlobalObjectERKN3WTF6StringE +_ZN3JSC22createOutOfMemoryErrorEPNS_9ExecStateE +_ZN3JSC22createOutOfMemoryErrorEPNS_9ExecStateERKN3WTF6StringE +_ZN3JSC22generateModuleBytecodeERNS_2VMERKNS_10SourceCodeEiRNS_18BytecodeCacheErrorE +_ZN3JSC22getInt16ArrayClassInfoEv +_ZN3JSC22getInt32ArrayClassInfoEv +_ZN3JSC22getUint8ArrayClassInfoEv +_ZN3JSC22globalMemoryStatisticsEv +_ZN3JSC22optimizeNextInvocationENS_7JSValueE +_ZN3JSC22optimizeNextInvocationEPNS_14JSGlobalObjectEPNS_9CallFrameE +_ZN3JSC22optimizeNextInvocationEPNS_9ExecStateE +_ZN3JSC22printSuperSamplerStateEv +_ZN3JSC22resetSuperSamplerStateEv +_ZN3JSC23AbstractSamplingCounter30s_abstractSamplingCounterChainE +_ZN3JSC23AbstractSamplingCounter4dumpEv +_ZN3JSC23JSModuleNamespaceObject10putByIndexEPNS_6JSCellEPNS_14JSGlobalObjectEjNS_7JSValueEb +_ZN3JSC23JSModuleNamespaceObject10putByIndexEPNS_6JSCellEPNS_9ExecStateEjNS_7JSValueEb +_ZN3JSC23JSModuleNamespaceObject14deletePropertyEPNS_6JSCellEPNS_14JSGlobalObjectENS_12PropertyNameERNS_18DeletePropertySlotE +_ZN3JSC23JSModuleNamespaceObject14deletePropertyEPNS_6JSCellEPNS_9ExecStateENS_12PropertyNameE +_ZN3JSC23JSModuleNamespaceObject14finishCreationEPNS_14JSGlobalObjectEPNS_20AbstractModuleRecordEON3WTF6VectorISt4pairINS_10IdentifierENS3_10ResolutionEELm0ENS5_15CrashOnOverflowELm16ENS5_10FastMallocEEE +_ZN3JSC23JSModuleNamespaceObject14finishCreationEPNS_9ExecStateEPNS_14JSGlobalObjectEPNS_20AbstractModuleRecordEON3WTF6VectorISt4pairINS_10IdentifierENS5_10ResolutionEELm0ENS7_15CrashOnOverflowELm16EEE +_ZN3JSC23JSModuleNamespaceObject17defineOwnPropertyEPNS_8JSObjectEPNS_14JSGlobalObjectENS_12PropertyNameERKNS_18PropertyDescriptorEb +_ZN3JSC23JSModuleNamespaceObject17defineOwnPropertyEPNS_8JSObjectEPNS_9ExecStateENS_12PropertyNameERKNS_18PropertyDescriptorEb +_ZN3JSC23JSModuleNamespaceObject18getOwnPropertySlotEPNS_8JSObjectEPNS_14JSGlobalObjectENS_12PropertyNameERNS_12PropertySlotE +_ZN3JSC23JSModuleNamespaceObject18getOwnPropertySlotEPNS_8JSObjectEPNS_9ExecStateENS_12PropertyNameERNS_12PropertySlotE +_ZN3JSC23JSModuleNamespaceObject19getOwnPropertyNamesEPNS_8JSObjectEPNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE +_ZN3JSC23JSModuleNamespaceObject19getOwnPropertyNamesEPNS_8JSObjectEPNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE +_ZN3JSC23JSModuleNamespaceObject25getOwnPropertySlotByIndexEPNS_8JSObjectEPNS_14JSGlobalObjectEjRNS_12PropertySlotE +_ZN3JSC23JSModuleNamespaceObject25getOwnPropertySlotByIndexEPNS_8JSObjectEPNS_9ExecStateEjRNS_12PropertySlotE +_ZN3JSC23JSModuleNamespaceObject3putEPNS_6JSCellEPNS_14JSGlobalObjectENS_12PropertyNameENS_7JSValueERNS_15PutPropertySlotE +_ZN3JSC23JSModuleNamespaceObject3putEPNS_6JSCellEPNS_9ExecStateENS_12PropertyNameENS_7JSValueERNS_15PutPropertySlotE +_ZN3JSC23JSModuleNamespaceObject6s_infoE +_ZN3JSC23JSModuleNamespaceObjectC1ERNS_2VMEPNS_9StructureE +_ZN3JSC23JSModuleNamespaceObjectC2ERNS_2VMEPNS_9StructureE +_ZN3JSC23JSScriptFetchParameters6s_infoE +_ZN3JSC23MacroAssemblerX86Common15s_avxCheckStateE +_ZN3JSC23MacroAssemblerX86Common16s_bmi1CheckStateE +_ZN3JSC23MacroAssemblerX86Common17s_lzcntCheckStateE +_ZN3JSC23MacroAssemblerX86Common18collectCPUFeaturesEv +_ZN3JSC23MacroAssemblerX86Common18s_popcntCheckStateE +_ZN3JSC23MacroAssemblerX86Common18s_sse4_1CheckStateE +_ZN3JSC23MacroAssemblerX86Common18s_sse4_2CheckStateE +_ZN3JSC23SimpleMarkingConstraintC1EN3WTF7CStringES2_NS1_8FunctionIFvRNS_11SlotVisitorEEEENS_20ConstraintVolatilityENS_21ConstraintConcurrencyENS_21ConstraintParallelismE +_ZN3JSC23SimpleMarkingConstraintC2EN3WTF7CStringES2_NS1_8FunctionIFvRNS_11SlotVisitorEEEENS_20ConstraintVolatilityENS_21ConstraintConcurrencyENS_21ConstraintParallelismE +_ZN3JSC23SimpleMarkingConstraintD0Ev +_ZN3JSC23SimpleMarkingConstraintD1Ev +_ZN3JSC23SimpleMarkingConstraintD2Ev +_ZN3JSC23VariableWriteFireDetail5touchERNS_2VMEPNS_13WatchpointSetEPNS_8JSObjectERKNS_12PropertyNameE +_ZN3JSC23createBuiltinExecutableERNS_2VMERKNS_10SourceCodeERKNS_10IdentifierENS_15ConstructorKindENS_16ConstructAbilityE +_ZN3JSC23createBuiltinExecutableERNS_2VMERKNS_10SourceCodeERKNS_10IdentifierENS_16ConstructAbilityE +_ZN3JSC23decodeFunctionCodeBlockERNS_7DecoderEiRNS_12WriteBarrierINS_25UnlinkedFunctionCodeBlockEN3WTF13DumbPtrTraitsIS3_EEEEPKNS_6JSCellE +_ZN3JSC23encodeFunctionCodeBlockERNS_2VMEPKNS_25UnlinkedFunctionCodeBlockERNS_18BytecodeCacheErrorE +_ZN3JSC23errorMesasgeForTransferEPNS_11ArrayBufferE +_ZN3JSC23generateProgramBytecodeERNS_2VMERKNS_10SourceCodeEiRNS_18BytecodeCacheErrorE +_ZN3JSC23getUint16ArrayClassInfoEv +_ZN3JSC23getUint32ArrayClassInfoEv +_ZN3JSC23objectConstructorFreezeEPNS_14JSGlobalObjectEPNS_8JSObjectE +_ZN3JSC23objectConstructorFreezeEPNS_9ExecStateEPNS_8JSObjectE +_ZN3JSC23objectProtoFuncToStringEPNS_14JSGlobalObjectEPNS_9CallFrameE +_ZN3JSC23objectProtoFuncToStringEPNS_9ExecStateE +_ZN3JSC23setUpStaticFunctionSlotERNS_2VMEPKNS_9ClassInfoEPKNS_14HashTableValueEPNS_8JSObjectENS_12PropertyNameERNS_12PropertySlotE +_ZN3JSC23throwStackOverflowErrorEPNS_14JSGlobalObjectERNS_10ThrowScopeE +_ZN3JSC23throwStackOverflowErrorEPNS_9ExecStateERNS_10ThrowScopeE +_ZN3JSC24DOMAttributeGetterSetter6s_infoE +_ZN3JSC24JSAsyncGeneratorFunction6s_infoE +_ZN3JSC24JSPropertyNameEnumerator6s_infoE +_ZN3JSC24TerminatedExecutionError6s_infoE +_ZN3JSC24createStackOverflowErrorEPNS_14JSGlobalObjectE +_ZN3JSC24createStackOverflowErrorEPNS_9ExecStateE +_ZN3JSC24getCalculatedDisplayNameERNS_2VMEPNS_8JSObjectE +_ZN3JSC24getExecutableForFunctionENS_7JSValueE +_ZN3JSC24getFloat32ArrayClassInfoEv +_ZN3JSC24getFloat64ArrayClassInfoEv +_ZN3JSC24reportZappedCellAndCrashERNS_4HeapEPKNS_6JSCellE +_ZN3JSC25JSInternalPromiseDeferred6createEPNS_9ExecStateEPNS_14JSGlobalObjectE +_ZN3JSC25JSInternalPromiseDeferred6rejectEPNS_9ExecStateENS_7JSValueE +_ZN3JSC25JSInternalPromiseDeferred6rejectEPNS_9ExecStateEPNS_9ExceptionE +_ZN3JSC25JSInternalPromiseDeferred6s_infoE +_ZN3JSC25JSInternalPromiseDeferred7resolveEPNS_9ExecStateENS_7JSValueE +_ZN3JSC25JSSegmentedVariableObject11analyzeHeapEPNS_6JSCellERNS_12HeapAnalyzerE +_ZN3JSC25JSSegmentedVariableObject12addVariablesEjNS_7JSValueE +_ZN3JSC25JSSegmentedVariableObject12heapSnapshotEPNS_6JSCellERNS_19HeapSnapshotBuilderE +_ZN3JSC25JSSegmentedVariableObject13visitChildrenEPNS_6JSCellERNS_11SlotVisitorE +_ZN3JSC25JSSegmentedVariableObject17findVariableIndexEPv +_ZN3JSC25MacroAssemblerCodeRefBase11disassemblyENS_21MacroAssemblerCodePtrILN3WTF6PtrTagE3123EEEm +_ZN3JSC25jsStringWithCacheSlowCaseERNS_2VMERN3WTF10StringImplE +_ZN3JSC25numberOfOSRExitFuzzChecksEv +_ZN3JSC26ReadonlyPropertyWriteErrorE +_ZN3JSC26UnlinkedFunctionExecutable4linkERNS_2VMEPNS_16ScriptExecutableERKNS_10SourceCodeEN3WTF8OptionalIiEENS_9IntrinsicEb +_ZN3JSC26UnlinkedFunctionExecutable4linkERNS_2VMERKNS_10SourceCodeESt8optionalIiENS_9IntrinsicE +_ZN3JSC26UnlinkedFunctionExecutable6s_infoE +_ZN3JSC26createIteratorResultObjectEPNS_14JSGlobalObjectENS_7JSValueEb +_ZN3JSC26createIteratorResultObjectEPNS_9ExecStateENS_7JSValueEb +_ZN3JSC26evaluateWithScopeExtensionEPNS_14JSGlobalObjectERKNS_10SourceCodeEPNS_8JSObjectERN3WTF8NakedPtrINS_9ExceptionEEE +_ZN3JSC26evaluateWithScopeExtensionEPNS_9ExecStateERKNS_10SourceCodeEPNS_8JSObjectERN3WTF8NakedPtrINS_9ExceptionEEE +_ZN3JSC26setCannotUseOSRExitFuzzingEPNS_14JSGlobalObjectEPNS_9CallFrameE +_ZN3JSC26setCannotUseOSRExitFuzzingEPNS_9ExecStateE +_ZN3JSC27ReadonlyPropertyChangeErrorE +_ZN3JSC27UnableToDeletePropertyErrorE +_ZN3JSC27finalizeStatsAtEndOfTestingEv +_ZN3JSC27numberOfExceptionFuzzChecksEv +_ZN3JSC27objectPrivateFuncInstanceOfEPNS_14JSGlobalObjectEPNS_9CallFrameE +_ZN3JSC27objectPrivateFuncInstanceOfEPNS_9ExecStateE +_ZN3JSC27threadSpecificAssemblerDataEv +_ZN3JSC28JSCustomGetterSetterFunction6s_infoE +_ZN3JSC28getHashMapBucketKeyClassInfoEv +_ZN3JSC29callHostFunctionAsConstructorEPNS_14JSGlobalObjectEPNS_9CallFrameE +_ZN3JSC29callHostFunctionAsConstructorEPNS_9ExecStateE +_ZN3JSC29constructArrayNegativeIndexedEPNS_14JSGlobalObjectEPNS_9StructureEPKNS_7JSValueEj +_ZN3JSC29constructArrayNegativeIndexedEPNS_9ExecStateEPNS_9StructureEPKNS_7JSValueEj +_ZN3JSC29createNotEnoughArgumentsErrorEPNS_14JSGlobalObjectE +_ZN3JSC29createNotEnoughArgumentsErrorEPNS_9ExecStateE +_ZN3JSC29ensureGlobalFuzzerPredictionsEv +_ZN3JSC29getUint8ClampedArrayClassInfoEv +_ZN3JSC2VM10ClientDataD0Ev +_ZN3JSC2VM10ClientDataD1Ev +_ZN3JSC2VM10ClientDataD2Ev +_ZN3JSC2VM12isInMiniModeEv +_ZN3JSC2VM12mapSpaceSlowEv +_ZN3JSC2VM12setSpaceSlowEv +_ZN3JSC2VM13deleteAllCodeENS_19DeleteAllCodeEffortE +_ZN3JSC2VM14resetDateCacheEv +_ZN3JSC2VM14sharedInstanceEv +_ZN3JSC2VM14throwExceptionEPNS_14JSGlobalObjectENS_7JSValueE +_ZN3JSC2VM14throwExceptionEPNS_14JSGlobalObjectEPNS_8JSObjectE +_ZN3JSC2VM14throwExceptionEPNS_14JSGlobalObjectEPNS_9ExceptionE +_ZN3JSC2VM14throwExceptionEPNS_9ExecStateENS_7JSValueE +_ZN3JSC2VM14throwExceptionEPNS_9ExecStateEPNS_8JSObjectE +_ZN3JSC2VM14throwExceptionEPNS_9ExecStateEPNS_9ExceptionE +_ZN3JSC2VM15canUseAssemblerEv +_ZN3JSC2VM15canUseRegExpJITEv +_ZN3JSC2VM15drainMicrotasksEv +_ZN3JSC2VM15dumpRegExpTraceEv +_ZN3JSC2VM15symbolSpaceSlowEv +_ZN3JSC2VM16weakMapSpaceSlowEv +_ZN3JSC2VM16weakSetSpaceSlowEv +_ZN3JSC2VM17addImpurePropertyEPN3WTF17UniquedStringImplE +_ZN3JSC2VM17addImpurePropertyERKN3WTF6StringE +_ZN3JSC2VM17dataViewSpaceSlowEv +_ZN3JSC2VM18ensureHeapProfilerEv +_ZN3JSC2VM18generatorSpaceSlowEv +_ZN3JSC2VM18int8ArraySpaceSlowEv +_ZN3JSC2VM18mapBucketSpaceSlowEv +_ZN3JSC2VM18setBucketSpaceSlowEv +_ZN3JSC2VM18withScopeSpaceSlowEv +_ZN3JSC2VM19deleteAllLinkedCodeENS_19DeleteAllCodeEffortE +_ZN3JSC2VM19int16ArraySpaceSlowEv +_ZN3JSC2VM19int32ArraySpaceSlowEv +_ZN3JSC2VM19intlLocaleSpaceSlowEv +_ZN3JSC2VM19sourceCodeSpaceSlowEv +_ZN3JSC2VM19uint8ArraySpaceSlowEv +_ZN3JSC2VM20arrayBufferSpaceSlowEv +_ZN3JSC2VM20dumpTypeProfilerDataEv +_ZN3JSC2VM20mapIteratorSpaceSlowEv +_ZN3JSC2VM20proxyObjectSpaceSlowEv +_ZN3JSC2VM20proxyRevokeSpaceSlowEv +_ZN3JSC2VM20setIteratorSpaceSlowEv +_ZN3JSC2VM20sharedInstanceExistsEv +_ZN3JSC2VM20uint16ArraySpaceSlowEv +_ZN3JSC2VM20uint32ArraySpaceSlowEv +_ZN3JSC2VM21bigIntObjectSpaceSlowEv +_ZN3JSC2VM21float32ArraySpaceSlowEv +_ZN3JSC2VM21float64ArraySpaceSlowEv +_ZN3JSC2VM21globalObjectSpaceSlowEv +_ZN3JSC2VM21intlCollatorSpaceSlowEv +_ZN3JSC2VM21sentinelMapBucketSlowEv +_ZN3JSC2VM21sentinelSetBucketSlowEv +_ZN3JSC2VM21symbolObjectSpaceSlowEv +_ZN3JSC2VM22arrayIteratorSpaceSlowEv +_ZN3JSC2VM22booleanObjectSpaceSlowEv +_ZN3JSC2VM22boundFunctionSpaceSlowEv +_ZN3JSC2VM22debuggerScopeSpaceSlowEv +_ZN3JSC2VM22ensureSamplingProfilerEON3WTF3RefINS1_9StopwatchENS1_13DumbPtrTraitsIS3_EEEE +_ZN3JSC2VM22errorInstanceSpaceSlowEv +_ZN3JSC2VM22scriptFetcherSpaceSlowEv +_ZN3JSC2VM22weakObjectRefSpaceSlowEv +_ZN3JSC2VM23asyncGeneratorSpaceSlowEv +_ZN3JSC2VM23callbackObjectSpaceSlowEv +_ZN3JSC2VM23jsModuleRecordSpaceSlowEv +_ZN3JSC2VM23stringIteratorSpaceSlowEv +_ZN3JSC2VM24apiGlobalObjectSpaceSlowEv +_ZN3JSC2VM24apiValueWrapperSpaceSlowEv +_ZN3JSC2VM24intlPluralRulesSpaceSlowEv +_ZN3JSC2VM25callbackFunctionSpaceSlowEv +_ZN3JSC2VM25functionRareDataSpaceSlowEv +_ZN3JSC2VM25intlDisplayNamesSpaceSlowEv +_ZN3JSC2VM25intlNumberFormatSpaceSlowEv +_ZN3JSC2VM26nativeStdFunctionSpaceSlowEv +_ZN3JSC2VM26uint8ClampedArraySpaceSlowEv +_ZN3JSC2VM27injectedScriptHostSpaceSlowEv +_ZN3JSC2VM27intlDateTimeFormatSpaceSlowEv +_ZN3JSC2VM28callbackConstructorSpaceSlowEv +_ZN3JSC2VM28javaScriptCallFrameSpaceSlowEv +_ZN3JSC2VM29callbackGlobalObjectSpaceSlowEv +_ZN3JSC2VM29finalizationRegistrySpaceSlowEv +_ZN3JSC2VM29scopedArgumentsTableSpaceSlowEv +_ZN3JSC2VM29strictEvalActivationSpaceSlowEv +_ZN3JSC2VM30moduleNamespaceObjectSpaceSlowEv +_ZN3JSC2VM30scriptFetchParametersSpaceSlowEv +_ZN3JSC2VM30unlinkedEvalCodeBlockSpaceSlowEv +_ZN3JSC2VM31intlRelativeTimeFormatSpaceSlowEv +_ZN3JSC2VM33templateObjectDescriptorSpaceSlowEv +_ZN3JSC2VM33unlinkedProgramCodeBlockSpaceSlowEv +_ZN3JSC2VM34unlinkedFunctionCodeBlockSpaceSlowEv +_ZN3JSC2VM35customGetterSetterFunctionSpaceSlowEv +_ZN3JSC2VM39unlinkedModuleProgramCodeBlockSpaceSlowEv +_ZN3JSC2VM6createENS_8HeapTypeE +_ZN3JSC2VM6createENS_8HeapTypeEPN3WTF7RunLoopE +_ZN3JSC2VM8whenIdleEON3WTF8FunctionIFvvEEE +_ZN3JSC2VM8whenIdleESt8functionIFvvEE +_ZN3JSC2VM9canUseJITEv +_ZN3JSC2VM9tryCreateENS_8HeapTypeEPN3WTF7RunLoopE +_ZN3JSC2VMD1Ev +_ZN3JSC2VMD2Ev +_ZN3JSC30int52AwareSpeculationFromValueENS_7JSValueE +_ZN3JSC30isTerminatedExecutionExceptionERNS_2VMEPNS_9ExceptionE +_ZN3JSC30waitForAsynchronousDisassemblyEv +_ZN3JSC31numberOfStaticOSRExitFuzzChecksEv +_ZN3JSC32JSDestructibleObjectHeapCellTypeC1Ev +_ZN3JSC32JSDestructibleObjectHeapCellTypeC2Ev +_ZN3JSC32JSDestructibleObjectHeapCellTypeD0Ev +_ZN3JSC32JSDestructibleObjectHeapCellTypeD1Ev +_ZN3JSC32JSDestructibleObjectHeapCellTypeD2Ev +_ZN3JSC32throwDOMAttributeGetterTypeErrorEPNS_14JSGlobalObjectERNS_10ThrowScopeEPKNS_9ClassInfoENS_12PropertyNameE +_ZN3JSC32throwDOMAttributeGetterTypeErrorEPNS_9ExecStateERNS_10ThrowScopeEPKNS_9ClassInfoENS_12PropertyNameE +_ZN3JSC33getHashMapBucketKeyValueClassInfoEv +_ZN3JSC33throwTerminatedExecutionExceptionEPNS_14JSGlobalObjectERNS_10ThrowScopeE +_ZN3JSC33throwTerminatedExecutionExceptionEPNS_9ExecStateERNS_10ThrowScopeE +_ZN3JSC35getSomeBaselineCodeBlockForFunctionENS_7JSValueE +_ZN3JSC37JSSegmentedVariableObjectHeapCellTypeC1Ev +_ZN3JSC37JSSegmentedVariableObjectHeapCellTypeC2Ev +_ZN3JSC37JSSegmentedVariableObjectHeapCellTypeD0Ev +_ZN3JSC37JSSegmentedVariableObjectHeapCellTypeD1Ev +_ZN3JSC37JSSegmentedVariableObjectHeapCellTypeD2Ev +_ZN3JSC37parseDateFromNullTerminatedCharactersERNS_2VMEPKc +_ZN3JSC38NonExtensibleObjectPropertyDefineErrorE +_ZN3JSC38numberOfExecutableAllocationFuzzChecksEv +_ZN3JSC3DFG18getNumCompilationsEv +_ZN3JSC41DeferredStructureTransitionWatchpointFireC1ERNS_2VMEPNS_9StructureE +_ZN3JSC41DeferredStructureTransitionWatchpointFireC2ERNS_2VMEPNS_9StructureE +_ZN3JSC41DeferredStructureTransitionWatchpointFireD0Ev +_ZN3JSC41DeferredStructureTransitionWatchpointFireD1Ev +_ZN3JSC41DeferredStructureTransitionWatchpointFireD2Ev +_ZN3JSC41constructFunctionSkippingEvalEnabledCheckEPNS_14JSGlobalObjectERKNS_7ArgListERKNS_10IdentifierERKNS_12SourceOriginERKN3WTF6StringERKNSB_12TextPositionEiNS_24FunctionConstructionModeENS_7JSValueE +_ZN3JSC41constructFunctionSkippingEvalEnabledCheckEPNS_9ExecStateEPNS_14JSGlobalObjectERKNS_7ArgListERKNS_10IdentifierERKNS_12SourceOriginERKN3WTF6StringERKNSD_12TextPositionEiNS_24FunctionConstructionModeENS_7JSValueE +_ZN3JSC41constructObjectFromPropertyDescriptorSlowEPNS_14JSGlobalObjectERKNS_18PropertyDescriptorE +_ZN3JSC44UnconfigurablePropertyChangeWritabilityErrorE +_ZN3JSC46UnconfigurablePropertyChangeEnumerabilityErrorE +_ZN3JSC48UnconfigurablePropertyChangeAccessMechanismErrorE +_ZN3JSC48UnconfigurablePropertyChangeConfigurabilityErrorE +_ZN3JSC49throwConstructorCannotBeCalledAsFunctionTypeErrorEPNS_14JSGlobalObjectERNS_10ThrowScopeEPKc +_ZN3JSC49throwConstructorCannotBeCalledAsFunctionTypeErrorEPNS_9ExecStateERNS_10ThrowScopeEPKc +_ZN3JSC4Heap10collectNowENS_15SynchronousnessENS_9GCRequestE +_ZN3JSC4Heap11collectSyncENS_9GCRequestE +_ZN3JSC4Heap11objectCountEv +_ZN3JSC4Heap12addFinalizerEPNS_6JSCellEN3WTF8FunctionIFvS2_EEE +_ZN3JSC4Heap12addFinalizerEPNS_6JSCellEPFvS2_E +_ZN3JSC4Heap12collectAsyncENS_9GCRequestE +_ZN3JSC4Heap15extraMemorySizeEv +_ZN3JSC4Heap16objectTypeCountsEv +_ZN3JSC4Heap17acquireAccessSlowEv +_ZN3JSC4Heap17globalObjectCountEv +_ZN3JSC4Heap17isValidAllocationEm +_ZN3JSC4Heap17registerWeakGCMapEPNS_13WeakGCMapBaseE +_ZN3JSC4Heap17releaseAccessSlowEv +_ZN3JSC4Heap18addToRememberedSetEPKNS_6JSCellE +_ZN3JSC4Heap18sweepSynchronouslyEv +_ZN3JSC4Heap19isCurrentThreadBusyEv +_ZN3JSC4Heap19stopIfNecessarySlowEv +_ZN3JSC4Heap19unregisterWeakGCMapEPNS_13WeakGCMapBaseE +_ZN3JSC4Heap20addMarkingConstraintESt10unique_ptrINS_17MarkingConstraintESt14default_deleteIS2_EE +_ZN3JSC4Heap20edenActivityCallbackEv +_ZN3JSC4Heap20fullActivityCallbackEv +_ZN3JSC4Heap20protectedObjectCountEv +_ZN3JSC4Heap20writeBarrierSlowPathEPKNS_6JSCellE +_ZN3JSC4Heap24reportExtraMemoryVisitedEm +_ZN3JSC4Heap25protectedObjectTypeCountsEv +_ZN3JSC4Heap26protectedGlobalObjectCountEv +_ZN3JSC4Heap26reportAbandonedObjectGraphEv +_ZN3JSC4Heap31collectNowFullIfNotDoneRecentlyENS_15SynchronousnessE +_ZN3JSC4Heap32setGarbageCollectionTimerEnabledEb +_ZN3JSC4Heap34reportExtraMemoryAllocatedSlowCaseEm +_ZN3JSC4Heap35deprecatedReportExtraMemorySlowCaseEm +_ZN3JSC4Heap39decrementDeferralDepthAndGCIfNeededSlowEv +_ZN3JSC4Heap4sizeEv +_ZN3JSC4Heap7collectENS_15SynchronousnessENS_9GCRequestE +_ZN3JSC4Heap7protectENS_7JSValueE +_ZN3JSC4Heap7sweeperEv +_ZN3JSC4Heap8capacityEv +_ZN3JSC4Heap9unprotectENS_7JSValueE +_ZN3JSC4Yarr10parseFlagsEN3WTF10StringViewE +_ZN3JSC4Yarr11YarrPatternC1ERKN3WTF6StringENS2_9OptionSetINS0_5FlagsEEERNS0_9ErrorCodeE +_ZN3JSC4Yarr11YarrPatternC1ERKN3WTF6StringENS_11RegExpFlagsERNS0_9ErrorCodeEPv +_ZN3JSC4Yarr11YarrPatternC2ERKN3WTF6StringENS2_9OptionSetINS0_5FlagsEEERNS0_9ErrorCodeE +_ZN3JSC4Yarr11YarrPatternC2ERKN3WTF6StringENS_11RegExpFlagsERNS0_9ErrorCodeEPv +_ZN3JSC4Yarr11byteCompileERNS0_11YarrPatternEPN3WTF20BumpPointerAllocatorERNS0_9ErrorCodeEPNS3_4LockE +_ZN3JSC4Yarr12errorMessageENS0_9ErrorCodeE +_ZN3JSC4Yarr12errorToThrowEPNS_14JSGlobalObjectENS0_9ErrorCodeE +_ZN3JSC4Yarr12errorToThrowEPNS_9ExecStateENS0_9ErrorCodeE +_ZN3JSC4Yarr17RegularExpressionC1ERKN3WTF6StringENS0_19TextCaseSensitivityENS0_13MultilineModeENS0_11UnicodeModeE +_ZN3JSC4Yarr17RegularExpressionC1ERKS1_ +_ZN3JSC4Yarr17RegularExpressionC2ERKN3WTF6StringENS0_19TextCaseSensitivityENS0_13MultilineModeENS0_11UnicodeModeE +_ZN3JSC4Yarr17RegularExpressionC2ERKS1_ +_ZN3JSC4Yarr17RegularExpressionD1Ev +_ZN3JSC4Yarr17RegularExpressionD2Ev +_ZN3JSC4Yarr17RegularExpressionaSERKS1_ +_ZN3JSC4Yarr17RegularExpressiondaEPv +_ZN3JSC4Yarr17RegularExpressiondlEPv +_ZN3JSC4Yarr17RegularExpressionnaEm +_ZN3JSC4Yarr17RegularExpressionnaEmPv +_ZN3JSC4Yarr17RegularExpressionnwEm +_ZN3JSC4Yarr17RegularExpressionnwEm10NotNullTagPv +_ZN3JSC4Yarr17RegularExpressionnwEmPv +_ZN3JSC4Yarr20unicodeMatchPropertyEN3WTF6StringE +_ZN3JSC4Yarr25unicodeMatchPropertyValueEN3WTF6StringES2_ +_ZN3JSC4Yarr7replaceERN3WTF6StringERKNS0_17RegularExpressionERKS2_ +_ZN3JSC4Yarr9interpretEPNS0_15BytecodePatternERKN3WTF6StringEjPj +_ZN3JSC4callEPNS_14JSGlobalObjectENS_7JSValueERKNS_7ArgListEPKc +_ZN3JSC4callEPNS_14JSGlobalObjectENS_7JSValueERKNS_8CallDataES2_RKNS_7ArgListE +_ZN3JSC4callEPNS_14JSGlobalObjectENS_7JSValueERKNS_8CallDataES2_RKNS_7ArgListERN3WTF8NakedPtrINS_9ExceptionEEE +_ZN3JSC4callEPNS_14JSGlobalObjectENS_7JSValueES2_RKNS_7ArgListEPKc +_ZN3JSC4callEPNS_9ExecStateENS_7JSValueENS_8CallTypeERKNS_8CallDataES2_RKNS_7ArgListE +_ZN3JSC4callEPNS_9ExecStateENS_7JSValueENS_8CallTypeERKNS_8CallDataES2_RKNS_7ArgListERN3WTF8NakedPtrINS_9ExceptionEEE +_ZN3JSC5JSMap6s_infoE +_ZN3JSC5JSSet6s_infoE +_ZN3JSC6Config23enableRestrictedOptionsEv +_ZN3JSC6Config25disableFreezingForTestingEv +_ZN3JSC6JSCell11analyzeHeapEPS0_RNS_12HeapAnalyzerE +_ZN3JSC6JSCell11getCallDataEPS0_ +_ZN3JSC6JSCell11getCallDataEPS0_RNS_8CallDataE +_ZN3JSC6JSCell12dumpToStreamEPKS0_RN3WTF11PrintStreamE +_ZN3JSC6JSCell12heapSnapshotEPS0_RNS_19HeapSnapshotBuilderE +_ZN3JSC6JSCell13estimatedSizeEPS0_RNS_2VME +_ZN3JSC6JSCell14deletePropertyEPS0_PNS_14JSGlobalObjectENS_12PropertyNameE +_ZN3JSC6JSCell16getConstructDataEPS0_ +_ZN3JSC6JSCell16getConstructDataEPS0_RNS_13ConstructDataE +_ZN3JSC6JSCell17customHasInstanceEPNS_8JSObjectEPNS_14JSGlobalObjectENS_7JSValueE +_ZN3JSC6JSCell17customHasInstanceEPNS_8JSObjectEPNS_9ExecStateENS_7JSValueE +_ZN3JSC6JSCell7destroyEPS0_ +_ZN3JSC6JSCell9getObjectEv +_ZN3JSC6JSLock12DropAllLocksC1EPNS_14JSGlobalObjectE +_ZN3JSC6JSLock12DropAllLocksC1EPNS_2VME +_ZN3JSC6JSLock12DropAllLocksC1EPNS_9ExecStateE +_ZN3JSC6JSLock12DropAllLocksC1ERNS_2VME +_ZN3JSC6JSLock12DropAllLocksC2EPNS_14JSGlobalObjectE +_ZN3JSC6JSLock12DropAllLocksC2EPNS_2VME +_ZN3JSC6JSLock12DropAllLocksC2EPNS_9ExecStateE +_ZN3JSC6JSLock12DropAllLocksC2ERNS_2VME +_ZN3JSC6JSLock12DropAllLocksD1Ev +_ZN3JSC6JSLock12DropAllLocksD2Ev +_ZN3JSC6JSLock4lockEv +_ZN3JSC6JSLock6unlockEv +_ZN3JSC6JSLockD1Ev +_ZN3JSC6JSLockD2Ev +_ZN3JSC6RegExp12dumpToStreamEPKNS_6JSCellERN3WTF11PrintStreamE +_ZN3JSC6RegExp5matchEPNS_14JSGlobalObjectERKN3WTF6StringEj +_ZN3JSC6RegExp5matchEPNS_14JSGlobalObjectERKN3WTF6StringEjRNS3_6VectorIiLm0ENS3_15CrashOnOverflowELm16ENS3_10FastMallocEEE +_ZN3JSC6RegExp5matchERNS_2VMERKN3WTF6StringEj +_ZN3JSC6RegExp5matchERNS_2VMERKN3WTF6StringEjRNS3_6VectorIiLm0ENS3_15CrashOnOverflowELm16EEE +_ZN3JSC6RegExp6createERNS_2VMERKN3WTF6StringENS3_9OptionSetINS_4Yarr5FlagsEEE +_ZN3JSC6RegExp6createERNS_2VMERKN3WTF6StringENS_11RegExpFlagsE +_ZN3JSC6Symbol6createERNS_2VMERN3WTF10SymbolImplE +_ZN3JSC6Symbol6s_infoE +_ZN3JSC7JSArray11fillArgListEPNS_14JSGlobalObjectERNS_20MarkedArgumentBufferE +_ZN3JSC7JSArray11fillArgListEPNS_9ExecStateERNS_20MarkedArgumentBufferE +_ZN3JSC7JSArray15copyToArgumentsEPNS_14JSGlobalObjectEPNS_7JSValueEjj +_ZN3JSC7JSArray15copyToArgumentsEPNS_9ExecStateENS_15VirtualRegisterEjj +_ZN3JSC7JSArray17defineOwnPropertyEPNS_8JSObjectEPNS_14JSGlobalObjectENS_12PropertyNameERKNS_18PropertyDescriptorEb +_ZN3JSC7JSArray17defineOwnPropertyEPNS_8JSObjectEPNS_9ExecStateENS_12PropertyNameERKNS_18PropertyDescriptorEb +_ZN3JSC7JSArray18getOwnPropertySlotEPNS_8JSObjectEPNS_14JSGlobalObjectENS_12PropertyNameERNS_12PropertySlotE +_ZN3JSC7JSArray18getOwnPropertySlotEPNS_8JSObjectEPNS_9ExecStateENS_12PropertyNameERNS_12PropertySlotE +_ZN3JSC7JSArray26shiftCountWithArrayStorageERNS_2VMEjjPNS_12ArrayStorageE +_ZN3JSC7JSArray27getOwnNonIndexPropertyNamesEPNS_8JSObjectEPNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE +_ZN3JSC7JSArray27getOwnNonIndexPropertyNamesEPNS_8JSObjectEPNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE +_ZN3JSC7JSArray32tryCreateUninitializedRestrictedERNS_25ObjectInitializationScopeEPNS_17GCDeferralContextEPNS_9StructureEj +_ZN3JSC7JSArray38isIteratorProtocolFastAndNonObservableEv +_ZN3JSC7JSArray3popEPNS_14JSGlobalObjectE +_ZN3JSC7JSArray3popEPNS_9ExecStateE +_ZN3JSC7JSArray4pushEPNS_14JSGlobalObjectENS_7JSValueE +_ZN3JSC7JSArray4pushEPNS_9ExecStateENS_7JSValueE +_ZN3JSC7JSArray6s_infoE +_ZN3JSC7JSArray9setLengthEPNS_14JSGlobalObjectEjb +_ZN3JSC7JSArray9setLengthEPNS_9ExecStateEjb +_ZN3JSC7JSProxy10putByIndexEPNS_6JSCellEPNS_14JSGlobalObjectEjNS_7JSValueEb +_ZN3JSC7JSProxy10putByIndexEPNS_6JSCellEPNS_9ExecStateEjNS_7JSValueEb +_ZN3JSC7JSProxy12getPrototypeEPNS_8JSObjectEPNS_14JSGlobalObjectE +_ZN3JSC7JSProxy12getPrototypeEPNS_8JSObjectEPNS_9ExecStateE +_ZN3JSC7JSProxy12isExtensibleEPNS_8JSObjectEPNS_14JSGlobalObjectE +_ZN3JSC7JSProxy12isExtensibleEPNS_8JSObjectEPNS_9ExecStateE +_ZN3JSC7JSProxy12setPrototypeEPNS_8JSObjectEPNS_14JSGlobalObjectENS_7JSValueEb +_ZN3JSC7JSProxy12setPrototypeEPNS_8JSObjectEPNS_9ExecStateENS_7JSValueEb +_ZN3JSC7JSProxy12toStringNameEPKNS_8JSObjectEPNS_14JSGlobalObjectE +_ZN3JSC7JSProxy12toStringNameEPKNS_8JSObjectEPNS_9ExecStateE +_ZN3JSC7JSProxy13visitChildrenEPNS_6JSCellERNS_11SlotVisitorE +_ZN3JSC7JSProxy14deletePropertyEPNS_6JSCellEPNS_14JSGlobalObjectENS_12PropertyNameERNS_18DeletePropertySlotE +_ZN3JSC7JSProxy14deletePropertyEPNS_6JSCellEPNS_9ExecStateENS_12PropertyNameE +_ZN3JSC7JSProxy16getPropertyNamesEPNS_8JSObjectEPNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE +_ZN3JSC7JSProxy16getPropertyNamesEPNS_8JSObjectEPNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE +_ZN3JSC7JSProxy17defineOwnPropertyEPNS_8JSObjectEPNS_14JSGlobalObjectENS_12PropertyNameERKNS_18PropertyDescriptorEb +_ZN3JSC7JSProxy17defineOwnPropertyEPNS_8JSObjectEPNS_9ExecStateENS_12PropertyNameERKNS_18PropertyDescriptorEb +_ZN3JSC7JSProxy17preventExtensionsEPNS_8JSObjectEPNS_14JSGlobalObjectE +_ZN3JSC7JSProxy17preventExtensionsEPNS_8JSObjectEPNS_9ExecStateE +_ZN3JSC7JSProxy18getOwnPropertySlotEPNS_8JSObjectEPNS_14JSGlobalObjectENS_12PropertyNameERNS_12PropertySlotE +_ZN3JSC7JSProxy18getOwnPropertySlotEPNS_8JSObjectEPNS_9ExecStateENS_12PropertyNameERNS_12PropertySlotE +_ZN3JSC7JSProxy19getEnumerableLengthEPNS_14JSGlobalObjectEPNS_8JSObjectE +_ZN3JSC7JSProxy19getEnumerableLengthEPNS_9ExecStateEPNS_8JSObjectE +_ZN3JSC7JSProxy19getOwnPropertyNamesEPNS_8JSObjectEPNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE +_ZN3JSC7JSProxy19getOwnPropertyNamesEPNS_8JSObjectEPNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE +_ZN3JSC7JSProxy21deletePropertyByIndexEPNS_6JSCellEPNS_14JSGlobalObjectEj +_ZN3JSC7JSProxy21deletePropertyByIndexEPNS_6JSCellEPNS_9ExecStateEj +_ZN3JSC7JSProxy23getGenericPropertyNamesEPNS_8JSObjectEPNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE +_ZN3JSC7JSProxy23getGenericPropertyNamesEPNS_8JSObjectEPNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE +_ZN3JSC7JSProxy25getOwnPropertySlotByIndexEPNS_8JSObjectEPNS_14JSGlobalObjectEjRNS_12PropertySlotE +_ZN3JSC7JSProxy25getOwnPropertySlotByIndexEPNS_8JSObjectEPNS_9ExecStateEjRNS_12PropertySlotE +_ZN3JSC7JSProxy25getStructurePropertyNamesEPNS_8JSObjectEPNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE +_ZN3JSC7JSProxy25getStructurePropertyNamesEPNS_8JSObjectEPNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE +_ZN3JSC7JSProxy3putEPNS_6JSCellEPNS_14JSGlobalObjectENS_12PropertyNameENS_7JSValueERNS_15PutPropertySlotE +_ZN3JSC7JSProxy3putEPNS_6JSCellEPNS_9ExecStateENS_12PropertyNameENS_7JSValueERNS_15PutPropertySlotE +_ZN3JSC7JSProxy6s_infoE +_ZN3JSC7JSProxy9classNameEPKNS_8JSObjectERNS_2VME +_ZN3JSC7JSProxy9setTargetERNS_2VMEPNS_14JSGlobalObjectE +_ZN3JSC7JSScope6s_infoE +_ZN3JSC7JSScope6toThisEPNS_6JSCellEPNS_14JSGlobalObjectENS_8ECMAModeE +_ZN3JSC7JSScope6toThisEPNS_6JSCellEPNS_9ExecStateENS_8ECMAModeE +_ZN3JSC7JSValue13isValidCalleeEv +_ZN3JSC7JSValue14putToPrimitiveEPNS_14JSGlobalObjectENS_12PropertyNameES0_RNS_15PutPropertySlotE +_ZN3JSC7JSValue14putToPrimitiveEPNS_9ExecStateENS_12PropertyNameES0_RNS_15PutPropertySlotE +_ZN3JSC7JSValue21putToPrimitiveByIndexEPNS_14JSGlobalObjectEjS0_b +_ZN3JSC7JSValue21putToPrimitiveByIndexEPNS_9ExecStateEjS0_b +_ZN3JSC7Options10initializeEv +_ZN3JSC7Options10setOptionsEPKc +_ZN3JSC7Options14dumpAllOptionsEP7__sFILENS0_9DumpLevelEPKc +_ZN3JSC7Options16s_defaultOptionsE +_ZN3JSC7Options21dumpAllOptionsInALineERN3WTF13StringBuilderE +_ZN3JSC7Options23enableRestrictedOptionsEb +_ZN3JSC7Options24ensureOptionsAreCoherentEv +_ZN3JSC7Options9s_optionsE +_ZN3JSC7Options9setOptionEPKc +_ZN3JSC7Symbols11matchSymbolE +_ZN3JSC7Symbols11splitSymbolE +_ZN3JSC7Symbols12searchSymbolE +_ZN3JSC7Symbols13ofPrivateNameE +_ZN3JSC7Symbols13replaceSymbolE +_ZN3JSC7Symbols13speciesSymbolE +_ZN3JSC7Symbols14SetPrivateNameE +_ZN3JSC7Symbols14addPrivateNameE +_ZN3JSC7Symbols14allPrivateNameE +_ZN3JSC7Symbols14anyPrivateNameE +_ZN3JSC7Symbols14bigPrivateNameE +_ZN3JSC7Symbols14getPrivateNameE +_ZN3JSC7Symbols14hasPrivateNameE +_ZN3JSC7Symbols14iteratorSymbolE +_ZN3JSC7Symbols14mapPrivateNameE +_ZN3JSC7Symbols14matchAllSymbolE +_ZN3JSC7Symbols14rawPrivateNameE +_ZN3JSC7Symbols14setPrivateNameE +_ZN3JSC7Symbols14subPrivateNameE +_ZN3JSC7Symbols14supPrivateNameE +_ZN3JSC7Symbols15bindPrivateNameE +_ZN3JSC7Symbols15boldPrivateNameE +_ZN3JSC7Symbols15callPrivateNameE +_ZN3JSC7Symbols15execPrivateNameE +_ZN3JSC7Symbols15fillPrivateNameE +_ZN3JSC7Symbols15findPrivateNameE +_ZN3JSC7Symbols15flatPrivateNameE +_ZN3JSC7Symbols15fromPrivateNameE +_ZN3JSC7Symbols15keysPrivateNameE +_ZN3JSC7Symbols15linkPrivateNameE +_ZN3JSC7Symbols15metaPrivateNameE +_ZN3JSC7Symbols15nextPrivateNameE +_ZN3JSC7Symbols15pushPrivateNameE +_ZN3JSC7Symbols15racePrivateNameE +_ZN3JSC7Symbols15somePrivateNameE +_ZN3JSC7Symbols15sortPrivateNameE +_ZN3JSC7Symbols15testPrivateNameE +_ZN3JSC7Symbols15thenPrivateNameE +_ZN3JSC7Symbols15thisPrivateNameE +_ZN3JSC7Symbols16ArrayPrivateNameE +_ZN3JSC7Symbols16applyPrivateNameE +_ZN3JSC7Symbols16blinkPrivateNameE +_ZN3JSC7Symbols16catchPrivateNameE +_ZN3JSC7Symbols16everyPrivateNameE +_ZN3JSC7Symbols16fixedPrivateNameE +_ZN3JSC7Symbols16isMapPrivateNameE +_ZN3JSC7Symbols16isNaNPrivateNameE +_ZN3JSC7Symbols16isSetPrivateNameE +_ZN3JSC7Symbols16matchPrivateNameE +_ZN3JSC7Symbols16shiftPrivateNameE +_ZN3JSC7Symbols16smallPrivateNameE +_ZN3JSC7Symbols16splitPrivateNameE +_ZN3JSC7Symbols16throwPrivateNameE +_ZN3JSC7Symbols16truncPrivateNameE +_ZN3JSC7Symbols17NumberPrivateNameE +_ZN3JSC7Symbols17ObjectPrivateNameE +_ZN3JSC7Symbols17RegExpPrivateNameE +_ZN3JSC7Symbols17anchorPrivateNameE +_ZN3JSC7Symbols17assertPrivateNameE +_ZN3JSC7Symbols17concatPrivateNameE +_ZN3JSC7Symbols17createPrivateNameE +_ZN3JSC7Symbols17filterPrivateNameE +_ZN3JSC7Symbols17hasInstanceSymbolE +_ZN3JSC7Symbols17isViewPrivateNameE +_ZN3JSC7Symbols17padEndPrivateNameE +_ZN3JSC7Symbols17reducePrivateNameE +_ZN3JSC7Symbols17rejectPrivateNameE +_ZN3JSC7Symbols17repeatPrivateNameE +_ZN3JSC7Symbols17returnPrivateNameE +_ZN3JSC7Symbols17searchPrivateNameE +_ZN3JSC7Symbols17strikePrivateNameE +_ZN3JSC7Symbols17toPrimitiveSymbolE +_ZN3JSC7Symbols17toStringTagSymbolE +_ZN3JSC7Symbols17unscopablesSymbolE +_ZN3JSC7Symbols17valuesPrivateNameE +_ZN3JSC7Symbols18PromisePrivateNameE +_ZN3JSC7Symbols18entriesPrivateNameE +_ZN3JSC7Symbols18finallyPrivateNameE +_ZN3JSC7Symbols18flatMapPrivateNameE +_ZN3JSC7Symbols18forEachPrivateNameE +_ZN3JSC7Symbols18isArrayPrivateNameE +_ZN3JSC7Symbols18italicsPrivateNameE +_ZN3JSC7Symbols18ownKeysPrivateNameE +_ZN3JSC7Symbols18promisePrivateNameE +_ZN3JSC7Symbols18replacePrivateNameE +_ZN3JSC7Symbols18resolvePrivateNameE +_ZN3JSC7Symbols19InfinityPrivateNameE +_ZN3JSC7Symbols19argumentPrivateNameE +_ZN3JSC7Symbols19asyncIteratorSymbolE +_ZN3JSC7Symbols19dollarVMPrivateNameE +_ZN3JSC7Symbols19executorPrivateNameE +_ZN3JSC7Symbols19fontsizePrivateNameE +_ZN3JSC7Symbols19includesPrivateNameE +_ZN3JSC7Symbols19isFinitePrivateNameE +_ZN3JSC7Symbols19isObjectPrivateNameE +_ZN3JSC7Symbols19isRegExpPrivateNameE +_ZN3JSC7Symbols19matchAllPrivateNameE +_ZN3JSC7Symbols19padStartPrivateNameE +_ZN3JSC7Symbols19subarrayPrivateNameE +_ZN3JSC7Symbols19toLengthPrivateNameE +_ZN3JSC7Symbols19toNumberPrivateNameE +_ZN3JSC7Symbols19toObjectPrivateNameE +_ZN3JSC7Symbols19toStringPrivateNameE +_ZN3JSC7Symbols20Int8ArrayPrivateNameE +_ZN3JSC7Symbols20findIndexPrivateNameE +_ZN3JSC7Symbols20fontcolorPrivateNameE +_ZN3JSC7Symbols20generatorPrivateNameE +_ZN3JSC7Symbols20isJSArrayPrivateNameE +_ZN3JSC7Symbols20isPromisePrivateNameE +_ZN3JSC7Symbols20matchSlowPrivateNameE +_ZN3JSC7Symbols20polyProtoPrivateNameE +_ZN3JSC7Symbols20sameValuePrivateNameE +_ZN3JSC7Symbols20toIntegerPrivateNameE +_ZN3JSC7Symbols20undefinedPrivateNameE +_ZN3JSC7Symbols21BuiltinLogPrivateNameE +_ZN3JSC7Symbols21Int16ArrayPrivateNameE +_ZN3JSC7Symbols21Int32ArrayPrivateNameE +_ZN3JSC7Symbols21ModuleLinkPrivateNameE +_ZN3JSC7Symbols21Uint8ArrayPrivateNameE +_ZN3JSC7Symbols21allSettledPrivateNameE +_ZN3JSC7Symbols21awaitValuePrivateNameE +_ZN3JSC7Symbols21charCodeAtPrivateNameE +_ZN3JSC7Symbols21copyWithinPrivateNameE +_ZN3JSC7Symbols21createHTMLPrivateNameE +_ZN3JSC7Symbols21enqueueJobPrivateNameE +_ZN3JSC7Symbols21homeObjectPrivateNameE +_ZN3JSC7Symbols21instanceOfPrivateNameE +_ZN3JSC7Symbols21isCallablePrivateNameE +_ZN3JSC7Symbols21loadModulePrivateNameE +_ZN3JSC7Symbols21newPromisePrivateNameE +_ZN3JSC7Symbols21nextMethodPrivateNameE +_ZN3JSC7Symbols21onRejectedPrivateNameE +_ZN3JSC7Symbols21regExpExecPrivateNameE +_ZN3JSC7Symbols21replaceAllPrivateNameE +_ZN3JSC7Symbols21tryGetByIdPrivateNameE +_ZN3JSC7Symbols22ArrayBufferPrivateNameE +_ZN3JSC7Symbols22ModuleFetchPrivateNameE +_ZN3JSC7Symbols22ModuleReadyPrivateNameE +_ZN3JSC7Symbols22Uint16ArrayPrivateNameE +_ZN3JSC7Symbols22Uint32ArrayPrivateNameE +_ZN3JSC7Symbols22fromEntriesPrivateNameE +_ZN3JSC7Symbols22internalAllPrivateNameE +_ZN3JSC7Symbols22isArraySlowPrivateNameE +_ZN3JSC7Symbols22isGeneratorPrivateNameE +_ZN3JSC7Symbols22onFulfilledPrivateNameE +_ZN3JSC7Symbols22reduceRightPrivateNameE +_ZN3JSC7Symbols22starDefaultPrivateNameE +_ZN3JSC7Symbols23Float32ArrayPrivateNameE +_ZN3JSC7Symbols23Float64ArrayPrivateNameE +_ZN3JSC7Symbols23appendMemcpyPrivateNameE +_ZN3JSC7Symbols23callFunctionPrivateNameE +_ZN3JSC7Symbols23concatMemcpyPrivateNameE +_ZN3JSC7Symbols23fulfillFetchPrivateNameE +_ZN3JSC7Symbols23importModulePrivateNameE +_ZN3JSC7Symbols23mapBucketKeyPrivateNameE +_ZN3JSC7Symbols23provideFetchPrivateNameE +_ZN3JSC7Symbols23regExpCreatePrivateNameE +_ZN3JSC7Symbols23requestFetchPrivateNameE +_ZN3JSC7Symbols23setBucketKeyPrivateNameE +_ZN3JSC7Symbols23syncIteratorPrivateNameE +_ZN3JSC7Symbols24ModuleSatisfyPrivateNameE +_ZN3JSC7Symbols24applyFunctionPrivateNameE +_ZN3JSC7Symbols24argumentCountPrivateNameE +_ZN3JSC7Symbols24createPromisePrivateNameE +_ZN3JSC7Symbols24flatIntoArrayPrivateNameE +_ZN3JSC7Symbols24generatorNextPrivateNameE +_ZN3JSC7Symbols24generatorThisPrivateNameE +_ZN3JSC7Symbols24getByIdDirectPrivateNameE +_ZN3JSC7Symbols24idWithProfilePrivateNameE +_ZN3JSC7Symbols24isConcatSpreadableSymbolE +_ZN3JSC7Symbols24isConstructorPrivateNameE +_ZN3JSC7Symbols24isMapIteratorPrivateNameE +_ZN3JSC7Symbols24isProxyObjectPrivateNameE +_ZN3JSC7Symbols24isSetIteratorPrivateNameE +_ZN3JSC7Symbols24makeTypeErrorPrivateNameE +_ZN3JSC7Symbols24mapBucketHeadPrivateNameE +_ZN3JSC7Symbols24mapBucketNextPrivateNameE +_ZN3JSC7Symbols24putByIdDirectPrivateNameE +_ZN3JSC7Symbols24rejectPromisePrivateNameE +_ZN3JSC7Symbols24setBucketHeadPrivateNameE +_ZN3JSC7Symbols24setBucketNextPrivateNameE +_ZN3JSC7Symbols24setStateToMaxPrivateNameE +_ZN3JSC7Symbols24speciesGetterPrivateNameE +_ZN3JSC7Symbols24thisTimeValuePrivateNameE +_ZN3JSC7Symbols25AggregateErrorPrivateNameE +_ZN3JSC7Symbols25concatSlowPathPrivateNameE +_ZN3JSC7Symbols25dateTimeFormatPrivateNameE +_ZN3JSC7Symbols25definePropertyPrivateNameE +_ZN3JSC7Symbols25deletePropertyPrivateNameE +_ZN3JSC7Symbols25fulfillPromisePrivateNameE +_ZN3JSC7Symbols25generatorFramePrivateNameE +_ZN3JSC7Symbols25generatorStatePrivateNameE +_ZN3JSC7Symbols25generatorValuePrivateNameE +_ZN3JSC7Symbols25getPrototypeOfPrivateNameE +_ZN3JSC7Symbols25getThenFinallyPrivateNameE +_ZN3JSC7Symbols25isDerivedArrayPrivateNameE +_ZN3JSC7Symbols25isRegExpObjectPrivateNameE +_ZN3JSC7Symbols25iteratedObjectPrivateNameE +_ZN3JSC7Symbols25iteratedStringPrivateNameE +_ZN3JSC7Symbols25mapBucketValuePrivateNameE +_ZN3JSC7Symbols25newTargetLocalPrivateNameE +_ZN3JSC7Symbols25putByValDirectPrivateNameE +_ZN3JSC7Symbols25regExpTestFastPrivateNameE +_ZN3JSC7Symbols25repeatSlowPathPrivateNameE +_ZN3JSC7Symbols25requestSatisfyPrivateNameE +_ZN3JSC7Symbols25resolvePromisePrivateNameE +_ZN3JSC7Symbols25throwTypeErrorPrivateNameE +_ZN3JSC7Symbols25toLocaleStringPrivateNameE +_ZN3JSC7Symbols25typedArraySortPrivateNameE +_ZN3JSC7Symbols26BuiltinDescribePrivateNameE +_ZN3JSC7Symbols26InternalPromisePrivateNameE +_ZN3JSC7Symbols26MAX_ARRAY_INDEXPrivateNameE +_ZN3JSC7Symbols26ModuleTranslatePrivateNameE +_ZN3JSC7Symbols26generatorResumePrivateNameE +_ZN3JSC7Symbols26getCatchFinallyPrivateNameE +_ZN3JSC7Symbols26isArrayIteratorPrivateNameE +_ZN3JSC7Symbols26isBoundFunctionPrivateNameE +_ZN3JSC7Symbols26mapIteratorNextPrivateNameE +_ZN3JSC7Symbols26promiseRejectedPrivateNameE +_ZN3JSC7Symbols26regExpMatchFastPrivateNameE +_ZN3JSC7Symbols26regExpSplitFastPrivateNameE +_ZN3JSC7Symbols26repeatCharacterPrivateNameE +_ZN3JSC7Symbols26setIteratorNextPrivateNameE +_ZN3JSC7Symbols26stringSplitFastPrivateNameE +_ZN3JSC7Symbols26throwRangeErrorPrivateNameE +_ZN3JSC7Symbols27MAX_SAFE_INTEGERPrivateNameE +_ZN3JSC7Symbols27compileStreamingPrivateNameE +_ZN3JSC7Symbols27ensureRegisteredPrivateNameE +_ZN3JSC7Symbols27isAsyncGeneratorPrivateNameE +_ZN3JSC7Symbols27isExecutionStatePrivateNameE +_ZN3JSC7Symbols27isStringIteratorPrivateNameE +_ZN3JSC7Symbols27isTypedArrayViewPrivateNameE +_ZN3JSC7Symbols27iterationKindKeyPrivateNameE +_ZN3JSC7Symbols27moduleEvaluationPrivateNameE +_ZN3JSC7Symbols27newArrayWithSizePrivateNameE +_ZN3JSC7Symbols27newRegistryEntryPrivateNameE +_ZN3JSC7Symbols27performIterationPrivateNameE +_ZN3JSC7Symbols27promiseFulfilledPrivateNameE +_ZN3JSC7Symbols27promiseStateMaskPrivateNameE +_ZN3JSC7Symbols27regExpSearchFastPrivateNameE +_ZN3JSC7Symbols27typedArrayLengthPrivateNameE +_ZN3JSC7Symbols28MAX_STRING_LENGTHPrivateNameE +_ZN3JSC7Symbols28ModuleInstantiatePrivateNameE +_ZN3JSC7Symbols28Uint8ClampedArrayPrivateNameE +_ZN3JSC7Symbols28allocateInt8ArrayPrivateNameE +_ZN3JSC7Symbols28isUndefinedOrNullPrivateNameE +_ZN3JSC7Symbols28makeBoundFunctionPrivateNameE +_ZN3JSC7Symbols28promiseFieldFlagsPrivateNameE +_ZN3JSC7Symbols28promiseRejectSlowPrivateNameE +_ZN3JSC7Symbols28regExpBuiltinExecPrivateNameE +_ZN3JSC7Symbols28sentinelMapBucketPrivateNameE +_ZN3JSC7Symbols28sentinelSetBucketPrivateNameE +_ZN3JSC7Symbols28symbolHasInstancePrivateNameE +_ZN3JSC7Symbols29advanceStringIndexPrivateNameE +_ZN3JSC7Symbols29allocateInt16ArrayPrivateNameE +_ZN3JSC7Symbols29allocateInt32ArrayPrivateNameE +_ZN3JSC7Symbols29allocateTypedArrayPrivateNameE +_ZN3JSC7Symbols29allocateUint8ArrayPrivateNameE +_ZN3JSC7Symbols29arraySpeciesCreatePrivateNameE +_ZN3JSC7Symbols29copyDataPropertiesPrivateNameE +_ZN3JSC7Symbols29defaultPromiseThenPrivateNameE +_ZN3JSC7Symbols29derivedConstructorPrivateNameE +_ZN3JSC7Symbols29generatorFieldNextPrivateNameE +_ZN3JSC7Symbols29generatorFieldThisPrivateNameE +_ZN3JSC7Symbols29iterationKindValuePrivateNameE +_ZN3JSC7Symbols29newPromiseReactionPrivateNameE +_ZN3JSC7Symbols29promiseReactionJobPrivateNameE +_ZN3JSC7Symbols29promiseResolveSlowPrivateNameE +_ZN3JSC7Symbols29replaceUsingRegExpPrivateNameE +_ZN3JSC7Symbols29requestInstantiatePrivateNameE +_ZN3JSC7Symbols29speciesConstructorPrivateNameE +_ZN3JSC7Symbols29toLocaleDateStringPrivateNameE +_ZN3JSC7Symbols29toLocaleTimeStringPrivateNameE +_ZN3JSC7Symbols30allocateUint16ArrayPrivateNameE +_ZN3JSC7Symbols30allocateUint32ArrayPrivateNameE +_ZN3JSC7Symbols30asyncFunctionResumePrivateNameE +_ZN3JSC7Symbols30asyncGeneratorYieldPrivateNameE +_ZN3JSC7Symbols30createPrivateSymbolPrivateNameE +_ZN3JSC7Symbols30forceFulfillPromisePrivateNameE +_ZN3JSC7Symbols30generatorFieldFramePrivateNameE +_ZN3JSC7Symbols30generatorFieldStatePrivateNameE +_ZN3JSC7Symbols30generatorResumeModePrivateNameE +_ZN3JSC7Symbols30getOwnPropertyNamesPrivateNameE +_ZN3JSC7Symbols30intlSubstituteValuePrivateNameE +_ZN3JSC7Symbols30isSuspendYieldStatePrivateNameE +_ZN3JSC7Symbols30promiseOrCapabilityPrivateNameE +_ZN3JSC7Symbols30promiseStatePendingPrivateNameE +_ZN3JSC7Symbols30requestImportModulePrivateNameE +_ZN3JSC7Symbols31RegExpStringIteratorPrivateNameE +_ZN3JSC7Symbols31allocateFloat32ArrayPrivateNameE +_ZN3JSC7Symbols31allocateFloat64ArrayPrivateNameE +_ZN3JSC7Symbols31asyncGeneratorRejectPrivateNameE +_ZN3JSC7Symbols31getByIdDirectPrivatePrivateNameE +_ZN3JSC7Symbols31hasOwnLengthPropertyPrivateNameE +_ZN3JSC7Symbols31instantiateStreamingPrivateNameE +_ZN3JSC7Symbols31iterationKindEntriesPrivateNameE +_ZN3JSC7Symbols31mapIteratorFieldKindPrivateNameE +_ZN3JSC7Symbols31newPromiseCapabilityPrivateNameE +_ZN3JSC7Symbols31promiseStateRejectedPrivateNameE +_ZN3JSC7Symbols31propertyIsEnumerablePrivateNameE +_ZN3JSC7Symbols31putByIdDirectPrivatePrivateNameE +_ZN3JSC7Symbols31rejectWithoutPromisePrivateNameE +_ZN3JSC7Symbols31setIteratorFieldKindPrivateNameE +_ZN3JSC7Symbols31stringConcatSlowPathPrivateNameE +_ZN3JSC7Symbols31symbolIteratorGetterPrivateNameE +_ZN3JSC7Symbols32AsyncFromSyncIteratorPrivateNameE +_ZN3JSC7Symbols32asyncGeneratorEnqueuePrivateNameE +_ZN3JSC7Symbols32asyncGeneratorResolvePrivateNameE +_ZN3JSC7Symbols32fulfillWithoutPromisePrivateNameE +_ZN3JSC7Symbols32linkAndEvaluateModulePrivateNameE +_ZN3JSC7Symbols32loadAndEvaluateModulePrivateNameE +_ZN3JSC7Symbols32promiseFlagsIsHandledPrivateNameE +_ZN3JSC7Symbols32promiseStateFulfilledPrivateNameE +_ZN3JSC7Symbols32resolveWithoutPromisePrivateNameE +_ZN3JSC7Symbols32stringIndexOfInternalPrivateNameE +_ZN3JSC7Symbols32throwOutOfMemoryErrorPrivateNameE +_ZN3JSC7Symbols33arrayIteratorFieldKindPrivateNameE +_ZN3JSC7Symbols33hasOwnPropertyFunctionPrivateNameE +_ZN3JSC7Symbols33promiseRejectionHandlePrivateNameE +_ZN3JSC7Symbols33promiseRejectionRejectPrivateNameE +_ZN3JSC7Symbols33regExpProtoFlagsGetterPrivateNameE +_ZN3JSC7Symbols33stringIncludesInternalPrivateNameE +_ZN3JSC7Symbols33throwTypeErrorFunctionPrivateNameE +_ZN3JSC7Symbols34GeneratorStateCompletedPrivateNameE +_ZN3JSC7Symbols34GeneratorStateExecutingPrivateNameE +_ZN3JSC7Symbols34arrayIteratorFieldIndexPrivateNameE +_ZN3JSC7Symbols34arrayIteratorNextHelperPrivateNameE +_ZN3JSC7Symbols34getPromiseInternalFieldPrivateNameE +_ZN3JSC7Symbols34putPromiseInternalFieldPrivateNameE +_ZN3JSC7Symbols34regExpProtoGlobalGetterPrivateNameE +_ZN3JSC7Symbols34regExpProtoSourceGetterPrivateNameE +_ZN3JSC7Symbols34regExpProtoStickyGetterPrivateNameE +_ZN3JSC7Symbols34stringSubstringInternalPrivateNameE +_ZN3JSC7Symbols34triggerPromiseReactionsPrivateNameE +_ZN3JSC7Symbols35GeneratorResumeModeThrowPrivateNameE +_ZN3JSC7Symbols35InspectorInstrumentationPrivateNameE +_ZN3JSC7Symbols35asyncGeneratorResumeNextPrivateNameE +_ZN3JSC7Symbols35createArgumentsButterflyPrivateNameE +_ZN3JSC7Symbols35createResolvingFunctionsPrivateNameE +_ZN3JSC7Symbols35doAsyncGeneratorBodyCallPrivateNameE +_ZN3JSC7Symbols35hasInstanceBoundFunctionPrivateNameE +_ZN3JSC7Symbols35instanceFieldInitializerPrivateNameE +_ZN3JSC7Symbols35newPromiseCapabilitySlowPrivateNameE +_ZN3JSC7Symbols35regExpProtoUnicodeGetterPrivateNameE +_ZN3JSC7Symbols35regExpStringIteratorDonePrivateNameE +_ZN3JSC7Symbols35repeatCharactersSlowPathPrivateNameE +_ZN3JSC7Symbols35replaceUsingStringSearchPrivateNameE +_ZN3JSC7Symbols35stringIteratorFieldIndexPrivateNameE +_ZN3JSC7Symbols35tailCallForwardArgumentsPrivateNameE +_ZN3JSC7Symbols35typedArraySubarrayCreatePrivateNameE +_ZN3JSC7Symbols36GeneratorResumeModeNormalPrivateNameE +_ZN3JSC7Symbols36GeneratorResumeModeReturnPrivateNameE +_ZN3JSC7Symbols36allocateUint8ClampedArrayPrivateNameE +_ZN3JSC7Symbols36dependencyKeysIfEvaluatedPrivateNameE +_ZN3JSC7Symbols36flatIntoArrayWithCallbackPrivateNameE +_ZN3JSC7Symbols36getGeneratorInternalFieldPrivateNameE +_ZN3JSC7Symbols36mapIteratorFieldMapBucketPrivateNameE +_ZN3JSC7Symbols36newHandledRejectedPromisePrivateNameE +_ZN3JSC7Symbols36promiseResolveThenableJobPrivateNameE +_ZN3JSC7Symbols36putGeneratorInternalFieldPrivateNameE +_ZN3JSC7Symbols36setIteratorFieldSetBucketPrivateNameE +_ZN3JSC7Symbols36symbolAsyncIteratorGetterPrivateNameE +_ZN3JSC7Symbols37asyncGeneratorQueueDequeuePrivateNameE +_ZN3JSC7Symbols37asyncGeneratorQueueEnqueuePrivateNameE +_ZN3JSC7Symbols37asyncGeneratorQueueIsEmptyPrivateNameE +_ZN3JSC7Symbols37regExpProtoMultilineGetterPrivateNameE +_ZN3JSC7Symbols37regExpPrototypeSymbolMatchPrivateNameE +_ZN3JSC7Symbols37regExpStringIteratorGlobalPrivateNameE +_ZN3JSC7Symbols37regExpStringIteratorRegExpPrivateNameE +_ZN3JSC7Symbols37regExpStringIteratorStringPrivateNameE +_ZN3JSC7Symbols38asyncGeneratorQueueItemNextPrivateNameE +_ZN3JSC7Symbols38createAsyncFromSyncIteratorPrivateNameE +_ZN3JSC7Symbols38getMapIteratorInternalFieldPrivateNameE +_ZN3JSC7Symbols38getSetIteratorInternalFieldPrivateNameE +_ZN3JSC7Symbols38hostPromiseRejectionTrackerPrivateNameE +_ZN3JSC7Symbols38putMapIteratorInternalFieldPrivateNameE +_ZN3JSC7Symbols38putSetIteratorInternalFieldPrivateNameE +_ZN3JSC7Symbols38regExpProtoIgnoreCaseGetterPrivateNameE +_ZN3JSC7Symbols38regExpStringIteratorUnicodePrivateNameE +_ZN3JSC7Symbols38replaceAllUsingStringSearchPrivateNameE +_ZN3JSC7Symbols39AsyncGeneratorStateCompletedPrivateNameE +_ZN3JSC7Symbols39AsyncGeneratorStateExecutingPrivateNameE +_ZN3JSC7Symbols39asyncGeneratorFieldQueueLastPrivateNameE +_ZN3JSC7Symbols39regExpPrototypeSymbolReplacePrivateNameE +_ZN3JSC7Symbols39typedArraySpeciesConstructorPrivateNameE +_ZN3JSC7Symbols40asyncGeneratorFieldQueueFirstPrivateNameE +_ZN3JSC7Symbols40getArrayIteratorInternalFieldPrivateNameE +_ZN3JSC7Symbols40promiseFieldReactionsOrResultPrivateNameE +_ZN3JSC7Symbols40promiseResolveThenableJobFastPrivateNameE +_ZN3JSC7Symbols40putArrayIteratorInternalFieldPrivateNameE +_ZN3JSC7Symbols40tryGetByIdWithWellKnownSymbolPrivateNameE +_ZN3JSC7Symbols41copyDataPropertiesNoExclusionsPrivateNameE +_ZN3JSC7Symbols41getAsyncGeneratorInternalFieldPrivateNameE +_ZN3JSC7Symbols41getStringIteratorInternalFieldPrivateNameE +_ZN3JSC7Symbols41putAsyncGeneratorInternalFieldPrivateNameE +_ZN3JSC7Symbols41putStringIteratorInternalFieldPrivateNameE +_ZN3JSC7Symbols42AsyncGeneratorSuspendReasonNonePrivateNameE +_ZN3JSC7Symbols43AsyncGeneratorSuspendReasonAwaitPrivateNameE +_ZN3JSC7Symbols43AsyncGeneratorSuspendReasonYieldPrivateNameE +_ZN3JSC7Symbols43arrayIteratorFieldIteratedObjectPrivateNameE +_ZN3JSC7Symbols43asyncGeneratorFieldSuspendReasonPrivateNameE +_ZN3JSC7Symbols43promiseReactionJobWithoutPromisePrivateNameE +_ZN3JSC7Symbols43typedArrayGetOriginalConstructorPrivateNameE +_ZN3JSC7Symbols44AsyncGeneratorStateAwaitingReturnPrivateNameE +_ZN3JSC7Symbols44AsyncGeneratorStateSuspendedStartPrivateNameE +_ZN3JSC7Symbols44AsyncGeneratorStateSuspendedYieldPrivateNameE +_ZN3JSC7Symbols44stringIteratorFieldIteratedStringPrivateNameE +_ZN3JSC7Symbols46typedArrayClampArgumentToStartOrEndPrivateNameE +_ZN3JSC7Symbols46webAssemblyCompileStreamingInternalPrivateNameE +_ZN3JSC7Symbols49createResolvingFunctionsWithoutPromisePrivateNameE +_ZN3JSC7Symbols49hasObservableSideEffectsForRegExpMatchPrivateNameE +_ZN3JSC7Symbols49hasObservableSideEffectsForRegExpSplitPrivateNameE +_ZN3JSC7Symbols50webAssemblyInstantiateStreamingInternalPrivateNameE +_ZN3JSC7Symbols51hasObservableSideEffectsForStringReplacePrivateNameE +_ZN3JSC7Symbols53promiseFlagsIsFirstResolvingFunctionCalledPrivateNameE +_ZN3JSC7Symbols54promiseResolveThenableJobWithoutPromiseFastPrivateNameE +_ZN3JSC7Symbols59defineEnumerableWritableConfigurableDataPropertyPrivateNameE +_ZN3JSC7Symbols59rejectPromiseWithFirstResolvingFunctionCallCheckPrivateNameE +_ZN3JSC7Symbols60resolvePromiseWithFirstResolvingFunctionCallCheckPrivateNameE +_ZN3JSC7VMTraps8fireTrapENS0_9EventTypeE +_ZN3JSC7WeakSet13findAllocatorENS_13CellContainerE +_ZN3JSC7WeakSet13findAllocatorEv +_ZN3JSC8Bindings10RootObjectD0Ev +_ZN3JSC8Bindings10RootObjectD1Ev +_ZN3JSC8Bindings10RootObjectD2Ev +_ZN3JSC8Bindings13RuntimeObject10invalidateEv +_ZN3JSC8Bindings13RuntimeObject11fieldGetterEPNS_9ExecStateElNS_12PropertyNameE +_ZN3JSC8Bindings13RuntimeObject11getCallDataEPNS_6JSCellE +_ZN3JSC8Bindings13RuntimeObject11getCallDataEPNS_6JSCellERNS_8CallDataE +_ZN3JSC8Bindings13RuntimeObject12defaultValueEPKNS_8JSObjectEPNS_9ExecStateENS_22PreferredPrimitiveTypeE +_ZN3JSC8Bindings13RuntimeObject12methodGetterEPNS_9ExecStateElNS_12PropertyNameE +_ZN3JSC8Bindings13RuntimeObject14deletePropertyEPNS_6JSCellEPNS_14JSGlobalObjectENS_12PropertyNameERNS_18DeletePropertySlotE +_ZN3JSC8Bindings13RuntimeObject14deletePropertyEPNS_6JSCellEPNS_9ExecStateENS_12PropertyNameE +_ZN3JSC8Bindings13RuntimeObject14finishCreationERNS_2VME +_ZN3JSC8Bindings13RuntimeObject15createPrototypeERNS_2VMERNS_14JSGlobalObjectE +_ZN3JSC8Bindings13RuntimeObject15createStructureERNS_2VMEPNS_14JSGlobalObjectENS_7JSValueE +_ZN3JSC8Bindings13RuntimeObject15subspaceForImplERNS_2VME +_ZN3JSC8Bindings13RuntimeObject16getConstructDataEPNS_6JSCellE +_ZN3JSC8Bindings13RuntimeObject16getConstructDataEPNS_6JSCellERNS_13ConstructDataE +_ZN3JSC8Bindings13RuntimeObject18getOwnPropertySlotEPNS_8JSObjectEPNS_14JSGlobalObjectENS_12PropertyNameERNS_12PropertySlotE +_ZN3JSC8Bindings13RuntimeObject18getOwnPropertySlotEPNS_8JSObjectEPNS_9ExecStateENS_12PropertyNameERNS_12PropertySlotE +_ZN3JSC8Bindings13RuntimeObject19getOwnPropertyNamesEPNS_8JSObjectEPNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE +_ZN3JSC8Bindings13RuntimeObject20fallbackObjectGetterEPNS_9ExecStateElNS_12PropertyNameE +_ZN3JSC8Bindings13RuntimeObject23throwInvalidAccessErrorEPNS_14JSGlobalObjectERNS_10ThrowScopeE +_ZN3JSC8Bindings13RuntimeObject23throwInvalidAccessErrorEPNS_9ExecStateERNS_10ThrowScopeE +_ZN3JSC8Bindings13RuntimeObject3putEPNS_6JSCellEPNS_14JSGlobalObjectENS_12PropertyNameENS_7JSValueERNS_15PutPropertySlotE +_ZN3JSC8Bindings13RuntimeObject3putEPNS_6JSCellEPNS_9ExecStateENS_12PropertyNameENS_7JSValueERNS_15PutPropertySlotE +_ZN3JSC8Bindings13RuntimeObject4infoEv +_ZN3JSC8Bindings13RuntimeObject6createERNS_2VMEPNS_9StructureEON3WTF6RefPtrINS0_8InstanceENS6_13DumbPtrTraitsIS8_EEEE +_ZN3JSC8Bindings13RuntimeObject6s_infoE +_ZN3JSC8Bindings13RuntimeObject7destroyEPNS_6JSCellE +_ZN3JSC8Bindings13RuntimeObjectC1ERKS1_ +_ZN3JSC8Bindings13RuntimeObjectC1ERNS_2VMEPNS_9StructureEON3WTF6RefPtrINS0_8InstanceENS6_13DumbPtrTraitsIS8_EEEE +_ZN3JSC8Bindings13RuntimeObjectC2ERKS1_ +_ZN3JSC8Bindings13RuntimeObjectC2ERNS_2VMEPNS_9StructureEON3WTF6RefPtrINS0_8InstanceENS6_13DumbPtrTraitsIS8_EEEE +_ZN3JSC8Bindings13RuntimeObjectD1Ev +_ZN3JSC8Bindings13RuntimeObjectD2Ev +_ZN3JSC8Bindings13RuntimeObjectaSERKS1_ +_ZN3JSC8Bindings8Instance16newRuntimeObjectEPNS_14JSGlobalObjectE +_ZN3JSC8Bindings8Instance16newRuntimeObjectEPNS_9ExecStateE +_ZN3JSC8Bindings8Instance19createRuntimeObjectEPNS_14JSGlobalObjectE +_ZN3JSC8Bindings8Instance19createRuntimeObjectEPNS_9ExecStateE +_ZN3JSC8Bindings8InstanceC2EON3WTF6RefPtrINS0_10RootObjectENS2_13DumbPtrTraitsIS4_EEEE +_ZN3JSC8Bindings8InstanceD0Ev +_ZN3JSC8Bindings8InstanceD1Ev +_ZN3JSC8Bindings8InstanceD2Ev +_ZN3JSC8DataView6createEON3WTF6RefPtrINS_11ArrayBufferENS1_13DumbPtrTraitsIS3_EEEEjj +_ZN3JSC8Debugger10isAttachedEPNS_14JSGlobalObjectE +_ZN3JSC8Debugger11atStatementEPNS_9CallFrameE +_ZN3JSC8Debugger11atStatementEPNS_9ExecStateE +_ZN3JSC8Debugger11handlePauseEPNS_14JSGlobalObjectENS0_14ReasonForPauseE +_ZN3JSC8Debugger11returnEventEPNS_9CallFrameE +_ZN3JSC8Debugger11returnEventEPNS_9ExecStateE +_ZN3JSC8Debugger11unwindEventEPNS_9CallFrameE +_ZN3JSC8Debugger11unwindEventEPNS_9ExecStateE +_ZN3JSC8Debugger12atExpressionEPNS_9CallFrameE +_ZN3JSC8Debugger12atExpressionEPNS_9ExecStateE +_ZN3JSC8Debugger12breakProgramEv +_ZN3JSC8Debugger13clearBlackboxEv +_ZN3JSC8Debugger13hasBreakpointEmRKN3WTF12TextPositionEPNS_10BreakpointE +_ZN3JSC8Debugger13pauseIfNeededEPNS_14JSGlobalObjectE +_ZN3JSC8Debugger13pauseIfNeededEPNS_9ExecStateE +_ZN3JSC8Debugger13setBreakpointERNS_10BreakpointERb +_ZN3JSC8Debugger14addToBlacklistEm +_ZN3JSC8Debugger14clearBlacklistEv +_ZN3JSC8Debugger15clearParsedDataEv +_ZN3JSC8Debugger15continueProgramEv +_ZN3JSC8Debugger15didRunMicrotaskEv +_ZN3JSC8Debugger15setBlackboxTypeEmN3WTF8OptionalINS0_12BlackboxTypeEEE +_ZN3JSC8Debugger15setSteppingModeENS0_12SteppingModeE +_ZN3JSC8Debugger15updateCallFrameEPNS_14JSGlobalObjectEPNS_9CallFrameENS0_21CallFrameUpdateActionE +_ZN3JSC8Debugger15updateCallFrameEPNS_9ExecStateENS0_21CallFrameUpdateActionE +_ZN3JSC8Debugger16applyBreakpointsEPNS_9CodeBlockE +_ZN3JSC8Debugger16clearBreakpointsEv +_ZN3JSC8Debugger16currentExceptionEv +_ZN3JSC8Debugger16removeBreakpointEm +_ZN3JSC8Debugger16toggleBreakpointEPNS_9CodeBlockERNS_10BreakpointENS0_15BreakpointStateE +_ZN3JSC8Debugger16toggleBreakpointERNS_10BreakpointENS0_15BreakpointStateE +_ZN3JSC8Debugger16willRunMicrotaskEv +_ZN3JSC8Debugger17debuggerParseDataEmPNS_14SourceProviderE +_ZN3JSC8Debugger17didEvaluateScriptEN3WTF7SecondsENS_15ProfilingReasonE +_ZN3JSC8Debugger17didExecuteProgramEPNS_9CallFrameE +_ZN3JSC8Debugger17didExecuteProgramEPNS_9ExecStateE +_ZN3JSC8Debugger17registerCodeBlockEPNS_9CodeBlockE +_ZN3JSC8Debugger17resolveBreakpointERNS_10BreakpointEPNS_14SourceProviderE +_ZN3JSC8Debugger17stepIntoStatementEv +_ZN3JSC8Debugger17stepOutOfFunctionEv +_ZN3JSC8Debugger17stepOverStatementEv +_ZN3JSC8Debugger18didReachBreakpointEPNS_9ExecStateE +_ZN3JSC8Debugger18setProfilingClientEPNS0_15ProfilingClientE +_ZN3JSC8Debugger18stepNextExpressionEv +_ZN3JSC8Debugger18willEvaluateScriptEv +_ZN3JSC8Debugger18willExecuteProgramEPNS_9CallFrameE +_ZN3JSC8Debugger18willExecuteProgramEPNS_9ExecStateE +_ZN3JSC8Debugger19activateBreakpointsEv +_ZN3JSC8Debugger19clearNextPauseStateEv +_ZN3JSC8Debugger19handleBreakpointHitEPNS_14JSGlobalObjectERKNS_10BreakpointE +_ZN3JSC8Debugger20setSuppressAllPausesEb +_ZN3JSC8Debugger21clearDebuggerRequestsEPNS_14JSGlobalObjectE +_ZN3JSC8Debugger21deactivateBreakpointsEv +_ZN3JSC8Debugger23recompileAllJSFunctionsEv +_ZN3JSC8Debugger23setBreakpointsActivatedEb +_ZN3JSC8Debugger23setPauseOnNextStatementEb +_ZN3JSC8Debugger23updateCallFrameInternalEPNS_9CallFrameE +_ZN3JSC8Debugger23updateCallFrameInternalEPNS_9ExecStateE +_ZN3JSC8Debugger24currentDebuggerCallFrameEv +_ZN3JSC8Debugger25didReachDebuggerStatementEPNS_9CallFrameE +_ZN3JSC8Debugger25setPauseOnExceptionsStateENS0_22PauseOnExceptionsStateE +_ZN3JSC8Debugger2vmEv +_ZN3JSC8Debugger34notifyDoneProcessingDebuggerEventsEv +_ZN3JSC8Debugger6attachEPNS_14JSGlobalObjectE +_ZN3JSC8Debugger6detachEPNS_14JSGlobalObjectENS0_15ReasonForDetachE +_ZN3JSC8Debugger9callEventEPNS_9CallFrameE +_ZN3JSC8Debugger9callEventEPNS_9ExecStateE +_ZN3JSC8Debugger9exceptionEPNS_14JSGlobalObjectEPNS_9CallFrameENS_7JSValueEb +_ZN3JSC8Debugger9exceptionEPNS_9ExecStateENS_7JSValueEb +_ZN3JSC8DebuggerC2ERKS0_ +_ZN3JSC8DebuggerC2ERNS_2VME +_ZN3JSC8DebuggerD0Ev +_ZN3JSC8DebuggerD1Ev +_ZN3JSC8DebuggerD2Ev +_ZN3JSC8DebuggerdaEPv +_ZN3JSC8DebuggerdlEPv +_ZN3JSC8DebuggernaEm +_ZN3JSC8DebuggernaEmPv +_ZN3JSC8DebuggernwEm +_ZN3JSC8DebuggernwEm10NotNullTagPv +_ZN3JSC8DebuggernwEmPv +_ZN3JSC8FreeList14initializeBumpEPcj +_ZN3JSC8FreeList14initializeListEPNS_8FreeCellEmj +_ZN3JSC8JSBigInt10createFromEPNS_14JSGlobalObjectEi +_ZN3JSC8JSBigInt10createZeroEPNS_14JSGlobalObjectE +_ZN3JSC8JSBigInt12tryRightTrimERNS_2VME +_ZN3JSC8JSBigInt13equalsToInt32Ei +_ZN3JSC8JSBigInt13tryCreateZeroERNS_2VME +_ZN3JSC8JSBigInt16createWithLengthEPNS_14JSGlobalObjectEj +_ZN3JSC8JSBigInt19tryCreateWithLengthERNS_2VMEj +_ZN3JSC8JSBigInt6equalsEPS0_S1_ +_ZN3JSC8JSBigInt6s_infoE +_ZN3JSC8JSBigInt9rightTrimEPNS_14JSGlobalObjectE +_ZN3JSC8JSCallee6s_infoE +_ZN3JSC8JSCalleeC1ERNS_2VMEPNS_14JSGlobalObjectEPNS_9StructureE +_ZN3JSC8JSCalleeC2ERNS_2VMEPNS_14JSGlobalObjectEPNS_9StructureE +_ZN3JSC8JSObject10putByIndexEPNS_6JSCellEPNS_14JSGlobalObjectEjNS_7JSValueEb +_ZN3JSC8JSObject10putByIndexEPNS_6JSCellEPNS_9ExecStateEjNS_7JSValueEb +_ZN3JSC8JSObject11analyzeHeapEPNS_6JSCellERNS_12HeapAnalyzerE +_ZN3JSC8JSObject11hasInstanceEPNS_14JSGlobalObjectENS_7JSValueE +_ZN3JSC8JSObject11hasInstanceEPNS_14JSGlobalObjectENS_7JSValueES3_ +_ZN3JSC8JSObject11hasInstanceEPNS_9ExecStateENS_7JSValueE +_ZN3JSC8JSObject11hasInstanceEPNS_9ExecStateENS_7JSValueES3_ +_ZN3JSC8JSObject12defaultValueEPKS0_PNS_14JSGlobalObjectENS_22PreferredPrimitiveTypeE +_ZN3JSC8JSObject12defaultValueEPKS0_PNS_9ExecStateENS_22PreferredPrimitiveTypeE +_ZN3JSC8JSObject12getPrototypeEPS0_PNS_14JSGlobalObjectE +_ZN3JSC8JSObject12getPrototypeEPS0_PNS_9ExecStateE +_ZN3JSC8JSObject12heapSnapshotEPNS_6JSCellERNS_19HeapSnapshotBuilderE +_ZN3JSC8JSObject12isExtensibleEPS0_PNS_14JSGlobalObjectE +_ZN3JSC8JSObject12isExtensibleEPS0_PNS_9ExecStateE +_ZN3JSC8JSObject12setPrototypeEPS0_PNS_14JSGlobalObjectENS_7JSValueEb +_ZN3JSC8JSObject12setPrototypeEPS0_PNS_9ExecStateENS_7JSValueEb +_ZN3JSC8JSObject12toStringNameEPKS0_PNS_14JSGlobalObjectE +_ZN3JSC8JSObject12toStringNameEPKS0_PNS_9ExecStateE +_ZN3JSC8JSObject13estimatedSizeEPNS_6JSCellERNS_2VME +_ZN3JSC8JSObject13putInlineSlowEPNS_14JSGlobalObjectENS_12PropertyNameENS_7JSValueERNS_15PutPropertySlotE +_ZN3JSC8JSObject13putInlineSlowEPNS_9ExecStateENS_12PropertyNameENS_7JSValueERNS_15PutPropertySlotE +_ZN3JSC8JSObject13visitChildrenEPNS_6JSCellERNS_11SlotVisitorE +_ZN3JSC8JSObject14deletePropertyEPNS_6JSCellEPNS_14JSGlobalObjectENS_12PropertyNameERNS_18DeletePropertySlotE +_ZN3JSC8JSObject14deletePropertyEPNS_6JSCellEPNS_9ExecStateENS_12PropertyNameE +_ZN3JSC8JSObject16getPropertyNamesEPS0_PNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE +_ZN3JSC8JSObject16getPropertyNamesEPS0_PNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE +_ZN3JSC8JSObject17defineOwnPropertyEPS0_PNS_14JSGlobalObjectENS_12PropertyNameERKNS_18PropertyDescriptorEb +_ZN3JSC8JSObject17defineOwnPropertyEPS0_PNS_9ExecStateENS_12PropertyNameERKNS_18PropertyDescriptorEb +_ZN3JSC8JSObject17preventExtensionsEPS0_PNS_14JSGlobalObjectE +_ZN3JSC8JSObject17preventExtensionsEPS0_PNS_9ExecStateE +_ZN3JSC8JSObject18setPrototypeDirectERNS_2VMENS_7JSValueE +_ZN3JSC8JSObject19calculatedClassNameEPS0_ +_ZN3JSC8JSObject19convertToDictionaryERNS_2VME +_ZN3JSC8JSObject19getEnumerableLengthEPNS_14JSGlobalObjectEPS0_ +_ZN3JSC8JSObject19getEnumerableLengthEPNS_9ExecStateEPS0_ +_ZN3JSC8JSObject19getOwnPropertyNamesEPS0_PNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE +_ZN3JSC8JSObject19getOwnPropertyNamesEPS0_PNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE +_ZN3JSC8JSObject19putDirectMayBeIndexEPNS_14JSGlobalObjectENS_12PropertyNameENS_7JSValueE +_ZN3JSC8JSObject19putDirectMayBeIndexEPNS_9ExecStateENS_12PropertyNameENS_7JSValueE +_ZN3JSC8JSObject21deletePropertyByIndexEPNS_6JSCellEPNS_14JSGlobalObjectEj +_ZN3JSC8JSObject21deletePropertyByIndexEPNS_6JSCellEPNS_9ExecStateEj +_ZN3JSC8JSObject22ensureArrayStorageSlowERNS_2VME +_ZN3JSC8JSObject22fillGetterPropertySlotERNS_2VMERNS_12PropertySlotEPNS_6JSCellEji +_ZN3JSC8JSObject23getGenericPropertyNamesEPS0_PNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE +_ZN3JSC8JSObject23getGenericPropertyNamesEPS0_PNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE +_ZN3JSC8JSObject23putDirectCustomAccessorERNS_2VMENS_12PropertyNameENS_7JSValueEj +_ZN3JSC8JSObject23putDirectNativeFunctionERNS_2VMEPNS_14JSGlobalObjectERKNS_12PropertyNameEjNS_14NativeFunctionENS_9IntrinsicEPKNS_6DOMJIT9SignatureEj +_ZN3JSC8JSObject23putDirectNativeFunctionERNS_2VMEPNS_14JSGlobalObjectERKNS_12PropertyNameEjNS_14NativeFunctionENS_9IntrinsicEj +_ZN3JSC8JSObject24getOwnPropertyDescriptorEPNS_14JSGlobalObjectENS_12PropertyNameERNS_18PropertyDescriptorE +_ZN3JSC8JSObject24getOwnPropertyDescriptorEPNS_9ExecStateENS_12PropertyNameERNS_18PropertyDescriptorE +_ZN3JSC8JSObject24getOwnStaticPropertySlotERNS_2VMENS_12PropertyNameERNS_12PropertySlotE +_ZN3JSC8JSObject24putDirectBuiltinFunctionERNS_2VMEPNS_14JSGlobalObjectERKNS_12PropertyNameEPNS_18FunctionExecutableEj +_ZN3JSC8JSObject25getOwnPropertySlotByIndexEPS0_PNS_14JSGlobalObjectEjRNS_12PropertySlotE +_ZN3JSC8JSObject25getOwnPropertySlotByIndexEPS0_PNS_9ExecStateEjRNS_12PropertySlotE +_ZN3JSC8JSObject25getStructurePropertyNamesEPS0_PNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE +_ZN3JSC8JSObject25getStructurePropertyNamesEPS0_PNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE +_ZN3JSC8JSObject26setIndexQuicklyToUndecidedERNS_2VMEjNS_7JSValueE +_ZN3JSC8JSObject26setPrototypeWithCycleCheckERNS_2VMEPNS_14JSGlobalObjectENS_7JSValueEb +_ZN3JSC8JSObject26setPrototypeWithCycleCheckERNS_2VMEPNS_9ExecStateENS_7JSValueEb +_ZN3JSC8JSObject27getOwnNonIndexPropertyNamesEPS0_PNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE +_ZN3JSC8JSObject27getOwnNonIndexPropertyNamesEPS0_PNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE +_ZN3JSC8JSObject28allocateMoreOutOfLineStorageERNS_2VMEmm +_ZN3JSC8JSObject30convertToUncacheableDictionaryERNS_2VME +_ZN3JSC8JSObject30putDirectNativeIntrinsicGetterERNS_2VMEPNS_14JSGlobalObjectENS_10IdentifierENS_14NativeFunctionENS_9IntrinsicEj +_ZN3JSC8JSObject33prototypeChainMayInterceptStoreToERNS_2VMENS_12PropertyNameE +_ZN3JSC8JSObject38putDirectIndexSlowOrBeyondVectorLengthEPNS_14JSGlobalObjectEjNS_7JSValueEjNS_18PutDirectIndexModeE +_ZN3JSC8JSObject38putDirectIndexSlowOrBeyondVectorLengthEPNS_9ExecStateEjNS_7JSValueEjNS_18PutDirectIndexModeE +_ZN3JSC8JSObject3putEPNS_6JSCellEPNS_14JSGlobalObjectENS_12PropertyNameENS_7JSValueERNS_15PutPropertySlotE +_ZN3JSC8JSObject3putEPNS_6JSCellEPNS_9ExecStateENS_12PropertyNameENS_7JSValueERNS_15PutPropertySlotE +_ZN3JSC8JSObject40putDirectNativeFunctionWithoutTransitionERNS_2VMEPNS_14JSGlobalObjectERKNS_12PropertyNameEjNS_14NativeFunctionENS_9IntrinsicEj +_ZN3JSC8JSObject47putDirectNativeIntrinsicGetterWithoutTransitionERNS_2VMEPNS_14JSGlobalObjectENS_10IdentifierENS_14NativeFunctionENS_9IntrinsicEj +_ZN3JSC8JSObject48convertDoubleToContiguousWhilePerformingSetIndexERNS_2VMEjNS_7JSValueE +_ZN3JSC8JSObject4sealERNS_2VME +_ZN3JSC8JSObject55convertInt32ToDoubleOrContiguousWhilePerformingSetIndexERNS_2VMEjNS_7JSValueE +_ZN3JSC8JSObject6freezeERNS_2VME +_ZN3JSC8JSObject6s_infoE +_ZN3JSC8JSObject6toThisEPNS_6JSCellEPNS_14JSGlobalObjectENS_8ECMAModeE +_ZN3JSC8JSObject6toThisEPNS_6JSCellEPNS_9ExecStateENS_8ECMAModeE +_ZN3JSC8JSObject9classNameEPKS0_ +_ZN3JSC8JSObject9classNameEPKS0_RNS_2VME +_ZN3JSC8JSObject9getMethodEPNS_14JSGlobalObjectERNS_8CallDataERKNS_10IdentifierERKN3WTF6StringE +_ZN3JSC8JSObject9getMethodEPNS_9ExecStateERNS_8CallDataERNS_8CallTypeERKNS_10IdentifierERKN3WTF6StringE +_ZN3JSC8JSString6s_infoE +_ZN3JSC8Profiler8Database8logEventEPNS_9CodeBlockEPKcRKN3WTF7CStringE +_ZN3JSC8Profiler8DatabaseC1ERNS_2VME +_ZN3JSC8Profiler8DatabaseC2ERNS_2VME +_ZN3JSC8Profiler8DatabaseD1Ev +_ZN3JSC8Profiler8DatabaseD2Ev +_ZN3JSC8Subspace33parallelNotEmptyMarkedBlockSourceEv +_ZN3JSC8SubspaceC2EN3WTF7CStringERNS_4HeapE +_ZN3JSC8SubspaceD0Ev +_ZN3JSC8SubspaceD1Ev +_ZN3JSC8SubspaceD2Ev +_ZN3JSC8evaluateEPNS_14JSGlobalObjectERKNS_10SourceCodeENS_7JSValueERN3WTF8NakedPtrINS_9ExceptionEEE +_ZN3JSC8evaluateEPNS_9ExecStateERKNS_10SourceCodeENS_7JSValueERN3WTF8NakedPtrINS_9ExceptionEEE +_ZN3JSC8toBigIntEPNS_14JSGlobalObjectENS_7JSValueE +_ZN3JSC9CallFrame13describeFrameEv +_ZN3JSC9CallFrame15isAnyWasmCalleeEv +_ZN3JSC9CallFrame18callerSourceOriginERNS_2VME +_ZN3JSC9CodeBlock19baselineAlternativeEv +_ZN3JSC9CodeBlockD1Ev +_ZN3JSC9CodeBlockD2Ev +_ZN3JSC9CodeCache5writeERNS_2VME +_ZN3JSC9Exception6createERNS_2VMENS_7JSValueENS0_18StackCaptureActionE +_ZN3JSC9Exception6s_infoE +_ZN3JSC9ExecState10codeOriginEv +_ZN3JSC9ExecState13describeFrameEv +_ZN3JSC9ExecState18callerSourceOriginEv +_ZN3JSC9HandleSet12writeBarrierEPNS_7JSValueERKS1_ +_ZN3JSC9HandleSet4growEv +_ZN3JSC9Integrity14auditCellFullyERNS_2VMEPNS_6JSCellE +_ZN3JSC9Integrity22auditCellMinimallySlowERNS_2VMEPNS_6JSCellE +_ZN3JSC9Integrity6Random29reloadAndCheckShouldAuditSlowERNS_2VME +_ZN3JSC9JSONParseEPNS_14JSGlobalObjectERKN3WTF6StringE +_ZN3JSC9JSONParseEPNS_9ExecStateERKN3WTF6StringE +_ZN3JSC9JSPromise15rejectAsHandledEPNS_14JSGlobalObjectENS_7JSValueE +_ZN3JSC9JSPromise15rejectAsHandledEPNS_14JSGlobalObjectEPNS_9ExceptionE +_ZN3JSC9JSPromise15resolvedPromiseEPNS_14JSGlobalObjectENS_7JSValueE +_ZN3JSC9JSPromise6createERNS_2VMEPNS_9StructureE +_ZN3JSC9JSPromise6rejectEPNS_14JSGlobalObjectENS_7JSValueE +_ZN3JSC9JSPromise6rejectEPNS_14JSGlobalObjectEPNS_9ExceptionE +_ZN3JSC9JSPromise6s_infoE +_ZN3JSC9JSPromise7resolveEPNS_14JSGlobalObjectENS_7JSValueE +_ZN3JSC9JSPromise7resolveERNS_14JSGlobalObjectENS_7JSValueE +_ZN3JSC9JSWeakMap6s_infoE +_ZN3JSC9JSWeakSet6s_infoE +_ZN3JSC9Structure14sealTransitionERNS_2VMEPS0_ +_ZN3JSC9Structure16allocateRareDataERNS_2VME +_ZN3JSC9Structure16freezeTransitionERNS_2VMEPS0_ +_ZN3JSC9Structure16isValidPrototypeENS_7JSValueE +_ZN3JSC9Structure18willStoreValueSlowERNS_2VMENS_12PropertyNameENS_7JSValueEbNS_17InferredTypeTable17StoredPropertyAgeE +_ZN3JSC9Structure21addPropertyTransitionERNS_2VMEPS0_NS_12PropertyNameEjRi +_ZN3JSC9Structure24addNewPropertyTransitionERNS_2VMEPS0_NS_12PropertyNameEjRiNS_15PutPropertySlot7ContextEPNS_41DeferredStructureTransitionWatchpointFireE +_ZN3JSC9Structure24materializePropertyTableERNS_2VMEb +_ZN3JSC9Structure25attributeChangeTransitionERNS_2VMEPS0_NS_12PropertyNameEj +_ZN3JSC9Structure25attributeChangeTransitionERNS_2VMEPS0_NS_12PropertyNameEjPNS_41DeferredStructureTransitionWatchpointFireE +_ZN3JSC9Structure25nonPropertyTransitionSlowERNS_2VMEPS0_NS_14TransitionKindE +_ZN3JSC9Structure25nonPropertyTransitionSlowERNS_2VMEPS0_NS_21NonPropertyTransitionE +_ZN3JSC9Structure26flattenDictionaryStructureERNS_2VMEPNS_8JSObjectE +_ZN3JSC9Structure31toCacheableDictionaryTransitionERNS_2VMEPS0_PNS_41DeferredStructureTransitionWatchpointFireE +_ZN3JSC9Structure3pinERKN3WTF14AbstractLockerERNS_2VMEPNS_13PropertyTableE +_ZN3JSC9Structure40addPropertyTransitionToExistingStructureEPS0_NS_12PropertyNameEjRi +_ZN3JSC9Structure6s_infoE +_ZN3JSC9Structure8isFrozenERNS_2VME +_ZN3JSC9Structure8isSealedERNS_2VME +_ZN3JSC9StructureC1ERNS_2VMEPNS_14JSGlobalObjectENS_7JSValueERKNS_8TypeInfoEPKNS_9ClassInfoEhj +_ZN3JSC9StructureC2ERNS_2VMEPNS_14JSGlobalObjectENS_7JSValueERKNS_8TypeInfoEPKNS_9ClassInfoEhj +_ZN3JSC9constructEPNS_14JSGlobalObjectENS_7JSValueERKNS_7ArgListEPKc +_ZN3JSC9constructEPNS_14JSGlobalObjectENS_7JSValueERKNS_8CallDataERKNS_7ArgListES2_ +_ZN3JSC9constructEPNS_14JSGlobalObjectENS_7JSValueES2_RKNS_7ArgListEPKc +_ZN3JSC9constructEPNS_9ExecStateENS_7JSValueENS_13ConstructTypeERKNS_13ConstructDataERKNS_7ArgListES2_ +_ZN3JSC9parseDateEPNS_14JSGlobalObjectERNS_2VMERKN3WTF6StringE +_ZN3JSC9parseDateEPNS_9ExecStateERNS_2VMERKN3WTF6StringE +_ZN3NTF10initializeERKNS_18CreationParametersE +_ZN3NTF10initializeEv +_ZN3NTF13URLRequestJob6createEPNS_17URLRequestMessageEPNS_18URLRequestListenerE +_ZN3NTF14NetworkControl12getIPAddressEv +_ZN3NTF15DNSPrefetchImpl10initializeEv +_ZN3NTF15DNSPrefetchImpl8finalizeEv +_ZN3NTF15DNSPrefetchImplC1Ev +_ZN3NTF15DNSPrefetchImplC2Ev +_ZN3NTF15DNSPrefetchImplD0Ev +_ZN3NTF15DNSPrefetchImplD1Ev +_ZN3NTF15DNSPrefetchImplD2Ev +_ZN3NTF15ThreadCondition4waitERNS_5MutexE +_ZN3NTF15ThreadCondition6signalEv +_ZN3NTF15ThreadCondition9broadcastEv +_ZN3NTF15ThreadConditionC1Ev +_ZN3NTF15ThreadConditionC2Ev +_ZN3NTF15ThreadConditionD1Ev +_ZN3NTF15ThreadConditionD2Ev +_ZN3NTF17URLRequestDataJob10initializeEb +_ZN3NTF17URLRequestDataJob5startEb +_ZN3NTF17URLRequestDataJob6cancelEv +_ZN3NTF17URLRequestDataJobC1Ev +_ZN3NTF17URLRequestDataJobC2Ev +_ZN3NTF17URLRequestDataJobD0Ev +_ZN3NTF17URLRequestDataJobD1Ev +_ZN3NTF17URLRequestDataJobD2Ev +_ZN3NTF17URLRequestFileJob10initializeEb +_ZN3NTF17URLRequestFileJob3urlEv +_ZN3NTF17URLRequestFileJobC1Ev +_ZN3NTF17URLRequestFileJobC2Ev +_ZN3NTF17URLRequestFileJobD0Ev +_ZN3NTF17URLRequestFileJobD1Ev +_ZN3NTF17URLRequestFileJobD2Ev +_ZN3NTF17URLRequestHttpJob10initializeEb +_ZN3NTF17URLRequestHttpJob3urlEv +_ZN3NTF17URLRequestHttpJobC1Ev +_ZN3NTF17URLRequestHttpJobC2Ev +_ZN3NTF17URLRequestHttpJobD0Ev +_ZN3NTF17URLRequestHttpJobD1Ev +_ZN3NTF17URLRequestHttpJobD2Ev +_ZN3NTF17URLRequestJobImpl10initializeEv +_ZN3NTF17URLRequestJobImpl5startEb +_ZN3NTF17URLRequestJobImpl6cancelEv +_ZN3NTF17URLRequestJobImplC1Ev +_ZN3NTF17URLRequestJobImplC2Ev +_ZN3NTF17URLRequestJobImplD0Ev +_ZN3NTF17URLRequestJobImplD1Ev +_ZN3NTF17URLRequestJobImplD2Ev +_ZN3NTF17URLRequestMessage14setSchedulerIdEi +_ZN3NTF17URLRequestMessage17setIsMainResourceEb +_ZN3NTF17URLRequestMessage8destructEPS0_ +_ZN3NTF17URLRequestMessageD0Ev +_ZN3NTF17URLRequestMessageD1Ev +_ZN3NTF17URLRequestMessageD2Ev +_ZN3NTF18CreationParametersC1Ev +_ZN3NTF18CreationParametersC2Ev +_ZN3NTF18NetworkControlImpl10initializeEv +_ZN3NTF18NetworkControlImpl8finalizeEv +_ZN3NTF18URLResponseMessage14getMessageTypeEv +_ZN3NTF18URLResponseMessageD0Ev +_ZN3NTF18URLResponseMessageD1Ev +_ZN3NTF18URLResponseMessageD2Ev +_ZN3NTF21ResourceRequestLogger11isLoggerUrlEPKc +_ZN3NTF21ResourceRequestLogger5flushEPv +_ZN3NTF21ResourceRequestLogger5flushEv +_ZN3NTF21ResourceRequestLogger5startEPv +_ZN3NTF21ResourceRequestLogger9AdminPage4htmlEv +_ZN3NTF21ResourceRequestLogger9AdminPage4sizeEv +_ZN3NTF21ResourceRequestLogger9AdminPageC1EPKc +_ZN3NTF21ResourceRequestLogger9AdminPageC2EPKc +_ZN3NTF21ResourceRequestLogger9AdminPageD0Ev +_ZN3NTF21ResourceRequestLogger9AdminPageD1Ev +_ZN3NTF21ResourceRequestLogger9AdminPageD2Ev +_ZN3NTF21ResourceRequestLoggerC1Ev +_ZN3NTF21ResourceRequestLoggerC2Ev +_ZN3NTF21ResourceRequestLoggerD0Ev +_ZN3NTF21ResourceRequestLoggerD1Ev +_ZN3NTF21ResourceRequestLoggerD2Ev +_ZN3NTF21URLRequestDataMessage6createEv +_ZN3NTF21URLRequestFileMessage6createEv +_ZN3NTF21URLRequestFormElement4typeEv +_ZN3NTF21URLRequestFormElementD0Ev +_ZN3NTF21URLRequestFormElementD1Ev +_ZN3NTF21URLRequestFormElementD2Ev +_ZN3NTF21URLRequestHttpMessage6createEv +_ZN3NTF22URLRequestJobScheduler10initializeEv +_ZN3NTF22URLRequestJobScheduler8finalizeEv +_ZN3NTF22URLRequestJobSchedulerC1Ev +_ZN3NTF22URLRequestJobSchedulerC2Ev +_ZN3NTF22URLRequestJobSchedulerD0Ev +_ZN3NTF22URLRequestJobSchedulerD1Ev +_ZN3NTF22URLRequestJobSchedulerD2Ev +_ZN3NTF26URLRequestUndefinedMessage6createEv +_ZN3NTF3Ssl10initializeEv +_ZN3NTF3Ssl8finalizeEv +_ZN3NTF3URL24removeFragmentIdentifierEv +_ZN3NTF3URL5parseEv +_ZN3NTF3URL7setHostEPKc +_ZN3NTF3URL7setHostERKSs +_ZN3NTF3URL7setPathERKSs +_ZN3NTF3URL7setPortERKSs +_ZN3NTF3URL7setPortEt +_ZN3NTF3URLC1EPKc +_ZN3NTF3URLC1Ev +_ZN3NTF3URLC2EPKc +_ZN3NTF3URLC2Ev +_ZN3NTF3URLD1Ev +_ZN3NTF3URLD2Ev +_ZN3NTF5Cache16DiskCacheManager10initializeEPKc +_ZN3NTF5Cache16DiskCacheManagerC1Ev +_ZN3NTF5Cache16DiskCacheManagerC2Ev +_ZN3NTF5Cache16DiskCacheManagerD1Ev +_ZN3NTF5Cache16DiskCacheManagerD2Ev +_ZN3NTF5Cache16DiskCacheUtility9deleteAllEv +_ZN3NTF5Mutex4lockEv +_ZN3NTF5Mutex6unlockEv +_ZN3NTF5Mutex7tryLockEv +_ZN3NTF5MutexC1Ev +_ZN3NTF5MutexC2Ev +_ZN3NTF5MutexD1Ev +_ZN3NTF5MutexD2Ev +_ZN3NTF6Cookie11CookieJarDB10initializeEiPKc +_ZN3NTF6Cookie11CookieJarDB11getInstanceEv +_ZN3NTF6Cookie11CookieJarDB9setEnableEb +_ZN3NTF6ThreadC1Ev +_ZN3NTF6ThreadC2Ev +_ZN3NTF6ThreadD0Ev +_ZN3NTF6ThreadD1Ev +_ZN3NTF6ThreadD2Ev +_ZN3NTF7Privacy13setDoNotTrackEb +_ZN3NTF8Registry10initializeEbb +_ZN3NTF8Registry8finalizeEv +_ZN3NTF8finalizeEv +_ZN3PAL10systemBeepEv +_ZN3PAL12CryptoDigest11computeHashEv +_ZN3PAL12CryptoDigest6createENS0_9AlgorithmE +_ZN3PAL12CryptoDigest8addBytesEPKvm +_ZN3PAL12CryptoDigestD1Ev +_ZN3PAL12CryptoDigestD2Ev +_ZN3PAL13SleepDisablerC1EPKcNS0_4TypeE +_ZN3PAL13SleepDisablerC2EPKcNS0_4TypeE +_ZN3PAL13SleepDisablerD0Ev +_ZN3PAL13SleepDisablerD1Ev +_ZN3PAL13SleepDisablerD2Ev +_ZN3PAL19fileSizeDescriptionEm +_ZN3PAL22registerNotifyCallbackERKN3WTF6StringEONS0_8FunctionIFvvEEE +_ZN3PAL5Clock6createEv +_ZN3PAL8KillRing16setToYankedStateEv +_ZN3PAL8KillRing16startNewSequenceEv +_ZN3PAL8KillRing4yankEv +_ZN3PAL8KillRing6appendERKN3WTF6StringE +_ZN3PAL8KillRing7prependERKN3WTF6StringE +_ZN3PAL9SessionID26enableGenerationProtectionEv +_ZN3PAL9SessionID26generateEphemeralSessionIDEv +_ZN3PAL9SessionID27generatePersistentSessionIDEv +_ZN3WTF10AtomString16fromUTF8InternalEPKcS2_ +_ZN3WTF10AtomString4initEv +_ZN3WTF10AtomString6numberEd +_ZN3WTF10AtomString6numberEf +_ZN3WTF10AtomString6numberEi +_ZN3WTF10AtomString6numberEj +_ZN3WTF10AtomString6numberEm +_ZN3WTF10AtomString6numberEy +_ZN3WTF10ParkingLot11forEachImplERKNS_12ScopedLambdaIFvRNS_6ThreadEPKvEEE +_ZN3WTF10ParkingLot11unparkCountEPKvj +_ZN3WTF10ParkingLot13unparkOneImplEPKvRKNS_12ScopedLambdaIFlNS0_12UnparkResultEEEE +_ZN3WTF10ParkingLot21parkConditionallyImplEPKvRKNS_12ScopedLambdaIFbvEEERKNS3_IFvvEEERKNS_24TimeWithDynamicClockTypeE +_ZN3WTF10ParkingLot9unparkAllEPKv +_ZN3WTF10ParkingLot9unparkOneEPKv +_ZN3WTF10StackTrace17captureStackTraceEii +_ZN3WTF10StackTrace8demangleEPv +_ZN3WTF10StringImpl11reverseFindEDsj +_ZN3WTF10StringImpl11reverseFindEPS0_j +_ZN3WTF10StringImpl17createFromLiteralEPKc +_ZN3WTF10StringImpl17createFromLiteralEPKcj +_ZN3WTF10StringImpl17s_emptyAtomStringE +_ZN3WTF10StringImpl17utf8ForCharactersEPKDsjNS_14ConversionModeE +_ZN3WTF10StringImpl17utf8ForCharactersEPKhj +_ZN3WTF10StringImpl18simplifyWhiteSpaceEv +_ZN3WTF10StringImpl19characterStartingAtEj +_ZN3WTF10StringImpl19createUninitializedEjRPDs +_ZN3WTF10StringImpl19createUninitializedEjRPh +_ZN3WTF10StringImpl19s_atomicEmptyStringE +_ZN3WTF10StringImpl20create8BitIfPossibleEPKDs +_ZN3WTF10StringImpl20create8BitIfPossibleEPKDsj +_ZN3WTF10StringImpl20createWithoutCopyingEPKDsj +_ZN3WTF10StringImpl20createWithoutCopyingEPKhj +_ZN3WTF10StringImpl22createStaticStringImplEPKcj +_ZN3WTF10StringImpl23convertToASCIILowercaseEv +_ZN3WTF10StringImpl23convertToASCIIUppercaseEv +_ZN3WTF10StringImpl23defaultWritingDirectionEPb +_ZN3WTF10StringImpl28convertToLowercaseWithLocaleERKNS_10AtomStringE +_ZN3WTF10StringImpl28convertToLowercaseWithLocaleERKNS_12AtomicStringE +_ZN3WTF10StringImpl28convertToUppercaseWithLocaleERKNS_10AtomStringE +_ZN3WTF10StringImpl28convertToUppercaseWithLocaleERKNS_12AtomicStringE +_ZN3WTF10StringImpl31convertToLowercaseWithoutLocaleEv +_ZN3WTF10StringImpl31convertToUppercaseWithoutLocaleEv +_ZN3WTF10StringImpl4findEPFbDsEj +_ZN3WTF10StringImpl4findEPS0_ +_ZN3WTF10StringImpl4findEPS0_j +_ZN3WTF10StringImpl57convertToLowercaseWithoutLocaleStartingAtFailingIndex8BitEj +_ZN3WTF10StringImpl5adoptEONS_12StringBufferIDsEE +_ZN3WTF10StringImpl5adoptEONS_12StringBufferIhEE +_ZN3WTF10StringImpl5toIntEPb +_ZN3WTF10StringImpl6createEPKDsj +_ZN3WTF10StringImpl6createEPKh +_ZN3WTF10StringImpl6createEPKhj +_ZN3WTF10StringImpl7destroyEPS0_ +_ZN3WTF10StringImpl7replaceEDsDs +_ZN3WTF10StringImpl7replaceEDsPKhj +_ZN3WTF10StringImpl7replaceEDsPS0_ +_ZN3WTF10StringImpl7replaceEPS0_S1_ +_ZN3WTF10StringImpl7replaceEjjPS0_ +_ZN3WTF10StringImpl8endsWithEPS0_ +_ZN3WTF10StringImpl8endsWithERS0_ +_ZN3WTF10StringImpl8utf8ImplEPKDsjRPcmNS_14ConversionModeE +_ZN3WTF10StringImpl9substringEjj +_ZN3WTF10StringView11SplitResult8Iterator17findNextSubstringEv +_ZN3WTF10StringView11SplitResult8IteratorppEv +_ZN3WTF10StringView16GraphemeClusters8IteratorC1EOS2_ +_ZN3WTF10StringView16GraphemeClusters8IteratorC1ERKS0_j +_ZN3WTF10StringView16GraphemeClusters8IteratorC2EOS2_ +_ZN3WTF10StringView16GraphemeClusters8IteratorC2ERKS0_j +_ZN3WTF10StringView16GraphemeClusters8IteratorD1Ev +_ZN3WTF10StringView16GraphemeClusters8IteratorD2Ev +_ZN3WTF10StringView16GraphemeClusters8IteratorppEv +_ZN3WTF10SymbolImpl16createNullSymbolEv +_ZN3WTF10SymbolImpl17nextHashForSymbolEv +_ZN3WTF10SymbolImpl6createERNS_10StringImplE +_ZN3WTF10TextStream10startGroupEv +_ZN3WTF10TextStream11writeIndentEv +_ZN3WTF10TextStream7releaseEv +_ZN3WTF10TextStream8endGroupEv +_ZN3WTF10TextStream8nextLineEv +_ZN3WTF10TextStreamlsEPKc +_ZN3WTF10TextStreamlsEPKv +_ZN3WTF10TextStreamlsERKNS0_30FormatNumberRespectingIntegersE +_ZN3WTF10TextStreamlsERKNS_6StringE +_ZN3WTF10TextStreamlsEb +_ZN3WTF10TextStreamlsEc +_ZN3WTF10TextStreamlsEd +_ZN3WTF10TextStreamlsEf +_ZN3WTF10TextStreamlsEi +_ZN3WTF10TextStreamlsEj +_ZN3WTF10TextStreamlsEl +_ZN3WTF10TextStreamlsEm +_ZN3WTF10TextStreamlsEx +_ZN3WTF10TextStreamlsEy +_ZN3WTF10URLHelpers14userVisibleURLERKNS_7CStringE +_ZN3WTF10WorkerPool8postTaskEONS_8FunctionIFvvEEE +_ZN3WTF10WorkerPoolC1ENS_12ASCIILiteralEjNS_7SecondsE +_ZN3WTF10WorkerPoolC2ENS_12ASCIILiteralEjNS_7SecondsE +_ZN3WTF10WorkerPoolD1Ev +_ZN3WTF10WorkerPoolD2Ev +_ZN3WTF10fastCallocEmm +_ZN3WTF10fastMallocEm +_ZN3WTF10fastStrDupEPKc +_ZN3WTF10hasElapsedERKNS_24TimeWithDynamicClockTypeE +_ZN3WTF10initializeEv +_ZN3WTF10isLeapYearEi +_ZN3WTF10makePoisonEv +_ZN3WTF10nullStringEv +_ZN3WTF10protocolIsENS_10StringViewEPKc +_ZN3WTF11CStringHash5equalERKNS_7CStringES3_ +_ZN3WTF11LogArgumentIPKvE8toStringES2_ +_ZN3WTF11OSAllocator16reserveAndCommitEmNS0_5UsageEbbb +_ZN3WTF11OSAllocator16reserveAndCommitEmmNS0_5UsageEbb +_ZN3WTF11OSAllocator18releaseDecommittedEPvm +_ZN3WTF11OSAllocator18reserveUncommittedEmNS0_5UsageEbbb +_ZN3WTF11OSAllocator23hintMemoryNotNeededSoonEPvm +_ZN3WTF11OSAllocator6commitEPvmbb +_ZN3WTF11OSAllocator8decommitEPvm +_ZN3WTF11Persistence5CoderINS_10AtomStringEE6decodeERNS0_7DecoderE +_ZN3WTF11Persistence5CoderINS_10AtomStringEE6encodeERNS0_7EncoderERKS2_ +_ZN3WTF11Persistence5CoderINS_12AtomicStringEE6decodeERNS0_7DecoderERS2_ +_ZN3WTF11Persistence5CoderINS_12AtomicStringEE6encodeERNS0_7EncoderERKS2_ +_ZN3WTF11Persistence5CoderINS_6StringEE6decodeERNS0_7DecoderE +_ZN3WTF11Persistence5CoderINS_6StringEE6decodeERNS0_7DecoderERS2_ +_ZN3WTF11Persistence5CoderINS_6StringEE6encodeERNS0_7EncoderERKS2_ +_ZN3WTF11Persistence5CoderINS_7CStringEE6decodeERNS0_7DecoderE +_ZN3WTF11Persistence5CoderINS_7CStringEE6decodeERNS0_7DecoderERS2_ +_ZN3WTF11Persistence5CoderINS_7CStringEE6encodeERNS0_7EncoderERKS2_ +_ZN3WTF11Persistence5CoderISt5arrayIhLm20EEE6decodeERNS0_7DecoderE +_ZN3WTF11Persistence5CoderISt5arrayIhLm20EEE6decodeERNS0_7DecoderERS3_ +_ZN3WTF11Persistence5CoderISt5arrayIhLm20EEE6encodeERNS0_7EncoderERKS3_ +_ZN3WTF11Persistence7Decoder14verifyChecksumEv +_ZN3WTF11Persistence7Decoder21decodeFixedLengthDataEPhm +_ZN3WTF11Persistence7Decoder6decodeERb +_ZN3WTF11Persistence7Decoder6decodeERd +_ZN3WTF11Persistence7Decoder6decodeERf +_ZN3WTF11Persistence7Decoder6decodeERh +_ZN3WTF11Persistence7Decoder6decodeERi +_ZN3WTF11Persistence7Decoder6decodeERj +_ZN3WTF11Persistence7Decoder6decodeERl +_ZN3WTF11Persistence7Decoder6decodeERm +_ZN3WTF11Persistence7Decoder6decodeERt +_ZN3WTF11Persistence7DecoderC1EPKhm +_ZN3WTF11Persistence7DecoderC2EPKhm +_ZN3WTF11Persistence7DecoderD1Ev +_ZN3WTF11Persistence7DecoderD2Ev +_ZN3WTF11Persistence7DecoderrsERNS_8OptionalIbEE +_ZN3WTF11Persistence7DecoderrsERNS_8OptionalIdEE +_ZN3WTF11Persistence7DecoderrsERNS_8OptionalIfEE +_ZN3WTF11Persistence7DecoderrsERNS_8OptionalIhEE +_ZN3WTF11Persistence7DecoderrsERNS_8OptionalIiEE +_ZN3WTF11Persistence7DecoderrsERNS_8OptionalIjEE +_ZN3WTF11Persistence7DecoderrsERNS_8OptionalIlEE +_ZN3WTF11Persistence7DecoderrsERNS_8OptionalImEE +_ZN3WTF11Persistence7DecoderrsERNS_8OptionalIsEE +_ZN3WTF11Persistence7DecoderrsERNS_8OptionalItEE +_ZN3WTF11Persistence7Encoder14encodeChecksumEv +_ZN3WTF11Persistence7Encoder21encodeFixedLengthDataEPKhm +_ZN3WTF11Persistence7Encoder21updateChecksumForDataERNS_4SHA1EPKhm +_ZN3WTF11Persistence7Encoder6encodeEb +_ZN3WTF11Persistence7Encoder6encodeEd +_ZN3WTF11Persistence7Encoder6encodeEf +_ZN3WTF11Persistence7Encoder6encodeEh +_ZN3WTF11Persistence7Encoder6encodeEi +_ZN3WTF11Persistence7Encoder6encodeEj +_ZN3WTF11Persistence7Encoder6encodeEl +_ZN3WTF11Persistence7Encoder6encodeEm +_ZN3WTF11Persistence7Encoder6encodeEt +_ZN3WTF11Persistence7EncoderC1Ev +_ZN3WTF11Persistence7EncoderC2Ev +_ZN3WTF11Persistence7EncoderD1Ev +_ZN3WTF11Persistence7EncoderD2Ev +_ZN3WTF11Persistence7EncoderlsEb +_ZN3WTF11Persistence7EncoderlsEd +_ZN3WTF11Persistence7EncoderlsEf +_ZN3WTF11Persistence7EncoderlsEh +_ZN3WTF11Persistence7EncoderlsEi +_ZN3WTF11Persistence7EncoderlsEj +_ZN3WTF11Persistence7EncoderlsEl +_ZN3WTF11Persistence7EncoderlsEm +_ZN3WTF11Persistence7EncoderlsEs +_ZN3WTF11Persistence7EncoderlsEt +_ZN3WTF11PrintStream20printfVariableFormatEPKcz +_ZN3WTF11PrintStream3endEv +_ZN3WTF11PrintStream5beginEv +_ZN3WTF11PrintStream6printfEPKcz +_ZN3WTF11StackBounds32currentThreadStackBoundsInternalEv +_ZN3WTF11ThreadGroup16addCurrentThreadEv +_ZN3WTF11ThreadGroup3addERKNS_14AbstractLockerERNS_6ThreadE +_ZN3WTF11ThreadGroup3addERNS_6ThreadE +_ZN3WTF11ThreadGroupD1Ev +_ZN3WTF11ThreadGroupD2Ev +_ZN3WTF11TimingScope11scopeDidEndEv +_ZN3WTF11dtoaRoundDPEPcdiRbRiRj +_ZN3WTF11dtoaRoundSFEPcdiRbRiRj +_ZN3WTF11emptyStringEv +_ZN3WTF11fastReallocEPvm +_ZN3WTF11jsValueFreeEPv +_ZN3WTF11msToMinutesEd +_ZN3WTF11parseUInt16ENS_10StringViewE +_ZN3WTF11portAllowedERKNS_3URLE +_ZN3WTF11setDataFileEOSt10unique_ptrINS_11PrintStreamESt14default_deleteIS1_EE +_ZN3WTF11setDataFileEPKc +_ZN3WTF11setNonBlockEi +_ZN3WTF11weekdayNameE +_ZN3WTF11writeIndentERNS_10TextStreamEi +_ZN3WTF11xmlAtomDataE +_ZN3WTF12AtomicString16fromUTF8InternalEPKcS2_ +_ZN3WTF12AtomicString4initEv +_ZN3WTF12AtomicString6numberEd +_ZN3WTF12AtomicString6numberEi +_ZN3WTF12AtomicString6numberEj +_ZN3WTF12AtomicString6numberEm +_ZN3WTF12AtomicString6numberEy +_ZN3WTF12CountingLock10unlockSlowEv +_ZN3WTF12CountingLock8lockSlowEv +_ZN3WTF12base64DecodeENS_10StringViewENS_33SignedOrUnsignedCharVectorAdapterEj +_ZN3WTF12base64DecodeEPKcjNS_33SignedOrUnsignedCharVectorAdapterEj +_ZN3WTF12base64DecodeERKNS_6StringENS_33SignedOrUnsignedCharVectorAdapterEj +_ZN3WTF12base64DecodeERKNS_6VectorIcLm0ENS_15CrashOnOverflowELm16EEENS_33SignedOrUnsignedCharVectorAdapterEj +_ZN3WTF12base64DecodeERKNS_6VectorIcLm0ENS_15CrashOnOverflowELm16ENS_10FastMallocEEENS_33SignedOrUnsignedCharVectorAdapterEj +_ZN3WTF12base64EncodeEPKvjNS_18Base64EncodePolicyE +_ZN3WTF12base64EncodeEPKvjRNS_6VectorIcLm0ENS_15CrashOnOverflowELm16EEENS_18Base64EncodePolicyE +_ZN3WTF12base64EncodeEPKvjRNS_6VectorIcLm0ENS_15CrashOnOverflowELm16ENS_10FastMallocEEENS_18Base64EncodePolicyE +_ZN3WTF12createThreadEPFvPvES0_PKc +_ZN3WTF12isMainThreadEv +_ZN3WTF12nullAtomDataE +_ZN3WTF12randomNumberEv +_ZN3WTF12refIfNotNullI14_cairo_surfaceEEvPT_ +_ZN3WTF12refIfNotNullI6_cairoEEvPT_ +_ZN3WTF12starAtomDataE +_ZN3WTF13FastBitVector10clearRangeEmm +_ZN3WTF13MetaAllocator17addFreshFreeSpaceEPvm +_ZN3WTF13MetaAllocator17currentStatisticsERKNS_6LockerINS_4LockEEE +_ZN3WTF13MetaAllocator17currentStatisticsEv +_ZN3WTF13MetaAllocator17freeFreeSpaceNodeEPNS0_13FreeSpaceNodeE +_ZN3WTF13MetaAllocator18debugFreeSpaceSizeEv +_ZN3WTF13MetaAllocator19isInAllocatedMemoryERKNS_14AbstractLockerEPv +_ZN3WTF13MetaAllocator7releaseERKNS_6LockerINS_4LockEEERNS_19MetaAllocatorHandleE +_ZN3WTF13MetaAllocator8allocateERKNS_6LockerINS_4LockEEEm +_ZN3WTF13MetaAllocator8allocateEmPv +_ZN3WTF13MetaAllocatorC2ERNS_4LockEmm +_ZN3WTF13MetaAllocatorC2Emm +_ZN3WTF13MetaAllocatorD0Ev +_ZN3WTF13MetaAllocatorD1Ev +_ZN3WTF13MetaAllocatorD2Ev +_ZN3WTF13MonotonicTime3nowEv +_ZN3WTF13ReadWriteLock10readUnlockEv +_ZN3WTF13ReadWriteLock11writeUnlockEv +_ZN3WTF13ReadWriteLock8readLockEv +_ZN3WTF13ReadWriteLock9writeLockEv +_ZN3WTF13StringBuilder11shrinkToFitEv +_ZN3WTF13StringBuilder12appendNumberEd +_ZN3WTF13StringBuilder12appendNumberEdjNS_29TrailingZerosTruncatingPolicyE +_ZN3WTF13StringBuilder12appendNumberEf +_ZN3WTF13StringBuilder12appendNumberEi +_ZN3WTF13StringBuilder12appendNumberEj +_ZN3WTF13StringBuilder12appendNumberEl +_ZN3WTF13StringBuilder12appendNumberEm +_ZN3WTF13StringBuilder12appendNumberEx +_ZN3WTF13StringBuilder12appendNumberEy +_ZN3WTF13StringBuilder15reserveCapacityEj +_ZN3WTF13StringBuilder16appendCharactersEPKDsj +_ZN3WTF13StringBuilder16appendCharactersEPKhj +_ZN3WTF13StringBuilder22appendECMAScriptNumberEd +_ZN3WTF13StringBuilder22appendFixedWidthNumberEdj +_ZN3WTF13StringBuilder22appendQuotedJSONStringERKNS_6StringE +_ZN3WTF13StringBuilder25extendBufferForAppending8ENS_7CheckedIiNS_14RecordOverflowEEE +_ZN3WTF13StringBuilder26extendBufferForAppending16ENS_7CheckedIiNS_14RecordOverflowEEE +_ZN3WTF13StringBuilder6appendEPKDsj +_ZN3WTF13StringBuilder6appendEPKhj +_ZN3WTF13StringBuilder6resizeEj +_ZN3WTF13aboutBlankURLEv +_ZN3WTF13allPrivilegesEv +_ZN3WTF13dumpCharacterERNS_11PrintStreamEc +_ZN3WTF13emptyAtomDataE +_ZN3WTF13isMainRunLoopEv +_ZN3WTF13jsValueMallocEm +_ZN3WTF13mayBeGCThreadEv +_ZN3WTF13monthFullNameE +_ZN3WTF13normalizedNFCENS_10StringViewE +_ZN3WTF13normalizedNFCERKNS_6StringE +_ZN3WTF13printInternalERNS_11PrintStreamEN3JSC14TypedArrayModeE +_ZN3WTF13printInternalERNS_11PrintStreamENS_10RawPointerE +_ZN3WTF13printInternalERNS_11PrintStreamENS_9ClockTypeE +_ZN3WTF13printInternalERNS_11PrintStreamEPKNS_10StringImplE +_ZN3WTF13printInternalERNS_11PrintStreamEPKc +_ZN3WTF13printInternalERNS_11PrintStreamEPN3JSC9CodeBlockE +_ZN3WTF13printInternalERNS_11PrintStreamERKNS_10StringViewE +_ZN3WTF13printInternalERNS_11PrintStreamERKNS_6StringE +_ZN3WTF13printInternalERNS_11PrintStreamERKNS_7CStringE +_ZN3WTF13printInternalERNS_11PrintStreamEa +_ZN3WTF13printInternalERNS_11PrintStreamEb +_ZN3WTF13printInternalERNS_11PrintStreamEd +_ZN3WTF13printInternalERNS_11PrintStreamEf +_ZN3WTF13printInternalERNS_11PrintStreamEh +_ZN3WTF13printInternalERNS_11PrintStreamEi +_ZN3WTF13printInternalERNS_11PrintStreamEj +_ZN3WTF13printInternalERNS_11PrintStreamEl +_ZN3WTF13printInternalERNS_11PrintStreamEm +_ZN3WTF13printInternalERNS_11PrintStreamEs +_ZN3WTF13printInternalERNS_11PrintStreamEt +_ZN3WTF13printInternalERNS_11PrintStreamEx +_ZN3WTF13printInternalERNS_11PrintStreamEy +_ZN3WTF13tryFastCallocEmm +_ZN3WTF13tryFastMallocEm +_ZN3WTF13xmlnsAtomDataE +_ZN3WTF14AtomStringImpl10addLiteralEPKcj +_ZN3WTF14AtomStringImpl11addSlowCaseERNS_10StringImplE +_ZN3WTF14AtomStringImpl11addSlowCaseERNS_15AtomStringTableERNS_10StringImplE +_ZN3WTF14AtomStringImpl14lookUpSlowCaseERNS_10StringImplE +_ZN3WTF14AtomStringImpl3addEPKDs +_ZN3WTF14AtomStringImpl3addEPKDsj +_ZN3WTF14AtomStringImpl3addEPKNS_10StringImpl16StaticStringImplE +_ZN3WTF14AtomStringImpl3addEPKh +_ZN3WTF14AtomStringImpl3addEPKhj +_ZN3WTF14AtomStringImpl3addEPNS_10StringImplEjj +_ZN3WTF14AtomStringImpl6lookUpEPKDsj +_ZN3WTF14AtomStringImpl6lookUpEPKhj +_ZN3WTF14FileSystemImpl10deleteFileERKNS_6StringE +_ZN3WTF14FileSystemImpl10fileExistsERKNS_6StringE +_ZN3WTF14FileSystemImpl11getFileSizeERKNS_6StringERx +_ZN3WTF14FileSystemImpl11getFileSizeEiRx +_ZN3WTF14FileSystemImpl11writeToFileEiPKci +_ZN3WTF14FileSystemImpl12fileMetadataERKNS_6StringE +_ZN3WTF14FileSystemImpl12readFromFileEiPci +_ZN3WTF14FileSystemImpl12truncateFileEix +_ZN3WTF14FileSystemImpl13directoryNameERKNS_6StringE +_ZN3WTF14FileSystemImpl13listDirectoryERKNS_6StringES3_ +_ZN3WTF14FileSystemImpl14MappedFileData13mapFileHandleEiNS0_12FileOpenModeENS0_14MappedFileModeE +_ZN3WTF14FileSystemImpl14MappedFileDataC1ERKNS_6StringENS0_14MappedFileModeERb +_ZN3WTF14FileSystemImpl14MappedFileDataC1EiNS0_12FileOpenModeENS0_14MappedFileModeERb +_ZN3WTF14FileSystemImpl14MappedFileDataC1EiNS0_14MappedFileModeERb +_ZN3WTF14FileSystemImpl14MappedFileDataC2ERKNS_6StringENS0_14MappedFileModeERb +_ZN3WTF14FileSystemImpl14MappedFileDataD1Ev +_ZN3WTF14FileSystemImpl14MappedFileDataD2Ev +_ZN3WTF14FileSystemImpl14setMetadataURLERKNS_6StringES3_S3_ +_ZN3WTF14FileSystemImpl15fileIsDirectoryERKNS_6StringENS0_25ShouldFollowSymbolicLinksE +_ZN3WTF14FileSystemImpl15getFileDeviceIdERKNS_7CStringE +_ZN3WTF14FileSystemImpl15openAndLockFileERKNS_6StringENS0_12FileOpenModeENS_9OptionSetINS0_12FileLockModeEEE +_ZN3WTF14FileSystemImpl15pathGetFileNameERKNS_6StringE +_ZN3WTF14FileSystemImpl15unmapViewOfFileEPvm +_ZN3WTF14FileSystemImpl17encodeForFileNameERKNS_6StringE +_ZN3WTF14FileSystemImpl17openTemporaryFileERKNS_6StringERiS3_ +_ZN3WTF14FileSystemImpl18createSymbolicLinkERKNS_6StringES3_ +_ZN3WTF14FileSystemImpl18decodeFromFilenameERKNS_6StringE +_ZN3WTF14FileSystemImpl18getVolumeFreeSpaceERKNS_6StringERm +_ZN3WTF14FileSystemImpl18hardLinkOrCopyFileERKNS_6StringES3_ +_ZN3WTF14FileSystemImpl18makeAllDirectoriesERKNS_6StringE +_ZN3WTF14FileSystemImpl18unlockAndCloseFileEi +_ZN3WTF14FileSystemImpl19filesHaveSameVolumeERKNS_6StringES3_ +_ZN3WTF14FileSystemImpl19getFileCreationTimeERKNS_6StringE +_ZN3WTF14FileSystemImpl20deleteEmptyDirectoryERKNS_6StringE +_ZN3WTF14FileSystemImpl23getFileModificationTimeERKNS_6StringE +_ZN3WTF14FileSystemImpl24fileSystemRepresentationERKNS_6StringE +_ZN3WTF14FileSystemImpl24pathByAppendingComponentERKNS_6StringES3_ +_ZN3WTF14FileSystemImpl25createTemporaryZipArchiveERKNS_6StringE +_ZN3WTF14FileSystemImpl25pathByAppendingComponentsENS_10StringViewERKNS_6VectorIS1_Lm0ENS_15CrashOnOverflowELm16ENS_10FastMallocEEE +_ZN3WTF14FileSystemImpl27isSafeToUseMemoryMapForPathERKNS_6StringE +_ZN3WTF14FileSystemImpl29fileMetadataFollowingSymlinksERKNS_6StringE +_ZN3WTF14FileSystemImpl29makeSafeToUseMemoryMapForPathERKNS_6StringE +_ZN3WTF14FileSystemImpl30appendFileContentsToFileHandleERKNS_6StringERi +_ZN3WTF14FileSystemImpl34stringFromFileSystemRepresentationEPKc +_ZN3WTF14FileSystemImpl40lastComponentOfPathIgnoringTrailingSlashERKNS_6StringE +_ZN3WTF14FileSystemImpl8hardLinkERKNS_6StringES3_ +_ZN3WTF14FileSystemImpl8moveFileERKNS_6StringES3_ +_ZN3WTF14FileSystemImpl8openFileERKNS_6StringENS0_12FileOpenModeENS0_20FileAccessPermissionEb +_ZN3WTF14FileSystemImpl8realPathERKNS_6StringE +_ZN3WTF14FileSystemImpl8seekFileEixNS0_14FileSeekOriginE +_ZN3WTF14FileSystemImpl9closeFileERi +_ZN3WTF14RefCountedBase33areThreadingChecksEnabledGloballyE +_ZN3WTF14SymbolRegistry12symbolForKeyERKNS_6StringE +_ZN3WTF14SymbolRegistryD1Ev +_ZN3WTF14SymbolRegistryD2Ev +_ZN3WTF14aboutSrcDocURLEv +_ZN3WTF14createIteratorENS_10StringViewE +_ZN3WTF14dataLogFStringEPKc +_ZN3WTF14derefIfNotNullI14_cairo_surfaceEEvPT_ +_ZN3WTF14derefIfNotNullI6_cairoEEvPT_ +_ZN3WTF14dupCloseOnExecEi +_ZN3WTF14fastMallocSizeEPKv +_ZN3WTF14isVersion4UUIDENS_10StringViewE +_ZN3WTF14jsValueReallocEPvm +_ZN3WTF14numberToStringEdPc +_ZN3WTF14numberToStringEdRSt5arrayIcLm123EE +_ZN3WTF14numberToStringEfRSt5arrayIcLm123EE +_ZN3WTF14setCloseOnExecEi +_ZN3WTF14tryFastReallocEPvm +_ZN3WTF15AtomStringTableD1Ev +_ZN3WTF15AtomStringTableD2Ev +_ZN3WTF15AutomaticThread11shouldSleepERKNS_14AbstractLockerE +_ZN3WTF15AutomaticThread14threadDidStartEv +_ZN3WTF15AutomaticThread16threadIsStoppingERKNS_14AbstractLockerE +_ZN3WTF15AutomaticThread4joinEv +_ZN3WTF15AutomaticThread5startERKNS_14AbstractLockerE +_ZN3WTF15AutomaticThread6notifyERKNS_14AbstractLockerE +_ZN3WTF15AutomaticThread7tryStopERKNS_14AbstractLockerE +_ZN3WTF15AutomaticThread9isWaitingERKNS_14AbstractLockerE +_ZN3WTF15AutomaticThreadC2ERKNS_14AbstractLockerENS_3BoxINS_4LockEEEONS_3RefINS_24AutomaticThreadConditionENS_13DumbPtrTraitsIS8_EEEENS_10ThreadTypeENS_7SecondsE +_ZN3WTF15AutomaticThreadC2ERKNS_14AbstractLockerENS_3BoxINS_4LockEEEONS_3RefINS_24AutomaticThreadConditionENS_13DumbPtrTraitsIS8_EEEENS_7SecondsE +_ZN3WTF15AutomaticThreadD0Ev +_ZN3WTF15AutomaticThreadD1Ev +_ZN3WTF15AutomaticThreadD2Ev +_ZN3WTF15BinarySemaphore4waitENS_24TimeWithDynamicClockTypeE +_ZN3WTF15BinarySemaphore6signalEv +_ZN3WTF15BinarySemaphore9waitUntilERKNS_24TimeWithDynamicClockTypeE +_ZN3WTF15FilePrintStream4openEPKcS2_ +_ZN3WTF15FilePrintStreamD0Ev +_ZN3WTF15FilePrintStreamD1Ev +_ZN3WTF15FilePrintStreamD2Ev +_ZN3WTF15ThreadCondition4waitERNS_5MutexE +_ZN3WTF15ThreadCondition6signalEv +_ZN3WTF15ThreadCondition9broadcastEv +_ZN3WTF15ThreadCondition9timedWaitERNS_5MutexENS_8WallTimeE +_ZN3WTF15ThreadConditionC1Ev +_ZN3WTF15ThreadConditionC2Ev +_ZN3WTF15ThreadConditionD1Ev +_ZN3WTF15ThreadConditionD2Ev +_ZN3WTF15base64URLDecodeENS_10StringViewENS_33SignedOrUnsignedCharVectorAdapterE +_ZN3WTF15base64URLDecodeEPKcjNS_33SignedOrUnsignedCharVectorAdapterE +_ZN3WTF15base64URLDecodeERKNS_6StringENS_33SignedOrUnsignedCharVectorAdapterE +_ZN3WTF15base64URLDecodeERKNS_6VectorIcLm0ENS_15CrashOnOverflowELm16EEENS_33SignedOrUnsignedCharVectorAdapterE +_ZN3WTF15base64URLDecodeERKNS_6VectorIcLm0ENS_15CrashOnOverflowELm16ENS_10FastMallocEEENS_33SignedOrUnsignedCharVectorAdapterE +_ZN3WTF15base64URLEncodeEPKvj +_ZN3WTF15base64URLEncodeEPKvjRNS_6VectorIcLm0ENS_15CrashOnOverflowELm16EEE +_ZN3WTF15base64URLEncodeEPKvjRNS_6VectorIcLm0ENS_15CrashOnOverflowELm16ENS_10FastMallocEEE +_ZN3WTF15charactersToIntEPKDsmPb +_ZN3WTF15charactersToIntEPKhmPb +_ZN3WTF15defaultLanguageEv +_ZN3WTF15fastAlignedFreeEPv +_ZN3WTF15firstDayOfMonthE +_ZN3WTF15isWordTextBreakEP14UBreakIterator +_ZN3WTF15memoryFootprintEv +_ZN3WTF16AtomicStringImpl10addLiteralEPKcj +_ZN3WTF16AtomicStringImpl11addSlowCaseERNS_10StringImplE +_ZN3WTF16AtomicStringImpl11addSlowCaseERNS_17AtomicStringTableERNS_10StringImplE +_ZN3WTF16AtomicStringImpl14lookUpSlowCaseERNS_10StringImplE +_ZN3WTF16AtomicStringImpl3addEPKDs +_ZN3WTF16AtomicStringImpl3addEPKDsj +_ZN3WTF16AtomicStringImpl3addEPKNS_10StringImpl16StaticStringImplE +_ZN3WTF16AtomicStringImpl3addEPKh +_ZN3WTF16AtomicStringImpl3addEPKhj +_ZN3WTF16AtomicStringImpl3addEPNS_10StringImplEjj +_ZN3WTF16AtomicStringImpl6lookUpEPKDsj +_ZN3WTF16AtomicStringImpl6lookUpEPKhj +_ZN3WTF16AtomicStringImpl7addUTF8EPKcS2_ +_ZN3WTF16addSignalHandlerENS_6SignalEONS_8FunctionIFNS_12SignalActionES0_RNS_7SigInfoERNS_17PlatformRegistersEEEE +_ZN3WTF16callOnMainThreadEONS_8FunctionIFvvEEE +_ZN3WTF16callOnMainThreadEPFvPvES0_ +_ZN3WTF16codePointCompareENS_10StringViewES0_ +_ZN3WTF16codePointCompareERKNS_6StringES2_ +_ZN3WTF16fastZeroedMallocEm +_ZN3WTF16registerGCThreadENS_12GCThreadTypeE +_ZN3WTF16tryJSValueMallocEm +_ZN3WTF16weakRandomUint32Ev +_ZN3WTF17AtomicStringTableD1Ev +_ZN3WTF17AtomicStringTableD2Ev +_ZN3WTF17GregorianDateTime21setToCurrentLocalTimeEv +_ZN3WTF17GregorianDateTimeC1EdNS_15LocalTimeOffsetE +_ZN3WTF17GregorianDateTimeC2EdNS_15LocalTimeOffsetE +_ZN3WTF17PrivateSymbolImpl16createNullSymbolEv +_ZN3WTF17PrivateSymbolImpl6createERNS_10StringImplE +_ZN3WTF17StringPrintStream11tryToStringEv +_ZN3WTF17StringPrintStream26toStringWithLatin1FallbackEv +_ZN3WTF17StringPrintStream5resetEv +_ZN3WTF17StringPrintStream7vprintfEPKcP13__va_list_tag +_ZN3WTF17StringPrintStream8toStringEv +_ZN3WTF17StringPrintStream9toCStringEv +_ZN3WTF17StringPrintStreamC1Ev +_ZN3WTF17StringPrintStreamC2Ev +_ZN3WTF17StringPrintStreamD0Ev +_ZN3WTF17StringPrintStreamD1Ev +_ZN3WTF17StringPrintStreamD2Ev +_ZN3WTF17TextBreakIteratorC1ENS_10StringViewENS0_4ModeERKNS_10AtomStringE +_ZN3WTF17TextBreakIteratorC1ENS_10StringViewENS0_4ModeERKNS_12AtomicStringE +_ZN3WTF17TextBreakIteratorC2ENS_10StringViewENS0_4ModeERKNS_10AtomStringE +_ZN3WTF17TextBreakIteratorC2ENS_10StringViewENS0_4ModeERKNS_12AtomicStringE +_ZN3WTF17callOnMainRunLoopEONS_8FunctionIFvvEEE +_ZN3WTF17charactersToFloatEPKDsmPb +_ZN3WTF17charactersToFloatEPKDsmRm +_ZN3WTF17charactersToFloatEPKhmPb +_ZN3WTF17charactersToFloatEPKhmRm +_ZN3WTF17double_conversion23DoubleToStringConverter19EcmaScriptConverterEv +_ZN3WTF17double_conversion23StringToDoubleConverter13StringToFloatEPKcmPm +_ZN3WTF17double_conversion23StringToDoubleConverter13StringToFloatEPKtmPm +_ZN3WTF17double_conversion23StringToDoubleConverter14StringToDoubleEPKcmPm +_ZN3WTF17double_conversion23StringToDoubleConverter14StringToDoubleEPKtmPm +_ZN3WTF17fastAlignedMallocEmm +_ZN3WTF17languageDidChangeEv +_ZN3WTF17sendMessageScopedERNS_6ThreadERKNS_12ScopedLambdaIFvRNS_17PlatformRegistersEEEE +_ZN3WTF17wordBreakIteratorENS_10StringViewE +_ZN3WTF18ExternalStringImpl6createEPKDsjONS_8FunctionIFvPS0_PvjEEE +_ZN3WTF18ExternalStringImpl6createEPKhjONS_8FunctionIFvPS0_PvjEEE +_ZN3WTF18FunctionDispatcherC2Ev +_ZN3WTF18FunctionDispatcherD0Ev +_ZN3WTF18FunctionDispatcherD1Ev +_ZN3WTF18FunctionDispatcherD2Ev +_ZN3WTF18ParallelHelperPool13doSomeHelpingEv +_ZN3WTF18ParallelHelperPool13ensureThreadsEj +_ZN3WTF18ParallelHelperPoolC1EONS_7CStringE +_ZN3WTF18ParallelHelperPoolC1Ev +_ZN3WTF18ParallelHelperPoolC2EONS_7CStringE +_ZN3WTF18ParallelHelperPoolC2Ev +_ZN3WTF18ParallelHelperPoolD1Ev +_ZN3WTF18ParallelHelperPoolD2Ev +_ZN3WTF18asciiCaseFoldTableE +_ZN3WTF18charactersToDoubleEPKDsmPb +_ZN3WTF18charactersToDoubleEPKhmPb +_ZN3WTF18charactersToUInt64EPKDsmPb +_ZN3WTF18constantTimeMemcmpEPKvS1_m +_ZN3WTF18dateToDaysFrom1970Eiii +_ZN3WTF18fastEnableMiniModeEv +_ZN3WTF18fastMallocGoodSizeEm +_ZN3WTF18loggerObserverLockE +_ZN3WTF18monthFromDayInYearEib +_ZN3WTF19MetaAllocatorHandle6shrinkEm +_ZN3WTF19MetaAllocatorHandleD1Ev +_ZN3WTF19MetaAllocatorHandleD2Ev +_ZN3WTF19ParallelEnvironment7executeEPv +_ZN3WTF19ParallelEnvironmentC1EPFvPvEmi +_ZN3WTF19ParallelEnvironmentC2EPFvPvEmi +_ZN3WTF19addProcessPrivilegeENS_16ProcessPrivilegeE +_ZN3WTF19hasProcessPrivilegeENS_16ProcessPrivilegeE +_ZN3WTF19initializeGCThreadsEv +_ZN3WTF19initializeThreadingEv +_ZN3WTF19isCompilationThreadEv +_ZN3WTF19isFastMallocEnabledEv +_ZN3WTF19mimeTypeFromDataURLENS_10StringViewE +_ZN3WTF19numGraphemeClustersENS_10StringViewE +_ZN3WTF19tryFastZeroedMallocEm +_ZN3WTF20ConcurrentPtrHashSet15deleteOldTablesEv +_ZN3WTF20ConcurrentPtrHashSet5clearEv +_ZN3WTF20ConcurrentPtrHashSet7addSlowEPNS0_5TableEjjjPv +_ZN3WTF20ConcurrentPtrHashSetC1Ev +_ZN3WTF20ConcurrentPtrHashSetC2Ev +_ZN3WTF20ConcurrentPtrHashSetD1Ev +_ZN3WTF20ConcurrentPtrHashSetD2Ev +_ZN3WTF20ObjectIdentifierBase26generateIdentifierInternalEv +_ZN3WTF20ObjectIdentifierBase36generateThreadSafeIdentifierInternalEv +_ZN3WTF20ParallelHelperClient13doSomeHelpingEv +_ZN3WTF20ParallelHelperClient17runTaskInParallelENS_6RefPtrINS_10SharedTaskIFvvEEENS_13DumbPtrTraitsIS4_EEEE +_ZN3WTF20ParallelHelperClient17runTaskInParallelEONS_6RefPtrINS_10SharedTaskIFvvEEENS_13DumbPtrTraitsIS4_EEEE +_ZN3WTF20ParallelHelperClient6finishEv +_ZN3WTF20ParallelHelperClient7setTaskENS_6RefPtrINS_10SharedTaskIFvvEEENS_13DumbPtrTraitsIS4_EEEE +_ZN3WTF20ParallelHelperClient7setTaskEONS_6RefPtrINS_10SharedTaskIFvvEEENS_13DumbPtrTraitsIS4_EEEE +_ZN3WTF20ParallelHelperClientC1ENS_6RefPtrINS_18ParallelHelperPoolENS_13DumbPtrTraitsIS2_EEEE +_ZN3WTF20ParallelHelperClientC1EONS_6RefPtrINS_18ParallelHelperPoolENS_13DumbPtrTraitsIS2_EEEE +_ZN3WTF20ParallelHelperClientC2ENS_6RefPtrINS_18ParallelHelperPoolENS_13DumbPtrTraitsIS2_EEEE +_ZN3WTF20ParallelHelperClientC2EONS_6RefPtrINS_18ParallelHelperPoolENS_13DumbPtrTraitsIS2_EEEE +_ZN3WTF20ParallelHelperClientD1Ev +_ZN3WTF20ParallelHelperClientD2Ev +_ZN3WTF20equalIgnoringNullityEPKDsmPNS_10StringImplE +_ZN3WTF20equalIgnoringNullityEPNS_10StringImplES1_ +_ZN3WTF20fastDisableScavengerEv +_ZN3WTF20fastMallocStatisticsEv +_ZN3WTF20initializeMainThreadEv +_ZN3WTF20protocolIsJavaScriptENS_10StringViewE +_ZN3WTF20resetAccumulatedLogsEv +_ZN3WTF20setProcessPrivilegesENS_9OptionSetINS_16ProcessPrivilegeEEE +_ZN3WTF20tryFastAlignedMallocEmm +_ZN3WTF21LineBreakIteratorPool10sharedPoolEv +_ZN3WTF21MemoryPressureHandler12ReliefLogger16s_loggingEnabledE +_ZN3WTF21MemoryPressureHandler12setPageCountEj +_ZN3WTF21MemoryPressureHandler13releaseMemoryENS_8CriticalENS_11SynchronousE +_ZN3WTF21MemoryPressureHandler15setProcessStateENS_18WebsamProcessStateE +_ZN3WTF21MemoryPressureHandler24currentMemoryUsagePolicyEv +_ZN3WTF21MemoryPressureHandler26endSimulatedMemoryPressureEv +_ZN3WTF21MemoryPressureHandler26triggerMemoryPressureEventEb +_ZN3WTF21MemoryPressureHandler28beginSimulatedMemoryPressureEv +_ZN3WTF21MemoryPressureHandler33setShouldUsePeriodicMemoryMonitorEb +_ZN3WTF21MemoryPressureHandler7installEv +_ZN3WTF21MemoryPressureHandler9singletonEv +_ZN3WTF21RefCountedLeakCounter16suppressMessagesEPKc +_ZN3WTF21RefCountedLeakCounter24cancelMessageSuppressionEPKc +_ZN3WTF21RefCountedLeakCounter9decrementEv +_ZN3WTF21RefCountedLeakCounter9incrementEv +_ZN3WTF21RefCountedLeakCounterC1EPKc +_ZN3WTF21RefCountedLeakCounterC2EPKc +_ZN3WTF21RefCountedLeakCounterD1Ev +_ZN3WTF21RefCountedLeakCounterD2Ev +_ZN3WTF21bootSessionUUIDStringEv +_ZN3WTF21charactersToIntStrictEPKDsmPbi +_ZN3WTF21charactersToIntStrictEPKhmPbi +_ZN3WTF21currentSearchLocaleIDEv +_ZN3WTF21makeRFC2822DateStringEjjjjjjji +_ZN3WTF21sentenceBreakIteratorENS_10StringViewE +_ZN3WTF22CrossThreadTaskHandler13postTaskReplyEONS_15CrossThreadTaskE +_ZN3WTF22CrossThreadTaskHandler21setCompletionCallbackEONS_8FunctionIFvvEEE +_ZN3WTF22CrossThreadTaskHandler4killEv +_ZN3WTF22CrossThreadTaskHandler8postTaskEONS_15CrossThreadTaskE +_ZN3WTF22CrossThreadTaskHandlerC1EPKcNS0_25AutodrainedPoolForRunLoopE +_ZN3WTF22CrossThreadTaskHandlerC2EPKcNS0_25AutodrainedPoolForRunLoopE +_ZN3WTF22CrossThreadTaskHandlerD0Ev +_ZN3WTF22CrossThreadTaskHandlerD1Ev +_ZN3WTF22CrossThreadTaskHandlerD2Ev +_ZN3WTF22FastBitVectorWordOwner10resizeSlowEm +_ZN3WTF22FastBitVectorWordOwner13setEqualsSlowERKS0_ +_ZN3WTF22TextBreakIteratorCache9singletonEv +_ZN3WTF22charactersToUIntStrictEPKDsmPbi +_ZN3WTF22charactersToUIntStrictEPKhmPbi +_ZN3WTF22defaultPortForProtocolENS_10StringViewE +_ZN3WTF22equalIgnoringASCIICaseEPKNS_10StringImplES2_ +_ZN3WTF22equalRespectingNullityENS_10StringViewES0_ +_ZN3WTF22isMainThreadOrGCThreadEv +_ZN3WTF22numberOfProcessorCoresEv +_ZN3WTF22protocolIsInHTTPFamilyENS_10StringViewE +_ZN3WTF22removeProcessPrivilegeENS_16ProcessPrivilegeE +_ZN3WTF22userPreferredLanguagesEv +_ZN3WTF23callOnMainThreadAndWaitEONS_8FunctionIFvvEEE +_ZN3WTF23dayInMonthFromDayInYearEib +_ZN3WTF23fastCommitAlignedMemoryEPvm +_ZN3WTF23openLatin1UTextProviderEPNS_15UTextWithBufferEPKhjP10UErrorCode +_ZN3WTF24AutomaticThreadCondition4waitERNS_4LockE +_ZN3WTF24AutomaticThreadCondition6createEv +_ZN3WTF24AutomaticThreadCondition7waitForERNS_4LockENS_7SecondsE +_ZN3WTF24AutomaticThreadCondition9notifyAllERKNS_14AbstractLockerE +_ZN3WTF24AutomaticThreadCondition9notifyOneERKNS_14AbstractLockerE +_ZN3WTF24AutomaticThreadConditionC1Ev +_ZN3WTF24AutomaticThreadConditionC2Ev +_ZN3WTF24AutomaticThreadConditionD1Ev +_ZN3WTF24AutomaticThreadConditionD2Ev +_ZN3WTF24TimeWithDynamicClockType3nowENS_9ClockTypeE +_ZN3WTF24acquireLineBreakIteratorENS_10StringViewERKNS_10AtomStringEPKDsjNS_21LineBreakIteratorModeE +_ZN3WTF24acquireLineBreakIteratorENS_10StringViewERKNS_12AtomicStringEPKDsjNS_21LineBreakIteratorModeE +_ZN3WTF24calculateLocalTimeOffsetEdNS_8TimeTypeE +_ZN3WTF24callOnMainRunLoopAndWaitEONS_8FunctionIFvvEEE +_ZN3WTF24charactersToUInt64StrictEPKDsmPbi +_ZN3WTF24charactersToUInt64StrictEPKhmPbi +_ZN3WTF24currentTextBreakLocaleIDEv +_ZN3WTF24isDefaultPortForProtocolEtNS_10StringViewE +_ZN3WTF24normalizeLineEndingsToLFEONS_6VectorIhLm0ENS_15CrashOnOverflowELm16EEE +_ZN3WTF24normalizeLineEndingsToLFEONS_6VectorIhLm0ENS_15CrashOnOverflowELm16ENS_10FastMallocEEE +_ZN3WTF24numberToFixedWidthStringEdjPc +_ZN3WTF24numberToFixedWidthStringEdjRSt5arrayIcLm123EE +_ZN3WTF24numberToFixedWidthStringEfjRSt5arrayIcLm123EE +_ZN3WTF24releaseLineBreakIteratorEP14UBreakIterator +_ZN3WTF25activateSignalHandlersForENS_6SignalE +_ZN3WTF25addLanguageChangeObserverEPvPFvS0_E +_ZN3WTF25createCanonicalUUIDStringEv +_ZN3WTF25fastDecommitAlignedMemoryEPvm +_ZN3WTF25fastMallocDumpMallocStatsEv +_ZN3WTF26currentProcessMemoryStatusERNS_19ProcessMemoryStatusE +_ZN3WTF26getAndResetAccumulatedLogsEv +_ZN3WTF26normalizeLineEndingsToCRLFEONS_6VectorIhLm0ENS_15CrashOnOverflowELm16EEE +_ZN3WTF26normalizeLineEndingsToCRLFEONS_6VectorIhLm0ENS_15CrashOnOverflowELm16ENS_10FastMallocEEE +_ZN3WTF27exchangeIsCompilationThreadEb +_ZN3WTF27protocolHostAndPortAreEqualERKNS_3URLES2_ +_ZN3WTF27releaseFastMallocFreeMemoryEv +_ZN3WTF28displayNameForLanguageLocaleERKNS_6StringE +_ZN3WTF28encodeWithURLEscapeSequencesERKNS_6StringE +_ZN3WTF28normalizeLineEndingsToNativeEONS_6VectorIhLm0ENS_15CrashOnOverflowELm16EEE +_ZN3WTF28normalizeLineEndingsToNativeEONS_6VectorIhLm0ENS_15CrashOnOverflowELm16ENS_10FastMallocEEE +_ZN3WTF28numberToFixedPrecisionStringEdjPcb +_ZN3WTF28numberToFixedPrecisionStringEdjRSt5arrayIcLm123EEb +_ZN3WTF28numberToFixedPrecisionStringEfjRSt5arrayIcLm123EEb +_ZN3WTF28removeLanguageChangeObserverEPv +_ZN3WTF28setMainThreadCallbacksPausedEb +_ZN3WTF29cryptographicallyRandomNumberEv +_ZN3WTF29cryptographicallyRandomValuesEPvm +_ZN3WTF29equalIgnoringASCIICaseNonNullEPKNS_10StringImplES2_ +_ZN3WTF30numCodeUnitsInGraphemeClustersENS_10StringViewEj +_ZN3WTF30overrideUserPreferredLanguagesERKNS_6VectorINS_6StringELm0ENS_15CrashOnOverflowELm16EEE +_ZN3WTF30overrideUserPreferredLanguagesERKNS_6VectorINS_6StringELm0ENS_15CrashOnOverflowELm16ENS_10FastMallocEEE +_ZN3WTF30platformUserPreferredLanguagesEv +_ZN3WTF30userPreferredLanguagesOverrideEv +_ZN3WTF31NonSharedCharacterBreakIteratorC1ENS_10StringViewE +_ZN3WTF31NonSharedCharacterBreakIteratorC2ENS_10StringViewE +_ZN3WTF31NonSharedCharacterBreakIteratorD1Ev +_ZN3WTF31NonSharedCharacterBreakIteratorD2Ev +_ZN3WTF31equalIgnoringFragmentIdentifierERKNS_3URLES2_ +_ZN3WTF31integerToSixCharacterHashStringEj +_ZN3WTF31sixCharacterHashStringToIntegerEPKc +_ZN3WTF33canAccessThreadLocalDataForThreadERNS_6ThreadE +_ZN3WTF33indexOfBestMatchingLanguageInListERKNS_6StringERKNS_6VectorIS0_Lm0ENS_15CrashOnOverflowELm16EEERb +_ZN3WTF33indexOfBestMatchingLanguageInListERKNS_6StringERKNS_6VectorIS0_Lm0ENS_15CrashOnOverflowELm16ENS_10FastMallocEEERb +_ZN3WTF37canCurrentThreadAccessThreadLocalDataERNS_6ThreadE +_ZN3WTF37parseDateFromNullTerminatedCharactersEPKc +_ZN3WTF37parseDateFromNullTerminatedCharactersEPKcRb +_ZN3WTF37parseDateFromNullTerminatedCharactersEPKcRbRi +_ZN3WTF3ICU12majorVersionEv +_ZN3WTF3ICU12minorVersionEv +_ZN3WTF3MD58addBytesEPKhm +_ZN3WTF3MD58checksumERSt5arrayIhLm16EE +_ZN3WTF3MD5C1Ev +_ZN3WTF3MD5C2Ev +_ZN3WTF3URL10invalidateEv +_ZN3WTF3URL11setPasswordENS_10StringViewE +_ZN3WTF3URL11setProtocolENS_10StringViewE +_ZN3WTF3URL14setHostAndPortENS_10StringViewE +_ZN3WTF3URL15hostIsIPAddressENS_10StringViewE +_ZN3WTF3URL17removeCredentialsEv +_ZN3WTF3URL21setFragmentIdentifierENS_10StringViewE +_ZN3WTF3URL23fakeURLWithRelativePartENS_10StringViewE +_ZN3WTF3URL24removeFragmentIdentifierEv +_ZN3WTF3URL25fileURLWithFileSystemPathENS_10StringViewE +_ZN3WTF3URL32removeQueryAndFragmentIdentifierEv +_ZN3WTF3URL7setHostENS_10StringViewE +_ZN3WTF3URL7setPathENS_10StringViewE +_ZN3WTF3URL7setPortENS_8OptionalItEE +_ZN3WTF3URL7setUserENS_10StringViewE +_ZN3WTF3URL8setQueryENS_10StringViewE +_ZN3WTF3URLC1ERKS0_RKNS_6StringEPKNS_15URLTextEncodingE +_ZN3WTF3URLC2ERKS0_RKNS_6StringEPKNS_15URLTextEncodingE +_ZN3WTF3absERKNS_9MediaTimeE +_ZN3WTF40clearDefaultPortForProtocolMapForTestingEv +_ZN3WTF40parseES5DateFromNullTerminatedCharactersEPKc +_ZN3WTF40parseES5DateFromNullTerminatedCharactersEPKcRb +_ZN3WTF40registerDefaultPortForProtocolForTestingEtRKNS_6StringE +_ZN3WTF40releaseFastMallocFreeMemoryForThisThreadEv +_ZN3WTF4Lock10unlockSlowEv +_ZN3WTF4Lock13safepointSlowEv +_ZN3WTF4Lock16unlockFairlySlowEv +_ZN3WTF4Lock8lockSlowEv +_ZN3WTF4SHA111computeHashERSt5arrayIhLm20EE +_ZN3WTF4SHA116computeHexDigestEv +_ZN3WTF4SHA18addBytesEPKhm +_ZN3WTF4SHA19hexDigestERKSt5arrayIhLm20EE +_ZN3WTF4SHA1C1Ev +_ZN3WTF4SHA1C2Ev +_ZN3WTF4dtoaEPcdRbRiRj +_ZN3WTF5Mutex4lockEv +_ZN3WTF5Mutex6unlockEv +_ZN3WTF5Mutex7tryLockEv +_ZN3WTF5MutexC1Ev +_ZN3WTF5MutexC2Ev +_ZN3WTF5MutexD1Ev +_ZN3WTF5MutexD2Ev +_ZN3WTF5equalEPKNS_10StringImplEPKDsj +_ZN3WTF5equalEPKNS_10StringImplEPKh +_ZN3WTF5equalEPKNS_10StringImplEPKhj +_ZN3WTF5equalEPKNS_10StringImplES2_ +_ZN3WTF5equalERKNS_10StringImplES2_ +_ZN3WTF5sleepENS_7SecondsE +_ZN3WTF5sleepERKNS_24TimeWithDynamicClockTypeE +_ZN3WTF6Config17permanentlyFreezeEv +_ZN3WTF6Logger9observersEv +_ZN3WTF6String13fromCodePointEi +_ZN3WTF6String19formatWithArgumentsEPKcP13__va_list_tag +_ZN3WTF6String23make16BitFrom8BitSourceEPKhm +_ZN3WTF6String23make8BitFrom16BitSourceEPKDsm +_ZN3WTF6String24numberToStringECMAScriptEd +_ZN3WTF6String24numberToStringFixedWidthEdj +_ZN3WTF6String26fromUTF8WithLatin1FallbackEPKhm +_ZN3WTF6String28numberToStringFixedPrecisionEdjNS_29TrailingZerosTruncatingPolicyE +_ZN3WTF6String28numberToStringFixedPrecisionEfjNS_29TrailingZerosTruncatingPolicyE +_ZN3WTF6String6appendEDs +_ZN3WTF6String6appendEPKDsj +_ZN3WTF6String6appendEPKhj +_ZN3WTF6String6appendEPKwj +_ZN3WTF6String6appendERKS0_ +_ZN3WTF6String6appendEh +_ZN3WTF6String6appendEw +_ZN3WTF6String6formatEPKcz +_ZN3WTF6String6insertERKS0_j +_ZN3WTF6String6numberEd +_ZN3WTF6String6numberEdjNS_29TrailingZerosTruncatingPolicyE +_ZN3WTF6String6numberEf +_ZN3WTF6String6numberEi +_ZN3WTF6String6numberEj +_ZN3WTF6String6numberEl +_ZN3WTF6String6numberEm +_ZN3WTF6String6numberEx +_ZN3WTF6String6numberEy +_ZN3WTF6String6removeEjj +_ZN3WTF6String8fromUTF8EPKh +_ZN3WTF6String8fromUTF8EPKhm +_ZN3WTF6String8fromUTF8ERKNS_7CStringE +_ZN3WTF6String8truncateEj +_ZN3WTF6StringC1ENS_12ASCIILiteralE +_ZN3WTF6StringC1EPKDs +_ZN3WTF6StringC1EPKDsj +_ZN3WTF6StringC1EPKc +_ZN3WTF6StringC1EPKcj +_ZN3WTF6StringC1EPKh +_ZN3WTF6StringC1EPKhj +_ZN3WTF6StringC2ENS_12ASCIILiteralE +_ZN3WTF6StringC2EPKDs +_ZN3WTF6StringC2EPKDsj +_ZN3WTF6StringC2EPKc +_ZN3WTF6StringC2EPKcj +_ZN3WTF6StringC2EPKh +_ZN3WTF6StringC2EPKhj +_ZN3WTF6Thread10allThreadsERKNS_6LockerINS_4LockEEE +_ZN3WTF6Thread12getRegistersERNS_17PlatformRegistersE +_ZN3WTF6Thread13mayBeGCThreadEv +_ZN3WTF6Thread14changePriorityEi +_ZN3WTF6Thread15allThreadsMutexEv +_ZN3WTF6Thread16registerGCThreadENS_12GCThreadTypeE +_ZN3WTF6Thread17waitForCompletionEv +_ZN3WTF6Thread20initializeCurrentTLSEv +_ZN3WTF6Thread20numberOfThreadGroupsEv +_ZN3WTF6Thread27exchangeIsCompilationThreadEb +_ZN3WTF6Thread31setCurrentThreadIsUserInitiatedEi +_ZN3WTF6Thread33setCurrentThreadIsUserInteractiveEi +_ZN3WTF6Thread5s_keyE +_ZN3WTF6Thread5yieldEv +_ZN3WTF6Thread6createEPKcONS_8FunctionIFvvEEE +_ZN3WTF6Thread6createEPKcONS_8FunctionIFvvEEENS_10ThreadTypeE +_ZN3WTF6Thread6detachEv +_ZN3WTF6Thread6resumeEv +_ZN3WTF6Thread6signalEi +_ZN3WTF6Thread7suspendEv +_ZN3WTF6ThreadD1Ev +_ZN3WTF6ThreadD2Ev +_ZN3WTF7CPUTime16forCurrentThreadEv +_ZN3WTF7CPUTime3getEv +_ZN3WTF7CString11mutableDataEv +_ZN3WTF7CString16newUninitializedEmRPc +_ZN3WTF7CString4growEm +_ZN3WTF7CStringC1EPKc +_ZN3WTF7CStringC1EPKcm +_ZN3WTF7CStringC2EPKc +_ZN3WTF7CStringC2EPKcm +_ZN3WTF7RunLoop13dispatchAfterENS_7SecondsEONS_8FunctionIFvvEEE +_ZN3WTF7RunLoop14initializeMainEv +_ZN3WTF7RunLoop17setWakeUpCallbackEONS_8FunctionIFvvEEE +_ZN3WTF7RunLoop21initializeMainRunLoopEv +_ZN3WTF7RunLoop38suspendFunctionDispatchForCurrentCycleEv +_ZN3WTF7RunLoop3runEv +_ZN3WTF7RunLoop4mainEv +_ZN3WTF7RunLoop4stopEv +_ZN3WTF7RunLoop5cycleEj +_ZN3WTF7RunLoop6isMainEv +_ZN3WTF7RunLoop6wakeUpEv +_ZN3WTF7RunLoop7currentEv +_ZN3WTF7RunLoop7iterateEv +_ZN3WTF7RunLoop8dispatchEONS_8FunctionIFvvEEE +_ZN3WTF7RunLoop9TimerBase4stopEv +_ZN3WTF7RunLoop9TimerBase5startENS_7SecondsEb +_ZN3WTF7RunLoop9TimerBaseC2ERS0_ +_ZN3WTF7RunLoop9TimerBaseD0Ev +_ZN3WTF7RunLoop9TimerBaseD1Ev +_ZN3WTF7RunLoop9TimerBaseD2Ev +_ZN3WTF7Unicode18UTF8SequenceLengthEc +_ZN3WTF7Unicode18convertUTF16ToUTF8EPPKDsS2_PPcS4_b +_ZN3WTF7Unicode18convertUTF8ToUTF16EPKcS2_PPDsS3_Pb +_ZN3WTF7Unicode18convertUTF8ToUTF16EPPKcS2_PPDsS4_Pbb +_ZN3WTF7Unicode18decodeUTF8SequenceEPKc +_ZN3WTF7Unicode19convertLatin1ToUTF8EPPKhS2_PPcS4_ +_ZN3WTF7Unicode43convertUTF8ToUTF16ReplacingInvalidSequencesEPKcS2_PPDsS3_Pb +_ZN3WTF7Unicode51calculateStringHashAndLengthFromUTF8MaskingTop8BitsEPKcS2_RjS3_ +_ZN3WTF7ramSizeEv +_ZN3WTF8CollatorC1EPKcb +_ZN3WTF8CollatorC2EPKcb +_ZN3WTF8CollatorD1Ev +_ZN3WTF8CollatorD2Ev +_ZN3WTF8Internal25parseDoubleFromLongStringEPKDsmRm +_ZN3WTF8Internal9appendHexEPhjmjNS_17HexConversionModeE +_ZN3WTF8JSONImpl10ObjectBase10setBooleanERKNS_6StringEb +_ZN3WTF8JSONImpl10ObjectBase10setIntegerERKNS_6StringEi +_ZN3WTF8JSONImpl10ObjectBase13openAccessorsEv +_ZN3WTF8JSONImpl10ObjectBase3endEv +_ZN3WTF8JSONImpl10ObjectBase4findERKNS_6StringE +_ZN3WTF8JSONImpl10ObjectBase5beginEv +_ZN3WTF8JSONImpl10ObjectBase6removeERKNS_6StringE +_ZN3WTF8JSONImpl10ObjectBase8asObjectERNS_6RefPtrINS0_6ObjectENS_13DumbPtrTraitsIS3_EEEE +_ZN3WTF8JSONImpl10ObjectBase8setArrayERKNS_6StringEONS_6RefPtrINS0_9ArrayBaseENS_13DumbPtrTraitsIS6_EEEE +_ZN3WTF8JSONImpl10ObjectBase8setValueERKNS_6StringEONS_6RefPtrINS0_5ValueENS_13DumbPtrTraitsIS6_EEEE +_ZN3WTF8JSONImpl10ObjectBase9setDoubleERKNS_6StringEd +_ZN3WTF8JSONImpl10ObjectBase9setObjectERKNS_6StringEONS_6RefPtrIS1_NS_13DumbPtrTraitsIS1_EEEE +_ZN3WTF8JSONImpl10ObjectBase9setStringERKNS_6StringES4_ +_ZN3WTF8JSONImpl10ObjectBaseC1Ev +_ZN3WTF8JSONImpl10ObjectBaseC2Ev +_ZN3WTF8JSONImpl10ObjectBaseD0Ev +_ZN3WTF8JSONImpl10ObjectBaseD1Ev +_ZN3WTF8JSONImpl10ObjectBaseD2Ev +_ZN3WTF8JSONImpl5Array6createEv +_ZN3WTF8JSONImpl5Value12escapeStringERNS_13StringBuilderENS_10StringViewE +_ZN3WTF8JSONImpl5Value4nullEv +_ZN3WTF8JSONImpl5Value6createEPKc +_ZN3WTF8JSONImpl5Value6createERKNS_6StringE +_ZN3WTF8JSONImpl5Value6createEb +_ZN3WTF8JSONImpl5Value6createEd +_ZN3WTF8JSONImpl5Value6createEi +_ZN3WTF8JSONImpl5Value7asArrayERNS_6RefPtrINS0_5ArrayENS_13DumbPtrTraitsIS3_EEEE +_ZN3WTF8JSONImpl5Value7asValueERNS_6RefPtrIS1_NS_13DumbPtrTraitsIS1_EEEE +_ZN3WTF8JSONImpl5Value8asObjectERNS_6RefPtrINS0_6ObjectENS_13DumbPtrTraitsIS3_EEEE +_ZN3WTF8JSONImpl5Value9parseJSONERKNS_6StringERNS_6RefPtrIS1_NS_13DumbPtrTraitsIS1_EEEE +_ZN3WTF8JSONImpl5ValueC1ENS1_4TypeE +_ZN3WTF8JSONImpl5ValueC1EPKc +_ZN3WTF8JSONImpl5ValueC1ERKNS_6StringE +_ZN3WTF8JSONImpl5ValueC1Eb +_ZN3WTF8JSONImpl5ValueC1Ed +_ZN3WTF8JSONImpl5ValueC1Ei +_ZN3WTF8JSONImpl5ValueC1Ev +_ZN3WTF8JSONImpl5ValueC2ENS1_4TypeE +_ZN3WTF8JSONImpl5ValueC2EPKc +_ZN3WTF8JSONImpl5ValueC2ERKNS_6StringE +_ZN3WTF8JSONImpl5ValueC2Eb +_ZN3WTF8JSONImpl5ValueC2Ed +_ZN3WTF8JSONImpl5ValueC2Ei +_ZN3WTF8JSONImpl5ValueC2Ev +_ZN3WTF8JSONImpl5ValueD0Ev +_ZN3WTF8JSONImpl5ValueD1Ev +_ZN3WTF8JSONImpl5ValueD2Ev +_ZN3WTF8JSONImpl6Object6createEv +_ZN3WTF8JSONImpl9ArrayBase10pushDoubleEd +_ZN3WTF8JSONImpl9ArrayBase10pushObjectEONS_6RefPtrINS0_10ObjectBaseENS_13DumbPtrTraitsIS3_EEEE +_ZN3WTF8JSONImpl9ArrayBase10pushStringERKNS_6StringE +_ZN3WTF8JSONImpl9ArrayBase11pushBooleanEb +_ZN3WTF8JSONImpl9ArrayBase11pushIntegerEi +_ZN3WTF8JSONImpl9ArrayBase3endEv +_ZN3WTF8JSONImpl9ArrayBase5beginEv +_ZN3WTF8JSONImpl9ArrayBase7asArrayERNS_6RefPtrINS0_5ArrayENS_13DumbPtrTraitsIS3_EEEE +_ZN3WTF8JSONImpl9ArrayBase9pushArrayEONS_6RefPtrIS1_NS_13DumbPtrTraitsIS1_EEEE +_ZN3WTF8JSONImpl9ArrayBase9pushValueEONS_6RefPtrINS0_5ValueENS_13DumbPtrTraitsIS3_EEEE +_ZN3WTF8JSONImpl9ArrayBaseC1Ev +_ZN3WTF8JSONImpl9ArrayBaseC2Ev +_ZN3WTF8JSONImpl9ArrayBaseD0Ev +_ZN3WTF8JSONImpl9ArrayBaseD1Ev +_ZN3WTF8JSONImpl9ArrayBaseD2Ev +_ZN3WTF8WallTime3nowEv +_ZN3WTF8WordLock10unlockSlowEv +_ZN3WTF8WordLock8lockSlowEv +_ZN3WTF8dataFileEv +_ZN3WTF8dataLogFEPKcz +_ZN3WTF8fastFreeEPv +_ZN3WTF8msToDaysEd +_ZN3WTF8msToYearEd +_ZN3WTF8pageMaskEv +_ZN3WTF8pageSizeEv +_ZN3WTF8timeClipEd +_ZN3WTF9BitVector10filterSlowERKS0_ +_ZN3WTF9BitVector11excludeSlowERKS0_ +_ZN3WTF9BitVector13OutOfLineBits6createEm +_ZN3WTF9BitVector13OutOfLineBits7destroyEPS1_ +_ZN3WTF9BitVector15resizeOutOfLineEm +_ZN3WTF9BitVector6resizeEm +_ZN3WTF9BitVector7setSlowERKS0_ +_ZN3WTF9BitVector8clearAllEv +_ZN3WTF9BitVector9mergeSlowERKS0_ +_ZN3WTF9MediaTime11invalidTimeEv +_ZN3WTF9MediaTime12setTimeScaleEjNS0_13RoundingFlagsE +_ZN3WTF9MediaTime14indefiniteTimeEv +_ZN3WTF9MediaTime15createWithFloatEf +_ZN3WTF9MediaTime15createWithFloatEfj +_ZN3WTF9MediaTime16MaximumTimeScaleE +_ZN3WTF9MediaTime16createWithDoubleEd +_ZN3WTF9MediaTime16createWithDoubleEdj +_ZN3WTF9MediaTime20negativeInfiniteTimeEv +_ZN3WTF9MediaTime20positiveInfiniteTimeEv +_ZN3WTF9MediaTime8zeroTimeEv +_ZN3WTF9MediaTimeC1ERKS0_ +_ZN3WTF9MediaTimeC1Eljh +_ZN3WTF9MediaTimeC1Ev +_ZN3WTF9MediaTimeC2ERKS0_ +_ZN3WTF9MediaTimeC2Eljh +_ZN3WTF9MediaTimeC2Ev +_ZN3WTF9MediaTimeD1Ev +_ZN3WTF9MediaTimeD2Ev +_ZN3WTF9MediaTimeaSERKS0_ +_ZN3WTF9MediaTimedaEPv +_ZN3WTF9MediaTimedlEPv +_ZN3WTF9MediaTimemIERKS0_ +_ZN3WTF9MediaTimenaEm +_ZN3WTF9MediaTimenaEmPv +_ZN3WTF9MediaTimenwEm +_ZN3WTF9MediaTimenwEm10NotNullTagPv +_ZN3WTF9MediaTimenwEmPv +_ZN3WTF9MediaTimepLERKS0_ +_ZN3WTF9URLParser14allValuesEqualERKNS_3URLES3_ +_ZN3WTF9URLParser15isSpecialSchemeERKNS_6StringE +_ZN3WTF9URLParser19parseURLEncodedFormENS_10StringViewE +_ZN3WTF9URLParser23maybeCanonicalizeSchemeERKNS_6StringE +_ZN3WTF9URLParser24internalValuesConsistentERKNS_3URLE +_ZN3WTF9URLParser9serializeERKNS_6VectorINS_12KeyValuePairINS_6StringES3_EELm0ENS_15CrashOnOverflowELm16ENS_10FastMallocEEE +_ZN3WTF9WorkQueue13dispatchAfterENS_7SecondsEONS_8FunctionIFvvEEE +_ZN3WTF9WorkQueue15concurrentApplyEmONS_8FunctionIFvmEEE +_ZN3WTF9WorkQueue6createEPKcNS0_4TypeENS0_3QOSE +_ZN3WTF9WorkQueue8dispatchEONS_8FunctionIFvvEEE +_ZN3WTF9dataLogFVEPKcP13__va_list_tag +_ZN3WTF9dayInYearEdi +_ZN3WTF9dayInYearEiii +_ZN3WTF9monthNameE +_ZN3WTF9msToHoursEd +_ZN3WTFeqERKNS_7CStringEPKc +_ZN3WTFeqERKNS_7CStringES2_ +_ZN3WTFlsERNS_10TextStreamENS_7SecondsE +_ZN3WTFlsERNS_10TextStreamERKNS_3URLE +_ZN3WTFltERKNS_7CStringES2_ +_ZN3sce10CanvasUtil11bindTextureEhPNS_13CanvasTextureE +_ZN3sce10CanvasUtil11bindTextureEhPv +_ZN3sce10CanvasUtil5flushEv +_ZN3sce10CanvasUtil6finishEv +_ZN3sce11playstation4core3Ime13ImeClientCall13UpdateContextEmPtj +_ZN3sce13CanvasTexture12createRGB565Eii +_ZN3sce13CanvasTexture14createRGBA8888Eii +_ZN3sce14IndirectCanvas6createEv +_ZN3sce16CommonDialogUtil12getSelfAppIdEv +_ZN3sce16CommonDialogUtil6Client11closeModuleEv +_ZN3sce16CommonDialogUtil6Client11updateStateEv +_ZN3sce16CommonDialogUtil6Client13openCmnDialogEPvm +_ZN3sce16CommonDialogUtil6Client15launchCmnDialogEv +_ZN3sce16CommonDialogUtil6ClientC2EPKcjmii +_ZN3sce16CommonDialogUtil6ClientD0Ev +_ZN3sce16CommonDialogUtil6ClientD1Ev +_ZN3sce16CommonDialogUtil6ClientD2Ev +_ZN3sce16CommonDialogUtil6Server13setFinishDataEPvm +_ZN3sce16CommonDialogUtil6Server6setRunEPvm +_ZN3sce16CommonDialogUtil6Server9setFinishEv +_ZN3sce16CommonDialogUtil6Server9setResultEi +_ZN3sce16CommonDialogUtil6ServerC2EPKcmis +_ZN3sce16CommonDialogUtil6ServerC2EPKcmmis +_ZN3sce16CommonDialogUtil6ServerD0Ev +_ZN3sce16CommonDialogUtil6ServerD1Ev +_ZN3sce16CommonDialogUtil6ServerD2Ev +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi17getUserActivitiesEiRKNS5_28ParameterToGetUserActivitiesERNS1_6Common11TransactionINS9_12IntrusivePtrINS4_26GetUsersActivitiesResponseEEENSB_INS9_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities10initializeEPNS1_6Common10LibContextENS7_12IntrusivePtrINS7_6VectorINS7_6StringEEEEE +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities10unsetlimitEv +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities13setaccountIdsENS1_6Common12IntrusivePtrINS7_6VectorINS7_6StringEEEEE +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities17setacceptLanguageEPKc +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities17setnpServiceLabelEi +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities19unsetacceptLanguageEv +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities19unsetnpServiceLabelEv +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities8setlimitEi +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities9terminateEv +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivitiesC1ERS6_ +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivitiesC1Ev +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivitiesC2ERS6_ +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivitiesC2Ev +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivitiesD1Ev +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivitiesD2Ev +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivitiesaSERS6_ +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities12ErrorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS6_12IntrusivePtrINS4_5ErrorEEE +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities12ErrorFactory6createEPNS1_6Common10LibContextEiPKcPNS6_12IntrusivePtrINS4_5ErrorEEE +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities12ErrorFactory7destroyEPNS4_5ErrorE +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities13ErrorResponse8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities13ErrorResponse8setErrorERKNS1_6Common12IntrusivePtrINS4_5ErrorEEE +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities13ErrorResponseC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities13ErrorResponseC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities13ErrorResponseD1Ev +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities13ErrorResponseD2Ev +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities14UserActivities12setAccountIdEPKc +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities14UserActivities13getActivitiesEv +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities14UserActivities13setActivitiesERKNS1_6Common6VectorINS6_12IntrusivePtrINS4_8ActivityEEEEE +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities14UserActivities8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities14UserActivitiesC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities14UserActivitiesC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities14UserActivitiesD1Ev +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities14UserActivitiesD2Ev +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities15ActivityFactory6createEPNS1_6Common10LibContextEPKcSA_bPNS6_12IntrusivePtrINS4_8ActivityEEE +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities15ActivityFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS6_12IntrusivePtrINS4_8ActivityEEE +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities15ActivityFactory7destroyEPNS4_8ActivityE +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities20ErrorResponseFactory6createEPNS1_6Common10LibContextENS6_12IntrusivePtrINS4_5ErrorEEEPNS9_INS4_13ErrorResponseEEE +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities20ErrorResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS6_12IntrusivePtrINS4_13ErrorResponseEEE +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities20ErrorResponseFactory7destroyEPNS4_13ErrorResponseE +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities21UserActivitiesFactory6createEPNS1_6Common10LibContextEPKcRKNS6_6VectorINS6_12IntrusivePtrINS4_8ActivityEEEEEPNSC_INS4_14UserActivitiesEEE +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities21UserActivitiesFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS6_12IntrusivePtrINS4_14UserActivitiesEEE +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities21UserActivitiesFactory7destroyEPNS4_14UserActivitiesE +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities26GetUsersActivitiesResponse8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities26GetUsersActivitiesResponse8getUsersEv +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities26GetUsersActivitiesResponse8setUsersERKNS1_6Common6VectorINS6_12IntrusivePtrINS4_14UserActivitiesEEEEE +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities26GetUsersActivitiesResponseC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities26GetUsersActivitiesResponseC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities26GetUsersActivitiesResponseD1Ev +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities26GetUsersActivitiesResponseD2Ev +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities33GetUsersActivitiesResponseFactory6createEPNS1_6Common10LibContextERKNS6_6VectorINS6_12IntrusivePtrINS4_14UserActivitiesEEEEEPNSA_INS4_26GetUsersActivitiesResponseEEE +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities33GetUsersActivitiesResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS6_12IntrusivePtrINS4_26GetUsersActivitiesResponseEEE +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities33GetUsersActivitiesResponseFactory7destroyEPNS4_26GetUsersActivitiesResponseE +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities5Error10setMessageEPKc +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities5Error11unsetReasonEv +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities5Error11unsetSourceEv +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities5Error14setReferenceIdEPKc +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities5Error16unsetReferenceIdEv +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities5Error7setCodeERKi +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities5Error8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities5Error9setReasonEPKc +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities5Error9setSourceEPKc +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities5ErrorC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities5ErrorC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities5ErrorD1Ev +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities5ErrorD2Ev +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities8Activity10setMatchIdEPKc +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities8Activity12unsetMatchIdEv +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities8Activity13setActivityIdEPKc +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities8Activity7setNameEPKc +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities8Activity8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities8Activity9setHiddenERKb +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities8ActivityC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities8ActivityC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities8ActivityD1Ev +_ZN3sce2Np9CppWebApi10Activities2V114UserActivities8ActivityD2Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V110UserTicket11setPlatformERKNS3_8PlatformE +_ZN3sce2Np9CppWebApi11Matchmaking2V110UserTicket11setTicketIdEPKc +_ZN3sce2Np9CppWebApi11Matchmaking2V110UserTicket11unsetStatusEv +_ZN3sce2Np9CppWebApi11Matchmaking2V110UserTicket13unsetPlatformEv +_ZN3sce2Np9CppWebApi11Matchmaking2V110UserTicket13unsetTicketIdEv +_ZN3sce2Np9CppWebApi11Matchmaking2V110UserTicket14setRulesetNameEPKc +_ZN3sce2Np9CppWebApi11Matchmaking2V110UserTicket16unsetRulesetNameEv +_ZN3sce2Np9CppWebApi11Matchmaking2V110UserTicket8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi11Matchmaking2V110UserTicket9setStatusERKNS3_12TicketStatusE +_ZN3sce2Np9CppWebApi11Matchmaking2V110UserTicketC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11Matchmaking2V110UserTicketC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11Matchmaking2V110UserTicketD1Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V110UserTicketD2Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V112CauseFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_5CauseEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V112CauseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5CauseEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V112CauseFactory7destroyEPNS3_5CauseE +_ZN3sce2Np9CppWebApi11Matchmaking2V112ErrorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5ErrorEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V112ErrorFactory6createEPNS1_6Common10LibContextElPKcS9_PNS5_12IntrusivePtrINS3_5ErrorEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V112ErrorFactory7destroyEPNS3_5ErrorE +_ZN3sce2Np9CppWebApi11Matchmaking2V113ErrorResponse8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi11Matchmaking2V113ErrorResponse8setErrorERKNS1_6Common12IntrusivePtrINS3_5ErrorEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V113ErrorResponseC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11Matchmaking2V113ErrorResponseC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11Matchmaking2V113ErrorResponseD1Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V113ErrorResponseD2Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead10setNatTypeERKi +_ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead11setOnlineIdERK13SceNpOnlineId +_ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead11setPlatformERKNS3_8PlatformE +_ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead11setTeamNameEPKc +_ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead12setAccountIdERKm +_ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead12unsetNatTypeEv +_ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead13unsetOnlineIdEv +_ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead13unsetPlatformEv +_ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead13unsetTeamNameEv +_ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead14unsetAccountIdEv +_ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead19getPlayerAttributesEv +_ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead19setPlayerAttributesERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_9AttributeEEEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead21unsetPlayerAttributesEv +_ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForReadC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForReadC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForReadD1Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForReadD2Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V115LocationFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_8LocationEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V115LocationFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_8LocationEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V115LocationFactory7destroyEPNS3_8LocationE +_ZN3sce2Np9CppWebApi11Matchmaking2V116AttributeFactory6createEPNS1_6Common10LibContextEPKcNS3_13AttributeTypeES9_PNS5_12IntrusivePtrINS3_9AttributeEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V116AttributeFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_9AttributeEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V116AttributeFactory7destroyEPNS3_9AttributeE +_ZN3sce2Np9CppWebApi11Matchmaking2V116SubmitterFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_9SubmitterEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V116SubmitterFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_9SubmitterEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V116SubmitterFactory7destroyEPNS3_9SubmitterE +_ZN3sce2Np9CppWebApi11Matchmaking2V117UserTicketFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_10UserTicketEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V117UserTicketFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_10UserTicketEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V117UserTicketFactory7destroyEPNS3_10UserTicketE +_ZN3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead11setOnlineIdERK13SceNpOnlineId +_ZN3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead11setPlatformERKNS3_8PlatformE +_ZN3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead11setTeamNameEPKc +_ZN3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead11setTicketIdEPKc +_ZN3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead12setAccountIdERKm +_ZN3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead13unsetOnlineIdEv +_ZN3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead13unsetPlatformEv +_ZN3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead13unsetTeamNameEv +_ZN3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead13unsetTicketIdEv +_ZN3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead14unsetAccountIdEv +_ZN3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferReadC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferReadC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferReadD1Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferReadD2Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V120ErrorResponseFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_5ErrorEEEPNS8_INS3_13ErrorResponseEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V120ErrorResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_13ErrorResponseEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V120ErrorResponseFactory7destroyEPNS3_13ErrorResponseE +_ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody10getPlayersEv +_ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody10setOfferIdEPKc +_ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_18PlayerForOfferReadEEEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody10unsetCauseEv +_ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody11setLocationERKNS1_6Common12IntrusivePtrINS3_8LocationEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody11unsetStatusEv +_ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody12unsetOfferIdEv +_ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody12unsetPlayersEv +_ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody13unsetLocationEv +_ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody14setRulesetNameEPKc +_ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody16unsetRulesetNameEv +_ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody18setCreatedDateTimeERK10SceRtcTick +_ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody18setUpdatedDateTimeERK10SceRtcTick +_ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody20unsetCreatedDateTimeEv +_ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody20unsetUpdatedDateTimeEv +_ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody8setCauseERKNS1_6Common12IntrusivePtrINS3_5CauseEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody9setStatusERKNS3_11OfferStatusE +_ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBodyD1Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBodyD2Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V120PlayerForReadFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_13PlayerForReadEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V120PlayerForReadFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_13PlayerForReadEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V120PlayerForReadFactory7destroyEPNS3_13PlayerForReadE +_ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody10getPlayersEv +_ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody10setOfferIdEPKc +_ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_13PlayerForReadEEEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody11setLocationERKNS1_6Common12IntrusivePtrINS3_8LocationEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody11setTicketIdEPKc +_ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody11unsetStatusEv +_ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody12setSubmitterERKNS1_6Common12IntrusivePtrINS3_9SubmitterEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody12unsetOfferIdEv +_ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody12unsetPlayersEv +_ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody13unsetLocationEv +_ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody13unsetTicketIdEv +_ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody14setRulesetNameEPKc +_ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody14unsetSubmitterEv +_ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody16unsetRulesetNameEv +_ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody18setCreatedDateTimeERK10SceRtcTick +_ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody18setUpdatedDateTimeERK10SceRtcTick +_ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody19getTicketAttributesEv +_ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody19setTicketAttributesERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_9AttributeEEEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody20unsetCreatedDateTimeEv +_ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody20unsetUpdatedDateTimeEv +_ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody21unsetTicketAttributesEv +_ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody9setStatusERKNS3_12TicketStatusE +_ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBodyD1Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBodyD2Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate10setNatTypeERKi +_ZN3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate11setPlatformERKNS3_8PlatformE +_ZN3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate11setTeamNameEPKc +_ZN3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate12setAccountIdERKm +_ZN3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate12unsetNatTypeEv +_ZN3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate13unsetTeamNameEv +_ZN3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate19getPlayerAttributesEv +_ZN3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate19setPlayerAttributesERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_9AttributeEEEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate21unsetPlayerAttributesEv +_ZN3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreateC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreateC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreateD1Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreateD2Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBody10getPlayersEv +_ZN3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBody10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_21PlayerForTicketCreateEEEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBody11setLocationERKNS1_6Common12IntrusivePtrINS3_8LocationEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBody13unsetLocationEv +_ZN3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBody14setRulesetNameEPKc +_ZN3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBody19getTicketAttributesEv +_ZN3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBody19setTicketAttributesERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_9AttributeEEEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBody21unsetTicketAttributesEv +_ZN3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBodyD1Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBodyD2Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody10getPlayersEv +_ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_21PlayerForTicketCreateEEEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody11setLocationERKNS1_6Common12IntrusivePtrINS3_8LocationEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody11setTicketIdEPKc +_ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody11unsetStatusEv +_ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody12setSubmitterERKNS1_6Common12IntrusivePtrINS3_9SubmitterEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody12unsetPlayersEv +_ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody13unsetLocationEv +_ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody13unsetTicketIdEv +_ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody14setRulesetNameEPKc +_ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody14unsetSubmitterEv +_ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody16unsetRulesetNameEv +_ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody18setCreatedDateTimeERK10SceRtcTick +_ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody18setUpdatedDateTimeERK10SceRtcTick +_ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody19getTicketAttributesEv +_ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody19setTicketAttributesERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_9AttributeEEEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody20unsetCreatedDateTimeEv +_ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody20unsetUpdatedDateTimeEv +_ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody21unsetTicketAttributesEv +_ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody9setStatusERKNS3_12TicketStatusE +_ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBodyD1Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBodyD2Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V125PlayerForOfferReadFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_18PlayerForOfferReadEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V125PlayerForOfferReadFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_18PlayerForOfferReadEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V125PlayerForOfferReadFactory7destroyEPNS3_18PlayerForOfferReadE +_ZN3sce2Np9CppWebApi11Matchmaking2V127GetOfferResponseBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_20GetOfferResponseBodyEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V127GetOfferResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_20GetOfferResponseBodyEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V127GetOfferResponseBodyFactory7destroyEPNS3_20GetOfferResponseBodyE +_ZN3sce2Np9CppWebApi11Matchmaking2V127ListUserTicketsResponseBody10getTicketsEv +_ZN3sce2Np9CppWebApi11Matchmaking2V127ListUserTicketsResponseBody10setTicketsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_10UserTicketEEEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V127ListUserTicketsResponseBody12unsetTicketsEv +_ZN3sce2Np9CppWebApi11Matchmaking2V127ListUserTicketsResponseBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi11Matchmaking2V127ListUserTicketsResponseBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11Matchmaking2V127ListUserTicketsResponseBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11Matchmaking2V127ListUserTicketsResponseBodyD1Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V127ListUserTicketsResponseBodyD2Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V128GetTicketResponseBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_21GetTicketResponseBodyEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V128GetTicketResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_21GetTicketResponseBodyEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V128GetTicketResponseBodyFactory7destroyEPNS3_21GetTicketResponseBodyE +_ZN3sce2Np9CppWebApi11Matchmaking2V128PlayerForTicketCreateFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_21PlayerForTicketCreateEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V128PlayerForTicketCreateFactory6createEPNS1_6Common10LibContextERKmNS3_8PlatformEPNS5_12IntrusivePtrINS3_21PlayerForTicketCreateEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V128PlayerForTicketCreateFactory7destroyEPNS3_21PlayerForTicketCreateE +_ZN3sce2Np9CppWebApi11Matchmaking2V130SubmitTicketRequestBodyFactory6createEPNS1_6Common10LibContextEPKcRKNS5_6VectorINS5_12IntrusivePtrINS3_21PlayerForTicketCreateEEEEEPNSB_INS3_23SubmitTicketRequestBodyEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V130SubmitTicketRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_23SubmitTicketRequestBodyEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V130SubmitTicketRequestBodyFactory7destroyEPNS3_23SubmitTicketRequestBodyE +_ZN3sce2Np9CppWebApi11Matchmaking2V131SubmitTicketResponseBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_24SubmitTicketResponseBodyEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V131SubmitTicketResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_24SubmitTicketResponseBodyEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V131SubmitTicketResponseBodyFactory7destroyEPNS3_24SubmitTicketResponseBodyE +_ZN3sce2Np9CppWebApi11Matchmaking2V134ListUserTicketsResponseBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_27ListUserTicketsResponseBodyEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V134ListUserTicketsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_27ListUserTicketsResponseBodyEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V134ListUserTicketsResponseBodyFactory7destroyEPNS3_27ListUserTicketsResponseBodyE +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api12cancelTicketEiRKNS4_23ParameterToCancelTicketERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api12submitTicketEiRKNS4_23ParameterToSubmitTicketERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_24SubmitTicketResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api15listUserTicketsEiRKNS4_26ParameterToListUserTicketsERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_27ListUserTicketsResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOffer10initializeEPNS1_6Common10LibContextEPKc +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOffer10setofferIdEPKc +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOffer28setxPsnAcceptPlatformNamePs5ENS5_25XPsnAcceptPlatformNamePs5E +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOffer30unsetxPsnAcceptPlatformNamePs5Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOffer7setviewEPKc +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOffer9terminateEv +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOffer9unsetviewEv +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOfferC1ERS5_ +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOfferC1Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOfferC2ERS5_ +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOfferC2Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOfferD1Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOfferD2Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOfferaSERS5_ +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicket10initializeEPNS1_6Common10LibContextEPKc +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicket11setticketIdEPKc +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicket28setxPsnAcceptPlatformNamePs5ENS5_25XPsnAcceptPlatformNamePs5E +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicket30unsetxPsnAcceptPlatformNamePs5Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicket7setviewEPKc +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicket9terminateEv +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicket9unsetviewEv +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicketC1ERS5_ +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicketC1Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicketC2ERS5_ +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicketC2Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicketD1Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicketD2Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicketaSERS5_ +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToCancelTicket10initializeEPNS1_6Common10LibContextEPKc +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToCancelTicket11setticketIdEPKc +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToCancelTicket9terminateEv +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToCancelTicketC1ERS5_ +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToCancelTicketC1Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToCancelTicketC2ERS5_ +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToCancelTicketC2Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToCancelTicketD1Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToCancelTicketD2Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToCancelTicketaSERS5_ +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicket10initializeEPNS1_6Common10LibContextENS6_12IntrusivePtrINS3_23SubmitTicketRequestBodyEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicket26setsubmitTicketRequestBodyENS1_6Common12IntrusivePtrINS3_23SubmitTicketRequestBodyEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicket28setxPsnAcceptPlatformNamePs5ENS5_25XPsnAcceptPlatformNamePs5E +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicket30unsetxPsnAcceptPlatformNamePs5Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicket9terminateEv +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicketC1ERS5_ +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicketC1Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicketC2ERS5_ +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicketC2Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicketD1Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicketD2Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicketaSERS5_ +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets10initializeEPNS1_6Common10LibContextEPKc +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets12setaccountIdEPKc +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets16setrulesetFilterEPKc +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets17setplatformFilterEPKc +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets18unsetrulesetFilterEv +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets19unsetplatformFilterEv +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets28setxPsnAcceptPlatformNamePs5ENS5_25XPsnAcceptPlatformNamePs5E +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets30unsetxPsnAcceptPlatformNamePs5Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets9terminateEv +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTicketsC1ERS5_ +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTicketsC1Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTicketsC2ERS5_ +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTicketsC2Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTicketsD1Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTicketsD2Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTicketsaSERS5_ +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api8getOfferEiRKNS4_19ParameterToGetOfferERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_20GetOfferResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V13Api9getTicketEiRKNS4_20ParameterToGetTicketERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_21GetTicketResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi11Matchmaking2V15Cause11unsetSourceEv +_ZN3sce2Np9CppWebApi11Matchmaking2V15Cause14setReferenceIdEPKc +_ZN3sce2Np9CppWebApi11Matchmaking2V15Cause16unsetReferenceIdEv +_ZN3sce2Np9CppWebApi11Matchmaking2V15Cause7setCodeERKl +_ZN3sce2Np9CppWebApi11Matchmaking2V15Cause8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi11Matchmaking2V15Cause9setSourceEPKc +_ZN3sce2Np9CppWebApi11Matchmaking2V15Cause9unsetCodeEv +_ZN3sce2Np9CppWebApi11Matchmaking2V15CauseC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11Matchmaking2V15CauseC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11Matchmaking2V15CauseD1Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V15CauseD2Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V15Error10setMessageEPKc +_ZN3sce2Np9CppWebApi11Matchmaking2V15Error14setReferenceIdEPKc +_ZN3sce2Np9CppWebApi11Matchmaking2V15Error7setCodeERKl +_ZN3sce2Np9CppWebApi11Matchmaking2V15Error8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi11Matchmaking2V15ErrorC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11Matchmaking2V15ErrorC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11Matchmaking2V15ErrorD1Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V15ErrorD2Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V18Location16setGameSessionIdEPKc +_ZN3sce2Np9CppWebApi11Matchmaking2V18Location18unsetGameSessionIdEv +_ZN3sce2Np9CppWebApi11Matchmaking2V18Location8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi11Matchmaking2V18LocationC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11Matchmaking2V18LocationC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11Matchmaking2V18LocationD1Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V18LocationD2Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V19Attribute7setNameEPKc +_ZN3sce2Np9CppWebApi11Matchmaking2V19Attribute7setTypeERKNS3_13AttributeTypeE +_ZN3sce2Np9CppWebApi11Matchmaking2V19Attribute8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi11Matchmaking2V19Attribute8setValueEPKc +_ZN3sce2Np9CppWebApi11Matchmaking2V19AttributeC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11Matchmaking2V19AttributeC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11Matchmaking2V19AttributeD1Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V19AttributeD2Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V19Submitter11setPlatformERKNS3_8PlatformE +_ZN3sce2Np9CppWebApi11Matchmaking2V19Submitter12setAccountIdERKm +_ZN3sce2Np9CppWebApi11Matchmaking2V19Submitter13unsetPlatformEv +_ZN3sce2Np9CppWebApi11Matchmaking2V19Submitter14unsetAccountIdEv +_ZN3sce2Np9CppWebApi11Matchmaking2V19Submitter8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi11Matchmaking2V19SubmitterC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11Matchmaking2V19SubmitterC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11Matchmaking2V19SubmitterD1Ev +_ZN3sce2Np9CppWebApi11Matchmaking2V19SubmitterD2Ev +_ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi10getFriendsEiRKNS4_21ParameterToGetFriendsERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_18GetFriendsResponseEEENSA_INS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends10initializeEPNS1_6Common10LibContextEPKc +_ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends10unsetlimitEv +_ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends10unsetorderEv +_ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends11unsetfilterEv +_ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends11unsetoffsetEv +_ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends16setaccountIdOrMeEPKc +_ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends8setlimitEi +_ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends8setorderENS5_5OrderE +_ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends9setfilterENS5_6FilterE +_ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends9setoffsetEi +_ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends9terminateEv +_ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriendsC1ERS5_ +_ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriendsC1Ev +_ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriendsC2ERS5_ +_ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriendsC2Ev +_ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriendsD1Ev +_ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriendsD2Ev +_ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriendsaSERS5_ +_ZN3sce2Np9CppWebApi11UserProfile2V111PresenceApi17getBasicPresencesEiRKNS4_28ParameterToGetBasicPresencesERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_25GetBasicPresencesResponseEEENSA_INS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi11UserProfile2V111PresenceApi28ParameterToGetBasicPresences10initializeEPNS1_6Common10LibContextEPKc +_ZN3sce2Np9CppWebApi11UserProfile2V111PresenceApi28ParameterToGetBasicPresences13setaccountIdsEPKc +_ZN3sce2Np9CppWebApi11UserProfile2V111PresenceApi28ParameterToGetBasicPresences9terminateEv +_ZN3sce2Np9CppWebApi11UserProfile2V111PresenceApi28ParameterToGetBasicPresencesC1ERS5_ +_ZN3sce2Np9CppWebApi11UserProfile2V111PresenceApi28ParameterToGetBasicPresencesC1Ev +_ZN3sce2Np9CppWebApi11UserProfile2V111PresenceApi28ParameterToGetBasicPresencesC2ERS5_ +_ZN3sce2Np9CppWebApi11UserProfile2V111PresenceApi28ParameterToGetBasicPresencesC2Ev +_ZN3sce2Np9CppWebApi11UserProfile2V111PresenceApi28ParameterToGetBasicPresencesD1Ev +_ZN3sce2Np9CppWebApi11UserProfile2V111PresenceApi28ParameterToGetBasicPresencesD2Ev +_ZN3sce2Np9CppWebApi11UserProfile2V111PresenceApi28ParameterToGetBasicPresencesaSERS5_ +_ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile10getAvatarsEv +_ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile10setAboutMeEPKc +_ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile10setAvatarsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_6AvatarEEEEE +_ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile11setOnlineIdERK13SceNpOnlineId +_ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile11setRelationERKNS3_8RelationE +_ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile12getLanguagesEv +_ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile12setAccountIdERKm +_ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile12setLanguagesERKNS1_6Common6VectorINS5_6StringEEE +_ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile12unsetAboutMeEv +_ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile12unsetAvatarsEv +_ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile13unsetOnlineIdEv +_ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile13unsetRelationEv +_ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile14unsetAccountIdEv +_ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile14unsetLanguagesEv +_ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile17setPersonalDetailERKNS1_6Common12IntrusivePtrINS3_14PersonalDetailEEE +_ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile19unsetPersonalDetailEv +_ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile23setIsOfficiallyVerifiedERKb +_ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile25unsetIsOfficiallyVerifiedEv +_ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfileC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfileC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfileD1Ev +_ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfileD2Ev +_ZN3sce2Np9CppWebApi11UserProfile2V112ErrorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5ErrorEEE +_ZN3sce2Np9CppWebApi11UserProfile2V112ErrorFactory6createEPNS1_6Common10LibContextElPKcS9_PNS5_12IntrusivePtrINS3_5ErrorEEE +_ZN3sce2Np9CppWebApi11UserProfile2V112ErrorFactory7destroyEPNS3_5ErrorE +_ZN3sce2Np9CppWebApi11UserProfile2V113AvatarFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_6AvatarEEE +_ZN3sce2Np9CppWebApi11UserProfile2V113AvatarFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_6AvatarEEE +_ZN3sce2Np9CppWebApi11UserProfile2V113AvatarFactory7destroyEPNS3_6AvatarE +_ZN3sce2Np9CppWebApi11UserProfile2V113BasicPresence12setAccountIdERKm +_ZN3sce2Np9CppWebApi11UserProfile2V113BasicPresence12setInContextERKb +_ZN3sce2Np9CppWebApi11UserProfile2V113BasicPresence14unsetAccountIdEv +_ZN3sce2Np9CppWebApi11UserProfile2V113BasicPresence14unsetInContextEv +_ZN3sce2Np9CppWebApi11UserProfile2V113BasicPresence15setOnlineStatusERKNS3_12OnlineStatusE +_ZN3sce2Np9CppWebApi11UserProfile2V113BasicPresence17unsetOnlineStatusEv +_ZN3sce2Np9CppWebApi11UserProfile2V113BasicPresence8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi11UserProfile2V113BasicPresenceC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11UserProfile2V113BasicPresenceC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11UserProfile2V113BasicPresenceD1Ev +_ZN3sce2Np9CppWebApi11UserProfile2V113BasicPresenceD2Ev +_ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetail11setLastNameEPKc +_ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetail12setFirstNameEPKc +_ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetail13setMiddleNameEPKc +_ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetail13unsetLastNameEv +_ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetail14setDisplayNameEPKc +_ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetail14unsetFirstNameEv +_ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetail15unsetMiddleNameEv +_ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetail16unsetDisplayNameEv +_ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetail18getProfilePicturesEv +_ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetail18setProfilePicturesERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_6AvatarEEEEE +_ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetail20unsetProfilePicturesEv +_ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetail8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetailC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetailC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetailD1Ev +_ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetailD2Ev +_ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi16getPublicProfileEiRKNS4_27ParameterToGetPublicProfileERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_24GetPublicProfileResponseEEENSA_INS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi17getPublicProfilesEiRKNS4_28ParameterToGetPublicProfilesERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_25GetPublicProfilesResponseEEENSA_INS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfile10initializeEPNS1_6Common10LibContextEPKc +_ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfile12setaccountIdEPKc +_ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfile14setlanguageSetEPKc +_ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfile16setincludeFieldsEPKc +_ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfile16unsetlanguageSetEv +_ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfile18unsetincludeFieldsEv +_ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfile9terminateEv +_ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfileC1ERS5_ +_ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfileC1Ev +_ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfileC2ERS5_ +_ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfileC2Ev +_ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfileD1Ev +_ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfileD2Ev +_ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfileaSERS5_ +_ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfiles10initializeEPNS1_6Common10LibContextEPKc +_ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfiles13setaccountIdsEPKc +_ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfiles14setlanguageSetEPKc +_ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfiles16setincludeFieldsEPKc +_ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfiles16unsetlanguageSetEv +_ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfiles18unsetincludeFieldsEv +_ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfiles9terminateEv +_ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfilesC1ERS5_ +_ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfilesC1Ev +_ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfilesC2ERS5_ +_ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfilesC2Ev +_ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfilesD1Ev +_ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfilesD2Ev +_ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfilesaSERS5_ +_ZN3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse10getFriendsEv +_ZN3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse10setFriendsERKNS1_6Common6VectorImEE +_ZN3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse13setNextOffsetERKi +_ZN3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse15unsetNextOffsetEv +_ZN3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse17setPreviousOffsetERKi +_ZN3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse17setTotalItemCountERKi +_ZN3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse19unsetPreviousOffsetEv +_ZN3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse19unsetTotalItemCountEv +_ZN3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponseC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponseC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponseD1Ev +_ZN3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponseD2Ev +_ZN3sce2Np9CppWebApi11UserProfile2V119BasicProfileFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_12BasicProfileEEE +_ZN3sce2Np9CppWebApi11UserProfile2V119BasicProfileFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_12BasicProfileEEE +_ZN3sce2Np9CppWebApi11UserProfile2V119BasicProfileFactory7destroyEPNS3_12BasicProfileE +_ZN3sce2Np9CppWebApi11UserProfile2V120BasicPresenceFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_13BasicPresenceEEE +_ZN3sce2Np9CppWebApi11UserProfile2V120BasicPresenceFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_13BasicPresenceEEE +_ZN3sce2Np9CppWebApi11UserProfile2V120BasicPresenceFactory7destroyEPNS3_13BasicPresenceE +_ZN3sce2Np9CppWebApi11UserProfile2V121PersonalDetailFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_14PersonalDetailEEE +_ZN3sce2Np9CppWebApi11UserProfile2V121PersonalDetailFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_14PersonalDetailEEE +_ZN3sce2Np9CppWebApi11UserProfile2V121PersonalDetailFactory7destroyEPNS3_14PersonalDetailE +_ZN3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponse13setNextOffsetERKi +_ZN3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponse15unsetNextOffsetEv +_ZN3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponse17setPreviousOffsetERKi +_ZN3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponse17setTotalItemCountERKi +_ZN3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponse19unsetPreviousOffsetEv +_ZN3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponse8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponse9getBlocksEv +_ZN3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponse9setBlocksERKNS1_6Common6VectorImEE +_ZN3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponseC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponseC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponseD1Ev +_ZN3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponseD2Ev +_ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse10getAvatarsEv +_ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse10setAboutMeEPKc +_ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse10setAvatarsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_6AvatarEEEEE +_ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse11setOnlineIdERK13SceNpOnlineId +_ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse11setRelationERKNS3_8RelationE +_ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse12getLanguagesEv +_ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse12setAccountIdERKm +_ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse12setLanguagesERKNS1_6Common6VectorINS5_6StringEEE +_ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse13unsetRelationEv +_ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse14unsetAccountIdEv +_ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse17setPersonalDetailERKNS1_6Common12IntrusivePtrINS3_14PersonalDetailEEE +_ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse19unsetPersonalDetailEv +_ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse23setIsOfficiallyVerifiedERKb +_ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponseC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponseC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponseD1Ev +_ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponseD2Ev +_ZN3sce2Np9CppWebApi11UserProfile2V125GetBasicPresencesResponse17getBasicPresencesEv +_ZN3sce2Np9CppWebApi11UserProfile2V125GetBasicPresencesResponse17setBasicPresencesERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_13BasicPresenceEEEEE +_ZN3sce2Np9CppWebApi11UserProfile2V125GetBasicPresencesResponse8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi11UserProfile2V125GetBasicPresencesResponseC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11UserProfile2V125GetBasicPresencesResponseC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11UserProfile2V125GetBasicPresencesResponseD1Ev +_ZN3sce2Np9CppWebApi11UserProfile2V125GetBasicPresencesResponseD2Ev +_ZN3sce2Np9CppWebApi11UserProfile2V125GetFriendsResponseFactory6createEPNS1_6Common10LibContextERKNS5_6VectorImEEPNS5_12IntrusivePtrINS3_18GetFriendsResponseEEE +_ZN3sce2Np9CppWebApi11UserProfile2V125GetFriendsResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_18GetFriendsResponseEEE +_ZN3sce2Np9CppWebApi11UserProfile2V125GetFriendsResponseFactory7destroyEPNS3_18GetFriendsResponseE +_ZN3sce2Np9CppWebApi11UserProfile2V125GetPublicProfilesResponse11getProfilesEv +_ZN3sce2Np9CppWebApi11UserProfile2V125GetPublicProfilesResponse11setProfilesERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_12BasicProfileEEEEE +_ZN3sce2Np9CppWebApi11UserProfile2V125GetPublicProfilesResponse8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi11UserProfile2V125GetPublicProfilesResponseC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11UserProfile2V125GetPublicProfilesResponseC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11UserProfile2V125GetPublicProfilesResponseD1Ev +_ZN3sce2Np9CppWebApi11UserProfile2V125GetPublicProfilesResponseD2Ev +_ZN3sce2Np9CppWebApi11UserProfile2V131GetBlockingUsersResponseFactory6createEPNS1_6Common10LibContextERKNS5_6VectorImEEiPNS5_12IntrusivePtrINS3_24GetBlockingUsersResponseEEE +_ZN3sce2Np9CppWebApi11UserProfile2V131GetBlockingUsersResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_24GetBlockingUsersResponseEEE +_ZN3sce2Np9CppWebApi11UserProfile2V131GetBlockingUsersResponseFactory7destroyEPNS3_24GetBlockingUsersResponseE +_ZN3sce2Np9CppWebApi11UserProfile2V131GetPublicProfileResponseFactory6createEPNS1_6Common10LibContextERK13SceNpOnlineIdPKcRKNS5_6VectorINS5_12IntrusivePtrINS3_6AvatarEEEEERKNSD_INS5_6StringEEEbPNSE_INS3_24GetPublicProfileResponseEEE +_ZN3sce2Np9CppWebApi11UserProfile2V131GetPublicProfileResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_24GetPublicProfileResponseEEE +_ZN3sce2Np9CppWebApi11UserProfile2V131GetPublicProfileResponseFactory7destroyEPNS3_24GetPublicProfileResponseE +_ZN3sce2Np9CppWebApi11UserProfile2V132GetBasicPresencesResponseFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_13BasicPresenceEEEEEPNS9_INS3_25GetBasicPresencesResponseEEE +_ZN3sce2Np9CppWebApi11UserProfile2V132GetBasicPresencesResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_25GetBasicPresencesResponseEEE +_ZN3sce2Np9CppWebApi11UserProfile2V132GetBasicPresencesResponseFactory7destroyEPNS3_25GetBasicPresencesResponseE +_ZN3sce2Np9CppWebApi11UserProfile2V132GetPublicProfilesResponseFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_12BasicProfileEEEEEPNS9_INS3_25GetPublicProfilesResponseEEE +_ZN3sce2Np9CppWebApi11UserProfile2V132GetPublicProfilesResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_25GetPublicProfilesResponseEEE +_ZN3sce2Np9CppWebApi11UserProfile2V132GetPublicProfilesResponseFactory7destroyEPNS3_25GetPublicProfilesResponseE +_ZN3sce2Np9CppWebApi11UserProfile2V15Error10setMessageEPKc +_ZN3sce2Np9CppWebApi11UserProfile2V15Error14setReferenceIdEPKc +_ZN3sce2Np9CppWebApi11UserProfile2V15Error7setCodeERKl +_ZN3sce2Np9CppWebApi11UserProfile2V15Error8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi11UserProfile2V15ErrorC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11UserProfile2V15ErrorC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11UserProfile2V15ErrorD1Ev +_ZN3sce2Np9CppWebApi11UserProfile2V15ErrorD2Ev +_ZN3sce2Np9CppWebApi11UserProfile2V16Avatar6setUrlEPKc +_ZN3sce2Np9CppWebApi11UserProfile2V16Avatar7setSizeERKNS3_10AvatarSizeE +_ZN3sce2Np9CppWebApi11UserProfile2V16Avatar8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi11UserProfile2V16Avatar8unsetUrlEv +_ZN3sce2Np9CppWebApi11UserProfile2V16Avatar9unsetSizeEv +_ZN3sce2Np9CppWebApi11UserProfile2V16AvatarC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11UserProfile2V16AvatarC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11UserProfile2V16AvatarD1Ev +_ZN3sce2Np9CppWebApi11UserProfile2V16AvatarD2Ev +_ZN3sce2Np9CppWebApi11UserProfile2V19BlocksApi16getBlockingUsersEiRKNS4_27ParameterToGetBlockingUsersERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_24GetBlockingUsersResponseEEENSA_INS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsers10initializeEPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsers10unsetlimitEv +_ZN3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsers11unsetoffsetEv +_ZN3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsers8setlimitEi +_ZN3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsers9setoffsetEi +_ZN3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsers9terminateEv +_ZN3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsersC1ERS5_ +_ZN3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsersC1Ev +_ZN3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsersC2ERS5_ +_ZN3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsersC2Ev +_ZN3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsersD1Ev +_ZN3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsersD2Ev +_ZN3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsersaSERS5_ +_ZN3sce2Np9CppWebApi12Leaderboards2V111UserFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_4UserEEE +_ZN3sce2Np9CppWebApi12Leaderboards2V111UserFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_4UserEEE +_ZN3sce2Np9CppWebApi12Leaderboards2V111UserFactory7destroyEPNS3_4UserE +_ZN3sce2Np9CppWebApi12Leaderboards2V112EntryFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5EntryEEE +_ZN3sce2Np9CppWebApi12Leaderboards2V112EntryFactory6createEPNS1_6Common10LibContextERKmiiRK13SceNpOnlineIdiliPNS5_12IntrusivePtrINS3_5EntryEEE +_ZN3sce2Np9CppWebApi12Leaderboards2V112EntryFactory7destroyEPNS3_5EntryE +_ZN3sce2Np9CppWebApi12Leaderboards2V112ErrorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5ErrorEEE +_ZN3sce2Np9CppWebApi12Leaderboards2V112ErrorFactory6createEPNS1_6Common10LibContextEiPKcPNS5_12IntrusivePtrINS3_5ErrorEEE +_ZN3sce2Np9CppWebApi12Leaderboards2V112ErrorFactory7destroyEPNS3_5ErrorE +_ZN3sce2Np9CppWebApi12Leaderboards2V113ErrorResponse8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi12Leaderboards2V113ErrorResponse8setErrorERKNS1_6Common12IntrusivePtrINS3_5ErrorEEE +_ZN3sce2Np9CppWebApi12Leaderboards2V113ErrorResponseC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi12Leaderboards2V113ErrorResponseC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi12Leaderboards2V113ErrorResponseD1Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V113ErrorResponseD2Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V120ErrorResponseFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_5ErrorEEEPNS8_INS3_13ErrorResponseEEE +_ZN3sce2Np9CppWebApi12Leaderboards2V120ErrorResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_13ErrorResponseEEE +_ZN3sce2Np9CppWebApi12Leaderboards2V120ErrorResponseFactory7destroyEPNS3_13ErrorResponseE +_ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody10unsetGroupEv +_ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody10unsetLimitEv +_ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody10unsetUsersEv +_ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody11unsetOffsetEv +_ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody17setNpServiceLabelERKj +_ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody18setStartSerialRankERKi +_ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody19unsetNpServiceLabelEv +_ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody20setCenterToEdgeLimitERKi +_ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody20unsetStartSerialRankEv +_ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody21setUserCenteredAroundERKNS1_6Common12IntrusivePtrINS3_4UserEEE +_ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody22unsetCenterToEdgeLimitEv +_ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody23unsetUserCenteredAroundEv +_ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody24setNeedsRecordedDateTimeERKb +_ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody26unsetNeedsRecordedDateTimeEv +_ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody8getUsersEv +_ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody8setGroupERKNS3_5GroupE +_ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody8setLimitERKi +_ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody8setUsersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_4UserEEEEE +_ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody9setOffsetERKi +_ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBodyD1Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBodyD2Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V122GetRankingResponseBody10getEntriesEv +_ZN3sce2Np9CppWebApi12Leaderboards2V122GetRankingResponseBody10setEntriesERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_5EntryEEEEE +_ZN3sce2Np9CppWebApi12Leaderboards2V122GetRankingResponseBody12unsetEntriesEv +_ZN3sce2Np9CppWebApi12Leaderboards2V122GetRankingResponseBody18setTotalEntryCountERKi +_ZN3sce2Np9CppWebApi12Leaderboards2V122GetRankingResponseBody22setLastUpdatedDateTimeERK10SceRtcTick +_ZN3sce2Np9CppWebApi12Leaderboards2V122GetRankingResponseBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi12Leaderboards2V122GetRankingResponseBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi12Leaderboards2V122GetRankingResponseBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi12Leaderboards2V122GetRankingResponseBodyD1Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V122GetRankingResponseBodyD2Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody10setCommentEPKc +_ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody11setObjectIdEPKc +_ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody12setSmallDataEPKvm +_ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody12unsetCommentEv +_ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody13unsetObjectIdEv +_ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody14unsetSmallDataEv +_ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody15setNeedsTmpRankERKb +_ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody15setWaitsForDataERKb +_ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody17setNpServiceLabelERKj +_ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody17unsetNeedsTmpRankEv +_ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody17unsetWaitsForDataEv +_ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody19setComparedDateTimeERK10SceRtcTick +_ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody19unsetNpServiceLabelEv +_ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody21unsetComparedDateTimeEv +_ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody7setPcIdERKi +_ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody8setScoreERKl +_ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody9unsetPcIdEv +_ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBodyD1Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBodyD2Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V123RecordScoreResponseBody10setTmpRankERKi +_ZN3sce2Np9CppWebApi12Leaderboards2V123RecordScoreResponseBody16setTmpSerialRankERKi +_ZN3sce2Np9CppWebApi12Leaderboards2V123RecordScoreResponseBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi12Leaderboards2V123RecordScoreResponseBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi12Leaderboards2V123RecordScoreResponseBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi12Leaderboards2V123RecordScoreResponseBodyD1Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V123RecordScoreResponseBodyD2Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V127RecordLargeDataResponseBody11setObjectIdEPKc +_ZN3sce2Np9CppWebApi12Leaderboards2V127RecordLargeDataResponseBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi12Leaderboards2V127RecordLargeDataResponseBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi12Leaderboards2V127RecordLargeDataResponseBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi12Leaderboards2V127RecordLargeDataResponseBodyD1Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V127RecordLargeDataResponseBodyD2Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V128GetRankingRequestBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_21GetRankingRequestBodyEEE +_ZN3sce2Np9CppWebApi12Leaderboards2V128GetRankingRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_21GetRankingRequestBodyEEE +_ZN3sce2Np9CppWebApi12Leaderboards2V128GetRankingRequestBodyFactory7destroyEPNS3_21GetRankingRequestBodyE +_ZN3sce2Np9CppWebApi12Leaderboards2V129GetRankingResponseBodyFactory6createEPNS1_6Common10LibContextERK10SceRtcTickiPNS5_12IntrusivePtrINS3_22GetRankingResponseBodyEEE +_ZN3sce2Np9CppWebApi12Leaderboards2V129GetRankingResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_22GetRankingResponseBodyEEE +_ZN3sce2Np9CppWebApi12Leaderboards2V129GetRankingResponseBodyFactory7destroyEPNS3_22GetRankingResponseBodyE +_ZN3sce2Np9CppWebApi12Leaderboards2V129RecordScoreRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_22RecordScoreRequestBodyEEE +_ZN3sce2Np9CppWebApi12Leaderboards2V129RecordScoreRequestBodyFactory6createEPNS1_6Common10LibContextElPNS5_12IntrusivePtrINS3_22RecordScoreRequestBodyEEE +_ZN3sce2Np9CppWebApi12Leaderboards2V129RecordScoreRequestBodyFactory7destroyEPNS3_22RecordScoreRequestBodyE +_ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody11setSortModeERKNS3_8SortModeE +_ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody13setEntryLimitERKi +_ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody13setUpdateModeERKNS3_10UpdateModeE +_ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody13unsetSortModeEv +_ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody15unsetEntryLimitEv +_ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody15unsetUpdateModeEv +_ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody16setMaxScoreLimitERKl +_ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody16setMinScoreLimitERKl +_ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody18unsetMaxScoreLimitEv +_ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody18unsetMinScoreLimitEv +_ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody20setLargeDataNumLimitERKi +_ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody21setLargeDataSizeLimitERKl +_ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody22unsetLargeDataNumLimitEv +_ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody23unsetLargeDataSizeLimitEv +_ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBodyD1Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBodyD2Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V130RecordScoreResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_23RecordScoreResponseBodyEEE +_ZN3sce2Np9CppWebApi12Leaderboards2V130RecordScoreResponseBodyFactory6createEPNS1_6Common10LibContextEiiPNS5_12IntrusivePtrINS3_23RecordScoreResponseBodyEEE +_ZN3sce2Np9CppWebApi12Leaderboards2V130RecordScoreResponseBodyFactory7destroyEPNS3_23RecordScoreResponseBodyE +_ZN3sce2Np9CppWebApi12Leaderboards2V134RecordLargeDataResponseBodyFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_27RecordLargeDataResponseBodyEEE +_ZN3sce2Np9CppWebApi12Leaderboards2V134RecordLargeDataResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_27RecordLargeDataResponseBodyEEE +_ZN3sce2Np9CppWebApi12Leaderboards2V134RecordLargeDataResponseBodyFactory7destroyEPNS3_27RecordLargeDataResponseBodyE +_ZN3sce2Np9CppWebApi12Leaderboards2V137GetBoardDefinitionResponseBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_30GetBoardDefinitionResponseBodyEEE +_ZN3sce2Np9CppWebApi12Leaderboards2V137GetBoardDefinitionResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_30GetBoardDefinitionResponseBodyEEE +_ZN3sce2Np9CppWebApi12Leaderboards2V137GetBoardDefinitionResponseBodyFactory7destroyEPNS3_30GetBoardDefinitionResponseBodyE +_ZN3sce2Np9CppWebApi12Leaderboards2V14User12setAccountIdERKm +_ZN3sce2Np9CppWebApi12Leaderboards2V14User14unsetAccountIdEv +_ZN3sce2Np9CppWebApi12Leaderboards2V14User7setPcIdERKi +_ZN3sce2Np9CppWebApi12Leaderboards2V14User8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi12Leaderboards2V14User9unsetPcIdEv +_ZN3sce2Np9CppWebApi12Leaderboards2V14UserC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi12Leaderboards2V14UserC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi12Leaderboards2V14UserD1Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V14UserD2Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V15Entry10setCommentEPKc +_ZN3sce2Np9CppWebApi12Leaderboards2V15Entry11setObjectIdEPKc +_ZN3sce2Np9CppWebApi12Leaderboards2V15Entry11setOnlineIdERK13SceNpOnlineId +_ZN3sce2Np9CppWebApi12Leaderboards2V15Entry12setAccountIdERKm +_ZN3sce2Np9CppWebApi12Leaderboards2V15Entry12setSmallDataEPKvm +_ZN3sce2Np9CppWebApi12Leaderboards2V15Entry12unsetCommentEv +_ZN3sce2Np9CppWebApi12Leaderboards2V15Entry13setSerialRankERKi +_ZN3sce2Np9CppWebApi12Leaderboards2V15Entry13unsetObjectIdEv +_ZN3sce2Np9CppWebApi12Leaderboards2V15Entry14setHighestRankERKi +_ZN3sce2Np9CppWebApi12Leaderboards2V15Entry14unsetSmallDataEv +_ZN3sce2Np9CppWebApi12Leaderboards2V15Entry19setRecordedDateTimeERK10SceRtcTick +_ZN3sce2Np9CppWebApi12Leaderboards2V15Entry20setHighestSerialRankERKi +_ZN3sce2Np9CppWebApi12Leaderboards2V15Entry21unsetRecordedDateTimeEv +_ZN3sce2Np9CppWebApi12Leaderboards2V15Entry7setPcIdERKi +_ZN3sce2Np9CppWebApi12Leaderboards2V15Entry7setRankERKi +_ZN3sce2Np9CppWebApi12Leaderboards2V15Entry8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi12Leaderboards2V15Entry8setScoreERKl +_ZN3sce2Np9CppWebApi12Leaderboards2V15Entry9unsetPcIdEv +_ZN3sce2Np9CppWebApi12Leaderboards2V15EntryC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi12Leaderboards2V15EntryC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi12Leaderboards2V15EntryD1Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V15EntryD2Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V15Error10setMessageEPKc +_ZN3sce2Np9CppWebApi12Leaderboards2V15Error14setReferenceIdEPKc +_ZN3sce2Np9CppWebApi12Leaderboards2V15Error16unsetReferenceIdEv +_ZN3sce2Np9CppWebApi12Leaderboards2V15Error7setCodeERKi +_ZN3sce2Np9CppWebApi12Leaderboards2V15Error8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi12Leaderboards2V15ErrorC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi12Leaderboards2V15ErrorC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi12Leaderboards2V15ErrorD1Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V15ErrorD2Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi10getRankingEiRKNS4_21ParameterToGetRankingERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_22GetRankingResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRanking10initializeEPNS1_6Common10LibContextEi +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRanking10setboardIdEi +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRanking24setgetRankingRequestBodyENS1_6Common12IntrusivePtrINS3_21GetRankingRequestBodyEEE +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRanking26unsetgetRankingRequestBodyEv +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRanking9terminateEv +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRankingC1ERS5_ +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRankingC1Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRankingC2ERS5_ +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRankingC2Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRankingD1Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRankingD2Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRankingaSERS5_ +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi22getLargeDataByObjectIdEiRKNS4_33ParameterToGetLargeDataByObjectIdERNS1_6Common11TransactionINS8_12IntrusivePtrINS8_6BinaryEEENSA_INS4_37GetLargeDataByObjectIdResponseHeadersEEEEE +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi22getLargeDataByObjectIdEiRKNS4_33ParameterToGetLargeDataByObjectIdERNS1_6Common21DownStreamTransactionINS8_12IntrusivePtrINS4_37GetLargeDataByObjectIdResponseHeadersEEEEE +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId10initializeEPNS1_6Common10LibContextEPKc +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId10setifMatchEPKc +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId10unsetrangeEv +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId11setobjectIdEPKc +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId12unsetifMatchEv +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId17setnpServiceLabelEj +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId19unsetnpServiceLabelEv +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId8setrangeEPKc +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId9terminateEv +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectIdC1ERS5_ +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectIdC1Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectIdC2ERS5_ +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectIdC2Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectIdD1Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectIdD2Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectIdaSERS5_ +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeaders15setLastModifiedERKNS1_6Common6StringE +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeaders17unsetLastModifiedEv +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeaders21intrusive_ptr_add_refEPS5_ +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeaders21intrusive_ptr_sub_refEPS5_ +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeaders6createEPNS1_6Common10LibContextERNS6_12IntrusivePtrIS5_EEl +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeaders7destroyEPS5_ +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeaders7setETagERKNS1_6Common6StringE +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeaders9unsetETagEv +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersC1ERS5_ +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersC1Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersC2ERS5_ +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersC2Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersD1Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersD2Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersaSERS5_ +_ZN3sce2Np9CppWebApi12Leaderboards2V19BoardsApi18getBoardDefinitionEiRKNS4_29ParameterToGetBoardDefinitionERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_30GetBoardDefinitionResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinition10initializeEPNS1_6Common10LibContextEi +_ZN3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinition10setboardIdEi +_ZN3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinition11unsetfieldsEv +_ZN3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinition17setnpServiceLabelEj +_ZN3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinition19unsetnpServiceLabelEv +_ZN3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinition9setfieldsEPKc +_ZN3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinition9terminateEv +_ZN3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinitionC1ERS5_ +_ZN3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinitionC1Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinitionC2ERS5_ +_ZN3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinitionC2Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinitionD1Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinitionD2Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinitionaSERS5_ +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi11recordScoreEiRKNS4_22ParameterToRecordScoreERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_23RecordScoreResponseBodyEEENSA_INS4_26RecordScoreResponseHeadersEEEEE +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi15recordLargeDataEiRKNS4_26ParameterToRecordLargeDataERNS1_6Common19UpStreamTransactionINS8_12IntrusivePtrINS3_27RecordLargeDataResponseBodyEEENSA_INS4_30RecordLargeDataResponseHeadersEEEEE +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi15recordLargeDataEiRKNS4_26ParameterToRecordLargeDataERNS1_6Common19UpStreamTransactionINS8_12IntrusivePtrINS3_27RecordLargeDataResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi15recordLargeDataEiRKNS4_47ParameterWithBinaryRequestBodyToRecordLargeDataERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_27RecordLargeDataResponseBodyEEENSA_INS4_30RecordLargeDataResponseHeadersEEEEE +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi15recordLargeDataEiRKNS4_47ParameterWithBinaryRequestBodyToRecordLargeDataERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_27RecordLargeDataResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScore10initializeEPNS1_6Common10LibContextEiNS6_12IntrusivePtrINS3_22RecordScoreRequestBodyEEE +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScore10setboardIdEi +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScore22setxPsnAtomicOperationENS5_19XPsnAtomicOperationE +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScore24setxPsnAtomicOperationIdEPKc +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScore24unsetxPsnAtomicOperationEv +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScore25setrecordScoreRequestBodyENS1_6Common12IntrusivePtrINS3_22RecordScoreRequestBodyEEE +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScore26unsetxPsnAtomicOperationIdEv +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScore9terminateEv +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScoreC1ERS5_ +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScoreC1Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScoreC2ERS5_ +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScoreC2Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScoreD1Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScoreD2Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScoreaSERS5_ +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData10initializeEPNS1_6Common10LibContextEi +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData10initializeEPNS1_6Common10LibContextEiNS5_19XPsnAtomicOperationEPKc +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData10setboardIdEi +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData21setxPsnNpServiceLabelEj +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData22setxPsnAtomicOperationENS5_19XPsnAtomicOperationE +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData23unsetxPsnNpServiceLabelEv +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData24setxPsnAtomicOperationIdEPKc +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData24unsetxPsnAtomicOperationEv +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData26unsetxPsnAtomicOperationIdEv +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData9terminateEv +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeDataC1ERS5_ +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeDataC1Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeDataC2ERS5_ +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeDataC2Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeDataD1Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeDataD2Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeDataaSERS5_ +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26RecordScoreResponseHeaders21intrusive_ptr_add_refEPS5_ +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26RecordScoreResponseHeaders21intrusive_ptr_sub_refEPS5_ +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26RecordScoreResponseHeaders24setXPsnAtomicOperationIdERKNS1_6Common6StringE +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26RecordScoreResponseHeaders26unsetXPsnAtomicOperationIdEv +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26RecordScoreResponseHeaders6createEPNS1_6Common10LibContextERNS6_12IntrusivePtrIS5_EEl +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26RecordScoreResponseHeaders7destroyEPS5_ +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26RecordScoreResponseHeadersC1ERS5_ +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26RecordScoreResponseHeadersC1Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26RecordScoreResponseHeadersC2ERS5_ +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26RecordScoreResponseHeadersC2Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26RecordScoreResponseHeadersD1Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26RecordScoreResponseHeadersD2Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26RecordScoreResponseHeadersaSERS5_ +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeaders21intrusive_ptr_add_refEPS5_ +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeaders21intrusive_ptr_sub_refEPS5_ +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeaders24setXPsnAtomicOperationIdERKNS1_6Common6StringE +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeaders26unsetXPsnAtomicOperationIdEv +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeaders5parseEPNS1_6Common10LibContextElPNS6_12IntrusivePtrIS5_EE +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeaders6createEPNS1_6Common10LibContextERNS6_12IntrusivePtrIS5_EEl +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeaders7destroyEPS5_ +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersC1ERS5_ +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersC1Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersC2ERS5_ +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersC2Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersD1Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersD2Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersaSERS5_ +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi47ParameterWithBinaryRequestBodyToRecordLargeData10initializeEPNS1_6Common10LibContextEiNS4_26ParameterToRecordLargeData19XPsnAtomicOperationEPKcPKhm +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi47ParameterWithBinaryRequestBodyToRecordLargeData10initializeEPNS1_6Common10LibContextEiPKhm +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi47ParameterWithBinaryRequestBodyToRecordLargeData14setRequestBodyEPKhm +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi47ParameterWithBinaryRequestBodyToRecordLargeData9terminateEv +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi47ParameterWithBinaryRequestBodyToRecordLargeDataC1Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi47ParameterWithBinaryRequestBodyToRecordLargeDataC2Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi47ParameterWithBinaryRequestBodyToRecordLargeDataD1Ev +_ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi47ParameterWithBinaryRequestBodyToRecordLargeDataD2Ev +_ZN3sce2Np9CppWebApi13InGameCatalog2V510SkuFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_3SkuEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V510SkuFactory6createEPNS1_6Common10LibContextEiPNS5_12IntrusivePtrINS3_3SkuEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V510SkuFactory7destroyEPNS3_3SkuE +_ZN3sce2Np9CppWebApi13InGameCatalog2V511ErrorEntity10unsetErrorEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V511ErrorEntity8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi13InGameCatalog2V511ErrorEntity8setErrorERKNS1_6Common12IntrusivePtrINS3_5ErrorEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V511ErrorEntityC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi13InGameCatalog2V511ErrorEntityC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi13InGameCatalog2V511ErrorEntityD1Ev +_ZN3sce2Np9CppWebApi13InGameCatalog2V511ErrorEntityD2Ev +_ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi12getContainerEiRKNS4_23ParameterToGetContainerERNS1_6Common11TransactionINS8_12IntrusivePtrINS8_6VectorINSA_INS3_9ContainerEEEEEEENSA_INS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer10initializeEPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer10setuseFreeEb +_ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer10unsetlimitEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer11unsetoffsetEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer12setdirectionENS5_9DirectionE +_ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer12unsetuseFreeEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer14setkeepHtmlTagEb +_ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer14setserviceNameENS5_11ServiceNameE +_ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer14unsetdirectionEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer15setcontainerIdsEPKc +_ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer15setserviceLabelEi +_ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer16unsetkeepHtmlTagEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer16unsetserviceNameEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer17setacceptLanguageEPKc +_ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer17unsetcontainerIdsEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer17unsetserviceLabelEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer19unsetacceptLanguageEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer20setuseCurrencySymbolEb +_ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer22unsetuseCurrencySymbolEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer7setsortENS5_4SortE +_ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer8setlimitEi +_ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer9setoffsetEi +_ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer9terminateEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer9unsetsortEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainerC1ERS5_ +_ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainerC1Ev +_ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainerC2ERS5_ +_ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainerC2Ev +_ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainerD1Ev +_ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainerD2Ev +_ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContaineraSERS5_ +_ZN3sce2Np9CppWebApi13InGameCatalog2V512ErrorFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_5ErrorEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V512ErrorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5ErrorEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V512ErrorFactory7destroyEPNS3_5ErrorE +_ZN3sce2Np9CppWebApi13InGameCatalog2V512ImageFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_5ImageEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V512ImageFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5ImageEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V512ImageFactory7destroyEPNS3_5ImageE +_ZN3sce2Np9CppWebApi13InGameCatalog2V513ContentRating11unsetSystemEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V513ContentRating6setUrlEPKc +_ZN3sce2Np9CppWebApi13InGameCatalog2V513ContentRating7setNameEPKc +_ZN3sce2Np9CppWebApi13InGameCatalog2V513ContentRating8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi13InGameCatalog2V513ContentRating8unsetUrlEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V513ContentRating9setSystemEPKc +_ZN3sce2Np9CppWebApi13InGameCatalog2V513ContentRating9unsetNameEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V513ContentRatingC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi13InGameCatalog2V513ContentRatingC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi13InGameCatalog2V513ContentRatingD1Ev +_ZN3sce2Np9CppWebApi13InGameCatalog2V513ContentRatingD2Ev +_ZN3sce2Np9CppWebApi13InGameCatalog2V514ContainerMedia11unsetImagesEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V514ContainerMedia8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi13InGameCatalog2V514ContainerMedia9getImagesEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V514ContainerMedia9setImagesERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_5ImageEEEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V514ContainerMediaC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi13InGameCatalog2V514ContainerMediaC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi13InGameCatalog2V514ContainerMediaD1Ev +_ZN3sce2Np9CppWebApi13InGameCatalog2V514ContainerMediaD2Ev +_ZN3sce2Np9CppWebApi13InGameCatalog2V514ProductFactory6createEPNS1_6Common10LibContextEPKcS9_S9_PNS5_12IntrusivePtrINS3_7ProductEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V514ProductFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_7ProductEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V514ProductFactory7destroyEPNS3_7ProductE +_ZN3sce2Np9CppWebApi13InGameCatalog2V515ContainerRating10unsetCountEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V515ContainerRating10unsetScoreEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V515ContainerRating10unsetTotalEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V515ContainerRating8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi13InGameCatalog2V515ContainerRating8getCountEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V515ContainerRating8setCountERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_20ContainerRatingCountEEEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V515ContainerRating8setScoreERKf +_ZN3sce2Np9CppWebApi13InGameCatalog2V515ContainerRating8setTotalERKi +_ZN3sce2Np9CppWebApi13InGameCatalog2V515ContainerRatingC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi13InGameCatalog2V515ContainerRatingC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi13InGameCatalog2V515ContainerRatingD1Ev +_ZN3sce2Np9CppWebApi13InGameCatalog2V515ContainerRatingD2Ev +_ZN3sce2Np9CppWebApi13InGameCatalog2V516ContainerFactory6createEPNS1_6Common10LibContextEPKcS9_S9_PNS5_12IntrusivePtrINS3_9ContainerEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V516ContainerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_9ContainerEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V516ContainerFactory7destroyEPNS3_9ContainerE +_ZN3sce2Np9CppWebApi13InGameCatalog2V516PublisherFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_9PublisherEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V516PublisherFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_9PublisherEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V516PublisherFactory7destroyEPNS3_9PublisherE +_ZN3sce2Np9CppWebApi13InGameCatalog2V517ContentDescriptor6setUrlEPKc +_ZN3sce2Np9CppWebApi13InGameCatalog2V517ContentDescriptor7setNameEPKc +_ZN3sce2Np9CppWebApi13InGameCatalog2V517ContentDescriptor8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi13InGameCatalog2V517ContentDescriptor8unsetUrlEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V517ContentDescriptorC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi13InGameCatalog2V517ContentDescriptorC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi13InGameCatalog2V517ContentDescriptorD1Ev +_ZN3sce2Np9CppWebApi13InGameCatalog2V517ContentDescriptorD2Ev +_ZN3sce2Np9CppWebApi13InGameCatalog2V518ErrorEntityFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_11ErrorEntityEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V518ErrorEntityFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_11ErrorEntityEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V518ErrorEntityFactory7destroyEPNS3_11ErrorEntityE +_ZN3sce2Np9CppWebApi13InGameCatalog2V520ContainerRatingCount10unsetCountEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V520ContainerRatingCount10unsetScoreEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V520ContainerRatingCount8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi13InGameCatalog2V520ContainerRatingCount8setCountERKi +_ZN3sce2Np9CppWebApi13InGameCatalog2V520ContainerRatingCount8setScoreERKi +_ZN3sce2Np9CppWebApi13InGameCatalog2V520ContainerRatingCountC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi13InGameCatalog2V520ContainerRatingCountC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi13InGameCatalog2V520ContainerRatingCountD1Ev +_ZN3sce2Np9CppWebApi13InGameCatalog2V520ContainerRatingCountD2Ev +_ZN3sce2Np9CppWebApi13InGameCatalog2V520ContentRatingFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_13ContentRatingEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V520ContentRatingFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_13ContentRatingEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V520ContentRatingFactory7destroyEPNS3_13ContentRatingE +_ZN3sce2Np9CppWebApi13InGameCatalog2V521ContainerMediaFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_14ContainerMediaEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V521ContainerMediaFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_14ContainerMediaEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V521ContainerMediaFactory7destroyEPNS3_14ContainerMediaE +_ZN3sce2Np9CppWebApi13InGameCatalog2V522ContainerRatingFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_15ContainerRatingEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V522ContainerRatingFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_15ContainerRatingEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V522ContainerRatingFactory7destroyEPNS3_15ContainerRatingE +_ZN3sce2Np9CppWebApi13InGameCatalog2V524ContentDescriptorFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_17ContentDescriptorEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V524ContentDescriptorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_17ContentDescriptorEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V524ContentDescriptorFactory7destroyEPNS3_17ContentDescriptorE +_ZN3sce2Np9CppWebApi13InGameCatalog2V525ContentInteractiveElement7setNameEPKc +_ZN3sce2Np9CppWebApi13InGameCatalog2V525ContentInteractiveElement8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi13InGameCatalog2V525ContentInteractiveElementC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi13InGameCatalog2V525ContentInteractiveElementC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi13InGameCatalog2V525ContentInteractiveElementD1Ev +_ZN3sce2Np9CppWebApi13InGameCatalog2V525ContentInteractiveElementD2Ev +_ZN3sce2Np9CppWebApi13InGameCatalog2V527ContainerRatingCountFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_20ContainerRatingCountEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V527ContainerRatingCountFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_20ContainerRatingCountEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V527ContainerRatingCountFactory7destroyEPNS3_20ContainerRatingCountE +_ZN3sce2Np9CppWebApi13InGameCatalog2V532ContentInteractiveElementFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_25ContentInteractiveElementEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V532ContentInteractiveElementFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_25ContentInteractiveElementEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V532ContentInteractiveElementFactory7destroyEPNS3_25ContentInteractiveElementE +_ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku10setEndDateEPKc +_ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku10unsetLabelEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku10unsetPriceEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku11setUseLimitERKi +_ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku12unsetEndDateEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku14setIsPlusPriceERKb +_ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku15setDisplayPriceEPKc +_ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku16setOriginalPriceERKi +_ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku16unsetIsPlusPriceEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku17setAnnotationNameERKNS3_10AnnotationE +_ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku17unsetDisplayPriceEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku18setPlusUpsellPriceERKi +_ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku18unsetOriginalPriceEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku19unsetAnnotationNameEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku20unsetPlusUpsellPriceEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku23setDisplayOriginalPriceEPKc +_ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku25setDisplayPlusUpsellPriceEPKc +_ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku25unsetDisplayOriginalPriceEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku27unsetDisplayPlusUpsellPriceEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku5setIdEPKc +_ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku7setNameEPKc +_ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku7setTypeEPKc +_ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku7unsetIdEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku8setLabelEPKc +_ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku8setPriceERKi +_ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku9unsetNameEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku9unsetTypeEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V53SkuC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi13InGameCatalog2V53SkuC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi13InGameCatalog2V53SkuD1Ev +_ZN3sce2Np9CppWebApi13InGameCatalog2V53SkuD2Ev +_ZN3sce2Np9CppWebApi13InGameCatalog2V55Error10setMessageEPKc +_ZN3sce2Np9CppWebApi13InGameCatalog2V55Error11unsetReasonEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V55Error11unsetSourceEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V55Error12unsetMessageEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V55Error14setReferenceIdEPKc +_ZN3sce2Np9CppWebApi13InGameCatalog2V55Error16unsetReferenceIdEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V55Error7setCodeERKi +_ZN3sce2Np9CppWebApi13InGameCatalog2V55Error8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi13InGameCatalog2V55Error9setReasonEPKc +_ZN3sce2Np9CppWebApi13InGameCatalog2V55Error9setSourceEPKc +_ZN3sce2Np9CppWebApi13InGameCatalog2V55Error9unsetCodeEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V55ErrorC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi13InGameCatalog2V55ErrorC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi13InGameCatalog2V55ErrorD1Ev +_ZN3sce2Np9CppWebApi13InGameCatalog2V55ErrorD2Ev +_ZN3sce2Np9CppWebApi13InGameCatalog2V55Image11unsetFormatEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V55Image6setUrlEPKc +_ZN3sce2Np9CppWebApi13InGameCatalog2V55Image7setTypeERKNS4_4TypeE +_ZN3sce2Np9CppWebApi13InGameCatalog2V55Image8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi13InGameCatalog2V55Image9setFormatERKNS4_6FormatE +_ZN3sce2Np9CppWebApi13InGameCatalog2V55Image9unsetTypeEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V55ImageC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi13InGameCatalog2V55ImageC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi13InGameCatalog2V55ImageD1Ev +_ZN3sce2Np9CppWebApi13InGameCatalog2V55ImageD2Ev +_ZN3sce2Np9CppWebApi13InGameCatalog2V57Product10setVersionERKi +_ZN3sce2Np9CppWebApi13InGameCatalog2V57Product10unsetLabelEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V57Product10unsetMediaEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V57Product11setAgeLimitERKi +_ZN3sce2Np9CppWebApi13InGameCatalog2V57Product11unsetRatingEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V57Product12getPlatformsEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V57Product12setPlatformsERKNS1_6Common6VectorINS5_6StringEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V57Product12setPublisherERKNS1_6Common12IntrusivePtrINS3_9PublisherEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V57Product12unsetVersionEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V57Product13unsetAgeLimitEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V57Product14setContentTypeERKNS3_11ContentTypeE +_ZN3sce2Np9CppWebApi13InGameCatalog2V57Product14setDescriptionEPKc +_ZN3sce2Np9CppWebApi13InGameCatalog2V57Product14setDisplayNameEPKc +_ZN3sce2Np9CppWebApi13InGameCatalog2V57Product14setReleaseDateEPKc +_ZN3sce2Np9CppWebApi13InGameCatalog2V57Product14unsetPlatformsEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V57Product14unsetPublisherEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V57Product16setContentRatingERKNS1_6Common12IntrusivePtrINS3_13ContentRatingEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V57Product16unsetContentTypeEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V57Product16unsetDescriptionEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V57Product16unsetReleaseDateEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V57Product18unsetContentRatingEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V57Product21getContentDescriptorsEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V57Product21setContentDescriptorsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_17ContentDescriptorEEEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V57Product23unsetContentDescriptorsEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V57Product29getContentInteractiveElementsEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V57Product29setContentInteractiveElementsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_25ContentInteractiveElementEEEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V57Product31unsetContentInteractiveElementsEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V57Product5setIdEPKc +_ZN3sce2Np9CppWebApi13InGameCatalog2V57Product7getSkusEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V57Product7setSkusERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_3SkuEEEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V57Product7setTypeEPKc +_ZN3sce2Np9CppWebApi13InGameCatalog2V57Product8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi13InGameCatalog2V57Product8setLabelEPKc +_ZN3sce2Np9CppWebApi13InGameCatalog2V57Product8setMediaERKNS1_6Common12IntrusivePtrINS3_14ContainerMediaEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V57Product9setRatingERKNS1_6Common12IntrusivePtrINS3_15ContainerRatingEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V57Product9unsetSkusEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V57ProductC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi13InGameCatalog2V57ProductC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi13InGameCatalog2V57ProductD1Ev +_ZN3sce2Np9CppWebApi13InGameCatalog2V57ProductD2Ev +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Container10setVersionERKi +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Container10unsetLabelEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Container10unsetMediaEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Container11getChildrenEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Container11setAgeLimitERKi +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Container11setChildrenERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_7ProductEEEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Container11unsetRatingEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Container12getPlatformsEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Container12setPlatformsERKNS1_6Common6VectorINS5_6StringEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Container12setPublisherERKNS1_6Common12IntrusivePtrINS3_9PublisherEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Container12unsetVersionEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Container13unsetAgeLimitEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Container13unsetChildrenEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Container14setContentTypeERKNS3_11ContentTypeE +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Container14setDescriptionEPKc +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Container14setDisplayNameEPKc +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Container14setReleaseDateEPKc +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Container14unsetPlatformsEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Container14unsetPublisherEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Container16setContentRatingERKNS1_6Common12IntrusivePtrINS3_13ContentRatingEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Container16unsetContentTypeEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Container16unsetDescriptionEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Container16unsetReleaseDateEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Container17setTotalItemCountERKi +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Container18unsetContentRatingEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Container19unsetTotalItemCountEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Container21getContentDescriptorsEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Container21setContentDescriptorsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_17ContentDescriptorEEEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Container23unsetContentDescriptorsEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Container29getContentInteractiveElementsEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Container29setContentInteractiveElementsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_25ContentInteractiveElementEEEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Container31unsetContentInteractiveElementsEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Container5setIdEPKc +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Container7getSkusEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Container7setSkusERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_3SkuEEEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Container7setTypeEPKc +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Container8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Container8setLabelEPKc +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Container8setMediaERKNS1_6Common12IntrusivePtrINS3_14ContainerMediaEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Container9setRatingERKNS1_6Common12IntrusivePtrINS3_15ContainerRatingEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Container9unsetSkusEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V59ContainerC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi13InGameCatalog2V59ContainerC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi13InGameCatalog2V59ContainerD1Ev +_ZN3sce2Np9CppWebApi13InGameCatalog2V59ContainerD2Ev +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Publisher7setIconERKNS1_6Common12IntrusivePtrINS3_5ImageEEE +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Publisher7setNameEPKc +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Publisher8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Publisher9unsetIconEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V59Publisher9unsetNameEv +_ZN3sce2Np9CppWebApi13InGameCatalog2V59PublisherC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi13InGameCatalog2V59PublisherC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi13InGameCatalog2V59PublisherD1Ev +_ZN3sce2Np9CppWebApi13InGameCatalog2V59PublisherD2Ev +_ZN3sce2Np9CppWebApi14ConnectAccount2V212PartnerToken12setExpiresInERKl +_ZN3sce2Np9CppWebApi14ConnectAccount2V212PartnerToken12setTokenTypeEPKc +_ZN3sce2Np9CppWebApi14ConnectAccount2V212PartnerToken14setAccessTokenEPKc +_ZN3sce2Np9CppWebApi14ConnectAccount2V212PartnerToken20setAccessTokenSecretEPKc +_ZN3sce2Np9CppWebApi14ConnectAccount2V212PartnerToken22unsetAccessTokenSecretEv +_ZN3sce2Np9CppWebApi14ConnectAccount2V212PartnerToken8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14ConnectAccount2V212PartnerToken9getScopesEv +_ZN3sce2Np9CppWebApi14ConnectAccount2V212PartnerToken9setScopesERKNS1_6Common6VectorINS5_6StringEEE +_ZN3sce2Np9CppWebApi14ConnectAccount2V212PartnerTokenC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14ConnectAccount2V212PartnerTokenC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14ConnectAccount2V212PartnerTokenD1Ev +_ZN3sce2Np9CppWebApi14ConnectAccount2V212PartnerTokenD2Ev +_ZN3sce2Np9CppWebApi14ConnectAccount2V214PSNError_error10setMessageERKi +_ZN3sce2Np9CppWebApi14ConnectAccount2V214PSNError_error14setReferenceIdEPKc +_ZN3sce2Np9CppWebApi14ConnectAccount2V214PSNError_error16unsetReferenceIdEv +_ZN3sce2Np9CppWebApi14ConnectAccount2V214PSNError_error7setCodeERKi +_ZN3sce2Np9CppWebApi14ConnectAccount2V214PSNError_error8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14ConnectAccount2V214PSNError_errorC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14ConnectAccount2V214PSNError_errorC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14ConnectAccount2V214PSNError_errorD1Ev +_ZN3sce2Np9CppWebApi14ConnectAccount2V214PSNError_errorD2Ev +_ZN3sce2Np9CppWebApi14ConnectAccount2V215AccountLinksApi17deleteAccountLinkEiRKNS4_28ParameterToDeleteAccountLinkERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi14ConnectAccount2V215AccountLinksApi28ParameterToDeleteAccountLink10initializeEPNS1_6Common10LibContextEPKc +_ZN3sce2Np9CppWebApi14ConnectAccount2V215AccountLinksApi28ParameterToDeleteAccountLink12setpartnerIdEPKc +_ZN3sce2Np9CppWebApi14ConnectAccount2V215AccountLinksApi28ParameterToDeleteAccountLink9terminateEv +_ZN3sce2Np9CppWebApi14ConnectAccount2V215AccountLinksApi28ParameterToDeleteAccountLinkC1ERS5_ +_ZN3sce2Np9CppWebApi14ConnectAccount2V215AccountLinksApi28ParameterToDeleteAccountLinkC1Ev +_ZN3sce2Np9CppWebApi14ConnectAccount2V215AccountLinksApi28ParameterToDeleteAccountLinkC2ERS5_ +_ZN3sce2Np9CppWebApi14ConnectAccount2V215AccountLinksApi28ParameterToDeleteAccountLinkC2Ev +_ZN3sce2Np9CppWebApi14ConnectAccount2V215AccountLinksApi28ParameterToDeleteAccountLinkD1Ev +_ZN3sce2Np9CppWebApi14ConnectAccount2V215AccountLinksApi28ParameterToDeleteAccountLinkD2Ev +_ZN3sce2Np9CppWebApi14ConnectAccount2V215AccountLinksApi28ParameterToDeleteAccountLinkaSERS5_ +_ZN3sce2Np9CppWebApi14ConnectAccount2V215PSNErrorFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_14PSNError_errorEEEPNS8_INS3_8PSNErrorEEE +_ZN3sce2Np9CppWebApi14ConnectAccount2V215PSNErrorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_8PSNErrorEEE +_ZN3sce2Np9CppWebApi14ConnectAccount2V215PSNErrorFactory7destroyEPNS3_8PSNErrorE +_ZN3sce2Np9CppWebApi14ConnectAccount2V216PartnerTokensApi15getPartnerTokenEiRKNS4_26ParameterToGetPartnerTokenERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_12PartnerTokenEEENSA_INS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi14ConnectAccount2V216PartnerTokensApi26ParameterToGetPartnerToken10initializeEPNS1_6Common10LibContextEPKcb +_ZN3sce2Np9CppWebApi14ConnectAccount2V216PartnerTokensApi26ParameterToGetPartnerToken12setpartnerIdEPKc +_ZN3sce2Np9CppWebApi14ConnectAccount2V216PartnerTokensApi26ParameterToGetPartnerToken24setdeepTokenVerificationEb +_ZN3sce2Np9CppWebApi14ConnectAccount2V216PartnerTokensApi26ParameterToGetPartnerToken9terminateEv +_ZN3sce2Np9CppWebApi14ConnectAccount2V216PartnerTokensApi26ParameterToGetPartnerTokenC1ERS5_ +_ZN3sce2Np9CppWebApi14ConnectAccount2V216PartnerTokensApi26ParameterToGetPartnerTokenC1Ev +_ZN3sce2Np9CppWebApi14ConnectAccount2V216PartnerTokensApi26ParameterToGetPartnerTokenC2ERS5_ +_ZN3sce2Np9CppWebApi14ConnectAccount2V216PartnerTokensApi26ParameterToGetPartnerTokenC2Ev +_ZN3sce2Np9CppWebApi14ConnectAccount2V216PartnerTokensApi26ParameterToGetPartnerTokenD1Ev +_ZN3sce2Np9CppWebApi14ConnectAccount2V216PartnerTokensApi26ParameterToGetPartnerTokenD2Ev +_ZN3sce2Np9CppWebApi14ConnectAccount2V216PartnerTokensApi26ParameterToGetPartnerTokenaSERS5_ +_ZN3sce2Np9CppWebApi14ConnectAccount2V219PartnerTokenFactory6createEPNS1_6Common10LibContextEPKcS9_RKNS5_6VectorINS5_6StringEEElPNS5_12IntrusivePtrINS3_12PartnerTokenEEE +_ZN3sce2Np9CppWebApi14ConnectAccount2V219PartnerTokenFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_12PartnerTokenEEE +_ZN3sce2Np9CppWebApi14ConnectAccount2V219PartnerTokenFactory7destroyEPNS3_12PartnerTokenE +_ZN3sce2Np9CppWebApi14ConnectAccount2V221PSNError_errorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_14PSNError_errorEEE +_ZN3sce2Np9CppWebApi14ConnectAccount2V221PSNError_errorFactory6createEPNS1_6Common10LibContextEiiPNS5_12IntrusivePtrINS3_14PSNError_errorEEE +_ZN3sce2Np9CppWebApi14ConnectAccount2V221PSNError_errorFactory7destroyEPNS3_14PSNError_errorE +_ZN3sce2Np9CppWebApi14ConnectAccount2V28PSNError8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14ConnectAccount2V28PSNError8setErrorERKNS1_6Common12IntrusivePtrINS3_14PSNError_errorEEE +_ZN3sce2Np9CppWebApi14ConnectAccount2V28PSNErrorC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14ConnectAccount2V28PSNErrorC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14ConnectAccount2V28PSNErrorD1Ev +_ZN3sce2Np9CppWebApi14ConnectAccount2V28PSNErrorD2Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap11setOnlineIdERK13SceNpOnlineId +_ZN3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap12setAccountIdERKm +_ZN3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap12setIsCurrentERKb +_ZN3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap13setIsRecycledERKb +_ZN3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap14unsetAccountIdEv +_ZN3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap14unsetIsCurrentEv +_ZN3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap15unsetIsRecycledEv +_ZN3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMapC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMapC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMapD1Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMapD2Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V311PsnWebError8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14IdentityMapper2V311PsnWebError8setErrorERKNS1_6Common12IntrusivePtrINS3_17PsnWebError_errorEEE +_ZN3sce2Np9CppWebApi14IdentityMapper2V311PsnWebErrorC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14IdentityMapper2V311PsnWebErrorC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14IdentityMapper2V311PsnWebErrorD1Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V311PsnWebErrorD2Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V312AccountIdMap11setOnlineIdERK13SceNpOnlineId +_ZN3sce2Np9CppWebApi14IdentityMapper2V312AccountIdMap12setAccountIdERKm +_ZN3sce2Np9CppWebApi14IdentityMapper2V312AccountIdMap13unsetOnlineIdEv +_ZN3sce2Np9CppWebApi14IdentityMapper2V312AccountIdMap8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14IdentityMapper2V312AccountIdMapC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14IdentityMapper2V312AccountIdMapC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14IdentityMapper2V312AccountIdMapD1Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V312AccountIdMapD2Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi21getAccountId2OnlineIdEiRKNS4_32ParameterToGetAccountId2OnlineIdERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_12AccountIdMapEEENSA_INS4_36GetAccountId2OnlineIdResponseHeadersEEEEE +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi21getOnlineId2AccountIdEiRKNS4_32ParameterToGetOnlineId2AccountIdERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_11OnlineIdMapEEENSA_INS4_36GetOnlineId2AccountIdResponseHeadersEEEEE +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi31listEdgeAccountId2OnlineIdBatchEiRKNS4_42ParameterToListEdgeAccountId2OnlineIdBatchERNS1_6Common11TransactionINS8_12IntrusivePtrINS8_6VectorINSA_INS3_12AccountIdMapEEEEEEENSA_INS4_46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEEE +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi31listEdgeOnlineId2AccountIdBatchEiRKNS4_42ParameterToListEdgeOnlineId2AccountIdBatchERNS1_6Common11TransactionINS8_12IntrusivePtrINS8_6VectorINSA_INS3_11OnlineIdMapEEEEEEENSA_INS4_46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEEE +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetAccountId2OnlineId10initializeEPNS1_6Common10LibContextEm +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetAccountId2OnlineId12setaccountIdEm +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetAccountId2OnlineId9terminateEv +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetAccountId2OnlineIdC1ERS5_ +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetAccountId2OnlineIdC1Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetAccountId2OnlineIdC2ERS5_ +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetAccountId2OnlineIdC2Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetAccountId2OnlineIdD1Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetAccountId2OnlineIdD2Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetAccountId2OnlineIdaSERS5_ +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountId10initializeEPNS1_6Common10LibContextERK13SceNpOnlineId +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountId11setonlineIdERK13SceNpOnlineId +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountId15setasOfDateTimeEPKc +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountId17unsetasOfDateTimeEv +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountId9terminateEv +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountIdC1ERS5_ +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountIdC1Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountIdC2ERS5_ +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountIdC2Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountIdD1Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountIdD2Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountIdaSERS5_ +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeaders15setCacheControlERKNS1_6Common6StringE +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeaders17unsetCacheControlEv +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeaders21intrusive_ptr_add_refEPS5_ +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeaders21intrusive_ptr_sub_refEPS5_ +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeaders6createEPNS1_6Common10LibContextERNS6_12IntrusivePtrIS5_EEl +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeaders7destroyEPS5_ +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersC1ERS5_ +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersC1Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersC2ERS5_ +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersC2Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersD1Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersD2Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersaSERS5_ +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeaders15setCacheControlERKNS1_6Common6StringE +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeaders17unsetCacheControlEv +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeaders21intrusive_ptr_add_refEPS5_ +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeaders21intrusive_ptr_sub_refEPS5_ +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeaders6createEPNS1_6Common10LibContextERNS6_12IntrusivePtrIS5_EEl +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeaders7destroyEPS5_ +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersC1ERS5_ +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersC1Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersC2ERS5_ +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersC2Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersD1Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersD2Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersaSERS5_ +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeAccountId2OnlineIdBatch10initializeEPNS1_6Common10LibContextENS6_12IntrusivePtrINS6_6VectorINS6_6StringEEEEE +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeAccountId2OnlineIdBatch5setidENS1_6Common12IntrusivePtrINS6_6VectorINS6_6StringEEEEE +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeAccountId2OnlineIdBatch9terminateEv +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeAccountId2OnlineIdBatchC1ERS5_ +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeAccountId2OnlineIdBatchC1Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeAccountId2OnlineIdBatchC2ERS5_ +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeAccountId2OnlineIdBatchC2Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeAccountId2OnlineIdBatchD1Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeAccountId2OnlineIdBatchD2Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeAccountId2OnlineIdBatchaSERS5_ +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeOnlineId2AccountIdBatch10initializeEPNS1_6Common10LibContextENS6_12IntrusivePtrINS6_6VectorINS6_6StringEEEEE +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeOnlineId2AccountIdBatch5setidENS1_6Common12IntrusivePtrINS6_6VectorINS6_6StringEEEEE +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeOnlineId2AccountIdBatch9terminateEv +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeOnlineId2AccountIdBatchC1ERS5_ +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeOnlineId2AccountIdBatchC1Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeOnlineId2AccountIdBatchC2ERS5_ +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeOnlineId2AccountIdBatchC2Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeOnlineId2AccountIdBatchD1Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeOnlineId2AccountIdBatchD2Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeOnlineId2AccountIdBatchaSERS5_ +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeaders15setCacheControlERKNS1_6Common6StringE +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeaders17unsetCacheControlEv +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeaders21intrusive_ptr_add_refEPS5_ +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeaders21intrusive_ptr_sub_refEPS5_ +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeaders6createEPNS1_6Common10LibContextERNS6_12IntrusivePtrIS5_EEl +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeaders7destroyEPS5_ +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersC1ERS5_ +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersC1Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersC2ERS5_ +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersC2Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersD1Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersD2Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersaSERS5_ +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeaders15setCacheControlERKNS1_6Common6StringE +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeaders17unsetCacheControlEv +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeaders21intrusive_ptr_add_refEPS5_ +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeaders21intrusive_ptr_sub_refEPS5_ +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeaders6createEPNS1_6Common10LibContextERNS6_12IntrusivePtrIS5_EEl +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeaders7destroyEPS5_ +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersC1ERS5_ +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersC1Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersC2ERS5_ +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersC2Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersD1Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersD2Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersaSERS5_ +_ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error10setMessageEPKc +_ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error11unsetErrorsEv +_ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error11unsetReasonEv +_ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error11unsetSourceEv +_ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error12unsetMessageEv +_ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error14setReferenceIdEPKc +_ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error16unsetReferenceIdEv +_ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error7setCodeERKi +_ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error9getErrorsEv +_ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error9setErrorsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_24PsnWebError_error_errorsEEEEE +_ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error9setReasonEPKc +_ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error9setSourceEPKc +_ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_errorC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_errorC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_errorD1Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_errorD2Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V318OnlineIdMapFactory6createEPNS1_6Common10LibContextERK13SceNpOnlineIdPNS5_12IntrusivePtrINS3_11OnlineIdMapEEE +_ZN3sce2Np9CppWebApi14IdentityMapper2V318OnlineIdMapFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_11OnlineIdMapEEE +_ZN3sce2Np9CppWebApi14IdentityMapper2V318OnlineIdMapFactory7destroyEPNS3_11OnlineIdMapE +_ZN3sce2Np9CppWebApi14IdentityMapper2V318PsnWebErrorFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_17PsnWebError_errorEEEPNS8_INS3_11PsnWebErrorEEE +_ZN3sce2Np9CppWebApi14IdentityMapper2V318PsnWebErrorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_11PsnWebErrorEEE +_ZN3sce2Np9CppWebApi14IdentityMapper2V318PsnWebErrorFactory7destroyEPNS3_11PsnWebErrorE +_ZN3sce2Np9CppWebApi14IdentityMapper2V319AccountIdMapFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_12AccountIdMapEEE +_ZN3sce2Np9CppWebApi14IdentityMapper2V319AccountIdMapFactory6createEPNS1_6Common10LibContextERKmPNS5_12IntrusivePtrINS3_12AccountIdMapEEE +_ZN3sce2Np9CppWebApi14IdentityMapper2V319AccountIdMapFactory7destroyEPNS3_12AccountIdMapE +_ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_errorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_17PsnWebError_errorEEE +_ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_errorFactory6createEPNS1_6Common10LibContextEiPNS5_12IntrusivePtrINS3_17PsnWebError_errorEEE +_ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_errorFactory7destroyEPNS3_17PsnWebError_errorE +_ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors10setMessageEPKc +_ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors12unsetMessageEv +_ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors18getMissingElementsEv +_ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors18setMissingElementsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_33PsnWebError_error_missingElementsEEEEE +_ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors20unsetMissingElementsEv +_ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors23setValidationConstraintEPKc +_ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors25unsetValidationConstraintEv +_ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors27getValidationConstraintInfoEv +_ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors27setValidationConstraintInfoERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_42PsnWebError_error_validationConstraintInfoEEEEE +_ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors29unsetValidationConstraintInfoEv +_ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors7setPathEPKc +_ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors9unsetPathEv +_ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errorsC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errorsC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errorsD1Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errorsD2Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V331PsnWebError_error_errorsFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_24PsnWebError_error_errorsEEE +_ZN3sce2Np9CppWebApi14IdentityMapper2V331PsnWebError_error_errorsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_24PsnWebError_error_errorsEEE +_ZN3sce2Np9CppWebApi14IdentityMapper2V331PsnWebError_error_errorsFactory7destroyEPNS3_24PsnWebError_error_errorsE +_ZN3sce2Np9CppWebApi14IdentityMapper2V333PsnWebError_error_missingElements7setNameEPKc +_ZN3sce2Np9CppWebApi14IdentityMapper2V333PsnWebError_error_missingElements8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14IdentityMapper2V333PsnWebError_error_missingElements9unsetNameEv +_ZN3sce2Np9CppWebApi14IdentityMapper2V333PsnWebError_error_missingElementsC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14IdentityMapper2V333PsnWebError_error_missingElementsC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14IdentityMapper2V333PsnWebError_error_missingElementsD1Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V333PsnWebError_error_missingElementsD2Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V340PsnWebError_error_missingElementsFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_33PsnWebError_error_missingElementsEEE +_ZN3sce2Np9CppWebApi14IdentityMapper2V340PsnWebError_error_missingElementsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_33PsnWebError_error_missingElementsEEE +_ZN3sce2Np9CppWebApi14IdentityMapper2V340PsnWebError_error_missingElementsFactory7destroyEPNS3_33PsnWebError_error_missingElementsE +_ZN3sce2Np9CppWebApi14IdentityMapper2V342PsnWebError_error_validationConstraintInfo6setKeyEPKc +_ZN3sce2Np9CppWebApi14IdentityMapper2V342PsnWebError_error_validationConstraintInfo8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14IdentityMapper2V342PsnWebError_error_validationConstraintInfo8setValueEPKc +_ZN3sce2Np9CppWebApi14IdentityMapper2V342PsnWebError_error_validationConstraintInfoC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14IdentityMapper2V342PsnWebError_error_validationConstraintInfoC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14IdentityMapper2V342PsnWebError_error_validationConstraintInfoD1Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V342PsnWebError_error_validationConstraintInfoD2Ev +_ZN3sce2Np9CppWebApi14IdentityMapper2V349PsnWebError_error_validationConstraintInfoFactory6createEPNS1_6Common10LibContextEPKcS9_PNS5_12IntrusivePtrINS3_42PsnWebError_error_validationConstraintInfoEEE +_ZN3sce2Np9CppWebApi14IdentityMapper2V349PsnWebError_error_validationConstraintInfoFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_42PsnWebError_error_validationConstraintInfoEEE +_ZN3sce2Np9CppWebApi14IdentityMapper2V349PsnWebError_error_validationConstraintInfoFactory7destroyEPNS3_42PsnWebError_error_validationConstraintInfoE +_ZN3sce2Np9CppWebApi14SessionManager2V110FromMember11setOnlineIdERK13SceNpOnlineId +_ZN3sce2Np9CppWebApi14SessionManager2V110FromMember11setPlatformEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V110FromMember12setAccountIdERKm +_ZN3sce2Np9CppWebApi14SessionManager2V110FromMember8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V110FromMemberC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V110FromMemberC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V110FromMemberD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V110FromMemberD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V111GameSession12setSessionIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V111GameSession8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V111GameSession9setMemberERKNS1_6Common12IntrusivePtrINS3_31ResponseGameSessionMemberPlayerEEE +_ZN3sce2Np9CppWebApi14SessionManager2V111GameSessionC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V111GameSessionC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V111GameSessionD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V111GameSessionD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V112ErrorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5ErrorEEE +_ZN3sce2Np9CppWebApi14SessionManager2V112ErrorFactory6createEPNS1_6Common10LibContextElPKcPNS5_12IntrusivePtrINS3_5ErrorEEE +_ZN3sce2Np9CppWebApi14SessionManager2V112ErrorFactory7destroyEPNS3_5ErrorE +_ZN3sce2Np9CppWebApi14SessionManager2V112JoinableUser12setAccountIdERKm +_ZN3sce2Np9CppWebApi14SessionManager2V112JoinableUser8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V112JoinableUserC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V112JoinableUserC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V112JoinableUserD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V112JoinableUserD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V112NonPsnLeader11setPlayerIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V112NonPsnLeader13setPlayerNameEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V112NonPsnLeader8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V112NonPsnLeaderC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V112NonPsnLeaderC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V112NonPsnLeaderD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V112NonPsnLeaderD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V113ErrorResponse8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V113ErrorResponse8setErrorERKNS1_6Common12IntrusivePtrINS3_5ErrorEEE +_ZN3sce2Np9CppWebApi14SessionManager2V113ErrorResponseC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V113ErrorResponseC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V113ErrorResponseD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V113ErrorResponseD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V113FriendFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_6FriendEEE +_ZN3sce2Np9CppWebApi14SessionManager2V113FriendFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_6FriendEEE +_ZN3sce2Np9CppWebApi14SessionManager2V113FriendFactory7destroyEPNS3_6FriendE +_ZN3sce2Np9CppWebApi14SessionManager2V113PlayerSession12setSessionIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V113PlayerSession8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V113PlayerSession9setMemberERKNS1_6Common12IntrusivePtrINS3_33ResponsePlayerSessionMemberPlayerEEE +_ZN3sce2Np9CppWebApi14SessionManager2V113PlayerSessionC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V113PlayerSessionC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V113PlayerSessionD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V113PlayerSessionD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V114Representative11setOnlineIdERK13SceNpOnlineId +_ZN3sce2Np9CppWebApi14SessionManager2V114Representative11setPlatformEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V114Representative12setAccountIdERKm +_ZN3sce2Np9CppWebApi14SessionManager2V114Representative8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V114RepresentativeC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V114RepresentativeC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V114RepresentativeD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V114RepresentativeD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi15getGameSessionsEiRKNS4_26ParameterToGetGameSessionsERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_27GetGameSessionsResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi16leaveGameSessionEiRKNS4_27ParameterToLeaveGameSessionERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi17deleteGameSessionEiRKNS4_28ParameterToDeleteGameSessionERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi18createGameSessionsEiRKNS4_29ParameterToCreateGameSessionsERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_28PostGameSessionsResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi21postGameSessionsTouchEiRKNS4_32ParameterToPostGameSessionsTouchERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_33PostGameSessionsTouchResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi22postGameSessionsSearchEiRKNS4_33ParameterToPostGameSessionsSearchERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_34PostGameSessionsSearchResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi22sendGameSessionMessageEiRKNS4_33ParameterToSendGameSessionMessageERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi23joinGameSessionAsPlayerEiRKNS4_34ParameterToJoinGameSessionAsPlayerERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_50PostGameSessionsSessionIdMemberPlayersResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi24setGameSessionPropertiesEiRKNS4_35ParameterToSetGameSessionPropertiesERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions10initializeEPNS1_6Common10LibContextEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions11unsetfieldsEv +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions16setincludeFieldsENS1_6Common12IntrusivePtrINS6_6VectorINS6_6StringEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions17setacceptLanguageEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions18setjoinStateFilterEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions18unsetincludeFieldsEv +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions19unsetacceptLanguageEv +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions20unsetjoinStateFilterEv +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions25setusePlayerSessionFilterEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions27unsetusePlayerSessionFilterEv +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions28setxPsnAcceptPlatformNamePs5ENS5_25XPsnAcceptPlatformNamePs5E +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions30unsetxPsnAcceptPlatformNamePs5Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions31setxPSNSESSIONMANAGERSESSIONIDSEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions7setviewEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions9setfieldsENS1_6Common12IntrusivePtrINS6_6VectorINS6_6StringEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions9terminateEv +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions9unsetviewEv +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessionsC1ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessionsC1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessionsC2ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessionsC2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessionsD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessionsD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessionsaSERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26joinGameSessionAsSpectatorEiRKNS4_37ParameterToJoinGameSessionAsSpectatorERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_53PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi27ParameterToLeaveGameSession10initializeEPNS1_6Common10LibContextEPKcSA_ +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi27ParameterToLeaveGameSession12setaccountIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi27ParameterToLeaveGameSession12setsessionIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi27ParameterToLeaveGameSession9terminateEv +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi27ParameterToLeaveGameSessionC1ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi27ParameterToLeaveGameSessionC1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi27ParameterToLeaveGameSessionC2ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi27ParameterToLeaveGameSessionC2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi27ParameterToLeaveGameSessionD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi27ParameterToLeaveGameSessionD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi27ParameterToLeaveGameSessionaSERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi27getJoinedGameSessionsByUserEiRKNS4_38ParameterToGetJoinedGameSessionsByUserERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_41GetUsersAccountIdGameSessionsResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi28ParameterToDeleteGameSession10initializeEPNS1_6Common10LibContextEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi28ParameterToDeleteGameSession12setsessionIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi28ParameterToDeleteGameSession9terminateEv +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi28ParameterToDeleteGameSessionC1ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi28ParameterToDeleteGameSessionC1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi28ParameterToDeleteGameSessionC2ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi28ParameterToDeleteGameSessionC2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi28ParameterToDeleteGameSessionD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi28ParameterToDeleteGameSessionD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi28ParameterToDeleteGameSessionaSERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessions10initializeEPNS1_6Common10LibContextENS6_12IntrusivePtrINS3_27PostGameSessionsRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessions28setxPsnAcceptPlatformNamePs5ENS5_25XPsnAcceptPlatformNamePs5E +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessions30setpostGameSessionsRequestBodyENS1_6Common12IntrusivePtrINS3_27PostGameSessionsRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessions30unsetxPsnAcceptPlatformNamePs5Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessions9terminateEv +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessionsC1ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessionsC1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessionsC2ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessionsC2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessionsD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessionsD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessionsaSERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi31putGameSessionsSearchAttributesEiRKNS4_42ParameterToPutGameSessionsSearchAttributesERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi32ParameterToPostGameSessionsTouch10initializeEPNS1_6Common10LibContextEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi32ParameterToPostGameSessionsTouch12setsessionIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi32ParameterToPostGameSessionsTouch9terminateEv +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi32ParameterToPostGameSessionsTouchC1ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi32ParameterToPostGameSessionsTouchC1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi32ParameterToPostGameSessionsTouchC2ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi32ParameterToPostGameSessionsTouchC2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi32ParameterToPostGameSessionsTouchD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi32ParameterToPostGameSessionsTouchD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi32ParameterToPostGameSessionsTouchaSERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearch10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_33PostGameSessionsSearchRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearch10unsetlimitEv +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearch14setsearchIndexEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearch36setpostGameSessionsSearchRequestBodyENS1_6Common12IntrusivePtrINS3_33PostGameSessionsSearchRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearch8setlimitEi +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearch9terminateEv +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearchC1ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearchC1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearchC2ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearchC2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearchD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearchD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearchaSERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToSendGameSessionMessage10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_50PostGameSessionsSessionIdSessionMessageRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToSendGameSessionMessage12setsessionIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToSendGameSessionMessage53setpostGameSessionsSessionIdSessionMessageRequestBodyENS1_6Common12IntrusivePtrINS3_50PostGameSessionsSessionIdSessionMessageRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToSendGameSessionMessage9terminateEv +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToSendGameSessionMessageC1ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToSendGameSessionMessageC1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToSendGameSessionMessageC2ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToSendGameSessionMessageC2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToSendGameSessionMessageD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToSendGameSessionMessageD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToSendGameSessionMessageaSERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33patchGameSessionsSearchAttributesEiRKNS4_44ParameterToPatchGameSessionsSearchAttributesERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayer10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_49PostGameSessionsSessionIdMemberPlayersRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayer12setsessionIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayer28setxPsnAcceptPlatformNamePs5ENS5_25XPsnAcceptPlatformNamePs5E +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayer30unsetxPsnAcceptPlatformNamePs5Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayer52setpostGameSessionsSessionIdMemberPlayersRequestBodyENS1_6Common12IntrusivePtrINS3_49PostGameSessionsSessionIdMemberPlayersRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayer9terminateEv +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayerC1ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayerC1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayerC2ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayerC2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayerD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayerD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayeraSERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi35ParameterToSetGameSessionProperties10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_37PatchGameSessionsSessionIdRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi35ParameterToSetGameSessionProperties12setsessionIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi35ParameterToSetGameSessionProperties40setpatchGameSessionsSessionIdRequestBodyENS1_6Common12IntrusivePtrINS3_37PatchGameSessionsSessionIdRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi35ParameterToSetGameSessionProperties9terminateEv +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi35ParameterToSetGameSessionPropertiesC1ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi35ParameterToSetGameSessionPropertiesC1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi35ParameterToSetGameSessionPropertiesC2ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi35ParameterToSetGameSessionPropertiesC2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi35ParameterToSetGameSessionPropertiesD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi35ParameterToSetGameSessionPropertiesD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi35ParameterToSetGameSessionPropertiesaSERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi36setGameSessionMemberSystemPropertiesEiRKNS4_47ParameterToSetGameSessionMemberSystemPropertiesERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectator10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_52PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectator12setsessionIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectator28setxPsnAcceptPlatformNamePs5ENS5_25XPsnAcceptPlatformNamePs5E +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectator30unsetxPsnAcceptPlatformNamePs5Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectator55setpostGameSessionsSessionIdMemberSpectatorsRequestBodyENS1_6Common12IntrusivePtrINS3_52PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectator9terminateEv +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectatorC1ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectatorC1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectatorC2ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectatorC2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectatorD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectatorD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectatoraSERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser10initializeEPNS1_6Common10LibContextEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser11unsetfieldsEv +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser12setaccountIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser15setmemberFilterEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser17setplatformFilterEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser17unsetmemberFilterEv +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser18setjoinStateFilterEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser19unsetplatformFilterEv +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser20unsetjoinStateFilterEv +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser25setusePlayerSessionFilterEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser27unsetusePlayerSessionFilterEv +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser28setxPsnAcceptPlatformNamePs5ENS5_25XPsnAcceptPlatformNamePs5E +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser30unsetxPsnAcceptPlatformNamePs5Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser9setfieldsENS1_6Common12IntrusivePtrINS6_6VectorINS6_6StringEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser9terminateEv +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUserC1ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUserC1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUserC2ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUserC2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUserD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUserD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUseraSERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi42ParameterToPutGameSessionsSearchAttributes10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_42PutGameSessionsSearchAttributesRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi42ParameterToPutGameSessionsSearchAttributes12setsessionIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi42ParameterToPutGameSessionsSearchAttributes45setputGameSessionsSearchAttributesRequestBodyENS1_6Common12IntrusivePtrINS3_42PutGameSessionsSearchAttributesRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi42ParameterToPutGameSessionsSearchAttributes9terminateEv +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi42ParameterToPutGameSessionsSearchAttributesC1ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi42ParameterToPutGameSessionsSearchAttributesC1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi42ParameterToPutGameSessionsSearchAttributesC2ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi42ParameterToPutGameSessionsSearchAttributesC2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi42ParameterToPutGameSessionsSearchAttributesD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi42ParameterToPutGameSessionsSearchAttributesD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi42ParameterToPutGameSessionsSearchAttributesaSERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi44ParameterToPatchGameSessionsSearchAttributes10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_44PatchGameSessionsSearchAttributesRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi44ParameterToPatchGameSessionsSearchAttributes12setsessionIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi44ParameterToPatchGameSessionsSearchAttributes47setpatchGameSessionsSearchAttributesRequestBodyENS1_6Common12IntrusivePtrINS3_44PatchGameSessionsSearchAttributesRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi44ParameterToPatchGameSessionsSearchAttributes9terminateEv +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi44ParameterToPatchGameSessionsSearchAttributesC1ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi44ParameterToPatchGameSessionsSearchAttributesC1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi44ParameterToPatchGameSessionsSearchAttributesC2ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi44ParameterToPatchGameSessionsSearchAttributesC2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi44ParameterToPatchGameSessionsSearchAttributesD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi44ParameterToPatchGameSessionsSearchAttributesD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi44ParameterToPatchGameSessionsSearchAttributesaSERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemProperties10initializeEPNS1_6Common10LibContextEPKcSA_NS6_12IntrusivePtrINS3_53PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemProperties12setaccountIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemProperties12setsessionIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemProperties56setpatchGameSessionsSessionIdMembersAccountIdRequestBodyENS1_6Common12IntrusivePtrINS3_53PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemProperties9terminateEv +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemPropertiesC1ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemPropertiesC1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemPropertiesC2ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemPropertiesC2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemPropertiesD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemPropertiesD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemPropertiesaSERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V115LocalizedString16getLocalizedTextEv +_ZN3sce2Np9CppWebApi14SessionManager2V115LocalizedString16setLocalizedTextERKNS_4Json6ObjectE +_ZN3sce2Np9CppWebApi14SessionManager2V115LocalizedString18setDefaultLanguageEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V115LocalizedString8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V115LocalizedStringC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V115LocalizedStringC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V115LocalizedStringD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115LocalizedStringD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115SearchCondition10unsetValueEv +_ZN3sce2Np9CppWebApi14SessionManager2V115SearchCondition11setOperatorERKNS3_14SearchOperatorE +_ZN3sce2Np9CppWebApi14SessionManager2V115SearchCondition11unsetValuesEv +_ZN3sce2Np9CppWebApi14SessionManager2V115SearchCondition12setAttributeERKNS3_15SearchAttributeE +_ZN3sce2Np9CppWebApi14SessionManager2V115SearchCondition8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V115SearchCondition8setValueEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V115SearchCondition9getValuesEv +_ZN3sce2Np9CppWebApi14SessionManager2V115SearchCondition9setValuesERKNS1_6Common6VectorINS5_6StringEEE +_ZN3sce2Np9CppWebApi14SessionManager2V115SearchConditionC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V115SearchConditionC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V115SearchConditionD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V115SearchConditionD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V116FromNonPsnMember11setPlayerIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V116FromNonPsnMember13setPlayerNameEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V116FromNonPsnMember8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V116FromNonPsnMemberC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V116FromNonPsnMemberC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V116FromNonPsnMemberD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V116FromNonPsnMemberD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10setString1EPKc +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10setString2EPKc +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10setString3EPKc +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10setString4EPKc +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10setString5EPKc +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10setString6EPKc +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10setString7EPKc +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10setString8EPKc +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10setString9EPKc +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setBoolean1ERKb +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setBoolean2ERKb +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setBoolean3ERKb +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setBoolean4ERKb +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setBoolean5ERKb +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setBoolean6ERKb +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setBoolean7ERKb +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setBoolean8ERKb +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setBoolean9ERKb +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setInteger1ERKi +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setInteger2ERKi +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setInteger3ERKi +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setInteger4ERKi +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setInteger5ERKi +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setInteger6ERKi +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setInteger7ERKi +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setInteger8ERKi +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setInteger9ERKi +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setString10EPKc +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12setBoolean10ERKb +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12setInteger10ERKi +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12unsetString1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12unsetString2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12unsetString3Ev +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12unsetString4Ev +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12unsetString5Ev +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12unsetString6Ev +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12unsetString7Ev +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12unsetString8Ev +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12unsetString9Ev +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetBoolean1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetBoolean2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetBoolean3Ev +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetBoolean4Ev +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetBoolean5Ev +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetBoolean6Ev +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetBoolean7Ev +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetBoolean8Ev +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetBoolean9Ev +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetInteger1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetInteger2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetInteger3Ev +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetInteger4Ev +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetInteger5Ev +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetInteger6Ev +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetInteger7Ev +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetInteger8Ev +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetInteger9Ev +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetString10Ev +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes14unsetBoolean10Ev +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes14unsetInteger10Ev +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributesC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributesC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributesD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributesD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117FromMemberFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_10FromMemberEEE +_ZN3sce2Np9CppWebApi14SessionManager2V117FromMemberFactory6createEPNS1_6Common10LibContextERKmRK13SceNpOnlineIdPKcPNS5_12IntrusivePtrINS3_10FromMemberEEE +_ZN3sce2Np9CppWebApi14SessionManager2V117FromMemberFactory7destroyEPNS3_10FromMemberE +_ZN3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer10setNatTypeERKi +_ZN3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer11setOnlineIdERK13SceNpOnlineId +_ZN3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer11setPlatformEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer12setAccountIdERKm +_ZN3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer12setJoinStateERKNS3_9JoinStateE +_ZN3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer12unsetNatTypeEv +_ZN3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer14setCustomData1EPKvm +_ZN3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer14unsetJoinStateEv +_ZN3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer16setJoinTimestampEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer16unsetCustomData1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayerC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayerC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayerD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayerD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi17getPlayerSessionsEiRKNS4_28ParameterToGetPlayerSessionsERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_29GetPlayerSessionsResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi18leavePlayerSessionEiRKNS4_29ParameterToLeavePlayerSessionERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi20createPlayerSessionsEiRKNS4_31ParameterToCreatePlayerSessionsERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_30PostPlayerSessionsResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi24getFriendsPlayerSessionsEiRKNS4_35ParameterToGetFriendsPlayerSessionsERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_36GetFriendsPlayerSessionsResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi24sendPlayerSessionMessageEiRKNS4_35ParameterToSendPlayerSessionMessageERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi25changePlayerSessionLeaderEiRKNS4_36ParameterToChangePlayerSessionLeaderERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi25joinPlayerSessionAsPlayerEiRKNS4_36ParameterToJoinPlayerSessionAsPlayerERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_52PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi26setPlayerSessionPropertiesEiRKNS4_37ParameterToSetPlayerSessionPropertiesERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi27getPlayerSessionInvitationsEiRKNS4_38ParameterToGetPlayerSessionInvitationsERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_54GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions10initializeEPNS1_6Common10LibContextEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions11unsetfieldsEv +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions17setacceptLanguageEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions19unsetacceptLanguageEv +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions28setxPsnAcceptPlatformNamePs5ENS5_25XPsnAcceptPlatformNamePs5E +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions30unsetxPsnAcceptPlatformNamePs5Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions31setxPSNSESSIONMANAGERSESSIONIDSEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions35setxPSNSESSIONMANAGERNONPSNCALLERIDEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions37unsetxPSNSESSIONMANAGERNONPSNCALLERIDEv +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions9setfieldsENS1_6Common12IntrusivePtrINS6_6VectorINS6_6StringEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions9terminateEv +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessionsC1ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessionsC1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessionsC2ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessionsC2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessionsD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessionsD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessionsaSERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28joinPlayerSessionAsSpectatorEiRKNS4_39ParameterToJoinPlayerSessionAsSpectatorERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_55PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28sendPlayerSessionInvitationsEiRKNS4_39ParameterToSendPlayerSessionInvitationsERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_50PostPlayerSessionsSessionIdInvitationsResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSession10initializeEPNS1_6Common10LibContextEPKcSA_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSession12setaccountIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSession12setsessionIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSession35setxPSNSESSIONMANAGERNONPSNCALLERIDEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSession37unsetxPSNSESSIONMANAGERNONPSNCALLERIDEv +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSession9terminateEv +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSessionC1ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSessionC1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSessionC2ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSessionC2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSessionD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSessionD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSessionaSERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29getJoinedPlayerSessionsByUserEiRKNS4_40ParameterToGetJoinedPlayerSessionsByUserERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_43GetUsersAccountIdPlayerSessionsResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29putPlayerSessionsNonPsnLeaderEiRKNS4_40ParameterToPutPlayerSessionsNonPsnLeaderERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessions10initializeEPNS1_6Common10LibContextENS6_12IntrusivePtrINS3_29PostPlayerSessionsRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessions28setxPsnAcceptPlatformNamePs5ENS5_25XPsnAcceptPlatformNamePs5E +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessions30unsetxPsnAcceptPlatformNamePs5Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessions32setpostPlayerSessionsRequestBodyENS1_6Common12IntrusivePtrINS3_29PostPlayerSessionsRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessions35setxPSNSESSIONMANAGERNONPSNCALLERIDEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessions37unsetxPSNSESSIONMANAGERNONPSNCALLERIDEv +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessions9terminateEv +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessionsC1ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessionsC1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessionsC2ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessionsC2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessionsD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessionsD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessionsaSERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessions10initializeEPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessions17setacceptLanguageEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessions19unsetacceptLanguageEv +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessions31setxPSNSESSIONMANAGERACCOUNTIDSEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessions33unsetxPSNSESSIONMANAGERACCOUNTIDSEv +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessions9terminateEv +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessionsC1ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessionsC1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessionsC2ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessionsC2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessionsD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessionsD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessionsaSERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToSendPlayerSessionMessage10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_52PostPlayerSessionsSessionIdSessionMessageRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToSendPlayerSessionMessage12setsessionIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToSendPlayerSessionMessage55setpostPlayerSessionsSessionIdSessionMessageRequestBodyENS1_6Common12IntrusivePtrINS3_52PostPlayerSessionsSessionIdSessionMessageRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToSendPlayerSessionMessage9terminateEv +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToSendPlayerSessionMessageC1ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToSendPlayerSessionMessageC1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToSendPlayerSessionMessageC2ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToSendPlayerSessionMessageC2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToSendPlayerSessionMessageD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToSendPlayerSessionMessageD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToSendPlayerSessionMessageaSERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeader10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_43PutPlayerSessionsSessionIdLeaderRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeader12setsessionIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeader35setxPSNSESSIONMANAGERNONPSNCALLERIDEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeader37unsetxPSNSESSIONMANAGERNONPSNCALLERIDEv +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeader46setputPlayerSessionsSessionIdLeaderRequestBodyENS1_6Common12IntrusivePtrINS3_43PutPlayerSessionsSessionIdLeaderRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeader9terminateEv +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeaderC1ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeaderC1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeaderC2ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeaderC2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeaderD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeaderD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeaderaSERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_51PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer12setsessionIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer28setxPsnAcceptPlatformNamePs5ENS5_25XPsnAcceptPlatformNamePs5E +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer30unsetxPsnAcceptPlatformNamePs5Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer34setxPSNSESSIONMANAGERREQUESTORIGINEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer36unsetxPSNSESSIONMANAGERREQUESTORIGINEv +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer39setxPSNSESSIONMANAGERREQUESTEXACTORIGINEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer41unsetxPSNSESSIONMANAGERREQUESTEXACTORIGINEv +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer54setpostPlayerSessionsSessionIdMemberPlayersRequestBodyENS1_6Common12IntrusivePtrINS3_51PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer9terminateEv +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayerC1ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayerC1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayerC2ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayerC2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayerD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayerD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayeraSERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionProperties10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_39PatchPlayerSessionsSessionIdRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionProperties12setsessionIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionProperties35setxPSNSESSIONMANAGERNONPSNCALLERIDEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionProperties37unsetxPSNSESSIONMANAGERNONPSNCALLERIDEv +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionProperties42setpatchPlayerSessionsSessionIdRequestBodyENS1_6Common12IntrusivePtrINS3_39PatchPlayerSessionsSessionIdRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionProperties9terminateEv +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionPropertiesC1ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionPropertiesC1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionPropertiesC2ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionPropertiesC2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionPropertiesD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionPropertiesD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionPropertiesaSERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations10initializeEPNS1_6Common10LibContextEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations11unsetfieldsEv +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations12setaccountIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations26setinvitationInvalidFilterEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations28setxPsnAcceptPlatformNamePs5ENS5_25XPsnAcceptPlatformNamePs5E +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations28unsetinvitationInvalidFilterEv +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations30unsetxPsnAcceptPlatformNamePs5Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations34setxPSNSESSIONMANAGERINVITATIONIDSEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations36unsetxPSNSESSIONMANAGERINVITATIONIDSEv +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations9setfieldsENS1_6Common12IntrusivePtrINS6_6VectorINS6_6StringEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations9terminateEv +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitationsC1ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitationsC1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitationsC2ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitationsC2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitationsD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitationsD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitationsaSERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38addPlayerSessionJoinableSpecifiedUsersEiRKNS4_49ParameterToAddPlayerSessionJoinableSpecifiedUsersERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_61PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38deletePlayerSessionsMemberNonPsnPlayerEiRKNS4_49ParameterToDeletePlayerSessionsMemberNonPsnPlayerERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38setPlayerSessionMemberSystemPropertiesEiRKNS4_49ParameterToSetPlayerSessionMemberSystemPropertiesERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectator10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_54PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectator12setsessionIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectator28setxPsnAcceptPlatformNamePs5ENS5_25XPsnAcceptPlatformNamePs5E +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectator30unsetxPsnAcceptPlatformNamePs5Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectator57setpostPlayerSessionsSessionIdMemberSpectatorsRequestBodyENS1_6Common12IntrusivePtrINS3_54PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectator9terminateEv +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectatorC1ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectatorC1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectatorC2ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectatorC2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectatorD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectatorD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectatoraSERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitations10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_49PostPlayerSessionsSessionIdInvitationsRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitations12setsessionIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitations35setxPSNSESSIONMANAGERNONPSNCALLERIDEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitations37unsetxPSNSESSIONMANAGERNONPSNCALLERIDEv +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitations52setpostPlayerSessionsSessionIdInvitationsRequestBodyENS1_6Common12IntrusivePtrINS3_49PostPlayerSessionsSessionIdInvitationsRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitations9terminateEv +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitationsC1ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitationsC1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitationsC2ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitationsC2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitationsD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitationsD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitationsaSERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser10initializeEPNS1_6Common10LibContextEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser12setaccountIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser15setmemberFilterEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser17setplatformFilterEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser17unsetmemberFilterEv +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser19unsetplatformFilterEv +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser28setxPsnAcceptPlatformNamePs5ENS5_25XPsnAcceptPlatformNamePs5E +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser30unsetxPsnAcceptPlatformNamePs5Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser9terminateEv +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUserC1ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUserC1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUserC2ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUserC2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUserD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUserD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUseraSERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeader10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_40PutPlayerSessionsNonPsnLeaderRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeader12setsessionIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeader35setxPSNSESSIONMANAGERNONPSNCALLERIDEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeader37unsetxPSNSESSIONMANAGERNONPSNCALLERIDEv +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeader43setputPlayerSessionsNonPsnLeaderRequestBodyENS1_6Common12IntrusivePtrINS3_40PutPlayerSessionsNonPsnLeaderRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeader9terminateEv +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeaderC1ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeaderC1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeaderC2ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeaderC2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeaderD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeaderD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeaderaSERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi41deletePlayerSessionJoinableSpecifiedUsersEiRKNS4_52ParameterToDeletePlayerSessionJoinableSpecifiedUsersERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsers10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_60PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsers12setsessionIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsers35setxPSNSESSIONMANAGERNONPSNCALLERIDEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsers37unsetxPSNSESSIONMANAGERNONPSNCALLERIDEv +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsers63setpostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyENS1_6Common12IntrusivePtrINS3_60PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsers9terminateEv +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsersC1ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsersC1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsersC2ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsersC2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsersD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsersD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsersaSERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayer10initializeEPNS1_6Common10LibContextEPKcSA_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayer11setplayerIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayer12setsessionIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayer35setxPSNSESSIONMANAGERNONPSNCALLERIDEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayer37unsetxPSNSESSIONMANAGERNONPSNCALLERIDEv +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayer9terminateEv +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayerC1ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayerC1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayerC2ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayerC2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayerD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayerD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayeraSERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemProperties10initializeEPNS1_6Common10LibContextEPKcSA_NS6_12IntrusivePtrINS3_55PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemProperties12setaccountIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemProperties12setsessionIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemProperties58setpatchPlayerSessionsSessionIdMembersAccountIdRequestBodyENS1_6Common12IntrusivePtrINS3_55PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemProperties9terminateEv +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemPropertiesC1ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemPropertiesC1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemPropertiesC2ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemPropertiesC2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemPropertiesD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemPropertiesD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemPropertiesaSERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsers10initializeEPNS1_6Common10LibContextEPKcSA_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsers12setsessionIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsers31setxPSNSESSIONMANAGERACCOUNTIDSEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsers35setxPSNSESSIONMANAGERNONPSNCALLERIDEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsers37unsetxPSNSESSIONMANAGERNONPSNCALLERIDEv +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsers9terminateEv +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsersC1ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsersC1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsersC2ERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsersC2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsersD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsersD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsersaSERS5_ +_ZN3sce2Np9CppWebApi14SessionManager2V117SearchGameSession12setSessionIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V117SearchGameSession14unsetSessionIdEv +_ZN3sce2Np9CppWebApi14SessionManager2V117SearchGameSession8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V117SearchGameSessionC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V117SearchGameSessionC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V117SearchGameSessionD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V117SearchGameSessionD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionFactory6createEPNS1_6Common10LibContextEPKcNS5_12IntrusivePtrINS3_31ResponseGameSessionMemberPlayerEEEPNSA_INS3_11GameSessionEEE +_ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_11GameSessionEEE +_ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionFactory7destroyEPNS3_11GameSessionE +_ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead11unsetMemberEv +_ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead12setSessionIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead13setMaxPlayersERKi +_ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead13setSearchableERKb +_ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead14setCustomData1EPKvm +_ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead14setCustomData2EPKvm +_ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead14setMatchmakingERKNS1_6Common12IntrusivePtrINS3_18MatchmakingForReadEEE +_ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead14setSearchIndexEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead14unsetSessionIdEv +_ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead15setJoinDisabledERKb +_ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead15unsetMaxPlayersEv +_ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead15unsetSearchableEv +_ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead16setMaxSpectatorsERKi +_ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead16unsetCustomData1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead16unsetCustomData2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead16unsetMatchmakingEv +_ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead16unsetSearchIndexEv +_ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead17setRepresentativeERKNS1_6Common12IntrusivePtrINS3_14RepresentativeEEE +_ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead17unsetJoinDisabledEv +_ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead18unsetMaxSpectatorsEv +_ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead19setCreatedTimestampEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead19setSearchAttributesERKNS1_6Common12IntrusivePtrINS3_16SearchAttributesEEE +_ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead19setUsePlayerSessionERKb +_ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead19unsetRepresentativeEv +_ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead21getSupportedPlatformsEv +_ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead21setSupportedPlatformsERKNS1_6Common6VectorINS5_6StringEEE +_ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead21unsetCreatedTimestampEv +_ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead21unsetSearchAttributesEv +_ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead21unsetUsePlayerSessionEv +_ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead23unsetSupportedPlatformsEv +_ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead28setReservationTimeoutSecondsERKi +_ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead30unsetReservationTimeoutSecondsEv +_ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead9setMemberERKNS1_6Common12IntrusivePtrINS3_24GameSessionMemberForReadEEE +_ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForReadC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForReadC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForReadD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForReadD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V118LeaderWithOnlineId11setOnlineIdERK13SceNpOnlineId +_ZN3sce2Np9CppWebApi14SessionManager2V118LeaderWithOnlineId11setPlatformEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V118LeaderWithOnlineId12setAccountIdERKm +_ZN3sce2Np9CppWebApi14SessionManager2V118LeaderWithOnlineId8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V118LeaderWithOnlineIdC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V118LeaderWithOnlineIdC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V118LeaderWithOnlineIdD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V118LeaderWithOnlineIdD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V118MatchmakingForRead10setOfferIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V118MatchmakingForRead8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V118MatchmakingForReadC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V118MatchmakingForReadC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V118MatchmakingForReadD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V118MatchmakingForReadD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession13setMaxPlayersERKi +_ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession13setSearchableERKb +_ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession14setCustomData1EPKvm +_ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession14setCustomData2EPKvm +_ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession14setSearchIndexEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession15setJoinDisabledERKb +_ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession15unsetSearchableEv +_ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession16setMaxSpectatorsERKi +_ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession16unsetCustomData1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession16unsetCustomData2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession16unsetSearchIndexEv +_ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession17unsetJoinDisabledEv +_ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession18unsetMaxSpectatorsEv +_ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession19setSearchAttributesERKNS1_6Common12IntrusivePtrINS3_16SearchAttributesEEE +_ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession19setUsePlayerSessionERKb +_ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession21getSupportedPlatformsEv +_ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession21setSupportedPlatformsERKNS1_6Common6VectorINS5_6StringEEE +_ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession21unsetSearchAttributesEv +_ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession21unsetUsePlayerSessionEv +_ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession28setReservationTimeoutSecondsERKi +_ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession30unsetReservationTimeoutSecondsEv +_ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession9setMemberERKNS1_6Common12IntrusivePtrINS3_30RequestGameSessionMemberPlayerEEE +_ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSessionC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSessionC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSessionD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSessionD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V119JoinableUserFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_12JoinableUserEEE +_ZN3sce2Np9CppWebApi14SessionManager2V119JoinableUserFactory6createEPNS1_6Common10LibContextERKmPNS5_12IntrusivePtrINS3_12JoinableUserEEE +_ZN3sce2Np9CppWebApi14SessionManager2V119JoinableUserFactory7destroyEPNS3_12JoinableUserE +_ZN3sce2Np9CppWebApi14SessionManager2V119NonPsnLeaderFactory6createEPNS1_6Common10LibContextEPKcS9_PNS5_12IntrusivePtrINS3_12NonPsnLeaderEEE +_ZN3sce2Np9CppWebApi14SessionManager2V119NonPsnLeaderFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_12NonPsnLeaderEEE +_ZN3sce2Np9CppWebApi14SessionManager2V119NonPsnLeaderFactory7destroyEPNS3_12NonPsnLeaderE +_ZN3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayer11setOnlineIdERK13SceNpOnlineId +_ZN3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayer11setPlatformEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayer12setAccountIdERKm +_ZN3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayer14setCustomData1EPKvm +_ZN3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayer16setJoinTimestampEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayer16unsetCustomData1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayer8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayerC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayerC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayerD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayerD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V120ErrorResponseFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_5ErrorEEEPNS8_INS3_13ErrorResponseEEE +_ZN3sce2Np9CppWebApi14SessionManager2V120ErrorResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_13ErrorResponseEEE +_ZN3sce2Np9CppWebApi14SessionManager2V120ErrorResponseFactory7destroyEPNS3_13ErrorResponseE +_ZN3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator10setNatTypeERKi +_ZN3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator11setOnlineIdERK13SceNpOnlineId +_ZN3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator11setPlatformEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator12setAccountIdERKm +_ZN3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator12setJoinStateERKNS3_9JoinStateE +_ZN3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator12unsetNatTypeEv +_ZN3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator14setCustomData1EPKvm +_ZN3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator14unsetJoinStateEv +_ZN3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator16setJoinTimestampEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator16unsetCustomData1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectatorC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectatorC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectatorD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectatorD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionFactory6createEPNS1_6Common10LibContextEPKcNS5_12IntrusivePtrINS3_33ResponsePlayerSessionMemberPlayerEEEPNSA_INS3_13PlayerSessionEEE +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_13PlayerSessionEEE +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionFactory7destroyEPNS3_13PlayerSessionE +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead11unsetLeaderEv +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead11unsetMemberEv +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead12setSessionIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead13setMaxPlayersERKi +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead14setCustomData1EPKvm +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead14setCustomData2EPKvm +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead14setSessionNameEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead14unsetSessionIdEv +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead15setJoinDisabledERKb +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead15setNonPsnLeaderERKNS1_6Common12IntrusivePtrINS3_12NonPsnLeaderEEE +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead15unsetMaxPlayersEv +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead16setMaxSpectatorsERKi +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead16setSwapSupportedERKb +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead16unsetCustomData1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead16unsetCustomData2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead16unsetSessionNameEv +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead17unsetJoinDisabledEv +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead17unsetNonPsnLeaderEv +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead18setNonPsnSupportedERKb +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead18unsetMaxSpectatorsEv +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead18unsetSwapSupportedEv +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead19getLeaderPrivilegesEv +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead19setCreatedTimestampEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead19setJoinableUserTypeERKNS3_22CustomJoinableUserTypeE +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead19setLeaderPrivilegesERKNS1_6Common6VectorINS5_6StringEEE +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead20setInvitableUserTypeERKNS3_23CustomInvitableUserTypeE +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead20unsetNonPsnSupportedEv +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead21getSupportedPlatformsEv +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead21setSupportedPlatformsERKNS1_6Common6VectorINS5_6StringEEE +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead21unsetCreatedTimestampEv +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead21unsetJoinableUserTypeEv +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead21unsetLeaderPrivilegesEv +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead22getDisableSystemUiMenuEv +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead22setDisableSystemUiMenuERKNS1_6Common6VectorINS5_6StringEEE +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead22unsetInvitableUserTypeEv +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead23setLocalizedSessionNameERKNS1_6Common12IntrusivePtrINS3_15LocalizedStringEEE +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead23unsetSupportedPlatformsEv +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead24unsetDisableSystemUiMenuEv +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead25getJoinableSpecifiedUsersEv +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead25setJoinableSpecifiedUsersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_12JoinableUserEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead25unsetLocalizedSessionNameEv +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead27unsetJoinableSpecifiedUsersEv +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead28getExclusiveLeaderPrivilegesEv +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead28setExclusiveLeaderPrivilegesERKNS1_6Common6VectorINS5_6StringEEE +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead30unsetExclusiveLeaderPrivilegesEv +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead9setLeaderERKNS1_6Common12IntrusivePtrINS3_18LeaderWithOnlineIdEEE +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead9setMemberERKNS1_6Common12IntrusivePtrINS3_26PlayerSessionMemberForReadEEE +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForReadC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForReadC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForReadD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForReadD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession13setMaxPlayersERKi +_ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession14setCustomData1EPKvm +_ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession14setCustomData2EPKvm +_ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession15setJoinDisabledERKb +_ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession16setMaxSpectatorsERKi +_ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession16setSwapSupportedERKb +_ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession16unsetCustomData1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession16unsetCustomData2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession17setExpirationTimeERKi +_ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession17unsetJoinDisabledEv +_ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession18setNonPsnSupportedERKb +_ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession18unsetMaxSpectatorsEv +_ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession18unsetSwapSupportedEv +_ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession19getLeaderPrivilegesEv +_ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession19setJoinableUserTypeERKNS3_16JoinableUserTypeE +_ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession19setLeaderPrivilegesERKNS1_6Common6VectorINS5_6StringEEE +_ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession19unsetExpirationTimeEv +_ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession20setInvitableUserTypeERKNS3_17InvitableUserTypeE +_ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession20unsetNonPsnSupportedEv +_ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession21getSupportedPlatformsEv +_ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession21setSupportedPlatformsERKNS1_6Common6VectorINS5_6StringEEE +_ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession21unsetJoinableUserTypeEv +_ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession21unsetLeaderPrivilegesEv +_ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession22getDisableSystemUiMenuEv +_ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession22setDisableSystemUiMenuERKNS1_6Common6VectorINS5_6StringEEE +_ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession22unsetInvitableUserTypeEv +_ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession23setLocalizedSessionNameERKNS1_6Common12IntrusivePtrINS3_15LocalizedStringEEE +_ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession24unsetDisableSystemUiMenuEv +_ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession28getExclusiveLeaderPrivilegesEv +_ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession28setExclusiveLeaderPrivilegesERKNS1_6Common6VectorINS5_6StringEEE +_ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession30unsetExclusiveLeaderPrivilegesEv +_ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession9setMemberERKNS1_6Common12IntrusivePtrINS3_32RequestPlayerSessionMemberPlayerEEE +_ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSessionC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSessionC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSessionD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSessionD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V121RepresentativeFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_14RepresentativeEEE +_ZN3sce2Np9CppWebApi14SessionManager2V121RepresentativeFactory6createEPNS1_6Common10LibContextERKmRK13SceNpOnlineIdPKcPNS5_12IntrusivePtrINS3_14RepresentativeEEE +_ZN3sce2Np9CppWebApi14SessionManager2V121RepresentativeFactory7destroyEPNS3_14RepresentativeE +_ZN3sce2Np9CppWebApi14SessionManager2V122GameSessionPushContext16setPushContextIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V122GameSessionPushContext8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V122GameSessionPushContextC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V122GameSessionPushContextC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V122GameSessionPushContextD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V122GameSessionPushContextD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V122LocalizedStringFactory6createEPNS1_6Common10LibContextEPKcNS_4Json6ObjectEPNS5_12IntrusivePtrINS3_15LocalizedStringEEE +_ZN3sce2Np9CppWebApi14SessionManager2V122LocalizedStringFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_15LocalizedStringEEE +_ZN3sce2Np9CppWebApi14SessionManager2V122LocalizedStringFactory7destroyEPNS3_15LocalizedStringE +_ZN3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectator11setOnlineIdERK13SceNpOnlineId +_ZN3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectator11setPlatformEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectator12setAccountIdERKm +_ZN3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectator14setCustomData1EPKvm +_ZN3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectator16setJoinTimestampEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectator16unsetCustomData1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectator8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectatorC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectatorC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectatorD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectatorD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V122SearchConditionFactory6createEPNS1_6Common10LibContextENS3_15SearchAttributeENS3_14SearchOperatorEPNS5_12IntrusivePtrINS3_15SearchConditionEEE +_ZN3sce2Np9CppWebApi14SessionManager2V122SearchConditionFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_15SearchConditionEEE +_ZN3sce2Np9CppWebApi14SessionManager2V122SearchConditionFactory7destroyEPNS3_15SearchConditionE +_ZN3sce2Np9CppWebApi14SessionManager2V123FromNonPsnMemberFactory6createEPNS1_6Common10LibContextEPKcS9_PNS5_12IntrusivePtrINS3_16FromNonPsnMemberEEE +_ZN3sce2Np9CppWebApi14SessionManager2V123FromNonPsnMemberFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_16FromNonPsnMemberEEE +_ZN3sce2Np9CppWebApi14SessionManager2V123FromNonPsnMemberFactory7destroyEPNS3_16FromNonPsnMemberE +_ZN3sce2Np9CppWebApi14SessionManager2V123MemberWithMultiPlatform11setPlatformEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V123MemberWithMultiPlatform12setAccountIdERKm +_ZN3sce2Np9CppWebApi14SessionManager2V123MemberWithMultiPlatform8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V123MemberWithMultiPlatformC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V123MemberWithMultiPlatformC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V123MemberWithMultiPlatformD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V123MemberWithMultiPlatformD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V123SearchAttributesFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_16SearchAttributesEEE +_ZN3sce2Np9CppWebApi14SessionManager2V123SearchAttributesFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_16SearchAttributesEEE +_ZN3sce2Np9CppWebApi14SessionManager2V123SearchAttributesFactory7destroyEPNS3_16SearchAttributesE +_ZN3sce2Np9CppWebApi14SessionManager2V124GameSessionMemberForRead10getPlayersEv +_ZN3sce2Np9CppWebApi14SessionManager2V124GameSessionMemberForRead10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_17GameSessionPlayerEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V124GameSessionMemberForRead12unsetPlayersEv +_ZN3sce2Np9CppWebApi14SessionManager2V124GameSessionMemberForRead13getSpectatorsEv +_ZN3sce2Np9CppWebApi14SessionManager2V124GameSessionMemberForRead13setSpectatorsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_20GameSessionSpectatorEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V124GameSessionMemberForRead15unsetSpectatorsEv +_ZN3sce2Np9CppWebApi14SessionManager2V124GameSessionMemberForRead8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V124GameSessionMemberForReadC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V124GameSessionMemberForReadC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V124GameSessionMemberForReadD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V124GameSessionMemberForReadD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V124GameSessionPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_17GameSessionPlayerEEE +_ZN3sce2Np9CppWebApi14SessionManager2V124GameSessionPlayerFactory6createEPNS1_6Common10LibContextERKmRK13SceNpOnlineIdPKcSE_PNS5_12IntrusivePtrINS3_17GameSessionPlayerEEE +_ZN3sce2Np9CppWebApi14SessionManager2V124GameSessionPlayerFactory7destroyEPNS3_17GameSessionPlayerE +_ZN3sce2Np9CppWebApi14SessionManager2V124PlayerSessionPushContext16setPushContextIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V124PlayerSessionPushContext8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V124PlayerSessionPushContextC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V124PlayerSessionPushContextC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V124PlayerSessionPushContextD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V124PlayerSessionPushContextD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer10setNatTypeERKi +_ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer11setPlatformEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer12setAccountIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer12setJoinStateERKNS3_16InitialJoinStateE +_ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer12unsetNatTypeEv +_ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer14setCustomData1EPKvm +_ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer14unsetJoinStateEv +_ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer15getPushContextsEv +_ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer15setPushContextsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_22GameSessionPushContextEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer16unsetCustomData1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer17unsetPushContextsEv +_ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayerC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayerC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayerD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayerD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V124SearchGameSessionFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_17SearchGameSessionEEE +_ZN3sce2Np9CppWebApi14SessionManager2V124SearchGameSessionFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_17SearchGameSessionEEE +_ZN3sce2Np9CppWebApi14SessionManager2V124SearchGameSessionFactory7destroyEPNS3_17SearchGameSessionE +_ZN3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession11setPlatformEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession12setSessionIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession13unsetPlatformEv +_ZN3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession14setSessionNameEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession14unsetSessionIdEv +_ZN3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession16unsetSessionNameEv +_ZN3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession23setPlayerJoinableStatusERKNS3_20PlayerJoinableStatusE +_ZN3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession25unsetPlayerJoinableStatusEv +_ZN3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession26setSpectatorJoinableStatusERKNS3_23SpectatorJoinableStatusE +_ZN3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession28unsetSpectatorJoinableStatusEv +_ZN3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSessionC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSessionC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSessionD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSessionD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V125GameSessionForReadFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_18GameSessionForReadEEE +_ZN3sce2Np9CppWebApi14SessionManager2V125GameSessionForReadFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_18GameSessionForReadEEE +_ZN3sce2Np9CppWebApi14SessionManager2V125GameSessionForReadFactory7destroyEPNS3_18GameSessionForReadE +_ZN3sce2Np9CppWebApi14SessionManager2V125LeaderWithOnlineIdFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_18LeaderWithOnlineIdEEE +_ZN3sce2Np9CppWebApi14SessionManager2V125LeaderWithOnlineIdFactory6createEPNS1_6Common10LibContextERKmRK13SceNpOnlineIdPKcPNS5_12IntrusivePtrINS3_18LeaderWithOnlineIdEEE +_ZN3sce2Np9CppWebApi14SessionManager2V125LeaderWithOnlineIdFactory7destroyEPNS3_18LeaderWithOnlineIdE +_ZN3sce2Np9CppWebApi14SessionManager2V125MatchmakingForReadFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_18MatchmakingForReadEEE +_ZN3sce2Np9CppWebApi14SessionManager2V125MatchmakingForReadFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_18MatchmakingForReadEEE +_ZN3sce2Np9CppWebApi14SessionManager2V125MatchmakingForReadFactory7destroyEPNS3_18MatchmakingForReadE +_ZN3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayer11setPlayerIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayer13setPlayerNameEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayer14setCustomData1EPKvm +_ZN3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayer16setJoinTimestampEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayer16unsetCustomData1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayer8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayerC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayerC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayerD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayerD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V125RequestGameSessionFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_18RequestGameSessionEEE +_ZN3sce2Np9CppWebApi14SessionManager2V125RequestGameSessionFactory6createEPNS1_6Common10LibContextEiNS5_12IntrusivePtrINS3_30RequestGameSessionMemberPlayerEEERKNS5_6VectorINS5_6StringEEEPNS8_INS3_18RequestGameSessionEEE +_ZN3sce2Np9CppWebApi14SessionManager2V125RequestGameSessionFactory7destroyEPNS3_18RequestGameSessionE +_ZN3sce2Np9CppWebApi14SessionManager2V125ResponseGameSessionPlayer11setPlatformEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V125ResponseGameSessionPlayer12setAccountIdERKm +_ZN3sce2Np9CppWebApi14SessionManager2V125ResponseGameSessionPlayer8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V125ResponseGameSessionPlayerC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V125ResponseGameSessionPlayerC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V125ResponseGameSessionPlayerD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V125ResponseGameSessionPlayerD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForRead10getPlayersEv +_ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForRead10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_19PlayerSessionPlayerEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForRead12unsetPlayersEv +_ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForRead13getSpectatorsEv +_ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForRead13setSpectatorsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_22PlayerSessionSpectatorEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForRead15unsetSpectatorsEv +_ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForRead16getNonPsnPlayersEv +_ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForRead16setNonPsnPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_25PlayerSessionNonPsnPlayerEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForRead18unsetNonPsnPlayersEv +_ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForRead8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForReadC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForReadC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForReadD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForReadD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_19PlayerSessionPlayerEEE +_ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionPlayerFactory6createEPNS1_6Common10LibContextERKmRK13SceNpOnlineIdPKcSE_PNS5_12IntrusivePtrINS3_19PlayerSessionPlayerEEE +_ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionPlayerFactory7destroyEPNS3_19PlayerSessionPlayerE +_ZN3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayer11setPlatformEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayer12setAccountIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayer14setCustomData1EPKvm +_ZN3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayer15getPushContextsEv +_ZN3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayer15setPushContextsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_24PlayerSessionPushContextEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayer16unsetCustomData1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayer17unsetPushContextsEv +_ZN3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayer8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayerC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayerC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayerD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayerD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V127GameSessionSpectatorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_20GameSessionSpectatorEEE +_ZN3sce2Np9CppWebApi14SessionManager2V127GameSessionSpectatorFactory6createEPNS1_6Common10LibContextERKmRK13SceNpOnlineIdPKcSE_PNS5_12IntrusivePtrINS3_20GameSessionSpectatorEEE +_ZN3sce2Np9CppWebApi14SessionManager2V127GameSessionSpectatorFactory7destroyEPNS3_20GameSessionSpectatorE +_ZN3sce2Np9CppWebApi14SessionManager2V127GetGameSessionsResponseBody15getGameSessionsEv +_ZN3sce2Np9CppWebApi14SessionManager2V127GetGameSessionsResponseBody15setGameSessionsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_18GameSessionForReadEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V127GetGameSessionsResponseBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V127GetGameSessionsResponseBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V127GetGameSessionsResponseBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V127GetGameSessionsResponseBodyD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V127GetGameSessionsResponseBodyD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V127PlayerSessionForReadFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_20PlayerSessionForReadEEE +_ZN3sce2Np9CppWebApi14SessionManager2V127PlayerSessionForReadFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_20PlayerSessionForReadEEE +_ZN3sce2Np9CppWebApi14SessionManager2V127PlayerSessionForReadFactory7destroyEPNS3_20PlayerSessionForReadE +_ZN3sce2Np9CppWebApi14SessionManager2V127PostGameSessionsRequestBody15getGameSessionsEv +_ZN3sce2Np9CppWebApi14SessionManager2V127PostGameSessionsRequestBody15setGameSessionsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_18RequestGameSessionEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V127PostGameSessionsRequestBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V127PostGameSessionsRequestBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V127PostGameSessionsRequestBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V127PostGameSessionsRequestBodyD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V127PostGameSessionsRequestBodyD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator10setNatTypeERKi +_ZN3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator11setPlatformEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator12setAccountIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator12unsetNatTypeEv +_ZN3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator14setCustomData1EPKvm +_ZN3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator15getPushContextsEv +_ZN3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator15setPushContextsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_22GameSessionPushContextEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator16unsetCustomData1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator17unsetPushContextsEv +_ZN3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectatorC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectatorC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectatorD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectatorD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V127RequestPlayerSessionFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_20RequestPlayerSessionEEE +_ZN3sce2Np9CppWebApi14SessionManager2V127RequestPlayerSessionFactory6createEPNS1_6Common10LibContextEiNS5_12IntrusivePtrINS3_32RequestPlayerSessionMemberPlayerEEERKNS5_6VectorINS5_6StringEEENS8_INS3_15LocalizedStringEEEPNS8_INS3_20RequestPlayerSessionEEE +_ZN3sce2Np9CppWebApi14SessionManager2V127RequestPlayerSessionFactory7destroyEPNS3_20RequestPlayerSessionE +_ZN3sce2Np9CppWebApi14SessionManager2V127ResponsePlayerSessionPlayer11setPlatformEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V127ResponsePlayerSessionPlayer12setAccountIdERKm +_ZN3sce2Np9CppWebApi14SessionManager2V127ResponsePlayerSessionPlayer8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V127ResponsePlayerSessionPlayerC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V127ResponsePlayerSessionPlayerC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V127ResponsePlayerSessionPlayerD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V127ResponsePlayerSessionPlayerD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V128PostGameSessionsResponseBody15getGameSessionsEv +_ZN3sce2Np9CppWebApi14SessionManager2V128PostGameSessionsResponseBody15setGameSessionsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_11GameSessionEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V128PostGameSessionsResponseBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V128PostGameSessionsResponseBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V128PostGameSessionsResponseBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V128PostGameSessionsResponseBodyD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V128PostGameSessionsResponseBodyD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer10setNatTypeERKi +_ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer11setPlatformEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer12setAccountIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer12setJoinStateERKNS3_16InitialJoinStateE +_ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer12unsetNatTypeEv +_ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer14setCustomData1EPKvm +_ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer14unsetJoinStateEv +_ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer15getPushContextsEv +_ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer15setPushContextsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_22GameSessionPushContextEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer16unsetCustomData1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer17unsetPushContextsEv +_ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayerC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayerC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayerD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayerD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V128ResponseGameSessionSpectator11setPlatformEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V128ResponseGameSessionSpectator12setAccountIdERKm +_ZN3sce2Np9CppWebApi14SessionManager2V128ResponseGameSessionSpectator8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V128ResponseGameSessionSpectatorC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V128ResponseGameSessionSpectatorC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V128ResponseGameSessionSpectatorD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V128ResponseGameSessionSpectatorD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V129GameSessionPushContextFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_22GameSessionPushContextEEE +_ZN3sce2Np9CppWebApi14SessionManager2V129GameSessionPushContextFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_22GameSessionPushContextEEE +_ZN3sce2Np9CppWebApi14SessionManager2V129GameSessionPushContextFactory7destroyEPNS3_22GameSessionPushContextE +_ZN3sce2Np9CppWebApi14SessionManager2V129GetPlayerSessionsResponseBody17getPlayerSessionsEv +_ZN3sce2Np9CppWebApi14SessionManager2V129GetPlayerSessionsResponseBody17setPlayerSessionsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_20PlayerSessionForReadEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V129GetPlayerSessionsResponseBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V129GetPlayerSessionsResponseBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V129GetPlayerSessionsResponseBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V129GetPlayerSessionsResponseBodyD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V129GetPlayerSessionsResponseBodyD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform11setPlatformEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform12setJoinStateERKNS3_9JoinStateE +_ZN3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform12setSessionIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform13unsetPlatformEv +_ZN3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform14unsetJoinStateEv +_ZN3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform14unsetSessionIdEv +_ZN3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform19setUsePlayerSessionERKb +_ZN3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform21unsetUsePlayerSessionEv +_ZN3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatformC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatformC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatformD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatformD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V129PlayerSessionSpectatorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_22PlayerSessionSpectatorEEE +_ZN3sce2Np9CppWebApi14SessionManager2V129PlayerSessionSpectatorFactory6createEPNS1_6Common10LibContextERKmRK13SceNpOnlineIdPKcSE_PNS5_12IntrusivePtrINS3_22PlayerSessionSpectatorEEE +_ZN3sce2Np9CppWebApi14SessionManager2V129PlayerSessionSpectatorFactory7destroyEPNS3_22PlayerSessionSpectatorE +_ZN3sce2Np9CppWebApi14SessionManager2V129PostPlayerSessionsRequestBody17getPlayerSessionsEv +_ZN3sce2Np9CppWebApi14SessionManager2V129PostPlayerSessionsRequestBody17setPlayerSessionsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_20RequestPlayerSessionEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V129PostPlayerSessionsRequestBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V129PostPlayerSessionsRequestBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V129PostPlayerSessionsRequestBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V129PostPlayerSessionsRequestBodyD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V129PostPlayerSessionsRequestBodyD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectator11setPlatformEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectator12setAccountIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectator14setCustomData1EPKvm +_ZN3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectator15getPushContextsEv +_ZN3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectator15setPushContextsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_24PlayerSessionPushContextEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectator16unsetCustomData1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectator17unsetPushContextsEv +_ZN3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectator8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectatorC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectatorC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectatorD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectatorD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V12To12setAccountIdERKm +_ZN3sce2Np9CppWebApi14SessionManager2V12To8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V12ToC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V12ToC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V12ToD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V12ToD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V130MemberWithMultiPlatformFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_23MemberWithMultiPlatformEEE +_ZN3sce2Np9CppWebApi14SessionManager2V130MemberWithMultiPlatformFactory6createEPNS1_6Common10LibContextERKmPKcPNS5_12IntrusivePtrINS3_23MemberWithMultiPlatformEEE +_ZN3sce2Np9CppWebApi14SessionManager2V130MemberWithMultiPlatformFactory7destroyEPNS3_23MemberWithMultiPlatformE +_ZN3sce2Np9CppWebApi14SessionManager2V130PostPlayerSessionsResponseBody17getPlayerSessionsEv +_ZN3sce2Np9CppWebApi14SessionManager2V130PostPlayerSessionsResponseBody17setPlayerSessionsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_13PlayerSessionEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V130PostPlayerSessionsResponseBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V130PostPlayerSessionsResponseBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V130PostPlayerSessionsResponseBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V130PostPlayerSessionsResponseBodyD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V130PostPlayerSessionsResponseBodyD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V130RequestGameSessionMemberPlayer10getPlayersEv +_ZN3sce2Np9CppWebApi14SessionManager2V130RequestGameSessionMemberPlayer10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_24RequestGameSessionPlayerEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V130RequestGameSessionMemberPlayer8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V130RequestGameSessionMemberPlayerC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V130RequestGameSessionMemberPlayerC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V130RequestGameSessionMemberPlayerD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V130RequestGameSessionMemberPlayerD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V130RequestPlayerSessionInvitation5setToERKNS1_6Common12IntrusivePtrINS3_2ToEEE +_ZN3sce2Np9CppWebApi14SessionManager2V130RequestPlayerSessionInvitation8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V130RequestPlayerSessionInvitationC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V130RequestPlayerSessionInvitationC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V130RequestPlayerSessionInvitationD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V130RequestPlayerSessionInvitationD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V130ResponsePlayerSessionSpectator11setPlatformEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V130ResponsePlayerSessionSpectator12setAccountIdERKm +_ZN3sce2Np9CppWebApi14SessionManager2V130ResponsePlayerSessionSpectator8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V130ResponsePlayerSessionSpectatorC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V130ResponsePlayerSessionSpectatorC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V130ResponsePlayerSessionSpectatorD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V130ResponsePlayerSessionSpectatorD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V131GameSessionMemberForReadFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_24GameSessionMemberForReadEEE +_ZN3sce2Np9CppWebApi14SessionManager2V131GameSessionMemberForReadFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_24GameSessionMemberForReadEEE +_ZN3sce2Np9CppWebApi14SessionManager2V131GameSessionMemberForReadFactory7destroyEPNS3_24GameSessionMemberForReadE +_ZN3sce2Np9CppWebApi14SessionManager2V131JoinedPlayerSessionWithPlatform11setPlatformEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V131JoinedPlayerSessionWithPlatform12setSessionIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V131JoinedPlayerSessionWithPlatform13unsetPlatformEv +_ZN3sce2Np9CppWebApi14SessionManager2V131JoinedPlayerSessionWithPlatform14unsetSessionIdEv +_ZN3sce2Np9CppWebApi14SessionManager2V131JoinedPlayerSessionWithPlatform8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V131JoinedPlayerSessionWithPlatformC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V131JoinedPlayerSessionWithPlatformC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V131JoinedPlayerSessionWithPlatformD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V131JoinedPlayerSessionWithPlatformD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V131PlayerSessionPushContextFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_24PlayerSessionPushContextEEE +_ZN3sce2Np9CppWebApi14SessionManager2V131PlayerSessionPushContextFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_24PlayerSessionPushContextEEE +_ZN3sce2Np9CppWebApi14SessionManager2V131PlayerSessionPushContextFactory7destroyEPNS3_24PlayerSessionPushContextE +_ZN3sce2Np9CppWebApi14SessionManager2V131RequestGameSessionPlayerFactory6createEPNS1_6Common10LibContextEPKcS9_PNS5_12IntrusivePtrINS3_24RequestGameSessionPlayerEEE +_ZN3sce2Np9CppWebApi14SessionManager2V131RequestGameSessionPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_24RequestGameSessionPlayerEEE +_ZN3sce2Np9CppWebApi14SessionManager2V131RequestGameSessionPlayerFactory7destroyEPNS3_24RequestGameSessionPlayerE +_ZN3sce2Np9CppWebApi14SessionManager2V131ResponseGameSessionMemberPlayer10getPlayersEv +_ZN3sce2Np9CppWebApi14SessionManager2V131ResponseGameSessionMemberPlayer10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_25ResponseGameSessionPlayerEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V131ResponseGameSessionMemberPlayer8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V131ResponseGameSessionMemberPlayerC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V131ResponseGameSessionMemberPlayerC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V131ResponseGameSessionMemberPlayerD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V131ResponseGameSessionMemberPlayerD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V131ResponsePlayerSessionInvitation15setInvitationIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V131ResponsePlayerSessionInvitation8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V131ResponsePlayerSessionInvitationC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V131ResponsePlayerSessionInvitationC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V131ResponsePlayerSessionInvitationD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V131ResponsePlayerSessionInvitationD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V132FriendJoinedPlayerSessionFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_25FriendJoinedPlayerSessionEEE +_ZN3sce2Np9CppWebApi14SessionManager2V132FriendJoinedPlayerSessionFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_25FriendJoinedPlayerSessionEEE +_ZN3sce2Np9CppWebApi14SessionManager2V132FriendJoinedPlayerSessionFactory7destroyEPNS3_25FriendJoinedPlayerSessionE +_ZN3sce2Np9CppWebApi14SessionManager2V132PlayerSessionNonPsnPlayerFactory6createEPNS1_6Common10LibContextEPKcS9_S9_PNS5_12IntrusivePtrINS3_25PlayerSessionNonPsnPlayerEEE +_ZN3sce2Np9CppWebApi14SessionManager2V132PlayerSessionNonPsnPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_25PlayerSessionNonPsnPlayerEEE +_ZN3sce2Np9CppWebApi14SessionManager2V132PlayerSessionNonPsnPlayerFactory7destroyEPNS3_25PlayerSessionNonPsnPlayerE +_ZN3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayer11setPlatformEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayer12setAccountIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayer14setCustomData1EPKvm +_ZN3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayer15getPushContextsEv +_ZN3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayer15setPushContextsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_24PlayerSessionPushContextEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayer16unsetCustomData1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayer8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayerC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayerC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayerD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayerD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V132RequestPlayerSessionMemberPlayer10getPlayersEv +_ZN3sce2Np9CppWebApi14SessionManager2V132RequestPlayerSessionMemberPlayer10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_32RequestCreatePlayerSessionPlayerEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V132RequestPlayerSessionMemberPlayer12unsetPlayersEv +_ZN3sce2Np9CppWebApi14SessionManager2V132RequestPlayerSessionMemberPlayer16getNonPsnPlayersEv +_ZN3sce2Np9CppWebApi14SessionManager2V132RequestPlayerSessionMemberPlayer16setNonPsnPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_38RequestCreatePlayerSessionNonPsnPlayerEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V132RequestPlayerSessionMemberPlayer18unsetNonPsnPlayersEv +_ZN3sce2Np9CppWebApi14SessionManager2V132RequestPlayerSessionMemberPlayer8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V132RequestPlayerSessionMemberPlayerC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V132RequestPlayerSessionMemberPlayerC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V132RequestPlayerSessionMemberPlayerD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V132RequestPlayerSessionMemberPlayerD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V132ResponseGameSessionPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_25ResponseGameSessionPlayerEEE +_ZN3sce2Np9CppWebApi14SessionManager2V132ResponseGameSessionPlayerFactory6createEPNS1_6Common10LibContextERKmPKcPNS5_12IntrusivePtrINS3_25ResponseGameSessionPlayerEEE +_ZN3sce2Np9CppWebApi14SessionManager2V132ResponseGameSessionPlayerFactory7destroyEPNS3_25ResponseGameSessionPlayerE +_ZN3sce2Np9CppWebApi14SessionManager2V133PlayerSessionMemberForReadFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_26PlayerSessionMemberForReadEEE +_ZN3sce2Np9CppWebApi14SessionManager2V133PlayerSessionMemberForReadFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_26PlayerSessionMemberForReadEEE +_ZN3sce2Np9CppWebApi14SessionManager2V133PlayerSessionMemberForReadFactory7destroyEPNS3_26PlayerSessionMemberForReadE +_ZN3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsSearchRequestBody13getConditionsEv +_ZN3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsSearchRequestBody13setConditionsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_15SearchConditionEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsSearchRequestBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsSearchRequestBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsSearchRequestBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsSearchRequestBodyD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsSearchRequestBodyD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsTouchResponseBody18setTouchedDateTimeERK10SceRtcTick +_ZN3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsTouchResponseBody20unsetTouchedDateTimeEv +_ZN3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsTouchResponseBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsTouchResponseBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsTouchResponseBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsTouchResponseBodyD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsTouchResponseBodyD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V133RequestPlayerSessionPlayerFactory6createEPNS1_6Common10LibContextEPKcS9_PNS5_12IntrusivePtrINS3_26RequestPlayerSessionPlayerEEE +_ZN3sce2Np9CppWebApi14SessionManager2V133RequestPlayerSessionPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_26RequestPlayerSessionPlayerEEE +_ZN3sce2Np9CppWebApi14SessionManager2V133RequestPlayerSessionPlayerFactory7destroyEPNS3_26RequestPlayerSessionPlayerE +_ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionMemberPlayer10getPlayersEv +_ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionMemberPlayer10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_27ResponsePlayerSessionPlayerEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionMemberPlayer12unsetPlayersEv +_ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionMemberPlayer16getNonPsnPlayersEv +_ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionMemberPlayer16setNonPsnPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_33ResponsePlayerSessionNonPsnPlayerEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionMemberPlayer18unsetNonPsnPlayersEv +_ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionMemberPlayer8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionMemberPlayerC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionMemberPlayerC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionMemberPlayerD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionMemberPlayerD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionNonPsnPlayer11setPlayerIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionNonPsnPlayer8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionNonPsnPlayerC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionNonPsnPlayerC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionNonPsnPlayerD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionNonPsnPlayerD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V134GetGameSessionsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_18GameSessionForReadEEEEEPNS9_INS3_27GetGameSessionsResponseBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V134GetGameSessionsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_27GetGameSessionsResponseBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V134GetGameSessionsResponseBodyFactory7destroyEPNS3_27GetGameSessionsResponseBodyE +_ZN3sce2Np9CppWebApi14SessionManager2V134PostGameSessionsRequestBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_18RequestGameSessionEEEEEPNS9_INS3_27PostGameSessionsRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V134PostGameSessionsRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_27PostGameSessionsRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V134PostGameSessionsRequestBodyFactory7destroyEPNS3_27PostGameSessionsRequestBodyE +_ZN3sce2Np9CppWebApi14SessionManager2V134PostGameSessionsSearchResponseBody15getGameSessionsEv +_ZN3sce2Np9CppWebApi14SessionManager2V134PostGameSessionsSearchResponseBody15setGameSessionsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_17SearchGameSessionEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V134PostGameSessionsSearchResponseBody17unsetGameSessionsEv +_ZN3sce2Np9CppWebApi14SessionManager2V134PostGameSessionsSearchResponseBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V134PostGameSessionsSearchResponseBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V134PostGameSessionsSearchResponseBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V134PostGameSessionsSearchResponseBodyD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V134PostGameSessionsSearchResponseBodyD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V134RequestGameSessionSpectatorFactory6createEPNS1_6Common10LibContextEPKcS9_PNS5_12IntrusivePtrINS3_27RequestGameSessionSpectatorEEE +_ZN3sce2Np9CppWebApi14SessionManager2V134RequestGameSessionSpectatorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_27RequestGameSessionSpectatorEEE +_ZN3sce2Np9CppWebApi14SessionManager2V134RequestGameSessionSpectatorFactory7destroyEPNS3_27RequestGameSessionSpectatorE +_ZN3sce2Np9CppWebApi14SessionManager2V134ResponsePlayerSessionPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_27ResponsePlayerSessionPlayerEEE +_ZN3sce2Np9CppWebApi14SessionManager2V134ResponsePlayerSessionPlayerFactory6createEPNS1_6Common10LibContextERKmPKcPNS5_12IntrusivePtrINS3_27ResponsePlayerSessionPlayerEEE +_ZN3sce2Np9CppWebApi14SessionManager2V134ResponsePlayerSessionPlayerFactory7destroyEPNS3_27ResponsePlayerSessionPlayerE +_ZN3sce2Np9CppWebApi14SessionManager2V135PostGameSessionsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_11GameSessionEEEEEPNS9_INS3_28PostGameSessionsResponseBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V135PostGameSessionsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_28PostGameSessionsResponseBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V135PostGameSessionsResponseBodyFactory7destroyEPNS3_28PostGameSessionsResponseBodyE +_ZN3sce2Np9CppWebApi14SessionManager2V135RequestJoinGameSessionPlayerFactory6createEPNS1_6Common10LibContextEPKcS9_PNS5_12IntrusivePtrINS3_28RequestJoinGameSessionPlayerEEE +_ZN3sce2Np9CppWebApi14SessionManager2V135RequestJoinGameSessionPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_28RequestJoinGameSessionPlayerEEE +_ZN3sce2Np9CppWebApi14SessionManager2V135RequestJoinGameSessionPlayerFactory7destroyEPNS3_28RequestJoinGameSessionPlayerE +_ZN3sce2Np9CppWebApi14SessionManager2V135ResponseGameSessionSpectatorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_28ResponseGameSessionSpectatorEEE +_ZN3sce2Np9CppWebApi14SessionManager2V135ResponseGameSessionSpectatorFactory6createEPNS1_6Common10LibContextERKmPKcPNS5_12IntrusivePtrINS3_28ResponseGameSessionSpectatorEEE +_ZN3sce2Np9CppWebApi14SessionManager2V135ResponseGameSessionSpectatorFactory7destroyEPNS3_28ResponseGameSessionSpectatorE +_ZN3sce2Np9CppWebApi14SessionManager2V136GetFriendsPlayerSessionsResponseBody10getFriendsEv +_ZN3sce2Np9CppWebApi14SessionManager2V136GetFriendsPlayerSessionsResponseBody10setFriendsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_6FriendEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V136GetFriendsPlayerSessionsResponseBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V136GetFriendsPlayerSessionsResponseBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V136GetFriendsPlayerSessionsResponseBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V136GetFriendsPlayerSessionsResponseBodyD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V136GetFriendsPlayerSessionsResponseBodyD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V136GetPlayerSessionsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_20PlayerSessionForReadEEEEEPNS9_INS3_29GetPlayerSessionsResponseBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V136GetPlayerSessionsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_29GetPlayerSessionsResponseBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V136GetPlayerSessionsResponseBodyFactory7destroyEPNS3_29GetPlayerSessionsResponseBodyE +_ZN3sce2Np9CppWebApi14SessionManager2V136JoinedGameSessionWithPlatformFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_29JoinedGameSessionWithPlatformEEE +_ZN3sce2Np9CppWebApi14SessionManager2V136JoinedGameSessionWithPlatformFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_29JoinedGameSessionWithPlatformEEE +_ZN3sce2Np9CppWebApi14SessionManager2V136JoinedGameSessionWithPlatformFactory7destroyEPNS3_29JoinedGameSessionWithPlatformE +_ZN3sce2Np9CppWebApi14SessionManager2V136PostPlayerSessionsRequestBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_20RequestPlayerSessionEEEEEPNS9_INS3_29PostPlayerSessionsRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V136PostPlayerSessionsRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_29PostPlayerSessionsRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V136PostPlayerSessionsRequestBodyFactory7destroyEPNS3_29PostPlayerSessionsRequestBodyE +_ZN3sce2Np9CppWebApi14SessionManager2V136RequestPlayerSessionSpectatorFactory6createEPNS1_6Common10LibContextEPKcS9_PNS5_12IntrusivePtrINS3_29RequestPlayerSessionSpectatorEEE +_ZN3sce2Np9CppWebApi14SessionManager2V136RequestPlayerSessionSpectatorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_29RequestPlayerSessionSpectatorEEE +_ZN3sce2Np9CppWebApi14SessionManager2V136RequestPlayerSessionSpectatorFactory7destroyEPNS3_29RequestPlayerSessionSpectatorE +_ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead12setSessionIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead14unsetSessionIdEv +_ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead15setInvitationIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead17unsetInvitationIdEv +_ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead19setFromNonPsnPlayerERKNS1_6Common12IntrusivePtrINS3_16FromNonPsnMemberEEE +_ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead20setInvitationInvalidERKb +_ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead20setReceivedTimestampEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead21getSupportedPlatformsEv +_ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead21setSupportedPlatformsERKNS1_6Common6VectorINS5_6StringEEE +_ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead21unsetFromNonPsnPlayerEv +_ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead22unsetInvitationInvalidEv +_ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead22unsetReceivedTimestampEv +_ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead23unsetSupportedPlatformsEv +_ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead7setFromERKNS1_6Common12IntrusivePtrINS3_10FromMemberEEE +_ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead9unsetFromEv +_ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForReadC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForReadC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForReadD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForReadD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody13setMaxPlayersERKi +_ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody13setSearchableERKb +_ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody14setCustomData1EPKvm +_ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody14setCustomData2EPKvm +_ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody15setJoinDisabledERKb +_ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody15unsetMaxPlayersEv +_ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody15unsetSearchableEv +_ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody16setMaxSpectatorsERKi +_ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody16unsetCustomData1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody16unsetCustomData2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody17unsetJoinDisabledEv +_ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody18unsetMaxSpectatorsEv +_ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBodyD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBodyD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V137PostPlayerSessionsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_13PlayerSessionEEEEEPNS9_INS3_30PostPlayerSessionsResponseBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V137PostPlayerSessionsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_30PostPlayerSessionsResponseBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V137PostPlayerSessionsResponseBodyFactory7destroyEPNS3_30PostPlayerSessionsResponseBodyE +_ZN3sce2Np9CppWebApi14SessionManager2V137RequestGameSessionMemberPlayerFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_24RequestGameSessionPlayerEEEEEPNS9_INS3_30RequestGameSessionMemberPlayerEEE +_ZN3sce2Np9CppWebApi14SessionManager2V137RequestGameSessionMemberPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_30RequestGameSessionMemberPlayerEEE +_ZN3sce2Np9CppWebApi14SessionManager2V137RequestGameSessionMemberPlayerFactory7destroyEPNS3_30RequestGameSessionMemberPlayerE +_ZN3sce2Np9CppWebApi14SessionManager2V137RequestPlayerSessionInvitationFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_2ToEEEPNS8_INS3_30RequestPlayerSessionInvitationEEE +_ZN3sce2Np9CppWebApi14SessionManager2V137RequestPlayerSessionInvitationFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_30RequestPlayerSessionInvitationEEE +_ZN3sce2Np9CppWebApi14SessionManager2V137RequestPlayerSessionInvitationFactory7destroyEPNS3_30RequestPlayerSessionInvitationE +_ZN3sce2Np9CppWebApi14SessionManager2V137ResponsePlayerSessionSpectatorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_30ResponsePlayerSessionSpectatorEEE +_ZN3sce2Np9CppWebApi14SessionManager2V137ResponsePlayerSessionSpectatorFactory6createEPNS1_6Common10LibContextERKmPKcPNS5_12IntrusivePtrINS3_30ResponsePlayerSessionSpectatorEEE +_ZN3sce2Np9CppWebApi14SessionManager2V137ResponsePlayerSessionSpectatorFactory7destroyEPNS3_30ResponsePlayerSessionSpectatorE +_ZN3sce2Np9CppWebApi14SessionManager2V138JoinedPlayerSessionWithPlatformFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_31JoinedPlayerSessionWithPlatformEEE +_ZN3sce2Np9CppWebApi14SessionManager2V138JoinedPlayerSessionWithPlatformFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_31JoinedPlayerSessionWithPlatformEEE +_ZN3sce2Np9CppWebApi14SessionManager2V138JoinedPlayerSessionWithPlatformFactory7destroyEPNS3_31JoinedPlayerSessionWithPlatformE +_ZN3sce2Np9CppWebApi14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayer11setPlayerIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayer13setPlayerNameEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayer14setCustomData1EPKvm +_ZN3sce2Np9CppWebApi14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayer16unsetCustomData1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayer8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V138ResponseGameSessionMemberPlayerFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_25ResponseGameSessionPlayerEEEEEPNS9_INS3_31ResponseGameSessionMemberPlayerEEE +_ZN3sce2Np9CppWebApi14SessionManager2V138ResponseGameSessionMemberPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_31ResponseGameSessionMemberPlayerEEE +_ZN3sce2Np9CppWebApi14SessionManager2V138ResponseGameSessionMemberPlayerFactory7destroyEPNS3_31ResponseGameSessionMemberPlayerE +_ZN3sce2Np9CppWebApi14SessionManager2V138ResponsePlayerSessionInvitationFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_31ResponsePlayerSessionInvitationEEE +_ZN3sce2Np9CppWebApi14SessionManager2V138ResponsePlayerSessionInvitationFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_31ResponsePlayerSessionInvitationEEE +_ZN3sce2Np9CppWebApi14SessionManager2V138ResponsePlayerSessionInvitationFactory7destroyEPNS3_31ResponsePlayerSessionInvitationE +_ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody13setMaxPlayersERKi +_ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody14setCustomData1EPKvm +_ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody14setCustomData2EPKvm +_ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody15setJoinDisabledERKb +_ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody15unsetMaxPlayersEv +_ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody16setMaxSpectatorsERKi +_ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody16setSwapSupportedERKb +_ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody16unsetCustomData1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody16unsetCustomData2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody17unsetJoinDisabledEv +_ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody18unsetMaxSpectatorsEv +_ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody18unsetSwapSupportedEv +_ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody19getLeaderPrivilegesEv +_ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody19setJoinableUserTypeERKNS3_22CustomJoinableUserTypeE +_ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody19setLeaderPrivilegesERKNS1_6Common6VectorINS5_6StringEEE +_ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody20setInvitableUserTypeERKNS3_23CustomInvitableUserTypeE +_ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody21unsetJoinableUserTypeEv +_ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody21unsetLeaderPrivilegesEv +_ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody22getDisableSystemUiMenuEv +_ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody22setDisableSystemUiMenuERKNS1_6Common6VectorINS5_6StringEEE +_ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody22unsetInvitableUserTypeEv +_ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody23setLocalizedSessionNameERKNS1_6Common12IntrusivePtrINS3_15LocalizedStringEEE +_ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody24unsetDisableSystemUiMenuEv +_ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody25unsetLocalizedSessionNameEv +_ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody28getExclusiveLeaderPrivilegesEv +_ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody28setExclusiveLeaderPrivilegesERKNS1_6Common6VectorINS5_6StringEEE +_ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody30unsetExclusiveLeaderPrivilegesEv +_ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V139RequestCreatePlayerSessionPlayerFactory6createEPNS1_6Common10LibContextEPKcS9_RKNS5_6VectorINS5_12IntrusivePtrINS3_24PlayerSessionPushContextEEEEEPNSB_INS3_32RequestCreatePlayerSessionPlayerEEE +_ZN3sce2Np9CppWebApi14SessionManager2V139RequestCreatePlayerSessionPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_32RequestCreatePlayerSessionPlayerEEE +_ZN3sce2Np9CppWebApi14SessionManager2V139RequestCreatePlayerSessionPlayerFactory7destroyEPNS3_32RequestCreatePlayerSessionPlayerE +_ZN3sce2Np9CppWebApi14SessionManager2V139RequestPlayerSessionMemberPlayerFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_32RequestCreatePlayerSessionPlayerEEEEEPNS9_INS3_32RequestPlayerSessionMemberPlayerEEE +_ZN3sce2Np9CppWebApi14SessionManager2V139RequestPlayerSessionMemberPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_32RequestPlayerSessionMemberPlayerEEE +_ZN3sce2Np9CppWebApi14SessionManager2V139RequestPlayerSessionMemberPlayerFactory7destroyEPNS3_32RequestPlayerSessionMemberPlayerE +_ZN3sce2Np9CppWebApi14SessionManager2V140PostGameSessionsSearchRequestBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_15SearchConditionEEEEEPNS9_INS3_33PostGameSessionsSearchRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V140PostGameSessionsSearchRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_33PostGameSessionsSearchRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V140PostGameSessionsSearchRequestBodyFactory7destroyEPNS3_33PostGameSessionsSearchRequestBodyE +_ZN3sce2Np9CppWebApi14SessionManager2V140PostGameSessionsTouchResponseBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_33PostGameSessionsTouchResponseBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V140PostGameSessionsTouchResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_33PostGameSessionsTouchResponseBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V140PostGameSessionsTouchResponseBodyFactory7destroyEPNS3_33PostGameSessionsTouchResponseBodyE +_ZN3sce2Np9CppWebApi14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBody11setPlayerIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V140ResponsePlayerSessionMemberPlayerFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_27ResponsePlayerSessionPlayerEEEEEPNS9_INS3_33ResponsePlayerSessionMemberPlayerEEE +_ZN3sce2Np9CppWebApi14SessionManager2V140ResponsePlayerSessionMemberPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_33ResponsePlayerSessionMemberPlayerEEE +_ZN3sce2Np9CppWebApi14SessionManager2V140ResponsePlayerSessionMemberPlayerFactory7destroyEPNS3_33ResponsePlayerSessionMemberPlayerE +_ZN3sce2Np9CppWebApi14SessionManager2V140ResponsePlayerSessionNonPsnPlayerFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_33ResponsePlayerSessionNonPsnPlayerEEE +_ZN3sce2Np9CppWebApi14SessionManager2V140ResponsePlayerSessionNonPsnPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_33ResponsePlayerSessionNonPsnPlayerEEE +_ZN3sce2Np9CppWebApi14SessionManager2V140ResponsePlayerSessionNonPsnPlayerFactory7destroyEPNS3_33ResponsePlayerSessionNonPsnPlayerE +_ZN3sce2Np9CppWebApi14SessionManager2V141GetUsersAccountIdGameSessionsResponseBody15getGameSessionsEv +_ZN3sce2Np9CppWebApi14SessionManager2V141GetUsersAccountIdGameSessionsResponseBody15setGameSessionsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_29JoinedGameSessionWithPlatformEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V141GetUsersAccountIdGameSessionsResponseBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V141PostGameSessionsSearchResponseBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_34PostGameSessionsSearchResponseBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V141PostGameSessionsSearchResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_34PostGameSessionsSearchResponseBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V141PostGameSessionsSearchResponseBodyFactory7destroyEPNS3_34PostGameSessionsSearchResponseBodyE +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10setString1EPKc +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10setString2EPKc +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10setString3EPKc +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10setString4EPKc +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10setString5EPKc +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10setString6EPKc +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10setString7EPKc +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10setString8EPKc +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10setString9EPKc +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setBoolean1ERKb +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setBoolean2ERKb +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setBoolean3ERKb +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setBoolean4ERKb +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setBoolean5ERKb +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setBoolean6ERKb +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setBoolean7ERKb +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setBoolean8ERKb +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setBoolean9ERKb +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setInteger1ERKi +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setInteger2ERKi +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setInteger3ERKi +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setInteger4ERKi +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setInteger5ERKi +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setInteger6ERKi +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setInteger7ERKi +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setInteger8ERKi +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setInteger9ERKi +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setString10EPKc +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12setBoolean10ERKb +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12setInteger10ERKi +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12unsetString1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12unsetString2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12unsetString3Ev +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12unsetString4Ev +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12unsetString5Ev +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12unsetString6Ev +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12unsetString7Ev +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12unsetString8Ev +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12unsetString9Ev +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetBoolean1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetBoolean2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetBoolean3Ev +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetBoolean4Ev +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetBoolean5Ev +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetBoolean6Ev +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetBoolean7Ev +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetBoolean8Ev +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetBoolean9Ev +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetInteger1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetInteger2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetInteger3Ev +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetInteger4Ev +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetInteger5Ev +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetInteger6Ev +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetInteger7Ev +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetInteger8Ev +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetInteger9Ev +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetString10Ev +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody14unsetBoolean10Ev +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody14unsetInteger10Ev +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V143GetFriendsPlayerSessionsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_6FriendEEEEEPNS9_INS3_36GetFriendsPlayerSessionsResponseBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V143GetFriendsPlayerSessionsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_36GetFriendsPlayerSessionsResponseBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V143GetFriendsPlayerSessionsResponseBodyFactory7destroyEPNS3_36GetFriendsPlayerSessionsResponseBodyE +_ZN3sce2Np9CppWebApi14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBody17getPlayerSessionsEv +_ZN3sce2Np9CppWebApi14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBody17setPlayerSessionsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_31JoinedPlayerSessionWithPlatformEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBody11setPlatformEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBody12setAccountIdERKm +_ZN3sce2Np9CppWebApi14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V143UsersPlayerSessionsInvitationForReadFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_36UsersPlayerSessionsInvitationForReadEEE +_ZN3sce2Np9CppWebApi14SessionManager2V143UsersPlayerSessionsInvitationForReadFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_36UsersPlayerSessionsInvitationForReadEEE +_ZN3sce2Np9CppWebApi14SessionManager2V143UsersPlayerSessionsInvitationForReadFactory7destroyEPNS3_36UsersPlayerSessionsInvitationForReadE +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10setString1EPKc +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10setString2EPKc +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10setString3EPKc +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10setString4EPKc +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10setString5EPKc +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10setString6EPKc +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10setString7EPKc +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10setString8EPKc +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10setString9EPKc +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setBoolean1ERKb +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setBoolean2ERKb +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setBoolean3ERKb +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setBoolean4ERKb +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setBoolean5ERKb +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setBoolean6ERKb +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setBoolean7ERKb +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setBoolean8ERKb +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setBoolean9ERKb +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setInteger1ERKi +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setInteger2ERKi +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setInteger3ERKi +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setInteger4ERKi +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setInteger5ERKi +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setInteger6ERKi +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setInteger7ERKi +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setInteger8ERKi +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setInteger9ERKi +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setString10EPKc +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12setBoolean10ERKb +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12setInteger10ERKi +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12unsetString1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12unsetString2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12unsetString3Ev +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12unsetString4Ev +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12unsetString5Ev +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12unsetString6Ev +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12unsetString7Ev +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12unsetString8Ev +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12unsetString9Ev +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetBoolean1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetBoolean2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetBoolean3Ev +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetBoolean4Ev +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetBoolean5Ev +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetBoolean6Ev +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetBoolean7Ev +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetBoolean8Ev +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetBoolean9Ev +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetInteger1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetInteger2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetInteger3Ev +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetInteger4Ev +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetInteger5Ev +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetInteger6Ev +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetInteger7Ev +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetInteger8Ev +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetInteger9Ev +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetString10Ev +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody14unsetBoolean10Ev +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody14unsetInteger10Ev +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSessionIdRequestBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_37PatchGameSessionsSessionIdRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSessionIdRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_37PatchGameSessionsSessionIdRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSessionIdRequestBodyFactory7destroyEPNS3_37PatchGameSessionsSessionIdRequestBodyE +_ZN3sce2Np9CppWebApi14SessionManager2V145RequestCreatePlayerSessionNonPsnPlayerFactory6createEPNS1_6Common10LibContextEPKcS9_PNS5_12IntrusivePtrINS3_38RequestCreatePlayerSessionNonPsnPlayerEEE +_ZN3sce2Np9CppWebApi14SessionManager2V145RequestCreatePlayerSessionNonPsnPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_38RequestCreatePlayerSessionNonPsnPlayerEEE +_ZN3sce2Np9CppWebApi14SessionManager2V145RequestCreatePlayerSessionNonPsnPlayerFactory7destroyEPNS3_38RequestCreatePlayerSessionNonPsnPlayerE +_ZN3sce2Np9CppWebApi14SessionManager2V146PatchPlayerSessionsSessionIdRequestBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_39PatchPlayerSessionsSessionIdRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V146PatchPlayerSessionsSessionIdRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_39PatchPlayerSessionsSessionIdRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V146PatchPlayerSessionsSessionIdRequestBodyFactory7destroyEPNS3_39PatchPlayerSessionsSessionIdRequestBodyE +_ZN3sce2Np9CppWebApi14SessionManager2V147PutPlayerSessionsNonPsnLeaderRequestBodyFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_40PutPlayerSessionsNonPsnLeaderRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V147PutPlayerSessionsNonPsnLeaderRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_40PutPlayerSessionsNonPsnLeaderRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V147PutPlayerSessionsNonPsnLeaderRequestBodyFactory7destroyEPNS3_40PutPlayerSessionsNonPsnLeaderRequestBodyE +_ZN3sce2Np9CppWebApi14SessionManager2V148GetUsersAccountIdGameSessionsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_29JoinedGameSessionWithPlatformEEEEEPNS9_INS3_41GetUsersAccountIdGameSessionsResponseBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V148GetUsersAccountIdGameSessionsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_41GetUsersAccountIdGameSessionsResponseBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V148GetUsersAccountIdGameSessionsResponseBodyFactory7destroyEPNS3_41GetUsersAccountIdGameSessionsResponseBodyE +_ZN3sce2Np9CppWebApi14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBody10getPlayersEv +_ZN3sce2Np9CppWebApi14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBody10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_28RequestJoinGameSessionPlayerEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBody14getInvitationsEv +_ZN3sce2Np9CppWebApi14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBody14setInvitationsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_30RequestPlayerSessionInvitationEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBody16unsetInvitationsEv +_ZN3sce2Np9CppWebApi14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V149PutGameSessionsSearchAttributesRequestBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_42PutGameSessionsSearchAttributesRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V149PutGameSessionsSearchAttributesRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_42PutGameSessionsSearchAttributesRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V149PutGameSessionsSearchAttributesRequestBodyFactory7destroyEPNS3_42PutGameSessionsSearchAttributesRequestBodyE +_ZN3sce2Np9CppWebApi14SessionManager2V150GetUsersAccountIdPlayerSessionsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_31JoinedPlayerSessionWithPlatformEEEEEPNS9_INS3_43GetUsersAccountIdPlayerSessionsResponseBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V150GetUsersAccountIdPlayerSessionsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_43GetUsersAccountIdPlayerSessionsResponseBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V150GetUsersAccountIdPlayerSessionsResponseBodyFactory7destroyEPNS3_43GetUsersAccountIdPlayerSessionsResponseBodyE +_ZN3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBody10getPlayersEv +_ZN3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBody10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_25ResponseGameSessionPlayerEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBody10setPayloadEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBody5getToEv +_ZN3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBody5setToERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_23MemberWithMultiPlatformEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBody14getInvitationsEv +_ZN3sce2Np9CppWebApi14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBody14setInvitationsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_31ResponsePlayerSessionInvitationEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBody16unsetInvitationsEv +_ZN3sce2Np9CppWebApi14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V150PutPlayerSessionsSessionIdLeaderRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_43PutPlayerSessionsSessionIdLeaderRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V150PutPlayerSessionsSessionIdLeaderRequestBodyFactory6createEPNS1_6Common10LibContextERKmPKcPNS5_12IntrusivePtrINS3_43PutPlayerSessionsSessionIdLeaderRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V150PutPlayerSessionsSessionIdLeaderRequestBodyFactory7destroyEPNS3_43PutPlayerSessionsSessionIdLeaderRequestBodyE +_ZN3sce2Np9CppWebApi14SessionManager2V151PatchGameSessionsSearchAttributesRequestBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_44PatchGameSessionsSearchAttributesRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V151PatchGameSessionsSearchAttributesRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_44PatchGameSessionsSearchAttributesRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V151PatchGameSessionsSearchAttributesRequestBodyFactory7destroyEPNS3_44PatchGameSessionsSearchAttributesRequestBodyE +_ZN3sce2Np9CppWebApi14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBody10getPlayersEv +_ZN3sce2Np9CppWebApi14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBody10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_26RequestPlayerSessionPlayerEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBody13getSpectatorsEv +_ZN3sce2Np9CppWebApi14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBody13setSpectatorsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_27RequestGameSessionSpectatorEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBody10getPlayersEv +_ZN3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBody10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_27ResponsePlayerSessionPlayerEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBody10setPayloadEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBody5getToEv +_ZN3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBody5setToERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_23MemberWithMultiPlatformEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBody10setNatTypeERKi +_ZN3sce2Np9CppWebApi14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBody12unsetNatTypeEv +_ZN3sce2Np9CppWebApi14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBody14setCustomData1EPKvm +_ZN3sce2Np9CppWebApi14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBody16unsetCustomData1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBody13getSpectatorsEv +_ZN3sce2Np9CppWebApi14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBody13setSpectatorsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_28ResponseGameSessionSpectatorEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBody14getInvitationsEv +_ZN3sce2Np9CppWebApi14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBody14setInvitationsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_36UsersPlayerSessionsInvitationForReadEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBody16unsetInvitationsEv +_ZN3sce2Np9CppWebApi14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBody13getSpectatorsEv +_ZN3sce2Np9CppWebApi14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBody13setSpectatorsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_29RequestPlayerSessionSpectatorEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBody14setCustomData1EPKvm +_ZN3sce2Np9CppWebApi14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBody16unsetCustomData1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBody13getSpectatorsEv +_ZN3sce2Np9CppWebApi14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBody13setSpectatorsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_30ResponsePlayerSessionSpectatorEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V156PostGameSessionsSessionIdMemberPlayersRequestBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_28RequestJoinGameSessionPlayerEEEEEPNS9_INS3_49PostGameSessionsSessionIdMemberPlayersRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V156PostGameSessionsSessionIdMemberPlayersRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_49PostGameSessionsSessionIdMemberPlayersRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V156PostGameSessionsSessionIdMemberPlayersRequestBodyFactory7destroyEPNS3_49PostGameSessionsSessionIdMemberPlayersRequestBodyE +_ZN3sce2Np9CppWebApi14SessionManager2V156PostPlayerSessionsSessionIdInvitationsRequestBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_49PostPlayerSessionsSessionIdInvitationsRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V156PostPlayerSessionsSessionIdInvitationsRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_49PostPlayerSessionsSessionIdInvitationsRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V156PostPlayerSessionsSessionIdInvitationsRequestBodyFactory7destroyEPNS3_49PostPlayerSessionsSessionIdInvitationsRequestBodyE +_ZN3sce2Np9CppWebApi14SessionManager2V157PostGameSessionsSessionIdMemberPlayersResponseBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_25ResponseGameSessionPlayerEEEEEPNS9_INS3_50PostGameSessionsSessionIdMemberPlayersResponseBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V157PostGameSessionsSessionIdMemberPlayersResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_50PostGameSessionsSessionIdMemberPlayersResponseBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V157PostGameSessionsSessionIdMemberPlayersResponseBodyFactory7destroyEPNS3_50PostGameSessionsSessionIdMemberPlayersResponseBodyE +_ZN3sce2Np9CppWebApi14SessionManager2V157PostGameSessionsSessionIdSessionMessageRequestBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_23MemberWithMultiPlatformEEEEEPKcPNS9_INS3_50PostGameSessionsSessionIdSessionMessageRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V157PostGameSessionsSessionIdSessionMessageRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_50PostGameSessionsSessionIdSessionMessageRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V157PostGameSessionsSessionIdSessionMessageRequestBodyFactory7destroyEPNS3_50PostGameSessionsSessionIdSessionMessageRequestBodyE +_ZN3sce2Np9CppWebApi14SessionManager2V157PostPlayerSessionsSessionIdInvitationsResponseBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_50PostPlayerSessionsSessionIdInvitationsResponseBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V157PostPlayerSessionsSessionIdInvitationsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_50PostPlayerSessionsSessionIdInvitationsResponseBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V157PostPlayerSessionsSessionIdInvitationsResponseBodyFactory7destroyEPNS3_50PostPlayerSessionsSessionIdInvitationsResponseBodyE +_ZN3sce2Np9CppWebApi14SessionManager2V158PostPlayerSessionsSessionIdMemberPlayersRequestBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_26RequestPlayerSessionPlayerEEEEEPNS9_INS3_51PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V158PostPlayerSessionsSessionIdMemberPlayersRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_51PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V158PostPlayerSessionsSessionIdMemberPlayersRequestBodyFactory7destroyEPNS3_51PostPlayerSessionsSessionIdMemberPlayersRequestBodyE +_ZN3sce2Np9CppWebApi14SessionManager2V159PostGameSessionsSessionIdMemberSpectatorsRequestBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_27RequestGameSessionSpectatorEEEEEPNS9_INS3_52PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V159PostGameSessionsSessionIdMemberSpectatorsRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_52PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V159PostGameSessionsSessionIdMemberSpectatorsRequestBodyFactory7destroyEPNS3_52PostGameSessionsSessionIdMemberSpectatorsRequestBodyE +_ZN3sce2Np9CppWebApi14SessionManager2V159PostPlayerSessionsSessionIdMemberPlayersResponseBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_27ResponsePlayerSessionPlayerEEEEEPNS9_INS3_52PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V159PostPlayerSessionsSessionIdMemberPlayersResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_52PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V159PostPlayerSessionsSessionIdMemberPlayersResponseBodyFactory7destroyEPNS3_52PostPlayerSessionsSessionIdMemberPlayersResponseBodyE +_ZN3sce2Np9CppWebApi14SessionManager2V159PostPlayerSessionsSessionIdSessionMessageRequestBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_23MemberWithMultiPlatformEEEEEPKcPNS9_INS3_52PostPlayerSessionsSessionIdSessionMessageRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V159PostPlayerSessionsSessionIdSessionMessageRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_52PostPlayerSessionsSessionIdSessionMessageRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V159PostPlayerSessionsSessionIdSessionMessageRequestBodyFactory7destroyEPNS3_52PostPlayerSessionsSessionIdSessionMessageRequestBodyE +_ZN3sce2Np9CppWebApi14SessionManager2V15Error10setMessageEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V15Error11unsetReasonEv +_ZN3sce2Np9CppWebApi14SessionManager2V15Error11unsetSourceEv +_ZN3sce2Np9CppWebApi14SessionManager2V15Error14setReferenceIdEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V15Error16unsetReferenceIdEv +_ZN3sce2Np9CppWebApi14SessionManager2V15Error7setCodeERKl +_ZN3sce2Np9CppWebApi14SessionManager2V15Error8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V15Error9setReasonEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V15Error9setSourceEPKc +_ZN3sce2Np9CppWebApi14SessionManager2V15ErrorC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V15ErrorC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V15ErrorD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V15ErrorD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V160PatchGameSessionsSessionIdMembersAccountIdRequestBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_53PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V160PatchGameSessionsSessionIdMembersAccountIdRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_53PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V160PatchGameSessionsSessionIdMembersAccountIdRequestBodyFactory7destroyEPNS3_53PatchGameSessionsSessionIdMembersAccountIdRequestBodyE +_ZN3sce2Np9CppWebApi14SessionManager2V160PostGameSessionsSessionIdMemberSpectatorsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_28ResponseGameSessionSpectatorEEEEEPNS9_INS3_53PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V160PostGameSessionsSessionIdMemberSpectatorsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_53PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V160PostGameSessionsSessionIdMemberSpectatorsResponseBodyFactory7destroyEPNS3_53PostGameSessionsSessionIdMemberSpectatorsResponseBodyE +_ZN3sce2Np9CppWebApi14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBody25getJoinableSpecifiedUsersEv +_ZN3sce2Np9CppWebApi14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBody25setJoinableSpecifiedUsersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_12JoinableUserEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V161GetUsersAccountIdPlayerSessionsInvitationsResponseBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_54GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V161GetUsersAccountIdPlayerSessionsInvitationsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_54GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V161GetUsersAccountIdPlayerSessionsInvitationsResponseBodyFactory7destroyEPNS3_54GetUsersAccountIdPlayerSessionsInvitationsResponseBodyE +_ZN3sce2Np9CppWebApi14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBody25getJoinableSpecifiedUsersEv +_ZN3sce2Np9CppWebApi14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBody25setJoinableSpecifiedUsersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_12JoinableUserEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V161PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_29RequestPlayerSessionSpectatorEEEEEPNS9_INS3_54PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V161PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_54PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V161PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyFactory7destroyEPNS3_54PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyE +_ZN3sce2Np9CppWebApi14SessionManager2V162PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_55PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V162PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_55PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V162PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyFactory7destroyEPNS3_55PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyE +_ZN3sce2Np9CppWebApi14SessionManager2V162PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_30ResponsePlayerSessionSpectatorEEEEEPNS9_INS3_55PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V162PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_55PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V162PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyFactory7destroyEPNS3_55PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyE +_ZN3sce2Np9CppWebApi14SessionManager2V167PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_12JoinableUserEEEEEPNS9_INS3_60PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V167PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_60PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V167PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyFactory7destroyEPNS3_60PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyE +_ZN3sce2Np9CppWebApi14SessionManager2V168PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_12JoinableUserEEEEEPNS9_INS3_61PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V168PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_61PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEE +_ZN3sce2Np9CppWebApi14SessionManager2V168PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyFactory7destroyEPNS3_61PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyE +_ZN3sce2Np9CppWebApi14SessionManager2V16Friend11setOnlineIdERK13SceNpOnlineId +_ZN3sce2Np9CppWebApi14SessionManager2V16Friend12setAccountIdERKm +_ZN3sce2Np9CppWebApi14SessionManager2V16Friend13unsetOnlineIdEv +_ZN3sce2Np9CppWebApi14SessionManager2V16Friend14unsetAccountIdEv +_ZN3sce2Np9CppWebApi14SessionManager2V16Friend17getPlayerSessionsEv +_ZN3sce2Np9CppWebApi14SessionManager2V16Friend17setPlayerSessionsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_25FriendJoinedPlayerSessionEEEEE +_ZN3sce2Np9CppWebApi14SessionManager2V16Friend19unsetPlayerSessionsEv +_ZN3sce2Np9CppWebApi14SessionManager2V16Friend8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi14SessionManager2V16FriendC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V16FriendC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi14SessionManager2V16FriendD1Ev +_ZN3sce2Np9CppWebApi14SessionManager2V16FriendD2Ev +_ZN3sce2Np9CppWebApi14SessionManager2V19ToFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_2ToEEE +_ZN3sce2Np9CppWebApi14SessionManager2V19ToFactory6createEPNS1_6Common10LibContextERKmPNS5_12IntrusivePtrINS3_2ToEEE +_ZN3sce2Np9CppWebApi14SessionManager2V19ToFactory7destroyEPNS3_2ToE +_ZN3sce2Np9CppWebApi15Personalization2V110ContentApi12sendCallbackEiRKNS4_23ParameterToSendCallbackERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi15Personalization2V110ContentApi13getAccessCodeEiRKNS1_6Common13ParameterBaseERNS5_11TransactionINS5_12IntrusivePtrINS3_21GetAccessCodeResponseEEENSA_INS5_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi15Personalization2V110ContentApi13getAccessCodeEiRNS1_6Common11TransactionINS5_12IntrusivePtrINS3_21GetAccessCodeResponseEEENS7_INS5_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallback10initializeEPNS1_6Common10LibContextEPKcSA_SA_ +_ZN3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallback12seteventTypeEPKc +_ZN3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallback8setimpIdEPKc +_ZN3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallback9setslotIdEPKc +_ZN3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallback9terminateEv +_ZN3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallbackC1ERS5_ +_ZN3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallbackC1Ev +_ZN3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallbackC2ERS5_ +_ZN3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallbackC2Ev +_ZN3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallbackD1Ev +_ZN3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallbackD2Ev +_ZN3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallbackaSERS5_ +_ZN3sce2Np9CppWebApi15Personalization2V111ErrorEntity10unsetErrorEv +_ZN3sce2Np9CppWebApi15Personalization2V111ErrorEntity8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi15Personalization2V111ErrorEntity8setErrorERKNS1_6Common12IntrusivePtrINS3_5ErrorEEE +_ZN3sce2Np9CppWebApi15Personalization2V111ErrorEntityC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi15Personalization2V111ErrorEntityC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi15Personalization2V111ErrorEntityD1Ev +_ZN3sce2Np9CppWebApi15Personalization2V111ErrorEntityD2Ev +_ZN3sce2Np9CppWebApi15Personalization2V112ErrorFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_5ErrorEEE +_ZN3sce2Np9CppWebApi15Personalization2V112ErrorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5ErrorEEE +_ZN3sce2Np9CppWebApi15Personalization2V112ErrorFactory7destroyEPNS3_5ErrorE +_ZN3sce2Np9CppWebApi15Personalization2V118ErrorEntityFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_11ErrorEntityEEE +_ZN3sce2Np9CppWebApi15Personalization2V118ErrorEntityFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_11ErrorEntityEEE +_ZN3sce2Np9CppWebApi15Personalization2V118ErrorEntityFactory7destroyEPNS3_11ErrorEntityE +_ZN3sce2Np9CppWebApi15Personalization2V121GetAccessCodeResponse12setExpiresAtERKl +_ZN3sce2Np9CppWebApi15Personalization2V121GetAccessCodeResponse7setCodeEPKc +_ZN3sce2Np9CppWebApi15Personalization2V121GetAccessCodeResponse7setSaidEPKc +_ZN3sce2Np9CppWebApi15Personalization2V121GetAccessCodeResponse8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi15Personalization2V121GetAccessCodeResponseC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi15Personalization2V121GetAccessCodeResponseC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi15Personalization2V121GetAccessCodeResponseD1Ev +_ZN3sce2Np9CppWebApi15Personalization2V121GetAccessCodeResponseD2Ev +_ZN3sce2Np9CppWebApi15Personalization2V128GetAccessCodeResponseFactory6createEPNS1_6Common10LibContextEPKcS9_lPNS5_12IntrusivePtrINS3_21GetAccessCodeResponseEEE +_ZN3sce2Np9CppWebApi15Personalization2V128GetAccessCodeResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_21GetAccessCodeResponseEEE +_ZN3sce2Np9CppWebApi15Personalization2V128GetAccessCodeResponseFactory7destroyEPNS3_21GetAccessCodeResponseE +_ZN3sce2Np9CppWebApi15Personalization2V15Error10setMessageEPKc +_ZN3sce2Np9CppWebApi15Personalization2V15Error11unsetReasonEv +_ZN3sce2Np9CppWebApi15Personalization2V15Error11unsetSourceEv +_ZN3sce2Np9CppWebApi15Personalization2V15Error12unsetMessageEv +_ZN3sce2Np9CppWebApi15Personalization2V15Error14setReferenceIdEPKc +_ZN3sce2Np9CppWebApi15Personalization2V15Error16unsetReferenceIdEv +_ZN3sce2Np9CppWebApi15Personalization2V15Error7setCodeERKi +_ZN3sce2Np9CppWebApi15Personalization2V15Error8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi15Personalization2V15Error9setReasonEPKc +_ZN3sce2Np9CppWebApi15Personalization2V15Error9setSourceEPKc +_ZN3sce2Np9CppWebApi15Personalization2V15Error9unsetCodeEv +_ZN3sce2Np9CppWebApi15Personalization2V15ErrorC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi15Personalization2V15ErrorC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi15Personalization2V15ErrorD1Ev +_ZN3sce2Np9CppWebApi15Personalization2V15ErrorD2Ev +_ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi15filterProfanityEiRKNS4_26ParameterToFilterProfanityERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_23FilterProfanityResponseEEENSA_INS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi16testForProfanityEiRKNS4_27ParameterToTestForProfanityERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_24TestForProfanityResponseEEENSA_INS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanity10initializeEPNS1_6Common10LibContextEPKcSA_NS6_12IntrusivePtrINS3_19WebApiFilterRequestEEE +_ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanity15setserviceLabelEPKc +_ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanity22setwebApiFilterRequestENS1_6Common12IntrusivePtrINS3_19WebApiFilterRequestEEE +_ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanity9setlocaleEPKc +_ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanity9terminateEv +_ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanityC1ERS5_ +_ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanityC1Ev +_ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanityC2ERS5_ +_ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanityC2Ev +_ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanityD1Ev +_ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanityD2Ev +_ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanityaSERS5_ +_ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanity10initializeEPNS1_6Common10LibContextEPKcSA_NS6_12IntrusivePtrINS3_19WebApiFilterRequestEEE +_ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanity15setserviceLabelEPKc +_ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanity22setwebApiFilterRequestENS1_6Common12IntrusivePtrINS3_19WebApiFilterRequestEEE +_ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanity9setlocaleEPKc +_ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanity9terminateEv +_ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanityC1ERS5_ +_ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanityC1Ev +_ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanityC2ERS5_ +_ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanityC2Ev +_ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanityD1Ev +_ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanityD2Ev +_ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanityaSERS5_ +_ZN3sce2Np9CppWebApi15ProfanityFilter2V219WebApiErrorResponse10unsetErrorEv +_ZN3sce2Np9CppWebApi15ProfanityFilter2V219WebApiErrorResponse8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi15ProfanityFilter2V219WebApiErrorResponse8setErrorERKNS1_6Common12IntrusivePtrINS3_25WebApiErrorResponse_errorEEE +_ZN3sce2Np9CppWebApi15ProfanityFilter2V219WebApiErrorResponseC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi15ProfanityFilter2V219WebApiErrorResponseC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi15ProfanityFilter2V219WebApiErrorResponseD1Ev +_ZN3sce2Np9CppWebApi15ProfanityFilter2V219WebApiErrorResponseD2Ev +_ZN3sce2Np9CppWebApi15ProfanityFilter2V219WebApiFilterRequest7setTextEPKc +_ZN3sce2Np9CppWebApi15ProfanityFilter2V219WebApiFilterRequest8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi15ProfanityFilter2V219WebApiFilterRequestC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi15ProfanityFilter2V219WebApiFilterRequestC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi15ProfanityFilter2V219WebApiFilterRequestD1Ev +_ZN3sce2Np9CppWebApi15ProfanityFilter2V219WebApiFilterRequestD2Ev +_ZN3sce2Np9CppWebApi15ProfanityFilter2V223FilterProfanityResponse10setMessageEPKc +_ZN3sce2Np9CppWebApi15ProfanityFilter2V223FilterProfanityResponse11unsetStatusEv +_ZN3sce2Np9CppWebApi15ProfanityFilter2V223FilterProfanityResponse12unsetMessageEv +_ZN3sce2Np9CppWebApi15ProfanityFilter2V223FilterProfanityResponse8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi15ProfanityFilter2V223FilterProfanityResponse9setStatusEPKc +_ZN3sce2Np9CppWebApi15ProfanityFilter2V223FilterProfanityResponseC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi15ProfanityFilter2V223FilterProfanityResponseC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi15ProfanityFilter2V223FilterProfanityResponseD1Ev +_ZN3sce2Np9CppWebApi15ProfanityFilter2V223FilterProfanityResponseD2Ev +_ZN3sce2Np9CppWebApi15ProfanityFilter2V224TestForProfanityResponse10setMessageEPKc +_ZN3sce2Np9CppWebApi15ProfanityFilter2V224TestForProfanityResponse11unsetStatusEv +_ZN3sce2Np9CppWebApi15ProfanityFilter2V224TestForProfanityResponse12unsetMessageEv +_ZN3sce2Np9CppWebApi15ProfanityFilter2V224TestForProfanityResponse8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi15ProfanityFilter2V224TestForProfanityResponse9setStatusEPKc +_ZN3sce2Np9CppWebApi15ProfanityFilter2V224TestForProfanityResponseC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi15ProfanityFilter2V224TestForProfanityResponseC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi15ProfanityFilter2V224TestForProfanityResponseD1Ev +_ZN3sce2Np9CppWebApi15ProfanityFilter2V224TestForProfanityResponseD2Ev +_ZN3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error10setMessageEPKc +_ZN3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error11unsetStatusEv +_ZN3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error12unsetMessageEv +_ZN3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error6setTidEPKc +_ZN3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error7setCodeERKi +_ZN3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error8unsetTidEv +_ZN3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error9setStatusERKi +_ZN3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error9unsetCodeEv +_ZN3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_errorC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_errorC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_errorD1Ev +_ZN3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_errorD2Ev +_ZN3sce2Np9CppWebApi15ProfanityFilter2V226WebApiErrorResponseFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_19WebApiErrorResponseEEE +_ZN3sce2Np9CppWebApi15ProfanityFilter2V226WebApiErrorResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_19WebApiErrorResponseEEE +_ZN3sce2Np9CppWebApi15ProfanityFilter2V226WebApiErrorResponseFactory7destroyEPNS3_19WebApiErrorResponseE +_ZN3sce2Np9CppWebApi15ProfanityFilter2V226WebApiFilterRequestFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_19WebApiFilterRequestEEE +_ZN3sce2Np9CppWebApi15ProfanityFilter2V226WebApiFilterRequestFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_19WebApiFilterRequestEEE +_ZN3sce2Np9CppWebApi15ProfanityFilter2V226WebApiFilterRequestFactory7destroyEPNS3_19WebApiFilterRequestE +_ZN3sce2Np9CppWebApi15ProfanityFilter2V230FilterProfanityResponseFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_23FilterProfanityResponseEEE +_ZN3sce2Np9CppWebApi15ProfanityFilter2V230FilterProfanityResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_23FilterProfanityResponseEEE +_ZN3sce2Np9CppWebApi15ProfanityFilter2V230FilterProfanityResponseFactory7destroyEPNS3_23FilterProfanityResponseE +_ZN3sce2Np9CppWebApi15ProfanityFilter2V231TestForProfanityResponseFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_24TestForProfanityResponseEEE +_ZN3sce2Np9CppWebApi15ProfanityFilter2V231TestForProfanityResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_24TestForProfanityResponseEEE +_ZN3sce2Np9CppWebApi15ProfanityFilter2V231TestForProfanityResponseFactory7destroyEPNS3_24TestForProfanityResponseE +_ZN3sce2Np9CppWebApi15ProfanityFilter2V232WebApiErrorResponse_errorFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_25WebApiErrorResponse_errorEEE +_ZN3sce2Np9CppWebApi15ProfanityFilter2V232WebApiErrorResponse_errorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_25WebApiErrorResponse_errorEEE +_ZN3sce2Np9CppWebApi15ProfanityFilter2V232WebApiErrorResponse_errorFactory7destroyEPNS3_25WebApiErrorResponse_errorE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus10unsetOwnerEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus11setDataSizeERKl +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus11setObjectIdEPKc +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus11unsetSlotIdEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus13unsetDataSizeEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus13unsetObjectIdEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus18setLastUpdatedUserERKNS1_6Common12IntrusivePtrINS3_15LastUpdatedUserEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus20unsetLastUpdatedUserEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus22setLastUpdatedDateTimeERK10SceRtcTick +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus24unsetLastUpdatedDateTimeEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus7setInfoEPKvm +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus8setOwnerERKNS1_6Common12IntrusivePtrINS3_5OwnerEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus9setSlotIdERKi +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus9unsetInfoEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatusC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatusC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatusD1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatusD2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112ErrorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5ErrorEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112ErrorFactory6createEPNS1_6Common10LibContextEiPKcPNS5_12IntrusivePtrINS3_5ErrorEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112ErrorFactory7destroyEPNS3_5ErrorE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112OwnerFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_5OwnerEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112OwnerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5OwnerEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112OwnerFactory7destroyEPNS3_5OwnerE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi17addAndGetVariableEiRKNS4_28ParameterToAddAndGetVariableERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_8VariableEEENSA_INS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi23getMultiVariablesBySlotEiRKNS4_34ParameterToGetMultiVariablesBySlotERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_29GetMultiVariablesResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi23getMultiVariablesByUserEiRKNS4_34ParameterToGetMultiVariablesByUserERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_29GetMultiVariablesResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi23setMultiVariablesByUserEiRKNS4_34ParameterToSetMultiVariablesByUserERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi25setVariableWithConditionsEiRKNS4_36ParameterToSetVariableWithConditionsERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_8VariableEEENSA_INS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi26deleteMultiVariablesByUserEiRKNS4_37ParameterToDeleteMultiVariablesByUserERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariable10initializeEPNS1_6Common10LibContextEPKciNS6_12IntrusivePtrINS3_28AddAndGetVariableRequestBodyEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariable12setaccountIdEPKc +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariable31setaddAndGetVariableRequestBodyENS1_6Common12IntrusivePtrINS3_28AddAndGetVariableRequestBodyEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariable9setslotIdEi +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariable9terminateEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariableC1ERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariableC1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariableC2ERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariableC2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariableD1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariableD2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariableaSERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot10initializeEPNS1_6Common10LibContextEi +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot10unsetgroupEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot10unsetlimitEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot11setsortModeENS5_8SortModeE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot11unsetoffsetEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot13setaccountIdsEPKc +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot13unsetsortModeEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot15unsetaccountIdsEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot17setnpServiceLabelEj +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot19unsetnpServiceLabelEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot7setsortENS5_4SortE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot8setgroupENS5_5GroupE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot8setlimitEi +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot9setoffsetEi +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot9setslotIdEi +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot9terminateEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot9unsetsortEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlotC1ERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlotC1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlotC2ERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlotC2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlotD1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlotD2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlotaSERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser10initializeEPNS1_6Common10LibContextEPKcSA_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser10setslotIdsEPKc +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser10unsetlimitEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser11setsortModeENS5_8SortModeE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser11unsetoffsetEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser12setaccountIdEPKc +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser13unsetsortModeEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser17setnpServiceLabelEj +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser19unsetnpServiceLabelEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser7setsortENS5_4SortE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser8setlimitEi +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser9setoffsetEi +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser9terminateEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser9unsetsortEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUserC1ERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUserC1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUserC2ERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUserC2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUserD1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUserD2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUseraSERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToSetMultiVariablesByUser10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_28SetMultiVariablesRequestBodyEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToSetMultiVariablesByUser12setaccountIdEPKc +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToSetMultiVariablesByUser31setsetMultiVariablesRequestBodyENS1_6Common12IntrusivePtrINS3_28SetMultiVariablesRequestBodyEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToSetMultiVariablesByUser9terminateEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToSetMultiVariablesByUserC1ERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToSetMultiVariablesByUserC1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToSetMultiVariablesByUserC2ERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToSetMultiVariablesByUserC2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToSetMultiVariablesByUserD1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToSetMultiVariablesByUserD2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToSetMultiVariablesByUseraSERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditions10initializeEPNS1_6Common10LibContextEPKciNS6_12IntrusivePtrINS3_36SetVariableWithConditionsRequestBodyEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditions12setaccountIdEPKc +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditions39setsetVariableWithConditionsRequestBodyENS1_6Common12IntrusivePtrINS3_36SetVariableWithConditionsRequestBodyEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditions9setslotIdEi +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditions9terminateEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditionsC1ERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditionsC1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditionsC2ERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditionsC2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditionsD1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditionsD2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditionsaSERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUser10initializeEPNS1_6Common10LibContextEPKcSA_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUser10setslotIdsEPKc +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUser12setaccountIdEPKc +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUser17setnpServiceLabelEj +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUser19unsetnpServiceLabelEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUser9terminateEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUserC1ERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUserC1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUserC2ERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUserC2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUserD1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUserD2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUseraSERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V113ErrorResponse8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V113ErrorResponse8setErrorERKNS1_6Common12IntrusivePtrINS3_5ErrorEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V113ErrorResponseC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V113ErrorResponseC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V113ErrorResponseD1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V113ErrorResponseD2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V115LastUpdatedUser11setOnlineIdERK13SceNpOnlineId +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V115LastUpdatedUser12setAccountIdEPKc +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V115LastUpdatedUser13unsetOnlineIdEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V115LastUpdatedUser14unsetAccountIdEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V115LastUpdatedUser8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V115LastUpdatedUserC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V115LastUpdatedUserC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V115LastUpdatedUserD1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V115LastUpdatedUserD2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V115VariableFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_8VariableEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V115VariableFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_8VariableEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V115VariableFactory7destroyEPNS3_8VariableE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V117DataStatusFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_10DataStatusEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V117DataStatusFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_10DataStatusEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V117DataStatusFactory7destroyEPNS3_10DataStatusE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable10unsetOwnerEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable10unsetValueEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable11unsetSlotIdEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable18setLastUpdatedUserERKNS1_6Common12IntrusivePtrINS3_15LastUpdatedUserEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable20unsetLastUpdatedUserEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable22setLastUpdatedDateTimeERK10SceRtcTick +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable24unsetLastUpdatedDateTimeEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable8setOwnerERKNS1_6Common12IntrusivePtrINS3_5OwnerEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable8setValueERKl +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable9setSlotIdERKi +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariableC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariableC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariableD1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariableD2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V120ErrorResponseFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_5ErrorEEEPNS8_INS3_13ErrorResponseEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V120ErrorResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_13ErrorResponseEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V120ErrorResponseFactory7destroyEPNS3_13ErrorResponseE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V122LastUpdatedUserFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_15LastUpdatedUserEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V122LastUpdatedUserFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_15LastUpdatedUserEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V122LastUpdatedUserFactory7destroyEPNS3_15LastUpdatedUserE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody17setNpServiceLabelERKj +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody19unsetNpServiceLabelEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody30setComparedLastUpdatedDateTimeERK10SceRtcTick +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody32unsetComparedLastUpdatedDateTimeEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody35setComparedLastUpdatedUserAccountIdEPKc +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody37unsetComparedLastUpdatedUserAccountIdEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody7setInfoEPKvm +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBodyD1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBodyD2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V122UploadDataResponseBody11setObjectIdEPKc +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V122UploadDataResponseBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V122UploadDataResponseBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V122UploadDataResponseBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V122UploadDataResponseBodyD1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V122UploadDataResponseBodyD2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V125IdempotentVariableFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_18IdempotentVariableEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V125IdempotentVariableFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_18IdempotentVariableEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V125IdempotentVariableFactory7destroyEPNS3_18IdempotentVariableE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody17setNpServiceLabelERKj +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody19unsetNpServiceLabelEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody30setComparedLastUpdatedDateTimeERK10SceRtcTick +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody32unsetComparedLastUpdatedDateTimeEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody35setComparedLastUpdatedUserAccountIdEPKc +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody37unsetComparedLastUpdatedUserAccountIdEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody8setValueERKl +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBodyD1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBodyD2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V128SetMultiVariablesRequestBody12getVariablesEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V128SetMultiVariablesRequestBody12setVariablesERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_38SetMultiVariablesRequestBody_variablesEEEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V128SetMultiVariablesRequestBody14unsetVariablesEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V128SetMultiVariablesRequestBody17setNpServiceLabelERKj +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V128SetMultiVariablesRequestBody19unsetNpServiceLabelEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V128SetMultiVariablesRequestBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V128SetMultiVariablesRequestBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V128SetMultiVariablesRequestBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V128SetMultiVariablesRequestBodyD1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V128SetMultiVariablesRequestBodyD2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody10unsetLimitEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody11unsetOffsetEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody12getVariablesEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody12setVariablesERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_18IdempotentVariableEEEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody14unsetVariablesEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody21setTotalVariableCountERKi +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody23unsetTotalVariableCountEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody8setLimitERKi +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody9setOffsetERKi +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBodyD1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBodyD2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V129SetDataInfoRequestBodyFactory6createEPNS1_6Common10LibContextEPvmPNS5_12IntrusivePtrINS3_22SetDataInfoRequestBodyEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V129SetDataInfoRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_22SetDataInfoRequestBodyEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V129SetDataInfoRequestBodyFactory7destroyEPNS3_22SetDataInfoRequestBodyE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V129UploadDataResponseBodyFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_22UploadDataResponseBodyEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V129UploadDataResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_22UploadDataResponseBodyEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V129UploadDataResponseBodyFactory7destroyEPNS3_22UploadDataResponseBodyE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody10unsetLimitEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody11unsetOffsetEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody17getDataStatusListEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody17setDataStatusListERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_10DataStatusEEEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody19unsetDataStatusListEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody23setTotalDataStatusCountERKi +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody25unsetTotalDataStatusCountEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody8setLimitERKi +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody9setOffsetERKi +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyD1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyD2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V135AddAndGetVariableRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_28AddAndGetVariableRequestBodyEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V135AddAndGetVariableRequestBodyFactory6createEPNS1_6Common10LibContextElPNS5_12IntrusivePtrINS3_28AddAndGetVariableRequestBodyEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V135AddAndGetVariableRequestBodyFactory7destroyEPNS3_28AddAndGetVariableRequestBodyE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V135SetMultiVariablesRequestBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_28SetMultiVariablesRequestBodyEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V135SetMultiVariablesRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_28SetMultiVariablesRequestBodyEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V135SetMultiVariablesRequestBodyFactory7destroyEPNS3_28SetMultiVariablesRequestBodyE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V136GetMultiVariablesResponseBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_29GetMultiVariablesResponseBodyEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V136GetMultiVariablesResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_29GetMultiVariablesResponseBodyEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V136GetMultiVariablesResponseBodyFactory7destroyEPNS3_29GetMultiVariablesResponseBodyE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody12setConditionERKNS3_9ConditionE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody16setComparedValueERKl +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody17setNpServiceLabelERKj +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody18unsetComparedValueEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody19unsetNpServiceLabelEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody30setComparedLastUpdatedDateTimeERK10SceRtcTick +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody32unsetComparedLastUpdatedDateTimeEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody35setComparedLastUpdatedUserAccountIdEPKc +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody37unsetComparedLastUpdatedUserAccountIdEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody8setValueERKl +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyD1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyD2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V138SetMultiVariablesRequestBody_variables10unsetValueEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V138SetMultiVariablesRequestBody_variables11unsetSlotIdEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V138SetMultiVariablesRequestBody_variables8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V138SetMultiVariablesRequestBody_variables8setValueERKl +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V138SetMultiVariablesRequestBody_variables9setSlotIdERKi +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesD1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesD2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V139GetMultiDataStatusesResponseBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_32GetMultiDataStatusesResponseBodyEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V139GetMultiDataStatusesResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_32GetMultiDataStatusesResponseBodyEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V139GetMultiDataStatusesResponseBodyFactory7destroyEPNS3_32GetMultiDataStatusesResponseBodyE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V143SetVariableWithConditionsRequestBodyFactory6createEPNS1_6Common10LibContextENS3_9ConditionElPNS5_12IntrusivePtrINS3_36SetVariableWithConditionsRequestBodyEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V143SetVariableWithConditionsRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_36SetVariableWithConditionsRequestBodyEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V143SetVariableWithConditionsRequestBodyFactory7destroyEPNS3_36SetVariableWithConditionsRequestBodyE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V145SetMultiVariablesRequestBody_variablesFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_38SetMultiVariablesRequestBody_variablesEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V145SetMultiVariablesRequestBody_variablesFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_38SetMultiVariablesRequestBody_variablesEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V145SetMultiVariablesRequestBody_variablesFactory7destroyEPNS3_38SetMultiVariablesRequestBody_variablesE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V15Error10setMessageEPKc +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V15Error11unsetReasonEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V15Error11unsetSourceEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V15Error14setReferenceIdEPKc +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V15Error16unsetReferenceIdEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V15Error7setCodeERKi +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V15Error8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V15Error9setReasonEPKc +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V15Error9setSourceEPKc +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V15ErrorC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V15ErrorC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V15ErrorD1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V15ErrorD2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V15Owner11setOnlineIdERK13SceNpOnlineId +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V15Owner12setAccountIdEPKc +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V15Owner13unsetOnlineIdEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V15Owner14unsetAccountIdEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V15Owner8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V15OwnerC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V15OwnerC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V15OwnerD1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V15OwnerD2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi10uploadDataEiRKNS4_21ParameterToUploadDataERNS1_6Common19UpStreamTransactionINS8_12IntrusivePtrINS3_22UploadDataResponseBodyEEENSA_INS4_25UploadDataResponseHeadersEEEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi10uploadDataEiRKNS4_42ParameterWithBinaryRequestBodyToUploadDataERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_22UploadDataResponseBodyEEENSA_INS4_25UploadDataResponseHeadersEEEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi11setDataInfoEiRKNS4_22ParameterToSetDataInfoERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS4_26SetDataInfoResponseHeadersEEEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi12downloadDataEiRKNS4_23ParameterToDownloadDataERNS1_6Common11TransactionINS8_12IntrusivePtrINS8_6BinaryEEENSA_INS4_27DownloadDataResponseHeadersEEEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi12downloadDataEiRKNS4_23ParameterToDownloadDataERNS1_6Common21DownStreamTransactionINS8_12IntrusivePtrINS4_27DownloadDataResponseHeadersEEEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData10initializeEPNS1_6Common10LibContextEPKci +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData12setaccountIdEPKc +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData21setxPsnNpServiceLabelEj +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData22setxPsnAtomicOperationENS5_19XPsnAtomicOperationE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData23unsetxPsnNpServiceLabelEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData24setxPsnAtomicOperationIdEPKc +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData24unsetxPsnAtomicOperationEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData26unsetxPsnAtomicOperationIdEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData37setxPsnTcsComparedLastUpdatedDateTimeEPKc +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData39unsetxPsnTcsComparedLastUpdatedDateTimeEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData42setxPsnTcsComparedLastUpdatedUserAccountIdEm +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData44unsetxPsnTcsComparedLastUpdatedUserAccountIdEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData9setslotIdEi +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData9terminateEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadDataC1ERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadDataC1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadDataC2ERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadDataC2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadDataD1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadDataD2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadDataaSERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21deleteMultiDataBySlotEiRKNS4_32ParameterToDeleteMultiDataBySlotERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21deleteMultiDataByUserEiRKNS4_32ParameterToDeleteMultiDataByUserERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo10initializeEPNS1_6Common10LibContextEPKciNS6_12IntrusivePtrINS3_22SetDataInfoRequestBodyEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo12setaccountIdEPKc +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo22setxPsnAtomicOperationENS5_19XPsnAtomicOperationE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo24setxPsnAtomicOperationIdEPKc +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo24unsetxPsnAtomicOperationEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo25setsetDataInfoRequestBodyENS1_6Common12IntrusivePtrINS3_22SetDataInfoRequestBodyEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo26unsetxPsnAtomicOperationIdEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo9setslotIdEi +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo9terminateEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfoC1ERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfoC1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfoC2ERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfoC2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfoD1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfoD2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfoaSERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData10initializeEPNS1_6Common10LibContextEPKci +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData10setifMatchEPKc +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData10unsetrangeEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData11setobjectIdEPKc +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData12setaccountIdEPKc +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData12unsetifMatchEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData13unsetobjectIdEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData17setnpServiceLabelEj +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData19unsetnpServiceLabelEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData8setrangeEPKc +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData9setslotIdEi +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData9terminateEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadDataC1ERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadDataC1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadDataC2ERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadDataC2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadDataD1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadDataD2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadDataaSERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeaders21intrusive_ptr_add_refEPS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeaders21intrusive_ptr_sub_refEPS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeaders24setXPsnAtomicOperationIdERKNS1_6Common6StringE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeaders26unsetXPsnAtomicOperationIdEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeaders5parseEPNS1_6Common10LibContextElPNS6_12IntrusivePtrIS5_EE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeaders6createEPNS1_6Common10LibContextERNS6_12IntrusivePtrIS5_EEl +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeaders7destroyEPS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersC1ERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersC1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersC2ERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersC2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersD1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersD2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersaSERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeaders21intrusive_ptr_add_refEPS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeaders21intrusive_ptr_sub_refEPS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeaders24setXPsnAtomicOperationIdERKNS1_6Common6StringE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeaders26unsetXPsnAtomicOperationIdEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeaders6createEPNS1_6Common10LibContextERNS6_12IntrusivePtrIS5_EEl +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeaders7destroyEPS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersC1ERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersC1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersC2ERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersC2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersD1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersD2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersaSERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26getMultiDataStatusesBySlotEiRKNS4_37ParameterToGetMultiDataStatusesBySlotERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_32GetMultiDataStatusesResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26getMultiDataStatusesByUserEiRKNS4_37ParameterToGetMultiDataStatusesByUserERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_32GetMultiDataStatusesResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeaders15setLastModifiedERKNS1_6Common6StringE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeaders17unsetLastModifiedEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeaders21intrusive_ptr_add_refEPS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeaders21intrusive_ptr_sub_refEPS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeaders6createEPNS1_6Common10LibContextERNS6_12IntrusivePtrIS5_EEl +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeaders7destroyEPS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeaders7setETagERKNS1_6Common6StringE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeaders9unsetETagEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersC1ERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersC1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersC2ERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersC2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersD1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersD2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersaSERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlot10initializeEPNS1_6Common10LibContextEPKci +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlot13setaccountIdsEPKc +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlot17setnpServiceLabelEj +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlot19unsetnpServiceLabelEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlot9setslotIdEi +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlot9terminateEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlotC1ERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlotC1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlotC2ERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlotC2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlotD1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlotD2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlotaSERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUser10initializeEPNS1_6Common10LibContextEPKcSA_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUser10setslotIdsEPKc +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUser12setaccountIdEPKc +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUser17setnpServiceLabelEj +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUser19unsetnpServiceLabelEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUser9terminateEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUserC1ERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUserC1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUserC2ERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUserC2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUserD1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUserD2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUseraSERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot10initializeEPNS1_6Common10LibContextEi +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot10unsetgroupEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot10unsetlimitEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot11setsortModeENS5_8SortModeE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot11unsetfieldsEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot11unsetoffsetEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot13setaccountIdsEPKc +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot13unsetsortModeEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot15unsetaccountIdsEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot17setnpServiceLabelEj +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot19unsetnpServiceLabelEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot7setsortENS5_4SortE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot8setgroupENS5_5GroupE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot8setlimitEi +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot9setfieldsEPKc +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot9setoffsetEi +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot9setslotIdEi +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot9terminateEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot9unsetsortEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlotC1ERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlotC1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlotC2ERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlotC2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlotD1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlotD2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlotaSERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser10initializeEPNS1_6Common10LibContextEPKcSA_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser10setslotIdsEPKc +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser10unsetlimitEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser11setsortModeENS5_8SortModeE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser11unsetfieldsEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser11unsetoffsetEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser12setaccountIdEPKc +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser13unsetsortModeEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser17setnpServiceLabelEj +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser19unsetnpServiceLabelEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser7setsortENS5_4SortE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser8setlimitEi +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser9setfieldsEPKc +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser9setoffsetEi +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser9terminateEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser9unsetsortEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUserC1ERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUserC1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUserC2ERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUserC2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUserD1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUserD2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUseraSERS5_ +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi42ParameterWithBinaryRequestBodyToUploadData10initializeEPNS1_6Common10LibContextEPKci +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi42ParameterWithBinaryRequestBodyToUploadData14setRequestBodyEPKhm +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi42ParameterWithBinaryRequestBodyToUploadData9terminateEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi42ParameterWithBinaryRequestBodyToUploadDataC1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi42ParameterWithBinaryRequestBodyToUploadDataC2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi42ParameterWithBinaryRequestBodyToUploadDataD1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi42ParameterWithBinaryRequestBodyToUploadDataD2Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V18Variable10unsetOwnerEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V18Variable10unsetValueEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V18Variable11unsetSlotIdEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V18Variable12setPrevValueERKl +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V18Variable14unsetPrevValueEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V18Variable18setLastUpdatedUserERKNS1_6Common12IntrusivePtrINS3_15LastUpdatedUserEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V18Variable20unsetLastUpdatedUserEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V18Variable22setLastUpdatedDateTimeERK10SceRtcTick +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V18Variable24unsetLastUpdatedDateTimeEv +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V18Variable8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V18Variable8setOwnerERKNS1_6Common12IntrusivePtrINS3_5OwnerEEE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V18Variable8setValueERKl +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V18Variable9setSlotIdERKi +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V18VariableC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V18VariableC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V18VariableD1Ev +_ZN3sce2Np9CppWebApi17TitleCloudStorage2V18VariableD2Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V110MmrFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_3MmrEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V110MmrFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_3MmrEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V110MmrFactory7destroyEPNS3_3MmrE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V110Reputation10setPerGameERKNS1_6Common12IntrusivePtrINS3_20ReputationPropertiesEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V110Reputation11unsetGlobalEv +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V110Reputation12unsetPerGameEv +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V110Reputation15setPerFranchiseERKNS1_6Common12IntrusivePtrINS3_20ReputationPropertiesEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V110Reputation17unsetPerFranchiseEv +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V110Reputation8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V110Reputation9setGlobalERKNS1_6Common12IntrusivePtrINS3_20ReputationPropertiesEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V110ReputationC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V110ReputationC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V110ReputationD1Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V110ReputationD2Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V112ErrorFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_5ErrorEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V112ErrorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5ErrorEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V112ErrorFactory7destroyEPNS3_5ErrorE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V112StatsFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_5StatsEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V112StatsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5StatsEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V112StatsFactory7destroyEPNS3_5StatsE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V113ErrorResponse8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V113ErrorResponse8setErrorERKNS1_6Common12IntrusivePtrINS3_5ErrorEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V113ErrorResponseC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V113ErrorResponseC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V113ErrorResponseD1Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V113ErrorResponseD2Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V113MmrProperties8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V113MmrProperties9setRatingERKi +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V113MmrPropertiesC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V113MmrPropertiesC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V113MmrPropertiesD1Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V113MmrPropertiesD2Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V115FrequentlyMuted11unsetGlobalEv +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V115FrequentlyMuted8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V115FrequentlyMuted9setGlobalERKNS1_6Common12IntrusivePtrINS3_25FrequentlyMutedPropertiesEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V115FrequentlyMutedC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V115FrequentlyMutedC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V115FrequentlyMutedD1Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V115FrequentlyMutedD2Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V115NatConnectivity11unsetGlobalEv +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V115NatConnectivity8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V115NatConnectivity9setGlobalERKNS1_6Common12IntrusivePtrINS3_25NatConnectivityPropertiesEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V115NatConnectivityC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V115NatConnectivityC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V115NatConnectivityD1Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V115NatConnectivityD2Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V116BandwidthFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_9BandwidthEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V116BandwidthFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_9BandwidthEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V116BandwidthFactory7destroyEPNS3_9BandwidthE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V116PlayStyleFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_9PlayStyleEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V116PlayStyleFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_9PlayStyleEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V116PlayStyleFactory7destroyEPNS3_9PlayStyleE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V117ConnectionQuality11unsetGlobalEv +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V117ConnectionQuality8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V117ConnectionQuality9setGlobalERKNS1_6Common12IntrusivePtrINS3_27ConnectionQualityPropertiesEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V117ConnectionQualityC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V117ConnectionQualityC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V117ConnectionQualityD1Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V117ConnectionQualityD2Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V117ReputationFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_10ReputationEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V117ReputationFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_10ReputationEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V117ReputationFactory7destroyEPNS3_10ReputationE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119BandwidthProperties11setUpstreamERKNS1_6Common12IntrusivePtrINS3_24BandwidthUpstreamMetricsEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119BandwidthProperties13setDownstreamERKNS1_6Common12IntrusivePtrINS3_26BandwidthDownstreamMetricsEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119BandwidthProperties8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119BandwidthPropertiesC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119BandwidthPropertiesC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119BandwidthPropertiesD1Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119BandwidthPropertiesD2Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate10setPerGameERKNS1_6Common12IntrusivePtrINS3_29MatchCompletionRatePropertiesEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate11setPerGenreERKNS1_6Common12IntrusivePtrINS3_29MatchCompletionRatePropertiesEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate11unsetGlobalEv +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate12unsetPerGameEv +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate13unsetPerGenreEv +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate15setPerFranchiseERKNS1_6Common12IntrusivePtrINS3_29MatchCompletionRatePropertiesEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate17unsetPerFranchiseEv +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate9setGlobalERKNS1_6Common12IntrusivePtrINS3_29MatchCompletionRatePropertiesEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRateC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRateC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRateD1Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRateD2Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119NatConnectivityFrom8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119NatConnectivityFrom9setToNat1ERKNS1_6Common12IntrusivePtrINS3_24NatConnectivityToMetricsEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119NatConnectivityFrom9setToNat2ERKNS1_6Common12IntrusivePtrINS3_24NatConnectivityToMetricsEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119NatConnectivityFrom9setToNat3ERKNS1_6Common12IntrusivePtrINS3_24NatConnectivityToMetricsEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119NatConnectivityFromC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119NatConnectivityFromC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119NatConnectivityFromD1Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119NatConnectivityFromD2Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119PlayStyleProperties11setProgressERKi +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119PlayStyleProperties12setChallengeERKi +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119PlayStyleProperties12setOpenEndedERKi +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119PlayStyleProperties14setCompetitiveERKi +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119PlayStyleProperties8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119PlayStylePropertiesC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119PlayStylePropertiesC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119PlayStylePropertiesD1Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119PlayStylePropertiesD2Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ErrorResponseFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_5ErrorEEEPNS8_INS3_13ErrorResponseEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ErrorResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_13ErrorResponseEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ErrorResponseFactory7destroyEPNS3_13ErrorResponseE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120MmrPropertiesFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_13MmrPropertiesEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120MmrPropertiesFactory6createEPNS1_6Common10LibContextEiPNS5_12IntrusivePtrINS3_13MmrPropertiesEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120MmrPropertiesFactory7destroyEPNS3_13MmrPropertiesE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationProperties10setHelpfulERKi +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationProperties12setGoodSportERKi +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationProperties12setWelcomingERKi +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationProperties18setNumberOfMatchesERKi +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationProperties8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationProperties9setLeaderERKi +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationPropertiesC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationPropertiesC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationPropertiesD1Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationPropertiesD2Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V122FrequentlyMutedFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_15FrequentlyMutedEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V122FrequentlyMutedFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_15FrequentlyMutedEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V122FrequentlyMutedFactory7destroyEPNS3_15FrequentlyMutedE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V122NatConnectivityFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_15NatConnectivityEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V122NatConnectivityFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_15NatConnectivityEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V122NatConnectivityFactory7destroyEPNS3_15NatConnectivityE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124BandwidthUpstreamMetrics10setAverageERKi +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124BandwidthUpstreamMetrics18setConfidenceScoreERKi +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124BandwidthUpstreamMetrics20setStandardDeviationERKi +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124BandwidthUpstreamMetrics8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsD1Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsD2Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124ConnectionQualityFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_17ConnectionQualityEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124ConnectionQualityFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_17ConnectionQualityEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124ConnectionQualityFactory7destroyEPNS3_17ConnectionQualityE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124NatConnectivityToMetrics14setSuccessRateERKi +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124NatConnectivityToMetrics18setConfidenceScoreERKi +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124NatConnectivityToMetrics8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124NatConnectivityToMetricsC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124NatConnectivityToMetricsC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124NatConnectivityToMetricsD1Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124NatConnectivityToMetricsD2Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V125FrequentlyMutedProperties10setInPartyERKNS1_6Common12IntrusivePtrINS3_29FrequentlyMutedInPartyMetricsEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V125FrequentlyMutedProperties8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V125FrequentlyMutedProperties9setInGameERKNS1_6Common12IntrusivePtrINS3_28FrequentlyMutedInGameMetricsEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesD1Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesD2Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V125NatConnectivityProperties11setFromNat1ERKNS1_6Common12IntrusivePtrINS3_19NatConnectivityFromEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V125NatConnectivityProperties11setFromNat2ERKNS1_6Common12IntrusivePtrINS3_19NatConnectivityFromEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V125NatConnectivityProperties11setFromNat3ERKNS1_6Common12IntrusivePtrINS3_19NatConnectivityFromEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V125NatConnectivityProperties8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V125NatConnectivityPropertiesC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V125NatConnectivityPropertiesC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V125NatConnectivityPropertiesD1Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V125NatConnectivityPropertiesD2Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126BandwidthDownstreamMetrics10setAverageERKi +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126BandwidthDownstreamMetrics18setConfidenceScoreERKi +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126BandwidthDownstreamMetrics20setStandardDeviationERKi +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126BandwidthDownstreamMetrics8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsD1Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsD2Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126BandwidthPropertiesFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_26BandwidthDownstreamMetricsEEENS8_INS3_24BandwidthUpstreamMetricsEEEPNS8_INS3_19BandwidthPropertiesEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126BandwidthPropertiesFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_19BandwidthPropertiesEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126BandwidthPropertiesFactory7destroyEPNS3_19BandwidthPropertiesE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126MatchCompletionRateFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_19MatchCompletionRateEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126MatchCompletionRateFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_19MatchCompletionRateEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126MatchCompletionRateFactory7destroyEPNS3_19MatchCompletionRateE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126NatConnectivityFromFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_24NatConnectivityToMetricsEEESA_SA_PNS8_INS3_19NatConnectivityFromEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126NatConnectivityFromFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_19NatConnectivityFromEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126NatConnectivityFromFactory7destroyEPNS3_19NatConnectivityFromE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126PlayStylePropertiesFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_19PlayStylePropertiesEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126PlayStylePropertiesFactory6createEPNS1_6Common10LibContextEiiiiPNS5_12IntrusivePtrINS3_19PlayStylePropertiesEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126PlayStylePropertiesFactory7destroyEPNS3_19PlayStylePropertiesE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V127ConnectionQualityProperties11setWirelessERKNS1_6Common12IntrusivePtrINS3_32ConnectionQualityWirelessMetricsEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V127ConnectionQualityProperties8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V127ConnectionQualityProperties8setWiredERKNS1_6Common12IntrusivePtrINS3_29ConnectionQualityWiredMetricsEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V127ConnectionQualityPropertiesC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V127ConnectionQualityPropertiesC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V127ConnectionQualityPropertiesD1Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V127ConnectionQualityPropertiesD2Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V127ReputationPropertiesFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_20ReputationPropertiesEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V127ReputationPropertiesFactory6createEPNS1_6Common10LibContextEiiiiiPNS5_12IntrusivePtrINS3_20ReputationPropertiesEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V127ReputationPropertiesFactory7destroyEPNS3_20ReputationPropertiesE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetrics16setNumberOfTimesERKi +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetrics17setPercentileRankERKi +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetrics18setConfidenceScoreERKi +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetrics8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsD1Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsD2Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129ConnectionQualityWiredMetrics17setPacketLossRateERKi +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129ConnectionQualityWiredMetrics18setConfidenceScoreERKi +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129ConnectionQualityWiredMetrics8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129ConnectionQualityWiredMetrics9setJitterERKd +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsD1Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsD2Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetrics16setNumberOfTimesERKi +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetrics17setPercentileRankERKi +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetrics18setConfidenceScoreERKi +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetrics8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsD1Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsD2Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129MatchCompletionRateProperties12setCompletedERKNS1_6Common12IntrusivePtrINS3_35MatchCompletionRateCompletedMetricsEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129MatchCompletionRateProperties15setDisconnectedERKNS1_6Common12IntrusivePtrINS3_38MatchCompletionRateDisconnectedMetricsEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129MatchCompletionRateProperties18setConfidenceScoreERKi +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129MatchCompletionRateProperties7setQuitERKNS1_6Common12IntrusivePtrINS3_30MatchCompletionRateQuitMetricsEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129MatchCompletionRateProperties8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesD1Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesD2Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetrics27setCompletionRatePerReasonsERKi +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetrics8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsD1Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsD2Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V131BandwidthUpstreamMetricsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_24BandwidthUpstreamMetricsEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V131BandwidthUpstreamMetricsFactory6createEPNS1_6Common10LibContextEiiiPNS5_12IntrusivePtrINS3_24BandwidthUpstreamMetricsEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V131BandwidthUpstreamMetricsFactory7destroyEPNS3_24BandwidthUpstreamMetricsE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V131NatConnectivityToMetricsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_24NatConnectivityToMetricsEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V131NatConnectivityToMetricsFactory6createEPNS1_6Common10LibContextEiiPNS5_12IntrusivePtrINS3_24NatConnectivityToMetricsEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V131NatConnectivityToMetricsFactory7destroyEPNS3_24NatConnectivityToMetricsE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetrics17setPacketLossRateERKi +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetrics18setConfidenceScoreERKi +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetrics8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetrics9setJitterERKd +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsD1Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsD2Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V132FrequentlyMutedPropertiesFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_28FrequentlyMutedInGameMetricsEEENS8_INS3_29FrequentlyMutedInPartyMetricsEEEPNS8_INS3_25FrequentlyMutedPropertiesEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V132FrequentlyMutedPropertiesFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_25FrequentlyMutedPropertiesEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V132FrequentlyMutedPropertiesFactory7destroyEPNS3_25FrequentlyMutedPropertiesE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V132NatConnectivityPropertiesFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_19NatConnectivityFromEEESA_SA_PNS8_INS3_25NatConnectivityPropertiesEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V132NatConnectivityPropertiesFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_25NatConnectivityPropertiesEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V132NatConnectivityPropertiesFactory7destroyEPNS3_25NatConnectivityPropertiesE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V133BandwidthDownstreamMetricsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_26BandwidthDownstreamMetricsEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V133BandwidthDownstreamMetricsFactory6createEPNS1_6Common10LibContextEiiiPNS5_12IntrusivePtrINS3_26BandwidthDownstreamMetricsEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V133BandwidthDownstreamMetricsFactory7destroyEPNS3_26BandwidthDownstreamMetricsE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V134ConnectionQualityPropertiesFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_29ConnectionQualityWiredMetricsEEENS8_INS3_32ConnectionQualityWirelessMetricsEEEPNS8_INS3_27ConnectionQualityPropertiesEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V134ConnectionQualityPropertiesFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_27ConnectionQualityPropertiesEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V134ConnectionQualityPropertiesFactory7destroyEPNS3_27ConnectionQualityPropertiesE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V135FrequentlyMutedInGameMetricsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_28FrequentlyMutedInGameMetricsEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V135FrequentlyMutedInGameMetricsFactory6createEPNS1_6Common10LibContextEiiiPNS5_12IntrusivePtrINS3_28FrequentlyMutedInGameMetricsEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V135FrequentlyMutedInGameMetricsFactory7destroyEPNS3_28FrequentlyMutedInGameMetricsE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetrics27setCompletionRatePerReasonsERKi +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetrics8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsD1Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsD2Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V136ConnectionQualityWiredMetricsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_29ConnectionQualityWiredMetricsEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V136ConnectionQualityWiredMetricsFactory6createEPNS1_6Common10LibContextEidiPNS5_12IntrusivePtrINS3_29ConnectionQualityWiredMetricsEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V136ConnectionQualityWiredMetricsFactory7destroyEPNS3_29ConnectionQualityWiredMetricsE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V136FrequentlyMutedInPartyMetricsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_29FrequentlyMutedInPartyMetricsEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V136FrequentlyMutedInPartyMetricsFactory6createEPNS1_6Common10LibContextEiiiPNS5_12IntrusivePtrINS3_29FrequentlyMutedInPartyMetricsEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V136FrequentlyMutedInPartyMetricsFactory7destroyEPNS3_29FrequentlyMutedInPartyMetricsE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V136MatchCompletionRatePropertiesFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_35MatchCompletionRateCompletedMetricsEEEiNS8_INS3_38MatchCompletionRateDisconnectedMetricsEEENS8_INS3_30MatchCompletionRateQuitMetricsEEEPNS8_INS3_29MatchCompletionRatePropertiesEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V136MatchCompletionRatePropertiesFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_29MatchCompletionRatePropertiesEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V136MatchCompletionRatePropertiesFactory7destroyEPNS3_29MatchCompletionRatePropertiesE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V137MatchCompletionRateQuitMetricsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_30MatchCompletionRateQuitMetricsEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V137MatchCompletionRateQuitMetricsFactory6createEPNS1_6Common10LibContextEiPNS5_12IntrusivePtrINS3_30MatchCompletionRateQuitMetricsEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V137MatchCompletionRateQuitMetricsFactory7destroyEPNS3_30MatchCompletionRateQuitMetricsE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetrics27setCompletionRatePerReasonsERKi +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetrics8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsD1Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsD2Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V139ConnectionQualityWirelessMetricsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_32ConnectionQualityWirelessMetricsEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V139ConnectionQualityWirelessMetricsFactory6createEPNS1_6Common10LibContextEidiPNS5_12IntrusivePtrINS3_32ConnectionQualityWirelessMetricsEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V139ConnectionQualityWirelessMetricsFactory7destroyEPNS3_32ConnectionQualityWirelessMetricsE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V13Mmr11setPerGenreERKNS1_6Common12IntrusivePtrINS3_13MmrPropertiesEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V13Mmr13unsetPerGenreEv +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V13Mmr15setPerFranchiseERKNS1_6Common12IntrusivePtrINS3_13MmrPropertiesEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V13Mmr17unsetPerFranchiseEv +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V13Mmr8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V13MmrC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V13MmrC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V13MmrD1Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V13MmrD2Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V142MatchCompletionRateCompletedMetricsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_35MatchCompletionRateCompletedMetricsEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V142MatchCompletionRateCompletedMetricsFactory6createEPNS1_6Common10LibContextEiPNS5_12IntrusivePtrINS3_35MatchCompletionRateCompletedMetricsEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V142MatchCompletionRateCompletedMetricsFactory7destroyEPNS3_35MatchCompletionRateCompletedMetricsE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V145MatchCompletionRateDisconnectedMetricsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_38MatchCompletionRateDisconnectedMetricsEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V145MatchCompletionRateDisconnectedMetricsFactory6createEPNS1_6Common10LibContextEiPNS5_12IntrusivePtrINS3_38MatchCompletionRateDisconnectedMetricsEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V145MatchCompletionRateDisconnectedMetricsFactory7destroyEPNS3_38MatchCompletionRateDisconnectedMetricsE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Error10setMessageEPKc +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Error12unsetMessageEv +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Error14setReferenceIdEPKc +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Error16unsetReferenceIdEv +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Error7setCodeERKi +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Error8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Error9unsetCodeEv +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15ErrorC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15ErrorC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15ErrorD1Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15ErrorD2Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats12setBandwidthERKNS1_6Common12IntrusivePtrINS3_9BandwidthEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats12setPlayStyleERKNS1_6Common12IntrusivePtrINS3_9PlayStyleEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats13setReputationERKNS1_6Common12IntrusivePtrINS3_10ReputationEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats14unsetBandwidthEv +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats14unsetPlayStyleEv +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats15unsetReputationEv +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats18setFrequentlyMutedERKNS1_6Common12IntrusivePtrINS3_15FrequentlyMutedEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats18setNatConnectivityERKNS1_6Common12IntrusivePtrINS3_15NatConnectivityEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats20setConnectionQualityERKNS1_6Common12IntrusivePtrINS3_17ConnectionQualityEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats20unsetFrequentlyMutedEv +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats20unsetNatConnectivityEv +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats22setMatchCompletionRateERKNS1_6Common12IntrusivePtrINS3_19MatchCompletionRateEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats22unsetConnectionQualityEv +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats24unsetMatchCompletionRateEv +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats6setMmrERKNS1_6Common12IntrusivePtrINS3_3MmrEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats8unsetMmrEv +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15StatsC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15StatsC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15StatsD1Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15StatsD2Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStats10initializeEPNS1_6Common10LibContextEj +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStats16setincludeFieldsEPKc +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStats17setnpServiceLabelEj +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStats18unsetincludeFieldsEv +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStats9terminateEv +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStatsC1ERS5_ +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStatsC1Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStatsC2ERS5_ +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStatsC2Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStatsD1Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStatsD2Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStatsaSERS5_ +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi8getStatsEiRKNS4_19ParameterToGetStatsERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_5StatsEEENSA_INS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19Bandwidth11unsetGlobalEv +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19Bandwidth8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19Bandwidth9setGlobalERKNS1_6Common12IntrusivePtrINS3_19BandwidthPropertiesEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19BandwidthC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19BandwidthC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19BandwidthD1Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19BandwidthD2Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle10setPerGameERKNS1_6Common12IntrusivePtrINS3_19PlayStylePropertiesEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle11setPerGenreERKNS1_6Common12IntrusivePtrINS3_19PlayStylePropertiesEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle11unsetGlobalEv +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle12unsetPerGameEv +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle13unsetPerGenreEv +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle15setPerFranchiseERKNS1_6Common12IntrusivePtrINS3_19PlayStylePropertiesEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle17unsetPerFranchiseEv +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle9setGlobalERKNS1_6Common12IntrusivePtrINS3_19PlayStylePropertiesEEE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyleC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyleC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyleD1Ev +_ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyleD2Ev +_ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V112ErrorFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_5ErrorEEE +_ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V112ErrorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5ErrorEEE +_ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V112ErrorFactory7destroyEPNS3_5ErrorE +_ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V113ErrorResponse8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V113ErrorResponse8setErrorERKNS1_6Common12IntrusivePtrINS3_5ErrorEEE +_ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V113ErrorResponseC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V113ErrorResponseC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V113ErrorResponseD1Ev +_ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V113ErrorResponseD2Ev +_ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V113RatingFactory6createEPNS1_6Common10LibContextEPKcRKjiPNS5_12IntrusivePtrINS3_6RatingEEE +_ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V113RatingFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_6RatingEEE +_ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V113RatingFactory7destroyEPNS3_6RatingE +_ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V120ErrorResponseFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_5ErrorEEEPNS8_INS3_13ErrorResponseEEE +_ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V120ErrorResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_13ErrorResponseEEE +_ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V120ErrorResponseFactory7destroyEPNS3_13ErrorResponseE +_ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15Error10setMessageEPKc +_ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15Error12unsetMessageEv +_ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15Error14setReferenceIdEPKc +_ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15Error16unsetReferenceIdEv +_ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15Error7setCodeERKi +_ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15Error8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15Error9unsetCodeEv +_ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15ErrorC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15ErrorC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15ErrorD1Ev +_ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15ErrorD2Ev +_ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V16Rating13setActivityIdEPKc +_ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V16Rating15setRatingNumberERKi +_ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V16Rating17setNpServiceLabelERKj +_ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V16Rating8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V16RatingC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V16RatingC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V16RatingD1Ev +_ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V16RatingD2Ev +_ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V19RatingApi10postRatingEiRKNS4_21ParameterToPostRatingERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V19RatingApi21ParameterToPostRating10initializeEPNS1_6Common10LibContextENS6_12IntrusivePtrINS3_6RatingEEE +_ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V19RatingApi21ParameterToPostRating9setratingENS1_6Common12IntrusivePtrINS3_6RatingEEE +_ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V19RatingApi21ParameterToPostRating9terminateEv +_ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V19RatingApi21ParameterToPostRatingC1ERS5_ +_ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V19RatingApi21ParameterToPostRatingC1Ev +_ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V19RatingApi21ParameterToPostRatingC2ERS5_ +_ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V19RatingApi21ParameterToPostRatingC2Ev +_ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V19RatingApi21ParameterToPostRatingD1Ev +_ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V19RatingApi21ParameterToPostRatingD2Ev +_ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V19RatingApi21ParameterToPostRatingaSERS5_ +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError10setMessageEPKc +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError11unsetErrorsEv +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError11unsetReasonEv +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError11unsetSourceEv +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError12unsetMessageEv +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError14setReferenceIdEPKc +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError16unsetReferenceIdEv +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError7setCodeERKi +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError9getErrorsEv +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError9setErrorsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_5ErrorEEEEE +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError9setReasonEPKc +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError9setSourceEPKc +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebErrorC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebErrorC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebErrorD1Ev +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebErrorD2Ev +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V312ErrorFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_5ErrorEEE +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V312ErrorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5ErrorEEE +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V312ErrorFactory7destroyEPNS3_5ErrorE +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V314MissingElement7setNameEPKc +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V314MissingElement8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V314MissingElement9unsetNameEv +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V314MissingElementC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V314MissingElementC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V314MissingElementD1Ev +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V314MissingElementD2Ev +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V318PsnWebErrorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_11PsnWebErrorEEE +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V318PsnWebErrorFactory6createEPNS1_6Common10LibContextEiPNS5_12IntrusivePtrINS3_11PsnWebErrorEEE +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V318PsnWebErrorFactory7destroyEPNS3_11PsnWebErrorE +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V318PsnWebErrorWrapper8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V318PsnWebErrorWrapper8setErrorERKNS1_6Common12IntrusivePtrINS3_11PsnWebErrorEEE +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V318PsnWebErrorWrapperC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V318PsnWebErrorWrapperC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V318PsnWebErrorWrapperD1Ev +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V318PsnWebErrorWrapperD2Ev +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V321MissingElementFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_14MissingElementEEE +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V321MissingElementFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_14MissingElementEEE +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V321MissingElementFactory7destroyEPNS3_14MissingElementE +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V324ValidationConstraintInfo6setKeyEPKc +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V324ValidationConstraintInfo8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V324ValidationConstraintInfo8setValueEPKc +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V324ValidationConstraintInfoC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V324ValidationConstraintInfoC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V324ValidationConstraintInfoD1Ev +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V324ValidationConstraintInfoD2Ev +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V325PsnWebErrorWrapperFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_11PsnWebErrorEEEPNS8_INS3_18PsnWebErrorWrapperEEE +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V325PsnWebErrorWrapperFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_18PsnWebErrorWrapperEEE +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V325PsnWebErrorWrapperFactory7destroyEPNS3_18PsnWebErrorWrapperE +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V331ValidationConstraintInfoFactory6createEPNS1_6Common10LibContextEPKcS9_PNS5_12IntrusivePtrINS3_24ValidationConstraintInfoEEE +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V331ValidationConstraintInfoFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_24ValidationConstraintInfoEEE +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V331ValidationConstraintInfoFactory7destroyEPNS3_24ValidationConstraintInfoE +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V333CommunicationRestrictionStatusApi33getCommunicationRestrictionStatusEiRKNS4_44ParameterToGetCommunicationRestrictionStatusERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_38CommunicationRestrictionStatusResponseEEENSA_INS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V333CommunicationRestrictionStatusApi44ParameterToGetCommunicationRestrictionStatus10initializeEPNS1_6Common10LibContextEm +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V333CommunicationRestrictionStatusApi44ParameterToGetCommunicationRestrictionStatus16setaccountIdOrMeEm +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V333CommunicationRestrictionStatusApi44ParameterToGetCommunicationRestrictionStatus9terminateEv +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V333CommunicationRestrictionStatusApi44ParameterToGetCommunicationRestrictionStatusC1ERS5_ +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V333CommunicationRestrictionStatusApi44ParameterToGetCommunicationRestrictionStatusC1Ev +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V333CommunicationRestrictionStatusApi44ParameterToGetCommunicationRestrictionStatusC2ERS5_ +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V333CommunicationRestrictionStatusApi44ParameterToGetCommunicationRestrictionStatusC2Ev +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V333CommunicationRestrictionStatusApi44ParameterToGetCommunicationRestrictionStatusD1Ev +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V333CommunicationRestrictionStatusApi44ParameterToGetCommunicationRestrictionStatusD2Ev +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V333CommunicationRestrictionStatusApi44ParameterToGetCommunicationRestrictionStatusaSERS5_ +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponse13setRestrictedERKb +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponse8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseD1Ev +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseD2Ev +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V345CommunicationRestrictionStatusResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_38CommunicationRestrictionStatusResponseEEE +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V345CommunicationRestrictionStatusResponseFactory6createEPNS1_6Common10LibContextEbPNS5_12IntrusivePtrINS3_38CommunicationRestrictionStatusResponseEEE +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V345CommunicationRestrictionStatusResponseFactory7destroyEPNS3_38CommunicationRestrictionStatusResponseE +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error10setMessageEPKc +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error12unsetMessageEv +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error18getMissingElementsEv +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error18setMissingElementsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_14MissingElementEEEEE +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error20unsetMissingElementsEv +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error23setValidationConstraintEPKc +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error25unsetValidationConstraintEv +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error27getValidationConstraintInfoEv +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error27setValidationConstraintInfoERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_24ValidationConstraintInfoEEEEE +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error29unsetValidationConstraintInfoEv +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error7setPathEPKc +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error9unsetPathEv +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35ErrorC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35ErrorC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35ErrorD1Ev +_ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35ErrorD2Ev +_ZN3sce2Np9CppWebApi6Common10InitParamsC1Ev +_ZN3sce2Np9CppWebApi6Common10InitParamsC2Ev +_ZN3sce2Np9CppWebApi6Common10InitParamsD1Ev +_ZN3sce2Np9CppWebApi6Common10InitParamsD2Ev +_ZN3sce2Np9CppWebApi6Common10LibContext14getMemoryStatsERNS3_11MemoryStatsE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS5_INS7_9RecordApi26RecordScoreResponseHeadersEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS5_INS7_9RecordApi26RecordScoreResponseHeadersEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_19UpStreamTransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS5_INS7_9RecordApi30RecordLargeDataResponseHeadersEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS5_INS7_9RecordApi30RecordLargeDataResponseHeadersEEEEEiRNS2_19UpStreamTransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEEiRNS2_21DownStreamTransactionIT_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS5_INS7_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS5_INS7_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS5_INS7_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS5_INS7_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS5_INS7_7DataApi25UploadDataResponseHeadersEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS5_INS7_7DataApi25UploadDataResponseHeadersEEEEEiRNS2_19UpStreamTransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEEiRNS2_21DownStreamTransactionIT_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS2_6BinaryEEENS5_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS2_6BinaryEEENS5_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS2_6VectorINS5_INS1_13InGameCatalog2V59ContainerEEEEEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS2_6VectorINS5_INS1_13InGameCatalog2V59ContainerEEEEEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS2_6VectorINS5_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS5_INS8_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS2_6VectorINS5_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS5_INS8_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS2_6VectorINS5_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS5_INS8_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS2_6VectorINS5_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS5_INS8_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEEiRNS2_15TransactionBaseIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS5_INS7_9RecordApi26RecordScoreResponseHeadersEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_19UpStreamTransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS5_INS7_9RecordApi30RecordLargeDataResponseHeadersEEEEEiRNS2_19UpStreamTransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEEiRNS2_21DownStreamTransactionIT_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS5_INS7_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS5_INS7_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS5_INS7_7DataApi25UploadDataResponseHeadersEEEEEiRNS2_19UpStreamTransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEEiRNS2_21DownStreamTransactionIT_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS2_6VectorINS5_INS1_13InGameCatalog2V59ContainerEEEEEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS2_6VectorINS5_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS5_INS8_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS2_6VectorINS5_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS5_INS8_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEEEiRNS2_11TransactionIT_T0_EE +_ZN3sce2Np9CppWebApi6Common10LibContextC1Ev +_ZN3sce2Np9CppWebApi6Common10initializeERKNS2_10InitParamsERNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS9_PvEPFvliSD_ESD_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSD_ESD_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEEC1ERKSC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEEC2ERKSC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSD_ESD_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEEC1ERKSC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEEC2ERKSC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSD_ESD_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEEC1ERKSC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEEC2ERKSC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSD_ESD_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEEC1ERKSC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEEC2ERKSC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSD_ESD_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEEC1ERKSC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEEC2ERKSC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE21setOnFinishedCallbackEPFvliS6_PvEPFvliSD_ESD_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC1ERKSC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC2ERKSC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE21setOnFinishedCallbackEPFvliS6_PvEPFvliSD_ESD_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC1ERKSC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC2ERKSC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliSB_PvEPFvliSF_ESF_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSE_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSE_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE21setOnFinishedCallbackEPFvliSB_PvEPFvliSG_ESG_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEEC1ERKSF_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEEC2ERKSF_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE21setOnFinishedCallbackEPFvliSB_PvEPFvliSG_ESG_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEEC1ERKSF_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEEC2ERKSF_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE21setOnFinishedCallbackEPFvliS4_PvEPFvliSC_ESC_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEED2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS4_PvEPFvliS9_ES9_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC1ERKS8_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC2ERKS8_ +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEEiRNS2_10LibContextEPT_m +_ZN3sce2Np9CppWebApi6Common12FutureResultIiE3getEPNS2_10ThreadPoolE +_ZN3sce2Np9CppWebApi6Common12FutureResultIiE4termERKiPNS2_10ThreadPoolE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEE5resetEPS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEE6assignEPS7_PFvS9_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEC1EPS7_PFvS9_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEC1EPS7_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEC1ERKS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEC1ERS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEC2EPS7_PFvS9_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEC2EPS7_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEC2ERKS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEC2ERS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEaSERKS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEaSERS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEE5resetEPS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEE6assignEPS7_PFvS9_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEC1EPS7_PFvS9_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEC1EPS7_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEC1ERKS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEC1ERS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEC2EPS7_PFvS9_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEC2EPS7_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEC2ERKS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEC2ERS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEaSERKS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEaSERS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEE5resetEPS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEE6assignEPS7_PFvS9_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEC1EPS7_PFvS9_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEC1EPS7_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEC1ERKS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEC1ERS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEC2EPS7_PFvS9_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEC2EPS7_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEC2ERKS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEC2ERS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEaSERKS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEaSERS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEE5resetEPS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEE6assignEPS7_PFvS9_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEC1EPS7_PFvS9_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEC1EPS7_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEC1ERKS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEC1ERS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEC2EPS7_PFvS9_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEC2EPS7_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEC2ERKS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEC2ERS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEaSERKS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEaSERS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEE5resetEPS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEE6assignEPS7_PFvS9_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEC1EPS7_PFvS9_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEC1EPS7_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEC1ERKS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEC1ERS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEC2EPS7_PFvS9_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEC2EPS7_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEC2ERKS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEC2ERS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEaSERKS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEaSERS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEE5resetEPS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEE6assignEPS7_PFvS9_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEC1EPS7_PFvS9_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEC1EPS7_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEC1ERKS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEC1ERS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEC2EPS7_PFvS9_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEC2EPS7_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEC2ERKS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEC2ERS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEaSERKS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEaSERS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEE5resetEPS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEE6assignEPS7_PFvS9_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEEC1EPS7_PFvS9_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEEC1EPS7_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEEC1ERKS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEEC1ERS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEEC2EPS7_PFvS9_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEEC2EPS7_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEEC2ERKS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEEC2ERS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEEaSERKS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEEaSERS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEE5resetEPS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEE6assignEPS7_PFvS9_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEEC1EPS7_PFvS9_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEEC1EPS7_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEEC1ERKS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEEC1ERS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEEC2EPS7_PFvS9_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEEC2EPS7_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEEC2ERKS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEEC2ERS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEEaSERKS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEEaSERS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEE5resetEPS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEE6assignEPS7_PFvS9_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEC1EPS7_PFvS9_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEC1EPS7_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEC1ERKS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEC1ERS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEC2EPS7_PFvS9_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEC2EPS7_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEC2ERKS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEC2ERS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEaSERKS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEaSERS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEE5resetEPS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEE6assignEPS7_PFvS9_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEC1EPS7_PFvS9_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEC1EPS7_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEC1ERKS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEC1ERS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEC2EPS7_PFvS9_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEC2EPS7_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEC2ERKS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEC2ERS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEaSERKS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEaSERS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEE5resetEPS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEE6assignEPS7_PFvS9_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEC1EPS7_PFvS9_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEC1EPS7_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEC1ERKS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEC1ERS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEC2EPS7_PFvS9_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEC2EPS7_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEC2ERKS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEC2ERS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEaSERKS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEaSERS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEE5resetEPS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEE6assignEPS7_PFvS9_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEC1EPS7_PFvS9_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEC1EPS7_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEC1ERKS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEC1ERS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEC2EPS7_PFvS9_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEC2EPS7_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEC2ERKS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEC2ERS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEaSERKS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEaSERS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEE5resetEPS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEE6assignEPS7_PFvS9_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEEC1EPS7_PFvS9_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEEC1EPS7_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEEC1ERKS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEEC1ERS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEEC2EPS7_PFvS9_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEEC2EPS7_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEEC2ERKS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEEC2ERS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEEaSERKS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEEaSERS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEE5resetEPS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEE6assignEPS7_PFvS9_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEC1EPS7_PFvS9_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEC1EPS7_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEC1ERKS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEC1ERS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEC2EPS7_PFvS9_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEC2EPS7_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEC2ERKS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEC2ERS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEaSERKS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEaSERS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEE5resetEPS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEE6assignEPS7_PFvS9_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEC1EPS7_PFvS9_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEC1EPS7_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEC1ERKS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEC1ERS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEC2EPS7_PFvS9_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEC2EPS7_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEC2ERKS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEC2ERS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEaSERKS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEaSERS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_12FutureResultIiEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_12FutureResultIiEEEaSERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEE5resetEPS5_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEE6assignEPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEEC1EPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEEC1EPS5_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEEC1ERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEEC1ERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEEC2EPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEEC2EPS5_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEEC2ERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEEC2ERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEEaSERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEEaSERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEE5resetEPS5_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEE6assignEPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEEC1EPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEEC1EPS5_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEEC1ERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEEC1ERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEEC2EPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEEC2EPS5_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEEC2ERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEEC2ERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEEaSERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEEaSERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEE5resetEPS5_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEE6assignEPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEEC1EPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEEC1EPS5_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEEC1ERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEEC1ERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEEC2EPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEEC2EPS5_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEEC2ERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEEC2ERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEEaSERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEEaSERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEE5resetEPS5_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEE6assignEPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEEC1EPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEEC1EPS5_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEEC1ERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEEC1ERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEEC2EPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEEC2EPS5_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEEC2ERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEEC2ERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEEaSERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEEaSERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEE5resetEPS5_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEE6assignEPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEEC1EPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEEC1EPS5_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEEC1ERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEEC1ERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEEC2EPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEEC2EPS5_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEEC2ERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEEC2ERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEEaSERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEEaSERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEE5resetEPS5_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEE6assignEPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEEC1EPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEEC1EPS5_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEEC1ERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEEC1ERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEEC2EPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEEC2EPS5_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEEC2ERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEEC2ERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEEaSERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEEaSERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEE5resetEPS4_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEE6assignEPS4_PFvS6_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEEC1EPS4_PFvS6_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEEC1EPS4_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEEC1ERKS5_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEEC1ERS5_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEEC2EPS4_PFvS6_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEEC2EPS4_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEEC2ERKS5_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEEC2ERS5_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEEaSERKS5_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEEaSERS5_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEE5resetEPS4_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEE6assignEPS4_PFvS6_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEEC1EPS4_PFvS6_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEEC1EPS4_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEEC1ERKS5_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEEC1ERS5_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEEC2EPS4_PFvS6_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEEC2EPS4_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEEC2ERKS5_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEEC2ERS5_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEEaSERKS5_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEEaSERS5_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEE5resetEPS4_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEE6assignEPS4_PFvS6_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEEC1EPS4_PFvS6_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEEC1EPS4_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEEC1ERKS5_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEEC1ERS5_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEEC2EPS4_PFvS6_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEEC2EPS4_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEEC2ERKS5_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEEC2ERS5_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEEaSERKS5_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEEaSERS5_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEE5resetEPS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEEC1EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEEC1EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEEC1ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEEC1ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEEC2EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEEC2EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEEC2ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEEC2ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEEaSERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEE5resetEPS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEEC1EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEEC1EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEEC1ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEEC1ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEEC2EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEEC2EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEEC2ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEEC2ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEEaSERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEE5resetEPS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEEC1EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEEC1EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEEC1ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEEC1ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEEC2EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEEC2EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEEC2ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEEC2ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEEaSERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEE5resetEPS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEEC1EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEEC1EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEEC1ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEEC1ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEEC2EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEEC2EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEEC2ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEEC2ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEEaSERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEE5resetEPS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEEC1EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEEC1EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEEC1ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEEC1ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEEC2EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEEC2EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEEC2ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEEC2ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEEaSERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEE5resetEPS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEEC1EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEEC1EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEEC1ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEEC1ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEEC2EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEEC2EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEEC2ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEEC2ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEEaSERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEE5resetEPS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEEC1EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEEC1EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEEC1ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEEC1ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEEC2EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEEC2EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEEC2ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEEC2ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEEaSERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEE5resetEPS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEEC1EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEEC1EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEEC1ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEEC1ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEEC2EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEEC2EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEEC2ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEEC2ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEEaSERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEE5resetEPS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEEC1EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEEC1EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEEC1ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEEC1ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEEC2EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEEC2EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEEC2ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEEC2ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEEaSERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEE5resetEPS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEEC1EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEEC1EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEEC1ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEEC1ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEEC2EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEEC2EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEEC2ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEEC2ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEEaSERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEE5resetEPS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEEC1EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEEC1EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEEC1ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEEC1ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEEC2EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEEC2EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEEC2ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEEC2ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEEaSERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEE5resetEPS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEEC1EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEEC1EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEEC1ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEEC1ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEEC2EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEEC2EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEEC2ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEEC2ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEEaSERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEE5resetEPS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEEC1EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEEC1EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEEC1ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEEC1ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEEC2EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEEC2EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEEC2ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEEC2ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEEaSERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEE5resetEPS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEEC1EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEEC1EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEEC1ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEEC1ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEEC2EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEEC2EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEEC2ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEEC2ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEEaSERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEE5resetEPS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEEC1EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEEC1EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEEC1ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEEC1ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEEC2EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEEC2EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEEC2ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEEC2ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEEaSERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEE5resetEPS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEEC1EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEEC1EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEEC1ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEEC1ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEEC2EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEEC2EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEEC2ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEEC2ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEEaSERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEE5resetEPS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEEC1EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEEC1EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEEC1ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEEC1ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEEC2EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEEC2EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEEC2ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEEC2ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEEaSERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEE5resetEPS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEEC1EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEEC1EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEEC1ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEEC1ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEEC2EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEEC2EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEEC2ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEEC2ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEEaSERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEE5resetEPS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEEC1EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEEC1EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEEC1ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEEC1ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEEC2EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEEC2EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEEC2ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEEC2ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEEaSERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEE5resetEPS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEEC1EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEEC1EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEEC1ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEEC1ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEEC2EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEEC2EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEEC2ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEEC2ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEEaSERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEE5resetEPS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEEC1EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEEC1EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEEC1ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEEC1ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEEC2EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEEC2EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEEC2ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEEC2ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEEaSERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEE5resetEPS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEEC1EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEEC1EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEEC1ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEEC1ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEEC2EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEEC2EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEEC2ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEEC2ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEEaSERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEE5resetEPS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEEC1EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEEC1EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEEC1ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEEC1ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEEC2EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEEC2EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEEC2ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEEC2ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEEaSERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEE5resetEPS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEEC1EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEEC1EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEEC1ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEEC1ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEEC2EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEEC2EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEEC2ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEEC2ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEEaSERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEE5resetEPS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEEC1EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEEC1EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEEC1ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEEC1ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEEC2EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEEC2EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEEC2ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEEC2ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEEaSERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEE5resetEPS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEEC1EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEEC1EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEEC1ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEEC1ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEEC2EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEEC2EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEEC2ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEEC2ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEEaSERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEE5resetEPS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEEC1EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEEC1EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEEC1ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEEC1ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEEC2EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEEC2EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEEC2ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEEC2ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEEaSERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEE5resetEPS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEEC1EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEEC1EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEEC1ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEEC1ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEEC2EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEEC2EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEEC2ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEEC2ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEEaSERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEE5resetEPS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEEC1EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEEC1EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEEC1ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEEC1ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEEC2EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEEC2EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEEC2ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEEC2ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEEaSERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEE5resetEPS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEEC1EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEEC1EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEEC1ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEEC1ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEEC2EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEEC2EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEEC2ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEEC2ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEEaSERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEE5resetEPS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEEC1EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEEC1EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEEC1ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEEC1ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEEC2EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEEC2EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEEC2ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEEC2ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEEaSERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEE5resetEPS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEEC1EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEEC1EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEEC1ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEEC1ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEEC2EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEEC2EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEEC2ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEEC2ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEEaSERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEE5resetEPS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEEC1EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEEC1EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEEC1ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEEC1ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEEC2EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEEC2EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEEC2ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEEC2ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEEaSERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEE5resetEPS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEEC1EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEEC1EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEEC1ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEEC1ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEEC2EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEEC2EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEEC2ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEEC2ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEEaSERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEE5resetEPS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEEC1EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEEC1EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEEC1ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEEC1ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEEC2EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEEC2EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEEC2ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEEC2ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEEaSERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEE5resetEPS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEEC1EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEEC1EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEEC1ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEEC1ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEEC2EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEEC2EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEEC2ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEEC2ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEEaSERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEE5resetEPS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEEC1EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEEC1EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEEC1ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEEC1ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEEC2EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEEC2EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEEC2ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEEC2ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEEaSERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEE5resetEPS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEEC1EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEEC1EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEEC1ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEEC1ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEEC2EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEEC2EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEEC2ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEEC2ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEEaSERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEE5resetEPS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEEC1EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEEC1EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEEC1ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEEC1ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEEC2EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEEC2EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEEC2ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEEC2ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEEaSERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEE5resetEPS8_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEEC1EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEEC1EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEEC1ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEEC1ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEEC2EPS8_PFvSA_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEEC2EPS8_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEEC2ERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEEC2ERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEEaSERS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEE5resetEPSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEE6assignEPSA_PFvSC_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEEC1EPSA_PFvSC_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEEC1EPSA_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEEC1ERSB_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEEC2EPSA_PFvSC_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEEC2EPSA_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEEC2ERSB_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEEaSERSB_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEE5resetEPSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEE6assignEPSA_PFvSC_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEEC1EPSA_PFvSC_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEEC1EPSA_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEEC1ERSB_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEEC2EPSA_PFvSC_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEEC2EPSA_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEEC2ERSB_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEEaSERSB_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEE5resetEPSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEE6assignEPSA_PFvSC_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEEC1EPSA_PFvSC_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEEC1EPSA_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEEC1ERSB_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEEC2EPSA_PFvSC_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEEC2EPSA_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEEC2ERSB_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEEaSERSB_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEE5resetEPSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEE6assignEPSA_PFvSC_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEEC1EPSA_PFvSC_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEEC1EPSA_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEEC1ERSB_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEEC2EPSA_PFvSC_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEEC2EPSA_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEEC2ERSB_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEEaSERSB_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEE5resetEPSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEE6assignEPSA_PFvSC_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEEC1EPSA_PFvSC_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEEC1EPSA_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEEC1ERSB_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEEC2EPSA_PFvSC_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEEC2EPSA_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEEC2ERSB_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEEaSERSB_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEE5resetEPS9_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEEC1EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEEC1ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEEC2EPS9_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEEC2ERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEEaSERSA_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEE5resetEPS5_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEE6assignEPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEEC1EPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEEC1EPS5_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEEC1ERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEEC1ERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEEC2EPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEEC2EPS5_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEEC2ERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEEC2ERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEEaSERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEEaSERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEE5resetEPS5_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEE6assignEPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEEC1EPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEEC1EPS5_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEEC1ERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEEC1ERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEEC2EPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEEC2EPS5_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEEC2ERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEEC2ERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEEaSERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEEaSERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEE5resetEPS5_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEE6assignEPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEEC1EPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEEC1EPS5_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEEC1ERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEEC1ERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEEC2EPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEEC2EPS5_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEEC2ERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEEC2ERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEEaSERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEEaSERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEE5resetEPS5_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEE6assignEPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEEC1EPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEEC1EPS5_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEEC1ERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEEC1ERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEEC2EPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEEC2EPS5_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEEC2ERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEEC2ERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEEaSERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEEaSERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEE5resetEPS5_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEE6assignEPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEEC1EPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEEC1EPS5_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEEC1ERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEEC1ERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEEC2EPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEEC2EPS5_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEEC2ERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEEC2ERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEEaSERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEEaSERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEE5resetEPS5_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEE6assignEPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEEC1EPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEEC1EPS5_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEEC1ERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEEC1ERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEEC2EPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEEC2EPS5_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEEC2ERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEEC2ERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEEaSERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEEaSERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEE5resetEPS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEE6assignEPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEEC1EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEEC1EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEEC1ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEEC2EPS6_PFvS8_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEEC2EPS6_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEEC2ERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEEaSERS7_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEE5resetEPS5_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEE6assignEPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEEC1EPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEEC1EPS5_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEEC1ERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEEC1ERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEEC2EPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEEC2EPS5_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEEC2ERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEEC2ERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEEaSERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEEaSERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEE5resetEPS5_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEE6assignEPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEEC1EPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEEC1EPS5_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEEC1ERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEEC1ERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEEC2EPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEEC2EPS5_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEEC2ERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEEC2ERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEEaSERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEEaSERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEE5resetEPS5_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEE6assignEPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEEC1EPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEEC1EPS5_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEEC1ERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEEC1ERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEEC2EPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEEC2EPS5_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEEC2ERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEEC2ERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEEaSERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEEaSERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEE5resetEPS5_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEE6assignEPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEEC1EPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEEC1EPS5_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEEC1ERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEEC1ERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEEC2EPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEEC2EPS5_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEEC2ERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEEC2ERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEEaSERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEEaSERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEE5resetEPS5_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEE6assignEPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEEC1EPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEEC1EPS5_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEEC1ERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEEC1ERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEEC2EPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEEC2EPS5_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEEC2ERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEEC2ERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEEaSERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEEaSERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEE11get_deleterEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEE11release_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEE5resetEPS5_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEE6assignEPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEE7add_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEE7get_refEv +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEEC1EPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEEC1EPS5_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEEC1ERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEEC1ERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEEC1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEEC2EPS5_PFvS7_EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEEC2EPS5_PNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEEC2ERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEEC2ERS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEEC2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEED1Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEED2Ev +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEEaSERKS6_ +_ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEEaSERS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEEC1EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEEC2EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEEC1EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEEC2EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEEC1EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEEC2EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEEC1EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEEC2EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEEC1EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEEC2EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEEC1EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEEC2EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEEC1EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEEC2EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEEC1EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEEC2EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEEC1EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEEC2EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEEC1EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEEC2EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEEC1EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEEC2EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEEC1EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEEC2EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEEC1EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEEC2EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEEC1EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEEC2EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEEC1EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEEC2EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEEC1EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEEC2EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEEC1EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEEC2EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEEC1EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEEC2EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEC1EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEC2EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEC1EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEC2EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEC1EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEC2EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEEC1EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEEC2EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEEC1EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEEC2EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEEC1EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEEC2EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEEC1EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEEC2EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEEC1EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEEC2EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEEC1EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEEC2EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEEC1EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEEC2EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEEC1EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEEC2EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEEC1EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEEC2EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEEC1EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEEC2EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEEC1EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEEC2EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEEC1EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEEC2EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEEC1EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEEC2EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEEC1EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEEC2EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEEC1EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEEC2EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEEC1EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEEC2EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEEC1EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEEC2EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEEC1EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEEC2EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEEC1EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEEC2EPKS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE21intrusive_ptr_add_refEPSA_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE21intrusive_ptr_sub_refEPSA_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEC1EPKS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEC1EPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEC2EPKS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEC2EPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE21intrusive_ptr_add_refEPSA_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE21intrusive_ptr_sub_refEPSA_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEC1EPKS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEC1EPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEC2EPKS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEC2EPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE21intrusive_ptr_add_refEPSA_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE21intrusive_ptr_sub_refEPSA_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEC1EPKS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEC1EPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEC2EPKS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEC2EPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE21intrusive_ptr_add_refEPSA_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE21intrusive_ptr_sub_refEPSA_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEC1EPKS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEC1EPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEC2EPKS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEC2EPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE21intrusive_ptr_add_refEPSA_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE21intrusive_ptr_sub_refEPSA_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEC1EPKS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEC1EPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEC2EPKS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEC2EPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEC1EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEC2EPKS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEE21intrusive_ptr_add_refEPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEE21intrusive_ptr_sub_refEPS6_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEEC1EPKS5_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEEC1EPS5_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEEC2EPKS5_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEEC2EPS5_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEE21intrusive_ptr_add_refEPS5_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEE21intrusive_ptr_sub_refEPS5_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEEC1EPKS4_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEEC1EPS4_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEEC2EPKS4_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEEC2EPS4_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIdE21intrusive_ptr_add_refEPS4_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIdE21intrusive_ptr_sub_refEPS4_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIdEC1EPKd +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIdEC1EPd +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIdEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIdEC2EPKd +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIdEC2EPd +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIdEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIdED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIdED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIdEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIdEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIdEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIdEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIfE21intrusive_ptr_add_refEPS4_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIfE21intrusive_ptr_sub_refEPS4_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIfEC1EPKf +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIfEC1EPf +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIfEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIfEC2EPKf +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIfEC2EPf +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIfEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIfED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIfED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIfEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIfEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIfEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIfEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIiE21intrusive_ptr_add_refEPS4_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIiE21intrusive_ptr_sub_refEPS4_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIiEC1EPKi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIiEC1EPi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIiEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIiEC2EPKi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIiEC2EPi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIiEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIiED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIiED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIiEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIiEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIiEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIiEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIjE21intrusive_ptr_add_refEPS4_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIjE21intrusive_ptr_sub_refEPS4_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIjEC1EPKj +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIjEC1EPj +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIjEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIjEC2EPKj +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIjEC2EPj +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIjEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIjED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIjED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIjEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIjEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIjEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIjEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIlE21intrusive_ptr_add_refEPS4_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIlE21intrusive_ptr_sub_refEPS4_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIlEC1EPKl +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIlEC1EPl +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIlEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIlEC2EPKl +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIlEC2EPl +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIlEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIlED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIlED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIlEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIlEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIlEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorIlEppEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorImE21intrusive_ptr_add_refEPS4_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorImE21intrusive_ptr_sub_refEPS4_ +_ZN3sce2Np9CppWebApi6Common13ConstIteratorImEC1EPKm +_ZN3sce2Np9CppWebApi6Common13ConstIteratorImEC1EPm +_ZN3sce2Np9CppWebApi6Common13ConstIteratorImEC1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorImEC2EPKm +_ZN3sce2Np9CppWebApi6Common13ConstIteratorImEC2EPm +_ZN3sce2Np9CppWebApi6Common13ConstIteratorImEC2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorImED1Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorImED2Ev +_ZN3sce2Np9CppWebApi6Common13ConstIteratorImEmmEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorImEmmEv +_ZN3sce2Np9CppWebApi6Common13ConstIteratorImEppEi +_ZN3sce2Np9CppWebApi6Common13ConstIteratorImEppEv +_ZN3sce2Np9CppWebApi6Common13ParameterBase10initializeERNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common13ParameterBase16setRequestHeaderEPKcS5_ +_ZN3sce2Np9CppWebApi6Common13ParameterBase18unSetRequestHeaderEPKc +_ZN3sce2Np9CppWebApi6Common13ParameterBase20setWebtraceTagHeaderEPKc +_ZN3sce2Np9CppWebApi6Common13ParameterBase22unSetWebtraceTagHeaderEv +_ZN3sce2Np9CppWebApi6Common13ParameterBase9terminateEv +_ZN3sce2Np9CppWebApi6Common13ParameterBaseC1Ev +_ZN3sce2Np9CppWebApi6Common13ParameterBaseC2Ev +_ZN3sce2Np9CppWebApi6Common13ParameterBaseD1Ev +_ZN3sce2Np9CppWebApi6Common13ParameterBaseD2Ev +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISE_SF_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS5_INS7_9RecordApi26RecordScoreResponseHeadersEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISE_SF_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS5_INS7_9RecordApi30RecordLargeDataResponseHeadersEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISE_SF_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS5_INS7_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISE_SF_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS5_INS7_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISE_SF_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS5_INS7_7DataApi25UploadDataResponseHeadersEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISE_SF_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS5_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISE_SF_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS5_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISE_SF_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS2_6VectorINS5_INS1_13InGameCatalog2V59ContainerEEEEEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISG_SH_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS2_6VectorINS5_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS5_INS8_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISH_SI_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS2_6VectorINS5_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS5_INS8_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISH_SI_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE +_ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE +_ZN3sce2Np9CppWebApi6Common15DefaultResponseC1Ev +_ZN3sce2Np9CppWebApi6Common15DefaultResponseC2Ev +_ZN3sce2Np9CppWebApi6Common15DefaultResponseD1Ev +_ZN3sce2Np9CppWebApi6Common15DefaultResponseD2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSC_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSC_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSC_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEEC1ERKSC_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEEC2ERKSC_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEEaSERKSC_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEEC1ERKSC_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEEC2ERKSC_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEEaSERKSC_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEEC1ERKSC_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEEC2ERKSC_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEEaSERKSC_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEEC1ERKSC_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEEC2ERKSC_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEEaSERKSC_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEEC1ERKSC_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEEC2ERKSC_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEEaSERKSC_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC1ERKSC_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC2ERKSC_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEaSERKSC_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC1ERKSC_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC2ERKSC_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEaSERKSC_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSE_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSE_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSE_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEEC1ERKSF_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEEC2ERKSF_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEEaSERKSF_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEEC1ERKSF_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEEC2ERKSF_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEEaSERKSF_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEaSERKSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE13getLibContextEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC1ERKS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC2ERKS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEaSERKS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS9_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE11getResponseERS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE17getResponseHeaderERSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13goToProcessedEi +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE15receiveResponseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21receiveResponseHeaderEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE8sendDataEPKvm +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE11getResponseERS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE13goToProcessedEi +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE15receiveResponseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE17getResponseHeaderERSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE21receiveResponseHeaderEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE8sendDataEPKvm +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE11getResponseERS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE17getResponseHeaderERSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE11getResponseERS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE17getResponseHeaderERSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE11getResponseERS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE13goToProcessedEi +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE15receiveResponseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE17getResponseHeaderERSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE21receiveResponseHeaderEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE8sendDataEPKvm +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE11getResponseERS6_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE17getResponseHeaderERSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE11getResponseERS6_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE17getResponseHeaderERSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSD_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE11getResponseERSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE17getResponseHeaderERSE_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE11getResponseERSB_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE17getResponseHeaderERSE_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE13goToProcessedEi +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE17getResponseHeaderERSA_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE8readDataEPcm +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE11getResponseERS4_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE17getResponseHeaderERSA_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEED2Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE13goToProcessedEi +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE17getNpWebApi2ReqIdEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE17getResponseHeaderERSA_ +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE17setNpWebApi2ReqIdEl +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE23clearOnFinishedCallbackEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE32removeTaskFuncFromNextThreadPoolEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE4initEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE4termEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE5abortEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE6isBusyEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE7releaseEv +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE8readDataEPcm +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEED0Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEED1Ev +_ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEED2Ev +_ZN3sce2Np9CppWebApi6Common17ParameterBaseImpl16setRequestHeaderEPKcS5_ +_ZN3sce2Np9CppWebApi6Common17ParameterBaseImpl18unSetRequestHeaderEPKc +_ZN3sce2Np9CppWebApi6Common17ParameterBaseImplC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common17ParameterBaseImplC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common17ParameterBaseImplD1Ev +_ZN3sce2Np9CppWebApi6Common17ParameterBaseImplD2Ev +_ZN3sce2Np9CppWebApi6Common18ResponseHeaderBase14getHeaderValueEPKcRNS2_12IntrusivePtrINS2_6StringEEE +_ZN3sce2Np9CppWebApi6Common18ResponseHeaderBase5parseEPNS2_10LibContextElPNS2_12IntrusivePtrIS3_EE +_ZN3sce2Np9CppWebApi6Common18ResponseHeaderBase6createEPNS2_10LibContextERNS2_12IntrusivePtrIS3_EEl +_ZN3sce2Np9CppWebApi6Common18ResponseHeaderBase7destroyEPS3_ +_ZN3sce2Np9CppWebApi6Common18ResponseHeaderBaseC1Ev +_ZN3sce2Np9CppWebApi6Common18ResponseHeaderBaseC2Ev +_ZN3sce2Np9CppWebApi6Common18ResponseHeaderBaseD1Ev +_ZN3sce2Np9CppWebApi6Common18ResponseHeaderBaseD2Ev +_ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextEm +_ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE8sendDataEPKvm +_ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_ +_ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_ +_ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE5startEPNS2_10LibContextEm +_ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE8sendDataEPKvm +_ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEEC1ERKSC_ +_ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEEC2ERKSC_ +_ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEED1Ev +_ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEED2Ev +_ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE5startEPNS2_10LibContextEm +_ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE8sendDataEPKvm +_ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEEC1ERKSC_ +_ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEEC2ERKSC_ +_ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEED1Ev +_ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEED2Ev +_ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextEm +_ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE8sendDataEPKvm +_ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC1ERKS8_ +_ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC2ERKS8_ +_ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE8readDataEPcm +_ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEED1Ev +_ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEED2Ev +_ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE5startEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE8readDataEPcm +_ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC1ERKSA_ +_ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC2ERKSA_ +_ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEED1Ev +_ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEED2Ev +_ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE6finishEv +_ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE8readDataEPcm +_ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC1ERKS7_ +_ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC2ERKS7_ +_ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common23UpDownStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextEm +_ZN3sce2Np9CppWebApi6Common23UpDownStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE8readDataEPcm +_ZN3sce2Np9CppWebApi6Common23UpDownStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE8sendDataEPKvm +_ZN3sce2Np9CppWebApi6Common23UpDownStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC1ERKS8_ +_ZN3sce2Np9CppWebApi6Common23UpDownStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common23UpDownStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC2ERKS8_ +_ZN3sce2Np9CppWebApi6Common23UpDownStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common23UpDownStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common23UpDownStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6Binary12appendBinaryEPKvm +_ZN3sce2Np9CppWebApi6Common6Binary21intrusive_ptr_add_refEPS3_ +_ZN3sce2Np9CppWebApi6Common6Binary21intrusive_ptr_sub_refEPS3_ +_ZN3sce2Np9CppWebApi6Common6Binary5clearEv +_ZN3sce2Np9CppWebApi6Common6Binary9setBinaryEPKvm +_ZN3sce2Np9CppWebApi6Common6BinaryC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6BinaryC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6BinaryD1Ev +_ZN3sce2Np9CppWebApi6Common6BinaryD2Ev +_ZN3sce2Np9CppWebApi6Common6String10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6String21intrusive_ptr_add_refEPS3_ +_ZN3sce2Np9CppWebApi6Common6String21intrusive_ptr_sub_refEPS3_ +_ZN3sce2Np9CppWebApi6Common6String4nposE +_ZN3sce2Np9CppWebApi6Common6String5clearEv +_ZN3sce2Np9CppWebApi6Common6String6appendEPKc +_ZN3sce2Np9CppWebApi6Common6String6appendERKS3_ +_ZN3sce2Np9CppWebApi6Common6String7replaceEmmRS3_ +_ZN3sce2Np9CppWebApi6Common6String8copyFromEPKc +_ZN3sce2Np9CppWebApi6Common6String8copyFromERKS3_ +_ZN3sce2Np9CppWebApi6Common6StringC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6StringC1Ev +_ZN3sce2Np9CppWebApi6Common6StringC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6StringC2Ev +_ZN3sce2Np9CppWebApi6Common6StringD1Ev +_ZN3sce2Np9CppWebApi6Common6StringD2Ev +_ZN3sce2Np9CppWebApi6Common6StringeqEPKc +_ZN3sce2Np9CppWebApi6Common6StringeqERKS3_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE5eraseENS2_13ConstIteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE5eraseENS2_8IteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE6insertENS2_8IteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE8copyFromERKS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE8pushBackERKS6_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE5eraseENS2_13ConstIteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE5eraseENS2_8IteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE6insertENS2_8IteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE8copyFromERKS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE8pushBackERKS6_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE5eraseENS2_13ConstIteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE5eraseENS2_8IteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE6insertENS2_8IteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE8copyFromERKS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE8pushBackERKS6_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE5eraseENS2_13ConstIteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE5eraseENS2_8IteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE6insertENS2_8IteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE8copyFromERKS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE8pushBackERKS6_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE5eraseENS2_13ConstIteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE5eraseENS2_8IteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE6insertENS2_8IteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE8copyFromERKS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE8pushBackERKS6_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE5eraseENS2_13ConstIteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE5eraseENS2_8IteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE6insertENS2_8IteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE8copyFromERKS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE8pushBackERKS6_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE5eraseENS2_13ConstIteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE5eraseENS2_8IteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE6insertENS2_8IteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE8copyFromERKS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE8pushBackERKS6_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE5eraseENS2_13ConstIteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE5eraseENS2_8IteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE6insertENS2_8IteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE8copyFromERKS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE8pushBackERKS6_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE5eraseENS2_13ConstIteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE5eraseENS2_8IteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE6insertENS2_8IteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE8copyFromERKS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE8pushBackERKS6_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE5eraseENS2_13ConstIteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE5eraseENS2_8IteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE6insertENS2_8IteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE8copyFromERKS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE8pushBackERKS6_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE5eraseENS2_13ConstIteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE5eraseENS2_8IteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE6insertENS2_8IteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE8copyFromERKS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE8pushBackERKS6_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE5eraseENS2_13ConstIteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE5eraseENS2_8IteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE6insertENS2_8IteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE8copyFromERKS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE8pushBackERKS6_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE5eraseENS2_13ConstIteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE5eraseENS2_8IteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE6insertENS2_8IteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE8copyFromERKS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE8pushBackERKS6_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE5eraseENS2_13ConstIteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE5eraseENS2_8IteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE6insertENS2_8IteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE8copyFromERKS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE8pushBackERKS6_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE5eraseENS2_13ConstIteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE5eraseENS2_8IteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE6insertENS2_8IteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE8copyFromERKS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE8pushBackERKS6_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE5eraseENS2_13ConstIteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE5eraseENS2_8IteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE6insertENS2_8IteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE8copyFromERKS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE8pushBackERKS6_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE5eraseENS2_13ConstIteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE5eraseENS2_8IteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE6insertENS2_8IteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE8copyFromERKS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE8pushBackERKS6_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE5eraseENS2_13ConstIteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE5eraseENS2_8IteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE6insertENS2_8IteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE8copyFromERKS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE8pushBackERKS6_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE5eraseENS2_13ConstIteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE5eraseENS2_8IteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE6insertENS2_8IteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE8copyFromERKS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE8pushBackERKS6_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE5eraseENS2_13ConstIteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE5eraseENS2_8IteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE6insertENS2_8IteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE8copyFromERKS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE8pushBackERKS6_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE5eraseENS2_13ConstIteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE5eraseENS2_8IteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE6insertENS2_8IteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE8copyFromERKS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE8pushBackERKS6_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE5eraseENS2_13ConstIteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE5eraseENS2_8IteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE6insertENS2_8IteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE8copyFromERKS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE8pushBackERKS6_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE5eraseENS2_13ConstIteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE5eraseENS2_8IteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE6insertENS2_8IteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE8copyFromERKS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE8pushBackERKS6_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE5eraseENS2_13ConstIteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE5eraseENS2_8IteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE6insertENS2_8IteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE8copyFromERKS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE8pushBackERKS6_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE5eraseENS2_13ConstIteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE5eraseENS2_8IteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE6insertENS2_8IteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE8copyFromERKS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE8pushBackERKS6_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE5eraseENS2_13ConstIteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE5eraseENS2_8IteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE6insertENS2_8IteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE8copyFromERKS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE8pushBackERKS6_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE5eraseENS2_13ConstIteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE5eraseENS2_8IteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE6insertENS2_8IteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE8copyFromERKS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE8pushBackERKS6_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE5eraseENS2_13ConstIteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE5eraseENS2_8IteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE6insertENS2_8IteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE8copyFromERKS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE8pushBackERKS6_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE5eraseENS2_13ConstIteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE5eraseENS2_8IteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE6insertENS2_8IteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE8copyFromERKS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE8pushBackERKS6_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE5eraseENS2_13ConstIteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE5eraseENS2_8IteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE6insertENS2_8IteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE8copyFromERKS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE8pushBackERKS6_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE5eraseENS2_13ConstIteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE5eraseENS2_8IteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE6insertENS2_8IteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE8copyFromERKS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE8pushBackERKS6_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE5eraseENS2_13ConstIteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE5eraseENS2_8IteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE6insertENS2_8IteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE8copyFromERKS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE8pushBackERKS6_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE5eraseENS2_13ConstIteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE5eraseENS2_8IteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE6insertENS2_8IteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE8copyFromERKS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE8pushBackERKS6_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE5eraseENS2_13ConstIteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE5eraseENS2_8IteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE6insertENS2_8IteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE8copyFromERKS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE8pushBackERKS6_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE5eraseENS2_13ConstIteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE5eraseENS2_8IteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE6insertENS2_8IteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE8copyFromERKS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE8pushBackERKS6_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE5eraseENS2_13ConstIteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE5eraseENS2_8IteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE6insertENS2_8IteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE8copyFromERKS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE8pushBackERKS6_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE5eraseENS2_13ConstIteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE5eraseENS2_8IteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE6insertENS2_8IteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE8copyFromERKS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE8pushBackERKS6_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE5eraseENS2_13ConstIteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE5eraseENS2_8IteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE6insertENS2_8IteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE8copyFromERKS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE8pushBackERKS6_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE5eraseENS2_13ConstIteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE5eraseENS2_8IteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE6insertENS2_8IteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE8copyFromERKS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE8pushBackERKS6_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE21intrusive_ptr_add_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE21intrusive_ptr_sub_refEPS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE5eraseENS2_13ConstIteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE5eraseENS2_8IteratorIS6_EERS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE6insertENS2_8IteratorIS6_EERKS6_RS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE8copyFromERKS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE8pushBackERKS6_ +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE21intrusive_ptr_add_refEPSA_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE21intrusive_ptr_sub_refEPSA_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE5eraseENS2_13ConstIteratorIS9_EERSC_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE5eraseENS2_8IteratorIS9_EERSC_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE6insertENS2_13ConstIteratorIS9_EERKS9_RSC_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE6insertENS2_8IteratorIS9_EERKS9_RSC_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE8copyFromERKSA_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE8pushBackERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE21intrusive_ptr_add_refEPSA_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE21intrusive_ptr_sub_refEPSA_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE5eraseENS2_13ConstIteratorIS9_EERSC_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE5eraseENS2_8IteratorIS9_EERSC_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE6insertENS2_13ConstIteratorIS9_EERKS9_RSC_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE6insertENS2_8IteratorIS9_EERKS9_RSC_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE8copyFromERKSA_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE8pushBackERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE21intrusive_ptr_add_refEPSA_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE21intrusive_ptr_sub_refEPSA_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE5eraseENS2_13ConstIteratorIS9_EERSC_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE5eraseENS2_8IteratorIS9_EERSC_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE6insertENS2_13ConstIteratorIS9_EERKS9_RSC_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE6insertENS2_8IteratorIS9_EERKS9_RSC_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE8copyFromERKSA_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE8pushBackERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE21intrusive_ptr_add_refEPSA_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE21intrusive_ptr_sub_refEPSA_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE5eraseENS2_13ConstIteratorIS9_EERSC_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE5eraseENS2_8IteratorIS9_EERSC_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE6insertENS2_13ConstIteratorIS9_EERKS9_RSC_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE6insertENS2_8IteratorIS9_EERKS9_RSC_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE8copyFromERKSA_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE8pushBackERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE21intrusive_ptr_add_refEPSA_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE21intrusive_ptr_sub_refEPSA_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE5eraseENS2_13ConstIteratorIS9_EERSC_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE5eraseENS2_8IteratorIS9_EERSC_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE6insertENS2_13ConstIteratorIS9_EERKS9_RSC_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE6insertENS2_8IteratorIS9_EERKS9_RSC_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE8copyFromERKSA_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE8pushBackERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE21intrusive_ptr_add_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE21intrusive_ptr_sub_refEPS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE5eraseENS2_13ConstIteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE5eraseENS2_8IteratorIS8_EERSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE8copyFromERKS9_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE8pushBackERKS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE21intrusive_ptr_add_refEPS6_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE21intrusive_ptr_sub_refEPS6_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE5eraseENS2_13ConstIteratorIS5_EERS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE5eraseENS2_8IteratorIS5_EERS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE6insertENS2_13ConstIteratorIS5_EERKS5_RS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE6insertENS2_8IteratorIS5_EERKS5_RS8_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE8copyFromERKS6_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE8pushBackERKS5_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEE21intrusive_ptr_add_refEPS5_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEE21intrusive_ptr_sub_refEPS5_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEE5eraseENS2_13ConstIteratorIS4_EERS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEE5eraseENS2_8IteratorIS4_EERS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEE6insertENS2_13ConstIteratorIS4_EERKS4_RS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEE6insertENS2_8IteratorIS4_EERKS4_RS7_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEE8copyFromERKS5_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEE8pushBackERKS4_ +_ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEEixEm +_ZN3sce2Np9CppWebApi6Common6VectorIdE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorIdE21intrusive_ptr_add_refEPS4_ +_ZN3sce2Np9CppWebApi6Common6VectorIdE21intrusive_ptr_sub_refEPS4_ +_ZN3sce2Np9CppWebApi6Common6VectorIdE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorIdE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorIdE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorIdE5eraseENS2_13ConstIteratorIdEERS6_ +_ZN3sce2Np9CppWebApi6Common6VectorIdE5eraseENS2_8IteratorIdEERS6_ +_ZN3sce2Np9CppWebApi6Common6VectorIdE6insertENS2_13ConstIteratorIdEERKdRS6_ +_ZN3sce2Np9CppWebApi6Common6VectorIdE6insertENS2_8IteratorIdEERKdRS6_ +_ZN3sce2Np9CppWebApi6Common6VectorIdE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorIdE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorIdE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorIdE8copyFromERKS4_ +_ZN3sce2Np9CppWebApi6Common6VectorIdE8pushBackERKd +_ZN3sce2Np9CppWebApi6Common6VectorIdEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorIdEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorIdEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorIdEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorIdED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorIdED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorIdEixEm +_ZN3sce2Np9CppWebApi6Common6VectorIfE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorIfE21intrusive_ptr_add_refEPS4_ +_ZN3sce2Np9CppWebApi6Common6VectorIfE21intrusive_ptr_sub_refEPS4_ +_ZN3sce2Np9CppWebApi6Common6VectorIfE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorIfE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorIfE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorIfE5eraseENS2_13ConstIteratorIfEERS6_ +_ZN3sce2Np9CppWebApi6Common6VectorIfE5eraseENS2_8IteratorIfEERS6_ +_ZN3sce2Np9CppWebApi6Common6VectorIfE6insertENS2_13ConstIteratorIfEERKfRS6_ +_ZN3sce2Np9CppWebApi6Common6VectorIfE6insertENS2_8IteratorIfEERKfRS6_ +_ZN3sce2Np9CppWebApi6Common6VectorIfE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorIfE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorIfE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorIfE8copyFromERKS4_ +_ZN3sce2Np9CppWebApi6Common6VectorIfE8pushBackERKf +_ZN3sce2Np9CppWebApi6Common6VectorIfEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorIfEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorIfEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorIfEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorIfED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorIfED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorIfEixEm +_ZN3sce2Np9CppWebApi6Common6VectorIiE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorIiE21intrusive_ptr_add_refEPS4_ +_ZN3sce2Np9CppWebApi6Common6VectorIiE21intrusive_ptr_sub_refEPS4_ +_ZN3sce2Np9CppWebApi6Common6VectorIiE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorIiE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorIiE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorIiE5eraseENS2_13ConstIteratorIiEERS6_ +_ZN3sce2Np9CppWebApi6Common6VectorIiE5eraseENS2_8IteratorIiEERS6_ +_ZN3sce2Np9CppWebApi6Common6VectorIiE6insertENS2_13ConstIteratorIiEERKiRS6_ +_ZN3sce2Np9CppWebApi6Common6VectorIiE6insertENS2_8IteratorIiEERKiRS6_ +_ZN3sce2Np9CppWebApi6Common6VectorIiE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorIiE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorIiE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorIiE8copyFromERKS4_ +_ZN3sce2Np9CppWebApi6Common6VectorIiE8pushBackERKi +_ZN3sce2Np9CppWebApi6Common6VectorIiEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorIiEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorIiEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorIiEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorIiED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorIiED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorIiEixEm +_ZN3sce2Np9CppWebApi6Common6VectorIjE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorIjE21intrusive_ptr_add_refEPS4_ +_ZN3sce2Np9CppWebApi6Common6VectorIjE21intrusive_ptr_sub_refEPS4_ +_ZN3sce2Np9CppWebApi6Common6VectorIjE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorIjE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorIjE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorIjE5eraseENS2_13ConstIteratorIjEERS6_ +_ZN3sce2Np9CppWebApi6Common6VectorIjE5eraseENS2_8IteratorIjEERS6_ +_ZN3sce2Np9CppWebApi6Common6VectorIjE6insertENS2_13ConstIteratorIjEERKjRS6_ +_ZN3sce2Np9CppWebApi6Common6VectorIjE6insertENS2_8IteratorIjEERKjRS6_ +_ZN3sce2Np9CppWebApi6Common6VectorIjE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorIjE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorIjE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorIjE8copyFromERKS4_ +_ZN3sce2Np9CppWebApi6Common6VectorIjE8pushBackERKj +_ZN3sce2Np9CppWebApi6Common6VectorIjEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorIjEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorIjEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorIjEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorIjED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorIjED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorIjEixEm +_ZN3sce2Np9CppWebApi6Common6VectorIlE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorIlE21intrusive_ptr_add_refEPS4_ +_ZN3sce2Np9CppWebApi6Common6VectorIlE21intrusive_ptr_sub_refEPS4_ +_ZN3sce2Np9CppWebApi6Common6VectorIlE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorIlE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorIlE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorIlE5eraseENS2_13ConstIteratorIlEERS6_ +_ZN3sce2Np9CppWebApi6Common6VectorIlE5eraseENS2_8IteratorIlEERS6_ +_ZN3sce2Np9CppWebApi6Common6VectorIlE6insertENS2_13ConstIteratorIlEERKlRS6_ +_ZN3sce2Np9CppWebApi6Common6VectorIlE6insertENS2_8IteratorIlEERKlRS6_ +_ZN3sce2Np9CppWebApi6Common6VectorIlE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorIlE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorIlE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorIlE8copyFromERKS4_ +_ZN3sce2Np9CppWebApi6Common6VectorIlE8pushBackERKl +_ZN3sce2Np9CppWebApi6Common6VectorIlEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorIlEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorIlEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorIlEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorIlED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorIlED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorIlEixEm +_ZN3sce2Np9CppWebApi6Common6VectorImE10setContextEPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorImE21intrusive_ptr_add_refEPS4_ +_ZN3sce2Np9CppWebApi6Common6VectorImE21intrusive_ptr_sub_refEPS4_ +_ZN3sce2Np9CppWebApi6Common6VectorImE3endEv +_ZN3sce2Np9CppWebApi6Common6VectorImE5beginEv +_ZN3sce2Np9CppWebApi6Common6VectorImE5clearEv +_ZN3sce2Np9CppWebApi6Common6VectorImE5eraseENS2_13ConstIteratorImEERS6_ +_ZN3sce2Np9CppWebApi6Common6VectorImE5eraseENS2_8IteratorImEERS6_ +_ZN3sce2Np9CppWebApi6Common6VectorImE6insertENS2_13ConstIteratorImEERKmRS6_ +_ZN3sce2Np9CppWebApi6Common6VectorImE6insertENS2_8IteratorImEERKmRS6_ +_ZN3sce2Np9CppWebApi6Common6VectorImE6resizeEj +_ZN3sce2Np9CppWebApi6Common6VectorImE7popBackEv +_ZN3sce2Np9CppWebApi6Common6VectorImE7reserveEi +_ZN3sce2Np9CppWebApi6Common6VectorImE8copyFromERKS4_ +_ZN3sce2Np9CppWebApi6Common6VectorImE8pushBackERKm +_ZN3sce2Np9CppWebApi6Common6VectorImEC1EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorImEC1Ev +_ZN3sce2Np9CppWebApi6Common6VectorImEC2EPNS2_10LibContextE +_ZN3sce2Np9CppWebApi6Common6VectorImEC2Ev +_ZN3sce2Np9CppWebApi6Common6VectorImED1Ev +_ZN3sce2Np9CppWebApi6Common6VectorImED2Ev +_ZN3sce2Np9CppWebApi6Common6VectorImEixEm +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V111OfferStatusEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V111OfferStatusEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V111OfferStatusEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V111OfferStatusEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V111OfferStatusEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V111OfferStatusEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V111OfferStatusEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V111OfferStatusEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V111OfferStatusEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V112TicketStatusEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V112TicketStatusEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V112TicketStatusEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V112TicketStatusEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V112TicketStatusEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V112TicketStatusEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V112TicketStatusEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V112TicketStatusEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V112TicketStatusEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V113AttributeTypeEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V113AttributeTypeEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V113AttributeTypeEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V113AttributeTypeEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V113AttributeTypeEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V113AttributeTypeEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V113AttributeTypeEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V113AttributeTypeEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V113AttributeTypeEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V18PlatformEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V18PlatformEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V18PlatformEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V18PlatformEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V18PlatformEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V18PlatformEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V18PlatformEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V18PlatformEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V18PlatformEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V110AvatarSizeEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V110AvatarSizeEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V110AvatarSizeEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V110AvatarSizeEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V110AvatarSizeEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V110AvatarSizeEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V110AvatarSizeEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V110AvatarSizeEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V110AvatarSizeEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V112OnlineStatusEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V112OnlineStatusEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V112OnlineStatusEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V112OnlineStatusEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V112OnlineStatusEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V112OnlineStatusEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V112OnlineStatusEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V112OnlineStatusEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V112OnlineStatusEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V18RelationEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V18RelationEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V18RelationEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V18RelationEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V18RelationEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V18RelationEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V18RelationEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V18RelationEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V18RelationEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V110UpdateModeEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V110UpdateModeEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V110UpdateModeEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V110UpdateModeEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V110UpdateModeEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V110UpdateModeEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V110UpdateModeEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V110UpdateModeEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V110UpdateModeEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V15GroupEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V15GroupEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V15GroupEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V15GroupEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V15GroupEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V15GroupEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V15GroupEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V15GroupEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V15GroupEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V18SortModeEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V18SortModeEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V18SortModeEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V18SortModeEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V18SortModeEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V18SortModeEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V18SortModeEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V18SortModeEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V18SortModeEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V510AnnotationEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V510AnnotationEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V510AnnotationEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V510AnnotationEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V510AnnotationEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V510AnnotationEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V510AnnotationEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V510AnnotationEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V510AnnotationEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V511ContentTypeEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V511ContentTypeEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V511ContentTypeEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V511ContentTypeEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V511ContentTypeEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V511ContentTypeEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V511ContentTypeEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V511ContentTypeEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V511ContentTypeEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V114SearchOperatorEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V114SearchOperatorEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V114SearchOperatorEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V114SearchOperatorEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V114SearchOperatorEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V114SearchOperatorEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V114SearchOperatorEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V114SearchOperatorEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V114SearchOperatorEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V115SearchAttributeEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V115SearchAttributeEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V115SearchAttributeEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V115SearchAttributeEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V115SearchAttributeEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V115SearchAttributeEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V115SearchAttributeEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V115SearchAttributeEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V115SearchAttributeEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116InitialJoinStateEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116InitialJoinStateEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116InitialJoinStateEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116InitialJoinStateEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116InitialJoinStateEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116InitialJoinStateEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116InitialJoinStateEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116InitialJoinStateEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116InitialJoinStateEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116JoinableUserTypeEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116JoinableUserTypeEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116JoinableUserTypeEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116JoinableUserTypeEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116JoinableUserTypeEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116JoinableUserTypeEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116JoinableUserTypeEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116JoinableUserTypeEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116JoinableUserTypeEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V117InvitableUserTypeEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V117InvitableUserTypeEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V117InvitableUserTypeEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V117InvitableUserTypeEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V117InvitableUserTypeEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V117InvitableUserTypeEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V117InvitableUserTypeEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V117InvitableUserTypeEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V117InvitableUserTypeEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V120PlayerJoinableStatusEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V120PlayerJoinableStatusEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V120PlayerJoinableStatusEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V120PlayerJoinableStatusEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V120PlayerJoinableStatusEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V120PlayerJoinableStatusEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V120PlayerJoinableStatusEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V120PlayerJoinableStatusEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V120PlayerJoinableStatusEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V19JoinStateEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V19JoinStateEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V19JoinStateEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V19JoinStateEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V19JoinStateEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V19JoinStateEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V19JoinStateEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V19JoinStateEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V19JoinStateEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_17TitleCloudStorage2V19ConditionEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_17TitleCloudStorage2V19ConditionEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_17TitleCloudStorage2V19ConditionEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_17TitleCloudStorage2V19ConditionEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_17TitleCloudStorage2V19ConditionEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_17TitleCloudStorage2V19ConditionEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_17TitleCloudStorage2V19ConditionEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_17TitleCloudStorage2V19ConditionEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_17TitleCloudStorage2V19ConditionEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110PlayerTypeEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110PlayerTypeEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110PlayerTypeEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110PlayerTypeEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110PlayerTypeEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110PlayerTypeEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110PlayerTypeEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110PlayerTypeEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110PlayerTypeEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110ResultTypeEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110ResultTypeEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110ResultTypeEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110ResultTypeEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110ResultTypeEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110ResultTypeEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110ResultTypeEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110ResultTypeEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110ResultTypeEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110TaskStatusEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110TaskStatusEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110TaskStatusEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110TaskStatusEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110TaskStatusEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110TaskStatusEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110TaskStatusEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110TaskStatusEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110TaskStatusEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V111LeaveReasonEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V111LeaveReasonEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V111LeaveReasonEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V111LeaveReasonEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V111LeaveReasonEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V111LeaveReasonEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V111LeaveReasonEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V111LeaveReasonEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V111LeaveReasonEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112GroupingTypeEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112GroupingTypeEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112GroupingTypeEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112GroupingTypeEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112GroupingTypeEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112GroupingTypeEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112GroupingTypeEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112GroupingTypeEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112GroupingTypeEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112UpdateStatusEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112UpdateStatusEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112UpdateStatusEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112UpdateStatusEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112UpdateStatusEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112UpdateStatusEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112UpdateStatusEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112UpdateStatusEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112UpdateStatusEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V113SubtaskStatusEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V113SubtaskStatusEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V113SubtaskStatusEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V113SubtaskStatusEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V113SubtaskStatusEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V113SubtaskStatusEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V113SubtaskStatusEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V113SubtaskStatusEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V113SubtaskStatusEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V114ResultsVersionEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V114ResultsVersionEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V114ResultsVersionEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V114ResultsVersionEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V114ResultsVersionEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V114ResultsVersionEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V114ResultsVersionEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V114ResultsVersionEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V114ResultsVersionEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V115CompetitionTypeEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V115CompetitionTypeEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V115CompetitionTypeEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V115CompetitionTypeEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V115CompetitionTypeEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V115CompetitionTypeEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V115CompetitionTypeEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V115CompetitionTypeEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V115CompetitionTypeEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V116TaskAvailabilityEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V116TaskAvailabilityEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V116TaskAvailabilityEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V116TaskAvailabilityEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V116TaskAvailabilityEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V116TaskAvailabilityEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V116TaskAvailabilityEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V116TaskAvailabilityEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V116TaskAvailabilityEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V117ResponseMatchTypeEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V117ResponseMatchTypeEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V117ResponseMatchTypeEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V117ResponseMatchTypeEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V117ResponseMatchTypeEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V117ResponseMatchTypeEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V117ResponseMatchTypeEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V117ResponseMatchTypeEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V117ResponseMatchTypeEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119ChildActivityStatusEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119ChildActivityStatusEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119ChildActivityStatusEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119ChildActivityStatusEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119ChildActivityStatusEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119ChildActivityStatusEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119ChildActivityStatusEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119ChildActivityStatusEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119ChildActivityStatusEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119SubtaskAvailabilityEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119SubtaskAvailabilityEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119SubtaskAvailabilityEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119SubtaskAvailabilityEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119SubtaskAvailabilityEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119SubtaskAvailabilityEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119SubtaskAvailabilityEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119SubtaskAvailabilityEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119SubtaskAvailabilityEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V124RequestCooperativeResultEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V124RequestCooperativeResultEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V124RequestCooperativeResultEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V124RequestCooperativeResultEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V124RequestCooperativeResultEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V124RequestCooperativeResultEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V124RequestCooperativeResultEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V124RequestCooperativeResultEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V124RequestCooperativeResultEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ChildActivityAvailabilityEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ChildActivityAvailabilityEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ChildActivityAvailabilityEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ChildActivityAvailabilityEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ChildActivityAvailabilityEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ChildActivityAvailabilityEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ChildActivityAvailabilityEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ChildActivityAvailabilityEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ChildActivityAvailabilityEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ResponseCooperativeResultEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ResponseCooperativeResultEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ResponseCooperativeResultEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ResponseCooperativeResultEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ResponseCooperativeResultEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ResponseCooperativeResultEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ResponseCooperativeResultEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ResponseCooperativeResultEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ResponseCooperativeResultEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V16StatusEEC1EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V16StatusEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V16StatusEEC2EPS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V16StatusEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V16StatusEEaSERKS7_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V16StatusEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V16StatusEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V16StatusEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V16StatusEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEC1EPS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEC2EPS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEC1EPS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEC2EPS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEC1EPS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEC2EPS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEC1EPS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEC2EPS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEC1EPS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEC2EPS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEaSERKSA_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEC1EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEC2EPS8_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEaSERKS9_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_17ParameterBaseImpl6KeySetEEC1EPS5_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_17ParameterBaseImpl6KeySetEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_17ParameterBaseImpl6KeySetEEC2EPS5_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_17ParameterBaseImpl6KeySetEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_17ParameterBaseImpl6KeySetEEaSERKS6_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_17ParameterBaseImpl6KeySetEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_17ParameterBaseImpl6KeySetEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_17ParameterBaseImpl6KeySetEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_17ParameterBaseImpl6KeySetEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_6StringEEC1EPS4_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_6StringEEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_6StringEEC2EPS4_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_6StringEEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_6StringEEaSERKS5_ +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_6StringEEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_6StringEEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_6StringEEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorINS2_6StringEEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorIdEC1EPd +_ZN3sce2Np9CppWebApi6Common8IteratorIdEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorIdEC2EPd +_ZN3sce2Np9CppWebApi6Common8IteratorIdEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorIdEaSERKS4_ +_ZN3sce2Np9CppWebApi6Common8IteratorIdEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorIdEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorIdEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorIdEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorIfEC1EPf +_ZN3sce2Np9CppWebApi6Common8IteratorIfEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorIfEC2EPf +_ZN3sce2Np9CppWebApi6Common8IteratorIfEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorIfEaSERKS4_ +_ZN3sce2Np9CppWebApi6Common8IteratorIfEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorIfEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorIfEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorIfEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorIiEC1EPi +_ZN3sce2Np9CppWebApi6Common8IteratorIiEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorIiEC2EPi +_ZN3sce2Np9CppWebApi6Common8IteratorIiEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorIiEaSERKS4_ +_ZN3sce2Np9CppWebApi6Common8IteratorIiEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorIiEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorIiEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorIiEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorIjEC1EPj +_ZN3sce2Np9CppWebApi6Common8IteratorIjEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorIjEC2EPj +_ZN3sce2Np9CppWebApi6Common8IteratorIjEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorIjEaSERKS4_ +_ZN3sce2Np9CppWebApi6Common8IteratorIjEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorIjEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorIjEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorIjEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorIlEC1EPl +_ZN3sce2Np9CppWebApi6Common8IteratorIlEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorIlEC2EPl +_ZN3sce2Np9CppWebApi6Common8IteratorIlEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorIlEaSERKS4_ +_ZN3sce2Np9CppWebApi6Common8IteratorIlEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorIlEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorIlEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorIlEppEv +_ZN3sce2Np9CppWebApi6Common8IteratorImEC1EPm +_ZN3sce2Np9CppWebApi6Common8IteratorImEC1Ev +_ZN3sce2Np9CppWebApi6Common8IteratorImEC2EPm +_ZN3sce2Np9CppWebApi6Common8IteratorImEC2Ev +_ZN3sce2Np9CppWebApi6Common8IteratorImEaSERKS4_ +_ZN3sce2Np9CppWebApi6Common8IteratorImEmmEi +_ZN3sce2Np9CppWebApi6Common8IteratorImEmmEv +_ZN3sce2Np9CppWebApi6Common8IteratorImEppEi +_ZN3sce2Np9CppWebApi6Common8IteratorImEppEv +_ZN3sce2Np9CppWebApi6Common9RefObject6AddRefEv +_ZN3sce2Np9CppWebApi6Common9RefObject7ReleaseEv +_ZN3sce2Np9CppWebApi6Common9RefObjectC1Ev +_ZN3sce2Np9CppWebApi6Common9RefObjectC2Ev +_ZN3sce2Np9CppWebApi6Common9RefObjectD1Ev +_ZN3sce2Np9CppWebApi6Common9RefObjectD2Ev +_ZN3sce2Np9CppWebApi6Common9terminateERNS2_10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V111AddedPlayer11setPlayerIdEPKc +_ZN3sce2Np9CppWebApi7Matches2V111AddedPlayer11unsetTeamIdEv +_ZN3sce2Np9CppWebApi7Matches2V111AddedPlayer12setAccountIdEPKc +_ZN3sce2Np9CppWebApi7Matches2V111AddedPlayer13setPlayerNameEPKc +_ZN3sce2Np9CppWebApi7Matches2V111AddedPlayer13setPlayerTypeERKNS3_10PlayerTypeE +_ZN3sce2Np9CppWebApi7Matches2V111AddedPlayer14unsetAccountIdEv +_ZN3sce2Np9CppWebApi7Matches2V111AddedPlayer15unsetPlayerNameEv +_ZN3sce2Np9CppWebApi7Matches2V111AddedPlayer8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi7Matches2V111AddedPlayer9setTeamIdEPKc +_ZN3sce2Np9CppWebApi7Matches2V111AddedPlayerC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V111AddedPlayerC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V111AddedPlayerD1Ev +_ZN3sce2Np9CppWebApi7Matches2V111AddedPlayerD2Ev +_ZN3sce2Np9CppWebApi7Matches2V111TaskFactory6createEPNS1_6Common10LibContextEPKcNS3_10TaskStatusENS3_16TaskAvailabilityEPNS5_12IntrusivePtrINS3_4TaskEEE +_ZN3sce2Np9CppWebApi7Matches2V111TaskFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_4TaskEEE +_ZN3sce2Np9CppWebApi7Matches2V111TaskFactory7destroyEPNS3_4TaskE +_ZN3sce2Np9CppWebApi7Matches2V112ErrorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5ErrorEEE +_ZN3sce2Np9CppWebApi7Matches2V112ErrorFactory6createEPNS1_6Common10LibContextEiPKcPNS5_12IntrusivePtrINS3_5ErrorEEE +_ZN3sce2Np9CppWebApi7Matches2V112ErrorFactory7destroyEPNS3_5ErrorE +_ZN3sce2Np9CppWebApi7Matches2V113ChildActivity11unsetStatusEv +_ZN3sce2Np9CppWebApi7Matches2V113ChildActivity13setActivityIdEPKc +_ZN3sce2Np9CppWebApi7Matches2V113ChildActivity15setAvailabilityERKNS3_25ChildActivityAvailabilityE +_ZN3sce2Np9CppWebApi7Matches2V113ChildActivity17unsetAvailabilityEv +_ZN3sce2Np9CppWebApi7Matches2V113ChildActivity8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi7Matches2V113ChildActivity9setStatusERKNS3_19ChildActivityStatusE +_ZN3sce2Np9CppWebApi7Matches2V113ChildActivityC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V113ChildActivityC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V113ChildActivityD1Ev +_ZN3sce2Np9CppWebApi7Matches2V113ChildActivityD2Ev +_ZN3sce2Np9CppWebApi7Matches2V113ErrorResponse8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi7Matches2V113ErrorResponse8setErrorERKNS1_6Common12IntrusivePtrINS3_5ErrorEEE +_ZN3sce2Np9CppWebApi7Matches2V113ErrorResponseC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V113ErrorResponseC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V113ErrorResponseD1Ev +_ZN3sce2Np9CppWebApi7Matches2V113ErrorResponseD2Ev +_ZN3sce2Np9CppWebApi7Matches2V113RemovedPlayer11setPlayerIdEPKc +_ZN3sce2Np9CppWebApi7Matches2V113RemovedPlayer11unsetReasonEv +_ZN3sce2Np9CppWebApi7Matches2V113RemovedPlayer8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi7Matches2V113RemovedPlayer9setReasonERKNS3_11LeaveReasonE +_ZN3sce2Np9CppWebApi7Matches2V113RemovedPlayerC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V113RemovedPlayerC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V113RemovedPlayerD1Ev +_ZN3sce2Np9CppWebApi7Matches2V113RemovedPlayerD2Ev +_ZN3sce2Np9CppWebApi7Matches2V113RequestMember11setPlayerIdEPKc +_ZN3sce2Np9CppWebApi7Matches2V113RequestMember8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi7Matches2V113RequestMemberC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V113RequestMemberC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V113RequestMemberD1Ev +_ZN3sce2Np9CppWebApi7Matches2V113RequestMemberD2Ev +_ZN3sce2Np9CppWebApi7Matches2V114ResponseMember11setJoinFlagERKb +_ZN3sce2Np9CppWebApi7Matches2V114ResponseMember11setPlayerIdEPKc +_ZN3sce2Np9CppWebApi7Matches2V114ResponseMember8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi7Matches2V114ResponseMemberC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V114ResponseMemberC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V114ResponseMemberD1Ev +_ZN3sce2Np9CppWebApi7Matches2V114ResponseMemberD2Ev +_ZN3sce2Np9CppWebApi7Matches2V114SubtaskFactory6createEPNS1_6Common10LibContextEPKcNS3_13SubtaskStatusENS3_19SubtaskAvailabilityEPNS5_12IntrusivePtrINS3_7SubtaskEEE +_ZN3sce2Np9CppWebApi7Matches2V114SubtaskFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_7SubtaskEEE +_ZN3sce2Np9CppWebApi7Matches2V114SubtaskFactory7destroyEPNS3_7SubtaskE +_ZN3sce2Np9CppWebApi7Matches2V116JoinMatchRequest10getPlayersEv +_ZN3sce2Np9CppWebApi7Matches2V116JoinMatchRequest10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_11AddedPlayerEEEEE +_ZN3sce2Np9CppWebApi7Matches2V116JoinMatchRequest17setNpServiceLabelERKi +_ZN3sce2Np9CppWebApi7Matches2V116JoinMatchRequest19unsetNpServiceLabelEv +_ZN3sce2Np9CppWebApi7Matches2V116JoinMatchRequest8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi7Matches2V116JoinMatchRequestC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V116JoinMatchRequestC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V116JoinMatchRequestD1Ev +_ZN3sce2Np9CppWebApi7Matches2V116JoinMatchRequestD2Ev +_ZN3sce2Np9CppWebApi7Matches2V116RequestMatchTeam10getMembersEv +_ZN3sce2Np9CppWebApi7Matches2V116RequestMatchTeam10setMembersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_13RequestMemberEEEEE +_ZN3sce2Np9CppWebApi7Matches2V116RequestMatchTeam11setTeamNameEPKc +_ZN3sce2Np9CppWebApi7Matches2V116RequestMatchTeam12unsetMembersEv +_ZN3sce2Np9CppWebApi7Matches2V116RequestMatchTeam13unsetTeamNameEv +_ZN3sce2Np9CppWebApi7Matches2V116RequestMatchTeam8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi7Matches2V116RequestMatchTeam9setTeamIdEPKc +_ZN3sce2Np9CppWebApi7Matches2V116RequestMatchTeamC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V116RequestMatchTeamC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V116RequestMatchTeamD1Ev +_ZN3sce2Np9CppWebApi7Matches2V116RequestMatchTeamD2Ev +_ZN3sce2Np9CppWebApi7Matches2V117LeaveMatchRequest10getPlayersEv +_ZN3sce2Np9CppWebApi7Matches2V117LeaveMatchRequest10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_13RemovedPlayerEEEEE +_ZN3sce2Np9CppWebApi7Matches2V117LeaveMatchRequest17setNpServiceLabelERKi +_ZN3sce2Np9CppWebApi7Matches2V117LeaveMatchRequest19unsetNpServiceLabelEv +_ZN3sce2Np9CppWebApi7Matches2V117LeaveMatchRequest8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi7Matches2V117LeaveMatchRequestC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V117LeaveMatchRequestC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V117LeaveMatchRequestD1Ev +_ZN3sce2Np9CppWebApi7Matches2V117LeaveMatchRequestD2Ev +_ZN3sce2Np9CppWebApi7Matches2V117ResponseMatchTeam10getMembersEv +_ZN3sce2Np9CppWebApi7Matches2V117ResponseMatchTeam10setMembersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_14ResponseMemberEEEEE +_ZN3sce2Np9CppWebApi7Matches2V117ResponseMatchTeam11setTeamNameEPKc +_ZN3sce2Np9CppWebApi7Matches2V117ResponseMatchTeam12unsetMembersEv +_ZN3sce2Np9CppWebApi7Matches2V117ResponseMatchTeam13unsetTeamNameEv +_ZN3sce2Np9CppWebApi7Matches2V117ResponseMatchTeam8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi7Matches2V117ResponseMatchTeam9setTeamIdEPKc +_ZN3sce2Np9CppWebApi7Matches2V117ResponseMatchTeamC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V117ResponseMatchTeamC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V117ResponseMatchTeamD1Ev +_ZN3sce2Np9CppWebApi7Matches2V117ResponseMatchTeamD2Ev +_ZN3sce2Np9CppWebApi7Matches2V118AddedPlayerFactory6createEPNS1_6Common10LibContextEPKcNS3_10PlayerTypeEPNS5_12IntrusivePtrINS3_11AddedPlayerEEE +_ZN3sce2Np9CppWebApi7Matches2V118AddedPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_11AddedPlayerEEE +_ZN3sce2Np9CppWebApi7Matches2V118AddedPlayerFactory7destroyEPNS3_11AddedPlayerE +_ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequest11unsetZoneIdEv +_ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequest13setActivityIdEPKc +_ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequest15setInGameRosterERKNS1_6Common12IntrusivePtrINS3_19RequestInGameRosterEEE +_ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequest17setExpirationTimeERKi +_ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequest17setNpServiceLabelERKi +_ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequest17unsetInGameRosterEv +_ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequest19setCancellationTimeERKi +_ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequest19unsetExpirationTimeEv +_ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequest19unsetNpServiceLabelEv +_ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequest21unsetCancellationTimeEv +_ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequest8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequest9setZoneIdEPKc +_ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequestC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequestC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequestD1Ev +_ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequestD2Ev +_ZN3sce2Np9CppWebApi7Matches2V118RequestMatchPlayer11setPlayerIdEPKc +_ZN3sce2Np9CppWebApi7Matches2V118RequestMatchPlayer12setAccountIdEPKc +_ZN3sce2Np9CppWebApi7Matches2V118RequestMatchPlayer13setPlayerNameEPKc +_ZN3sce2Np9CppWebApi7Matches2V118RequestMatchPlayer13setPlayerTypeERKNS3_10PlayerTypeE +_ZN3sce2Np9CppWebApi7Matches2V118RequestMatchPlayer14unsetAccountIdEv +_ZN3sce2Np9CppWebApi7Matches2V118RequestMatchPlayer15unsetPlayerNameEv +_ZN3sce2Np9CppWebApi7Matches2V118RequestMatchPlayer8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi7Matches2V118RequestMatchPlayerC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V118RequestMatchPlayerC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V118RequestMatchPlayerD1Ev +_ZN3sce2Np9CppWebApi7Matches2V118RequestMatchPlayerD2Ev +_ZN3sce2Np9CppWebApi7Matches2V118RequestTeamResults10unsetScoreEv +_ZN3sce2Np9CppWebApi7Matches2V118RequestTeamResults20getTeamMemberResultsEv +_ZN3sce2Np9CppWebApi7Matches2V118RequestTeamResults20setTeamMemberResultsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_23RequestTeamMemberResultEEEEE +_ZN3sce2Np9CppWebApi7Matches2V118RequestTeamResults22unsetTeamMemberResultsEv +_ZN3sce2Np9CppWebApi7Matches2V118RequestTeamResults7setRankERKi +_ZN3sce2Np9CppWebApi7Matches2V118RequestTeamResults8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi7Matches2V118RequestTeamResults8setScoreERKd +_ZN3sce2Np9CppWebApi7Matches2V118RequestTeamResults9setTeamIdEPKc +_ZN3sce2Np9CppWebApi7Matches2V118RequestTeamResultsC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V118RequestTeamResultsC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V118RequestTeamResultsD1Ev +_ZN3sce2Np9CppWebApi7Matches2V118RequestTeamResultsD2Ev +_ZN3sce2Np9CppWebApi7Matches2V119AdditionalStatistic11setStatsKeyEPKc +_ZN3sce2Np9CppWebApi7Matches2V119AdditionalStatistic13setStatsValueEPKc +_ZN3sce2Np9CppWebApi7Matches2V119AdditionalStatistic8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi7Matches2V119AdditionalStatisticC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V119AdditionalStatisticC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V119AdditionalStatisticD1Ev +_ZN3sce2Np9CppWebApi7Matches2V119AdditionalStatisticD2Ev +_ZN3sce2Np9CppWebApi7Matches2V119CreateMatchResponse10setMatchIdEPKc +_ZN3sce2Np9CppWebApi7Matches2V119CreateMatchResponse8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi7Matches2V119CreateMatchResponseC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V119CreateMatchResponseC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V119CreateMatchResponseD1Ev +_ZN3sce2Np9CppWebApi7Matches2V119CreateMatchResponseD2Ev +_ZN3sce2Np9CppWebApi7Matches2V119RequestInGameRoster10getPlayersEv +_ZN3sce2Np9CppWebApi7Matches2V119RequestInGameRoster10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_18RequestMatchPlayerEEEEE +_ZN3sce2Np9CppWebApi7Matches2V119RequestInGameRoster10unsetTeamsEv +_ZN3sce2Np9CppWebApi7Matches2V119RequestInGameRoster12unsetPlayersEv +_ZN3sce2Np9CppWebApi7Matches2V119RequestInGameRoster8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi7Matches2V119RequestInGameRoster8getTeamsEv +_ZN3sce2Np9CppWebApi7Matches2V119RequestInGameRoster8setTeamsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_16RequestMatchTeamEEEEE +_ZN3sce2Np9CppWebApi7Matches2V119RequestInGameRosterC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V119RequestInGameRosterC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V119RequestInGameRosterD1Ev +_ZN3sce2Np9CppWebApi7Matches2V119RequestInGameRosterD2Ev +_ZN3sce2Np9CppWebApi7Matches2V119RequestMatchResults10setVersionERKNS3_14ResultsVersionE +_ZN3sce2Np9CppWebApi7Matches2V119RequestMatchResults20setCompetitiveResultERKNS1_6Common12IntrusivePtrINS3_24RequestCompetitiveResultEEE +_ZN3sce2Np9CppWebApi7Matches2V119RequestMatchResults20setCooperativeResultERKNS3_24RequestCooperativeResultE +_ZN3sce2Np9CppWebApi7Matches2V119RequestMatchResults22unsetCompetitiveResultEv +_ZN3sce2Np9CppWebApi7Matches2V119RequestMatchResults22unsetCooperativeResultEv +_ZN3sce2Np9CppWebApi7Matches2V119RequestMatchResults8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi7Matches2V119RequestMatchResultsC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V119RequestMatchResultsC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V119RequestMatchResultsD1Ev +_ZN3sce2Np9CppWebApi7Matches2V119RequestMatchResultsD2Ev +_ZN3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer11setJoinFlagERKb +_ZN3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer11setOnlineIdEPKc +_ZN3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer11setPlayerIdEPKc +_ZN3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer12setAccountIdEPKc +_ZN3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer13setPlayerNameEPKc +_ZN3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer13setPlayerTypeERKNS3_10PlayerTypeE +_ZN3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer13unsetOnlineIdEv +_ZN3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer14unsetAccountIdEv +_ZN3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer15unsetPlayerNameEv +_ZN3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayerC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayerC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayerD1Ev +_ZN3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayerD2Ev +_ZN3sce2Np9CppWebApi7Matches2V119ResponseTeamResults10unsetScoreEv +_ZN3sce2Np9CppWebApi7Matches2V119ResponseTeamResults20getTeamMemberResultsEv +_ZN3sce2Np9CppWebApi7Matches2V119ResponseTeamResults20setTeamMemberResultsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_24ResponseTeamMemberResultEEEEE +_ZN3sce2Np9CppWebApi7Matches2V119ResponseTeamResults22unsetTeamMemberResultsEv +_ZN3sce2Np9CppWebApi7Matches2V119ResponseTeamResults7setRankERKi +_ZN3sce2Np9CppWebApi7Matches2V119ResponseTeamResults8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi7Matches2V119ResponseTeamResults8setScoreERKd +_ZN3sce2Np9CppWebApi7Matches2V119ResponseTeamResults9setTeamIdEPKc +_ZN3sce2Np9CppWebApi7Matches2V119ResponseTeamResultsC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V119ResponseTeamResultsC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V119ResponseTeamResultsD1Ev +_ZN3sce2Np9CppWebApi7Matches2V119ResponseTeamResultsD2Ev +_ZN3sce2Np9CppWebApi7Matches2V120ChildActivityFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_13ChildActivityEEE +_ZN3sce2Np9CppWebApi7Matches2V120ChildActivityFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_13ChildActivityEEE +_ZN3sce2Np9CppWebApi7Matches2V120ChildActivityFactory7destroyEPNS3_13ChildActivityE +_ZN3sce2Np9CppWebApi7Matches2V120ErrorResponseFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_5ErrorEEEPNS8_INS3_13ErrorResponseEEE +_ZN3sce2Np9CppWebApi7Matches2V120ErrorResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_13ErrorResponseEEE +_ZN3sce2Np9CppWebApi7Matches2V120ErrorResponseFactory7destroyEPNS3_13ErrorResponseE +_ZN3sce2Np9CppWebApi7Matches2V120RemovedPlayerFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_13RemovedPlayerEEE +_ZN3sce2Np9CppWebApi7Matches2V120RemovedPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_13RemovedPlayerEEE +_ZN3sce2Np9CppWebApi7Matches2V120RemovedPlayerFactory7destroyEPNS3_13RemovedPlayerE +_ZN3sce2Np9CppWebApi7Matches2V120ReportResultsRequest15setMatchResultsERKNS1_6Common12IntrusivePtrINS3_19RequestMatchResultsEEE +_ZN3sce2Np9CppWebApi7Matches2V120ReportResultsRequest17setNpServiceLabelERKi +_ZN3sce2Np9CppWebApi7Matches2V120ReportResultsRequest18setMatchStatisticsERKNS1_6Common12IntrusivePtrINS3_22RequestMatchStatisticsEEE +_ZN3sce2Np9CppWebApi7Matches2V120ReportResultsRequest19unsetNpServiceLabelEv +_ZN3sce2Np9CppWebApi7Matches2V120ReportResultsRequest20unsetMatchStatisticsEv +_ZN3sce2Np9CppWebApi7Matches2V120ReportResultsRequest8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi7Matches2V120ReportResultsRequestC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V120ReportResultsRequestC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V120ReportResultsRequestD1Ev +_ZN3sce2Np9CppWebApi7Matches2V120ReportResultsRequestD2Ev +_ZN3sce2Np9CppWebApi7Matches2V120RequestMemberFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_13RequestMemberEEE +_ZN3sce2Np9CppWebApi7Matches2V120RequestMemberFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_13RequestMemberEEE +_ZN3sce2Np9CppWebApi7Matches2V120RequestMemberFactory7destroyEPNS3_13RequestMemberE +_ZN3sce2Np9CppWebApi7Matches2V120RequestPlayerResults10unsetScoreEv +_ZN3sce2Np9CppWebApi7Matches2V120RequestPlayerResults11setPlayerIdEPKc +_ZN3sce2Np9CppWebApi7Matches2V120RequestPlayerResults7setRankERKi +_ZN3sce2Np9CppWebApi7Matches2V120RequestPlayerResults8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi7Matches2V120RequestPlayerResults8setScoreERKd +_ZN3sce2Np9CppWebApi7Matches2V120RequestPlayerResultsC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V120RequestPlayerResultsC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V120RequestPlayerResultsD1Ev +_ZN3sce2Np9CppWebApi7Matches2V120RequestPlayerResultsD2Ev +_ZN3sce2Np9CppWebApi7Matches2V120RequestTeamStatistic10unsetStatsEv +_ZN3sce2Np9CppWebApi7Matches2V120RequestTeamStatistic23getTeamMemberStatisticsEv +_ZN3sce2Np9CppWebApi7Matches2V120RequestTeamStatistic23setTeamMemberStatisticsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_26RequestTeamMemberStatisticEEEEE +_ZN3sce2Np9CppWebApi7Matches2V120RequestTeamStatistic25unsetTeamMemberStatisticsEv +_ZN3sce2Np9CppWebApi7Matches2V120RequestTeamStatistic8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi7Matches2V120RequestTeamStatistic8getStatsEv +_ZN3sce2Np9CppWebApi7Matches2V120RequestTeamStatistic8setStatsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_19AdditionalStatisticEEEEE +_ZN3sce2Np9CppWebApi7Matches2V120RequestTeamStatistic9setTeamIdEPKc +_ZN3sce2Np9CppWebApi7Matches2V120RequestTeamStatisticC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V120RequestTeamStatisticC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V120RequestTeamStatisticD1Ev +_ZN3sce2Np9CppWebApi7Matches2V120RequestTeamStatisticD2Ev +_ZN3sce2Np9CppWebApi7Matches2V120ResponseInGameRoster10getPlayersEv +_ZN3sce2Np9CppWebApi7Matches2V120ResponseInGameRoster10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_19ResponseMatchPlayerEEEEE +_ZN3sce2Np9CppWebApi7Matches2V120ResponseInGameRoster10unsetTeamsEv +_ZN3sce2Np9CppWebApi7Matches2V120ResponseInGameRoster12unsetPlayersEv +_ZN3sce2Np9CppWebApi7Matches2V120ResponseInGameRoster8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi7Matches2V120ResponseInGameRoster8getTeamsEv +_ZN3sce2Np9CppWebApi7Matches2V120ResponseInGameRoster8setTeamsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_17ResponseMatchTeamEEEEE +_ZN3sce2Np9CppWebApi7Matches2V120ResponseInGameRosterC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V120ResponseInGameRosterC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V120ResponseInGameRosterD1Ev +_ZN3sce2Np9CppWebApi7Matches2V120ResponseInGameRosterD2Ev +_ZN3sce2Np9CppWebApi7Matches2V120ResponseMatchResults10setVersionERKNS3_14ResultsVersionE +_ZN3sce2Np9CppWebApi7Matches2V120ResponseMatchResults20setCompetitiveResultERKNS1_6Common12IntrusivePtrINS3_25ResponseCompetitiveResultEEE +_ZN3sce2Np9CppWebApi7Matches2V120ResponseMatchResults20setCooperativeResultERKNS3_25ResponseCooperativeResultE +_ZN3sce2Np9CppWebApi7Matches2V120ResponseMatchResults22unsetCompetitiveResultEv +_ZN3sce2Np9CppWebApi7Matches2V120ResponseMatchResults22unsetCooperativeResultEv +_ZN3sce2Np9CppWebApi7Matches2V120ResponseMatchResults8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi7Matches2V120ResponseMatchResultsC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V120ResponseMatchResultsC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V120ResponseMatchResultsD1Ev +_ZN3sce2Np9CppWebApi7Matches2V120ResponseMatchResultsD2Ev +_ZN3sce2Np9CppWebApi7Matches2V121ResponseMemberFactory6createEPNS1_6Common10LibContextEPKcbPNS5_12IntrusivePtrINS3_14ResponseMemberEEE +_ZN3sce2Np9CppWebApi7Matches2V121ResponseMemberFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_14ResponseMemberEEE +_ZN3sce2Np9CppWebApi7Matches2V121ResponseMemberFactory7destroyEPNS3_14ResponseMemberE +_ZN3sce2Np9CppWebApi7Matches2V121ResponsePlayerResults10unsetScoreEv +_ZN3sce2Np9CppWebApi7Matches2V121ResponsePlayerResults11setPlayerIdEPKc +_ZN3sce2Np9CppWebApi7Matches2V121ResponsePlayerResults7setRankERKi +_ZN3sce2Np9CppWebApi7Matches2V121ResponsePlayerResults8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi7Matches2V121ResponsePlayerResults8setScoreERKd +_ZN3sce2Np9CppWebApi7Matches2V121ResponsePlayerResultsC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V121ResponsePlayerResultsC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V121ResponsePlayerResultsD1Ev +_ZN3sce2Np9CppWebApi7Matches2V121ResponsePlayerResultsD2Ev +_ZN3sce2Np9CppWebApi7Matches2V121ResponseTeamStatistic10unsetStatsEv +_ZN3sce2Np9CppWebApi7Matches2V121ResponseTeamStatistic23getTeamMemberStatisticsEv +_ZN3sce2Np9CppWebApi7Matches2V121ResponseTeamStatistic23setTeamMemberStatisticsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_27ResponseTeamMemberStatisticEEEEE +_ZN3sce2Np9CppWebApi7Matches2V121ResponseTeamStatistic25unsetTeamMemberStatisticsEv +_ZN3sce2Np9CppWebApi7Matches2V121ResponseTeamStatistic8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi7Matches2V121ResponseTeamStatistic8getStatsEv +_ZN3sce2Np9CppWebApi7Matches2V121ResponseTeamStatistic8setStatsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_19AdditionalStatisticEEEEE +_ZN3sce2Np9CppWebApi7Matches2V121ResponseTeamStatistic9setTeamIdEPKc +_ZN3sce2Np9CppWebApi7Matches2V121ResponseTeamStatisticC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V121ResponseTeamStatisticC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V121ResponseTeamStatisticD1Ev +_ZN3sce2Np9CppWebApi7Matches2V121ResponseTeamStatisticD2Ev +_ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse10setMatchIdEPKc +_ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse10unsetTasksEv +_ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse11unsetZoneIdEv +_ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse12setMatchTypeERKNS3_17ResponseMatchTypeE +_ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse13setActivityIdEPKc +_ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse13setResultTypeERKNS3_10ResultTypeE +_ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse14unsetMatchTypeEv +_ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse15setGroupingTypeERKNS3_12GroupingTypeE +_ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse15setInGameRosterERKNS1_6Common12IntrusivePtrINS3_20ResponseInGameRosterEEE +_ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse15setMatchResultsERKNS1_6Common12IntrusivePtrINS3_20ResponseMatchResultsEEE +_ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse17setExpirationTimeERKi +_ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse17unsetInGameRosterEv +_ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse17unsetMatchResultsEv +_ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse18setCompetitionTypeERKNS3_15CompetitionTypeE +_ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse18setMatchStatisticsERKNS1_6Common12IntrusivePtrINS3_23ResponseMatchStatisticsEEE +_ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse19setCancellationTimeERKi +_ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse20setMatchEndTimestampEPKc +_ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse20unsetMatchStatisticsEv +_ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse21unsetCancellationTimeEv +_ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse22setLastPausedTimestampEPKc +_ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse22setMatchStartTimestampEPKc +_ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse22unsetMatchEndTimestampEv +_ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse24unsetLastPausedTimestampEv +_ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse24unsetMatchStartTimestampEv +_ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse8getTasksEv +_ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse8setTasksERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_4TaskEEEEE +_ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse9setStatusERKNS3_6StatusE +_ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse9setZoneIdEPKc +_ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponseC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponseC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponseD1Ev +_ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponseD2Ev +_ZN3sce2Np9CppWebApi7Matches2V122RequestMatchStatistics17getTeamStatisticsEv +_ZN3sce2Np9CppWebApi7Matches2V122RequestMatchStatistics17setTeamStatisticsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_20RequestTeamStatisticEEEEE +_ZN3sce2Np9CppWebApi7Matches2V122RequestMatchStatistics19getPlayerStatisticsEv +_ZN3sce2Np9CppWebApi7Matches2V122RequestMatchStatistics19setPlayerStatisticsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_22RequestPlayerStatisticEEEEE +_ZN3sce2Np9CppWebApi7Matches2V122RequestMatchStatistics19unsetTeamStatisticsEv +_ZN3sce2Np9CppWebApi7Matches2V122RequestMatchStatistics21unsetPlayerStatisticsEv +_ZN3sce2Np9CppWebApi7Matches2V122RequestMatchStatistics8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi7Matches2V122RequestMatchStatisticsC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V122RequestMatchStatisticsC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V122RequestMatchStatisticsD1Ev +_ZN3sce2Np9CppWebApi7Matches2V122RequestMatchStatisticsD2Ev +_ZN3sce2Np9CppWebApi7Matches2V122RequestPlayerStatistic11setPlayerIdEPKc +_ZN3sce2Np9CppWebApi7Matches2V122RequestPlayerStatistic8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi7Matches2V122RequestPlayerStatistic8getStatsEv +_ZN3sce2Np9CppWebApi7Matches2V122RequestPlayerStatistic8setStatsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_19AdditionalStatisticEEEEE +_ZN3sce2Np9CppWebApi7Matches2V122RequestPlayerStatisticC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V122RequestPlayerStatisticC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V122RequestPlayerStatisticD1Ev +_ZN3sce2Np9CppWebApi7Matches2V122RequestPlayerStatisticD2Ev +_ZN3sce2Np9CppWebApi7Matches2V123JoinMatchRequestFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_11AddedPlayerEEEEEPNS9_INS3_16JoinMatchRequestEEE +_ZN3sce2Np9CppWebApi7Matches2V123JoinMatchRequestFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_16JoinMatchRequestEEE +_ZN3sce2Np9CppWebApi7Matches2V123JoinMatchRequestFactory7destroyEPNS3_16JoinMatchRequestE +_ZN3sce2Np9CppWebApi7Matches2V123RequestMatchTeamFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_16RequestMatchTeamEEE +_ZN3sce2Np9CppWebApi7Matches2V123RequestMatchTeamFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_16RequestMatchTeamEEE +_ZN3sce2Np9CppWebApi7Matches2V123RequestMatchTeamFactory7destroyEPNS3_16RequestMatchTeamE +_ZN3sce2Np9CppWebApi7Matches2V123RequestTeamMemberResult11setPlayerIdEPKc +_ZN3sce2Np9CppWebApi7Matches2V123RequestTeamMemberResult8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi7Matches2V123RequestTeamMemberResult8setScoreERKd +_ZN3sce2Np9CppWebApi7Matches2V123RequestTeamMemberResultC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V123RequestTeamMemberResultC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V123RequestTeamMemberResultD1Ev +_ZN3sce2Np9CppWebApi7Matches2V123RequestTeamMemberResultD2Ev +_ZN3sce2Np9CppWebApi7Matches2V123ResponseMatchStatistics17getTeamStatisticsEv +_ZN3sce2Np9CppWebApi7Matches2V123ResponseMatchStatistics17setTeamStatisticsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_21ResponseTeamStatisticEEEEE +_ZN3sce2Np9CppWebApi7Matches2V123ResponseMatchStatistics19getPlayerStatisticsEv +_ZN3sce2Np9CppWebApi7Matches2V123ResponseMatchStatistics19setPlayerStatisticsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_23ResponsePlayerStatisticEEEEE +_ZN3sce2Np9CppWebApi7Matches2V123ResponseMatchStatistics19unsetTeamStatisticsEv +_ZN3sce2Np9CppWebApi7Matches2V123ResponseMatchStatistics21unsetPlayerStatisticsEv +_ZN3sce2Np9CppWebApi7Matches2V123ResponseMatchStatistics8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi7Matches2V123ResponseMatchStatisticsC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V123ResponseMatchStatisticsC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V123ResponseMatchStatisticsD1Ev +_ZN3sce2Np9CppWebApi7Matches2V123ResponseMatchStatisticsD2Ev +_ZN3sce2Np9CppWebApi7Matches2V123ResponsePlayerStatistic11setPlayerIdEPKc +_ZN3sce2Np9CppWebApi7Matches2V123ResponsePlayerStatistic8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi7Matches2V123ResponsePlayerStatistic8getStatsEv +_ZN3sce2Np9CppWebApi7Matches2V123ResponsePlayerStatistic8setStatsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_19AdditionalStatisticEEEEE +_ZN3sce2Np9CppWebApi7Matches2V123ResponsePlayerStatisticC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V123ResponsePlayerStatisticC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V123ResponsePlayerStatisticD1Ev +_ZN3sce2Np9CppWebApi7Matches2V123ResponsePlayerStatisticD2Ev +_ZN3sce2Np9CppWebApi7Matches2V124LeaveMatchRequestFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_13RemovedPlayerEEEEEPNS9_INS3_17LeaveMatchRequestEEE +_ZN3sce2Np9CppWebApi7Matches2V124LeaveMatchRequestFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_17LeaveMatchRequestEEE +_ZN3sce2Np9CppWebApi7Matches2V124LeaveMatchRequestFactory7destroyEPNS3_17LeaveMatchRequestE +_ZN3sce2Np9CppWebApi7Matches2V124RequestCompetitiveResult14getTeamResultsEv +_ZN3sce2Np9CppWebApi7Matches2V124RequestCompetitiveResult14setTeamResultsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_18RequestTeamResultsEEEEE +_ZN3sce2Np9CppWebApi7Matches2V124RequestCompetitiveResult16getPlayerResultsEv +_ZN3sce2Np9CppWebApi7Matches2V124RequestCompetitiveResult16setPlayerResultsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_20RequestPlayerResultsEEEEE +_ZN3sce2Np9CppWebApi7Matches2V124RequestCompetitiveResult16unsetTeamResultsEv +_ZN3sce2Np9CppWebApi7Matches2V124RequestCompetitiveResult18unsetPlayerResultsEv +_ZN3sce2Np9CppWebApi7Matches2V124RequestCompetitiveResult8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi7Matches2V124RequestCompetitiveResultC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V124RequestCompetitiveResultC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V124RequestCompetitiveResultD1Ev +_ZN3sce2Np9CppWebApi7Matches2V124RequestCompetitiveResultD2Ev +_ZN3sce2Np9CppWebApi7Matches2V124ResponseMatchTeamFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_17ResponseMatchTeamEEE +_ZN3sce2Np9CppWebApi7Matches2V124ResponseMatchTeamFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_17ResponseMatchTeamEEE +_ZN3sce2Np9CppWebApi7Matches2V124ResponseMatchTeamFactory7destroyEPNS3_17ResponseMatchTeamE +_ZN3sce2Np9CppWebApi7Matches2V124ResponseTeamMemberResult11setPlayerIdEPKc +_ZN3sce2Np9CppWebApi7Matches2V124ResponseTeamMemberResult8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi7Matches2V124ResponseTeamMemberResult8setScoreERKd +_ZN3sce2Np9CppWebApi7Matches2V124ResponseTeamMemberResultC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V124ResponseTeamMemberResultC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V124ResponseTeamMemberResultD1Ev +_ZN3sce2Np9CppWebApi7Matches2V124ResponseTeamMemberResultD2Ev +_ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest11unsetZoneIdEv +_ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest15setInGameRosterERKNS1_6Common12IntrusivePtrINS3_19RequestInGameRosterEEE +_ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest15setMatchResultsERKNS1_6Common12IntrusivePtrINS3_28RequestTemporaryMatchResultsEEE +_ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest17setExpirationTimeERKi +_ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest17setNpServiceLabelERKi +_ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest17unsetInGameRosterEv +_ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest17unsetMatchResultsEv +_ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest18getChildActivitiesEv +_ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest18setChildActivitiesERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_13ChildActivityEEEEE +_ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest18setMatchStatisticsERKNS1_6Common12IntrusivePtrINS3_22RequestMatchStatisticsEEE +_ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest19unsetExpirationTimeEv +_ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest19unsetNpServiceLabelEv +_ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest20unsetChildActivitiesEv +_ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest20unsetMatchStatisticsEv +_ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest9setZoneIdEPKc +_ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequestC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequestC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequestD1Ev +_ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequestD2Ev +_ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchStatusRequest17setNpServiceLabelERKi +_ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchStatusRequest19unsetNpServiceLabelEv +_ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchStatusRequest8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchStatusRequest9setStatusERKNS3_12UpdateStatusE +_ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchStatusRequestC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchStatusRequestC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchStatusRequestD1Ev +_ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchStatusRequestD2Ev +_ZN3sce2Np9CppWebApi7Matches2V125CreateMatchRequestFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_18CreateMatchRequestEEE +_ZN3sce2Np9CppWebApi7Matches2V125CreateMatchRequestFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_18CreateMatchRequestEEE +_ZN3sce2Np9CppWebApi7Matches2V125CreateMatchRequestFactory7destroyEPNS3_18CreateMatchRequestE +_ZN3sce2Np9CppWebApi7Matches2V125RequestMatchPlayerFactory6createEPNS1_6Common10LibContextEPKcNS3_10PlayerTypeEPNS5_12IntrusivePtrINS3_18RequestMatchPlayerEEE +_ZN3sce2Np9CppWebApi7Matches2V125RequestMatchPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_18RequestMatchPlayerEEE +_ZN3sce2Np9CppWebApi7Matches2V125RequestMatchPlayerFactory7destroyEPNS3_18RequestMatchPlayerE +_ZN3sce2Np9CppWebApi7Matches2V125RequestTeamResultsFactory6createEPNS1_6Common10LibContextEPKciPNS5_12IntrusivePtrINS3_18RequestTeamResultsEEE +_ZN3sce2Np9CppWebApi7Matches2V125RequestTeamResultsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_18RequestTeamResultsEEE +_ZN3sce2Np9CppWebApi7Matches2V125RequestTeamResultsFactory7destroyEPNS3_18RequestTeamResultsE +_ZN3sce2Np9CppWebApi7Matches2V125ResponseCompetitiveResult14getTeamResultsEv +_ZN3sce2Np9CppWebApi7Matches2V125ResponseCompetitiveResult14setTeamResultsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_19ResponseTeamResultsEEEEE +_ZN3sce2Np9CppWebApi7Matches2V125ResponseCompetitiveResult16getPlayerResultsEv +_ZN3sce2Np9CppWebApi7Matches2V125ResponseCompetitiveResult16setPlayerResultsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_21ResponsePlayerResultsEEEEE +_ZN3sce2Np9CppWebApi7Matches2V125ResponseCompetitiveResult16unsetTeamResultsEv +_ZN3sce2Np9CppWebApi7Matches2V125ResponseCompetitiveResult18unsetPlayerResultsEv +_ZN3sce2Np9CppWebApi7Matches2V125ResponseCompetitiveResult8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi7Matches2V125ResponseCompetitiveResultC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V125ResponseCompetitiveResultC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V125ResponseCompetitiveResultD1Ev +_ZN3sce2Np9CppWebApi7Matches2V125ResponseCompetitiveResultD2Ev +_ZN3sce2Np9CppWebApi7Matches2V126AdditionalStatisticFactory6createEPNS1_6Common10LibContextEPKcS9_PNS5_12IntrusivePtrINS3_19AdditionalStatisticEEE +_ZN3sce2Np9CppWebApi7Matches2V126AdditionalStatisticFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_19AdditionalStatisticEEE +_ZN3sce2Np9CppWebApi7Matches2V126AdditionalStatisticFactory7destroyEPNS3_19AdditionalStatisticE +_ZN3sce2Np9CppWebApi7Matches2V126CreateMatchResponseFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_19CreateMatchResponseEEE +_ZN3sce2Np9CppWebApi7Matches2V126CreateMatchResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_19CreateMatchResponseEEE +_ZN3sce2Np9CppWebApi7Matches2V126CreateMatchResponseFactory7destroyEPNS3_19CreateMatchResponseE +_ZN3sce2Np9CppWebApi7Matches2V126RequestInGameRosterFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_19RequestInGameRosterEEE +_ZN3sce2Np9CppWebApi7Matches2V126RequestInGameRosterFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_19RequestInGameRosterEEE +_ZN3sce2Np9CppWebApi7Matches2V126RequestInGameRosterFactory7destroyEPNS3_19RequestInGameRosterE +_ZN3sce2Np9CppWebApi7Matches2V126RequestMatchResultsFactory6createEPNS1_6Common10LibContextENS3_14ResultsVersionEPNS5_12IntrusivePtrINS3_19RequestMatchResultsEEE +_ZN3sce2Np9CppWebApi7Matches2V126RequestMatchResultsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_19RequestMatchResultsEEE +_ZN3sce2Np9CppWebApi7Matches2V126RequestMatchResultsFactory7destroyEPNS3_19RequestMatchResultsE +_ZN3sce2Np9CppWebApi7Matches2V126RequestTeamMemberStatistic11setPlayerIdEPKc +_ZN3sce2Np9CppWebApi7Matches2V126RequestTeamMemberStatistic8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi7Matches2V126RequestTeamMemberStatistic8getStatsEv +_ZN3sce2Np9CppWebApi7Matches2V126RequestTeamMemberStatistic8setStatsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_19AdditionalStatisticEEEEE +_ZN3sce2Np9CppWebApi7Matches2V126RequestTeamMemberStatisticC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V126RequestTeamMemberStatisticC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V126RequestTeamMemberStatisticD1Ev +_ZN3sce2Np9CppWebApi7Matches2V126RequestTeamMemberStatisticD2Ev +_ZN3sce2Np9CppWebApi7Matches2V126ResponseMatchPlayerFactory6createEPNS1_6Common10LibContextEPKcNS3_10PlayerTypeEbPNS5_12IntrusivePtrINS3_19ResponseMatchPlayerEEE +_ZN3sce2Np9CppWebApi7Matches2V126ResponseMatchPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_19ResponseMatchPlayerEEE +_ZN3sce2Np9CppWebApi7Matches2V126ResponseMatchPlayerFactory7destroyEPNS3_19ResponseMatchPlayerE +_ZN3sce2Np9CppWebApi7Matches2V126ResponseTeamResultsFactory6createEPNS1_6Common10LibContextEPKciPNS5_12IntrusivePtrINS3_19ResponseTeamResultsEEE +_ZN3sce2Np9CppWebApi7Matches2V126ResponseTeamResultsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_19ResponseTeamResultsEEE +_ZN3sce2Np9CppWebApi7Matches2V126ResponseTeamResultsFactory7destroyEPNS3_19ResponseTeamResultsE +_ZN3sce2Np9CppWebApi7Matches2V127ReportResultsRequestFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_19RequestMatchResultsEEEPNS8_INS3_20ReportResultsRequestEEE +_ZN3sce2Np9CppWebApi7Matches2V127ReportResultsRequestFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_20ReportResultsRequestEEE +_ZN3sce2Np9CppWebApi7Matches2V127ReportResultsRequestFactory7destroyEPNS3_20ReportResultsRequestE +_ZN3sce2Np9CppWebApi7Matches2V127RequestPlayerResultsFactory6createEPNS1_6Common10LibContextEPKciPNS5_12IntrusivePtrINS3_20RequestPlayerResultsEEE +_ZN3sce2Np9CppWebApi7Matches2V127RequestPlayerResultsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_20RequestPlayerResultsEEE +_ZN3sce2Np9CppWebApi7Matches2V127RequestPlayerResultsFactory7destroyEPNS3_20RequestPlayerResultsE +_ZN3sce2Np9CppWebApi7Matches2V127RequestTeamStatisticFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_20RequestTeamStatisticEEE +_ZN3sce2Np9CppWebApi7Matches2V127RequestTeamStatisticFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_20RequestTeamStatisticEEE +_ZN3sce2Np9CppWebApi7Matches2V127RequestTeamStatisticFactory7destroyEPNS3_20RequestTeamStatisticE +_ZN3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResults10unsetScoreEv +_ZN3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResults20getTeamMemberResultsEv +_ZN3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResults20setTeamMemberResultsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_23RequestTeamMemberResultEEEEE +_ZN3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResults22unsetTeamMemberResultsEv +_ZN3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResults7setRankERKi +_ZN3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResults8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResults8setScoreERKd +_ZN3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResults9setTeamIdEPKc +_ZN3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResultsC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResultsC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResultsD1Ev +_ZN3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResultsD2Ev +_ZN3sce2Np9CppWebApi7Matches2V127ResponseInGameRosterFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_20ResponseInGameRosterEEE +_ZN3sce2Np9CppWebApi7Matches2V127ResponseInGameRosterFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_20ResponseInGameRosterEEE +_ZN3sce2Np9CppWebApi7Matches2V127ResponseInGameRosterFactory7destroyEPNS3_20ResponseInGameRosterE +_ZN3sce2Np9CppWebApi7Matches2V127ResponseMatchResultsFactory6createEPNS1_6Common10LibContextENS3_14ResultsVersionEPNS5_12IntrusivePtrINS3_20ResponseMatchResultsEEE +_ZN3sce2Np9CppWebApi7Matches2V127ResponseMatchResultsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_20ResponseMatchResultsEEE +_ZN3sce2Np9CppWebApi7Matches2V127ResponseMatchResultsFactory7destroyEPNS3_20ResponseMatchResultsE +_ZN3sce2Np9CppWebApi7Matches2V127ResponseTeamMemberStatistic11setPlayerIdEPKc +_ZN3sce2Np9CppWebApi7Matches2V127ResponseTeamMemberStatistic8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi7Matches2V127ResponseTeamMemberStatistic8getStatsEv +_ZN3sce2Np9CppWebApi7Matches2V127ResponseTeamMemberStatistic8setStatsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_19AdditionalStatisticEEEEE +_ZN3sce2Np9CppWebApi7Matches2V127ResponseTeamMemberStatisticC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V127ResponseTeamMemberStatisticC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V127ResponseTeamMemberStatisticD1Ev +_ZN3sce2Np9CppWebApi7Matches2V127ResponseTeamMemberStatisticD2Ev +_ZN3sce2Np9CppWebApi7Matches2V128RequestTemporaryMatchResults10setVersionERKNS3_14ResultsVersionE +_ZN3sce2Np9CppWebApi7Matches2V128RequestTemporaryMatchResults20setCompetitiveResultERKNS1_6Common12IntrusivePtrINS3_33RequestTemporaryCompetitiveResultEEE +_ZN3sce2Np9CppWebApi7Matches2V128RequestTemporaryMatchResults8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi7Matches2V128RequestTemporaryMatchResultsC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V128RequestTemporaryMatchResultsC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V128RequestTemporaryMatchResultsD1Ev +_ZN3sce2Np9CppWebApi7Matches2V128RequestTemporaryMatchResultsD2Ev +_ZN3sce2Np9CppWebApi7Matches2V128ResponsePlayerResultsFactory6createEPNS1_6Common10LibContextEPKciPNS5_12IntrusivePtrINS3_21ResponsePlayerResultsEEE +_ZN3sce2Np9CppWebApi7Matches2V128ResponsePlayerResultsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_21ResponsePlayerResultsEEE +_ZN3sce2Np9CppWebApi7Matches2V128ResponsePlayerResultsFactory7destroyEPNS3_21ResponsePlayerResultsE +_ZN3sce2Np9CppWebApi7Matches2V128ResponseTeamStatisticFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_21ResponseTeamStatisticEEE +_ZN3sce2Np9CppWebApi7Matches2V128ResponseTeamStatisticFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_21ResponseTeamStatisticEEE +_ZN3sce2Np9CppWebApi7Matches2V128ResponseTeamStatisticFactory7destroyEPNS3_21ResponseTeamStatisticE +_ZN3sce2Np9CppWebApi7Matches2V129GetMatchDetailResponseFactory6createEPNS1_6Common10LibContextEPKcNS3_6StatusES9_NS3_12GroupingTypeENS3_15CompetitionTypeENS3_10ResultTypeEiPNS5_12IntrusivePtrINS3_22GetMatchDetailResponseEEE +_ZN3sce2Np9CppWebApi7Matches2V129GetMatchDetailResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_22GetMatchDetailResponseEEE +_ZN3sce2Np9CppWebApi7Matches2V129GetMatchDetailResponseFactory7destroyEPNS3_22GetMatchDetailResponseE +_ZN3sce2Np9CppWebApi7Matches2V129RequestMatchStatisticsFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_22RequestMatchStatisticsEEE +_ZN3sce2Np9CppWebApi7Matches2V129RequestMatchStatisticsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_22RequestMatchStatisticsEEE +_ZN3sce2Np9CppWebApi7Matches2V129RequestMatchStatisticsFactory7destroyEPNS3_22RequestMatchStatisticsE +_ZN3sce2Np9CppWebApi7Matches2V129RequestPlayerStatisticFactory6createEPNS1_6Common10LibContextEPKcRKNS5_6VectorINS5_12IntrusivePtrINS3_19AdditionalStatisticEEEEEPNSB_INS3_22RequestPlayerStatisticEEE +_ZN3sce2Np9CppWebApi7Matches2V129RequestPlayerStatisticFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_22RequestPlayerStatisticEEE +_ZN3sce2Np9CppWebApi7Matches2V129RequestPlayerStatisticFactory7destroyEPNS3_22RequestPlayerStatisticE +_ZN3sce2Np9CppWebApi7Matches2V130RequestTeamMemberResultFactory6createEPNS1_6Common10LibContextEPKcdPNS5_12IntrusivePtrINS3_23RequestTeamMemberResultEEE +_ZN3sce2Np9CppWebApi7Matches2V130RequestTeamMemberResultFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_23RequestTeamMemberResultEEE +_ZN3sce2Np9CppWebApi7Matches2V130RequestTeamMemberResultFactory7destroyEPNS3_23RequestTeamMemberResultE +_ZN3sce2Np9CppWebApi7Matches2V130ResponseMatchStatisticsFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_23ResponseMatchStatisticsEEE +_ZN3sce2Np9CppWebApi7Matches2V130ResponseMatchStatisticsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_23ResponseMatchStatisticsEEE +_ZN3sce2Np9CppWebApi7Matches2V130ResponseMatchStatisticsFactory7destroyEPNS3_23ResponseMatchStatisticsE +_ZN3sce2Np9CppWebApi7Matches2V130ResponsePlayerStatisticFactory6createEPNS1_6Common10LibContextEPKcRKNS5_6VectorINS5_12IntrusivePtrINS3_19AdditionalStatisticEEEEEPNSB_INS3_23ResponsePlayerStatisticEEE +_ZN3sce2Np9CppWebApi7Matches2V130ResponsePlayerStatisticFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_23ResponsePlayerStatisticEEE +_ZN3sce2Np9CppWebApi7Matches2V130ResponsePlayerStatisticFactory7destroyEPNS3_23ResponsePlayerStatisticE +_ZN3sce2Np9CppWebApi7Matches2V131RequestCompetitiveResultFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_24RequestCompetitiveResultEEE +_ZN3sce2Np9CppWebApi7Matches2V131RequestCompetitiveResultFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_24RequestCompetitiveResultEEE +_ZN3sce2Np9CppWebApi7Matches2V131RequestCompetitiveResultFactory7destroyEPNS3_24RequestCompetitiveResultE +_ZN3sce2Np9CppWebApi7Matches2V131ResponseTeamMemberResultFactory6createEPNS1_6Common10LibContextEPKcdPNS5_12IntrusivePtrINS3_24ResponseTeamMemberResultEEE +_ZN3sce2Np9CppWebApi7Matches2V131ResponseTeamMemberResultFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_24ResponseTeamMemberResultEEE +_ZN3sce2Np9CppWebApi7Matches2V131ResponseTeamMemberResultFactory7destroyEPNS3_24ResponseTeamMemberResultE +_ZN3sce2Np9CppWebApi7Matches2V131UpdateMatchDetailRequestFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_24UpdateMatchDetailRequestEEE +_ZN3sce2Np9CppWebApi7Matches2V131UpdateMatchDetailRequestFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_24UpdateMatchDetailRequestEEE +_ZN3sce2Np9CppWebApi7Matches2V131UpdateMatchDetailRequestFactory7destroyEPNS3_24UpdateMatchDetailRequestE +_ZN3sce2Np9CppWebApi7Matches2V131UpdateMatchStatusRequestFactory6createEPNS1_6Common10LibContextENS3_12UpdateStatusEPNS5_12IntrusivePtrINS3_24UpdateMatchStatusRequestEEE +_ZN3sce2Np9CppWebApi7Matches2V131UpdateMatchStatusRequestFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_24UpdateMatchStatusRequestEEE +_ZN3sce2Np9CppWebApi7Matches2V131UpdateMatchStatusRequestFactory7destroyEPNS3_24UpdateMatchStatusRequestE +_ZN3sce2Np9CppWebApi7Matches2V132ResponseCompetitiveResultFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_25ResponseCompetitiveResultEEE +_ZN3sce2Np9CppWebApi7Matches2V132ResponseCompetitiveResultFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_25ResponseCompetitiveResultEEE +_ZN3sce2Np9CppWebApi7Matches2V132ResponseCompetitiveResultFactory7destroyEPNS3_25ResponseCompetitiveResultE +_ZN3sce2Np9CppWebApi7Matches2V133RequestTeamMemberStatisticFactory6createEPNS1_6Common10LibContextEPKcRKNS5_6VectorINS5_12IntrusivePtrINS3_19AdditionalStatisticEEEEEPNSB_INS3_26RequestTeamMemberStatisticEEE +_ZN3sce2Np9CppWebApi7Matches2V133RequestTeamMemberStatisticFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_26RequestTeamMemberStatisticEEE +_ZN3sce2Np9CppWebApi7Matches2V133RequestTeamMemberStatisticFactory7destroyEPNS3_26RequestTeamMemberStatisticE +_ZN3sce2Np9CppWebApi7Matches2V133RequestTemporaryCompetitiveResult14getTeamResultsEv +_ZN3sce2Np9CppWebApi7Matches2V133RequestTemporaryCompetitiveResult14setTeamResultsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_27RequestTemporaryTeamResultsEEEEE +_ZN3sce2Np9CppWebApi7Matches2V133RequestTemporaryCompetitiveResult16getPlayerResultsEv +_ZN3sce2Np9CppWebApi7Matches2V133RequestTemporaryCompetitiveResult16setPlayerResultsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_20RequestPlayerResultsEEEEE +_ZN3sce2Np9CppWebApi7Matches2V133RequestTemporaryCompetitiveResult16unsetTeamResultsEv +_ZN3sce2Np9CppWebApi7Matches2V133RequestTemporaryCompetitiveResult18unsetPlayerResultsEv +_ZN3sce2Np9CppWebApi7Matches2V133RequestTemporaryCompetitiveResult8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi7Matches2V133RequestTemporaryCompetitiveResultC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V133RequestTemporaryCompetitiveResultC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V133RequestTemporaryCompetitiveResultD1Ev +_ZN3sce2Np9CppWebApi7Matches2V133RequestTemporaryCompetitiveResultD2Ev +_ZN3sce2Np9CppWebApi7Matches2V134RequestTemporaryTeamResultsFactory6createEPNS1_6Common10LibContextEPKciPNS5_12IntrusivePtrINS3_27RequestTemporaryTeamResultsEEE +_ZN3sce2Np9CppWebApi7Matches2V134RequestTemporaryTeamResultsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_27RequestTemporaryTeamResultsEEE +_ZN3sce2Np9CppWebApi7Matches2V134RequestTemporaryTeamResultsFactory7destroyEPNS3_27RequestTemporaryTeamResultsE +_ZN3sce2Np9CppWebApi7Matches2V134ResponseTeamMemberStatisticFactory6createEPNS1_6Common10LibContextEPKcRKNS5_6VectorINS5_12IntrusivePtrINS3_19AdditionalStatisticEEEEEPNSB_INS3_27ResponseTeamMemberStatisticEEE +_ZN3sce2Np9CppWebApi7Matches2V134ResponseTeamMemberStatisticFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_27ResponseTeamMemberStatisticEEE +_ZN3sce2Np9CppWebApi7Matches2V134ResponseTeamMemberStatisticFactory7destroyEPNS3_27ResponseTeamMemberStatisticE +_ZN3sce2Np9CppWebApi7Matches2V135RequestTemporaryMatchResultsFactory6createEPNS1_6Common10LibContextENS3_14ResultsVersionENS5_12IntrusivePtrINS3_33RequestTemporaryCompetitiveResultEEEPNS9_INS3_28RequestTemporaryMatchResultsEEE +_ZN3sce2Np9CppWebApi7Matches2V135RequestTemporaryMatchResultsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_28RequestTemporaryMatchResultsEEE +_ZN3sce2Np9CppWebApi7Matches2V135RequestTemporaryMatchResultsFactory7destroyEPNS3_28RequestTemporaryMatchResultsE +_ZN3sce2Np9CppWebApi7Matches2V140RequestTemporaryCompetitiveResultFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_33RequestTemporaryCompetitiveResultEEE +_ZN3sce2Np9CppWebApi7Matches2V140RequestTemporaryCompetitiveResultFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_33RequestTemporaryCompetitiveResultEEE +_ZN3sce2Np9CppWebApi7Matches2V140RequestTemporaryCompetitiveResultFactory7destroyEPNS3_33RequestTemporaryCompetitiveResultE +_ZN3sce2Np9CppWebApi7Matches2V14Task11getSubtasksEv +_ZN3sce2Np9CppWebApi7Matches2V14Task11setSubtasksERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_7SubtaskEEEEE +_ZN3sce2Np9CppWebApi7Matches2V14Task13setActivityIdEPKc +_ZN3sce2Np9CppWebApi7Matches2V14Task13unsetSubtasksEv +_ZN3sce2Np9CppWebApi7Matches2V14Task15setAvailabilityERKNS3_16TaskAvailabilityE +_ZN3sce2Np9CppWebApi7Matches2V14Task8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi7Matches2V14Task9setStatusERKNS3_10TaskStatusE +_ZN3sce2Np9CppWebApi7Matches2V14TaskC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V14TaskC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V14TaskD1Ev +_ZN3sce2Np9CppWebApi7Matches2V14TaskD2Ev +_ZN3sce2Np9CppWebApi7Matches2V15Error10setMessageEPKc +_ZN3sce2Np9CppWebApi7Matches2V15Error11unsetReasonEv +_ZN3sce2Np9CppWebApi7Matches2V15Error11unsetSourceEv +_ZN3sce2Np9CppWebApi7Matches2V15Error14setReferenceIdEPKc +_ZN3sce2Np9CppWebApi7Matches2V15Error16unsetReferenceIdEv +_ZN3sce2Np9CppWebApi7Matches2V15Error7setCodeERKi +_ZN3sce2Np9CppWebApi7Matches2V15Error8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi7Matches2V15Error9setReasonEPKc +_ZN3sce2Np9CppWebApi7Matches2V15Error9setSourceEPKc +_ZN3sce2Np9CppWebApi7Matches2V15ErrorC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V15ErrorC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V15ErrorD1Ev +_ZN3sce2Np9CppWebApi7Matches2V15ErrorD2Ev +_ZN3sce2Np9CppWebApi7Matches2V17Subtask13setActivityIdEPKc +_ZN3sce2Np9CppWebApi7Matches2V17Subtask15setAvailabilityERKNS3_19SubtaskAvailabilityE +_ZN3sce2Np9CppWebApi7Matches2V17Subtask8fromJsonERKNS_4Json5ValueE +_ZN3sce2Np9CppWebApi7Matches2V17Subtask9setStatusERKNS3_13SubtaskStatusE +_ZN3sce2Np9CppWebApi7Matches2V17SubtaskC1EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V17SubtaskC2EPNS1_6Common10LibContextE +_ZN3sce2Np9CppWebApi7Matches2V17SubtaskD1Ev +_ZN3sce2Np9CppWebApi7Matches2V17SubtaskD2Ev +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi10leaveMatchEiRKNS4_21ParameterToLeaveMatchERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi11createMatchEiRKNS4_22ParameterToCreateMatchERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_19CreateMatchResponseEEENSA_INS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi13reportResultsEiRKNS4_24ParameterToReportResultsERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi14getMatchDetailEiRKNS4_25ParameterToGetMatchDetailERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_22GetMatchDetailResponseEEENSA_INS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi17updateMatchDetailEiRKNS4_28ParameterToUpdateMatchDetailERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi17updateMatchStatusEiRKNS4_28ParameterToUpdateMatchStatusERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi20ParameterToJoinMatch10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_16JoinMatchRequestEEE +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi20ParameterToJoinMatch10setmatchIdEPKc +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi20ParameterToJoinMatch19setjoinMatchRequestENS1_6Common12IntrusivePtrINS3_16JoinMatchRequestEEE +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi20ParameterToJoinMatch9terminateEv +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi20ParameterToJoinMatchC1ERS5_ +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi20ParameterToJoinMatchC1Ev +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi20ParameterToJoinMatchC2ERS5_ +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi20ParameterToJoinMatchC2Ev +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi20ParameterToJoinMatchD1Ev +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi20ParameterToJoinMatchD2Ev +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi20ParameterToJoinMatchaSERS5_ +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi21ParameterToLeaveMatch10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_17LeaveMatchRequestEEE +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi21ParameterToLeaveMatch10setmatchIdEPKc +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi21ParameterToLeaveMatch20setleaveMatchRequestENS1_6Common12IntrusivePtrINS3_17LeaveMatchRequestEEE +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi21ParameterToLeaveMatch9terminateEv +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi21ParameterToLeaveMatchC1ERS5_ +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi21ParameterToLeaveMatchC1Ev +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi21ParameterToLeaveMatchC2ERS5_ +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi21ParameterToLeaveMatchC2Ev +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi21ParameterToLeaveMatchD1Ev +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi21ParameterToLeaveMatchD2Ev +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi21ParameterToLeaveMatchaSERS5_ +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi22ParameterToCreateMatch10initializeEPNS1_6Common10LibContextENS6_12IntrusivePtrINS3_18CreateMatchRequestEEE +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi22ParameterToCreateMatch21setcreateMatchRequestENS1_6Common12IntrusivePtrINS3_18CreateMatchRequestEEE +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi22ParameterToCreateMatch9terminateEv +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi22ParameterToCreateMatchC1ERS5_ +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi22ParameterToCreateMatchC1Ev +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi22ParameterToCreateMatchC2ERS5_ +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi22ParameterToCreateMatchC2Ev +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi22ParameterToCreateMatchD1Ev +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi22ParameterToCreateMatchD2Ev +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi22ParameterToCreateMatchaSERS5_ +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi24ParameterToReportResults10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_20ReportResultsRequestEEE +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi24ParameterToReportResults10setmatchIdEPKc +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi24ParameterToReportResults23setreportResultsRequestENS1_6Common12IntrusivePtrINS3_20ReportResultsRequestEEE +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi24ParameterToReportResults9terminateEv +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi24ParameterToReportResultsC1ERS5_ +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi24ParameterToReportResultsC1Ev +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi24ParameterToReportResultsC2ERS5_ +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi24ParameterToReportResultsC2Ev +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi24ParameterToReportResultsD1Ev +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi24ParameterToReportResultsD2Ev +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi24ParameterToReportResultsaSERS5_ +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetail10initializeEPNS1_6Common10LibContextEPKc +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetail10setmatchIdEPKc +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetail17setnpServiceLabelEi +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetail19unsetnpServiceLabelEv +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetail7setviewENS5_4ViewE +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetail9terminateEv +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetail9unsetviewEv +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetailC1ERS5_ +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetailC1Ev +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetailC2ERS5_ +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetailC2Ev +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetailD1Ev +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetailD2Ev +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetailaSERS5_ +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchDetail10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_24UpdateMatchDetailRequestEEE +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchDetail10setmatchIdEPKc +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchDetail27setupdateMatchDetailRequestENS1_6Common12IntrusivePtrINS3_24UpdateMatchDetailRequestEEE +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchDetail9terminateEv +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchDetailC1ERS5_ +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchDetailC1Ev +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchDetailC2ERS5_ +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchDetailC2Ev +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchDetailD1Ev +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchDetailD2Ev +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchDetailaSERS5_ +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchStatus10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_24UpdateMatchStatusRequestEEE +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchStatus10setmatchIdEPKc +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchStatus27setupdateMatchStatusRequestENS1_6Common12IntrusivePtrINS3_24UpdateMatchStatusRequestEEE +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchStatus9terminateEv +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchStatusC1ERS5_ +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchStatusC1Ev +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchStatusC2ERS5_ +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchStatusC2Ev +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchStatusD1Ev +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchStatusD2Ev +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchStatusaSERS5_ +_ZN3sce2Np9CppWebApi7Matches2V18MatchApi9joinMatchEiRKNS4_20ParameterToJoinMatchERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE +_ZN3sce2np10CancelLock3EndEPKciS3_ +_ZN3sce2np10CancelLock5BeginEPNS0_6HandleEPKciS5_ +_ZN3sce2np10CancelLockC1Ev +_ZN3sce2np10CancelLockC2Ev +_ZN3sce2np10CancelLockD1Ev +_ZN3sce2np10CancelLockD2Ev +_ZN3sce2np10Cancelable10IsCanceledEv +_ZN3sce2np10Cancelable10LockCancelEPKciS3_ +_ZN3sce2np10Cancelable11CheckCancelEPKciS3_ +_ZN3sce2np10Cancelable12IsCancelableEv +_ZN3sce2np10Cancelable12UnlockCancelEPKciS3_ +_ZN3sce2np10Cancelable13SetCancelableEb +_ZN3sce2np10Cancelable14SetupSubCancelEPS1_PKciS4_ +_ZN3sce2np10Cancelable15CheckCancelImplEPKciS3_ +_ZN3sce2np10Cancelable16CleanupSubCancelEPS1_ +_ZN3sce2np10Cancelable18SetCancelErrorCodeEi +_ZN3sce2np10Cancelable4InitEv +_ZN3sce2np10Cancelable6CancelEi +_ZN3sce2np10Cancelable6CancelEij +_ZN3sce2np10Cancelable7DestroyEv +_ZN3sce2np10CancelableC2Ev +_ZN3sce2np10CancelableD0Ev +_ZN3sce2np10CancelableD1Ev +_ZN3sce2np10CancelableD2Ev +_ZN3sce2np10EventQueue10ClearAbortEt +_ZN3sce2np10EventQueue10TryDequeueEPvm +_ZN3sce2np10EventQueue4InitEPKcmm +_ZN3sce2np10EventQueue4ctorEv +_ZN3sce2np10EventQueue4dtorEv +_ZN3sce2np10EventQueue5AbortEt +_ZN3sce2np10EventQueue7DequeueEPvmj +_ZN3sce2np10EventQueue7DestroyEv +_ZN3sce2np10EventQueue7EnqueueEPKvmj +_ZN3sce2np10EventQueueC1EP14SceNpAllocator +_ZN3sce2np10EventQueueC2EP14SceNpAllocator +_ZN3sce2np10EventQueueC2EP16SceNpAllocatorEx +_ZN3sce2np10EventQueueD0Ev +_ZN3sce2np10EventQueueD1Ev +_ZN3sce2np10EventQueueD2Ev +_ZN3sce2np10JsonNumber3SetEPKc +_ZN3sce2np10JsonNumber3SetEi +_ZN3sce2np10JsonNumber3SetEj +_ZN3sce2np10JsonNumber3SetEl +_ZN3sce2np10JsonNumber3SetEm +_ZN3sce2np10JsonNumber5ClearEv +_ZN3sce2np10JsonNumber6SetNumEPKc +_ZN3sce2np10JsonNumber6SetNumEi +_ZN3sce2np10JsonNumber6SetNumEj +_ZN3sce2np10JsonNumber6SetNumEl +_ZN3sce2np10JsonNumber6SetNumEm +_ZN3sce2np10JsonNumberC1EP14SceNpAllocator +_ZN3sce2np10JsonNumberC2EP14SceNpAllocator +_ZN3sce2np10JsonNumberD0Ev +_ZN3sce2np10JsonNumberD1Ev +_ZN3sce2np10JsonNumberD2Ev +_ZN3sce2np10JsonObject16DeleteFieldValueEPKc +_ZN3sce2np10JsonObject5ClearEv +_ZN3sce2np10JsonObject8SetFieldEPKcPKNS0_9JsonValueEPPS4_ +_ZN3sce2np10JsonObject8SetFieldEPKcPKS1_PPS1_ +_ZN3sce2np10JsonObject8SetFieldEPKcS3_PPNS0_10JsonStringE +_ZN3sce2np10JsonObject8SetFieldEPKcbPPNS0_8JsonBoolE +_ZN3sce2np10JsonObject8SetFieldEPKciPPNS0_10JsonNumberE +_ZN3sce2np10JsonObject8SetFieldEPKcjPPNS0_10JsonNumberE +_ZN3sce2np10JsonObject8SetFieldEPKclPPNS0_10JsonNumberE +_ZN3sce2np10JsonObject8SetFieldEPKcmPPNS0_10JsonNumberE +_ZN3sce2np10JsonObjectC1EP14SceNpAllocator +_ZN3sce2np10JsonObjectC2EP14SceNpAllocator +_ZN3sce2np10JsonObjectD0Ev +_ZN3sce2np10JsonObjectD1Ev +_ZN3sce2np10JsonObjectD2Ev +_ZN3sce2np10JsonParser17JsonParseCallbackEP13JsonParseInfoijjPKcPK12JsonValueElmiPv +_ZN3sce2np10JsonParser17jsonParseCallbackEP13JsonParseInfoijjPKcPK12JsonValueElmi +_ZN3sce2np10JsonParser4InitEPK7JsonDefPNS1_12EventHandlerE +_ZN3sce2np10JsonParser5ParseEPKcm +_ZN3sce2np10JsonParser5ParseEPNS0_6HandleEPNS0_12StreamReaderE +_ZN3sce2np10JsonParserC1EP14SceNpAllocator +_ZN3sce2np10JsonParserC1Ev +_ZN3sce2np10JsonParserC2EP14SceNpAllocator +_ZN3sce2np10JsonParserC2EP16SceNpAllocatorEx +_ZN3sce2np10JsonParserC2Ev +_ZN3sce2np10JsonParserD0Ev +_ZN3sce2np10JsonParserD1Ev +_ZN3sce2np10JsonParserD2Ev +_ZN3sce2np10JsonString3SetEPKc +_ZN3sce2np10JsonString5ClearEv +_ZN3sce2np10JsonString6SetStrEPKc +_ZN3sce2np10JsonStringC1EP14SceNpAllocator +_ZN3sce2np10JsonStringC2EP14SceNpAllocator +_ZN3sce2np10JsonStringD0Ev +_ZN3sce2np10JsonStringD1Ev +_ZN3sce2np10JsonStringD2Ev +_ZN3sce2np10MemoryFile4ReadEPNS0_6HandleEPvmPm +_ZN3sce2np10MemoryFile4SyncEv +_ZN3sce2np10MemoryFile5CloseEv +_ZN3sce2np10MemoryFile5WriteEPNS0_6HandleEPKvmPm +_ZN3sce2np10MemoryFile8TruncateEl +_ZN3sce2np10MemoryFileC2EP16SceNpAllocatorEx +_ZN3sce2np10MemoryFileD0Ev +_ZN3sce2np10MemoryFileD1Ev +_ZN3sce2np10MemoryFileD2Ev +_ZN3sce2np10NpOnlineId13GetNpOnlineIdERKNS0_4UserEP13SceNpOnlineId +_ZN3sce2np10NpOnlineId13GetNpOnlineIdERKNS0_4UserEPS1_ +_ZN3sce2np10NpOnlineId13GetNpOnlineIdEiP13SceNpOnlineId +_ZN3sce2np10NpOnlineId13GetNpOnlineIdEiPS1_ +_ZN3sce2np10NpOnlineId16SetNpOnlineIdStrEPKc +_ZN3sce2np10NpOnlineId5ClearEv +_ZN3sce2np10NpOnlineIdC1ERK13SceNpOnlineId +_ZN3sce2np10NpOnlineIdC1ERKS1_ +_ZN3sce2np10NpOnlineIdC1Ev +_ZN3sce2np10NpOnlineIdC2ERK13SceNpOnlineId +_ZN3sce2np10NpOnlineIdC2ERKS1_ +_ZN3sce2np10NpOnlineIdC2Ev +_ZN3sce2np10NpOnlineIdD0Ev +_ZN3sce2np10NpOnlineIdD1Ev +_ZN3sce2np10NpOnlineIdD2Ev +_ZN3sce2np11NpHttpTrans13GetResultCodeEPNS0_6HandleE +_ZN3sce2np11NpHttpTrans21SetRequestAccessTokenEPNS0_6HandleE +_ZN3sce2np11NpHttpTrans24BuildAuthorizationHeaderERKNS0_13NpAccessTokenEPcm +_ZN3sce2np11NpHttpTransC1ERNS0_12NpHttpClientERKNS0_10NpOnlineIdE +_ZN3sce2np11NpHttpTransC2EP16SceNpAllocatorEx +_ZN3sce2np11NpHttpTransC2ERNS0_12NpHttpClientERKNS0_10NpOnlineIdE +_ZN3sce2np11NpHttpTransD0Ev +_ZN3sce2np11NpHttpTransD1Ev +_ZN3sce2np11NpHttpTransD2Ev +_ZN3sce2np12HttpTemplate19SetAuthInfoCallbackEPFii15SceHttpAuthTypePKcPcS5_iPPhPmPiPvESA_ +_ZN3sce2np12HttpTemplate4InitEiPKcib +_ZN3sce2np12HttpTemplate7DestroyEv +_ZN3sce2np12HttpTemplateC1Ev +_ZN3sce2np12HttpTemplateC2Ev +_ZN3sce2np12HttpTemplateD0Ev +_ZN3sce2np12HttpTemplateD1Ev +_ZN3sce2np12HttpTemplateD2Ev +_ZN3sce2np12NpHttpClient4InitEi +_ZN3sce2np12NpHttpClient4InitEii +_ZN3sce2np12NpHttpClient7DestroyEv +_ZN3sce2np12NpHttpClientC1EP16SceNpAllocatorEx +_ZN3sce2np12NpHttpClientC2EP16SceNpAllocatorEx +_ZN3sce2np12NpHttpClientD0Ev +_ZN3sce2np12NpHttpClientD1Ev +_ZN3sce2np12NpHttpClientD2Ev +_ZN3sce2np12NpTitleToken5ClearEv +_ZN3sce2np12NpTitleTokenC1ERKS1_ +_ZN3sce2np12NpTitleTokenC1Ev +_ZN3sce2np12NpTitleTokenC2ERKS1_ +_ZN3sce2np12NpTitleTokenC2Ev +_ZN3sce2np12NpTitleTokenD0Ev +_ZN3sce2np12NpTitleTokenD1Ev +_ZN3sce2np12NpTitleTokenD2Ev +_ZN3sce2np12StreamBufferixEi +_ZN3sce2np12StreamReader4ReadEPNS0_6HandleEPNS0_9StreamCtxEPvmPm +_ZN3sce2np12StreamReader7ReadAllEPNS0_6HandleEPNS0_9StreamCtxEPvmPm +_ZN3sce2np12StreamReader7ReadAllEPNS0_6HandleEPvmPm +_ZN3sce2np12StreamReader8ReadDataEPNS0_6HandleEPNS0_9StreamCtxEPvmPm +_ZN3sce2np12StreamReader8ReadDataEPNS0_6HandleEPvmPm +_ZN3sce2np12StreamReader8SkipDataEPNS0_6HandleEPNS0_9StreamCtxElPl +_ZN3sce2np12StreamReader8SkipDataEPNS0_6HandleElPl +_ZN3sce2np12StreamWriter15WriteFilledDataEPNS0_6HandleEPNS0_9StreamCtxEcl +_ZN3sce2np12StreamWriter15WriteFilledDataEPNS0_6HandleEcl +_ZN3sce2np12StreamWriter5WriteEPNS0_6HandleEPNS0_9StreamCtxEPKvmPm +_ZN3sce2np12StreamWriter9WriteDataEPNS0_6HandleEPKvmPm +_ZN3sce2np12StreamWriter9WriteDataEPNS0_6HandleEPNS0_9StreamCtxEPKvmPm +_ZN3sce2np12WorkerThread10ThreadMainEv +_ZN3sce2np12WorkerThreadC1EPNS0_9WorkQueueE +_ZN3sce2np12WorkerThreadC2EPNS0_9WorkQueueE +_ZN3sce2np12WorkerThreadD0Ev +_ZN3sce2np12WorkerThreadD1Ev +_ZN3sce2np12WorkerThreadD2Ev +_ZN3sce2np13JsonArrayImpl5ClearEv +_ZN3sce2np13JsonArrayImpl7AddItemEPKNS0_9JsonValueE +_ZN3sce2np13JsonArrayImpl9SetParentEPNS0_9JsonValueE +_ZN3sce2np13JsonArrayImplC1EP14SceNpAllocator +_ZN3sce2np13JsonArrayImplC2EP14SceNpAllocator +_ZN3sce2np13JsonArrayImplD0Ev +_ZN3sce2np13JsonArrayImplD1Ev +_ZN3sce2np13JsonArrayImplD2Ev +_ZN3sce2np13JsonDocParser10initParserEv +_ZN3sce2np13JsonDocParser10onEndArrayEjj +_ZN3sce2np13JsonDocParser11createValueEPNS0_9JsonValueENS0_10JsonParser9ValueTypeEPKc +_ZN3sce2np13JsonDocParser11onEndObjectEjj +_ZN3sce2np13JsonDocParser12onArrayValueEjjiNS0_10JsonParser9ValueTypeEPKc +_ZN3sce2np13JsonDocParser12onObjectNameEjjPKc +_ZN3sce2np13JsonDocParser12onStartArrayEjj +_ZN3sce2np13JsonDocParser13onObjectValueEjjPKcNS0_10JsonParser9ValueTypeES3_ +_ZN3sce2np13JsonDocParser13onStartObjectEjj +_ZN3sce2np13JsonDocParser4InitEPK7JsonDef +_ZN3sce2np13JsonDocParser5ParseEPKcm +_ZN3sce2np13JsonDocParser5ParseEPNS0_6HandleEPNS0_12StreamReaderE +_ZN3sce2np13JsonDocParser8addValueEPKNS0_9JsonValueEPPS2_ +_ZN3sce2np13JsonDocParser9GetResultEPPNS0_10JsonObjectE +_ZN3sce2np13JsonDocParser9GetResultEPPNS0_9JsonValueE +_ZN3sce2np13JsonDocParserC1EP14SceNpAllocator +_ZN3sce2np13JsonDocParserC1EP14SceNpAllocatorPK7JsonDef +_ZN3sce2np13JsonDocParserC2EP14SceNpAllocator +_ZN3sce2np13JsonDocParserC2EP14SceNpAllocatorPK7JsonDef +_ZN3sce2np13JsonDocParserC2EP16SceNpAllocatorExPK7JsonDef +_ZN3sce2np13JsonDocParserD0Ev +_ZN3sce2np13JsonDocParserD1Ev +_ZN3sce2np13JsonDocParserD2Ev +_ZN3sce2np13NpAccessToken14GetAccessTokenEPNS0_6HandleERKNS0_10NpOnlineIdEPS1_ +_ZN3sce2np13NpAccessToken14GetAccessTokenEPNS0_6HandleERKNS0_4UserEPS1_ +_ZN3sce2np13NpAccessToken5ClearEv +_ZN3sce2np13NpAccessTokenC1ERK16SceNpAccessToken +_ZN3sce2np13NpAccessTokenC1ERKS1_ +_ZN3sce2np13NpAccessTokenC1Ev +_ZN3sce2np13NpAccessTokenC2ERK16SceNpAccessToken +_ZN3sce2np13NpAccessTokenC2ERKS1_ +_ZN3sce2np13NpAccessTokenC2Ev +_ZN3sce2np13NpAccessTokenD0Ev +_ZN3sce2np13NpAccessTokenD1Ev +_ZN3sce2np13NpAccessTokenD2Ev +_ZN3sce2np13NpTitleSecret5ClearEv +_ZN3sce2np13NpTitleSecretC1EPKvm +_ZN3sce2np13NpTitleSecretC1ERK16SceNpTitleSecret +_ZN3sce2np13NpTitleSecretC1ERKS1_ +_ZN3sce2np13NpTitleSecretC1Ev +_ZN3sce2np13NpTitleSecretC2EPKvm +_ZN3sce2np13NpTitleSecretC2ERK16SceNpTitleSecret +_ZN3sce2np13NpTitleSecretC2ERKS1_ +_ZN3sce2np13NpTitleSecretC2Ev +_ZN3sce2np13NpTitleSecretD0Ev +_ZN3sce2np13NpTitleSecretD1Ev +_ZN3sce2np13NpTitleSecretD2Ev +_ZN3sce2np13RingBufMemory4InitEm +_ZN3sce2np13RingBufMemory4ctorEv +_ZN3sce2np13RingBufMemory4dtorEv +_ZN3sce2np13RingBufMemory6ExpandEm +_ZN3sce2np13RingBufMemory6IsInitEv +_ZN3sce2np13RingBufMemory7DestroyEv +_ZN3sce2np13RingBufMemoryC1EP14SceNpAllocator +_ZN3sce2np13RingBufMemoryC2EP14SceNpAllocator +_ZN3sce2np13RingBufMemoryC2EP16SceNpAllocatorEx +_ZN3sce2np13RingBufMemoryD0Ev +_ZN3sce2np13RingBufMemoryD1Ev +_ZN3sce2np13RingBufMemoryD2Ev +_ZN3sce2np14CalloutContext4InitEPKNS1_5ParamE +_ZN3sce2np14CalloutContext4InitEPKcimm +_ZN3sce2np14CalloutContext7DestroyEv +_ZN3sce2np14CalloutContextC1Ev +_ZN3sce2np14CalloutContextC2Ev +_ZN3sce2np14CalloutContextD0Ev +_ZN3sce2np14CalloutContextD1Ev +_ZN3sce2np14CalloutContextD2Ev +_ZN3sce2np14HttpConnection4InitEiPKcS3_t +_ZN3sce2np14HttpConnection7CompareEiPKcS3_t +_ZN3sce2np14HttpConnection7DestroyEv +_ZN3sce2np14HttpConnectionC1EP14SceNpAllocator +_ZN3sce2np14HttpConnectionC1EP16SceNpAllocatorEx +_ZN3sce2np14HttpConnectionC2EP14SceNpAllocator +_ZN3sce2np14HttpConnectionC2EP16SceNpAllocatorEx +_ZN3sce2np14HttpConnectionD0Ev +_ZN3sce2np14HttpConnectionD1Ev +_ZN3sce2np14HttpConnectionD2Ev +_ZN3sce2np14JsonDocBuilder10GetBufSizeEv +_ZN3sce2np14JsonDocBuilder12BuildBufSizeEv +_ZN3sce2np14JsonDocBuilder16EscapeJsonStringEPKcPcmPm +_ZN3sce2np14JsonDocBuilder23EscapeJsonStringBufSizeEPKc +_ZN3sce2np14JsonDocBuilder27GetEscapedJsonStringBufSizeEPKc +_ZN3sce2np14JsonDocBuilder5BuildEPcmPm +_ZN3sce2np14JsonDocBuilderC1EPKNS0_9JsonValueE +_ZN3sce2np14JsonDocBuilderC1ERKNS0_9JsonValueE +_ZN3sce2np14JsonDocBuilderC2EPKNS0_9JsonValueE +_ZN3sce2np14JsonDocBuilderC2ERKNS0_9JsonValueE +_ZN3sce2np14JsonDocBuilderD0Ev +_ZN3sce2np14JsonDocBuilderD1Ev +_ZN3sce2np14JsonDocBuilderD2Ev +_ZN3sce2np14JsonNumberImpl3SetEPKc +_ZN3sce2np14JsonNumberImpl3SetEi +_ZN3sce2np14JsonNumberImpl3SetEj +_ZN3sce2np14JsonNumberImpl3SetEl +_ZN3sce2np14JsonNumberImpl3SetEm +_ZN3sce2np14JsonNumberImpl5ClearEv +_ZN3sce2np14JsonNumberImplC1EP14SceNpAllocator +_ZN3sce2np14JsonNumberImplC2EP14SceNpAllocator +_ZN3sce2np14JsonNumberImplD0Ev +_ZN3sce2np14JsonNumberImplD1Ev +_ZN3sce2np14JsonNumberImplD2Ev +_ZN3sce2np14JsonObjectImpl5ClearEv +_ZN3sce2np14JsonObjectImpl8SetFieldEPKcPKNS0_9JsonValueE +_ZN3sce2np14JsonObjectImpl9SetParentEPNS0_9JsonValueE +_ZN3sce2np14JsonObjectImplC1EP14SceNpAllocator +_ZN3sce2np14JsonObjectImplC2EP14SceNpAllocator +_ZN3sce2np14JsonObjectImplD0Ev +_ZN3sce2np14JsonObjectImplD1Ev +_ZN3sce2np14JsonObjectImplD2Ev +_ZN3sce2np14JsonStringImpl3SetEPKc +_ZN3sce2np14JsonStringImpl5ClearEv +_ZN3sce2np14JsonStringImplC1EP14SceNpAllocator +_ZN3sce2np14JsonStringImplC2EP14SceNpAllocator +_ZN3sce2np14JsonStringImplD0Ev +_ZN3sce2np14JsonStringImplD1Ev +_ZN3sce2np14JsonStringImplD2Ev +_ZN3sce2np15CancelableScope3EndEiPKciS3_ +_ZN3sce2np15CancelableScope5BeginEPNS0_6HandleEPKciS5_ +_ZN3sce2np15CancelableScopeC2Ev +_ZN3sce2np15CancelableScopeD0Ev +_ZN3sce2np15CancelableScopeD1Ev +_ZN3sce2np15CancelableScopeD2Ev +_ZN3sce2np16StreamReadBuffer7IsEmptyEv +_ZN3sce2np16StreamReadBuffer8AllocBufEm +_ZN3sce2np16StreamReadBufferC2EP16SceNpAllocatorEx +_ZN3sce2np16StreamReadBufferD1Ev +_ZN3sce2np16StreamReadBufferD2Ev +_ZN3sce2np16StreamReadBufferixEi +_ZN3sce2np18HttpConnectionPool10UnregisterEPNS0_14HttpConnectionE +_ZN3sce2np18HttpConnectionPool12FindByConnIdEi +_ZN3sce2np18HttpConnectionPool13FindRemovableEv +_ZN3sce2np18HttpConnectionPool13GetConnectionEPNS0_12HttpTemplateEPKcPi +_ZN3sce2np18HttpConnectionPool13GetConnectionEPNS0_12HttpTemplateEPKcS5_tPi +_ZN3sce2np18HttpConnectionPool13GetConnectionERKNS0_12HttpTemplateEPKcPi +_ZN3sce2np18HttpConnectionPool13GetConnectionERKNS0_12HttpTemplateEPKcS6_tPi +_ZN3sce2np18HttpConnectionPool13InvalidateAllEv +_ZN3sce2np18HttpConnectionPool17ReleaseConnectionEi +_ZN3sce2np18HttpConnectionPool18SetConnectionErrorEii +_ZN3sce2np18HttpConnectionPool4InitEi +_ZN3sce2np18HttpConnectionPool6IsFullEv +_ZN3sce2np18HttpConnectionPool7DestroyEv +_ZN3sce2np18HttpConnectionPool8FindIdleEiPKcS3_t +_ZN3sce2np18HttpConnectionPool8RegisterEPNS0_14HttpConnectionE +_ZN3sce2np18HttpConnectionPoolC1EP14SceNpAllocator +_ZN3sce2np18HttpConnectionPoolC1EP16SceNpAllocatorEx +_ZN3sce2np18HttpConnectionPoolC2EP14SceNpAllocator +_ZN3sce2np18HttpConnectionPoolC2EP16SceNpAllocatorEx +_ZN3sce2np18HttpConnectionPoolD0Ev +_ZN3sce2np18HttpConnectionPoolD1Ev +_ZN3sce2np18HttpConnectionPoolD2Ev +_ZN3sce2np18MemoryStreamReader4ReadEPNS0_6HandleEPvmPm +_ZN3sce2np18MemoryStreamReaderC1EPKvm +_ZN3sce2np18MemoryStreamReaderC2EPKvm +_ZN3sce2np18MemoryStreamReaderD0Ev +_ZN3sce2np18MemoryStreamReaderD1Ev +_ZN3sce2np18MemoryStreamReaderD2Ev +_ZN3sce2np18MemoryStreamWriter5WriteEPNS0_6HandleEPKvmPm +_ZN3sce2np18MemoryStreamWriterC1EPvm +_ZN3sce2np18MemoryStreamWriterC2EPvm +_ZN3sce2np18MemoryStreamWriterD0Ev +_ZN3sce2np18MemoryStreamWriterD1Ev +_ZN3sce2np18MemoryStreamWriterD2Ev +_ZN3sce2np20BufferedStreamReader4ReadEPNS0_6HandleEPvmPm +_ZN3sce2np20BufferedStreamReader5CloseEv +_ZN3sce2np20BufferedStreamReaderC2EP16SceNpAllocatorEx +_ZN3sce2np20BufferedStreamReaderD0Ev +_ZN3sce2np20BufferedStreamReaderD1Ev +_ZN3sce2np20BufferedStreamReaderD2Ev +_ZN3sce2np3ipc10IpmiClient10DisconnectEv +_ZN3sce2np3ipc10IpmiClient11IsConnectedEv +_ZN3sce2np3ipc10IpmiClient16invokeSyncMethodEjPKvmPvPmm +_ZN3sce2np3ipc10IpmiClient4InitEPKNS2_6ConfigE +_ZN3sce2np3ipc10IpmiClient4ctorEv +_ZN3sce2np3ipc10IpmiClient4dtorEv +_ZN3sce2np3ipc10IpmiClient7ConnectEPKvm +_ZN3sce2np3ipc10IpmiClient7DestroyEv +_ZN3sce2np3ipc10IpmiClientC1Ev +_ZN3sce2np3ipc10IpmiClientC2Ev +_ZN3sce2np3ipc10IpmiClientD0Ev +_ZN3sce2np3ipc10IpmiClientD1Ev +_ZN3sce2np3ipc10IpmiClientD2Ev +_ZN3sce2np3ipc13ServiceClientC1EPNS1_17ServiceIpmiClientEPKNS1_17ServiceClientInfoE +_ZN3sce2np3ipc13ServiceClientC2EPNS1_17ServiceIpmiClientEPKNS1_17ServiceClientInfoE +_ZN3sce2np3ipc14service_client10EndRequestEii +_ZN3sce2np3ipc14service_client11InitServiceEi +_ZN3sce2np3ipc14service_client11TermServiceEi +_ZN3sce2np3ipc14service_client11WaitRequestEiij +_ZN3sce2np3ipc14service_client12AbortRequestEii +_ZN3sce2np3ipc14service_client12BeginRequestEii +_ZN3sce2np3ipc14service_client13CreateRequestEimPKvPi +_ZN3sce2np3ipc14service_client13DeleteRequestEii +_ZN3sce2np3ipc14service_client13GetIpmiClientEv +_ZN3sce2np3ipc14service_client13PollEventFlagEijmjPm +_ZN3sce2np3ipc14service_client14PollEventQueueEiPvm +_ZN3sce2np3ipc17ServiceIpmiClient10DisconnectEv +_ZN3sce2np3ipc17ServiceIpmiClient10EndRequestEii +_ZN3sce2np3ipc17ServiceIpmiClient11InitServiceEi +_ZN3sce2np3ipc17ServiceIpmiClient11TermServiceEi +_ZN3sce2np3ipc17ServiceIpmiClient11WaitRequestEiij +_ZN3sce2np3ipc17ServiceIpmiClient11findServiceEi +_ZN3sce2np3ipc17ServiceIpmiClient12AbortRequestEii +_ZN3sce2np3ipc17ServiceIpmiClient12BeginRequestEii +_ZN3sce2np3ipc17ServiceIpmiClient13CreateRequestEPiiPKvm +_ZN3sce2np3ipc17ServiceIpmiClient13DeleteRequestEii +_ZN3sce2np3ipc17ServiceIpmiClient13PollEventFlagEijmjPm +_ZN3sce2np3ipc17ServiceIpmiClient13WaitEventFlagEijmjPmj +_ZN3sce2np3ipc17ServiceIpmiClient14PollEventQueueEiPvm +_ZN3sce2np3ipc17ServiceIpmiClient15CancelEventFlagEijm +_ZN3sce2np3ipc17ServiceIpmiClient15RegisterServiceEPKNS1_17ServiceClientInfoE +_ZN3sce2np3ipc17ServiceIpmiClient16RegisterServicesEPKNS1_17ServiceClientInfoE +_ZN3sce2np3ipc17ServiceIpmiClient17UnregisterServiceEi +_ZN3sce2np3ipc17ServiceIpmiClient17invokeInitServiceEi +_ZN3sce2np3ipc17ServiceIpmiClient17invokeTermServiceEi +_ZN3sce2np3ipc17ServiceIpmiClient18EndRequestForAsyncEii +_ZN3sce2np3ipc17ServiceIpmiClient19WaitRequestForAsyncEiij +_ZN3sce2np3ipc17ServiceIpmiClient20AbortRequestForAsyncEii +_ZN3sce2np3ipc17ServiceIpmiClient20BeginRequestForAsyncEiiPN4IPMI6Client12EventNotifeeE +_ZN3sce2np3ipc17ServiceIpmiClient21CreateRequestForAsyncEPiiPKvm +_ZN3sce2np3ipc17ServiceIpmiClient21DeleteRequestForAsyncEii +_ZN3sce2np3ipc17ServiceIpmiClient4InitEPNS2_6ConfigE +_ZN3sce2np3ipc17ServiceIpmiClient4ctorEv +_ZN3sce2np3ipc17ServiceIpmiClient4dtorEv +_ZN3sce2np3ipc17ServiceIpmiClient7ConnectEPKvm +_ZN3sce2np3ipc17ServiceIpmiClient7DestroyEv +_ZN3sce2np3ipc17ServiceIpmiClientC1Ev +_ZN3sce2np3ipc17ServiceIpmiClientC2Ev +_ZN3sce2np3ipc17ServiceIpmiClientD0Ev +_ZN3sce2np3ipc17ServiceIpmiClientD1Ev +_ZN3sce2np3ipc17ServiceIpmiClientD2Ev +_ZN3sce2np4Cond4InitEPKcPNS0_5MutexE +_ZN3sce2np4Cond4WaitEj +_ZN3sce2np4Cond4ctorEv +_ZN3sce2np4Cond4dtorEv +_ZN3sce2np4Cond6SignalEv +_ZN3sce2np4Cond7DestroyEv +_ZN3sce2np4Cond9SignalAllEv +_ZN3sce2np4CondC1Ev +_ZN3sce2np4CondC2Ev +_ZN3sce2np4CondD0Ev +_ZN3sce2np4CondD1Ev +_ZN3sce2np4CondD2Ev +_ZN3sce2np4NpId5ClearEv +_ZN3sce2np4NpIdC1ERK7SceNpId +_ZN3sce2np4NpIdC1ERKS1_ +_ZN3sce2np4NpIdC1Ev +_ZN3sce2np4NpIdC2ERK7SceNpId +_ZN3sce2np4NpIdC2ERKS1_ +_ZN3sce2np4NpIdC2Ev +_ZN3sce2np4NpIdD0Ev +_ZN3sce2np4NpIdD1Ev +_ZN3sce2np4NpIdD2Ev +_ZN3sce2np4Path11BuildAppendEPcmcPKcm +_ZN3sce2np4Path12AddDelimiterEPcmc +_ZN3sce2np4Path5ClearEv +_ZN3sce2np4Path6SetStrEPKcm +_ZN3sce2np4PathD0Ev +_ZN3sce2np4PathD1Ev +_ZN3sce2np4PathD2Ev +_ZN3sce2np4Time10AddMinutesEl +_ZN3sce2np4Time10AddSecondsEl +_ZN3sce2np4Time12GetUserClockEPS1_ +_ZN3sce2np4Time15AddMicroSecondsEl +_ZN3sce2np4Time15GetNetworkClockEPS1_ +_ZN3sce2np4Time20GetDebugNetworkClockEPS1_ +_ZN3sce2np4Time7AddDaysEl +_ZN3sce2np4Time8AddHoursEl +_ZN3sce2np4TimeplERK10SceRtcTick +_ZN3sce2np4TimeplERKS1_ +_ZN3sce2np4User5ClearEv +_ZN3sce2np4User7GetUserEiPS1_ +_ZN3sce2np4UserC1ERKS1_ +_ZN3sce2np4UserC1Ei +_ZN3sce2np4UserC1Ev +_ZN3sce2np4UserC2ERKS1_ +_ZN3sce2np4UserC2Ei +_ZN3sce2np4UserC2Ev +_ZN3sce2np4UserD0Ev +_ZN3sce2np4UserD1Ev +_ZN3sce2np4UserD2Ev +_ZN3sce2np5Mutex4InitEPKcj +_ZN3sce2np5Mutex4LockEv +_ZN3sce2np5Mutex4ctorEv +_ZN3sce2np5Mutex4dtorEv +_ZN3sce2np5Mutex6UnlockEv +_ZN3sce2np5Mutex7DestroyEv +_ZN3sce2np5Mutex7TryLockEv +_ZN3sce2np5MutexC1Ev +_ZN3sce2np5MutexC2Ev +_ZN3sce2np5MutexD0Ev +_ZN3sce2np5MutexD1Ev +_ZN3sce2np5MutexD2Ev +_ZN3sce2np5NpEnv8GetNpEnvEPS1_ +_ZN3sce2np6Handle10CancelImplEi +_ZN3sce2np6Handle4InitEv +_ZN3sce2np6Handle7DestroyEv +_ZN3sce2np6HandleC1Ev +_ZN3sce2np6HandleC2Ev +_ZN3sce2np6HandleD0Ev +_ZN3sce2np6HandleD1Ev +_ZN3sce2np6HandleD2Ev +_ZN3sce2np6Object12GetAllocatorEv +_ZN3sce2np6ObjectdaEPv +_ZN3sce2np6ObjectdaEPvR14SceNpAllocator +_ZN3sce2np6ObjectdaEPvR16SceNpAllocatorEx +_ZN3sce2np6ObjectdlEPv +_ZN3sce2np6ObjectdlEPvR14SceNpAllocator +_ZN3sce2np6ObjectdlEPvR16SceNpAllocatorEx +_ZN3sce2np6ObjectnaEmR14SceNpAllocator +_ZN3sce2np6ObjectnaEmR16SceNpAllocatorEx +_ZN3sce2np6ObjectnwEmR14SceNpAllocator +_ZN3sce2np6ObjectnwEmR16SceNpAllocatorEx +_ZN3sce2np6Thread12DoThreadMainEv +_ZN3sce2np6Thread4InitEPKNS1_5ParamE +_ZN3sce2np6Thread4InitEPKcimm +_ZN3sce2np6Thread4JoinEPi +_ZN3sce2np6Thread4ctorEv +_ZN3sce2np6Thread4dtorEv +_ZN3sce2np6Thread5StartEv +_ZN3sce2np6Thread7DestroyEv +_ZN3sce2np6Thread9EntryFuncEPv +_ZN3sce2np6Thread9GetResultEv +_ZN3sce2np6Thread9IsRunningEv +_ZN3sce2np6ThreadC2Ev +_ZN3sce2np6ThreadD0Ev +_ZN3sce2np6ThreadD1Ev +_ZN3sce2np6ThreadD2Ev +_ZN3sce2np7Callout10IsTimedoutEv +_ZN3sce2np7Callout11CalloutFuncEPv +_ZN3sce2np7Callout4StopEv +_ZN3sce2np7Callout5StartEjPNS1_7HandlerE +_ZN3sce2np7Callout5StartEmPNS1_7HandlerE +_ZN3sce2np7Callout9IsStartedEv +_ZN3sce2np7CalloutC1EPNS0_14CalloutContextE +_ZN3sce2np7CalloutC2EPNS0_14CalloutContextE +_ZN3sce2np7CalloutD0Ev +_ZN3sce2np7CalloutD1Ev +_ZN3sce2np7CalloutD2Ev +_ZN3sce2np7HttpUri5BuildEPKS1_PcmPmj +_ZN3sce2np7HttpUri5ParseEPS1_PKc +_ZN3sce2np7HttpUri6ConcatEPKcS3_PcmPm +_ZN3sce2np7HttpUriC1EP14SceNpAllocator +_ZN3sce2np7HttpUriC1EP16SceNpAllocatorEx +_ZN3sce2np7HttpUriC2EP14SceNpAllocator +_ZN3sce2np7HttpUriC2EP16SceNpAllocatorEx +_ZN3sce2np7HttpUriD0Ev +_ZN3sce2np7HttpUriD1Ev +_ZN3sce2np7HttpUriD2Ev +_ZN3sce2np7RingBuf14CheckinForReadEm +_ZN3sce2np7RingBuf15CheckinForWriteEm +_ZN3sce2np7RingBuf15CheckoutForReadEPm +_ZN3sce2np7RingBuf16CheckoutForWriteEPm +_ZN3sce2np7RingBuf4InitEPvm +_ZN3sce2np7RingBuf4PeekEmPvm +_ZN3sce2np7RingBuf4ReadEPvm +_ZN3sce2np7RingBuf4ctorEv +_ZN3sce2np7RingBuf4dtorEv +_ZN3sce2np7RingBuf5ClearEv +_ZN3sce2np7RingBuf5WriteEPKvm +_ZN3sce2np7RingBuf7DestroyEv +_ZN3sce2np7RingBufC1Ev +_ZN3sce2np7RingBufC2Ev +_ZN3sce2np7RingBufD0Ev +_ZN3sce2np7RingBufD1Ev +_ZN3sce2np7RingBufD2Ev +_ZN3sce2np8HttpFile4ReadEPNS0_6HandleEPvmPm +_ZN3sce2np8HttpFile5CloseEv +_ZN3sce2np8HttpFileC2EP16SceNpAllocatorEx +_ZN3sce2np8HttpFileD0Ev +_ZN3sce2np8HttpFileD1Ev +_ZN3sce2np8HttpFileD2Ev +_ZN3sce2np8JsonBool3SetEb +_ZN3sce2np8JsonBool5ClearEv +_ZN3sce2np8JsonBool7SetBoolEb +_ZN3sce2np8JsonBoolC1EP14SceNpAllocator +_ZN3sce2np8JsonBoolC2EP14SceNpAllocator +_ZN3sce2np8JsonBoolD0Ev +_ZN3sce2np8JsonBoolD1Ev +_ZN3sce2np8JsonBoolD2Ev +_ZN3sce2np8JsonFile5CloseEv +_ZN3sce2np8JsonFileD0Ev +_ZN3sce2np8JsonFileD1Ev +_ZN3sce2np8JsonFileD2Ev +_ZN3sce2np8JsonNull5ClearEv +_ZN3sce2np8JsonNullC1EP14SceNpAllocator +_ZN3sce2np8JsonNullC2EP14SceNpAllocator +_ZN3sce2np8JsonNullD0Ev +_ZN3sce2np8JsonNullD1Ev +_ZN3sce2np8JsonNullD2Ev +_ZN3sce2np8NpCommId5BuildERKS1_Pcm +_ZN3sce2np8NpCommId5ClearEv +_ZN3sce2np8NpCommId5ParseEPS1_PKc +_ZN3sce2np8NpCommId5ParseEPS1_PKcm +_ZN3sce2np8NpCommIdC1ERK20SceNpCommunicationId +_ZN3sce2np8NpCommIdC1ERKS1_ +_ZN3sce2np8NpCommIdC1Ev +_ZN3sce2np8NpCommIdC2ERK20SceNpCommunicationId +_ZN3sce2np8NpCommIdC2ERKS1_ +_ZN3sce2np8NpCommIdC2Ev +_ZN3sce2np8NpCommIdD0Ev +_ZN3sce2np8NpCommIdD1Ev +_ZN3sce2np8NpCommIdD2Ev +_ZN3sce2np8NpTicket5ClearEv +_ZN3sce2np8NpTicketD0Ev +_ZN3sce2np8NpTicketD1Ev +_ZN3sce2np8NpTicketD2Ev +_ZN3sce2np8Selector4InitEPKc +_ZN3sce2np8SelectorD0Ev +_ZN3sce2np8SelectorD1Ev +_ZN3sce2np8SelectorD2Ev +_ZN3sce2np8WorkItem10SetPendingEv +_ZN3sce2np8WorkItem10SetRunningEv +_ZN3sce2np8WorkItem11SetFinishedEi +_ZN3sce2np8WorkItem14FinishCallbackEv +_ZN3sce2np8WorkItem15RemoveFromQueueEv +_ZN3sce2np8WorkItem6CancelEi +_ZN3sce2np8WorkItem9BindQueueEPNS0_9WorkQueueEi +_ZN3sce2np8WorkItemC2EPKc +_ZN3sce2np8WorkItemD0Ev +_ZN3sce2np8WorkItemD1Ev +_ZN3sce2np8WorkItemD2Ev +_ZN3sce2np9EventFlag3SetEm +_ZN3sce2np9EventFlag4OpenEPKc +_ZN3sce2np9EventFlag4PollEmjPm +_ZN3sce2np9EventFlag4WaitEmjPmj +_ZN3sce2np9EventFlag4ctorEv +_ZN3sce2np9EventFlag4dtorEv +_ZN3sce2np9EventFlag5ClearEm +_ZN3sce2np9EventFlag6CancelEm +_ZN3sce2np9EventFlag6CreateEPKcj +_ZN3sce2np9EventFlag7DestroyEv +_ZN3sce2np9EventFlagC1Ev +_ZN3sce2np9EventFlagC2Ev +_ZN3sce2np9EventFlagD0Ev +_ZN3sce2np9EventFlagD1Ev +_ZN3sce2np9EventFlagD2Ev +_ZN3sce2np9HttpTrans10SetTimeoutEPKNS1_12TimeoutParamE +_ZN3sce2np9HttpTrans11SendRequestEPNS0_6HandleEPKvm +_ZN3sce2np9HttpTrans12RecvResponseEPNS0_6HandleEPvmPm +_ZN3sce2np9HttpTrans12SkipResponseEPNS0_6HandleE +_ZN3sce2np9HttpTrans16AddRequestHeaderEPKcS3_ +_ZN3sce2np9HttpTrans16SetRequestHeaderEPKcS3_ +_ZN3sce2np9HttpTrans21GetResponseStatusCodeEPNS0_6HandleEPi +_ZN3sce2np9HttpTrans21SetRequestContentTypeEPKc +_ZN3sce2np9HttpTrans23SetRequestContentLengthEm +_ZN3sce2np9HttpTrans24GetResponseContentLengthEPNS0_6HandleEPbPm +_ZN3sce2np9HttpTrans4InitEPNS0_12HttpTemplateEPNS0_18HttpConnectionPoolEiPKcS7_tS7_m +_ZN3sce2np9HttpTrans4InitEPNS0_12HttpTemplateEPNS0_18HttpConnectionPoolEiPKcm +_ZN3sce2np9HttpTrans4InitEPNS0_12HttpTemplateEiPKcS5_tS5_m +_ZN3sce2np9HttpTrans4InitEPNS0_12HttpTemplateEiPKcm +_ZN3sce2np9HttpTrans4InitERKNS0_12HttpTemplateEPNS0_18HttpConnectionPoolEiPKcS8_tS8_m +_ZN3sce2np9HttpTrans4InitERKNS0_12HttpTemplateEPNS0_18HttpConnectionPoolEiPKcm +_ZN3sce2np9HttpTrans4InitERKNS0_12HttpTemplateEiPKcS6_tS6_m +_ZN3sce2np9HttpTrans4InitERKNS0_12HttpTemplateEiPKcm +_ZN3sce2np9HttpTrans4ReadEPNS0_6HandleEPvmPm +_ZN3sce2np9HttpTrans5WriteEPNS0_6HandleEPKvmPm +_ZN3sce2np9HttpTrans6IsInitEv +_ZN3sce2np9HttpTrans7DestroyEv +_ZN3sce2np9HttpTransC1EP14SceNpAllocator +_ZN3sce2np9HttpTransC1EP16SceNpAllocatorEx +_ZN3sce2np9HttpTransC1Ev +_ZN3sce2np9HttpTransC2EP14SceNpAllocator +_ZN3sce2np9HttpTransC2EP16SceNpAllocatorEx +_ZN3sce2np9HttpTransC2Ev +_ZN3sce2np9HttpTransD0Ev +_ZN3sce2np9HttpTransD1Ev +_ZN3sce2np9HttpTransD2Ev +_ZN3sce2np9JsonArray12AddItemArrayEPPS1_ +_ZN3sce2np9JsonArray5ClearEv +_ZN3sce2np9JsonArray7AddItemEPKNS0_9JsonValueEPPS2_ +_ZN3sce2np9JsonArrayC1EP14SceNpAllocator +_ZN3sce2np9JsonArrayC2EP14SceNpAllocator +_ZN3sce2np9JsonArrayD0Ev +_ZN3sce2np9JsonArrayD1Ev +_ZN3sce2np9JsonArrayD2Ev +_ZN3sce2np9JsonValue12GetItemValueEi +_ZN3sce2np9JsonValue13GetFieldValueEPKc +_ZN3sce2np9JsonValue13GetFieldValueEiPPKc +_ZN3sce2np9JsonValue3SetEPKS1_ +_ZN3sce2np9JsonValue5ClearEv +_ZN3sce2np9JsonValue7GetBoolEv +_ZN3sce2np9JsonValue7GetNullEv +_ZN3sce2np9JsonValue7SetBoolEPKNS0_8JsonBoolE +_ZN3sce2np9JsonValue7SetTypeENS1_9ValueTypeE +_ZN3sce2np9JsonValue8GetArrayEv +_ZN3sce2np9JsonValue8SetArrayEPKNS0_9JsonArrayE +_ZN3sce2np9JsonValue9GetNumberEv +_ZN3sce2np9JsonValue9GetObjectEv +_ZN3sce2np9JsonValue9GetParentEv +_ZN3sce2np9JsonValue9GetStringEv +_ZN3sce2np9JsonValue9SetNumberEPKNS0_10JsonNumberE +_ZN3sce2np9JsonValue9SetObjectEPKNS0_10JsonObjectE +_ZN3sce2np9JsonValue9SetParentEPS1_ +_ZN3sce2np9JsonValue9SetStringEPKNS0_10JsonStringE +_ZN3sce2np9JsonValueC1EP14SceNpAllocatorNS1_9ValueTypeE +_ZN3sce2np9JsonValueC2EP14SceNpAllocatorNS1_9ValueTypeE +_ZN3sce2np9JsonValueD0Ev +_ZN3sce2np9JsonValueD1Ev +_ZN3sce2np9JsonValueD2Ev +_ZN3sce2np9LocalFile4ReadEPNS0_6HandleEPvmPm +_ZN3sce2np9LocalFile4SeekEliPl +_ZN3sce2np9LocalFile4SyncEv +_ZN3sce2np9LocalFile5CloseEv +_ZN3sce2np9LocalFile5WriteEPNS0_6HandleEPKvmPm +_ZN3sce2np9LocalFile6RemoveEPKc +_ZN3sce2np9LocalFile8TruncateEl +_ZN3sce2np9LocalFileC1Ev +_ZN3sce2np9LocalFileC2Ev +_ZN3sce2np9LocalFileD0Ev +_ZN3sce2np9LocalFileD1Ev +_ZN3sce2np9LocalFileD2Ev +_ZN3sce2np9NpTitleId5BuildERKS1_Pcm +_ZN3sce2np9NpTitleId5ClearEv +_ZN3sce2np9NpTitleId5ParseEPS1_PKc +_ZN3sce2np9NpTitleId5ParseEPS1_PKcm +_ZN3sce2np9NpTitleIdC1ERK12SceNpTitleId +_ZN3sce2np9NpTitleIdC1ERKS1_ +_ZN3sce2np9NpTitleIdC1Ev +_ZN3sce2np9NpTitleIdC2ERK12SceNpTitleId +_ZN3sce2np9NpTitleIdC2ERKS1_ +_ZN3sce2np9NpTitleIdC2Ev +_ZN3sce2np9NpTitleIdD0Ev +_ZN3sce2np9NpTitleIdD1Ev +_ZN3sce2np9NpTitleIdD2Ev +_ZN3sce2np9RefObject6AddRefEv +_ZN3sce2np9RefObject7ReleaseEv +_ZN3sce2np9RefObjectC1Ev +_ZN3sce2np9RefObjectC2Ev +_ZN3sce2np9RefObjectD0Ev +_ZN3sce2np9RefObjectD1Ev +_ZN3sce2np9RefObjectD2Ev +_ZN3sce2np9Semaphore4OpenEPKc +_ZN3sce2np9Semaphore4WaitEj +_ZN3sce2np9Semaphore6CreateEiiPKc +_ZN3sce2np9Semaphore6SignalEv +_ZN3sce2np9Semaphore7DestroyEv +_ZN3sce2np9SemaphoreC1Ev +_ZN3sce2np9SemaphoreC2Ev +_ZN3sce2np9SemaphoreD0Ev +_ZN3sce2np9SemaphoreD1Ev +_ZN3sce2np9SemaphoreD2Ev +_ZN3sce2np9WorkQueue11GetItemByIdEi +_ZN3sce2np9WorkQueue15GetFinishedItemENS0_14WorkItemStatusE +_ZN3sce2np9WorkQueue16WorkItemFinishedEPNS0_8WorkItemEi +_ZN3sce2np9WorkQueue17ProcFinishedItemsENS0_14WorkItemStatusE +_ZN3sce2np9WorkQueue18RemoveFinishedItemEPNS0_8WorkItemE +_ZN3sce2np9WorkQueue18WaitForPendingItemEPPNS0_8WorkItemEPb +_ZN3sce2np9WorkQueue4InitEPKNS0_6Thread5ParamE +_ZN3sce2np9WorkQueue4InitEPKcimm +_ZN3sce2np9WorkQueue4StopEv +_ZN3sce2np9WorkQueue4ctorEv +_ZN3sce2np9WorkQueue4dtorEv +_ZN3sce2np9WorkQueue5StartEv +_ZN3sce2np9WorkQueue6CancelEii +_ZN3sce2np9WorkQueue6IsInitEv +_ZN3sce2np9WorkQueue7DestroyEv +_ZN3sce2np9WorkQueue7EnqueueEiPNS0_8WorkItemE +_ZN3sce2np9WorkQueue9CancelAllEi +_ZN3sce2np9WorkQueue9IsRunningEv +_ZN3sce2np9WorkQueueC1Ev +_ZN3sce2np9WorkQueueC2Ev +_ZN3sce2np9WorkQueueD0Ev +_ZN3sce2np9WorkQueueD1Ev +_ZN3sce2np9WorkQueueD2Ev +_ZN3sce2npeqERK10SceRtcTickRKNS0_4TimeE +_ZN3sce2npeqERK12SceNpTitleIdRKNS0_9NpTitleIdE +_ZN3sce2npeqERK13SceNpOnlineIdRKNS0_10NpOnlineIdE +_ZN3sce2npeqERK16SceNpTitleSecretRKNS0_13NpTitleSecretE +_ZN3sce2npeqERK20SceNpCommunicationIdRKNS0_8NpCommIdE +_ZN3sce2npeqERKNS0_10NpOnlineIdERK13SceNpOnlineId +_ZN3sce2npeqERKNS0_10NpOnlineIdES3_ +_ZN3sce2npeqERKNS0_13NpTitleSecretERK16SceNpTitleSecret +_ZN3sce2npeqERKNS0_13NpTitleSecretES3_ +_ZN3sce2npeqERKNS0_4TimeERK10SceRtcTick +_ZN3sce2npeqERKNS0_4TimeES3_ +_ZN3sce2npeqERKNS0_4UserERKi +_ZN3sce2npeqERKNS0_4UserES3_ +_ZN3sce2npeqERKNS0_8NpCommIdERK20SceNpCommunicationId +_ZN3sce2npeqERKNS0_8NpCommIdES3_ +_ZN3sce2npeqERKNS0_9NpTitleIdERK12SceNpTitleId +_ZN3sce2npeqERKNS0_9NpTitleIdES3_ +_ZN3sce2npgeERK10SceRtcTickRKNS0_4TimeE +_ZN3sce2npgeERKNS0_4TimeERK10SceRtcTick +_ZN3sce2npgeERKNS0_4TimeES3_ +_ZN3sce2npgtERK10SceRtcTickRKNS0_4TimeE +_ZN3sce2npgtERKNS0_4TimeERK10SceRtcTick +_ZN3sce2npgtERKNS0_4TimeES3_ +_ZN3sce2npleERK10SceRtcTickRKNS0_4TimeE +_ZN3sce2npleERKNS0_4TimeERK10SceRtcTick +_ZN3sce2npleERKNS0_4TimeES3_ +_ZN3sce2npltERK10SceRtcTickRKNS0_4TimeE +_ZN3sce2npltERKNS0_4TimeERK10SceRtcTick +_ZN3sce2npltERKNS0_4TimeES3_ +_ZN3sce2npneERK10SceRtcTickRKNS0_4TimeE +_ZN3sce2npneERK12SceNpTitleIdRKNS0_9NpTitleIdE +_ZN3sce2npneERK13SceNpOnlineIdRKNS0_10NpOnlineIdE +_ZN3sce2npneERK16SceNpTitleSecretRKNS0_13NpTitleSecretE +_ZN3sce2npneERK20SceNpCommunicationIdRKNS0_8NpCommIdE +_ZN3sce2npneERKNS0_10NpOnlineIdERK13SceNpOnlineId +_ZN3sce2npneERKNS0_10NpOnlineIdES3_ +_ZN3sce2npneERKNS0_13NpTitleSecretERK16SceNpTitleSecret +_ZN3sce2npneERKNS0_13NpTitleSecretES3_ +_ZN3sce2npneERKNS0_4TimeERK10SceRtcTick +_ZN3sce2npneERKNS0_4TimeES3_ +_ZN3sce2npneERKNS0_4UserERKi +_ZN3sce2npneERKNS0_4UserES3_ +_ZN3sce2npneERKNS0_8NpCommIdERK20SceNpCommunicationId +_ZN3sce2npneERKNS0_8NpCommIdES3_ +_ZN3sce2npneERKNS0_9NpTitleIdERK12SceNpTitleId +_ZN3sce2npneERKNS0_9NpTitleIdES3_ +_ZN3sce3Job10JobManager10initializeEPvmjjPKNS1_12ConfigParamsE +_ZN3sce3Job10JobManager10initializeEPvmjjjmPKNS1_12ConfigParamsE +_ZN3sce3Job10JobManager24setPersistentThreadCountEj +_ZN3sce3Job10JobManager27calculateRequiredMemorySizeEPKNS1_21MemorySizeQueryParamsE +_ZN3sce3Job10JobManager27getSequenceFactoryInterfaceENS1_8PriorityE +_ZN3sce3Job10JobManager34getUnifiedSequenceFactoryInterfaceENS1_8PriorityE +_ZN3sce3Job10JobManager8shutdownEv +_ZN3sce3Job10JobManagerC1Ev +_ZN3sce3Job10JobManagerC2Ev +_ZN3sce3Job10JobManagerD1Ev +_ZN3sce3Job10JobManagerD2Ev +_ZN3sce3Xml10SimpleDataC1EPKcm +_ZN3sce3Xml10SimpleDataC1Ev +_ZN3sce3Xml10SimpleDataC2EPKcm +_ZN3sce3Xml10SimpleDataC2Ev +_ZN3sce3Xml11Initializer10initializeEPKNS0_13InitParameterE +_ZN3sce3Xml11Initializer9terminateEv +_ZN3sce3Xml11InitializerC1Ev +_ZN3sce3Xml11InitializerC2Ev +_ZN3sce3Xml11InitializerD1Ev +_ZN3sce3Xml11InitializerD2Ev +_ZN3sce3Xml12MemAllocatorC2Ev +_ZN3sce3Xml12MemAllocatorD0Ev +_ZN3sce3Xml12MemAllocatorD1Ev +_ZN3sce3Xml12MemAllocatorD2Ev +_ZN3sce3Xml13AttributeList10initializeEPKNS0_11InitializerE +_ZN3sce3Xml13AttributeList12addAttributeEPKNS0_6StringES4_ +_ZN3sce3Xml13AttributeList5clearEv +_ZN3sce3Xml13AttributeList9terminateEv +_ZN3sce3Xml13AttributeListC1ERKS1_ +_ZN3sce3Xml13AttributeListC1Ev +_ZN3sce3Xml13AttributeListC2ERKS1_ +_ZN3sce3Xml13AttributeListC2Ev +_ZN3sce3Xml13AttributeListD1Ev +_ZN3sce3Xml13AttributeListD2Ev +_ZN3sce3Xml18SerializeParameterC1Ev +_ZN3sce3Xml18SerializeParameterC2Ev +_ZN3sce3Xml3Dom13invalidNodeIdE +_ZN3sce3Xml3Dom15DocumentBuilder10initializeEPKNS0_11InitializerE +_ZN3sce3Xml3Dom15DocumentBuilder11getDocumentEv +_ZN3sce3Xml3Dom15DocumentBuilder16setResolveEntityEb +_ZN3sce3Xml3Dom15DocumentBuilder20setSkipIgnorableTextEb +_ZN3sce3Xml3Dom15DocumentBuilder26setSkipIgnorableWhiteSpaceEb +_ZN3sce3Xml3Dom15DocumentBuilder5parseEPKNS0_6StringEb +_ZN3sce3Xml3Dom15DocumentBuilder9terminateEv +_ZN3sce3Xml3Dom15DocumentBuilderC1Ev +_ZN3sce3Xml3Dom15DocumentBuilderC2Ev +_ZN3sce3Xml3Dom15DocumentBuilderD1Ev +_ZN3sce3Xml3Dom15DocumentBuilderD2Ev +_ZN3sce3Xml3Dom4Node11appendChildENS1_6NodeIdE +_ZN3sce3Xml3Dom4Node11removeChildENS1_6NodeIdE +_ZN3sce3Xml3Dom4Node12insertBeforeENS1_6NodeIdES3_ +_ZN3sce3Xml3Dom4NodeC1ENS1_6NodeIdE +_ZN3sce3Xml3Dom4NodeC1ERKS2_ +_ZN3sce3Xml3Dom4NodeC2ENS1_6NodeIdE +_ZN3sce3Xml3Dom4NodeC2ERKS2_ +_ZN3sce3Xml3Dom4NodeD1Ev +_ZN3sce3Xml3Dom4NodeD2Ev +_ZN3sce3Xml3Dom4NodeaSERKS2_ +_ZN3sce3Xml3Dom6NodeIdC1EPvS3_b +_ZN3sce3Xml3Dom6NodeIdC1Ev +_ZN3sce3Xml3Dom6NodeIdC2EPvS3_b +_ZN3sce3Xml3Dom6NodeIdC2Ev +_ZN3sce3Xml3Dom6NodeIdaSES2_ +_ZN3sce3Xml3Dom6NodeIdcvPvEv +_ZN3sce3Xml3Dom6NodeIdeqES2_ +_ZN3sce3Xml3Dom6NodeIdeqEi +_ZN3sce3Xml3Dom6NodeIdneES2_ +_ZN3sce3Xml3Dom6NodeIdneEi +_ZN3sce3Xml3Dom6NodeIdntEv +_ZN3sce3Xml3Dom8Document10importNodeENS1_6NodeIdES3_PKS2_S3_ +_ZN3sce3Xml3Dom8Document10initializeEPKNS0_11InitializerE +_ZN3sce3Xml3Dom8Document10insertNodeENS1_6NodeIdES3_S3_ +_ZN3sce3Xml3Dom8Document11removeChildENS1_6NodeIdES3_ +_ZN3sce3Xml3Dom8Document11resetStatusEv +_ZN3sce3Xml3Dom8Document11setWritableEv +_ZN3sce3Xml3Dom8Document12importParentEPKS2_NS1_6NodeIdE +_ZN3sce3Xml3Dom8Document12setAttrValueENS1_6NodeIdEPKNS0_6StringES6_ +_ZN3sce3Xml3Dom8Document12setAttributeENS1_6NodeIdEPKNS0_6StringES6_ +_ZN3sce3Xml3Dom8Document13createElementEPKNS0_6StringEPKNS0_13AttributeListES5_ +_ZN3sce3Xml3Dom8Document13recurseDeleteENS1_6NodeIdE +_ZN3sce3Xml3Dom8Document14createTextNodeEPKNS0_6StringE +_ZN3sce3Xml3Dom8Document15addElementChildENS1_6NodeIdEPKNS0_6StringEPKNS0_13AttributeListES6_ +_ZN3sce3Xml3Dom8Document15removeAttributeENS1_6NodeIdEPKNS0_6StringE +_ZN3sce3Xml3Dom8Document16removeAttributesENS1_6NodeIdE +_ZN3sce3Xml3Dom8Document16setAttributeListENS1_6NodeIdEPKNS0_13AttributeListE +_ZN3sce3Xml3Dom8Document7setTextENS1_6NodeIdEPKNS0_6StringE +_ZN3sce3Xml3Dom8Document9serializeEPKNS0_18SerializeParameterEPNS0_6StringE +_ZN3sce3Xml3Dom8Document9terminateEv +_ZN3sce3Xml3Dom8DocumentC1ERKS2_ +_ZN3sce3Xml3Dom8DocumentC1Ev +_ZN3sce3Xml3Dom8DocumentC2ERKS2_ +_ZN3sce3Xml3Dom8DocumentC2Ev +_ZN3sce3Xml3Dom8DocumentD1Ev +_ZN3sce3Xml3Dom8DocumentD2Ev +_ZN3sce3Xml3Dom8DocumentaSERKS2_ +_ZN3sce3Xml3Dom8NodeList10initializeEPKNS0_11InitializerE +_ZN3sce3Xml3Dom8NodeList10insertLastENS1_6NodeIdE +_ZN3sce3Xml3Dom8NodeList10removeItemENS1_6NodeIdE +_ZN3sce3Xml3Dom8NodeList11insertFirstENS1_6NodeIdE +_ZN3sce3Xml3Dom8NodeList5clearEv +_ZN3sce3Xml3Dom8NodeList9terminateEv +_ZN3sce3Xml3Dom8NodeListC1ERKS2_ +_ZN3sce3Xml3Dom8NodeListC1Ev +_ZN3sce3Xml3Dom8NodeListC2ERKS2_ +_ZN3sce3Xml3Dom8NodeListC2Ev +_ZN3sce3Xml3Dom8NodeListD1Ev +_ZN3sce3Xml3Dom8NodeListD2Ev +_ZN3sce3Xml3Sax6Parser10initializeEPKNS0_11InitializerE +_ZN3sce3Xml3Sax6Parser11setUserDataEPv +_ZN3sce3Xml3Sax6Parser16setResolveEntityEb +_ZN3sce3Xml3Sax6Parser18setDocumentHandlerEPNS1_15DocumentHandlerE +_ZN3sce3Xml3Sax6Parser26setSkipIgnorableWhiteSpaceEb +_ZN3sce3Xml3Sax6Parser5parseEPKNS0_6StringEb +_ZN3sce3Xml3Sax6Parser5resetEv +_ZN3sce3Xml3Sax6Parser9terminateEv +_ZN3sce3Xml3Sax6ParserC1Ev +_ZN3sce3Xml3Sax6ParserC2Ev +_ZN3sce3Xml3Sax6ParserD1Ev +_ZN3sce3Xml3Sax6ParserD2Ev +_ZN3sce3Xml4Attr10initializeEPKNS0_11InitializerE +_ZN3sce3Xml4Attr7setNameEPKNS0_6StringE +_ZN3sce3Xml4Attr8setValueEPKNS0_6StringE +_ZN3sce3Xml4Attr9terminateEv +_ZN3sce3Xml4AttrC1ERKS1_ +_ZN3sce3Xml4AttrC1Ev +_ZN3sce3Xml4AttrC2ERKS1_ +_ZN3sce3Xml4AttrC2Ev +_ZN3sce3Xml4AttrD1Ev +_ZN3sce3Xml4AttrD2Ev +_ZN3sce3Xml4AttraSERKS1_ +_ZN3sce3Xml4Util9strResultEi +_ZN3sce3Xml6StringC1EPKc +_ZN3sce3Xml6StringC1EPKcm +_ZN3sce3Xml6StringC1ERKS1_ +_ZN3sce3Xml6StringC1Ev +_ZN3sce3Xml6StringC2EPKc +_ZN3sce3Xml6StringC2EPKcm +_ZN3sce3Xml6StringC2ERKS1_ +_ZN3sce3Xml6StringC2Ev +_ZN3sce3Xml6StringaSERKS1_ +_ZN3sce3pss4core14IntHandleTable13NextIntHandleEv +_ZN3sce3pss4core14IntHandleTable5mutexE +_ZN3sce3pss4core16InitializeCsharpEPK19ScePsmConfiguration +_ZN3sce3pss4core5audio11SoundPlayer15MoveSurroundPanEfbfd +_ZN3sce3pss4core5audio11SoundPlayer16PauseSurroundPanEd +_ZN3sce3pss4core5audio11SoundPlayer20MoveSurroundPanAngleEfbd +_ZN3sce3pss4core5audio11SoundPlayer23MoveSurroundPanDistanceEfd +_ZN3sce3pss4core5audio11SoundPlayerC1EPNS2_5SoundEj +_ZN3sce3pss4core5audio11SoundPlayerC2EPNS2_5SoundEj +_ZN3sce3pss4core5audio5Sound23CreateSurroundPanPlayerEv +_ZN3sce3pss4core6camera17IsCameraConnectedEiPb +_ZN3sce3pss4core6camera6Camera13SetConfigTypeEi +_ZN3sce3pss4core7imaging4Font31NotifySystemConfigurationChangeEPKc +_ZN3sce3pss4core7imaging4Font31NotifySystemConfigurationChangeEv +_ZN3sce3pss4core7imaging4impl5Image6UnloadEv +_ZN3sce3pss4core7imaging4impl5Image9SaveAsJpgEPKcPKvjRKNS3_11ImageExtentENS3_9ImageModeEjbPNS1_6memory13HeapAllocatorEi +_ZN3sce3pss4core7imaging4impl8ImageJpg9SaveAsJpgEPKcPKvjRKNS3_11ImageExtentENS3_9ImageModeEjbPNS1_6memory13HeapAllocatorEi +_ZN3sce3pss4core7runtime20TerminateDiagnosticsEv +_ZN3sce3pss4core7runtime21InitializeDiagnosticsEv +_ZN3sce3pss4core7runtime6serial15TerminateCsharpEv +_ZN3sce3pss4core7runtime6serial16InitializeCsharpEv +_ZN3sce3pss4core8graphics10WaitVBlankEv +_ZN3sce3pss4core8graphics14NativeGraphics14MapDepthBufferEv +_ZN3sce3pss4core8graphics14NativeGraphics16UnmapDepthBufferEv +_ZN3sce3pss4core8graphics14NativeGraphics18GetGraphicsContextEv +_ZN3sce3pss4core8graphics14NativeGraphics18ReleaseVideoMemoryEPv +_ZN3sce3pss4core8graphics14NativeGraphics18StoreGraphicsStateEv +_ZN3sce3pss4core8graphics14NativeGraphics19AllocateVideoMemoryEjj +_ZN3sce3pss4core8graphics14NativeGraphics19AllocateVideoMemoryEjjPv +_ZN3sce3pss4core8graphics14NativeGraphics19AllocateVideoMemoryEmm +_ZN3sce3pss4core8graphics14NativeGraphics19ReleaseSystemMemoryEPv +_ZN3sce3pss4core8graphics14NativeGraphics20AllocateSystemMemoryEjj +_ZN3sce3pss4core8graphics14NativeGraphics20AllocateSystemMemoryEjjPv +_ZN3sce3pss4core8graphics14NativeGraphics20AllocateSystemMemoryEmm +_ZN3sce3pss4core8graphics14NativeGraphics20RestoreGraphicsStateEv +_ZN3sce3pss4core8graphics14NativeGraphics26AddPostSwapBuffersCallbackEPFvPvES4_ +_ZN3sce3pss4core8graphics14NativeGraphics29RemovePostSwapBuffersCallbackEj +_ZN3sce3pss4core8graphics15DirectTexture2D15SetImagePointerEiiNS2_11PixelFormatEPv +_ZN3sce3pss4core8graphics15DirectTexture2DC1EiiNS2_11PixelFormatEPv +_ZN3sce3pss4core8graphics15DirectTexture2DC2EiiNS2_11PixelFormatEPv +_ZN3sce3pss4core8graphics16InitializeCsharpEPK19ScePsmConfiguration +_ZN3sce3pss4core8graphics6OpenGL10SetTextureEPNS2_7TextureE +_ZN3sce3pss4core8graphics6OpenGL20GetTextureFormatTypeENS2_11PixelFormatE +_ZN3sce3pss4core8graphics6OpenGL25GetTextureFormatComponentENS2_11PixelFormatE +_ZN3sce3pss4core8graphics7TextureC2Ev +_ZN3sce3pss4core8graphics7TextureD2Ev +_ZN3sce3pss4core9PsmObjectC1Ev +_ZN3sce3pss4core9PsmObjectC2Ev +_ZN3sce3pss4core9PsmObjectD0Ev +_ZN3sce3pss4core9PsmObjectD1Ev +_ZN3sce3pss4core9PsmObjectD2Ev +_ZN3sce3pss4core9resources15ResourceManagerC1EPK11_MonoStringb +_ZN3sce3pss4core9resources15ResourceManagerC2EPK11_MonoStringb +_ZN3sce3pss4core9threading4Cond4WaitEi +_ZN3sce3pss4core9threading4Cond6NotifyEv +_ZN3sce3pss4core9threading4CondC1ERNS2_5MutexEPKci +_ZN3sce3pss4core9threading4CondC2ERNS2_5MutexEPKci +_ZN3sce3pss4core9threading4CondD1Ev +_ZN3sce3pss4core9threading4CondD2Ev +_ZN3sce3pss5orbis3web11WebViewBase12IsFullScreenEv +_ZN3sce3pss5orbis5input12InputManager18GetAnalogStickModeEPNS2_15AnalogStickModeE +_ZN3sce3pss5orbis5input12InputManager18SetAnalogStickModeENS2_15AnalogStickModeE +_ZN3sce3pss5orbis5input12InputManager27GetControllerHandleByUserIdEiNS2_12HardwareTypeEPi +_ZN3sce3pss5orbis5input12InputManager29GetControllerHandleByDeviceIdElPi +_ZN3sce3pss5orbis5input12InputManager31GetInvalidOperationByOtherUsersEPb +_ZN3sce3pss5orbis5input37InputManager_GetAnalogStickModeNativeEPNS2_15AnalogStickModeE +_ZN3sce3pss5orbis5input37InputManager_SetAnalogStickModeNativeENS2_15AnalogStickModeE +_ZN3sce3pss5orbis5input46InputManager_GetControllerHandleByUserIdNativeEiNS2_12HardwareTypeEPi +_ZN3sce3pss5orbis5input48InputManager_GetControllerHandleByDeviceIdNativeElPi +_ZN3sce3pss5orbis5input50InputManager_GetInvalidOperationByOtherUsersNativeEPb +_ZN3sce3pss5orbis5video14VideoPlayerVcs11IsBufferingEv +_ZN3sce3pss5orbis5video14VideoPlayerVcs17UpdatePlayerStateEv +_ZN3sce3pss5orbis5video14VideoPlayerVcs17VideoCoreGetSpeedEv +_ZN3sce3pss5orbis5video14VideoPlayerVcs17VideoCoreSetSpeedEi +_ZN3sce3pss5orbis5video14VideoPlayerVcs18VideoCoreGetVolumeEv +_ZN3sce3pss5orbis5video14VideoPlayerVcs18VideoCoreSetVolumeEi +_ZN3sce3pss5orbis5video14VideoPlayerVcs21GetReadyStateForDebugEv +_ZN3sce3pss5orbis5video14VideoPlayerVcs21VideoCoreSetLoopRangeEmm +_ZN3sce3pss5orbis5video14VideoPlayerVcs23GetNetworkStateForDebugEv +_ZN3sce3pss5orbis5video14VideoPlayerVcs24VideoCoreCancelLoopRangeEv +_ZN3sce3pss5orbis5video15VideoPlayerBase12SetLoopRangeEmm +_ZN3sce3pss5orbis5video15VideoPlayerBase15CancelLoopRangeEv +_ZN3sce3pss5orbis5video15VideoPlayerBase16GetLastErrorCodeEv +_ZN3sce3pss5orbis5video15VideoPlayerBase19GetBufferedPositionEPmS4_ +_ZN3sce3pss5orbis5video15VideoPlayerBase8GetSpeedEv +_ZN3sce3pss5orbis5video15VideoPlayerBase8SetSpeedEi +_ZN3sce3pss5orbis5video15VideoPlayerBase9GetVolumeEv +_ZN3sce3pss5orbis5video15VideoPlayerBase9SetVolumeEi +_ZN3sce3pss5orbis9framework11PsmArrayObj6LengthEv +_ZN3sce3pss5orbis9framework11PsmArrayObj9ToPointerEv +_ZN3sce3pss5orbis9framework11PsmCallList10UnregisterEPFvPvES4_ +_ZN3sce3pss5orbis9framework11PsmCallList6UpdateEv +_ZN3sce3pss5orbis9framework11PsmCallList8RegisterEPFvPvES4_ +_ZN3sce3pss5orbis9framework11PsmCallListC1Ev +_ZN3sce3pss5orbis9framework11PsmCallListC2Ev +_ZN3sce3pss5orbis9framework12PsmEventData8SetValueERKNS_4Json5ValueE +_ZN3sce3pss5orbis9framework12PsmFramework10InitializeERKNS2_12PsmInitParamEiPPc +_ZN3sce3pss5orbis9framework12PsmFramework20RegisterInternalCallEPKNS2_12PsmCallEntryE +_ZN3sce3pss5orbis9framework12PsmFramework24RegisterPInvokeCallTableEPKNS2_15PsmLibraryEntryE +_ZN3sce3pss5orbis9framework12PsmFramework3RunEv +_ZN3sce3pss5orbis9framework12PsmFramework8FinalizeEv +_ZN3sce3pss5orbis9framework12PsmInitParamC1Ev +_ZN3sce3pss5orbis9framework12PsmInitParamC2Ev +_ZN3sce3pss5orbis9framework12PsmStringObj17NewAndStoreStringEPvPc +_ZN3sce3pss5orbis9framework12PsmStringObj6ToUtf8Ev +_ZN3sce3pss5orbis9framework12PsmStringObj8FreeUtf8EPc +_ZN3sce3pss5orbis9framework14PsmDelegateObj11FreePointerEv +_ZN3sce3pss5orbis9framework14PsmDelegateObj15AllocatePointerEv +_ZN3sce3pss5orbis9framework18PsmFrameworkCsharp21SetEnableNativeMethodEb +_ZN3sce3pss5orbis9framework21PsmMainThreadCallList10UnregisterEPFvPvES4_ +_ZN3sce3pss5orbis9framework21PsmMainThreadCallList6UpdateEv +_ZN3sce3pss5orbis9framework21PsmMainThreadCallList8RegisterEPFvPvES4_ +_ZN3sce3pss5orbis9framework23TerminatePsmEventCsharpEv +_ZN3sce3pss5orbis9framework24InitializePsmEventCsharpEv +_ZN3sce3pss5orbis9framework27TerminatePsmFrameworkCsharpEv +_ZN3sce3pss5orbis9framework28InitializePsmFrameworkCsharpEv +_ZN3sce3pss5orbis9framework8PsmEvent10InitializeEv +_ZN3sce3pss5orbis9framework8PsmEvent10UnregisterEiPFvRKNS2_12PsmEventDataEPvES7_ +_ZN3sce3pss5orbis9framework8PsmEvent17RegisterDelegatorEPFvRKNS2_12PsmEventDataEPvES7_ +_ZN3sce3pss5orbis9framework8PsmEvent19UnregisterDelegatorEPFvRKNS2_12PsmEventDataEPvES7_ +_ZN3sce3pss5orbis9framework8PsmEvent4PostERKNS2_12PsmEventDataE +_ZN3sce3pss5orbis9framework8PsmEvent4SendERKNS2_12PsmEventDataE +_ZN3sce3pss5orbis9framework8PsmEvent8FinalizeEv +_ZN3sce3pss5orbis9framework8PsmEvent8RegisterEiPFvRKNS2_12PsmEventDataEPvES7_ +_ZN3sce3web11WebViewBase31postMessageToNavigatorSceObjectEPKc +_ZN3sce3web15TerminateCsharpEv +_ZN3sce3web16InitializeCsharpEm +_ZN3sce4Json11Initializer10initializeEPKNS0_13InitParameterE +_ZN3sce4Json11Initializer10initializeEPKNS0_14InitParameter2E +_ZN3sce4Json11Initializer24setAllocatorInfoCallBackEPFviNS0_9ValueTypeEPvES3_ +_ZN3sce4Json11Initializer27setGlobalNullAccessCallBackEPFRKNS0_5ValueENS0_9ValueTypeEPS3_PvES7_ +_ZN3sce4Json11Initializer27setGlobalNullAccessCallbackEPFRKNS0_5ValueENS0_9ValueTypeEPS3_PvES7_ +_ZN3sce4Json11Initializer28setGlobalSpecialFloatHandlerEPFKNS0_5ValueENS0_12FunctionTypeEdPS3_PvPbES6_ +_ZN3sce4Json11Initializer28setGlobalTypeMismatchHandlerEPFRKNS0_5ValueENS0_9ValueTypeEPS3_S6_PvES7_ +_ZN3sce4Json11Initializer36setGlobalElementAccessFailureHandlerEPFviPKNS0_6StringEPKmPKNS0_5ValueES9_PvESA_ +_ZN3sce4Json11Initializer9terminateEv +_ZN3sce4Json11InitializerC1Ev +_ZN3sce4Json11InitializerC2Ev +_ZN3sce4Json11InitializerD1Ev +_ZN3sce4Json11InitializerD2Ev +_ZN3sce4Json11s_initparamE +_ZN3sce4Json12MemAllocator11notifyErrorEimPv +_ZN3sce4Json12MemAllocatorC2Ev +_ZN3sce4Json12MemAllocatorD0Ev +_ZN3sce4Json12MemAllocatorD1Ev +_ZN3sce4Json12MemAllocatorD2Ev +_ZN3sce4Json14InitParameter212setAllocatorEPNS0_12MemAllocatorEPv +_ZN3sce4Json14InitParameter217setFileBufferSizeEm +_ZN3sce4Json14InitParameter225setSpecialFloatFormatTypeENS0_22SpecialFloatFormatTypeE +_ZN3sce4Json14InitParameter2C1Ev +_ZN3sce4Json14InitParameter2C2Ev +_ZN3sce4Json17InitParameterRttiC1EPNS0_14AllocParamRttiEPvm +_ZN3sce4Json17InitParameterRttiC2EPNS0_14AllocParamRttiEPvm +_ZN3sce4Json18InitParameterRtti216setAllocatorRttiEPNS0_14AllocParamRttiEPv +_ZN3sce4Json19InternalInitializer19terminate_staticlibEv +_ZN3sce4Json19InternalInitializer20initialize_staticlibEPKNS0_13InitParameterENS1_10InitOptionE +_ZN3sce4Json19InternalInitializerC1Ev +_ZN3sce4Json19InternalInitializerC2Ev +_ZN3sce4Json19InternalInitializerD1Ev +_ZN3sce4Json19InternalInitializerD2Ev +_ZN3sce4Json4FreeEPv +_ZN3sce4Json5Array10push_frontERKNS0_5ValueE +_ZN3sce4Json5Array5clearEv +_ZN3sce4Json5Array5eraseERKNS1_8iteratorE +_ZN3sce4Json5Array6insertERKNS1_8iteratorERKNS0_5ValueE +_ZN3sce4Json5Array8iterator7advanceEm +_ZN3sce4Json5Array8iteratorC1ERKS2_ +_ZN3sce4Json5Array8iteratorC1Ev +_ZN3sce4Json5Array8iteratorC2ERKS2_ +_ZN3sce4Json5Array8iteratorC2Ev +_ZN3sce4Json5Array8iteratorD1Ev +_ZN3sce4Json5Array8iteratorD2Ev +_ZN3sce4Json5Array8iteratoraSERKS2_ +_ZN3sce4Json5Array8iteratorppEi +_ZN3sce4Json5Array8iteratorppEv +_ZN3sce4Json5Array8pop_backEv +_ZN3sce4Json5Array9pop_frontEv +_ZN3sce4Json5Array9push_backERKNS0_5ValueE +_ZN3sce4Json5ArrayC1ERKS1_ +_ZN3sce4Json5ArrayC1Ev +_ZN3sce4Json5ArrayC2ERKS1_ +_ZN3sce4Json5ArrayC2Ev +_ZN3sce4Json5ArrayD1Ev +_ZN3sce4Json5ArrayD2Ev +_ZN3sce4Json5ArrayaSERKS1_ +_ZN3sce4Json5Value10referArrayEv +_ZN3sce4Json5Value10referValueERKNS0_6StringE +_ZN3sce4Json5Value10referValueERKSbIcSt11char_traitsIcENS0_8StlAllocIcEEE +_ZN3sce4Json5Value10referValueEm +_ZN3sce4Json5Value10s_nullboolE +_ZN3sce4Json5Value10s_nullrealE +_ZN3sce4Json5Value11referObjectEv +_ZN3sce4Json5Value11referStringEv +_ZN3sce4Json5Value11s_nullarrayE +_ZN3sce4Json5Value12referBooleanEv +_ZN3sce4Json5Value12referIntegerEv +_ZN3sce4Json5Value12s_nullobjectE +_ZN3sce4Json5Value12s_nullstringE +_ZN3sce4Json5Value13referUIntegerEv +_ZN3sce4Json5Value13s_nullintegerE +_ZN3sce4Json5Value14s_nulluintegerE +_ZN3sce4Json5Value18serialize_internalERSbIcSt11char_traitsIcENS0_8StlAllocIcEEEPFiS7_PvES8_PS1_ +_ZN3sce4Json5Value21setNullAccessCallBackEPFRKS1_NS0_9ValueTypeEPS2_PvES6_ +_ZN3sce4Json5Value22setSpecialFloatHandlerEPFKS1_NS0_12FunctionTypeEdPS2_PvPbES5_ +_ZN3sce4Json5Value22setTypeMismatchHandlerEPFRKS1_NS0_9ValueTypeEPS2_S5_PvES6_ +_ZN3sce4Json5Value30setElementAccessFailureHandlerEPFviPKNS0_6StringEPKmPKS1_S8_PvES9_ +_ZN3sce4Json5Value3setENS0_9ValueTypeE +_ZN3sce4Json5Value3setEPKc +_ZN3sce4Json5Value3setERKNS0_5ArrayE +_ZN3sce4Json5Value3setERKNS0_6ObjectE +_ZN3sce4Json5Value3setERKNS0_6StringE +_ZN3sce4Json5Value3setERKS1_ +_ZN3sce4Json5Value3setERKSbIcSt11char_traitsIcENS0_8StlAllocIcEEE +_ZN3sce4Json5Value3setERKSt3mapISbIcSt11char_traitsIcENS0_8StlAllocIcEEES1_St4lessIS7_ENS5_ISt4pairIS7_S1_EEEE +_ZN3sce4Json5Value3setERKSt4listIS1_NS0_8StlAllocIS1_EEE +_ZN3sce4Json5Value3setEb +_ZN3sce4Json5Value3setEd +_ZN3sce4Json5Value3setEl +_ZN3sce4Json5Value3setEm +_ZN3sce4Json5Value4swapERS1_ +_ZN3sce4Json5Value5clearEv +_ZN3sce4Json5Value9referRealEv +_ZN3sce4Json5Value9serializeEPFiRNS0_6StringEPvES4_ +_ZN3sce4Json5Value9serializeERNS0_6StringE +_ZN3sce4Json5Value9serializeERNS0_6StringEPFiS3_PvES4_ +_ZN3sce4Json5Value9serializeERSbIcSt11char_traitsIcENS0_8StlAllocIcEEE +_ZN3sce4Json5Value9serializeERSbIcSt11char_traitsIcENS0_8StlAllocIcEEEPFiS7_PvES8_ +_ZN3sce4Json5Value9setParentEPKS1_ +_ZN3sce4Json5ValueC1ENS0_9ValueTypeE +_ZN3sce4Json5ValueC1EPKc +_ZN3sce4Json5ValueC1ERKNS0_5ArrayE +_ZN3sce4Json5ValueC1ERKNS0_6ObjectE +_ZN3sce4Json5ValueC1ERKNS0_6StringE +_ZN3sce4Json5ValueC1ERKS1_ +_ZN3sce4Json5ValueC1ERKSbIcSt11char_traitsIcENS0_8StlAllocIcEEE +_ZN3sce4Json5ValueC1ERKSt3mapISbIcSt11char_traitsIcENS0_8StlAllocIcEEES1_St4lessIS7_ENS5_ISt4pairIS7_S1_EEEE +_ZN3sce4Json5ValueC1ERKSt4listIS1_NS0_8StlAllocIS1_EEE +_ZN3sce4Json5ValueC1Eb +_ZN3sce4Json5ValueC1Ed +_ZN3sce4Json5ValueC1El +_ZN3sce4Json5ValueC1Em +_ZN3sce4Json5ValueC1Ev +_ZN3sce4Json5ValueC2ENS0_9ValueTypeE +_ZN3sce4Json5ValueC2EPKc +_ZN3sce4Json5ValueC2ERKNS0_5ArrayE +_ZN3sce4Json5ValueC2ERKNS0_6ObjectE +_ZN3sce4Json5ValueC2ERKNS0_6StringE +_ZN3sce4Json5ValueC2ERKS1_ +_ZN3sce4Json5ValueC2ERKSbIcSt11char_traitsIcENS0_8StlAllocIcEEE +_ZN3sce4Json5ValueC2ERKSt3mapISbIcSt11char_traitsIcENS0_8StlAllocIcEEES1_St4lessIS7_ENS5_ISt4pairIS7_S1_EEEE +_ZN3sce4Json5ValueC2ERKSt4listIS1_NS0_8StlAllocIS1_EEE +_ZN3sce4Json5ValueC2Eb +_ZN3sce4Json5ValueC2Ed +_ZN3sce4Json5ValueC2El +_ZN3sce4Json5ValueC2Em +_ZN3sce4Json5ValueC2Ev +_ZN3sce4Json5ValueD1Ev +_ZN3sce4Json5ValueD2Ev +_ZN3sce4Json5ValueaSERKS1_ +_ZN3sce4Json6MallocEm +_ZN3sce4Json6Object4PairC1ERKNS0_6StringERKNS0_5ValueE +_ZN3sce4Json6Object4PairC1Ev +_ZN3sce4Json6Object4PairC2ERKNS0_6StringERKNS0_5ValueE +_ZN3sce4Json6Object4PairC2Ev +_ZN3sce4Json6Object4PairD1Ev +_ZN3sce4Json6Object4PairD2Ev +_ZN3sce4Json6Object5clearEv +_ZN3sce4Json6Object5eraseERKNS0_6StringE +_ZN3sce4Json6Object6insertERKNS1_4PairE +_ZN3sce4Json6Object8iterator7advanceEm +_ZN3sce4Json6Object8iteratorC1ERKS2_ +_ZN3sce4Json6Object8iteratorC1Ev +_ZN3sce4Json6Object8iteratorC2ERKS2_ +_ZN3sce4Json6Object8iteratorC2Ev +_ZN3sce4Json6Object8iteratorD1Ev +_ZN3sce4Json6Object8iteratorD2Ev +_ZN3sce4Json6Object8iteratoraSERKS2_ +_ZN3sce4Json6Object8iteratorppEi +_ZN3sce4Json6Object8iteratorppEv +_ZN3sce4Json6ObjectC1ERKS1_ +_ZN3sce4Json6ObjectC1Ev +_ZN3sce4Json6ObjectC2ERKS1_ +_ZN3sce4Json6ObjectC2Ev +_ZN3sce4Json6ObjectD1Ev +_ZN3sce4Json6ObjectD2Ev +_ZN3sce4Json6ObjectaSERKS1_ +_ZN3sce4Json6ObjectixERKNS0_6StringE +_ZN3sce4Json6Parser10parseArrayERNS0_5ValueERNS0_11InputStreamEPS2_ +_ZN3sce4Json6Parser10parseValueERNS0_5ValueERNS0_11InputStreamEPS2_ +_ZN3sce4Json6Parser11parseNumberERNS0_5ValueERNS0_11InputStreamEPS2_ +_ZN3sce4Json6Parser11parseObjectERNS0_5ValueERNS0_11InputStreamEPS2_ +_ZN3sce4Json6Parser11parseStringERNS0_5ValueERNS0_11InputStreamEPS2_ +_ZN3sce4Json6Parser11parseStringERSbIcSt11char_traitsIcENS0_8StlAllocIcEEERNS0_11InputStreamE +_ZN3sce4Json6Parser12parseQuadHexERNS0_11InputStreamE +_ZN3sce4Json6Parser14parseCodePointERSbIcSt11char_traitsIcENS0_8StlAllocIcEEERNS0_11InputStreamE +_ZN3sce4Json6Parser5parseERNS0_5ValueEPFiRcPvES5_ +_ZN3sce4Json6Parser5parseERNS0_5ValueEPKc +_ZN3sce4Json6Parser5parseERNS0_5ValueEPKcm +_ZN3sce4Json6String4nposE +_ZN3sce4Json6String5clearEv +_ZN3sce4Json6String6appendEPKc +_ZN3sce4Json6String6appendEPKcm +_ZN3sce4Json6String6appendERKS1_ +_ZN3sce4Json6String6resizeEm +_ZN3sce4Json6String7reserveEm +_ZN3sce4Json6StringC1EPKc +_ZN3sce4Json6StringC1ERKS1_ +_ZN3sce4Json6StringC1Ev +_ZN3sce4Json6StringC2EPKc +_ZN3sce4Json6StringC2ERKS1_ +_ZN3sce4Json6StringC2Ev +_ZN3sce4Json6StringD1Ev +_ZN3sce4Json6StringD2Ev +_ZN3sce4Json6StringaSERKS1_ +_ZN3sce4Json6StringpLEPKc +_ZN3sce4Json6StringpLEh +_ZN3sce4Json9RootParamC1Ev +_ZN3sce4Json9RootParamC2Ev +_ZN3sce4Json9RootParamD1Ev +_ZN3sce4Json9RootParamD2Ev +_ZN3sce6Canvas6handleEh +_ZN3sce6Canvas9acquireIdEv +_ZN3sce6Canvas9releaseIdEh +_ZN3sce6CanvasC2Ev +_ZN3sce7Toolkit2NP10Challenges9Interface11consumeItemEPKNS1_23ChallengeConsumeRequestEPNS1_9Utilities6FutureINS1_22ConsumeChallengeResultEEEb +_ZN3sce7Toolkit2NP10Challenges9Interface11getItemListEPKNS1_27ChallengeGetItemListRequestEPNS1_9Utilities6FutureISt6vectorINS1_20ChallengeRecvDetailsENS1_15AppSTLAllocatorISA_EEEEEb +_ZN3sce7Toolkit2NP10Challenges9Interface12sendResponseEPKNS1_24ChallengeResponseRequestEPNS1_9Utilities6FutureINS1_21NotifyChallengeResultEEEb +_ZN3sce7Toolkit2NP10Challenges9Interface13sendChallengeEPKNS1_20ChallengeSendRequestEPNS1_9Utilities6FutureIiEEb +_ZN3sce7Toolkit2NP10Challenges9Interface16getChallengeDataEPKNS1_23ChallengeGetDataRequestEPNS1_9Utilities6FutureINS1_25ChallengeBinaryDataResultEEEb +_ZN3sce7Toolkit2NP10Challenges9Interface7getItemEPKNS1_23ChallengeGetItemRequestEPNS1_9Utilities6FutureINS1_20ChallengeRecvDetailsEEEb +_ZN3sce7Toolkit2NP10IdDatabase10addCommsIdERKNS1_15CommunicationIdENS1_11ServiceTypeE +_ZN3sce7Toolkit2NP10IdDatabase11addClientIdEPKc +_ZN3sce7Toolkit2NP10IdDatabase12getNpTitleIdEv +_ZN3sce7Toolkit2NP10IdDatabase15addServiceLabelERKjNS1_11ServiceTypeE +_ZN3sce7Toolkit2NP10IdDatabase15getAuthClientIdEv +_ZN3sce7Toolkit2NP10IdDatabase16addTitleSecretIdERKNS1_9NpTitleIdENS1_11ServiceTypeE +_ZN3sce7Toolkit2NP10IdDatabase17getNpServiceLabelENS1_11ServiceTypeE +_ZN3sce7Toolkit2NP10IdDatabase21getCommsIdsForServiceENS1_11ServiceTypeE +_ZN3sce7Toolkit2NP10IdDatabaseC1ERKNS1_15CommunicationIdE +_ZN3sce7Toolkit2NP10IdDatabaseC1ERKNS1_15CommunicationIdERKNS1_9NpTitleIdEPKc +_ZN3sce7Toolkit2NP10IdDatabaseC1ERKNS1_9NpTitleIdEPKc +_ZN3sce7Toolkit2NP10IdDatabaseC2ERKNS1_15CommunicationIdE +_ZN3sce7Toolkit2NP10IdDatabaseC2ERKNS1_15CommunicationIdERKNS1_9NpTitleIdEPKc +_ZN3sce7Toolkit2NP10IdDatabaseC2ERKNS1_9NpTitleIdEPKc +_ZN3sce7Toolkit2NP10IdDatabaseD1Ev +_ZN3sce7Toolkit2NP10IdDatabaseD2Ev +_ZN3sce7Toolkit2NP10Parameters12initStlAllocEPNS1_19AllocImplementationE +_ZN3sce7Toolkit2NP10ParametersC1EPFvRKNS1_5EventEEPvmPNS1_19AllocImplementationE +_ZN3sce7Toolkit2NP10ParametersC1EPFvRKNS1_5EventEERNS1_9NpTitleIdEPvmPNS1_19AllocImplementationE +_ZN3sce7Toolkit2NP10ParametersC1EPFvRKNS1_5EventEPvERNS1_9NpTitleIdES6_S6_mPNS1_19AllocImplementationE +_ZN3sce7Toolkit2NP10ParametersC1EPFvRKNS1_5EventEPvES6_S6_mPNS1_19AllocImplementationE +_ZN3sce7Toolkit2NP10ParametersC2EPFvRKNS1_5EventEEPvmPNS1_19AllocImplementationE +_ZN3sce7Toolkit2NP10ParametersC2EPFvRKNS1_5EventEERNS1_9NpTitleIdEPvmPNS1_19AllocImplementationE +_ZN3sce7Toolkit2NP10ParametersC2EPFvRKNS1_5EventEPvERNS1_9NpTitleIdES6_S6_mPNS1_19AllocImplementationE +_ZN3sce7Toolkit2NP10ParametersC2EPFvRKNS1_5EventEPvES6_S6_mPNS1_19AllocImplementationE +_ZN3sce7Toolkit2NP10WordFilter9Interface10filterWordEPKNS1_17FilterWordRequestEPNS1_9Utilities6FutureINS1_19WordFilterSanitizedEEEb +_ZN3sce7Toolkit2NP11EntitlementC1Ev +_ZN3sce7Toolkit2NP11EntitlementC2Ev +_ZN3sce7Toolkit2NP11MessageDataC1Ev +_ZN3sce7Toolkit2NP11MessageDataC2Ev +_ZN3sce7Toolkit2NP11TusVariableC1Eil +_ZN3sce7Toolkit2NP11TusVariableC2Eil +_ZN3sce7Toolkit2NP11UserProfile9Interface11getOnlineIdEPNS1_9Utilities6FutureI13SceNpOnlineIdEEPKNS1_18UserProfileRequestEb +_ZN3sce7Toolkit2NP11UserProfile9Interface11getOnlineIdEPNS1_9Utilities6FutureI13SceNpOnlineIdEEb +_ZN3sce7Toolkit2NP11UserProfile9Interface11getPlatformEPNS1_9Utilities6FutureIiEEPKNS1_18UserProfileRequestEb +_ZN3sce7Toolkit2NP11UserProfile9Interface11getPlatformEPNS1_9Utilities6FutureIiEEb +_ZN3sce7Toolkit2NP11UserProfile9Interface12getAvatarUrlEPNS1_9Utilities6FutureISbIcSt11char_traitsIcENS1_15AppSTLAllocatorIcEEEEEPKNS1_18UserProfileRequestEb +_ZN3sce7Toolkit2NP11UserProfile9Interface12getAvatarUrlEPNS1_9Utilities6FutureISbIcSt11char_traitsIcENS1_15AppSTLAllocatorIcEEEEEb +_ZN3sce7Toolkit2NP11UserProfile9Interface14getCountryInfoEPNS1_9Utilities6FutureINS1_11CountryInfoEEEPKNS1_18UserProfileRequestEb +_ZN3sce7Toolkit2NP11UserProfile9Interface14getCountryInfoEPNS1_9Utilities6FutureINS1_11CountryInfoEEEb +_ZN3sce7Toolkit2NP11UserProfile9Interface20getNpUserInformationEPNS1_9Utilities6FutureINS1_6NpUserEEEPKNS1_18UserProfileRequestEb +_ZN3sce7Toolkit2NP11UserProfile9Interface21getNpUsersInformationEPNS1_9Utilities6FutureINS1_7NpUsersEEEPKNS1_18UserProfileRequestEb +_ZN3sce7Toolkit2NP11UserProfile9Interface27getPersonalDetailsAvailableEPNS1_9Utilities6FutureIbEEPKNS1_18UserProfileRequestEb +_ZN3sce7Toolkit2NP11UserProfile9Interface7getNpIdEPNS1_9Utilities6FutureI7SceNpIdEEPKNS1_18UserProfileRequestEb +_ZN3sce7Toolkit2NP11UserProfile9Interface7getNpIdEPNS1_9Utilities6FutureI7SceNpIdEEb +_ZN3sce7Toolkit2NP12ActivityFeed9Interface10postInGameEPKNS1_17PostInGameRequestEPNS1_9Utilities6FutureINS1_15ActivityStoryIdEEEb +_ZN3sce7Toolkit2NP12ActivityFeed9Interface11getUserFeedEPKNS1_18GetUserFeedRequestEPNS1_9Utilities6FutureISt6vectorINS1_17ActivityFeedStoryENS1_15AppSTLAllocatorISA_EEEEEb +_ZN3sce7Toolkit2NP12ActivityFeed9Interface11getUserNewsEPKNS1_18GetUserNewsRequestEPNS1_9Utilities6FutureISt6vectorINS1_17ActivityFeedStoryENS1_15AppSTLAllocatorISA_EEEEEb +_ZN3sce7Toolkit2NP12ActivityFeed9Interface11getWhoLikedEPKNS1_18GetWhoLikedRequestEPNS1_9Utilities6FutureISt6vectorINS1_13WhoLikedStoryENS1_15AppSTLAllocatorISA_EEEEEb +_ZN3sce7Toolkit2NP12ActivityFeed9Interface12dislikeStoryEPKNS1_16LikeStoryRequestEPNS1_9Utilities6FutureIiEEb +_ZN3sce7Toolkit2NP12ActivityFeed9Interface12getTitleFeedEPKNS1_19GetTitleFeedRequestEPNS1_9Utilities6FutureISt6vectorINS1_17ActivityFeedStoryENS1_15AppSTLAllocatorISA_EEEEEb +_ZN3sce7Toolkit2NP12ActivityFeed9Interface12getTitleNewsEPKNS1_19GetTitleNewsRequestEPNS1_9Utilities6FutureISt6vectorINS1_17ActivityFeedStoryENS1_15AppSTLAllocatorISA_EEEEEb +_ZN3sce7Toolkit2NP12ActivityFeed9Interface13getPlayedWithEPKNS1_20GetPlayedWithRequestEPNS1_9Utilities6FutureISt6vectorINS1_15PlayedWithStoryENS1_15AppSTLAllocatorISA_EEEEEb +_ZN3sce7Toolkit2NP12ActivityFeed9Interface14postPlayedWithEPKNS1_17PlayedWithRequestEPNS1_9Utilities6FutureINS1_15ActivityStoryIdEEEb +_ZN3sce7Toolkit2NP12ActivityFeed9Interface15getSharedVideosEPKNS1_22GetSharedVideosRequestEPNS1_9Utilities6FutureISt6vectorINS1_28ActivityFeedSharedVideoStoryENS1_15AppSTLAllocatorISA_EEEEEb +_ZN3sce7Toolkit2NP12ActivityFeed9Interface9likeStoryEPKNS1_16LikeStoryRequestEPNS1_9Utilities6FutureIiEEb +_ZN3sce7Toolkit2NP12CategoryInfoC1Ev +_ZN3sce7Toolkit2NP12CategoryInfoC2Ev +_ZN3sce7Toolkit2NP13AttachmentURLC1Ev +_ZN3sce7Toolkit2NP13AttachmentURLC2Ev +_ZN3sce7Toolkit2NP13InviteMessageC1Ev +_ZN3sce7Toolkit2NP13InviteMessageC2Ev +_ZN3sce7Toolkit2NP13SessionMemberC1Ev +_ZN3sce7Toolkit2NP13SessionMemberC2Ev +_ZN3sce7Toolkit2NP14GameCustomData9Interface10getMessageEPKNS1_28GameCustomDataMessageRequestEPNS1_9Utilities6FutureINS1_18GameCustomDataItemEEEb +_ZN3sce7Toolkit2NP14GameCustomData9Interface10getMessageEPKNS1_28GameCustomDataMessageRequestEPNS1_9Utilities6FutureINS1_21GameCustomDataMessageEEEb +_ZN3sce7Toolkit2NP14GameCustomData9Interface11getGameDataEPKNS1_29GameCustomDataGameDataRequestEPNS1_9Utilities6FutureINS1_17MessageAttachmentEEEb +_ZN3sce7Toolkit2NP14GameCustomData9Interface11getItemListEPKNS1_26GameCustomDataItemsRequestEPNS1_9Utilities6FutureISt6vectorINS1_18GameCustomDataItemENS1_15AppSTLAllocatorISA_EEEEEb +_ZN3sce7Toolkit2NP14GameCustomData9Interface12getThumbnailEPKNS1_30GameCustomDataThumbnailRequestEPNS1_9Utilities6FutureINS1_17MessageAttachmentEEEb +_ZN3sce7Toolkit2NP14GameCustomData9Interface17setMessageUseFlagEPKNS1_28GameCustomDataUseFlagRequestEPNS1_9Utilities6FutureIiEEb +_ZN3sce7Toolkit2NP14RankingRequestC1Ev +_ZN3sce7Toolkit2NP14RankingRequestC2Ev +_ZN3sce7Toolkit2NP14TssInputParamsC1Ev +_ZN3sce7Toolkit2NP14TssInputParamsC2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorI13SceNpOnlineIdE10deallocateEPS3_m +_ZN3sce7Toolkit2NP15AppSTLAllocatorI13SceNpOnlineIdE7addressERKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorI13SceNpOnlineIdE7addressERS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorI13SceNpOnlineIdE7destroyEPS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorI13SceNpOnlineIdE8allocateEmPKv +_ZN3sce7Toolkit2NP15AppSTLAllocatorI13SceNpOnlineIdE9constructEPS3_RKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorI13SceNpOnlineIdEC1ERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorI13SceNpOnlineIdEC1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorI13SceNpOnlineIdEC2ERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorI13SceNpOnlineIdEC2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorI13SceNpOnlineIdED1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorI13SceNpOnlineIdED2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorI13SceNpOnlineIdEeqERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorI13SceNpOnlineIdEneERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorI16SceNpTusVariableE10deallocateEPS3_m +_ZN3sce7Toolkit2NP15AppSTLAllocatorI16SceNpTusVariableE7addressERKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorI16SceNpTusVariableE7addressERS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorI16SceNpTusVariableE7destroyEPS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorI16SceNpTusVariableE8allocateEmPKv +_ZN3sce7Toolkit2NP15AppSTLAllocatorI16SceNpTusVariableE9constructEPS3_RKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorI16SceNpTusVariableEC1ERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorI16SceNpTusVariableEC1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorI16SceNpTusVariableEC2ERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorI16SceNpTusVariableEC2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorI16SceNpTusVariableED1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorI16SceNpTusVariableED2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorI16SceNpTusVariableEeqERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorI16SceNpTusVariableEneERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11EntitlementEE10deallocateEPS3_m +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11EntitlementEE7addressERKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11EntitlementEE7addressERS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11EntitlementEE7destroyEPS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11EntitlementEE8allocateEmPKv +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11EntitlementEE9constructEPS3_RKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11EntitlementEEC1ERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11EntitlementEEC1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11EntitlementEEC2ERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11EntitlementEEC2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11EntitlementEED1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11EntitlementEED2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11EntitlementEEeqERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11EntitlementEEneERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11ProductInfoEE10deallocateEPS3_m +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11ProductInfoEE7addressERKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11ProductInfoEE7addressERS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11ProductInfoEE7destroyEPS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11ProductInfoEE8allocateEmPKv +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11ProductInfoEE9constructEPS3_RKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11ProductInfoEEC1ERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11ProductInfoEEC1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11ProductInfoEEC2ERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11ProductInfoEEC2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11ProductInfoEED1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11ProductInfoEED2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11ProductInfoEEeqERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11ProductInfoEEneERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11TusVariableEE10deallocateEPS3_m +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11TusVariableEE7addressERKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11TusVariableEE7addressERS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11TusVariableEE7destroyEPS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11TusVariableEE8allocateEmPKv +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11TusVariableEE9constructEPS3_RKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11TusVariableEEC1ERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11TusVariableEEC1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11TusVariableEEC2ERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11TusVariableEEC2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11TusVariableEED1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11TusVariableEED2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11TusVariableEEeqERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11TusVariableEEneERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13FriendsOfUserEE10deallocateEPS3_m +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13FriendsOfUserEE7addressERKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13FriendsOfUserEE7addressERS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13FriendsOfUserEE7destroyEPS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13FriendsOfUserEE8allocateEmPKv +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13FriendsOfUserEE9constructEPS3_RKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13FriendsOfUserEEC1ERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13FriendsOfUserEEC1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13FriendsOfUserEEC2ERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13FriendsOfUserEEC2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13FriendsOfUserEED1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13FriendsOfUserEED2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13FriendsOfUserEEeqERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13FriendsOfUserEEneERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13SessionMemberEE10deallocateEPS3_m +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13SessionMemberEE7addressERKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13SessionMemberEE7addressERS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13SessionMemberEE7destroyEPS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13SessionMemberEE8allocateEmPKv +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13SessionMemberEE9constructEPS3_RKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13SessionMemberEEC1ERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13SessionMemberEEC1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13SessionMemberEEC2ERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13SessionMemberEEC2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13SessionMemberEED1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13SessionMemberEED2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13SessionMemberEEeqERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13SessionMemberEEneERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13WhoLikedStoryEE10deallocateEPS3_m +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13WhoLikedStoryEE7addressERKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13WhoLikedStoryEE7addressERS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13WhoLikedStoryEE7destroyEPS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13WhoLikedStoryEE8allocateEmPKv +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13WhoLikedStoryEE9constructEPS3_RKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13WhoLikedStoryEEC1ERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13WhoLikedStoryEEC1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13WhoLikedStoryEEC2ERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13WhoLikedStoryEEC2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13WhoLikedStoryEED1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13WhoLikedStoryEED2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13WhoLikedStoryEEeqERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13WhoLikedStoryEEneERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15CategoryInfoSubEE10deallocateEPS3_m +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15CategoryInfoSubEE7addressERKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15CategoryInfoSubEE7addressERS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15CategoryInfoSubEE7destroyEPS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15CategoryInfoSubEE8allocateEmPKv +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15CategoryInfoSubEE9constructEPS3_RKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15CategoryInfoSubEEC1ERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15CategoryInfoSubEEC1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15CategoryInfoSubEEC2ERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15CategoryInfoSubEEC2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15CategoryInfoSubEED1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15CategoryInfoSubEED2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15CategoryInfoSubEEeqERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15CategoryInfoSubEEneERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15NpSessionMemberEE10deallocateEPS3_m +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15NpSessionMemberEE7addressERKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15NpSessionMemberEE7addressERS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15NpSessionMemberEE7destroyEPS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15NpSessionMemberEE8allocateEmPKv +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15NpSessionMemberEE9constructEPS3_RKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15NpSessionMemberEEC1ERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15NpSessionMemberEEC1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15NpSessionMemberEEC2ERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15NpSessionMemberEEC2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15NpSessionMemberEED1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15NpSessionMemberEED2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15NpSessionMemberEEeqERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15NpSessionMemberEEneERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15PlayedWithStoryEE10deallocateEPS3_m +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15PlayedWithStoryEE7addressERKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15PlayedWithStoryEE7addressERS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15PlayedWithStoryEE7destroyEPS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15PlayedWithStoryEE8allocateEmPKv +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15PlayedWithStoryEE9constructEPS3_RKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15PlayedWithStoryEEC1ERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15PlayedWithStoryEEC1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15PlayedWithStoryEEC2ERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15PlayedWithStoryEEC2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15PlayedWithStoryEED1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15PlayedWithStoryEED2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15PlayedWithStoryEEeqERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15PlayedWithStoryEEneERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_16SessionAttributeEE10deallocateEPS3_m +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_16SessionAttributeEE7addressERKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_16SessionAttributeEE7addressERS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_16SessionAttributeEE7destroyEPS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_16SessionAttributeEE8allocateEmPKv +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_16SessionAttributeEE9constructEPS3_RKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_16SessionAttributeEEC1ERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_16SessionAttributeEEC1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_16SessionAttributeEEC2ERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_16SessionAttributeEEC2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_16SessionAttributeEED1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_16SessionAttributeEED2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_16SessionAttributeEEeqERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_16SessionAttributeEEneERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_17ActivityFeedStoryEE10deallocateEPS3_m +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_17ActivityFeedStoryEE7addressERKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_17ActivityFeedStoryEE7addressERS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_17ActivityFeedStoryEE7destroyEPS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_17ActivityFeedStoryEE8allocateEmPKv +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_17ActivityFeedStoryEE9constructEPS3_RKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_17ActivityFeedStoryEEC1ERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_17ActivityFeedStoryEEC1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_17ActivityFeedStoryEEC2ERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_17ActivityFeedStoryEEC2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_17ActivityFeedStoryEED1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_17ActivityFeedStoryEED2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_17ActivityFeedStoryEEeqERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_17ActivityFeedStoryEEneERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18GameCustomDataItemEE10deallocateEPS3_m +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18GameCustomDataItemEE7addressERKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18GameCustomDataItemEE7addressERS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18GameCustomDataItemEE7destroyEPS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18GameCustomDataItemEE8allocateEmPKv +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18GameCustomDataItemEE9constructEPS3_RKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18GameCustomDataItemEEC1ERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18GameCustomDataItemEEC1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18GameCustomDataItemEEC2ERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18GameCustomDataItemEEC2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18GameCustomDataItemEED1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18GameCustomDataItemEED2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18GameCustomDataItemEEeqERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18GameCustomDataItemEEneERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18SessionInformationEE10deallocateEPS3_m +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18SessionInformationEE7addressERKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18SessionInformationEE7addressERS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18SessionInformationEE7destroyEPS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18SessionInformationEE8allocateEmPKv +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18SessionInformationEE9constructEPS3_RKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18SessionInformationEEC1ERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18SessionInformationEEC1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18SessionInformationEEC2ERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18SessionInformationEEC2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18SessionInformationEED1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18SessionInformationEED2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18SessionInformationEEeqERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18SessionInformationEEneERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_19ProductInfoDetailedEE10deallocateEPS3_m +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_19ProductInfoDetailedEE7addressERKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_19ProductInfoDetailedEE7addressERS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_19ProductInfoDetailedEE7destroyEPS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_19ProductInfoDetailedEE8allocateEmPKv +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_19ProductInfoDetailedEE9constructEPS3_RKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_19ProductInfoDetailedEEC1ERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_19ProductInfoDetailedEEC1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_19ProductInfoDetailedEEC2ERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_19ProductInfoDetailedEEC2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_19ProductInfoDetailedEED1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_19ProductInfoDetailedEED2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_19ProductInfoDetailedEEeqERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_19ProductInfoDetailedEEneERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_20ChallengeRecvDetailsEE10deallocateEPS3_m +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_20ChallengeRecvDetailsEE7addressERKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_20ChallengeRecvDetailsEE7addressERS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_20ChallengeRecvDetailsEE7destroyEPS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_20ChallengeRecvDetailsEE8allocateEmPKv +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_20ChallengeRecvDetailsEE9constructEPS3_RKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_20ChallengeRecvDetailsEEC1ERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_20ChallengeRecvDetailsEEC1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_20ChallengeRecvDetailsEEC2ERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_20ChallengeRecvDetailsEEC2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_20ChallengeRecvDetailsEED1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_20ChallengeRecvDetailsEED2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_20ChallengeRecvDetailsEEeqERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_20ChallengeRecvDetailsEEneERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_23NpSessionInvitationInfoEE10deallocateEPS3_m +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_23NpSessionInvitationInfoEE7addressERKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_23NpSessionInvitationInfoEE7addressERS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_23NpSessionInvitationInfoEE7destroyEPS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_23NpSessionInvitationInfoEE8allocateEmPKv +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_23NpSessionInvitationInfoEE9constructEPS3_RKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_23NpSessionInvitationInfoEEC1ERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_23NpSessionInvitationInfoEEC1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_23NpSessionInvitationInfoEEC2ERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_23NpSessionInvitationInfoEEC2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_23NpSessionInvitationInfoEED1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_23NpSessionInvitationInfoEED2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_23NpSessionInvitationInfoEEeqERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_23NpSessionInvitationInfoEEneERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_26ActivityFeedCondensedStoryEE10deallocateEPS3_m +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_26ActivityFeedCondensedStoryEE7addressERKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_26ActivityFeedCondensedStoryEE7addressERS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_26ActivityFeedCondensedStoryEE7destroyEPS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_26ActivityFeedCondensedStoryEE8allocateEmPKv +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_26ActivityFeedCondensedStoryEE9constructEPS3_RKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_26ActivityFeedCondensedStoryEEC1ERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_26ActivityFeedCondensedStoryEEC1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_26ActivityFeedCondensedStoryEEC2ERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_26ActivityFeedCondensedStoryEEC2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_26ActivityFeedCondensedStoryEED1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_26ActivityFeedCondensedStoryEED2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_26ActivityFeedCondensedStoryEEeqERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_26ActivityFeedCondensedStoryEEneERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_28ActivityFeedSharedVideoStoryEE10deallocateEPS3_m +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_28ActivityFeedSharedVideoStoryEE7addressERKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_28ActivityFeedSharedVideoStoryEE7addressERS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_28ActivityFeedSharedVideoStoryEE7destroyEPS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_28ActivityFeedSharedVideoStoryEE8allocateEmPKv +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_28ActivityFeedSharedVideoStoryEE9constructEPS3_RKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_28ActivityFeedSharedVideoStoryEEC1ERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_28ActivityFeedSharedVideoStoryEEC1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_28ActivityFeedSharedVideoStoryEEC2ERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_28ActivityFeedSharedVideoStoryEEC2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_28ActivityFeedSharedVideoStoryEED1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_28ActivityFeedSharedVideoStoryEED2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_28ActivityFeedSharedVideoStoryEEeqERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_28ActivityFeedSharedVideoStoryEEneERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_33ActivityFeedSharedScreenshotStoryEE10deallocateEPS3_m +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_33ActivityFeedSharedScreenshotStoryEE7addressERKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_33ActivityFeedSharedScreenshotStoryEE7addressERS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_33ActivityFeedSharedScreenshotStoryEE7destroyEPS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_33ActivityFeedSharedScreenshotStoryEE8allocateEmPKv +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_33ActivityFeedSharedScreenshotStoryEE9constructEPS3_RKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_33ActivityFeedSharedScreenshotStoryEEC1ERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_33ActivityFeedSharedScreenshotStoryEEC1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_33ActivityFeedSharedScreenshotStoryEEC2ERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_33ActivityFeedSharedScreenshotStoryEEC2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_33ActivityFeedSharedScreenshotStoryEED1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_33ActivityFeedSharedScreenshotStoryEED2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_33ActivityFeedSharedScreenshotStoryEEeqERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_33ActivityFeedSharedScreenshotStoryEEneERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_34DetailedProductInfoListInputParams9ProductIdEE10deallocateEPS4_m +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_34DetailedProductInfoListInputParams9ProductIdEE7addressERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_34DetailedProductInfoListInputParams9ProductIdEE7addressERS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_34DetailedProductInfoListInputParams9ProductIdEE7destroyEPS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_34DetailedProductInfoListInputParams9ProductIdEE8allocateEmPKv +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_34DetailedProductInfoListInputParams9ProductIdEE9constructEPS4_RKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_34DetailedProductInfoListInputParams9ProductIdEEC1ERKS5_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_34DetailedProductInfoListInputParams9ProductIdEEC1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_34DetailedProductInfoListInputParams9ProductIdEEC2ERKS5_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_34DetailedProductInfoListInputParams9ProductIdEEC2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_34DetailedProductInfoListInputParams9ProductIdEED1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_34DetailedProductInfoListInputParams9ProductIdEED2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_34DetailedProductInfoListInputParams9ProductIdEEeqERKS5_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_34DetailedProductInfoListInputParams9ProductIdEEneERKS5_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_6NpUserEE10deallocateEPS3_m +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_6NpUserEE7addressERKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_6NpUserEE7addressERS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_6NpUserEE7destroyEPS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_6NpUserEE8allocateEmPKv +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_6NpUserEE9constructEPS3_RKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_6NpUserEEC1ERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_6NpUserEEC1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_6NpUserEEC2ERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_6NpUserEEC2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_6NpUserEED1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_6NpUserEED2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_6NpUserEEeqERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_6NpUserEEneERKS4_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISbIcSt11char_traitsIcENS2_IcEEEE10deallocateEPS6_m +_ZN3sce7Toolkit2NP15AppSTLAllocatorISbIcSt11char_traitsIcENS2_IcEEEE7addressERKS6_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISbIcSt11char_traitsIcENS2_IcEEEE7addressERS6_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISbIcSt11char_traitsIcENS2_IcEEEE7destroyEPS6_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISbIcSt11char_traitsIcENS2_IcEEEE8allocateEmPKv +_ZN3sce7Toolkit2NP15AppSTLAllocatorISbIcSt11char_traitsIcENS2_IcEEEE9constructEPS6_RKS6_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISbIcSt11char_traitsIcENS2_IcEEEEC1ERKS7_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISbIcSt11char_traitsIcENS2_IcEEEEC1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorISbIcSt11char_traitsIcENS2_IcEEEEC2ERKS7_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISbIcSt11char_traitsIcENS2_IcEEEEC2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorISbIcSt11char_traitsIcENS2_IcEEEED1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorISbIcSt11char_traitsIcENS2_IcEEEED2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorISbIcSt11char_traitsIcENS2_IcEEEEeqERKS7_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISbIcSt11char_traitsIcENS2_IcEEEEneERKS7_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeINS1_11TusVariableEPvEE10deallocateEPS6_m +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeINS1_11TusVariableEPvEE7addressERKS6_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeINS1_11TusVariableEPvEE7addressERS6_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeINS1_11TusVariableEPvEE7destroyEPS6_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeINS1_11TusVariableEPvEE8allocateEmPKv +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeINS1_11TusVariableEPvEE9constructEPS6_RKS6_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeINS1_11TusVariableEPvEEC1ERKS7_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeINS1_11TusVariableEPvEEC1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeINS1_11TusVariableEPvEEC2ERKS7_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeINS1_11TusVariableEPvEEC2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeINS1_11TusVariableEPvEED1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeINS1_11TusVariableEPvEED2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeINS1_11TusVariableEPvEEeqERKS7_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeINS1_11TusVariableEPvEEneERKS7_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeIPcPvEE10deallocateEPS6_m +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeIPcPvEE7addressERKS6_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeIPcPvEE7addressERS6_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeIPcPvEE7destroyEPS6_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeIPcPvEE8allocateEmPKv +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeIPcPvEE9constructEPS6_RKS6_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeIPcPvEEC1ERKS7_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeIPcPvEEC1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeIPcPvEEC2ERKS7_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeIPcPvEEC2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeIPcPvEED1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeIPcPvEED2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeIPcPvEEeqERKS7_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeIPcPvEEneERKS7_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_11TusVariableENS2_IS4_EEEE10deallocateEPS6_m +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_11TusVariableENS2_IS4_EEEE7addressERKS6_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_11TusVariableENS2_IS4_EEEE7addressERS6_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_11TusVariableENS2_IS4_EEEE7destroyEPS6_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_11TusVariableENS2_IS4_EEEE8allocateEmPKv +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_11TusVariableENS2_IS4_EEEE9constructEPS6_RKS6_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_11TusVariableENS2_IS4_EEEEC1ERKS7_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_11TusVariableENS2_IS4_EEEEC1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_11TusVariableENS2_IS4_EEEEC2ERKS7_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_11TusVariableENS2_IS4_EEEEC2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_11TusVariableENS2_IS4_EEEED1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_11TusVariableENS2_IS4_EEEED2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_11TusVariableENS2_IS4_EEEEeqERKS7_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_11TusVariableENS2_IS4_EEEEneERKS7_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_15CategoryInfoSubENS2_IS4_EEEE10deallocateEPS6_m +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_15CategoryInfoSubENS2_IS4_EEEE7addressERKS6_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_15CategoryInfoSubENS2_IS4_EEEE7addressERS6_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_15CategoryInfoSubENS2_IS4_EEEE7destroyEPS6_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_15CategoryInfoSubENS2_IS4_EEEE8allocateEmPKv +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_15CategoryInfoSubENS2_IS4_EEEE9constructEPS6_RKS6_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_15CategoryInfoSubENS2_IS4_EEEEC1ERKS7_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_15CategoryInfoSubENS2_IS4_EEEEC1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_15CategoryInfoSubENS2_IS4_EEEEC2ERKS7_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_15CategoryInfoSubENS2_IS4_EEEEC2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_15CategoryInfoSubENS2_IS4_EEEED1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_15CategoryInfoSubENS2_IS4_EEEED2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_15CategoryInfoSubENS2_IS4_EEEEeqERKS7_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_15CategoryInfoSubENS2_IS4_EEEEneERKS7_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt6vectorI16SceNpTusVariableNS2_IS4_EEEE10deallocateEPS6_m +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt6vectorI16SceNpTusVariableNS2_IS4_EEEE7addressERKS6_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt6vectorI16SceNpTusVariableNS2_IS4_EEEE7addressERS6_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt6vectorI16SceNpTusVariableNS2_IS4_EEEE7destroyEPS6_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt6vectorI16SceNpTusVariableNS2_IS4_EEEE8allocateEmPKv +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt6vectorI16SceNpTusVariableNS2_IS4_EEEE9constructEPS6_RKS6_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt6vectorI16SceNpTusVariableNS2_IS4_EEEEC1ERKS7_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt6vectorI16SceNpTusVariableNS2_IS4_EEEEC1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt6vectorI16SceNpTusVariableNS2_IS4_EEEEC2ERKS7_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt6vectorI16SceNpTusVariableNS2_IS4_EEEEC2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt6vectorI16SceNpTusVariableNS2_IS4_EEEED1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt6vectorI16SceNpTusVariableNS2_IS4_EEEED2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt6vectorI16SceNpTusVariableNS2_IS4_EEEEeqERKS7_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorISt6vectorI16SceNpTusVariableNS2_IS4_EEEEneERKS7_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorIcE10deallocateEPcm +_ZN3sce7Toolkit2NP15AppSTLAllocatorIcE7addressERKc +_ZN3sce7Toolkit2NP15AppSTLAllocatorIcE7addressERc +_ZN3sce7Toolkit2NP15AppSTLAllocatorIcE7destroyEPc +_ZN3sce7Toolkit2NP15AppSTLAllocatorIcE8allocateEmPKv +_ZN3sce7Toolkit2NP15AppSTLAllocatorIcE9constructEPcRKc +_ZN3sce7Toolkit2NP15AppSTLAllocatorIcEC1ERKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorIcEC1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorIcEC2ERKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorIcEC2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorIcED1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorIcED2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorIcEeqERKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorIcEneERKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorIiE10deallocateEPim +_ZN3sce7Toolkit2NP15AppSTLAllocatorIiE7addressERKi +_ZN3sce7Toolkit2NP15AppSTLAllocatorIiE7addressERi +_ZN3sce7Toolkit2NP15AppSTLAllocatorIiE7destroyEPi +_ZN3sce7Toolkit2NP15AppSTLAllocatorIiE8allocateEmPKv +_ZN3sce7Toolkit2NP15AppSTLAllocatorIiE9constructEPiRKi +_ZN3sce7Toolkit2NP15AppSTLAllocatorIiEC1ERKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorIiEC1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorIiEC2ERKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorIiEC2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorIiED1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorIiED2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorIiEeqERKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorIiEneERKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorItE10deallocateEPtm +_ZN3sce7Toolkit2NP15AppSTLAllocatorItE7addressERKt +_ZN3sce7Toolkit2NP15AppSTLAllocatorItE7addressERt +_ZN3sce7Toolkit2NP15AppSTLAllocatorItE7destroyEPt +_ZN3sce7Toolkit2NP15AppSTLAllocatorItE8allocateEmPKv +_ZN3sce7Toolkit2NP15AppSTLAllocatorItE9constructEPtRKt +_ZN3sce7Toolkit2NP15AppSTLAllocatorItEC1ERKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorItEC1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorItEC2ERKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorItEC2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorItED1Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorItED2Ev +_ZN3sce7Toolkit2NP15AppSTLAllocatorItEeqERKS3_ +_ZN3sce7Toolkit2NP15AppSTLAllocatorItEneERKS3_ +_ZN3sce7Toolkit2NP15CategoryInfoSubC1Ev +_ZN3sce7Toolkit2NP15CategoryInfoSubC2Ev +_ZN3sce7Toolkit2NP15CommunicationIdC1ERK20SceNpCommunicationIdRK28SceNpCommunicationPassphraseRK27SceNpCommunicationSignature +_ZN3sce7Toolkit2NP15CommunicationIdC1ERKSbIcSt11char_traitsIcENS1_15AppSTLAllocatorIcEEES9_S9_ +_ZN3sce7Toolkit2NP15CommunicationIdC1Ev +_ZN3sce7Toolkit2NP15CommunicationIdC2ERK20SceNpCommunicationIdRK28SceNpCommunicationPassphraseRK27SceNpCommunicationSignature +_ZN3sce7Toolkit2NP15CommunicationIdC2ERKSbIcSt11char_traitsIcENS1_15AppSTLAllocatorIcEEES9_S9_ +_ZN3sce7Toolkit2NP15CommunicationIdC2Ev +_ZN3sce7Toolkit2NP15NpIdListRequestC1Ev +_ZN3sce7Toolkit2NP15NpIdListRequestC2Ev +_ZN3sce7Toolkit2NP15PresenceDetailsC1Ev +_ZN3sce7Toolkit2NP15PresenceDetailsC2Ev +_ZN3sce7Toolkit2NP15PresenceRequestC1Ev +_ZN3sce7Toolkit2NP15PresenceRequestC2Ev +_ZN3sce7Toolkit2NP15SnsPostFacebookC1Ev +_ZN3sce7Toolkit2NP15SnsPostFacebookC2Ev +_ZN3sce7Toolkit2NP15UserRankRequestC1Ev +_ZN3sce7Toolkit2NP15UserRankRequestC2Ev +_ZN3sce7Toolkit2NP16AttachmentDetailC1Ev +_ZN3sce7Toolkit2NP16AttachmentDetailC2Ev +_ZN3sce7Toolkit2NP16EventListRequestC1Ev +_ZN3sce7Toolkit2NP16EventListRequestC2Ev +_ZN3sce7Toolkit2NP16LikeStoryRequestC1Ev +_ZN3sce7Toolkit2NP16LikeStoryRequestC2Ev +_ZN3sce7Toolkit2NP16NpSessionRequestC1Ev +_ZN3sce7Toolkit2NP16NpSessionRequestC2Ev +_ZN3sce7Toolkit2NP17FriendInfoRequestC1Ev +_ZN3sce7Toolkit2NP17FriendInfoRequestC2Ev +_ZN3sce7Toolkit2NP17FriendRankRequestC1Ev +_ZN3sce7Toolkit2NP17FriendRankRequestC2Ev +_ZN3sce7Toolkit2NP17KickMemberRequestC1Ev +_ZN3sce7Toolkit2NP17KickMemberRequestC2Ev +_ZN3sce7Toolkit2NP17MessageAttachment17setAttachmentDataEPcm +_ZN3sce7Toolkit2NP17MessageAttachmentC1Ev +_ZN3sce7Toolkit2NP17MessageAttachmentD1Ev +_ZN3sce7Toolkit2NP17PlayedWithRequestC1Ev +_ZN3sce7Toolkit2NP17PlayedWithRequestC2Ev +_ZN3sce7Toolkit2NP17PostInGameRequestC1Ev +_ZN3sce7Toolkit2NP17PostInGameRequestC2Ev +_ZN3sce7Toolkit2NP18GetUserFeedRequestC1Ev +_ZN3sce7Toolkit2NP18GetUserFeedRequestC2Ev +_ZN3sce7Toolkit2NP18GetUserNewsRequestC1Ev +_ZN3sce7Toolkit2NP18GetUserNewsRequestC2Ev +_ZN3sce7Toolkit2NP18GetWhoLikedRequestC1Ev +_ZN3sce7Toolkit2NP18GetWhoLikedRequestC2Ev +_ZN3sce7Toolkit2NP18JoinSessionRequestC1Ev +_ZN3sce7Toolkit2NP18JoinSessionRequestC2Ev +_ZN3sce7Toolkit2NP18SessionInformation5resetEv +_ZN3sce7Toolkit2NP18SessionInformationC1Ev +_ZN3sce7Toolkit2NP18SessionInformationC2Ev +_ZN3sce7Toolkit2NP18UserProfileRequestC1Ev +_ZN3sce7Toolkit2NP18UserProfileRequestC2Ev +_ZN3sce7Toolkit2NP18VoucherInputParamsC1Ev +_ZN3sce7Toolkit2NP18VoucherInputParamsC2Ev +_ZN3sce7Toolkit2NP19ActivityFeedRequestC1Ev +_ZN3sce7Toolkit2NP19ActivityFeedRequestC2Ev +_ZN3sce7Toolkit2NP19AllocImplementation10deallocateEPvj +_ZN3sce7Toolkit2NP19AllocImplementation13externalAllocE +_ZN3sce7Toolkit2NP19AllocImplementation8allocateEi +_ZN3sce7Toolkit2NP19AllocImplementationD0Ev +_ZN3sce7Toolkit2NP19AllocImplementationD1Ev +_ZN3sce7Toolkit2NP19AllocImplementationD2Ev +_ZN3sce7Toolkit2NP19CheckoutInputParamsC1Ev +_ZN3sce7Toolkit2NP19CheckoutInputParamsC2Ev +_ZN3sce7Toolkit2NP19FriendOfUserRequestC1Ev +_ZN3sce7Toolkit2NP19FriendOfUserRequestC2Ev +_ZN3sce7Toolkit2NP19GetTitleFeedRequestC1Ev +_ZN3sce7Toolkit2NP19GetTitleFeedRequestC2Ev +_ZN3sce7Toolkit2NP19GetTitleNewsRequestC1Ev +_ZN3sce7Toolkit2NP19GetTitleNewsRequestC2Ev +_ZN3sce7Toolkit2NP19JoinPlusInputParamsC1Ev +_ZN3sce7Toolkit2NP19JoinPlusInputParamsC2Ev +_ZN3sce7Toolkit2NP19ProductBrowseParamsC1Ev +_ZN3sce7Toolkit2NP19ProductBrowseParamsC2Ev +_ZN3sce7Toolkit2NP19RangeOfRanksRequestC1Ev +_ZN3sce7Toolkit2NP19RangeOfRanksRequestC2Ev +_ZN3sce7Toolkit2NP19TusDeleteDataParamsC1Ev +_ZN3sce7Toolkit2NP19TusDeleteDataParamsC2Ev +_ZN3sce7Toolkit2NP20CategoryBrowseParamsC1Ev +_ZN3sce7Toolkit2NP20CategoryBrowseParamsC2Ev +_ZN3sce7Toolkit2NP20ChallengeRecvDetailsC1Ev +_ZN3sce7Toolkit2NP20ChallengeRecvDetailsC2Ev +_ZN3sce7Toolkit2NP20ChallengeSendRequestC1Ev +_ZN3sce7Toolkit2NP20ChallengeSendRequestC2Ev +_ZN3sce7Toolkit2NP20CreateSessionRequestC1Ev +_ZN3sce7Toolkit2NP20CreateSessionRequestC2Ev +_ZN3sce7Toolkit2NP20GetPlayedWithRequestC1Ev +_ZN3sce7Toolkit2NP20GetPlayedWithRequestC2Ev +_ZN3sce7Toolkit2NP20JoinNpSessionRequestC1Ev +_ZN3sce7Toolkit2NP20JoinNpSessionRequestC2Ev +_ZN3sce7Toolkit2NP20ModifySessionRequestC1Ev +_ZN3sce7Toolkit2NP20ModifySessionRequestC2Ev +_ZN3sce7Toolkit2NP20RegisterScoreRequestC1Ev +_ZN3sce7Toolkit2NP20RegisterScoreRequestC2Ev +_ZN3sce7Toolkit2NP21AccessCodeInputParamsC1Ev +_ZN3sce7Toolkit2NP21AccessCodeInputParamsC2Ev +_ZN3sce7Toolkit2NP21InvitationDataRequestC1Ev +_ZN3sce7Toolkit2NP21InvitationDataRequestC2Ev +_ZN3sce7Toolkit2NP21InvitationInfoRequestC1Ev +_ZN3sce7Toolkit2NP21InvitationInfoRequestC2Ev +_ZN3sce7Toolkit2NP21InvitationListRequestC1Ev +_ZN3sce7Toolkit2NP21InvitationListRequestC2Ev +_ZN3sce7Toolkit2NP21ReceiveMessageRequestC1Ev +_ZN3sce7Toolkit2NP21ReceiveMessageRequestC2Ev +_ZN3sce7Toolkit2NP21RegisterTrophyRequestC1Ev +_ZN3sce7Toolkit2NP21RegisterTrophyRequestC2Ev +_ZN3sce7Toolkit2NP21SearchSessionsRequestC1Ev +_ZN3sce7Toolkit2NP21SearchSessionsRequestC2Ev +_ZN3sce7Toolkit2NP21TusGetDataInputParamsC1Ev +_ZN3sce7Toolkit2NP21TusGetDataInputParamsC2Ev +_ZN3sce7Toolkit2NP21TusGetVarsInputParamsC1Ev +_ZN3sce7Toolkit2NP21TusGetVarsInputParamsC2Ev +_ZN3sce7Toolkit2NP21TusSetDataInputParamsC1Ev +_ZN3sce7Toolkit2NP21TusSetDataInputParamsC2Ev +_ZN3sce7Toolkit2NP21TusSetVarsInputParamsC1Ev +_ZN3sce7Toolkit2NP21TusSetVarsInputParamsC2Ev +_ZN3sce7Toolkit2NP22BlockedListInfoRequestC1Ev +_ZN3sce7Toolkit2NP22BlockedListInfoRequestC2Ev +_ZN3sce7Toolkit2NP22CreateNpSessionRequestC1Ev +_ZN3sce7Toolkit2NP22CreateNpSessionRequestC2Ev +_ZN3sce7Toolkit2NP22GetSharedVideosRequestC1Ev +_ZN3sce7Toolkit2NP22GetSharedVideosRequestC2Ev +_ZN3sce7Toolkit2NP22ProductListInputParamsC1Ev +_ZN3sce7Toolkit2NP22ProductListInputParamsC2Ev +_ZN3sce7Toolkit2NP22SearchNpSessionRequestC1Ev +_ZN3sce7Toolkit2NP22SearchNpSessionRequestC2Ev +_ZN3sce7Toolkit2NP22UpdateAttributeRequestC1Ev +_ZN3sce7Toolkit2NP22UpdateAttributeRequestC2Ev +_ZN3sce7Toolkit2NP22UpdateNpSessionRequestC1Ev +_ZN3sce7Toolkit2NP22UpdateNpSessionRequestC2Ev +_ZN3sce7Toolkit2NP23CategoryInfoInputParamsC1Ev +_ZN3sce7Toolkit2NP23CategoryInfoInputParamsC2Ev +_ZN3sce7Toolkit2NP23ChallengeConsumeRequestC1Ev +_ZN3sce7Toolkit2NP23ChallengeConsumeRequestC2Ev +_ZN3sce7Toolkit2NP23ChallengeGetDataRequestC1Ev +_ZN3sce7Toolkit2NP23ChallengeGetDataRequestC2Ev +_ZN3sce7Toolkit2NP23ChallengeGetItemRequestC1Ev +_ZN3sce7Toolkit2NP23ChallengeGetItemRequestC2Ev +_ZN3sce7Toolkit2NP23DownloadListInputParamsC1Ev +_ZN3sce7Toolkit2NP23DownloadListInputParamsC2Ev +_ZN3sce7Toolkit2NP23EventInformationRequestC1Ev +_ZN3sce7Toolkit2NP23EventInformationRequestC2Ev +_ZN3sce7Toolkit2NP23ModifySessionAttributesC1Ev +_ZN3sce7Toolkit2NP23ModifySessionAttributesC2Ev +_ZN3sce7Toolkit2NP23TssGetStatusInputParamsC1Ev +_ZN3sce7Toolkit2NP23TssGetStatusInputParamsC2Ev +_ZN3sce7Toolkit2NP24ChallengeResponseRequestC1Ev +_ZN3sce7Toolkit2NP24ChallengeResponseRequestC2Ev +_ZN3sce7Toolkit2NP24CheckAvailabilityRequestC1Ev +_ZN3sce7Toolkit2NP24CheckAvailabilityRequestC2Ev +_ZN3sce7Toolkit2NP24InviteJoinSessionRequestC1Ev +_ZN3sce7Toolkit2NP24InviteJoinSessionRequestC2Ev +_ZN3sce7Toolkit2NP24SendInGameMessageRequestC1Ev +_ZN3sce7Toolkit2NP24SendInGameMessageRequestC2Ev +_ZN3sce7Toolkit2NP25PostInvitationDataRequestC1Ev +_ZN3sce7Toolkit2NP25PostInvitationDataRequestC2Ev +_ZN3sce7Toolkit2NP26GameCustomDataItemsRequestC1Ev +_ZN3sce7Toolkit2NP26GameCustomDataItemsRequestC2Ev +_ZN3sce7Toolkit2NP26GetEntitlementsInputParamsC1Ev +_ZN3sce7Toolkit2NP26GetEntitlementsInputParamsC2Ev +_ZN3sce7Toolkit2NP26TusAddAndGetVarInputParamsC1Ev +_ZN3sce7Toolkit2NP26TusAddAndGetVarInputParamsC2Ev +_ZN3sce7Toolkit2NP27ChallengeGetItemListRequestC1Ev +_ZN3sce7Toolkit2NP27ChallengeGetItemListRequestC2Ev +_ZN3sce7Toolkit2NP27GetSharedScreenshotsRequestC1Ev +_ZN3sce7Toolkit2NP27GetSharedScreenshotsRequestC2Ev +_ZN3sce7Toolkit2NP27ReceiveInGameMessageRequestC1Ev +_ZN3sce7Toolkit2NP27ReceiveInGameMessageRequestC2Ev +_ZN3sce7Toolkit2NP28AdditionalSessionInfoRequestC1Ev +_ZN3sce7Toolkit2NP28AdditionalSessionInfoRequestC2Ev +_ZN3sce7Toolkit2NP28GameCustomDataMessageRequestC1Ev +_ZN3sce7Toolkit2NP28GameCustomDataMessageRequestC2Ev +_ZN3sce7Toolkit2NP28GameCustomDataUseFlagRequestC1Ev +_ZN3sce7Toolkit2NP28GameCustomDataUseFlagRequestC2Ev +_ZN3sce7Toolkit2NP28NpSessionDetailedInformationC1Ev +_ZN3sce7Toolkit2NP28NpSessionDetailedInformationC2Ev +_ZN3sce7Toolkit2NP28NpSessionDetailedInformationD1Ev +_ZN3sce7Toolkit2NP28NpSessionDetailedInformationD2Ev +_ZN3sce7Toolkit2NP29ConsumeEntitlementInputParamsC1Ev +_ZN3sce7Toolkit2NP29ConsumeEntitlementInputParamsC2Ev +_ZN3sce7Toolkit2NP29GameCustomDataGameDataRequestC1Ev +_ZN3sce7Toolkit2NP29GameCustomDataGameDataRequestC2Ev +_ZN3sce7Toolkit2NP2V210Tournament10TeamMemberC1ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament10TeamMemberC1Ev +_ZN3sce7Toolkit2NP2V210Tournament10TeamMemberC2ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament10TeamMemberC2Ev +_ZN3sce7Toolkit2NP2V210Tournament10TeamMemberD1Ev +_ZN3sce7Toolkit2NP2V210Tournament10TeamMemberD2Ev +_ZN3sce7Toolkit2NP2V210Tournament10TeamMemberaSERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament10TournamentC1ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament10TournamentC1Ev +_ZN3sce7Toolkit2NP2V210Tournament10TournamentC2ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament10TournamentC2Ev +_ZN3sce7Toolkit2NP2V210Tournament10TournamentD1Ev +_ZN3sce7Toolkit2NP2V210Tournament10TournamentD2Ev +_ZN3sce7Toolkit2NP2V210Tournament10TournamentaSERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament10getBracketERKNS3_7Request10GetBracketEPNS2_4Core8ResponseINS3_7BracketEEE +_ZN3sce7Toolkit2NP2V210Tournament12EventDetails5resetEv +_ZN3sce7Toolkit2NP2V210Tournament12EventDetails8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament12EventDetailsC1ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament12EventDetailsC1Ev +_ZN3sce7Toolkit2NP2V210Tournament12EventDetailsC2ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament12EventDetailsC2Ev +_ZN3sce7Toolkit2NP2V210Tournament12EventDetailsD1Ev +_ZN3sce7Toolkit2NP2V210Tournament12EventDetailsD2Ev +_ZN3sce7Toolkit2NP2V210Tournament12EventDetailsaSERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament12GenericEvent5resetEv +_ZN3sce7Toolkit2NP2V210Tournament12GenericEvent8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament12GenericEventC1ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament12GenericEventC1Ev +_ZN3sce7Toolkit2NP2V210Tournament12GenericEventC2ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament12GenericEventC2Ev +_ZN3sce7Toolkit2NP2V210Tournament12GenericEventD1Ev +_ZN3sce7Toolkit2NP2V210Tournament12GenericEventD2Ev +_ZN3sce7Toolkit2NP2V210Tournament12GenericEventaSERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament12MatchDetails5resetEv +_ZN3sce7Toolkit2NP2V210Tournament12MatchDetails8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament12MatchDetailsC1ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament12MatchDetailsC1Ev +_ZN3sce7Toolkit2NP2V210Tournament12MatchDetailsC2ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament12MatchDetailsC2Ev +_ZN3sce7Toolkit2NP2V210Tournament12MatchDetailsD1Ev +_ZN3sce7Toolkit2NP2V210Tournament12MatchDetailsD2Ev +_ZN3sce7Toolkit2NP2V210Tournament12MatchDetailsaSERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament12searchEventsERKNS3_7Request12SearchEventsEPNS2_4Core8ResponseINS3_6EventsEEE +_ZN3sce7Toolkit2NP2V210Tournament13OneVsOneMatchC1ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament13OneVsOneMatchC1Ev +_ZN3sce7Toolkit2NP2V210Tournament13OneVsOneMatchC2ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament13OneVsOneMatchC2Ev +_ZN3sce7Toolkit2NP2V210Tournament13OneVsOneMatchD1Ev +_ZN3sce7Toolkit2NP2V210Tournament13OneVsOneMatchD2Ev +_ZN3sce7Toolkit2NP2V210Tournament13OneVsOneMatchaSERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament14RegisteredTeam5resetEv +_ZN3sce7Toolkit2NP2V210Tournament14RegisteredTeam8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament14RegisteredTeamC1ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament14RegisteredTeamC1Ev +_ZN3sce7Toolkit2NP2V210Tournament14RegisteredTeamC2ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament14RegisteredTeamC2Ev +_ZN3sce7Toolkit2NP2V210Tournament14RegisteredTeamD1Ev +_ZN3sce7Toolkit2NP2V210Tournament14RegisteredTeamD2Ev +_ZN3sce7Toolkit2NP2V210Tournament14RegisteredTeamaSERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament14RegisteredUserC1ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament14RegisteredUserC1Ev +_ZN3sce7Toolkit2NP2V210Tournament14RegisteredUserC2ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament14RegisteredUserC2Ev +_ZN3sce7Toolkit2NP2V210Tournament14RegisteredUserD1Ev +_ZN3sce7Toolkit2NP2V210Tournament14RegisteredUserD2Ev +_ZN3sce7Toolkit2NP2V210Tournament14RegisteredUseraSERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament15RegisteredTeams5resetEv +_ZN3sce7Toolkit2NP2V210Tournament15RegisteredTeams8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament15RegisteredTeamsC1ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament15RegisteredTeamsC1Ev +_ZN3sce7Toolkit2NP2V210Tournament15RegisteredTeamsC2ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament15RegisteredTeamsC2Ev +_ZN3sce7Toolkit2NP2V210Tournament15RegisteredTeamsD1Ev +_ZN3sce7Toolkit2NP2V210Tournament15RegisteredTeamsD2Ev +_ZN3sce7Toolkit2NP2V210Tournament15RegisteredTeamsaSERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament15RegisteredUsers5resetEv +_ZN3sce7Toolkit2NP2V210Tournament15RegisteredUsers8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament15RegisteredUsersC1ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament15RegisteredUsersC1Ev +_ZN3sce7Toolkit2NP2V210Tournament15RegisteredUsersC2ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament15RegisteredUsersC2Ev +_ZN3sce7Toolkit2NP2V210Tournament15RegisteredUsersD1Ev +_ZN3sce7Toolkit2NP2V210Tournament15RegisteredUsersD2Ev +_ZN3sce7Toolkit2NP2V210Tournament15RegisteredUsersaSERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament15TeamVsTeamMatchC1ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament15TeamVsTeamMatchC1Ev +_ZN3sce7Toolkit2NP2V210Tournament15TeamVsTeamMatchC2ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament15TeamVsTeamMatchC2Ev +_ZN3sce7Toolkit2NP2V210Tournament15TeamVsTeamMatchD1Ev +_ZN3sce7Toolkit2NP2V210Tournament15TeamVsTeamMatchD2Ev +_ZN3sce7Toolkit2NP2V210Tournament15TeamVsTeamMatchaSERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament16RegisteredRoster5resetEv +_ZN3sce7Toolkit2NP2V210Tournament16RegisteredRoster8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament16RegisteredRosterC1ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament16RegisteredRosterC1Ev +_ZN3sce7Toolkit2NP2V210Tournament16RegisteredRosterC2ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament16RegisteredRosterC2Ev +_ZN3sce7Toolkit2NP2V210Tournament16RegisteredRosterD1Ev +_ZN3sce7Toolkit2NP2V210Tournament16RegisteredRosterD2Ev +_ZN3sce7Toolkit2NP2V210Tournament16RegisteredRosteraSERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament17OfficialBroadCastC1ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament17OfficialBroadCastC1Ev +_ZN3sce7Toolkit2NP2V210Tournament17OfficialBroadCastC2ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament17OfficialBroadCastC2Ev +_ZN3sce7Toolkit2NP2V210Tournament17OfficialBroadCastD1Ev +_ZN3sce7Toolkit2NP2V210Tournament17OfficialBroadCastD2Ev +_ZN3sce7Toolkit2NP2V210Tournament17OfficialBroadCastaSERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament17TournamentDetails5resetEv +_ZN3sce7Toolkit2NP2V210Tournament17TournamentDetails8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament17TournamentDetailsC1ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament17TournamentDetailsC1Ev +_ZN3sce7Toolkit2NP2V210Tournament17TournamentDetailsC2ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament17TournamentDetailsC2Ev +_ZN3sce7Toolkit2NP2V210Tournament17TournamentDetailsD1Ev +_ZN3sce7Toolkit2NP2V210Tournament17TournamentDetailsD2Ev +_ZN3sce7Toolkit2NP2V210Tournament17TournamentDetailsaSERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament17TournamentEventIdC1Ev +_ZN3sce7Toolkit2NP2V210Tournament17TournamentEventIdC2Ev +_ZN3sce7Toolkit2NP2V210Tournament17TournamentEventIdD1Ev +_ZN3sce7Toolkit2NP2V210Tournament17TournamentEventIdD2Ev +_ZN3sce7Toolkit2NP2V210Tournament18OneVsOneRankResult5resetEv +_ZN3sce7Toolkit2NP2V210Tournament18OneVsOneRankResult8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament18OneVsOneRankResultC1ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament18OneVsOneRankResultC1Ev +_ZN3sce7Toolkit2NP2V210Tournament18OneVsOneRankResultC2ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament18OneVsOneRankResultC2Ev +_ZN3sce7Toolkit2NP2V210Tournament18OneVsOneRankResultD1Ev +_ZN3sce7Toolkit2NP2V210Tournament18OneVsOneRankResultD2Ev +_ZN3sce7Toolkit2NP2V210Tournament18OneVsOneRankResultaSERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament18OneVsOneTournamentC1ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament18OneVsOneTournamentC1Ev +_ZN3sce7Toolkit2NP2V210Tournament18OneVsOneTournamentC2ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament18OneVsOneTournamentC2Ev +_ZN3sce7Toolkit2NP2V210Tournament18OneVsOneTournamentD1Ev +_ZN3sce7Toolkit2NP2V210Tournament18OneVsOneTournamentD2Ev +_ZN3sce7Toolkit2NP2V210Tournament18OneVsOneTournamentaSERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament18getRegisteredTeamsERKNS3_7Request18GetRegisteredTeamsEPNS2_4Core8ResponseINS3_15RegisteredTeamsEEE +_ZN3sce7Toolkit2NP2V210Tournament18getRegisteredUsersERKNS3_7Request18GetRegisteredUsersEPNS2_4Core8ResponseINS3_15RegisteredUsersEEE +_ZN3sce7Toolkit2NP2V210Tournament19getRegisteredRosterERKNS3_7Request19GetRegisteredRosterEPNS2_4Core8ResponseINS3_16RegisteredRosterEEE +_ZN3sce7Toolkit2NP2V210Tournament19sendTeamMatchReportERKNS3_7Request19SendTeamMatchReportEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V210Tournament19sendUserMatchReportERKNS3_7Request19SendUserMatchReportEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V210Tournament20OneVsOneMatchDetails5resetEv +_ZN3sce7Toolkit2NP2V210Tournament20OneVsOneMatchDetails8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament20OneVsOneMatchDetailsC1ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament20OneVsOneMatchDetailsC1Ev +_ZN3sce7Toolkit2NP2V210Tournament20OneVsOneMatchDetailsC2ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament20OneVsOneMatchDetailsC2Ev +_ZN3sce7Toolkit2NP2V210Tournament20OneVsOneMatchDetailsD1Ev +_ZN3sce7Toolkit2NP2V210Tournament20OneVsOneMatchDetailsD2Ev +_ZN3sce7Toolkit2NP2V210Tournament20OneVsOneMatchDetailsaSERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamRankResult5resetEv +_ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamRankResult8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamRankResultC1ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamRankResultC1Ev +_ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamRankResultC2ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamRankResultC2Ev +_ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamRankResultD1Ev +_ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamRankResultD2Ev +_ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamRankResultaSERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamTournamentC1ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamTournamentC1Ev +_ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamTournamentC2ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamTournamentC2Ev +_ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamTournamentD1Ev +_ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamTournamentD2Ev +_ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamTournamentaSERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament22TeamVsTeamMatchDetails5resetEv +_ZN3sce7Toolkit2NP2V210Tournament22TeamVsTeamMatchDetails8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament22TeamVsTeamMatchDetailsC1ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament22TeamVsTeamMatchDetailsC1Ev +_ZN3sce7Toolkit2NP2V210Tournament22TeamVsTeamMatchDetailsC2ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament22TeamVsTeamMatchDetailsC2Ev +_ZN3sce7Toolkit2NP2V210Tournament22TeamVsTeamMatchDetailsD1Ev +_ZN3sce7Toolkit2NP2V210Tournament22TeamVsTeamMatchDetailsD2Ev +_ZN3sce7Toolkit2NP2V210Tournament22TeamVsTeamMatchDetailsaSERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament24OfficialBroadCastDetails5resetEv +_ZN3sce7Toolkit2NP2V210Tournament24OfficialBroadCastDetails8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament24OfficialBroadCastDetailsC1ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament24OfficialBroadCastDetailsC1Ev +_ZN3sce7Toolkit2NP2V210Tournament24OfficialBroadCastDetailsC2ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament24OfficialBroadCastDetailsC2Ev +_ZN3sce7Toolkit2NP2V210Tournament24OfficialBroadCastDetailsD1Ev +_ZN3sce7Toolkit2NP2V210Tournament24OfficialBroadCastDetailsD2Ev +_ZN3sce7Toolkit2NP2V210Tournament24OfficialBroadCastDetailsaSERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament25BracketInformationOfMatchC1ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament25BracketInformationOfMatchC1Ev +_ZN3sce7Toolkit2NP2V210Tournament25BracketInformationOfMatchC2ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament25BracketInformationOfMatchC2Ev +_ZN3sce7Toolkit2NP2V210Tournament25BracketInformationOfMatchD1Ev +_ZN3sce7Toolkit2NP2V210Tournament25BracketInformationOfMatchD2Ev +_ZN3sce7Toolkit2NP2V210Tournament25BracketInformationOfMatchaSERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament25OneVsOneTournamentDetails5resetEv +_ZN3sce7Toolkit2NP2V210Tournament25OneVsOneTournamentDetails8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament25OneVsOneTournamentDetailsC1ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament25OneVsOneTournamentDetailsC1Ev +_ZN3sce7Toolkit2NP2V210Tournament25OneVsOneTournamentDetailsC2ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament25OneVsOneTournamentDetailsC2Ev +_ZN3sce7Toolkit2NP2V210Tournament25OneVsOneTournamentDetailsD1Ev +_ZN3sce7Toolkit2NP2V210Tournament25OneVsOneTournamentDetailsD2Ev +_ZN3sce7Toolkit2NP2V210Tournament25OneVsOneTournamentDetailsaSERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament27TeamVsTeamTournamentDetails5resetEv +_ZN3sce7Toolkit2NP2V210Tournament27TeamVsTeamTournamentDetails8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament27TeamVsTeamTournamentDetailsC1ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament27TeamVsTeamTournamentDetailsC1Ev +_ZN3sce7Toolkit2NP2V210Tournament27TeamVsTeamTournamentDetailsC2ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament27TeamVsTeamTournamentDetailsC2Ev +_ZN3sce7Toolkit2NP2V210Tournament27TeamVsTeamTournamentDetailsD1Ev +_ZN3sce7Toolkit2NP2V210Tournament27TeamVsTeamTournamentDetailsD2Ev +_ZN3sce7Toolkit2NP2V210Tournament27TeamVsTeamTournamentDetailsaSERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament4Team5resetEv +_ZN3sce7Toolkit2NP2V210Tournament4Team8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament4TeamC1ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament4TeamC1Ev +_ZN3sce7Toolkit2NP2V210Tournament4TeamC2ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament4TeamC2Ev +_ZN3sce7Toolkit2NP2V210Tournament4TeamD1Ev +_ZN3sce7Toolkit2NP2V210Tournament4TeamD2Ev +_ZN3sce7Toolkit2NP2V210Tournament4TeamaSERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament5Event5resetEv +_ZN3sce7Toolkit2NP2V210Tournament5Event8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament5EventC1ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament5EventC1Ev +_ZN3sce7Toolkit2NP2V210Tournament5EventC2ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament5EventC2Ev +_ZN3sce7Toolkit2NP2V210Tournament5EventD1Ev +_ZN3sce7Toolkit2NP2V210Tournament5EventD2Ev +_ZN3sce7Toolkit2NP2V210Tournament5EventaSERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament5MatchC1ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament5MatchC1Ev +_ZN3sce7Toolkit2NP2V210Tournament5MatchC2ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament5MatchC2Ev +_ZN3sce7Toolkit2NP2V210Tournament5MatchD1Ev +_ZN3sce7Toolkit2NP2V210Tournament5MatchD2Ev +_ZN3sce7Toolkit2NP2V210Tournament5MatchaSERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament6Events5resetEv +_ZN3sce7Toolkit2NP2V210Tournament6Events8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament6EventsC1ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament6EventsC1Ev +_ZN3sce7Toolkit2NP2V210Tournament6EventsC2ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament6EventsC2Ev +_ZN3sce7Toolkit2NP2V210Tournament6EventsD1Ev +_ZN3sce7Toolkit2NP2V210Tournament6EventsD2Ev +_ZN3sce7Toolkit2NP2V210Tournament6EventsaSERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament7Bracket5resetEv +_ZN3sce7Toolkit2NP2V210Tournament7Bracket8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament7BracketC1ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament7BracketC1Ev +_ZN3sce7Toolkit2NP2V210Tournament7BracketC2ERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament7BracketC2Ev +_ZN3sce7Toolkit2NP2V210Tournament7BracketD1Ev +_ZN3sce7Toolkit2NP2V210Tournament7BracketD2Ev +_ZN3sce7Toolkit2NP2V210Tournament7BracketaSERKS4_ +_ZN3sce7Toolkit2NP2V210Tournament7Request10GetBracketC1Ev +_ZN3sce7Toolkit2NP2V210Tournament7Request10GetBracketC2Ev +_ZN3sce7Toolkit2NP2V210Tournament7Request10GetBracketD1Ev +_ZN3sce7Toolkit2NP2V210Tournament7Request10GetBracketD2Ev +_ZN3sce7Toolkit2NP2V210Tournament7Request10TeamFilterC1Ev +_ZN3sce7Toolkit2NP2V210Tournament7Request10TeamFilterC2Ev +_ZN3sce7Toolkit2NP2V210Tournament7Request10TeamFilterD1Ev +_ZN3sce7Toolkit2NP2V210Tournament7Request10TeamFilterD2Ev +_ZN3sce7Toolkit2NP2V210Tournament7Request12SearchEvents13MAX_PAGE_SIZEE +_ZN3sce7Toolkit2NP2V210Tournament7Request12SearchEvents17MAX_NUM_EVENT_IDSE +_ZN3sce7Toolkit2NP2V210Tournament7Request12SearchEventsC1Ev +_ZN3sce7Toolkit2NP2V210Tournament7Request12SearchEventsC2Ev +_ZN3sce7Toolkit2NP2V210Tournament7Request12SearchEventsD1Ev +_ZN3sce7Toolkit2NP2V210Tournament7Request12SearchEventsD2Ev +_ZN3sce7Toolkit2NP2V210Tournament7Request15EventTypeFilterC1Ev +_ZN3sce7Toolkit2NP2V210Tournament7Request15EventTypeFilterC2Ev +_ZN3sce7Toolkit2NP2V210Tournament7Request15EventTypeFilterD1Ev +_ZN3sce7Toolkit2NP2V210Tournament7Request15EventTypeFilterD2Ev +_ZN3sce7Toolkit2NP2V210Tournament7Request18GetRegisteredTeams17DEFAULT_PAGE_SIZEE +_ZN3sce7Toolkit2NP2V210Tournament7Request18GetRegisteredTeamsC1Ev +_ZN3sce7Toolkit2NP2V210Tournament7Request18GetRegisteredTeamsC2Ev +_ZN3sce7Toolkit2NP2V210Tournament7Request18GetRegisteredTeamsD1Ev +_ZN3sce7Toolkit2NP2V210Tournament7Request18GetRegisteredTeamsD2Ev +_ZN3sce7Toolkit2NP2V210Tournament7Request18GetRegisteredUsers17DEFAULT_PAGE_SIZEE +_ZN3sce7Toolkit2NP2V210Tournament7Request18GetRegisteredUsersC1Ev +_ZN3sce7Toolkit2NP2V210Tournament7Request18GetRegisteredUsersC2Ev +_ZN3sce7Toolkit2NP2V210Tournament7Request18GetRegisteredUsersD1Ev +_ZN3sce7Toolkit2NP2V210Tournament7Request18GetRegisteredUsersD2Ev +_ZN3sce7Toolkit2NP2V210Tournament7Request19GetRegisteredRosterC1Ev +_ZN3sce7Toolkit2NP2V210Tournament7Request19GetRegisteredRosterC2Ev +_ZN3sce7Toolkit2NP2V210Tournament7Request19GetRegisteredRosterD1Ev +_ZN3sce7Toolkit2NP2V210Tournament7Request19GetRegisteredRosterD2Ev +_ZN3sce7Toolkit2NP2V210Tournament7Request19SendTeamMatchReport19MAX_SIZE_SCREENSHOTE +_ZN3sce7Toolkit2NP2V210Tournament7Request19SendTeamMatchReport20MAX_LENGTH_FREE_TEXTE +_ZN3sce7Toolkit2NP2V210Tournament7Request19SendTeamMatchReportC1Ev +_ZN3sce7Toolkit2NP2V210Tournament7Request19SendTeamMatchReportC2Ev +_ZN3sce7Toolkit2NP2V210Tournament7Request19SendTeamMatchReportD1Ev +_ZN3sce7Toolkit2NP2V210Tournament7Request19SendTeamMatchReportD2Ev +_ZN3sce7Toolkit2NP2V210Tournament7Request19SendUserMatchReport19MAX_SIZE_SCREENSHOTE +_ZN3sce7Toolkit2NP2V210Tournament7Request19SendUserMatchReport20MAX_LENGTH_FREE_TEXTE +_ZN3sce7Toolkit2NP2V210Tournament7Request19SendUserMatchReportC1Ev +_ZN3sce7Toolkit2NP2V210Tournament7Request19SendUserMatchReportC2Ev +_ZN3sce7Toolkit2NP2V210Tournament7Request19SendUserMatchReportD1Ev +_ZN3sce7Toolkit2NP2V210Tournament7Request19SendUserMatchReportD2Ev +_ZN3sce7Toolkit2NP2V210Tournament7Request8GetEventC1Ev +_ZN3sce7Toolkit2NP2V210Tournament7Request8GetEventC2Ev +_ZN3sce7Toolkit2NP2V210Tournament7Request8GetEventD1Ev +_ZN3sce7Toolkit2NP2V210Tournament7Request8GetEventD2Ev +_ZN3sce7Toolkit2NP2V210Tournament8getEventERKNS3_7Request8GetEventEPNS2_4Core8ResponseINS3_5EventEEE +_ZN3sce7Toolkit2NP2V210Wordfilter13filterCommentERKNS3_7Request13FilterCommentEPNS2_4Core8ResponseINS3_16SanitizedCommentEEE +_ZN3sce7Toolkit2NP2V210Wordfilter16SanitizedComment16MAX_SIZE_COMMENTE +_ZN3sce7Toolkit2NP2V210Wordfilter16SanitizedComment5resetEv +_ZN3sce7Toolkit2NP2V210Wordfilter16SanitizedComment8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V210Wordfilter16SanitizedCommentC1ERKS4_ +_ZN3sce7Toolkit2NP2V210Wordfilter16SanitizedCommentC1Ev +_ZN3sce7Toolkit2NP2V210Wordfilter16SanitizedCommentC2ERKS4_ +_ZN3sce7Toolkit2NP2V210Wordfilter16SanitizedCommentC2Ev +_ZN3sce7Toolkit2NP2V210Wordfilter16SanitizedCommentD1Ev +_ZN3sce7Toolkit2NP2V210Wordfilter16SanitizedCommentD2Ev +_ZN3sce7Toolkit2NP2V210Wordfilter16SanitizedCommentaSERKS4_ +_ZN3sce7Toolkit2NP2V210Wordfilter7Request13FilterComment16MAX_SIZE_COMMENTE +_ZN3sce7Toolkit2NP2V210Wordfilter7Request13FilterCommentC1Ev +_ZN3sce7Toolkit2NP2V210Wordfilter7Request13FilterCommentC2Ev +_ZN3sce7Toolkit2NP2V210Wordfilter7Request13FilterCommentD1Ev +_ZN3sce7Toolkit2NP2V210Wordfilter7Request13FilterCommentD2Ev +_ZN3sce7Toolkit2NP2V211SharedMedia10Broadcasts5resetEv +_ZN3sce7Toolkit2NP2V211SharedMedia10Broadcasts8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V211SharedMedia10BroadcastsC1ERKS4_ +_ZN3sce7Toolkit2NP2V211SharedMedia10BroadcastsC1Ev +_ZN3sce7Toolkit2NP2V211SharedMedia10BroadcastsC2ERKS4_ +_ZN3sce7Toolkit2NP2V211SharedMedia10BroadcastsC2Ev +_ZN3sce7Toolkit2NP2V211SharedMedia10BroadcastsD1Ev +_ZN3sce7Toolkit2NP2V211SharedMedia10BroadcastsD2Ev +_ZN3sce7Toolkit2NP2V211SharedMedia10BroadcastsaSERKS4_ +_ZN3sce7Toolkit2NP2V211SharedMedia10Screenshot16MAX_LEN_PHOTO_IDE +_ZN3sce7Toolkit2NP2V211SharedMedia10ScreenshotC1Ev +_ZN3sce7Toolkit2NP2V211SharedMedia10ScreenshotC2Ev +_ZN3sce7Toolkit2NP2V211SharedMedia10ScreenshotD1Ev +_ZN3sce7Toolkit2NP2V211SharedMedia10ScreenshotD2Ev +_ZN3sce7Toolkit2NP2V211SharedMedia11Screenshots5resetEv +_ZN3sce7Toolkit2NP2V211SharedMedia11Screenshots8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V211SharedMedia11ScreenshotsC1ERKS4_ +_ZN3sce7Toolkit2NP2V211SharedMedia11ScreenshotsC1Ev +_ZN3sce7Toolkit2NP2V211SharedMedia11ScreenshotsC2ERKS4_ +_ZN3sce7Toolkit2NP2V211SharedMedia11ScreenshotsC2Ev +_ZN3sce7Toolkit2NP2V211SharedMedia11ScreenshotsD1Ev +_ZN3sce7Toolkit2NP2V211SharedMedia11ScreenshotsD2Ev +_ZN3sce7Toolkit2NP2V211SharedMedia11ScreenshotsaSERKS4_ +_ZN3sce7Toolkit2NP2V211SharedMedia13getBroadcastsERKNS3_7Request13GetBroadcastsEPNS2_4Core8ResponseINS3_10BroadcastsEEE +_ZN3sce7Toolkit2NP2V211SharedMedia14CommonMetadata13MAX_LEN_TITLEE +_ZN3sce7Toolkit2NP2V211SharedMedia14CommonMetadata19MAX_LEN_DESCRIPTIONE +_ZN3sce7Toolkit2NP2V211SharedMedia14CommonMetadata20MAX_LEN_SERVICE_TYPEE +_ZN3sce7Toolkit2NP2V211SharedMedia14CommonMetadata24MAX_LEN_APPLICATION_NAMEE +_ZN3sce7Toolkit2NP2V211SharedMedia14CommonMetadataC1Ev +_ZN3sce7Toolkit2NP2V211SharedMedia14CommonMetadataC2Ev +_ZN3sce7Toolkit2NP2V211SharedMedia14CommonMetadataD1Ev +_ZN3sce7Toolkit2NP2V211SharedMedia14CommonMetadataD2Ev +_ZN3sce7Toolkit2NP2V211SharedMedia14getScreenshotsERKNS3_7Request14GetScreenshotsEPNS2_4Core8ResponseINS3_11ScreenshotsEEE +_ZN3sce7Toolkit2NP2V211SharedMedia5Video16MAX_LEN_VIDEO_IDE +_ZN3sce7Toolkit2NP2V211SharedMedia5VideoC1Ev +_ZN3sce7Toolkit2NP2V211SharedMedia5VideoC2Ev +_ZN3sce7Toolkit2NP2V211SharedMedia5VideoD1Ev +_ZN3sce7Toolkit2NP2V211SharedMedia5VideoD2Ev +_ZN3sce7Toolkit2NP2V211SharedMedia6Videos5resetEv +_ZN3sce7Toolkit2NP2V211SharedMedia6Videos8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V211SharedMedia6VideosC1ERKS4_ +_ZN3sce7Toolkit2NP2V211SharedMedia6VideosC1Ev +_ZN3sce7Toolkit2NP2V211SharedMedia6VideosC2ERKS4_ +_ZN3sce7Toolkit2NP2V211SharedMedia6VideosC2Ev +_ZN3sce7Toolkit2NP2V211SharedMedia6VideosD1Ev +_ZN3sce7Toolkit2NP2V211SharedMedia6VideosD2Ev +_ZN3sce7Toolkit2NP2V211SharedMedia6VideosaSERKS4_ +_ZN3sce7Toolkit2NP2V211SharedMedia7Request13GetBroadcasts13MAX_PAGE_SIZEE +_ZN3sce7Toolkit2NP2V211SharedMedia7Request13GetBroadcasts17DEFAULT_PAGE_SIZEE +_ZN3sce7Toolkit2NP2V211SharedMedia7Request13GetBroadcastsC1Ev +_ZN3sce7Toolkit2NP2V211SharedMedia7Request13GetBroadcastsC2Ev +_ZN3sce7Toolkit2NP2V211SharedMedia7Request13GetBroadcastsD1Ev +_ZN3sce7Toolkit2NP2V211SharedMedia7Request13GetBroadcastsD2Ev +_ZN3sce7Toolkit2NP2V211SharedMedia7Request14GetScreenshots13MAX_PAGE_SIZEE +_ZN3sce7Toolkit2NP2V211SharedMedia7Request14GetScreenshots17DEFAULT_PAGE_SIZEE +_ZN3sce7Toolkit2NP2V211SharedMedia7Request14GetScreenshotsC1Ev +_ZN3sce7Toolkit2NP2V211SharedMedia7Request14GetScreenshotsC2Ev +_ZN3sce7Toolkit2NP2V211SharedMedia7Request14GetScreenshotsD1Ev +_ZN3sce7Toolkit2NP2V211SharedMedia7Request14GetScreenshotsD2Ev +_ZN3sce7Toolkit2NP2V211SharedMedia7Request9GetVideos13MAX_PAGE_SIZEE +_ZN3sce7Toolkit2NP2V211SharedMedia7Request9GetVideos17DEFAULT_PAGE_SIZEE +_ZN3sce7Toolkit2NP2V211SharedMedia7Request9GetVideosC1Ev +_ZN3sce7Toolkit2NP2V211SharedMedia7Request9GetVideosC2Ev +_ZN3sce7Toolkit2NP2V211SharedMedia7Request9GetVideosD1Ev +_ZN3sce7Toolkit2NP2V211SharedMedia7Request9GetVideosD2Ev +_ZN3sce7Toolkit2NP2V211SharedMedia9Broadcast18MAX_LEN_CHANNEL_IDE +_ZN3sce7Toolkit2NP2V211SharedMedia9BroadcastC1Ev +_ZN3sce7Toolkit2NP2V211SharedMedia9BroadcastC2Ev +_ZN3sce7Toolkit2NP2V211SharedMedia9BroadcastD1Ev +_ZN3sce7Toolkit2NP2V211SharedMedia9BroadcastD2Ev +_ZN3sce7Toolkit2NP2V211SharedMedia9getVideosERKNS3_7Request9GetVideosEPNS2_4Core8ResponseINS3_6VideosEEE +_ZN3sce7Toolkit2NP2V211SocialMedia21postMessageToFacebookERKNS3_7Request21PostMessageToFacebookEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V211SocialMedia7Request12ActionLinkFb11MAX_URL_LENE +_ZN3sce7Toolkit2NP2V211SocialMedia7Request12ActionLinkFb24MAX_ACTION_LINK_NAME_LENE +_ZN3sce7Toolkit2NP2V211SocialMedia7Request12ActionLinkFbC1Ev +_ZN3sce7Toolkit2NP2V211SocialMedia7Request12ActionLinkFbC2Ev +_ZN3sce7Toolkit2NP2V211SocialMedia7Request12ActionLinkFbD1Ev +_ZN3sce7Toolkit2NP2V211SocialMedia7Request12ActionLinkFbD2Ev +_ZN3sce7Toolkit2NP2V211SocialMedia7Request21PostMessageToFacebook17MAX_USER_TEXT_LENE +_ZN3sce7Toolkit2NP2V211SocialMedia7Request21PostMessageToFacebookC1Ev +_ZN3sce7Toolkit2NP2V211SocialMedia7Request21PostMessageToFacebookC2Ev +_ZN3sce7Toolkit2NP2V211SocialMedia7Request21PostMessageToFacebookD1Ev +_ZN3sce7Toolkit2NP2V211SocialMedia7Request21PostMessageToFacebookD2Ev +_ZN3sce7Toolkit2NP2V211SocialMedia7Request7PhotoFb11MAX_URL_LENE +_ZN3sce7Toolkit2NP2V211SocialMedia7Request7PhotoFb19MAX_PHOTO_TITLE_LENE +_ZN3sce7Toolkit2NP2V211SocialMedia7Request7PhotoFb21MAX_PHOTO_CAPTION_LENE +_ZN3sce7Toolkit2NP2V211SocialMedia7Request7PhotoFb25MAX_PHOTO_DESCRIPTION_LENE +_ZN3sce7Toolkit2NP2V211SocialMedia7Request7PhotoFbC1Ev +_ZN3sce7Toolkit2NP2V211SocialMedia7Request7PhotoFbC2Ev +_ZN3sce7Toolkit2NP2V211SocialMedia7Request7PhotoFbD1Ev +_ZN3sce7Toolkit2NP2V211SocialMedia7Request7PhotoFbD2Ev +_ZN3sce7Toolkit2NP2V211UserProfile10NpProfiles5resetEv +_ZN3sce7Toolkit2NP2V211UserProfile10NpProfiles8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V211UserProfile10NpProfilesC1ERKS4_ +_ZN3sce7Toolkit2NP2V211UserProfile10NpProfilesC1Ev +_ZN3sce7Toolkit2NP2V211UserProfile10NpProfilesC2ERKS4_ +_ZN3sce7Toolkit2NP2V211UserProfile10NpProfilesC2Ev +_ZN3sce7Toolkit2NP2V211UserProfile10NpProfilesD1Ev +_ZN3sce7Toolkit2NP2V211UserProfile10NpProfilesD2Ev +_ZN3sce7Toolkit2NP2V211UserProfile10NpProfilesaSERKS4_ +_ZN3sce7Toolkit2NP2V211UserProfile13getNpProfilesERKNS3_7Request13GetNpProfilesEPNS2_4Core8ResponseINS3_10NpProfilesEEE +_ZN3sce7Toolkit2NP2V211UserProfile24displayUserProfileDialogERKNS3_7Request24DisplayUserProfileDialogEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V211UserProfile27displayGriefReportingDialogERKNS3_7Request27DisplayGriefReportingDialogEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V211UserProfile27getVerifiedAccountsForTitleERKNS3_7Request27GetVerifiedAccountsForTitleEPNS2_4Core8ResponseINS3_10NpProfilesEEE +_ZN3sce7Toolkit2NP2V211UserProfile7Request13GetNpProfiles16SIZE_ACCOUNT_IDSE +_ZN3sce7Toolkit2NP2V211UserProfile7Request13GetNpProfilesC1Ev +_ZN3sce7Toolkit2NP2V211UserProfile7Request13GetNpProfilesC2Ev +_ZN3sce7Toolkit2NP2V211UserProfile7Request13GetNpProfilesD1Ev +_ZN3sce7Toolkit2NP2V211UserProfile7Request13GetNpProfilesD2Ev +_ZN3sce7Toolkit2NP2V211UserProfile7Request24DisplayUserProfileDialogC1Ev +_ZN3sce7Toolkit2NP2V211UserProfile7Request24DisplayUserProfileDialogC2Ev +_ZN3sce7Toolkit2NP2V211UserProfile7Request24DisplayUserProfileDialogD1Ev +_ZN3sce7Toolkit2NP2V211UserProfile7Request24DisplayUserProfileDialogD2Ev +_ZN3sce7Toolkit2NP2V211UserProfile7Request27DisplayGriefReportingDialogC1Ev +_ZN3sce7Toolkit2NP2V211UserProfile7Request27DisplayGriefReportingDialogC2Ev +_ZN3sce7Toolkit2NP2V211UserProfile7Request27DisplayGriefReportingDialogD1Ev +_ZN3sce7Toolkit2NP2V211UserProfile7Request27DisplayGriefReportingDialogD2Ev +_ZN3sce7Toolkit2NP2V211UserProfile7Request27GetVerifiedAccountsForTitleC1Ev +_ZN3sce7Toolkit2NP2V211UserProfile7Request27GetVerifiedAccountsForTitleC2Ev +_ZN3sce7Toolkit2NP2V211UserProfile7Request27GetVerifiedAccountsForTitleD1Ev +_ZN3sce7Toolkit2NP2V211UserProfile7Request27GetVerifiedAccountsForTitleD2Ev +_ZN3sce7Toolkit2NP2V211UserProfile8RealName18MAX_SIZE_LAST_NAMEE +_ZN3sce7Toolkit2NP2V211UserProfile8RealName19MAX_SIZE_FIRST_NAMEE +_ZN3sce7Toolkit2NP2V211UserProfile8RealName20MAX_SIZE_MIDDLE_NAMEE +_ZN3sce7Toolkit2NP2V211UserProfile9NpProfile17MAX_SIZE_ABOUT_MEE +_ZN3sce7Toolkit2NP2V211UserProfile9NpProfile19MAX_SIZE_AVATAR_URLE +_ZN3sce7Toolkit2NP2V211UserProfile9NpProfile22MAX_NUM_LANGUAGES_USEDE +_ZN3sce7Toolkit2NP2V211UserProfile9NpProfile28MAX_SIZE_PROFILE_PICTURE_URLE +_ZN3sce7Toolkit2NP2V211UserProfile9NpProfile38MAX_SIZE_VERIFIED_ACCOUNT_DISPLAY_NAMEE +_ZN3sce7Toolkit2NP2V211UserProfile9NpProfileC1Ev +_ZN3sce7Toolkit2NP2V211UserProfile9NpProfileC2Ev +_ZN3sce7Toolkit2NP2V211UserProfile9NpProfileD1Ev +_ZN3sce7Toolkit2NP2V211UserProfile9NpProfileD2Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed11SharedVideo11SN_TYPE_LENE +_ZN3sce7Toolkit2NP2V212ActivityFeed11SharedVideo12VIDEO_ID_LENE +_ZN3sce7Toolkit2NP2V212ActivityFeed11SharedVideo17CREATION_DATE_LENE +_ZN3sce7Toolkit2NP2V212ActivityFeed11SharedVideo18VIDEO_DURATION_LENE +_ZN3sce7Toolkit2NP2V212ActivityFeed11SharedVideo20USER_COMMENT_MAX_LENE +_ZN3sce7Toolkit2NP2V212ActivityFeed11SharedVideoC1Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed11SharedVideoC2Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed11SharedVideoD1Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed11SharedVideoD2Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed11getWhoLikedERKNS3_7Request11GetWhoLikedEPNS2_4Core8ResponseINS3_13UsersWhoLikedEEE +_ZN3sce7Toolkit2NP2V212ActivityFeed12SharedVideos5resetEv +_ZN3sce7Toolkit2NP2V212ActivityFeed12SharedVideos8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V212ActivityFeed12SharedVideosC1ERKS4_ +_ZN3sce7Toolkit2NP2V212ActivityFeed12SharedVideosC1Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed12SharedVideosC2ERKS4_ +_ZN3sce7Toolkit2NP2V212ActivityFeed12SharedVideosC2Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed12SharedVideosD1Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed12SharedVideosD2Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed12SharedVideosaSERKS4_ +_ZN3sce7Toolkit2NP2V212ActivityFeed13ButtonCaption12TEXT_MAX_LENE +_ZN3sce7Toolkit2NP2V212ActivityFeed13ButtonCaptionC1Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed13ButtonCaptionC2Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed13ButtonCaptionD1Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed13ButtonCaptionD2Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed13UsersWhoLiked5resetEv +_ZN3sce7Toolkit2NP2V212ActivityFeed13UsersWhoLiked8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V212ActivityFeed13UsersWhoLikedC1ERKS4_ +_ZN3sce7Toolkit2NP2V212ActivityFeed13UsersWhoLikedC1Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed13UsersWhoLikedC2ERKS4_ +_ZN3sce7Toolkit2NP2V212ActivityFeed13UsersWhoLikedC2Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed13UsersWhoLikedD1Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed13UsersWhoLikedD2Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed13UsersWhoLikedaSERKS4_ +_ZN3sce7Toolkit2NP2V212ActivityFeed13getPlayedWithERKNS3_7Request13GetPlayedWithEPNS2_4Core8ResponseINS3_14PlayedWithFeedEEE +_ZN3sce7Toolkit2NP2V212ActivityFeed14PlayedWithFeed5resetEv +_ZN3sce7Toolkit2NP2V212ActivityFeed14PlayedWithFeed8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V212ActivityFeed14PlayedWithFeedC1ERKS4_ +_ZN3sce7Toolkit2NP2V212ActivityFeed14PlayedWithFeedC1Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed14PlayedWithFeedC2ERKS4_ +_ZN3sce7Toolkit2NP2V212ActivityFeed14PlayedWithFeedC2Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed14PlayedWithFeedD1Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed14PlayedWithFeedD2Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed14PlayedWithFeedaSERKS4_ +_ZN3sce7Toolkit2NP2V212ActivityFeed14postPlayedWithERKNS3_7Request14PostPlayedWithEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V212ActivityFeed15PlayedWithStory12DATE_MAX_LENE +_ZN3sce7Toolkit2NP2V212ActivityFeed15PlayedWithStory18TITLE_NAME_MAX_LENE +_ZN3sce7Toolkit2NP2V212ActivityFeed15PlayedWithStory19DESCRIPTION_MAX_LENE +_ZN3sce7Toolkit2NP2V212ActivityFeed15PlayedWithStory5resetEv +_ZN3sce7Toolkit2NP2V212ActivityFeed15PlayedWithStory8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V212ActivityFeed15PlayedWithStoryC1ERKS4_ +_ZN3sce7Toolkit2NP2V212ActivityFeed15PlayedWithStoryC1Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed15PlayedWithStoryC2ERKS4_ +_ZN3sce7Toolkit2NP2V212ActivityFeed15PlayedWithStoryC2Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed15PlayedWithStoryD1Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed15PlayedWithStoryD2Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed15PlayedWithStoryaSERKS4_ +_ZN3sce7Toolkit2NP2V212ActivityFeed15getSharedVideosERKNS3_7Request15GetSharedVideosEPNS2_4Core8ResponseINS3_12SharedVideosEEE +_ZN3sce7Toolkit2NP2V212ActivityFeed15postInGameStoryERKNS3_7Request15PostInGameStoryEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V212ActivityFeed4Feed5resetEv +_ZN3sce7Toolkit2NP2V212ActivityFeed4Feed8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V212ActivityFeed4FeedC1ERKS4_ +_ZN3sce7Toolkit2NP2V212ActivityFeed4FeedC1Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed4FeedC2ERKS4_ +_ZN3sce7Toolkit2NP2V212ActivityFeed4FeedC2Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed4FeedD1Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed4FeedD2Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed4FeedaSERKS4_ +_ZN3sce7Toolkit2NP2V212ActivityFeed5Media11URL_MAX_LENE +_ZN3sce7Toolkit2NP2V212ActivityFeed5Media20ASPECT_RATIO_MAX_LENE +_ZN3sce7Toolkit2NP2V212ActivityFeed5MediaC1Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed5MediaC2Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed5MediaD1Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed5MediaD2Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed5Story17CREATION_DATE_LENE +_ZN3sce7Toolkit2NP2V212ActivityFeed5Story20USER_COMMENT_MAX_LENE +_ZN3sce7Toolkit2NP2V212ActivityFeed5StoryC1Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed5StoryC2Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed5StoryD1Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed5StoryD2Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed6Action11URL_MAX_LENE +_ZN3sce7Toolkit2NP2V212ActivityFeed6Action19MAX_BUTTON_CAPTIONSE +_ZN3sce7Toolkit2NP2V212ActivityFeed6Action19START_GAME_ARGS_MAXE +_ZN3sce7Toolkit2NP2V212ActivityFeed6Action19STORE_LABEL_MAX_LENE +_ZN3sce7Toolkit2NP2V212ActivityFeed6ActionC1Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed6ActionC2Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed6ActionD1Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed6ActionD2Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed7Caption15CAPTION_MAX_LENE +_ZN3sce7Toolkit2NP2V212ActivityFeed7CaptionC1Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed7CaptionC2Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed7CaptionD1Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed7CaptionD2Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed7Request11GetWhoLiked13MAX_PAGE_SIZEE +_ZN3sce7Toolkit2NP2V212ActivityFeed7Request11GetWhoLiked17DEFAULT_PAGE_SIZEE +_ZN3sce7Toolkit2NP2V212ActivityFeed7Request11GetWhoLikedC1Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed7Request11GetWhoLikedC2Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed7Request11GetWhoLikedD1Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed7Request11GetWhoLikedD2Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed7Request13GetPlayedWithC1Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed7Request13GetPlayedWithC2Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed7Request13GetPlayedWithD1Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed7Request13GetPlayedWithD2Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed7Request14PostPlayedWith19DESCRIPTION_MAX_LENE +_ZN3sce7Toolkit2NP2V212ActivityFeed7Request14PostPlayedWith9MAX_USERSE +_ZN3sce7Toolkit2NP2V212ActivityFeed7Request14PostPlayedWithC1Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed7Request14PostPlayedWithC2Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed7Request14PostPlayedWithD1Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed7Request14PostPlayedWithD2Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed7Request15GetSharedVideosC1Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed7Request15GetSharedVideosC2Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed7Request15GetSharedVideosD1Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed7Request15GetSharedVideosD2Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed7Request15PostInGameStory11MAX_ACTIONSE +_ZN3sce7Toolkit2NP2V212ActivityFeed7Request15PostInGameStory20USER_COMMENT_MAX_LENE +_ZN3sce7Toolkit2NP2V212ActivityFeed7Request15PostInGameStoryC1Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed7Request15PostInGameStoryC2Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed7Request15PostInGameStoryD1Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed7Request15PostInGameStoryD2Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed7Request7GetFeed13MAX_PAGE_SIZEE +_ZN3sce7Toolkit2NP2V212ActivityFeed7Request7GetFeed17DEFAULT_PAGE_SIZEE +_ZN3sce7Toolkit2NP2V212ActivityFeed7Request7GetFeedC1Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed7Request7GetFeedC2Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed7Request7GetFeedD1Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed7Request7GetFeedD2Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed7Request8SetLikedC1Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed7Request8SetLikedC2Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed7Request8SetLikedD1Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed7Request8SetLikedD2Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed7StoryId12STORY_ID_LENE +_ZN3sce7Toolkit2NP2V212ActivityFeed7StoryIdC1Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed7StoryIdC2Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed7StoryIdD1Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed7StoryIdD2Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed7getFeedERKNS3_7Request7GetFeedEPNS2_4Core8ResponseINS3_4FeedEEE +_ZN3sce7Toolkit2NP2V212ActivityFeed8setLikedERKNS3_7Request8SetLikedEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V212ActivityFeed9StoryUser11URL_MAX_LENE +_ZN3sce7Toolkit2NP2V212ActivityFeed9StoryUserC1Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed9StoryUserC2Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed9StoryUserD1Ev +_ZN3sce7Toolkit2NP2V212ActivityFeed9StoryUserD2Ev +_ZN3sce7Toolkit2NP2V212EventsClient10EventColorC1Ev +_ZN3sce7Toolkit2NP2V212EventsClient10EventColorC2Ev +_ZN3sce7Toolkit2NP2V212EventsClient10EventColorD1Ev +_ZN3sce7Toolkit2NP2V212EventsClient10EventColorD2Ev +_ZN3sce7Toolkit2NP2V212EventsClient11EventInGame31MAX_EVENT_IN_GAME_BOOT_ARGUMENTE +_ZN3sce7Toolkit2NP2V212EventsClient11EventInGame5resetEv +_ZN3sce7Toolkit2NP2V212EventsClient11EventInGame8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V212EventsClient11EventInGameC1ERKS4_ +_ZN3sce7Toolkit2NP2V212EventsClient11EventInGameC1Ev +_ZN3sce7Toolkit2NP2V212EventsClient11EventInGameC2ERKS4_ +_ZN3sce7Toolkit2NP2V212EventsClient11EventInGameC2Ev +_ZN3sce7Toolkit2NP2V212EventsClient11EventInGameD1Ev +_ZN3sce7Toolkit2NP2V212EventsClient11EventInGameD2Ev +_ZN3sce7Toolkit2NP2V212EventsClient11EventInGameaSERKS4_ +_ZN3sce7Toolkit2NP2V212EventsClient12EventDetails16MAX_SIZE_REWARDSE +_ZN3sce7Toolkit2NP2V212EventsClient12EventDetails19MAX_SIZE_TITLE_NAMEE +_ZN3sce7Toolkit2NP2V212EventsClient12EventDetails20MAX_SIZE_DESCRIPTIONE +_ZN3sce7Toolkit2NP2V212EventsClient12EventDetails21MAX_SIZE_EXT_LINK_URLE +_ZN3sce7Toolkit2NP2V212EventsClient12EventDetails21MAX_SIZE_REQUIREMENTSE +_ZN3sce7Toolkit2NP2V212EventsClient12EventDetails22MAX_NUM_RELATED_EVENTSE +_ZN3sce7Toolkit2NP2V212EventsClient12EventDetails22MAX_SIZE_PROMOTER_NAMEE +_ZN3sce7Toolkit2NP2V212EventsClient12EventDetails5resetEv +_ZN3sce7Toolkit2NP2V212EventsClient12EventDetails8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V212EventsClient12EventDetailsC1ERKS4_ +_ZN3sce7Toolkit2NP2V212EventsClient12EventDetailsC1Ev +_ZN3sce7Toolkit2NP2V212EventsClient12EventDetailsC2ERKS4_ +_ZN3sce7Toolkit2NP2V212EventsClient12EventDetailsC2Ev +_ZN3sce7Toolkit2NP2V212EventsClient12EventDetailsD1Ev +_ZN3sce7Toolkit2NP2V212EventsClient12EventDetailsD2Ev +_ZN3sce7Toolkit2NP2V212EventsClient12EventDetailsaSERKS4_ +_ZN3sce7Toolkit2NP2V212EventsClient13EventDuration13MAX_SIZE_DATEE +_ZN3sce7Toolkit2NP2V212EventsClient13EventDurationC1Ev +_ZN3sce7Toolkit2NP2V212EventsClient13EventDurationC2Ev +_ZN3sce7Toolkit2NP2V212EventsClient13EventDurationD1Ev +_ZN3sce7Toolkit2NP2V212EventsClient13EventDurationD2Ev +_ZN3sce7Toolkit2NP2V212EventsClient15EventUserStatusC1Ev +_ZN3sce7Toolkit2NP2V212EventsClient15EventUserStatusC2Ev +_ZN3sce7Toolkit2NP2V212EventsClient15EventUserStatusD1Ev +_ZN3sce7Toolkit2NP2V212EventsClient15EventUserStatusD2Ev +_ZN3sce7Toolkit2NP2V212EventsClient17EventShareFactory12MAX_SIZE_TAGE +_ZN3sce7Toolkit2NP2V212EventsClient17EventShareFactory19MAX_SIZE_CONTENT_IDE +_ZN3sce7Toolkit2NP2V212EventsClient17EventShareFactoryC1Ev +_ZN3sce7Toolkit2NP2V212EventsClient17EventShareFactoryC2Ev +_ZN3sce7Toolkit2NP2V212EventsClient17EventShareFactoryD1Ev +_ZN3sce7Toolkit2NP2V212EventsClient17EventShareFactoryD2Ev +_ZN3sce7Toolkit2NP2V212EventsClient22EventOfficialBroadCast16MAX_SIZE_CHANNELE +_ZN3sce7Toolkit2NP2V212EventsClient22EventOfficialBroadCastC1Ev +_ZN3sce7Toolkit2NP2V212EventsClient22EventOfficialBroadCastC2Ev +_ZN3sce7Toolkit2NP2V212EventsClient22EventOfficialBroadCastD1Ev +_ZN3sce7Toolkit2NP2V212EventsClient22EventOfficialBroadCastD2Ev +_ZN3sce7Toolkit2NP2V212EventsClient5Event13MAX_SIZE_DATEE +_ZN3sce7Toolkit2NP2V212EventsClient5Event16MAX_SIZE_IMG_URLE +_ZN3sce7Toolkit2NP2V212EventsClient5Event19MAX_SIZE_EVENT_NAMEE +_ZN3sce7Toolkit2NP2V212EventsClient5Event5resetEv +_ZN3sce7Toolkit2NP2V212EventsClient5Event8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V212EventsClient5EventC1ERKS4_ +_ZN3sce7Toolkit2NP2V212EventsClient5EventC1Ev +_ZN3sce7Toolkit2NP2V212EventsClient5EventC2ERKS4_ +_ZN3sce7Toolkit2NP2V212EventsClient5EventC2Ev +_ZN3sce7Toolkit2NP2V212EventsClient5EventD1Ev +_ZN3sce7Toolkit2NP2V212EventsClient5EventD2Ev +_ZN3sce7Toolkit2NP2V212EventsClient5EventaSERKS4_ +_ZN3sce7Toolkit2NP2V212EventsClient6Events5resetEv +_ZN3sce7Toolkit2NP2V212EventsClient6Events8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V212EventsClient6EventsC1ERKS4_ +_ZN3sce7Toolkit2NP2V212EventsClient6EventsC1Ev +_ZN3sce7Toolkit2NP2V212EventsClient6EventsC2ERKS4_ +_ZN3sce7Toolkit2NP2V212EventsClient6EventsC2Ev +_ZN3sce7Toolkit2NP2V212EventsClient6EventsD1Ev +_ZN3sce7Toolkit2NP2V212EventsClient6EventsD2Ev +_ZN3sce7Toolkit2NP2V212EventsClient6EventsaSERKS4_ +_ZN3sce7Toolkit2NP2V212EventsClient7EventId17MAX_SIZE_EVENT_IDE +_ZN3sce7Toolkit2NP2V212EventsClient7EventIdC1Ev +_ZN3sce7Toolkit2NP2V212EventsClient7EventIdC2Ev +_ZN3sce7Toolkit2NP2V212EventsClient7EventIdD1Ev +_ZN3sce7Toolkit2NP2V212EventsClient7EventIdD2Ev +_ZN3sce7Toolkit2NP2V212EventsClient7Request9GetEvents13MAX_PAGE_SIZEE +_ZN3sce7Toolkit2NP2V212EventsClient7Request9GetEvents14MAX_NUM_EVENTSE +_ZN3sce7Toolkit2NP2V212EventsClient7Request9GetEventsC1Ev +_ZN3sce7Toolkit2NP2V212EventsClient7Request9GetEventsC2Ev +_ZN3sce7Toolkit2NP2V212EventsClient7Request9GetEventsD1Ev +_ZN3sce7Toolkit2NP2V212EventsClient7Request9GetEventsD2Ev +_ZN3sce7Toolkit2NP2V212EventsClient9EventData12MAX_SIZE_URLE +_ZN3sce7Toolkit2NP2V212EventsClient9EventDataC1Ev +_ZN3sce7Toolkit2NP2V212EventsClient9EventDataC2Ev +_ZN3sce7Toolkit2NP2V212EventsClient9EventDataD1Ev +_ZN3sce7Toolkit2NP2V212EventsClient9EventDataD2Ev +_ZN3sce7Toolkit2NP2V212EventsClient9getEventsERKNS3_7Request9GetEventsEPNS2_4Core8ResponseINS3_6EventsEEE +_ZN3sce7Toolkit2NP2V212NetworkUtils12BandwithInfo5resetEv +_ZN3sce7Toolkit2NP2V212NetworkUtils12BandwithInfo8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V212NetworkUtils12BandwithInfoC1ERKS4_ +_ZN3sce7Toolkit2NP2V212NetworkUtils12BandwithInfoC1Ev +_ZN3sce7Toolkit2NP2V212NetworkUtils12BandwithInfoC2ERKS4_ +_ZN3sce7Toolkit2NP2V212NetworkUtils12BandwithInfoC2Ev +_ZN3sce7Toolkit2NP2V212NetworkUtils12BandwithInfoD1Ev +_ZN3sce7Toolkit2NP2V212NetworkUtils12BandwithInfoD2Ev +_ZN3sce7Toolkit2NP2V212NetworkUtils12BandwithInfoaSERKS4_ +_ZN3sce7Toolkit2NP2V212NetworkUtils12Notification14NetStateChange5resetEv +_ZN3sce7Toolkit2NP2V212NetworkUtils12Notification14NetStateChange8deepCopyERKS5_ +_ZN3sce7Toolkit2NP2V212NetworkUtils12Notification14NetStateChangeC1ERKS5_ +_ZN3sce7Toolkit2NP2V212NetworkUtils12Notification14NetStateChangeC1Ev +_ZN3sce7Toolkit2NP2V212NetworkUtils12Notification14NetStateChangeC2ERKS5_ +_ZN3sce7Toolkit2NP2V212NetworkUtils12Notification14NetStateChangeC2Ev +_ZN3sce7Toolkit2NP2V212NetworkUtils12Notification14NetStateChangeD1Ev +_ZN3sce7Toolkit2NP2V212NetworkUtils12Notification14NetStateChangeD2Ev +_ZN3sce7Toolkit2NP2V212NetworkUtils12Notification14NetStateChangeaSERKS5_ +_ZN3sce7Toolkit2NP2V212NetworkUtils13NetStateBasic5resetEv +_ZN3sce7Toolkit2NP2V212NetworkUtils13NetStateBasic8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V212NetworkUtils13NetStateBasicC1ERKS4_ +_ZN3sce7Toolkit2NP2V212NetworkUtils13NetStateBasicC1Ev +_ZN3sce7Toolkit2NP2V212NetworkUtils13NetStateBasicC2ERKS4_ +_ZN3sce7Toolkit2NP2V212NetworkUtils13NetStateBasicC2Ev +_ZN3sce7Toolkit2NP2V212NetworkUtils13NetStateBasicD1Ev +_ZN3sce7Toolkit2NP2V212NetworkUtils13NetStateBasicD2Ev +_ZN3sce7Toolkit2NP2V212NetworkUtils13NetStateBasicaSERKS4_ +_ZN3sce7Toolkit2NP2V212NetworkUtils16NetStateDetailed5resetEv +_ZN3sce7Toolkit2NP2V212NetworkUtils16NetStateDetailed8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V212NetworkUtils16NetStateDetailedC1ERKS4_ +_ZN3sce7Toolkit2NP2V212NetworkUtils16NetStateDetailedC1Ev +_ZN3sce7Toolkit2NP2V212NetworkUtils16NetStateDetailedC2ERKS4_ +_ZN3sce7Toolkit2NP2V212NetworkUtils16NetStateDetailedC2Ev +_ZN3sce7Toolkit2NP2V212NetworkUtils16NetStateDetailedD1Ev +_ZN3sce7Toolkit2NP2V212NetworkUtils16NetStateDetailedD2Ev +_ZN3sce7Toolkit2NP2V212NetworkUtils16NetStateDetailedaSERKS4_ +_ZN3sce7Toolkit2NP2V212NetworkUtils16getBandwidthInfoERKNS3_7Request16GetBandwidthInfoEPNS2_4Core8ResponseINS3_12BandwithInfoEEE +_ZN3sce7Toolkit2NP2V212NetworkUtils19getBasicNetworkInfoERKNS3_7Request19GetBasicNetworkInfoEPNS2_4Core8ResponseINS3_13NetStateBasicEEE +_ZN3sce7Toolkit2NP2V212NetworkUtils22getDetailedNetworkInfoERKNS3_7Request22GetDetailedNetworkInfoEPNS2_4Core8ResponseINS3_16NetStateDetailedEEE +_ZN3sce7Toolkit2NP2V212NetworkUtils7Request16GetBandwidthInfoC1Ev +_ZN3sce7Toolkit2NP2V212NetworkUtils7Request16GetBandwidthInfoC2Ev +_ZN3sce7Toolkit2NP2V212NetworkUtils7Request16GetBandwidthInfoD1Ev +_ZN3sce7Toolkit2NP2V212NetworkUtils7Request16GetBandwidthInfoD2Ev +_ZN3sce7Toolkit2NP2V212NetworkUtils7Request19GetBasicNetworkInfoC1Ev +_ZN3sce7Toolkit2NP2V212NetworkUtils7Request19GetBasicNetworkInfoC2Ev +_ZN3sce7Toolkit2NP2V212NetworkUtils7Request19GetBasicNetworkInfoD1Ev +_ZN3sce7Toolkit2NP2V212NetworkUtils7Request19GetBasicNetworkInfoD2Ev +_ZN3sce7Toolkit2NP2V212NetworkUtils7Request22GetDetailedNetworkInfoC1Ev +_ZN3sce7Toolkit2NP2V212NetworkUtils7Request22GetDetailedNetworkInfoC2Ev +_ZN3sce7Toolkit2NP2V212NetworkUtils7Request22GetDetailedNetworkInfoD1Ev +_ZN3sce7Toolkit2NP2V212NetworkUtils7Request22GetDetailedNetworkInfoD2Ev +_ZN3sce7Toolkit2NP2V23TSS7Request7GetDataC1Ev +_ZN3sce7Toolkit2NP2V23TSS7Request7GetDataC2Ev +_ZN3sce7Toolkit2NP2V23TSS7Request7GetDataD1Ev +_ZN3sce7Toolkit2NP2V23TSS7Request7GetDataD2Ev +_ZN3sce7Toolkit2NP2V23TSS7TssData5resetEv +_ZN3sce7Toolkit2NP2V23TSS7TssData8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V23TSS7TssDataC1ERKS4_ +_ZN3sce7Toolkit2NP2V23TSS7TssDataC1Ev +_ZN3sce7Toolkit2NP2V23TSS7TssDataC2ERKS4_ +_ZN3sce7Toolkit2NP2V23TSS7TssDataC2Ev +_ZN3sce7Toolkit2NP2V23TSS7TssDataD1Ev +_ZN3sce7Toolkit2NP2V23TSS7TssDataD2Ev +_ZN3sce7Toolkit2NP2V23TSS7TssDataaSERKS4_ +_ZN3sce7Toolkit2NP2V23TSS7getDataERKNS3_7Request7GetDataEPNS2_4Core8ResponseINS3_7TssDataEEE +_ZN3sce7Toolkit2NP2V23TUS10deleteDataERKNS3_7Request10DeleteDataEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V23TUS12TusVariables13MAX_VARIABLESE +_ZN3sce7Toolkit2NP2V23TUS12TusVariables5resetEv +_ZN3sce7Toolkit2NP2V23TUS12TusVariables8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V23TUS12TusVariablesC1ERKS4_ +_ZN3sce7Toolkit2NP2V23TUS12TusVariablesC1Ev +_ZN3sce7Toolkit2NP2V23TUS12TusVariablesC2ERKS4_ +_ZN3sce7Toolkit2NP2V23TUS12TusVariablesC2Ev +_ZN3sce7Toolkit2NP2V23TUS12TusVariablesD1Ev +_ZN3sce7Toolkit2NP2V23TUS12TusVariablesD2Ev +_ZN3sce7Toolkit2NP2V23TUS12TusVariablesaSERKS4_ +_ZN3sce7Toolkit2NP2V23TUS12getVariablesERKNS3_7Request12GetVariablesEPNS2_4Core8ResponseINS3_12TusVariablesEEE +_ZN3sce7Toolkit2NP2V23TUS12setVariablesERKNS3_7Request12SetVariablesEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V23TUS13TusDataBufferC1Ev +_ZN3sce7Toolkit2NP2V23TUS13TusDataBufferC2Ev +_ZN3sce7Toolkit2NP2V23TUS13TusDataBufferD1Ev +_ZN3sce7Toolkit2NP2V23TUS13TusDataBufferD2Ev +_ZN3sce7Toolkit2NP2V23TUS13TusDataStatusC1Ev +_ZN3sce7Toolkit2NP2V23TUS13TusDataStatusC2Ev +_ZN3sce7Toolkit2NP2V23TUS13TusDataStatusD1Ev +_ZN3sce7Toolkit2NP2V23TUS13TusDataStatusD2Ev +_ZN3sce7Toolkit2NP2V23TUS14DataContentionC1Ev +_ZN3sce7Toolkit2NP2V23TUS14DataContentionC2Ev +_ZN3sce7Toolkit2NP2V23TUS14DataContentionD1Ev +_ZN3sce7Toolkit2NP2V23TUS14DataContentionD2Ev +_ZN3sce7Toolkit2NP2V23TUS15TusDataStatuses5resetEv +_ZN3sce7Toolkit2NP2V23TUS15TusDataStatuses8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V23TUS15TusDataStatusesC1ERKS4_ +_ZN3sce7Toolkit2NP2V23TUS15TusDataStatusesC1Ev +_ZN3sce7Toolkit2NP2V23TUS15TusDataStatusesC2ERKS4_ +_ZN3sce7Toolkit2NP2V23TUS15TusDataStatusesC2Ev +_ZN3sce7Toolkit2NP2V23TUS15TusDataStatusesD1Ev +_ZN3sce7Toolkit2NP2V23TUS15TusDataStatusesD2Ev +_ZN3sce7Toolkit2NP2V23TUS15TusDataStatusesaSERKS4_ +_ZN3sce7Toolkit2NP2V23TUS16FriendsVariables5resetEv +_ZN3sce7Toolkit2NP2V23TUS16FriendsVariables8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V23TUS16FriendsVariablesC1ERKS4_ +_ZN3sce7Toolkit2NP2V23TUS16FriendsVariablesC1Ev +_ZN3sce7Toolkit2NP2V23TUS16FriendsVariablesC2ERKS4_ +_ZN3sce7Toolkit2NP2V23TUS16FriendsVariablesC2Ev +_ZN3sce7Toolkit2NP2V23TUS16FriendsVariablesD1Ev +_ZN3sce7Toolkit2NP2V23TUS16FriendsVariablesD2Ev +_ZN3sce7Toolkit2NP2V23TUS16FriendsVariablesaSERKS4_ +_ZN3sce7Toolkit2NP2V23TUS16getUsersVariableERKNS3_7Request16GetUsersVariableEPNS2_4Core8ResponseINS3_12TusVariablesEEE +_ZN3sce7Toolkit2NP2V23TUS17tryAndSetVariableERKNS3_7Request17TryAndSetVariableEPNS2_4Core8ResponseINS3_12TusVariablesEEE +_ZN3sce7Toolkit2NP2V23TUS18getFriendsVariableERKNS3_7Request18GetFriendsVariableEPNS2_4Core8ResponseINS3_16FriendsVariablesEEE +_ZN3sce7Toolkit2NP2V23TUS18getUsersDataStatusERKNS3_7Request18GetUsersDataStatusEPNS2_4Core8ResponseINS3_15TusDataStatusesEEE +_ZN3sce7Toolkit2NP2V23TUS19FriendsDataStatuses5resetEv +_ZN3sce7Toolkit2NP2V23TUS19FriendsDataStatuses8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V23TUS19FriendsDataStatusesC1ERKS4_ +_ZN3sce7Toolkit2NP2V23TUS19FriendsDataStatusesC1Ev +_ZN3sce7Toolkit2NP2V23TUS19FriendsDataStatusesC2ERKS4_ +_ZN3sce7Toolkit2NP2V23TUS19FriendsDataStatusesC2Ev +_ZN3sce7Toolkit2NP2V23TUS19FriendsDataStatusesD1Ev +_ZN3sce7Toolkit2NP2V23TUS19FriendsDataStatusesD2Ev +_ZN3sce7Toolkit2NP2V23TUS19FriendsDataStatusesaSERKS4_ +_ZN3sce7Toolkit2NP2V23TUS19addToAndGetVariableERKNS3_7Request19AddToAndGetVariableEPNS2_4Core8ResponseINS3_12TusVariablesEEE +_ZN3sce7Toolkit2NP2V23TUS19addToAndGetVariableERKNS3_7Request19AddToAndGetVariableEPNS2_4Core8ResponseINS3_25AtomicAddToAndGetVariableEEE +_ZN3sce7Toolkit2NP2V23TUS20getFriendsDataStatusERKNS3_7Request20GetFriendsDataStatusEPNS2_4Core8ResponseINS3_19FriendsDataStatusesEEE +_ZN3sce7Toolkit2NP2V23TUS25AtomicAddToAndGetVariable5resetEv +_ZN3sce7Toolkit2NP2V23TUS25AtomicAddToAndGetVariable8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V23TUS25AtomicAddToAndGetVariableC1ERKS4_ +_ZN3sce7Toolkit2NP2V23TUS25AtomicAddToAndGetVariableC1Ev +_ZN3sce7Toolkit2NP2V23TUS25AtomicAddToAndGetVariableC2ERKS4_ +_ZN3sce7Toolkit2NP2V23TUS25AtomicAddToAndGetVariableC2Ev +_ZN3sce7Toolkit2NP2V23TUS25AtomicAddToAndGetVariableD1Ev +_ZN3sce7Toolkit2NP2V23TUS25AtomicAddToAndGetVariableD2Ev +_ZN3sce7Toolkit2NP2V23TUS25AtomicAddToAndGetVariableaSERKS4_ +_ZN3sce7Toolkit2NP2V23TUS25TusDataStatusForCrossSaveC1Ev +_ZN3sce7Toolkit2NP2V23TUS25TusDataStatusForCrossSaveC2Ev +_ZN3sce7Toolkit2NP2V23TUS25TusDataStatusForCrossSaveD1Ev +_ZN3sce7Toolkit2NP2V23TUS25TusDataStatusForCrossSaveD2Ev +_ZN3sce7Toolkit2NP2V23TUS7Request10DeleteData14MAX_DATA_SLOTSE +_ZN3sce7Toolkit2NP2V23TUS7Request10DeleteData19MAX_DATA_REAL_SLOTSE +_ZN3sce7Toolkit2NP2V23TUS7Request10DeleteData22MAX_DATA_VIRTUAL_SLOTSE +_ZN3sce7Toolkit2NP2V23TUS7Request10DeleteDataC1Ev +_ZN3sce7Toolkit2NP2V23TUS7Request10DeleteDataC2Ev +_ZN3sce7Toolkit2NP2V23TUS7Request10DeleteDataD1Ev +_ZN3sce7Toolkit2NP2V23TUS7Request10DeleteDataD2Ev +_ZN3sce7Toolkit2NP2V23TUS7Request12GetVariables18MAX_VARIABLE_SLOTSE +_ZN3sce7Toolkit2NP2V23TUS7Request12GetVariables23MAX_VARIABLE_REAL_SLOTSE +_ZN3sce7Toolkit2NP2V23TUS7Request12GetVariables26MAX_VARIABLE_VIRTUAL_SLOTSE +_ZN3sce7Toolkit2NP2V23TUS7Request12GetVariablesC1Ev +_ZN3sce7Toolkit2NP2V23TUS7Request12GetVariablesC2Ev +_ZN3sce7Toolkit2NP2V23TUS7Request12GetVariablesD1Ev +_ZN3sce7Toolkit2NP2V23TUS7Request12GetVariablesD2Ev +_ZN3sce7Toolkit2NP2V23TUS7Request12SetVariables18MAX_VARIABLE_SLOTSE +_ZN3sce7Toolkit2NP2V23TUS7Request12SetVariables23MAX_VARIABLE_REAL_SLOTSE +_ZN3sce7Toolkit2NP2V23TUS7Request12SetVariables26MAX_VARIABLE_VIRTUAL_SLOTSE +_ZN3sce7Toolkit2NP2V23TUS7Request12SetVariablesC1Ev +_ZN3sce7Toolkit2NP2V23TUS7Request12SetVariablesC2Ev +_ZN3sce7Toolkit2NP2V23TUS7Request12SetVariablesD1Ev +_ZN3sce7Toolkit2NP2V23TUS7Request12SetVariablesD2Ev +_ZN3sce7Toolkit2NP2V23TUS7Request12TusUserInputC1Ev +_ZN3sce7Toolkit2NP2V23TUS7Request12TusUserInputC2Ev +_ZN3sce7Toolkit2NP2V23TUS7Request12TusUserInputD1Ev +_ZN3sce7Toolkit2NP2V23TUS7Request12TusUserInputD2Ev +_ZN3sce7Toolkit2NP2V23TUS7Request16GetUsersVariableC1Ev +_ZN3sce7Toolkit2NP2V23TUS7Request16GetUsersVariableC2Ev +_ZN3sce7Toolkit2NP2V23TUS7Request16GetUsersVariableD1Ev +_ZN3sce7Toolkit2NP2V23TUS7Request16GetUsersVariableD2Ev +_ZN3sce7Toolkit2NP2V23TUS7Request16TusVariableInputC1Ev +_ZN3sce7Toolkit2NP2V23TUS7Request16TusVariableInputC2Ev +_ZN3sce7Toolkit2NP2V23TUS7Request16TusVariableInputD1Ev +_ZN3sce7Toolkit2NP2V23TUS7Request16TusVariableInputD2Ev +_ZN3sce7Toolkit2NP2V23TUS7Request17TryAndSetVariableC1Ev +_ZN3sce7Toolkit2NP2V23TUS7Request17TryAndSetVariableC2Ev +_ZN3sce7Toolkit2NP2V23TUS7Request17TryAndSetVariableD1Ev +_ZN3sce7Toolkit2NP2V23TUS7Request17TryAndSetVariableD2Ev +_ZN3sce7Toolkit2NP2V23TUS7Request18GetFriendsVariableC1Ev +_ZN3sce7Toolkit2NP2V23TUS7Request18GetFriendsVariableC2Ev +_ZN3sce7Toolkit2NP2V23TUS7Request18GetFriendsVariableD1Ev +_ZN3sce7Toolkit2NP2V23TUS7Request18GetFriendsVariableD2Ev +_ZN3sce7Toolkit2NP2V23TUS7Request18GetUsersDataStatusC1Ev +_ZN3sce7Toolkit2NP2V23TUS7Request18GetUsersDataStatusC2Ev +_ZN3sce7Toolkit2NP2V23TUS7Request18GetUsersDataStatusD1Ev +_ZN3sce7Toolkit2NP2V23TUS7Request18GetUsersDataStatusD2Ev +_ZN3sce7Toolkit2NP2V23TUS7Request19AddToAndGetVariableC1Ev +_ZN3sce7Toolkit2NP2V23TUS7Request19AddToAndGetVariableC2Ev +_ZN3sce7Toolkit2NP2V23TUS7Request19AddToAndGetVariableD1Ev +_ZN3sce7Toolkit2NP2V23TUS7Request19AddToAndGetVariableD2Ev +_ZN3sce7Toolkit2NP2V23TUS7Request20GetFriendsDataStatusC1Ev +_ZN3sce7Toolkit2NP2V23TUS7Request20GetFriendsDataStatusC2Ev +_ZN3sce7Toolkit2NP2V23TUS7Request20GetFriendsDataStatusD1Ev +_ZN3sce7Toolkit2NP2V23TUS7Request20GetFriendsDataStatusD2Ev +_ZN3sce7Toolkit2NP2V23TUS7Request7GetDataC1Ev +_ZN3sce7Toolkit2NP2V23TUS7Request7GetDataC2Ev +_ZN3sce7Toolkit2NP2V23TUS7Request7GetDataD1Ev +_ZN3sce7Toolkit2NP2V23TUS7Request7GetDataD2Ev +_ZN3sce7Toolkit2NP2V23TUS7Request7SetDataC1Ev +_ZN3sce7Toolkit2NP2V23TUS7Request7SetDataC2Ev +_ZN3sce7Toolkit2NP2V23TUS7Request7SetDataD1Ev +_ZN3sce7Toolkit2NP2V23TUS7Request7SetDataD2Ev +_ZN3sce7Toolkit2NP2V23TUS7TusData5resetEv +_ZN3sce7Toolkit2NP2V23TUS7TusData8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V23TUS7TusDataC1ERKS4_ +_ZN3sce7Toolkit2NP2V23TUS7TusDataC1Ev +_ZN3sce7Toolkit2NP2V23TUS7TusDataC2ERKS4_ +_ZN3sce7Toolkit2NP2V23TUS7TusDataC2Ev +_ZN3sce7Toolkit2NP2V23TUS7TusDataD1Ev +_ZN3sce7Toolkit2NP2V23TUS7TusDataD2Ev +_ZN3sce7Toolkit2NP2V23TUS7TusDataaSERKS4_ +_ZN3sce7Toolkit2NP2V23TUS7getDataERKNS3_7Request7GetDataEPNS2_4Core8ResponseINS3_7TusDataEEE +_ZN3sce7Toolkit2NP2V23TUS7setDataERKNS3_7Request7SetDataEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V24Auth10getIdTokenERKNS3_7Request10GetIdTokenEPNS2_4Core8ResponseINS3_7IdTokenEEE +_ZN3sce7Toolkit2NP2V24Auth11getAuthCodeERKNS3_7Request11GetAuthCodeEPNS2_4Core8ResponseINS3_8AuthCodeEEE +_ZN3sce7Toolkit2NP2V24Auth7IdToken5resetEv +_ZN3sce7Toolkit2NP2V24Auth7IdToken8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V24Auth7IdTokenC1ERKS4_ +_ZN3sce7Toolkit2NP2V24Auth7IdTokenC1Ev +_ZN3sce7Toolkit2NP2V24Auth7IdTokenC2ERKS4_ +_ZN3sce7Toolkit2NP2V24Auth7IdTokenC2Ev +_ZN3sce7Toolkit2NP2V24Auth7IdTokenD1Ev +_ZN3sce7Toolkit2NP2V24Auth7IdTokenD2Ev +_ZN3sce7Toolkit2NP2V24Auth7IdTokenaSERKS4_ +_ZN3sce7Toolkit2NP2V24Auth7Request10GetIdToken14MAX_SIZE_SCOPEE +_ZN3sce7Toolkit2NP2V24Auth7Request10GetIdTokenC1Ev +_ZN3sce7Toolkit2NP2V24Auth7Request10GetIdTokenC2Ev +_ZN3sce7Toolkit2NP2V24Auth7Request10GetIdTokenD1Ev +_ZN3sce7Toolkit2NP2V24Auth7Request10GetIdTokenD2Ev +_ZN3sce7Toolkit2NP2V24Auth7Request11GetAuthCode14MAX_SIZE_SCOPEE +_ZN3sce7Toolkit2NP2V24Auth7Request11GetAuthCodeC1Ev +_ZN3sce7Toolkit2NP2V24Auth7Request11GetAuthCodeC2Ev +_ZN3sce7Toolkit2NP2V24Auth7Request11GetAuthCodeD1Ev +_ZN3sce7Toolkit2NP2V24Auth7Request11GetAuthCodeD2Ev +_ZN3sce7Toolkit2NP2V24Auth8AuthCode5resetEv +_ZN3sce7Toolkit2NP2V24Auth8AuthCode8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V24Auth8AuthCodeC1ERKS4_ +_ZN3sce7Toolkit2NP2V24Auth8AuthCodeC1Ev +_ZN3sce7Toolkit2NP2V24Auth8AuthCodeC2ERKS4_ +_ZN3sce7Toolkit2NP2V24Auth8AuthCodeC2Ev +_ZN3sce7Toolkit2NP2V24Auth8AuthCodeD1Ev +_ZN3sce7Toolkit2NP2V24Auth8AuthCodeD2Ev +_ZN3sce7Toolkit2NP2V24Auth8AuthCodeaSERKS4_ +_ZN3sce7Toolkit2NP2V24Core10OnlineUserC1Ev +_ZN3sce7Toolkit2NP2V24Core10OnlineUserC2Ev +_ZN3sce7Toolkit2NP2V24Core10OnlineUserD1Ev +_ZN3sce7Toolkit2NP2V24Core10OnlineUserD2Ev +_ZN3sce7Toolkit2NP2V24Core11RequestBaseC1ENS3_11ServiceTypeENS3_12FunctionTypeE +_ZN3sce7Toolkit2NP2V24Core11RequestBaseC1ERKS4_ +_ZN3sce7Toolkit2NP2V24Core11RequestBaseC2ENS3_11ServiceTypeENS3_12FunctionTypeE +_ZN3sce7Toolkit2NP2V24Core11RequestBaseC2ERKS4_ +_ZN3sce7Toolkit2NP2V24Core11RequestBaseD1Ev +_ZN3sce7Toolkit2NP2V24Core11RequestBaseD2Ev +_ZN3sce7Toolkit2NP2V24Core11RequestBaseaSERKS4_ +_ZN3sce7Toolkit2NP2V24Core11ServerError17JSON_DATA_MAX_LENE +_ZN3sce7Toolkit2NP2V24Core11ServerErrorC1Ev +_ZN3sce7Toolkit2NP2V24Core11ServerErrorC2Ev +_ZN3sce7Toolkit2NP2V24Core11ServerErrorD1Ev +_ZN3sce7Toolkit2NP2V24Core11ServerErrorD2Ev +_ZN3sce7Toolkit2NP2V24Core11addCallbackERKNS3_7Request11AddCallbackE +_ZN3sce7Toolkit2NP2V24Core12ResponseBase10sameThreadEv +_ZN3sce7Toolkit2NP2V24Core12ResponseBase11resetValuesEv +_ZN3sce7Toolkit2NP2V24Core12ResponseBase13getReturnCodeEv +_ZN3sce7Toolkit2NP2V24Core12ResponseBase13setReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core12ResponseBase14getServerErrorEv +_ZN3sce7Toolkit2NP2V24Core12ResponseBase14setServerErrorEPNS3_11ServerErrorE +_ZN3sce7Toolkit2NP2V24Core12ResponseBase8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V24Core12ResponseBase8isLockedEv +_ZN3sce7Toolkit2NP2V24Core12ResponseBase9setLockedEb +_ZN3sce7Toolkit2NP2V24Core12ResponseBaseC1Ev +_ZN3sce7Toolkit2NP2V24Core12ResponseBaseC2Ev +_ZN3sce7Toolkit2NP2V24Core12ResponseBaseD1Ev +_ZN3sce7Toolkit2NP2V24Core12ResponseBaseD2Ev +_ZN3sce7Toolkit2NP2V24Core12ResponseDataC1ERKS4_ +_ZN3sce7Toolkit2NP2V24Core12ResponseDataC1Ev +_ZN3sce7Toolkit2NP2V24Core12ResponseDataC2ERKS4_ +_ZN3sce7Toolkit2NP2V24Core12ResponseDataC2Ev +_ZN3sce7Toolkit2NP2V24Core12ResponseDataD1Ev +_ZN3sce7Toolkit2NP2V24Core12ResponseDataD2Ev +_ZN3sce7Toolkit2NP2V24Core12ResponseDataaSERKS4_ +_ZN3sce7Toolkit2NP2V24Core12abortRequestEi +_ZN3sce7Toolkit2NP2V24Core13CallbackEvent5resetEv +_ZN3sce7Toolkit2NP2V24Core13CallbackEvent8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V24Core13CallbackEventC1ERKS4_ +_ZN3sce7Toolkit2NP2V24Core13CallbackEventC1Ev +_ZN3sce7Toolkit2NP2V24Core13CallbackEventC2ERKS4_ +_ZN3sce7Toolkit2NP2V24Core13CallbackEventC2Ev +_ZN3sce7Toolkit2NP2V24Core13CallbackEventD1Ev +_ZN3sce7Toolkit2NP2V24Core13CallbackEventD2Ev +_ZN3sce7Toolkit2NP2V24Core13CallbackEventaSERKS4_ +_ZN3sce7Toolkit2NP2V24Core14removeCallbackERKNS3_7Request14RemoveCallbackE +_ZN3sce7Toolkit2NP2V24Core15MemoryPoolStatsC1Ev +_ZN3sce7Toolkit2NP2V24Core15MemoryPoolStatsC2Ev +_ZN3sce7Toolkit2NP2V24Core15MemoryPoolStatsD1Ev +_ZN3sce7Toolkit2NP2V24Core15MemoryPoolStatsD2Ev +_ZN3sce7Toolkit2NP2V24Core15StringifyResult15RESULT_MAX_SIZEE +_ZN3sce7Toolkit2NP2V24Core15StringifyResultC1Ev +_ZN3sce7Toolkit2NP2V24Core15StringifyResultC2Ev +_ZN3sce7Toolkit2NP2V24Core15StringifyResultD1Ev +_ZN3sce7Toolkit2NP2V24Core15StringifyResultD2Ev +_ZN3sce7Toolkit2NP2V24Core16terminateServiceERKNS3_7Request16TerminateServiceEPNS3_8ResponseINS3_5EmptyEEE +_ZN3sce7Toolkit2NP2V24Core17CustomRequestBase20setCustomServiceTypeEi +_ZN3sce7Toolkit2NP2V24Core17CustomRequestBase21setCustomFunctionTypeEi +_ZN3sce7Toolkit2NP2V24Core17CustomRequestBaseC1ERKS4_ +_ZN3sce7Toolkit2NP2V24Core17CustomRequestBaseC1Ev +_ZN3sce7Toolkit2NP2V24Core17CustomRequestBaseC2ERKS4_ +_ZN3sce7Toolkit2NP2V24Core17CustomRequestBaseC2Ev +_ZN3sce7Toolkit2NP2V24Core17CustomRequestBaseD1Ev +_ZN3sce7Toolkit2NP2V24Core17CustomRequestBaseD2Ev +_ZN3sce7Toolkit2NP2V24Core17CustomRequestBaseaSERKS4_ +_ZN3sce7Toolkit2NP2V24Core18CustomResponseData5resetEv +_ZN3sce7Toolkit2NP2V24Core18CustomResponseDataC1ERKS4_ +_ZN3sce7Toolkit2NP2V24Core18CustomResponseDataC1Ev +_ZN3sce7Toolkit2NP2V24Core18CustomResponseDataC2ERKS4_ +_ZN3sce7Toolkit2NP2V24Core18CustomResponseDataC2Ev +_ZN3sce7Toolkit2NP2V24Core18CustomResponseDataD1Ev +_ZN3sce7Toolkit2NP2V24Core18CustomResponseDataD2Ev +_ZN3sce7Toolkit2NP2V24Core18CustomResponseDataaSERKS4_ +_ZN3sce7Toolkit2NP2V24Core18getMemoryPoolStatsERNS3_15MemoryPoolStatsE +_ZN3sce7Toolkit2NP2V24Core19JsonMemoryPoolStatsC1Ev +_ZN3sce7Toolkit2NP2V24Core19JsonMemoryPoolStatsC2Ev +_ZN3sce7Toolkit2NP2V24Core19JsonMemoryPoolStatsD1Ev +_ZN3sce7Toolkit2NP2V24Core19JsonMemoryPoolStatsD2Ev +_ZN3sce7Toolkit2NP2V24Core20getErrorCodeAsStringEiRNS3_15StringifyResultE +_ZN3sce7Toolkit2NP2V24Core22getServiceTypeAsStringENS3_11ServiceTypeERNS3_15StringifyResultE +_ZN3sce7Toolkit2NP2V24Core23getFunctionTypeAsStringENS3_12FunctionTypeERNS3_15StringifyResultE +_ZN3sce7Toolkit2NP2V24Core24NpToolkitMemoryPoolStatsC1Ev +_ZN3sce7Toolkit2NP2V24Core24NpToolkitMemoryPoolStatsC2Ev +_ZN3sce7Toolkit2NP2V24Core24NpToolkitMemoryPoolStatsD1Ev +_ZN3sce7Toolkit2NP2V24Core24NpToolkitMemoryPoolStatsD2Ev +_ZN3sce7Toolkit2NP2V24Core4initERKNS3_7Request10InitParamsE +_ZN3sce7Toolkit2NP2V24Core4termERKNS3_7Request10TermParamsE +_ZN3sce7Toolkit2NP2V24Core5Empty5resetEv +_ZN3sce7Toolkit2NP2V24Core5Empty8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V24Core5EmptyC1ERKS4_ +_ZN3sce7Toolkit2NP2V24Core5EmptyC1Ev +_ZN3sce7Toolkit2NP2V24Core5EmptyC2ERKS4_ +_ZN3sce7Toolkit2NP2V24Core5EmptyC2Ev +_ZN3sce7Toolkit2NP2V24Core5EmptyD1Ev +_ZN3sce7Toolkit2NP2V24Core5EmptyD2Ev +_ZN3sce7Toolkit2NP2V24Core5EmptyaSERKS4_ +_ZN3sce7Toolkit2NP2V24Core7Request10InitParamsC1Ev +_ZN3sce7Toolkit2NP2V24Core7Request10InitParamsC2Ev +_ZN3sce7Toolkit2NP2V24Core7Request10InitParamsD1Ev +_ZN3sce7Toolkit2NP2V24Core7Request10InitParamsD2Ev +_ZN3sce7Toolkit2NP2V24Core7Request10TermParamsC1Ev +_ZN3sce7Toolkit2NP2V24Core7Request10TermParamsC2Ev +_ZN3sce7Toolkit2NP2V24Core7Request10TermParamsD1Ev +_ZN3sce7Toolkit2NP2V24Core7Request10TermParamsD2Ev +_ZN3sce7Toolkit2NP2V24Core7Request11AddCallbackC1Ev +_ZN3sce7Toolkit2NP2V24Core7Request11AddCallbackC2Ev +_ZN3sce7Toolkit2NP2V24Core7Request11AddCallbackD1Ev +_ZN3sce7Toolkit2NP2V24Core7Request11AddCallbackD2Ev +_ZN3sce7Toolkit2NP2V24Core7Request11MemoryPools20NET_MEM_DEFAULT_SIZEE +_ZN3sce7Toolkit2NP2V24Core7Request11MemoryPools20NET_MEM_MINIMUM_SIZEE +_ZN3sce7Toolkit2NP2V24Core7Request11MemoryPools20SSL_MEM_DEFAULT_SIZEE +_ZN3sce7Toolkit2NP2V24Core7Request11MemoryPools20SSL_MEM_MINIMUM_SIZEE +_ZN3sce7Toolkit2NP2V24Core7Request11MemoryPools21HTTP_MEM_DEFAULT_SIZEE +_ZN3sce7Toolkit2NP2V24Core7Request11MemoryPools21HTTP_MEM_MINIMUM_SIZEE +_ZN3sce7Toolkit2NP2V24Core7Request11MemoryPools21JSON_MEM_DEFAULT_SIZEE +_ZN3sce7Toolkit2NP2V24Core7Request11MemoryPools21JSON_MEM_MINIMUM_SIZEE +_ZN3sce7Toolkit2NP2V24Core7Request11MemoryPools24WEB_API_MEM_DEFAULT_SIZEE +_ZN3sce7Toolkit2NP2V24Core7Request11MemoryPools25MATCHING_MEM_DEFAULT_SIZEE +_ZN3sce7Toolkit2NP2V24Core7Request11MemoryPools27NP_TOOLKIT_MEM_DEFAULT_SIZEE +_ZN3sce7Toolkit2NP2V24Core7Request11MemoryPools29MATCHING_SSL_MEM_DEFAULT_SIZEE +_ZN3sce7Toolkit2NP2V24Core7Request11MemoryPools32IN_GAME_MESSAGE_MEM_DEFAULT_SIZEE +_ZN3sce7Toolkit2NP2V24Core7Request11MemoryPoolsC1Ev +_ZN3sce7Toolkit2NP2V24Core7Request11MemoryPoolsC2Ev +_ZN3sce7Toolkit2NP2V24Core7Request11MemoryPoolsD1Ev +_ZN3sce7Toolkit2NP2V24Core7Request11MemoryPoolsD2Ev +_ZN3sce7Toolkit2NP2V24Core7Request14RemoveCallbackC1Ev +_ZN3sce7Toolkit2NP2V24Core7Request14RemoveCallbackC2Ev +_ZN3sce7Toolkit2NP2V24Core7Request14RemoveCallbackD1Ev +_ZN3sce7Toolkit2NP2V24Core7Request14RemoveCallbackD2Ev +_ZN3sce7Toolkit2NP2V24Core7Request16TerminateServiceC1Ev +_ZN3sce7Toolkit2NP2V24Core7Request16TerminateServiceC2Ev +_ZN3sce7Toolkit2NP2V24Core7Request16TerminateServiceD1Ev +_ZN3sce7Toolkit2NP2V24Core7Request16TerminateServiceD2Ev +_ZN3sce7Toolkit2NP2V24Core7Request16ThreadProperties14STACK_MIN_SIZEE +_ZN3sce7Toolkit2NP2V24Core7Request16ThreadProperties15PRIORITY_LOWESTE +_ZN3sce7Toolkit2NP2V24Core7Request16ThreadProperties16AFFINITY_DEFAULTE +_ZN3sce7Toolkit2NP2V24Core7Request16ThreadProperties16PRIORITY_DEFAULTE +_ZN3sce7Toolkit2NP2V24Core7Request16ThreadProperties16PRIORITY_HIGHESTE +_ZN3sce7Toolkit2NP2V24Core7Request16ThreadProperties18STACK_DEFAULT_SIZEE +_ZN3sce7Toolkit2NP2V24Core7Request16ThreadPropertiesC1Ev +_ZN3sce7Toolkit2NP2V24Core7Request16ThreadPropertiesC2Ev +_ZN3sce7Toolkit2NP2V24Core7Request16ThreadPropertiesD1Ev +_ZN3sce7Toolkit2NP2V24Core7Request16ThreadPropertiesD2Ev +_ZN3sce7Toolkit2NP2V24Core7Request17ExternalAllocatorC1Ev +_ZN3sce7Toolkit2NP2V24Core7Request17ExternalAllocatorC2Ev +_ZN3sce7Toolkit2NP2V24Core7Request17ExternalAllocatorD1Ev +_ZN3sce7Toolkit2NP2V24Core7Request17ExternalAllocatorD2Ev +_ZN3sce7Toolkit2NP2V24Core7Request20DefaultRequestParams13ASYNC_DEFAULTE +_ZN3sce7Toolkit2NP2V24Core7Request20DefaultRequestParams15INVALID_USER_IDE +_ZN3sce7Toolkit2NP2V24Core7Request20DefaultRequestParams21SERVICE_LABEL_DEFAULTE +_ZN3sce7Toolkit2NP2V24Core7Request20DefaultRequestParamsC1Ev +_ZN3sce7Toolkit2NP2V24Core7Request20DefaultRequestParamsC2Ev +_ZN3sce7Toolkit2NP2V24Core7Request20DefaultRequestParamsD1Ev +_ZN3sce7Toolkit2NP2V24Core7Request20DefaultRequestParamsD2Ev +_ZN3sce7Toolkit2NP2V24Core7Request21BehaviorModificationsC1Ev +_ZN3sce7Toolkit2NP2V24Core7Request21BehaviorModificationsC2Ev +_ZN3sce7Toolkit2NP2V24Core7Request21BehaviorModificationsD1Ev +_ZN3sce7Toolkit2NP2V24Core7Request21BehaviorModificationsD2Ev +_ZN3sce7Toolkit2NP2V24Core7Request21NpToolkitCallbackInfoC1Ev +_ZN3sce7Toolkit2NP2V24Core7Request21NpToolkitCallbackInfoC2Ev +_ZN3sce7Toolkit2NP2V24Core7Request21NpToolkitCallbackInfoD1Ev +_ZN3sce7Toolkit2NP2V24Core7Request21NpToolkitCallbackInfoD2Ev +_ZN3sce7Toolkit2NP2V24Core7Request23ServerPushNotificationsC1Ev +_ZN3sce7Toolkit2NP2V24Core7Request23ServerPushNotificationsC2Ev +_ZN3sce7Toolkit2NP2V24Core7Request23ServerPushNotificationsD1Ev +_ZN3sce7Toolkit2NP2V24Core7Request23ServerPushNotificationsD2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredTeamsEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredTeamsEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredTeamsEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredTeamsEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredTeamsEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredTeamsEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredTeamsEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredTeamsEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredTeamsEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredUsersEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredUsersEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredUsersEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredUsersEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredUsersEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredUsersEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredUsersEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredUsersEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredUsersEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament16RegisteredRosterEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament16RegisteredRosterEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament16RegisteredRosterEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament16RegisteredRosterEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament16RegisteredRosterEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament16RegisteredRosterEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament16RegisteredRosterEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament16RegisteredRosterEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament16RegisteredRosterEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament5EventEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament5EventEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament5EventEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament5EventEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament5EventEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament5EventEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament5EventEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament5EventEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament5EventEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament6EventsEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament6EventsEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament6EventsEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament6EventsEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament6EventsEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament6EventsEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament6EventsEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament6EventsEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament6EventsEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament7BracketEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament7BracketEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament7BracketEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament7BracketEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament7BracketEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament7BracketEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament7BracketEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament7BracketEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament7BracketEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Wordfilter16SanitizedCommentEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Wordfilter16SanitizedCommentEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Wordfilter16SanitizedCommentEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Wordfilter16SanitizedCommentEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Wordfilter16SanitizedCommentEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Wordfilter16SanitizedCommentEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Wordfilter16SanitizedCommentEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Wordfilter16SanitizedCommentEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Wordfilter16SanitizedCommentEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia10BroadcastsEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia10BroadcastsEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia10BroadcastsEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia10BroadcastsEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia10BroadcastsEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia10BroadcastsEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia10BroadcastsEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia10BroadcastsEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia10BroadcastsEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia11ScreenshotsEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia11ScreenshotsEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia11ScreenshotsEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia11ScreenshotsEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia11ScreenshotsEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia11ScreenshotsEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia11ScreenshotsEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia11ScreenshotsEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia11ScreenshotsEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia6VideosEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia6VideosEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia6VideosEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia6VideosEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia6VideosEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia6VideosEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia6VideosEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia6VideosEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia6VideosEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11UserProfile10NpProfilesEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11UserProfile10NpProfilesEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11UserProfile10NpProfilesEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11UserProfile10NpProfilesEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11UserProfile10NpProfilesEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11UserProfile10NpProfilesEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11UserProfile10NpProfilesEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11UserProfile10NpProfilesEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11UserProfile10NpProfilesEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed12SharedVideosEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed12SharedVideosEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed12SharedVideosEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed12SharedVideosEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed12SharedVideosEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed12SharedVideosEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed12SharedVideosEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed12SharedVideosEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed12SharedVideosEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed13UsersWhoLikedEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed13UsersWhoLikedEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed13UsersWhoLikedEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed13UsersWhoLikedEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed13UsersWhoLikedEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed13UsersWhoLikedEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed13UsersWhoLikedEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed13UsersWhoLikedEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed13UsersWhoLikedEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed14PlayedWithFeedEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed14PlayedWithFeedEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed14PlayedWithFeedEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed14PlayedWithFeedEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed14PlayedWithFeedEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed14PlayedWithFeedEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed14PlayedWithFeedEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed14PlayedWithFeedEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed14PlayedWithFeedEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed4FeedEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed4FeedEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed4FeedEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed4FeedEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed4FeedEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed4FeedEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed4FeedEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed4FeedEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed4FeedEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12EventsClient6EventsEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12EventsClient6EventsEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12EventsClient6EventsEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12EventsClient6EventsEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12EventsClient6EventsEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12EventsClient6EventsEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12EventsClient6EventsEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12EventsClient6EventsEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12EventsClient6EventsEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12BandwithInfoEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12BandwithInfoEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12BandwithInfoEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12BandwithInfoEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12BandwithInfoEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12BandwithInfoEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12BandwithInfoEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12BandwithInfoEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12BandwithInfoEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12Notification14NetStateChangeEE12deepCopyFromERS8_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12Notification14NetStateChangeEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12Notification14NetStateChangeEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12Notification14NetStateChangeEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12Notification14NetStateChangeEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12Notification14NetStateChangeEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12Notification14NetStateChangeEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12Notification14NetStateChangeEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12Notification14NetStateChangeEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils13NetStateBasicEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils13NetStateBasicEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils13NetStateBasicEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils13NetStateBasicEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils13NetStateBasicEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils13NetStateBasicEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils13NetStateBasicEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils13NetStateBasicEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils13NetStateBasicEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils16NetStateDetailedEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils16NetStateDetailedEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils16NetStateDetailedEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils16NetStateDetailedEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils16NetStateDetailedEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils16NetStateDetailedEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils16NetStateDetailedEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils16NetStateDetailedEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils16NetStateDetailedEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TSS7TssDataEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TSS7TssDataEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TSS7TssDataEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TSS7TssDataEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TSS7TssDataEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TSS7TssDataEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TSS7TssDataEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TSS7TssDataEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TSS7TssDataEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS12TusVariablesEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS12TusVariablesEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS12TusVariablesEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS12TusVariablesEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS12TusVariablesEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS12TusVariablesEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS12TusVariablesEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS12TusVariablesEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS12TusVariablesEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS15TusDataStatusesEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS15TusDataStatusesEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS15TusDataStatusesEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS15TusDataStatusesEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS15TusDataStatusesEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS15TusDataStatusesEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS15TusDataStatusesEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS15TusDataStatusesEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS15TusDataStatusesEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS16FriendsVariablesEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS16FriendsVariablesEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS16FriendsVariablesEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS16FriendsVariablesEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS16FriendsVariablesEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS16FriendsVariablesEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS16FriendsVariablesEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS16FriendsVariablesEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS16FriendsVariablesEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS19FriendsDataStatusesEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS19FriendsDataStatusesEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS19FriendsDataStatusesEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS19FriendsDataStatusesEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS19FriendsDataStatusesEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS19FriendsDataStatusesEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS19FriendsDataStatusesEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS19FriendsDataStatusesEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS19FriendsDataStatusesEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS25AtomicAddToAndGetVariableEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS25AtomicAddToAndGetVariableEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS25AtomicAddToAndGetVariableEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS25AtomicAddToAndGetVariableEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS25AtomicAddToAndGetVariableEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS25AtomicAddToAndGetVariableEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS25AtomicAddToAndGetVariableEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS25AtomicAddToAndGetVariableEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS25AtomicAddToAndGetVariableEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS7TusDataEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS7TusDataEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS7TusDataEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS7TusDataEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS7TusDataEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS7TusDataEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS7TusDataEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS7TusDataEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS7TusDataEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth7IdTokenEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth7IdTokenEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth7IdTokenEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth7IdTokenEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth7IdTokenEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth7IdTokenEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth7IdTokenEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth7IdTokenEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth7IdTokenEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth8AuthCodeEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth8AuthCodeEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth8AuthCodeEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth8AuthCodeEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth8AuthCodeEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth8AuthCodeEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth8AuthCodeEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth8AuthCodeEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth8AuthCodeEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12BlockedUsersEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12BlockedUsersEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12BlockedUsersEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12BlockedUsersEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12BlockedUsersEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12BlockedUsersEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12BlockedUsersEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12BlockedUsersEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12BlockedUsersEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification15BlocklistUpdateEE12deepCopyFromERS8_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification15BlocklistUpdateEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification15BlocklistUpdateEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification15BlocklistUpdateEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification15BlocklistUpdateEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification15BlocklistUpdateEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification15BlocklistUpdateEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification15BlocklistUpdateEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification15BlocklistUpdateEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification16FriendlistUpdateEE12deepCopyFromERS8_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification16FriendlistUpdateEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification16FriendlistUpdateEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification16FriendlistUpdateEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification16FriendlistUpdateEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification16FriendlistUpdateEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification16FriendlistUpdateEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification16FriendlistUpdateEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification16FriendlistUpdateEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend16FriendsOfFriendsEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend16FriendsOfFriendsEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend16FriendsOfFriendsEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend16FriendsOfFriendsEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend16FriendsOfFriendsEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend16FriendsOfFriendsEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend16FriendsOfFriendsEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend16FriendsOfFriendsEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend16FriendsOfFriendsEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend7FriendsEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend7FriendsEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend7FriendsEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend7FriendsEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend7FriendsEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend7FriendsEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend7FriendsEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend7FriendsEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend7FriendsEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy15TrophyPackGroupEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy15TrophyPackGroupEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy15TrophyPackGroupEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy15TrophyPackGroupEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy15TrophyPackGroupEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy15TrophyPackGroupEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy15TrophyPackGroupEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy15TrophyPackGroupEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy15TrophyPackGroupEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16TrophyPackTrophyEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16TrophyPackTrophyEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16TrophyPackTrophyEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16TrophyPackTrophyEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16TrophyPackTrophyEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16TrophyPackTrophyEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16TrophyPackTrophyEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16TrophyPackTrophyEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16TrophyPackTrophyEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16UnlockedTrophiesEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16UnlockedTrophiesEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16UnlockedTrophiesEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16UnlockedTrophiesEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16UnlockedTrophiesEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16UnlockedTrophiesEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16UnlockedTrophiesEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16UnlockedTrophiesEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16UnlockedTrophiesEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy17TrophyPackSummaryEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy17TrophyPackSummaryEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy17TrophyPackSummaryEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy17TrophyPackSummaryEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy17TrophyPackSummaryEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy17TrophyPackSummaryEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy17TrophyPackSummaryEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy17TrophyPackSummaryEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy17TrophyPackSummaryEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils12Notification15UserStateChangeEE12deepCopyFromERS8_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils12Notification15UserStateChangeEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils12Notification15UserStateChangeEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils12Notification15UserStateChangeEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils12Notification15UserStateChangeEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils12Notification15UserStateChangeEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils12Notification15UserStateChangeEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils12Notification15UserStateChangeEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils12Notification15UserStateChangeEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils5IdMapEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils5IdMapEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils5IdMapEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils5IdMapEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils5IdMapEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils5IdMapEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils5IdMapEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils5IdMapEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils5IdMapEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking10UsersRanksEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking10UsersRanksEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking10UsersRanksEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking10UsersRanksEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking10UsersRanksEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking10UsersRanksEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking10UsersRanksEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking10UsersRanksEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking10UsersRanksEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12FriendsRanksEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12FriendsRanksEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12FriendsRanksEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12FriendsRanksEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12FriendsRanksEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12FriendsRanksEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12FriendsRanksEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12FriendsRanksEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12FriendsRanksEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12RangeOfRanksEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12RangeOfRanksEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12RangeOfRanksEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12RangeOfRanksEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12RangeOfRanksEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12RangeOfRanksEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12RangeOfRanksEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12RangeOfRanksEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12RangeOfRanksEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17GetGameDataResultEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17GetGameDataResultEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17GetGameDataResultEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17GetGameDataResultEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17GetGameDataResultEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17GetGameDataResultEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17GetGameDataResultEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17GetGameDataResultEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17GetGameDataResultEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17SetGameDataResultEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17SetGameDataResultEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17SetGameDataResultEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17SetGameDataResultEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17SetGameDataResultEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17SetGameDataResultEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17SetGameDataResultEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17SetGameDataResultEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17SetGameDataResultEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking8TempRankEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking8TempRankEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking8TempRankEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking8TempRankEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking8TempRankEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking8TempRankEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking8TempRankEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking8TempRankEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking8TempRankEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11InvitationsEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11InvitationsEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11InvitationsEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11InvitationsEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11InvitationsEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11InvitationsEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11InvitationsEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11InvitationsEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11InvitationsEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11SessionDataEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11SessionDataEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11SessionDataEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11SessionDataEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11SessionDataEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11SessionDataEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11SessionDataEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11SessionDataEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11SessionDataEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session12Notification18InvitationReceivedEE12deepCopyFromERS8_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session12Notification18InvitationReceivedEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session12Notification18InvitationReceivedEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session12Notification18InvitationReceivedEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session12Notification18InvitationReceivedEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session12Notification18InvitationReceivedEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session12Notification18InvitationReceivedEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session12Notification18InvitationReceivedEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session12Notification18InvitationReceivedEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session14InvitationDataEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session14InvitationDataEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session14InvitationDataEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session14InvitationDataEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session14InvitationDataEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session14InvitationDataEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session14InvitationDataEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session14InvitationDataEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session14InvitationDataEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session7SessionEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session7SessionEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session7SessionEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session7SessionEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session7SessionEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session7SessionEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session7SessionEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session7SessionEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session7SessionEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session8SessionsEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session8SessionsEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session8SessionsEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session8SessionsEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session8SessionsEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session8SessionsEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session8SessionsEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session8SessionsEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session8SessionsEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session9SessionIdEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session9SessionIdEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session9SessionIdEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session9SessionIdEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session9SessionIdEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session9SessionIdEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session9SessionIdEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session9SessionIdEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session9SessionIdEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10CategoriesEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10CategoriesEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10CategoriesEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10CategoriesEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10CategoriesEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10CategoriesEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10CategoriesEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10CategoriesEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10CategoriesEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10ContainersEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10ContainersEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10ContainersEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10ContainersEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10ContainersEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10ContainersEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10ContainersEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10ContainersEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10ContainersEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce19ServiceEntitlementsEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce19ServiceEntitlementsEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce19ServiceEntitlementsEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce19ServiceEntitlementsEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce19ServiceEntitlementsEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce19ServiceEntitlementsEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce19ServiceEntitlementsEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce19ServiceEntitlementsEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce19ServiceEntitlementsEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce8ProductsEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce8ProductsEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce8ProductsEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce8ProductsEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce8ProductsEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce8ProductsEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce8ProductsEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce8ProductsEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce8ProductsEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification11RefreshRoomEE12deepCopyFromERS8_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification11RefreshRoomEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification11RefreshRoomEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification11RefreshRoomEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification11RefreshRoomEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification11RefreshRoomEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification11RefreshRoomEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification11RefreshRoomEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification11RefreshRoomEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification14NewRoomMessageEE12deepCopyFromERS8_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification14NewRoomMessageEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification14NewRoomMessageEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification14NewRoomMessageEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification14NewRoomMessageEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification14NewRoomMessageEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification14NewRoomMessageEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification14NewRoomMessageEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification14NewRoomMessageEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12RoomPingTimeEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12RoomPingTimeEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12RoomPingTimeEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12RoomPingTimeEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12RoomPingTimeEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12RoomPingTimeEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12RoomPingTimeEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12RoomPingTimeEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12RoomPingTimeEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4DataEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4DataEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4DataEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4DataEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4DataEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4DataEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4DataEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4DataEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4DataEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4RoomEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4RoomEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4RoomEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4RoomEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4RoomEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4RoomEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4RoomEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching5RoomsEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching5RoomsEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching5RoomsEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching5RoomsEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching5RoomsEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching5RoomsEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching5RoomsEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching5RoomsEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching5RoomsEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching6WorldsEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching6WorldsEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching6WorldsEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching6WorldsEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching6WorldsEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching6WorldsEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching6WorldsEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching6WorldsEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching6WorldsEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence12Notification14PresenceUpdateEE12deepCopyFromERS8_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence12Notification14PresenceUpdateEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence12Notification14PresenceUpdateEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence12Notification14PresenceUpdateEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence12Notification14PresenceUpdateEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence12Notification14PresenceUpdateEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence12Notification14PresenceUpdateEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence12Notification14PresenceUpdateEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence12Notification14PresenceUpdateEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence8PresenceEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence8PresenceEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence8PresenceEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence8PresenceEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence8PresenceEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence8PresenceEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence8PresenceEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence8PresenceEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence8PresenceEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge10ChallengesEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge10ChallengesEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge10ChallengesEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge10ChallengesEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge10ChallengesEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge10ChallengesEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge10ChallengesEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge10ChallengesEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge10ChallengesEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge13ChallengeDataEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge13ChallengeDataEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge13ChallengeDataEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge13ChallengeDataEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge13ChallengeDataEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge13ChallengeDataEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge13ChallengeDataEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge13ChallengeDataEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge13ChallengeDataEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge18ChallengeThumbnailEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge18ChallengeThumbnailEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge18ChallengeThumbnailEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge18ChallengeThumbnailEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge18ChallengeThumbnailEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge18ChallengeThumbnailEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge18ChallengeThumbnailEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge18ChallengeThumbnailEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge18ChallengeThumbnailEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification16NewInGameMessageEE12deepCopyFromERS8_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification16NewInGameMessageEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification16NewInGameMessageEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification16NewInGameMessageEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification16NewInGameMessageEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification16NewInGameMessageEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification16NewInGameMessageEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification16NewInGameMessageEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification16NewInGameMessageEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification18NewGameDataMessageEE12deepCopyFromERS8_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification18NewGameDataMessageEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification18NewGameDataMessageEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification18NewGameDataMessageEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification18NewGameDataMessageEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification18NewGameDataMessageEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification18NewGameDataMessageEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification18NewGameDataMessageEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification18NewGameDataMessageEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging16GameDataMessagesEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging16GameDataMessagesEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging16GameDataMessagesEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging16GameDataMessagesEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging16GameDataMessagesEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging16GameDataMessagesEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging16GameDataMessagesEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging16GameDataMessagesEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging16GameDataMessagesEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging24GameDataMessageThumbnailEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging24GameDataMessageThumbnailEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging24GameDataMessageThumbnailEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging24GameDataMessageThumbnailEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging24GameDataMessageThumbnailEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging24GameDataMessageThumbnailEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging24GameDataMessageThumbnailEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging24GameDataMessageThumbnailEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging24GameDataMessageThumbnailEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging25GameDataMessageAttachmentEE12deepCopyFromERS7_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging25GameDataMessageAttachmentEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging25GameDataMessageAttachmentEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging25GameDataMessageAttachmentEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging25GameDataMessageAttachmentEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging25GameDataMessageAttachmentEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging25GameDataMessageAttachmentEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging25GameDataMessageAttachmentEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging25GameDataMessageAttachmentEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS3_18CustomResponseDataEE12deepCopyFromERS6_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS3_18CustomResponseDataEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS3_18CustomResponseDataEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS3_18CustomResponseDataEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS3_18CustomResponseDataEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS3_18CustomResponseDataEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS3_18CustomResponseDataEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS3_18CustomResponseDataEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS3_18CustomResponseDataEED2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS3_5EmptyEE12deepCopyFromERS6_ +_ZN3sce7Toolkit2NP2V24Core8ResponseINS3_5EmptyEE19setCustomReturnCodeEi +_ZN3sce7Toolkit2NP2V24Core8ResponseINS3_5EmptyEE3getEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS3_5EmptyEE3setEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS3_5EmptyEE5resetEv +_ZN3sce7Toolkit2NP2V24Core8ResponseINS3_5EmptyEEC1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS3_5EmptyEEC2Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS3_5EmptyEED1Ev +_ZN3sce7Toolkit2NP2V24Core8ResponseINS3_5EmptyEED2Ev +_ZN3sce7Toolkit2NP2V26Friend10getFriendsERKNS3_7Request10GetFriendsEPNS2_4Core8ResponseINS3_7FriendsEEE +_ZN3sce7Toolkit2NP2V26Friend12BlockedUsers5resetEv +_ZN3sce7Toolkit2NP2V26Friend12BlockedUsers8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V26Friend12BlockedUsersC1ERKS4_ +_ZN3sce7Toolkit2NP2V26Friend12BlockedUsersC1Ev +_ZN3sce7Toolkit2NP2V26Friend12BlockedUsersC2ERKS4_ +_ZN3sce7Toolkit2NP2V26Friend12BlockedUsersC2Ev +_ZN3sce7Toolkit2NP2V26Friend12BlockedUsersD1Ev +_ZN3sce7Toolkit2NP2V26Friend12BlockedUsersD2Ev +_ZN3sce7Toolkit2NP2V26Friend12BlockedUsersaSERKS4_ +_ZN3sce7Toolkit2NP2V26Friend12Notification15BlocklistUpdate5resetEv +_ZN3sce7Toolkit2NP2V26Friend12Notification15BlocklistUpdate8deepCopyERKS5_ +_ZN3sce7Toolkit2NP2V26Friend12Notification15BlocklistUpdateC1ERKS5_ +_ZN3sce7Toolkit2NP2V26Friend12Notification15BlocklistUpdateC1Ev +_ZN3sce7Toolkit2NP2V26Friend12Notification15BlocklistUpdateC2ERKS5_ +_ZN3sce7Toolkit2NP2V26Friend12Notification15BlocklistUpdateC2Ev +_ZN3sce7Toolkit2NP2V26Friend12Notification15BlocklistUpdateD1Ev +_ZN3sce7Toolkit2NP2V26Friend12Notification15BlocklistUpdateD2Ev +_ZN3sce7Toolkit2NP2V26Friend12Notification15BlocklistUpdateaSERKS5_ +_ZN3sce7Toolkit2NP2V26Friend12Notification16FriendlistUpdate5resetEv +_ZN3sce7Toolkit2NP2V26Friend12Notification16FriendlistUpdate8deepCopyERKS5_ +_ZN3sce7Toolkit2NP2V26Friend12Notification16FriendlistUpdateC1ERKS5_ +_ZN3sce7Toolkit2NP2V26Friend12Notification16FriendlistUpdateC1Ev +_ZN3sce7Toolkit2NP2V26Friend12Notification16FriendlistUpdateC2ERKS5_ +_ZN3sce7Toolkit2NP2V26Friend12Notification16FriendlistUpdateC2Ev +_ZN3sce7Toolkit2NP2V26Friend12Notification16FriendlistUpdateD1Ev +_ZN3sce7Toolkit2NP2V26Friend12Notification16FriendlistUpdateD2Ev +_ZN3sce7Toolkit2NP2V26Friend12Notification16FriendlistUpdateaSERKS5_ +_ZN3sce7Toolkit2NP2V26Friend15FriendsOfFriend5resetEv +_ZN3sce7Toolkit2NP2V26Friend15FriendsOfFriend8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V26Friend15FriendsOfFriendC1ERKS4_ +_ZN3sce7Toolkit2NP2V26Friend15FriendsOfFriendC1Ev +_ZN3sce7Toolkit2NP2V26Friend15FriendsOfFriendC2ERKS4_ +_ZN3sce7Toolkit2NP2V26Friend15FriendsOfFriendC2Ev +_ZN3sce7Toolkit2NP2V26Friend15FriendsOfFriendD1Ev +_ZN3sce7Toolkit2NP2V26Friend15FriendsOfFriendD2Ev +_ZN3sce7Toolkit2NP2V26Friend15FriendsOfFriendaSERKS4_ +_ZN3sce7Toolkit2NP2V26Friend15getBlockedUsersERKNS3_7Request15GetBlockedUsersEPNS2_4Core8ResponseINS3_12BlockedUsersEEE +_ZN3sce7Toolkit2NP2V26Friend16FriendsOfFriends5resetEv +_ZN3sce7Toolkit2NP2V26Friend16FriendsOfFriends8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V26Friend16FriendsOfFriendsC1ERKS4_ +_ZN3sce7Toolkit2NP2V26Friend16FriendsOfFriendsC1Ev +_ZN3sce7Toolkit2NP2V26Friend16FriendsOfFriendsC2ERKS4_ +_ZN3sce7Toolkit2NP2V26Friend16FriendsOfFriendsC2Ev +_ZN3sce7Toolkit2NP2V26Friend16FriendsOfFriendsD1Ev +_ZN3sce7Toolkit2NP2V26Friend16FriendsOfFriendsD2Ev +_ZN3sce7Toolkit2NP2V26Friend16FriendsOfFriendsaSERKS4_ +_ZN3sce7Toolkit2NP2V26Friend19getFriendsOfFriendsERKNS3_7Request19GetFriendsOfFriendsEPNS2_4Core8ResponseINS3_16FriendsOfFriendsEEE +_ZN3sce7Toolkit2NP2V26Friend22displayBlockUserDialogERKNS3_7Request22DisplayBlockUserDialogEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V26Friend26displayFriendRequestDialogERKNS3_7Request26DisplayFriendRequestDialogEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V26Friend6FriendC1Ev +_ZN3sce7Toolkit2NP2V26Friend6FriendC2Ev +_ZN3sce7Toolkit2NP2V26Friend6FriendD1Ev +_ZN3sce7Toolkit2NP2V26Friend6FriendD2Ev +_ZN3sce7Toolkit2NP2V26Friend7Friends5resetEv +_ZN3sce7Toolkit2NP2V26Friend7Friends8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V26Friend7FriendsC1ERKS4_ +_ZN3sce7Toolkit2NP2V26Friend7FriendsC1Ev +_ZN3sce7Toolkit2NP2V26Friend7FriendsC2ERKS4_ +_ZN3sce7Toolkit2NP2V26Friend7FriendsC2Ev +_ZN3sce7Toolkit2NP2V26Friend7FriendsD1Ev +_ZN3sce7Toolkit2NP2V26Friend7FriendsD2Ev +_ZN3sce7Toolkit2NP2V26Friend7FriendsaSERKS4_ +_ZN3sce7Toolkit2NP2V26Friend7Request10GetFriends13MAX_PAGE_SIZEE +_ZN3sce7Toolkit2NP2V26Friend7Request10GetFriendsC1Ev +_ZN3sce7Toolkit2NP2V26Friend7Request10GetFriendsC2Ev +_ZN3sce7Toolkit2NP2V26Friend7Request10GetFriendsD1Ev +_ZN3sce7Toolkit2NP2V26Friend7Request10GetFriendsD2Ev +_ZN3sce7Toolkit2NP2V26Friend7Request15GetBlockedUsersC1Ev +_ZN3sce7Toolkit2NP2V26Friend7Request15GetBlockedUsersC2Ev +_ZN3sce7Toolkit2NP2V26Friend7Request15GetBlockedUsersD1Ev +_ZN3sce7Toolkit2NP2V26Friend7Request15GetBlockedUsersD2Ev +_ZN3sce7Toolkit2NP2V26Friend7Request19GetFriendsOfFriends15MAX_ACCOUNT_IDSE +_ZN3sce7Toolkit2NP2V26Friend7Request19GetFriendsOfFriendsC1Ev +_ZN3sce7Toolkit2NP2V26Friend7Request19GetFriendsOfFriendsC2Ev +_ZN3sce7Toolkit2NP2V26Friend7Request19GetFriendsOfFriendsD1Ev +_ZN3sce7Toolkit2NP2V26Friend7Request19GetFriendsOfFriendsD2Ev +_ZN3sce7Toolkit2NP2V26Friend7Request22DisplayBlockUserDialogC1Ev +_ZN3sce7Toolkit2NP2V26Friend7Request22DisplayBlockUserDialogC2Ev +_ZN3sce7Toolkit2NP2V26Friend7Request22DisplayBlockUserDialogD1Ev +_ZN3sce7Toolkit2NP2V26Friend7Request22DisplayBlockUserDialogD2Ev +_ZN3sce7Toolkit2NP2V26Friend7Request26DisplayFriendRequestDialogC1Ev +_ZN3sce7Toolkit2NP2V26Friend7Request26DisplayFriendRequestDialogC2Ev +_ZN3sce7Toolkit2NP2V26Friend7Request26DisplayFriendRequestDialogD1Ev +_ZN3sce7Toolkit2NP2V26Friend7Request26DisplayFriendRequestDialogD2Ev +_ZN3sce7Toolkit2NP2V26Trophy13setScreenshotERKNS3_7Request13SetScreenshotEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V26Trophy15TrophyPackGroup19MAX_NUMBER_TROPHIESE +_ZN3sce7Toolkit2NP2V26Trophy15TrophyPackGroup5resetEv +_ZN3sce7Toolkit2NP2V26Trophy15TrophyPackGroup8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V26Trophy15TrophyPackGroupC1ERKS4_ +_ZN3sce7Toolkit2NP2V26Trophy15TrophyPackGroupC1Ev +_ZN3sce7Toolkit2NP2V26Trophy15TrophyPackGroupC2ERKS4_ +_ZN3sce7Toolkit2NP2V26Trophy15TrophyPackGroupC2Ev +_ZN3sce7Toolkit2NP2V26Trophy15TrophyPackGroupD1Ev +_ZN3sce7Toolkit2NP2V26Trophy15TrophyPackGroupD2Ev +_ZN3sce7Toolkit2NP2V26Trophy15TrophyPackGroupaSERKS4_ +_ZN3sce7Toolkit2NP2V26Trophy16TrophyPackTrophy5resetEv +_ZN3sce7Toolkit2NP2V26Trophy16TrophyPackTrophy8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V26Trophy16TrophyPackTrophyC1ERKS4_ +_ZN3sce7Toolkit2NP2V26Trophy16TrophyPackTrophyC1Ev +_ZN3sce7Toolkit2NP2V26Trophy16TrophyPackTrophyC2ERKS4_ +_ZN3sce7Toolkit2NP2V26Trophy16TrophyPackTrophyC2Ev +_ZN3sce7Toolkit2NP2V26Trophy16TrophyPackTrophyD1Ev +_ZN3sce7Toolkit2NP2V26Trophy16TrophyPackTrophyD2Ev +_ZN3sce7Toolkit2NP2V26Trophy16TrophyPackTrophyaSERKS4_ +_ZN3sce7Toolkit2NP2V26Trophy16UnlockedTrophies17INVALID_TROPHY_IDE +_ZN3sce7Toolkit2NP2V26Trophy16UnlockedTrophies19MAX_NUMBER_TROPHIESE +_ZN3sce7Toolkit2NP2V26Trophy16UnlockedTrophies5resetEv +_ZN3sce7Toolkit2NP2V26Trophy16UnlockedTrophies8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V26Trophy16UnlockedTrophiesC1ERKS4_ +_ZN3sce7Toolkit2NP2V26Trophy16UnlockedTrophiesC1Ev +_ZN3sce7Toolkit2NP2V26Trophy16UnlockedTrophiesC2ERKS4_ +_ZN3sce7Toolkit2NP2V26Trophy16UnlockedTrophiesC2Ev +_ZN3sce7Toolkit2NP2V26Trophy16UnlockedTrophiesD1Ev +_ZN3sce7Toolkit2NP2V26Trophy16UnlockedTrophiesD2Ev +_ZN3sce7Toolkit2NP2V26Trophy16UnlockedTrophiesaSERKS4_ +_ZN3sce7Toolkit2NP2V26Trophy17TrophyPackSummary19MAX_NUMBER_TROPHIESE +_ZN3sce7Toolkit2NP2V26Trophy17TrophyPackSummary5resetEv +_ZN3sce7Toolkit2NP2V26Trophy17TrophyPackSummary8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V26Trophy17TrophyPackSummaryC1ERKS4_ +_ZN3sce7Toolkit2NP2V26Trophy17TrophyPackSummaryC1Ev +_ZN3sce7Toolkit2NP2V26Trophy17TrophyPackSummaryC2ERKS4_ +_ZN3sce7Toolkit2NP2V26Trophy17TrophyPackSummaryC2Ev +_ZN3sce7Toolkit2NP2V26Trophy17TrophyPackSummaryD1Ev +_ZN3sce7Toolkit2NP2V26Trophy17TrophyPackSummaryD2Ev +_ZN3sce7Toolkit2NP2V26Trophy17TrophyPackSummaryaSERKS4_ +_ZN3sce7Toolkit2NP2V26Trophy18getTrophyPackGroupERKNS3_7Request18GetTrophyPackGroupEPNS2_4Core8ResponseINS3_15TrophyPackGroupEEE +_ZN3sce7Toolkit2NP2V26Trophy18registerTrophyPackERKNS3_7Request18RegisterTrophyPackEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V26Trophy19getTrophyPackTrophyERKNS3_7Request19GetTrophyPackTrophyEPNS2_4Core8ResponseINS3_16TrophyPackTrophyEEE +_ZN3sce7Toolkit2NP2V26Trophy19getUnlockedTrophiesERKNS3_7Request19GetUnlockedTrophiesEPNS2_4Core8ResponseINS3_16UnlockedTrophiesEEE +_ZN3sce7Toolkit2NP2V26Trophy20getTrophyPackSummaryERKNS3_7Request20GetTrophyPackSummaryEPNS2_4Core8ResponseINS3_17TrophyPackSummaryEEE +_ZN3sce7Toolkit2NP2V26Trophy23displayTrophyListDialogERKNS3_7Request23DisplayTrophyListDialogEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V26Trophy6unlockERKNS3_7Request6UnlockEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V26Trophy7Request13SetScreenshot17INVALID_TROPHY_IDE +_ZN3sce7Toolkit2NP2V26Trophy7Request13SetScreenshot18MAX_NUMBER_TARGETSE +_ZN3sce7Toolkit2NP2V26Trophy7Request13SetScreenshot19MAX_NUMBER_TROPHIESE +_ZN3sce7Toolkit2NP2V26Trophy7Request13SetScreenshotC1Ev +_ZN3sce7Toolkit2NP2V26Trophy7Request13SetScreenshotC2Ev +_ZN3sce7Toolkit2NP2V26Trophy7Request13SetScreenshotD1Ev +_ZN3sce7Toolkit2NP2V26Trophy7Request13SetScreenshotD2Ev +_ZN3sce7Toolkit2NP2V26Trophy7Request18GetTrophyPackGroup10BASE_GROUPE +_ZN3sce7Toolkit2NP2V26Trophy7Request18GetTrophyPackGroup13INVALID_GROUPE +_ZN3sce7Toolkit2NP2V26Trophy7Request18GetTrophyPackGroupC1Ev +_ZN3sce7Toolkit2NP2V26Trophy7Request18GetTrophyPackGroupC2Ev +_ZN3sce7Toolkit2NP2V26Trophy7Request18GetTrophyPackGroupD1Ev +_ZN3sce7Toolkit2NP2V26Trophy7Request18GetTrophyPackGroupD2Ev +_ZN3sce7Toolkit2NP2V26Trophy7Request18RegisterTrophyPackC1Ev +_ZN3sce7Toolkit2NP2V26Trophy7Request18RegisterTrophyPackC2Ev +_ZN3sce7Toolkit2NP2V26Trophy7Request18RegisterTrophyPackD1Ev +_ZN3sce7Toolkit2NP2V26Trophy7Request18RegisterTrophyPackD2Ev +_ZN3sce7Toolkit2NP2V26Trophy7Request19GetTrophyPackTrophy17INVALID_TROPHY_IDE +_ZN3sce7Toolkit2NP2V26Trophy7Request19GetTrophyPackTrophyC1Ev +_ZN3sce7Toolkit2NP2V26Trophy7Request19GetTrophyPackTrophyC2Ev +_ZN3sce7Toolkit2NP2V26Trophy7Request19GetTrophyPackTrophyD1Ev +_ZN3sce7Toolkit2NP2V26Trophy7Request19GetTrophyPackTrophyD2Ev +_ZN3sce7Toolkit2NP2V26Trophy7Request19GetUnlockedTrophiesC1Ev +_ZN3sce7Toolkit2NP2V26Trophy7Request19GetUnlockedTrophiesC2Ev +_ZN3sce7Toolkit2NP2V26Trophy7Request19GetUnlockedTrophiesD1Ev +_ZN3sce7Toolkit2NP2V26Trophy7Request19GetUnlockedTrophiesD2Ev +_ZN3sce7Toolkit2NP2V26Trophy7Request20GetTrophyPackSummaryC1Ev +_ZN3sce7Toolkit2NP2V26Trophy7Request20GetTrophyPackSummaryC2Ev +_ZN3sce7Toolkit2NP2V26Trophy7Request20GetTrophyPackSummaryD1Ev +_ZN3sce7Toolkit2NP2V26Trophy7Request20GetTrophyPackSummaryD2Ev +_ZN3sce7Toolkit2NP2V26Trophy7Request23DisplayTrophyListDialogC1Ev +_ZN3sce7Toolkit2NP2V26Trophy7Request23DisplayTrophyListDialogC2Ev +_ZN3sce7Toolkit2NP2V26Trophy7Request23DisplayTrophyListDialogD1Ev +_ZN3sce7Toolkit2NP2V26Trophy7Request23DisplayTrophyListDialogD2Ev +_ZN3sce7Toolkit2NP2V26Trophy7Request6Unlock17INVALID_TROPHY_IDE +_ZN3sce7Toolkit2NP2V26Trophy7Request6UnlockC1Ev +_ZN3sce7Toolkit2NP2V26Trophy7Request6UnlockC2Ev +_ZN3sce7Toolkit2NP2V26Trophy7Request6UnlockD1Ev +_ZN3sce7Toolkit2NP2V26Trophy7Request6UnlockD2Ev +_ZN3sce7Toolkit2NP2V27NpUtils12Notification15UserStateChange5resetEv +_ZN3sce7Toolkit2NP2V27NpUtils12Notification15UserStateChange8deepCopyERKS5_ +_ZN3sce7Toolkit2NP2V27NpUtils12Notification15UserStateChangeC1ERKS5_ +_ZN3sce7Toolkit2NP2V27NpUtils12Notification15UserStateChangeC1Ev +_ZN3sce7Toolkit2NP2V27NpUtils12Notification15UserStateChangeC2ERKS5_ +_ZN3sce7Toolkit2NP2V27NpUtils12Notification15UserStateChangeC2Ev +_ZN3sce7Toolkit2NP2V27NpUtils12Notification15UserStateChangeD1Ev +_ZN3sce7Toolkit2NP2V27NpUtils12Notification15UserStateChangeD2Ev +_ZN3sce7Toolkit2NP2V27NpUtils12Notification15UserStateChangeaSERKS5_ +_ZN3sce7Toolkit2NP2V27NpUtils17checkAvailabilityERKNS3_7Request17CheckAvailabilityEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V27NpUtils17checkPsPlusAccessERKNS3_7Request17CheckPsPlusAccessEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V27NpUtils19displaySigninDialogERKNS3_7Request19DisplaySigninDialogEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V27NpUtils22getAccountIdByOnlineIdERKNS3_7Request22GetAccountIdByOnlineIdEPNS2_4Core8ResponseINS3_5IdMapEEE +_ZN3sce7Toolkit2NP2V27NpUtils22getOnlineIdByAccountIdERKNS3_7Request22GetOnlineIdByAccountIdEPNS2_4Core8ResponseINS3_5IdMapEEE +_ZN3sce7Toolkit2NP2V27NpUtils24setTitleIdForDevelopmentERKNS3_7Request24SetTitleIdForDevelopmentEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V27NpUtils5IdMap5resetEv +_ZN3sce7Toolkit2NP2V27NpUtils5IdMap8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V27NpUtils5IdMapC1ERKS4_ +_ZN3sce7Toolkit2NP2V27NpUtils5IdMapC1Ev +_ZN3sce7Toolkit2NP2V27NpUtils5IdMapC2ERKS4_ +_ZN3sce7Toolkit2NP2V27NpUtils5IdMapC2Ev +_ZN3sce7Toolkit2NP2V27NpUtils5IdMapD1Ev +_ZN3sce7Toolkit2NP2V27NpUtils5IdMapD2Ev +_ZN3sce7Toolkit2NP2V27NpUtils5IdMapaSERKS4_ +_ZN3sce7Toolkit2NP2V27NpUtils7Request17CheckAvailabilityC1Ev +_ZN3sce7Toolkit2NP2V27NpUtils7Request17CheckAvailabilityC2Ev +_ZN3sce7Toolkit2NP2V27NpUtils7Request17CheckAvailabilityD1Ev +_ZN3sce7Toolkit2NP2V27NpUtils7Request17CheckAvailabilityD2Ev +_ZN3sce7Toolkit2NP2V27NpUtils7Request17CheckPsPlusAccessC1Ev +_ZN3sce7Toolkit2NP2V27NpUtils7Request17CheckPsPlusAccessC2Ev +_ZN3sce7Toolkit2NP2V27NpUtils7Request17CheckPsPlusAccessD1Ev +_ZN3sce7Toolkit2NP2V27NpUtils7Request17CheckPsPlusAccessD2Ev +_ZN3sce7Toolkit2NP2V27NpUtils7Request19DisplaySigninDialogC1Ev +_ZN3sce7Toolkit2NP2V27NpUtils7Request19DisplaySigninDialogC2Ev +_ZN3sce7Toolkit2NP2V27NpUtils7Request19DisplaySigninDialogD1Ev +_ZN3sce7Toolkit2NP2V27NpUtils7Request19DisplaySigninDialogD2Ev +_ZN3sce7Toolkit2NP2V27NpUtils7Request22GetAccountIdByOnlineId13MAX_SIZE_DATEE +_ZN3sce7Toolkit2NP2V27NpUtils7Request22GetAccountIdByOnlineIdC1Ev +_ZN3sce7Toolkit2NP2V27NpUtils7Request22GetAccountIdByOnlineIdC2Ev +_ZN3sce7Toolkit2NP2V27NpUtils7Request22GetAccountIdByOnlineIdD1Ev +_ZN3sce7Toolkit2NP2V27NpUtils7Request22GetAccountIdByOnlineIdD2Ev +_ZN3sce7Toolkit2NP2V27NpUtils7Request22GetOnlineIdByAccountIdC1Ev +_ZN3sce7Toolkit2NP2V27NpUtils7Request22GetOnlineIdByAccountIdC2Ev +_ZN3sce7Toolkit2NP2V27NpUtils7Request22GetOnlineIdByAccountIdD1Ev +_ZN3sce7Toolkit2NP2V27NpUtils7Request22GetOnlineIdByAccountIdD2Ev +_ZN3sce7Toolkit2NP2V27NpUtils7Request24SetTitleIdForDevelopment28TITLE_SECRET_STRING_MAX_SIZEE +_ZN3sce7Toolkit2NP2V27NpUtils7Request24SetTitleIdForDevelopmentC1Ev +_ZN3sce7Toolkit2NP2V27NpUtils7Request24SetTitleIdForDevelopmentC2Ev +_ZN3sce7Toolkit2NP2V27NpUtils7Request24SetTitleIdForDevelopmentD1Ev +_ZN3sce7Toolkit2NP2V27NpUtils7Request24SetTitleIdForDevelopmentD2Ev +_ZN3sce7Toolkit2NP2V27Ranking10UsersRanks13MAX_NUM_USERSE +_ZN3sce7Toolkit2NP2V27Ranking10UsersRanks14MAX_NUM_BOARDSE +_ZN3sce7Toolkit2NP2V27Ranking10UsersRanks5resetEv +_ZN3sce7Toolkit2NP2V27Ranking10UsersRanks8MAX_PCIDE +_ZN3sce7Toolkit2NP2V27Ranking10UsersRanks8MIN_PCIDE +_ZN3sce7Toolkit2NP2V27Ranking10UsersRanks8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V27Ranking10UsersRanksC1ERKS4_ +_ZN3sce7Toolkit2NP2V27Ranking10UsersRanksC1Ev +_ZN3sce7Toolkit2NP2V27Ranking10UsersRanksC2ERKS4_ +_ZN3sce7Toolkit2NP2V27Ranking10UsersRanksC2Ev +_ZN3sce7Toolkit2NP2V27Ranking10UsersRanksD1Ev +_ZN3sce7Toolkit2NP2V27Ranking10UsersRanksD2Ev +_ZN3sce7Toolkit2NP2V27Ranking10UsersRanksaSERKS4_ +_ZN3sce7Toolkit2NP2V27Ranking11getGameDataERKNS3_7Request11GetGameDataEPNS2_4Core8ResponseINS3_17GetGameDataResultEEE +_ZN3sce7Toolkit2NP2V27Ranking11setGameDataERKNS3_7Request11SetGameDataEPNS2_4Core8ResponseINS3_17SetGameDataResultEEE +_ZN3sce7Toolkit2NP2V27Ranking12FriendsRanks14MAX_NUM_BOARDSE +_ZN3sce7Toolkit2NP2V27Ranking12FriendsRanks15MAX_NUM_FRIENDSE +_ZN3sce7Toolkit2NP2V27Ranking12FriendsRanks5resetEv +_ZN3sce7Toolkit2NP2V27Ranking12FriendsRanks8MAX_PCIDE +_ZN3sce7Toolkit2NP2V27Ranking12FriendsRanks8MIN_PCIDE +_ZN3sce7Toolkit2NP2V27Ranking12FriendsRanks8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V27Ranking12FriendsRanksC1ERKS4_ +_ZN3sce7Toolkit2NP2V27Ranking12FriendsRanksC1Ev +_ZN3sce7Toolkit2NP2V27Ranking12FriendsRanksC2ERKS4_ +_ZN3sce7Toolkit2NP2V27Ranking12FriendsRanksC2Ev +_ZN3sce7Toolkit2NP2V27Ranking12FriendsRanksD1Ev +_ZN3sce7Toolkit2NP2V27Ranking12FriendsRanksD2Ev +_ZN3sce7Toolkit2NP2V27Ranking12FriendsRanksaSERKS4_ +_ZN3sce7Toolkit2NP2V27Ranking12RangeOfRanks10FIRST_RANKE +_ZN3sce7Toolkit2NP2V27Ranking12RangeOfRanks14MAX_NUM_BOARDSE +_ZN3sce7Toolkit2NP2V27Ranking12RangeOfRanks5resetEv +_ZN3sce7Toolkit2NP2V27Ranking12RangeOfRanks8MAX_PCIDE +_ZN3sce7Toolkit2NP2V27Ranking12RangeOfRanks8MIN_PCIDE +_ZN3sce7Toolkit2NP2V27Ranking12RangeOfRanks8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V27Ranking12RangeOfRanks9MAX_RANGEE +_ZN3sce7Toolkit2NP2V27Ranking12RangeOfRanks9MIN_RANGEE +_ZN3sce7Toolkit2NP2V27Ranking12RangeOfRanksC1ERKS4_ +_ZN3sce7Toolkit2NP2V27Ranking12RangeOfRanksC1Ev +_ZN3sce7Toolkit2NP2V27Ranking12RangeOfRanksC2ERKS4_ +_ZN3sce7Toolkit2NP2V27Ranking12RangeOfRanksC2Ev +_ZN3sce7Toolkit2NP2V27Ranking12RangeOfRanksD1Ev +_ZN3sce7Toolkit2NP2V27Ranking12RangeOfRanksD2Ev +_ZN3sce7Toolkit2NP2V27Ranking12RangeOfRanksaSERKS4_ +_ZN3sce7Toolkit2NP2V27Ranking13getUsersRanksERKNS3_7Request13GetUsersRanksEPNS2_4Core8ResponseINS3_10UsersRanksEEE +_ZN3sce7Toolkit2NP2V27Ranking15getFriendsRanksERKNS3_7Request15GetFriendsRanksEPNS2_4Core8ResponseINS3_12FriendsRanksEEE +_ZN3sce7Toolkit2NP2V27Ranking15getRangeOfRanksERKNS3_7Request15GetRangeOfRanksEPNS2_4Core8ResponseINS3_12RangeOfRanksEEE +_ZN3sce7Toolkit2NP2V27Ranking17GetGameDataResult5resetEv +_ZN3sce7Toolkit2NP2V27Ranking17GetGameDataResult8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V27Ranking17GetGameDataResultC1ERKS4_ +_ZN3sce7Toolkit2NP2V27Ranking17GetGameDataResultC1Ev +_ZN3sce7Toolkit2NP2V27Ranking17GetGameDataResultC2ERKS4_ +_ZN3sce7Toolkit2NP2V27Ranking17GetGameDataResultC2Ev +_ZN3sce7Toolkit2NP2V27Ranking17GetGameDataResultD1Ev +_ZN3sce7Toolkit2NP2V27Ranking17GetGameDataResultD2Ev +_ZN3sce7Toolkit2NP2V27Ranking17GetGameDataResultaSERKS4_ +_ZN3sce7Toolkit2NP2V27Ranking17SetGameDataResult5resetEv +_ZN3sce7Toolkit2NP2V27Ranking17SetGameDataResult8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V27Ranking17SetGameDataResultC1ERKS4_ +_ZN3sce7Toolkit2NP2V27Ranking17SetGameDataResultC1Ev +_ZN3sce7Toolkit2NP2V27Ranking17SetGameDataResultC2ERKS4_ +_ZN3sce7Toolkit2NP2V27Ranking17SetGameDataResultC2Ev +_ZN3sce7Toolkit2NP2V27Ranking17SetGameDataResultD1Ev +_ZN3sce7Toolkit2NP2V27Ranking17SetGameDataResultD2Ev +_ZN3sce7Toolkit2NP2V27Ranking17SetGameDataResultaSERKS4_ +_ZN3sce7Toolkit2NP2V27Ranking7Request11GetGameData14MAX_NUM_BOARDSE +_ZN3sce7Toolkit2NP2V27Ranking7Request11GetGameData8MAX_PCIDE +_ZN3sce7Toolkit2NP2V27Ranking7Request11GetGameData8MIN_PCIDE +_ZN3sce7Toolkit2NP2V27Ranking7Request11GetGameDataC1Ev +_ZN3sce7Toolkit2NP2V27Ranking7Request11GetGameDataC2Ev +_ZN3sce7Toolkit2NP2V27Ranking7Request11GetGameDataD1Ev +_ZN3sce7Toolkit2NP2V27Ranking7Request11GetGameDataD2Ev +_ZN3sce7Toolkit2NP2V27Ranking7Request11SetGameData14MAX_NUM_BOARDSE +_ZN3sce7Toolkit2NP2V27Ranking7Request11SetGameData8MAX_PCIDE +_ZN3sce7Toolkit2NP2V27Ranking7Request11SetGameData8MIN_PCIDE +_ZN3sce7Toolkit2NP2V27Ranking7Request11SetGameDataC1Ev +_ZN3sce7Toolkit2NP2V27Ranking7Request11SetGameDataC2Ev +_ZN3sce7Toolkit2NP2V27Ranking7Request11SetGameDataD1Ev +_ZN3sce7Toolkit2NP2V27Ranking7Request11SetGameDataD2Ev +_ZN3sce7Toolkit2NP2V27Ranking7Request13GetUsersRanks13MAX_NUM_USERSE +_ZN3sce7Toolkit2NP2V27Ranking7Request13GetUsersRanks14MAX_NUM_BOARDSE +_ZN3sce7Toolkit2NP2V27Ranking7Request13GetUsersRanks8MAX_PCIDE +_ZN3sce7Toolkit2NP2V27Ranking7Request13GetUsersRanks8MIN_PCIDE +_ZN3sce7Toolkit2NP2V27Ranking7Request13GetUsersRanksC1Ev +_ZN3sce7Toolkit2NP2V27Ranking7Request13GetUsersRanksC2Ev +_ZN3sce7Toolkit2NP2V27Ranking7Request13GetUsersRanksD1Ev +_ZN3sce7Toolkit2NP2V27Ranking7Request13GetUsersRanksD2Ev +_ZN3sce7Toolkit2NP2V27Ranking7Request15GetFriendsRanks14MAX_NUM_BOARDSE +_ZN3sce7Toolkit2NP2V27Ranking7Request15GetFriendsRanks15MAX_NUM_FRIENDSE +_ZN3sce7Toolkit2NP2V27Ranking7Request15GetFriendsRanks8MAX_PCIDE +_ZN3sce7Toolkit2NP2V27Ranking7Request15GetFriendsRanks8MIN_PCIDE +_ZN3sce7Toolkit2NP2V27Ranking7Request15GetFriendsRanksC1Ev +_ZN3sce7Toolkit2NP2V27Ranking7Request15GetFriendsRanksC2Ev +_ZN3sce7Toolkit2NP2V27Ranking7Request15GetFriendsRanksD1Ev +_ZN3sce7Toolkit2NP2V27Ranking7Request15GetFriendsRanksD2Ev +_ZN3sce7Toolkit2NP2V27Ranking7Request15GetRangeOfRanks10FIRST_RANKE +_ZN3sce7Toolkit2NP2V27Ranking7Request15GetRangeOfRanks14MAX_NUM_BOARDSE +_ZN3sce7Toolkit2NP2V27Ranking7Request15GetRangeOfRanks9MAX_RANGEE +_ZN3sce7Toolkit2NP2V27Ranking7Request15GetRangeOfRanks9MIN_RANGEE +_ZN3sce7Toolkit2NP2V27Ranking7Request15GetRangeOfRanksC1Ev +_ZN3sce7Toolkit2NP2V27Ranking7Request15GetRangeOfRanksC2Ev +_ZN3sce7Toolkit2NP2V27Ranking7Request15GetRangeOfRanksD1Ev +_ZN3sce7Toolkit2NP2V27Ranking7Request15GetRangeOfRanksD2Ev +_ZN3sce7Toolkit2NP2V27Ranking7Request8SetScore14MAX_NUM_BOARDSE +_ZN3sce7Toolkit2NP2V27Ranking7Request8SetScore8MAX_PCIDE +_ZN3sce7Toolkit2NP2V27Ranking7Request8SetScore8MIN_PCIDE +_ZN3sce7Toolkit2NP2V27Ranking7Request8SetScoreC1Ev +_ZN3sce7Toolkit2NP2V27Ranking7Request8SetScoreC2Ev +_ZN3sce7Toolkit2NP2V27Ranking7Request8SetScoreD1Ev +_ZN3sce7Toolkit2NP2V27Ranking7Request8SetScoreD2Ev +_ZN3sce7Toolkit2NP2V27Ranking8TempRank10FIRST_RANKE +_ZN3sce7Toolkit2NP2V27Ranking8TempRank5resetEv +_ZN3sce7Toolkit2NP2V27Ranking8TempRank8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V27Ranking8TempRankC1ERKS4_ +_ZN3sce7Toolkit2NP2V27Ranking8TempRankC1Ev +_ZN3sce7Toolkit2NP2V27Ranking8TempRankC2ERKS4_ +_ZN3sce7Toolkit2NP2V27Ranking8TempRankC2Ev +_ZN3sce7Toolkit2NP2V27Ranking8TempRankD1Ev +_ZN3sce7Toolkit2NP2V27Ranking8TempRankD2Ev +_ZN3sce7Toolkit2NP2V27Ranking8TempRankaSERKS4_ +_ZN3sce7Toolkit2NP2V27Ranking8setScoreERKNS3_7Request8SetScoreEPNS2_4Core8ResponseINS3_8TempRankEEE +_ZN3sce7Toolkit2NP2V27Session10Invitation12MAX_LEN_DATEE +_ZN3sce7Toolkit2NP2V27Session10InvitationC1Ev +_ZN3sce7Toolkit2NP2V27Session10InvitationC2Ev +_ZN3sce7Toolkit2NP2V27Session10InvitationD1Ev +_ZN3sce7Toolkit2NP2V27Session10InvitationD2Ev +_ZN3sce7Toolkit2NP2V27Session11Invitations5resetEv +_ZN3sce7Toolkit2NP2V27Session11Invitations8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V27Session11InvitationsC1ERKS4_ +_ZN3sce7Toolkit2NP2V27Session11InvitationsC1Ev +_ZN3sce7Toolkit2NP2V27Session11InvitationsC2ERKS4_ +_ZN3sce7Toolkit2NP2V27Session11InvitationsC2Ev +_ZN3sce7Toolkit2NP2V27Session11InvitationsD1Ev +_ZN3sce7Toolkit2NP2V27Session11InvitationsD2Ev +_ZN3sce7Toolkit2NP2V27Session11InvitationsaSERKS4_ +_ZN3sce7Toolkit2NP2V27Session11SessionData5resetEv +_ZN3sce7Toolkit2NP2V27Session11SessionData8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V27Session11SessionDataC1ERKS4_ +_ZN3sce7Toolkit2NP2V27Session11SessionDataC1Ev +_ZN3sce7Toolkit2NP2V27Session11SessionDataC2ERKS4_ +_ZN3sce7Toolkit2NP2V27Session11SessionDataC2Ev +_ZN3sce7Toolkit2NP2V27Session11SessionDataD1Ev +_ZN3sce7Toolkit2NP2V27Session11SessionDataD2Ev +_ZN3sce7Toolkit2NP2V27Session11SessionDataaSERKS4_ +_ZN3sce7Toolkit2NP2V27Session12Notification18InvitationReceived5resetEv +_ZN3sce7Toolkit2NP2V27Session12Notification18InvitationReceived8deepCopyERKS5_ +_ZN3sce7Toolkit2NP2V27Session12Notification18InvitationReceivedC1ERKS5_ +_ZN3sce7Toolkit2NP2V27Session12Notification18InvitationReceivedC1Ev +_ZN3sce7Toolkit2NP2V27Session12Notification18InvitationReceivedC2ERKS5_ +_ZN3sce7Toolkit2NP2V27Session12Notification18InvitationReceivedC2Ev +_ZN3sce7Toolkit2NP2V27Session12Notification18InvitationReceivedD1Ev +_ZN3sce7Toolkit2NP2V27Session12Notification18InvitationReceivedD2Ev +_ZN3sce7Toolkit2NP2V27Session12Notification18InvitationReceivedaSERKS5_ +_ZN3sce7Toolkit2NP2V27Session12SessionImage14IMAGE_MAX_SIZEE +_ZN3sce7Toolkit2NP2V27Session12SessionImage18IMAGE_PATH_MAX_LENE +_ZN3sce7Toolkit2NP2V27Session12SessionImageC1Ev +_ZN3sce7Toolkit2NP2V27Session12SessionImageC2Ev +_ZN3sce7Toolkit2NP2V27Session12SessionImageD1Ev +_ZN3sce7Toolkit2NP2V27Session12SessionImageD2Ev +_ZN3sce7Toolkit2NP2V27Session13SessionMember13INVALID_INDEXE +_ZN3sce7Toolkit2NP2V27Session13SessionMember16INVALID_PRIORITYE +_ZN3sce7Toolkit2NP2V27Session13SessionMemberC1Ev +_ZN3sce7Toolkit2NP2V27Session13SessionMemberC2Ev +_ZN3sce7Toolkit2NP2V27Session13SessionMemberD1Ev +_ZN3sce7Toolkit2NP2V27Session13SessionMemberD2Ev +_ZN3sce7Toolkit2NP2V27Session14InvitationData13MAX_DATA_SIZEE +_ZN3sce7Toolkit2NP2V27Session14InvitationData5resetEv +_ZN3sce7Toolkit2NP2V27Session14InvitationData8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V27Session14InvitationDataC1ERKS4_ +_ZN3sce7Toolkit2NP2V27Session14InvitationDataC1Ev +_ZN3sce7Toolkit2NP2V27Session14InvitationDataC2ERKS4_ +_ZN3sce7Toolkit2NP2V27Session14InvitationDataC2Ev +_ZN3sce7Toolkit2NP2V27Session14InvitationDataD1Ev +_ZN3sce7Toolkit2NP2V27Session14InvitationDataD2Ev +_ZN3sce7Toolkit2NP2V27Session14InvitationDataaSERKS4_ +_ZN3sce7Toolkit2NP2V27Session14SessionDetails10STATUS_LENE +_ZN3sce7Toolkit2NP2V27Session14SessionDetailsC1Ev +_ZN3sce7Toolkit2NP2V27Session14SessionDetailsC2Ev +_ZN3sce7Toolkit2NP2V27Session14SessionDetailsD1Ev +_ZN3sce7Toolkit2NP2V27Session14SessionDetailsD2Ev +_ZN3sce7Toolkit2NP2V27Session14sendInvitationERKNS3_7Request14SendInvitationEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V27Session16FixedSessionData21SESSION_DATA_MAX_SIZEE +_ZN3sce7Toolkit2NP2V27Session16FixedSessionDataC1Ev +_ZN3sce7Toolkit2NP2V27Session16FixedSessionDataC2Ev +_ZN3sce7Toolkit2NP2V27Session16FixedSessionDataD1Ev +_ZN3sce7Toolkit2NP2V27Session16FixedSessionDataD2Ev +_ZN3sce7Toolkit2NP2V27Session17SessionInfoUpdate10STATUS_LENE +_ZN3sce7Toolkit2NP2V27Session17SessionInfoUpdate16SESSION_NAME_LENE +_ZN3sce7Toolkit2NP2V27Session17SessionInfoUpdate17MAX_LOCALIZATIONSE +_ZN3sce7Toolkit2NP2V27Session17SessionInfoUpdateC1Ev +_ZN3sce7Toolkit2NP2V27Session17SessionInfoUpdateC2Ev +_ZN3sce7Toolkit2NP2V27Session17SessionInfoUpdateD1Ev +_ZN3sce7Toolkit2NP2V27Session17SessionInfoUpdateD2Ev +_ZN3sce7Toolkit2NP2V27Session17consumeInvitationERKNS3_7Request17ConsumeInvitationEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V27Session17getInvitationDataERKNS3_7Request17GetInvitationDataEPNS2_4Core8ResponseINS3_14InvitationDataEEE +_ZN3sce7Toolkit2NP2V27Session18AvailablePlatformsC1Ev +_ZN3sce7Toolkit2NP2V27Session18AvailablePlatformsC2Ev +_ZN3sce7Toolkit2NP2V27Session18AvailablePlatformsD1Ev +_ZN3sce7Toolkit2NP2V27Session18AvailablePlatformsD2Ev +_ZN3sce7Toolkit2NP2V27Session20LocalizedSessionInfo10STATUS_LENE +_ZN3sce7Toolkit2NP2V27Session20LocalizedSessionInfo16SESSION_NAME_LENE +_ZN3sce7Toolkit2NP2V27Session20LocalizedSessionInfoC1Ev +_ZN3sce7Toolkit2NP2V27Session20LocalizedSessionInfoC2Ev +_ZN3sce7Toolkit2NP2V27Session20LocalizedSessionInfoD1Ev +_ZN3sce7Toolkit2NP2V27Session20LocalizedSessionInfoD2Ev +_ZN3sce7Toolkit2NP2V27Session21ChangeableSessionData32SESSION_CHANGEABLE_DATA_MAX_SIZEE +_ZN3sce7Toolkit2NP2V27Session21ChangeableSessionDataC1Ev +_ZN3sce7Toolkit2NP2V27Session21ChangeableSessionDataC2Ev +_ZN3sce7Toolkit2NP2V27Session21ChangeableSessionDataD1Ev +_ZN3sce7Toolkit2NP2V27Session21ChangeableSessionDataD2Ev +_ZN3sce7Toolkit2NP2V27Session22getReceivedInvitationsERKNS3_7Request22GetReceivedInvitationsEPNS2_4Core8ResponseINS3_11InvitationsEEE +_ZN3sce7Toolkit2NP2V27Session32displayReceivedInvitationsDialogERKNS3_7Request32DisplayReceivedInvitationsDialogEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V27Session4joinERKNS3_7Request4JoinEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V27Session5leaveERKNS3_7Request5LeaveEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V27Session6createERKNS3_7Request6CreateEPNS2_4Core8ResponseINS3_9SessionIdEEE +_ZN3sce7Toolkit2NP2V27Session6searchERKNS3_7Request6SearchEPNS2_4Core8ResponseINS3_8SessionsEEE +_ZN3sce7Toolkit2NP2V27Session6updateERKNS3_7Request6UpdateEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V27Session7Request14SendInvitation18MAX_NUM_RECIPIENTSE +_ZN3sce7Toolkit2NP2V27Session7Request14SendInvitation19MAX_SIZE_ATTACHMENTE +_ZN3sce7Toolkit2NP2V27Session7Request14SendInvitation21MAX_SIZE_USER_MESSAGEE +_ZN3sce7Toolkit2NP2V27Session7Request14SendInvitationC1Ev +_ZN3sce7Toolkit2NP2V27Session7Request14SendInvitationC2Ev +_ZN3sce7Toolkit2NP2V27Session7Request14SendInvitationD1Ev +_ZN3sce7Toolkit2NP2V27Session7Request14SendInvitationD2Ev +_ZN3sce7Toolkit2NP2V27Session7Request17ConsumeInvitationC1Ev +_ZN3sce7Toolkit2NP2V27Session7Request17ConsumeInvitationC2Ev +_ZN3sce7Toolkit2NP2V27Session7Request17ConsumeInvitationD1Ev +_ZN3sce7Toolkit2NP2V27Session7Request17ConsumeInvitationD2Ev +_ZN3sce7Toolkit2NP2V27Session7Request17GetInvitationDataC1Ev +_ZN3sce7Toolkit2NP2V27Session7Request17GetInvitationDataC2Ev +_ZN3sce7Toolkit2NP2V27Session7Request17GetInvitationDataD1Ev +_ZN3sce7Toolkit2NP2V27Session7Request17GetInvitationDataD2Ev +_ZN3sce7Toolkit2NP2V27Session7Request22GetReceivedInvitationsC1Ev +_ZN3sce7Toolkit2NP2V27Session7Request22GetReceivedInvitationsC2Ev +_ZN3sce7Toolkit2NP2V27Session7Request22GetReceivedInvitationsD1Ev +_ZN3sce7Toolkit2NP2V27Session7Request22GetReceivedInvitationsD2Ev +_ZN3sce7Toolkit2NP2V27Session7Request32DisplayReceivedInvitationsDialogC1Ev +_ZN3sce7Toolkit2NP2V27Session7Request32DisplayReceivedInvitationsDialogC2Ev +_ZN3sce7Toolkit2NP2V27Session7Request32DisplayReceivedInvitationsDialogD1Ev +_ZN3sce7Toolkit2NP2V27Session7Request32DisplayReceivedInvitationsDialogD2Ev +_ZN3sce7Toolkit2NP2V27Session7Request4Join15LOWEST_PRIORITYE +_ZN3sce7Toolkit2NP2V27Session7Request4Join15MAX_INDEX_VALUEE +_ZN3sce7Toolkit2NP2V27Session7Request4Join15MIN_INDEX_VALUEE +_ZN3sce7Toolkit2NP2V27Session7Request4Join16DEFAULT_PRIORITYE +_ZN3sce7Toolkit2NP2V27Session7Request4Join16HIGHEST_PRIORITYE +_ZN3sce7Toolkit2NP2V27Session7Request4JoinC1Ev +_ZN3sce7Toolkit2NP2V27Session7Request4JoinC2Ev +_ZN3sce7Toolkit2NP2V27Session7Request4JoinD1Ev +_ZN3sce7Toolkit2NP2V27Session7Request4JoinD2Ev +_ZN3sce7Toolkit2NP2V27Session7Request5LeaveC1Ev +_ZN3sce7Toolkit2NP2V27Session7Request5LeaveC2Ev +_ZN3sce7Toolkit2NP2V27Session7Request5LeaveD1Ev +_ZN3sce7Toolkit2NP2V27Session7Request5LeaveD2Ev +_ZN3sce7Toolkit2NP2V27Session7Request6Create10STATUS_LENE +_ZN3sce7Toolkit2NP2V27Session7Request6Create15LOWEST_PRIORITYE +_ZN3sce7Toolkit2NP2V27Session7Request6Create15MAX_INDEX_VALUEE +_ZN3sce7Toolkit2NP2V27Session7Request6Create15MIN_INDEX_VALUEE +_ZN3sce7Toolkit2NP2V27Session7Request6Create16DEFAULT_PRIORITYE +_ZN3sce7Toolkit2NP2V27Session7Request6Create16HIGHEST_PRIORITYE +_ZN3sce7Toolkit2NP2V27Session7Request6Create16SESSION_NAME_LENE +_ZN3sce7Toolkit2NP2V27Session7Request6Create17MAX_LOCALIZATIONSE +_ZN3sce7Toolkit2NP2V27Session7Request6CreateC1Ev +_ZN3sce7Toolkit2NP2V27Session7Request6CreateC2Ev +_ZN3sce7Toolkit2NP2V27Session7Request6CreateD1Ev +_ZN3sce7Toolkit2NP2V27Session7Request6CreateD2Ev +_ZN3sce7Toolkit2NP2V27Session7Request6Search13MAX_PAGE_SIZEE +_ZN3sce7Toolkit2NP2V27Session7Request6Search15MAX_INDEX_VALUEE +_ZN3sce7Toolkit2NP2V27Session7Request6Search15MIN_INDEX_VALUEE +_ZN3sce7Toolkit2NP2V27Session7Request6Search19DEFAULT_INDEX_VALUEE +_ZN3sce7Toolkit2NP2V27Session7Request6Search9MAX_USERSE +_ZN3sce7Toolkit2NP2V27Session7Request6SearchC1Ev +_ZN3sce7Toolkit2NP2V27Session7Request6SearchC2Ev +_ZN3sce7Toolkit2NP2V27Session7Request6SearchD1Ev +_ZN3sce7Toolkit2NP2V27Session7Request6SearchD2Ev +_ZN3sce7Toolkit2NP2V27Session7Request6Update15LOWEST_PRIORITYE +_ZN3sce7Toolkit2NP2V27Session7Request6Update16HIGHEST_PRIORITYE +_ZN3sce7Toolkit2NP2V27Session7Request6UpdateC1Ev +_ZN3sce7Toolkit2NP2V27Session7Request6UpdateC2Ev +_ZN3sce7Toolkit2NP2V27Session7Request6UpdateD1Ev +_ZN3sce7Toolkit2NP2V27Session7Request6UpdateD2Ev +_ZN3sce7Toolkit2NP2V27Session7Request7GetDataC1Ev +_ZN3sce7Toolkit2NP2V27Session7Request7GetDataC2Ev +_ZN3sce7Toolkit2NP2V27Session7Request7GetDataD1Ev +_ZN3sce7Toolkit2NP2V27Session7Request7GetDataD2Ev +_ZN3sce7Toolkit2NP2V27Session7Request7GetInfoC1Ev +_ZN3sce7Toolkit2NP2V27Session7Request7GetInfoC2Ev +_ZN3sce7Toolkit2NP2V27Session7Request7GetInfoD1Ev +_ZN3sce7Toolkit2NP2V27Session7Request7GetInfoD2Ev +_ZN3sce7Toolkit2NP2V27Session7Session16SESSION_NAME_LENE +_ZN3sce7Toolkit2NP2V27Session7Session5resetEv +_ZN3sce7Toolkit2NP2V27Session7Session8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V27Session7SessionC1ERKS4_ +_ZN3sce7Toolkit2NP2V27Session7SessionC1Ev +_ZN3sce7Toolkit2NP2V27Session7SessionC2ERKS4_ +_ZN3sce7Toolkit2NP2V27Session7SessionC2Ev +_ZN3sce7Toolkit2NP2V27Session7SessionD1Ev +_ZN3sce7Toolkit2NP2V27Session7SessionD2Ev +_ZN3sce7Toolkit2NP2V27Session7SessionaSERKS4_ +_ZN3sce7Toolkit2NP2V27Session7getDataERKNS3_7Request7GetDataEPNS2_4Core8ResponseINS3_11SessionDataEEE +_ZN3sce7Toolkit2NP2V27Session7getInfoERKNS3_7Request7GetInfoEPNS2_4Core8ResponseINS3_7SessionEEE +_ZN3sce7Toolkit2NP2V27Session8Sessions5resetEv +_ZN3sce7Toolkit2NP2V27Session8Sessions8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V27Session8SessionsC1ERKS4_ +_ZN3sce7Toolkit2NP2V27Session8SessionsC1Ev +_ZN3sce7Toolkit2NP2V27Session8SessionsC2ERKS4_ +_ZN3sce7Toolkit2NP2V27Session8SessionsC2Ev +_ZN3sce7Toolkit2NP2V27Session8SessionsD1Ev +_ZN3sce7Toolkit2NP2V27Session8SessionsD2Ev +_ZN3sce7Toolkit2NP2V27Session8SessionsaSERKS4_ +_ZN3sce7Toolkit2NP2V27Session9SessionId5resetEv +_ZN3sce7Toolkit2NP2V27Session9SessionId8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V27Session9SessionIdC1ERKS4_ +_ZN3sce7Toolkit2NP2V27Session9SessionIdC1Ev +_ZN3sce7Toolkit2NP2V27Session9SessionIdC2ERKS4_ +_ZN3sce7Toolkit2NP2V27Session9SessionIdC2Ev +_ZN3sce7Toolkit2NP2V27Session9SessionIdD1Ev +_ZN3sce7Toolkit2NP2V27Session9SessionIdD2Ev +_ZN3sce7Toolkit2NP2V27Session9SessionIdaSERKS4_ +_ZN3sce7Toolkit2NP2V28Commerce10Categories5resetEv +_ZN3sce7Toolkit2NP2V28Commerce10Categories8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V28Commerce10CategoriesC1ERKS4_ +_ZN3sce7Toolkit2NP2V28Commerce10CategoriesC1Ev +_ZN3sce7Toolkit2NP2V28Commerce10CategoriesC2ERKS4_ +_ZN3sce7Toolkit2NP2V28Commerce10CategoriesC2Ev +_ZN3sce7Toolkit2NP2V28Commerce10CategoriesD1Ev +_ZN3sce7Toolkit2NP2V28Commerce10CategoriesD2Ev +_ZN3sce7Toolkit2NP2V28Commerce10CategoriesaSERKS4_ +_ZN3sce7Toolkit2NP2V28Commerce10Containers5resetEv +_ZN3sce7Toolkit2NP2V28Commerce10Containers8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V28Commerce10ContainersC1ERKS4_ +_ZN3sce7Toolkit2NP2V28Commerce10ContainersC1Ev +_ZN3sce7Toolkit2NP2V28Commerce10ContainersC2ERKS4_ +_ZN3sce7Toolkit2NP2V28Commerce10ContainersC2Ev +_ZN3sce7Toolkit2NP2V28Commerce10ContainersD1Ev +_ZN3sce7Toolkit2NP2V28Commerce10ContainersD2Ev +_ZN3sce7Toolkit2NP2V28Commerce10ContainersaSERKS4_ +_ZN3sce7Toolkit2NP2V28Commerce10Descriptor13IMAGE_URL_LENE +_ZN3sce7Toolkit2NP2V28Commerce10Descriptor8NAME_LENE +_ZN3sce7Toolkit2NP2V28Commerce10DescriptorC1Ev +_ZN3sce7Toolkit2NP2V28Commerce10DescriptorC2Ev +_ZN3sce7Toolkit2NP2V28Commerce10DescriptorD1Ev +_ZN3sce7Toolkit2NP2V28Commerce10DescriptorD2Ev +_ZN3sce7Toolkit2NP2V28Commerce11SubCategory13IMAGE_URL_LENE +_ZN3sce7Toolkit2NP2V28Commerce11SubCategory17CATEGORY_NAME_LENE +_ZN3sce7Toolkit2NP2V28Commerce11SubCategoryC1Ev +_ZN3sce7Toolkit2NP2V28Commerce11SubCategoryC2Ev +_ZN3sce7Toolkit2NP2V28Commerce11SubCategoryD1Ev +_ZN3sce7Toolkit2NP2V28Commerce11SubCategoryD2Ev +_ZN3sce7Toolkit2NP2V28Commerce11getProductsERKNS3_7Request11GetProductsEPNS2_4Core8ResponseINS3_8ProductsEEE +_ZN3sce7Toolkit2NP2V28Commerce12ProductLabel21PRODUCT_LABEL_MAX_LENE +_ZN3sce7Toolkit2NP2V28Commerce12ProductLabelC1Ev +_ZN3sce7Toolkit2NP2V28Commerce12ProductLabelC2Ev +_ZN3sce7Toolkit2NP2V28Commerce12ProductLabelD1Ev +_ZN3sce7Toolkit2NP2V28Commerce12ProductLabelD2Ev +_ZN3sce7Toolkit2NP2V28Commerce12SubContainer5resetEv +_ZN3sce7Toolkit2NP2V28Commerce12SubContainer8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V28Commerce12SubContainerC1ERKS4_ +_ZN3sce7Toolkit2NP2V28Commerce12SubContainerC1Ev +_ZN3sce7Toolkit2NP2V28Commerce12SubContainerC2ERKS4_ +_ZN3sce7Toolkit2NP2V28Commerce12SubContainerC2Ev +_ZN3sce7Toolkit2NP2V28Commerce12SubContainerD1Ev +_ZN3sce7Toolkit2NP2V28Commerce12SubContainerD2Ev +_ZN3sce7Toolkit2NP2V28Commerce12SubContaineraSERKS4_ +_ZN3sce7Toolkit2NP2V28Commerce13CategoryLabel22CATEGORY_LABEL_MAX_LENE +_ZN3sce7Toolkit2NP2V28Commerce13CategoryLabelC1Ev +_ZN3sce7Toolkit2NP2V28Commerce13CategoryLabelC2Ev +_ZN3sce7Toolkit2NP2V28Commerce13CategoryLabelD1Ev +_ZN3sce7Toolkit2NP2V28Commerce13CategoryLabelD2Ev +_ZN3sce7Toolkit2NP2V28Commerce13getCategoriesERKNS3_7Request13GetCategoriesEPNS2_4Core8ResponseINS3_10CategoriesEEE +_ZN3sce7Toolkit2NP2V28Commerce13getContainersERKNS3_7Request13GetContainersEPNS2_4Core8ResponseINS3_10ContainersEEE +_ZN3sce7Toolkit2NP2V28Commerce14ProductDetails13IMAGE_URL_LENE +_ZN3sce7Toolkit2NP2V28Commerce14ProductDetails20RATING_SYSTEM_ID_LENE +_ZN3sce7Toolkit2NP2V28Commerce14ProductDetails25SERVICE_PROVIDER_NAME_LENE +_ZN3sce7Toolkit2NP2V28Commerce14ProductDetails28PRODUCT_LONG_DESCRIPTION_LENE +_ZN3sce7Toolkit2NP2V28Commerce14ProductDetails29MAX_RATING_SYSTEM_DESCRIPTORSE +_ZN3sce7Toolkit2NP2V28Commerce14ProductDetails5resetEv +_ZN3sce7Toolkit2NP2V28Commerce14ProductDetails8MAX_SKUSE +_ZN3sce7Toolkit2NP2V28Commerce14ProductDetails8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V28Commerce14ProductDetailsC1ERKS4_ +_ZN3sce7Toolkit2NP2V28Commerce14ProductDetailsC1Ev +_ZN3sce7Toolkit2NP2V28Commerce14ProductDetailsC2ERKS4_ +_ZN3sce7Toolkit2NP2V28Commerce14ProductDetailsC2Ev +_ZN3sce7Toolkit2NP2V28Commerce14ProductDetailsD1Ev +_ZN3sce7Toolkit2NP2V28Commerce14ProductDetailsD2Ev +_ZN3sce7Toolkit2NP2V28Commerce14ProductDetailsaSERKS4_ +_ZN3sce7Toolkit2NP2V28Commerce16RatingDescriptor13IMAGE_URL_LENE +_ZN3sce7Toolkit2NP2V28Commerce16RatingDescriptor8NAME_LENE +_ZN3sce7Toolkit2NP2V28Commerce16RatingDescriptorC1Ev +_ZN3sce7Toolkit2NP2V28Commerce16RatingDescriptorC2Ev +_ZN3sce7Toolkit2NP2V28Commerce16RatingDescriptorD1Ev +_ZN3sce7Toolkit2NP2V28Commerce16RatingDescriptorD2Ev +_ZN3sce7Toolkit2NP2V28Commerce18ServiceEntitlementC1Ev +_ZN3sce7Toolkit2NP2V28Commerce18ServiceEntitlementC2Ev +_ZN3sce7Toolkit2NP2V28Commerce18ServiceEntitlementD1Ev +_ZN3sce7Toolkit2NP2V28Commerce18ServiceEntitlementD2Ev +_ZN3sce7Toolkit2NP2V28Commerce19ServiceEntitlements5resetEv +_ZN3sce7Toolkit2NP2V28Commerce19ServiceEntitlements8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V28Commerce19ServiceEntitlementsC1ERKS4_ +_ZN3sce7Toolkit2NP2V28Commerce19ServiceEntitlementsC1Ev +_ZN3sce7Toolkit2NP2V28Commerce19ServiceEntitlementsC2ERKS4_ +_ZN3sce7Toolkit2NP2V28Commerce19ServiceEntitlementsC2Ev +_ZN3sce7Toolkit2NP2V28Commerce19ServiceEntitlementsD1Ev +_ZN3sce7Toolkit2NP2V28Commerce19ServiceEntitlementsD2Ev +_ZN3sce7Toolkit2NP2V28Commerce19ServiceEntitlementsaSERKS4_ +_ZN3sce7Toolkit2NP2V28Commerce21displayCheckoutDialogERKNS3_7Request21DisplayCheckoutDialogEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V28Commerce21displayJoinPlusDialogERKNS3_7Request21DisplayJoinPlusDialogEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V28Commerce22getServiceEntitlementsERKNS3_7Request22GetServiceEntitlementsEPNS2_4Core8ResponseINS3_19ServiceEntitlementsEEE +_ZN3sce7Toolkit2NP2V28Commerce23ServiceEntitlementLabel33SERVICE_ENTITLEMENT_LABEL_MAX_LENE +_ZN3sce7Toolkit2NP2V28Commerce23ServiceEntitlementLabelC1Ev +_ZN3sce7Toolkit2NP2V28Commerce23ServiceEntitlementLabelC2Ev +_ZN3sce7Toolkit2NP2V28Commerce23ServiceEntitlementLabelD1Ev +_ZN3sce7Toolkit2NP2V28Commerce23ServiceEntitlementLabelD2Ev +_ZN3sce7Toolkit2NP2V28Commerce25consumeServiceEntitlementERKNS3_7Request25ConsumeServiceEntitlementEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V28Commerce25displayDownloadListDialogERKNS3_7Request25DisplayDownloadListDialogEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V28Commerce26displayProductBrowseDialogERKNS3_7Request26DisplayProductBrowseDialogEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V28Commerce26setPsStoreIconDisplayStateERKNS3_7Request26SetPsStoreIconDisplayStateEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V28Commerce27displayCategoryBrowseDialogERKNS3_7Request27DisplayCategoryBrowseDialogEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V28Commerce29displayVoucherCodeInputDialogERKNS3_7Request29DisplayVoucherCodeInputDialogEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V28Commerce7Product13IMAGE_URL_LENE +_ZN3sce7Toolkit2NP2V28Commerce7Product16PRODUCT_NAME_LENE +_ZN3sce7Toolkit2NP2V28Commerce7ProductC1Ev +_ZN3sce7Toolkit2NP2V28Commerce7ProductC2Ev +_ZN3sce7Toolkit2NP2V28Commerce7ProductD1Ev +_ZN3sce7Toolkit2NP2V28Commerce7ProductD2Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request11GetProducts12MAX_PRODUCTSE +_ZN3sce7Toolkit2NP2V28Commerce7Request11GetProducts14MAX_CATEGORIESE +_ZN3sce7Toolkit2NP2V28Commerce7Request11GetProducts17DEFAULT_PAGE_SIZEE +_ZN3sce7Toolkit2NP2V28Commerce7Request11GetProductsC1Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request11GetProductsC2Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request11GetProductsD1Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request11GetProductsD2Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request13GetCategories14MAX_CATEGORIESE +_ZN3sce7Toolkit2NP2V28Commerce7Request13GetCategoriesC1Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request13GetCategoriesC2Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request13GetCategoriesD1Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request13GetCategoriesD2Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request13GetContainers17DEFAULT_PAGE_SIZEE +_ZN3sce7Toolkit2NP2V28Commerce7Request13GetContainersC1Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request13GetContainersC2Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request13GetContainersD1Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request13GetContainersD2Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request14CheckoutTargetC1Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request14CheckoutTargetC2Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request14CheckoutTargetD1Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request14CheckoutTargetD2Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request18DownloadListTargetC1Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request18DownloadListTargetC2Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request18DownloadListTargetD1Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request18DownloadListTargetD2Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request21DisplayCheckoutDialog11MAX_TARGETSE +_ZN3sce7Toolkit2NP2V28Commerce7Request21DisplayCheckoutDialogC1Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request21DisplayCheckoutDialogC2Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request21DisplayCheckoutDialogD1Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request21DisplayCheckoutDialogD2Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request21DisplayJoinPlusDialogC1Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request21DisplayJoinPlusDialogC2Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request21DisplayJoinPlusDialogD1Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request21DisplayJoinPlusDialogD2Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request22GetServiceEntitlements17DEFAULT_PAGE_SIZEE +_ZN3sce7Toolkit2NP2V28Commerce7Request22GetServiceEntitlementsC1Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request22GetServiceEntitlementsC2Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request22GetServiceEntitlementsD1Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request22GetServiceEntitlementsD2Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request25ConsumeServiceEntitlementC1Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request25ConsumeServiceEntitlementC2Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request25ConsumeServiceEntitlementD1Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request25ConsumeServiceEntitlementD2Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request25DisplayDownloadListDialog11MAX_TARGETSE +_ZN3sce7Toolkit2NP2V28Commerce7Request25DisplayDownloadListDialogC1Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request25DisplayDownloadListDialogC2Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request25DisplayDownloadListDialogD1Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request25DisplayDownloadListDialogD2Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request26DisplayProductBrowseDialogC1Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request26DisplayProductBrowseDialogC2Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request26DisplayProductBrowseDialogD1Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request26DisplayProductBrowseDialogD2Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request26SetPsStoreIconDisplayStateC1Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request26SetPsStoreIconDisplayStateC2Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request26SetPsStoreIconDisplayStateD1Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request26SetPsStoreIconDisplayStateD2Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request27DisplayCategoryBrowseDialogC1Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request27DisplayCategoryBrowseDialogC2Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request27DisplayCategoryBrowseDialogD1Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request27DisplayCategoryBrowseDialogD2Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request29DisplayVoucherCodeInputDialog16VOUCHER_CODE_LENE +_ZN3sce7Toolkit2NP2V28Commerce7Request29DisplayVoucherCodeInputDialogC1Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request29DisplayVoucherCodeInputDialogC2Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request29DisplayVoucherCodeInputDialogD1Ev +_ZN3sce7Toolkit2NP2V28Commerce7Request29DisplayVoucherCodeInputDialogD2Ev +_ZN3sce7Toolkit2NP2V28Commerce7SkuInfo12SKU_NAME_LENE +_ZN3sce7Toolkit2NP2V28Commerce7SkuInfo13SKU_PRICE_LENE +_ZN3sce7Toolkit2NP2V28Commerce7SkuInfo14PRODUCT_ID_LENE +_ZN3sce7Toolkit2NP2V28Commerce7SkuInfo14SKU_ID_MAX_LENE +_ZN3sce7Toolkit2NP2V28Commerce7SkuInfo19PRICE_NOT_AVAILABLEE +_ZN3sce7Toolkit2NP2V28Commerce7SkuInfoC1Ev +_ZN3sce7Toolkit2NP2V28Commerce7SkuInfoC2Ev +_ZN3sce7Toolkit2NP2V28Commerce7SkuInfoD1Ev +_ZN3sce7Toolkit2NP2V28Commerce7SkuInfoD2Ev +_ZN3sce7Toolkit2NP2V28Commerce8Category13IMAGE_URL_LENE +_ZN3sce7Toolkit2NP2V28Commerce8Category17CATEGORY_NAME_LENE +_ZN3sce7Toolkit2NP2V28Commerce8Category24CATEGORY_DESCRIPTION_LENE +_ZN3sce7Toolkit2NP2V28Commerce8Category5resetEv +_ZN3sce7Toolkit2NP2V28Commerce8Category8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V28Commerce8CategoryC1ERKS4_ +_ZN3sce7Toolkit2NP2V28Commerce8CategoryC1Ev +_ZN3sce7Toolkit2NP2V28Commerce8CategoryC2ERKS4_ +_ZN3sce7Toolkit2NP2V28Commerce8CategoryC2Ev +_ZN3sce7Toolkit2NP2V28Commerce8CategoryD1Ev +_ZN3sce7Toolkit2NP2V28Commerce8CategoryD2Ev +_ZN3sce7Toolkit2NP2V28Commerce8CategoryaSERKS4_ +_ZN3sce7Toolkit2NP2V28Commerce8Products5resetEv +_ZN3sce7Toolkit2NP2V28Commerce8Products8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V28Commerce8ProductsC1ERKS4_ +_ZN3sce7Toolkit2NP2V28Commerce8ProductsC1Ev +_ZN3sce7Toolkit2NP2V28Commerce8ProductsC2ERKS4_ +_ZN3sce7Toolkit2NP2V28Commerce8ProductsC2Ev +_ZN3sce7Toolkit2NP2V28Commerce8ProductsD1Ev +_ZN3sce7Toolkit2NP2V28Commerce8ProductsD2Ev +_ZN3sce7Toolkit2NP2V28Commerce8ProductsaSERKS4_ +_ZN3sce7Toolkit2NP2V28Commerce8SkuLabel17SKU_LABEL_MAX_LENE +_ZN3sce7Toolkit2NP2V28Commerce8SkuLabelC1Ev +_ZN3sce7Toolkit2NP2V28Commerce8SkuLabelC2Ev +_ZN3sce7Toolkit2NP2V28Commerce8SkuLabelD1Ev +_ZN3sce7Toolkit2NP2V28Commerce8SkuLabelD2Ev +_ZN3sce7Toolkit2NP2V28Commerce9Container5resetEv +_ZN3sce7Toolkit2NP2V28Commerce9Container8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V28Commerce9ContainerC1ERKS4_ +_ZN3sce7Toolkit2NP2V28Commerce9ContainerC1Ev +_ZN3sce7Toolkit2NP2V28Commerce9ContainerC2ERKS4_ +_ZN3sce7Toolkit2NP2V28Commerce9ContainerC2Ev +_ZN3sce7Toolkit2NP2V28Commerce9ContainerD1Ev +_ZN3sce7Toolkit2NP2V28Commerce9ContainerD2Ev +_ZN3sce7Toolkit2NP2V28Commerce9ContaineraSERKS4_ +_ZN3sce7Toolkit2NP2V28Matching10createRoomERKNS3_7Request10CreateRoomEPNS2_4Core8ResponseINS3_4RoomEEE +_ZN3sce7Toolkit2NP2V28Matching11refreshRoomEPKNS3_12Notification11RefreshRoomEPNS3_4RoomE +_ZN3sce7Toolkit2NP2V28Matching11searchRoomsERKNS3_7Request11SearchRoomsEPNS2_4Core8ResponseINS3_5RoomsEEE +_ZN3sce7Toolkit2NP2V28Matching11setRoomInfoERKNS3_7Request11SetRoomInfoEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V28Matching12Notification11RefreshRoom15INVALID_USER_IDE +_ZN3sce7Toolkit2NP2V28Matching12Notification11RefreshRoom19OWNER_EXCHANGE_SIZEE +_ZN3sce7Toolkit2NP2V28Matching12Notification11RefreshRoom5resetEv +_ZN3sce7Toolkit2NP2V28Matching12Notification11RefreshRoom8deepCopyERKS5_ +_ZN3sce7Toolkit2NP2V28Matching12Notification11RefreshRoomC1ERKS5_ +_ZN3sce7Toolkit2NP2V28Matching12Notification11RefreshRoomC1Ev +_ZN3sce7Toolkit2NP2V28Matching12Notification11RefreshRoomC2ERKS5_ +_ZN3sce7Toolkit2NP2V28Matching12Notification11RefreshRoomC2Ev +_ZN3sce7Toolkit2NP2V28Matching12Notification11RefreshRoomD1Ev +_ZN3sce7Toolkit2NP2V28Matching12Notification11RefreshRoomD2Ev +_ZN3sce7Toolkit2NP2V28Matching12Notification11RefreshRoomaSERKS5_ +_ZN3sce7Toolkit2NP2V28Matching12Notification14NewRoomMessage16MESSAGE_MAX_SIZEE +_ZN3sce7Toolkit2NP2V28Matching12Notification14NewRoomMessage5resetEv +_ZN3sce7Toolkit2NP2V28Matching12Notification14NewRoomMessage8deepCopyERKS5_ +_ZN3sce7Toolkit2NP2V28Matching12Notification14NewRoomMessageC1ERKS5_ +_ZN3sce7Toolkit2NP2V28Matching12Notification14NewRoomMessageC1Ev +_ZN3sce7Toolkit2NP2V28Matching12Notification14NewRoomMessageC2ERKS5_ +_ZN3sce7Toolkit2NP2V28Matching12Notification14NewRoomMessageC2Ev +_ZN3sce7Toolkit2NP2V28Matching12Notification14NewRoomMessageD1Ev +_ZN3sce7Toolkit2NP2V28Matching12Notification14NewRoomMessageD2Ev +_ZN3sce7Toolkit2NP2V28Matching12Notification14NewRoomMessageaSERKS5_ +_ZN3sce7Toolkit2NP2V28Matching12RoomPingTime5resetEv +_ZN3sce7Toolkit2NP2V28Matching12RoomPingTime8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V28Matching12RoomPingTimeC1ERKS4_ +_ZN3sce7Toolkit2NP2V28Matching12RoomPingTimeC1Ev +_ZN3sce7Toolkit2NP2V28Matching12RoomPingTimeC2ERKS4_ +_ZN3sce7Toolkit2NP2V28Matching12RoomPingTimeC2Ev +_ZN3sce7Toolkit2NP2V28Matching12RoomPingTimeD1Ev +_ZN3sce7Toolkit2NP2V28Matching12RoomPingTimeD2Ev +_ZN3sce7Toolkit2NP2V28Matching12RoomPingTimeaSERKS4_ +_ZN3sce7Toolkit2NP2V28Matching13getAttributesERKNS3_7Request13GetAttributesEPNS2_4Core8ResponseINS3_12Notification11RefreshRoomEEE +_ZN3sce7Toolkit2NP2V28Matching14sendInvitationERKNS3_7Request14SendInvitationEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V28Matching15getRoomPingTimeERKNS3_7Request15GetRoomPingTimeEPNS2_4Core8ResponseINS3_12RoomPingTimeEEE +_ZN3sce7Toolkit2NP2V28Matching15sendRoomMessageERKNS3_7Request15SendRoomMessageEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V28Matching17AttributeMetadata13MAX_SIZE_NAMEE +_ZN3sce7Toolkit2NP2V28Matching17AttributeMetadataC1Ev +_ZN3sce7Toolkit2NP2V28Matching17AttributeMetadataC2Ev +_ZN3sce7Toolkit2NP2V28Matching17AttributeMetadataD1Ev +_ZN3sce7Toolkit2NP2V28Matching17AttributeMetadataD2Ev +_ZN3sce7Toolkit2NP2V28Matching17kickOutRoomMemberERKNS3_7Request17KickOutRoomMemberEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V28Matching20setInitConfigurationERKNS3_7Request20SetInitConfigurationEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V28Matching23setMembersAsRecentlyMetERKNS3_7Request23SetMembersAsRecentlyMetEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V28Matching26MemberSignalingInformationC1Ev +_ZN3sce7Toolkit2NP2V28Matching26MemberSignalingInformationC2Ev +_ZN3sce7Toolkit2NP2V28Matching26MemberSignalingInformationD1Ev +_ZN3sce7Toolkit2NP2V28Matching26MemberSignalingInformationD2Ev +_ZN3sce7Toolkit2NP2V28Matching4Data5resetEv +_ZN3sce7Toolkit2NP2V28Matching4Data8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V28Matching4DataC1ERKS4_ +_ZN3sce7Toolkit2NP2V28Matching4DataC1Ev +_ZN3sce7Toolkit2NP2V28Matching4DataC2ERKS4_ +_ZN3sce7Toolkit2NP2V28Matching4DataC2Ev +_ZN3sce7Toolkit2NP2V28Matching4DataD1Ev +_ZN3sce7Toolkit2NP2V28Matching4DataD2Ev +_ZN3sce7Toolkit2NP2V28Matching4DataaSERKS4_ +_ZN3sce7Toolkit2NP2V28Matching4Room15MAX_NUM_MEMBERSE +_ZN3sce7Toolkit2NP2V28Matching4Room16getRoomAttributeEPKc +_ZN3sce7Toolkit2NP2V28Matching4Room18MAX_SIZE_ROOM_NAMEE +_ZN3sce7Toolkit2NP2V28Matching4Room5resetEv +_ZN3sce7Toolkit2NP2V28Matching4Room8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V28Matching4RoomC1ERKS4_ +_ZN3sce7Toolkit2NP2V28Matching4RoomC1Ev +_ZN3sce7Toolkit2NP2V28Matching4RoomC2ERKS4_ +_ZN3sce7Toolkit2NP2V28Matching4RoomC2Ev +_ZN3sce7Toolkit2NP2V28Matching4RoomD1Ev +_ZN3sce7Toolkit2NP2V28Matching4RoomD2Ev +_ZN3sce7Toolkit2NP2V28Matching4RoomaSERKS4_ +_ZN3sce7Toolkit2NP2V28Matching5Rooms5resetEv +_ZN3sce7Toolkit2NP2V28Matching5Rooms8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V28Matching5RoomsC1ERKS4_ +_ZN3sce7Toolkit2NP2V28Matching5RoomsC1Ev +_ZN3sce7Toolkit2NP2V28Matching5RoomsC2ERKS4_ +_ZN3sce7Toolkit2NP2V28Matching5RoomsC2Ev +_ZN3sce7Toolkit2NP2V28Matching5RoomsD1Ev +_ZN3sce7Toolkit2NP2V28Matching5RoomsD2Ev +_ZN3sce7Toolkit2NP2V28Matching5RoomsaSERKS4_ +_ZN3sce7Toolkit2NP2V28Matching5WorldC1Ev +_ZN3sce7Toolkit2NP2V28Matching5WorldC2Ev +_ZN3sce7Toolkit2NP2V28Matching5WorldD1Ev +_ZN3sce7Toolkit2NP2V28Matching5WorldD2Ev +_ZN3sce7Toolkit2NP2V28Matching6Member18getMemberAttributeEPKc +_ZN3sce7Toolkit2NP2V28Matching6Member5resetEv +_ZN3sce7Toolkit2NP2V28Matching6Member8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V28Matching6MemberC1ERKS4_ +_ZN3sce7Toolkit2NP2V28Matching6MemberC1Ev +_ZN3sce7Toolkit2NP2V28Matching6MemberC2ERKS4_ +_ZN3sce7Toolkit2NP2V28Matching6MemberC2Ev +_ZN3sce7Toolkit2NP2V28Matching6MemberD1Ev +_ZN3sce7Toolkit2NP2V28Matching6MemberD2Ev +_ZN3sce7Toolkit2NP2V28Matching6MemberaSERKS4_ +_ZN3sce7Toolkit2NP2V28Matching6Worlds5resetEv +_ZN3sce7Toolkit2NP2V28Matching6Worlds8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V28Matching6WorldsC1ERKS4_ +_ZN3sce7Toolkit2NP2V28Matching6WorldsC1Ev +_ZN3sce7Toolkit2NP2V28Matching6WorldsC2ERKS4_ +_ZN3sce7Toolkit2NP2V28Matching6WorldsC2Ev +_ZN3sce7Toolkit2NP2V28Matching6WorldsD1Ev +_ZN3sce7Toolkit2NP2V28Matching6WorldsD2Ev +_ZN3sce7Toolkit2NP2V28Matching6WorldsaSERKS4_ +_ZN3sce7Toolkit2NP2V28Matching7Request10CreateRoom18MAX_SIZE_ROOM_NAMEE +_ZN3sce7Toolkit2NP2V28Matching7Request10CreateRoom19MAX_SIZE_FIXED_DATAE +_ZN3sce7Toolkit2NP2V28Matching7Request10CreateRoom20MAX_SIZE_ROOM_STATUSE +_ZN3sce7Toolkit2NP2V28Matching7Request10CreateRoom22MAX_SIZE_LOCALIZATIONSE +_ZN3sce7Toolkit2NP2V28Matching7Request10CreateRoom23LOWEST_DISPLAY_PRIORITYE +_ZN3sce7Toolkit2NP2V28Matching7Request10CreateRoom23MAX_SESSION_INDEX_VALUEE +_ZN3sce7Toolkit2NP2V28Matching7Request10CreateRoom23MIN_SESSION_INDEX_VALUEE +_ZN3sce7Toolkit2NP2V28Matching7Request10CreateRoom24DEFAULT_DISPLAY_PRIORITYE +_ZN3sce7Toolkit2NP2V28Matching7Request10CreateRoom24HIGHEST_DISPLAY_PRIORITYE +_ZN3sce7Toolkit2NP2V28Matching7Request10CreateRoom24MAX_SIZE_CHANGEABLE_DATAE +_ZN3sce7Toolkit2NP2V28Matching7Request10CreateRoomC1Ev +_ZN3sce7Toolkit2NP2V28Matching7Request10CreateRoomC2Ev +_ZN3sce7Toolkit2NP2V28Matching7Request10CreateRoomD1Ev +_ZN3sce7Toolkit2NP2V28Matching7Request10CreateRoomD2Ev +_ZN3sce7Toolkit2NP2V28Matching7Request11SearchRooms10MIN_OFFSETE +_ZN3sce7Toolkit2NP2V28Matching7Request11SearchRooms13MAX_PAGE_SIZEE +_ZN3sce7Toolkit2NP2V28Matching7Request11SearchRooms32MAX_NUM_USERS_TO_SEARCH_IN_ROOMSE +_ZN3sce7Toolkit2NP2V28Matching7Request11SearchRoomsC1Ev +_ZN3sce7Toolkit2NP2V28Matching7Request11SearchRoomsC2Ev +_ZN3sce7Toolkit2NP2V28Matching7Request11SearchRoomsD1Ev +_ZN3sce7Toolkit2NP2V28Matching7Request11SearchRoomsD2Ev +_ZN3sce7Toolkit2NP2V28Matching7Request11SetRoomInfo20MAX_SIZE_ROOM_STATUSE +_ZN3sce7Toolkit2NP2V28Matching7Request11SetRoomInfo22MAX_SIZE_LOCALIZATIONSE +_ZN3sce7Toolkit2NP2V28Matching7Request11SetRoomInfo23LOWEST_DISPLAY_PRIORITYE +_ZN3sce7Toolkit2NP2V28Matching7Request11SetRoomInfo24HIGHEST_DISPLAY_PRIORITYE +_ZN3sce7Toolkit2NP2V28Matching7Request11SetRoomInfo24MAX_SIZE_CHANGEABLE_DATAE +_ZN3sce7Toolkit2NP2V28Matching7Request11SetRoomInfoC1Ev +_ZN3sce7Toolkit2NP2V28Matching7Request11SetRoomInfoC2Ev +_ZN3sce7Toolkit2NP2V28Matching7Request11SetRoomInfoD1Ev +_ZN3sce7Toolkit2NP2V28Matching7Request11SetRoomInfoD2Ev +_ZN3sce7Toolkit2NP2V28Matching7Request12SearchClauseC1Ev +_ZN3sce7Toolkit2NP2V28Matching7Request12SearchClauseC2Ev +_ZN3sce7Toolkit2NP2V28Matching7Request12SearchClauseD1Ev +_ZN3sce7Toolkit2NP2V28Matching7Request12SearchClauseD2Ev +_ZN3sce7Toolkit2NP2V28Matching7Request13GetAttributesC1Ev +_ZN3sce7Toolkit2NP2V28Matching7Request13GetAttributesC2Ev +_ZN3sce7Toolkit2NP2V28Matching7Request13GetAttributesD1Ev +_ZN3sce7Toolkit2NP2V28Matching7Request13GetAttributesD2Ev +_ZN3sce7Toolkit2NP2V28Matching7Request14SendInvitation18MAX_NUM_RECIPIENTSE +_ZN3sce7Toolkit2NP2V28Matching7Request14SendInvitation19MAX_SIZE_ATTACHMENTE +_ZN3sce7Toolkit2NP2V28Matching7Request14SendInvitation21MAX_SIZE_USER_MESSAGEE +_ZN3sce7Toolkit2NP2V28Matching7Request14SendInvitationC1Ev +_ZN3sce7Toolkit2NP2V28Matching7Request14SendInvitationC2Ev +_ZN3sce7Toolkit2NP2V28Matching7Request14SendInvitationD1Ev +_ZN3sce7Toolkit2NP2V28Matching7Request14SendInvitationD2Ev +_ZN3sce7Toolkit2NP2V28Matching7Request15GetRoomPingTimeC1Ev +_ZN3sce7Toolkit2NP2V28Matching7Request15GetRoomPingTimeC2Ev +_ZN3sce7Toolkit2NP2V28Matching7Request15GetRoomPingTimeD1Ev +_ZN3sce7Toolkit2NP2V28Matching7Request15GetRoomPingTimeD2Ev +_ZN3sce7Toolkit2NP2V28Matching7Request15SendRoomMessage16MESSAGE_MAX_SIZEE +_ZN3sce7Toolkit2NP2V28Matching7Request15SendRoomMessageC1Ev +_ZN3sce7Toolkit2NP2V28Matching7Request15SendRoomMessageC2Ev +_ZN3sce7Toolkit2NP2V28Matching7Request15SendRoomMessageD1Ev +_ZN3sce7Toolkit2NP2V28Matching7Request15SendRoomMessageD2Ev +_ZN3sce7Toolkit2NP2V28Matching7Request17KickOutRoomMemberC1Ev +_ZN3sce7Toolkit2NP2V28Matching7Request17KickOutRoomMemberC2Ev +_ZN3sce7Toolkit2NP2V28Matching7Request17KickOutRoomMemberD1Ev +_ZN3sce7Toolkit2NP2V28Matching7Request17KickOutRoomMemberD2Ev +_ZN3sce7Toolkit2NP2V28Matching7Request20SetInitConfigurationC1Ev +_ZN3sce7Toolkit2NP2V28Matching7Request20SetInitConfigurationC2Ev +_ZN3sce7Toolkit2NP2V28Matching7Request20SetInitConfigurationD1Ev +_ZN3sce7Toolkit2NP2V28Matching7Request20SetInitConfigurationD2Ev +_ZN3sce7Toolkit2NP2V28Matching7Request23SetMembersAsRecentlyMet12TEXT_MAX_LENE +_ZN3sce7Toolkit2NP2V28Matching7Request23SetMembersAsRecentlyMet24NUM_RECENTLY_MET_MAX_LENE +_ZN3sce7Toolkit2NP2V28Matching7Request23SetMembersAsRecentlyMetC1Ev +_ZN3sce7Toolkit2NP2V28Matching7Request23SetMembersAsRecentlyMetC2Ev +_ZN3sce7Toolkit2NP2V28Matching7Request23SetMembersAsRecentlyMetD1Ev +_ZN3sce7Toolkit2NP2V28Matching7Request23SetMembersAsRecentlyMetD2Ev +_ZN3sce7Toolkit2NP2V28Matching7Request7GetDataC1Ev +_ZN3sce7Toolkit2NP2V28Matching7Request7GetDataC2Ev +_ZN3sce7Toolkit2NP2V28Matching7Request7GetDataD1Ev +_ZN3sce7Toolkit2NP2V28Matching7Request7GetDataD2Ev +_ZN3sce7Toolkit2NP2V28Matching7Request8JoinRoom23LOWEST_DISPLAY_PRIORITYE +_ZN3sce7Toolkit2NP2V28Matching7Request8JoinRoom23MAX_SESSION_INDEX_VALUEE +_ZN3sce7Toolkit2NP2V28Matching7Request8JoinRoom23MIN_SESSION_INDEX_VALUEE +_ZN3sce7Toolkit2NP2V28Matching7Request8JoinRoom24DEFAULT_DISPLAY_PRIORITYE +_ZN3sce7Toolkit2NP2V28Matching7Request8JoinRoom24HIGHEST_DISPLAY_PRIORITYE +_ZN3sce7Toolkit2NP2V28Matching7Request8JoinRoomC1Ev +_ZN3sce7Toolkit2NP2V28Matching7Request8JoinRoomC2Ev +_ZN3sce7Toolkit2NP2V28Matching7Request8JoinRoomD1Ev +_ZN3sce7Toolkit2NP2V28Matching7Request8JoinRoomD2Ev +_ZN3sce7Toolkit2NP2V28Matching7Request9GetWorldsC1Ev +_ZN3sce7Toolkit2NP2V28Matching7Request9GetWorldsC2Ev +_ZN3sce7Toolkit2NP2V28Matching7Request9GetWorldsD1Ev +_ZN3sce7Toolkit2NP2V28Matching7Request9GetWorldsD2Ev +_ZN3sce7Toolkit2NP2V28Matching7Request9LeaveRoomC1Ev +_ZN3sce7Toolkit2NP2V28Matching7Request9LeaveRoomC2Ev +_ZN3sce7Toolkit2NP2V28Matching7Request9LeaveRoomD1Ev +_ZN3sce7Toolkit2NP2V28Matching7Request9LeaveRoomD2Ev +_ZN3sce7Toolkit2NP2V28Matching7getDataERKNS3_7Request7GetDataEPNS2_4Core8ResponseINS3_4DataEEE +_ZN3sce7Toolkit2NP2V28Matching8joinRoomERKNS3_7Request8JoinRoomEPNS2_4Core8ResponseINS3_4RoomEEE +_ZN3sce7Toolkit2NP2V28Matching9Attribute18MAX_SIZE_BIN_VALUEE +_ZN3sce7Toolkit2NP2V28Matching9AttributeC1Ev +_ZN3sce7Toolkit2NP2V28Matching9AttributeC2Ev +_ZN3sce7Toolkit2NP2V28Matching9AttributeD1Ev +_ZN3sce7Toolkit2NP2V28Matching9AttributeD2Ev +_ZN3sce7Toolkit2NP2V28Matching9getWorldsERKNS3_7Request9GetWorldsEPNS2_4Core8ResponseINS3_6WorldsEEE +_ZN3sce7Toolkit2NP2V28Matching9leaveRoomERKNS3_7Request9LeaveRoomEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V28Presence11getPresenceERKNS3_7Request11GetPresenceEPNS2_4Core8ResponseINS3_8PresenceEEE +_ZN3sce7Toolkit2NP2V28Presence11setPresenceERKNS3_7Request11SetPresenceEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V28Presence12Notification14PresenceUpdate5resetEv +_ZN3sce7Toolkit2NP2V28Presence12Notification14PresenceUpdate8deepCopyERKS5_ +_ZN3sce7Toolkit2NP2V28Presence12Notification14PresenceUpdateC1ERKS5_ +_ZN3sce7Toolkit2NP2V28Presence12Notification14PresenceUpdateC1Ev +_ZN3sce7Toolkit2NP2V28Presence12Notification14PresenceUpdateC2ERKS5_ +_ZN3sce7Toolkit2NP2V28Presence12Notification14PresenceUpdateC2Ev +_ZN3sce7Toolkit2NP2V28Presence12Notification14PresenceUpdateD1Ev +_ZN3sce7Toolkit2NP2V28Presence12Notification14PresenceUpdateD2Ev +_ZN3sce7Toolkit2NP2V28Presence12Notification14PresenceUpdateaSERKS5_ +_ZN3sce7Toolkit2NP2V28Presence14deletePresenceERKNS3_7Request14DeletePresenceEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V28Presence16PlatformPresence18MAX_SIZE_GAME_DATAE +_ZN3sce7Toolkit2NP2V28Presence16PlatformPresence19MAX_SIZE_TITLE_NAMEE +_ZN3sce7Toolkit2NP2V28Presence16PlatformPresence20MAX_SIZE_GAME_STATUSE +_ZN3sce7Toolkit2NP2V28Presence16PlatformPresenceC1Ev +_ZN3sce7Toolkit2NP2V28Presence16PlatformPresenceC2Ev +_ZN3sce7Toolkit2NP2V28Presence16PlatformPresenceD1Ev +_ZN3sce7Toolkit2NP2V28Presence16PlatformPresenceD2Ev +_ZN3sce7Toolkit2NP2V28Presence7Request11GetPresenceC1Ev +_ZN3sce7Toolkit2NP2V28Presence7Request11GetPresenceC2Ev +_ZN3sce7Toolkit2NP2V28Presence7Request11GetPresenceD1Ev +_ZN3sce7Toolkit2NP2V28Presence7Request11GetPresenceD2Ev +_ZN3sce7Toolkit2NP2V28Presence7Request11SetPresence18MAX_SIZE_GAME_DATAE +_ZN3sce7Toolkit2NP2V28Presence7Request11SetPresence28MAX_SIZE_DEFAULT_GAME_STATUSE +_ZN3sce7Toolkit2NP2V28Presence7Request11SetPresenceC1Ev +_ZN3sce7Toolkit2NP2V28Presence7Request11SetPresenceC2Ev +_ZN3sce7Toolkit2NP2V28Presence7Request11SetPresenceD1Ev +_ZN3sce7Toolkit2NP2V28Presence7Request11SetPresenceD2Ev +_ZN3sce7Toolkit2NP2V28Presence7Request14DeletePresenceC1Ev +_ZN3sce7Toolkit2NP2V28Presence7Request14DeletePresenceC2Ev +_ZN3sce7Toolkit2NP2V28Presence7Request14DeletePresenceD1Ev +_ZN3sce7Toolkit2NP2V28Presence7Request14DeletePresenceD2Ev +_ZN3sce7Toolkit2NP2V28Presence7Request19LocalizedGameStatus30MAX_SIZE_LOCALIZED_GAME_STATUSE +_ZN3sce7Toolkit2NP2V28Presence7Request19LocalizedGameStatusC1Ev +_ZN3sce7Toolkit2NP2V28Presence7Request19LocalizedGameStatusC2Ev +_ZN3sce7Toolkit2NP2V28Presence7Request19LocalizedGameStatusD1Ev +_ZN3sce7Toolkit2NP2V28Presence7Request19LocalizedGameStatusD2Ev +_ZN3sce7Toolkit2NP2V28Presence8Presence25MAX_NUM_PLATFORM_PRESENCEE +_ZN3sce7Toolkit2NP2V28Presence8Presence5resetEv +_ZN3sce7Toolkit2NP2V28Presence8Presence8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V28Presence8PresenceC1ERKS4_ +_ZN3sce7Toolkit2NP2V28Presence8PresenceC1Ev +_ZN3sce7Toolkit2NP2V28Presence8PresenceC2ERKS4_ +_ZN3sce7Toolkit2NP2V28Presence8PresenceC2Ev +_ZN3sce7Toolkit2NP2V28Presence8PresenceD1Ev +_ZN3sce7Toolkit2NP2V28Presence8PresenceD2Ev +_ZN3sce7Toolkit2NP2V28Presence8PresenceaSERKS4_ +_ZN3sce7Toolkit2NP2V29Challenge10Challenges5resetEv +_ZN3sce7Toolkit2NP2V29Challenge10Challenges8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V29Challenge10ChallengesC1ERKS4_ +_ZN3sce7Toolkit2NP2V29Challenge10ChallengesC1Ev +_ZN3sce7Toolkit2NP2V29Challenge10ChallengesC2ERKS4_ +_ZN3sce7Toolkit2NP2V29Challenge10ChallengesC2Ev +_ZN3sce7Toolkit2NP2V29Challenge10ChallengesD1Ev +_ZN3sce7Toolkit2NP2V29Challenge10ChallengesD2Ev +_ZN3sce7Toolkit2NP2V29Challenge10ChallengesaSERKS4_ +_ZN3sce7Toolkit2NP2V29Challenge13ChallengeData13MAX_SIZE_DATAE +_ZN3sce7Toolkit2NP2V29Challenge13ChallengeData5resetEv +_ZN3sce7Toolkit2NP2V29Challenge13ChallengeData8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V29Challenge13ChallengeDataC1ERKS4_ +_ZN3sce7Toolkit2NP2V29Challenge13ChallengeDataC1Ev +_ZN3sce7Toolkit2NP2V29Challenge13ChallengeDataC2ERKS4_ +_ZN3sce7Toolkit2NP2V29Challenge13ChallengeDataC2Ev +_ZN3sce7Toolkit2NP2V29Challenge13ChallengeDataD1Ev +_ZN3sce7Toolkit2NP2V29Challenge13ChallengeDataD2Ev +_ZN3sce7Toolkit2NP2V29Challenge13ChallengeDataaSERKS4_ +_ZN3sce7Toolkit2NP2V29Challenge13sendChallengeERKNS3_7Request13SendChallengeEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V29Challenge16consumeChallengeERKNS3_7Request16ConsumeChallengeEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V29Challenge16getChallengeDataERKNS3_7Request16GetChallengeDataEPNS2_4Core8ResponseINS3_13ChallengeDataEEE +_ZN3sce7Toolkit2NP2V29Challenge18ChallengeThumbnail18MAX_SIZE_THUMBNAILE +_ZN3sce7Toolkit2NP2V29Challenge18ChallengeThumbnail5resetEv +_ZN3sce7Toolkit2NP2V29Challenge18ChallengeThumbnail8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V29Challenge18ChallengeThumbnailC1ERKS4_ +_ZN3sce7Toolkit2NP2V29Challenge18ChallengeThumbnailC1Ev +_ZN3sce7Toolkit2NP2V29Challenge18ChallengeThumbnailC2ERKS4_ +_ZN3sce7Toolkit2NP2V29Challenge18ChallengeThumbnailC2Ev +_ZN3sce7Toolkit2NP2V29Challenge18ChallengeThumbnailD1Ev +_ZN3sce7Toolkit2NP2V29Challenge18ChallengeThumbnailD2Ev +_ZN3sce7Toolkit2NP2V29Challenge18ChallengeThumbnailaSERKS4_ +_ZN3sce7Toolkit2NP2V29Challenge21getChallengeThumbnailERKNS3_7Request21GetChallengeThumbnailEPNS2_4Core8ResponseINS3_18ChallengeThumbnailEEE +_ZN3sce7Toolkit2NP2V29Challenge21getReceivedChallengesERKNS3_7Request21GetReceivedChallengesEPNS2_4Core8ResponseINS3_10ChallengesEEE +_ZN3sce7Toolkit2NP2V29Challenge7Request13SendChallenge13MAX_SIZE_DATAE +_ZN3sce7Toolkit2NP2V29Challenge7Request13SendChallenge18MAX_NUM_RECIPIENTSE +_ZN3sce7Toolkit2NP2V29Challenge7Request13SendChallenge18MAX_SIZE_DATA_NAMEE +_ZN3sce7Toolkit2NP2V29Challenge7Request13SendChallenge21MAX_SIZE_TEXT_MESSAGEE +_ZN3sce7Toolkit2NP2V29Challenge7Request13SendChallenge25MAX_SIZE_DATA_DESCRIPTIONE +_ZN3sce7Toolkit2NP2V29Challenge7Request13SendChallengeC1Ev +_ZN3sce7Toolkit2NP2V29Challenge7Request13SendChallengeC2Ev +_ZN3sce7Toolkit2NP2V29Challenge7Request13SendChallengeD1Ev +_ZN3sce7Toolkit2NP2V29Challenge7Request13SendChallengeD2Ev +_ZN3sce7Toolkit2NP2V29Challenge7Request16ConsumeChallengeC1Ev +_ZN3sce7Toolkit2NP2V29Challenge7Request16ConsumeChallengeC2Ev +_ZN3sce7Toolkit2NP2V29Challenge7Request16ConsumeChallengeD1Ev +_ZN3sce7Toolkit2NP2V29Challenge7Request16ConsumeChallengeD2Ev +_ZN3sce7Toolkit2NP2V29Challenge7Request16GetChallengeDataC1Ev +_ZN3sce7Toolkit2NP2V29Challenge7Request16GetChallengeDataC2Ev +_ZN3sce7Toolkit2NP2V29Challenge7Request16GetChallengeDataD1Ev +_ZN3sce7Toolkit2NP2V29Challenge7Request16GetChallengeDataD2Ev +_ZN3sce7Toolkit2NP2V29Challenge7Request21GetChallengeThumbnailC1Ev +_ZN3sce7Toolkit2NP2V29Challenge7Request21GetChallengeThumbnailC2Ev +_ZN3sce7Toolkit2NP2V29Challenge7Request21GetChallengeThumbnailD1Ev +_ZN3sce7Toolkit2NP2V29Challenge7Request21GetChallengeThumbnailD2Ev +_ZN3sce7Toolkit2NP2V29Challenge7Request21GetReceivedChallenges13MAX_PAGE_SIZEE +_ZN3sce7Toolkit2NP2V29Challenge7Request21GetReceivedChallenges21MAX_NUM_CHALLENGE_IDSE +_ZN3sce7Toolkit2NP2V29Challenge7Request21GetReceivedChallengesC1Ev +_ZN3sce7Toolkit2NP2V29Challenge7Request21GetReceivedChallengesC2Ev +_ZN3sce7Toolkit2NP2V29Challenge7Request21GetReceivedChallengesD1Ev +_ZN3sce7Toolkit2NP2V29Challenge7Request21GetReceivedChallengesD2Ev +_ZN3sce7Toolkit2NP2V29Challenge9Challenge13MAX_SIZE_DATEE +_ZN3sce7Toolkit2NP2V29Challenge9ChallengeC1Ev +_ZN3sce7Toolkit2NP2V29Challenge9ChallengeC2Ev +_ZN3sce7Toolkit2NP2V29Challenge9ChallengeD1Ev +_ZN3sce7Toolkit2NP2V29Challenge9ChallengeD2Ev +_ZN3sce7Toolkit2NP2V29Messaging12Notification16NewInGameMessage5resetEv +_ZN3sce7Toolkit2NP2V29Messaging12Notification16NewInGameMessage8deepCopyERKS5_ +_ZN3sce7Toolkit2NP2V29Messaging12Notification16NewInGameMessageC1ERKS5_ +_ZN3sce7Toolkit2NP2V29Messaging12Notification16NewInGameMessageC1Ev +_ZN3sce7Toolkit2NP2V29Messaging12Notification16NewInGameMessageC2ERKS5_ +_ZN3sce7Toolkit2NP2V29Messaging12Notification16NewInGameMessageC2Ev +_ZN3sce7Toolkit2NP2V29Messaging12Notification16NewInGameMessageD1Ev +_ZN3sce7Toolkit2NP2V29Messaging12Notification16NewInGameMessageD2Ev +_ZN3sce7Toolkit2NP2V29Messaging12Notification16NewInGameMessageaSERKS5_ +_ZN3sce7Toolkit2NP2V29Messaging12Notification18NewGameDataMessage5resetEv +_ZN3sce7Toolkit2NP2V29Messaging12Notification18NewGameDataMessage8deepCopyERKS5_ +_ZN3sce7Toolkit2NP2V29Messaging12Notification18NewGameDataMessageC1ERKS5_ +_ZN3sce7Toolkit2NP2V29Messaging12Notification18NewGameDataMessageC1Ev +_ZN3sce7Toolkit2NP2V29Messaging12Notification18NewGameDataMessageC2ERKS5_ +_ZN3sce7Toolkit2NP2V29Messaging12Notification18NewGameDataMessageC2Ev +_ZN3sce7Toolkit2NP2V29Messaging12Notification18NewGameDataMessageD1Ev +_ZN3sce7Toolkit2NP2V29Messaging12Notification18NewGameDataMessageD2Ev +_ZN3sce7Toolkit2NP2V29Messaging12Notification18NewGameDataMessageaSERKS5_ +_ZN3sce7Toolkit2NP2V29Messaging15GameDataMessage12MAX_URL_SIZEE +_ZN3sce7Toolkit2NP2V29Messaging15GameDataMessage13MAX_SIZE_DATEE +_ZN3sce7Toolkit2NP2V29Messaging15GameDataMessageC1Ev +_ZN3sce7Toolkit2NP2V29Messaging15GameDataMessageC2Ev +_ZN3sce7Toolkit2NP2V29Messaging15GameDataMessageD1Ev +_ZN3sce7Toolkit2NP2V29Messaging15GameDataMessageD2Ev +_ZN3sce7Toolkit2NP2V29Messaging16GameDataMessages5resetEv +_ZN3sce7Toolkit2NP2V29Messaging16GameDataMessages8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V29Messaging16GameDataMessagesC1ERKS4_ +_ZN3sce7Toolkit2NP2V29Messaging16GameDataMessagesC1Ev +_ZN3sce7Toolkit2NP2V29Messaging16GameDataMessagesC2ERKS4_ +_ZN3sce7Toolkit2NP2V29Messaging16GameDataMessagesC2Ev +_ZN3sce7Toolkit2NP2V29Messaging16GameDataMessagesD1Ev +_ZN3sce7Toolkit2NP2V29Messaging16GameDataMessagesD2Ev +_ZN3sce7Toolkit2NP2V29Messaging16GameDataMessagesaSERKS4_ +_ZN3sce7Toolkit2NP2V29Messaging17sendInGameMessageERKNS3_7Request17SendInGameMessageEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V29Messaging19sendGameDataMessageERKNS3_7Request19SendGameDataMessageEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V29Messaging22GameDataMessageDetails18MAX_SIZE_DATA_NAMEE +_ZN3sce7Toolkit2NP2V29Messaging22GameDataMessageDetails21MAX_SIZE_TEXT_MESSAGEE +_ZN3sce7Toolkit2NP2V29Messaging22GameDataMessageDetails25MAX_SIZE_DATA_DESCRIPTIONE +_ZN3sce7Toolkit2NP2V29Messaging22GameDataMessageDetailsC1Ev +_ZN3sce7Toolkit2NP2V29Messaging22GameDataMessageDetailsC2Ev +_ZN3sce7Toolkit2NP2V29Messaging22GameDataMessageDetailsD1Ev +_ZN3sce7Toolkit2NP2V29Messaging22GameDataMessageDetailsD2Ev +_ZN3sce7Toolkit2NP2V29Messaging22consumeGameDataMessageERKNS3_7Request22ConsumeGameDataMessageEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V29Messaging24GameDataMessageThumbnail18MAX_SIZE_THUMBNAILE +_ZN3sce7Toolkit2NP2V29Messaging24GameDataMessageThumbnail5resetEv +_ZN3sce7Toolkit2NP2V29Messaging24GameDataMessageThumbnail8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V29Messaging24GameDataMessageThumbnailC1ERKS4_ +_ZN3sce7Toolkit2NP2V29Messaging24GameDataMessageThumbnailC1Ev +_ZN3sce7Toolkit2NP2V29Messaging24GameDataMessageThumbnailC2ERKS4_ +_ZN3sce7Toolkit2NP2V29Messaging24GameDataMessageThumbnailC2Ev +_ZN3sce7Toolkit2NP2V29Messaging24GameDataMessageThumbnailD1Ev +_ZN3sce7Toolkit2NP2V29Messaging24GameDataMessageThumbnailD2Ev +_ZN3sce7Toolkit2NP2V29Messaging24GameDataMessageThumbnailaSERKS4_ +_ZN3sce7Toolkit2NP2V29Messaging25GameDataMessageAttachment19MAX_SIZE_ATTACHMENTE +_ZN3sce7Toolkit2NP2V29Messaging25GameDataMessageAttachment5resetEv +_ZN3sce7Toolkit2NP2V29Messaging25GameDataMessageAttachment8deepCopyERKS4_ +_ZN3sce7Toolkit2NP2V29Messaging25GameDataMessageAttachmentC1ERKS4_ +_ZN3sce7Toolkit2NP2V29Messaging25GameDataMessageAttachmentC1Ev +_ZN3sce7Toolkit2NP2V29Messaging25GameDataMessageAttachmentC2ERKS4_ +_ZN3sce7Toolkit2NP2V29Messaging25GameDataMessageAttachmentC2Ev +_ZN3sce7Toolkit2NP2V29Messaging25GameDataMessageAttachmentD1Ev +_ZN3sce7Toolkit2NP2V29Messaging25GameDataMessageAttachmentD2Ev +_ZN3sce7Toolkit2NP2V29Messaging25GameDataMessageAttachmentaSERKS4_ +_ZN3sce7Toolkit2NP2V29Messaging27getGameDataMessageThumbnailERKNS3_7Request27GetGameDataMessageThumbnailEPNS2_4Core8ResponseINS3_24GameDataMessageThumbnailEEE +_ZN3sce7Toolkit2NP2V29Messaging27getReceivedGameDataMessagesERKNS3_7Request27GetReceivedGameDataMessagesEPNS2_4Core8ResponseINS3_16GameDataMessagesEEE +_ZN3sce7Toolkit2NP2V29Messaging28getGameDataMessageAttachmentERKNS3_7Request28GetGameDataMessageAttachmentEPNS2_4Core8ResponseINS3_25GameDataMessageAttachmentEEE +_ZN3sce7Toolkit2NP2V29Messaging37displayReceivedGameDataMessagesDialogERKNS3_7Request37DisplayReceivedGameDataMessagesDialogEPNS2_4Core8ResponseINS8_5EmptyEEE +_ZN3sce7Toolkit2NP2V29Messaging7Request17LocalizedMetadata18MAX_SIZE_DATA_NAMEE +_ZN3sce7Toolkit2NP2V29Messaging7Request17LocalizedMetadata25MAX_SIZE_DATA_DESCRIPTIONE +_ZN3sce7Toolkit2NP2V29Messaging7Request17LocalizedMetadataC1Ev +_ZN3sce7Toolkit2NP2V29Messaging7Request17LocalizedMetadataC2Ev +_ZN3sce7Toolkit2NP2V29Messaging7Request17LocalizedMetadataD1Ev +_ZN3sce7Toolkit2NP2V29Messaging7Request17LocalizedMetadataD2Ev +_ZN3sce7Toolkit2NP2V29Messaging7Request17SendInGameMessageC1Ev +_ZN3sce7Toolkit2NP2V29Messaging7Request17SendInGameMessageC2Ev +_ZN3sce7Toolkit2NP2V29Messaging7Request17SendInGameMessageD1Ev +_ZN3sce7Toolkit2NP2V29Messaging7Request17SendInGameMessageD2Ev +_ZN3sce7Toolkit2NP2V29Messaging7Request19SendGameDataMessage12MAX_URL_SIZEE +_ZN3sce7Toolkit2NP2V29Messaging7Request19SendGameDataMessage18MAX_NUM_RECIPIENTSE +_ZN3sce7Toolkit2NP2V29Messaging7Request19SendGameDataMessage18MAX_SIZE_DATA_NAMEE +_ZN3sce7Toolkit2NP2V29Messaging7Request19SendGameDataMessage19MAX_SIZE_ATTACHMENTE +_ZN3sce7Toolkit2NP2V29Messaging7Request19SendGameDataMessage21MAX_SIZE_TEXT_MESSAGEE +_ZN3sce7Toolkit2NP2V29Messaging7Request19SendGameDataMessage25MAX_SIZE_DATA_DESCRIPTIONE +_ZN3sce7Toolkit2NP2V29Messaging7Request19SendGameDataMessageC1Ev +_ZN3sce7Toolkit2NP2V29Messaging7Request19SendGameDataMessageC2Ev +_ZN3sce7Toolkit2NP2V29Messaging7Request19SendGameDataMessageD1Ev +_ZN3sce7Toolkit2NP2V29Messaging7Request19SendGameDataMessageD2Ev +_ZN3sce7Toolkit2NP2V29Messaging7Request20GameDataMessageImage14IMAGE_MAX_SIZEE +_ZN3sce7Toolkit2NP2V29Messaging7Request20GameDataMessageImage18IMAGE_PATH_MAX_LENE +_ZN3sce7Toolkit2NP2V29Messaging7Request20GameDataMessageImageC1Ev +_ZN3sce7Toolkit2NP2V29Messaging7Request20GameDataMessageImageC2Ev +_ZN3sce7Toolkit2NP2V29Messaging7Request20GameDataMessageImageD1Ev +_ZN3sce7Toolkit2NP2V29Messaging7Request20GameDataMessageImageD2Ev +_ZN3sce7Toolkit2NP2V29Messaging7Request22ConsumeGameDataMessageC1Ev +_ZN3sce7Toolkit2NP2V29Messaging7Request22ConsumeGameDataMessageC2Ev +_ZN3sce7Toolkit2NP2V29Messaging7Request22ConsumeGameDataMessageD1Ev +_ZN3sce7Toolkit2NP2V29Messaging7Request22ConsumeGameDataMessageD2Ev +_ZN3sce7Toolkit2NP2V29Messaging7Request27GetGameDataMessageThumbnail18MAX_SIZE_THUMBNAILE +_ZN3sce7Toolkit2NP2V29Messaging7Request27GetGameDataMessageThumbnailC1Ev +_ZN3sce7Toolkit2NP2V29Messaging7Request27GetGameDataMessageThumbnailC2Ev +_ZN3sce7Toolkit2NP2V29Messaging7Request27GetGameDataMessageThumbnailD1Ev +_ZN3sce7Toolkit2NP2V29Messaging7Request27GetGameDataMessageThumbnailD2Ev +_ZN3sce7Toolkit2NP2V29Messaging7Request27GetReceivedGameDataMessages13MAX_PAGE_SIZEE +_ZN3sce7Toolkit2NP2V29Messaging7Request27GetReceivedGameDataMessages25MAX_NUM_GAME_DATA_MSG_IDSE +_ZN3sce7Toolkit2NP2V29Messaging7Request27GetReceivedGameDataMessagesC1Ev +_ZN3sce7Toolkit2NP2V29Messaging7Request27GetReceivedGameDataMessagesC2Ev +_ZN3sce7Toolkit2NP2V29Messaging7Request27GetReceivedGameDataMessagesD1Ev +_ZN3sce7Toolkit2NP2V29Messaging7Request27GetReceivedGameDataMessagesD2Ev +_ZN3sce7Toolkit2NP2V29Messaging7Request28GetGameDataMessageAttachment19MAX_SIZE_ATTACHMENTE +_ZN3sce7Toolkit2NP2V29Messaging7Request28GetGameDataMessageAttachmentC1Ev +_ZN3sce7Toolkit2NP2V29Messaging7Request28GetGameDataMessageAttachmentC2Ev +_ZN3sce7Toolkit2NP2V29Messaging7Request28GetGameDataMessageAttachmentD1Ev +_ZN3sce7Toolkit2NP2V29Messaging7Request28GetGameDataMessageAttachmentD2Ev +_ZN3sce7Toolkit2NP2V29Messaging7Request37DisplayReceivedGameDataMessagesDialogC1Ev +_ZN3sce7Toolkit2NP2V29Messaging7Request37DisplayReceivedGameDataMessagesDialogC2Ev +_ZN3sce7Toolkit2NP2V29Messaging7Request37DisplayReceivedGameDataMessagesDialogD1Ev +_ZN3sce7Toolkit2NP2V29Messaging7Request37DisplayReceivedGameDataMessagesDialogD2Ev +_ZN3sce7Toolkit2NP30DetailedProductInfoInputParamsC1Ev +_ZN3sce7Toolkit2NP30DetailedProductInfoInputParamsC2Ev +_ZN3sce7Toolkit2NP30GameCustomDataThumbnailRequestC1Ev +_ZN3sce7Toolkit2NP30GameCustomDataThumbnailRequestC2Ev +_ZN3sce7Toolkit2NP34DetailedProductInfoListInputParams9ProductIdC1Ev +_ZN3sce7Toolkit2NP34DetailedProductInfoListInputParams9ProductIdC2Ev +_ZN3sce7Toolkit2NP34DetailedProductInfoListInputParamsC1Ev +_ZN3sce7Toolkit2NP34DetailedProductInfoListInputParamsC2Ev +_ZN3sce7Toolkit2NP3Sns9Interface10setAppIdFbERKm +_ZN3sce7Toolkit2NP3Sns9Interface13postMessageFbERKNS1_15SnsPostFacebookE +_ZN3sce7Toolkit2NP3TSS9Interface13getDataStatusEPNS1_9Utilities6FutureI18SceNpTssDataStatusEERKNS1_23TssGetStatusInputParamsEb +_ZN3sce7Toolkit2NP3TSS9Interface15getDataFromSlotEPNS1_9Utilities6FutureINS1_7TssDataEEERKNS1_14TssInputParamsEb +_ZN3sce7Toolkit2NP3TSS9Interface7getDataEPNS1_9Utilities6FutureINS1_7TssDataEEEb +_ZN3sce7Toolkit2NP3TUS9Interface10deleteDataERNS1_19TusDeleteDataParamsEb +_ZN3sce7Toolkit2NP3TUS9Interface12getVariablesEPNS1_9Utilities6FutureISt6vectorI16SceNpTusVariableNS1_15AppSTLAllocatorIS7_EEEEERNS1_21TusGetVarsInputParamsEb +_ZN3sce7Toolkit2NP3TUS9Interface12setVariablesERNS1_21TusSetVarsInputParamsEb +_ZN3sce7Toolkit2NP3TUS9Interface17addAndGetVariableEPNS1_9Utilities6FutureI16SceNpTusVariableEERNS1_26TusAddAndGetVarInputParamsEb +_ZN3sce7Toolkit2NP3TUS9Interface7getDataEPNS1_9Utilities6FutureINS1_13TusDataOutputEEERNS1_21TusGetDataInputParamsEb +_ZN3sce7Toolkit2NP3TUS9Interface7setDataERNS1_21TusSetDataInputParamsEb +_ZN3sce7Toolkit2NP4Auth9Interface15getCachedTicketEPNS1_9Utilities6FutureINS1_6TicketEEEb +_ZN3sce7Toolkit2NP4Auth9Interface17getUserAccessCodeEPNS1_9Utilities6FutureINS1_6TicketEEERKNS1_21AccessCodeInputParamsEb +_ZN3sce7Toolkit2NP4Auth9Interface9getTicketEPNS1_9Utilities6FutureINS1_6TicketEEE +_ZN3sce7Toolkit2NP5EventC1EPKNS1_8UserInfoE +_ZN3sce7Toolkit2NP5EventC1Ev +_ZN3sce7Toolkit2NP5EventC2EPKNS1_8UserInfoE +_ZN3sce7Toolkit2NP5EventC2Ev +_ZN3sce7Toolkit2NP6Events9Interface12getEventListEPKNS1_16EventListRequestEPNS1_9Utilities6FutureINS1_26EventInformationListDetailEEEb +_ZN3sce7Toolkit2NP6Events9Interface15getEventDetailsEPKNS1_23EventInformationRequestEPNS1_9Utilities6FutureINS1_16EventInformationEEEb +_ZN3sce7Toolkit2NP6TicketC1Ev +_ZN3sce7Toolkit2NP6TicketC2Ev +_ZN3sce7Toolkit2NP6Trophy9Interface10trophyInitEv +_ZN3sce7Toolkit2NP6Trophy9Interface10trophyTermEv +_ZN3sce7Toolkit2NP6Trophy9Interface12trophyUnlockEPKNS1_19UnlockTrophyRequestEb +_ZN3sce7Toolkit2NP6Trophy9Interface12trophyUnlockEibi +_ZN3sce7Toolkit2NP6Trophy9Interface17trophyRegisterSetEPKNS1_21RegisterTrophyRequestEb +_ZN3sce7Toolkit2NP6Trophy9Interface17trophyRegisterSetEbbiiij +_ZN3sce7Toolkit2NP6Trophy9Interface18trophyRetrieveGameEPKNS1_25RetrieveTrophyGameRequestEPNS1_9Utilities6FutureINS1_14TrophyGameInfoEEEb +_ZN3sce7Toolkit2NP6Trophy9Interface18trophyRetrieveGameEPNS1_9Utilities6FutureINS1_14TrophyGameInfoEEEbi +_ZN3sce7Toolkit2NP6Trophy9Interface18trophyRetrieveListEPKNS1_25RetrieveTrophyListRequestEPNS1_9Utilities6FutureINS1_10TrophyInfoEEEb +_ZN3sce7Toolkit2NP6Trophy9Interface18trophyRetrieveListEPNS1_9Utilities6FutureINS1_10TrophyInfoEEEbi +_ZN3sce7Toolkit2NP6Trophy9Interface20trophyRetrieveGroupsEPKNS1_26RetrieveTrophyGroupRequestEPNS1_9Utilities6FutureINS1_15TrophyGroupInfoEEEb +_ZN3sce7Toolkit2NP6Trophy9Interface20trophyRetrieveGroupsEPNS1_9Utilities6FutureINS1_15TrophyGroupInfoEEEibi +_ZN3sce7Toolkit2NP6Trophy9Interface22trophyRetrieveProgressEPKNS1_33RetrieveUserTrophyProgressRequestEPNS1_9Utilities6FutureI19SceNpTrophyGameDataEEb +_ZN3sce7Toolkit2NP6Trophy9Interface22trophyRetrieveProgressEPNS1_9Utilities6FutureI19SceNpTrophyGameDataEEbi +_ZN3sce7Toolkit2NP7Friends9Interface12getBlockListEPNS1_9Utilities6FutureISt6vectorINS1_6NpUserENS1_15AppSTLAllocatorIS7_EEEEEPKNS1_22BlockedListInfoRequestEb +_ZN3sce7Toolkit2NP7Friends9Interface14getFriendslistEPNS1_9Utilities6FutureISt6vectorINS1_6NpUserENS1_15AppSTLAllocatorIS7_EEEEEPKNS1_17FriendInfoRequestEb +_ZN3sce7Toolkit2NP7Friends9Interface14getFriendslistEPNS1_9Utilities6FutureISt6vectorINS1_6NpUserENS1_15AppSTLAllocatorIS7_EEEEEb +_ZN3sce7Toolkit2NP7Friends9Interface21getFriendslistofUsersEPNS1_9Utilities6FutureISt6vectorINS1_13FriendsOfUserENS1_15AppSTLAllocatorIS7_EEEEEPKNS1_19FriendOfUserRequestEb +_ZN3sce7Toolkit2NP7NetInfo9Interface10getNetInfoEPNS1_9Utilities6FutureINS1_13NetStateBasicEEE +_ZN3sce7Toolkit2NP7NetInfo9Interface16getBandwidthInfoEPNS1_9Utilities6FutureI24SceNpBandwidthTestResultEE +_ZN3sce7Toolkit2NP7NetInfo9Interface18getNetInfoDetailedEPNS1_9Utilities6FutureINS1_16NetStateDetailedEEE +_ZN3sce7Toolkit2NP7NetInfo9Interface19psnLoginDialogStartEi +_ZN3sce7Toolkit2NP7Ranking9Interface11getGameDataEPKNS1_18GetGameDataRequestEPNS1_9Utilities6FutureINS1_19GetGameDataResponseEEEb +_ZN3sce7Toolkit2NP7Ranking9Interface13registerCacheEiiib +_ZN3sce7Toolkit2NP7Ranking9Interface13registerScoreEPKNS1_20RegisterScoreRequestEPNS1_9Utilities6FutureINS1_8TempRankEEEb +_ZN3sce7Toolkit2NP7Ranking9Interface15displayUserRankEPKNS1_15UserRankRequestEPNS1_9Utilities6FutureINS1_19UserRankInformationEEEb +_ZN3sce7Toolkit2NP7Ranking9Interface16registerGameDataEPKNS1_23RegisterGameDataRequestEPNS1_9Utilities6FutureINS1_24RegisterGameDataResponseEEEb +_ZN3sce7Toolkit2NP7Ranking9Interface17displayFriendRankEPKNS1_17FriendRankRequestEPNS1_9Utilities6FutureINS1_22FriendsRankInformationEEEb +_ZN3sce7Toolkit2NP7Ranking9Interface18displayRanksByNpIdEPKNS1_15NpIdListRequestEPNS1_9Utilities6FutureINS1_23NpIdListRankInformationEEEb +_ZN3sce7Toolkit2NP7Ranking9Interface19displayRangeOfRanksEPKNS1_19RangeOfRanksRequestEPNS1_9Utilities6FutureINS1_15RankInformationEEEb +_ZN3sce7Toolkit2NP7Ranking9Interface24abortGameDataTransactionEPKNS1_20AbortGameDataRequestEPNS1_9Utilities6FutureINS1_21AbortGameDataResponseEEEb +_ZN3sce7Toolkit2NP7RequestC1Ev +_ZN3sce7Toolkit2NP7RequestC2Ev +_ZN3sce7Toolkit2NP7TssDataC1Ev +_ZN3sce7Toolkit2NP7TssDataC2Ev +_ZN3sce7Toolkit2NP7TusDataC1Ev +_ZN3sce7Toolkit2NP7TusDataC2Ev +_ZN3sce7Toolkit2NP8Commerce9Interface13createSessionEb +_ZN3sce7Toolkit2NP8Commerce9Interface13productBrowseERKNS1_19ProductBrowseParamsEb +_ZN3sce7Toolkit2NP8Commerce9Interface14categoryBrowseERKNS1_20CategoryBrowseParamsEb +_ZN3sce7Toolkit2NP8Commerce9Interface14getProductListEPNS1_9Utilities6FutureISt6vectorINS1_11ProductInfoENS1_15AppSTLAllocatorIS7_EEEEERKNS1_22ProductListInputParamsEb +_ZN3sce7Toolkit2NP8Commerce9Interface15getCategoryInfoEPNS1_9Utilities6FutureINS1_12CategoryInfoEEERKNS1_23CategoryInfoInputParamsEb +_ZN3sce7Toolkit2NP8Commerce9Interface16voucherCodeInputERKNS1_18VoucherInputParamsEb +_ZN3sce7Toolkit2NP8Commerce9Interface18consumeEntitlementERKNS1_29ConsumeEntitlementInputParamsEb +_ZN3sce7Toolkit2NP8Commerce9Interface18getEntitlementListEPNS1_9Utilities6FutureISt6vectorINS1_11EntitlementENS1_15AppSTLAllocatorIS7_EEEEERKNS1_26GetEntitlementsInputParamsEb +_ZN3sce7Toolkit2NP8Commerce9Interface19displayDownloadListERNS1_23DownloadListInputParamsEb +_ZN3sce7Toolkit2NP8Commerce9Interface22getDetailedProductInfoEPNS1_9Utilities6FutureINS1_19ProductInfoDetailedEEERKNS1_30DetailedProductInfoInputParamsEb +_ZN3sce7Toolkit2NP8Commerce9Interface26getDetailedProductInfoListEPNS1_9Utilities6FutureISt6vectorINS1_19ProductInfoDetailedENS1_15AppSTLAllocatorIS7_EEEEERKNS1_34DetailedProductInfoListInputParamsEb +_ZN3sce7Toolkit2NP8Commerce9Interface8checkoutERNS1_19CheckoutInputParamsEb +_ZN3sce7Toolkit2NP8Commerce9Interface8joinPlusERNS1_19JoinPlusInputParamsEb +_ZN3sce7Toolkit2NP8Matching9Interface10kickMemberEPNS1_17KickMemberRequestEPNS1_9Utilities6FutureIiEEb +_ZN3sce7Toolkit2NP8Matching9Interface11joinSessionEPKNS1_18JoinSessionRequestEPNS1_9Utilities6FutureINS1_18SessionInformationEEEb +_ZN3sce7Toolkit2NP8Matching9Interface12leaveSessionEPKNS1_18SessionInformationEPNS1_9Utilities6FutureIiEEb +_ZN3sce7Toolkit2NP8Matching9Interface12quickSessionEPKNS1_21SearchSessionsRequestEPNS1_9Utilities6FutureINS1_18SessionInformationEEEb +_ZN3sce7Toolkit2NP8Matching9Interface13createSessionEPKNS1_20CreateSessionRequestEPNS1_9Utilities6FutureINS1_18SessionInformationEEEb +_ZN3sce7Toolkit2NP8Matching9Interface13modifySessionEPKNS1_20ModifySessionRequestEPNS1_9Utilities6FutureIiEEb +_ZN3sce7Toolkit2NP8Matching9Interface13updateSessionEPNS1_18SessionInformationEPtNS1_5Event9UserEventE +_ZN3sce7Toolkit2NP8Matching9Interface14searchSessionsEPKNS1_21SearchSessionsRequestEPNS1_9Utilities6FutureISt6vectorINS1_18SessionInformationENS1_15AppSTLAllocatorISA_EEEEEb +_ZN3sce7Toolkit2NP8Matching9Interface15inviteToSessionEPKNS1_18SessionInformationEPKNS1_13InviteMessageE +_ZN3sce7Toolkit2NP8Matching9Interface15sendRoomMessageEjSbIcSt11char_traitsIcENS1_15AppSTLAllocatorIcEEEPtji +_ZN3sce7Toolkit2NP8Matching9Interface18joinInvitedSessionEPKNS1_17MessageAttachmentEPNS1_9Utilities6FutureINS1_18SessionInformationEEEi +_ZN3sce7Toolkit2NP8Matching9Interface22updateSessionAttributeEPNS1_22UpdateAttributeRequestEPNS1_9Utilities6FutureIiEEb +_ZN3sce7Toolkit2NP8Matching9Interface25registerSessionAttributesEPKNS1_24RegisterSessionAttributeEi +_ZN3sce7Toolkit2NP8Matching9Interface27registerRoomMessageCallbackEPFvtNS1_23SessionMessageEventTypeEtPKvE +_ZN3sce7Toolkit2NP8Matching9Interface31getAdditionalSessionInformationEPNS1_28AdditionalSessionInfoRequestEPNS1_9Utilities6FutureINS1_28AdditionalSessionInformationEEEb +_ZN3sce7Toolkit2NP8Matching9Interface33joinInvitedSessionFromNpSessionIdEPKNS1_24InviteJoinSessionRequestEPNS1_9Utilities6FutureINS1_18SessionInformationEEE +_ZN3sce7Toolkit2NP8Presence9Interface11getPresenceEPKNS1_15PresenceRequestEPNS1_9Utilities6FutureINS1_12PresenceInfoEEEb +_ZN3sce7Toolkit2NP8Presence9Interface11setPresenceEPKNS1_15PresenceDetailsEb +_ZN3sce7Toolkit2NP8Sessions9Interface14getSessionDataEPKNS1_16NpSessionRequestEPNS1_9Utilities6FutureINS1_17MessageAttachmentEEEb +_ZN3sce7Toolkit2NP8Sessions9Interface17getInvitationDataEPKNS1_21InvitationDataRequestEPNS1_9Utilities6FutureINS1_17MessageAttachmentEEEb +_ZN3sce7Toolkit2NP8Sessions9Interface17getInvitationInfoEPKNS1_21InvitationInfoRequestEPNS1_9Utilities6FutureINS1_23NpSessionInvitationInfoEEEb +_ZN3sce7Toolkit2NP8Sessions9Interface17getInvitationListEPKNS1_21InvitationListRequestEPNS1_9Utilities6FutureISt6vectorINS1_23NpSessionInvitationInfoENS1_15AppSTLAllocatorISA_EEEEEb +_ZN3sce7Toolkit2NP8Sessions9Interface18postInvitationDataEPKNS1_25PostInvitationDataRequestEPNS1_9Utilities6FutureIiEEb +_ZN3sce7Toolkit2NP8Sessions9Interface24getChangeableSessionDataEPKNS1_16NpSessionRequestEPNS1_9Utilities6FutureINS1_17MessageAttachmentEEEb +_ZN3sce7Toolkit2NP8Sessions9Interface25setInvitationDataUsedFlagEPKNS1_21InvitationDataRequestEPNS1_9Utilities6FutureIiEEb +_ZN3sce7Toolkit2NP8Sessions9Interface4joinEPKNS1_20JoinNpSessionRequestEPNS1_9Utilities6FutureINS1_20NpSessionInformationEEEb +_ZN3sce7Toolkit2NP8Sessions9Interface5leaveEPKNS1_16NpSessionRequestEPNS1_9Utilities6FutureIiEEb +_ZN3sce7Toolkit2NP8Sessions9Interface6createEPKNS1_22CreateNpSessionRequestEPNS1_9Utilities6FutureINS1_20NpSessionInformationEEEb +_ZN3sce7Toolkit2NP8Sessions9Interface6inviteEPKNS1_16NpSessionRequestEPKNS1_13InviteMessageE +_ZN3sce7Toolkit2NP8Sessions9Interface6searchEPKNS1_22SearchNpSessionRequestEPNS1_9Utilities6FutureISt6vectorINS1_20NpSessionInformationENS1_15AppSTLAllocatorISA_EEEEEb +_ZN3sce7Toolkit2NP8Sessions9Interface6updateEPKNS1_22UpdateNpSessionRequestEPNS1_9Utilities6FutureIiEEb +_ZN3sce7Toolkit2NP8Sessions9Interface7getInfoEPKNS1_16NpSessionRequestEPNS1_9Utilities6FutureINS1_28NpSessionDetailedInformationEEEb +_ZN3sce7Toolkit2NP9Interface12abortRequestERKj +_ZN3sce7Toolkit2NP9Interface13passUserEventERKNS1_5EventE +_ZN3sce7Toolkit2NP9Interface13userLoggedOutEi +_ZN3sce7Toolkit2NP9Interface15printAllocStatsEv +_ZN3sce7Toolkit2NP9Interface16registerClientIdERKSbIcSt11char_traitsIcENS1_15AppSTLAllocatorIcEEE +_ZN3sce7Toolkit2NP9Interface16terminateServiceENS1_11ServiceTypeE +_ZN3sce7Toolkit2NP9Interface17checkAvailabilityEPKNS1_24CheckAvailabilityRequestEPNS1_9Utilities6FutureINS1_23CheckAvailabilityResultEEEb +_ZN3sce7Toolkit2NP9Interface17registerNpCommsIdERKNS1_15CommunicationIdENS1_11ServiceTypeE +_ZN3sce7Toolkit2NP9Interface17registerNpTitleIdERKNS1_9NpTitleIdE +_ZN3sce7Toolkit2NP9Interface19appendEventCallbackEPFvRKNS1_5EventEPvE +_ZN3sce7Toolkit2NP9Interface20registerServiceLabelERKjNS1_11ServiceTypeE +_ZN3sce7Toolkit2NP9Interface21registerEventCallbackEPFvRKNS1_5EventEE +_ZN3sce7Toolkit2NP9Interface21registerEventCallbackEPFvRKNS1_5EventEPvES6_ +_ZN3sce7Toolkit2NP9Interface23unregisterEventCallbackEv +_ZN3sce7Toolkit2NP9Interface4initERNS1_10ParametersEb +_ZN3sce7Toolkit2NP9Interface5init2EPFvRKNS1_5EventEERNS1_9NpTitleIdE +_ZN3sce7Toolkit2NP9Interface5init2EPFvRKNS1_5EventEPvERNS1_9NpTitleIdES6_ +_ZN3sce7Toolkit2NP9Interface9terminateEv +_ZN3sce7Toolkit2NP9Messaging9Interface11sendMessageEPKNS1_11MessageDataEib +_ZN3sce7Toolkit2NP9Messaging9Interface17sendInGameMessageEPKNS1_24SendInGameMessageRequestE +_ZN3sce7Toolkit2NP9Messaging9Interface21retrieveInGameMessageEPKNS1_27ReceiveInGameMessageRequestEPNS1_9Utilities6FutureINS1_25ReceivedInGameDataMessageEEE +_ZN3sce7Toolkit2NP9Messaging9Interface23displayReceivedMessagesEiPKNS1_7RequestE +_ZN3sce7Toolkit2NP9Messaging9Interface34retrieveMessageAttachmentFromEventEPKNS1_21ReceiveMessageRequestEPNS1_9Utilities6FutureINS1_17MessageAttachmentEEE +_ZN3sce7Toolkit2NP9NpTitleId10getTitleIdEv +_ZN3sce7Toolkit2NP9NpTitleId14getTitleSecretEv +_ZN3sce7Toolkit2NP9NpTitleId14setTitleSecretERK12SceNpTitleIdRK16SceNpTitleSecret +_ZN3sce7Toolkit2NP9NpTitleIdC1Ev +_ZN3sce7Toolkit2NP9NpTitleIdC2Ev +_ZN3sce7Toolkit2NP9Utilities10FutureImpl5resetEv +_ZN3sce7Toolkit2NP9Utilities10FutureImpl6isBusyEv +_ZN3sce7Toolkit2NP9Utilities10FutureImpl7setBusyEv +_ZN3sce7Toolkit2NP9Utilities10FutureImpl7waitForEj +_ZN3sce7Toolkit2NP9Utilities10FutureImplC1Ev +_ZN3sce7Toolkit2NP9Utilities10FutureImplC2Ev +_ZN3sce7Toolkit2NP9Utilities10FutureImplD1Ev +_ZN3sce7Toolkit2NP9Utilities10FutureImplD2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureI13SceNpOnlineIdE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureI13SceNpOnlineIdEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureI13SceNpOnlineIdEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureI13SceNpOnlineIdED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureI13SceNpOnlineIdED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureI16SceNpTusVariableE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureI16SceNpTusVariableEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureI16SceNpTusVariableEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureI16SceNpTusVariableED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureI16SceNpTusVariableED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureI18SceNpTssDataStatusE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureI18SceNpTssDataStatusEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureI18SceNpTssDataStatusEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureI18SceNpTssDataStatusED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureI18SceNpTssDataStatusED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureI19SceNpTrophyGameDataE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureI19SceNpTrophyGameDataEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureI19SceNpTrophyGameDataEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureI19SceNpTrophyGameDataED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureI19SceNpTrophyGameDataED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureI24SceNpBandwidthTestResultE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureI24SceNpBandwidthTestResultEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureI24SceNpBandwidthTestResultEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureI24SceNpBandwidthTestResultED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureI24SceNpBandwidthTestResultED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureI7SceNpIdE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureI7SceNpIdEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureI7SceNpIdEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureI7SceNpIdED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureI7SceNpIdED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_10TrophyInfoEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_10TrophyInfoEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_10TrophyInfoEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_10TrophyInfoEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_10TrophyInfoEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_11CountryInfoEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_11CountryInfoEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_11CountryInfoEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_11CountryInfoEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_11CountryInfoEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_12CategoryInfoEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_12CategoryInfoEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_12CategoryInfoEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_12CategoryInfoEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_12CategoryInfoEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_12PresenceInfoEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_12PresenceInfoEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_12PresenceInfoEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_12PresenceInfoEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_12PresenceInfoEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_13NetStateBasicEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_13NetStateBasicEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_13NetStateBasicEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_13NetStateBasicEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_13NetStateBasicEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_13TusDataOutputEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_13TusDataOutputEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_13TusDataOutputEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_13TusDataOutputEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_13TusDataOutputEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_14TrophyGameInfoEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_14TrophyGameInfoEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_14TrophyGameInfoEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_14TrophyGameInfoEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_14TrophyGameInfoEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_15ActivityStoryIdEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_15ActivityStoryIdEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_15ActivityStoryIdEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_15ActivityStoryIdEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_15ActivityStoryIdEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_15RankInformationEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_15RankInformationEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_15RankInformationEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_15RankInformationEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_15RankInformationEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_15TrophyGroupInfoEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_15TrophyGroupInfoEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_15TrophyGroupInfoEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_15TrophyGroupInfoEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_15TrophyGroupInfoEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_16EventInformationEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_16EventInformationEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_16EventInformationEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_16EventInformationEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_16EventInformationEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_16NetStateDetailedEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_16NetStateDetailedEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_16NetStateDetailedEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_16NetStateDetailedEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_16NetStateDetailedEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_17MessageAttachmentEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_17MessageAttachmentEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_17MessageAttachmentEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_17MessageAttachmentEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_17MessageAttachmentEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_18GameCustomDataItemEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_18GameCustomDataItemEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_18GameCustomDataItemEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_18GameCustomDataItemEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_18GameCustomDataItemEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_18SessionInformationEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_18SessionInformationEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_18SessionInformationEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_18SessionInformationEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_18SessionInformationEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_19GetGameDataResponseEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_19GetGameDataResponseEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_19GetGameDataResponseEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_19GetGameDataResponseEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_19GetGameDataResponseEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_19ProductInfoDetailedEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_19ProductInfoDetailedEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_19ProductInfoDetailedEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_19ProductInfoDetailedEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_19ProductInfoDetailedEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_19UserRankInformationEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_19UserRankInformationEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_19UserRankInformationEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_19UserRankInformationEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_19UserRankInformationEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_19WordFilterSanitizedEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_19WordFilterSanitizedEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_19WordFilterSanitizedEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_19WordFilterSanitizedEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_19WordFilterSanitizedEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_20ChallengeRecvDetailsEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_20ChallengeRecvDetailsEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_20ChallengeRecvDetailsEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_20ChallengeRecvDetailsEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_20ChallengeRecvDetailsEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_20NpSessionInformationEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_20NpSessionInformationEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_20NpSessionInformationEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_20NpSessionInformationEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_20NpSessionInformationEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_21AbortGameDataResponseEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_21AbortGameDataResponseEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_21AbortGameDataResponseEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_21AbortGameDataResponseEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_21AbortGameDataResponseEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_21GameCustomDataMessageEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_21GameCustomDataMessageEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_21GameCustomDataMessageEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_21GameCustomDataMessageEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_21GameCustomDataMessageEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_21NotifyChallengeResultEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_21NotifyChallengeResultEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_21NotifyChallengeResultEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_21NotifyChallengeResultEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_21NotifyChallengeResultEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_22ConsumeChallengeResultEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_22ConsumeChallengeResultEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_22ConsumeChallengeResultEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_22ConsumeChallengeResultEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_22ConsumeChallengeResultEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_22FriendsRankInformationEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_22FriendsRankInformationEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_22FriendsRankInformationEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_22FriendsRankInformationEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_22FriendsRankInformationEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_23NpIdListRankInformationEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_23NpIdListRankInformationEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_23NpIdListRankInformationEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_23NpIdListRankInformationEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_23NpIdListRankInformationEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_23NpSessionInvitationInfoEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_23NpSessionInvitationInfoEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_23NpSessionInvitationInfoEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_23NpSessionInvitationInfoEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_23NpSessionInvitationInfoEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_24RegisterGameDataResponseEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_24RegisterGameDataResponseEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_24RegisterGameDataResponseEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_24RegisterGameDataResponseEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_24RegisterGameDataResponseEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_25ChallengeBinaryDataResultEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_25ChallengeBinaryDataResultEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_25ChallengeBinaryDataResultEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_25ChallengeBinaryDataResultEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_25ChallengeBinaryDataResultEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_25ReceivedInGameDataMessageEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_25ReceivedInGameDataMessageEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_25ReceivedInGameDataMessageEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_25ReceivedInGameDataMessageEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_25ReceivedInGameDataMessageEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_26EventInformationListDetailEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_26EventInformationListDetailEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_26EventInformationListDetailEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_26EventInformationListDetailEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_26EventInformationListDetailEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_28AdditionalSessionInformationEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_28AdditionalSessionInformationEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_28AdditionalSessionInformationEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_28AdditionalSessionInformationEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_28AdditionalSessionInformationEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_28NpSessionDetailedInformationEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_28NpSessionDetailedInformationEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_28NpSessionDetailedInformationEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_28NpSessionDetailedInformationEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_28NpSessionDetailedInformationEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_6NpUserEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_6NpUserEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_6NpUserEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_6NpUserEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_6NpUserEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_6TicketEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_6TicketEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_6TicketEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_6TicketEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_6TicketEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_7NpUsersEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_7NpUsersEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_7NpUsersEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_7NpUsersEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_7NpUsersEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_7TssDataEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_7TssDataEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_7TssDataEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_7TssDataEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_7TssDataEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_8TempRankEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_8TempRankEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_8TempRankEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_8TempRankEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureINS1_8TempRankEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISbIcSt11char_traitsIcENS1_15AppSTLAllocatorIcEEEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureISbIcSt11char_traitsIcENS1_15AppSTLAllocatorIcEEEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISbIcSt11char_traitsIcENS1_15AppSTLAllocatorIcEEEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISbIcSt11char_traitsIcENS1_15AppSTLAllocatorIcEEEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISbIcSt11char_traitsIcENS1_15AppSTLAllocatorIcEEEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt4listINS1_11TusVariableENS1_15AppSTLAllocatorIS5_EEEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureISt4listINS1_11TusVariableENS1_15AppSTLAllocatorIS5_EEEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt4listINS1_11TusVariableENS1_15AppSTLAllocatorIS5_EEEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt4listINS1_11TusVariableENS1_15AppSTLAllocatorIS5_EEEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt4listINS1_11TusVariableENS1_15AppSTLAllocatorIS5_EEEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorI16SceNpTusVariableNS1_15AppSTLAllocatorIS5_EEEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorI16SceNpTusVariableNS1_15AppSTLAllocatorIS5_EEEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorI16SceNpTusVariableNS1_15AppSTLAllocatorIS5_EEEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorI16SceNpTusVariableNS1_15AppSTLAllocatorIS5_EEEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorI16SceNpTusVariableNS1_15AppSTLAllocatorIS5_EEEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_11EntitlementENS1_15AppSTLAllocatorIS5_EEEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_11EntitlementENS1_15AppSTLAllocatorIS5_EEEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_11EntitlementENS1_15AppSTLAllocatorIS5_EEEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_11EntitlementENS1_15AppSTLAllocatorIS5_EEEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_11EntitlementENS1_15AppSTLAllocatorIS5_EEEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_11ProductInfoENS1_15AppSTLAllocatorIS5_EEEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_11ProductInfoENS1_15AppSTLAllocatorIS5_EEEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_11ProductInfoENS1_15AppSTLAllocatorIS5_EEEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_11ProductInfoENS1_15AppSTLAllocatorIS5_EEEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_11ProductInfoENS1_15AppSTLAllocatorIS5_EEEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_13FriendsOfUserENS1_15AppSTLAllocatorIS5_EEEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_13FriendsOfUserENS1_15AppSTLAllocatorIS5_EEEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_13FriendsOfUserENS1_15AppSTLAllocatorIS5_EEEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_13FriendsOfUserENS1_15AppSTLAllocatorIS5_EEEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_13FriendsOfUserENS1_15AppSTLAllocatorIS5_EEEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_13WhoLikedStoryENS1_15AppSTLAllocatorIS5_EEEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_13WhoLikedStoryENS1_15AppSTLAllocatorIS5_EEEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_13WhoLikedStoryENS1_15AppSTLAllocatorIS5_EEEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_13WhoLikedStoryENS1_15AppSTLAllocatorIS5_EEEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_13WhoLikedStoryENS1_15AppSTLAllocatorIS5_EEEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_15PlayedWithStoryENS1_15AppSTLAllocatorIS5_EEEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_15PlayedWithStoryENS1_15AppSTLAllocatorIS5_EEEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_15PlayedWithStoryENS1_15AppSTLAllocatorIS5_EEEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_15PlayedWithStoryENS1_15AppSTLAllocatorIS5_EEEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_15PlayedWithStoryENS1_15AppSTLAllocatorIS5_EEEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_17ActivityFeedStoryENS1_15AppSTLAllocatorIS5_EEEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_17ActivityFeedStoryENS1_15AppSTLAllocatorIS5_EEEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_17ActivityFeedStoryENS1_15AppSTLAllocatorIS5_EEEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_17ActivityFeedStoryENS1_15AppSTLAllocatorIS5_EEEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_17ActivityFeedStoryENS1_15AppSTLAllocatorIS5_EEEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_18GameCustomDataItemENS1_15AppSTLAllocatorIS5_EEEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_18GameCustomDataItemENS1_15AppSTLAllocatorIS5_EEEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_18GameCustomDataItemENS1_15AppSTLAllocatorIS5_EEEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_18GameCustomDataItemENS1_15AppSTLAllocatorIS5_EEEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_18GameCustomDataItemENS1_15AppSTLAllocatorIS5_EEEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_18SessionInformationENS1_15AppSTLAllocatorIS5_EEEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_18SessionInformationENS1_15AppSTLAllocatorIS5_EEEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_18SessionInformationENS1_15AppSTLAllocatorIS5_EEEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_18SessionInformationENS1_15AppSTLAllocatorIS5_EEEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_18SessionInformationENS1_15AppSTLAllocatorIS5_EEEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_19ProductInfoDetailedENS1_15AppSTLAllocatorIS5_EEEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_19ProductInfoDetailedENS1_15AppSTLAllocatorIS5_EEEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_19ProductInfoDetailedENS1_15AppSTLAllocatorIS5_EEEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_19ProductInfoDetailedENS1_15AppSTLAllocatorIS5_EEEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_19ProductInfoDetailedENS1_15AppSTLAllocatorIS5_EEEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_20ChallengeRecvDetailsENS1_15AppSTLAllocatorIS5_EEEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_20ChallengeRecvDetailsENS1_15AppSTLAllocatorIS5_EEEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_20ChallengeRecvDetailsENS1_15AppSTLAllocatorIS5_EEEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_20ChallengeRecvDetailsENS1_15AppSTLAllocatorIS5_EEEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_20ChallengeRecvDetailsENS1_15AppSTLAllocatorIS5_EEEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_20NpSessionInformationENS1_15AppSTLAllocatorIS5_EEEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_20NpSessionInformationENS1_15AppSTLAllocatorIS5_EEEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_20NpSessionInformationENS1_15AppSTLAllocatorIS5_EEEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_20NpSessionInformationENS1_15AppSTLAllocatorIS5_EEEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_20NpSessionInformationENS1_15AppSTLAllocatorIS5_EEEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_23NpSessionInvitationInfoENS1_15AppSTLAllocatorIS5_EEEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_23NpSessionInvitationInfoENS1_15AppSTLAllocatorIS5_EEEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_23NpSessionInvitationInfoENS1_15AppSTLAllocatorIS5_EEEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_23NpSessionInvitationInfoENS1_15AppSTLAllocatorIS5_EEEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_23NpSessionInvitationInfoENS1_15AppSTLAllocatorIS5_EEEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_28ActivityFeedSharedVideoStoryENS1_15AppSTLAllocatorIS5_EEEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_28ActivityFeedSharedVideoStoryENS1_15AppSTLAllocatorIS5_EEEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_28ActivityFeedSharedVideoStoryENS1_15AppSTLAllocatorIS5_EEEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_28ActivityFeedSharedVideoStoryENS1_15AppSTLAllocatorIS5_EEEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_28ActivityFeedSharedVideoStoryENS1_15AppSTLAllocatorIS5_EEEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_6NpUserENS1_15AppSTLAllocatorIS5_EEEE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_6NpUserENS1_15AppSTLAllocatorIS5_EEEEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_6NpUserENS1_15AppSTLAllocatorIS5_EEEEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_6NpUserENS1_15AppSTLAllocatorIS5_EEEED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_6NpUserENS1_15AppSTLAllocatorIS5_EEEED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureIbE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureIbEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureIbEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureIbED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureIbED2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureIiE3getEv +_ZN3sce7Toolkit2NP9Utilities6FutureIiEC1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureIiEC2Ev +_ZN3sce7Toolkit2NP9Utilities6FutureIiED1Ev +_ZN3sce7Toolkit2NP9Utilities6FutureIiED2Ev +_ZN4IPMI4impl10ClientImpl10disconnectEv +_ZN4IPMI4impl10ClientImpl10initializeEPKNS_6Client6ConfigEPv +_ZN4IPMI4impl10ClientImpl11getUserDataEv +_ZN4IPMI4impl10ClientImpl12tryGetResultEjPiPvPmm +_ZN4IPMI4impl10ClientImpl12tryGetResultEjjPiPNS_10BufferInfoEj +_ZN4IPMI4impl10ClientImpl13pollEventFlagEjmjPm +_ZN4IPMI4impl10ClientImpl13waitEventFlagEjmjPmPj +_ZN4IPMI4impl10ClientImpl16invokeSyncMethodEjPKNS_8DataInfoEjPiPNS_10BufferInfoEj +_ZN4IPMI4impl10ClientImpl16invokeSyncMethodEjPKvmPiPvPmm +_ZN4IPMI4impl10ClientImpl17invokeAsyncMethodEjPKNS_8DataInfoEjPjPKNS_6Client12EventNotifeeE +_ZN4IPMI4impl10ClientImpl17invokeAsyncMethodEjPKvmPjPKNS_6Client12EventNotifeeE +_ZN4IPMI4impl10ClientImpl19terminateConnectionEv +_ZN4IPMI4impl10ClientImpl6getMsgEjPvPmmPj +_ZN4IPMI4impl10ClientImpl7connectEPKvmPi +_ZN4IPMI4impl10ClientImpl7destroyEv +_ZN4IPMI4impl10ClientImpl9tryGetMsgEjPvPmm +_ZN4IPMI4impl10ClientImplC1Ev +_ZN4IPMI4impl10ClientImplC2Ev +_ZN4IPMI4impl10ClientImplD0Ev +_ZN4IPMI4impl10ClientImplD1Ev +_ZN4IPMI4impl10ClientImplD2Ev +_ZN4IPMI4impl10ServerImpl10initializeEPKcPNS_6Server12EventHandlerEPvmmmb +_ZN4IPMI4impl10ServerImpl11getUserDataEv +_ZN4IPMI4impl10ServerImpl11tryDispatchEPvm +_ZN4IPMI4impl10ServerImpl13createSessionEPPNS_7SessionEPvS5_ +_ZN4IPMI4impl10ServerImpl13insertSessionEPNS0_11SessionImplE +_ZN4IPMI4impl10ServerImpl13removeSessionEPNS0_11SessionImplE +_ZN4IPMI4impl10ServerImpl13runDispatcherEPvm +_ZN4IPMI4impl10ServerImpl13searchSessionEjPPNS0_11SessionImplE +_ZN4IPMI4impl10ServerImpl14getServiceNameEv +_ZN4IPMI4impl10ServerImpl14registerKeventEi +_ZN4IPMI4impl10ServerImpl15getEventHandlerEv +_ZN4IPMI4impl10ServerImpl16doConnectRequestEiPvi +_ZN4IPMI4impl10ServerImpl16releaseSessionIdEi +_ZN4IPMI4impl10ServerImpl17allocateSessionIdEv +_ZN4IPMI4impl10ServerImpl18doAsyncCallRequestEiPvi +_ZN4IPMI4impl10ServerImpl18doTerminateRequestEj +_ZN4IPMI4impl10ServerImpl18removeSessionByKeyEjPPNS0_11SessionImplE +_ZN4IPMI4impl10ServerImpl18removeSessionByPidEjPPNS0_11SessionImplE +_ZN4IPMI4impl10ServerImpl18searchSessionByPidEjPPNS0_11SessionImplE +_ZN4IPMI4impl10ServerImpl18shutdownDispatcherEv +_ZN4IPMI4impl10ServerImpl19doDisconnectRequestEiPvi +_ZN4IPMI4impl10ServerImpl24doAsyncCallLegacyRequestEiPvi +_ZN4IPMI4impl10ServerImpl25registerKeventForProcExitEj +_ZN4IPMI4impl10ServerImpl29notifyKeventForServerShutdownEv +_ZN4IPMI4impl10ServerImpl7destroyEv +_ZN4IPMI4impl10ServerImplC1Ev +_ZN4IPMI4impl10ServerImplC2Ev +_ZN4IPMI4impl10ServerImplD0Ev +_ZN4IPMI4impl10ServerImplD1Ev +_ZN4IPMI4impl10ServerImplD2Ev +_ZN4IPMI4impl11SessionImpl10initializeEPKNS1_6ConfigEPNS0_10ServerImplEPv +_ZN4IPMI4impl11SessionImpl10trySendMsgEjPKvm +_ZN4IPMI4impl11SessionImpl11getUserDataEv +_ZN4IPMI4impl11SessionImpl11tryDispatchEPvm +_ZN4IPMI4impl11SessionImpl12estimateSizeEPKNS_7Session6ConfigE +_ZN4IPMI4impl11SessionImpl12getClientPidEv +_ZN4IPMI4impl11SessionImpl12getSessionIdEv +_ZN4IPMI4impl11SessionImpl12setEventFlagEjm +_ZN4IPMI4impl11SessionImpl13emptyMsgQueueEj +_ZN4IPMI4impl11SessionImpl13getSessionKeyEv +_ZN4IPMI4impl11SessionImpl13setSessionKeyEj +_ZN4IPMI4impl11SessionImpl18createAsyncContextEjijm +_ZN4IPMI4impl11SessionImpl19destroyAsyncContextEi +_ZN4IPMI4impl11SessionImpl22getServerRequestSocketEv +_ZN4IPMI4impl11SessionImpl26respondToSyncMethodRequestEiPKNS_10BufferInfoEj +_ZN4IPMI4impl11SessionImpl26respondToSyncMethodRequestEiPKvm +_ZN4IPMI4impl11SessionImpl27respondToAsyncMethodRequestEjiPKvm +_ZN4IPMI4impl11SessionImpl27respondToAsyncMethodRequestEjjiPKNS_8DataInfoEj +_ZN4IPMI4impl11SessionImpl6getMsgEjPvPmmPj +_ZN4IPMI4impl11SessionImpl7destroyEv +_ZN4IPMI4impl11SessionImpl7sendMsgEjPKvmPj +_ZN4IPMI4impl11SessionImpl9getServerEv +_ZN4IPMI4impl11SessionImpl9tryGetMsgEjPvPmm +_ZN4IPMI4impl11SessionImplC1Ev +_ZN4IPMI4impl11SessionImplC2Ev +_ZN4IPMI4impl11SessionImplD0Ev +_ZN4IPMI4impl11SessionImplD1Ev +_ZN4IPMI4impl11SessionImplD2Ev +_ZN4IPMI6Client6Config14MsgQueueConfig20estimateMsgQueueSizeEmj +_ZN4IPMI6Client6Config14MsgQueueConfigC1Ev +_ZN4IPMI6Client6Config14MsgQueueConfigC2Ev +_ZN4IPMI6Client6Config24estimateClientMemorySizeEv +_ZN4IPMI6Client6Config26SyncMethodInvocationConfigC1Ev +_ZN4IPMI6Client6Config26SyncMethodInvocationConfigC2Ev +_ZN4IPMI6Client6Config27AsyncMethodInvocationConfigC1Ev +_ZN4IPMI6Client6Config27AsyncMethodInvocationConfigC2Ev +_ZN4IPMI6Client6ConfigC1Ev +_ZN4IPMI6Client6ConfigC2Ev +_ZN4IPMI6Client6createEPPS0_PKNS0_6ConfigEPvS6_ +_ZN4IPMI6ClientC2Ev +_ZN4IPMI6ClientD0Ev +_ZN4IPMI6ClientD1Ev +_ZN4IPMI6ClientD2Ev +_ZN4IPMI6Server12EventHandler15onSessionKilledEPNS_7SessionE +_ZN4IPMI6Server12EventHandler20onSyncMethodDispatchEPNS_7SessionEjPKNS_8DataInfoEjPNS_10BufferInfoEj +_ZN4IPMI6Server12EventHandler20onSyncMethodDispatchEPNS_7SessionEjPvmmS4_m +_ZN4IPMI6Server12EventHandler21onAsyncMethodDispatchEPNS_7SessionEjjPKNS_8DataInfoEj +_ZN4IPMI6Server12EventHandler21onAsyncMethodDispatchEPNS_7SessionEjjPvmS4_m +_ZN4IPMI6Server12EventHandlerD0Ev +_ZN4IPMI6Server12EventHandlerD1Ev +_ZN4IPMI6Server12EventHandlerD2Ev +_ZN4IPMI6Server6ConfigC1Ev +_ZN4IPMI6Server6ConfigC2Ev +_ZN4IPMI6Server6createEPPS0_PKNS0_6ConfigEPvS6_ +_ZN4IPMI6ServerC2Ev +_ZN4IPMI6ServerD0Ev +_ZN4IPMI6ServerD1Ev +_ZN4IPMI6ServerD2Ev +_ZN4IPMI7Session6Config25estimateSessionMemorySizeEv +_ZN4IPMI7SessionC2Ev +_ZN4IPMI7SessionD0Ev +_ZN4IPMI7SessionD1Ev +_ZN4IPMI7SessionD2Ev +_ZN4Manx10FontStream4openEPKcPv +_ZN4Manx10FontStream4readEPvjS1_ +_ZN4Manx10FontStream4seekEjPv +_ZN4Manx10FontStream4sizeEPv +_ZN4Manx10FontStream5closeEPv +_ZN4Manx10FontStream6createEv +_ZN4Manx10FontStream7destroyEPv +_ZN4Manx10createDateEP14asn1_string_st +_ZN4Manx11BundleOrbis4loadEPKc +_ZN4Manx11BundleOrbis7resolveEPKc +_ZN4Manx11BundleOrbisC1Ev +_ZN4Manx11BundleOrbisC2Ev +_ZN4Manx11BundleOrbisD0Ev +_ZN4Manx11BundleOrbisD1Ev +_ZN4Manx11BundleOrbisD2Ev +_ZN4Manx11MediaPlayer10cancelLoadEv +_ZN4Manx11MediaPlayer10copyBufferEPvPKvj +_ZN4Manx11MediaPlayer10readyStateEv +_ZN4Manx11MediaPlayer10setVisibleEb +_ZN4Manx11MediaPlayer11bytesLoadedEv +_ZN4Manx11MediaPlayer11currentTimeEv +_ZN4Manx11MediaPlayer11naturalSizeERiS1_ +_ZN4Manx11MediaPlayer12networkStateEv +_ZN4Manx11MediaPlayer12supportsTypeEPKcS2_ +_ZN4Manx11MediaPlayer12supportsTypeEPKcS2_b +_ZN4Manx11MediaPlayer15maxTimeSeekableEv +_ZN4Manx11MediaPlayer4loadEPKcS2_S2_ +_ZN4Manx11MediaPlayer4playEv +_ZN4Manx11MediaPlayer4seekEf +_ZN4Manx11MediaPlayer5pauseEv +_ZN4Manx11MediaPlayer6createEPNS_17MediaPlayerClientE +_ZN4Manx11MediaPlayer6pausedEv +_ZN4Manx11MediaPlayer6updateEd +_ZN4Manx11MediaPlayer7seekingEv +_ZN4Manx11MediaPlayer7setRateEf +_ZN4Manx11MediaPlayer7setSizeEii +_ZN4Manx11MediaPlayer8bufferedERfS1_ +_ZN4Manx11MediaPlayer8durationEv +_ZN4Manx11MediaPlayer8hasAudioEv +_ZN4Manx11MediaPlayer8hasVideoEv +_ZN4Manx11MediaPlayer8setMutedEb +_ZN4Manx11MediaPlayer9setVolumeEf +_ZN4Manx11MediaPlayerC1EPNS_17MediaPlayerClientE +_ZN4Manx11MediaPlayerC2EPNS_17MediaPlayerClientE +_ZN4Manx11MediaPlayerD0Ev +_ZN4Manx11MediaPlayerD1Ev +_ZN4Manx11MediaPlayerD2Ev +_ZN4Manx11MediaSourceD0Ev +_ZN4Manx11MediaSourceD1Ev +_ZN4Manx11MediaSourceD2Ev +_ZN4Manx11RunLoopImpl4initEv +_ZN4Manx11StoragePath11sqlDatabaseEv +_ZN4Manx11StoragePath12iconDatabaseEv +_ZN4Manx11StoragePath12localStorageEv +_ZN4Manx11StoragePath8appCacheEv +_ZN4Manx11getFontDataEPKcPPvPj +_ZN4Manx11getFontNameEPKwjPKcRNS_17FontSynthesisHintE +_ZN4Manx11getFontPathEPKwj +_ZN4Manx12getFontScaleEPKwj +_ZN4Manx13KeyboardEventC1ENS0_4TypeEibbbbb +_ZN4Manx13KeyboardEventC2ENS0_4TypeEibbbbb +_ZN4Manx13WorkQueueImpl10workThreadEPv +_ZN4Manx13WorkQueueImpl18dispatchAfterDelayEPNS_9WorkQueue8FunctionEd +_ZN4Manx13WorkQueueImpl26registerSocketEventHandlerEiPNS_9WorkQueue8FunctionE +_ZN4Manx13WorkQueueImpl28unregisterSocketEventHandlerEi +_ZN4Manx13WorkQueueImpl3runEv +_ZN4Manx13WorkQueueImpl4initEv +_ZN4Manx13WorkQueueImpl4quitEv +_ZN4Manx13WorkQueueImpl5Timer4fireEv +_ZN4Manx13WorkQueueImpl5TimerC1EPNS_9WorkQueue8FunctionE +_ZN4Manx13WorkQueueImpl5TimerC2EPNS_9WorkQueue8FunctionE +_ZN4Manx13WorkQueueImpl5startEv +_ZN4Manx13WorkQueueImpl6createEPKc +_ZN4Manx13WorkQueueImpl6wakeUpEv +_ZN4Manx13WorkQueueImplC1EPKc +_ZN4Manx13WorkQueueImplC2EPKc +_ZN4Manx13WorkQueueImplD0Ev +_ZN4Manx13WorkQueueImplD1Ev +_ZN4Manx13WorkQueueImplD2Ev +_ZN4Manx14NetworkProfile10initializeEv +_ZN4Manx14NetworkProfile11netCtlCheckEv +_ZN4Manx14NetworkProfile12proxyEnabledEv +_ZN4Manx14NetworkProfile13cookieEnabledEv +_ZN4Manx14NetworkProfile13initProxyInfoEv +_ZN4Manx14NetworkProfile14mountUploadDirEv +_ZN4Manx14NetworkProfile15updateProxyInfoEv +_ZN4Manx14NetworkProfile16setCookieEnabledEb +_ZN4Manx14NetworkProfile16unMountUploadDirEv +_ZN4Manx14NetworkProfile3getENS_14SettingOptTypeE +_ZN4Manx14NetworkProfile3getENS_14SettingOptTypeEPPvPi +_ZN4Manx14NetworkProfile3getENS_14SettingOptTypeEPcj +_ZN4Manx14NetworkProfile3setENS_14SettingOptTypeEPKc +_ZN4Manx14NetworkProfile3setENS_14SettingOptTypeEPKcj +_ZN4Manx14NetworkProfile3setENS_14SettingOptTypeEl +_ZN4Manx14NetworkProfile8finalizeEv +_ZN4Manx14NetworkProfile9getStringENS_14SettingOptTypeE +_ZN4Manx15Curl_cookie_addEP10CookieInfobPcPKcS4_ +_ZN4Manx15ProcessLauncher10invalidateEi +_ZN4Manx15ProcessLauncher6launchEPKcPiS3_ +_ZN4Manx15ProcessLauncher9terminateEi +_ZN4Manx15textFromKeyCodeEib +_ZN4Manx16Curl_cookie_initEP13SessionHandlePKcP10CookieInfob +_ZN4Manx16Curl_cookie_listEP13SessionHandle +_ZN4Manx16getGenericFamilyEPKwj +_ZN4Manx17getBaselineOffsetEPKwj +_ZN4Manx18Curl_flush_cookiesEP13SessionHandlei +_ZN4Manx18getDefaultFontPathEv +_ZN4Manx19Curl_cookie_cleanupEP10CookieInfo +_ZN4Manx19Curl_cookie_getlistEP10CookieInfoPKcS3_b +_ZN4Manx19getFontWeightOffsetEPKwj +_ZN4Manx19get_netscape_formatEPK6Cookie +_ZN4Manx20Curl_cookie_clearallEP10CookieInfo +_ZN4Manx20Curl_cookie_freelistEP6Cookieb +_ZN4Manx20getGenericFamilyTypeEPKwj +_ZN4Manx21Curl_cookie_clearsessEP10CookieInfo +_ZN4Manx21Curl_cookie_loadfilesEP13SessionHandle +_ZN4Manx21DisplayRefreshMonitor10waitVblankEv +_ZN4Manx21DisplayRefreshMonitor4stopEv +_ZN4Manx21DisplayRefreshMonitor5startEi +_ZN4Manx21DisplayRefreshMonitor5startEv +_ZN4Manx21DisplayRefreshMonitorC1Ev +_ZN4Manx21DisplayRefreshMonitorC2Ev +_ZN4Manx21DisplayRefreshMonitorD1Ev +_ZN4Manx21DisplayRefreshMonitorD2Ev +_ZN4Manx21getPlatformFamilyListEPKwj +_ZN4Manx23keyIdentifierForKeyCodeEi +_ZN4Manx27monotonicallyIncreasingTimeEv +_ZN4Manx3Ssl10SslContext21postNotifyOriginFrameE +_ZN4Manx3Ssl10SslContextC1Ev +_ZN4Manx3Ssl10SslContextC2Ev +_ZN4Manx3Ssl10SslContextD0Ev +_ZN4Manx3Ssl10SslContextD1Ev +_ZN4Manx3Ssl10SslContextD2Ev +_ZN4Manx3Ssl10initializeEv +_ZN4Manx3Ssl19loadRootServerCertsEPv +_ZN4Manx3Ssl8finalizeEv +_ZN4Manx3Ssl9sslctxfunEPvS1_ +_ZN4Manx4Pipe5closeEi +_ZN4Manx4Pipe6createEPiS1_ +_ZN4Manx5Mutex4lockEv +_ZN4Manx5Mutex6unlockEv +_ZN4Manx5Mutex7tryLockEv +_ZN4Manx5MutexC1Ev +_ZN4Manx5MutexC2Ev +_ZN4Manx5MutexD0Ev +_ZN4Manx5MutexD1Ev +_ZN4Manx5MutexD2Ev +_ZN4Manx6Bundle6createEv +_ZN4Manx6Cookie6createEPKcS2_S2_ +_ZN4Manx6CookieC1Ev +_ZN4Manx6CookieC2Ev +_ZN4Manx6CookieD1Ev +_ZN4Manx6CookieD2Ev +_ZN4Manx6CookiedlEPv +_ZN4Manx6CookienwEm +_ZN4Manx6Locale11getLanguageEv +_ZN4Manx6Screen14availableWidthEv +_ZN4Manx6Screen15availableHeightEv +_ZN4Manx6Screen5widthEv +_ZN4Manx6Screen6heightEv +_ZN4Manx6System19setVirtualRangeNameEPvmPKc +_ZN4Manx6System21defaultThreadPriorityEv +_ZN4Manx6System24setDefaultThreadPriorityEi +_ZN4Manx6System6osNameEv +_ZN4Manx7Network4freeEPv +_ZN4Manx7Network6callocEmm +_ZN4Manx7Network6mallocEm +_ZN4Manx7Network6strdupEPKc +_ZN4Manx7Network7reallocEPvm +_ZN4Manx7RunLoop3runEv +_ZN4Manx7RunLoop4initEv +_ZN4Manx7RunLoop4pollEv +_ZN4Manx7RunLoop7currentEv +_ZN4Manx7RunLoop8finalizeEv +_ZN4Manx8Gamepads6createEv +_ZN4Manx8ImeEventC1ENS0_12ImeEventTypeEPKci +_ZN4Manx8ImeEventC1ENS0_12ImeEventTypeEPKcji +_ZN4Manx8ImeEventC2ENS0_12ImeEventTypeEPKci +_ZN4Manx8ImeEventC2ENS0_12ImeEventTypeEPKcji +_ZN4Manx8X509cinf12serialNumberEPcj +_ZN4Manx8X509cinf15convertTime64_tEPNS_4DateE +_ZN4Manx8X509cinf15serialNumberStrEPPc +_ZN4Manx8X509cinf6issuerEv +_ZN4Manx8X509cinf7subjectEv +_ZN4Manx8X509cinf7versionEv +_ZN4Manx8X509cinf8notAfterEv +_ZN4Manx8X509cinf9notBeforeEv +_ZN4Manx8X509cinfC1EPKS0_ +_ZN4Manx8X509cinfC1EPv +_ZN4Manx8X509cinfC2EPKS0_ +_ZN4Manx8X509cinfC2EPv +_ZN4Manx8X509cinfD1Ev +_ZN4Manx8X509cinfD2Ev +_ZN4Manx8X509name13getNumOfItemsENS0_12X509NameTypeE +_ZN4Manx8X509name7getItemENS0_12X509NameTypeEiPcj +_ZN4Manx8X509name7onelineEPcj +_ZN4Manx8X509nameC1EPKS0_ +_ZN4Manx8X509nameC1EPv +_ZN4Manx8X509nameC2EPKS0_ +_ZN4Manx8X509nameC2EPv +_ZN4Manx8X509nameD1Ev +_ZN4Manx8X509nameD2Ev +_ZN4Manx9WorkQueue6createEPKc +_ZN4Manx9X509chain10appendListEPNS_8X509cinfE +_ZN4Manx9X509chain10numOfChainEv +_ZN4Manx9X509chain5getAtEi +_ZN4Manx9X509chainC1EPKS0_ +_ZN4Manx9X509chainC1EPv +_ZN4Manx9X509chainC2EPKS0_ +_ZN4Manx9X509chainC2EPv +_ZN4Manx9X509chainD1Ev +_ZN4Manx9X509chainD2Ev +_ZN4Manx9tailmatchEPKcS1_ +_ZN6Dinkum7codecvt10_Cvt_checkEmm +_ZN6Dinkum7threads10lock_errorC1Ev +_ZN6Dinkum7threads10lock_errorD0Ev +_ZN6Dinkum7threads10lock_errorD1Ev +_ZN6Dinkum7threads17_Throw_lock_errorEv +_ZN6Dinkum7threads21_Throw_resource_errorEv +_ZN6Dinkum7threads21thread_resource_errorC1Ev +_ZN6Dinkum7threads21thread_resource_errorD0Ev +_ZN6Dinkum7threads21thread_resource_errorD1Ev +_ZN6WebKit12ChildProcess10initializeERKNS_36ChildProcessInitializationParametersE +_ZN6WebKit12ChildProcess17enableTerminationEv +_ZN6WebKit12ChildProcess17initializeProcessERKNS_36ChildProcessInitializationParametersE +_ZN6WebKit12ChildProcess17initializeSandboxERKNS_36ChildProcessInitializationParametersERNS_31SandboxInitializationParametersE +_ZN6WebKit12ChildProcess18addMessageReceiverEN3IPC15StringReferenceERNS1_15MessageReceiverE +_ZN6WebKit12ChildProcess18addMessageReceiverEN3IPC15StringReferenceEmRNS1_15MessageReceiverE +_ZN6WebKit12ChildProcess18addMessageReceiverEN7CoreIPC15StringReferenceEPNS1_15MessageReceiverE +_ZN6WebKit12ChildProcess18disableTerminationEv +_ZN6WebKit12ChildProcess18platformInitializeEv +_ZN6WebKit12ChildProcess20initializeConnectionEPN7CoreIPC10ConnectionE +_ZN6WebKit12ChildProcess21initializeProcessNameERKNS_36ChildProcessInitializationParametersE +_ZN6WebKit12ChildProcess21removeMessageReceiverEN3IPC15StringReferenceEm +_ZN6WebKit12ChildProcess21removeMessageReceiverEN7CoreIPC15StringReferenceEm +_ZN6WebKit12ChildProcess21terminationTimerFiredEv +_ZN6WebKit12ChildProcess23messageSenderConnectionEv +_ZN6WebKit12ChildProcess26messageSenderDestinationIDEv +_ZN6WebKit12ChildProcess9terminateEv +_ZN6WebKit12ChildProcessC1Ev +_ZN6WebKit12ChildProcessC2Ev +_ZN6WebKit12ChildProcessD0Ev +_ZN6WebKit12ChildProcessD1Ev +_ZN6WebKit12ChildProcessD2Ev +_ZN6WebKit14WebProcessMainEiPPc +_ZN6WebKit17ChildProcessProxy11sendMessageEN3WTF10PassOwnPtrIN7CoreIPC14MessageEncoderEEEj +_ZN6WebKit17ChildProcessProxy11sendMessageESt10unique_ptrIN3IPC14MessageEncoderESt14default_deleteIS3_EEj +_ZN6WebKit17ChildProcessProxy14fromConnectionEPN7CoreIPC10ConnectionE +_ZN6WebKit17ChildProcessProxy15clearConnectionEv +_ZN6WebKit17ChildProcessProxy15dispatchMessageEPN7CoreIPC10ConnectionERNS1_14MessageDecoderE +_ZN6WebKit17ChildProcessProxy15dispatchMessageERN3IPC10ConnectionERNS1_14MessageDecoderE +_ZN6WebKit17ChildProcessProxy18addMessageReceiverEN3IPC15StringReferenceEmRNS1_15MessageReceiverE +_ZN6WebKit17ChildProcessProxy18addMessageReceiverEN7CoreIPC15StringReferenceEPNS1_15MessageReceiverE +_ZN6WebKit17ChildProcessProxy18didFinishLaunchingEPNS_15ProcessLauncherEi +_ZN6WebKit17ChildProcessProxy19dispatchSyncMessageEPN7CoreIPC10ConnectionERNS1_14MessageDecoderERN3WTF6OwnPtrINS1_14MessageEncoderEEE +_ZN6WebKit17ChildProcessProxy19dispatchSyncMessageERN3IPC10ConnectionERNS1_14MessageDecoderERSt10unique_ptrINS1_14MessageEncoderESt14default_deleteIS7_EE +_ZN6WebKit17ChildProcessProxy21removeMessageReceiverEN3IPC15StringReferenceEm +_ZN6WebKit17ChildProcessProxy21removeMessageReceiverEN7CoreIPC15StringReferenceEm +_ZN6WebKit17ChildProcessProxy26abortProcessLaunchIfNeededEv +_ZN6WebKit17ChildProcessProxy7connectEv +_ZN6WebKit17ChildProcessProxy9terminateEv +_ZN6WebKit17ChildProcessProxyC1Ev +_ZN6WebKit17ChildProcessProxyC2Ev +_ZN6WebKit17ChildProcessProxyD0Ev +_ZN6WebKit17ChildProcessProxyD1Ev +_ZN6WebKit17ChildProcessProxyD2Ev +_ZN6WebKit18NetworkProcessMainEiPPc +_ZN6icu_6713UnicodeStringC1Ev +_ZN6icu_6713UnicodeStringD0Ev +_ZN6icu_6713UnicodeStringD1Ev +_ZN6icu_6713UnicodeStringD2Ev +_ZN6icu_6713UnicodeStringaSERKS0_ +_ZN6icu_678TimeZone14getCanonicalIDERKNS_13UnicodeStringERS1_RaR10UErrorCode +_ZN6icu_678TimeZone18detectHostTimeZoneEv +_ZN7CoreIPC10Attachment6decodeERNS_15ArgumentDecoderERS0_ +_ZN7CoreIPC10Attachment7disposeEv +_ZN7CoreIPC10AttachmentC1Ei +_ZN7CoreIPC10AttachmentC1Eim +_ZN7CoreIPC10AttachmentC1Ev +_ZN7CoreIPC10Connection10invalidateEv +_ZN7CoreIPC10Connection11sendMessageEN3WTF10PassOwnPtrINS_14MessageEncoderEEEj +_ZN7CoreIPC10Connection13sendSyncReplyEN3WTF10PassOwnPtrINS_14MessageEncoderEEE +_ZN7CoreIPC10Connection18connectionDidCloseEv +_ZN7CoreIPC10Connection18platformInitializeEi +_ZN7CoreIPC10Connection18platformInvalidateEv +_ZN7CoreIPC10Connection19sendOutgoingMessageEN3WTF10PassOwnPtrINS_14MessageEncoderEEE +_ZN7CoreIPC10Connection22createClientConnectionEiPNS0_6ClientEPN7WebCore7RunLoopE +_ZN7CoreIPC10Connection22createServerConnectionEiPNS0_6ClientEPN7WebCore7RunLoopE +_ZN7CoreIPC10Connection22processIncomingMessageEN3WTF10PassOwnPtrINS_14MessageDecoderEEE +_ZN7CoreIPC10Connection40setDidCloseOnConnectionWorkQueueCallbackEPFvPS0_E +_ZN7CoreIPC10Connection4openEv +_ZN7CoreIPC10ConnectionD1Ev +_ZN7CoreIPC13ArgumentCoderIN3WTF6StringEE6decodeERNS_15ArgumentDecoderERS2_ +_ZN7CoreIPC13ArgumentCoderIN3WTF6StringEE6encodeERNS_15ArgumentEncoderERKS2_ +_ZN7CoreIPC13DataReference6decodeERNS_15ArgumentDecoderERS0_ +_ZN7CoreIPC13MessageSender11sendMessageEN3WTF10PassOwnPtrINS_14MessageEncoderEEE +_ZN7CoreIPC13MessageSenderD2Ev +_ZN7CoreIPC14MessageDecoder6createERKNS_13DataReferenceE +_ZN7CoreIPC14MessageEncoder16setIsSyncMessageEb +_ZN7CoreIPC14MessageEncoder47setShouldDispatchMessageWhenWaitingForSyncReplyEb +_ZN7CoreIPC14MessageEncoder6createENS_15StringReferenceES1_m +_ZN7CoreIPC15ArgumentDecoder16removeAttachmentERNS_10AttachmentE +_ZN7CoreIPC15ArgumentDecoder21decodeFixedLengthDataEPhmj +_ZN7CoreIPC15ArgumentDecoder29decodeVariableLengthByteArrayERNS_13DataReferenceE +_ZN7CoreIPC15ArgumentDecoder6decodeERb +_ZN7CoreIPC15ArgumentDecoder6decodeERh +_ZN7CoreIPC15ArgumentDecoder6decodeERj +_ZN7CoreIPC15ArgumentDecoder6decodeERm +_ZN7CoreIPC15ArgumentDecoderD2Ev +_ZN7CoreIPC15ArgumentEncoder13addAttachmentERKNS_10AttachmentE +_ZN7CoreIPC15ArgumentEncoder18releaseAttachmentsEv +_ZN7CoreIPC15ArgumentEncoder21encodeFixedLengthDataEPKhmj +_ZN7CoreIPC15ArgumentEncoder29encodeVariableLengthByteArrayERKNS_13DataReferenceE +_ZN7CoreIPC15ArgumentEncoder6encodeEb +_ZN7CoreIPC15ArgumentEncoder6encodeEh +_ZN7CoreIPC15ArgumentEncoder6encodeEj +_ZN7CoreIPC15ArgumentEncoder6encodeEm +_ZN7CoreIPC15ArgumentEncoderC2Ev +_ZN7CoreIPC15ArgumentEncoderD2Ev +_ZN7CoreIPC15StringReference4Hash4hashERKS0_ +_ZN7CoreIPC15StringReference6decodeERNS_15ArgumentDecoderERS0_ +_ZN7CoreIPC18MessageReceiverMap15dispatchMessageEPNS_10ConnectionERNS_14MessageDecoderE +_ZN7CoreIPC18MessageReceiverMap18addMessageReceiverENS_15StringReferenceEPNS_15MessageReceiverE +_ZN7CoreIPC18MessageReceiverMap19dispatchSyncMessageEPNS_10ConnectionERNS_14MessageDecoderERN3WTF6OwnPtrINS_14MessageEncoderEEE +_ZN7CoreIPC18MessageReceiverMap21removeMessageReceiverENS_15StringReferenceEm +_ZN7CoreIPC18MessageReceiverMapC1Ev +_ZN7CoreIPC18MessageReceiverMapD1Ev +_ZN7Nicosia14PaintingEngine6createEv +_ZN7Nicosia16SceneIntegration10invalidateEv +_ZN7Nicosia16SceneIntegration13requestUpdateEv +_ZN7Nicosia16SceneIntegration17createUpdateScopeEv +_ZN7Nicosia16SceneIntegration6ClientC2ERKS1_ +_ZN7Nicosia16SceneIntegration6ClientC2Ev +_ZN7Nicosia16SceneIntegration6ClientD0Ev +_ZN7Nicosia16SceneIntegration6ClientD1Ev +_ZN7Nicosia16SceneIntegration6ClientD2Ev +_ZN7Nicosia16SceneIntegration6createERNS_5SceneERNS0_6ClientE +_ZN7Nicosia16SceneIntegration9setClientERNS0_6ClientE +_ZN7Nicosia16SceneIntegrationC1ERNS_5SceneERNS0_6ClientE +_ZN7Nicosia16SceneIntegrationC2ERNS_5SceneERNS0_6ClientE +_ZN7Nicosia16SceneIntegrationD1Ev +_ZN7Nicosia16SceneIntegrationD2Ev +_ZN7Nicosia29BackingStoreTextureMapperImpl10takeUpdateEv +_ZN7Nicosia29BackingStoreTextureMapperImpl11flushUpdateEv +_ZN7Nicosia29ContentLayerTextureMapperImpl11flushUpdateEv +_ZN7Nicosia29ContentLayerTextureMapperImpl19swapBuffersIfNeededEv +_ZN7Nicosia29ImageBackingTextureMapperImpl10takeUpdateEv +_ZN7Nicosia29ImageBackingTextureMapperImpl11flushUpdateEv +_ZN7Nicosia5Scene5StateC1ERKS1_ +_ZN7Nicosia5Scene5StateC1Ev +_ZN7Nicosia5Scene5StateC2ERKS1_ +_ZN7Nicosia5Scene5StateC2Ev +_ZN7Nicosia5Scene5StateD1Ev +_ZN7Nicosia5Scene5StateD2Ev +_ZN7Nicosia5Scene5StateaSERKS1_ +_ZN7Nicosia5Scene6createEv +_ZN7Nicosia5SceneC1Ev +_ZN7Nicosia5SceneC2Ev +_ZN7Nicosia5SceneD1Ev +_ZN7Nicosia5SceneD2Ev +_ZN7Nicosia6Buffer25waitUntilPaintingCompleteEv +_ZN7Nicosia6Buffer6createERKN7WebCore7IntSizeEj +_ZN7Nicosia6BufferD1Ev +_ZN7Nicosia6BufferD2Ev +_ZN7Nicosia9AnimationC1ERKN3WTF6StringERKN7WebCore17KeyframeValueListERKNS5_9FloatSizeERKNS5_9AnimationEbNS1_13MonotonicTimeENS1_7SecondsENS0_14AnimationStateE +_ZN7Nicosia9AnimationC1ERKS0_ +_ZN7Nicosia9AnimationC2ERKN3WTF6StringERKN7WebCore17KeyframeValueListERKNS5_9FloatSizeERKNS5_9AnimationEbNS1_13MonotonicTimeENS1_7SecondsENS0_14AnimationStateE +_ZN7Nicosia9AnimationC2ERKS0_ +_ZN7WebCore10FileHandle4openERKN3WTF6StringENS1_14FileSystemImpl12FileOpenModeE +_ZN7WebCore10FileHandle4openERKN3WTF6StringENS_10FileSystem12FileOpenModeE +_ZN7WebCore10FileHandle4openEv +_ZN7WebCore10FileHandle4readEPvi +_ZN7WebCore10FileHandle5closeEv +_ZN7WebCore10FileHandle5writeEPKvi +_ZN7WebCore10FileHandle6printfEPKcz +_ZN7WebCore10FileHandleC1EOS0_ +_ZN7WebCore10FileHandleC1ERKN3WTF6StringENS1_14FileSystemImpl12FileOpenModeE +_ZN7WebCore10FileHandleC1ERKN3WTF6StringENS1_14FileSystemImpl12FileOpenModeENS1_9OptionSetINS5_12FileLockModeEEE +_ZN7WebCore10FileHandleC1ERKN3WTF6StringENS_10FileSystem12FileOpenModeE +_ZN7WebCore10FileHandleC1Ev +_ZN7WebCore10FileHandleC2EOS0_ +_ZN7WebCore10FileHandleC2ERKN3WTF6StringENS1_14FileSystemImpl12FileOpenModeE +_ZN7WebCore10FileHandleC2ERKN3WTF6StringENS1_14FileSystemImpl12FileOpenModeENS1_9OptionSetINS5_12FileLockModeEEE +_ZN7WebCore10FileHandleC2ERKN3WTF6StringENS_10FileSystem12FileOpenModeE +_ZN7WebCore10FileHandleC2Ev +_ZN7WebCore10FileHandleD1Ev +_ZN7WebCore10FileHandleD2Ev +_ZN7WebCore10FileHandleaSEOS0_ +_ZN7WebCore10FileSystem10deleteFileERKN3WTF6StringE +_ZN7WebCore10FileSystem10fileExistsERKN3WTF6StringE +_ZN7WebCore10FileSystem11getFileSizeERKN3WTF6StringERx +_ZN7WebCore10FileSystem11getFileSizeEiRx +_ZN7WebCore10FileSystem12fileMetadataERKN3WTF6StringE +_ZN7WebCore10FileSystem13directoryNameERKN3WTF6StringE +_ZN7WebCore10FileSystem13listDirectoryERKN3WTF6StringES4_ +_ZN7WebCore10FileSystem14MappedFileDataC1ERKN3WTF6StringERb +_ZN7WebCore10FileSystem14MappedFileDataC2ERKN3WTF6StringERb +_ZN7WebCore10FileSystem14MappedFileDataD1Ev +_ZN7WebCore10FileSystem14MappedFileDataD2Ev +_ZN7WebCore10FileSystem14setMetadataURLERKN3WTF6StringES4_S4_ +_ZN7WebCore10FileSystem15fileIsDirectoryERKN3WTF6StringENS0_25ShouldFollowSymbolicLinksE +_ZN7WebCore10FileSystem15getFileDeviceIdERKN3WTF7CStringE +_ZN7WebCore10FileSystem15openAndLockFileERKN3WTF6StringENS0_12FileOpenModeENS1_9OptionSetINS0_12FileLockModeEEE +_ZN7WebCore10FileSystem15pathGetFileNameERKN3WTF6StringE +_ZN7WebCore10FileSystem17encodeForFileNameERKN3WTF6StringE +_ZN7WebCore10FileSystem18createSymbolicLinkERKN3WTF6StringES4_ +_ZN7WebCore10FileSystem18decodeFromFilenameERKN3WTF6StringE +_ZN7WebCore10FileSystem18getVolumeFreeSpaceERKN3WTF6StringERm +_ZN7WebCore10FileSystem18makeAllDirectoriesERKN3WTF6StringE +_ZN7WebCore10FileSystem19filesHaveSameVolumeERKN3WTF6StringES4_ +_ZN7WebCore10FileSystem19getFileCreationTimeERKN3WTF6StringERl +_ZN7WebCore10FileSystem20deleteEmptyDirectoryERKN3WTF6StringE +_ZN7WebCore10FileSystem23getFileModificationTimeERKN3WTF6StringE +_ZN7WebCore10FileSystem23getFileModificationTimeERKN3WTF6StringERl +_ZN7WebCore10FileSystem24fileSystemRepresentationERKN3WTF6StringE +_ZN7WebCore10FileSystem24pathByAppendingComponentERKN3WTF6StringES4_ +_ZN7WebCore10FileSystem29fileMetadataFollowingSymlinksERKN3WTF6StringE +_ZN7WebCore10FileSystem8moveFileERKN3WTF6StringES4_ +_ZN7WebCore10FileSystem8openFileERKN3WTF6StringENS0_12FileOpenModeE +_ZN7WebCore10FloatPoint15narrowPrecisionEdd +_ZN7WebCore10FloatPoint9normalizeEv +_ZN7WebCore10FloatPointC1ERKNS_8IntPointE +_ZN7WebCore10FloatPointC2ERKNS_8IntPointE +_ZN7WebCore10FontHandleC1EON3WTF3RefINS_12SharedBufferENS1_13DumbPtrTraitsIS3_EEEENS_4Font6OriginEfbb +_ZN7WebCore10FontHandleC2EON3WTF3RefINS_12SharedBufferENS1_13DumbPtrTraitsIS3_EEEENS_4Font6OriginEfbb +_ZN7WebCore10ISOFullBox5parseERN3JSC8DataViewERj +_ZN7WebCore10ISOFullBoxC1ERKS0_ +_ZN7WebCore10ISOFullBoxC1Ev +_ZN7WebCore10ISOFullBoxC2ERKS0_ +_ZN7WebCore10ISOFullBoxC2Ev +_ZN7WebCore10ISOFullBoxD0Ev +_ZN7WebCore10ISOFullBoxD1Ev +_ZN7WebCore10ISOFullBoxD2Ev +_ZN7WebCore10ISOFullBoxaSERKS0_ +_ZN7WebCore10JSDocument11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE +_ZN7WebCore10JSDocument13visitChildrenEPN3JSC6JSCellERNS1_11SlotVisitorE +_ZN7WebCore10JSDocument14finishCreationERN3JSC2VME +_ZN7WebCore10JSDocument14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE +_ZN7WebCore10JSDocument15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore10JSDocument15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE +_ZN7WebCore10JSDocument15subspaceForImplERN3JSC2VME +_ZN7WebCore10JSDocument22visitOutputConstraintsEPN3JSC6JSCellERNS1_11SlotVisitorE +_ZN7WebCore10JSDocument23visitAdditionalChildrenERN3JSC11SlotVisitorE +_ZN7WebCore10JSDocument4infoEv +_ZN7WebCore10JSDocument6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_8DocumentENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore10JSDocument6s_infoE +_ZN7WebCore10JSDocument9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore10JSDocument9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore10JSDocumentC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_8DocumentENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore10JSDocumentC1ERKS0_ +_ZN7WebCore10JSDocumentC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_8DocumentENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore10JSDocumentC2ERKS0_ +_ZN7WebCore10JSDocumentD1Ev +_ZN7WebCore10JSDocumentD2Ev +_ZN7WebCore10JSLocation10putByIndexEPN3JSC6JSCellEPNS1_14JSGlobalObjectEjNS1_7JSValueEb +_ZN7WebCore10JSLocation11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE +_ZN7WebCore10JSLocation12getPrototypeEPN3JSC8JSObjectEPNS1_14JSGlobalObjectE +_ZN7WebCore10JSLocation13visitChildrenEPN3JSC6JSCellERNS1_11SlotVisitorE +_ZN7WebCore10JSLocation14deletePropertyEPN3JSC6JSCellEPNS1_14JSGlobalObjectENS1_12PropertyNameERNS1_18DeletePropertySlotE +_ZN7WebCore10JSLocation14finishCreationERN3JSC2VME +_ZN7WebCore10JSLocation14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE +_ZN7WebCore10JSLocation15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore10JSLocation15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE +_ZN7WebCore10JSLocation15subspaceForImplERN3JSC2VME +_ZN7WebCore10JSLocation17defineOwnPropertyEPN3JSC8JSObjectEPNS1_14JSGlobalObjectENS1_12PropertyNameERKNS1_18PropertyDescriptorEb +_ZN7WebCore10JSLocation17preventExtensionsEPN3JSC8JSObjectEPNS1_14JSGlobalObjectE +_ZN7WebCore10JSLocation18getOwnPropertySlotEPN3JSC8JSObjectEPNS1_14JSGlobalObjectENS1_12PropertyNameERNS1_12PropertySlotE +_ZN7WebCore10JSLocation21deletePropertyByIndexEPN3JSC6JSCellEPNS1_14JSGlobalObjectEj +_ZN7WebCore10JSLocation25getOwnPropertySlotByIndexEPN3JSC8JSObjectEPNS1_14JSGlobalObjectEjRNS1_12PropertySlotE +_ZN7WebCore10JSLocation3putEPN3JSC6JSCellEPNS1_14JSGlobalObjectENS1_12PropertyNameENS1_7JSValueERNS1_15PutPropertySlotE +_ZN7WebCore10JSLocation4infoEv +_ZN7WebCore10JSLocation6s_infoE +_ZN7WebCore10JSLocation7destroyEPN3JSC6JSCellE +_ZN7WebCore10JSLocation9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore10JSLocation9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore10JSLocationC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_8LocationENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore10JSLocationC1ERKS0_ +_ZN7WebCore10JSLocationC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_8LocationENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore10JSLocationC2ERKS0_ +_ZN7WebCore10JSLocationD1Ev +_ZN7WebCore10JSLocationD2Ev +_ZN7WebCore10JSLocationaSERKS0_ +_ZN7WebCore10JSNodeList9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore10LayoutRect5scaleEf +_ZN7WebCore10LayoutRect5uniteERKS0_ +_ZN7WebCore10LayoutRectC1ERKNS_9FloatRectE +_ZN7WebCore10LayoutRectC2ERKNS_9FloatRectE +_ZN7WebCore10MouseEvent14initMouseEventERKN3WTF10AtomStringEbbONS1_6RefPtrINS_11WindowProxyENS1_13DumbPtrTraitsIS6_EEEEiiiiibbbbsPNS_11EventTargetE +_ZN7WebCore10MouseEvent14initMouseEventERKN3WTF12AtomicStringEbbONS1_6RefPtrINS_11WindowProxyENS1_13DumbPtrTraitsIS6_EEEEiiiiibbbbtPNS_11EventTargetE +_ZN7WebCore10MouseEvent6createERKN3WTF10AtomStringEONS1_6RefPtrINS_11WindowProxyENS1_13DumbPtrTraitsIS6_EEEERKNS_18PlatformMouseEventEiPNS_4NodeE +_ZN7WebCore10MouseEvent6createERKN3WTF12AtomicStringEONS1_6RefPtrINS_11WindowProxyENS1_13DumbPtrTraitsIS6_EEEERKNS_18PlatformMouseEventEiPNS_4NodeE +_ZN7WebCore10MouseEvent6createERKN3WTF12AtomicStringEbbNS1_13MonotonicTimeEONS1_6RefPtrINS_11WindowProxyENS1_13DumbPtrTraitsIS7_EEEEiiiiibbbbttPNS_11EventTargetEdtPNS_12DataTransferEb +_ZN7WebCore10OriginLockD1Ev +_ZN7WebCore10OriginLockD2Ev +_ZN7WebCore10Pasteboard10readOriginEv +_ZN7WebCore10Pasteboard10readStringERKN3WTF6StringE +_ZN7WebCore10Pasteboard11writeMarkupERKN3WTF6StringE +_ZN7WebCore10Pasteboard11writeStringERKN3WTF6StringES4_ +_ZN7WebCore10Pasteboard14readAllStringsERKN3WTF6StringE +_ZN7WebCore10Pasteboard14writePlainTextERKN3WTF6StringENS0_18SmartReplaceOptionE +_ZN7WebCore10Pasteboard15canSmartReplaceEv +_ZN7WebCore10Pasteboard15writeCustomDataERKN3WTF6VectorINS_20PasteboardCustomDataELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN7WebCore10Pasteboard15writeCustomDataERKNS_20PasteboardCustomDataE +_ZN7WebCore10Pasteboard16fileContentStateEv +_ZN7WebCore10Pasteboard20typesSafeForBindingsERKN3WTF6StringE +_ZN7WebCore10Pasteboard21createForCopyAndPasteEv +_ZN7WebCore10Pasteboard22readStringInCustomDataERKN3WTF6StringE +_ZN7WebCore10Pasteboard28typesForLegacyUnsafeBindingsEv +_ZN7WebCore10Pasteboard33writeTrustworthyWebURLsPboardTypeERKNS_13PasteboardURLE +_ZN7WebCore10Pasteboard4readERNS_19PasteboardPlainTextE +_ZN7WebCore10Pasteboard4readERNS_19PasteboardPlainTextENS_25PlainTextURLReadingPolicyEN3WTF8OptionalImEE +_ZN7WebCore10Pasteboard4readERNS_20PasteboardFileReaderE +_ZN7WebCore10Pasteboard4readERNS_20PasteboardFileReaderEN3WTF8OptionalImEE +_ZN7WebCore10Pasteboard4readERNS_26PasteboardWebContentReaderENS_23WebContentReadingPolicyE +_ZN7WebCore10Pasteboard4readERNS_26PasteboardWebContentReaderENS_23WebContentReadingPolicyEN3WTF8OptionalImEE +_ZN7WebCore10Pasteboard5clearERKN3WTF6StringE +_ZN7WebCore10Pasteboard5clearEv +_ZN7WebCore10Pasteboard5writeERKNS_13PasteboardURLE +_ZN7WebCore10Pasteboard5writeERKNS_15PasteboardImageE +_ZN7WebCore10Pasteboard5writeERKNS_20PasteboardWebContentE +_ZN7WebCore10Pasteboard5writeERKNS_5ColorE +_ZN7WebCore10Pasteboard7hasDataEv +_ZN7WebCore10PingLoader19sendViolationReportERNS_5FrameERKN3WTF3URLEONS3_3RefINS_8FormDataENS3_13DumbPtrTraitsIS8_EEEENS_19ViolationReportTypeE +_ZN7WebCore10PingLoader19sendViolationReportERNS_5FrameERKNS_3URLEON3WTF3RefINS_8FormDataENS6_13DumbPtrTraitsIS8_EEEENS_19ViolationReportTypeE +_ZN7WebCore10RenderView10compositorEv +_ZN7WebCore10RenderView7hitTestERKNS_14HitTestRequestERNS_13HitTestResultE +_ZN7WebCore10ScrollView11removeChildERNS_6WidgetE +_ZN7WebCore10ScrollView15setScrollOffsetERKNS_8IntPointE +_ZN7WebCore10ScrollView16setParentVisibleEb +_ZN7WebCore10ScrollView17setScrollbarModesENS_13ScrollbarModeES1_bb +_ZN7WebCore10ScrollView17setUseFixedLayoutEb +_ZN7WebCore10ScrollView18setFixedLayoutSizeERKNS_7IntSizeE +_ZN7WebCore10ScrollView20setCanHaveScrollbarsEb +_ZN7WebCore10ScrollView21setDelegatesScrollingEb +_ZN7WebCore10ScrollView21setExposedContentRectERKNS_9FloatRectE +_ZN7WebCore10ScrollView23setPaintsEntireContentsEb +_ZN7WebCore10ScrollView23setScrollbarsSuppressedEbb +_ZN7WebCore10ScrollView24setUnobscuredContentSizeERKNS_9FloatSizeE +_ZN7WebCore10ScrollView36scrollOffsetChangedViaPlatformWidgetERKNS_8IntPointES3_ +_ZN7WebCore10ScrollView4hideEv +_ZN7WebCore10ScrollView4showEv +_ZN7WebCore10ScrollView5paintERNS_15GraphicsContextERKNS_7IntRectENS_6Widget25SecurityOriginPaintPolicyE +_ZN7WebCore10ScrollView5paintERNS_15GraphicsContextERKNS_7IntRectENS_6Widget25SecurityOriginPaintPolicyEPNS_18EventRegionContextE +_ZN7WebCore10ScrollView8addChildERNS_6WidgetE +_ZN7WebCore10StorageMap10removeItemERKN3WTF6StringERS2_ +_ZN7WebCore10StorageMap11importItemsEON3WTF7HashMapINS1_6StringES3_NS1_11DefaultHashIS3_EENS1_10HashTraitsIS3_EES7_EE +_ZN7WebCore10StorageMap11importItemsERKN3WTF7HashMapINS1_6StringES3_NS1_10StringHashENS1_10HashTraitsIS3_EES6_EE +_ZN7WebCore10StorageMap20setItemIgnoringQuotaERKN3WTF6StringES4_ +_ZN7WebCore10StorageMap3keyEj +_ZN7WebCore10StorageMap4copyEv +_ZN7WebCore10StorageMap6createEj +_ZN7WebCore10StorageMap7setItemERKN3WTF6StringES4_RS2_Rb +_ZN7WebCore10StyleColor13isSystemColorENS_10CSSValueIDE +_ZN7WebCore10TimeRanges13intersectWithERKS0_ +_ZN7WebCore10TimeRanges3addEdd +_ZN7WebCore10TimeRanges6createEdd +_ZN7WebCore10TimeRanges6createEv +_ZN7WebCore10TimeRangesC1Edd +_ZN7WebCore10TimeRangesC1Ev +_ZN7WebCore10TimeRangesC2Edd +_ZN7WebCore10TimeRangesC2Ev +_ZN7WebCore10TreeWalker10firstChildEv +_ZN7WebCore10TreeWalker10parentNodeEv +_ZN7WebCore10TreeWalker11nextSiblingEv +_ZN7WebCore10TreeWalker12previousNodeEv +_ZN7WebCore10TreeWalker14setCurrentNodeERNS_4NodeE +_ZN7WebCore10TreeWalker15previousSiblingEv +_ZN7WebCore10TreeWalker8nextNodeEv +_ZN7WebCore10TreeWalker9lastChildEv +_ZN7WebCore10WheelEvent20initWebKitWheelEventEiiON3WTF6RefPtrINS_11WindowProxyENS1_13DumbPtrTraitsIS3_EEEEiiiibbbb +_ZN7WebCore10XLinkNames11actuateAttrE +_ZN7WebCore10XLinkNames11arcroleAttrE +_ZN7WebCore10XLinkNames17xlinkNamespaceURIE +_ZN7WebCore10XLinkNames4initEv +_ZN7WebCore10XLinkNames8hrefAttrE +_ZN7WebCore10XLinkNames8roleAttrE +_ZN7WebCore10XLinkNames8showAttrE +_ZN7WebCore10XLinkNames8typeAttrE +_ZN7WebCore10XLinkNames9titleAttrE +_ZN7WebCore10XMLNSNames17xmlnsNamespaceURIE +_ZN7WebCore10XMLNSNames4initEv +_ZN7WebCore10XMLNSNames9xmlnsAttrE +_ZN7WebCore10handCursorEv +_ZN7WebCore10inSameLineERKNS_15VisiblePositionES2_ +_ZN7WebCore10parseRangeERKN3WTF6StringERxS4_S4_ +_ZN7WebCore10protocolIsERKN3WTF6StringEPKc +_ZN7WebCore10resolveDNSERKN3WTF6StringEmONS0_17CompletionHandlerIFvONSt12experimental15fundamentals_v38expectedINS0_6VectorINS_9IPAddressELm0ENS0_15CrashOnOverflowELm16EEENS_8DNSErrorEEEEEE +_ZN7WebCore10resolveDNSERKN3WTF6StringEmONS0_17CompletionHandlerIFvONSt12experimental15fundamentals_v38expectedINS0_6VectorINS_9IPAddressELm0ENS0_15CrashOnOverflowELm16ENS0_10FastMallocEEENS_8DNSErrorEEEEEE +_ZN7WebCore10setCookiesERNS_8DocumentERKNS_3URLERKN3WTF6StringE +_ZN7WebCore11BidiContext41copyStackRemovingUnicodeEmbeddingContextsEv +_ZN7WebCore11BidiContext6createEh14UCharDirectionbNS_19BidiEmbeddingSourceEPS0_ +_ZN7WebCore11BitmapImage11nativeImageEPKNS_15GraphicsContextE +_ZN7WebCore11BitmapImageC1EON3WTF6RefPtrI14_cairo_surfaceNS1_13DumbPtrTraitsIS3_EEEEPNS_13ImageObserverE +_ZN7WebCore11BitmapImageC1EPNS_13ImageObserverE +_ZN7WebCore11BitmapImageC2EON3WTF6RefPtrI14_cairo_surfaceNS1_13DumbPtrTraitsIS3_EEEEPNS_13ImageObserverE +_ZN7WebCore11BitmapImageC2EPNS_13ImageObserverE +_ZN7WebCore11CSSPageRule15setSelectorTextERKN3WTF6StringE +_ZN7WebCore11CSSPageRule5styleEv +_ZN7WebCore11CachedFrame21setHasInsecureContentENS_18HasInsecureContentE +_ZN7WebCore11CachedFrame23cachedFramePlatformDataEv +_ZN7WebCore11CachedFrame26setCachedFramePlatformDataESt10unique_ptrINS_23CachedFramePlatformDataESt14default_deleteIS2_EE +_ZN7WebCore11CachedImage16imageForRendererEPKNS_12RenderObjectE +_ZN7WebCore11CachedImage5imageEv +_ZN7WebCore11ContentType15codecsParameterEv +_ZN7WebCore11ContentTypeC1EON3WTF6StringE +_ZN7WebCore11ContentTypeC1ERKN3WTF6StringE +_ZN7WebCore11ContentTypeC2EON3WTF6StringE +_ZN7WebCore11ContentTypeC2ERKN3WTF6StringE +_ZN7WebCore11CryptoKeyEC12generatePairENS_25CryptoAlgorithmIdentifierERKN3WTF6StringEbi +_ZN7WebCore11CryptoKeyEC9importRawENS_25CryptoAlgorithmIdentifierERKN3WTF6StringEONS2_6VectorIhLm0ENS2_15CrashOnOverflowELm16ENS2_10FastMallocEEEbi +_ZN7WebCore11DOMRectListC1ERKN3WTF6VectorINS_9FloatQuadELm0ENS1_15CrashOnOverflowELm16EEE +_ZN7WebCore11DOMRectListC1ERKN3WTF6VectorINS_9FloatQuadELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN7WebCore11DOMRectListC1ERKN3WTF6VectorINS_9FloatRectELm0ENS1_15CrashOnOverflowELm16EEE +_ZN7WebCore11DOMRectListC1ERKN3WTF6VectorINS_9FloatRectELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN7WebCore11DOMRectListC2ERKN3WTF6VectorINS_9FloatQuadELm0ENS1_15CrashOnOverflowELm16EEE +_ZN7WebCore11DOMRectListC2ERKN3WTF6VectorINS_9FloatQuadELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN7WebCore11DOMRectListC2ERKN3WTF6VectorINS_9FloatRectELm0ENS1_15CrashOnOverflowELm16EEE +_ZN7WebCore11DOMRectListC2ERKN3WTF6VectorINS_9FloatRectELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN7WebCore11DOMRectListD1Ev +_ZN7WebCore11DOMRectListD2Ev +_ZN7WebCore11DisplayList10DrawGlyphsC1ERKNS_4FontEON3WTF6VectorItLm128ENS5_15CrashOnOverflowELm16ENS5_10FastMallocEEEONS6_INS_9FloatSizeELm128ES7_Lm16ES8_EERKNS_10FloatPointERKSB_NS_17FontSmoothingModeE +_ZN7WebCore11DisplayList10DrawGlyphsC2ERKNS_4FontEON3WTF6VectorItLm128ENS5_15CrashOnOverflowELm16ENS5_10FastMallocEEEONS6_INS_9FloatSizeELm128ES7_Lm16ES8_EERKNS_10FloatPointERKSB_NS_17FontSmoothingModeE +_ZN7WebCore11DisplayList10DrawGlyphsD0Ev +_ZN7WebCore11DisplayList10DrawGlyphsD1Ev +_ZN7WebCore11DisplayList10DrawGlyphsD2Ev +_ZN7WebCore11DisplayList10SetLineCapC1ENS_7LineCapE +_ZN7WebCore11DisplayList10SetLineCapC2ENS_7LineCapE +_ZN7WebCore11DisplayList10SetLineCapD0Ev +_ZN7WebCore11DisplayList10SetLineCapD1Ev +_ZN7WebCore11DisplayList10SetLineCapD2Ev +_ZN7WebCore11DisplayList10StrokePathC1ERKNS_4PathE +_ZN7WebCore11DisplayList10StrokePathC2ERKNS_4PathE +_ZN7WebCore11DisplayList10StrokePathD0Ev +_ZN7WebCore11DisplayList10StrokePathD1Ev +_ZN7WebCore11DisplayList10StrokePathD2Ev +_ZN7WebCore11DisplayList10StrokeRectC1ERKNS_9FloatRectEf +_ZN7WebCore11DisplayList10StrokeRectC2ERKNS_9FloatRectEf +_ZN7WebCore11DisplayList10StrokeRectD0Ev +_ZN7WebCore11DisplayList10StrokeRectD1Ev +_ZN7WebCore11DisplayList10StrokeRectD2Ev +_ZN7WebCore11DisplayList11ClearShadowC1Ev +_ZN7WebCore11DisplayList11ClearShadowC2Ev +_ZN7WebCore11DisplayList11ClearShadowD0Ev +_ZN7WebCore11DisplayList11ClearShadowD1Ev +_ZN7WebCore11DisplayList11ClearShadowD2Ev +_ZN7WebCore11DisplayList11DisplayList5clearEv +_ZN7WebCore11DisplayList11DrawEllipseC1ERKNS_9FloatRectE +_ZN7WebCore11DisplayList11DrawEllipseC2ERKNS_9FloatRectE +_ZN7WebCore11DisplayList11DrawEllipseD0Ev +_ZN7WebCore11DisplayList11DrawEllipseD1Ev +_ZN7WebCore11DisplayList11DrawEllipseD2Ev +_ZN7WebCore11DisplayList11DrawPatternC1ERNS_5ImageERKNS_9FloatRectES6_RKNS_15AffineTransformERKNS_10FloatPointERKNS_9FloatSizeERKNS_20ImagePaintingOptionsE +_ZN7WebCore11DisplayList11DrawPatternC2ERNS_5ImageERKNS_9FloatRectES6_RKNS_15AffineTransformERKNS_10FloatPointERKNS_9FloatSizeERKNS_20ImagePaintingOptionsE +_ZN7WebCore11DisplayList11DrawPatternD0Ev +_ZN7WebCore11DisplayList11DrawPatternD1Ev +_ZN7WebCore11DisplayList11DrawPatternD2Ev +_ZN7WebCore11DisplayList11DrawingItemC2ENS0_8ItemTypeE +_ZN7WebCore11DisplayList11DrawingItemD0Ev +_ZN7WebCore11DisplayList11DrawingItemD1Ev +_ZN7WebCore11DisplayList11DrawingItemD2Ev +_ZN7WebCore11DisplayList11FillEllipseC1ERKNS_9FloatRectE +_ZN7WebCore11DisplayList11FillEllipseC2ERKNS_9FloatRectE +_ZN7WebCore11DisplayList11FillEllipseD0Ev +_ZN7WebCore11DisplayList11FillEllipseD1Ev +_ZN7WebCore11DisplayList11FillEllipseD2Ev +_ZN7WebCore11DisplayList11SetLineDashC1ERKN3WTF6VectorIdLm0ENS2_15CrashOnOverflowELm16ENS2_10FastMallocEEEf +_ZN7WebCore11DisplayList11SetLineDashC2ERKN3WTF6VectorIdLm0ENS2_15CrashOnOverflowELm16ENS2_10FastMallocEEEf +_ZN7WebCore11DisplayList11SetLineDashD0Ev +_ZN7WebCore11DisplayList11SetLineDashD1Ev +_ZN7WebCore11DisplayList11SetLineDashD2Ev +_ZN7WebCore11DisplayList11SetLineJoinC1ENS_8LineJoinE +_ZN7WebCore11DisplayList11SetLineJoinC2ENS_8LineJoinE +_ZN7WebCore11DisplayList11SetLineJoinD0Ev +_ZN7WebCore11DisplayList11SetLineJoinD1Ev +_ZN7WebCore11DisplayList11SetLineJoinD2Ev +_ZN7WebCore11DisplayList12PutImageDataC1ENS_22AlphaPremultiplicationEON3WTF3RefINS_9ImageDataENS3_13DumbPtrTraitsIS5_EEEERKNS_7IntRectERKNS_8IntPointES2_ +_ZN7WebCore11DisplayList12PutImageDataC1ENS_22AlphaPremultiplicationERKNS_9ImageDataERKNS_7IntRectERKNS_8IntPointES2_ +_ZN7WebCore11DisplayList12PutImageDataC2ENS_22AlphaPremultiplicationEON3WTF3RefINS_9ImageDataENS3_13DumbPtrTraitsIS5_EEEERKNS_7IntRectERKNS_8IntPointES2_ +_ZN7WebCore11DisplayList12PutImageDataC2ENS_22AlphaPremultiplicationERKNS_9ImageDataERKNS_7IntRectERKNS_8IntPointES2_ +_ZN7WebCore11DisplayList12PutImageDataD0Ev +_ZN7WebCore11DisplayList12PutImageDataD1Ev +_ZN7WebCore11DisplayList12PutImageDataD2Ev +_ZN7WebCore11DisplayList13ClipOutToPathC1ERKNS_4PathE +_ZN7WebCore11DisplayList13ClipOutToPathC2ERKNS_4PathE +_ZN7WebCore11DisplayList13ClipOutToPathD0Ev +_ZN7WebCore11DisplayList13ClipOutToPathD1Ev +_ZN7WebCore11DisplayList13ClipOutToPathD2Ev +_ZN7WebCore11DisplayList13SetMiterLimitC1Ef +_ZN7WebCore11DisplayList13SetMiterLimitC2Ef +_ZN7WebCore11DisplayList13SetMiterLimitD0Ev +_ZN7WebCore11DisplayList13SetMiterLimitD1Ev +_ZN7WebCore11DisplayList13SetMiterLimitD2Ev +_ZN7WebCore11DisplayList13StrokeEllipseC1ERKNS_9FloatRectE +_ZN7WebCore11DisplayList13StrokeEllipseC2ERKNS_9FloatRectE +_ZN7WebCore11DisplayList13StrokeEllipseD0Ev +_ZN7WebCore11DisplayList13StrokeEllipseD1Ev +_ZN7WebCore11DisplayList13StrokeEllipseD2Ev +_ZN7WebCore11DisplayList14ConcatenateCTMC1ERKNS_15AffineTransformE +_ZN7WebCore11DisplayList14ConcatenateCTMC2ERKNS_15AffineTransformE +_ZN7WebCore11DisplayList14ConcatenateCTMD0Ev +_ZN7WebCore11DisplayList14ConcatenateCTMD1Ev +_ZN7WebCore11DisplayList14ConcatenateCTMD2Ev +_ZN7WebCore11DisplayList14DrawTiledImageC1ERNS_5ImageERKNS_9FloatRectERKNS_10FloatPointERKNS_9FloatSizeESC_RKNS_20ImagePaintingOptionsE +_ZN7WebCore11DisplayList14DrawTiledImageC2ERNS_5ImageERKNS_9FloatRectERKNS_10FloatPointERKNS_9FloatSizeESC_RKNS_20ImagePaintingOptionsE +_ZN7WebCore11DisplayList14DrawTiledImageD0Ev +_ZN7WebCore11DisplayList14DrawTiledImageD1Ev +_ZN7WebCore11DisplayList14DrawTiledImageD2Ev +_ZN7WebCore11DisplayList14DrawingContext17replayDisplayListERNS_15GraphicsContextE +_ZN7WebCore11DisplayList14DrawingContext26setTracksDisplayListReplayEb +_ZN7WebCore11DisplayList14DrawingContext8recorderEv +_ZN7WebCore11DisplayList14DrawingContextC1ERKNS_9FloatSizeEPNS0_8Recorder8ObserverE +_ZN7WebCore11DisplayList14DrawingContextC2ERKNS_9FloatSizeEPNS0_8Recorder8ObserverE +_ZN7WebCore11DisplayList15DrawNativeImageC1ERKN3WTF6RefPtrI14_cairo_surfaceNS2_13DumbPtrTraitsIS4_EEEERKNS_9FloatSizeERKNS_9FloatRectESF_RKNS_20ImagePaintingOptionsE +_ZN7WebCore11DisplayList15DrawNativeImageC2ERKN3WTF6RefPtrI14_cairo_surfaceNS2_13DumbPtrTraitsIS4_EEEERKNS_9FloatSizeERKNS_9FloatRectESF_RKNS_20ImagePaintingOptionsE +_ZN7WebCore11DisplayList15DrawNativeImageD0Ev +_ZN7WebCore11DisplayList15DrawNativeImageD1Ev +_ZN7WebCore11DisplayList15DrawNativeImageD2Ev +_ZN7WebCore11DisplayList15FillRoundedRectC1ERKNS_16FloatRoundedRectERKNS_5ColorENS_9BlendModeE +_ZN7WebCore11DisplayList15FillRoundedRectC2ERKNS_16FloatRoundedRectERKNS_5ColorENS_9BlendModeE +_ZN7WebCore11DisplayList15FillRoundedRectD0Ev +_ZN7WebCore11DisplayList15FillRoundedRectD1Ev +_ZN7WebCore11DisplayList15FillRoundedRectD2Ev +_ZN7WebCore11DisplayList16DrawLinesForTextC1ERKNS_10FloatPointERKNS_9FloatSizeEfRKN3WTF6VectorIdLm0ENS8_15CrashOnOverflowELm16ENS8_10FastMallocEEEbb +_ZN7WebCore11DisplayList16DrawLinesForTextC2ERKNS_10FloatPointERKNS_9FloatSizeEfRKN3WTF6VectorIdLm0ENS8_15CrashOnOverflowELm16ENS8_10FastMallocEEEbb +_ZN7WebCore11DisplayList16DrawLinesForTextD0Ev +_ZN7WebCore11DisplayList16DrawLinesForTextD1Ev +_ZN7WebCore11DisplayList16DrawLinesForTextD2Ev +_ZN7WebCore11DisplayList17DrawFocusRingPathC1ERKNS_4PathEffRKNS_5ColorE +_ZN7WebCore11DisplayList17DrawFocusRingPathC2ERKNS_4PathEffRKNS_5ColorE +_ZN7WebCore11DisplayList17DrawFocusRingPathD0Ev +_ZN7WebCore11DisplayList17DrawFocusRingPathD1Ev +_ZN7WebCore11DisplayList17DrawFocusRingPathD2Ev +_ZN7WebCore11DisplayList17FillRectWithColorC1ERKNS_9FloatRectERKNS_5ColorE +_ZN7WebCore11DisplayList17FillRectWithColorC2ERKNS_9FloatRectERKNS_5ColorE +_ZN7WebCore11DisplayList17FillRectWithColorD0Ev +_ZN7WebCore11DisplayList17FillRectWithColorD1Ev +_ZN7WebCore11DisplayList17FillRectWithColorD2Ev +_ZN7WebCore11DisplayList18DrawFocusRingRectsC1ERKN3WTF6VectorINS_9FloatRectELm0ENS2_15CrashOnOverflowELm16ENS2_10FastMallocEEEffRKNS_5ColorE +_ZN7WebCore11DisplayList18DrawFocusRingRectsC2ERKN3WTF6VectorINS_9FloatRectELm0ENS2_15CrashOnOverflowELm16ENS2_10FastMallocEEEffRKNS_5ColorE +_ZN7WebCore11DisplayList18DrawFocusRingRectsD0Ev +_ZN7WebCore11DisplayList18DrawFocusRingRectsD1Ev +_ZN7WebCore11DisplayList18DrawFocusRingRectsD2Ev +_ZN7WebCore11DisplayList18FillCompositedRectC1ERKNS_9FloatRectERKNS_5ColorENS_17CompositeOperatorENS_9BlendModeE +_ZN7WebCore11DisplayList18FillCompositedRectC2ERKNS_9FloatRectERKNS_5ColorENS_17CompositeOperatorENS_9BlendModeE +_ZN7WebCore11DisplayList18FillCompositedRectD0Ev +_ZN7WebCore11DisplayList18FillCompositedRectD1Ev +_ZN7WebCore11DisplayList18FillCompositedRectD2Ev +_ZN7WebCore11DisplayList20DrawTiledScaledImageC1ERNS_5ImageERKNS_9FloatRectES6_RKNS_9FloatSizeENS2_8TileRuleESA_RKNS_20ImagePaintingOptionsE +_ZN7WebCore11DisplayList20DrawTiledScaledImageC2ERNS_5ImageERKNS_9FloatRectES6_RKNS_9FloatSizeENS2_8TileRuleESA_RKNS_20ImagePaintingOptionsE +_ZN7WebCore11DisplayList20DrawTiledScaledImageD0Ev +_ZN7WebCore11DisplayList20DrawTiledScaledImageD1Ev +_ZN7WebCore11DisplayList20DrawTiledScaledImageD2Ev +_ZN7WebCore11DisplayList20EndTransparencyLayerC1Ev +_ZN7WebCore11DisplayList20EndTransparencyLayerC2Ev +_ZN7WebCore11DisplayList20EndTransparencyLayerD0Ev +_ZN7WebCore11DisplayList20EndTransparencyLayerD1Ev +_ZN7WebCore11DisplayList20EndTransparencyLayerD2Ev +_ZN7WebCore11DisplayList20FillRectWithGradientC1ERKNS_9FloatRectERNS_8GradientE +_ZN7WebCore11DisplayList20FillRectWithGradientC2ERKNS_9FloatRectERNS_8GradientE +_ZN7WebCore11DisplayList20FillRectWithGradientD0Ev +_ZN7WebCore11DisplayList20FillRectWithGradientD1Ev +_ZN7WebCore11DisplayList20FillRectWithGradientD2Ev +_ZN7WebCore11DisplayList22ApplyDeviceScaleFactorC1Ef +_ZN7WebCore11DisplayList22ApplyDeviceScaleFactorC2Ef +_ZN7WebCore11DisplayList22ApplyDeviceScaleFactorD0Ev +_ZN7WebCore11DisplayList22ApplyDeviceScaleFactorD1Ev +_ZN7WebCore11DisplayList22ApplyDeviceScaleFactorD2Ev +_ZN7WebCore11DisplayList22BeginTransparencyLayerC1Ef +_ZN7WebCore11DisplayList22BeginTransparencyLayerC2Ef +_ZN7WebCore11DisplayList22BeginTransparencyLayerD0Ev +_ZN7WebCore11DisplayList22BeginTransparencyLayerD1Ev +_ZN7WebCore11DisplayList22BeginTransparencyLayerD2Ev +_ZN7WebCore11DisplayList23FillRectWithRoundedHoleC1ERKNS_9FloatRectERKNS_16FloatRoundedRectERKNS_5ColorE +_ZN7WebCore11DisplayList23FillRectWithRoundedHoleC2ERKNS_9FloatRectERKNS_16FloatRoundedRectERKNS_5ColorE +_ZN7WebCore11DisplayList23FillRectWithRoundedHoleD0Ev +_ZN7WebCore11DisplayList23FillRectWithRoundedHoleD1Ev +_ZN7WebCore11DisplayList23FillRectWithRoundedHoleD2Ev +_ZN7WebCore11DisplayList25DrawDotsForDocumentMarkerC1ERKNS_9FloatRectENS_23DocumentMarkerLineStyleE +_ZN7WebCore11DisplayList25DrawDotsForDocumentMarkerC2ERKNS_9FloatRectENS_23DocumentMarkerLineStyleE +_ZN7WebCore11DisplayList25DrawDotsForDocumentMarkerD0Ev +_ZN7WebCore11DisplayList25DrawDotsForDocumentMarkerD1Ev +_ZN7WebCore11DisplayList25DrawDotsForDocumentMarkerD2Ev +_ZN7WebCore11DisplayList4ClipC1ERKNS_9FloatRectE +_ZN7WebCore11DisplayList4ClipC2ERKNS_9FloatRectE +_ZN7WebCore11DisplayList4ClipD0Ev +_ZN7WebCore11DisplayList4ClipD1Ev +_ZN7WebCore11DisplayList4ClipD2Ev +_ZN7WebCore11DisplayList4ItemC2ENS0_8ItemTypeE +_ZN7WebCore11DisplayList4ItemD0Ev +_ZN7WebCore11DisplayList4ItemD1Ev +_ZN7WebCore11DisplayList4ItemD2Ev +_ZN7WebCore11DisplayList4SaveC1Ev +_ZN7WebCore11DisplayList4SaveC2Ev +_ZN7WebCore11DisplayList4SaveD0Ev +_ZN7WebCore11DisplayList4SaveD1Ev +_ZN7WebCore11DisplayList4SaveD2Ev +_ZN7WebCore11DisplayList5ScaleC1ERKNS_9FloatSizeE +_ZN7WebCore11DisplayList5ScaleC2ERKNS_9FloatSizeE +_ZN7WebCore11DisplayList5ScaleD0Ev +_ZN7WebCore11DisplayList5ScaleD1Ev +_ZN7WebCore11DisplayList5ScaleD2Ev +_ZN7WebCore11DisplayList6RotateC1Ef +_ZN7WebCore11DisplayList6RotateC2Ef +_ZN7WebCore11DisplayList6RotateD0Ev +_ZN7WebCore11DisplayList6RotateD1Ev +_ZN7WebCore11DisplayList6RotateD2Ev +_ZN7WebCore11DisplayList6SetCTMC1ERKNS_15AffineTransformE +_ZN7WebCore11DisplayList6SetCTMC2ERKNS_15AffineTransformE +_ZN7WebCore11DisplayList6SetCTMD0Ev +_ZN7WebCore11DisplayList6SetCTMD1Ev +_ZN7WebCore11DisplayList6SetCTMD2Ev +_ZN7WebCore11DisplayList7ClipOutC1ERKNS_9FloatRectE +_ZN7WebCore11DisplayList7ClipOutC2ERKNS_9FloatRectE +_ZN7WebCore11DisplayList7ClipOutD0Ev +_ZN7WebCore11DisplayList7ClipOutD1Ev +_ZN7WebCore11DisplayList7ClipOutD2Ev +_ZN7WebCore11DisplayList7RestoreC1Ev +_ZN7WebCore11DisplayList7RestoreC2Ev +_ZN7WebCore11DisplayList7RestoreD0Ev +_ZN7WebCore11DisplayList7RestoreD1Ev +_ZN7WebCore11DisplayList7RestoreD2Ev +_ZN7WebCore11DisplayList8ClipPathC1ERKNS_4PathENS_8WindRuleE +_ZN7WebCore11DisplayList8ClipPathC2ERKNS_4PathENS_8WindRuleE +_ZN7WebCore11DisplayList8ClipPathD0Ev +_ZN7WebCore11DisplayList8ClipPathD1Ev +_ZN7WebCore11DisplayList8ClipPathD2Ev +_ZN7WebCore11DisplayList8DrawLineC1ERKNS_10FloatPointES4_ +_ZN7WebCore11DisplayList8DrawLineC2ERKNS_10FloatPointES4_ +_ZN7WebCore11DisplayList8DrawLineD0Ev +_ZN7WebCore11DisplayList8DrawLineD1Ev +_ZN7WebCore11DisplayList8DrawLineD2Ev +_ZN7WebCore11DisplayList8DrawPathC1ERKNS_4PathE +_ZN7WebCore11DisplayList8DrawPathC2ERKNS_4PathE +_ZN7WebCore11DisplayList8DrawPathD0Ev +_ZN7WebCore11DisplayList8DrawPathD1Ev +_ZN7WebCore11DisplayList8DrawPathD2Ev +_ZN7WebCore11DisplayList8DrawRectC1ERKNS_9FloatRectEf +_ZN7WebCore11DisplayList8DrawRectC2ERKNS_9FloatRectEf +_ZN7WebCore11DisplayList8DrawRectD0Ev +_ZN7WebCore11DisplayList8DrawRectD1Ev +_ZN7WebCore11DisplayList8DrawRectD2Ev +_ZN7WebCore11DisplayList8FillPathC1ERKNS_4PathE +_ZN7WebCore11DisplayList8FillPathC2ERKNS_4PathE +_ZN7WebCore11DisplayList8FillPathD0Ev +_ZN7WebCore11DisplayList8FillPathD1Ev +_ZN7WebCore11DisplayList8FillPathD2Ev +_ZN7WebCore11DisplayList8FillRectC1ERKNS_9FloatRectE +_ZN7WebCore11DisplayList8FillRectC2ERKNS_9FloatRectE +_ZN7WebCore11DisplayList8FillRectD0Ev +_ZN7WebCore11DisplayList8FillRectD1Ev +_ZN7WebCore11DisplayList8FillRectD2Ev +_ZN7WebCore11DisplayList8Recorder12putImageDataENS_22AlphaPremultiplicationERKNS_9ImageDataERKNS_7IntRectERKNS_8IntPointES2_ +_ZN7WebCore11DisplayList8RecorderC1ERNS_15GraphicsContextERNS0_11DisplayListERKNS_20GraphicsContextStateERKNS_9FloatRectERKNS_15AffineTransformEPNS1_8ObserverE +_ZN7WebCore11DisplayList8RecorderC2ERNS_15GraphicsContextERNS0_11DisplayListERKNS_20GraphicsContextStateERKNS_9FloatRectERKNS_15AffineTransformEPNS1_8ObserverE +_ZN7WebCore11DisplayList8RecorderD0Ev +_ZN7WebCore11DisplayList8RecorderD1Ev +_ZN7WebCore11DisplayList8RecorderD2Ev +_ZN7WebCore11DisplayList8Replayer6replayERKNS_9FloatRectEb +_ZN7WebCore11DisplayList8ReplayerC1ERNS_15GraphicsContextERKNS0_11DisplayListEPNS1_8DelegateE +_ZN7WebCore11DisplayList8ReplayerC2ERNS_15GraphicsContextERKNS0_11DisplayListEPNS1_8DelegateE +_ZN7WebCore11DisplayList8ReplayerD1Ev +_ZN7WebCore11DisplayList8ReplayerD2Ev +_ZN7WebCore11DisplayList8SetStateC1ERKNS_20GraphicsContextStateEN3WTF9OptionSetINS2_6ChangeEEE +_ZN7WebCore11DisplayList8SetStateC1ERKNS_26GraphicsContextStateChangeE +_ZN7WebCore11DisplayList8SetStateC2ERKNS_20GraphicsContextStateEN3WTF9OptionSetINS2_6ChangeEEE +_ZN7WebCore11DisplayList8SetStateC2ERKNS_26GraphicsContextStateChangeE +_ZN7WebCore11DisplayList8SetStateD0Ev +_ZN7WebCore11DisplayList8SetStateD1Ev +_ZN7WebCore11DisplayList8SetStateD2Ev +_ZN7WebCore11DisplayList9ClearRectC1ERKNS_9FloatRectE +_ZN7WebCore11DisplayList9ClearRectC2ERKNS_9FloatRectE +_ZN7WebCore11DisplayList9ClearRectD0Ev +_ZN7WebCore11DisplayList9ClearRectD1Ev +_ZN7WebCore11DisplayList9ClearRectD2Ev +_ZN7WebCore11DisplayList9DrawImageC1ERNS_5ImageERKNS_9FloatRectES6_RKNS_20ImagePaintingOptionsE +_ZN7WebCore11DisplayList9DrawImageC2ERNS_5ImageERKNS_9FloatRectES6_RKNS_20ImagePaintingOptionsE +_ZN7WebCore11DisplayList9DrawImageD0Ev +_ZN7WebCore11DisplayList9DrawImageD1Ev +_ZN7WebCore11DisplayList9DrawImageD2Ev +_ZN7WebCore11DisplayList9TranslateC1Eff +_ZN7WebCore11DisplayList9TranslateC2Eff +_ZN7WebCore11DisplayList9TranslateD0Ev +_ZN7WebCore11DisplayList9TranslateD1Ev +_ZN7WebCore11DisplayList9TranslateD2Ev +_ZN7WebCore11EditCommand18setEndingSelectionERKNS_16VisibleSelectionE +_ZN7WebCore11EventRegionC1Ev +_ZN7WebCore11EventRegionC2Ev +_ZN7WebCore11EventTarget16addEventListenerERKN3WTF10AtomStringEONS1_3RefINS_13EventListenerENS1_13DumbPtrTraitsIS6_EEEERKNS0_23AddEventListenerOptionsE +_ZN7WebCore11EventTarget24dispatchEventForBindingsERNS_5EventE +_ZN7WebCore11EventTarget27addEventListenerForBindingsERKN3WTF10AtomStringEONS1_6RefPtrINS_13EventListenerENS1_13DumbPtrTraitsIS6_EEEEONS1_7VariantIJNS0_23AddEventListenerOptionsEbEEE +_ZN7WebCore11EventTarget27addEventListenerForBindingsERKN3WTF12AtomicStringEONS1_6RefPtrINS_13EventListenerENS1_13DumbPtrTraitsIS6_EEEEONS1_7VariantIJNS0_23AddEventListenerOptionsEbEEE +_ZN7WebCore11EventTarget30removeEventListenerForBindingsERKN3WTF10AtomStringEONS1_6RefPtrINS_13EventListenerENS1_13DumbPtrTraitsIS6_EEEEONS1_7VariantIJNS0_15ListenerOptionsEbEEE +_ZN7WebCore11EventTarget30removeEventListenerForBindingsERKN3WTF12AtomicStringEONS1_6RefPtrINS_13EventListenerENS1_13DumbPtrTraitsIS6_EEEEONS1_7VariantIJNS0_15ListenerOptionsEbEEE +_ZN7WebCore11FetchLoaderD0Ev +_ZN7WebCore11FetchLoaderD1Ev +_ZN7WebCore11FetchLoaderD2Ev +_ZN7WebCore11FileChooser10chooseFileERKN3WTF6StringE +_ZN7WebCore11FileChooser11chooseFilesERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16EEE +_ZN7WebCore11FileChooser11chooseFilesERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEES8_ +_ZN7WebCore11FileChooserD1Ev +_ZN7WebCore11FileChooserD2Ev +_ZN7WebCore11FileMonitorC1ERKN3WTF6StringEONS1_3RefINS1_9WorkQueueENS1_13DumbPtrTraitsIS6_EEEEONS1_8FunctionIFvNS0_14FileChangeTypeEEEE +_ZN7WebCore11FileMonitorC2ERKN3WTF6StringEONS1_3RefINS1_9WorkQueueENS1_13DumbPtrTraitsIS6_EEEEONS1_8FunctionIFvNS0_14FileChangeTypeEEEE +_ZN7WebCore11FileMonitorD1Ev +_ZN7WebCore11FileMonitorD2Ev +_ZN7WebCore11FontCascade11setCodePathENS0_8CodePathE +_ZN7WebCore11FontCascade18shouldUseSmoothingEv +_ZN7WebCore11FontCascade21setShouldUseSmoothingEb +_ZN7WebCore11FontCascadeC1EONS_22FontCascadeDescriptionEff +_ZN7WebCore11FontCascadeC1ERKNS_16FontPlatformDataENS_17FontSmoothingModeE +_ZN7WebCore11FontCascadeC1Ev +_ZN7WebCore11FontCascadeC2EONS_22FontCascadeDescriptionEff +_ZN7WebCore11FontCascadeC2ERKNS_16FontPlatformDataENS_17FontSmoothingModeE +_ZN7WebCore11FontCascadeC2Ev +_ZN7WebCore11FontCascadeaSERKS0_ +_ZN7WebCore11FrameLoader11shouldCloseEv +_ZN7WebCore11FrameLoader14detachChildrenEv +_ZN7WebCore11FrameLoader14stopAllLoadersENS_26ClearProvisionalItemPolicyE +_ZN7WebCore11FrameLoader14stopAllLoadersENS_26ClearProvisionalItemPolicyENS_17StopLoadingPolicyE +_ZN7WebCore11FrameLoader16detachFromParentEv +_ZN7WebCore11FrameLoader16loadFrameRequestEONS_16FrameLoadRequestEPNS_5EventEON3WTF6RefPtrINS_9FormStateENS5_13DumbPtrTraitsIS7_EEEE +_ZN7WebCore11FrameLoader16loadFrameRequestEONS_16FrameLoadRequestEPNS_5EventEON3WTF6RefPtrINS_9FormStateENS5_13DumbPtrTraitsIS7_EEEEONS5_8OptionalINS_18AdClickAttributionEEE +_ZN7WebCore11FrameLoader17HistoryController14setCurrentItemERNS_11HistoryItemE +_ZN7WebCore11FrameLoader17HistoryController18replaceCurrentItemEPNS_11HistoryItemE +_ZN7WebCore11FrameLoader17HistoryController26saveDocumentAndScrollStateEv +_ZN7WebCore11FrameLoader17HistoryController33restoreScrollPositionAndViewStateEv +_ZN7WebCore11FrameLoader17HistoryController36saveScrollPositionAndViewStateToItemEPNS_11HistoryItemE +_ZN7WebCore11FrameLoader17arePluginsEnabledEv +_ZN7WebCore11FrameLoader17stopForUserCancelEb +_ZN7WebCore11FrameLoader21clearTestingOverridesEv +_ZN7WebCore11FrameLoader21loadURLIntoChildFrameERKNS_3URLERKN3WTF6StringEPNS_5FrameE +_ZN7WebCore11FrameLoader22findFrameForNavigationERKN3WTF10AtomStringEPNS_8DocumentE +_ZN7WebCore11FrameLoader22findFrameForNavigationERKN3WTF12AtomicStringEPNS_8DocumentE +_ZN7WebCore11FrameLoader25detachFromAllOpenedFramesEv +_ZN7WebCore11FrameLoader26reloadWithOverrideEncodingERKN3WTF6StringE +_ZN7WebCore11FrameLoader32setOriginalURLForDownloadRequestERNS_15ResourceRequestE +_ZN7WebCore11FrameLoader4initEv +_ZN7WebCore11FrameLoader4loadEONS_16FrameLoadRequestE +_ZN7WebCore11FrameLoader6openerEv +_ZN7WebCore11FrameLoader6reloadEN3WTF9OptionSetINS_12ReloadOptionEEE +_ZN7WebCore11FrameLoader9setOpenerEPNS_5FrameE +_ZN7WebCore11HTMLElement12setDraggableEb +_ZN7WebCore11HTMLElement12setInnerTextERKN3WTF6StringE +_ZN7WebCore11HTMLElement12setOuterTextERKN3WTF6StringE +_ZN7WebCore11HTMLElement12setTranslateEb +_ZN7WebCore11HTMLElement13setSpellcheckEb +_ZN7WebCore11HTMLElement18setContentEditableERKN3WTF6StringE +_ZN7WebCore11HTMLElement5clickEv +_ZN7WebCore11HTMLElement6setDirERKN3WTF10AtomStringE +_ZN7WebCore11HTMLElement6setDirERKN3WTF12AtomicStringE +_ZN7WebCore11HistoryItem11setFormDataEON3WTF6RefPtrINS_8FormDataENS1_13DumbPtrTraitsIS3_EEEE +_ZN7WebCore11HistoryItem11setReferrerERKN3WTF6StringE +_ZN7WebCore11HistoryItem12addChildItemEON3WTF3RefIS0_NS1_13DumbPtrTraitsIS0_EEEE +_ZN7WebCore11HistoryItem12setURLStringERKN3WTF6StringE +_ZN7WebCore11HistoryItem14setStateObjectEON3WTF6RefPtrINS_21SerializedScriptValueENS1_13DumbPtrTraitsIS3_EEEE +_ZN7WebCore11HistoryItem15setIsTargetItemEb +_ZN7WebCore11HistoryItem16setDocumentStateERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16EEE +_ZN7WebCore11HistoryItem16setDocumentStateERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN7WebCore11HistoryItem17setAlternateTitleERKN3WTF6StringE +_ZN7WebCore11HistoryItem17setScrollPositionERKNS_8IntPointE +_ZN7WebCore11HistoryItem18setFormContentTypeERKN3WTF6StringE +_ZN7WebCore11HistoryItem18setPageScaleFactorEf +_ZN7WebCore11HistoryItem19childItemWithTargetERKN3WTF6StringE +_ZN7WebCore11HistoryItem20setOriginalURLStringERKN3WTF6StringE +_ZN7WebCore11HistoryItem30setShouldRestoreScrollPositionEb +_ZN7WebCore11HistoryItem31setShouldOpenExternalURLsPolicyENS_28ShouldOpenExternalURLsPolicyE +_ZN7WebCore11HistoryItem8formDataEv +_ZN7WebCore11HistoryItem8setTitleERKN3WTF6StringE +_ZN7WebCore11HistoryItem9setTargetERKN3WTF6StringE +_ZN7WebCore11HistoryItemC1ERKN3WTF6StringES4_ +_ZN7WebCore11HistoryItemC1ERKN3WTF6StringES4_S4_ +_ZN7WebCore11HistoryItemC1ERKN3WTF6StringES4_S4_NS_25BackForwardItemIdentifierE +_ZN7WebCore11HistoryItemC1Ev +_ZN7WebCore11HistoryItemC2ERKN3WTF6StringES4_ +_ZN7WebCore11HistoryItemC2ERKN3WTF6StringES4_S4_ +_ZN7WebCore11HistoryItemC2ERKN3WTF6StringES4_S4_NS_25BackForwardItemIdentifierE +_ZN7WebCore11HistoryItemC2Ev +_ZN7WebCore11HistoryItemD1Ev +_ZN7WebCore11HistoryItemD2Ev +_ZN7WebCore11ImageBuffer13sinkIntoImageESt10unique_ptrIS0_St14default_deleteIS0_EENS_18PreserveResolutionE +_ZN7WebCore11ImageBuffer6createERKNS_9FloatSizeENS_13RenderingModeEfNS_10ColorSpaceEPKNS_10HostWindowE +_ZN7WebCore11ImageBuffer6createERKNS_9FloatSizeENS_16ShouldAccelerateENS_20ShouldUseDisplayListENS_16RenderingPurposeEfNS_10ColorSpaceEPKNS_10HostWindowE +_ZN7WebCore11ImageBufferC1ERKNS_9FloatSizeEfNS_10ColorSpaceENS_13RenderingModeEPKNS_10HostWindowERb +_ZN7WebCore11ImageBufferC2ERKNS_9FloatSizeEfNS_10ColorSpaceENS_13RenderingModeEPKNS_10HostWindowERb +_ZN7WebCore11ImageBufferD0Ev +_ZN7WebCore11ImageBufferD1Ev +_ZN7WebCore11ImageBufferD2Ev +_ZN7WebCore11ImageSource10frameCountEv +_ZN7WebCore11ImageSource20frameDurationAtIndexEm +_ZN7WebCore11ImageSource4sizeENS_16ImageOrientationE +_ZN7WebCore11ImageSource4sizeEv +_ZN7WebCore11JSDOMMatrix11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE +_ZN7WebCore11JSDOMMatrix14finishCreationERN3JSC2VME +_ZN7WebCore11JSDOMMatrix14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE +_ZN7WebCore11JSDOMMatrix15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore11JSDOMMatrix15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE +_ZN7WebCore11JSDOMMatrix15subspaceForImplERN3JSC2VME +_ZN7WebCore11JSDOMMatrix4infoEv +_ZN7WebCore11JSDOMMatrix6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_9DOMMatrixENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore11JSDOMMatrix6s_infoE +_ZN7WebCore11JSDOMMatrix9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore11JSDOMMatrixC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_9DOMMatrixENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore11JSDOMMatrixC1ERKS0_ +_ZN7WebCore11JSDOMMatrixC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_9DOMMatrixENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore11JSDOMMatrixC2ERKS0_ +_ZN7WebCore11JSDOMMatrixD1Ev +_ZN7WebCore11JSDOMMatrixD2Ev +_ZN7WebCore11JSDOMObjectC1EPN3JSC9StructureERNS1_14JSGlobalObjectE +_ZN7WebCore11JSDOMObjectC2EPN3JSC9StructureERNS1_14JSGlobalObjectE +_ZN7WebCore11JSDOMWindow10putByIndexEPN3JSC6JSCellEPNS1_14JSGlobalObjectEjNS1_7JSValueEb +_ZN7WebCore11JSDOMWindow10putByIndexEPN3JSC6JSCellEPNS1_9ExecStateEjNS1_7JSValueEb +_ZN7WebCore11JSDOMWindow11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE +_ZN7WebCore11JSDOMWindow12getPrototypeEPN3JSC8JSObjectEPNS1_14JSGlobalObjectE +_ZN7WebCore11JSDOMWindow12getPrototypeEPN3JSC8JSObjectEPNS1_9ExecStateE +_ZN7WebCore11JSDOMWindow12toStringNameEPKN3JSC8JSObjectEPNS1_9ExecStateE +_ZN7WebCore11JSDOMWindow13visitChildrenEPN3JSC6JSCellERNS1_11SlotVisitorE +_ZN7WebCore11JSDOMWindow14deletePropertyEPN3JSC6JSCellEPNS1_14JSGlobalObjectENS1_12PropertyNameERNS1_18DeletePropertySlotE +_ZN7WebCore11JSDOMWindow14deletePropertyEPN3JSC6JSCellEPNS1_9ExecStateENS1_12PropertyNameE +_ZN7WebCore11JSDOMWindow14finishCreationERN3JSC2VMEPNS_13JSWindowProxyE +_ZN7WebCore11JSDOMWindow14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE +_ZN7WebCore11JSDOMWindow14queueMicrotaskERN3JSC14JSGlobalObjectERNS1_9CallFrameE +_ZN7WebCore11JSDOMWindow15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE +_ZN7WebCore11JSDOMWindow15setOpenDatabaseERN3JSC14JSGlobalObjectENS1_7JSValueE +_ZN7WebCore11JSDOMWindow15showModalDialogERN3JSC14JSGlobalObjectERNS1_9CallFrameE +_ZN7WebCore11JSDOMWindow15showModalDialogERN3JSC9ExecStateE +_ZN7WebCore11JSDOMWindow15subspaceForImplERN3JSC2VME +_ZN7WebCore11JSDOMWindow17defineOwnPropertyEPN3JSC8JSObjectEPNS1_14JSGlobalObjectENS1_12PropertyNameERKNS1_18PropertyDescriptorEb +_ZN7WebCore11JSDOMWindow17defineOwnPropertyEPN3JSC8JSObjectEPNS1_9ExecStateENS1_12PropertyNameERKNS1_18PropertyDescriptorEb +_ZN7WebCore11JSDOMWindow17preventExtensionsEPN3JSC8JSObjectEPNS1_14JSGlobalObjectE +_ZN7WebCore11JSDOMWindow17preventExtensionsEPN3JSC8JSObjectEPNS1_9ExecStateE +_ZN7WebCore11JSDOMWindow18getOwnPropertySlotEPN3JSC8JSObjectEPNS1_14JSGlobalObjectENS1_12PropertyNameERNS1_12PropertySlotE +_ZN7WebCore11JSDOMWindow18getOwnPropertySlotEPN3JSC8JSObjectEPNS1_9ExecStateENS1_12PropertyNameERNS1_12PropertySlotE +_ZN7WebCore11JSDOMWindow19getOwnPropertyNamesEPN3JSC8JSObjectEPNS1_9ExecStateERNS1_17PropertyNameArrayENS1_15EnumerationModeE +_ZN7WebCore11JSDOMWindow21deletePropertyByIndexEPN3JSC6JSCellEPNS1_14JSGlobalObjectEj +_ZN7WebCore11JSDOMWindow21deletePropertyByIndexEPN3JSC6JSCellEPNS1_9ExecStateEj +_ZN7WebCore11JSDOMWindow22visitOutputConstraintsEPN3JSC6JSCellERNS1_11SlotVisitorE +_ZN7WebCore11JSDOMWindow23visitAdditionalChildrenERN3JSC11SlotVisitorE +_ZN7WebCore11JSDOMWindow25getOwnPropertySlotByIndexEPN3JSC8JSObjectEPNS1_14JSGlobalObjectEjRNS1_12PropertySlotE +_ZN7WebCore11JSDOMWindow25getOwnPropertySlotByIndexEPN3JSC8JSObjectEPNS1_9ExecStateEjRNS1_12PropertySlotE +_ZN7WebCore11JSDOMWindow3putEPN3JSC6JSCellEPNS1_14JSGlobalObjectENS1_12PropertyNameENS1_7JSValueERNS1_15PutPropertySlotE +_ZN7WebCore11JSDOMWindow3putEPN3JSC6JSCellEPNS1_9ExecStateENS1_12PropertyNameENS1_7JSValueERNS1_15PutPropertySlotE +_ZN7WebCore11JSDOMWindow4infoEv +_ZN7WebCore11JSDOMWindow6createERN3JSC2VMEPNS1_9StructureEON3WTF3RefINS_9DOMWindowENS6_13DumbPtrTraitsIS8_EEEEPNS_13JSWindowProxyE +_ZN7WebCore11JSDOMWindow6s_infoE +_ZN7WebCore11JSDOMWindow9setOpenerERN3JSC14JSGlobalObjectENS1_7JSValueE +_ZN7WebCore11JSDOMWindow9setOpenerERN3JSC9ExecStateENS1_7JSValueE +_ZN7WebCore11JSDOMWindow9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore11JSDOMWindowC1ERN3JSC2VMEPNS1_9StructureEON3WTF3RefINS_9DOMWindowENS6_13DumbPtrTraitsIS8_EEEEPNS_13JSWindowProxyE +_ZN7WebCore11JSDOMWindowC2ERN3JSC2VMEPNS1_9StructureEON3WTF3RefINS_9DOMWindowENS6_13DumbPtrTraitsIS8_EEEEPNS_13JSWindowProxyE +_ZN7WebCore11JSDOMWindowD1Ev +_ZN7WebCore11JSDOMWindowD2Ev +_ZN7WebCore11JSImageData11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE +_ZN7WebCore11JSImageData14finishCreationERN3JSC2VME +_ZN7WebCore11JSImageData14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE +_ZN7WebCore11JSImageData15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore11JSImageData15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE +_ZN7WebCore11JSImageData15subspaceForImplERN3JSC2VME +_ZN7WebCore11JSImageData4infoEv +_ZN7WebCore11JSImageData6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_9ImageDataENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore11JSImageData6s_infoE +_ZN7WebCore11JSImageData7destroyEPN3JSC6JSCellE +_ZN7WebCore11JSImageData9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore11JSImageData9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore11JSImageDataC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_9ImageDataENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore11JSImageDataC1ERKS0_ +_ZN7WebCore11JSImageDataC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_9ImageDataENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore11JSImageDataC2ERKS0_ +_ZN7WebCore11JSImageDataD1Ev +_ZN7WebCore11JSImageDataD2Ev +_ZN7WebCore11JSImageDataaSERKS0_ +_ZN7WebCore11JSMediaList9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore11JSTextTrack9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore11MathMLNames10accentAttrE +_ZN7WebCore11MathMLNames10heightAttrE +_ZN7WebCore11MathMLNames10lspaceAttrE +_ZN7WebCore11MathMLNames10mactionTagE +_ZN7WebCore11MathMLNames10mfencedTagE +_ZN7WebCore11MathMLNames10mpaddedTagE +_ZN7WebCore11MathMLNames10mscarryTagE +_ZN7WebCore11MathMLNames10msgroupTagE +_ZN7WebCore11MathMLNames10msubsupTagE +_ZN7WebCore11MathMLNames10rspaceAttrE +_ZN7WebCore11MathMLNames11alttextAttrE +_ZN7WebCore11MathMLNames11displayAttrE +_ZN7WebCore11MathMLNames11largeopAttrE +_ZN7WebCore11MathMLNames11maxsizeAttrE +_ZN7WebCore11MathMLNames11mencloseTagE +_ZN7WebCore11MathMLNames11minsizeAttrE +_ZN7WebCore11MathMLNames11mlongdivTagE +_ZN7WebCore11MathMLNames11mphantomTagE +_ZN7WebCore11MathMLNames11rowspanAttrE +_ZN7WebCore11MathMLNames11voffsetAttrE +_ZN7WebCore11MathMLNames12encodingAttrE +_ZN7WebCore11MathMLNames12fontsizeAttrE +_ZN7WebCore11MathMLNames12mathsizeAttrE +_ZN7WebCore11MathMLNames12mscarriesTagE +_ZN7WebCore11MathMLNames12notationAttrE +_ZN7WebCore11MathMLNames12numalignAttrE +_ZN7WebCore11MathMLNames12semanticsTagE +_ZN7WebCore11MathMLNames12stretchyAttrE +_ZN7WebCore11MathMLNames13annotationTagE +_ZN7WebCore11MathMLNames13fontstyleAttrE +_ZN7WebCore11MathMLNames13malignmarkTagE +_ZN7WebCore11MathMLNames13mathcolorAttrE +_ZN7WebCore11MathMLNames13mlabeledtrTagE +_ZN7WebCore11MathMLNames13munderoverTagE +_ZN7WebCore11MathMLNames13selectionAttrE +_ZN7WebCore11MathMLNames13separatorAttrE +_ZN7WebCore11MathMLNames13symmetricAttrE +_ZN7WebCore11MathMLNames14actiontypeAttrE +_ZN7WebCore11MathMLNames14backgroundAttrE +_ZN7WebCore11MathMLNames14columnspanAttrE +_ZN7WebCore11MathMLNames14denomalignAttrE +_ZN7WebCore11MathMLNames14fontfamilyAttrE +_ZN7WebCore11MathMLNames14fontweightAttrE +_ZN7WebCore11MathMLNames14maligngroupTagE +_ZN7WebCore11MathMLNames14mprescriptsTagE +_ZN7WebCore11MathMLNames14separatorsAttrE +_ZN7WebCore11MathMLNames15accentunderAttrE +_ZN7WebCore11MathMLNames15mathvariantAttrE +_ZN7WebCore11MathMLNames16displaystyleAttrE +_ZN7WebCore11MathMLNames16mmultiscriptsTagE +_ZN7WebCore11MathMLNames17annotation_xmlTagE +_ZN7WebCore11MathMLNames17definitionURLAttrE +_ZN7WebCore11MathMLNames17linethicknessAttrE +_ZN7WebCore11MathMLNames17movablelimitsAttrE +_ZN7WebCore11MathMLNames18mathbackgroundAttrE +_ZN7WebCore11MathMLNames18mathmlNamespaceURIE +_ZN7WebCore11MathMLNames18subscriptshiftAttrE +_ZN7WebCore11MathMLNames20superscriptshiftAttrE +_ZN7WebCore11MathMLNames4initEv +_ZN7WebCore11MathMLNames5miTagE +_ZN7WebCore11MathMLNames5mnTagE +_ZN7WebCore11MathMLNames5moTagE +_ZN7WebCore11MathMLNames5msTagE +_ZN7WebCore11MathMLNames6mtdTagE +_ZN7WebCore11MathMLNames6mtrTagE +_ZN7WebCore11MathMLNames7dirAttrE +_ZN7WebCore11MathMLNames7mathTagE +_ZN7WebCore11MathMLNames7mrowTagE +_ZN7WebCore11MathMLNames7msubTagE +_ZN7WebCore11MathMLNames7msupTagE +_ZN7WebCore11MathMLNames7noneTagE +_ZN7WebCore11MathMLNames7srcAttrE +_ZN7WebCore11MathMLNames8formAttrE +_ZN7WebCore11MathMLNames8hrefAttrE +_ZN7WebCore11MathMLNames8mfracTagE +_ZN7WebCore11MathMLNames8moverTagE +_ZN7WebCore11MathMLNames8mrootTagE +_ZN7WebCore11MathMLNames8msqrtTagE +_ZN7WebCore11MathMLNames8msrowTagE +_ZN7WebCore11MathMLNames8mtextTagE +_ZN7WebCore11MathMLNames8openAttrE +_ZN7WebCore11MathMLNames9closeAttrE +_ZN7WebCore11MathMLNames9colorAttrE +_ZN7WebCore11MathMLNames9depthAttrE +_ZN7WebCore11MathMLNames9fenceAttrE +_ZN7WebCore11MathMLNames9merrorTagE +_ZN7WebCore11MathMLNames9mglyphTagE +_ZN7WebCore11MathMLNames9mslineTagE +_ZN7WebCore11MathMLNames9mspaceTagE +_ZN7WebCore11MathMLNames9mstackTagE +_ZN7WebCore11MathMLNames9mstyleTagE +_ZN7WebCore11MathMLNames9mtableTagE +_ZN7WebCore11MathMLNames9munderTagE +_ZN7WebCore11MathMLNames9widthAttrE +_ZN7WebCore11MediaPlayer10cancelLoadEv +_ZN7WebCore11MediaPlayer10invalidateEv +_ZN7WebCore11MediaPlayer10readyStateEv +_ZN7WebCore11MediaPlayer10setPreloadENS_16MediaPlayerEnums7PreloadE +_ZN7WebCore11MediaPlayer10setVisibleEb +_ZN7WebCore11MediaPlayer11invalidTimeEv +_ZN7WebCore11MediaPlayer11isAvailableEv +_ZN7WebCore11MediaPlayer11mediaEngineENS_16MediaPlayerEnums21MediaEngineIdentifierE +_ZN7WebCore11MediaPlayer11muteChangedEb +_ZN7WebCore11MediaPlayer11naturalSizeEv +_ZN7WebCore11MediaPlayer11rateChangedEv +_ZN7WebCore11MediaPlayer11sizeChangedEv +_ZN7WebCore11MediaPlayer11timeChangedEv +_ZN7WebCore11MediaPlayer12addTextTrackERNS_22InbandTextTrackPrivateE +_ZN7WebCore11MediaPlayer12networkStateEv +_ZN7WebCore11MediaPlayer12supportsTypeERKNS_28MediaEngineSupportParametersE +_ZN7WebCore11MediaPlayer13addAudioTrackERNS_17AudioTrackPrivateE +_ZN7WebCore11MediaPlayer13addVideoTrackERNS_17VideoTrackPrivateE +_ZN7WebCore11MediaPlayer13prepareToPlayEv +_ZN7WebCore11MediaPlayer13tracksChangedEv +_ZN7WebCore11MediaPlayer13volumeChangedEd +_ZN7WebCore11MediaPlayer15clearMediaCacheERKN3WTF6StringENS1_8WallTimeE +_ZN7WebCore11MediaPlayer15durationChangedEv +_ZN7WebCore11MediaPlayer15maxTimeSeekableEv +_ZN7WebCore11MediaPlayer15minTimeSeekableEv +_ZN7WebCore11MediaPlayer15nextMediaEngineEPKNS_18MediaPlayerFactoryE +_ZN7WebCore11MediaPlayer15removeTextTrackERNS_22InbandTextTrackPrivateE +_ZN7WebCore11MediaPlayer16reloadTimerFiredEv +_ZN7WebCore11MediaPlayer16removeAudioTrackERNS_17AudioTrackPrivateE +_ZN7WebCore11MediaPlayer16removeVideoTrackERNS_17VideoTrackPrivateE +_ZN7WebCore11MediaPlayer17getSupportedTypesERN3WTF7HashSetINS1_6StringENS1_24ASCIICaseInsensitiveHashENS1_10HashTraitsIS3_EEEE +_ZN7WebCore11MediaPlayer17readyStateChangedEv +_ZN7WebCore11MediaPlayer17resetMediaEnginesEv +_ZN7WebCore11MediaPlayer17seekWithToleranceERKN3WTF9MediaTimeES4_S4_ +_ZN7WebCore11MediaPlayer17setPreservesPitchEb +_ZN7WebCore11MediaPlayer17supportsKeySystemERKN3WTF6StringES4_ +_ZN7WebCore11MediaPlayer18didLoadingProgressEv +_ZN7WebCore11MediaPlayer18liveUpdateIntervalEv +_ZN7WebCore11MediaPlayer18mediaEngineUpdatedEv +_ZN7WebCore11MediaPlayer18setBufferingPolicyENS_16MediaPlayerEnums15BufferingPolicyE +_ZN7WebCore11MediaPlayer19networkStateChangedEv +_ZN7WebCore11MediaPlayer19nextBestMediaEngineEPKNS_18MediaPlayerFactoryE +_ZN7WebCore11MediaPlayer19originsInMediaCacheERKN3WTF6StringE +_ZN7WebCore11MediaPlayer19prepareForRenderingEv +_ZN7WebCore11MediaPlayer19syncTextTrackBoundsEv +_ZN7WebCore11MediaPlayer20cachedResourceLoaderEv +_ZN7WebCore11MediaPlayer20createResourceLoaderEv +_ZN7WebCore11MediaPlayer20playbackStateChangedEv +_ZN7WebCore11MediaPlayer20resourceNotSupportedEv +_ZN7WebCore11MediaPlayer21characteristicChangedEv +_ZN7WebCore11MediaPlayer21endSimulatedHDCPErrorEv +_ZN7WebCore11MediaPlayer21setShouldDisableSleepEb +_ZN7WebCore11MediaPlayer22performTaskAtMediaTimeEON3WTF8FunctionIFvvEEERKNS1_9MediaTimeE +_ZN7WebCore11MediaPlayer22setPrivateBrowsingModeEb +_ZN7WebCore11MediaPlayer23beginSimulatedHDCPErrorEv +_ZN7WebCore11MediaPlayer23loadWithNextMediaEngineEPKNS_18MediaPlayerFactoryE +_ZN7WebCore11MediaPlayer24firstVideoFrameAvailableEv +_ZN7WebCore11MediaPlayer24remoteEngineFailedToLoadEv +_ZN7WebCore11MediaPlayer24setClosedCaptionsVisibleEb +_ZN7WebCore11MediaPlayer25bufferedTimeRangesChangedEv +_ZN7WebCore11MediaPlayer25clearMediaCacheForOriginsERKN3WTF6StringERKNS1_7HashSetINS1_6RefPtrINS_14SecurityOriginENS1_13DumbPtrTraitsIS7_EEEENS1_11DefaultHashISA_EENS1_10HashTraitsISA_EEEE +_ZN7WebCore11MediaPlayer25nativeImageForCurrentTimeEv +_ZN7WebCore11MediaPlayer25seekableTimeRangesChangedEv +_ZN7WebCore11MediaPlayer25shouldIgnoreIntrinsicSizeEv +_ZN7WebCore11MediaPlayer26activeSourceBuffersChangedEv +_ZN7WebCore11MediaPlayer26applicationDidBecomeActiveEv +_ZN7WebCore11MediaPlayer26paintCurrentFrameInContextERNS_15GraphicsContextERKNS_9FloatRectE +_ZN7WebCore11MediaPlayer26setTextTrackRepresentationEPNS_23TextTrackRepresentationE +_ZN7WebCore11MediaPlayer27applicationWillResignActiveEv +_ZN7WebCore11MediaPlayer27videoPlaybackQualityMetricsEv +_ZN7WebCore11MediaPlayer28setPreferredDynamicRangeModeENS_16DynamicRangeModeE +_ZN7WebCore11MediaPlayer28setShouldMaintainAspectRatioEb +_ZN7WebCore11MediaPlayer29acceleratedCompositingEnabledEv +_ZN7WebCore11MediaPlayer32acceleratedRenderingStateChangedEv +_ZN7WebCore11MediaPlayer33copyVideoTextureToPlatformTextureEPNS_23GraphicsContextGLOpenGLEjjijjjbb +_ZN7WebCore11MediaPlayer34seekableTimeRangesLastModifiedTimeEv +_ZN7WebCore11MediaPlayer4loadERKN3WTF3URLERKNS_11ContentTypeERKNS1_6StringE +_ZN7WebCore11MediaPlayer4playEv +_ZN7WebCore11MediaPlayer4seekERKN3WTF9MediaTimeE +_ZN7WebCore11MediaPlayer5paintERNS_15GraphicsContextERKNS_9FloatRectE +_ZN7WebCore11MediaPlayer5pauseEv +_ZN7WebCore11MediaPlayer6createERNS_17MediaPlayerClientE +_ZN7WebCore11MediaPlayer6createERNS_17MediaPlayerClientENS_16MediaPlayerEnums21MediaEngineIdentifierE +_ZN7WebCore11MediaPlayer7repaintEv +_ZN7WebCore11MediaPlayer7setRateEd +_ZN7WebCore11MediaPlayer7setSizeERKNS_7IntSizeE +_ZN7WebCore11MediaPlayer8bufferedEv +_ZN7WebCore11MediaPlayer8seekableEv +_ZN7WebCore11MediaPlayer8setMutedEb +_ZN7WebCore11MediaPlayer9setVolumeEd +_ZN7WebCore11MediaPlayerC1ERNS_17MediaPlayerClientE +_ZN7WebCore11MediaPlayerC1ERNS_17MediaPlayerClientENS_16MediaPlayerEnums21MediaEngineIdentifierE +_ZN7WebCore11MediaPlayerC2ERNS_17MediaPlayerClientE +_ZN7WebCore11MediaPlayerC2ERNS_17MediaPlayerClientENS_16MediaPlayerEnums21MediaEngineIdentifierE +_ZN7WebCore11MediaPlayerD0Ev +_ZN7WebCore11MediaPlayerD1Ev +_ZN7WebCore11MediaPlayerD2Ev +_ZN7WebCore11MediaPlayerdaEPv +_ZN7WebCore11MediaPlayerdlEPv +_ZN7WebCore11MediaPlayernaEm +_ZN7WebCore11MediaPlayernaEmPv +_ZN7WebCore11MediaPlayernwEm +_ZN7WebCore11MediaPlayernwEm10NotNullTagPv +_ZN7WebCore11MediaPlayernwEmPv +_ZN7WebCore11MediaSampleC2Ev +_ZN7WebCore11MediaSampleD0Ev +_ZN7WebCore11MediaSampleD1Ev +_ZN7WebCore11MediaSampleD2Ev +_ZN7WebCore11MemoryCache11setDisabledEb +_ZN7WebCore11MemoryCache13getStatisticsEv +_ZN7WebCore11MemoryCache13setCapacitiesEjjj +_ZN7WebCore11MemoryCache14evictResourcesEN3PAL9SessionIDE +_ZN7WebCore11MemoryCache14evictResourcesEv +_ZN7WebCore11MemoryCache15addImageToCacheEON3WTF6RefPtrI14_cairo_surfaceNS1_13DumbPtrTraitsIS3_EEEERKNS_3URLERKNS1_6StringE +_ZN7WebCore11MemoryCache18pruneDeadResourcesEv +_ZN7WebCore11MemoryCache18pruneLiveResourcesEb +_ZN7WebCore11MemoryCache18resourceForRequestERKNS_15ResourceRequestEN3PAL9SessionIDE +_ZN7WebCore11MemoryCache19getOriginsWithCacheERN3WTF7HashSetINS1_6RefPtrINS_14SecurityOriginENS1_13DumbPtrTraitsIS4_EEEENS1_11DefaultHashIS7_EENS1_10HashTraitsIS7_EEEE +_ZN7WebCore11MemoryCache19getOriginsWithCacheERN3WTF7HashSetINS1_6RefPtrINS_14SecurityOriginENS1_13DumbPtrTraitsIS4_EEEENS_18SecurityOriginHashENS1_10HashTraitsIS7_EEEE +_ZN7WebCore11MemoryCache20removeImageFromCacheERKNS_3URLERKN3WTF6StringE +_ZN7WebCore11MemoryCache24pruneDeadResourcesToSizeEj +_ZN7WebCore11MemoryCache24pruneLiveResourcesToSizeEjb +_ZN7WebCore11MemoryCache25removeResourcesWithOriginERNS_14SecurityOriginE +_ZN7WebCore11MemoryCache26removeResourcesWithOriginsEN3PAL9SessionIDERKN3WTF7HashSetINS3_6RefPtrINS_14SecurityOriginENS3_13DumbPtrTraitsIS6_EEEENS3_11DefaultHashIS9_EENS3_10HashTraitsIS9_EEEE +_ZN7WebCore11MemoryCache26removeResourcesWithOriginsEN3PAL9SessionIDERKN3WTF7HashSetINS3_6RefPtrINS_14SecurityOriginENS3_13DumbPtrTraitsIS6_EEEENS_18SecurityOriginHashENS3_10HashTraitsIS9_EEEE +_ZN7WebCore11MemoryCache30destroyDecodedDataForAllImagesEv +_ZN7WebCore11MemoryCache9singletonEv +_ZN7WebCore11MessagePort16messageAvailableEv +_ZN7WebCore11MessagePort22notifyMessageAvailableERKNS_21MessagePortIdentifierE +_ZN7WebCore11MessagePort37isExistingMessagePortLocallyReachableERKNS_21MessagePortIdentifierE +_ZN7WebCore11PageOverlay15setNeedsDisplayERKNS_7IntRectE +_ZN7WebCore11PageOverlay15setNeedsDisplayEv +_ZN7WebCore11PageOverlay20stopFadeOutAnimationEv +_ZN7WebCore11PageOverlay5clearEv +_ZN7WebCore11PageOverlay5layerEv +_ZN7WebCore11PageOverlay6createERNS0_6ClientENS0_11OverlayTypeE +_ZN7WebCore11PageOverlay8setFrameENS_7IntRectE +_ZN7WebCore11PageOverlayD0Ev +_ZN7WebCore11PageOverlayD1Ev +_ZN7WebCore11PageOverlayD2Ev +_ZN7WebCore11RemoteFrameC1EONS_21GlobalFrameIdentifierE +_ZN7WebCore11RemoteFrameC2EONS_21GlobalFrameIdentifierE +_ZN7WebCore11RenderLayer14scrollToOffsetERKNS_8IntPointENS_10ScrollTypeENS_14ScrollClampingE +_ZN7WebCore11RenderLayer14scrollToOffsetERKNS_8IntPointENS_14ScrollClampingE +_ZN7WebCore11RenderLayer21simulateFrequentPaintEv +_ZN7WebCore11RenderLayer27scrollToOffsetWithAnimationERKNS_8IntPointENS_10ScrollTypeENS_14ScrollClampingE +_ZN7WebCore11RenderStyleD1Ev +_ZN7WebCore11RenderStyleD2Ev +_ZN7WebCore11RenderTheme9singletonEv +_ZN7WebCore11RoundedRectC1ERKNS_10LayoutRectERKNS0_5RadiiE +_ZN7WebCore11RoundedRectC1ERKNS_10LayoutRectERKNS_10LayoutSizeES6_S6_S6_ +_ZN7WebCore11RoundedRectC2ERKNS_10LayoutRectERKNS0_5RadiiE +_ZN7WebCore11RoundedRectC2ERKNS_10LayoutRectERKNS_10LayoutSizeES6_S6_S6_ +_ZN7WebCore11SimpleRangeC1EONS_13BoundaryPointES2_ +_ZN7WebCore11SimpleRangeC1ERKNS_13BoundaryPointES3_ +_ZN7WebCore11SimpleRangeC2EONS_13BoundaryPointES2_ +_ZN7WebCore11SimpleRangeC2ERKNS_13BoundaryPointES3_ +_ZN7WebCore11WindowProxy12globalObjectERNS_15DOMWrapperWorldE +_ZN7WebCore11WindowProxy12setDOMWindowEPNS_17AbstractDOMWindowE +_ZN7WebCore11WindowProxy18setJSWindowProxiesEON3WTF7HashMapINS1_6RefPtrINS_15DOMWrapperWorldENS1_13DumbPtrTraitsIS4_EEEEN3JSC6StrongINS_13JSWindowProxyELNS8_30ShouldStrongDestructorGrabLockE0EEENS1_11DefaultHashIS7_EENS1_10HashTraitsIS7_EENSF_ISC_EEEE +_ZN7WebCore11WindowProxy22releaseJSWindowProxiesEv +_ZN7WebCore11WindowProxy40createJSWindowProxyWithInitializedScriptERNS_15DOMWrapperWorldE +_ZN7WebCore11WindowProxyD1Ev +_ZN7WebCore11WindowProxyD2Ev +_ZN7WebCore11XPathResult11iterateNextEv +_ZN7WebCore11XPathResult12snapshotItemEj +_ZN7WebCore11XPathResultD1Ev +_ZN7WebCore11XPathResultD2Ev +_ZN7WebCore11iBeamCursorEv +_ZN7WebCore11isEndOfLineERKNS_15VisiblePositionE +_ZN7WebCore11portAllowedERKNS_3URLE +_ZN7WebCore11prefetchDNSERKN3WTF6StringE +_ZN7WebCore11startOfLineERKNS_15VisiblePositionE +_ZN7WebCore11startOfWordERKNS_15VisiblePositionENS_9EWordSideE +_ZN7WebCore11toDisplayP3ERKNS_15LinearDisplayP3IfEE +_ZN7WebCore11toDisplayP3ERKNS_5SRGBAIfEE +_ZN7WebCore12BlobDataItem11toEndOfFileE +_ZN7WebCore12BlobRegistry16blobRegistryImplEv +_ZN7WebCore12BlobRegistryC2ERKS0_ +_ZN7WebCore12BlobRegistryC2Ev +_ZN7WebCore12BlobRegistryD0Ev +_ZN7WebCore12BlobRegistryD1Ev +_ZN7WebCore12BlobRegistryD2Ev +_ZN7WebCore12CSSStyleRule15setSelectorTextERKN3WTF6StringE +_ZN7WebCore12CSSStyleRule5styleEv +_ZN7WebCore12ChromeClient13isViewVisibleEv +_ZN7WebCore12ChromeClient14elementDidBlurERNS_7ElementE +_ZN7WebCore12ChromeClient15elementDidFocusERNS_7ElementE +_ZN7WebCore12ChromeClient16hasStorageAccessEON3WTF6StringES3_mmONS1_17CompletionHandlerIFvbEEE +_ZN7WebCore12ChromeClient17didAddFooterLayerERNS_13GraphicsLayerE +_ZN7WebCore12ChromeClient17didAddHeaderLayerERNS_13GraphicsLayerE +_ZN7WebCore12ChromeClient17elementDidRefocusERNS_7ElementE +_ZN7WebCore12ChromeClient19handleAutoplayEventENS_13AutoplayEventEN3WTF9OptionSetINS_18AutoplayEventFlagsEEE +_ZN7WebCore12ChromeClient20didInsertMenuElementERNS_15HTMLMenuElementE +_ZN7WebCore12ChromeClient20didRemoveMenuElementERNS_15HTMLMenuElementE +_ZN7WebCore12ChromeClient20eventThrottlingDelayEv +_ZN7WebCore12ChromeClient20reportProcessCPUTimeEN3WTF7SecondsENS_27ActivityStateForCPUSamplingE +_ZN7WebCore12ChromeClient20requestStorageAccessEON3WTF6StringES3_mmONS1_17CompletionHandlerIFvbEEE +_ZN7WebCore12ChromeClient22setRootFullScreenLayerEPNS_13GraphicsLayerE +_ZN7WebCore12ChromeClient23enableSuddenTerminationEv +_ZN7WebCore12ChromeClient23generateReplacementFileERKN3WTF6StringE +_ZN7WebCore12ChromeClient23isPlayingMediaDidChangeEjm +_ZN7WebCore12ChromeClient23supportsVideoFullscreenEj +_ZN7WebCore12ChromeClient24didAssociateFormControlsERKN3WTF6VectorINS1_6RefPtrINS_7ElementENS1_13DumbPtrTraitsIS4_EEEELm0ENS1_15CrashOnOverflowELm16EEE +_ZN7WebCore12ChromeClient24didInsertMenuItemElementERNS_19HTMLMenuItemElementE +_ZN7WebCore12ChromeClient24didRemoveMenuItemElementERNS_19HTMLMenuItemElementE +_ZN7WebCore12ChromeClient24disableSuddenTerminationEv +_ZN7WebCore12ChromeClient24exitFullScreenForElementEPNS_7ElementE +_ZN7WebCore12ChromeClient25enterFullScreenForElementERNS_7ElementE +_ZN7WebCore12ChromeClient25handleAutoFillButtonClickERNS_16HTMLInputElementE +_ZN7WebCore12ChromeClient25shouldNotifyOnFormChangesEv +_ZN7WebCore12ChromeClient26adjustLayerFlushThrottlingEj +_ZN7WebCore12ChromeClient27contentRuleListNotificationERKNS_3URLERKN3WTF7HashSetISt4pairINS4_6StringES7_ENS4_8PairHashIS7_S7_EENS4_10HashTraitsIS8_EEEE +_ZN7WebCore12ChromeClient28clearPlaybackControlsManagerEv +_ZN7WebCore12ChromeClient28setUpPlaybackControlsManagerERNS_16HTMLMediaElementE +_ZN7WebCore12ChromeClient28supportsFullScreenForElementERKNS_7ElementEb +_ZN7WebCore12ChromeClient29postAccessibilityNotificationERNS_19AccessibilityObjectENS_13AXObjectCache14AXNotificationE +_ZN7WebCore12ChromeClient29supportsImmediateInvalidationEv +_ZN7WebCore12ChromeClient30preferredScrollbarOverlayStyleEv +_ZN7WebCore12ChromeClient30supportsVideoFullscreenStandbyEv +_ZN7WebCore12ChromeClient31imageOrMediaDocumentSizeChangedERKNS_7IntSizeE +_ZN7WebCore12ChromeClient32didInvalidateDocumentMarkerRectsEv +_ZN7WebCore12ChromeClient34exitVideoFullscreenForVideoElementERNS_16HTMLVideoElementE +_ZN7WebCore12ChromeClient34notifyScrollerThumbIsVisibleInRectERKNS_7IntRectE +_ZN7WebCore12ChromeClient34recommendedScrollbarStyleDidChangeENS_14ScrollbarStyleE +_ZN7WebCore12ChromeClient34requiresFullscreenForVideoPlaybackEv +_ZN7WebCore12ChromeClient35enterVideoFullscreenForVideoElementERNS_16HTMLVideoElementEjb +_ZN7WebCore12ChromeClient39shouldReplaceWithGeneratedFileForUploadERKN3WTF6StringERS2_ +_ZN7WebCore12ChromeClient41exitVideoFullscreenToModeWithoutAnimationERNS_16HTMLVideoElementEj +_ZN7WebCore12ChromeClient45inputElementDidResignStrongPasswordAppearanceERNS_16HTMLInputElementE +_ZN7WebCore12ChromeClient50testIncomingSyncIPCMessageWhileWaitingForSyncReplyEv +_ZN7WebCore12ChromeClientC2ERKS0_ +_ZN7WebCore12ChromeClientC2Ev +_ZN7WebCore12ChromeClientD0Ev +_ZN7WebCore12ChromeClientD1Ev +_ZN7WebCore12ChromeClientD2Ev +_ZN7WebCore12CryptoKeyAES9importRawENS_25CryptoAlgorithmIdentifierEON3WTF6VectorIhLm0ENS2_15CrashOnOverflowELm16ENS2_10FastMallocEEEbi +_ZN7WebCore12DOMException11descriptionENS_13ExceptionCodeE +_ZN7WebCore12DOMTokenList6toggleERKN3WTF10AtomStringENS1_8OptionalIbEE +_ZN7WebCore12DOMTokenList6toggleERKN3WTF12AtomicStringESt8optionalIbE +_ZN7WebCore12DOMTokenList6tokensEv +_ZN7WebCore12DOMTokenList8setValueERKN3WTF6StringE +_ZN7WebCore12DataTransferD1Ev +_ZN7WebCore12DataTransferD2Ev +_ZN7WebCore12EditingStyle21styleAtSelectionStartERKNS_16VisibleSelectionEb +_ZN7WebCore12EditingStyle8hasStyleENS_13CSSPropertyIDERKN3WTF6StringE +_ZN7WebCore12EditingStyleC1EPKNS_19CSSStyleDeclarationE +_ZN7WebCore12EditingStyleC2EPKNS_19CSSStyleDeclarationE +_ZN7WebCore12EditingStyleD1Ev +_ZN7WebCore12EditingStyleD2Ev +_ZN7WebCore12EventHandler10mouseMovedERKNS_18PlatformMouseEventE +_ZN7WebCore12EventHandler12selectCursorERKNS_13HitTestResultEb +_ZN7WebCore12EventHandler14scrollOverflowENS_15ScrollDirectionENS_17ScrollGranularityEPNS_4NodeE +_ZN7WebCore12EventHandler15handleAccessKeyERKNS_21PlatformKeyboardEventE +_ZN7WebCore12EventHandler15sendScrollEventEv +_ZN7WebCore12EventHandler16handleWheelEventERKNS_18PlatformWheelEventE +_ZN7WebCore12EventHandler17scrollRecursivelyENS_15ScrollDirectionENS_17ScrollGranularityEPNS_4NodeE +_ZN7WebCore12EventHandler18accessKeyModifiersEv +_ZN7WebCore12EventHandler20sendContextMenuEventERKNS_18PlatformMouseEventE +_ZN7WebCore12EventHandler21handleMousePressEventERKNS_18PlatformMouseEventE +_ZN7WebCore12EventHandler21handleMousePressEventERKNS_28MouseEventWithHitTestResultsE +_ZN7WebCore12EventHandler23handleMouseReleaseEventERKNS_18PlatformMouseEventE +_ZN7WebCore12EventHandler23handleMouseReleaseEventERKNS_28MouseEventWithHitTestResultsE +_ZN7WebCore12EventHandler23setImmediateActionStageENS_20ImmediateActionStageE +_ZN7WebCore12EventHandler24logicalScrollRecursivelyENS_22ScrollLogicalDirectionENS_17ScrollGranularityEPNS_4NodeE +_ZN7WebCore12EventHandler26sendContextMenuEventForKeyEv +_ZN7WebCore12EventHandler30dispatchFakeMouseMoveEventSoonEv +_ZN7WebCore12EventHandler30setCapturingMouseEventsElementEPNS_7ElementE +_ZN7WebCore12EventHandler31passMouseMovedEventToScrollbarsERKNS_18PlatformMouseEventE +_ZN7WebCore12EventHandler40selectionExtentRespectingEditingBoundaryERKNS_16VisibleSelectionERKNS_11LayoutPointEPNS_4NodeE +_ZN7WebCore12EventHandler47handleKeyboardSelectionMovementForAccessibilityERNS_13KeyboardEventE +_ZN7WebCore12EventHandler8keyEventERKNS_21PlatformKeyboardEventE +_ZN7WebCore12GCController13deleteAllCodeEN3JSC19DeleteAllCodeEffortE +_ZN7WebCore12GCController17garbageCollectNowEv +_ZN7WebCore12GCController18garbageCollectSoonEv +_ZN7WebCore12GCController19deleteAllLinkedCodeEN3JSC19DeleteAllCodeEffortE +_ZN7WebCore12GCController34garbageCollectNowIfNotDoneRecentlyEv +_ZN7WebCore12GCController41setJavaScriptGarbageCollectorTimerEnabledEb +_ZN7WebCore12GCController43garbageCollectOnAlternateThreadForDebuggingEb +_ZN7WebCore12GCController9singletonEv +_ZN7WebCore12GridPosition15setSpanPositionEiRKN3WTF6StringE +_ZN7WebCore12GridPosition19setExplicitPositionEiRKN3WTF6StringE +_ZN7WebCore12GridPosition24setMaxPositionForTestingEj +_ZN7WebCore12HTMLDocument5widthEv +_ZN7WebCore12HTMLDocument6heightEv +_ZN7WebCore12ISOWebVTTCue11boxTypeNameEv +_ZN7WebCore12ISOWebVTTCue5parseERN3JSC8DataViewERj +_ZN7WebCore12ISOWebVTTCueC1EON3WTF9MediaTimeES3_ONS1_6StringES5_S5_S5_S5_ +_ZN7WebCore12ISOWebVTTCueC1ERKN3WTF9MediaTimeES4_ +_ZN7WebCore12ISOWebVTTCueC1ERKS0_ +_ZN7WebCore12ISOWebVTTCueC2EON3WTF9MediaTimeES3_ONS1_6StringES5_S5_S5_S5_ +_ZN7WebCore12ISOWebVTTCueC2ERKN3WTF9MediaTimeES4_ +_ZN7WebCore12ISOWebVTTCueC2ERKS0_ +_ZN7WebCore12ISOWebVTTCueD0Ev +_ZN7WebCore12ISOWebVTTCueD1Ev +_ZN7WebCore12ISOWebVTTCueD2Ev +_ZN7WebCore12ISOWebVTTCueaSERKS0_ +_ZN7WebCore12JSAudioTrack11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE +_ZN7WebCore12JSAudioTrack13visitChildrenEPN3JSC6JSCellERNS1_11SlotVisitorE +_ZN7WebCore12JSAudioTrack14finishCreationERN3JSC2VME +_ZN7WebCore12JSAudioTrack14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE +_ZN7WebCore12JSAudioTrack15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore12JSAudioTrack15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE +_ZN7WebCore12JSAudioTrack15subspaceForImplERN3JSC2VME +_ZN7WebCore12JSAudioTrack23visitAdditionalChildrenERN3JSC11SlotVisitorE +_ZN7WebCore12JSAudioTrack4infoEv +_ZN7WebCore12JSAudioTrack6s_infoE +_ZN7WebCore12JSAudioTrack7destroyEPN3JSC6JSCellE +_ZN7WebCore12JSAudioTrack9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore12JSAudioTrack9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore12JSAudioTrackC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_10AudioTrackENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore12JSAudioTrackC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_10AudioTrackENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore12JSAudioTrackD1Ev +_ZN7WebCore12JSAudioTrackD2Ev +_ZN7WebCore12JSAudioTrackaSERKS0_ +_ZN7WebCore12JSStyleSheet9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore12JSTimeRanges11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE +_ZN7WebCore12JSTimeRanges14finishCreationERN3JSC2VME +_ZN7WebCore12JSTimeRanges14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE +_ZN7WebCore12JSTimeRanges15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore12JSTimeRanges15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE +_ZN7WebCore12JSTimeRanges15subspaceForImplERN3JSC2VME +_ZN7WebCore12JSTimeRanges4infoEv +_ZN7WebCore12JSTimeRanges6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_10TimeRangesENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore12JSTimeRanges6s_infoE +_ZN7WebCore12JSTimeRanges7destroyEPN3JSC6JSCellE +_ZN7WebCore12JSTimeRanges9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore12JSTimeRanges9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore12JSTimeRangesC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_10TimeRangesENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore12JSTimeRangesC1ERKS0_ +_ZN7WebCore12JSTimeRangesC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_10TimeRangesENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore12JSTimeRangesC2ERKS0_ +_ZN7WebCore12JSTimeRangesD1Ev +_ZN7WebCore12JSTimeRangesD2Ev +_ZN7WebCore12JSTimeRangesaSERKS0_ +_ZN7WebCore12JSTreeWalker9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore12KeyedDecoder7decoderEPKhm +_ZN7WebCore12KeyedEncoder7encoderEv +_ZN7WebCore12NamedNodeMap12setNamedItemERNS_4AttrE +_ZN7WebCore12NamedNodeMap15removeNamedItemERKN3WTF10AtomStringE +_ZN7WebCore12NamedNodeMap15removeNamedItemERKN3WTF12AtomicStringE +_ZN7WebCore12NamedNodeMap17removeNamedItemNSERKN3WTF10AtomStringES4_ +_ZN7WebCore12NamedNodeMap17removeNamedItemNSERKN3WTF12AtomicStringES4_ +_ZN7WebCore12NamedNodeMap3refEv +_ZN7WebCore12NamedNodeMap5derefEv +_ZN7WebCore12NodeIterator12previousNodeEv +_ZN7WebCore12NodeIterator8nextNodeEv +_ZN7WebCore12NodeIteratorD1Ev +_ZN7WebCore12NodeIteratorD2Ev +_ZN7WebCore12PrintContext12pagePropertyEPNS_5FrameEPKci +_ZN7WebCore12PrintContext13numberOfPagesERNS_5FrameERKNS_9FloatSizeE +_ZN7WebCore12PrintContext16computePageRectsERKNS_9FloatRectEfffRfb +_ZN7WebCore12PrintContext16computedPageSizeENS_9FloatSizeENS_9RectEdgesIfEE +_ZN7WebCore12PrintContext16isPageBoxVisibleEPNS_5FrameEi +_ZN7WebCore12PrintContext18computedPageMarginENS_9RectEdgesIfEE +_ZN7WebCore12PrintContext20pageNumberForElementEPNS_7ElementERKNS_9FloatSizeE +_ZN7WebCore12PrintContext26pageSizeAndMarginsInPixelsEPNS_5FrameEiiiiiii +_ZN7WebCore12PrintContext27computeAutomaticScaleFactorERKNS_9FloatSizeE +_ZN7WebCore12PrintContext27spoolAllPagesWithBoundariesERNS_5FrameERNS_15GraphicsContextERKNS_9FloatSizeE +_ZN7WebCore12PrintContext28computePageRectsWithPageSizeERKNS_9FloatSizeEb +_ZN7WebCore12PrintContext3endEv +_ZN7WebCore12PrintContext5beginEff +_ZN7WebCore12PrintContext9spoolPageERNS_15GraphicsContextEif +_ZN7WebCore12PrintContext9spoolRectERNS_15GraphicsContextERKNS_7IntRectE +_ZN7WebCore12PrintContextC1EPNS_5FrameE +_ZN7WebCore12PrintContextC2EPNS_5FrameE +_ZN7WebCore12PrintContextD0Ev +_ZN7WebCore12PrintContextD1Ev +_ZN7WebCore12PrintContextD2Ev +_ZN7WebCore12RenderObject16paintingRootRectERNS_10LayoutRectE +_ZN7WebCore12RenderObject17absoluteTextQuadsERKNS_11SimpleRangeEb +_ZN7WebCore12RenderObject17absoluteTextRectsERKNS_11SimpleRangeEb +_ZN7WebCore12RenderObject19scrollRectToVisibleENS_19SelectionRevealModeERKNS_10LayoutRectEbRKNS_15ScrollAlignmentES7_NS_31ShouldAllowCrossOriginScrollingE +_ZN7WebCore12RenderObject19scrollRectToVisibleERKNS_10LayoutRectEbRKNS_26ScrollRectToVisibleOptionsE +_ZN7WebCore12RenderWidget9setWidgetEON3WTF6RefPtrINS_6WidgetENS1_13DumbPtrTraitsIS3_EEEE +_ZN7WebCore12SameSiteInfo6createERKNS_15ResourceRequestE +_ZN7WebCore12SettingsBase17setLayoutIntervalEN3WTF7SecondsE +_ZN7WebCore12SettingsBase18setFixedFontFamilyERKN3WTF10AtomStringE11UScriptCode +_ZN7WebCore12SettingsBase18setFixedFontFamilyERKN3WTF12AtomicStringE11UScriptCode +_ZN7WebCore12SettingsBase18setSerifFontFamilyERKN3WTF10AtomStringE11UScriptCode +_ZN7WebCore12SettingsBase18setSerifFontFamilyERKN3WTF12AtomicStringE11UScriptCode +_ZN7WebCore12SettingsBase20setCursiveFontFamilyERKN3WTF10AtomStringE11UScriptCode +_ZN7WebCore12SettingsBase20setCursiveFontFamilyERKN3WTF12AtomicStringE11UScriptCode +_ZN7WebCore12SettingsBase20setFantasyFontFamilyERKN3WTF10AtomStringE11UScriptCode +_ZN7WebCore12SettingsBase20setFantasyFontFamilyERKN3WTF12AtomicStringE11UScriptCode +_ZN7WebCore12SettingsBase21setStandardFontFamilyERKN3WTF10AtomStringE11UScriptCode +_ZN7WebCore12SettingsBase21setStandardFontFamilyERKN3WTF12AtomicStringE11UScriptCode +_ZN7WebCore12SettingsBase22setSansSerifFontFamilyERKN3WTF10AtomStringE11UScriptCode +_ZN7WebCore12SettingsBase22setSansSerifFontFamilyERKN3WTF12AtomicStringE11UScriptCode +_ZN7WebCore12SettingsBase23setPictographFontFamilyERKN3WTF10AtomStringE11UScriptCode +_ZN7WebCore12SettingsBase23setPictographFontFamilyERKN3WTF12AtomicStringE11UScriptCode +_ZN7WebCore12SettingsBase26defaultMinimumZoomFontSizeEv +_ZN7WebCore12SettingsBase26setMinimumDOMTimerIntervalEN3WTF7SecondsE +_ZN7WebCore12SettingsBase28defaultTextAutosizingEnabledEv +_ZN7WebCore12SettingsBase35defaultContentChangeObserverEnabledEv +_ZN7WebCore12SettingsBase37defaultDownloadableBinaryFontsEnabledEv +_ZN7WebCore12SettingsBase44setMediaContentTypesRequiringHardwareSupportERKN3WTF6StringE +_ZN7WebCore12SettingsBase44setMediaContentTypesRequiringHardwareSupportERKN3WTF6VectorINS_11ContentTypeELm0ENS1_15CrashOnOverflowELm16EEE +_ZN7WebCore12SettingsBase44setMediaContentTypesRequiringHardwareSupportERKN3WTF6VectorINS_11ContentTypeELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN7WebCore12SettingsBase48defaultMediaContentTypesRequiringHardwareSupportEv +_ZN7WebCore12SharedBuffer21createFromReadingFileERKN3WTF6StringE +_ZN7WebCore12SharedBuffer24createWithContentsOfFileERKN3WTF6StringE +_ZN7WebCore12SharedBuffer5clearEv +_ZN7WebCore12SharedBuffer6appendEON3WTF6VectorIcLm0ENS1_15CrashOnOverflowELm16EEE +_ZN7WebCore12SharedBuffer6appendEON3WTF6VectorIcLm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN7WebCore12SharedBuffer6appendEPKcm +_ZN7WebCore12SharedBuffer6appendERKS0_ +_ZN7WebCore12SharedBuffer6createEON3WTF6VectorIcLm0ENS1_15CrashOnOverflowELm16EEE +_ZN7WebCore12SharedBuffer6createEON3WTF6VectorIcLm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN7WebCore12SharedBuffer6createEON3WTF6VectorIhLm0ENS1_15CrashOnOverflowELm16EEE +_ZN7WebCore12SharedBuffer6createEON3WTF6VectorIhLm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN7WebCore12SharedBuffer6createEPKcm +_ZN7WebCore12SharedBuffer6createEPKhm +_ZN7WebCore12SharedBuffer6createEv +_ZN7WebCore12SharedBufferC1EON3WTF14FileSystemImpl14MappedFileDataE +_ZN7WebCore12SharedBufferC1EON3WTF6VectorIcLm0ENS1_15CrashOnOverflowELm16EEE +_ZN7WebCore12SharedBufferC1EON3WTF6VectorIcLm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN7WebCore12SharedBufferC1EONS_10FileSystem14MappedFileDataE +_ZN7WebCore12SharedBufferC1EPKcm +_ZN7WebCore12SharedBufferC1EPKhm +_ZN7WebCore12SharedBufferC1Ev +_ZN7WebCore12SharedBufferC2EON3WTF14FileSystemImpl14MappedFileDataE +_ZN7WebCore12SharedBufferC2EON3WTF6VectorIcLm0ENS1_15CrashOnOverflowELm16EEE +_ZN7WebCore12SharedBufferC2EON3WTF6VectorIcLm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN7WebCore12SharedBufferC2EONS_10FileSystem14MappedFileDataE +_ZN7WebCore12SharedBufferC2EPKcm +_ZN7WebCore12SharedBufferC2EPKhm +_ZN7WebCore12SharedBufferC2Ev +_ZN7WebCore12SharedBufferD1Ev +_ZN7WebCore12SharedBufferD2Ev +_ZN7WebCore12TextEncodingC1EPKc +_ZN7WebCore12TextEncodingC1ERKN3WTF6StringE +_ZN7WebCore12TextEncodingC2EPKc +_ZN7WebCore12TextEncodingC2ERKN3WTF6StringE +_ZN7WebCore12TextIterator11rangeLengthEPKNS_5RangeEb +_ZN7WebCore12TextIterator26rangeFromLocationAndLengthEPNS_13ContainerNodeEiib +_ZN7WebCore12TextIterator29getLocationAndLengthFromRangeEPNS_4NodeEPKNS_5RangeERmS6_ +_ZN7WebCore12TextIterator7advanceEv +_ZN7WebCore12TextIterator8subrangeERNS_5RangeEii +_ZN7WebCore12TextIteratorC1EPKNS_5RangeEt +_ZN7WebCore12TextIteratorC1ERKNS_11SimpleRangeEt +_ZN7WebCore12TextIteratorC2EPKNS_5RangeEt +_ZN7WebCore12TextIteratorC2ERKNS_11SimpleRangeEt +_ZN7WebCore12TextIteratorD1Ev +_ZN7WebCore12TextIteratorD2Ev +_ZN7WebCore12UTF8EncodingEv +_ZN7WebCore12UserActivityC1EPKc +_ZN7WebCore12UserActivityC2EPKc +_ZN7WebCore12WebAnimation9instancesEv +_ZN7WebCore12WorkerThread17workerThreadCountEv +_ZN7WebCore12WorkerThread5startEON3WTF8FunctionIFvRKNS1_6StringEEEE +_ZN7WebCore12blobRegistryEv +_ZN7WebCore12commonVMSlowEv +_ZN7WebCore12deleteCookieERKNS_21NetworkStorageSessionERKNS_3URLERKN3WTF6StringE +_ZN7WebCore12deleteCookieERKNS_8DocumentERKNS_3URLERKN3WTF6StringE +_ZN7WebCore12newTextCodecERKNS_12TextEncodingE +_ZN7WebCore13AXObjectCache10rootObjectEv +_ZN7WebCore13AXObjectCache11getOrCreateEPNS_4NodeE +_ZN7WebCore13AXObjectCache18rootObjectForFrameEPNS_5FrameE +_ZN7WebCore13AXObjectCache19enableAccessibilityEv +_ZN7WebCore13AXObjectCache20disableAccessibilityEv +_ZN7WebCore13AXObjectCache21gAccessibilityEnabledE +_ZN7WebCore13AXObjectCache23canUseSecondaryAXThreadEv +_ZN7WebCore13AXObjectCache23focusedUIElementForPageEPKNS_4PageE +_ZN7WebCore13AXObjectCache37setEnhancedUserInterfaceAccessibilityEb +_ZN7WebCore13AXObjectCache42gAccessibilityEnhancedUserInterfaceEnabledE +_ZN7WebCore13CSSStyleSheet10deleteRuleEj +_ZN7WebCore13CSSStyleSheet10insertRuleERKN3WTF6StringEj +_ZN7WebCore13CSSStyleSheet5rulesEv +_ZN7WebCore13CSSStyleSheet7addRuleERKN3WTF6StringES4_NS1_8OptionalIjEE +_ZN7WebCore13CSSStyleSheet7addRuleERKN3WTF6StringES4_St8optionalIjE +_ZN7WebCore13CSSStyleSheet8cssRulesEv +_ZN7WebCore13CharacterData10appendDataERKN3WTF6StringE +_ZN7WebCore13CharacterData10deleteDataEjj +_ZN7WebCore13CharacterData10insertDataEjRKN3WTF6StringE +_ZN7WebCore13CharacterData11replaceDataEjjRKN3WTF6StringE +_ZN7WebCore13CharacterData13substringDataEjj +_ZN7WebCore13CharacterData7setDataERKN3WTF6StringE +_ZN7WebCore13ContainerNode11appendChildERNS_4NodeE +_ZN7WebCore13ContainerNode11removeChildERNS_4NodeE +_ZN7WebCore13ContainerNode13querySelectorERKN3WTF6StringE +_ZN7WebCore13ContainerNode16querySelectorAllERKN3WTF6StringE +_ZN7WebCore13ContainerNode17getElementsByNameERKN3WTF6StringE +_ZN7WebCore13ContainerNode20getElementsByTagNameERKN3WTF10AtomStringE +_ZN7WebCore13ContainerNode20getElementsByTagNameERKN3WTF12AtomicStringE +_ZN7WebCore13ContainerNode22getElementsByClassNameERKN3WTF10AtomStringE +_ZN7WebCore13ContainerNode22getElementsByClassNameERKN3WTF12AtomicStringE +_ZN7WebCore13ContainerNode22getElementsByTagNameNSERKN3WTF10AtomStringES4_ +_ZN7WebCore13ContainerNode22getElementsByTagNameNSERKN3WTF12AtomicStringES4_ +_ZN7WebCore13ContainerNode8childrenEv +_ZN7WebCore13FetchResponse6createERNS_22ScriptExecutionContextEON3WTF8OptionalINS_9FetchBodyEEENS_12FetchHeaders5GuardEONS_16ResourceResponseE +_ZN7WebCore13FetchResponse6createERNS_22ScriptExecutionContextEOSt8optionalINS_9FetchBodyEENS_12FetchHeaders5GuardEONS_16ResourceResponseE +_ZN7WebCore13GraphicsLayer11clearClientEv +_ZN7WebCore13GraphicsLayer11setChildrenEON3WTF6VectorINS1_3RefIS0_NS1_13DumbPtrTraitsIS0_EEEELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN7WebCore13GraphicsLayer11setChildrenERKN3WTF6VectorIPS0_Lm0ENS1_15CrashOnOverflowELm16EEE +_ZN7WebCore13GraphicsLayer12replaceChildEPS0_ON3WTF3RefIS0_NS2_13DumbPtrTraitsIS0_EEEE +_ZN7WebCore13GraphicsLayer12replaceChildEPS0_S1_ +_ZN7WebCore13GraphicsLayer12setZPositionEf +_ZN7WebCore13GraphicsLayer13addChildAboveEON3WTF3RefIS0_NS1_13DumbPtrTraitsIS0_EEEEPS0_ +_ZN7WebCore13GraphicsLayer13addChildAboveEPS0_S1_ +_ZN7WebCore13GraphicsLayer13addChildBelowEON3WTF3RefIS0_NS1_13DumbPtrTraitsIS0_EEEEPS0_ +_ZN7WebCore13GraphicsLayer13addChildBelowEPS0_S1_ +_ZN7WebCore13GraphicsLayer15addChildAtIndexEON3WTF3RefIS0_NS1_13DumbPtrTraitsIS0_EEEEi +_ZN7WebCore13GraphicsLayer15addChildAtIndexEPS0_i +_ZN7WebCore13GraphicsLayer15willBeDestroyedEv +_ZN7WebCore13GraphicsLayer16removeFromParentEv +_ZN7WebCore13GraphicsLayer16resumeAnimationsEv +_ZN7WebCore13GraphicsLayer16unparentAndClearERN3WTF6RefPtrIS0_NS1_13DumbPtrTraitsIS0_EEEE +_ZN7WebCore13GraphicsLayer17distributeOpacityEf +_ZN7WebCore13GraphicsLayer17removeAllChildrenEv +_ZN7WebCore13GraphicsLayer17suspendAnimationsEN3WTF13MonotonicTimeE +_ZN7WebCore13GraphicsLayer18setBackgroundColorERKNS_5ColorE +_ZN7WebCore13GraphicsLayer20setReplicatedByLayerEON3WTF6RefPtrIS0_NS1_13DumbPtrTraitsIS0_EEEE +_ZN7WebCore13GraphicsLayer20setReplicatedByLayerEPS0_ +_ZN7WebCore13GraphicsLayer54noteDeviceOrPageScaleFactorChangedIncludingDescendantsEv +_ZN7WebCore13GraphicsLayer5clearERN3WTF6RefPtrIS0_NS1_13DumbPtrTraitsIS0_EEEE +_ZN7WebCore13GraphicsLayer6createEPNS_20GraphicsLayerFactoryERNS_19GraphicsLayerClientENS0_4TypeE +_ZN7WebCore13GraphicsLayer7setSizeERKNS_9FloatSizeE +_ZN7WebCore13GraphicsLayer8addChildEON3WTF3RefIS0_NS1_13DumbPtrTraitsIS0_EEEE +_ZN7WebCore13GraphicsLayer8addChildEPS0_ +_ZN7WebCore13GraphicsLayer9setClientERNS_19GraphicsLayerClientE +_ZN7WebCore13GraphicsLayerC2ENS0_4TypeERNS_19GraphicsLayerClientE +_ZN7WebCore13GraphicsLayerD0Ev +_ZN7WebCore13GraphicsLayerD1Ev +_ZN7WebCore13GraphicsLayerD2Ev +_ZN7WebCore13HTTPHeaderMap3addERKN3WTF6StringES4_ +_ZN7WebCore13HTTPHeaderMap3setERKN3WTF6StringES4_ +_ZN7WebCore13HTTPHeaderMap6appendERKN3WTF6StringES4_ +_ZN7WebCore13HTTPHeaderMap6removeENS_14HTTPHeaderNameE +_ZN7WebCore13HTTPHeaderMap6removeERKN3WTF6StringE +_ZN7WebCore13HTTPHeaderMapC1Ev +_ZN7WebCore13HTTPHeaderMapC2Ev +_ZN7WebCore13HitTestResult12setInnerNodeEPNS_4NodeE +_ZN7WebCore13HitTestResultC1ERKNS_10LayoutRectE +_ZN7WebCore13HitTestResultC1ERKNS_11LayoutPointE +_ZN7WebCore13HitTestResultC1ERKNS_11LayoutPointEjjjj +_ZN7WebCore13HitTestResultC1ERKNS_15HitTestLocationE +_ZN7WebCore13HitTestResultC1ERKS0_ +_ZN7WebCore13HitTestResultC1Ev +_ZN7WebCore13HitTestResultC2ERKNS_10LayoutRectE +_ZN7WebCore13HitTestResultC2ERKNS_11LayoutPointE +_ZN7WebCore13HitTestResultC2ERKNS_11LayoutPointEjjjj +_ZN7WebCore13HitTestResultC2ERKNS_15HitTestLocationE +_ZN7WebCore13HitTestResultC2ERKS0_ +_ZN7WebCore13HitTestResultC2Ev +_ZN7WebCore13HitTestResultD1Ev +_ZN7WebCore13HitTestResultD2Ev +_ZN7WebCore13HitTestResultaSERKS0_ +_ZN7WebCore13IdentifierRep3getEPKc +_ZN7WebCore13IdentifierRep3getEi +_ZN7WebCore13IdentifierRep7isValidEPS0_ +_ZN7WebCore13JSCSSRuleList9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore13JSDOMRectList11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE +_ZN7WebCore13JSDOMRectList14finishCreationERN3JSC2VME +_ZN7WebCore13JSDOMRectList14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE +_ZN7WebCore13JSDOMRectList15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore13JSDOMRectList15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE +_ZN7WebCore13JSDOMRectList15subspaceForImplERN3JSC2VME +_ZN7WebCore13JSDOMRectList18getOwnPropertySlotEPN3JSC8JSObjectEPNS1_14JSGlobalObjectENS1_12PropertyNameERNS1_12PropertySlotE +_ZN7WebCore13JSDOMRectList18getOwnPropertySlotEPN3JSC8JSObjectEPNS1_9ExecStateENS1_12PropertyNameERNS1_12PropertySlotE +_ZN7WebCore13JSDOMRectList19getOwnPropertyNamesEPN3JSC8JSObjectEPNS1_9ExecStateERNS1_17PropertyNameArrayENS1_15EnumerationModeE +_ZN7WebCore13JSDOMRectList25getOwnPropertySlotByIndexEPN3JSC8JSObjectEPNS1_14JSGlobalObjectEjRNS1_12PropertySlotE +_ZN7WebCore13JSDOMRectList25getOwnPropertySlotByIndexEPN3JSC8JSObjectEPNS1_9ExecStateEjRNS1_12PropertySlotE +_ZN7WebCore13JSDOMRectList4infoEv +_ZN7WebCore13JSDOMRectList6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_11DOMRectListENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore13JSDOMRectList6s_infoE +_ZN7WebCore13JSDOMRectList7destroyEPN3JSC6JSCellE +_ZN7WebCore13JSDOMRectList9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore13JSDOMRectList9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore13JSDOMRectListC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_11DOMRectListENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore13JSDOMRectListC1ERKS0_ +_ZN7WebCore13JSDOMRectListC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_11DOMRectListENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore13JSDOMRectListC2ERKS0_ +_ZN7WebCore13JSDOMRectListD1Ev +_ZN7WebCore13JSDOMRectListD2Ev +_ZN7WebCore13JSDOMRectListaSERKS0_ +_ZN7WebCore13JSHTMLElement11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE +_ZN7WebCore13JSHTMLElement13visitChildrenEPN3JSC6JSCellERNS1_11SlotVisitorE +_ZN7WebCore13JSHTMLElement14finishCreationERN3JSC2VME +_ZN7WebCore13JSHTMLElement14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE +_ZN7WebCore13JSHTMLElement15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore13JSHTMLElement15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE +_ZN7WebCore13JSHTMLElement15subspaceForImplERN3JSC2VME +_ZN7WebCore13JSHTMLElement4infoEv +_ZN7WebCore13JSHTMLElement6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_11HTMLElementENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore13JSHTMLElement6s_infoE +_ZN7WebCore13JSHTMLElement9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore13JSHTMLElement9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore13JSHTMLElementC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_11HTMLElementENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore13JSHTMLElementC1ERKS0_ +_ZN7WebCore13JSHTMLElementC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_11HTMLElementENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore13JSHTMLElementC2ERKS0_ +_ZN7WebCore13JSHTMLElementD1Ev +_ZN7WebCore13JSHTMLElementD2Ev +_ZN7WebCore13JSWindowProxy9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore13JSXPathResult9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore13KeyboardEvent17initKeyboardEventERKN3WTF10AtomStringEbbONS1_6RefPtrINS_11WindowProxyENS1_13DumbPtrTraitsIS6_EEEERKNS1_6StringEjbbbbb +_ZN7WebCore13KeyboardEvent17initKeyboardEventERKN3WTF12AtomicStringEbbONS1_6RefPtrINS_11WindowProxyENS1_13DumbPtrTraitsIS6_EEEERKNS1_6StringEjbbbbb +_ZN7WebCore13KeyboardEvent6createERKNS_21PlatformKeyboardEventEON3WTF6RefPtrINS_11WindowProxyENS4_13DumbPtrTraitsIS6_EEEE +_ZN7WebCore13MIMETypeCache13canDecodeTypeERKN3WTF6StringE +_ZN7WebCore13MIMETypeCache14supportedTypesEv +_ZN7WebCore13MIMETypeCache15initializeCacheERN3WTF7HashSetINS1_6StringENS1_24ASCIICaseInsensitiveHashENS1_10HashTraitsIS3_EEEE +_ZN7WebCore13MIMETypeCache17addSupportedTypesERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN7WebCore13MIMETypeCache21canDecodeExtendedTypeERKNS_11ContentTypeE +_ZN7WebCore13MIMETypeCache21supportsContainerTypeERKN3WTF6StringE +_ZN7WebCore13MIMETypeCache23staticContainerTypeListEv +_ZN7WebCore13MIMETypeCache26isUnsupportedContainerTypeERKN3WTF6StringE +_ZN7WebCore13MIMETypeCacheC1ERKS0_ +_ZN7WebCore13MIMETypeCacheC1Ev +_ZN7WebCore13MIMETypeCacheC2ERKS0_ +_ZN7WebCore13MIMETypeCacheC2Ev +_ZN7WebCore13MIMETypeCacheD0Ev +_ZN7WebCore13MIMETypeCacheD1Ev +_ZN7WebCore13MIMETypeCacheD2Ev +_ZN7WebCore13MIMETypeCacheaSERKS0_ +_ZN7WebCore13MIMETypeCachedaEPv +_ZN7WebCore13MIMETypeCachedlEPv +_ZN7WebCore13MIMETypeCachenaEm +_ZN7WebCore13MIMETypeCachenaEmPv +_ZN7WebCore13MIMETypeCachenwEm +_ZN7WebCore13MIMETypeCachenwEmPv +_ZN7WebCore13MediaQuerySet6createERKN3WTF6StringENS_23MediaQueryParserContextE +_ZN7WebCore13MediaQuerySetD1Ev +_ZN7WebCore13MediaQuerySetD2Ev +_ZN7WebCore13MediaStrategyC1ERKS0_ +_ZN7WebCore13MediaStrategyC1Ev +_ZN7WebCore13MediaStrategyC2ERKS0_ +_ZN7WebCore13MediaStrategyC2Ev +_ZN7WebCore13MediaStrategyD0Ev +_ZN7WebCore13MediaStrategyD1Ev +_ZN7WebCore13MediaStrategyD2Ev +_ZN7WebCore13MutationEvent17initMutationEventERKN3WTF10AtomStringEbbPNS_4NodeERKNS1_6StringES9_S9_t +_ZN7WebCore13MutationEvent17initMutationEventERKN3WTF12AtomicStringEbbPNS_4NodeERKNS1_6StringES9_S9_t +_ZN7WebCore13NodeTraversal13deepLastChildERNS_4NodeE +_ZN7WebCore13NodeTraversal19nextAncestorSiblingERKNS_4NodeE +_ZN7WebCore13NodeTraversal19nextAncestorSiblingERKNS_4NodeEPS2_ +_ZN7WebCore13NodeTraversal4lastERKNS_13ContainerNodeE +_ZN7WebCore13OverflowEvent17initOverflowEventEtbb +_ZN7WebCore13PathUtilities26pathWithShrinkWrappedRectsERKN3WTF6VectorINS_9FloatRectELm0ENS1_15CrashOnOverflowELm16EEEf +_ZN7WebCore13PathUtilities26pathWithShrinkWrappedRectsERKN3WTF6VectorINS_9FloatRectELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEEf +_ZN7WebCore13PathUtilities27pathsWithShrinkWrappedRectsERKN3WTF6VectorINS_9FloatRectELm0ENS1_15CrashOnOverflowELm16EEEf +_ZN7WebCore13PathUtilities27pathsWithShrinkWrappedRectsERKN3WTF6VectorINS_9FloatRectELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEEf +_ZN7WebCore13QualifiedName17QualifiedNameImplD1Ev +_ZN7WebCore13QualifiedName17QualifiedNameImplD2Ev +_ZN7WebCore13QualifiedName4initEv +_ZN7WebCore13QualifiedNameC1ERKN3WTF10AtomStringES4_S4_ +_ZN7WebCore13QualifiedNameC1ERKN3WTF12AtomicStringES4_S4_ +_ZN7WebCore13QualifiedNameC2ERKN3WTF10AtomStringES4_S4_ +_ZN7WebCore13QualifiedNameC2ERKN3WTF12AtomicStringES4_S4_ +_ZN7WebCore13SleepDisablerC1EPKcN3PAL13SleepDisabler4TypeE +_ZN7WebCore13SleepDisablerC2EPKcN3PAL13SleepDisabler4TypeE +_ZN7WebCore13SleepDisablerD1Ev +_ZN7WebCore13SleepDisablerD2Ev +_ZN7WebCore13StyleRuleBase7destroyEv +_ZN7WebCore13StyledElement10cssomStyleEv +_ZN7WebCore13StyledElement22setInlineStylePropertyENS_13CSSPropertyIDERKN3WTF6StringEb +_ZN7WebCore13StyledElement22setInlineStylePropertyENS_13CSSPropertyIDEdNS_11CSSUnitTypeEb +_ZN7WebCore13StyledElement22setInlineStylePropertyENS_13CSSPropertyIDEdNS_17CSSPrimitiveValue8UnitTypeEb +_ZN7WebCore13TextIndicator15createWithRangeERKNS_11SimpleRangeEN3WTF9OptionSetINS_19TextIndicatorOptionEEENS_35TextIndicatorPresentationTransitionENS_9FloatSizeE +_ZN7WebCore13TextIndicator15createWithRangeERKNS_5RangeEtNS_35TextIndicatorPresentationTransitionENS_9FloatSizeE +_ZN7WebCore13TextIndicator26createWithSelectionInFrameERNS_5FrameEN3WTF9OptionSetINS_19TextIndicatorOptionEEENS_35TextIndicatorPresentationTransitionENS_9FloatSizeE +_ZN7WebCore13TextIndicator26createWithSelectionInFrameERNS_5FrameEtNS_35TextIndicatorPresentationTransitionENS_9FloatSizeE +_ZN7WebCore13TextIndicator6createERKNS_17TextIndicatorDataE +_ZN7WebCore13TextIndicatorD1Ev +_ZN7WebCore13TextIndicatorD2Ev +_ZN7WebCore13TextureMapper6createEv +_ZN7WebCore13cookiesForDOMERKNS_21NetworkStorageSessionERKNS_3URLERKNS_12SameSiteInfoES5_St8optionalImESA_NS_20IncludeSecureCookiesE +_ZN7WebCore13createWrapperEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_4NodeENS5_13DumbPtrTraitsIS7_EEEE +_ZN7WebCore13createWrapperEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_4NodeENS5_13DumbPtrTraitsIS7_EEEE +_ZN7WebCore13createWrapperERNS_17JSDOMGlobalObjectEON3WTF3RefINS_8NodeListENS2_13DumbPtrTraitsIS4_EEEE +_ZN7WebCore13displayStringERKN3WTF6StringEPKNS_4NodeE +_ZN7WebCore13enclosingListEPNS_4NodeE +_ZN7WebCore13endOfDocumentEPKNS_4NodeE +_ZN7WebCore13endOfDocumentERKNS_15VisiblePositionE +_ZN7WebCore13endOfSentenceERKNS_15VisiblePositionE +_ZN7WebCore13getBackingMapERN3JSC14JSGlobalObjectERNS0_8JSObjectE +_ZN7WebCore13getBackingSetERN3JSC14JSGlobalObjectERNS0_8JSObjectE +_ZN7WebCore13getLogChannelERKN3WTF6StringE +_ZN7WebCore13getRawCookiesERKNS_21NetworkStorageSessionERKNS_3URLERKNS_12SameSiteInfoES5_St8optionalImESA_RN3WTF6VectorINS_6CookieELm0ENSB_15CrashOnOverflowELm16EEE +_ZN7WebCore13getRawCookiesERKNS_8DocumentERKNS_3URLERN3WTF6VectorINS_6CookieELm0ENS6_15CrashOnOverflowELm16EEE +_ZN7WebCore13hostsAreEqualERKNS_3URLES2_ +_ZN7WebCore13internalErrorERKN3WTF3URLE +_ZN7WebCore13isStartOfLineERKNS_15VisiblePositionE +_ZN7WebCore13pointerCursorEv +_ZN7WebCore13rangesOverlapEPKNS_5RangeES2_ +_ZN7WebCore13releaseMemoryEN3WTF8CriticalENS0_11SynchronousE +_ZN7WebCore13releaseMemoryEN3WTF8CriticalENS0_11SynchronousENS_24MaintainBackForwardCacheENS_19MaintainMemoryCacheE +_ZN7WebCore13toJSDOMWindowERN3JSC2VMENS0_7JSValueE +_ZN7WebCore13toLinearSRGBAERKNS_5SRGBAIfEE +_ZN7WebCore14CachedResource12removeClientERNS_20CachedResourceClientE +_ZN7WebCore14CachedResource16unregisterHandleEPNS_24CachedResourceHandleBaseE +_ZN7WebCore14CachedResource9addClientERNS_20CachedResourceClientE +_ZN7WebCore14CredentialBase7compareERKNS_10CredentialES3_ +_ZN7WebCore14CredentialBaseC1ERKN3WTF6StringES4_NS_21CredentialPersistenceE +_ZN7WebCore14CredentialBaseC1Ev +_ZN7WebCore14CredentialBaseC2ERKN3WTF6StringES4_NS_21CredentialPersistenceE +_ZN7WebCore14CredentialBaseC2Ev +_ZN7WebCore14DOMCacheEngine15queryCacheMatchERKNS_15ResourceRequestERKN3WTF3URLEbRKNS4_7HashMapINS4_6StringES9_NS4_11DefaultHashIS9_EENS4_10HashTraitsIS9_EESD_EERKNS_17CacheQueryOptionsE +_ZN7WebCore14DOMCacheEngine15queryCacheMatchERKNS_15ResourceRequestERKNS_3URLEbRKN3WTF7HashMapINS7_6StringES9_NS7_10StringHashENS7_10HashTraitsIS9_EESC_EERKNS_17CacheQueryOptionsE +_ZN7WebCore14DOMCacheEngine15queryCacheMatchERKNS_15ResourceRequestES3_RKNS_16ResourceResponseERKNS_17CacheQueryOptionsE +_ZN7WebCore14DOMCacheEngine16copyResponseBodyERKN3WTF7VariantIJDnNS1_3RefINS_8FormDataENS1_13DumbPtrTraitsIS4_EEEENS3_INS_12SharedBufferENS5_IS8_EEEEEEE +_ZN7WebCore14DocumentLoader10commitDataEPKcm +_ZN7WebCore14DocumentLoader12dataReceivedERNS_14CachedResourceEPKci +_ZN7WebCore14DocumentLoader13attachToFrameEv +_ZN7WebCore14DocumentLoader14notifyFinishedERNS_14CachedResourceE +_ZN7WebCore14DocumentLoader14notifyFinishedERNS_14CachedResourceERKNS_18NetworkLoadMetricsE +_ZN7WebCore14DocumentLoader15detachFromFrameEv +_ZN7WebCore14DocumentLoader16redirectReceivedERNS_14CachedResourceEONS_15ResourceRequestERKNS_16ResourceResponseEON3WTF17CompletionHandlerIFvS4_EEE +_ZN7WebCore14DocumentLoader16responseReceivedERNS_14CachedResourceERKNS_16ResourceResponseEON3WTF17CompletionHandlerIFvvEEE +_ZN7WebCore14DocumentLoader17addConsoleMessageEN3JSC13MessageSourceENS1_12MessageLevelERKN3WTF6StringEm +_ZN7WebCore14DocumentLoader21setCustomHeaderFieldsEON3WTF6VectorINS_15HTTPHeaderFieldELm0ENS1_15CrashOnOverflowELm16EEE +_ZN7WebCore14DocumentLoader21setCustomHeaderFieldsEON3WTF6VectorINS_18CustomHeaderFieldsELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN7WebCore14DocumentLoader22cancelMainResourceLoadERKNS_13ResourceErrorE +_ZN7WebCore14DocumentLoader22sendCSPViolationReportEON3WTF3URLEONS1_3RefINS_8FormDataENS1_13DumbPtrTraitsIS5_EEEE +_ZN7WebCore14DocumentLoader22sendCSPViolationReportEONS_3URLEON3WTF3RefINS_8FormDataENS3_13DumbPtrTraitsIS5_EEEE +_ZN7WebCore14DocumentLoader23applyPoliciesToSettingsEv +_ZN7WebCore14DocumentLoader25didGetLoadDecisionForIconEbmm +_ZN7WebCore14DocumentLoader31fromTemporaryDocumentIdentifierEN3WTF16ObjectIdentifierINS_22DocumentIdentifierTypeEEE +_ZN7WebCore14DocumentLoader35enqueueSecurityPolicyViolationEventEONS_28SecurityPolicyViolationEvent4InitE +_ZN7WebCore14DocumentLoader58stopLoadingAfterXFrameOptionsOrContentSecurityPolicyDeniedEmRKNS_16ResourceResponseE +_ZN7WebCore14DocumentLoader8setTitleERKNS_19StringWithDirectionE +_ZN7WebCore14DocumentLoaderC1ERKNS_15ResourceRequestERKNS_14SubstituteDataE +_ZN7WebCore14DocumentLoaderC2ERKNS_15ResourceRequestERKNS_14SubstituteDataE +_ZN7WebCore14DocumentLoaderD0Ev +_ZN7WebCore14DocumentLoaderD1Ev +_ZN7WebCore14DocumentLoaderD2Ev +_ZN7WebCore14DocumentWriter11setEncodingERKN3WTF6StringEb +_ZN7WebCore14DocumentWriter3endEv +_ZN7WebCore14FileIconLoader10iconLoadedEON3WTF6RefPtrINS_4IconENS1_13DumbPtrTraitsIS3_EEEE +_ZN7WebCore14FormController19referencedFilePathsERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16EEE +_ZN7WebCore14FormController19referencedFilePathsERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN7WebCore14FrameSelection12setSelectionERKNS_16VisibleSelectionEN3WTF9OptionSetINS0_18SetSelectionOptionEEENS_23AXTextStateChangeIntentENS0_19CursorAlignOnScrollENS_15TextGranularityE +_ZN7WebCore14FrameSelection12setSelectionERKNS_16VisibleSelectionEjNS_23AXTextStateChangeIntentENS0_19CursorAlignOnScrollENS_15TextGranularityE +_ZN7WebCore14FrameSelection15revealSelectionENS_19SelectionRevealModeERKNS_15ScrollAlignmentENS_18RevealExtentOptionE +_ZN7WebCore14FrameSelection16setSelectedRangeEPNS_5RangeENS_9EAffinityEbNS_14EUserTriggeredE +_ZN7WebCore14FrameSelection16setSelectedRangeERKN3WTF8OptionalINS_11SimpleRangeEEENS_9EAffinityENS0_17ShouldCloseTypingENS_14EUserTriggeredE +_ZN7WebCore14FrameSelection16updateAppearanceEv +_ZN7WebCore14FrameSelection18setCaretVisibilityENS_9CaretBase15CaretVisibilityE +_ZN7WebCore14FrameSelection19absoluteCaretBoundsEPb +_ZN7WebCore14FrameSelection20setSelectionFromNoneEv +_ZN7WebCore14FrameSelection5clearEv +_ZN7WebCore14FrameSelection6modifyENS0_11EAlterationENS_18SelectionDirectionENS_15TextGranularityENS_14EUserTriggeredE +_ZN7WebCore14FrameSelection6moveToEPKNS_5RangeE +_ZN7WebCore14FrameSelection6moveToERKNS_15VisiblePositionENS_14EUserTriggeredENS0_19CursorAlignOnScrollE +_ZN7WebCore14FrameSelection6moveToERKNS_15VisiblePositionES3_NS_14EUserTriggeredE +_ZN7WebCore14FrameSelection7setBaseERKNS_15VisiblePositionENS_14EUserTriggeredE +_ZN7WebCore14FrameSelection7setBaseERKNS_8PositionENS_9EAffinityENS_14EUserTriggeredE +_ZN7WebCore14FrameSelection9selectAllEv +_ZN7WebCore14FrameSelectionC1EPNS_5FrameE +_ZN7WebCore14FrameSelectionC1EPNS_8DocumentE +_ZN7WebCore14FrameSelectionC2EPNS_5FrameE +_ZN7WebCore14FrameSelectionC2EPNS_8DocumentE +_ZN7WebCore14HTMLMapElement5areasEv +_ZN7WebCore14JSNamedNodeMap9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore14JSNodeIterator9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore14JSVMClientData15initNormalWorldEPN3JSC2VME +_ZN7WebCore14JSVoidCallback11handleEventEv +_ZN7WebCore14JSVoidCallback12callbackDataEv +_ZN7WebCore14JSVoidCallback6createEPN3JSC8JSObjectEPNS_17JSDOMGlobalObjectE +_ZN7WebCore14JSVoidCallbackC1EPN3JSC8JSObjectEPNS_17JSDOMGlobalObjectE +_ZN7WebCore14JSVoidCallbackC2EPN3JSC8JSObjectEPNS_17JSDOMGlobalObjectE +_ZN7WebCore14JSVoidCallbackD0Ev +_ZN7WebCore14JSVoidCallbackD1Ev +_ZN7WebCore14JSVoidCallbackD2Ev +_ZN7WebCore14JSWebAnimation11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE +_ZN7WebCore14JSWebAnimation14finishCreationERN3JSC2VME +_ZN7WebCore14JSWebAnimation14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE +_ZN7WebCore14JSWebAnimation15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore14JSWebAnimation15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE +_ZN7WebCore14JSWebAnimation15subspaceForImplERN3JSC2VME +_ZN7WebCore14JSWebAnimation4infoEv +_ZN7WebCore14JSWebAnimation6s_infoE +_ZN7WebCore14JSWebAnimation9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore14JSWebAnimation9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore14JSWebAnimationC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_12WebAnimationENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore14JSWebAnimationC1ERKS0_ +_ZN7WebCore14JSWebAnimationC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_12WebAnimationENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore14JSWebAnimationC2ERKS0_ +_ZN7WebCore14JSWebAnimationD1Ev +_ZN7WebCore14JSWebAnimationD2Ev +_ZN7WebCore14LoaderStrategy34responseFromResourceLoadIdentifierEm +_ZN7WebCore14LoaderStrategy40networkMetricsFromResourceLoadIdentifierEm +_ZN7WebCore14LoaderStrategy53intermediateLoadInformationFromResourceLoadIdentifierEm +_ZN7WebCore14LoaderStrategyC2ERKS0_ +_ZN7WebCore14LoaderStrategyC2Ev +_ZN7WebCore14LoaderStrategyD0Ev +_ZN7WebCore14LoaderStrategyD1Ev +_ZN7WebCore14LoaderStrategyD2Ev +_ZN7WebCore14LoggedInStatus13setTimeToLiveEN3WTF7SecondsE +_ZN7WebCore14LoggedInStatus6createERKNS_17RegistrableDomainERKN3WTF6StringENS0_19CredentialTokenTypeENS0_18AuthenticationTypeE +_ZN7WebCore14LoggedInStatus6createERKNS_17RegistrableDomainERKN3WTF6StringENS0_19CredentialTokenTypeENS0_18AuthenticationTypeENS4_7SecondsE +_ZN7WebCore14MicrotaskQueue15mainThreadQueueEv +_ZN7WebCore14MicrotaskQueue26performMicrotaskCheckpointEv +_ZN7WebCore14MicrotaskQueue6appendEOSt10unique_ptrINS_13EventLoopTaskESt14default_deleteIS2_EE +_ZN7WebCore14MicrotaskQueue6appendEOSt10unique_ptrINS_9MicrotaskESt14default_deleteIS2_EE +_ZN7WebCore14MicrotaskQueue6removeERKNS_9MicrotaskE +_ZN7WebCore14MicrotaskQueueC1ERN3JSC2VME +_ZN7WebCore14MicrotaskQueueC1Ev +_ZN7WebCore14MicrotaskQueueC2ERN3JSC2VME +_ZN7WebCore14MicrotaskQueueC2Ev +_ZN7WebCore14MicrotaskQueueD1Ev +_ZN7WebCore14MicrotaskQueueD2Ev +_ZN7WebCore14PluginDocument12pluginWidgetEv +_ZN7WebCore14ProcessWarming15initializeNamesEv +_ZN7WebCore14ProcessWarming15prewarmGloballyEv +_ZN7WebCore14ProcessWarming22prewarmWithInformationERKNS_18PrewarmInformationE +_ZN7WebCore14ProcessWarming25collectPrewarmInformationEv +_ZN7WebCore14ReadableStream11isDisturbedERN3JSC14JSGlobalObjectENS1_7JSValueE +_ZN7WebCore14ReadableStream11isDisturbedERN3JSC9ExecStateENS1_7JSValueE +_ZN7WebCore14ResourceHandle11clearClientEv +_ZN7WebCore14ResourceHandle12firstRequestEv +_ZN7WebCore14ResourceHandle16setDefersLoadingEb +_ZN7WebCore14ResourceHandle20forceContentSniffingEv +_ZN7WebCore14ResourceHandle25loadResourceSynchronouslyEPNS_17NetworkingContextERKNS_15ResourceRequestENS_23StoredCredentialsPolicyERNS_13ResourceErrorERNS_16ResourceResponseERN3WTF6VectorIcLm0ENSB_15CrashOnOverflowELm16EEE +_ZN7WebCore14ResourceHandle25loadResourceSynchronouslyEPNS_17NetworkingContextERKNS_15ResourceRequestENS_23StoredCredentialsPolicyERNS_13ResourceErrorERNS_16ResourceResponseERN3WTF6VectorIcLm0ENSB_15CrashOnOverflowELm16ENSB_10FastMallocEEE +_ZN7WebCore14ResourceHandle6cancelEv +_ZN7WebCore14ResourceHandle6createEPNS_17NetworkingContextERKNS_15ResourceRequestEPNS_20ResourceHandleClientEbbb +_ZN7WebCore14ResourceHandleD0Ev +_ZN7WebCore14ResourceHandleD1Ev +_ZN7WebCore14ResourceHandleD2Ev +_ZN7WebCore14ResourceLoader14cancelledErrorEv +_ZN7WebCore14ResourceLoader31didBlockAuthenticationChallengeEv +_ZN7WebCore14ResourceLoader5startEv +_ZN7WebCore14ResourceLoader6cancelERKNS_13ResourceErrorE +_ZN7WebCore14ResourceLoader6cancelEv +_ZN7WebCore14SQLiteDatabase11tableExistsERKN3WTF6StringE +_ZN7WebCore14SQLiteDatabase12lastErrorMsgEv +_ZN7WebCore14SQLiteDatabase14clearAllTablesEv +_ZN7WebCore14SQLiteDatabase14executeCommandERKN3WTF6StringE +_ZN7WebCore14SQLiteDatabase16runVacuumCommandEv +_ZN7WebCore14SQLiteDatabase20setCollationFunctionERKN3WTF6StringEONS1_8FunctionIFiiPKviS7_EEE +_ZN7WebCore14SQLiteDatabase22disableThreadingChecksEv +_ZN7WebCore14SQLiteDatabase27runIncrementalVacuumCommandEv +_ZN7WebCore14SQLiteDatabase27turnOnIncrementalAutoVacuumEv +_ZN7WebCore14SQLiteDatabase29setIsDatabaseOpeningForbiddenEb +_ZN7WebCore14SQLiteDatabase4openERKN3WTF6StringENS0_8OpenModeE +_ZN7WebCore14SQLiteDatabase4openERKN3WTF6StringEb +_ZN7WebCore14SQLiteDatabase5closeEv +_ZN7WebCore14SQLiteDatabase9interruptEv +_ZN7WebCore14SQLiteDatabase9lastErrorEv +_ZN7WebCore14SQLiteDatabaseC1Ev +_ZN7WebCore14SQLiteDatabaseC2Ev +_ZN7WebCore14SQLiteDatabaseD1Ev +_ZN7WebCore14SQLiteDatabaseD2Ev +_ZN7WebCore14SchemeRegistry15isBuiltinSchemeERKN3WTF6StringE +_ZN7WebCore14SchemeRegistry24registerURLSchemeAsLocalERKN3WTF6StringE +_ZN7WebCore14SchemeRegistry25registerURLSchemeAsSecureERKN3WTF6StringE +_ZN7WebCore14SchemeRegistry27registerURLSchemeAsNoAccessERKN3WTF6StringE +_ZN7WebCore14SchemeRegistry27shouldTreatURLSchemeAsLocalERKN3WTF6StringE +_ZN7WebCore14SchemeRegistry30registerURLSchemeAsCORSEnabledERKN3WTF6StringE +_ZN7WebCore14SchemeRegistry32canServiceWorkersHandleURLSchemeERKN3WTF6StringE +_ZN7WebCore14SchemeRegistry32registerURLSchemeAsEmptyDocumentERKN3WTF6StringE +_ZN7WebCore14SchemeRegistry33shouldTreatURLSchemeAsCORSEnabledERKN3WTF6StringE +_ZN7WebCore14SchemeRegistry34registerURLSchemeAsDisplayIsolatedERKN3WTF6StringE +_ZN7WebCore14SchemeRegistry34shouldLoadURLSchemeAsEmptyDocumentERKN3WTF6StringE +_ZN7WebCore14SchemeRegistry35registerURLSchemeAsCachePartitionedERKN3WTF6StringE +_ZN7WebCore14SchemeRegistry36registerAsCanDisplayOnlyIfCanRequestERKN3WTF6StringE +_ZN7WebCore14SchemeRegistry36registerURLSchemeAsAlwaysRevalidatedERKN3WTF6StringE +_ZN7WebCore14SchemeRegistry40registerURLSchemeServiceWorkersCanHandleERKN3WTF6StringE +_ZN7WebCore14SchemeRegistry40setDomainRelaxationForbiddenForURLSchemeEbRKN3WTF6StringE +_ZN7WebCore14SchemeRegistry41allowsLocalStorageAccessInPrivateBrowsingERKN3WTF6StringE +_ZN7WebCore14SchemeRegistry49registerURLSchemeAsBypassingContentSecurityPolicyERKN3WTF6StringE +_ZN7WebCore14SchemeRegistry57removeURLSchemeRegisteredAsBypassingContentSecurityPolicyERKN3WTF6StringE +_ZN7WebCore14SchemeRegistry58registerURLSchemeAsAllowingDatabaseAccessInPrivateBrowsingERKN3WTF6StringE +_ZN7WebCore14SchemeRegistry62registerURLSchemeAsAllowingLocalStorageAccessInPrivateBrowsingERKN3WTF6StringE +_ZN7WebCore14ScrollableArea15contentsResizedEv +_ZN7WebCore14ScrollableArea15didAddScrollbarEPNS_9ScrollbarENS_20ScrollbarOrientationE +_ZN7WebCore14ScrollableArea16handleWheelEventERKNS_18PlatformWheelEventE +_ZN7WebCore14ScrollableArea17willEndLiveResizeEv +_ZN7WebCore14ScrollableArea19invalidateScrollbarERNS_9ScrollbarERKNS_7IntRectE +_ZN7WebCore14ScrollableArea19willRemoveScrollbarEPNS_9ScrollbarENS_20ScrollbarOrientationE +_ZN7WebCore14ScrollableArea19willStartLiveResizeEv +_ZN7WebCore14ScrollableArea21scrollbarStyleChangedENS_14ScrollbarStyleEb +_ZN7WebCore14ScrollableArea22invalidateScrollCornerERKNS_7IntRectE +_ZN7WebCore14ScrollableArea24setScrollbarOverlayStyleENS_21ScrollbarOverlayStyleE +_ZN7WebCore14ScrollableArea27availableContentSizeChangedENS0_25AvailableSizeChangeReasonE +_ZN7WebCore14ScrollableArea27notifyScrollPositionChangedERKNS_8IntPointE +_ZN7WebCore14ScrollableArea27scrollToOffsetWithAnimationERKNS_10FloatPointENS_14ScrollClampingE +_ZN7WebCore14ScrollableArea28setScrollOffsetFromInternalsERKNS_8IntPointE +_ZN7WebCore14ScrollableArea30scrollToOffsetWithoutAnimationERKNS_10FloatPointENS_14ScrollClampingE +_ZN7WebCore14ScrollableArea31adjustScrollStepForFixedContentEfNS_20ScrollbarOrientationENS_17ScrollGranularityE +_ZN7WebCore14ScrollableArea32computeScrollbarValueAndOverhangEfffRfS1_ +_ZN7WebCore14ScrollableArea34constrainScrollPositionForOverhangERKNS_10LayoutRectERKNS_10LayoutSizeERKNS_11LayoutPointES9_ii +_ZN7WebCore14ScrollableArea6scrollENS_15ScrollDirectionENS_17ScrollGranularityEf +_ZN7WebCore14ScrollableAreaC2Ev +_ZN7WebCore14ScrollableAreaD0Ev +_ZN7WebCore14ScrollableAreaD1Ev +_ZN7WebCore14ScrollableAreaD2Ev +_ZN7WebCore14ScrollbarTheme5themeEv +_ZN7WebCore14SecurityOrigin12createUniqueEv +_ZN7WebCore14SecurityOrigin16createFromStringERKN3WTF6StringE +_ZN7WebCore14SecurityOrigin30isLocalHostOrLoopbackIPAddressEN3WTF10StringViewE +_ZN7WebCore14SecurityOrigin6createERKN3WTF3URLE +_ZN7WebCore14SecurityOrigin6createERKN3WTF6StringES4_NS1_8OptionalItEE +_ZN7WebCore14SecurityOrigin6createERKN3WTF6StringES4_St8optionalItE +_ZN7WebCore14SecurityOrigin6createERKNS_3URLE +_ZN7WebCore14SecurityPolicy13allowAccessToERKNS_21UserContentURLPatternE +_ZN7WebCore14SecurityPolicy18setLocalLoadPolicyENS0_15LocalLoadPolicyE +_ZN7WebCore14SecurityPolicy18shouldHideReferrerERKN3WTF3URLERKNS1_6StringE +_ZN7WebCore14SecurityPolicy18shouldHideReferrerERKNS_3URLERKN3WTF6StringE +_ZN7WebCore14SecurityPolicy22generateReferrerHeaderENS_14ReferrerPolicyERKN3WTF3URLERKNS2_6StringE +_ZN7WebCore14SecurityPolicy22generateReferrerHeaderENS_14ReferrerPolicyERKNS_3URLERKN3WTF6StringE +_ZN7WebCore14SecurityPolicy27resetOriginAccessAllowlistsEv +_ZN7WebCore14SecurityPolicy27resetOriginAccessWhitelistsEv +_ZN7WebCore14SecurityPolicy29addOriginAccessAllowlistEntryERKNS_14SecurityOriginERKN3WTF6StringES7_b +_ZN7WebCore14SecurityPolicy29addOriginAccessWhitelistEntryERKNS_14SecurityOriginERKN3WTF6StringES7_b +_ZN7WebCore14SecurityPolicy32removeOriginAccessAllowlistEntryERKNS_14SecurityOriginERKN3WTF6StringES7_b +_ZN7WebCore14SecurityPolicy32removeOriginAccessWhitelistEntryERKNS_14SecurityOriginERKN3WTF6StringES7_b +_ZN7WebCore14SocketProvider22createWebSocketChannelERNS_8DocumentERNS_22WebSocketChannelClientE +_ZN7WebCore14SocketProvider24createSocketStreamHandleERKN3WTF3URLERNS_24SocketStreamHandleClientEN3PAL9SessionIDERKNS1_6StringEPKNS_22StorageSessionProviderE +_ZN7WebCore14SocketProvider24createSocketStreamHandleERKNS_3URLERNS_24SocketStreamHandleClientEN3PAL9SessionIDERKN3WTF6StringE +_ZN7WebCore14SocketProvider6createEv +_ZN7WebCore14SocketProviderC1Ev +_ZN7WebCore14SocketProviderC2Ev +_ZN7WebCore14SocketProviderD0Ev +_ZN7WebCore14SocketProviderD1Ev +_ZN7WebCore14SocketProviderD2Ev +_ZN7WebCore14StaticNodeList6createEON3WTF6VectorINS1_3RefINS_4NodeENS1_13DumbPtrTraitsIS4_EEEELm0ENS1_15CrashOnOverflowELm16EEE +_ZN7WebCore14StaticNodeListC1EON3WTF6VectorINS1_3RefINS_4NodeENS1_13DumbPtrTraitsIS4_EEEELm0ENS1_15CrashOnOverflowELm16EEE +_ZN7WebCore14StaticNodeListC2EON3WTF6VectorINS1_3RefINS_4NodeENS1_13DumbPtrTraitsIS4_EEEELm0ENS1_15CrashOnOverflowELm16EEE +_ZN7WebCore14StaticNodeListD0Ev +_ZN7WebCore14StaticNodeListD1Ev +_ZN7WebCore14StaticNodeListD2Ev +_ZN7WebCore14StaticNodeListdaEPv +_ZN7WebCore14StaticNodeListdlEPv +_ZN7WebCore14StaticNodeListnaEm +_ZN7WebCore14StaticNodeListnaEmPv +_ZN7WebCore14StaticNodeListnwEm +_ZN7WebCore14StaticNodeListnwEmPv +_ZN7WebCore14StyleSheetList4itemEj +_ZN7WebCore14StyleSheetListD1Ev +_ZN7WebCore14StyleSheetListD2Ev +_ZN7WebCore14SubframeLoader12allowPluginsEv +_ZN7WebCore14WebSocketFrameC1ENS0_6OpCodeEbbbPKcm +_ZN7WebCore14WebSocketFrameC2ENS0_6OpCodeEbbbPKcm +_ZN7WebCore14XMLHttpRequestD0Ev +_ZN7WebCore14XMLHttpRequestD1Ev +_ZN7WebCore14XMLHttpRequestD2Ev +_ZN7WebCore14areRangesEqualEPKNS_5RangeES2_ +_ZN7WebCore14characterCountERKNS_11SimpleRangeEt +_ZN7WebCore14cookiesEnabledERKNS_21NetworkStorageSessionE +_ZN7WebCore14cookiesEnabledERKNS_8DocumentE +_ZN7WebCore14endOfParagraphERKNS_15VisiblePositionENS_27EditingBoundaryCrossingRuleE +_ZN7WebCore14foldQuoteMarksERKN3WTF6StringE +_ZN7WebCore14isPublicSuffixERKN3WTF6StringE +_ZN7WebCore14lineBreakTableE +_ZN7WebCore14roundedIntRectERKNS_9FloatRectE +_ZN7WebCore14stopResolveDNSEm +_ZN7WebCore14valueForLengthERKNS_6LengthENS_10LayoutUnitE +_ZN7WebCore15ActiveDOMObject15suspendIfNeededEv +_ZN7WebCore15ActiveDOMObject20queueTaskInEventLoopENS_10TaskSourceEON3WTF8FunctionIFvvEEE +_ZN7WebCore15ActiveDOMObject32queueTaskToDispatchEventInternalERNS_11EventTargetENS_10TaskSourceEON3WTF3RefINS_5EventENS4_13DumbPtrTraitsIS6_EEEE +_ZN7WebCore15ActiveDOMObject4stopEv +_ZN7WebCore15ActiveDOMObject6resumeEv +_ZN7WebCore15ActiveDOMObject7suspendENS_19ReasonForSuspensionE +_ZN7WebCore15ActiveDOMObjectC2EPNS_22ScriptExecutionContextE +_ZN7WebCore15ActiveDOMObjectC2EPNS_22ScriptExecutionContextENS0_33CheckedScriptExecutionContextTypeE +_ZN7WebCore15ActiveDOMObjectC2EPNS_8DocumentE +_ZN7WebCore15ActiveDOMObjectC2ERKS0_ +_ZN7WebCore15ActiveDOMObjectC2ERNS_8DocumentE +_ZN7WebCore15ActiveDOMObjectD0Ev +_ZN7WebCore15ActiveDOMObjectD1Ev +_ZN7WebCore15ActiveDOMObjectD2Ev +_ZN7WebCore15AffineTransform12makeIdentityEv +_ZN7WebCore15AffineTransform15scaleNonUniformEdd +_ZN7WebCore15AffineTransform4skewEdd +_ZN7WebCore15AffineTransform5blendERKS0_d +_ZN7WebCore15AffineTransform5flipXEv +_ZN7WebCore15AffineTransform5flipYEv +_ZN7WebCore15AffineTransform5scaleERKNS_9FloatSizeE +_ZN7WebCore15AffineTransform5scaleEd +_ZN7WebCore15AffineTransform5shearEdd +_ZN7WebCore15AffineTransform6rotateEd +_ZN7WebCore15AffineTransform8multiplyERKS0_ +_ZN7WebCore15AffineTransform9translateERKNS_10FloatPointE +_ZN7WebCore15AffineTransform9translateERKNS_9FloatSizeE +_ZN7WebCore15AffineTransform9translateEdd +_ZN7WebCore15AffineTransformC1Edddddd +_ZN7WebCore15AffineTransformC1Ev +_ZN7WebCore15AffineTransformC2Edddddd +_ZN7WebCore15AffineTransformC2Ev +_ZN7WebCore15ArchiveResource6createEON3WTF6RefPtrINS_12SharedBufferENS1_13DumbPtrTraitsIS3_EEEERKNS1_3URLERKNS1_6StringESD_SD_RKNS_16ResourceResponseE +_ZN7WebCore15ArchiveResource6createEON3WTF6RefPtrINS_12SharedBufferENS1_13DumbPtrTraitsIS3_EEEERKNS_3URLERKNS1_6StringESD_SD_RKNS_16ResourceResponseE +_ZN7WebCore15AsyncFileStream11openForReadERKN3WTF6StringExx +_ZN7WebCore15AsyncFileStream4readEPci +_ZN7WebCore15AsyncFileStream5closeEv +_ZN7WebCore15AsyncFileStream7getSizeERKN3WTF6StringENS1_8OptionalINS1_8WallTimeEEE +_ZN7WebCore15AsyncFileStream7getSizeERKN3WTF6StringEd +_ZN7WebCore15AsyncFileStream7performEON3WTF8FunctionIFNS2_IFvRNS_16FileStreamClientEEEERNS_10FileStreamEEEE +_ZN7WebCore15AsyncFileStreamC1ERNS_16FileStreamClientE +_ZN7WebCore15AsyncFileStreamC2ERNS_16FileStreamClientE +_ZN7WebCore15AsyncFileStreamD1Ev +_ZN7WebCore15AsyncFileStreamD2Ev +_ZN7WebCore15AsyncFileStreamdaEPv +_ZN7WebCore15AsyncFileStreamdlEPv +_ZN7WebCore15AsyncFileStreamnaEm +_ZN7WebCore15AsyncFileStreamnaEmPv +_ZN7WebCore15AsyncFileStreamnwEm +_ZN7WebCore15AsyncFileStreamnwEmPv +_ZN7WebCore15CSSFontFaceRule5styleEv +_ZN7WebCore15CSSGroupingRule10deleteRuleEj +_ZN7WebCore15CSSGroupingRule10insertRuleERKN3WTF6StringEj +_ZN7WebCore15ContextMenuItemC1ENS_17ContextMenuActionERKN3WTF6StringEbbRKNS2_6VectorIS0_Lm0ENS2_15CrashOnOverflowELm16EEE +_ZN7WebCore15ContextMenuItemC1ENS_19ContextMenuItemTypeENS_17ContextMenuActionERKN3WTF6StringEPNS_11ContextMenuE +_ZN7WebCore15ContextMenuItemC1ENS_19ContextMenuItemTypeENS_17ContextMenuActionERKN3WTF6StringEbb +_ZN7WebCore15ContextMenuItemC2ENS_17ContextMenuActionERKN3WTF6StringEbbRKNS2_6VectorIS0_Lm0ENS2_15CrashOnOverflowELm16EEE +_ZN7WebCore15ContextMenuItemC2ENS_19ContextMenuItemTypeENS_17ContextMenuActionERKN3WTF6StringEPNS_11ContextMenuE +_ZN7WebCore15ContextMenuItemC2ENS_19ContextMenuItemTypeENS_17ContextMenuActionERKN3WTF6StringEbb +_ZN7WebCore15ContextMenuItemD1Ev +_ZN7WebCore15ContextMenuItemD2Ev +_ZN7WebCore15DOMWrapperWorld13clearWrappersEv +_ZN7WebCore15DOMWrapperWorldD1Ev +_ZN7WebCore15DOMWrapperWorldD2Ev +_ZN7WebCore15DatabaseManager10initializeERKN3WTF6StringE +_ZN7WebCore15DatabaseManager14setIsAvailableEb +_ZN7WebCore15DatabaseManager16hasOpenDatabasesERNS_22ScriptExecutionContextE +_ZN7WebCore15DatabaseManager16hasOpenDatabasesERNS_8DocumentE +_ZN7WebCore15DatabaseManager19fullPathForDatabaseERNS_14SecurityOriginERKN3WTF6StringEb +_ZN7WebCore15DatabaseManager23detailsForNameAndOriginERKN3WTF6StringERNS_14SecurityOriginE +_ZN7WebCore15DatabaseManager9setClientEPNS_21DatabaseManagerClientE +_ZN7WebCore15DatabaseManager9singletonEv +_ZN7WebCore15DatabaseTracker12deleteOriginERKNS_18SecurityOriginDataE +_ZN7WebCore15DatabaseTracker13databaseNamesERKNS_18SecurityOriginDataE +_ZN7WebCore15DatabaseTracker13isInitializedEv +_ZN7WebCore15DatabaseTracker14deleteDatabaseERKNS_18SecurityOriginDataERKN3WTF6StringE +_ZN7WebCore15DatabaseTracker17closeAllDatabasesENS_20CurrentQueryBehaviorE +_ZN7WebCore15DatabaseTracker19fullPathForDatabaseERKNS_18SecurityOriginDataERKN3WTF6StringEb +_ZN7WebCore15DatabaseTracker23trackerWithDatabasePathERKN3WTF6StringE +_ZN7WebCore15DatabaseTracker28deleteDatabasesModifiedSinceEN3WTF8WallTimeE +_ZN7WebCore15DatabaseTracker29deleteAllDatabasesImmediatelyEv +_ZN7WebCore15DatabaseTracker5quotaERKNS_18SecurityOriginDataE +_ZN7WebCore15DatabaseTracker5usageERKNS_18SecurityOriginDataE +_ZN7WebCore15DatabaseTracker7originsEv +_ZN7WebCore15DatabaseTracker8setQuotaERKNS_18SecurityOriginDataEy +_ZN7WebCore15DatabaseTracker9singletonEv +_ZN7WebCore15DeferredPromise12callFunctionERN3JSC14JSGlobalObjectENS0_11ResolveModeENS1_7JSValueE +_ZN7WebCore15DeferredPromise12callFunctionERN3JSC9ExecStateENS1_7JSValueES4_ +_ZN7WebCore15DeferredPromise6rejectENS_13ExceptionCodeERKN3WTF6StringE +_ZN7WebCore15DeferredPromise6rejectENS_13ExceptionCodeERKN3WTF6StringENS_15RejectAsHandledE +_ZN7WebCore15DeferredPromise6rejectENS_9ExceptionENS_15RejectAsHandledE +_ZN7WebCore15FocusController10setFocusedEb +_ZN7WebCore15FocusController15setFocusedFrameEPNS_5FrameE +_ZN7WebCore15FocusController15setInitialFocusENS_14FocusDirectionEPNS_13KeyboardEventE +_ZN7WebCore15FocusController17setFocusedElementEPNS_7ElementERNS_5FrameENS_14FocusDirectionE +_ZN7WebCore15FocusController20nextFocusableElementERNS_4NodeE +_ZN7WebCore15FocusController23relinquishFocusToChromeENS_14FocusDirectionE +_ZN7WebCore15FocusController24previousFocusableElementERNS_4NodeE +_ZN7WebCore15FocusController9setActiveEb +_ZN7WebCore15FontDescription18setSpecifiedLocaleERKN3WTF10AtomStringE +_ZN7WebCore15FontDescriptionC1Ev +_ZN7WebCore15FontDescriptionC2Ev +_ZN7WebCore15GraphicsContext10strokePathERKNS_4PathE +_ZN7WebCore15GraphicsContext10strokeRectERKNS_9FloatRectEf +_ZN7WebCore15GraphicsContext11clearShadowEv +_ZN7WebCore15GraphicsContext12setFillColorERKNS_5ColorE +_ZN7WebCore15GraphicsContext14setStrokeColorERKNS_5ColorE +_ZN7WebCore15GraphicsContext15drawImageBufferERNS_11ImageBufferERKNS_10FloatPointERKNS_20ImagePaintingOptionsE +_ZN7WebCore15GraphicsContext15drawLineForTextERKNS_10FloatPointEfbbNS_11StrokeStyleE +_ZN7WebCore15GraphicsContext15drawLineForTextERKNS_9FloatRectEbbNS_11StrokeStyleE +_ZN7WebCore15GraphicsContext15drawNativeImageERKN3WTF6RefPtrI14_cairo_surfaceNS1_13DumbPtrTraitsIS3_EEEERKNS_9FloatSizeERKNS_9FloatRectESE_NS_17CompositeOperatorENS_9BlendModeENS_16ImageOrientationE +_ZN7WebCore15GraphicsContext15drawNativeImageERKN3WTF6RefPtrI14_cairo_surfaceNS1_13DumbPtrTraitsIS3_EEEERKNS_9FloatSizeERKNS_9FloatRectESE_RKNS_20ImagePaintingOptionsE +_ZN7WebCore15GraphicsContext15setFillGradientEON3WTF3RefINS_8GradientENS1_13DumbPtrTraitsIS3_EEEE +_ZN7WebCore15GraphicsContext18setShouldAntialiasEb +_ZN7WebCore15GraphicsContext18setStrokeThicknessEf +_ZN7WebCore15GraphicsContext20endTransparencyLayerEv +_ZN7WebCore15GraphicsContext20setShouldSmoothFontsEb +_ZN7WebCore15GraphicsContext21setCompositeOperationENS_17CompositeOperatorENS_9BlendModeE +_ZN7WebCore15GraphicsContext22applyDeviceScaleFactorEf +_ZN7WebCore15GraphicsContext22beginTransparencyLayerEf +_ZN7WebCore15GraphicsContext24drawConsumingImageBufferESt10unique_ptrINS_11ImageBufferESt14default_deleteIS2_EERKNS_10FloatPointERKNS_20ImagePaintingOptionsE +_ZN7WebCore15GraphicsContext28setImageInterpolationQualityENS_20InterpolationQualityE +_ZN7WebCore15GraphicsContext4clipERKNS_9FloatRectE +_ZN7WebCore15GraphicsContext4saveEv +_ZN7WebCore15GraphicsContext5scaleERKNS_9FloatSizeE +_ZN7WebCore15GraphicsContext7restoreEv +_ZN7WebCore15GraphicsContext8fillPathERKNS_4PathE +_ZN7WebCore15GraphicsContext8fillRectERKNS_9FloatRectE +_ZN7WebCore15GraphicsContext8fillRectERKNS_9FloatRectERKNS_5ColorE +_ZN7WebCore15GraphicsContext9clearRectERKNS_9FloatRectE +_ZN7WebCore15GraphicsContext9drawImageERNS_5ImageERKNS_10FloatPointERKNS_20ImagePaintingOptionsE +_ZN7WebCore15GraphicsContext9drawImageERNS_5ImageERKNS_9FloatRectERKNS_20ImagePaintingOptionsE +_ZN7WebCore15GraphicsContext9setShadowERKNS_9FloatSizeEfRKNS_5ColorE +_ZN7WebCore15GraphicsContext9translateEff +_ZN7WebCore15GraphicsContextC1EPNS_20PlatformContextCairoE +_ZN7WebCore15GraphicsContextC1ERKN3WTF8FunctionIFSt10unique_ptrINS_19GraphicsContextImplESt14default_deleteIS4_EERS0_EEE +_ZN7WebCore15GraphicsContextC2EPNS_20PlatformContextCairoE +_ZN7WebCore15GraphicsContextC2ERKN3WTF8FunctionIFSt10unique_ptrINS_19GraphicsContextImplESt14default_deleteIS4_EERS0_EEE +_ZN7WebCore15GraphicsContextD1Ev +_ZN7WebCore15GraphicsContextD2Ev +_ZN7WebCore15HTMLBaseElement7setHrefERKN3WTF10AtomStringE +_ZN7WebCore15HTMLBaseElement7setHrefERKN3WTF12AtomicStringE +_ZN7WebCore15HTMLFormElement10setEnctypeERKN3WTF6StringE +_ZN7WebCore15HTMLFormElement13checkValidityEv +_ZN7WebCore15HTMLFormElement15setAutocompleteERKN3WTF10AtomStringE +_ZN7WebCore15HTMLFormElement15setAutocompleteERKN3WTF12AtomicStringE +_ZN7WebCore15HTMLFormElement25elementsForNativeBindingsEv +_ZN7WebCore15HTMLFormElement5resetEv +_ZN7WebCore15HTMLFormElement6submitEv +_ZN7WebCore15HTMLFormElement9setActionERKN3WTF6StringE +_ZN7WebCore15HTMLFormElement9setMethodERKN3WTF6StringE +_ZN7WebCore15HTMLLinkElement14setCrossOriginERKN3WTF10AtomStringE +_ZN7WebCore15HTMLLinkElement14setCrossOriginERKN3WTF12AtomicStringE +_ZN7WebCore15HTMLLinkElement5setAsERKN3WTF10AtomStringE +_ZN7WebCore15HTMLLinkElement5setAsERKN3WTF12AtomicStringE +_ZN7WebCore15HTMLLinkElement7relListEv +_ZN7WebCore15HTTPHeaderField6createEON3WTF6StringES3_ +_ZN7WebCore15HTTPHeaderFieldC1EON3WTF6StringES3_ +_ZN7WebCore15HTTPHeaderFieldC1ERKS0_ +_ZN7WebCore15HTTPHeaderFieldC2EON3WTF6StringES3_ +_ZN7WebCore15HTTPHeaderFieldC2ERKS0_ +_ZN7WebCore15HTTPHeaderFieldD1Ev +_ZN7WebCore15HTTPHeaderFieldD2Ev +_ZN7WebCore15HTTPHeaderFieldaSERKS0_ +_ZN7WebCore15HitTestLocation12rectForPointERKNS_11LayoutPointEjjjj +_ZN7WebCore15HitTestLocationC1ERKNS_10FloatPointE +_ZN7WebCore15HitTestLocationC1ERKS0_ +_ZN7WebCore15HitTestLocationC1Ev +_ZN7WebCore15HitTestLocationC2ERKNS_10FloatPointE +_ZN7WebCore15HitTestLocationC2ERKS0_ +_ZN7WebCore15HitTestLocationC2Ev +_ZN7WebCore15HitTestLocationD1Ev +_ZN7WebCore15HitTestLocationD2Ev +_ZN7WebCore15InspectorClient31doDispatchMessageOnFrontendPageEPNS_4PageERKN3WTF6StringE +_ZN7WebCore15JSDOMWindowBase14finishCreationERN3JSC2VMEPNS_13JSWindowProxyE +_ZN7WebCore15JSDOMWindowBase14updateDocumentEv +_ZN7WebCore15JSDOMWindowBase15createStructureERN3JSC2VMENS1_7JSValueE +_ZN7WebCore15JSDOMWindowBase17moduleLoaderFetchEPN3JSC14JSGlobalObjectEPNS1_9ExecStateEPNS1_14JSModuleLoaderENS1_7JSValueES8_S8_ +_ZN7WebCore15JSDOMWindowBase19moduleLoaderResolveEPN3JSC14JSGlobalObjectEPNS1_9ExecStateEPNS1_14JSModuleLoaderENS1_7JSValueES8_S8_ +_ZN7WebCore15JSDOMWindowBase20moduleLoaderEvaluateEPN3JSC14JSGlobalObjectEPNS1_9ExecStateEPNS1_14JSModuleLoaderENS1_7JSValueES8_S8_ +_ZN7WebCore15JSDOMWindowBase20queueTaskToEventLoopERN3JSC14JSGlobalObjectEON3WTF3RefINS1_9MicrotaskENS4_13DumbPtrTraitsIS6_EEEE +_ZN7WebCore15JSDOMWindowBase21shouldInterruptScriptEPKN3JSC14JSGlobalObjectE +_ZN7WebCore15JSDOMWindowBase22javaScriptRuntimeFlagsEPKN3JSC14JSGlobalObjectE +_ZN7WebCore15JSDOMWindowBase22supportsRichSourceInfoEPKN3JSC14JSGlobalObjectE +_ZN7WebCore15JSDOMWindowBase23promiseRejectionTrackerEPN3JSC14JSGlobalObjectEPNS1_9ExecStateEPNS1_9JSPromiseENS1_27JSPromiseRejectionOperationE +_ZN7WebCore15JSDOMWindowBase24moduleLoaderImportModuleEPN3JSC14JSGlobalObjectEPNS1_9ExecStateEPNS1_14JSModuleLoaderEPNS1_8JSStringENS1_7JSValueERKNS1_12SourceOriginE +_ZN7WebCore15JSDOMWindowBase25s_globalObjectMethodTableE +_ZN7WebCore15JSDOMWindowBase25willRemoveFromWindowProxyEv +_ZN7WebCore15JSDOMWindowBase34shouldInterruptScriptBeforeTimeoutEPKN3JSC14JSGlobalObjectE +_ZN7WebCore15JSDOMWindowBase36fireFrameClearedWatchpointsForWindowEPNS_9DOMWindowE +_ZN7WebCore15JSDOMWindowBase38moduleLoaderCreateImportMetaPropertiesEPN3JSC14JSGlobalObjectEPNS1_9ExecStateEPNS1_14JSModuleLoaderENS1_7JSValueEPNS1_14JSModuleRecordES8_ +_ZN7WebCore15JSDOMWindowBase4infoEv +_ZN7WebCore15JSDOMWindowBase6s_infoE +_ZN7WebCore15JSDOMWindowBase7destroyEPN3JSC6JSCellE +_ZN7WebCore15JSDOMWindowBaseC1ERN3JSC2VMEPNS1_9StructureEON3WTF6RefPtrINS_9DOMWindowENS6_13DumbPtrTraitsIS8_EEEEPNS_13JSWindowProxyE +_ZN7WebCore15JSDOMWindowBaseC2ERN3JSC2VMEPNS1_9StructureEON3WTF6RefPtrINS_9DOMWindowENS6_13DumbPtrTraitsIS8_EEEEPNS_13JSWindowProxyE +_ZN7WebCore15JSDOMWindowBaseD1Ev +_ZN7WebCore15JSDOMWindowBaseD2Ev +_ZN7WebCore15JSEventListener6createEN3JSC7JSValueERNS1_8JSObjectEbRNS_15DOMWrapperWorldE +_ZN7WebCore15JSEventListener6createEPN3JSC8JSObjectES3_bRNS_15DOMWrapperWorldE +_ZN7WebCore15JSFetchResponse11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE +_ZN7WebCore15JSFetchResponse14finishCreationERN3JSC2VME +_ZN7WebCore15JSFetchResponse14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE +_ZN7WebCore15JSFetchResponse15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore15JSFetchResponse15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE +_ZN7WebCore15JSFetchResponse15subspaceForImplERN3JSC2VME +_ZN7WebCore15JSFetchResponse4infoEv +_ZN7WebCore15JSFetchResponse6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_13FetchResponseENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore15JSFetchResponse6s_infoE +_ZN7WebCore15JSFetchResponse7destroyEPN3JSC6JSCellE +_ZN7WebCore15JSFetchResponse9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore15JSFetchResponse9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore15JSFetchResponseC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_13FetchResponseENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore15JSFetchResponseC1ERKS0_ +_ZN7WebCore15JSFetchResponseC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_13FetchResponseENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore15JSFetchResponseC2ERKS0_ +_ZN7WebCore15JSFetchResponseD1Ev +_ZN7WebCore15JSFetchResponseD2Ev +_ZN7WebCore15JSFetchResponseaSERKS0_ +_ZN7WebCore15JSSVGSVGElement11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE +_ZN7WebCore15JSSVGSVGElement14finishCreationERN3JSC2VME +_ZN7WebCore15JSSVGSVGElement14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE +_ZN7WebCore15JSSVGSVGElement15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore15JSSVGSVGElement15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE +_ZN7WebCore15JSSVGSVGElement15subspaceForImplERN3JSC2VME +_ZN7WebCore15JSSVGSVGElement4infoEv +_ZN7WebCore15JSSVGSVGElement6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_13SVGSVGElementENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore15JSSVGSVGElement6s_infoE +_ZN7WebCore15JSSVGSVGElement9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore15JSSVGSVGElement9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore15JSSVGSVGElementC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_13SVGSVGElementENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore15JSSVGSVGElementC1ERKS0_ +_ZN7WebCore15JSSVGSVGElementC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_13SVGSVGElementENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore15JSSVGSVGElementC2ERKS0_ +_ZN7WebCore15JSSVGSVGElementD1Ev +_ZN7WebCore15JSSVGSVGElementD2Ev +_ZN7WebCore15NavigatorBeacon4fromERNS_9NavigatorE +_ZN7WebCore15PasteboardImageC1Ev +_ZN7WebCore15PasteboardImageC2Ev +_ZN7WebCore15PasteboardImageD1Ev +_ZN7WebCore15PasteboardImageD2Ev +_ZN7WebCore15PlatformDisplay13sharedDisplayEv +_ZN7WebCore15PlatformDisplay16sharingGLContextEv +_ZN7WebCore15PlatformDisplay27sharedDisplayForCompositingEv +_ZN7WebCore15RemoteDOMWindowC1EON3WTF3RefINS_11RemoteFrameENS1_13DumbPtrTraitsIS3_EEEEONS_22GlobalWindowIdentifierE +_ZN7WebCore15RemoteDOMWindowC2EON3WTF3RefINS_11RemoteFrameENS1_13DumbPtrTraitsIS3_EEEEONS_22GlobalWindowIdentifierE +_ZN7WebCore15RenderBlockFlow30findClosestTextAtAbsolutePointERKNS_10FloatPointE +_ZN7WebCore15ResourceRequest41updateFromDelegatePreservingOldPropertiesERKS0_ +_ZN7WebCore15SQLiteStatement10bindDoubleEid +_ZN7WebCore15SQLiteStatement12getColumnIntEi +_ZN7WebCore15SQLiteStatement12isColumnNullEi +_ZN7WebCore15SQLiteStatement13getColumnTextEi +_ZN7WebCore15SQLiteStatement14executeCommandEv +_ZN7WebCore15SQLiteStatement14getColumnInt64Ei +_ZN7WebCore15SQLiteStatement15getColumnDoubleEi +_ZN7WebCore15SQLiteStatement21getColumnBlobAsStringEi +_ZN7WebCore15SQLiteStatement21getColumnBlobAsVectorEiRN3WTF6VectorIcLm0ENS1_15CrashOnOverflowELm16EEE +_ZN7WebCore15SQLiteStatement21getColumnBlobAsVectorEiRN3WTF6VectorIcLm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN7WebCore15SQLiteStatement21getColumnBlobAsVectorEiRN3WTF6VectorIhLm0ENS1_15CrashOnOverflowELm16EEE +_ZN7WebCore15SQLiteStatement21getColumnBlobAsVectorEiRN3WTF6VectorIhLm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN7WebCore15SQLiteStatement22isColumnDeclaredAsBlobEi +_ZN7WebCore15SQLiteStatement4stepEv +_ZN7WebCore15SQLiteStatement5resetEv +_ZN7WebCore15SQLiteStatement7bindIntEii +_ZN7WebCore15SQLiteStatement7prepareEv +_ZN7WebCore15SQLiteStatement8bindBlobEiPKvi +_ZN7WebCore15SQLiteStatement8bindBlobEiRKN3WTF6StringE +_ZN7WebCore15SQLiteStatement8bindNullEi +_ZN7WebCore15SQLiteStatement8bindTextEiRKN3WTF6StringE +_ZN7WebCore15SQLiteStatement8finalizeEv +_ZN7WebCore15SQLiteStatement9bindInt64Eil +_ZN7WebCore15SQLiteStatement9bindValueEiRKN3WTF7VariantIJDnNS1_6StringEdEEE +_ZN7WebCore15SQLiteStatementC1ERNS_14SQLiteDatabaseERKN3WTF6StringE +_ZN7WebCore15SQLiteStatementC2ERNS_14SQLiteDatabaseERKN3WTF6StringE +_ZN7WebCore15SQLiteStatementD1Ev +_ZN7WebCore15SQLiteStatementD2Ev +_ZN7WebCore15ScrollAlignment17alignCenterAlwaysE +_ZN7WebCore15ScrollAlignment19alignCenterIfNeededE +_ZN7WebCore15ScrollAlignment19alignToEdgeIfNeededE +_ZN7WebCore15StringTruncator12leftTruncateERKN3WTF6StringEfRKNS_11FontCascadeERfbf +_ZN7WebCore15StringTruncator13rightTruncateERKN3WTF6StringEfRKNS_11FontCascadeE +_ZN7WebCore15StringTruncator13rightTruncateERKN3WTF6StringEfRKNS_11FontCascadeERfbf +_ZN7WebCore15StringTruncator14centerTruncateERKN3WTF6StringEfRKNS_11FontCascadeE +_ZN7WebCore15StringTruncator14centerTruncateERKN3WTF6StringEfRKNS_11FontCascadeERfbf +_ZN7WebCore15StringTruncator15rightClipToWordERKN3WTF6StringEfRKNS_11FontCascadeERfbfb +_ZN7WebCore15StringTruncator20rightClipToCharacterERKN3WTF6StringEfRKNS_11FontCascadeERfbf +_ZN7WebCore15StringTruncator5widthERKN3WTF6StringERKNS_11FontCascadeE +_ZN7WebCore15UserInputBridge11loadRequestEONS_16FrameLoadRequestENS_11InputSourceE +_ZN7WebCore15UserInputBridge11reloadFrameEPNS_5FrameEN3WTF9OptionSetINS_12ReloadOptionEEENS_11InputSourceE +_ZN7WebCore15UserInputBridge12tryClosePageENS_11InputSourceE +_ZN7WebCore15UserInputBridge14handleKeyEventERKNS_21PlatformKeyboardEventENS_11InputSourceE +_ZN7WebCore15UserInputBridge16handleWheelEventERKNS_18PlatformWheelEventENS_11InputSourceE +_ZN7WebCore15UserInputBridge16stopLoadingFrameEPNS_5FrameENS_11InputSourceE +_ZN7WebCore15UserInputBridge17scrollRecursivelyENS_15ScrollDirectionENS_17ScrollGranularityENS_11InputSourceE +_ZN7WebCore15UserInputBridge20handleAccessKeyEventERKNS_21PlatformKeyboardEventENS_11InputSourceE +_ZN7WebCore15UserInputBridge20handleMouseMoveEventERKNS_18PlatformMouseEventENS_11InputSourceE +_ZN7WebCore15UserInputBridge21handleMouseForceEventERKNS_18PlatformMouseEventENS_11InputSourceE +_ZN7WebCore15UserInputBridge21handleMousePressEventERKNS_18PlatformMouseEventENS_11InputSourceE +_ZN7WebCore15UserInputBridge22handleContextMenuEventERKNS_18PlatformMouseEventERNS_5FrameENS_11InputSourceE +_ZN7WebCore15UserInputBridge23handleMouseReleaseEventERKNS_18PlatformMouseEventENS_11InputSourceE +_ZN7WebCore15UserInputBridge24logicalScrollRecursivelyENS_22ScrollLogicalDirectionENS_17ScrollGranularityENS_11InputSourceE +_ZN7WebCore15UserInputBridge31handleMouseMoveOnScrollbarEventERKNS_18PlatformMouseEventENS_11InputSourceE +_ZN7WebCore15VisiblePositionC1ERKNS_8PositionENS_9EAffinityE +_ZN7WebCore15VisiblePositionC2ERKNS_8PositionENS_9EAffinityE +_ZN7WebCore15WindowEventLoop27breakToAllowRenderingUpdateEv +_ZN7WebCore15XPathExpression8evaluateEPNS_4NodeEtPNS_11XPathResultE +_ZN7WebCore15XPathExpression8evaluateERNS_4NodeEtPNS_11XPathResultE +_ZN7WebCore15XPathExpressionD1Ev +_ZN7WebCore15XPathExpressionD2Ev +_ZN7WebCore15XPathNSResolverC2Ev +_ZN7WebCore15XPathNSResolverD0Ev +_ZN7WebCore15XPathNSResolverD1Ev +_ZN7WebCore15XPathNSResolverD2Ev +_ZN7WebCore15addToBackingSetERN3JSC14JSGlobalObjectERNS0_8JSObjectENS0_7JSValueE +_ZN7WebCore15clearBackingMapERN3JSC14JSGlobalObjectERNS0_8JSObjectE +_ZN7WebCore15clearBackingSetERN3JSC14JSGlobalObjectERNS0_8JSObjectE +_ZN7WebCore15createLiveRangeERKN3WTF8OptionalINS_11SimpleRangeEEE +_ZN7WebCore15createLiveRangeERKNS_11SimpleRangeE +_ZN7WebCore15defaultMIMETypeEv +_ZN7WebCore15hasAnyPlainTextERKNS_11SimpleRangeEt +_ZN7WebCore15hasAnyPlainTextERKNS_5RangeEt +_ZN7WebCore15isDraggableLinkERKNS_7ElementE +_ZN7WebCore15isEndOfDocumentERKNS_15VisiblePositionE +_ZN7WebCore15localizedStringEPKc +_ZN7WebCore15makeSimpleRangeEPKNS_5RangeE +_ZN7WebCore15makeSimpleRangeERKN3WTF3RefINS_5RangeENS0_13DumbPtrTraitsIS2_EEEE +_ZN7WebCore15makeSimpleRangeERKN3WTF6RefPtrINS_5RangeENS0_13DumbPtrTraitsIS2_EEEE +_ZN7WebCore15makeSimpleRangeERKNS_20VisiblePositionRangeE +_ZN7WebCore15makeSimpleRangeERKNS_5RangeE +_ZN7WebCore15makeSimpleRangeERNS_4NodeERKNS_14DocumentMarkerE +_ZN7WebCore15nativeImageSizeERKN3WTF6RefPtrI14_cairo_surfaceNS0_13DumbPtrTraitsIS2_EEEE +_ZN7WebCore15rangeOfContentsERNS_4NodeE +_ZN7WebCore15reportExceptionEPN3JSC14JSGlobalObjectENS0_7JSValueEPNS_12CachedScriptE +_ZN7WebCore15reportExceptionEPN3JSC14JSGlobalObjectEPNS0_9ExceptionEPNS_12CachedScriptEPNS_16ExceptionDetailsE +_ZN7WebCore15reportExceptionEPN3JSC9ExecStateENS0_7JSValueEPNS_12CachedScriptE +_ZN7WebCore15reportExceptionEPN3JSC9ExecStateEPNS0_9ExceptionEPNS_12CachedScriptEPNS_16ExceptionDetailsE +_ZN7WebCore15setToBackingMapERN3JSC14JSGlobalObjectERNS0_8JSObjectENS0_7JSValueES5_ +_ZN7WebCore15startOfDocumentEPKNS_4NodeE +_ZN7WebCore15startOfDocumentERKNS_15VisiblePositionE +_ZN7WebCore15startOfSentenceERKNS_15VisiblePositionE +_ZN7WebCore16BackForwardCache10setMaxSizeEj +_ZN7WebCore16BackForwardCache14addIfCacheableERNS_11HistoryItemEPNS_4PageE +_ZN7WebCore16BackForwardCache14pruneToSizeNowEjNS_13PruningReasonE +_ZN7WebCore16BackForwardCache6removeERNS_11HistoryItemE +_ZN7WebCore16BackForwardCache9singletonEv +_ZN7WebCore16BlobRegistryImpl15registerBlobURLERKN3WTF3URLEONS1_6VectorINS_8BlobPartELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEERKNS1_6StringE +_ZN7WebCore16BlobRegistryImpl15registerBlobURLERKN3WTF3URLES4_ +_ZN7WebCore16BlobRegistryImpl15registerBlobURLERKNS_3URLEON3WTF6VectorINS_8BlobPartELm0ENS4_15CrashOnOverflowELm16EEERKNS4_6StringE +_ZN7WebCore16BlobRegistryImpl15registerBlobURLERKNS_3URLES3_ +_ZN7WebCore16BlobRegistryImpl17unregisterBlobURLERKN3WTF3URLE +_ZN7WebCore16BlobRegistryImpl17unregisterBlobURLERKNS_3URLE +_ZN7WebCore16BlobRegistryImpl18appendStorageItemsEPNS_8BlobDataERKN3WTF6VectorINS_12BlobDataItemELm0ENS3_15CrashOnOverflowELm16EEExx +_ZN7WebCore16BlobRegistryImpl18appendStorageItemsEPNS_8BlobDataERKN3WTF6VectorINS_12BlobDataItemELm0ENS3_15CrashOnOverflowELm16ENS3_10FastMallocEEExx +_ZN7WebCore16BlobRegistryImpl19registerFileBlobURLERKN3WTF3URLEONS1_3RefINS_21BlobDataFileReferenceENS1_13DumbPtrTraitsIS6_EEEERKNS1_6StringE +_ZN7WebCore16BlobRegistryImpl19registerFileBlobURLERKNS_3URLEON3WTF3RefINS_21BlobDataFileReferenceENS4_13DumbPtrTraitsIS6_EEEERKNS4_6StringE +_ZN7WebCore16BlobRegistryImpl19writeBlobToFilePathERKN3WTF3URLERKNS1_6StringEONS1_8FunctionIFvbEEE +_ZN7WebCore16BlobRegistryImpl19writeBlobToFilePathERKNS_3URLERKN3WTF6StringEONS4_8FunctionIFvbEEE +_ZN7WebCore16BlobRegistryImpl20createResourceHandleERKNS_15ResourceRequestEPNS_20ResourceHandleClientE +_ZN7WebCore16BlobRegistryImpl23registerBlobURLForSliceERKN3WTF3URLES4_xx +_ZN7WebCore16BlobRegistryImpl23registerBlobURLForSliceERKNS_3URLES3_xx +_ZN7WebCore16BlobRegistryImpl26writeBlobsToTemporaryFilesERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16EEEONS1_8FunctionIFvS7_EEE +_ZN7WebCore16BlobRegistryImpl26writeBlobsToTemporaryFilesERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEEONS1_17CompletionHandlerIFvOS6_EEE +_ZN7WebCore16BlobRegistryImpl27populateBlobsForFileWritingERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16EEERNS2_INS0_18BlobForFileWritingELm0ES4_Lm16EEE +_ZN7WebCore16BlobRegistryImpl27populateBlobsForFileWritingERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEERNS2_INS0_18BlobForFileWritingELm0ES4_Lm16ES5_EE +_ZN7WebCore16BlobRegistryImpl35registerBlobURLOptionallyFileBackedERKN3WTF3URLES4_ONS1_6RefPtrINS_21BlobDataFileReferenceENS1_13DumbPtrTraitsIS6_EEEERKNS1_6StringE +_ZN7WebCore16BlobRegistryImpl35registerBlobURLOptionallyFileBackedERKNS_3URLES3_ON3WTF6RefPtrINS_21BlobDataFileReferenceENS4_13DumbPtrTraitsIS6_EEEERKNS4_6StringE +_ZN7WebCore16BlobRegistryImpl8blobSizeERKN3WTF3URLE +_ZN7WebCore16BlobRegistryImpl8blobSizeERKNS_3URLE +_ZN7WebCore16BlobRegistryImplC1ERKS0_ +_ZN7WebCore16BlobRegistryImplC1Ev +_ZN7WebCore16BlobRegistryImplC2ERKS0_ +_ZN7WebCore16BlobRegistryImplC2Ev +_ZN7WebCore16BlobRegistryImplD0Ev +_ZN7WebCore16BlobRegistryImplD1Ev +_ZN7WebCore16BlobRegistryImplD2Ev +_ZN7WebCore16BlobRegistryImpldaEPv +_ZN7WebCore16BlobRegistryImpldlEPv +_ZN7WebCore16BlobRegistryImplnaEm +_ZN7WebCore16BlobRegistryImplnaEmPv +_ZN7WebCore16BlobRegistryImplnwEm +_ZN7WebCore16BlobRegistryImplnwEm10NotNullTagPv +_ZN7WebCore16BlobRegistryImplnwEmPv +_ZN7WebCore16CSSParserContextC1ERKNS_8DocumentERKN3WTF3URLERKNS4_6StringE +_ZN7WebCore16CSSParserContextC1ERNS_8DocumentERKNS_3URLERKN3WTF6StringE +_ZN7WebCore16CSSParserContextC2ERKNS_8DocumentERKN3WTF3URLERKNS4_6StringE +_ZN7WebCore16CSSParserContextC2ERNS_8DocumentERKNS_3URLERKN3WTF6StringE +_ZN7WebCore16CalculationValue6createESt10unique_ptrINS_18CalcExpressionNodeESt14default_deleteIS2_EENS_10ValueRangeE +_ZN7WebCore16DOMGuardedObject14visitAggregateERN3JSC11SlotVisitorE +_ZN7WebCore16DOMGuardedObject16contextDestroyedEv +_ZN7WebCore16DOMGuardedObject5clearEv +_ZN7WebCore16DOMGuardedObject7isEmptyEv +_ZN7WebCore16DOMGuardedObjectC1ERNS_17JSDOMGlobalObjectERN3JSC6JSCellE +_ZN7WebCore16DOMGuardedObjectC2ERNS_17JSDOMGlobalObjectERN3JSC6JSCellE +_ZN7WebCore16DOMGuardedObjectD0Ev +_ZN7WebCore16DOMGuardedObjectD1Ev +_ZN7WebCore16DOMGuardedObjectD2Ev +_ZN7WebCore16DatabaseProviderC1Ev +_ZN7WebCore16DatabaseProviderC2Ev +_ZN7WebCore16DatabaseProviderD0Ev +_ZN7WebCore16DatabaseProviderD1Ev +_ZN7WebCore16DatabaseProviderD2Ev +_ZN7WebCore16DeviceMotionData6createEON3WTF6RefPtrINS0_12AccelerationENS1_13DumbPtrTraitsIS3_EEEES7_ONS2_INS0_12RotationRateENS4_IS8_EEEENS1_8OptionalIdEE +_ZN7WebCore16DeviceMotionData6createEON3WTF6RefPtrINS0_12AccelerationENS1_13DumbPtrTraitsIS3_EEEES7_ONS2_INS0_12RotationRateENS4_IS8_EEEESt8optionalIdE +_ZN7WebCore16DeviceMotionData6createEv +_ZN7WebCore16DocumentTimeline16resumeAnimationsEv +_ZN7WebCore16DocumentTimeline17suspendAnimationsEv +_ZN7WebCore16DocumentTimeline22animationsAreSuspendedEv +_ZN7WebCore16FileReaderLoader5startEPNS_22ScriptExecutionContextERNS_4BlobE +_ZN7WebCore16FileReaderLoader6cancelEv +_ZN7WebCore16FileReaderLoaderC1ENS0_8ReadTypeEPNS_22FileReaderLoaderClientE +_ZN7WebCore16FileReaderLoaderC2ENS0_8ReadTypeEPNS_22FileReaderLoaderClientE +_ZN7WebCore16FloatRoundedRectC1ERKNS_9FloatRectERKNS0_5RadiiE +_ZN7WebCore16FloatRoundedRectC2ERKNS_9FloatRectERKNS0_5RadiiE +_ZN7WebCore16FontCascadeFonts23realizeFallbackRangesAtERKNS_22FontCascadeDescriptionEj +_ZN7WebCore16FontCascadeFontsD1Ev +_ZN7WebCore16FontCascadeFontsD2Ev +_ZN7WebCore16FrameLoadRequestC1EOS0_ +_ZN7WebCore16FrameLoadRequestC1ERNS_5FrameERKNS_15ResourceRequestENS_28ShouldOpenExternalURLsPolicyERKNS_14SubstituteDataE +_ZN7WebCore16FrameLoadRequestC1ERNS_5FrameERKNS_15ResourceRequestERKNS_14SubstituteDataE +_ZN7WebCore16FrameLoadRequestC1ERNS_8DocumentERNS_14SecurityOriginEONS_15ResourceRequestERKN3WTF6StringENS_20InitiatedByMainFrameERKNS7_10AtomStringERKNS_17SystemPreviewInfoE +_ZN7WebCore16FrameLoadRequestC2EOS0_ +_ZN7WebCore16FrameLoadRequestC2ERNS_5FrameERKNS_15ResourceRequestENS_28ShouldOpenExternalURLsPolicyERKNS_14SubstituteDataE +_ZN7WebCore16FrameLoadRequestC2ERNS_5FrameERKNS_15ResourceRequestERKNS_14SubstituteDataE +_ZN7WebCore16FrameLoadRequestC2ERNS_8DocumentERNS_14SecurityOriginEONS_15ResourceRequestERKN3WTF6StringENS_20InitiatedByMainFrameERKNS7_10AtomStringERKNS_17SystemPreviewInfoE +_ZN7WebCore16FrameLoadRequestD1Ev +_ZN7WebCore16FrameLoadRequestD2Ev +_ZN7WebCore16FrameLoadRequestaSEOS0_ +_ZN7WebCore16HTMLImageElement14setCrossOriginERKN3WTF10AtomStringE +_ZN7WebCore16HTMLImageElement14setCrossOriginERKN3WTF12AtomicStringE +_ZN7WebCore16HTMLImageElement5widthEb +_ZN7WebCore16HTMLImageElement6decodeEON3WTF3RefINS_15DeferredPromiseENS1_13DumbPtrTraitsIS3_EEEE +_ZN7WebCore16HTMLImageElement6heightEb +_ZN7WebCore16HTMLImageElement8setWidthEj +_ZN7WebCore16HTMLImageElement9setHeightEj +_ZN7WebCore16HTMLInputElement10setCheckedEb +_ZN7WebCore16HTMLInputElement10setCheckedEbNS_22TextFieldEventBehaviorE +_ZN7WebCore16HTMLInputElement11selectColorEN3WTF10StringViewE +_ZN7WebCore16HTMLInputElement12setRangeTextERKN3WTF6StringE +_ZN7WebCore16HTMLInputElement12setRangeTextERKN3WTF6StringEjjS4_ +_ZN7WebCore16HTMLInputElement13setAutoFilledEb +_ZN7WebCore16HTMLInputElement14setValueAsDateEd +_ZN7WebCore16HTMLInputElement15setDefaultValueERKN3WTF6StringE +_ZN7WebCore16HTMLInputElement15setEditingValueERKN3WTF6StringE +_ZN7WebCore16HTMLInputElement15setValueForUserERKN3WTF6StringE +_ZN7WebCore16HTMLInputElement16setIndeterminateEb +_ZN7WebCore16HTMLInputElement16setValueAsNumberEdNS_22TextFieldEventBehaviorE +_ZN7WebCore16HTMLInputElement21setShowAutoFillButtonENS_18AutoFillButtonTypeE +_ZN7WebCore16HTMLInputElement24setAutoFilledAndViewableEb +_ZN7WebCore16HTMLInputElement5filesEv +_ZN7WebCore16HTMLInputElement6stepUpEi +_ZN7WebCore16HTMLInputElement7setSizeEj +_ZN7WebCore16HTMLInputElement7setTypeERKN3WTF10AtomStringE +_ZN7WebCore16HTMLInputElement7setTypeERKN3WTF12AtomicStringE +_ZN7WebCore16HTMLInputElement8setFilesEON3WTF6RefPtrINS_8FileListENS1_13DumbPtrTraitsIS3_EEEE +_ZN7WebCore16HTMLInputElement8setValueERKN3WTF6StringENS_22TextFieldEventBehaviorE +_ZN7WebCore16HTMLInputElement8setWidthEj +_ZN7WebCore16HTMLInputElement8stepDownEi +_ZN7WebCore16HTMLInputElement9setHeightEj +_ZN7WebCore16HTMLMediaElement10setPreloadERKN3WTF6StringE +_ZN7WebCore16HTMLMediaElement11setControlsEb +_ZN7WebCore16HTMLMediaElement12endScrubbingEv +_ZN7WebCore16HTMLMediaElement14beginScrubbingEv +_ZN7WebCore16HTMLMediaElement14exitFullscreenEv +_ZN7WebCore16HTMLMediaElement14setCrossOriginERKN3WTF10AtomStringE +_ZN7WebCore16HTMLMediaElement14setCrossOriginERKN3WTF12AtomicStringE +_ZN7WebCore16HTMLMediaElement14setCurrentTimeEd +_ZN7WebCore16HTMLMediaElement15clearMediaCacheERKN3WTF6StringENS1_8WallTimeE +_ZN7WebCore16HTMLMediaElement15enterFullscreenEv +_ZN7WebCore16HTMLMediaElement15togglePlayStateEv +_ZN7WebCore16HTMLMediaElement16allMediaElementsEv +_ZN7WebCore16HTMLMediaElement16returnToRealtimeEv +_ZN7WebCore16HTMLMediaElement19mediaCacheDirectoryEv +_ZN7WebCore16HTMLMediaElement19originsInMediaCacheERKN3WTF6StringE +_ZN7WebCore16HTMLMediaElement22setMediaCacheDirectoryERKN3WTF6StringE +_ZN7WebCore16HTMLMediaElement23setWebkitPreservesPitchEb +_ZN7WebCore16HTMLMediaElement25clearMediaCacheForOriginsERKN3WTF6StringERKNS1_7HashSetINS1_6RefPtrINS_14SecurityOriginENS1_13DumbPtrTraitsIS7_EEEENS1_11DefaultHashISA_EENS1_10HashTraitsISA_EEEE +_ZN7WebCore16HTMLMediaElement25clearMediaCacheForOriginsERKN3WTF6StringERKNS1_7HashSetINS1_6RefPtrINS_14SecurityOriginENS1_13DumbPtrTraitsIS7_EEEENS_18SecurityOriginHashENS1_10HashTraitsISA_EEEE +_ZN7WebCore16HTMLMediaElement25setCurrentTimeForBindingsEd +_ZN7WebCore16HTMLMediaElement25setVideoFullscreenStandbyEb +_ZN7WebCore16HTMLMediaElement26didBecomeFullscreenElementEv +_ZN7WebCore16HTMLMediaElement27purgeBufferedDataIfPossibleEv +_ZN7WebCore16HTMLMediaElement29getCurrentMediaControlsStatusEv +_ZN7WebCore16HTMLMediaElement30setWebkitClosedCaptionsVisibleEb +_ZN7WebCore16HTMLMediaElement32prepareForVideoFullscreenStandbyEv +_ZN7WebCore16HTMLMediaElement36setOverridePreferredDynamicRangeModeENS_16DynamicRangeModeE +_ZN7WebCore16HTMLMediaElement49bestMediaElementForShowingPlaybackControlsManagerENS_19MediaElementSession23PlaybackControlsPurposeE +_ZN7WebCore16HTMLMediaElement4loadEv +_ZN7WebCore16HTMLMediaElement4playEv +_ZN7WebCore16HTMLMediaElement5pauseEv +_ZN7WebCore16HTMLMediaElement6rewindEd +_ZN7WebCore16HTMLMediaElement8fastSeekERKN3WTF9MediaTimeE +_ZN7WebCore16HTMLMediaElement8fastSeekEd +_ZN7WebCore16HTMLMediaElement8setMutedEb +_ZN7WebCore16HTMLMediaElement9setVolumeEd +_ZN7WebCore16HTMLOListElement19setStartForBindingsEi +_ZN7WebCore16HTMLStyleElement11setDisabledEb +_ZN7WebCore16HTMLTableElement10setCaptionEON3WTF6RefPtrINS_23HTMLTableCaptionElementENS1_13DumbPtrTraitsIS3_EEEE +_ZN7WebCore16HTMLTableElement11createTBodyEv +_ZN7WebCore16HTMLTableElement11createTFootEv +_ZN7WebCore16HTMLTableElement11createTHeadEv +_ZN7WebCore16HTMLTableElement11deleteTFootEv +_ZN7WebCore16HTMLTableElement11deleteTHeadEv +_ZN7WebCore16HTMLTableElement13createCaptionEv +_ZN7WebCore16HTMLTableElement13deleteCaptionEv +_ZN7WebCore16HTMLTableElement4rowsEv +_ZN7WebCore16HTMLTableElement7tBodiesEv +_ZN7WebCore16HTMLTableElement8setTFootEON3WTF6RefPtrINS_23HTMLTableSectionElementENS1_13DumbPtrTraitsIS3_EEEE +_ZN7WebCore16HTMLTableElement8setTHeadEON3WTF6RefPtrINS_23HTMLTableSectionElementENS1_13DumbPtrTraitsIS3_EEEE +_ZN7WebCore16HTMLTableElement9deleteRowEi +_ZN7WebCore16HTMLTableElement9insertRowEi +_ZN7WebCore16HTMLTitleElement7setTextERKN3WTF6StringE +_ZN7WebCore16HTMLVideoElement20webkitExitFullscreenEv +_ZN7WebCore16HTMLVideoElement21webkitEnterFullscreenEv +_ZN7WebCore16HTMLVideoElement24webkitSupportsFullscreenEv +_ZN7WebCore16HTMLVideoElement26webkitDisplayingFullscreenEv +_ZN7WebCore16HTMLVideoElement6createERNS_8DocumentE +_ZN7WebCore16ISOSchemeTypeBox11boxTypeNameEv +_ZN7WebCore16ISOSchemeTypeBox5parseERN3JSC8DataViewERj +_ZN7WebCore16ISOSchemeTypeBoxC1ERKS0_ +_ZN7WebCore16ISOSchemeTypeBoxC1Ev +_ZN7WebCore16ISOSchemeTypeBoxC2ERKS0_ +_ZN7WebCore16ISOSchemeTypeBoxC2Ev +_ZN7WebCore16ISOSchemeTypeBoxD0Ev +_ZN7WebCore16ISOSchemeTypeBoxD1Ev +_ZN7WebCore16ISOSchemeTypeBoxD2Ev +_ZN7WebCore16JSHTMLCollection9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore16JSStringCallback11handleEventERKN3WTF6StringE +_ZN7WebCore16JSStringCallback12callbackDataEv +_ZN7WebCore16JSStringCallback6createEPN3JSC8JSObjectEPNS_17JSDOMGlobalObjectE +_ZN7WebCore16JSStringCallbackC1EPN3JSC8JSObjectEPNS_17JSDOMGlobalObjectE +_ZN7WebCore16JSStringCallbackC2EPN3JSC8JSObjectEPNS_17JSDOMGlobalObjectE +_ZN7WebCore16JSStringCallbackD0Ev +_ZN7WebCore16JSStringCallbackD1Ev +_ZN7WebCore16JSStringCallbackD2Ev +_ZN7WebCore16JSStyleSheetList9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore16JSXMLHttpRequest11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE +_ZN7WebCore16JSXMLHttpRequest13estimatedSizeEPN3JSC6JSCellERNS1_2VME +_ZN7WebCore16JSXMLHttpRequest13visitChildrenEPN3JSC6JSCellERNS1_11SlotVisitorE +_ZN7WebCore16JSXMLHttpRequest14finishCreationERN3JSC2VME +_ZN7WebCore16JSXMLHttpRequest14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE +_ZN7WebCore16JSXMLHttpRequest15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore16JSXMLHttpRequest15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE +_ZN7WebCore16JSXMLHttpRequest15subspaceForImplERN3JSC2VME +_ZN7WebCore16JSXMLHttpRequest22visitOutputConstraintsEPN3JSC6JSCellERNS1_11SlotVisitorE +_ZN7WebCore16JSXMLHttpRequest23visitAdditionalChildrenERN3JSC11SlotVisitorE +_ZN7WebCore16JSXMLHttpRequest4infoEv +_ZN7WebCore16JSXMLHttpRequest6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_14XMLHttpRequestENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore16JSXMLHttpRequest6s_infoE +_ZN7WebCore16JSXMLHttpRequest9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore16JSXMLHttpRequest9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore16JSXMLHttpRequestC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_14XMLHttpRequestENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore16JSXMLHttpRequestC1ERKS0_ +_ZN7WebCore16JSXMLHttpRequestC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_14XMLHttpRequestENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore16JSXMLHttpRequestC2ERKS0_ +_ZN7WebCore16JSXMLHttpRequestD1Ev +_ZN7WebCore16JSXMLHttpRequestD2Ev +_ZN7WebCore16LabelableElement6labelsEv +_ZN7WebCore16MIMETypeRegistry12pdfMIMETypesEv +_ZN7WebCore16MIMETypeRegistry13isXMLMIMETypeERKN3WTF6StringE +_ZN7WebCore16MIMETypeRegistry14isTextMIMETypeERKN3WTF6StringE +_ZN7WebCore16MIMETypeRegistry15canShowMIMETypeERKN3WTF6StringE +_ZN7WebCore16MIMETypeRegistry15getPDFMIMETypesEv +_ZN7WebCore16MIMETypeRegistry15mimeTypeForPathERKN3WTF6StringE +_ZN7WebCore16MIMETypeRegistry16allowedMIMETypesERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEES8_ +_ZN7WebCore16MIMETypeRegistry19isXMLEntityMIMETypeEN3WTF10StringViewE +_ZN7WebCore16MIMETypeRegistry20isJavaAppletMIMETypeERKN3WTF6StringE +_ZN7WebCore16MIMETypeRegistry20mimeTypeForExtensionERKN3WTF6StringE +_ZN7WebCore16MIMETypeRegistry21allowedFileExtensionsERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEES8_ +_ZN7WebCore16MIMETypeRegistry21extensionsForMIMETypeERKN3WTF6StringE +_ZN7WebCore16MIMETypeRegistry22systemPreviewMIMETypesEv +_ZN7WebCore16MIMETypeRegistry23getMIMETypeForExtensionERKN3WTF6StringE +_ZN7WebCore16MIMETypeRegistry23isSupportedJSONMIMETypeERKN3WTF6StringE +_ZN7WebCore16MIMETypeRegistry23isSystemPreviewMIMETypeERKN3WTF6StringE +_ZN7WebCore16MIMETypeRegistry23supportedImageMIMETypesEv +_ZN7WebCore16MIMETypeRegistry23supportedMediaMIMETypesEv +_ZN7WebCore16MIMETypeRegistry24isSupportedImageMIMETypeERKN3WTF6StringE +_ZN7WebCore16MIMETypeRegistry24isSupportedMediaMIMETypeERKN3WTF6StringE +_ZN7WebCore16MIMETypeRegistry24unsupportedTextMIMETypesEv +_ZN7WebCore16MIMETypeRegistry25isPDFOrPostScriptMIMETypeERKN3WTF6StringE +_ZN7WebCore16MIMETypeRegistry25mediaMIMETypeForExtensionERKN3WTF6StringE +_ZN7WebCore16MIMETypeRegistry26getSupportedImageMIMETypesEv +_ZN7WebCore16MIMETypeRegistry26getSupportedMediaMIMETypesEv +_ZN7WebCore16MIMETypeRegistry26supportedNonImageMIMETypesEv +_ZN7WebCore16MIMETypeRegistry27getUnsupportedTextMIMETypesEv +_ZN7WebCore16MIMETypeRegistry27isSupportedNonImageMIMETypeERKN3WTF6StringE +_ZN7WebCore16MIMETypeRegistry28isSupportedTextTrackMIMETypeERKN3WTF6StringE +_ZN7WebCore16MIMETypeRegistry29getSupportedNonImageMIMETypesEv +_ZN7WebCore16MIMETypeRegistry29isSupportedJavaScriptMIMETypeERKN3WTF6StringE +_ZN7WebCore16MIMETypeRegistry29preferredExtensionForMIMETypeERKN3WTF6StringE +_ZN7WebCore16MIMETypeRegistry30appendFileExtensionIfNecessaryERKN3WTF6StringES4_ +_ZN7WebCore16MIMETypeRegistry32containsImageMIMETypeForEncodingERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEES8_ +_ZN7WebCore16MIMETypeRegistry32getPreferredExtensionForMIMETypeERKN3WTF6StringE +_ZN7WebCore16MIMETypeRegistry32isSupportedImageResourceMIMETypeERKN3WTF6StringE +_ZN7WebCore16MIMETypeRegistry33preferredImageMIMETypeForEncodingERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEES8_ +_ZN7WebCore16MIMETypeRegistry34isSupportedImageVideoOrSVGMIMETypeERKN3WTF6StringE +_ZN7WebCore16NativeNodeFilterC1EPNS_22ScriptExecutionContextEON3WTF3RefINS_19NodeFilterConditionENS3_13DumbPtrTraitsIS5_EEEE +_ZN7WebCore16NativeNodeFilterC2EPNS_22ScriptExecutionContextEON3WTF3RefINS_19NodeFilterConditionENS3_13DumbPtrTraitsIS5_EEEE +_ZN7WebCore16NavigationActionC1ERKS0_ +_ZN7WebCore16NavigationActionC1ERNS_8DocumentERKNS_15ResourceRequestENS_20InitiatedByMainFrameENS_14NavigationTypeENS_28ShouldOpenExternalURLsPolicyEPNS_5EventERKN3WTF10AtomStringE +_ZN7WebCore16NavigationActionC1ERNS_8DocumentERKNS_15ResourceRequestENS_20InitiatedByMainFrameENS_14NavigationTypeENS_28ShouldOpenExternalURLsPolicyEPNS_5EventERKN3WTF12AtomicStringE +_ZN7WebCore16NavigationActionC2ERKS0_ +_ZN7WebCore16NavigationActionC2ERNS_8DocumentERKNS_15ResourceRequestENS_20InitiatedByMainFrameENS_14NavigationTypeENS_28ShouldOpenExternalURLsPolicyEPNS_5EventERKN3WTF10AtomStringE +_ZN7WebCore16NavigationActionC2ERNS_8DocumentERKNS_15ResourceRequestENS_20InitiatedByMainFrameENS_14NavigationTypeENS_28ShouldOpenExternalURLsPolicyEPNS_5EventERKN3WTF12AtomicStringE +_ZN7WebCore16NavigationActionD1Ev +_ZN7WebCore16NavigationActionD2Ev +_ZN7WebCore16NetworkSendQueue15processMessagesEv +_ZN7WebCore16NetworkSendQueue5clearEv +_ZN7WebCore16NetworkSendQueue7enqueueEON3WTF7CStringE +_ZN7WebCore16NetworkSendQueue7enqueueERKN3JSC11ArrayBufferEjj +_ZN7WebCore16NetworkSendQueue7enqueueERNS_4BlobE +_ZN7WebCore16NetworkSendQueueC1ERNS_8DocumentEON3WTF8FunctionIFvRKNS3_7CStringEEEEONS4_IFvPKcmEEEONS4_IFNS0_8ContinueENS_13ExceptionCodeEEEE +_ZN7WebCore16NetworkSendQueueC2ERNS_8DocumentEON3WTF8FunctionIFvRKNS3_7CStringEEEEONS4_IFvPKcmEEEONS4_IFNS0_8ContinueENS_13ExceptionCodeEEEE +_ZN7WebCore16NetworkSendQueueD1Ev +_ZN7WebCore16NetworkSendQueueD2Ev +_ZN7WebCore16ResourceResponseC1ERKN3WTF3URLERKNS1_6StringExS7_ +_ZN7WebCore16ResourceResponseC1ERKNS_3URLERKN3WTF6StringExS7_ +_ZN7WebCore16ResourceResponseC1ERKS0_ +_ZN7WebCore16ResourceResponseC1Ev +_ZN7WebCore16ResourceResponseC2ERKN3WTF3URLERKNS1_6StringExS7_ +_ZN7WebCore16ResourceResponseC2ERKNS_3URLERKN3WTF6StringExS7_ +_ZN7WebCore16ResourceResponseC2ERKS0_ +_ZN7WebCore16ResourceResponseC2Ev +_ZN7WebCore16ResourceResponseD1Ev +_ZN7WebCore16ResourceResponseD2Ev +_ZN7WebCore16ResourceResponseaSERKS0_ +_ZN7WebCore16SQLiteFileSystem18deleteDatabaseFileERKN3WTF6StringE +_ZN7WebCore16SQLiteFileSystem20databaseCreationTimeERKN3WTF6StringE +_ZN7WebCore16SQLiteFileSystem22computeHashForFileNameERKN3WTF6StringE +_ZN7WebCore16SQLiteFileSystem24databaseModificationTimeERKN3WTF6StringE +_ZN7WebCore16SQLiteFileSystem28appendDatabaseFileNameToPathERKN3WTF6StringES4_ +_ZN7WebCore16SQLiteFileSystem28deleteEmptyDatabaseDirectoryERKN3WTF6StringE +_ZN7WebCore16SQLiteFileSystem29ensureDatabaseDirectoryExistsERKN3WTF6StringE +_ZN7WebCore16ScriptController11createWorldERKN3WTF6StringENS0_9WorldTypeE +_ZN7WebCore16ScriptController11createWorldEv +_ZN7WebCore16ScriptController11windowProxyEv +_ZN7WebCore16ScriptController13executeScriptERKN3WTF6StringEbPNS_16ExceptionDetailsE +_ZN7WebCore16ScriptController13jsWindowProxyERNS_15DOMWrapperWorldE +_ZN7WebCore16ScriptController16createRootObjectEPv +_ZN7WebCore16ScriptController17bindingRootObjectEv +_ZN7WebCore16ScriptController17canExecuteScriptsENS_33ReasonForCallingCanExecuteScriptsE +_ZN7WebCore16ScriptController20executeScriptInWorldERNS_15DOMWrapperWorldERKN3WTF6StringEbPNS_16ExceptionDetailsE +_ZN7WebCore16ScriptController24jsObjectForPluginElementEPNS_17HTMLPlugInElementE +_ZN7WebCore16ScriptController29cleanupScriptObjectsForPluginEPv +_ZN7WebCore16ScriptController29executeUserAgentScriptInWorldERNS_15DOMWrapperWorldERKN3WTF6StringEb +_ZN7WebCore16ScriptController30executeScriptIgnoringExceptionERKN3WTF6StringEb +_ZN7WebCore16ScriptController37executeScriptInWorldIgnoringExceptionERNS_15DOMWrapperWorldERKN3WTF6StringEb +_ZN7WebCore16ScriptController41executeAsynchronousUserAgentScriptInWorldERNS_15DOMWrapperWorldEONS_23RunJavaScriptParametersEON3WTF17CompletionHandlerIFvNSt12experimental15fundamentals_v38expectedIN3JSC7JSValueENS_16ExceptionDetailsEEEEEE +_ZN7WebCore16ScriptController46executeUserAgentScriptInWorldIgnoringExceptionERNS_15DOMWrapperWorldERKN3WTF6StringEb +_ZN7WebCore16ThreadGlobalDataC1Ev +_ZN7WebCore16ThreadGlobalDataC2Ev +_ZN7WebCore16ThreadGlobalDataD1Ev +_ZN7WebCore16ThreadGlobalDataD2Ev +_ZN7WebCore16TrackPrivateBase13willBeRemovedEv +_ZN7WebCore16TrackPrivateBaseC2Ev +_ZN7WebCore16TrackPrivateBaseD0Ev +_ZN7WebCore16TrackPrivateBaseD1Ev +_ZN7WebCore16TrackPrivateBaseD2Ev +_ZN7WebCore16TrackPrivateBasedaEPv +_ZN7WebCore16TrackPrivateBasedlEPv +_ZN7WebCore16TrackPrivateBasenaEm +_ZN7WebCore16TrackPrivateBasenaEmPv +_ZN7WebCore16TrackPrivateBasenwEm +_ZN7WebCore16TrackPrivateBasenwEm10NotNullTagPv +_ZN7WebCore16TrackPrivateBasenwEmPv +_ZN7WebCore16UserGestureToken60setMaximumIntervalForUserGestureForwardingForFetchForTestingEN3WTF7SecondsE +_ZN7WebCore16UserGestureTokenD1Ev +_ZN7WebCore16UserGestureTokenD2Ev +_ZN7WebCore16VisibleSelection20adjustPositionForEndERKNS_8PositionEPNS_4NodeE +_ZN7WebCore16VisibleSelection22adjustPositionForStartERKNS_8PositionEPNS_4NodeE +_ZN7WebCore16VisibleSelection22expandUsingGranularityENS_15TextGranularityE +_ZN7WebCore16VisibleSelection27selectionFromContentsOfNodeEPNS_4NodeE +_ZN7WebCore16VisibleSelectionC1ERKNS_11SimpleRangeENS_9EAffinityEb +_ZN7WebCore16VisibleSelectionC1ERKNS_15VisiblePositionES3_b +_ZN7WebCore16VisibleSelectionC1ERKNS_15VisiblePositionEb +_ZN7WebCore16VisibleSelectionC1ERKNS_5RangeENS_9EAffinityEb +_ZN7WebCore16VisibleSelectionC1ERKNS_8PositionES3_NS_9EAffinityEb +_ZN7WebCore16VisibleSelectionC1Ev +_ZN7WebCore16VisibleSelectionC2ERKNS_11SimpleRangeENS_9EAffinityEb +_ZN7WebCore16VisibleSelectionC2ERKNS_15VisiblePositionES3_b +_ZN7WebCore16VisibleSelectionC2ERKNS_15VisiblePositionEb +_ZN7WebCore16VisibleSelectionC2ERKNS_5RangeENS_9EAffinityEb +_ZN7WebCore16VisibleSelectionC2ERKNS_8PositionES3_NS_9EAffinityEb +_ZN7WebCore16VisibleSelectionC2Ev +_ZN7WebCore16VisitedLinkStore23invalidateStylesForLinkEj +_ZN7WebCore16VisitedLinkStore23invalidateStylesForLinkEm +_ZN7WebCore16VisitedLinkStore27invalidateStylesForAllLinksEv +_ZN7WebCore16VisitedLinkStoreC2Ev +_ZN7WebCore16VisitedLinkStoreD0Ev +_ZN7WebCore16VisitedLinkStoreD1Ev +_ZN7WebCore16VisitedLinkStoreD2Ev +_ZN7WebCore16WebSocketChannelC1ERNS_8DocumentERNS_22WebSocketChannelClientERNS_14SocketProviderE +_ZN7WebCore16WebSocketChannelC2ERNS_8DocumentERNS_22WebSocketChannelClientERNS_14SocketProviderE +_ZN7WebCore16commonMediaTypesEv +_ZN7WebCore16comparePositionsERKNS_15VisiblePositionES2_ +_ZN7WebCore16comparePositionsERKNS_8PositionES2_ +_ZN7WebCore16convertToIntegerIaEET_RN3JSC14JSGlobalObjectENS2_7JSValueE +_ZN7WebCore16convertToIntegerIaEET_RN3JSC9ExecStateENS2_7JSValueE +_ZN7WebCore16convertToIntegerIhEET_RN3JSC14JSGlobalObjectENS2_7JSValueE +_ZN7WebCore16convertToIntegerIhEET_RN3JSC9ExecStateENS2_7JSValueE +_ZN7WebCore16convertToIntegerIiEET_RN3JSC14JSGlobalObjectENS2_7JSValueE +_ZN7WebCore16convertToIntegerIiEET_RN3JSC9ExecStateENS2_7JSValueE +_ZN7WebCore16convertToIntegerIjEET_RN3JSC14JSGlobalObjectENS2_7JSValueE +_ZN7WebCore16convertToIntegerIjEET_RN3JSC9ExecStateENS2_7JSValueE +_ZN7WebCore16convertToIntegerIlEET_RN3JSC14JSGlobalObjectENS2_7JSValueE +_ZN7WebCore16convertToIntegerIlEET_RN3JSC9ExecStateENS2_7JSValueE +_ZN7WebCore16convertToIntegerImEET_RN3JSC14JSGlobalObjectENS2_7JSValueE +_ZN7WebCore16convertToIntegerImEET_RN3JSC9ExecStateENS2_7JSValueE +_ZN7WebCore16convertToIntegerIsEET_RN3JSC14JSGlobalObjectENS2_7JSValueE +_ZN7WebCore16convertToIntegerIsEET_RN3JSC9ExecStateENS2_7JSValueE +_ZN7WebCore16convertToIntegerItEET_RN3JSC14JSGlobalObjectENS2_7JSValueE +_ZN7WebCore16convertToIntegerItEET_RN3JSC9ExecStateENS2_7JSValueE +_ZN7WebCore16createFullMarkupERKNS_4NodeE +_ZN7WebCore16createFullMarkupERKNS_5RangeE +_ZN7WebCore16deleteAllCookiesERKNS_21NetworkStorageSessionE +_ZN7WebCore16enclosingIntRectERKNS_10LayoutRectE +_ZN7WebCore16enclosingIntRectERKNS_9FloatRectE +_ZN7WebCore16findIntersectionERKNS_10FloatPointES2_S2_S2_RS0_ +_ZN7WebCore16g_commonVMOrNullE +_ZN7WebCore16isEndOfParagraphERKNS_15VisiblePositionENS_27EditingBoundaryCrossingRuleE +_ZN7WebCore16nextLinePositionERKNS_15VisiblePositionEiNS_12EditableTypeE +_ZN7WebCore16nextWordPositionERKNS_15VisiblePositionE +_ZN7WebCore16parseHTMLIntegerEN3WTF10StringViewE +_ZN7WebCore16scriptNameToCodeERKN3WTF6StringE +_ZN7WebCore16startOfParagraphERKNS_15VisiblePositionENS_27EditingBoundaryCrossingRuleE +_ZN7WebCore16threadGlobalDataEv +_ZN7WebCore16valueToUSVStringERN3JSC14JSGlobalObjectENS0_7JSValueE +_ZN7WebCore16valueToUSVStringERN3JSC9ExecStateENS0_7JSValueE +_ZN7WebCore17AnimationTimeline11descriptionEv +_ZN7WebCore17AnimationTimeline14setCurrentTimeEN3WTF7SecondsE +_ZN7WebCore17CSSPrimitiveValue13setFloatValueENS_11CSSUnitTypeEd +_ZN7WebCore17CSSPrimitiveValue13setFloatValueEtd +_ZN7WebCore17CSSPrimitiveValue14setStringValueENS_11CSSUnitTypeERKN3WTF6StringE +_ZN7WebCore17CSSPrimitiveValue14setStringValueEtRKN3WTF6StringE +_ZN7WebCore17CharacterIterator7advanceEi +_ZN7WebCore17CharacterIteratorC1ERKNS_11SimpleRangeEt +_ZN7WebCore17CharacterIteratorC2ERKNS_11SimpleRangeEt +_ZN7WebCore17CredentialStorage16clearCredentialsEv +_ZN7WebCore17CredentialStorage23clearSessionCredentialsEv +_ZN7WebCore17CredentialStorage24defaultCredentialStorageEv +_ZN7WebCore17CredentialStorage24getFromPersistentStorageERKNS_15ProtectionSpaceE +_ZN7WebCore17CredentialStorage27removeCredentialsWithOriginERKNS_18SecurityOriginDataE +_ZN7WebCore17CredentialStorage29originsWithSessionCredentialsEv +_ZN7WebCore17CredentialStorage35removeSessionCredentialsWithOriginsERKN3WTF6VectorINS_18SecurityOriginDataELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN7WebCore17CredentialStorage3getERKN3WTF6StringERKNS1_3URLE +_ZN7WebCore17CredentialStorage3getERKN3WTF6StringERKNS_15ProtectionSpaceE +_ZN7WebCore17CredentialStorage3getERKN3WTF6StringERKNS_3URLE +_ZN7WebCore17CredentialStorage3setERKN3WTF6StringERKNS_10CredentialERKNS1_3URLE +_ZN7WebCore17CredentialStorage3setERKN3WTF6StringERKNS_10CredentialERKNS_15ProtectionSpaceERKNS1_3URLE +_ZN7WebCore17CredentialStorage3setERKN3WTF6StringERKNS_10CredentialERKNS_15ProtectionSpaceERKNS_3URLE +_ZN7WebCore17CredentialStorage3setERKN3WTF6StringERKNS_10CredentialERKNS_3URLE +_ZN7WebCore17CredentialStorage6removeERKN3WTF6StringERKNS_15ProtectionSpaceE +_ZN7WebCore17DOMImplementation14createDocumentERKN3WTF6StringES4_PNS_12DocumentTypeE +_ZN7WebCore17DOMImplementation18createDocumentTypeERKN3WTF6StringES4_S4_ +_ZN7WebCore17DOMImplementation18createHTMLDocumentERKN3WTF6StringE +_ZN7WebCore17DOMImplementation19createCSSStyleSheetERKN3WTF6StringES4_ +_ZN7WebCore17DebugPageOverlays15settingsChangedERNS_4PageE +_ZN7WebCore17FrameLoaderClient11allowScriptEb +_ZN7WebCore17FrameLoaderClient15didCreateWindowERNS_9DOMWindowE +_ZN7WebCore17FrameLoaderClient15didDisownOpenerEv +_ZN7WebCore17FrameLoaderClient17dispatchDidLayoutEv +_ZN7WebCore17FrameLoaderClient19finishedLoadingIconEmPNS_12SharedBufferE +_ZN7WebCore17FrameLoaderClient20willInjectUserScriptERNS_15DOMWrapperWorldE +_ZN7WebCore17FrameLoaderClient21didChangeScrollOffsetEv +_ZN7WebCore17FrameLoaderClient22dispatchDidReceiveIconEv +_ZN7WebCore17FrameLoaderClient23dispatchDidExplicitOpenERKN3WTF3URLERKNS1_6StringE +_ZN7WebCore17FrameLoaderClient23getLoadDecisionForIconsERKN3WTF6VectorISt4pairIRNS_8LinkIconEmELm0ENS1_15CrashOnOverflowELm16EEE +_ZN7WebCore17FrameLoaderClient23getLoadDecisionForIconsERKN3WTF6VectorISt4pairIRNS_8LinkIconEmELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN7WebCore17FrameLoaderClient24didRestoreScrollPositionEv +_ZN7WebCore17FrameLoaderClient24isEmptyFrameLoaderClientEv +_ZN7WebCore17FrameLoaderClient26dispatchWillChangeDocumentERKN3WTF3URLES4_ +_ZN7WebCore17FrameLoaderClient26dispatchWillChangeDocumentERKNS_3URLES3_ +_ZN7WebCore17FrameLoaderClient27forcePageTransitionIfNeededEv +_ZN7WebCore17FrameLoaderClient27registerForIconNotificationEv +_ZN7WebCore17FrameLoaderClient28didLoadFromRegistrableDomainEONS_17RegistrableDomainE +_ZN7WebCore17FrameLoaderClient28notifyPageOfAppBoundBehaviorEv +_ZN7WebCore17FrameLoaderClient29dispatchDidChangeMainDocumentEv +_ZN7WebCore17FrameLoaderClient29dispatchDidNavigateWithinPageEv +_ZN7WebCore17FrameLoaderClient29dispatchGlobalObjectAvailableERNS_15DOMWrapperWorldE +_ZN7WebCore17FrameLoaderClient29hasFrameSpecificStorageAccessEv +_ZN7WebCore17FrameLoaderClient30completePageTransitionIfNeededEv +_ZN7WebCore17FrameLoaderClient30updateGlobalHistoryItemForPageEv +_ZN7WebCore17FrameLoaderClient31dispatchDidChangeProvisionalURLEv +_ZN7WebCore17FrameLoaderClient31dispatchDidReachLayoutMilestoneEN3WTF9OptionSetINS_15LayoutMilestoneEEE +_ZN7WebCore17FrameLoaderClient31dispatchDidReachLayoutMilestoneEj +_ZN7WebCore17FrameLoaderClient37dispatchDidReachVisuallyNonEmptyStateEv +_ZN7WebCore17FrameLoaderClient38shouldForceUniversalAccessFromLocalURLERKN3WTF3URLE +_ZN7WebCore17FrameLoaderClient38shouldForceUniversalAccessFromLocalURLERKNS_3URLE +_ZN7WebCore17FrameLoaderClient52dispatchDidReconnectDOMWindowExtensionToGlobalObjectEPNS_18DOMWindowExtensionE +_ZN7WebCore17FrameLoaderClient52dispatchWillDestroyGlobalObjectForDOMWindowExtensionEPNS_18DOMWindowExtensionE +_ZN7WebCore17FrameLoaderClient56dispatchWillDisconnectDOMWindowExtensionFromGlobalObjectEPNS_18DOMWindowExtensionE +_ZN7WebCore17FrameLoaderClientC2ERKS0_ +_ZN7WebCore17FrameLoaderClientC2Ev +_ZN7WebCore17FrameLoaderClientD0Ev +_ZN7WebCore17FrameLoaderClientD1Ev +_ZN7WebCore17FrameLoaderClientD2Ev +_ZN7WebCore17FrameLoaderClientdaEPv +_ZN7WebCore17FrameLoaderClientdlEPv +_ZN7WebCore17FrameLoaderClientnaEm +_ZN7WebCore17FrameLoaderClientnaEmPv +_ZN7WebCore17FrameLoaderClientnwEm +_ZN7WebCore17FrameLoaderClientnwEmPv +_ZN7WebCore17FullscreenManager14exitFullscreenEv +_ZN7WebCore17FullscreenManager16cancelFullscreenEv +_ZN7WebCore17FullscreenManager17didExitFullscreenEv +_ZN7WebCore17FullscreenManager18didEnterFullscreenEv +_ZN7WebCore17FullscreenManager18willExitFullscreenEv +_ZN7WebCore17FullscreenManager19willEnterFullscreenERNS_7ElementE +_ZN7WebCore17FullscreenManager22setAnimatingFullscreenEb +_ZN7WebCore17FullscreenManager27requestFullscreenForElementEPNS_7ElementENS0_19FullscreenCheckTypeE +_ZN7WebCore17FullscreenManager27setFullscreenControlsHiddenEb +_ZN7WebCore17HTMLAnchorElement4textEv +_ZN7WebCore17HTMLAnchorElement7relListEv +_ZN7WebCore17HTMLButtonElement7setTypeERKN3WTF10AtomStringE +_ZN7WebCore17HTMLButtonElement7setTypeERKN3WTF12AtomicStringE +_ZN7WebCore17HTMLCanvasElement25setUsesDisplayListDrawingEb +_ZN7WebCore17HTMLCanvasElement26setTracksDisplayListReplayEb +_ZN7WebCore17HTMLCanvasElement27setMaxPixelMemoryForTestingEm +_ZN7WebCore17HTMLCanvasElement8setWidthEj +_ZN7WebCore17HTMLCanvasElement9setHeightEj +_ZN7WebCore17HTMLCanvasElement9toDataURLERKN3WTF6StringE +_ZN7WebCore17HTMLCanvasElement9toDataURLERKN3WTF6StringEN3JSC7JSValueE +_ZN7WebCore17HTMLOptionElement11setSelectedEb +_ZN7WebCore17HTMLOptionElement8selectedEv +_ZN7WebCore17HTMLOptionElement8setLabelERKN3WTF6StringE +_ZN7WebCore17HTMLOptionElement8setValueERKN3WTF6StringE +_ZN7WebCore17HTMLPlugInElement14setReplacementENS_20RenderEmbeddedObject26PluginUnavailabilityReasonERKN3WTF6StringE +_ZN7WebCore17HTMLPlugInElement21isReplacementObscuredEv +_ZN7WebCore17HTMLScriptElement14setCrossOriginERKN3WTF10AtomStringE +_ZN7WebCore17HTMLScriptElement14setCrossOriginERKN3WTF12AtomicStringE +_ZN7WebCore17HTMLScriptElement7setTextERKN3WTF6StringE +_ZN7WebCore17HTMLScriptElement8setAsyncEb +_ZN7WebCore17HTMLSelectElement11setMultipleEb +_ZN7WebCore17HTMLSelectElement16setSelectedIndexEi +_ZN7WebCore17HTMLSelectElement20optionSelectedByUserEibb +_ZN7WebCore17HTMLSelectElement3addERKN3WTF7VariantIJNS1_6RefPtrINS_17HTMLOptionElementENS1_13DumbPtrTraitsIS4_EEEENS3_INS_19HTMLOptGroupElementENS5_IS8_EEEEEEERKNS1_8OptionalINS2_IJNS3_INS_11HTMLElementENS5_ISF_EEEEiEEEEE +_ZN7WebCore17HTMLSelectElement3addERKN3WTF7VariantIJNS1_6RefPtrINS_17HTMLOptionElementENS1_13DumbPtrTraitsIS4_EEEENS3_INS_19HTMLOptGroupElementENS5_IS8_EEEEEEERKSt8optionalINS2_IJNS3_INS_11HTMLElementENS5_ISF_EEEEiEEEE +_ZN7WebCore17HTMLSelectElement4itemEj +_ZN7WebCore17HTMLSelectElement6removeEi +_ZN7WebCore17HTMLSelectElement7optionsEv +_ZN7WebCore17HTMLSelectElement7setSizeEj +_ZN7WebCore17HTMLSelectElement8setValueERKN3WTF6StringE +_ZN7WebCore17HTMLSelectElement9namedItemERKN3WTF10AtomStringE +_ZN7WebCore17HTMLSelectElement9namedItemERKN3WTF12AtomicStringE +_ZN7WebCore17HistoryController18replaceCurrentItemEPNS_11HistoryItemE +_ZN7WebCore17HistoryController26saveDocumentAndScrollStateEv +_ZN7WebCore17HistoryController33restoreScrollPositionAndViewStateEv +_ZN7WebCore17HistoryController36saveScrollPositionAndViewStateToItemEPNS_11HistoryItemE +_ZN7WebCore17JSDOMGlobalObject10structuresERKN3WTF14AbstractLockerE +_ZN7WebCore17JSDOMGlobalObject12constructorsERKN3WTF14AbstractLockerE +_ZN7WebCore17JSDOMGlobalObject12globalObjectEv +_ZN7WebCore17JSDOMGlobalObject13visitChildrenEPN3JSC6JSCellERNS1_11SlotVisitorE +_ZN7WebCore17JSDOMGlobalObject14finishCreationERN3JSC2VME +_ZN7WebCore17JSDOMGlobalObject14finishCreationERN3JSC2VMEPNS1_8JSObjectE +_ZN7WebCore17JSDOMGlobalObject14guardedObjectsERKN3WTF14AbstractLockerE +_ZN7WebCore17JSDOMGlobalObject15createStructureERN3JSC2VMENS1_7JSValueE +_ZN7WebCore17JSDOMGlobalObject15setCurrentEventEPNS_5EventE +_ZN7WebCore17JSDOMGlobalObject17addBuiltinGlobalsERN3JSC2VME +_ZN7WebCore17JSDOMGlobalObject21offsetOfWorldIsNormalEv +_ZN7WebCore17JSDOMGlobalObject23promiseRejectionTrackerEPN3JSC14JSGlobalObjectEPNS1_9JSPromiseENS1_27JSPromiseRejectionOperationE +_ZN7WebCore17JSDOMGlobalObject24builtinInternalFunctionsEv +_ZN7WebCore17JSDOMGlobalObject34reportUncaughtExceptionAtEventLoopEPN3JSC14JSGlobalObjectEPNS1_9ExceptionE +_ZN7WebCore17JSDOMGlobalObject4infoEv +_ZN7WebCore17JSDOMGlobalObject5worldEv +_ZN7WebCore17JSDOMGlobalObject6gcLockEv +_ZN7WebCore17JSDOMGlobalObject6s_infoE +_ZN7WebCore17JSDOMGlobalObject7destroyEPN3JSC6JSCellE +_ZN7WebCore17JSDOMGlobalObjectC1ERN3JSC2VMEPNS1_9StructureEON3WTF3RefINS_15DOMWrapperWorldENS6_13DumbPtrTraitsIS8_EEEEPKNS1_23GlobalObjectMethodTableE +_ZN7WebCore17JSDOMGlobalObjectC2ERN3JSC2VMEPNS1_9StructureEON3WTF3RefINS_15DOMWrapperWorldENS6_13DumbPtrTraitsIS8_EEEEPKNS1_23GlobalObjectMethodTableE +_ZN7WebCore17JSDOMGlobalObjectD1Ev +_ZN7WebCore17JSDOMGlobalObjectD2Ev +_ZN7WebCore17JSDOMRectReadOnly11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE +_ZN7WebCore17JSDOMRectReadOnly14finishCreationERN3JSC2VME +_ZN7WebCore17JSDOMRectReadOnly14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE +_ZN7WebCore17JSDOMRectReadOnly15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore17JSDOMRectReadOnly15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE +_ZN7WebCore17JSDOMRectReadOnly15subspaceForImplERN3JSC2VME +_ZN7WebCore17JSDOMRectReadOnly4infoEv +_ZN7WebCore17JSDOMRectReadOnly6s_infoE +_ZN7WebCore17JSDOMRectReadOnly7destroyEPN3JSC6JSCellE +_ZN7WebCore17JSDOMRectReadOnly9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore17JSDOMRectReadOnly9serializeERN3JSC14JSGlobalObjectERS0_RNS_17JSDOMGlobalObjectE +_ZN7WebCore17JSDOMRectReadOnly9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore17JSDOMRectReadOnlyC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_15DOMRectReadOnlyENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore17JSDOMRectReadOnlyC1ERKS0_ +_ZN7WebCore17JSDOMRectReadOnlyC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_15DOMRectReadOnlyENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore17JSDOMRectReadOnlyC2ERKS0_ +_ZN7WebCore17JSDOMRectReadOnlyD1Ev +_ZN7WebCore17JSDOMRectReadOnlyD2Ev +_ZN7WebCore17JSDOMRectReadOnlyaSERKS0_ +_ZN7WebCore17JSHTMLLinkElement11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE +_ZN7WebCore17JSHTMLLinkElement14finishCreationERN3JSC2VME +_ZN7WebCore17JSHTMLLinkElement14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE +_ZN7WebCore17JSHTMLLinkElement15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore17JSHTMLLinkElement15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE +_ZN7WebCore17JSHTMLLinkElement15subspaceForImplERN3JSC2VME +_ZN7WebCore17JSHTMLLinkElement4infoEv +_ZN7WebCore17JSHTMLLinkElement6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_15HTMLLinkElementENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore17JSHTMLLinkElement6s_infoE +_ZN7WebCore17JSHTMLLinkElement9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore17JSHTMLLinkElement9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore17JSHTMLLinkElementC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_15HTMLLinkElementENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore17JSHTMLLinkElementC1ERKS0_ +_ZN7WebCore17JSHTMLLinkElementC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_15HTMLLinkElementENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore17JSHTMLLinkElementC2ERKS0_ +_ZN7WebCore17JSHTMLLinkElementD1Ev +_ZN7WebCore17JSHTMLLinkElementD2Ev +_ZN7WebCore17JSXPathExpression9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore17KeyframeValueList6insertESt10unique_ptrIKNS_14AnimationValueESt14default_deleteIS3_EE +_ZN7WebCore17LibWebRTCProvider15resolveMDNSNameEN3PAL9SessionIDERKN3WTF6StringEONS3_17CompletionHandlerIFvONSt12experimental15fundamentals_v38expectedIS4_NS_17MDNSRegisterErrorEEEEEE +_ZN7WebCore17LibWebRTCProvider15webRTCAvailableEv +_ZN7WebCore17LibWebRTCProvider16registerMDNSNameEN3PAL9SessionIDEmRKN3WTF6StringEONS3_17CompletionHandlerIFvONSt12experimental15fundamentals_v38expectedIS4_NS_17MDNSRegisterErrorEEEEEE +_ZN7WebCore17LibWebRTCProvider16registerMDNSNameEN3WTF16ObjectIdentifierINS_22DocumentIdentifierTypeEEERKNS1_6StringEONS1_17CompletionHandlerIFvONSt12experimental15fundamentals_v38expectedIS5_NS_17MDNSRegisterErrorEEEEEE +_ZN7WebCore17LibWebRTCProvider19unregisterMDNSNamesEN3WTF16ObjectIdentifierINS_22DocumentIdentifierTypeEEE +_ZN7WebCore17LibWebRTCProvider19unregisterMDNSNamesEm +_ZN7WebCore17LibWebRTCProvider24registerWebKitVP9DecoderEv +_ZN7WebCore17LibWebRTCProvider29setH264HardwareEncoderAllowedEb +_ZN7WebCore17LibWebRTCProvider6createEv +_ZN7WebCore17LibWebRTCProvider9setActiveEb +_ZN7WebCore17LibWebRTCProviderC1ERKS0_ +_ZN7WebCore17LibWebRTCProviderC1Ev +_ZN7WebCore17LibWebRTCProviderC2ERKS0_ +_ZN7WebCore17LibWebRTCProviderC2Ev +_ZN7WebCore17LibWebRTCProviderD0Ev +_ZN7WebCore17LibWebRTCProviderD1Ev +_ZN7WebCore17LibWebRTCProviderD2Ev +_ZN7WebCore17LibWebRTCProvideraSERKS0_ +_ZN7WebCore17LibWebRTCProviderdaEPv +_ZN7WebCore17LibWebRTCProviderdlEPv +_ZN7WebCore17LibWebRTCProvidernaEm +_ZN7WebCore17LibWebRTCProvidernaEmPv +_ZN7WebCore17LibWebRTCProvidernwEm +_ZN7WebCore17LibWebRTCProvidernwEmPv +_ZN7WebCore17LinkIconCollector12iconsOfTypesEN3WTF9OptionSetINS_12LinkIconTypeEEE +_ZN7WebCore17MouseRelatedEvent7offsetXEv +_ZN7WebCore17MouseRelatedEvent7offsetYEv +_ZN7WebCore17NowPlayingManager17setNowPlayingInfoERNS0_6ClientEONS_14NowPlayingInfoE +_ZN7WebCore17NowPlayingManager25clearNowPlayingInfoClientERNS0_6ClientE +_ZN7WebCore17NowPlayingManager30didReceiveRemoteControlCommandENS_20PlatformMediaSession24RemoteControlCommandTypeEPKNS1_21RemoteCommandArgumentE +_ZN7WebCore17NowPlayingManagerC1Ev +_ZN7WebCore17NowPlayingManagerC2Ev +_ZN7WebCore17NowPlayingManagerD0Ev +_ZN7WebCore17NowPlayingManagerD1Ev +_ZN7WebCore17NowPlayingManagerD2Ev +_ZN7WebCore17NowPlayingManagerdaEPv +_ZN7WebCore17NowPlayingManagerdlEPv +_ZN7WebCore17NowPlayingManagernaEm +_ZN7WebCore17NowPlayingManagernaEmPv +_ZN7WebCore17NowPlayingManagernwEm +_ZN7WebCore17NowPlayingManagernwEmPv +_ZN7WebCore17PageConfigurationC1EON3WTF9UniqueRefINS_12EditorClientEEEONS1_3RefINS_14SocketProviderENS1_13DumbPtrTraitsIS7_EEEEONS2_INS_17LibWebRTCProviderEEEONS6_INS_20CacheStorageProviderENS8_ISF_EEEE +_ZN7WebCore17PageConfigurationC2EON3WTF9UniqueRefINS_12EditorClientEEEONS1_3RefINS_14SocketProviderENS1_13DumbPtrTraitsIS7_EEEEONS2_INS_17LibWebRTCProviderEEEONS6_INS_20CacheStorageProviderENS8_ISF_EEEE +_ZN7WebCore17PageConfigurationD1Ev +_ZN7WebCore17PageConfigurationD2Ev +_ZN7WebCore17PageConsoleClient10addMessageEN3JSC13MessageSourceENS1_12MessageLevelERKN3WTF6StringEONS4_3RefIN9Inspector15ScriptCallStackENS4_13DumbPtrTraitsISA_EEEE +_ZN7WebCore17PageConsoleClient10addMessageEN3JSC13MessageSourceENS1_12MessageLevelERKN3WTF6StringES7_jjONS4_6RefPtrIN9Inspector15ScriptCallStackENS4_13DumbPtrTraitsISA_EEEEPNS1_14JSGlobalObjectEm +_ZN7WebCore17PageConsoleClient10addMessageEN3JSC13MessageSourceENS1_12MessageLevelERKN3WTF6StringES7_jjONS4_6RefPtrIN9Inspector15ScriptCallStackENS4_13DumbPtrTraitsISA_EEEEPNS1_9ExecStateEm +_ZN7WebCore17PageConsoleClient10addMessageEN3JSC13MessageSourceENS1_12MessageLevelERKN3WTF6StringEmPNS_8DocumentE +_ZN7WebCore17PageConsoleClient10addMessageEOSt10unique_ptrIN9Inspector14ConsoleMessageESt14default_deleteIS3_EE +_ZN7WebCore17PageConsoleClient10countResetEPN3JSC14JSGlobalObjectERKN3WTF6StringE +_ZN7WebCore17PageConsoleClient10profileEndEPN3JSC14JSGlobalObjectERKN3WTF6StringE +_ZN7WebCore17PageConsoleClient10profileEndEPN3JSC9ExecStateERKN3WTF6StringE +_ZN7WebCore17PageConsoleClient10screenshotEPN3JSC14JSGlobalObjectEON3WTF3RefIN9Inspector15ScriptArgumentsENS4_13DumbPtrTraitsIS7_EEEE +_ZN7WebCore17PageConsoleClient16takeHeapSnapshotEPN3JSC14JSGlobalObjectERKN3WTF6StringE +_ZN7WebCore17PageConsoleClient16takeHeapSnapshotEPN3JSC9ExecStateERKN3WTF6StringE +_ZN7WebCore17PageConsoleClient21shouldPrintExceptionsEv +_ZN7WebCore17PageConsoleClient23messageWithTypeAndLevelEN3JSC11MessageTypeENS1_12MessageLevelEPNS1_14JSGlobalObjectEON3WTF3RefIN9Inspector15ScriptArgumentsENS6_13DumbPtrTraitsIS9_EEEE +_ZN7WebCore17PageConsoleClient23messageWithTypeAndLevelEN3JSC11MessageTypeENS1_12MessageLevelEPNS1_9ExecStateEON3WTF3RefIN9Inspector15ScriptArgumentsENS6_13DumbPtrTraitsIS9_EEEE +_ZN7WebCore17PageConsoleClient24setShouldPrintExceptionsEb +_ZN7WebCore17PageConsoleClient4muteEv +_ZN7WebCore17PageConsoleClient4timeEPN3JSC14JSGlobalObjectERKN3WTF6StringE +_ZN7WebCore17PageConsoleClient4timeEPN3JSC9ExecStateERKN3WTF6StringE +_ZN7WebCore17PageConsoleClient5countEPN3JSC14JSGlobalObjectERKN3WTF6StringE +_ZN7WebCore17PageConsoleClient5countEPN3JSC9ExecStateEON3WTF3RefIN9Inspector15ScriptArgumentsENS4_13DumbPtrTraitsIS7_EEEE +_ZN7WebCore17PageConsoleClient6recordEPN3JSC14JSGlobalObjectEON3WTF3RefIN9Inspector15ScriptArgumentsENS4_13DumbPtrTraitsIS7_EEEE +_ZN7WebCore17PageConsoleClient6recordEPN3JSC9ExecStateEON3WTF3RefIN9Inspector15ScriptArgumentsENS4_13DumbPtrTraitsIS7_EEEE +_ZN7WebCore17PageConsoleClient6unmuteEv +_ZN7WebCore17PageConsoleClient7profileEPN3JSC14JSGlobalObjectERKN3WTF6StringE +_ZN7WebCore17PageConsoleClient7profileEPN3JSC9ExecStateERKN3WTF6StringE +_ZN7WebCore17PageConsoleClient7timeEndEPN3JSC14JSGlobalObjectERKN3WTF6StringE +_ZN7WebCore17PageConsoleClient7timeEndEPN3JSC9ExecStateERKN3WTF6StringE +_ZN7WebCore17PageConsoleClient7timeLogEPN3JSC14JSGlobalObjectERKN3WTF6StringEONS4_3RefIN9Inspector15ScriptArgumentsENS4_13DumbPtrTraitsISA_EEEE +_ZN7WebCore17PageConsoleClient9recordEndEPN3JSC14JSGlobalObjectEON3WTF3RefIN9Inspector15ScriptArgumentsENS4_13DumbPtrTraitsIS7_EEEE +_ZN7WebCore17PageConsoleClient9recordEndEPN3JSC9ExecStateEON3WTF3RefIN9Inspector15ScriptArgumentsENS4_13DumbPtrTraitsIS7_EEEE +_ZN7WebCore17PageConsoleClient9timeStampEPN3JSC14JSGlobalObjectEON3WTF3RefIN9Inspector15ScriptArgumentsENS4_13DumbPtrTraitsIS7_EEEE +_ZN7WebCore17PageConsoleClient9timeStampEPN3JSC9ExecStateEON3WTF3RefIN9Inspector15ScriptArgumentsENS4_13DumbPtrTraitsIS7_EEEE +_ZN7WebCore17PageConsoleClientC1ERKS0_ +_ZN7WebCore17PageConsoleClientC1ERNS_4PageE +_ZN7WebCore17PageConsoleClientC2ERKS0_ +_ZN7WebCore17PageConsoleClientC2ERNS_4PageE +_ZN7WebCore17PageConsoleClientD0Ev +_ZN7WebCore17PageConsoleClientD1Ev +_ZN7WebCore17PageConsoleClientD2Ev +_ZN7WebCore17PageConsoleClientdaEPv +_ZN7WebCore17PageConsoleClientdlEPv +_ZN7WebCore17PageConsoleClientnaEm +_ZN7WebCore17PageConsoleClientnaEmPv +_ZN7WebCore17PageConsoleClientnwEm +_ZN7WebCore17PageConsoleClientnwEm10NotNullTagPv +_ZN7WebCore17PageConsoleClientnwEmPv +_ZN7WebCore17ParsedContentType6createERKN3WTF6StringENS_4ModeE +_ZN7WebCore17ResourceErrorBase7setTypeENS0_4TypeE +_ZN7WebCore17SQLiteTransaction5beginEv +_ZN7WebCore17SQLiteTransaction6commitEv +_ZN7WebCore17SQLiteTransaction8rollbackEv +_ZN7WebCore17SQLiteTransactionC1ERNS_14SQLiteDatabaseEb +_ZN7WebCore17SQLiteTransactionC2ERNS_14SQLiteDatabaseEb +_ZN7WebCore17SQLiteTransactionD1Ev +_ZN7WebCore17SQLiteTransactionD2Ev +_ZN7WebCore17SubresourceLoader6createERNS_5FrameERNS_14CachedResourceEONS_15ResourceRequestERKNS_21ResourceLoaderOptionsEON3WTF17CompletionHandlerIFvONSA_6RefPtrIS0_NSA_13DumbPtrTraitsIS0_EEEEEEE +_ZN7WebCore17TextureMapperTile5paintERNS_13TextureMapperERKNS_20TransformationMatrixEfj +_ZN7WebCore17WebGLStateTrackerC1EON3WTF8FunctionIFvbEEE +_ZN7WebCore17WebGLStateTrackerC2EON3WTF8FunctionIFvbEEE +_ZN7WebCore17cacheDOMStructureERNS_17JSDOMGlobalObjectEPN3JSC9StructureEPKNS2_9ClassInfoE +_ZN7WebCore17computeCurrentAgeERKNS_16ResourceResponseEN3WTF8WallTimeE +_ZN7WebCore17cssValueKeywordIDEN3WTF10StringViewE +_ZN7WebCore17execStateFromPageERNS_15DOMWrapperWorldEPNS_4PageE +_ZN7WebCore17isStartOfDocumentERKNS_15VisiblePositionE +_ZN7WebCore17makeBoundaryPointERKNS_15VisiblePositionE +_ZN7WebCore17makeBoundaryPointERKNS_8PositionE +_ZN7WebCore17serializeFragmentERKNS_4NodeENS_15SerializedNodesEPN3WTF6VectorIPS0_Lm0ENS4_15CrashOnOverflowELm16ENS4_10FastMallocEEENS_11ResolveURLsEPNS5_INS_13QualifiedNameELm0ES7_Lm16ES8_EENS_19SerializationSyntaxE +_ZN7WebCore17setCookiesFromDOMERKNS_21NetworkStorageSessionERKNS_3URLERKNS_12SameSiteInfoES5_St8optionalImESA_RKN3WTF6StringE +_ZN7WebCore17snapshotFrameRectERNS_5FrameERKNS_7IntRectEj +_ZN7WebCore17snapshotSelectionERNS_5FrameEj +_ZN7WebCore17standardUserAgentERKN3WTF6StringES3_ +_ZN7WebCore17toLinearDisplayP3ERKNS_9DisplayP3IfEE +_ZN7WebCore17valueToByteStringERN3JSC14JSGlobalObjectENS0_7JSValueE +_ZN7WebCore17valueToByteStringERN3JSC9ExecStateENS0_7JSValueE +_ZN7WebCore18AdClickAttribution13markAsExpiredEv +_ZN7WebCore18AdClickAttribution20markConversionAsSentEv +_ZN7WebCore18AdClickAttribution22parseConversionRequestERKN3WTF3URLE +_ZN7WebCore18AdClickAttribution31convertAndGetEarliestTimeToSendEONS0_10ConversionE +_ZN7WebCore18CustomHeaderFieldsC1ERKS0_ +_ZN7WebCore18CustomHeaderFieldsC1Ev +_ZN7WebCore18CustomHeaderFieldsC2ERKS0_ +_ZN7WebCore18CustomHeaderFieldsC2Ev +_ZN7WebCore18CustomHeaderFieldsD1Ev +_ZN7WebCore18CustomHeaderFieldsD2Ev +_ZN7WebCore18CustomHeaderFieldsaSERKS0_ +_ZN7WebCore18DOMWindowExtensionC1EPNS_5FrameERNS_15DOMWrapperWorldE +_ZN7WebCore18DOMWindowExtensionC1EPNS_9DOMWindowERNS_15DOMWrapperWorldE +_ZN7WebCore18DOMWindowExtensionC2EPNS_5FrameERNS_15DOMWrapperWorldE +_ZN7WebCore18DOMWindowExtensionC2EPNS_9DOMWindowERNS_15DOMWrapperWorldE +_ZN7WebCore18DOMWindowExtensionD0Ev +_ZN7WebCore18DOMWindowExtensionD1Ev +_ZN7WebCore18DOMWindowExtensionD2Ev +_ZN7WebCore18EventLoopTaskGroup14queueMicrotaskEON3WTF8FunctionIFvvEEE +_ZN7WebCore18EventLoopTaskGroup9queueTaskENS_10TaskSourceEON3WTF8FunctionIFvvEEE +_ZN7WebCore18HTMLMarqueeElement14setScrollDelayEj +_ZN7WebCore18HTMLMarqueeElement15setScrollAmountEj +_ZN7WebCore18HTMLMarqueeElement4stopEv +_ZN7WebCore18HTMLMarqueeElement5startEv +_ZN7WebCore18HTMLMarqueeElement7setLoopEi +_ZN7WebCore18ImageBufferBackend12putImageDataENS_22AlphaPremultiplicationERKNS_9ImageDataERKNS_7IntRectERKNS_8IntPointES1_Pv +_ZN7WebCore18ImageBufferBackend13drawConsumingERNS_15GraphicsContextERKNS_9FloatRectES5_RKNS_20ImagePaintingOptionsE +_ZN7WebCore18ImageBufferBackend13sinkIntoImageENS_18PreserveResolutionE +_ZN7WebCore18ImageBufferBackend19sinkIntoNativeImageEv +_ZN7WebCore18ImageBufferBackend20calculateBackendSizeERKNS_9FloatSizeEf +_ZN7WebCore18ImageBufferBackend22convertToLuminanceMaskEv +_ZN7WebCore18ImageBufferBackendC2ERKNS_9FloatSizeERKNS_7IntSizeEfNS_10ColorSpaceE +_ZN7WebCore18ImageBufferBackendD0Ev +_ZN7WebCore18ImageBufferBackendD1Ev +_ZN7WebCore18ImageBufferBackendD2Ev +_ZN7WebCore18InspectorPageAgent7frameIdEPNS_5FrameE +_ZN7WebCore18JSHTMLImageElement11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE +_ZN7WebCore18JSHTMLImageElement14finishCreationERN3JSC2VME +_ZN7WebCore18JSHTMLImageElement14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE +_ZN7WebCore18JSHTMLImageElement15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore18JSHTMLImageElement15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE +_ZN7WebCore18JSHTMLImageElement15subspaceForImplERN3JSC2VME +_ZN7WebCore18JSHTMLImageElement19getNamedConstructorERN3JSC2VMEPNS1_14JSGlobalObjectE +_ZN7WebCore18JSHTMLImageElement4infoEv +_ZN7WebCore18JSHTMLImageElement6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_16HTMLImageElementENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore18JSHTMLImageElement6s_infoE +_ZN7WebCore18JSHTMLImageElement9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore18JSHTMLImageElement9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore18JSHTMLImageElementC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_16HTMLImageElementENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore18JSHTMLImageElementC1ERKS0_ +_ZN7WebCore18JSHTMLImageElementC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_16HTMLImageElementENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore18JSHTMLImageElementC2ERKS0_ +_ZN7WebCore18JSHTMLImageElementD1Ev +_ZN7WebCore18JSHTMLImageElementD2Ev +_ZN7WebCore18JSHTMLInputElement11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE +_ZN7WebCore18JSHTMLInputElement13visitChildrenEPN3JSC6JSCellERNS1_11SlotVisitorE +_ZN7WebCore18JSHTMLInputElement14finishCreationERN3JSC2VME +_ZN7WebCore18JSHTMLInputElement14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE +_ZN7WebCore18JSHTMLInputElement15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore18JSHTMLInputElement15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE +_ZN7WebCore18JSHTMLInputElement15subspaceForImplERN3JSC2VME +_ZN7WebCore18JSHTMLInputElement4infoEv +_ZN7WebCore18JSHTMLInputElement6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_16HTMLInputElementENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore18JSHTMLInputElement6s_infoE +_ZN7WebCore18JSHTMLInputElement9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore18JSHTMLInputElement9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore18JSHTMLInputElementC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_16HTMLInputElementENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore18JSHTMLInputElementC1ERKS0_ +_ZN7WebCore18JSHTMLInputElementC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_16HTMLInputElementENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore18JSHTMLInputElementC2ERKS0_ +_ZN7WebCore18JSHTMLInputElementD1Ev +_ZN7WebCore18JSHTMLInputElementD2Ev +_ZN7WebCore18JSHTMLMediaElement11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE +_ZN7WebCore18JSHTMLMediaElement14finishCreationERN3JSC2VME +_ZN7WebCore18JSHTMLMediaElement14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE +_ZN7WebCore18JSHTMLMediaElement15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore18JSHTMLMediaElement15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE +_ZN7WebCore18JSHTMLMediaElement15subspaceForImplERN3JSC2VME +_ZN7WebCore18JSHTMLMediaElement4infoEv +_ZN7WebCore18JSHTMLMediaElement6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_16HTMLMediaElementENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore18JSHTMLMediaElement6s_infoE +_ZN7WebCore18JSHTMLMediaElement9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore18JSHTMLMediaElement9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore18JSHTMLMediaElementC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_16HTMLMediaElementENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore18JSHTMLMediaElementC1ERKS0_ +_ZN7WebCore18JSHTMLMediaElementC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_16HTMLMediaElementENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore18JSHTMLMediaElementC2ERKS0_ +_ZN7WebCore18JSHTMLMediaElementD1Ev +_ZN7WebCore18JSHTMLMediaElementD2Ev +_ZN7WebCore18JSHTMLVideoElement11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE +_ZN7WebCore18JSHTMLVideoElement14finishCreationERN3JSC2VME +_ZN7WebCore18JSHTMLVideoElement14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE +_ZN7WebCore18JSHTMLVideoElement15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore18JSHTMLVideoElement15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE +_ZN7WebCore18JSHTMLVideoElement15subspaceForImplERN3JSC2VME +_ZN7WebCore18JSHTMLVideoElement4infoEv +_ZN7WebCore18JSHTMLVideoElement6s_infoE +_ZN7WebCore18JSHTMLVideoElement9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore18JSHTMLVideoElement9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore18JSHTMLVideoElementC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_16HTMLVideoElementENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore18JSHTMLVideoElementC1ERKS0_ +_ZN7WebCore18JSHTMLVideoElementC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_16HTMLVideoElementENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore18JSHTMLVideoElementC2ERKS0_ +_ZN7WebCore18JSHTMLVideoElementD1Ev +_ZN7WebCore18JSHTMLVideoElementD2Ev +_ZN7WebCore18MessagePortChannel14processForPortERKNS_21MessagePortIdentifierE +_ZN7WebCore18ParsedContentRangeC1ERKN3WTF6StringE +_ZN7WebCore18ParsedContentRangeC1Elll +_ZN7WebCore18ParsedContentRangeC2ERKN3WTF6StringE +_ZN7WebCore18ParsedContentRangeC2Elll +_ZN7WebCore18PerformanceLogging17physicalFootprintEv +_ZN7WebCore18PerformanceLogging21memoryUsageStatisticsENS_34ShouldIncludeExpensiveComputationsE +_ZN7WebCore18PerformanceLogging22javaScriptObjectCountsEv +_ZN7WebCore18PlatformPasteboard5writeERKN3WTF6StringES4_ +_ZN7WebCore18PlatformPasteboard5writeERKN3WTF6VectorINS_20PasteboardCustomDataELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN7WebCore18PlatformPasteboard5writeERKNS_20PasteboardCustomDataE +_ZN7WebCore18PlatformPasteboard5writeERKNS_20PasteboardWebContentE +_ZN7WebCore18PlatformPasteboard8getTypesERN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN7WebCore18PlatformPasteboardC1ERKN3WTF6StringE +_ZN7WebCore18PlatformPasteboardC1Ev +_ZN7WebCore18PlatformPasteboardC2ERKN3WTF6StringE +_ZN7WebCore18PlatformPasteboardC2Ev +_ZN7WebCore18PlatformTimeRanges13intersectWithERKS0_ +_ZN7WebCore18PlatformTimeRanges3addERKN3WTF9MediaTimeES4_ +_ZN7WebCore18PlatformTimeRanges5clearEv +_ZN7WebCore18PlatformTimeRanges6invertEv +_ZN7WebCore18PlatformTimeRanges9unionWithERKS0_ +_ZN7WebCore18PlatformTimeRangesC1EON3WTF6VectorINS0_5RangeELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN7WebCore18PlatformTimeRangesC1ERKN3WTF9MediaTimeES4_ +_ZN7WebCore18PlatformTimeRangesC1ERKS0_ +_ZN7WebCore18PlatformTimeRangesC1Ev +_ZN7WebCore18PlatformTimeRangesC2EON3WTF6VectorINS0_5RangeELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN7WebCore18PlatformTimeRangesC2ERKN3WTF9MediaTimeES4_ +_ZN7WebCore18PlatformTimeRangesC2ERKS0_ +_ZN7WebCore18PlatformTimeRangesC2Ev +_ZN7WebCore18PlatformTimeRangesD1Ev +_ZN7WebCore18PlatformTimeRangesD2Ev +_ZN7WebCore18PlatformTimeRangesaSERKS0_ +_ZN7WebCore18PlatformTimeRangesdaEPv +_ZN7WebCore18PlatformTimeRangesdlEPv +_ZN7WebCore18PlatformTimeRangesnaEm +_ZN7WebCore18PlatformTimeRangesnaEmPv +_ZN7WebCore18PlatformTimeRangesnwEm +_ZN7WebCore18PlatformTimeRangesnwEm10NotNullTagPv +_ZN7WebCore18PlatformTimeRangesnwEmPv +_ZN7WebCore18PluginInfoProvider10removePageERNS_4PageE +_ZN7WebCore18PluginInfoProvider20clearPagesPluginDataEv +_ZN7WebCore18PluginInfoProvider7addPageERNS_4PageE +_ZN7WebCore18PluginInfoProvider7refreshEb +_ZN7WebCore18PluginInfoProviderC2Ev +_ZN7WebCore18PluginInfoProviderD0Ev +_ZN7WebCore18PluginInfoProviderD1Ev +_ZN7WebCore18PluginInfoProviderD2Ev +_ZN7WebCore18PrewarmInformationC1ERKS0_ +_ZN7WebCore18PrewarmInformationC1Ev +_ZN7WebCore18PrewarmInformationC2ERKS0_ +_ZN7WebCore18PrewarmInformationC2Ev +_ZN7WebCore18PrewarmInformationD1Ev +_ZN7WebCore18PrewarmInformationD2Ev +_ZN7WebCore18PrewarmInformationaSERKS0_ +_ZN7WebCore18PrewarmInformationdaEPv +_ZN7WebCore18PrewarmInformationdlEPv +_ZN7WebCore18PrewarmInformationnaEm +_ZN7WebCore18PrewarmInformationnwEm +_ZN7WebCore18PrewarmInformationnwEmPv +_ZN7WebCore18RenderLayerBacking25setUsesDisplayListDrawingEb +_ZN7WebCore18RenderLayerBacking30setIsTrackingDisplayListReplayEb +_ZN7WebCore18ScrollingStateNode8setLayerERKNS_19LayerRepresentationE +_ZN7WebCore18ScrollingStateTree10attachNodeENS_17ScrollingNodeTypeEmm +_ZN7WebCore18ScrollingStateTree15setRemovedNodesEN3WTF7HashSetImNS1_7IntHashImEENS1_10HashTraitsImEEEE +_ZN7WebCore18ScrollingStateTree23setHasChangedPropertiesEb +_ZN7WebCore18ScrollingStateTree6commitENS_19LayerRepresentation4TypeE +_ZN7WebCore18ScrollingStateTreeC1EPNS_25AsyncScrollingCoordinatorE +_ZN7WebCore18ScrollingStateTreeC2EPNS_25AsyncScrollingCoordinatorE +_ZN7WebCore18ScrollingStateTreeD1Ev +_ZN7WebCore18ScrollingStateTreeD2Ev +_ZN7WebCore18SecurityOriginData22fromDatabaseIdentifierERKN3WTF6StringE +_ZN7WebCore18SecurityOriginData9fromFrameEPNS_5FrameE +_ZN7WebCore18SocketStreamHandleC2ERKN3WTF3URLERNS_24SocketStreamHandleClientE +_ZN7WebCore18SocketStreamHandleC2ERKNS_3URLERNS_24SocketStreamHandleClientE +_ZN7WebCore18StyleSheetContents11parseStringERKN3WTF6StringE +_ZN7WebCore18StyleSheetContentsC1EPNS_15StyleRuleImportERKN3WTF6StringERKNS_16CSSParserContextE +_ZN7WebCore18StyleSheetContentsC2EPNS_15StyleRuleImportERKN3WTF6StringERKNS_16CSSParserContextE +_ZN7WebCore18StyleSheetContentsD1Ev +_ZN7WebCore18StyleSheetContentsD2Ev +_ZN7WebCore18TextureMapperLayer10setFiltersERKNS_16FilterOperationsE +_ZN7WebCore18TextureMapperLayer10setOpacityEf +_ZN7WebCore18TextureMapperLayer11setChildrenERKN3WTF6VectorIPS0_Lm0ENS1_15CrashOnOverflowELm16EEE +_ZN7WebCore18TextureMapperLayer11setChildrenERKN3WTF6VectorIPS0_Lm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN7WebCore18TextureMapperLayer11setPositionERKNS_10FloatPointE +_ZN7WebCore18TextureMapperLayer12setMaskLayerEPS0_ +_ZN7WebCore18TextureMapperLayer12setTransformERKNS_20TransformationMatrixE +_ZN7WebCore18TextureMapperLayer12sortByZOrderERN3WTF6VectorIPS0_Lm0ENS1_15CrashOnOverflowELm16EEE +_ZN7WebCore18TextureMapperLayer12sortByZOrderERN3WTF6VectorIPS0_Lm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN7WebCore18TextureMapperLayer13setAnimationsERKN7Nicosia10AnimationsE +_ZN7WebCore18TextureMapperLayer13setAnimationsERKNS_23TextureMapperAnimationsE +_ZN7WebCore18TextureMapperLayer13setSolidColorERKNS_5ColorE +_ZN7WebCore18TextureMapperLayer14paintRecursiveERKNS_25TextureMapperPaintOptionsE +_ZN7WebCore18TextureMapperLayer14setAnchorPointERKNS_12FloatPoint3DE +_ZN7WebCore18TextureMapperLayer14setPreserves3DEb +_ZN7WebCore18TextureMapperLayer14syncAnimationsEN3WTF13MonotonicTimeE +_ZN7WebCore18TextureMapperLayer15setBackingStoreEPNS_25TextureMapperBackingStoreE +_ZN7WebCore18TextureMapperLayer15setBoundsOriginERKNS_10FloatPointE +_ZN7WebCore18TextureMapperLayer15setContentsRectERKNS_9FloatRectE +_ZN7WebCore18TextureMapperLayer15setDebugVisualsEbRKNS_5ColorEf +_ZN7WebCore18TextureMapperLayer15setDebugVisualsEbRKNS_5ColorEfb +_ZN7WebCore18TextureMapperLayer15setDrawsContentEb +_ZN7WebCore18TextureMapperLayer15setRepaintCountEi +_ZN7WebCore18TextureMapperLayer15setReplicaLayerEPS0_ +_ZN7WebCore18TextureMapperLayer16paintIntoSurfaceERKNS_25TextureMapperPaintOptionsERKNS_7IntSizeE +_ZN7WebCore18TextureMapperLayer16removeFromParentEv +_ZN7WebCore18TextureMapperLayer16replicaTransformEv +_ZN7WebCore18TextureMapperLayer16setBackdropLayerEPS0_ +_ZN7WebCore18TextureMapperLayer16setContentsLayerEPNS_26TextureMapperPlatformLayerE +_ZN7WebCore18TextureMapperLayer16setMasksToBoundsEb +_ZN7WebCore18TextureMapperLayer16setTextureMapperEPNS_13TextureMapperE +_ZN7WebCore18TextureMapperLayer17removeAllChildrenEv +_ZN7WebCore18TextureMapperLayer17setContentsOpaqueEb +_ZN7WebCore18TextureMapperLayer17setRepaintCounterEbi +_ZN7WebCore18TextureMapperLayer18setContentsVisibleEb +_ZN7WebCore18TextureMapperLayer18setFixedToViewportEb +_ZN7WebCore18TextureMapperLayer19setContentsTileSizeERKNS_9FloatSizeE +_ZN7WebCore18TextureMapperLayer20paintSelfAndChildrenERKNS_25TextureMapperPaintOptionsE +_ZN7WebCore18TextureMapperLayer20setChildrenTransformERKNS_20TransformationMatrixE +_ZN7WebCore18TextureMapperLayer20setContentsTilePhaseERKNS_9FloatSizeE +_ZN7WebCore18TextureMapperLayer21computeOverlapRegionsERNS_6RegionES2_NS0_22ResolveSelfOverlapModeE +_ZN7WebCore18TextureMapperLayer21setBackfaceVisibilityEb +_ZN7WebCore18TextureMapperLayer23setContentsClippingRectERKNS_16FloatRoundedRectE +_ZN7WebCore18TextureMapperLayer24paintUsingOverlapRegionsERKNS_25TextureMapperPaintOptionsE +_ZN7WebCore18TextureMapperLayer26applyAnimationsRecursivelyEN3WTF13MonotonicTimeE +_ZN7WebCore18TextureMapperLayer26computeTransformsRecursiveEv +_ZN7WebCore18TextureMapperLayer28paintWithIntermediateSurfaceERKNS_25TextureMapperPaintOptionsERKNS_7IntRectE +_ZN7WebCore18TextureMapperLayer29setAnimatedBackingStoreClientEPN7Nicosia26AnimatedBackingStoreClientE +_ZN7WebCore18TextureMapperLayer2idEv +_ZN7WebCore18TextureMapperLayer30setScrollPositionDeltaIfNeededERKNS_9FloatSizeE +_ZN7WebCore18TextureMapperLayer31paintSelfAndChildrenWithReplicaERKNS_25TextureMapperPaintOptionsE +_ZN7WebCore18TextureMapperLayer5paintEv +_ZN7WebCore18TextureMapperLayer5setIDEj +_ZN7WebCore18TextureMapperLayer7setSizeERKNS_9FloatSizeE +_ZN7WebCore18TextureMapperLayer8addChildEPS0_ +_ZN7WebCore18TextureMapperLayer9applyMaskERKNS_25TextureMapperPaintOptionsE +_ZN7WebCore18TextureMapperLayer9paintSelfERKNS_25TextureMapperPaintOptionsE +_ZN7WebCore18TextureMapperLayerC1Ev +_ZN7WebCore18TextureMapperLayerC2Ev +_ZN7WebCore18TextureMapperLayerD0Ev +_ZN7WebCore18TextureMapperLayerD1Ev +_ZN7WebCore18TextureMapperLayerD2Ev +_ZN7WebCore18TextureMapperLayerdaEPv +_ZN7WebCore18TextureMapperLayerdlEPv +_ZN7WebCore18TextureMapperLayernaEm +_ZN7WebCore18TextureMapperLayernaEmPv +_ZN7WebCore18TextureMapperLayernwEm +_ZN7WebCore18TextureMapperLayernwEm10NotNullTagPv +_ZN7WebCore18TextureMapperLayernwEmPv +_ZN7WebCore18WorkerScriptLoader22validateWorkerResponseERKNS_16ResourceResponseENS_12FetchOptions11DestinationE +_ZN7WebCore18callerGlobalObjectERN3JSC14JSGlobalObjectERNS0_9CallFrameE +_ZN7WebCore18callerGlobalObjectERN3JSC9ExecStateE +_ZN7WebCore18composedTreeAsTextERNS_13ContainerNodeENS_22ComposedTreeAsTextModeE +_ZN7WebCore18documentTypeStringERKNS_8DocumentE +_ZN7WebCore18isEditablePositionERKNS_8PositionENS_12EditableTypeE +_ZN7WebCore18isStartOfParagraphERKNS_15VisiblePositionENS_27EditingBoundaryCrossingRuleE +_ZN7WebCore18isValidContentTypeERKN3WTF6StringENS_4ModeE +_ZN7WebCore18platformStrategiesEv +_ZN7WebCore18pluginScriptObjectEPN3JSC14JSGlobalObjectEPNS_13JSHTMLElementE +_ZN7WebCore18pluginScriptObjectEPN3JSC9ExecStateEPNS_13JSHTMLElementE +_ZN7WebCore18pluginTooSmallTextEv +_ZN7WebCore18proxyServersForURLERKN3WTF3URLE +_ZN7WebCore18proxyServersForURLERKNS_3URLE +_ZN7WebCore18setViewportFeatureERNS_17ViewportArgumentsEN3WTF10StringViewES3_bRKNS2_8FunctionIFvNS_17ViewportErrorCodeERKNS2_6StringEEEE +_ZN7WebCore18staticCSSValuePoolE +_ZN7WebCore18throwThisTypeErrorERN3JSC14JSGlobalObjectERNS0_10ThrowScopeEPKcS6_ +_ZN7WebCore18throwThisTypeErrorERN3JSC9ExecStateERNS0_10ThrowScopeEPKcS6_ +_ZN7WebCore19AccessibilityObject11isARIAInputENS_17AccessibilityRoleE +_ZN7WebCore19AccessibilityObject13isARIAControlENS_17AccessibilityRoleE +_ZN7WebCore19AccessibilityObject20anchorElementForNodeEPNS_4NodeE +_ZN7WebCore19AccessibilityObject21ariaRoleToWebCoreRoleERKN3WTF6StringE +_ZN7WebCore19BlurFilterOperation5blendEPKNS_15FilterOperationEdb +_ZN7WebCore19BlurFilterOperation6createENS_6LengthE +_ZN7WebCore19BlurFilterOperationC1ENS_6LengthE +_ZN7WebCore19BlurFilterOperationC2ENS_6LengthE +_ZN7WebCore19BlurFilterOperationD0Ev +_ZN7WebCore19BlurFilterOperationD1Ev +_ZN7WebCore19BlurFilterOperationD2Ev +_ZN7WebCore19CryptoAlgorithmECDH18platformDeriveBitsERKNS_11CryptoKeyECES3_ +_ZN7WebCore19HTMLTableColElement7setSpanEj +_ZN7WebCore19HTMLTableRowElement10deleteCellEi +_ZN7WebCore19HTMLTableRowElement10insertCellEi +_ZN7WebCore19HTMLTableRowElement5cellsEv +_ZN7WebCore19HTMLTextAreaElement15setDefaultValueERKN3WTF6StringE +_ZN7WebCore19HTMLTextAreaElement7setColsEj +_ZN7WebCore19HTMLTextAreaElement7setRowsEj +_ZN7WebCore19HTMLTextAreaElement8setValueERKN3WTF6StringE +_ZN7WebCore19InspectorController12didCompositeERNS_5FrameE +_ZN7WebCore19InspectorController13setIndicatingEb +_ZN7WebCore19InspectorController13willCompositeERNS_5FrameE +_ZN7WebCore19InspectorController14setIsUnderTestEb +_ZN7WebCore19InspectorController15connectFrontendEPN9Inspector15FrontendChannelEbb +_ZN7WebCore19InspectorController15connectFrontendERN9Inspector15FrontendChannelEbb +_ZN7WebCore19InspectorController15ensurePageAgentEv +_ZN7WebCore19InspectorController18disconnectFrontendEPN9Inspector15FrontendChannelE +_ZN7WebCore19InspectorController18disconnectFrontendERN9Inspector15FrontendChannelE +_ZN7WebCore19InspectorController22disconnectAllFrontendsEv +_ZN7WebCore19InspectorController25evaluateForTestInFrontendERKN3WTF6StringE +_ZN7WebCore19InspectorController26setInspectorFrontendClientEPNS_23InspectorFrontendClientE +_ZN7WebCore19InspectorController27dispatchMessageFromFrontendERKN3WTF6StringE +_ZN7WebCore19InspectorController4showEv +_ZN7WebCore19JSAnimationTimeline11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE +_ZN7WebCore19JSAnimationTimeline14finishCreationERN3JSC2VME +_ZN7WebCore19JSAnimationTimeline14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE +_ZN7WebCore19JSAnimationTimeline15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore19JSAnimationTimeline15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE +_ZN7WebCore19JSAnimationTimeline15subspaceForImplERN3JSC2VME +_ZN7WebCore19JSAnimationTimeline4infoEv +_ZN7WebCore19JSAnimationTimeline6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_17AnimationTimelineENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore19JSAnimationTimeline6s_infoE +_ZN7WebCore19JSAnimationTimeline7destroyEPN3JSC6JSCellE +_ZN7WebCore19JSAnimationTimeline9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore19JSAnimationTimeline9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore19JSAnimationTimelineC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_17AnimationTimelineENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore19JSAnimationTimelineC1ERKS0_ +_ZN7WebCore19JSAnimationTimelineC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_17AnimationTimelineENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore19JSAnimationTimelineC2ERKS0_ +_ZN7WebCore19JSAnimationTimelineD1Ev +_ZN7WebCore19JSAnimationTimelineD2Ev +_ZN7WebCore19JSAnimationTimelineaSERKS0_ +_ZN7WebCore19JSDOMImplementation9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore19JSDOMMatrixReadOnly11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE +_ZN7WebCore19JSDOMMatrixReadOnly14finishCreationERN3JSC2VME +_ZN7WebCore19JSDOMMatrixReadOnly14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE +_ZN7WebCore19JSDOMMatrixReadOnly15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore19JSDOMMatrixReadOnly15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE +_ZN7WebCore19JSDOMMatrixReadOnly15subspaceForImplERN3JSC2VME +_ZN7WebCore19JSDOMMatrixReadOnly4infoEv +_ZN7WebCore19JSDOMMatrixReadOnly6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_17DOMMatrixReadOnlyENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore19JSDOMMatrixReadOnly6s_infoE +_ZN7WebCore19JSDOMMatrixReadOnly7destroyEPN3JSC6JSCellE +_ZN7WebCore19JSDOMMatrixReadOnly9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore19JSDOMMatrixReadOnly9serializeERN3JSC14JSGlobalObjectERS0_RNS_17JSDOMGlobalObjectE +_ZN7WebCore19JSDOMMatrixReadOnly9serializeERN3JSC9ExecStateERS0_RNS_17JSDOMGlobalObjectERNS1_10ThrowScopeE +_ZN7WebCore19JSDOMMatrixReadOnly9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore19JSDOMMatrixReadOnlyC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_17DOMMatrixReadOnlyENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore19JSDOMMatrixReadOnlyC1ERKS0_ +_ZN7WebCore19JSDOMMatrixReadOnlyC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_17DOMMatrixReadOnlyENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore19JSDOMMatrixReadOnlyC2ERKS0_ +_ZN7WebCore19JSDOMMatrixReadOnlyD1Ev +_ZN7WebCore19JSDOMMatrixReadOnlyD2Ev +_ZN7WebCore19JSDOMMatrixReadOnlyaSERKS0_ +_ZN7WebCore19JSHTMLSelectElement10putByIndexEPN3JSC6JSCellEPNS1_14JSGlobalObjectEjNS1_7JSValueEb +_ZN7WebCore19JSHTMLSelectElement10putByIndexEPN3JSC6JSCellEPNS1_9ExecStateEjNS1_7JSValueEb +_ZN7WebCore19JSHTMLSelectElement11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE +_ZN7WebCore19JSHTMLSelectElement14finishCreationERN3JSC2VME +_ZN7WebCore19JSHTMLSelectElement14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE +_ZN7WebCore19JSHTMLSelectElement15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore19JSHTMLSelectElement15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE +_ZN7WebCore19JSHTMLSelectElement15subspaceForImplERN3JSC2VME +_ZN7WebCore19JSHTMLSelectElement17defineOwnPropertyEPN3JSC8JSObjectEPNS1_14JSGlobalObjectENS1_12PropertyNameERKNS1_18PropertyDescriptorEb +_ZN7WebCore19JSHTMLSelectElement17defineOwnPropertyEPN3JSC8JSObjectEPNS1_9ExecStateENS1_12PropertyNameERKNS1_18PropertyDescriptorEb +_ZN7WebCore19JSHTMLSelectElement18getOwnPropertySlotEPN3JSC8JSObjectEPNS1_14JSGlobalObjectENS1_12PropertyNameERNS1_12PropertySlotE +_ZN7WebCore19JSHTMLSelectElement18getOwnPropertySlotEPN3JSC8JSObjectEPNS1_9ExecStateENS1_12PropertyNameERNS1_12PropertySlotE +_ZN7WebCore19JSHTMLSelectElement19getOwnPropertyNamesEPN3JSC8JSObjectEPNS1_9ExecStateERNS1_17PropertyNameArrayENS1_15EnumerationModeE +_ZN7WebCore19JSHTMLSelectElement25getOwnPropertySlotByIndexEPN3JSC8JSObjectEPNS1_14JSGlobalObjectEjRNS1_12PropertySlotE +_ZN7WebCore19JSHTMLSelectElement25getOwnPropertySlotByIndexEPN3JSC8JSObjectEPNS1_9ExecStateEjRNS1_12PropertySlotE +_ZN7WebCore19JSHTMLSelectElement3putEPN3JSC6JSCellEPNS1_14JSGlobalObjectENS1_12PropertyNameENS1_7JSValueERNS1_15PutPropertySlotE +_ZN7WebCore19JSHTMLSelectElement3putEPN3JSC6JSCellEPNS1_9ExecStateENS1_12PropertyNameENS1_7JSValueERNS1_15PutPropertySlotE +_ZN7WebCore19JSHTMLSelectElement4infoEv +_ZN7WebCore19JSHTMLSelectElement6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_17HTMLSelectElementENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore19JSHTMLSelectElement6s_infoE +_ZN7WebCore19JSHTMLSelectElement9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore19JSHTMLSelectElement9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore19JSHTMLSelectElementC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_17HTMLSelectElementENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore19JSHTMLSelectElementC1ERKS0_ +_ZN7WebCore19JSHTMLSelectElementC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_17HTMLSelectElementENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore19JSHTMLSelectElementC2ERKS0_ +_ZN7WebCore19JSHTMLSelectElementD1Ev +_ZN7WebCore19JSHTMLSelectElementD2Ev +_ZN7WebCore19LayerRepresentation19retainPlatformLayerEPNS_26TextureMapperPlatformLayerE +_ZN7WebCore19LayerRepresentation20releasePlatformLayerEPNS_26TextureMapperPlatformLayerE +_ZN7WebCore19MediaElementSession22addBehaviorRestrictionEj +_ZN7WebCore19MediaElementSession25removeBehaviorRestrictionEj +_ZN7WebCore19MediaElementSession25updateMediaUsageIfChangedEv +_ZN7WebCore19MediaQueryEvaluatorC1ERKN3WTF6StringERKNS_8DocumentEPKNS_11RenderStyleE +_ZN7WebCore19MediaQueryEvaluatorC2ERKN3WTF6StringERKNS_8DocumentEPKNS_11RenderStyleE +_ZN7WebCore19MediaResourceLoader25recordResponsesForTestingEv +_ZN7WebCore19MediaResourceLoaderC1ERNS_8DocumentERNS_16HTMLMediaElementERKN3WTF6StringE +_ZN7WebCore19MediaResourceLoaderC2ERNS_8DocumentERNS_16HTMLMediaElementERKN3WTF6StringE +_ZN7WebCore19MediaResourceLoaderD0Ev +_ZN7WebCore19MediaResourceLoaderD1Ev +_ZN7WebCore19MediaResourceLoaderD2Ev +_ZN7WebCore19ProtectionSpaceBase7compareERKNS_15ProtectionSpaceES3_ +_ZN7WebCore19ProtectionSpaceBaseC1ERKN3WTF6StringEiNS_25ProtectionSpaceServerTypeES4_NS_35ProtectionSpaceAuthenticationSchemeE +_ZN7WebCore19ProtectionSpaceBaseC1Ev +_ZN7WebCore19ProtectionSpaceBaseC2ERKN3WTF6StringEiNS_25ProtectionSpaceServerTypeES4_NS_35ProtectionSpaceAuthenticationSchemeE +_ZN7WebCore19ProtectionSpaceBaseC2Ev +_ZN7WebCore19ResourceRequestBase11setHTTPBodyEON3WTF6RefPtrINS_8FormDataENS1_13DumbPtrTraitsIS3_EEEE +_ZN7WebCore19ResourceRequestBase11setPriorityENS_20ResourceLoadPriorityE +_ZN7WebCore19ResourceRequestBase12clearPurposeEv +_ZN7WebCore19ResourceRequestBase12setIsTopSiteEb +_ZN7WebCore19ResourceRequestBase13partitionNameERKN3WTF6StringE +_ZN7WebCore19ResourceRequestBase13setHTTPMethodERKN3WTF6StringE +_ZN7WebCore19ResourceRequestBase13setIsSameSiteEb +_ZN7WebCore19ResourceRequestBase14setCachePolicyENS_26ResourceRequestCachePolicyE +_ZN7WebCore19ResourceRequestBase15clearHTTPOriginEv +_ZN7WebCore19ResourceRequestBase15setHTTPReferrerERKN3WTF6StringE +_ZN7WebCore19ResourceRequestBase16setHTTPUserAgentERKN3WTF6StringE +_ZN7WebCore19ResourceRequestBase17clearHTTPReferrerEv +_ZN7WebCore19ResourceRequestBase17makeUnconditionalEv +_ZN7WebCore19ResourceRequestBase17removeCredentialsEv +_ZN7WebCore19ResourceRequestBase17setAsIsolatedCopyERKNS_15ResourceRequestE +_ZN7WebCore19ResourceRequestBase17setCachePartitionERKN3WTF6StringE +_ZN7WebCore19ResourceRequestBase18addHTTPHeaderFieldENS_14HTTPHeaderNameERKN3WTF6StringE +_ZN7WebCore19ResourceRequestBase18addHTTPHeaderFieldERKN3WTF6StringES4_ +_ZN7WebCore19ResourceRequestBase18setHTTPContentTypeERKN3WTF6StringE +_ZN7WebCore19ResourceRequestBase18setHTTPHeaderFieldENS_14HTTPHeaderNameERKN3WTF6StringE +_ZN7WebCore19ResourceRequestBase18setHTTPHeaderFieldERKN3WTF6StringES4_ +_ZN7WebCore19ResourceRequestBase19setHTTPHeaderFieldsENS_13HTTPHeaderMapE +_ZN7WebCore19ResourceRequestBase20clearHTTPContentTypeEv +_ZN7WebCore19ResourceRequestBase22clearHTTPAuthorizationEv +_ZN7WebCore19ResourceRequestBase22defaultTimeoutIntervalEv +_ZN7WebCore19ResourceRequestBase23setFirstPartyForCookiesERKN3WTF3URLE +_ZN7WebCore19ResourceRequestBase23setFirstPartyForCookiesERKNS_3URLE +_ZN7WebCore19ResourceRequestBase24s_defaultTimeoutIntervalE +_ZN7WebCore19ResourceRequestBase25setDefaultTimeoutIntervalEd +_ZN7WebCore19ResourceRequestBase30addHTTPHeaderFieldIfNotPresentENS_14HTTPHeaderNameERKN3WTF6StringE +_ZN7WebCore19ResourceRequestBase37setExistingHTTPReferrerToOriginStringEv +_ZN7WebCore19ResourceRequestBase50setResponseContentDispositionEncodingFallbackArrayERKN3WTF6StringES4_S4_ +_ZN7WebCore19ResourceRequestBase5equalERKNS_15ResourceRequestES3_ +_ZN7WebCore19ResourceRequestBase6setURLERKN3WTF3URLE +_ZN7WebCore19ResourceRequestBase6setURLERKNS_3URLE +_ZN7WebCore19StorageQuotaManager20resetQuotaForTestingEv +_ZN7WebCore19StorageQuotaManager24requestSpaceOnMainThreadEmON3WTF17CompletionHandlerIFvNS0_8DecisionEEEE +_ZN7WebCore19StorageQuotaManager30requestSpaceOnBackgroundThreadEm +_ZN7WebCore19StorageQuotaManager39resetQuotaUpdatedBasedOnUsageForTestingEv +_ZN7WebCore19StorageQuotaManager6createEmON3WTF8FunctionIFmvEEEONS2_IFvmmmONS1_17CompletionHandlerIFvNS1_8OptionalImEEEEEEEE +_ZN7WebCore19TextResourceDecoder14decodeAndFlushEPKcm +_ZN7WebCore19TextResourceDecoder5flushEv +_ZN7WebCore19TextResourceDecoder6createERKN3WTF6StringERKNS_12TextEncodingEb +_ZN7WebCore19TextResourceDecoder6decodeEPKcm +_ZN7WebCore19TextResourceDecoderD1Ev +_ZN7WebCore19TextResourceDecoderD2Ev +_ZN7WebCore19TextTrackCueGeneric6createERNS_22ScriptExecutionContextERKN3WTF9MediaTimeES6_RKNS3_6StringE +_ZN7WebCore19TransformOperationsC1Eb +_ZN7WebCore19TransformOperationsC2Eb +_ZN7WebCore19UserContentProvider54invalidateInjectedStyleSheetCacheInAllFramesInAllPagesEv +_ZN7WebCore19UserContentProvider60invalidateAllRegisteredUserMessageHandlerInvalidationClientsEv +_ZN7WebCore19UserContentProviderC2Ev +_ZN7WebCore19UserContentProviderD0Ev +_ZN7WebCore19UserContentProviderD1Ev +_ZN7WebCore19UserContentProviderD2Ev +_ZN7WebCore19approximateAsRegionERKNS_11RoundedRectEj +_ZN7WebCore19enclosingLayoutRectERKNS_9FloatRectE +_ZN7WebCore19floatValueForLengthERKNS_6LengthEf +_ZN7WebCore19makeMapBetweenRectsERKNS_9FloatRectES2_ +_ZN7WebCore19serializationForCSSENS_5SRGBAIhEE +_ZN7WebCore19serializationForCSSERKNS_11LinearSRGBAIfEE +_ZN7WebCore19serializationForCSSERKNS_5ColorE +_ZN7WebCore19serializationForCSSERKNS_5SRGBAIfEE +_ZN7WebCore19serializationForCSSERKNS_9DisplayP3IfEE +_ZN7WebCore19sleepDisablerClientEv +_ZN7WebCore19toAutofillFieldNameERKN3WTF10AtomStringE +_ZN7WebCore19toAutofillFieldNameERKN3WTF12AtomicStringE +_ZN7WebCore19toJSRemoteDOMWindowERN3JSC2VMENS0_7JSValueE +_ZN7WebCore19unitedBoundingBoxesERKN3WTF6VectorINS_9FloatQuadELm0ENS0_15CrashOnOverflowELm16ENS0_10FastMallocEEE +_ZN7WebCore19watchAdaptationNameEv +_ZN7WebCore20ApplicationCacheHost17maybeLoadResourceERNS_14ResourceLoaderERKNS_15ResourceRequestERKN3WTF3URLE +_ZN7WebCore20ApplicationCacheHost17maybeLoadResourceERNS_14ResourceLoaderERKNS_15ResourceRequestERKNS_3URLE +_ZN7WebCore20ApplicationCacheHost25maybeLoadFallbackForErrorEPNS_14ResourceLoaderERKNS_13ResourceErrorE +_ZN7WebCore20ApplicationCacheHost28maybeLoadFallbackForRedirectEPNS_14ResourceLoaderERNS_15ResourceRequestERKNS_16ResourceResponseE +_ZN7WebCore20ApplicationCacheHost28maybeLoadFallbackForResponseEPNS_14ResourceLoaderERKNS_16ResourceResponseE +_ZN7WebCore20CachedResourceLoader31garbageCollectDocumentResourcesEv +_ZN7WebCore20CanvasActivityRecord27recordWrittenOrMeasuredTextERKN3WTF6StringE +_ZN7WebCore20DecodeOrderSampleMap20findDependentSamplesEPNS_11MediaSampleE +_ZN7WebCore20DecodeOrderSampleMap23findSampleWithDecodeKeyERKSt4pairIN3WTF9MediaTimeES3_E +_ZN7WebCore20DecodeOrderSampleMap24findSampleAfterDecodeKeyERKSt4pairIN3WTF9MediaTimeES3_E +_ZN7WebCore20DecodeOrderSampleMap28findSamplesBetweenDecodeKeysERKSt4pairIN3WTF9MediaTimeES3_ES6_ +_ZN7WebCore20DecodeOrderSampleMap30reverseFindSampleWithDecodeKeyERKSt4pairIN3WTF9MediaTimeES3_E +_ZN7WebCore20DecodeOrderSampleMap35findSyncSampleAfterPresentationTimeERKN3WTF9MediaTimeES4_ +_ZN7WebCore20DecodeOrderSampleMap37findSyncSamplePriorToPresentationTimeERKN3WTF9MediaTimeES4_ +_ZN7WebCore20DeprecatedCSSOMValue7destroyEv +_ZN7WebCore20DictationAlternativeC1Ejjm +_ZN7WebCore20DictationAlternativeC1Ev +_ZN7WebCore20DictationAlternativeC2Ejjm +_ZN7WebCore20DictationAlternativeC2Ev +_ZN7WebCore20ExtensionStyleSheets17addUserStyleSheetEON3WTF3RefINS_18StyleSheetContentsENS1_13DumbPtrTraitsIS3_EEEE +_ZN7WebCore20ExtensionStyleSheets29addAuthorStyleSheetForTestingEON3WTF3RefINS_18StyleSheetContentsENS1_13DumbPtrTraitsIS3_EEEE +_ZN7WebCore20FocusNavigationScope7scopeOfERNS_4NodeE +_ZN7WebCore20GraphicsContextStateC1Ev +_ZN7WebCore20GraphicsContextStateC2Ev +_ZN7WebCore20GraphicsContextStateD1Ev +_ZN7WebCore20GraphicsContextStateD2Ev +_ZN7WebCore20HTMLFrameElementBase11setLocationERKN3WTF6StringE +_ZN7WebCore20HTMLFrameElementBase5widthEv +_ZN7WebCore20HTMLFrameElementBase6heightEv +_ZN7WebCore20HTMLTableCellElement10setColSpanEj +_ZN7WebCore20HTMLTableCellElement21setRowSpanForBindingsEj +_ZN7WebCore20HTMLTableCellElement8setScopeERKN3WTF10AtomStringE +_ZN7WebCore20HTMLTableCellElement8setScopeERKN3WTF12AtomicStringE +_ZN7WebCore20ISOOriginalFormatBox11boxTypeNameEv +_ZN7WebCore20ISOOriginalFormatBox5parseERN3JSC8DataViewERj +_ZN7WebCore20ISOOriginalFormatBoxC1ERKS0_ +_ZN7WebCore20ISOOriginalFormatBoxC1Ev +_ZN7WebCore20ISOOriginalFormatBoxC2ERKS0_ +_ZN7WebCore20ISOOriginalFormatBoxC2Ev +_ZN7WebCore20ISOOriginalFormatBoxD0Ev +_ZN7WebCore20ISOOriginalFormatBoxD1Ev +_ZN7WebCore20ISOOriginalFormatBoxD2Ev +_ZN7WebCore20ISOOriginalFormatBoxaSERKS0_ +_ZN7WebCore20LegacySchemeRegistry15isBuiltinSchemeERKN3WTF6StringE +_ZN7WebCore20LegacySchemeRegistry24registerURLSchemeAsLocalERKN3WTF6StringE +_ZN7WebCore20LegacySchemeRegistry25registerURLSchemeAsSecureERKN3WTF6StringE +_ZN7WebCore20LegacySchemeRegistry27registerURLSchemeAsNoAccessERKN3WTF6StringE +_ZN7WebCore20LegacySchemeRegistry27shouldTreatURLSchemeAsLocalERKN3WTF6StringE +_ZN7WebCore20LegacySchemeRegistry30registerURLSchemeAsCORSEnabledERKN3WTF6StringE +_ZN7WebCore20LegacySchemeRegistry32registerURLSchemeAsEmptyDocumentERKN3WTF6StringE +_ZN7WebCore20LegacySchemeRegistry33shouldTreatURLSchemeAsCORSEnabledERKN3WTF6StringE +_ZN7WebCore20LegacySchemeRegistry34registerURLSchemeAsDisplayIsolatedERKN3WTF6StringE +_ZN7WebCore20LegacySchemeRegistry34shouldLoadURLSchemeAsEmptyDocumentERKN3WTF6StringE +_ZN7WebCore20LegacySchemeRegistry35registerURLSchemeAsCachePartitionedERKN3WTF6StringE +_ZN7WebCore20LegacySchemeRegistry36allURLSchemesRegisteredAsCORSEnabledEv +_ZN7WebCore20LegacySchemeRegistry36registerAsCanDisplayOnlyIfCanRequestERKN3WTF6StringE +_ZN7WebCore20LegacySchemeRegistry36registerURLSchemeAsAlwaysRevalidatedERKN3WTF6StringE +_ZN7WebCore20LegacySchemeRegistry40setDomainRelaxationForbiddenForURLSchemeEbRKN3WTF6StringE +_ZN7WebCore20LegacySchemeRegistry49registerURLSchemeAsBypassingContentSecurityPolicyERKN3WTF6StringE +_ZN7WebCore20LegacySchemeRegistry57removeURLSchemeRegisteredAsBypassingContentSecurityPolicyERKN3WTF6StringE +_ZN7WebCore20LegacySchemeRegistry58registerURLSchemeAsAllowingDatabaseAccessInPrivateBrowsingERKN3WTF6StringE +_ZN7WebCore20LowPowerModeNotifierC1EON3WTF8FunctionIFvbEEE +_ZN7WebCore20LowPowerModeNotifierC2EON3WTF8FunctionIFvbEEE +_ZN7WebCore20LowPowerModeNotifierD1Ev +_ZN7WebCore20LowPowerModeNotifierD2Ev +_ZN7WebCore20NetworkStateNotifier11addListenerEON3WTF8FunctionIFvbEEE +_ZN7WebCore20NetworkStateNotifier6onLineEv +_ZN7WebCore20NetworkStateNotifier9singletonEv +_ZN7WebCore20PasteboardCustomData16fromSharedBufferERKNS_12SharedBufferE +_ZN7WebCore20PasteboardCustomData22fromPersistenceDecoderEON3WTF11Persistence7DecoderE +_ZN7WebCore20PasteboardCustomData5EntryC1EOS1_ +_ZN7WebCore20PasteboardCustomData5EntryC1ERKS1_ +_ZN7WebCore20PasteboardCustomData5EntryC1Ev +_ZN7WebCore20PasteboardCustomData5EntryC2EOS1_ +_ZN7WebCore20PasteboardCustomData5EntryC2ERKS1_ +_ZN7WebCore20PasteboardCustomData5EntryC2Ev +_ZN7WebCore20PasteboardCustomData5EntryaSEOS1_ +_ZN7WebCore20PasteboardCustomData5EntryaSERKS1_ +_ZN7WebCore20PasteboardCustomDataC1EON3WTF6StringEONS1_6VectorINS0_5EntryELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN7WebCore20PasteboardCustomDataC1EOS0_ +_ZN7WebCore20PasteboardCustomDataC1ERKS0_ +_ZN7WebCore20PasteboardCustomDataC1Ev +_ZN7WebCore20PasteboardCustomDataC2EON3WTF6StringEONS1_6VectorINS0_5EntryELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN7WebCore20PasteboardCustomDataC2EOS0_ +_ZN7WebCore20PasteboardCustomDataC2ERKS0_ +_ZN7WebCore20PasteboardCustomDataC2Ev +_ZN7WebCore20PasteboardCustomDataD1Ev +_ZN7WebCore20PasteboardCustomDataD2Ev +_ZN7WebCore20PasteboardCustomDataaSERKS0_ +_ZN7WebCore20PasteboardWriterData10WebContentD1Ev +_ZN7WebCore20PasteboardWriterData10WebContentD2Ev +_ZN7WebCore20PasteboardWriterDataC1Ev +_ZN7WebCore20PasteboardWriterDataC2Ev +_ZN7WebCore20PasteboardWriterDataD1Ev +_ZN7WebCore20PasteboardWriterDataD2Ev +_ZN7WebCore20RenderEmbeddedObject29setPluginUnavailabilityReasonENS0_26PluginUnavailabilityReasonE +_ZN7WebCore20RenderEmbeddedObject37setUnavailablePluginIndicatorIsHiddenEb +_ZN7WebCore20RenderEmbeddedObject44setPluginUnavailabilityReasonWithDescriptionENS0_26PluginUnavailabilityReasonERKN3WTF6StringE +_ZN7WebCore20ResourceHandleClient16didReceiveBufferEPNS_14ResourceHandleEON3WTF3RefINS_12SharedBufferENS3_13DumbPtrTraitsIS5_EEEEi +_ZN7WebCore20ResourceHandleClientC2Ev +_ZN7WebCore20ResourceHandleClientD0Ev +_ZN7WebCore20ResourceHandleClientD1Ev +_ZN7WebCore20ResourceHandleClientD2Ev +_ZN7WebCore20ResourceLoadObserver10clearStateEv +_ZN7WebCore20ResourceLoadObserver14notifyObserverEv +_ZN7WebCore20ResourceLoadObserver14sharedIfExistsEv +_ZN7WebCore20ResourceLoadObserver19statisticsForOriginERKN3WTF6StringE +_ZN7WebCore20ResourceLoadObserver23setNotificationCallbackEON3WTF8FunctionIFvONS1_6VectorINS_22ResourceLoadStatisticsELm0ENS1_15CrashOnOverflowELm16EEEEEE +_ZN7WebCore20ResourceLoadObserver42setRequestStorageAccessUnderOpenerCallbackEON3WTF8FunctionIFvRKNS1_6StringEmS5_bEEE +_ZN7WebCore20ResourceLoadObserver6sharedEv +_ZN7WebCore20ResourceLoadObserver9setSharedERS0_ +_ZN7WebCore20ResourceResponseBase11setMimeTypeERKN3WTF6StringE +_ZN7WebCore20ResourceResponseBase14setHTTPVersionERKN3WTF6StringE +_ZN7WebCore20ResourceResponseBase17setHTTPStatusCodeEi +_ZN7WebCore20ResourceResponseBase17setHTTPStatusTextERKN3WTF6StringE +_ZN7WebCore20ResourceResponseBase18addHTTPHeaderFieldENS_14HTTPHeaderNameERKN3WTF6StringE +_ZN7WebCore20ResourceResponseBase18addHTTPHeaderFieldERKN3WTF6StringES4_ +_ZN7WebCore20ResourceResponseBase18setHTTPHeaderFieldENS_14HTTPHeaderNameERKN3WTF6StringE +_ZN7WebCore20ResourceResponseBase18setHTTPHeaderFieldERKN3WTF6StringES4_ +_ZN7WebCore20ResourceResponseBase19setTextEncodingNameERKN3WTF6StringE +_ZN7WebCore20ResourceResponseBase24sanitizeHTTPHeaderFieldsENS0_16SanitizationTypeE +_ZN7WebCore20ResourceResponseBase24setExpectedContentLengthEx +_ZN7WebCore20ResourceResponseBase25sanitizeSuggestedFilenameERKN3WTF6StringE +_ZN7WebCore20ResourceResponseBase25syntheticRedirectResponseERKN3WTF3URLES4_ +_ZN7WebCore20ResourceResponseBase6setURLERKN3WTF3URLE +_ZN7WebCore20ResourceResponseBase6setURLERKNS_3URLE +_ZN7WebCore20ResourceResponseBase7setTypeENS0_4TypeE +_ZN7WebCore20ResourceResponseBaseC1ERKN3WTF3URLERKNS1_6StringExS7_ +_ZN7WebCore20ResourceResponseBaseC1ERKNS_3URLERKN3WTF6StringExS7_ +_ZN7WebCore20ResourceResponseBaseC1Ev +_ZN7WebCore20ResourceResponseBaseC2ERKN3WTF3URLERKNS1_6StringExS7_ +_ZN7WebCore20ResourceResponseBaseC2ERKNS_3URLERKN3WTF6StringExS7_ +_ZN7WebCore20ResourceResponseBaseC2Ev +_ZN7WebCore20SVGPathStringBuilder12curveToCubicERKNS_10FloatPointES3_S3_NS_18PathCoordinateModeE +_ZN7WebCore20SVGPathStringBuilder16curveToQuadraticERKNS_10FloatPointES3_NS_18PathCoordinateModeE +_ZN7WebCore20SVGPathStringBuilder6lineToERKNS_10FloatPointENS_18PathCoordinateModeE +_ZN7WebCore20SVGPathStringBuilder6moveToERKNS_10FloatPointEbNS_18PathCoordinateModeE +_ZN7WebCore20SVGPathStringBuilder6resultEv +_ZN7WebCore20SVGPathStringBuilder9closePathEv +_ZN7WebCore20SVGPathStringBuilderC1Ev +_ZN7WebCore20SVGPathStringBuilderC2Ev +_ZN7WebCore20SVGPathStringBuilderD0Ev +_ZN7WebCore20SVGPathStringBuilderD1Ev +_ZN7WebCore20SVGPathStringBuilderD2Ev +_ZN7WebCore20ScrollingCoordinator13pageDestroyedEv +_ZN7WebCore20ScrollingCoordinator45setForceSynchronousScrollLayerPositionUpdatesEb +_ZN7WebCore20SharedBufferDataViewC1EON3WTF3RefINS_12SharedBuffer11DataSegmentENS1_13DumbPtrTraitsIS4_EEEEm +_ZN7WebCore20SharedBufferDataViewC1ERKS0_ +_ZN7WebCore20SharedBufferDataViewC2EON3WTF3RefINS_12SharedBuffer11DataSegmentENS1_13DumbPtrTraitsIS4_EEEEm +_ZN7WebCore20SharedBufferDataViewC2ERKS0_ +_ZN7WebCore20SharedBufferDataViewD1Ev +_ZN7WebCore20SharedBufferDataViewD2Ev +_ZN7WebCore20SharedBufferDataViewaSERKS0_ +_ZN7WebCore20TransformationMatrix10makeAffineEv +_ZN7WebCore20TransformationMatrix10rectToRectERKNS_9FloatRectES3_ +_ZN7WebCore20TransformationMatrix11translate3dEddd +_ZN7WebCore20TransformationMatrix15scaleNonUniformEdd +_ZN7WebCore20TransformationMatrix16applyPerspectiveEd +_ZN7WebCore20TransformationMatrix4skewEdd +_ZN7WebCore20TransformationMatrix5blendERKS0_d +_ZN7WebCore20TransformationMatrix5flipXEv +_ZN7WebCore20TransformationMatrix5flipYEv +_ZN7WebCore20TransformationMatrix5scaleEd +_ZN7WebCore20TransformationMatrix6blend2ERKS0_d +_ZN7WebCore20TransformationMatrix6blend4ERKS0_d +_ZN7WebCore20TransformationMatrix6rotateEd +_ZN7WebCore20TransformationMatrix7scale3dEddd +_ZN7WebCore20TransformationMatrix8multiplyERKS0_ +_ZN7WebCore20TransformationMatrix8rotate3dEddd +_ZN7WebCore20TransformationMatrix8rotate3dEdddd +_ZN7WebCore20TransformationMatrix9translateEdd +_ZN7WebCore20TransformationMatrixC1ERKNS_15AffineTransformE +_ZN7WebCore20TransformationMatrixC2ERKNS_15AffineTransformE +_ZN7WebCore20UserGestureIndicator18currentUserGestureEv +_ZN7WebCore20UserGestureIndicator21processingUserGestureEPNS_8DocumentE +_ZN7WebCore20UserGestureIndicator21processingUserGestureEv +_ZN7WebCore20UserGestureIndicator29processingUserGestureForMediaEv +_ZN7WebCore20UserGestureIndicatorC1EN3WTF6RefPtrINS_16UserGestureTokenENS1_13DumbPtrTraitsIS3_EEEE +_ZN7WebCore20UserGestureIndicatorC1EN3WTF6RefPtrINS_16UserGestureTokenENS1_13DumbPtrTraitsIS3_EEEENS3_12GestureScopeENS3_21IsPropagatedFromFetchE +_ZN7WebCore20UserGestureIndicatorC1EN3WTF8OptionalINS_26ProcessingUserGestureStateEEEPNS_8DocumentENS_15UserGestureTypeENS0_23ProcessInteractionStyleE +_ZN7WebCore20UserGestureIndicatorC1ESt8optionalINS_26ProcessingUserGestureStateEEPNS_8DocumentENS_15UserGestureTypeENS0_23ProcessInteractionStyleE +_ZN7WebCore20UserGestureIndicatorC2EN3WTF6RefPtrINS_16UserGestureTokenENS1_13DumbPtrTraitsIS3_EEEE +_ZN7WebCore20UserGestureIndicatorC2EN3WTF6RefPtrINS_16UserGestureTokenENS1_13DumbPtrTraitsIS3_EEEENS3_12GestureScopeENS3_21IsPropagatedFromFetchE +_ZN7WebCore20UserGestureIndicatorC2EN3WTF8OptionalINS_26ProcessingUserGestureStateEEEPNS_8DocumentENS_15UserGestureTypeENS0_23ProcessInteractionStyleE +_ZN7WebCore20UserGestureIndicatorC2ESt8optionalINS_26ProcessingUserGestureStateEEPNS_8DocumentENS_15UserGestureTypeENS0_23ProcessInteractionStyleE +_ZN7WebCore20UserGestureIndicatorD1Ev +_ZN7WebCore20UserGestureIndicatorD2Ev +_ZN7WebCore20endOfEditableContentERKNS_15VisiblePositionE +_ZN7WebCore20fillWithEmptyClientsERNS_17PageConfigurationE +_ZN7WebCore20findClosestPlainTextERKNS_11SimpleRangeERKN3WTF6StringENS3_9OptionSetINS_14FindOptionFlagEEEm +_ZN7WebCore20findClosestPlainTextERKNS_5RangeERKN3WTF6StringENS3_9OptionSetINS_14FindOptionFlagEEEj +_ZN7WebCore20httpHeaderNameStringENS_14HTTPHeaderNameE +_ZN7WebCore20lastOffsetForEditingERKNS_4NodeE +_ZN7WebCore20makeRGBA32FromFloatsEffff +_ZN7WebCore20nextSentencePositionERKNS_15VisiblePositionE +_ZN7WebCore20previousLinePositionERKNS_15VisiblePositionEiNS_12EditableTypeE +_ZN7WebCore20previousWordPositionERKNS_15VisiblePositionE +_ZN7WebCore20protocolIsJavaScriptERKN3WTF6StringE +_ZN7WebCore20serializationForHTMLENS_5SRGBAIhEE +_ZN7WebCore20serializationForHTMLERKNS_11LinearSRGBAIfEE +_ZN7WebCore20serializationForHTMLERKNS_5ColorE +_ZN7WebCore20serializationForHTMLERKNS_5SRGBAIfEE +_ZN7WebCore20serializationForHTMLERKNS_9DisplayP3IfEE +_ZN7WebCore20throwGetterTypeErrorERN3JSC14JSGlobalObjectERNS0_10ThrowScopeEPKcS6_ +_ZN7WebCore20throwGetterTypeErrorERN3JSC9ExecStateERNS0_10ThrowScopeEPKcS6_ +_ZN7WebCore20throwSetterTypeErrorERN3JSC14JSGlobalObjectERNS0_10ThrowScopeEPKcS6_ +_ZN7WebCore20throwSetterTypeErrorERN3JSC9ExecStateERNS0_10ThrowScopeEPKcS6_ +_ZN7WebCore21AudioHardwareListener6createERNS0_6ClientE +_ZN7WebCore21BackForwardController11currentItemEv +_ZN7WebCore21BackForwardController11forwardItemEv +_ZN7WebCore21BackForwardController11itemAtIndexEi +_ZN7WebCore21BackForwardController6goBackEv +_ZN7WebCore21BackForwardController8backItemEv +_ZN7WebCore21BackForwardController9goForwardEv +_ZN7WebCore21BlobDataFileReference16revokeFileAccessEv +_ZN7WebCore21BlobDataFileReference20prepareForFileAccessEv +_ZN7WebCore21BlobDataFileReference24expectedModificationTimeEv +_ZN7WebCore21BlobDataFileReference26startTrackingModificationsEv +_ZN7WebCore21BlobDataFileReference4pathEv +_ZN7WebCore21BlobDataFileReference4sizeEv +_ZN7WebCore21BlobDataFileReference6createERKN3WTF6StringE +_ZN7WebCore21BlobDataFileReference6createERKN3WTF6StringES4_ +_ZN7WebCore21BlobDataFileReferenceC1ERKN3WTF6StringE +_ZN7WebCore21BlobDataFileReferenceC1ERKN3WTF6StringES4_ +_ZN7WebCore21BlobDataFileReferenceC2ERKN3WTF6StringE +_ZN7WebCore21BlobDataFileReferenceC2ERKN3WTF6StringES4_ +_ZN7WebCore21BlobDataFileReferenceD0Ev +_ZN7WebCore21BlobDataFileReferenceD1Ev +_ZN7WebCore21BlobDataFileReferenceD2Ev +_ZN7WebCore21ComplexTextController14ComplexTextRunC1ERKN3WTF6VectorINS_9FloatSizeELm0ENS2_15CrashOnOverflowELm16EEERKNS3_INS_10FloatPointELm0ES5_Lm16EEERKNS3_ItLm0ES5_Lm16EEERKNS3_IjLm0ES5_Lm16EEES4_RKNS_4FontEPKDsjjjjb +_ZN7WebCore21ComplexTextController14ComplexTextRunC1ERKN3WTF6VectorINS_9FloatSizeELm0ENS2_15CrashOnOverflowELm16ENS2_10FastMallocEEERKNS3_INS_10FloatPointELm0ES5_Lm16ES6_EERKNS3_ItLm0ES5_Lm16ES6_EERKNS3_IjLm0ES5_Lm16ES6_EES4_RKNS_4FontEPKDsjjjjb +_ZN7WebCore21ComplexTextController14ComplexTextRunC2ERKN3WTF6VectorINS_9FloatSizeELm0ENS2_15CrashOnOverflowELm16EEERKNS3_INS_10FloatPointELm0ES5_Lm16EEERKNS3_ItLm0ES5_Lm16EEERKNS3_IjLm0ES5_Lm16EEES4_RKNS_4FontEPKDsjjjjb +_ZN7WebCore21ComplexTextController14ComplexTextRunC2ERKN3WTF6VectorINS_9FloatSizeELm0ENS2_15CrashOnOverflowELm16ENS2_10FastMallocEEERKNS3_INS_10FloatPointELm0ES5_Lm16ES6_EERKNS3_ItLm0ES5_Lm16ES6_EERKNS3_IjLm0ES5_Lm16ES6_EES4_RKNS_4FontEPKDsjjjjb +_ZN7WebCore21ComplexTextController7advanceEjPNS_11GlyphBufferENS_19GlyphIterationStyleEPN3WTF7HashSetIPKNS_4FontENS4_11DefaultHashIS8_EENS4_10HashTraitsIS8_EEEE +_ZN7WebCore21ComplexTextController7advanceEjPNS_11GlyphBufferENS_19GlyphIterationStyleEPN3WTF7HashSetIPKNS_4FontENS4_7PtrHashIS8_EENS4_10HashTraitsIS8_EEEE +_ZN7WebCore21ComplexTextControllerC1ERKNS_11FontCascadeERKNS_7TextRunERN3WTF6VectorINS7_3RefINS0_14ComplexTextRunENS7_13DumbPtrTraitsISA_EEEELm0ENS7_15CrashOnOverflowELm16EEE +_ZN7WebCore21ComplexTextControllerC1ERKNS_11FontCascadeERKNS_7TextRunERN3WTF6VectorINS7_3RefINS0_14ComplexTextRunENS7_13DumbPtrTraitsISA_EEEELm0ENS7_15CrashOnOverflowELm16ENS7_10FastMallocEEE +_ZN7WebCore21ComplexTextControllerC2ERKNS_11FontCascadeERKNS_7TextRunERN3WTF6VectorINS7_3RefINS0_14ComplexTextRunENS7_13DumbPtrTraitsISA_EEEELm0ENS7_15CrashOnOverflowELm16EEE +_ZN7WebCore21ComplexTextControllerC2ERKNS_11FontCascadeERKNS_7TextRunERN3WTF6VectorINS7_3RefINS0_14ComplexTextRunENS7_13DumbPtrTraitsISA_EEEELm0ENS7_15CrashOnOverflowELm16ENS7_10FastMallocEEE +_ZN7WebCore21ContentSecurityPolicy17didReceiveHeadersERKNS_36ContentSecurityPolicyResponseHeadersEON3WTF6StringENS0_19ReportParsingErrorsE +_ZN7WebCore21ContentSecurityPolicyC1EON3WTF3URLEPNS_27ContentSecurityPolicyClientE +_ZN7WebCore21ContentSecurityPolicyC1EONS_3URLEPNS_27ContentSecurityPolicyClientE +_ZN7WebCore21ContentSecurityPolicyC2EON3WTF3URLEPNS_27ContentSecurityPolicyClientE +_ZN7WebCore21ContentSecurityPolicyC2EONS_3URLEPNS_27ContentSecurityPolicyClientE +_ZN7WebCore21ContentSecurityPolicyD1Ev +_ZN7WebCore21ContentSecurityPolicyD2Ev +_ZN7WebCore21ContextMenuController16clearContextMenuEv +_ZN7WebCore21ContextMenuController23contextMenuItemSelectedENS_17ContextMenuActionERKN3WTF6StringE +_ZN7WebCore21DeviceOrientationData6createEN3WTF8OptionalIdEES3_S3_NS2_IbEE +_ZN7WebCore21DeviceOrientationData6createESt8optionalIdES2_S2_S1_IbE +_ZN7WebCore21DiagnosticLoggingKeys10webViewKeyEv +_ZN7WebCore21DiagnosticLoggingKeys11cpuUsageKeyEv +_ZN7WebCore21DiagnosticLoggingKeys11inactiveKeyEv +_ZN7WebCore21DiagnosticLoggingKeys11occurredKeyEv +_ZN7WebCore21DiagnosticLoggingKeys11timedOutKeyEv +_ZN7WebCore21DiagnosticLoggingKeys12retrievalKeyEv +_ZN7WebCore21DiagnosticLoggingKeys13webGLStateKeyEv +_ZN7WebCore21DiagnosticLoggingKeys14streamingMediaEv +_ZN7WebCore21DiagnosticLoggingKeys15isAttachmentKeyEv +_ZN7WebCore21DiagnosticLoggingKeys15networkCacheKeyEv +_ZN7WebCore21DiagnosticLoggingKeys15revalidatingKeyEv +_ZN7WebCore21DiagnosticLoggingKeys16internalErrorKeyEv +_ZN7WebCore21DiagnosticLoggingKeys16notHTTPFamilyKeyEv +_ZN7WebCore21DiagnosticLoggingKeys17userZoomActionKeyEv +_ZN7WebCore21DiagnosticLoggingKeys18neverSeenBeforeKeyEv +_ZN7WebCore21DiagnosticLoggingKeys18noLongerInCacheKeyEv +_ZN7WebCore21DiagnosticLoggingKeys18nonVisibleStateKeyEv +_ZN7WebCore21DiagnosticLoggingKeys18unlikelyToReuseKeyEv +_ZN7WebCore21DiagnosticLoggingKeys19invalidSessionIDKeyEv +_ZN7WebCore21DiagnosticLoggingKeys19retrievalRequestKeyEv +_ZN7WebCore21DiagnosticLoggingKeys20needsRevalidationKeyEv +_ZN7WebCore21DiagnosticLoggingKeys20telemetryPageLoadKeyEv +_ZN7WebCore21DiagnosticLoggingKeys21domainCausingCrashKeyEv +_ZN7WebCore21DiagnosticLoggingKeys21simulatedPageCrashKeyEv +_ZN7WebCore21DiagnosticLoggingKeys22backNavigationDeltaKeyEv +_ZN7WebCore21DiagnosticLoggingKeys22cacheControlNoStoreKeyEv +_ZN7WebCore21DiagnosticLoggingKeys22domainCausingJetsamKeyEv +_ZN7WebCore21DiagnosticLoggingKeys22unknownEntryRequestKeyEv +_ZN7WebCore21DiagnosticLoggingKeys23isConditionalRequestKeyEv +_ZN7WebCore21DiagnosticLoggingKeys24activeInForegroundTabKeyEv +_ZN7WebCore21DiagnosticLoggingKeys24networkProcessCrashedKeyEv +_ZN7WebCore21DiagnosticLoggingKeys24uncacheableStatusCodeKeyEv +_ZN7WebCore21DiagnosticLoggingKeys24unsupportedHTTPMethodKeyEv +_ZN7WebCore21DiagnosticLoggingKeys24varyingHeaderMismatchKeyEv +_ZN7WebCore21DiagnosticLoggingKeys24visibleAndActiveStateKeyEv +_ZN7WebCore21DiagnosticLoggingKeys24visibleNonActiveStateKeyEv +_ZN7WebCore21DiagnosticLoggingKeys25failedLessThan2SecondsKeyEv +_ZN7WebCore21DiagnosticLoggingKeys25failedLessThan5SecondsKeyEv +_ZN7WebCore21DiagnosticLoggingKeys25missingValidatorFieldsKeyEv +_ZN7WebCore21DiagnosticLoggingKeys26entryRightlyNotWarmedUpKeyEv +_ZN7WebCore21DiagnosticLoggingKeys26entryWronglyNotWarmedUpKeyEv +_ZN7WebCore21DiagnosticLoggingKeys26failedLessThan20SecondsKeyEv +_ZN7WebCore21DiagnosticLoggingKeys26failedMoreThan20SecondsKeyEv +_ZN7WebCore21DiagnosticLoggingKeys27canceledLessThan2SecondsKeyEv +_ZN7WebCore21DiagnosticLoggingKeys27canceledLessThan5SecondsKeyEv +_ZN7WebCore21DiagnosticLoggingKeys27createSharedBufferFailedKeyEv +_ZN7WebCore21DiagnosticLoggingKeys27networkCacheReuseFailureKeyEv +_ZN7WebCore21DiagnosticLoggingKeys27networkCacheUnusedReasonKeyEv +_ZN7WebCore21DiagnosticLoggingKeys27synchronousMessageFailedKeyEv +_ZN7WebCore21DiagnosticLoggingKeys28activeInBackgroundTabOnlyKeyEv +_ZN7WebCore21DiagnosticLoggingKeys28canceledLessThan20SecondsKeyEv +_ZN7WebCore21DiagnosticLoggingKeys28canceledMoreThan20SecondsKeyEv +_ZN7WebCore21DiagnosticLoggingKeys28exceededActiveMemoryLimitKeyEv +_ZN7WebCore21DiagnosticLoggingKeys28isReloadIgnoringCacheDataKeyEv +_ZN7WebCore21DiagnosticLoggingKeys28networkCacheFailureReasonKeyEv +_ZN7WebCore21DiagnosticLoggingKeys28succeededLessThan2SecondsKeyEv +_ZN7WebCore21DiagnosticLoggingKeys28succeededLessThan5SecondsKeyEv +_ZN7WebCore21DiagnosticLoggingKeys29exceededBackgroundCPULimitKeyEv +_ZN7WebCore21DiagnosticLoggingKeys29succeededLessThan20SecondsKeyEv +_ZN7WebCore21DiagnosticLoggingKeys29succeededMoreThan20SecondsKeyEv +_ZN7WebCore21DiagnosticLoggingKeys30exceededInactiveMemoryLimitKeyEv +_ZN7WebCore21DiagnosticLoggingKeys33memoryUsageToDiagnosticLoggingKeyEm +_ZN7WebCore21DiagnosticLoggingKeys34resourceLoadStatisticsTelemetryKeyEv +_ZN7WebCore21DiagnosticLoggingKeys40backgroundCPUUsageToDiagnosticLoggingKeyEd +_ZN7WebCore21DiagnosticLoggingKeys40foregroundCPUUsageToDiagnosticLoggingKeyEd +_ZN7WebCore21DiagnosticLoggingKeys42wastedSpeculativeWarmupWithRevalidationKeyEv +_ZN7WebCore21DiagnosticLoggingKeys45wastedSpeculativeWarmupWithoutRevalidationKeyEv +_ZN7WebCore21DiagnosticLoggingKeys46successfulSpeculativeWarmupWithRevalidationKeyEv +_ZN7WebCore21DiagnosticLoggingKeys49successfulSpeculativeWarmupWithoutRevalidationKeyEv +_ZN7WebCore21DiagnosticLoggingKeys8otherKeyEv +_ZN7WebCore21DiagnosticLoggingKeys9unusedKeyEv +_ZN7WebCore21DisplayRefreshMonitor46handleDisplayRefreshedNotificationOnMainThreadEPv +_ZN7WebCore21DisplayRefreshMonitorC2Ej +_ZN7WebCore21DisplayRefreshMonitorD0Ev +_ZN7WebCore21DisplayRefreshMonitorD1Ev +_ZN7WebCore21DisplayRefreshMonitorD2Ev +_ZN7WebCore21HTMLOptionsCollection16setSelectedIndexEi +_ZN7WebCore21HTMLOptionsCollection3addERKN3WTF7VariantIJNS1_6RefPtrINS_17HTMLOptionElementENS1_13DumbPtrTraitsIS4_EEEENS3_INS_19HTMLOptGroupElementENS5_IS8_EEEEEEERKNS1_8OptionalINS2_IJNS3_INS_11HTMLElementENS5_ISF_EEEEiEEEEE +_ZN7WebCore21HTMLOptionsCollection3addERKN3WTF7VariantIJNS1_6RefPtrINS_17HTMLOptionElementENS1_13DumbPtrTraitsIS4_EEEENS3_INS_19HTMLOptGroupElementENS5_IS8_EEEEEEERKSt8optionalINS2_IJNS3_INS_11HTMLElementENS5_ISF_EEEEiEEEE +_ZN7WebCore21HTMLOptionsCollection6removeEi +_ZN7WebCore21HTMLOptionsCollection9setLengthEj +_ZN7WebCore21ISOTrackEncryptionBox11boxTypeNameEv +_ZN7WebCore21ISOTrackEncryptionBox5parseERN3JSC8DataViewERj +_ZN7WebCore21ISOTrackEncryptionBoxC1ERKS0_ +_ZN7WebCore21ISOTrackEncryptionBoxC1Ev +_ZN7WebCore21ISOTrackEncryptionBoxC2ERKS0_ +_ZN7WebCore21ISOTrackEncryptionBoxC2Ev +_ZN7WebCore21ISOTrackEncryptionBoxD0Ev +_ZN7WebCore21ISOTrackEncryptionBoxD1Ev +_ZN7WebCore21ISOTrackEncryptionBoxD2Ev +_ZN7WebCore21ISOTrackEncryptionBoxaSERKS0_ +_ZN7WebCore21InspectorFrontendHost16disconnectClientEv +_ZN7WebCore21InspectorFrontendHost28addSelfToGlobalObjectInWorldERNS_15DOMWrapperWorldE +_ZN7WebCore21InspectorFrontendHostC1EPNS_23InspectorFrontendClientEPNS_4PageE +_ZN7WebCore21InspectorFrontendHostC2EPNS_23InspectorFrontendClientEPNS_4PageE +_ZN7WebCore21InspectorFrontendHostD1Ev +_ZN7WebCore21InspectorFrontendHostD2Ev +_ZN7WebCore21JSCSSStyleDeclaration10putByIndexEPN3JSC6JSCellEPNS1_9ExecStateEjNS1_7JSValueEb +_ZN7WebCore21JSCSSStyleDeclaration11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE +_ZN7WebCore21JSCSSStyleDeclaration13visitChildrenEPN3JSC6JSCellERNS1_11SlotVisitorE +_ZN7WebCore21JSCSSStyleDeclaration14finishCreationERN3JSC2VME +_ZN7WebCore21JSCSSStyleDeclaration14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE +_ZN7WebCore21JSCSSStyleDeclaration15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore21JSCSSStyleDeclaration15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE +_ZN7WebCore21JSCSSStyleDeclaration15subspaceForImplERN3JSC2VME +_ZN7WebCore21JSCSSStyleDeclaration18getOwnPropertySlotEPN3JSC8JSObjectEPNS1_14JSGlobalObjectENS1_12PropertyNameERNS1_12PropertySlotE +_ZN7WebCore21JSCSSStyleDeclaration18getOwnPropertySlotEPN3JSC8JSObjectEPNS1_9ExecStateENS1_12PropertyNameERNS1_12PropertySlotE +_ZN7WebCore21JSCSSStyleDeclaration19getOwnPropertyNamesEPN3JSC8JSObjectEPNS1_9ExecStateERNS1_17PropertyNameArrayENS1_15EnumerationModeE +_ZN7WebCore21JSCSSStyleDeclaration22visitOutputConstraintsEPN3JSC6JSCellERNS1_11SlotVisitorE +_ZN7WebCore21JSCSSStyleDeclaration23visitAdditionalChildrenERN3JSC11SlotVisitorE +_ZN7WebCore21JSCSSStyleDeclaration25getOwnPropertySlotByIndexEPN3JSC8JSObjectEPNS1_14JSGlobalObjectEjRNS1_12PropertySlotE +_ZN7WebCore21JSCSSStyleDeclaration25getOwnPropertySlotByIndexEPN3JSC8JSObjectEPNS1_9ExecStateEjRNS1_12PropertySlotE +_ZN7WebCore21JSCSSStyleDeclaration3putEPN3JSC6JSCellEPNS1_9ExecStateENS1_12PropertyNameENS1_7JSValueERNS1_15PutPropertySlotE +_ZN7WebCore21JSCSSStyleDeclaration4infoEv +_ZN7WebCore21JSCSSStyleDeclaration6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_19CSSStyleDeclarationENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore21JSCSSStyleDeclaration6s_infoE +_ZN7WebCore21JSCSSStyleDeclaration7destroyEPN3JSC6JSCellE +_ZN7WebCore21JSCSSStyleDeclaration9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore21JSCSSStyleDeclaration9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore21JSCSSStyleDeclarationC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_19CSSStyleDeclarationENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore21JSCSSStyleDeclarationC1ERKS0_ +_ZN7WebCore21JSCSSStyleDeclarationC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_19CSSStyleDeclarationENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore21JSCSSStyleDeclarationC2ERKS0_ +_ZN7WebCore21JSCSSStyleDeclarationD1Ev +_ZN7WebCore21JSCSSStyleDeclarationD2Ev +_ZN7WebCore21JSCSSStyleDeclarationaSERKS0_ +_ZN7WebCore21JSDeprecatedCSSOMRect9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore21JSMainThreadExecState17s_mainThreadStateE +_ZN7WebCore21JSRemoteDOMWindowBase22javaScriptRuntimeFlagsEPKN3JSC14JSGlobalObjectE +_ZN7WebCore21JSRemoteDOMWindowBase25s_globalObjectMethodTableE +_ZN7WebCore21JSRemoteDOMWindowBase4infoEv +_ZN7WebCore21JSRemoteDOMWindowBase6s_infoE +_ZN7WebCore21JSRemoteDOMWindowBase7destroyEPN3JSC6JSCellE +_ZN7WebCore21JSRemoteDOMWindowBaseC1ERN3JSC2VMEPNS1_9StructureEON3WTF6RefPtrINS_15RemoteDOMWindowENS6_13DumbPtrTraitsIS8_EEEEPNS_13JSWindowProxyE +_ZN7WebCore21JSRemoteDOMWindowBaseC2ERN3JSC2VMEPNS1_9StructureEON3WTF6RefPtrINS_15RemoteDOMWindowENS6_13DumbPtrTraitsIS8_EEEEPNS_13JSWindowProxyE +_ZN7WebCore21JSRemoteDOMWindowBaseD1Ev +_ZN7WebCore21JSRemoteDOMWindowBaseD2Ev +_ZN7WebCore21JSTextTrackCueGeneric11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE +_ZN7WebCore21JSTextTrackCueGeneric14finishCreationERN3JSC2VME +_ZN7WebCore21JSTextTrackCueGeneric15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore21JSTextTrackCueGeneric15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE +_ZN7WebCore21JSTextTrackCueGeneric15subspaceForImplERN3JSC2VME +_ZN7WebCore21JSTextTrackCueGeneric4infoEv +_ZN7WebCore21JSTextTrackCueGeneric6s_infoE +_ZN7WebCore21JSTextTrackCueGeneric9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore21JSTextTrackCueGeneric9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore21JSTextTrackCueGenericC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_19TextTrackCueGenericENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore21JSTextTrackCueGenericC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_19TextTrackCueGenericENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore21JSTextTrackCueGenericD1Ev +_ZN7WebCore21JSTextTrackCueGenericD2Ev +_ZN7WebCore21MediaRecorderProviderC1ERKS0_ +_ZN7WebCore21MediaRecorderProviderC1Ev +_ZN7WebCore21MediaRecorderProviderC2ERKS0_ +_ZN7WebCore21MediaRecorderProviderC2Ev +_ZN7WebCore21MediaRecorderProviderD0Ev +_ZN7WebCore21MediaRecorderProviderD1Ev +_ZN7WebCore21MediaRecorderProviderD2Ev +_ZN7WebCore21MediaRecorderProvideraSERKS0_ +_ZN7WebCore21MediaRecorderProviderdaEPv +_ZN7WebCore21MediaRecorderProviderdlEPv +_ZN7WebCore21MediaRecorderProvidernaEm +_ZN7WebCore21MediaRecorderProvidernaEmPv +_ZN7WebCore21MediaRecorderProvidernwEm +_ZN7WebCore21MediaRecorderProvidernwEmPv +_ZN7WebCore21NetworkStorageSession10getCookiesERKN3WTF3URLE +_ZN7WebCore21NetworkStorageSession10getCookiesERKNS_3URLE +_ZN7WebCore21NetworkStorageSession10setCookiesERKN3WTF6VectorINS_6CookieELm0ENS1_15CrashOnOverflowELm16EEERKNS_3URLESA_ +_ZN7WebCore21NetworkStorageSession10setCookiesERKN3WTF6VectorINS_6CookieELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEERKNS1_3URLESB_ +_ZN7WebCore21NetworkStorageSession12deleteCookieERKNS_6CookieE +_ZN7WebCore21NetworkStorageSession13ensureSessionEN3PAL9SessionIDERKN3WTF6StringE +_ZN7WebCore21NetworkStorageSession13getAllCookiesEv +_ZN7WebCore21NetworkStorageSession14destroySessionEN3PAL9SessionIDE +_ZN7WebCore21NetworkStorageSession14maxAgeCacheCapERKNS_15ResourceRequestE +_ZN7WebCore21NetworkStorageSession14storageSessionEN3PAL9SessionIDE +_ZN7WebCore21NetworkStorageSession16deleteAllCookiesEv +_ZN7WebCore21NetworkStorageSession16flushCookieStoreEv +_ZN7WebCore21NetworkStorageSession17domCookiesForHostERKN3WTF6StringE +_ZN7WebCore21NetworkStorageSession18grantStorageAccessERKNS_17RegistrableDomainES3_N3WTF8OptionalINS4_16ObjectIdentifierINS_19FrameIdentifierTypeEEEEENS6_INS_18PageIdentifierTypeEEE +_ZN7WebCore21NetworkStorageSession18setAppBoundDomainsEON3WTF7HashSetINS_17RegistrableDomainENS1_11DefaultHashIS3_EENS1_10HashTraitsIS3_EEEE +_ZN7WebCore21NetworkStorageSession20resetAppBoundDomainsEv +_ZN7WebCore21NetworkStorageSession21defaultStorageSessionEv +_ZN7WebCore21NetworkStorageSession22processMayUseCookieAPIEv +_ZN7WebCore21NetworkStorageSession22removeAllStorageAccessEv +_ZN7WebCore21NetworkStorageSession23getHostnamesWithCookiesERN3WTF7HashSetINS1_6StringENS1_11DefaultHashIS3_EENS1_10HashTraitsIS3_EEEE +_ZN7WebCore21NetworkStorageSession25deleteCookiesForHostnamesERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN7WebCore21NetworkStorageSession25deleteCookiesForHostnamesERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEENS_22IncludeHttpOnlyCookiesE +_ZN7WebCore21NetworkStorageSession25switchToNewTestingSessionEv +_ZN7WebCore21NetworkStorageSession27permitProcessToUseCookieAPIEb +_ZN7WebCore21NetworkStorageSession27removeStorageAccessForFrameEN3WTF16ObjectIdentifierINS_19FrameIdentifierTypeEEENS2_INS_18PageIdentifierTypeEEE +_ZN7WebCore21NetworkStorageSession29deleteAllCookiesModifiedSinceEN3WTF8WallTimeE +_ZN7WebCore21NetworkStorageSession29setAgeCapForClientSideCookiesEN3WTF8OptionalINS1_7SecondsEEE +_ZN7WebCore21NetworkStorageSession29setAllCookiesToSameSiteStrictERKNS_17RegistrableDomainEON3WTF17CompletionHandlerIFvvEEE +_ZN7WebCore21NetworkStorageSession31setThirdPartyCookieBlockingModeENS_28ThirdPartyCookieBlockingModeE +_ZN7WebCore21NetworkStorageSession32setResourceLoadStatisticsEnabledEb +_ZN7WebCore21NetworkStorageSession38setCacheMaxAgeCapForPrevalentResourcesEN3WTF7SecondsE +_ZN7WebCore21NetworkStorageSession40resetCacheMaxAgeCapForPrevalentResourcesEv +_ZN7WebCore21NetworkStorageSession41setDomainsWithUserInteractionAsFirstPartyERKN3WTF6VectorINS_17RegistrableDomainELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN7WebCore21NetworkStorageSession43setPrevalentDomainsToBlockButKeepCookiesForERKN3WTF6VectorINS_17RegistrableDomainELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN7WebCore21NetworkStorageSession44setResourceLoadStatisticsDebugLoggingEnabledEb +_ZN7WebCore21NetworkStorageSession45setPrevalentDomainsToBlockAndDeleteCookiesForERKN3WTF6VectorINS_17RegistrableDomainELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN7WebCore21NetworkStorageSession46clearPageSpecificDataForResourceLoadStatisticsEN3WTF16ObjectIdentifierINS_18PageIdentifierTypeEEE +_ZN7WebCore21NetworkStorageSession47resetCrossSiteLoadsWithLinkDecorationForTestingEv +_ZN7WebCore21NetworkStorageSession59didCommitCrossSiteLoadWithDataTransferFromPrevalentResourceERKNS_17RegistrableDomainEN3WTF16ObjectIdentifierINS_18PageIdentifierTypeEEE +_ZN7WebCore21NetworkStorageSession7forEachERKN3WTF8FunctionIFvRKS0_EEE +_ZN7WebCore21NetworkStorageSession9setCookieERKNS_6CookieE +_ZN7WebCore21NetworkStorageSessionC1EN3PAL9SessionIDE +_ZN7WebCore21NetworkStorageSessionC2EN3PAL9SessionIDE +_ZN7WebCore21NetworkStorageSessionD1Ev +_ZN7WebCore21NetworkStorageSessionD2Ev +_ZN7WebCore21PageOverlayController18installPageOverlayERNS_11PageOverlayENS1_8FadeModeE +_ZN7WebCore21PageOverlayController20uninstallPageOverlayERNS_11PageOverlayENS1_8FadeModeE +_ZN7WebCore21PageOverlayController26didChangeDeviceScaleFactorEv +_ZN7WebCore21PageOverlayController32copyAccessibilityAttributesNamesEb +_ZN7WebCore21PageOverlayController43copyAccessibilityAttributeBoolValueForPointEN3WTF6StringENS_10FloatPointERb +_ZN7WebCore21PageOverlayController45copyAccessibilityAttributeStringValueForPointEN3WTF6StringENS_10FloatPointERS2_ +_ZN7WebCore21PlatformKeyboardEvent20currentCapsLockStateEv +_ZN7WebCore21PlatformKeyboardEvent23getCurrentModifierStateERbS1_S1_S1_ +_ZN7WebCore21PlatformKeyboardEvent23setCurrentModifierStateEN3WTF9OptionSetINS_13PlatformEvent8ModifierEEE +_ZN7WebCore21PlatformKeyboardEvent24disambiguateKeyDownEventENS_13PlatformEvent4TypeEb +_ZN7WebCore21RemoteCommandListener6createERNS_27RemoteCommandListenerClientE +_ZN7WebCore21SQLiteDatabaseTracker24hasTransactionInProgressEv +_ZN7WebCore21SQLiteDatabaseTracker35decrementTransactionInProgressCountEv +_ZN7WebCore21SQLiteDatabaseTracker35incrementTransactionInProgressCountEv +_ZN7WebCore21SQLiteDatabaseTracker9setClientEPNS_27SQLiteDatabaseTrackerClientE +_ZN7WebCore21ScriptDisallowedScope7s_countE +_ZN7WebCore21SerializedScriptValue11deserializeEPK15OpaqueJSContextPPK13OpaqueJSValue +_ZN7WebCore21SerializedScriptValue11deserializeERN3JSC14JSGlobalObjectEPS2_NS_22SerializationErrorModeE +_ZN7WebCore21SerializedScriptValue11deserializeERN3JSC14JSGlobalObjectEPS2_RKN3WTF6VectorINS5_6RefPtrINS_11MessagePortENS5_13DumbPtrTraitsIS8_EEEELm0ENS5_15CrashOnOverflowELm16ENS5_10FastMallocEEENS_22SerializationErrorModeE +_ZN7WebCore21SerializedScriptValue11deserializeERN3JSC9ExecStateEPNS1_14JSGlobalObjectENS_22SerializationErrorModeE +_ZN7WebCore21SerializedScriptValue11deserializeERN3JSC9ExecStateEPNS1_14JSGlobalObjectERKN3WTF6VectorINS6_6RefPtrINS_11MessagePortENS6_13DumbPtrTraitsIS9_EEEELm0ENS6_15CrashOnOverflowELm16EEENS_22SerializationErrorModeE +_ZN7WebCore21SerializedScriptValue6createEN3WTF10StringViewE +_ZN7WebCore21SerializedScriptValue6createEPK15OpaqueJSContextPK13OpaqueJSValuePS6_ +_ZN7WebCore21SerializedScriptValue6createERN3JSC14JSGlobalObjectENS1_7JSValueENS_22SerializationErrorModeE +_ZN7WebCore21SerializedScriptValue6createERN3JSC9ExecStateENS1_7JSValueENS_22SerializationErrorModeE +_ZN7WebCore21SerializedScriptValue6createERN3JSC9ExecStateENS1_7JSValueEON3WTF6VectorINS1_6StrongINS1_8JSObjectEEELm0ENS5_15CrashOnOverflowELm16EEERNS6_INS5_6RefPtrINS_11MessagePortENS5_13DumbPtrTraitsISE_EEEELm0ESA_Lm16EEENS_20SerializationContextE +_ZN7WebCore21SerializedScriptValue8toStringEv +_ZN7WebCore21SerializedScriptValueC1EON3WTF6VectorIhLm0ENS1_15CrashOnOverflowELm16EEE +_ZN7WebCore21SerializedScriptValueC1EON3WTF6VectorIhLm0ENS1_15CrashOnOverflowELm16EEESt10unique_ptrINS2_IN3JSC19ArrayBufferContentsELm0ES3_Lm16EEESt14default_deleteIS9_EE +_ZN7WebCore21SerializedScriptValueC1EON3WTF6VectorIhLm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN7WebCore21SerializedScriptValueC1EON3WTF6VectorIhLm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEESt10unique_ptrINS2_IN3JSC19ArrayBufferContentsELm0ES3_Lm16ES4_EESt14default_deleteISA_EE +_ZN7WebCore21SerializedScriptValueC2EON3WTF6VectorIhLm0ENS1_15CrashOnOverflowELm16EEE +_ZN7WebCore21SerializedScriptValueC2EON3WTF6VectorIhLm0ENS1_15CrashOnOverflowELm16EEESt10unique_ptrINS2_IN3JSC19ArrayBufferContentsELm0ES3_Lm16EEESt14default_deleteIS9_EE +_ZN7WebCore21SerializedScriptValueC2EON3WTF6VectorIhLm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN7WebCore21SerializedScriptValueC2EON3WTF6VectorIhLm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEESt10unique_ptrINS2_IN3JSC19ArrayBufferContentsELm0ES3_Lm16ES4_EESt14default_deleteISA_EE +_ZN7WebCore21SerializedScriptValueD1Ev +_ZN7WebCore21SerializedScriptValueD2Ev +_ZN7WebCore21UserContentController13addUserScriptERNS_15DOMWrapperWorldESt10unique_ptrINS_10UserScriptESt14default_deleteIS4_EE +_ZN7WebCore21UserContentController16removeUserScriptERNS_15DOMWrapperWorldERKN3WTF3URLE +_ZN7WebCore21UserContentController16removeUserScriptERNS_15DOMWrapperWorldERKNS_3URLE +_ZN7WebCore21UserContentController17addUserStyleSheetERNS_15DOMWrapperWorldESt10unique_ptrINS_14UserStyleSheetESt14default_deleteIS4_EENS_22UserStyleInjectionTimeE +_ZN7WebCore21UserContentController17removeUserScriptsERNS_15DOMWrapperWorldE +_ZN7WebCore21UserContentController20removeAllUserContentEv +_ZN7WebCore21UserContentController20removeUserStyleSheetERNS_15DOMWrapperWorldERKN3WTF3URLE +_ZN7WebCore21UserContentController20removeUserStyleSheetERNS_15DOMWrapperWorldERKNS_3URLE +_ZN7WebCore21UserContentController21removeUserStyleSheetsERNS_15DOMWrapperWorldE +_ZN7WebCore21UserContentController6createEv +_ZN7WebCore21UserContentControllerD0Ev +_ZN7WebCore21UserContentControllerD1Ev +_ZN7WebCore21UserContentControllerD2Ev +_ZN7WebCore21UserContentURLPattern5parseERKN3WTF6StringE +_ZN7WebCore21WebKitFontFamilyNames4initEv +_ZN7WebCore21WheelEventDeltaFilter6createEv +_ZN7WebCore21WheelEventTestMonitor14deferForReasonEPKvNS0_11DeferReasonE +_ZN7WebCore21WheelEventTestMonitor18receivedWheelEventERKNS_18PlatformWheelEventE +_ZN7WebCore21WheelEventTestMonitor21clearAllTestDeferralsEv +_ZN7WebCore21WheelEventTestMonitor23removeDeferralForReasonEPKvNS0_11DeferReasonE +_ZN7WebCore21WheelEventTestMonitor33setTestCallbackAndStartMonitoringEbbON3WTF8FunctionIFvvEEE +_ZN7WebCore21WheelEventTestTrigger19deferTestsForReasonEPKvNS0_22DeferTestTriggerReasonE +_ZN7WebCore21WheelEventTestTrigger21clearAllTestDeferralsEv +_ZN7WebCore21WheelEventTestTrigger27removeTestDeferralForReasonEPKvNS0_22DeferTestTriggerReasonE +_ZN7WebCore21WheelEventTestTrigger40setTestCallbackAndStartNotificationTimerEON3WTF8FunctionIFvvEEE +_ZN7WebCore21WindowsLatin1EncodingEv +_ZN7WebCore21convertToIntegerClampIaEET_RN3JSC14JSGlobalObjectENS2_7JSValueE +_ZN7WebCore21convertToIntegerClampIaEET_RN3JSC9ExecStateENS2_7JSValueE +_ZN7WebCore21convertToIntegerClampIhEET_RN3JSC14JSGlobalObjectENS2_7JSValueE +_ZN7WebCore21convertToIntegerClampIhEET_RN3JSC9ExecStateENS2_7JSValueE +_ZN7WebCore21convertToIntegerClampIiEET_RN3JSC14JSGlobalObjectENS2_7JSValueE +_ZN7WebCore21convertToIntegerClampIiEET_RN3JSC9ExecStateENS2_7JSValueE +_ZN7WebCore21convertToIntegerClampIjEET_RN3JSC14JSGlobalObjectENS2_7JSValueE +_ZN7WebCore21convertToIntegerClampIjEET_RN3JSC9ExecStateENS2_7JSValueE +_ZN7WebCore21convertToIntegerClampIlEET_RN3JSC14JSGlobalObjectENS2_7JSValueE +_ZN7WebCore21convertToIntegerClampIlEET_RN3JSC9ExecStateENS2_7JSValueE +_ZN7WebCore21convertToIntegerClampImEET_RN3JSC14JSGlobalObjectENS2_7JSValueE +_ZN7WebCore21convertToIntegerClampImEET_RN3JSC9ExecStateENS2_7JSValueE +_ZN7WebCore21convertToIntegerClampIsEET_RN3JSC14JSGlobalObjectENS2_7JSValueE +_ZN7WebCore21convertToIntegerClampIsEET_RN3JSC9ExecStateENS2_7JSValueE +_ZN7WebCore21convertToIntegerClampItEET_RN3JSC14JSGlobalObjectENS2_7JSValueE +_ZN7WebCore21convertToIntegerClampItEET_RN3JSC9ExecStateENS2_7JSValueE +_ZN7WebCore21findEventWithKeyStateEPNS_5EventE +_ZN7WebCore21getCachedDOMStructureERNS_17JSDOMGlobalObjectEPKN3JSC9ClassInfoE +_ZN7WebCore21identifierToUSVStringERN3JSC14JSGlobalObjectERKNS0_10IdentifierE +_ZN7WebCore21identifierToUSVStringERN3JSC9ExecStateERKNS0_10IdentifierE +_ZN7WebCore21isBackForwardLoadTypeENS_13FrameLoadTypeE +_ZN7WebCore21mainThreadNormalWorldEv +_ZN7WebCore21markerTextForListItemEPNS_7ElementE +_ZN7WebCore21nextParagraphPositionERKNS_15VisiblePositionEi +_ZN7WebCore21resolveCharacterRangeERKNS_11SimpleRangeENS_14CharacterRangeEt +_ZN7WebCore21setPlatformStrategiesEPNS_18PlatformStrategiesE +_ZN7WebCore21wordRangeFromPositionERKNS_15VisiblePositionE +_ZN7WebCore22CSSAnimationController16resumeAnimationsEv +_ZN7WebCore22CSSAnimationController17suspendAnimationsEv +_ZN7WebCore22CSSAnimationController20pauseAnimationAtTimeERNS_7ElementERKN3WTF10AtomStringEd +_ZN7WebCore22CSSAnimationController20pauseAnimationAtTimeERNS_7ElementERKN3WTF12AtomicStringEd +_ZN7WebCore22CSSAnimationController21pauseTransitionAtTimeERNS_7ElementERKN3WTF6StringEd +_ZN7WebCore22CSSAnimationController27resumeAnimationsForDocumentEPNS_8DocumentE +_ZN7WebCore22CSSAnimationController28suspendAnimationsForDocumentEPNS_8DocumentE +_ZN7WebCore22CSSAnimationController33animationsAreSuspendedForDocumentEPNS_8DocumentE +_ZN7WebCore22CSSAnimationController36setAllowsNewAnimationsWhileSuspendedEb +_ZN7WebCore22CacheStorageConnection12updateCachesEmONSt12experimental15fundamentals_v38expectedINS_14DOMCacheEngine10CacheInfosENS4_5ErrorEEE +_ZN7WebCore22CacheStorageConnection13updateRecordsEmONSt12experimental15fundamentals_v38expectedIN3WTF6VectorINS_14DOMCacheEngine6RecordELm0ENS4_15CrashOnOverflowELm16EEENS6_5ErrorEEE +_ZN7WebCore22CacheStorageConnection19putRecordsCompletedEmONSt12experimental15fundamentals_v38expectedIN3WTF6VectorImLm0ENS4_15CrashOnOverflowELm16EEENS_14DOMCacheEngine5ErrorEEE +_ZN7WebCore22CacheStorageConnection21openOrRemoveCompletedEmRKNSt12experimental15fundamentals_v38expectedINS_14DOMCacheEngine30CacheIdentifierOperationResultENS4_5ErrorEEE +_ZN7WebCore22CacheStorageConnection22deleteRecordsCompletedEmONSt12experimental15fundamentals_v38expectedIN3WTF6VectorImLm0ENS4_15CrashOnOverflowELm16EEENS_14DOMCacheEngine5ErrorEEE +_ZN7WebCore22CanvasRenderingContext5derefEv +_ZN7WebCore22CryptoAlgorithmAES_CBC15platformDecryptERKNS_30CryptoAlgorithmAesCbcCfbParamsERKNS_12CryptoKeyAESERKN3WTF6VectorIhLm0ENS7_15CrashOnOverflowELm16ENS7_10FastMallocEEENS0_7PaddingE +_ZN7WebCore22CryptoAlgorithmAES_CBC15platformEncryptERKNS_30CryptoAlgorithmAesCbcCfbParamsERKNS_12CryptoKeyAESERKN3WTF6VectorIhLm0ENS7_15CrashOnOverflowELm16ENS7_10FastMallocEEENS0_7PaddingE +_ZN7WebCore22DefaultFilterOperation6createENS_15FilterOperation13OperationTypeE +_ZN7WebCore22DefaultFilterOperationC1ENS_15FilterOperation13OperationTypeE +_ZN7WebCore22DefaultFilterOperationC2ENS_15FilterOperation13OperationTypeE +_ZN7WebCore22DefaultFilterOperationD0Ev +_ZN7WebCore22DefaultFilterOperationD1Ev +_ZN7WebCore22DefaultFilterOperationD2Ev +_ZN7WebCore22EmptyFrameLoaderClient10sendH2PingERKN3WTF3URLEONS1_17CompletionHandlerIFvONSt12experimental15fundamentals_v38expectedINS1_7SecondsENS_13ResourceErrorEEEEEE +_ZN7WebCore22EmptyFrameLoaderClient11createFrameERKN3WTF6StringERNS_21HTMLFrameOwnerElementE +_ZN7WebCore22EmptyFrameLoaderClient11createFrameERKNS_3URLERKN3WTF6StringERNS_21HTMLFrameOwnerElementES7_bii +_ZN7WebCore22EmptyFrameLoaderClient11prefetchDNSERKN3WTF6StringE +_ZN7WebCore22EmptyFrameLoaderClient12blockedErrorERKNS_15ResourceRequestE +_ZN7WebCore22EmptyFrameLoaderClient12createPluginERKNS_7IntSizeERNS_17HTMLPlugInElementERKN3WTF3URLERKNS6_6VectorINS6_6StringELm0ENS6_15CrashOnOverflowELm16ENS6_10FastMallocEEESG_RKSB_b +_ZN7WebCore22EmptyFrameLoaderClient12createPluginERKNS_7IntSizeERNS_17HTMLPlugInElementERKNS_3URLERKN3WTF6VectorINS9_6StringELm0ENS9_15CrashOnOverflowELm16EEESF_RKSB_b +_ZN7WebCore22EmptyFrameLoaderClient12didDetectXSSERKN3WTF3URLEb +_ZN7WebCore22EmptyFrameLoaderClient12didDetectXSSERKNS_3URLEb +_ZN7WebCore22EmptyFrameLoaderClient12dispatchShowEv +_ZN7WebCore22EmptyFrameLoaderClient13committedLoadEPNS_14DocumentLoaderEPKci +_ZN7WebCore22EmptyFrameLoaderClient13didFinishLoadEv +_ZN7WebCore22EmptyFrameLoaderClient13startDownloadERKNS_15ResourceRequestERKN3WTF6StringE +_ZN7WebCore22EmptyFrameLoaderClient14cancelledErrorERKNS_15ResourceRequestE +_ZN7WebCore22EmptyFrameLoaderClient14didChangeTitleEPNS_14DocumentLoaderE +_ZN7WebCore22EmptyFrameLoaderClient14recreatePluginEPNS_6WidgetE +_ZN7WebCore22EmptyFrameLoaderClient14shouldFallBackERKNS_13ResourceErrorE +_ZN7WebCore22EmptyFrameLoaderClient15finishedLoadingEPNS_14DocumentLoaderE +_ZN7WebCore22EmptyFrameLoaderClient15willChangeTitleEPNS_14DocumentLoaderE +_ZN7WebCore22EmptyFrameLoaderClient16restoreViewStateEv +_ZN7WebCore22EmptyFrameLoaderClient17cancelPolicyCheckEv +_ZN7WebCore22EmptyFrameLoaderClient17dispatchWillCloseEv +_ZN7WebCore22EmptyFrameLoaderClient17objectContentTypeERKN3WTF3URLERKNS1_6StringE +_ZN7WebCore22EmptyFrameLoaderClient17objectContentTypeERKNS_3URLERKN3WTF6StringE +_ZN7WebCore22EmptyFrameLoaderClient17setCopiesOnScrollEv +_ZN7WebCore22EmptyFrameLoaderClient18cannotShowURLErrorERKNS_15ResourceRequestE +_ZN7WebCore22EmptyFrameLoaderClient18didSaveToPageCacheEv +_ZN7WebCore22EmptyFrameLoaderClient18dispatchCreatePageERKNS_16NavigationActionE +_ZN7WebCore22EmptyFrameLoaderClient18frameLoadCompletedEv +_ZN7WebCore22EmptyFrameLoaderClient18makeRepresentationEPNS_14DocumentLoaderE +_ZN7WebCore22EmptyFrameLoaderClient19detachedFromParent2Ev +_ZN7WebCore22EmptyFrameLoaderClient19detachedFromParent3Ev +_ZN7WebCore22EmptyFrameLoaderClient19dispatchDidFailLoadERKNS_13ResourceErrorE +_ZN7WebCore22EmptyFrameLoaderClient19saveViewStateToItemERNS_11HistoryItemE +_ZN7WebCore22EmptyFrameLoaderClient19updateGlobalHistoryEv +_ZN7WebCore22EmptyFrameLoaderClient20createDocumentLoaderERKNS_15ResourceRequestERKNS_14SubstituteDataE +_ZN7WebCore22EmptyFrameLoaderClient20frameLoaderDestroyedEv +_ZN7WebCore22EmptyFrameLoaderClient20redirectDataToPluginERNS_6WidgetE +_ZN7WebCore22EmptyFrameLoaderClient20setMainDocumentErrorEPNS_14DocumentLoaderERKNS_13ResourceErrorE +_ZN7WebCore22EmptyFrameLoaderClient21didRunInsecureContentERNS_14SecurityOriginERKN3WTF3URLE +_ZN7WebCore22EmptyFrameLoaderClient21didRunInsecureContentERNS_14SecurityOriginERKNS_3URLE +_ZN7WebCore22EmptyFrameLoaderClient21dispatchDidCommitLoadEN3WTF8OptionalINS_18HasInsecureContentEEENS2_INS_13UsedLegacyTLSEEE +_ZN7WebCore22EmptyFrameLoaderClient21dispatchDidCommitLoadESt8optionalINS_18HasInsecureContentEE +_ZN7WebCore22EmptyFrameLoaderClient21dispatchDidFinishLoadEv +_ZN7WebCore22EmptyFrameLoaderClient21fileDoesNotExistErrorERKNS_16ResourceResponseE +_ZN7WebCore22EmptyFrameLoaderClient21forceLayoutForNonHTMLEv +_ZN7WebCore22EmptyFrameLoaderClient22createJavaAppletWidgetERKNS_7IntSizeERNS_17HTMLAppletElementERKN3WTF3URLERKNS6_6VectorINS6_6StringELm0ENS6_15CrashOnOverflowELm16ENS6_10FastMallocEEESG_ +_ZN7WebCore22EmptyFrameLoaderClient22createJavaAppletWidgetERKNS_7IntSizeERNS_17HTMLAppletElementERKNS_3URLERKN3WTF6VectorINS9_6StringELm0ENS9_15CrashOnOverflowELm16EEESF_ +_ZN7WebCore22EmptyFrameLoaderClient22dispatchDidFailLoadingEPNS_14DocumentLoaderEmRKNS_13ResourceErrorE +_ZN7WebCore22EmptyFrameLoaderClient22dispatchWillSubmitFormERNS_9FormStateEON3WTF17CompletionHandlerIFvvEEE +_ZN7WebCore22EmptyFrameLoaderClient22dispatchWillSubmitFormERNS_9FormStateEON3WTF8FunctionIFvvEEE +_ZN7WebCore22EmptyFrameLoaderClient22provisionalLoadStartedEv +_ZN7WebCore22EmptyFrameLoaderClient23cannotShowMIMETypeErrorERKNS_16ResourceResponseE +_ZN7WebCore22EmptyFrameLoaderClient23createNetworkingContextEv +_ZN7WebCore22EmptyFrameLoaderClient23didRestoreFromPageCacheEv +_ZN7WebCore22EmptyFrameLoaderClient23dispatchDidReceiveTitleERKNS_19StringWithDirectionE +_ZN7WebCore22EmptyFrameLoaderClient23dispatchWillSendRequestEPNS_14DocumentLoaderEmRNS_15ResourceRequestERKNS_16ResourceResponseE +_ZN7WebCore22EmptyFrameLoaderClient24dispatchDidFinishLoadingEPNS_14DocumentLoaderEm +_ZN7WebCore22EmptyFrameLoaderClient24isEmptyFrameLoaderClientEv +_ZN7WebCore22EmptyFrameLoaderClient24revertToProvisionalStateEPNS_14DocumentLoaderE +_ZN7WebCore22EmptyFrameLoaderClient25didDisplayInsecureContentEv +_ZN7WebCore22EmptyFrameLoaderClient25dispatchDidBecomeFramesetEb +_ZN7WebCore22EmptyFrameLoaderClient25pluginWillHandleLoadErrorERKNS_16ResourceResponseE +_ZN7WebCore22EmptyFrameLoaderClient25setMainFrameDocumentReadyEb +_ZN7WebCore22EmptyFrameLoaderClient26didReplaceMultipartContentEv +_ZN7WebCore22EmptyFrameLoaderClient26dispatchDidReceiveResponseEPNS_14DocumentLoaderEmRKNS_16ResourceResponseE +_ZN7WebCore22EmptyFrameLoaderClient26shouldUseCredentialStorageEPNS_14DocumentLoaderEm +_ZN7WebCore22EmptyFrameLoaderClient26updateCachedDocumentLoaderERNS_14DocumentLoaderE +_ZN7WebCore22EmptyFrameLoaderClient27dispatchWillSendSubmitEventEON3WTF3RefINS_9FormStateENS1_13DumbPtrTraitsIS3_EEEE +_ZN7WebCore22EmptyFrameLoaderClient27willReplaceMultipartContentEv +_ZN7WebCore22EmptyFrameLoaderClient28blockedByContentBlockerErrorERKNS_15ResourceRequestE +_ZN7WebCore22EmptyFrameLoaderClient29dispatchDidFinishDocumentLoadEv +_ZN7WebCore22EmptyFrameLoaderClient29dispatchDidPopStateWithinPageEv +_ZN7WebCore22EmptyFrameLoaderClient29hasFrameSpecificStorageAccessEv +_ZN7WebCore22EmptyFrameLoaderClient29savePlatformDataToCachedFrameEPNS_11CachedFrameE +_ZN7WebCore22EmptyFrameLoaderClient30didRestoreFromBackForwardCacheEv +_ZN7WebCore22EmptyFrameLoaderClient30dispatchDidFailProvisionalLoadERKNS_13ResourceErrorE +_ZN7WebCore22EmptyFrameLoaderClient30dispatchDidFailProvisionalLoadERKNS_13ResourceErrorENS_19WillContinueLoadingE +_ZN7WebCore22EmptyFrameLoaderClient30dispatchDidPushStateWithinPageEv +_ZN7WebCore22EmptyFrameLoaderClient30updateGlobalHistoryItemForPageEv +_ZN7WebCore22EmptyFrameLoaderClient31dispatchDecidePolicyForResponseERKNS_16ResourceResponseERKNS_15ResourceRequestENS_21PolicyCheckIdentifierERKN3WTF6StringEONS8_8FunctionIFvNS_12PolicyActionES7_EEE +_ZN7WebCore22EmptyFrameLoaderClient31dispatchDecidePolicyForResponseERKNS_16ResourceResponseERKNS_15ResourceRequestEON3WTF8FunctionIFvNS_12PolicyActionEEEE +_ZN7WebCore22EmptyFrameLoaderClient31dispatchDidCancelClientRedirectEv +_ZN7WebCore22EmptyFrameLoaderClient31dispatchDidDispatchOnloadEventsEv +_ZN7WebCore22EmptyFrameLoaderClient31dispatchDidReachLayoutMilestoneEN3WTF9OptionSetINS_15LayoutMilestoneEEE +_ZN7WebCore22EmptyFrameLoaderClient31dispatchDidReachLayoutMilestoneEj +_ZN7WebCore22EmptyFrameLoaderClient31dispatchDidReceiveContentLengthEPNS_14DocumentLoaderEmi +_ZN7WebCore22EmptyFrameLoaderClient31dispatchDidStartProvisionalLoadEv +_ZN7WebCore22EmptyFrameLoaderClient31dispatchUnableToImplementPolicyERKNS_13ResourceErrorE +_ZN7WebCore22EmptyFrameLoaderClient31interruptedForPolicyChangeErrorERKNS_15ResourceRequestE +_ZN7WebCore22EmptyFrameLoaderClient31prepareForDataSourceReplacementEv +_ZN7WebCore22EmptyFrameLoaderClient31transitionToCommittedForNewPageEv +_ZN7WebCore22EmptyFrameLoaderClient32assignIdentifierToInitialRequestEmPNS_14DocumentLoaderERKNS_15ResourceRequestE +_ZN7WebCore22EmptyFrameLoaderClient32updateGlobalHistoryRedirectLinksEv +_ZN7WebCore22EmptyFrameLoaderClient33convertMainResourceLoadToDownloadEPNS_14DocumentLoaderEN3PAL9SessionIDERKNS_15ResourceRequestERKNS_16ResourceResponseE +_ZN7WebCore22EmptyFrameLoaderClient33convertMainResourceLoadToDownloadEPNS_14DocumentLoaderERKNS_15ResourceRequestERKNS_16ResourceResponseE +_ZN7WebCore22EmptyFrameLoaderClient33dispatchDidReplaceStateWithinPageEv +_ZN7WebCore22EmptyFrameLoaderClient33dispatchWillPerformClientRedirectERKN3WTF3URLEdNS1_8WallTimeENS_19LockBackForwardListE +_ZN7WebCore22EmptyFrameLoaderClient33dispatchWillPerformClientRedirectERKNS_3URLEdN3WTF8WallTimeE +_ZN7WebCore22EmptyFrameLoaderClient35dispatchDidChangeLocationWithinPageEv +_ZN7WebCore22EmptyFrameLoaderClient35dispatchDidClearWindowObjectInWorldERNS_15DOMWrapperWorldE +_ZN7WebCore22EmptyFrameLoaderClient36transitionToCommittedFromCachedFrameEPNS_11CachedFrameE +_ZN7WebCore22EmptyFrameLoaderClient37dispatchDidReachVisuallyNonEmptyStateEv +_ZN7WebCore22EmptyFrameLoaderClient38dispatchDecidePolicyForNewWindowActionERKNS_16NavigationActionERKNS_15ResourceRequestEPNS_9FormStateERKN3WTF6StringENS_21PolicyCheckIdentifierEONS9_8FunctionIFvNS_12PolicyActionESD_EEE +_ZN7WebCore22EmptyFrameLoaderClient38dispatchDecidePolicyForNewWindowActionERKNS_16NavigationActionERKNS_15ResourceRequestEPNS_9FormStateERKN3WTF6StringEONS9_8FunctionIFvNS_12PolicyActionEEEE +_ZN7WebCore22EmptyFrameLoaderClient38dispatchDidLoadResourceFromMemoryCacheEPNS_14DocumentLoaderERKNS_15ResourceRequestERKNS_16ResourceResponseEi +_ZN7WebCore22EmptyFrameLoaderClient39dispatchDecidePolicyForNavigationActionERKNS_16NavigationActionERKNS_15ResourceRequestERKNS_16ResourceResponseEPNS_9FormStateENS_18PolicyDecisionModeENS_21PolicyCheckIdentifierEON3WTF8FunctionIFvNS_12PolicyActionESD_EEE +_ZN7WebCore22EmptyFrameLoaderClient39dispatchDecidePolicyForNavigationActionERKNS_16NavigationActionERKNS_15ResourceRequestERKNS_16ResourceResponseEPNS_9FormStateENS_18PolicyDecisionModeEON3WTF8FunctionIFvNS_12PolicyActionEEEE +_ZN7WebCore22EmptyFrameLoaderClient41dispatchDidReceiveAuthenticationChallengeEPNS_14DocumentLoaderEmRKNS_23AuthenticationChallengeE +_ZN7WebCore22EmptyFrameLoaderClient50dispatchDidReceiveServerRedirectForProvisionalLoadEv +_ZN7WebCore22EmptyFrameLoaderClient8setTitleERKNS_19StringWithDirectionERKN3WTF3URLE +_ZN7WebCore22EmptyFrameLoaderClient8setTitleERKNS_19StringWithDirectionERKNS_3URLE +_ZN7WebCore22EmptyFrameLoaderClient9userAgentERKNS_3URLE +_ZN7WebCore22EmptyFrameLoaderClientC1ERKS0_ +_ZN7WebCore22EmptyFrameLoaderClientC1Ev +_ZN7WebCore22EmptyFrameLoaderClientC2ERKS0_ +_ZN7WebCore22EmptyFrameLoaderClientC2Ev +_ZN7WebCore22EmptyFrameLoaderClientD0Ev +_ZN7WebCore22EmptyFrameLoaderClientD1Ev +_ZN7WebCore22EmptyFrameLoaderClientD2Ev +_ZN7WebCore22EmptyFrameLoaderClientaSERKS0_ +_ZN7WebCore22FontCascadeDescriptionC1Ev +_ZN7WebCore22FontCascadeDescriptionC2Ev +_ZN7WebCore22GraphicsLayerTransformC1Ev +_ZN7WebCore22GraphicsLayerTransformC2Ev +_ZN7WebCore22HTMLFormControlElement13checkValidityEPN3WTF6VectorINS1_6RefPtrIS0_NS1_13DumbPtrTraitsIS0_EEEELm0ENS1_15CrashOnOverflowELm16EEE +_ZN7WebCore22HTMLFormControlElement13checkValidityEPN3WTF6VectorINS1_6RefPtrIS0_NS1_13DumbPtrTraitsIS0_EEEELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN7WebCore22HTMLFormControlElement13setFormActionERKN3WTF10AtomStringE +_ZN7WebCore22HTMLFormControlElement13setFormActionERKN3WTF12AtomicStringE +_ZN7WebCore22HTMLFormControlElement13setFormMethodERKN3WTF6StringE +_ZN7WebCore22HTMLFormControlElement14setFormEnctypeERKN3WTF6StringE +_ZN7WebCore22HTMLFormControlElement15setAutocompleteERKN3WTF6StringE +_ZN7WebCore22HTMLPlugInImageElement24restartSnapshottedPlugInEv +_ZN7WebCore22HTMLPlugInImageElement29setIsPrimarySnapshottedPlugInEb +_ZN7WebCore22HistoricalVelocityData18velocityForNewDataENS_10FloatPointEdN3WTF13MonotonicTimeE +_ZN7WebCore22JSDeprecatedCSSOMValue9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore22MutableStyleProperties25ensureCSSStyleDeclarationEv +_ZN7WebCore22MutableStyleProperties6createENS_13CSSParserModeE +_ZN7WebCore22MutableStylePropertiesD1Ev +_ZN7WebCore22MutableStylePropertiesD2Ev +_ZN7WebCore22ResourceLoadStatistics13primaryDomainEN3WTF10StringViewE +_ZN7WebCore22ResourceLoadStatistics13primaryDomainERKNS_3URLE +_ZN7WebCore22ResourceLoadStatistics20areDomainsAssociatedEbRKN3WTF6StringES4_ +_ZN7WebCore22ResourceLoadStatistics20reduceTimeResolutionEN3WTF8WallTimeE +_ZN7WebCore22ResourceLoadStatistics5mergeERKS0_ +_ZN7WebCore22ResourceLoadStatistics6decodeERNS_12KeyedDecoderEj +_ZN7WebCore22RuntimeEnabledFeatures14sharedFeaturesEv +_ZN7WebCore22ScriptExecutionContext10postTaskToEN3WTF16ObjectIdentifierINS_36ScriptExecutionContextIdentifierTypeEEEONS0_4TaskE +_ZN7WebCore22ScriptExecutionContext2vmEv +_ZN7WebCore22ScriptExecutionContext47canSuspendActiveDOMObjectsForDocumentSuspensionEPN3WTF6VectorIPNS_15ActiveDOMObjectELm0ENS1_15CrashOnOverflowELm16EEE +_ZN7WebCore22ScriptExecutionContext9execStateEv +_ZN7WebCore22SkewTransformOperation5blendEPKNS_18TransformOperationEdb +_ZN7WebCore22SkewTransformOperation6createEddNS_18TransformOperation13OperationTypeE +_ZN7WebCore22SkewTransformOperationC1EddNS_18TransformOperation13OperationTypeE +_ZN7WebCore22SkewTransformOperationC2EddNS_18TransformOperation13OperationTypeE +_ZN7WebCore22SkewTransformOperationD0Ev +_ZN7WebCore22SkewTransformOperationD1Ev +_ZN7WebCore22SkewTransformOperationD2Ev +_ZN7WebCore22SocketStreamHandleImpl12platformSendEPKhmON3WTF8FunctionIFvbEEE +_ZN7WebCore22SocketStreamHandleImpl13platformCloseEv +_ZN7WebCore22SocketStreamHandleImpl21platformSendHandshakeEPKhmRKSt8optionalINS_29CookieRequestHeaderFieldProxyEEON3WTF8FunctionIFvbbEEE +_ZN7WebCore22SocketStreamHandleImplC1ERKNS_3URLERNS_24SocketStreamHandleClientE +_ZN7WebCore22SocketStreamHandleImplC2ERKNS_3URLERNS_24SocketStreamHandleClientE +_ZN7WebCore22StorageEventDispatcher26dispatchLocalStorageEventsERKN3WTF6StringES4_S4_RKNS_18SecurityOriginDataEPNS_5FrameE +_ZN7WebCore22StorageEventDispatcher28dispatchSessionStorageEventsERKN3WTF6StringES4_S4_RKNS_18SecurityOriginDataEPNS_5FrameE +_ZN7WebCore22StorageEventDispatcher34dispatchLocalStorageEventsToFramesERNS_9PageGroupERKN3WTF6VectorINS3_6RefPtrINS_5FrameENS3_13DumbPtrTraitsIS6_EEEELm0ENS3_15CrashOnOverflowELm16EEERKNS3_6StringESG_SG_SG_RKNS_18SecurityOriginDataE +_ZN7WebCore22StorageEventDispatcher34dispatchLocalStorageEventsToFramesERNS_9PageGroupERKN3WTF6VectorINS3_6RefPtrINS_5FrameENS3_13DumbPtrTraitsIS6_EEEELm0ENS3_15CrashOnOverflowELm16ENS3_10FastMallocEEERKNS3_6StringESH_SH_SH_RKNS_18SecurityOriginDataE +_ZN7WebCore22StorageEventDispatcher36dispatchSessionStorageEventsToFramesERNS_4PageERKN3WTF6VectorINS3_6RefPtrINS_5FrameENS3_13DumbPtrTraitsIS6_EEEELm0ENS3_15CrashOnOverflowELm16EEERKNS3_6StringESG_SG_SG_RKNS_18SecurityOriginDataE +_ZN7WebCore22StorageEventDispatcher36dispatchSessionStorageEventsToFramesERNS_4PageERKN3WTF6VectorINS3_6RefPtrINS_5FrameENS3_13DumbPtrTraitsIS6_EEEELm0ENS3_15CrashOnOverflowELm16ENS3_10FastMallocEEERKNS3_6StringESH_SH_SH_RKNS_18SecurityOriginDataE +_ZN7WebCore22TextureMapperAnimationC1ERKN3WTF6StringERKNS_17KeyframeValueListERKNS_9FloatSizeERKNS_9AnimationEbNS1_13MonotonicTimeENS1_7SecondsENS0_14AnimationStateE +_ZN7WebCore22TextureMapperAnimationC1ERKS0_ +_ZN7WebCore22TextureMapperAnimationC2ERKN3WTF6StringERKNS_17KeyframeValueListERKNS_9FloatSizeERKNS_9AnimationEbNS1_13MonotonicTimeENS1_7SecondsENS0_14AnimationStateE +_ZN7WebCore22TextureMapperAnimationC2ERKS0_ +_ZN7WebCore22WorkerScriptController10initScriptEv +_ZN7WebCore22colorWithOverrideAlphaEjf +_ZN7WebCore22contextMenuItemTagBoldEv +_ZN7WebCore22counterValueForElementEPNS_7ElementE +_ZN7WebCore22createDragImageForNodeERNS_5FrameERNS_4NodeE +_ZN7WebCore22createFragmentFromTextERKNS_11SimpleRangeERKN3WTF6StringE +_ZN7WebCore22createFragmentFromTextERNS_5RangeERKN3WTF6StringE +_ZN7WebCore22externalRepresentationEPNS_5FrameEN3WTF9OptionSetINS_16RenderAsTextFlagEEE +_ZN7WebCore22externalRepresentationEPNS_5FrameEj +_ZN7WebCore22externalRepresentationEPNS_7ElementEN3WTF9OptionSetINS_16RenderAsTextFlagEEE +_ZN7WebCore22externalRepresentationEPNS_7ElementEj +_ZN7WebCore22identifierToByteStringERN3JSC14JSGlobalObjectERKNS0_10IdentifierE +_ZN7WebCore22identifierToByteStringERN3JSC9ExecStateERKNS0_10IdentifierE +_ZN7WebCore22makeRangeSelectingNodeERNS_4NodeE +_ZN7WebCore22multipleFileUploadTextEj +_ZN7WebCore22parseVPCodecParametersEN3WTF10StringViewE +_ZN7WebCore22protocolIsInHTTPFamilyERKN3WTF6StringE +_ZN7WebCore22startOfEditableContentERKNS_15VisiblePositionE +_ZN7WebCore22strictCSSParserContextEv +_ZN7WebCore22throwArgumentTypeErrorERN3JSC14JSGlobalObjectERNS0_10ThrowScopeEjPKcS6_S6_S6_ +_ZN7WebCore22throwArgumentTypeErrorERN3JSC9ExecStateERNS0_10ThrowScopeEjPKcS6_S6_S6_ +_ZN7WebCore22throwSequenceTypeErrorERN3JSC14JSGlobalObjectERNS0_10ThrowScopeE +_ZN7WebCore22throwSequenceTypeErrorERN3JSC9ExecStateERNS0_10ThrowScopeE +_ZN7WebCore23ApplicationCacheStorage14setMaximumSizeEl +_ZN7WebCore23ApplicationCacheStorage15deleteAllCachesEv +_ZN7WebCore23ApplicationCacheStorage16deleteAllEntriesEv +_ZN7WebCore23ApplicationCacheStorage16originsWithCacheEv +_ZN7WebCore23ApplicationCacheStorage18diskUsageForOriginERKNS_14SecurityOriginE +_ZN7WebCore23ApplicationCacheStorage18vacuumDatabaseFileEv +_ZN7WebCore23ApplicationCacheStorage20deleteCacheForOriginERKNS_14SecurityOriginE +_ZN7WebCore23ApplicationCacheStorage21setDefaultOriginQuotaEl +_ZN7WebCore23ApplicationCacheStorage23calculateQuotaForOriginERKNS_14SecurityOriginERl +_ZN7WebCore23ApplicationCacheStorage23calculateUsageForOriginEPKNS_14SecurityOriginERl +_ZN7WebCore23ApplicationCacheStorage26storeUpdatedQuotaForOriginEPKNS_14SecurityOriginEl +_ZN7WebCore23ApplicationCacheStorage5emptyEv +_ZN7WebCore23ApplicationCacheStorageC1ERKN3WTF6StringES4_ +_ZN7WebCore23ApplicationCacheStorageC2ERKN3WTF6StringES4_ +_ZN7WebCore23AuthenticationChallenge15platformCompareERKS0_S2_ +_ZN7WebCore23AuthenticationChallengeC1ERKNS_15ProtectionSpaceERKNS_10CredentialEjRKNS_16ResourceResponseERKNS_13ResourceErrorE +_ZN7WebCore23AuthenticationChallengeC1ERKS0_ +_ZN7WebCore23AuthenticationChallengeC1Ev +_ZN7WebCore23AuthenticationChallengeC2ERKNS_15ProtectionSpaceERKNS_10CredentialEjRKNS_16ResourceResponseERKNS_13ResourceErrorE +_ZN7WebCore23AuthenticationChallengeC2ERKS0_ +_ZN7WebCore23AuthenticationChallengeC2Ev +_ZN7WebCore23AuthenticationChallengeD1Ev +_ZN7WebCore23AuthenticationChallengeD2Ev +_ZN7WebCore23AuthenticationChallengeaSERKS0_ +_ZN7WebCore23CoordinatedBackingStore10createTileEjf +_ZN7WebCore23CoordinatedBackingStore10drawBorderERNS_13TextureMapperERKNS_5ColorEfRKNS_9FloatRectERKNS_20TransformationMatrixE +_ZN7WebCore23CoordinatedBackingStore10removeTileEj +_ZN7WebCore23CoordinatedBackingStore10updateTileEjRKNS_7IntRectES3_ON3WTF6RefPtrIN7Nicosia6BufferENS4_13DumbPtrTraitsIS7_EEEERKNS_8IntPointE +_ZN7WebCore23CoordinatedBackingStore14removeAllTilesEv +_ZN7WebCore23CoordinatedBackingStore18drawRepaintCounterERNS_13TextureMapperEiRKNS_5ColorERKNS_9FloatRectERKNS_20TransformationMatrixE +_ZN7WebCore23CoordinatedBackingStore20commitTileOperationsERNS_13TextureMapperE +_ZN7WebCore23CoordinatedBackingStore20paintToTextureMapperERNS_13TextureMapperERKNS_9FloatRectERKNS_20TransformationMatrixEf +_ZN7WebCore23CoordinatedBackingStore24adjustedTransformForRectERKNS_9FloatRectE +_ZN7WebCore23CoordinatedBackingStore25paintTilesToTextureMapperERN3WTF6VectorIPNS_17TextureMapperTileELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEERNS_13TextureMapperERKNS_20TransformationMatrixEfRKNS_9FloatRectE +_ZN7WebCore23CoordinatedBackingStore6createEv +_ZN7WebCore23CoordinatedBackingStore7setSizeERKNS_9FloatSizeE +_ZN7WebCore23CoordinatedBackingStoreC1Ev +_ZN7WebCore23CoordinatedBackingStoreC2Ev +_ZN7WebCore23CoordinatedBackingStoreD0Ev +_ZN7WebCore23CoordinatedBackingStoreD1Ev +_ZN7WebCore23CoordinatedBackingStoreD2Ev +_ZN7WebCore23CoordinatedImageBacking10removeHostERNS0_4HostE +_ZN7WebCore23CoordinatedImageBacking23clearContentsTimerFiredEv +_ZN7WebCore23CoordinatedImageBacking28getCoordinatedImageBackingIDERNS_5ImageE +_ZN7WebCore23CoordinatedImageBacking6createERNS0_6ClientEON3WTF3RefINS_5ImageENS3_13DumbPtrTraitsIS5_EEEE +_ZN7WebCore23CoordinatedImageBacking6updateEv +_ZN7WebCore23CoordinatedImageBacking7addHostERNS0_4HostE +_ZN7WebCore23CoordinatedImageBacking9markDirtyEv +_ZN7WebCore23CoordinatedImageBackingC1ERNS0_6ClientEON3WTF3RefINS_5ImageENS3_13DumbPtrTraitsIS5_EEEE +_ZN7WebCore23CoordinatedImageBackingC2ERNS0_6ClientEON3WTF3RefINS_5ImageENS3_13DumbPtrTraitsIS5_EEEE +_ZN7WebCore23CoordinatedImageBackingD0Ev +_ZN7WebCore23CoordinatedImageBackingD1Ev +_ZN7WebCore23CoordinatedImageBackingD2Ev +_ZN7WebCore23DeferredStylePropertiesD1Ev +_ZN7WebCore23DeferredStylePropertiesD2Ev +_ZN7WebCore23HTMLTableSectionElement4rowsEv +_ZN7WebCore23HTMLTableSectionElement9deleteRowEi +_ZN7WebCore23HTMLTableSectionElement9insertRowEi +_ZN7WebCore23ISOSchemeInformationBox11boxTypeNameEv +_ZN7WebCore23ISOSchemeInformationBox5parseERN3JSC8DataViewERj +_ZN7WebCore23ISOSchemeInformationBoxC1Ev +_ZN7WebCore23ISOSchemeInformationBoxC2Ev +_ZN7WebCore23ISOSchemeInformationBoxD0Ev +_ZN7WebCore23ISOSchemeInformationBoxD1Ev +_ZN7WebCore23ISOSchemeInformationBoxD2Ev +_ZN7WebCore23JSHTMLOptionsCollection9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore23MediaQueryParserContextC1ERKNS_8DocumentE +_ZN7WebCore23MediaQueryParserContextC2ERKNS_8DocumentE +_ZN7WebCore23ScaleTransformOperation5blendEPKNS_18TransformOperationEdb +_ZN7WebCore23ScaleTransformOperation6createEddNS_18TransformOperation13OperationTypeE +_ZN7WebCore23ScaleTransformOperation6createEdddNS_18TransformOperation13OperationTypeE +_ZN7WebCore23ScaleTransformOperationC1EdddNS_18TransformOperation13OperationTypeE +_ZN7WebCore23ScaleTransformOperationC2EdddNS_18TransformOperation13OperationTypeE +_ZN7WebCore23ScaleTransformOperationD0Ev +_ZN7WebCore23ScaleTransformOperationD1Ev +_ZN7WebCore23ScaleTransformOperationD2Ev +_ZN7WebCore23ScrollingStateFixedNode17updateConstraintsERKNS_32FixedPositionViewportConstraintsE +_ZN7WebCore23SynchronousLoaderClient24platformBadResponseErrorEv +_ZN7WebCore23TextureMapperFPSCounter19updateFPSAndDisplayERNS_13TextureMapperERKNS_10FloatPointERKNS_20TransformationMatrixE +_ZN7WebCore23TextureMapperFPSCounterC1Ev +_ZN7WebCore23TextureMapperFPSCounterC2Ev +_ZN7WebCore23atBoundaryOfGranularityERKNS_15VisiblePositionENS_15TextGranularityENS_18SelectionDirectionE +_ZN7WebCore23commonInclusiveAncestorERKNS_11SimpleRangeE +_ZN7WebCore23commonInclusiveAncestorERNS_4NodeES1_ +_ZN7WebCore23computeSharedStringHashEPKDsj +_ZN7WebCore23computeSharedStringHashERKN3WTF6StringE +_ZN7WebCore23createDragImageForRangeERNS_5FrameERKNS_11SimpleRangeEb +_ZN7WebCore23createDragImageForRangeERNS_5FrameERNS_5RangeEb +_ZN7WebCore23createEmptyEditorClientEv +_ZN7WebCore23getHostnamesWithCookiesERKNS_21NetworkStorageSessionERN3WTF7HashSetINS3_6StringENS3_10StringHashENS3_10HashTraitsIS5_EEEE +_ZN7WebCore23indexForVisiblePositionERKNS_15VisiblePositionERN3WTF6RefPtrINS_13ContainerNodeENS3_13DumbPtrTraitsIS5_EEEE +_ZN7WebCore23standardUserAgentForURLERKN3WTF3URLE +_ZN7WebCore23standardUserAgentForURLERKNS_3URLE +_ZN7WebCore23throwNonFiniteTypeErrorERN3JSC14JSGlobalObjectERNS0_10ThrowScopeE +_ZN7WebCore23throwNonFiniteTypeErrorERN3JSC9ExecStateERNS0_10ThrowScopeE +_ZN7WebCore23visiblePositionForIndexEiPNS_13ContainerNodeE +_ZN7WebCore23wrapSerializedCryptoKeyERKN3WTF6VectorIhLm0ENS0_15CrashOnOverflowELm16ENS0_10FastMallocEEES6_RS4_ +_ZN7WebCore24CachedResourceHandleBase11setResourceEPNS_14CachedResourceE +_ZN7WebCore24CachedResourceHandleBaseC1EPNS_14CachedResourceE +_ZN7WebCore24CachedResourceHandleBaseC1ERKS0_ +_ZN7WebCore24CachedResourceHandleBaseC1Ev +_ZN7WebCore24CachedResourceHandleBaseC2EPNS_14CachedResourceE +_ZN7WebCore24CachedResourceHandleBaseC2ERKS0_ +_ZN7WebCore24CachedResourceHandleBaseC2Ev +_ZN7WebCore24CachedResourceHandleBaseD1Ev +_ZN7WebCore24CachedResourceHandleBaseD2Ev +_ZN7WebCore24CachedResourceHandleBaseaSERKS0_ +_ZN7WebCore24CoordinatedGraphicsLayer10createTileEjf +_ZN7WebCore24CoordinatedGraphicsLayer10removeTileEj +_ZN7WebCore24CoordinatedGraphicsLayer10setFiltersERKNS_16FilterOperationsE +_ZN7WebCore24CoordinatedGraphicsLayer10setOpacityEf +_ZN7WebCore24CoordinatedGraphicsLayer10updateTileEjRKNS_17SurfaceUpdateInfoERKNS_7IntRectE +_ZN7WebCore24CoordinatedGraphicsLayer11setChildrenEON3WTF6VectorINS1_3RefINS_13GraphicsLayerENS1_13DumbPtrTraitsIS4_EEEELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN7WebCore24CoordinatedGraphicsLayer11setChildrenERKN3WTF6VectorIPNS_13GraphicsLayerELm0ENS1_15CrashOnOverflowELm16EEE +_ZN7WebCore24CoordinatedGraphicsLayer11setPositionERKNS_10FloatPointE +_ZN7WebCore24CoordinatedGraphicsLayer11syncFiltersEv +_ZN7WebCore24CoordinatedGraphicsLayer12addAnimationERKNS_17KeyframeValueListERKNS_9FloatSizeEPKNS_9AnimationERKN3WTF6StringEd +_ZN7WebCore24CoordinatedGraphicsLayer12replaceChildEPNS_13GraphicsLayerEON3WTF3RefIS1_NS3_13DumbPtrTraitsIS1_EEEE +_ZN7WebCore24CoordinatedGraphicsLayer12replaceChildEPNS_13GraphicsLayerES2_ +_ZN7WebCore24CoordinatedGraphicsLayer12setMaskLayerEON3WTF6RefPtrINS_13GraphicsLayerENS1_13DumbPtrTraitsIS3_EEEE +_ZN7WebCore24CoordinatedGraphicsLayer12setMaskLayerEPNS_13GraphicsLayerE +_ZN7WebCore24CoordinatedGraphicsLayer12setTransformERKNS_20TransformationMatrixE +_ZN7WebCore24CoordinatedGraphicsLayer12syncChildrenEv +_ZN7WebCore24CoordinatedGraphicsLayer12syncPositionERKNS_10FloatPointE +_ZN7WebCore24CoordinatedGraphicsLayer13addChildAboveEON3WTF3RefINS_13GraphicsLayerENS1_13DumbPtrTraitsIS3_EEEEPS3_ +_ZN7WebCore24CoordinatedGraphicsLayer13addChildAboveEPNS_13GraphicsLayerES2_ +_ZN7WebCore24CoordinatedGraphicsLayer13addChildBelowEON3WTF3RefINS_13GraphicsLayerENS1_13DumbPtrTraitsIS3_EEEEPS3_ +_ZN7WebCore24CoordinatedGraphicsLayer13addChildBelowEPNS_13GraphicsLayerES2_ +_ZN7WebCore24CoordinatedGraphicsLayer14pauseAnimationERKN3WTF6StringEd +_ZN7WebCore24CoordinatedGraphicsLayer14setAnchorPointERKNS_12FloatPoint3DE +_ZN7WebCore24CoordinatedGraphicsLayer14setCoordinatorEPNS_30CoordinatedGraphicsLayerClientE +_ZN7WebCore24CoordinatedGraphicsLayer14setDebugBorderERKNS_5ColorEf +_ZN7WebCore24CoordinatedGraphicsLayer14setPreserves3DEb +_ZN7WebCore24CoordinatedGraphicsLayer14syncAnimationsEv +_ZN7WebCore24CoordinatedGraphicsLayer14syncLayerStateEv +_ZN7WebCore24CoordinatedGraphicsLayer15addChildAtIndexEON3WTF3RefINS_13GraphicsLayerENS1_13DumbPtrTraitsIS3_EEEEi +_ZN7WebCore24CoordinatedGraphicsLayer15addChildAtIndexEPNS_13GraphicsLayerEi +_ZN7WebCore24CoordinatedGraphicsLayer15removeAnimationERKN3WTF6StringE +_ZN7WebCore24CoordinatedGraphicsLayer15resetLayerStateEv +_ZN7WebCore24CoordinatedGraphicsLayer15setBoundsOriginERKNS_10FloatPointE +_ZN7WebCore24CoordinatedGraphicsLayer15setContentsRectERKNS_9FloatRectE +_ZN7WebCore24CoordinatedGraphicsLayer15setDrawsContentEb +_ZN7WebCore24CoordinatedGraphicsLayer15setNeedsDisplayEv +_ZN7WebCore24CoordinatedGraphicsLayer16didChangeFiltersEv +_ZN7WebCore24CoordinatedGraphicsLayer16removeFromParentEv +_ZN7WebCore24CoordinatedGraphicsLayer16resumeAnimationsEv +_ZN7WebCore24CoordinatedGraphicsLayer16setMasksToBoundsEb +_ZN7WebCore24CoordinatedGraphicsLayer16syncBoundsOriginERKNS_10FloatPointE +_ZN7WebCore24CoordinatedGraphicsLayer16syncImageBackingEv +_ZN7WebCore24CoordinatedGraphicsLayer17didChangeChildrenEv +_ZN7WebCore24CoordinatedGraphicsLayer17didChangeGeometryENS0_17FlushNotificationE +_ZN7WebCore24CoordinatedGraphicsLayer17didChangeGeometryEv +_ZN7WebCore24CoordinatedGraphicsLayer17setContentsOpaqueEb +_ZN7WebCore24CoordinatedGraphicsLayer17suspendAnimationsEN3WTF13MonotonicTimeE +_ZN7WebCore24CoordinatedGraphicsLayer17syncPlatformLayerEv +_ZN7WebCore24CoordinatedGraphicsLayer18createBackingStoreEv +_ZN7WebCore24CoordinatedGraphicsLayer18purgeBackingStoresEv +_ZN7WebCore24CoordinatedGraphicsLayer18setBackdropFiltersERKNS_16FilterOperationsE +_ZN7WebCore24CoordinatedGraphicsLayer18setContentsToImageEPNS_5ImageE +_ZN7WebCore24CoordinatedGraphicsLayer18setContentsVisibleEb +_ZN7WebCore24CoordinatedGraphicsLayer18setFixedToViewportEb +_ZN7WebCore24CoordinatedGraphicsLayer18setShowDebugBorderEb +_ZN7WebCore24CoordinatedGraphicsLayer19adjustContentsScaleEv +_ZN7WebCore24CoordinatedGraphicsLayer19didChangeAnimationsEv +_ZN7WebCore24CoordinatedGraphicsLayer19didChangeLayerStateEv +_ZN7WebCore24CoordinatedGraphicsLayer19imageBackingVisibleEv +_ZN7WebCore24CoordinatedGraphicsLayer19notifyFlushRequiredEv +_ZN7WebCore24CoordinatedGraphicsLayer19setContentsTileSizeERKNS_9FloatSizeE +_ZN7WebCore24CoordinatedGraphicsLayer19updatePlatformLayerEv +_ZN7WebCore24CoordinatedGraphicsLayer20didUpdateTileBuffersEv +_ZN7WebCore24CoordinatedGraphicsLayer20setChildrenTransformERKNS_20TransformationMatrixE +_ZN7WebCore24CoordinatedGraphicsLayer20setContentsTilePhaseERKNS_9FloatSizeE +_ZN7WebCore24CoordinatedGraphicsLayer20setReplicatedByLayerEON3WTF6RefPtrINS_13GraphicsLayerENS1_13DumbPtrTraitsIS3_EEEE +_ZN7WebCore24CoordinatedGraphicsLayer20setReplicatedByLayerEPNS_13GraphicsLayerE +_ZN7WebCore24CoordinatedGraphicsLayer20updateContentBuffersEv +_ZN7WebCore24CoordinatedGraphicsLayer21computePixelAlignmentERNS_10FloatPointERNS_9FloatSizeERNS_12FloatPoint3DES4_ +_ZN7WebCore24CoordinatedGraphicsLayer21didChangeImageBackingEv +_ZN7WebCore24CoordinatedGraphicsLayer21flushCompositingStateERKNS_9FloatRectE +_ZN7WebCore24CoordinatedGraphicsLayer21invalidateCoordinatorEv +_ZN7WebCore24CoordinatedGraphicsLayer21setBackfaceVisibilityEb +_ZN7WebCore24CoordinatedGraphicsLayer21setNeedsDisplayInRectERKNS_9FloatRectENS_13GraphicsLayer17ShouldClipToLayerE +_ZN7WebCore24CoordinatedGraphicsLayer21setShowRepaintCounterEb +_ZN7WebCore24CoordinatedGraphicsLayer22effectiveContentsScaleEv +_ZN7WebCore24CoordinatedGraphicsLayer22setBackdropFiltersRectERKNS_16FloatRoundedRectE +_ZN7WebCore24CoordinatedGraphicsLayer22transformedVisibleRectEv +_ZN7WebCore24CoordinatedGraphicsLayer23setContentsClippingRectERKNS_16FloatRoundedRectE +_ZN7WebCore24CoordinatedGraphicsLayer23setContentsNeedsDisplayEv +_ZN7WebCore24CoordinatedGraphicsLayer23setContentsToSolidColorERKNS_5ColorE +_ZN7WebCore24CoordinatedGraphicsLayer24didChangeBackdropFiltersEv +_ZN7WebCore24CoordinatedGraphicsLayer25requestBackingStoreUpdateEv +_ZN7WebCore24CoordinatedGraphicsLayer26animationStartedTimerFiredEv +_ZN7WebCore24CoordinatedGraphicsLayer26setContentsToPlatformLayerEPN7Nicosia13PlatformLayerENS_13GraphicsLayer20ContentsLayerPurposeE +_ZN7WebCore24CoordinatedGraphicsLayer26setShouldUpdateVisibleRectEv +_ZN7WebCore24CoordinatedGraphicsLayer27releaseImageBackingIfNeededEv +_ZN7WebCore24CoordinatedGraphicsLayer28didChangeBackdropFiltersRectEv +_ZN7WebCore24CoordinatedGraphicsLayer29computePositionRelativeToBaseEv +_ZN7WebCore24CoordinatedGraphicsLayer29computeTransformedVisibleRectEv +_ZN7WebCore24CoordinatedGraphicsLayer29setNeedsVisibleRectAdjustmentEv +_ZN7WebCore24CoordinatedGraphicsLayer30deviceOrPageScaleFactorChangedEv +_ZN7WebCore24CoordinatedGraphicsLayer36requestPendingTileCreationTimerFiredEv +_ZN7WebCore24CoordinatedGraphicsLayer37flushCompositingStateForThisLayerOnlyEv +_ZN7WebCore24CoordinatedGraphicsLayer37selfOrAncestorHaveNonAffineTransformsEv +_ZN7WebCore24CoordinatedGraphicsLayer37setVisibleContentRectTrajectoryVectorERKNS_10FloatPointE +_ZN7WebCore24CoordinatedGraphicsLayer38updateContentBuffersIncludingSubLayersEv +_ZN7WebCore24CoordinatedGraphicsLayer39tiledBackingStoreHasPendingTileCreationEv +_ZN7WebCore24CoordinatedGraphicsLayer40setCoordinatorIncludingSubLayersIfNeededEPNS_30CoordinatedGraphicsLayerClientE +_ZN7WebCore24CoordinatedGraphicsLayer41syncPendingStateChangesIncludingSubLayersEv +_ZN7WebCore24CoordinatedGraphicsLayer42findFirstDescendantWithContentsRecursivelyEv +_ZN7WebCore24CoordinatedGraphicsLayer7setSizeERKNS_9FloatSizeE +_ZN7WebCore24CoordinatedGraphicsLayer8addChildEON3WTF3RefINS_13GraphicsLayerENS1_13DumbPtrTraitsIS3_EEEE +_ZN7WebCore24CoordinatedGraphicsLayer8addChildEPNS_13GraphicsLayerE +_ZN7WebCore24CoordinatedGraphicsLayerC1ENS_13GraphicsLayer4TypeERNS_19GraphicsLayerClientE +_ZN7WebCore24CoordinatedGraphicsLayerC2ENS_13GraphicsLayer4TypeERNS_19GraphicsLayerClientE +_ZN7WebCore24CoordinatedGraphicsLayerD0Ev +_ZN7WebCore24CoordinatedGraphicsLayerD1Ev +_ZN7WebCore24CoordinatedGraphicsLayerD2Ev +_ZN7WebCore24DeprecatedGlobalSettings19gManageAudioSessionE +_ZN7WebCore24DeprecatedGlobalSettings21mockScrollbarsEnabledEv +_ZN7WebCore24DeprecatedGlobalSettings24setMockScrollbarsEnabledEb +_ZN7WebCore24DeprecatedGlobalSettings24setUsesOverlayScrollbarsEb +_ZN7WebCore24DeprecatedGlobalSettings25setUsesMockScrollAnimatorEb +_ZN7WebCore24DeprecatedGlobalSettings26setAllowsAnySSLCertificateEb +_ZN7WebCore24DeprecatedGlobalSettings32setResourceLoadStatisticsEnabledEb +_ZN7WebCore24DeprecatedGlobalSettings37gResourceLoadStatisticsEnabledEnabledE +_ZN7WebCore24DeprecatedGlobalSettings38setLowPowerVideoAudioBufferSizeEnabledEb +_ZN7WebCore24DeprecatedGlobalSettings45setShouldRespectPriorityInCSSAttributeSettersEb +_ZN7WebCore24DocumentMarkerController10markersForEPNS_4NodeEN3WTF9OptionSetINS_14DocumentMarker10MarkerTypeEEE +_ZN7WebCore24DocumentMarkerController10markersForERNS_4NodeEN3WTF9OptionSetINS_14DocumentMarker10MarkerTypeEEE +_ZN7WebCore24DocumentMarkerController13filterMarkersERKNS_11SimpleRangeERKN3WTF8FunctionIFbRKNS_14DocumentMarkerEEEENS4_9OptionSetINS6_10MarkerTypeEEENS_32RemovePartiallyOverlappingMarkerE +_ZN7WebCore24DocumentMarkerController13removeMarkersEN3WTF9OptionSetINS_14DocumentMarker10MarkerTypeEEE +_ZN7WebCore24DocumentMarkerController13removeMarkersERKNS_11SimpleRangeEN3WTF9OptionSetINS_14DocumentMarker10MarkerTypeEEENS_32RemovePartiallyOverlappingMarkerE +_ZN7WebCore24DocumentMarkerController14markersInRangeERKNS_11SimpleRangeEN3WTF9OptionSetINS_14DocumentMarker10MarkerTypeEEE +_ZN7WebCore24DocumentMarkerController14markersInRangeERNS_5RangeEN3WTF9OptionSetINS_14DocumentMarker10MarkerTypeEEE +_ZN7WebCore24DocumentMarkerController18addTextMatchMarkerEPKNS_5RangeEb +_ZN7WebCore24DocumentMarkerController23renderedRectsForMarkersENS_14DocumentMarker10MarkerTypeE +_ZN7WebCore24DocumentMarkerController38updateRectsForInvalidatedMarkersOfTypeENS_14DocumentMarker10MarkerTypeE +_ZN7WebCore24DocumentMarkerController9addMarkerERKNS_11SimpleRangeENS_14DocumentMarker10MarkerTypeERKN3WTF7VariantIJNS6_6StringENS4_13DictationDataENS6_6RefPtrINS_4NodeENS6_13DumbPtrTraitsISB_EEEEEEE +_ZN7WebCore24DocumentParserYieldTokenC1ERNS_8DocumentE +_ZN7WebCore24DocumentParserYieldTokenC2ERNS_8DocumentE +_ZN7WebCore24DocumentParserYieldTokenD1Ev +_ZN7WebCore24DocumentParserYieldTokenD2Ev +_ZN7WebCore24FrameDestructionObserver12observeFrameEPNS_5FrameE +_ZN7WebCore24FrameDestructionObserver14frameDestroyedEv +_ZN7WebCore24FrameDestructionObserver14willDetachPageEv +_ZN7WebCore24FrameDestructionObserverC1EPNS_5FrameE +_ZN7WebCore24FrameDestructionObserverC2EPNS_5FrameE +_ZN7WebCore24FrameDestructionObserverD0Ev +_ZN7WebCore24FrameDestructionObserverD1Ev +_ZN7WebCore24FrameDestructionObserverD2Ev +_ZN7WebCore24GraphicsContextImplCairo13createFactoryEP6_cairo +_ZN7WebCore24GraphicsContextImplCairo13createFactoryERNS_20PlatformContextCairoE +_ZN7WebCore24ImmutableStylePropertiesD1Ev +_ZN7WebCore24ImmutableStylePropertiesD2Ev +_ZN7WebCore24InspectorInstrumentation17s_frontendCounterE +_ZN7WebCore24JSDeprecatedCSSOMCounter9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore24MatrixTransformOperation5blendEPKNS_18TransformOperationEdb +_ZN7WebCore24MatrixTransformOperation6createERKNS_20TransformationMatrixE +_ZN7WebCore24MatrixTransformOperation6createEdddddd +_ZN7WebCore24MatrixTransformOperationC1ERKNS_20TransformationMatrixE +_ZN7WebCore24MatrixTransformOperationC1Edddddd +_ZN7WebCore24MatrixTransformOperationC2ERKNS_20TransformationMatrixE +_ZN7WebCore24MatrixTransformOperationC2Edddddd +_ZN7WebCore24MatrixTransformOperationD0Ev +_ZN7WebCore24MatrixTransformOperationD1Ev +_ZN7WebCore24MatrixTransformOperationD2Ev +_ZN7WebCore24PerformanceLoggingClient35synchronousScrollingReasonsAsStringEN3WTF9OptionSetINS_26SynchronousScrollingReasonEEE +_ZN7WebCore24PerformanceLoggingClient35synchronousScrollingReasonsAsStringEj +_ZN7WebCore24PointerCaptureController13cancelPointerEiRKNS_8IntPointE +_ZN7WebCore24PointerCaptureController29touchWithIdentifierWasRemovedEi +_ZN7WebCore24RemoteMediaPlayerSupport31setRegisterRemotePlayerCallbackEON3WTF8FunctionIFvPFvOSt10unique_ptrINS_18MediaPlayerFactoryESt14default_deleteIS4_EEENS_16MediaPlayerEnums21MediaEngineIdentifierEEEE +_ZN7WebCore24RotateTransformOperation5blendEPKNS_18TransformOperationEdb +_ZN7WebCore24RotateTransformOperation6createEdNS_18TransformOperation13OperationTypeE +_ZN7WebCore24RotateTransformOperation6createEddddNS_18TransformOperation13OperationTypeE +_ZN7WebCore24RotateTransformOperationC1EddddNS_18TransformOperation13OperationTypeE +_ZN7WebCore24RotateTransformOperationC2EddddNS_18TransformOperation13OperationTypeE +_ZN7WebCore24RotateTransformOperationD0Ev +_ZN7WebCore24RotateTransformOperationD1Ev +_ZN7WebCore24RotateTransformOperationD2Ev +_ZN7WebCore24ScrollingStateStickyNode17updateConstraintsERKNS_33StickyPositionViewportConstraintsE +_ZN7WebCore24StorageNamespaceProvider21localStorageNamespaceEN3PAL9SessionIDE +_ZN7WebCore24StorageNamespaceProvider22setSessionIDForTestingERKN3PAL9SessionIDE +_ZN7WebCore24StorageNamespaceProviderC2Ev +_ZN7WebCore24StorageNamespaceProviderD0Ev +_ZN7WebCore24StorageNamespaceProviderD1Ev +_ZN7WebCore24StorageNamespaceProviderD2Ev +_ZN7WebCore24TemporarySelectionChangeC1ERNS_8DocumentEN3WTF8OptionalINS_16VisibleSelectionEEENS3_9OptionSetINS_24TemporarySelectionOptionEEE +_ZN7WebCore24TemporarySelectionChangeC2ERNS_8DocumentEN3WTF8OptionalINS_16VisibleSelectionEEENS3_9OptionSetINS_24TemporarySelectionOptionEEE +_ZN7WebCore24TemporarySelectionChangeD1Ev +_ZN7WebCore24TemporarySelectionChangeD2Ev +_ZN7WebCore24charactersAroundPositionERKNS_15VisiblePositionERiS3_S3_ +_ZN7WebCore24contextMenuItemTagItalicEv +_ZN7WebCore24createFragmentFromMarkupERNS_8DocumentERKN3WTF6StringES5_NS_19ParserContentPolicyE +_ZN7WebCore24decodeURLEscapeSequencesEN3WTF10StringViewERKNS_12TextEncodingE +_ZN7WebCore24decodeURLEscapeSequencesERKN3WTF6StringE +_ZN7WebCore24distanceBetweenPositionsERKNS_15VisiblePositionES2_ +_ZN7WebCore24isDefaultPortForProtocolEtN3WTF10StringViewE +_ZN7WebCore24notifyHistoryItemChangedE +_ZN7WebCore24parseDoViCodecParametersERKN3WTF6StringE +_ZN7WebCore24parseHEVCCodecParametersERKN3WTF6StringE +_ZN7WebCore24parseXFrameOptionsHeaderERKN3WTF6StringE +_ZN7WebCore24passesAccessControlCheckERKNS_16ResourceResponseENS_23StoredCredentialsPolicyERKNS_14SecurityOriginEPKNS_37CrossOriginAccessControlCheckDisablerE +_ZN7WebCore24passesAccessControlCheckERKNS_16ResourceResponseENS_23StoredCredentialsPolicyERNS_14SecurityOriginERN3WTF6StringE +_ZN7WebCore24presentingApplicationPIDEv +_ZN7WebCore24previousSentencePositionERKNS_15VisiblePositionE +_ZN7WebCore24redirectChainAllowsReuseENS_24RedirectChainCacheStatusENS_28ReuseExpiredRedirectionOrNotE +_ZN7WebCore25ArchiveResourceCollection21archiveResourceForURLERKN3WTF3URLE +_ZN7WebCore25ArchiveResourceCollection21archiveResourceForURLERKNS_3URLE +_ZN7WebCore25DropShadowFilterOperation5blendEPKNS_15FilterOperationEdb +_ZN7WebCore25DropShadowFilterOperation6createERKNS_8IntPointEiRKNS_5ColorE +_ZN7WebCore25DropShadowFilterOperationC1ERKNS_8IntPointEiRKNS_5ColorE +_ZN7WebCore25DropShadowFilterOperationC2ERKNS_8IntPointEiRKNS_5ColorE +_ZN7WebCore25DropShadowFilterOperationD0Ev +_ZN7WebCore25DropShadowFilterOperationD1Ev +_ZN7WebCore25DropShadowFilterOperationD2Ev +_ZN7WebCore25JSDeprecatedCSSOMRGBColor9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore25MediaPlayerFactorySupport23callRegisterMediaEngineEPFvPFvOSt10unique_ptrINS_18MediaPlayerFactoryESt14default_deleteIS2_EEEE +_ZN7WebCore25TextureMapperBackingStore25calculateExposedTileEdgesERKNS_9FloatRectES3_ +_ZN7WebCore25WebSocketChannelInspector17didCloseWebSocketEPNS_8DocumentE +_ZN7WebCore25WebSocketChannelInspector18didCreateWebSocketEPNS_8DocumentERKN3WTF3URLE +_ZN7WebCore25WebSocketChannelInspector21didSendWebSocketFrameEPNS_8DocumentERKNS_14WebSocketFrameE +_ZN7WebCore25WebSocketChannelInspector24didReceiveWebSocketFrameEPNS_8DocumentERKNS_14WebSocketFrameE +_ZN7WebCore25WebSocketChannelInspector29didReceiveWebSocketFrameErrorEPNS_8DocumentERKN3WTF6StringE +_ZN7WebCore25WebSocketChannelInspector33willSendWebSocketHandshakeRequestEPNS_8DocumentERKNS_15ResourceRequestE +_ZN7WebCore25WebSocketChannelInspector36didReceiveWebSocketHandshakeResponseEPNS_8DocumentERKNS_16ResourceResponseE +_ZN7WebCore25WebSocketChannelInspectorC1ERNS_8DocumentE +_ZN7WebCore25WebSocketChannelInspectorC2ERNS_8DocumentE +_ZN7WebCore25computeViewportAttributesENS_17ViewportArgumentsEiiifNS_7IntSizeE +_ZN7WebCore25contextMenuItemTagOutlineEv +_ZN7WebCore25deleteCookiesForHostnamesERKNS_21NetworkStorageSessionERKN3WTF6VectorINS3_6StringELm0ENS3_15CrashOnOverflowELm16EEE +_ZN7WebCore25directionOfEnclosingBlockERKNS_8PositionE +_ZN7WebCore25encloseRectToDevicePixelsERKNS_9FloatRectEf +_ZN7WebCore25enclosingBlockFlowElementERKNS_15VisiblePositionE +_ZN7WebCore25errorDomainWebKitInternalE +_ZN7WebCore25getOutOfLineCachedWrapperEPNS_17JSDOMGlobalObjectERNS_4NodeE +_ZN7WebCore25previousParagraphPositionERKNS_15VisiblePositionEi +_ZN7WebCore25unwrapSerializedCryptoKeyERKN3WTF6VectorIhLm0ENS0_15CrashOnOverflowELm16ENS0_10FastMallocEEES6_RS4_ +_ZN7WebCore25updateRedirectChainStatusERNS_24RedirectChainCacheStatusERKNS_16ResourceResponseE +_ZN7WebCore25validatePreflightResponseERKNS_15ResourceRequestERKNS_16ResourceResponseENS_23StoredCredentialsPolicyERKNS_14SecurityOriginEPKNS_37CrossOriginAccessControlCheckDisablerE +_ZN7WebCore25validatePreflightResponseERKNS_15ResourceRequestERKNS_16ResourceResponseENS_23StoredCredentialsPolicyERNS_14SecurityOriginERN3WTF6StringE +_ZN7WebCore26ActiveDOMCallbackMicrotaskC1ERNS_14MicrotaskQueueERNS_22ScriptExecutionContextEON3WTF8FunctionIFvvEEE +_ZN7WebCore26ActiveDOMCallbackMicrotaskC2ERNS_14MicrotaskQueueERNS_22ScriptExecutionContextEON3WTF8FunctionIFvvEEE +_ZN7WebCore26ActiveDOMCallbackMicrotaskD0Ev +_ZN7WebCore26ActiveDOMCallbackMicrotaskD1Ev +_ZN7WebCore26ActiveDOMCallbackMicrotaskD2Ev +_ZN7WebCore26ContextDestructionObserver16contextDestroyedEv +_ZN7WebCore26ContextDestructionObserverC1EPNS_22ScriptExecutionContextE +_ZN7WebCore26ContextDestructionObserverC2EPNS_22ScriptExecutionContextE +_ZN7WebCore26ContextDestructionObserverD0Ev +_ZN7WebCore26ContextDestructionObserverD1Ev +_ZN7WebCore26ContextDestructionObserverD2Ev +_ZN7WebCore26CustomElementReactionStack12processQueueEPN3JSC14JSGlobalObjectE +_ZN7WebCore26CustomElementReactionStack12processQueueEv +_ZN7WebCore26CustomElementReactionStack24s_currentProcessingStackE +_ZN7WebCore26HTMLTextFormControlElement12setMaxLengthEi +_ZN7WebCore26HTMLTextFormControlElement12setRangeTextERKN3WTF6StringE +_ZN7WebCore26HTMLTextFormControlElement12setRangeTextERKN3WTF6StringEjjS4_ +_ZN7WebCore26HTMLTextFormControlElement15setSelectionEndEi +_ZN7WebCore26HTMLTextFormControlElement17setSelectionRangeEiiNS_27TextFieldSelectionDirectionENS_19SelectionRevealModeERKNS_23AXTextStateChangeIntentE +_ZN7WebCore26HTMLTextFormControlElement17setSelectionStartEi +_ZN7WebCore26HTMLTextFormControlElement21setCanShowPlaceholderEb +_ZN7WebCore26HTMLTextFormControlElement21setSelectionDirectionERKN3WTF6StringE +_ZN7WebCore26HTMLTextFormControlElement6selectENS_19SelectionRevealModeERKNS_23AXTextStateChangeIntentE +_ZN7WebCore26ISOProtectionSchemeInfoBox11boxTypeNameEv +_ZN7WebCore26ISOProtectionSchemeInfoBox5parseERN3JSC8DataViewERj +_ZN7WebCore26ISOProtectionSchemeInfoBoxC1Ev +_ZN7WebCore26ISOProtectionSchemeInfoBoxC2Ev +_ZN7WebCore26ISOProtectionSchemeInfoBoxD0Ev +_ZN7WebCore26ISOProtectionSchemeInfoBoxD1Ev +_ZN7WebCore26ISOProtectionSchemeInfoBoxD2Ev +_ZN7WebCore26IdentityTransformOperation5blendEPKNS_18TransformOperationEdb +_ZN7WebCore26IdentityTransformOperation6createEv +_ZN7WebCore26IdentityTransformOperationC1Ev +_ZN7WebCore26IdentityTransformOperationC2Ev +_ZN7WebCore26IdentityTransformOperationD0Ev +_ZN7WebCore26IdentityTransformOperationD1Ev +_ZN7WebCore26IdentityTransformOperationD2Ev +_ZN7WebCore26Matrix3DTransformOperation5blendEPKNS_18TransformOperationEdb +_ZN7WebCore26Matrix3DTransformOperation6createERKNS_20TransformationMatrixE +_ZN7WebCore26Matrix3DTransformOperationC1ERKNS_20TransformationMatrixE +_ZN7WebCore26Matrix3DTransformOperationC2ERKNS_20TransformationMatrixE +_ZN7WebCore26Matrix3DTransformOperationD0Ev +_ZN7WebCore26Matrix3DTransformOperationD1Ev +_ZN7WebCore26Matrix3DTransformOperationD2Ev +_ZN7WebCore26MessagePortChannelProvider17setSharedProviderERS0_ +_ZN7WebCore26MessagePortChannelRegistry19didCloseMessagePortERKNS_21MessagePortIdentifierE +_ZN7WebCore26MessagePortChannelRegistry22didPostMessageToRemoteEONS_23MessageWithMessagePortsERKNS_21MessagePortIdentifierE +_ZN7WebCore26MessagePortChannelRegistry22takeAllMessagesForPortERKNS_21MessagePortIdentifierEON3WTF17CompletionHandlerIFvONS4_6VectorINS_23MessageWithMessagePortsELm0ENS4_15CrashOnOverflowELm16ENS4_10FastMallocEEEONS4_8FunctionIFvvEEEEEE +_ZN7WebCore26MessagePortChannelRegistry22takeAllMessagesForPortERKNS_21MessagePortIdentifierEON3WTF8FunctionIFvONS4_6VectorINS_23MessageWithMessagePortsELm0ENS4_15CrashOnOverflowELm16EEEONS5_IFvvEEEEEE +_ZN7WebCore26MessagePortChannelRegistry24didEntangleLocalToRemoteERKNS_21MessagePortIdentifierES3_N3WTF16ObjectIdentifierINS_21ProcessIdentifierTypeEEE +_ZN7WebCore26MessagePortChannelRegistry25didDisentangleMessagePortERKNS_21MessagePortIdentifierE +_ZN7WebCore26MessagePortChannelRegistry25messagePortChannelCreatedERNS_18MessagePortChannelE +_ZN7WebCore26MessagePortChannelRegistry26checkRemotePortForActivityERKNS_21MessagePortIdentifierEON3WTF17CompletionHandlerIFvNS_26MessagePortChannelProvider11HasActivityEEEE +_ZN7WebCore26MessagePortChannelRegistry27didCreateMessagePortChannelERKNS_21MessagePortIdentifierES3_ +_ZN7WebCore26MessagePortChannelRegistry27messagePortChannelDestroyedERNS_18MessagePortChannelE +_ZN7WebCore26MessagePortChannelRegistry29existingChannelContainingPortERKNS_21MessagePortIdentifierE +_ZN7WebCore26MessagePortChannelRegistryC1EON3WTF8FunctionIFvRKNS_21MessagePortIdentifierENS1_16ObjectIdentifierINS_21ProcessIdentifierTypeEEEONS1_17CompletionHandlerIFvNS_26MessagePortChannelProvider11HasActivityEEEEEEE +_ZN7WebCore26MessagePortChannelRegistryC1ERNS_26MessagePortChannelProviderE +_ZN7WebCore26MessagePortChannelRegistryC2EON3WTF8FunctionIFvRKNS_21MessagePortIdentifierENS1_16ObjectIdentifierINS_21ProcessIdentifierTypeEEEONS1_17CompletionHandlerIFvNS_26MessagePortChannelProvider11HasActivityEEEEEEE +_ZN7WebCore26MessagePortChannelRegistryC2ERNS_26MessagePortChannelProviderE +_ZN7WebCore26MessagePortChannelRegistryD1Ev +_ZN7WebCore26MessagePortChannelRegistryD2Ev +_ZN7WebCore26NetscapePlugInStreamLoader6createERNS_5FrameERNS_32NetscapePlugInStreamLoaderClientEONS_15ResourceRequestEON3WTF17CompletionHandlerIFvONS7_6RefPtrIS0_NS7_13DumbPtrTraitsIS0_EEEEEEE +_ZN7WebCore26PresentationOrderSampleMap30findSampleWithPresentationTimeERKN3WTF9MediaTimeE +_ZN7WebCore26PresentationOrderSampleMap35findSamplesBetweenPresentationTimesERKN3WTF9MediaTimeES4_ +_ZN7WebCore26PresentationOrderSampleMap36findSampleContainingPresentationTimeERKN3WTF9MediaTimeE +_ZN7WebCore26PresentationOrderSampleMap39findSampleStartingAfterPresentationTimeERKN3WTF9MediaTimeE +_ZN7WebCore26PresentationOrderSampleMap39reverseFindSampleBeforePresentationTimeERKN3WTF9MediaTimeE +_ZN7WebCore26PresentationOrderSampleMap42findSamplesBetweenPresentationTimesFromEndERKN3WTF9MediaTimeES4_ +_ZN7WebCore26PresentationOrderSampleMap43findSampleContainingOrAfterPresentationTimeERKN3WTF9MediaTimeE +_ZN7WebCore26PresentationOrderSampleMap43findSampleStartingOnOrAfterPresentationTimeERKN3WTF9MediaTimeE +_ZN7WebCore26PresentationOrderSampleMap43reverseFindSampleContainingPresentationTimeERKN3WTF9MediaTimeE +_ZN7WebCore26TextManipulationController20completeManipulationERKN3WTF6VectorINS0_16ManipulationItemELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN7WebCore26TextManipulationController24startObservingParagraphsEON3WTF8FunctionIFvRNS_8DocumentERKNS1_6VectorINS0_16ManipulationItemELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEEEEEONS5_INS0_13ExclusionRuleELm0ES7_Lm16ES8_EE +_ZN7WebCore26ThreadableWebSocketChannel23webSocketConnectRequestERNS_8DocumentERKN3WTF3URLE +_ZN7WebCore26UserTypingGestureIndicator27processingUserTypingGestureEv +_ZN7WebCore26UserTypingGestureIndicator28focusedElementAtGestureStartEv +_ZN7WebCore26UserTypingGestureIndicatorC1ERNS_5FrameE +_ZN7WebCore26UserTypingGestureIndicatorC2ERNS_5FrameE +_ZN7WebCore26UserTypingGestureIndicatorD1Ev +_ZN7WebCore26UserTypingGestureIndicatorD2Ev +_ZN7WebCore26contextMenuItemTagFontMenuEv +_ZN7WebCore26contextMenuItemTagOpenLinkEv +_ZN7WebCore26makeBoundaryPointAfterNodeERNS_4NodeE +_ZN7WebCore26propagateExceptionSlowPathERN3JSC14JSGlobalObjectERNS0_10ThrowScopeEONS_9ExceptionE +_ZN7WebCore26propagateExceptionSlowPathERN3JSC9ExecStateERNS0_10ThrowScopeEONS_9ExceptionE +_ZN7WebCore26provideDeviceOrientationToEPNS_4PageEPNS_23DeviceOrientationClientE +_ZN7WebCore26provideDeviceOrientationToERNS_4PageERNS_23DeviceOrientationClientE +_ZN7WebCore26stopObservingCookieChangesERKNS_21NetworkStorageSessionE +_ZN7WebCore27AuthenticationChallengeBase7compareERKNS_23AuthenticationChallengeES3_ +_ZN7WebCore27AuthenticationChallengeBase7nullifyEv +_ZN7WebCore27AuthenticationChallengeBaseC1ERKNS_15ProtectionSpaceERKNS_10CredentialEjRKNS_16ResourceResponseERKNS_13ResourceErrorE +_ZN7WebCore27AuthenticationChallengeBaseC1Ev +_ZN7WebCore27AuthenticationChallengeBaseC2ERKNS_15ProtectionSpaceERKNS_10CredentialEjRKNS_16ResourceResponseERKNS_13ResourceErrorE +_ZN7WebCore27AuthenticationChallengeBaseC2Ev +_ZN7WebCore27CSSComputedStyleDeclaration3refEv +_ZN7WebCore27CSSComputedStyleDeclaration5derefEv +_ZN7WebCore27CSSComputedStyleDeclaration6createERNS_7ElementEbN3WTF10StringViewE +_ZN7WebCore27CSSComputedStyleDeclarationC1ERNS_7ElementEbRKN3WTF6StringE +_ZN7WebCore27CSSComputedStyleDeclarationC2ERNS_7ElementEbRKN3WTF6StringE +_ZN7WebCore27ContentSecurityPolicyClient26willSendCSPViolationReportERNS_7CSPInfoE +_ZN7WebCore27ContentSecurityPolicyClientC2ERKS0_ +_ZN7WebCore27ContentSecurityPolicyClientC2Ev +_ZN7WebCore27ContentSecurityPolicyClientD0Ev +_ZN7WebCore27ContentSecurityPolicyClientD1Ev +_ZN7WebCore27ContentSecurityPolicyClientD2Ev +_ZN7WebCore27ContentSecurityPolicyClientaSERKS0_ +_ZN7WebCore27DeviceOrientationClientMock14setOrientationEON3WTF6RefPtrINS_21DeviceOrientationDataENS1_13DumbPtrTraitsIS3_EEEE +_ZN7WebCore27DeviceOrientationClientMockC1Ev +_ZN7WebCore27DeviceOrientationClientMockC2Ev +_ZN7WebCore27DocumentTimelinesController16resumeAnimationsEv +_ZN7WebCore27DocumentTimelinesController17suspendAnimationsEv +_ZN7WebCore27PlatformMediaSessionManager12restrictionsENS_20PlatformMediaSession9MediaTypeE +_ZN7WebCore27PlatformMediaSessionManager13sharedManagerEv +_ZN7WebCore27PlatformMediaSessionManager14addRestrictionENS_20PlatformMediaSession9MediaTypeEj +_ZN7WebCore27PlatformMediaSessionManager15endInterruptionENS_20PlatformMediaSession20EndInterruptionFlagsE +_ZN7WebCore27PlatformMediaSessionManager16processDidResumeEv +_ZN7WebCore27PlatformMediaSessionManager17beginInterruptionENS_20PlatformMediaSession16InterruptionTypeE +_ZN7WebCore27PlatformMediaSessionManager17removeRestrictionENS_20PlatformMediaSession9MediaTypeEj +_ZN7WebCore27PlatformMediaSessionManager18processWillSuspendEv +_ZN7WebCore27PlatformMediaSessionManager20processSystemDidWakeEv +_ZN7WebCore27PlatformMediaSessionManager21addAudioCaptureSourceERNS_20PlatformMediaSession18AudioCaptureSourceE +_ZN7WebCore27PlatformMediaSessionManager21sharedManagerIfExistsEv +_ZN7WebCore27PlatformMediaSessionManager22processSystemWillSleepEv +_ZN7WebCore27PlatformMediaSessionManager24removeAudioCaptureSourceERNS_20PlatformMediaSession18AudioCaptureSourceE +_ZN7WebCore27PlatformMediaSessionManager26applicationDidBecomeActiveEv +_ZN7WebCore27PlatformMediaSessionManager28shouldDeactivateAudioSessionEv +_ZN7WebCore27PlatformMediaSessionManager29applicationDidEnterBackgroundEb +_ZN7WebCore27PlatformMediaSessionManager29applicationWillBecomeInactiveEv +_ZN7WebCore27PlatformMediaSessionManager30applicationWillEnterForegroundEb +_ZN7WebCore27PlatformMediaSessionManager30didReceiveRemoteControlCommandENS_20PlatformMediaSession24RemoteControlCommandTypeEPKNS1_21RemoteCommandArgumentE +_ZN7WebCore27PlatformMediaSessionManager30stopAllMediaPlaybackForProcessEv +_ZN7WebCore27PlatformMediaSessionManager31setShouldDeactivateAudioSessionEb +_ZN7WebCore27PlatformMediaSessionManager32setIsPlayingToAutomotiveHeadUnitEb +_ZN7WebCore27PlatformMediaSessionManager37processDidReceiveRemoteControlCommandENS_20PlatformMediaSession24RemoteControlCommandTypeEPKNS1_21RemoteCommandArgumentE +_ZN7WebCore27PlatformMediaSessionManager6createEv +_ZN7WebCore27ScrollingStateScrollingNode15setScrollOriginERKNS_8IntPointE +_ZN7WebCore27ScrollingStateScrollingNode17setScrollPositionERKNS_10FloatPointE +_ZN7WebCore27ScrollingStateScrollingNode20setTotalContentsSizeERKNS_9FloatSizeE +_ZN7WebCore27ScrollingStateScrollingNode21setScrollableAreaSizeERKNS_9FloatSizeE +_ZN7WebCore27ScrollingStateScrollingNode24setReachableContentsSizeERKNS_9FloatSizeE +_ZN7WebCore27ScrollingStateScrollingNode24setScrolledContentsLayerERKNS_19LayerRepresentationE +_ZN7WebCore27ScrollingStateScrollingNode26setRequestedScrollPositionERKNS_10FloatPointEb +_ZN7WebCore27ScrollingStateScrollingNode27setScrollableAreaParametersERKNS_24ScrollableAreaParametersE +_ZN7WebCore27ScrollingStateScrollingNode31setExpectsWheelEventTestTriggerEb +_ZN7WebCore27TranslateTransformOperation5blendEPKNS_18TransformOperationEdb +_ZN7WebCore27TranslateTransformOperation6createERKNS_6LengthES3_NS_18TransformOperation13OperationTypeE +_ZN7WebCore27TranslateTransformOperation6createERKNS_6LengthES3_S3_NS_18TransformOperation13OperationTypeE +_ZN7WebCore27TranslateTransformOperationC1ERKNS_6LengthES3_S3_NS_18TransformOperation13OperationTypeE +_ZN7WebCore27TranslateTransformOperationC2ERKNS_6LengthES3_S3_NS_18TransformOperation13OperationTypeE +_ZN7WebCore27TranslateTransformOperationD0Ev +_ZN7WebCore27TranslateTransformOperationD1Ev +_ZN7WebCore27TranslateTransformOperationD2Ev +_ZN7WebCore27contextMenuItemTagUnderlineEv +_ZN7WebCore27createDragImageForSelectionERNS_5FrameERNS_17TextIndicatorDataEb +_ZN7WebCore27createLegacyEditingPositionERKNS_13BoundaryPointE +_ZN7WebCore27makeBoundaryPointBeforeNodeERNS_4NodeE +_ZN7WebCore27outputConstraintSubspaceForERN3JSC2VME +_ZN7WebCore27parseCacheControlDirectivesERKNS_13HTTPHeaderMapE +_ZN7WebCore27parseHTMLNonNegativeIntegerEN3WTF10StringViewE +_ZN7WebCore27protocolHostAndPortAreEqualERKNS_3URLES2_ +_ZN7WebCore27screenSupportsExtendedColorEPNS_6WidgetE +_ZN7WebCore27setPresentingApplicationPIDEi +_ZN7WebCore27startObservingCookieChangesERKNS_21NetworkStorageSessionEON3WTF8FunctionIFvvEEE +_ZN7WebCore27verifyVaryingRequestHeadersEPKNS_9CookieJarERKN3WTF6VectorISt4pairINS3_6StringES6_ELm0ENS3_15CrashOnOverflowELm16ENS3_10FastMallocEEERKNS_15ResourceRequestE +_ZN7WebCore27verifyVaryingRequestHeadersEPNS_21NetworkStorageSessionERKN3WTF6VectorISt4pairINS2_6StringES5_ELm0ENS2_15CrashOnOverflowELm16ENS2_10FastMallocEEERKNS_15ResourceRequestE +_ZN7WebCore27verifyVaryingRequestHeadersERKN3WTF6VectorISt4pairINS0_6StringES3_ELm0ENS0_15CrashOnOverflowELm16EEERKNS_15ResourceRequestEN3PAL9SessionIDE +_ZN7WebCore27withinTextUnitOfGranularityERKNS_15VisiblePositionENS_15TextGranularityENS_18SelectionDirectionE +_ZN7WebCore28BackingStoreBackendCairoImplC1ERKNS_7IntSizeEf +_ZN7WebCore28BackingStoreBackendCairoImplC2ERKNS_7IntSizeEf +_ZN7WebCore28BackingStoreBackendCairoImplD0Ev +_ZN7WebCore28BackingStoreBackendCairoImplD1Ev +_ZN7WebCore28BackingStoreBackendCairoImplD2Ev +_ZN7WebCore28DisplayRefreshMonitorManager13sharedManagerEv +_ZN7WebCore28DisplayRefreshMonitorManager17displayWasUpdatedEj +_ZN7WebCore28DisplayRefreshMonitorManager17displayWasUpdatedEv +_ZN7WebCore28InspectorFrontendClientLocal10resetStateEv +_ZN7WebCore28InspectorFrontendClientLocal11isUnderTestEv +_ZN7WebCore28InspectorFrontendClientLocal11showConsoleEv +_ZN7WebCore28InspectorFrontendClientLocal12moveWindowByEff +_ZN7WebCore28InspectorFrontendClientLocal12openInNewTabERKN3WTF6StringE +_ZN7WebCore28InspectorFrontendClientLocal13showResourcesEv +_ZN7WebCore28InspectorFrontendClientLocal14frontendLoadedEv +_ZN7WebCore28InspectorFrontendClientLocal15canAttachWindowEv +_ZN7WebCore28InspectorFrontendClientLocal15changeSheetRectERKNS_9FloatRectE +_ZN7WebCore28InspectorFrontendClientLocal15dispatchMessageERKN3WTF6StringE +_ZN7WebCore28InspectorFrontendClientLocal17setAttachedWindowENS_23InspectorFrontendClient8DockSideE +_ZN7WebCore28InspectorFrontendClientLocal18isDebuggingEnabledEv +_ZN7WebCore28InspectorFrontendClientLocal18requestSetDockSideENS_23InspectorFrontendClient8DockSideE +_ZN7WebCore28InspectorFrontendClientLocal19setDebuggingEnabledEb +_ZN7WebCore28InspectorFrontendClientLocal19windowObjectClearedEv +_ZN7WebCore28InspectorFrontendClientLocal20dispatchMessageAsyncERKN3WTF6StringE +_ZN7WebCore28InspectorFrontendClientLocal20sendMessageToBackendERKN3WTF6StringE +_ZN7WebCore28InspectorFrontendClientLocal21isProfilingJavaScriptEv +_ZN7WebCore28InspectorFrontendClientLocal21setDockingUnavailableEb +_ZN7WebCore28InspectorFrontendClientLocal23stopProfilingJavaScriptEv +_ZN7WebCore28InspectorFrontendClientLocal24showMainResourceForFrameEPNS_5FrameE +_ZN7WebCore28InspectorFrontendClientLocal24startProfilingJavaScriptEv +_ZN7WebCore28InspectorFrontendClientLocal25changeAttachedWindowWidthEj +_ZN7WebCore28InspectorFrontendClientLocal26changeAttachedWindowHeightEj +_ZN7WebCore28InspectorFrontendClientLocal26isTimelineProfilingEnabledEv +_ZN7WebCore28InspectorFrontendClientLocal27restoreAttachedWindowHeightEv +_ZN7WebCore28InspectorFrontendClientLocal27setTimelineProfilingEnabledEb +_ZN7WebCore28InspectorFrontendClientLocal30constrainedAttachedWindowWidthEjj +_ZN7WebCore28InspectorFrontendClientLocal31constrainedAttachedWindowHeightEjj +_ZN7WebCore28InspectorFrontendClientLocal8Settings11getPropertyERKN3WTF6StringE +_ZN7WebCore28InspectorFrontendClientLocal8Settings11setPropertyERKN3WTF6StringES5_ +_ZN7WebCore28InspectorFrontendClientLocal8Settings14deletePropertyERKN3WTF6StringE +_ZN7WebCore28InspectorFrontendClientLocal8SettingsC1ERKS1_ +_ZN7WebCore28InspectorFrontendClientLocal8SettingsC1Ev +_ZN7WebCore28InspectorFrontendClientLocal8SettingsC2ERKS1_ +_ZN7WebCore28InspectorFrontendClientLocal8SettingsC2Ev +_ZN7WebCore28InspectorFrontendClientLocal8SettingsD0Ev +_ZN7WebCore28InspectorFrontendClientLocal8SettingsD1Ev +_ZN7WebCore28InspectorFrontendClientLocal8SettingsD2Ev +_ZN7WebCore28InspectorFrontendClientLocal8SettingsaSERKS1_ +_ZN7WebCore28InspectorFrontendClientLocal8SettingsdaEPv +_ZN7WebCore28InspectorFrontendClientLocal8SettingsdlEPv +_ZN7WebCore28InspectorFrontendClientLocal8SettingsnaEm +_ZN7WebCore28InspectorFrontendClientLocal8SettingsnaEmPv +_ZN7WebCore28InspectorFrontendClientLocal8SettingsnwEm +_ZN7WebCore28InspectorFrontendClientLocal8SettingsnwEmPv +_ZN7WebCore28InspectorFrontendClientLocal8dispatchERKN3WTF6StringE +_ZN7WebCore28InspectorFrontendClientLocalC2EPNS_19InspectorControllerEPNS_4PageESt10unique_ptrINS0_8SettingsESt14default_deleteIS6_EE +_ZN7WebCore28InspectorFrontendClientLocalD0Ev +_ZN7WebCore28InspectorFrontendClientLocalD1Ev +_ZN7WebCore28InspectorFrontendClientLocalD2Ev +_ZN7WebCore28collectVaryingRequestHeadersEPKNS_9CookieJarERKNS_15ResourceRequestERKNS_16ResourceResponseE +_ZN7WebCore28collectVaryingRequestHeadersEPNS_21NetworkStorageSessionERKNS_15ResourceRequestERKNS_16ResourceResponseE +_ZN7WebCore28collectVaryingRequestHeadersERKNS_15ResourceRequestERKNS_16ResourceResponseEN3PAL9SessionIDE +_ZN7WebCore28convertToIntegerEnforceRangeIaEET_RN3JSC14JSGlobalObjectENS2_7JSValueE +_ZN7WebCore28convertToIntegerEnforceRangeIaEET_RN3JSC9ExecStateENS2_7JSValueE +_ZN7WebCore28convertToIntegerEnforceRangeIhEET_RN3JSC14JSGlobalObjectENS2_7JSValueE +_ZN7WebCore28convertToIntegerEnforceRangeIhEET_RN3JSC9ExecStateENS2_7JSValueE +_ZN7WebCore28convertToIntegerEnforceRangeIiEET_RN3JSC14JSGlobalObjectENS2_7JSValueE +_ZN7WebCore28convertToIntegerEnforceRangeIiEET_RN3JSC9ExecStateENS2_7JSValueE +_ZN7WebCore28convertToIntegerEnforceRangeIjEET_RN3JSC14JSGlobalObjectENS2_7JSValueE +_ZN7WebCore28convertToIntegerEnforceRangeIjEET_RN3JSC9ExecStateENS2_7JSValueE +_ZN7WebCore28convertToIntegerEnforceRangeIlEET_RN3JSC14JSGlobalObjectENS2_7JSValueE +_ZN7WebCore28convertToIntegerEnforceRangeIlEET_RN3JSC9ExecStateENS2_7JSValueE +_ZN7WebCore28convertToIntegerEnforceRangeImEET_RN3JSC14JSGlobalObjectENS2_7JSValueE +_ZN7WebCore28convertToIntegerEnforceRangeImEET_RN3JSC9ExecStateENS2_7JSValueE +_ZN7WebCore28convertToIntegerEnforceRangeIsEET_RN3JSC14JSGlobalObjectENS2_7JSValueE +_ZN7WebCore28convertToIntegerEnforceRangeIsEET_RN3JSC9ExecStateENS2_7JSValueE +_ZN7WebCore28convertToIntegerEnforceRangeItEET_RN3JSC14JSGlobalObjectENS2_7JSValueE +_ZN7WebCore28convertToIntegerEnforceRangeItEET_RN3JSC9ExecStateENS2_7JSValueE +_ZN7WebCore28encodeWithURLEscapeSequencesERKN3WTF6StringE +_ZN7WebCore28getDefaultWebCryptoMasterKeyERN3WTF6VectorIhLm0ENS0_15CrashOnOverflowELm16ENS0_10FastMallocEEE +_ZN7WebCore28throwArgumentMustBeEnumErrorERN3JSC14JSGlobalObjectERNS0_10ThrowScopeEjPKcS6_S6_S6_ +_ZN7WebCore28throwArgumentMustBeEnumErrorERN3JSC9ExecStateERNS0_10ThrowScopeEjPKcS6_S6_S6_ +_ZN7WebCore28throwRequiredMemberTypeErrorERN3JSC14JSGlobalObjectERNS0_10ThrowScopeEPKcS6_S6_ +_ZN7WebCore28throwRequiredMemberTypeErrorERN3JSC9ExecStateERNS0_10ThrowScopeEPKcS6_S6_ +_ZN7WebCore28topPrivatelyControlledDomainERKN3WTF6StringE +_ZN7WebCore29DeprecatedCSSOMPrimitiveValue13setFloatValueEtd +_ZN7WebCore29DeprecatedCSSOMPrimitiveValue14setStringValueEtRKN3WTF6StringE +_ZN7WebCore29PerspectiveTransformOperation5blendEPKNS_18TransformOperationEdb +_ZN7WebCore29PerspectiveTransformOperation6createERKNS_6LengthE +_ZN7WebCore29PerspectiveTransformOperationC1ERKNS_6LengthE +_ZN7WebCore29PerspectiveTransformOperationC2ERKNS_6LengthE +_ZN7WebCore29PerspectiveTransformOperationD0Ev +_ZN7WebCore29PerspectiveTransformOperationD1Ev +_ZN7WebCore29PerspectiveTransformOperationD2Ev +_ZN7WebCore29SQLiteStatementAutoResetScopeC1EOS0_ +_ZN7WebCore29SQLiteStatementAutoResetScopeC1EPNS_15SQLiteStatementE +_ZN7WebCore29SQLiteStatementAutoResetScopeC2EOS0_ +_ZN7WebCore29SQLiteStatementAutoResetScopeC2EPNS_15SQLiteStatementE +_ZN7WebCore29SQLiteStatementAutoResetScopeD1Ev +_ZN7WebCore29SQLiteStatementAutoResetScopeD2Ev +_ZN7WebCore29SQLiteStatementAutoResetScopeaSEOS0_ +_ZN7WebCore29contextMenuItemTagLeftToRightEv +_ZN7WebCore29contextMenuItemTagRightToLeftEv +_ZN7WebCore29cookieRequestHeaderFieldProxyERKNS_8DocumentERKNS_3URLE +_ZN7WebCore29cookieRequestHeaderFieldValueERKNS_21NetworkStorageSessionERKNS_29CookieRequestHeaderFieldProxyE +_ZN7WebCore29cookieRequestHeaderFieldValueERKNS_21NetworkStorageSessionERKNS_3URLERKNS_12SameSiteInfoES5_St8optionalImESA_NS_20IncludeSecureCookiesE +_ZN7WebCore29cookieRequestHeaderFieldValueERNS_8DocumentERKNS_3URLE +_ZN7WebCore29createDefaultParagraphElementERNS_8DocumentE +_ZN7WebCore29deleteAllCookiesModifiedSinceERKNS_21NetworkStorageSessionEN3WTF8WallTimeE +_ZN7WebCore29equalIgnoringQueryAndFragmentERKNS_3URLES2_ +_ZN7WebCore29isCharacterSmartReplaceExemptEib +_ZN7WebCore29updateRequestForAccessControlERNS_15ResourceRequestERNS_14SecurityOriginENS_23StoredCredentialsPolicyE +_ZN7WebCore30InspectorInstrumentationPublic12hasFrontendsEv +_ZN7WebCore30InspectorInstrumentationPublic17s_frontendCounterE +_ZN7WebCore30InspectorInstrumentationWebKit16interceptRequestERNS_14ResourceLoaderEON3WTF8FunctionIFvRKNS_15ResourceRequestEEEE +_ZN7WebCore30InspectorInstrumentationWebKit22shouldInterceptRequestEPKNS_5FrameERKNS_15ResourceRequestE +_ZN7WebCore30InspectorInstrumentationWebKit23shouldInterceptResponseEPKNS_5FrameERKNS_16ResourceResponseE +_ZN7WebCore30InspectorInstrumentationWebKit24interceptRequestInternalERNS_14ResourceLoaderEON3WTF8FunctionIFvRKNS_15ResourceRequestEEEE +_ZN7WebCore30InspectorInstrumentationWebKit25interceptResponseInternalERKNS_5FrameERKNS_16ResourceResponseEmON3WTF17CompletionHandlerIFvS6_NS7_6RefPtrINS_12SharedBufferENS7_13DumbPtrTraitsISA_EEEEEEE +_ZN7WebCore30InspectorInstrumentationWebKit30shouldInterceptRequestInternalERKNS_5FrameERKNS_15ResourceRequestE +_ZN7WebCore30InspectorInstrumentationWebKit31shouldInterceptResponseInternalERKNS_5FrameERKNS_16ResourceResponseE +_ZN7WebCore30InvertLightnessFilterOperation5blendEPKNS_15FilterOperationEdb +_ZN7WebCore30InvertLightnessFilterOperation6createEv +_ZN7WebCore30InvertLightnessFilterOperationC1Ev +_ZN7WebCore30InvertLightnessFilterOperationC2Ev +_ZN7WebCore30InvertLightnessFilterOperationD0Ev +_ZN7WebCore30InvertLightnessFilterOperationD1Ev +_ZN7WebCore30InvertLightnessFilterOperationD2Ev +_ZN7WebCore30closestWordBoundaryForPositionERKNS_15VisiblePositionE +_ZN7WebCore30contextMenuItemTagSpellingMenuEv +_ZN7WebCore30enclosingTextUnitOfGranularityERKNS_15VisiblePositionENS_15TextGranularityENS_18SelectionDirectionE +_ZN7WebCore30errorDomainWebKitServiceWorkerE +_ZN7WebCore30forwardForEachCallToBackingMapERNS_17JSDOMGlobalObjectERN3JSC9CallFrameERNS2_8JSObjectE +_ZN7WebCore30forwardForEachCallToBackingSetERNS_17JSDOMGlobalObjectERN3JSC9CallFrameERNS2_8JSObjectE +_ZN7WebCore30isStatusCodeCacheableByDefaultEi +_ZN7WebCore30makeRangeSelectingNodeContentsERNS_4NodeE +_ZN7WebCore30plainTextReplacingNoBreakSpaceEPKNS_5RangeEtb +_ZN7WebCore30plainTextReplacingNoBreakSpaceERKNS_11SimpleRangeEtb +_ZN7WebCore30rejectPromiseWithThisTypeErrorERN3JSC14JSGlobalObjectEPKcS4_ +_ZN7WebCore30rejectPromiseWithThisTypeErrorERN3JSC9ExecStateEPKcS4_ +_ZN7WebCore30rejectPromiseWithThisTypeErrorERNS_15DeferredPromiseEPKcS3_ +_ZN7WebCore30throwArgumentMustBeObjectErrorERN3JSC14JSGlobalObjectERNS0_10ThrowScopeEjPKcS6_S6_ +_ZN7WebCore31BasicColorMatrixFilterOperation5blendEPKNS_15FilterOperationEdb +_ZN7WebCore31BasicColorMatrixFilterOperation6createEdNS_15FilterOperation13OperationTypeE +_ZN7WebCore31BasicColorMatrixFilterOperationC1EdNS_15FilterOperation13OperationTypeE +_ZN7WebCore31BasicColorMatrixFilterOperationC2EdNS_15FilterOperation13OperationTypeE +_ZN7WebCore31BasicColorMatrixFilterOperationD0Ev +_ZN7WebCore31BasicColorMatrixFilterOperationD1Ev +_ZN7WebCore31BasicColorMatrixFilterOperationD2Ev +_ZN7WebCore31CrossOriginPreflightResultCache11appendEntryERKN3WTF6StringERKNS1_3URLESt10unique_ptrINS_35CrossOriginPreflightResultCacheItemESt14default_deleteIS9_EE +_ZN7WebCore31CrossOriginPreflightResultCache11appendEntryERKN3WTF6StringERKNS_3URLESt10unique_ptrINS_35CrossOriginPreflightResultCacheItemESt14default_deleteIS9_EE +_ZN7WebCore31CrossOriginPreflightResultCache16canSkipPreflightERKN3WTF6StringERKNS1_3URLENS_23StoredCredentialsPolicyES4_RKNS_13HTTPHeaderMapE +_ZN7WebCore31CrossOriginPreflightResultCache16canSkipPreflightERKN3WTF6StringERKNS_3URLENS_23StoredCredentialsPolicyES4_RKNS_13HTTPHeaderMapE +_ZN7WebCore31CrossOriginPreflightResultCache5clearEv +_ZN7WebCore31CrossOriginPreflightResultCache5emptyEv +_ZN7WebCore31CrossOriginPreflightResultCache9singletonEv +_ZN7WebCore31MediaEngineConfigurationFactory10enableMockEv +_ZN7WebCore31MediaEngineConfigurationFactory11disableMockEv +_ZN7WebCore31SimplifiedBackwardsTextIterator7advanceEv +_ZN7WebCore31SimplifiedBackwardsTextIteratorC1ERKNS_11SimpleRangeE +_ZN7WebCore31SimplifiedBackwardsTextIteratorC2ERKNS_11SimpleRangeE +_ZN7WebCore31TextureMapperPlatformLayerProxy10invalidateEv +_ZN7WebCore31TextureMapperPlatformLayerProxy10swapBufferEv +_ZN7WebCore31TextureMapperPlatformLayerProxy27activateOnCompositingThreadEPNS0_10CompositorEPNS_18TextureMapperLayerE +_ZN7WebCore31contextMenuItemTagCheckSpellingEv +_ZN7WebCore31contextMenuItemTagIgnoreGrammarEv +_ZN7WebCore31equalIgnoringFragmentIdentifierERKNS_3URLES2_ +_ZN7WebCore31forwardFunctionCallToBackingMapERN3JSC14JSGlobalObjectERNS0_9CallFrameERNS0_8JSObjectERKNS0_10IdentifierE +_ZN7WebCore31forwardFunctionCallToBackingSetERN3JSC14JSGlobalObjectERNS0_9CallFrameERNS0_8JSObjectERKNS0_10IdentifierE +_ZN7WebCore31rejectPromiseWithExceptionIfAnyERN3JSC14JSGlobalObjectERNS_17JSDOMGlobalObjectERNS0_9JSPromiseERNS0_10CatchScopeE +_ZN7WebCore31rejectPromiseWithExceptionIfAnyERN3JSC9ExecStateERNS_17JSDOMGlobalObjectERNS0_17JSPromiseDeferredE +_ZN7WebCore32ScrollingStateFrameScrollingNode14setFooterLayerERKNS_19LayerRepresentationE +_ZN7WebCore32ScrollingStateFrameScrollingNode14setHeaderLayerERKNS_19LayerRepresentationE +_ZN7WebCore32ScrollingStateFrameScrollingNode15setFooterHeightEi +_ZN7WebCore32ScrollingStateFrameScrollingNode15setHeaderHeightEi +_ZN7WebCore32ScrollingStateFrameScrollingNode17setInsetClipLayerERKNS_19LayerRepresentationE +_ZN7WebCore32ScrollingStateFrameScrollingNode17setLayoutViewportERKNS_9FloatRectE +_ZN7WebCore32ScrollingStateFrameScrollingNode18setTopContentInsetEf +_ZN7WebCore32ScrollingStateFrameScrollingNode19setFrameScaleFactorEf +_ZN7WebCore32ScrollingStateFrameScrollingNode21setContentShadowLayerERKNS_19LayerRepresentationE +_ZN7WebCore32ScrollingStateFrameScrollingNode23setEventTrackingRegionsERKNS_20EventTrackingRegionsE +_ZN7WebCore32ScrollingStateFrameScrollingNode24setCounterScrollingLayerERKNS_19LayerRepresentationE +_ZN7WebCore32ScrollingStateFrameScrollingNode24setVisualViewportEnabledEb +_ZN7WebCore32ScrollingStateFrameScrollingNode26setMaxLayoutViewportOriginERKNS_10FloatPointE +_ZN7WebCore32ScrollingStateFrameScrollingNode26setMinLayoutViewportOriginERKNS_10FloatPointE +_ZN7WebCore32ScrollingStateFrameScrollingNode30setSynchronousScrollingReasonsEj +_ZN7WebCore32ScrollingStateFrameScrollingNode33setScrollBehaviorForFixedElementsENS_30ScrollBehaviorForFixedElementsE +_ZN7WebCore32ScrollingStateFrameScrollingNode37setFixedElementsLayoutRelativeToFrameEb +_ZN7WebCore32WorkerThreadableWebSocketChannelC1ERNS_17WorkerGlobalScopeERNS_22WebSocketChannelClientERKN3WTF6StringERNS_14SocketProviderE +_ZN7WebCore32WorkerThreadableWebSocketChannelC2ERNS_17WorkerGlobalScopeERNS_22WebSocketChannelClientERKN3WTF6StringERNS_14SocketProviderE +_ZN7WebCore32contextMenuItemTagInspectElementEv +_ZN7WebCore32isSimpleCrossOriginAccessRequestERKN3WTF6StringERKNS_13HTTPHeaderMapE +_ZN7WebCore32isStatusCodePotentiallyCacheableEi +_ZN7WebCore32logMemoryStatisticsAtTimeOfDeathEv +_ZN7WebCore32rejectPromiseWithGetterTypeErrorERN3JSC14JSGlobalObjectEPKcS4_ +_ZN7WebCore32rejectPromiseWithGetterTypeErrorERN3JSC9ExecStateEPKcS4_ +_ZN7WebCore32serializationForRenderTreeAsTextENS_5SRGBAIhEE +_ZN7WebCore32serializationForRenderTreeAsTextERKNS_11LinearSRGBAIfEE +_ZN7WebCore32serializationForRenderTreeAsTextERKNS_5ColorE +_ZN7WebCore32serializationForRenderTreeAsTextERKNS_5SRGBAIfEE +_ZN7WebCore32serializationForRenderTreeAsTextERKNS_9DisplayP3IfEE +_ZN7WebCore32throwArgumentMustBeFunctionErrorERN3JSC14JSGlobalObjectERNS0_10ThrowScopeEjPKcS6_S6_ +_ZN7WebCore32throwArgumentMustBeFunctionErrorERN3JSC9ExecStateERNS0_10ThrowScopeEjPKcS6_S6_ +_ZN7WebCore32useBlockedPlugInContextMenuTitleEv +_ZN7WebCore33createEmptyFrameNetworkingContextEv +_ZN7WebCore33pageConfigurationWithEmptyClientsEN3PAL9SessionIDE +_ZN7WebCore33signedPublicKeyAndChallengeStringEjRKN3WTF6StringERKNS0_3URLE +_ZN7WebCore33signedPublicKeyAndChallengeStringEjRKN3WTF6StringERKNS_3URLE +_ZN7WebCore33stripLeadingAndTrailingHTMLSpacesERKN3WTF6StringE +_ZN7WebCore33testPreloadScannerViewportSupportEPNS_8DocumentE +_ZN7WebCore33validateCrossOriginResourcePolicyERKNS_14SecurityOriginERKN3WTF3URLERKNS_16ResourceResponseE +_ZN7WebCore33validateCrossOriginResourcePolicyERKNS_14SecurityOriginERKNS_3URLERKNS_16ResourceResponseE +_ZN7WebCore34contextMenuItemTagDefaultDirectionEv +_ZN7WebCore34forwardAttributeGetterToBackingMapERN3JSC14JSGlobalObjectERNS0_8JSObjectERKNS0_10IdentifierE +_ZN7WebCore34forwardAttributeGetterToBackingSetERN3JSC14JSGlobalObjectERNS0_8JSObjectERKNS0_10IdentifierE +_ZN7WebCore35CrossOriginPreflightResultCacheItem5parseERKNS_16ResourceResponseERN3WTF6StringE +_ZN7WebCore35contextMenuItemTagShowSpellingPanelEb +_ZN7WebCore35createAccessControlPreflightRequestERKNS_15ResourceRequestERNS_14SecurityOriginERKN3WTF6StringE +_ZN7WebCore35isEndOfEditableOrNonEditableContentERKNS_15VisiblePositionE +_ZN7WebCore35positionOfNextBoundaryOfGranularityERKNS_15VisiblePositionENS_15TextGranularityENS_18SelectionDirectionE +_ZN7WebCore35serializePreservingVisualAppearanceERKNS_11SimpleRangeEPN3WTF6VectorIPNS_4NodeELm0ENS3_15CrashOnOverflowELm16ENS3_10FastMallocEEENS_22AnnotateForInterchangeENS_22ConvertBlocksToInlinesENS_11ResolveURLsE +_ZN7WebCore36ContentSecurityPolicyResponseHeadersC1ERKNS_16ResourceResponseE +_ZN7WebCore36ContentSecurityPolicyResponseHeadersC2ERKNS_16ResourceResponseE +_ZN7WebCore36ISOProtectionSystemSpecificHeaderBox11boxTypeNameEv +_ZN7WebCore36ISOProtectionSystemSpecificHeaderBox12peekSystemIDERN3JSC8DataViewEj +_ZN7WebCore36ISOProtectionSystemSpecificHeaderBox5parseERN3JSC8DataViewERj +_ZN7WebCore36ISOProtectionSystemSpecificHeaderBoxC1ERKS0_ +_ZN7WebCore36ISOProtectionSystemSpecificHeaderBoxC1Ev +_ZN7WebCore36ISOProtectionSystemSpecificHeaderBoxC2ERKS0_ +_ZN7WebCore36ISOProtectionSystemSpecificHeaderBoxC2Ev +_ZN7WebCore36ISOProtectionSystemSpecificHeaderBoxD0Ev +_ZN7WebCore36ISOProtectionSystemSpecificHeaderBoxD1Ev +_ZN7WebCore36ISOProtectionSystemSpecificHeaderBoxD2Ev +_ZN7WebCore36largestRectWithAspectRatioInsideRectEfRKNS_9FloatRectE +_ZN7WebCore36parseCrossOriginResourcePolicyHeaderEN3WTF10StringViewE +_ZN7WebCore36registerMemoryReleaseNotifyCallbacksEv +_ZN7WebCore36visiblePositionForPositionWithOffsetERKNS_15VisiblePositionEi +_ZN7WebCore37BasicComponentTransferFilterOperation5blendEPKNS_15FilterOperationEdb +_ZN7WebCore37BasicComponentTransferFilterOperation6createEdNS_15FilterOperation13OperationTypeE +_ZN7WebCore37BasicComponentTransferFilterOperationC1EdNS_15FilterOperation13OperationTypeE +_ZN7WebCore37BasicComponentTransferFilterOperationC2EdNS_15FilterOperation13OperationTypeE +_ZN7WebCore37BasicComponentTransferFilterOperationD0Ev +_ZN7WebCore37BasicComponentTransferFilterOperationD1Ev +_ZN7WebCore37BasicComponentTransferFilterOperationD2Ev +_ZN7WebCore37CrossOriginAccessControlCheckDisabler39setCrossOriginAccessControlCheckEnabledEb +_ZN7WebCore37CrossOriginAccessControlCheckDisabler9singletonEv +_ZN7WebCore37CrossOriginAccessControlCheckDisablerC1ERKS0_ +_ZN7WebCore37CrossOriginAccessControlCheckDisablerC1Ev +_ZN7WebCore37CrossOriginAccessControlCheckDisablerC2ERKS0_ +_ZN7WebCore37CrossOriginAccessControlCheckDisablerC2Ev +_ZN7WebCore37CrossOriginAccessControlCheckDisablerD0Ev +_ZN7WebCore37CrossOriginAccessControlCheckDisablerD1Ev +_ZN7WebCore37CrossOriginAccessControlCheckDisablerD2Ev +_ZN7WebCore37CrossOriginAccessControlCheckDisableraSERKS0_ +_ZN7WebCore37WidgetHierarchyUpdatesSuspensionScope11moveWidgetsEv +_ZN7WebCore37WidgetHierarchyUpdatesSuspensionScope35s_widgetHierarchyUpdateSuspendCountE +_ZN7WebCore37computeFreshnessLifetimeForHTTPFamilyERKNS_16ResourceResponseEN3WTF8WallTimeE +_ZN7WebCore37contextMenuItemTagOpenLinkInNewWindowEv +_ZN7WebCore37smallestRectWithAspectRatioAroundRectEfRKNS_9FloatRectE +_ZN7WebCore38contextMenuItemTagWritingDirectionMenuEv +_ZN7WebCore38updateResponseHeadersAfterRevalidationERNS_16ResourceResponseERKS0_ +_ZN7WebCore39cleanHTTPRequestHeadersForAccessControlERNS_15ResourceRequestEN3WTF9OptionSetINS_29HTTPHeadersToKeepFromCleaningEEE +_ZN7WebCore39cleanHTTPRequestHeadersForAccessControlERNS_15ResourceRequestERKN3WTF7HashSetINS_14HTTPHeaderNameENS2_7IntHashIS4_EENS2_20StrongEnumHashTraitsIS4_EEEE +_ZN7WebCore39globalObjectOutputConstraintSubspaceForERN3JSC2VME +_ZN7WebCore39rangeExpandedAroundPositionByCharactersERKNS_15VisiblePositionEi +_ZN7WebCore3URL10invalidateEv +_ZN7WebCore3URL11setProtocolERKN3WTF6StringE +_ZN7WebCore3URL14encodeHostNameEN3WTF10StringViewE +_ZN7WebCore3URL15hostIsIPAddressEN3WTF10StringViewE +_ZN7WebCore3URL21setFragmentIdentifierEN3WTF10StringViewE +_ZN7WebCore3URL23fakeURLWithRelativePartERKN3WTF6StringE +_ZN7WebCore3URL24removeFragmentIdentifierEv +_ZN7WebCore3URL25fileURLWithFileSystemPathERKN3WTF6StringE +_ZN7WebCore3URL32removeQueryAndFragmentIdentifierEv +_ZN7WebCore3URL7setPathERKN3WTF6StringE +_ZN7WebCore3URL8setQueryERKN3WTF6StringE +_ZN7WebCore3URLC1ENS_18ParsedURLStringTagERKN3WTF6StringE +_ZN7WebCore3URLC1ERKS0_RKN3WTF6StringE +_ZN7WebCore3URLC2ENS_18ParsedURLStringTagERKN3WTF6StringE +_ZN7WebCore3URLC2ERKS0_RKN3WTF6StringE +_ZN7WebCore40clearDefaultPortForProtocolMapForTestingEv +_ZN7WebCore40defaultTextEncodingNameForSystemLanguageEv +_ZN7WebCore40registerDefaultPortForProtocolForTestingEtRKN3WTF6StringE +_ZN7WebCore40restrictMinimumScaleFactorToViewportSizeERNS_18ViewportAttributesENS_7IntSizeEf +_ZN7WebCore42contextMenuItemTagCheckGrammarWithSpellingEv +_ZN7WebCore42contextMenuItemTagCheckSpellingWhileTypingEv +_ZN7WebCore42wordBoundaryForPositionWithoutCrossingLineERKNS_15VisiblePositionE +_ZN7WebCore43initializeMaximumHTTPConnectionCountPerHostEv +_ZN7WebCore44computeMinimumScaleFactorForContentContainedERKNS_18ViewportAttributesERKNS_7IntSizeES5_ +_ZN7WebCore46visibleImageElementsInRangeWithNonLoadedImagesERKNS_11SimpleRangeE +_ZN7WebCore48closestEditablePositionInElementForAbsolutePointERKNS_7ElementERKNS_8IntPointE +_ZN7WebCore49reportExtraMemoryAllocatedForCollectionIndexCacheEm +_ZN7WebCore4Attr5styleEv +_ZN7WebCore4Attr8setValueERKN3WTF10AtomStringE +_ZN7WebCore4Attr8setValueERKN3WTF12AtomicStringE +_ZN7WebCore4BlobC1EPNS_22ScriptExecutionContextE +_ZN7WebCore4BlobC1Ev +_ZN7WebCore4BlobC2EPNS_22ScriptExecutionContextE +_ZN7WebCore4BlobC2Ev +_ZN7WebCore4File6createEPNS_22ScriptExecutionContextERKN3WTF6StringES6_S6_ +_ZN7WebCore4FileC1ERKN3WTF6StringE +_ZN7WebCore4FileC2ERKN3WTF6StringE +_ZN7WebCore4FontC1ERKNS_16FontPlatformDataENS0_6OriginENS0_12InterstitialENS0_10VisibilityENS0_19OrientationFallbackE +_ZN7WebCore4FontC2ERKNS_16FontPlatformDataENS0_6OriginENS0_12InterstitialENS0_10VisibilityENS0_19OrientationFallbackE +_ZN7WebCore4FontD1Ev +_ZN7WebCore4FontD2Ev +_ZN7WebCore4Icon18createIconForFilesERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16EEE +_ZN7WebCore4Icon18createIconForFilesERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN7WebCore4IconD1Ev +_ZN7WebCore4IconD2Ev +_ZN7WebCore4Node10childNodesEv +_ZN7WebCore4Node10renderRectEPb +_ZN7WebCore4Node11appendChildERS0_ +_ZN7WebCore4Node11removeChildERS0_ +_ZN7WebCore4Node12insertBeforeERS0_PS0_ +_ZN7WebCore4Node12replaceChildERS0_S1_ +_ZN7WebCore4Node14removedLastRefEv +_ZN7WebCore4Node14setTextContentERKN3WTF6StringE +_ZN7WebCore4Node16addEventListenerERKN3WTF10AtomStringEONS1_3RefINS_13EventListenerENS1_13DumbPtrTraitsIS6_EEEERKNS_11EventTarget23AddEventListenerOptionsE +_ZN7WebCore4Node17isContentEditableEv +_ZN7WebCore4Node17stopIgnoringLeaksEv +_ZN7WebCore4Node18dispatchInputEventEv +_ZN7WebCore4Node18startIgnoringLeaksEv +_ZN7WebCore4Node20cloneNodeForBindingsEb +_ZN7WebCore4Node23compareDocumentPositionERS0_ +_ZN7WebCore4Node6removeEv +_ZN7WebCore4Node7inspectEv +_ZN7WebCore4Node9normalizeEv +_ZN7WebCore4Page10findStringERKN3WTF6StringENS1_9OptionSetINS_14FindOptionFlagEEEPNS_7DidWrapE +_ZN7WebCore4Page10pluginDataEv +_ZN7WebCore4Page11forEachPageERKN3WTF8FunctionIFvRS0_EEE +_ZN7WebCore4Page12setGroupNameERKN3WTF6StringE +_ZN7WebCore4Page12setIsVisibleEb +_ZN7WebCore4Page12setSessionIDEN3PAL9SessionIDE +_ZN7WebCore4Page12whenUnnestedEON3WTF8FunctionIFvvEEE +_ZN7WebCore4Page13rangeOfStringERKN3WTF6StringEPNS_5RangeENS1_9OptionSetINS_14FindOptionFlagEEE +_ZN7WebCore4Page13rangeOfStringERKN3WTF6StringERKNS1_8OptionalINS_11SimpleRangeEEENS1_9OptionSetINS_14FindOptionFlagEEE +_ZN7WebCore4Page13setIsInWindowEb +_ZN7WebCore4Page13setPaginationERKNS_10PaginationE +_ZN7WebCore4Page14layoutIfNeededEv +_ZN7WebCore4Page14setIsPrerenderEv +_ZN7WebCore4Page14setMediaVolumeEf +_ZN7WebCore4Page15findTextMatchesERKN3WTF6StringENS1_9OptionSetINS_14FindOptionFlagEEEj +_ZN7WebCore4Page15setFooterHeightEi +_ZN7WebCore4Page15setHeaderHeightEi +_ZN7WebCore4Page15updateRenderingEv +_ZN7WebCore4Page16countFindMatchesERKN3WTF6StringENS1_9OptionSetINS_14FindOptionFlagEEEj +_ZN7WebCore4Page16setActivityStateEN3WTF9OptionSetINS_13ActivityState4FlagEEE +_ZN7WebCore4Page16setActivityStateEj +_ZN7WebCore4Page16setCanStartMediaEb +_ZN7WebCore4Page16setDefersLoadingEb +_ZN7WebCore4Page16stopMediaCaptureEv +_ZN7WebCore4Page16userAgentChangedEv +_ZN7WebCore4Page17ensureTestTriggerEv +_ZN7WebCore4Page18setPageScaleFactorEfRKNS_8IntPointEb +_ZN7WebCore4Page18setTopContentInsetEf +_ZN7WebCore4Page18setViewScaleFactorEf +_ZN7WebCore4Page19addLayoutMilestonesEN3WTF9OptionSetINS_15LayoutMilestoneEEE +_ZN7WebCore4Page19addLayoutMilestonesEj +_ZN7WebCore4Page19appearanceDidChangeEv +_ZN7WebCore4Page19setDelegatesScalingEb +_ZN7WebCore4Page19setFullscreenInsetsERKNS_9RectEdgesIfEE +_ZN7WebCore4Page19setVisitedLinkStoreEON3WTF3RefINS_16VisitedLinkStoreENS1_13DumbPtrTraitsIS3_EEEE +_ZN7WebCore4Page19userContentProviderEv +_ZN7WebCore4Page20injectUserStyleSheetERNS_14UserStyleSheetE +_ZN7WebCore4Page20scrollingCoordinatorEv +_ZN7WebCore4Page20setDeviceScaleFactorEf +_ZN7WebCore4Page20setUseDarkAppearanceEb +_ZN7WebCore4Page20stopAllMediaPlaybackEv +_ZN7WebCore4Page20unmarkAllTextMatchesEv +_ZN7WebCore4Page21markAllMatchesForTextERKN3WTF6StringENS1_9OptionSetINS_14FindOptionFlagEEEbj +_ZN7WebCore4Page21replaceRangesWithTextERKN3WTF6VectorINS_11SimpleRangeELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEERKNS1_6StringEb +_ZN7WebCore4Page21resumeAnimatingImagesEv +_ZN7WebCore4Page22nonFastScrollableRectsEv +_ZN7WebCore4Page22removeLayoutMilestonesEN3WTF9OptionSetINS_15LayoutMilestoneEEE +_ZN7WebCore4Page22removeLayoutMilestonesEj +_ZN7WebCore4Page22resumeAllMediaPlaybackEv +_ZN7WebCore4Page22revealCurrentSelectionEv +_ZN7WebCore4Page22setUseSystemAppearanceEb +_ZN7WebCore4Page22setUserContentProviderEON3WTF3RefINS_19UserContentProviderENS1_13DumbPtrTraitsIS3_EEEE +_ZN7WebCore4Page23clearUndoRedoOperationsEv +_ZN7WebCore4Page23dispatchAfterPrintEventEv +_ZN7WebCore4Page23finalizeRenderingUpdateEN3WTF9OptionSetINS_28FinalizeRenderingUpdateFlagsEEE +_ZN7WebCore4Page23invalidateStylesForLinkEj +_ZN7WebCore4Page23invalidateStylesForLinkEm +_ZN7WebCore4Page23resumeAllMediaBufferingEv +_ZN7WebCore4Page23scheduleRenderingUpdateEv +_ZN7WebCore4Page23suspendAllMediaPlaybackEv +_ZN7WebCore4Page23touchEventRectsForEventERKN3WTF6StringE +_ZN7WebCore4Page24dispatchBeforePrintEventEv +_ZN7WebCore4Page24findStringMatchingRangesERKN3WTF6StringENS1_9OptionSetINS_14FindOptionFlagEEEiRNS1_6VectorINS1_6RefPtrINS_5RangeENS1_13DumbPtrTraitsISA_EEEELm0ENS1_15CrashOnOverflowELm16EEERi +_ZN7WebCore4Page24replaceSelectionWithTextERKN3WTF6StringE +_ZN7WebCore4Page24resumeScriptedAnimationsEv +_ZN7WebCore4Page24scrollingStateTreeAsTextEv +_ZN7WebCore4Page24setCORSDisablingPatternsEON3WTF6VectorINS_21UserContentURLPatternELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN7WebCore4Page24suspendAllMediaBufferingEv +_ZN7WebCore4Page25notifyToInjectUserScriptsEv +_ZN7WebCore4Page25screenPropertiesDidChangeEv +_ZN7WebCore4Page25suspendScriptedAnimationsEv +_ZN7WebCore4Page26applicationDidBecomeActiveEv +_ZN7WebCore4Page26clearWheelEventTestMonitorEv +_ZN7WebCore4Page26setRemoteInspectionAllowedEb +_ZN7WebCore4Page26startMonitoringWheelEventsEb +_ZN7WebCore4Page27applicationWillResignActiveEv +_ZN7WebCore4Page27enableICECandidateFilteringEv +_ZN7WebCore4Page27enableLegacyPrivateBrowsingEb +_ZN7WebCore4Page27invalidateStylesForAllLinksEv +_ZN7WebCore4Page27setFullscreenControlsHiddenEb +_ZN7WebCore4Page27setUnobscuredSafeAreaInsetsERKNS_9RectEdgesIfEE +_ZN7WebCore4Page27setVerticalScrollElasticityENS_16ScrollElasticityE +_ZN7WebCore4Page27setZoomedOutPageScaleFactorEf +_ZN7WebCore4Page28disableICECandidateFilteringEv +_ZN7WebCore4Page28effectiveAppearanceDidChangeEbb +_ZN7WebCore4Page28removeInjectedUserStyleSheetERNS_14UserStyleSheetE +_ZN7WebCore4Page28setOverrideViewportArgumentsERKN3WTF8OptionalINS_17ViewportArgumentsEEE +_ZN7WebCore4Page28setPaginationLineGridEnabledEb +_ZN7WebCore4Page29applicationDidEnterBackgroundEv +_ZN7WebCore4Page29clearPreviousItemFromAllPagesEPNS_11HistoryItemE +_ZN7WebCore4Page29setFullscreenAutoHideDurationEN3WTF7SecondsE +_ZN7WebCore4Page29setHorizontalScrollElasticityENS_16ScrollElasticityE +_ZN7WebCore4Page29startTrackingRenderingUpdatesEv +_ZN7WebCore4Page30accessibilitySettingsDidChangeEv +_ZN7WebCore4Page30addActivityStateChangeObserverERNS_27ActivityStateChangeObserverE +_ZN7WebCore4Page30applicationWillEnterForegroundEv +_ZN7WebCore4Page30passiveTouchEventListenerRectsEv +_ZN7WebCore4Page30setNeedsRecalcStyleInAllFramesEv +_ZN7WebCore4Page31setRemoteInspectionNameOverrideERKN3WTF6StringE +_ZN7WebCore4Page31setUserInterfaceLayoutDirectionENS_28UserInterfaceLayoutDirectionE +_ZN7WebCore4Page32nonFastScrollableRectsForTestingEv +_ZN7WebCore4Page32setMemoryCacheClientCallsEnabledEb +_ZN7WebCore4Page33removeActivityStateChangeObserverERNS_27ActivityStateChangeObserverE +_ZN7WebCore4Page33synchronousScrollingReasonsAsTextEv +_ZN7WebCore4Page33touchEventRectsForEventForTestingERKN3WTF6StringE +_ZN7WebCore4Page34setInitialScaleIgnoringContentSizeEf +_ZN7WebCore4Page35resumeActiveDOMObjectsAndAnimationsEv +_ZN7WebCore4Page36setAllowsMediaDocumentInlinePlaybackEb +_ZN7WebCore4Page36setShouldSuppressScrollbarAnimationsEb +_ZN7WebCore4Page36suspendActiveDOMObjectsAndAnimationsEv +_ZN7WebCore4Page37setInLowQualityImageInterpolationModeEb +_ZN7WebCore4Page40passiveTouchEventListenerRectsForTestingEv +_ZN7WebCore4Page40setLowPowerModeEnabledOverrideForTestingEN3WTF8OptionalIbEE +_ZN7WebCore4Page40setLowPowerModeEnabledOverrideForTestingESt8optionalIbE +_ZN7WebCore4Page40updateMediaElementRateChangeRestrictionsEv +_ZN7WebCore4Page41setDOMTimerAlignmentIntervalIncreaseLimitEN3WTF7SecondsE +_ZN7WebCore4Page45setOutsideViewportThrottlingEnabledForTestingEb +_ZN7WebCore4Page52updateStyleForAllPagesAfterGlobalChangeInEnvironmentEv +_ZN7WebCore4Page8goToItemERNS_11HistoryItemENS_13FrameLoadTypeENS_27ShouldTreatAsContinuingLoadE +_ZN7WebCore4Page8setMutedEj +_ZN7WebCore4Page9initGroupEv +_ZN7WebCore4PageC1EONS_17PageConfigurationE +_ZN7WebCore4PageC2EONS_17PageConfigurationE +_ZN7WebCore4PageD1Ev +_ZN7WebCore4PageD2Ev +_ZN7WebCore4Path12closeSubpathEv +_ZN7WebCore4Path14addQuadCurveToERKNS_10FloatPointES3_ +_ZN7WebCore4Path14addRoundedRectERKNS_16FloatRoundedRectENS0_19RoundedRectStrategyE +_ZN7WebCore4Path14addRoundedRectERKNS_9FloatRectERKNS_9FloatSizeENS0_19RoundedRectStrategyE +_ZN7WebCore4Path16addBezierCurveToERKNS_10FloatPointES3_S3_ +_ZN7WebCore4Path18ensurePlatformPathEv +_ZN7WebCore4Path5clearEv +_ZN7WebCore4Path6moveToERKNS_10FloatPointE +_ZN7WebCore4Path9addLineToERKNS_10FloatPointE +_ZN7WebCore4PathC1EOS0_ +_ZN7WebCore4PathC1ERKS0_ +_ZN7WebCore4PathC1Ev +_ZN7WebCore4PathC2EOS0_ +_ZN7WebCore4PathC2ERKS0_ +_ZN7WebCore4PathC2Ev +_ZN7WebCore4PathD1Ev +_ZN7WebCore4PathD2Ev +_ZN7WebCore4PathaSEOS0_ +_ZN7WebCore4PathaSERKS0_ +_ZN7WebCore4Text16replaceWholeTextERKN3WTF6StringE +_ZN7WebCore4Text9splitTextEj +_ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_10AudioTrackE +_ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_10TimeRangesE +_ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_11DOMRectListE +_ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_12WebAnimationE +_ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_13FetchResponseE +_ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_14XMLHttpRequestE +_ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_15DOMRectReadOnlyE +_ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_16HTMLImageElementE +_ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_17AnimationTimelineE +_ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_17DOMMatrixReadOnlyE +_ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_19CSSStyleDeclarationE +_ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_19TextTrackCueGenericE +_ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_4FileE +_ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_5RangeE +_ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_6DOMURLE +_ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_6Path2DE +_ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_7DOMRectE +_ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_7ElementE +_ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_8DocumentE +_ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_8LocationE +_ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_9DOMMatrixE +_ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_9ImageDataE +_ZN7WebCore4toJSEPN3JSC14JSGlobalObjectERNS_11WindowProxyE +_ZN7WebCore4toJSEPN3JSC14JSGlobalObjectERNS_9DOMWindowE +_ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_10TimeRangesE +_ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_11DOMRectListE +_ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_13FetchResponseE +_ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_14XMLHttpRequestE +_ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_16HTMLImageElementE +_ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_17AnimationTimelineE +_ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_17DOMMatrixReadOnlyE +_ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_19CSSStyleDeclarationE +_ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_4FileE +_ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_5RangeE +_ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_6DOMURLE +_ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_6Path2DE +_ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_7DOMRectE +_ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_7ElementE +_ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_8DocumentE +_ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_9DOMMatrixE +_ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_9ImageDataE +_ZN7WebCore4toJSEPN3JSC9ExecStateERNS_11WindowProxyE +_ZN7WebCore4toJSEPN3JSC9ExecStateERNS_9DOMWindowE +_ZN7WebCore4toJSERNS_12VoidCallbackE +_ZN7WebCore4toJSERNS_14StringCallbackE +_ZN7WebCore50rangeExpandedByCharactersInDirectionAtWordBoundaryERKNS_15VisiblePositionEiNS_18SelectionDirectionE +_ZN7WebCore50restrictScaleFactorToInitialScaleIfNotUserScalableERNS_18ViewportAttributesE +_ZN7WebCore5Cairo11ShadowStateC1ERKNS_20GraphicsContextStateE +_ZN7WebCore5Cairo11ShadowStateC2ERKNS_20GraphicsContextStateE +_ZN7WebCore5Cairo11drawSurfaceERNS_20PlatformContextCairoEP14_cairo_surfaceRKNS_9FloatRectES7_NS_20InterpolationQualityEfRKNS0_11ShadowStateE +_ZN7WebCore5Cairo11drawSurfaceERNS_20PlatformContextCairoEP14_cairo_surfaceRKNS_9FloatRectES7_NS_20InterpolationQualityEfRKNS0_11ShadowStateERNS_15GraphicsContextE +_ZN7WebCore5Color10tagAsValidEv +_ZN7WebCore5Color11transparentE +_ZN7WebCore5Color5whiteE +_ZN7WebCore5ColorC1EOS0_ +_ZN7WebCore5ColorC1ERKN3WTF6StringE +_ZN7WebCore5ColorC1ERKS0_ +_ZN7WebCore5ColorC1EffffNS_10ColorSpaceE +_ZN7WebCore5ColorC2EOS0_ +_ZN7WebCore5ColorC2ERKN3WTF6StringE +_ZN7WebCore5ColorC2ERKS0_ +_ZN7WebCore5ColorC2EffffNS_10ColorSpaceE +_ZN7WebCore5ColoraSEOS0_ +_ZN7WebCore5ColoraSERKS0_ +_ZN7WebCore5Event6createERKN3WTF10AtomStringENS0_9CanBubbleENS0_12IsCancelableENS0_10IsComposedE +_ZN7WebCore5Event6createERKN3WTF12AtomicStringEbb +_ZN7WebCore5Event9initEventERKN3WTF10AtomStringEbb +_ZN7WebCore5Event9initEventERKN3WTF12AtomicStringEbb +_ZN7WebCore5Frame10createViewERKNS_7IntSizeERKN3WTF8OptionalINS_5ColorEEES3_RKNS_7IntRectEbNS_13ScrollbarModeEbSD_b +_ZN7WebCore5Frame10createViewERKNS_7IntSizeERKNS_5ColorEbS3_RKNS_7IntRectEbNS_13ScrollbarModeEbSA_b +_ZN7WebCore5Frame13rangeForPointERKNS_8IntPointE +_ZN7WebCore5Frame14frameForWidgetERKNS_6WidgetE +_ZN7WebCore5Frame14willDetachPageEv +_ZN7WebCore5Frame17injectUserScriptsENS_23UserScriptInjectionTimeE +_ZN7WebCore5Frame17setPageZoomFactorEf +_ZN7WebCore5Frame17setTextZoomFactorEf +_ZN7WebCore5Frame24searchForLabelsAboveCellERKN3JSC4Yarr17RegularExpressionEPNS_20HTMLTableCellElementEPm +_ZN7WebCore5Frame25setPageAndTextZoomFactorsEff +_ZN7WebCore5Frame27injectUserScriptImmediatelyERNS_15DOMWrapperWorldERKNS_10UserScriptE +_ZN7WebCore5Frame27resizePageRectsKeepingRatioERKNS_9FloatSizeES3_ +_ZN7WebCore5Frame4initEv +_ZN7WebCore5Frame6createEPNS_4PageEPNS_21HTMLFrameOwnerElementEON3WTF9UniqueRefINS_17FrameLoaderClientEEE +_ZN7WebCore5Frame6createEPNS_4PageEPNS_21HTMLFrameOwnerElementEPNS_17FrameLoaderClientE +_ZN7WebCore5Frame7setViewEON3WTF6RefPtrINS_9FrameViewENS1_13DumbPtrTraitsIS3_EEEE +_ZN7WebCore5FrameD0Ev +_ZN7WebCore5FrameD1Ev +_ZN7WebCore5FrameD2Ev +_ZN7WebCore5Image12supportsTypeERKN3WTF6StringE +_ZN7WebCore5Image20loadPlatformResourceEPKc +_ZN7WebCore5Image6createERNS_13ImageObserverE +_ZN7WebCore5Image7setDataEON3WTF6RefPtrINS_12SharedBufferENS1_13DumbPtrTraitsIS3_EEEEb +_ZN7WebCore5Image9nullImageEv +_ZN7WebCore5Range10insertNodeEON3WTF3RefINS_4NodeENS1_13DumbPtrTraitsIS3_EEEE +_ZN7WebCore5Range10selectNodeERNS_4NodeE +_ZN7WebCore5Range11setEndAfterERNS_4NodeE +_ZN7WebCore5Range12setEndBeforeERNS_4NodeE +_ZN7WebCore5Range13cloneContentsEv +_ZN7WebCore5Range13setStartAfterERNS_4NodeE +_ZN7WebCore5Range14deleteContentsEv +_ZN7WebCore5Range14isPointInRangeERNS_4NodeEj +_ZN7WebCore5Range14setStartBeforeERNS_4NodeE +_ZN7WebCore5Range15extractContentsEv +_ZN7WebCore5Range16surroundContentsERNS_4NodeE +_ZN7WebCore5Range18selectNodeContentsERNS_4NodeE +_ZN7WebCore5Range23commonAncestorContainerEPNS_4NodeES2_ +_ZN7WebCore5Range24createContextualFragmentERKN3WTF6StringE +_ZN7WebCore5Range6createERNS_8DocumentE +_ZN7WebCore5Range6createERNS_8DocumentEON3WTF6RefPtrINS_4NodeENS3_13DumbPtrTraitsIS5_EEEEiS9_i +_ZN7WebCore5Range6createERNS_8DocumentERKNS_15VisiblePositionES5_ +_ZN7WebCore5Range6createERNS_8DocumentERKNS_8PositionES5_ +_ZN7WebCore5Range6detachEv +_ZN7WebCore5Range6expandERKN3WTF6StringE +_ZN7WebCore5Range6setEndEON3WTF3RefINS_4NodeENS1_13DumbPtrTraitsIS3_EEEEj +_ZN7WebCore5Range6setEndERKNS_8PositionE +_ZN7WebCore5Range8collapseEb +_ZN7WebCore5Range8setStartEON3WTF3RefINS_4NodeENS1_13DumbPtrTraitsIS3_EEEEj +_ZN7WebCore5Range8setStartERKNS_8PositionE +_ZN7WebCore5RangeD1Ev +_ZN7WebCore5RangeD2Ev +_ZN7WebCore5Style5Scope22flushPendingSelfUpdateEv +_ZN7WebCore5Style5Scope29flushPendingDescendantUpdatesEv +_ZN7WebCore5Style5Scope30didChangeStyleSheetEnvironmentEv +_ZN7WebCore5Style5Scope8resolverEv +_ZN7WebCore5Style8Resolver21pseudoStyleForElementERKNS_7ElementERKNS0_20PseudoElementRequestERKNS_11RenderStyleEPS9_PKNS_14SelectorFilterE +_ZN7WebCore6Chrome16setStatusbarTextERNS_5FrameERKN3WTF6StringE +_ZN7WebCore6Chrome23enableSuddenTerminationEv +_ZN7WebCore6Chrome24disableSuddenTerminationEv +_ZN7WebCore6Chrome5printERNS_5FrameE +_ZN7WebCore6Cursor8fromTypeENS0_4TypeE +_ZN7WebCore6CursorC1EPNS_5ImageERKNS_8IntPointE +_ZN7WebCore6CursorC2EPNS_5ImageERKNS_8IntPointE +_ZN7WebCore6DOMURL12searchParamsEv +_ZN7WebCore6DOMURL15createObjectURLERNS_22ScriptExecutionContextERNS_4BlobE +_ZN7WebCore6DOMURL15createPublicURLERNS_22ScriptExecutionContextERNS_14URLRegistrableE +_ZN7WebCore6DOMURL15revokeObjectURLERNS_22ScriptExecutionContextERKN3WTF6StringE +_ZN7WebCore6DOMURL6createERKN3WTF6StringE +_ZN7WebCore6DOMURL6createERKN3WTF6StringERKS0_ +_ZN7WebCore6DOMURL6createERKN3WTF6StringES4_ +_ZN7WebCore6DOMURL7setHrefERKN3WTF6StringE +_ZN7WebCore6DOMURL8setQueryERKN3WTF6StringE +_ZN7WebCore6DOMURLC1EONS_3URLES2_ +_ZN7WebCore6DOMURLC2EONS_3URLES2_ +_ZN7WebCore6DOMURLD1Ev +_ZN7WebCore6DOMURLD2Ev +_ZN7WebCore6Editor10applyStyleEPNS_15StylePropertiesENS_10EditActionE +_ZN7WebCore6Editor10findStringERKN3WTF6StringENS1_9OptionSetINS_14FindOptionFlagEEE +_ZN7WebCore6Editor10insertTextERKN3WTF6StringEPNS_5EventENS_18TextEventInputTypeE +_ZN7WebCore6Editor13canDHTMLPasteEv +_ZN7WebCore6Editor13performDeleteEv +_ZN7WebCore6Editor13rangeForPointERKNS_8IntPointE +_ZN7WebCore6Editor13rangeOfStringERKN3WTF6StringEPNS_5RangeENS1_9OptionSetINS_14FindOptionFlagEEE +_ZN7WebCore6Editor13rangeOfStringERKN3WTF6StringERKNS1_8OptionalINS_11SimpleRangeEEENS1_9OptionSetINS_14FindOptionFlagEEE +_ZN7WebCore6Editor14setCompositionERKN3WTF6StringERKNS1_6VectorINS_20CompositionUnderlineELm0ENS1_15CrashOnOverflowELm16EEEjj +_ZN7WebCore6Editor14setCompositionERKN3WTF6StringERKNS1_6VectorINS_20CompositionUnderlineELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEERKNS5_INS_20CompositionHighlightELm0ES7_Lm16ES8_EEjj +_ZN7WebCore6Editor14simplifyMarkupEPNS_4NodeES2_ +_ZN7WebCore6Editor15pasteAsFragmentEON3WTF3RefINS_16DocumentFragmentENS1_13DumbPtrTraitsIS3_EEEEbbNS_22MailBlockquoteHandlingE +_ZN7WebCore6Editor16pasteAsPlainTextENS0_20FromMenuOrKeyBindingE +_ZN7WebCore6Editor16pasteAsPlainTextERKN3WTF6StringEb +_ZN7WebCore6Editor16pasteAsPlainTextEv +_ZN7WebCore6Editor17cancelCompositionEv +_ZN7WebCore6Editor17insertOrderedListEv +_ZN7WebCore6Editor18confirmCompositionERKN3WTF6StringE +_ZN7WebCore6Editor18confirmCompositionERKN3WTF6StringEj +_ZN7WebCore6Editor18confirmCompositionEv +_ZN7WebCore6Editor18insertDictatedTextERKN3WTF6StringERKNS1_6VectorINS_20DictationAlternativeELm0ENS1_15CrashOnOverflowELm16EEEPNS_5EventE +_ZN7WebCore6Editor18insertDictatedTextERKN3WTF6StringERKNS1_6VectorINS_20DictationAlternativeELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEEPNS_5EventE +_ZN7WebCore6Editor19countMatchesForTextERKN3WTF6StringEPNS_5RangeENS1_9OptionSetINS_14FindOptionFlagEEEjbPNS1_6VectorINS1_6RefPtrIS5_NS1_13DumbPtrTraitsIS5_EEEELm0ENS1_15CrashOnOverflowELm16EEE +_ZN7WebCore6Editor19countMatchesForTextERKN3WTF6StringERKNS1_8OptionalINS_11SimpleRangeEEENS1_9OptionSetINS_14FindOptionFlagEEEjbPNS1_6VectorIS6_Lm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN7WebCore6Editor19deleteWithDirectionENS_18SelectionDirectionENS_15TextGranularityEbb +_ZN7WebCore6Editor19insertEditableImageEv +_ZN7WebCore6Editor19insertUnorderedListEv +_ZN7WebCore6Editor20canSmartCopyOrDeleteEv +_ZN7WebCore6Editor21applyStyleToSelectionEON3WTF3RefINS_12EditingStyleENS1_13DumbPtrTraitsIS3_EEEENS_10EditActionENS0_15ColorFilterModeE +_ZN7WebCore6Editor21applyStyleToSelectionEPNS_15StylePropertiesENS_10EditActionE +_ZN7WebCore6Editor21insertTextPlaceholderERKNS_7IntSizeE +_ZN7WebCore6Editor21removeTextPlaceholderERNS_22TextPlaceholderElementE +_ZN7WebCore6Editor22styleForSelectionStartEPNS_5FrameERPNS_4NodeE +_ZN7WebCore6Editor22writeImageToPasteboardERNS_10PasteboardERNS_7ElementERKN3WTF3URLERKNS5_6StringE +_ZN7WebCore6Editor22writeImageToPasteboardERNS_10PasteboardERNS_7ElementERKNS_3URLERKN3WTF6StringE +_ZN7WebCore6Editor23changeSelectionListTypeEv +_ZN7WebCore6Editor23handleAcceptedCandidateENS_18TextCheckingResultE +_ZN7WebCore6Editor23setBaseWritingDirectionE16WritingDirection +_ZN7WebCore6Editor23setBaseWritingDirectionENS_16WritingDirectionE +_ZN7WebCore6Editor24advanceToNextMisspellingEb +_ZN7WebCore6Editor24computeAndSetTypingStyleERNS_15StylePropertiesENS_10EditActionE +_ZN7WebCore6Editor24isSelectionUngrammaticalEv +_ZN7WebCore6Editor24replaceSelectionWithTextERKN3WTF6StringENS0_17SelectReplacementENS0_12SmartReplaceENS_10EditActionE +_ZN7WebCore6Editor24replaceSelectionWithTextERKN3WTF6StringEbbNS_10EditActionE +_ZN7WebCore6Editor25setIgnoreSelectionChangesEbNS0_15RevealSelectionE +_ZN7WebCore6Editor26changeBackToReplacedStringERKN3WTF6StringE +_ZN7WebCore6Editor26decreaseSelectionListLevelEv +_ZN7WebCore6Editor26increaseSelectionListLevelEv +_ZN7WebCore6Editor26toggleOverwriteModeEnabledEv +_ZN7WebCore6Editor26writeSelectionToPasteboardERNS_10PasteboardE +_ZN7WebCore6Editor28replaceRangeForSpellCheckingERKNS_11SimpleRangeERKN3WTF6StringE +_ZN7WebCore6Editor28replaceSelectionWithFragmentERNS_16DocumentFragmentENS0_17SelectReplacementENS0_12SmartReplaceENS0_10MatchStyleENS_10EditActionENS_22MailBlockquoteHandlingE +_ZN7WebCore6Editor28replaceSelectionWithFragmentERNS_16DocumentFragmentEbbbNS_10EditActionENS_22MailBlockquoteHandlingE +_ZN7WebCore6Editor28updateEditorUINowIfScheduledEv +_ZN7WebCore6Editor29canDecreaseSelectionListLevelEv +_ZN7WebCore6Editor29canIncreaseSelectionListLevelEv +_ZN7WebCore6Editor29handleAlternativeTextUIResultERKN3WTF6StringE +_ZN7WebCore6Editor29toggleContinuousSpellCheckingEv +_ZN7WebCore6Editor30deleteSelectionWithSmartDeleteEbNS_10EditActionE +_ZN7WebCore6Editor30pasteAsPlainTextBypassingDHTMLEv +_ZN7WebCore6Editor33increaseSelectionListLevelOrderedEv +_ZN7WebCore6Editor33markMisspellingsAfterTypingToWordERKNS_15VisiblePositionERKNS_16VisibleSelectionEb +_ZN7WebCore6Editor34setMarkedTextMatchesAreHighlightedEb +_ZN7WebCore6Editor35increaseSelectionListLevelUnorderedEv +_ZN7WebCore6Editor38commandIsSupportedFromMenuOrKeyBindingERKN3WTF6StringE +_ZN7WebCore6Editor39insertParagraphSeparatorInQuotedContentEv +_ZN7WebCore6Editor3cutENS0_20FromMenuOrKeyBindingE +_ZN7WebCore6Editor3cutEv +_ZN7WebCore6Editor4copyENS0_20FromMenuOrKeyBindingE +_ZN7WebCore6Editor4copyEv +_ZN7WebCore6Editor5pasteENS0_20FromMenuOrKeyBindingE +_ZN7WebCore6Editor5pasteEv +_ZN7WebCore6Editor6indentEv +_ZN7WebCore6Editor7CommandC1Ev +_ZN7WebCore6Editor7CommandC2Ev +_ZN7WebCore6Editor7commandERKN3WTF6StringE +_ZN7WebCore6Editor7copyURLERKN3WTF3URLERKNS1_6StringE +_ZN7WebCore6Editor7copyURLERKNS_3URLERKN3WTF6StringE +_ZN7WebCore6Editor7outdentEv +_ZN7WebCore6Editor9copyImageERKNS_13HitTestResultE +_ZN7WebCore6FourCC10fromStringERKN3WTF6StringE +_ZN7WebCore6FourCCC1Ej +_ZN7WebCore6FourCCC2Ej +_ZN7WebCore6ISOBox14minimumBoxSizeEv +_ZN7WebCore6ISOBox4readERN3JSC8DataViewE +_ZN7WebCore6ISOBox4readERN3JSC8DataViewERj +_ZN7WebCore6ISOBox5parseERN3JSC8DataViewERj +_ZN7WebCore6ISOBox7peekBoxERN3JSC8DataViewEj +_ZN7WebCore6ISOBoxC1ERKS0_ +_ZN7WebCore6ISOBoxC1Ev +_ZN7WebCore6ISOBoxC2ERKS0_ +_ZN7WebCore6ISOBoxC2Ev +_ZN7WebCore6ISOBoxD0Ev +_ZN7WebCore6ISOBoxD1Ev +_ZN7WebCore6ISOBoxD2Ev +_ZN7WebCore6ISOBoxdaEPv +_ZN7WebCore6ISOBoxdlEPv +_ZN7WebCore6ISOBoxnaEm +_ZN7WebCore6ISOBoxnaEmPv +_ZN7WebCore6ISOBoxnwEm +_ZN7WebCore6ISOBoxnwEm10NotNullTagPv +_ZN7WebCore6ISOBoxnwEmPv +_ZN7WebCore6JSFile11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE +_ZN7WebCore6JSFile14finishCreationERN3JSC2VME +_ZN7WebCore6JSFile14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE +_ZN7WebCore6JSFile15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore6JSFile15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE +_ZN7WebCore6JSFile15subspaceForImplERN3JSC2VME +_ZN7WebCore6JSFile4infoEv +_ZN7WebCore6JSFile6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_4FileENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore6JSFile6s_infoE +_ZN7WebCore6JSFile9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore6JSFile9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore6JSFileC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_4FileENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore6JSFileC1ERKS0_ +_ZN7WebCore6JSFileC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_4FileENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore6JSFileC2ERKS0_ +_ZN7WebCore6JSFileD1Ev +_ZN7WebCore6JSFileD2Ev +_ZN7WebCore6JSNode11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE +_ZN7WebCore6JSNode13visitChildrenEPN3JSC6JSCellERNS1_11SlotVisitorE +_ZN7WebCore6JSNode14finishCreationERN3JSC2VME +_ZN7WebCore6JSNode14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE +_ZN7WebCore6JSNode15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore6JSNode15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE +_ZN7WebCore6JSNode15subspaceForImplERN3JSC2VME +_ZN7WebCore6JSNode22visitOutputConstraintsEPN3JSC6JSCellERNS1_11SlotVisitorE +_ZN7WebCore6JSNode23visitAdditionalChildrenERN3JSC11SlotVisitorE +_ZN7WebCore6JSNode4infoEv +_ZN7WebCore6JSNode6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_4NodeENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore6JSNode6s_infoE +_ZN7WebCore6JSNode9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore6JSNode9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore6JSNodeC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_4NodeENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore6JSNodeC1ERKS0_ +_ZN7WebCore6JSNodeC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_4NodeENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore6JSNodeC2ERKS0_ +_ZN7WebCore6JSNodeD1Ev +_ZN7WebCore6JSNodeD2Ev +_ZN7WebCore6JSNodeaSERKS0_ +_ZN7WebCore6LengthC1EON3WTF3RefINS_16CalculationValueENS1_13DumbPtrTraitsIS3_EEEE +_ZN7WebCore6LengthC2EON3WTF3RefINS_16CalculationValueENS1_13DumbPtrTraitsIS3_EEEE +_ZN7WebCore6Path2D6createERKN3WTF6StringE +_ZN7WebCore6Path2D6createERKNS_4PathE +_ZN7WebCore6Path2D6createERKS0_ +_ZN7WebCore6Path2D6createEv +_ZN7WebCore6Path2D7addPathERS0_ONS_15DOMMatrix2DInitE +_ZN7WebCore6Path2DC1ERKNS_4PathE +_ZN7WebCore6Path2DC1Ev +_ZN7WebCore6Path2DC2ERKNS_4PathE +_ZN7WebCore6Path2DC2Ev +_ZN7WebCore6Path2DD0Ev +_ZN7WebCore6Path2DD1Ev +_ZN7WebCore6Path2DD2Ev +_ZN7WebCore6Path2DdaEPv +_ZN7WebCore6Path2DdlEPv +_ZN7WebCore6Path2DnaEm +_ZN7WebCore6Path2DnaEmPv +_ZN7WebCore6Path2DnwEm +_ZN7WebCore6Path2DnwEm10NotNullTagPv +_ZN7WebCore6Path2DnwEmPv +_ZN7WebCore6Region21updateBoundsFromShapeEv +_ZN7WebCore6Region5Shape9translateERKNS_7IntSizeE +_ZN7WebCore6Region5uniteERKS0_ +_ZN7WebCore6Region8subtractERKS0_ +_ZN7WebCore6Region9intersectERKS0_ +_ZN7WebCore6Region9translateERKNS_7IntSizeE +_ZN7WebCore6RegionC1EOS0_ +_ZN7WebCore6RegionC1ERKNS_7IntRectE +_ZN7WebCore6RegionC1ERKS0_ +_ZN7WebCore6RegionC1Ev +_ZN7WebCore6RegionC2EOS0_ +_ZN7WebCore6RegionC2ERKNS_7IntRectE +_ZN7WebCore6RegionC2ERKS0_ +_ZN7WebCore6RegionC2Ev +_ZN7WebCore6RegionD1Ev +_ZN7WebCore6RegionD2Ev +_ZN7WebCore6RegionaSEOS0_ +_ZN7WebCore6RegionaSERKS0_ +_ZN7WebCore6Widget12setFrameRectERKNS_7IntRectE +_ZN7WebCore6Widget16removeFromParentEv +_ZN7WebCore6Widget4hideEv +_ZN7WebCore6Widget4showEv +_ZN7WebCore6Widget5paintERNS_15GraphicsContextERKNS_7IntRectENS0_25SecurityOriginPaintPolicyE +_ZN7WebCore6Widget5paintERNS_15GraphicsContextERKNS_7IntRectENS0_25SecurityOriginPaintPolicyEPNS_18EventRegionContextE +_ZN7WebCore6Widget8setFocusEb +_ZN7WebCore6Widget9setParentEPNS_10ScrollViewE +_ZN7WebCore6WidgetC2EPv +_ZN7WebCore6WidgetD0Ev +_ZN7WebCore6WidgetD1Ev +_ZN7WebCore6WidgetD2Ev +_ZN7WebCore6toHSLAERKNS_5SRGBAIfEE +_ZN7WebCore7CSSRule10setCssTextERKN3WTF6StringE +_ZN7WebCore7Element10clientLeftEv +_ZN7WebCore7Element10offsetLeftEv +_ZN7WebCore7Element11clientWidthEv +_ZN7WebCore7Element11offsetWidthEv +_ZN7WebCore7Element11setTabIndexEi +_ZN7WebCore7Element12clientHeightEv +_ZN7WebCore7Element12offsetHeightEv +_ZN7WebCore7Element12setAttributeERKN3WTF10AtomStringES4_ +_ZN7WebCore7Element12setAttributeERKN3WTF12AtomicStringES4_ +_ZN7WebCore7Element12setAttributeERKNS_13QualifiedNameERKN3WTF10AtomStringE +_ZN7WebCore7Element12setAttributeERKNS_13QualifiedNameERKN3WTF12AtomicStringE +_ZN7WebCore7Element12setInnerHTMLERKN3WTF6StringE +_ZN7WebCore7Element12setOuterHTMLERKN3WTF6StringE +_ZN7WebCore7Element13scrollByLinesEi +_ZN7WebCore7Element13scrollByPagesEi +_ZN7WebCore7Element14getClientRectsEv +_ZN7WebCore7Element14scrollIntoViewEON3WTF8OptionalINS1_7VariantIJbNS_21ScrollIntoViewOptionsEEEEEE +_ZN7WebCore7Element14scrollIntoViewEb +_ZN7WebCore7Element14setAttributeNSERKN3WTF10AtomStringES4_S4_ +_ZN7WebCore7Element14setAttributeNSERKN3WTF12AtomicStringES4_S4_ +_ZN7WebCore7Element15removeAttributeERKN3WTF10AtomStringE +_ZN7WebCore7Element15removeAttributeERKN3WTF12AtomicStringE +_ZN7WebCore7Element16getAttributeNodeERKN3WTF10AtomStringE +_ZN7WebCore7Element16getAttributeNodeERKN3WTF12AtomicStringE +_ZN7WebCore7Element16setAttributeNodeERNS_4AttrE +_ZN7WebCore7Element17removeAttributeNSERKN3WTF10AtomStringES4_ +_ZN7WebCore7Element17removeAttributeNSERKN3WTF12AtomicStringES4_ +_ZN7WebCore7Element18boundingClientRectEv +_ZN7WebCore7Element18getAttributeNodeNSERKN3WTF10AtomStringES4_ +_ZN7WebCore7Element18getAttributeNodeNSERKN3WTF12AtomicStringES4_ +_ZN7WebCore7Element18insertAdjacentHTMLERKN3WTF6StringES4_ +_ZN7WebCore7Element18insertAdjacentTextERKN3WTF6StringES4_ +_ZN7WebCore7Element18setAttributeNodeNSERNS_4AttrE +_ZN7WebCore7Element19removeAttributeNodeERNS_4AttrE +_ZN7WebCore7Element19setBooleanAttributeERKNS_13QualifiedNameEb +_ZN7WebCore7Element20bindingsOffsetParentEv +_ZN7WebCore7Element20offsetTopForBindingsEv +_ZN7WebCore7Element20setIntegralAttributeERKNS_13QualifiedNameEi +_ZN7WebCore7Element21boundsInRootViewSpaceEv +_ZN7WebCore7Element21insertAdjacentElementERKN3WTF6StringERS0_ +_ZN7WebCore7Element21offsetLeftForBindingsEv +_ZN7WebCore7Element22scrollIntoViewIfNeededEb +_ZN7WebCore7Element22setTabIndexForBindingsEi +_ZN7WebCore7Element23offsetParentForBindingsEv +_ZN7WebCore7Element23webkitRequestFullscreenEv +_ZN7WebCore7Element25ensureUserAgentShadowRootEv +_ZN7WebCore7Element26scrollIntoViewIfNotVisibleEb +_ZN7WebCore7Element27dispatchMouseForceWillBeginEv +_ZN7WebCore7Element28setUnsignedIntegralAttributeERKNS_13QualifiedNameEj +_ZN7WebCore7Element34invalidateStyleAndLayerCompositionEv +_ZN7WebCore7Element34setAttributeWithoutSynchronizationERKNS_13QualifiedNameERKN3WTF10AtomStringE +_ZN7WebCore7Element34setAttributeWithoutSynchronizationERKNS_13QualifiedNameERKN3WTF12AtomicStringE +_ZN7WebCore7Element7closestERKN3WTF6StringE +_ZN7WebCore7Element7matchesERKN3WTF6StringE +_ZN7WebCore7Element9classListEv +_ZN7WebCore7Element9clientTopEv +_ZN7WebCore7Element9innerTextEv +_ZN7WebCore7Element9offsetTopEv +_ZN7WebCore7Element9outerTextEv +_ZN7WebCore7Element9setPseudoERKN3WTF10AtomStringE +_ZN7WebCore7Element9setPseudoERKN3WTF12AtomicStringE +_ZN7WebCore7IntRect5scaleEf +_ZN7WebCore7IntRect5uniteERKS0_ +_ZN7WebCore7IntRect9intersectERKS0_ +_ZN7WebCore7IntRectC1ERKNS_10LayoutRectE +_ZN7WebCore7IntRectC1ERKNS_9FloatRectE +_ZN7WebCore7IntRectC2ERKNS_10LayoutRectE +_ZN7WebCore7IntRectC2ERKNS_9FloatRectE +_ZN7WebCore7IntSizeC1ERKNS_9FloatSizeE +_ZN7WebCore7IntSizeC2ERKNS_9FloatSizeE +_ZN7WebCore7JSEvent9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore7JSRange11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE +_ZN7WebCore7JSRange14finishCreationERN3JSC2VME +_ZN7WebCore7JSRange14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE +_ZN7WebCore7JSRange15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore7JSRange15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE +_ZN7WebCore7JSRange15subspaceForImplERN3JSC2VME +_ZN7WebCore7JSRange4infoEv +_ZN7WebCore7JSRange6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_5RangeENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore7JSRange6s_infoE +_ZN7WebCore7JSRange7destroyEPN3JSC6JSCellE +_ZN7WebCore7JSRange9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore7JSRange9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore7JSRangeC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_5RangeENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore7JSRangeC1ERKS0_ +_ZN7WebCore7JSRangeC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_5RangeENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore7JSRangeC2ERKS0_ +_ZN7WebCore7JSRangeD1Ev +_ZN7WebCore7JSRangeD2Ev +_ZN7WebCore7JSRangeaSERKS0_ +_ZN7WebCore7Pattern24setPatternSpaceTransformERKNS_15AffineTransformE +_ZN7WebCore7Pattern6createEON3WTF3RefINS_5ImageENS1_13DumbPtrTraitsIS3_EEEEbb +_ZN7WebCore7PatternD1Ev +_ZN7WebCore7PatternD2Ev +_ZN7WebCore7Process10identifierEv +_ZN7WebCore7Process13setIdentifierEN3WTF16ObjectIdentifierINS_21ProcessIdentifierTypeEEE +_ZN7WebCore7RunLoop21initializeMainRunLoopEv +_ZN7WebCore7RunLoop3runEv +_ZN7WebCore7RunLoop4mainEv +_ZN7WebCore7RunLoop4stopEv +_ZN7WebCore7UIEvent11initUIEventERKN3WTF10AtomStringEbbONS1_6RefPtrINS_11WindowProxyENS1_13DumbPtrTraitsIS6_EEEEi +_ZN7WebCore7UIEvent11initUIEventERKN3WTF12AtomicStringEbbONS1_6RefPtrINS_11WindowProxyENS1_13DumbPtrTraitsIS6_EEEEi +_ZN7WebCore7cookiesERNS_8DocumentERKNS_3URLE +_ZN7WebCore7makeRGBEiii +_ZN7WebCore7toSRGBAERKNS_11LinearSRGBAIfEE +_ZN7WebCore7toSRGBAERKNS_4HSLAIfEE +_ZN7WebCore7toSRGBAERKNS_9DisplayP3IfEE +_ZN7WebCore8CSSValue7destroyEv +_ZN7WebCore8DOMTimerD0Ev +_ZN7WebCore8DOMTimerD1Ev +_ZN7WebCore8DOMTimerD2Ev +_ZN7WebCore8Document10importNodeERNS_4NodeEb +_ZN7WebCore8Document10setBgColorERKN3WTF6StringE +_ZN7WebCore8Document10setCharsetERKN3WTF6StringE +_ZN7WebCore8Document10setFgColorERKN3WTF6StringE +_ZN7WebCore8Document11createEventERKN3WTF6StringE +_ZN7WebCore8Document11createRangeEv +_ZN7WebCore8Document11execCommandERKN3WTF6StringEbS4_ +_ZN7WebCore8Document11styleSheetsEv +_ZN7WebCore8Document12allDocumentsEv +_ZN7WebCore8Document12lastModifiedEv +_ZN7WebCore8Document12updateLayoutEv +_ZN7WebCore8Document13activeElementEv +_ZN7WebCore8Document13createCommentERKN3WTF6StringE +_ZN7WebCore8Document13createElementERKNS_13QualifiedNameEb +_ZN7WebCore8Document13setAlinkColorERKN3WTF6StringE +_ZN7WebCore8Document13setDesignModeERKN3WTF6StringE +_ZN7WebCore8Document13setVlinkColorERKN3WTF6StringE +_ZN7WebCore8Document13setXMLVersionERKN3WTF6StringE +_ZN7WebCore8Document13svgExtensionsEv +_ZN7WebCore8Document14createTextNodeERKN3WTF6StringE +_ZN7WebCore8Document14implementationEv +_ZN7WebCore8Document14setDocumentURIERKN3WTF6StringE +_ZN7WebCore8Document15allDocumentsMapEv +_ZN7WebCore8Document15createAttributeERKN3WTF6StringE +_ZN7WebCore8Document15createElementNSERKN3WTF10AtomStringERKNS1_6StringE +_ZN7WebCore8Document15createElementNSERKN3WTF12AtomicStringERKNS1_6StringE +_ZN7WebCore8Document15openForBindingsEPS0_RKN3WTF6StringES5_ +_ZN7WebCore8Document15openForBindingsERNS_9DOMWindowES2_RKN3WTF6StringERKNS3_10AtomStringES6_ +_ZN7WebCore8Document15openForBindingsERNS_9DOMWindowES2_RKN3WTF6StringERKNS3_12AtomicStringES6_ +_ZN7WebCore8Document16addAudioProducerEPNS_13MediaProducerE +_ZN7WebCore8Document16addAudioProducerERNS_13MediaProducerE +_ZN7WebCore8Document16closeForBindingsEv +_ZN7WebCore8Document16createExpressionERKN3WTF6StringEONS1_6RefPtrINS_15XPathNSResolverENS1_13DumbPtrTraitsIS6_EEEE +_ZN7WebCore8Document16createNSResolverEPNS_4NodeE +_ZN7WebCore8Document16createNSResolverERNS_4NodeE +_ZN7WebCore8Document16createTreeWalkerERNS_4NodeEmON3WTF6RefPtrINS_10NodeFilterENS3_13DumbPtrTraitsIS5_EEEEb +_ZN7WebCore8Document16getOverrideStyleEPNS_7ElementERKN3WTF6StringE +_ZN7WebCore8Document16isPageBoxVisibleEi +_ZN7WebCore8Document16scrollingElementEv +_ZN7WebCore8Document16setXMLStandaloneEb +_ZN7WebCore8Document17addConsoleMessageEN3JSC13MessageSourceENS1_12MessageLevelERKN3WTF6StringEm +_ZN7WebCore8Document17addConsoleMessageEOSt10unique_ptrIN9Inspector14ConsoleMessageESt14default_deleteIS3_EE +_ZN7WebCore8Document17createAttributeNSERKN3WTF10AtomStringERKNS1_6StringEb +_ZN7WebCore8Document17createAttributeNSERKN3WTF12AtomicStringERKNS1_6StringEb +_ZN7WebCore8Document17queryCommandStateERKN3WTF6StringE +_ZN7WebCore8Document17queryCommandValueERKN3WTF6StringE +_ZN7WebCore8Document17setBodyOrFramesetEON3WTF6RefPtrINS_11HTMLElementENS1_13DumbPtrTraitsIS3_EEEE +_ZN7WebCore8Document17setFocusedElementEPNS_7ElementENS_14FocusDirectionENS0_22FocusRemovalEventsModeE +_ZN7WebCore8Document18createCDATASectionERKN3WTF6StringE +_ZN7WebCore8Document18createNodeIteratorERNS_4NodeEmON3WTF6RefPtrINS_10NodeFilterENS3_13DumbPtrTraitsIS5_EEEEb +_ZN7WebCore8Document18registerCollectionERNS_14HTMLCollectionE +_ZN7WebCore8Document19accessSVGExtensionsEv +_ZN7WebCore8Document19caretRangeFromPointEii +_ZN7WebCore8Document19dispatchWindowEventERNS_5EventEPNS_11EventTargetE +_ZN7WebCore8Document19queryCommandEnabledERKN3WTF6StringE +_ZN7WebCore8Document19removeAudioProducerEPNS_13MediaProducerE +_ZN7WebCore8Document19removeAudioProducerERNS_13MediaProducerE +_ZN7WebCore8Document19updateStyleIfNeededEv +_ZN7WebCore8Document20identifierForElementERNS_7ElementE +_ZN7WebCore8Document20queryCommandIndetermERKN3WTF6StringE +_ZN7WebCore8Document20updateIsPlayingMediaEm +_ZN7WebCore8Document20webkitExitFullscreenEv +_ZN7WebCore8Document21queryCommandSupportedERKN3WTF6StringE +_ZN7WebCore8Document22createDocumentFragmentEv +_ZN7WebCore8Document22scrollingElementForAPIEv +_ZN7WebCore8Document22setAnimatingFullScreenEb +_ZN7WebCore8Document22webkitCancelFullScreenEv +_ZN7WebCore8Document23setAsRunningUserScriptsEv +_ZN7WebCore8Document23setLinkColorForBindingsERKN3WTF6StringE +_ZN7WebCore8Document24addMediaCanStartListenerEPNS_21MediaCanStartListenerE +_ZN7WebCore8Document24addMediaCanStartListenerERNS_21MediaCanStartListenerE +_ZN7WebCore8Document24createElementForBindingsERKN3WTF10AtomStringE +_ZN7WebCore8Document24createElementForBindingsERKN3WTF12AtomicStringE +_ZN7WebCore8Document24scheduleFullStyleRebuildEv +_ZN7WebCore8Document24setSelectedStylesheetSetERKN3WTF6StringE +_ZN7WebCore8Document24setShouldCreateRenderersEb +_ZN7WebCore8Document25createCSSStyleDeclarationEv +_ZN7WebCore8Document25ensureTimelinesControllerEv +_ZN7WebCore8Document25scheduleForcedStyleRecalcEv +_ZN7WebCore8Document25setConsoleMessageListenerEON3WTF6RefPtrINS_14StringCallbackENS1_13DumbPtrTraitsIS3_EEEE +_ZN7WebCore8Document25startTrackingStyleRecalcsEv +_ZN7WebCore8Document26pageSizeAndMarginsInPixelsEiRNS_7IntSizeERiS3_S3_S3_ +_ZN7WebCore8Document26textManipulationControllerEv +_ZN7WebCore8Document27createProcessingInstructionERKN3WTF6StringES4_ +_ZN7WebCore8Document27removeMediaCanStartListenerEPNS_21MediaCanStartListenerE +_ZN7WebCore8Document27removeMediaCanStartListenerERNS_21MediaCanStartListenerE +_ZN7WebCore8Document27setFullscreenControlsHiddenEb +_ZN7WebCore8Document28searchForElementByIdentifierERKN3WTF16ObjectIdentifierINS_21ElementIdentifierTypeEEE +_ZN7WebCore8Document28setNeedsDOMWindowResizeEventEv +_ZN7WebCore8Document28setOverrideViewportArgumentsERKSt8optionalINS_17ViewportArgumentsEE +_ZN7WebCore8Document33webkitDidExitFullScreenForElementEPNS_7ElementE +_ZN7WebCore8Document34webkitDidEnterFullScreenForElementEPNS_7ElementE +_ZN7WebCore8Document34webkitWillExitFullScreenForElementEPNS_7ElementE +_ZN7WebCore8Document35enqueueSecurityPolicyViolationEventEONS_28SecurityPolicyViolationEvent4InitE +_ZN7WebCore8Document35webkitWillEnterFullScreenForElementEPNS_7ElementE +_ZN7WebCore8Document36updateLayoutIgnorePendingStylesheetsENS0_18RunPostLayoutTasksE +_ZN7WebCore8Document46wasLoadedWithDataTransferFromPrevalentResourceEv +_ZN7WebCore8Document4headEv +_ZN7WebCore8Document4openEPS0_ +_ZN7WebCore8Document56hasRequestedPageSpecificStorageAccessWithUserInteractionERKNS_17RegistrableDomainE +_ZN7WebCore8Document59setHasRequestedPageSpecificStorageAccessWithUserInteractionERKNS_17RegistrableDomainE +_ZN7WebCore8Document5closeEv +_ZN7WebCore8Document5formsEv +_ZN7WebCore8Document5linksEv +_ZN7WebCore8Document5writeEPS0_ON3WTF6VectorINS2_6StringELm0ENS2_15CrashOnOverflowELm16EEE +_ZN7WebCore8Document5writeEPS0_ON3WTF6VectorINS2_6StringELm0ENS2_15CrashOnOverflowELm16ENS2_10FastMallocEEE +_ZN7WebCore8Document6cookieEv +_ZN7WebCore8Document6embedsEv +_ZN7WebCore8Document6imagesEv +_ZN7WebCore8Document6setDirERKN3WTF10AtomStringE +_ZN7WebCore8Document6setDirERKN3WTF12AtomicStringE +_ZN7WebCore8Document7anchorsEv +_ZN7WebCore8Document7appletsEv +_ZN7WebCore8Document7hitTestERKNS_14HitTestRequestERNS_13HitTestResultE +_ZN7WebCore8Document7pluginsEv +_ZN7WebCore8Document7scriptsEv +_ZN7WebCore8Document7writelnEPS0_ON3WTF6VectorINS2_6StringELm0ENS2_15CrashOnOverflowELm16EEE +_ZN7WebCore8Document7writelnEPS0_ON3WTF6VectorINS2_6StringELm0ENS2_15CrashOnOverflowELm16ENS2_10FastMallocEEE +_ZN7WebCore8Document8evaluateERKN3WTF6StringEPNS_4NodeEONS1_6RefPtrINS_15XPathNSResolverENS1_13DumbPtrTraitsIS8_EEEEtPNS_11XPathResultE +_ZN7WebCore8Document8evaluateERKN3WTF6StringERNS_4NodeEONS1_6RefPtrINS_15XPathNSResolverENS1_13DumbPtrTraitsIS8_EEEEtPNS_11XPathResultE +_ZN7WebCore8Document8postTaskEONS_22ScriptExecutionContext4TaskE +_ZN7WebCore8Document8referrerEv +_ZN7WebCore8Document8setTitleERKN3WTF6StringE +_ZN7WebCore8Document8timelineEv +_ZN7WebCore8Document9adoptNodeERNS_4NodeE +_ZN7WebCore8Document9setCookieERKN3WTF6StringE +_ZN7WebCore8FormData10appendBlobERKN3WTF3URLE +_ZN7WebCore8FormData10appendBlobERKNS_3URLE +_ZN7WebCore8FormData10appendDataEPKvm +_ZN7WebCore8FormData15appendFileRangeERKN3WTF6StringExxNS1_8OptionalINS1_8WallTimeEEE +_ZN7WebCore8FormData15appendFileRangeERKN3WTF6StringExxdb +_ZN7WebCore8FormData16prepareForUploadEv +_ZN7WebCore8FormData21resolveBlobReferencesEPNS_16BlobRegistryImplE +_ZN7WebCore8FormData6createEPKvm +_ZN7WebCore8FormData6createEv +_ZN7WebCore8FormDataD1Ev +_ZN7WebCore8FormDataD2Ev +_ZN7WebCore8Gradient12addColorStopEONS0_9ColorStopE +_ZN7WebCore8Gradient12addColorStopERKNS0_9ColorStopE +_ZN7WebCore8Gradient12addColorStopEfRKNS_5ColorE +_ZN7WebCore8Gradient15setSpreadMethodENS_20GradientSpreadMethodE +_ZN7WebCore8Gradient19setSortedColorStopsEON3WTF6VectorINS0_9ColorStopELm2ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN7WebCore8Gradient25setGradientSpaceTransformERKNS_15AffineTransformE +_ZN7WebCore8Gradient6createEON3WTF7VariantIJNS0_10LinearDataENS0_10RadialDataENS0_9ConicDataEEEE +_ZN7WebCore8GradientD1Ev +_ZN7WebCore8GradientD2Ev +_ZN7WebCore8IntPointC1ERKNS_10FloatPointE +_ZN7WebCore8IntPointC1ERKNS_7IntSizeE +_ZN7WebCore8IntPointC2ERKNS_10FloatPointE +_ZN7WebCore8IntPointC2ERKNS_7IntSizeE +_ZN7WebCore8JSDOMURL11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE +_ZN7WebCore8JSDOMURL13visitChildrenEPN3JSC6JSCellERNS1_11SlotVisitorE +_ZN7WebCore8JSDOMURL14finishCreationERN3JSC2VME +_ZN7WebCore8JSDOMURL14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE +_ZN7WebCore8JSDOMURL15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore8JSDOMURL15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE +_ZN7WebCore8JSDOMURL15subspaceForImplERN3JSC2VME +_ZN7WebCore8JSDOMURL4infoEv +_ZN7WebCore8JSDOMURL6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_6DOMURLENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore8JSDOMURL6s_infoE +_ZN7WebCore8JSDOMURL7destroyEPN3JSC6JSCellE +_ZN7WebCore8JSDOMURL9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore8JSDOMURL9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore8JSDOMURLC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_6DOMURLENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore8JSDOMURLC1ERKS0_ +_ZN7WebCore8JSDOMURLC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_6DOMURLENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore8JSDOMURLC2ERKS0_ +_ZN7WebCore8JSDOMURLD1Ev +_ZN7WebCore8JSDOMURLD2Ev +_ZN7WebCore8JSDOMURLaSERKS0_ +_ZN7WebCore8JSPath2D11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE +_ZN7WebCore8JSPath2D14finishCreationERN3JSC2VME +_ZN7WebCore8JSPath2D14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE +_ZN7WebCore8JSPath2D15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore8JSPath2D15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE +_ZN7WebCore8JSPath2D15subspaceForImplERN3JSC2VME +_ZN7WebCore8JSPath2D4infoEv +_ZN7WebCore8JSPath2D6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_6Path2DENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore8JSPath2D6s_infoE +_ZN7WebCore8JSPath2D7destroyEPN3JSC6JSCellE +_ZN7WebCore8JSPath2D9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore8JSPath2D9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore8JSPath2DC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_6Path2DENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore8JSPath2DC1ERKS0_ +_ZN7WebCore8JSPath2DC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_6Path2DENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore8JSPath2DC2ERKS0_ +_ZN7WebCore8JSPath2DD1Ev +_ZN7WebCore8JSPath2DD2Ev +_ZN7WebCore8JSPath2DaSERKS0_ +_ZN7WebCore8PositionC1EPNS_4NodeENS0_10AnchorTypeE +_ZN7WebCore8PositionC1EPNS_4NodeEiNS0_10AnchorTypeE +_ZN7WebCore8PositionC1EPNS_4NodeEjNS0_10AnchorTypeE +_ZN7WebCore8PositionC1EPNS_4NodeEjNS0_25LegacyEditingPositionFlagE +_ZN7WebCore8PositionC2EPNS_4NodeENS0_10AnchorTypeE +_ZN7WebCore8PositionC2EPNS_4NodeEiNS0_10AnchorTypeE +_ZN7WebCore8PositionC2EPNS_4NodeEjNS0_10AnchorTypeE +_ZN7WebCore8PositionC2EPNS_4NodeEjNS0_25LegacyEditingPositionFlagE +_ZN7WebCore8SVGNames10animateTagE +_ZN7WebCore8SVGNames10ascentAttrE +_ZN7WebCore8SVGNames10cursorAttrE +_ZN7WebCore8SVGNames10ellipseTagE +_ZN7WebCore8SVGNames10feBlendTagE +_ZN7WebCore8SVGNames10feFloodTagE +_ZN7WebCore8SVGNames10feFuncATagE +_ZN7WebCore8SVGNames10feFuncBTagE +_ZN7WebCore8SVGNames10feFuncGTagE +_ZN7WebCore8SVGNames10feFuncRTagE +_ZN7WebCore8SVGNames10feImageTagE +_ZN7WebCore8SVGNames10feMergeTagE +_ZN7WebCore8SVGNames10filterAttrE +_ZN7WebCore8SVGNames10formatAttrE +_ZN7WebCore8SVGNames10heightAttrE +_ZN7WebCore8SVGNames10methodAttrE +_ZN7WebCore8SVGNames10offsetAttrE +_ZN7WebCore8SVGNames10onzoomAttrE +_ZN7WebCore8SVGNames10orientAttrE +_ZN7WebCore8SVGNames10originAttrE +_ZN7WebCore8SVGNames10patternTagE +_ZN7WebCore8SVGNames10pointsAttrE +_ZN7WebCore8SVGNames10polygonTagE +_ZN7WebCore8SVGNames10radiusAttrE +_ZN7WebCore8SVGNames10resultAttrE +_ZN7WebCore8SVGNames10rotateAttrE +_ZN7WebCore8SVGNames10strokeAttrE +_ZN7WebCore8SVGNames10targetAttrE +_ZN7WebCore8SVGNames10valuesAttrE +_ZN7WebCore8SVGNames10widthsAttrE +_ZN7WebCore8SVGNames11altGlyphTagE +_ZN7WebCore8SVGNames11animateAttrE +_ZN7WebCore8SVGNames11azimuthAttrE +_ZN7WebCore8SVGNames11clipPathTagE +_ZN7WebCore8SVGNames11descentAttrE +_ZN7WebCore8SVGNames11displayAttrE +_ZN7WebCore8SVGNames11divisorAttrE +_ZN7WebCore8SVGNames11feOffsetTagE +_ZN7WebCore8SVGNames11glyphRefTagE +_ZN7WebCore8SVGNames11hangingAttrE +_ZN7WebCore8SVGNames11kerningAttrE +_ZN7WebCore8SVGNames11metadataTagE +_ZN7WebCore8SVGNames11onbeginAttrE +_ZN7WebCore8SVGNames11opacityAttrE +_ZN7WebCore8SVGNames11polylineTagE +_ZN7WebCore8SVGNames11restartAttrE +_ZN7WebCore8SVGNames11spacingAttrE +_ZN7WebCore8SVGNames11targetXAttrE +_ZN7WebCore8SVGNames11targetYAttrE +_ZN7WebCore8SVGNames11textPathTagE +_ZN7WebCore8SVGNames11unicodeAttrE +_ZN7WebCore8SVGNames11versionAttrE +_ZN7WebCore8SVGNames11viewBoxAttrE +_ZN7WebCore8SVGNames12additiveAttrE +_ZN7WebCore8SVGNames12calcModeAttrE +_ZN7WebCore8SVGNames12edgeModeAttrE +_ZN7WebCore8SVGNames12exponentAttrE +_ZN7WebCore8SVGNames12font_faceTagE +_ZN7WebCore8SVGNames12glyphRefAttrE +_ZN7WebCore8SVGNames12keyTimesAttrE +_ZN7WebCore8SVGNames12operatorAttrE +_ZN7WebCore8SVGNames12overflowAttrE +_ZN7WebCore8SVGNames12panose_1AttrE +_ZN7WebCore8SVGNames12x_heightAttrE +_ZN7WebCore8SVGNames13amplitudeAttrE +_ZN7WebCore8SVGNames13clip_pathAttrE +_ZN7WebCore8SVGNames13clip_ruleAttrE +_ZN7WebCore8SVGNames13directionAttrE +_ZN7WebCore8SVGNames13elevationAttrE +_ZN7WebCore8SVGNames13fill_ruleAttrE +_ZN7WebCore8SVGNames13filterResAttrE +_ZN7WebCore8SVGNames13font_sizeAttrE +_ZN7WebCore8SVGNames13interceptAttrE +_ZN7WebCore8SVGNames13keyPointsAttrE +_ZN7WebCore8SVGNames13maskUnitsAttrE +_ZN7WebCore8SVGNames13mask_typeAttrE +_ZN7WebCore8SVGNames13pointsAtXAttrE +_ZN7WebCore8SVGNames13pointsAtYAttrE +_ZN7WebCore8SVGNames13pointsAtZAttrE +_ZN7WebCore8SVGNames13repeatDurAttrE +_ZN7WebCore8SVGNames13transformAttrE +_ZN7WebCore8SVGNames13v_hangingAttrE +_ZN7WebCore8SVGNames14accumulateAttrE +_ZN7WebCore8SVGNames14alphabeticAttrE +_ZN7WebCore8SVGNames14altGlyphDefTagE +_ZN7WebCore8SVGNames14cap_heightAttrE +_ZN7WebCore8SVGNames14feCompositeTagE +_ZN7WebCore8SVGNames14feMergeNodeTagE +_ZN7WebCore8SVGNames14feSpotLightTagE +_ZN7WebCore8SVGNames14font_styleAttrE +_ZN7WebCore8SVGNames14glyph_nameAttrE +_ZN7WebCore8SVGNames14keySplinesAttrE +_ZN7WebCore8SVGNames14marker_endAttrE +_ZN7WebCore8SVGNames14marker_midAttrE +_ZN7WebCore8SVGNames14numOctavesAttrE +_ZN7WebCore8SVGNames14pathLengthAttrE +_ZN7WebCore8SVGNames14stop_colorAttrE +_ZN7WebCore8SVGNames14textLengthAttrE +_ZN7WebCore8SVGNames14vert_adv_yAttrE +_ZN7WebCore8SVGNames14viewTargetAttrE +_ZN7WebCore8SVGNames14visibilityAttrE +_ZN7WebCore8SVGNames14zoomAndPanAttrE +_ZN7WebCore8SVGNames15altGlyphItemTagE +_ZN7WebCore8SVGNames15animateColorTagE +_ZN7WebCore8SVGNames15arabic_formAttrE +_ZN7WebCore8SVGNames15baseProfileAttrE +_ZN7WebCore8SVGNames15feDropShadowTagE +_ZN7WebCore8SVGNames15feMorphologyTagE +_ZN7WebCore8SVGNames15fePointLightTagE +_ZN7WebCore8SVGNames15feTurbulenceTagE +_ZN7WebCore8SVGNames15filterUnitsAttrE +_ZN7WebCore8SVGNames15flood_colorAttrE +_ZN7WebCore8SVGNames15font_familyAttrE +_ZN7WebCore8SVGNames15font_weightAttrE +_ZN7WebCore8SVGNames15horiz_adv_xAttrE +_ZN7WebCore8SVGNames15ideographicAttrE +_ZN7WebCore8SVGNames15markerUnitsAttrE +_ZN7WebCore8SVGNames15markerWidthAttrE +_ZN7WebCore8SVGNames15orientationAttrE +_ZN7WebCore8SVGNames15paint_orderAttrE +_ZN7WebCore8SVGNames15repeatCountAttrE +_ZN7WebCore8SVGNames15startOffsetAttrE +_ZN7WebCore8SVGNames15stitchTilesAttrE +_ZN7WebCore8SVGNames15svgNamespaceURIE +_ZN7WebCore8SVGNames15tableValuesAttrE +_ZN7WebCore8SVGNames15text_anchorAttrE +_ZN7WebCore8SVGNames16animateMotionTagE +_ZN7WebCore8SVGNames16color_profileTagE +_ZN7WebCore8SVGNames16feColorMatrixTagE +_ZN7WebCore8SVGNames16fill_opacityAttrE +_ZN7WebCore8SVGNames16font_face_srcTagE +_ZN7WebCore8SVGNames16font_face_uriTagE +_ZN7WebCore8SVGNames16font_stretchAttrE +_ZN7WebCore8SVGNames16font_variantAttrE +_ZN7WebCore8SVGNames16foreignObjectTagE +_ZN7WebCore8SVGNames16kernelMatrixAttrE +_ZN7WebCore8SVGNames16lengthAdjustAttrE +_ZN7WebCore8SVGNames16markerHeightAttrE +_ZN7WebCore8SVGNames16marker_startAttrE +_ZN7WebCore8SVGNames16mathematicalAttrE +_ZN7WebCore8SVGNames16missing_glyphTagE +_ZN7WebCore8SVGNames16patternUnitsAttrE +_ZN7WebCore8SVGNames16spreadMethodAttrE +_ZN7WebCore8SVGNames16stdDeviationAttrE +_ZN7WebCore8SVGNames16stop_opacityAttrE +_ZN7WebCore8SVGNames16stroke_widthAttrE +_ZN7WebCore8SVGNames16surfaceScaleAttrE +_ZN7WebCore8SVGNames16unicode_bidiAttrE +_ZN7WebCore8SVGNames16units_per_emAttrE +_ZN7WebCore8SVGNames16v_alphabeticAttrE +_ZN7WebCore8SVGNames16word_spacingAttrE +_ZN7WebCore8SVGNames16writing_modeAttrE +_ZN7WebCore8SVGNames17accent_heightAttrE +_ZN7WebCore8SVGNames17attributeNameAttrE +_ZN7WebCore8SVGNames17attributeTypeAttrE +_ZN7WebCore8SVGNames17baseFrequencyAttrE +_ZN7WebCore8SVGNames17clipPathUnitsAttrE +_ZN7WebCore8SVGNames17color_profileAttrE +_ZN7WebCore8SVGNames17feDistantLightTagE +_ZN7WebCore8SVGNames17feGaussianBlurTagE +_ZN7WebCore8SVGNames17flood_opacityAttrE +_ZN7WebCore8SVGNames17font_face_nameTagE +_ZN7WebCore8SVGNames17gradientUnitsAttrE +_ZN7WebCore8SVGNames17linearGradientTagE +_ZN7WebCore8SVGNames17preserveAlphaAttrE +_ZN7WebCore8SVGNames17radialGradientTagE +_ZN7WebCore8SVGNames17unicode_rangeAttrE +_ZN7WebCore8SVGNames17v_ideographicAttrE +_ZN7WebCore8SVGNames17vector_effectAttrE +_ZN7WebCore8SVGNames17vert_origin_xAttrE +_ZN7WebCore8SVGNames17vert_origin_yAttrE +_ZN7WebCore8SVGNames18baseline_shiftAttrE +_ZN7WebCore8SVGNames18horiz_origin_xAttrE +_ZN7WebCore8SVGNames18horiz_origin_yAttrE +_ZN7WebCore8SVGNames18letter_spacingAttrE +_ZN7WebCore8SVGNames18lighting_colorAttrE +_ZN7WebCore8SVGNames18pointer_eventsAttrE +_ZN7WebCore8SVGNames18primitiveUnitsAttrE +_ZN7WebCore8SVGNames18stroke_linecapAttrE +_ZN7WebCore8SVGNames18stroke_opacityAttrE +_ZN7WebCore8SVGNames18systemLanguageAttrE +_ZN7WebCore8SVGNames18text_renderingAttrE +_ZN7WebCore8SVGNames18v_mathematicalAttrE +_ZN7WebCore8SVGNames19animateTransformTagE +_ZN7WebCore8SVGNames19color_renderingAttrE +_ZN7WebCore8SVGNames19diffuseConstantAttrE +_ZN7WebCore8SVGNames19feConvolveMatrixTagE +_ZN7WebCore8SVGNames19font_face_formatTagE +_ZN7WebCore8SVGNames19image_renderingAttrE +_ZN7WebCore8SVGNames19shape_renderingAttrE +_ZN7WebCore8SVGNames19stroke_linejoinAttrE +_ZN7WebCore8SVGNames19text_decorationAttrE +_ZN7WebCore8SVGNames20contentStyleTypeAttrE +_ZN7WebCore8SVGNames20feDiffuseLightingTagE +_ZN7WebCore8SVGNames20feDisplacementMapTagE +_ZN7WebCore8SVGNames20font_size_adjustAttrE +_ZN7WebCore8SVGNames20kernelUnitLengthAttrE +_ZN7WebCore8SVGNames20maskContentUnitsAttrE +_ZN7WebCore8SVGNames20patternTransformAttrE +_ZN7WebCore8SVGNames20rendering_intentAttrE +_ZN7WebCore8SVGNames20requiredFeaturesAttrE +_ZN7WebCore8SVGNames20specularConstantAttrE +_ZN7WebCore8SVGNames20specularExponentAttrE +_ZN7WebCore8SVGNames20stroke_dasharrayAttrE +_ZN7WebCore8SVGNames20transform_originAttrE +_ZN7WebCore8SVGNames20xChannelSelectorAttrE +_ZN7WebCore8SVGNames20yChannelSelectorAttrE +_ZN7WebCore8SVGNames21contentScriptTypeAttrE +_ZN7WebCore8SVGNames21dominant_baselineAttrE +_ZN7WebCore8SVGNames21enable_backgroundAttrE +_ZN7WebCore8SVGNames21feSpecularLightingTagE +_ZN7WebCore8SVGNames21gradientTransformAttrE +_ZN7WebCore8SVGNames21limitingConeAngleAttrE +_ZN7WebCore8SVGNames21overline_positionAttrE +_ZN7WebCore8SVGNames21stroke_dashoffsetAttrE +_ZN7WebCore8SVGNames21stroke_miterlimitAttrE +_ZN7WebCore8SVGNames22alignment_baselineAttrE +_ZN7WebCore8SVGNames22buffered_renderingAttrE +_ZN7WebCore8SVGNames22feComponentTransferTagE +_ZN7WebCore8SVGNames22overline_thicknessAttrE +_ZN7WebCore8SVGNames22requiredExtensionsAttrE +_ZN7WebCore8SVGNames22underline_positionAttrE +_ZN7WebCore8SVGNames23color_interpolationAttrE +_ZN7WebCore8SVGNames23patternContentUnitsAttrE +_ZN7WebCore8SVGNames23preserveAspectRatioAttrE +_ZN7WebCore8SVGNames23underline_thicknessAttrE +_ZN7WebCore8SVGNames26strikethrough_positionAttrE +_ZN7WebCore8SVGNames27strikethrough_thicknessAttrE +_ZN7WebCore8SVGNames29externalResourcesRequiredAttrE +_ZN7WebCore8SVGNames30glyph_orientation_verticalAttrE +_ZN7WebCore8SVGNames31color_interpolation_filtersAttrE +_ZN7WebCore8SVGNames32glyph_orientation_horizontalAttrE +_ZN7WebCore8SVGNames4aTagE +_ZN7WebCore8SVGNames4gTagE +_ZN7WebCore8SVGNames4initEv +_ZN7WebCore8SVGNames5dAttrE +_ZN7WebCore8SVGNames5kAttrE +_ZN7WebCore8SVGNames5rAttrE +_ZN7WebCore8SVGNames5xAttrE +_ZN7WebCore8SVGNames5yAttrE +_ZN7WebCore8SVGNames5zAttrE +_ZN7WebCore8SVGNames6byAttrE +_ZN7WebCore8SVGNames6cxAttrE +_ZN7WebCore8SVGNames6cyAttrE +_ZN7WebCore8SVGNames6dxAttrE +_ZN7WebCore8SVGNames6dyAttrE +_ZN7WebCore8SVGNames6frAttrE +_ZN7WebCore8SVGNames6fxAttrE +_ZN7WebCore8SVGNames6fyAttrE +_ZN7WebCore8SVGNames6g1AttrE +_ZN7WebCore8SVGNames6g2AttrE +_ZN7WebCore8SVGNames6inAttrE +_ZN7WebCore8SVGNames6k1AttrE +_ZN7WebCore8SVGNames6k2AttrE +_ZN7WebCore8SVGNames6k3AttrE +_ZN7WebCore8SVGNames6k4AttrE +_ZN7WebCore8SVGNames6rxAttrE +_ZN7WebCore8SVGNames6ryAttrE +_ZN7WebCore8SVGNames6setTagE +_ZN7WebCore8SVGNames6svgTagE +_ZN7WebCore8SVGNames6toAttrE +_ZN7WebCore8SVGNames6u1AttrE +_ZN7WebCore8SVGNames6u2AttrE +_ZN7WebCore8SVGNames6useTagE +_ZN7WebCore8SVGNames6x1AttrE +_ZN7WebCore8SVGNames6x2AttrE +_ZN7WebCore8SVGNames6y1AttrE +_ZN7WebCore8SVGNames6y2AttrE +_ZN7WebCore8SVGNames7defsTagE +_ZN7WebCore8SVGNames7descTagE +_ZN7WebCore8SVGNames7durAttrE +_ZN7WebCore8SVGNames7endAttrE +_ZN7WebCore8SVGNames7fontTagE +_ZN7WebCore8SVGNames7in2AttrE +_ZN7WebCore8SVGNames7lineTagE +_ZN7WebCore8SVGNames7maskTagE +_ZN7WebCore8SVGNames7maxAttrE +_ZN7WebCore8SVGNames7minAttrE +_ZN7WebCore8SVGNames7pathTagE +_ZN7WebCore8SVGNames7rectTagE +_ZN7WebCore8SVGNames7relAttrE +_ZN7WebCore8SVGNames7stopTagE +_ZN7WebCore8SVGNames7textTagE +_ZN7WebCore8SVGNames7trefTagE +_ZN7WebCore8SVGNames7viewTagE +_ZN7WebCore8SVGNames8bboxAttrE +_ZN7WebCore8SVGNames8biasAttrE +_ZN7WebCore8SVGNames8clipAttrE +_ZN7WebCore8SVGNames8fillAttrE +_ZN7WebCore8SVGNames8fromAttrE +_ZN7WebCore8SVGNames8glyphTagE +_ZN7WebCore8SVGNames8hkernTagE +_ZN7WebCore8SVGNames8hrefAttrE +_ZN7WebCore8SVGNames8imageTagE +_ZN7WebCore8SVGNames8langAttrE +_ZN7WebCore8SVGNames8maskAttrE +_ZN7WebCore8SVGNames8modeAttrE +_ZN7WebCore8SVGNames8mpathTagE +_ZN7WebCore8SVGNames8nameAttrE +_ZN7WebCore8SVGNames8pathAttrE +_ZN7WebCore8SVGNames8refXAttrE +_ZN7WebCore8SVGNames8refYAttrE +_ZN7WebCore8SVGNames8seedAttrE +_ZN7WebCore8SVGNames8styleTagE +_ZN7WebCore8SVGNames8titleTagE +_ZN7WebCore8SVGNames8tspanTagE +_ZN7WebCore8SVGNames8typeAttrE +_ZN7WebCore8SVGNames8vkernTagE +_ZN7WebCore8SVGNames9beginAttrE +_ZN7WebCore8SVGNames9circleTagE +_ZN7WebCore8SVGNames9colorAttrE +_ZN7WebCore8SVGNames9cursorTagE +_ZN7WebCore8SVGNames9feTileTagE +_ZN7WebCore8SVGNames9filterTagE +_ZN7WebCore8SVGNames9localAttrE +_ZN7WebCore8SVGNames9markerTagE +_ZN7WebCore8SVGNames9mediaAttrE +_ZN7WebCore8SVGNames9onendAttrE +_ZN7WebCore8SVGNames9orderAttrE +_ZN7WebCore8SVGNames9scaleAttrE +_ZN7WebCore8SVGNames9scriptTagE +_ZN7WebCore8SVGNames9slopeAttrE +_ZN7WebCore8SVGNames9stemhAttrE +_ZN7WebCore8SVGNames9stemvAttrE +_ZN7WebCore8SVGNames9styleAttrE +_ZN7WebCore8SVGNames9switchTagE +_ZN7WebCore8SVGNames9symbolTagE +_ZN7WebCore8SVGNames9titleAttrE +_ZN7WebCore8SVGNames9widthAttrE +_ZN7WebCore8SVGTests27hasFeatureForLegacyBindingsERKN3WTF6StringES4_ +_ZN7WebCore8Settings16setImagesEnabledEb +_ZN7WebCore8Settings16setScriptEnabledEb +_ZN7WebCore8Settings16setUsesPageCacheEb +_ZN7WebCore8Settings17setPluginsEnabledEb +_ZN7WebCore8Settings18setDefaultFontSizeEi +_ZN7WebCore8Settings18setFrameFlatteningENS_15FrameFlatteningE +_ZN7WebCore8Settings18setMinimumFontSizeEi +_ZN7WebCore8Settings19setShowDebugBordersEb +_ZN7WebCore8Settings20setCoreMathMLEnabledEb +_ZN7WebCore8Settings20setMediaTypeOverrideERKN3WTF6StringE +_ZN7WebCore8Settings21setColorFilterEnabledEb +_ZN7WebCore8Settings21setShowRepaintCounterEb +_ZN7WebCore8Settings23setDefaultFixedFontSizeEi +_ZN7WebCore8Settings23setUsesBackForwardCacheEb +_ZN7WebCore8Settings24setDNSPrefetchingEnabledEb +_ZN7WebCore8Settings24setStorageBlockingPolicyENS_14SecurityOrigin21StorageBlockingPolicyE +_ZN7WebCore8Settings24setTextAreasAreResizableEb +_ZN7WebCore8Settings24setVisualViewportEnabledEb +_ZN7WebCore8Settings25setMinimumLogicalFontSizeEi +_ZN7WebCore8Settings25setUserStyleSheetLocationERKN3WTF3URLE +_ZN7WebCore8Settings25setUserStyleSheetLocationERKNS_3URLE +_ZN7WebCore8Settings26setSimpleLineLayoutEnabledEb +_ZN7WebCore8Settings27setLoadsImagesAutomaticallyEb +_ZN7WebCore8Settings29setAsyncFrameScrollingEnabledEb +_ZN7WebCore8Settings29setAuthorAndUserStylesEnabledEb +_ZN7WebCore8Settings30setResourceUsageOverlayVisibleEb +_ZN7WebCore8Settings31setICECandidateFilteringEnabledEb +_ZN7WebCore8Settings32setAcceleratedCompositingEnabledEb +_ZN7WebCore8Settings32setAsyncOverflowScrollingEnabledEb +_ZN7WebCore8Settings32setShouldAllowUserInstalledFontsEb +_ZN7WebCore8Settings33setFontFallbackPrefersPictographsEb +_ZN7WebCore8Settings33setImagesEnabledInspectorOverrideEN3WTF8OptionalIbEE +_ZN7WebCore8Settings35setBackgroundShouldExtendBeyondPageEb +_ZN7WebCore8Settings36setShowDebugBordersInspectorOverrideEN3WTF8OptionalIbEE +_ZN7WebCore8Settings37setPunchOutWhiteBackgroundsInDarkModeEb +_ZN7WebCore8Settings37setScrollingPerformanceLoggingEnabledEb +_ZN7WebCore8Settings38setForcedSupportsHighDynamicRangeValueENS_12SettingsBase24ForcedAccessibilityValueE +_ZN7WebCore8Settings38setHiddenPageDOMTimerThrottlingEnabledEb +_ZN7WebCore8Settings38setLayoutViewportHeightExpansionFactorEd +_ZN7WebCore8Settings38setShowRepaintCounterInspectorOverrideEN3WTF8OptionalIbEE +_ZN7WebCore8Settings38setSimpleLineLayoutDebugBordersEnabledEb +_ZN7WebCore8Settings38setSubpixelAntialiasedLayerTextEnabledEb +_ZN7WebCore8Settings41setAcceleratedCompositedAnimationsEnabledEb +_ZN7WebCore8Settings42setCoreImageAcceleratedFilterRenderEnabledEb +_ZN7WebCore8Settings42setHiddenPageCSSAnimationSuspensionEnabledEb +_ZN7WebCore8Settings44setClientCoordinatesRelativeToLayoutViewportEb +_ZN7WebCore8Settings44setHiddenPageDOMTimerThrottlingAutoIncreasesEb +_ZN7WebCore8Settings45setMockCaptureDevicesEnabledInspectorOverrideEN3WTF8OptionalIbEE +_ZN7WebCore8Settings46setAuthorAndUserStylesEnabledInspectorOverrideEN3WTF8OptionalIbEE +_ZN7WebCore8Settings48setICECandidateFilteringEnabledInspectorOverrideEN3WTF8OptionalIbEE +_ZN7WebCore8XMLNames15xmlNamespaceURIE +_ZN7WebCore8XMLNames4initEv +_ZN7WebCore8XMLNames8baseAttrE +_ZN7WebCore8XMLNames8langAttrE +_ZN7WebCore8XMLNames9spaceAttrE +_ZN7WebCore8blankURLEv +_ZN7WebCore8isReloadENS_13FrameLoadTypeE +_ZN7WebCore8makeRGBAEiiii +_ZN7WebCore8toStringERKN3WTF6VectorINS_11ProxyServerELm0ENS0_15CrashOnOverflowELm16EEE +_ZN7WebCore8toStringERKN3WTF6VectorINS_11ProxyServerELm0ENS0_15CrashOnOverflowELm16ENS0_10FastMallocEEE +_ZN7WebCore9AnimationC1Ev +_ZN7WebCore9AnimationC2Ev +_ZN7WebCore9AnimationD1Ev +_ZN7WebCore9AnimationD2Ev +_ZN7WebCore9CSSParser10parseColorERKN3WTF6StringEb +_ZN7WebCore9CSSParser16parseDeclarationERNS_22MutableStylePropertiesERKN3WTF6StringE +_ZN7WebCore9CSSParserC1ERKNS_16CSSParserContextE +_ZN7WebCore9CSSParserC2ERKNS_16CSSParserContextE +_ZN7WebCore9CSSParserD1Ev +_ZN7WebCore9CSSParserD2Ev +_ZN7WebCore9CaretBase17computeCaretColorERKNS_11RenderStyleEPKNS_4NodeE +_ZN7WebCore9CookieJar10clearCacheEv +_ZN7WebCore9CookieJar10setCookiesERNS_8DocumentERKN3WTF3URLERKNS3_6StringE +_ZN7WebCore9CookieJar12deleteCookieERKNS_8DocumentERKN3WTF3URLERKNS4_6StringE +_ZN7WebCore9CookieJar12sameSiteInfoERKNS_8DocumentE +_ZN7WebCore9CookieJar12setRawCookieERKNS_8DocumentERKNS_6CookieE +_ZN7WebCore9CookieJar17clearCacheForHostERKN3WTF6StringE +_ZN7WebCore9CookieJar26shouldIncludeSecureCookiesERKNS_8DocumentERKN3WTF3URLE +_ZN7WebCore9CookieJar29cookieRequestHeaderFieldProxyERKNS_8DocumentERKN3WTF3URLE +_ZN7WebCore9CookieJar6createEON3WTF3RefINS_22StorageSessionProviderENS1_13DumbPtrTraitsIS3_EEEE +_ZN7WebCore9CookieJarC1EON3WTF3RefINS_22StorageSessionProviderENS1_13DumbPtrTraitsIS3_EEEE +_ZN7WebCore9CookieJarC2EON3WTF3RefINS_22StorageSessionProviderENS1_13DumbPtrTraitsIS3_EEEE +_ZN7WebCore9CookieJarD0Ev +_ZN7WebCore9CookieJarD1Ev +_ZN7WebCore9CookieJarD2Ev +_ZN7WebCore9DOMWindow16registerObserverERNS0_8ObserverE +_ZN7WebCore9DOMWindow18unregisterObserverERNS0_8ObserverE +_ZN7WebCore9DOMWindow29setCanShowModalDialogOverrideEb +_ZN7WebCore9DOMWindow30dispatchAllPendingUnloadEventsEv +_ZN7WebCore9DOMWindow36dispatchAllPendingBeforeUnloadEventsEv +_ZN7WebCore9DOMWindow45overrideTransientActivationDurationForTestingEON3WTF8OptionalINS1_7SecondsEEE +_ZN7WebCore9DOMWindow4openERS0_S1_RKN3WTF6StringERKNS2_10AtomStringES5_ +_ZN7WebCore9DOMWindow4openERS0_S1_RKN3WTF6StringERKNS2_12AtomicStringES5_ +_ZN7WebCore9DOMWindow5closeEv +_ZN7WebCore9DOMWindow5focusEb +_ZN7WebCore9DOMWindow8locationEv +_ZN7WebCore9DOMWindow9navigatorEv +_ZN7WebCore9DOMWindowD0Ev +_ZN7WebCore9DOMWindowD1Ev +_ZN7WebCore9DOMWindowD2Ev +_ZN7WebCore9DragImageC1EOS0_ +_ZN7WebCore9DragImageC1Ev +_ZN7WebCore9DragImageC2EOS0_ +_ZN7WebCore9DragImageC2Ev +_ZN7WebCore9DragImageD1Ev +_ZN7WebCore9DragImageD2Ev +_ZN7WebCore9DragImageaSEOS0_ +_ZN7WebCore9FetchBody12fromFormDataERNS_22ScriptExecutionContextERNS_8FormDataE +_ZN7WebCore9FetchBody12fromFormDataERNS_8FormDataE +_ZN7WebCore9FloatRect11fitToPointsERKNS_10FloatPointES3_ +_ZN7WebCore9FloatRect11fitToPointsERKNS_10FloatPointES3_S3_ +_ZN7WebCore9FloatRect11fitToPointsERKNS_10FloatPointES3_S3_S3_ +_ZN7WebCore9FloatRect5scaleEff +_ZN7WebCore9FloatRect5uniteERKS0_ +_ZN7WebCore9FloatRect6extendERKNS_10FloatPointE +_ZN7WebCore9FloatRect9intersectERKS0_ +_ZN7WebCore9FloatRectC1ERKNS_7IntRectE +_ZN7WebCore9FloatRectC2ERKNS_7IntRectE +_ZN7WebCore9FloatSizeC1ERKNS_7IntSizeE +_ZN7WebCore9FloatSizeC2ERKNS_7IntSizeE +_ZN7WebCore9FontCache10invalidateEv +_ZN7WebCore9FontCache13fontForFamilyERKNS_15FontDescriptionERKN3WTF10AtomStringEPKNS_18FontTaggedSettingsIiEENS_34FontSelectionSpecifiedCapabilitiesEb +_ZN7WebCore9FontCache13fontForFamilyERKNS_15FontDescriptionERKN3WTF12AtomicStringEPKNS_18FontTaggedSettingsIiEEPKNS_19FontVariantSettingsENS_34FontSelectionSpecifiedCapabilitiesEb +_ZN7WebCore9FontCache17inactiveFontCountEv +_ZN7WebCore9FontCache19fontForPlatformDataERKNS_16FontPlatformDataE +_ZN7WebCore9FontCache21purgeInactiveFontDataEj +_ZN7WebCore9FontCache22createFontPlatformDataERKNS_15FontDescriptionERKN3WTF10AtomStringEPKNS_18FontTaggedSettingsIiEENS_34FontSelectionSpecifiedCapabilitiesE +_ZN7WebCore9FontCache22createFontPlatformDataERKNS_15FontDescriptionERKN3WTF12AtomicStringEPKNS_18FontTaggedSettingsIiEEPKNS_19FontVariantSettingsENS_34FontSelectionSpecifiedCapabilitiesE +_ZN7WebCore9FontCache22lastResortFallbackFontERKNS_15FontDescriptionE +_ZN7WebCore9FontCache29purgeInactiveFontDataIfNeededEv +_ZN7WebCore9FontCache9fontCountEv +_ZN7WebCore9FontCache9singletonEv +_ZN7WebCore9FrameTree11appendChildERNS_5FrameE +_ZN7WebCore9FrameTree7setNameERKN3WTF10AtomStringE +_ZN7WebCore9FrameTree7setNameERKN3WTF12AtomicStringE +_ZN7WebCore9FrameTree9clearNameEv +_ZN7WebCore9FrameView11forceLayoutEb +_ZN7WebCore9FrameView11removeChildERNS_6WidgetE +_ZN7WebCore9FrameView12isScrollableENS0_13ScrollabilityE +_ZN7WebCore9FrameView12setMediaTypeERKN3WTF6StringE +_ZN7WebCore9FrameView13paintContentsERNS_15GraphicsContextERKNS_7IntRectENS_6Widget25SecurityOriginPaintPolicyE +_ZN7WebCore9FrameView13paintContentsERNS_15GraphicsContextERKNS_7IntRectENS_6Widget25SecurityOriginPaintPolicyEPNS_18EventRegionContextE +_ZN7WebCore9FrameView13setNodeToDrawEPNS_4NodeE +_ZN7WebCore9FrameView14adjustViewSizeEv +_ZN7WebCore9FrameView14invalidateRectERKNS_7IntRectE +_ZN7WebCore9FrameView14setNeedsLayoutEv +_ZN7WebCore9FrameView14setTransparentEb +_ZN7WebCore9FrameView15setFooterHeightEi +_ZN7WebCore9FrameView15setHeaderHeightEi +_ZN7WebCore9FrameView16setPaintBehaviorEN3WTF9OptionSetINS_13PaintBehaviorEEE +_ZN7WebCore9FrameView16setPaintBehaviorEj +_ZN7WebCore9FrameView17addScrollableAreaEPNS_14ScrollableAreaE +_ZN7WebCore9FrameView17paintControlTintsEv +_ZN7WebCore9FrameView17setScrollPositionERKNS_8IntPointE +_ZN7WebCore9FrameView17setScrollPositionERKNS_8IntPointENS_14ScrollClampingENS_14AnimatedScrollE +_ZN7WebCore9FrameView17setTracksRepaintsEb +_ZN7WebCore9FrameView17willEndLiveResizeEv +_ZN7WebCore9FrameView18enableAutoSizeModeEbRKNS_7IntSizeES3_ +_ZN7WebCore9FrameView18setViewExposedRectEN3WTF8OptionalINS_9FloatRectEEE +_ZN7WebCore9FrameView18setViewExposedRectESt8optionalINS_9FloatRectEE +_ZN7WebCore9FrameView18updateControlTintsEv +_ZN7WebCore9FrameView19scrollElementToRectERKNS_7ElementERKNS_7IntRectE +_ZN7WebCore9FrameView19willStartLiveResizeEv +_ZN7WebCore9FrameView20enterCompositingModeEv +_ZN7WebCore9FrameView20removeScrollableAreaEPNS_14ScrollableAreaE +_ZN7WebCore9FrameView20resetTrackedRepaintsEv +_ZN7WebCore9FrameView20setCanHaveScrollbarsEb +_ZN7WebCore9FrameView20setWasScrolledByUserEb +_ZN7WebCore9FrameView22setBaseBackgroundColorERKNS_5ColorE +_ZN7WebCore9FrameView23updateCanHaveScrollbarsEv +_ZN7WebCore9FrameView24forceLayoutForPaginationERKNS_9FloatSizeES3_fNS_19AdjustViewSizeOrNotE +_ZN7WebCore9FrameView24paintContentsForSnapshotERNS_15GraphicsContextERKNS_7IntRectENS0_19SelectionInSnapshotENS0_26CoordinateSpaceForSnapshotE +_ZN7WebCore9FrameView24renderedCharactersExceedEj +_ZN7WebCore9FrameView24setScrollPinningBehaviorENS_21ScrollPinningBehaviorE +_ZN7WebCore9FrameView26adjustPageHeightDeprecatedEPffff +_ZN7WebCore9FrameView26adjustTiledBackingCoverageEv +_ZN7WebCore9FrameView26expandedLayoutViewportSizeERKNS_10LayoutSizeES3_d +_ZN7WebCore9FrameView26setFixedVisibleContentRectERKNS_7IntRectE +_ZN7WebCore9FrameView27availableContentSizeChangedENS_14ScrollableArea25AvailableSizeChangeReasonE +_ZN7WebCore9FrameView27computeLayoutViewportOriginERKNS_10LayoutRectERKNS_11LayoutPointES6_S3_NS_30ScrollBehaviorForFixedElementsE +_ZN7WebCore9FrameView27positionForRootContentLayerERKNS_10FloatPointES3_ff +_ZN7WebCore9FrameView27scrollToOffsetWithAnimationERKNS_8IntPointENS_10ScrollTypeENS_14ScrollClampingE +_ZN7WebCore9FrameView27updateBackgroundRecursivelyERKN3WTF8OptionalINS_5ColorEEE +_ZN7WebCore9FrameView27updateBackgroundRecursivelyERKNS_5ColorEb +_ZN7WebCore9FrameView28enableFixedWidthAutoSizeModeEbRKNS_7IntSizeE +_ZN7WebCore9FrameView28traverseForPaintInvalidationENS_15GraphicsContext24PaintInvalidationReasonsE +_ZN7WebCore9FrameView29layoutOrVisualViewportChangedEv +_ZN7WebCore9FrameView29setAutoSizeFixedMinimumHeightEi +_ZN7WebCore9FrameView29setLayoutViewportOverrideRectEN3WTF8OptionalINS_10LayoutRectEEENS0_18TriggerLayoutOrNotE +_ZN7WebCore9FrameView29setLayoutViewportOverrideRectESt8optionalINS_10LayoutRectEENS0_18TriggerLayoutOrNotE +_ZN7WebCore9FrameView29setShouldUpdateWhileOffscreenEb +_ZN7WebCore9FrameView29setVisualViewportOverrideRectEN3WTF8OptionalINS_10LayoutRectEEE +_ZN7WebCore9FrameView29setVisualViewportOverrideRectESt8optionalINS_10LayoutRectEE +_ZN7WebCore9FrameView30graphicsLayerForPlatformWidgetEPv +_ZN7WebCore9FrameView30scrollPositionForFixedPositionERKNS_10LayoutRectERKNS_10LayoutSizeERKNS_11LayoutPointES9_fbNS_30ScrollBehaviorForFixedElementsEii +_ZN7WebCore9FrameView31enableSizeToContentAutoSizeModeEbRKNS_7IntSizeE +_ZN7WebCore9FrameView31setVisualUpdatesAllowedByClientEb +_ZN7WebCore9FrameView32computeUpdatedLayoutViewportRectERKNS_10LayoutRectES3_RKNS_10LayoutSizeES3_S6_RKNS_11LayoutPointES9_NS0_24LayoutViewportConstraintE +_ZN7WebCore9FrameView32recalculateScrollbarOverlayStyleEv +_ZN7WebCore9FrameView34setViewportSizeForCSSViewportUnitsENS_7IntSizeE +_ZN7WebCore9FrameView36scheduleLayerFlushAllowingThrottlingEv +_ZN7WebCore9FrameView37setScrollingPerformanceLoggingEnabledEb +_ZN7WebCore9FrameView37updateLayoutAndStyleIfNeededRecursiveEv +_ZN7WebCore9FrameView39flushCompositingStateIncludingSubframesEv +_ZN7WebCore9FrameView39setViewportConstrainedObjectsNeedLayoutEv +_ZN7WebCore9FrameView42setNeedsLayoutAfterViewConfigurationChangeEv +_ZN7WebCore9FrameView46resumeVisibleImageAnimationsIncludingSubframesEv +_ZN7WebCore9FrameView52disableLayerFlushThrottlingTemporarilyForInteractionEv +_ZN7WebCore9FrameView6createERNS_5FrameE +_ZN7WebCore9FrameView8addChildERNS_6WidgetE +_ZN7WebCore9GLContext18makeContextCurrentEv +_ZN7WebCore9GLContext20createSharingContextERNS_15PlatformDisplayE +_ZN7WebCore9GLContext20isExtensionSupportedEPKcS2_ +_ZN7WebCore9GLContext22createOffscreenContextEPNS_15PlatformDisplayE +_ZN7WebCore9GLContext7currentEv +_ZN7WebCore9GLContext7versionEv +_ZN7WebCore9GLContextC2ERNS_15PlatformDisplayE +_ZN7WebCore9GLContextD0Ev +_ZN7WebCore9GLContextD1Ev +_ZN7WebCore9GLContextD2Ev +_ZN7WebCore9GLContextdaEPv +_ZN7WebCore9GLContextdlEPv +_ZN7WebCore9GLContextnaEm +_ZN7WebCore9GLContextnaEmPv +_ZN7WebCore9GLContextnwEm +_ZN7WebCore9GLContextnwEm10NotNullTagPv +_ZN7WebCore9GLContextnwEmPv +_ZN7WebCore9GlyphPage7s_countE +_ZN7WebCore9HTMLNames10acceptAttrE +_ZN7WebCore9HTMLNames10acronymTagE +_ZN7WebCore9HTMLNames10actionAttrE +_ZN7WebCore9HTMLNames10addressTagE +_ZN7WebCore9HTMLNames10articleTagE +_ZN7WebCore9HTMLNames10bgsoundTagE +_ZN7WebCore9HTMLNames10borderAttrE +_ZN7WebCore9HTMLNames10captionTagE +_ZN7WebCore9HTMLNames10commandTagE +_ZN7WebCore9HTMLNames10coordsAttrE +_ZN7WebCore9HTMLNames10detailsTagE +_ZN7WebCore9HTMLNames10heightAttrE +_ZN7WebCore9HTMLNames10hiddenAttrE +_ZN7WebCore9HTMLNames10hspaceAttrE +_ZN7WebCore9HTMLNames10itemidAttrE +_ZN7WebCore9HTMLNames10listingTagE +_ZN7WebCore9HTMLNames10lowsrcAttrE +_ZN7WebCore9HTMLNames10marqueeTagE +_ZN7WebCore9HTMLNames10methodAttrE +_ZN7WebCore9HTMLNames10noembedTagE +_ZN7WebCore9HTMLNames10nohrefAttrE +_ZN7WebCore9HTMLNames10nolayerTagE +_ZN7WebCore9HTMLNames10nowrapAttrE +_ZN7WebCore9HTMLNames10objectAttrE +_ZN7WebCore9HTMLNames10onblurAttrE +_ZN7WebCore9HTMLNames10oncopyAttrE +_ZN7WebCore9HTMLNames10ondragAttrE +_ZN7WebCore9HTMLNames10ondropAttrE +_ZN7WebCore9HTMLNames10onloadAttrE +_ZN7WebCore9HTMLNames10onplayAttrE +_ZN7WebCore9HTMLNames10pictureTagE +_ZN7WebCore9HTMLNames10posterAttrE +_ZN7WebCore9HTMLNames10promptAttrE +_ZN7WebCore9HTMLNames10pseudoAttrE +_ZN7WebCore9HTMLNames10schemeAttrE +_ZN7WebCore9HTMLNames10scopedAttrE +_ZN7WebCore9HTMLNames10sectionTagE +_ZN7WebCore9HTMLNames10selectAttrE +_ZN7WebCore9HTMLNames10srcdocAttrE +_ZN7WebCore9HTMLNames10srcsetAttrE +_ZN7WebCore9HTMLNames10summaryTagE +_ZN7WebCore9HTMLNames10targetAttrE +_ZN7WebCore9HTMLNames10usemapAttrE +_ZN7WebCore9HTMLNames10valignAttrE +_ZN7WebCore9HTMLNames10vspaceAttrE +_ZN7WebCore9HTMLNames11archiveAttrE +_ZN7WebCore9HTMLNames11basefontTagE +_ZN7WebCore9HTMLNames11bgcolorAttrE +_ZN7WebCore9HTMLNames11captureAttrE +_ZN7WebCore9HTMLNames11charoffAttrE +_ZN7WebCore9HTMLNames11charsetAttrE +_ZN7WebCore9HTMLNames11checkedAttrE +_ZN7WebCore9HTMLNames11classidAttrE +_ZN7WebCore9HTMLNames11colgroupTagE +_ZN7WebCore9HTMLNames11colspanAttrE +_ZN7WebCore9HTMLNames11compactAttrE +_ZN7WebCore9HTMLNames11contentAttrE +_ZN7WebCore9HTMLNames11datalistTagE +_ZN7WebCore9HTMLNames11declareAttrE +_ZN7WebCore9HTMLNames11defaultAttrE +_ZN7WebCore9HTMLNames11dirnameAttrE +_ZN7WebCore9HTMLNames11enctypeAttrE +_ZN7WebCore9HTMLNames11fieldsetTagE +_ZN7WebCore9HTMLNames11focusedAttrE +_ZN7WebCore9HTMLNames11framesetTagE +_ZN7WebCore9HTMLNames11headersAttrE +_ZN7WebCore9HTMLNames11itemrefAttrE +_ZN7WebCore9HTMLNames11keytypeAttrE +_ZN7WebCore9HTMLNames11loadingAttrE +_ZN7WebCore9HTMLNames11loopendAttrE +_ZN7WebCore9HTMLNames11menuitemTagE +_ZN7WebCore9HTMLNames11noframesTagE +_ZN7WebCore9HTMLNames11noscriptTagE +_ZN7WebCore9HTMLNames11noshadeAttrE +_ZN7WebCore9HTMLNames11onabortAttrE +_ZN7WebCore9HTMLNames11onclickAttrE +_ZN7WebCore9HTMLNames11onendedAttrE +_ZN7WebCore9HTMLNames11onerrorAttrE +_ZN7WebCore9HTMLNames11onfocusAttrE +_ZN7WebCore9HTMLNames11oninputAttrE +_ZN7WebCore9HTMLNames11onkeyupAttrE +_ZN7WebCore9HTMLNames11onpasteAttrE +_ZN7WebCore9HTMLNames11onpauseAttrE +_ZN7WebCore9HTMLNames11onresetAttrE +_ZN7WebCore9HTMLNames11onwheelAttrE +_ZN7WebCore9HTMLNames11optgroupTagE +_ZN7WebCore9HTMLNames11optimumAttrE +_ZN7WebCore9HTMLNames11patternAttrE +_ZN7WebCore9HTMLNames11preloadAttrE +_ZN7WebCore9HTMLNames11primaryAttrE +_ZN7WebCore9HTMLNames11profileAttrE +_ZN7WebCore9HTMLNames11progressTagE +_ZN7WebCore9HTMLNames11resultsAttrE +_ZN7WebCore9HTMLNames11rowspanAttrE +_ZN7WebCore9HTMLNames11sandboxAttrE +_ZN7WebCore9HTMLNames11srclangAttrE +_ZN7WebCore9HTMLNames11standbyAttrE +_ZN7WebCore9HTMLNames11summaryAttrE +_ZN7WebCore9HTMLNames11templateTagE +_ZN7WebCore9HTMLNames11textareaTagE +_ZN7WebCore9HTMLNames11versionAttrE +_ZN7WebCore9HTMLNames12autoplayAttrE +_ZN7WebCore9HTMLNames12autosaveAttrE +_ZN7WebCore9HTMLNames12behaviorAttrE +_ZN7WebCore9HTMLNames12codebaseAttrE +_ZN7WebCore9HTMLNames12codetypeAttrE +_ZN7WebCore9HTMLNames12controlsAttrE +_ZN7WebCore9HTMLNames12datetimeAttrE +_ZN7WebCore9HTMLNames12decodingAttrE +_ZN7WebCore9HTMLNames12disabledAttrE +_ZN7WebCore9HTMLNames12downloadAttrE +_ZN7WebCore9HTMLNames12dropzoneAttrE +_ZN7WebCore9HTMLNames12expandedAttrE +_ZN7WebCore9HTMLNames12filenameAttrE +_ZN7WebCore9HTMLNames12hreflangAttrE +_ZN7WebCore9HTMLNames12itempropAttrE +_ZN7WebCore9HTMLNames12itemtypeAttrE +_ZN7WebCore9HTMLNames12languageAttrE +_ZN7WebCore9HTMLNames12longdescAttrE +_ZN7WebCore9HTMLNames12manifestAttrE +_ZN7WebCore9HTMLNames12multipleAttrE +_ZN7WebCore9HTMLNames12nomoduleAttrE +_ZN7WebCore9HTMLNames12noresizeAttrE +_ZN7WebCore9HTMLNames12onchangeAttrE +_ZN7WebCore9HTMLNames12ononlineAttrE +_ZN7WebCore9HTMLNames12onresizeAttrE +_ZN7WebCore9HTMLNames12onscrollAttrE +_ZN7WebCore9HTMLNames12onsearchAttrE +_ZN7WebCore9HTMLNames12onseekedAttrE +_ZN7WebCore9HTMLNames12onselectAttrE +_ZN7WebCore9HTMLNames12onsubmitAttrE +_ZN7WebCore9HTMLNames12ontoggleAttrE +_ZN7WebCore9HTMLNames12onunloadAttrE +_ZN7WebCore9HTMLNames12plaintextTagE +_ZN7WebCore9HTMLNames12progressAttrE +_ZN7WebCore9HTMLNames12readonlyAttrE +_ZN7WebCore9HTMLNames12requiredAttrE +_ZN7WebCore9HTMLNames12reversedAttrE +_ZN7WebCore9HTMLNames12selectedAttrE +_ZN7WebCore9HTMLNames12sortableAttrE +_ZN7WebCore9HTMLNames12subtitleAttrE +_ZN7WebCore9HTMLNames12tabindexAttrE +_ZN7WebCore9HTMLNames13accesskeyAttrE +_ZN7WebCore9HTMLNames13aria_busyAttrE +_ZN7WebCore9HTMLNames13aria_helpAttrE +_ZN7WebCore9HTMLNames13aria_liveAttrE +_ZN7WebCore9HTMLNames13aria_ownsAttrE +_ZN7WebCore9HTMLNames13aria_sortAttrE +_ZN7WebCore9HTMLNames13attachmentTagE +_ZN7WebCore9HTMLNames13autofocusAttrE +_ZN7WebCore9HTMLNames13blockquoteTagE +_ZN7WebCore9HTMLNames13challengeAttrE +_ZN7WebCore9HTMLNames13compositeAttrE +_ZN7WebCore9HTMLNames13directionAttrE +_ZN7WebCore9HTMLNames13draggableAttrE +_ZN7WebCore9HTMLNames13figcaptionTagE +_ZN7WebCore9HTMLNames13inputmodeAttrE +_ZN7WebCore9HTMLNames13integrityAttrE +_ZN7WebCore9HTMLNames13itemscopeAttrE +_ZN7WebCore9HTMLNames13loopstartAttrE +_ZN7WebCore9HTMLNames13maxlengthAttrE +_ZN7WebCore9HTMLNames13mayscriptAttrE +_ZN7WebCore9HTMLNames13minlengthAttrE +_ZN7WebCore9HTMLNames13oncanplayAttrE +_ZN7WebCore9HTMLNames13ondragendAttrE +_ZN7WebCore9HTMLNames13onemptiedAttrE +_ZN7WebCore9HTMLNames13onfocusinAttrE +_ZN7WebCore9HTMLNames13oninvalidAttrE +_ZN7WebCore9HTMLNames13onkeydownAttrE +_ZN7WebCore9HTMLNames13onmessageAttrE +_ZN7WebCore9HTMLNames13onmouseupAttrE +_ZN7WebCore9HTMLNames13onofflineAttrE +_ZN7WebCore9HTMLNames13onplayingAttrE +_ZN7WebCore9HTMLNames13onseekingAttrE +_ZN7WebCore9HTMLNames13onstalledAttrE +_ZN7WebCore9HTMLNames13onstorageAttrE +_ZN7WebCore9HTMLNames13onsuspendAttrE +_ZN7WebCore9HTMLNames13onwaitingAttrE +_ZN7WebCore9HTMLNames13playcountAttrE +_ZN7WebCore9HTMLNames13pluginurlAttrE +_ZN7WebCore9HTMLNames13precisionAttrE +_ZN7WebCore9HTMLNames13scrollingAttrE +_ZN7WebCore9HTMLNames13topmarginAttrE +_ZN7WebCore9HTMLNames13translateAttrE +_ZN7WebCore9HTMLNames13truespeedAttrE +_ZN7WebCore9HTMLNames13uiactionsAttrE +_ZN7WebCore9HTMLNames13valuetypeAttrE +_ZN7WebCore9HTMLNames14aria_labelAttrE +_ZN7WebCore9HTMLNames14aria_levelAttrE +_ZN7WebCore9HTMLNames14aria_modalAttrE +_ZN7WebCore9HTMLNames14backgroundAttrE +_ZN7WebCore9HTMLNames14cellborderAttrE +_ZN7WebCore9HTMLNames14formactionAttrE +_ZN7WebCore9HTMLNames14formmethodAttrE +_ZN7WebCore9HTMLNames14formtargetAttrE +_ZN7WebCore9HTMLNames14http_equivAttrE +_ZN7WebCore9HTMLNames14imagesizesAttrE +_ZN7WebCore9HTMLNames14leftmarginAttrE +_ZN7WebCore9HTMLNames14mediagroupAttrE +_ZN7WebCore9HTMLNames14novalidateAttrE +_ZN7WebCore9HTMLNames14ondblclickAttrE +_ZN7WebCore9HTMLNames14ondragoverAttrE +_ZN7WebCore9HTMLNames14onfocusoutAttrE +_ZN7WebCore9HTMLNames14onkeypressAttrE +_ZN7WebCore9HTMLNames14onmouseoutAttrE +_ZN7WebCore9HTMLNames14onpagehideAttrE +_ZN7WebCore9HTMLNames14onpageshowAttrE +_ZN7WebCore9HTMLNames14onpopstateAttrE +_ZN7WebCore9HTMLNames14onprogressAttrE +_ZN7WebCore9HTMLNames14ontouchendAttrE +_ZN7WebCore9HTMLNames14spellcheckAttrE +_ZN7WebCore9HTMLNames15aria_atomicAttrE +_ZN7WebCore9HTMLNames15aria_flowtoAttrE +_ZN7WebCore9HTMLNames15aria_hiddenAttrE +_ZN7WebCore9HTMLNames15autocorrectAttrE +_ZN7WebCore9HTMLNames15bordercolorAttrE +_ZN7WebCore9HTMLNames15cellpaddingAttrE +_ZN7WebCore9HTMLNames15cellspacingAttrE +_ZN7WebCore9HTMLNames15crossoriginAttrE +_ZN7WebCore9HTMLNames15dispositionAttrE +_ZN7WebCore9HTMLNames15exportpartsAttrE +_ZN7WebCore9HTMLNames15formenctypeAttrE +_ZN7WebCore9HTMLNames15frameborderAttrE +_ZN7WebCore9HTMLNames15imagesrcsetAttrE +_ZN7WebCore9HTMLNames15incrementalAttrE +_ZN7WebCore9HTMLNames15marginwidthAttrE +_ZN7WebCore9HTMLNames15onbeforecutAttrE +_ZN7WebCore9HTMLNames15ondragenterAttrE +_ZN7WebCore9HTMLNames15ondragleaveAttrE +_ZN7WebCore9HTMLNames15ondragstartAttrE +_ZN7WebCore9HTMLNames15onloadstartAttrE +_ZN7WebCore9HTMLNames15onmousedownAttrE +_ZN7WebCore9HTMLNames15onmousemoveAttrE +_ZN7WebCore9HTMLNames15onmouseoverAttrE +_ZN7WebCore9HTMLNames15onpointerupAttrE +_ZN7WebCore9HTMLNames15ontouchmoveAttrE +_ZN7WebCore9HTMLNames15placeholderAttrE +_ZN7WebCore9HTMLNames15playsinlineAttrE +_ZN7WebCore9HTMLNames15pluginspageAttrE +_ZN7WebCore9HTMLNames15scrolldelayAttrE +_ZN7WebCore9HTMLNames15tableborderAttrE +_ZN7WebCore9HTMLNames16adcampaignidAttrE +_ZN7WebCore9HTMLNames16aria_checkedAttrE +_ZN7WebCore9HTMLNames16aria_colspanAttrE +_ZN7WebCore9HTMLNames16aria_currentAttrE +_ZN7WebCore9HTMLNames16aria_detailsAttrE +_ZN7WebCore9HTMLNames16aria_grabbedAttrE +_ZN7WebCore9HTMLNames16aria_invalidAttrE +_ZN7WebCore9HTMLNames16aria_pressedAttrE +_ZN7WebCore9HTMLNames16aria_rowspanAttrE +_ZN7WebCore9HTMLNames16aria_setsizeAttrE +_ZN7WebCore9HTMLNames16autocompleteAttrE +_ZN7WebCore9HTMLNames16bgpropertiesAttrE +_ZN7WebCore9HTMLNames16enterkeyhintAttrE +_ZN7WebCore9HTMLNames16marginheightAttrE +_ZN7WebCore9HTMLNames16onafterprintAttrE +_ZN7WebCore9HTMLNames16onbeforecopyAttrE +_ZN7WebCore9HTMLNames16onbeforeloadAttrE +_ZN7WebCore9HTMLNames16ongestureendAttrE +_ZN7WebCore9HTMLNames16onhashchangeAttrE +_ZN7WebCore9HTMLNames16onloadeddataAttrE +_ZN7WebCore9HTMLNames16onmouseenterAttrE +_ZN7WebCore9HTMLNames16onmouseleaveAttrE +_ZN7WebCore9HTMLNames16onmousewheelAttrE +_ZN7WebCore9HTMLNames16onpointeroutAttrE +_ZN7WebCore9HTMLNames16onratechangeAttrE +_ZN7WebCore9HTMLNames16ontimeupdateAttrE +_ZN7WebCore9HTMLNames16ontouchstartAttrE +_ZN7WebCore9HTMLNames16scrollamountAttrE +_ZN7WebCore9HTMLNames16webkitspeechAttrE +_ZN7WebCore9HTMLNames17addestinationAttrE +_ZN7WebCore9HTMLNames17aria_colcountAttrE +_ZN7WebCore9HTMLNames17aria_colindexAttrE +_ZN7WebCore9HTMLNames17aria_controlsAttrE +_ZN7WebCore9HTMLNames17aria_disabledAttrE +_ZN7WebCore9HTMLNames17aria_expandedAttrE +_ZN7WebCore9HTMLNames17aria_haspopupAttrE +_ZN7WebCore9HTMLNames17aria_posinsetAttrE +_ZN7WebCore9HTMLNames17aria_readonlyAttrE +_ZN7WebCore9HTMLNames17aria_relevantAttrE +_ZN7WebCore9HTMLNames17aria_requiredAttrE +_ZN7WebCore9HTMLNames17aria_rowcountAttrE +_ZN7WebCore9HTMLNames17aria_rowindexAttrE +_ZN7WebCore9HTMLNames17aria_selectedAttrE +_ZN7WebCore9HTMLNames17aria_valuemaxAttrE +_ZN7WebCore9HTMLNames17aria_valueminAttrE +_ZN7WebCore9HTMLNames17aria_valuenowAttrE +_ZN7WebCore9HTMLNames17indeterminateAttrE +_ZN7WebCore9HTMLNames17onbeforeinputAttrE +_ZN7WebCore9HTMLNames17onbeforepasteAttrE +_ZN7WebCore9HTMLNames17onbeforeprintAttrE +_ZN7WebCore9HTMLNames17oncontextmenuAttrE +_ZN7WebCore9HTMLNames17onpointerdownAttrE +_ZN7WebCore9HTMLNames17onpointermoveAttrE +_ZN7WebCore9HTMLNames17onpointeroverAttrE +_ZN7WebCore9HTMLNames17onselectstartAttrE +_ZN7WebCore9HTMLNames17ontouchcancelAttrE +_ZN7WebCore9HTMLNames17sortdirectionAttrE +_ZN7WebCore9HTMLNames17webkitairplayAttrE +_ZN7WebCore9HTMLNames17webkitgrammarAttrE +_ZN7WebCore9HTMLNames17xhtmlNamespaceURIE +_ZN7WebCore9HTMLNames18accept_charsetAttrE +_ZN7WebCore9HTMLNames18aria_labeledbyAttrE +_ZN7WebCore9HTMLNames18aria_multilineAttrE +_ZN7WebCore9HTMLNames18aria_valuetextAttrE +_ZN7WebCore9HTMLNames18autocapitalizeAttrE +_ZN7WebCore9HTMLNames18formnovalidateAttrE +_ZN7WebCore9HTMLNames18onanimationendAttrE +_ZN7WebCore9HTMLNames18onautocompleteAttrE +_ZN7WebCore9HTMLNames18onbeforeunloadAttrE +_ZN7WebCore9HTMLNames18ondevicechangeAttrE +_ZN7WebCore9HTMLNames18ongesturestartAttrE +_ZN7WebCore9HTMLNames18onpointerenterAttrE +_ZN7WebCore9HTMLNames18onpointerleaveAttrE +_ZN7WebCore9HTMLNames18onvolumechangeAttrE +_ZN7WebCore9HTMLNames18referrerpolicyAttrE +_ZN7WebCore9HTMLNames18webkitdropzoneAttrE +_ZN7WebCore9HTMLNames19allowfullscreenAttrE +_ZN7WebCore9HTMLNames19aria_dropeffectAttrE +_ZN7WebCore9HTMLNames19aria_labelledbyAttrE +_ZN7WebCore9HTMLNames19contenteditableAttrE +_ZN7WebCore9HTMLNames19ongesturechangeAttrE +_ZN7WebCore9HTMLNames19onpointercancelAttrE +_ZN7WebCore9HTMLNames19ontransitionendAttrE +_ZN7WebCore9HTMLNames19ontransitionrunAttrE +_ZN7WebCore9HTMLNames19onwebkitneedkeyAttrE +_ZN7WebCore9HTMLNames19webkitdirectoryAttrE +_ZN7WebCore9HTMLNames19webkitimagemenuAttrE +_ZN7WebCore9HTMLNames20aria_describedbyAttrE +_ZN7WebCore9HTMLNames20aria_orientationAttrE +_ZN7WebCore9HTMLNames20aria_placeholderAttrE +_ZN7WebCore9HTMLNames20onanimationstartAttrE +_ZN7WebCore9HTMLNames20oncanplaythroughAttrE +_ZN7WebCore9HTMLNames20ondurationchangeAttrE +_ZN7WebCore9HTMLNames20onlanguagechangeAttrE +_ZN7WebCore9HTMLNames20onloadedmetadataAttrE +_ZN7WebCore9HTMLNames20onwebkitkeyaddedAttrE +_ZN7WebCore9HTMLNames20onwebkitkeyerrorAttrE +_ZN7WebCore9HTMLNames21aria_autocompleteAttrE +_ZN7WebCore9HTMLNames21aria_errormessageAttrE +_ZN7WebCore9HTMLNames21aria_keyshortcutsAttrE +_ZN7WebCore9HTMLNames21onaccessibleclickAttrE +_ZN7WebCore9HTMLNames21onaccessiblefocusAttrE +_ZN7WebCore9HTMLNames21onanimationcancelAttrE +_ZN7WebCore9HTMLNames21onselectionchangeAttrE +_ZN7WebCore9HTMLNames21ontransitionstartAttrE +_ZN7WebCore9HTMLNames22onaccessibleselectAttrE +_ZN7WebCore9HTMLNames22ontouchforcechangeAttrE +_ZN7WebCore9HTMLNames22ontransitioncancelAttrE +_ZN7WebCore9HTMLNames22onwebkitkeymessageAttrE +_ZN7WebCore9HTMLNames22onwebkitsourceopenAttrE +_ZN7WebCore9HTMLNames22webkit_playsinlineAttrE +_ZN7WebCore9HTMLNames22webkitattachmentidAttrE +_ZN7WebCore9HTMLNames23onaccessibledismissAttrE +_ZN7WebCore9HTMLNames23onautocompleteerrorAttrE +_ZN7WebCore9HTMLNames23ongotpointercaptureAttrE +_ZN7WebCore9HTMLNames23onorientationchangeAttrE +_ZN7WebCore9HTMLNames23onwebkitsourcecloseAttrE +_ZN7WebCore9HTMLNames23onwebkitsourceendedAttrE +_ZN7WebCore9HTMLNames24aria_multiselectableAttrE +_ZN7WebCore9HTMLNames24aria_roledescriptionAttrE +_ZN7WebCore9HTMLNames24autopictureinpictureAttrE +_ZN7WebCore9HTMLNames24onaccessiblesetvalueAttrE +_ZN7WebCore9HTMLNames24onanimationiterationAttrE +_ZN7WebCore9HTMLNames24onlostpointercaptureAttrE +_ZN7WebCore9HTMLNames24onwebkitanimationendAttrE +_ZN7WebCore9HTMLNames24onwebkitmouseforceupAttrE +_ZN7WebCore9HTMLNames24onwebkitspeechchangeAttrE +_ZN7WebCore9HTMLNames24webkitattachmentpathAttrE +_ZN7WebCore9HTMLNames25aria_activedescendantAttrE +_ZN7WebCore9HTMLNames25disableremoteplaybackAttrE +_ZN7WebCore9HTMLNames25onaccessibledecrementAttrE +_ZN7WebCore9HTMLNames25onaccessibleincrementAttrE +_ZN7WebCore9HTMLNames25onwebkitendfullscreenAttrE +_ZN7WebCore9HTMLNames25onwebkittransitionendAttrE +_ZN7WebCore9HTMLNames25onwebkitwillrevealtopAttrE +_ZN7WebCore9HTMLNames25webkitallowfullscreenAttrE +_ZN7WebCore9HTMLNames26onwebkitanimationstartAttrE +_ZN7WebCore9HTMLNames26onwebkitmouseforcedownAttrE +_ZN7WebCore9HTMLNames26onwebkitwillrevealleftAttrE +_ZN7WebCore9HTMLNames26x_apple_data_detectorsAttrE +_ZN7WebCore9HTMLNames26x_apple_editable_imageAttrE +_ZN7WebCore9HTMLNames26x_apple_pdf_annotationAttrE +_ZN7WebCore9HTMLNames27disablepictureinpictureAttrE +_ZN7WebCore9HTMLNames27onaccessiblecontextmenuAttrE +_ZN7WebCore9HTMLNames27onwebkitbeginfullscreenAttrE +_ZN7WebCore9HTMLNames27onwebkitfullscreenerrorAttrE +_ZN7WebCore9HTMLNames27onwebkitwillrevealrightAttrE +_ZN7WebCore9HTMLNames27webkitattachmentbloburlAttrE +_ZN7WebCore9HTMLNames28onwebkitfullscreenchangeAttrE +_ZN7WebCore9HTMLNames28onwebkitwillrevealbottomAttrE +_ZN7WebCore9HTMLNames29onwebkitmouseforcechangedAttrE +_ZN7WebCore9HTMLNames30onaccessiblescrollintoviewAttrE +_ZN7WebCore9HTMLNames30onwebkitanimationiterationAttrE +_ZN7WebCore9HTMLNames31onwebkitmouseforcewillbeginAttrE +_ZN7WebCore9HTMLNames31x_apple_data_detectors_typeAttrE +_ZN7WebCore9HTMLNames33x_apple_data_detectors_resultAttrE +_ZN7WebCore9HTMLNames35onwebkitpresentationmodechangedAttrE +_ZN7WebCore9HTMLNames39webkitwirelessvideoplaybackdisabledAttrE +_ZN7WebCore9HTMLNames40x_itunes_inherit_uri_query_componentAttrE +_ZN7WebCore9HTMLNames45onwebkitplaybacktargetavailabilitychangedAttrE +_ZN7WebCore9HTMLNames4aTagE +_ZN7WebCore9HTMLNames4bTagE +_ZN7WebCore9HTMLNames4iTagE +_ZN7WebCore9HTMLNames4initEv +_ZN7WebCore9HTMLNames4pTagE +_ZN7WebCore9HTMLNames4qTagE +_ZN7WebCore9HTMLNames4sTagE +_ZN7WebCore9HTMLNames4uTagE +_ZN7WebCore9HTMLNames50onwebkitcurrentplaybacktargetiswirelesschangedAttrE +_ZN7WebCore9HTMLNames5brTagE +_ZN7WebCore9HTMLNames5ddTagE +_ZN7WebCore9HTMLNames5dlTagE +_ZN7WebCore9HTMLNames5dtTagE +_ZN7WebCore9HTMLNames5emTagE +_ZN7WebCore9HTMLNames5h1TagE +_ZN7WebCore9HTMLNames5h2TagE +_ZN7WebCore9HTMLNames5h3TagE +_ZN7WebCore9HTMLNames5h4TagE +_ZN7WebCore9HTMLNames5h5TagE +_ZN7WebCore9HTMLNames5h6TagE +_ZN7WebCore9HTMLNames5hrTagE +_ZN7WebCore9HTMLNames5liTagE +_ZN7WebCore9HTMLNames5olTagE +_ZN7WebCore9HTMLNames5rbTagE +_ZN7WebCore9HTMLNames5rpTagE +_ZN7WebCore9HTMLNames5rtTagE +_ZN7WebCore9HTMLNames5tdTagE +_ZN7WebCore9HTMLNames5thTagE +_ZN7WebCore9HTMLNames5trTagE +_ZN7WebCore9HTMLNames5ttTagE +_ZN7WebCore9HTMLNames5ulTagE +_ZN7WebCore9HTMLNames6asAttrE +_ZN7WebCore9HTMLNames6bdiTagE +_ZN7WebCore9HTMLNames6bdoTagE +_ZN7WebCore9HTMLNames6bigTagE +_ZN7WebCore9HTMLNames6colTagE +_ZN7WebCore9HTMLNames6delTagE +_ZN7WebCore9HTMLNames6dfnTagE +_ZN7WebCore9HTMLNames6dirTagE +_ZN7WebCore9HTMLNames6divTagE +_ZN7WebCore9HTMLNames6idAttrE +_ZN7WebCore9HTMLNames6imgTagE +_ZN7WebCore9HTMLNames6insTagE +_ZN7WebCore9HTMLNames6isAttrE +_ZN7WebCore9HTMLNames6kbdTagE +_ZN7WebCore9HTMLNames6mapTagE +_ZN7WebCore9HTMLNames6navTagE +_ZN7WebCore9HTMLNames6preTagE +_ZN7WebCore9HTMLNames6rtcTagE +_ZN7WebCore9HTMLNames6subTagE +_ZN7WebCore9HTMLNames6supTagE +_ZN7WebCore9HTMLNames6varTagE +_ZN7WebCore9HTMLNames6wbrTagE +_ZN7WebCore9HTMLNames6xmpTagE +_ZN7WebCore9HTMLNames7abbrTagE +_ZN7WebCore9HTMLNames7altAttrE +_ZN7WebCore9HTMLNames7areaTagE +_ZN7WebCore9HTMLNames7baseTagE +_ZN7WebCore9HTMLNames7bodyTagE +_ZN7WebCore9HTMLNames7citeTagE +_ZN7WebCore9HTMLNames7codeTagE +_ZN7WebCore9HTMLNames7dataTagE +_ZN7WebCore9HTMLNames7dirAttrE +_ZN7WebCore9HTMLNames7endAttrE +_ZN7WebCore9HTMLNames7fontTagE +_ZN7WebCore9HTMLNames7forAttrE +_ZN7WebCore9HTMLNames7formTagE +_ZN7WebCore9HTMLNames7headTagE +_ZN7WebCore9HTMLNames7htmlTagE +_ZN7WebCore9HTMLNames7linkTagE +_ZN7WebCore9HTMLNames7lowAttrE +_ZN7WebCore9HTMLNames7mainTagE +_ZN7WebCore9HTMLNames7markTagE +_ZN7WebCore9HTMLNames7maxAttrE +_ZN7WebCore9HTMLNames7menuTagE +_ZN7WebCore9HTMLNames7metaTagE +_ZN7WebCore9HTMLNames7minAttrE +_ZN7WebCore9HTMLNames7nobrTagE +_ZN7WebCore9HTMLNames7relAttrE +_ZN7WebCore9HTMLNames7revAttrE +_ZN7WebCore9HTMLNames7rubyTagE +_ZN7WebCore9HTMLNames7sampTagE +_ZN7WebCore9HTMLNames7slotTagE +_ZN7WebCore9HTMLNames7spanTagE +_ZN7WebCore9HTMLNames7srcAttrE +_ZN7WebCore9HTMLNames7timeTagE +_ZN7WebCore9HTMLNames7topAttrE +_ZN7WebCore9HTMLNames8abbrAttrE +_ZN7WebCore9HTMLNames8asideTagE +_ZN7WebCore9HTMLNames8audioTagE +_ZN7WebCore9HTMLNames8axisAttrE +_ZN7WebCore9HTMLNames8charAttrE +_ZN7WebCore9HTMLNames8citeAttrE +_ZN7WebCore9HTMLNames8codeAttrE +_ZN7WebCore9HTMLNames8colsAttrE +_ZN7WebCore9HTMLNames8dataAttrE +_ZN7WebCore9HTMLNames8embedTagE +_ZN7WebCore9HTMLNames8faceAttrE +_ZN7WebCore9HTMLNames8formAttrE +_ZN7WebCore9HTMLNames8frameTagE +_ZN7WebCore9HTMLNames8highAttrE +_ZN7WebCore9HTMLNames8hrefAttrE +_ZN7WebCore9HTMLNames8imageTagE +_ZN7WebCore9HTMLNames8inputTagE +_ZN7WebCore9HTMLNames8kindAttrE +_ZN7WebCore9HTMLNames8labelTagE +_ZN7WebCore9HTMLNames8langAttrE +_ZN7WebCore9HTMLNames8layerTagE +_ZN7WebCore9HTMLNames8linkAttrE +_ZN7WebCore9HTMLNames8listAttrE +_ZN7WebCore9HTMLNames8loopAttrE +_ZN7WebCore9HTMLNames8meterTagE +_ZN7WebCore9HTMLNames8nameAttrE +_ZN7WebCore9HTMLNames8openAttrE +_ZN7WebCore9HTMLNames8paramTagE +_ZN7WebCore9HTMLNames8partAttrE +_ZN7WebCore9HTMLNames8pingAttrE +_ZN7WebCore9HTMLNames8roleAttrE +_ZN7WebCore9HTMLNames8rowsAttrE +_ZN7WebCore9HTMLNames8sizeAttrE +_ZN7WebCore9HTMLNames8slotAttrE +_ZN7WebCore9HTMLNames8smallTagE +_ZN7WebCore9HTMLNames8spanAttrE +_ZN7WebCore9HTMLNames8stepAttrE +_ZN7WebCore9HTMLNames8styleTagE +_ZN7WebCore9HTMLNames8tableTagE +_ZN7WebCore9HTMLNames8tbodyTagE +_ZN7WebCore9HTMLNames8textAttrE +_ZN7WebCore9HTMLNames8tfootTagE +_ZN7WebCore9HTMLNames8theadTagE +_ZN7WebCore9HTMLNames8titleTagE +_ZN7WebCore9HTMLNames8trackTagE +_ZN7WebCore9HTMLNames8typeAttrE +_ZN7WebCore9HTMLNames8videoTagE +_ZN7WebCore9HTMLNames8wrapAttrE +_ZN7WebCore9HTMLNames9alignAttrE +_ZN7WebCore9HTMLNames9alinkAttrE +_ZN7WebCore9HTMLNames9allowAttrE +_ZN7WebCore9HTMLNames9appletTagE +_ZN7WebCore9HTMLNames9asyncAttrE +_ZN7WebCore9HTMLNames9buttonTagE +_ZN7WebCore9HTMLNames9canvasTagE +_ZN7WebCore9HTMLNames9centerTagE +_ZN7WebCore9HTMLNames9classAttrE +_ZN7WebCore9HTMLNames9clearAttrE +_ZN7WebCore9HTMLNames9colorAttrE +_ZN7WebCore9HTMLNames9deferAttrE +_ZN7WebCore9HTMLNames9dialogTagE +_ZN7WebCore9HTMLNames9eventAttrE +_ZN7WebCore9HTMLNames9figureTagE +_ZN7WebCore9HTMLNames9footerTagE +_ZN7WebCore9HTMLNames9frameAttrE +_ZN7WebCore9HTMLNames9headerTagE +_ZN7WebCore9HTMLNames9hgroupTagE +_ZN7WebCore9HTMLNames9iframeTagE +_ZN7WebCore9HTMLNames9ismapAttrE +_ZN7WebCore9HTMLNames9keygenTagE +_ZN7WebCore9HTMLNames9labelAttrE +_ZN7WebCore9HTMLNames9legendTagE +_ZN7WebCore9HTMLNames9mediaAttrE +_ZN7WebCore9HTMLNames9mutedAttrE +_ZN7WebCore9HTMLNames9nonceAttrE +_ZN7WebCore9HTMLNames9objectTagE +_ZN7WebCore9HTMLNames9oncutAttrE +_ZN7WebCore9HTMLNames9optionTagE +_ZN7WebCore9HTMLNames9outputTagE +_ZN7WebCore9HTMLNames9rulesAttrE +_ZN7WebCore9HTMLNames9scopeAttrE +_ZN7WebCore9HTMLNames9scriptTagE +_ZN7WebCore9HTMLNames9selectTagE +_ZN7WebCore9HTMLNames9shapeAttrE +_ZN7WebCore9HTMLNames9sizesAttrE +_ZN7WebCore9HTMLNames9sourceTagE +_ZN7WebCore9HTMLNames9startAttrE +_ZN7WebCore9HTMLNames9strikeTagE +_ZN7WebCore9HTMLNames9strongTagE +_ZN7WebCore9HTMLNames9styleAttrE +_ZN7WebCore9HTMLNames9titleAttrE +_ZN7WebCore9HTMLNames9valueAttrE +_ZN7WebCore9HTMLNames9vlinkAttrE +_ZN7WebCore9HTMLNames9widthAttrE +_ZN7WebCore9IPAddress10getSinAddrEv +_ZN7WebCore9IPAddressC1ERK11sockaddr_in +_ZN7WebCore9IPAddressC2ERK11sockaddr_in +_ZN7WebCore9ImageData6createEON3WTF3RefIN3JSC21GenericTypedArrayViewINS3_19Uint8ClampedAdaptorEEENS1_13DumbPtrTraitsIS6_EEEEjNS1_8OptionalIjEE +_ZN7WebCore9ImageData6createEON3WTF3RefIN3JSC21GenericTypedArrayViewINS3_19Uint8ClampedAdaptorEEENS1_13DumbPtrTraitsIS6_EEEEjSt8optionalIjE +_ZN7WebCore9ImageData6createERKNS_7IntSizeE +_ZN7WebCore9ImageData6createERKNS_7IntSizeEON3WTF3RefIN3JSC21GenericTypedArrayViewINS6_19Uint8ClampedAdaptorEEENS4_13DumbPtrTraitsIS9_EEEE +_ZN7WebCore9ImageData6createEjj +_ZN7WebCore9ImageDataC1ERKNS_7IntSizeE +_ZN7WebCore9ImageDataC1ERKNS_7IntSizeEON3WTF3RefIN3JSC21GenericTypedArrayViewINS6_19Uint8ClampedAdaptorEEENS4_13DumbPtrTraitsIS9_EEEE +_ZN7WebCore9ImageDataC2ERKNS_7IntSizeE +_ZN7WebCore9ImageDataC2ERKNS_7IntSizeEON3WTF3RefIN3JSC21GenericTypedArrayViewINS6_19Uint8ClampedAdaptorEEENS4_13DumbPtrTraitsIS9_EEEE +_ZN7WebCore9ImageDataD1Ev +_ZN7WebCore9ImageDataD2Ev +_ZN7WebCore9InlineBox14adjustPositionEff +_ZN7WebCore9InlineBox14dirtyLineBoxesEv +_ZN7WebCore9InlineBox14selectionStateEv +_ZN7WebCore9InlineBox16placeEllipsisBoxEbfffRfRb +_ZN7WebCore9JSCSSRule9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore9JSDOMRect11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE +_ZN7WebCore9JSDOMRect14finishCreationERN3JSC2VME +_ZN7WebCore9JSDOMRect14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE +_ZN7WebCore9JSDOMRect15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore9JSDOMRect15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE +_ZN7WebCore9JSDOMRect15subspaceForImplERN3JSC2VME +_ZN7WebCore9JSDOMRect4infoEv +_ZN7WebCore9JSDOMRect6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_7DOMRectENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore9JSDOMRect6s_infoE +_ZN7WebCore9JSDOMRect9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore9JSDOMRectC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_7DOMRectENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore9JSDOMRectC1ERKS0_ +_ZN7WebCore9JSDOMRectC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_7DOMRectENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore9JSDOMRectC2ERKS0_ +_ZN7WebCore9JSDOMRectD1Ev +_ZN7WebCore9JSDOMRectD2Ev +_ZN7WebCore9JSElement11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE +_ZN7WebCore9JSElement14finishCreationERN3JSC2VME +_ZN7WebCore9JSElement14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE +_ZN7WebCore9JSElement15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore9JSElement15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE +_ZN7WebCore9JSElement15subspaceForImplERN3JSC2VME +_ZN7WebCore9JSElement4infoEv +_ZN7WebCore9JSElement6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_7ElementENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore9JSElement6s_infoE +_ZN7WebCore9JSElement9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE +_ZN7WebCore9JSElement9toWrappedERN3JSC2VMENS1_7JSValueE +_ZN7WebCore9JSElementC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_7ElementENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore9JSElementC1ERKS0_ +_ZN7WebCore9JSElementC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_7ElementENS6_13DumbPtrTraitsIS8_EEEE +_ZN7WebCore9JSElementC2ERKS0_ +_ZN7WebCore9JSElementD1Ev +_ZN7WebCore9JSElementD2Ev +_ZN7WebCore9MediaList12appendMediumERKN3WTF6StringE +_ZN7WebCore9MediaList12deleteMediumERKN3WTF6StringE +_ZN7WebCore9MediaList12setMediaTextERKN3WTF6StringE +_ZN7WebCore9MediaListD1Ev +_ZN7WebCore9MediaListD2Ev +_ZN7WebCore9PageCache10setMaxSizeEj +_ZN7WebCore9PageCache14pruneToSizeNowEjNS_13PruningReasonE +_ZN7WebCore9PageCache6removeERNS_11HistoryItemE +_ZN7WebCore9PageCache9singletonEv +_ZN7WebCore9PageGroup18captionPreferencesEv +_ZN7WebCore9PageGroup25captionPreferencesChangedEv +_ZN7WebCore9PageGroup9pageGroupERKN3WTF6StringE +_ZN7WebCore9PageGroupC1ERKN3WTF6StringE +_ZN7WebCore9PageGroupC2ERKN3WTF6StringE +_ZN7WebCore9SampleMap12removeSampleEPNS_11MediaSampleE +_ZN7WebCore9SampleMap5clearEv +_ZN7WebCore9SampleMap9addSampleERNS_11MediaSampleE +_ZN7WebCore9Scrollbar10mouseMovedERKNS_18PlatformMouseEventE +_ZN7WebCore9Scrollbar11mouseExitedEv +_ZN7WebCore9Scrollbar12mouseEnteredEv +_ZN7WebCore9Scrollbar13setProportionEii +_ZN7WebCore9Scrollbar21createNativeScrollbarERNS_14ScrollableAreaENS_20ScrollbarOrientationENS_20ScrollbarControlSizeE +_ZN7WebCore9Scrollbar22maxOverlapBetweenPagesEv +_ZN7WebCore9Scrollbar7mouseUpERKNS_18PlatformMouseEventE +_ZN7WebCore9Scrollbar8setStepsEiii +_ZN7WebCore9Scrollbar9mouseDownERKNS_18PlatformMouseEventE +_ZN7WebCore9TextEvent13initTextEventERKN3WTF10AtomStringEbbONS1_6RefPtrINS_11WindowProxyENS1_13DumbPtrTraitsIS6_EEEERKNS1_6StringE +_ZN7WebCore9TextEvent13initTextEventERKN3WTF12AtomicStringEbbONS1_6RefPtrINS_11WindowProxyENS1_13DumbPtrTraitsIS6_EEEERKNS1_6StringE +_ZN7WebCore9TimerBase4stopEv +_ZN7WebCore9TimerBase5startEN3WTF7SecondsES2_ +_ZN7WebCore9TimerBaseC2Ev +_ZN7WebCore9TimerBaseD0Ev +_ZN7WebCore9TimerBaseD1Ev +_ZN7WebCore9TimerBaseD2Ev +_ZN7WebCore9TreeScope16elementFromPointEdd +_ZN7WebCore9TreeScope17elementsFromPointERKNS_10FloatPointE +_ZN7WebCore9TreeScope17elementsFromPointEdd +_ZN7WebCore9URLParser14allValuesEqualERKNS_3URLES3_ +_ZN7WebCore9URLParser15isSpecialSchemeERKN3WTF6StringE +_ZN7WebCore9URLParser19parseURLEncodedFormEN3WTF10StringViewE +_ZN7WebCore9URLParser23maybeCanonicalizeSchemeERKN3WTF6StringE +_ZN7WebCore9URLParser24internalValuesConsistentERKNS_3URLE +_ZN7WebCore9URLParserC1ERKN3WTF6StringERKNS_3URLERKNS_12TextEncodingE +_ZN7WebCore9URLParserC2ERKN3WTF6StringERKNS_3URLERKNS_12TextEncodingE +_ZN7WebCore9VRManager9singletonEv +_ZN7WebCore9endOfLineERKNS_15VisiblePositionE +_ZN7WebCore9endOfWordERKNS_15VisiblePositionENS_9EWordSideE +_ZN7WebCore9makeRangeERKNS_15VisiblePositionES2_ +_ZN7WebCore9plainTextEPKNS_5RangeEtb +_ZN7WebCore9plainTextERKNS_11SimpleRangeEtb +_ZN7WebCore9subdivideERKN3WTF6VectorINS_10MarkedTextELm0ENS0_15CrashOnOverflowELm16EEENS_15OverlapStrategyE +_ZN7WebCore9subdivideERKN3WTF6VectorINS_10MarkedTextELm0ENS0_15CrashOnOverflowELm16ENS0_10FastMallocEEENS_15OverlapStrategyE +_ZN7WebCore9unionRectERKN3WTF6VectorINS_9FloatRectELm0ENS0_15CrashOnOverflowELm16EEE +_ZN7WebCore9unionRectERKN3WTF6VectorINS_9FloatRectELm0ENS0_15CrashOnOverflowELm16ENS0_10FastMallocEEE +_ZN7WebCoreeqERKNS_18SecurityOriginDataES2_ +_ZN7WebCorelsERN3WTF10TextStreamENS0_9OptionSetINS_13ActivityState4FlagEEE +_ZN7WebCorelsERN3WTF10TextStreamENS_10ColorSpaceE +_ZN7WebCorelsERN3WTF10TextStreamENS_10ScrollTypeE +_ZN7WebCorelsERN3WTF10TextStreamENS_11TouchActionE +_ZN7WebCorelsERN3WTF10TextStreamENS_14ScrollClampingE +_ZN7WebCorelsERN3WTF10TextStreamENS_15ScrollAlignment8BehaviorE +_ZN7WebCorelsERN3WTF10TextStreamENS_17CompositeOperatorE +_ZN7WebCorelsERN3WTF10TextStreamENS_17ScrollingNodeTypeE +_ZN7WebCorelsERN3WTF10TextStreamENS_21ViewportRectStabilityE +_ZN7WebCorelsERN3WTF10TextStreamENS_22AlphaPremultiplicationE +_ZN7WebCorelsERN3WTF10TextStreamENS_24ScrollableAreaParametersE +_ZN7WebCorelsERN3WTF10TextStreamENS_25ScrollPositioningBehaviorE +_ZN7WebCorelsERN3WTF10TextStreamENS_26GraphicsLayerPaintingPhaseE +_ZN7WebCorelsERN3WTF10TextStreamENS_28ScrollingLayerPositionActionE +_ZN7WebCorelsERN3WTF10TextStreamENS_30ScrollBehaviorForFixedElementsE +_ZN7WebCorelsERN3WTF10TextStreamENS_7LineCapE +_ZN7WebCorelsERN3WTF10TextStreamENS_8LineJoinE +_ZN7WebCorelsERN3WTF10TextStreamENS_8WindRuleE +_ZN7WebCorelsERN3WTF10TextStreamENS_9BlendModeE +_ZN7WebCorelsERN3WTF10TextStreamERKNS0_6VectorImLm0ENS0_15CrashOnOverflowELm16EEE +_ZN7WebCorelsERN3WTF10TextStreamERKNS0_6VectorImLm0ENS0_15CrashOnOverflowELm16ENS0_10FastMallocEEE +_ZN7WebCorelsERN3WTF10TextStreamERKNS_10FloatPointE +_ZN7WebCorelsERN3WTF10TextStreamERKNS_10LayoutRectE +_ZN7WebCorelsERN3WTF10TextStreamERKNS_10LayoutSizeE +_ZN7WebCorelsERN3WTF10TextStreamERKNS_10LayoutUnitE +_ZN7WebCorelsERN3WTF10TextStreamERKNS_11EventRegionE +_ZN7WebCorelsERN3WTF10TextStreamERKNS_11LayoutPointE +_ZN7WebCorelsERN3WTF10TextStreamERKNS_12FilterEffectE +_ZN7WebCorelsERN3WTF10TextStreamERKNS_12FloatPoint3DE +_ZN7WebCorelsERN3WTF10TextStreamERKNS_12VelocityDataE +_ZN7WebCorelsERN3WTF10TextStreamERKNS_13GraphicsLayer16CustomAppearanceE +_ZN7WebCorelsERN3WTF10TextStreamERKNS_14TimingFunctionE +_ZN7WebCorelsERN3WTF10TextStreamERKNS_15AffineTransformE +_ZN7WebCorelsERN3WTF10TextStreamERKNS_15FilterOperationE +_ZN7WebCorelsERN3WTF10TextStreamERKNS_15ScrollAlignmentE +_ZN7WebCorelsERN3WTF10TextStreamERKNS_15VisiblePositionE +_ZN7WebCorelsERN3WTF10TextStreamERKNS_16FilterOperationsE +_ZN7WebCorelsERN3WTF10TextStreamERKNS_16FloatRoundedRectE +_ZN7WebCorelsERN3WTF10TextStreamERKNS_16VisibleSelectionE +_ZN7WebCorelsERN3WTF10TextStreamERKNS_20TransformationMatrixE +_ZN7WebCorelsERN3WTF10TextStreamERKNS_27AbsolutePositionConstraintsE +_ZN7WebCorelsERN3WTF10TextStreamERKNS_32FixedPositionViewportConstraintsE +_ZN7WebCorelsERN3WTF10TextStreamERKNS_33StickyPositionViewportConstraintsE +_ZN7WebCorelsERN3WTF10TextStreamERKNS_5ColorE +_ZN7WebCorelsERN3WTF10TextStreamERKNS_6RegionE +_ZN7WebCorelsERN3WTF10TextStreamERKNS_7IntRectE +_ZN7WebCorelsERN3WTF10TextStreamERKNS_7IntSizeE +_ZN7WebCorelsERN3WTF10TextStreamERKNS_8IntPointE +_ZN7WebCorelsERN3WTF10TextStreamERKNS_9FloatRectE +_ZN7WebCorelsERN3WTF10TextStreamERKNS_9FloatSizeE +_ZN7WebCorelsERN3WTF10TextStreamERKNS_9ImageDataE +_ZN7WebCorelsERN3WTF10TextStreamERKNS_9RectEdgesIfEE +_ZN7bmalloc11AllIsoHeaps3addEPNS_15IsoHeapImplBaseE +_ZN7bmalloc11AllIsoHeaps4headEv +_ZN7bmalloc11AllIsoHeapsC1ERKSt11scoped_lockIJNS_5MutexEEE +_ZN7bmalloc11AllIsoHeapsC2ERKSt11scoped_lockIJNS_5MutexEEE +_ZN7bmalloc11Deallocator18deallocateSlowCaseEPv +_ZN7bmalloc11EnvironmentC1ERKSt11scoped_lockIJNS_5MutexEEE +_ZN7bmalloc11EnvironmentC2ERKSt11scoped_lockIJNS_5MutexEEE +_ZN7bmalloc11IsoPageBase18allocatePageMemoryEv +_ZN7bmalloc11IsoTLSEntryC2Em +_ZN7bmalloc11IsoTLSEntryD0Ev +_ZN7bmalloc11IsoTLSEntryD1Ev +_ZN7bmalloc11IsoTLSEntryD2Ev +_ZN7bmalloc11IsoTLSEntrydlEPv +_ZN7bmalloc11IsoTLSEntrynaEm +_ZN7bmalloc11IsoTLSEntrynaEmPv +_ZN7bmalloc11IsoTLSEntrynwEm +_ZN7bmalloc11IsoTLSEntrynwEmPv +_ZN7bmalloc12IsoTLSLayout3addEPNS_11IsoTLSEntryE +_ZN7bmalloc12IsoTLSLayoutC1ERKSt11scoped_lockIJNS_5MutexEEE +_ZN7bmalloc12IsoTLSLayoutC2ERKSt11scoped_lockIJNS_5MutexEEE +_ZN7bmalloc12cryptoRandomEPvm +_ZN7bmalloc12logVMFailureEm +_ZN7bmalloc12sentinelBitsE +_ZN7bmalloc13IsoSharedPage9tryCreateEv +_ZN7bmalloc14debugHeapCacheE +_ZN7bmalloc15IsoHeapImplBase11didDecommitEPvm +_ZN7bmalloc15IsoHeapImplBase11scavengeNowEv +_ZN7bmalloc15IsoHeapImplBase13isNowFreeableEPvm +_ZN7bmalloc15IsoHeapImplBase14freeableMemoryEv +_ZN7bmalloc15IsoHeapImplBase16addToAllIsoHeapsEv +_ZN7bmalloc15IsoHeapImplBase16finishScavengingERNS_6VectorINS_16DeferredDecommitEEE +_ZN7bmalloc15IsoHeapImplBase18isNoLongerFreeableEPvm +_ZN7bmalloc15IsoHeapImplBase9didCommitEPvm +_ZN7bmalloc15IsoHeapImplBase9footprintEv +_ZN7bmalloc15IsoHeapImplBaseC2ERNS_5MutexE +_ZN7bmalloc15IsoHeapImplBaseD0Ev +_ZN7bmalloc15IsoHeapImplBaseD1Ev +_ZN7bmalloc15IsoHeapImplBaseD2Ev +_ZN7bmalloc15IsoHeapImplBasedlEPv +_ZN7bmalloc15IsoHeapImplBasenaEm +_ZN7bmalloc15IsoHeapImplBasenaEmPv +_ZN7bmalloc15IsoHeapImplBasenwEm +_ZN7bmalloc15IsoHeapImplBasenwEmPv +_ZN7bmalloc15availableMemoryEv +_ZN7bmalloc16isActiveHeapKindENS_8HeapKindE +_ZN7bmalloc17getPerProcessDataEjPKcmm +_ZN7bmalloc19mapToActiveHeapKindENS_8HeapKindE +_ZN7bmalloc29StaticPerProcessStorageTraitsINS_11AllIsoHeapsEE7Storage7s_mutexE +_ZN7bmalloc29StaticPerProcessStorageTraitsINS_11AllIsoHeapsEE7Storage8s_memoryE +_ZN7bmalloc29StaticPerProcessStorageTraitsINS_11AllIsoHeapsEE7Storage8s_objectE +_ZN7bmalloc29StaticPerProcessStorageTraitsINS_11EnvironmentEE7Storage7s_mutexE +_ZN7bmalloc29StaticPerProcessStorageTraitsINS_11EnvironmentEE7Storage8s_memoryE +_ZN7bmalloc29StaticPerProcessStorageTraitsINS_11EnvironmentEE7Storage8s_objectE +_ZN7bmalloc29StaticPerProcessStorageTraitsINS_12IsoTLSLayoutEE7Storage7s_mutexE +_ZN7bmalloc29StaticPerProcessStorageTraitsINS_12IsoTLSLayoutEE7Storage8s_memoryE +_ZN7bmalloc29StaticPerProcessStorageTraitsINS_12IsoTLSLayoutEE7Storage8s_objectE +_ZN7bmalloc29StaticPerProcessStorageTraitsINS_13HeapConstantsEE7Storage7s_mutexE +_ZN7bmalloc29StaticPerProcessStorageTraitsINS_13HeapConstantsEE7Storage8s_memoryE +_ZN7bmalloc29StaticPerProcessStorageTraitsINS_13HeapConstantsEE7Storage8s_objectE +_ZN7bmalloc29StaticPerProcessStorageTraitsINS_13IsoSharedHeapEE7Storage7s_mutexE +_ZN7bmalloc29StaticPerProcessStorageTraitsINS_13IsoSharedHeapEE7Storage8s_memoryE +_ZN7bmalloc29StaticPerProcessStorageTraitsINS_13IsoSharedHeapEE7Storage8s_objectE +_ZN7bmalloc29StaticPerProcessStorageTraitsINS_25ARC4RandomNumberGeneratorEE7Storage7s_mutexE +_ZN7bmalloc29StaticPerProcessStorageTraitsINS_25ARC4RandomNumberGeneratorEE7Storage8s_memoryE +_ZN7bmalloc29StaticPerProcessStorageTraitsINS_25ARC4RandomNumberGeneratorEE7Storage8s_objectE +_ZN7bmalloc29StaticPerProcessStorageTraitsINS_9DebugHeapEE7Storage7s_mutexE +_ZN7bmalloc29StaticPerProcessStorageTraitsINS_9DebugHeapEE7Storage8s_memoryE +_ZN7bmalloc29StaticPerProcessStorageTraitsINS_9DebugHeapEE7Storage8s_objectE +_ZN7bmalloc29StaticPerProcessStorageTraitsINS_9ScavengerEE7Storage7s_mutexE +_ZN7bmalloc29StaticPerProcessStorageTraitsINS_9ScavengerEE7Storage8s_memoryE +_ZN7bmalloc29StaticPerProcessStorageTraitsINS_9ScavengerEE7Storage8s_objectE +_ZN7bmalloc3api13freeOutOfLineEPvNS_8HeapKindE +_ZN7bmalloc3api14enableMiniModeEv +_ZN7bmalloc3api15mallocOutOfLineEmNS_8HeapKindE +_ZN7bmalloc3api16disableScavengerEv +_ZN7bmalloc3api16freeLargeVirtualEPvmNS_8HeapKindE +_ZN7bmalloc3api21commitAlignedPhysicalEPvmNS_8HeapKindE +_ZN7bmalloc3api23decommitAlignedPhysicalEPvmNS_8HeapKindE +_ZN7bmalloc3api29tryLargeZeroedMemalignVirtualEmmNS_8HeapKindE +_ZN7bmalloc3api8scavengeEv +_ZN7bmalloc3api9isEnabledENS_8HeapKindE +_ZN7bmalloc5Cache25allocateSlowCaseNullCacheENS_8HeapKindEm +_ZN7bmalloc5Cache25allocateSlowCaseNullCacheENS_8HeapKindEmm +_ZN7bmalloc5Cache27deallocateSlowCaseNullCacheENS_8HeapKindEPv +_ZN7bmalloc5Cache27reallocateSlowCaseNullCacheENS_8HeapKindEPvm +_ZN7bmalloc5Cache28tryAllocateSlowCaseNullCacheENS_8HeapKindEm +_ZN7bmalloc5Cache28tryAllocateSlowCaseNullCacheENS_8HeapKindEmm +_ZN7bmalloc5Cache30tryReallocateSlowCaseNullCacheENS_8HeapKindEPvm +_ZN7bmalloc5Cache8scavengeENS_8HeapKindE +_ZN7bmalloc6IsoTLS13ensureEntriesEj +_ZN7bmalloc6IsoTLS15s_didInitializeE +_ZN7bmalloc6IsoTLS21s_mallocFallbackStateE +_ZN7bmalloc6IsoTLS28determineMallocFallbackStateEv +_ZN7bmalloc6IsoTLS8s_tlsKeyE +_ZN7bmalloc6IsoTLS8scavengeEv +_ZN7bmalloc8FreeList14initializeBumpEPcj +_ZN7bmalloc8FreeList14initializeListEPNS_8FreeCellEmj +_ZN7bmalloc8FreeList5clearEv +_ZN7bmalloc8FreeListC1Ev +_ZN7bmalloc8FreeListC2Ev +_ZN7bmalloc8FreeListD1Ev +_ZN7bmalloc8FreeListD2Ev +_ZN7bmalloc9Allocator12allocateImplEmmNS_13FailureActionE +_ZN7bmalloc9Allocator14reallocateImplEPvmNS_13FailureActionE +_ZN7bmalloc9Allocator16allocateSlowCaseEmNS_13FailureActionE +_ZN7bmalloc9Scavenger15didStartGrowingEv +_ZN7bmalloc9Scavenger29scheduleIfUnderMemoryPressureEm +_ZN7bmalloc9Scavenger8scheduleEm +_ZN7bmalloc9ScavengerC1ERKSt11scoped_lockIJNS_5MutexEEE +_ZN7bmalloc9ScavengerC2ERKSt11scoped_lockIJNS_5MutexEEE +_ZN8Gigacage10tryReallocENS_4KindEPvm +_ZN8Gigacage11alignedFreeENS_4KindEPv +_ZN8Gigacage11mallocArrayENS_4KindEmm +_ZN8Gigacage14tryMallocArrayENS_4KindEmm +_ZN8Gigacage16freeVirtualPagesENS_4KindEPvm +_ZN8Gigacage16tryAlignedMallocENS_4KindEmm +_ZN8Gigacage29tryAllocateZeroedVirtualPagesENS_4KindEm +_ZN8Gigacage4freeENS_4KindEPv +_ZN8Gigacage6mallocENS_4KindEm +_ZN8Gigacage9tryMallocENS_4KindEm +_ZN8meta_gen11MsvPromoter10InitializeEP22MsvPromoteInnerContext +_ZN8meta_gen11MsvPromoter10isViewableEv +_ZN8meta_gen11MsvPromoter11setKeyValueENS0_23MsvPromoterSetValueInfoEP10KeyValue_tPvi +_ZN8meta_gen11MsvPromoter11setMetadataERN23sceMetadataReaderWriter8MetadataE +_ZN8meta_gen11MsvPromoter11setSortKeysEP22MsvPromoteInnerContext +_ZN8meta_gen11MsvPromoter12initKeyValueENS0_23MsvPromoterSetValueInfoEP10KeyValue_t +_ZN8meta_gen11MsvPromoter13setValuesMetaERN23sceMetadataReaderWriter8MetadataEP10KeyValue_ti +_ZN8meta_gen11MsvPromoter14matrixToDegreeEPA3_i +_ZN8meta_gen11MsvPromoter15convertLangTypeE6Locale +_ZN8meta_gen11MsvPromoter15convertLangTypeEN12video_parser9VP_LANG_eE +_ZN8meta_gen11MsvPromoter15convertLangTypeEN9db_schema12LanguageTypeE +_ZN8meta_gen11MsvPromoter15freeAllKeyValueEP10KeyValue_ti +_ZN8meta_gen11MsvPromoter16ExtractThumbnailERN23sceMetadataReaderWriter9ThumbnailEP22MsvPromoteInnerContextP20MsvCancelInterface_tP19MsvStorageInterfaceP26MsvPromoteInnerInformation +_ZN8meta_gen11MsvPromoter17prepareUpdateModeEP22MsvPromoteInnerContextP19MsvStorageInterfacem +_ZN8meta_gen11MsvPromoter17retrievePhotoInfoEv +_ZN8meta_gen11MsvPromoter17setIntMsvMetadataENS0_23MsvPromoterSetValueInfoEP10KeyValue_t +_ZN8meta_gen11MsvPromoter18isDrmFileExtentionEv +_ZN8meta_gen11MsvPromoter18isSkippableContentEP22MsvPromoteInnerContextP19MsvStorageInterface +_ZN8meta_gen11MsvPromoter18setDateMsvMetadataENS0_23MsvPromoterSetValueInfoEP10KeyValue_t +_ZN8meta_gen11MsvPromoter18setTextMsvMetadataENS0_23MsvPromoterSetValueInfoEP10KeyValue_t +_ZN8meta_gen11MsvPromoter19retrieveLicenseInfoEv +_ZN8meta_gen11MsvPromoter20convDatetimeToStringEl +_ZN8meta_gen11MsvPromoter20retrieveDurationInfoEv +_ZN8meta_gen11MsvPromoter20setKeyValueTBLTTitleENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti +_ZN8meta_gen11MsvPromoter20setKeyValue_TBLV_CciENS0_23MsvPromoterSetValueInfoEP10KeyValue_t +_ZN8meta_gen11MsvPromoter21pushBackThumbnailInfoERN12video_parser18VpThumbnailInfo_t_Eb +_ZN8meta_gen11MsvPromoter21setKeyValue_TBLI_DataENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti +_ZN8meta_gen11MsvPromoter21setKeyValue_TBLI_PathENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti +_ZN8meta_gen11MsvPromoter21setKeyValue_TBLI_SizeENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti +_ZN8meta_gen11MsvPromoter22convISO639_2_TToStringEt +_ZN8meta_gen11MsvPromoter22determineContentStatusEv +_ZN8meta_gen11MsvPromoter22retrieveAudioCodecInfoEv +_ZN8meta_gen11MsvPromoter22retrievePromoterOptionEP26MsvPromoteInnerInformation +_ZN8meta_gen11MsvPromoter22retrieveVideoCodecInfoEv +_ZN8meta_gen11MsvPromoter22setKeyValue_TBLI_WidthENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti +_ZN8meta_gen11MsvPromoter23initializeVideoProfilerEPKc +_ZN8meta_gen11MsvPromoter23retrieveGenericFileInfoEPKc +_ZN8meta_gen11MsvPromoter23retrieveSpecialDateInfoEv +_ZN8meta_gen11MsvPromoter23setKeyValueTBLTLanguageENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti +_ZN8meta_gen11MsvPromoter23setKeyValue_TBLAVC_SizeENS0_23MsvPromoterSetValueInfoEP10KeyValue_t +_ZN8meta_gen11MsvPromoter23setKeyValue_TBLI_BaseIdENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti +_ZN8meta_gen11MsvPromoter23setKeyValue_TBLI_HeightENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti +_ZN8meta_gen11MsvPromoter23setKeyValue_TBLI_OffsetENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti +_ZN8meta_gen11MsvPromoter23setKeyValue_TBLV_BaseIdENS0_23MsvPromoterSetValueInfoEP10KeyValue_t +_ZN8meta_gen11MsvPromoter24setKeyValueTBLTContentIdENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti +_ZN8meta_gen11MsvPromoter24setKeyValue_TBLAVC_TitleENS0_23MsvPromoterSetValueInfoEP10KeyValue_t +_ZN8meta_gen11MsvPromoter24setKeyValue_TBLAVC_WidthENS0_23MsvPromoterSetValueInfoEP10KeyValue_t +_ZN8meta_gen11MsvPromoter24setKeyValue_TBLI_ProtectENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti +_ZN8meta_gen11MsvPromoter25allocKeyValueForIconTableEv +_ZN8meta_gen11MsvPromoter25determineDefaultTitleInfoEv +_ZN8meta_gen11MsvPromoter25setKeyValue_TBLAVC_HeightENS0_23MsvPromoterSetValueInfoEP10KeyValue_t +_ZN8meta_gen11MsvPromoter25setKeyValue_TBLI_DataTypeENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti +_ZN8meta_gen11MsvPromoter25setKeyValue_TBLV_DeviceIdENS0_23MsvPromoterSetValueInfoEP10KeyValue_t +_ZN8meta_gen11MsvPromoter25setKeyValue_TBLV_EditableENS0_23MsvPromoterSetValueInfoEP10KeyValue_t +_ZN8meta_gen11MsvPromoter25setKeyValue_TBLV_MarlinIdENS0_23MsvPromoterSetValueInfoEP10KeyValue_t +_ZN8meta_gen11MsvPromoter26retrieveMovieThumbnailInfoEPKc +_ZN8meta_gen11MsvPromoter26retrieveMultiLangTitleInfoEPKc +_ZN8meta_gen11MsvPromoter26setKeyValueTBLTLanguageExtENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti +_ZN8meta_gen11MsvPromoter26setKeyValue_TBLI_CodecTypeENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti +_ZN8meta_gen11MsvPromoter26setKeyValue_TBLV_AccountIdENS0_23MsvPromoterSetValueInfoEP10KeyValue_t +_ZN8meta_gen11MsvPromoter26setKeyValue_TBLV_SeasonNumENS0_23MsvPromoterSetValueInfoEP10KeyValue_t +_ZN8meta_gen11MsvPromoter27convMediaTypeAudioFromCodecEN9db_schema9CodecTypeE +_ZN8meta_gen11MsvPromoter27convMediaTypeImageFromCodecEN9db_schema9CodecTypeE +_ZN8meta_gen11MsvPromoter27convMediaTypeVideoFromCodecEN9db_schema9CodecTypeE +_ZN8meta_gen11MsvPromoter27retrieveParentalControlInfoEv +_ZN8meta_gen11MsvPromoter27setKeyValue_TBLAVC_DurationENS0_23MsvPromoterSetValueInfoEP10KeyValue_t +_ZN8meta_gen11MsvPromoter27setKeyValue_TBLAVC_IconPathENS0_23MsvPromoterSetValueInfoEP10KeyValue_t +_ZN8meta_gen11MsvPromoter27setKeyValue_TBLAVC_IconSizeENS0_23MsvPromoterSetValueInfoEP10KeyValue_t +_ZN8meta_gen11MsvPromoter27setKeyValue_TBLV_AudioCodecENS0_23MsvPromoterSetValueInfoEP10KeyValue_t +_ZN8meta_gen11MsvPromoter27setKeyValue_TBLV_EpisodeNumENS0_23MsvPromoterSetValueInfoEP10KeyValue_t +_ZN8meta_gen11MsvPromoter27setKeyValue_TBLV_VideoCodecENS0_23MsvPromoterSetValueInfoEP10KeyValue_t +_ZN8meta_gen11MsvPromoter28setKeyValue_TBLAVC_DrmStringENS0_23MsvPromoterSetValueInfoEP10KeyValue_t +_ZN8meta_gen11MsvPromoter28setKeyValue_TBLAVC_IconWidthENS0_23MsvPromoterSetValueInfoEP10KeyValue_t +_ZN8meta_gen11MsvPromoter28setKeyValue_TBLI_AspectRatioENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti +_ZN8meta_gen11MsvPromoter28setKeyValue_TBLI_LanguageExtENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti +_ZN8meta_gen11MsvPromoter28setKeyValue_TBLV_LicenseTypeENS0_23MsvPromoterSetValueInfoEP10KeyValue_t +_ZN8meta_gen11MsvPromoter29convVP_LANGToISO639_2_TStringEN12video_parser9VP_LANG_eE +_ZN8meta_gen11MsvPromoter29determineDefaultThumbnailInfoEv +_ZN8meta_gen11MsvPromoter29setKeyValue_TBLAVC_IconHeightENS0_23MsvPromoterSetValueInfoEP10KeyValue_t +_ZN8meta_gen11MsvPromoter29setKeyValue_TBLAVC_IconOffsetENS0_23MsvPromoterSetValueInfoEP10KeyValue_t +_ZN8meta_gen11MsvPromoter29setKeyValue_TBLI_LanguageTypeENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti +_ZN8meta_gen11MsvPromoter29setKeyValue_TBLV_AudioBitrateENS0_23MsvPromoterSetValueInfoEP10KeyValue_t +_ZN8meta_gen11MsvPromoter29setKeyValue_TBLV_VideoBitrateENS0_23MsvPromoterSetValueInfoEP10KeyValue_t +_ZN8meta_gen11MsvPromoter29setKeyValue_TBLV_VideoProfileENS0_23MsvPromoterSetValueInfoEP10KeyValue_t +_ZN8meta_gen11MsvPromoter30retrieveMultiLangThumbnailInfoEPKc +_ZN8meta_gen11MsvPromoter30setKeyValue_TBLAVC_CreatedTimeENS0_23MsvPromoterSetValueInfoEP10KeyValue_t +_ZN8meta_gen11MsvPromoter30setKeyValue_TBLAVC_IconProtectENS0_23MsvPromoterSetValueInfoEP10KeyValue_t +_ZN8meta_gen11MsvPromoter30setKeyValue_TBLV_AudioMimeTypeENS0_23MsvPromoterSetValueInfoEP10KeyValue_t +_ZN8meta_gen11MsvPromoter31setKeyValue_TBLAVC_IconDataTypeENS0_23MsvPromoterSetValueInfoEP10KeyValue_t +_ZN8meta_gen11MsvPromoter32setKeyValue_TBLAVC_IconCodecTypeENS0_23MsvPromoterSetValueInfoEP10KeyValue_t +_ZN8meta_gen11MsvPromoter32setKeyValue_TBLAVC_ParentalLevelENS0_23MsvPromoterSetValueInfoEP10KeyValue_t +_ZN8meta_gen11MsvPromoter33setKeyValue_TBLAVC_LastUpdateTimeENS0_23MsvPromoterSetValueInfoEP10KeyValue_t +_ZN8meta_gen11MsvPromoter33setKeyValue_TBLI_ContentTableTypeENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti +_ZN8meta_gen11MsvPromoter33setKeyValue_TBLV_AudioChannelTypeENS0_23MsvPromoterSetValueInfoEP10KeyValue_t +_ZN8meta_gen11MsvPromoter33setKeyValue_TBLV_BroadcastStationENS0_23MsvPromoterSetValueInfoEP10KeyValue_t +_ZN8meta_gen11MsvPromoter34setKeyValue_TBLV_VideoProfileLevelENS0_23MsvPromoterSetValueInfoEP10KeyValue_t +_ZN8meta_gen11MsvPromoter41readAndpushThumbnailInfoFromSideImageFileEPKc +_ZN8meta_gen11MsvPromoter7PromoteEP22MsvPromoteInnerContextP20MsvCancelInterface_tP19MsvStorageInterfaceP26MsvPromoteInnerInformation +_ZN8meta_gen11MsvPromoter7PromoteERKN23sceMetadataReaderWriter8MetadataERS2_P22MsvPromoteInnerContextP20MsvCancelInterface_tP19MsvStorageInterfaceP26MsvPromoteInnerInformation +_ZN8meta_gen11MsvPromoter8FinalizeEP22MsvPromoteInnerContext +_ZN8meta_gen11MsvPromoter8binToStrEPhjPSs +_ZN8meta_gen11MsvPromoter8makeDataEP30MsvFilePromoteInnerInformationP19MsvStorageInterfaceP20MsvCancelInterface_tP22MsvPromoteInnerContext +_ZN8meta_gen12JpegPromoter10InitializeEP19PromoteInnerContextP23PromoteInnerInformation +_ZN8meta_gen12JpegPromoter12SetAllValuesEv +_ZN8meta_gen12JpegPromoter13SetFieldValueEiPib +_ZN8meta_gen12JpegPromoter16ProcessImageDataEv +_ZN8meta_gen12JpegPromoter17IsValidResolutionEv +_ZN8meta_gen12JpegPromoter8FinalizeEP19PromoteInnerContext +_ZN8meta_gen12JpegPromoterC1EN9db_schema9CodecTypeE +_ZN8meta_gen12JpegPromoterC2EN9db_schema9CodecTypeE +_ZN8meta_gen12JpegPromoterD0Ev +_ZN8meta_gen12JpegPromoterD1Ev +_ZN8meta_gen12JpegPromoterD2Ev +_ZN8meta_gen13JpegRetriever10InitializeEP23PromoteInnerInformationN9db_schema9CodecTypeE +_ZN8meta_gen13JpegRetriever12ConvDmsToDegERNS0_10gps_lonlatEb +_ZN8meta_gen13JpegRetriever13GetColorSpaceEv +_ZN8meta_gen13JpegRetriever14ProcessCOMDataEv +_ZN8meta_gen13JpegRetriever14ProcessSOFDataEi +_ZN8meta_gen13JpegRetriever15ProcessApp2DataEv +_ZN8meta_gen13JpegRetriever15ProcessIPTCDataEv +_ZN8meta_gen13JpegRetriever15ProcessJpegDataEii +_ZN8meta_gen13JpegRetriever16GetPointerToTextEPKhjPPcPj +_ZN8meta_gen13JpegRetriever16ProcessApp14DataEv +_ZN8meta_gen13JpegRetriever16ProcessMakerNoteEv +_ZN8meta_gen13JpegRetriever16TRProcessIfdDataEv +_ZN8meta_gen13JpegRetriever17GetDefaultCommentEv +_ZN8meta_gen13JpegRetriever17GetDefaultDateUTCEv +_ZN8meta_gen13JpegRetriever18apexValue2apertureEd +_ZN8meta_gen13JpegRetriever19CheckDateTimeFormatEi +_ZN8meta_gen13JpegRetriever19JPEGPROM_MIN_OFFSETE +_ZN8meta_gen13JpegRetriever19JPEGPROM_MON_OFFSETE +_ZN8meta_gen13JpegRetriever19JPEGPROM_SEC_OFFSETE +_ZN8meta_gen13JpegRetriever20JPEGPROM_HOUR_OFFSETE +_ZN8meta_gen13JpegRetriever20JPEGPROM_MDAY_OFFSETE +_ZN8meta_gen13JpegRetriever20JPEGPROM_YEAR_OFFSETE +_ZN8meta_gen13JpegRetriever20ProcessThumbnailDataEv +_ZN8meta_gen13JpegRetriever21TRProcessTiffIfdEntryEi +_ZN8meta_gen13JpegRetriever23IsExistDateTimeOriginalEv +_ZN8meta_gen13JpegRetriever8FinalizeEv +_ZN8meta_gen13JpegRetrieverC2Ev +_ZN8meta_gen13JpegRetrieverD0Ev +_ZN8meta_gen13JpegRetrieverD1Ev +_ZN8meta_gen13JpegRetrieverD2Ev +_ZN8meta_gen13TiffRetriever10InitializeEP23PromoteInnerInformationiN9db_schema9CodecTypeE +_ZN8meta_gen13TiffRetriever11GetFirstIFDEv +_ZN8meta_gen13TiffRetriever12TiffTypeSizeE +_ZN8meta_gen13TiffRetriever14ProcessNextIFDENS_3ifdE +_ZN8meta_gen13TiffRetriever15ProcessTiffDataENS_3ifdEPNS_9tifferrorE +_ZN8meta_gen13TiffRetriever17ProcessTiffHeaderEv +_ZN8meta_gen13TiffRetriever20ProcessIfdOffsetDataEPhmPm +_ZN8meta_gen13TiffRetriever8FinalizeEv +_ZN8meta_gen13TiffRetrieverC2Ev +_ZN8meta_gen13TiffRetrieverD0Ev +_ZN8meta_gen13TiffRetrieverD1Ev +_ZN8meta_gen13TiffRetrieverD2Ev +_ZN8meta_gen14ImageRetriever10InitializeEP23PromoteInnerInformationiN9db_schema9CodecTypeE +_ZN8meta_gen14ImageRetriever10SetMetaValEiPc +_ZN8meta_gen14ImageRetriever10SetMetaValEiPcm +_ZN8meta_gen14ImageRetriever10SetMetaValEid +_ZN8meta_gen14ImageRetriever10SetMetaValEif +_ZN8meta_gen14ImageRetriever10SetMetaValEii +_ZN8meta_gen14ImageRetriever10SetMetaValEim +_ZN8meta_gen14ImageRetriever11SetDataOnDBEP19PromoteInnerContextP16StorageInterfaceP17CancelInterface_t +_ZN8meta_gen14ImageRetriever12SetDataOnDB2ERN23sceMetadataReaderWriter8MetadataE +_ZN8meta_gen14ImageRetriever12SetValueDataEPKcPNS_14ImageMetaValueEPiP10KeyValue_tb +_ZN8meta_gen14ImageRetriever13SetBaseValuesEP27FilePromoteInnerInformation +_ZN8meta_gen14ImageRetriever14SetTextSortKeyESsi +_ZN8meta_gen14ImageRetriever15CreateThumbnailEPKcPcRf +_ZN8meta_gen14ImageRetriever16ExtractThumbnailERN23sceMetadataReaderWriter9ThumbnailEP19PromoteInnerContextP17CancelInterface_tP16StorageInterfaceP23PromoteInnerInformation +_ZN8meta_gen14ImageRetriever18IsUseThumbnailFileEv +_ZN8meta_gen14ImageRetriever19FinalizeFsOperationEv +_ZN8meta_gen14ImageRetriever19IsImageModeRGBA8888E9ImageMode +_ZN8meta_gen14ImageRetriever21InitializeFsOperationEPKc +_ZN8meta_gen14ImageRetriever23CreateThumbnailFromFileEPcRf +_ZN8meta_gen14ImageRetriever7PromoteERKN23sceMetadataReaderWriter8MetadataERS2_P19PromoteInnerContextP17CancelInterface_tP16StorageInterfaceP23PromoteInnerInformation +_ZN8meta_gen14ImageRetriever8FinalizeEv +_ZN8meta_gen14ImageRetrieverC2Ev +_ZN8meta_gen14ImageRetrieverD1Ev +_ZN8meta_gen14ImageRetrieverD2Ev +_ZN8meta_gen15ImageController18ParseThumbnailFileENS0_19_ParseThumbnailInfoERNS0_20_ResultThumbnailInfoE +_ZN8meta_gen17CommonFsOperation13storeFileSizeEl +_ZN8meta_gen17CommonFsOperation13storeFileSizeEv +_ZN8meta_gen17CommonFsOperation8readFileEmPv +_ZN8meta_gen17CommonFsOperation8seekFileElb +_ZN8meta_gen17CommonFsOperationC1EPKc +_ZN8meta_gen17CommonFsOperationC2EPKc +_ZN8meta_gen17CommonFsOperationD1Ev +_ZN8meta_gen17CommonFsOperationD2Ev +_ZN9Inspector13AgentRegistry13discardValuesEv +_ZN9Inspector13AgentRegistry27didCreateFrontendAndBackendEPNS_14FrontendRouterEPNS_17BackendDispatcherE +_ZN9Inspector13AgentRegistry29willDestroyFrontendAndBackendENS_16DisconnectReasonE +_ZN9Inspector13AgentRegistry6appendESt10unique_ptrINS_18InspectorAgentBaseESt14default_deleteIS2_EE +_ZN9Inspector13AgentRegistryC1Ev +_ZN9Inspector13AgentRegistryC2Ev +_ZN9Inspector13AgentRegistryD1Ev +_ZN9Inspector13AgentRegistryD2Ev +_ZN9Inspector14ConsoleMessage13addToFrontendERNS_25ConsoleFrontendDispatcherERNS_21InjectedScriptManagerEb +_ZN9Inspector14ConsoleMessage14incrementCountEv +_ZN9Inspector14ConsoleMessage20autogenerateMetadataEPN3JSC14JSGlobalObjectE +_ZN9Inspector14ConsoleMessage20autogenerateMetadataEPN3JSC9ExecStateE +_ZN9Inspector14ConsoleMessage26updateRepeatCountInConsoleERNS_25ConsoleFrontendDispatcherE +_ZN9Inspector14ConsoleMessage5clearEv +_ZN9Inspector14ConsoleMessageC1EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelEON3WTF6VectorINS5_12JSONLogValueELm0ENS5_15CrashOnOverflowELm16EEEPNS1_9ExecStateEm +_ZN9Inspector14ConsoleMessageC1EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelEON3WTF6VectorINS5_12JSONLogValueELm0ENS5_15CrashOnOverflowELm16ENS5_10FastMallocEEEPNS1_14JSGlobalObjectEm +_ZN9Inspector14ConsoleMessageC1EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelERKN3WTF6StringEONS5_3RefINS_15ScriptArgumentsENS5_13DumbPtrTraitsISA_EEEEONS9_INS_15ScriptCallStackENSB_ISF_EEEEm +_ZN9Inspector14ConsoleMessageC1EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelERKN3WTF6StringEONS5_3RefINS_15ScriptArgumentsENS5_13DumbPtrTraitsISA_EEEEPNS1_14JSGlobalObjectEm +_ZN9Inspector14ConsoleMessageC1EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelERKN3WTF6StringEONS5_3RefINS_15ScriptArgumentsENS5_13DumbPtrTraitsISA_EEEEPNS1_9ExecStateEm +_ZN9Inspector14ConsoleMessageC1EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelERKN3WTF6StringEONS5_3RefINS_15ScriptCallStackENS5_13DumbPtrTraitsISA_EEEEm +_ZN9Inspector14ConsoleMessageC1EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelERKN3WTF6StringES8_jjPNS1_14JSGlobalObjectEm +_ZN9Inspector14ConsoleMessageC1EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelERKN3WTF6StringES8_jjPNS1_9ExecStateEm +_ZN9Inspector14ConsoleMessageC1EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelERKN3WTF6StringEm +_ZN9Inspector14ConsoleMessageC2EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelEON3WTF6VectorINS5_12JSONLogValueELm0ENS5_15CrashOnOverflowELm16EEEPNS1_9ExecStateEm +_ZN9Inspector14ConsoleMessageC2EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelEON3WTF6VectorINS5_12JSONLogValueELm0ENS5_15CrashOnOverflowELm16ENS5_10FastMallocEEEPNS1_14JSGlobalObjectEm +_ZN9Inspector14ConsoleMessageC2EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelERKN3WTF6StringEONS5_3RefINS_15ScriptArgumentsENS5_13DumbPtrTraitsISA_EEEEONS9_INS_15ScriptCallStackENSB_ISF_EEEEm +_ZN9Inspector14ConsoleMessageC2EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelERKN3WTF6StringEONS5_3RefINS_15ScriptArgumentsENS5_13DumbPtrTraitsISA_EEEEPNS1_14JSGlobalObjectEm +_ZN9Inspector14ConsoleMessageC2EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelERKN3WTF6StringEONS5_3RefINS_15ScriptArgumentsENS5_13DumbPtrTraitsISA_EEEEPNS1_9ExecStateEm +_ZN9Inspector14ConsoleMessageC2EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelERKN3WTF6StringEONS5_3RefINS_15ScriptCallStackENS5_13DumbPtrTraitsISA_EEEEm +_ZN9Inspector14ConsoleMessageC2EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelERKN3WTF6StringES8_jjPNS1_14JSGlobalObjectEm +_ZN9Inspector14ConsoleMessageC2EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelERKN3WTF6StringES8_jjPNS1_9ExecStateEm +_ZN9Inspector14ConsoleMessageC2EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelERKN3WTF6StringEm +_ZN9Inspector14ConsoleMessageD1Ev +_ZN9Inspector14ConsoleMessageD2Ev +_ZN9Inspector14ConsoleMessagedaEPv +_ZN9Inspector14ConsoleMessagedlEPv +_ZN9Inspector14ConsoleMessagenaEm +_ZN9Inspector14ConsoleMessagenaEmPv +_ZN9Inspector14ConsoleMessagenwEm +_ZN9Inspector14ConsoleMessagenwEm10NotNullTagPv +_ZN9Inspector14ConsoleMessagenwEmPv +_ZN9Inspector14FrontendRouter15connectFrontendEPNS_15FrontendChannelE +_ZN9Inspector14FrontendRouter15connectFrontendERNS_15FrontendChannelE +_ZN9Inspector14FrontendRouter18disconnectFrontendEPNS_15FrontendChannelE +_ZN9Inspector14FrontendRouter18disconnectFrontendERNS_15FrontendChannelE +_ZN9Inspector14FrontendRouter22disconnectAllFrontendsEv +_ZN9Inspector14FrontendRouter6createEv +_ZN9Inspector14FrontendRouterC1Ev +_ZN9Inspector14FrontendRouterC2Ev +_ZN9Inspector14FrontendRouterD1Ev +_ZN9Inspector14FrontendRouterD2Ev +_ZN9Inspector14InjectedScript10getPreviewERN3WTF6StringERKS2_RNS1_6RefPtrINS_8Protocol7Runtime13ObjectPreviewENS1_13DumbPtrTraitsIS9_EEEE +_ZN9Inspector14InjectedScript10saveResultERN3WTF6StringERKS2_RNS1_8OptionalIiEE +_ZN9Inspector14InjectedScript10saveResultERN3WTF6StringERKS2_RSt8optionalIiE +_ZN9Inspector14InjectedScript12awaitPromiseERKN3WTF6StringEbbbONS1_8FunctionIFvRS2_ONS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISA_EEEERNS1_8OptionalIbEERNSF_IiEEEEE +_ZN9Inspector14InjectedScript13getPropertiesERN3WTF6StringERKS2_bbRNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime18PropertyDescriptorEEENS1_13DumbPtrTraitsISC_EEEE +_ZN9Inspector14InjectedScript13getPropertiesERN3WTF6StringERKS2_biibRNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime18PropertyDescriptorEEENS1_13DumbPtrTraitsISC_EEEE +_ZN9Inspector14InjectedScript13inspectObjectEN3JSC7JSValueE +_ZN9Inspector14InjectedScript13releaseObjectERKN3WTF6StringE +_ZN9Inspector14InjectedScript13setEventValueEN3JSC7JSValueE +_ZN9Inspector14InjectedScript14callFunctionOnERN3WTF6StringERKS2_S5_S5_bbRNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsIS9_EEEERNS1_8OptionalIbEE +_ZN9Inspector14InjectedScript14callFunctionOnERN3WTF6StringERKS2_S5_S5_bbRNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsIS9_EEEERb +_ZN9Inspector14InjectedScript15arrayFromVectorEON3WTF6VectorIN3JSC7JSValueELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN9Inspector14InjectedScript15clearEventValueEv +_ZN9Inspector14InjectedScript15functionDetailsERN3WTF6StringEN3JSC7JSValueERNS1_6RefPtrINS_8Protocol8Debugger15FunctionDetailsENS1_13DumbPtrTraitsIS9_EEEE +_ZN9Inspector14InjectedScript17setExceptionValueEN3JSC7JSValueE +_ZN9Inspector14InjectedScript18getFunctionDetailsERN3WTF6StringERKS2_RNS1_6RefPtrINS_8Protocol8Debugger15FunctionDetailsENS1_13DumbPtrTraitsIS9_EEEE +_ZN9Inspector14InjectedScript18releaseObjectGroupERKN3WTF6StringE +_ZN9Inspector14InjectedScript19clearExceptionValueEv +_ZN9Inspector14InjectedScript19evaluateOnCallFrameERN3WTF6StringEN3JSC7JSValueERKS2_S7_S7_bbbbRNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISB_EEEERNS1_8OptionalIbEERNSG_IiEE +_ZN9Inspector14InjectedScript19evaluateOnCallFrameERN3WTF6StringEN3JSC7JSValueERKS2_S7_S7_bbbbRNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISB_EEEERbRSt8optionalIiE +_ZN9Inspector14InjectedScript20getCollectionEntriesERN3WTF6StringERKS2_S5_iiRNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime15CollectionEntryEEENS1_13DumbPtrTraitsISC_EEEE +_ZN9Inspector14InjectedScript21getInternalPropertiesERN3WTF6StringERKS2_bRNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime26InternalPropertyDescriptorEEENS1_13DumbPtrTraitsISC_EEEE +_ZN9Inspector14InjectedScript24getDisplayablePropertiesERN3WTF6StringERKS2_bRNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime18PropertyDescriptorEEENS1_13DumbPtrTraitsISC_EEEE +_ZN9Inspector14InjectedScript24getDisplayablePropertiesERN3WTF6StringERKS2_iibRNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime18PropertyDescriptorEEENS1_13DumbPtrTraitsISC_EEEE +_ZN9Inspector14InjectedScript7executeERN3WTF6StringERKS2_ONS0_14ExecuteOptionsERNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISB_EEEERNS1_8OptionalIbEERNSG_IiEE +_ZN9Inspector14InjectedScript8evaluateERN3WTF6StringERKS2_S5_bbbbRNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsIS9_EEEERNS1_8OptionalIbEERNSE_IiEE +_ZN9Inspector14InjectedScript8evaluateERN3WTF6StringERKS2_S5_bbbbRNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsIS9_EEEERbRSt8optionalIiE +_ZN9Inspector14InjectedScriptC1EN10Deprecated12ScriptObjectEPNS_20InspectorEnvironmentE +_ZN9Inspector14InjectedScriptC1ERKS0_ +_ZN9Inspector14InjectedScriptC1Ev +_ZN9Inspector14InjectedScriptC2EN10Deprecated12ScriptObjectEPNS_20InspectorEnvironmentE +_ZN9Inspector14InjectedScriptC2ERKS0_ +_ZN9Inspector14InjectedScriptC2Ev +_ZN9Inspector14InjectedScriptD0Ev +_ZN9Inspector14InjectedScriptD1Ev +_ZN9Inspector14InjectedScriptD2Ev +_ZN9Inspector14InjectedScriptaSERKS0_ +_ZN9Inspector14InspectorAgent11initializedERN3WTF6StringE +_ZN9Inspector14InspectorAgent25evaluateForTestInFrontendERKN3WTF6StringE +_ZN9Inspector14InspectorAgent27didCreateFrontendAndBackendEPNS_14FrontendRouterEPNS_17BackendDispatcherE +_ZN9Inspector14InspectorAgent29willDestroyFrontendAndBackendENS_16DisconnectReasonE +_ZN9Inspector14InspectorAgent6enableERN3WTF6StringE +_ZN9Inspector14InspectorAgent7disableERN3WTF6StringE +_ZN9Inspector14InspectorAgent7inspectEON3WTF6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsIS5_EEEEONS2_INS1_8JSONImpl6ObjectENS6_ISB_EEEE +_ZN9Inspector14InspectorAgentC1ERNS_12AgentContextE +_ZN9Inspector14InspectorAgentC2ERNS_12AgentContextE +_ZN9Inspector14InspectorAgentD0Ev +_ZN9Inspector14InspectorAgentD1Ev +_ZN9Inspector14InspectorAgentD2Ev +_ZN9Inspector14InspectorAgentdaEPv +_ZN9Inspector14InspectorAgentdlEPv +_ZN9Inspector14InspectorAgentnaEm +_ZN9Inspector14InspectorAgentnaEmPv +_ZN9Inspector14InspectorAgentnwEm +_ZN9Inspector14InspectorAgentnwEm10NotNullTagPv +_ZN9Inspector14InspectorAgentnwEmPv +_ZN9Inspector15AsyncStackTrace18didCancelAsyncCallEv +_ZN9Inspector15AsyncStackTrace20didDispatchAsyncCallEv +_ZN9Inspector15AsyncStackTrace21willDispatchAsyncCallEm +_ZN9Inspector15AsyncStackTrace6createEON3WTF3RefINS_15ScriptCallStackENS1_13DumbPtrTraitsIS3_EEEEbNS1_6RefPtrIS0_NS4_IS0_EEEE +_ZN9Inspector15AsyncStackTrace6removeEv +_ZN9Inspector15AsyncStackTrace8truncateEm +_ZN9Inspector15AsyncStackTraceC1EON3WTF3RefINS_15ScriptCallStackENS1_13DumbPtrTraitsIS3_EEEEbNS1_6RefPtrIS0_NS4_IS0_EEEE +_ZN9Inspector15AsyncStackTraceC2EON3WTF3RefINS_15ScriptCallStackENS1_13DumbPtrTraitsIS3_EEEEbNS1_6RefPtrIS0_NS4_IS0_EEEE +_ZN9Inspector15AsyncStackTraceD1Ev +_ZN9Inspector15AsyncStackTraceD2Ev +_ZN9Inspector15InspectorTarget17setResumeCallbackEON3WTF8FunctionIFvvEEE +_ZN9Inspector15InspectorTarget5pauseEv +_ZN9Inspector15InspectorTarget6resumeEv +_ZN9Inspector15InspectorTargetC2Ev +_ZN9Inspector15InspectorTargetD0Ev +_ZN9Inspector15InspectorTargetD1Ev +_ZN9Inspector15InspectorTargetD2Ev +_ZN9Inspector15RemoteInspector11setupFailedEj +_ZN9Inspector15RemoteInspector12startEnabledE +_ZN9Inspector15RemoteInspector12stopInternalENS0_10StopSourceE +_ZN9Inspector15RemoteInspector12updateTargetEPNS_24RemoteControllableTargetE +_ZN9Inspector15RemoteInspector13startDisabledEv +_ZN9Inspector15RemoteInspector14registerTargetEPNS_24RemoteControllableTargetE +_ZN9Inspector15RemoteInspector14setupCompletedEj +_ZN9Inspector15RemoteInspector15pushListingsNowEv +_ZN9Inspector15RemoteInspector15updateTargetMapEPNS_24RemoteControllableTargetE +_ZN9Inspector15RemoteInspector16pushListingsSoonEv +_ZN9Inspector15RemoteInspector16unregisterTargetEPNS_24RemoteControllableTargetE +_ZN9Inspector15RemoteInspector19receivedDataMessageEjPKc +_ZN9Inspector15RemoteInspector19sendMessageToRemoteEjRKN3WTF6StringE +_ZN9Inspector15RemoteInspector19sendMessageToTargetEjPKc +_ZN9Inspector15RemoteInspector19updateTargetListingERKNS_24RemoteControllableTargetE +_ZN9Inspector15RemoteInspector19updateTargetListingEj +_ZN9Inspector15RemoteInspector20receivedCloseMessageEj +_ZN9Inspector15RemoteInspector20receivedSetupMessageEj +_ZN9Inspector15RemoteInspector24updateClientCapabilitiesEv +_ZN9Inspector15RemoteInspector27clientCapabilitiesDidChangeEv +_ZN9Inspector15RemoteInspector27updateHasActiveDebugSessionEv +_ZN9Inspector15RemoteInspector28receivedGetTargetListMessageEv +_ZN9Inspector15RemoteInspector29nextAvailableTargetIdentifierEv +_ZN9Inspector15RemoteInspector29waitingForAutomaticInspectionEj +_ZN9Inspector15RemoteInspector34updateAutomaticInspectionCandidateEPNS_22RemoteInspectionTargetE +_ZN9Inspector15RemoteInspector39sendAutomaticInspectionCandidateMessageEv +_ZN9Inspector15RemoteInspector4stopEv +_ZN9Inspector15RemoteInspector5setupEj +_ZN9Inspector15RemoteInspector5startEv +_ZN9Inspector15RemoteInspector6ClientC2ERKS1_ +_ZN9Inspector15RemoteInspector6ClientC2Ev +_ZN9Inspector15RemoteInspector6ClientD0Ev +_ZN9Inspector15RemoteInspector6ClientD1Ev +_ZN9Inspector15RemoteInspector6ClientD2Ev +_ZN9Inspector15RemoteInspector7connectEj +_ZN9Inspector15RemoteInspector9setClientEPNS0_6ClientE +_ZN9Inspector15RemoteInspector9singletonEv +_ZN9Inspector15RemoteInspectorC1Ev +_ZN9Inspector15RemoteInspectorC2Ev +_ZN9Inspector15RemoteInspectorD0Ev +_ZN9Inspector15RemoteInspectorD1Ev +_ZN9Inspector15RemoteInspectorD2Ev +_ZN9Inspector15ScriptArguments24getFirstArgumentAsStringERN3WTF6StringE +_ZN9Inspector15ScriptArguments6createEPN3JSC14JSGlobalObjectEON3WTF6VectorINS1_6StrongINS1_7UnknownELNS1_30ShouldStrongDestructorGrabLockE0EEELm0ENS4_15CrashOnOverflowELm16ENS4_10FastMallocEEE +_ZN9Inspector15ScriptArguments6createERN3JSC9ExecStateEON3WTF6VectorINS1_6StrongINS1_7UnknownEEELm0ENS4_15CrashOnOverflowELm16EEE +_ZN9Inspector15ScriptArgumentsC1EPN3JSC14JSGlobalObjectEON3WTF6VectorINS1_6StrongINS1_7UnknownELNS1_30ShouldStrongDestructorGrabLockE0EEELm0ENS4_15CrashOnOverflowELm16ENS4_10FastMallocEEE +_ZN9Inspector15ScriptArgumentsC1ERN3JSC9ExecStateEON3WTF6VectorINS1_6StrongINS1_7UnknownEEELm0ENS4_15CrashOnOverflowELm16EEE +_ZN9Inspector15ScriptArgumentsC2EPN3JSC14JSGlobalObjectEON3WTF6VectorINS1_6StrongINS1_7UnknownELNS1_30ShouldStrongDestructorGrabLockE0EEELm0ENS4_15CrashOnOverflowELm16ENS4_10FastMallocEEE +_ZN9Inspector15ScriptArgumentsC2ERN3JSC9ExecStateEON3WTF6VectorINS1_6StrongINS1_7UnknownEEELm0ENS4_15CrashOnOverflowELm16EEE +_ZN9Inspector15ScriptArgumentsD1Ev +_ZN9Inspector15ScriptArgumentsD2Ev +_ZN9Inspector15ScriptCallFrameC1ERKN3WTF6StringES4_mjj +_ZN9Inspector15ScriptCallFrameC1ERKS0_ +_ZN9Inspector15ScriptCallFrameC2ERKN3WTF6StringES4_mjj +_ZN9Inspector15ScriptCallFrameC2ERKS0_ +_ZN9Inspector15ScriptCallFrameD1Ev +_ZN9Inspector15ScriptCallFrameD2Ev +_ZN9Inspector15ScriptCallFrameaSERKS0_ +_ZN9Inspector15ScriptCallStack6appendERKNS_15ScriptCallFrameE +_ZN9Inspector15ScriptCallStack6createERN3WTF6VectorINS_15ScriptCallFrameELm0ENS1_15CrashOnOverflowELm16EEE +_ZN9Inspector15ScriptCallStack6createERN3WTF6VectorINS_15ScriptCallFrameELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN9Inspector15ScriptCallStack6createEv +_ZN9Inspector15ScriptCallStackC1ERN3WTF6VectorINS_15ScriptCallFrameELm0ENS1_15CrashOnOverflowELm16EEE +_ZN9Inspector15ScriptCallStackC1ERN3WTF6VectorINS_15ScriptCallFrameELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN9Inspector15ScriptCallStackC1Ev +_ZN9Inspector15ScriptCallStackC2ERN3WTF6VectorINS_15ScriptCallFrameELm0ENS1_15CrashOnOverflowELm16EEE +_ZN9Inspector15ScriptCallStackC2ERN3WTF6VectorINS_15ScriptCallFrameELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN9Inspector15ScriptCallStackC2Ev +_ZN9Inspector15ScriptCallStackD1Ev +_ZN9Inspector15ScriptCallStackD2Ev +_ZN9Inspector16toInspectorValueEPN3JSC14JSGlobalObjectENS0_7JSValueE +_ZN9Inspector16toInspectorValueERN3JSC9ExecStateENS0_7JSValueE +_ZN9Inspector17BackendDispatcher10getBooleanEPN3WTF8JSONImpl6ObjectERKNS1_6StringEPb +_ZN9Inspector17BackendDispatcher10getIntegerEPN3WTF8JSONImpl6ObjectERKNS1_6StringEPb +_ZN9Inspector17BackendDispatcher12CallbackBase11sendFailureERKN3WTF6StringE +_ZN9Inspector17BackendDispatcher12CallbackBase11sendSuccessEON3WTF6RefPtrINS2_8JSONImpl6ObjectENS2_13DumbPtrTraitsIS5_EEEE +_ZN9Inspector17BackendDispatcher12CallbackBase7disableEv +_ZN9Inspector17BackendDispatcher12CallbackBaseC1EON3WTF3RefIS0_NS2_13DumbPtrTraitsIS0_EEEEl +_ZN9Inspector17BackendDispatcher12CallbackBaseC2EON3WTF3RefIS0_NS2_13DumbPtrTraitsIS0_EEEEl +_ZN9Inspector17BackendDispatcher12CallbackBaseD1Ev +_ZN9Inspector17BackendDispatcher12CallbackBaseD2Ev +_ZN9Inspector17BackendDispatcher12sendResponseElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector17BackendDispatcher12sendResponseElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEEb +_ZN9Inspector17BackendDispatcher17sendPendingErrorsEv +_ZN9Inspector17BackendDispatcher19reportProtocolErrorEN3WTF8OptionalIlEENS0_15CommonErrorCodeERKNS1_6StringE +_ZN9Inspector17BackendDispatcher19reportProtocolErrorENS0_15CommonErrorCodeERKN3WTF6StringE +_ZN9Inspector17BackendDispatcher19reportProtocolErrorESt8optionalIlENS0_15CommonErrorCodeERKN3WTF6StringE +_ZN9Inspector17BackendDispatcher27registerDispatcherForDomainERKN3WTF6StringEPNS_29SupplementalBackendDispatcherE +_ZN9Inspector17BackendDispatcher6createEON3WTF3RefINS_14FrontendRouterENS1_13DumbPtrTraitsIS3_EEEE +_ZN9Inspector17BackendDispatcher8dispatchERKN3WTF6StringE +_ZN9Inspector17BackendDispatcher8getArrayEPN3WTF8JSONImpl6ObjectERKNS1_6StringEPb +_ZN9Inspector17BackendDispatcher8getValueEPN3WTF8JSONImpl6ObjectERKNS1_6StringEPb +_ZN9Inspector17BackendDispatcher9getDoubleEPN3WTF8JSONImpl6ObjectERKNS1_6StringEPb +_ZN9Inspector17BackendDispatcher9getObjectEPN3WTF8JSONImpl6ObjectERKNS1_6StringEPb +_ZN9Inspector17BackendDispatcher9getStringEPN3WTF8JSONImpl6ObjectERKNS1_6StringEPb +_ZN9Inspector17BackendDispatcherC1EON3WTF3RefINS_14FrontendRouterENS1_13DumbPtrTraitsIS3_EEEE +_ZN9Inspector17BackendDispatcherC2EON3WTF3RefINS_14FrontendRouterENS1_13DumbPtrTraitsIS3_EEEE +_ZN9Inspector17BackendDispatcherD1Ev +_ZN9Inspector17BackendDispatcherD2Ev +_ZN9Inspector17ScriptDebugServer11addListenerEPNS_19ScriptDebugListenerE +_ZN9Inspector17ScriptDebugServer11handlePauseEPN3JSC14JSGlobalObjectENS1_8Debugger14ReasonForPauseE +_ZN9Inspector17ScriptDebugServer12sourceParsedEPN3JSC14JSGlobalObjectEPNS1_14SourceProviderEiRKN3WTF6StringE +_ZN9Inspector17ScriptDebugServer12sourceParsedEPN3JSC9ExecStateEPNS1_14SourceProviderEiRKN3WTF6StringE +_ZN9Inspector17ScriptDebugServer14removeListenerEPNS_19ScriptDebugListenerEb +_ZN9Inspector17ScriptDebugServer15didRunMicrotaskEv +_ZN9Inspector17ScriptDebugServer16dispatchDidPauseEPNS_19ScriptDebugListenerE +_ZN9Inspector17ScriptDebugServer16willRunMicrotaskEv +_ZN9Inspector17ScriptDebugServer19dispatchDidContinueEPNS_19ScriptDebugListenerE +_ZN9Inspector17ScriptDebugServer19handleBreakpointHitEPN3JSC14JSGlobalObjectERKNS1_10BreakpointE +_ZN9Inspector17ScriptDebugServer20setBreakpointActionsEmRKNS_16ScriptBreakpointE +_ZN9Inspector17ScriptDebugServer22clearBreakpointActionsEv +_ZN9Inspector17ScriptDebugServer22dispatchDidParseSourceERKN3WTF7HashSetIPNS_19ScriptDebugListenerENS1_7PtrHashIS4_EENS1_10HashTraitsIS4_EEEEPN3JSC14SourceProviderEb +_ZN9Inspector17ScriptDebugServer22exceptionOrCaughtValueEPN3JSC14JSGlobalObjectE +_ZN9Inspector17ScriptDebugServer22exceptionOrCaughtValueEPN3JSC9ExecStateE +_ZN9Inspector17ScriptDebugServer23getActionsForBreakpointEm +_ZN9Inspector17ScriptDebugServer23removeBreakpointActionsEm +_ZN9Inspector17ScriptDebugServer24evaluateBreakpointActionERKNS_22ScriptBreakpointActionE +_ZN9Inspector17ScriptDebugServer27dispatchBreakpointActionLogEPN3JSC9ExecStateERKN3WTF6StringE +_ZN9Inspector17ScriptDebugServer27dispatchFailedToParseSourceERKN3WTF7HashSetIPNS_19ScriptDebugListenerENS1_7PtrHashIS4_EENS1_10HashTraitsIS4_EEEEPN3JSC14SourceProviderEiRKNS1_6StringE +_ZN9Inspector17ScriptDebugServer27dispatchFunctionToListenersEMS0_FvPNS_19ScriptDebugListenerEE +_ZN9Inspector17ScriptDebugServer27dispatchFunctionToListenersEN3WTF8FunctionIFvRNS_19ScriptDebugListenerEEEE +_ZN9Inspector17ScriptDebugServer27dispatchFunctionToListenersERKN3WTF7HashSetIPNS_19ScriptDebugListenerENS1_7PtrHashIS4_EENS1_10HashTraitsIS4_EEEEMS0_FvS4_E +_ZN9Inspector17ScriptDebugServer29dispatchBreakpointActionProbeEPN3JSC9ExecStateERKNS_22ScriptBreakpointActionENS1_7JSValueE +_ZN9Inspector17ScriptDebugServer29dispatchBreakpointActionSoundEPN3JSC9ExecStateEi +_ZN9Inspector17ScriptDebugServer34notifyDoneProcessingDebuggerEventsEv +_ZN9Inspector17ScriptDebugServerC2ERN3JSC2VME +_ZN9Inspector17ScriptDebugServerD0Ev +_ZN9Inspector17ScriptDebugServerD1Ev +_ZN9Inspector17ScriptDebugServerD2Ev +_ZN9Inspector17ScriptDebugServerdaEPv +_ZN9Inspector17ScriptDebugServerdlEPv +_ZN9Inspector17ScriptDebugServernaEm +_ZN9Inspector17ScriptDebugServernaEmPv +_ZN9Inspector17ScriptDebugServernwEm +_ZN9Inspector17ScriptDebugServernwEm10NotNullTagPv +_ZN9Inspector17ScriptDebugServernwEmPv +_ZN9Inspector18IdentifiersFactory16createIdentifierEv +_ZN9Inspector18IdentifiersFactory9requestIdEm +_ZN9Inspector18InjectedScriptBase12makeEvalCallERN3WTF6StringERN10Deprecated18ScriptFunctionCallERNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISA_EEEERNS1_8OptionalIbEERNSF_IiEE +_ZN9Inspector18InjectedScriptBase12makeEvalCallERN3WTF6StringERN10Deprecated18ScriptFunctionCallERNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISA_EEEERbRSt8optionalIiE +_ZN9Inspector18InjectedScriptBase13makeAsyncCallERN10Deprecated18ScriptFunctionCallEON3WTF8FunctionIFvRNS4_6StringEONS4_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS4_13DumbPtrTraitsISB_EEEERNS4_8OptionalIbEERNSG_IiEEEEE +_ZN9Inspector18InjectedScriptBase15checkCallResultERN3WTF6StringENS1_6RefPtrINS1_8JSONImpl5ValueENS1_13DumbPtrTraitsIS6_EEEERNS4_INS_8Protocol7Runtime12RemoteObjectENS7_ISC_EEEERNS1_8OptionalIbEERNSG_IiEE +_ZN9Inspector18InjectedScriptBase20checkAsyncCallResultEN3WTF6RefPtrINS1_8JSONImpl5ValueENS1_13DumbPtrTraitsIS4_EEEERKNS1_8FunctionIFvRNS1_6StringEONS2_INS_8Protocol7Runtime12RemoteObjectENS5_ISD_EEEERNS1_8OptionalIbEERNSH_IiEEEEE +_ZN9Inspector18InjectedScriptBase8makeCallERN10Deprecated18ScriptFunctionCallE +_ZN9Inspector18InjectedScriptBaseC1ERKN3WTF6StringE +_ZN9Inspector18InjectedScriptBaseC1ERKN3WTF6StringEN10Deprecated12ScriptObjectEPNS_20InspectorEnvironmentE +_ZN9Inspector18InjectedScriptBaseC1ERKS0_ +_ZN9Inspector18InjectedScriptBaseC2ERKN3WTF6StringE +_ZN9Inspector18InjectedScriptBaseC2ERKN3WTF6StringEN10Deprecated12ScriptObjectEPNS_20InspectorEnvironmentE +_ZN9Inspector18InjectedScriptBaseC2ERKS0_ +_ZN9Inspector18InjectedScriptBaseD0Ev +_ZN9Inspector18InjectedScriptBaseD1Ev +_ZN9Inspector18InjectedScriptBaseD2Ev +_ZN9Inspector18InjectedScriptBaseaSERKS0_ +_ZN9Inspector18InjectedScriptHost16clearAllWrappersEv +_ZN9Inspector18InjectedScriptHost19isHTMLAllCollectionERN3JSC2VMENS1_7JSValueE +_ZN9Inspector18InjectedScriptHost21getInternalPropertiesERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE +_ZN9Inspector18InjectedScriptHost21getInternalPropertiesERN3JSC2VMEPNS1_9ExecStateENS1_7JSValueE +_ZN9Inspector18InjectedScriptHost6createEv +_ZN9Inspector18InjectedScriptHost7subtypeEPN3JSC14JSGlobalObjectENS1_7JSValueE +_ZN9Inspector18InjectedScriptHost7subtypeEPN3JSC9ExecStateENS1_7JSValueE +_ZN9Inspector18InjectedScriptHost7wrapperEPN3JSC14JSGlobalObjectE +_ZN9Inspector18InjectedScriptHost7wrapperEPN3JSC9ExecStateEPNS1_14JSGlobalObjectE +_ZN9Inspector18InjectedScriptHostC1Ev +_ZN9Inspector18InjectedScriptHostC2Ev +_ZN9Inspector18InjectedScriptHostD0Ev +_ZN9Inspector18InjectedScriptHostD1Ev +_ZN9Inspector18InjectedScriptHostD2Ev +_ZN9Inspector18InspectorHeapAgent10getPreviewERN3WTF6StringEiRNS1_8OptionalIS2_EERNS1_6RefPtrINS_8Protocol8Debugger15FunctionDetailsENS1_13DumbPtrTraitsISA_EEEERNS7_INS8_7Runtime13ObjectPreviewENSB_ISG_EEEE +_ZN9Inspector18InspectorHeapAgent10getPreviewERN3WTF6StringEiRSt8optionalIS2_ERNS1_6RefPtrINS_8Protocol8Debugger15FunctionDetailsENS1_13DumbPtrTraitsISA_EEEERNS7_INS8_7Runtime13ObjectPreviewENSB_ISG_EEEE +_ZN9Inspector18InspectorHeapAgent12stopTrackingERN3WTF6StringE +_ZN9Inspector18InspectorHeapAgent13startTrackingERN3WTF6StringE +_ZN9Inspector18InspectorHeapAgent15getRemoteObjectERN3WTF6StringEiPKS2_RNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsIS9_EEEE +_ZN9Inspector18InspectorHeapAgent17didGarbageCollectEN3JSC15CollectionScopeE +_ZN9Inspector18InspectorHeapAgent18clearHeapSnapshotsEv +_ZN9Inspector18InspectorHeapAgent18willGarbageCollectEv +_ZN9Inspector18InspectorHeapAgent27didCreateFrontendAndBackendEPNS_14FrontendRouterEPNS_17BackendDispatcherE +_ZN9Inspector18InspectorHeapAgent27nodeForHeapObjectIdentifierERN3WTF6StringEj +_ZN9Inspector18InspectorHeapAgent29dispatchGarbageCollectedEventENS_8Protocol4Heap17GarbageCollection4TypeEN3WTF7SecondsES6_ +_ZN9Inspector18InspectorHeapAgent29willDestroyFrontendAndBackendENS_16DisconnectReasonE +_ZN9Inspector18InspectorHeapAgent2gcERN3WTF6StringE +_ZN9Inspector18InspectorHeapAgent6enableERN3WTF6StringE +_ZN9Inspector18InspectorHeapAgent7disableERN3WTF6StringE +_ZN9Inspector18InspectorHeapAgent8snapshotERN3WTF6StringEPdPS2_ +_ZN9Inspector18InspectorHeapAgentC1ERNS_12AgentContextE +_ZN9Inspector18InspectorHeapAgentC2ERNS_12AgentContextE +_ZN9Inspector18InspectorHeapAgentD0Ev +_ZN9Inspector18InspectorHeapAgentD1Ev +_ZN9Inspector18InspectorHeapAgentD2Ev +_ZN9Inspector18InspectorHeapAgentdaEPv +_ZN9Inspector18InspectorHeapAgentdlEPv +_ZN9Inspector18InspectorHeapAgentnaEm +_ZN9Inspector18InspectorHeapAgentnaEmPv +_ZN9Inspector18InspectorHeapAgentnwEm +_ZN9Inspector18InspectorHeapAgentnwEm10NotNullTagPv +_ZN9Inspector18InspectorHeapAgentnwEmPv +_ZN9Inspector19InspectorAuditAgent11muteConsoleEv +_ZN9Inspector19InspectorAuditAgent13unmuteConsoleEv +_ZN9Inspector19InspectorAuditAgent19populateAuditObjectEPN3JSC14JSGlobalObjectERNS1_6StrongINS1_8JSObjectELNS1_30ShouldStrongDestructorGrabLockE0EEE +_ZN9Inspector19InspectorAuditAgent21injectedScriptManagerEv +_ZN9Inspector19InspectorAuditAgent27didCreateFrontendAndBackendEPNS_14FrontendRouterEPNS_17BackendDispatcherE +_ZN9Inspector19InspectorAuditAgent29willDestroyFrontendAndBackendENS_16DisconnectReasonE +_ZN9Inspector19InspectorAuditAgent3runERN3WTF6StringERKS2_PKiRNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISB_EEEERNS1_8OptionalIbEE +_ZN9Inspector19InspectorAuditAgent5setupERN3WTF6StringEPKi +_ZN9Inspector19InspectorAuditAgent8teardownERN3WTF6StringE +_ZN9Inspector19InspectorAuditAgentC2ERNS_12AgentContextE +_ZN9Inspector19InspectorAuditAgentD0Ev +_ZN9Inspector19InspectorAuditAgentD1Ev +_ZN9Inspector19InspectorAuditAgentD2Ev +_ZN9Inspector19InspectorAuditAgentdaEPv +_ZN9Inspector19InspectorAuditAgentdlEPv +_ZN9Inspector19InspectorAuditAgentnaEm +_ZN9Inspector19InspectorAuditAgentnaEmPv +_ZN9Inspector19InspectorAuditAgentnwEm +_ZN9Inspector19InspectorAuditAgentnwEmPv +_ZN9Inspector20CSSBackendDispatcher12setStyleTextElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20CSSBackendDispatcher13getStyleSheetElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20CSSBackendDispatcher15setRuleSelectorElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20CSSBackendDispatcher16createStyleSheetElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20CSSBackendDispatcher16forcePseudoStateElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20CSSBackendDispatcher17getAllStyleSheetsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20CSSBackendDispatcher17getStyleSheetTextElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20CSSBackendDispatcher17setStyleSheetTextElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20CSSBackendDispatcher22getInlineStylesForNodeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20CSSBackendDispatcher23getComputedStyleForNodeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20CSSBackendDispatcher23getMatchedStylesForNodeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20CSSBackendDispatcher25getSupportedCSSPropertiesElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20CSSBackendDispatcher33getSupportedSystemFontFamilyNamesElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20CSSBackendDispatcher6createERNS_17BackendDispatcherEPNS_27CSSBackendDispatcherHandlerE +_ZN9Inspector20CSSBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20CSSBackendDispatcher7addRuleElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20CSSBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20CSSBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE +_ZN9Inspector20CSSBackendDispatcherC1ERNS_17BackendDispatcherEPNS_27CSSBackendDispatcherHandlerE +_ZN9Inspector20CSSBackendDispatcherC2ERNS_17BackendDispatcherEPNS_27CSSBackendDispatcherHandlerE +_ZN9Inspector20CSSBackendDispatcherD0Ev +_ZN9Inspector20CSSBackendDispatcherD1Ev +_ZN9Inspector20CSSBackendDispatcherD2Ev +_ZN9Inspector20DOMBackendDispatcher10removeNodeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20DOMBackendDispatcher11getDocumentElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20DOMBackendDispatcher11requestNodeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20DOMBackendDispatcher11resolveNodeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20DOMBackendDispatcher11setNodeNameElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20DOMBackendDispatcher12getOuterHTMLElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20DOMBackendDispatcher12setNodeValueElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20DOMBackendDispatcher12setOuterHTMLElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20DOMBackendDispatcher13getAttributesElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20DOMBackendDispatcher13hideHighlightElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20DOMBackendDispatcher13highlightNodeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20DOMBackendDispatcher13highlightQuadElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20DOMBackendDispatcher13highlightRectElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20DOMBackendDispatcher13performSearchElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20DOMBackendDispatcher13querySelectorElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20DOMBackendDispatcher14highlightFrameElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20DOMBackendDispatcher15removeAttributeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20DOMBackendDispatcher16getSearchResultsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20DOMBackendDispatcher16querySelectorAllElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20DOMBackendDispatcher16setInspectedNodeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20DOMBackendDispatcher17highlightNodeListElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20DOMBackendDispatcher17highlightSelectorElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20DOMBackendDispatcher17markUndoableStateElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20DOMBackendDispatcher17requestChildNodesElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20DOMBackendDispatcher17setAttributeValueElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20DOMBackendDispatcher18insertAdjacentHTMLElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20DOMBackendDispatcher19setAttributesAsTextElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20DOMBackendDispatcher20discardSearchResultsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20DOMBackendDispatcher21releaseBackendNodeIdsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20DOMBackendDispatcher21setInspectModeEnabledElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20DOMBackendDispatcher22getSupportedEventNamesElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20DOMBackendDispatcher24getEventListenersForNodeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20DOMBackendDispatcher24pushNodeByPathToFrontendElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20DOMBackendDispatcher24setEventListenerDisabledElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20DOMBackendDispatcher29pushNodeByBackendIdToFrontendElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20DOMBackendDispatcher29setBreakpointForEventListenerElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20DOMBackendDispatcher32removeBreakpointForEventListenerElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20DOMBackendDispatcher33getAccessibilityPropertiesForNodeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20DOMBackendDispatcher35setAllowEditingUserAgentShadowTreesElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20DOMBackendDispatcher4redoElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20DOMBackendDispatcher4undoElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20DOMBackendDispatcher5focusElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20DOMBackendDispatcher6createERNS_17BackendDispatcherEPNS_27DOMBackendDispatcherHandlerE +_ZN9Inspector20DOMBackendDispatcher6moveToElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector20DOMBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE +_ZN9Inspector20DOMBackendDispatcherC1ERNS_17BackendDispatcherEPNS_27DOMBackendDispatcherHandlerE +_ZN9Inspector20DOMBackendDispatcherC2ERNS_17BackendDispatcherEPNS_27DOMBackendDispatcherHandlerE +_ZN9Inspector20DOMBackendDispatcherD0Ev +_ZN9Inspector20DOMBackendDispatcherD1Ev +_ZN9Inspector20DOMBackendDispatcherD2Ev +_ZN9Inspector20InjectedScriptModule14ensureInjectedEPNS_21InjectedScriptManagerEPN3JSC14JSGlobalObjectE +_ZN9Inspector20InjectedScriptModule14ensureInjectedEPNS_21InjectedScriptManagerEPN3JSC9ExecStateE +_ZN9Inspector20InjectedScriptModule14ensureInjectedEPNS_21InjectedScriptManagerERKNS_14InjectedScriptE +_ZN9Inspector20InjectedScriptModuleC2ERKN3WTF6StringE +_ZN9Inspector20InjectedScriptModuleC2ERKS0_ +_ZN9Inspector20InjectedScriptModuleD0Ev +_ZN9Inspector20InjectedScriptModuleD1Ev +_ZN9Inspector20InjectedScriptModuleD2Ev +_ZN9Inspector20InspectorTargetAgent13targetCreatedERNS_15InspectorTargetE +_ZN9Inspector20InspectorTargetAgent15setPauseOnStartERN3WTF6StringEb +_ZN9Inspector20InspectorTargetAgent15targetDestroyedERNS_15InspectorTargetE +_ZN9Inspector20InspectorTargetAgent16connectToTargetsEv +_ZN9Inspector20InspectorTargetAgent19sendMessageToTargetERN3WTF6StringERKS2_S5_ +_ZN9Inspector20InspectorTargetAgent21disconnectFromTargetsEv +_ZN9Inspector20InspectorTargetAgent26didCommitProvisionalTargetERKN3WTF6StringES4_ +_ZN9Inspector20InspectorTargetAgent27didCreateFrontendAndBackendEPNS_14FrontendRouterEPNS_17BackendDispatcherE +_ZN9Inspector20InspectorTargetAgent29willDestroyFrontendAndBackendENS_16DisconnectReasonE +_ZN9Inspector20InspectorTargetAgent31sendMessageFromTargetToFrontendERKN3WTF6StringES4_ +_ZN9Inspector20InspectorTargetAgent6resumeERN3WTF6StringERKS2_ +_ZN9Inspector20InspectorTargetAgentC1ERNS_14FrontendRouterERNS_17BackendDispatcherE +_ZN9Inspector20InspectorTargetAgentC2ERNS_14FrontendRouterERNS_17BackendDispatcherE +_ZN9Inspector20InspectorTargetAgentD0Ev +_ZN9Inspector20InspectorTargetAgentD1Ev +_ZN9Inspector20InspectorTargetAgentD2Ev +_ZN9Inspector20InspectorTargetAgentdaEPv +_ZN9Inspector20InspectorTargetAgentdlEPv +_ZN9Inspector20InspectorTargetAgentnaEm +_ZN9Inspector20InspectorTargetAgentnaEmPv +_ZN9Inspector20InspectorTargetAgentnwEm +_ZN9Inspector20InspectorTargetAgentnwEmPv +_ZN9Inspector21CSSFrontendDispatcher15styleSheetAddedEN3WTF6RefPtrINS_8Protocol3CSS19CSSStyleSheetHeaderENS1_13DumbPtrTraitsIS5_EEEE +_ZN9Inspector21CSSFrontendDispatcher17styleSheetChangedERKN3WTF6StringE +_ZN9Inspector21CSSFrontendDispatcher17styleSheetRemovedERKN3WTF6StringE +_ZN9Inspector21CSSFrontendDispatcher23mediaQueryResultChangedEv +_ZN9Inspector21CSSFrontendDispatcherC1ERNS_14FrontendRouterE +_ZN9Inspector21CSSFrontendDispatcherC2ERNS_14FrontendRouterE +_ZN9Inspector21CSSFrontendDispatcherdaEPv +_ZN9Inspector21CSSFrontendDispatcherdlEPv +_ZN9Inspector21CSSFrontendDispatchernaEm +_ZN9Inspector21CSSFrontendDispatchernaEmPv +_ZN9Inspector21CSSFrontendDispatchernwEm +_ZN9Inspector21CSSFrontendDispatchernwEmPv +_ZN9Inspector21DOMFrontendDispatcher12didFireEventEiRKN3WTF6StringEdNS1_6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE +_ZN9Inspector21DOMFrontendDispatcher13setChildNodesEiN3WTF6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol3DOM4NodeEEENS1_13DumbPtrTraitsIS8_EEEE +_ZN9Inspector21DOMFrontendDispatcher15documentUpdatedEv +_ZN9Inspector21DOMFrontendDispatcher16attributeRemovedEiRKN3WTF6StringE +_ZN9Inspector21DOMFrontendDispatcher16childNodeRemovedEii +_ZN9Inspector21DOMFrontendDispatcher16shadowRootPoppedEii +_ZN9Inspector21DOMFrontendDispatcher16shadowRootPushedEiN3WTF6RefPtrINS_8Protocol3DOM4NodeENS1_13DumbPtrTraitsIS5_EEEE +_ZN9Inspector21DOMFrontendDispatcher17attributeModifiedEiRKN3WTF6StringES4_ +_ZN9Inspector21DOMFrontendDispatcher17childNodeInsertedEiiN3WTF6RefPtrINS_8Protocol3DOM4NodeENS1_13DumbPtrTraitsIS5_EEEE +_ZN9Inspector21DOMFrontendDispatcher18pseudoElementAddedEiN3WTF6RefPtrINS_8Protocol3DOM4NodeENS1_13DumbPtrTraitsIS5_EEEE +_ZN9Inspector21DOMFrontendDispatcher19didAddEventListenerEi +_ZN9Inspector21DOMFrontendDispatcher20pseudoElementRemovedEii +_ZN9Inspector21DOMFrontendDispatcher21characterDataModifiedEiRKN3WTF6StringE +_ZN9Inspector21DOMFrontendDispatcher21childNodeCountUpdatedEii +_ZN9Inspector21DOMFrontendDispatcher22inlineStyleInvalidatedEN3WTF6RefPtrINS1_8JSONImpl7ArrayOfIiEENS1_13DumbPtrTraitsIS5_EEEE +_ZN9Inspector21DOMFrontendDispatcher23willRemoveEventListenerEi +_ZN9Inspector21DOMFrontendDispatcher25customElementStateChangedEiNS_8Protocol3DOM18CustomElementStateE +_ZN9Inspector21DOMFrontendDispatcher34powerEfficientPlaybackStateChangedEidb +_ZN9Inspector21DOMFrontendDispatcher7inspectEi +_ZN9Inspector21DOMFrontendDispatcherC1ERNS_14FrontendRouterE +_ZN9Inspector21DOMFrontendDispatcherC2ERNS_14FrontendRouterE +_ZN9Inspector21DOMFrontendDispatcherdaEPv +_ZN9Inspector21DOMFrontendDispatcherdlEPv +_ZN9Inspector21DOMFrontendDispatchernaEm +_ZN9Inspector21DOMFrontendDispatchernaEmPv +_ZN9Inspector21DOMFrontendDispatchernwEm +_ZN9Inspector21DOMFrontendDispatchernwEmPv +_ZN9Inspector21HeapBackendDispatcher10getPreviewElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector21HeapBackendDispatcher12stopTrackingElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector21HeapBackendDispatcher13startTrackingElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector21HeapBackendDispatcher15getRemoteObjectElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector21HeapBackendDispatcher2gcElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector21HeapBackendDispatcher6createERNS_17BackendDispatcherEPNS_28HeapBackendDispatcherHandlerE +_ZN9Inspector21HeapBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector21HeapBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector21HeapBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE +_ZN9Inspector21HeapBackendDispatcher8snapshotElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector21HeapBackendDispatcherC1ERNS_17BackendDispatcherEPNS_28HeapBackendDispatcherHandlerE +_ZN9Inspector21HeapBackendDispatcherC2ERNS_17BackendDispatcherEPNS_28HeapBackendDispatcherHandlerE +_ZN9Inspector21HeapBackendDispatcherD0Ev +_ZN9Inspector21HeapBackendDispatcherD1Ev +_ZN9Inspector21HeapBackendDispatcherD2Ev +_ZN9Inspector21InjectedScriptManager10disconnectEv +_ZN9Inspector21InjectedScriptManager15clearEventValueEv +_ZN9Inspector21InjectedScriptManager17injectedScriptForEPN3JSC14JSGlobalObjectE +_ZN9Inspector21InjectedScriptManager17injectedScriptForEPN3JSC9ExecStateE +_ZN9Inspector21InjectedScriptManager18injectedScriptHostEv +_ZN9Inspector21InjectedScriptManager18releaseObjectGroupERKN3WTF6StringE +_ZN9Inspector21InjectedScriptManager19clearExceptionValueEv +_ZN9Inspector21InjectedScriptManager19injectedScriptForIdEi +_ZN9Inspector21InjectedScriptManager19injectedScriptIdForEPN3JSC14JSGlobalObjectE +_ZN9Inspector21InjectedScriptManager19injectedScriptIdForEPN3JSC9ExecStateE +_ZN9Inspector21InjectedScriptManager20createInjectedScriptERKN3WTF6StringEPN3JSC14JSGlobalObjectEi +_ZN9Inspector21InjectedScriptManager20createInjectedScriptERKN3WTF6StringEPN3JSC9ExecStateEi +_ZN9Inspector21InjectedScriptManager20injectedScriptSourceEv +_ZN9Inspector21InjectedScriptManager22discardInjectedScriptsEv +_ZN9Inspector21InjectedScriptManager23didCreateInjectedScriptERKNS_14InjectedScriptE +_ZN9Inspector21InjectedScriptManager25injectedScriptForObjectIdERKN3WTF6StringE +_ZN9Inspector21InjectedScriptManager7connectEv +_ZN9Inspector21InjectedScriptManagerC1ERNS_20InspectorEnvironmentEON3WTF3RefINS_18InjectedScriptHostENS3_13DumbPtrTraitsIS5_EEEE +_ZN9Inspector21InjectedScriptManagerC2ERNS_20InspectorEnvironmentEON3WTF3RefINS_18InjectedScriptHostENS3_13DumbPtrTraitsIS5_EEEE +_ZN9Inspector21InjectedScriptManagerD0Ev +_ZN9Inspector21InjectedScriptManagerD1Ev +_ZN9Inspector21InjectedScriptManagerD2Ev +_ZN9Inspector21InjectedScriptManagerdaEPv +_ZN9Inspector21InjectedScriptManagerdlEPv +_ZN9Inspector21InjectedScriptManagernaEm +_ZN9Inspector21InjectedScriptManagernaEmPv +_ZN9Inspector21InjectedScriptManagernwEm +_ZN9Inspector21InjectedScriptManagernwEm10NotNullTagPv +_ZN9Inspector21InjectedScriptManagernwEmPv +_ZN9Inspector21InspectorConsoleAgent10countResetEPN3JSC14JSGlobalObjectERKN3WTF6StringE +_ZN9Inspector21InspectorConsoleAgent10stopTimingEPN3JSC14JSGlobalObjectERKN3WTF6StringE +_ZN9Inspector21InspectorConsoleAgent10stopTimingERKN3WTF6StringEONS1_3RefINS_15ScriptCallStackENS1_13DumbPtrTraitsIS6_EEEE +_ZN9Inspector21InspectorConsoleAgent11startTimingEPN3JSC14JSGlobalObjectERKN3WTF6StringE +_ZN9Inspector21InspectorConsoleAgent11startTimingERKN3WTF6StringE +_ZN9Inspector21InspectorConsoleAgent12setHeapAgentEPNS_18InspectorHeapAgentE +_ZN9Inspector21InspectorConsoleAgent13clearMessagesERN3WTF6StringE +_ZN9Inspector21InspectorConsoleAgent13discardValuesEv +_ZN9Inspector21InspectorConsoleAgent16takeHeapSnapshotERKN3WTF6StringE +_ZN9Inspector21InspectorConsoleAgent17addConsoleMessageESt10unique_ptrINS_14ConsoleMessageESt14default_deleteIS2_EE +_ZN9Inspector21InspectorConsoleAgent18getLoggingChannelsERN3WTF6StringERNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Console7ChannelEEENS1_13DumbPtrTraitsISA_EEEE +_ZN9Inspector21InspectorConsoleAgent19addMessageToConsoleESt10unique_ptrINS_14ConsoleMessageESt14default_deleteIS2_EE +_ZN9Inspector21InspectorConsoleAgent22setLoggingChannelLevelERN3WTF6StringERKS2_S5_ +_ZN9Inspector21InspectorConsoleAgent27didCreateFrontendAndBackendEPNS_14FrontendRouterEPNS_17BackendDispatcherE +_ZN9Inspector21InspectorConsoleAgent29willDestroyFrontendAndBackendENS_16DisconnectReasonE +_ZN9Inspector21InspectorConsoleAgent5countEPN3JSC14JSGlobalObjectERKN3WTF6StringE +_ZN9Inspector21InspectorConsoleAgent5countEPN3JSC9ExecStateEON3WTF3RefINS_15ScriptArgumentsENS4_13DumbPtrTraitsIS6_EEEE +_ZN9Inspector21InspectorConsoleAgent5resetEv +_ZN9Inspector21InspectorConsoleAgent6enableERN3WTF6StringE +_ZN9Inspector21InspectorConsoleAgent7disableERN3WTF6StringE +_ZN9Inspector21InspectorConsoleAgent9logTimingEPN3JSC14JSGlobalObjectERKN3WTF6StringEONS4_3RefINS_15ScriptArgumentsENS4_13DumbPtrTraitsIS9_EEEE +_ZN9Inspector21InspectorConsoleAgentC1ERNS_12AgentContextE +_ZN9Inspector21InspectorConsoleAgentC1ERNS_12AgentContextEPNS_18InspectorHeapAgentE +_ZN9Inspector21InspectorConsoleAgentC2ERNS_12AgentContextE +_ZN9Inspector21InspectorConsoleAgentC2ERNS_12AgentContextEPNS_18InspectorHeapAgentE +_ZN9Inspector21InspectorConsoleAgentD0Ev +_ZN9Inspector21InspectorConsoleAgentD1Ev +_ZN9Inspector21InspectorConsoleAgentD2Ev +_ZN9Inspector21InspectorConsoleAgentdaEPv +_ZN9Inspector21InspectorConsoleAgentdlEPv +_ZN9Inspector21InspectorConsoleAgentnaEm +_ZN9Inspector21InspectorConsoleAgentnaEmPv +_ZN9Inspector21InspectorConsoleAgentnwEm +_ZN9Inspector21InspectorConsoleAgentnwEm10NotNullTagPv +_ZN9Inspector21InspectorConsoleAgentnwEmPv +_ZN9Inspector21InspectorRuntimeAgent10getPreviewERN3WTF6StringERKS2_RNS1_6RefPtrINS_8Protocol7Runtime13ObjectPreviewENS1_13DumbPtrTraitsIS9_EEEE +_ZN9Inspector21InspectorRuntimeAgent10saveResultERN3WTF6StringERKNS1_8JSONImpl6ObjectEPKiRNS1_8OptionalIiEE +_ZN9Inspector21InspectorRuntimeAgent10saveResultERN3WTF6StringERKNS1_8JSONImpl6ObjectEPKiRSt8optionalIiE +_ZN9Inspector21InspectorRuntimeAgent12awaitPromiseERKN3WTF6StringEPKbS6_S6_ONS1_3RefINS_31RuntimeBackendDispatcherHandler20AwaitPromiseCallbackENS1_13DumbPtrTraitsIS9_EEEE +_ZN9Inspector21InspectorRuntimeAgent13getPropertiesERN3WTF6StringERKS2_PKbPKiS9_S7_RNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime18PropertyDescriptorEEENS1_13DumbPtrTraitsISG_EEEERNSA_INSC_INSE_26InternalPropertyDescriptorEEENSH_ISM_EEEE +_ZN9Inspector21InspectorRuntimeAgent13getPropertiesERN3WTF6StringERKS2_PKbS7_RNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime18PropertyDescriptorEEENS1_13DumbPtrTraitsISE_EEEERNS8_INSA_INSC_26InternalPropertyDescriptorEEENSF_ISK_EEEE +_ZN9Inspector21InspectorRuntimeAgent13releaseObjectERN3WTF6StringERKS2_ +_ZN9Inspector21InspectorRuntimeAgent14callFunctionOnERN3WTF6StringERKS2_S5_PKNS1_8JSONImpl5ArrayEPKbSB_SB_RNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISF_EEEERSt8optionalIbE +_ZN9Inspector21InspectorRuntimeAgent14callFunctionOnERN3WTF6StringERKS2_S5_PKNS1_8JSONImpl5ArrayEPKbSB_SB_SB_RNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISF_EEEERNS1_8OptionalIbEE +_ZN9Inspector21InspectorRuntimeAgent14getBasicBlocksERN3WTF6StringERKS2_RNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime10BasicBlockEEENS1_13DumbPtrTraitsISC_EEEE +_ZN9Inspector21InspectorRuntimeAgent18enableTypeProfilerERN3WTF6StringE +_ZN9Inspector21InspectorRuntimeAgent18releaseObjectGroupERN3WTF6StringERKS2_ +_ZN9Inspector21InspectorRuntimeAgent19disableTypeProfilerERN3WTF6StringE +_ZN9Inspector21InspectorRuntimeAgent19setSavedResultAliasERN3WTF6StringEPKS2_ +_ZN9Inspector21InspectorRuntimeAgent20getCollectionEntriesERN3WTF6StringERKS2_PS4_PKiS8_RNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime15CollectionEntryEEENS1_13DumbPtrTraitsISF_EEEE +_ZN9Inspector21InspectorRuntimeAgent21injectedScriptManagerEv +_ZN9Inspector21InspectorRuntimeAgent24getDisplayablePropertiesERN3WTF6StringERKS2_PKbRNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime18PropertyDescriptorEEENS1_13DumbPtrTraitsISE_EEEERNS8_INSA_INSC_26InternalPropertyDescriptorEEENSF_ISK_EEEE +_ZN9Inspector21InspectorRuntimeAgent24getDisplayablePropertiesERN3WTF6StringERKS2_PKiS7_PKbRNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime18PropertyDescriptorEEENS1_13DumbPtrTraitsISG_EEEERNSA_INSC_INSE_26InternalPropertyDescriptorEEENSH_ISM_EEEE +_ZN9Inspector21InspectorRuntimeAgent25enableControlFlowProfilerERN3WTF6StringE +_ZN9Inspector21InspectorRuntimeAgent26disableControlFlowProfilerERN3WTF6StringE +_ZN9Inspector21InspectorRuntimeAgent27didCreateFrontendAndBackendEPNS_14FrontendRouterEPNS_17BackendDispatcherE +_ZN9Inspector21InspectorRuntimeAgent27setTypeProfilerEnabledStateEb +_ZN9Inspector21InspectorRuntimeAgent29willDestroyFrontendAndBackendENS_16DisconnectReasonE +_ZN9Inspector21InspectorRuntimeAgent34setControlFlowProfilerEnabledStateEb +_ZN9Inspector21InspectorRuntimeAgent36getRuntimeTypesForVariablesAtOffsetsERN3WTF6StringERKNS1_8JSONImpl5ArrayERNS1_6RefPtrINS4_7ArrayOfINS_8Protocol7Runtime15TypeDescriptionEEENS1_13DumbPtrTraitsISD_EEEE +_ZN9Inspector21InspectorRuntimeAgent5parseERN3WTF6StringERKS2_PNS_8Protocol7Runtime15SyntaxErrorTypeERNS1_8OptionalIS2_EERNS1_6RefPtrINS7_10ErrorRangeENS1_13DumbPtrTraitsISE_EEEE +_ZN9Inspector21InspectorRuntimeAgent5parseERN3WTF6StringERKS2_PNS_8Protocol7Runtime15SyntaxErrorTypeERSt8optionalIS2_ERNS1_6RefPtrINS7_10ErrorRangeENS1_13DumbPtrTraitsISE_EEEE +_ZN9Inspector21InspectorRuntimeAgent6enableERN3WTF6StringE +_ZN9Inspector21InspectorRuntimeAgent7disableERN3WTF6StringE +_ZN9Inspector21InspectorRuntimeAgent8evaluateERN3WTF6StringERKS2_PS4_PKbS8_PKiS8_S8_S8_RNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISE_EEEERSt8optionalIbERSJ_IiE +_ZN9Inspector21InspectorRuntimeAgent8evaluateERN3WTF6StringERKS2_PS4_PKbS8_PKiS8_S8_S8_S8_RNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISE_EEEERNS1_8OptionalIbEERNSJ_IiEE +_ZN9Inspector21InspectorRuntimeAgentC2ERNS_12AgentContextE +_ZN9Inspector21InspectorRuntimeAgentD0Ev +_ZN9Inspector21InspectorRuntimeAgentD1Ev +_ZN9Inspector21InspectorRuntimeAgentD2Ev +_ZN9Inspector21InspectorRuntimeAgentdaEPv +_ZN9Inspector21InspectorRuntimeAgentdlEPv +_ZN9Inspector21InspectorRuntimeAgentnaEm +_ZN9Inspector21InspectorRuntimeAgentnaEmPv +_ZN9Inspector21InspectorRuntimeAgentnwEm +_ZN9Inspector21InspectorRuntimeAgentnwEm10NotNullTagPv +_ZN9Inspector21InspectorRuntimeAgentnwEmPv +_ZN9Inspector21PageBackendDispatcher10getCookiesElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector21PageBackendDispatcher12deleteCookieElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector21PageBackendDispatcher12snapshotNodeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector21PageBackendDispatcher12snapshotRectElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector21PageBackendDispatcher13setShowRulersElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector21PageBackendDispatcher15getResourceTreeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector21PageBackendDispatcher15overrideSettingElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector21PageBackendDispatcher16searchInResourceElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector21PageBackendDispatcher16setEmulatedMediaElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector21PageBackendDispatcher17overrideUserAgentElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector21PageBackendDispatcher17searchInResourcesElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector21PageBackendDispatcher17setShowPaintRectsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector21PageBackendDispatcher18getResourceContentElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector21PageBackendDispatcher18setBootstrapScriptElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector21PageBackendDispatcher28getCompositingBordersVisibleElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector21PageBackendDispatcher28setCompositingBordersVisibleElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector21PageBackendDispatcher6createERNS_17BackendDispatcherEPNS_28PageBackendDispatcherHandlerE +_ZN9Inspector21PageBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector21PageBackendDispatcher6reloadElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector21PageBackendDispatcher7archiveElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector21PageBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector21PageBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE +_ZN9Inspector21PageBackendDispatcher8navigateElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector21PageBackendDispatcher9setCookieElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector21PageBackendDispatcherC1ERNS_17BackendDispatcherEPNS_28PageBackendDispatcherHandlerE +_ZN9Inspector21PageBackendDispatcherC2ERNS_17BackendDispatcherEPNS_28PageBackendDispatcherHandlerE +_ZN9Inspector21PageBackendDispatcherD0Ev +_ZN9Inspector21PageBackendDispatcherD1Ev +_ZN9Inspector21PageBackendDispatcherD2Ev +_ZN9Inspector21RemoteInspectorServer5startEPKcj +_ZN9Inspector21RemoteInspectorServer5startEPKct +_ZN9Inspector21RemoteInspectorServer9singletonEv +_ZN9Inspector21createScriptArgumentsEPN3JSC14JSGlobalObjectEPNS0_9CallFrameEj +_ZN9Inspector21createScriptArgumentsEPN3JSC9ExecStateEj +_ZN9Inspector21createScriptCallStackEPN3JSC14JSGlobalObjectEm +_ZN9Inspector21createScriptCallStackEPN3JSC9ExecStateEm +_ZN9Inspector22AuditBackendDispatcher3runElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector22AuditBackendDispatcher5setupElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector22AuditBackendDispatcher6createERNS_17BackendDispatcherEPNS_29AuditBackendDispatcherHandlerE +_ZN9Inspector22AuditBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE +_ZN9Inspector22AuditBackendDispatcher8teardownElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector22AuditBackendDispatcherC1ERNS_17BackendDispatcherEPNS_29AuditBackendDispatcherHandlerE +_ZN9Inspector22AuditBackendDispatcherC2ERNS_17BackendDispatcherEPNS_29AuditBackendDispatcherHandlerE +_ZN9Inspector22AuditBackendDispatcherD0Ev +_ZN9Inspector22AuditBackendDispatcherD1Ev +_ZN9Inspector22AuditBackendDispatcherD2Ev +_ZN9Inspector22ContentSearchUtilities11lineEndingsERKN3WTF6StringE +_ZN9Inspector22ContentSearchUtilities17createSearchRegexERKN3WTF6StringEbb +_ZN9Inspector22ContentSearchUtilities19searchInTextByLinesERKN3WTF6StringES4_bb +_ZN9Inspector22ContentSearchUtilities22textPositionFromOffsetEmRKN3WTF6VectorImLm0ENS1_15CrashOnOverflowELm16EEE +_ZN9Inspector22ContentSearchUtilities22textPositionFromOffsetEmRKN3WTF6VectorImLm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN9Inspector22ContentSearchUtilities26findStylesheetSourceMapURLERKN3WTF6StringE +_ZN9Inspector22ContentSearchUtilities29countRegularExpressionMatchesERKN3JSC4Yarr17RegularExpressionERKN3WTF6StringE +_ZN9Inspector22ContentSearchUtilities38createRegularExpressionForSearchStringERKN3WTF6StringEbNS0_16SearchStringTypeE +_ZN9Inspector22HeapFrontendDispatcher13trackingStartEdRKN3WTF6StringE +_ZN9Inspector22HeapFrontendDispatcher16garbageCollectedEN3WTF6RefPtrINS_8Protocol4Heap17GarbageCollectionENS1_13DumbPtrTraitsIS5_EEEE +_ZN9Inspector22HeapFrontendDispatcher16trackingCompleteEdRKN3WTF6StringE +_ZN9Inspector22HeapFrontendDispatcherC1ERNS_14FrontendRouterE +_ZN9Inspector22HeapFrontendDispatcherC2ERNS_14FrontendRouterE +_ZN9Inspector22HeapFrontendDispatcherdaEPv +_ZN9Inspector22HeapFrontendDispatcherdlEPv +_ZN9Inspector22HeapFrontendDispatchernaEm +_ZN9Inspector22HeapFrontendDispatchernaEmPv +_ZN9Inspector22HeapFrontendDispatchernwEm +_ZN9Inspector22HeapFrontendDispatchernwEmPv +_ZN9Inspector22InspectorDebuggerAgent11addListenerERNS0_8ListenerE +_ZN9Inspector22InspectorDebuggerAgent11didContinueEv +_ZN9Inspector22InspectorDebuggerAgent11setListenerEPNS0_8ListenerE +_ZN9Inspector22InspectorDebuggerAgent12assertPausedERN3WTF6StringE +_ZN9Inspector22InspectorDebuggerAgent12breakProgramENS_26DebuggerFrontendDispatcher6ReasonEON3WTF6RefPtrINS3_8JSONImpl6ObjectENS3_13DumbPtrTraitsIS6_EEEE +_ZN9Inspector22InspectorDebuggerAgent13didBecomeIdleEv +_ZN9Inspector22InspectorDebuggerAgent13setBreakpointERN3JSC10BreakpointERb +_ZN9Inspector22InspectorDebuggerAgent13setBreakpointERN3WTF6StringERKNS1_8JSONImpl6ObjectEPS6_PS2_RNS1_6RefPtrINS_8Protocol8Debugger8LocationENS1_13DumbPtrTraitsISD_EEEE +_ZN9Inspector22InspectorDebuggerAgent14didParseSourceEmRKNS_19ScriptDebugListener6ScriptE +_ZN9Inspector22InspectorDebuggerAgent14removeListenerERNS0_8ListenerE +_ZN9Inspector22InspectorDebuggerAgent15didRunMicrotaskEv +_ZN9Inspector22InspectorDebuggerAgent15getScriptSourceERN3WTF6StringERKS2_PS2_ +_ZN9Inspector22InspectorDebuggerAgent15searchInContentERN3WTF6StringERKS2_S5_PKbS7_RNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol12GenericTypes11SearchMatchEEENS1_13DumbPtrTraitsISE_EEEE +_ZN9Inspector22InspectorDebuggerAgent16didSetBreakpointERKN3JSC10BreakpointERKN3WTF6StringERKNS_16ScriptBreakpointE +_ZN9Inspector22InspectorDebuggerAgent16removeBreakpointERN3WTF6StringERKS2_ +_ZN9Inspector22InspectorDebuggerAgent16willRunMicrotaskEv +_ZN9Inspector22InspectorDebuggerAgent17clearBreakDetailsEv +_ZN9Inspector22InspectorDebuggerAgent17clearPauseDetailsEv +_ZN9Inspector22InspectorDebuggerAgent17currentCallFramesERKNS_14InjectedScriptE +_ZN9Inspector22InspectorDebuggerAgent17resolveBreakpointERKNS_19ScriptDebugListener6ScriptERN3JSC10BreakpointE +_ZN9Inspector22InspectorDebuggerAgent17scriptDebugServerEv +_ZN9Inspector22InspectorDebuggerAgent17setOverlayMessageERN3WTF6StringEPKS2_ +_ZN9Inspector22InspectorDebuggerAgent18continueToLocationERN3WTF6StringERKNS1_8JSONImpl6ObjectE +_ZN9Inspector22InspectorDebuggerAgent18didCancelAsyncCallENS0_13AsyncCallTypeEi +_ZN9Inspector22InspectorDebuggerAgent18getFunctionDetailsERN3WTF6StringERKS2_RNS1_6RefPtrINS_8Protocol8Debugger15FunctionDetailsENS1_13DumbPtrTraitsIS9_EEEE +_ZN9Inspector22InspectorDebuggerAgent18setBreakpointByUrlERN3WTF6StringEiPKS2_S5_PKiPKNS1_8JSONImpl6ObjectEPS2_RNS1_6RefPtrINS8_7ArrayOfINS_8Protocol8Debugger8LocationEEENS1_13DumbPtrTraitsISI_EEEE +_ZN9Inspector22InspectorDebuggerAgent19asyncCallIdentifierENS0_13AsyncCallTypeEi +_ZN9Inspector22InspectorDebuggerAgent19clearExceptionValueEv +_ZN9Inspector22InspectorDebuggerAgent19evaluateOnCallFrameERN3WTF6StringERKS2_S5_PS4_PKbS8_S8_S8_S8_RNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISC_EEEERSt8optionalIbERSH_IiE +_ZN9Inspector22InspectorDebuggerAgent19evaluateOnCallFrameERN3WTF6StringERKS2_S5_PS4_PKbS8_S8_S8_S8_S8_RNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISC_EEEERNS1_8OptionalIbEERNSH_IiEE +_ZN9Inspector22InspectorDebuggerAgent19failedToParseSourceERKN3WTF6StringES4_iiS4_ +_ZN9Inspector22InspectorDebuggerAgent19handleConsoleAssertERKN3WTF6StringE +_ZN9Inspector22InspectorDebuggerAgent19registerIdleHandlerEv +_ZN9Inspector22InspectorDebuggerAgent20backtraceObjectGroupE +_ZN9Inspector22InspectorDebuggerAgent20didClearGlobalObjectEv +_ZN9Inspector22InspectorDebuggerAgent20didDispatchAsyncCallEv +_ZN9Inspector22InspectorDebuggerAgent20didScheduleAsyncCallEPN3JSC14JSGlobalObjectENS0_13AsyncCallTypeEib +_ZN9Inspector22InspectorDebuggerAgent20didScheduleAsyncCallEPN3JSC9ExecStateENS0_13AsyncCallTypeEib +_ZN9Inspector22InspectorDebuggerAgent20setBreakpointsActiveERN3WTF6StringEb +_ZN9Inspector22InspectorDebuggerAgent20setPauseOnAssertionsERN3WTF6StringEb +_ZN9Inspector22InspectorDebuggerAgent20setPauseOnExceptionsERN3WTF6StringERKS2_ +_ZN9Inspector22InspectorDebuggerAgent20setPauseOnMicrotasksERN3WTF6StringEb +_ZN9Inspector22InspectorDebuggerAgent20setShouldBlackboxURLERN3WTF6StringERKS2_bPKbS7_ +_ZN9Inspector22InspectorDebuggerAgent20setSuppressAllPausesEb +_ZN9Inspector22InspectorDebuggerAgent21breakpointActionProbeEPN3JSC14JSGlobalObjectERKNS_22ScriptBreakpointActionEjjNS1_7JSValueE +_ZN9Inspector22InspectorDebuggerAgent21breakpointActionProbeERN3JSC9ExecStateERKNS_22ScriptBreakpointActionEjjNS1_7JSValueE +_ZN9Inspector22InspectorDebuggerAgent21breakpointActionSoundEi +_ZN9Inspector22InspectorDebuggerAgent21sourceMapURLForScriptERKNS_19ScriptDebugListener6ScriptE +_ZN9Inspector22InspectorDebuggerAgent21willDispatchAsyncCallENS0_13AsyncCallTypeEi +_ZN9Inspector22InspectorDebuggerAgent23setAsyncStackTraceDepthERN3WTF6StringEi +_ZN9Inspector22InspectorDebuggerAgent24clearAsyncStackTraceDataEv +_ZN9Inspector22InspectorDebuggerAgent24continueUntilNextRunLoopERN3WTF6StringE +_ZN9Inspector22InspectorDebuggerAgent24updatePauseReasonAndDataENS_26DebuggerFrontendDispatcher6ReasonEON3WTF6RefPtrINS3_8JSONImpl6ObjectENS3_13DumbPtrTraitsIS6_EEEE +_ZN9Inspector22InspectorDebuggerAgent24willStepAndMayBecomeIdleEv +_ZN9Inspector22InspectorDebuggerAgent25buildExceptionPauseReasonEN3JSC7JSValueERKNS_14InjectedScriptE +_ZN9Inspector22InspectorDebuggerAgent26buildBreakpointPauseReasonEm +_ZN9Inspector22InspectorDebuggerAgent26cancelPauseOnNextStatementEv +_ZN9Inspector22InspectorDebuggerAgent26setPauseForInternalScriptsERN3WTF6StringEb +_ZN9Inspector22InspectorDebuggerAgent27didClearAsyncStackTraceDataEv +_ZN9Inspector22InspectorDebuggerAgent27didCreateFrontendAndBackendEPNS_14FrontendRouterEPNS_17BackendDispatcherE +_ZN9Inspector22InspectorDebuggerAgent27scriptExecutionBlockedByCSPERKN3WTF6StringE +_ZN9Inspector22InspectorDebuggerAgent28clearDebuggerBreakpointStateEv +_ZN9Inspector22InspectorDebuggerAgent28schedulePauseOnNextStatementENS_26DebuggerFrontendDispatcher6ReasonEON3WTF6RefPtrINS3_8JSONImpl6ObjectENS3_13DumbPtrTraitsIS6_EEEE +_ZN9Inspector22InspectorDebuggerAgent28setPauseOnDebuggerStatementsERN3WTF6StringEb +_ZN9Inspector22InspectorDebuggerAgent29breakpointActionsFromProtocolERN3WTF6StringERNS1_6RefPtrINS1_8JSONImpl5ArrayENS1_13DumbPtrTraitsIS6_EEEEPNS1_6VectorINS_22ScriptBreakpointActionELm0ENS1_15CrashOnOverflowELm16EEE +_ZN9Inspector22InspectorDebuggerAgent29breakpointActionsFromProtocolERN3WTF6StringERNS1_6RefPtrINS1_8JSONImpl5ArrayENS1_13DumbPtrTraitsIS6_EEEEPNS1_6VectorINS_22ScriptBreakpointActionELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE +_ZN9Inspector22InspectorDebuggerAgent29clearInspectorBreakpointStateEv +_ZN9Inspector22InspectorDebuggerAgent29willDestroyFrontendAndBackendENS_16DisconnectReasonE +_ZN9Inspector22InspectorDebuggerAgent5pauseERN3WTF6StringE +_ZN9Inspector22InspectorDebuggerAgent6enableERN3WTF6StringE +_ZN9Inspector22InspectorDebuggerAgent6enableEv +_ZN9Inspector22InspectorDebuggerAgent6resumeERN3WTF6StringE +_ZN9Inspector22InspectorDebuggerAgent7disableERN3WTF6StringE +_ZN9Inspector22InspectorDebuggerAgent7disableEb +_ZN9Inspector22InspectorDebuggerAgent7stepOutERN3WTF6StringE +_ZN9Inspector22InspectorDebuggerAgent8didPauseEPN3JSC14JSGlobalObjectENS1_7JSValueES4_ +_ZN9Inspector22InspectorDebuggerAgent8didPauseERN3JSC9ExecStateENS1_7JSValueES4_ +_ZN9Inspector22InspectorDebuggerAgent8stepIntoERN3WTF6StringE +_ZN9Inspector22InspectorDebuggerAgent8stepNextERN3WTF6StringE +_ZN9Inspector22InspectorDebuggerAgent8stepOverERN3WTF6StringE +_ZN9Inspector22InspectorDebuggerAgentC2ERNS_12AgentContextE +_ZN9Inspector22InspectorDebuggerAgentD0Ev +_ZN9Inspector22InspectorDebuggerAgentD1Ev +_ZN9Inspector22InspectorDebuggerAgentD2Ev +_ZN9Inspector22InspectorDebuggerAgentdaEPv +_ZN9Inspector22InspectorDebuggerAgentdlEPv +_ZN9Inspector22InspectorDebuggerAgentnaEm +_ZN9Inspector22InspectorDebuggerAgentnaEmPv +_ZN9Inspector22InspectorDebuggerAgentnwEm +_ZN9Inspector22InspectorDebuggerAgentnwEm10NotNullTagPv +_ZN9Inspector22InspectorDebuggerAgentnwEmPv +_ZN9Inspector22PageFrontendDispatcher13frameDetachedERKN3WTF6StringE +_ZN9Inspector22PageFrontendDispatcher14frameNavigatedEN3WTF6RefPtrINS_8Protocol4Page5FrameENS1_13DumbPtrTraitsIS5_EEEE +_ZN9Inspector22PageFrontendDispatcher14loadEventFiredEd +_ZN9Inspector22PageFrontendDispatcher19frameStartedLoadingERKN3WTF6StringE +_ZN9Inspector22PageFrontendDispatcher19frameStoppedLoadingERKN3WTF6StringE +_ZN9Inspector22PageFrontendDispatcher20domContentEventFiredEd +_ZN9Inspector22PageFrontendDispatcher24frameScheduledNavigationERKN3WTF6StringEd +_ZN9Inspector22PageFrontendDispatcher31frameClearedScheduledNavigationERKN3WTF6StringE +_ZN9Inspector22PageFrontendDispatcherC1ERNS_14FrontendRouterE +_ZN9Inspector22PageFrontendDispatcherC2ERNS_14FrontendRouterE +_ZN9Inspector22PageFrontendDispatcherdaEPv +_ZN9Inspector22PageFrontendDispatcherdlEPv +_ZN9Inspector22PageFrontendDispatchernaEm +_ZN9Inspector22PageFrontendDispatchernaEmPv +_ZN9Inspector22PageFrontendDispatchernwEm +_ZN9Inspector22PageFrontendDispatchernwEmPv +_ZN9Inspector22RemoteAutomationTarget11setIsPairedEb +_ZN9Inspector22RemoteAutomationTargetC2ERKS0_ +_ZN9Inspector22RemoteAutomationTargetC2Ev +_ZN9Inspector22RemoteAutomationTargetD0Ev +_ZN9Inspector22RemoteAutomationTargetD1Ev +_ZN9Inspector22RemoteAutomationTargetD2Ev +_ZN9Inspector22RemoteInspectionTarget13setIndicatingEb +_ZN9Inspector22RemoteInspectionTarget25setRemoteDebuggingAllowedEb +_ZN9Inspector22RemoteInspectionTarget30unpauseForInitializedInspectorEv +_ZN9Inspector22RemoteInspectionTarget34pauseWaitingForAutomaticInspectionEv +_ZN9Inspector22RemoteInspectionTargetC2ERKS0_ +_ZN9Inspector22RemoteInspectionTargetC2Ev +_ZN9Inspector22RemoteInspectionTargetD0Ev +_ZN9Inspector22RemoteInspectionTargetD1Ev +_ZN9Inspector22RemoteInspectionTargetD2Ev +_ZN9Inspector22RemoteInspectionTargetaSERKS0_ +_ZN9Inspector23CanvasBackendDispatcher11requestNodeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector23CanvasBackendDispatcher12updateShaderElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector23CanvasBackendDispatcher13stopRecordingElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector23CanvasBackendDispatcher14requestContentElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector23CanvasBackendDispatcher14resolveContextElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector23CanvasBackendDispatcher14startRecordingElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector23CanvasBackendDispatcher18requestClientNodesElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector23CanvasBackendDispatcher19requestShaderSourceElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector23CanvasBackendDispatcher20resolveCanvasContextElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector23CanvasBackendDispatcher24setShaderProgramDisabledElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector23CanvasBackendDispatcher27requestCSSCanvasClientNodesElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector23CanvasBackendDispatcher27setShaderProgramHighlightedElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector23CanvasBackendDispatcher33setRecordingAutoCaptureFrameCountElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector23CanvasBackendDispatcher6createERNS_17BackendDispatcherEPNS_30CanvasBackendDispatcherHandlerE +_ZN9Inspector23CanvasBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector23CanvasBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector23CanvasBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE +_ZN9Inspector23CanvasBackendDispatcherC1ERNS_17BackendDispatcherEPNS_30CanvasBackendDispatcherHandlerE +_ZN9Inspector23CanvasBackendDispatcherC2ERNS_17BackendDispatcherEPNS_30CanvasBackendDispatcherHandlerE +_ZN9Inspector23CanvasBackendDispatcherD0Ev +_ZN9Inspector23CanvasBackendDispatcherD1Ev +_ZN9Inspector23CanvasBackendDispatcherD2Ev +_ZN9Inspector23TargetBackendDispatcher15setPauseOnStartElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector23TargetBackendDispatcher19sendMessageToTargetElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector23TargetBackendDispatcher6createERNS_17BackendDispatcherEPNS_30TargetBackendDispatcherHandlerE +_ZN9Inspector23TargetBackendDispatcher6resumeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector23TargetBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE +_ZN9Inspector23TargetBackendDispatcherC1ERNS_17BackendDispatcherEPNS_30TargetBackendDispatcherHandlerE +_ZN9Inspector23TargetBackendDispatcherC2ERNS_17BackendDispatcherEPNS_30TargetBackendDispatcherHandlerE +_ZN9Inspector23TargetBackendDispatcherD0Ev +_ZN9Inspector23TargetBackendDispatcherD1Ev +_ZN9Inspector23TargetBackendDispatcherD2Ev +_ZN9Inspector23WorkerBackendDispatcher11initializedElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector23WorkerBackendDispatcher19sendMessageToWorkerElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector23WorkerBackendDispatcher6createERNS_17BackendDispatcherEPNS_30WorkerBackendDispatcherHandlerE +_ZN9Inspector23WorkerBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector23WorkerBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector23WorkerBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE +_ZN9Inspector23WorkerBackendDispatcherC1ERNS_17BackendDispatcherEPNS_30WorkerBackendDispatcherHandlerE +_ZN9Inspector23WorkerBackendDispatcherC2ERNS_17BackendDispatcherEPNS_30WorkerBackendDispatcherHandlerE +_ZN9Inspector23WorkerBackendDispatcherD0Ev +_ZN9Inspector23WorkerBackendDispatcherD1Ev +_ZN9Inspector23WorkerBackendDispatcherD2Ev +_ZN9Inspector24BrowserBackendDispatcher6createERNS_17BackendDispatcherEPNS_31BrowserBackendDispatcherHandlerE +_ZN9Inspector24BrowserBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector24BrowserBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector24BrowserBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE +_ZN9Inspector24BrowserBackendDispatcherC1ERNS_17BackendDispatcherEPNS_31BrowserBackendDispatcherHandlerE +_ZN9Inspector24BrowserBackendDispatcherC2ERNS_17BackendDispatcherEPNS_31BrowserBackendDispatcherHandlerE +_ZN9Inspector24BrowserBackendDispatcherD0Ev +_ZN9Inspector24BrowserBackendDispatcherD1Ev +_ZN9Inspector24BrowserBackendDispatcherD2Ev +_ZN9Inspector24CanvasFrontendDispatcher11canvasAddedEN3WTF6RefPtrINS_8Protocol6Canvas6CanvasENS1_13DumbPtrTraitsIS5_EEEE +_ZN9Inspector24CanvasFrontendDispatcher13canvasRemovedERKN3WTF6StringE +_ZN9Inspector24CanvasFrontendDispatcher14programCreatedERKN3WTF6StringES4_ +_ZN9Inspector24CanvasFrontendDispatcher14programDeletedERKN3WTF6StringE +_ZN9Inspector24CanvasFrontendDispatcher16extensionEnabledERKN3WTF6StringES4_ +_ZN9Inspector24CanvasFrontendDispatcher16recordingStartedERKN3WTF6StringENS_8Protocol9Recording9InitiatorE +_ZN9Inspector24CanvasFrontendDispatcher17recordingFinishedERKN3WTF6StringENS1_6RefPtrINS_8Protocol9Recording9RecordingENS1_13DumbPtrTraitsIS8_EEEE +_ZN9Inspector24CanvasFrontendDispatcher17recordingProgressERKN3WTF6StringENS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol9Recording5FrameEEENS1_13DumbPtrTraitsISB_EEEEi +_ZN9Inspector24CanvasFrontendDispatcher18clientNodesChangedERKN3WTF6StringE +_ZN9Inspector24CanvasFrontendDispatcher19canvasMemoryChangedERKN3WTF6StringEd +_ZN9Inspector24CanvasFrontendDispatcher27cssCanvasClientNodesChangedERKN3WTF6StringE +_ZN9Inspector24CanvasFrontendDispatcherC1ERNS_14FrontendRouterE +_ZN9Inspector24CanvasFrontendDispatcherC2ERNS_14FrontendRouterE +_ZN9Inspector24CanvasFrontendDispatcherdaEPv +_ZN9Inspector24CanvasFrontendDispatcherdlEPv +_ZN9Inspector24CanvasFrontendDispatchernaEm +_ZN9Inspector24CanvasFrontendDispatchernaEmPv +_ZN9Inspector24CanvasFrontendDispatchernwEm +_ZN9Inspector24CanvasFrontendDispatchernwEmPv +_ZN9Inspector24ConsoleBackendDispatcher13clearMessagesElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector24ConsoleBackendDispatcher18getLoggingChannelsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector24ConsoleBackendDispatcher22setLoggingChannelLevelElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector24ConsoleBackendDispatcher6createERNS_17BackendDispatcherEPNS_31ConsoleBackendDispatcherHandlerE +_ZN9Inspector24ConsoleBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector24ConsoleBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector24ConsoleBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE +_ZN9Inspector24ConsoleBackendDispatcherC1ERNS_17BackendDispatcherEPNS_31ConsoleBackendDispatcherHandlerE +_ZN9Inspector24ConsoleBackendDispatcherC2ERNS_17BackendDispatcherEPNS_31ConsoleBackendDispatcherHandlerE +_ZN9Inspector24ConsoleBackendDispatcherD0Ev +_ZN9Inspector24ConsoleBackendDispatcherD1Ev +_ZN9Inspector24ConsoleBackendDispatcherD2Ev +_ZN9Inspector24NetworkBackendDispatcher12loadResourceElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector24NetworkBackendDispatcher15addInterceptionElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector24NetworkBackendDispatcher15getResponseBodyElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector24NetworkBackendDispatcher16resolveWebSocketElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector24NetworkBackendDispatcher17interceptContinueElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector24NetworkBackendDispatcher18removeInterceptionElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector24NetworkBackendDispatcher19setExtraHTTPHeadersElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector24NetworkBackendDispatcher20interceptWithRequestElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector24NetworkBackendDispatcher21interceptWithResponseElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector24NetworkBackendDispatcher22setInterceptionEnabledElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector24NetworkBackendDispatcher24getSerializedCertificateElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector24NetworkBackendDispatcher25interceptRequestWithErrorElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector24NetworkBackendDispatcher26setResourceCachingDisabledElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector24NetworkBackendDispatcher28interceptRequestWithResponseElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector24NetworkBackendDispatcher6createERNS_17BackendDispatcherEPNS_31NetworkBackendDispatcherHandlerE +_ZN9Inspector24NetworkBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector24NetworkBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector24NetworkBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE +_ZN9Inspector24NetworkBackendDispatcherC1ERNS_17BackendDispatcherEPNS_31NetworkBackendDispatcherHandlerE +_ZN9Inspector24NetworkBackendDispatcherC2ERNS_17BackendDispatcherEPNS_31NetworkBackendDispatcherHandlerE +_ZN9Inspector24NetworkBackendDispatcherD0Ev +_ZN9Inspector24NetworkBackendDispatcherD1Ev +_ZN9Inspector24NetworkBackendDispatcherD2Ev +_ZN9Inspector24RemoteControllableTarget19setTargetIdentifierEj +_ZN9Inspector24RemoteControllableTarget4initEv +_ZN9Inspector24RemoteControllableTarget6updateEv +_ZN9Inspector24RemoteControllableTargetC2ERKS0_ +_ZN9Inspector24RemoteControllableTargetC2Ev +_ZN9Inspector24RemoteControllableTargetD0Ev +_ZN9Inspector24RemoteControllableTargetD1Ev +_ZN9Inspector24RemoteControllableTargetD2Ev +_ZN9Inspector24RemoteControllableTargetaSERKS0_ +_ZN9Inspector24RuntimeBackendDispatcher10getPreviewElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector24RuntimeBackendDispatcher10saveResultElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector24RuntimeBackendDispatcher12awaitPromiseElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector24RuntimeBackendDispatcher13getPropertiesElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector24RuntimeBackendDispatcher13releaseObjectElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector24RuntimeBackendDispatcher14callFunctionOnElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector24RuntimeBackendDispatcher14getBasicBlocksElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector24RuntimeBackendDispatcher18enableTypeProfilerElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector24RuntimeBackendDispatcher18releaseObjectGroupElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector24RuntimeBackendDispatcher19disableTypeProfilerElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector24RuntimeBackendDispatcher19setSavedResultAliasElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector24RuntimeBackendDispatcher20getCollectionEntriesElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector24RuntimeBackendDispatcher24getDisplayablePropertiesElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector24RuntimeBackendDispatcher25enableControlFlowProfilerElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector24RuntimeBackendDispatcher26disableControlFlowProfilerElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector24RuntimeBackendDispatcher36getRuntimeTypesForVariablesAtOffsetsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector24RuntimeBackendDispatcher5parseElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector24RuntimeBackendDispatcher6createERNS_17BackendDispatcherEPNS_31RuntimeBackendDispatcherHandlerE +_ZN9Inspector24RuntimeBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector24RuntimeBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector24RuntimeBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE +_ZN9Inspector24RuntimeBackendDispatcher8evaluateElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector24RuntimeBackendDispatcherC1ERNS_17BackendDispatcherEPNS_31RuntimeBackendDispatcherHandlerE +_ZN9Inspector24RuntimeBackendDispatcherC2ERNS_17BackendDispatcherEPNS_31RuntimeBackendDispatcherHandlerE +_ZN9Inspector24RuntimeBackendDispatcherD0Ev +_ZN9Inspector24RuntimeBackendDispatcherD1Ev +_ZN9Inspector24RuntimeBackendDispatcherD2Ev +_ZN9Inspector24TargetFrontendDispatcher13targetCreatedEN3WTF6RefPtrINS_8Protocol6Target10TargetInfoENS1_13DumbPtrTraitsIS5_EEEE +_ZN9Inspector24TargetFrontendDispatcher15targetDestroyedERKN3WTF6StringE +_ZN9Inspector24TargetFrontendDispatcher25dispatchMessageFromTargetERKN3WTF6StringES4_ +_ZN9Inspector24TargetFrontendDispatcher26didCommitProvisionalTargetERKN3WTF6StringES4_ +_ZN9Inspector24TargetFrontendDispatcherC1ERNS_14FrontendRouterE +_ZN9Inspector24TargetFrontendDispatcherC2ERNS_14FrontendRouterE +_ZN9Inspector24TargetFrontendDispatcherdaEPv +_ZN9Inspector24TargetFrontendDispatcherdlEPv +_ZN9Inspector24TargetFrontendDispatchernaEm +_ZN9Inspector24TargetFrontendDispatchernaEmPv +_ZN9Inspector24TargetFrontendDispatchernwEm +_ZN9Inspector24TargetFrontendDispatchernwEmPv +_ZN9Inspector24WorkerFrontendDispatcher13workerCreatedERKN3WTF6StringES4_ +_ZN9Inspector24WorkerFrontendDispatcher13workerCreatedERKN3WTF6StringES4_S4_ +_ZN9Inspector24WorkerFrontendDispatcher16workerTerminatedERKN3WTF6StringE +_ZN9Inspector24WorkerFrontendDispatcher25dispatchMessageFromWorkerERKN3WTF6StringES4_ +_ZN9Inspector24WorkerFrontendDispatcherC1ERNS_14FrontendRouterE +_ZN9Inspector24WorkerFrontendDispatcherC2ERNS_14FrontendRouterE +_ZN9Inspector24WorkerFrontendDispatcherdaEPv +_ZN9Inspector24WorkerFrontendDispatcherdlEPv +_ZN9Inspector24WorkerFrontendDispatchernaEm +_ZN9Inspector24WorkerFrontendDispatchernaEmPv +_ZN9Inspector24WorkerFrontendDispatchernwEm +_ZN9Inspector24WorkerFrontendDispatchernwEmPv +_ZN9Inspector25BrowserFrontendDispatcher17extensionsEnabledEN3WTF6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Browser9ExtensionEEENS1_13DumbPtrTraitsIS8_EEEE +_ZN9Inspector25BrowserFrontendDispatcher18extensionsDisabledEN3WTF6RefPtrINS1_8JSONImpl7ArrayOfINS1_6StringEEENS1_13DumbPtrTraitsIS6_EEEE +_ZN9Inspector25BrowserFrontendDispatcherC1ERNS_14FrontendRouterE +_ZN9Inspector25BrowserFrontendDispatcherC2ERNS_14FrontendRouterE +_ZN9Inspector25BrowserFrontendDispatcherdaEPv +_ZN9Inspector25BrowserFrontendDispatcherdlEPv +_ZN9Inspector25BrowserFrontendDispatchernaEm +_ZN9Inspector25BrowserFrontendDispatchernaEmPv +_ZN9Inspector25BrowserFrontendDispatchernwEm +_ZN9Inspector25BrowserFrontendDispatchernwEmPv +_ZN9Inspector25ConsoleFrontendDispatcher12heapSnapshotEdRKN3WTF6StringEPS3_ +_ZN9Inspector25ConsoleFrontendDispatcher12messageAddedEN3WTF6RefPtrINS_8Protocol7Console14ConsoleMessageENS1_13DumbPtrTraitsIS5_EEEE +_ZN9Inspector25ConsoleFrontendDispatcher15messagesClearedEv +_ZN9Inspector25ConsoleFrontendDispatcher25messageRepeatCountUpdatedEi +_ZN9Inspector25ConsoleFrontendDispatcherC1ERNS_14FrontendRouterE +_ZN9Inspector25ConsoleFrontendDispatcherC2ERNS_14FrontendRouterE +_ZN9Inspector25ConsoleFrontendDispatcherdaEPv +_ZN9Inspector25ConsoleFrontendDispatcherdlEPv +_ZN9Inspector25ConsoleFrontendDispatchernaEm +_ZN9Inspector25ConsoleFrontendDispatchernaEmPv +_ZN9Inspector25ConsoleFrontendDispatchernwEm +_ZN9Inspector25ConsoleFrontendDispatchernwEmPv +_ZN9Inspector25DatabaseBackendDispatcher10executeSQLElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector25DatabaseBackendDispatcher21getDatabaseTableNamesElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector25DatabaseBackendDispatcher6createERNS_17BackendDispatcherEPNS_32DatabaseBackendDispatcherHandlerE +_ZN9Inspector25DatabaseBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector25DatabaseBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector25DatabaseBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE +_ZN9Inspector25DatabaseBackendDispatcherC1ERNS_17BackendDispatcherEPNS_32DatabaseBackendDispatcherHandlerE +_ZN9Inspector25DatabaseBackendDispatcherC2ERNS_17BackendDispatcherEPNS_32DatabaseBackendDispatcherHandlerE +_ZN9Inspector25DatabaseBackendDispatcherD0Ev +_ZN9Inspector25DatabaseBackendDispatcherD1Ev +_ZN9Inspector25DatabaseBackendDispatcherD2Ev +_ZN9Inspector25DebuggerBackendDispatcher13setBreakpointElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector25DebuggerBackendDispatcher15getScriptSourceElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector25DebuggerBackendDispatcher15searchInContentElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector25DebuggerBackendDispatcher16removeBreakpointElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector25DebuggerBackendDispatcher17setOverlayMessageElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector25DebuggerBackendDispatcher18continueToLocationElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector25DebuggerBackendDispatcher18getFunctionDetailsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector25DebuggerBackendDispatcher18setBreakpointByUrlElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector25DebuggerBackendDispatcher19evaluateOnCallFrameElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector25DebuggerBackendDispatcher20setBreakpointsActiveElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector25DebuggerBackendDispatcher20setPauseOnAssertionsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector25DebuggerBackendDispatcher20setPauseOnExceptionsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector25DebuggerBackendDispatcher20setPauseOnMicrotasksElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector25DebuggerBackendDispatcher20setShouldBlackboxURLElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector25DebuggerBackendDispatcher23setAsyncStackTraceDepthElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector25DebuggerBackendDispatcher24continueUntilNextRunLoopElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector25DebuggerBackendDispatcher26setPauseForInternalScriptsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector25DebuggerBackendDispatcher28setPauseOnDebuggerStatementsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector25DebuggerBackendDispatcher5pauseElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector25DebuggerBackendDispatcher6createERNS_17BackendDispatcherEPNS_32DebuggerBackendDispatcherHandlerE +_ZN9Inspector25DebuggerBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector25DebuggerBackendDispatcher6resumeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector25DebuggerBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector25DebuggerBackendDispatcher7stepOutElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector25DebuggerBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE +_ZN9Inspector25DebuggerBackendDispatcher8stepIntoElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector25DebuggerBackendDispatcher8stepNextElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector25DebuggerBackendDispatcher8stepOverElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector25DebuggerBackendDispatcherC1ERNS_17BackendDispatcherEPNS_32DebuggerBackendDispatcherHandlerE +_ZN9Inspector25DebuggerBackendDispatcherC2ERNS_17BackendDispatcherEPNS_32DebuggerBackendDispatcherHandlerE +_ZN9Inspector25DebuggerBackendDispatcherD0Ev +_ZN9Inspector25DebuggerBackendDispatcherD1Ev +_ZN9Inspector25DebuggerBackendDispatcherD2Ev +_ZN9Inspector25NetworkFrontendDispatcher12dataReceivedERKN3WTF6StringEdii +_ZN9Inspector25NetworkFrontendDispatcher13loadingFailedERKN3WTF6StringEdS4_PKb +_ZN9Inspector25NetworkFrontendDispatcher15loadingFinishedERKN3WTF6StringEdPS3_NS1_6RefPtrINS_8Protocol7Network7MetricsENS1_13DumbPtrTraitsIS9_EEEE +_ZN9Inspector25NetworkFrontendDispatcher15webSocketClosedERKN3WTF6StringEd +_ZN9Inspector25NetworkFrontendDispatcher16responseReceivedERKN3WTF6StringES4_S4_dNS_8Protocol4Page12ResourceTypeENS1_6RefPtrINS5_7Network8ResponseENS1_13DumbPtrTraitsISA_EEEE +_ZN9Inspector25NetworkFrontendDispatcher16webSocketCreatedERKN3WTF6StringES4_ +_ZN9Inspector25NetworkFrontendDispatcher17requestWillBeSentERKN3WTF6StringES4_S4_S4_NS1_6RefPtrINS_8Protocol7Network7RequestENS1_13DumbPtrTraitsIS8_EEEEddNS5_INS7_9InitiatorENS9_ISC_EEEENS5_INS7_8ResponseENS9_ISF_EEEEPNS6_4Page12ResourceTypeEPS3_ +_ZN9Inspector25NetworkFrontendDispatcher18requestInterceptedERKN3WTF6StringENS1_6RefPtrINS_8Protocol7Network7RequestENS1_13DumbPtrTraitsIS8_EEEE +_ZN9Inspector25NetworkFrontendDispatcher18webSocketFrameSentERKN3WTF6StringEdNS1_6RefPtrINS_8Protocol7Network14WebSocketFrameENS1_13DumbPtrTraitsIS8_EEEE +_ZN9Inspector25NetworkFrontendDispatcher19responseInterceptedERKN3WTF6StringENS1_6RefPtrINS_8Protocol7Network8ResponseENS1_13DumbPtrTraitsIS8_EEEE +_ZN9Inspector25NetworkFrontendDispatcher19webSocketFrameErrorERKN3WTF6StringEdS4_ +_ZN9Inspector25NetworkFrontendDispatcher22webSocketFrameReceivedERKN3WTF6StringEdNS1_6RefPtrINS_8Protocol7Network14WebSocketFrameENS1_13DumbPtrTraitsIS8_EEEE +_ZN9Inspector25NetworkFrontendDispatcher28requestServedFromMemoryCacheERKN3WTF6StringES4_S4_S4_dNS1_6RefPtrINS_8Protocol7Network9InitiatorENS1_13DumbPtrTraitsIS8_EEEENS5_INS7_14CachedResourceENS9_ISC_EEEE +_ZN9Inspector25NetworkFrontendDispatcher33webSocketWillSendHandshakeRequestERKN3WTF6StringEddNS1_6RefPtrINS_8Protocol7Network16WebSocketRequestENS1_13DumbPtrTraitsIS8_EEEE +_ZN9Inspector25NetworkFrontendDispatcher34webSocketHandshakeResponseReceivedERKN3WTF6StringEdNS1_6RefPtrINS_8Protocol7Network17WebSocketResponseENS1_13DumbPtrTraitsIS8_EEEE +_ZN9Inspector25NetworkFrontendDispatcherC1ERNS_14FrontendRouterE +_ZN9Inspector25NetworkFrontendDispatcherC2ERNS_14FrontendRouterE +_ZN9Inspector25NetworkFrontendDispatcherdaEPv +_ZN9Inspector25NetworkFrontendDispatcherdlEPv +_ZN9Inspector25NetworkFrontendDispatchernaEm +_ZN9Inspector25NetworkFrontendDispatchernaEmPv +_ZN9Inspector25NetworkFrontendDispatchernwEm +_ZN9Inspector25NetworkFrontendDispatchernwEmPv +_ZN9Inspector25RuntimeFrontendDispatcher23executionContextCreatedEN3WTF6RefPtrINS_8Protocol7Runtime27ExecutionContextDescriptionENS1_13DumbPtrTraitsIS5_EEEE +_ZN9Inspector25RuntimeFrontendDispatcherC1ERNS_14FrontendRouterE +_ZN9Inspector25RuntimeFrontendDispatcherC2ERNS_14FrontendRouterE +_ZN9Inspector25RuntimeFrontendDispatcherdaEPv +_ZN9Inspector25RuntimeFrontendDispatcherdlEPv +_ZN9Inspector25RuntimeFrontendDispatchernaEm +_ZN9Inspector25RuntimeFrontendDispatchernaEmPv +_ZN9Inspector25RuntimeFrontendDispatchernwEm +_ZN9Inspector25RuntimeFrontendDispatchernwEmPv +_ZN9Inspector25TimelineBackendDispatcher14setInstrumentsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector25TimelineBackendDispatcher21setAutoCaptureEnabledElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector25TimelineBackendDispatcher4stopElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector25TimelineBackendDispatcher5startElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector25TimelineBackendDispatcher6createERNS_17BackendDispatcherEPNS_32TimelineBackendDispatcherHandlerE +_ZN9Inspector25TimelineBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector25TimelineBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector25TimelineBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE +_ZN9Inspector25TimelineBackendDispatcherC1ERNS_17BackendDispatcherEPNS_32TimelineBackendDispatcherHandlerE +_ZN9Inspector25TimelineBackendDispatcherC2ERNS_17BackendDispatcherEPNS_32TimelineBackendDispatcherHandlerE +_ZN9Inspector25TimelineBackendDispatcherD0Ev +_ZN9Inspector25TimelineBackendDispatcherD1Ev +_ZN9Inspector25TimelineBackendDispatcherD2Ev +_ZN9Inspector26AnimationBackendDispatcher12stopTrackingElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector26AnimationBackendDispatcher13startTrackingElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector26AnimationBackendDispatcher16resolveAnimationElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector26AnimationBackendDispatcher19requestEffectTargetElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector26AnimationBackendDispatcher6createERNS_17BackendDispatcherEPNS_33AnimationBackendDispatcherHandlerE +_ZN9Inspector26AnimationBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector26AnimationBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector26AnimationBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE +_ZN9Inspector26AnimationBackendDispatcherC1ERNS_17BackendDispatcherEPNS_33AnimationBackendDispatcherHandlerE +_ZN9Inspector26AnimationBackendDispatcherC2ERNS_17BackendDispatcherEPNS_33AnimationBackendDispatcherHandlerE +_ZN9Inspector26AnimationBackendDispatcherD0Ev +_ZN9Inspector26AnimationBackendDispatcherD1Ev +_ZN9Inspector26AnimationBackendDispatcherD2Ev +_ZN9Inspector26DatabaseFrontendDispatcher11addDatabaseEN3WTF6RefPtrINS_8Protocol8Database8DatabaseENS1_13DumbPtrTraitsIS5_EEEE +_ZN9Inspector26DatabaseFrontendDispatcherC1ERNS_14FrontendRouterE +_ZN9Inspector26DatabaseFrontendDispatcherC2ERNS_14FrontendRouterE +_ZN9Inspector26DatabaseFrontendDispatcherdaEPv +_ZN9Inspector26DatabaseFrontendDispatcherdlEPv +_ZN9Inspector26DatabaseFrontendDispatchernaEm +_ZN9Inspector26DatabaseFrontendDispatchernaEmPv +_ZN9Inspector26DatabaseFrontendDispatchernwEm +_ZN9Inspector26DatabaseFrontendDispatchernwEmPv +_ZN9Inspector26DebuggerFrontendDispatcher12scriptParsedERKN3WTF6StringES4_iiiiPKbPS3_S7_S6_ +_ZN9Inspector26DebuggerFrontendDispatcher14didSampleProbeEN3WTF6RefPtrINS_8Protocol8Debugger11ProbeSampleENS1_13DumbPtrTraitsIS5_EEEE +_ZN9Inspector26DebuggerFrontendDispatcher18breakpointResolvedERKN3WTF6StringENS1_6RefPtrINS_8Protocol8Debugger8LocationENS1_13DumbPtrTraitsIS8_EEEE +_ZN9Inspector26DebuggerFrontendDispatcher19globalObjectClearedEv +_ZN9Inspector26DebuggerFrontendDispatcher19scriptFailedToParseERKN3WTF6StringES4_iiS4_ +_ZN9Inspector26DebuggerFrontendDispatcher25playBreakpointActionSoundEi +_ZN9Inspector26DebuggerFrontendDispatcher6pausedEN3WTF6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol8Debugger9CallFrameEEENS1_13DumbPtrTraitsIS8_EEEENS0_6ReasonENS2_INS3_6ObjectENS9_ISD_EEEENS2_INS5_7Console10StackTraceENS9_ISH_EEEE +_ZN9Inspector26DebuggerFrontendDispatcher7resumedEv +_ZN9Inspector26DebuggerFrontendDispatcherC1ERNS_14FrontendRouterE +_ZN9Inspector26DebuggerFrontendDispatcherC2ERNS_14FrontendRouterE +_ZN9Inspector26DebuggerFrontendDispatcherdaEPv +_ZN9Inspector26DebuggerFrontendDispatcherdlEPv +_ZN9Inspector26DebuggerFrontendDispatchernaEm +_ZN9Inspector26DebuggerFrontendDispatchernaEmPv +_ZN9Inspector26DebuggerFrontendDispatchernwEm +_ZN9Inspector26DebuggerFrontendDispatchernwEmPv +_ZN9Inspector26InspectorBackendDispatcher11initializedElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector26InspectorBackendDispatcher6createERNS_17BackendDispatcherEPNS_33InspectorBackendDispatcherHandlerE +_ZN9Inspector26InspectorBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector26InspectorBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector26InspectorBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE +_ZN9Inspector26InspectorBackendDispatcherC1ERNS_17BackendDispatcherEPNS_33InspectorBackendDispatcherHandlerE +_ZN9Inspector26InspectorBackendDispatcherC2ERNS_17BackendDispatcherEPNS_33InspectorBackendDispatcherHandlerE +_ZN9Inspector26InspectorBackendDispatcherD0Ev +_ZN9Inspector26InspectorBackendDispatcherD1Ev +_ZN9Inspector26InspectorBackendDispatcherD2Ev +_ZN9Inspector26LayerTreeBackendDispatcher13layersForNodeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector26LayerTreeBackendDispatcher26reasonsForCompositingLayerElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector26LayerTreeBackendDispatcher6createERNS_17BackendDispatcherEPNS_33LayerTreeBackendDispatcherHandlerE +_ZN9Inspector26LayerTreeBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector26LayerTreeBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector26LayerTreeBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE +_ZN9Inspector26LayerTreeBackendDispatcherC1ERNS_17BackendDispatcherEPNS_33LayerTreeBackendDispatcherHandlerE +_ZN9Inspector26LayerTreeBackendDispatcherC2ERNS_17BackendDispatcherEPNS_33LayerTreeBackendDispatcherHandlerE +_ZN9Inspector26LayerTreeBackendDispatcherD0Ev +_ZN9Inspector26LayerTreeBackendDispatcherD1Ev +_ZN9Inspector26LayerTreeBackendDispatcherD2Ev +_ZN9Inspector26TimelineFrontendDispatcher13eventRecordedEN3WTF6RefPtrINS_8Protocol8Timeline13TimelineEventENS1_13DumbPtrTraitsIS5_EEEE +_ZN9Inspector26TimelineFrontendDispatcher16recordingStartedEd +_ZN9Inspector26TimelineFrontendDispatcher16recordingStoppedEd +_ZN9Inspector26TimelineFrontendDispatcher18autoCaptureStartedEv +_ZN9Inspector26TimelineFrontendDispatcher26programmaticCaptureStartedEv +_ZN9Inspector26TimelineFrontendDispatcher26programmaticCaptureStoppedEv +_ZN9Inspector26TimelineFrontendDispatcherC1ERNS_14FrontendRouterE +_ZN9Inspector26TimelineFrontendDispatcherC2ERNS_14FrontendRouterE +_ZN9Inspector26TimelineFrontendDispatcherdaEPv +_ZN9Inspector26TimelineFrontendDispatcherdlEPv +_ZN9Inspector26TimelineFrontendDispatchernaEm +_ZN9Inspector26TimelineFrontendDispatchernaEmPv +_ZN9Inspector26TimelineFrontendDispatchernwEm +_ZN9Inspector26TimelineFrontendDispatchernwEmPv +_ZN9Inspector27AnimationFrontendDispatcher11nameChangedERKN3WTF6StringEPS3_ +_ZN9Inspector27AnimationFrontendDispatcher13effectChangedERKN3WTF6StringENS1_6RefPtrINS_8Protocol9Animation6EffectENS1_13DumbPtrTraitsIS8_EEEE +_ZN9Inspector27AnimationFrontendDispatcher13targetChangedERKN3WTF6StringE +_ZN9Inspector27AnimationFrontendDispatcher13trackingStartEd +_ZN9Inspector27AnimationFrontendDispatcher14trackingUpdateEdN3WTF6RefPtrINS_8Protocol9Animation14TrackingUpdateENS1_13DumbPtrTraitsIS5_EEEE +_ZN9Inspector27AnimationFrontendDispatcher16animationCreatedEN3WTF6RefPtrINS_8Protocol9Animation9AnimationENS1_13DumbPtrTraitsIS5_EEEE +_ZN9Inspector27AnimationFrontendDispatcher16trackingCompleteEd +_ZN9Inspector27AnimationFrontendDispatcher18animationDestroyedERKN3WTF6StringE +_ZN9Inspector27AnimationFrontendDispatcherC1ERNS_14FrontendRouterE +_ZN9Inspector27AnimationFrontendDispatcherC2ERNS_14FrontendRouterE +_ZN9Inspector27AnimationFrontendDispatcherdaEPv +_ZN9Inspector27AnimationFrontendDispatcherdlEPv +_ZN9Inspector27AnimationFrontendDispatchernaEm +_ZN9Inspector27AnimationFrontendDispatchernaEmPv +_ZN9Inspector27AnimationFrontendDispatchernwEm +_ZN9Inspector27AnimationFrontendDispatchernwEmPv +_ZN9Inspector27CSSBackendDispatcherHandlerC2ERKS0_ +_ZN9Inspector27CSSBackendDispatcherHandlerC2Ev +_ZN9Inspector27CSSBackendDispatcherHandlerD0Ev +_ZN9Inspector27CSSBackendDispatcherHandlerD1Ev +_ZN9Inspector27CSSBackendDispatcherHandlerD2Ev +_ZN9Inspector27DOMBackendDispatcherHandlerC2ERKS0_ +_ZN9Inspector27DOMBackendDispatcherHandlerC2Ev +_ZN9Inspector27DOMBackendDispatcherHandlerD0Ev +_ZN9Inspector27DOMBackendDispatcherHandlerD1Ev +_ZN9Inspector27DOMBackendDispatcherHandlerD2Ev +_ZN9Inspector27DOMStorageBackendDispatcher17setDOMStorageItemElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector27DOMStorageBackendDispatcher18getDOMStorageItemsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector27DOMStorageBackendDispatcher20clearDOMStorageItemsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector27DOMStorageBackendDispatcher20removeDOMStorageItemElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector27DOMStorageBackendDispatcher6createERNS_17BackendDispatcherEPNS_34DOMStorageBackendDispatcherHandlerE +_ZN9Inspector27DOMStorageBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector27DOMStorageBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector27DOMStorageBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE +_ZN9Inspector27DOMStorageBackendDispatcherC1ERNS_17BackendDispatcherEPNS_34DOMStorageBackendDispatcherHandlerE +_ZN9Inspector27DOMStorageBackendDispatcherC2ERNS_17BackendDispatcherEPNS_34DOMStorageBackendDispatcherHandlerE +_ZN9Inspector27DOMStorageBackendDispatcherD0Ev +_ZN9Inspector27DOMStorageBackendDispatcherD1Ev +_ZN9Inspector27DOMStorageBackendDispatcherD2Ev +_ZN9Inspector27InspectorFrontendDispatcher20activateExtraDomainsEN3WTF6RefPtrINS1_8JSONImpl7ArrayOfINS1_6StringEEENS1_13DumbPtrTraitsIS6_EEEE +_ZN9Inspector27InspectorFrontendDispatcher25evaluateForTestInFrontendERKN3WTF6StringE +_ZN9Inspector27InspectorFrontendDispatcher7inspectEN3WTF6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsIS5_EEEENS2_INS1_8JSONImpl6ObjectENS6_ISA_EEEE +_ZN9Inspector27InspectorFrontendDispatcherC1ERNS_14FrontendRouterE +_ZN9Inspector27InspectorFrontendDispatcherC2ERNS_14FrontendRouterE +_ZN9Inspector27InspectorFrontendDispatcherdaEPv +_ZN9Inspector27InspectorFrontendDispatcherdlEPv +_ZN9Inspector27InspectorFrontendDispatchernaEm +_ZN9Inspector27InspectorFrontendDispatchernaEmPv +_ZN9Inspector27InspectorFrontendDispatchernwEm +_ZN9Inspector27InspectorFrontendDispatchernwEmPv +_ZN9Inspector27LayerTreeFrontendDispatcher18layerTreeDidChangeEv +_ZN9Inspector27LayerTreeFrontendDispatcherC1ERNS_14FrontendRouterE +_ZN9Inspector27LayerTreeFrontendDispatcherC2ERNS_14FrontendRouterE +_ZN9Inspector27LayerTreeFrontendDispatcherdaEPv +_ZN9Inspector27LayerTreeFrontendDispatcherdlEPv +_ZN9Inspector27LayerTreeFrontendDispatchernaEm +_ZN9Inspector27LayerTreeFrontendDispatchernaEmPv +_ZN9Inspector27LayerTreeFrontendDispatchernwEm +_ZN9Inspector27LayerTreeFrontendDispatchernwEmPv +_ZN9Inspector27PerGlobalObjectWrapperWorld10addWrapperEPN3JSC14JSGlobalObjectEPNS1_8JSObjectE +_ZN9Inspector27PerGlobalObjectWrapperWorld10getWrapperEPN3JSC14JSGlobalObjectE +_ZN9Inspector27PerGlobalObjectWrapperWorld16clearAllWrappersEv +_ZN9Inspector27PerGlobalObjectWrapperWorldC1ERKS0_ +_ZN9Inspector27PerGlobalObjectWrapperWorldC1Ev +_ZN9Inspector27PerGlobalObjectWrapperWorldC2ERKS0_ +_ZN9Inspector27PerGlobalObjectWrapperWorldC2Ev +_ZN9Inspector27PerGlobalObjectWrapperWorldD1Ev +_ZN9Inspector27PerGlobalObjectWrapperWorldD2Ev +_ZN9Inspector27PerGlobalObjectWrapperWorldaSERKS0_ +_ZN9Inspector28DOMDebuggerBackendDispatcher16setDOMBreakpointElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector28DOMDebuggerBackendDispatcher16setURLBreakpointElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector28DOMDebuggerBackendDispatcher16setXHRBreakpointElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector28DOMDebuggerBackendDispatcher18setEventBreakpointElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector28DOMDebuggerBackendDispatcher19removeDOMBreakpointElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector28DOMDebuggerBackendDispatcher19removeURLBreakpointElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector28DOMDebuggerBackendDispatcher19removeXHRBreakpointElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector28DOMDebuggerBackendDispatcher21removeEventBreakpointElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector28DOMDebuggerBackendDispatcher26setEventListenerBreakpointElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector28DOMDebuggerBackendDispatcher28setInstrumentationBreakpointElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector28DOMDebuggerBackendDispatcher29removeEventListenerBreakpointElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector28DOMDebuggerBackendDispatcher31removeInstrumentationBreakpointElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector28DOMDebuggerBackendDispatcher6createERNS_17BackendDispatcherEPNS_35DOMDebuggerBackendDispatcherHandlerE +_ZN9Inspector28DOMDebuggerBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE +_ZN9Inspector28DOMDebuggerBackendDispatcherC1ERNS_17BackendDispatcherEPNS_35DOMDebuggerBackendDispatcherHandlerE +_ZN9Inspector28DOMDebuggerBackendDispatcherC2ERNS_17BackendDispatcherEPNS_35DOMDebuggerBackendDispatcherHandlerE +_ZN9Inspector28DOMDebuggerBackendDispatcherD0Ev +_ZN9Inspector28DOMDebuggerBackendDispatcherD1Ev +_ZN9Inspector28DOMDebuggerBackendDispatcherD2Ev +_ZN9Inspector28DOMStorageFrontendDispatcher19domStorageItemAddedEN3WTF6RefPtrINS_8Protocol10DOMStorage9StorageIdENS1_13DumbPtrTraitsIS5_EEEERKNS1_6StringESB_ +_ZN9Inspector28DOMStorageFrontendDispatcher21domStorageItemRemovedEN3WTF6RefPtrINS_8Protocol10DOMStorage9StorageIdENS1_13DumbPtrTraitsIS5_EEEERKNS1_6StringE +_ZN9Inspector28DOMStorageFrontendDispatcher21domStorageItemUpdatedEN3WTF6RefPtrINS_8Protocol10DOMStorage9StorageIdENS1_13DumbPtrTraitsIS5_EEEERKNS1_6StringESB_SB_ +_ZN9Inspector28DOMStorageFrontendDispatcher22domStorageItemsClearedEN3WTF6RefPtrINS_8Protocol10DOMStorage9StorageIdENS1_13DumbPtrTraitsIS5_EEEE +_ZN9Inspector28DOMStorageFrontendDispatcherC1ERNS_14FrontendRouterE +_ZN9Inspector28DOMStorageFrontendDispatcherC2ERNS_14FrontendRouterE +_ZN9Inspector28DOMStorageFrontendDispatcherdaEPv +_ZN9Inspector28DOMStorageFrontendDispatcherdlEPv +_ZN9Inspector28DOMStorageFrontendDispatchernaEm +_ZN9Inspector28DOMStorageFrontendDispatchernaEmPv +_ZN9Inspector28DOMStorageFrontendDispatchernwEm +_ZN9Inspector28DOMStorageFrontendDispatchernwEmPv +_ZN9Inspector28HeapBackendDispatcherHandlerC2ERKS0_ +_ZN9Inspector28HeapBackendDispatcherHandlerC2Ev +_ZN9Inspector28HeapBackendDispatcherHandlerD0Ev +_ZN9Inspector28HeapBackendDispatcherHandlerD1Ev +_ZN9Inspector28HeapBackendDispatcherHandlerD2Ev +_ZN9Inspector28InspectorScriptProfilerAgent12stopTrackingERN3WTF6StringE +_ZN9Inspector28InspectorScriptProfilerAgent13startTrackingERN3WTF6StringEPKb +_ZN9Inspector28InspectorScriptProfilerAgent16trackingCompleteEv +_ZN9Inspector28InspectorScriptProfilerAgent17didEvaluateScriptEN3WTF7SecondsEN3JSC15ProfilingReasonE +_ZN9Inspector28InspectorScriptProfilerAgent18willEvaluateScriptEv +_ZN9Inspector28InspectorScriptProfilerAgent26programmaticCaptureStartedEv +_ZN9Inspector28InspectorScriptProfilerAgent26programmaticCaptureStoppedEv +_ZN9Inspector28InspectorScriptProfilerAgent27didCreateFrontendAndBackendEPNS_14FrontendRouterEPNS_17BackendDispatcherE +_ZN9Inspector28InspectorScriptProfilerAgent29stopSamplingWhenDisconnectingEv +_ZN9Inspector28InspectorScriptProfilerAgent29willDestroyFrontendAndBackendENS_16DisconnectReasonE +_ZN9Inspector28InspectorScriptProfilerAgent8addEventEN3WTF7SecondsES2_N3JSC15ProfilingReasonE +_ZN9Inspector28InspectorScriptProfilerAgentC1ERNS_12AgentContextE +_ZN9Inspector28InspectorScriptProfilerAgentC2ERNS_12AgentContextE +_ZN9Inspector28InspectorScriptProfilerAgentD0Ev +_ZN9Inspector28InspectorScriptProfilerAgentD1Ev +_ZN9Inspector28InspectorScriptProfilerAgentD2Ev +_ZN9Inspector28InspectorScriptProfilerAgentdaEPv +_ZN9Inspector28InspectorScriptProfilerAgentdlEPv +_ZN9Inspector28InspectorScriptProfilerAgentnaEm +_ZN9Inspector28InspectorScriptProfilerAgentnaEmPv +_ZN9Inspector28InspectorScriptProfilerAgentnwEm +_ZN9Inspector28InspectorScriptProfilerAgentnwEm10NotNullTagPv +_ZN9Inspector28InspectorScriptProfilerAgentnwEmPv +_ZN9Inspector28PageBackendDispatcherHandlerC2ERKS0_ +_ZN9Inspector28PageBackendDispatcherHandlerC2Ev +_ZN9Inspector28PageBackendDispatcherHandlerD0Ev +_ZN9Inspector28PageBackendDispatcherHandlerD1Ev +_ZN9Inspector28PageBackendDispatcherHandlerD2Ev +_ZN9Inspector29AuditBackendDispatcherHandlerC2ERKS0_ +_ZN9Inspector29AuditBackendDispatcherHandlerC2Ev +_ZN9Inspector29AuditBackendDispatcherHandlerD0Ev +_ZN9Inspector29AuditBackendDispatcherHandlerD1Ev +_ZN9Inspector29AuditBackendDispatcherHandlerD2Ev +_ZN9Inspector29SupplementalBackendDispatcherC2ERNS_17BackendDispatcherE +_ZN9Inspector29SupplementalBackendDispatcherD0Ev +_ZN9Inspector29SupplementalBackendDispatcherD1Ev +_ZN9Inspector29SupplementalBackendDispatcherD2Ev +_ZN9Inspector30CanvasBackendDispatcherHandlerC2ERKS0_ +_ZN9Inspector30CanvasBackendDispatcherHandlerC2Ev +_ZN9Inspector30CanvasBackendDispatcherHandlerD0Ev +_ZN9Inspector30CanvasBackendDispatcherHandlerD1Ev +_ZN9Inspector30CanvasBackendDispatcherHandlerD2Ev +_ZN9Inspector30TargetBackendDispatcherHandlerC2ERKS0_ +_ZN9Inspector30TargetBackendDispatcherHandlerC2Ev +_ZN9Inspector30TargetBackendDispatcherHandlerD0Ev +_ZN9Inspector30TargetBackendDispatcherHandlerD1Ev +_ZN9Inspector30TargetBackendDispatcherHandlerD2Ev +_ZN9Inspector30WorkerBackendDispatcherHandlerC2ERKS0_ +_ZN9Inspector30WorkerBackendDispatcherHandlerC2Ev +_ZN9Inspector30WorkerBackendDispatcherHandlerD0Ev +_ZN9Inspector30WorkerBackendDispatcherHandlerD1Ev +_ZN9Inspector30WorkerBackendDispatcherHandlerD2Ev +_ZN9Inspector31BrowserBackendDispatcherHandlerC2ERKS0_ +_ZN9Inspector31BrowserBackendDispatcherHandlerC2Ev +_ZN9Inspector31BrowserBackendDispatcherHandlerD0Ev +_ZN9Inspector31BrowserBackendDispatcherHandlerD1Ev +_ZN9Inspector31BrowserBackendDispatcherHandlerD2Ev +_ZN9Inspector31ConsoleBackendDispatcherHandlerC2ERKS0_ +_ZN9Inspector31ConsoleBackendDispatcherHandlerC2Ev +_ZN9Inspector31ConsoleBackendDispatcherHandlerD0Ev +_ZN9Inspector31ConsoleBackendDispatcherHandlerD1Ev +_ZN9Inspector31ConsoleBackendDispatcherHandlerD2Ev +_ZN9Inspector31NetworkBackendDispatcherHandler20LoadResourceCallback11sendSuccessERKN3WTF6StringES5_i +_ZN9Inspector31NetworkBackendDispatcherHandler20LoadResourceCallbackC1EON3WTF3RefINS_17BackendDispatcherENS2_13DumbPtrTraitsIS4_EEEEi +_ZN9Inspector31NetworkBackendDispatcherHandler20LoadResourceCallbackC2EON3WTF3RefINS_17BackendDispatcherENS2_13DumbPtrTraitsIS4_EEEEi +_ZN9Inspector31NetworkBackendDispatcherHandler20LoadResourceCallbackD1Ev +_ZN9Inspector31NetworkBackendDispatcherHandler20LoadResourceCallbackD2Ev +_ZN9Inspector31NetworkBackendDispatcherHandlerC2ERKS0_ +_ZN9Inspector31NetworkBackendDispatcherHandlerC2Ev +_ZN9Inspector31NetworkBackendDispatcherHandlerD0Ev +_ZN9Inspector31NetworkBackendDispatcherHandlerD1Ev +_ZN9Inspector31NetworkBackendDispatcherHandlerD2Ev +_ZN9Inspector31NetworkBackendDispatcherHandleraSERKS0_ +_ZN9Inspector31RuntimeBackendDispatcherHandler20AwaitPromiseCallback11sendSuccessEON3WTF6RefPtrINS_8Protocol7Runtime12RemoteObjectENS2_13DumbPtrTraitsIS6_EEEERNS2_8OptionalIbEERNSB_IiEE +_ZN9Inspector31RuntimeBackendDispatcherHandler20AwaitPromiseCallbackC1EON3WTF3RefINS_17BackendDispatcherENS2_13DumbPtrTraitsIS4_EEEEi +_ZN9Inspector31RuntimeBackendDispatcherHandler20AwaitPromiseCallbackC2EON3WTF3RefINS_17BackendDispatcherENS2_13DumbPtrTraitsIS4_EEEEi +_ZN9Inspector31RuntimeBackendDispatcherHandlerC2ERKS0_ +_ZN9Inspector31RuntimeBackendDispatcherHandlerC2Ev +_ZN9Inspector31RuntimeBackendDispatcherHandlerD0Ev +_ZN9Inspector31RuntimeBackendDispatcherHandlerD1Ev +_ZN9Inspector31RuntimeBackendDispatcherHandlerD2Ev +_ZN9Inspector31ScriptProfilerBackendDispatcher12stopTrackingElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector31ScriptProfilerBackendDispatcher13startTrackingElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector31ScriptProfilerBackendDispatcher6createERNS_17BackendDispatcherEPNS_38ScriptProfilerBackendDispatcherHandlerE +_ZN9Inspector31ScriptProfilerBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE +_ZN9Inspector31ScriptProfilerBackendDispatcherC1ERNS_17BackendDispatcherEPNS_38ScriptProfilerBackendDispatcherHandlerE +_ZN9Inspector31ScriptProfilerBackendDispatcherC2ERNS_17BackendDispatcherEPNS_38ScriptProfilerBackendDispatcherHandlerE +_ZN9Inspector31ScriptProfilerBackendDispatcherD0Ev +_ZN9Inspector31ScriptProfilerBackendDispatcherD1Ev +_ZN9Inspector31ScriptProfilerBackendDispatcherD2Ev +_ZN9Inspector31createScriptCallStackForConsoleEPN3JSC14JSGlobalObjectEm +_ZN9Inspector31createScriptCallStackForConsoleEPN3JSC9ExecStateEm +_ZN9Inspector32DatabaseBackendDispatcherHandler18ExecuteSQLCallback11sendSuccessEON3WTF6RefPtrINS2_8JSONImpl7ArrayOfINS2_6StringEEENS2_13DumbPtrTraitsIS7_EEEEONS3_INS5_INS4_5ValueEEENS8_ISD_EEEEONS3_INS_8Protocol8Database5ErrorENS8_ISJ_EEEE +_ZN9Inspector32DatabaseBackendDispatcherHandler18ExecuteSQLCallbackC1EON3WTF3RefINS_17BackendDispatcherENS2_13DumbPtrTraitsIS4_EEEEi +_ZN9Inspector32DatabaseBackendDispatcherHandler18ExecuteSQLCallbackC2EON3WTF3RefINS_17BackendDispatcherENS2_13DumbPtrTraitsIS4_EEEEi +_ZN9Inspector32DatabaseBackendDispatcherHandler18ExecuteSQLCallbackD1Ev +_ZN9Inspector32DatabaseBackendDispatcherHandler18ExecuteSQLCallbackD2Ev +_ZN9Inspector32DatabaseBackendDispatcherHandlerC2ERKS0_ +_ZN9Inspector32DatabaseBackendDispatcherHandlerC2Ev +_ZN9Inspector32DatabaseBackendDispatcherHandlerD0Ev +_ZN9Inspector32DatabaseBackendDispatcherHandlerD1Ev +_ZN9Inspector32DatabaseBackendDispatcherHandlerD2Ev +_ZN9Inspector32DatabaseBackendDispatcherHandleraSERKS0_ +_ZN9Inspector32DebuggerBackendDispatcherHandlerC2ERKS0_ +_ZN9Inspector32DebuggerBackendDispatcherHandlerC2Ev +_ZN9Inspector32DebuggerBackendDispatcherHandlerD0Ev +_ZN9Inspector32DebuggerBackendDispatcherHandlerD1Ev +_ZN9Inspector32DebuggerBackendDispatcherHandlerD2Ev +_ZN9Inspector32ScriptProfilerFrontendDispatcher13trackingStartEd +_ZN9Inspector32ScriptProfilerFrontendDispatcher14trackingUpdateEN3WTF6RefPtrINS_8Protocol14ScriptProfiler5EventENS1_13DumbPtrTraitsIS5_EEEE +_ZN9Inspector32ScriptProfilerFrontendDispatcher16trackingCompleteEN3WTF6RefPtrINS_8Protocol14ScriptProfiler7SamplesENS1_13DumbPtrTraitsIS5_EEEE +_ZN9Inspector32ScriptProfilerFrontendDispatcher16trackingCompleteEdN3WTF6RefPtrINS_8Protocol14ScriptProfiler7SamplesENS1_13DumbPtrTraitsIS5_EEEE +_ZN9Inspector32ScriptProfilerFrontendDispatcher26programmaticCaptureStartedEv +_ZN9Inspector32ScriptProfilerFrontendDispatcher26programmaticCaptureStoppedEv +_ZN9Inspector32ScriptProfilerFrontendDispatcherC1ERNS_14FrontendRouterE +_ZN9Inspector32ScriptProfilerFrontendDispatcherC2ERNS_14FrontendRouterE +_ZN9Inspector32ScriptProfilerFrontendDispatcherdaEPv +_ZN9Inspector32ScriptProfilerFrontendDispatcherdlEPv +_ZN9Inspector32ScriptProfilerFrontendDispatchernaEm +_ZN9Inspector32ScriptProfilerFrontendDispatchernaEmPv +_ZN9Inspector32ScriptProfilerFrontendDispatchernwEm +_ZN9Inspector32ScriptProfilerFrontendDispatchernwEmPv +_ZN9Inspector32TimelineBackendDispatcherHandlerC2ERKS0_ +_ZN9Inspector32TimelineBackendDispatcherHandlerC2Ev +_ZN9Inspector32TimelineBackendDispatcherHandlerD0Ev +_ZN9Inspector32TimelineBackendDispatcherHandlerD1Ev +_ZN9Inspector32TimelineBackendDispatcherHandlerD2Ev +_ZN9Inspector33AnimationBackendDispatcherHandlerC2ERKS0_ +_ZN9Inspector33AnimationBackendDispatcherHandlerC2Ev +_ZN9Inspector33AnimationBackendDispatcherHandlerD0Ev +_ZN9Inspector33AnimationBackendDispatcherHandlerD1Ev +_ZN9Inspector33AnimationBackendDispatcherHandlerD2Ev +_ZN9Inspector33ApplicationCacheBackendDispatcher19getManifestForFrameElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector33ApplicationCacheBackendDispatcher22getFramesWithManifestsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector33ApplicationCacheBackendDispatcher27getApplicationCacheForFrameElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector33ApplicationCacheBackendDispatcher6createERNS_17BackendDispatcherEPNS_40ApplicationCacheBackendDispatcherHandlerE +_ZN9Inspector33ApplicationCacheBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector33ApplicationCacheBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE +_ZN9Inspector33ApplicationCacheBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE +_ZN9Inspector33ApplicationCacheBackendDispatcherC1ERNS_17BackendDispatcherEPNS_40ApplicationCacheBackendDispatcherHandlerE +_ZN9Inspector33ApplicationCacheBackendDispatcherC2ERNS_17BackendDispatcherEPNS_40ApplicationCacheBackendDispatcherHandlerE +_ZN9Inspector33ApplicationCacheBackendDispatcherD0Ev +_ZN9Inspector33ApplicationCacheBackendDispatcherD1Ev +_ZN9Inspector33ApplicationCacheBackendDispatcherD2Ev +_ZN9Inspector33InspectorBackendDispatcherHandlerC2ERKS0_ +_ZN9Inspector33InspectorBackendDispatcherHandlerC2Ev +_ZN9Inspector33InspectorBackendDispatcherHandlerD0Ev +_ZN9Inspector33InspectorBackendDispatcherHandlerD1Ev +_ZN9Inspector33InspectorBackendDispatcherHandlerD2Ev +_ZN9Inspector33LayerTreeBackendDispatcherHandlerC2ERKS0_ +_ZN9Inspector33LayerTreeBackendDispatcherHandlerC2Ev +_ZN9Inspector33LayerTreeBackendDispatcherHandlerD0Ev +_ZN9Inspector33LayerTreeBackendDispatcherHandlerD1Ev +_ZN9Inspector33LayerTreeBackendDispatcherHandlerD2Ev +_ZN9Inspector34ApplicationCacheFrontendDispatcher19networkStateUpdatedEb +_ZN9Inspector34ApplicationCacheFrontendDispatcher29applicationCacheStatusUpdatedERKN3WTF6StringES4_i +_ZN9Inspector34ApplicationCacheFrontendDispatcherC1ERNS_14FrontendRouterE +_ZN9Inspector34ApplicationCacheFrontendDispatcherC2ERNS_14FrontendRouterE +_ZN9Inspector34ApplicationCacheFrontendDispatcherdaEPv +_ZN9Inspector34ApplicationCacheFrontendDispatcherdlEPv +_ZN9Inspector34ApplicationCacheFrontendDispatchernaEm +_ZN9Inspector34ApplicationCacheFrontendDispatchernaEmPv +_ZN9Inspector34ApplicationCacheFrontendDispatchernwEm +_ZN9Inspector34ApplicationCacheFrontendDispatchernwEmPv +_ZN9Inspector34DOMStorageBackendDispatcherHandlerC2ERKS0_ +_ZN9Inspector34DOMStorageBackendDispatcherHandlerC2Ev +_ZN9Inspector34DOMStorageBackendDispatcherHandlerD0Ev +_ZN9Inspector34DOMStorageBackendDispatcherHandlerD1Ev +_ZN9Inspector34DOMStorageBackendDispatcherHandlerD2Ev +_ZN9Inspector34createScriptCallStackFromExceptionEPN3JSC14JSGlobalObjectEPNS0_9ExceptionEm +_ZN9Inspector34createScriptCallStackFromExceptionEPN3JSC9ExecStateEPNS0_9ExceptionEm +_ZN9Inspector35DOMDebuggerBackendDispatcherHandlerC2ERKS0_ +_ZN9Inspector35DOMDebuggerBackendDispatcherHandlerC2Ev +_ZN9Inspector35DOMDebuggerBackendDispatcherHandlerD0Ev +_ZN9Inspector35DOMDebuggerBackendDispatcherHandlerD1Ev +_ZN9Inspector35DOMDebuggerBackendDispatcherHandlerD2Ev +_ZN9Inspector38ScriptProfilerBackendDispatcherHandlerC2ERKS0_ +_ZN9Inspector38ScriptProfilerBackendDispatcherHandlerC2Ev +_ZN9Inspector38ScriptProfilerBackendDispatcherHandlerD0Ev +_ZN9Inspector38ScriptProfilerBackendDispatcherHandlerD1Ev +_ZN9Inspector38ScriptProfilerBackendDispatcherHandlerD2Ev +_ZN9Inspector40ApplicationCacheBackendDispatcherHandlerC2ERKS0_ +_ZN9Inspector40ApplicationCacheBackendDispatcherHandlerC2Ev +_ZN9Inspector40ApplicationCacheBackendDispatcherHandlerD0Ev +_ZN9Inspector40ApplicationCacheBackendDispatcherHandlerD1Ev +_ZN9Inspector40ApplicationCacheBackendDispatcherHandlerD2Ev +_ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime12EntryPreviewEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE +_ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime12RemoteObject4TypeEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE +_ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime12RemoteObject7SubtypeEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE +_ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime12RemoteObjectEE11runtimeCastEON3WTF6RefPtrINS5_8JSONImpl5ValueENS5_13DumbPtrTraitsIS8_EEEE +_ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime12RemoteObjectEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE +_ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime13ObjectPreview4TypeEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE +_ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime13ObjectPreview7SubtypeEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE +_ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime13ObjectPreviewEE11runtimeCastEON3WTF6RefPtrINS5_8JSONImpl5ValueENS5_13DumbPtrTraitsIS8_EEEE +_ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime13ObjectPreviewEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE +_ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime15CollectionEntryEE11runtimeCastEON3WTF6RefPtrINS5_8JSONImpl5ValueENS5_13DumbPtrTraitsIS8_EEEE +_ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime15CollectionEntryEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE +_ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime15PropertyPreview4TypeEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE +_ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime15PropertyPreview7SubtypeEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE +_ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime15PropertyPreviewEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE +_ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime18PropertyDescriptorEE11runtimeCastEON3WTF6RefPtrINS5_8JSONImpl5ValueENS5_13DumbPtrTraitsIS8_EEEE +_ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime18PropertyDescriptorEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE +_ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime26InternalPropertyDescriptorEE11runtimeCastEON3WTF6RefPtrINS5_8JSONImpl5ValueENS5_13DumbPtrTraitsIS8_EEEE +_ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime26InternalPropertyDescriptorEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE +_ZN9Inspector8Protocol13BindingTraitsINS0_8Debugger15FunctionDetailsEE11runtimeCastEON3WTF6RefPtrINS5_8JSONImpl5ValueENS5_13DumbPtrTraitsIS8_EEEE +_ZN9Inspector8Protocol13BindingTraitsINS0_8Debugger15FunctionDetailsEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE +_ZN9Inspector8Protocol13BindingTraitsINS0_8Debugger5Scope4TypeEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE +_ZN9Inspector8Protocol13BindingTraitsINS0_8Debugger5ScopeEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE +_ZN9Inspector8Protocol13BindingTraitsINS0_8Debugger8LocationEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE +_ZN9Inspector8Protocol13BindingTraitsINS0_8Debugger9CallFrameEE11runtimeCastEON3WTF6RefPtrINS5_8JSONImpl5ValueENS5_13DumbPtrTraitsIS8_EEEE +_ZN9Inspector8Protocol13BindingTraitsINS0_8Debugger9CallFrameEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE +_ZN9Inspector8Protocol13BindingTraitsINS0_8Timeline13TimelineEventEE11runtimeCastEON3WTF6RefPtrINS5_8JSONImpl5ValueENS5_13DumbPtrTraitsIS8_EEEE +_ZN9Inspector8Protocol13BindingTraitsINS0_8Timeline13TimelineEventEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE +_ZN9Inspector8Protocol13BindingTraitsINS0_8Timeline9EventTypeEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE +_ZN9Inspector8Protocol16InspectorHelpers20getEnumConstantValueEi +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_11DOMDebugger17DOMBreakpointTypeEEEN3WTF8OptionalIT_EERKNS5_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_11DOMDebugger17DOMBreakpointTypeEEESt8optionalIT_ERKN3WTF6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_11DOMDebugger19EventBreakpointTypeEEEN3WTF8OptionalIT_EERKNS5_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_14ScriptProfiler9EventTypeEEEN3WTF8OptionalIT_EERKNS5_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_14ScriptProfiler9EventTypeEEESt8optionalIT_ERKN3WTF6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3CSS16StyleSheetOriginEEEN3WTF8OptionalIT_EERKNS5_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3CSS16StyleSheetOriginEEESt8optionalIT_ERKN3WTF6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3CSS17CSSPropertyStatusEEEN3WTF8OptionalIT_EERKNS5_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3CSS17CSSPropertyStatusEEESt8optionalIT_ERKN3WTF6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3CSS8CSSMedia6SourceEEESt8optionalIT_ERKN3WTF6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3CSS8Grouping4TypeEEEN3WTF8OptionalIT_EERKNS6_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3CSS8PseudoIdEEEN3WTF8OptionalIT_EERKNS5_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM10PseudoTypeEEEN3WTF8OptionalIT_EERKNS5_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM10PseudoTypeEEESt8optionalIT_ERKN3WTF6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM14ShadowRootTypeEEEN3WTF8OptionalIT_EERKNS5_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM14ShadowRootTypeEEESt8optionalIT_ERKN3WTF6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM18CustomElementStateEEEN3WTF8OptionalIT_EERKNS5_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM18CustomElementStateEEESt8optionalIT_ERKN3WTF6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM18LiveRegionRelevantEEEN3WTF8OptionalIT_EERKNS5_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM18LiveRegionRelevantEEESt8optionalIT_ERKN3WTF6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM23AccessibilityProperties16LiveRegionStatusEEEN3WTF8OptionalIT_EERKNS6_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM23AccessibilityProperties16LiveRegionStatusEEESt8optionalIT_ERKN3WTF6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM23AccessibilityProperties7CheckedEEEN3WTF8OptionalIT_EERKNS6_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM23AccessibilityProperties7CheckedEEESt8optionalIT_ERKN3WTF6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM23AccessibilityProperties7CurrentEEEN3WTF8OptionalIT_EERKNS6_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM23AccessibilityProperties7CurrentEEESt8optionalIT_ERKN3WTF6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM23AccessibilityProperties7InvalidEEEN3WTF8OptionalIT_EERKNS6_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM23AccessibilityProperties7InvalidEEESt8optionalIT_ERKN3WTF6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_4Heap17GarbageCollection4TypeEEEN3WTF8OptionalIT_EERKNS6_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_4Heap17GarbageCollection4TypeEEESt8optionalIT_ERKN3WTF6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_4Page12ResourceTypeEEEN3WTF8OptionalIT_EERKNS5_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_4Page12ResourceTypeEEESt8optionalIT_ERKN3WTF6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_4Page16CoordinateSystemEEEN3WTF8OptionalIT_EERKNS5_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_4Page16CoordinateSystemEEESt8optionalIT_ERKN3WTF6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_4Page20CookieSameSitePolicyEEEN3WTF8OptionalIT_EERKNS5_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_4Page20CookieSameSitePolicyEEESt8optionalIT_ERKN3WTF6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_4Page7SettingEEEN3WTF8OptionalIT_EERKNS5_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_6Canvas10ShaderTypeEEESt8optionalIT_ERKN3WTF6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_6Canvas11ContextTypeEEEN3WTF8OptionalIT_EERKNS5_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_6Canvas11ContextTypeEEESt8optionalIT_ERKN3WTF6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_6Target10TargetInfo4TypeEEEN3WTF8OptionalIT_EERKNS6_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Console12ChannelLevelEEEN3WTF8OptionalIT_EERKNS5_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Console12ChannelLevelEEESt8optionalIT_ERKN3WTF6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Console13ChannelSourceEEEN3WTF8OptionalIT_EERKNS5_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Console13ChannelSourceEEESt8optionalIT_ERKN3WTF6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Console14ConsoleMessage4TypeEEEN3WTF8OptionalIT_EERKNS6_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Console14ConsoleMessage4TypeEEESt8optionalIT_ERKN3WTF6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Console14ConsoleMessage5LevelEEEN3WTF8OptionalIT_EERKNS6_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Console14ConsoleMessage5LevelEEESt8optionalIT_ERKN3WTF6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Network12NetworkStageEEEN3WTF8OptionalIT_EERKNS5_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Network17ResourceErrorTypeEEEN3WTF8OptionalIT_EERKNS5_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Network7Metrics8PriorityEEEN3WTF8OptionalIT_EERKNS6_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Network7Metrics8PriorityEEESt8optionalIT_ERKN3WTF6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Network8Response6SourceEEEN3WTF8OptionalIT_EERKNS6_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Network8Response6SourceEEESt8optionalIT_ERKN3WTF6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Network9Initiator4TypeEEEN3WTF8OptionalIT_EERKNS6_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Network9Initiator4TypeEEESt8optionalIT_ERKN3WTF6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Runtime12RemoteObject4TypeEEEN3WTF8OptionalIT_EERKNS6_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Runtime12RemoteObject4TypeEEESt8optionalIT_ERKN3WTF6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Runtime12RemoteObject7SubtypeEEEN3WTF8OptionalIT_EERKNS6_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Runtime12RemoteObject7SubtypeEEESt8optionalIT_ERKN3WTF6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Runtime13ObjectPreview4TypeEEEN3WTF8OptionalIT_EERKNS6_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Runtime13ObjectPreview4TypeEEESt8optionalIT_ERKN3WTF6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Runtime13ObjectPreview7SubtypeEEEN3WTF8OptionalIT_EERKNS6_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Runtime13ObjectPreview7SubtypeEEESt8optionalIT_ERKN3WTF6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Runtime15PropertyPreview4TypeEEEN3WTF8OptionalIT_EERKNS6_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Runtime15PropertyPreview4TypeEEESt8optionalIT_ERKN3WTF6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Runtime15PropertyPreview7SubtypeEEEN3WTF8OptionalIT_EERKNS6_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Runtime15PropertyPreview7SubtypeEEESt8optionalIT_ERKN3WTF6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Runtime15SyntaxErrorTypeEEEN3WTF8OptionalIT_EERKNS5_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Runtime15SyntaxErrorTypeEEESt8optionalIT_ERKN3WTF6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Runtime20ExecutionContextTypeEEEN3WTF8OptionalIT_EERKNS5_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_8Debugger16BreakpointAction4TypeEEEN3WTF8OptionalIT_EERKNS6_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_8Debugger16BreakpointAction4TypeEEESt8optionalIT_ERKN3WTF6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_8Debugger5Scope4TypeEEEN3WTF8OptionalIT_EERKNS6_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_8Debugger5Scope4TypeEEESt8optionalIT_ERKN3WTF6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_8Timeline10InstrumentEEEN3WTF8OptionalIT_EERKNS5_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_8Timeline10InstrumentEEESt8optionalIT_ERKN3WTF6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_8Timeline9EventTypeEEEN3WTF8OptionalIT_EERKNS5_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_8Timeline9EventTypeEEESt8optionalIT_ERKN3WTF6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_9Animation14AnimationStateEEEN3WTF8OptionalIT_EERKNS5_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_9Animation17PlaybackDirectionEEEN3WTF8OptionalIT_EERKNS5_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_9Animation8FillModeEEEN3WTF8OptionalIT_EERKNS5_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_9Recording4TypeEEEN3WTF8OptionalIT_EERKNS5_6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_9Recording4TypeEEESt8optionalIT_ERKN3WTF6StringE +_ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_9Recording9InitiatorEEEN3WTF8OptionalIT_EERKNS5_6StringE +_ZN9Inspector8Protocol3CSS11CSSProperty4NameE +_ZN9Inspector8Protocol3CSS11CSSProperty4TextE +_ZN9Inspector8Protocol3CSS11CSSProperty5RangeE +_ZN9Inspector8Protocol3CSS11CSSProperty5ValueE +_ZN9Inspector8Protocol3CSS11CSSProperty6StatusE +_ZN9Inspector8Protocol3CSS11CSSProperty8ImplicitE +_ZN9Inspector8Protocol3CSS11CSSProperty8ParsedOkE +_ZN9Inspector8Protocol3CSS11CSSProperty8PriorityE +_ZN9Inspector8Protocol7Network8Response8MimeTypeE +_ZN9Inspector8Protocol8Timeline13TimelineEvent4DataE +_ZN9Inspector8Protocol8Timeline13TimelineEvent4TypeE +_ZN9Inspector8Protocol8Timeline13TimelineEvent8ChildrenE +_ZN9JITBridge12ringDoorbellEiNS_8DoorbellE +_ZN9JITBridge12waitDoorbellEi +_ZN9JITBridge14shutdownFromVMEPS_b +_ZN9JITBridge16initializeFromVMEPKcPPcPKNS_11RestartDataE +_ZN9JITBridge20shutdownFromCompilerEPS_b +_ZN9JITBridge22initializeFromCompilerEPKcPPcPKNS_11RestartDataE +_ZN9JITBridge8shutdownEb +_ZN9MmsMp4Box7ReleaseEv +_ZN9MmsMp4BoxC1Ev +_ZN9MmsMp4BoxC2Ev +_ZN9MmsMp4BoxD0Ev +_ZN9MmsMp4BoxD1Ev +_ZN9MmsMp4BoxD2Ev +_ZN9pathscale13set_terminateEPFvvE +_ZN9pathscale14set_unexpectedEPFvvE +_ZN9pathscale29set_use_thread_local_handlersEb +_ZNK10Deprecated11ScriptValue10hasNoValueEv +_ZNK10Deprecated11ScriptValue7jsValueEv +_ZNK10__cxxabiv117__class_type_info11can_cast_toEPKS0_ +_ZNK10__cxxabiv117__class_type_info7cast_toEPvPKS0_ +_ZNK10__cxxabiv120__si_class_type_info11can_cast_toEPKNS_17__class_type_infoE +_ZNK10__cxxabiv120__si_class_type_info7cast_toEPvPKNS_17__class_type_infoE +_ZNK10__cxxabiv121__vmi_class_type_info11can_cast_toEPKNS_17__class_type_infoE +_ZNK10__cxxabiv121__vmi_class_type_info7cast_toEPvPKNS_17__class_type_infoE +_ZNK12Mp4Retriever14hasVideoStreamEv +_ZNK12video_parser5vpcom6String10GetWStringEv +_ZNK12video_parser5vpcom6String9GetStringEv +_ZNK12video_parser5vpcom8datetime8DateTime6FormatEPwmPKwb +_ZNK12video_parser5vpcom8datetime8DateTime9FormatMsgEPwmPKw +_ZNK12video_parser5vpcom8datetime8DateTimeltERKS2_ +_ZNK12video_parser5vpcom8datetime8DateTimeplERKS2_ +_ZNK13MsvMetaEditor17isFragmentedMovieEj +_ZNK14OpaqueJSString6stringEv +_ZNK15AbstractStorage11LocalFolder10GetServiceEv +_ZNK15AbstractStorage11LocalFolder13GetCapabilityEv +_ZNK15AbstractStorage11LocalFolder7GetStatEPNS_4StatE +_ZNK15AbstractStorage12LocalContent10GetServiceEv +_ZNK15AbstractStorage12LocalContent13GetCapabilityEv +_ZNK15AbstractStorage12LocalContent7GetStatEPNS_4StatE +_ZNK15AbstractStorage12LocalService14GetServiceTypeEv +_ZNK15AbstractStorage12LocalStorage10GetServiceEv +_ZNK15AbstractStorage12LocalStorage13GetCapabilityEv +_ZNK15AbstractStorage12LocalStorage7GetStatEPNS_4StatE +_ZNK15AbstractStorage13TwitterFolder10GetServiceEv +_ZNK15AbstractStorage13TwitterFolder13GetCapabilityEv +_ZNK15AbstractStorage13TwitterFolder7GetStatEPNS_4StatE +_ZNK15AbstractStorage13YoutubeFolder10GetServiceEv +_ZNK15AbstractStorage13YoutubeFolder13GetCapabilityEv +_ZNK15AbstractStorage13YoutubeFolder7GetStatEPNS_4StatE +_ZNK15AbstractStorage14FacebookFolder10GetServiceEv +_ZNK15AbstractStorage14FacebookFolder13GetCapabilityEv +_ZNK15AbstractStorage14FacebookFolder7GetStatEPNS_4StatE +_ZNK15AbstractStorage14MemfileContent10GetServiceEv +_ZNK15AbstractStorage14MemfileContent13GetCapabilityEv +_ZNK15AbstractStorage14MemfileContent7GetStatEPNS_4StatE +_ZNK15AbstractStorage14TwitterContent10GetServiceEv +_ZNK15AbstractStorage14TwitterContent13GetCapabilityEv +_ZNK15AbstractStorage14TwitterContent7GetStatEPNS_4StatE +_ZNK15AbstractStorage14TwitterService14GetServiceTypeEv +_ZNK15AbstractStorage14TwitterStorage10GetServiceEv +_ZNK15AbstractStorage14TwitterStorage13GetCapabilityEv +_ZNK15AbstractStorage14TwitterStorage7GetStatEPNS_4StatE +_ZNK15AbstractStorage14YoutubeContent10GetServiceEv +_ZNK15AbstractStorage14YoutubeContent13GetCapabilityEv +_ZNK15AbstractStorage14YoutubeContent7GetStatEPNS_4StatE +_ZNK15AbstractStorage14YoutubeService14GetServiceTypeEv +_ZNK15AbstractStorage14YoutubeStorage10GetServiceEv +_ZNK15AbstractStorage14YoutubeStorage13GetCapabilityEv +_ZNK15AbstractStorage14YoutubeStorage7GetStatEPNS_4StatE +_ZNK15AbstractStorage15FacebookContent10GetServiceEv +_ZNK15AbstractStorage15FacebookContent13GetCapabilityEv +_ZNK15AbstractStorage15FacebookContent7GetStatEPNS_4StatE +_ZNK15AbstractStorage15FacebookService14GetServiceTypeEv +_ZNK15AbstractStorage15FacebookStorage10GetServiceEv +_ZNK15AbstractStorage15FacebookStorage13GetCapabilityEv +_ZNK15AbstractStorage15FacebookStorage7GetStatEPNS_4StatE +_ZNK15AbstractStorage17DailymotionFolder10GetServiceEv +_ZNK15AbstractStorage17DailymotionFolder13GetCapabilityEv +_ZNK15AbstractStorage17DailymotionFolder7GetStatEPNS_4StatE +_ZNK15AbstractStorage18DailymotionContent10GetServiceEv +_ZNK15AbstractStorage18DailymotionContent13GetCapabilityEv +_ZNK15AbstractStorage18DailymotionContent7GetStatEPNS_4StatE +_ZNK15AbstractStorage18DailymotionService14GetServiceTypeEv +_ZNK15AbstractStorage18DailymotionStorage10GetServiceEv +_ZNK15AbstractStorage18DailymotionStorage13GetCapabilityEv +_ZNK15AbstractStorage18DailymotionStorage7GetStatEPNS_4StatE +_ZNK15AbstractStorage4Item12GetThumbnailEPSt10shared_ptrINS_7ContentEE +_ZNK15AbstractStorage4Item15CreateThumbnailEPvPSt10shared_ptrINS_7ContentEE +_ZNK15AbstractStorage6Folder7GetTypeEv +_ZNK15AbstractStorage7Content7GetTypeEv +_ZNK15AbstractStorage7Storage7GetTypeEv +_ZNK23sceMetadataReaderWriter8Metadata13getFieldCountEv +_ZNK23sceMetadataReaderWriter8Metadata14checkReadFieldEiRS0_S1_ +_ZNK23sceMetadataReaderWriter8Metadata14checkReadFieldEiRS0_S1_Pb +_ZNK23sceMetadataReaderWriter8Metadata15checkWriteFieldEiRS0_S1_ +_ZNK23sceMetadataReaderWriter8Metadata15checkWriteFieldEiRS0_S1_Pb +_ZNK23sceMetadataReaderWriter8Metadata8getFieldEiRSsRNS_5ValueE +_ZNK23sceMetadataReaderWriter8Metadata8getValueERKSsRNS_5ValueE +_ZNK23sceMetadataReaderWriter8Metadata9dumpValueEv +_ZNK3IPC15ArgumentDecoder28bufferIsLargeEnoughToContainEjm +_ZNK3JSC10CodeOrigin4dumpERN3WTF11PrintStreamE +_ZNK3JSC10JSFunction10sourceCodeEv +_ZNK3JSC10JSFunction23isHostFunctionNonInlineEv +_ZNK3JSC11ArrayBuffer5sliceEd +_ZNK3JSC11ArrayBuffer5sliceEdd +_ZNK3JSC11ArrayBuffer5sliceEi +_ZNK3JSC11ArrayBuffer5sliceEii +_ZNK3JSC11RegisterSet4dumpERN3WTF11PrintStreamE +_ZNK3JSC12DateInstance26calculateGregorianDateTimeEPNS_9ExecStateE +_ZNK3JSC12DateInstance26calculateGregorianDateTimeERNS_2VM9DateCacheE +_ZNK3JSC12DateInstance29calculateGregorianDateTimeUTCEPNS_9ExecStateE +_ZNK3JSC12DateInstance29calculateGregorianDateTimeUTCERNS_2VM9DateCacheE +_ZNK3JSC12JSRopeString11resolveRopeEPNS_14JSGlobalObjectE +_ZNK3JSC12JSRopeString11resolveRopeEPNS_9ExecStateE +_ZNK3JSC12JSRopeString23resolveRopeToAtomStringEPNS_14JSGlobalObjectE +_ZNK3JSC12JSRopeString25resolveRopeToAtomicStringEPNS_9ExecStateE +_ZNK3JSC12JSRopeString31resolveRopeToExistingAtomStringEPNS_14JSGlobalObjectE +_ZNK3JSC12JSRopeString33resolveRopeToExistingAtomicStringEPNS_9ExecStateE +_ZNK3JSC12PropertySlot12customGetterEPNS_14JSGlobalObjectENS_12PropertyNameE +_ZNK3JSC12PropertySlot12customGetterEPNS_9ExecStateENS_12PropertyNameE +_ZNK3JSC12PropertySlot14functionGetterEPNS_14JSGlobalObjectE +_ZNK3JSC12PropertySlot14functionGetterEPNS_9ExecStateE +_ZNK3JSC12PropertySlot20customAccessorGetterEPNS_14JSGlobalObjectENS_12PropertyNameE +_ZNK3JSC12PropertySlot20customAccessorGetterEPNS_9ExecStateENS_12PropertyNameE +_ZNK3JSC12StackVisitor5Frame12functionNameEv +_ZNK3JSC12StackVisitor5Frame20computeLineAndColumnERjS2_ +_ZNK3JSC12StackVisitor5Frame8toStringEv +_ZNK3JSC12StackVisitor5Frame9sourceURLEv +_ZNK3JSC13JSArrayBuffer8isSharedEv +_ZNK3JSC13RuntimeMethod6methodEv +_ZNK3JSC14CachedBytecode13commitUpdatesERKN3WTF8FunctionIFvlPKvmEEE +_ZNK3JSC14CellAttributes4dumpERN3WTF11PrintStreamE +_ZNK3JSC14FullCodeOrigin4dumpERN3WTF11PrintStreamE +_ZNK3JSC14JSGlobalObject22remoteDebuggingEnabledEv +_ZNK3JSC14ProtoCallFrame13argumentCountEv +_ZNK3JSC14ProtoCallFrame26argumentCountIncludingThisEv +_ZNK3JSC14ProtoCallFrame6calleeEv +_ZNK3JSC14ProtoCallFrame9codeBlockEv +_ZNK3JSC14ProtoCallFrame9thisValueEv +_ZNK3JSC16ScriptExecutable8lastLineEv +_ZNK3JSC16ScriptExecutable9endColumnEv +_ZNK3JSC17DebuggerCallFrame12functionNameEv +_ZNK3JSC17DebuggerCallFrame19vmEntryGlobalObjectEv +_ZNK3JSC17DebuggerCallFrame29deprecatedVMEntryGlobalObjectEv +_ZNK3JSC17DebuggerCallFrame4typeEv +_ZNK3JSC17DebuggerCallFrame8positionEv +_ZNK3JSC17DebuggerCallFrame8sourceIDEv +_ZNK3JSC17DebuggerCallFrame9thisValueERNS_2VME +_ZNK3JSC17DebuggerCallFrame9thisValueEv +_ZNK3JSC18BasicBlockLocation8dumpDataEv +_ZNK3JSC18BytecodeCacheError7isValidEv +_ZNK3JSC18BytecodeCacheError7messageEv +_ZNK3JSC18GCActivityCallback9isEnabledEv +_ZNK3JSC18PropertyDescriptor10enumerableEv +_ZNK3JSC18PropertyDescriptor12configurableEv +_ZNK3JSC18PropertyDescriptor16isDataDescriptorEv +_ZNK3JSC18PropertyDescriptor20isAccessorDescriptorEv +_ZNK3JSC18PropertyDescriptor6getterEv +_ZNK3JSC18PropertyDescriptor6setterEv +_ZNK3JSC18PropertyDescriptor8writableEv +_ZNK3JSC19CacheableIdentifier4dumpERN3WTF11PrintStreamE +_ZNK3JSC19ControlFlowProfiler8dumpDataEv +_ZNK3JSC19HeapSnapshotBuilder18descriptionForCellEPNS_6JSCellE +_ZNK3JSC22FullGCActivityCallback13didGCRecentlyEv +_ZNK3JSC23VariableWriteFireDetail4dumpERN3WTF11PrintStreamE +_ZNK3JSC25JSInternalPromiseDeferred7promiseEv +_ZNK3JSC2VM19vmEntryGlobalObjectEPKNS_9ExecStateE +_ZNK3JSC2VM29deprecatedVMEntryGlobalObjectEPNS_14JSGlobalObjectE +_ZNK3JSC4Heap15isAnalyzingHeapEv +_ZNK3JSC4Heap18isHeapSnapshottingEv +_ZNK3JSC4Yarr17RegularExpression13matchedLengthEv +_ZNK3JSC4Yarr17RegularExpression5matchERKN3WTF6StringEiPi +_ZNK3JSC4Yarr17RegularExpression7isValidEv +_ZNK3JSC4Yarr17RegularExpression9searchRevERKN3WTF6StringE +_ZNK3JSC6DOMJIT9HeapRange4dumpERN3WTF11PrintStreamE +_ZNK3JSC6JSCell11toPrimitiveEPNS_14JSGlobalObjectENS_22PreferredPrimitiveTypeE +_ZNK3JSC6JSCell11toPrimitiveEPNS_9ExecStateENS_22PreferredPrimitiveTypeE +_ZNK3JSC6JSCell12toObjectSlowEPNS_14JSGlobalObjectE +_ZNK3JSC6JSCell12toObjectSlowEPNS_9ExecStateEPNS_14JSGlobalObjectE +_ZNK3JSC6JSCell8toNumberEPNS_14JSGlobalObjectE +_ZNK3JSC6JSCell8toNumberEPNS_9ExecStateE +_ZNK3JSC6JSCell9getStringEPNS_14JSGlobalObjectE +_ZNK3JSC6JSCell9getStringEPNS_14JSGlobalObjectERN3WTF6StringE +_ZNK3JSC6JSCell9getStringEPNS_9ExecStateE +_ZNK3JSC6JSCell9getStringEPNS_9ExecStateERN3WTF6StringE +_ZNK3JSC7ArgList8getSliceEiRS0_ +_ZNK3JSC7JSValue14toThisSlowCaseEPNS_14JSGlobalObjectENS_8ECMAModeE +_ZNK3JSC7JSValue14toThisSlowCaseEPNS_9ExecStateENS_8ECMAModeE +_ZNK3JSC7JSValue16toNumberSlowCaseEPNS_14JSGlobalObjectE +_ZNK3JSC7JSValue16toNumberSlowCaseEPNS_9ExecStateE +_ZNK3JSC7JSValue16toObjectSlowCaseEPNS_14JSGlobalObjectE +_ZNK3JSC7JSValue16toObjectSlowCaseEPNS_9ExecStateEPNS_14JSGlobalObjectE +_ZNK3JSC7JSValue16toStringSlowCaseEPNS_14JSGlobalObjectEb +_ZNK3JSC7JSValue16toStringSlowCaseEPNS_9ExecStateEb +_ZNK3JSC7JSValue19synthesizePrototypeEPNS_14JSGlobalObjectE +_ZNK3JSC7JSValue19synthesizePrototypeEPNS_9ExecStateE +_ZNK3JSC7JSValue19toWTFStringSlowCaseEPNS_14JSGlobalObjectE +_ZNK3JSC7JSValue19toWTFStringSlowCaseEPNS_9ExecStateE +_ZNK3JSC7JSValue20toIntegerPreserveNaNEPNS_14JSGlobalObjectE +_ZNK3JSC7JSValue20toIntegerPreserveNaNEPNS_9ExecStateE +_ZNK3JSC7JSValue4dumpERN3WTF11PrintStreamE +_ZNK3JSC7JSValue9toIntegerEPNS_14JSGlobalObjectE +_ZNK3JSC7JSValue9toIntegerEPNS_9ExecStateE +_ZNK3JSC8Bindings10RootObject12globalObjectEv +_ZNK3JSC8Bindings13RuntimeObject19getInternalInstanceEv +_ZNK3JSC8Debugger10isSteppingEv +_ZNK3JSC8Debugger13isBlacklistedEm +_ZNK3JSC8Debugger14reasonForPauseEv +_ZNK3JSC8Debugger17breakpointsActiveEv +_ZNK3JSC8Debugger17suppressAllPausesEv +_ZNK3JSC8Debugger18hasProfilingClientEv +_ZNK3JSC8Debugger18isAlreadyProfilingEv +_ZNK3JSC8Debugger19pausingBreakpointIDEv +_ZNK3JSC8Debugger22pauseOnExceptionsStateEv +_ZNK3JSC8Debugger23needsExceptionCallbacksEv +_ZNK3JSC8Debugger24isInteractivelyDebuggingEv +_ZNK3JSC8Debugger30hasHandlerForExceptionCallbackEv +_ZNK3JSC8Debugger36handleExceptionInBreakpointConditionEPNS_14JSGlobalObjectEPNS_9ExceptionE +_ZNK3JSC8Debugger36handleExceptionInBreakpointConditionEPNS_9ExecStateEPNS_9ExceptionE +_ZNK3JSC8Debugger8isPausedEv +_ZNK3JSC8FreeList4dumpERN3WTF11PrintStreamE +_ZNK3JSC8JSObject11hasPropertyEPNS_14JSGlobalObjectENS_12PropertyNameE +_ZNK3JSC8JSObject11hasPropertyEPNS_14JSGlobalObjectEj +_ZNK3JSC8JSObject11hasPropertyEPNS_9ExecStateENS_12PropertyNameE +_ZNK3JSC8JSObject11hasPropertyEPNS_9ExecStateEj +_ZNK3JSC8JSObject11toPrimitiveEPNS_14JSGlobalObjectENS_22PreferredPrimitiveTypeE +_ZNK3JSC8JSObject11toPrimitiveEPNS_9ExecStateENS_22PreferredPrimitiveTypeE +_ZNK3JSC8JSObject43anyObjectInChainMayInterceptIndexedAccessesERNS_2VME +_ZNK3JSC8JSObject8toNumberEPNS_14JSGlobalObjectE +_ZNK3JSC8JSObject8toNumberEPNS_9ExecStateE +_ZNK3JSC8JSObject8toStringEPNS_14JSGlobalObjectE +_ZNK3JSC8JSObject8toStringEPNS_9ExecStateE +_ZNK3JSC8JSString13equalSlowCaseEPNS_14JSGlobalObjectEPS0_ +_ZNK3JSC8JSString13equalSlowCaseEPNS_9ExecStateEPS0_ +_ZNK3JSC8Profiler8Database4saveEPKc +_ZNK3JSC8Profiler8Database4toJSEPNS_14JSGlobalObjectE +_ZNK3JSC8Profiler8Database4toJSEPNS_9ExecStateE +_ZNK3JSC8Profiler8Database6toJSONEv +_ZNK3JSC9CallFrame10codeOriginEv +_ZNK3JSC9CallFrame11callerFrameERPNS_10EntryFrameE +_ZNK3JSC9ClassInfo35hasStaticSetterOrReadonlyPropertiesEv +_ZNK3JSC9ClassInfo4dumpERN3WTF11PrintStreamE +_ZNK3JSC9CodeBlock26reoptimizationRetryCounterEv +_ZNK3JSC9CodeBlock4dumpERN3WTF11PrintStreamE +_ZNK3JSC9ExecState11callerFrameERPNS_10EntryFrameE +_ZNK3JSC9JSPromise6resultERNS_2VME +_ZNK3JSC9JSPromise6statusERNS_2VME +_ZNK3JSC9JSPromise9isHandledERNS_2VME +_ZNK3NTF3URL10protocolIsEPKc +_ZNK3WTF10AtomString23convertToASCIILowercaseEv +_ZNK3WTF10AtomString23convertToASCIIUppercaseEv +_ZNK3WTF10StackTrace4dumpERNS_11PrintStreamEPKc +_ZNK3WTF10StringImpl10startsWithEDs +_ZNK3WTF10StringImpl10startsWithEPKS0_ +_ZNK3WTF10StringImpl10startsWithEPKcj +_ZNK3WTF10StringImpl10startsWithERKS0_ +_ZNK3WTF10StringImpl10tryGetUtf8ENS_14ConversionModeE +_ZNK3WTF10StringImpl11sizeInBytesEv +_ZNK3WTF10StringImpl12hashSlowCaseEv +_ZNK3WTF10StringImpl14concurrentHashEv +_ZNK3WTF10StringImpl16hasInfixEndingAtERKS0_j +_ZNK3WTF10StringImpl18hasInfixStartingAtERKS0_j +_ZNK3WTF10StringImpl18tryGetUtf8ForRangeEjjNS_14ConversionModeE +_ZNK3WTF10StringImpl21findIgnoringASCIICaseEPKS0_ +_ZNK3WTF10StringImpl21findIgnoringASCIICaseEPKS0_j +_ZNK3WTF10StringImpl21findIgnoringASCIICaseERKS0_ +_ZNK3WTF10StringImpl21findIgnoringASCIICaseERKS0_j +_ZNK3WTF10StringImpl25endsWithIgnoringASCIICaseEPKS0_ +_ZNK3WTF10StringImpl25endsWithIgnoringASCIICaseERKS0_ +_ZNK3WTF10StringImpl27startsWithIgnoringASCIICaseEPKS0_ +_ZNK3WTF10StringImpl27startsWithIgnoringASCIICaseERKS0_ +_ZNK3WTF10StringImpl4utf8ENS_14ConversionModeE +_ZNK3WTF10StringImpl8endsWithEDs +_ZNK3WTF10StringImpl8endsWithEPKcj +_ZNK3WTF10StringView10startsWithEDs +_ZNK3WTF10StringView10startsWithERKS0_ +_ZNK3WTF10StringView10tryGetUtf8ENS_14ConversionModeE +_ZNK3WTF10StringView16GraphemeClusters8IteratordeEv +_ZNK3WTF10StringView16GraphemeClusters8IteratoreqERKS2_ +_ZNK3WTF10StringView16GraphemeClusters8IteratorneERKS2_ +_ZNK3WTF10StringView21findIgnoringASCIICaseERKS0_ +_ZNK3WTF10StringView21findIgnoringASCIICaseERKS0_j +_ZNK3WTF10StringView23convertToASCIILowercaseEv +_ZNK3WTF10StringView23convertToASCIIUppercaseEv +_ZNK3WTF10StringView25containsIgnoringASCIICaseERKS0_ +_ZNK3WTF10StringView25containsIgnoringASCIICaseERKS0_j +_ZNK3WTF10StringView25endsWithIgnoringASCIICaseERKS0_ +_ZNK3WTF10StringView26getCharactersWithASCIICaseENS0_15CaseConvertTypeEPDs +_ZNK3WTF10StringView26getCharactersWithASCIICaseENS0_15CaseConvertTypeEPh +_ZNK3WTF10StringView27startsWithIgnoringASCIICaseERKS0_ +_ZNK3WTF10StringView4findES0_j +_ZNK3WTF10StringView4utf8ENS_14ConversionModeE +_ZNK3WTF10StringView8containsEPKc +_ZNK3WTF10StringView8endsWithEDs +_ZNK3WTF10StringView8endsWithERKS0_ +_ZNK3WTF11Persistence7Decoder28bufferIsLargeEnoughToContainEm +_ZNK3WTF12ASCIILiteral4dumpERNS_11PrintStreamE +_ZNK3WTF12AtomicString23convertToASCIILowercaseEv +_ZNK3WTF12AtomicString23convertToASCIIUppercaseEv +_ZNK3WTF13DecimalNumber15toStringDecimalEPhj +_ZNK3WTF13DecimalNumber19toStringExponentialEPhj +_ZNK3WTF13DecimalNumber28bufferLengthForStringDecimalEv +_ZNK3WTF13DecimalNumber32bufferLengthForStringExponentialEv +_ZNK3WTF13MonotonicTime19approximateWallTimeEv +_ZNK3WTF13MonotonicTime4dumpERNS_11PrintStreamE +_ZNK3WTF13StringBuilder10isAllASCIIEv +_ZNK3WTF13StringBuilder11reifyStringEv +_ZNK3WTF13StringBuilder9canShrinkEv +_ZNK3WTF14MediaTimeRange12toJSONStringEv +_ZNK3WTF15AutomaticThread19hasUnderlyingThreadERKNS_14AbstractLockerE +_ZNK3WTF15AutomaticThread4nameEv +_ZNK3WTF17double_conversion23DoubleToStringConverter13ToExponentialEdiPNS0_13StringBuilderE +_ZNK3WTF19MetaAllocatorHandle4dumpERNS_11PrintStreamE +_ZNK3WTF24TimeWithDynamicClockType13monotonicTimeEv +_ZNK3WTF24TimeWithDynamicClockType16nowWithSameClockEv +_ZNK3WTF24TimeWithDynamicClockType19approximateWallTimeEv +_ZNK3WTF24TimeWithDynamicClockType24approximateMonotonicTimeEv +_ZNK3WTF24TimeWithDynamicClockType4dumpERNS_11PrintStreamE +_ZNK3WTF24TimeWithDynamicClockType8wallTimeEv +_ZNK3WTF24TimeWithDynamicClockTypegeERKS0_ +_ZNK3WTF24TimeWithDynamicClockTypegtERKS0_ +_ZNK3WTF24TimeWithDynamicClockTypeleERKS0_ +_ZNK3WTF24TimeWithDynamicClockTypeltERKS0_ +_ZNK3WTF24TimeWithDynamicClockTypemiERKS0_ +_ZNK3WTF3URL10protocolIsENS_10StringViewE +_ZNK3WTF3URL10protocolIsEPKc +_ZNK3WTF3URL11encodedUserEv +_ZNK3WTF3URL11hostAndPortEv +_ZNK3WTF3URL11isLocalFileEv +_ZNK3WTF3URL12isAboutBlankEv +_ZNK3WTF3URL12isolatedCopyEv +_ZNK3WTF3URL13isAboutSrcDocEv +_ZNK3WTF3URL14fileSystemPathEv +_ZNK3WTF3URL14isHierarchicalEv +_ZNK3WTF3URL15encodedPasswordEv +_ZNK3WTF3URL15protocolIsAboutEv +_ZNK3WTF3URL16isMatchingDomainENS_10StringViewE +_ZNK3WTF3URL17lastPathComponentEv +_ZNK3WTF3URL18fragmentIdentifierEv +_ZNK3WTF3URL19protocolHostAndPortEv +_ZNK3WTF3URL20protocolIsJavaScriptEv +_ZNK3WTF3URL21truncatedForUseAsBaseEv +_ZNK3WTF3URL24strippedForUseAsReferrerEv +_ZNK3WTF3URL28queryWithLeadingQuestionMarkEv +_ZNK3WTF3URL30stringCenterEllipsizedToLengthEj +_ZNK3WTF3URL38stringWithoutQueryOrFragmentIdentifierEv +_ZNK3WTF3URL39fragmentIdentifierWithLeadingNumberSignEv +_ZNK3WTF3URL4dumpERNS_11PrintStreamE +_ZNK3WTF3URL4hostEv +_ZNK3WTF3URL4pathEv +_ZNK3WTF3URL4portEv +_ZNK3WTF3URL4userEv +_ZNK3WTF3URL5queryEv +_ZNK3WTF3URL8passwordEv +_ZNK3WTF3URL8protocolEv +_ZNK3WTF6Logger17LogSiteIdentifier8toStringEv +_ZNK3WTF6String10tryGetUtf8ENS_14ConversionModeE +_ZNK3WTF6String10tryGetUtf8Ev +_ZNK3WTF6String11toIntStrictEPbi +_ZNK3WTF6String12toUIntStrictEPbi +_ZNK3WTF6String13toInt64StrictEPbi +_ZNK3WTF6String14toIntPtrStrictEPbi +_ZNK3WTF6String14toUInt64StrictEPbi +_ZNK3WTF6String15stripWhiteSpaceEv +_ZNK3WTF6String16removeCharactersEPFbDsE +_ZNK3WTF6String18simplifyWhiteSpaceEPFbDsE +_ZNK3WTF6String18simplifyWhiteSpaceEv +_ZNK3WTF6String19characterStartingAtEj +_ZNK3WTF6String20substringSharingImplEjj +_ZNK3WTF6String23convertToASCIILowercaseEv +_ZNK3WTF6String23convertToASCIIUppercaseEv +_ZNK3WTF6String25splitAllowingEmptyEntriesEDs +_ZNK3WTF6String25splitAllowingEmptyEntriesEDsRKNS_8FunctionIFvRKNS_10StringViewEEEE +_ZNK3WTF6String25splitAllowingEmptyEntriesERKS0_ +_ZNK3WTF6String27isSafeToSendToAnotherThreadEv +_ZNK3WTF6String28convertToLowercaseWithLocaleERKNS_10AtomStringE +_ZNK3WTF6String28convertToLowercaseWithLocaleERKNS_12AtomicStringE +_ZNK3WTF6String28convertToUppercaseWithLocaleERKNS_10AtomStringE +_ZNK3WTF6String28convertToUppercaseWithLocaleERKNS_12AtomicStringE +_ZNK3WTF6String29charactersWithNullTerminationEv +_ZNK3WTF6String31convertToLowercaseWithoutLocaleEv +_ZNK3WTF6String31convertToUppercaseWithoutLocaleEv +_ZNK3WTF6String33stripLeadingAndTrailingCharactersEPFbDsE +_ZNK3WTF6String4utf8ENS0_14ConversionModeE +_ZNK3WTF6String4utf8ENS_14ConversionModeE +_ZNK3WTF6String4utf8Ev +_ZNK3WTF6String57convertToLowercaseWithoutLocaleStartingAtFailingIndex8BitEj +_ZNK3WTF6String5asciiEv +_ZNK3WTF6String5splitEDs +_ZNK3WTF6String5splitEDsRKNS_8FunctionIFvRKNS_10StringViewEEEE +_ZNK3WTF6String5splitEDsbRKNS_8FunctionIFvRKNS_10StringViewEEEE +_ZNK3WTF6String5splitEDsbRNS_6VectorIS0_Lm0ENS_15CrashOnOverflowELm16EEE +_ZNK3WTF6String5splitERKS0_ +_ZNK3WTF6String5splitERKS0_bRNS_6VectorIS0_Lm0ENS_15CrashOnOverflowELm16EEE +_ZNK3WTF6String5toIntEPb +_ZNK3WTF6String6latin1Ev +_ZNK3WTF6String6toUIntEPb +_ZNK3WTF6String7toFloatEPb +_ZNK3WTF6String7toInt64EPb +_ZNK3WTF6String8foldCaseEv +_ZNK3WTF6String8toDoubleEPb +_ZNK3WTF6String8toIntPtrEPb +_ZNK3WTF6String8toUInt64EPb +_ZNK3WTF6String9substringEjj +_ZNK3WTF6Thread4dumpERNS_11PrintStreamE +_ZNK3WTF7CPUTime23percentageCPUUsageSinceERKS0_ +_ZNK3WTF7CString4hashEv +_ZNK3WTF7RunLoop9TimerBase16secondsUntilFireEv +_ZNK3WTF7RunLoop9TimerBase8isActiveEv +_ZNK3WTF7Seconds4dumpERNS_11PrintStreamE +_ZNK3WTF7SecondsmiENS_13MonotonicTimeE +_ZNK3WTF7SecondsmiENS_8WallTimeE +_ZNK3WTF7SecondsmiERKNS_24TimeWithDynamicClockTypeE +_ZNK3WTF7SecondsplENS_13MonotonicTimeE +_ZNK3WTF7SecondsplENS_8WallTimeE +_ZNK3WTF7SecondsplERKNS_24TimeWithDynamicClockTypeE +_ZNK3WTF8Collator11collateUTF8EPKcS2_ +_ZNK3WTF8Collator7collateENS_10StringViewES1_ +_ZNK3WTF8JSONImpl10ObjectBase10getBooleanERKNS_6StringERb +_ZNK3WTF8JSONImpl10ObjectBase10memoryCostEv +_ZNK3WTF8JSONImpl10ObjectBase3endEv +_ZNK3WTF8JSONImpl10ObjectBase4findERKNS_6StringE +_ZNK3WTF8JSONImpl10ObjectBase4sizeEv +_ZNK3WTF8JSONImpl10ObjectBase5beginEv +_ZNK3WTF8JSONImpl10ObjectBase8getArrayERKNS_6StringERNS_6RefPtrINS0_5ArrayENS_13DumbPtrTraitsIS6_EEEE +_ZNK3WTF8JSONImpl10ObjectBase8getValueERKNS_6StringERNS_6RefPtrINS0_5ValueENS_13DumbPtrTraitsIS6_EEEE +_ZNK3WTF8JSONImpl10ObjectBase9getObjectERKNS_6StringERNS_6RefPtrINS0_6ObjectENS_13DumbPtrTraitsIS6_EEEE +_ZNK3WTF8JSONImpl10ObjectBase9getStringERKNS_6StringERS2_ +_ZNK3WTF8JSONImpl10ObjectBase9writeJSONERNS_13StringBuilderE +_ZNK3WTF8JSONImpl5Value10memoryCostEv +_ZNK3WTF8JSONImpl5Value12toJSONStringEv +_ZNK3WTF8JSONImpl5Value4typeEv +_ZNK3WTF8JSONImpl5Value6isNullEv +_ZNK3WTF8JSONImpl5Value8asDoubleERd +_ZNK3WTF8JSONImpl5Value8asDoubleERf +_ZNK3WTF8JSONImpl5Value8asStringERNS_6StringE +_ZNK3WTF8JSONImpl5Value9asBooleanERb +_ZNK3WTF8JSONImpl5Value9asIntegerERi +_ZNK3WTF8JSONImpl5Value9asIntegerERj +_ZNK3WTF8JSONImpl5Value9asIntegerERl +_ZNK3WTF8JSONImpl5Value9asIntegerERm +_ZNK3WTF8JSONImpl5Value9asIntegerERx +_ZNK3WTF8JSONImpl5Value9asIntegerERy +_ZNK3WTF8JSONImpl5Value9writeJSONERNS_13StringBuilderE +_ZNK3WTF8JSONImpl9ArrayBase10memoryCostEv +_ZNK3WTF8JSONImpl9ArrayBase3endEv +_ZNK3WTF8JSONImpl9ArrayBase3getEm +_ZNK3WTF8JSONImpl9ArrayBase5beginEv +_ZNK3WTF8JSONImpl9ArrayBase6lengthEv +_ZNK3WTF8JSONImpl9ArrayBase9writeJSONERNS_13StringBuilderE +_ZNK3WTF8WallTime24approximateMonotonicTimeEv +_ZNK3WTF8WallTime4dumpERNS_11PrintStreamE +_ZNK3WTF9BitVector11isEmptySlowEv +_ZNK3WTF9BitVector12bitCountSlowEv +_ZNK3WTF9BitVector12hashSlowCaseEv +_ZNK3WTF9BitVector14equalsSlowCaseERKS0_ +_ZNK3WTF9BitVector4dumpERNS_11PrintStreamE +_ZNK3WTF9MediaTime11toTimeScaleEjNS0_13RoundingFlagsE +_ZNK3WTF9MediaTime12isIndefiniteEv +_ZNK3WTF9MediaTime12toJSONObjectEv +_ZNK3WTF9MediaTime12toJSONStringEv +_ZNK3WTF9MediaTime14hasBeenRoundedEv +_ZNK3WTF9MediaTime14hasDoubleValueEv +_ZNK3WTF9MediaTime18isNegativeInfiniteEv +_ZNK3WTF9MediaTime18isPositiveInfiniteEv +_ZNK3WTF9MediaTime4dumpERNS_11PrintStreamE +_ZNK3WTF9MediaTime7compareERKS0_ +_ZNK3WTF9MediaTime7isValidEv +_ZNK3WTF9MediaTime7toFloatEv +_ZNK3WTF9MediaTime8toDoubleEv +_ZNK3WTF9MediaTime8toStringEv +_ZNK3WTF9MediaTime9isBetweenERKS0_S2_ +_ZNK3WTF9MediaTime9isInvalidEv +_ZNK3WTF9MediaTime9timeFlagsEv +_ZNK3WTF9MediaTime9timeScaleEv +_ZNK3WTF9MediaTime9timeValueEv +_ZNK3WTF9MediaTimecvbEv +_ZNK3WTF9MediaTimeeqERKS0_ +_ZNK3WTF9MediaTimegeERKS0_ +_ZNK3WTF9MediaTimegtERKS0_ +_ZNK3WTF9MediaTimeleERKS0_ +_ZNK3WTF9MediaTimeltERKS0_ +_ZNK3WTF9MediaTimemiERKS0_ +_ZNK3WTF9MediaTimemlEi +_ZNK3WTF9MediaTimeneERKS0_ +_ZNK3WTF9MediaTimengEv +_ZNK3WTF9MediaTimentEv +_ZNK3WTF9MediaTimeplERKS0_ +_ZNK3sce16CommonDialogUtil6Client10isCloseReqEv +_ZNK3sce16CommonDialogUtil6Client13getFinishDataEPvm +_ZNK3sce16CommonDialogUtil6Client14getClientStateEv +_ZNK3sce16CommonDialogUtil6Client19isInitializedStatusEv +_ZNK3sce16CommonDialogUtil6Client8getAppIdEv +_ZNK3sce16CommonDialogUtil6Client8isFinishEv +_ZNK3sce16CommonDialogUtil6Client9getResultEv +_ZNK3sce16CommonDialogUtil6Server10getVersionERj +_ZNK3sce16CommonDialogUtil6Server10isCloseReqEv +_ZNK3sce16CommonDialogUtil6Server14getServerStateEv +_ZNK3sce16CommonDialogUtil6Server9getUserIdEv +_ZNK3sce16CommonDialogUtil6Server9isSetDataEv +_ZNK3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities13getaccountIdsEv +_ZNK3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities13isInitializedEv +_ZNK3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities17getacceptLanguageEv +_ZNK3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities17getnpServiceLabelEv +_ZNK3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities17hasacceptLanguageEv +_ZNK3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities17hasnpServiceLabelEv +_ZNK3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities8getlimitEv +_ZNK3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities8haslimitEv +_ZNK3sce2Np9CppWebApi10Activities2V114UserActivities13ErrorResponse6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi10Activities2V114UserActivities13ErrorResponse8getErrorEv +_ZNK3sce2Np9CppWebApi10Activities2V114UserActivities14UserActivities12getAccountIdEv +_ZNK3sce2Np9CppWebApi10Activities2V114UserActivities14UserActivities6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi10Activities2V114UserActivities26GetUsersActivitiesResponse6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi10Activities2V114UserActivities5Error10getMessageEv +_ZNK3sce2Np9CppWebApi10Activities2V114UserActivities5Error11reasonIsSetEv +_ZNK3sce2Np9CppWebApi10Activities2V114UserActivities5Error11sourceIsSetEv +_ZNK3sce2Np9CppWebApi10Activities2V114UserActivities5Error14getReferenceIdEv +_ZNK3sce2Np9CppWebApi10Activities2V114UserActivities5Error16referenceIdIsSetEv +_ZNK3sce2Np9CppWebApi10Activities2V114UserActivities5Error6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi10Activities2V114UserActivities5Error7getCodeEv +_ZNK3sce2Np9CppWebApi10Activities2V114UserActivities5Error9getReasonEv +_ZNK3sce2Np9CppWebApi10Activities2V114UserActivities5Error9getSourceEv +_ZNK3sce2Np9CppWebApi10Activities2V114UserActivities8Activity10getMatchIdEv +_ZNK3sce2Np9CppWebApi10Activities2V114UserActivities8Activity12matchIdIsSetEv +_ZNK3sce2Np9CppWebApi10Activities2V114UserActivities8Activity13getActivityIdEv +_ZNK3sce2Np9CppWebApi10Activities2V114UserActivities8Activity6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi10Activities2V114UserActivities8Activity7getNameEv +_ZNK3sce2Np9CppWebApi10Activities2V114UserActivities8Activity9getHiddenEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V110UserTicket11getPlatformEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V110UserTicket11getTicketIdEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V110UserTicket11statusIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V110UserTicket13platformIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V110UserTicket13ticketIdIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V110UserTicket14getRulesetNameEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V110UserTicket16rulesetNameIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V110UserTicket6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi11Matchmaking2V110UserTicket9getStatusEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V113ErrorResponse6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi11Matchmaking2V113ErrorResponse8getErrorEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead10getNatTypeEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead11getOnlineIdEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead11getPlatformEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead11getTeamNameEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead12getAccountIdEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead12natTypeIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead13onlineIdIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead13platformIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead13teamNameIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead14accountIdIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead21playerAttributesIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead11getOnlineIdEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead11getPlatformEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead11getTeamNameEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead11getTicketIdEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead12getAccountIdEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead13onlineIdIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead13platformIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead13teamNameIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead13ticketIdIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead14accountIdIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody10causeIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody10getOfferIdEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody11getLocationEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody11statusIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody12offerIdIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody12playersIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody13locationIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody14getRulesetNameEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody16rulesetNameIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody18getCreatedDateTimeEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody18getUpdatedDateTimeEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody20createdDateTimeIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody20updatedDateTimeIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody8getCauseEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody9getStatusEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody10getOfferIdEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody11getLocationEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody11getTicketIdEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody11statusIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody12getSubmitterEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody12offerIdIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody12playersIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody13locationIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody13ticketIdIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody14getRulesetNameEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody14submitterIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody16rulesetNameIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody18getCreatedDateTimeEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody18getUpdatedDateTimeEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody20createdDateTimeIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody20updatedDateTimeIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody21ticketAttributesIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody9getStatusEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate10getNatTypeEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate11getPlatformEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate11getTeamNameEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate12getAccountIdEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate12natTypeIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate13teamNameIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate21playerAttributesIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBody11getLocationEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBody13locationIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBody14getRulesetNameEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBody21ticketAttributesIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody11getLocationEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody11getTicketIdEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody11statusIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody12getSubmitterEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody12playersIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody13locationIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody13ticketIdIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody14getRulesetNameEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody14submitterIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody16rulesetNameIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody18getCreatedDateTimeEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody18getUpdatedDateTimeEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody20createdDateTimeIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody20updatedDateTimeIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody21ticketAttributesIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody9getStatusEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V127ListUserTicketsResponseBody12ticketsIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V127ListUserTicketsResponseBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOffer10getofferIdEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOffer13isInitializedEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOffer28getxPsnAcceptPlatformNamePs5Ev +_ZNK3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOffer28hasxPsnAcceptPlatformNamePs5Ev +_ZNK3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOffer7getviewEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOffer7hasviewEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicket11getticketIdEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicket13isInitializedEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicket28getxPsnAcceptPlatformNamePs5Ev +_ZNK3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicket28hasxPsnAcceptPlatformNamePs5Ev +_ZNK3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicket7getviewEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicket7hasviewEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToCancelTicket11getticketIdEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToCancelTicket13isInitializedEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicket13isInitializedEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicket26getsubmitTicketRequestBodyEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicket28getxPsnAcceptPlatformNamePs5Ev +_ZNK3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicket28hasxPsnAcceptPlatformNamePs5Ev +_ZNK3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets12getaccountIdEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets13isInitializedEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets16getrulesetFilterEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets16hasrulesetFilterEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets17getplatformFilterEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets17hasplatformFilterEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets28getxPsnAcceptPlatformNamePs5Ev +_ZNK3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets28hasxPsnAcceptPlatformNamePs5Ev +_ZNK3sce2Np9CppWebApi11Matchmaking2V15Cause11sourceIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V15Cause14getReferenceIdEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V15Cause16referenceIdIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V15Cause6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi11Matchmaking2V15Cause7getCodeEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V15Cause9codeIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V15Cause9getSourceEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V15Error10getMessageEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V15Error14getReferenceIdEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V15Error6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi11Matchmaking2V15Error7getCodeEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V18Location16getGameSessionIdEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V18Location18gameSessionIdIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V18Location6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi11Matchmaking2V19Attribute6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi11Matchmaking2V19Attribute7getNameEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V19Attribute7getTypeEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V19Attribute8getValueEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V19Submitter11getPlatformEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V19Submitter12getAccountIdEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V19Submitter13platformIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V19Submitter14accountIdIsSetEv +_ZNK3sce2Np9CppWebApi11Matchmaking2V19Submitter6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends13isInitializedEv +_ZNK3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends16getaccountIdOrMeEv +_ZNK3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends8getlimitEv +_ZNK3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends8getorderEv +_ZNK3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends8haslimitEv +_ZNK3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends8hasorderEv +_ZNK3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends9getfilterEv +_ZNK3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends9getoffsetEv +_ZNK3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends9hasfilterEv +_ZNK3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends9hasoffsetEv +_ZNK3sce2Np9CppWebApi11UserProfile2V111PresenceApi28ParameterToGetBasicPresences13getaccountIdsEv +_ZNK3sce2Np9CppWebApi11UserProfile2V111PresenceApi28ParameterToGetBasicPresences13isInitializedEv +_ZNK3sce2Np9CppWebApi11UserProfile2V112BasicProfile10getAboutMeEv +_ZNK3sce2Np9CppWebApi11UserProfile2V112BasicProfile11getOnlineIdEv +_ZNK3sce2Np9CppWebApi11UserProfile2V112BasicProfile11getRelationEv +_ZNK3sce2Np9CppWebApi11UserProfile2V112BasicProfile12aboutMeIsSetEv +_ZNK3sce2Np9CppWebApi11UserProfile2V112BasicProfile12avatarsIsSetEv +_ZNK3sce2Np9CppWebApi11UserProfile2V112BasicProfile12getAccountIdEv +_ZNK3sce2Np9CppWebApi11UserProfile2V112BasicProfile13onlineIdIsSetEv +_ZNK3sce2Np9CppWebApi11UserProfile2V112BasicProfile13relationIsSetEv +_ZNK3sce2Np9CppWebApi11UserProfile2V112BasicProfile14accountIdIsSetEv +_ZNK3sce2Np9CppWebApi11UserProfile2V112BasicProfile14languagesIsSetEv +_ZNK3sce2Np9CppWebApi11UserProfile2V112BasicProfile17getPersonalDetailEv +_ZNK3sce2Np9CppWebApi11UserProfile2V112BasicProfile19personalDetailIsSetEv +_ZNK3sce2Np9CppWebApi11UserProfile2V112BasicProfile23getIsOfficiallyVerifiedEv +_ZNK3sce2Np9CppWebApi11UserProfile2V112BasicProfile25isOfficiallyVerifiedIsSetEv +_ZNK3sce2Np9CppWebApi11UserProfile2V112BasicProfile6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi11UserProfile2V113BasicPresence12getAccountIdEv +_ZNK3sce2Np9CppWebApi11UserProfile2V113BasicPresence12getInContextEv +_ZNK3sce2Np9CppWebApi11UserProfile2V113BasicPresence14accountIdIsSetEv +_ZNK3sce2Np9CppWebApi11UserProfile2V113BasicPresence14inContextIsSetEv +_ZNK3sce2Np9CppWebApi11UserProfile2V113BasicPresence15getOnlineStatusEv +_ZNK3sce2Np9CppWebApi11UserProfile2V113BasicPresence17onlineStatusIsSetEv +_ZNK3sce2Np9CppWebApi11UserProfile2V113BasicPresence6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi11UserProfile2V114PersonalDetail11getLastNameEv +_ZNK3sce2Np9CppWebApi11UserProfile2V114PersonalDetail12getFirstNameEv +_ZNK3sce2Np9CppWebApi11UserProfile2V114PersonalDetail13getMiddleNameEv +_ZNK3sce2Np9CppWebApi11UserProfile2V114PersonalDetail13lastNameIsSetEv +_ZNK3sce2Np9CppWebApi11UserProfile2V114PersonalDetail14firstNameIsSetEv +_ZNK3sce2Np9CppWebApi11UserProfile2V114PersonalDetail14getDisplayNameEv +_ZNK3sce2Np9CppWebApi11UserProfile2V114PersonalDetail15middleNameIsSetEv +_ZNK3sce2Np9CppWebApi11UserProfile2V114PersonalDetail16displayNameIsSetEv +_ZNK3sce2Np9CppWebApi11UserProfile2V114PersonalDetail20profilePicturesIsSetEv +_ZNK3sce2Np9CppWebApi11UserProfile2V114PersonalDetail6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfile12getaccountIdEv +_ZNK3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfile13isInitializedEv +_ZNK3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfile14getlanguageSetEv +_ZNK3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfile14haslanguageSetEv +_ZNK3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfile16getincludeFieldsEv +_ZNK3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfile16hasincludeFieldsEv +_ZNK3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfiles13getaccountIdsEv +_ZNK3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfiles13isInitializedEv +_ZNK3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfiles14getlanguageSetEv +_ZNK3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfiles14haslanguageSetEv +_ZNK3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfiles16getincludeFieldsEv +_ZNK3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfiles16hasincludeFieldsEv +_ZNK3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse13getNextOffsetEv +_ZNK3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse15nextOffsetIsSetEv +_ZNK3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse17getPreviousOffsetEv +_ZNK3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse17getTotalItemCountEv +_ZNK3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse19previousOffsetIsSetEv +_ZNK3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse19totalItemCountIsSetEv +_ZNK3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponse13getNextOffsetEv +_ZNK3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponse15nextOffsetIsSetEv +_ZNK3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponse17getPreviousOffsetEv +_ZNK3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponse17getTotalItemCountEv +_ZNK3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponse19previousOffsetIsSetEv +_ZNK3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponse6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse10getAboutMeEv +_ZNK3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse11getOnlineIdEv +_ZNK3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse11getRelationEv +_ZNK3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse12getAccountIdEv +_ZNK3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse13relationIsSetEv +_ZNK3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse14accountIdIsSetEv +_ZNK3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse17getPersonalDetailEv +_ZNK3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse19personalDetailIsSetEv +_ZNK3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse23getIsOfficiallyVerifiedEv +_ZNK3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi11UserProfile2V125GetBasicPresencesResponse6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi11UserProfile2V125GetPublicProfilesResponse6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi11UserProfile2V15Error10getMessageEv +_ZNK3sce2Np9CppWebApi11UserProfile2V15Error14getReferenceIdEv +_ZNK3sce2Np9CppWebApi11UserProfile2V15Error6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi11UserProfile2V15Error7getCodeEv +_ZNK3sce2Np9CppWebApi11UserProfile2V16Avatar6getUrlEv +_ZNK3sce2Np9CppWebApi11UserProfile2V16Avatar6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi11UserProfile2V16Avatar7getSizeEv +_ZNK3sce2Np9CppWebApi11UserProfile2V16Avatar8urlIsSetEv +_ZNK3sce2Np9CppWebApi11UserProfile2V16Avatar9sizeIsSetEv +_ZNK3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsers13isInitializedEv +_ZNK3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsers8getlimitEv +_ZNK3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsers8haslimitEv +_ZNK3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsers9getoffsetEv +_ZNK3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsers9hasoffsetEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V113ErrorResponse6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi12Leaderboards2V113ErrorResponse8getErrorEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody10groupIsSetEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody10limitIsSetEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody10usersIsSetEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody11offsetIsSetEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody17getNpServiceLabelEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody18getStartSerialRankEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody19npServiceLabelIsSetEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody20getCenterToEdgeLimitEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody20startSerialRankIsSetEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody21getUserCenteredAroundEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody22centerToEdgeLimitIsSetEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody23userCenteredAroundIsSetEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody24getNeedsRecordedDateTimeEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody26needsRecordedDateTimeIsSetEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody8getGroupEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody8getLimitEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody9getOffsetEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V122GetRankingResponseBody12entriesIsSetEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V122GetRankingResponseBody18getTotalEntryCountEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V122GetRankingResponseBody22getLastUpdatedDateTimeEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V122GetRankingResponseBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody10getCommentEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody11getObjectIdEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody12commentIsSetEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody12getSmallDataEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody13objectIdIsSetEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody14smallDataIsSetEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody15getNeedsTmpRankEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody15getWaitsForDataEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody17getNpServiceLabelEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody17needsTmpRankIsSetEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody17waitsForDataIsSetEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody19getComparedDateTimeEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody19npServiceLabelIsSetEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody21comparedDateTimeIsSetEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody7getPcIdEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody8getScoreEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody9pcIdIsSetEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V123RecordScoreResponseBody10getTmpRankEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V123RecordScoreResponseBody16getTmpSerialRankEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V123RecordScoreResponseBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi12Leaderboards2V127RecordLargeDataResponseBody11getObjectIdEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V127RecordLargeDataResponseBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody11getSortModeEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody13getEntryLimitEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody13getUpdateModeEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody13sortModeIsSetEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody15entryLimitIsSetEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody15updateModeIsSetEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody16getMaxScoreLimitEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody16getMinScoreLimitEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody18maxScoreLimitIsSetEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody18minScoreLimitIsSetEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody20getLargeDataNumLimitEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody21getLargeDataSizeLimitEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody22largeDataNumLimitIsSetEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody23largeDataSizeLimitIsSetEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi12Leaderboards2V14User12getAccountIdEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V14User14accountIdIsSetEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V14User6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi12Leaderboards2V14User7getPcIdEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V14User9pcIdIsSetEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry10getCommentEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry11getObjectIdEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry11getOnlineIdEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry12commentIsSetEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry12getAccountIdEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry12getSmallDataEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry13getSerialRankEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry13objectIdIsSetEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry14getHighestRankEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry14smallDataIsSetEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry19getRecordedDateTimeEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry20getHighestSerialRankEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry21recordedDateTimeIsSetEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry7getPcIdEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry7getRankEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry8getScoreEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry9pcIdIsSetEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V15Error10getMessageEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V15Error14getReferenceIdEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V15Error16referenceIdIsSetEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V15Error6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi12Leaderboards2V15Error7getCodeEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRanking10getboardIdEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRanking13isInitializedEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRanking24getgetRankingRequestBodyEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRanking24hasgetRankingRequestBodyEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId10getifMatchEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId10hasifMatchEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId11getobjectIdEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId13isInitializedEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId17getnpServiceLabelEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId17hasnpServiceLabelEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId8getrangeEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId8hasrangeEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeaders15getLastModifiedEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeaders15hasLastModifiedEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeaders7getETagEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeaders7hasETagEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinition10getboardIdEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinition13isInitializedEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinition17getnpServiceLabelEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinition17hasnpServiceLabelEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinition9getfieldsEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinition9hasfieldsEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScore10getboardIdEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScore13isInitializedEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScore22getxPsnAtomicOperationEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScore22hasxPsnAtomicOperationEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScore24getxPsnAtomicOperationIdEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScore24hasxPsnAtomicOperationIdEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScore25getrecordScoreRequestBodyEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData10getboardIdEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData13isInitializedEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData21getxPsnNpServiceLabelEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData21hasxPsnNpServiceLabelEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData22getxPsnAtomicOperationEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData22hasxPsnAtomicOperationEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData24getxPsnAtomicOperationIdEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData24hasxPsnAtomicOperationIdEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi26RecordScoreResponseHeaders24getXPsnAtomicOperationIdEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi26RecordScoreResponseHeaders24hasXPsnAtomicOperationIdEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeaders24getXPsnAtomicOperationIdEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeaders24hasXPsnAtomicOperationIdEv +_ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi47ParameterWithBinaryRequestBodyToRecordLargeData14getRequestBodyEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V511ErrorEntity10errorIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V511ErrorEntity6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi13InGameCatalog2V511ErrorEntity8getErrorEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer10getuseFreeEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer10hasuseFreeEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer12getdirectionEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer12hasdirectionEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer13isInitializedEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer14getkeepHtmlTagEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer14getserviceNameEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer14haskeepHtmlTagEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer14hasserviceNameEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer15getcontainerIdsEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer15getserviceLabelEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer15hascontainerIdsEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer15hasserviceLabelEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer17getacceptLanguageEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer17hasacceptLanguageEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer20getuseCurrencySymbolEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer20hasuseCurrencySymbolEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer7getsortEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer7hassortEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer8getlimitEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer8haslimitEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer9getoffsetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer9hasoffsetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V513ContentRating11systemIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V513ContentRating6getUrlEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V513ContentRating6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi13InGameCatalog2V513ContentRating7getNameEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V513ContentRating8urlIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V513ContentRating9getSystemEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V513ContentRating9nameIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V514ContainerMedia11imagesIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V514ContainerMedia6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi13InGameCatalog2V515ContainerRating10countIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V515ContainerRating10scoreIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V515ContainerRating10totalIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V515ContainerRating6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi13InGameCatalog2V515ContainerRating8getScoreEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V515ContainerRating8getTotalEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V517ContentDescriptor6getUrlEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V517ContentDescriptor6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi13InGameCatalog2V517ContentDescriptor7getNameEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V517ContentDescriptor8urlIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V520ContainerRatingCount10countIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V520ContainerRatingCount10scoreIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V520ContainerRatingCount6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi13InGameCatalog2V520ContainerRatingCount8getCountEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V520ContainerRatingCount8getScoreEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V525ContentInteractiveElement6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi13InGameCatalog2V525ContentInteractiveElement7getNameEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku10getEndDateEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku10labelIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku10priceIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku11getUseLimitEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku12endDateIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku14getIsPlusPriceEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku15getDisplayPriceEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku16getOriginalPriceEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku16isPlusPriceIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku17displayPriceIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku17getAnnotationNameEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku18getPlusUpsellPriceEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku18originalPriceIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku19annotationNameIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku20plusUpsellPriceIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku23getDisplayOriginalPriceEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku25displayOriginalPriceIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku25getDisplayPlusUpsellPriceEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku27displayPlusUpsellPriceIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku5getIdEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku7getNameEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku7getTypeEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku7idIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku8getLabelEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku8getPriceEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku9nameIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku9typeIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V55Error10getMessageEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V55Error11reasonIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V55Error11sourceIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V55Error12messageIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V55Error14getReferenceIdEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V55Error16referenceIdIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V55Error6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi13InGameCatalog2V55Error7getCodeEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V55Error9codeIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V55Error9getReasonEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V55Error9getSourceEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V55Image11formatIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V55Image6getUrlEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V55Image6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi13InGameCatalog2V55Image7getTypeEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V55Image9getFormatEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V55Image9typeIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product10getVersionEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product10labelIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product10mediaIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product11getAgeLimitEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product11ratingIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product12getPublisherEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product12versionIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product13ageLimitIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product14getContentTypeEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product14getDescriptionEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product14getDisplayNameEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product14getReleaseDateEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product14platformsIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product14publisherIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product16contentTypeIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product16descriptionIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product16getContentRatingEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product16releaseDateIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product18contentRatingIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product23contentDescriptorsIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product31contentInteractiveElementsIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product5getIdEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product7getTypeEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product8getLabelEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product8getMediaEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product9getRatingEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product9skusIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container10getVersionEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container10labelIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container10mediaIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container11getAgeLimitEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container11ratingIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container12getPublisherEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container12versionIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container13ageLimitIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container13childrenIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container14getContentTypeEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container14getDescriptionEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container14getDisplayNameEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container14getReleaseDateEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container14platformsIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container14publisherIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container16contentTypeIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container16descriptionIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container16getContentRatingEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container16releaseDateIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container17getTotalItemCountEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container18contentRatingIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container19totalItemCountIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container23contentDescriptorsIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container31contentInteractiveElementsIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container5getIdEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container7getTypeEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container8getLabelEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container8getMediaEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container9getRatingEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container9skusIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V59Publisher6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi13InGameCatalog2V59Publisher7getIconEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V59Publisher7getNameEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V59Publisher9iconIsSetEv +_ZNK3sce2Np9CppWebApi13InGameCatalog2V59Publisher9nameIsSetEv +_ZNK3sce2Np9CppWebApi14ConnectAccount2V212PartnerToken12getExpiresInEv +_ZNK3sce2Np9CppWebApi14ConnectAccount2V212PartnerToken12getTokenTypeEv +_ZNK3sce2Np9CppWebApi14ConnectAccount2V212PartnerToken14getAccessTokenEv +_ZNK3sce2Np9CppWebApi14ConnectAccount2V212PartnerToken20getAccessTokenSecretEv +_ZNK3sce2Np9CppWebApi14ConnectAccount2V212PartnerToken22accessTokenSecretIsSetEv +_ZNK3sce2Np9CppWebApi14ConnectAccount2V212PartnerToken6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14ConnectAccount2V214PSNError_error10getMessageEv +_ZNK3sce2Np9CppWebApi14ConnectAccount2V214PSNError_error14getReferenceIdEv +_ZNK3sce2Np9CppWebApi14ConnectAccount2V214PSNError_error16referenceIdIsSetEv +_ZNK3sce2Np9CppWebApi14ConnectAccount2V214PSNError_error6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14ConnectAccount2V214PSNError_error7getCodeEv +_ZNK3sce2Np9CppWebApi14ConnectAccount2V215AccountLinksApi28ParameterToDeleteAccountLink12getpartnerIdEv +_ZNK3sce2Np9CppWebApi14ConnectAccount2V215AccountLinksApi28ParameterToDeleteAccountLink13isInitializedEv +_ZNK3sce2Np9CppWebApi14ConnectAccount2V216PartnerTokensApi26ParameterToGetPartnerToken12getpartnerIdEv +_ZNK3sce2Np9CppWebApi14ConnectAccount2V216PartnerTokensApi26ParameterToGetPartnerToken13isInitializedEv +_ZNK3sce2Np9CppWebApi14ConnectAccount2V216PartnerTokensApi26ParameterToGetPartnerToken24getdeepTokenVerificationEv +_ZNK3sce2Np9CppWebApi14ConnectAccount2V28PSNError6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14ConnectAccount2V28PSNError8getErrorEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap11getOnlineIdEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap12getAccountIdEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap12getIsCurrentEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap13getIsRecycledEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap14accountIdIsSetEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap14isCurrentIsSetEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap15isRecycledIsSetEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14IdentityMapper2V311PsnWebError6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14IdentityMapper2V311PsnWebError8getErrorEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V312AccountIdMap11getOnlineIdEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V312AccountIdMap12getAccountIdEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V312AccountIdMap13onlineIdIsSetEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V312AccountIdMap6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetAccountId2OnlineId12getaccountIdEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetAccountId2OnlineId13isInitializedEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountId11getonlineIdEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountId13isInitializedEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountId15getasOfDateTimeEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountId15hasasOfDateTimeEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeaders15getCacheControlEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeaders15hasCacheControlEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeaders15getCacheControlEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeaders15hasCacheControlEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeAccountId2OnlineIdBatch13isInitializedEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeAccountId2OnlineIdBatch5getidEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeOnlineId2AccountIdBatch13isInitializedEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeOnlineId2AccountIdBatch5getidEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeaders15getCacheControlEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeaders15hasCacheControlEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeaders15getCacheControlEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeaders15hasCacheControlEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error10getMessageEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error11errorsIsSetEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error11reasonIsSetEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error11sourceIsSetEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error12messageIsSetEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error14getReferenceIdEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error16referenceIdIsSetEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error7getCodeEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error9getReasonEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error9getSourceEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors10getMessageEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors12messageIsSetEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors20missingElementsIsSetEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors23getValidationConstraintEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors25validationConstraintIsSetEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors29validationConstraintInfoIsSetEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors7getPathEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors9pathIsSetEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V333PsnWebError_error_missingElements6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14IdentityMapper2V333PsnWebError_error_missingElements7getNameEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V333PsnWebError_error_missingElements9nameIsSetEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V342PsnWebError_error_validationConstraintInfo6getKeyEv +_ZNK3sce2Np9CppWebApi14IdentityMapper2V342PsnWebError_error_validationConstraintInfo6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14IdentityMapper2V342PsnWebError_error_validationConstraintInfo8getValueEv +_ZNK3sce2Np9CppWebApi14SessionManager2V110FromMember11getOnlineIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V110FromMember11getPlatformEv +_ZNK3sce2Np9CppWebApi14SessionManager2V110FromMember12getAccountIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V110FromMember6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V111GameSession12getSessionIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V111GameSession6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V111GameSession9getMemberEv +_ZNK3sce2Np9CppWebApi14SessionManager2V112JoinableUser12getAccountIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V112JoinableUser6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V112NonPsnLeader11getPlayerIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V112NonPsnLeader13getPlayerNameEv +_ZNK3sce2Np9CppWebApi14SessionManager2V112NonPsnLeader6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V113ErrorResponse6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V113ErrorResponse8getErrorEv +_ZNK3sce2Np9CppWebApi14SessionManager2V113PlayerSession12getSessionIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V113PlayerSession6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V113PlayerSession9getMemberEv +_ZNK3sce2Np9CppWebApi14SessionManager2V114Representative11getOnlineIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V114Representative11getPlatformEv +_ZNK3sce2Np9CppWebApi14SessionManager2V114Representative12getAccountIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V114Representative6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions13isInitializedEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions16getincludeFieldsEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions16hasincludeFieldsEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions17getacceptLanguageEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions17hasacceptLanguageEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions18getjoinStateFilterEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions18hasjoinStateFilterEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions25getusePlayerSessionFilterEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions25hasusePlayerSessionFilterEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions28getxPsnAcceptPlatformNamePs5Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions28hasxPsnAcceptPlatformNamePs5Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions31getxPSNSESSIONMANAGERSESSIONIDSEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions7getviewEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions7hasviewEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions9getfieldsEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions9hasfieldsEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi27ParameterToLeaveGameSession12getaccountIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi27ParameterToLeaveGameSession12getsessionIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi27ParameterToLeaveGameSession13isInitializedEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi28ParameterToDeleteGameSession12getsessionIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi28ParameterToDeleteGameSession13isInitializedEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessions13isInitializedEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessions28getxPsnAcceptPlatformNamePs5Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessions28hasxPsnAcceptPlatformNamePs5Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessions30getpostGameSessionsRequestBodyEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi32ParameterToPostGameSessionsTouch12getsessionIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi32ParameterToPostGameSessionsTouch13isInitializedEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearch13isInitializedEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearch14getsearchIndexEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearch36getpostGameSessionsSearchRequestBodyEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearch8getlimitEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearch8haslimitEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToSendGameSessionMessage12getsessionIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToSendGameSessionMessage13isInitializedEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToSendGameSessionMessage53getpostGameSessionsSessionIdSessionMessageRequestBodyEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayer12getsessionIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayer13isInitializedEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayer28getxPsnAcceptPlatformNamePs5Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayer28hasxPsnAcceptPlatformNamePs5Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayer52getpostGameSessionsSessionIdMemberPlayersRequestBodyEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi35ParameterToSetGameSessionProperties12getsessionIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi35ParameterToSetGameSessionProperties13isInitializedEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi35ParameterToSetGameSessionProperties40getpatchGameSessionsSessionIdRequestBodyEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectator12getsessionIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectator13isInitializedEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectator28getxPsnAcceptPlatformNamePs5Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectator28hasxPsnAcceptPlatformNamePs5Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectator55getpostGameSessionsSessionIdMemberSpectatorsRequestBodyEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser12getaccountIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser13isInitializedEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser15getmemberFilterEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser15hasmemberFilterEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser17getplatformFilterEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser17hasplatformFilterEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser18getjoinStateFilterEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser18hasjoinStateFilterEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser25getusePlayerSessionFilterEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser25hasusePlayerSessionFilterEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser28getxPsnAcceptPlatformNamePs5Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser28hasxPsnAcceptPlatformNamePs5Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser9getfieldsEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser9hasfieldsEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi42ParameterToPutGameSessionsSearchAttributes12getsessionIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi42ParameterToPutGameSessionsSearchAttributes13isInitializedEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi42ParameterToPutGameSessionsSearchAttributes45getputGameSessionsSearchAttributesRequestBodyEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi44ParameterToPatchGameSessionsSearchAttributes12getsessionIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi44ParameterToPatchGameSessionsSearchAttributes13isInitializedEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi44ParameterToPatchGameSessionsSearchAttributes47getpatchGameSessionsSearchAttributesRequestBodyEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemProperties12getaccountIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemProperties12getsessionIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemProperties13isInitializedEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemProperties56getpatchGameSessionsSessionIdMembersAccountIdRequestBodyEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115LocalizedString18getDefaultLanguageEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115LocalizedString6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V115SearchCondition10valueIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115SearchCondition11getOperatorEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115SearchCondition11valuesIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115SearchCondition12getAttributeEv +_ZNK3sce2Np9CppWebApi14SessionManager2V115SearchCondition6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V115SearchCondition8getValueEv +_ZNK3sce2Np9CppWebApi14SessionManager2V116FromNonPsnMember11getPlayerIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V116FromNonPsnMember13getPlayerNameEv +_ZNK3sce2Np9CppWebApi14SessionManager2V116FromNonPsnMember6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10getString1Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10getString2Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10getString3Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10getString4Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10getString5Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10getString6Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10getString7Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10getString8Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10getString9Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getBoolean1Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getBoolean2Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getBoolean3Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getBoolean4Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getBoolean5Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getBoolean6Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getBoolean7Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getBoolean8Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getBoolean9Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getInteger1Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getInteger2Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getInteger3Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getInteger4Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getInteger5Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getInteger6Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getInteger7Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getInteger8Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getInteger9Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getString10Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12getBoolean10Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12getInteger10Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12string1IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12string2IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12string3IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12string4IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12string5IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12string6IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12string7IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12string8IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12string9IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13boolean1IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13boolean2IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13boolean3IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13boolean4IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13boolean5IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13boolean6IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13boolean7IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13boolean8IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13boolean9IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13integer1IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13integer2IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13integer3IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13integer4IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13integer5IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13integer6IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13integer7IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13integer8IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13integer9IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13string10IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes14boolean10IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes14integer10IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer10getNatTypeEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer11getOnlineIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer11getPlatformEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer12getAccountIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer12getJoinStateEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer12natTypeIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer14getCustomData1Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer14joinStateIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer16customData1IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer16getJoinTimestampEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions13isInitializedEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions17getacceptLanguageEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions17hasacceptLanguageEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions28getxPsnAcceptPlatformNamePs5Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions28hasxPsnAcceptPlatformNamePs5Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions31getxPSNSESSIONMANAGERSESSIONIDSEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions35getxPSNSESSIONMANAGERNONPSNCALLERIDEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions35hasxPSNSESSIONMANAGERNONPSNCALLERIDEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions9getfieldsEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions9hasfieldsEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSession12getaccountIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSession12getsessionIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSession13isInitializedEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSession35getxPSNSESSIONMANAGERNONPSNCALLERIDEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSession35hasxPSNSESSIONMANAGERNONPSNCALLERIDEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessions13isInitializedEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessions28getxPsnAcceptPlatformNamePs5Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessions28hasxPsnAcceptPlatformNamePs5Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessions32getpostPlayerSessionsRequestBodyEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessions35getxPSNSESSIONMANAGERNONPSNCALLERIDEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessions35hasxPSNSESSIONMANAGERNONPSNCALLERIDEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessions13isInitializedEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessions17getacceptLanguageEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessions17hasacceptLanguageEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessions31getxPSNSESSIONMANAGERACCOUNTIDSEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessions31hasxPSNSESSIONMANAGERACCOUNTIDSEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToSendPlayerSessionMessage12getsessionIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToSendPlayerSessionMessage13isInitializedEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToSendPlayerSessionMessage55getpostPlayerSessionsSessionIdSessionMessageRequestBodyEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeader12getsessionIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeader13isInitializedEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeader35getxPSNSESSIONMANAGERNONPSNCALLERIDEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeader35hasxPSNSESSIONMANAGERNONPSNCALLERIDEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeader46getputPlayerSessionsSessionIdLeaderRequestBodyEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer12getsessionIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer13isInitializedEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer28getxPsnAcceptPlatformNamePs5Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer28hasxPsnAcceptPlatformNamePs5Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer34getxPSNSESSIONMANAGERREQUESTORIGINEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer34hasxPSNSESSIONMANAGERREQUESTORIGINEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer39getxPSNSESSIONMANAGERREQUESTEXACTORIGINEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer39hasxPSNSESSIONMANAGERREQUESTEXACTORIGINEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer54getpostPlayerSessionsSessionIdMemberPlayersRequestBodyEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionProperties12getsessionIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionProperties13isInitializedEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionProperties35getxPSNSESSIONMANAGERNONPSNCALLERIDEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionProperties35hasxPSNSESSIONMANAGERNONPSNCALLERIDEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionProperties42getpatchPlayerSessionsSessionIdRequestBodyEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations12getaccountIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations13isInitializedEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations26getinvitationInvalidFilterEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations26hasinvitationInvalidFilterEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations28getxPsnAcceptPlatformNamePs5Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations28hasxPsnAcceptPlatformNamePs5Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations34getxPSNSESSIONMANAGERINVITATIONIDSEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations34hasxPSNSESSIONMANAGERINVITATIONIDSEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations9getfieldsEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations9hasfieldsEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectator12getsessionIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectator13isInitializedEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectator28getxPsnAcceptPlatformNamePs5Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectator28hasxPsnAcceptPlatformNamePs5Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectator57getpostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitations12getsessionIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitations13isInitializedEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitations35getxPSNSESSIONMANAGERNONPSNCALLERIDEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitations35hasxPSNSESSIONMANAGERNONPSNCALLERIDEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitations52getpostPlayerSessionsSessionIdInvitationsRequestBodyEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser12getaccountIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser13isInitializedEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser15getmemberFilterEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser15hasmemberFilterEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser17getplatformFilterEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser17hasplatformFilterEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser28getxPsnAcceptPlatformNamePs5Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser28hasxPsnAcceptPlatformNamePs5Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeader12getsessionIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeader13isInitializedEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeader35getxPSNSESSIONMANAGERNONPSNCALLERIDEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeader35hasxPSNSESSIONMANAGERNONPSNCALLERIDEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeader43getputPlayerSessionsNonPsnLeaderRequestBodyEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsers12getsessionIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsers13isInitializedEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsers35getxPSNSESSIONMANAGERNONPSNCALLERIDEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsers35hasxPSNSESSIONMANAGERNONPSNCALLERIDEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsers63getpostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayer11getplayerIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayer12getsessionIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayer13isInitializedEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayer35getxPSNSESSIONMANAGERNONPSNCALLERIDEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayer35hasxPSNSESSIONMANAGERNONPSNCALLERIDEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemProperties12getaccountIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemProperties12getsessionIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemProperties13isInitializedEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemProperties58getpatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsers12getsessionIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsers13isInitializedEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsers31getxPSNSESSIONMANAGERACCOUNTIDSEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsers35getxPSNSESSIONMANAGERNONPSNCALLERIDEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsers35hasxPSNSESSIONMANAGERNONPSNCALLERIDEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117SearchGameSession12getSessionIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117SearchGameSession14sessionIdIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V117SearchGameSession6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead11memberIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead12getSessionIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead13getMaxPlayersEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead13getSearchableEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead14getCustomData1Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead14getCustomData2Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead14getMatchmakingEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead14getSearchIndexEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead14sessionIdIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead15getJoinDisabledEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead15maxPlayersIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead15searchableIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead16customData1IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead16customData2IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead16getMaxSpectatorsEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead16matchmakingIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead16searchIndexIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead17getRepresentativeEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead17joinDisabledIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead18maxSpectatorsIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead19getCreatedTimestampEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead19getSearchAttributesEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead19getUsePlayerSessionEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead19representativeIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead21createdTimestampIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead21searchAttributesIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead21usePlayerSessionIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead23supportedPlatformsIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead28getReservationTimeoutSecondsEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead30reservationTimeoutSecondsIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead9getMemberEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118LeaderWithOnlineId11getOnlineIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118LeaderWithOnlineId11getPlatformEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118LeaderWithOnlineId12getAccountIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118LeaderWithOnlineId6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V118MatchmakingForRead10getOfferIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118MatchmakingForRead6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession13getMaxPlayersEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession13getSearchableEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession14getCustomData1Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession14getCustomData2Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession14getSearchIndexEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession15getJoinDisabledEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession15searchableIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession16customData1IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession16customData2IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession16getMaxSpectatorsEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession16searchIndexIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession17joinDisabledIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession18maxSpectatorsIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession19getSearchAttributesEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession19getUsePlayerSessionEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession21searchAttributesIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession21usePlayerSessionIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession28getReservationTimeoutSecondsEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession30reservationTimeoutSecondsIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession9getMemberEv +_ZNK3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayer11getOnlineIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayer11getPlatformEv +_ZNK3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayer12getAccountIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayer14getCustomData1Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayer16customData1IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayer16getJoinTimestampEv +_ZNK3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayer6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator10getNatTypeEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator11getOnlineIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator11getPlatformEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator12getAccountIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator12getJoinStateEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator12natTypeIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator14getCustomData1Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator14joinStateIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator16customData1IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator16getJoinTimestampEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead11leaderIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead11memberIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead12getSessionIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead13getMaxPlayersEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead14getCustomData1Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead14getCustomData2Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead14getSessionNameEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead14sessionIdIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead15getJoinDisabledEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead15getNonPsnLeaderEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead15maxPlayersIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead16customData1IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead16customData2IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead16getMaxSpectatorsEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead16getSwapSupportedEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead16sessionNameIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead17joinDisabledIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead17nonPsnLeaderIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead18getNonPsnSupportedEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead18maxSpectatorsIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead18swapSupportedIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead19getCreatedTimestampEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead19getJoinableUserTypeEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead20getInvitableUserTypeEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead20nonPsnSupportedIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead21createdTimestampIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead21joinableUserTypeIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead21leaderPrivilegesIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead22invitableUserTypeIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead23getLocalizedSessionNameEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead23supportedPlatformsIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead24disableSystemUiMenuIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead25localizedSessionNameIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead27joinableSpecifiedUsersIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead30exclusiveLeaderPrivilegesIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead9getLeaderEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead9getMemberEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession13getMaxPlayersEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession14getCustomData1Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession14getCustomData2Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession15getJoinDisabledEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession16customData1IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession16customData2IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession16getMaxSpectatorsEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession16getSwapSupportedEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession17getExpirationTimeEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession17joinDisabledIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession18getNonPsnSupportedEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession18maxSpectatorsIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession18swapSupportedIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession19expirationTimeIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession19getJoinableUserTypeEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession20getInvitableUserTypeEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession20nonPsnSupportedIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession21joinableUserTypeIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession21leaderPrivilegesIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession22invitableUserTypeIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession23getLocalizedSessionNameEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession24disableSystemUiMenuIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession30exclusiveLeaderPrivilegesIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession9getMemberEv +_ZNK3sce2Np9CppWebApi14SessionManager2V122GameSessionPushContext16getPushContextIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V122GameSessionPushContext6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectator11getOnlineIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectator11getPlatformEv +_ZNK3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectator12getAccountIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectator14getCustomData1Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectator16customData1IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectator16getJoinTimestampEv +_ZNK3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectator6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V123MemberWithMultiPlatform11getPlatformEv +_ZNK3sce2Np9CppWebApi14SessionManager2V123MemberWithMultiPlatform12getAccountIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V123MemberWithMultiPlatform6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V124GameSessionMemberForRead12playersIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V124GameSessionMemberForRead15spectatorsIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V124GameSessionMemberForRead6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V124PlayerSessionPushContext16getPushContextIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V124PlayerSessionPushContext6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer10getNatTypeEv +_ZNK3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer11getPlatformEv +_ZNK3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer12getAccountIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer12getJoinStateEv +_ZNK3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer12natTypeIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer14getCustomData1Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer14joinStateIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer16customData1IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer17pushContextsIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession11getPlatformEv +_ZNK3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession12getSessionIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession13platformIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession14getSessionNameEv +_ZNK3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession14sessionIdIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession16sessionNameIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession23getPlayerJoinableStatusEv +_ZNK3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession25playerJoinableStatusIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession26getSpectatorJoinableStatusEv +_ZNK3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession28spectatorJoinableStatusIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayer11getPlayerIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayer13getPlayerNameEv +_ZNK3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayer14getCustomData1Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayer16customData1IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayer16getJoinTimestampEv +_ZNK3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayer6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V125ResponseGameSessionPlayer11getPlatformEv +_ZNK3sce2Np9CppWebApi14SessionManager2V125ResponseGameSessionPlayer12getAccountIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V125ResponseGameSessionPlayer6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForRead12playersIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForRead15spectatorsIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForRead18nonPsnPlayersIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForRead6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayer11getPlatformEv +_ZNK3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayer12getAccountIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayer14getCustomData1Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayer16customData1IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayer17pushContextsIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayer6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V127GetGameSessionsResponseBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V127PostGameSessionsRequestBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator10getNatTypeEv +_ZNK3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator11getPlatformEv +_ZNK3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator12getAccountIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator12natTypeIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator14getCustomData1Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator16customData1IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator17pushContextsIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V127ResponsePlayerSessionPlayer11getPlatformEv +_ZNK3sce2Np9CppWebApi14SessionManager2V127ResponsePlayerSessionPlayer12getAccountIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V127ResponsePlayerSessionPlayer6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V128PostGameSessionsResponseBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer10getNatTypeEv +_ZNK3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer11getPlatformEv +_ZNK3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer12getAccountIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer12getJoinStateEv +_ZNK3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer12natTypeIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer14getCustomData1Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer14joinStateIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer16customData1IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer17pushContextsIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V128ResponseGameSessionSpectator11getPlatformEv +_ZNK3sce2Np9CppWebApi14SessionManager2V128ResponseGameSessionSpectator12getAccountIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V128ResponseGameSessionSpectator6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V129GetPlayerSessionsResponseBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform11getPlatformEv +_ZNK3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform12getJoinStateEv +_ZNK3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform12getSessionIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform13platformIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform14joinStateIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform14sessionIdIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform19getUsePlayerSessionEv +_ZNK3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform21usePlayerSessionIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V129PostPlayerSessionsRequestBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectator11getPlatformEv +_ZNK3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectator12getAccountIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectator14getCustomData1Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectator16customData1IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectator17pushContextsIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectator6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V12To12getAccountIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V12To6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V130PostPlayerSessionsResponseBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V130RequestGameSessionMemberPlayer6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V130RequestPlayerSessionInvitation5getToEv +_ZNK3sce2Np9CppWebApi14SessionManager2V130RequestPlayerSessionInvitation6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V130ResponsePlayerSessionSpectator11getPlatformEv +_ZNK3sce2Np9CppWebApi14SessionManager2V130ResponsePlayerSessionSpectator12getAccountIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V130ResponsePlayerSessionSpectator6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V131JoinedPlayerSessionWithPlatform11getPlatformEv +_ZNK3sce2Np9CppWebApi14SessionManager2V131JoinedPlayerSessionWithPlatform12getSessionIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V131JoinedPlayerSessionWithPlatform13platformIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V131JoinedPlayerSessionWithPlatform14sessionIdIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V131JoinedPlayerSessionWithPlatform6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V131ResponseGameSessionMemberPlayer6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V131ResponsePlayerSessionInvitation15getInvitationIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V131ResponsePlayerSessionInvitation6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayer11getPlatformEv +_ZNK3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayer12getAccountIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayer14getCustomData1Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayer16customData1IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayer6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V132RequestPlayerSessionMemberPlayer12playersIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V132RequestPlayerSessionMemberPlayer18nonPsnPlayersIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V132RequestPlayerSessionMemberPlayer6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsSearchRequestBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsTouchResponseBody18getTouchedDateTimeEv +_ZNK3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsTouchResponseBody20touchedDateTimeIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsTouchResponseBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionMemberPlayer12playersIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionMemberPlayer18nonPsnPlayersIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionMemberPlayer6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionNonPsnPlayer11getPlayerIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionNonPsnPlayer6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V134PostGameSessionsSearchResponseBody17gameSessionsIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V134PostGameSessionsSearchResponseBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V136GetFriendsPlayerSessionsResponseBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead12getSessionIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead14sessionIdIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead15getInvitationIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead17invitationIdIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead19getFromNonPsnPlayerEv +_ZNK3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead20getInvitationInvalidEv +_ZNK3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead20getReceivedTimestampEv +_ZNK3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead21fromNonPsnPlayerIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead22invitationInvalidIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead22receivedTimestampIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead23supportedPlatformsIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead7getFromEv +_ZNK3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead9fromIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody13getMaxPlayersEv +_ZNK3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody13getSearchableEv +_ZNK3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody14getCustomData1Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody14getCustomData2Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody15getJoinDisabledEv +_ZNK3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody15maxPlayersIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody15searchableIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody16customData1IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody16customData2IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody16getMaxSpectatorsEv +_ZNK3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody17joinDisabledIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody18maxSpectatorsIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayer11getPlayerIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayer13getPlayerNameEv +_ZNK3sce2Np9CppWebApi14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayer14getCustomData1Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayer16customData1IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayer6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody13getMaxPlayersEv +_ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody14getCustomData1Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody14getCustomData2Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody15getJoinDisabledEv +_ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody15maxPlayersIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody16customData1IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody16customData2IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody16getMaxSpectatorsEv +_ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody16getSwapSupportedEv +_ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody17joinDisabledIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody18maxSpectatorsIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody18swapSupportedIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody19getJoinableUserTypeEv +_ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody20getInvitableUserTypeEv +_ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody21joinableUserTypeIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody21leaderPrivilegesIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody22invitableUserTypeIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody23getLocalizedSessionNameEv +_ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody24disableSystemUiMenuIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody25localizedSessionNameIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody30exclusiveLeaderPrivilegesIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBody11getPlayerIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V141GetUsersAccountIdGameSessionsResponseBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10getString1Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10getString2Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10getString3Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10getString4Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10getString5Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10getString6Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10getString7Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10getString8Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10getString9Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getBoolean1Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getBoolean2Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getBoolean3Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getBoolean4Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getBoolean5Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getBoolean6Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getBoolean7Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getBoolean8Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getBoolean9Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getInteger1Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getInteger2Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getInteger3Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getInteger4Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getInteger5Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getInteger6Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getInteger7Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getInteger8Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getInteger9Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getString10Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12getBoolean10Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12getInteger10Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12string1IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12string2IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12string3IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12string4IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12string5IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12string6IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12string7IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12string8IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12string9IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13boolean1IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13boolean2IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13boolean3IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13boolean4IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13boolean5IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13boolean6IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13boolean7IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13boolean8IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13boolean9IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13integer1IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13integer2IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13integer3IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13integer4IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13integer5IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13integer6IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13integer7IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13integer8IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13integer9IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13string10IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody14boolean10IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody14integer10IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBody11getPlatformEv +_ZNK3sce2Np9CppWebApi14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBody12getAccountIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10getString1Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10getString2Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10getString3Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10getString4Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10getString5Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10getString6Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10getString7Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10getString8Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10getString9Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getBoolean1Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getBoolean2Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getBoolean3Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getBoolean4Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getBoolean5Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getBoolean6Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getBoolean7Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getBoolean8Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getBoolean9Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getInteger1Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getInteger2Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getInteger3Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getInteger4Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getInteger5Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getInteger6Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getInteger7Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getInteger8Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getInteger9Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getString10Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12getBoolean10Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12getInteger10Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12string1IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12string2IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12string3IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12string4IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12string5IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12string6IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12string7IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12string8IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12string9IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13boolean1IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13boolean2IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13boolean3IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13boolean4IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13boolean5IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13boolean6IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13boolean7IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13boolean8IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13boolean9IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13integer1IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13integer2IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13integer3IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13integer4IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13integer5IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13integer6IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13integer7IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13integer8IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13integer9IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13string10IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody14boolean10IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody14integer10IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBody16invitationsIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBody10getPayloadEv +_ZNK3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBody16invitationsIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBody10getPayloadEv +_ZNK3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBody10getNatTypeEv +_ZNK3sce2Np9CppWebApi14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBody12natTypeIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBody14getCustomData1Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBody16customData1IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBody16invitationsIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBody14getCustomData1Ev +_ZNK3sce2Np9CppWebApi14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBody16customData1IsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V15Error10getMessageEv +_ZNK3sce2Np9CppWebApi14SessionManager2V15Error11reasonIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V15Error11sourceIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V15Error14getReferenceIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V15Error16referenceIdIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V15Error6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V15Error7getCodeEv +_ZNK3sce2Np9CppWebApi14SessionManager2V15Error9getReasonEv +_ZNK3sce2Np9CppWebApi14SessionManager2V15Error9getSourceEv +_ZNK3sce2Np9CppWebApi14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi14SessionManager2V16Friend11getOnlineIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V16Friend12getAccountIdEv +_ZNK3sce2Np9CppWebApi14SessionManager2V16Friend13onlineIdIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V16Friend14accountIdIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V16Friend19playerSessionsIsSetEv +_ZNK3sce2Np9CppWebApi14SessionManager2V16Friend6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallback12geteventTypeEv +_ZNK3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallback13isInitializedEv +_ZNK3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallback8getimpIdEv +_ZNK3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallback9getslotIdEv +_ZNK3sce2Np9CppWebApi15Personalization2V111ErrorEntity10errorIsSetEv +_ZNK3sce2Np9CppWebApi15Personalization2V111ErrorEntity6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi15Personalization2V111ErrorEntity8getErrorEv +_ZNK3sce2Np9CppWebApi15Personalization2V121GetAccessCodeResponse12getExpiresAtEv +_ZNK3sce2Np9CppWebApi15Personalization2V121GetAccessCodeResponse6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi15Personalization2V121GetAccessCodeResponse7getCodeEv +_ZNK3sce2Np9CppWebApi15Personalization2V121GetAccessCodeResponse7getSaidEv +_ZNK3sce2Np9CppWebApi15Personalization2V15Error10getMessageEv +_ZNK3sce2Np9CppWebApi15Personalization2V15Error11reasonIsSetEv +_ZNK3sce2Np9CppWebApi15Personalization2V15Error11sourceIsSetEv +_ZNK3sce2Np9CppWebApi15Personalization2V15Error12messageIsSetEv +_ZNK3sce2Np9CppWebApi15Personalization2V15Error14getReferenceIdEv +_ZNK3sce2Np9CppWebApi15Personalization2V15Error16referenceIdIsSetEv +_ZNK3sce2Np9CppWebApi15Personalization2V15Error6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi15Personalization2V15Error7getCodeEv +_ZNK3sce2Np9CppWebApi15Personalization2V15Error9codeIsSetEv +_ZNK3sce2Np9CppWebApi15Personalization2V15Error9getReasonEv +_ZNK3sce2Np9CppWebApi15Personalization2V15Error9getSourceEv +_ZNK3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanity13isInitializedEv +_ZNK3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanity15getserviceLabelEv +_ZNK3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanity22getwebApiFilterRequestEv +_ZNK3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanity9getlocaleEv +_ZNK3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanity13isInitializedEv +_ZNK3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanity15getserviceLabelEv +_ZNK3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanity22getwebApiFilterRequestEv +_ZNK3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanity9getlocaleEv +_ZNK3sce2Np9CppWebApi15ProfanityFilter2V219WebApiErrorResponse10errorIsSetEv +_ZNK3sce2Np9CppWebApi15ProfanityFilter2V219WebApiErrorResponse6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi15ProfanityFilter2V219WebApiErrorResponse8getErrorEv +_ZNK3sce2Np9CppWebApi15ProfanityFilter2V219WebApiFilterRequest6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi15ProfanityFilter2V219WebApiFilterRequest7getTextEv +_ZNK3sce2Np9CppWebApi15ProfanityFilter2V223FilterProfanityResponse10getMessageEv +_ZNK3sce2Np9CppWebApi15ProfanityFilter2V223FilterProfanityResponse11statusIsSetEv +_ZNK3sce2Np9CppWebApi15ProfanityFilter2V223FilterProfanityResponse12messageIsSetEv +_ZNK3sce2Np9CppWebApi15ProfanityFilter2V223FilterProfanityResponse6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi15ProfanityFilter2V223FilterProfanityResponse9getStatusEv +_ZNK3sce2Np9CppWebApi15ProfanityFilter2V224TestForProfanityResponse10getMessageEv +_ZNK3sce2Np9CppWebApi15ProfanityFilter2V224TestForProfanityResponse11statusIsSetEv +_ZNK3sce2Np9CppWebApi15ProfanityFilter2V224TestForProfanityResponse12messageIsSetEv +_ZNK3sce2Np9CppWebApi15ProfanityFilter2V224TestForProfanityResponse6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi15ProfanityFilter2V224TestForProfanityResponse9getStatusEv +_ZNK3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error10getMessageEv +_ZNK3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error11statusIsSetEv +_ZNK3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error12messageIsSetEv +_ZNK3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error6getTidEv +_ZNK3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error7getCodeEv +_ZNK3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error8tidIsSetEv +_ZNK3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error9codeIsSetEv +_ZNK3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error9getStatusEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus10ownerIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus11getDataSizeEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus11getObjectIdEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus11slotIdIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus13dataSizeIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus13objectIdIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus18getLastUpdatedUserEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus20lastUpdatedUserIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus22getLastUpdatedDateTimeEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus24lastUpdatedDateTimeIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus7getInfoEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus8getOwnerEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus9getSlotIdEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus9infoIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariable12getaccountIdEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariable13isInitializedEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariable31getaddAndGetVariableRequestBodyEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariable9getslotIdEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot11getsortModeEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot11hassortModeEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot13getaccountIdsEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot13hasaccountIdsEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot13isInitializedEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot17getnpServiceLabelEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot17hasnpServiceLabelEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot7getsortEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot7hassortEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot8getgroupEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot8getlimitEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot8hasgroupEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot8haslimitEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot9getoffsetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot9getslotIdEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot9hasoffsetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser10getslotIdsEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser11getsortModeEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser11hassortModeEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser12getaccountIdEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser13isInitializedEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser17getnpServiceLabelEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser17hasnpServiceLabelEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser7getsortEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser7hassortEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser8getlimitEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser8haslimitEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser9getoffsetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser9hasoffsetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToSetMultiVariablesByUser12getaccountIdEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToSetMultiVariablesByUser13isInitializedEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToSetMultiVariablesByUser31getsetMultiVariablesRequestBodyEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditions12getaccountIdEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditions13isInitializedEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditions39getsetVariableWithConditionsRequestBodyEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditions9getslotIdEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUser10getslotIdsEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUser12getaccountIdEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUser13isInitializedEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUser17getnpServiceLabelEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUser17hasnpServiceLabelEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V113ErrorResponse6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V113ErrorResponse8getErrorEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V115LastUpdatedUser11getOnlineIdEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V115LastUpdatedUser12getAccountIdEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V115LastUpdatedUser13onlineIdIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V115LastUpdatedUser14accountIdIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V115LastUpdatedUser6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable10ownerIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable10valueIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable11slotIdIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable18getLastUpdatedUserEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable20lastUpdatedUserIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable22getLastUpdatedDateTimeEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable24lastUpdatedDateTimeIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable8getOwnerEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable8getValueEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable9getSlotIdEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody17getNpServiceLabelEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody19npServiceLabelIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody30getComparedLastUpdatedDateTimeEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody32comparedLastUpdatedDateTimeIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody35getComparedLastUpdatedUserAccountIdEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody37comparedLastUpdatedUserAccountIdIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody7getInfoEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V122UploadDataResponseBody11getObjectIdEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V122UploadDataResponseBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody17getNpServiceLabelEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody19npServiceLabelIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody30getComparedLastUpdatedDateTimeEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody32comparedLastUpdatedDateTimeIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody35getComparedLastUpdatedUserAccountIdEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody37comparedLastUpdatedUserAccountIdIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody8getValueEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V128SetMultiVariablesRequestBody14variablesIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V128SetMultiVariablesRequestBody17getNpServiceLabelEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V128SetMultiVariablesRequestBody19npServiceLabelIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V128SetMultiVariablesRequestBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody10limitIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody11offsetIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody14variablesIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody21getTotalVariableCountEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody23totalVariableCountIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody8getLimitEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody9getOffsetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody10limitIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody11offsetIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody19dataStatusListIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody23getTotalDataStatusCountEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody25totalDataStatusCountIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody8getLimitEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody9getOffsetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody12getConditionEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody16getComparedValueEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody17getNpServiceLabelEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody18comparedValueIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody19npServiceLabelIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody30getComparedLastUpdatedDateTimeEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody32comparedLastUpdatedDateTimeIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody35getComparedLastUpdatedUserAccountIdEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody37comparedLastUpdatedUserAccountIdIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody8getValueEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V138SetMultiVariablesRequestBody_variables10valueIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V138SetMultiVariablesRequestBody_variables11slotIdIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V138SetMultiVariablesRequestBody_variables6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V138SetMultiVariablesRequestBody_variables8getValueEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V138SetMultiVariablesRequestBody_variables9getSlotIdEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V15Error10getMessageEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V15Error11reasonIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V15Error11sourceIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V15Error14getReferenceIdEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V15Error16referenceIdIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V15Error6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V15Error7getCodeEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V15Error9getReasonEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V15Error9getSourceEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V15Owner11getOnlineIdEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V15Owner12getAccountIdEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V15Owner13onlineIdIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V15Owner14accountIdIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V15Owner6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData12getaccountIdEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData13isInitializedEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData21getxPsnNpServiceLabelEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData21hasxPsnNpServiceLabelEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData22getxPsnAtomicOperationEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData22hasxPsnAtomicOperationEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData24getxPsnAtomicOperationIdEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData24hasxPsnAtomicOperationIdEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData37getxPsnTcsComparedLastUpdatedDateTimeEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData37hasxPsnTcsComparedLastUpdatedDateTimeEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData42getxPsnTcsComparedLastUpdatedUserAccountIdEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData42hasxPsnTcsComparedLastUpdatedUserAccountIdEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData9getslotIdEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo12getaccountIdEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo13isInitializedEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo22getxPsnAtomicOperationEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo22hasxPsnAtomicOperationEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo24getxPsnAtomicOperationIdEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo24hasxPsnAtomicOperationIdEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo25getsetDataInfoRequestBodyEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo9getslotIdEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData10getifMatchEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData10hasifMatchEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData11getobjectIdEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData11hasobjectIdEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData12getaccountIdEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData13isInitializedEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData17getnpServiceLabelEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData17hasnpServiceLabelEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData8getrangeEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData8hasrangeEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData9getslotIdEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeaders24getXPsnAtomicOperationIdEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeaders24hasXPsnAtomicOperationIdEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeaders24getXPsnAtomicOperationIdEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeaders24hasXPsnAtomicOperationIdEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeaders15getLastModifiedEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeaders15hasLastModifiedEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeaders7getETagEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeaders7hasETagEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlot13getaccountIdsEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlot13isInitializedEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlot17getnpServiceLabelEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlot17hasnpServiceLabelEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlot9getslotIdEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUser10getslotIdsEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUser12getaccountIdEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUser13isInitializedEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUser17getnpServiceLabelEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUser17hasnpServiceLabelEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot11getsortModeEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot11hassortModeEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot13getaccountIdsEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot13hasaccountIdsEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot13isInitializedEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot17getnpServiceLabelEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot17hasnpServiceLabelEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot7getsortEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot7hassortEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot8getgroupEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot8getlimitEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot8hasgroupEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot8haslimitEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot9getfieldsEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot9getoffsetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot9getslotIdEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot9hasfieldsEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot9hasoffsetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser10getslotIdsEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser11getsortModeEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser11hassortModeEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser12getaccountIdEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser13isInitializedEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser17getnpServiceLabelEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser17hasnpServiceLabelEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser7getsortEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser7hassortEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser8getlimitEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser8haslimitEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser9getfieldsEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser9getoffsetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser9hasfieldsEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser9hasoffsetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi42ParameterWithBinaryRequestBodyToUploadData14getRequestBodyEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V18Variable10ownerIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V18Variable10valueIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V18Variable11slotIdIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V18Variable12getPrevValueEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V18Variable14prevValueIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V18Variable18getLastUpdatedUserEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V18Variable20lastUpdatedUserIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V18Variable22getLastUpdatedDateTimeEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V18Variable24lastUpdatedDateTimeIsSetEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V18Variable6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V18Variable8getOwnerEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V18Variable8getValueEv +_ZNK3sce2Np9CppWebApi17TitleCloudStorage2V18Variable9getSlotIdEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V110Reputation10getPerGameEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V110Reputation11globalIsSetEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V110Reputation12perGameIsSetEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V110Reputation15getPerFranchiseEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V110Reputation17perFranchiseIsSetEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V110Reputation6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V110Reputation9getGlobalEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V113ErrorResponse6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V113ErrorResponse8getErrorEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V113MmrProperties6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V113MmrProperties9getRatingEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V115FrequentlyMuted11globalIsSetEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V115FrequentlyMuted6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V115FrequentlyMuted9getGlobalEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V115NatConnectivity11globalIsSetEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V115NatConnectivity6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V115NatConnectivity9getGlobalEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V117ConnectionQuality11globalIsSetEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V117ConnectionQuality6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V117ConnectionQuality9getGlobalEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119BandwidthProperties11getUpstreamEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119BandwidthProperties13getDownstreamEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119BandwidthProperties6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate10getPerGameEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate11getPerGenreEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate11globalIsSetEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate12perGameIsSetEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate13perGenreIsSetEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate15getPerFranchiseEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate17perFranchiseIsSetEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate9getGlobalEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119NatConnectivityFrom6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119NatConnectivityFrom9getToNat1Ev +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119NatConnectivityFrom9getToNat2Ev +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119NatConnectivityFrom9getToNat3Ev +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119PlayStyleProperties11getProgressEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119PlayStyleProperties12getChallengeEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119PlayStyleProperties12getOpenEndedEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119PlayStyleProperties14getCompetitiveEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119PlayStyleProperties6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationProperties10getHelpfulEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationProperties12getGoodSportEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationProperties12getWelcomingEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationProperties18getNumberOfMatchesEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationProperties6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationProperties9getLeaderEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V124BandwidthUpstreamMetrics10getAverageEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V124BandwidthUpstreamMetrics18getConfidenceScoreEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V124BandwidthUpstreamMetrics20getStandardDeviationEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V124BandwidthUpstreamMetrics6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V124NatConnectivityToMetrics14getSuccessRateEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V124NatConnectivityToMetrics18getConfidenceScoreEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V124NatConnectivityToMetrics6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V125FrequentlyMutedProperties10getInPartyEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V125FrequentlyMutedProperties6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V125FrequentlyMutedProperties9getInGameEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V125NatConnectivityProperties11getFromNat1Ev +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V125NatConnectivityProperties11getFromNat2Ev +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V125NatConnectivityProperties11getFromNat3Ev +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V125NatConnectivityProperties6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V126BandwidthDownstreamMetrics10getAverageEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V126BandwidthDownstreamMetrics18getConfidenceScoreEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V126BandwidthDownstreamMetrics20getStandardDeviationEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V126BandwidthDownstreamMetrics6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V127ConnectionQualityProperties11getWirelessEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V127ConnectionQualityProperties6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V127ConnectionQualityProperties8getWiredEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetrics16getNumberOfTimesEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetrics17getPercentileRankEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetrics18getConfidenceScoreEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetrics6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V129ConnectionQualityWiredMetrics17getPacketLossRateEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V129ConnectionQualityWiredMetrics18getConfidenceScoreEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V129ConnectionQualityWiredMetrics6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V129ConnectionQualityWiredMetrics9getJitterEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetrics16getNumberOfTimesEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetrics17getPercentileRankEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetrics18getConfidenceScoreEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetrics6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V129MatchCompletionRateProperties12getCompletedEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V129MatchCompletionRateProperties15getDisconnectedEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V129MatchCompletionRateProperties18getConfidenceScoreEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V129MatchCompletionRateProperties6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V129MatchCompletionRateProperties7getQuitEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetrics27getCompletionRatePerReasonsEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetrics6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetrics17getPacketLossRateEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetrics18getConfidenceScoreEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetrics6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetrics9getJitterEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetrics27getCompletionRatePerReasonsEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetrics6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetrics27getCompletionRatePerReasonsEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetrics6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V13Mmr11getPerGenreEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V13Mmr13perGenreIsSetEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V13Mmr15getPerFranchiseEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V13Mmr17perFranchiseIsSetEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V13Mmr6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Error10getMessageEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Error12messageIsSetEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Error14getReferenceIdEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Error16referenceIdIsSetEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Error6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Error7getCodeEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Error9codeIsSetEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats12getBandwidthEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats12getPlayStyleEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats13getReputationEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats14bandwidthIsSetEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats14playStyleIsSetEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats15reputationIsSetEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats18getFrequentlyMutedEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats18getNatConnectivityEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats20frequentlyMutedIsSetEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats20getConnectionQualityEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats20natConnectivityIsSetEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats22connectionQualityIsSetEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats22getMatchCompletionRateEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats24matchCompletionRateIsSetEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats6getMmrEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats8mmrIsSetEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStats13isInitializedEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStats16getincludeFieldsEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStats16hasincludeFieldsEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStats17getnpServiceLabelEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V19Bandwidth11globalIsSetEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V19Bandwidth6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V19Bandwidth9getGlobalEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle10getPerGameEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle11getPerGenreEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle11globalIsSetEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle12perGameIsSetEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle13perGenreIsSetEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle15getPerFranchiseEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle17perFranchiseIsSetEv +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle9getGlobalEv +_ZNK3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V113ErrorResponse6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V113ErrorResponse8getErrorEv +_ZNK3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15Error10getMessageEv +_ZNK3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15Error12messageIsSetEv +_ZNK3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15Error14getReferenceIdEv +_ZNK3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15Error16referenceIdIsSetEv +_ZNK3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15Error6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15Error7getCodeEv +_ZNK3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15Error9codeIsSetEv +_ZNK3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V16Rating13getActivityIdEv +_ZNK3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V16Rating15getRatingNumberEv +_ZNK3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V16Rating17getNpServiceLabelEv +_ZNK3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V16Rating6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V19RatingApi21ParameterToPostRating13isInitializedEv +_ZNK3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V19RatingApi21ParameterToPostRating9getratingEv +_ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError10getMessageEv +_ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError11errorsIsSetEv +_ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError11reasonIsSetEv +_ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError11sourceIsSetEv +_ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError12messageIsSetEv +_ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError14getReferenceIdEv +_ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError16referenceIdIsSetEv +_ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError7getCodeEv +_ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError9getReasonEv +_ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError9getSourceEv +_ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V314MissingElement6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V314MissingElement7getNameEv +_ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V314MissingElement9nameIsSetEv +_ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V318PsnWebErrorWrapper6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V318PsnWebErrorWrapper8getErrorEv +_ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V324ValidationConstraintInfo6getKeyEv +_ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V324ValidationConstraintInfo6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V324ValidationConstraintInfo8getValueEv +_ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V333CommunicationRestrictionStatusApi44ParameterToGetCommunicationRestrictionStatus13isInitializedEv +_ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V333CommunicationRestrictionStatusApi44ParameterToGetCommunicationRestrictionStatus16getaccountIdOrMeEv +_ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponse13getRestrictedEv +_ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponse6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error10getMessageEv +_ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error12messageIsSetEv +_ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error20missingElementsIsSetEv +_ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error23getValidationConstraintEv +_ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error25validationConstraintIsSetEv +_ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error29validationConstraintInfoIsSetEv +_ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error7getPathEv +_ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error9pathIsSetEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS9_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE11getResponseERS6_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE11getResponseERS6_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERSB_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE11getResponseERSB_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE11getResponseERSB_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE11getResponseERS4_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE11getResponseERS4_ +_ZNK3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE11hasResponseEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEEptEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEE3getEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEEcvbEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEEdeEv +_ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEeqERKSA_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEneERKSA_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEeqERKSA_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEneERKSA_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEeqERKSA_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEneERKSA_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEeqERKSA_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEneERKSA_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEeqERKSA_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEneERKSA_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEEeqERKS6_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEEneERKS6_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEEeqERKS5_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEEneERKS5_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorIdEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorIdEeqERKS4_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorIdEneERKS4_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorIdEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorIdEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorIfEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorIfEeqERKS4_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorIfEneERKS4_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorIfEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorIfEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorIiEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorIiEeqERKS4_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorIiEneERKS4_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorIiEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorIiEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorIjEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorIjEeqERKS4_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorIjEneERKS4_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorIjEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorIjEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorIlEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorIlEeqERKS4_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorIlEneERKS4_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorIlEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorIlEptEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorImEdeEv +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorImEeqERKS4_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorImEneERKS4_ +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorImEplEm +_ZNK3sce2Np9CppWebApi6Common13ConstIteratorImEptEv +_ZNK3sce2Np9CppWebApi6Common13ParameterBase13isInitializedEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSB_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE18getResponseHeadersERSB_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE18getResponseHeadersERSB_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE18getResponseHeadersERSB_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE18getResponseHeadersERSB_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE18getResponseHeadersERSB_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE18getResponseHeadersERSB_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE18getResponseHeadersERSB_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSD_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE18getResponseHeadersERSE_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE18getResponseHeadersERSE_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE18getResponseHeadersERSA_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE18getResponseHeadersERSA_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE18getResponseHeadersERSA_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE18getResponseHeadersERS7_ +_ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE5getIdEv +_ZNK3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE11getResponseERS8_ +_ZNK3sce2Np9CppWebApi6Common6Binary4sizeEv +_ZNK3sce2Np9CppWebApi6Common6Binary9getBinaryEv +_ZNK3sce2Np9CppWebApi6Common6String4findERKS3_ +_ZNK3sce2Np9CppWebApi6Common6String4findERKS3_m +_ZNK3sce2Np9CppWebApi6Common6String4sizeEv +_ZNK3sce2Np9CppWebApi6Common6String5c_strEv +_ZNK3sce2Np9CppWebApi6Common6String5emptyEv +_ZNK3sce2Np9CppWebApi6Common6String6lengthEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_6StringEE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_6StringEE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_6StringEE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_6StringEE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_6StringEE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorINS2_6StringEEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorIdE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorIdE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorIdE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorIdE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorIdE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorIdEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorIfE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorIfE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorIfE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorIfE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorIfE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorIfEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorIiE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorIiE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorIiE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorIiE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorIiE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorIiEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorIjE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorIjE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorIjE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorIjE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorIjE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorIjEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorIlE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorIlE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorIlE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorIlE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorIlE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorIlEixEm +_ZNK3sce2Np9CppWebApi6Common6VectorImE3endEv +_ZNK3sce2Np9CppWebApi6Common6VectorImE4sizeEv +_ZNK3sce2Np9CppWebApi6Common6VectorImE5beginEv +_ZNK3sce2Np9CppWebApi6Common6VectorImE5emptyEv +_ZNK3sce2Np9CppWebApi6Common6VectorImE8capacityEv +_ZNK3sce2Np9CppWebApi6Common6VectorImEixEm +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V111OfferStatusEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V111OfferStatusEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V111OfferStatusEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V111OfferStatusEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V112TicketStatusEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V112TicketStatusEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V112TicketStatusEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V112TicketStatusEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V113AttributeTypeEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V113AttributeTypeEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V113AttributeTypeEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V113AttributeTypeEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V18PlatformEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V18PlatformEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V18PlatformEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V18PlatformEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V110AvatarSizeEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V110AvatarSizeEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V110AvatarSizeEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V110AvatarSizeEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V112OnlineStatusEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V112OnlineStatusEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V112OnlineStatusEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V112OnlineStatusEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V18RelationEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V18RelationEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V18RelationEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V18RelationEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V110UpdateModeEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V110UpdateModeEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V110UpdateModeEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V110UpdateModeEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V15GroupEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V15GroupEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V15GroupEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V15GroupEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V18SortModeEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V18SortModeEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V18SortModeEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V18SortModeEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V510AnnotationEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V510AnnotationEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V510AnnotationEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V510AnnotationEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V511ContentTypeEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V511ContentTypeEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V511ContentTypeEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V511ContentTypeEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V114SearchOperatorEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V114SearchOperatorEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V114SearchOperatorEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V114SearchOperatorEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V115SearchAttributeEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V115SearchAttributeEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V115SearchAttributeEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V115SearchAttributeEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116InitialJoinStateEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116InitialJoinStateEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116InitialJoinStateEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116InitialJoinStateEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116JoinableUserTypeEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116JoinableUserTypeEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116JoinableUserTypeEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116JoinableUserTypeEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V117InvitableUserTypeEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V117InvitableUserTypeEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V117InvitableUserTypeEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V117InvitableUserTypeEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V120PlayerJoinableStatusEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V120PlayerJoinableStatusEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V120PlayerJoinableStatusEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V120PlayerJoinableStatusEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V19JoinStateEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V19JoinStateEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V19JoinStateEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V19JoinStateEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_17TitleCloudStorage2V19ConditionEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_17TitleCloudStorage2V19ConditionEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_17TitleCloudStorage2V19ConditionEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_17TitleCloudStorage2V19ConditionEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110PlayerTypeEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110PlayerTypeEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110PlayerTypeEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110PlayerTypeEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110ResultTypeEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110ResultTypeEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110ResultTypeEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110ResultTypeEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110TaskStatusEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110TaskStatusEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110TaskStatusEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110TaskStatusEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V111LeaveReasonEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V111LeaveReasonEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V111LeaveReasonEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V111LeaveReasonEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112GroupingTypeEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112GroupingTypeEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112GroupingTypeEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112GroupingTypeEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112UpdateStatusEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112UpdateStatusEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112UpdateStatusEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112UpdateStatusEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V113SubtaskStatusEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V113SubtaskStatusEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V113SubtaskStatusEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V113SubtaskStatusEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V114ResultsVersionEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V114ResultsVersionEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V114ResultsVersionEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V114ResultsVersionEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V115CompetitionTypeEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V115CompetitionTypeEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V115CompetitionTypeEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V115CompetitionTypeEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V116TaskAvailabilityEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V116TaskAvailabilityEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V116TaskAvailabilityEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V116TaskAvailabilityEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V117ResponseMatchTypeEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V117ResponseMatchTypeEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V117ResponseMatchTypeEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V117ResponseMatchTypeEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119ChildActivityStatusEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119ChildActivityStatusEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119ChildActivityStatusEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119ChildActivityStatusEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119SubtaskAvailabilityEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119SubtaskAvailabilityEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119SubtaskAvailabilityEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119SubtaskAvailabilityEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V124RequestCooperativeResultEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V124RequestCooperativeResultEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V124RequestCooperativeResultEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V124RequestCooperativeResultEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ChildActivityAvailabilityEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ChildActivityAvailabilityEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ChildActivityAvailabilityEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ChildActivityAvailabilityEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ResponseCooperativeResultEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ResponseCooperativeResultEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ResponseCooperativeResultEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ResponseCooperativeResultEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V16StatusEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V16StatusEEeqERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V16StatusEEneERKS7_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V16StatusEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEeqERKSA_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEneERKSA_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEeqERKSA_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEneERKSA_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEeqERKSA_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEneERKSA_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEeqERKSA_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEneERKSA_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEeqERKSA_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEneERKSA_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEeqERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEneERKS9_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_17ParameterBaseImpl6KeySetEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_17ParameterBaseImpl6KeySetEEeqERKS6_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_17ParameterBaseImpl6KeySetEEneERKS6_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_17ParameterBaseImpl6KeySetEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_6StringEEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_6StringEEeqERKS5_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_6StringEEneERKS5_ +_ZNK3sce2Np9CppWebApi6Common8IteratorINS2_6StringEEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorIdEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorIdEeqERKS4_ +_ZNK3sce2Np9CppWebApi6Common8IteratorIdEneERKS4_ +_ZNK3sce2Np9CppWebApi6Common8IteratorIdEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorIfEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorIfEeqERKS4_ +_ZNK3sce2Np9CppWebApi6Common8IteratorIfEneERKS4_ +_ZNK3sce2Np9CppWebApi6Common8IteratorIfEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorIiEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorIiEeqERKS4_ +_ZNK3sce2Np9CppWebApi6Common8IteratorIiEneERKS4_ +_ZNK3sce2Np9CppWebApi6Common8IteratorIiEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorIjEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorIjEeqERKS4_ +_ZNK3sce2Np9CppWebApi6Common8IteratorIjEneERKS4_ +_ZNK3sce2Np9CppWebApi6Common8IteratorIjEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorIlEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorIlEeqERKS4_ +_ZNK3sce2Np9CppWebApi6Common8IteratorIlEneERKS4_ +_ZNK3sce2Np9CppWebApi6Common8IteratorIlEptEv +_ZNK3sce2Np9CppWebApi6Common8IteratorImEdeEv +_ZNK3sce2Np9CppWebApi6Common8IteratorImEeqERKS4_ +_ZNK3sce2Np9CppWebApi6Common8IteratorImEneERKS4_ +_ZNK3sce2Np9CppWebApi6Common8IteratorImEptEv +_ZNK3sce2Np9CppWebApi6Common9RefObject11GetRefCountEv +_ZNK3sce2Np9CppWebApi7Matches2V111AddedPlayer11getPlayerIdEv +_ZNK3sce2Np9CppWebApi7Matches2V111AddedPlayer11teamIdIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V111AddedPlayer12getAccountIdEv +_ZNK3sce2Np9CppWebApi7Matches2V111AddedPlayer13getPlayerNameEv +_ZNK3sce2Np9CppWebApi7Matches2V111AddedPlayer13getPlayerTypeEv +_ZNK3sce2Np9CppWebApi7Matches2V111AddedPlayer14accountIdIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V111AddedPlayer15playerNameIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V111AddedPlayer6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi7Matches2V111AddedPlayer9getTeamIdEv +_ZNK3sce2Np9CppWebApi7Matches2V113ChildActivity11statusIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V113ChildActivity13getActivityIdEv +_ZNK3sce2Np9CppWebApi7Matches2V113ChildActivity15getAvailabilityEv +_ZNK3sce2Np9CppWebApi7Matches2V113ChildActivity17availabilityIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V113ChildActivity6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi7Matches2V113ChildActivity9getStatusEv +_ZNK3sce2Np9CppWebApi7Matches2V113ErrorResponse6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi7Matches2V113ErrorResponse8getErrorEv +_ZNK3sce2Np9CppWebApi7Matches2V113RemovedPlayer11getPlayerIdEv +_ZNK3sce2Np9CppWebApi7Matches2V113RemovedPlayer11reasonIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V113RemovedPlayer6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi7Matches2V113RemovedPlayer9getReasonEv +_ZNK3sce2Np9CppWebApi7Matches2V113RequestMember11getPlayerIdEv +_ZNK3sce2Np9CppWebApi7Matches2V113RequestMember6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi7Matches2V114ResponseMember11getJoinFlagEv +_ZNK3sce2Np9CppWebApi7Matches2V114ResponseMember11getPlayerIdEv +_ZNK3sce2Np9CppWebApi7Matches2V114ResponseMember6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi7Matches2V116JoinMatchRequest17getNpServiceLabelEv +_ZNK3sce2Np9CppWebApi7Matches2V116JoinMatchRequest19npServiceLabelIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V116JoinMatchRequest6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi7Matches2V116RequestMatchTeam11getTeamNameEv +_ZNK3sce2Np9CppWebApi7Matches2V116RequestMatchTeam12membersIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V116RequestMatchTeam13teamNameIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V116RequestMatchTeam6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi7Matches2V116RequestMatchTeam9getTeamIdEv +_ZNK3sce2Np9CppWebApi7Matches2V117LeaveMatchRequest17getNpServiceLabelEv +_ZNK3sce2Np9CppWebApi7Matches2V117LeaveMatchRequest19npServiceLabelIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V117LeaveMatchRequest6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi7Matches2V117ResponseMatchTeam11getTeamNameEv +_ZNK3sce2Np9CppWebApi7Matches2V117ResponseMatchTeam12membersIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V117ResponseMatchTeam13teamNameIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V117ResponseMatchTeam6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi7Matches2V117ResponseMatchTeam9getTeamIdEv +_ZNK3sce2Np9CppWebApi7Matches2V118CreateMatchRequest11zoneIdIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V118CreateMatchRequest13getActivityIdEv +_ZNK3sce2Np9CppWebApi7Matches2V118CreateMatchRequest15getInGameRosterEv +_ZNK3sce2Np9CppWebApi7Matches2V118CreateMatchRequest17getExpirationTimeEv +_ZNK3sce2Np9CppWebApi7Matches2V118CreateMatchRequest17getNpServiceLabelEv +_ZNK3sce2Np9CppWebApi7Matches2V118CreateMatchRequest17inGameRosterIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V118CreateMatchRequest19expirationTimeIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V118CreateMatchRequest19getCancellationTimeEv +_ZNK3sce2Np9CppWebApi7Matches2V118CreateMatchRequest19npServiceLabelIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V118CreateMatchRequest21cancellationTimeIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V118CreateMatchRequest6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi7Matches2V118CreateMatchRequest9getZoneIdEv +_ZNK3sce2Np9CppWebApi7Matches2V118RequestMatchPlayer11getPlayerIdEv +_ZNK3sce2Np9CppWebApi7Matches2V118RequestMatchPlayer12getAccountIdEv +_ZNK3sce2Np9CppWebApi7Matches2V118RequestMatchPlayer13getPlayerNameEv +_ZNK3sce2Np9CppWebApi7Matches2V118RequestMatchPlayer13getPlayerTypeEv +_ZNK3sce2Np9CppWebApi7Matches2V118RequestMatchPlayer14accountIdIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V118RequestMatchPlayer15playerNameIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V118RequestMatchPlayer6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi7Matches2V118RequestTeamResults10scoreIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V118RequestTeamResults22teamMemberResultsIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V118RequestTeamResults6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi7Matches2V118RequestTeamResults7getRankEv +_ZNK3sce2Np9CppWebApi7Matches2V118RequestTeamResults8getScoreEv +_ZNK3sce2Np9CppWebApi7Matches2V118RequestTeamResults9getTeamIdEv +_ZNK3sce2Np9CppWebApi7Matches2V119AdditionalStatistic11getStatsKeyEv +_ZNK3sce2Np9CppWebApi7Matches2V119AdditionalStatistic13getStatsValueEv +_ZNK3sce2Np9CppWebApi7Matches2V119AdditionalStatistic6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi7Matches2V119CreateMatchResponse10getMatchIdEv +_ZNK3sce2Np9CppWebApi7Matches2V119CreateMatchResponse6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi7Matches2V119RequestInGameRoster10teamsIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V119RequestInGameRoster12playersIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V119RequestInGameRoster6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi7Matches2V119RequestMatchResults10getVersionEv +_ZNK3sce2Np9CppWebApi7Matches2V119RequestMatchResults20getCompetitiveResultEv +_ZNK3sce2Np9CppWebApi7Matches2V119RequestMatchResults20getCooperativeResultEv +_ZNK3sce2Np9CppWebApi7Matches2V119RequestMatchResults22competitiveResultIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V119RequestMatchResults22cooperativeResultIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V119RequestMatchResults6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer11getJoinFlagEv +_ZNK3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer11getOnlineIdEv +_ZNK3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer11getPlayerIdEv +_ZNK3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer12getAccountIdEv +_ZNK3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer13getPlayerNameEv +_ZNK3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer13getPlayerTypeEv +_ZNK3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer13onlineIdIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer14accountIdIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer15playerNameIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi7Matches2V119ResponseTeamResults10scoreIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V119ResponseTeamResults22teamMemberResultsIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V119ResponseTeamResults6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi7Matches2V119ResponseTeamResults7getRankEv +_ZNK3sce2Np9CppWebApi7Matches2V119ResponseTeamResults8getScoreEv +_ZNK3sce2Np9CppWebApi7Matches2V119ResponseTeamResults9getTeamIdEv +_ZNK3sce2Np9CppWebApi7Matches2V120ReportResultsRequest15getMatchResultsEv +_ZNK3sce2Np9CppWebApi7Matches2V120ReportResultsRequest17getNpServiceLabelEv +_ZNK3sce2Np9CppWebApi7Matches2V120ReportResultsRequest18getMatchStatisticsEv +_ZNK3sce2Np9CppWebApi7Matches2V120ReportResultsRequest19npServiceLabelIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V120ReportResultsRequest20matchStatisticsIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V120ReportResultsRequest6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi7Matches2V120RequestPlayerResults10scoreIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V120RequestPlayerResults11getPlayerIdEv +_ZNK3sce2Np9CppWebApi7Matches2V120RequestPlayerResults6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi7Matches2V120RequestPlayerResults7getRankEv +_ZNK3sce2Np9CppWebApi7Matches2V120RequestPlayerResults8getScoreEv +_ZNK3sce2Np9CppWebApi7Matches2V120RequestTeamStatistic10statsIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V120RequestTeamStatistic25teamMemberStatisticsIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V120RequestTeamStatistic6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi7Matches2V120RequestTeamStatistic9getTeamIdEv +_ZNK3sce2Np9CppWebApi7Matches2V120ResponseInGameRoster10teamsIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V120ResponseInGameRoster12playersIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V120ResponseInGameRoster6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi7Matches2V120ResponseMatchResults10getVersionEv +_ZNK3sce2Np9CppWebApi7Matches2V120ResponseMatchResults20getCompetitiveResultEv +_ZNK3sce2Np9CppWebApi7Matches2V120ResponseMatchResults20getCooperativeResultEv +_ZNK3sce2Np9CppWebApi7Matches2V120ResponseMatchResults22competitiveResultIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V120ResponseMatchResults22cooperativeResultIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V120ResponseMatchResults6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi7Matches2V121ResponsePlayerResults10scoreIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V121ResponsePlayerResults11getPlayerIdEv +_ZNK3sce2Np9CppWebApi7Matches2V121ResponsePlayerResults6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi7Matches2V121ResponsePlayerResults7getRankEv +_ZNK3sce2Np9CppWebApi7Matches2V121ResponsePlayerResults8getScoreEv +_ZNK3sce2Np9CppWebApi7Matches2V121ResponseTeamStatistic10statsIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V121ResponseTeamStatistic25teamMemberStatisticsIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V121ResponseTeamStatistic6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi7Matches2V121ResponseTeamStatistic9getTeamIdEv +_ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse10getMatchIdEv +_ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse10tasksIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse11zoneIdIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse12getMatchTypeEv +_ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse13getActivityIdEv +_ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse13getResultTypeEv +_ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse14matchTypeIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse15getGroupingTypeEv +_ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse15getInGameRosterEv +_ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse15getMatchResultsEv +_ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse17getExpirationTimeEv +_ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse17inGameRosterIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse17matchResultsIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse18getCompetitionTypeEv +_ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse18getMatchStatisticsEv +_ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse19getCancellationTimeEv +_ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse20getMatchEndTimestampEv +_ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse20matchStatisticsIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse21cancellationTimeIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse22getLastPausedTimestampEv +_ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse22getMatchStartTimestampEv +_ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse22matchEndTimestampIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse24lastPausedTimestampIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse24matchStartTimestampIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse9getStatusEv +_ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse9getZoneIdEv +_ZNK3sce2Np9CppWebApi7Matches2V122RequestMatchStatistics19teamStatisticsIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V122RequestMatchStatistics21playerStatisticsIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V122RequestMatchStatistics6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi7Matches2V122RequestPlayerStatistic11getPlayerIdEv +_ZNK3sce2Np9CppWebApi7Matches2V122RequestPlayerStatistic6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi7Matches2V123RequestTeamMemberResult11getPlayerIdEv +_ZNK3sce2Np9CppWebApi7Matches2V123RequestTeamMemberResult6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi7Matches2V123RequestTeamMemberResult8getScoreEv +_ZNK3sce2Np9CppWebApi7Matches2V123ResponseMatchStatistics19teamStatisticsIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V123ResponseMatchStatistics21playerStatisticsIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V123ResponseMatchStatistics6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi7Matches2V123ResponsePlayerStatistic11getPlayerIdEv +_ZNK3sce2Np9CppWebApi7Matches2V123ResponsePlayerStatistic6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi7Matches2V124RequestCompetitiveResult16teamResultsIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V124RequestCompetitiveResult18playerResultsIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V124RequestCompetitiveResult6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi7Matches2V124ResponseTeamMemberResult11getPlayerIdEv +_ZNK3sce2Np9CppWebApi7Matches2V124ResponseTeamMemberResult6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi7Matches2V124ResponseTeamMemberResult8getScoreEv +_ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest11zoneIdIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest15getInGameRosterEv +_ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest15getMatchResultsEv +_ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest17getExpirationTimeEv +_ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest17getNpServiceLabelEv +_ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest17inGameRosterIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest17matchResultsIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest18getMatchStatisticsEv +_ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest19expirationTimeIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest19npServiceLabelIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest20childActivitiesIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest20matchStatisticsIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest9getZoneIdEv +_ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchStatusRequest17getNpServiceLabelEv +_ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchStatusRequest19npServiceLabelIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchStatusRequest6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchStatusRequest9getStatusEv +_ZNK3sce2Np9CppWebApi7Matches2V125ResponseCompetitiveResult16teamResultsIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V125ResponseCompetitiveResult18playerResultsIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V125ResponseCompetitiveResult6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi7Matches2V126RequestTeamMemberStatistic11getPlayerIdEv +_ZNK3sce2Np9CppWebApi7Matches2V126RequestTeamMemberStatistic6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResults10scoreIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResults22teamMemberResultsIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResults6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResults7getRankEv +_ZNK3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResults8getScoreEv +_ZNK3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResults9getTeamIdEv +_ZNK3sce2Np9CppWebApi7Matches2V127ResponseTeamMemberStatistic11getPlayerIdEv +_ZNK3sce2Np9CppWebApi7Matches2V127ResponseTeamMemberStatistic6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi7Matches2V128RequestTemporaryMatchResults10getVersionEv +_ZNK3sce2Np9CppWebApi7Matches2V128RequestTemporaryMatchResults20getCompetitiveResultEv +_ZNK3sce2Np9CppWebApi7Matches2V128RequestTemporaryMatchResults6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi7Matches2V133RequestTemporaryCompetitiveResult16teamResultsIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V133RequestTemporaryCompetitiveResult18playerResultsIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V133RequestTemporaryCompetitiveResult6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi7Matches2V14Task13getActivityIdEv +_ZNK3sce2Np9CppWebApi7Matches2V14Task13subtasksIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V14Task15getAvailabilityEv +_ZNK3sce2Np9CppWebApi7Matches2V14Task6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi7Matches2V14Task9getStatusEv +_ZNK3sce2Np9CppWebApi7Matches2V15Error10getMessageEv +_ZNK3sce2Np9CppWebApi7Matches2V15Error11reasonIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V15Error11sourceIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V15Error14getReferenceIdEv +_ZNK3sce2Np9CppWebApi7Matches2V15Error16referenceIdIsSetEv +_ZNK3sce2Np9CppWebApi7Matches2V15Error6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi7Matches2V15Error7getCodeEv +_ZNK3sce2Np9CppWebApi7Matches2V15Error9getReasonEv +_ZNK3sce2Np9CppWebApi7Matches2V15Error9getSourceEv +_ZNK3sce2Np9CppWebApi7Matches2V17Subtask13getActivityIdEv +_ZNK3sce2Np9CppWebApi7Matches2V17Subtask15getAvailabilityEv +_ZNK3sce2Np9CppWebApi7Matches2V17Subtask6toJsonERNS_4Json5ValueEb +_ZNK3sce2Np9CppWebApi7Matches2V17Subtask9getStatusEv +_ZNK3sce2Np9CppWebApi7Matches2V18MatchApi20ParameterToJoinMatch10getmatchIdEv +_ZNK3sce2Np9CppWebApi7Matches2V18MatchApi20ParameterToJoinMatch13isInitializedEv +_ZNK3sce2Np9CppWebApi7Matches2V18MatchApi20ParameterToJoinMatch19getjoinMatchRequestEv +_ZNK3sce2Np9CppWebApi7Matches2V18MatchApi21ParameterToLeaveMatch10getmatchIdEv +_ZNK3sce2Np9CppWebApi7Matches2V18MatchApi21ParameterToLeaveMatch13isInitializedEv +_ZNK3sce2Np9CppWebApi7Matches2V18MatchApi21ParameterToLeaveMatch20getleaveMatchRequestEv +_ZNK3sce2Np9CppWebApi7Matches2V18MatchApi22ParameterToCreateMatch13isInitializedEv +_ZNK3sce2Np9CppWebApi7Matches2V18MatchApi22ParameterToCreateMatch21getcreateMatchRequestEv +_ZNK3sce2Np9CppWebApi7Matches2V18MatchApi24ParameterToReportResults10getmatchIdEv +_ZNK3sce2Np9CppWebApi7Matches2V18MatchApi24ParameterToReportResults13isInitializedEv +_ZNK3sce2Np9CppWebApi7Matches2V18MatchApi24ParameterToReportResults23getreportResultsRequestEv +_ZNK3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetail10getmatchIdEv +_ZNK3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetail13isInitializedEv +_ZNK3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetail17getnpServiceLabelEv +_ZNK3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetail17hasnpServiceLabelEv +_ZNK3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetail7getviewEv +_ZNK3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetail7hasviewEv +_ZNK3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchDetail10getmatchIdEv +_ZNK3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchDetail13isInitializedEv +_ZNK3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchDetail27getupdateMatchDetailRequestEv +_ZNK3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchStatus10getmatchIdEv +_ZNK3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchStatus13isInitializedEv +_ZNK3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchStatus27getupdateMatchStatusRequestEv +_ZNK3sce2np10Cancelable6IsInitEv +_ZNK3sce2np10EventQueue6IsInitEv +_ZNK3sce2np10EventQueue7IsEmptyEv +_ZNK3sce2np10JsonNumber3GetEPi +_ZNK3sce2np10JsonNumber3GetEPj +_ZNK3sce2np10JsonNumber3GetEPl +_ZNK3sce2np10JsonNumber3GetEPm +_ZNK3sce2np10JsonNumber5CloneEP16SceNpAllocatorEx +_ZNK3sce2np10JsonNumber6GetNumEPcm +_ZNK3sce2np10JsonNumber6GetNumEPi +_ZNK3sce2np10JsonNumber6GetNumEPj +_ZNK3sce2np10JsonNumber6GetNumEPl +_ZNK3sce2np10JsonNumber6GetNumEPm +_ZNK3sce2np10JsonNumber9GetNumStrEv +_ZNK3sce2np10JsonObject11GetFieldNumEv +_ZNK3sce2np10JsonObject5CloneEP16SceNpAllocatorEx +_ZNK3sce2np10JsonObject8GetFieldEPKc +_ZNK3sce2np10JsonObject8GetFieldEiPPKc +_ZNK3sce2np10JsonString5CloneEP16SceNpAllocatorEx +_ZNK3sce2np10JsonString6GetStrEPcm +_ZNK3sce2np10JsonString6GetStrEv +_ZNK3sce2np10JsonString9GetLengthEv +_ZNK3sce2np10NpOnlineId7IsEmptyEv +_ZNK3sce2np12HttpTemplate6IsInitEv +_ZNK3sce2np12NpTitleToken6GetStrEv +_ZNK3sce2np13JsonArrayImpl10GetItemNumEv +_ZNK3sce2np13JsonArrayImpl13itemArrayInitEPNS1_9ItemArrayE +_ZNK3sce2np13JsonArrayImpl16itemArrayDestroyEPNS1_9ItemArrayE +_ZNK3sce2np13JsonArrayImpl17itemArrayAddValueEPNS1_9ItemArrayEPKNS0_9JsonValueE +_ZNK3sce2np13JsonArrayImpl5CloneEP14SceNpAllocator +_ZNK3sce2np13JsonArrayImpl7GetItemEi +_ZNK3sce2np13JsonArrayImpl8freeItemEPNS1_4ItemE +_ZNK3sce2np13JsonArrayImpl9allocItemEv +_ZNK3sce2np13NpAccessToken7IsEmptyEv +_ZNK3sce2np14JsonNumberImpl3GetEPi +_ZNK3sce2np14JsonNumberImpl3GetEPj +_ZNK3sce2np14JsonNumberImpl3GetEPl +_ZNK3sce2np14JsonNumberImpl3GetEPm +_ZNK3sce2np14JsonNumberImpl5CloneEP14SceNpAllocator +_ZNK3sce2np14JsonNumberImpl9GetNumStrEv +_ZNK3sce2np14JsonObjectImpl10allocFieldEPKc +_ZNK3sce2np14JsonObjectImpl11GetFieldNumEv +_ZNK3sce2np14JsonObjectImpl12fieldSetInitEPNS1_8FieldSetE +_ZNK3sce2np14JsonObjectImpl15fieldSetDestroyEPNS1_8FieldSetE +_ZNK3sce2np14JsonObjectImpl15fieldSetFreeAllEPNS1_8FieldSetE +_ZNK3sce2np14JsonObjectImpl16fieldSetAddFieldEPNS1_8FieldSetEPKcPKNS0_9JsonValueE +_ZNK3sce2np14JsonObjectImpl17fieldSetFindFieldEPNS1_8FieldSetEPKc +_ZNK3sce2np14JsonObjectImpl5CloneEP14SceNpAllocator +_ZNK3sce2np14JsonObjectImpl8GetFieldEPKc +_ZNK3sce2np14JsonObjectImpl8GetFieldEi +_ZNK3sce2np14JsonObjectImpl9freeFieldEPNS1_5FieldE +_ZNK3sce2np14JsonStringImpl5CloneEP14SceNpAllocator +_ZNK3sce2np14JsonStringImpl6GetStrEv +_ZNK3sce2np18HttpConnectionPool6IsInitEv +_ZNK3sce2np3ipc10IpmiClient6IsInitEv +_ZNK3sce2np3ipc17ServiceIpmiClient6IsInitEv +_ZNK3sce2np4Cond6IsInitEv +_ZNK3sce2np4Time18ConvertToPosixTimeEPl +_ZNK3sce2np4User10IsLoggedInEv +_ZNK3sce2np4User12GetAccountIdEPm +_ZNK3sce2np4User12HasAccountIdEPb +_ZNK3sce2np4User25GetAccountIdFromRegistoryEPm +_ZNK3sce2np4User7IsEmptyEv +_ZNK3sce2np4User7IsGuestEv +_ZNK3sce2np4User9GetUserIdEv +_ZNK3sce2np5Mutex6IsInitEv +_ZNK3sce2np6Handle6IsInitEv +_ZNK3sce2np6Thread6IsInitEv +_ZNK3sce2np7RingBuf11GetDataSizeEv +_ZNK3sce2np7RingBuf11GetFreeSizeEv +_ZNK3sce2np7RingBuf6IsFullEv +_ZNK3sce2np7RingBuf7IsEmptyEv +_ZNK3sce2np8JsonBool3GetEv +_ZNK3sce2np8JsonBool5CloneEP16SceNpAllocatorEx +_ZNK3sce2np8JsonBool7GetBoolEv +_ZNK3sce2np8JsonNull5CloneEP16SceNpAllocatorEx +_ZNK3sce2np8NpCommId7IsEmptyEv +_ZNK3sce2np8NpTicket13GetTicketDataEv +_ZNK3sce2np8NpTicket13GetTicketSizeEv +_ZNK3sce2np9EventFlag6IsInitEv +_ZNK3sce2np9HttpTrans6IsInitEv +_ZNK3sce2np9JsonArray10GetItemNumEv +_ZNK3sce2np9JsonArray5CloneEP16SceNpAllocatorEx +_ZNK3sce2np9JsonArray7GetItemEiPNS1_4ItemE +_ZNK3sce2np9JsonValue12GetItemValueEi +_ZNK3sce2np9JsonValue5CloneEP14SceNpAllocator +_ZNK3sce2np9JsonValue7GetBoolEv +_ZNK3sce2np9JsonValue7GetNullEv +_ZNK3sce2np9JsonValue7GetTypeEv +_ZNK3sce2np9JsonValue8GetArrayEv +_ZNK3sce2np9JsonValue9GetNumberEv +_ZNK3sce2np9JsonValue9GetObjectEv +_ZNK3sce2np9JsonValue9GetStringEv +_ZNK3sce2np9NpTitleId7IsEmptyEv +_ZNK3sce2np9Semaphore6IsInitEv +_ZNK3sce3Xml13AttributeList11isAvailableEv +_ZNK3sce3Xml13AttributeList12getAttributeEPKNS0_6StringE +_ZNK3sce3Xml13AttributeList12getAttributeEj +_ZNK3sce3Xml13AttributeList9getLengthEv +_ZNK3sce3Xml3Dom4Node11getNodeNameEv +_ZNK3sce3Xml3Dom4Node11getNodeTypeEv +_ZNK3sce3Xml3Dom4Node11isAvailableEv +_ZNK3sce3Xml3Dom4Node12getLastChildEv +_ZNK3sce3Xml3Dom4Node12getNodeValueEv +_ZNK3sce3Xml3Dom4Node13getAttributesEPNS1_8NodeListE +_ZNK3sce3Xml3Dom4Node13getAttributesEv +_ZNK3sce3Xml3Dom4Node13getChildNodesEPNS1_8NodeListE +_ZNK3sce3Xml3Dom4Node13getChildNodesEv +_ZNK3sce3Xml3Dom4Node13getFirstChildEv +_ZNK3sce3Xml3Dom4Node13getParentNodeEv +_ZNK3sce3Xml3Dom4Node13hasAttributesEv +_ZNK3sce3Xml3Dom4Node13hasChildNodesEv +_ZNK3sce3Xml3Dom4Node14getNextSiblingEv +_ZNK3sce3Xml3Dom4Node16getOwnerDocumentEv +_ZNK3sce3Xml3Dom8Document10getDocRootEv +_ZNK3sce3Xml3Dom8Document10getSiblingENS1_6NodeIdE +_ZNK3sce3Xml3Dom8Document10getXmlMetaEv +_ZNK3sce3Xml3Dom8Document10isReadOnlyEv +_ZNK3sce3Xml3Dom8Document11getAttrNameENS1_6NodeIdE +_ZNK3sce3Xml3Dom8Document11getNextAttrENS1_6NodeIdE +_ZNK3sce3Xml3Dom8Document11getNodeNameENS1_6NodeIdE +_ZNK3sce3Xml3Dom8Document11getNodeTypeENS1_6NodeIdE +_ZNK3sce3Xml3Dom8Document11isAvailableEv +_ZNK3sce3Xml3Dom8Document12getAttrValueENS1_6NodeIdE +_ZNK3sce3Xml3Dom8Document12getAttributeENS1_6NodeIdEPKNS0_6StringE +_ZNK3sce3Xml3Dom8Document12getFirstAttrENS1_6NodeIdE +_ZNK3sce3Xml3Dom8Document12getLastChildENS1_6NodeIdE +_ZNK3sce3Xml3Dom8Document13getAttributesENS1_6NodeIdEPNS1_8NodeListE +_ZNK3sce3Xml3Dom8Document13getChildNodesENS1_6NodeIdEPNS1_8NodeListE +_ZNK3sce3Xml3Dom8Document13getEntityTypeENS1_6NodeIdE +_ZNK3sce3Xml3Dom8Document13getFirstChildENS1_6NodeIdE +_ZNK3sce3Xml3Dom8Document13hasAttributesENS1_6NodeIdE +_ZNK3sce3Xml3Dom8Document13hasChildNodesENS1_6NodeIdE +_ZNK3sce3Xml3Dom8Document14getSkippedTextENS1_6NodeIdE +_ZNK3sce3Xml3Dom8Document20getElementsByTagNameENS1_6NodeIdEPKNS0_6StringEPNS1_8NodeListE +_ZNK3sce3Xml3Dom8Document7getRootEv +_ZNK3sce3Xml3Dom8Document7getTextENS1_6NodeIdE +_ZNK3sce3Xml3Dom8Document9getEntityENS1_6NodeIdE +_ZNK3sce3Xml3Dom8Document9getParentENS1_6NodeIdE +_ZNK3sce3Xml3Dom8Document9getStatusEv +_ZNK3sce3Xml3Dom8NodeList11isAvailableEv +_ZNK3sce3Xml3Dom8NodeList4itemEj +_ZNK3sce3Xml3Dom8NodeList8findItemENS1_6NodeIdE +_ZNK3sce3Xml3Dom8NodeList8findItemEPKNS0_6StringE +_ZNK3sce3Xml3Dom8NodeList9getLengthEv +_ZNK3sce3Xml3Dom8NodeListixEj +_ZNK3sce3Xml4Attr11isAvailableEv +_ZNK3sce3Xml4Attr7getNameEv +_ZNK3sce3Xml4Attr8getValueEv +_ZNK3sce3pss5orbis9framework11PsmCallList6GetNumEv +_ZNK3sce4Json14InitParameter211getUserDataEv +_ZNK3sce4Json14InitParameter212getAllocatorEv +_ZNK3sce4Json14InitParameter217getFileBufferSizeEv +_ZNK3sce4Json14InitParameter225getSpecialFloatFormatTypeEv +_ZNK3sce4Json5Array3endEv +_ZNK3sce4Json5Array4backEv +_ZNK3sce4Json5Array4sizeEv +_ZNK3sce4Json5Array5beginEv +_ZNK3sce4Json5Array5emptyEv +_ZNK3sce4Json5Array5frontEv +_ZNK3sce4Json5Array8iteratordeEv +_ZNK3sce4Json5Array8iteratorneERKS2_ +_ZNK3sce4Json5Array8iteratorptEv +_ZNK3sce4Json5Value10getBooleanEv +_ZNK3sce4Json5Value10getIntegerEv +_ZNK3sce4Json5Value11getUIntegerEv +_ZNK3sce4Json5Value5countEv +_ZNK3sce4Json5Value7getRealEv +_ZNK3sce4Json5Value7getRootEv +_ZNK3sce4Json5Value7getTypeEv +_ZNK3sce4Json5Value8getArrayEv +_ZNK3sce4Json5Value8getValueERKNS0_6StringE +_ZNK3sce4Json5Value8getValueERKSbIcSt11char_traitsIcENS0_8StlAllocIcEEE +_ZNK3sce4Json5Value8getValueEm +_ZNK3sce4Json5Value8toStringERNS0_6StringE +_ZNK3sce4Json5Value8toStringERSbIcSt11char_traitsIcENS0_8StlAllocIcEEE +_ZNK3sce4Json5Value9getObjectEv +_ZNK3sce4Json5Value9getStringEv +_ZNK3sce4Json5ValuecvbEv +_ZNK3sce4Json5ValueixEPKc +_ZNK3sce4Json5ValueixERKNS0_6StringE +_ZNK3sce4Json5ValueixERKSbIcSt11char_traitsIcENS0_8StlAllocIcEEE +_ZNK3sce4Json5ValueixEm +_ZNK3sce4Json6Object3endEv +_ZNK3sce4Json6Object4findERKNS0_6StringE +_ZNK3sce4Json6Object4sizeEv +_ZNK3sce4Json6Object5beginEv +_ZNK3sce4Json6Object5emptyEv +_ZNK3sce4Json6Object8iteratordeEv +_ZNK3sce4Json6Object8iteratoreqERKS2_ +_ZNK3sce4Json6Object8iteratorneERKS2_ +_ZNK3sce4Json6Object8iteratorptEv +_ZNK3sce4Json6String2atEm +_ZNK3sce4Json6String4findEPKcm +_ZNK3sce4Json6String4findEPKcmm +_ZNK3sce4Json6String4findERKS1_m +_ZNK3sce4Json6String4findEcm +_ZNK3sce4Json6String4sizeEv +_ZNK3sce4Json6String5c_strEv +_ZNK3sce4Json6String5emptyEv +_ZNK3sce4Json6String5rfindEPKcm +_ZNK3sce4Json6String5rfindEPKcmm +_ZNK3sce4Json6String5rfindERKS1_m +_ZNK3sce4Json6String5rfindEcm +_ZNK3sce4Json6String6lengthEv +_ZNK3sce4Json6String6substrEmm +_ZNK3sce4Json6String7compareEPKc +_ZNK3sce4Json6String7compareERKS1_ +_ZNK3sce4Json6String8capacityEv +_ZNK3sce4Json6StringeqEPKc +_ZNK3sce4Json6StringeqERKS1_ +_ZNK3sce7Toolkit2NP15AppSTLAllocatorI13SceNpOnlineIdE8max_sizeEv +_ZNK3sce7Toolkit2NP15AppSTLAllocatorI16SceNpTusVariableE8max_sizeEv +_ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_11EntitlementEE8max_sizeEv +_ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_11ProductInfoEE8max_sizeEv +_ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_11TusVariableEE8max_sizeEv +_ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_13FriendsOfUserEE8max_sizeEv +_ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_13SessionMemberEE8max_sizeEv +_ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_13WhoLikedStoryEE8max_sizeEv +_ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_15CategoryInfoSubEE8max_sizeEv +_ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_15NpSessionMemberEE8max_sizeEv +_ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_15PlayedWithStoryEE8max_sizeEv +_ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_16SessionAttributeEE8max_sizeEv +_ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_17ActivityFeedStoryEE8max_sizeEv +_ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_18GameCustomDataItemEE8max_sizeEv +_ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_18SessionInformationEE8max_sizeEv +_ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_19ProductInfoDetailedEE8max_sizeEv +_ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_20ChallengeRecvDetailsEE8max_sizeEv +_ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_23NpSessionInvitationInfoEE8max_sizeEv +_ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_26ActivityFeedCondensedStoryEE8max_sizeEv +_ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_28ActivityFeedSharedVideoStoryEE8max_sizeEv +_ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_33ActivityFeedSharedScreenshotStoryEE8max_sizeEv +_ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_34DetailedProductInfoListInputParams9ProductIdEE8max_sizeEv +_ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_6NpUserEE8max_sizeEv +_ZNK3sce7Toolkit2NP15AppSTLAllocatorISbIcSt11char_traitsIcENS2_IcEEEE8max_sizeEv +_ZNK3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeINS1_11TusVariableEPvEE8max_sizeEv +_ZNK3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeIPcPvEE8max_sizeEv +_ZNK3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_11TusVariableENS2_IS4_EEEE8max_sizeEv +_ZNK3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_15CategoryInfoSubENS2_IS4_EEEE8max_sizeEv +_ZNK3sce7Toolkit2NP15AppSTLAllocatorISt6vectorI16SceNpTusVariableNS2_IS4_EEEE8max_sizeEv +_ZNK3sce7Toolkit2NP15AppSTLAllocatorIcE8max_sizeEv +_ZNK3sce7Toolkit2NP15AppSTLAllocatorIiE8max_sizeEv +_ZNK3sce7Toolkit2NP15AppSTLAllocatorItE8max_sizeEv +_ZNK3sce7Toolkit2NP15CommunicationId5getIdEv +_ZNK3sce7Toolkit2NP15CommunicationId6getSigEv +_ZNK3sce7Toolkit2NP15CommunicationId7getPassEv +_ZNK3sce7Toolkit2NP15CommunicationIdltERKS2_ +_ZNK3sce7Toolkit2NP17MessageAttachment17getAttachmentDataEv +_ZNK3sce7Toolkit2NP17MessageAttachment17getAttachmentSizeEv +_ZNK3sce7Toolkit2NP2V24Core11RequestBase14getServiceTypeEv +_ZNK3sce7Toolkit2NP2V24Core11RequestBase15getFunctionTypeEv +_ZNK3sce7Toolkit2NP2V24Core12ResponseBase8getStateEv +_ZNK3sce7Toolkit2NP2V24Core12ResponseData14getInitializedEv +_ZNK3sce7Toolkit2NP2V24Core17CustomRequestBase20getCustomServiceTypeEv +_ZNK3sce7Toolkit2NP2V24Core17CustomRequestBase21getCustomFunctionTypeEv +_ZNK3sce7Toolkit2NP9NpTitleIdltERKS2_ +_ZNK3sce7Toolkit2NP9Utilities10FutureImpl8getErrorEv +_ZNK3sce7Toolkit2NP9Utilities10FutureImpl8hasErrorEv +_ZNK3sce7Toolkit2NP9Utilities10FutureImpl9hasResultEv +_ZNK3sce7Toolkit2NP9Utilities6FutureI13SceNpOnlineIdE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureI13SceNpOnlineIdE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureI16SceNpTusVariableE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureI16SceNpTusVariableE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureI18SceNpTssDataStatusE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureI18SceNpTssDataStatusE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureI19SceNpTrophyGameDataE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureI19SceNpTrophyGameDataE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureI24SceNpBandwidthTestResultE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureI24SceNpBandwidthTestResultE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureI7SceNpIdE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureI7SceNpIdE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_10TrophyInfoEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_10TrophyInfoEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_11CountryInfoEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_11CountryInfoEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_12CategoryInfoEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_12CategoryInfoEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_12PresenceInfoEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_12PresenceInfoEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_13NetStateBasicEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_13NetStateBasicEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_13TusDataOutputEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_13TusDataOutputEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_14TrophyGameInfoEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_14TrophyGameInfoEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_15ActivityStoryIdEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_15ActivityStoryIdEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_15RankInformationEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_15RankInformationEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_15TrophyGroupInfoEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_15TrophyGroupInfoEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_16NetStateDetailedEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_16NetStateDetailedEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_17MessageAttachmentEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_17MessageAttachmentEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_18GameCustomDataItemEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_18GameCustomDataItemEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_18SessionInformationEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_18SessionInformationEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_19GetGameDataResponseEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_19GetGameDataResponseEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_19ProductInfoDetailedEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_19ProductInfoDetailedEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_19UserRankInformationEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_19UserRankInformationEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_19WordFilterSanitizedEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_19WordFilterSanitizedEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_20ChallengeRecvDetailsEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_20ChallengeRecvDetailsEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_20NpSessionInformationEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_20NpSessionInformationEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_21AbortGameDataResponseEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_21AbortGameDataResponseEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_21GameCustomDataMessageEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_21GameCustomDataMessageEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_21NotifyChallengeResultEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_21NotifyChallengeResultEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_22ConsumeChallengeResultEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_22ConsumeChallengeResultEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_22FriendsRankInformationEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_22FriendsRankInformationEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_23NpIdListRankInformationEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_23NpIdListRankInformationEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_23NpSessionInvitationInfoEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_23NpSessionInvitationInfoEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_24RegisterGameDataResponseEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_24RegisterGameDataResponseEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_25ChallengeBinaryDataResultEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_25ChallengeBinaryDataResultEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_25ReceivedInGameDataMessageEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_25ReceivedInGameDataMessageEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_28AdditionalSessionInformationEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_28AdditionalSessionInformationEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_28NpSessionDetailedInformationEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_28NpSessionDetailedInformationEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_6NpUserEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_6NpUserEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_6TicketEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_6TicketEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_7NpUsersEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_7NpUsersEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_7TssDataEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_7TssDataEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_8TempRankEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureINS1_8TempRankEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureISbIcSt11char_traitsIcENS1_15AppSTLAllocatorIcEEEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureISbIcSt11char_traitsIcENS1_15AppSTLAllocatorIcEEEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureISt4listINS1_11TusVariableENS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureISt4listINS1_11TusVariableENS1_15AppSTLAllocatorIS5_EEEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorI16SceNpTusVariableNS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorI16SceNpTusVariableNS1_15AppSTLAllocatorIS5_EEEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_11EntitlementENS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_11EntitlementENS1_15AppSTLAllocatorIS5_EEEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_11ProductInfoENS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_11ProductInfoENS1_15AppSTLAllocatorIS5_EEEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_13FriendsOfUserENS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_13FriendsOfUserENS1_15AppSTLAllocatorIS5_EEEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_13WhoLikedStoryENS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_13WhoLikedStoryENS1_15AppSTLAllocatorIS5_EEEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_15PlayedWithStoryENS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_15PlayedWithStoryENS1_15AppSTLAllocatorIS5_EEEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_17ActivityFeedStoryENS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_17ActivityFeedStoryENS1_15AppSTLAllocatorIS5_EEEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_18GameCustomDataItemENS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_18GameCustomDataItemENS1_15AppSTLAllocatorIS5_EEEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_18SessionInformationENS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_18SessionInformationENS1_15AppSTLAllocatorIS5_EEEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_19ProductInfoDetailedENS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_19ProductInfoDetailedENS1_15AppSTLAllocatorIS5_EEEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_20ChallengeRecvDetailsENS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_20ChallengeRecvDetailsENS1_15AppSTLAllocatorIS5_EEEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_20NpSessionInformationENS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_20NpSessionInformationENS1_15AppSTLAllocatorIS5_EEEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_23NpSessionInvitationInfoENS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_23NpSessionInvitationInfoENS1_15AppSTLAllocatorIS5_EEEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_28ActivityFeedSharedVideoStoryENS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_28ActivityFeedSharedVideoStoryENS1_15AppSTLAllocatorIS5_EEEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_6NpUserENS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_6NpUserENS1_15AppSTLAllocatorIS5_EEEE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureIbE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureIbE3getEv +_ZNK3sce7Toolkit2NP9Utilities6FutureIiE17getAdditionalInfoEv +_ZNK3sce7Toolkit2NP9Utilities6FutureIiE3getEv +_ZNK4IPMI4impl11SessionImpl16isPeerPrivilegedEv +_ZNK4IPMI6Server6Config29estimateTempWorkingMemorySizeEv +_ZNK4Manx6Cookie14netscapeCookieEv +_ZNK4Manx6Cookie8httpOnlyEv +_ZNK6WebKit17ChildProcessProxy5stateEv +_ZNK6icu_6713UnicodeString6lengthEv +_ZNK6icu_6713UnicodeString9getBufferEv +_ZNK6icu_678TimeZone5getIDERNS_13UnicodeStringE +_ZNK7CoreIPC10Attachment6encodeERNS_15ArgumentEncoderE +_ZNK7CoreIPC10Connection31platformCanSendOutgoingMessagesEv +_ZNK7CoreIPC13DataReference6encodeERNS_15ArgumentEncoderE +_ZNK7CoreIPC14MessageDecoder13isSyncMessageEv +_ZNK7CoreIPC14MessageDecoder44shouldDispatchMessageWhenWaitingForSyncReplyEv +_ZNK7CoreIPC15ArgumentDecoder28bufferIsLargeEnoughToContainEjm +_ZNK7CoreIPC15StringReference6encodeERNS_15ArgumentEncoderE +_ZNK7CoreIPC15StringReference8toStringEv +_ZNK7Nicosia10Animations25hasActiveAnimationsOfTypeEN7WebCore18AnimatedPropertyIDE +_ZNK7WebCore10Credential7isEmptyEv +_ZNK7WebCore10FileHandlecvbEv +_ZNK7WebCore10FloatPoint15matrixTransformERKNS_15AffineTransformE +_ZNK7WebCore10FloatPoint15matrixTransformERKNS_20TransformationMatrixE +_ZNK7WebCore10FloatPoint18constrainedBetweenERKS0_S2_ +_ZNK7WebCore10FontRanges16fontForCharacterEi +_ZNK7WebCore10FontRanges17fontForFirstRangeEv +_ZNK7WebCore10FontRanges21glyphDataForCharacterEiNS_30ExternalResourceDownloadPolicyE +_ZNK7WebCore10ISOFullBox5flagsEv +_ZNK7WebCore10ISOFullBox7versionEv +_ZNK7WebCore10JSDocument7wrappedEv +_ZNK7WebCore10LayoutRect8containsERKS0_ +_ZNK7WebCore10MouseEvent11fromElementEv +_ZNK7WebCore10MouseEvent9toElementEv +_ZNK7WebCore10PluginData16supportsMimeTypeERKN3WTF6StringENS0_18AllowedPluginTypesE +_ZNK7WebCore10PluginData17webVisiblePluginsEv +_ZNK7WebCore10PluginData19webVisibleMimeTypesEv +_ZNK7WebCore10PluginData26supportsWebVisibleMimeTypeERKN3WTF6StringENS0_18AllowedPluginTypesE +_ZNK7WebCore10PluginData32supportsWebVisibleMimeTypeForURLERKN3WTF6StringENS0_18AllowedPluginTypesERKNS1_3URLE +_ZNK7WebCore10PluginData32supportsWebVisibleMimeTypeForURLERKN3WTF6StringENS0_18AllowedPluginTypesERKNS_3URLE +_ZNK7WebCore10PluginData34getWebVisibleMimesAndPluginIndicesERN3WTF6VectorINS_13MimeClassInfoELm0ENS1_15CrashOnOverflowELm16EEERNS2_ImLm0ES4_Lm16EEE +_ZNK7WebCore10RenderText16firstRunLocationEv +_ZNK7WebCore10RenderText16linesBoundingBoxEv +_ZNK7WebCore10RenderText8textNodeEv +_ZNK7WebCore10RenderView12documentRectEv +_ZNK7WebCore10RenderView15usesCompositingEv +_ZNK7WebCore10RenderView20unscaledDocumentRectEv +_ZNK7WebCore10ScrollView10layoutSizeEv +_ZNK7WebCore10ScrollView12contentsSizeEv +_ZNK7WebCore10ScrollView14scrollbarModesERNS_13ScrollbarModeES2_ +_ZNK7WebCore10ScrollView14useFixedLayoutEv +_ZNK7WebCore10ScrollView15fixedLayoutSizeEv +_ZNK7WebCore10ScrollView16contentsToScreenERKNS_7IntRectE +_ZNK7WebCore10ScrollView16contentsToWindowERKNS_7IntRectE +_ZNK7WebCore10ScrollView16contentsToWindowERKNS_8IntPointE +_ZNK7WebCore10ScrollView16windowToContentsERKNS_7IntRectE +_ZNK7WebCore10ScrollView16windowToContentsERKNS_8IntPointE +_ZNK7WebCore10ScrollView18contentsToRootViewERKNS_10FloatPointE +_ZNK7WebCore10ScrollView18contentsToRootViewERKNS_7IntRectE +_ZNK7WebCore10ScrollView18contentsToRootViewERKNS_8IntPointE +_ZNK7WebCore10ScrollView18contentsToRootViewERKNS_9FloatRectE +_ZNK7WebCore10ScrollView18exposedContentRectEv +_ZNK7WebCore10ScrollView18rootViewToContentsERKNS_10FloatPointE +_ZNK7WebCore10ScrollView18rootViewToContentsERKNS_7IntRectE +_ZNK7WebCore10ScrollView18rootViewToContentsERKNS_8IntPointE +_ZNK7WebCore10ScrollView18rootViewToContentsERKNS_9FloatRectE +_ZNK7WebCore10ScrollView21unobscuredContentRectENS_14ScrollableArea36VisibleContentRectIncludesScrollbarsE +_ZNK7WebCore10ScrollView21unobscuredContentSizeEv +_ZNK7WebCore10ScrollView22contentsScrollPositionEv +_ZNK7WebCore10ScrollView23rootViewToTotalContentsERKNS_8IntPointE +_ZNK7WebCore10ScrollView29unobscuredContentRectInternalENS_14ScrollableArea36VisibleContentRectIncludesScrollbarsE +_ZNK7WebCore10ScrollView42documentScrollPositionRelativeToViewOriginEv +_ZNK7WebCore10StorageMap6lengthEv +_ZNK7WebCore10StorageMap7getItemERKN3WTF6StringE +_ZNK7WebCore10StorageMap8containsERKN3WTF6StringE +_ZNK7WebCore10TimeRanges3endEj +_ZNK7WebCore10TimeRanges4copyEv +_ZNK7WebCore10TimeRanges5startEj +_ZNK7WebCore10TimeRanges6lengthEv +_ZNK7WebCore10TimeRanges7nearestEd +_ZNK7WebCore11BitmapImage21decodeCountForTestingEv +_ZNK7WebCore11CSSPageRule12selectorTextEv +_ZNK7WebCore11CachedImage20imageSizeForRendererEPKNS_13RenderElementENS0_8SizeTypeE +_ZNK7WebCore11ContentType13containerTypeEv +_ZNK7WebCore11ContentType9parameterERKN3WTF6StringE +_ZNK7WebCore11CryptoKeyEC9exportRawEv +_ZNK7WebCore11EventRegioneqERKS0_ +_ZNK7WebCore11FontCascade5widthERKNS_7TextRunEPN3WTF7HashSetIPKNS_4FontENS4_11DefaultHashIS8_EENS4_10HashTraitsIS8_EEEEPNS_13GlyphOverflowE +_ZNK7WebCore11FontCascade5widthERKNS_7TextRunEPN3WTF7HashSetIPKNS_4FontENS4_7PtrHashIS8_EENS4_10HashTraitsIS8_EEEEPNS_13GlyphOverflowE +_ZNK7WebCore11FontCascade6updateEON3WTF6RefPtrINS_12FontSelectorENS1_13DumbPtrTraitsIS3_EEEE +_ZNK7WebCore11FontCascade8drawTextERNS_15GraphicsContextERKNS_7TextRunERKNS_10FloatPointEjN3WTF8OptionalIjEENS0_24CustomFontNotReadyActionE +_ZNK7WebCore11FontCascade8drawTextERNS_15GraphicsContextERKNS_7TextRunERKNS_10FloatPointEjSt8optionalIjENS0_24CustomFontNotReadyActionE +_ZNK7WebCore11FontCascadeeqERKS0_ +_ZNK7WebCore11FontChanges18createEditingStyleEv +_ZNK7WebCore11FrameLoader10isCompleteEv +_ZNK7WebCore11FrameLoader14cancelledErrorERKNS_15ResourceRequestE +_ZNK7WebCore11FrameLoader14frameHasLoadedEv +_ZNK7WebCore11FrameLoader16outgoingReferrerEv +_ZNK7WebCore11FrameLoader17networkingContextEv +_ZNK7WebCore11FrameLoader20activeDocumentLoaderEv +_ZNK7WebCore11FrameLoader27numPendingOrLoadingRequestsEb +_ZNK7WebCore11FrameLoader28blockedByContentBlockerErrorERKNS_15ResourceRequestE +_ZNK7WebCore11FrameLoader6pageIDEv +_ZNK7WebCore11FrameLoader7frameIDEv +_ZNK7WebCore11FrameLoader8loadTypeEv +_ZNK7WebCore11HTMLElement10spellcheckEv +_ZNK7WebCore11HTMLElement15contentEditableEv +_ZNK7WebCore11HTMLElement18canonicalInputModeEv +_ZNK7WebCore11HTMLElement21canonicalEnterKeyHintEv +_ZNK7WebCore11HTMLElement3dirEv +_ZNK7WebCore11HTMLElement4formEv +_ZNK7WebCore11HTMLElement5titleEv +_ZNK7WebCore11HTMLElement9translateEv +_ZNK7WebCore11HistoryItem11hasChildrenEv +_ZNK7WebCore11HistoryItem11originalURLEv +_ZNK7WebCore11HistoryItem12isTargetItemEv +_ZNK7WebCore11HistoryItem13documentStateEv +_ZNK7WebCore11HistoryItem14alternateTitleEv +_ZNK7WebCore11HistoryItem14scrollPositionEv +_ZNK7WebCore11HistoryItem15formContentTypeEv +_ZNK7WebCore11HistoryItem15pageScaleFactorEv +_ZNK7WebCore11HistoryItem17originalURLStringEv +_ZNK7WebCore11HistoryItem20hasCachedPageExpiredEv +_ZNK7WebCore11HistoryItem27shouldRestoreScrollPositionEv +_ZNK7WebCore11HistoryItem28shouldOpenExternalURLsPolicyEv +_ZNK7WebCore11HistoryItem3urlEv +_ZNK7WebCore11HistoryItem4copyEv +_ZNK7WebCore11HistoryItem5titleEv +_ZNK7WebCore11HistoryItem6targetEv +_ZNK7WebCore11HistoryItem8childrenEv +_ZNK7WebCore11HistoryItem8referrerEv +_ZNK7WebCore11HistoryItem9urlStringEv +_ZNK7WebCore11ImageBuffer7contextEv +_ZNK7WebCore11ImageBuffer9copyImageENS_16BackingStoreCopyENS_18PreserveResolutionE +_ZNK7WebCore11JSDOMMatrix7wrappedEv +_ZNK7WebCore11JSDOMWindow12openDatabaseERN3JSC14JSGlobalObjectE +_ZNK7WebCore11JSDOMWindow4selfERN3JSC14JSGlobalObjectE +_ZNK7WebCore11JSDOMWindow5eventERN3JSC14JSGlobalObjectE +_ZNK7WebCore11JSDOMWindow5eventERN3JSC9ExecStateE +_ZNK7WebCore11JSDOMWindow6framesERN3JSC14JSGlobalObjectE +_ZNK7WebCore11JSDOMWindow6windowERN3JSC14JSGlobalObjectE +_ZNK7WebCore11JSDOMWindow7wrappedEv +_ZNK7WebCore11MediaPlayer11currentTimeEv +_ZNK7WebCore11MediaPlayer11initialTimeEv +_ZNK7WebCore11MediaPlayer12getStartDateEv +_ZNK7WebCore11MediaPlayer13isVideoPlayerEv +_ZNK7WebCore11MediaPlayer13movieLoadTypeEv +_ZNK7WebCore11MediaPlayer13platformLayerEv +_ZNK7WebCore11MediaPlayer13playerPrivateEv +_ZNK7WebCore11MediaPlayer13requestedRateEv +_ZNK7WebCore11MediaPlayer14preservesPitchEv +_ZNK7WebCore11MediaPlayer15contentMIMETypeEv +_ZNK7WebCore11MediaPlayer15extraMemoryCostEv +_ZNK7WebCore11MediaPlayer16canSaveMediaDataEv +_ZNK7WebCore11MediaPlayer16supportsScanningEv +_ZNK7WebCore11MediaPlayer16wouldTaintOriginERKNS_14SecurityOriginE +_ZNK7WebCore11MediaPlayer17contentTypeCodecsEv +_ZNK7WebCore11MediaPlayer17decodedFrameCountEv +_ZNK7WebCore11MediaPlayer17doesHaveAttributeERKN3WTF10AtomStringEPS2_ +_ZNK7WebCore11MediaPlayer17droppedFrameCountEv +_ZNK7WebCore11MediaPlayer17engineDescriptionEv +_ZNK7WebCore11MediaPlayer17hasClosedCaptionsEv +_ZNK7WebCore11MediaPlayer17platformErrorCodeEv +_ZNK7WebCore11MediaPlayer18maxFastForwardRateEv +_ZNK7WebCore11MediaPlayer18minFastReverseRateEv +_ZNK7WebCore11MediaPlayer18shouldDisableSleepEv +_ZNK7WebCore11MediaPlayer18supportsFullscreenEv +_ZNK7WebCore11MediaPlayer19mediaCacheDirectoryEv +_ZNK7WebCore11MediaPlayer19playerContentsScaleEv +_ZNK7WebCore11MediaPlayer20playerContentBoxRectEv +_ZNK7WebCore11MediaPlayer20renderingModeChangedEv +_ZNK7WebCore11MediaPlayer21audioDecodedByteCountEv +_ZNK7WebCore11MediaPlayer21mediaTimeForTimeValueERKN3WTF9MediaTimeE +_ZNK7WebCore11MediaPlayer21videoDecodedByteCountEv +_ZNK7WebCore11MediaPlayer22didPassCORSAccessCheckEv +_ZNK7WebCore11MediaPlayer22documentSecurityOriginEv +_ZNK7WebCore11MediaPlayer22hasAvailableVideoFrameEv +_ZNK7WebCore11MediaPlayer23hasSingleSecurityOriginEv +_ZNK7WebCore11MediaPlayer24shouldUsePersistentCacheEv +_ZNK7WebCore11MediaPlayer24supportsPictureInPictureEv +_ZNK7WebCore11MediaPlayer25preferredDynamicRangeModeEv +_ZNK7WebCore11MediaPlayer25renderingCanBeAcceleratedEv +_ZNK7WebCore11MediaPlayer26shouldCheckHardwareSupportEv +_ZNK7WebCore11MediaPlayer27languageOfPrimaryAudioTrackEv +_ZNK7WebCore11MediaPlayer27sourceApplicationIdentifierEv +_ZNK7WebCore11MediaPlayer28requiresImmediateCompositingEv +_ZNK7WebCore11MediaPlayer28supportsAcceleratedRenderingEv +_ZNK7WebCore11MediaPlayer29preferredAudioCharacteristicsEv +_ZNK7WebCore11MediaPlayer31maximumDurationToCacheMediaTimeEv +_ZNK7WebCore11MediaPlayer31requiresTextTrackRepresentationEv +_ZNK7WebCore11MediaPlayer35platformVolumeConfigurationRequiredEv +_ZNK7WebCore11MediaPlayer39contentMIMETypeWasInferredFromExtensionEv +_ZNK7WebCore11MediaPlayer41mediaContentTypesRequiringHardwareSupportEv +_ZNK7WebCore11MediaPlayer4rateEv +_ZNK7WebCore11MediaPlayer4sizeEv +_ZNK7WebCore11MediaPlayer5endedEv +_ZNK7WebCore11MediaPlayer5mutedEv +_ZNK7WebCore11MediaPlayer6clientEv +_ZNK7WebCore11MediaPlayer6pausedEv +_ZNK7WebCore11MediaPlayer6volumeEv +_ZNK7WebCore11MediaPlayer7preloadEv +_ZNK7WebCore11MediaPlayer7seekingEv +_ZNK7WebCore11MediaPlayer7visibleEv +_ZNK7WebCore11MediaPlayer8durationEv +_ZNK7WebCore11MediaPlayer8fileSizeEv +_ZNK7WebCore11MediaPlayer8hasAudioEv +_ZNK7WebCore11MediaPlayer8hasVideoEv +_ZNK7WebCore11MediaPlayer8referrerEv +_ZNK7WebCore11MediaPlayer9isLoopingEv +_ZNK7WebCore11MediaPlayer9startTimeEv +_ZNK7WebCore11MediaPlayer9userAgentEv +_ZNK7WebCore11MediaSample12toJSONStringEv +_ZNK7WebCore11MediaSample13videoMirroredEv +_ZNK7WebCore11MediaSample13videoRotationEv +_ZNK7WebCore11MediaSample15isNonDisplayingEv +_ZNK7WebCore11MediaSample16getRGBAImageDataEv +_ZNK7WebCore11MediaSample16videoPixelFormatEv +_ZNK7WebCore11MediaSample6isSyncEv +_ZNK7WebCore11MediaSample8hasAlphaEv +_ZNK7WebCore11MemoryCache16originsWithCacheEN3PAL9SessionIDE +_ZNK7WebCore11MessagePort18isLocallyReachableEv +_ZNK7WebCore11MessagePort3refEv +_ZNK7WebCore11MessagePort5derefEv +_ZNK7WebCore11PageOverlay10controllerEv +_ZNK7WebCore11PageOverlay19viewToOverlayOffsetEv +_ZNK7WebCore11PageOverlay5frameEv +_ZNK7WebCore11PageOverlay6boundsEv +_ZNK7WebCore11RenderLayer19absoluteBoundingBoxEv +_ZNK7WebCore11RenderLayer24needsCompositedScrollingEv +_ZNK7WebCore11RenderLayer35isTransparentRespectingParentFramesEv +_ZNK7WebCore11RenderStyle10lineHeightEv +_ZNK7WebCore11RenderStyle11fontCascadeEv +_ZNK7WebCore11RenderStyle11fontMetricsEv +_ZNK7WebCore11RenderStyle15fontDescriptionEv +_ZNK7WebCore11RenderStyle18computedLineHeightEv +_ZNK7WebCore11RenderStyle21visitedDependentColorENS_13CSSPropertyIDE +_ZNK7WebCore11RenderStyle26colorByApplyingColorFilterERKNS_5ColorE +_ZNK7WebCore11RenderStyle36visitedDependentColorWithColorFilterENS_13CSSPropertyIDE +_ZNK7WebCore11RenderStyle5colorEv +_ZNK7WebCore11RenderTheme14focusRingColorEN3WTF9OptionSetINS_10StyleColor7OptionsEEE +_ZNK7WebCore11RenderVideo8videoBoxEv +_ZNK7WebCore11RoundedRect8containsERKNS_10LayoutRectE +_ZNK7WebCore11WindowProxy6windowEv +_ZNK7WebCore11XPathResult10resultTypeEv +_ZNK7WebCore11XPathResult11numberValueEv +_ZNK7WebCore11XPathResult11stringValueEv +_ZNK7WebCore11XPathResult12booleanValueEv +_ZNK7WebCore11XPathResult14snapshotLengthEv +_ZNK7WebCore11XPathResult15singleNodeValueEv +_ZNK7WebCore11XPathResult20invalidIteratorStateEv +_ZNK7WebCore12BlobDataItem6lengthEv +_ZNK7WebCore12BlobRegistry18isBlobRegistryImplEv +_ZNK7WebCore12CSSMediaRule5mediaEv +_ZNK7WebCore12CSSStyleRule12selectorTextEv +_ZNK7WebCore12ChromeClient10screenSizeEv +_ZNK7WebCore12ChromeClient13underlayColorEv +_ZNK7WebCore12ChromeClient17minimumWindowSizeEv +_ZNK7WebCore12ChromeClient17plugInExtraScriptEv +_ZNK7WebCore12ChromeClient18overrideScreenSizeEv +_ZNK7WebCore12ChromeClient18scrollRectIntoViewERKNS_7IntRectE +_ZNK7WebCore12ChromeClient19availableScreenSizeEv +_ZNK7WebCore12ChromeClient19isEmptyChromeClientEv +_ZNK7WebCore12ChromeClient20graphicsLayerFactoryEv +_ZNK7WebCore12ChromeClient21plugInExtraStyleSheetEv +_ZNK7WebCore12ChromeClient21plugInStartLabelTitleERKN3WTF6StringE +_ZNK7WebCore12ChromeClient22isSVGImageChromeClientEv +_ZNK7WebCore12ChromeClient22layerTreeStateIsFrozenEv +_ZNK7WebCore12ChromeClient24hasStablePageScaleFactorEv +_ZNK7WebCore12ChromeClient24plugInStartLabelSubtitleERKN3WTF6StringE +_ZNK7WebCore12ChromeClient25shouldPaintEntireContentsEv +_ZNK7WebCore12ChromeClient26allowedCompositingTriggersEv +_ZNK7WebCore12ChromeClient26createScrollingCoordinatorERNS_4PageE +_ZNK7WebCore12ChromeClient27createDisplayRefreshMonitorEj +_ZNK7WebCore12ChromeClient28allowsAcceleratedCompositingEv +_ZNK7WebCore12ChromeClient30unavailablePluginButtonClickedERNS_7ElementENS_20RenderEmbeddedObject26PluginUnavailabilityReasonE +_ZNK7WebCore12ChromeClient31visibleRectForTiledBackingStoreEv +_ZNK7WebCore12ChromeClient33shouldDispatchFakeMouseMoveEventsEv +_ZNK7WebCore12ChromeClient33shouldUseTiledBackingForFrameViewERKNS_9FrameViewE +_ZNK7WebCore12ChromeClient33signedPublicKeyAndChallengeStringEjRKN3WTF6StringERKNS_3URLE +_ZNK7WebCore12ChromeClient35dispatchViewportPropertiesDidChangeERKNS_17ViewportArgumentsE +_ZNK7WebCore12ChromeClient36dispatchDisabledAdaptationsDidChangeERKN3WTF9OptionSetINS_19DisabledAdaptationsEEE +_ZNK7WebCore12ChromeClient36pageExtendedBackgroundColorDidChangeENS_5ColorE +_ZNK7WebCore12ChromeClient38shouldUnavailablePluginMessageBeButtonENS_20RenderEmbeddedObject26PluginUnavailabilityReasonE +_ZNK7WebCore12DOMTokenList5valueEv +_ZNK7WebCore12DOMTokenList8containsERKN3WTF10AtomStringE +_ZNK7WebCore12DOMTokenList8containsERKN3WTF12AtomicStringE +_ZNK7WebCore12EventHandler20hitTestResultAtPointERKNS_11LayoutPointEN3WTF9OptionSetINS_14HitTestRequest11RequestTypeEEERKNS_10LayoutSizeE +_ZNK7WebCore12EventHandler20hitTestResultAtPointERKNS_11LayoutPointEjRKNS_10LayoutSizeE +_ZNK7WebCore12EventHandler27capsLockStateMayHaveChangedEv +_ZNK7WebCore12GridPosition12spanPositionEv +_ZNK7WebCore12GridPosition15integerPositionEv +_ZNK7WebCore12ISOWebVTTCue12toJSONStringEv +_ZNK7WebCore12ISOWebVTTCue16presentationTimeEv +_ZNK7WebCore12ISOWebVTTCue17originalStartTimeEv +_ZNK7WebCore12ISOWebVTTCue2idEv +_ZNK7WebCore12ISOWebVTTCue7cueTextEv +_ZNK7WebCore12ISOWebVTTCue8durationEv +_ZNK7WebCore12ISOWebVTTCue8settingsEv +_ZNK7WebCore12ISOWebVTTCue8sourceIDEv +_ZNK7WebCore12NamedNodeMap12getNamedItemERKN3WTF10AtomStringE +_ZNK7WebCore12NamedNodeMap12getNamedItemERKN3WTF12AtomicStringE +_ZNK7WebCore12NamedNodeMap14getNamedItemNSERKN3WTF10AtomStringES4_ +_ZNK7WebCore12NamedNodeMap14getNamedItemNSERKN3WTF12AtomicStringES4_ +_ZNK7WebCore12NamedNodeMap4itemEj +_ZNK7WebCore12NamedNodeMap6lengthEv +_ZNK7WebCore12RenderInline16linesBoundingBoxEv +_ZNK7WebCore12RenderObject12enclosingBoxEv +_ZNK7WebCore12RenderObject14enclosingLayerEv +_ZNK7WebCore12RenderObject15containingBlockEv +_ZNK7WebCore12RenderObject15localToAbsoluteERKNS_10FloatPointEjPb +_ZNK7WebCore12RenderObject16repaintRectangleERKNS_10LayoutRectEb +_ZNK7WebCore12RenderObject17useDarkAppearanceEv +_ZNK7WebCore12RenderObject20localToContainerQuadERKNS_9FloatQuadEPKNS_22RenderLayerModelObjectEjPb +_ZNK7WebCore12RenderObject21localToContainerPointERKNS_10FloatPointEPKNS_22RenderLayerModelObjectEjPb +_ZNK7WebCore12RenderObject23absoluteBoundingBoxRectEbPb +_ZNK7WebCore12RenderObject39pixelSnappedAbsoluteClippedOverflowRectEv +_ZNK7WebCore12RenderObject44hasNonEmptyVisibleRectRespectingParentFramesEv +_ZNK7WebCore12RenderObject7childAtEj +_ZNK7WebCore12RenderWidget14windowClipRectEv +_ZNK7WebCore12SettingsBase15fixedFontFamilyE11UScriptCode +_ZNK7WebCore12SettingsBase15serifFontFamilyE11UScriptCode +_ZNK7WebCore12SettingsBase17cursiveFontFamilyE11UScriptCode +_ZNK7WebCore12SettingsBase17fantasyFontFamilyE11UScriptCode +_ZNK7WebCore12SettingsBase18standardFontFamilyE11UScriptCode +_ZNK7WebCore12SettingsBase19sansSerifFontFamilyE11UScriptCode +_ZNK7WebCore12SettingsBase20pictographFontFamilyE11UScriptCode +_ZNK7WebCore12SharedBuffer11DataSegment4dataEv +_ZNK7WebCore12SharedBuffer11DataSegment4sizeEv +_ZNK7WebCore12SharedBuffer11getSomeDataEm +_ZNK7WebCore12SharedBuffer11toHexStringEv +_ZNK7WebCore12SharedBuffer14dataAsUInt8PtrEv +_ZNK7WebCore12SharedBuffer20tryCreateArrayBufferEv +_ZNK7WebCore12SharedBuffer21combineIntoOneSegmentEv +_ZNK7WebCore12SharedBuffer23hintMemoryNotNeededSoonEv +_ZNK7WebCore12SharedBuffer3endEv +_ZNK7WebCore12SharedBuffer4copyEv +_ZNK7WebCore12SharedBuffer4dataEv +_ZNK7WebCore12SharedBuffer4sizeEv +_ZNK7WebCore12SharedBuffer5beginEv +_ZNK7WebCore12SharedBuffer7decoderEv +_ZNK7WebCore12SharedBuffer7isEmptyEv +_ZNK7WebCore12SharedBuffereqERKS0_ +_ZNK7WebCore12SharedBufferneERKS0_ +_ZNK7WebCore12TextEncoding6decodeEPKcmbRb +_ZNK7WebCore12TextEncoding6encodeEN3WTF10StringViewENS_19UnencodableHandlingE +_ZNK7WebCore12TextEncoding7domNameEv +_ZNK7WebCore12TextIterator4nodeEv +_ZNK7WebCore12TextIterator5rangeEv +_ZNK7WebCore12WebAnimation14timeToNextTickEv +_ZNK7WebCore13CSSImportRule10styleSheetEv +_ZNK7WebCore13CSSImportRule4hrefEv +_ZNK7WebCore13CSSImportRule5mediaEv +_ZNK7WebCore13ContainerNode15countChildNodesEv +_ZNK7WebCore13ContainerNode16lastElementChildEv +_ZNK7WebCore13ContainerNode17childElementCountEv +_ZNK7WebCore13ContainerNode17firstElementChildEv +_ZNK7WebCore13ContainerNode17traverseToChildAtEj +_ZNK7WebCore13ExceptionData12isolatedCopyEv +_ZNK7WebCore13ExtendedColor7cssTextEv +_ZNK7WebCore13FetchResponse16resourceResponseEv +_ZNK7WebCore13GraphicsLayer15layerTreeAsTextEj +_ZNK7WebCore13GraphicsLayer18accumulatedOpacityEv +_ZNK7WebCore13GraphicsLayer18getDebugBorderInfoERNS_5ColorERf +_ZNK7WebCore13GraphicsLayer26backingStoreMemoryEstimateEv +_ZNK7WebCore13HTTPHeaderMap12isolatedCopyEv +_ZNK7WebCore13HTTPHeaderMap17getUncommonHeaderERKN3WTF6StringE +_ZNK7WebCore13HTTPHeaderMap3getENS_14HTTPHeaderNameE +_ZNK7WebCore13HTTPHeaderMap3getERKN3WTF6StringE +_ZNK7WebCore13HTTPHeaderMap8containsENS_14HTTPHeaderNameE +_ZNK7WebCore13HTTPHeaderMap8containsERKN3WTF6StringE +_ZNK7WebCore13HitTestResult10isSelectedEv +_ZNK7WebCore13HitTestResult10targetNodeEv +_ZNK7WebCore13HitTestResult11targetFrameEv +_ZNK7WebCore13HitTestResult11textContentEv +_ZNK7WebCore13HitTestResult12mediaIsVideoEv +_ZNK7WebCore13HitTestResult12selectedTextEv +_ZNK7WebCore13HitTestResult13mediaHasAudioEv +_ZNK7WebCore13HitTestResult13targetElementEv +_ZNK7WebCore13HitTestResult14absolutePDFURLEv +_ZNK7WebCore13HitTestResult14innerNodeFrameEv +_ZNK7WebCore13HitTestResult15absoluteLinkURLEv +_ZNK7WebCore13HitTestResult15spellingToolTipERNS_13TextDirectionE +_ZNK7WebCore13HitTestResult16absoluteImageURLEv +_ZNK7WebCore13HitTestResult16absoluteMediaURLEv +_ZNK7WebCore13HitTestResult16altDisplayStringEv +_ZNK7WebCore13HitTestResult17isContentEditableEv +_ZNK7WebCore13HitTestResult18titleDisplayStringEv +_ZNK7WebCore13HitTestResult19isDownloadableMediaEv +_ZNK7WebCore13HitTestResult19listBasedTestResultEv +_ZNK7WebCore13HitTestResult19mediaIsInFullscreenEv +_ZNK7WebCore13HitTestResult21innerNonSharedElementEv +_ZNK7WebCore13HitTestResult21linkSuggestedFilenameEv +_ZNK7WebCore13HitTestResult34isOverTextInsideFormControlElementEv +_ZNK7WebCore13HitTestResult5imageEv +_ZNK7WebCore13HitTestResult5titleERNS_13TextDirectionE +_ZNK7WebCore13HitTestResult9imageRectEv +_ZNK7WebCore13ImageDocument12imageElementEv +_ZNK7WebCore13JSHTMLElement21pushEventHandlerScopeEPN3JSC14JSGlobalObjectEPNS1_7JSScopeE +_ZNK7WebCore13JSHTMLElement21pushEventHandlerScopeEPN3JSC9ExecStateEPNS1_7JSScopeE +_ZNK7WebCore13JSHTMLElement7wrappedEv +_ZNK7WebCore13KeyboardEvent16getModifierStateERKN3WTF6StringE +_ZNK7WebCore13KeyboardEvent7keyCodeEv +_ZNK7WebCore13KeyboardEvent8charCodeEv +_ZNK7WebCore13MIMETypeCache11isAvailableEv +_ZNK7WebCore13MIMETypeCache7isEmptyEv +_ZNK7WebCore13MediaQuerySet9mediaTextEv +_ZNK7WebCore13RenderElement16imageOrientationEv +_ZNK7WebCore13ScriptElement13scriptContentEv +_ZNK7WebCore14CredentialBase11hasPasswordEv +_ZNK7WebCore14CredentialBase11persistenceEv +_ZNK7WebCore14CredentialBase4userEv +_ZNK7WebCore14CredentialBase7isEmptyEv +_ZNK7WebCore14CredentialBase8passwordEv +_ZNK7WebCore14DOMCacheEngine6Record4copyEv +_ZNK7WebCore14DocumentLoader11frameLoaderEv +_ZNK7WebCore14DocumentLoader11subresourceERKN3WTF3URLE +_ZNK7WebCore14DocumentLoader11subresourceERKNS_3URLE +_ZNK7WebCore14DocumentLoader12mainResourceEv +_ZNK7WebCore14DocumentLoader12subresourcesEv +_ZNK7WebCore14DocumentLoader13urlForHistoryEv +_ZNK7WebCore14DocumentLoader16mainResourceDataEv +_ZNK7WebCore14DocumentLoader16mouseEventPolicyEv +_ZNK7WebCore14DocumentLoader18mainResourceLoaderEv +_ZNK7WebCore14DocumentLoader19isLoadingInAPISenseEv +_ZNK7WebCore14DocumentLoader21archiveResourceForURLERKN3WTF3URLE +_ZNK7WebCore14DocumentLoader21archiveResourceForURLERKNS_3URLE +_ZNK7WebCore14DocumentLoader28urlForHistoryReflectsFailureEv +_ZNK7WebCore14DocumentLoader9isLoadingEv +_ZNK7WebCore14FrameSelection11currentFormEv +_ZNK7WebCore14FrameSelection15copyTypingStyleEv +_ZNK7WebCore14FrameSelection15selectionBoundsENS0_20ClipToVisibleContentE +_ZNK7WebCore14FrameSelection15selectionBoundsEb +_ZNK7WebCore14FrameSelection17getTextRectanglesERN3WTF6VectorINS_9FloatRectELm0ENS1_15CrashOnOverflowELm16EEENS0_19TextRectangleHeightE +_ZNK7WebCore14FrameSelection18isFocusedAndActiveEv +_ZNK7WebCore14FrameSelection21shouldChangeSelectionERKNS_16VisibleSelectionE +_ZNK7WebCore14FrameSelection31getClippedVisibleTextRectanglesERN3WTF6VectorINS_9FloatRectELm0ENS1_15CrashOnOverflowELm16EEENS0_19TextRectangleHeightE +_ZNK7WebCore14FrameSelection31getClippedVisibleTextRectanglesERN3WTF6VectorINS_9FloatRectELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEENS0_19TextRectangleHeightE +_ZNK7WebCore14FrameSelection36rootEditableElementOrDocumentElementEv +_ZNK7WebCore14HTMLCollection13namedItemSlowERKN3WTF10AtomStringE +_ZNK7WebCore14HTMLCollection13namedItemSlowERKN3WTF12AtomicStringE +_ZNK7WebCore14JSVoidCallback22scriptExecutionContextEv +_ZNK7WebCore14JSWebAnimation7wrappedEv +_ZNK7WebCore14LoaderStrategy11usePingLoadEv +_ZNK7WebCore14LoaderStrategy12ongoingLoadsEv +_ZNK7WebCore14LoaderStrategy27havePerformedSecurityChecksERKNS_16ResourceResponseE +_ZNK7WebCore14LoaderStrategy27shouldPerformSecurityChecksEv +_ZNK7WebCore14LoggedInStatus10hasExpiredEv +_ZNK7WebCore14LoggedInStatus6expiryEv +_ZNK7WebCore14RenderListItem10markerTextEv +_ZNK7WebCore14ResourceHandle6clientEv +_ZNK7WebCore14ResourceLoader11frameLoaderEv +_ZNK7WebCore14ResourceLoader24isAlwaysOnLoggingAllowedEv +_ZNK7WebCore14ResourceLoader28shouldIncludeCertificateInfoEv +_ZNK7WebCore14ResourceLoader32isAllowedToAskUserForCredentialsEv +_ZNK7WebCore14ScrollableArea12scrollOffsetEv +_ZNK7WebCore14ScrollableArea13scrolledToTopEv +_ZNK7WebCore14ScrollableArea14scrollAnimatorEv +_ZNK7WebCore14ScrollableArea14scrolledToLeftEv +_ZNK7WebCore14ScrollableArea15scrolledToRightEv +_ZNK7WebCore14ScrollableArea16scrolledToBottomEv +_ZNK7WebCore14ScrollableArea17totalContentsSizeEv +_ZNK7WebCore14ScrollableArea18scrollbarIntrusionEv +_ZNK7WebCore14ScrollableArea18visibleContentRectENS0_26VisibleContentRectBehaviorE +_ZNK7WebCore14ScrollableArea20contentAreaWillPaintEv +_ZNK7WebCore14ScrollableArea21mouseEnteredScrollbarEPNS_9ScrollbarE +_ZNK7WebCore14ScrollableArea21scrollbarsCanBeActiveEv +_ZNK7WebCore14ScrollableArea22mouseExitedContentAreaEv +_ZNK7WebCore14ScrollableArea23mouseEnteredContentAreaEv +_ZNK7WebCore14ScrollableArea23mouseMovedInContentAreaEv +_ZNK7WebCore14ScrollableArea24scrollOffsetFromPositionENS_8IntPointE +_ZNK7WebCore14ScrollableArea24scrollPositionFromOffsetENS_8IntPointE +_ZNK7WebCore14ScrollableArea26reachableTotalContentsSizeEv +_ZNK7WebCore14ScrollableArea26visibleContentRectInternalENS0_36VisibleContentRectIncludesScrollbarsENS0_26VisibleContentRectBehaviorE +_ZNK7WebCore14ScrollableArea32verticalScrollbarStateForTestingEv +_ZNK7WebCore14ScrollableArea34horizontalScrollbarStateForTestingEv +_ZNK7WebCore14ScrollableArea37visibleContentRectIncludingScrollbarsENS0_26VisibleContentRectBehaviorE +_ZNK7WebCore14SecurityOrigin10canDisplayERKN3WTF3URLE +_ZNK7WebCore14SecurityOrigin10canDisplayERKNS_3URLE +_ZNK7WebCore14SecurityOrigin10canRequestERKN3WTF3URLE +_ZNK7WebCore14SecurityOrigin10canRequestERKNS_3URLE +_ZNK7WebCore14SecurityOrigin11toRawStringEv +_ZNK7WebCore14SecurityOrigin12isolatedCopyEv +_ZNK7WebCore14SecurityOrigin14isSameOriginAsERKS0_ +_ZNK7WebCore14SecurityOrigin16canAccessStorageEPKS0_NS0_25ShouldAllowFromThirdPartyE +_ZNK7WebCore14SecurityOrigin20isSameSchemeHostPortERKS0_ +_ZNK7WebCore14SecurityOrigin23domainForCachePartitionEv +_ZNK7WebCore14SecurityOrigin33isMatchingRegistrableDomainSuffixERKN3WTF6StringEb +_ZNK7WebCore14SecurityOrigin5equalEPKS0_ +_ZNK7WebCore14SecurityOrigin8toStringEv +_ZNK7WebCore14SecurityOrigin9canAccessERKS0_ +_ZNK7WebCore14StaticNodeList4itemEj +_ZNK7WebCore14StaticNodeList6lengthEv +_ZNK7WebCore14StyleSheetList6lengthEv +_ZNK7WebCore15ActiveDOMObject16isContextStoppedEv +_ZNK7WebCore15ActiveDOMObject18hasPendingActivityEv +_ZNK7WebCore15ActiveDOMObject20isAllowedToRunScriptEv +_ZNK7WebCore15ActiveDOMObject25virtualHasPendingActivityEv +_ZNK7WebCore15ActiveDOMObject30assertSuspendIfNeededWasCalledEv +_ZNK7WebCore15AffineTransform10isIdentityEv +_ZNK7WebCore15AffineTransform22toTransformationMatrixEv +_ZNK7WebCore15AffineTransform6xScaleEv +_ZNK7WebCore15AffineTransform6yScaleEv +_ZNK7WebCore15AffineTransform7inverseEv +_ZNK7WebCore15AffineTransform7mapQuadERKNS_9FloatQuadE +_ZNK7WebCore15AffineTransform7mapRectERKNS_7IntRectE +_ZNK7WebCore15AffineTransform7mapRectERKNS_9FloatRectE +_ZNK7WebCore15AffineTransform7mapSizeERKNS_7IntSizeE +_ZNK7WebCore15AffineTransform7mapSizeERKNS_9FloatSizeE +_ZNK7WebCore15AffineTransform8mapPointERKNS_10FloatPointE +_ZNK7WebCore15AffineTransform8mapPointERKNS_8IntPointE +_ZNK7WebCore15AffineTransform9mapRegionERKNS_6RegionE +_ZNK7WebCore15CSSGroupingRule8cssRulesEv +_ZNK7WebCore15CertificateInfo12isolatedCopyEv +_ZNK7WebCore15ContextMenuItem4typeEv +_ZNK7WebCore15ContextMenuItem6actionEv +_ZNK7WebCore15ContextMenuItem7checkedEv +_ZNK7WebCore15ContextMenuItem7enabledEv +_ZNK7WebCore15FocusController18focusedOrMainFrameEv +_ZNK7WebCore15GraphicsContext15platformContextEv +_ZNK7WebCore15GraphicsContext18hasPlatformContextEv +_ZNK7WebCore15GraphicsContext6getCTMENS0_18IncludeDeviceScaleE +_ZNK7WebCore15HTMLAreaElement11computeRectEPNS_12RenderObjectE +_ZNK7WebCore15HTMLAreaElement12imageElementEv +_ZNK7WebCore15HTMLBaseElement4hrefEv +_ZNK7WebCore15HTMLFormElement12autocompleteEv +_ZNK7WebCore15HTMLFormElement24unsafeAssociatedElementsEv +_ZNK7WebCore15HTMLFormElement6actionEv +_ZNK7WebCore15HTMLFormElement6lengthEv +_ZNK7WebCore15HTMLFormElement6methodEv +_ZNK7WebCore15HTMLLinkElement11crossOriginEv +_ZNK7WebCore15HTMLLinkElement2asEv +_ZNK7WebCore15HTMLLinkElement3relEv +_ZNK7WebCore15HTTPHeaderField4nameEv +_ZNK7WebCore15HTTPHeaderField5valueEv +_ZNK7WebCore15JSDOMWindowBase17printErrorMessageERKN3WTF6StringE +_ZNK7WebCore15JSDOMWindowBase22scriptExecutionContextEv +_ZNK7WebCore15JSDOMWindowBase5proxyEv +_ZNK7WebCore15JSDOMWindowBase7wrappedEv +_ZNK7WebCore15JSSVGSVGElement7wrappedEv +_ZNK7WebCore15ProgressTracker17estimatedProgressEv +_ZNK7WebCore15SQLiteStatement18bindParameterCountEv +_ZNK7WebCore15SecurityContext14securityOriginEv +_ZNK7WebCore15StyleProperties11mutableCopyEv +_ZNK7WebCore15StyleProperties15propertyAsColorENS_13CSSPropertyIDE +_ZNK7WebCore15StyleProperties16getPropertyValueENS_13CSSPropertyIDE +_ZNK7WebCore15StyleProperties17propertyAsValueIDENS_13CSSPropertyIDE +_ZNK7WebCore15StyleProperties19getPropertyCSSValueENS_13CSSPropertyIDE +_ZNK7WebCore15VisiblePosition14characterAfterEv +_ZNK7WebCore15VisiblePosition14localCaretRectERPNS_12RenderObjectE +_ZNK7WebCore15VisiblePosition19absoluteCaretBoundsEPb +_ZNK7WebCore15VisiblePosition30absoluteSelectionBoundsForLineEv +_ZNK7WebCore15VisiblePosition45lineDirectionPointForBlockDirectionNavigationEv +_ZNK7WebCore15VisiblePosition4leftEbPb +_ZNK7WebCore15VisiblePosition4nextENS_27EditingBoundaryCrossingRuleEPb +_ZNK7WebCore15VisiblePosition5rightEbPb +_ZNK7WebCore15VisiblePosition8previousENS_27EditingBoundaryCrossingRuleEPb +_ZNK7WebCore16BackForwardCache10frameCountEv +_ZNK7WebCore16BlobRegistryImpl11filesInBlobERKN3WTF3URLE +_ZNK7WebCore16BlobRegistryImpl18getBlobDataFromURLERKN3WTF3URLE +_ZNK7WebCore16BlobRegistryImpl18getBlobDataFromURLERKNS_3URLE +_ZNK7WebCore16BlobRegistryImpl18isBlobRegistryImplEv +_ZNK7WebCore16DOMGuardedObject11isSuspendedEv +_ZNK7WebCore16DOMGuardedObject12globalObjectEv +_ZNK7WebCore16DOMGuardedObject13guardedObjectEv +_ZNK7WebCore16DOMGuardedObject7isEmptyEv +_ZNK7WebCore16DocumentFragment14getElementByIdERKN3WTF10AtomStringE +_ZNK7WebCore16DocumentFragment14getElementByIdERKN3WTF12AtomicStringE +_ZNK7WebCore16DocumentTimeline17animationIntervalEv +_ZNK7WebCore16DocumentTimeline31acceleratedAnimationsForElementERNS_7ElementE +_ZNK7WebCore16DocumentTimeline34numberOfActiveAnimationsForTestingEv +_ZNK7WebCore16DocumentTimeline48numberOfAnimationTimelineInvalidationsForTestingEv +_ZNK7WebCore16EventListenerMap4findERKN3WTF10AtomStringE +_ZNK7WebCore16EventListenerMap4findERKN3WTF12AtomicStringE +_ZNK7WebCore16FileReaderLoader17arrayBufferResultEv +_ZNK7WebCore16HTMLImageElement11cachedImageEv +_ZNK7WebCore16HTMLImageElement11crossOriginEv +_ZNK7WebCore16HTMLImageElement12naturalWidthEv +_ZNK7WebCore16HTMLImageElement13naturalHeightEv +_ZNK7WebCore16HTMLImageElement19editableImageViewIDEv +_ZNK7WebCore16HTMLImageElement1xEv +_ZNK7WebCore16HTMLImageElement1yEv +_ZNK7WebCore16HTMLImageElement25hasEditableImageAttributeEv +_ZNK7WebCore16HTMLImageElement36pendingDecodePromisesCountForTestingEv +_ZNK7WebCore16HTMLImageElement3altEv +_ZNK7WebCore16HTMLImageElement8completeEv +_ZNK7WebCore16HTMLInputElement10isURLFieldEv +_ZNK7WebCore16HTMLInputElement11isDateFieldEv +_ZNK7WebCore16HTMLInputElement11isTextFieldEv +_ZNK7WebCore16HTMLInputElement11isTimeFieldEv +_ZNK7WebCore16HTMLInputElement11isWeekFieldEv +_ZNK7WebCore16HTMLInputElement11valueAsDateEv +_ZNK7WebCore16HTMLInputElement12defaultValueEv +_ZNK7WebCore16HTMLInputElement12isEmailFieldEv +_ZNK7WebCore16HTMLInputElement12isFileUploadEv +_ZNK7WebCore16HTMLInputElement12isMonthFieldEv +_ZNK7WebCore16HTMLInputElement13isNumberFieldEv +_ZNK7WebCore16HTMLInputElement13isSearchFieldEv +_ZNK7WebCore16HTMLInputElement13valueAsNumberEv +_ZNK7WebCore16HTMLInputElement15isDateTimeFieldEv +_ZNK7WebCore16HTMLInputElement15isPasswordFieldEv +_ZNK7WebCore16HTMLInputElement15suggestedColorsEv +_ZNK7WebCore16HTMLInputElement16isTelephoneFieldEv +_ZNK7WebCore16HTMLInputElement17validationMessageEv +_ZNK7WebCore16HTMLInputElement18shouldAutocompleteEv +_ZNK7WebCore16HTMLInputElement20isDateTimeLocalFieldEv +_ZNK7WebCore16HTMLInputElement21autoFillButtonElementEv +_ZNK7WebCore16HTMLInputElement3altEv +_ZNK7WebCore16HTMLInputElement4sizeEv +_ZNK7WebCore16HTMLInputElement5valueEv +_ZNK7WebCore16HTMLInputElement5widthEv +_ZNK7WebCore16HTMLInputElement6heightEv +_ZNK7WebCore16HTMLInputElement6isTextEv +_ZNK7WebCore16HTMLInputElement8multipleEv +_ZNK7WebCore16HTMLLabelElement4formEv +_ZNK7WebCore16HTMLLabelElement7controlEv +_ZNK7WebCore16HTMLMediaElement11canPlayTypeERKN3WTF6StringE +_ZNK7WebCore16HTMLMediaElement11crossOriginEv +_ZNK7WebCore16HTMLMediaElement11currentTimeEv +_ZNK7WebCore16HTMLMediaElement12getStartDateEv +_ZNK7WebCore16HTMLMediaElement12isFullscreenEv +_ZNK7WebCore16HTMLMediaElement12networkStateEv +_ZNK7WebCore16HTMLMediaElement12playbackRateEv +_ZNK7WebCore16HTMLMediaElement13platformMediaEv +_ZNK7WebCore16HTMLMediaElement15bufferingPolicyEv +_ZNK7WebCore16HTMLMediaElement16shouldBufferDataEv +_ZNK7WebCore16HTMLMediaElement19isVisibleInViewportEv +_ZNK7WebCore16HTMLMediaElement20webkitPreservesPitchEv +_ZNK7WebCore16HTMLMediaElement23webkitHasClosedCaptionsEv +_ZNK7WebCore16HTMLMediaElement27webkitClosedCaptionsVisibleEv +_ZNK7WebCore16HTMLMediaElement33lastMediaResourceLoaderForTestingEv +_ZNK7WebCore16HTMLMediaElement5endedEv +_ZNK7WebCore16HTMLMediaElement5errorEv +_ZNK7WebCore16HTMLMediaElement5mutedEv +_ZNK7WebCore16HTMLMediaElement6pausedEv +_ZNK7WebCore16HTMLMediaElement6volumeEv +_ZNK7WebCore16HTMLMediaElement7canPlayEv +_ZNK7WebCore16HTMLMediaElement7preloadEv +_ZNK7WebCore16HTMLMediaElement7seekingEv +_ZNK7WebCore16HTMLMediaElement8controlsEv +_ZNK7WebCore16HTMLMediaElement8durationEv +_ZNK7WebCore16HTMLOListElement9itemCountEv +_ZNK7WebCore16HTMLStyleElement8disabledEv +_ZNK7WebCore16HTMLTableElement5tFootEv +_ZNK7WebCore16HTMLTableElement5tHeadEv +_ZNK7WebCore16HTMLTableElement7captionEv +_ZNK7WebCore16HTMLTitleElement4textEv +_ZNK7WebCore16HTMLVideoElement10videoWidthEv +_ZNK7WebCore16HTMLVideoElement11videoHeightEv +_ZNK7WebCore16ISOSchemeTypeBox10schemeTypeEv +_ZNK7WebCore16ISOSchemeTypeBox13schemeVersionEv +_ZNK7WebCore16JSStringCallback22scriptExecutionContextEv +_ZNK7WebCore16JSXMLHttpRequest7wrappedEv +_ZNK7WebCore16JSXMLHttpRequest8responseERN3JSC14JSGlobalObjectE +_ZNK7WebCore16JSXMLHttpRequest8responseERN3JSC9ExecStateE +_ZNK7WebCore16ResourceResponse13cfURLResponseEv +_ZNK7WebCore16ResourceResponse23platformCertificateInfoEv +_ZNK7WebCore16ResourceResponse25platformSuggestedFilenameEv +_ZNK7WebCore16TrackPrivateBase10trackIndexEv +_ZNK7WebCore16TrackPrivateBase17startTimeVarianceEv +_ZNK7WebCore16TrackPrivateBase2idEv +_ZNK7WebCore16TrackPrivateBase5labelEv +_ZNK7WebCore16TrackPrivateBase8languageEv +_ZNK7WebCore16URLDecomposition4hashEv +_ZNK7WebCore16URLDecomposition4hostEv +_ZNK7WebCore16URLDecomposition4portEv +_ZNK7WebCore16URLDecomposition6searchEv +_ZNK7WebCore16URLDecomposition8hostnameEv +_ZNK7WebCore16URLDecomposition8pathnameEv +_ZNK7WebCore16URLDecomposition8protocolEv +_ZNK7WebCore16VisibleSelection10firstRangeEv +_ZNK7WebCore16VisibleSelection16hasEditableStyleEv +_ZNK7WebCore16VisibleSelection17isContentEditableEv +_ZNK7WebCore16VisibleSelection17isInPasswordFieldEv +_ZNK7WebCore16VisibleSelection17toNormalizedRangeEv +_ZNK7WebCore16VisibleSelection19rootEditableElementEv +_ZNK7WebCore16VisibleSelection23isContentRichlyEditableEv +_ZNK7WebCore16VisibleSelection5isAllENS_27EditingBoundaryCrossingRuleE +_ZNK7WebCore17ActiveDOMCallback17canInvokeCallbackEv +_ZNK7WebCore17ActiveDOMCallback25activeDOMObjectAreStoppedEv +_ZNK7WebCore17ActiveDOMCallback28activeDOMObjectsAreSuspendedEv +_ZNK7WebCore17CSSPrimitiveValue11stringValueEv +_ZNK7WebCore17CSSPrimitiveValue12getRectValueEv +_ZNK7WebCore17CSSPrimitiveValue13getFloatValueENS_11CSSUnitTypeE +_ZNK7WebCore17CSSPrimitiveValue13getFloatValueEt +_ZNK7WebCore17CSSPrimitiveValue13primitiveTypeEv +_ZNK7WebCore17CSSPrimitiveValue14getStringValueEv +_ZNK7WebCore17CSSPrimitiveValue15getCounterValueEv +_ZNK7WebCore17CSSPrimitiveValue16getRGBColorValueEv +_ZNK7WebCore17CharacterIterator5rangeEv +_ZNK7WebCore17CredentialStorage22originsWithCredentialsEv +_ZNK7WebCore17FrameLoaderClient11hasHTMLViewEv +_ZNK7WebCore17FrameLoaderClient22shouldPaintBrokenImageERKN3WTF3URLE +_ZNK7WebCore17FrameLoaderClient22shouldPaintBrokenImageERKNS_3URLE +_ZNK7WebCore17FrameLoaderClient24isEmptyFrameLoaderClientEv +_ZNK7WebCore17FrameLoaderClient24loadedSubresourceDomainsEv +_ZNK7WebCore17FrameLoaderClient25shouldLoadMediaElementURLERKN3WTF3URLE +_ZNK7WebCore17FrameLoaderClient25shouldLoadMediaElementURLERKNS_3URLE +_ZNK7WebCore17FrameLoaderClient29overrideContentSecurityPolicyEv +_ZNK7WebCore17FrameLoaderClient29shouldAlwaysUsePluginDocumentERKN3WTF6StringE +_ZNK7WebCore17FrameLoaderClient32isServiceWorkerFrameLoaderClientEv +_ZNK7WebCore17FrameLoaderClient42shouldEnableInAppBrowserPrivacyProtectionsEv +_ZNK7WebCore17FrameLoaderClient47allowsContentJavaScriptFromMostRecentNavigationEv +_ZNK7WebCore17FullscreenManager19isFullscreenEnabledEv +_ZNK7WebCore17FullscreenManager21isAnimatingFullscreenEv +_ZNK7WebCore17FullscreenManager27areFullscreenControlsHiddenEv +_ZNK7WebCore17HTMLAnchorElement4hrefEv +_ZNK7WebCore17HTMLAnchorElement6originEv +_ZNK7WebCore17HTMLAnchorElement7relListEv +_ZNK7WebCore17HTMLCanvasElement17displayListAsTextEj +_ZNK7WebCore17HTMLCanvasElement23replayDisplayListAsTextEj +_ZNK7WebCore17HTMLLegendElement4formEv +_ZNK7WebCore17HTMLOptionElement18ownerSelectElementEv +_ZNK7WebCore17HTMLOptionElement21isDisabledFormControlEv +_ZNK7WebCore17HTMLOptionElement4textEv +_ZNK7WebCore17HTMLOptionElement5indexEv +_ZNK7WebCore17HTMLOptionElement5labelEv +_ZNK7WebCore17HTMLOptionElement5valueEv +_ZNK7WebCore17HTMLOptionElement8selectedEv +_ZNK7WebCore17HTMLPlugInElement12pluginWidgetENS0_19PluginLoadingPolicyE +_ZNK7WebCore17HTMLPlugInElement20isBelowSizeThresholdEv +_ZNK7WebCore17HTMLScriptElement11crossOriginEv +_ZNK7WebCore17HTMLScriptElement5asyncEv +_ZNK7WebCore17HTMLSelectElement13selectedIndexEv +_ZNK7WebCore17HTMLSelectElement5valueEv +_ZNK7WebCore17HTMLSelectElement6lengthEv +_ZNK7WebCore17HTMLSelectElement9listItemsEv +_ZNK7WebCore17JSDOMGlobalObject12currentEventEv +_ZNK7WebCore17JSDOMGlobalObject13worldIsNormalEv +_ZNK7WebCore17JSDOMGlobalObject22scriptExecutionContextEv +_ZNK7WebCore17JSHTMLLinkElement7wrappedEv +_ZNK7WebCore17MouseRelatedEvent1xEv +_ZNK7WebCore17MouseRelatedEvent1yEv +_ZNK7WebCore17MouseRelatedEvent29locationInRootViewCoordinatesEv +_ZNK7WebCore17NowPlayingManager15supportsSeekingEv +_ZNK7WebCore17ParsedContentType9serializeEv +_ZNK7WebCore17RenderTextControl22textFormControlElementEv +_ZNK7WebCore17ResourceErrorBase12isolatedCopyEv +_ZNK7WebCore17ResourceErrorBase8lazyInitEv +_ZNK7WebCore17SMILTimeContainer19animationFrameDelayEv +_ZNK7WebCore17SubresourceLoader15originalHeadersEv +_ZNK7WebCore17TiledBackingStore13mapToContentsERKNS_7IntRectE +_ZNK7WebCore18AdClickAttribution10hasExpiredEv +_ZNK7WebCore18AdClickAttribution13urlForTestingERKN3WTF3URLE +_ZNK7WebCore18AdClickAttribution17wasConversionSentEv +_ZNK7WebCore18AdClickAttribution21hasHigherPriorityThanERKS0_ +_ZNK7WebCore18AdClickAttribution3urlEv +_ZNK7WebCore18AdClickAttribution8referrerEv +_ZNK7WebCore18AdClickAttribution8toStringEv +_ZNK7WebCore18CustomHeaderFields22thirdPartyDomainsMatchERKN3WTF3URLE +_ZNK7WebCore18DOMWindowExtension5frameEv +_ZNK7WebCore18HTMLMarqueeElement11scrollDelayEv +_ZNK7WebCore18HTMLMarqueeElement12scrollAmountEv +_ZNK7WebCore18HTMLMarqueeElement4loopEv +_ZNK7WebCore18ImageBufferBackend10toBGRADataEPv +_ZNK7WebCore18ImageBufferBackend12getImageDataENS_22AlphaPremultiplicationERKNS_7IntRectEPv +_ZNK7WebCore18ImageBufferBackend15copyImagePixelsENS_22AlphaPremultiplicationENS_11ColorFormatEjPhS1_S2_jS3_RKNS_7IntSizeE +_ZNK7WebCore18JSHTMLImageElement7wrappedEv +_ZNK7WebCore18JSHTMLInputElement7wrappedEv +_ZNK7WebCore18JSHTMLMediaElement7wrappedEv +_ZNK7WebCore18JSHTMLVideoElement7wrappedEv +_ZNK7WebCore18MessagePortChannel31hasAnyMessagesPendingOrInFlightEv +_ZNK7WebCore18ParsedContentRange11headerValueEv +_ZNK7WebCore18PlatformPasteboard10readStringEmRKN3WTF6StringE +_ZNK7WebCore18PlatformPasteboard29typesSafeForDOMToReadAndWriteERKN3WTF6StringE +_ZNK7WebCore18PlatformTimeRanges13totalDurationEv +_ZNK7WebCore18PlatformTimeRanges19maximumBufferedTimeEv +_ZNK7WebCore18PlatformTimeRanges3endEj +_ZNK7WebCore18PlatformTimeRanges3endEjRb +_ZNK7WebCore18PlatformTimeRanges4dumpERN3WTF11PrintStreamE +_ZNK7WebCore18PlatformTimeRanges4findERKN3WTF9MediaTimeE +_ZNK7WebCore18PlatformTimeRanges5startEj +_ZNK7WebCore18PlatformTimeRanges5startEjRb +_ZNK7WebCore18PlatformTimeRanges6lengthEv +_ZNK7WebCore18PlatformTimeRanges7containERKN3WTF9MediaTimeE +_ZNK7WebCore18PlatformTimeRanges7nearestERKN3WTF9MediaTimeE +_ZNK7WebCore18PlatformTimeRanges8durationEj +_ZNK7WebCore18RenderLayerBacking11contentsBoxEv +_ZNK7WebCore18RenderLayerBacking12tiledBackingEv +_ZNK7WebCore18RenderLayerBacking17displayListAsTextEj +_ZNK7WebCore18RenderLayerBacking20compositingLayerTypeEv +_ZNK7WebCore18RenderLayerBacking23replayDisplayListAsTextEj +_ZNK7WebCore18RenderLayerBacking26backingStoreMemoryEstimateEv +_ZNK7WebCore18ScrollingStateTree14stateNodeForIDEm +_ZNK7WebCore18SecurityOriginData12isolatedCopyEv +_ZNK7WebCore18SecurityOriginData14securityOriginEv +_ZNK7WebCore18SecurityOriginData18databaseIdentifierEv +_ZNK7WebCore18SecurityOriginData8toStringEv +_ZNK7WebCore18StyleSheetContents21isLoadingSubresourcesEv +_ZNK7WebCore18TextureMapperLayer10hasFiltersEv +_ZNK7WebCore18TextureMapperLayer11shouldBlendEv +_ZNK7WebCore18TextureMapperLayer12drawsContentEv +_ZNK7WebCore18TextureMapperLayer13textureMapperEv +_ZNK7WebCore18TextureMapperLayer15fixedToViewportEv +_ZNK7WebCore18TextureMapperLayer16adjustedPositionEv +_ZNK7WebCore18TextureMapperLayer18contentsAreVisibleEv +_ZNK7WebCore18TextureMapperLayer23isShowingRepaintCounterEv +_ZNK7WebCore18TextureMapperLayer25isAncestorFixedToViewportEv +_ZNK7WebCore18TextureMapperLayer38descendantsOrSelfHaveRunningAnimationsEv +_ZNK7WebCore18TextureMapperLayer4sizeEv +_ZNK7WebCore18TextureMapperLayer7opacityEv +_ZNK7WebCore18TextureMapperLayer8childrenEv +_ZNK7WebCore18TextureMapperLayer9isVisibleEv +_ZNK7WebCore18TextureMapperLayer9layerRectEv +_ZNK7WebCore18TextureMapperLayer9rootLayerEv +_ZNK7WebCore18TextureMapperLayer9transformEv +_ZNK7WebCore19BlurFilterOperation11movesPixelsEv +_ZNK7WebCore19BlurFilterOperation12stdDeviationEv +_ZNK7WebCore19BlurFilterOperation14affectsOpacityEv +_ZNK7WebCore19BlurFilterOperation5cloneEv +_ZNK7WebCore19BlurFilterOperationeqERKNS_15FilterOperationE +_ZNK7WebCore19DragCaretController23isContentRichlyEditableEv +_ZNK7WebCore19DragCaretController30caretRectInRootViewCoordinatesEv +_ZNK7WebCore19DragCaretController40editableElementRectInRootViewCoordinatesEv +_ZNK7WebCore19HTMLOptGroupElement14groupLabelTextEv +_ZNK7WebCore19HTMLOptGroupElement18ownerSelectElementEv +_ZNK7WebCore19HTMLTableRowElement15sectionRowIndexEv +_ZNK7WebCore19HTMLTableRowElement8rowIndexEv +_ZNK7WebCore19HTMLTextAreaElement12defaultValueEv +_ZNK7WebCore19HTMLTextAreaElement5valueEv +_ZNK7WebCore19InspectorController12getHighlightERNS_9HighlightENS_16InspectorOverlay16CoordinateSystemE +_ZNK7WebCore19InspectorController13drawHighlightERNS_15GraphicsContextE +_ZNK7WebCore19InspectorController17shouldShowOverlayEv +_ZNK7WebCore19InspectorController30buildObjectForHighlightedNodesEv +_ZNK7WebCore19JSHTMLSelectElement7wrappedEv +_ZNK7WebCore19MediaElementSession20behaviorRestrictionsEv +_ZNK7WebCore19MediaElementSession22allowsPictureInPictureEv +_ZNK7WebCore19MediaQueryEvaluator8evaluateERKNS_13MediaQuerySetEPNS_13StyleResolverE +_ZNK7WebCore19MediaQueryEvaluator8evaluateERKNS_13MediaQuerySetEPNS_24MediaQueryDynamicResultsENS0_4ModeE +_ZNK7WebCore19ProtectionSpaceBase10serverTypeEv +_ZNK7WebCore19ProtectionSpaceBase15isPasswordBasedEv +_ZNK7WebCore19ProtectionSpaceBase20authenticationSchemeEv +_ZNK7WebCore19ProtectionSpaceBase26receivesCredentialSecurelyEv +_ZNK7WebCore19ProtectionSpaceBase4hostEv +_ZNK7WebCore19ProtectionSpaceBase4portEv +_ZNK7WebCore19ProtectionSpaceBase5realmEv +_ZNK7WebCore19ProtectionSpaceBase7isProxyEv +_ZNK7WebCore19ResourceRequestBase10httpMethodEv +_ZNK7WebCore19ResourceRequestBase10httpOriginEv +_ZNK7WebCore19ResourceRequestBase10isSameSiteEv +_ZNK7WebCore19ResourceRequestBase11cachePolicyEv +_ZNK7WebCore19ResourceRequestBase12httpReferrerEv +_ZNK7WebCore19ResourceRequestBase12isolatedCopyEv +_ZNK7WebCore19ResourceRequestBase13httpUserAgentEv +_ZNK7WebCore19ResourceRequestBase13isConditionalEv +_ZNK7WebCore19ResourceRequestBase15httpContentTypeEv +_ZNK7WebCore19ResourceRequestBase15httpHeaderFieldENS_14HTTPHeaderNameE +_ZNK7WebCore19ResourceRequestBase15httpHeaderFieldERKN3WTF6StringE +_ZNK7WebCore19ResourceRequestBase15timeoutIntervalEv +_ZNK7WebCore19ResourceRequestBase16httpHeaderFieldsEv +_ZNK7WebCore19ResourceRequestBase17redirectedRequestERKNS_16ResourceResponseEb +_ZNK7WebCore19ResourceRequestBase18hasHTTPHeaderFieldENS_14HTTPHeaderNameE +_ZNK7WebCore19ResourceRequestBase20firstPartyForCookiesEv +_ZNK7WebCore19ResourceRequestBase3urlEv +_ZNK7WebCore19ResourceRequestBase6isNullEv +_ZNK7WebCore19ResourceRequestBase7isEmptyEv +_ZNK7WebCore19ResourceRequestBase8httpBodyEv +_ZNK7WebCore19ResourceRequestBase8priorityEv +_ZNK7WebCore19ResourceRequestBase9hasUploadEv +_ZNK7WebCore19ResourceRequestBase9isTopSiteEv +_ZNK7WebCore19UIEventWithKeyState16getModifierStateERKN3WTF6StringE +_ZNK7WebCore20CachedResourceLoader11isPreloadedERKN3WTF6StringE +_ZNK7WebCore20DeprecatedCSSOMValue12cssValueTypeEv +_ZNK7WebCore20DeprecatedCSSOMValue7cssTextEv +_ZNK7WebCore20FontAttributeChanges10editActionEv +_ZNK7WebCore20FontAttributeChanges18createEditingStyleEv +_ZNK7WebCore20HTMLFrameElementBase8locationEv +_ZNK7WebCore20HTMLTableCellElement18rowSpanForBindingsEv +_ZNK7WebCore20HTMLTableCellElement5scopeEv +_ZNK7WebCore20HTMLTableCellElement7colSpanEv +_ZNK7WebCore20HTMLTableCellElement9cellAboveEv +_ZNK7WebCore20HTMLTableCellElement9cellIndexEv +_ZNK7WebCore20ISOOriginalFormatBox10dataFormatEv +_ZNK7WebCore20LowPowerModeNotifier21isLowPowerModeEnabledEv +_ZNK7WebCore20PasteboardCustomData18createSharedBufferEv +_ZNK7WebCore20PasteboardWriterData7isEmptyEv +_ZNK7WebCore20RenderBoxModelObject18inlineContinuationEv +_ZNK7WebCore20ResourceResponseBase11httpVersionEv +_ZNK7WebCore20ResourceResponseBase12isAttachmentEv +_ZNK7WebCore20ResourceResponseBase12isSuccessfulEv +_ZNK7WebCore20ResourceResponseBase12lastModifiedEv +_ZNK7WebCore20ResourceResponseBase13isRedirectionEv +_ZNK7WebCore20ResourceResponseBase14httpStatusCodeEv +_ZNK7WebCore20ResourceResponseBase14httpStatusTextEv +_ZNK7WebCore20ResourceResponseBase14isInHTTPFamilyEv +_ZNK7WebCore20ResourceResponseBase15httpHeaderFieldENS_14HTTPHeaderNameE +_ZNK7WebCore20ResourceResponseBase16httpHeaderFieldsEv +_ZNK7WebCore20ResourceResponseBase16textEncodingNameEv +_ZNK7WebCore20ResourceResponseBase17suggestedFilenameEv +_ZNK7WebCore20ResourceResponseBase18cacheControlMaxAgeEv +_ZNK7WebCore20ResourceResponseBase21expectedContentLengthEv +_ZNK7WebCore20ResourceResponseBase22includeCertificateInfoEv +_ZNK7WebCore20ResourceResponseBase23hasCacheValidatorFieldsEv +_ZNK7WebCore20ResourceResponseBase24isAttachmentWithFilenameEv +_ZNK7WebCore20ResourceResponseBase27cacheControlContainsNoCacheEv +_ZNK7WebCore20ResourceResponseBase27cacheControlContainsNoStoreEv +_ZNK7WebCore20ResourceResponseBase29cacheControlContainsImmutableEv +_ZNK7WebCore20ResourceResponseBase32cacheControlStaleWhileRevalidateEv +_ZNK7WebCore20ResourceResponseBase34cacheControlContainsMustRevalidateEv +_ZNK7WebCore20ResourceResponseBase3ageEv +_ZNK7WebCore20ResourceResponseBase3urlEv +_ZNK7WebCore20ResourceResponseBase4dateEv +_ZNK7WebCore20ResourceResponseBase6isHTTPEv +_ZNK7WebCore20ResourceResponseBase6sourceEv +_ZNK7WebCore20ResourceResponseBase7expiresEv +_ZNK7WebCore20ResourceResponseBase8isHTTP09Ev +_ZNK7WebCore20ResourceResponseBase8lazyInitENS0_9InitLevelE +_ZNK7WebCore20ResourceResponseBase8mimeTypeEv +_ZNK7WebCore20ScrollingCoordinator25scrollableContainerNodeIDERKNS_12RenderObjectE +_ZNK7WebCore20ScrollingCoordinator32coordinatesScrollingForFrameViewERKNS_9FrameViewE +_ZNK7WebCore20ScrollingCoordinator36coordinatesScrollingForOverflowLayerERKNS_11RenderLayerE +_ZNK7WebCore20SharedBufferDataView4dataEv +_ZNK7WebCore20SharedBufferDataView4sizeEv +_ZNK7WebCore20TransformationMatrix12isInvertibleEv +_ZNK7WebCore20TransformationMatrix17toAffineTransformEv +_ZNK7WebCore20TransformationMatrix7inverseEv +_ZNK7WebCore20TransformationMatrix7mapQuadERKNS_9FloatQuadE +_ZNK7WebCore20TransformationMatrix7mapRectERKNS_7IntRectE +_ZNK7WebCore20TransformationMatrix7mapRectERKNS_9FloatRectE +_ZNK7WebCore20TransformationMatrix8mapPointERKNS_10FloatPointE +_ZNK7WebCore21BackForwardController12forwardCountEv +_ZNK7WebCore21BackForwardController18canGoBackOrForwardEi +_ZNK7WebCore21BackForwardController9backCountEv +_ZNK7WebCore21ContentSecurityPolicy15responseHeadersEv +_ZNK7WebCore21ContentSecurityPolicy19allowFrameAncestorsERKN3WTF6VectorINS1_6RefPtrINS_14SecurityOriginENS1_13DumbPtrTraitsIS4_EEEELm0ENS1_15CrashOnOverflowELm16EEERKNS_3URLEb +_ZNK7WebCore21ContentSecurityPolicy19allowFrameAncestorsERKN3WTF6VectorINS1_6RefPtrINS_14SecurityOriginENS1_13DumbPtrTraitsIS4_EEEELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEERKNS1_3URLEb +_ZNK7WebCore21ContentSecurityPolicy20allowConnectToSourceERKN3WTF3URLENS0_24RedirectResponseReceivedE +_ZNK7WebCore21ContentSecurityPolicy20allowConnectToSourceERKNS_3URLENS0_24RedirectResponseReceivedE +_ZNK7WebCore21ContentSecurityPolicy21allowScriptFromSourceERKN3WTF3URLENS0_24RedirectResponseReceivedE +_ZNK7WebCore21ContentSecurityPolicy21allowScriptFromSourceERKNS_3URLENS0_24RedirectResponseReceivedE +_ZNK7WebCore21ContentSecurityPolicy22overridesXFrameOptionsEv +_ZNK7WebCore21ContentSecurityPolicy27allowChildContextFromSourceERKN3WTF3URLENS0_24RedirectResponseReceivedE +_ZNK7WebCore21ContentSecurityPolicy27allowChildContextFromSourceERKNS_3URLENS0_24RedirectResponseReceivedE +_ZNK7WebCore21ContentSecurityPolicy30upgradeInsecureRequestIfNeededERN3WTF3URLENS0_19InsecureRequestTypeE +_ZNK7WebCore21ContentSecurityPolicy30upgradeInsecureRequestIfNeededERNS_15ResourceRequestENS0_19InsecureRequestTypeE +_ZNK7WebCore21ContentSecurityPolicy30upgradeInsecureRequestIfNeededERNS_3URLENS0_19InsecureRequestTypeE +_ZNK7WebCore21ContextMenuController21checkOrEnableIfNeededERNS_15ContextMenuItemE +_ZNK7WebCore21FormAssociatedElement4formEv +_ZNK7WebCore21HTMLFrameOwnerElement13contentWindowEv +_ZNK7WebCore21HTMLFrameOwnerElement15contentDocumentEv +_ZNK7WebCore21HTMLOptionsCollection13selectedIndexEv +_ZNK7WebCore21ISOTrackEncryptionBox10defaultKIDEv +_ZNK7WebCore21ISOTrackEncryptionBox17defaultConstantIVEv +_ZNK7WebCore21ISOTrackEncryptionBox18defaultIsProtectedEv +_ZNK7WebCore21ISOTrackEncryptionBox20defaultSkipByteBlockEv +_ZNK7WebCore21ISOTrackEncryptionBox21defaultCryptByteBlockEv +_ZNK7WebCore21ISOTrackEncryptionBox22defaultPerSampleIVSizeEv +_ZNK7WebCore21JSRemoteDOMWindowBase7wrappedEv +_ZNK7WebCore21JSTextTrackCueGeneric7wrappedEv +_ZNK7WebCore21NetworkStorageSession10hasCookiesERKNS_17RegistrableDomainEON3WTF17CompletionHandlerIFvbEEE +_ZNK7WebCore21NetworkStorageSession12deleteCookieERKN3WTF3URLERKNS1_6StringE +_ZNK7WebCore21NetworkStorageSession16hasStorageAccessERKNS_17RegistrableDomainES3_N3WTF8OptionalINS4_16ObjectIdentifierINS_19FrameIdentifierTypeEEEEENS6_INS_18PageIdentifierTypeEEE +_ZNK7WebCore21NetworkStorageSession18cookieAcceptPolicyEv +_ZNK7WebCore21NetworkStorageSession18shouldBlockCookiesERKN3WTF3URLES4_NS1_8OptionalINS1_16ObjectIdentifierINS_19FrameIdentifierTypeEEEEENS5_INS6_INS_18PageIdentifierTypeEEEEENS_35ShouldRelaxThirdPartyCookieBlockingE +_ZNK7WebCore21NetworkStorageSession18shouldBlockCookiesERKNS_15ResourceRequestEN3WTF8OptionalINS4_16ObjectIdentifierINS_19FrameIdentifierTypeEEEEENS5_INS6_INS_18PageIdentifierTypeEEEEENS_35ShouldRelaxThirdPartyCookieBlockingE +_ZNK7WebCore21NetworkStorageSession26getAllStorageAccessEntriesEv +_ZNK7WebCore21NetworkStorageSession28shouldBlockThirdPartyCookiesERKNS_17RegistrableDomainE +_ZNK7WebCore21NetworkStorageSession29cookieRequestHeaderFieldValueERKNS_29CookieRequestHeaderFieldProxyE +_ZNK7WebCore21NetworkStorageSession29resourceLoadStatisticsEnabledEv +_ZNK7WebCore21NetworkStorageSession33hasHadUserInteractionAsFirstPartyERKNS_17RegistrableDomainE +_ZNK7WebCore21NetworkStorageSession41resourceLoadStatisticsDebugLoggingEnabledEv +_ZNK7WebCore21NetworkStorageSession55shouldBlockThirdPartyCookiesButKeepFirstPartyCookiesForERKNS_17RegistrableDomainE +_ZNK7WebCore21PageOverlayController20viewOverlayRootLayerEv +_ZNK7WebCore21PageOverlayController24documentOverlayRootLayerEv +_ZNK7WebCore21RenderLayerCompositor15rootRenderLayerEv +_ZNK7WebCore21UserContentURLPattern7matchesERKN3WTF3URLE +_ZNK7WebCore21UserContentURLPattern7matchesERKNS_3URLE +_ZNK7WebCore21WheelEventDeltaFilter13filteredDeltaEv +_ZNK7WebCore21WheelEventDeltaFilter16filteredVelocityEv +_ZNK7WebCore21WheelEventDeltaFilter17isFilteringDeltasEv +_ZNK7WebCore22CSSAnimationController11isSuspendedEv +_ZNK7WebCore22CSSAnimationController17animationIntervalEv +_ZNK7WebCore22CSSAnimationController24numberOfActiveAnimationsEPNS_8DocumentE +_ZNK7WebCore22CSSAnimationController33allowsNewAnimationsWhileSuspendedEv +_ZNK7WebCore22DefaultFilterOperation15representedTypeEv +_ZNK7WebCore22DefaultFilterOperation5cloneEv +_ZNK7WebCore22DefaultFilterOperationeqERKNS_15FilterOperationE +_ZNK7WebCore22EmptyFrameLoaderClient10hasWebViewEv +_ZNK7WebCore22EmptyFrameLoaderClient12blockedErrorERKNS_15ResourceRequestE +_ZNK7WebCore22EmptyFrameLoaderClient12canCachePageEv +_ZNK7WebCore22EmptyFrameLoaderClient14cancelledErrorERKNS_15ResourceRequestE +_ZNK7WebCore22EmptyFrameLoaderClient14shouldFallBackERKNS_13ResourceErrorE +_ZNK7WebCore22EmptyFrameLoaderClient15canShowMIMETypeERKN3WTF6StringE +_ZNK7WebCore22EmptyFrameLoaderClient16canHandleRequestERKNS_15ResourceRequestE +_ZNK7WebCore22EmptyFrameLoaderClient17overrideMediaTypeEv +_ZNK7WebCore22EmptyFrameLoaderClient18cannotShowURLErrorERKNS_15ResourceRequestE +_ZNK7WebCore22EmptyFrameLoaderClient21canShowMIMETypeAsHTMLERKN3WTF6StringE +_ZNK7WebCore22EmptyFrameLoaderClient21fileDoesNotExistErrorERKNS_16ResourceResponseE +_ZNK7WebCore22EmptyFrameLoaderClient21shouldGoToHistoryItemEPNS_11HistoryItemE +_ZNK7WebCore22EmptyFrameLoaderClient21shouldGoToHistoryItemERNS_11HistoryItemE +_ZNK7WebCore22EmptyFrameLoaderClient23cannotShowMIMETypeErrorERKNS_16ResourceResponseE +_ZNK7WebCore22EmptyFrameLoaderClient24isEmptyFrameLoaderClientEv +_ZNK7WebCore22EmptyFrameLoaderClient25pluginWillHandleLoadErrorERKNS_16ResourceResponseE +_ZNK7WebCore22EmptyFrameLoaderClient28blockedByContentBlockerErrorERKNS_15ResourceRequestE +_ZNK7WebCore22EmptyFrameLoaderClient29generatedMIMETypeForURLSchemeERKN3WTF6StringE +_ZNK7WebCore22EmptyFrameLoaderClient31interruptedForPolicyChangeErrorERKNS_15ResourceRequestE +_ZNK7WebCore22EmptyFrameLoaderClient32representationExistsForURLSchemeERKN3WTF6StringE +_ZNK7WebCore22EmptyFrameLoaderClient6pageIDEv +_ZNK7WebCore22EmptyFrameLoaderClient7frameIDEv +_ZNK7WebCore22EmptyFrameLoaderClient9sessionIDEv +_ZNK7WebCore22EmptyFrameLoaderClient9userAgentERKN3WTF3URLE +_ZNK7WebCore22HTMLFormControlElement10formActionEv +_ZNK7WebCore22HTMLFormControlElement10formMethodEv +_ZNK7WebCore22HTMLFormControlElement11formEnctypeEv +_ZNK7WebCore22HTMLFormControlElement12autocompleteEv +_ZNK7WebCore22HTMLFormControlElement12autofillDataEv +_ZNK7WebCore22HTMLFormControlElement12willValidateEv +_ZNK7WebCore22ResourceLoadStatistics6encodeERNS_12KeyedEncoderE +_ZNK7WebCore22ResourceLoadStatistics8toStringEv +_ZNK7WebCore22ScriptExecutionContext23domainForCachePartitionEv +_ZNK7WebCore22SkewTransformOperation10isIdentityEv +_ZNK7WebCore22SkewTransformOperation27isAffectedByTransformOriginEv +_ZNK7WebCore22SkewTransformOperation4dumpERN3WTF10TextStreamE +_ZNK7WebCore22SkewTransformOperation5applyERNS_20TransformationMatrixERKNS_9FloatSizeE +_ZNK7WebCore22SkewTransformOperation5cloneEv +_ZNK7WebCore22SkewTransformOperation6angleXEv +_ZNK7WebCore22SkewTransformOperation6angleYEv +_ZNK7WebCore22SkewTransformOperationeqERKNS_18TransformOperationE +_ZNK7WebCore23ApplicationCacheStorage11maximumSizeEv +_ZNK7WebCore23AuthenticationChallenge20authenticationClientEv +_ZNK7WebCore23CoordinatedBackingStore4rectEv +_ZNK7WebCore23CoordinatedImageBacking2idEv +_ZNK7WebCore23FrameLoaderStateMachine15firstLayoutDoneEv +_ZNK7WebCore23FrameLoaderStateMachine23committingFirstRealLoadEv +_ZNK7WebCore23FrameLoaderStateMachine28creatingInitialEmptyDocumentEv +_ZNK7WebCore23FrameLoaderStateMachine32isDisplayingInitialEmptyDocumentEv +_ZNK7WebCore23ISOSchemeInformationBox18schemeSpecificDataEv +_ZNK7WebCore23ScaleTransformOperation10isIdentityEv +_ZNK7WebCore23ScaleTransformOperation19isRepresentableIn2DEv +_ZNK7WebCore23ScaleTransformOperation1xEv +_ZNK7WebCore23ScaleTransformOperation1yEv +_ZNK7WebCore23ScaleTransformOperation1zEv +_ZNK7WebCore23ScaleTransformOperation27isAffectedByTransformOriginEv +_ZNK7WebCore23ScaleTransformOperation4dumpERN3WTF10TextStreamE +_ZNK7WebCore23ScaleTransformOperation5applyERNS_20TransformationMatrixERKNS_9FloatSizeE +_ZNK7WebCore23ScaleTransformOperation5cloneEv +_ZNK7WebCore23ScaleTransformOperationeqERKNS_18TransformOperationE +_ZNK7WebCore23TextureMapperAnimations25hasActiveAnimationsOfTypeENS_18AnimatedPropertyIDE +_ZNK7WebCore24CachedResourceHandleBase3getEv +_ZNK7WebCore24CachedResourceHandleBasecvMS0_PNS_14CachedResourceEEv +_ZNK7WebCore24CachedResourceHandleBasentEv +_ZNK7WebCore24CoordinatedGraphicsLayer13platformLayerEv +_ZNK7WebCore24CoordinatedGraphicsLayer14primaryLayerIDEv +_ZNK7WebCore24CoordinatedGraphicsLayer15fixedToViewportEv +_ZNK7WebCore24CoordinatedGraphicsLayer16compositionLayerEv +_ZNK7WebCore24CoordinatedGraphicsLayer17usesContentsLayerEv +_ZNK7WebCore24CoordinatedGraphicsLayer22filtersCanBeCompositedERKNS_16FilterOperationsE +_ZNK7WebCore24CoordinatedGraphicsLayer22shouldHaveBackingStoreEv +_ZNK7WebCore24CoordinatedGraphicsLayer24dumpAdditionalPropertiesERN3WTF10TextStreamEj +_ZNK7WebCore24CoordinatedGraphicsLayer26isCoordinatedGraphicsLayerEv +_ZNK7WebCore24CoordinatedGraphicsLayer28shouldDirectlyCompositeImageEPNS_5ImageE +_ZNK7WebCore24CoordinatedGraphicsLayer2idEv +_ZNK7WebCore24CoordinatedGraphicsLayer41selfOrAncestorHasActiveTransformAnimationEv +_ZNK7WebCore24CoordinatedGraphicsLayer9coverRectEv +_ZNK7WebCore24MatrixTransformOperation10isIdentityEv +_ZNK7WebCore24MatrixTransformOperation27isAffectedByTransformOriginEv +_ZNK7WebCore24MatrixTransformOperation4dumpERN3WTF10TextStreamE +_ZNK7WebCore24MatrixTransformOperation5applyERNS_20TransformationMatrixERKNS_9FloatSizeE +_ZNK7WebCore24MatrixTransformOperation5cloneEv +_ZNK7WebCore24MatrixTransformOperation6matrixEv +_ZNK7WebCore24MatrixTransformOperationeqERKNS_18TransformOperationE +_ZNK7WebCore24RotateTransformOperation10isIdentityEv +_ZNK7WebCore24RotateTransformOperation19isRepresentableIn2DEv +_ZNK7WebCore24RotateTransformOperation1xEv +_ZNK7WebCore24RotateTransformOperation1yEv +_ZNK7WebCore24RotateTransformOperation1zEv +_ZNK7WebCore24RotateTransformOperation27isAffectedByTransformOriginEv +_ZNK7WebCore24RotateTransformOperation4dumpERN3WTF10TextStreamE +_ZNK7WebCore24RotateTransformOperation5angleEv +_ZNK7WebCore24RotateTransformOperation5applyERNS_20TransformationMatrixERKNS_9FloatSizeE +_ZNK7WebCore24RotateTransformOperation5cloneEv +_ZNK7WebCore24RotateTransformOperationeqERKNS_18TransformOperationE +_ZNK7WebCore25BackForwardItemIdentifier7isValidEv +_ZNK7WebCore25DropShadowFilterOperation11movesPixelsEv +_ZNK7WebCore25DropShadowFilterOperation12stdDeviationEv +_ZNK7WebCore25DropShadowFilterOperation14affectsOpacityEv +_ZNK7WebCore25DropShadowFilterOperation1xEv +_ZNK7WebCore25DropShadowFilterOperation1yEv +_ZNK7WebCore25DropShadowFilterOperation5cloneEv +_ZNK7WebCore25DropShadowFilterOperation5colorEv +_ZNK7WebCore25DropShadowFilterOperation8locationEv +_ZNK7WebCore25DropShadowFilterOperationeqERKNS_15FilterOperationE +_ZNK7WebCore26HTMLTextFormControlElement12selectionEndEv +_ZNK7WebCore26HTMLTextFormControlElement14selectionStartEv +_ZNK7WebCore26HTMLTextFormControlElement18selectionDirectionEv +_ZNK7WebCore26HTMLTextFormControlElement21lastChangeWasUserEditEv +_ZNK7WebCore26HTMLTextFormControlElement23visiblePositionForIndexEi +_ZNK7WebCore26HTMLTextFormControlElement26isInnerTextElementEditableEv +_ZNK7WebCore26ISOProtectionSchemeInfoBox13schemeTypeBoxEv +_ZNK7WebCore26ISOProtectionSchemeInfoBox17originalFormatBoxEv +_ZNK7WebCore26ISOProtectionSchemeInfoBox20schemeInformationBoxEv +_ZNK7WebCore26IdentityTransformOperation10isIdentityEv +_ZNK7WebCore26IdentityTransformOperation4dumpERN3WTF10TextStreamE +_ZNK7WebCore26IdentityTransformOperation5applyERNS_20TransformationMatrixERKNS_9FloatSizeE +_ZNK7WebCore26IdentityTransformOperation5cloneEv +_ZNK7WebCore26IdentityTransformOperationeqERKNS_18TransformOperationE +_ZNK7WebCore26Matrix3DTransformOperation10isIdentityEv +_ZNK7WebCore26Matrix3DTransformOperation19isRepresentableIn2DEv +_ZNK7WebCore26Matrix3DTransformOperation27isAffectedByTransformOriginEv +_ZNK7WebCore26Matrix3DTransformOperation4dumpERN3WTF10TextStreamE +_ZNK7WebCore26Matrix3DTransformOperation5applyERNS_20TransformationMatrixERKNS_9FloatSizeE +_ZNK7WebCore26Matrix3DTransformOperation5cloneEv +_ZNK7WebCore26Matrix3DTransformOperation6matrixEv +_ZNK7WebCore26Matrix3DTransformOperationeqERKNS_18TransformOperationE +_ZNK7WebCore26NetscapePlugInStreamLoader6isDoneEv +_ZNK7WebCore27AuthenticationChallengeBase15failureResponseEv +_ZNK7WebCore27AuthenticationChallengeBase15protectionSpaceEv +_ZNK7WebCore27AuthenticationChallengeBase18proposedCredentialEv +_ZNK7WebCore27AuthenticationChallengeBase20previousFailureCountEv +_ZNK7WebCore27AuthenticationChallengeBase5errorEv +_ZNK7WebCore27AuthenticationChallengeBase6isNullEv +_ZNK7WebCore27DocumentTimelinesController22animationsAreSuspendedEv +_ZNK7WebCore27PlatformMediaSessionManager15supportsSeekingEv +_ZNK7WebCore27PlatformMediaSessionManager26applicationDidBecomeActiveEv +_ZNK7WebCore27PlatformMediaSessionManager29applicationDidEnterBackgroundEb +_ZNK7WebCore27PlatformMediaSessionManager29applicationWillBecomeInactiveEv +_ZNK7WebCore27PlatformMediaSessionManager30applicationWillEnterForegroundEb +_ZNK7WebCore27ScriptedAnimationController11isThrottledEv +_ZNK7WebCore27ScriptedAnimationController17throttlingReasonsEv +_ZNK7WebCore27ScriptedAnimationController8intervalEv +_ZNK7WebCore27TranslateTransformOperation10isIdentityEv +_ZNK7WebCore27TranslateTransformOperation19isRepresentableIn2DEv +_ZNK7WebCore27TranslateTransformOperation1xERKNS_9FloatSizeE +_ZNK7WebCore27TranslateTransformOperation1xEv +_ZNK7WebCore27TranslateTransformOperation1yERKNS_9FloatSizeE +_ZNK7WebCore27TranslateTransformOperation1yEv +_ZNK7WebCore27TranslateTransformOperation1zERKNS_9FloatSizeE +_ZNK7WebCore27TranslateTransformOperation1zEv +_ZNK7WebCore27TranslateTransformOperation4dumpERN3WTF10TextStreamE +_ZNK7WebCore27TranslateTransformOperation5applyERNS_20TransformationMatrixERKNS_9FloatSizeE +_ZNK7WebCore27TranslateTransformOperation5cloneEv +_ZNK7WebCore27TranslateTransformOperationeqERKNS_18TransformOperationE +_ZNK7WebCore28InspectorFrontendClientLocal13inspectedPageEv +_ZNK7WebCore28InspectorFrontendClientLocal15inspectionLevelEv +_ZNK7WebCore28InspectorFrontendClientLocal28userInterfaceLayoutDirectionEv +_ZNK7WebCore29DeprecatedCSSOMPrimitiveValue12getRectValueEv +_ZNK7WebCore29DeprecatedCSSOMPrimitiveValue13getFloatValueEt +_ZNK7WebCore29DeprecatedCSSOMPrimitiveValue13primitiveTypeEv +_ZNK7WebCore29DeprecatedCSSOMPrimitiveValue14getStringValueEv +_ZNK7WebCore29DeprecatedCSSOMPrimitiveValue15getCounterValueEv +_ZNK7WebCore29DeprecatedCSSOMPrimitiveValue16getRGBColorValueEv +_ZNK7WebCore29PerspectiveTransformOperation10isIdentityEv +_ZNK7WebCore29PerspectiveTransformOperation11perspectiveEv +_ZNK7WebCore29PerspectiveTransformOperation19isRepresentableIn2DEv +_ZNK7WebCore29PerspectiveTransformOperation27isAffectedByTransformOriginEv +_ZNK7WebCore29PerspectiveTransformOperation4dumpERN3WTF10TextStreamE +_ZNK7WebCore29PerspectiveTransformOperation5applyERNS_20TransformationMatrixERKNS_9FloatSizeE +_ZNK7WebCore29PerspectiveTransformOperation5cloneEv +_ZNK7WebCore29PerspectiveTransformOperationeqERKNS_18TransformOperationE +_ZNK7WebCore30InvertLightnessFilterOperation14transformColorERNS_15FloatComponentsE +_ZNK7WebCore30InvertLightnessFilterOperation14transformColorERNS_5SRGBAIfEE +_ZNK7WebCore30InvertLightnessFilterOperation21inverseTransformColorERNS_15FloatComponentsE +_ZNK7WebCore30InvertLightnessFilterOperation21inverseTransformColorERNS_5SRGBAIfEE +_ZNK7WebCore30InvertLightnessFilterOperation5cloneEv +_ZNK7WebCore30InvertLightnessFilterOperationeqERKNS_15FilterOperationE +_ZNK7WebCore31BasicColorMatrixFilterOperation14transformColorERNS_15FloatComponentsE +_ZNK7WebCore31BasicColorMatrixFilterOperation14transformColorERNS_5SRGBAIfEE +_ZNK7WebCore31BasicColorMatrixFilterOperation17passthroughAmountEv +_ZNK7WebCore31BasicColorMatrixFilterOperation5cloneEv +_ZNK7WebCore31BasicColorMatrixFilterOperation6amountEv +_ZNK7WebCore31BasicColorMatrixFilterOperationeqERKNS_15FilterOperationE +_ZNK7WebCore31SimplifiedBackwardsTextIterator5rangeEv +_ZNK7WebCore32FixedPositionViewportConstraints28layerPositionForViewportRectERKNS_9FloatRectE +_ZNK7WebCore33StickyPositionViewportConstraints32layerPositionForConstrainingRectERKNS_9FloatRectE +_ZNK7WebCore35CrossOriginPreflightResultCacheItem23allowsCrossOriginMethodERKN3WTF6StringERS2_ +_ZNK7WebCore35CrossOriginPreflightResultCacheItem24allowsCrossOriginHeadersERKNS_13HTTPHeaderMapERN3WTF6StringE +_ZNK7WebCore36ISOProtectionSystemSpecificHeaderBox4dataEv +_ZNK7WebCore36ISOProtectionSystemSpecificHeaderBox6keyIDsEv +_ZNK7WebCore36ISOProtectionSystemSpecificHeaderBox8systemIDEv +_ZNK7WebCore37BasicComponentTransferFilterOperation14affectsOpacityEv +_ZNK7WebCore37BasicComponentTransferFilterOperation14transformColorERNS_15FloatComponentsE +_ZNK7WebCore37BasicComponentTransferFilterOperation14transformColorERNS_5SRGBAIfEE +_ZNK7WebCore37BasicComponentTransferFilterOperation17passthroughAmountEv +_ZNK7WebCore37BasicComponentTransferFilterOperation5cloneEv +_ZNK7WebCore37BasicComponentTransferFilterOperation6amountEv +_ZNK7WebCore37BasicComponentTransferFilterOperationeqERKNS_15FilterOperationE +_ZNK7WebCore37CrossOriginAccessControlCheckDisabler36crossOriginAccessControlCheckEnabledEv +_ZNK7WebCore3URL10isBlankURLEv +_ZNK7WebCore3URL10protocolIsEPKc +_ZNK7WebCore3URL11hostAndPortEv +_ZNK7WebCore3URL11isLocalFileEv +_ZNK7WebCore3URL12baseAsStringEv +_ZNK7WebCore3URL12isolatedCopyEv +_ZNK7WebCore3URL14fileSystemPathEv +_ZNK7WebCore3URL16isMatchingDomainERKN3WTF6StringE +_ZNK7WebCore3URL17lastPathComponentEv +_ZNK7WebCore3URL18fragmentIdentifierEv +_ZNK7WebCore3URL19protocolHostAndPortEv +_ZNK7WebCore3URL21hasFragmentIdentifierEv +_ZNK7WebCore3URL30stringCenterEllipsizedToLengthEj +_ZNK7WebCore3URL4hostEv +_ZNK7WebCore3URL4passEv +_ZNK7WebCore3URL4pathEv +_ZNK7WebCore3URL4portEv +_ZNK7WebCore3URL4userEv +_ZNK7WebCore3URL5queryEv +_ZNK7WebCore3URL8protocolEv +_ZNK7WebCore4Attr5valueEv +_ZNK7WebCore4Blob4sizeEv +_ZNK7WebCore4File12lastModifiedEv +_ZNK7WebCore4Node10shadowHostEv +_ZNK7WebCore4Node11isEqualNodeEPS0_ +_ZNK7WebCore4Node11textContentEb +_ZNK7WebCore4Node12lookupPrefixERKN3WTF10AtomStringE +_ZNK7WebCore4Node12lookupPrefixERKN3WTF12AtomicStringE +_ZNK7WebCore4Node13ownerDocumentEv +_ZNK7WebCore4Node14isDescendantOfERKS0_ +_ZNK7WebCore4Node16computeNodeIndexEv +_ZNK7WebCore4Node18computeEditabilityENS0_22UserSelectAllTreatmentENS0_17ShouldUpdateStyleE +_ZNK7WebCore4Node18isDefaultNamespaceERKN3WTF10AtomStringE +_ZNK7WebCore4Node18isDefaultNamespaceERKN3WTF12AtomicStringE +_ZNK7WebCore4Node18lookupNamespaceURIERKN3WTF10AtomStringE +_ZNK7WebCore4Node18lookupNamespaceURIERKN3WTF12AtomicStringE +_ZNK7WebCore4Node18nextElementSiblingEv +_ZNK7WebCore4Node19rootEditableElementEv +_ZNK7WebCore4Node21isRootEditableElementEv +_ZNK7WebCore4Node22previousElementSiblingEv +_ZNK7WebCore4Node26containsIncludingShadowDOMEPKS0_ +_ZNK7WebCore4Node28deprecatedShadowAncestorNodeEv +_ZNK7WebCore4Node7baseURIEv +_ZNK7WebCore4Node8containsEPKS0_ +_ZNK7WebCore4Node9renderBoxEv +_ZNK7WebCore4Node9textRectsERN3WTF6VectorINS_7IntRectELm0ENS1_15CrashOnOverflowELm16EEE +_ZNK7WebCore4Page14renderTreeSizeEv +_ZNK7WebCore4Page15forEachDocumentERKN3WTF8FunctionIFvRNS_8DocumentEEEE +_ZNK7WebCore4Page15visibilityStateEv +_ZNK7WebCore4Page16hasSeenAnyPluginEv +_ZNK7WebCore4Page17useDarkAppearanceEv +_ZNK7WebCore4Page17viewportArgumentsEv +_ZNK7WebCore4Page19disabledAdaptationsEv +_ZNK7WebCore4Page20renderingUpdateCountEv +_ZNK7WebCore4Page21wheelEventTestMonitorEv +_ZNK7WebCore4Page22editableElementsInRectERKNS_9FloatRectE +_ZNK7WebCore4Page23diagnosticLoggingClientEv +_ZNK7WebCore4Page23isMonitoringWheelEventsEv +_ZNK7WebCore4Page23remoteInspectionAllowedEv +_ZNK7WebCore4Page24isAlwaysOnLoggingAllowedEv +_ZNK7WebCore4Page27pageExtendedBackgroundColorEv +_ZNK7WebCore4Page28remoteInspectionNameOverrideEv +_ZNK7WebCore4Page34inLowQualityImageInterpolationModeEv +_ZNK7WebCore4Page9groupNameEv +_ZNK7WebCore4Page9pageCountEv +_ZNK7WebCore4Page9selectionEv +_ZNK7WebCore4Page9sessionIDEv +_ZNK7WebCore4Path12elementCountEv +_ZNK7WebCore4Path16fastBoundingRectEv +_ZNK7WebCore4Path5applyERKN3WTF8FunctionIFvRKNS_11PathElementEEEE +_ZNK7WebCore4Path6isNullEv +_ZNK7WebCore4Text9wholeTextEv +_ZNK7WebCore5Color10asExtendedEv +_ZNK7WebCore5Color10serializedEv +_ZNK7WebCore5Color14colorWithAlphaEf +_ZNK7WebCore5Color23colorSpaceAndComponentsEv +_ZNK7WebCore5Color6getHSLERdS1_S1_ +_ZNK7WebCore5Color6getHSVERdS1_S1_ +_ZNK7WebCore5Color7cssTextEv +_ZNK7WebCore5Color7getRGBAERdS1_S1_S1_ +_ZNK7WebCore5Color7getRGBAERfS1_S1_S1_ +_ZNK7WebCore5Color8darkenedEv +_ZNK7WebCore5Color9lightenedEv +_ZNK7WebCore5Color9lightnessEv +_ZNK7WebCore5Color9luminanceEv +_ZNK7WebCore5Event8composedEv +_ZNK7WebCore5Frame13ownerRendererEv +_ZNK7WebCore5Frame15contentRendererEv +_ZNK7WebCore5Frame15layerTreeAsTextEj +_ZNK7WebCore5Frame16frameScaleFactorEv +_ZNK7WebCore5Frame23visiblePositionForPointERKNS_8IntPointE +_ZNK7WebCore5Frame24isAlwaysOnLoggingAllowedEv +_ZNK7WebCore5Frame25trackedRepaintRectsAsTextEv +_ZNK7WebCore5Frame31displayStringModifiedByEncodingERKN3WTF6StringE +_ZNK7WebCore5Frame6pageIDEv +_ZNK7WebCore5Frame6windowEv +_ZNK7WebCore5Frame7frameIDEv +_ZNK7WebCore5Range10cloneRangeEv +_ZNK7WebCore5Range11compareNodeERNS_4NodeE +_ZNK7WebCore5Range12comparePointERNS_4NodeEj +_ZNK7WebCore5Range12pastLastNodeEv +_ZNK7WebCore5Range14intersectsNodeERNS_4NodeE +_ZNK7WebCore5Range17absoluteTextQuadsERN3WTF6VectorINS_9FloatQuadELm0ENS1_15CrashOnOverflowELm16EEEbPNS0_20RangeInFixedPositionE +_ZNK7WebCore5Range17absoluteTextRectsERN3WTF6VectorINS_7IntRectELm0ENS1_15CrashOnOverflowELm16EEEbPNS0_20RangeInFixedPositionENS0_27RespectClippingForTextRectsE +_ZNK7WebCore5Range17absoluteTextRectsERN3WTF6VectorINS_7IntRectELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEEbNS1_9OptionSetINS0_20BoundingRectBehaviorEEE +_ZNK7WebCore5Range19absoluteBoundingBoxEN3WTF9OptionSetINS0_20BoundingRectBehaviorEEE +_ZNK7WebCore5Range19absoluteBoundingBoxEv +_ZNK7WebCore5Range19boundaryPointsValidEv +_ZNK7WebCore5Range20absoluteBoundingRectEN3WTF9OptionSetINS0_20BoundingRectBehaviorEEE +_ZNK7WebCore5Range20absoluteBoundingRectENS0_27RespectClippingForTextRectsE +_ZNK7WebCore5Range21compareBoundaryPointsENS0_10CompareHowERKS0_ +_ZNK7WebCore5Range32compareBoundaryPointsForBindingsEtRKS0_ +_ZNK7WebCore5Range4textEv +_ZNK7WebCore5Range8containsERKS0_ +_ZNK7WebCore5Range8toStringEv +_ZNK7WebCore5Range9firstNodeEv +_ZNK7WebCore6Chrome10windowRectEv +_ZNK7WebCore6Chrome12createWindowERNS_5FrameERKNS_14WindowFeaturesERKNS_16NavigationActionE +_ZNK7WebCore6Chrome12createWindowERNS_5FrameERKNS_16FrameLoadRequestERKNS_14WindowFeaturesERKNS_16NavigationActionE +_ZNK7WebCore6Chrome13setWindowRectERKNS_9FloatRectE +_ZNK7WebCore6Chrome4showEv +_ZNK7WebCore6Cookie4hashEv +_ZNK7WebCore6CookieeqERKS0_ +_ZNK7WebCore6Cursor14platformCursorEv +_ZNK7WebCore6Cursor19setAsPlatformCursorEv +_ZNK7WebCore6DOMURL4hrefEv +_ZNK7WebCore6Editor11textCheckerEv +_ZNK7WebCore6Editor12selectedTextEt +_ZNK7WebCore6Editor12selectedTextEv +_ZNK7WebCore6Editor13canEditRichlyEv +_ZNK7WebCore6Editor16compositionRangeEv +_ZNK7WebCore6Editor16fontForSelectionERb +_ZNK7WebCore6Editor16hasBidiSelectionEv +_ZNK7WebCore6Editor17firstRectForRangeEPNS_5RangeE +_ZNK7WebCore6Editor17firstRectForRangeERKNS_11SimpleRangeE +_ZNK7WebCore6Editor17selectionHasStyleENS_13CSSPropertyIDERKN3WTF6StringE +_ZNK7WebCore6Editor17shouldDeleteRangeEPNS_5RangeE +_ZNK7WebCore6Editor17shouldDeleteRangeERKN3WTF8OptionalINS_11SimpleRangeEEE +_ZNK7WebCore6Editor23getCompositionSelectionERjS1_ +_ZNK7WebCore6Editor25stringForCandidateRequestEv +_ZNK7WebCore6Editor26selectionStartHasMarkerForENS_14DocumentMarker10MarkerTypeEii +_ZNK7WebCore6Editor30applyEditingStyleToBodyElementEv +_ZNK7WebCore6Editor30fontAttributesAtSelectionStartEv +_ZNK7WebCore6Editor31contextRangeForCandidateRequestEv +_ZNK7WebCore6Editor32isContinuousSpellCheckingEnabledEv +_ZNK7WebCore6Editor37baseWritingDirectionForSelectionStartEv +_ZNK7WebCore6Editor6canCutEv +_ZNK7WebCore6Editor6clientEv +_ZNK7WebCore6Editor7Command11isSupportedEv +_ZNK7WebCore6Editor7Command15isTextInsertionEv +_ZNK7WebCore6Editor7Command26allowExecutionWhenDisabledEv +_ZNK7WebCore6Editor7Command5stateEPNS_5EventE +_ZNK7WebCore6Editor7Command7executeEPNS_5EventE +_ZNK7WebCore6Editor7Command7executeERKN3WTF6StringEPNS_5EventE +_ZNK7WebCore6Editor7Command9isEnabledEPNS_5EventE +_ZNK7WebCore6Editor7canCopyEv +_ZNK7WebCore6Editor7canEditEv +_ZNK7WebCore6Editor8canPasteEv +_ZNK7WebCore6Editor9canDeleteEv +_ZNK7WebCore6ISOBox12extendedTypeEv +_ZNK7WebCore6ISOBox4sizeEv +_ZNK7WebCore6ISOBox7boxTypeEv +_ZNK7WebCore6JSFile7wrappedEv +_ZNK7WebCore6JSNode21pushEventHandlerScopeEPN3JSC14JSGlobalObjectEPNS1_7JSScopeE +_ZNK7WebCore6JSNode21pushEventHandlerScopeEPN3JSC9ExecStateEPNS1_7JSScopeE +_ZNK7WebCore6JSNode7wrappedEv +_ZNK7WebCore6JSNode8nodeTypeERN3JSC14JSGlobalObjectE +_ZNK7WebCore6JSNode8nodeTypeERN3JSC9ExecStateE +_ZNK7WebCore6Length21nonNanCalculatedValueEi +_ZNK7WebCore6Length3refEv +_ZNK7WebCore6Length5derefEv +_ZNK7WebCore6Path2D4pathEv +_ZNK7WebCore6Quirks25needsYouTubeMouseOutQuirkEv +_ZNK7WebCore6Quirks29shouldAvoidUsingIOS13ForGmailEv +_ZNK7WebCore6Quirks32isNeverRichlyEditableForTouchBarEv +_ZNK7WebCore6Quirks44shouldAvoidResizingWhenInputViewBoundsChangeEv +_ZNK7WebCore6Quirks47shouldAvoidScrollingWhenFocusedContentIsVisibleEv +_ZNK7WebCore6Quirks47shouldIgnoreContentObservationForSyntheticClickEb +_ZNK7WebCore6Quirks49isTouchBarUpdateSupressedForHiddenContentEditableEv +_ZNK7WebCore6Quirks50shouldIgnoreAriaForFastPathContentObservationCheckEv +_ZNK7WebCore6Quirks56shouldDispatchSyntheticMouseEventsWhenModifyingSelectionEv +_ZNK7WebCore6Quirks61shouldUseLegacySelectPopoverDismissalBehaviorInDataActivationEv +_ZNK7WebCore6Quirks62shouldLayOutAtMinimumWindowWidthWhenIgnoringScalingConstraintsEv +_ZNK7WebCore6Quirks70shouldSuppressAutocorrectionAndAutocaptializationInHiddenEditableAreasEv +_ZNK7WebCore6Region10intersectsERKS0_ +_ZNK7WebCore6Region5Shape7isValidEv +_ZNK7WebCore6Region5rectsEv +_ZNK7WebCore6Region8containsERKNS_8IntPointE +_ZNK7WebCore6Region8containsERKS0_ +_ZNK7WebCore6Region9totalAreaEv +_ZNK7WebCore6Widget14platformWidgetEv +_ZNK7WebCore6Widget17convertToRootViewERKNS_7IntRectE +_ZNK7WebCore6Widget23convertToContainingViewERKNS_10FloatPointE +_ZNK7WebCore6Widget23convertToContainingViewERKNS_7IntRectE +_ZNK7WebCore6Widget23convertToContainingViewERKNS_8IntPointE +_ZNK7WebCore6Widget23convertToContainingViewERKNS_9FloatRectE +_ZNK7WebCore6Widget25convertFromContainingViewERKNS_10FloatPointE +_ZNK7WebCore6Widget25convertFromContainingViewERKNS_7IntRectE +_ZNK7WebCore6Widget25convertFromContainingViewERKNS_8IntPointE +_ZNK7WebCore6Widget25convertFromContainingViewERKNS_9FloatRectE +_ZNK7WebCore6Widget25convertToContainingWindowERKNS_7IntRectE +_ZNK7WebCore6Widget25convertToContainingWindowERKNS_8IntPointE +_ZNK7WebCore6Widget6parentEv +_ZNK7WebCore6Widget9frameRectEv +_ZNK7WebCore7Element10attributesEv +_ZNK7WebCore7Element10clientRectEv +_ZNK7WebCore7Element10screenRectEv +_ZNK7WebCore7Element10shadowRootEv +_ZNK7WebCore7Element12getAttributeERKN3WTF10AtomStringE +_ZNK7WebCore7Element12getAttributeERKN3WTF12AtomicStringE +_ZNK7WebCore7Element12getAttributeERKNS_13QualifiedNameE +_ZNK7WebCore7Element12hasAttributeERKN3WTF10AtomStringE +_ZNK7WebCore7Element12hasAttributeERKN3WTF12AtomicStringE +_ZNK7WebCore7Element12hasAttributeERKNS_13QualifiedNameE +_ZNK7WebCore7Element13hasAttributesEv +_ZNK7WebCore7Element14getAttributeNSERKN3WTF10AtomStringES4_ +_ZNK7WebCore7Element14getAttributeNSERKN3WTF12AtomicStringES4_ +_ZNK7WebCore7Element14hasAttributeNSERKN3WTF10AtomStringES4_ +_ZNK7WebCore7Element14hasAttributeNSERKN3WTF12AtomicStringES4_ +_ZNK7WebCore7Element15absoluteLinkURLEv +_ZNK7WebCore7Element15getURLAttributeERKNS_13QualifiedNameE +_ZNK7WebCore7Element18afterPseudoElementEv +_ZNK7WebCore7Element19beforePseudoElementEv +_ZNK7WebCore7Element20getIntegralAttributeERKNS_13QualifiedNameE +_ZNK7WebCore7Element24computeInheritedLanguageEv +_ZNK7WebCore7Element25containsFullScreenElementEv +_ZNK7WebCore7Element28getUnsignedIntegralAttributeERKNS_13QualifiedNameE +_ZNK7WebCore7Element28renderOrDisplayContentsStyleEv +_ZNK7WebCore7Element9innerHTMLEv +_ZNK7WebCore7Element9outerHTMLEv +_ZNK7WebCore7IntRect10intersectsERKS0_ +_ZNK7WebCore7IntRect8containsERKS0_ +_ZNK7WebCore7IntSize18constrainedBetweenERKS0_S2_ +_ZNK7WebCore8DOMTimer15alignedFireTimeEN3WTF13MonotonicTimeE +_ZNK7WebCore8DOMTimer24intervalClampedToMinimumEv +_ZNK7WebCore8Document10alinkColorEv +_ZNK7WebCore8Document10compatModeEv +_ZNK7WebCore8Document10designModeEv +_ZNK7WebCore8Document10vlinkColorEv +_ZNK7WebCore8Document11completeURLERKN3WTF6StringE +_ZNK7WebCore8Document11completeURLERKN3WTF6StringENS_22ScriptExecutionContext9ForceUTF8E +_ZNK7WebCore8Document11contentTypeEv +_ZNK7WebCore8Document11topDocumentEv +_ZNK7WebCore8Document11windowProxyEv +_ZNK7WebCore8Document12lastModifiedEv +_ZNK7WebCore8Document13axObjectCacheEv +_ZNK7WebCore8Document14bodyOrFramesetEv +_ZNK7WebCore8Document15visibilityStateEv +_ZNK7WebCore8Document16styleRecalcCountEv +_ZNK7WebCore8Document17useDarkAppearanceEPKNS_11RenderStyleE +_ZNK7WebCore8Document17viewportArgumentsEv +_ZNK7WebCore8Document18monotonicTimestampEv +_ZNK7WebCore8Document19useSystemAppearanceEv +_ZNK7WebCore8Document20isRunningUserScriptsEv +_ZNK7WebCore8Document20linkColorForBindingsEv +_ZNK7WebCore8Document21haveStylesheetsLoadedEv +_ZNK7WebCore8Document21isAnimatingFullScreenEv +_ZNK7WebCore8Document21selectedStylesheetSetEv +_ZNK7WebCore8Document22preferredStylesheetSetEv +_ZNK7WebCore8Document22touchEventHandlerCountEv +_ZNK7WebCore8Document22wheelEventHandlerCountEv +_ZNK7WebCore8Document23webkitFullscreenEnabledEv +_ZNK7WebCore8Document27areFullscreenControlsHiddenEv +_ZNK7WebCore8Document28characterSetWithUTF8FallbackEv +_ZNK7WebCore8Document28hasEvaluatedUserAgentScriptsEv +_ZNK7WebCore8Document29originIdentifierForPasteboardEv +_ZNK7WebCore8Document29useElevatedUserInterfaceLevelEv +_ZNK7WebCore8Document31defaultCharsetForLegacyBindingsEv +_ZNK7WebCore8Document31displayStringModifiedByEncodingERKN3WTF6StringE +_ZNK7WebCore8Document3dirEv +_ZNK7WebCore8Document42shouldBypassMainWorldContentSecurityPolicyEv +_ZNK7WebCore8Document4bodyEv +_ZNK7WebCore8Document4pageEv +_ZNK7WebCore8Document4viewEv +_ZNK7WebCore8Document6domainEv +_ZNK7WebCore8Document6hiddenEv +_ZNK7WebCore8Document6loaderEv +_ZNK7WebCore8Document6originEv +_ZNK7WebCore8Document6pageIDEv +_ZNK7WebCore8Document7bgColorEv +_ZNK7WebCore8Document7doctypeEv +_ZNK7WebCore8Document7fgColorEv +_ZNK7WebCore8Document8hasFocusEv +_ZNK7WebCore8Document8referrerEv +_ZNK7WebCore8Document9sessionIDEv +_ZNK7WebCore8FileList4itemEj +_ZNK7WebCore8FormData12isolatedCopyEv +_ZNK7WebCore8FormData13lengthInBytesEv +_ZNK7WebCore8FormData14asSharedBufferEv +_ZNK7WebCore8FormData7flattenEv +_ZNK7WebCore8FormData9asBlobURLEv +_ZNK7WebCore8IntPoint18constrainedBetweenERKS0_S2_ +_ZNK7WebCore8Location4hostEv +_ZNK7WebCore8Position10downstreamENS_27EditingBoundaryCrossingRuleE +_ZNK7WebCore8Position13containerNodeEv +_ZNK7WebCore8Position24computeNodeAfterPositionEv +_ZNK7WebCore8Position24parentAnchoredEquivalentEv +_ZNK7WebCore8Position25computeNodeBeforePositionEv +_ZNK7WebCore8Position25leadingWhitespacePositionENS_9EAffinityEb +_ZNK7WebCore8Position26trailingWhitespacePositionENS_9EAffinityEb +_ZNK7WebCore8Position28offsetForPositionAfterAnchorEv +_ZNK7WebCore8Position4nextENS_16PositionMoveTypeE +_ZNK7WebCore8Position8previousENS_16PositionMoveTypeE +_ZNK7WebCore8Position8upstreamENS_27EditingBoundaryCrossingRuleE +_ZNK7WebCore8Settings15isScriptEnabledEv +_ZNK7WebCore8Settings16areImagesEnabledEv +_ZNK7WebCore8Settings16showDebugBordersEv +_ZNK7WebCore8Settings18showRepaintCounterEv +_ZNK7WebCore8Settings18webSecurityEnabledEv +_ZNK7WebCore8Settings23needsSiteSpecificQuirksEv +_ZNK7WebCore8Settings23webRTCEncryptionEnabledEv +_ZNK7WebCore8Settings26authorAndUserStylesEnabledEv +_ZNK7WebCore8Settings28iceCandidateFilteringEnabledEv +_ZNK7WebCore9CookieJar13getRawCookiesERKNS_8DocumentERKN3WTF3URLERNS4_6VectorINS_6CookieELm0ENS4_15CrashOnOverflowELm16ENS4_10FastMallocEEE +_ZNK7WebCore9CookieJar14cookiesEnabledERKNS_8DocumentE +_ZNK7WebCore9CookieJar29cookieRequestHeaderFieldValueERKN3WTF3URLERKNS_12SameSiteInfoES4_NS1_8OptionalINS1_16ObjectIdentifierINS_19FrameIdentifierTypeEEEEENS8_INS9_INS_18PageIdentifierTypeEEEEENS_20IncludeSecureCookiesE +_ZNK7WebCore9CookieJar29cookieRequestHeaderFieldValueERNS_8DocumentERKN3WTF3URLE +_ZNK7WebCore9CookieJar7cookiesERNS_8DocumentERKN3WTF3URLE +_ZNK7WebCore9DOMWindow12nowTimestampEv +_ZNK7WebCore9DOMWindow16getComputedStyleERNS_7ElementERKN3WTF6StringE +_ZNK7WebCore9DOMWindow18getMatchedCSSRulesEPNS_7ElementERKN3WTF6StringEb +_ZNK7WebCore9DOMWindow27pendingUnloadEventListenersEv +_ZNK7WebCore9DOMWindow5frameEv +_ZNK7WebCore9DOMWindow8documentEv +_ZNK7WebCore9DOMWindow8locationEv +_ZNK7WebCore9FloatQuad11boundingBoxEv +_ZNK7WebCore9FloatQuad12containsQuadERKS0_ +_ZNK7WebCore9FloatQuad13containsPointERKNS_10FloatPointE +_ZNK7WebCore9FloatQuad13isRectilinearEv +_ZNK7WebCore9FloatRect10intersectsERKS0_ +_ZNK7WebCore9FloatRect21inclusivelyIntersectsERKS0_ +_ZNK7WebCore9FloatRect8containsERKNS_10FloatPointENS0_12ContainsModeE +_ZNK7WebCore9FloatRect8containsERKS0_ +_ZNK7WebCore9FloatSize14diagonalLengthEv +_ZNK7WebCore9FloatSize18constrainedBetweenERKS0_S2_ +_ZNK7WebCore9FloatSize6isZeroEv +_ZNK7WebCore9FrameTree10childCountEv +_ZNK7WebCore9FrameTree11scopedChildERKN3WTF10AtomStringE +_ZNK7WebCore9FrameTree11scopedChildERKN3WTF12AtomicStringE +_ZNK7WebCore9FrameTree11scopedChildEj +_ZNK7WebCore9FrameTree12traverseNextENS_7CanWrapEPNS_7DidWrapE +_ZNK7WebCore9FrameTree12traverseNextEPKNS_5FrameE +_ZNK7WebCore9FrameTree14isDescendantOfEPKNS_5FrameE +_ZNK7WebCore9FrameTree16traversePreviousENS_7CanWrapEPNS_7DidWrapE +_ZNK7WebCore9FrameTree20traverseNextRenderedEPKNS_5FrameE +_ZNK7WebCore9FrameTree3topEv +_ZNK7WebCore9FrameTree4findERKN3WTF10AtomStringERNS_5FrameE +_ZNK7WebCore9FrameTree4findERKN3WTF12AtomicStringE +_ZNK7WebCore9FrameTree6parentEv +_ZNK7WebCore9FrameView10renderViewEv +_ZNK7WebCore9FrameView11needsLayoutEv +_ZNK7WebCore9FrameView12footerHeightEv +_ZNK7WebCore9FrameView12headerHeightEv +_ZNK7WebCore9FrameView12tiledBackingEv +_ZNK7WebCore9FrameView13isTransparentEv +_ZNK7WebCore9FrameView13paintBehaviorEv +_ZNK7WebCore9FrameView14didFirstLayoutEv +_ZNK7WebCore9FrameView15topContentInsetENS_10ScrollView19TopContentInsetTypeE +_ZNK7WebCore9FrameView17useDarkAppearanceEv +_ZNK7WebCore9FrameView17wasScrolledByUserEv +_ZNK7WebCore9FrameView18layoutViewportRectEv +_ZNK7WebCore9FrameView18visualViewportRectEv +_ZNK7WebCore9FrameView19baseBackgroundColorEv +_ZNK7WebCore9FrameView20clientToDocumentRectENS_9FloatRectE +_ZNK7WebCore9FrameView20documentToClientRectENS_9FloatRectE +_ZNK7WebCore9FrameView20isSoftwareRenderableEv +_ZNK7WebCore9FrameView21clientToDocumentPointENS_10FloatPointE +_ZNK7WebCore9FrameView21maximumScrollPositionEv +_ZNK7WebCore9FrameView21minimumScrollPositionEv +_ZNK7WebCore9FrameView22absoluteToDocumentRectENS_9FloatRectEN3WTF8OptionalIfEE +_ZNK7WebCore9FrameView22baseLayoutViewportSizeEv +_ZNK7WebCore9FrameView23absoluteToDocumentPointENS_10FloatPointEN3WTF8OptionalIfEE +_ZNK7WebCore9FrameView23documentBackgroundColorEv +_ZNK7WebCore9FrameView24effectiveFrameFlatteningEv +_ZNK7WebCore9FrameView26clientToLayoutViewportRectENS_9FloatRectE +_ZNK7WebCore9FrameView27clientToLayoutViewportPointENS_10FloatPointE +_ZNK7WebCore9FrameView27positionForRootContentLayerEv +_ZNK7WebCore9FrameView27windowClipRectForFrameOwnerEPKNS_21HTMLFrameOwnerElementEb +_ZNK7WebCore9FrameView28absoluteToLayoutViewportRectENS_9FloatRectE +_ZNK7WebCore9FrameView28isEnclosedInCompositingLayerEv +_ZNK7WebCore9FrameView29absoluteToLayoutViewportPointENS_10FloatPointE +_ZNK7WebCore9FrameView29maxStableLayoutViewportOriginEv +_ZNK7WebCore9FrameView29minStableLayoutViewportOriginEv +_ZNK7WebCore9FrameView35convertFromContainingViewToRendererEPKNS_13RenderElementERKNS_7IntRectE +_ZNK7WebCore9FrameView35convertFromContainingViewToRendererEPKNS_13RenderElementERKNS_8IntPointE +_ZNK7WebCore9FrameView35convertFromContainingViewToRendererEPKNS_13RenderElementERKNS_9FloatRectE +_ZNK7WebCore9FrameView35convertFromRendererToContainingViewEPKNS_13RenderElementERKNS_7IntRectE +_ZNK7WebCore9FrameView35convertFromRendererToContainingViewEPKNS_13RenderElementERKNS_8IntPointE +_ZNK7WebCore9GLContext7displayEv +_ZNK7WebCore9ImageData4dataEv +_ZNK7WebCore9ImageData4sizeEv +_ZNK7WebCore9ImageData5widthEv +_ZNK7WebCore9ImageData6heightEv +_ZNK7WebCore9InlineBox10lineHeightEv +_ZNK7WebCore9InlineBox14caretMaxOffsetEv +_ZNK7WebCore9InlineBox14caretMinOffsetEv +_ZNK7WebCore9InlineBox16baselinePositionENS_12FontBaselineE +_ZNK7WebCore9InlineBox22canAccommodateEllipsisEbii +_ZNK7WebCore9JSDOMRect7wrappedEv +_ZNK7WebCore9JSElement7wrappedEv +_ZNK7WebCore9MediaList4itemEj +_ZNK7WebCore9PageCache10frameCountEv +_ZNK7WebCore9RenderBox11borderRadiiEv +_ZNK7WebCore9RenderBox11clientWidthEv +_ZNK7WebCore9RenderBox12clientHeightEv +_ZNK7WebCore9RenderBox19absoluteContentQuadEv +_ZNK7WebCore9RenderBox20flippedClientBoxRectEv +_ZNK7WebCore9RenderBox22verticalScrollbarWidthEv +_ZNK7WebCore9RenderBox25horizontalScrollbarHeightEv +_ZNK7WebCore9RenderBox33canBeScrolledAndHasScrollableAreaEv +_ZNK7WebCore9SampleMap5emptyEv +_ZNK7WebCore9TimerBase16nextFireIntervalEv +_ZNK7WebCore9TreeScope14getElementByIdERKN3WTF10AtomStringE +_ZNK7WebCore9TreeScope14getElementByIdERKN3WTF12AtomicStringE +_ZNK7WebCore9TreeScope14getElementByIdERKN3WTF6StringE +_ZNK7WebCore9TreeScope16getElementByNameERKN3WTF10AtomStringE +_ZNK7WebCore9TreeScope16getElementByNameERKN3WTF12AtomicStringE +_ZNK7WebCore9TreeScope23ancestorNodeInThisScopeEPNS_4NodeE +_ZNK7WebCore9TreeScope26ancestorElementInThisScopeEPNS_7ElementE +_ZNK7bmalloc11IsoTLSEntry4sizeEv +_ZNK7bmalloc11IsoTLSEntry6extentEv +_ZNK7bmalloc11IsoTLSEntry6offsetEv +_ZNK7bmalloc11IsoTLSEntry9alignmentEv +_ZNK9Inspector14ConsoleMessage11scriptStateEv +_ZNK9Inspector14ConsoleMessage12globalObjectEv +_ZNK9Inspector14ConsoleMessage13argumentCountEv +_ZNK9Inspector14ConsoleMessage3urlEv +_ZNK9Inspector14ConsoleMessage4lineEv +_ZNK9Inspector14ConsoleMessage4typeEv +_ZNK9Inspector14ConsoleMessage5levelEv +_ZNK9Inspector14ConsoleMessage6columnEv +_ZNK9Inspector14ConsoleMessage6sourceEv +_ZNK9Inspector14ConsoleMessage7isEqualEPS0_ +_ZNK9Inspector14ConsoleMessage7messageEv +_ZNK9Inspector14ConsoleMessage9argumentsEv +_ZNK9Inspector14FrontendRouter12hasFrontendsEv +_ZNK9Inspector14FrontendRouter12sendResponseERKN3WTF6StringE +_ZNK9Inspector14FrontendRouter13frontendCountEv +_ZNK9Inspector14FrontendRouter16hasLocalFrontendEv +_ZNK9Inspector14FrontendRouter17hasRemoteFrontendEv +_ZNK9Inspector14FrontendRouter9sendEventERKN3WTF6StringE +_ZNK9Inspector14InjectedScript10wrapObjectEN3JSC7JSValueERKN3WTF6StringEb +_ZNK9Inspector14InjectedScript12previewValueEN3JSC7JSValueE +_ZNK9Inspector14InjectedScript14findObjectByIdERKN3WTF6StringE +_ZNK9Inspector14InjectedScript14wrapCallFramesEN3JSC7JSValueE +_ZNK9Inspector14InjectedScript14wrapJSONStringERKN3WTF6StringES4_b +_ZNK9Inspector14InjectedScript9wrapTableEN3JSC7JSValueES2_ +_ZNK9Inspector15AsyncStackTrace20buildInspectorObjectEv +_ZNK9Inspector15AsyncStackTrace8isLockedEv +_ZNK9Inspector15AsyncStackTrace9isPendingEv +_ZNK9Inspector15InspectorTarget13isProvisionalEv +_ZNK9Inspector15InspectorTarget8isPausedEv +_ZNK9Inspector15RemoteInspector16listingForTargetERKNS_24RemoteControllableTargetE +_ZNK9Inspector15RemoteInspector18clientCapabilitiesEv +_ZNK9Inspector15RemoteInspector21hasActiveDebugSessionEv +_ZNK9Inspector15RemoteInspector26listingForAutomationTargetERKNS_22RemoteAutomationTargetE +_ZNK9Inspector15RemoteInspector26listingForInspectionTargetERKNS_22RemoteInspectionTargetE +_ZNK9Inspector15RemoteInspector6Client11browserNameEv +_ZNK9Inspector15RemoteInspector6Client14browserVersionEv +_ZNK9Inspector15RemoteInspector6clientEv +_ZNK9Inspector15RemoteInspector7enabledEv +_ZNK9Inspector15ScriptArguments10argumentAtEm +_ZNK9Inspector15ScriptArguments11globalStateEv +_ZNK9Inspector15ScriptArguments12globalObjectEv +_ZNK9Inspector15ScriptArguments13argumentCountEv +_ZNK9Inspector15ScriptArguments24getFirstArgumentAsStringERN3WTF6StringE +_ZNK9Inspector15ScriptArguments7isEqualERKS0_ +_ZNK9Inspector15ScriptCallFrame10lineNumberEv +_ZNK9Inspector15ScriptCallFrame12columnNumberEv +_ZNK9Inspector15ScriptCallFrame12functionNameEv +_ZNK9Inspector15ScriptCallFrame20buildInspectorObjectEv +_ZNK9Inspector15ScriptCallFrame7isEqualERKS0_ +_ZNK9Inspector15ScriptCallFrame8isNativeEv +_ZNK9Inspector15ScriptCallFrame8sourceIDEv +_ZNK9Inspector15ScriptCallFrame9sourceURLEv +_ZNK9Inspector15ScriptCallFrameeqERKS0_ +_ZNK9Inspector15ScriptCallStack19buildInspectorArrayEv +_ZNK9Inspector15ScriptCallStack23firstNonNativeCallFrameEv +_ZNK9Inspector15ScriptCallStack2atEm +_ZNK9Inspector15ScriptCallStack4sizeEv +_ZNK9Inspector15ScriptCallStack7isEqualEPS0_ +_ZNK9Inspector17BackendDispatcher12CallbackBase8isActiveEv +_ZNK9Inspector17BackendDispatcher17hasProtocolErrorsEv +_ZNK9Inspector17BackendDispatcher8isActiveEv +_ZNK9Inspector17ScriptDebugServer30canDispatchFunctionToListenersEv +_ZNK9Inspector17ScriptDebugServer36handleExceptionInBreakpointConditionEPN3JSC14JSGlobalObjectEPNS1_9ExceptionE +_ZNK9Inspector17ScriptDebugServer36handleExceptionInBreakpointConditionEPN3JSC9ExecStateEPNS1_9ExceptionE +_ZNK9Inspector18InjectedScriptBase10hasNoValueEv +_ZNK9Inspector18InjectedScriptBase11scriptStateEv +_ZNK9Inspector18InjectedScriptBase12globalObjectEv +_ZNK9Inspector18InjectedScriptBase20injectedScriptObjectEv +_ZNK9Inspector18InjectedScriptBase20inspectorEnvironmentEv +_ZNK9Inspector18InjectedScriptBase27callFunctionWithEvalEnabledERN10Deprecated18ScriptFunctionCallE +_ZNK9Inspector18InjectedScriptBase27callFunctionWithEvalEnabledERN10Deprecated18ScriptFunctionCallERb +_ZNK9Inspector18InjectedScriptBase31hasAccessToInspectedScriptStateEv +_ZNK9Inspector18InjectedScriptBase4nameEv +_ZNK9Inspector18InjectedScriptHost16savedResultAliasEv +_ZNK9Inspector19InspectorAuditAgent14hasActiveAuditEv +_ZNK9Inspector20InspectorTargetAgent14connectionTypeEv +_ZNK9Inspector21InjectedScriptManager20inspectorEnvironmentEv +_ZNK9Inspector21InspectorConsoleAgent22developerExtrasEnabledEv +_ZNK9Inspector21InspectorConsoleAgent7enabledEv +_ZNK9Inspector21InspectorRuntimeAgent7enabledEv +_ZNK9Inspector22InspectorDebuggerAgent17breakpointsActiveEv +_ZNK9Inspector22InspectorDebuggerAgent17shouldBlackboxURLERKN3WTF6StringE +_ZNK9Inspector22InspectorDebuggerAgent21injectedScriptManagerEv +_ZNK9Inspector22InspectorDebuggerAgent27pauseOnNextStatementEnabledEv +_ZNK9Inspector22InspectorDebuggerAgent7enabledEv +_ZNK9Inspector22InspectorDebuggerAgent8isPausedEv +_ZNK9Inspector22RemoteAutomationTarget20remoteControlAllowedEv +_ZNK9Inspector22RemoteAutomationTarget4typeEv +_ZNK9Inspector22RemoteAutomationTarget8isPairedEv +_ZNK9Inspector22RemoteInspectionTarget20remoteControlAllowedEv +_ZNK9Inspector22RemoteInspectionTarget22remoteDebuggingAllowedEv +_ZNK9Inspector22RemoteInspectionTarget26automaticInspectionAllowedEv +_ZNK9Inspector22RemoteInspectionTarget3urlEv +_ZNK9Inspector22RemoteInspectionTarget4nameEv +_ZNK9Inspector24RemoteControllableTarget16targetIdentifierEv +_ZNK9Inspector28InspectorScriptProfilerAgent18isAlreadyProfilingEv +_ZNK9JITBridge20sharedMemoryAreaSizeEv +_ZNK9MmsMp4Box7cmpTypeEPKc +_ZNK9MmsMp4Box7cmpTypeEPj +_ZNK9MmsMp4Box7cmpTypeEmj +_ZNKR3WTF6String12isolatedCopyEv +_ZNKSbIwSt11char_traitsIwESaIwEE5_XlenEv +_ZNKSbIwSt11char_traitsIwESaIwEE5_XranEv +_ZNKSs5_XlenEv +_ZNKSs5_XranEv +_ZNKSt10bad_typeid4whatEv +_ZNKSt10bad_typeid8_DoraiseEv +_ZNKSt11logic_error4whatEv +_ZNKSt11logic_error8_DoraiseEv +_ZNKSt12bad_weak_ptr4whatEv +_ZNKSt12codecvt_base11do_encodingEv +_ZNKSt12codecvt_base13do_max_lengthEv +_ZNKSt12future_error4whatEv +_ZNKSt12future_error8_DoraiseEv +_ZNKSt12system_error8_DoraiseEv +_ZNKSt13bad_exception8_DoraiseEv +_ZNKSt13runtime_error4whatEv +_ZNKSt14error_category10equivalentERKSt10error_codei +_ZNKSt14error_category10equivalentEiRKSt15error_condition +_ZNKSt14error_category23default_error_conditionEi +_ZNKSt15_Ref_count_base12_Get_deleterERKSt9type_info +_ZNKSt17bad_function_call4whatEv +_ZNKSt18bad_variant_access4whatEv +_ZNKSt19istreambuf_iteratorIcSt11char_traitsIcEE5equalERKS2_ +_ZNKSt19istreambuf_iteratorIwSt11char_traitsIwEE5equalERKS2_ +_ZNKSt22_Future_error_category4nameEv +_ZNKSt22_Future_error_category7messageEi +_ZNKSt22_System_error_category23default_error_conditionEi +_ZNKSt22_System_error_category4nameEv +_ZNKSt22_System_error_category7messageEi +_ZNKSt23_Generic_error_category4nameEv +_ZNKSt23_Generic_error_category7messageEi +_ZNKSt24_Iostream_error_category4nameEv +_ZNKSt24_Iostream_error_category7messageEi +_ZNKSt5ctypeIcE10do_tolowerEPcPKc +_ZNKSt5ctypeIcE10do_tolowerEc +_ZNKSt5ctypeIcE10do_toupperEPcPKc +_ZNKSt5ctypeIcE10do_toupperEc +_ZNKSt5ctypeIcE8do_widenEPKcS2_Pc +_ZNKSt5ctypeIcE8do_widenEc +_ZNKSt5ctypeIcE9do_narrowEPKcS2_cPc +_ZNKSt5ctypeIcE9do_narrowEcc +_ZNKSt5ctypeIwE10do_scan_isEsPKwS2_ +_ZNKSt5ctypeIwE10do_tolowerEPwPKw +_ZNKSt5ctypeIwE10do_tolowerEw +_ZNKSt5ctypeIwE10do_toupperEPwPKw +_ZNKSt5ctypeIwE10do_toupperEw +_ZNKSt5ctypeIwE11do_scan_notEsPKwS2_ +_ZNKSt5ctypeIwE5do_isEPKwS2_Ps +_ZNKSt5ctypeIwE5do_isEsw +_ZNKSt5ctypeIwE8do_widenEPKcS2_Pw +_ZNKSt5ctypeIwE8do_widenEc +_ZNKSt5ctypeIwE9do_narrowEPKwS2_cPc +_ZNKSt5ctypeIwE9do_narrowEwc +_ZNKSt7_MpunctIcE11do_groupingEv +_ZNKSt7_MpunctIcE13do_neg_formatEv +_ZNKSt7_MpunctIcE13do_pos_formatEv +_ZNKSt7_MpunctIcE14do_curr_symbolEv +_ZNKSt7_MpunctIcE14do_frac_digitsEv +_ZNKSt7_MpunctIcE16do_decimal_pointEv +_ZNKSt7_MpunctIcE16do_negative_signEv +_ZNKSt7_MpunctIcE16do_positive_signEv +_ZNKSt7_MpunctIcE16do_thousands_sepEv +_ZNKSt7_MpunctIwE11do_groupingEv +_ZNKSt7_MpunctIwE13do_neg_formatEv +_ZNKSt7_MpunctIwE13do_pos_formatEv +_ZNKSt7_MpunctIwE14do_curr_symbolEv +_ZNKSt7_MpunctIwE14do_frac_digitsEv +_ZNKSt7_MpunctIwE16do_decimal_pointEv +_ZNKSt7_MpunctIwE16do_negative_signEv +_ZNKSt7_MpunctIwE16do_positive_signEv +_ZNKSt7_MpunctIwE16do_thousands_sepEv +_ZNKSt7codecvtIDic9_MbstatetE10do_unshiftERS0_PcS3_RS3_ +_ZNKSt7codecvtIDic9_MbstatetE11do_encodingEv +_ZNKSt7codecvtIDic9_MbstatetE13do_max_lengthEv +_ZNKSt7codecvtIDic9_MbstatetE16do_always_noconvEv +_ZNKSt7codecvtIDic9_MbstatetE5do_inERS0_PKcS4_RS4_PDiS6_RS6_ +_ZNKSt7codecvtIDic9_MbstatetE6do_outERS0_PKDiS4_RS4_PcS6_RS6_ +_ZNKSt7codecvtIDic9_MbstatetE9do_lengthERS0_PKcS4_m +_ZNKSt7codecvtIDsc9_MbstatetE10do_unshiftERS0_PcS3_RS3_ +_ZNKSt7codecvtIDsc9_MbstatetE11do_encodingEv +_ZNKSt7codecvtIDsc9_MbstatetE13do_max_lengthEv +_ZNKSt7codecvtIDsc9_MbstatetE16do_always_noconvEv +_ZNKSt7codecvtIDsc9_MbstatetE5do_inERS0_PKcS4_RS4_PDsS6_RS6_ +_ZNKSt7codecvtIDsc9_MbstatetE6do_outERS0_PKDsS4_RS4_PcS6_RS6_ +_ZNKSt7codecvtIDsc9_MbstatetE9do_lengthERS0_PKcS4_m +_ZNKSt7codecvtIcc9_MbstatetE10do_unshiftERS0_PcS3_RS3_ +_ZNKSt7codecvtIcc9_MbstatetE16do_always_noconvEv +_ZNKSt7codecvtIcc9_MbstatetE2inERS0_PKcS4_RS4_PcS6_RS6_ +_ZNKSt7codecvtIcc9_MbstatetE3outERS0_PKcS4_RS4_PcS6_RS6_ +_ZNKSt7codecvtIcc9_MbstatetE5do_inERS0_PKcS4_RS4_PcS6_RS6_ +_ZNKSt7codecvtIcc9_MbstatetE6do_outERS0_PKcS4_RS4_PcS6_RS6_ +_ZNKSt7codecvtIcc9_MbstatetE6lengthERS0_PKcS4_m +_ZNKSt7codecvtIcc9_MbstatetE7unshiftERS0_PcS3_RS3_ +_ZNKSt7codecvtIcc9_MbstatetE9do_lengthERS0_PKcS4_m +_ZNKSt7codecvtIwc9_MbstatetE10do_unshiftERS0_PcS3_RS3_ +_ZNKSt7codecvtIwc9_MbstatetE11do_encodingEv +_ZNKSt7codecvtIwc9_MbstatetE13do_max_lengthEv +_ZNKSt7codecvtIwc9_MbstatetE16do_always_noconvEv +_ZNKSt7codecvtIwc9_MbstatetE5do_inERS0_PKcS4_RS4_PwS6_RS6_ +_ZNKSt7codecvtIwc9_MbstatetE6do_outERS0_PKwS4_RS4_PcS6_RS6_ +_ZNKSt7codecvtIwc9_MbstatetE9do_lengthERS0_PKcS4_m +_ZNKSt7collateIcE10do_compareEPKcS2_S2_S2_ +_ZNKSt7collateIcE12do_transformEPKcS2_ +_ZNKSt7collateIcE4hashEPKcS2_ +_ZNKSt7collateIcE7compareEPKcS2_S2_S2_ +_ZNKSt7collateIcE7do_hashEPKcS2_ +_ZNKSt7collateIcE9transformEPKcS2_ +_ZNKSt7collateIwE10do_compareEPKwS2_S2_S2_ +_ZNKSt7collateIwE12do_transformEPKwS2_ +_ZNKSt7collateIwE4hashEPKwS2_ +_ZNKSt7collateIwE7compareEPKwS2_S2_S2_ +_ZNKSt7collateIwE7do_hashEPKwS2_ +_ZNKSt7collateIwE9transformEPKwS2_ +_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERPv +_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERb +_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERd +_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERe +_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERf +_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERj +_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERl +_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERm +_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERt +_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERx +_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERy +_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERPv +_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERb +_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERd +_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERe +_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERf +_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERj +_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERl +_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERm +_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERt +_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERx +_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERy +_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8_GetffldEPcRS3_S6_RSt8ios_basePi +_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8_GetifldEPcRS3_S6_NSt5_IosbIiE9_FmtflagsERKSt6locale +_ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE9_GetffldxEPcRS3_S6_RSt8ios_basePi +_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERPv +_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERb +_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERd +_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERe +_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERf +_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERj +_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERl +_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERm +_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERt +_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERx +_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERy +_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERPv +_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERb +_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERd +_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERe +_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERf +_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERj +_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERl +_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERm +_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERt +_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERx +_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERy +_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8_GetffldEPcRS3_S6_RSt8ios_basePi +_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8_GetifldEPcRS3_S6_NSt5_IosbIiE9_FmtflagsERKSt6locale +_ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE9_GetffldxEPcRS3_S6_RSt8ios_basePi +_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecPKv +_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecb +_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecd +_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basece +_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecl +_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecm +_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecx +_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecy +_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE4_PutES3_PKcm +_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE4_RepES3_cm +_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE5_FfmtEPccNSt5_IosbIiE9_FmtflagsE +_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE5_FputES3_RSt8ios_basecPKcm +_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE5_FputES3_RSt8ios_basecPKcmmmm +_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE5_IfmtEPcPKcNSt5_IosbIiE9_FmtflagsE +_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE5_IputES3_RSt8ios_basecPcm +_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecPKv +_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecb +_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd +_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basece +_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecl +_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecm +_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecx +_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecy +_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewPKv +_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewb +_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewd +_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewe +_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewl +_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewm +_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewx +_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewy +_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE4_PutES3_PKwm +_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE4_RepES3_wm +_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE5_FfmtEPccNSt5_IosbIiE9_FmtflagsE +_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE5_FputES3_RSt8ios_basewPKcm +_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE5_FputES3_RSt8ios_basewPKcmmmm +_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE5_IfmtEPcPKcNSt5_IosbIiE9_FmtflagsE +_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE5_IputES3_RSt8ios_basewPcm +_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewPKv +_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewb +_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewd +_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewe +_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewl +_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewm +_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewx +_ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewy +_ZNKSt8bad_cast4whatEv +_ZNKSt8bad_cast8_DoraiseEv +_ZNKSt8ios_base7failure8_DoraiseEv +_ZNKSt8messagesIcE3getEiiiRKSs +_ZNKSt8messagesIcE4openERKSsRKSt6locale +_ZNKSt8messagesIcE5closeEi +_ZNKSt8messagesIcE6do_getEiiiRKSs +_ZNKSt8messagesIcE7do_openERKSsRKSt6locale +_ZNKSt8messagesIcE8do_closeEi +_ZNKSt8messagesIwE3getEiiiRKSbIwSt11char_traitsIwESaIwEE +_ZNKSt8messagesIwE4openERKSsRKSt6locale +_ZNKSt8messagesIwE5closeEi +_ZNKSt8messagesIwE6do_getEiiiRKSbIwSt11char_traitsIwESaIwEE +_ZNKSt8messagesIwE7do_openERKSsRKSt6locale +_ZNKSt8messagesIwE8do_closeEi +_ZNKSt8numpunctIcE11do_groupingEv +_ZNKSt8numpunctIcE11do_truenameEv +_ZNKSt8numpunctIcE12do_falsenameEv +_ZNKSt8numpunctIcE13decimal_pointEv +_ZNKSt8numpunctIcE13thousands_sepEv +_ZNKSt8numpunctIcE16do_decimal_pointEv +_ZNKSt8numpunctIcE16do_thousands_sepEv +_ZNKSt8numpunctIcE8groupingEv +_ZNKSt8numpunctIcE8truenameEv +_ZNKSt8numpunctIcE9falsenameEv +_ZNKSt8numpunctIwE11do_groupingEv +_ZNKSt8numpunctIwE11do_truenameEv +_ZNKSt8numpunctIwE12do_falsenameEv +_ZNKSt8numpunctIwE13decimal_pointEv +_ZNKSt8numpunctIwE13thousands_sepEv +_ZNKSt8numpunctIwE16do_decimal_pointEv +_ZNKSt8numpunctIwE16do_thousands_sepEv +_ZNKSt8numpunctIwE8groupingEv +_ZNKSt8numpunctIwE8truenameEv +_ZNKSt8numpunctIwE9falsenameEv +_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE10date_orderEv +_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE11do_get_dateES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm +_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE11do_get_timeES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm +_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE11do_get_yearES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm +_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE11get_weekdayES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm +_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE13do_date_orderEv +_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE13get_monthnameES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm +_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14do_get_weekdayES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm +_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE16do_get_monthnameES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm +_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tmPKcSE_ +_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tmcc +_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tmcc +_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE7_GetfmtES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tmPKc +_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE7_GetintERS3_S5_iiRiRKSt5ctypeIcE +_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8get_dateES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm +_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8get_timeES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm +_ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8get_yearES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm +_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE10date_orderEv +_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE11do_get_dateES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm +_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE11do_get_timeES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm +_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE11do_get_yearES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm +_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE11get_weekdayES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm +_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE13do_date_orderEv +_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE13get_monthnameES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm +_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14do_get_weekdayES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm +_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE16do_get_monthnameES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm +_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tmPKwSE_ +_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tmcc +_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tmcc +_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE7_GetfmtES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tmPKc +_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE7_GetintERS3_S5_iiRiRKSt5ctypeIwE +_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8get_dateES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm +_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8get_timeES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm +_ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8get_yearES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm +_ZNKSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecPK2tmPKcSB_ +_ZNKSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecPK2tmcc +_ZNKSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecPK2tmcc +_ZNKSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewPK2tmPKwSB_ +_ZNKSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewPK2tmcc +_ZNKSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewPK2tmcc +_ZNKSt9bad_alloc4whatEv +_ZNKSt9bad_alloc8_DoraiseEv +_ZNKSt9basic_iosIcSt11char_traitsIcEE3tieEv +_ZNKSt9basic_iosIcSt11char_traitsIcEE4fillEv +_ZNKSt9basic_iosIcSt11char_traitsIcEE5rdbufEv +_ZNKSt9basic_iosIcSt11char_traitsIcEE5widenEc +_ZNKSt9basic_iosIcSt11char_traitsIcEE6narrowEcc +_ZNKSt9basic_iosIwSt11char_traitsIwEE3tieEv +_ZNKSt9basic_iosIwSt11char_traitsIwEE4fillEv +_ZNKSt9basic_iosIwSt11char_traitsIwEE5rdbufEv +_ZNKSt9basic_iosIwSt11char_traitsIwEE5widenEc +_ZNKSt9basic_iosIwSt11char_traitsIwEE6narrowEwc +_ZNKSt9exception4whatEv +_ZNKSt9exception6_RaiseEv +_ZNKSt9exception8_DoraiseEv +_ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_bRSt8ios_baseRNSt5_IosbIiE8_IostateERSs +_ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_bRSt8ios_baseRNSt5_IosbIiE8_IostateERe +_ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_bRSt8ios_baseRNSt5_IosbIiE8_IostateERSs +_ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_bRSt8ios_baseRNSt5_IosbIiE8_IostateERe +_ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8_GetmfldERS3_S5_bRSt8ios_basePc +_ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_bRSt8ios_baseRNSt5_IosbIiE8_IostateERSbIwS2_SaIwEE +_ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_bRSt8ios_baseRNSt5_IosbIiE8_IostateERe +_ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_bRSt8ios_baseRNSt5_IosbIiE8_IostateERSbIwS2_SaIwEE +_ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_bRSt8ios_baseRNSt5_IosbIiE8_IostateERe +_ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8_GetmfldERS3_S5_bRSt8ios_basePw +_ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_bRSt8ios_basecRKSs +_ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_bRSt8ios_basece +_ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_bRSt8ios_basecRKSs +_ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_bRSt8ios_basece +_ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE8_PutmfldES3_bRSt8ios_basecbSsc +_ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_bRSt8ios_basewRKSbIwS2_SaIwEE +_ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_bRSt8ios_basewe +_ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_bRSt8ios_basewRKSbIwS2_SaIwEE +_ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_bRSt8ios_basewe +_ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE8_PutmfldES3_bRSt8ios_basewbSbIwS2_SaIwEEw +_ZNO3WTF6String12isolatedCopyEv +_ZNSbIcSt11char_traitsIcEN15AbstractStorage8StlAllocIcEEE6assignERKS4_mm +_ZNSbIwSt11char_traitsIwESaIwEE5_CopyEmm +_ZNSbIwSt11char_traitsIwESaIwEE5eraseEmm +_ZNSbIwSt11char_traitsIwESaIwEE6appendERKS2_mm +_ZNSbIwSt11char_traitsIwESaIwEE6appendEmw +_ZNSbIwSt11char_traitsIwESaIwEE6assignEOS2_ +_ZNSbIwSt11char_traitsIwESaIwEE6assignEPKwS4_ +_ZNSbIwSt11char_traitsIwESaIwEE6assignEPKwm +_ZNSbIwSt11char_traitsIwESaIwEE6assignERKS2_mm +_ZNSbIwSt11char_traitsIwESaIwEE6assignEmw +_ZNSbIwSt11char_traitsIwESaIwEE6insertEmmw +_ZNSbIwSt11char_traitsIwESaIwEE7replaceEmmPKwm +_ZNSbIwSt11char_traitsIwESaIwEE7replaceEmmRKS2_mm +_ZNSbIwSt11char_traitsIwESaIwEEaSEOS2_ +_ZNSiD0Ev +_ZNSiD1Ev +_ZNSo12_Sentry_baseD2Ev +_ZNSo5_OsfxEv +_ZNSo5flushEv +_ZNSo6sentryC2ERSo +_ZNSo6sentryD2Ev +_ZNSoC1EPSt15basic_streambufIcSt11char_traitsIcEEb +_ZNSoD0Ev +_ZNSoD1Ev +_ZNSs5_CopyEmm +_ZNSs5eraseEmm +_ZNSs6appendERKSsmm +_ZNSs6appendEmc +_ZNSs6assignEOSs +_ZNSs6assignEPKcm +_ZNSs6assignERKSsmm +_ZNSs6assignEmc +_ZNSs6insertEmmc +_ZNSs7replaceEmmPKcm +_ZNSs7replaceEmmRKSsmm +_ZNSsaSEOSs +_ZNSt10_Ref_countIN15AbstractStorage14FacebookFolderEE12_Delete_thisEv +_ZNSt10_Ref_countIN15AbstractStorage14FacebookFolderEE8_DestroyEv +_ZNSt10_Ref_countIN15AbstractStorage14FacebookFolderEED0Ev +_ZNSt10_Ref_countIN15AbstractStorage14FacebookFolderEED1Ev +_ZNSt10_Ref_countIN15AbstractStorage15FacebookContentEE12_Delete_thisEv +_ZNSt10_Ref_countIN15AbstractStorage15FacebookContentEE8_DestroyEv +_ZNSt10_Ref_countIN15AbstractStorage15FacebookContentEED0Ev +_ZNSt10_Ref_countIN15AbstractStorage15FacebookContentEED1Ev +_ZNSt10bad_typeidD0Ev +_ZNSt10bad_typeidD1Ev +_ZNSt10bad_typeidD2Ev +_ZNSt10filesystem10_Close_dirEPv +_ZNSt10filesystem10_Copy_fileEPKcS1_ +_ZNSt10filesystem10_File_sizeEPKc +_ZNSt10filesystem10_File_sizeEPKcPi +_ZNSt10filesystem11_EquivalentEPKcS1_ +_ZNSt10filesystem11_Remove_dirEPKc +_ZNSt10filesystem12_Current_getERA260_c +_ZNSt10filesystem12_Current_setEPKc +_ZNSt10filesystem13_Current_set2EPKc +_ZNSt10filesystem16_Last_write_timeEPKc +_ZNSt10filesystem16_Last_write_timeEPKcPlS2_ +_ZNSt10filesystem18_Xfilesystem_errorEPKcRKNS_4pathES4_St10error_code +_ZNSt10filesystem18_Xfilesystem_errorEPKcRKNS_4pathESt10error_code +_ZNSt10filesystem18_Xfilesystem_errorEPKcSt10error_code +_ZNSt10filesystem20_Set_last_write_timeEPKcl +_ZNSt10filesystem5_StatEPKcPNS_5permsE +_ZNSt10filesystem5_StatEPKcPNS_5permsEPi +_ZNSt10filesystem6_ChmodEPKcNS_5permsE +_ZNSt10filesystem6_LstatEPKcPNS_5permsE +_ZNSt10filesystem6_LstatEPKcPNS_5permsEPi +_ZNSt10filesystem7_RenameEPKcS1_ +_ZNSt10filesystem7_ResizeEPKcm +_ZNSt10filesystem7_UnlinkEPKc +_ZNSt10filesystem8_StatvfsEPKcRNS_10space_infoE +_ZNSt10filesystem9_Make_dirEPKcS1_ +_ZNSt10filesystem9_Open_dirERA260_cPKcRiRNS_9file_typeE +_ZNSt10filesystem9_Read_dirERA260_cPvRNS_9file_typeE +_ZNSt10moneypunctIcLb0EE2idE +_ZNSt10moneypunctIcLb0EE4intlE +_ZNSt10moneypunctIcLb0EE7_GetcatEPPKNSt6locale5facetEPKS1_ +_ZNSt10moneypunctIcLb0EEC1EPKcm +_ZNSt10moneypunctIcLb0EEC1ERKSt8_Locinfomb +_ZNSt10moneypunctIcLb0EEC1Em +_ZNSt10moneypunctIcLb0EEC2EPKcm +_ZNSt10moneypunctIcLb0EEC2ERKSt8_Locinfomb +_ZNSt10moneypunctIcLb0EEC2Em +_ZNSt10moneypunctIcLb0EED0Ev +_ZNSt10moneypunctIcLb0EED1Ev +_ZNSt10moneypunctIcLb0EED2Ev +_ZNSt10moneypunctIcLb1EE2idE +_ZNSt10moneypunctIcLb1EE4intlE +_ZNSt10moneypunctIcLb1EE7_GetcatEPPKNSt6locale5facetEPKS1_ +_ZNSt10moneypunctIcLb1EEC1EPKcm +_ZNSt10moneypunctIcLb1EEC1ERKSt8_Locinfomb +_ZNSt10moneypunctIcLb1EEC1Em +_ZNSt10moneypunctIcLb1EEC2EPKcm +_ZNSt10moneypunctIcLb1EEC2ERKSt8_Locinfomb +_ZNSt10moneypunctIcLb1EEC2Em +_ZNSt10moneypunctIcLb1EED0Ev +_ZNSt10moneypunctIcLb1EED1Ev +_ZNSt10moneypunctIcLb1EED2Ev +_ZNSt10moneypunctIwLb0EE2idE +_ZNSt10moneypunctIwLb0EE4intlE +_ZNSt10moneypunctIwLb0EE7_GetcatEPPKNSt6locale5facetEPKS1_ +_ZNSt10moneypunctIwLb0EEC1EPKcm +_ZNSt10moneypunctIwLb0EEC1ERKSt8_Locinfomb +_ZNSt10moneypunctIwLb0EEC1Em +_ZNSt10moneypunctIwLb0EEC2EPKcm +_ZNSt10moneypunctIwLb0EEC2ERKSt8_Locinfomb +_ZNSt10moneypunctIwLb0EEC2Em +_ZNSt10moneypunctIwLb0EED0Ev +_ZNSt10moneypunctIwLb0EED1Ev +_ZNSt10moneypunctIwLb0EED2Ev +_ZNSt10moneypunctIwLb1EE2idE +_ZNSt10moneypunctIwLb1EE4intlE +_ZNSt10moneypunctIwLb1EE7_GetcatEPPKNSt6locale5facetEPKS1_ +_ZNSt10moneypunctIwLb1EEC1EPKcm +_ZNSt10moneypunctIwLb1EEC1ERKSt8_Locinfomb +_ZNSt10moneypunctIwLb1EEC1Em +_ZNSt10moneypunctIwLb1EEC2EPKcm +_ZNSt10moneypunctIwLb1EEC2ERKSt8_Locinfomb +_ZNSt10moneypunctIwLb1EEC2Em +_ZNSt10moneypunctIwLb1EED0Ev +_ZNSt10moneypunctIwLb1EED1Ev +_ZNSt10moneypunctIwLb1EED2Ev +_ZNSt11logic_errorC1ERKS_ +_ZNSt11logic_errorD0Ev +_ZNSt11logic_errorD1Ev +_ZNSt11logic_errorD2Ev +_ZNSt11range_errorD0Ev +_ZNSt11range_errorD1Ev +_ZNSt11range_errorD2Ev +_ZNSt11regex_errorC1ENSt15regex_constants10error_typeE +_ZNSt11regex_errorD0Ev +_ZNSt11regex_errorD1Ev +_ZNSt11regex_errorD2Ev +_ZNSt12bad_weak_ptrD0Ev +_ZNSt12bad_weak_ptrD1Ev +_ZNSt12bad_weak_ptrD2Ev +_ZNSt12domain_errorD0Ev +_ZNSt12domain_errorD1Ev +_ZNSt12domain_errorD2Ev +_ZNSt12future_errorC1ERKS_ +_ZNSt12future_errorD0Ev +_ZNSt12future_errorD1Ev +_ZNSt12future_errorD2Ev +_ZNSt12length_errorC1EPKc +_ZNSt12length_errorD0Ev +_ZNSt12length_errorD1Ev +_ZNSt12length_errorD2Ev +_ZNSt12out_of_rangeC1EPKc +_ZNSt12out_of_rangeD0Ev +_ZNSt12out_of_rangeD1Ev +_ZNSt12out_of_rangeD2Ev +_ZNSt12placeholders2_1E +_ZNSt12placeholders2_2E +_ZNSt12placeholders2_3E +_ZNSt12placeholders2_4E +_ZNSt12placeholders2_5E +_ZNSt12placeholders2_6E +_ZNSt12placeholders2_7E +_ZNSt12placeholders2_8E +_ZNSt12placeholders2_9E +_ZNSt12placeholders3_10E +_ZNSt12placeholders3_11E +_ZNSt12placeholders3_12E +_ZNSt12placeholders3_13E +_ZNSt12placeholders3_14E +_ZNSt12placeholders3_15E +_ZNSt12placeholders3_16E +_ZNSt12placeholders3_17E +_ZNSt12placeholders3_18E +_ZNSt12placeholders3_19E +_ZNSt12placeholders3_20E +_ZNSt12system_errorC1ERKS_ +_ZNSt12system_errorC1EiRKSt14error_categoryPKc +_ZNSt12system_errorC2ESt10error_codePKc +_ZNSt12system_errorD0Ev +_ZNSt12system_errorD1Ev +_ZNSt12system_errorD2Ev +_ZNSt13_Num_int_base10is_boundedE +_ZNSt13_Num_int_base10is_integerE +_ZNSt13_Num_int_base14is_specializedE +_ZNSt13_Num_int_base5radixE +_ZNSt13_Num_int_base8is_exactE +_ZNSt13_Num_int_base9is_moduloE +_ZNSt13_Regex_traitsIcE6_NamesE +_ZNSt13_Regex_traitsIwE6_NamesE +_ZNSt13bad_exceptionD0Ev +_ZNSt13bad_exceptionD1Ev +_ZNSt13bad_exceptionD2Ev +_ZNSt13basic_filebufIcSt11char_traitsIcEE4syncEv +_ZNSt13basic_filebufIcSt11char_traitsIcEE5_InitEP7__sFILENS2_7_InitflE +_ZNSt13basic_filebufIcSt11char_traitsIcEE5_LockEv +_ZNSt13basic_filebufIcSt11char_traitsIcEE5imbueERKSt6locale +_ZNSt13basic_filebufIcSt11char_traitsIcEE5uflowEv +_ZNSt13basic_filebufIcSt11char_traitsIcEE6setbufEPci +_ZNSt13basic_filebufIcSt11char_traitsIcEE7_UnlockEv +_ZNSt13basic_filebufIcSt11char_traitsIcEE7seekoffElNSt5_IosbIiE8_SeekdirENS4_9_OpenmodeE +_ZNSt13basic_filebufIcSt11char_traitsIcEE7seekposESt4fposI9_MbstatetENSt5_IosbIiE9_OpenmodeE +_ZNSt13basic_filebufIcSt11char_traitsIcEE8overflowEi +_ZNSt13basic_filebufIcSt11char_traitsIcEE9_EndwriteEv +_ZNSt13basic_filebufIcSt11char_traitsIcEE9pbackfailEi +_ZNSt13basic_filebufIcSt11char_traitsIcEE9underflowEv +_ZNSt13basic_filebufIcSt11char_traitsIcEED0Ev +_ZNSt13basic_filebufIcSt11char_traitsIcEED1Ev +_ZNSt13basic_filebufIcSt11char_traitsIcEED2Ev +_ZNSt13basic_filebufIwSt11char_traitsIwEE4syncEv +_ZNSt13basic_filebufIwSt11char_traitsIwEE5_LockEv +_ZNSt13basic_filebufIwSt11char_traitsIwEE5imbueERKSt6locale +_ZNSt13basic_filebufIwSt11char_traitsIwEE5uflowEv +_ZNSt13basic_filebufIwSt11char_traitsIwEE6setbufEPwi +_ZNSt13basic_filebufIwSt11char_traitsIwEE7_UnlockEv +_ZNSt13basic_filebufIwSt11char_traitsIwEE7seekoffElNSt5_IosbIiE8_SeekdirENS4_9_OpenmodeE +_ZNSt13basic_filebufIwSt11char_traitsIwEE7seekposESt4fposI9_MbstatetENSt5_IosbIiE9_OpenmodeE +_ZNSt13basic_filebufIwSt11char_traitsIwEE8overflowEi +_ZNSt13basic_filebufIwSt11char_traitsIwEE9_EndwriteEv +_ZNSt13basic_filebufIwSt11char_traitsIwEE9pbackfailEi +_ZNSt13basic_filebufIwSt11char_traitsIwEE9underflowEv +_ZNSt13basic_filebufIwSt11char_traitsIwEEC2EP7__sFILE +_ZNSt13basic_filebufIwSt11char_traitsIwEED0Ev +_ZNSt13basic_filebufIwSt11char_traitsIwEED1Ev +_ZNSt13basic_filebufIwSt11char_traitsIwEED2Ev +_ZNSt13basic_istreamIwSt11char_traitsIwEED0Ev +_ZNSt13basic_istreamIwSt11char_traitsIwEED1Ev +_ZNSt13basic_ostreamIwSt11char_traitsIwEE12_Sentry_baseD2Ev +_ZNSt13basic_ostreamIwSt11char_traitsIwEE5_OsfxEv +_ZNSt13basic_ostreamIwSt11char_traitsIwEE5flushEv +_ZNSt13basic_ostreamIwSt11char_traitsIwEE6sentryC2ERS2_ +_ZNSt13basic_ostreamIwSt11char_traitsIwEE6sentryD2Ev +_ZNSt13basic_ostreamIwSt11char_traitsIwEEC1EPSt15basic_streambufIwS1_Eb +_ZNSt13basic_ostreamIwSt11char_traitsIwEED0Ev +_ZNSt13basic_ostreamIwSt11char_traitsIwEED1Ev +_ZNSt13runtime_errorC1EPKc +_ZNSt13runtime_errorD0Ev +_ZNSt13runtime_errorD1Ev +_ZNSt13runtime_errorD2Ev +_ZNSt14_Error_objectsIiE14_System_objectE +_ZNSt14_Error_objectsIiE15_Generic_objectE +_ZNSt14_Error_objectsIiE16_Iostream_objectE +_ZNSt14_Num_ldbl_base10has_denormE +_ZNSt14_Num_ldbl_base10is_boundedE +_ZNSt14_Num_ldbl_base10is_integerE +_ZNSt14_Num_ldbl_base11round_styleE +_ZNSt14_Num_ldbl_base12has_infinityE +_ZNSt14_Num_ldbl_base13has_quiet_NaNE +_ZNSt14_Num_ldbl_base14is_specializedE +_ZNSt14_Num_ldbl_base15has_denorm_lossE +_ZNSt14_Num_ldbl_base15tinyness_beforeE +_ZNSt14_Num_ldbl_base17has_signaling_NaNE +_ZNSt14_Num_ldbl_base5radixE +_ZNSt14_Num_ldbl_base5trapsE +_ZNSt14_Num_ldbl_base8is_exactE +_ZNSt14_Num_ldbl_base9is_iec559E +_ZNSt14_Num_ldbl_base9is_moduloE +_ZNSt14_Num_ldbl_base9is_signedE +_ZNSt14error_categoryD0Ev +_ZNSt14error_categoryD1Ev +_ZNSt14error_categoryD2Ev +_ZNSt14numeric_limitsIDiE6digitsE +_ZNSt14numeric_limitsIDiE8digits10E +_ZNSt14numeric_limitsIDiE9is_signedE +_ZNSt14numeric_limitsIDsE6digitsE +_ZNSt14numeric_limitsIDsE8digits10E +_ZNSt14numeric_limitsIDsE9is_signedE +_ZNSt14numeric_limitsIaE6digitsE +_ZNSt14numeric_limitsIaE8digits10E +_ZNSt14numeric_limitsIaE9is_signedE +_ZNSt14numeric_limitsIbE6digitsE +_ZNSt14numeric_limitsIbE8digits10E +_ZNSt14numeric_limitsIbE9is_moduloE +_ZNSt14numeric_limitsIbE9is_signedE +_ZNSt14numeric_limitsIcE6digitsE +_ZNSt14numeric_limitsIcE8digits10E +_ZNSt14numeric_limitsIcE9is_signedE +_ZNSt14numeric_limitsIdE12max_digits10E +_ZNSt14numeric_limitsIdE12max_exponentE +_ZNSt14numeric_limitsIdE12min_exponentE +_ZNSt14numeric_limitsIdE14max_exponent10E +_ZNSt14numeric_limitsIdE14min_exponent10E +_ZNSt14numeric_limitsIdE6digitsE +_ZNSt14numeric_limitsIdE8digits10E +_ZNSt14numeric_limitsIeE12max_digits10E +_ZNSt14numeric_limitsIeE12max_exponentE +_ZNSt14numeric_limitsIeE12min_exponentE +_ZNSt14numeric_limitsIeE14max_exponent10E +_ZNSt14numeric_limitsIeE14min_exponent10E +_ZNSt14numeric_limitsIeE6digitsE +_ZNSt14numeric_limitsIeE8digits10E +_ZNSt14numeric_limitsIfE12max_digits10E +_ZNSt14numeric_limitsIfE12max_exponentE +_ZNSt14numeric_limitsIfE12min_exponentE +_ZNSt14numeric_limitsIfE14max_exponent10E +_ZNSt14numeric_limitsIfE14min_exponent10E +_ZNSt14numeric_limitsIfE6digitsE +_ZNSt14numeric_limitsIfE8digits10E +_ZNSt14numeric_limitsIhE6digitsE +_ZNSt14numeric_limitsIhE8digits10E +_ZNSt14numeric_limitsIhE9is_signedE +_ZNSt14numeric_limitsIiE6digitsE +_ZNSt14numeric_limitsIiE8digits10E +_ZNSt14numeric_limitsIiE9is_signedE +_ZNSt14numeric_limitsIjE6digitsE +_ZNSt14numeric_limitsIjE8digits10E +_ZNSt14numeric_limitsIjE9is_signedE +_ZNSt14numeric_limitsIlE6digitsE +_ZNSt14numeric_limitsIlE8digits10E +_ZNSt14numeric_limitsIlE9is_signedE +_ZNSt14numeric_limitsImE6digitsE +_ZNSt14numeric_limitsImE8digits10E +_ZNSt14numeric_limitsImE9is_signedE +_ZNSt14numeric_limitsIsE6digitsE +_ZNSt14numeric_limitsIsE8digits10E +_ZNSt14numeric_limitsIsE9is_signedE +_ZNSt14numeric_limitsItE6digitsE +_ZNSt14numeric_limitsItE8digits10E +_ZNSt14numeric_limitsItE9is_signedE +_ZNSt14numeric_limitsIwE6digitsE +_ZNSt14numeric_limitsIwE8digits10E +_ZNSt14numeric_limitsIwE9is_signedE +_ZNSt14numeric_limitsIxE6digitsE +_ZNSt14numeric_limitsIxE8digits10E +_ZNSt14numeric_limitsIxE9is_signedE +_ZNSt14numeric_limitsIyE6digitsE +_ZNSt14numeric_limitsIyE8digits10E +_ZNSt14numeric_limitsIyE9is_signedE +_ZNSt14overflow_errorC1EPKc +_ZNSt14overflow_errorD0Ev +_ZNSt14overflow_errorD1Ev +_ZNSt14overflow_errorD2Ev +_ZNSt15_Num_float_base10has_denormE +_ZNSt15_Num_float_base10is_boundedE +_ZNSt15_Num_float_base10is_integerE +_ZNSt15_Num_float_base11round_styleE +_ZNSt15_Num_float_base12has_infinityE +_ZNSt15_Num_float_base13has_quiet_NaNE +_ZNSt15_Num_float_base14is_specializedE +_ZNSt15_Num_float_base15has_denorm_lossE +_ZNSt15_Num_float_base15tinyness_beforeE +_ZNSt15_Num_float_base17has_signaling_NaNE +_ZNSt15_Num_float_base5radixE +_ZNSt15_Num_float_base5trapsE +_ZNSt15_Num_float_base8is_exactE +_ZNSt15_Num_float_base9is_iec559E +_ZNSt15_Num_float_base9is_moduloE +_ZNSt15_Num_float_base9is_signedE +_ZNSt15basic_streambufIcSt11char_traitsIcEE4syncEv +_ZNSt15basic_streambufIcSt11char_traitsIcEE5_LockEv +_ZNSt15basic_streambufIcSt11char_traitsIcEE5imbueERKSt6locale +_ZNSt15basic_streambufIcSt11char_traitsIcEE5uflowEv +_ZNSt15basic_streambufIcSt11char_traitsIcEE6setbufEPci +_ZNSt15basic_streambufIcSt11char_traitsIcEE6xsgetnEPci +_ZNSt15basic_streambufIcSt11char_traitsIcEE6xsputnEPKci +_ZNSt15basic_streambufIcSt11char_traitsIcEE7_UnlockEv +_ZNSt15basic_streambufIcSt11char_traitsIcEE7seekoffElNSt5_IosbIiE8_SeekdirENS4_9_OpenmodeE +_ZNSt15basic_streambufIcSt11char_traitsIcEE7seekposESt4fposI9_MbstatetENSt5_IosbIiE9_OpenmodeE +_ZNSt15basic_streambufIcSt11char_traitsIcEE8overflowEi +_ZNSt15basic_streambufIcSt11char_traitsIcEE8pubimbueERKSt6locale +_ZNSt15basic_streambufIcSt11char_traitsIcEE9pbackfailEi +_ZNSt15basic_streambufIcSt11char_traitsIcEE9showmanycEv +_ZNSt15basic_streambufIcSt11char_traitsIcEE9underflowEv +_ZNSt15basic_streambufIcSt11char_traitsIcEED0Ev +_ZNSt15basic_streambufIcSt11char_traitsIcEED1Ev +_ZNSt15basic_streambufIcSt11char_traitsIcEED2Ev +_ZNSt15basic_streambufIwSt11char_traitsIwEE4syncEv +_ZNSt15basic_streambufIwSt11char_traitsIwEE5_LockEv +_ZNSt15basic_streambufIwSt11char_traitsIwEE5imbueERKSt6locale +_ZNSt15basic_streambufIwSt11char_traitsIwEE5uflowEv +_ZNSt15basic_streambufIwSt11char_traitsIwEE6setbufEPwi +_ZNSt15basic_streambufIwSt11char_traitsIwEE6xsgetnEPwi +_ZNSt15basic_streambufIwSt11char_traitsIwEE6xsputnEPKwi +_ZNSt15basic_streambufIwSt11char_traitsIwEE7_UnlockEv +_ZNSt15basic_streambufIwSt11char_traitsIwEE7seekoffElNSt5_IosbIiE8_SeekdirENS4_9_OpenmodeE +_ZNSt15basic_streambufIwSt11char_traitsIwEE7seekposESt4fposI9_MbstatetENSt5_IosbIiE9_OpenmodeE +_ZNSt15basic_streambufIwSt11char_traitsIwEE8overflowEi +_ZNSt15basic_streambufIwSt11char_traitsIwEE8pubimbueERKSt6locale +_ZNSt15basic_streambufIwSt11char_traitsIwEE9pbackfailEi +_ZNSt15basic_streambufIwSt11char_traitsIwEE9showmanycEv +_ZNSt15basic_streambufIwSt11char_traitsIwEE9underflowEv +_ZNSt15basic_streambufIwSt11char_traitsIwEED0Ev +_ZNSt15basic_streambufIwSt11char_traitsIwEED1Ev +_ZNSt15basic_streambufIwSt11char_traitsIwEED2Ev +_ZNSt15underflow_errorD0Ev +_ZNSt15underflow_errorD1Ev +_ZNSt15underflow_errorD2Ev +_ZNSt16invalid_argumentC1EPKc +_ZNSt16invalid_argumentD0Ev +_ZNSt16invalid_argumentD1Ev +_ZNSt16invalid_argumentD2Ev +_ZNSt16nested_exceptionD0Ev +_ZNSt16nested_exceptionD1Ev +_ZNSt16nested_exceptionD2Ev +_ZNSt17bad_function_callD0Ev +_ZNSt17bad_function_callD1Ev +_ZNSt17bad_function_callD2Ev +_ZNSt18bad_variant_accessD0Ev +_ZNSt18bad_variant_accessD1Ev +_ZNSt20_Future_error_objectIiE14_Future_objectE +_ZNSt20bad_array_new_lengthD0Ev +_ZNSt20bad_array_new_lengthD1Ev +_ZNSt20bad_array_new_lengthD2Ev +_ZNSt22_Future_error_categoryD0Ev +_ZNSt22_Future_error_categoryD1Ev +_ZNSt22_System_error_categoryD0Ev +_ZNSt22_System_error_categoryD1Ev +_ZNSt23_Generic_error_categoryD0Ev +_ZNSt23_Generic_error_categoryD1Ev +_ZNSt24_Iostream_error_categoryD0Ev +_ZNSt24_Iostream_error_categoryD1Ev +_ZNSt3pmr19new_delete_resourceEv +_ZNSt3pmr20get_default_resourceEv +_ZNSt3pmr20null_memory_resourceEv +_ZNSt3pmr20set_default_resourceEPNS_15memory_resourceE +_ZNSt4_Pad7_LaunchEPKcPP12pthread_attrPP7pthread +_ZNSt4_Pad7_LaunchEPKcPP7pthread +_ZNSt4_Pad7_LaunchEPP12pthread_attrPP7pthread +_ZNSt4_Pad7_LaunchEPP7pthread +_ZNSt4_Pad8_ReleaseEv +_ZNSt4_PadC2EPKc +_ZNSt4_PadC2Ev +_ZNSt4_PadD1Ev +_ZNSt4_PadD2Ev +_ZNSt5ctypeIcE10table_sizeE +_ZNSt5ctypeIcE2idE +_ZNSt5ctypeIcE7_GetcatEPPKNSt6locale5facetEPKS1_ +_ZNSt5ctypeIcED0Ev +_ZNSt5ctypeIcED1Ev +_ZNSt5ctypeIwE2idE +_ZNSt5ctypeIwE7_GetcatEPPKNSt6locale5facetEPKS1_ +_ZNSt5ctypeIwED0Ev +_ZNSt5ctypeIwED1Ev +_ZNSt6_Mutex5_LockEv +_ZNSt6_Mutex7_UnlockEv +_ZNSt6_MutexC1Ev +_ZNSt6_MutexC2Ev +_ZNSt6_MutexD1Ev +_ZNSt6_MutexD2Ev +_ZNSt6_Winit9_Init_cntE +_ZNSt6_WinitC1Ev +_ZNSt6_WinitC2Ev +_ZNSt6_WinitD1Ev +_ZNSt6_WinitD2Ev +_ZNSt6chrono12steady_clock12is_monotonicE +_ZNSt6chrono12steady_clock9is_steadyE +_ZNSt6chrono12system_clock12is_monotonicE +_ZNSt6chrono12system_clock9is_steadyE +_ZNSt6locale16_GetgloballocaleEv +_ZNSt6locale16_SetgloballocaleEPv +_ZNSt6locale2id7_Id_cntE +_ZNSt6locale5_InitEv +_ZNSt6locale5emptyEv +_ZNSt6locale5facet7_DecrefEv +_ZNSt6locale5facet7_IncrefEv +_ZNSt6locale5facet9_RegisterEv +_ZNSt6locale6globalERKS_ +_ZNSt6locale7_Locimp7_AddfacEPNS_5facetEm +_ZNSt6locale7_Locimp8_ClocptrE +_ZNSt6locale7_Locimp8_MakelocERKSt8_LocinfoiPS0_PKS_ +_ZNSt6locale7_Locimp9_MakewlocERKSt8_LocinfoiPS0_PKS_ +_ZNSt6locale7_Locimp9_MakexlocERKSt8_LocinfoiPS0_PKS_ +_ZNSt6locale7_LocimpC1ERKS0_ +_ZNSt6locale7_LocimpC1Eb +_ZNSt6locale7_LocimpC2ERKS0_ +_ZNSt6locale7_LocimpC2Eb +_ZNSt6locale7_LocimpD0Ev +_ZNSt6locale7_LocimpD1Ev +_ZNSt6locale7_LocimpD2Ev +_ZNSt6locale7classicEv +_ZNSt6localeD1Ev +_ZNSt6thread20hardware_concurrencyEv +_ZNSt6vectorIN15AbstractStorage19FacebookFolderEntryESaIS1_EE11_ReallocateEm +_ZNSt6vectorIN15AbstractStorage19FacebookFolderEntryESaIS1_EE9push_backEOS1_ +_ZNSt7_MpunctIcE5_InitERKSt8_Locinfob +_ZNSt7_MpunctIcE8_GetvalsIcEEvT_PK5lconv +_ZNSt7_MpunctIcEC2EPKcmbb +_ZNSt7_MpunctIcEC2Emb +_ZNSt7_MpunctIcED0Ev +_ZNSt7_MpunctIcED1Ev +_ZNSt7_MpunctIwE5_InitERKSt8_Locinfob +_ZNSt7_MpunctIwE8_GetvalsIwEEvT_PK5lconv +_ZNSt7_MpunctIwEC2EPKcmbb +_ZNSt7_MpunctIwEC2Emb +_ZNSt7_MpunctIwED0Ev +_ZNSt7_MpunctIwED1Ev +_ZNSt7codecvtIDic9_MbstatetE2idE +_ZNSt7codecvtIDic9_MbstatetED0Ev +_ZNSt7codecvtIDic9_MbstatetED1Ev +_ZNSt7codecvtIDsc9_MbstatetE2idE +_ZNSt7codecvtIDsc9_MbstatetED0Ev +_ZNSt7codecvtIDsc9_MbstatetED1Ev +_ZNSt7codecvtIcc9_MbstatetE2idE +_ZNSt7codecvtIcc9_MbstatetE5_InitERKSt8_Locinfo +_ZNSt7codecvtIcc9_MbstatetE7_GetcatEPPKNSt6locale5facetEPKS2_ +_ZNSt7codecvtIcc9_MbstatetEC1ERKSt8_Locinfom +_ZNSt7codecvtIcc9_MbstatetEC1Em +_ZNSt7codecvtIcc9_MbstatetEC2ERKSt8_Locinfom +_ZNSt7codecvtIcc9_MbstatetEC2Em +_ZNSt7codecvtIcc9_MbstatetED0Ev +_ZNSt7codecvtIcc9_MbstatetED1Ev +_ZNSt7codecvtIcc9_MbstatetED2Ev +_ZNSt7codecvtIwc9_MbstatetE2idE +_ZNSt7codecvtIwc9_MbstatetE7_GetcatEPPKNSt6locale5facetEPKS2_ +_ZNSt7codecvtIwc9_MbstatetED0Ev +_ZNSt7codecvtIwc9_MbstatetED1Ev +_ZNSt7collateIcE2idE +_ZNSt7collateIcE5_InitERKSt8_Locinfo +_ZNSt7collateIcE7_GetcatEPPKNSt6locale5facetEPKS1_ +_ZNSt7collateIcEC1EPKcm +_ZNSt7collateIcEC1ERKSt8_Locinfom +_ZNSt7collateIcEC1Em +_ZNSt7collateIcEC2EPKcm +_ZNSt7collateIcEC2ERKSt8_Locinfom +_ZNSt7collateIcEC2Em +_ZNSt7collateIcED0Ev +_ZNSt7collateIcED1Ev +_ZNSt7collateIcED2Ev +_ZNSt7collateIwE2idE +_ZNSt7collateIwE5_InitERKSt8_Locinfo +_ZNSt7collateIwE7_GetcatEPPKNSt6locale5facetEPKS1_ +_ZNSt7collateIwEC1EPKcm +_ZNSt7collateIwEC1ERKSt8_Locinfom +_ZNSt7collateIwEC1Em +_ZNSt7collateIwEC2EPKcm +_ZNSt7collateIwEC2ERKSt8_Locinfom +_ZNSt7collateIwEC2Em +_ZNSt7collateIwED0Ev +_ZNSt7collateIwED1Ev +_ZNSt7collateIwED2Ev +_ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE +_ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE5_InitERKSt8_Locinfo +_ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE7_GetcatEPPKNSt6locale5facetEPKS5_ +_ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1ERKSt8_Locinfom +_ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1Em +_ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2ERKSt8_Locinfom +_ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2Em +_ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED0Ev +_ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED1Ev +_ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED2Ev +_ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE +_ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE5_InitERKSt8_Locinfo +_ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE7_GetcatEPPKNSt6locale5facetEPKS5_ +_ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1ERKSt8_Locinfom +_ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1Em +_ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2ERKSt8_Locinfom +_ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2Em +_ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED0Ev +_ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED1Ev +_ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED2Ev +_ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE +_ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE5_InitERKSt8_Locinfo +_ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE7_GetcatEPPKNSt6locale5facetEPKS5_ +_ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1ERKSt8_Locinfom +_ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1Em +_ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2ERKSt8_Locinfom +_ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2Em +_ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED0Ev +_ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED1Ev +_ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED2Ev +_ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE +_ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE5_InitERKSt8_Locinfo +_ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE7_GetcatEPPKNSt6locale5facetEPKS5_ +_ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1ERKSt8_Locinfom +_ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1Em +_ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2ERKSt8_Locinfom +_ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2Em +_ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED0Ev +_ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED1Ev +_ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED2Ev +_ZNSt8_Locinfo8_AddcatsEiPKc +_ZNSt8_LocinfoC1EPKc +_ZNSt8_LocinfoC1ERKSs +_ZNSt8_LocinfoC1EiPKc +_ZNSt8_LocinfoC2EPKc +_ZNSt8_LocinfoC2ERKSs +_ZNSt8_LocinfoC2EiPKc +_ZNSt8_LocinfoD1Ev +_ZNSt8_LocinfoD2Ev +_ZNSt8bad_castD0Ev +_ZNSt8bad_castD1Ev +_ZNSt8bad_castD2Ev +_ZNSt8ios_base4Init9_Init_cntE +_ZNSt8ios_base4InitC1Ev +_ZNSt8ios_base4InitC2Ev +_ZNSt8ios_base4InitD1Ev +_ZNSt8ios_base4InitD2Ev +_ZNSt8ios_base5_SyncE +_ZNSt8ios_base5clearENSt5_IosbIiE8_IostateEb +_ZNSt8ios_base5imbueERKSt6locale +_ZNSt8ios_base6_IndexE +_ZNSt8ios_base7_AddstdEPS_ +_ZNSt8ios_base7copyfmtERKS_ +_ZNSt8ios_base7failureC1EPKcRKSt10error_code +_ZNSt8ios_base7failureC1ERKS0_ +_ZNSt8ios_base7failureD0Ev +_ZNSt8ios_base7failureD1Ev +_ZNSt8ios_base7failureD2Ev +_ZNSt8ios_baseD0Ev +_ZNSt8ios_baseD1Ev +_ZNSt8ios_baseD2Ev +_ZNSt8messagesIcE2idE +_ZNSt8messagesIcE5_InitERKSt8_Locinfo +_ZNSt8messagesIcE7_GetcatEPPKNSt6locale5facetEPKS1_ +_ZNSt8messagesIcEC1EPKcm +_ZNSt8messagesIcEC1ERKSt8_Locinfom +_ZNSt8messagesIcEC1Em +_ZNSt8messagesIcEC2EPKcm +_ZNSt8messagesIcEC2ERKSt8_Locinfom +_ZNSt8messagesIcEC2Em +_ZNSt8messagesIcED0Ev +_ZNSt8messagesIcED1Ev +_ZNSt8messagesIcED2Ev +_ZNSt8messagesIwE2idE +_ZNSt8messagesIwE5_InitERKSt8_Locinfo +_ZNSt8messagesIwE7_GetcatEPPKNSt6locale5facetEPKS1_ +_ZNSt8messagesIwEC1EPKcm +_ZNSt8messagesIwEC1ERKSt8_Locinfom +_ZNSt8messagesIwEC1Em +_ZNSt8messagesIwEC2EPKcm +_ZNSt8messagesIwEC2ERKSt8_Locinfom +_ZNSt8messagesIwEC2Em +_ZNSt8messagesIwED0Ev +_ZNSt8messagesIwED1Ev +_ZNSt8messagesIwED2Ev +_ZNSt8numpunctIcE2idE +_ZNSt8numpunctIcE5_InitERKSt8_Locinfob +_ZNSt8numpunctIcE5_TidyEv +_ZNSt8numpunctIcE7_GetcatEPPKNSt6locale5facetEPKS1_ +_ZNSt8numpunctIcEC1EPKcmb +_ZNSt8numpunctIcEC1ERKSt8_Locinfomb +_ZNSt8numpunctIcEC1Em +_ZNSt8numpunctIcEC2EPKcmb +_ZNSt8numpunctIcEC2ERKSt8_Locinfomb +_ZNSt8numpunctIcEC2Em +_ZNSt8numpunctIcED0Ev +_ZNSt8numpunctIcED1Ev +_ZNSt8numpunctIcED2Ev +_ZNSt8numpunctIwE2idE +_ZNSt8numpunctIwE5_InitERKSt8_Locinfob +_ZNSt8numpunctIwE5_TidyEv +_ZNSt8numpunctIwE7_GetcatEPPKNSt6locale5facetEPKS1_ +_ZNSt8numpunctIwEC1EPKcmb +_ZNSt8numpunctIwEC1ERKSt8_Locinfomb +_ZNSt8numpunctIwEC1Em +_ZNSt8numpunctIwEC2EPKcmb +_ZNSt8numpunctIwEC2ERKSt8_Locinfomb +_ZNSt8numpunctIwEC2Em +_ZNSt8numpunctIwED0Ev +_ZNSt8numpunctIwED1Ev +_ZNSt8numpunctIwED2Ev +_ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE +_ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE5_InitERKSt8_Locinfo +_ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE5_TidyEv +_ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE7_GetcatEPPKNSt6locale5facetEPKS5_ +_ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8_GetvalsIcEEvT_RKSt8_Locinfo +_ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1EPKcm +_ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1ERKSt8_Locinfom +_ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1Em +_ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2EPKcm +_ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2ERKSt8_Locinfom +_ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2Em +_ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED0Ev +_ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED1Ev +_ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED2Ev +_ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE +_ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE5_InitERKSt8_Locinfo +_ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE5_TidyEv +_ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE7_GetcatEPPKNSt6locale5facetEPKS5_ +_ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1EPKcm +_ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1ERKSt8_Locinfom +_ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1Em +_ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2EPKcm +_ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2ERKSt8_Locinfom +_ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2Em +_ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED0Ev +_ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED1Ev +_ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED2Ev +_ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE +_ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE5_InitERKSt8_Locinfo +_ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE7_GetcatEPPKNSt6locale5facetEPKS5_ +_ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1ERKSt8_Locinfom +_ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1Em +_ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2ERKSt8_Locinfom +_ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2Em +_ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED0Ev +_ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED1Ev +_ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED2Ev +_ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE +_ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE5_InitERKSt8_Locinfo +_ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE7_GetcatEPPKNSt6locale5facetEPKS5_ +_ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1ERKSt8_Locinfom +_ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1Em +_ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2ERKSt8_Locinfom +_ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2Em +_ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED0Ev +_ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED1Ev +_ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED2Ev +_ZNSt9_Auto_cndD1Ev +_ZNSt9_FacetptrISt10moneypunctIcLb0EEE6_PsaveE +_ZNSt9_FacetptrISt10moneypunctIcLb1EEE6_PsaveE +_ZNSt9_FacetptrISt10moneypunctIwLb0EEE6_PsaveE +_ZNSt9_FacetptrISt10moneypunctIwLb1EEE6_PsaveE +_ZNSt9_FacetptrISt5ctypeIcEE6_PsaveE +_ZNSt9_FacetptrISt5ctypeIwEE6_PsaveE +_ZNSt9_FacetptrISt7codecvtIDic9_MbstatetEE6_PsaveE +_ZNSt9_FacetptrISt7codecvtIDsc9_MbstatetEE6_PsaveE +_ZNSt9_FacetptrISt7codecvtIcc9_MbstatetEE6_PsaveE +_ZNSt9_FacetptrISt7codecvtIwc9_MbstatetEE6_PsaveE +_ZNSt9_FacetptrISt7collateIcEE6_PsaveE +_ZNSt9_FacetptrISt7collateIwEE6_PsaveE +_ZNSt9_FacetptrISt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEE6_PsaveE +_ZNSt9_FacetptrISt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEE6_PsaveE +_ZNSt9_FacetptrISt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEE6_PsaveE +_ZNSt9_FacetptrISt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEE6_PsaveE +_ZNSt9_FacetptrISt8messagesIcEE6_PsaveE +_ZNSt9_FacetptrISt8messagesIwEE6_PsaveE +_ZNSt9_FacetptrISt8numpunctIcEE6_PsaveE +_ZNSt9_FacetptrISt8numpunctIwEE6_PsaveE +_ZNSt9_FacetptrISt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEE6_PsaveE +_ZNSt9_FacetptrISt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEE6_PsaveE +_ZNSt9_FacetptrISt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEE6_PsaveE +_ZNSt9_FacetptrISt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEE6_PsaveE +_ZNSt9_FacetptrISt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEE6_PsaveE +_ZNSt9_FacetptrISt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEE6_PsaveE +_ZNSt9_FacetptrISt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEE6_PsaveE +_ZNSt9_FacetptrISt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEE6_PsaveE +_ZNSt9_Num_base10has_denormE +_ZNSt9_Num_base10is_boundedE +_ZNSt9_Num_base10is_integerE +_ZNSt9_Num_base11round_styleE +_ZNSt9_Num_base12has_infinityE +_ZNSt9_Num_base12max_digits10E +_ZNSt9_Num_base12max_exponentE +_ZNSt9_Num_base12min_exponentE +_ZNSt9_Num_base13has_quiet_NaNE +_ZNSt9_Num_base14is_specializedE +_ZNSt9_Num_base14max_exponent10E +_ZNSt9_Num_base14min_exponent10E +_ZNSt9_Num_base15has_denorm_lossE +_ZNSt9_Num_base15tinyness_beforeE +_ZNSt9_Num_base17has_signaling_NaNE +_ZNSt9_Num_base5radixE +_ZNSt9_Num_base5trapsE +_ZNSt9_Num_base6digitsE +_ZNSt9_Num_base8digits10E +_ZNSt9_Num_base8is_exactE +_ZNSt9_Num_base9is_iec559E +_ZNSt9_Num_base9is_moduloE +_ZNSt9_Num_base9is_signedE +_ZNSt9bad_allocD0Ev +_ZNSt9bad_allocD1Ev +_ZNSt9bad_allocD2Ev +_ZNSt9basic_iosIcSt11char_traitsIcEE3tieEPSo +_ZNSt9basic_iosIcSt11char_traitsIcEE4fillEc +_ZNSt9basic_iosIcSt11char_traitsIcEE4initEPSt15basic_streambufIcS1_Eb +_ZNSt9basic_iosIcSt11char_traitsIcEE4moveEOS2_ +_ZNSt9basic_iosIcSt11char_traitsIcEE4moveERS2_ +_ZNSt9basic_iosIcSt11char_traitsIcEE4swapERS2_ +_ZNSt9basic_iosIcSt11char_traitsIcEE5clearENSt5_IosbIiE8_IostateEb +_ZNSt9basic_iosIcSt11char_traitsIcEE5clearEj +_ZNSt9basic_iosIcSt11char_traitsIcEE5imbueERKSt6locale +_ZNSt9basic_iosIcSt11char_traitsIcEE5rdbufEPSt15basic_streambufIcS1_E +_ZNSt9basic_iosIcSt11char_traitsIcEE7copyfmtERKS2_ +_ZNSt9basic_iosIcSt11char_traitsIcEE8setstateENSt5_IosbIiE8_IostateEb +_ZNSt9basic_iosIcSt11char_traitsIcEE8setstateEj +_ZNSt9basic_iosIcSt11char_traitsIcEE9set_rdbufEPSt15basic_streambufIcS1_E +_ZNSt9basic_iosIcSt11char_traitsIcEEC1EPSt15basic_streambufIcS1_E +_ZNSt9basic_iosIcSt11char_traitsIcEEC1Ev +_ZNSt9basic_iosIcSt11char_traitsIcEEC2EPSt15basic_streambufIcS1_E +_ZNSt9basic_iosIcSt11char_traitsIcEEC2Ev +_ZNSt9basic_iosIcSt11char_traitsIcEED0Ev +_ZNSt9basic_iosIcSt11char_traitsIcEED1Ev +_ZNSt9basic_iosIcSt11char_traitsIcEED2Ev +_ZNSt9basic_iosIwSt11char_traitsIwEE3tieEPSt13basic_ostreamIwS1_E +_ZNSt9basic_iosIwSt11char_traitsIwEE4fillEw +_ZNSt9basic_iosIwSt11char_traitsIwEE4initEPSt15basic_streambufIwS1_Eb +_ZNSt9basic_iosIwSt11char_traitsIwEE4moveEOS2_ +_ZNSt9basic_iosIwSt11char_traitsIwEE4moveERS2_ +_ZNSt9basic_iosIwSt11char_traitsIwEE4swapERS2_ +_ZNSt9basic_iosIwSt11char_traitsIwEE5clearENSt5_IosbIiE8_IostateEb +_ZNSt9basic_iosIwSt11char_traitsIwEE5clearEj +_ZNSt9basic_iosIwSt11char_traitsIwEE5imbueERKSt6locale +_ZNSt9basic_iosIwSt11char_traitsIwEE5rdbufEPSt15basic_streambufIwS1_E +_ZNSt9basic_iosIwSt11char_traitsIwEE7copyfmtERKS2_ +_ZNSt9basic_iosIwSt11char_traitsIwEE8setstateENSt5_IosbIiE8_IostateEb +_ZNSt9basic_iosIwSt11char_traitsIwEE8setstateEj +_ZNSt9basic_iosIwSt11char_traitsIwEE9set_rdbufEPSt15basic_streambufIwS1_E +_ZNSt9basic_iosIwSt11char_traitsIwEEC1EPSt15basic_streambufIwS1_E +_ZNSt9basic_iosIwSt11char_traitsIwEEC1Ev +_ZNSt9basic_iosIwSt11char_traitsIwEEC2EPSt15basic_streambufIwS1_E +_ZNSt9basic_iosIwSt11char_traitsIwEEC2Ev +_ZNSt9basic_iosIwSt11char_traitsIwEED0Ev +_ZNSt9basic_iosIwSt11char_traitsIwEED1Ev +_ZNSt9basic_iosIwSt11char_traitsIwEED2Ev +_ZNSt9exception18_Set_raise_handlerEPFvRKS_E +_ZNSt9exceptionD0Ev +_ZNSt9exceptionD1Ev +_ZNSt9exceptionD2Ev +_ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE +_ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE5_InitERKSt8_Locinfo +_ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE7_GetcatEPPKNSt6locale5facetEPKS5_ +_ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1ERKSt8_Locinfom +_ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1Em +_ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2ERKSt8_Locinfom +_ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2Em +_ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED0Ev +_ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED1Ev +_ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED2Ev +_ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE +_ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE5_InitERKSt8_Locinfo +_ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE7_GetcatEPPKNSt6locale5facetEPKS5_ +_ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1ERKSt8_Locinfom +_ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1Em +_ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2ERKSt8_Locinfom +_ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2Em +_ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED0Ev +_ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED1Ev +_ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED2Ev +_ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE +_ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE4_PutES3_St22_String_const_iteratorISt11_String_valISt13_Simple_typesIcEEEm +_ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE4_RepES3_cm +_ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE5_InitERKSt8_Locinfo +_ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE7_GetcatEPPKNSt6locale5facetEPKS5_ +_ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1ERKSt8_Locinfom +_ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1Em +_ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2ERKSt8_Locinfom +_ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2Em +_ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED0Ev +_ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED1Ev +_ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED2Ev +_ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE +_ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE4_PutES3_St22_String_const_iteratorISt11_String_valISt13_Simple_typesIwEEEm +_ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE4_RepES3_wm +_ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE5_InitERKSt8_Locinfo +_ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE7_GetcatEPPKNSt6locale5facetEPKS5_ +_ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1ERKSt8_Locinfom +_ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1Em +_ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2ERKSt8_Locinfom +_ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2Em +_ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED0Ev +_ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED1Ev +_ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED2Ev +_ZNSt9type_infoD0Ev +_ZNSt9type_infoD1Ev +_ZNSt9type_infoD2Ev +_ZSt10_GetloctxtIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEiRT0_S5_mPKT_ +_ZSt10_GetloctxtIcSt19istreambuf_iteratorIwSt11char_traitsIwEEEiRT0_S5_mPKT_ +_ZSt10_GetloctxtIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEiRT0_S5_mPKT_ +_ZSt10_MaklocstrIwEPT_PKcS1_RKSt7_Cvtvec +_ZSt10_Rng_abortPKc +_ZSt10_Wios_init +_ZSt10adopt_lock +_ZSt10defer_lock +_ZSt10unexpectedv +_ZSt11_Xbad_allocv +_ZSt11setiosflagsNSt5_IosbIiE9_FmtflagsE +_ZSt11try_to_lock +_ZSt12setprecisioni +_ZSt13_Cl_charnames +_ZSt13_Execute_onceRSt9once_flagPFiPvS1_PS1_ES1_ +_ZSt13_Syserror_mapi +_ZSt13_Xregex_errorNSt15regex_constants10error_typeE +_ZSt13get_terminatev +_ZSt13resetiosflagsNSt5_IosbIiE9_FmtflagsE +_ZSt13set_terminatePFvvE +_ZSt14_Atomic_assertPKcS0_ +_ZSt14_Cl_wcharnames +_ZSt14_Debug_messagePKcS0_j +_ZSt14_Raise_handler +_ZSt14_Random_devicev +_ZSt14_Throw_C_errori +_ZSt14_Xlength_errorPKc +_ZSt14_Xout_of_rangePKc +_ZSt14get_unexpectedv +_ZSt14set_unexpectedPFvvE +_ZSt15_Xruntime_errorPKc +_ZSt15_sceLibcLocinfoPKc +_ZSt15future_categoryv +_ZSt15get_new_handlerv +_ZSt15set_new_handlerPFvvE +_ZSt15system_categoryv +_ZSt16_Throw_Cpp_errori +_ZSt16_Xoverflow_errorPKc +_ZSt16generic_categoryv +_ZSt17_Future_error_mapi +_ZSt17iostream_categoryv +_ZSt17rethrow_exceptionSt13exception_ptr +_ZSt18_String_cpp_unused +_ZSt18_Xinvalid_argumentPKc +_ZSt18uncaught_exceptionv +_ZSt19_Throw_future_errorRKSt10error_code +_ZSt19_Xbad_function_callv +_ZSt21_sceLibcClassicLocale +_ZSt22_Get_future_error_whati +_ZSt22_Random_device_entropyv +_ZSt25_Rethrow_future_exceptionPv +_ZSt25_Rethrow_future_exceptionSt13exception_ptr +_ZSt3cin +_ZSt4_Fpz +_ZSt4cerr +_ZSt4clog +_ZSt4cout +_ZSt4setwi +_ZSt4wcin +_ZSt5wcerr +_ZSt5wclog +_ZSt5wcout +_ZSt6_ThrowRKSt9exception +_ZSt6ignore +_ZSt7_BADOFF +_ZSt7_FiopenPKcNSt5_IosbIiE9_OpenmodeEi +_ZSt7_FiopenPKwNSt5_IosbIiE9_OpenmodeEi +_ZSt7_MP_AddPyy +_ZSt7_MP_GetPy +_ZSt7_MP_MulPyyy +_ZSt7_MP_RemPyy +_ZSt7nothrow +_ZSt7setbasei +_ZSt8_XLgammad +_ZSt8_XLgammae +_ZSt8_XLgammaf +_ZSt9_Ios_init +_ZSt9_LStrcollIcEiPKT_S2_S2_S2_PKSt8_Collvec +_ZSt9_LStrcollIwEiPKT_S2_S2_S2_PKSt8_Collvec +_ZSt9_LStrxfrmIcEmPT_S1_PKS0_S3_PKSt8_Collvec +_ZSt9_LStrxfrmIwEmPT_S1_PKS0_S3_PKSt8_Collvec +_ZSt9terminatev +_ZSt9use_facetISt10moneypunctIcLb0EEERKT_RKSt6locale +_ZSt9use_facetISt10moneypunctIcLb1EEERKT_RKSt6locale +_ZSt9use_facetISt10moneypunctIwLb0EEERKT_RKSt6locale +_ZSt9use_facetISt10moneypunctIwLb1EEERKT_RKSt6locale +_ZSt9use_facetISt5ctypeIcEERKT_RKSt6locale +_ZSt9use_facetISt5ctypeIwEERKT_RKSt6locale +_ZSt9use_facetISt7codecvtIDic9_MbstatetEERKT_RKSt6locale +_ZSt9use_facetISt7codecvtIDsc9_MbstatetEERKT_RKSt6locale +_ZSt9use_facetISt7codecvtIcc9_MbstatetEERKT_RKSt6locale +_ZSt9use_facetISt7codecvtIwc9_MbstatetEERKT_RKSt6locale +_ZSt9use_facetISt7collateIcEERKT_RKSt6locale +_ZSt9use_facetISt7collateIwEERKT_RKSt6locale +_ZSt9use_facetISt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale +_ZSt9use_facetISt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale +_ZSt9use_facetISt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale +_ZSt9use_facetISt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale +_ZSt9use_facetISt8messagesIcEERKT_RKSt6locale +_ZSt9use_facetISt8messagesIwEERKT_RKSt6locale +_ZSt9use_facetISt8numpunctIcEERKT_RKSt6locale +_ZSt9use_facetISt8numpunctIwEERKT_RKSt6locale +_ZSt9use_facetISt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale +_ZSt9use_facetISt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale +_ZSt9use_facetISt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale +_ZSt9use_facetISt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale +_ZSt9use_facetISt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale +_ZSt9use_facetISt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale +_ZSt9use_facetISt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale +_ZSt9use_facetISt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale +_ZStL10_Call_funcPv +_ZStL11_Sys_errtab +_ZStL14classic_locale +_ZStL3fin +_ZStL4ferr +_ZStL4fout +_ZStL4wfin +_ZStL5rsfunRSt8ios_baseNSt5_IosbIiE9_FmtflagsE +_ZStL5sbfunRSt8ios_basei +_ZStL5sifunRSt8ios_baseNSt5_IosbIiE9_FmtflagsE +_ZStL5spfunRSt8ios_basei +_ZStL5swfunRSt8ios_basei +_ZStL5wferr +_ZStL5wfout +_ZStL6stdstr +_ZStL8s_pfacet +_ZStL8stdopens +_ZStL9_Fac_head +_ZStL9_New_hand +_ZTC13MsvMetaEditor0_12Mp4Retriever +_ZTIDh +_ZTIDi +_ZTIDn +_ZTIDs +_ZTIN10__cxxabiv116__enum_type_infoE +_ZTIN10__cxxabiv117__array_type_infoE +_ZTIN10__cxxabiv117__class_type_infoE +_ZTIN10__cxxabiv117__pbase_type_infoE +_ZTIN10__cxxabiv119__pointer_type_infoE +_ZTIN10__cxxabiv120__function_type_infoE +_ZTIN10__cxxabiv120__si_class_type_infoE +_ZTIN10__cxxabiv121__vmi_class_type_infoE +_ZTIN10__cxxabiv123__fundamental_type_infoE +_ZTIN10__cxxabiv129__pointer_to_member_type_infoE +_ZTIN6Dinkum7threads10lock_errorE +_ZTIN6Dinkum7threads21thread_resource_errorE +_ZTINSt6locale5facetE +_ZTINSt6locale7_LocimpE +_ZTINSt8ios_base7failureE +_ZTIPDh +_ZTIPDi +_ZTIPDn +_ZTIPDs +_ZTIPKDh +_ZTIPKDi +_ZTIPKDn +_ZTIPKDs +_ZTIPKa +_ZTIPKb +_ZTIPKc +_ZTIPKd +_ZTIPKe +_ZTIPKf +_ZTIPKg +_ZTIPKh +_ZTIPKi +_ZTIPKj +_ZTIPKl +_ZTIPKm +_ZTIPKn +_ZTIPKo +_ZTIPKs +_ZTIPKt +_ZTIPKv +_ZTIPKw +_ZTIPKx +_ZTIPKy +_ZTIPa +_ZTIPb +_ZTIPc +_ZTIPd +_ZTIPe +_ZTIPf +_ZTIPg +_ZTIPh +_ZTIPi +_ZTIPj +_ZTIPl +_ZTIPm +_ZTIPn +_ZTIPo +_ZTIPs +_ZTIPt +_ZTIPv +_ZTIPw +_ZTIPx +_ZTIPy +_ZTISi +_ZTISo +_ZTISt10bad_typeid +_ZTISt10ctype_base +_ZTISt10money_base +_ZTISt10moneypunctIcLb0EE +_ZTISt10moneypunctIcLb1EE +_ZTISt10moneypunctIwLb0EE +_ZTISt10moneypunctIwLb1EE +_ZTISt11_Facet_base +_ZTISt11logic_error +_ZTISt11range_error +_ZTISt11regex_error +_ZTISt12bad_weak_ptr +_ZTISt12codecvt_base +_ZTISt12domain_error +_ZTISt12future_error +_ZTISt12length_error +_ZTISt12out_of_range +_ZTISt12system_error +_ZTISt13bad_exception +_ZTISt13basic_filebufIcSt11char_traitsIcEE +_ZTISt13basic_filebufIwSt11char_traitsIwEE +_ZTISt13basic_istreamIwSt11char_traitsIwEE +_ZTISt13basic_ostreamIwSt11char_traitsIwEE +_ZTISt13messages_base +_ZTISt13runtime_error +_ZTISt14error_category +_ZTISt14overflow_error +_ZTISt15basic_streambufIcSt11char_traitsIcEE +_ZTISt15basic_streambufIwSt11char_traitsIwEE +_ZTISt15underflow_error +_ZTISt16invalid_argument +_ZTISt16nested_exception +_ZTISt17bad_function_call +_ZTISt18bad_variant_access +_ZTISt20bad_array_new_length +_ZTISt22_Future_error_category +_ZTISt22_System_error_category +_ZTISt23_Generic_error_category +_ZTISt24_Iostream_error_category +_ZTISt4_Pad +_ZTISt5_IosbIiE +_ZTISt5ctypeIcE +_ZTISt5ctypeIwE +_ZTISt7_MpunctIcE +_ZTISt7_MpunctIwE +_ZTISt7codecvtIDic9_MbstatetE +_ZTISt7codecvtIDsc9_MbstatetE +_ZTISt7codecvtIcc9_MbstatetE +_ZTISt7codecvtIwc9_MbstatetE +_ZTISt7collateIcE +_ZTISt7collateIwE +_ZTISt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE +_ZTISt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE +_ZTISt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE +_ZTISt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE +_ZTISt8bad_cast +_ZTISt8ios_base +_ZTISt8messagesIcE +_ZTISt8messagesIwE +_ZTISt8numpunctIcE +_ZTISt8numpunctIwE +_ZTISt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE +_ZTISt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE +_ZTISt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE +_ZTISt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE +_ZTISt9bad_alloc +_ZTISt9basic_iosIcSt11char_traitsIcEE +_ZTISt9basic_iosIwSt11char_traitsIwEE +_ZTISt9exception +_ZTISt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE +_ZTISt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE +_ZTISt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE +_ZTISt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE +_ZTISt9time_base +_ZTISt9type_info +_ZTIa +_ZTIb +_ZTIc +_ZTId +_ZTIe +_ZTIf +_ZTIg +_ZTIh +_ZTIi +_ZTIj +_ZTIl +_ZTIm +_ZTIn +_ZTIo +_ZTIs +_ZTIt +_ZTIv +_ZTIw +_ZTIx +_ZTIy +_ZTSDh +_ZTSDi +_ZTSDn +_ZTSDs +_ZTSN10__cxxabiv116__enum_type_infoE +_ZTSN10__cxxabiv117__array_type_infoE +_ZTSN10__cxxabiv117__class_type_infoE +_ZTSN10__cxxabiv117__pbase_type_infoE +_ZTSN10__cxxabiv119__pointer_type_infoE +_ZTSN10__cxxabiv120__function_type_infoE +_ZTSN10__cxxabiv120__si_class_type_infoE +_ZTSN10__cxxabiv121__vmi_class_type_infoE +_ZTSN10__cxxabiv123__fundamental_type_infoE +_ZTSN10__cxxabiv129__pointer_to_member_type_infoE +_ZTSN6Dinkum7threads10lock_errorE +_ZTSN6Dinkum7threads21thread_resource_errorE +_ZTSNSt6locale5facetE +_ZTSNSt6locale7_LocimpE +_ZTSNSt8ios_base7failureE +_ZTSPDh +_ZTSPDi +_ZTSPDn +_ZTSPDs +_ZTSPKDh +_ZTSPKDi +_ZTSPKDn +_ZTSPKDs +_ZTSPKa +_ZTSPKb +_ZTSPKc +_ZTSPKd +_ZTSPKe +_ZTSPKf +_ZTSPKg +_ZTSPKh +_ZTSPKi +_ZTSPKj +_ZTSPKl +_ZTSPKm +_ZTSPKn +_ZTSPKo +_ZTSPKs +_ZTSPKt +_ZTSPKv +_ZTSPKw +_ZTSPKx +_ZTSPKy +_ZTSPa +_ZTSPb +_ZTSPc +_ZTSPd +_ZTSPe +_ZTSPf +_ZTSPg +_ZTSPh +_ZTSPi +_ZTSPj +_ZTSPl +_ZTSPm +_ZTSPn +_ZTSPo +_ZTSPs +_ZTSPt +_ZTSPv +_ZTSPw +_ZTSPx +_ZTSPy +_ZTSSi +_ZTSSo +_ZTSSt10bad_typeid +_ZTSSt10ctype_base +_ZTSSt10money_base +_ZTSSt10moneypunctIcLb0EE +_ZTSSt10moneypunctIcLb1EE +_ZTSSt10moneypunctIwLb0EE +_ZTSSt10moneypunctIwLb1EE +_ZTSSt11_Facet_base +_ZTSSt11logic_error +_ZTSSt11range_error +_ZTSSt11regex_error +_ZTSSt12bad_weak_ptr +_ZTSSt12codecvt_base +_ZTSSt12domain_error +_ZTSSt12future_error +_ZTSSt12length_error +_ZTSSt12out_of_range +_ZTSSt12system_error +_ZTSSt13bad_exception +_ZTSSt13basic_filebufIcSt11char_traitsIcEE +_ZTSSt13basic_filebufIwSt11char_traitsIwEE +_ZTSSt13basic_istreamIwSt11char_traitsIwEE +_ZTSSt13basic_ostreamIwSt11char_traitsIwEE +_ZTSSt13messages_base +_ZTSSt13runtime_error +_ZTSSt14error_category +_ZTSSt14overflow_error +_ZTSSt15basic_streambufIcSt11char_traitsIcEE +_ZTSSt15basic_streambufIwSt11char_traitsIwEE +_ZTSSt15underflow_error +_ZTSSt16invalid_argument +_ZTSSt16nested_exception +_ZTSSt17bad_function_call +_ZTSSt18bad_variant_access +_ZTSSt20bad_array_new_length +_ZTSSt22_Future_error_category +_ZTSSt22_System_error_category +_ZTSSt23_Generic_error_category +_ZTSSt24_Iostream_error_category +_ZTSSt4_Pad +_ZTSSt5_IosbIiE +_ZTSSt5ctypeIcE +_ZTSSt5ctypeIwE +_ZTSSt7_MpunctIcE +_ZTSSt7_MpunctIwE +_ZTSSt7codecvtIDic9_MbstatetE +_ZTSSt7codecvtIDsc9_MbstatetE +_ZTSSt7codecvtIcc9_MbstatetE +_ZTSSt7codecvtIwc9_MbstatetE +_ZTSSt7collateIcE +_ZTSSt7collateIwE +_ZTSSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE +_ZTSSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE +_ZTSSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE +_ZTSSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE +_ZTSSt8bad_cast +_ZTSSt8ios_base +_ZTSSt8messagesIcE +_ZTSSt8messagesIwE +_ZTSSt8numpunctIcE +_ZTSSt8numpunctIwE +_ZTSSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE +_ZTSSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE +_ZTSSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE +_ZTSSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE +_ZTSSt9bad_alloc +_ZTSSt9basic_iosIcSt11char_traitsIcEE +_ZTSSt9basic_iosIwSt11char_traitsIwEE +_ZTSSt9exception +_ZTSSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE +_ZTSSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE +_ZTSSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE +_ZTSSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE +_ZTSSt9time_base +_ZTSSt9type_info +_ZTSa +_ZTSb +_ZTSc +_ZTSd +_ZTSe +_ZTSf +_ZTSg +_ZTSh +_ZTSi +_ZTSj +_ZTSl +_ZTSm +_ZTSn +_ZTSo +_ZTSs +_ZTSt +_ZTSv +_ZTSw +_ZTSx +_ZTSy +_ZTT12Mp4Retriever +_ZTT13MsvMetaEditor +_ZTT25MmsFileUpdaterFsOperation +_ZTV10MsvUpdater +_ZTV12Mp4Retriever +_ZTV13MsvMetaEditor +_ZTV18MmsFileUpdaterBase +_ZTV22MmsMdCommonFsOperation +_ZTV25MmsFileUpdaterFsOperation +_ZTV9MmsMp4Box +_ZTVN10__cxxabiv116__enum_type_infoE +_ZTVN10__cxxabiv117__array_type_infoE +_ZTVN10__cxxabiv117__class_type_infoE +_ZTVN10__cxxabiv117__pbase_type_infoE +_ZTVN10__cxxabiv119__pointer_type_infoE +_ZTVN10__cxxabiv120__function_type_infoE +_ZTVN10__cxxabiv120__si_class_type_infoE +_ZTVN10__cxxabiv121__vmi_class_type_infoE +_ZTVN10__cxxabiv123__fundamental_type_infoE +_ZTVN10__cxxabiv129__pointer_to_member_type_infoE +_ZTVN12video_parser10cVideoPathE +_ZTVN12video_parser12cVpFileCacheE +_ZTVN12video_parser13cVideoMetaMP4E +_ZTVN12video_parser13cVideoMetaVWGE +_ZTVN12video_parser13cVideoPathMgvE +_ZTVN12video_parser13cVideoPathMsvE +_ZTVN12video_parser14cVideoOperatorE +_ZTVN12video_parser16cVideoContentMp4E +_ZTVN12video_parser17cVideoOperatorEtsE +_ZTVN12video_parser17cVideoOperatorM4vE +_ZTVN12video_parser17cVideoOperatorMnvE +_ZTVN12video_parser17cVideoOperatorMp4E +_ZTVN12video_parser17cVideoProfilerMp4E +_ZTVN15AbstractStorage11LocalFolderE +_ZTVN15AbstractStorage12LocalContentE +_ZTVN15AbstractStorage12LocalServiceE +_ZTVN15AbstractStorage12LocalStorageE +_ZTVN15AbstractStorage12SerializableE +_ZTVN15AbstractStorage13TwitterFolderE +_ZTVN15AbstractStorage13YoutubeFolderE +_ZTVN15AbstractStorage14FacebookFolderE +_ZTVN15AbstractStorage14MemfileContentE +_ZTVN15AbstractStorage14TwitterContentE +_ZTVN15AbstractStorage14TwitterServiceE +_ZTVN15AbstractStorage14TwitterStorageE +_ZTVN15AbstractStorage14YoutubeContentE +_ZTVN15AbstractStorage14YoutubeServiceE +_ZTVN15AbstractStorage14YoutubeStorageE +_ZTVN15AbstractStorage15FacebookContentE +_ZTVN15AbstractStorage15FacebookServiceE +_ZTVN15AbstractStorage15FacebookStorageE +_ZTVN15AbstractStorage17DailymotionFolderE +_ZTVN15AbstractStorage18DailymotionContentE +_ZTVN15AbstractStorage18DailymotionServiceE +_ZTVN15AbstractStorage18DailymotionStorageE +_ZTVN15AbstractStorage4ItemE +_ZTVN15AbstractStorage6FolderE +_ZTVN15AbstractStorage7ContentE +_ZTVN15AbstractStorage7ServiceE +_ZTVN15AbstractStorage7StorageE +_ZTVN23sceMetadataReaderWriter7StorageE +_ZTVN23sceMetadataReaderWriter8MetadataE +_ZTVN3IPC13DataReferenceE +_ZTVN3JSC11FuzzerAgentE +_ZTVN3JSC12HeapAnalyzerE +_ZTVN3JSC15WeakHandleOwnerE +_ZTVN3JSC17DeferredWorkTimerE +_ZTVN3JSC18GCActivityCallbackE +_ZTVN3JSC19HeapSnapshotBuilderE +_ZTVN3JSC20JSStringHeapCellTypeE +_ZTVN3JSC22EdenGCActivityCallbackE +_ZTVN3JSC22FullGCActivityCallbackE +_ZTVN3JSC32JSDestructibleObjectHeapCellTypeE +_ZTVN3JSC37JSSegmentedVariableObjectHeapCellTypeE +_ZTVN3JSC8Bindings10RootObjectE +_ZTVN3JSC8DebuggerE +_ZTVN3PAL13SleepDisablerE +_ZTVN3WTF15AutomaticThreadE +_ZTVN3WTF17StringPrintStreamE +_ZTVN3WTF22CrossThreadTaskHandlerE +_ZTVN3WTF8JSONImpl10ObjectBaseE +_ZTVN3WTF8JSONImpl5ValueE +_ZTVN3WTF8JSONImpl9ArrayBaseE +_ZTVN3sce16CommonDialogUtil6ClientE +_ZTVN3sce16CommonDialogUtil6ServerE +_ZTVN3sce2np10JsonNumberE +_ZTVN3sce2np10JsonObjectE +_ZTVN3sce2np10JsonStringE +_ZTVN3sce2np8JsonBoolE +_ZTVN3sce2np8JsonNullE +_ZTVN3sce2np8SelectorE +_ZTVN3sce2np9JsonArrayE +_ZTVN3sce2np9JsonValueE +_ZTVN3sce7Toolkit2NP19AllocImplementationE +_ZTVN4IPMI4impl10ClientImplE +_ZTVN4IPMI4impl10ServerImplE +_ZTVN4IPMI4impl11SessionImplE +_ZTVN4IPMI6ClientE +_ZTVN4IPMI6Server12EventHandlerE +_ZTVN4IPMI6ServerE +_ZTVN4IPMI7SessionE +_ZTVN6Dinkum7threads10lock_errorE +_ZTVN6Dinkum7threads21thread_resource_errorE +_ZTVN7Nicosia16SceneIntegration6ClientE +_ZTVN7WebCore10ISOFullBoxE +_ZTVN7WebCore11DisplayList10DrawGlyphsE +_ZTVN7WebCore11DisplayList10SetLineCapE +_ZTVN7WebCore11DisplayList10StrokePathE +_ZTVN7WebCore11DisplayList10StrokeRectE +_ZTVN7WebCore11DisplayList11ClearShadowE +_ZTVN7WebCore11DisplayList11DrawPatternE +_ZTVN7WebCore11DisplayList11DrawingItemE +_ZTVN7WebCore11DisplayList11FillEllipseE +_ZTVN7WebCore11DisplayList11SetLineDashE +_ZTVN7WebCore11DisplayList11SetLineJoinE +_ZTVN7WebCore11DisplayList12PutImageDataE +_ZTVN7WebCore11DisplayList13ClipOutToPathE +_ZTVN7WebCore11DisplayList13SetMiterLimitE +_ZTVN7WebCore11DisplayList14ConcatenateCTME +_ZTVN7WebCore11DisplayList14DrawTiledImageE +_ZTVN7WebCore11DisplayList15DrawNativeImageE +_ZTVN7WebCore11DisplayList15FillRoundedRectE +_ZTVN7WebCore11DisplayList16DrawLinesForTextE +_ZTVN7WebCore11DisplayList17DrawFocusRingPathE +_ZTVN7WebCore11DisplayList17FillRectWithColorE +_ZTVN7WebCore11DisplayList18DrawFocusRingRectsE +_ZTVN7WebCore11DisplayList18FillCompositedRectE +_ZTVN7WebCore11DisplayList20DrawTiledScaledImageE +_ZTVN7WebCore11DisplayList20EndTransparencyLayerE +_ZTVN7WebCore11DisplayList20FillRectWithGradientE +_ZTVN7WebCore11DisplayList22ApplyDeviceScaleFactorE +_ZTVN7WebCore11DisplayList22BeginTransparencyLayerE +_ZTVN7WebCore11DisplayList23FillRectWithRoundedHoleE +_ZTVN7WebCore11DisplayList25DrawDotsForDocumentMarkerE +_ZTVN7WebCore11DisplayList4ClipE +_ZTVN7WebCore11DisplayList4SaveE +_ZTVN7WebCore11DisplayList5ScaleE +_ZTVN7WebCore11DisplayList6RotateE +_ZTVN7WebCore11DisplayList6SetCTME +_ZTVN7WebCore11DisplayList7ClipOutE +_ZTVN7WebCore11DisplayList7RestoreE +_ZTVN7WebCore11DisplayList8DrawLineE +_ZTVN7WebCore11DisplayList8DrawPathE +_ZTVN7WebCore11DisplayList8DrawRectE +_ZTVN7WebCore11DisplayList8FillPathE +_ZTVN7WebCore11DisplayList8FillRectE +_ZTVN7WebCore11DisplayList8RecorderE +_ZTVN7WebCore11DisplayList8SetStateE +_ZTVN7WebCore11DisplayList9ClearRectE +_ZTVN7WebCore11DisplayList9DrawImageE +_ZTVN7WebCore11DisplayList9TranslateE +_ZTVN7WebCore11MediaPlayerE +_ZTVN7WebCore11MediaSampleE +_ZTVN7WebCore11PageOverlayE +_ZTVN7WebCore12BlobRegistryE +_ZTVN7WebCore12ChromeClientE +_ZTVN7WebCore12ISOWebVTTCueE +_ZTVN7WebCore13MIMETypeCacheE +_ZTVN7WebCore13MediaStrategyE +_ZTVN7WebCore14DocumentLoaderE +_ZTVN7WebCore14JSVoidCallbackE +_ZTVN7WebCore14LoaderStrategyE +_ZTVN7WebCore14ResourceHandleE +_ZTVN7WebCore14SocketProviderE +_ZTVN7WebCore14StaticNodeListE +_ZTVN7WebCore15ActiveDOMObjectE +_ZTVN7WebCore15XPathNSResolverE +_ZTVN7WebCore16BlobRegistryImplE +_ZTVN7WebCore16DOMGuardedObjectE +_ZTVN7WebCore16DatabaseProviderE +_ZTVN7WebCore16ISOSchemeTypeBoxE +_ZTVN7WebCore16JSStringCallbackE +_ZTVN7WebCore16TrackPrivateBaseE +_ZTVN7WebCore17FrameLoaderClientE +_ZTVN7WebCore17LibWebRTCProviderE +_ZTVN7WebCore17NowPlayingManagerE +_ZTVN7WebCore17PageConsoleClientE +_ZTVN7WebCore17TextureMapperTileE +_ZTVN7WebCore18PluginInfoProviderE +_ZTVN7WebCore18TextureMapperLayerE +_ZTVN7WebCore19BlurFilterOperationE +_ZTVN7WebCore19MediaResourceLoaderE +_ZTVN7WebCore20ISOOriginalFormatBoxE +_ZTVN7WebCore20ResourceHandleClientE +_ZTVN7WebCore20SVGPathStringBuilderE +_ZTVN7WebCore21BlobDataFileReferenceE +_ZTVN7WebCore21ISOTrackEncryptionBoxE +_ZTVN7WebCore21MediaRecorderProviderE +_ZTVN7WebCore22DefaultFilterOperationE +_ZTVN7WebCore22EmptyFrameLoaderClientE +_ZTVN7WebCore22SkewTransformOperationE +_ZTVN7WebCore23CoordinatedBackingStoreE +_ZTVN7WebCore23CoordinatedImageBackingE +_ZTVN7WebCore23ISOSchemeInformationBoxE +_ZTVN7WebCore23ScaleTransformOperationE +_ZTVN7WebCore24CoordinatedGraphicsLayerE +_ZTVN7WebCore24FrameDestructionObserverE +_ZTVN7WebCore24MatrixTransformOperationE +_ZTVN7WebCore24RotateTransformOperationE +_ZTVN7WebCore25DropShadowFilterOperationE +_ZTVN7WebCore26ActiveDOMCallbackMicrotaskE +_ZTVN7WebCore26ContextDestructionObserverE +_ZTVN7WebCore26ISOProtectionSchemeInfoBoxE +_ZTVN7WebCore26IdentityTransformOperationE +_ZTVN7WebCore26Matrix3DTransformOperationE +_ZTVN7WebCore27ContentSecurityPolicyClientE +_ZTVN7WebCore27TranslateTransformOperationE +_ZTVN7WebCore28BackingStoreBackendCairoImplE +_ZTVN7WebCore28InspectorFrontendClientLocal8SettingsE +_ZTVN7WebCore29PerspectiveTransformOperationE +_ZTVN7WebCore30InvertLightnessFilterOperationE +_ZTVN7WebCore31BasicColorMatrixFilterOperationE +_ZTVN7WebCore36ISOProtectionSystemSpecificHeaderBoxE +_ZTVN7WebCore37BasicComponentTransferFilterOperationE +_ZTVN7WebCore37CrossOriginAccessControlCheckDisablerE +_ZTVN7WebCore6ISOBoxE +_ZTVN7WebCore6Path2DE +_ZTVN7WebCore8DOMTimerE +_ZTVN7WebCore9CookieJarE +_ZTVN7WebCore9DOMWindowE +_ZTVN7WebCore9GLContextE +_ZTVN7bmalloc11IsoTLSEntryE +_ZTVN7bmalloc15IsoHeapImplBaseE +_ZTVN8meta_gen12JpegPromoterE +_ZTVN8meta_gen13JpegRetrieverE +_ZTVN8meta_gen13TiffRetrieverE +_ZTVN9Inspector14InjectedScriptE +_ZTVN9Inspector14InspectorAgentE +_ZTVN9Inspector15InspectorTargetE +_ZTVN9Inspector15RemoteInspector6ClientE +_ZTVN9Inspector15RemoteInspectorE +_ZTVN9Inspector17ScriptDebugServerE +_ZTVN9Inspector18InjectedScriptBaseE +_ZTVN9Inspector18InjectedScriptHostE +_ZTVN9Inspector18InspectorHeapAgentE +_ZTVN9Inspector19InspectorAuditAgentE +_ZTVN9Inspector20CSSBackendDispatcherE +_ZTVN9Inspector20DOMBackendDispatcherE +_ZTVN9Inspector20InjectedScriptModuleE +_ZTVN9Inspector20InspectorTargetAgentE +_ZTVN9Inspector21HeapBackendDispatcherE +_ZTVN9Inspector21InjectedScriptManagerE +_ZTVN9Inspector21InspectorConsoleAgentE +_ZTVN9Inspector21InspectorRuntimeAgentE +_ZTVN9Inspector21PageBackendDispatcherE +_ZTVN9Inspector22AuditBackendDispatcherE +_ZTVN9Inspector22InspectorDebuggerAgentE +_ZTVN9Inspector22RemoteAutomationTargetE +_ZTVN9Inspector22RemoteInspectionTargetE +_ZTVN9Inspector23CanvasBackendDispatcherE +_ZTVN9Inspector23TargetBackendDispatcherE +_ZTVN9Inspector23WorkerBackendDispatcherE +_ZTVN9Inspector24BrowserBackendDispatcherE +_ZTVN9Inspector24ConsoleBackendDispatcherE +_ZTVN9Inspector24NetworkBackendDispatcherE +_ZTVN9Inspector24RemoteControllableTargetE +_ZTVN9Inspector24RuntimeBackendDispatcherE +_ZTVN9Inspector25DatabaseBackendDispatcherE +_ZTVN9Inspector25DebuggerBackendDispatcherE +_ZTVN9Inspector25TimelineBackendDispatcherE +_ZTVN9Inspector26AnimationBackendDispatcherE +_ZTVN9Inspector26InspectorBackendDispatcherE +_ZTVN9Inspector26LayerTreeBackendDispatcherE +_ZTVN9Inspector27CSSBackendDispatcherHandlerE +_ZTVN9Inspector27DOMBackendDispatcherHandlerE +_ZTVN9Inspector27DOMStorageBackendDispatcherE +_ZTVN9Inspector28DOMDebuggerBackendDispatcherE +_ZTVN9Inspector28HeapBackendDispatcherHandlerE +_ZTVN9Inspector28InspectorScriptProfilerAgentE +_ZTVN9Inspector28PageBackendDispatcherHandlerE +_ZTVN9Inspector29AuditBackendDispatcherHandlerE +_ZTVN9Inspector29SupplementalBackendDispatcherE +_ZTVN9Inspector30CanvasBackendDispatcherHandlerE +_ZTVN9Inspector30TargetBackendDispatcherHandlerE +_ZTVN9Inspector30WorkerBackendDispatcherHandlerE +_ZTVN9Inspector31BrowserBackendDispatcherHandlerE +_ZTVN9Inspector31ConsoleBackendDispatcherHandlerE +_ZTVN9Inspector31NetworkBackendDispatcherHandlerE +_ZTVN9Inspector31RuntimeBackendDispatcherHandlerE +_ZTVN9Inspector31ScriptProfilerBackendDispatcherE +_ZTVN9Inspector32DatabaseBackendDispatcherHandlerE +_ZTVN9Inspector32DebuggerBackendDispatcherHandlerE +_ZTVN9Inspector32TimelineBackendDispatcherHandlerE +_ZTVN9Inspector33AnimationBackendDispatcherHandlerE +_ZTVN9Inspector33ApplicationCacheBackendDispatcherE +_ZTVN9Inspector33InspectorBackendDispatcherHandlerE +_ZTVN9Inspector33LayerTreeBackendDispatcherHandlerE +_ZTVN9Inspector34DOMStorageBackendDispatcherHandlerE +_ZTVN9Inspector35DOMDebuggerBackendDispatcherHandlerE +_ZTVN9Inspector38ScriptProfilerBackendDispatcherHandlerE +_ZTVN9Inspector40ApplicationCacheBackendDispatcherHandlerE +_ZTVNSt6locale7_LocimpE +_ZTVNSt8ios_base7failureE +_ZTVSi +_ZTVSo +_ZTVSt10bad_typeid +_ZTVSt10moneypunctIcLb0EE +_ZTVSt10moneypunctIcLb1EE +_ZTVSt10moneypunctIwLb0EE +_ZTVSt10moneypunctIwLb1EE +_ZTVSt11logic_error +_ZTVSt11range_error +_ZTVSt11regex_error +_ZTVSt12bad_weak_ptr +_ZTVSt12domain_error +_ZTVSt12future_error +_ZTVSt12length_error +_ZTVSt12out_of_range +_ZTVSt12system_error +_ZTVSt13bad_exception +_ZTVSt13basic_filebufIcSt11char_traitsIcEE +_ZTVSt13basic_filebufIwSt11char_traitsIwEE +_ZTVSt13basic_istreamIwSt11char_traitsIwEE +_ZTVSt13basic_ostreamIwSt11char_traitsIwEE +_ZTVSt13runtime_error +_ZTVSt14error_category +_ZTVSt14overflow_error +_ZTVSt15basic_streambufIcSt11char_traitsIcEE +_ZTVSt15basic_streambufIwSt11char_traitsIwEE +_ZTVSt15underflow_error +_ZTVSt16invalid_argument +_ZTVSt16nested_exception +_ZTVSt17bad_function_call +_ZTVSt18bad_variant_access +_ZTVSt20bad_array_new_length +_ZTVSt22_Future_error_category +_ZTVSt22_System_error_category +_ZTVSt23_Generic_error_category +_ZTVSt24_Iostream_error_category +_ZTVSt4_Pad +_ZTVSt5ctypeIcE +_ZTVSt5ctypeIwE +_ZTVSt7_MpunctIcE +_ZTVSt7_MpunctIwE +_ZTVSt7codecvtIDic9_MbstatetE +_ZTVSt7codecvtIDsc9_MbstatetE +_ZTVSt7codecvtIcc9_MbstatetE +_ZTVSt7codecvtIwc9_MbstatetE +_ZTVSt7collateIcE +_ZTVSt7collateIwE +_ZTVSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE +_ZTVSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE +_ZTVSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE +_ZTVSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE +_ZTVSt8bad_cast +_ZTVSt8ios_base +_ZTVSt8messagesIcE +_ZTVSt8messagesIwE +_ZTVSt8numpunctIcE +_ZTVSt8numpunctIwE +_ZTVSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE +_ZTVSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE +_ZTVSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE +_ZTVSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE +_ZTVSt9bad_alloc +_ZTVSt9basic_iosIcSt11char_traitsIcEE +_ZTVSt9basic_iosIwSt11char_traitsIwEE +_ZTVSt9exception +_ZTVSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE +_ZTVSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE +_ZTVSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE +_ZTVSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE +_ZTVSt9type_info +_ZThn112_N7WebCore18HTMLMarqueeElement4stopEv +_ZThn112_N7WebCore9DOMWindowD0Ev +_ZThn112_N7WebCore9DOMWindowD1Ev +_ZThn112_NK7WebCore16HTMLInputElement17validationMessageEv +_ZThn112_NK7WebCore22HTMLFormControlElement12willValidateEv +_ZThn120_N7WebCore16HTMLMediaElement12endScrubbingEv +_ZThn120_N7WebCore16HTMLMediaElement14beginScrubbingEv +_ZThn120_N7WebCore16HTMLMediaElement16returnToRealtimeEv +_ZThn120_N7WebCore16HTMLMediaElement4playEv +_ZThn120_N7WebCore16HTMLMediaElement5pauseEv +_ZThn120_N7WebCore16HTMLMediaElement8setMutedEb +_ZThn120_N7WebCore9DOMWindowD0Ev +_ZThn120_N7WebCore9DOMWindowD1Ev +_ZThn120_NK7WebCore16HTMLMediaElement11currentTimeEv +_ZThn120_NK7WebCore16HTMLMediaElement12isFullscreenEv +_ZThn120_NK7WebCore16HTMLMediaElement12playbackRateEv +_ZThn120_NK7WebCore16HTMLMediaElement5mutedEv +_ZThn120_NK7WebCore16HTMLMediaElement6pausedEv +_ZThn120_NK7WebCore16HTMLMediaElement6volumeEv +_ZThn120_NK7WebCore16HTMLMediaElement7canPlayEv +_ZThn120_NK7WebCore16HTMLMediaElement8durationEv +_ZThn136_N7WebCore16HTMLMediaElement12endScrubbingEv +_ZThn136_N7WebCore16HTMLMediaElement14beginScrubbingEv +_ZThn136_N7WebCore16HTMLMediaElement14setCurrentTimeEd +_ZThn136_N7WebCore16HTMLMediaElement15enterFullscreenEv +_ZThn136_N7WebCore16HTMLMediaElement16returnToRealtimeEv +_ZThn136_N7WebCore16HTMLMediaElement4playEv +_ZThn136_N7WebCore16HTMLMediaElement5pauseEv +_ZThn136_N7WebCore16HTMLMediaElement8setMutedEb +_ZThn136_N7WebCore16HTMLMediaElement9setVolumeEd +_ZThn136_N7WebCore9DOMWindowD0Ev +_ZThn136_N7WebCore9DOMWindowD1Ev +_ZThn136_NK7WebCore16HTMLMediaElement11currentTimeEv +_ZThn136_NK7WebCore16HTMLMediaElement12isFullscreenEv +_ZThn136_NK7WebCore16HTMLMediaElement12playbackRateEv +_ZThn136_NK7WebCore16HTMLMediaElement5mutedEv +_ZThn136_NK7WebCore16HTMLMediaElement6pausedEv +_ZThn136_NK7WebCore16HTMLMediaElement6volumeEv +_ZThn136_NK7WebCore16HTMLMediaElement7canPlayEv +_ZThn136_NK7WebCore16HTMLMediaElement8durationEv +_ZThn152_N7WebCore8Document17addConsoleMessageEN3JSC13MessageSourceENS1_12MessageLevelERKN3WTF6StringEm +_ZThn152_NK7WebCore8Document11completeURLERKN3WTF6StringE +_ZThn152_NK7WebCore8Document6originEv +_ZThn16_N26ScePssInputControllerOrbisD0Ev +_ZThn16_N26ScePssInputControllerOrbisD1Ev +_ZThn16_N3sce2np10MemoryFile5WriteEPNS0_6HandleEPKvmPm +_ZThn16_N3sce2np10MemoryFileD0Ev +_ZThn16_N3sce2np10MemoryFileD1Ev +_ZThn16_N3sce2np11NpHttpTransD0Ev +_ZThn16_N3sce2np11NpHttpTransD1Ev +_ZThn16_N3sce2np9HttpTrans5WriteEPNS0_6HandleEPKvmPm +_ZThn16_N3sce2np9HttpTransD0Ev +_ZThn16_N3sce2np9HttpTransD1Ev +_ZThn16_N3sce2np9LocalFile5WriteEPNS0_6HandleEPKvmPm +_ZThn16_N3sce2np9LocalFileD0Ev +_ZThn16_N3sce2np9LocalFileD1Ev +_ZThn16_N9Inspector14InspectorAgent11initializedERN3WTF6StringE +_ZThn16_N9Inspector14InspectorAgent6enableERN3WTF6StringE +_ZThn16_N9Inspector14InspectorAgent7disableERN3WTF6StringE +_ZThn16_N9Inspector14InspectorAgentD0Ev +_ZThn16_N9Inspector14InspectorAgentD1Ev +_ZThn16_N9Inspector18InspectorHeapAgent10getPreviewERN3WTF6StringEiRNS1_8OptionalIS2_EERNS1_6RefPtrINS_8Protocol8Debugger15FunctionDetailsENS1_13DumbPtrTraitsISA_EEEERNS7_INS8_7Runtime13ObjectPreviewENSB_ISG_EEEE +_ZThn16_N9Inspector18InspectorHeapAgent10getPreviewERN3WTF6StringEiRSt8optionalIS2_ERNS1_6RefPtrINS_8Protocol8Debugger15FunctionDetailsENS1_13DumbPtrTraitsISA_EEEERNS7_INS8_7Runtime13ObjectPreviewENSB_ISG_EEEE +_ZThn16_N9Inspector18InspectorHeapAgent12stopTrackingERN3WTF6StringE +_ZThn16_N9Inspector18InspectorHeapAgent13startTrackingERN3WTF6StringE +_ZThn16_N9Inspector18InspectorHeapAgent15getRemoteObjectERN3WTF6StringEiPKS2_RNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsIS9_EEEE +_ZThn16_N9Inspector18InspectorHeapAgent2gcERN3WTF6StringE +_ZThn16_N9Inspector18InspectorHeapAgent6enableERN3WTF6StringE +_ZThn16_N9Inspector18InspectorHeapAgent7disableERN3WTF6StringE +_ZThn16_N9Inspector18InspectorHeapAgent8snapshotERN3WTF6StringEPdPS2_ +_ZThn16_N9Inspector18InspectorHeapAgentD0Ev +_ZThn16_N9Inspector18InspectorHeapAgentD1Ev +_ZThn16_N9Inspector19InspectorAuditAgent3runERN3WTF6StringERKS2_PKiRNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISB_EEEERNS1_8OptionalIbEE +_ZThn16_N9Inspector19InspectorAuditAgent5setupERN3WTF6StringEPKi +_ZThn16_N9Inspector19InspectorAuditAgent8teardownERN3WTF6StringE +_ZThn16_N9Inspector19InspectorAuditAgentD0Ev +_ZThn16_N9Inspector19InspectorAuditAgentD1Ev +_ZThn16_N9Inspector20InspectorTargetAgent15setPauseOnStartERN3WTF6StringEb +_ZThn16_N9Inspector20InspectorTargetAgent19sendMessageToTargetERN3WTF6StringERKS2_S5_ +_ZThn16_N9Inspector20InspectorTargetAgent6resumeERN3WTF6StringERKS2_ +_ZThn16_N9Inspector20InspectorTargetAgentD0Ev +_ZThn16_N9Inspector20InspectorTargetAgentD1Ev +_ZThn16_N9Inspector21InspectorConsoleAgent13clearMessagesERN3WTF6StringE +_ZThn16_N9Inspector21InspectorConsoleAgent18getLoggingChannelsERN3WTF6StringERNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Console7ChannelEEENS1_13DumbPtrTraitsISA_EEEE +_ZThn16_N9Inspector21InspectorConsoleAgent22setLoggingChannelLevelERN3WTF6StringERKS2_S5_ +_ZThn16_N9Inspector21InspectorConsoleAgent6enableERN3WTF6StringE +_ZThn16_N9Inspector21InspectorConsoleAgent7disableERN3WTF6StringE +_ZThn16_N9Inspector21InspectorConsoleAgentD0Ev +_ZThn16_N9Inspector21InspectorConsoleAgentD1Ev +_ZThn16_N9Inspector21InspectorRuntimeAgent10getPreviewERN3WTF6StringERKS2_RNS1_6RefPtrINS_8Protocol7Runtime13ObjectPreviewENS1_13DumbPtrTraitsIS9_EEEE +_ZThn16_N9Inspector21InspectorRuntimeAgent10saveResultERN3WTF6StringERKNS1_8JSONImpl6ObjectEPKiRNS1_8OptionalIiEE +_ZThn16_N9Inspector21InspectorRuntimeAgent10saveResultERN3WTF6StringERKNS1_8JSONImpl6ObjectEPKiRSt8optionalIiE +_ZThn16_N9Inspector21InspectorRuntimeAgent12awaitPromiseERKN3WTF6StringEPKbS6_S6_ONS1_3RefINS_31RuntimeBackendDispatcherHandler20AwaitPromiseCallbackENS1_13DumbPtrTraitsIS9_EEEE +_ZThn16_N9Inspector21InspectorRuntimeAgent13getPropertiesERN3WTF6StringERKS2_PKbPKiS9_S7_RNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime18PropertyDescriptorEEENS1_13DumbPtrTraitsISG_EEEERNSA_INSC_INSE_26InternalPropertyDescriptorEEENSH_ISM_EEEE +_ZThn16_N9Inspector21InspectorRuntimeAgent13getPropertiesERN3WTF6StringERKS2_PKbS7_RNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime18PropertyDescriptorEEENS1_13DumbPtrTraitsISE_EEEERNS8_INSA_INSC_26InternalPropertyDescriptorEEENSF_ISK_EEEE +_ZThn16_N9Inspector21InspectorRuntimeAgent13releaseObjectERN3WTF6StringERKS2_ +_ZThn16_N9Inspector21InspectorRuntimeAgent14callFunctionOnERN3WTF6StringERKS2_S5_PKNS1_8JSONImpl5ArrayEPKbSB_SB_RNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISF_EEEERSt8optionalIbE +_ZThn16_N9Inspector21InspectorRuntimeAgent14callFunctionOnERN3WTF6StringERKS2_S5_PKNS1_8JSONImpl5ArrayEPKbSB_SB_SB_RNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISF_EEEERNS1_8OptionalIbEE +_ZThn16_N9Inspector21InspectorRuntimeAgent14getBasicBlocksERN3WTF6StringERKS2_RNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime10BasicBlockEEENS1_13DumbPtrTraitsISC_EEEE +_ZThn16_N9Inspector21InspectorRuntimeAgent18enableTypeProfilerERN3WTF6StringE +_ZThn16_N9Inspector21InspectorRuntimeAgent18releaseObjectGroupERN3WTF6StringERKS2_ +_ZThn16_N9Inspector21InspectorRuntimeAgent19disableTypeProfilerERN3WTF6StringE +_ZThn16_N9Inspector21InspectorRuntimeAgent19setSavedResultAliasERN3WTF6StringEPKS2_ +_ZThn16_N9Inspector21InspectorRuntimeAgent20getCollectionEntriesERN3WTF6StringERKS2_PS4_PKiS8_RNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime15CollectionEntryEEENS1_13DumbPtrTraitsISF_EEEE +_ZThn16_N9Inspector21InspectorRuntimeAgent24getDisplayablePropertiesERN3WTF6StringERKS2_PKbRNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime18PropertyDescriptorEEENS1_13DumbPtrTraitsISE_EEEERNS8_INSA_INSC_26InternalPropertyDescriptorEEENSF_ISK_EEEE +_ZThn16_N9Inspector21InspectorRuntimeAgent25enableControlFlowProfilerERN3WTF6StringE +_ZThn16_N9Inspector21InspectorRuntimeAgent26disableControlFlowProfilerERN3WTF6StringE +_ZThn16_N9Inspector21InspectorRuntimeAgent36getRuntimeTypesForVariablesAtOffsetsERN3WTF6StringERKNS1_8JSONImpl5ArrayERNS1_6RefPtrINS4_7ArrayOfINS_8Protocol7Runtime15TypeDescriptionEEENS1_13DumbPtrTraitsISD_EEEE +_ZThn16_N9Inspector21InspectorRuntimeAgent5parseERN3WTF6StringERKS2_PNS_8Protocol7Runtime15SyntaxErrorTypeERNS1_8OptionalIS2_EERNS1_6RefPtrINS7_10ErrorRangeENS1_13DumbPtrTraitsISE_EEEE +_ZThn16_N9Inspector21InspectorRuntimeAgent5parseERN3WTF6StringERKS2_PNS_8Protocol7Runtime15SyntaxErrorTypeERSt8optionalIS2_ERNS1_6RefPtrINS7_10ErrorRangeENS1_13DumbPtrTraitsISE_EEEE +_ZThn16_N9Inspector21InspectorRuntimeAgent6enableERN3WTF6StringE +_ZThn16_N9Inspector21InspectorRuntimeAgent7disableERN3WTF6StringE +_ZThn16_N9Inspector21InspectorRuntimeAgent8evaluateERN3WTF6StringERKS2_PS4_PKbS8_PKiS8_S8_S8_RNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISE_EEEERSt8optionalIbERSJ_IiE +_ZThn16_N9Inspector21InspectorRuntimeAgent8evaluateERN3WTF6StringERKS2_PS4_PKbS8_PKiS8_S8_S8_S8_RNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISE_EEEERNS1_8OptionalIbEERNSJ_IiEE +_ZThn16_N9Inspector21InspectorRuntimeAgentD0Ev +_ZThn16_N9Inspector21InspectorRuntimeAgentD1Ev +_ZThn16_N9Inspector22InspectorDebuggerAgent11didContinueEv +_ZThn16_N9Inspector22InspectorDebuggerAgent13setBreakpointERN3WTF6StringERKNS1_8JSONImpl6ObjectEPS6_PS2_RNS1_6RefPtrINS_8Protocol8Debugger8LocationENS1_13DumbPtrTraitsISD_EEEE +_ZThn16_N9Inspector22InspectorDebuggerAgent14didParseSourceEmRKNS_19ScriptDebugListener6ScriptE +_ZThn16_N9Inspector22InspectorDebuggerAgent15getScriptSourceERN3WTF6StringERKS2_PS2_ +_ZThn16_N9Inspector22InspectorDebuggerAgent15searchInContentERN3WTF6StringERKS2_S5_PKbS7_RNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol12GenericTypes11SearchMatchEEENS1_13DumbPtrTraitsISE_EEEE +_ZThn16_N9Inspector22InspectorDebuggerAgent16removeBreakpointERN3WTF6StringERKS2_ +_ZThn16_N9Inspector22InspectorDebuggerAgent18continueToLocationERN3WTF6StringERKNS1_8JSONImpl6ObjectE +_ZThn16_N9Inspector22InspectorDebuggerAgent18getFunctionDetailsERN3WTF6StringERKS2_RNS1_6RefPtrINS_8Protocol8Debugger15FunctionDetailsENS1_13DumbPtrTraitsIS9_EEEE +_ZThn16_N9Inspector22InspectorDebuggerAgent18setBreakpointByUrlERN3WTF6StringEiPKS2_S5_PKiPKNS1_8JSONImpl6ObjectEPS2_RNS1_6RefPtrINS8_7ArrayOfINS_8Protocol8Debugger8LocationEEENS1_13DumbPtrTraitsISI_EEEE +_ZThn16_N9Inspector22InspectorDebuggerAgent19evaluateOnCallFrameERN3WTF6StringERKS2_S5_PS4_PKbS8_S8_S8_S8_S8_RNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISC_EEEERNS1_8OptionalIbEERNSH_IiEE +_ZThn16_N9Inspector22InspectorDebuggerAgent19failedToParseSourceERKN3WTF6StringES4_iiS4_ +_ZThn16_N9Inspector22InspectorDebuggerAgent20setBreakpointsActiveERN3WTF6StringEb +_ZThn16_N9Inspector22InspectorDebuggerAgent20setPauseOnAssertionsERN3WTF6StringEb +_ZThn16_N9Inspector22InspectorDebuggerAgent20setPauseOnExceptionsERN3WTF6StringERKS2_ +_ZThn16_N9Inspector22InspectorDebuggerAgent20setPauseOnMicrotasksERN3WTF6StringEb +_ZThn16_N9Inspector22InspectorDebuggerAgent20setShouldBlackboxURLERN3WTF6StringERKS2_bPKbS7_ +_ZThn16_N9Inspector22InspectorDebuggerAgent21breakpointActionProbeERN3JSC9ExecStateERKNS_22ScriptBreakpointActionEjjNS1_7JSValueE +_ZThn16_N9Inspector22InspectorDebuggerAgent21breakpointActionSoundEi +_ZThn16_N9Inspector22InspectorDebuggerAgent23setAsyncStackTraceDepthERN3WTF6StringEi +_ZThn16_N9Inspector22InspectorDebuggerAgent24continueUntilNextRunLoopERN3WTF6StringE +_ZThn16_N9Inspector22InspectorDebuggerAgent26setPauseForInternalScriptsERN3WTF6StringEb +_ZThn16_N9Inspector22InspectorDebuggerAgent28setPauseOnDebuggerStatementsERN3WTF6StringEb +_ZThn16_N9Inspector22InspectorDebuggerAgent5pauseERN3WTF6StringE +_ZThn16_N9Inspector22InspectorDebuggerAgent6enableERN3WTF6StringE +_ZThn16_N9Inspector22InspectorDebuggerAgent6resumeERN3WTF6StringE +_ZThn16_N9Inspector22InspectorDebuggerAgent7disableERN3WTF6StringE +_ZThn16_N9Inspector22InspectorDebuggerAgent7stepOutERN3WTF6StringE +_ZThn16_N9Inspector22InspectorDebuggerAgent8didPauseERN3JSC9ExecStateENS1_7JSValueES4_ +_ZThn16_N9Inspector22InspectorDebuggerAgent8stepIntoERN3WTF6StringE +_ZThn16_N9Inspector22InspectorDebuggerAgent8stepNextERN3WTF6StringE +_ZThn16_N9Inspector22InspectorDebuggerAgent8stepOverERN3WTF6StringE +_ZThn16_N9Inspector22InspectorDebuggerAgentD0Ev +_ZThn16_N9Inspector22InspectorDebuggerAgentD1Ev +_ZThn16_N9Inspector28InspectorScriptProfilerAgent12stopTrackingERN3WTF6StringE +_ZThn16_N9Inspector28InspectorScriptProfilerAgent13startTrackingERN3WTF6StringEPKb +_ZThn16_N9Inspector28InspectorScriptProfilerAgentD0Ev +_ZThn16_N9Inspector28InspectorScriptProfilerAgentD1Ev +_ZThn16_NK26ScePssInputControllerOrbis7GetTypeEv +_ZThn176_N7WebCore8Document17addConsoleMessageEN3JSC13MessageSourceENS1_12MessageLevelERKN3WTF6StringEm +_ZThn176_N7WebCore8Document17addConsoleMessageEOSt10unique_ptrIN9Inspector14ConsoleMessageESt14default_deleteIS3_EE +_ZThn176_N7WebCore8Document8postTaskEONS_22ScriptExecutionContext4TaskE +_ZThn176_NK7WebCore8Document11completeURLERKN3WTF6StringENS_22ScriptExecutionContext9ForceUTF8E +_ZThn176_NK7WebCore8Document42shouldBypassMainWorldContentSecurityPolicyEv +_ZThn24_N7WebCore14DocumentLoader17addConsoleMessageEN3JSC13MessageSourceENS1_12MessageLevelERKN3WTF6StringEm +_ZThn24_N7WebCore14DocumentLoader22sendCSPViolationReportEON3WTF3URLEONS1_3RefINS_8FormDataENS1_13DumbPtrTraitsIS5_EEEE +_ZThn24_N7WebCore14DocumentLoader22sendCSPViolationReportEONS_3URLEON3WTF3RefINS_8FormDataENS3_13DumbPtrTraitsIS5_EEEE +_ZThn24_N7WebCore14DocumentLoader35enqueueSecurityPolicyViolationEventEONS_28SecurityPolicyViolationEvent4InitE +_ZThn24_N7WebCore14DocumentLoaderD0Ev +_ZThn24_N7WebCore14DocumentLoaderD1Ev +_ZThn24_N7WebCore14XMLHttpRequestD0Ev +_ZThn24_N7WebCore14XMLHttpRequestD1Ev +_ZThn24_N7WebCore19MediaResourceLoaderD0Ev +_ZThn24_N7WebCore19MediaResourceLoaderD1Ev +_ZThn24_N9Inspector18InspectorHeapAgent17didGarbageCollectEN3JSC15CollectionScopeE +_ZThn24_N9Inspector18InspectorHeapAgent18willGarbageCollectEv +_ZThn24_N9Inspector18InspectorHeapAgentD0Ev +_ZThn24_N9Inspector18InspectorHeapAgentD1Ev +_ZThn24_N9Inspector22InspectorDebuggerAgent11didContinueEv +_ZThn24_N9Inspector22InspectorDebuggerAgent13setBreakpointERN3WTF6StringERKNS1_8JSONImpl6ObjectEPS6_PS2_RNS1_6RefPtrINS_8Protocol8Debugger8LocationENS1_13DumbPtrTraitsISD_EEEE +_ZThn24_N9Inspector22InspectorDebuggerAgent14didParseSourceEmRKNS_19ScriptDebugListener6ScriptE +_ZThn24_N9Inspector22InspectorDebuggerAgent15didRunMicrotaskEv +_ZThn24_N9Inspector22InspectorDebuggerAgent15getScriptSourceERN3WTF6StringERKS2_PS2_ +_ZThn24_N9Inspector22InspectorDebuggerAgent15searchInContentERN3WTF6StringERKS2_S5_PKbS7_RNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol12GenericTypes11SearchMatchEEENS1_13DumbPtrTraitsISE_EEEE +_ZThn24_N9Inspector22InspectorDebuggerAgent16removeBreakpointERN3WTF6StringERKS2_ +_ZThn24_N9Inspector22InspectorDebuggerAgent16willRunMicrotaskEv +_ZThn24_N9Inspector22InspectorDebuggerAgent17setOverlayMessageERN3WTF6StringEPKS2_ +_ZThn24_N9Inspector22InspectorDebuggerAgent18continueToLocationERN3WTF6StringERKNS1_8JSONImpl6ObjectE +_ZThn24_N9Inspector22InspectorDebuggerAgent18getFunctionDetailsERN3WTF6StringERKS2_RNS1_6RefPtrINS_8Protocol8Debugger15FunctionDetailsENS1_13DumbPtrTraitsIS9_EEEE +_ZThn24_N9Inspector22InspectorDebuggerAgent18setBreakpointByUrlERN3WTF6StringEiPKS2_S5_PKiPKNS1_8JSONImpl6ObjectEPS2_RNS1_6RefPtrINS8_7ArrayOfINS_8Protocol8Debugger8LocationEEENS1_13DumbPtrTraitsISI_EEEE +_ZThn24_N9Inspector22InspectorDebuggerAgent19evaluateOnCallFrameERN3WTF6StringERKS2_S5_PS4_PKbS8_S8_S8_S8_RNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISC_EEEERSt8optionalIbERSH_IiE +_ZThn24_N9Inspector22InspectorDebuggerAgent19failedToParseSourceERKN3WTF6StringES4_iiS4_ +_ZThn24_N9Inspector22InspectorDebuggerAgent20setBreakpointsActiveERN3WTF6StringEb +_ZThn24_N9Inspector22InspectorDebuggerAgent20setPauseOnAssertionsERN3WTF6StringEb +_ZThn24_N9Inspector22InspectorDebuggerAgent20setPauseOnExceptionsERN3WTF6StringERKS2_ +_ZThn24_N9Inspector22InspectorDebuggerAgent21breakpointActionProbeEPN3JSC14JSGlobalObjectERKNS_22ScriptBreakpointActionEjjNS1_7JSValueE +_ZThn24_N9Inspector22InspectorDebuggerAgent21breakpointActionSoundEi +_ZThn24_N9Inspector22InspectorDebuggerAgent23setAsyncStackTraceDepthERN3WTF6StringEi +_ZThn24_N9Inspector22InspectorDebuggerAgent24continueUntilNextRunLoopERN3WTF6StringE +_ZThn24_N9Inspector22InspectorDebuggerAgent26setPauseForInternalScriptsERN3WTF6StringEb +_ZThn24_N9Inspector22InspectorDebuggerAgent5pauseERN3WTF6StringE +_ZThn24_N9Inspector22InspectorDebuggerAgent6enableERN3WTF6StringE +_ZThn24_N9Inspector22InspectorDebuggerAgent6resumeERN3WTF6StringE +_ZThn24_N9Inspector22InspectorDebuggerAgent7disableERN3WTF6StringE +_ZThn24_N9Inspector22InspectorDebuggerAgent7stepOutERN3WTF6StringE +_ZThn24_N9Inspector22InspectorDebuggerAgent8didPauseEPN3JSC14JSGlobalObjectENS1_7JSValueES4_ +_ZThn24_N9Inspector22InspectorDebuggerAgent8stepIntoERN3WTF6StringE +_ZThn24_N9Inspector22InspectorDebuggerAgent8stepOverERN3WTF6StringE +_ZThn24_N9Inspector22InspectorDebuggerAgentD0Ev +_ZThn24_N9Inspector22InspectorDebuggerAgentD1Ev +_ZThn24_N9Inspector28InspectorScriptProfilerAgent17didEvaluateScriptEN3WTF7SecondsEN3JSC15ProfilingReasonE +_ZThn24_N9Inspector28InspectorScriptProfilerAgent18willEvaluateScriptEv +_ZThn24_N9Inspector28InspectorScriptProfilerAgentD0Ev +_ZThn24_N9Inspector28InspectorScriptProfilerAgentD1Ev +_ZThn24_NK9Inspector28InspectorScriptProfilerAgent18isAlreadyProfilingEv +_ZThn32_N7WebCore14DocumentLoader12dataReceivedERNS_14CachedResourceEPKci +_ZThn32_N7WebCore14DocumentLoader14notifyFinishedERNS_14CachedResourceE +_ZThn32_N7WebCore14DocumentLoader14notifyFinishedERNS_14CachedResourceERKNS_18NetworkLoadMetricsE +_ZThn32_N7WebCore14DocumentLoader16redirectReceivedERNS_14CachedResourceEONS_15ResourceRequestERKNS_16ResourceResponseEON3WTF17CompletionHandlerIFvS4_EEE +_ZThn32_N7WebCore14DocumentLoader16responseReceivedERNS_14CachedResourceERKNS_16ResourceResponseEON3WTF17CompletionHandlerIFvvEEE +_ZThn32_N7WebCore14DocumentLoaderD0Ev +_ZThn32_N7WebCore14DocumentLoaderD1Ev +_ZThn32_N7WebCore14XMLHttpRequestD0Ev +_ZThn32_N7WebCore14XMLHttpRequestD1Ev +_ZThn40_N7WebCore8DOMTimerD0Ev +_ZThn40_N7WebCore8DOMTimerD1Ev +_ZThn64_N7WebCore10ScrollView15setScrollOffsetERKNS_8IntPointE +_ZThn64_N7WebCore9FrameView17willEndLiveResizeEv +_ZThn64_N7WebCore9FrameView19willStartLiveResizeEv +_ZThn64_N7WebCore9FrameView27availableContentSizeChangedENS_14ScrollableArea25AvailableSizeChangeReasonE +_ZThn64_NK7WebCore10ScrollView12contentsSizeEv +_ZThn64_NK7WebCore9FrameView12footerHeightEv +_ZThn64_NK7WebCore9FrameView12headerHeightEv +_ZThn64_NK7WebCore9FrameView12tiledBackingEv +_ZThn64_NK7WebCore9FrameView17useDarkAppearanceEv +_ZThn64_NK7WebCore9FrameView21maximumScrollPositionEv +_ZThn64_NK7WebCore9FrameView21minimumScrollPositionEv +_ZThn664_N7WebCore24CoordinatedGraphicsLayer10createTileEjf +_ZThn664_N7WebCore24CoordinatedGraphicsLayer10removeTileEj +_ZThn664_N7WebCore24CoordinatedGraphicsLayer10updateTileEjRKNS_17SurfaceUpdateInfoERKNS_7IntRectE +_ZThn664_N7WebCore24CoordinatedGraphicsLayer39tiledBackingStoreHasPendingTileCreationEv +_ZThn664_N7WebCore24CoordinatedGraphicsLayerD0Ev +_ZThn664_N7WebCore24CoordinatedGraphicsLayerD1Ev +_ZThn672_N7WebCore24CoordinatedGraphicsLayer19imageBackingVisibleEv +_ZThn88_N7WebCore14XMLHttpRequestD0Ev +_ZThn88_N7WebCore14XMLHttpRequestD1Ev +_ZThn8_N3sce2np10MemoryFile4ReadEPNS0_6HandleEPvmPm +_ZThn8_N3sce2np10MemoryFileD0Ev +_ZThn8_N3sce2np10MemoryFileD1Ev +_ZThn8_N3sce2np11NpHttpTransD0Ev +_ZThn8_N3sce2np11NpHttpTransD1Ev +_ZThn8_N3sce2np13JsonDocParser10onEndArrayEjj +_ZThn8_N3sce2np13JsonDocParser11onEndObjectEjj +_ZThn8_N3sce2np13JsonDocParser12onArrayValueEjjiNS0_10JsonParser9ValueTypeEPKc +_ZThn8_N3sce2np13JsonDocParser12onObjectNameEjjPKc +_ZThn8_N3sce2np13JsonDocParser12onStartArrayEjj +_ZThn8_N3sce2np13JsonDocParser13onObjectValueEjjPKcNS0_10JsonParser9ValueTypeES3_ +_ZThn8_N3sce2np13JsonDocParser13onStartObjectEjj +_ZThn8_N3sce2np6Handle10CancelImplEi +_ZThn8_N3sce2np6HandleD0Ev +_ZThn8_N3sce2np6HandleD1Ev +_ZThn8_N3sce2np9HttpTrans4ReadEPNS0_6HandleEPvmPm +_ZThn8_N3sce2np9HttpTrans5WriteEPNS0_6HandleEPKvmPm +_ZThn8_N3sce2np9HttpTransD0Ev +_ZThn8_N3sce2np9HttpTransD1Ev +_ZThn8_N3sce2np9LocalFile4ReadEPNS0_6HandleEPvmPm +_ZThn8_N3sce2np9LocalFileD0Ev +_ZThn8_N3sce2np9LocalFileD1Ev +_ZThn8_N6WebKit12ChildProcess23messageSenderConnectionEv +_ZThn8_N6WebKit12ChildProcess26messageSenderDestinationIDEv +_ZThn8_N6WebKit12ChildProcessD0Ev +_ZThn8_N6WebKit12ChildProcessD1Ev +_ZThn8_N6WebKit17ChildProcessProxyD0Ev +_ZThn8_N6WebKit17ChildProcessProxyD1Ev +_ZThn8_N7WebCore26ActiveDOMCallbackMicrotaskD0Ev +_ZThn8_N7WebCore26ActiveDOMCallbackMicrotaskD1Ev +_ZThn96_N7WebCore14XMLHttpRequestD0Ev +_ZThn96_N7WebCore14XMLHttpRequestD1Ev +_ZThn96_N7WebCore18HTMLMarqueeElement4stopEv +_ZThn96_NK7WebCore16HTMLInputElement17validationMessageEv +_ZThn96_NK7WebCore22HTMLFormControlElement12willValidateEv +_ZTv0_n24_N12Mp4RetrieverD0Ev +_ZTv0_n24_N12Mp4RetrieverD1Ev +_ZTv0_n24_N13MsvMetaEditorD0Ev +_ZTv0_n24_N13MsvMetaEditorD1Ev +_ZTv0_n24_N25MmsFileUpdaterFsOperationD0Ev +_ZTv0_n24_N25MmsFileUpdaterFsOperationD1Ev +_ZTv0_n24_NSiD0Ev +_ZTv0_n24_NSiD1Ev +_ZTv0_n24_NSoD0Ev +_ZTv0_n24_NSoD1Ev +_ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED0Ev +_ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED1Ev +_ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev +_ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev +_ZTv0_n32_N12Mp4Retriever8readFileEjPv +_ZTv0_n40_N12Mp4Retriever8seekFileElb +_ZTv0_n48_N13MsvMetaEditor8openFileEPKc +_ZTv0_n48_N25MmsFileUpdaterFsOperation8openFileEPKc +_ZZ16_SetgloballocaleE10registered +_ZZL14report_failure19_Unwind_Reason_CodePN10__cxxabiv115__cxa_exceptionEE4e_ti +_ZZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8_GetffldEPcRS3_S6_RSt8ios_basePiE4_Src +_ZZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8_GetifldEPcRS3_S6_NSt5_IosbIiE9_FmtflagsERKSt6localeE4_Src +_ZZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE9_GetffldxEPcRS3_S6_RSt8ios_basePiE4_Src +_ZZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8_GetffldEPcRS3_S6_RSt8ios_basePiE4_Src +_ZZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8_GetifldEPcRS3_S6_NSt5_IosbIiE9_FmtflagsERKSt6localeE4_Src +_ZZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE9_GetffldxEPcRS3_S6_RSt8ios_basePiE4_Src +_ZZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8_GetmfldERS3_S5_bRSt8ios_basePcE4_Src +_ZZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8_GetmfldERS3_S5_bRSt8ios_basePwE4_Src +_ZZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_bRSt8ios_basecRKSsE4_Src +_ZZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_bRSt8ios_basewRKSbIwS2_SaIwEEE4_Src +_ZZNSt13basic_filebufIcSt11char_traitsIcEE5_InitEP7__sFILENS2_7_InitflEE7_Stinit +_ZZNSt13basic_filebufIwSt11char_traitsIwEE5_InitEP7__sFILENS2_7_InitflEE7_Stinit +_ZZNSt6locale5_InitEvE14classic_locimp +_ZZSt7_FiopenPKcNSt5_IosbIiE9_OpenmodeEiE4mods +_ZZSt9MakefacetISt10moneypunctIcLb0EESt8_LocinfoERT_T0_E3buf +_ZZSt9MakefacetISt10moneypunctIcLb1EESt8_LocinfoERT_T0_E3buf +_ZZSt9MakefacetISt10moneypunctIwLb0EESt8_LocinfoERT_T0_E3buf +_ZZSt9MakefacetISt10moneypunctIwLb1EESt8_LocinfoERT_T0_E3buf +_ZZSt9MakefacetISt5ctypeIcESt8_LocinfoERT_T0_E3buf +_ZZSt9MakefacetISt5ctypeIwESt8_LocinfoERT_T0_E3buf +_ZZSt9MakefacetISt7codecvtIcc9_MbstatetESt8_LocinfoERT_T0_E3buf +_ZZSt9MakefacetISt7collateIcESt8_LocinfoERT_T0_E3buf +_ZZSt9MakefacetISt7collateIwESt8_LocinfoERT_T0_E3buf +_ZZSt9MakefacetISt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEESt8_LocinfoERT_T0_E3buf +_ZZSt9MakefacetISt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEESt8_LocinfoERT_T0_E3buf +_ZZSt9MakefacetISt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEESt8_LocinfoERT_T0_E3buf +_ZZSt9MakefacetISt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEESt8_LocinfoERT_T0_E3buf +_ZZSt9MakefacetISt8messagesIcESt8_LocinfoERT_T0_E3buf +_ZZSt9MakefacetISt8messagesIwESt8_LocinfoERT_T0_E3buf +_ZZSt9MakefacetISt8numpunctIcESt8_LocinfoERT_T0_E3buf +_ZZSt9MakefacetISt8numpunctIwESt8_LocinfoERT_T0_E3buf +_ZZSt9MakefacetISt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEESt8_LocinfoERT_T0_E3buf +_ZZSt9MakefacetISt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEESt8_LocinfoERT_T0_E3buf +_ZZSt9MakefacetISt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEESt8_LocinfoERT_T0_E3buf +_ZZSt9MakefacetISt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEESt8_LocinfoERT_T0_E3buf +_ZZSt9MakefacetISt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEESt8_LocinfoERT_T0_E3buf +_ZZSt9MakefacetISt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEESt8_LocinfoERT_T0_E3buf +_ZZSt9MakefacetISt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEESt8_LocinfoERT_T0_E3buf +_ZZSt9MakefacetISt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEESt8_LocinfoERT_T0_E3buf +_ZdaPv +_ZdaPvRKSt9nothrow_t +_ZdaPvS_ +_ZdaPvSt11align_val_t +_ZdaPvSt11align_val_tRKSt9nothrow_t +_ZdaPvm +_ZdaPvmRKSt9nothrow_t +_ZdaPvmSt11align_val_t +_ZdlPv +_ZdlPvRKSt9nothrow_t +_ZdlPvS_ +_ZdlPvSt11align_val_t +_ZdlPvSt11align_val_tRKSt9nothrow_t +_ZdlPvm +_ZdlPvmRKSt9nothrow_t +_ZdlPvmSt11align_val_t +_Zero +_Znam +_ZnamRKSt9nothrow_t +_ZnamSt11align_val_t +_ZnamSt11align_val_tRKSt9nothrow_t +_Znwm +_ZnwmRKSt9nothrow_t +_ZnwmSt11align_val_t +_ZnwmSt11align_val_tRKSt9nothrow_t +__CTOR_END__ +__CTOR_LIST__ +__DTOR_END__ +__DTOR_LIST__ +__FRAME_END__ +__Fail_s +__ULtod_D2A +__Ux86_64_setcontext +___longjmp +__absvdi2 +__absvsi2 +__absvti2 +__adddf3 +__addsf3 +__addvdi3 +__addvsi3 +__addvti3 +__any_on_D2A +__asan_addr_is_in_fake_stack +__asan_address_is_poisoned +__asan_after_dynamic_init +__asan_alloca_poison +__asan_allocas_unpoison +__asan_before_dynamic_init +__asan_current_error_report +__asan_current_error_report_size +__asan_default_options +__asan_describe_address +__asan_destroy_fake_stack +__asan_exp_load1 +__asan_exp_load16 +__asan_exp_load16_noabort +__asan_exp_load1_noabort +__asan_exp_load2 +__asan_exp_load2_noabort +__asan_exp_load4 +__asan_exp_load4_noabort +__asan_exp_load8 +__asan_exp_load8_noabort +__asan_exp_loadN +__asan_exp_loadN_noabort +__asan_exp_store1 +__asan_exp_store16 +__asan_exp_store16_noabort +__asan_exp_store1_noabort +__asan_exp_store2 +__asan_exp_store2_noabort +__asan_exp_store4 +__asan_exp_store4_noabort +__asan_exp_store8 +__asan_exp_store8_noabort +__asan_exp_storeN +__asan_exp_storeN_noabort +__asan_get_alloc_stack +__asan_get_current_fake_stack +__asan_get_free_stack +__asan_get_report_access_size +__asan_get_report_access_type +__asan_get_report_address +__asan_get_report_bp +__asan_get_report_description +__asan_get_report_pc +__asan_get_report_sp +__asan_get_shadow_mapping +__asan_handle_no_return +__asan_init +__asan_init_v5 +__asan_load1 +__asan_load16 +__asan_load16_noabort +__asan_load1_noabort +__asan_load2 +__asan_load2_noabort +__asan_load4 +__asan_load4_noabort +__asan_load8 +__asan_load8_noabort +__asan_loadN +__asan_loadN_noabort +__asan_load_cxx_array_cookie +__asan_locate_address +__asan_memcpy +__asan_memmove +__asan_memset +__asan_on_error +__asan_option_detect_stack_use_after_return +__asan_poison_cxx_array_cookie +__asan_poison_intra_object_redzone +__asan_poison_memory_region +__asan_poison_stack_memory +__asan_print_accumulated_stats +__asan_region_is_poisoned +__asan_register_elf_globals +__asan_register_globals +__asan_register_image_globals +__asan_report_error +__asan_report_exp_load1 +__asan_report_exp_load16 +__asan_report_exp_load16_noabort +__asan_report_exp_load1_noabort +__asan_report_exp_load2 +__asan_report_exp_load2_noabort +__asan_report_exp_load4 +__asan_report_exp_load4_noabort +__asan_report_exp_load8 +__asan_report_exp_load8_noabort +__asan_report_exp_load_n +__asan_report_exp_load_n_noabort +__asan_report_exp_store1 +__asan_report_exp_store16 +__asan_report_exp_store16_noabort +__asan_report_exp_store1_noabort +__asan_report_exp_store2 +__asan_report_exp_store2_noabort +__asan_report_exp_store4 +__asan_report_exp_store4_noabort +__asan_report_exp_store8 +__asan_report_exp_store8_noabort +__asan_report_exp_store_n +__asan_report_exp_store_n_noabort +__asan_report_load1 +__asan_report_load16 +__asan_report_load16_noabort +__asan_report_load1_noabort +__asan_report_load2 +__asan_report_load2_noabort +__asan_report_load4 +__asan_report_load4_noabort +__asan_report_load8 +__asan_report_load8_noabort +__asan_report_load_n +__asan_report_load_n_noabort +__asan_report_present +__asan_report_store1 +__asan_report_store16 +__asan_report_store16_noabort +__asan_report_store1_noabort +__asan_report_store2 +__asan_report_store2_noabort +__asan_report_store4 +__asan_report_store4_noabort +__asan_report_store8 +__asan_report_store8_noabort +__asan_report_store_n +__asan_report_store_n_noabort +__asan_set_death_callback +__asan_set_error_exit_code +__asan_set_error_report_callback +__asan_set_shadow_00 +__asan_set_shadow_f1 +__asan_set_shadow_f2 +__asan_set_shadow_f3 +__asan_set_shadow_f5 +__asan_set_shadow_f8 +__asan_stack_free_0 +__asan_stack_free_1 +__asan_stack_free_10 +__asan_stack_free_2 +__asan_stack_free_3 +__asan_stack_free_4 +__asan_stack_free_5 +__asan_stack_free_6 +__asan_stack_free_7 +__asan_stack_free_8 +__asan_stack_free_9 +__asan_stack_malloc_0 +__asan_stack_malloc_1 +__asan_stack_malloc_10 +__asan_stack_malloc_2 +__asan_stack_malloc_3 +__asan_stack_malloc_4 +__asan_stack_malloc_5 +__asan_stack_malloc_6 +__asan_stack_malloc_7 +__asan_stack_malloc_8 +__asan_stack_malloc_9 +__asan_stack_malloc_always_0 +__asan_stack_malloc_always_1 +__asan_stack_malloc_always_10 +__asan_stack_malloc_always_2 +__asan_stack_malloc_always_3 +__asan_stack_malloc_always_4 +__asan_stack_malloc_always_5 +__asan_stack_malloc_always_6 +__asan_stack_malloc_always_7 +__asan_stack_malloc_always_8 +__asan_stack_malloc_always_9 +__asan_store1 +__asan_store16 +__asan_store16_noabort +__asan_store1_noabort +__asan_store2 +__asan_store2_noabort +__asan_store4 +__asan_store4_noabort +__asan_store8 +__asan_store8_noabort +__asan_storeN +__asan_storeN_noabort +__asan_unpoison_intra_object_redzone +__asan_unpoison_memory_region +__asan_unpoison_stack_memory +__asan_unregister_elf_globals +__asan_unregister_globals +__asan_unregister_image_globals +__asan_update_allocation_context +__asan_version_mismatch_check_v6 +__asan_version_mismatch_check_v7 +__asan_version_mismatch_check_v8 +__ashldi3 +__ashlti3 +__ashrdi3 +__ashrti3 +__atexit +__atomic_compare_exchange +__atomic_compare_exchange_1 +__atomic_compare_exchange_2 +__atomic_compare_exchange_4 +__atomic_compare_exchange_8 +__atomic_compare_exchange_n +__atomic_exchange +__atomic_exchange_1 +__atomic_exchange_2 +__atomic_exchange_4 +__atomic_exchange_8 +__atomic_exchange_n +__atomic_fetch_add_1 +__atomic_fetch_add_2 +__atomic_fetch_add_4 +__atomic_fetch_add_8 +__atomic_fetch_and_1 +__atomic_fetch_and_2 +__atomic_fetch_and_4 +__atomic_fetch_and_8 +__atomic_fetch_or_1 +__atomic_fetch_or_2 +__atomic_fetch_or_4 +__atomic_fetch_or_8 +__atomic_fetch_sub_1 +__atomic_fetch_sub_2 +__atomic_fetch_sub_4 +__atomic_fetch_sub_8 +__atomic_fetch_xor_1 +__atomic_fetch_xor_2 +__atomic_fetch_xor_4 +__atomic_fetch_xor_8 +__atomic_is_lock_free +__atomic_is_lock_free_internal +__atomic_load +__atomic_load_1 +__atomic_load_2 +__atomic_load_4 +__atomic_load_8 +__atomic_load_n +__atomic_store +__atomic_store_1 +__atomic_store_2 +__atomic_store_4 +__atomic_store_8 +__atomic_store_n +__b2d_D2A +__bigtens_D2A +__cfi_init +__cfi_slowpath +__cfi_slowpath_diag +__clang_call_terminate +__cleanup +__clzdi2 +__clzsi2 +__clzti2 +__cmp_D2A +__cmpdi2 +__cmpti2 +__copybits_D2A +__ctzdi2 +__ctzsi2 +__ctzti2 +__cxa_allocate_dependent_exception +__cxa_allocate_exception +__cxa_atexit +__cxa_bad_cast +__cxa_bad_typeid +__cxa_begin_catch +__cxa_call_unexpected +__cxa_current_exception_type +__cxa_current_primary_exception +__cxa_decrement_exception_refcount +__cxa_demangle +__cxa_demangle_gnu3 +__cxa_end_catch +__cxa_finalize +__cxa_free_dependent_exception +__cxa_free_exception +__cxa_get_exception_ptr +__cxa_get_globals +__cxa_get_globals_fast +__cxa_guard_abort +__cxa_guard_acquire +__cxa_guard_release +__cxa_increment_exception_refcount +__cxa_pure_virtual +__cxa_rethrow +__cxa_rethrow_primary_exception +__cxa_thread_atexit +__cxa_throw +__cxx_global_var_init +__cxx_global_var_init.1 +__cxx_global_var_init.10 +__cxx_global_var_init.17 +__cxx_global_var_init.2 +__cxx_global_var_init.26 +__cxx_global_var_init.27 +__cxx_global_var_init.28 +__cxx_global_var_init.29 +__cxx_global_var_init.3 +__cxx_global_var_init.30 +__cxx_global_var_init.31 +__cxx_global_var_init.32 +__cxx_global_var_init.33 +__cxx_global_var_init.34 +__cxx_global_var_init.35 +__cxx_global_var_init.36 +__cxx_global_var_init.37 +__cxx_global_var_init.4 +__cxx_global_var_init.5 +__cxx_global_var_init.6 +__cxx_global_var_init.8 +__cxx_global_var_init.9 +__d2b_D2A +__decrement_D2A +__default_entry_point +__diff_D2A +__divdc3 +__divdf3 +__divdi3 +__divmoddi4 +__divmodsi4 +__divsc3 +__divsf3 +__divsi3 +__divti3 +__divxc3 +__dso_handle +__dummy__ +__dynamic_cast +__dynstr_end +__dynsym_end +__elf_phdr_match_addr +__eqdf2 +__eqsf2 +__error +__exp__D +__extendsfdf2 +__fe_dfl_env +__fedisableexcept +__feenableexcept +__fflush +__ffsdi2 +__ffsti2 +__fini_array_end +__fini_array_start +__fixdfdi +__fixdfsi +__fixdfti +__fixsfdi +__fixsfsi +__fixsfti +__fixunsdfdi +__fixunsdfsi +__fixunsdfti +__fixunssfdi +__fixunssfsi +__fixunssfti +__fixunsxfdi +__fixunsxfsi +__fixunsxfti +__fixxfdi +__fixxfti +__floatdidf +__floatdisf +__floatdixf +__floatsidf +__floatsisf +__floattidf +__floattisf +__floattixf +__floatundidf +__floatundisf +__floatundixf +__floatunsidf +__floatunsisf +__floatuntidf +__floatuntisf +__floatuntixf +__fpclassifyd +__fpclassifyf +__fpclassifyl +__freeze +__gedf2 +__gesf2 +__getcwd +__gethex_D2A +__got_plt_start +__gtdf2 +__gtsf2 +__gxx_personality_v0 +__hash_end +__hexdig_D2A +__hexdig_init_D2A +__hexnan_D2A +__hi0bits_D2A +__i2b_D2A +__increment_D2A +__inet_addr +__inet_aton +__inet_ntoa +__inet_ntoa_r +__inet_ntop +__inet_pton +__init_array_end +__init_array_start +__internal_handle_open +__isfinite +__isfinitef +__isfinitel +__isinf +__isinff +__isinfl +__isnan +__isnanf +__isnanl +__isnormal +__isnormalf +__isnormall +__isthreaded +__kernel_cos +__kernel_cosdf +__kernel_cosl +__kernel_rem_pio2 +__kernel_sin +__kernel_sindf +__kernel_sinl +__kernel_tan +__kernel_tanl +__ledf2 +__lesf2 +__libc_allocate_tls +__libc_free_tls +__libunwind_Unwind_Backtrace +__libunwind_Unwind_DeleteException +__libunwind_Unwind_FindEnclosingFunction +__libunwind_Unwind_ForcedUnwind +__libunwind_Unwind_GetBSP +__libunwind_Unwind_GetCFA +__libunwind_Unwind_GetDataRelBase +__libunwind_Unwind_GetGR +__libunwind_Unwind_GetIP +__libunwind_Unwind_GetIPInfo +__libunwind_Unwind_GetLanguageSpecificData +__libunwind_Unwind_GetRegionStart +__libunwind_Unwind_GetTextRelBase +__libunwind_Unwind_RaiseException +__libunwind_Unwind_Resume +__libunwind_Unwind_Resume_or_Rethrow +__libunwind_Unwind_SetGR +__libunwind_Unwind_SetIP +__lo0bits_D2A +__log__D +__longjmp +__lshift_D2A +__lshrdi3 +__lshrti3 +__ltdf2 +__ltsf2 +__malloc_limit__ +__match_D2A +__mb_cur_max +__mb_sb_limit +__moddi3 +__modsi3 +__modti3 +__muldc3 +__muldf3 +__muldi3 +__mulodi4 +__mulosi4 +__muloti4 +__mulsc3 +__mulsf3 +__mult_D2A +__multadd_D2A +__multi3 +__mulvdi3 +__mulvsi3 +__mulvti3 +__mulxc3 +__nedf2 +__negdf2 +__negdi2 +__negsf2 +__negti2 +__negvdi2 +__negvsi2 +__negvti2 +__nesf2 +__opendir2 +__paritydi2 +__paritysi2 +__parityti2 +__popcountdi2 +__popcountsi2 +__popcountti2 +__powidf2 +__powisf2 +__powixf2 +__preinit_array_end +__preinit_array_start +__progname +__pthread_cleanup_pop_imp +__pthread_cleanup_push_imp +__pthread_cxa_finalize +__ratio_D2A +__rela_dyn_end +__rela_dyn_start +__rela_plt_end +__rela_plt_start +__remainder +__remainderf +__remainderl +__remquo +__remquof +__remquol +__rshift_D2A +__s2b_D2A +__sancov_default_options +__sanitizer_annotate_contiguous_container +__sanitizer_contiguous_container_find_bad_address +__sanitizer_cov +__sanitizer_cov_dump +__sanitizer_cov_indir_call16 +__sanitizer_cov_init +__sanitizer_cov_module_init +__sanitizer_cov_trace_basic_block +__sanitizer_cov_trace_cmp +__sanitizer_cov_trace_func_enter +__sanitizer_cov_trace_pc_guard +__sanitizer_cov_trace_pc_guard_init +__sanitizer_cov_with_check +__sanitizer_dump_coverage +__sanitizer_dump_trace_pc_guard_coverage +__sanitizer_finish_switch_fiber +__sanitizer_free_hook +__sanitizer_get_allocated_size +__sanitizer_get_coverage_guards +__sanitizer_get_current_allocated_bytes +__sanitizer_get_estimated_allocated_size +__sanitizer_get_free_bytes +__sanitizer_get_heap_size +__sanitizer_get_module_and_offset_for_pc +__sanitizer_get_number_of_counters +__sanitizer_get_ownership +__sanitizer_get_report_path +__sanitizer_get_total_unique_coverage +__sanitizer_get_unmapped_bytes +__sanitizer_malloc_hook +__sanitizer_maybe_open_cov_file +__sanitizer_print_stack_trace +__sanitizer_ptr_cmp +__sanitizer_ptr_sub +__sanitizer_report_error_summary +__sanitizer_reset_coverage +__sanitizer_sandbox_on_notify +__sanitizer_set_death_callback +__sanitizer_set_report_fd +__sanitizer_set_report_path +__sanitizer_start_switch_fiber +__sanitizer_symbolize_global +__sanitizer_symbolize_pc +__sanitizer_unaligned_load16 +__sanitizer_unaligned_load32 +__sanitizer_unaligned_load64 +__sanitizer_unaligned_store16 +__sanitizer_unaligned_store32 +__sanitizer_unaligned_store64 +__sanitizer_update_counter_bitset_and_clear_counters +__sanitizer_verify_contiguous_container +__sceAudioInVmicAttach +__sceAudioInVmicDetach +__sceAudioInVmicWrite +__sceKernelGetGPI +__sce_alloc_params +__sce_debug_fingerprint_start +__set_ones_D2A +__signbit +__signbitf +__signbitl +__sqrt +__sqrtf +__sqrtl +__srefill +__srget +__stack_chk_fail +__stack_chk_guard +__start__Zdynamic +__start__Zdynstr +__start__Zdynsym +__start__Zfini +__start__Zfini_array +__start__Zhash +__start__Zinit +__start__Zinit_array +__start__Zplt +__start__Zpreinit_array +__start__Ztext +__stderrp +__stdinp +__stdoutp +__stop__Ztext +__strcp_D2A +__strtodg +__strtord +__strtord.fpi0 +__subdf3 +__subsf3 +__subvdi3 +__subvsi3 +__subvti3 +__sum_D2A +__swbuf +__sync_fetch_and_add_16 +__sync_fetch_and_add_16_internal +__sync_fetch_and_and_16 +__sync_fetch_and_and_16_internal +__sync_fetch_and_or_16 +__sync_fetch_and_or_16_internal +__sync_fetch_and_sub_16 +__sync_fetch_and_sub_16_internal +__sync_fetch_and_xor_16 +__sync_fetch_and_xor_16_internal +__sync_lock_test_and_set_16 +__sync_lock_test_and_set_16_internal +__sys_debug_init +__sys_dl_get_info +__sys_dl_get_info_2 +__sys_dl_get_list +__sys_dl_get_metadata +__sys_dynlib_get_info2 +__sys_dynlib_get_info_for_libdbg +__sys_dynlib_get_list2 +__sys_dynlib_get_list_for_libdbg +__sys_dynlib_load_prx +__sys_dynlib_unload_prx +__sys_get_proc_type_info +__sys_is_development_mode +__sys_kqueueex +__sys_namedobj_create +__sys_namedobj_delete +__sys_nanosleep +__sys_netabort +__sys_netcontrol +__sys_netgetiflist +__sys_netgetsockinfo +__sys_opmc_disable +__sys_opmc_enable +__sys_opmc_get_ctr +__sys_opmc_get_hw +__sys_opmc_set_ctl +__sys_opmc_set_ctr +__sys_opmc_set_hw +__sys_osem_close +__sys_osem_open +__sys_randomized_path +__sys_rdup +__sys_regmgr_call +__sys_resume_internal_hdd +__sys_resume_process +__sys_set_uevt +__sys_socketclose +__sys_socketex +__sys_suspend_process +__sys_test_debug_rwmem +__sys_workaround8849 +__tens_D2A +__tinytens_D2A +__tls_align +__tls_get_addr +__trailz_D2A +__truncdfsf2 +__tsan_acquire +__tsan_atomic128_compare_exchange_strong +__tsan_atomic128_compare_exchange_val +__tsan_atomic128_compare_exchange_weak +__tsan_atomic128_exchange +__tsan_atomic128_fetch_add +__tsan_atomic128_fetch_and +__tsan_atomic128_fetch_nand +__tsan_atomic128_fetch_or +__tsan_atomic128_fetch_sub +__tsan_atomic128_fetch_xor +__tsan_atomic128_load +__tsan_atomic128_store +__tsan_atomic16_compare_exchange_strong +__tsan_atomic16_compare_exchange_val +__tsan_atomic16_compare_exchange_weak +__tsan_atomic16_exchange +__tsan_atomic16_fetch_add +__tsan_atomic16_fetch_and +__tsan_atomic16_fetch_nand +__tsan_atomic16_fetch_or +__tsan_atomic16_fetch_sub +__tsan_atomic16_fetch_xor +__tsan_atomic16_load +__tsan_atomic16_store +__tsan_atomic32_compare_exchange_strong +__tsan_atomic32_compare_exchange_val +__tsan_atomic32_compare_exchange_weak +__tsan_atomic32_exchange +__tsan_atomic32_fetch_add +__tsan_atomic32_fetch_and +__tsan_atomic32_fetch_nand +__tsan_atomic32_fetch_or +__tsan_atomic32_fetch_sub +__tsan_atomic32_fetch_xor +__tsan_atomic32_load +__tsan_atomic32_store +__tsan_atomic64_compare_exchange_strong +__tsan_atomic64_compare_exchange_val +__tsan_atomic64_compare_exchange_weak +__tsan_atomic64_exchange +__tsan_atomic64_fetch_add +__tsan_atomic64_fetch_and +__tsan_atomic64_fetch_nand +__tsan_atomic64_fetch_or +__tsan_atomic64_fetch_sub +__tsan_atomic64_fetch_xor +__tsan_atomic64_load +__tsan_atomic64_store +__tsan_atomic8_compare_exchange_strong +__tsan_atomic8_compare_exchange_val +__tsan_atomic8_compare_exchange_weak +__tsan_atomic8_exchange +__tsan_atomic8_fetch_add +__tsan_atomic8_fetch_and +__tsan_atomic8_fetch_nand +__tsan_atomic8_fetch_or +__tsan_atomic8_fetch_sub +__tsan_atomic8_fetch_xor +__tsan_atomic8_load +__tsan_atomic8_store +__tsan_atomic_signal_fence +__tsan_atomic_thread_fence +__tsan_create_fiber +__tsan_current_error_report +__tsan_current_error_report_size +__tsan_destroy_fiber +__tsan_external_assign_tag +__tsan_external_read +__tsan_external_register_header +__tsan_external_register_tag +__tsan_external_write +__tsan_flush_memory +__tsan_func_entry +__tsan_func_exit +__tsan_get_alloc_stack +__tsan_get_current_fiber +__tsan_get_current_report +__tsan_get_report_data +__tsan_get_report_loc +__tsan_get_report_loc_object_type +__tsan_get_report_mop +__tsan_get_report_mutex +__tsan_get_report_stack +__tsan_get_report_tag +__tsan_get_report_thread +__tsan_get_report_unique_tid +__tsan_gpu_full_acquire +__tsan_ignore_deadlock_begin +__tsan_ignore_deadlock_end +__tsan_ignore_thread_begin +__tsan_ignore_thread_end +__tsan_init +__tsan_locate_address +__tsan_mutex_create +__tsan_mutex_destroy +__tsan_mutex_post_divert +__tsan_mutex_post_lock +__tsan_mutex_post_signal +__tsan_mutex_post_unlock +__tsan_mutex_pre_divert +__tsan_mutex_pre_lock +__tsan_mutex_pre_signal +__tsan_mutex_pre_unlock +__tsan_on_report +__tsan_read1 +__tsan_read16 +__tsan_read16_pc +__tsan_read1_pc +__tsan_read2 +__tsan_read2_pc +__tsan_read4 +__tsan_read4_pc +__tsan_read8 +__tsan_read8_pc +__tsan_read_range +__tsan_read_range_pc +__tsan_release +__tsan_set_fiber_name +__tsan_switch_to_fiber +__tsan_testonly_barrier_init +__tsan_testonly_barrier_wait +__tsan_testonly_shadow_stack_current_size +__tsan_unaligned_read16 +__tsan_unaligned_read2 +__tsan_unaligned_read4 +__tsan_unaligned_read8 +__tsan_unaligned_write16 +__tsan_unaligned_write2 +__tsan_unaligned_write4 +__tsan_unaligned_write8 +__tsan_vptr_read +__tsan_vptr_update +__tsan_write1 +__tsan_write16 +__tsan_write16_pc +__tsan_write1_pc +__tsan_write2 +__tsan_write2_pc +__tsan_write4 +__tsan_write4_pc +__tsan_write8 +__tsan_write8_pc +__tsan_write_range +__tsan_write_range_pc +__ubsan_current_error_report +__ubsan_current_error_report_size +__ubsan_default_options +__ubsan_get_current_report_data +__ubsan_handle_add_overflow +__ubsan_handle_add_overflow_abort +__ubsan_handle_alignment_assumption +__ubsan_handle_alignment_assumption_abort +__ubsan_handle_builtin_unreachable +__ubsan_handle_cfi_check_fail +__ubsan_handle_cfi_check_fail_abort +__ubsan_handle_divrem_overflow +__ubsan_handle_divrem_overflow_abort +__ubsan_handle_dynamic_type_cache_miss +__ubsan_handle_dynamic_type_cache_miss_abort +__ubsan_handle_float_cast_overflow +__ubsan_handle_float_cast_overflow_abort +__ubsan_handle_function_type_mismatch +__ubsan_handle_function_type_mismatch_abort +__ubsan_handle_function_type_mismatch_v1 +__ubsan_handle_function_type_mismatch_v1_abort +__ubsan_handle_implicit_conversion +__ubsan_handle_implicit_conversion_abort +__ubsan_handle_invalid_builtin +__ubsan_handle_invalid_builtin_abort +__ubsan_handle_load_invalid_value +__ubsan_handle_load_invalid_value_abort +__ubsan_handle_missing_return +__ubsan_handle_mul_overflow +__ubsan_handle_mul_overflow_abort +__ubsan_handle_negate_overflow +__ubsan_handle_negate_overflow_abort +__ubsan_handle_nonnull_arg +__ubsan_handle_nonnull_arg_abort +__ubsan_handle_nonnull_return +__ubsan_handle_nonnull_return_abort +__ubsan_handle_nonnull_return_v1 +__ubsan_handle_nonnull_return_v1_abort +__ubsan_handle_nullability_arg +__ubsan_handle_nullability_arg_abort +__ubsan_handle_nullability_return_v1 +__ubsan_handle_nullability_return_v1_abort +__ubsan_handle_out_of_bounds +__ubsan_handle_out_of_bounds_abort +__ubsan_handle_pointer_overflow +__ubsan_handle_pointer_overflow_abort +__ubsan_handle_shift_out_of_bounds +__ubsan_handle_shift_out_of_bounds_abort +__ubsan_handle_sub_overflow +__ubsan_handle_sub_overflow_abort +__ubsan_handle_type_mismatch +__ubsan_handle_type_mismatch_abort +__ubsan_handle_type_mismatch_v1 +__ubsan_handle_type_mismatch_v1_abort +__ubsan_handle_vla_bound_not_positive +__ubsan_handle_vla_bound_not_positive_abort +__ubsan_vptr_type_cache +__ucmpdi2 +__ucmpti2 +__udivdi3 +__udivmoddi4 +__udivmodsi4 +__udivmodti4 +__udivsi3 +__udivti3 +__ulp_D2A +__umoddi3 +__umodsi3 +__umodti3 +__unorddf2 +__unordsf2 +__vfprintf +__wrap_access +__wrap_clock_gettime +__wrap_fchown +__wrap_getcwd +__wrap_getenv +__wrap_link +__wrap_lstat +__wrap_mmap +__wrap_readlink +__wrap_statvfs +__wrap_symlink +_accept +_aot_register_finalizer +_atan2f_f4 +_atanf_f4 +_atanlo3 +_bind +_calloc +_close +_closeSecondaryStream +_connect +_cos_impl +_cosf_impl +_cosl_impl +_default_constraint_handler_s +_deleteOneNode +_deleteProtocolInfoListOneNode +_dup2 +_err +_execve +_execvpe +_exit +_ext_cleanup +_fcloseall +_fcntl +_fini +_fini.completed +_fpathconf +_free +_fstat +_fstatfs +_g_sceLibcExitflag +_g_sceLibcExitthread +_getNextCommInfoId +_getdirentries +_getpeername +_getprogname +_getsockname +_getsockopt +_gm_ +_init +_init_env +_init_tls +_ioctl +_is_signal_return +_listen +_log10_impl +_log10f_impl +_log2_impl +_log2f_impl +_log_impl +_logf_impl +_longjmp +_m_acc +_m_agid +_m_ch_key1 +_m_ch_key2 +_m_key1 +_m_key2 +_malloc +_malloc_corruption_error_count +_malloc_finalize +_malloc_finalize_lv2 +_malloc_fini +_malloc_init +_malloc_init_lv2 +_malloc_init_replaced +_malloc_initialize +_malloc_postfork +_malloc_prefork +_malloc_stats +_malloc_stats_fast +_malloc_thread_cleanup +_malloc_usable_size +_memalign +_mono_register_opcode_emulation +_nanosleep +_new_setup +_open +_openat +_pi_lo +_posix_memalign +_rand +_read +_readdir_unlocked +_readv +_realloc +_reallocalign +_reclaim_telldir +_recvDeciPacket +_recvfrom +_recvmsg +_rtld_addr_phdr +_rtld_allocate_tls +_rtld_atfork_post +_rtld_atfork_pre +_rtld_error +_rtld_free_tls +_rtld_get_stack_prot +_rtld_thread_init +_sceApplicationGetAppId +_sceDepthCalcHeteroAdjustParam +_sceDepthDisplayDebugScreen +_sceDepthEnableDebugScreen +_sceDepthHeadCandidateTrackerGetInformation +_sceDepthHeadCandidateTrackerSetInformation +_sceDepthSetCameraFactoryCalibrationData +_sceDepthSetHeteroAdjustParam +_sceDepthSetHeteroMode +_sceFiberAttachContextAndRun +_sceFiberAttachContextAndSwitch +_sceFiberGetThreadFramePointerAddress +_sceFiberInitializeImpl +_sceFiberInitializeWithInternalOptionImpl +_sceKernelRtldSetApplicationHeapAPI +_sceKernelRtldThreadAtexitDecrement +_sceKernelRtldThreadAtexitIncrement +_sceKernelSetThreadAtexitCount +_sceKernelSetThreadAtexitReport +_sceKernelSetThreadDtors +_sceLibcAtexitMutexInit +_sceLibcCalloc +_sceLibcFinalize +_sceLibcFree +_sceLibcGetMallocParam +_sceLibcInitialize +_sceLibcInternal +_sceLibcLockFinalize +_sceLibcLockInitialize +_sceLibcMalloc +_sceLibcMallocFinalize +_sceLibcMallocInitialize +_sceLibcMallocStats +_sceLibcMallocStatsFast +_sceLibcMallocUsableSize +_sceLibcMemalign +_sceLibcMspaceLock +_sceLibcMspaceRealloc +_sceLibcMspaceReallocalign +_sceLibcMspaceUnlock +_sceLibcOnce +_sceLibcPosixMemalign +_sceLibcRealloc +_sceLibcReallocalign +_sceLibcStdThreadStackSizeInit +_sceLibcUnwindMutexInit +_sceModuleParam +_sceNpAllocatorExConvertAllocator +_sceNpAllocatorExFree +_sceNpAllocatorExMalloc +_sceNpAllocatorExRealloc +_sceNpAllocatorExStrdup +_sceNpAllocatorExStrndup +_sceNpAllocatorFree +_sceNpAllocatorMalloc +_sceNpAllocatorRealloc +_sceNpAllocatorStrdup +_sceNpAllocatorStrdupImpl +_sceNpAllocatorStrndup +_sceNpAllocatorStrndupImpl +_sceNpFree +_sceNpFreeImpl +_sceNpHeapFree +_sceNpHeapFreeImpl +_sceNpHeapMalloc +_sceNpHeapMallocImpl +_sceNpHeapRealloc +_sceNpHeapReallocImpl +_sceNpHeapShowMemoryStat +_sceNpHeapStrdup +_sceNpHeapStrdupImpl +_sceNpHeapStrndup +_sceNpHeapStrndupImpl +_sceNpIpcCreateMemoryFromKernel +_sceNpIpcCreateMemoryFromPool +_sceNpIpcDefaultFreeImpl +_sceNpIpcDefaultMallocImpl +_sceNpIpcDefaultReallocImpl +_sceNpIpcDestroyMemory +_sceNpIpcFreeImpl +_sceNpIpcGetNpMemAllocator +_sceNpIpcMallocImpl +_sceNpIpcReallocImpl +_sceNpMalloc +_sceNpMallocImpl +_sceNpManagerCreateMemoryFromKernel _sceNpManagerCreateMemoryFromPool -sceShellCoreUtilChangeToStaffModeForIDU -scePadVrControllerSetTriggerEffects -sceAudioOut2MasteringSetParam -sceDbgIsDebuggerAttached -sceCameraWaitForLukeReady -scePssMusicPlayerGetLoopTimePosition -sceClHttpSetEpoll -sceNpUniversalDataSystemIntRecordArraySetUInt64 -sceUserServiceSetAccountRemarks -sceWebBrowserDialogGetResult -scePadSetTiltCorrectionState -sceVideoCoreAcquireDecoderResourceForBeWrapper -sceMbusAddHandleByVidPid -sceCameraSetDefectivePixelCancellationInternal -sceUsbStorageRegisterCallback -scePssMusicPlayerSetLoopTimePosition -sceBgftServiceIntDownloadHideTask -sceAppInstUtilGetAppSlotInfoList -sceAgcCbMemSemaphore -sceConvertKeycodeGetVirtualKeycode -_sceUltUlthreadOptParamInitialize -sceNpJsonParse -sceBgftServiceIntGetNotificationEvent -sceFiosResume -sceDbgKeyboardRead -sceAgcDcbSetPredicationDisableGetSize -sceVideoOutSysGetMonitorInfo_ -sceLoginDialogTerminate -sceNpFriendListDialogOpenA -sceBgftServiceIntUploadUnregisterTask -sceHttpSetRequestStatusCallback -sceSystemServiceTurnOffScreenSaver -sceDataTransferRequestGetAppInfoPS4 +_sceNpManagerDefaultFreeImpl +_sceNpManagerDefaultMallocImpl +_sceNpManagerDefaultReallocImpl +_sceNpManagerDestroyMemory +_sceNpManagerFreeImpl +_sceNpManagerGetNpMemAllocator +_sceNpManagerMallocImpl +_sceNpManagerReallocImpl +_sceNpMemoryHeapShowMemoryStat +_sceNpRealloc +_sceNpReallocImpl _sceSdmaNop -sceCamera2GetSharpness -sceShellCoreUtilGetDeviceIndexBehaviorWithTimeout -sceRudpNetReceived +_sceUltConditionVariableCreate +_sceUltConditionVariableOptParamInitialize +_sceUltMutexCreate +_sceUltMutexOptParamInitialize +_sceUltQueueCreate +_sceUltQueueDataResourcePoolCreate +_sceUltQueueDataResourcePoolOptParamInitialize +_sceUltQueueOptParamInitialize +_sceUltReaderWriterLockCreate +_sceUltReaderWriterLockOptParamInitialize +_sceUltSemaphoreCreate +_sceUltSemaphoreOptParamInitialize +_sceUltUlthreadCreate +_sceUltUlthreadOptParamInitialize +_sceUltUlthreadRuntimeCreate +_sceUltUlthreadRuntimeOptParamInitialize +_sceUltWaitingQueueResourcePoolCreate +_sceUltWaitingQueueResourcePoolOptParamInitialize +_sceVideoRecordingQueryParam +_searchCommInfoTail +_searchProtocolInfoTail +_seekdir +_sendmsg +_sendto +_setjmp +_setsockopt +_sigaction +_sigintr +_sigprocmask +_sigsuspend +_sin_impl +_sinf_impl +_sinl_impl +_thread_autoinit_dummy_decl +_thread_autoinit_dummy_decl_stub +_thread_init +_thread_init_stub +_tiny +_umtx_op +_wait4 +_wapi_fileshare_layout +_warn +_write +_writev +abort +abort_handler_s +abs +accept +access +access_fpreg +access_mem +access_reg +acos +acosf +acosh +acoshf +acoshl +acosl +addCommInfoList +addProhibitionFlagListener +addProtocolInfoList +addTelemetryErrorListener +adjust_heap +aio_cancel +aio_error +aio_fsync +aio_read +aio_return +aio_suspend +aio_waitcomplete +aio_write +alarm +aligned_alloc +allocateSystem +allocateVideo +allowedHourFormatsCleanup_67 +alt_digits +am_pm +amd64_set_fsbase +apply_reg_state +approx +approx0 +arc4random +arc4random_buf +arch_DbgBacktraceSelf +arch_init_gc +arch_raise_user +arch_test +asctime +asctime_s +asin +asinf +asinh +asinhf +asinhl +asinl +asprintf +at_quick_exit +at_thread_exit_flag +at_thread_exit_mutex +atan +atan2 +atan2f +atan2l +atanf +atanh +atanhf +atanhi +atanhl +atanl +atanlo +atexit +atexit_mutex +atexit_register +atof +atoi +atol +atoll +audiodeccpuinternal_core_ops_alac2 +audiodeccpuinternal_core_ops_ddp +audiodeccpuinternal_core_ops_dts +audiodeccpuinternal_core_ops_dts_hd_lbr +audiodeccpuinternal_core_ops_dts_hd_ma +audiodeccpuinternal_core_ops_flac2 +audiodeccpuinternal_core_ops_hevag2 +audiodeccpuinternal_core_ops_lpcm_bd2 +audiodeccpuinternal_core_ops_lpcm_dvd2 +audiodeccpuinternal_core_ops_m4aac2 +autofit_module_class +aval +backtrace +backtrace_game +basename +basename_r +bcmp +bcopy +bdf_driver_class +bdjbg_alloc +bdjbg_clear +bdjbg_copyPlanes +bdjbg_destroy +bdjbg_display +bdjbg_free +bdjbg_getAddress +bdjbg_getInfo +bdjbg_init +bdjbg_lock +bdjbg_unlock +bemp2sys_logprintf_getlevel +bemp2sys_logprintf_setfunc +bemp2sys_logprintf_setlevel +bemp2sys_memmanager_set +bemp2sys_packetizer_create +bemp2sys_packetizer_destroy +bemp2sys_packetizer_init +bemp2sys_packetizer_release +bemp2sys_pesparser_create +bemp2sys_pesparser_destroy +bemp2sys_pesparser_init +bemp2sys_pesparser_parse +bemp2sys_pesparser_release +bemp2sys_pesparser_sendmessage +bemp2sys_psdecoder_create +bemp2sys_psdecoder_destroy +bemp2sys_psdecoder_init +bemp2sys_psdecoder_readpacket +bemp2sys_psdecoder_release +bemp2sys_psdecoder_sendmessage +bemp2sys_tsdecoder_create +bemp2sys_tsdecoder_destroy +bemp2sys_tsdecoder_init +bemp2sys_tsdecoder_readpacket +bemp2sys_tsdecoder_release +bemp2sys_tsdecoder_sendmessage +bemp2sys_tsfilter_create +bemp2sys_tsfilter_destroy +bemp2sys_tsfilter_init +bemp2sys_tsfilter_release +bemp2sys_tsfilter_sendmessage +bin_find +bind +blockpool_batch +blockpool_map +blockpool_open +blockpool_unmap +bp +bsearch +bsearch_s +btowc +bzero +c +c00 +c01 +c10 +c11 +c12 +c13 +c14 +c15 +c16 +c16rtomb +c17 +c18 +c19 +c20 +c21 +c32rtomb +cairo_append_path +cairo_arc +cairo_arc_negative +cairo_clip +cairo_clip_extents +cairo_close_path +cairo_copy_path +cairo_create +cairo_curve_to +cairo_destroy +cairo_device_destroy +cairo_device_to_user +cairo_device_to_user_distance +cairo_fill +cairo_fill_extents +cairo_fill_preserve +cairo_font_face_destroy +cairo_font_face_get_user_data +cairo_font_face_reference +cairo_font_face_set_user_data +cairo_font_options_copy +cairo_font_options_create +cairo_font_options_destroy +cairo_font_options_get_antialias +cairo_font_options_set_antialias +cairo_font_options_set_hint_metrics +cairo_font_options_set_hint_style +cairo_font_options_set_subpixel_order +cairo_format_stride_for_width +cairo_ft_font_face_create_for_ft_face +cairo_ft_font_face_create_for_pattern +cairo_ft_font_face_reset_synthesize_weight +cairo_ft_font_face_set_synthesize_weight +cairo_ft_font_options_substitute +cairo_ft_scaled_font_lock_face +cairo_ft_scaled_font_unlock_face +cairo_get_antialias +cairo_get_current_point +cairo_get_dash +cairo_get_dash_count +cairo_get_fill_rule +cairo_get_line_cap +cairo_get_line_join +cairo_get_line_width +cairo_get_matrix +cairo_get_miter_limit +cairo_get_operator +cairo_get_target +cairo_glyph_free +cairo_glyph_path +cairo_has_current_point +cairo_identity_matrix +cairo_image_surface_create +cairo_image_surface_create_for_data +cairo_image_surface_create_from_png_stream +cairo_image_surface_get_data +cairo_image_surface_get_format +cairo_image_surface_get_height +cairo_image_surface_get_stride +cairo_image_surface_get_width +cairo_in_fill +cairo_in_stroke +cairo_line_to +cairo_mask +cairo_mask_surface +cairo_matrix_init +cairo_matrix_init_identity +cairo_matrix_init_translate +cairo_matrix_invert +cairo_matrix_multiply +cairo_matrix_rotate +cairo_matrix_scale +cairo_matrix_transform_distance +cairo_matrix_transform_point +cairo_matrix_translate +cairo_mesh_pattern_begin_patch +cairo_mesh_pattern_curve_to +cairo_mesh_pattern_end_patch +cairo_mesh_pattern_line_to +cairo_mesh_pattern_move_to +cairo_mesh_pattern_set_corner_color_rgba +cairo_move_to +cairo_new_path +cairo_new_sub_path +cairo_paint +cairo_paint_with_alpha +cairo_path_destroy +cairo_path_extents +cairo_pattern_add_color_stop_rgba +cairo_pattern_create_for_surface +cairo_pattern_create_linear +cairo_pattern_create_mesh +cairo_pattern_create_radial +cairo_pattern_destroy +cairo_pattern_reference +cairo_pattern_set_extend +cairo_pattern_set_filter +cairo_pattern_set_matrix +cairo_pop_group_to_source +cairo_push_group +cairo_rectangle +cairo_reference +cairo_region_create +cairo_region_destroy +cairo_region_get_rectangle +cairo_region_num_rectangles +cairo_region_reference +cairo_region_union_rectangle +cairo_restore +cairo_rotate +cairo_save +cairo_scale +cairo_scaled_font_create +cairo_scaled_font_destroy +cairo_scaled_font_extents +cairo_scaled_font_get_ctm +cairo_scaled_font_get_font_face +cairo_scaled_font_get_font_matrix +cairo_scaled_font_get_font_options +cairo_scaled_font_glyph_extents +cairo_scaled_font_reference +cairo_scaled_font_status +cairo_scaled_font_text_extents +cairo_scaled_font_text_to_glyphs +cairo_select_font_face +cairo_set_antialias +cairo_set_dash +cairo_set_fill_rule +cairo_set_font_face +cairo_set_font_options +cairo_set_font_size +cairo_set_line_cap +cairo_set_line_join +cairo_set_line_width +cairo_set_matrix +cairo_set_miter_limit +cairo_set_operator +cairo_set_scaled_font +cairo_set_source +cairo_set_source_rgb +cairo_set_source_rgba +cairo_set_source_surface +cairo_show_glyphs +cairo_show_text +cairo_stroke +cairo_stroke_extents +cairo_stroke_preserve +cairo_surface_create_for_rectangle +cairo_surface_create_similar +cairo_surface_destroy +cairo_surface_flush +cairo_surface_get_content +cairo_surface_get_device_scale +cairo_surface_get_type +cairo_surface_mark_dirty_rectangle +cairo_surface_reference +cairo_surface_set_device_scale +cairo_surface_set_user_data +cairo_surface_status +cairo_surface_write_to_png_stream +cairo_transform +cairo_translate +cairo_user_to_device +cairo_user_to_device_distance +call_filter +call_filter_p +calloc +catchReturnFromMain +cbrt +cbrtf +cbrtl +ceil +ceilf +ceill +cff_cmap_encoding_class_rec +cff_cmap_unicode_class_rec +cff_driver_class +chdir +chflags +chmod +chown +chroot +clearerr +clearerr_unlocked +cloc_o +clock +clock_1600 +clock_1700 +clock_getres +clock_gettime +clock_gettime_np +clock_settime +close +closeall +closeallreg +closeallreg_o +closedir +cmemory_cleanup_67 +cmp_era_date +coil_clock_gettime +coil_create_semaphore +coil_dlclose +coil_dlopen +coil_dlopen_native +coil_dlsym +coil_freehostent +coil_get_http_proxy +coil_get_native_thread_id +coil_gethostbyaddr +coil_gethostbyname +coil_getpwuid +coil_h_errno +coil_initialize +coil_load_module_internal +coil_mkstemp +coil_mspace_calloc +coil_mspace_free +coil_mspace_malloc +coil_mspace_realloc +coil_netctrl_get_str +coil_netctrl_init +coil_pclose +coil_popen +coil_raise +coil_registry_get_int +coil_registry_get_str +coil_set_debugger_attached +coil_set_debugger_port +coil_set_homedir +coil_set_keepsocket +coil_signal_semaphore +coil_wait_semaphore +comm_init +compile +compilerrt_abort_impl +cond +connect +convert_flags +copyright_message +copysign +copysignf +copysignl +cos +cosf +cosh +coshf +coshl +cosl +cpp_demangle_data_init +cpp_demangle_push_type_qualifier +cpp_demangle_read_encoding +cpp_demangle_read_expr_primary +cpp_demangle_read_expression +cpp_demangle_read_name +cpp_demangle_read_number +cpp_demangle_read_offset_number +cpp_demangle_read_sname +cpp_demangle_read_subst +cpp_demangle_read_subst_stdtmpl +cpp_demangle_read_tmpl_args +cpp_demangle_read_tmpl_param +cpp_demangle_read_type +cpp_demangle_read_uqname +cpuset +cpuset_getaffinity +cpuset_getid +cpuset_setaffinity +cpuset_setid +crc32 +creat +create_state_record_for +ctime +ctime_s +ctyp_tab +curl_easy_cleanup +curl_easy_duphandle +curl_easy_escape +curl_easy_getinfo +curl_easy_init +curl_easy_option_by_id +curl_easy_option_by_name +curl_easy_option_next +curl_easy_pause +curl_easy_perform +curl_easy_recv +curl_easy_reset +curl_easy_send +curl_easy_setopt +curl_easy_strerror +curl_easy_unescape +curl_easy_upkeep +curl_escape +curl_formadd +curl_formfree +curl_formget +curl_free +curl_getdate +curl_getenv +curl_global_cleanup +curl_global_init +curl_global_init_mem +curl_global_sslset +curl_maprintf +curl_mfprintf +curl_mime_addpart +curl_mime_data +curl_mime_data_cb +curl_mime_encoder +curl_mime_filedata +curl_mime_filename +curl_mime_free +curl_mime_headers +curl_mime_init +curl_mime_name +curl_mime_subparts +curl_mime_type +curl_mprintf +curl_msnprintf +curl_msprintf +curl_multi_add_handle +curl_multi_assign +curl_multi_cleanup +curl_multi_fdset +curl_multi_info_read +curl_multi_init +curl_multi_perform +curl_multi_poll +curl_multi_remove_handle +curl_multi_setopt +curl_multi_socket +curl_multi_socket_action +curl_multi_socket_all +curl_multi_strerror +curl_multi_timeout +curl_multi_wait +curl_multi_wakeup +curl_mvaprintf +curl_mvfprintf +curl_mvprintf +curl_mvsnprintf +curl_mvsprintf +curl_pushheader_byname +curl_pushheader_bynum +curl_share_cleanup +curl_share_init +curl_share_setopt +curl_share_strerror +curl_slist_append +curl_slist_free_all +curl_strequal +curl_strnequal +curl_unescape +curl_url +curl_url_cleanup +curl_url_dup +curl_url_get +curl_url_set +curl_version +curl_version_info +cuse_lowlevel_init +cuse_lowlevel_main +cuse_lowlevel_new +cuse_lowlevel_setup +cuse_lowlevel_teardown +cval +d2i_ASN1_INTEGER +d2i_ECParameters +d2i_OCSP_RESPONSE +d2i_PKCS12_bio +d2i_PKCS12_fp +d2i_PKCS7 +d2i_PKCS8_PRIV_KEY_INFO_bio +d2i_PrivateKey_bio +d2i_RSAPublicKey_bio +d2i_RSA_PUBKEY +d2i_X509 +d2i_X509_bio +daemon +dayPeriodRulesCleanup_67 +daylight +days +debug_init +decode_fp_to_double +deflate +deflateBound +deflateEnd +deflateInit2_ +deflateReset +delCommInfoList +delCommInfoListBySock +delProtocolInfoList +delegate_invoke_impl_has_target +delegate_invoke_impl_has_target_p +delegate_invoke_impl_target_0 +delegate_invoke_impl_target_0_p +delegate_invoke_impl_target_1 +delegate_invoke_impl_target_10 +delegate_invoke_impl_target_10_p +delegate_invoke_impl_target_1_p +delegate_invoke_impl_target_2 +delegate_invoke_impl_target_2_p +delegate_invoke_impl_target_3 +delegate_invoke_impl_target_3_p +delegate_invoke_impl_target_4 +delegate_invoke_impl_target_4_p +delegate_invoke_impl_target_5 +delegate_invoke_impl_target_5_p +delegate_invoke_impl_target_6 +delegate_invoke_impl_target_6_p +delegate_invoke_impl_target_7 +delegate_invoke_impl_target_7_p +delegate_invoke_impl_target_8 +delegate_invoke_impl_target_8_p +delegate_invoke_impl_target_9 +delegate_invoke_impl_target_9_p +delegate_virtual_invoke_0 +delegate_virtual_invoke_0_p +delegate_virtual_invoke_1 +delegate_virtual_invoke_10 +delegate_virtual_invoke_10_p +delegate_virtual_invoke_11 +delegate_virtual_invoke_11_p +delegate_virtual_invoke_12 +delegate_virtual_invoke_12_p +delegate_virtual_invoke_13 +delegate_virtual_invoke_13_p +delegate_virtual_invoke_14 +delegate_virtual_invoke_14_p +delegate_virtual_invoke_15 +delegate_virtual_invoke_15_p +delegate_virtual_invoke_16 +delegate_virtual_invoke_16_p +delegate_virtual_invoke_17 +delegate_virtual_invoke_17_p +delegate_virtual_invoke_18 +delegate_virtual_invoke_18_p +delegate_virtual_invoke_19 +delegate_virtual_invoke_19_p +delegate_virtual_invoke_1_p +delegate_virtual_invoke_2 +delegate_virtual_invoke_20 +delegate_virtual_invoke_20_p +delegate_virtual_invoke_21 +delegate_virtual_invoke_21_p +delegate_virtual_invoke_22 +delegate_virtual_invoke_22_p +delegate_virtual_invoke_23 +delegate_virtual_invoke_23_p +delegate_virtual_invoke_24 +delegate_virtual_invoke_24_p +delegate_virtual_invoke_25 +delegate_virtual_invoke_25_p +delegate_virtual_invoke_26 +delegate_virtual_invoke_26_p +delegate_virtual_invoke_27 +delegate_virtual_invoke_27_p +delegate_virtual_invoke_28 +delegate_virtual_invoke_28_p +delegate_virtual_invoke_29 +delegate_virtual_invoke_29_p +delegate_virtual_invoke_2_p +delegate_virtual_invoke_3 +delegate_virtual_invoke_30 +delegate_virtual_invoke_30_p +delegate_virtual_invoke_31 +delegate_virtual_invoke_31_p +delegate_virtual_invoke_32 +delegate_virtual_invoke_32_p +delegate_virtual_invoke_3_p +delegate_virtual_invoke_4 +delegate_virtual_invoke_4_p +delegate_virtual_invoke_5 +delegate_virtual_invoke_5_p +delegate_virtual_invoke_6 +delegate_virtual_invoke_6_p +delegate_virtual_invoke_7 +delegate_virtual_invoke_7_p +delegate_virtual_invoke_8 +delegate_virtual_invoke_8_p +delegate_virtual_invoke_9 +delegate_virtual_invoke_9_p +delegate_virtual_invoke_imt_0 +delegate_virtual_invoke_imt_0_p +delegate_virtual_invoke_imt_1 +delegate_virtual_invoke_imt_10 +delegate_virtual_invoke_imt_10_p +delegate_virtual_invoke_imt_11 +delegate_virtual_invoke_imt_11_p +delegate_virtual_invoke_imt_12 +delegate_virtual_invoke_imt_12_p +delegate_virtual_invoke_imt_13 +delegate_virtual_invoke_imt_13_p +delegate_virtual_invoke_imt_14 +delegate_virtual_invoke_imt_14_p +delegate_virtual_invoke_imt_15 +delegate_virtual_invoke_imt_15_p +delegate_virtual_invoke_imt_16 +delegate_virtual_invoke_imt_16_p +delegate_virtual_invoke_imt_17 +delegate_virtual_invoke_imt_17_p +delegate_virtual_invoke_imt_18 +delegate_virtual_invoke_imt_18_p +delegate_virtual_invoke_imt_19 +delegate_virtual_invoke_imt_19_p +delegate_virtual_invoke_imt_1_p +delegate_virtual_invoke_imt_2 +delegate_virtual_invoke_imt_20 +delegate_virtual_invoke_imt_20_p +delegate_virtual_invoke_imt_21 +delegate_virtual_invoke_imt_21_p +delegate_virtual_invoke_imt_22 +delegate_virtual_invoke_imt_22_p +delegate_virtual_invoke_imt_23 +delegate_virtual_invoke_imt_23_p +delegate_virtual_invoke_imt_24 +delegate_virtual_invoke_imt_24_p +delegate_virtual_invoke_imt_25 +delegate_virtual_invoke_imt_25_p +delegate_virtual_invoke_imt_26 +delegate_virtual_invoke_imt_26_p +delegate_virtual_invoke_imt_27 +delegate_virtual_invoke_imt_27_p +delegate_virtual_invoke_imt_28 +delegate_virtual_invoke_imt_28_p +delegate_virtual_invoke_imt_29 +delegate_virtual_invoke_imt_29_p +delegate_virtual_invoke_imt_2_p +delegate_virtual_invoke_imt_3 +delegate_virtual_invoke_imt_30 +delegate_virtual_invoke_imt_30_p +delegate_virtual_invoke_imt_31 +delegate_virtual_invoke_imt_31_p +delegate_virtual_invoke_imt_32 +delegate_virtual_invoke_imt_32_p +delegate_virtual_invoke_imt_3_p +delegate_virtual_invoke_imt_4 +delegate_virtual_invoke_imt_4_p +delegate_virtual_invoke_imt_5 +delegate_virtual_invoke_imt_5_p +delegate_virtual_invoke_imt_6 +delegate_virtual_invoke_imt_6_p +delegate_virtual_invoke_imt_7 +delegate_virtual_invoke_imt_7_p +delegate_virtual_invoke_imt_8 +delegate_virtual_invoke_imt_8_p +delegate_virtual_invoke_imt_9 +delegate_virtual_invoke_imt_9_p +delegate_virtual_invoke_imt_m_1 +delegate_virtual_invoke_imt_m_10 +delegate_virtual_invoke_imt_m_10_p +delegate_virtual_invoke_imt_m_11 +delegate_virtual_invoke_imt_m_11_p +delegate_virtual_invoke_imt_m_12 +delegate_virtual_invoke_imt_m_12_p +delegate_virtual_invoke_imt_m_13 +delegate_virtual_invoke_imt_m_13_p +delegate_virtual_invoke_imt_m_14 +delegate_virtual_invoke_imt_m_14_p +delegate_virtual_invoke_imt_m_15 +delegate_virtual_invoke_imt_m_15_p +delegate_virtual_invoke_imt_m_16 +delegate_virtual_invoke_imt_m_16_p +delegate_virtual_invoke_imt_m_17 +delegate_virtual_invoke_imt_m_17_p +delegate_virtual_invoke_imt_m_18 +delegate_virtual_invoke_imt_m_18_p +delegate_virtual_invoke_imt_m_19 +delegate_virtual_invoke_imt_m_19_p +delegate_virtual_invoke_imt_m_1_p +delegate_virtual_invoke_imt_m_2 +delegate_virtual_invoke_imt_m_2_p +delegate_virtual_invoke_imt_m_3 +delegate_virtual_invoke_imt_m_3_p +delegate_virtual_invoke_imt_m_4 +delegate_virtual_invoke_imt_m_4_p +delegate_virtual_invoke_imt_m_5 +delegate_virtual_invoke_imt_m_5_p +delegate_virtual_invoke_imt_m_6 +delegate_virtual_invoke_imt_m_6_p +delegate_virtual_invoke_imt_m_7 +delegate_virtual_invoke_imt_m_7_p +delegate_virtual_invoke_imt_m_8 +delegate_virtual_invoke_imt_m_8_p +delegate_virtual_invoke_imt_m_9 +delegate_virtual_invoke_imt_m_9_p +deleteAllowedHourFormats_67 +devname +devname_r +difftime +digits +dirname +div +dl_iterate_phdr +dladdr +dlclose +dlerror +dlfunc +dlinfo +dll_end +dll_size +dll_start +dllockinit +dlopen +dlsym +dlvsym +do_check_free_chunk +do_check_inuse_chunk +do_check_tree +dp_h +dp_l +drand48 +drem +dremf +dup +dup2 +dvdAuthFinalize +dvdAuthInitialize +dwarf_cie_info_pool +dwarf_reg_state_pool +dynlib_get_obj_member +ebuf +eglBindAPI +eglBindTexImage +eglChooseConfig +eglCopyBuffers +eglCreateContext +eglCreatePbufferFromClientBuffer +eglCreatePbufferSurface +eglCreatePixmapSurface +eglCreateWindowSurface +eglDestroyContext +eglDestroySurface +eglGetConfigAttrib +eglGetConfigs +eglGetCurrentContext +eglGetCurrentDisplay +eglGetCurrentSurface +eglGetDisplay +eglGetError +eglGetProcAddress +eglInitialize +eglMakeCurrent +eglPigletMemoryInfoSCE +eglQueryAPI +eglQueryContext +eglQueryString +eglQuerySurface +eglReleaseTexImage +eglReleaseThread +eglSurfaceAttrib +eglSwapBuffers +eglSwapInterval +eglTerminate +eglWaitClient +eglWaitGL +eglWaitNative +eglib_alloc +environ +era +erand48 +erf +erfc +erfcf +erfcl +erff +erfl +err +err_set_exit +err_set_file +errc +errno +errx +execv +execve +execvp +exit +exp +exp2 +exp2f +exp2ft +exp2l +expand +expf +expl +expm1 +expm1f +expm1l +fabs +fabsf +fabsl +fchdir +fchflags +fchmod +fchmodat +fchown +fchownat +fclose +fcloseall +fcntl +fdatasync +fdim +fdimf +fdiml +fdopen +fdopendir +feclearexcept +fedisableexcept +feenableexcept +fegetenv +fegetexcept +fegetexceptflag +fegetround +fegettrapenable +feholdexcept +feof +feof_unlocked +feraiseexcept +ferror +ferror_unlocked +fesetenv +fesetexceptflag +fesetround +fesettrapenable +fetch_proc_info +fetestexcept +feupdateenv +fflush +fgetc +fgetln +fgetpos +fgets +fgetwc +fgetws +fileno +fileno_unlocked +finite +finitef +fivesbits +flock +flockfile +floor +floorf +floorl +flsl +flush_lock +fma +fmaf +fmal +fmax +fmaxf +fmaxl +fmin +fminf +fminl +fmod +fmodf +fmodl +fmts +fnmatch +fopen +fopen_s +fork +fpathconf +fprintf +fprintf_s +fpurge +fputc +fputs +fputwc +fputws +fread +free +freeSystemMemory +freeVideoMemory +freeaddrinfo +freeifaddrs +freopen +freopen_s +frexp +frexpf +frexpl +fscanf +fscanf_s +fseek +fseeko +fsetpos +fstat +fstatat +fstatfs +fstatvfs +fsync +ft_corner_is_flat +ft_corner_orientation +ft_glyphslot_alloc_bitmap +ft_glyphslot_free_bitmap +ft_glyphslot_set_bitmap +ft_highpow2 +ft_mem_alloc +ft_mem_dup +ft_mem_free +ft_mem_qalloc +ft_mem_qrealloc +ft_mem_realloc +ft_mem_strcpyn +ft_mem_strdup +ft_module_get_service +ft_raster1_renderer_class +ft_raster5_renderer_class +ft_service_list_lookup +ft_smooth_lcd_renderer_class +ft_smooth_lcdv_renderer_class +ft_smooth_renderer_class +ft_stub_set_char_sizes +ft_stub_set_pixel_sizes +ft_synthesize_vertical_metrics +ft_validator_error +ft_validator_init +ft_validator_run +ftell +ftello +ftruncate +ftrylockfile +funlockfile +fuse_add_dirent +fuse_add_direntry +fuse_chan_bufsize +fuse_chan_data +fuse_chan_destroy +fuse_chan_fd +fuse_chan_new +fuse_chan_new_compat24 +fuse_chan_receive +fuse_chan_recv +fuse_chan_send +fuse_chan_session +fuse_daemonize +fuse_destroy +fuse_dirent_size +fuse_exit +fuse_exited +fuse_free_req +fuse_fs_access +fuse_fs_bmap +fuse_fs_chmod +fuse_fs_chown +fuse_fs_create +fuse_fs_destroy +fuse_fs_fgetattr +fuse_fs_flush +fuse_fs_fsync +fuse_fs_fsyncdir +fuse_fs_ftruncate +fuse_fs_getattr +fuse_fs_getxattr +fuse_fs_init +fuse_fs_ioctl +fuse_fs_link +fuse_fs_listxattr +fuse_fs_lock +fuse_fs_mkdir +fuse_fs_mknod +fuse_fs_new +fuse_fs_open +fuse_fs_opendir +fuse_fs_poll +fuse_fs_read +fuse_fs_readdir +fuse_fs_readlink +fuse_fs_release +fuse_fs_releasedir +fuse_fs_removexattr +fuse_fs_rename +fuse_fs_rmdir +fuse_fs_setxattr +fuse_fs_statfs +fuse_fs_symlink +fuse_fs_truncate +fuse_fs_unlink +fuse_fs_utimens +fuse_fs_write +fuse_get_context +fuse_get_context_compat22 +fuse_get_session +fuse_getgroups +fuse_interrupted +fuse_invalidate +fuse_is_lib_option +fuse_kern_chan_new +fuse_kern_mount +fuse_kern_unmount +fuse_loop +fuse_loop_mt +fuse_loop_mt_proc +fuse_lowlevel_is_lib_option +fuse_lowlevel_new +fuse_lowlevel_new_common +fuse_lowlevel_new_compat25 +fuse_lowlevel_notify_inval_entry +fuse_lowlevel_notify_inval_inode +fuse_lowlevel_notify_poll +fuse_main +fuse_main_real +fuse_main_real_compat25 +fuse_mount_compat25 +fuse_new +fuse_new_common +fuse_new_compat25 +fuse_notify_poll +fuse_opt_add_arg +fuse_opt_add_opt +fuse_opt_add_opt_escaped +fuse_opt_free_args +fuse_opt_insert_arg +fuse_opt_insert_arg_compat +fuse_opt_match +fuse_opt_parse +fuse_parse_cmdline +fuse_pollhandle_destroy +fuse_process_cmd +fuse_read_cmd +fuse_register_module +fuse_remove_signal_handlers +fuse_reply_attr +fuse_reply_bmap +fuse_reply_buf +fuse_reply_create +fuse_reply_entry +fuse_reply_err +fuse_reply_ioctl +fuse_reply_ioctl_iov +fuse_reply_ioctl_retry +fuse_reply_iov +fuse_reply_lock +fuse_reply_none +fuse_reply_open +fuse_reply_poll +fuse_reply_readlink +fuse_reply_statfs +fuse_reply_write +fuse_reply_xattr +fuse_req_ctx +fuse_req_ctx_compat24 +fuse_req_getgroups +fuse_req_interrupt_func +fuse_req_interrupted +fuse_req_userdata +fuse_send_reply_iov_nofree +fuse_session_add_chan +fuse_session_data +fuse_session_destroy +fuse_session_exit +fuse_session_exited +fuse_session_loop +fuse_session_loop_mt +fuse_session_new +fuse_session_next_chan +fuse_session_process +fuse_session_remove_chan +fuse_session_reset +fuse_set_getcontext_func +fuse_set_signal_handlers +fuse_setup +fuse_setup_common +fuse_setup_compat25 +fuse_sync_compat_args +fuse_teardown +fuse_teardown_compat22 +fuse_unmount +fuse_unmount_compat22 +fuse_version +futimes +futimesat +fwide +fwprintf +fwprintf_s +fwrite +fwscanf +fwscanf_s +gTimeZoneFilesInitOnce_67 +g_ArrayPrototypePoison +g_Audio3dVirtualSpeakerCount +g_CodeBlockPoison +g_DateInstancePoison +g_DisableAutoHideStartupImage +g_ExplicitDivideByZeroChecks +g_GarlicHeapSize +g_GlobalDataPoison +g_JITCodePoison +g_JSAPIWrapperObjectPoison +g_JSArrayBufferPoison +g_JSCallbackObjectPoison +g_JSFunctionPoison +g_JSGlobalObjectPoison +g_JSScriptFetchParametersPoison +g_JSScriptFetcherPoison +g_JSWebAssemblyCodeBlockPoison +g_JSWebAssemblyInstancePoison +g_JSWebAssemblyMemoryPoison +g_JSWebAssemblyModulePoison +g_JSWebAssemblyTablePoison +g_MonoEnv +g_NativeCodePoison +g_PS4InitializationFlags +g_PS4PushNotifications +g_PS4TitleId +g_PS4TitleNPAgeRating +g_PS4TitleNPHasTrophyPack +g_PS4TitleNPSecret +g_PS4TitleNPServiceId +g_PS4TitleTrial +g_ProGarlicHeapSize +g_ScopedArgumentsPoison +g_SocialScreenEnabled +g_StructureTransitionTablePoison +g_UnlinkedSourceCodePoison +g_UseAudio3dBackend +g_VideoOutBaseModeInitialWidth +g_VideoOutInitialWidth +g_VideoOutPixelFormat +g_VideoOutReprojectionRate +g_WebAssemblyFunctionBasePoison +g_WebAssemblyModuleRecordPoison +g_WebAssemblyToJSCalleePoison +g_WebAssemblyWrapperFunctionPoison +g_array_append_vals +g_array_free +g_array_insert_vals +g_array_new +g_ascii_strcasecmp +g_ascii_strdown +g_ascii_strncasecmp +g_ascii_tolower +g_ascii_xdigit_value +g_assertion_message +g_build_path +g_clear_error +g_config +g_convert +g_dir_close +g_dir_open +g_dir_read_name +g_dir_rewind +g_direct_equal +g_direct_hash +g_error_free +g_file_get_contents +g_file_open_tmp +g_file_test +g_filename_from_uri +g_filename_from_utf8 +g_filename_to_uri +g_find_program_in_path +g_free +g_get_charset +g_get_current_dir +g_get_home_dir +g_get_prgname +g_get_tmp_dir +g_get_user_name +g_getenv +g_hash_table_destroy +g_hash_table_foreach +g_hash_table_foreach_remove +g_hash_table_insert_replace +g_hash_table_iter_init +g_hash_table_iter_next +g_hash_table_lookup +g_hash_table_lookup_extended +g_hash_table_new +g_hash_table_new_full +g_hash_table_remove +g_hash_table_size +g_isConnect +g_list_append +g_list_copy +g_list_delete_link +g_list_find +g_list_foreach +g_list_free +g_list_insert_before +g_list_insert_sorted +g_list_length +g_list_nth +g_list_nth_data +g_list_prepend +g_list_remove +g_list_remove_link +g_list_reverse +g_list_sort +g_locale_from_utf8 +g_locale_to_utf8 +g_log +g_log_set_always_fatal +g_log_set_fatal_mask +g_logv +g_malloc +g_malloc0 +g_markup_parse_context_end_parse +g_markup_parse_context_free +g_markup_parse_context_new +g_markup_parse_context_parse +g_memdup +g_opcodeMap +g_opcodeMapWide16 +g_opcodeMapWide32 +g_path_get_basename +g_path_get_dirname +g_path_is_absolute +g_playerPrefsSupport +g_print +g_printerr +g_ptr_array_add +g_ptr_array_free +g_ptr_array_new +g_ptr_array_remove +g_ptr_array_remove_fast +g_ptr_array_remove_index +g_ptr_array_remove_index_fast +g_ptr_array_set_size +g_ptr_array_sized_new +g_ptr_array_sort +g_queue_free +g_queue_is_empty +g_queue_new +g_queue_pop_head +g_queue_push_head +g_realloc +g_set_prgname +g_setenv +g_shared_slist_free +g_shared_slist_remove +g_shell_parse_argv +g_shell_quote +g_shell_unquote +g_slist_append +g_slist_concat +g_slist_copy +g_slist_delete_link +g_slist_find +g_slist_find_custom +g_slist_foreach +g_slist_free +g_slist_free_1 +g_slist_insert_sorted +g_slist_last +g_slist_length +g_slist_nth +g_slist_nth_data +g_slist_prepend +g_slist_remove +g_slist_reverse +g_snprintf +g_spaced_primes_closest +g_str_equal +g_str_has_prefix +g_str_has_suffix +g_str_hash +g_strchomp +g_strchug +g_strconcat +g_strdelimit +g_strdup +g_strdup_printf +g_strdup_vprintf +g_strerror +g_strfreev +g_string_append +g_string_append_c +g_string_append_len +g_string_append_printf +g_string_append_vprintf +g_string_free +g_string_new +g_string_new_len +g_string_printf +g_string_truncate +g_strjoin +g_strjoinv +g_strlcpy +g_strndup +g_strreverse +g_strsplit +g_timer_destroy +g_timer_elapsed +g_timer_new +g_timer_stop +g_try_malloc +g_try_realloc +g_unichar_tolower +g_unichar_type +g_unsetenv +g_usleep +g_utf16_to_utf8 +g_utf8_strdown +g_utf8_to_utf16 +g_utf8_validate +gai_strerror +gamma +gamma_r +gammaf +gammaf_r +genName +genName.hex +generic_trampoline_aot +generic_trampoline_aot_p +generic_trampoline_aot_plt +generic_trampoline_aot_plt_p +generic_trampoline_delegate +generic_trampoline_delegate_p +generic_trampoline_generic_virtual_remoting +generic_trampoline_generic_virtual_remoting_p +generic_trampoline_jit +generic_trampoline_jit_p +generic_trampoline_jump +generic_trampoline_jump_p +generic_trampoline_rgctx_lazy_fetch +generic_trampoline_rgctx_lazy_fetch_p +generic_trampoline_vcall +generic_trampoline_vcall_p +getAvailableProtocolInfoList +getAvailableProtocolInfoListNum +getCertSigAlgo +getCommInfoListHead +getDecryptionKeys +getDirent +getErrorString +getEventHandlerByProtocolNumber +getLastErrorString +getNumOfCommInfoList +getNumOfProtocolInfoList +getNumOfRegisteredCommInfoList +getProhibitionFlags +getProtocolInfoListHead +getRecvEventQueueByProtocolNumber +getRegisteredCommInfoList +getRegisteredDomain +getSecondaryStreamNumByProtocolNumber +getSendEventQueueByProtocolNumber +getSeqNumForNtfbyCommInfo +getSockListFromCommInfoList +getSocketByProtocolNumber +get_authinfo +get_dyn_info_list_addr +get_module_info_list +get_page_table_stats +get_random +get_sdk_compiled_version +get_self_auth_info +get_vm_map_timestamp +getaddrinfo +getargc +getargv +getc +getc_unlocked +getchar +getchar_unlocked +getcontext +getcwd +getdents +getdirentries +getdtablesize +getegid +getenv +getenv_np +getera +geteuid +getfsstat +getgid +getgroups +gethostbyname +gethostbyname_r +gethostname +getifaddrs +getitimer +getloadavg +getlogin +getlogin_r +getmntinfo +getnameinfo +getopt +getopt.place +getopt_long +getopt_long_only +getpagesize +getpeername +getpid +getppid +getpriority +getprogname +getpwnam_r +getpwuid +getpwuid_r +getrlimit +getrusage +gets +gets_s +getservbyname +getsid +getsockname +getsockopt +gettimeofday +getuid +getw +getwc +getwchar +getwd +getwhex +getzone +getzone_o +glActiveTexture +glAttachShader +glBeginQuery +glBeginQueryEXT +glBeginTransformFeedback +glBindAttribLocation +glBindBuffer +glBindBufferBase +glBindBufferRange +glBindFramebuffer +glBindRenderbuffer +glBindSampler +glBindTexture +glBindTransformFeedback +glBindVertexArray +glBlendColor +glBlendEquation +glBlendEquationSeparate +glBlendFunc +glBlendFuncSeparate +glBlitFramebuffer +glBufferData +glBufferSubData +glCheckFramebufferStatus +glClear +glClearBufferfi +glClearBufferfv +glClearBufferiv +glClearBufferuiv +glClearColor +glClearDepthf +glClearStencil +glClientWaitSync +glColorMask +glCompileShader +glCompressedTexImage2D +glCompressedTexImage3D +glCompressedTexSubImage2D +glCompressedTexSubImage3D +glCopyBufferSubData +glCopyTexImage2D +glCopyTexSubImage2D +glCopyTexSubImage3D +glCreateProgram +glCreateShader +glCullFace +glDeleteBuffers +glDeleteFramebuffers +glDeleteProgram +glDeleteQueries +glDeleteQueriesEXT +glDeleteRenderbuffers +glDeleteSamplers +glDeleteShader +glDeleteSync +glDeleteTextures +glDeleteTransformFeedbacks +glDeleteVertexArrays +glDepthFunc +glDepthMask +glDepthRangef +glDetachShader +glDisable +glDisableVertexAttribArray +glDrawArrays +glDrawArraysInstanced +glDrawArraysInstancedEXT +glDrawBuffers +glDrawElements +glDrawElementsInstanced +glDrawElementsInstancedEXT +glDrawRangeElements +glEnable +glEnableVertexAttribArray +glEndQuery +glEndQueryEXT +glEndTransformFeedback +glFenceSync +glFinish +glFlush +glFlushMappedBufferRange +glFramebufferRenderbuffer +glFramebufferTexture2D +glFramebufferTextureLayer +glFrontFace +glGenBuffers +glGenFramebuffers +glGenQueries +glGenQueriesEXT +glGenRenderbuffers +glGenSamplers +glGenTextures +glGenTransformFeedbacks +glGenVertexArrays +glGenerateMipmap +glGetActiveAttrib +glGetActiveUniform +glGetActiveUniformBlockName +glGetActiveUniformBlockiv +glGetActiveUniformsiv +glGetAttachedShaders +glGetAttribLocation +glGetBooleanv +glGetBufferParameteri64v +glGetBufferParameteriv +glGetBufferPointerv +glGetError +glGetFloatv +glGetFragDataLocation +glGetFramebufferAttachmentParameteriv +glGetInteger64i_v +glGetInteger64v +glGetIntegeri_v +glGetIntegerv +glGetInternalformativ +glGetProgramBinary +glGetProgramInfoLog +glGetProgramiv +glGetQueryObjecti64vEXT +glGetQueryObjectivEXT +glGetQueryObjectui64vEXT +glGetQueryObjectuiv +glGetQueryObjectuivEXT +glGetQueryiv +glGetRenderbufferParameteriv +glGetSamplerParameterfv +glGetSamplerParameteriv +glGetShaderInfoLog +glGetShaderPrecisionFormat +glGetShaderSource +glGetShaderiv +glGetString +glGetStringi +glGetSynciv +glGetTexParameterfv +glGetTexParameteriv +glGetTransformFeedbackVarying +glGetUniformBlockIndex +glGetUniformIndices +glGetUniformLocation +glGetUniformfv +glGetUniformiv +glGetUniformuiv +glGetVertexAttribIiv +glGetVertexAttribIuiv +glGetVertexAttribPointerv +glGetVertexAttribfv +glGetVertexAttribiv +glHint +glInsertEventMarkerColorSCE +glInsertEventMarkerEXT +glInvalidateFramebuffer +glInvalidateSubFramebuffer +glIsBuffer +glIsEnabled +glIsFramebuffer +glIsProgram +glIsQuery +glIsQueryEXT +glIsRenderbuffer +glIsSampler +glIsShader +glIsSync +glIsTexture +glIsTransformFeedback +glIsVertexArray +glLineWidth +glLinkProgram +glMapBufferRange +glOrbisMapTextureResourceSCE +glOrbisTexImageCanvas2DSCE +glOrbisTexImageResourceSCE +glOrbisUnmapTextureResourceSCE +glPauseTransformFeedback +glPigletGetShaderBinarySCE +glPixelStorei +glPolygonOffset +glPopGroupMarkerEXT +glProgramBinary +glProgramParameteri +glPushGroupMarkerColorSCE +glPushGroupMarkerEXT +glQueryCounterEXT +glReadBuffer +glReadPixels +glReleaseShaderCompiler +glRenderbufferStorage +glRenderbufferStorageMultisample +glResumeTransformFeedback +glSampleCoverage +glSamplerParameterf +glSamplerParameterfv +glSamplerParameteri +glSamplerParameteriv +glScissor +glShaderBinary +glShaderSource +glStencilFunc +glStencilFuncSeparate +glStencilMask +glStencilMaskSeparate +glStencilOp +glStencilOpSeparate +glTexImage2D +glTexImage3D +glTexParameterf +glTexParameterfv +glTexParameteri +glTexParameteriv +glTexStorage2D +glTexStorage2DEXT +glTexStorage3D +glTexSubImage2D +glTexSubImage3D +glTextureStorage2DEXT +glTransformFeedbackVaryings +glUniform1f +glUniform1fv +glUniform1i +glUniform1iv +glUniform1ui +glUniform1uiv +glUniform2f +glUniform2fv +glUniform2i +glUniform2iv +glUniform2ui +glUniform2uiv +glUniform3f +glUniform3fv +glUniform3i +glUniform3iv +glUniform3ui +glUniform3uiv +glUniform4f +glUniform4fv +glUniform4i +glUniform4iv +glUniform4ui +glUniform4uiv +glUniformBlockBinding +glUniformMatrix2fv +glUniformMatrix2x3fv +glUniformMatrix2x4fv +glUniformMatrix3fv +glUniformMatrix3x2fv +glUniformMatrix3x4fv +glUniformMatrix4fv +glUniformMatrix4x2fv +glUniformMatrix4x3fv +glUnmapBuffer +glUseProgram +glValidateProgram +glVertexAttrib1f +glVertexAttrib1fv +glVertexAttrib2f +glVertexAttrib2fv +glVertexAttrib3f +glVertexAttrib3fv +glVertexAttrib4f +glVertexAttrib4fv +glVertexAttribDivisor +glVertexAttribDivisorEXT +glVertexAttribI4i +glVertexAttribI4iv +glVertexAttribI4ui +glVertexAttribI4uiv +glVertexAttribIPointer +glVertexAttribPointer +glViewport +glWaitSync +gmtime +gmtime_s +goby_CheckLicense +goby_CheckPersonality +goby_DeleteLink +goby_DescribeActionPlay +goby_Fin +goby_FreeActionResults +goby_FreeLicenseInfo +goby_FreeLinkList +goby_FreeNodeList +goby_FreeRemoteInfo +goby_GetAvailableLinks +goby_GetDUIDParameters +goby_GetLinkPeriod +goby_GetReachableNodes +goby_Init +goby_ManageRights +goby_ProcessMessage +gp_set_functions +gp_trace +gsharedvt_out_trampoline +gsharedvt_out_trampoline_p +gsharedvt_trampoline +gsharedvt_trampoline_p +gxv_module_class +halF +handleSocketError +handler_block_trampoline +handler_block_trampoline_p +hb_blob_create +hb_buffer_add_utf16 +hb_buffer_create +hb_buffer_destroy +hb_buffer_get_direction +hb_buffer_get_glyph_infos +hb_buffer_get_glyph_positions +hb_buffer_get_length +hb_buffer_guess_segment_properties +hb_buffer_reset +hb_buffer_set_direction +hb_buffer_set_script +hb_buffer_set_unicode_funcs +hb_face_create_for_tables +hb_face_destroy +hb_font_create +hb_font_destroy +hb_font_funcs_create +hb_font_funcs_make_immutable +hb_font_funcs_set_glyph_extents_func +hb_font_funcs_set_glyph_func +hb_font_funcs_set_glyph_h_advance_func +hb_font_funcs_set_glyph_h_origin_func +hb_font_funcs_set_nominal_glyph_func +hb_font_funcs_set_variation_glyph_func +hb_font_make_immutable +hb_font_set_funcs +hb_font_set_ppem +hb_font_set_scale +hb_ft_face_create_cached +hb_icu_get_unicode_funcs +hb_icu_script_to_script +hb_ot_layout_language_find_feature +hb_ot_layout_script_get_language_tags +hb_ot_layout_table_get_script_tags +hb_ot_tag_to_script +hb_shape +head_s +htonl +htons +htopdw +htopqw +htopw +hypot +hypot3 +hypot3f +hypot3l +hypotf +hypotl +i2a_ASN1_OBJECT +i2c2i_ +i2d_X509_PUBKEY +i2t_ASN1_OBJECT +ibuf +icudt67_dat +if_nametoindex +ignore_handler_s +il2cpp_add_internal_call +il2cpp_alloc +il2cpp_api_lookup_symbol +il2cpp_api_register_symbols +il2cpp_array_class_get +il2cpp_array_element_size +il2cpp_array_get_byte_length +il2cpp_array_length +il2cpp_array_new +il2cpp_array_new_full +il2cpp_array_new_specific +il2cpp_assembly_get_image +il2cpp_bounded_array_class_get +il2cpp_capture_memory_snapshot +il2cpp_class_array_element_size +il2cpp_class_enum_basetype +il2cpp_class_from_il2cpp_type +il2cpp_class_from_name +il2cpp_class_from_system_type +il2cpp_class_from_type +il2cpp_class_get_assemblyname +il2cpp_class_get_bitmap +il2cpp_class_get_bitmap_size +il2cpp_class_get_declaring_type +il2cpp_class_get_element_class +il2cpp_class_get_events +il2cpp_class_get_field_from_name +il2cpp_class_get_fields +il2cpp_class_get_flags +il2cpp_class_get_image +il2cpp_class_get_interfaces +il2cpp_class_get_method_from_name +il2cpp_class_get_methods +il2cpp_class_get_name +il2cpp_class_get_namespace +il2cpp_class_get_nested_types +il2cpp_class_get_parent +il2cpp_class_get_properties +il2cpp_class_get_property_from_name +il2cpp_class_get_type +il2cpp_class_has_attribute +il2cpp_class_has_parent +il2cpp_class_has_references +il2cpp_class_instance_size +il2cpp_class_is_abstract +il2cpp_class_is_assignable_from +il2cpp_class_is_enum +il2cpp_class_is_generic +il2cpp_class_is_inflated +il2cpp_class_is_interface +il2cpp_class_is_subclass_of +il2cpp_class_is_valuetype +il2cpp_class_num_fields +il2cpp_class_value_size +il2cpp_current_thread_get_frame_at +il2cpp_current_thread_get_stack_depth +il2cpp_current_thread_get_top_frame +il2cpp_current_thread_walk_frame_stack +il2cpp_domain_assembly_open +il2cpp_domain_get +il2cpp_domain_get_assemblies +il2cpp_exception_from_name_msg +il2cpp_field_get_flags +il2cpp_field_get_name +il2cpp_field_get_offset +il2cpp_field_get_parent +il2cpp_field_get_type +il2cpp_field_get_value +il2cpp_field_get_value_object +il2cpp_field_has_attribute +il2cpp_field_set_value +il2cpp_field_set_value_object +il2cpp_field_static_get_value +il2cpp_field_static_set_value +il2cpp_format_exception +il2cpp_format_stack_trace +il2cpp_free +il2cpp_free_captured_memory_snapshot +il2cpp_gc_collect +il2cpp_gc_collect_a_little +il2cpp_gc_disable +il2cpp_gc_enable +il2cpp_gc_get_heap_size +il2cpp_gc_get_used_size +il2cpp_gchandle_free +il2cpp_gchandle_get_target +il2cpp_gchandle_new +il2cpp_gchandle_new_weakref +il2cpp_get_corlib +il2cpp_get_exception_argument_null +il2cpp_image_get_assembly +il2cpp_image_get_entry_point +il2cpp_image_get_filename +il2cpp_image_get_name +il2cpp_init +il2cpp_init_utf16 +il2cpp_is_vm_thread +il2cpp_method_get_class +il2cpp_method_get_declaring_type +il2cpp_method_get_flags +il2cpp_method_get_name +il2cpp_method_get_object +il2cpp_method_get_param +il2cpp_method_get_param_count +il2cpp_method_get_param_name +il2cpp_method_get_return_type +il2cpp_method_get_token +il2cpp_method_has_attribute +il2cpp_method_is_generic +il2cpp_method_is_inflated +il2cpp_method_is_instance +il2cpp_monitor_enter +il2cpp_monitor_exit +il2cpp_monitor_pulse +il2cpp_monitor_pulse_all +il2cpp_monitor_try_enter +il2cpp_monitor_try_wait +il2cpp_monitor_wait +il2cpp_object_get_class +il2cpp_object_get_size +il2cpp_object_get_virtual_method +il2cpp_object_new +il2cpp_object_unbox +il2cpp_profiler_install +il2cpp_profiler_install_allocation +il2cpp_profiler_install_enter_leave +il2cpp_profiler_install_gc +il2cpp_profiler_set_events +il2cpp_property_get_flags +il2cpp_property_get_get_method +il2cpp_property_get_name +il2cpp_property_get_parent +il2cpp_property_get_set_method +il2cpp_raise_exception +il2cpp_register_log_callback +il2cpp_resolve_icall +il2cpp_runtime_class_init +il2cpp_runtime_invoke +il2cpp_runtime_invoke_convert_args +il2cpp_runtime_object_init +il2cpp_runtime_object_init_exception +il2cpp_runtime_unhandled_exception_policy_set +il2cpp_set_commandline_arguments +il2cpp_set_commandline_arguments_utf16 +il2cpp_set_config +il2cpp_set_config_dir +il2cpp_set_config_utf16 +il2cpp_set_data_dir +il2cpp_set_find_plugin_callback +il2cpp_set_memory_callbacks +il2cpp_shutdown +il2cpp_stats_dump_to_file +il2cpp_stats_get_value +il2cpp_string_chars +il2cpp_string_intern +il2cpp_string_is_interned +il2cpp_string_length +il2cpp_string_new +il2cpp_string_new_len +il2cpp_string_new_utf16 +il2cpp_string_new_wrapper +il2cpp_thread_attach +il2cpp_thread_current +il2cpp_thread_detach +il2cpp_thread_get_all_attached_threads +il2cpp_thread_get_frame_at +il2cpp_thread_get_name +il2cpp_thread_get_stack_depth +il2cpp_thread_get_top_frame +il2cpp_thread_walk_frame_stack +il2cpp_type_get_class_or_element_class +il2cpp_type_get_name +il2cpp_type_get_object +il2cpp_type_get_type +il2cpp_unhandled_exception +il2cpp_unity_liveness_calculation_begin +il2cpp_unity_liveness_calculation_end +il2cpp_unity_liveness_calculation_from_root +il2cpp_unity_liveness_calculation_from_statics +il2cpp_value_box +ilogb +ilogbf +ilogbl +imaxabs +imaxdiv +in6addr_any +in6addr_loopback +incoming_area +index +inet_addr +inet_aton +inet_ntoa +inet_ntoa_r +inet_ntop +inet_pton +inflate +inflateEnd +inflateInit2_ +inflateInit_ +inflateReset +infoLock +infoUnlock +initCommInfo +initCommInfoList +initDecidBootEvf +initInetAddressIDs +initProtocolInfoList +initThread +init_at_thread_exit_mutex +init_jk +initcloc +initialize_Jp +initstate +internal_memalign +internal_realloc +internal_reallocalign +intro_sort +invpio2hi +invpio2lo +ioctl +ipio2 +ipmimgr_call +ipv6_available +isExpectedMessage +is_in_sandbox +isalnum +isalpha +isatty +isblank +iscntrl +isdigit +isdst +isgraph +isinf +islower +isnan +isnanf +isobmf_box_getchildbox +isobmf_box_getdiskoffset +isobmf_box_getflags32b +isobmf_box_getmember_length +isobmf_box_getmember_ptr +isobmf_box_getmember_type +isobmf_box_getnextbox +isobmf_box_getstate +isobmf_box_gettype +isobmf_decoder_clear +isobmf_decoder_create +isobmf_decoder_decode +isobmf_decoder_destroy +isobmf_decoder_get_decoder_tree +isobmf_decoder_getquerydata +isobmf_decoder_next_disk_offset +isobmf_decoder_query +isobmf_memmanager_set +isprint +ispunct +issetugid +isspace +isupper +iswalnum +iswalpha +iswblank +iswcntrl +iswctype +iswdigit +iswgraph +iswlower +iswprint +iswpunct +iswspace +iswupper +iswxdigit +isxdigit +izrule_clone_67 +izrule_close_67 +izrule_equals_67 +izrule_getDSTSavings_67 +izrule_getDynamicClassID_67 +izrule_getFinalStart_67 +izrule_getFirstStart_67 +izrule_getName_67 +izrule_getNextStart_67 +izrule_getPreviousStart_67 +izrule_getRawOffset_67 +izrule_getStaticClassID_67 +izrule_isEquivalentTo_67 +izrule_open_67 +j0 +j0f +j1 +j1f +jcopy_block_row +jcopy_sample_rows +jdiv_round_up +jinit_1pass_quantizer +jinit_2pass_quantizer +jinit_arith_decoder +jinit_arith_encoder +jinit_c_coef_controller +jinit_c_main_controller +jinit_c_master_control +jinit_c_prep_controller +jinit_color_converter +jinit_color_deconverter +jinit_compress_master +jinit_d_coef_controller +jinit_d_main_controller +jinit_d_post_controller +jinit_downsampler +jinit_forward_dct +jinit_huff_decoder +jinit_huff_encoder +jinit_input_controller +jinit_inverse_dct +jinit_marker_reader +jinit_marker_writer +jinit_master_decompress +jinit_memory_mgr +jinit_merged_upsampler +jinit_upsampler +jio_fprintf +jio_print +jio_printf +jio_snprintf +jio_vfprintf +jio_vsnprintf +jit_area +jit_info_table_new +jn +jnf +jpeg_CreateCompress +jpeg_CreateDecompress +jpeg_abort +jpeg_abort_compress +jpeg_abort_decompress +jpeg_add_quant_table +jpeg_alloc_huff_table +jpeg_alloc_quant_table +jpeg_aritab +jpeg_calc_jpeg_dimensions +jpeg_calc_output_dimensions +jpeg_consume_input +jpeg_copy_critical_parameters +jpeg_core_output_dimensions +jpeg_default_colorspace +jpeg_default_qtables +jpeg_destroy +jpeg_destroy_compress +jpeg_destroy_decompress +jpeg_fdct_10x10 +jpeg_fdct_10x5 +jpeg_fdct_11x11 +jpeg_fdct_12x12 +jpeg_fdct_12x6 +jpeg_fdct_13x13 +jpeg_fdct_14x14 +jpeg_fdct_14x7 +jpeg_fdct_15x15 +jpeg_fdct_16x16 +jpeg_fdct_16x8 +jpeg_fdct_1x1 +jpeg_fdct_1x2 +jpeg_fdct_2x1 +jpeg_fdct_2x2 +jpeg_fdct_2x4 +jpeg_fdct_3x3 +jpeg_fdct_3x6 +jpeg_fdct_4x2 +jpeg_fdct_4x4 +jpeg_fdct_4x8 +jpeg_fdct_5x10 +jpeg_fdct_5x5 +jpeg_fdct_6x12 +jpeg_fdct_6x3 +jpeg_fdct_6x6 +jpeg_fdct_7x14 +jpeg_fdct_7x7 +jpeg_fdct_8x16 +jpeg_fdct_8x4 +jpeg_fdct_9x9 +jpeg_fdct_float +jpeg_fdct_ifast +jpeg_fdct_islow +jpeg_finish_compress +jpeg_finish_decompress +jpeg_finish_output +jpeg_free_large +jpeg_free_small +jpeg_get_large +jpeg_get_small +jpeg_has_multiple_scans +jpeg_idct_10x10 +jpeg_idct_10x5 +jpeg_idct_11x11 +jpeg_idct_12x12 +jpeg_idct_12x6 +jpeg_idct_13x13 +jpeg_idct_14x14 +jpeg_idct_14x7 +jpeg_idct_15x15 +jpeg_idct_16x16 +jpeg_idct_16x8 +jpeg_idct_1x1 +jpeg_idct_1x2 +jpeg_idct_2x1 +jpeg_idct_2x2 +jpeg_idct_2x4 +jpeg_idct_3x3 +jpeg_idct_3x6 +jpeg_idct_4x2 +jpeg_idct_4x4 +jpeg_idct_4x8 +jpeg_idct_5x10 +jpeg_idct_5x5 +jpeg_idct_6x12 +jpeg_idct_6x3 +jpeg_idct_6x6 +jpeg_idct_7x14 +jpeg_idct_7x7 +jpeg_idct_8x16 +jpeg_idct_8x4 +jpeg_idct_9x9 +jpeg_idct_float +jpeg_idct_ifast +jpeg_idct_islow +jpeg_input_complete +jpeg_mem_available +jpeg_mem_dest +jpeg_mem_init +jpeg_mem_src +jpeg_mem_term +jpeg_natural_order +jpeg_natural_order2 +jpeg_natural_order3 +jpeg_natural_order4 +jpeg_natural_order5 +jpeg_natural_order6 +jpeg_natural_order7 +jpeg_new_colormap +jpeg_open_backing_store +jpeg_quality_scaling +jpeg_read_coefficients +jpeg_read_header +jpeg_read_raw_data +jpeg_read_scanlines +jpeg_resync_to_restart +jpeg_save_markers +jpeg_set_colorspace +jpeg_set_defaults +jpeg_set_linear_quality +jpeg_set_marker_processor +jpeg_set_quality +jpeg_simple_progression +jpeg_start_compress +jpeg_start_decompress +jpeg_start_output +jpeg_std_error +jpeg_std_message_table +jpeg_stdio_dest +jpeg_stdio_src +jpeg_suppress_tables +jpeg_write_coefficients +jpeg_write_m_byte +jpeg_write_m_header +jpeg_write_marker +jpeg_write_raw_data +jpeg_write_scanlines +jpeg_write_tables +jrand48 +jround_up +jvmciHotSpotVMAddresses +jvmciHotSpotVMIntConstants +jvmciHotSpotVMLongConstants +jvmciHotSpotVMStructs +jvmciHotSpotVMTypes +jzero_far +kJSClassDefinitionEmpty +kenv +kevent +kickEnable +kill +kldfind +kldfirstmod +kldload +kldnext +kldstat +kldsym +kldunload +kmq_notify +kmq_open +kmq_setattr +kmq_timedreceive +kmq_timedsend +kmq_unlink +kqueue +ksem_close +ksem_destroy +ksem_getvalue +ksem_init +ksem_open +ksem_post +ksem_timedwait +ksem_trywait +ksem_unlink +ksem_wait +ktimer_create +ktimer_delete +ktimer_getoverrun +ktimer_gettime +ktimer_settime +ktrace +labs +last_good_addr +lchflags +lchmod +lchown +lcong48 +ldexp +ldexpf +ldexpl +ldigs +ldiv +lga_victim +lgamma +lgamma_r +lgammaf +lgammaf_r +lgammal +libc_application_heap_api +linear_search +link +linkat +listen +llabs +lldiv +llrint +llrintf +llrintl +llround +llroundf +llroundl +llvm_resume_unwind_trampoline +llvm_resume_unwind_trampoline_p +llvm_throw_corlib_exception_abs_trampoline +llvm_throw_corlib_exception_abs_trampoline_p +llvm_throw_corlib_exception_trampoline +llvm_throw_corlib_exception_trampoline_p +lmos +ln2HI +ln2LO +lnbias +local_addr_space +locale_getKeywordsStart +locale_getKeywordsStart_67 +locale_getKeywords_67 +locale_get_default_67 +locale_set_default_67 +localeconv +localtime +localtime_r +localtime_s +log +log10 +log10f +log10l +log1p +log1pf +log1pl +log2 +log2e +log2f +log2l +logF_head +logF_tail +logb +logbf +logbl +logf +logl +longjmp +lrand48 +lrint +lrintf +lrintl +lround +lroundf +lroundl +lseek +lstat +lutimes +madvise +makeDeciHdr +makeDeciHeader +makeUlpCmdHdr +makeUlpCmdHdrNoFragment +makeUlpNtfHdr +makeUlpNtfHdrNoFragment +makeUlpResHdr +makeUlpResHdrNoFragment +makecontext +malloc +malloc_check_memory_bounds +malloc_finalize +malloc_get_footer_value +malloc_get_malloc_state +malloc_initialize +malloc_report_memory_blocks +malloc_stats +malloc_stats_fast +malloc_usable_size +mallopt +mask +max_lock +mblen +mbrlen +mbrtoc16 +mbrtoc32 +mbrtowc +mbsinit +mbsrtowcs +mbsrtowcs_s +mbst +mbstowcs +mbstowcs_s +mbtowc +mdbg_call +mdbg_service +memalign +memchr +memcmp +memcpy +memcpy_s +memmove +memmove_s +memrchr +memset +memset_s +mergesort +metadata_alloc +metadata_area +mincore +mini_create_jit_domain_info +mini_free_jit_domain_info +mini_get_debug_options +mini_install_runtime_callbacks +mini_set_debug_options +mkdir +mkdirat +mkstemp +mktime +mlock +mlockall +mmap +mmap_np +mmsize_is_not_initialized +mode_set_alluser +modf +modff +modfl +moduleSegAddrKernelEnd +moduleSegAddrKernelStart +module_start +module_start_2 +module_stop +mono_add_internal_call +mono_allocator_free +mono_allocator_malloc +mono_allocator_malloc0 +mono_allocator_memdup +mono_allocator_stats +mono_allocator_strdup +mono_allocator_strdup_printf +mono_amd64_have_tls_get +mono_aot_ClassLibrary1jit_code_end +mono_aot_ClassLibrary1jit_code_start +mono_aot_ClassLibrary1jit_got +mono_aot_ClassLibrary1method_addresses +mono_aot_ClassLibrary1plt +mono_aot_ClassLibrary1plt_end +mono_aot_ClassLibrary1unbox_trampoline_addresses +mono_aot_ClassLibrary1unbox_trampolines +mono_aot_ClassLibrary1unbox_trampolines_end +mono_aot_ClassLibrary1unwind_info +mono_aot_I18N_CJKjit_code_end +mono_aot_I18N_CJKjit_code_start +mono_aot_I18N_CJKjit_got +mono_aot_I18N_CJKmethod_addresses +mono_aot_I18N_CJKplt +mono_aot_I18N_CJKplt_end +mono_aot_I18N_CJKunbox_trampoline_addresses +mono_aot_I18N_CJKunbox_trampolines +mono_aot_I18N_CJKunbox_trampolines_end +mono_aot_I18N_CJKunwind_info +mono_aot_I18N_MidEastjit_code_end +mono_aot_I18N_MidEastjit_code_start +mono_aot_I18N_MidEastjit_got +mono_aot_I18N_MidEastmethod_addresses +mono_aot_I18N_MidEastplt +mono_aot_I18N_MidEastplt_end +mono_aot_I18N_MidEastunbox_trampoline_addresses +mono_aot_I18N_MidEastunbox_trampolines +mono_aot_I18N_MidEastunbox_trampolines_end +mono_aot_I18N_MidEastunwind_info +mono_aot_I18N_Otherjit_code_end +mono_aot_I18N_Otherjit_code_start +mono_aot_I18N_Otherjit_got +mono_aot_I18N_Othermethod_addresses +mono_aot_I18N_Otherplt +mono_aot_I18N_Otherplt_end +mono_aot_I18N_Otherunbox_trampoline_addresses +mono_aot_I18N_Otherunbox_trampolines +mono_aot_I18N_Otherunbox_trampolines_end +mono_aot_I18N_Otherunwind_info +mono_aot_I18N_Rarejit_code_end +mono_aot_I18N_Rarejit_code_start +mono_aot_I18N_Rarejit_got +mono_aot_I18N_Raremethod_addresses +mono_aot_I18N_Rareplt +mono_aot_I18N_Rareplt_end +mono_aot_I18N_Rareunbox_trampoline_addresses +mono_aot_I18N_Rareunbox_trampolines +mono_aot_I18N_Rareunbox_trampolines_end +mono_aot_I18N_Rareunwind_info +mono_aot_I18N_Westjit_code_end +mono_aot_I18N_Westjit_code_start +mono_aot_I18N_Westjit_got +mono_aot_I18N_Westmethod_addresses +mono_aot_I18N_Westplt +mono_aot_I18N_Westplt_end +mono_aot_I18N_Westunbox_trampoline_addresses +mono_aot_I18N_Westunbox_trampolines +mono_aot_I18N_Westunbox_trampolines_end +mono_aot_I18N_Westunwind_info +mono_aot_I18Njit_code_end +mono_aot_I18Njit_code_start +mono_aot_I18Njit_got +mono_aot_I18Nmethod_addresses +mono_aot_I18Nplt +mono_aot_I18Nplt_end +mono_aot_I18Nunbox_trampoline_addresses +mono_aot_I18Nunbox_trampolines +mono_aot_I18Nunbox_trampolines_end +mono_aot_I18Nunwind_info +mono_aot_JSC_Netjit_code_end +mono_aot_JSC_Netjit_code_start +mono_aot_JSC_Netjit_got +mono_aot_JSC_Netmethod_addresses +mono_aot_JSC_Netplt +mono_aot_JSC_Netplt_end +mono_aot_JSC_Netunbox_trampoline_addresses +mono_aot_JSC_Netunbox_trampolines +mono_aot_JSC_Netunbox_trampolines_end +mono_aot_JSC_Netunwind_info +mono_aot_Microsoft_CSharpjit_code_end +mono_aot_Microsoft_CSharpjit_code_start +mono_aot_Microsoft_CSharpjit_got +mono_aot_Microsoft_CSharpmethod_addresses +mono_aot_Microsoft_CSharpplt +mono_aot_Microsoft_CSharpplt_end +mono_aot_Microsoft_CSharpunbox_trampoline_addresses +mono_aot_Microsoft_CSharpunbox_trampolines +mono_aot_Microsoft_CSharpunbox_trampolines_end +mono_aot_Microsoft_CSharpunwind_info +mono_aot_Mono_CSharpjit_code_end +mono_aot_Mono_CSharpjit_code_start +mono_aot_Mono_CSharpjit_got +mono_aot_Mono_CSharpmethod_addresses +mono_aot_Mono_CSharpplt +mono_aot_Mono_CSharpplt_end +mono_aot_Mono_CSharpunbox_trampoline_addresses +mono_aot_Mono_CSharpunbox_trampolines +mono_aot_Mono_CSharpunbox_trampolines_end +mono_aot_Mono_CSharpunwind_info +mono_aot_Mono_Cairojit_code_end +mono_aot_Mono_Cairojit_code_start +mono_aot_Mono_Cairojit_got +mono_aot_Mono_Cairomethod_addresses +mono_aot_Mono_Cairoplt +mono_aot_Mono_Cairoplt_end +mono_aot_Mono_Cairounbox_trampoline_addresses +mono_aot_Mono_Cairounbox_trampolines +mono_aot_Mono_Cairounbox_trampolines_end +mono_aot_Mono_Cairounwind_info +mono_aot_Mono_Data_Sqlitejit_code_end +mono_aot_Mono_Data_Sqlitejit_code_start +mono_aot_Mono_Data_Sqlitejit_got +mono_aot_Mono_Data_Sqlitemethod_addresses +mono_aot_Mono_Data_Sqliteplt +mono_aot_Mono_Data_Sqliteplt_end +mono_aot_Mono_Data_Sqliteunbox_trampoline_addresses +mono_aot_Mono_Data_Sqliteunbox_trampolines +mono_aot_Mono_Data_Sqliteunbox_trampolines_end +mono_aot_Mono_Data_Sqliteunwind_info +mono_aot_Mono_Data_Tdsjit_code_end +mono_aot_Mono_Data_Tdsjit_code_start +mono_aot_Mono_Data_Tdsjit_got +mono_aot_Mono_Data_Tdsmethod_addresses +mono_aot_Mono_Data_Tdsplt +mono_aot_Mono_Data_Tdsplt_end +mono_aot_Mono_Data_Tdsunbox_trampoline_addresses +mono_aot_Mono_Data_Tdsunbox_trampolines +mono_aot_Mono_Data_Tdsunbox_trampolines_end +mono_aot_Mono_Data_Tdsunwind_info +mono_aot_Mono_Dynamic_Interpreterjit_code_end +mono_aot_Mono_Dynamic_Interpreterjit_code_start +mono_aot_Mono_Dynamic_Interpreterjit_got +mono_aot_Mono_Dynamic_Interpretermethod_addresses +mono_aot_Mono_Dynamic_Interpreterplt +mono_aot_Mono_Dynamic_Interpreterplt_end +mono_aot_Mono_Dynamic_Interpreterunbox_trampoline_addresses +mono_aot_Mono_Dynamic_Interpreterunbox_trampolines +mono_aot_Mono_Dynamic_Interpreterunbox_trampolines_end +mono_aot_Mono_Dynamic_Interpreterunwind_info +mono_aot_Mono_Securityjit_code_end +mono_aot_Mono_Securityjit_code_start +mono_aot_Mono_Securityjit_got +mono_aot_Mono_Securitymethod_addresses +mono_aot_Mono_Securityplt +mono_aot_Mono_Securityplt_end +mono_aot_Mono_Securityunbox_trampoline_addresses +mono_aot_Mono_Securityunbox_trampolines +mono_aot_Mono_Securityunbox_trampolines_end +mono_aot_Mono_Securityunwind_info +mono_aot_Newtonsoft_Json_PlayStationjit_code_end +mono_aot_Newtonsoft_Json_PlayStationjit_code_start +mono_aot_Newtonsoft_Json_PlayStationjit_got +mono_aot_Newtonsoft_Json_PlayStationmethod_addresses +mono_aot_Newtonsoft_Json_PlayStationplt +mono_aot_Newtonsoft_Json_PlayStationplt_end +mono_aot_Newtonsoft_Json_PlayStationunbox_trampoline_addresses +mono_aot_Newtonsoft_Json_PlayStationunbox_trampolines +mono_aot_Newtonsoft_Json_PlayStationunbox_trampolines_end +mono_aot_Newtonsoft_Json_PlayStationunwind_info +mono_aot_ReactNative_Components_Vshjit_code_end +mono_aot_ReactNative_Components_Vshjit_code_start +mono_aot_ReactNative_Components_Vshjit_got +mono_aot_ReactNative_Components_Vshmethod_addresses +mono_aot_ReactNative_Components_Vshplt +mono_aot_ReactNative_Components_Vshplt_end +mono_aot_ReactNative_Components_Vshunbox_trampoline_addresses +mono_aot_ReactNative_Components_Vshunbox_trampolines +mono_aot_ReactNative_Components_Vshunbox_trampolines_end +mono_aot_ReactNative_Components_Vshunwind_info +mono_aot_ReactNative_Debug_DevSupportjit_code_end +mono_aot_ReactNative_Debug_DevSupportjit_code_start +mono_aot_ReactNative_Debug_DevSupportjit_got +mono_aot_ReactNative_Debug_DevSupportmethod_addresses +mono_aot_ReactNative_Debug_DevSupportplt +mono_aot_ReactNative_Debug_DevSupportplt_end +mono_aot_ReactNative_Debug_DevSupportunbox_trampoline_addresses +mono_aot_ReactNative_Debug_DevSupportunbox_trampolines +mono_aot_ReactNative_Debug_DevSupportunbox_trampolines_end +mono_aot_ReactNative_Debug_DevSupportunwind_info +mono_aot_ReactNative_Modules_Vsh_Gct_Telemetry2jit_code_end +mono_aot_ReactNative_Modules_Vsh_Gct_Telemetry2jit_code_start +mono_aot_ReactNative_Modules_Vsh_Gct_Telemetry2jit_got +mono_aot_ReactNative_Modules_Vsh_Gct_Telemetry2method_addresses +mono_aot_ReactNative_Modules_Vsh_Gct_Telemetry2plt +mono_aot_ReactNative_Modules_Vsh_Gct_Telemetry2plt_end +mono_aot_ReactNative_Modules_Vsh_Gct_Telemetry2unbox_trampoline_addresses +mono_aot_ReactNative_Modules_Vsh_Gct_Telemetry2unbox_trampolines +mono_aot_ReactNative_Modules_Vsh_Gct_Telemetry2unbox_trampolines_end +mono_aot_ReactNative_Modules_Vsh_Gct_Telemetry2unwind_info +mono_aot_ReactNative_Modules_Vsh_Gct_Telemetryjit_code_end +mono_aot_ReactNative_Modules_Vsh_Gct_Telemetryjit_code_start +mono_aot_ReactNative_Modules_Vsh_Gct_Telemetryjit_got +mono_aot_ReactNative_Modules_Vsh_Gct_Telemetrymethod_addresses +mono_aot_ReactNative_Modules_Vsh_Gct_Telemetryplt +mono_aot_ReactNative_Modules_Vsh_Gct_Telemetryplt_end +mono_aot_ReactNative_Modules_Vsh_Gct_Telemetryunbox_trampoline_addresses +mono_aot_ReactNative_Modules_Vsh_Gct_Telemetryunbox_trampolines +mono_aot_ReactNative_Modules_Vsh_Gct_Telemetryunbox_trampolines_end +mono_aot_ReactNative_Modules_Vsh_Gct_Telemetryunwind_info +mono_aot_ReactNative_Modules_Vshjit_code_end +mono_aot_ReactNative_Modules_Vshjit_code_start +mono_aot_ReactNative_Modules_Vshjit_got +mono_aot_ReactNative_Modules_Vshmethod_addresses +mono_aot_ReactNative_Modules_Vshplt +mono_aot_ReactNative_Modules_Vshplt_end +mono_aot_ReactNative_Modules_Vshunbox_trampoline_addresses +mono_aot_ReactNative_Modules_Vshunbox_trampolines +mono_aot_ReactNative_Modules_Vshunbox_trampolines_end +mono_aot_ReactNative_Modules_Vshunwind_info +mono_aot_ReactNative_PUIjit_code_end +mono_aot_ReactNative_PUIjit_code_start +mono_aot_ReactNative_PUIjit_got +mono_aot_ReactNative_PUImethod_addresses +mono_aot_ReactNative_PUIplt +mono_aot_ReactNative_PUIplt_end +mono_aot_ReactNative_PUIunbox_trampoline_addresses +mono_aot_ReactNative_PUIunbox_trampolines +mono_aot_ReactNative_PUIunbox_trampolines_end +mono_aot_ReactNative_PUIunwind_info +mono_aot_ReactNative_Vsh_Commonjit_code_end +mono_aot_ReactNative_Vsh_Commonjit_code_start +mono_aot_ReactNative_Vsh_Commonjit_got +mono_aot_ReactNative_Vsh_Commonmethod_addresses +mono_aot_ReactNative_Vsh_Commonplt +mono_aot_ReactNative_Vsh_Commonplt_end +mono_aot_ReactNative_Vsh_Commonunbox_trampoline_addresses +mono_aot_ReactNative_Vsh_Commonunbox_trampolines +mono_aot_ReactNative_Vsh_Commonunbox_trampolines_end +mono_aot_ReactNative_Vsh_Commonunwind_info +mono_aot_SMDiagnosticsjit_code_end +mono_aot_SMDiagnosticsjit_code_start +mono_aot_SMDiagnosticsjit_got +mono_aot_SMDiagnosticsmethod_addresses +mono_aot_SMDiagnosticsplt +mono_aot_SMDiagnosticsplt_end +mono_aot_SMDiagnosticsunbox_trampoline_addresses +mono_aot_SMDiagnosticsunbox_trampolines +mono_aot_SMDiagnosticsunbox_trampolines_end +mono_aot_SMDiagnosticsunwind_info +mono_aot_Sce_Cdlg_Platformjit_code_end +mono_aot_Sce_Cdlg_Platformjit_code_start +mono_aot_Sce_Cdlg_Platformjit_got +mono_aot_Sce_Cdlg_Platformmethod_addresses +mono_aot_Sce_Cdlg_Platformplt +mono_aot_Sce_Cdlg_Platformplt_end +mono_aot_Sce_Cdlg_Platformunbox_trampoline_addresses +mono_aot_Sce_Cdlg_Platformunbox_trampolines +mono_aot_Sce_Cdlg_Platformunbox_trampolines_end +mono_aot_Sce_Cdlg_Platformunwind_info +mono_aot_Sce_CloudClient_App_Platformjit_code_end +mono_aot_Sce_CloudClient_App_Platformjit_code_start +mono_aot_Sce_CloudClient_App_Platformjit_got +mono_aot_Sce_CloudClient_App_Platformmethod_addresses +mono_aot_Sce_CloudClient_App_Platformplt +mono_aot_Sce_CloudClient_App_Platformplt_end +mono_aot_Sce_CloudClient_App_Platformunbox_trampoline_addresses +mono_aot_Sce_CloudClient_App_Platformunbox_trampolines +mono_aot_Sce_CloudClient_App_Platformunbox_trampolines_end +mono_aot_Sce_CloudClient_App_Platformunwind_info +mono_aot_Sce_Facebook_CSSLayoutjit_code_end +mono_aot_Sce_Facebook_CSSLayoutjit_code_start +mono_aot_Sce_Facebook_CSSLayoutjit_got +mono_aot_Sce_Facebook_CSSLayoutmethod_addresses +mono_aot_Sce_Facebook_CSSLayoutplt +mono_aot_Sce_Facebook_CSSLayoutplt_end +mono_aot_Sce_Facebook_CSSLayoutunbox_trampoline_addresses +mono_aot_Sce_Facebook_CSSLayoutunbox_trampolines +mono_aot_Sce_Facebook_CSSLayoutunbox_trampolines_end +mono_aot_Sce_Facebook_CSSLayoutunwind_info +mono_aot_Sce_PlayStation_BclExtensionsjit_code_end +mono_aot_Sce_PlayStation_BclExtensionsjit_code_start +mono_aot_Sce_PlayStation_BclExtensionsjit_got +mono_aot_Sce_PlayStation_BclExtensionsmethod_addresses +mono_aot_Sce_PlayStation_BclExtensionsplt +mono_aot_Sce_PlayStation_BclExtensionsplt_end +mono_aot_Sce_PlayStation_BclExtensionsunbox_trampoline_addresses +mono_aot_Sce_PlayStation_BclExtensionsunbox_trampolines +mono_aot_Sce_PlayStation_BclExtensionsunbox_trampolines_end +mono_aot_Sce_PlayStation_BclExtensionsunwind_info +mono_aot_Sce_PlayStation_Corejit_code_end +mono_aot_Sce_PlayStation_Corejit_code_start +mono_aot_Sce_PlayStation_Corejit_got +mono_aot_Sce_PlayStation_Coremethod_addresses +mono_aot_Sce_PlayStation_Coreplt +mono_aot_Sce_PlayStation_Coreplt_end +mono_aot_Sce_PlayStation_Coreunbox_trampoline_addresses +mono_aot_Sce_PlayStation_Coreunbox_trampolines +mono_aot_Sce_PlayStation_Coreunbox_trampolines_end +mono_aot_Sce_PlayStation_Coreunwind_info +mono_aot_Sce_PlayStation_HighLevel_UI2Platformjit_code_end +mono_aot_Sce_PlayStation_HighLevel_UI2Platformjit_code_start +mono_aot_Sce_PlayStation_HighLevel_UI2Platformjit_got +mono_aot_Sce_PlayStation_HighLevel_UI2Platformmethod_addresses +mono_aot_Sce_PlayStation_HighLevel_UI2Platformplt +mono_aot_Sce_PlayStation_HighLevel_UI2Platformplt_end +mono_aot_Sce_PlayStation_HighLevel_UI2Platformunbox_trampoline_addresses +mono_aot_Sce_PlayStation_HighLevel_UI2Platformunbox_trampolines +mono_aot_Sce_PlayStation_HighLevel_UI2Platformunbox_trampolines_end +mono_aot_Sce_PlayStation_HighLevel_UI2Platformunwind_info +mono_aot_Sce_PlayStation_HighLevel_UI2jit_code_end +mono_aot_Sce_PlayStation_HighLevel_UI2jit_code_start +mono_aot_Sce_PlayStation_HighLevel_UI2jit_got +mono_aot_Sce_PlayStation_HighLevel_UI2method_addresses +mono_aot_Sce_PlayStation_HighLevel_UI2plt +mono_aot_Sce_PlayStation_HighLevel_UI2plt_end +mono_aot_Sce_PlayStation_HighLevel_UI2unbox_trampoline_addresses +mono_aot_Sce_PlayStation_HighLevel_UI2unbox_trampolines +mono_aot_Sce_PlayStation_HighLevel_UI2unbox_trampolines_end +mono_aot_Sce_PlayStation_HighLevel_UI2unwind_info +mono_aot_Sce_PlayStation_Imejit_code_end +mono_aot_Sce_PlayStation_Imejit_code_start +mono_aot_Sce_PlayStation_Imejit_got +mono_aot_Sce_PlayStation_Imemethod_addresses +mono_aot_Sce_PlayStation_Imeplt +mono_aot_Sce_PlayStation_Imeplt_end +mono_aot_Sce_PlayStation_Imeunbox_trampoline_addresses +mono_aot_Sce_PlayStation_Imeunbox_trampolines +mono_aot_Sce_PlayStation_Imeunbox_trampolines_end +mono_aot_Sce_PlayStation_Imeunwind_info +mono_aot_Sce_PlayStation_Jsonjit_code_end +mono_aot_Sce_PlayStation_Jsonjit_code_start +mono_aot_Sce_PlayStation_Jsonjit_got +mono_aot_Sce_PlayStation_Jsonmethod_addresses +mono_aot_Sce_PlayStation_Jsonplt +mono_aot_Sce_PlayStation_Jsonplt_end +mono_aot_Sce_PlayStation_Jsonunbox_trampoline_addresses +mono_aot_Sce_PlayStation_Jsonunbox_trampolines +mono_aot_Sce_PlayStation_Jsonunbox_trampolines_end +mono_aot_Sce_PlayStation_Jsonunwind_info +mono_aot_Sce_PlayStation_Orbis_Speechjit_code_end +mono_aot_Sce_PlayStation_Orbis_Speechjit_code_start +mono_aot_Sce_PlayStation_Orbis_Speechjit_got +mono_aot_Sce_PlayStation_Orbis_Speechmethod_addresses +mono_aot_Sce_PlayStation_Orbis_Speechplt +mono_aot_Sce_PlayStation_Orbis_Speechplt_end +mono_aot_Sce_PlayStation_Orbis_Speechunbox_trampoline_addresses +mono_aot_Sce_PlayStation_Orbis_Speechunbox_trampolines +mono_aot_Sce_PlayStation_Orbis_Speechunbox_trampolines_end +mono_aot_Sce_PlayStation_Orbis_Speechunwind_info +mono_aot_Sce_PlayStation_Orbisjit_code_end +mono_aot_Sce_PlayStation_Orbisjit_code_start +mono_aot_Sce_PlayStation_Orbisjit_got +mono_aot_Sce_PlayStation_Orbismethod_addresses +mono_aot_Sce_PlayStation_Orbisplt +mono_aot_Sce_PlayStation_Orbisplt_end +mono_aot_Sce_PlayStation_Orbisunbox_trampoline_addresses +mono_aot_Sce_PlayStation_Orbisunbox_trampolines +mono_aot_Sce_PlayStation_Orbisunbox_trampolines_end +mono_aot_Sce_PlayStation_Orbisunwind_info +mono_aot_Sce_PlayStation_PUIPlatformjit_code_end +mono_aot_Sce_PlayStation_PUIPlatformjit_code_start +mono_aot_Sce_PlayStation_PUIPlatformjit_got +mono_aot_Sce_PlayStation_PUIPlatformmethod_addresses +mono_aot_Sce_PlayStation_PUIPlatformplt +mono_aot_Sce_PlayStation_PUIPlatformplt_end +mono_aot_Sce_PlayStation_PUIPlatformunbox_trampoline_addresses +mono_aot_Sce_PlayStation_PUIPlatformunbox_trampolines +mono_aot_Sce_PlayStation_PUIPlatformunbox_trampolines_end +mono_aot_Sce_PlayStation_PUIPlatformunwind_info +mono_aot_Sce_PlayStation_PUIjit_code_end +mono_aot_Sce_PlayStation_PUIjit_code_start +mono_aot_Sce_PlayStation_PUIjit_got +mono_aot_Sce_PlayStation_PUImethod_addresses +mono_aot_Sce_PlayStation_PUIplt +mono_aot_Sce_PlayStation_PUIplt_end +mono_aot_Sce_PlayStation_PUIunbox_trampoline_addresses +mono_aot_Sce_PlayStation_PUIunbox_trampolines +mono_aot_Sce_PlayStation_PUIunbox_trampolines_end +mono_aot_Sce_PlayStation_PUIunwind_info +mono_aot_Sce_Vsh_Accessor_Db_Notifyjit_code_end +mono_aot_Sce_Vsh_Accessor_Db_Notifyjit_code_start +mono_aot_Sce_Vsh_Accessor_Db_Notifyjit_got +mono_aot_Sce_Vsh_Accessor_Db_Notifymethod_addresses +mono_aot_Sce_Vsh_Accessor_Db_Notifyplt +mono_aot_Sce_Vsh_Accessor_Db_Notifyplt_end +mono_aot_Sce_Vsh_Accessor_Db_Notifyunbox_trampoline_addresses +mono_aot_Sce_Vsh_Accessor_Db_Notifyunbox_trampolines +mono_aot_Sce_Vsh_Accessor_Db_Notifyunbox_trampolines_end +mono_aot_Sce_Vsh_Accessor_Db_Notifyunwind_info +mono_aot_Sce_Vsh_Accessor_Dbjit_code_end +mono_aot_Sce_Vsh_Accessor_Dbjit_code_start +mono_aot_Sce_Vsh_Accessor_Dbjit_got +mono_aot_Sce_Vsh_Accessor_Dbmethod_addresses +mono_aot_Sce_Vsh_Accessor_Dbplt +mono_aot_Sce_Vsh_Accessor_Dbplt_end +mono_aot_Sce_Vsh_Accessor_Dbunbox_trampoline_addresses +mono_aot_Sce_Vsh_Accessor_Dbunbox_trampolines +mono_aot_Sce_Vsh_Accessor_Dbunbox_trampolines_end +mono_aot_Sce_Vsh_Accessor_Dbunwind_info +mono_aot_Sce_Vsh_Accessorjit_code_end +mono_aot_Sce_Vsh_Accessorjit_code_start +mono_aot_Sce_Vsh_Accessorjit_got +mono_aot_Sce_Vsh_Accessormethod_addresses +mono_aot_Sce_Vsh_Accessorplt +mono_aot_Sce_Vsh_Accessorplt_end +mono_aot_Sce_Vsh_Accessorunbox_trampoline_addresses +mono_aot_Sce_Vsh_Accessorunbox_trampolines +mono_aot_Sce_Vsh_Accessorunbox_trampolines_end +mono_aot_Sce_Vsh_Accessorunwind_info +mono_aot_Sce_Vsh_AppContentUtilWrapperjit_code_end +mono_aot_Sce_Vsh_AppContentUtilWrapperjit_code_start +mono_aot_Sce_Vsh_AppContentUtilWrapperjit_got +mono_aot_Sce_Vsh_AppContentUtilWrappermethod_addresses +mono_aot_Sce_Vsh_AppContentUtilWrapperplt +mono_aot_Sce_Vsh_AppContentUtilWrapperplt_end +mono_aot_Sce_Vsh_AppContentUtilWrapperunbox_trampoline_addresses +mono_aot_Sce_Vsh_AppContentUtilWrapperunbox_trampolines +mono_aot_Sce_Vsh_AppContentUtilWrapperunbox_trampolines_end +mono_aot_Sce_Vsh_AppContentUtilWrapperunwind_info +mono_aot_Sce_Vsh_AppDbWrapperjit_code_end +mono_aot_Sce_Vsh_AppDbWrapperjit_code_start +mono_aot_Sce_Vsh_AppDbWrapperjit_got +mono_aot_Sce_Vsh_AppDbWrappermethod_addresses +mono_aot_Sce_Vsh_AppDbWrapperplt +mono_aot_Sce_Vsh_AppDbWrapperplt_end +mono_aot_Sce_Vsh_AppDbWrapperunbox_trampoline_addresses +mono_aot_Sce_Vsh_AppDbWrapperunbox_trampolines +mono_aot_Sce_Vsh_AppDbWrapperunbox_trampolines_end +mono_aot_Sce_Vsh_AppDbWrapperunwind_info +mono_aot_Sce_Vsh_AppInstUtilWrapperjit_code_end +mono_aot_Sce_Vsh_AppInstUtilWrapperjit_code_start +mono_aot_Sce_Vsh_AppInstUtilWrapperjit_got +mono_aot_Sce_Vsh_AppInstUtilWrappermethod_addresses +mono_aot_Sce_Vsh_AppInstUtilWrapperplt +mono_aot_Sce_Vsh_AppInstUtilWrapperplt_end +mono_aot_Sce_Vsh_AppInstUtilWrapperunbox_trampoline_addresses +mono_aot_Sce_Vsh_AppInstUtilWrapperunbox_trampolines +mono_aot_Sce_Vsh_AppInstUtilWrapperunbox_trampolines_end +mono_aot_Sce_Vsh_AppInstUtilWrapperunwind_info +mono_aot_Sce_Vsh_AutoMounterWrapperjit_code_end +mono_aot_Sce_Vsh_AutoMounterWrapperjit_code_start +mono_aot_Sce_Vsh_AutoMounterWrapperjit_got +mono_aot_Sce_Vsh_AutoMounterWrappermethod_addresses +mono_aot_Sce_Vsh_AutoMounterWrapperplt +mono_aot_Sce_Vsh_AutoMounterWrapperplt_end +mono_aot_Sce_Vsh_AutoMounterWrapperunbox_trampoline_addresses +mono_aot_Sce_Vsh_AutoMounterWrapperunbox_trampolines +mono_aot_Sce_Vsh_AutoMounterWrapperunbox_trampolines_end +mono_aot_Sce_Vsh_AutoMounterWrapperunwind_info +mono_aot_Sce_Vsh_BackupRestoreUtiljit_code_end +mono_aot_Sce_Vsh_BackupRestoreUtiljit_code_start +mono_aot_Sce_Vsh_BackupRestoreUtiljit_got +mono_aot_Sce_Vsh_BackupRestoreUtilmethod_addresses +mono_aot_Sce_Vsh_BackupRestoreUtilplt +mono_aot_Sce_Vsh_BackupRestoreUtilplt_end +mono_aot_Sce_Vsh_BackupRestoreUtilunbox_trampoline_addresses +mono_aot_Sce_Vsh_BackupRestoreUtilunbox_trampolines +mono_aot_Sce_Vsh_BackupRestoreUtilunbox_trampolines_end +mono_aot_Sce_Vsh_BackupRestoreUtilunwind_info +mono_aot_Sce_Vsh_CloudClientjit_code_end +mono_aot_Sce_Vsh_CloudClientjit_code_start +mono_aot_Sce_Vsh_CloudClientjit_got +mono_aot_Sce_Vsh_CloudClientmethod_addresses +mono_aot_Sce_Vsh_CloudClientplt +mono_aot_Sce_Vsh_CloudClientplt_end +mono_aot_Sce_Vsh_CloudClientunbox_trampoline_addresses +mono_aot_Sce_Vsh_CloudClientunbox_trampolines +mono_aot_Sce_Vsh_CloudClientunbox_trampolines_end +mono_aot_Sce_Vsh_CloudClientunwind_info +mono_aot_Sce_Vsh_DataTransferjit_code_end +mono_aot_Sce_Vsh_DataTransferjit_code_start +mono_aot_Sce_Vsh_DataTransferjit_got +mono_aot_Sce_Vsh_DataTransfermethod_addresses +mono_aot_Sce_Vsh_DataTransferplt +mono_aot_Sce_Vsh_DataTransferplt_end +mono_aot_Sce_Vsh_DataTransferunbox_trampoline_addresses +mono_aot_Sce_Vsh_DataTransferunbox_trampolines +mono_aot_Sce_Vsh_DataTransferunbox_trampolines_end +mono_aot_Sce_Vsh_DataTransferunwind_info +mono_aot_Sce_Vsh_DbPreparationWrapperjit_code_end +mono_aot_Sce_Vsh_DbPreparationWrapperjit_code_start +mono_aot_Sce_Vsh_DbPreparationWrapperjit_got +mono_aot_Sce_Vsh_DbPreparationWrappermethod_addresses +mono_aot_Sce_Vsh_DbPreparationWrapperplt +mono_aot_Sce_Vsh_DbPreparationWrapperplt_end +mono_aot_Sce_Vsh_DbPreparationWrapperunbox_trampoline_addresses +mono_aot_Sce_Vsh_DbPreparationWrapperunbox_trampolines +mono_aot_Sce_Vsh_DbPreparationWrapperunbox_trampolines_end +mono_aot_Sce_Vsh_DbPreparationWrapperunwind_info +mono_aot_Sce_Vsh_DbRecoveryUtilityWrapperjit_code_end +mono_aot_Sce_Vsh_DbRecoveryUtilityWrapperjit_code_start +mono_aot_Sce_Vsh_DbRecoveryUtilityWrapperjit_got +mono_aot_Sce_Vsh_DbRecoveryUtilityWrappermethod_addresses +mono_aot_Sce_Vsh_DbRecoveryUtilityWrapperplt +mono_aot_Sce_Vsh_DbRecoveryUtilityWrapperplt_end +mono_aot_Sce_Vsh_DbRecoveryUtilityWrapperunbox_trampoline_addresses +mono_aot_Sce_Vsh_DbRecoveryUtilityWrapperunbox_trampolines +mono_aot_Sce_Vsh_DbRecoveryUtilityWrapperunbox_trampolines_end +mono_aot_Sce_Vsh_DbRecoveryUtilityWrapperunwind_info +mono_aot_Sce_Vsh_Db_Sharedjit_code_end +mono_aot_Sce_Vsh_Db_Sharedjit_code_start +mono_aot_Sce_Vsh_Db_Sharedjit_got +mono_aot_Sce_Vsh_Db_Sharedmethod_addresses +mono_aot_Sce_Vsh_Db_Sharedplt +mono_aot_Sce_Vsh_Db_Sharedplt_end +mono_aot_Sce_Vsh_Db_Sharedunbox_trampoline_addresses +mono_aot_Sce_Vsh_Db_Sharedunbox_trampolines +mono_aot_Sce_Vsh_Db_Sharedunbox_trampolines_end +mono_aot_Sce_Vsh_Db_Sharedunwind_info +mono_aot_Sce_Vsh_DiscPlayerjit_code_end +mono_aot_Sce_Vsh_DiscPlayerjit_code_start +mono_aot_Sce_Vsh_DiscPlayerjit_got +mono_aot_Sce_Vsh_DiscPlayermethod_addresses +mono_aot_Sce_Vsh_DiscPlayerplt +mono_aot_Sce_Vsh_DiscPlayerplt_end +mono_aot_Sce_Vsh_DiscPlayerunbox_trampoline_addresses +mono_aot_Sce_Vsh_DiscPlayerunbox_trampolines +mono_aot_Sce_Vsh_DiscPlayerunbox_trampolines_end +mono_aot_Sce_Vsh_DiscPlayerunwind_info +mono_aot_Sce_Vsh_ErrorDialogUtilWrapperjit_code_end +mono_aot_Sce_Vsh_ErrorDialogUtilWrapperjit_code_start +mono_aot_Sce_Vsh_ErrorDialogUtilWrapperjit_got +mono_aot_Sce_Vsh_ErrorDialogUtilWrappermethod_addresses +mono_aot_Sce_Vsh_ErrorDialogUtilWrapperplt +mono_aot_Sce_Vsh_ErrorDialogUtilWrapperplt_end +mono_aot_Sce_Vsh_ErrorDialogUtilWrapperunbox_trampoline_addresses +mono_aot_Sce_Vsh_ErrorDialogUtilWrapperunbox_trampolines +mono_aot_Sce_Vsh_ErrorDialogUtilWrapperunbox_trampolines_end +mono_aot_Sce_Vsh_ErrorDialogUtilWrapperunwind_info +mono_aot_Sce_Vsh_EventAppjit_code_end +mono_aot_Sce_Vsh_EventAppjit_code_start +mono_aot_Sce_Vsh_EventAppjit_got +mono_aot_Sce_Vsh_EventAppmethod_addresses +mono_aot_Sce_Vsh_EventAppplt +mono_aot_Sce_Vsh_EventAppplt_end +mono_aot_Sce_Vsh_EventAppunbox_trampoline_addresses +mono_aot_Sce_Vsh_EventAppunbox_trampolines +mono_aot_Sce_Vsh_EventAppunbox_trampolines_end +mono_aot_Sce_Vsh_EventAppunwind_info +mono_aot_Sce_Vsh_EventServiceWrapperjit_code_end +mono_aot_Sce_Vsh_EventServiceWrapperjit_code_start +mono_aot_Sce_Vsh_EventServiceWrapperjit_got +mono_aot_Sce_Vsh_EventServiceWrappermethod_addresses +mono_aot_Sce_Vsh_EventServiceWrapperplt +mono_aot_Sce_Vsh_EventServiceWrapperplt_end +mono_aot_Sce_Vsh_EventServiceWrapperunbox_trampoline_addresses +mono_aot_Sce_Vsh_EventServiceWrapperunbox_trampolines +mono_aot_Sce_Vsh_EventServiceWrapperunbox_trampolines_end +mono_aot_Sce_Vsh_EventServiceWrapperunwind_info +mono_aot_Sce_Vsh_FileSelectorAdvancejit_code_end +mono_aot_Sce_Vsh_FileSelectorAdvancejit_code_start +mono_aot_Sce_Vsh_FileSelectorAdvancejit_got +mono_aot_Sce_Vsh_FileSelectorAdvancemethod_addresses +mono_aot_Sce_Vsh_FileSelectorAdvanceplt +mono_aot_Sce_Vsh_FileSelectorAdvanceplt_end +mono_aot_Sce_Vsh_FileSelectorAdvanceunbox_trampoline_addresses +mono_aot_Sce_Vsh_FileSelectorAdvanceunbox_trampolines +mono_aot_Sce_Vsh_FileSelectorAdvanceunbox_trampolines_end +mono_aot_Sce_Vsh_FileSelectorAdvanceunwind_info +mono_aot_Sce_Vsh_FileSelectorjit_code_end +mono_aot_Sce_Vsh_FileSelectorjit_code_start +mono_aot_Sce_Vsh_FileSelectorjit_got +mono_aot_Sce_Vsh_FileSelectormethod_addresses +mono_aot_Sce_Vsh_FileSelectorplt +mono_aot_Sce_Vsh_FileSelectorplt_end +mono_aot_Sce_Vsh_FileSelectorunbox_trampoline_addresses +mono_aot_Sce_Vsh_FileSelectorunbox_trampolines +mono_aot_Sce_Vsh_FileSelectorunbox_trampolines_end +mono_aot_Sce_Vsh_FileSelectorunwind_info +mono_aot_Sce_Vsh_Friendjit_code_end +mono_aot_Sce_Vsh_Friendjit_code_start +mono_aot_Sce_Vsh_Friendjit_got +mono_aot_Sce_Vsh_Friendmethod_addresses +mono_aot_Sce_Vsh_Friendplt +mono_aot_Sce_Vsh_Friendplt_end +mono_aot_Sce_Vsh_Friendunbox_trampoline_addresses +mono_aot_Sce_Vsh_Friendunbox_trampolines +mono_aot_Sce_Vsh_Friendunbox_trampolines_end +mono_aot_Sce_Vsh_Friendunwind_info +mono_aot_Sce_Vsh_GameCustomDatajit_code_end +mono_aot_Sce_Vsh_GameCustomDatajit_code_start +mono_aot_Sce_Vsh_GameCustomDatajit_got +mono_aot_Sce_Vsh_GameCustomDatamethod_addresses +mono_aot_Sce_Vsh_GameCustomDataplt +mono_aot_Sce_Vsh_GameCustomDataplt_end +mono_aot_Sce_Vsh_GameCustomDataunbox_trampoline_addresses +mono_aot_Sce_Vsh_GameCustomDataunbox_trampolines +mono_aot_Sce_Vsh_GameCustomDataunbox_trampolines_end +mono_aot_Sce_Vsh_GameCustomDataunwind_info +mono_aot_Sce_Vsh_GameListRetrieverWrapperjit_code_end +mono_aot_Sce_Vsh_GameListRetrieverWrapperjit_code_start +mono_aot_Sce_Vsh_GameListRetrieverWrapperjit_got +mono_aot_Sce_Vsh_GameListRetrieverWrappermethod_addresses +mono_aot_Sce_Vsh_GameListRetrieverWrapperplt +mono_aot_Sce_Vsh_GameListRetrieverWrapperplt_end +mono_aot_Sce_Vsh_GameListRetrieverWrapperunbox_trampoline_addresses +mono_aot_Sce_Vsh_GameListRetrieverWrapperunbox_trampolines +mono_aot_Sce_Vsh_GameListRetrieverWrapperunbox_trampolines_end +mono_aot_Sce_Vsh_GameListRetrieverWrapperunwind_info +mono_aot_Sce_Vsh_Gls_GlsSharedMediaViewjit_code_end +mono_aot_Sce_Vsh_Gls_GlsSharedMediaViewjit_code_start +mono_aot_Sce_Vsh_Gls_GlsSharedMediaViewjit_got +mono_aot_Sce_Vsh_Gls_GlsSharedMediaViewmethod_addresses +mono_aot_Sce_Vsh_Gls_GlsSharedMediaViewplt +mono_aot_Sce_Vsh_Gls_GlsSharedMediaViewplt_end +mono_aot_Sce_Vsh_Gls_GlsSharedMediaViewunbox_trampoline_addresses +mono_aot_Sce_Vsh_Gls_GlsSharedMediaViewunbox_trampolines +mono_aot_Sce_Vsh_Gls_GlsSharedMediaViewunbox_trampolines_end +mono_aot_Sce_Vsh_Gls_GlsSharedMediaViewunwind_info +mono_aot_Sce_Vsh_Gls_NativeCalljit_code_end +mono_aot_Sce_Vsh_Gls_NativeCalljit_code_start +mono_aot_Sce_Vsh_Gls_NativeCalljit_got +mono_aot_Sce_Vsh_Gls_NativeCallmethod_addresses +mono_aot_Sce_Vsh_Gls_NativeCallplt +mono_aot_Sce_Vsh_Gls_NativeCallplt_end +mono_aot_Sce_Vsh_Gls_NativeCallunbox_trampoline_addresses +mono_aot_Sce_Vsh_Gls_NativeCallunbox_trampolines +mono_aot_Sce_Vsh_Gls_NativeCallunbox_trampolines_end +mono_aot_Sce_Vsh_Gls_NativeCallunwind_info +mono_aot_Sce_Vsh_GriefReportStoragejit_code_end +mono_aot_Sce_Vsh_GriefReportStoragejit_code_start +mono_aot_Sce_Vsh_GriefReportStoragejit_got +mono_aot_Sce_Vsh_GriefReportStoragemethod_addresses +mono_aot_Sce_Vsh_GriefReportStorageplt +mono_aot_Sce_Vsh_GriefReportStorageplt_end +mono_aot_Sce_Vsh_GriefReportStorageunbox_trampoline_addresses +mono_aot_Sce_Vsh_GriefReportStorageunbox_trampolines +mono_aot_Sce_Vsh_GriefReportStorageunbox_trampolines_end +mono_aot_Sce_Vsh_GriefReportStorageunwind_info +mono_aot_Sce_Vsh_GriefReportjit_code_end +mono_aot_Sce_Vsh_GriefReportjit_code_start +mono_aot_Sce_Vsh_GriefReportjit_got +mono_aot_Sce_Vsh_GriefReportmethod_addresses +mono_aot_Sce_Vsh_GriefReportplt +mono_aot_Sce_Vsh_GriefReportplt_end +mono_aot_Sce_Vsh_GriefReportunbox_trampoline_addresses +mono_aot_Sce_Vsh_GriefReportunbox_trampolines +mono_aot_Sce_Vsh_GriefReportunbox_trampolines_end +mono_aot_Sce_Vsh_GriefReportunwind_info +mono_aot_Sce_Vsh_JsExtensionjit_code_end +mono_aot_Sce_Vsh_JsExtensionjit_code_start +mono_aot_Sce_Vsh_JsExtensionjit_got +mono_aot_Sce_Vsh_JsExtensionmethod_addresses +mono_aot_Sce_Vsh_JsExtensionplt +mono_aot_Sce_Vsh_JsExtensionplt_end +mono_aot_Sce_Vsh_JsExtensionunbox_trampoline_addresses +mono_aot_Sce_Vsh_JsExtensionunbox_trampolines +mono_aot_Sce_Vsh_JsExtensionunbox_trampolines_end +mono_aot_Sce_Vsh_JsExtensionunwind_info +mono_aot_Sce_Vsh_KernelSysWrapperjit_code_end +mono_aot_Sce_Vsh_KernelSysWrapperjit_code_start +mono_aot_Sce_Vsh_KernelSysWrapperjit_got +mono_aot_Sce_Vsh_KernelSysWrappermethod_addresses +mono_aot_Sce_Vsh_KernelSysWrapperplt +mono_aot_Sce_Vsh_KernelSysWrapperplt_end +mono_aot_Sce_Vsh_KernelSysWrapperunbox_trampoline_addresses +mono_aot_Sce_Vsh_KernelSysWrapperunbox_trampolines +mono_aot_Sce_Vsh_KernelSysWrapperunbox_trampolines_end +mono_aot_Sce_Vsh_KernelSysWrapperunwind_info +mono_aot_Sce_Vsh_LncUtilWrapperjit_code_end +mono_aot_Sce_Vsh_LncUtilWrapperjit_code_start +mono_aot_Sce_Vsh_LncUtilWrapperjit_got +mono_aot_Sce_Vsh_LncUtilWrappermethod_addresses +mono_aot_Sce_Vsh_LncUtilWrapperplt +mono_aot_Sce_Vsh_LncUtilWrapperplt_end +mono_aot_Sce_Vsh_LncUtilWrapperunbox_trampoline_addresses +mono_aot_Sce_Vsh_LncUtilWrapperunbox_trampolines +mono_aot_Sce_Vsh_LncUtilWrapperunbox_trampolines_end +mono_aot_Sce_Vsh_LncUtilWrapperunwind_info +mono_aot_Sce_Vsh_Lxjit_code_end +mono_aot_Sce_Vsh_Lxjit_code_start +mono_aot_Sce_Vsh_Lxjit_got +mono_aot_Sce_Vsh_Lxmethod_addresses +mono_aot_Sce_Vsh_Lxplt +mono_aot_Sce_Vsh_Lxplt_end +mono_aot_Sce_Vsh_Lxunbox_trampoline_addresses +mono_aot_Sce_Vsh_Lxunbox_trampolines +mono_aot_Sce_Vsh_Lxunbox_trampolines_end +mono_aot_Sce_Vsh_Lxunwind_info +mono_aot_Sce_Vsh_MarlinDownloaderWrapperjit_code_end +mono_aot_Sce_Vsh_MarlinDownloaderWrapperjit_code_start +mono_aot_Sce_Vsh_MarlinDownloaderWrapperjit_got +mono_aot_Sce_Vsh_MarlinDownloaderWrappermethod_addresses +mono_aot_Sce_Vsh_MarlinDownloaderWrapperplt +mono_aot_Sce_Vsh_MarlinDownloaderWrapperplt_end +mono_aot_Sce_Vsh_MarlinDownloaderWrapperunbox_trampoline_addresses +mono_aot_Sce_Vsh_MarlinDownloaderWrapperunbox_trampolines +mono_aot_Sce_Vsh_MarlinDownloaderWrapperunbox_trampolines_end +mono_aot_Sce_Vsh_MarlinDownloaderWrapperunwind_info +mono_aot_Sce_Vsh_Messages_DbAccessLibjit_code_end +mono_aot_Sce_Vsh_Messages_DbAccessLibjit_code_start +mono_aot_Sce_Vsh_Messages_DbAccessLibjit_got +mono_aot_Sce_Vsh_Messages_DbAccessLibmethod_addresses +mono_aot_Sce_Vsh_Messages_DbAccessLibplt +mono_aot_Sce_Vsh_Messages_DbAccessLibplt_end +mono_aot_Sce_Vsh_Messages_DbAccessLibunbox_trampoline_addresses +mono_aot_Sce_Vsh_Messages_DbAccessLibunbox_trampolines +mono_aot_Sce_Vsh_Messages_DbAccessLibunbox_trampolines_end +mono_aot_Sce_Vsh_Messages_DbAccessLibunwind_info +mono_aot_Sce_Vsh_Messagesjit_code_end +mono_aot_Sce_Vsh_Messagesjit_code_start +mono_aot_Sce_Vsh_Messagesjit_got +mono_aot_Sce_Vsh_Messagesmethod_addresses +mono_aot_Sce_Vsh_Messagesplt +mono_aot_Sce_Vsh_Messagesplt_end +mono_aot_Sce_Vsh_Messagesunbox_trampoline_addresses +mono_aot_Sce_Vsh_Messagesunbox_trampolines +mono_aot_Sce_Vsh_Messagesunbox_trampolines_end +mono_aot_Sce_Vsh_Messagesunwind_info +mono_aot_Sce_Vsh_MimeTypejit_code_end +mono_aot_Sce_Vsh_MimeTypejit_code_start +mono_aot_Sce_Vsh_MimeTypejit_got +mono_aot_Sce_Vsh_MimeTypemethod_addresses +mono_aot_Sce_Vsh_MimeTypeplt +mono_aot_Sce_Vsh_MimeTypeplt_end +mono_aot_Sce_Vsh_MimeTypeunbox_trampoline_addresses +mono_aot_Sce_Vsh_MimeTypeunbox_trampolines +mono_aot_Sce_Vsh_MimeTypeunbox_trampolines_end +mono_aot_Sce_Vsh_MimeTypeunwind_info +mono_aot_Sce_Vsh_MorpheusUpdWrapperjit_code_end +mono_aot_Sce_Vsh_MorpheusUpdWrapperjit_code_start +mono_aot_Sce_Vsh_MorpheusUpdWrapperjit_got +mono_aot_Sce_Vsh_MorpheusUpdWrappermethod_addresses +mono_aot_Sce_Vsh_MorpheusUpdWrapperplt +mono_aot_Sce_Vsh_MorpheusUpdWrapperplt_end +mono_aot_Sce_Vsh_MorpheusUpdWrapperunbox_trampoline_addresses +mono_aot_Sce_Vsh_MorpheusUpdWrapperunbox_trampolines +mono_aot_Sce_Vsh_MorpheusUpdWrapperunbox_trampolines_end +mono_aot_Sce_Vsh_MorpheusUpdWrapperunwind_info +mono_aot_Sce_Vsh_MyGameListjit_code_end +mono_aot_Sce_Vsh_MyGameListjit_code_start +mono_aot_Sce_Vsh_MyGameListjit_got +mono_aot_Sce_Vsh_MyGameListmethod_addresses +mono_aot_Sce_Vsh_MyGameListplt +mono_aot_Sce_Vsh_MyGameListplt_end +mono_aot_Sce_Vsh_MyGameListunbox_trampoline_addresses +mono_aot_Sce_Vsh_MyGameListunbox_trampolines +mono_aot_Sce_Vsh_MyGameListunbox_trampolines_end +mono_aot_Sce_Vsh_MyGameListunwind_info +mono_aot_Sce_Vsh_Np_AppInfojit_code_end +mono_aot_Sce_Vsh_Np_AppInfojit_code_start +mono_aot_Sce_Vsh_Np_AppInfojit_got +mono_aot_Sce_Vsh_Np_AppInfomethod_addresses +mono_aot_Sce_Vsh_Np_AppInfoplt +mono_aot_Sce_Vsh_Np_AppInfoplt_end +mono_aot_Sce_Vsh_Np_AppInfounbox_trampoline_addresses +mono_aot_Sce_Vsh_Np_AppInfounbox_trampolines +mono_aot_Sce_Vsh_Np_AppInfounbox_trampolines_end +mono_aot_Sce_Vsh_Np_AppInfounwind_info +mono_aot_Sce_Vsh_Np_AppLaunchLinkjit_code_end +mono_aot_Sce_Vsh_Np_AppLaunchLinkjit_code_start +mono_aot_Sce_Vsh_Np_AppLaunchLinkjit_got +mono_aot_Sce_Vsh_Np_AppLaunchLinkmethod_addresses +mono_aot_Sce_Vsh_Np_AppLaunchLinkplt +mono_aot_Sce_Vsh_Np_AppLaunchLinkplt_end +mono_aot_Sce_Vsh_Np_AppLaunchLinkunbox_trampoline_addresses +mono_aot_Sce_Vsh_Np_AppLaunchLinkunbox_trampolines +mono_aot_Sce_Vsh_Np_AppLaunchLinkunbox_trampolines_end +mono_aot_Sce_Vsh_Np_AppLaunchLinkunwind_info +mono_aot_Sce_Vsh_Np_Asmjit_code_end +mono_aot_Sce_Vsh_Np_Asmjit_code_start +mono_aot_Sce_Vsh_Np_Asmjit_got +mono_aot_Sce_Vsh_Np_Asmmethod_addresses +mono_aot_Sce_Vsh_Np_Asmplt +mono_aot_Sce_Vsh_Np_Asmplt_end +mono_aot_Sce_Vsh_Np_Asmunbox_trampoline_addresses +mono_aot_Sce_Vsh_Np_Asmunbox_trampolines +mono_aot_Sce_Vsh_Np_Asmunbox_trampolines_end +mono_aot_Sce_Vsh_Np_Asmunwind_info +mono_aot_Sce_Vsh_Np_AuCheckjit_code_end +mono_aot_Sce_Vsh_Np_AuCheckjit_code_start +mono_aot_Sce_Vsh_Np_AuCheckjit_got +mono_aot_Sce_Vsh_Np_AuCheckmethod_addresses +mono_aot_Sce_Vsh_Np_AuCheckplt +mono_aot_Sce_Vsh_Np_AuCheckplt_end +mono_aot_Sce_Vsh_Np_AuCheckunbox_trampoline_addresses +mono_aot_Sce_Vsh_Np_AuCheckunbox_trampolines +mono_aot_Sce_Vsh_Np_AuCheckunbox_trampolines_end +mono_aot_Sce_Vsh_Np_AuCheckunwind_info +mono_aot_Sce_Vsh_Np_Commonjit_code_end +mono_aot_Sce_Vsh_Np_Commonjit_code_start +mono_aot_Sce_Vsh_Np_Commonjit_got +mono_aot_Sce_Vsh_Np_Commonmethod_addresses +mono_aot_Sce_Vsh_Np_Commonplt +mono_aot_Sce_Vsh_Np_Commonplt_end +mono_aot_Sce_Vsh_Np_Commonunbox_trampoline_addresses +mono_aot_Sce_Vsh_Np_Commonunbox_trampolines +mono_aot_Sce_Vsh_Np_Commonunbox_trampolines_end +mono_aot_Sce_Vsh_Np_Commonunwind_info +mono_aot_Sce_Vsh_Np_IdMapperjit_code_end +mono_aot_Sce_Vsh_Np_IdMapperjit_code_start +mono_aot_Sce_Vsh_Np_IdMapperjit_got +mono_aot_Sce_Vsh_Np_IdMappermethod_addresses +mono_aot_Sce_Vsh_Np_IdMapperplt +mono_aot_Sce_Vsh_Np_IdMapperplt_end +mono_aot_Sce_Vsh_Np_IdMapperunbox_trampoline_addresses +mono_aot_Sce_Vsh_Np_IdMapperunbox_trampolines +mono_aot_Sce_Vsh_Np_IdMapperunbox_trampolines_end +mono_aot_Sce_Vsh_Np_IdMapperunwind_info +mono_aot_Sce_Vsh_Np_Managerjit_code_end +mono_aot_Sce_Vsh_Np_Managerjit_code_start +mono_aot_Sce_Vsh_Np_Managerjit_got +mono_aot_Sce_Vsh_Np_Managermethod_addresses +mono_aot_Sce_Vsh_Np_Managerplt +mono_aot_Sce_Vsh_Np_Managerplt_end +mono_aot_Sce_Vsh_Np_Managerunbox_trampoline_addresses +mono_aot_Sce_Vsh_Np_Managerunbox_trampolines +mono_aot_Sce_Vsh_Np_Managerunbox_trampolines_end +mono_aot_Sce_Vsh_Np_Managerunwind_info +mono_aot_Sce_Vsh_Np_Papcjit_code_end +mono_aot_Sce_Vsh_Np_Papcjit_code_start +mono_aot_Sce_Vsh_Np_Papcjit_got +mono_aot_Sce_Vsh_Np_Papcmethod_addresses +mono_aot_Sce_Vsh_Np_Papcplt +mono_aot_Sce_Vsh_Np_Papcplt_end +mono_aot_Sce_Vsh_Np_Papcunbox_trampoline_addresses +mono_aot_Sce_Vsh_Np_Papcunbox_trampolines +mono_aot_Sce_Vsh_Np_Papcunbox_trampolines_end +mono_aot_Sce_Vsh_Np_Papcunwind_info +mono_aot_Sce_Vsh_Np_Pbtcjit_code_end +mono_aot_Sce_Vsh_Np_Pbtcjit_code_start +mono_aot_Sce_Vsh_Np_Pbtcjit_got +mono_aot_Sce_Vsh_Np_Pbtcmethod_addresses +mono_aot_Sce_Vsh_Np_Pbtcplt +mono_aot_Sce_Vsh_Np_Pbtcplt_end +mono_aot_Sce_Vsh_Np_Pbtcunbox_trampoline_addresses +mono_aot_Sce_Vsh_Np_Pbtcunbox_trampolines +mono_aot_Sce_Vsh_Np_Pbtcunbox_trampolines_end +mono_aot_Sce_Vsh_Np_Pbtcunwind_info +mono_aot_Sce_Vsh_Np_RifManagerjit_code_end +mono_aot_Sce_Vsh_Np_RifManagerjit_code_start +mono_aot_Sce_Vsh_Np_RifManagerjit_got +mono_aot_Sce_Vsh_Np_RifManagermethod_addresses +mono_aot_Sce_Vsh_Np_RifManagerplt +mono_aot_Sce_Vsh_Np_RifManagerplt_end +mono_aot_Sce_Vsh_Np_RifManagerunbox_trampoline_addresses +mono_aot_Sce_Vsh_Np_RifManagerunbox_trampolines +mono_aot_Sce_Vsh_Np_RifManagerunbox_trampolines_end +mono_aot_Sce_Vsh_Np_RifManagerunwind_info +mono_aot_Sce_Vsh_Np_ServiceChecker2jit_code_end +mono_aot_Sce_Vsh_Np_ServiceChecker2jit_code_start +mono_aot_Sce_Vsh_Np_ServiceChecker2jit_got +mono_aot_Sce_Vsh_Np_ServiceChecker2method_addresses +mono_aot_Sce_Vsh_Np_ServiceChecker2plt +mono_aot_Sce_Vsh_Np_ServiceChecker2plt_end +mono_aot_Sce_Vsh_Np_ServiceChecker2unbox_trampoline_addresses +mono_aot_Sce_Vsh_Np_ServiceChecker2unbox_trampolines +mono_aot_Sce_Vsh_Np_ServiceChecker2unbox_trampolines_end +mono_aot_Sce_Vsh_Np_ServiceChecker2unwind_info +mono_aot_Sce_Vsh_Np_ServiceCheckerjit_code_end +mono_aot_Sce_Vsh_Np_ServiceCheckerjit_code_start +mono_aot_Sce_Vsh_Np_ServiceCheckerjit_got +mono_aot_Sce_Vsh_Np_ServiceCheckermethod_addresses +mono_aot_Sce_Vsh_Np_ServiceCheckerplt +mono_aot_Sce_Vsh_Np_ServiceCheckerplt_end +mono_aot_Sce_Vsh_Np_ServiceCheckerunbox_trampoline_addresses +mono_aot_Sce_Vsh_Np_ServiceCheckerunbox_trampolines +mono_aot_Sce_Vsh_Np_ServiceCheckerunbox_trampolines_end +mono_aot_Sce_Vsh_Np_ServiceCheckerunwind_info +mono_aot_Sce_Vsh_Np_Snsjit_code_end +mono_aot_Sce_Vsh_Np_Snsjit_code_start +mono_aot_Sce_Vsh_Np_Snsjit_got +mono_aot_Sce_Vsh_Np_Snsmethod_addresses +mono_aot_Sce_Vsh_Np_Snsplt +mono_aot_Sce_Vsh_Np_Snsplt_end +mono_aot_Sce_Vsh_Np_Snsunbox_trampoline_addresses +mono_aot_Sce_Vsh_Np_Snsunbox_trampolines +mono_aot_Sce_Vsh_Np_Snsunbox_trampolines_end +mono_aot_Sce_Vsh_Np_Snsunwind_info +mono_aot_Sce_Vsh_Np_Tmdbjit_code_end +mono_aot_Sce_Vsh_Np_Tmdbjit_code_start +mono_aot_Sce_Vsh_Np_Tmdbjit_got +mono_aot_Sce_Vsh_Np_Tmdbmethod_addresses +mono_aot_Sce_Vsh_Np_Tmdbplt +mono_aot_Sce_Vsh_Np_Tmdbplt_end +mono_aot_Sce_Vsh_Np_Tmdbunbox_trampoline_addresses +mono_aot_Sce_Vsh_Np_Tmdbunbox_trampolines +mono_aot_Sce_Vsh_Np_Tmdbunbox_trampolines_end +mono_aot_Sce_Vsh_Np_Tmdbunwind_info +mono_aot_Sce_Vsh_Np_Trophyjit_code_end +mono_aot_Sce_Vsh_Np_Trophyjit_code_start +mono_aot_Sce_Vsh_Np_Trophyjit_got +mono_aot_Sce_Vsh_Np_Trophymethod_addresses +mono_aot_Sce_Vsh_Np_Trophyplt +mono_aot_Sce_Vsh_Np_Trophyplt_end +mono_aot_Sce_Vsh_Np_Trophyunbox_trampoline_addresses +mono_aot_Sce_Vsh_Np_Trophyunbox_trampolines +mono_aot_Sce_Vsh_Np_Trophyunbox_trampolines_end +mono_aot_Sce_Vsh_Np_Trophyunwind_info +mono_aot_Sce_Vsh_Np_Udsjit_code_end +mono_aot_Sce_Vsh_Np_Udsjit_code_start +mono_aot_Sce_Vsh_Np_Udsjit_got +mono_aot_Sce_Vsh_Np_Udsmethod_addresses +mono_aot_Sce_Vsh_Np_Udsplt +mono_aot_Sce_Vsh_Np_Udsplt_end +mono_aot_Sce_Vsh_Np_Udsunbox_trampoline_addresses +mono_aot_Sce_Vsh_Np_Udsunbox_trampolines +mono_aot_Sce_Vsh_Np_Udsunbox_trampolines_end +mono_aot_Sce_Vsh_Np_Udsunwind_info +mono_aot_Sce_Vsh_Np_Webapijit_code_end +mono_aot_Sce_Vsh_Np_Webapijit_code_start +mono_aot_Sce_Vsh_Np_Webapijit_got +mono_aot_Sce_Vsh_Np_Webapimethod_addresses +mono_aot_Sce_Vsh_Np_Webapiplt +mono_aot_Sce_Vsh_Np_Webapiplt_end +mono_aot_Sce_Vsh_Np_Webapiunbox_trampoline_addresses +mono_aot_Sce_Vsh_Np_Webapiunbox_trampolines +mono_aot_Sce_Vsh_Np_Webapiunbox_trampolines_end +mono_aot_Sce_Vsh_Np_Webapiunwind_info +mono_aot_Sce_Vsh_Orbis_AbstractStoragejit_code_end +mono_aot_Sce_Vsh_Orbis_AbstractStoragejit_code_start +mono_aot_Sce_Vsh_Orbis_AbstractStoragejit_got +mono_aot_Sce_Vsh_Orbis_AbstractStoragemethod_addresses +mono_aot_Sce_Vsh_Orbis_AbstractStorageplt +mono_aot_Sce_Vsh_Orbis_AbstractStorageplt_end +mono_aot_Sce_Vsh_Orbis_AbstractStorageunbox_trampoline_addresses +mono_aot_Sce_Vsh_Orbis_AbstractStorageunbox_trampolines +mono_aot_Sce_Vsh_Orbis_AbstractStorageunbox_trampolines_end +mono_aot_Sce_Vsh_Orbis_AbstractStorageunwind_info +mono_aot_Sce_Vsh_Orbis_BgftAccessorjit_code_end +mono_aot_Sce_Vsh_Orbis_BgftAccessorjit_code_start +mono_aot_Sce_Vsh_Orbis_BgftAccessorjit_got +mono_aot_Sce_Vsh_Orbis_BgftAccessormethod_addresses +mono_aot_Sce_Vsh_Orbis_BgftAccessorplt +mono_aot_Sce_Vsh_Orbis_BgftAccessorplt_end +mono_aot_Sce_Vsh_Orbis_BgftAccessorunbox_trampoline_addresses +mono_aot_Sce_Vsh_Orbis_BgftAccessorunbox_trampolines +mono_aot_Sce_Vsh_Orbis_BgftAccessorunbox_trampolines_end +mono_aot_Sce_Vsh_Orbis_BgftAccessorunwind_info +mono_aot_Sce_Vsh_Orbis_Bgftjit_code_end +mono_aot_Sce_Vsh_Orbis_Bgftjit_code_start +mono_aot_Sce_Vsh_Orbis_Bgftjit_got +mono_aot_Sce_Vsh_Orbis_Bgftmethod_addresses +mono_aot_Sce_Vsh_Orbis_Bgftplt +mono_aot_Sce_Vsh_Orbis_Bgftplt_end +mono_aot_Sce_Vsh_Orbis_Bgftunbox_trampoline_addresses +mono_aot_Sce_Vsh_Orbis_Bgftunbox_trampolines +mono_aot_Sce_Vsh_Orbis_Bgftunbox_trampolines_end +mono_aot_Sce_Vsh_Orbis_Bgftunwind_info +mono_aot_Sce_Vsh_Orbis_CdlgServerNpCommercejit_code_end +mono_aot_Sce_Vsh_Orbis_CdlgServerNpCommercejit_code_start +mono_aot_Sce_Vsh_Orbis_CdlgServerNpCommercejit_got +mono_aot_Sce_Vsh_Orbis_CdlgServerNpCommercemethod_addresses +mono_aot_Sce_Vsh_Orbis_CdlgServerNpCommerceplt +mono_aot_Sce_Vsh_Orbis_CdlgServerNpCommerceplt_end +mono_aot_Sce_Vsh_Orbis_CdlgServerNpCommerceunbox_trampoline_addresses +mono_aot_Sce_Vsh_Orbis_CdlgServerNpCommerceunbox_trampolines +mono_aot_Sce_Vsh_Orbis_CdlgServerNpCommerceunbox_trampolines_end +mono_aot_Sce_Vsh_Orbis_CdlgServerNpCommerceunwind_info +mono_aot_Sce_Vsh_Orbis_ContentManagerjit_code_end +mono_aot_Sce_Vsh_Orbis_ContentManagerjit_code_start +mono_aot_Sce_Vsh_Orbis_ContentManagerjit_got +mono_aot_Sce_Vsh_Orbis_ContentManagermethod_addresses +mono_aot_Sce_Vsh_Orbis_ContentManagerplt +mono_aot_Sce_Vsh_Orbis_ContentManagerplt_end +mono_aot_Sce_Vsh_Orbis_ContentManagerunbox_trampoline_addresses +mono_aot_Sce_Vsh_Orbis_ContentManagerunbox_trampolines +mono_aot_Sce_Vsh_Orbis_ContentManagerunbox_trampolines_end +mono_aot_Sce_Vsh_Orbis_ContentManagerunwind_info +mono_aot_Sce_Vsh_PartyCommonjit_code_end +mono_aot_Sce_Vsh_PartyCommonjit_code_start +mono_aot_Sce_Vsh_PartyCommonjit_got +mono_aot_Sce_Vsh_PartyCommonmethod_addresses +mono_aot_Sce_Vsh_PartyCommonplt +mono_aot_Sce_Vsh_PartyCommonplt_end +mono_aot_Sce_Vsh_PartyCommonunbox_trampoline_addresses +mono_aot_Sce_Vsh_PartyCommonunbox_trampolines +mono_aot_Sce_Vsh_PartyCommonunbox_trampolines_end +mono_aot_Sce_Vsh_PartyCommonunwind_info +mono_aot_Sce_Vsh_Passcodejit_code_end +mono_aot_Sce_Vsh_Passcodejit_code_start +mono_aot_Sce_Vsh_Passcodejit_got +mono_aot_Sce_Vsh_Passcodemethod_addresses +mono_aot_Sce_Vsh_Passcodeplt +mono_aot_Sce_Vsh_Passcodeplt_end +mono_aot_Sce_Vsh_Passcodeunbox_trampoline_addresses +mono_aot_Sce_Vsh_Passcodeunbox_trampolines +mono_aot_Sce_Vsh_Passcodeunbox_trampolines_end +mono_aot_Sce_Vsh_Passcodeunwind_info +mono_aot_Sce_Vsh_PatchCheckerClientWrapperjit_code_end +mono_aot_Sce_Vsh_PatchCheckerClientWrapperjit_code_start +mono_aot_Sce_Vsh_PatchCheckerClientWrapperjit_got +mono_aot_Sce_Vsh_PatchCheckerClientWrappermethod_addresses +mono_aot_Sce_Vsh_PatchCheckerClientWrapperplt +mono_aot_Sce_Vsh_PatchCheckerClientWrapperplt_end +mono_aot_Sce_Vsh_PatchCheckerClientWrapperunbox_trampoline_addresses +mono_aot_Sce_Vsh_PatchCheckerClientWrapperunbox_trampolines +mono_aot_Sce_Vsh_PatchCheckerClientWrapperunbox_trampolines_end +mono_aot_Sce_Vsh_PatchCheckerClientWrapperunwind_info +mono_aot_Sce_Vsh_ProfileCachejit_code_end +mono_aot_Sce_Vsh_ProfileCachejit_code_start +mono_aot_Sce_Vsh_ProfileCachejit_got +mono_aot_Sce_Vsh_ProfileCachemethod_addresses +mono_aot_Sce_Vsh_ProfileCacheplt +mono_aot_Sce_Vsh_ProfileCacheplt_end +mono_aot_Sce_Vsh_ProfileCacheunbox_trampoline_addresses +mono_aot_Sce_Vsh_ProfileCacheunbox_trampolines +mono_aot_Sce_Vsh_ProfileCacheunbox_trampolines_end +mono_aot_Sce_Vsh_ProfileCacheunwind_info +mono_aot_Sce_Vsh_PsnMessageUtiljit_code_end +mono_aot_Sce_Vsh_PsnMessageUtiljit_code_start +mono_aot_Sce_Vsh_PsnMessageUtiljit_got +mono_aot_Sce_Vsh_PsnMessageUtilmethod_addresses +mono_aot_Sce_Vsh_PsnMessageUtilplt +mono_aot_Sce_Vsh_PsnMessageUtilplt_end +mono_aot_Sce_Vsh_PsnMessageUtilunbox_trampoline_addresses +mono_aot_Sce_Vsh_PsnMessageUtilunbox_trampolines +mono_aot_Sce_Vsh_PsnMessageUtilunbox_trampolines_end +mono_aot_Sce_Vsh_PsnMessageUtilunwind_info +mono_aot_Sce_Vsh_PsnUtiljit_code_end +mono_aot_Sce_Vsh_PsnUtiljit_code_start +mono_aot_Sce_Vsh_PsnUtiljit_got +mono_aot_Sce_Vsh_PsnUtilmethod_addresses +mono_aot_Sce_Vsh_PsnUtilplt +mono_aot_Sce_Vsh_PsnUtilplt_end +mono_aot_Sce_Vsh_PsnUtilunbox_trampoline_addresses +mono_aot_Sce_Vsh_PsnUtilunbox_trampolines +mono_aot_Sce_Vsh_PsnUtilunbox_trampolines_end +mono_aot_Sce_Vsh_PsnUtilunwind_info +mono_aot_Sce_Vsh_Registryjit_code_end +mono_aot_Sce_Vsh_Registryjit_code_start +mono_aot_Sce_Vsh_Registryjit_got +mono_aot_Sce_Vsh_Registrymethod_addresses +mono_aot_Sce_Vsh_Registryplt +mono_aot_Sce_Vsh_Registryplt_end +mono_aot_Sce_Vsh_Registryunbox_trampoline_addresses +mono_aot_Sce_Vsh_Registryunbox_trampolines +mono_aot_Sce_Vsh_Registryunbox_trampolines_end +mono_aot_Sce_Vsh_Registryunwind_info +mono_aot_Sce_Vsh_RemotePlayjit_code_end +mono_aot_Sce_Vsh_RemotePlayjit_code_start +mono_aot_Sce_Vsh_RemotePlayjit_got +mono_aot_Sce_Vsh_RemotePlaymethod_addresses +mono_aot_Sce_Vsh_RemotePlayplt +mono_aot_Sce_Vsh_RemotePlayplt_end +mono_aot_Sce_Vsh_RemotePlayunbox_trampoline_addresses +mono_aot_Sce_Vsh_RemotePlayunbox_trampolines +mono_aot_Sce_Vsh_RemotePlayunbox_trampolines_end +mono_aot_Sce_Vsh_RemotePlayunwind_info +mono_aot_Sce_Vsh_RequestShareScreenjit_code_end +mono_aot_Sce_Vsh_RequestShareScreenjit_code_start +mono_aot_Sce_Vsh_RequestShareScreenjit_got +mono_aot_Sce_Vsh_RequestShareScreenmethod_addresses +mono_aot_Sce_Vsh_RequestShareScreenplt +mono_aot_Sce_Vsh_RequestShareScreenplt_end +mono_aot_Sce_Vsh_RequestShareScreenunbox_trampoline_addresses +mono_aot_Sce_Vsh_RequestShareScreenunbox_trampolines +mono_aot_Sce_Vsh_RequestShareScreenunbox_trampolines_end +mono_aot_Sce_Vsh_RequestShareScreenunwind_info +mono_aot_Sce_Vsh_RequestShareStorageWrapperjit_code_end +mono_aot_Sce_Vsh_RequestShareStorageWrapperjit_code_start +mono_aot_Sce_Vsh_RequestShareStorageWrapperjit_got +mono_aot_Sce_Vsh_RequestShareStorageWrappermethod_addresses +mono_aot_Sce_Vsh_RequestShareStorageWrapperplt +mono_aot_Sce_Vsh_RequestShareStorageWrapperplt_end +mono_aot_Sce_Vsh_RequestShareStorageWrapperunbox_trampoline_addresses +mono_aot_Sce_Vsh_RequestShareStorageWrapperunbox_trampolines +mono_aot_Sce_Vsh_RequestShareStorageWrapperunbox_trampolines_end +mono_aot_Sce_Vsh_RequestShareStorageWrapperunwind_info +mono_aot_Sce_Vsh_RnpsAppMgrWrapperjit_code_end +mono_aot_Sce_Vsh_RnpsAppMgrWrapperjit_code_start +mono_aot_Sce_Vsh_RnpsAppMgrWrapperjit_got +mono_aot_Sce_Vsh_RnpsAppMgrWrappermethod_addresses +mono_aot_Sce_Vsh_RnpsAppMgrWrapperplt +mono_aot_Sce_Vsh_RnpsAppMgrWrapperplt_end +mono_aot_Sce_Vsh_RnpsAppMgrWrapperunbox_trampoline_addresses +mono_aot_Sce_Vsh_RnpsAppMgrWrapperunbox_trampolines +mono_aot_Sce_Vsh_RnpsAppMgrWrapperunbox_trampolines_end +mono_aot_Sce_Vsh_RnpsAppMgrWrapperunwind_info +mono_aot_Sce_Vsh_SQLiteAuxjit_code_end +mono_aot_Sce_Vsh_SQLiteAuxjit_code_start +mono_aot_Sce_Vsh_SQLiteAuxjit_got +mono_aot_Sce_Vsh_SQLiteAuxmethod_addresses +mono_aot_Sce_Vsh_SQLiteAuxplt +mono_aot_Sce_Vsh_SQLiteAuxplt_end +mono_aot_Sce_Vsh_SQLiteAuxunbox_trampoline_addresses +mono_aot_Sce_Vsh_SQLiteAuxunbox_trampolines +mono_aot_Sce_Vsh_SQLiteAuxunbox_trampolines_end +mono_aot_Sce_Vsh_SQLiteAuxunwind_info +mono_aot_Sce_Vsh_SQLitejit_code_end +mono_aot_Sce_Vsh_SQLitejit_code_start +mono_aot_Sce_Vsh_SQLitejit_got +mono_aot_Sce_Vsh_SQLitemethod_addresses +mono_aot_Sce_Vsh_SQLiteplt +mono_aot_Sce_Vsh_SQLiteplt_end +mono_aot_Sce_Vsh_SQLiteunbox_trampoline_addresses +mono_aot_Sce_Vsh_SQLiteunbox_trampolines +mono_aot_Sce_Vsh_SQLiteunbox_trampolines_end +mono_aot_Sce_Vsh_SQLiteunwind_info +mono_aot_Sce_Vsh_SessionInvitationjit_code_end +mono_aot_Sce_Vsh_SessionInvitationjit_code_start +mono_aot_Sce_Vsh_SessionInvitationjit_got +mono_aot_Sce_Vsh_SessionInvitationmethod_addresses +mono_aot_Sce_Vsh_SessionInvitationplt +mono_aot_Sce_Vsh_SessionInvitationplt_end +mono_aot_Sce_Vsh_SessionInvitationunbox_trampoline_addresses +mono_aot_Sce_Vsh_SessionInvitationunbox_trampolines +mono_aot_Sce_Vsh_SessionInvitationunbox_trampolines_end +mono_aot_Sce_Vsh_SessionInvitationunwind_info +mono_aot_Sce_Vsh_ShareGuideScenejit_code_end +mono_aot_Sce_Vsh_ShareGuideScenejit_code_start +mono_aot_Sce_Vsh_ShareGuideScenejit_got +mono_aot_Sce_Vsh_ShareGuideScenemethod_addresses +mono_aot_Sce_Vsh_ShareGuideSceneplt +mono_aot_Sce_Vsh_ShareGuideSceneplt_end +mono_aot_Sce_Vsh_ShareGuideSceneunbox_trampoline_addresses +mono_aot_Sce_Vsh_ShareGuideSceneunbox_trampolines +mono_aot_Sce_Vsh_ShareGuideSceneunbox_trampolines_end +mono_aot_Sce_Vsh_ShareGuideSceneunwind_info +mono_aot_Sce_Vsh_ShareServerPostWrapperjit_code_end +mono_aot_Sce_Vsh_ShareServerPostWrapperjit_code_start +mono_aot_Sce_Vsh_ShareServerPostWrapperjit_got +mono_aot_Sce_Vsh_ShareServerPostWrappermethod_addresses +mono_aot_Sce_Vsh_ShareServerPostWrapperplt +mono_aot_Sce_Vsh_ShareServerPostWrapperplt_end +mono_aot_Sce_Vsh_ShareServerPostWrapperunbox_trampoline_addresses +mono_aot_Sce_Vsh_ShareServerPostWrapperunbox_trampolines +mono_aot_Sce_Vsh_ShareServerPostWrapperunbox_trampolines_end +mono_aot_Sce_Vsh_ShareServerPostWrapperunwind_info +mono_aot_Sce_Vsh_ShellCoreUtilWrapperjit_code_end +mono_aot_Sce_Vsh_ShellCoreUtilWrapperjit_code_start +mono_aot_Sce_Vsh_ShellCoreUtilWrapperjit_got +mono_aot_Sce_Vsh_ShellCoreUtilWrappermethod_addresses +mono_aot_Sce_Vsh_ShellCoreUtilWrapperplt +mono_aot_Sce_Vsh_ShellCoreUtilWrapperplt_end +mono_aot_Sce_Vsh_ShellCoreUtilWrapperunbox_trampoline_addresses +mono_aot_Sce_Vsh_ShellCoreUtilWrapperunbox_trampolines +mono_aot_Sce_Vsh_ShellCoreUtilWrapperunbox_trampolines_end +mono_aot_Sce_Vsh_ShellCoreUtilWrapperunwind_info +mono_aot_Sce_Vsh_ShellUIUtilWrapperjit_code_end +mono_aot_Sce_Vsh_ShellUIUtilWrapperjit_code_start +mono_aot_Sce_Vsh_ShellUIUtilWrapperjit_got +mono_aot_Sce_Vsh_ShellUIUtilWrappermethod_addresses +mono_aot_Sce_Vsh_ShellUIUtilWrapperplt +mono_aot_Sce_Vsh_ShellUIUtilWrapperplt_end +mono_aot_Sce_Vsh_ShellUIUtilWrapperunbox_trampoline_addresses +mono_aot_Sce_Vsh_ShellUIUtilWrapperunbox_trampolines +mono_aot_Sce_Vsh_ShellUIUtilWrapperunbox_trampolines_end +mono_aot_Sce_Vsh_ShellUIUtilWrapperunwind_info +mono_aot_Sce_Vsh_Sl2_NativeQueueClientjit_code_end +mono_aot_Sce_Vsh_Sl2_NativeQueueClientjit_code_start +mono_aot_Sce_Vsh_Sl2_NativeQueueClientjit_got +mono_aot_Sce_Vsh_Sl2_NativeQueueClientmethod_addresses +mono_aot_Sce_Vsh_Sl2_NativeQueueClientplt +mono_aot_Sce_Vsh_Sl2_NativeQueueClientplt_end +mono_aot_Sce_Vsh_Sl2_NativeQueueClientunbox_trampoline_addresses +mono_aot_Sce_Vsh_Sl2_NativeQueueClientunbox_trampolines +mono_aot_Sce_Vsh_Sl2_NativeQueueClientunbox_trampolines_end +mono_aot_Sce_Vsh_Sl2_NativeQueueClientunwind_info +mono_aot_Sce_Vsh_Sl2_Sl2Clientjit_code_end +mono_aot_Sce_Vsh_Sl2_Sl2Clientjit_code_start +mono_aot_Sce_Vsh_Sl2_Sl2Clientjit_got +mono_aot_Sce_Vsh_Sl2_Sl2Clientmethod_addresses +mono_aot_Sce_Vsh_Sl2_Sl2Clientplt +mono_aot_Sce_Vsh_Sl2_Sl2Clientplt_end +mono_aot_Sce_Vsh_Sl2_Sl2Clientunbox_trampoline_addresses +mono_aot_Sce_Vsh_Sl2_Sl2Clientunbox_trampolines +mono_aot_Sce_Vsh_Sl2_Sl2Clientunbox_trampolines_end +mono_aot_Sce_Vsh_Sl2_Sl2Clientunwind_info +mono_aot_Sce_Vsh_Sl2_Sl2Commonjit_code_end +mono_aot_Sce_Vsh_Sl2_Sl2Commonjit_code_start +mono_aot_Sce_Vsh_Sl2_Sl2Commonjit_got +mono_aot_Sce_Vsh_Sl2_Sl2Commonmethod_addresses +mono_aot_Sce_Vsh_Sl2_Sl2Commonplt +mono_aot_Sce_Vsh_Sl2_Sl2Commonplt_end +mono_aot_Sce_Vsh_Sl2_Sl2Commonunbox_trampoline_addresses +mono_aot_Sce_Vsh_Sl2_Sl2Commonunbox_trampolines +mono_aot_Sce_Vsh_Sl2_Sl2Commonunbox_trampolines_end +mono_aot_Sce_Vsh_Sl2_Sl2Commonunwind_info +mono_aot_Sce_Vsh_Sl2_Sl2Deliverjit_code_end +mono_aot_Sce_Vsh_Sl2_Sl2Deliverjit_code_start +mono_aot_Sce_Vsh_Sl2_Sl2Deliverjit_got +mono_aot_Sce_Vsh_Sl2_Sl2Delivermethod_addresses +mono_aot_Sce_Vsh_Sl2_Sl2Deliverplt +mono_aot_Sce_Vsh_Sl2_Sl2Deliverplt_end +mono_aot_Sce_Vsh_Sl2_Sl2Deliverunbox_trampoline_addresses +mono_aot_Sce_Vsh_Sl2_Sl2Deliverunbox_trampolines +mono_aot_Sce_Vsh_Sl2_Sl2Deliverunbox_trampolines_end +mono_aot_Sce_Vsh_Sl2_Sl2Deliverunwind_info +mono_aot_Sce_Vsh_Sticker_StickerLibAccessorjit_code_end +mono_aot_Sce_Vsh_Sticker_StickerLibAccessorjit_code_start +mono_aot_Sce_Vsh_Sticker_StickerLibAccessorjit_got +mono_aot_Sce_Vsh_Sticker_StickerLibAccessormethod_addresses +mono_aot_Sce_Vsh_Sticker_StickerLibAccessorplt +mono_aot_Sce_Vsh_Sticker_StickerLibAccessorplt_end +mono_aot_Sce_Vsh_Sticker_StickerLibAccessorunbox_trampoline_addresses +mono_aot_Sce_Vsh_Sticker_StickerLibAccessorunbox_trampolines +mono_aot_Sce_Vsh_Sticker_StickerLibAccessorunbox_trampolines_end +mono_aot_Sce_Vsh_Sticker_StickerLibAccessorunwind_info +mono_aot_Sce_Vsh_Stickerjit_code_end +mono_aot_Sce_Vsh_Stickerjit_code_start +mono_aot_Sce_Vsh_Stickerjit_got +mono_aot_Sce_Vsh_Stickermethod_addresses +mono_aot_Sce_Vsh_Stickerplt +mono_aot_Sce_Vsh_Stickerplt_end +mono_aot_Sce_Vsh_Stickerunbox_trampoline_addresses +mono_aot_Sce_Vsh_Stickerunbox_trampolines +mono_aot_Sce_Vsh_Stickerunbox_trampolines_end +mono_aot_Sce_Vsh_Stickerunwind_info +mono_aot_Sce_Vsh_SysUtilWrapperjit_code_end +mono_aot_Sce_Vsh_SysUtilWrapperjit_code_start +mono_aot_Sce_Vsh_SysUtilWrapperjit_got +mono_aot_Sce_Vsh_SysUtilWrappermethod_addresses +mono_aot_Sce_Vsh_SysUtilWrapperplt +mono_aot_Sce_Vsh_SysUtilWrapperplt_end +mono_aot_Sce_Vsh_SysUtilWrapperunbox_trampoline_addresses +mono_aot_Sce_Vsh_SysUtilWrapperunbox_trampolines +mono_aot_Sce_Vsh_SysUtilWrapperunbox_trampolines_end +mono_aot_Sce_Vsh_SysUtilWrapperunwind_info +mono_aot_Sce_Vsh_SyscallWrapperjit_code_end +mono_aot_Sce_Vsh_SyscallWrapperjit_code_start +mono_aot_Sce_Vsh_SyscallWrapperjit_got +mono_aot_Sce_Vsh_SyscallWrappermethod_addresses +mono_aot_Sce_Vsh_SyscallWrapperplt +mono_aot_Sce_Vsh_SyscallWrapperplt_end +mono_aot_Sce_Vsh_SyscallWrapperunbox_trampoline_addresses +mono_aot_Sce_Vsh_SyscallWrapperunbox_trampolines +mono_aot_Sce_Vsh_SyscallWrapperunbox_trampolines_end +mono_aot_Sce_Vsh_SyscallWrapperunwind_info +mono_aot_Sce_Vsh_SysfileUtilWrapperjit_code_end +mono_aot_Sce_Vsh_SysfileUtilWrapperjit_code_start +mono_aot_Sce_Vsh_SysfileUtilWrapperjit_got +mono_aot_Sce_Vsh_SysfileUtilWrappermethod_addresses +mono_aot_Sce_Vsh_SysfileUtilWrapperplt +mono_aot_Sce_Vsh_SysfileUtilWrapperplt_end +mono_aot_Sce_Vsh_SysfileUtilWrapperunbox_trampoline_addresses +mono_aot_Sce_Vsh_SysfileUtilWrapperunbox_trampolines +mono_aot_Sce_Vsh_SysfileUtilWrapperunbox_trampolines_end +mono_aot_Sce_Vsh_SysfileUtilWrapperunwind_info +mono_aot_Sce_Vsh_SystemLoggerUtilWrapperjit_code_end +mono_aot_Sce_Vsh_SystemLoggerUtilWrapperjit_code_start +mono_aot_Sce_Vsh_SystemLoggerUtilWrapperjit_got +mono_aot_Sce_Vsh_SystemLoggerUtilWrappermethod_addresses +mono_aot_Sce_Vsh_SystemLoggerUtilWrapperplt +mono_aot_Sce_Vsh_SystemLoggerUtilWrapperplt_end +mono_aot_Sce_Vsh_SystemLoggerUtilWrapperunbox_trampoline_addresses +mono_aot_Sce_Vsh_SystemLoggerUtilWrapperunbox_trampolines +mono_aot_Sce_Vsh_SystemLoggerUtilWrapperunbox_trampolines_end +mono_aot_Sce_Vsh_SystemLoggerUtilWrapperunwind_info +mono_aot_Sce_Vsh_SystemLoggerWrapperjit_code_end +mono_aot_Sce_Vsh_SystemLoggerWrapperjit_code_start +mono_aot_Sce_Vsh_SystemLoggerWrapperjit_got +mono_aot_Sce_Vsh_SystemLoggerWrappermethod_addresses +mono_aot_Sce_Vsh_SystemLoggerWrapperplt +mono_aot_Sce_Vsh_SystemLoggerWrapperplt_end +mono_aot_Sce_Vsh_SystemLoggerWrapperunbox_trampoline_addresses +mono_aot_Sce_Vsh_SystemLoggerWrapperunbox_trampolines +mono_aot_Sce_Vsh_SystemLoggerWrapperunbox_trampolines_end +mono_aot_Sce_Vsh_SystemLoggerWrapperunwind_info +mono_aot_Sce_Vsh_Themejit_code_end +mono_aot_Sce_Vsh_Themejit_code_start +mono_aot_Sce_Vsh_Themejit_got +mono_aot_Sce_Vsh_Thememethod_addresses +mono_aot_Sce_Vsh_Themeplt +mono_aot_Sce_Vsh_Themeplt_end +mono_aot_Sce_Vsh_Themeunbox_trampoline_addresses +mono_aot_Sce_Vsh_Themeunbox_trampolines +mono_aot_Sce_Vsh_Themeunbox_trampolines_end +mono_aot_Sce_Vsh_Themeunwind_info +mono_aot_Sce_Vsh_UpdateServiceWrapperjit_code_end +mono_aot_Sce_Vsh_UpdateServiceWrapperjit_code_start +mono_aot_Sce_Vsh_UpdateServiceWrapperjit_got +mono_aot_Sce_Vsh_UpdateServiceWrappermethod_addresses +mono_aot_Sce_Vsh_UpdateServiceWrapperplt +mono_aot_Sce_Vsh_UpdateServiceWrapperplt_end +mono_aot_Sce_Vsh_UpdateServiceWrapperunbox_trampoline_addresses +mono_aot_Sce_Vsh_UpdateServiceWrapperunbox_trampolines +mono_aot_Sce_Vsh_UpdateServiceWrapperunbox_trampolines_end +mono_aot_Sce_Vsh_UpdateServiceWrapperunwind_info +mono_aot_Sce_Vsh_UsbStorageScenejit_code_end +mono_aot_Sce_Vsh_UsbStorageScenejit_code_start +mono_aot_Sce_Vsh_UsbStorageScenejit_got +mono_aot_Sce_Vsh_UsbStorageScenemethod_addresses +mono_aot_Sce_Vsh_UsbStorageSceneplt +mono_aot_Sce_Vsh_UsbStorageSceneplt_end +mono_aot_Sce_Vsh_UsbStorageSceneunbox_trampoline_addresses +mono_aot_Sce_Vsh_UsbStorageSceneunbox_trampolines +mono_aot_Sce_Vsh_UsbStorageSceneunbox_trampolines_end +mono_aot_Sce_Vsh_UsbStorageSceneunwind_info +mono_aot_Sce_Vsh_UserServiceWrapperjit_code_end +mono_aot_Sce_Vsh_UserServiceWrapperjit_code_start +mono_aot_Sce_Vsh_UserServiceWrapperjit_got +mono_aot_Sce_Vsh_UserServiceWrappermethod_addresses +mono_aot_Sce_Vsh_UserServiceWrapperplt +mono_aot_Sce_Vsh_UserServiceWrapperplt_end +mono_aot_Sce_Vsh_UserServiceWrapperunbox_trampoline_addresses +mono_aot_Sce_Vsh_UserServiceWrapperunbox_trampolines +mono_aot_Sce_Vsh_UserServiceWrapperunbox_trampolines_end +mono_aot_Sce_Vsh_UserServiceWrapperunwind_info +mono_aot_Sce_Vsh_VideoEdit_Wrapperjit_code_end +mono_aot_Sce_Vsh_VideoEdit_Wrapperjit_code_start +mono_aot_Sce_Vsh_VideoEdit_Wrapperjit_got +mono_aot_Sce_Vsh_VideoEdit_Wrappermethod_addresses +mono_aot_Sce_Vsh_VideoEdit_Wrapperplt +mono_aot_Sce_Vsh_VideoEdit_Wrapperplt_end +mono_aot_Sce_Vsh_VideoEdit_Wrapperunbox_trampoline_addresses +mono_aot_Sce_Vsh_VideoEdit_Wrapperunbox_trampolines +mono_aot_Sce_Vsh_VideoEdit_Wrapperunbox_trampolines_end +mono_aot_Sce_Vsh_VideoEdit_Wrapperunwind_info +mono_aot_Sce_Vsh_VideoFramework_Platformjit_code_end +mono_aot_Sce_Vsh_VideoFramework_Platformjit_code_start +mono_aot_Sce_Vsh_VideoFramework_Platformjit_got +mono_aot_Sce_Vsh_VideoFramework_Platformmethod_addresses +mono_aot_Sce_Vsh_VideoFramework_Platformplt +mono_aot_Sce_Vsh_VideoFramework_Platformplt_end +mono_aot_Sce_Vsh_VideoFramework_Platformunbox_trampoline_addresses +mono_aot_Sce_Vsh_VideoFramework_Platformunbox_trampolines +mono_aot_Sce_Vsh_VideoFramework_Platformunbox_trampolines_end +mono_aot_Sce_Vsh_VideoFramework_Platformunwind_info +mono_aot_Sce_Vsh_VideoPlayerjit_code_end +mono_aot_Sce_Vsh_VideoPlayerjit_code_start +mono_aot_Sce_Vsh_VideoPlayerjit_got +mono_aot_Sce_Vsh_VideoPlayermethod_addresses +mono_aot_Sce_Vsh_VideoPlayerplt +mono_aot_Sce_Vsh_VideoPlayerplt_end +mono_aot_Sce_Vsh_VideoPlayerunbox_trampoline_addresses +mono_aot_Sce_Vsh_VideoPlayerunbox_trampolines +mono_aot_Sce_Vsh_VideoPlayerunbox_trampolines_end +mono_aot_Sce_Vsh_VideoPlayerunwind_info +mono_aot_Sce_Vsh_VideoRecordingWrapperjit_code_end +mono_aot_Sce_Vsh_VideoRecordingWrapperjit_code_start +mono_aot_Sce_Vsh_VideoRecordingWrapperjit_got +mono_aot_Sce_Vsh_VideoRecordingWrappermethod_addresses +mono_aot_Sce_Vsh_VideoRecordingWrapperplt +mono_aot_Sce_Vsh_VideoRecordingWrapperplt_end +mono_aot_Sce_Vsh_VideoRecordingWrapperunbox_trampoline_addresses +mono_aot_Sce_Vsh_VideoRecordingWrapperunbox_trampolines +mono_aot_Sce_Vsh_VideoRecordingWrapperunbox_trampolines_end +mono_aot_Sce_Vsh_VideoRecordingWrapperunwind_info +mono_aot_Sce_Vsh_VideoServiceWrapperjit_code_end +mono_aot_Sce_Vsh_VideoServiceWrapperjit_code_start +mono_aot_Sce_Vsh_VideoServiceWrapperjit_got +mono_aot_Sce_Vsh_VideoServiceWrappermethod_addresses +mono_aot_Sce_Vsh_VideoServiceWrapperplt +mono_aot_Sce_Vsh_VideoServiceWrapperplt_end +mono_aot_Sce_Vsh_VideoServiceWrapperunbox_trampoline_addresses +mono_aot_Sce_Vsh_VideoServiceWrapperunbox_trampolines +mono_aot_Sce_Vsh_VideoServiceWrapperunbox_trampolines_end +mono_aot_Sce_Vsh_VideoServiceWrapperunwind_info +mono_aot_Sce_Vsh_VoiceAndAgentjit_code_end +mono_aot_Sce_Vsh_VoiceAndAgentjit_code_start +mono_aot_Sce_Vsh_VoiceAndAgentjit_got +mono_aot_Sce_Vsh_VoiceAndAgentmethod_addresses +mono_aot_Sce_Vsh_VoiceAndAgentplt +mono_aot_Sce_Vsh_VoiceAndAgentplt_end +mono_aot_Sce_Vsh_VoiceAndAgentunbox_trampoline_addresses +mono_aot_Sce_Vsh_VoiceAndAgentunbox_trampolines +mono_aot_Sce_Vsh_VoiceAndAgentunbox_trampolines_end +mono_aot_Sce_Vsh_VoiceAndAgentunwind_info +mono_aot_Sce_Vsh_VoiceMsg_VoiceMsgWrapperjit_code_end +mono_aot_Sce_Vsh_VoiceMsg_VoiceMsgWrapperjit_code_start +mono_aot_Sce_Vsh_VoiceMsg_VoiceMsgWrapperjit_got +mono_aot_Sce_Vsh_VoiceMsg_VoiceMsgWrappermethod_addresses +mono_aot_Sce_Vsh_VoiceMsg_VoiceMsgWrapperplt +mono_aot_Sce_Vsh_VoiceMsg_VoiceMsgWrapperplt_end +mono_aot_Sce_Vsh_VoiceMsg_VoiceMsgWrapperunbox_trampoline_addresses +mono_aot_Sce_Vsh_VoiceMsg_VoiceMsgWrapperunbox_trampolines +mono_aot_Sce_Vsh_VoiceMsg_VoiceMsgWrapperunbox_trampolines_end +mono_aot_Sce_Vsh_VoiceMsg_VoiceMsgWrapperunwind_info +mono_aot_Sce_Vsh_VrEnvironmentjit_code_end +mono_aot_Sce_Vsh_VrEnvironmentjit_code_start +mono_aot_Sce_Vsh_VrEnvironmentjit_got +mono_aot_Sce_Vsh_VrEnvironmentmethod_addresses +mono_aot_Sce_Vsh_VrEnvironmentplt +mono_aot_Sce_Vsh_VrEnvironmentplt_end +mono_aot_Sce_Vsh_VrEnvironmentunbox_trampoline_addresses +mono_aot_Sce_Vsh_VrEnvironmentunbox_trampolines +mono_aot_Sce_Vsh_VrEnvironmentunbox_trampolines_end +mono_aot_Sce_Vsh_VrEnvironmentunwind_info +mono_aot_Sce_Vsh_WebBrowserjit_code_end +mono_aot_Sce_Vsh_WebBrowserjit_code_start +mono_aot_Sce_Vsh_WebBrowserjit_got +mono_aot_Sce_Vsh_WebBrowsermethod_addresses +mono_aot_Sce_Vsh_WebBrowserplt +mono_aot_Sce_Vsh_WebBrowserplt_end +mono_aot_Sce_Vsh_WebBrowserunbox_trampoline_addresses +mono_aot_Sce_Vsh_WebBrowserunbox_trampolines +mono_aot_Sce_Vsh_WebBrowserunbox_trampolines_end +mono_aot_Sce_Vsh_WebBrowserunwind_info +mono_aot_Sce_Vsh_WebViewDialogjit_code_end +mono_aot_Sce_Vsh_WebViewDialogjit_code_start +mono_aot_Sce_Vsh_WebViewDialogjit_got +mono_aot_Sce_Vsh_WebViewDialogmethod_addresses +mono_aot_Sce_Vsh_WebViewDialogplt +mono_aot_Sce_Vsh_WebViewDialogplt_end +mono_aot_Sce_Vsh_WebViewDialogunbox_trampoline_addresses +mono_aot_Sce_Vsh_WebViewDialogunbox_trampolines +mono_aot_Sce_Vsh_WebViewDialogunbox_trampolines_end +mono_aot_Sce_Vsh_WebViewDialogunwind_info +mono_aot_Sce_Vsh_Webbrowser_XdbWrapperjit_code_end +mono_aot_Sce_Vsh_Webbrowser_XdbWrapperjit_code_start +mono_aot_Sce_Vsh_Webbrowser_XdbWrapperjit_got +mono_aot_Sce_Vsh_Webbrowser_XdbWrappermethod_addresses +mono_aot_Sce_Vsh_Webbrowser_XdbWrapperplt +mono_aot_Sce_Vsh_Webbrowser_XdbWrapperplt_end +mono_aot_Sce_Vsh_Webbrowser_XdbWrapperunbox_trampoline_addresses +mono_aot_Sce_Vsh_Webbrowser_XdbWrapperunbox_trampolines +mono_aot_Sce_Vsh_Webbrowser_XdbWrapperunbox_trampolines_end +mono_aot_Sce_Vsh_Webbrowser_XdbWrapperunwind_info +mono_aot_Sce_Vsh_Webbrowser_XutilWrapperjit_code_end +mono_aot_Sce_Vsh_Webbrowser_XutilWrapperjit_code_start +mono_aot_Sce_Vsh_Webbrowser_XutilWrapperjit_got +mono_aot_Sce_Vsh_Webbrowser_XutilWrappermethod_addresses +mono_aot_Sce_Vsh_Webbrowser_XutilWrapperplt +mono_aot_Sce_Vsh_Webbrowser_XutilWrapperplt_end +mono_aot_Sce_Vsh_Webbrowser_XutilWrapperunbox_trampoline_addresses +mono_aot_Sce_Vsh_Webbrowser_XutilWrapperunbox_trampolines +mono_aot_Sce_Vsh_Webbrowser_XutilWrapperunbox_trampolines_end +mono_aot_Sce_Vsh_Webbrowser_XutilWrapperunwind_info +mono_aot_Sce_Vshjit_code_end +mono_aot_Sce_Vshjit_code_start +mono_aot_Sce_Vshjit_got +mono_aot_Sce_Vshmethod_addresses +mono_aot_Sce_Vshplt +mono_aot_Sce_Vshplt_end +mono_aot_Sce_Vshunbox_trampoline_addresses +mono_aot_Sce_Vshunbox_trampolines +mono_aot_Sce_Vshunbox_trampolines_end +mono_aot_Sce_Vshunwind_info +mono_aot_System_Collectionsjit_code_end +mono_aot_System_Collectionsjit_code_start +mono_aot_System_Collectionsjit_got +mono_aot_System_Collectionsmethod_addresses +mono_aot_System_Collectionsplt +mono_aot_System_Collectionsplt_end +mono_aot_System_Collectionsunbox_trampoline_addresses +mono_aot_System_Collectionsunbox_trampolines +mono_aot_System_Collectionsunbox_trampolines_end +mono_aot_System_Collectionsunwind_info +mono_aot_System_ComponentModel_Compositionjit_code_end +mono_aot_System_ComponentModel_Compositionjit_code_start +mono_aot_System_ComponentModel_Compositionjit_got +mono_aot_System_ComponentModel_Compositionmethod_addresses +mono_aot_System_ComponentModel_Compositionplt +mono_aot_System_ComponentModel_Compositionplt_end +mono_aot_System_ComponentModel_Compositionunbox_trampoline_addresses +mono_aot_System_ComponentModel_Compositionunbox_trampolines +mono_aot_System_ComponentModel_Compositionunbox_trampolines_end +mono_aot_System_ComponentModel_Compositionunwind_info +mono_aot_System_ComponentModel_DataAnnotationsjit_code_end +mono_aot_System_ComponentModel_DataAnnotationsjit_code_start +mono_aot_System_ComponentModel_DataAnnotationsjit_got +mono_aot_System_ComponentModel_DataAnnotationsmethod_addresses +mono_aot_System_ComponentModel_DataAnnotationsplt +mono_aot_System_ComponentModel_DataAnnotationsplt_end +mono_aot_System_ComponentModel_DataAnnotationsunbox_trampoline_addresses +mono_aot_System_ComponentModel_DataAnnotationsunbox_trampolines +mono_aot_System_ComponentModel_DataAnnotationsunbox_trampolines_end +mono_aot_System_ComponentModel_DataAnnotationsunwind_info +mono_aot_System_Corejit_code_end +mono_aot_System_Corejit_code_start +mono_aot_System_Corejit_got +mono_aot_System_Coremethod_addresses +mono_aot_System_Coreplt +mono_aot_System_Coreplt_end +mono_aot_System_Coreunbox_trampoline_addresses +mono_aot_System_Coreunbox_trampolines +mono_aot_System_Coreunbox_trampolines_end +mono_aot_System_Coreunwind_info +mono_aot_System_Data_Services_Clientjit_code_end +mono_aot_System_Data_Services_Clientjit_code_start +mono_aot_System_Data_Services_Clientjit_got +mono_aot_System_Data_Services_Clientmethod_addresses +mono_aot_System_Data_Services_Clientplt +mono_aot_System_Data_Services_Clientplt_end +mono_aot_System_Data_Services_Clientunbox_trampoline_addresses +mono_aot_System_Data_Services_Clientunbox_trampolines +mono_aot_System_Data_Services_Clientunbox_trampolines_end +mono_aot_System_Data_Services_Clientunwind_info +mono_aot_System_Datajit_code_end +mono_aot_System_Datajit_code_start +mono_aot_System_Datajit_got +mono_aot_System_Datamethod_addresses +mono_aot_System_Dataplt +mono_aot_System_Dataplt_end +mono_aot_System_Dataunbox_trampoline_addresses +mono_aot_System_Dataunbox_trampolines +mono_aot_System_Dataunbox_trampolines_end +mono_aot_System_Dataunwind_info +mono_aot_System_IO_Compression_FileSystemjit_code_end +mono_aot_System_IO_Compression_FileSystemjit_code_start +mono_aot_System_IO_Compression_FileSystemjit_got +mono_aot_System_IO_Compression_FileSystemmethod_addresses +mono_aot_System_IO_Compression_FileSystemplt +mono_aot_System_IO_Compression_FileSystemplt_end +mono_aot_System_IO_Compression_FileSystemunbox_trampoline_addresses +mono_aot_System_IO_Compression_FileSystemunbox_trampolines +mono_aot_System_IO_Compression_FileSystemunbox_trampolines_end +mono_aot_System_IO_Compression_FileSystemunwind_info +mono_aot_System_IO_Compressionjit_code_end +mono_aot_System_IO_Compressionjit_code_start +mono_aot_System_IO_Compressionjit_got +mono_aot_System_IO_Compressionmethod_addresses +mono_aot_System_IO_Compressionplt +mono_aot_System_IO_Compressionplt_end +mono_aot_System_IO_Compressionunbox_trampoline_addresses +mono_aot_System_IO_Compressionunbox_trampolines +mono_aot_System_IO_Compressionunbox_trampolines_end +mono_aot_System_IO_Compressionunwind_info +mono_aot_System_Net_Http_WebRequestjit_code_end +mono_aot_System_Net_Http_WebRequestjit_code_start +mono_aot_System_Net_Http_WebRequestjit_got +mono_aot_System_Net_Http_WebRequestmethod_addresses +mono_aot_System_Net_Http_WebRequestplt +mono_aot_System_Net_Http_WebRequestplt_end +mono_aot_System_Net_Http_WebRequestunbox_trampoline_addresses +mono_aot_System_Net_Http_WebRequestunbox_trampolines +mono_aot_System_Net_Http_WebRequestunbox_trampolines_end +mono_aot_System_Net_Http_WebRequestunwind_info +mono_aot_System_Net_Httpjit_code_end +mono_aot_System_Net_Httpjit_code_start +mono_aot_System_Net_Httpjit_got +mono_aot_System_Net_Httpmethod_addresses +mono_aot_System_Net_Httpplt +mono_aot_System_Net_Httpplt_end +mono_aot_System_Net_Httpunbox_trampoline_addresses +mono_aot_System_Net_Httpunbox_trampolines +mono_aot_System_Net_Httpunbox_trampolines_end +mono_aot_System_Net_Httpunwind_info +mono_aot_System_Netjit_code_end +mono_aot_System_Netjit_code_start +mono_aot_System_Netjit_got +mono_aot_System_Netmethod_addresses +mono_aot_System_Netplt +mono_aot_System_Netplt_end +mono_aot_System_Netunbox_trampoline_addresses +mono_aot_System_Netunbox_trampolines +mono_aot_System_Netunbox_trampolines_end +mono_aot_System_Netunwind_info +mono_aot_System_Numericsjit_code_end +mono_aot_System_Numericsjit_code_start +mono_aot_System_Numericsjit_got +mono_aot_System_Numericsmethod_addresses +mono_aot_System_Numericsplt +mono_aot_System_Numericsplt_end +mono_aot_System_Numericsunbox_trampoline_addresses +mono_aot_System_Numericsunbox_trampolines +mono_aot_System_Numericsunbox_trampolines_end +mono_aot_System_Numericsunwind_info +mono_aot_System_Reactive_Corejit_code_end +mono_aot_System_Reactive_Corejit_code_start +mono_aot_System_Reactive_Corejit_got +mono_aot_System_Reactive_Coremethod_addresses +mono_aot_System_Reactive_Coreplt +mono_aot_System_Reactive_Coreplt_end +mono_aot_System_Reactive_Coreunbox_trampoline_addresses +mono_aot_System_Reactive_Coreunbox_trampolines +mono_aot_System_Reactive_Coreunbox_trampolines_end +mono_aot_System_Reactive_Coreunwind_info +mono_aot_System_Reactive_Interfacesjit_code_end +mono_aot_System_Reactive_Interfacesjit_code_start +mono_aot_System_Reactive_Interfacesjit_got +mono_aot_System_Reactive_Interfacesmethod_addresses +mono_aot_System_Reactive_Interfacesplt +mono_aot_System_Reactive_Interfacesplt_end +mono_aot_System_Reactive_Interfacesunbox_trampoline_addresses +mono_aot_System_Reactive_Interfacesunbox_trampolines +mono_aot_System_Reactive_Interfacesunbox_trampolines_end +mono_aot_System_Reactive_Interfacesunwind_info +mono_aot_System_Reactive_Linqjit_code_end +mono_aot_System_Reactive_Linqjit_code_start +mono_aot_System_Reactive_Linqjit_got +mono_aot_System_Reactive_Linqmethod_addresses +mono_aot_System_Reactive_Linqplt +mono_aot_System_Reactive_Linqplt_end +mono_aot_System_Reactive_Linqunbox_trampoline_addresses +mono_aot_System_Reactive_Linqunbox_trampolines +mono_aot_System_Reactive_Linqunbox_trampolines_end +mono_aot_System_Reactive_Linqunwind_info +mono_aot_System_Resources_ResourceManagerjit_code_end +mono_aot_System_Resources_ResourceManagerjit_code_start +mono_aot_System_Resources_ResourceManagerjit_got +mono_aot_System_Resources_ResourceManagermethod_addresses +mono_aot_System_Resources_ResourceManagerplt +mono_aot_System_Resources_ResourceManagerplt_end +mono_aot_System_Resources_ResourceManagerunbox_trampoline_addresses +mono_aot_System_Resources_ResourceManagerunbox_trampolines +mono_aot_System_Resources_ResourceManagerunbox_trampolines_end +mono_aot_System_Resources_ResourceManagerunwind_info +mono_aot_System_Runtime_Extensionsjit_code_end +mono_aot_System_Runtime_Extensionsjit_code_start +mono_aot_System_Runtime_Extensionsjit_got +mono_aot_System_Runtime_Extensionsmethod_addresses +mono_aot_System_Runtime_Extensionsplt +mono_aot_System_Runtime_Extensionsplt_end +mono_aot_System_Runtime_Extensionsunbox_trampoline_addresses +mono_aot_System_Runtime_Extensionsunbox_trampolines +mono_aot_System_Runtime_Extensionsunbox_trampolines_end +mono_aot_System_Runtime_Extensionsunwind_info +mono_aot_System_Runtime_Serializationjit_code_end +mono_aot_System_Runtime_Serializationjit_code_start +mono_aot_System_Runtime_Serializationjit_got +mono_aot_System_Runtime_Serializationmethod_addresses +mono_aot_System_Runtime_Serializationplt +mono_aot_System_Runtime_Serializationplt_end +mono_aot_System_Runtime_Serializationunbox_trampoline_addresses +mono_aot_System_Runtime_Serializationunbox_trampolines +mono_aot_System_Runtime_Serializationunbox_trampolines_end +mono_aot_System_Runtime_Serializationunwind_info +mono_aot_System_Runtimejit_code_end +mono_aot_System_Runtimejit_code_start +mono_aot_System_Runtimejit_got +mono_aot_System_Runtimemethod_addresses +mono_aot_System_Runtimeplt +mono_aot_System_Runtimeplt_end +mono_aot_System_Runtimeunbox_trampoline_addresses +mono_aot_System_Runtimeunbox_trampolines +mono_aot_System_Runtimeunbox_trampolines_end +mono_aot_System_Runtimeunwind_info +mono_aot_System_ServiceModel_Internalsjit_code_end +mono_aot_System_ServiceModel_Internalsjit_code_start +mono_aot_System_ServiceModel_Internalsjit_got +mono_aot_System_ServiceModel_Internalsmethod_addresses +mono_aot_System_ServiceModel_Internalsplt +mono_aot_System_ServiceModel_Internalsplt_end +mono_aot_System_ServiceModel_Internalsunbox_trampoline_addresses +mono_aot_System_ServiceModel_Internalsunbox_trampolines +mono_aot_System_ServiceModel_Internalsunbox_trampolines_end +mono_aot_System_ServiceModel_Internalsunwind_info +mono_aot_System_ServiceModel_Webjit_code_end +mono_aot_System_ServiceModel_Webjit_code_start +mono_aot_System_ServiceModel_Webjit_got +mono_aot_System_ServiceModel_Webmethod_addresses +mono_aot_System_ServiceModel_Webplt +mono_aot_System_ServiceModel_Webplt_end +mono_aot_System_ServiceModel_Webunbox_trampoline_addresses +mono_aot_System_ServiceModel_Webunbox_trampolines +mono_aot_System_ServiceModel_Webunbox_trampolines_end +mono_aot_System_ServiceModel_Webunwind_info +mono_aot_System_ServiceModeljit_code_end +mono_aot_System_ServiceModeljit_code_start +mono_aot_System_ServiceModeljit_got +mono_aot_System_ServiceModelmethod_addresses +mono_aot_System_ServiceModelplt +mono_aot_System_ServiceModelplt_end +mono_aot_System_ServiceModelunbox_trampoline_addresses +mono_aot_System_ServiceModelunbox_trampolines +mono_aot_System_ServiceModelunbox_trampolines_end +mono_aot_System_ServiceModelunwind_info +mono_aot_System_Threading_Tasksjit_code_end +mono_aot_System_Threading_Tasksjit_code_start +mono_aot_System_Threading_Tasksjit_got +mono_aot_System_Threading_Tasksmethod_addresses +mono_aot_System_Threading_Tasksplt +mono_aot_System_Threading_Tasksplt_end +mono_aot_System_Threading_Tasksunbox_trampoline_addresses +mono_aot_System_Threading_Tasksunbox_trampolines +mono_aot_System_Threading_Tasksunbox_trampolines_end +mono_aot_System_Threading_Tasksunwind_info +mono_aot_System_Transactionsjit_code_end +mono_aot_System_Transactionsjit_code_start +mono_aot_System_Transactionsjit_got +mono_aot_System_Transactionsmethod_addresses +mono_aot_System_Transactionsplt +mono_aot_System_Transactionsplt_end +mono_aot_System_Transactionsunbox_trampoline_addresses +mono_aot_System_Transactionsunbox_trampolines +mono_aot_System_Transactionsunbox_trampolines_end +mono_aot_System_Transactionsunwind_info +mono_aot_System_Web_Servicesjit_code_end +mono_aot_System_Web_Servicesjit_code_start +mono_aot_System_Web_Servicesjit_got +mono_aot_System_Web_Servicesmethod_addresses +mono_aot_System_Web_Servicesplt +mono_aot_System_Web_Servicesplt_end +mono_aot_System_Web_Servicesunbox_trampoline_addresses +mono_aot_System_Web_Servicesunbox_trampolines +mono_aot_System_Web_Servicesunbox_trampolines_end +mono_aot_System_Web_Servicesunwind_info +mono_aot_System_Windowsjit_code_end +mono_aot_System_Windowsjit_code_start +mono_aot_System_Windowsjit_got +mono_aot_System_Windowsmethod_addresses +mono_aot_System_Windowsplt +mono_aot_System_Windowsplt_end +mono_aot_System_Windowsunbox_trampoline_addresses +mono_aot_System_Windowsunbox_trampolines +mono_aot_System_Windowsunbox_trampolines_end +mono_aot_System_Windowsunwind_info +mono_aot_System_Xml_Linqjit_code_end +mono_aot_System_Xml_Linqjit_code_start +mono_aot_System_Xml_Linqjit_got +mono_aot_System_Xml_Linqmethod_addresses +mono_aot_System_Xml_Linqplt +mono_aot_System_Xml_Linqplt_end +mono_aot_System_Xml_Linqunbox_trampoline_addresses +mono_aot_System_Xml_Linqunbox_trampolines +mono_aot_System_Xml_Linqunbox_trampolines_end +mono_aot_System_Xml_Linqunwind_info +mono_aot_System_Xml_Serializationjit_code_end +mono_aot_System_Xml_Serializationjit_code_start +mono_aot_System_Xml_Serializationjit_got +mono_aot_System_Xml_Serializationmethod_addresses +mono_aot_System_Xml_Serializationplt +mono_aot_System_Xml_Serializationplt_end +mono_aot_System_Xml_Serializationunbox_trampoline_addresses +mono_aot_System_Xml_Serializationunbox_trampolines +mono_aot_System_Xml_Serializationunbox_trampolines_end +mono_aot_System_Xml_Serializationunwind_info +mono_aot_System_Xmljit_code_end +mono_aot_System_Xmljit_code_start +mono_aot_System_Xmljit_got +mono_aot_System_Xmlmethod_addresses +mono_aot_System_Xmlplt +mono_aot_System_Xmlplt_end +mono_aot_System_Xmlunbox_trampoline_addresses +mono_aot_System_Xmlunbox_trampolines +mono_aot_System_Xmlunbox_trampolines_end +mono_aot_System_Xmlunwind_info +mono_aot_Systemjit_code_end +mono_aot_Systemjit_code_start +mono_aot_Systemjit_got +mono_aot_Systemmethod_addresses +mono_aot_Systemplt +mono_aot_Systemplt_end +mono_aot_Systemunbox_trampoline_addresses +mono_aot_Systemunbox_trampolines +mono_aot_Systemunbox_trampolines_end +mono_aot_Systemunwind_info +mono_aot_appjit_code_end +mono_aot_appjit_code_start +mono_aot_appjit_got +mono_aot_appmethod_addresses +mono_aot_appplt +mono_aot_appplt_end +mono_aot_appunbox_trampoline_addresses +mono_aot_appunbox_trampolines +mono_aot_appunbox_trampolines_end +mono_aot_appunwind_info +mono_aot_file_info +mono_aot_get_method +mono_aot_mscorlibjit_code_end +mono_aot_mscorlibjit_code_start +mono_aot_mscorlibjit_got +mono_aot_mscorlibmethod_addresses +mono_aot_mscorlibplt +mono_aot_mscorlibplt_end +mono_aot_mscorlibunbox_trampoline_addresses +mono_aot_mscorlibunbox_trampolines +mono_aot_mscorlibunbox_trampolines_end +mono_aot_mscorlibunwind_info +mono_aot_platformjit_code_end +mono_aot_platformjit_code_start +mono_aot_platformjit_got +mono_aot_platformmethod_addresses +mono_aot_platformplt +mono_aot_platformplt_end +mono_aot_platformunbox_trampoline_addresses +mono_aot_platformunbox_trampolines +mono_aot_platformunbox_trampolines_end +mono_aot_platformunwind_info +mono_aot_register_module +mono_arch_build_imt_thunk +mono_arch_clear_breakpoint +mono_arch_create_rgctx_lazy_fetch_trampoline +mono_arch_enable_ssp +mono_arch_get_call_filter +mono_arch_get_nullified_class_init_trampoline +mono_arch_get_restore_context +mono_arch_get_rethrow_exception +mono_arch_get_static_rgctx_trampoline +mono_arch_get_throw_exception +mono_arch_get_throw_trampoline +mono_arch_get_unbox_trampoline +mono_arch_init +mono_arch_nullify_class_init_trampoline +mono_arch_set_breakpoint +mono_arch_set_nullified_class_init_trampoline +mono_arch_set_trigger_pages +mono_arch_setup_jit_tls_data +mono_array_addr_with_size +mono_array_class_get +mono_array_clone +mono_array_element_size +mono_array_length +mono_array_new +mono_array_new_full +mono_array_new_specific +mono_array_set_generic_method_info +mono_assemblies_cleanup +mono_assemblies_init +mono_assembly_addref +mono_assembly_close +mono_assembly_fill_assembly_name +mono_assembly_foreach +mono_assembly_get_assemblyref +mono_assembly_get_image +mono_assembly_get_main +mono_assembly_get_name +mono_assembly_get_object +mono_assembly_getrootdir +mono_assembly_invoke_load_hook +mono_assembly_invoke_search_hook +mono_assembly_load +mono_assembly_load_from +mono_assembly_load_from_full +mono_assembly_load_full +mono_assembly_load_module +mono_assembly_load_reference +mono_assembly_load_references +mono_assembly_load_with_partial_name +mono_assembly_loaded +mono_assembly_loaded_full +mono_assembly_name_free +mono_assembly_name_get_culture +mono_assembly_name_get_name +mono_assembly_name_get_pubkeytoken +mono_assembly_name_get_version +mono_assembly_name_new +mono_assembly_names_equal +mono_assembly_open +mono_assembly_open_full +mono_assembly_set_main +mono_assembly_setrootdir +mono_bitset_alloc_size +mono_bitset_clear +mono_bitset_clear_all +mono_bitset_clone +mono_bitset_copyto +mono_bitset_count +mono_bitset_equal +mono_bitset_find_first +mono_bitset_find_first_unset +mono_bitset_find_last +mono_bitset_find_start +mono_bitset_foreach +mono_bitset_free +mono_bitset_intersection +mono_bitset_intersection_2 +mono_bitset_invert +mono_bitset_mem_new +mono_bitset_new +mono_bitset_set +mono_bitset_set_all +mono_bitset_size +mono_bitset_sub +mono_bitset_test +mono_bitset_test_bulk +mono_bitset_union +mono_bounded_array_class_get +mono_breakpoint_clean_code +mono_btls_bio_flush +mono_btls_bio_free +mono_btls_bio_hexdump +mono_btls_bio_indent +mono_btls_bio_mem_get_data +mono_btls_bio_mem_new +mono_btls_bio_mono_initialize +mono_btls_bio_mono_new +mono_btls_bio_print_errors +mono_btls_bio_read +mono_btls_bio_write +mono_btls_error_clear_error +mono_btls_error_get_error +mono_btls_error_get_error_line +mono_btls_error_get_error_string_n +mono_btls_error_peek_error +mono_btls_error_peek_error_line +mono_btls_free +mono_btls_key_assign_rsa_private_key +mono_btls_key_free +mono_btls_key_get_bits +mono_btls_key_get_bytes +mono_btls_key_is_rsa +mono_btls_key_new +mono_btls_key_up_ref +mono_btls_pkcs12_add_cert +mono_btls_pkcs12_free +mono_btls_pkcs12_get_cert +mono_btls_pkcs12_get_certs +mono_btls_pkcs12_get_count +mono_btls_pkcs12_get_private_key +mono_btls_pkcs12_has_private_key +mono_btls_pkcs12_import +mono_btls_pkcs12_new +mono_btls_pkcs12_up_ref +mono_btls_ssl_accept +mono_btls_ssl_add_chain_certificate +mono_btls_ssl_close +mono_btls_ssl_connect +mono_btls_ssl_ctx_debug_printf +mono_btls_ssl_ctx_free +mono_btls_ssl_ctx_get_ctx +mono_btls_ssl_ctx_initialize +mono_btls_ssl_ctx_is_cipher_supported +mono_btls_ssl_ctx_is_debug_enabled +mono_btls_ssl_ctx_new +mono_btls_ssl_ctx_peek_store +mono_btls_ssl_ctx_set_cert_select_callback +mono_btls_ssl_ctx_set_cert_verify_callback +mono_btls_ssl_ctx_set_ciphers +mono_btls_ssl_ctx_set_debug_bio +mono_btls_ssl_ctx_set_max_version +mono_btls_ssl_ctx_set_min_version +mono_btls_ssl_ctx_set_verify_param +mono_btls_ssl_ctx_up_ref +mono_btls_ssl_destroy +mono_btls_ssl_get_cipher +mono_btls_ssl_get_ciphers +mono_btls_ssl_get_error +mono_btls_ssl_get_peer_certificate +mono_btls_ssl_get_server_name +mono_btls_ssl_get_version +mono_btls_ssl_handshake +mono_btls_ssl_new +mono_btls_ssl_print_errors_cb +mono_btls_ssl_read +mono_btls_ssl_set_bio +mono_btls_ssl_set_cipher_list +mono_btls_ssl_set_max_version +mono_btls_ssl_set_min_version +mono_btls_ssl_set_server_name +mono_btls_ssl_set_verify_param +mono_btls_ssl_use_certificate +mono_btls_ssl_use_private_key +mono_btls_ssl_write +mono_btls_x509_add_explicit_trust +mono_btls_x509_add_reject_object +mono_btls_x509_add_trust_object +mono_btls_x509_chain_add_cert +mono_btls_x509_chain_free +mono_btls_x509_chain_from_certs +mono_btls_x509_chain_get_cert +mono_btls_x509_chain_get_certs +mono_btls_x509_chain_get_count +mono_btls_x509_chain_new +mono_btls_x509_chain_peek_certs +mono_btls_x509_chain_up_ref +mono_btls_x509_cmp +mono_btls_x509_crl_free +mono_btls_x509_crl_from_data +mono_btls_x509_crl_get_by_cert +mono_btls_x509_crl_get_by_serial +mono_btls_x509_crl_get_issuer +mono_btls_x509_crl_get_last_update +mono_btls_x509_crl_get_next_update +mono_btls_x509_crl_get_revoked +mono_btls_x509_crl_get_revoked_count +mono_btls_x509_crl_get_version +mono_btls_x509_crl_ref +mono_btls_x509_dup +mono_btls_x509_free +mono_btls_x509_from_data +mono_btls_x509_get_hash +mono_btls_x509_get_issuer_name +mono_btls_x509_get_issuer_name_string +mono_btls_x509_get_not_after +mono_btls_x509_get_not_before +mono_btls_x509_get_pubkey +mono_btls_x509_get_public_key +mono_btls_x509_get_public_key_algorithm +mono_btls_x509_get_public_key_asn1 +mono_btls_x509_get_public_key_parameters +mono_btls_x509_get_raw_data +mono_btls_x509_get_serial_number +mono_btls_x509_get_signature_algorithm +mono_btls_x509_get_subject_key_identifier +mono_btls_x509_get_subject_name +mono_btls_x509_get_subject_name_string +mono_btls_x509_get_version +mono_btls_x509_lookup_add_dir +mono_btls_x509_lookup_add_mono +mono_btls_x509_lookup_by_fingerprint +mono_btls_x509_lookup_by_subject +mono_btls_x509_lookup_free +mono_btls_x509_lookup_get_type +mono_btls_x509_lookup_init +mono_btls_x509_lookup_load_file +mono_btls_x509_lookup_mono_free +mono_btls_x509_lookup_mono_init +mono_btls_x509_lookup_mono_method +mono_btls_x509_lookup_mono_new +mono_btls_x509_lookup_new +mono_btls_x509_lookup_peek_lookup +mono_btls_x509_lookup_shutdown +mono_btls_x509_lookup_up_ref +mono_btls_x509_name_copy +mono_btls_x509_name_free +mono_btls_x509_name_from_data +mono_btls_x509_name_from_name +mono_btls_x509_name_get_entry_count +mono_btls_x509_name_get_entry_oid +mono_btls_x509_name_get_entry_oid_data +mono_btls_x509_name_get_entry_type +mono_btls_x509_name_get_entry_value +mono_btls_x509_name_get_raw_data +mono_btls_x509_name_hash +mono_btls_x509_name_hash_old +mono_btls_x509_name_peek_name +mono_btls_x509_name_print_bio +mono_btls_x509_name_print_string +mono_btls_x509_print +mono_btls_x509_revoked_free +mono_btls_x509_revoked_get_reason +mono_btls_x509_revoked_get_revocation_date +mono_btls_x509_revoked_get_sequence +mono_btls_x509_revoked_get_serial_number +mono_btls_x509_revoked_new +mono_btls_x509_store_add_cert +mono_btls_x509_store_add_orbis_certs +mono_btls_x509_store_ctx_free +mono_btls_x509_store_ctx_from_ptr +mono_btls_x509_store_ctx_get_by_subject +mono_btls_x509_store_ctx_get_chain +mono_btls_x509_store_ctx_get_current_cert +mono_btls_x509_store_ctx_get_current_issuer +mono_btls_x509_store_ctx_get_error +mono_btls_x509_store_ctx_get_error_depth +mono_btls_x509_store_ctx_get_foo +mono_btls_x509_store_ctx_get_untrusted +mono_btls_x509_store_ctx_get_verify_param +mono_btls_x509_store_ctx_init +mono_btls_x509_store_ctx_new +mono_btls_x509_store_ctx_set_param +mono_btls_x509_store_ctx_up_ref +mono_btls_x509_store_ctx_verify_cert +mono_btls_x509_store_free +mono_btls_x509_store_from_ctx +mono_btls_x509_store_from_ssl_ctx +mono_btls_x509_store_from_store +mono_btls_x509_store_get_count +mono_btls_x509_store_load_locations +mono_btls_x509_store_new +mono_btls_x509_store_peek_store +mono_btls_x509_store_set_default_paths +mono_btls_x509_store_up_ref +mono_btls_x509_up_ref +mono_btls_x509_verify_param_add_host +mono_btls_x509_verify_param_can_modify +mono_btls_x509_verify_param_copy +mono_btls_x509_verify_param_free +mono_btls_x509_verify_param_from_store_ctx +mono_btls_x509_verify_param_get_depth +mono_btls_x509_verify_param_get_flags +mono_btls_x509_verify_param_get_mono_flags +mono_btls_x509_verify_param_get_peername +mono_btls_x509_verify_param_lookup +mono_btls_x509_verify_param_new +mono_btls_x509_verify_param_peek_param +mono_btls_x509_verify_param_set_depth +mono_btls_x509_verify_param_set_flags +mono_btls_x509_verify_param_set_host +mono_btls_x509_verify_param_set_mono_flags +mono_btls_x509_verify_param_set_name +mono_btls_x509_verify_param_set_purpose +mono_btls_x509_verify_param_set_time +mono_build_date +mono_check_corlib_version +mono_class_array_element_size +mono_class_data_size +mono_class_describe_statics +mono_class_enum_basetype +mono_class_from_generic_parameter +mono_class_from_mono_type +mono_class_from_name +mono_class_from_name_case +mono_class_from_typeref +mono_class_from_typeref_checked +mono_class_get +mono_class_get_byref_type +mono_class_get_element_class +mono_class_get_event_token +mono_class_get_events +mono_class_get_field +mono_class_get_field_from_name +mono_class_get_field_token +mono_class_get_fields +mono_class_get_flags +mono_class_get_full +mono_class_get_image +mono_class_get_interfaces +mono_class_get_method_from_name +mono_class_get_method_from_name_flags +mono_class_get_methods +mono_class_get_name +mono_class_get_namespace +mono_class_get_nested_types +mono_class_get_nesting_type +mono_class_get_parent +mono_class_get_properties +mono_class_get_property_from_name +mono_class_get_property_token +mono_class_get_rank +mono_class_get_type +mono_class_get_type_token +mono_class_implements_interface +mono_class_inflate_generic_method +mono_class_inflate_generic_type +mono_class_init +mono_class_instance_size +mono_class_interface_offset +mono_class_is_assignable_from +mono_class_is_delegate +mono_class_is_enum +mono_class_is_subclass_of +mono_class_is_valid_enum +mono_class_is_valuetype +mono_class_min_align +mono_class_name_from_token +mono_class_num_events +mono_class_num_fields +mono_class_num_methods +mono_class_num_properties +mono_class_value_size +mono_class_vtable +mono_classes_set_global_interface_bitset_location +mono_cli_rva_image_map +mono_code_manager_cleanup +mono_code_manager_commit +mono_code_manager_destroy +mono_code_manager_init +mono_code_manager_invalidate +mono_code_manager_new +mono_code_manager_new_dynamic +mono_code_manager_reserve +mono_code_manager_reserve_align +mono_code_manager_set_read_only +mono_code_manager_size +mono_compile_method +mono_conc_hashtable_destroy +mono_conc_hashtable_foreach +mono_conc_hashtable_insert +mono_conc_hashtable_lookup +mono_conc_hashtable_new +mono_conc_hashtable_new_full +mono_conc_hashtable_remove +mono_config_cleanup +mono_config_for_assembly +mono_config_get_cpu +mono_config_get_os +mono_config_is_server_mode +mono_config_parse +mono_config_parse_memory +mono_config_set_server_mode +mono_config_string_for_assembly_file +mono_context_get +mono_context_get_desc +mono_context_get_domain_id +mono_context_get_id +mono_context_init +mono_context_set +mono_counter_get_name +mono_counter_get_section +mono_counter_get_size +mono_counter_get_type +mono_counter_get_unit +mono_counter_get_variance +mono_counters_cleanup +mono_counters_dump +mono_counters_enable +mono_counters_foreach +mono_counters_init +mono_counters_on_register +mono_counters_register +mono_counters_register_with_size +mono_counters_sample +mono_create_delegate_trampoline +mono_create_helper_signatures +mono_create_jit_trampoline +mono_create_jump_trampoline +mono_create_specific_trampoline +mono_custom_attrs_construct +mono_custom_attrs_free +mono_custom_attrs_from_assembly +mono_custom_attrs_from_class +mono_custom_attrs_from_event +mono_custom_attrs_from_field +mono_custom_attrs_from_index +mono_custom_attrs_from_method +mono_custom_attrs_from_param +mono_custom_attrs_from_property +mono_custom_attrs_get_attr +mono_custom_attrs_has_attr +mono_debug_add_delegate_trampoline +mono_debug_add_method +mono_debug_cleanup +mono_debug_close_image +mono_debug_close_mono_symbol_file +mono_debug_domain_create +mono_debug_domain_unload +mono_debug_enabled +mono_debug_find_method +mono_debug_free_locals +mono_debug_free_method_jit_info +mono_debug_free_source_location +mono_debug_il_offset_from_address +mono_debug_init +mono_debug_lookup_locals +mono_debug_lookup_method +mono_debug_lookup_method_addresses +mono_debug_lookup_source_location +mono_debug_open_image_from_memory +mono_debug_open_mono_symbols +mono_debug_print_stack_frame +mono_debug_print_vars +mono_debug_remove_method +mono_debug_set_data_table_hash +mono_debug_set_debug_format +mono_debug_set_debug_handles_hash +mono_debug_set_symbol_table +mono_debug_symfile_free_location +mono_debug_symfile_is_loaded +mono_debug_symfile_lookup_locals +mono_debug_symfile_lookup_location +mono_debug_symfile_lookup_method +mono_debugger_agent_parse_options +mono_debugger_agent_register_transport +mono_debugger_agent_transport_handshake +mono_debugger_insert_breakpoint +mono_debugger_method_has_breakpoint +mono_debugger_run_finally +mono_declsec_flags_from_assembly +mono_declsec_flags_from_class +mono_declsec_flags_from_method +mono_declsec_get_assembly_action +mono_declsec_get_class_action +mono_declsec_get_demands +mono_declsec_get_inheritdemands_class +mono_declsec_get_inheritdemands_method +mono_declsec_get_linkdemands +mono_declsec_get_method_action +mono_defaults +mono_delegate_free_ftnptr +mono_delegate_to_ftnptr +mono_digest_get_public_token +mono_disable_jit_time_log +mono_disasm_code +mono_disasm_code_one +mono_dl_fallback_register +mono_dl_fallback_unregister +mono_dl_open +mono_dllmap_insert +mono_domain_add_class_static_data +mono_domain_assembly_open +mono_domain_create +mono_domain_create_appdomain +mono_domain_finalize +mono_domain_foreach +mono_domain_free +mono_domain_from_appdomain +mono_domain_get +mono_domain_get_by_id +mono_domain_get_friendly_name +mono_domain_get_id +mono_domain_has_type_resolve +mono_domain_is_unloading +mono_domain_owns_vtable_slot +mono_domain_set +mono_domain_set_config +mono_domain_set_internal +mono_domain_set_tls_offset +mono_domain_try_type_resolve +mono_domain_try_unload +mono_domain_unload +mono_emit_native_call +mono_enable_jit_time_log +mono_environment_exitcode_get +mono_environment_exitcode_set +mono_error_cleanup +mono_error_get_error_code +mono_error_get_message +mono_error_init +mono_error_init_flags +mono_error_ok +mono_escape_uri_string +mono_event_get_add_method +mono_event_get_flags +mono_event_get_name +mono_event_get_object +mono_event_get_parent +mono_event_get_raise_method +mono_event_get_remove_method +mono_exception_from_name +mono_exception_from_name_domain +mono_exception_from_name_msg +mono_exception_from_name_two_strings +mono_exception_from_token +mono_exception_from_token_two_strings +mono_exception_walk_trace +mono_field_from_token +mono_field_full_name +mono_field_get_data +mono_field_get_flags +mono_field_get_name +mono_field_get_object +mono_field_get_offset +mono_field_get_parent +mono_field_get_type +mono_field_get_value +mono_field_get_value_object +mono_field_set_value +mono_field_static_get_value +mono_field_static_set_value +mono_file_map +mono_file_map_close +mono_file_map_fd +mono_file_map_open +mono_file_map_size +mono_file_unmap +mono_free +mono_free_bstr +mono_free_method +mono_free_verify_list +mono_g_hash_table_destroy +mono_g_hash_table_find +mono_g_hash_table_foreach +mono_g_hash_table_foreach_remove +mono_g_hash_table_insert +mono_g_hash_table_lookup +mono_g_hash_table_lookup_extended +mono_g_hash_table_new_type +mono_g_hash_table_print_stats +mono_g_hash_table_remove +mono_g_hash_table_replace +mono_g_hash_table_size +mono_gc_collect +mono_gc_collection_count +mono_gc_deregister_root +mono_gc_finalize_notify +mono_gc_get_generation +mono_gc_get_heap_size +mono_gc_get_used_size +mono_gc_invoke_finalizers +mono_gc_make_root_descr_user +mono_gc_max_generation +mono_gc_out_of_memory +mono_gc_reference_queue_add +mono_gc_reference_queue_free +mono_gc_reference_queue_new +mono_gc_register_bridge_callbacks +mono_gc_register_finalizer_callbacks +mono_gc_register_root +mono_gc_register_root_wbarrier +mono_gc_set_heap_size_limit +mono_gc_set_write_barrier +mono_gc_toggleref_add +mono_gc_toggleref_register_callback +mono_gc_wait_for_bridge_processing +mono_gc_walk_heap +mono_gc_wbarrier_arrayref_copy +mono_gc_wbarrier_generic_nostore +mono_gc_wbarrier_generic_store +mono_gc_wbarrier_generic_store_atomic +mono_gc_wbarrier_object_copy +mono_gc_wbarrier_set_arrayref +mono_gc_wbarrier_set_field +mono_gc_wbarrier_value_copy +mono_gchandle_free +mono_gchandle_get_target +mono_gchandle_new +mono_gchandle_new_weakref +mono_get_array_class +mono_get_boolean_class +mono_get_byte_class +mono_get_cached_unwind_info +mono_get_char_class +mono_get_config_dir +mono_get_corlib +mono_get_dbnull_object +mono_get_delegate_begin_invoke +mono_get_delegate_end_invoke +mono_get_delegate_invoke +mono_get_double_class +mono_get_enum_class +mono_get_exception_appdomain_unloaded +mono_get_exception_argument +mono_get_exception_argument_null +mono_get_exception_argument_out_of_range +mono_get_exception_arithmetic +mono_get_exception_array_type_mismatch +mono_get_exception_bad_image_format +mono_get_exception_bad_image_format2 +mono_get_exception_cannot_unload_appdomain +mono_get_exception_class +mono_get_exception_divide_by_zero +mono_get_exception_execution_engine +mono_get_exception_field_access +mono_get_exception_file_not_found +mono_get_exception_file_not_found2 +mono_get_exception_index_out_of_range +mono_get_exception_invalid_cast +mono_get_exception_invalid_operation +mono_get_exception_io +mono_get_exception_method_access +mono_get_exception_missing_field +mono_get_exception_missing_method +mono_get_exception_not_implemented +mono_get_exception_not_supported +mono_get_exception_null_reference +mono_get_exception_out_of_memory +mono_get_exception_overflow +mono_get_exception_reflection_type_load +mono_get_exception_runtime_wrapped +mono_get_exception_security +mono_get_exception_serialization +mono_get_exception_stack_overflow +mono_get_exception_synchronization_lock +mono_get_exception_thread_abort +mono_get_exception_thread_interrupted +mono_get_exception_thread_state +mono_get_exception_type_initialization +mono_get_exception_type_load +mono_get_inflated_method +mono_get_int16_class +mono_get_int32_class +mono_get_int64_class +mono_get_intptr_class +mono_get_jit_info_from_method +mono_get_machine_config +mono_get_method +mono_get_method_constrained +mono_get_method_full +mono_get_object_class +mono_get_root_domain +mono_get_runtime_build_info +mono_get_sbyte_class +mono_get_single_class +mono_get_string_class +mono_get_thread_class +mono_get_trampoline_func +mono_get_uint16_class +mono_get_uint32_class +mono_get_uint64_class +mono_get_uintptr_class +mono_get_void_class +mono_guid_to_string +mono_guid_to_string_minimal +mono_hazard_pointer_get +mono_icall_init_comp +mono_image_add_to_name_cache +mono_image_addref +mono_image_close +mono_image_ensure_section +mono_image_ensure_section_idx +mono_image_fixup_vtable +mono_image_get_assembly +mono_image_get_entry_point +mono_image_get_filename +mono_image_get_guid +mono_image_get_name +mono_image_get_public_key +mono_image_get_resource +mono_image_get_strong_name +mono_image_get_table_info +mono_image_get_table_rows +mono_image_has_authenticode_entry +mono_image_init +mono_image_init_name_cache +mono_image_is_dynamic +mono_image_load_file_for_image +mono_image_load_module +mono_image_loaded +mono_image_loaded_by_guid +mono_image_loaded_by_guid_full +mono_image_loaded_full +mono_image_lookup_resource +mono_image_open +mono_image_open_from_data +mono_image_open_from_data_full +mono_image_open_from_data_with_name +mono_image_open_full +mono_image_rva_map +mono_image_strerror +mono_image_strong_name_position +mono_images_cleanup +mono_images_init +mono_init +mono_init_from_assembly +mono_init_version +mono_inst_name +mono_install_assembly_load_hook +mono_install_assembly_postload_refonly_search_hook +mono_install_assembly_postload_search_hook +mono_install_assembly_preload_hook +mono_install_assembly_refonly_preload_hook +mono_install_assembly_refonly_search_hook +mono_install_assembly_search_hook +mono_install_compile_method +mono_install_ftnptr_eh_callback +mono_install_jump_trampoline +mono_install_load_aot_data_hook +mono_install_lookup_dynamic_token +mono_install_runtime_cleanup +mono_install_trampoline +mono_install_unhandled_exception_hook +mono_is_debugger_attached +mono_jit_cleanup +mono_jit_compile_method +mono_jit_compile_method_inner +mono_jit_exec +mono_jit_free_method +mono_jit_info_get_code_size +mono_jit_info_get_code_start +mono_jit_info_get_method +mono_jit_info_table_find +mono_jit_init +mono_jit_init_version +mono_jit_parse_options +mono_jit_set_aot_mode +mono_jit_set_aot_only +mono_jit_set_domain +mono_jit_set_trace_options +mono_jit_thread_attach +mono_jit_thread_detach +mono_ldstr +mono_ldtoken +mono_lls_get_hazardous_pointer_with_mask +mono_lls_init +mono_lls_insert +mono_lls_remove +mono_load_remote_field +mono_load_remote_field_new +mono_loader_init +mono_loader_lock +mono_loader_register_module +mono_loader_unlock +mono_lock_free_alloc +mono_lock_free_allocator_check_consistency +mono_lock_free_allocator_init_allocator +mono_lock_free_allocator_init_size_class +mono_lock_free_free +mono_lock_free_queue_dequeue +mono_lock_free_queue_enqueue +mono_lock_free_queue_init +mono_lock_free_queue_node_init +mono_lock_free_queue_node_unpoison +mono_locks_dump +mono_log_close_logfile +mono_log_close_syslog +mono_log_open_logfile +mono_log_open_syslog +mono_log_write_logfile +mono_log_write_syslog +mono_lookup_icall_symbol +mono_lookup_internal_call +mono_lookup_pinvoke_call +mono_main +mono_marshal_set_cached_stelemref_methods +mono_marshal_string_to_utf16 +mono_md5_final +mono_md5_get_digest +mono_md5_get_digest_from_file +mono_md5_init +mono_md5_update +mono_mempool_alloc +mono_mempool_alloc0 +mono_mempool_contains_addr +mono_mempool_destroy +mono_mempool_get_allocated +mono_mempool_invalidate +mono_mempool_new +mono_mempool_new_size +mono_mempool_stats +mono_mempool_strdup +mono_metadata_blob_heap +mono_metadata_cleanup +mono_metadata_compute_size +mono_metadata_custom_attrs_from_index +mono_metadata_declsec_from_index +mono_metadata_decode_blob_size +mono_metadata_decode_row +mono_metadata_decode_row_col +mono_metadata_decode_signed_value +mono_metadata_decode_table_row +mono_metadata_decode_table_row_col +mono_metadata_decode_value +mono_metadata_encode_value +mono_metadata_events_from_typedef +mono_metadata_field_info +mono_metadata_field_info_with_mempool +mono_metadata_free_array +mono_metadata_free_inflated_signature +mono_metadata_free_marshal_spec +mono_metadata_free_method_signature +mono_metadata_free_mh +mono_metadata_free_type +mono_metadata_generic_class_is_valuetype +mono_metadata_get_constant_index +mono_metadata_get_generic_param_row +mono_metadata_get_inflated_signature +mono_metadata_get_marshal_info +mono_metadata_guid_heap +mono_metadata_implmap_from_method +mono_metadata_init +mono_metadata_init_comp +mono_metadata_interfaces_from_typedef +mono_metadata_load_generic_param_constraints_checked +mono_metadata_load_generic_params +mono_metadata_locate +mono_metadata_locate_token +mono_metadata_methods_from_event +mono_metadata_methods_from_property +mono_metadata_nested_in_typedef +mono_metadata_nesting_typedef +mono_metadata_packing_from_typedef +mono_metadata_parse_array +mono_metadata_parse_custom_mod +mono_metadata_parse_field_type +mono_metadata_parse_marshal_spec +mono_metadata_parse_method_signature +mono_metadata_parse_method_signature_full +mono_metadata_parse_mh +mono_metadata_parse_mh_full +mono_metadata_parse_param +mono_metadata_parse_signature +mono_metadata_parse_type +mono_metadata_parse_typedef_or_ref +mono_metadata_properties_from_typedef +mono_metadata_signature_alloc +mono_metadata_signature_dup +mono_metadata_signature_equal +mono_metadata_string_heap +mono_metadata_token_from_dor +mono_metadata_translate_token_index +mono_metadata_type_equal +mono_metadata_type_hash +mono_metadata_typedef_from_field +mono_metadata_typedef_from_method +mono_metadata_user_string +mono_method_body_get_object +mono_method_can_access_field +mono_method_can_access_method +mono_method_desc_free +mono_method_desc_from_method +mono_method_desc_full_match +mono_method_desc_match +mono_method_desc_new +mono_method_desc_search_in_class +mono_method_desc_search_in_image +mono_method_full_name +mono_method_get_class +mono_method_get_flags +mono_method_get_generic_container +mono_method_get_header +mono_method_get_header_checked +mono_method_get_index +mono_method_get_last_managed +mono_method_get_marshal_info +mono_method_get_name +mono_method_get_object +mono_method_get_param_names +mono_method_get_param_token +mono_method_get_signature +mono_method_get_signature_full +mono_method_get_token +mono_method_get_unmanaged_thunk +mono_method_has_marshal_info +mono_method_header_get_clauses +mono_method_header_get_code +mono_method_header_get_locals +mono_method_header_get_num_clauses +mono_method_print_code +mono_method_signature +mono_method_verify +mono_mlist_alloc +mono_mlist_append +mono_mlist_get_data +mono_mlist_last +mono_mlist_length +mono_mlist_next +mono_mlist_prepend +mono_mlist_remove_item +mono_mlist_set_data +mono_mlist_set_next +mono_module_file_get_object +mono_module_get_object +mono_monitor_enter +mono_monitor_enter_v4 +mono_monitor_exit +mono_monitor_try_enter +mono_mprotect +mono_native_thread_create +mono_native_thread_id_get +mono_native_thread_join +mono_native_thread_set_name +mono_object_castclass_mbyref +mono_object_clone +mono_object_describe +mono_object_describe_fields +mono_object_get_class +mono_object_get_domain +mono_object_get_size +mono_object_get_virtual_method +mono_object_hash +mono_object_isinst +mono_object_isinst_mbyref +mono_object_new +mono_object_new_alloc_specific +mono_object_new_fast +mono_object_new_from_token +mono_object_new_specific +mono_object_to_string +mono_object_unbox +mono_opcode_name +mono_opcode_value +mono_pagesize +mono_param_get_objects +mono_parse_default_optimizations +mono_parse_env_options +mono_parse_options_from +mono_path_canonicalize +mono_path_resolve_symlinks +mono_pe_file_open +mono_perfcounter_foreach +mono_perfcounters_init +mono_personality +mono_pmip +mono_poll +mono_print_jit_stats +mono_print_method_from_ip +mono_print_thread_dump +mono_print_thread_dump_from_ctx +mono_print_unhandled_exception +mono_privileges_finish_init +mono_privileges_set_heap +mono_privileges_start_init +mono_profiler_coverage_get +mono_profiler_events +mono_profiler_get_current_time +mono_profiler_get_events +mono_profiler_install +mono_profiler_install_allocation +mono_profiler_install_appdomain +mono_profiler_install_appdomain_name +mono_profiler_install_assembly +mono_profiler_install_class +mono_profiler_install_code_buffer_new +mono_profiler_install_code_chunk_destroy +mono_profiler_install_code_chunk_new +mono_profiler_install_context +mono_profiler_install_coverage_filter +mono_profiler_install_enter_leave +mono_profiler_install_exception +mono_profiler_install_gc +mono_profiler_install_gc_finalize +mono_profiler_install_gc_moves +mono_profiler_install_gc_roots +mono_profiler_install_iomap +mono_profiler_install_jit_compile +mono_profiler_install_jit_end +mono_profiler_install_method_free +mono_profiler_install_method_invoke +mono_profiler_install_module +mono_profiler_install_monitor +mono_profiler_install_runtime_initialized +mono_profiler_install_statistical +mono_profiler_install_statistical_call_chain +mono_profiler_install_thread +mono_profiler_install_thread_name +mono_profiler_install_transition +mono_profiler_load +mono_profiler_set_current_time_func +mono_profiler_set_events +mono_profiler_set_statistical_mode +mono_profiler_startup +mono_profiler_startup_log +mono_property_get_flags +mono_property_get_get_method +mono_property_get_name +mono_property_get_object +mono_property_get_parent +mono_property_get_set_method +mono_property_get_value +mono_property_hash_destroy +mono_property_hash_insert +mono_property_hash_lookup +mono_property_hash_new +mono_property_hash_remove_object +mono_property_set_value +mono_ptr_class_get +mono_raise_exception +mono_reflection_assembly_get_assembly +mono_reflection_free_type_info +mono_reflection_get_custom_attrs +mono_reflection_get_custom_attrs_blob +mono_reflection_get_custom_attrs_by_type +mono_reflection_get_custom_attrs_data +mono_reflection_get_custom_attrs_info +mono_reflection_get_token +mono_reflection_get_type +mono_reflection_lookup_dynamic_token +mono_reflection_parse_type +mono_reflection_type_from_name +mono_reflection_type_get_type +mono_register_bundled_assemblies +mono_register_config_for_assembly +mono_register_machine_config +mono_register_symfile_for_assembly +mono_register_trampoline_funcs +mono_replace_ins +mono_runtime_class_init +mono_runtime_cleanup +mono_runtime_delegate_invoke +mono_runtime_exec_main +mono_runtime_exec_managed_code +mono_runtime_get_main_args +mono_runtime_init +mono_runtime_invoke +mono_runtime_invoke_array +mono_runtime_is_shutting_down +mono_runtime_object_init +mono_runtime_quit +mono_runtime_resource_check_limit +mono_runtime_resource_limit +mono_runtime_resource_set_callback +mono_runtime_run_main +mono_runtime_set_has_tls_get +mono_runtime_set_main_args +mono_runtime_set_shutting_down +mono_security_core_clr_get_options +mono_security_core_clr_require_elevated_permissions +mono_security_core_clr_set_options +mono_security_enable_core_clr +mono_security_set_core_clr_platform_callback +mono_security_set_mode +mono_set_allocator_vtable +mono_set_assemblies_path +mono_set_break_policy +mono_set_config_dir +mono_set_crash_chaining +mono_set_defaults +mono_set_dirs +mono_set_hazard_table +mono_set_is_debugger_attached +mono_set_jit_tls_offset +mono_set_lmf_addr_tls_offset +mono_set_lmf_tls_offset +mono_set_rootdir +mono_set_signal_chaining +mono_set_thread_interruption_request_flag_ptr +mono_sgen_set_thread_type +mono_sha1_final +mono_sha1_get_digest +mono_sha1_get_digest_from_file +mono_sha1_init +mono_sha1_update +mono_shared_area +mono_shared_area_for_pid +mono_shared_area_instances +mono_shared_area_remove +mono_shared_area_unload +mono_shared_hashtable_destroy +mono_shared_hashtable_foreach +mono_shared_hashtable_foreach_remove +mono_shared_hashtable_foreach_steal +mono_shared_hashtable_insert_replace +mono_shared_hashtable_iter_init +mono_shared_hashtable_iter_next +mono_shared_hashtable_lookup +mono_shared_hashtable_new +mono_shared_hashtable_new_full +mono_shared_hashtable_new_gc +mono_shared_hashtable_remove +mono_shared_hashtable_set_assertions +mono_shared_hashtable_set_destroy_func +mono_shared_hashtable_set_type_funcs +mono_shared_hashtable_size +mono_shared_internal_hash_table_destroy +mono_shared_internal_hash_table_init +mono_shared_internal_hash_table_insert +mono_shared_internal_hash_table_lookup +mono_shared_internal_hash_table_remove +mono_shared_mempool_alloc +mono_shared_mempool_alloc0 +mono_shared_mempool_contains_addr +mono_shared_mempool_destroy +mono_shared_mempool_get_allocated +mono_shared_mempool_invalidate +mono_shared_mempool_new +mono_shared_mempool_new_size +mono_shared_mempool_strdup +mono_shared_mutex_destroy +mono_shared_mutex_get +mono_shared_mutex_init +mono_shared_mutex_lock +mono_shared_mutex_unlock +mono_shared_ptr_array_add +mono_shared_ptr_array_free +mono_shared_ptr_array_get_allocator +mono_shared_ptr_array_new +mono_sharedmem_allocator_init +mono_signature_explicit_this +mono_signature_get_call_conv +mono_signature_get_desc +mono_signature_get_param_count +mono_signature_get_params +mono_signature_get_return_type +mono_signature_hash +mono_signature_is_instance +mono_signature_param_is_out +mono_signature_vararg_start +mono_signbit_double +mono_signbit_float +mono_stack_walk +mono_stack_walk_async_safe +mono_stack_walk_no_il +mono_store_remote_field +mono_store_remote_field_new +mono_string_chars +mono_string_empty +mono_string_empty_wrapper +mono_string_equal +mono_string_from_bstr +mono_string_from_utf16 +mono_string_from_utf32 +mono_string_hash +mono_string_intern +mono_string_is_interned +mono_string_length +mono_string_new +mono_string_new_len +mono_string_new_size +mono_string_new_utf16 +mono_string_new_utf32 +mono_string_new_wrapper +mono_string_to_utf16 +mono_string_to_utf32 +mono_string_to_utf8 +mono_string_to_utf8_checked +mono_stringify_assembly_name +mono_table_info_get_rows +mono_thread_attach +mono_thread_cleanup +mono_thread_create +mono_thread_current +mono_thread_detach +mono_thread_detach_if_exiting +mono_thread_exit +mono_thread_get_main +mono_thread_get_managed_id +mono_thread_get_max_threads +mono_thread_get_name_utf8 +mono_thread_get_num_threads +mono_thread_get_undeniable_exception +mono_thread_hazardous_queue_free +mono_thread_hazardous_try_free +mono_thread_hazardous_try_free_all +mono_thread_info_detach +mono_thread_info_yield +mono_thread_init +mono_thread_is_foreign +mono_thread_manage +mono_thread_new_init +mono_thread_pool_cleanup +mono_thread_set_main +mono_thread_set_manage_callback +mono_thread_set_max_threads +mono_thread_set_threads_exhausted_callback +mono_thread_set_tls_offset +mono_thread_stop +mono_thread_suspend_all_other_threads +mono_threadpool_set_max_threads +mono_threads_assert_gc_safe_region +mono_threads_assert_gc_unsafe_region +mono_threads_attach_coop +mono_threads_attach_tools_thread +mono_threads_detach_coop +mono_threads_enter_gc_safe_region +mono_threads_enter_gc_safe_region_unbalanced +mono_threads_enter_gc_unsafe_region +mono_threads_enter_gc_unsafe_region_unbalanced +mono_threads_exit_gc_safe_region +mono_threads_exit_gc_safe_region_unbalanced +mono_threads_exit_gc_unsafe_region +mono_threads_exit_gc_unsafe_region_unbalanced +mono_threads_get_default_stacksize +mono_threads_init +mono_threads_request_thread_dump +mono_threads_set_default_stacksize +mono_threads_set_shutting_down +mono_trace_set_level_string +mono_trace_set_log_handler +mono_trace_set_logdest_string +mono_trace_set_logheader_string +mono_trace_set_mask_string +mono_trace_set_print_handler +mono_trace_set_printerr_handler +mono_trampoline_patch_callsite +mono_trampolines_init +mono_type_create_from_typespec +mono_type_full_name +mono_type_generic_inst_is_valuetype +mono_type_get_array_type +mono_type_get_class +mono_type_get_desc +mono_type_get_modifiers +mono_type_get_name +mono_type_get_object +mono_type_get_ptr_type +mono_type_get_signature +mono_type_get_type +mono_type_get_underlying_type +mono_type_is_byref +mono_type_is_pointer +mono_type_is_reference +mono_type_is_struct +mono_type_is_valid_enum_basetype +mono_type_is_void +mono_type_size +mono_type_stack_size +mono_type_to_unmanaged +mono_unhandled_exception +mono_unhandled_exception_message +mono_unicode_from_external +mono_unicode_to_external +mono_upgrade_remote_class_wrapper +mono_utf8_from_external +mono_utf8_validate_and_len +mono_utf8_validate_and_len_with_bounds +mono_valloc +mono_valloc_aligned +mono_value_box +mono_value_copy +mono_value_copy_array +mono_value_describe_fields +mono_verifier_set_mode +mono_verify_corlib +mono_vfree +mono_vm_bridge_privileges_finish_init +mono_vm_bridge_privileges_start_init +mono_vm_bridge_set_mono_funcs +mono_vtable_get_static_field_data +mono_win32_compat_CopyMemory +mono_win32_compat_FillMemory +mono_win32_compat_MoveMemory +mono_win32_compat_ZeroMemory +monoeg_assertion_message +monoeg_g_array_append_vals +monoeg_g_array_free +monoeg_g_array_insert_vals +monoeg_g_array_new +monoeg_g_ascii_strdown +monoeg_g_ascii_strncasecmp +monoeg_g_ascii_tolower +monoeg_g_ascii_xdigit_value +monoeg_g_build_path +monoeg_g_clear_error +monoeg_g_convert +monoeg_g_dir_close +monoeg_g_dir_open +monoeg_g_dir_read_name +monoeg_g_dir_rewind +monoeg_g_direct_equal +monoeg_g_direct_hash +monoeg_g_error_free +monoeg_g_file_get_contents +monoeg_g_file_open_tmp +monoeg_g_file_test +monoeg_g_filename_from_uri +monoeg_g_filename_from_utf8 +monoeg_g_filename_to_uri +monoeg_g_find_program_in_path +monoeg_g_free +monoeg_g_get_charset +monoeg_g_get_current_dir +monoeg_g_get_home_dir +monoeg_g_get_prgname +monoeg_g_get_tmp_dir +monoeg_g_get_user_name +monoeg_g_getenv +monoeg_g_hash_table_destroy +monoeg_g_hash_table_foreach +monoeg_g_hash_table_foreach_remove +monoeg_g_hash_table_insert_replace +monoeg_g_hash_table_iter_init +monoeg_g_hash_table_iter_next +monoeg_g_hash_table_lookup +monoeg_g_hash_table_lookup_extended +monoeg_g_hash_table_new +monoeg_g_hash_table_new_full +monoeg_g_hash_table_remove +monoeg_g_hash_table_size +monoeg_g_list_append +monoeg_g_list_copy +monoeg_g_list_delete_link +monoeg_g_list_find +monoeg_g_list_foreach +monoeg_g_list_free +monoeg_g_list_insert_before +monoeg_g_list_length +monoeg_g_list_nth +monoeg_g_list_nth_data +monoeg_g_list_prepend +monoeg_g_list_remove +monoeg_g_list_remove_link +monoeg_g_list_reverse +monoeg_g_list_sort +monoeg_g_locale_from_utf8 +monoeg_g_locale_to_utf8 +monoeg_g_log +monoeg_g_log_set_always_fatal +monoeg_g_log_set_fatal_mask +monoeg_g_logv +monoeg_g_markup_parse_context_end_parse +monoeg_g_markup_parse_context_free +monoeg_g_markup_parse_context_new +monoeg_g_markup_parse_context_parse +monoeg_g_memdup +monoeg_g_path_get_basename +monoeg_g_path_get_dirname +monoeg_g_path_is_absolute +monoeg_g_print +monoeg_g_printerr +monoeg_g_ptr_array_add +monoeg_g_ptr_array_foreach +monoeg_g_ptr_array_free +monoeg_g_ptr_array_new +monoeg_g_ptr_array_remove +monoeg_g_ptr_array_remove_fast +monoeg_g_ptr_array_remove_index +monoeg_g_ptr_array_remove_index_fast +monoeg_g_ptr_array_set_size +monoeg_g_ptr_array_sized_new +monoeg_g_ptr_array_sort +monoeg_g_queue_free +monoeg_g_queue_is_empty +monoeg_g_queue_new +monoeg_g_queue_pop_head +monoeg_g_queue_push_head +monoeg_g_set_prgname +monoeg_g_setenv +monoeg_g_shell_parse_argv +monoeg_g_shell_quote +monoeg_g_shell_unquote +monoeg_g_slist_append +monoeg_g_slist_concat +monoeg_g_slist_copy +monoeg_g_slist_delete_link +monoeg_g_slist_find +monoeg_g_slist_find_custom +monoeg_g_slist_foreach +monoeg_g_slist_free +monoeg_g_slist_free_1 +monoeg_g_slist_insert_sorted +monoeg_g_slist_last +monoeg_g_slist_length +monoeg_g_slist_nth +monoeg_g_slist_nth_data +monoeg_g_slist_prepend +monoeg_g_slist_remove +monoeg_g_slist_reverse +monoeg_g_snprintf +monoeg_g_spaced_primes_closest +monoeg_g_str_equal +monoeg_g_str_has_prefix +monoeg_g_str_has_suffix +monoeg_g_str_hash +monoeg_g_strchomp +monoeg_g_strchug +monoeg_g_strconcat +monoeg_g_strdelimit +monoeg_g_strdup_printf +monoeg_g_strdup_vprintf +monoeg_g_strerror +monoeg_g_strfreev +monoeg_g_string_append +monoeg_g_string_append_c +monoeg_g_string_append_len +monoeg_g_string_append_printf +monoeg_g_string_append_vprintf +monoeg_g_string_free +monoeg_g_string_new +monoeg_g_string_new_len +monoeg_g_string_printf +monoeg_g_string_truncate +monoeg_g_strjoin +monoeg_g_strjoinv +monoeg_g_strlcpy +monoeg_g_strndup +monoeg_g_strreverse +monoeg_g_strsplit +monoeg_g_timer_destroy +monoeg_g_timer_elapsed +monoeg_g_timer_new +monoeg_g_timer_stop +monoeg_g_unichar_tolower +monoeg_g_unichar_type +monoeg_g_unsetenv +monoeg_g_usleep +monoeg_g_utf16_to_utf8 +monoeg_g_utf8_strdown +monoeg_g_utf8_to_utf16 +monoeg_g_utf8_validate +monoeg_malloc +monoeg_malloc0 +monoeg_realloc +monoeg_try_malloc +monoeg_try_realloc +mons +mos +mount +mp_send +mparams.0 +mparams.1 +mparams.2 +mparams.4 +mparams.5 +mprotect +mrand48 +msetname +mspace_atomic_id_mask +mspace_calloc +mspace_check_memory_bounds +mspace_create_ex +mspace_destroy +mspace_free +mspace_get_footer_value +mspace_is_heap_empty +mspace_lock +mspace_malloc +mspace_malloc_stats +mspace_malloc_stats_fast +mspace_malloc_usable_size +mspace_memalign +mspace_posix_memalign +mspace_realloc +mspace_reallocalign +mspace_report_memory_blocks +mspace_trim +mspace_unlock +mstate_table +msync +mtx +mtx_rahead +mtx_recvtbl +mtx_seqno +mtx_write +multi_access +munlock +munlockall +munmap +nan +nanf +nanl +nanosleep +ndigs +nearbyint +nearbyintf +nearbyintl +nextafter +nextafterf +nextafterl +nexttoward +nexttowardf +nexttowardl +nl_langinfo +nmount +nn_bind +nn_close +nn_connect +nn_errno +nn_getsockopt +nn_poll +nn_recvmsg +nn_send +nn_sendmsg +nn_setsockopt +nn_shutdown +nn_socket +nn_strerror +nn_term +nrand48 +nsff_FreeString +nsnp_ActionCheck +nsnp_ActionDescribe +nsnp_ActionPerform +nsnp_Callback +nsnp_CheckHMAC +nsnp_Decrypt +nsnp_DecryptWithIV +nsnp_DecryptWithOffset +nsnp_Fin +nsnp_FinSession +nsnp_FinTrack +nsnp_FreeESB +nsnp_FreeLicenseMetadata +nsnp_FreeString +nsnp_GetLicenseMetadata +nsnp_GetLicensePath +nsnp_Init +nsnp_InitSession +nsnp_InitTrack +nsnp_SetLicense +ntohl +ntohs +null +o2i_ECPublicKey +obuf +open +openat +opendir +openintr +operands +optarg +opterr +optind +optopt +optreset +orbismmap +otv_module_class +outgoing_area +p +p05 +p5_1024 +p5_128 +p5_16 +p5_16384 +p5_2048 +p5_256 +p5_32 +p5_4096 +p5_512 +p5_64 +p5_8 +p5_8192 +p5s +pR2 +pR3 +pR5 +pR8 +pS2 +pS3 +pS5 +pS8 +pTlsThreadContext +pa_pop_marker +pa_push_marker +pa_set_functions +pa_sync +pathconf +pause +pcf_driver_class +pclose +perror +pfr_cmap_class_rec +pfr_driver_class +pg_size +physhm_open +physhm_unlink +pi_lo +pio2_1thi +pio2_1tlo +pio2_2thi +pio2_2tlo +pio2_3thi +pio2_3tlo +pio2_lo +pio4_hi +pio4_lo +pio4lo_hi +pio4lo_lo +pipe +play +png_calloc +png_create_info_struct +png_create_read_struct +png_create_read_struct_2 +png_create_write_struct +png_create_write_struct_2 +png_destroy_read_struct +png_destroy_write_struct +png_error +png_free +png_free_data +png_free_default +png_get_IHDR +png_get_PLTE +png_get_bit_depth +png_get_channels +png_get_color_type +png_get_error_ptr +png_get_filter_type +png_get_gAMA +png_get_iCCP +png_get_image_height +png_get_image_width +png_get_interlace_type +png_get_io_ptr +png_get_progressive_ptr +png_get_rows +png_get_sBIT +png_get_sPLT +png_get_sRGB +png_get_tIME +png_get_tRNS +png_get_text +png_get_uint_16 +png_get_uint_32 +png_get_user_chunk_ptr +png_get_valid +png_init_io +png_longjmp +png_malloc +png_malloc_default +png_process_data +png_process_data_pause +png_progressive_combine_row +png_read_end +png_read_image +png_read_info +png_read_row +png_read_rows +png_read_update_info +png_save_uint_16 +png_save_uint_32 +png_set_IHDR +png_set_bKGD +png_set_background +png_set_bgr +png_set_chunk_cache_max +png_set_chunk_malloc_max +png_set_crc_action +png_set_expand +png_set_expand_16 +png_set_expand_gray_1_2_4_to_8 +png_set_filler +png_set_filter +png_set_gAMA +png_set_gamma +png_set_gray_to_rgb +png_set_interlace_handling +png_set_invalid +png_set_keep_unknown_chunks +png_set_longjmp_fn +png_set_packing +png_set_packswap +png_set_palette_to_rgb +png_set_progressive_read_fn +png_set_read_fn +png_set_read_user_chunk_fn +png_set_read_user_transform_fn +png_set_shift +png_set_strip_16 +png_set_swap +png_set_tRNS_to_alpha +png_set_text +png_set_user_limits +png_set_write_fn +png_set_write_user_transform_fn +png_start_read_image +png_warning +png_write_end +png_write_image +png_write_info +png_write_row +png_write_rows +poll +popen +posix_memalign +posix_name +posix_spawn +posix_spawn_file_actions_addclose +posix_spawn_file_actions_adddup2 +posix_spawn_file_actions_addopen +posix_spawn_file_actions_destroy +posix_spawn_file_actions_init +posix_spawnattr_destroy +posix_spawnattr_getflags +posix_spawnattr_getpgroup +posix_spawnattr_getschedparam +posix_spawnattr_getschedpolicy +posix_spawnattr_getsigdefault +posix_spawnattr_getsigmask +posix_spawnattr_init +posix_spawnattr_setflags +posix_spawnattr_setpgroup +posix_spawnattr_setschedparam +posix_spawnattr_setschedpolicy +posix_spawnattr_setsigdefault +posix_spawnattr_setsigmask +posix_spawnp +pow +powf +powl +pr2 +pr3 +pr5 +pr8 +pread +preadv +preinit +printCommInfo +printf +printf_s +processUlpNtfCommonNotification +profil +prout +ps2 +ps3 +ps5 +ps8 +psaux_module_class +pselect +pshinter_module_class +psignal +psl_builtin +psl_builtin_file_time +psl_builtin_filename +psl_builtin_outdated +psl_builtin_sha1sum +psl_check_version_number +psl_dist_filename +psl_free +psl_free_string +psl_get_version +psl_is_cookie_domain_acceptable +psl_is_public_suffix +psl_is_public_suffix2 +psl_latest +psl_load_file +psl_load_fp +psl_registrable_domain +psl_str_to_utf8lower +psl_suffix_count +psl_suffix_exception_count +psl_suffix_wildcard_count +psl_unregistrable_domain +psnames_module_class +pss_code_mem_alloc +pss_io_icall_install_functions +pthread_atfork +pthread_attr_destroy +pthread_attr_get_np +pthread_attr_getaffinity_np +pthread_attr_getdetachstate +pthread_attr_getguardsize +pthread_attr_getinheritsched +pthread_attr_getschedparam +pthread_attr_getschedpolicy +pthread_attr_getscope +pthread_attr_getsolosched_np pthread_attr_getstack -sceUserServiceSetGlsInitSpectating -sceAgcSetUcRegIndirectPatchAddRegisters -sceFontRenderSurfaceSetScissor -sceApplicationGetCanvasHandleByPid -sceCamera2SetAutoWhiteBalance -sceKernelMprotect -sceBgftServiceDownloadGetProgress -sceCustomMusicAudioOutGetMuted -sceNpLookupCreateTitleCtxA -sceDataTransferTargetRequestGetDeviceInfo -sceDbgPlayGoSnapshot -sceNgs2SystemGetInfo -sceSharePlayGetCurrentInfo -sceAppInstUtilDeleteExternalPs5All -sceBgftServiceIntDownloadQueryTask -sceUserServiceGetSystemLoggerHashedAccountIdClockType -sceAmprMeasureCommandSizeReadFile -sceSysmoduleUnloadModuleInternal -sceHidControlSetProcessFocus -sceSystemServiceSuspendBackgroundApp -sceAudioInSetAllMute -sceShellCoreUtilIsBgmCpuBudgetAvailable -sceMatReserveVirtualRange -sceKernelAioInitializeImpl -sceMbusDebugAcquireControlWithState2 -sceFiosTimeIntervalToNanoseconds -sceKernelIsMainOnStandbyMode -scePktMgrSetUlpResHdr -sceAudiodecDecodeWithPriorityEx -scePktMgrSetUlpNtfPayload -sceShellCoreUtilNotifySystemSuspendTelemetryInfo -sceLncUtilGetAppCategory -sceNetConfigRoutingShowRoutingConfig -sceGnmFindResources -sceNpMatching2GetRoomPasswordLocal -sceDebugGetCrashInfoForCoredump -sceUserServiceGetPbtcFridayHoursStart -sceGnmSetLsShader +pthread_attr_getstackaddr +pthread_attr_getstacksize +pthread_attr_init +pthread_attr_setaffinity_np +pthread_attr_setcreatesuspend_np +pthread_attr_setdetachstate +pthread_attr_setguardsize +pthread_attr_setinheritsched +pthread_attr_setschedparam +pthread_attr_setschedpolicy +pthread_attr_setscope +pthread_attr_setsolosched_np +pthread_attr_setstack +pthread_attr_setstackaddr +pthread_attr_setstacksize +pthread_barrier_destroy +pthread_barrier_init +pthread_barrier_setname_np +pthread_barrier_wait +pthread_barrierattr_destroy +pthread_barrierattr_getpshared +pthread_barrierattr_init +pthread_barrierattr_setpshared +pthread_cancel +pthread_cleanup_pop +pthread_cleanup_push +pthread_cond_broadcast +pthread_cond_destroy +pthread_cond_init +pthread_cond_reltimedwait_np +pthread_cond_setname_np +pthread_cond_signal +pthread_cond_signalto_np +pthread_cond_timedwait +pthread_cond_wait +pthread_condattr_destroy +pthread_condattr_getclock +pthread_condattr_getpshared +pthread_condattr_init +pthread_condattr_setclock +pthread_condattr_setpshared +pthread_create +pthread_create_name_np +pthread_detach +pthread_equal +pthread_exit +pthread_get_specificarray_np +pthread_get_user_context_np +pthread_getaffinity_np +pthread_getconcurrency +pthread_getcpuclockid +pthread_getname_np +pthread_getprio +pthread_getschedparam +pthread_getspecific +pthread_getstack_np +pthread_getthreadid_np +pthread_join +pthread_key_create +pthread_key_delete +pthread_kill +pthread_main_np +pthread_multi_np +pthread_mutex_destroy +pthread_mutex_getprioceiling +pthread_mutex_getspinloops_np +pthread_mutex_getyieldloops_np +pthread_mutex_init +pthread_mutex_init_for_mono +pthread_mutex_isowned_np +pthread_mutex_lock +pthread_mutex_reltimedlock_np +pthread_mutex_setname_np +pthread_mutex_setprioceiling +pthread_mutex_setspinloops_np +pthread_mutex_setyieldloops_np +pthread_mutex_timedlock +pthread_mutex_trylock +pthread_mutex_unlock +pthread_mutexattr_destroy +pthread_mutexattr_getgen_np +pthread_mutexattr_getkind_np +pthread_mutexattr_getprioceiling +pthread_mutexattr_getprotocol +pthread_mutexattr_getpshared +pthread_mutexattr_gettype +pthread_mutexattr_init +pthread_mutexattr_setgen_np +pthread_mutexattr_setkind_np +pthread_mutexattr_setprioceiling +pthread_mutexattr_setprotocol +pthread_mutexattr_setpshared +pthread_mutexattr_settype +pthread_once +pthread_rename_np +pthread_resume_all_np +pthread_resume_np +pthread_resume_user_context_np +pthread_rwlock_destroy +pthread_rwlock_init +pthread_rwlock_rdlock +pthread_rwlock_reltimedrdlock_np +pthread_rwlock_reltimedwrlock_np +pthread_rwlock_setname_np +pthread_rwlock_timedrdlock +pthread_rwlock_timedwrlock +pthread_rwlock_tryrdlock +pthread_rwlock_trywrlock +pthread_rwlock_unlock +pthread_rwlock_wrlock +pthread_rwlockattr_destroy +pthread_rwlockattr_getpshared +pthread_rwlockattr_gettype_np +pthread_rwlockattr_init +pthread_rwlockattr_setpshared +pthread_rwlockattr_settype_np +pthread_self +pthread_set_defaultstacksize_np +pthread_set_name_np +pthread_set_user_context_np +pthread_setaffinity_np +pthread_setcancelstate +pthread_setcanceltype +pthread_setconcurrency +pthread_setname_np +pthread_setprio +pthread_setschedparam +pthread_setschedparam_np +pthread_setspecific +pthread_sigmask +pthread_single_np +pthread_spin_destroy +pthread_spin_init +pthread_spin_lock +pthread_spin_trylock +pthread_spin_unlock +pthread_suspend_all_np +pthread_suspend_np +pthread_suspend_user_context_np +pthread_switch_add_np +pthread_switch_delete_np +pthread_testcancel +pthread_timedjoin_np +pthread_yield +ptohdw +ptohqw +ptohw +ptrace +put_unwind_info +putc +putc_unlocked +putchar +putchar_unlocked +putenv +puts +putw +putwc +putwchar +pwrite +pwritev +qR2 +qR3 +qR5 +qR8 +qS2 +qS3 +qS5 +qS8 +qone +qonef +qr2 +qr3 +qr5 +qr8 +qs2 +qs3 +qs5 +qs8 +qsort +qsort_s +que_no +quick_exit +qzero +qzerof +raise +rand +rand_r +rand_s +random +ratfun_gam +read +readIS +readdir +readdir_r +readlink +readv +realloc +reallocalign +reallocf +realpath +reboot +receive_descriptor +recv +recvData +recvbuf +recvfrom +recvmsg +recvtbl +recvtbl_init +recvtbl_update +remainder +remainderf +remainderl +remove +removeProhibitionFlagListener +removeTelemetryErrorListener +remquo +remquof +remquol +rename +renameat +res_countArrayItems +res_countArrayItems_67 +res_findResource_67 +res_getAlias +res_getAlias_67 +res_getArrayItem +res_getArrayItem_67 +res_getBinaryNoTrace +res_getBinaryNoTrace_67 +res_getIntVectorNoTrace +res_getIntVectorNoTrace_67 +res_getPublicType +res_getPublicType_67 +res_getResource +res_getResource_67 +res_getStringNoTrace +res_getStringNoTrace_67 +res_getTableItemByIndex +res_getTableItemByIndex_67 +res_getTableItemByKey +res_getTableItemByKey_67 +res_load_67 +res_read +res_read_67 +res_unload_67 +restore_context +restore_context_p +rethrow_exception +rethrow_exception_p +revoke +rewind +rewinddir +rfork_thread +rgctx_fetch_trampoline_general +rgctx_fetch_trampoline_general_p +rgctx_fetch_trampoline_mrgctx_0 +rgctx_fetch_trampoline_mrgctx_0_p +rgctx_fetch_trampoline_mrgctx_1 +rgctx_fetch_trampoline_mrgctx_10 +rgctx_fetch_trampoline_mrgctx_100 +rgctx_fetch_trampoline_mrgctx_100_p +rgctx_fetch_trampoline_mrgctx_101 +rgctx_fetch_trampoline_mrgctx_101_p +rgctx_fetch_trampoline_mrgctx_102 +rgctx_fetch_trampoline_mrgctx_102_p +rgctx_fetch_trampoline_mrgctx_103 +rgctx_fetch_trampoline_mrgctx_103_p +rgctx_fetch_trampoline_mrgctx_104 +rgctx_fetch_trampoline_mrgctx_104_p +rgctx_fetch_trampoline_mrgctx_105 +rgctx_fetch_trampoline_mrgctx_105_p +rgctx_fetch_trampoline_mrgctx_106 +rgctx_fetch_trampoline_mrgctx_106_p +rgctx_fetch_trampoline_mrgctx_107 +rgctx_fetch_trampoline_mrgctx_107_p +rgctx_fetch_trampoline_mrgctx_108 +rgctx_fetch_trampoline_mrgctx_108_p +rgctx_fetch_trampoline_mrgctx_109 +rgctx_fetch_trampoline_mrgctx_109_p +rgctx_fetch_trampoline_mrgctx_10_p +rgctx_fetch_trampoline_mrgctx_11 +rgctx_fetch_trampoline_mrgctx_110 +rgctx_fetch_trampoline_mrgctx_110_p +rgctx_fetch_trampoline_mrgctx_111 +rgctx_fetch_trampoline_mrgctx_111_p +rgctx_fetch_trampoline_mrgctx_112 +rgctx_fetch_trampoline_mrgctx_112_p +rgctx_fetch_trampoline_mrgctx_113 +rgctx_fetch_trampoline_mrgctx_113_p +rgctx_fetch_trampoline_mrgctx_114 +rgctx_fetch_trampoline_mrgctx_114_p +rgctx_fetch_trampoline_mrgctx_115 +rgctx_fetch_trampoline_mrgctx_115_p +rgctx_fetch_trampoline_mrgctx_116 +rgctx_fetch_trampoline_mrgctx_116_p +rgctx_fetch_trampoline_mrgctx_117 +rgctx_fetch_trampoline_mrgctx_117_p +rgctx_fetch_trampoline_mrgctx_118 +rgctx_fetch_trampoline_mrgctx_118_p +rgctx_fetch_trampoline_mrgctx_119 +rgctx_fetch_trampoline_mrgctx_119_p +rgctx_fetch_trampoline_mrgctx_11_p +rgctx_fetch_trampoline_mrgctx_12 +rgctx_fetch_trampoline_mrgctx_120 +rgctx_fetch_trampoline_mrgctx_120_p +rgctx_fetch_trampoline_mrgctx_121 +rgctx_fetch_trampoline_mrgctx_121_p +rgctx_fetch_trampoline_mrgctx_122 +rgctx_fetch_trampoline_mrgctx_122_p +rgctx_fetch_trampoline_mrgctx_123 +rgctx_fetch_trampoline_mrgctx_123_p +rgctx_fetch_trampoline_mrgctx_124 +rgctx_fetch_trampoline_mrgctx_124_p +rgctx_fetch_trampoline_mrgctx_125 +rgctx_fetch_trampoline_mrgctx_125_p +rgctx_fetch_trampoline_mrgctx_126 +rgctx_fetch_trampoline_mrgctx_126_p +rgctx_fetch_trampoline_mrgctx_127 +rgctx_fetch_trampoline_mrgctx_127_p +rgctx_fetch_trampoline_mrgctx_12_p +rgctx_fetch_trampoline_mrgctx_13 +rgctx_fetch_trampoline_mrgctx_13_p +rgctx_fetch_trampoline_mrgctx_14 +rgctx_fetch_trampoline_mrgctx_14_p +rgctx_fetch_trampoline_mrgctx_15 +rgctx_fetch_trampoline_mrgctx_15_p +rgctx_fetch_trampoline_mrgctx_16 +rgctx_fetch_trampoline_mrgctx_16_p +rgctx_fetch_trampoline_mrgctx_17 +rgctx_fetch_trampoline_mrgctx_17_p +rgctx_fetch_trampoline_mrgctx_18 +rgctx_fetch_trampoline_mrgctx_18_p +rgctx_fetch_trampoline_mrgctx_19 +rgctx_fetch_trampoline_mrgctx_19_p +rgctx_fetch_trampoline_mrgctx_1_p +rgctx_fetch_trampoline_mrgctx_2 +rgctx_fetch_trampoline_mrgctx_20 +rgctx_fetch_trampoline_mrgctx_20_p +rgctx_fetch_trampoline_mrgctx_21 +rgctx_fetch_trampoline_mrgctx_21_p +rgctx_fetch_trampoline_mrgctx_22 +rgctx_fetch_trampoline_mrgctx_22_p +rgctx_fetch_trampoline_mrgctx_23 +rgctx_fetch_trampoline_mrgctx_23_p +rgctx_fetch_trampoline_mrgctx_24 +rgctx_fetch_trampoline_mrgctx_24_p +rgctx_fetch_trampoline_mrgctx_25 +rgctx_fetch_trampoline_mrgctx_25_p +rgctx_fetch_trampoline_mrgctx_26 +rgctx_fetch_trampoline_mrgctx_26_p +rgctx_fetch_trampoline_mrgctx_27 +rgctx_fetch_trampoline_mrgctx_27_p +rgctx_fetch_trampoline_mrgctx_28 +rgctx_fetch_trampoline_mrgctx_28_p +rgctx_fetch_trampoline_mrgctx_29 +rgctx_fetch_trampoline_mrgctx_29_p +rgctx_fetch_trampoline_mrgctx_2_p +rgctx_fetch_trampoline_mrgctx_3 +rgctx_fetch_trampoline_mrgctx_30 +rgctx_fetch_trampoline_mrgctx_30_p +rgctx_fetch_trampoline_mrgctx_31 +rgctx_fetch_trampoline_mrgctx_31_p +rgctx_fetch_trampoline_mrgctx_32 +rgctx_fetch_trampoline_mrgctx_32_p +rgctx_fetch_trampoline_mrgctx_33 +rgctx_fetch_trampoline_mrgctx_33_p +rgctx_fetch_trampoline_mrgctx_34 +rgctx_fetch_trampoline_mrgctx_34_p +rgctx_fetch_trampoline_mrgctx_35 +rgctx_fetch_trampoline_mrgctx_35_p +rgctx_fetch_trampoline_mrgctx_36 +rgctx_fetch_trampoline_mrgctx_36_p +rgctx_fetch_trampoline_mrgctx_37 +rgctx_fetch_trampoline_mrgctx_37_p +rgctx_fetch_trampoline_mrgctx_38 +rgctx_fetch_trampoline_mrgctx_38_p +rgctx_fetch_trampoline_mrgctx_39 +rgctx_fetch_trampoline_mrgctx_39_p +rgctx_fetch_trampoline_mrgctx_3_p +rgctx_fetch_trampoline_mrgctx_4 +rgctx_fetch_trampoline_mrgctx_40 +rgctx_fetch_trampoline_mrgctx_40_p +rgctx_fetch_trampoline_mrgctx_41 +rgctx_fetch_trampoline_mrgctx_41_p +rgctx_fetch_trampoline_mrgctx_42 +rgctx_fetch_trampoline_mrgctx_42_p +rgctx_fetch_trampoline_mrgctx_43 +rgctx_fetch_trampoline_mrgctx_43_p +rgctx_fetch_trampoline_mrgctx_44 +rgctx_fetch_trampoline_mrgctx_44_p +rgctx_fetch_trampoline_mrgctx_45 +rgctx_fetch_trampoline_mrgctx_45_p +rgctx_fetch_trampoline_mrgctx_46 +rgctx_fetch_trampoline_mrgctx_46_p +rgctx_fetch_trampoline_mrgctx_47 +rgctx_fetch_trampoline_mrgctx_47_p +rgctx_fetch_trampoline_mrgctx_48 +rgctx_fetch_trampoline_mrgctx_48_p +rgctx_fetch_trampoline_mrgctx_49 +rgctx_fetch_trampoline_mrgctx_49_p +rgctx_fetch_trampoline_mrgctx_4_p +rgctx_fetch_trampoline_mrgctx_5 +rgctx_fetch_trampoline_mrgctx_50 +rgctx_fetch_trampoline_mrgctx_50_p +rgctx_fetch_trampoline_mrgctx_51 +rgctx_fetch_trampoline_mrgctx_51_p +rgctx_fetch_trampoline_mrgctx_52 +rgctx_fetch_trampoline_mrgctx_52_p +rgctx_fetch_trampoline_mrgctx_53 +rgctx_fetch_trampoline_mrgctx_53_p +rgctx_fetch_trampoline_mrgctx_54 +rgctx_fetch_trampoline_mrgctx_54_p +rgctx_fetch_trampoline_mrgctx_55 +rgctx_fetch_trampoline_mrgctx_55_p +rgctx_fetch_trampoline_mrgctx_56 +rgctx_fetch_trampoline_mrgctx_56_p +rgctx_fetch_trampoline_mrgctx_57 +rgctx_fetch_trampoline_mrgctx_57_p +rgctx_fetch_trampoline_mrgctx_58 +rgctx_fetch_trampoline_mrgctx_58_p +rgctx_fetch_trampoline_mrgctx_59 +rgctx_fetch_trampoline_mrgctx_59_p +rgctx_fetch_trampoline_mrgctx_5_p +rgctx_fetch_trampoline_mrgctx_6 +rgctx_fetch_trampoline_mrgctx_60 +rgctx_fetch_trampoline_mrgctx_60_p +rgctx_fetch_trampoline_mrgctx_61 +rgctx_fetch_trampoline_mrgctx_61_p +rgctx_fetch_trampoline_mrgctx_62 +rgctx_fetch_trampoline_mrgctx_62_p +rgctx_fetch_trampoline_mrgctx_63 +rgctx_fetch_trampoline_mrgctx_63_p +rgctx_fetch_trampoline_mrgctx_64 +rgctx_fetch_trampoline_mrgctx_64_p +rgctx_fetch_trampoline_mrgctx_65 +rgctx_fetch_trampoline_mrgctx_65_p +rgctx_fetch_trampoline_mrgctx_66 +rgctx_fetch_trampoline_mrgctx_66_p +rgctx_fetch_trampoline_mrgctx_67 +rgctx_fetch_trampoline_mrgctx_67_p +rgctx_fetch_trampoline_mrgctx_68 +rgctx_fetch_trampoline_mrgctx_68_p +rgctx_fetch_trampoline_mrgctx_69 +rgctx_fetch_trampoline_mrgctx_69_p +rgctx_fetch_trampoline_mrgctx_6_p +rgctx_fetch_trampoline_mrgctx_7 +rgctx_fetch_trampoline_mrgctx_70 +rgctx_fetch_trampoline_mrgctx_70_p +rgctx_fetch_trampoline_mrgctx_71 +rgctx_fetch_trampoline_mrgctx_71_p +rgctx_fetch_trampoline_mrgctx_72 +rgctx_fetch_trampoline_mrgctx_72_p +rgctx_fetch_trampoline_mrgctx_73 +rgctx_fetch_trampoline_mrgctx_73_p +rgctx_fetch_trampoline_mrgctx_74 +rgctx_fetch_trampoline_mrgctx_74_p +rgctx_fetch_trampoline_mrgctx_75 +rgctx_fetch_trampoline_mrgctx_75_p +rgctx_fetch_trampoline_mrgctx_76 +rgctx_fetch_trampoline_mrgctx_76_p +rgctx_fetch_trampoline_mrgctx_77 +rgctx_fetch_trampoline_mrgctx_77_p +rgctx_fetch_trampoline_mrgctx_78 +rgctx_fetch_trampoline_mrgctx_78_p +rgctx_fetch_trampoline_mrgctx_79 +rgctx_fetch_trampoline_mrgctx_79_p +rgctx_fetch_trampoline_mrgctx_7_p +rgctx_fetch_trampoline_mrgctx_8 +rgctx_fetch_trampoline_mrgctx_80 +rgctx_fetch_trampoline_mrgctx_80_p +rgctx_fetch_trampoline_mrgctx_81 +rgctx_fetch_trampoline_mrgctx_81_p +rgctx_fetch_trampoline_mrgctx_82 +rgctx_fetch_trampoline_mrgctx_82_p +rgctx_fetch_trampoline_mrgctx_83 +rgctx_fetch_trampoline_mrgctx_83_p +rgctx_fetch_trampoline_mrgctx_84 +rgctx_fetch_trampoline_mrgctx_84_p +rgctx_fetch_trampoline_mrgctx_85 +rgctx_fetch_trampoline_mrgctx_85_p +rgctx_fetch_trampoline_mrgctx_86 +rgctx_fetch_trampoline_mrgctx_86_p +rgctx_fetch_trampoline_mrgctx_87 +rgctx_fetch_trampoline_mrgctx_87_p +rgctx_fetch_trampoline_mrgctx_88 +rgctx_fetch_trampoline_mrgctx_88_p +rgctx_fetch_trampoline_mrgctx_89 +rgctx_fetch_trampoline_mrgctx_89_p +rgctx_fetch_trampoline_mrgctx_8_p +rgctx_fetch_trampoline_mrgctx_9 +rgctx_fetch_trampoline_mrgctx_90 +rgctx_fetch_trampoline_mrgctx_90_p +rgctx_fetch_trampoline_mrgctx_91 +rgctx_fetch_trampoline_mrgctx_91_p +rgctx_fetch_trampoline_mrgctx_92 +rgctx_fetch_trampoline_mrgctx_92_p +rgctx_fetch_trampoline_mrgctx_93 +rgctx_fetch_trampoline_mrgctx_93_p +rgctx_fetch_trampoline_mrgctx_94 +rgctx_fetch_trampoline_mrgctx_94_p +rgctx_fetch_trampoline_mrgctx_95 +rgctx_fetch_trampoline_mrgctx_95_p +rgctx_fetch_trampoline_mrgctx_96 +rgctx_fetch_trampoline_mrgctx_96_p +rgctx_fetch_trampoline_mrgctx_97 +rgctx_fetch_trampoline_mrgctx_97_p +rgctx_fetch_trampoline_mrgctx_98 +rgctx_fetch_trampoline_mrgctx_98_p +rgctx_fetch_trampoline_mrgctx_99 +rgctx_fetch_trampoline_mrgctx_99_p +rgctx_fetch_trampoline_mrgctx_9_p +rgctx_fetch_trampoline_rgctx_0 +rgctx_fetch_trampoline_rgctx_0_p +rgctx_fetch_trampoline_rgctx_1 +rgctx_fetch_trampoline_rgctx_10 +rgctx_fetch_trampoline_rgctx_100 +rgctx_fetch_trampoline_rgctx_100_p +rgctx_fetch_trampoline_rgctx_101 +rgctx_fetch_trampoline_rgctx_101_p +rgctx_fetch_trampoline_rgctx_102 +rgctx_fetch_trampoline_rgctx_102_p +rgctx_fetch_trampoline_rgctx_103 +rgctx_fetch_trampoline_rgctx_103_p +rgctx_fetch_trampoline_rgctx_104 +rgctx_fetch_trampoline_rgctx_104_p +rgctx_fetch_trampoline_rgctx_105 +rgctx_fetch_trampoline_rgctx_105_p +rgctx_fetch_trampoline_rgctx_106 +rgctx_fetch_trampoline_rgctx_106_p +rgctx_fetch_trampoline_rgctx_107 +rgctx_fetch_trampoline_rgctx_107_p +rgctx_fetch_trampoline_rgctx_108 +rgctx_fetch_trampoline_rgctx_108_p +rgctx_fetch_trampoline_rgctx_109 +rgctx_fetch_trampoline_rgctx_109_p +rgctx_fetch_trampoline_rgctx_10_p +rgctx_fetch_trampoline_rgctx_11 +rgctx_fetch_trampoline_rgctx_110 +rgctx_fetch_trampoline_rgctx_110_p +rgctx_fetch_trampoline_rgctx_111 +rgctx_fetch_trampoline_rgctx_111_p +rgctx_fetch_trampoline_rgctx_112 +rgctx_fetch_trampoline_rgctx_112_p +rgctx_fetch_trampoline_rgctx_113 +rgctx_fetch_trampoline_rgctx_113_p +rgctx_fetch_trampoline_rgctx_114 +rgctx_fetch_trampoline_rgctx_114_p +rgctx_fetch_trampoline_rgctx_115 +rgctx_fetch_trampoline_rgctx_115_p +rgctx_fetch_trampoline_rgctx_116 +rgctx_fetch_trampoline_rgctx_116_p +rgctx_fetch_trampoline_rgctx_117 +rgctx_fetch_trampoline_rgctx_117_p +rgctx_fetch_trampoline_rgctx_118 +rgctx_fetch_trampoline_rgctx_118_p +rgctx_fetch_trampoline_rgctx_119 +rgctx_fetch_trampoline_rgctx_119_p +rgctx_fetch_trampoline_rgctx_11_p +rgctx_fetch_trampoline_rgctx_12 +rgctx_fetch_trampoline_rgctx_120 +rgctx_fetch_trampoline_rgctx_120_p +rgctx_fetch_trampoline_rgctx_121 +rgctx_fetch_trampoline_rgctx_121_p +rgctx_fetch_trampoline_rgctx_122 +rgctx_fetch_trampoline_rgctx_122_p +rgctx_fetch_trampoline_rgctx_123 +rgctx_fetch_trampoline_rgctx_123_p +rgctx_fetch_trampoline_rgctx_124 +rgctx_fetch_trampoline_rgctx_124_p +rgctx_fetch_trampoline_rgctx_125 +rgctx_fetch_trampoline_rgctx_125_p +rgctx_fetch_trampoline_rgctx_126 +rgctx_fetch_trampoline_rgctx_126_p +rgctx_fetch_trampoline_rgctx_127 +rgctx_fetch_trampoline_rgctx_127_p +rgctx_fetch_trampoline_rgctx_12_p +rgctx_fetch_trampoline_rgctx_13 +rgctx_fetch_trampoline_rgctx_13_p +rgctx_fetch_trampoline_rgctx_14 +rgctx_fetch_trampoline_rgctx_14_p +rgctx_fetch_trampoline_rgctx_15 +rgctx_fetch_trampoline_rgctx_15_p +rgctx_fetch_trampoline_rgctx_16 +rgctx_fetch_trampoline_rgctx_16_p +rgctx_fetch_trampoline_rgctx_17 +rgctx_fetch_trampoline_rgctx_17_p +rgctx_fetch_trampoline_rgctx_18 +rgctx_fetch_trampoline_rgctx_18_p +rgctx_fetch_trampoline_rgctx_19 +rgctx_fetch_trampoline_rgctx_19_p +rgctx_fetch_trampoline_rgctx_1_p +rgctx_fetch_trampoline_rgctx_2 +rgctx_fetch_trampoline_rgctx_20 +rgctx_fetch_trampoline_rgctx_20_p +rgctx_fetch_trampoline_rgctx_21 +rgctx_fetch_trampoline_rgctx_21_p +rgctx_fetch_trampoline_rgctx_22 +rgctx_fetch_trampoline_rgctx_22_p +rgctx_fetch_trampoline_rgctx_23 +rgctx_fetch_trampoline_rgctx_23_p +rgctx_fetch_trampoline_rgctx_24 +rgctx_fetch_trampoline_rgctx_24_p +rgctx_fetch_trampoline_rgctx_25 +rgctx_fetch_trampoline_rgctx_25_p +rgctx_fetch_trampoline_rgctx_26 +rgctx_fetch_trampoline_rgctx_26_p +rgctx_fetch_trampoline_rgctx_27 +rgctx_fetch_trampoline_rgctx_27_p +rgctx_fetch_trampoline_rgctx_28 +rgctx_fetch_trampoline_rgctx_28_p +rgctx_fetch_trampoline_rgctx_29 +rgctx_fetch_trampoline_rgctx_29_p +rgctx_fetch_trampoline_rgctx_2_p +rgctx_fetch_trampoline_rgctx_3 +rgctx_fetch_trampoline_rgctx_30 +rgctx_fetch_trampoline_rgctx_30_p +rgctx_fetch_trampoline_rgctx_31 +rgctx_fetch_trampoline_rgctx_31_p +rgctx_fetch_trampoline_rgctx_32 +rgctx_fetch_trampoline_rgctx_32_p +rgctx_fetch_trampoline_rgctx_33 +rgctx_fetch_trampoline_rgctx_33_p +rgctx_fetch_trampoline_rgctx_34 +rgctx_fetch_trampoline_rgctx_34_p +rgctx_fetch_trampoline_rgctx_35 +rgctx_fetch_trampoline_rgctx_35_p +rgctx_fetch_trampoline_rgctx_36 +rgctx_fetch_trampoline_rgctx_36_p +rgctx_fetch_trampoline_rgctx_37 +rgctx_fetch_trampoline_rgctx_37_p +rgctx_fetch_trampoline_rgctx_38 +rgctx_fetch_trampoline_rgctx_38_p +rgctx_fetch_trampoline_rgctx_39 +rgctx_fetch_trampoline_rgctx_39_p +rgctx_fetch_trampoline_rgctx_3_p +rgctx_fetch_trampoline_rgctx_4 +rgctx_fetch_trampoline_rgctx_40 +rgctx_fetch_trampoline_rgctx_40_p +rgctx_fetch_trampoline_rgctx_41 +rgctx_fetch_trampoline_rgctx_41_p +rgctx_fetch_trampoline_rgctx_42 +rgctx_fetch_trampoline_rgctx_42_p +rgctx_fetch_trampoline_rgctx_43 +rgctx_fetch_trampoline_rgctx_43_p +rgctx_fetch_trampoline_rgctx_44 +rgctx_fetch_trampoline_rgctx_44_p +rgctx_fetch_trampoline_rgctx_45 +rgctx_fetch_trampoline_rgctx_45_p +rgctx_fetch_trampoline_rgctx_46 +rgctx_fetch_trampoline_rgctx_46_p +rgctx_fetch_trampoline_rgctx_47 +rgctx_fetch_trampoline_rgctx_47_p +rgctx_fetch_trampoline_rgctx_48 +rgctx_fetch_trampoline_rgctx_48_p +rgctx_fetch_trampoline_rgctx_49 +rgctx_fetch_trampoline_rgctx_49_p +rgctx_fetch_trampoline_rgctx_4_p +rgctx_fetch_trampoline_rgctx_5 +rgctx_fetch_trampoline_rgctx_50 +rgctx_fetch_trampoline_rgctx_50_p +rgctx_fetch_trampoline_rgctx_51 +rgctx_fetch_trampoline_rgctx_51_p +rgctx_fetch_trampoline_rgctx_52 +rgctx_fetch_trampoline_rgctx_52_p +rgctx_fetch_trampoline_rgctx_53 +rgctx_fetch_trampoline_rgctx_53_p +rgctx_fetch_trampoline_rgctx_54 +rgctx_fetch_trampoline_rgctx_54_p +rgctx_fetch_trampoline_rgctx_55 +rgctx_fetch_trampoline_rgctx_55_p +rgctx_fetch_trampoline_rgctx_56 +rgctx_fetch_trampoline_rgctx_56_p +rgctx_fetch_trampoline_rgctx_57 +rgctx_fetch_trampoline_rgctx_57_p +rgctx_fetch_trampoline_rgctx_58 +rgctx_fetch_trampoline_rgctx_58_p +rgctx_fetch_trampoline_rgctx_59 +rgctx_fetch_trampoline_rgctx_59_p +rgctx_fetch_trampoline_rgctx_5_p +rgctx_fetch_trampoline_rgctx_6 +rgctx_fetch_trampoline_rgctx_60 +rgctx_fetch_trampoline_rgctx_60_p +rgctx_fetch_trampoline_rgctx_61 +rgctx_fetch_trampoline_rgctx_61_p +rgctx_fetch_trampoline_rgctx_62 +rgctx_fetch_trampoline_rgctx_62_p +rgctx_fetch_trampoline_rgctx_63 +rgctx_fetch_trampoline_rgctx_63_p +rgctx_fetch_trampoline_rgctx_64 +rgctx_fetch_trampoline_rgctx_64_p +rgctx_fetch_trampoline_rgctx_65 +rgctx_fetch_trampoline_rgctx_65_p +rgctx_fetch_trampoline_rgctx_66 +rgctx_fetch_trampoline_rgctx_66_p +rgctx_fetch_trampoline_rgctx_67 +rgctx_fetch_trampoline_rgctx_67_p +rgctx_fetch_trampoline_rgctx_68 +rgctx_fetch_trampoline_rgctx_68_p +rgctx_fetch_trampoline_rgctx_69 +rgctx_fetch_trampoline_rgctx_69_p +rgctx_fetch_trampoline_rgctx_6_p +rgctx_fetch_trampoline_rgctx_7 +rgctx_fetch_trampoline_rgctx_70 +rgctx_fetch_trampoline_rgctx_70_p +rgctx_fetch_trampoline_rgctx_71 +rgctx_fetch_trampoline_rgctx_71_p +rgctx_fetch_trampoline_rgctx_72 +rgctx_fetch_trampoline_rgctx_72_p +rgctx_fetch_trampoline_rgctx_73 +rgctx_fetch_trampoline_rgctx_73_p +rgctx_fetch_trampoline_rgctx_74 +rgctx_fetch_trampoline_rgctx_74_p +rgctx_fetch_trampoline_rgctx_75 +rgctx_fetch_trampoline_rgctx_75_p +rgctx_fetch_trampoline_rgctx_76 +rgctx_fetch_trampoline_rgctx_76_p +rgctx_fetch_trampoline_rgctx_77 +rgctx_fetch_trampoline_rgctx_77_p +rgctx_fetch_trampoline_rgctx_78 +rgctx_fetch_trampoline_rgctx_78_p +rgctx_fetch_trampoline_rgctx_79 +rgctx_fetch_trampoline_rgctx_79_p +rgctx_fetch_trampoline_rgctx_7_p +rgctx_fetch_trampoline_rgctx_8 +rgctx_fetch_trampoline_rgctx_80 +rgctx_fetch_trampoline_rgctx_80_p +rgctx_fetch_trampoline_rgctx_81 +rgctx_fetch_trampoline_rgctx_81_p +rgctx_fetch_trampoline_rgctx_82 +rgctx_fetch_trampoline_rgctx_82_p +rgctx_fetch_trampoline_rgctx_83 +rgctx_fetch_trampoline_rgctx_83_p +rgctx_fetch_trampoline_rgctx_84 +rgctx_fetch_trampoline_rgctx_84_p +rgctx_fetch_trampoline_rgctx_85 +rgctx_fetch_trampoline_rgctx_85_p +rgctx_fetch_trampoline_rgctx_86 +rgctx_fetch_trampoline_rgctx_86_p +rgctx_fetch_trampoline_rgctx_87 +rgctx_fetch_trampoline_rgctx_87_p +rgctx_fetch_trampoline_rgctx_88 +rgctx_fetch_trampoline_rgctx_88_p +rgctx_fetch_trampoline_rgctx_89 +rgctx_fetch_trampoline_rgctx_89_p +rgctx_fetch_trampoline_rgctx_8_p +rgctx_fetch_trampoline_rgctx_9 +rgctx_fetch_trampoline_rgctx_90 +rgctx_fetch_trampoline_rgctx_90_p +rgctx_fetch_trampoline_rgctx_91 +rgctx_fetch_trampoline_rgctx_91_p +rgctx_fetch_trampoline_rgctx_92 +rgctx_fetch_trampoline_rgctx_92_p +rgctx_fetch_trampoline_rgctx_93 +rgctx_fetch_trampoline_rgctx_93_p +rgctx_fetch_trampoline_rgctx_94 +rgctx_fetch_trampoline_rgctx_94_p +rgctx_fetch_trampoline_rgctx_95 +rgctx_fetch_trampoline_rgctx_95_p +rgctx_fetch_trampoline_rgctx_96 +rgctx_fetch_trampoline_rgctx_96_p +rgctx_fetch_trampoline_rgctx_97 +rgctx_fetch_trampoline_rgctx_97_p +rgctx_fetch_trampoline_rgctx_98 +rgctx_fetch_trampoline_rgctx_98_p +rgctx_fetch_trampoline_rgctx_99 +rgctx_fetch_trampoline_rgctx_99_p +rgctx_fetch_trampoline_rgctx_9_p +rindex +ring_doorbell +rint +rintf +rintl +rmdir +rootapprox +rot3 +round +roundf +roundl +rtld_printf +rtprio_thread +run +run_cfi_program +rvOK +s +s00 +s01 +s10 +s11 +s12 +s13 +s14 +s15 +s16 +s17 +s18 +s19 +s20 +s21 +s_StdThreadStackSize +s_fixed_buf +s_fixed_count +s_sceLibcMallocState +s_useStdThreadStackSize +sbuf +scalb +scalbf +scalbln +scalblnf +scalblnl +scalbn +scalbnf +scalbnl +scanf +scanf_s +sceAc3EncCreateEncoder +sceAc3EncDeleteEncoder +sceAc3EncEncode +sceAc3EncEncodeAsync +sceAc3EncFlush +sceAc3EncIsEncoding +sceAc3EncWaitEncode +sceAcmBatchJobNotification +sceAcmBatchStartBuffer +sceAcmBatchStartBuffers +sceAcmBatchWait +sceAcmContextCreate +sceAcmContextDestroy +sceAcm_ConvReverb_SharedInput +sceAcm_ConvReverb_SharedIr +sceAcm_FFT +sceAcm_IFFT +sceAcm_Panner +sceAgcAcbAcquireMem +sceAgcAcbAcquireMemGetSize +sceAgcAcbAtomicGds +sceAgcAcbAtomicGdsGetSize +sceAgcAcbAtomicMem +sceAgcAcbAtomicMemGetSize +sceAgcAcbCondExec +sceAgcAcbCondExecGetSize +sceAgcAcbCopyData +sceAgcAcbCopyDataGetSize +sceAgcAcbDispatchIndirect +sceAgcAcbDispatchIndirectGetSize +sceAgcAcbDmaData +sceAgcAcbDmaDataGetSize +sceAgcAcbEventWrite +sceAgcAcbEventWriteGetSize +sceAgcAcbJump +sceAgcAcbJumpGetSize +sceAgcAcbMemSemaphore +sceAgcAcbPopMarker +sceAgcAcbPrimeUtcl2 +sceAgcAcbPrimeUtcl2GetSize +sceAgcAcbPushMarker +sceAgcAcbPushMarkerSpan +sceAgcAcbQueueEndOfShaderActionGetSize +sceAgcAcbResetQueue +sceAgcAcbRewind +sceAgcAcbRewindGetSize +sceAgcAcbSetFlip +sceAgcAcbSetMarker +sceAgcAcbSetMarkerSpan +sceAgcAcbSetWorkloadComplete +sceAgcAcbSetWorkloadStreamInactive +sceAgcAcbSetWorkloadsActive +sceAgcAcbWaitOnAddressGetSize +sceAgcAcbWaitRegMem +sceAgcAcbWaitUntilSafeForRendering +sceAgcAcbWriteData +sceAgcAcquireMemSetEngine +sceAgcAsyncCondExecPatchSetCommandAddress +sceAgcAsyncCondExecPatchSetEnd +sceAgcAsyncRewindPatchSetRewindState +sceAgcBranchPatchSetCompareAddress +sceAgcBranchPatchSetElseTarget +sceAgcBranchPatchSetThenTarget +sceAgcCbBranch +sceAgcCbBranchGetSize +sceAgcCbCondWrite +sceAgcCbCondWriteGetSize +sceAgcCbDispatch +sceAgcCbDispatchGetSize +sceAgcCbMemSemaphore +sceAgcCbNop +sceAgcCbNopGetSize +sceAgcCbQueueEndOfPipeActionGetSize +sceAgcCbReleaseMem +sceAgcCbSetShRegisterRangeDirect +sceAgcCbSetShRegisterRangeDirectGetSize +sceAgcCbSetShRegistersDirect +sceAgcCbSetShRegistersDirectGetSize +sceAgcCbSetUcRegisterRangeDirect +sceAgcCbSetUcRegisterRangeDirectGetSize +sceAgcCbSetUcRegistersDirect +sceAgcCbSetUcRegistersDirectGetSize +sceAgcCondExecPatchSetCommandAddress +sceAgcCondExecPatchSetEnd +sceAgcCreateInterpolantMapping +sceAgcCreatePrimState +sceAgcCreateShader +sceAgcDcbAcquireMem +sceAgcDcbAcquireMemGetSize +sceAgcDcbAtomicGds +sceAgcDcbAtomicGdsGetSize +sceAgcDcbAtomicMem +sceAgcDcbAtomicMemGetSize +sceAgcDcbBeginOcclusionQueryGetSize +sceAgcDcbClearState +sceAgcDcbCondExec +sceAgcDcbCondExecGetSize +sceAgcDcbContextStateOp +sceAgcDcbContextStateOpGetSize +sceAgcDcbCopyData +sceAgcDcbCopyDataGetSize +sceAgcDcbDispatchIndirect +sceAgcDcbDispatchIndirectGetSize +sceAgcDcbDmaData +sceAgcDcbDmaDataGetSize +sceAgcDcbDrawIndex +sceAgcDcbDrawIndexAuto +sceAgcDcbDrawIndexAutoGetSize +sceAgcDcbDrawIndexGetSize +sceAgcDcbDrawIndexIndirect +sceAgcDcbDrawIndexIndirectGetSize +sceAgcDcbDrawIndexIndirectMulti +sceAgcDcbDrawIndexIndirectMultiGetSize +sceAgcDcbDrawIndexMultiInstanced +sceAgcDcbDrawIndexMultiInstancedGetSize +sceAgcDcbDrawIndexOffset +sceAgcDcbDrawIndexOffsetGetSize +sceAgcDcbDrawIndirect +sceAgcDcbDrawIndirectGetSize +sceAgcDcbDrawIndirectMulti +sceAgcDcbDrawIndirectMultiGetSize +sceAgcDcbEndOcclusionQueryGetSize +sceAgcDcbEventWrite +sceAgcDcbEventWriteGetSize +sceAgcDcbGetLodStats +sceAgcDcbGetLodStatsGetSize +sceAgcDcbJump +sceAgcDcbJumpGetSize +sceAgcDcbMemSemaphore +sceAgcDcbPopMarker +sceAgcDcbPrimeUtcl2 +sceAgcDcbPrimeUtcl2GetSize +sceAgcDcbPushMarker +sceAgcDcbPushMarkerSpan +sceAgcDcbQueueEndOfShaderActionGetSize +sceAgcDcbResetQueue +sceAgcDcbRewind +sceAgcDcbRewindGetSize +sceAgcDcbSetBaseDispatchIndirectArgsGetSize +sceAgcDcbSetBaseDrawIndirectArgsGetSize +sceAgcDcbSetBaseIndirectArgs +sceAgcDcbSetBoolPredicationEnableGetSize +sceAgcDcbSetCfRegisterDirect +sceAgcDcbSetCfRegisterRangeDirect +sceAgcDcbSetCxRegisterDirect +sceAgcDcbSetCxRegisterDirectGetSize +sceAgcDcbSetCxRegistersIndirect +sceAgcDcbSetCxRegistersIndirectGetSize +sceAgcDcbSetFlip +sceAgcDcbSetIndexBuffer +sceAgcDcbSetIndexBufferGetSize +sceAgcDcbSetIndexCount +sceAgcDcbSetIndexCountGetSize +sceAgcDcbSetIndexIndirectArgs +sceAgcDcbSetIndexIndirectArgsGetSize +sceAgcDcbSetIndexSize +sceAgcDcbSetIndexSizeGetSize +sceAgcDcbSetMarker +sceAgcDcbSetMarkerSpan +sceAgcDcbSetNumInstances +sceAgcDcbSetNumInstancesGetSize +sceAgcDcbSetPredication +sceAgcDcbSetPredicationDisableGetSize +sceAgcDcbSetShRegisterDirect +sceAgcDcbSetShRegisterDirectGetSize +sceAgcDcbSetShRegistersIndirect +sceAgcDcbSetShRegistersIndirectGetSize +sceAgcDcbSetUcRegisterDirect +sceAgcDcbSetUcRegisterDirectGetSize +sceAgcDcbSetUcRegistersIndirect +sceAgcDcbSetUcRegistersIndirectGetSize +sceAgcDcbSetWorkloadComplete +sceAgcDcbSetWorkloadStreamInactive +sceAgcDcbSetWorkloadsActive +sceAgcDcbSetZPassPredicationEnableGetSize +sceAgcDcbStallCommandBufferParser +sceAgcDcbStallCommandBufferParserGetSize +sceAgcDcbWaitOnAddressGetSize +sceAgcDcbWaitRegMem +sceAgcDcbWaitUntilSafeForRendering +sceAgcDcbWriteData +sceAgcDcbWriteDataGetSize +sceAgcDebugRaiseException +sceAgcDmaDataPatchSetDstAddressOrOffset +sceAgcDmaDataPatchSetSrcAddressOrOffsetOrImmediate +sceAgcDriverAcquireRazorACQ +sceAgcDriverAddEqEvent +sceAgcDriverAgrSubmitDcb +sceAgcDriverAgrSubmitMultiDcbs +sceAgcDriverAllocateToolMemoryForGpuReset +sceAgcDriverCreateQueue +sceAgcDriverCwsrResumeAcq +sceAgcDriverCwsrSuspendAcq +sceAgcDriverDebugHardwareStatus +sceAgcDriverDeleteEqEvent +sceAgcDriverDestroyQueue +sceAgcDriverFindResourcesPublic +sceAgcDriverGetAllocatedToolMemoryForGpuReset +sceAgcDriverGetDefaultOwner +sceAgcDriverGetEqContextId +sceAgcDriverGetEqEventType +sceAgcDriverGetGpuPrintfWorkArea +sceAgcDriverGetGpuRefClks +sceAgcDriverGetHsOffchipParam +sceAgcDriverGetOwnerName +sceAgcDriverGetPaDebugInterfaceVersion +sceAgcDriverGetRegShadowInfo +sceAgcDriverGetRegShadowInfoAgr +sceAgcDriverGetReservedDmemForAgc +sceAgcDriverGetResourceBaseAddressAndSizeInBytes +sceAgcDriverGetResourceName +sceAgcDriverGetResourceRegistrationMaxNameLength +sceAgcDriverGetResourceShaderGuid +sceAgcDriverGetResourceType +sceAgcDriverGetResourceUserData +sceAgcDriverGetSetFlipPacketSizeInDwords +sceAgcDriverGetSetWorkloadCompletePacketSize +sceAgcDriverGetSetWorkloadStreamInactivePacketSize +sceAgcDriverGetSetWorkloadsActivePacketSize +sceAgcDriverGetShaderDebuggingStatus +sceAgcDriverGetTFRing +sceAgcDriverGetTraceInitiator +sceAgcDriverGetWaitRenderingPacketSizeInDwords +sceAgcDriverGetWorkloadStreamInfo +sceAgcDriverHp3dLockEnd +sceAgcDriverHp3dLockStart +sceAgcDriverIDHSSubmit +sceAgcDriverInitResourceRegistration +sceAgcDriverIsCaptureInProgress +sceAgcDriverIsPaDebug +sceAgcDriverIsSubmitValidationEnabled +sceAgcDriverIsSuspendPointInFlight +sceAgcDriverIsTraceInProgress +sceAgcDriverModuleRegistration +sceAgcDriverNotifyDefaultStates +sceAgcDriverPassInfoDownward +sceAgcDriverPatchClearState +sceAgcDriverQueryResourceRegistrationUserMemoryRequirements +sceAgcDriverRegisterDefaultOwner +sceAgcDriverRegisterGdsResource +sceAgcDriverRegisterGpuResetCallbacks +sceAgcDriverRegisterOwner +sceAgcDriverRegisterResource +sceAgcDriverRegisterWorkloadStream +sceAgcDriverRequestCaptureStart +sceAgcDriverRequestCaptureStop +sceAgcDriverSetFlip +sceAgcDriverSetHsOffchipParam +sceAgcDriverSetHsOffchipParamDirect +sceAgcDriverSetResourceUserData +sceAgcDriverSetTFRing +sceAgcDriverSetTargetRingForDiag +sceAgcDriverSetValidationErrorOutputFrequency +sceAgcDriverSetWorkloadComplete +sceAgcDriverSetWorkloadStreamInactive +sceAgcDriverSetWorkloadsActive +sceAgcDriverSetupAsyncGraphics +sceAgcDriverSetupRegisterShadow +sceAgcDriverSubmitAcb +sceAgcDriverSubmitCommandBuffer +sceAgcDriverSubmitDcb +sceAgcDriverSubmitMultiAcbs +sceAgcDriverSubmitMultiCommandBuffers +sceAgcDriverSubmitMultiCommandBuffersDirect +sceAgcDriverSubmitMultiDcbs +sceAgcDriverSubmitToHDRScopesACQ +sceAgcDriverSubmitToRazorACQ +sceAgcDriverSuspendPointSubmit +sceAgcDriverSuspendPointSubmitDirect +sceAgcDriverSysEnableSubmitDone45Exception +sceAgcDriverSysGetClientNumber +sceAgcDriverSysGetGfxAppGpuResetStatus +sceAgcDriverSysIsGameClosed +sceAgcDriverSysSubmitFlipHandleProxy +sceAgcDriverTmpInitIdhs +sceAgcDriverTriggerCapture +sceAgcDriverUnregisterAllResourcesForOwner +sceAgcDriverUnregisterGpuResetCallbacks +sceAgcDriverUnregisterOwnerAndResources +sceAgcDriverUnregisterResource +sceAgcDriverUnregisterWorkloadStream +sceAgcDriverUserDataGetPacketSize +sceAgcDriverUserDataImmediateWrite +sceAgcDriverUserDataImmediateWritePacket +sceAgcDriverUserDataWritePacket +sceAgcDriverUserDataWritePopMarker +sceAgcDriverUserDataWritePushMarker +sceAgcDriverUserDataWriteSetMarker +sceAgcDriverWaitUntilSafeForRendering +sceAgcFuseShaderHalves +sceAgcGetDataPacketPayloadAddress +sceAgcGetDataPacketPayloadRange +sceAgcGetDefaultCxStateFlat +sceAgcGetFusedShaderSize +sceAgcGetGsOversubscription +sceAgcGetPacketSize +sceAgcGetRegisterDefaults +sceAgcGetRegisterDefaults2 +sceAgcGetRegisterDefaults2Internal +sceAgcGetRegisterDefaultsInternal +sceAgcGetSemaphoreLabel +sceAgcGetStaticBuffer +sceAgcInit +sceAgcJumpPatchSetTarget +sceAgcLinkShaders +sceAgcQueueEndOfPipeActionPatchAddress +sceAgcQueueEndOfPipeActionPatchData +sceAgcQueueEndOfPipeActionPatchGcrCntl +sceAgcQueueEndOfPipeActionPatchType +sceAgcRewindPatchSetRewindState +sceAgcSdmaClose +sceAgcSdmaConstFill +sceAgcSdmaCopyLinear +sceAgcSdmaCopyTiledBC +sceAgcSdmaCopyTiledGen2 +sceAgcSdmaCopyWindowBC +sceAgcSdmaCopyWindowGen2 +sceAgcSdmaFlush +sceAgcSdmaOpen +sceAgcSdmaSetTileModesBC +sceAgcSetAmmSemaphoreMemory +sceAgcSetCxRegIndirectPatchAddRegisters sceAgcSetCxRegIndirectPatchSetAddress -sceUserServiceSetGlsAccessTokenUstream -sceNetCtlGetResultV6IpcInt -sceNgs2ModuleQueueEnumItems -sceVdecswResetDecoder -scePadGetLicenseControllerInformation -sceCameraSetDebugStop -sceNpAsmClientGetGameNpTitleInfo -sceNpManagerIntGetGameVshToken -sceFsBfsCheckCleanFlag -sceNpManagerIntGetTicketNB -sceRudpGetMaxSegmentSize +sceAgcSetCxRegIndirectPatchSetNumRegisters +sceAgcSetNop +sceAgcSetPacketPredication +sceAgcSetRangePredication +sceAgcSetShRegIndirectPatchAddRegisters +sceAgcSetShRegIndirectPatchSetAddress +sceAgcSetShRegIndirectPatchSetNumRegisters +sceAgcSetStaticBuffer +sceAgcSetSubmitMode +sceAgcSetUcRegIndirectPatchAddRegisters +sceAgcSetUcRegIndirectPatchSetAddress +sceAgcSetUcRegIndirectPatchSetNumRegisters +sceAgcSuspendPoint +sceAgcSuspendPointAndCheckStatus +sceAgcUpdateInterpolantMapping +sceAgcUpdatePrimState +sceAgcWaitRegMemPatchAddress +sceAgcWaitRegMemPatchCompareFunction +sceAgcWaitRegMemPatchMask +sceAgcWaitRegMemPatchReference +sceAjmBatchCancel +sceAjmBatchErrorDump +sceAjmBatchGetLog +sceAjmBatchInitialize +sceAjmBatchJobClearContext +sceAjmBatchJobControl +sceAjmBatchJobControlBufferRa +sceAjmBatchJobDecode +sceAjmBatchJobDecodeSingle +sceAjmBatchJobDecodeSplit +sceAjmBatchJobEncode +sceAjmBatchJobGetCodecInfo +sceAjmBatchJobGetGaplessDecode +sceAjmBatchJobGetInfo +sceAjmBatchJobGetResampleInfo +sceAjmBatchJobGetStatistics +sceAjmBatchJobInitialize +sceAjmBatchJobInlineBuffer +sceAjmBatchJobRun +sceAjmBatchJobRunBufferRa +sceAjmBatchJobRunSplit +sceAjmBatchJobRunSplitBufferRa +sceAjmBatchJobSetGaplessDecode +sceAjmBatchJobSetResampleParameters +sceAjmBatchJobSetResampleParametersEx +sceAjmBatchStart +sceAjmBatchStartBuffer +sceAjmBatchWait +sceAjmDecAt9ParseConfigData +sceAjmDecMp3ParseFrame +sceAjmFinalize +sceAjmGetFailedInstance +sceAjmInitialize +sceAjmInstanceAvailable +sceAjmInstanceCodecType +sceAjmInstanceCreate +sceAjmInstanceDestroy +sceAjmInstanceExtend +sceAjmInstanceGetSize +sceAjmInstanceSwitch +sceAjmMemoryRegister +sceAjmMemoryUnregister +sceAjmModuleRegister +sceAjmModuleUnregister +sceAjmStrError +sceAmprAmmCommandBufferAllocatePaForPrt +sceAmprAmmCommandBufferConstructor +sceAmprAmmCommandBufferDestructor +sceAmprAmmCommandBufferMap +sceAmprAmmCommandBufferMapAsPrt +sceAmprAmmCommandBufferMapDirect +sceAmprAmmCommandBufferMapDirectWithGpuMaskId +sceAmprAmmCommandBufferMapWithGpuMaskId +sceAmprAmmCommandBufferModifyMtypeProtect +sceAmprAmmCommandBufferModifyMtypeProtectWithGpuMaskId +sceAmprAmmCommandBufferModifyProtect +sceAmprAmmCommandBufferModifyProtectWithGpuMaskId +sceAmprAmmCommandBufferMultiMap +sceAmprAmmCommandBufferMultiMapWithGpuMaskId +sceAmprAmmCommandBufferRemap +sceAmprAmmCommandBufferRemapIntoPrt +sceAmprAmmCommandBufferRemapWithGpuMaskId +sceAmprAmmCommandBufferUnmap +sceAmprAmmCommandBufferUnmapToPrt +sceAmprAmmGetUsageStatsData +sceAmprAmmGetVirtualAddressRanges +sceAmprAmmGiveDirectMemory +sceAmprAmmMeasureAmmCommandSizeAllocatePaForPrt +sceAmprAmmMeasureAmmCommandSizeMap +sceAmprAmmMeasureAmmCommandSizeMapAsPrt +sceAmprAmmMeasureAmmCommandSizeMapDirect +sceAmprAmmMeasureAmmCommandSizeMapDirectWithGpuMaskId +sceAmprAmmMeasureAmmCommandSizeMapWithGpuMaskId +sceAmprAmmMeasureAmmCommandSizeModifyMtypeProtect +sceAmprAmmMeasureAmmCommandSizeModifyMtypeProtectWithGpuMaskId +sceAmprAmmMeasureAmmCommandSizeModifyProtect +sceAmprAmmMeasureAmmCommandSizeModifyProtectWithGpuMaskId +sceAmprAmmMeasureAmmCommandSizeMultiMap +sceAmprAmmMeasureAmmCommandSizeMultiMapWithGpuMaskId +sceAmprAmmMeasureAmmCommandSizeRemap +sceAmprAmmMeasureAmmCommandSizeRemapWithGpuMaskId +sceAmprAmmMeasureAmmCommandSizeUnmap +sceAmprAmmSetPageTablePoolOccupancyNotificationThreshold +sceAmprAmmSubmitCommandBuffer +sceAmprAmmSubmitCommandBuffer2 +sceAmprAmmSubmitCommandBuffer3 +sceAmprAmmWaitCommandBufferCompletion +sceAmprAprCommandBufferConstructor +sceAmprAprCommandBufferDestructor +sceAmprAprCommandBufferMapBegin +sceAmprAprCommandBufferMapDirectBegin +sceAmprAprCommandBufferMapEnd +sceAmprAprCommandBufferReadFile +sceAmprAprCommandBufferReadFileGather +sceAmprAprCommandBufferReadFileGatherScatter +sceAmprAprCommandBufferReadFileScatter +sceAmprAprCommandBufferResetGatherScatterState +sceAmprCommandBufferClearBuffer +sceAmprCommandBufferConstructMarker +sceAmprCommandBufferConstructNop +sceAmprCommandBufferConstructor +sceAmprCommandBufferDestructor +sceAmprCommandBufferGetBufferBaseAddress +sceAmprCommandBufferGetCurrentOffset +sceAmprCommandBufferGetNumCommands +sceAmprCommandBufferGetSize +sceAmprCommandBufferGetType +sceAmprCommandBufferNop +sceAmprCommandBufferNopWithData +sceAmprCommandBufferPopMarker +sceAmprCommandBufferPushMarker +sceAmprCommandBufferPushMarkerWithColor +sceAmprCommandBufferReset +sceAmprCommandBufferSetBuffer +sceAmprCommandBufferSetMarker +sceAmprCommandBufferSetMarkerWithColor +sceAmprCommandBufferWaitOnAddress +sceAmprCommandBufferWaitOnAddress_04_00 +sceAmprCommandBufferWaitOnCounter +sceAmprCommandBufferWaitOnCounter_04_00 +sceAmprCommandBufferWriteAddressFromCounterOnCompletion +sceAmprCommandBufferWriteAddressFromCounterPairOnCompletion +sceAmprCommandBufferWriteAddressFromCounterPair_04_00 +sceAmprCommandBufferWriteAddressFromCounter_04_00 +sceAmprCommandBufferWriteAddressFromTimeCounterOnCompletion +sceAmprCommandBufferWriteAddressFromTimeCounter_04_00 +sceAmprCommandBufferWriteAddressOnCompletion +sceAmprCommandBufferWriteAddress_04_00 +sceAmprCommandBufferWriteCounterOnCompletion +sceAmprCommandBufferWriteCounter_04_00 +sceAmprCommandBufferWriteKernelEventQueueOnCompletion +sceAmprCommandBufferWriteKernelEventQueue_04_00 +sceAmprMeasureCommandSizeMapBegin +sceAmprMeasureCommandSizeMapDirectBegin +sceAmprMeasureCommandSizeMapEnd +sceAmprMeasureCommandSizeNop +sceAmprMeasureCommandSizeNopWithData +sceAmprMeasureCommandSizePopMarker +sceAmprMeasureCommandSizePushMarker +sceAmprMeasureCommandSizePushMarkerWithColor +sceAmprMeasureCommandSizeReadFile +sceAmprMeasureCommandSizeReadFileGather +sceAmprMeasureCommandSizeReadFileGatherScatter +sceAmprMeasureCommandSizeReadFileScatter +sceAmprMeasureCommandSizeResetGatherScatterState +sceAmprMeasureCommandSizeSetMarker +sceAmprMeasureCommandSizeSetMarkerWithColor +sceAmprMeasureCommandSizeWaitOnAddress +sceAmprMeasureCommandSizeWaitOnAddress_04_00 +sceAmprMeasureCommandSizeWaitOnCounter +sceAmprMeasureCommandSizeWaitOnCounter_04_00 +sceAmprMeasureCommandSizeWriteAddressFromCounterOnCompletion +sceAmprMeasureCommandSizeWriteAddressFromCounterPairOnCompletion +sceAmprMeasureCommandSizeWriteAddressFromCounterPair_04_00 +sceAmprMeasureCommandSizeWriteAddressFromCounter_04_00 +sceAmprMeasureCommandSizeWriteAddressFromTimeCounterOnCompletion +sceAmprMeasureCommandSizeWriteAddressFromTimeCounter_04_00 +sceAmprMeasureCommandSizeWriteAddressOnCompletion +sceAmprMeasureCommandSizeWriteAddress_04_00 +sceAmprMeasureCommandSizeWriteCounterOnCompletion +sceAmprMeasureCommandSizeWriteCounter_04_00 +sceAmprMeasureCommandSizeWriteKernelEventQueueOnCompletion +sceAmprMeasureCommandSizeWriteKernelEventQueue_04_00 +sceAppCheckerAbort +sceAppCheckerExecute +sceAppCheckerExecuteEx +sceAppContentAddcontDelete +sceAppContentAddcontEnqueueDownload +sceAppContentAddcontEnqueueDownloadByEntitlemetId +sceAppContentAddcontEnqueueDownloadSp +sceAppContentAddcontMount +sceAppContentAddcontMountByEntitlemetId +sceAppContentAddcontShrink +sceAppContentAddcontUnmount +sceAppContentAppParamGetInt +sceAppContentAppParamGetString +sceAppContentDownload0Expand +sceAppContentDownload0Shrink +sceAppContentDownload1Expand +sceAppContentDownload1Shrink +sceAppContentDownloadDataFormat +sceAppContentDownloadDataGetAvailableSpaceKb +sceAppContentGetAddcontDownloadProgress +sceAppContentGetAddcontInfo +sceAppContentGetAddcontInfoByEntitlementId +sceAppContentGetAddcontInfoList +sceAppContentGetAddcontInfoListByIroTag +sceAppContentGetDownloadedStoreCountry +sceAppContentGetEntitlementKey +sceAppContentGetPftFlag +sceAppContentGetRegion +sceAppContentInitialize +sceAppContentRequestPatchInstall +sceAppContentSmallSharedDataFormat +sceAppContentSmallSharedDataGetAvailableSpaceKb +sceAppContentSmallSharedDataMount +sceAppContentSmallSharedDataUnmount +sceAppContentTemporaryDataFormat +sceAppContentTemporaryDataGetAvailableSpaceKb +sceAppContentTemporaryDataMount +sceAppContentTemporaryDataMount2 +sceAppContentTemporaryDataUnmount +sceAppInstUtilAppAllowDownloadInstall +sceAppInstUtilAppCancelGetAllAppSize +sceAppInstUtilAppCancelGetAppOtherSize +sceAppInstUtilAppCancelMoveApps +sceAppInstUtilAppCancelUnInstall +sceAppInstUtilAppCancelableUnInstall +sceAppInstUtilAppCancelableUnInstallByUser +sceAppInstUtilAppConvertAppDiscToDownload +sceAppInstUtilAppConvertAppDownloadToDisc +sceAppInstUtilAppDestroyMetadata +sceAppInstUtilAppDestroyPkg +sceAppInstUtilAppExists +sceAppInstUtilAppGetAddcontInfo +sceAppInstUtilAppGetAddcontInfoByContentId +sceAppInstUtilAppGetAddcontList +sceAppInstUtilAppGetAddcontListAll +sceAppInstUtilAppGetAddcontListTotalSize +sceAppInstUtilAppGetAddcontNum +sceAppInstUtilAppGetAllAppSize +sceAppInstUtilAppGetAppInstallStatus +sceAppInstUtilAppGetAppInstallStatusByAppInfo +sceAppInstUtilAppGetAppOtherSize +sceAppInstUtilAppGetCompilationDiscInfo +sceAppInstUtilAppGetCustomThemeInfo +sceAppInstUtilAppGetInsertedDiscMasterDataId +sceAppInstUtilAppGetInsertedDiscTitleId +sceAppInstUtilAppGetInsertedDiscTitleIdList +sceAppInstUtilAppGetInstallAddcontFromDiscStatus +sceAppInstUtilAppGetIrremovableAppList +sceAppInstUtilAppGetMoveErrorAppList +sceAppInstUtilAppGetNoRelatedAddcontTitleList +sceAppInstUtilAppGetSize +sceAppInstUtilAppGetStoreCompilationDiscInfo +sceAppInstUtilAppInstallAll +sceAppInstUtilAppInstallCloudGame +sceAppInstUtilAppInstallContentPush +sceAppInstUtilAppInstallGetLinkState +sceAppInstUtilAppInstallMediaPlayer +sceAppInstUtilAppInstallPkg +sceAppInstUtilAppInstallPs4CloudGame +sceAppInstUtilAppInstallPsNowIcon +sceAppInstUtilAppInstallRequestAddcontFromDisc +sceAppInstUtilAppInstallRequestCompilationDiscApp +sceAppInstUtilAppInstallSharePlayLink +sceAppInstUtilAppInstallSharePlayLinkByUser +sceAppInstUtilAppInstallTitleDir +sceAppInstUtilAppIsInInstalling +sceAppInstUtilAppIsInUpdating +sceAppInstUtilAppPrepareOverwritePkg +sceAppInstUtilAppProhibitDownloadInstall +sceAppInstUtilAppRecoverApp +sceAppInstUtilAppRequestMoveApps +sceAppInstUtilAppSetRemasterInstallType +sceAppInstUtilAppSetSavedataUploadStatus +sceAppInstUtilAppStoreCompilationDiscInfo +sceAppInstUtilAppUnInstall +sceAppInstUtilAppUnInstall2 +sceAppInstUtilAppUnInstallAddcont +sceAppInstUtilAppUnInstallByUser +sceAppInstUtilAppUnInstallForMultiInstall +sceAppInstUtilAppUnInstallForRemote +sceAppInstUtilAppUnInstallPat +sceAppInstUtilAppUnInstallTheme +sceAppInstUtilAppUnInstallTypes +sceAppInstUtilAppUpdateStartTime +sceAppInstUtilCancelDataDiscCopy +sceAppInstUtilCheckAppSystemVer +sceAppInstUtilDeleteExternalPs5All +sceAppInstUtilGetAddcontInfoList2 +sceAppInstUtilGetAddcontInfoList3 +sceAppInstUtilGetAddcontInstalledStatus +sceAppInstUtilGetAddons +sceAppInstUtilGetAppEmptySlot +sceAppInstUtilGetAppMoveProgressInfo +sceAppInstUtilGetAppSlotInfoList +sceAppInstUtilGetConfigList +sceAppInstUtilGetContentSize +sceAppInstUtilGetContentSize2 +sceAppInstUtilGetDataDiscCopyProgress +sceAppInstUtilGetExternalPs5AllSize +sceAppInstUtilGetInsertedDiscRoleType +sceAppInstUtilGetInsertedDiscTotal +sceAppInstUtilGetInstallProgress +sceAppInstUtilGetInstallProgressInfo +sceAppInstUtilGetInstallProgressInfoForMultiDisc +sceAppInstUtilGetInstallStatus +sceAppInstUtilGetMainAppTitleId +sceAppInstUtilGetMainAppTitleIdForSP +sceAppInstUtilGetParentalControlLevel +sceAppInstUtilGetPatchInstallStatus +sceAppInstUtilGetPrimaryAppSlot +sceAppInstUtilGetRestoreState +sceAppInstUtilGetSubAppTitleId +sceAppInstUtilGetSubAppTitleIdForSP +sceAppInstUtilGetTitleIdFromPkg +sceAppInstUtilInitialize +sceAppInstUtilInstall +sceAppInstUtilInstallByPackage +sceAppInstUtilInstallPatch +sceAppInstUtilJson +sceAppInstUtilMountBdEmu +sceAppInstUtilPauseInstall +sceAppInstUtilRegisterDownload +sceAppInstUtilRequestDataDiscCopy +sceAppInstUtilRequestInstallDiscGame +sceAppInstUtilRestoreDataSource +sceAppInstUtilResumeInstall +sceAppInstUtilSetPrimaryAppSlot +sceAppInstUtilStartInstall +sceAppInstUtilSwitchConfig +sceAppInstUtilTerminate +sceAppInstUtilUnmountBdEmu +sceAppMessagingClearEventFlag +sceAppMessagingReceiveMsg +sceAppMessagingSendMsg +sceAppMessagingSendMsgToShellCore +sceAppMessagingSendMsgToShellUI +sceAppMessagingSetEventFlag +sceAppMessagingTryGetEventFlag +sceAppMessagingTryReceiveMsg +sceApplicationAddProcess2 +sceApplicationBeginSclkChange +sceApplicationBlockingKill +sceApplicationBlockingKill2 +sceApplicationBlockingKill3 +sceApplicationContinue +sceApplicationCrashSyscore +sceApplicationCrashSystemProcess +sceApplicationDebugSpawnAndSetAllFocus +sceApplicationDebugSpawnCommonDialog +sceApplicationDebugSpawnDaemon +sceApplicationDeclareShellCore +sceApplicationEndSclkChange +sceApplicationExitSpawn +sceApplicationExitSpawn2 +sceApplicationFinalize +sceApplicationGetAppInfoByAppId +sceApplicationGetAppPackageInfoForCoredump +sceApplicationGetCanvasHandle +sceApplicationGetCanvasHandleByApplicationLocalPid +sceApplicationGetCanvasHandleByPid +sceApplicationGetCompiledSdkVersionByAppId +sceApplicationGetCoreFileName +sceApplicationGetCoredumpDirAndFileName +sceApplicationGetCoredumpDirPath +sceApplicationGetCoredumpState +sceApplicationGetCpuUsage +sceApplicationGetCpuUsage2 +sceApplicationGetDbgExecutablePath +sceApplicationGetMode +sceApplicationGetProcs +sceApplicationGetShellCoreAppId +sceApplicationGetStateForDebugger +sceApplicationInitialize +sceApplicationInitializeForShellCore +sceApplicationIsCrashReportBeingProcessed +sceApplicationIsPrimaryProcess +sceApplicationIsResumable +sceApplicationIsSuspendable +sceApplicationKickCoredump +sceApplicationKickCoredump2 +sceApplicationKill +sceApplicationLocalProcessKill +sceApplicationLocalProcessKill2 +sceApplicationLocalProcessResume +sceApplicationLocalProcessSuspend +sceApplicationNotifyCoredumpRequestEnd +sceApplicationNotifyCoredumpRequestProgress +sceApplicationNotifyPhase +sceApplicationNotifyVshMainOnStandby +sceApplicationNotifyVshReady +sceApplicationOnAllResourceReleased +sceApplicationRaiseException +sceApplicationRaiseExceptionToLocalPid +sceApplicationRaiseExceptionToPid +sceApplicationRequestToChangeRenderingMode +sceApplicationRestore +sceApplicationResume +sceApplicationSave +sceApplicationSendDebugSpawnResult2 +sceApplicationSendResultOfDebuggerKillRequest +sceApplicationSendResultOfDebuggerResumeRequest +sceApplicationSendResultOfDebuggerSuspendRequest +sceApplicationSendResultOfDebuggerTitleIdLaunchRequest +sceApplicationSetApplicationFocus +sceApplicationSetCanvasHandle +sceApplicationSetControllerFocus +sceApplicationSetControllerFocusPermissionToSubProcess +sceApplicationSetMemoryPstate +sceApplicationSignalShellCoreHeartBeat +sceApplicationSpawn2 +sceApplicationSpawnAndSetAllFocus +sceApplicationSpawnCommonDialog +sceApplicationSpawnDaemon +sceApplicationSuspend +sceApplicationSuspendSystemForDebugger +sceApplicationSwitchToBaseMode +sceApplicationSwitchToNeoMode +sceApplicationSwitchToNeoMode2 +sceApplicationSystemReboot +sceApplicationSystemShutdown2 +sceApplicationSystemSuspend +sceApplicationSystemSuspend2 +sceApplictionGetStateForDebugger +sceAt9EncClearContext +sceAt9EncCreateEncoder +sceAt9EncEncode +sceAt9EncFlush +sceAt9EncQueryMemSize +sceAudio3dAudioOutClose +sceAudio3dAudioOutOpen +sceAudio3dAudioOutOutput +sceAudio3dAudioOutOutputs +sceAudio3dBedWrite +sceAudio3dBedWrite2 +sceAudio3dCreateSpeakerArray +sceAudio3dDeleteSpeakerArray +sceAudio3dGetDefaultOpenParameters +sceAudio3dGetSpeakerArrayMemorySize +sceAudio3dGetSpeakerArrayMixCoefficients +sceAudio3dGetSpeakerArrayMixCoefficients2 +sceAudio3dInitialize +sceAudio3dObjectReserve +sceAudio3dObjectSetAttributes +sceAudio3dObjectUnreserve +sceAudio3dPortAdvance +sceAudio3dPortClose +sceAudio3dPortCreate +sceAudio3dPortDestroy +sceAudio3dPortFlush +sceAudio3dPortFreeState +sceAudio3dPortGetAttributesSupported +sceAudio3dPortGetBufferLevel +sceAudio3dPortGetList +sceAudio3dPortGetParameters +sceAudio3dPortGetQueueLevel +sceAudio3dPortGetState +sceAudio3dPortGetStatus +sceAudio3dPortOpen +sceAudio3dPortPush +sceAudio3dPortQueryDebug +sceAudio3dPortSetAttribute +sceAudio3dReportRegisterHandler +sceAudio3dReportUnregisterHandler +sceAudio3dSetGpuRenderer +sceAudio3dStrError +sceAudio3dTerminate +sceAudioDeviceControlGet +sceAudioDeviceControlSet +sceAudioInAsyncOpen +sceAudioInChangeAppModuleState +sceAudioInClose +sceAudioInCountPorts +sceAudioInDeviceHqOpen +sceAudioInDeviceIdHqOpen +sceAudioInDeviceIdOpen +sceAudioInDeviceOpen +sceAudioInDeviceOpenEx +sceAudioInExtClose +sceAudioInExtCtrl +sceAudioInExtInput +sceAudioInExtOpen +sceAudioInExtSetAecMode +sceAudioInGetGain +sceAudioInGetHandleStatusInfo +sceAudioInGetRerouteCount +sceAudioInGetSilentState +sceAudioInHqOpen +sceAudioInHqOpenEx +sceAudioInInit +sceAudioInInput +sceAudioInInputs +sceAudioInIsSharedDevice +sceAudioInOpen +sceAudioInOpenEx +sceAudioInSetAllMute +sceAudioInSetCompressorPreGain +sceAudioInSetConnections +sceAudioInSetConnectionsForUser +sceAudioInSetDevConnection +sceAudioInSetFocusForUser +sceAudioInSetMicLevel +sceAudioInSetMode +sceAudioInSetMode2 +sceAudioInSetNoiseGateThreshold +sceAudioInSetPortConnections +sceAudioInSetPortStatuses +sceAudioInSetSparkParam +sceAudioInSetSparkSideTone +sceAudioInSetUsbGain +sceAudioInSetUserMute +sceAudioInVmicCreate +sceAudioInVmicDestroy +sceAudioInVmicSetMute +sceAudioInVmicWrite +sceAudioLatencyEstimationAddData +sceAudioLatencyEstimationGetDelayTime +sceAudioLatencyEstimationInitialize +sceAudioLatencyEstimationRelease +sceAudioOut2ArbitrationInitialize +sceAudioOut2ContextAdvance +sceAudioOut2ContextBedWrite +sceAudioOut2ContextCreate +sceAudioOut2ContextDestroy +sceAudioOut2ContextGetQueueLevel +sceAudioOut2ContextPush +sceAudioOut2ContextQueryMemory +sceAudioOut2ContextResetParam +sceAudioOut2ContextSetAttributes +sceAudioOut2DebugStateCtrl +sceAudioOut2DisableChat +sceAudioOut2EnableChat +sceAudioOut2GetAmbisonicsEncodeCoefficients +sceAudioOut2GetIpcHandle +sceAudioOut2GetSpeakerArrayAmbisonicsCoefficients +sceAudioOut2GetSpeakerArrayCoefficients +sceAudioOut2GetSpeakerArrayMemorySize +sceAudioOut2GetSpeakerInfo +sceAudioOut2GetSystemState +sceAudioOut2GetSystemStateEx +sceAudioOut2Initialize +sceAudioOut2InitializeEx +sceAudioOut2LoContextAdvance +sceAudioOut2LoContextCreate +sceAudioOut2LoContextDestroy +sceAudioOut2LoContextGetQueueLevel +sceAudioOut2LoContextPush +sceAudioOut2LoContextQueryMemory +sceAudioOut2LoContextSetAttributes +sceAudioOut2LoInit +sceAudioOut2LoPortCreate +sceAudioOut2LoPortDestroy +sceAudioOut2LoPortGetState +sceAudioOut2LoPortSetAttributes +sceAudioOut2LoTerminate +sceAudioOut2MasteringGetState +sceAudioOut2MasteringInit +sceAudioOut2MasteringInitEx +sceAudioOut2MasteringSetParam +sceAudioOut2MasteringTerm +sceAudioOut2MbusInit +sceAudioOut2PortCreate +sceAudioOut2PortCreateEx +sceAudioOut2PortDestroy +sceAudioOut2PortGetState +sceAudioOut2PortRegister +sceAudioOut2PortSetAttributes +sceAudioOut2PortUnregister +sceAudioOut2ReportRegisterHandler +sceAudioOut2ReportUnregisterHandler +sceAudioOut2Set3DLatency +sceAudioOut2SetSystemDebugState +sceAudioOut2SpeakerArrayCreate +sceAudioOut2SpeakerArrayDestroy +sceAudioOut2Terminate +sceAudioOut2UserCreate +sceAudioOut2UserCreateEx +sceAudioOut2UserDestroy +sceAudioOut2UserGetSupportedAttributes +sceAudioOutA3dControl +sceAudioOutA3dExit +sceAudioOutA3dInit +sceAudioOutArbitrationInitialize +sceAudioOutAssignHRTF +sceAudioOutAttachToApplicationByPid +sceAudioOutChangeAppModuleState +sceAudioOutClose +sceAudioOutConfigureOutputModeEx +sceAudioOutDetachFromApplicationByPid +sceAudioOutDeviceIdOpen +sceAudioOutEnable3DAudioForUser +sceAudioOutExClose +sceAudioOutExConfigureOutput +sceAudioOutExConfigureOutputMode +sceAudioOutExGetLastOutputTime +sceAudioOutExGetMonitorInfo +sceAudioOutExGetOutputInfo +sceAudioOutExGetSystemInfo +sceAudioOutExOpen +sceAudioOutExPtClose +sceAudioOutExPtGetLastOutputTime +sceAudioOutExPtOpen +sceAudioOutExSystemInfoIsSupportedAudioOutExMode +sceAudioOutGetFocusEnablePid +sceAudioOutGetHandleStatusInfo +sceAudioOutGetInfo +sceAudioOutGetInfoOpenNum +sceAudioOutGetLastOutputTime +sceAudioOutGetPortState +sceAudioOutGetSimulatedBusUsableStatusByBusType +sceAudioOutGetSimulatedHandleStatusInfo +sceAudioOutGetSimulatedHandleStatusInfo2 +sceAudioOutGetSparkVss +sceAudioOutGetSystemInfoEx +sceAudioOutGetSystemState +sceAudioOutInit +sceAudioOutInitIpmiGetSession +sceAudioOutMasteringGetState +sceAudioOutMasteringInit +sceAudioOutMasteringSetParam +sceAudioOutMasteringTerm +sceAudioOutMbusInit +sceAudioOutOpen +sceAudioOutOpenEx +sceAudioOutOutput +sceAudioOutOutputs +sceAudioOutPtClose +sceAudioOutPtGetLastOutputTime +sceAudioOutPtOpen +sceAudioOutPtOpenEx +sceAudioOutSetAllMute +sceAudioOutSetCaesarVolume +sceAudioOutSetConnections +sceAudioOutSetConnectionsForUser +sceAudioOutSetDevConnection +sceAudioOutSetHeadphoneOutMode +sceAudioOutSetJediJackVolume +sceAudioOutSetJediJackVolume2 +sceAudioOutSetJediSpkVolume +sceAudioOutSetJediSpkVolume2 +sceAudioOutSetMainOutput +sceAudioOutSetMixLevelPadSpk +sceAudioOutSetMorpheusParam +sceAudioOutSetMorpheusWorkingMode +sceAudioOutSetPadJackVolume +sceAudioOutSetPadSpkVolume +sceAudioOutSetPortConnections +sceAudioOutSetPortStatuses +sceAudioOutSetRecMode +sceAudioOutSetSparkParam +sceAudioOutSetSystemDebugState +sceAudioOutSetUsbVolume +sceAudioOutSetVolume +sceAudioOutSetVolumeDown +sceAudioOutSparkControlSetEqCoef +sceAudioOutStartAuxBroadcast +sceAudioOutStartSharePlay +sceAudioOutStopAuxBroadcast +sceAudioOutStopSharePlay +sceAudioOutSuspendResume +sceAudioOutSysClose +sceAudioOutSysConfigureOutput +sceAudioOutSysConfigureOutputMode +sceAudioOutSysGetHdmiMonitorInfo +sceAudioOutSysGetMonitorInfo +sceAudioOutSysGetOutputInfo +sceAudioOutSysGetSystemInfo +sceAudioOutSysHdmiMonitorInfoIsSupportedAudioOutMode +sceAudioOutSysOpen +sceAudioOutSystemControlGet +sceAudioOutSystemControlSet +sceAudioPropagationPathGetNumPoints +sceAudioPropagationPortalCreate +sceAudioPropagationPortalDestroy +sceAudioPropagationPortalSetAttributes +sceAudioPropagationReportApi +sceAudioPropagationResetAttributes +sceAudioPropagationRoomCreate +sceAudioPropagationRoomDestroy +sceAudioPropagationSourceCalculateAudioPaths +sceAudioPropagationSourceCreate +sceAudioPropagationSourceDestroy +sceAudioPropagationSourceGetAudioPath +sceAudioPropagationSourceGetAudioPathCount +sceAudioPropagationSourceGetRays +sceAudioPropagationSourceQueryInfo +sceAudioPropagationSourceRender +sceAudioPropagationSourceSetAttributes +sceAudioPropagationSourceSetAudioPath +sceAudioPropagationSourceSetAudioPaths +sceAudioPropagationSystemCreate +sceAudioPropagationSystemDestroy +sceAudioPropagationSystemGetRays +sceAudioPropagationSystemLock +sceAudioPropagationSystemQueryInfo +sceAudioPropagationSystemQueryMemory +sceAudioPropagationSystemRegisterMaterial +sceAudioPropagationSystemSetAttributes +sceAudioPropagationSystemSetRays +sceAudioPropagationSystemUnregisterMaterial +sceAudioSystemSystemResume +sceAudioSystemSystemSuspend +sceAudiodReportLoudness +sceAudiodReportMasteringGetParams +sceAudiodReportMasteringSetParams +sceAudiodReportMasteringStates +sceAudiodReportOutput +sceAudiodReportRegisterHandler +sceAudiodReportSetEnableFlag +sceAudiodReportUnregisterHandler +sceAudiodecClearContext +sceAudiodecClearContextEx +sceAudiodecCpuClearContext +sceAudiodecCpuDecode +sceAudiodecCpuInitDecoder +sceAudiodecCpuInternalClearContext +sceAudiodecCpuInternalDecode +sceAudiodecCpuInternalInitDecoder +sceAudiodecCpuInternalQueryMemSize +sceAudiodecCpuQueryMemSize +sceAudiodecCreateDecoder +sceAudiodecCreateDecoderEx +sceAudiodecDecode +sceAudiodecDecode2 +sceAudiodecDecode2Ex +sceAudiodecDecode2WithPriority +sceAudiodecDecode2WithPriorityEx +sceAudiodecDecodeEx +sceAudiodecDecodeWithPriority +sceAudiodecDecodeWithPriorityEx +sceAudiodecDeleteDecoder +sceAudiodecDeleteDecoderEx +sceAudiodecGetContext +sceAudiodecInitLibrary +sceAudiodecInitialize +sceAudiodecRegisterCodec +sceAudiodecTermLibrary +sceAudiodecTerminate +sceAutoMounterClientGetUsbDeviceInfo +sceAutoMounterClientGetUsbDeviceList +sceAutoMounterClientInit +sceAutoMounterClientRegisterCallback +sceAutoMounterClientTerm +sceAutoMounterClientUnregisterCallback +sceAvControlChangeOutputLayout +sceAvControlChangeOutputMode +sceAvControlChangeOutputModeForDiag +sceAvControlChangeProcessAttribute +sceAvControlChangeScanInMode +sceAvControlGetCurrentDeviceId +sceAvControlGetCurrentOutputMode +sceAvControlGetCurrentOutputModeWithSync +sceAvControlGetDetailHdcpStatus +sceAvControlGetDeviceInfo +sceAvControlGetHdcpStatus +sceAvControlGetMonitorInfo +sceAvControlGetNativeMonitorInfo +sceAvControlGetPuStatus +sceAvControlGetPuType +sceAvControlInit +sceAvControlIsAudioOutModeSupportedByMonitorInfo +sceAvControlIsColorimetryHdr +sceAvControlIsDeepColorSupportedByMonitorInfo +sceAvControlIsDeviceConnected +sceAvControlIsHdrSupportedByMonitorInfo +sceAvControlIsModeGen1Vr +sceAvControlIsModeSystemDefault +sceAvControlIsSuspendedProcessOutputModeAvailable +sceAvControlIsVideoOutModeSupportedByMonitorInfo +sceAvControlSet2dVrMode +sceAvControlSetAudioMuteForShutdown +sceAvControlSetAvOutputMode +sceAvControlSetColorEffect +sceAvControlSetDefaultAudioOutMode +sceAvControlSetDefaultVideoOutMode +sceAvControlSetDispclk +sceAvControlSetGamutMetadata +sceAvControlSetHdcpEncryption +sceAvControlSetHdcpStatus +sceAvControlSetHdmiGamutMetadata +sceAvControlSetHdrMetadata +sceAvControlSetVideoOutSource +sceAvControlSimulateProcessOutputModeArbitration +sceAvPlayerAddSource +sceAvPlayerAddSourceEx +sceAvPlayerChangeStream +sceAvPlayerClose +sceAvPlayerCurrentTime +sceAvPlayerDisableStream +sceAvPlayerEnableStream +sceAvPlayerGetAudioData +sceAvPlayerGetStreamInfo +sceAvPlayerGetStreamInfoEx +sceAvPlayerGetVideoData +sceAvPlayerGetVideoDataEx +sceAvPlayerInit +sceAvPlayerInitEx +sceAvPlayerIsActive +sceAvPlayerJumpToTime +sceAvPlayerPause +sceAvPlayerPostInit +sceAvPlayerPrintf +sceAvPlayerResume +sceAvPlayerSetAvSyncMode +sceAvPlayerSetAvailableBandwidth +sceAvPlayerSetLogCallback +sceAvPlayerSetLooping +sceAvPlayerSetTrickSpeed +sceAvPlayerStart +sceAvPlayerStartEx +sceAvPlayerStop +sceAvPlayerStreamCount +sceAvPlayerVprintf +sceAvSettingAddCallbacks +sceAvSettingAddCallbacksForLnc +sceAvSettingAddCallbacksForSocialScreen +sceAvSettingCallbackFuncsInit +sceAvSettingCallbackFuncsInitForLnc +sceAvSettingCallbackFuncsInitForLnc_ +sceAvSettingCallbackFuncsInit_ +sceAvSettingChangeOutputMode +sceAvSettingChangeOutputMode2 +sceAvSettingChangeOutputMode3 +sceAvSettingChangeOutputModeForDiag +sceAvSettingChangeProcessAttribute +sceAvSettingCheckCallback +sceAvSettingCloseLoopbackBuffers +sceAvSettingControlHdcpEncryption +sceAvSettingDebugAddCallbacks +sceAvSettingDebugClearDiagCommand +sceAvSettingDebugGetDetailedHdcpStatus +sceAvSettingDebugSetDiagState +sceAvSettingDebugSetHdmiMonitorInfo +sceAvSettingDebugSetProcessAttribute +sceAvSettingDriverChangeConnectionStatus +sceAvSettingDriverUpdateStatus +sceAvSettingEnterAudioMuteForShutdown +sceAvSettingGetCurrentDeviceInfo_ +sceAvSettingGetCurrentHdmiDeviceId +sceAvSettingGetCurrentOutputMode +sceAvSettingGetCurrentOutputMode2_ +sceAvSettingGetCurrentOutputMode_ sceAvSettingGetDetailedHdcpStatus sceAvSettingGetDeviceInfo -pthread_multi_np -sceKernelEnablePthreadObjectCheck -_sceNpAllocatorStrdupImpl -sceSslClose -sceNpUniversalDataSystemEventPropertyArraySetInt64 -sceNpUtilJsonGetOneChar -sceNpUniversalDataSystemEventToString -sceM4aacEncFlushWithPriorityEx -sceDtsEncCreateEncoder -sceCesIso2022StrToUtf16Str -sceNetShowNetstatExForBuffer -sceNpFreeKernelMemory -sceAppInstUtilSwitchConfig -sceOpusDecDecodeWithPriority -scePsmRegisterInternalCall -sceBgftServiceIntDownloadFindActiveGameAndGameAcTask -sceKernelWriteUnmapToPrtCommand -sceAvControlSetAudioMuteForShutdown -sceFaceTrackerSearchTarget -sceSaveDataIsDeletingUsbDb -sceRegMgrToolGetEntryCnt -sceUsbdGetIsoPacketBuffer -sceG2PDialogGetResult -sceSysmoduleUnloadModuleByNameInternal -sceVrTrackerSetLEDBrightness -sceShellCoreUtilGetTitleWorkaroundFileString -_sceNpAllocatorStrndup -sceLncUtilForceKillApp -sceFsGschedCtl -sceNpWebApiRegisterExtdPushEventCallback -sceClKernelDeleteEventFlag -sceUsbdOpenDeviceWithVidPid -sceNpManagerIntGetPlusMemberType -sceKernelDeleteBudget -scePerfTraceIoControllerStart -sceDtcpIpInitAuthAsync -sceGnmValidateSubmitAndFlipCommandBuffers -sceFiosDirectoryExists -sceSocialScreenCloseSeparateMode -sceAgcDcbGetLodStats -sceKernelAddAmprSystemEvent -sceNgs2SystemEnumHandles -sceNpManagerIntBindCompleted -sceNetCtlClearEventForLibIpcInt -sceSystemServiceUsbStorageInit -sceCesRefersUcsProfileCp858 -sceNpWebApi2DeleteRequest -sceVideoOutDeleteOutputModeEvent -sceCamera2SetAutoExposureGain -sceAmprMeasureCommandSizeWriteAddressFromCounterPairOnCompletion -sceDataTransferTargetRequestAuth -sceAudioInSetCompressorPreGain -sceRazorCpuTagBuffer -sceOpusSilkEncEncodeWithPriorityAndTimeout -sceKernelGetEventUserData -sceFontCloseFont -sceHmdReprojectionStop -sceShellCoreUtilIsTemperatureDanger -sceAudioOut2DisableChat -sceNpTusGetMultiUserDataStatusForCrossSaveVUser -sceVshAvcapSelect -sceFontFtSupportWinFonts -sceVideoOutConfigureOutput -sceSslDisableOptionInternalInsecure -sceFiosFHOpenWithModeSync -sceAgcCbBranch -sceUsbStorageGetdentsClose -_sceNpMalloc -sceNetEpollAbort -sceAgcDriverAddEqEvent -sceVideoOutRegisterBuffers -sceAudioOutOutputs -sceAgcDcbSetUcRegisterDirect -sceVideoOutSysSetInvertedColors -sceNpTrophyGetGroupIcon -sceKernelAprResolveFilepathsWithPrefixToIdsAndFileSizes -sceAvPlayerResume -sceFontFtTermAliases -sceUlpMgrVshInitialize -sceVdecwrapSetDecodeInput -sceAgcSetPacketPredication -sceCesMbcsUcsSetMbcsReplacementCharCode -sceAvSettingChangeOutputMode2 -sceVideoOutAllowOutputResolutionWqhdDetection -sceKernelGetEmergencyErrorLog -sceCompanionHttpdSetStatus -sceCustomMusicCoreSendSpMessage -sceHmdInternalAnotherScreenGetVideoStatus -sceAgcDcbDispatchIndirectGetSize -sceDtcpIpAddHeader -sceImeBackendGetStatus -sceSystemServiceShowControllerSettings -sceFiosInitialize -sceNpUniversalDataSystemEventPropertyObjectSetBinary -sceNpUniversalDataSystemDestroyContext -sceDtcpIpCloseContentAsync -scePsmUtilGetEmojiAssetManagerSize -sceUserServiceGetFriendFlag -sceGameLiveStreamingEnableSocialFeedback -sceDtcpIpTimeSeekAsync -sceUserServiceGetNpSubAccount -sceShellCoreUtilIsInSystemSuspendBlackList -sceCompositorDeleteIndirectRenderTarget -sceGnmDispatchIndirectOnMec -sceBgftServiceIntUploadStopTask -sceHmd2ReprojectionGetMirroringDisplayBufferSizeAlign -sceDebugIpmiGetConnectionWaitingThreadListByClientKid -sceHttpAuthCacheImport -sceVoiceVADSetVersion -sceShellCoreUtilGetNetEvConfigFileInfoString -sceNpUniversalDataSystemDestroyEvent -sceFaceTrackerGetUserIdByTrackId -sceLncUtilGetLocalProcessStatusList -sceMusicPlayerServiceGetTrackInfo -sceAppInstUtilAppInstallRequestAddcontFromDisc -sceNpManagerIntOnlineId2UserId -sceDevUsbDeleteHostKevent -sceMbusAddHandleWithModuleId -sceVorbisDecReadFilter -sceHmdInternal3dAudioOpen -sceNetConfigAddRouteWithInterface -sceRudpGetContextStatus -sceNpServiceCheckerIntGetAvailability -sceNpManagerIntAddOnlineIdChangeCallback -sceSystemServiceLaunchTournamentsTeamProfile -sceNetCtlRegisterCallbackForNpToolkit -sceFsISSchedStatThread -sceKernelGetExecutableModuleHandle -sceNpScoreGetRankingByAccountIdPcId -sceVideodec2Reset -sceGnmSqttSetCuPerfMask -sceAvControlSet2dVrMode -sceDataTransferRequestStartFgTransfer -sceNpLookupDeleteRequest -ScePsmMonoTerm -scePerfTraceUpdate -sceBgftServiceIntPlayGoGetDiscIniChunksInstallProgress -sceCesSJisCodeToJisX0213 -sceUserServiceGetVolumeForDs4Speaker -sceUserServiceGetShareStatus2 -sceUserServiceSetFileBrowserSortTitle -sceKernelIccNotifyBootStatus -sceVoiceChatGetChannelMemberActiveChannelMatchingState -ScePsmMonoArraySizeInBytes -sceNetCtlGetScanInfoBssidForSsidListScanIpcInt -sceKernelStreamWriteDeactivate -sceNpTusAddAndGetVariableA -sceSystemGestureUpdateAllTouchRecognizer -sceAudiodecRegisterCodec -sceDataTransferTargetRequestReboot -scePktMgrSetUlpResPayload -sceFontOutlineVertexesInterfaceInit -sceUserServiceSetGlsCommunityId -sceFsWsCreate -sceCameraIsConfigChangeDone -sceRegMgrSrvGetQAFforReg -sceMbusInit -sceKernelClockGetres -sceAgcGetRegisterDefaults2Internal -sceNpGriefReportWriteReportItem -sceKernelGetBasicProductShape -sceImeVshConfirmPreedit -sceSrcUtilityGetHandleSize -sceNpTrophyGetGroupInfo -sceMsgDialogProgressBarSetValue -sceNpTusGetMultiSlotVariableForCrossSaveVUser -sceNpManagerIntTemporarySignout -sceNpMatching2SignalingGetPingInfo -sceVnaStartKeywordDetection -sceUserServiceSetEventCalendarType -sceNpHeapDestroy -sceImeForTestFunction -sceNpTrophy2UnregisterUnlockCallback -sceShareUtilityAdvanceQueryServiceInfo -sceAudioOutSetMixLevelPadSpk -sceUserServiceSetGlsCameraPosition -sceSystemServiceLaunchEventDetails -sceVoiceVADPVTAdjustment -sceNpManagerIntLoginGetOnlineId -sceKernelIccGetPowerUpCause -sceNpAsmClientGetServiceBaseUrlWithNpTitleIdA -sceGnmSqttGetHiWater -sceVideoCoreAddStream -sceHttpDestroyEpoll -sceLoginMgrServerDialogGetAppId -sceAudioOutExGetSystemInfo -sceBluetoothHidDisconnectDevice -sceNpAsmClientInitialize -scePthreadCondattrDestroy -sceKeyboardInit -sceNpServiceCheckerIntAbortRequest -sceTextToSpeechSpeakImpl -sceFiosClearTimeStamps -sceHmdReprojectionStartCompoundEye -sceFontGraphicsRegionInitRoundish -sceShareUtilityAdvanceWakeUpShareMenuDefault -sceVideoCoreGetThumbnail2 -sceSlimglCompositorFlushWithRepeat -sceRazorCpuTagArray -sceKernelGetForceUpdateModeForRcmgr -scePssKeyboardReadState -sceCesUtf16beToEucCn -sceCameraSetExposureGain -sceUserServiceSetGlsLanguageFilter -sceAudioOut2LoPortCreate -sceHmdInternalAnotherScreenGetFadeState -sceAgcSetCxRegIndirectPatchSetNumRegisters -sceFontMemoryInit -sceSaveDataSyncSaveDataMemory -sceKernelOpenEport -sceDebugGetJobManagerSequenceInfo -sceFiosFileWriteSync -sceHmd2ReprojectionDisableVrMode -_sceLibcFinalize -sceNpTusChangeModeForOtherSaveDataOwners -sceNpWebApiUnregisterNotificationCallback -sceClHttpCreateTemplate -sceLoginMgrServerSetMorpheusRequiredUserId -sceApplicationGetCanvasHandle -sceAmprAmmGetVirtualAddressRanges -sceAudioPropagationSourceDestroy -sceErrorDialogOpenWithReport -sceNpProfileDialogClose -sceSystemStateMgrGetTriggerCode -sceNetGetDns6Info -sceVdecCoreCreateDecoder -sceUserServiceGetAgeLevel -sceFontGetRenderEffectWeight -sceMbusDebugStartApplication -sceCameraSetVideoSync -sceMbusSetAutoLoginMode -sceUltGetConditionVariableInfo -sceImeDialogGetPanelSize -sceMbusGetDeviceInfoByBusId -sceAgcCbReleaseMem -sceNpTusGetFriendsVariableAAsync -_sceNpManagerDefaultMallocImpl -_sceNpHeapRealloc -sceShellCoreUtilChangeRunLevel -pthread_attr_init -sceUserServiceRegisterEventCallback -sceNpSessionSignalingManualUdpAbortConnection -sceNpMatching2SignalingSetPort -sceWorkspaceGetPendingUpdateEntries -sceNetRecvmsg -sceAvPlayerCurrentTime -sceLncUtilLoadExec -scePlayGoDialogGetResult -sceMbusConvertToLocalDeviceId2 -sceFontWritingLineWritesOrder -sceCameraAudioReset -sceNpMatching2GetLobbyInfoList -sceAppInstUtilInstall -sceClHttpCreateEpoll -ScePsmMonoArrayElementType -sceVisionManagerOpen -sceKernelLoadStartModule -sceKernelCallIndirectBuffer3 -sceNetCtlGetNatInfoIpcInt +sceAvSettingGetHdcpStatus +sceAvSettingGetHdmiConnectDisconnectNum +sceAvSettingGetHdmiKsvList +sceAvSettingGetHdmiMonitorInfo +sceAvSettingGetHdmiRawEdid +sceAvSettingGetLoopbackBuffer +sceAvSettingGetMorpheusPuStatus +sceAvSettingGetNativeHdmiMonitorInfo +sceAvSettingGetRawHdmiMonitorInfo +sceAvSettingInit +sceAvSettingIsSupportedAudioOutModeByHdmiMonitorInfo +sceAvSettingIsSupportedHdcpVersionByHdmiMonitorInfo +sceAvSettingIsSupportedVideoOutModeByHdmiMonitorInfo +sceAvSettingIsSuspendedProcessOutputModeAvailable +sceAvSettingIsSuspendedProcessOutputModeAvailable2 +sceAvSettingIsVrSupportedByHdmiMonitorInfo2 +sceAvSettingNotifyAudioOutMode +sceAvSettingNotifyDeviceEvent +sceAvSettingNotifyProcessPostResume +sceAvSettingNotifyProcessPostSuspend +sceAvSettingNotifyProcessResume +sceAvSettingNotifyProcessSuspend +sceAvSettingNotifyResponseForSocialScreen +sceAvSettingNotifyUmdEvent +sceAvSettingNotifyVideoOutMode +sceAvSettingOpenLoopbackBuffers +sceAvSettingRemoveCallbacks +sceAvSettingRemoveProcessOutputMode +sceAvSettingSet2dVrMode +sceAvSettingSetAudioOutModeAny +sceAvSettingSetAudioOutModeAny_ +sceAvSettingSetAudioOutModeInvalid +sceAvSettingSetAudioOutModeInvalid_ +sceAvSettingSetAvOutputMode +sceAvSettingSetDispclk +sceAvSettingSetDisplayBlackLevel +sceAvSettingSetHdcpMode +sceAvSettingSetHdcpStatus +sceAvSettingSetHdmiGamutMetadata_ +sceAvSettingSetProcessAttribute +sceAvSettingSetVideoOutModeAny +sceAvSettingSetVideoOutModeAny_ +sceAvSettingSetVideoOutModeInvalid +sceAvSettingSetVideoOutModeInvalid_ sceAvSettingSetVideoOutSource -sceImeBackendBackspaceCharacter -sceKernelAprCtrl -sceImeDialogGetResult -sceRegMgrSrvGetRealMachineType -sceVoicePausePort -sceAvSettingAddCallbacksForSocialScreen -sceSystemServiceDisableMusicPlayer -scePthreadAttrGet -sceNpWebApiCreateContext -sceSystemServiceNavigateToGoHome -sceOpusDecDecodeFloatWithPriorityAndTimeout -sceAgcDriverSysEnableSubmitDone45Exception -pthread_mutex_getspinloops_np -sceAudioPropagationSystemDestroy -sceTsDisableRepresentation -sceShellCoreUtilActivateInit -sceShellCoreUtilGetPsnAccountInfo -sceGameLiveStreamingSetPresetSocialFeedbackCommandsDescription -sceUserServiceGetThemeEntitlementId -sceAmprMeasureCommandSizeWriteAddressFromTimeCounterOnCompletion -sceAppInstUtilAppConvertAppDownloadToDisc -scePigletAllocateSystemMemory -sceDebugGetEventListForEQueueFd -sceMouseRead -sceAvPlayerAddSourceEx -sceNetCtlEnableBandwidthManagementIpcInt -sceFontGraphicsSurfaceSetTargetView -sceKernelInternalMapDirectMemory -sceNpManagerIntLoginGet2svInfo -sceAgcAcbSetMarker -sceUltGetMutexInfo -sceNpTrophySystemUnregisterTitleUpdateCallback -sceRegMgrSrvGetRegionStr -sceVideoCoreChangeSubtitle -sceAgcDriverGetTraceInitiator -sceMatTagAllocation -sceHttpCacheReadData -pthread_rwlockattr_init -sceMoveTrackerPlayStart -sceAudio3dBedWrite2 -sceNpMemoryHeapGetAllocatorEx -sceVoiceDisableChat -sceSslGetNotAfter -sceNetBandwidthControlGetDataTraffic -sceVdecCoreCreateDecoderSvp -sceShellCoreUtilActivateRecordActivation -sceCompositorInit -sceSaveDataDirNameSearchInternal -sceUserServiceSetGlsSortOrderGame -sceShellCoreUtilSetAppData -_sceLibcMspaceRealloc -sceDataTransferRequestGetUsersPS4 -sceFiosCacheContainsFileRange -sceNpTrophySystemWrapGetTrophyTitleIdsByNpTitleId -sceHmd2ReprojectionSetParam +sceAvSettingSetVideoOutputColorEffect +sceAvSettingSetVrMode +sceAvSettingSimulateProcessOutputModeArbitration_ +sceAvSettingTerm +sceAvSettingWaitCallback +sceBackupRestoreUtilBackupData +sceBackupRestoreUtilCancelBackupData +sceBackupRestoreUtilCancelGetRequiredSize +sceBackupRestoreUtilCancelGetTitles +sceBackupRestoreUtilCancelRestoreData +sceBackupRestoreUtilDeleteBackupData +sceBackupRestoreUtilGetBackupDataInfo +sceBackupRestoreUtilGetBackupParam sceBackupRestoreUtilGetBackupProgress -sceUltUlthreadGetSelf -sceAudioOutSetAllMute -sceFiosFHStatSync -sceNpUtilCmpAccountId -sceMusicFwGetVolume -sceNpDeleteSema -sceNpManagerIntGetAuthorizationCodeWithPsnoUri -sceKernelMunlock -sceRemoteplayApprove -sceNpTusTryAndSetVariableAsync -sceIduUtilGetDiscInfo -sceNpManagerIntLoginCreateAuthenticationTicket -sceRnpsAppMgrTerminate -sceFiosFHSeek -sceKernelBacktraceSelf -sceSpPthreadAttrSetinheritsched -sceAgcDcbJump -sceRemoteplaySetApMode -sceFsInitMountLwfsCompatOpt -sceKernelAioSubmitWriteCommandsMultiple -sceMusicPlayerServiceInitialize2 -scePatchCheckerCancel -sceNetConfigDelArpWithInterface -sceCesSbcToUtf8 -sceGnmSpmSetSpmSelects2 -sceOpusCeltDecGetSize -sceNpUnregisterPlusEventCallback -sceAudioOutMasteringInit -sceKernelIccNvsFlush -sceNpManagerIntGetTitleToken -sceNetDumpDestroy -sceSdmaCopyTiledNonBlocking -sceNpTusGetMultiUserVariableVUserAsync -sceNpManagerIntCreateRequest -sceNgs2PanInit -sceNetConfigWlanAdhocSetWakeOnWlan -sceAudioOut2LoPortGetState -sceCompanionUtilInitialize -sceAgcBranchPatchSetThenTarget -sceImeBackendAllConfirm -sceDataTransferTargetAbortLaunch -sceGnmSubmitAndFlipCommandBuffers -sceNpEntitlementAccessGetAddcontEntitlementInfo -sceRazorCaptureCommandBuffersOnlyImmediate -sceHttpSetSendTimeOut -pthread_attr_setscope -sceKernelIsInSandbox -sceDebugGetGpuInfoArea -sceShareUtilityAdvanceTerminate -sceKernelStreamWriteDelete -sceBgftServiceIntUploadSetStartState +sceBackupRestoreUtilGetRequiredSize +sceBackupRestoreUtilGetRestoreProgress +sceBackupRestoreUtilGetTitles +sceBackupRestoreUtilInitialize +sceBackupRestoreUtilPrepareBackup sceBackupRestoreUtilRestoreData -sceWkFontConfigGetAttr -sceFsUfsLargewriteFsckWithMM -sceIduUtilPauseAllDownloads -scePngEncEncode -sceVnaStopKeyPhraseDetection -scePktMgrGetProtocolNumber -sceAppContentSmallSharedDataGetAvailableSpaceKb -sceRegMgrIsChange -sceHmdInternalSetDebugGpo -sceFsInitMountPprPkgOpt -sceFiosGetGlobalDefaultOpAttr -sceSystemServiceGetAppFocusedAppStatus -sceAudioOutExPtClose -scePadOpen -sceHttpGetCookieStats -sceRnpsAppMgrDestroyUpdateRequest -sceNpPollSema -sceAgcDriverSubmitMultiCommandBuffersDirect -sceAppContentGetPftFlag -sceVdecwrapDeleteDecoder -sceAppContentGetAddcontInfoList -sceLibreSslInitEx2 -sceUserServiceSetNpAccountId -sceNetGetsockopt -scePadSetFeatureReport -sceUsbdFillIsoTransfer -sceFsISSchedResultToPriority -sceMatRealloc -sceUltConditionVariableDestroy -sceUserServiceGetAccessibilityKeyremapEnable -pthread_mutexattr_setgen_np -sceNetCtlGetInfoIpcInt -sceDepth2SetCameraFactoryCalibrationData -sceGameCustomDataDialogInitialize -sceShareUtilityAdvanceValidateContents -sceNpGriefReportGetTicket -sceFiosArchiveMountSync -sceNpTusDeleteMultiSlotDataVUser -sceDataTransferTargetAbortGetUsers -sceNpUniversalDataSystemEventPropertyObjectSetUInt64 -sceFsReserveCluster -sceNpTusGetMultiUserDataStatusVUser -sceNetDhcpdStop -sceCompanionHttpdUnregisterRequestCallback -sceVideoOutSysCursorEnable -sceAudioOutPtOpen -sceKeyboardRead -sceAudioOut2UserCreate -sceSaveDataMount5 -sceNpTusGetDataAAsync -sceUserServiceGetSecureHomeDirectory -sceAudioOut2DebugStateCtrl -sceUserServiceGetUserGroupNum -scePlayReadyLicenseAcqGenerateAck -sceGnmSetWaveLimitMultiplier -sceDebugGetMonoVMInfo -sceNpTusGetMultiSlotVariableAVUserAsync -sceGameLiveStreamingStartGenerateStandbyScreenResource -sceAudioOutSysGetSystemInfo -sceVshctlSetProprietaryChatStatus -sceDevUsbDeleteHostStreamKevent -sceNpTrophy2GetTrophyInfoArray -sceVideoOutGetPortStatusInfo -sceApplicationBlockingKill3 -sceCompositorQuit -sceUserServiceGetCaptureStatus -sceNpWebApiCreatePushEventFilter -sceMoveGetExtensionPortInfo -sceNpScoreGetRankingByRangeAAsync -sceNpIpcGetEvent -sceSpNetResolverCreate -sceUpsrvUpdateCheckDoCheckSystemVersionDown -sceNpEntitlementAccessGetGameTrialsFlag -sceVoiceChatRequestCreateGameSessionVoiceChatChannel -_sceDepthHeadCandidateTrackerGetInformation -sceBgftServiceIntDebugPlayGoGetPlayGoStatusString -sceFsExternalStorageVerifyMetadata -ScePsmMonoIoInstallCallbacks -sceGnmGetPhysicalCounterFromVirtualizedInternal -sceNpPartyShowInvitationListA -sceUserServiceGetPartySettingFlags -sceUserServiceGetPlayTogetherFlags -sceDebugReadEventForTest -sceSystemGestureGetPrimitiveTouchEventByPrimitiveID -ScePsmMonoRuntimeSetShuttingDown -sceValidationGpuGetErrors -sceNpUniversalDataSystemIntRecordArraySetFloat64 -sceUpsrvUpdateDoUpdate -sceDeci4hDrfpSetOption -sceKernelIsStack -sceNpTrophySystemNetSyncTitles -pthread_mutexattr_getprotocol -sceAudio3dSetGpuRenderer -sceSaveDataDialogGetResult -scePadSetVibration -scePlayReadyProfileStop -sceCesMbcsStrToUtf8Str -pthread_kill -sceUserServiceGetEvent -sceNpManagerIntLoginResetSsoToken -sceNpSessionSignalingGetConnectionInfo -sceSaveDataTerminate -sceSysUtilSendAddressingSystemNotificationWithDeviceId -sceUserServiceGetImeAutoCapitalEnabled -sceNpUniversalDataSystemEventPropertyArraySetUInt32 -sceAvPlayerVprintf -sceHmdInternalGetIpdSettingEnableForSystemService -sceShellCoreUtilReportSessionErrorToGaikaiController -sceMatFreeRange -sceShellCoreUtilDeleteDownloadedHidConfigFile -sceKeyboardGetKey2Char -sceSdecGetFrameSwHevc -sceAvControlSetHdcpStatus -scePlayReadyCdmiDestroyMediaKeySystemAccess -scePthreadRwlockattrInit -SceDrfpChkRecvBuf -sceCesRefersUcsProfileKsX1003Tilde0x7e -sceAudioLatencyEstimationRelease -sceCesMbcToUtf16 -sceVencCoreMapTargetMemory -sceCesJisX0208ToSJisCode -sceNpUniversalDataSystemIntCheckNetSyncTitles -sceNpTrophySystemWrapGetTitleDetails -sceFontGraphicsUpdateRotation -sceMbusGetDeviceInfo -sceDataTransferRequestLaunchPS4 -sceKernelPreadv -sceAgcCbSetShRegistersDirectGetSize -sceLncUtilGetEventForDaemon -ScePsmMonoDisableJitTimeLog -sceDevUsbIsHostConnected -sceBgftServiceIntDebugPlayGoRevertToFullState -sceCompositorSetLocalStallCommand -sceNpTusGetDataA -sceNpManagerIntLoginGetUserId -sceNpAsmClientGetAppId -sceUserServiceGetGlsBcTitle -sceNpManagerIntClearParentalControlInfoSubAccount -sceNpTrophySystemDebugUnlockTrophy -sceFsUmountTrophyData -sceUserServiceGetParentalMorpheus -sceClKernelWaitEventFlag -sceDebugIpmiGetChannelInfo -sceAppInstUtilGetDataDiscCopyProgress -sceCustomMusicAudioOutGetVolume -sceBgftServiceIntDebugDownloadRequest -sceNetConfigSetDefaultScope -scePadSetShareButtonMaskForRemotePlay -sceGnmDrawInitDefaultHardwareState350 -sceDebugIpmiGetSessionKidList -sceGameLiveStreamingSetPresetSocialFeedbackCommands -sceFontRendererSetOutlineBufferPolicy -sceGameLiveStreamingGetSocialFeedbackMessagesCount -sceKernelSuspendSystem -sceRegMgrLogPull -sceCameraSetAutoExposureGain -sceSblRcMgrIsAllowLimitedUiInspector -sceHttpCacheSetQuota -sceUserServiceGetEventSortEvent -sceGnmUnregisterAllResourcesForOwner -sceNpUniversalDataSystemIntRecordObjectSetBinary -sceAgcDcbSetBoolPredicationEnableGetSize -sceRemoteplayNotifyUserDelete -sceAudioOut2LoPortSetAttributes -scePlayReadyBufferMalloc -sceHttpSetRecvTimeOut -sceNpTusGetFriendsDataStatusA -_sceLibcMallocStatsFast -sceCompanionHttpdInitialize +sceBackupRestoreUtilTerminate +sceBdSchedCancelBackgroundCopyRequest +sceBdSchedCancelPrioritizedBackgroundCopyRequest +sceBdSchedConfigure sceBdSchedConfigure2 -sceSaveDataChangeDatabase -sceHmdReprojectionDebugGetLastInfoMultilayer -sceTextToSpeechCloseImpl -sceSysmoduleIsLoadedInternal -sceHmdInternalGetPuRevision -sceFontGetEffectSlant -sceClHttpDestroyEpoll -sceNpTusSetMultiSlotVariableAAsync -sceAgcDcbDrawIndexIndirectMulti -sceSystemStateMgrTickMusicPlayback -sceMbusDebugResumeApplication -sceCompositorMemoryPoolDecommit -sceDebugSpawnApplication -sceRnpsAppMgrGetEventForShellUI -sceNpManagerIntLoginGetEmail -sceShellUIUtilTerminate -sceNpManagerIntGetVshTokenNB -sceSpNetPoolDestroy -sceNetCtlApDialogUpdateStatus -sceUsbdWaitForEvent -sceOpusDecDecodeCancelForTimeout -sceGameLiveStreamingLaunchLiveViewer -sceScreenShotDisableNotification -sceNpSessionSignalingInitialize -sceSystemServiceActivateHevcSoftInit -pthread_rwlock_init -sceHttpGetResponseContentLength -sceGnmSubmitDone -sceNpThreadGetId -sceApplicationGetShellCoreAppId -scePsmMountDirectoryEx -scePthreadSuspend -sceNpScoreSetThreadParam -sceShellCoreUtilShowErrorDialogWithParam -sceFiosArchiveUnmountSync -sceRudpPollCancel -scePadSetUserColor -sceDebugGetProcessTime -sceNpManagerIntSigninByJsonUserInfo -sceHmdTerminate -sceVnaOpenTtsStream -sceUserServiceGetPbtcThursdayDuration -sceUserServiceSetIPDRight -sceFontGraphicsAgcDrawupFillTexturePattern -sceHmd2ReprojectionClearUserEventStart -sceDebugGetProcessCoredumpHandlerResult -sceHmdReprojectionQueryGarlicBuffSize -sceDebugIpmiGetEncryptedInfoAllForCoredump -sceFiosPrintf -sceSaveDataBackup -sceNpRemotePlaySessionSignalingTerminate -sceUserServiceSetVoiceRecognitionLastUsedOsk -sceAgcSetShRegIndirectPatchAddRegisters -sceM4aacEncDeleteEncoder -sceUpsrvUpdateDoUpdateWithPupInfo -sceLoginMgrServerGetSharePlayAllowPadOperation -sceDepthEnableExtendedMode -sceApplicationCrashSyscore -_sceNpFree -sceOpusCeltDecCreateEx -sceUpsrvTerminate -sceCesUtf32beToGb -sceNpTrophy2SystemGetTrpIconByUri -sceCesJisX0213ToSJisCode -sceOpusCeltDecCreate -sceNpTrophySystemBuildGroupIconUri -sceAppContentGetAddcontInfoByEntitlementId -sceMusicFwSendMessageSynchronously -sceNpTusGetMultiUserVariableVUser -sceUserServiceGetGlsCameraSize -sceFontGraphicsSetupGlyphFillPlot -sceNpMatching2CreateJoinRoom -sceSdmaConstantFillNonBlocking -sceNpTusDeleteMultiSlotDataVUserAsync -sceNpTrophyConfigGetTrophyGroupArray -sceNpWebApiDeletePushEventFilter -sceKernelDebugRaiseExceptionOnReleaseMode -sceDepthSetSrTnrParameter -sceSharePlayStopStandby -sceNpIdMapperOnlineIdToAccountId -sceKernelIccGetThermalAlert -sceFiosFileGetSizeSync -scePadShareOutputData -sceNpSignalingGetPeerNetInfo -sceCesUhcToUtf32be -pthread_attr_destroy -sceImeCheckRemoteEventParam -sceNpAsmClientClearNpTitleTokenA -sceUsbStorageDialogGetStatus -sceCameraSetAutoWhiteBalance -sceVideoOutSetBlankAfterResume -sceFiosCachePrefetchFHSync -sceNetSocketAbort -sceHttpsDisableOptionPrivate -sceClPthreadMutexattrSetprioceiling -sceOpusCeltDecDecodeFloat -sceNpScoreGetGameData -sceKernelIccGetBDPowerState -scePthreadGetconcurrency -sceDebugIpmiGetSessionKidListByServerKid -sceSaveDataShutdownStart -sceFontCharacterGetTextFontCode -sceFaceTrackerGetWorkingMemorySize -sceHttpRemoveRequestHeader -sceNpLwCondDestroy -sceHeadTrackerGetNumberOfRunningInstance -sceUserServiceGetPadSpeakerVolume -sceCesUtf32ToMbc -sceRtcGetCurrentNetworkTick -sceAvControlSetDispclk -sceAgcDriverCreateQueue -sceCesEucJpToUtf8 -sceNpPartyUnregisterPrivateHandler -sceUserServiceGetGlsInitSpectating -scePerfTraceSpmDelete -sceShellCoreUtilGetPsStoreIconState -sceNpSnsIntTest -sceNpScoreRecordScore -scePs2EmuMenuDialogClose -sceVideoOutRazorRemoveCallback -sceNpFriendListDialogOpen -sceAppInstUtilAppIsInInstalling -sceNpLookupNetInit -_sceNpAllocatorStrndupImpl -sceNpWebApi2IntInitialize -sceHttpsUnloadCert -sceNpManagerIntLoginValidateKratosAuthCode -sceSslConnect -sceIduUtilGetDownloadState -sceFontDestroyGraphicsService -sceHmdGet2dVrCommand +sceBdSchedDeconfigure +sceBdSchedGetBackgroundCopyRequest +sceBdSchedGetExtentMap +sceBdSchedGetPrioritizedBackgroundCopyRequest +sceBdSchedGetState +sceBdSchedSetBackgroundCopyRequest +sceBdSchedSetDiscIdentity +sceBdSchedSetPrioritizedBackgroundCopyRequest +sceBdSchedStartGame +sceBdSchedStartRipping +sceBdSchedStopScheduling +sceBgftServiceDownloadFindActivePatchTask +sceBgftServiceDownloadFindActivePupTask +sceBgftServiceDownloadFindTaskByContentId +sceBgftServiceDownloadGetProgress +sceBgftServiceDownloadPauseTask +sceBgftServiceDownloadPauseTaskAll +sceBgftServiceDownloadQueryTask +sceBgftServiceDownloadRegisterTask +sceBgftServiceDownloadRegisterTaskByStorage sceBgftServiceDownloadResumeTask -sceVoiceChatRequestDeletePlayerSessionVoiceChatChannel -sceApplicationCrashSystemProcess -sceShellCoreUtilSetGpuLoadEmulationModeByAppId -sceFontGraphicsExchangeResource -sceVrSetupDialogTerminate -sceHttp2SetCookieRecvCallback -sceSystemStateMgrGetCurrentState -sceFiosPathncmp -sceAppInstUtilAppGetAddcontNum -scePerfPmcOpen -sceAgcDcbRewind -sceAgcDcbQueueEndOfShaderActionGetSize -sceVideoOutIsFlipPending -sceNpManagerIntRemoveSigninStateCallback -sceImeGetPanelSize -sceAgcRewindPatchSetRewindState -sceNetApctlGetInfo -sceSdecQueryMemorySw -sceDeci4hDrfpChstat_chmod_fuse -sceCustomMusicCoreBgmSetAudioVolume -sceNpWebApiCreateContextA -sceNetResolverStartNtoa6 -sceCesUtf32leToEucCn -sceKernelSendNotificationRequest -sceSystemServiceTickVideoPlayback -sceNpUniversalDataSystemIntDeleteAllRecord -sceAgcDriverUserDataWriteSetMarker -sceCesUtf16StrGetIso2022Len -sceNpGriefReportReadGroupMessageFile -_sceUltUlthreadCreate -sceApplicationSpawn2 -scePadGetTriggerEffectState -sceUlpMgrVshGetStatCmd -sceNpPartyRegisterPrivateHandler -sceContentDeleteInitialize -sceCesRefersUcsProfileCp864 -sceNpWebApi2AbortRequest -sceUserServiceSetSaveDataTutorialFlag -sceSystemServiceGetParentSocketForJvm -sceDataTransferTargetAbortBindSavedata -sceCameraGetHue -sceClSslGetSerialNumber -sceVisionManagerGenerateRegisterUserDataFinalize -sceUserServiceGetImeInputType -sceApplicationKickCoredump2 -sceAudiodReportMasteringGetParams -sceUserServiceSetKeyRepeatSpeed -sceUserServiceGetEventCalendarType -sceUserServiceGetShareButtonAssign -sceKernelGetAppInfoByAppId -sceNpTrophy2SystemGetTrophyGroupConf -sceSpPthreadSetprio +sceBgftServiceDownloadResumeTaskAll +sceBgftServiceDownloadStartTask +sceBgftServiceDownloadStartTaskAll +sceBgftServiceDownloadStopTask +sceBgftServiceDownloadStopTaskAll +sceBgftServiceInit +sceBgftServiceIntAbortNotificationEvent +sceBgftServiceIntDebugDownloadCorruptPkg +sceBgftServiceIntDebugDownloadRegisterPkg +sceBgftServiceIntDebugDownloadRequest +sceBgftServiceIntDebugPlayGoClearSetFreeZone +sceBgftServiceIntDebugPlayGoGetPlayGoStatusString +sceBgftServiceIntDebugPlayGoIsPaused +sceBgftServiceIntDebugPlayGoIsSetFreeZone +sceBgftServiceIntDebugPlayGoResume +sceBgftServiceIntDebugPlayGoRevertToFullState +sceBgftServiceIntDebugPlayGoRevertToInitialState +sceBgftServiceIntDebugPlayGoRevertToSnapshot +sceBgftServiceIntDebugPlayGoSetFreeZone +sceBgftServiceIntDebugPlayGoSnapshotByTitleId +sceBgftServiceIntDebugPlayGoSuspend +sceBgftServiceIntDownloadCheckPatchUpdateState +sceBgftServiceIntDownloadClearStats +sceBgftServiceIntDownloadDebugDeleteBgftEnvFile +sceBgftServiceIntDownloadDebugDownloadBgftEnvFile +sceBgftServiceIntDownloadDebugGetBgftEnvInfoString +sceBgftServiceIntDownloadDebugGetStat +sceBgftServiceIntDownloadFindActiveGameAndGameAcTask +sceBgftServiceIntDownloadFindActiveTask +sceBgftServiceIntDownloadGetApplicationDataSize +sceBgftServiceIntDownloadGetExtUsbUserStorageSize +sceBgftServiceIntDownloadGetGameAndGameAcProgress +sceBgftServiceIntDownloadGetPatchGoProgress +sceBgftServiceIntDownloadGetPatchProgress +sceBgftServiceIntDownloadGetPlayGoProgress +sceBgftServiceIntDownloadGetProgress +sceBgftServiceIntDownloadGetTaskInfo +sceBgftServiceIntDownloadGetUserStorageSize +sceBgftServiceIntDownloadHideTask +sceBgftServiceIntDownloadPauseTask +sceBgftServiceIntDownloadPauseTaskAll +sceBgftServiceIntDownloadQueryTask +sceBgftServiceIntDownloadQueryTaskSection +sceBgftServiceIntDownloadRegisterTask +sceBgftServiceIntDownloadRegisterTaskByStorage +sceBgftServiceIntDownloadRegisterTaskByStorageEx +sceBgftServiceIntDownloadRegisterTaskStore +sceBgftServiceIntDownloadReregisterTaskPatch +sceBgftServiceIntDownloadRestartTask +sceBgftServiceIntDownloadResumeTask +sceBgftServiceIntDownloadResumeTaskAll +sceBgftServiceIntDownloadSetHighPriority +sceBgftServiceIntDownloadSetResumeState +sceBgftServiceIntDownloadSetStartState +sceBgftServiceIntDownloadStartTask +sceBgftServiceIntDownloadStartTaskAll +sceBgftServiceIntDownloadStopTask +sceBgftServiceIntDownloadStopTaskAll +sceBgftServiceIntDownloadUnregisterTask +sceBgftServiceIntDownloadUnregisterTaskAll +sceBgftServiceIntExtUsbCheckActiveDownloadTasks +sceBgftServiceIntGetNotificationEvent +sceBgftServiceIntGetNotificationParam +sceBgftServiceIntGetTaskInfoValueInt +sceBgftServiceIntGetTaskInfoValueString +sceBgftServiceIntGetTaskInfoValueStringIndex +sceBgftServiceIntInit +sceBgftServiceIntPatchGoGetProgress +sceBgftServiceIntPatchGoGetState +sceBgftServiceIntPlayGoCheckDiscIniChunksInstall +sceBgftServiceIntPlayGoFindTaskId +sceBgftServiceIntPlayGoGetApplicationIniChunkSize +sceBgftServiceIntPlayGoGetDiscIniChunksInstallProgress +sceBgftServiceIntPlayGoGetDownloadTaskId +sceBgftServiceIntPlayGoIsPaused +sceBgftServiceIntPlayGoResume +sceBgftServiceIntPlayGoStartDataDiscInstall +sceBgftServiceIntSetBandwidthPriority +sceBgftServiceIntSetTaskVisible +sceBgftServiceIntTerm +sceBgftServiceIntUploadGetAvailableTaskCount +sceBgftServiceIntUploadGetProgress +sceBgftServiceIntUploadGetTaskInfo +sceBgftServiceIntUploadHideTask +sceBgftServiceIntUploadQueryTask +sceBgftServiceIntUploadQueryTaskSection +sceBgftServiceIntUploadRegisterTask +sceBgftServiceIntUploadRestartTask +sceBgftServiceIntUploadSetHighPriority +sceBgftServiceIntUploadSetStartState +sceBgftServiceIntUploadSetUploadError +sceBgftServiceIntUploadStartTask +sceBgftServiceIntUploadStartTaskAll +sceBgftServiceIntUploadStopTask +sceBgftServiceIntUploadStopTaskAll +sceBgftServiceIntUploadUnregisterTask +sceBgftServiceIntUploadUnregisterTaskAll +sceBgftServiceSyncCall +sceBgftServiceTerm +sceBluetoothHidDebugGetVersion +sceBluetoothHidDisconnectDevice +sceBluetoothHidGetDeviceInfo +sceBluetoothHidGetDeviceName +sceBluetoothHidGetFeatureReport +sceBluetoothHidGetInputReport +sceBluetoothHidGetReportDescriptor +sceBluetoothHidInit +sceBluetoothHidInterruptOutput +sceBluetoothHidParamInitialize +sceBluetoothHidRegisterCallback +sceBluetoothHidRegisterDevice +sceBluetoothHidSetFeatureReport +sceBluetoothHidSetOutputReport +sceBluetoothHidThreadParamInitialize +sceBluetoothHidUnregisterCallback +sceBluetoothHidUnregisterDevice +sceBufferAlloc +sceBufferDup +sceBufferFree +sceBufferInit +sceBufferRealloc +sceCamera2Close +sceCamera2Finalize +sceCamera2GetAttribute +sceCamera2GetAutoExposureGain +sceCamera2GetAutoWhiteBalance +sceCamera2GetCalibrationData +sceCamera2GetConfig +sceCamera2GetContrast +sceCamera2GetExposureGain +sceCamera2GetFieldOfView +sceCamera2GetFrameData +sceCamera2GetGamma +sceCamera2GetHue +sceCamera2GetSaturation +sceCamera2GetSharpness +sceCamera2GetWhiteBalance +sceCamera2Initialize +sceCamera2IsAttached +sceCamera2IsValidFrameData +sceCamera2Open +sceCamera2SetAttribute +sceCamera2SetAutoExposureGain +sceCamera2SetAutoWhiteBalance +sceCamera2SetConfig +sceCamera2SetContrast +sceCamera2SetExposureGain +sceCamera2SetGamma +sceCamera2SetHue +sceCamera2SetSaturation +sceCamera2SetSharpness +sceCamera2SetVideoSync +sceCamera2SetWhiteBalance +sceCamera2Start +sceCamera2Stop +sceCameraAccGetData +sceCameraAudioClose +sceCameraAudioGetData +sceCameraAudioGetData2 +sceCameraAudioOpen +sceCameraAudioReset +sceCameraChangeAppModuleState +sceCameraClose sceCameraCloseByHandle -sceUlpMgrReqSuspend -sceMoveResetLightSphere -sceVrTrackerGetPlayAreaWarningInfo -sceNetResolverStartAton6 -sceRazorCpuPushMarker -sceMoveTrackerRecordStart -sceGnmSubmitCommandBuffers -sceVdecCoreQueryComputeResourceInfo -scePlayReadyReaderClose +sceCameraDeviceOpen +sceCameraGetAttribute +sceCameraGetAutoExposureGain +sceCameraGetAutoWhiteBalance +sceCameraGetCalibData +sceCameraGetCalibDataForEve +sceCameraGetCalibDataFromDevice +sceCameraGetCalibDataFromDeviceForEve +sceCameraGetCalibrationData +sceCameraGetConfig +sceCameraGetConnectedDeviceAndDriverMode +sceCameraGetContrast +sceCameraGetDefectivePixelCancellation +sceCameraGetDeviceConfig +sceCameraGetDeviceConfigWithoutHandle +sceCameraGetDeviceID +sceCameraGetDeviceIDWithoutOpen +sceCameraGetDeviceInfo +sceCameraGetExposureGain +sceCameraGetFrameData +sceCameraGetGamma +sceCameraGetHue +sceCameraGetLensCorrection +sceCameraGetMmapConnectedCount +sceCameraGetProductInfo +sceCameraGetRegister +sceCameraGetRegistryInfo +sceCameraGetSaturation +sceCameraGetSharpness +sceCameraGetVrCaptureInfo +sceCameraGetWhiteBalance +sceCameraInitializeRegistryCalibData +sceCameraIsAttached +sceCameraIsConfigChangeDone +sceCameraIsConnectedForSystem +sceCameraIsValidFrameData +sceCameraOpen +sceCameraOpenByModuleId +sceCameraRemoveAppModuleFocus +sceCameraSetAppModuleFocus +sceCameraSetAttribute +sceCameraSetAttributeInternal +sceCameraSetAutoExposureGain +sceCameraSetAutoWhiteBalance +sceCameraSetCalibData +sceCameraSetCalibDataForEve +sceCameraSetConfig +sceCameraSetConfigInternal +sceCameraSetContrast +sceCameraSetDebugStop +sceCameraSetDefectivePixelCancellation +sceCameraSetDefectivePixelCancellationInternal +sceCameraSetExposureGain +sceCameraSetForceActivate +sceCameraSetGamma +sceCameraSetHue +sceCameraSetLensCorrection +sceCameraSetLensCorrectionInternal +sceCameraSetProcessFocus +sceCameraSetProcessFocusByHandle +sceCameraSetRegister +sceCameraSetSaturation +sceCameraSetSharpness +sceCameraSetTrackerMode +sceCameraSetUacModeInternal +sceCameraSetVideoSync +sceCameraSetVideoSyncInternal +sceCameraSetWhiteBalance +sceCameraStart +sceCameraStartByHandle +sceCameraStop +sceCameraStopByHandle +sceCameraWaitForEveReady +sceCameraWaitForLukeReady +sceCesBig5ToUcs2 +sceCesBig5ToUtf16 +sceCesBig5ToUtf16be +sceCesBig5ToUtf16le +sceCesBig5ToUtf32 +sceCesBig5ToUtf32be +sceCesBig5ToUtf32le +sceCesBig5ToUtf8 +sceCesEucCnToUcs2 +sceCesEucCnToUtf16 +sceCesEucCnToUtf16be +sceCesEucCnToUtf16le +sceCesEucCnToUtf32 +sceCesEucCnToUtf32be +sceCesEucCnToUtf32le +sceCesEucCnToUtf8 +sceCesEucCnUcsProfileSetSbcs +sceCesEucJpToUcs2 +sceCesEucJpToUtf16 +sceCesEucJpToUtf16be +sceCesEucJpToUtf16le +sceCesEucJpToUtf32 +sceCesEucJpToUtf32be +sceCesEucJpToUtf32le +sceCesEucJpToUtf8 +sceCesEucJpUcsProfileSetSbcs +sceCesEucKrToUcs2 +sceCesEucKrToUtf16 +sceCesEucKrToUtf16be +sceCesEucKrToUtf16le +sceCesEucKrToUtf32 +sceCesEucKrToUtf32be +sceCesEucKrToUtf32le +sceCesEucKrToUtf8 +sceCesEucKrUcsProfileSetSbcs +sceCesGbToUcs2 +sceCesGbToUtf16 +sceCesGbToUtf16be +sceCesGbToUtf16le +sceCesGbToUtf32 +sceCesGbToUtf32be +sceCesGbToUtf32le +sceCesGbToUtf8 +sceCesGbUcsProfileSet4ByteCharRange +sceCesGbUcsProfileSetSbcs +sceCesGbUcsProfileSetUdaMapping +sceCesIso2022JpUcsProfileSetSbcs +sceCesIso2022StrGetUcs2Len +sceCesIso2022StrGetUtf16Len +sceCesIso2022StrGetUtf32Len +sceCesIso2022StrGetUtf8Len +sceCesIso2022StrToUcs2Str +sceCesIso2022StrToUtf16Str +sceCesIso2022StrToUtf32Str +sceCesIso2022StrToUtf8Str +sceCesIso2022UcsContextInit +sceCesIso2022UcsContextInitCopy +sceCesJisGetLevel +sceCesJisX0208ToSJisCode +sceCesJisX0213ToSJisCode +sceCesJiscsToUcs +sceCesMbcToUcs2 +sceCesMbcToUtf16 +sceCesMbcToUtf16be +sceCesMbcToUtf16le +sceCesMbcToUtf32 +sceCesMbcToUtf32be +sceCesMbcToUtf32le +sceCesMbcToUtf8 +sceCesMbcsStrGetUcs2Len +sceCesMbcsStrGetUtf16Len +sceCesMbcsStrGetUtf32Len +sceCesMbcsStrGetUtf8Len +sceCesMbcsStrToUcs2Str +sceCesMbcsStrToUtf16Str +sceCesMbcsStrToUtf32Str +sceCesMbcsStrToUtf8Str +sceCesMbcsUcsContextInit +sceCesMbcsUcsContextInitCopy +sceCesMbcsUcsSetMbcsReplacementCharCode +sceCesMbcsUcsSetMbcsReplacementCharUCode +sceCesRefersUcsProfileAscii +sceCesRefersUcsProfileAsciiWithKatakana +sceCesRefersUcsProfileBs4730 +sceCesRefersUcsProfileCp1250 +sceCesRefersUcsProfileCp1251 +sceCesRefersUcsProfileCp1252 +sceCesRefersUcsProfileCp1253 +sceCesRefersUcsProfileCp1254 +sceCesRefersUcsProfileCp1255 +sceCesRefersUcsProfileCp1256 +sceCesRefersUcsProfileCp1257 +sceCesRefersUcsProfileCp1258 +sceCesRefersUcsProfileCp437 +sceCesRefersUcsProfileCp737 +sceCesRefersUcsProfileCp775 +sceCesRefersUcsProfileCp850 +sceCesRefersUcsProfileCp852 +sceCesRefersUcsProfileCp855 +sceCesRefersUcsProfileCp857 +sceCesRefersUcsProfileCp858 +sceCesRefersUcsProfileCp860 +sceCesRefersUcsProfileCp861 +sceCesRefersUcsProfileCp862 +sceCesRefersUcsProfileCp863 +sceCesRefersUcsProfileCp864 +sceCesRefersUcsProfileCp865 +sceCesRefersUcsProfileCp866 +sceCesRefersUcsProfileCp869 +sceCesRefersUcsProfileCp874 +sceCesRefersUcsProfileGbT1988 +sceCesRefersUcsProfileGbT1988Tilde0x7e +sceCesRefersUcsProfileIso8859_1 +sceCesRefersUcsProfileIso8859_10 +sceCesRefersUcsProfileIso8859_11 +sceCesRefersUcsProfileIso8859_13 +sceCesRefersUcsProfileIso8859_14 +sceCesRefersUcsProfileIso8859_15 +sceCesRefersUcsProfileIso8859_16 +sceCesRefersUcsProfileIso8859_2 +sceCesRefersUcsProfileIso8859_3 +sceCesRefersUcsProfileIso8859_4 +sceCesRefersUcsProfileIso8859_5 +sceCesRefersUcsProfileIso8859_6 +sceCesRefersUcsProfileIso8859_7 +sceCesRefersUcsProfileIso8859_8 +sceCesRefersUcsProfileIso8859_9 +sceCesRefersUcsProfileJisX0201 +sceCesRefersUcsProfileJisX0201Katakana +sceCesRefersUcsProfileJisX0201Roman +sceCesRefersUcsProfileJisX0201RomanTilde0x7e +sceCesRefersUcsProfileJisX0201Tilde0x7e +sceCesRefersUcsProfileKoi8R +sceCesRefersUcsProfileKoi8U +sceCesRefersUcsProfileKsX1003 +sceCesRefersUcsProfileKsX1003Tilde0x7e +sceCesSJisCodeToJisX0208 +sceCesSJisCodeToJisX0213 +sceCesSJisGetCode +sceCesSJisPutCode +sceCesSJisToUcs2 +sceCesSJisToUtf16 +sceCesSJisToUtf16be +sceCesSJisToUtf16le +sceCesSJisToUtf32 +sceCesSJisToUtf32be +sceCesSJisToUtf32le +sceCesSJisToUtf8 +sceCesSJisUcsProfileSetSbcs +sceCesSbcToUcs2 +sceCesSbcToUtf16 +sceCesSbcToUtf16be +sceCesSbcToUtf16le +sceCesSbcToUtf32 +sceCesSbcToUtf32be +sceCesSbcToUtf32le +sceCesSbcToUtf8 +sceCesUcs2StrGetIso2022Len +sceCesUcs2StrGetMbcsLen +sceCesUcs2StrToIso2022Str +sceCesUcs2StrToMbcsStr +sceCesUcs2ToBig5 +sceCesUcs2ToEucCn +sceCesUcs2ToEucJp +sceCesUcs2ToEucKr +sceCesUcs2ToGb +sceCesUcs2ToMbc +sceCesUcs2ToSJis +sceCesUcs2ToSbc +sceCesUcs2ToUhc +sceCesUcsProfileInitBig5Cp950 +sceCesUcsProfileInitEucCnGb2312 +sceCesUcsProfileInitEucJis2004 +sceCesUcsProfileInitEucJpCp51932 +sceCesUcsProfileInitEucJpX0208 +sceCesUcsProfileInitEucJpX0208Ss2 +sceCesUcsProfileInitEucJpX0208Ss2Ss3 +sceCesUcsProfileInitEucKr +sceCesUcsProfileInitGb18030_2000 +sceCesUcsProfileInitGb18030_2005 +sceCesUcsProfileInitGbkCp936 +sceCesUcsProfileInitIso2022JpCp50221 +sceCesUcsProfileInitIso2022JpCp50222 +sceCesUcsProfileInitIso2022JpRfc1468 +sceCesUcsProfileInitSJis1997Cp932 +sceCesUcsProfileInitSJis1997X0208 +sceCesUcsProfileInitSJis2004X0213 +sceCesUcsProfileInitUhc +sceCesUcsToJiscs +sceCesUhcToUcs2 +sceCesUhcToUtf16 +sceCesUhcToUtf16be +sceCesUhcToUtf16le +sceCesUhcToUtf32 +sceCesUhcToUtf32be +sceCesUhcToUtf32le +sceCesUhcToUtf8 +sceCesUhcUcsProfileSetSbcs +sceCesUtf16StrGetIso2022Len +sceCesUtf16StrGetMbcsLen +sceCesUtf16StrToIso2022Str +sceCesUtf16StrToMbcsStr +sceCesUtf16ToBig5 +sceCesUtf16ToEucCn +sceCesUtf16ToEucJp +sceCesUtf16ToEucKr +sceCesUtf16ToGb +sceCesUtf16ToMbc +sceCesUtf16ToSJis +sceCesUtf16ToSbc +sceCesUtf16ToUhc +sceCesUtf16beToBig5 +sceCesUtf16beToEucCn +sceCesUtf16beToEucJp +sceCesUtf16beToEucKr +sceCesUtf16beToGb +sceCesUtf16beToMbc +sceCesUtf16beToSJis +sceCesUtf16beToSbc +sceCesUtf16beToUhc +sceCesUtf16leToBig5 +sceCesUtf16leToEucCn +sceCesUtf16leToEucJp +sceCesUtf16leToEucKr +sceCesUtf16leToGb +sceCesUtf16leToMbc +sceCesUtf16leToSJis +sceCesUtf16leToSbc +sceCesUtf16leToUhc +sceCesUtf32StrGetIso2022Len +sceCesUtf32StrGetMbcsLen +sceCesUtf32StrToIso2022Str +sceCesUtf32StrToMbcsStr +sceCesUtf32ToBig5 +sceCesUtf32ToEucCn +sceCesUtf32ToEucJp +sceCesUtf32ToEucKr +sceCesUtf32ToGb +sceCesUtf32ToMbc +sceCesUtf32ToSJis +sceCesUtf32ToSbc +sceCesUtf32ToUhc +sceCesUtf32beToBig5 +sceCesUtf32beToEucCn +sceCesUtf32beToEucJp +sceCesUtf32beToEucKr +sceCesUtf32beToGb +sceCesUtf32beToMbc +sceCesUtf32beToSJis +sceCesUtf32beToSbc +sceCesUtf32beToUhc +sceCesUtf32leToBig5 +sceCesUtf32leToEucCn +sceCesUtf32leToEucJp +sceCesUtf32leToEucKr +sceCesUtf32leToGb +sceCesUtf32leToMbc +sceCesUtf32leToSJis +sceCesUtf32leToSbc +sceCesUtf32leToUhc +sceCesUtf8StrGetIso2022Len +sceCesUtf8StrGetMbcsLen +sceCesUtf8StrToIso2022Str +sceCesUtf8StrToMbcsStr +sceCesUtf8ToBig5 +sceCesUtf8ToEucCn +sceCesUtf8ToEucJp +sceCesUtf8ToEucKr +sceCesUtf8ToGb +sceCesUtf8ToMbc +sceCesUtf8ToSJis +sceCesUtf8ToSbc +sceCesUtf8ToUhc +sceClAudiodecCreateDecoder +sceClAudiodecDecode +sceClAudiodecDeleteDecoder +sceClAudiodecInitLibrary +sceClAudiodecTermLibrary +sceClHttpAbortRequest +sceClHttpAddRequestHeader +sceClHttpCreateConnectionWithURL +sceClHttpCreateEpoll +sceClHttpCreateRequestWithURL +sceClHttpCreateTemplate +sceClHttpDeleteConnection +sceClHttpDeleteRequest +sceClHttpDeleteTemplate +sceClHttpDestroyEpoll +sceClHttpGetMemoryPoolStats +sceClHttpInit +sceClHttpReadData +sceClHttpSendRequest +sceClHttpSetAutoRedirect +sceClHttpSetEpoll +sceClHttpSetNonblock +sceClHttpSetRedirectCallback +sceClHttpTerm +sceClHttpUnsetEpoll +sceClHttpWaitRequest +sceClHttpsSetSslCallback +sceClKernelCreateEventFlag +sceClKernelDeleteEventFlag +sceClKernelMapNamedFlexibleMemory +sceClKernelMunmap +sceClKernelNanosleep +sceClKernelReleaseFlexibleMemory +sceClKernelSetEventFlag +sceClKernelUsleep +sceClKernelWaitEventFlag +sceClNetInit +sceClNetPoolCreate +sceClNetPoolDestroy +sceClNetTerm +sceClPthreadAttrDestroy +sceClPthreadAttrInit +sceClPthreadAttrSetdetachstate +sceClPthreadAttrSetinheritsched +sceClPthreadAttrSetschedparam +sceClPthreadAttrSetstacksize +sceClPthreadCondDestroy +sceClPthreadCondInit +sceClPthreadCondSignal +sceClPthreadCondWait +sceClPthreadCondattrDestroy +sceClPthreadCondattrInit +sceClPthreadCreate +sceClPthreadDetach +sceClPthreadExit +sceClPthreadJoin +sceClPthreadMutexDestroy +sceClPthreadMutexInit +sceClPthreadMutexLock +sceClPthreadMutexUnlock +sceClPthreadMutexattrDestroy +sceClPthreadMutexattrInit +sceClPthreadMutexattrSetprioceiling +sceClPthreadMutexattrSetprotocol +sceClPthreadMutexattrSettype +sceClPthreadSetprio +sceClSendSystemNotification +sceClSslGetSerialNumber +sceClSslInit +sceClSslTerm +sceCloudClientCancelRequestGame +sceCloudClientReset +sceCloudClientSetAuthCodes +sceCloudClientTestConnection +sceCommonDialogInitialize +sceCommonDialogIsUsed +sceCompanionHttpdAddHeader +sceCompanionHttpdGet2ndScreenStatus +sceCompanionHttpdGetEvent +sceCompanionHttpdGetUserId +sceCompanionHttpdInitialize +sceCompanionHttpdInitialize2 +sceCompanionHttpdOptParamInitialize +sceCompanionHttpdRegisterRequestBodyReceptionCallback +sceCompanionHttpdRegisterRequestCallback +sceCompanionHttpdRegisterRequestCallback2 +sceCompanionHttpdSetBody +sceCompanionHttpdSetStatus +sceCompanionHttpdStart +sceCompanionHttpdStop +sceCompanionHttpdTerminate +sceCompanionHttpdUnregisterRequestBodyReceptionCallback +sceCompanionHttpdUnregisterRequestCallback +sceCompanionUtilGetEvent +sceCompanionUtilGetRemoteOskEvent +sceCompanionUtilInitialize +sceCompanionUtilOptParamInitialize +sceCompanionUtilTerminate +sceCompositorAllocateIndex +sceCompositorCheckCrash +sceCompositorCommandGpuPerfBegin +sceCompositorCommandGpuPerfEnd +sceCompositorCreateIndirectRenderTarget +sceCompositorDeleteIndirectRenderTarget +sceCompositorFlush +sceCompositorFlushWithRepeat +sceCompositorGetAnotherProcessSystemAddress +sceCompositorGetAnotherProcessSystemSize +sceCompositorGetAnotherProcessVideoAddress +sceCompositorGetAnotherProcessVideoSize +sceCompositorGetCanvasHandle +sceCompositorGetClientList +sceCompositorGetDmemOffset +sceCompositorGetDummyAddress +sceCompositorGetDummySize +sceCompositorGetRemainedCommandNum +sceCompositorGetRenderTargetResolution +sceCompositorGetSystemAddress +sceCompositorGetSystemSize +sceCompositorGetVideoAddress +sceCompositorGetVideoSize +sceCompositorHandleProcessEvents +sceCompositorInit +sceCompositorInitWithProcessOrder +sceCompositorInsertThreadTraceMarker +sceCompositorIsDebugCaptureEnabled +sceCompositorIsReady4K +sceCompositorLockCommandBuffer +sceCompositorMakeCanvasHandle +sceCompositorMapAnotherProcess +sceCompositorMemoryPoolDecommit +sceCompositorPrivacyMaskPushArea +sceCompositorQuit +sceCompositorReleaseCommandBuffer +sceCompositorReleaseIndex +sceCompositorReleaseLocalStall +sceCompositorReserveCommandBuffer +sceCompositorResetZoomCommand +sceCompositorSetAgcCompositeCanvasCommand +sceCompositorSetAgcContextCommand +sceCompositorSetCompositeCanvasCommandInC +sceCompositorSetCursorImageAddress +sceCompositorSetDebugPositionCommand +sceCompositorSetEndOfFrameCommand +sceCompositorSetEventCommand +sceCompositorSetFilterType +sceCompositorSetFlipCommand +sceCompositorSetFlipCommand2 +sceCompositorSetGameSufaceControlCommand +sceCompositorSetGnmContextCommand +sceCompositorSetIndirectCanvasCommand +sceCompositorSetIndirectCompositionCommand +sceCompositorSetIndirectRenderTargetConfigCommand +sceCompositorSetInvisibleCanvasCommand +sceCompositorSetKeepDisplayBufferCommand +sceCompositorSetLocalStallCommand +sceCompositorSetMemoryCommand +sceCompositorSetMorpheusState +sceCompositorSetPatchCommand +sceCompositorSetPostEventCommand +sceCompositorSetRepeatCommand +sceCompositorSetResolutionCommand +sceCompositorSetScalingLayoutInfo +sceCompositorSetSeparateContextCommand +sceCompositorSetSystemConfigWithMask +sceCompositorSetVideoOutMode +sceCompositorSetVirtualCanvasAgcContextCommand +sceCompositorSetVirtualCanvasCommandFooter +sceCompositorSetVirtualCanvasPatchCommand +sceCompositorSetVrMode +sceCompositorSetZoomCommand +sceCompositorSystemConfig +sceCompositorWaitEndOfRendering +sceCompositorWaitEvent +sceCompositorWaitPostEvent +sceCompsoitorGetGpuClock +sceCompsoitorGetProcessRenderingTime +sceCompsoitorGetRenderingTime +sceContentBinderEnd +sceContentBinderGetNumOfDifference +sceContentBinderInitialize +sceContentBinderIsUpdated +sceContentBinderReset +sceContentBinderSearchDifference +sceContentBinderStart +sceContentBinderTerminate +sceContentDeleteById +sceContentDeleteByPath +sceContentDeleteInitialize +sceContentDeleteTerminate +sceContentExportCancel +sceContentExportFinish +sceContentExportFromData +sceContentExportFromDataWithThumbnail +sceContentExportFromFile +sceContentExportFromFileWithContentIdList +sceContentExportFromFileWithThumbnail +sceContentExportFromFileWithTitleIdList +sceContentExportGetProgress +sceContentExportInit +sceContentExportInit2 +sceContentExportStart +sceContentExportTerm +sceContentExportValidateContents +sceContentSearchCloseMetadata +sceContentSearchGetApplicationLastUpdateId +sceContentSearchGetContentLastUpdateId +sceContentSearchGetMetadataFieldInfo +sceContentSearchGetMetadataValue +sceContentSearchGetMyApplicationIndex +sceContentSearchGetNumOfApplication +sceContentSearchGetNumOfContent +sceContentSearchGetTotalContentSize +sceContentSearchInit +sceContentSearchOpenMetadata +sceContentSearchOpenMetadataByContentId +sceContentSearchSearchApplication +sceContentSearchSearchContent +sceContentSearchTerm +sceConvertKeycodeGetCharacter +sceConvertKeycodeGetCharacterFromKeyboardData +sceConvertKeycodeGetImeKeyboardType +sceConvertKeycodeGetVirtualKeycode +sceCoredumpAttachMemoryRegion +sceCoredumpAttachMemoryRegionAsUserFile +sceCoredumpAttachUserFile +sceCoredumpAttachUserMemoryFile +sceCoredumpConfigDumpMode +sceCoredumpDebugForceCoredumpOnAppClose +sceCoredumpDebugTextOut +sceCoredumpDebugTriggerCoredump +sceCoredumpGetStopInfoCpu +sceCoredumpGetStopInfoGpu +sceCoredumpGetThreadContextInfo +sceCoredumpInternalGetThreadContextInfo +sceCoredumpRegisterCoredumpHandler +sceCoredumpSetUserDataType +sceCoredumpUnregisterCoredumpHandler +sceCoredumpWriteUserData +sceCtrlpGetAvailPlayBufferNum +sceCtrlpGetMode +sceCtrlpGetRecData +sceCtrlpInit +sceCtrlpPlayStart +sceCtrlpPlayStop +sceCtrlpRecStart +sceCtrlpRecStop +sceCtrlpRegisterEventCB +sceCtrlpSetPlayData +sceCustomMusicAudioOutFinalize +sceCustomMusicAudioOutGetAllMusicVolume +sceCustomMusicAudioOutGetMuted +sceCustomMusicAudioOutGetVolume +sceCustomMusicAudioOutSetAllMusicVolume +sceCustomMusicCoreBgmClose +sceCustomMusicCoreBgmOpen +sceCustomMusicCoreBgmOpen2 +sceCustomMusicCoreBgmOutput +sceCustomMusicCoreBgmSetAudioVolume +sceCustomMusicCoreBgmStart +sceCustomMusicCoreBgmStop +sceCustomMusicCoreGetBgmAuthorityStatus +sceCustomMusicCoreGetHdcpStatus +sceCustomMusicCoreGetSystemAudioVolume +sceCustomMusicCorePostEvent +sceCustomMusicCoreSendEvent +sceCustomMusicCoreSendMulticastEvent +sceCustomMusicCoreSendSpMessage +sceCustomMusicCoreSetSystemAudioVolume +sceCustomMusicCoreStartOperation +sceCustomMusicCoreStartOperation2 +sceCustomMusicCoreStopOperation +sceCustomMusicSelect +sceCustomMusicServiceInitialize +sceCustomMusicServiceSendRequest +sceCustomMusicServiceTerminate +sceDataTransferAbortFgTransfer +sceDataTransferAbortRequest +sceDataTransferAbortSearchPS4 +sceDataTransferCheckBgTransferRunning +sceDataTransferGetFgTransferProgress +sceDataTransferGetPrepareFgTransferProgress +sceDataTransferHostAbort +sceDataTransferHostLaunch +sceDataTransferHostNotifyEasySignInReady +sceDataTransferInitialize +sceDataTransferRequestGetAppInfoPS4 +sceDataTransferRequestGetSavedataInfoPS4 +sceDataTransferRequestGetUsersPS4 +sceDataTransferRequestLaunchPS4 +sceDataTransferRequestPrepareFgTransfer +sceDataTransferRequestRebootAuthPS4 +sceDataTransferRequestSearchPS4 +sceDataTransferRequestStartFgTransfer +sceDataTransferRequestTransferTimePS4 +sceDataTransferTargetAbortBindSavedata +sceDataTransferTargetAbortDeactivate sceDataTransferTargetAbortEth0 +sceDataTransferTargetAbortGetDeviceInfo +sceDataTransferTargetAbortGetDeviceInfoApplication +sceDataTransferTargetAbortGetTitles +sceDataTransferTargetAbortGetUsers +sceDataTransferTargetAbortLaunch +sceDataTransferTargetAbortPrepareTransfer +sceDataTransferTargetAbortPwrReq +sceDataTransferTargetAbortReboot +sceDataTransferTargetAbortSendSsoNew2Old +sceDataTransferTargetAbortSendSsoOld2New +sceDataTransferTargetAbortTransfer +sceDataTransferTargetAbortTransferSpeed +sceDataTransferTargetEventIsAuthReady +sceDataTransferTargetEventIsIPv6Ready +sceDataTransferTargetEventIsPwrReqReady +sceDataTransferTargetGetFailedUsers +sceDataTransferTargetGetRebootData +sceDataTransferTargetGetTransferProgress +sceDataTransferTargetRequestAbortSearch +sceDataTransferTargetRequestActivate +sceDataTransferTargetRequestAuth +sceDataTransferTargetRequestBindSavedata +sceDataTransferTargetRequestComplete +sceDataTransferTargetRequestCreateRebootData +sceDataTransferTargetRequestDeactivate +sceDataTransferTargetRequestEndTransfer +sceDataTransferTargetRequestGetDeviceInfo +sceDataTransferTargetRequestGetDeviceInfoApplication +sceDataTransferTargetRequestGetTitles +sceDataTransferTargetRequestGetUsers +sceDataTransferTargetRequestLaunch +sceDataTransferTargetRequestPrepareTransfer +sceDataTransferTargetRequestPrepareTransferProgress +sceDataTransferTargetRequestPwrReq +sceDataTransferTargetRequestReboot +sceDataTransferTargetRequestSearch +sceDataTransferTargetRequestSendSsoNew2Old +sceDataTransferTargetRequestSendSsoOld2New +sceDataTransferTargetRequestStartTransfer +sceDataTransferTargetRequestTransferSpeed +sceDataTransferTerminate +sceDbgAddExternalTriggerEvent +sceDbgAddGpuExceptionEvent +sceDbgAmprAmmGetErrors +sceDbgAmprAmmGetNumberOfErrors +sceDbgAmprAprGetErrors +sceDbgAmprAprGetNumberOfErrors +sceDbgAssertionHandler +sceDbgBacktraceSelf +sceDbgClearHardwareBreakPoint +sceDbgDeleteExternalTriggerEvent +sceDbgDeleteGpuExceptionEvent +sceDbgEnableExtraHeapDebugInfo +sceDbgGetCpuGpuFrequencySetting +sceDbgGetDebugSuspendCount +sceDbgGetExecutablePath +sceDbgGetModuleInfo +sceDbgGetModuleList +sceDbgGetReleaseCheckMode +sceDbgGetSystemSwVersion +sceDbgInstallExceptionHandler +sceDbgInstallExceptionHandlerAltStack +sceDbgIsDebuggerAttached +sceDbgKeyboardClose +sceDbgKeyboardGetKey2Char +sceDbgKeyboardInit +sceDbgKeyboardOpen +sceDbgKeyboardRead +sceDbgKeyboardReadState +sceDbgLoggingHandler +sceDbgMapperVirtualQuery +sceDbgPlayGoRequestNextChunk +sceDbgPlayGoSnapshot +sceDbgRemoveExceptionHandler +sceDbgRequireSystemSwVersion +sceDbgSetBreakOnErrorState +sceDbgSetBreakOnWarningState +sceDbgSetExceptionHandlerAltStack +sceDbgSetHardwareBreakPoint +sceDbgSetMinimumLogLevel +sceDbgUserChannelPrint +sceDbgUserChannelPrintf +sceDbgUserChannelVPrintf +sceDbgVLoggingHandler +sceDbgVideoOutAddOutputModeVr60Privilege +sceDbgVideoOutAddProcessAttribute +sceDbgVideoOutRemoveProcessAttribute +sceDebugAcquireAndUpdateDebugRegister +sceDebugAttachProcess +sceDebugCancelCoredump +sceDebugClearStepThread +sceDebugCreatePerfScratchDataArea +sceDebugCreatePerfScratchExecutableArea +sceDebugCreateScratchDataArea +sceDebugCreateScratchDataAreaForPrx +sceDebugCreateScratchExecutableArea +sceDebugCreateScratchExecutableAreaForPrx +sceDebugDestroyPerfScratchDataArea +sceDebugDestroyPerfScratchExecutableArea +sceDebugDestroyScratchDataArea +sceDebugDestroyScratchExecutableArea +sceDebugDetachProcess +sceDebugGetApplicationIdByTitleId +sceDebugGetApplicationInfo +sceDebugGetApplicationList +sceDebugGetCrashInfoDetailForCoredump +sceDebugGetCrashInfoForCoredump +sceDebugGetDLLoadFlag +sceDebugGetDataListOfUltQueue +sceDebugGetDebugRegisterStatusMap +sceDebugGetEventList +sceDebugGetEventListForEQueueFd +sceDebugGetEventSubscriptionList +sceDebugGetEventSubscriptionListForEQueueFd +sceDebugGetFiberInfo +sceDebugGetFileInfo +sceDebugGetFileInfoForCoredump +sceDebugGetFileList +sceDebugGetFileListForCoredump +sceDebugGetGpuInfoArea +sceDebugGetJobManagerInfo +sceDebugGetJobManagerSequenceInfo +sceDebugGetJobManagerSequenceList +sceDebugGetModuleInfo +sceDebugGetModuleList +sceDebugGetModuleMetaData +sceDebugGetMonoVMInfo +sceDebugGetMonoVMList +sceDebugGetProcessCoredumpHandlerEventBlob +sceDebugGetProcessCoredumpHandlerEventInfo +sceDebugGetProcessCoredumpHandlerResult +sceDebugGetProcessEventCntlFlag +sceDebugGetProcessInfo +sceDebugGetProcessList +sceDebugGetProcessPropertyForCoredump +sceDebugGetProcessResourceStatCount +sceDebugGetProcessResourceStatData +sceDebugGetProcessTime +sceDebugGetProcessTimeCounter +sceDebugGetSyncExclusiveWaiterList +sceDebugGetSyncObjectData +sceDebugGetSyncObjectList +sceDebugGetSyncWaiterList +sceDebugGetSyncWaiterListForEQueueFd +sceDebugGetSystemStatusBlob +sceDebugGetSystemStatusCount +sceDebugGetThreadInfo +sceDebugGetThreadInfoByIdent +sceDebugGetThreadList +sceDebugGetThreadListAsIdent +sceDebugGetUlObjectList +sceDebugGetUltCondvarInfo +sceDebugGetUltInfo +sceDebugGetUltListOfUltRuntime +sceDebugGetUltMutexInfo +sceDebugGetUltQueueDataResourcePoolInfo +sceDebugGetUltQueueInfo +sceDebugGetUltRuntimeInfo +sceDebugGetUltRwlockInfo +sceDebugGetUltSemaphoreInfo +sceDebugGetUltWaitingQueueResourcePoolInfo +sceDebugGetVirtualMemoryDetailInfoForCoredump +sceDebugGetVirtualMemoryInfo +sceDebugGetVirtualMemoryInfoForCoredump +sceDebugGetWaitingListOfUltCondvar +sceDebugGetWaitingListOfUltMutex +sceDebugGetWaitingListOfUltQueue +sceDebugGetWaitingListOfUltRwlock +sceDebugGetWaitingListOfUltSemaphore +sceDebugGetWorkerThreadListOfUltRuntime +sceDebugInit +sceDebugInitForCoredump +sceDebugInitForTest +sceDebugIpmiGetBlockTimeInfoList +sceDebugIpmiGetBlockedIpcInfo +sceDebugIpmiGetChannelInfo +sceDebugIpmiGetChannelKidList +sceDebugIpmiGetChannelWaitingThreadList +sceDebugIpmiGetClientInfo +sceDebugIpmiGetClientKidList +sceDebugIpmiGetClientKidListByDump +sceDebugIpmiGetClientKidListByServerKid +sceDebugIpmiGetConnectRequestInfoList +sceDebugIpmiGetConnectionInfoList +sceDebugIpmiGetConnectionWaitingThreadListByClientKid +sceDebugIpmiGetConnectionWaitingThreadListBySessionKid +sceDebugIpmiGetDump +sceDebugIpmiGetEncryptedInfoAllForCoredump +sceDebugIpmiGetKidInfoListForCoredump +sceDebugIpmiGetServerDispatchInfo +sceDebugIpmiGetServerInfo +sceDebugIpmiGetServerKidList +sceDebugIpmiGetServerKidListByDump +sceDebugIpmiGetServerWaitingThreadList +sceDebugIpmiGetSessionInfo +sceDebugIpmiGetSessionKidList +sceDebugIpmiGetSessionKidListByServerKid +sceDebugIpmiGetTidListByDump +sceDebugKillApplication +sceDebugKillProcess +sceDebugNoStopChildProcesses +sceDebugNoStopOnDLLoad +sceDebugProcessSpawn +sceDebugReadEvent +sceDebugReadEventForTest +sceDebugReadProcessMemory +sceDebugReadProcessMemoryForSDBGP +sceDebugReadProcessRegister +sceDebugReadProcessRegisterForSDBGP +sceDebugReadProcessResourceStatData +sceDebugReadThreadRegister +sceDebugReadThreadRegisterForSDBGP +sceDebugReleaseDebugRegister +sceDebugResumeApplication +sceDebugResumeProcess +sceDebugResumeThread +sceDebugSetProcessEventCntlFlag +sceDebugSetStepThread +sceDebugSpawnApplication +sceDebugStopChildProcesses +sceDebugStopOnDLLoad +sceDebugSuspendApplication +sceDebugSuspendProcess +sceDebugSuspendThread +sceDebugTriggerCoredump +sceDebugTriggerCoredumpForSystem +sceDebugTriggerVrCaptureDump +sceDebugWriteProcessMemory +sceDebugWriteProcessRegister +sceDebugWriteThreadRegister +sceDeci4hClose +sceDeci4hCreateHostProcess +sceDeci4hCreateHostProcessAndWait +sceDeci4hDrfpCalcEntlistSize +sceDeci4hDrfpChkGetConf +sceDeci4hDrfpChkInValidDeciHead +sceDeci4hDrfpChkInValidUlpHead +sceDeci4hDrfpChstat +sceDeci4hDrfpChstat_chmod_fuse +sceDeci4hDrfpChstat_chmod_fuse_fullpath +sceDeci4hDrfpChstat_utimens_fuse +sceDeci4hDrfpChstat_utimens_fuse_fullpath +sceDeci4hDrfpClose +sceDeci4hDrfpClose_fuse +sceDeci4hDrfpClosedir +sceDeci4hDrfpClosedir_fuse +sceDeci4hDrfpCreate +sceDeci4hDrfpCreate_fuse +sceDeci4hDrfpCreate_fuse_fullpath +sceDeci4hDrfpEventHandler +sceDeci4hDrfpFchstat +sceDeci4hDrfpFchstat_fuse +sceDeci4hDrfpFstat +sceDeci4hDrfpFstat_fuse +sceDeci4hDrfpFstat_fuse_fullpath +sceDeci4hDrfpFtruncate +sceDeci4hDrfpFtruncate_fuse +sceDeci4hDrfpFtruncate_fuse_fullpath +sceDeci4hDrfpGetMsgBuf +sceDeci4hDrfpGetOption +sceDeci4hDrfpInitMountDoneEvf +sceDeci4hDrfpMkdir +sceDeci4hDrfpMkdir_fuse +sceDeci4hDrfpMkdir_fuse_fullpath +sceDeci4hDrfpMountDone +sceDeci4hDrfpOpen +sceDeci4hDrfpOpen_fuse +sceDeci4hDrfpOpen_fuse_fullpath +sceDeci4hDrfpOpendir +sceDeci4hDrfpOpendir_fuse +sceDeci4hDrfpOpendir_fuse_fullpath +sceDeci4hDrfpRead +sceDeci4hDrfpRead_fuse +sceDeci4hDrfpReaddir +sceDeci4hDrfpReaddir_fuse +sceDeci4hDrfpReaddir_fuse_fullpath +sceDeci4hDrfpRecv +sceDeci4hDrfpReleaseBuffer +sceDeci4hDrfpRemove +sceDeci4hDrfpRemove_fuse +sceDeci4hDrfpRemove_fuse_fullpath +sceDeci4hDrfpRename +sceDeci4hDrfpRename_fuse +sceDeci4hDrfpRename_fuse_fullpath +sceDeci4hDrfpReserveBuffer +sceDeci4hDrfpRmdir +sceDeci4hDrfpRmdir_fuse +sceDeci4hDrfpRmdir_fuse_fullpath +sceDeci4hDrfpSearchTbl +sceDeci4hDrfpSend +sceDeci4hDrfpSetOption +sceDeci4hDrfpStat +sceDeci4hDrfpStat_fuse +sceDeci4hDrfpStat_fuse_fullpath +sceDeci4hDrfpTruncate +sceDeci4hDrfpTruncate_fuse +sceDeci4hDrfpTruncate_fuse_fullpath +sceDeci4hDrfpWaitMountDone +sceDeci4hDrfpWaitRes +sceDeci4hDrfpWrite +sceDeci4hDrfpWrite_fuse +sceDeci4hGetStatus +sceDeci4hOpen +sceDeci4hRead +sceDeci4hWrite +sceDeci5Close +sceDeci5CreateHostProcess +sceDeci5CreateHostProcessAndWait +sceDeci5GetStatus +sceDeci5Open +sceDeci5Read +sceDeci5Write +sceDepth2GetImage +sceDepth2Initialize +sceDepth2QueryMemory +sceDepth2SaveInternalBuffers +sceDepth2SetCameraFactoryCalibrationData +sceDepth2SetCommand +sceDepth2SetRoi +sceDepth2Submit +sceDepth2Terminate +sceDepth2WaitAndExecutePostProcess +sceDepthCalculateRectificationInformation +sceDepthDisableHeteroMode +sceDepthEnableExtendedMode +sceDepthEnableHeteroMode +sceDepthEnableHeteroModeAndGenerateInformation +sceDepthGetCalibrationData +sceDepthGetImage +sceDepthGetRectificationInformation +sceDepthGetSrParameter +sceDepthHandCandidateTrackerGetResult +sceDepthHasCalibrationData +sceDepthHeadCandidateDetectorGetResults +sceDepthHeadCandidateTrackerGetResult +sceDepthHeadCandidateTrackerSetValidationInformation +sceDepthInitialize +sceDepthLoadCalibrationData +sceDepthQueryMemory +sceDepthSaveInternalBuffers +sceDepthSetCalibrationData +sceDepthSetCommands +sceDepthSetPostFilterParameter +sceDepthSetPreFilterParameter +sceDepthSetRectificationInformation +sceDepthSetRoi +sceDepthSetRoiset +sceDepthSetSrParameter +sceDepthSetSrTnrParameter +sceDepthSubmit +sceDepthTerminate +sceDepthUpdate +sceDepthValidateCurrentCalibrationData +sceDepthWaitAndExecutePostProcess +sceDevUsbAcceptHostStream +sceDevUsbAddCPKevent +sceDevUsbAddHostKevent +sceDevUsbAddHostRawKevent +sceDevUsbAddHostStreamKevent +sceDevUsbCloseHostStream +sceDevUsbDeleteCPKevent +sceDevUsbDeleteHostKevent +sceDevUsbDeleteHostRawKevent +sceDevUsbDeleteHostStreamKevent +sceDevUsbInit +sceDevUsbInitCP +sceDevUsbInitHost +sceDevUsbIsHostConnected +sceDevUsbReadCP +sceDevUsbReadHost +sceDevUsbReadHostRaw +sceDevUsbResume +sceDevUsbSuspend +sceDevUsbTerm +sceDevUsbTermCP +sceDevUsbTermHost +sceDevUsbWriteCP +sceDevUsbWriteHost +sceDevUsbWriteHostRaw +sceDeviceServiceGetEventState +sceDeviceServiceGetGeneration +sceDeviceServiceInitialize +sceDeviceServiceQueryDeviceInfo_ +sceDeviceServiceTerminate +sceDiscIdGet +sceDiscIdGet2 +sceDiscMapBitmapInfoServerStart +sceDiscMapBitmapInfoServerStop +sceDiscMapGetPackageSize +sceDiscMapIsRequestOnHDD +sceDseehxConvert +sceDseehxExtInit +sceDseehxFlush +sceDseehxInit +sceDtcpIpActivateAsync +sceDtcpIpAddHeader +sceDtcpIpByteSeekAsync +sceDtcpIpCancelActivate +sceDtcpIpCheckActivationAsync +sceDtcpIpCloseContentAsync +sceDtcpIpGetErrorCode +sceDtcpIpGetHttpStatusCode +sceDtcpIpInit +sceDtcpIpInitAuthAsync +sceDtcpIpOpenContentAsync +sceDtcpIpPollAsync +sceDtcpIpPoolAsync +sceDtcpIpReadAsync +sceDtcpIpRemoveHeader +sceDtcpIpStartAuthAsync +sceDtcpIpStartSeq +sceDtcpIpStopAuthAsync +sceDtcpIpStopSeq +sceDtcpIpTerm +sceDtcpIpTermAuthAsync +sceDtcpIpTimeSeekAsync +sceDtcpIpWaitAsync +sceDtsEncCreateEncoder +sceDtsEncDeleteEncoder +sceDtsEncEncode +sceDtsEncEncodeAsync +sceDtsEncFlush +sceDtsEncIsEncoding +sceDtsEncWaitEncode +sceEditMp4Abort +sceEditMp4Edit +sceEditMp4GetStatus +sceEditMp4Initialize +sceEditMp4InitializeParam +sceEditMp4QueryMemSize +sceEditMp4SetFinishCallback +sceEditMp4Terminate +sceEditMp4Unite +sceErrorDialogClose +sceErrorDialogGetStatus +sceErrorDialogInitialize +sceErrorDialogOpen +sceErrorDialogOpenDetail +sceErrorDialogOpenWithReport +sceErrorDialogTerminate +sceErrorDialogUpdateStatus +sceEsvmEngineDestroyMediaKeySystemAccess +sceEsvmEngineMediaKeySessionClose +sceEsvmEngineMediaKeySessionGenerateRequest +sceEsvmEngineMediaKeySessionGetExpiration +sceEsvmEngineMediaKeySessionGetKeyStatuses +sceEsvmEngineMediaKeySessionGetSessionId +sceEsvmEngineMediaKeySessionLoad +sceEsvmEngineMediaKeySessionRemove +sceEsvmEngineMediaKeySessionSetEventHandler +sceEsvmEngineMediaKeySessionUpdate +sceEsvmEngineMediaKeySystemAccessCreateMediaKeys +sceEsvmEngineMediaKeySystemAccessDestroyMediaKeys +sceEsvmEngineMediaKeySystemAccessGetConfiguration +sceEsvmEngineMediaKeySystemAccessSetCdmStorageConfig +sceEsvmEngineMediaKeysCreateSession +sceEsvmEngineMediaKeysDestroySession +sceEsvmEngineMediaKeysSetEventHandler +sceEsvmEngineMediaKeysSetServerCertificate +sceEsvmEngineRequestMediaKeySystemAccess +sceFaceAgeGetWorkingMemorySize +sceFaceAgeRangeEstimate +sceFaceAgeRangeIntegrate +sceFaceAllParts +sceFaceAllPartsGetWorkingMemorySize +sceFaceAttribute +sceFaceAttributeGetWorkingMemorySize +sceFaceDetection +sceFaceDetectionEx +sceFaceDetectionGetDefaultParam +sceFaceDetectionGetWorkingMemorySize +sceFaceDetectionLocal +sceFaceEstimatePoseRegion +sceFaceIdentifyExGetFeature +sceFaceIdentifyExGetWorkingMemorySize +sceFaceIdentifyExSimilarity +sceFaceIdentifyGetFeature +sceFaceIdentifyGetWorkingMemorySize +sceFaceIdentifyLiteGetFeature +sceFaceIdentifyLiteGetWorkingMemorySize +sceFaceIdentifyLiteSimilarity +sceFaceIdentifySimilarity +sceFaceParts +sceFacePartsEx +sceFacePartsGetWorkingMemorySize +sceFacePartsResultCheck +sceFaceShapeFit +sceFaceShapeGetWorkingMemorySize +sceFaceShapeTrack +sceFaceTrackerAddUserFeature +sceFaceTrackerFinalize +sceFaceTrackerGetDefaultConfig +sceFaceTrackerGetResult +sceFaceTrackerGetTrackIdByUserId +sceFaceTrackerGetUserFeature +sceFaceTrackerGetUserIdByTrackId +sceFaceTrackerGetWorkingMemorySize +sceFaceTrackerInitialize +sceFaceTrackerRegisterFixUserIdCallback +sceFaceTrackerRegisterLostTargetCallback +sceFaceTrackerRegisterRecoveryFromLostTargetCallback +sceFaceTrackerRegisterStartTrackingCallback +sceFaceTrackerRegisterStopTrackingCallback +sceFaceTrackerRegisterUser +sceFaceTrackerReset +sceFaceTrackerSearchTarget +sceFaceTrackerStartTracking +sceFaceTrackerStopTracking +sceFaceTrackerUnregisterUser +sceFaceTrackerUpdate +sceFiberFinalize +sceFiberGetInfo +sceFiberGetSelf +sceFiberOptParamInitialize +sceFiberRename +sceFiberReturnToThread +sceFiberRun +sceFiberStartContextSizeCheck +sceFiberStopContextSizeCheck +sceFiberSwitch +sceFiosArchiveGetDecompressorThreadCount +sceFiosArchiveGetMountBufferSize +sceFiosArchiveGetMountBufferSizeSync +sceFiosArchiveMount +sceFiosArchiveMountSync +sceFiosArchiveMountWithOrder +sceFiosArchiveMountWithOrderSync +sceFiosArchiveSetDecompressorThreadCount +sceFiosArchiveUnmount +sceFiosArchiveUnmountSync +sceFiosCacheContainsFile +sceFiosCacheContainsFileRange +sceFiosCacheContainsFileRangeSync +sceFiosCacheContainsFileSync +sceFiosCacheFlushFileRangeSync +sceFiosCacheFlushFileSync +sceFiosCacheFlushSync +sceFiosCachePrefetchFH +sceFiosCachePrefetchFHRange +sceFiosCachePrefetchFHRangeSync +sceFiosCachePrefetchFHSync +sceFiosCachePrefetchFile +sceFiosCachePrefetchFileRange +sceFiosCachePrefetchFileRangeSync +sceFiosCachePrefetchFileSync +sceFiosCancelAllOps +sceFiosClearTimeStamps +sceFiosCloseAllFiles +sceFiosDHClose +sceFiosDHCloseSync +sceFiosDHGetPath +sceFiosDHOpen +sceFiosDHOpenSync +sceFiosDHRead +sceFiosDHReadSync +sceFiosDLLInitialize +sceFiosDLLTerminate +sceFiosDateFromComponents +sceFiosDateGetCurrent +sceFiosDateToComponents +sceFiosDeallocatePassthruFH +sceFiosDebugDumpDH +sceFiosDebugDumpDate +sceFiosDebugDumpError +sceFiosDebugDumpFH +sceFiosDebugDumpOp +sceFiosDebugSetProfileCallback +sceFiosDebugSetTraceMask +sceFiosDebugStatisticsPrint +sceFiosDebugStatisticsReset +sceFiosDelete +sceFiosDeleteSync +sceFiosDirectoryCreate +sceFiosDirectoryCreateSync +sceFiosDirectoryCreateWithMode +sceFiosDirectoryCreateWithModeSync +sceFiosDirectoryDelete +sceFiosDirectoryDeleteSync +sceFiosDirectoryExists +sceFiosDirectoryExistsSync +sceFiosExists +sceFiosExistsSync +sceFiosFHClose +sceFiosFHCloseSync +sceFiosFHGetOpenParams +sceFiosFHGetPath +sceFiosFHGetSize +sceFiosFHOpen +sceFiosFHOpenSync +sceFiosFHOpenWithMode +sceFiosFHOpenWithModeSync +sceFiosFHPread +sceFiosFHPreadSync +sceFiosFHPreadv +sceFiosFHPreadvSync +sceFiosFHPwrite +sceFiosFHPwriteSync +sceFiosFHPwritev +sceFiosFHPwritevSync +sceFiosFHRead +sceFiosFHReadSync +sceFiosFHReadv +sceFiosFHReadvSync +sceFiosFHSeek +sceFiosFHStat +sceFiosFHStatSync +sceFiosFHSync +sceFiosFHSyncSync +sceFiosFHTell +sceFiosFHToFileno +sceFiosFHTruncate +sceFiosFHTruncateSync +sceFiosFHWrite +sceFiosFHWriteSync +sceFiosFHWritev +sceFiosFHWritevSync +sceFiosFileDelete +sceFiosFileDeleteSync +sceFiosFileExists +sceFiosFileExistsSync +sceFiosFileGetSize +sceFiosFileGetSizeSync +sceFiosFileRead +sceFiosFileReadSync +sceFiosFileTruncate +sceFiosFileTruncateSync +sceFiosFileWrite +sceFiosFileWriteSync +sceFiosFilenoToFH +sceFiosGetAllDHs +sceFiosGetAllFHs +sceFiosGetAllOps +sceFiosGetDefaultOpAttr +sceFiosGetGlobalDefaultOpAttr +sceFiosGetSuspendCount +sceFiosGetThreadDefaultOpAttr +sceFiosIOFilterAdd +sceFiosIOFilterCache +sceFiosIOFilterGetInfo +sceFiosIOFilterPsarcDearchiver +sceFiosIOFilterRemove +sceFiosInitialize +sceFiosIsIdle +sceFiosIsInitialized +sceFiosIsSuspended +sceFiosIsValidHandle +sceFiosOpCancel +sceFiosOpDelete +sceFiosOpGetActualCount +sceFiosOpGetAttr +sceFiosOpGetBuffer +sceFiosOpGetError +sceFiosOpGetOffset +sceFiosOpGetPath +sceFiosOpGetRequestCount +sceFiosOpIsCancelled +sceFiosOpIsDone +sceFiosOpReschedule +sceFiosOpRescheduleWithPriority +sceFiosOpSetBuffer +sceFiosOpSyncWait +sceFiosOpSyncWaitForIO +sceFiosOpWait +sceFiosOpWaitUntil +sceFiosOverlayAdd +sceFiosOverlayGetInfo +sceFiosOverlayGetList +sceFiosOverlayModify +sceFiosOverlayRemove +sceFiosOverlayResolveSync +sceFiosPathNormalize +sceFiosPathcmp +sceFiosPathncmp +sceFiosPrintTimeStamps +sceFiosPrintf +sceFiosRename +sceFiosRenameSync +sceFiosResolve +sceFiosResolveSync +sceFiosResume +sceFiosSaveTimeStamp +sceFiosSetGlobalDefaultOpAttr +sceFiosSetThreadDefaultOpAttr +sceFiosShutdownAndCancelOps +sceFiosStat +sceFiosStatSync +sceFiosStatisticsGet +sceFiosStatisticsPrint +sceFiosStatisticsReset +sceFiosSuspend +sceFiosTerminate +sceFiosTimeGetCurrent +sceFiosTimeIntervalFromNanoseconds +sceFiosTimeIntervalToNanoseconds +sceFiosTraceTimestamp +sceFiosUpdateParameters +sceFiosVprintf +sceFontAttachDeviceCacheBuffer +sceFontBindRenderer +sceFontCharacterGetBidiLevel +sceFontCharacterGetSyllableStringState +sceFontCharacterGetTextFontCode +sceFontCharacterGetTextOrder +sceFontCharacterLooksFormatCharacters +sceFontCharacterLooksWhiteSpace +sceFontCharacterRefersTextBack +sceFontCharacterRefersTextNext +sceFontCharactersRefersTextCodes +sceFontClearDeviceCache +sceFontCloseFont +sceFontControl +sceFontCreateGraphicsDevice +sceFontCreateGraphicsService +sceFontCreateGraphicsServiceWithEdition +sceFontCreateLibrary +sceFontCreateLibraryWithEdition +sceFontCreateRenderer +sceFontCreateRendererWithEdition +sceFontCreateString +sceFontCreateWords +sceFontCreateWritingLine +sceFontDefineAttribute +sceFontDeleteGlyph +sceFontDestroyGraphicsDevice +sceFontDestroyGraphicsService +sceFontDestroyLibrary +sceFontDestroyRenderer +sceFontDestroyString +sceFontDestroyWords +sceFontDestroyWritingLine +sceFontDettachDeviceCacheBuffer +sceFontFtInitAliases +sceFontFtSetAliasFont +sceFontFtSetAliasPath +sceFontFtSupportBdf +sceFontFtSupportCid +sceFontFtSupportFontFormats +sceFontFtSupportOpenType +sceFontFtSupportOpenTypeOtf +sceFontFtSupportOpenTypeTtf +sceFontFtSupportPcf +sceFontFtSupportPfr +sceFontFtSupportSystemFonts +sceFontFtSupportTrueType +sceFontFtSupportTrueTypeGx +sceFontFtSupportType1 +sceFontFtSupportType42 +sceFontFtSupportWinFonts +sceFontFtTermAliases +sceFontGenerateCharGlyph +sceFontGetAttribute +sceFontGetCharGlyphCode +sceFontGetCharGlyphMetrics +sceFontGetCharVariationGlyphCode +sceFontGetEffectSlant +sceFontGetEffectWeight +sceFontGetFontGlyphsCount +sceFontGetFontGlyphsOutlineProfile +sceFontGetFontMetrics +sceFontGetFontResolution +sceFontGetFontStyleInformation +sceFontGetGlyphExpandBufferState +sceFontGetHorizontalLayout +sceFontGetKerning +sceFontGetLibrary +sceFontGetPixelResolution +sceFontGetRenderCharGlyphMetrics +sceFontGetRenderEffectSlant +sceFontGetRenderEffectWeight +sceFontGetRenderScalePixel +sceFontGetRenderScalePoint +sceFontGetRenderScaledKerning +sceFontGetResolutionDpi +sceFontGetScalePixel +sceFontGetScalePoint +sceFontGetScriptLanguage +sceFontGetTypographicDesign +sceFontGetVerticalLayout +sceFontGlyphDefineAttribute +sceFontGlyphGetAttribute +sceFontGlyphGetGlyphForm +sceFontGlyphGetMetricsForm +sceFontGlyphGetOutlineVertexes +sceFontGlyphGetScalePixel +sceFontGlyphRefersMetrics +sceFontGlyphRefersMetricsHorizontal +sceFontGlyphRefersMetricsHorizontalAdvance +sceFontGlyphRefersMetricsHorizontalX +sceFontGlyphRefersOutline +sceFontGlyphRenderImage +sceFontGlyphRenderImageHorizontal +sceFontGlyphRenderImageVertical +sceFontGraphicsAdjustFillRadialGradient +sceFontGraphicsAdjustGradientSpread +sceFontGraphicsAgcDrawupFillTextureImage +sceFontGraphicsAgcDrawupFillTexturePattern +sceFontGraphicsAgcSurfaceInit +sceFontGraphicsAppendGradientSegment +sceFontGraphicsBeginFrame +sceFontGraphicsCanvasClearPreprocess +sceFontGraphicsCanvasGetPreprocess +sceFontGraphicsCanvasRenewal +sceFontGraphicsCanvasSetSurfaceFill +sceFontGraphicsCanvasSetSurfaceFillWithLayout +sceFontGraphicsCanvasSetSurfaceFillWithMapping +sceFontGraphicsCanvasStartDrawing +sceFontGraphicsDefineIndexedVertexesGlyph +sceFontGraphicsDesignStartDrawing +sceFontGraphicsDrawRectangleShape +sceFontGraphicsDrawRegionShape +sceFontGraphicsDrawVertexesGlyph +sceFontGraphicsDrawingCancel +sceFontGraphicsDrawingFinish +sceFontGraphicsDrawupFillFlatColor +sceFontGraphicsDrawupFillLinearGradient +sceFontGraphicsDrawupFillRadialGradient +sceFontGraphicsDrawupFillTextureImageObject +sceFontGraphicsDrawupFillTexturePatternObject +sceFontGraphicsEndFrame +sceFontGraphicsExchangeResource +sceFontGraphicsFillMethodInit +sceFontGraphicsFillPlotInit +sceFontGraphicsFillPlotSetLayout +sceFontGraphicsFillPlotSetMapping +sceFontGraphicsFillRatesInit +sceFontGraphicsFillRatesSetFillEffect +sceFontGraphicsFillRatesSetLayout +sceFontGraphicsFillRatesSetMapping +sceFontGraphicsFindIndexedVertexesGlyph +sceFontGraphicsGetDeviceUsage +sceFontGraphicsGetDrawingFrameHandle +sceFontGraphicsGetIndexedVertexesGlyph +sceFontGraphicsGetVertexesGlyphMetrics +sceFontGraphicsGetVertexesGlyphScale +sceFontGraphicsProcessRenderSequence +sceFontGraphicsProcessSetSyncPolicy +sceFontGraphicsProcessWaitAllSequences +sceFontGraphicsProcessWaitSequence +sceFontGraphicsRegionInit +sceFontGraphicsRegionInitCircular +sceFontGraphicsRegionInitRoundish +sceFontGraphicsRelease +sceFontGraphicsRenderResource +sceFontGraphicsReportError +sceFontGraphicsSequenceGetAgcCommandsForJump +sceFontGraphicsSequenceGetAgcCommandsForSubmit +sceFontGraphicsSetFramePolicy +sceFontGraphicsSetVertexesGlyphScale +sceFontGraphicsSetupClipping +sceFontGraphicsSetupColorRates +sceFontGraphicsSetupFillMethod +sceFontGraphicsSetupFillRates +sceFontGraphicsSetupGlyphFill +sceFontGraphicsSetupGlyphFillPlot +sceFontGraphicsSetupHandleDefault +sceFontGraphicsSetupLocation +sceFontGraphicsSetupPositioning +sceFontGraphicsSetupRotation +sceFontGraphicsSetupScaling +sceFontGraphicsSetupShapeFill +sceFontGraphicsSetupShapeFillPlot +sceFontGraphicsSetupSlantShift +sceFontGraphicsStructureCanvas +sceFontGraphicsStructureCanvasSequence +sceFontGraphicsStructureDesign +sceFontGraphicsStructureDesignResource +sceFontGraphicsStructureSurfaceTexture +sceFontGraphicsStructureVertexesGlyph +sceFontGraphicsSurfaceSetTargetView +sceFontGraphicsTextureGetSurface +sceFontGraphicsTextureMakeFillTexture +sceFontGraphicsTextureMakeFillTextureImage +sceFontGraphicsTextureRefersSurface +sceFontGraphicsUndefineIndexedVertexesGlyph +sceFontGraphicsUndefineIndexedVertexesGlyphAll +sceFontGraphicsUndefineIndexedVertexesGlyphs +sceFontGraphicsUpdateClipping +sceFontGraphicsUpdateColorRates +sceFontGraphicsUpdateFillMethod +sceFontGraphicsUpdateFillRates +sceFontGraphicsUpdateGlyphFill +sceFontGraphicsUpdateGlyphFillPlot +sceFontGraphicsUpdateLocation +sceFontGraphicsUpdatePositioning +sceFontGraphicsUpdateRotation +sceFontGraphicsUpdateScaling +sceFontGraphicsUpdateShapeFill +sceFontGraphicsUpdateShapeFillPlot +sceFontGraphicsUpdateSlantShift +sceFontMemoryInit +sceFontMemoryTerm +sceFontOpenFontFile +sceFontOpenFontInstance +sceFontOpenFontMemory +sceFontOpenFontSet +sceFontOutlineVertexesInterfaceInit +sceFontRebindRenderer +sceFontRenderCharGlyphImage +sceFontRenderCharGlyphImageHorizontal +sceFontRenderCharGlyphImageVertical +sceFontRenderSurfaceInit +sceFontRenderSurfaceSetScissor +sceFontRenderSurfaceSetStyleFrame +sceFontRendererGetOutlineBufferSize +sceFontRendererResetOutlineBuffer +sceFontRendererSetOutlineBufferPolicy +sceFontSelectGlyphsFt +sceFontSelectGraphicsAgc +sceFontSelectLibraryFt +sceFontSelectRendererFt +sceFontSetEffectSlant +sceFontSetEffectWeight +sceFontSetFontsOpenMode +sceFontSetGraphicsErrorCallback +sceFontSetResolutionDpi +sceFontSetScalePixel +sceFontSetScalePoint +sceFontSetScriptLanguage +sceFontSetTypographicDesign +sceFontSetupRenderEffectSlant +sceFontSetupRenderEffectWeight +sceFontSetupRenderScalePixel +sceFontSetupRenderScalePoint +sceFontStringGetTerminateCode +sceFontStringGetTerminateOrder +sceFontStringGetWritingForm +sceFontStringRefersRenderCharacters +sceFontStringRefersTextCharacters +sceFontStyleFrameGetEffectSlant +sceFontStyleFrameGetEffectWeight +sceFontStyleFrameGetResolutionDpi +sceFontStyleFrameGetScalePixel +sceFontStyleFrameGetScalePoint +sceFontStyleFrameInit +sceFontStyleFrameSetEffectSlant +sceFontStyleFrameSetEffectWeight +sceFontStyleFrameSetResolutionDpi +sceFontStyleFrameSetScalePixel +sceFontStyleFrameSetScalePoint +sceFontStyleFrameUnsetEffectSlant +sceFontStyleFrameUnsetEffectWeight +sceFontStyleFrameUnsetScale +sceFontSupportExternalFonts +sceFontSupportGlyphs +sceFontSupportSystemFonts +sceFontTextCodesStepBack +sceFontTextCodesStepNext +sceFontTextSourceInit +sceFontTextSourceRewind +sceFontTextSourceSetDefaultFont +sceFontTextSourceSetWritingForm +sceFontUnbindRenderer +sceFontWordsFindWordCharacters +sceFontWritingGetRenderMetrics +sceFontWritingInit +sceFontWritingLineClear +sceFontWritingLineGetOrderingSpace +sceFontWritingLineGetRenderMetrics +sceFontWritingLineRefersRenderStep +sceFontWritingLineWritesOrder +sceFontWritingRefersRenderStep +sceFontWritingRefersRenderStepCharacter +sceFontWritingSetMaskInvisible +sceFrontPanelDisplayInitialize +sceFrontPanelDisplaySetOutputMode +sceFrontPanelDisplayStickReadState +sceFsBfsCheckCleanFlag +sceFsBindApplication +sceFsBindPackages +sceFsCheckFormat +sceFsCheckSingleUser +sceFsCreateExfatPartition +sceFsCreatePfsSaveDataImage +sceFsCreatePfsTrophyDataImage +sceFsCreatePprPfsTrophyDataImage +sceFsDeviceAlignedPread +sceFsDeviceAlignedPwrite +sceFsDevpfsA53IocGetBuildMetadataStatus +sceFsDevpfsCancelWaitEvent +sceFsDevpfsCreateForVSH +sceFsDevpfsDeleteForVSH +sceFsDevpfsDeregisterEvent +sceFsDevpfsEventComplete +sceFsDevpfsEventResponseComplete +sceFsDevpfsFetchMetaEntry +sceFsDevpfsFsck +sceFsDevpfsInitFetchMetaEntryCtx +sceFsDevpfsMountForFSMP +sceFsDevpfsRegisterEvent +sceFsDevpfsWaitEvent +sceFsDrfsRegisterSocket +sceFsDrfsResumeSocket +sceFsErriCtl +sceFsErriGetState +sceFsExfatMkfsExternalHdd +sceFsExfatfsMkfs +sceFsExtUSBSchedDestroy +sceFsExtUSBSchedInsert +sceFsExtUSBSchedInsertForHDD +sceFsExternalStorageDeconfigure +sceFsExternalStorageGetRawDevice +sceFsExternalStorageInitialize +sceFsExternalStorageVerifyMetadata +sceFsGetAttribute +sceFsGetClusterStatistics +sceFsGetDeviceSectorsize +sceFsGetFsMetadata +sceFsGetFsMetadataWithProgress +sceFsGetSmrInfo +sceFsGschedCtl +sceFsISSchedConfigCurrentThread +sceFsISSchedConfigDescriptor +sceFsISSchedConfigThread +sceFsISSchedMapStat +sceFsISSchedResultToPriority +sceFsISSchedResultToSlot +sceFsISSchedStatCurrentThread +sceFsISSchedStatDescriptor +sceFsISSchedStatThread +sceFsISSchedUnmapStat +sceFsInitCreatePfsSaveDataOpt +sceFsInitCreatePfsTrophyDataOpt +sceFsInitMountDownloadDataOpt +sceFsInitMountGamePkgOpt +sceFsInitMountLwfsCompatOpt +sceFsInitMountLwfsOpt +sceFsInitMountPprPkgOpt +sceFsInitMountSaveDataOpt +sceFsInitMountTrophyDataOpt +sceFsInitUmountDownloadDataOpt +sceFsInitUmountGamePkgOpt +sceFsInitUmountLwfsCompatOpt +sceFsInitUmountLwfsOpt +sceFsInitUmountPprPkgOpt +sceFsInitUmountSaveDataOpt +sceFsInitUmountTrophyDataOpt +sceFsInitWorkspaceFileMetadataParam +sceFsLvdAttach +sceFsLvdAttach2 +sceFsLvdAttachPartiallyCryptedDownloadData +sceFsLvdAttachSingleDefaultImage +sceFsLvdAttachSingleImage +sceFsLvdDetach +sceFsLvdDisableLayer +sceFsLvdEnableLayer +sceFsLvdSetDiscIdentity +sceFsLvdWaitResumed +sceFsMlfsMount +sceFsMlfsMountWithFlags +sceFsMlfsUmount +sceFsMountDownloadData +sceFsMountGamePkg +sceFsMountLwfs +sceFsMountLwfsCompat +sceFsMountPartiallyCryptedDownloadData +sceFsMountPprPkg +sceFsMountSaveData +sceFsMountTrophyData +sceFsNsfsAddOverlayToNamespace +sceFsNsfsMountWithFlags +sceFsNsfsSetGlobalExclude +sceFsNsfsUmount +sceFsPartitionTrim +sceFsReserveCluster +sceFsSetAttribute +sceFsSetClusterCacheSize +sceFsSetFileReservedTotal +sceFsSetSystemReserveSize +sceFsSetWorkspaceFileHash +sceFsSmrTrim +sceFsSmrTrimAll +sceFsSmrTrimPath +sceFsStatWorkspace +sceFsSysStorageGetStatus +sceFsTransactionCancel +sceFsTransactionSaveDataInitMountOpt +sceFsTransactionSaveDataMount +sceFsTransactionStart +sceFsTrophyImageError +sceFsUfsAllocateAdditionalContents +sceFsUfsAllocateAligned +sceFsUfsAllocateDownloadData +sceFsUfsAllocateGameImage +sceFsUfsAllocatePatchImage +sceFsUfsAllocateSaveData +sceFsUfsAllocateTrophyData +sceFsUfsCheckCleanFlag +sceFsUfsCheckFixedCylinderGroupSize +sceFsUfsCollectTelemetry +sceFsUfsCollectTelemetry2 +sceFsUfsDirectWrite +sceFsUfsEstimateZoneCapacityForUser +sceFsUfsExtendFile +sceFsUfsFsck +sceFsUfsFsckWithMM +sceFsUfsGetExtentMap +sceFsUfsGrowLwfs +sceFsUfsGrowfs +sceFsUfsHideBlocksFromUser +sceFsUfsInitalizeSparseFile +sceFsUfsLargewriteFsck +sceFsUfsLargewriteFsckWithMM +sceFsUfsMkLwfs +sceFsUfsMkfs +sceFsUfsMkfsForExternalHDD +sceFsUfsMkfsForSystem +sceFsUfsMkfsWithFixedCylinderGroupSize +sceFsUfsReallocateSparseFile +sceFsUfsRecryptBlocks +sceFsUfsRecryptGetState +sceFsUfsRecryptIsUnfinished +sceFsUfsRecryptSyncMetadata +sceFsUfsSeekHoleInFile +sceFsUfsStopOperation +sceFsUmountDownloadData +sceFsUmountGamePkg +sceFsUmountLwfs +sceFsUmountLwfsCompat +sceFsUmountSaveData +sceFsUmountTrophyData +sceFsUmountWorkspace +sceFsUnbindApplication +sceFsUnbindPackages +sceFsWsCreate +sceFsWsDelete +sceFsWsFetchFileMetadata +sceFsWsFsck +sceFsWsGetStatus +sceFsWsMount +sceFsWsUmount +sceG2PDialogClose +sceG2PDialogGetResult +sceG2PDialogGetStatus +sceG2PDialogInitialize +sceG2PDialogOpen +sceG2PDialogTerminate +sceG2PDialogUpdateStatus +sceGameCustomDataDialogClose +sceGameCustomDataDialogGetResult +sceGameCustomDataDialogGetResultA +sceGameCustomDataDialogGetStatus +sceGameCustomDataDialogInitialize +sceGameCustomDataDialogOpen +sceGameCustomDataDialogOpenA +sceGameCustomDataDialogTerminate +sceGameCustomDataDialogUpdateStatus +sceGameLiveStreamingApplySocialFeedbackMessageFilter +sceGameLiveStreamingCheckCallback +sceGameLiveStreamingClearPresetSocialFeedbackCommands +sceGameLiveStreamingClearSocialFeedbackMessages +sceGameLiveStreamingClearSpoilerTag +sceGameLiveStreamingEnableLiveStreaming +sceGameLiveStreamingEnableSocialFeedback +sceGameLiveStreamingGetCurrentBroadcastScreenLayout +sceGameLiveStreamingGetCurrentStatus +sceGameLiveStreamingGetCurrentStatus2 +sceGameLiveStreamingGetProgramInfo +sceGameLiveStreamingGetSocialFeedbackMessages +sceGameLiveStreamingGetSocialFeedbackMessagesCount +sceGameLiveStreamingInitialize +sceGameLiveStreamingLaunchLiveViewer +sceGameLiveStreamingLaunchLiveViewerA +sceGameLiveStreamingPermitLiveStreaming +sceGameLiveStreamingPermitServerSideRecording +sceGameLiveStreamingPostSocialMessage +sceGameLiveStreamingRegisterCallback +sceGameLiveStreamingScreenCloseSeparateMode +sceGameLiveStreamingScreenConfigureSeparateMode +sceGameLiveStreamingScreenInitialize +sceGameLiveStreamingScreenInitializeSeparateModeParameter +sceGameLiveStreamingScreenOpenSeparateMode +sceGameLiveStreamingScreenSetMode +sceGameLiveStreamingScreenTerminate +sceGameLiveStreamingSetCameraFrameSetting +sceGameLiveStreamingSetDefaultServiceProviderPermission +sceGameLiveStreamingSetGuardAreas +sceGameLiveStreamingSetInvitationSessionId +sceGameLiveStreamingSetLinkCommentPreset +sceGameLiveStreamingSetMaxBitrate +sceGameLiveStreamingSetMetadata +sceGameLiveStreamingSetPresetSocialFeedbackCommands +sceGameLiveStreamingSetPresetSocialFeedbackCommandsDescription +sceGameLiveStreamingSetServiceProviderPermission +sceGameLiveStreamingSetSpoilerTag +sceGameLiveStreamingSetStandbyScreenResource +sceGameLiveStreamingStartDebugBroadcast +sceGameLiveStreamingStartGenerateStandbyScreenResource +sceGameLiveStreamingStartSocialFeedbackMessageFiltering +sceGameLiveStreamingStopDebugBroadcast +sceGameLiveStreamingStopGenerateStandbyScreenResource +sceGameLiveStreamingStopSocialFeedbackMessageFiltering +sceGameLiveStreamingTerminate +sceGameLiveStreamingUnregisterCallback +sceGameRightGetLogoPngImage +sceGameRightGetLogoPngImageSizeInBytes +sceGameRightGetString +sceGameRightGetStringSizeInBytes +sceGameRightGetVersion +sceGameUpdateAbortRequest +sceGameUpdateCheck +sceGameUpdateCreateRequest +sceGameUpdateDeleteRequest +sceGameUpdateGetAddcontLatestVersion +sceGameUpdateInitialize +sceGameUpdateTerminate +sceGicGetValue +sceGnmAddEqEvent +sceGnmAreSubmitsAllowed +sceGnmBeginWorkload +sceGnmComputeWaitOnAddress +sceGnmComputeWaitSemaphore +sceGnmCreateWorkloadStream +sceGnmDebugHardwareStatus +sceGnmDebugModuleReset +sceGnmDebugReset +sceGnmDebuggerGetAddressWatch +sceGnmDebuggerHaltWavefront +sceGnmDebuggerReadGds +sceGnmDebuggerReadSqIndirectRegister +sceGnmDebuggerResumeWavefront +sceGnmDebuggerResumeWavefrontCreation +sceGnmDebuggerSetAddressWatch +sceGnmDebuggerWriteGds +sceGnmDebuggerWriteSqIndirectRegister +sceGnmDeleteEqEvent +sceGnmDestroyWorkloadStream +sceGnmDingDong +sceGnmDingDongForWorkload +sceGnmDisableMipStatsReport +sceGnmDispatchDirect +sceGnmDispatchIndirect +sceGnmDispatchIndirectOnMec +sceGnmDispatchInitDefaultHardwareState +sceGnmDrawIndex +sceGnmDrawIndexAuto +sceGnmDrawIndexIndirect +sceGnmDrawIndexIndirectCountMulti +sceGnmDrawIndexIndirectMulti +sceGnmDrawIndexMultiInstanced +sceGnmDrawIndexOffset +sceGnmDrawIndirect +sceGnmDrawIndirectCountMulti +sceGnmDrawIndirectMulti +sceGnmDrawInitDefaultHardwareState +sceGnmDrawInitDefaultHardwareState175 +sceGnmDrawInitDefaultHardwareState200 +sceGnmDrawInitDefaultHardwareState350 +sceGnmDrawInitToDefaultContextState +sceGnmDrawInitToDefaultContextState400 +sceGnmDrawInitToDefaultContextStateInternalCommand +sceGnmDrawInitToDefaultContextStateInternalSize +sceGnmDrawOpaqueAuto +sceGnmDriverCaptureInProgress +sceGnmDriverInternalRetrieveGnmInterface +sceGnmDriverInternalRetrieveGnmInterfaceForGpuDebugger +sceGnmDriverInternalRetrieveGnmInterfaceForGpuException +sceGnmDriverInternalRetrieveGnmInterfaceForHDRScopes +sceGnmDriverInternalRetrieveGnmInterfaceForReplay +sceGnmDriverInternalRetrieveGnmInterfaceForResourceRegistration +sceGnmDriverInternalRetrieveGnmInterfaceForValidation +sceGnmDriverInternalVirtualQuery +sceGnmDriverTraceInProgress +sceGnmDriverTriggerCapture +sceGnmEndWorkload +sceGnmFindResources +sceGnmFindResourcesPublic +sceGnmFlushGarlic +sceGnmGetCoredumpAddress +sceGnmGetCoredumpMode +sceGnmGetCoredumpProtectionFaultTimestamp +sceGnmGetDbgGcHandle +sceGnmGetDebugTimestamp +sceGnmGetEqEventType +sceGnmGetEqTimeStamp +sceGnmGetGpuBlockStatus +sceGnmGetGpuCoreClockFrequency +sceGnmGetGpuInfoStatus +sceGnmGetLastWaitedAddress +sceGnmGetNumTcaUnits +sceGnmGetOffChipTessellationBufferSize +sceGnmGetOwnerName +sceGnmGetPhysicalCounterFromVirtualized +sceGnmGetPhysicalCounterFromVirtualizedInternal +sceGnmGetProtectionFaultTimeStamp +sceGnmGetResourceBaseAddressAndSizeInBytes +sceGnmGetResourceName +sceGnmGetResourceRegistrationBuffers +sceGnmGetResourceShaderGuid +sceGnmGetResourceType +sceGnmGetResourceUserData +sceGnmGetShaderProgramBaseAddress +sceGnmGetShaderStatus +sceGnmGetTheTessellationFactorRingBufferBaseAddress +sceGnmGpuPaDebugEnter +sceGnmGpuPaDebugLeave +sceGnmInitialize +sceGnmInsertDingDongMarker +sceGnmInsertPopMarker +sceGnmInsertPushColorMarker +sceGnmInsertPushMarker +sceGnmInsertSetColorMarker +sceGnmInsertSetMarker +sceGnmInsertThreadTraceMarker +sceGnmInsertWaitFlipDone +sceGnmIsCoredumpValid +sceGnmIsUserPaEnabled +sceGnmLogicalCuIndexToPhysicalCuIndex +sceGnmLogicalCuMaskToPhysicalCuMask +sceGnmLogicalTcaUnitToPhysical +sceGnmMapComputeQueue +sceGnmMapComputeQueueWithPriority +sceGnmPaDisableFlipCallbacks +sceGnmPaEnableFlipCallbacks +sceGnmPaHeartbeat +sceGnmQueryResourceRegistrationUserMemoryRequirements +sceGnmRaiseUserExceptionEvent +sceGnmRegisterGdsResource +sceGnmRegisterGnmLiveCallbackConfig +sceGnmRegisterOwner +sceGnmRegisterOwnerForSystem +sceGnmRegisterResource +sceGnmRequestFlipAndSubmitDone +sceGnmRequestFlipAndSubmitDoneForWorkload +sceGnmRequestMipStatsReportAndReset +sceGnmResetVgtControl +sceGnmSdmaClose +sceGnmSdmaConstFill +sceGnmSdmaCopyLinear +sceGnmSdmaCopyTiled +sceGnmSdmaCopyWindow +sceGnmSdmaFlush +sceGnmSdmaGetMinCmdSize +sceGnmSdmaOpen +sceGnmSetCsShader +sceGnmSetCsShaderWithModifier +sceGnmSetEmbeddedPsShader +sceGnmSetEmbeddedVsShader +sceGnmSetEsShader +sceGnmSetGsRingSizes +sceGnmSetGsShader +sceGnmSetHsShader +sceGnmSetLsShader +sceGnmSetPsShader +sceGnmSetPsShader350 +sceGnmSetResourceRegistrationUserMemory +sceGnmSetResourceUserData +sceGnmSetSpiEnableSqCounters +sceGnmSetSpiEnableSqCountersForUnitInstance +sceGnmSetVgtControl +sceGnmSetVsShader +sceGnmSetWaveLimitMultiplier +sceGnmSetWaveLimitMultipliers +sceGnmSetupMipStatsReport +sceGnmSpmEndSpm +sceGnmSpmInit +sceGnmSpmInit2 +sceGnmSpmSetDelay +sceGnmSpmSetMuxRam +sceGnmSpmSetMuxRam2 +sceGnmSpmSetSelectCounter +sceGnmSpmSetSpmSelects +sceGnmSpmSetSpmSelects2 +sceGnmSpmStartSpm +sceGnmSqttFini +sceGnmSqttFinishTrace +sceGnmSqttGetBcInfo +sceGnmSqttGetGpuClocks +sceGnmSqttGetHiWater +sceGnmSqttGetStatus +sceGnmSqttGetTraceCounter +sceGnmSqttGetTraceWptr +sceGnmSqttGetWrapCounts +sceGnmSqttGetWrapCounts2 +sceGnmSqttGetWritebackLabels +sceGnmSqttInit +sceGnmSqttSelectMode +sceGnmSqttSelectTarget +sceGnmSqttSelectTokens +sceGnmSqttSetCuPerfMask +sceGnmSqttSetDceEventWrite +sceGnmSqttSetHiWater +sceGnmSqttSetTraceBuffer2 +sceGnmSqttSetTraceBuffers +sceGnmSqttSetUserData +sceGnmSqttSetUserdataTimer +sceGnmSqttStartTrace +sceGnmSqttStopTrace +sceGnmSqttSwitchTraceBuffer +sceGnmSqttSwitchTraceBuffer2 +sceGnmSqttWaitForEvent +sceGnmSubmitAndFlipCommandBuffers +sceGnmSubmitAndFlipCommandBuffersForWorkload +sceGnmSubmitCommandBuffers +sceGnmSubmitCommandBuffersForWorkload +sceGnmSubmitDone +sceGnmSysClose +sceGnmSysEnableSubmitDone45Exception +sceGnmSysGetClientNumber +sceGnmSysIsGameClosed +sceGnmSysOpen +sceGnmSysResetOttvLibrary +sceGnmSysSubmitCommandBuffersWithPid +sceGnmSysSubmitFlipHandleProxy +sceGnmUnmapComputeQueue +sceGnmUnregisterAllResourcesForOwner +sceGnmUnregisterOwnerAndResources +sceGnmUnregisterResource +sceGnmUpdateGsShader +sceGnmUpdateHsShader +sceGnmUpdatePsShader +sceGnmUpdatePsShader350 +sceGnmUpdateVsShader +sceGnmValidateAndSubmitCommandBuffers +sceGnmValidateCommandBuffers +sceGnmValidateDisableDiagnostics +sceGnmValidateDisableDiagnostics2 +sceGnmValidateDispatchCommandBuffers +sceGnmValidateDrawCommandBuffers +sceGnmValidateGetDiagnosticInfo +sceGnmValidateGetDiagnostics +sceGnmValidateGetVersion +sceGnmValidateOnSubmitEnabled +sceGnmValidateResetState +sceGnmValidateSubmitAndFlipCommandBuffers +sceGnmValidationRegisterMemoryCheckCallback +sceGpuExceptionAddDebuggerHandler +sceGpuExceptionAddRazorHandler +sceGpuExceptionGetStatus +sceGpuExceptionRemoveDebuggerHandler +sceGpuExceptionRemoveRazorHandler +sceGpuTraceCancel +sceGpuTraceParametersInit +sceGpuTraceParametersSetDuration +sceGpuTraceParametersSetGroup +sceGpuTraceParametersSetMemorySize +sceGpuTraceStart +sceGpuTraceStop +sceHandDetection +sceHandDetectionGetDefaultParam +sceHandDetectionGetWorkingMemorySize +sceHandDetectionLocal +sceHandDetectionLocalGetDefaultParam +sceHandTrackerEraseResult +sceHandTrackerGetDataMemorySize +sceHandTrackerGetDefaultParam +sceHandTrackerGetDepthRoi +sceHandTrackerInitialize +sceHandTrackerSetDepthInfo +sceHandTrackerSetFaceInfo +sceHandTrackerUpdate +sceHeadTrackerFinalize +sceHeadTrackerGetNumberOfRunningInstance +sceHeadTrackerInitialize +sceHeadTrackerQueryWorkingMemory +sceHeadTrackerSearchCandidate +sceHeadTrackerStart +sceHeadTrackerStop +sceHeadTrackerUpdate +sceHeadTrackerUpdateDebug +sceHidControlConnectHandle +sceHidControlConnectPort +sceHidControlDisconnectDevice +sceHidControlDisconnectHandle +sceHidControlDisconnectPort +sceHidControlGetAuthInformation +sceHidControlGetBatteryState +sceHidControlGetDeviceId +sceHidControlGetDeviceInfo +sceHidControlGetDeviceName +sceHidControlGetJediExtensionUnitInfo +sceHidControlGetJediState +sceHidControlGetSparkState +sceHidControlGetVersionInfo +sceHidControlInit +sceHidControlSetApplicationFocus +sceHidControlSetHandleState +sceHidControlSetJediAudioOutPath +sceHidControlSetJediVolumeGain +sceHidControlSetProcessFocus +sceHidControlSetRevokeList +sceHidControlSetRevokeList2 +sceHidControlSetUserColor +sceHmd2Close +sceHmd2GazeGetCalibrationData +sceHmd2GazeGetCalibrationDataMaxSize +sceHmd2GazeGetResult +sceHmd2GazeGetResultForFoveatedRendering +sceHmd2GetDeviceInformation +sceHmd2GetDeviceInformationByHandle +sceHmd2GetFieldOfView +sceHmd2GetFieldOfViewWithoutHandle +sceHmd2Initialize +sceHmd2Open +sceHmd2ReprojectionBeginFrame +sceHmd2ReprojectionClearUserEventEnd +sceHmd2ReprojectionClearUserEventStart +sceHmd2ReprojectionDisableMirroring +sceHmd2ReprojectionDisableVrMode +sceHmd2ReprojectionEnableMirroring +sceHmd2ReprojectionEnableVrMode +sceHmd2ReprojectionGetCurrentOutput +sceHmd2ReprojectionGetMirroringDisplayBufferSizeAlign +sceHmd2ReprojectionGetMirroringWorkMemorySizeAlign +sceHmd2ReprojectionGetPredictedDisplayTime +sceHmd2ReprojectionGetStatus +sceHmd2ReprojectionInitialize +sceHmd2ReprojectionQueryBufferSizeAlign +sceHmd2ReprojectionQueryDisplayBufferSizeAlign +sceHmd2ReprojectionSetAllowPositionalReprojection +sceHmd2ReprojectionSetMirroringOption +sceHmd2ReprojectionSetParam +sceHmd2ReprojectionSetParamWithBuffer +sceHmd2ReprojectionSetRenderConfig +sceHmd2ReprojectionSetTiming +sceHmd2ReprojectionSetUserEventEnd +sceHmd2ReprojectionSetUserEventStart +sceHmd2ReprojectionTerminate +sceHmd2SetVibration +sceHmd2Terminate +sceHmdClose +sceHmdDistortionGet2dVrCommand +sceHmdDistortionGetCompoundEyeCorrectionCommand +sceHmdDistortionGetCorrectionCommand +sceHmdDistortionGetWideNearCorrectionCommand +sceHmdDistortionGetWorkMemoryAlign +sceHmdDistortionGetWorkMemorySize +sceHmdDistortionInitialize +sceHmdDistortionSetOutputMinColor +sceHmdFillDistortionBuffer +sceHmdGet2DEyeOffset +sceHmdGet2dDistortionMap +sceHmdGet2dVrCommand +sceHmdGetAssyError +sceHmdGetDeviceInformation +sceHmdGetDeviceInformationByHandle +sceHmdGetDistortionCorrectionCommand +sceHmdGetDistortionCorrectionCommand2d +sceHmdGetDistortionCorrectionCommandApprox +sceHmdGetDistortionMap +sceHmdGetDistortionParams +sceHmdGetDistortionWorkMemoryAlign +sceHmdGetDistortionWorkMemoryAlignFor2d +sceHmdGetDistortionWorkMemorySize +sceHmdGetDistortionWorkMemorySizeFor2d +sceHmdGetEyeStatus +sceHmdGetFieldOfView +sceHmdGetFieldOfView2d +sceHmdGetFieldOfViewApprox +sceHmdGetInertialSensorData +sceHmdGetViewStatus +sceHmdGetWideNearDistortionCorrectionCommand +sceHmdInitialize +sceHmdInitialize315 +sceHmdInternal3dAudioClose +sceHmdInternal3dAudioOpen +sceHmdInternal3dAudioSendData +sceHmdInternalAnotherScreenClose +sceHmdInternalAnotherScreenGetAudioStatus +sceHmdInternalAnotherScreenGetFadeState +sceHmdInternalAnotherScreenGetVideoStatus +sceHmdInternalAnotherScreenOpen +sceHmdInternalAnotherScreenSendAudio +sceHmdInternalAnotherScreenSendVideo +sceHmdInternalAnotherScreenSetFadeAndSwitch +sceHmdInternalBindDeviceWithUserId +sceHmdInternalCheckDeviceModelMk3 +sceHmdInternalCheckS3dPassModeAvailable +sceHmdInternalCrashReportCancel +sceHmdInternalCrashReportClose +sceHmdInternalCrashReportOpen +sceHmdInternalCrashReportReadData +sceHmdInternalCrashReportReadDataSize +sceHmdInternalCreateSharedMemory +sceHmdInternalDfuCheckAfterPvt +sceHmdInternalDfuCheckPartialUpdateAvailable +sceHmdInternalDfuClose +sceHmdInternalDfuGetStatus +sceHmdInternalDfuOpen +sceHmdInternalDfuReset +sceHmdInternalDfuSend +sceHmdInternalDfuSendSize +sceHmdInternalDfuSetMode +sceHmdInternalDfuStart +sceHmdInternalEventInitialize +sceHmdInternalGetBrightness +sceHmdInternalGetCrashDumpInfo +sceHmdInternalGetDebugMode +sceHmdInternalGetDebugSocialScreenMode +sceHmdInternalGetDebugTextMode +sceHmdInternalGetDefaultLedData +sceHmdInternalGetDemoMode +sceHmdInternalGetDeviceInformation +sceHmdInternalGetDeviceInformationByHandle +sceHmdInternalGetDeviceStatus +sceHmdInternalGetEyeStatus +sceHmdInternalGetHmuOpticalParam +sceHmdInternalGetHmuPowerStatusForDebug +sceHmdInternalGetHmuSerialNumber +sceHmdInternalGetIPD +sceHmdInternalGetIpdSettingEnableForSystemService +sceHmdInternalGetPUSerialNumber +sceHmdInternalGetPUVersion +sceHmdInternalGetPuBuildNumber +sceHmdInternalGetPuPositionParam +sceHmdInternalGetPuRevision +sceHmdInternalGetRequiredPUPVersion +sceHmdInternalGetSensorCalibrationData +sceHmdInternalGetStatusReport +sceHmdInternalGetTv4kCapability +sceHmdInternalGetVirtualDisplayDepth +sceHmdInternalGetVirtualDisplayHeight +sceHmdInternalGetVirtualDisplaySize +sceHmdInternalGetVr2dData +sceHmdInternalIsCommonDlgMiniAppVr2d +sceHmdInternalIsCommonDlgVr2d +sceHmdInternalIsGameVr2d +sceHmdInternalIsMiniAppVr2d +sceHmdInternalMapSharedMemory +sceHmdInternalMirroringModeSetAspect +sceHmdInternalMirroringModeSetAspectDebug +sceHmdInternalMmapGetCount +sceHmdInternalMmapGetModeId +sceHmdInternalMmapGetSensorCalibrationData +sceHmdInternalMmapIsConnect +sceHmdInternalPushVr2dData +sceHmdInternalRegisterEventCallback +sceHmdInternalResetInertialSensor +sceHmdInternalResetLedForVrTracker +sceHmdInternalResetLedForVsh +sceHmdInternalSeparateModeClose +sceHmdInternalSeparateModeGetAudioStatus +sceHmdInternalSeparateModeGetVideoStatus +sceHmdInternalSeparateModeOpen +sceHmdInternalSeparateModeSendAudio +sceHmdInternalSeparateModeSendVideo +sceHmdInternalSetBrightness +sceHmdInternalSetCrashReportCommand +sceHmdInternalSetDebugGpo +sceHmdInternalSetDebugMode +sceHmdInternalSetDebugSocialScreenMode +sceHmdInternalSetDebugTextMode +sceHmdInternalSetDefaultLedData +sceHmdInternalSetDemoMode +sceHmdInternalSetDeviceConnection +sceHmdInternalSetForcedCrash +sceHmdInternalSetHmuPowerControl +sceHmdInternalSetHmuPowerControlForDebug +sceHmdInternalSetIPD +sceHmdInternalSetIPDSettingEnableForSystemService +sceHmdInternalSetIpdSettingEnableForSystemService +sceHmdInternalSetLedOn +sceHmdInternalSetM2LedBrightness +sceHmdInternalSetM2LedOn +sceHmdInternalSetPortConnection +sceHmdInternalSetPortStatus +sceHmdInternalSetS3dPassMode +sceHmdInternalSetSidetone +sceHmdInternalSetUserType +sceHmdInternalSetVRMode +sceHmdInternalSetVirtualDisplayDepth +sceHmdInternalSetVirtualDisplayHeight +sceHmdInternalSetVirtualDisplaySize +sceHmdInternalSocialScreenGetFadeState +sceHmdInternalSocialScreenSetFadeAndSwitch +sceHmdInternalSocialScreenSetOutput +sceHmdOpen +sceHmdReprojectionAddDisplayBuffer +sceHmdReprojectionClearUserEventEnd +sceHmdReprojectionClearUserEventStart +sceHmdReprojectionDebugGetLastInfo +sceHmdReprojectionDebugGetLastInfoMultilayer +sceHmdReprojectionFinalize +sceHmdReprojectionFinalizeCapture +sceHmdReprojectionInitialize +sceHmdReprojectionInitializeCapture +sceHmdReprojectionQueryGarlicBuffAlign +sceHmdReprojectionQueryGarlicBuffSize +sceHmdReprojectionQueryOnionBuffAlign +sceHmdReprojectionQueryOnionBuffSize +sceHmdReprojectionSetCallback +sceHmdReprojectionSetDisplayBuffers +sceHmdReprojectionSetOutputMinColor +sceHmdReprojectionSetUserEventEnd +sceHmdReprojectionSetUserEventStart +sceHmdReprojectionSetUserEventToFinish +sceHmdReprojectionSetUserEventToStart +sceHmdReprojectionStart +sceHmdReprojectionStart2dVr +sceHmdReprojectionStartCapture +sceHmdReprojectionStartCompoundEye +sceHmdReprojectionStartLiveCapture +sceHmdReprojectionStartMultilayer +sceHmdReprojectionStartMultilayer2 +sceHmdReprojectionStartWideNear +sceHmdReprojectionStartWideNearWithOverlay +sceHmdReprojectionStartWithOverlay +sceHmdReprojectionStop +sceHmdReprojectionStopCapture +sceHmdReprojectionStopLiveCapture +sceHmdReprojectionUnsetCallback +sceHmdReprojectionUnsetDisplayBuffers +sceHmdSetupDialogClose +sceHmdSetupDialogGetResult +sceHmdSetupDialogGetStatus +sceHmdSetupDialogInitialize +sceHmdSetupDialogOpen +sceHmdSetupDialogTerminate +sceHmdSetupDialogUpdateStatus +sceHmdTerminate +sceHttp2AbortRequest +sceHttp2AddCookie +sceHttp2AddRequestHeader +sceHttp2AuthCacheFlush +sceHttp2CookieExport +sceHttp2CookieFlush +sceHttp2CookieImport +sceHttp2CreateCookieBox +sceHttp2CreateRequestWithURL +sceHttp2CreateTemplate +sceHttp2DeleteCookieBox +sceHttp2DeleteRequest +sceHttp2DeleteTemplate +sceHttp2GetAllResponseHeaders +sceHttp2GetAllTrailingHeaders +sceHttp2GetAuthEnabled +sceHttp2GetAutoRedirect +sceHttp2GetCookie +sceHttp2GetCookieBox +sceHttp2GetCookieStats +sceHttp2GetMemoryPoolStats +sceHttp2GetResponseContentLength +sceHttp2GetStatusCode +sceHttp2Init +sceHttp2ReadData +sceHttp2ReadDataAsync +sceHttp2RedirectCacheFlush +sceHttp2RemoveRequestHeader +sceHttp2SendRequest +sceHttp2SendRequestAsync +sceHttp2SetAuthEnabled +sceHttp2SetAuthInfoCallback +sceHttp2SetAutoRedirect +sceHttp2SetConnectTimeOut +sceHttp2SetConnectionWaitTimeOut +sceHttp2SetCookieBox +sceHttp2SetCookieMaxNum +sceHttp2SetCookieMaxNumPerDomain +sceHttp2SetCookieMaxSize +sceHttp2SetCookieRecvCallback +sceHttp2SetCookieSendCallback +sceHttp2SetInflateGZIPEnabled +sceHttp2SetMinSslVersion +sceHttp2SetPreSendCallback +sceHttp2SetRecvTimeOut +sceHttp2SetRedirectCallback +sceHttp2SetRequestContentLength +sceHttp2SetRequestNoContentLength +sceHttp2SetResolveRetry +sceHttp2SetResolveTimeOut +sceHttp2SetSendTimeOut +sceHttp2SetSslCallback +sceHttp2SetTimeOut +sceHttp2SslDisableOption +sceHttp2SslEnableOption +sceHttp2Term +sceHttp2WaitAsync +sceHttp2WebSocketClose +sceHttp2WebSocketCloseAsync +sceHttp2WebSocketCreateRequest +sceHttp2WebSocketSendDataMessage +sceHttp2WebSocketSendDataMessageAsync +sceHttp2WebSocketSendTextMessage +sceHttp2WebSocketSendTextMessageAsync +sceHttp2WebSocketSetPingInterval +sceHttp2WebSocketSetPingTimeout +sceHttpAbortRequest +sceHttpAbortRequestForce +sceHttpAbortWaitRequest +sceHttpAddCookie +sceHttpAddQuery +sceHttpAddRequestHeader +sceHttpAddRequestHeaderRaw +sceHttpAuthCacheExport sceHttpAuthCacheFlush +sceHttpAuthCacheImport +sceHttpCacheClear +sceHttpCacheClearAll +sceHttpCacheCompleteRequest +sceHttpCacheCreateRequest +sceHttpCacheCreateRequestWithTag +sceHttpCacheDeleteRequest +sceHttpCacheInit +sceHttpCacheReadData +sceHttpCacheRedirectedConnectionEnabled +sceHttpCacheRetrieve +sceHttpCacheRetrieveWithMemoryPool +sceHttpCacheRevalidate +sceHttpCacheRevalidateWithMemoryPool +sceHttpCacheSetCacheSharing +sceHttpCacheSetData +sceHttpCacheSetQuota +sceHttpCacheSetResponseHeader +sceHttpCacheSystemClearAll +sceHttpCacheSystemInit +sceHttpCacheSystemSendStatistics +sceHttpCacheSystemShutdown +sceHttpCacheSystemTerm +sceHttpCacheTerm +sceHttpCookieExport +sceHttpCookieFlush +sceHttpCookieImport +sceHttpCreateConnection +sceHttpCreateConnectionWithURL +sceHttpCreateEpoll +sceHttpCreateRequest +sceHttpCreateRequest2 +sceHttpCreateRequestWithURL +sceHttpCreateRequestWithURL2 +sceHttpCreateTemplate +sceHttpDbgEnableProfile +sceHttpDbgGetConnectionStat +sceHttpDbgGetRequestStat +sceHttpDbgSetPrintf +sceHttpDbgShowConnectionStat +sceHttpDbgShowMemoryPoolStat +sceHttpDbgShowRequestStat +sceHttpDbgShowStat +sceHttpDeleteConnection +sceHttpDeleteRequest +sceHttpDeleteTemplate +sceHttpDestroyEpoll +sceHttpGetAcceptEncodingGZIPEnabled +sceHttpGetAllResponseHeaders +sceHttpGetAuthEnabled +sceHttpGetAutoRedirect +sceHttpGetConnectionStat +sceHttpGetCookie +sceHttpGetCookieEnabled +sceHttpGetCookieStats +sceHttpGetEpoll +sceHttpGetEpollId +sceHttpGetLastErrno +sceHttpGetMemoryPoolStats +sceHttpGetNonblock +sceHttpGetRegisteredCtxIds +sceHttpGetResponseContentLength +sceHttpGetStatusCode +sceHttpInit +sceHttpParseResponseHeader +sceHttpParseStatusLine +sceHttpReadData +sceHttpRedirectCacheFlush +sceHttpRemoveRequestHeader +sceHttpRequestGetAllHeaders +sceHttpSendRequest +sceHttpSetAcceptEncodingGZIPEnabled +sceHttpSetAuthEnabled +sceHttpSetAuthInfoCallback +sceHttpSetAutoRedirect +sceHttpSetChunkedTransferEnabled +sceHttpSetConnectTimeOut +sceHttpSetCookieEnabled +sceHttpSetCookieMaxNum +sceHttpSetCookieMaxNumPerDomain +sceHttpSetCookieMaxSize +sceHttpSetCookieRecvCallback +sceHttpSetCookieSendCallback +sceHttpSetCookieTotalMaxSize +sceHttpSetDefaultAcceptEncodingGZIPEnabled +sceHttpSetDelayBuildRequestEnabled +sceHttpSetEpoll +sceHttpSetEpollId +sceHttpSetHttp09Enabled +sceHttpSetInflateGZIPEnabled +sceHttpSetNonblock +sceHttpSetPolicyOption +sceHttpSetPriorityOption +sceHttpSetProxy +sceHttpSetRecvBlockSize +sceHttpSetRecvTimeOut +sceHttpSetRedirectCallback +sceHttpSetRequestContentLength +sceHttpSetRequestStatusCallback +sceHttpSetResolveRetry +sceHttpSetResolveTimeOut +sceHttpSetResponseHeaderMaxSize +sceHttpSetSendTimeOut +sceHttpSetSocketCreationCallback +sceHttpTerm +sceHttpTryGetNonblock +sceHttpTrySetNonblock +sceHttpUnsetEpoll +sceHttpUriBuild +sceHttpUriCopy +sceHttpUriEscape +sceHttpUriMerge +sceHttpUriParse +sceHttpUriSweepPath +sceHttpUriUnescape +sceHttpWaitRequest +sceHttpsDisableOption +sceHttpsDisableOptionPrivate +sceHttpsEnableOption +sceHttpsEnableOptionPrivate +sceHttpsFreeCaList +sceHttpsGetCaList +sceHttpsGetSslError +sceHttpsLoadCert +sceHttpsSetMinSslVersion +sceHttpsSetSslCallback +sceHttpsSetSslVersion +sceHttpsUnloadCert +sceHubAppUtilDeeplinkToLiveDetailView +sceHubAppUtilDeeplinkToPSSubscriptions +sceHubAppUtilGetInstallationStatus +sceIduGetEnv +sceIduInit +sceIduInstallPkg +sceIduIsAppInstalled +sceIduIsRifInstalled +sceIduIsStaffMode +sceIduReboot +sceIduTerm +sceIduUtilClearAllSchedules +sceIduUtilDeleteSaveData +sceIduUtilDisablePriorityDownloads +sceIduUtilDownloadInstallPkg +sceIduUtilEnablePriorityDownloads +sceIduUtilGetAppVersion +sceIduUtilGetBgftProgress +sceIduUtilGetCompilationDiscInfo +sceIduUtilGetCompilationDiscTitleInfo +sceIduUtilGetDiscInfo +sceIduUtilGetDiskSpaceStats +sceIduUtilGetDownloadInstallProgress +sceIduUtilGetDownloadState +sceIduUtilGetEnvironment +sceIduUtilGetInstalledApp +sceIduUtilGetInstalledAppWithOffset +sceIduUtilGetMasterVersion +sceIduUtilGetNumInstalledApps +sceIduUtilGetNumSchedules +sceIduUtilGetOpenPsId +sceIduUtilGetSchedule +sceIduUtilGetSettingBin +sceIduUtilGetSettingInt +sceIduUtilGetSettingStr +sceIduUtilHideOverlay +sceIduUtilInitialize +sceIduUtilIsAppInstalled +sceIduUtilIsDiscCompilationDisc +sceIduUtilIsDiscInserted +sceIduUtilIsInitialised +sceIduUtilIsRifInstalled +sceIduUtilIsStaffMode +sceIduUtilLaunchTitle +sceIduUtilLaunchTitleV2 +sceIduUtilPauseAllDownloads +sceIduUtilReboot +sceIduUtilRegisterFlag +sceIduUtilRegisterOverlayMsg +sceIduUtilResumeAllDownloads +sceIduUtilSetMoveMode +sceIduUtilSetPupVersion +sceIduUtilSetSchedule +sceIduUtilSetSettingBin +sceIduUtilSetSettingInt +sceIduUtilSetSettingStr +sceIduUtilSetSysLanguage +sceIduUtilShowOverlay +sceIduUtilSystemVersion +sceIduUtilTerminate +sceIduUtilUninstallApp +sceIduUtilUpdateSelf +sceImeBackendAllConfirm +sceImeBackendAllDeleteConvertString +sceImeBackendBackspaceCharacter +sceImeBackendClose +sceImeBackendConvertBackward +sceImeBackendConvertCancel +sceImeBackendConvertForward +sceImeBackendDeleteCharacter +sceImeBackendEnterCharacter +sceImeBackendForTestFunction +sceImeBackendGetCandidateList +sceImeBackendGetCandidateListSize +sceImeBackendGetCandidateSelect +sceImeBackendGetCaretIndex +sceImeBackendGetConfirmString +sceImeBackendGetConvertMode +sceImeBackendGetConvertString +sceImeBackendGetStatus +sceImeBackendGetString +sceImeBackendModeCaretNext +sceImeBackendModeCaretPrevious +sceImeBackendOpen +sceImeBackendParamInit +sceImeBackendPartConfirm +sceImeBackendReset +sceImeBackendSetConvertMode +sceImeBackendTemporalConfirm +sceImeCheckFilterText +sceImeCheckRemoteEventParam +sceImeCheckUpdateTextInfo +sceImeClose +sceImeConfigGet +sceImeConfigSet +sceImeConfirmCandidate +sceImeDialogAbort +sceImeDialogForTestFunction +sceImeDialogForceClose +sceImeDialogGetCurrentStarState +sceImeDialogGetPanelPositionAndForm +sceImeDialogGetPanelSize +sceImeDialogGetPanelSizeExtended +sceImeDialogGetResult +sceImeDialogGetStatus +sceImeDialogInit +sceImeDialogInitInternal +sceImeDialogInitInternal2 +sceImeDialogInitInternal3 +sceImeDialogSetPanelPosition +sceImeDialogTerm +sceImeDicAddWord +sceImeDicDeleteLearnDics +sceImeDicDeleteUserDics +sceImeDicDeleteWord +sceImeDicGetWords +sceImeDicReplaceWord +sceImeDisableController +sceImeFilterText +sceImeForTestFunction +sceImeGetPanelPositionAndForm +sceImeGetPanelSize +sceImeKeyboardClose +sceImeKeyboardGetInfo +sceImeKeyboardGetResourceId +sceImeKeyboardOpen +sceImeKeyboardOpenInternal +sceImeKeyboardSetMode +sceImeKeyboardUpdate +sceImeOpen +sceImeOpenInternal +sceImeParamInit +sceImeSetCandidateIndex +sceImeSetCaret +sceImeSetText +sceImeSetTextGeometry +sceImeUpdate +sceImeVshClearPreedit +sceImeVshClose +sceImeVshConfirmPreedit +sceImeVshDisableController +sceImeVshGetPanelPositionAndForm +sceImeVshInformConfirmdString +sceImeVshInformConfirmdString2 +sceImeVshOpen +sceImeVshSendTextInfo +sceImeVshSetCaretGeometry +sceImeVshSetCaretIndexInPreedit +sceImeVshSetPanelPosition +sceImeVshSetParam +sceImeVshSetPreeditGeometry +sceImeVshSetSelectGeometry +sceImeVshSetSelectionText +sceImeVshUpdate +sceImeVshUpdateContext +sceImeVshUpdateContext2 +sceInvitationDialogClose +sceInvitationDialogGetResult +sceInvitationDialogGetResultA +sceInvitationDialogGetStatus +sceInvitationDialogInitialize +sceInvitationDialogOpen +sceInvitationDialogOpenA +sceInvitationDialogTerminate +sceInvitationDialogUpdateStatus +sceIpmiMgrGetIpcBlockerPid +sceIpmiMgrGetIpcBlockerPidByAppId +sceIpmiMgrPauseDump +sceIpmiMgrRaiseExceptionToPid +sceIpmiMgrStartDump +sceJpegDecCreate +sceJpegDecDecode +sceJpegDecDecodeWithInputControl +sceJpegDecDelete +sceJpegDecParseHeader +sceJpegDecQueryMemorySize +sceJpegEncCreate +sceJpegEncDelete +sceJpegEncEncode +sceJpegEncQueryMemorySize +sceKernelAddACInfo +sceKernelAddAmprEvent +sceKernelAddAmprSystemEvent +sceKernelAddCpumodeEvent +sceKernelAddFileEvent +sceKernelAddGpuExceptionEvent +sceKernelAddHRTimerEvent +sceKernelAddProcessToCanvasMap +sceKernelAddReadEvent +sceKernelAddResource +sceKernelAddTimerEvent +sceKernelAddUserEvent +sceKernelAddUserEventEdge +sceKernelAddWriteEvent +sceKernelAioCancelRequest +sceKernelAioCancelRequests +sceKernelAioDeleteRequest +sceKernelAioDeleteRequests +sceKernelAioInitializeImpl +sceKernelAioInitializeParam +sceKernelAioPollRequest +sceKernelAioPollRequests +sceKernelAioSetParam +sceKernelAioSubmitReadCommands +sceKernelAioSubmitReadCommandsMultiple +sceKernelAioSubmitWriteCommands +sceKernelAioSubmitWriteCommandsMultiple +sceKernelAioWaitRequest +sceKernelAioWaitRequests +sceKernelAllocateDirectMemory +sceKernelAllocateDirectMemory2 +sceKernelAllocateDirectMemoryForApp +sceKernelAllocateDirectMemoryForMiniApp +sceKernelAllocateMainDirectMemory +sceKernelAllocateToolMemory +sceKernelAllocateTraceDirectMemory +sceKernelAprCtrl +sceKernelAprGetFileSize +sceKernelAprGetFileStat +sceKernelAprResolveFilepathsToIds +sceKernelAprResolveFilepathsToIdsAndFileSizes +sceKernelAprResolveFilepathsToIdsAndFileSizesForEach +sceKernelAprResolveFilepathsToIdsForEach +sceKernelAprResolveFilepathsWithPrefixToIds +sceKernelAprResolveFilepathsWithPrefixToIdsAndFileSizes +sceKernelAprResolveFilepathsWithPrefixToIdsAndFileSizesForEach +sceKernelAprResolveFilepathsWithPrefixToIdsForEach +sceKernelAprSubmitCommandBuffer +sceKernelAprSubmitCommandBufferAndGetId +sceKernelAprSubmitCommandBufferAndGetResult +sceKernelAprSubmitCommandBufferAndGetResult_TEST +sceKernelAprSubmitCommandBuffer_TEST +sceKernelAprWaitCommandBuffer +sceKernelAvailableDirectMemorySize +sceKernelAvailableFlexibleMemorySize +sceKernelAvailableToolMemorySize +sceKernelBacktraceSelf +sceKernelBatchMap +sceKernelBatchMap2 +sceKernelBeginAppMount +sceKernelBeginAppMount2 +sceKernelCallIndirectBuffer +sceKernelCallIndirectBuffer2 +sceKernelCallIndirectBuffer3 +sceKernelCancelAIO +sceKernelCancelEventFlag +sceKernelCancelSema +sceKernelCheckDipsw +sceKernelCheckReachability +sceKernelCheckedReleaseDirectMemory +sceKernelChmod +sceKernelClearBootReqNotifyCount +sceKernelClearEventFlag +sceKernelClearGameDirectMemory +sceKernelClearVirtualRangeName +sceKernelClockGetres +sceKernelClockGettime +sceKernelClose +sceKernelCloseEport +sceKernelCloseEventFlag +sceKernelCloseSema +sceKernelConfiguredFlexibleMemorySize +sceKernelConvertLocaltimeToUtc +sceKernelConvertUtcToLocaltime +sceKernelCreateBudget +sceKernelCreateEport +sceKernelCreateEqueue +sceKernelCreateEventFlag +sceKernelCreateSblock +sceKernelCreateSema +sceKernelDebugAcquireAndUpdateDebugRegister +sceKernelDebugGetAppStatus +sceKernelDebugGetPauseCount +sceKernelDebugGetPrivateLogText +sceKernelDebugGetSchedLockMode +sceKernelDebugGetSdkLogText +sceKernelDebugGpuPaDebugIsInProgress +sceKernelDebugInjectProcessEvent +sceKernelDebugOutText +sceKernelDebugPackageCorrupted +sceKernelDebugRaiseException +sceKernelDebugRaiseExceptionOnReleaseMode +sceKernelDebugRaiseExceptionWithContext +sceKernelDebugRaiseExceptionWithInfo +sceKernelDebugReleaseDebugContext +sceKernelDebugSpawn +sceKernelDeleteACInfo +sceKernelDeleteAIO +sceKernelDeleteAmprEvent +sceKernelDeleteAmprSystemEvent +sceKernelDeleteBudget +sceKernelDeleteCpumodeEvent +sceKernelDeleteEport +sceKernelDeleteEqueue +sceKernelDeleteEventFlag +sceKernelDeleteFileEvent +sceKernelDeleteGpuExceptionEvent +sceKernelDeleteHRTimerEvent +sceKernelDeleteProcessFromCanvasMap +sceKernelDeleteReadEvent +sceKernelDeleteSavedApp +sceKernelDeleteSblock +sceKernelDeleteSema +sceKernelDeleteTimerEvent +sceKernelDeleteUserEvent +sceKernelDeleteWriteEvent +sceKernelDirectMemoryQuery +sceKernelDirectMemoryQueryForId +sceKernelDlsym +sceKernelEnableDmemAliasing +sceKernelEnableDmemAliasing2 +sceKernelEnablePthreadObjectCheck +sceKernelEndAppMount +sceKernelEndAppMount2 +sceKernelEnterSblock +sceKernelError +sceKernelEventLogClose +sceKernelEventLogInit +sceKernelEventLogOpen +sceKernelEventLogPread +sceKernelEventLogRead +sceKernelEventLogWrite +sceKernelExitSblock +sceKernelExpectedHddFormat +sceKernelFchmod +sceKernelFcntl +sceKernelFdatasync +sceKernelFlock +sceKernelFstat +sceKernelFsync +sceKernelFtruncate +sceKernelFutimes +sceKernelGetACInfoAllForCoredump +sceKernelGetAIOData +sceKernelGetAllowedSdkVersionOnSystem +sceKernelGetAppCategoryType +sceKernelGetAppInfo +sceKernelGetAppInfoByAppId +sceKernelGetAppState +sceKernelGetAslrStatus +sceKernelGetAutoUpdateVersion +sceKernelGetBackupRestoreMode +sceKernelGetBackupRestoreModeOfNextBoot +sceKernelGetBasicProductShape +sceKernelGetBetaUpdateTestForRcmgr +sceKernelGetBioUsageAll +sceKernelGetBootReqNotifyCount +sceKernelGetBudget +sceKernelGetBuildNumber +sceKernelGetCallRecord +sceKernelGetChildApp +sceKernelGetCompiledSdkVersion +sceKernelGetCompiledSdkVersionByPath +sceKernelGetCompiledSdkVersionByPid +sceKernelGetCoredumpAppInfo +sceKernelGetCpuFrequency +sceKernelGetCpuTemperature +sceKernelGetCpuUsage +sceKernelGetCpuUsageAll +sceKernelGetCpuUsageProc +sceKernelGetCpuUsageProc2 +sceKernelGetCpuUsageThread +sceKernelGetCpumode +sceKernelGetCpumodeGame +sceKernelGetCurrentCpu +sceKernelGetCurrentFanDuty +sceKernelGetDataTransferMode +sceKernelGetDebugMenuMiniModeForRcmgr +sceKernelGetDebugMenuModeForPsmForRcmgr +sceKernelGetDebugMenuModeForRcmgr +sceKernelGetDefaultToolMemorySize +sceKernelGetDirectMemorySize +sceKernelGetDirectMemoryType +sceKernelGetEmergencyErrorLog +sceKernelGetEventData +sceKernelGetEventError +sceKernelGetEventFflags +sceKernelGetEventFilter +sceKernelGetEventId +sceKernelGetEventUserData +sceKernelGetExecutableModuleHandle +sceKernelGetExtLibcHandle +sceKernelGetFakeFinalizeMenuForRcmgr +sceKernelGetFirstImageAddr +sceKernelGetFlagedUpdaterForRcmgr +sceKernelGetForceUpdateModeForRcmgr +sceKernelGetFsSandboxRandomWord +sceKernelGetGPI +sceKernelGetGPO +sceKernelGetHwFeatureInfoForDecid +sceKernelGetHwModelName +sceKernelGetHwSerialNumber +sceKernelGetIdPs +sceKernelGetIdTableCurrentCount +sceKernelGetIoreq +sceKernelGetIpcPath +sceKernelGetKnobs +sceKernelGetKqueueFromEqueue +sceKernelGetLibkernelTextLocation +sceKernelGetMainSocId +sceKernelGetMemoryPstate +sceKernelGetModuleInfo +sceKernelGetModuleInfo2 +sceKernelGetModuleInfoForUnwind +sceKernelGetModuleInfoFromAddr +sceKernelGetModuleInfoInternal +sceKernelGetModuleList +sceKernelGetModuleList2 +sceKernelGetModuleListInternal +sceKernelGetOpenPsId +sceKernelGetOpenPsIdForSystem +sceKernelGetPageTableStats +sceKernelGetPagingStatsOfAllObjects +sceKernelGetPagingStatsOfAllThreads +sceKernelGetParentApp +sceKernelGetPhysPageSize +sceKernelGetPrefixVersion +sceKernelGetProcParam +sceKernelGetProcessAbiType +sceKernelGetProcessName +sceKernelGetProcessTime +sceKernelGetProcessTimeCounter +sceKernelGetProcessTimeCounterFrequency +sceKernelGetProcessType +sceKernelGetProcessTypeOfBudget +sceKernelGetProductCode +sceKernelGetProductStr +sceKernelGetProsperoSystemSwVersion +sceKernelGetPrtAperture +sceKernelGetPs4SystemSwVersion +sceKernelGetPsmIntdevModeForRcmgr +sceKernelGetPsnAccessTraceLogForRcmgr +sceKernelGetQafExpirationTimeNotafterForRcmgr +sceKernelGetQafExpirationTimeNotbeforeForRcmgr +sceKernelGetQafGenerationForRcmgr +sceKernelGetQafNameForRcmgr +sceKernelGetRenderingMode +sceKernelGetResidentCount +sceKernelGetResidentFmemCount +sceKernelGetResource +sceKernelGetResourceLimit +sceKernelGetResourceOne +sceKernelGetSafemode +sceKernelGetSanitizerMallocReplace +sceKernelGetSanitizerMallocReplaceExternal +sceKernelGetSanitizerNewReplace +sceKernelGetSanitizerNewReplaceExternal +sceKernelGetSocClock +sceKernelGetSocPowerConsumption sceKernelGetSocSensorTemperature -mmap -munmap -madvise -lseek -__error \ No newline at end of file +sceKernelGetSpecialIForRcmgr +sceKernelGetSubsysId +sceKernelGetSubsysSubId +sceKernelGetSystemExVersion +sceKernelGetSystemLevelDebuggerModeForRcmgr +sceKernelGetSystemSwBeta +sceKernelGetSystemSwVersion +sceKernelGetThreadName +sceKernelGetTraceMemoryStats +sceKernelGetTscFrequency +sceKernelGetUniversalMode +sceKernelGetUpdVersion +sceKernelGetUtokenDataExecutionForRcmgr +sceKernelGetUtokenExpirationTimeNotafterForRcmgr +sceKernelGetUtokenExpirationTimeNotbeforeForRcmgr +sceKernelGetUtokenFakeSharefactoryForRcmgr +sceKernelGetUtokenFlagedUpdaterForRcmgr +sceKernelGetUtokenNpEnvSwitchingForRcmgr +sceKernelGetUtokenSaveDataRepairForRcmgr +sceKernelGetUtokenStoreModeForRcmgr +sceKernelGetUtokenUseSoftwagnerForAcmgr +sceKernelGetUtokenUseSoftwagnerForRcmgr +sceKernelGetUtokenWeakenedPortRestrictionForRcmgr +sceKernelGetVddVid +sceKernelGetVrCaptureSize +sceKernelGetdents +sceKernelGetdirentries +sceKernelGettimeofday +sceKernelGettimezone +sceKernelGiveDirectMemoryToMapper +sceKernelHasNeoMode +sceKernelHwGetBdDriveInfo +sceKernelHwHasOpticalOut +sceKernelHwHasWlanBt +sceKernelIccControlBDPowerState +sceKernelIccControlUSBPowerState +sceKernelIccGetBDPowerState +sceKernelIccGetBootTimestamp +sceKernelIccGetCPMode +sceKernelIccGetCountTime +sceKernelIccGetCpuInfoBit +sceKernelIccGetErrLog +sceKernelIccGetHwInfo +sceKernelIccGetPowerNumberOfBootShutdown +sceKernelIccGetPowerOperatingTime +sceKernelIccGetPowerUpCause +sceKernelIccGetSysEventLog +sceKernelIccGetThermalAlert +sceKernelIccGetUSBPowerState +sceKernelIccIndicatorBootDone +sceKernelIccIndicatorShutdown +sceKernelIccIndicatorStandby +sceKernelIccIndicatorStandbyBoot +sceKernelIccIndicatorStandbyShutdown +sceKernelIccNotifyBootStatus +sceKernelIccNvsFlush +sceKernelIccReadPowerBootMessage +sceKernelIccSetBuzzer +sceKernelIccSetCPMode +sceKernelIccSetCpuInfoBit +sceKernelIccSetDownloadMode +sceKernelInitializeDipsw +sceKernelInstallExceptionHandler +sceKernelInternalGetKmemStatistics +sceKernelInternalGetMapStatistics +sceKernelInternalHeapPrintBacktraceWithModuleInfo +sceKernelInternalMapDirectMemory +sceKernelInternalMapNamedDirectMemory +sceKernelInternalMemoryGetAvailableSize +sceKernelInternalMemoryGetModuleSegmentInfo +sceKernelInternalResumeDirectMemoryRelease +sceKernelInternalSuspendDirectMemoryRelease +sceKernelIsAddressSanitizerEnabled +sceKernelIsAllowedToSelectDvdRegion +sceKernelIsAssistMode +sceKernelIsAuthenticNeo +sceKernelIsCEX +sceKernelIsDebuggerAttached +sceKernelIsDevKit +sceKernelIsDevelopmentMode +sceKernelIsDisableRazor +sceKernelIsExperimentalBeta +sceKernelIsGenuineCEX +sceKernelIsGenuineDevKit +sceKernelIsGenuineKratosCex +sceKernelIsGenuineN +sceKernelIsGenuineTestKit +sceKernelIsInSandbox +sceKernelIsKratos +sceKernelIsM2DeviceAttached +sceKernelIsMainOnStanbyMode +sceKernelIsMainOnStandbyMode +sceKernelIsModuleLoaded +sceKernelIsNeoMode +sceKernelIsProspero +sceKernelIsPs4Process +sceKernelIsStack +sceKernelIsTestKit +sceKernelJitCreateAliasOfSharedMemory +sceKernelJitCreateSharedMemory +sceKernelJitGetSharedMemoryInfo +sceKernelJitMapSharedMemory +sceKernelKernelHeapUsage +sceKernelLoadStartModule +sceKernelLoadStartModuleForSysmodule +sceKernelLoadStartModuleInternalForMono +sceKernelLseek +sceKernelLwfsAllocateBlock +sceKernelLwfsLseek +sceKernelLwfsSetAttribute +sceKernelLwfsTrimBlock +sceKernelLwfsWrite +sceKernelMapDirectMemory +sceKernelMapDirectMemory2 +sceKernelMapFlexibleMemory +sceKernelMapNamedDirectMemory +sceKernelMapNamedFlexibleMemory +sceKernelMapNamedSystemFlexibleMemory +sceKernelMapSanitizerShadowMemory +sceKernelMapToolMemory +sceKernelMapTraceMemory +sceKernelMapperGetParam +sceKernelMapperGetUsageStatsData +sceKernelMapperSetPageTablePoolOccupancyNotificationThreshold +sceKernelMemoryPoolBatch +sceKernelMemoryPoolCommit +sceKernelMemoryPoolDecommit +sceKernelMemoryPoolExpand +sceKernelMemoryPoolGetBlockStats +sceKernelMemoryPoolMove +sceKernelMemoryPoolReserve +sceKernelMkdir +sceKernelMlock +sceKernelMlockall +sceKernelMmap +sceKernelMprotect +sceKernelMsync +sceKernelMtypeprotect +sceKernelMunlock +sceKernelMunlockall +sceKernelMunmap +sceKernelNanosleep +sceKernelNormalizePath +sceKernelNotifyAppEvent +sceKernelNotifyAppStateChanged +sceKernelNotifySystemSuspendResumeProgress +sceKernelNotifySystemSuspendStart +sceKernelOpen +sceKernelOpenEport +sceKernelOpenEventFlag +sceKernelOpenInternal +sceKernelOpenSema +sceKernelPollEventFlag +sceKernelPollSema +sceKernelPread +sceKernelPreadv +sceKernelPrepareDirectMemorySwap +sceKernelPrepareToResumeProcess +sceKernelPrepareToSuspendProcess +sceKernelPrintBacktraceWithModuleInfo +sceKernelProtectDirectMemory +sceKernelProtectDirectMemoryForPID +sceKernelPwrite +sceKernelPwritev +sceKernelQueryMemoryProtection +sceKernelQueryToolMemory +sceKernelQueryTraceMemory +sceKernelRaiseException +sceKernelRandomizedPath +sceKernelRdup +sceKernelRead +sceKernelReadDipswData +sceKernelReadTsc +sceKernelReadv +sceKernelReboot +sceKernelReleaseDirectMemory +sceKernelReleaseFlexibleMemory +sceKernelReleaseToolMemory +sceKernelReleaseTraceDirectMemory +sceKernelRemoveExceptionHandler +sceKernelRename +sceKernelReportUnpatchedFunctionCall +sceKernelReserve2mbPage +sceKernelReserveSystemDirectMemory +sceKernelReserveVirtualRange +sceKernelRestoreApp +sceKernelResumeDirectMemoryRelease +sceKernelResumeProcess +sceKernelRmdir +sceKernelRtldControl +sceKernelSandboxPath +sceKernelSaveApp +sceKernelSendNotificationRequest +sceKernelSetAppInfo +sceKernelSetAppState +sceKernelSetBackupRestoreMode +sceKernelSetBaseModeClock +sceKernelSetBesteffort +sceKernelSetBootReqNotify +sceKernelSetBudget +sceKernelSetCallRecord +sceKernelSetCompressionAttribute +sceKernelSetCoredumpAppInfo +sceKernelSetCpumodeGame +sceKernelSetDataTransferMode +sceKernelSetDipsw +sceKernelSetDirectMemoryType +sceKernelSetEmergencyErrorLog +sceKernelSetEventFlag +sceKernelSetFsstParam +sceKernelSetGPI +sceKernelSetGPO +sceKernelSetGameDirectMemoryLimit +sceKernelSetGpuCu +sceKernelSetIoreq +sceKernelSetKnobs +sceKernelSetMemoryPstate +sceKernelSetNeoModeClock +sceKernelSetPackageInfo +sceKernelSetPhysFmemLimit +sceKernelSetProcessName +sceKernelSetProcessProperty +sceKernelSetProcessPropertyString +sceKernelSetPrtAperture +sceKernelSetSafemode +sceKernelSetSafemodeDirect +sceKernelSetSuspendState +sceKernelSetTimezoneInfo +sceKernelSetUpdatemode +sceKernelSetVirtualRangeName +sceKernelSetVmContainer +sceKernelSettimeofday +sceKernelSflashGetWritePrio +sceKernelSflashSetWritePrio +sceKernelSignalSema +sceKernelSleep +sceKernelSlvNotifyError +sceKernelSpawn +sceKernelStat +sceKernelStopUnloadModule +sceKernelStreamWriteActivate +sceKernelStreamWriteCreate +sceKernelStreamWriteDeactivate +sceKernelStreamWriteDelete +sceKernelStreamWriteRead +sceKernelStreamWriteStat +sceKernelStreamWriteWrite +sceKernelSubmitAIO +sceKernelSuspendDirectMemoryRelease +sceKernelSuspendProcess +sceKernelSuspendSystem +sceKernelSwitchToBaseMode +sceKernelSwitchToNativeMode +sceKernelSwitchToNeoMode +sceKernelSync +sceKernelTerminateProcess +sceKernelTerminateSysCore +sceKernelTitleWorkaroundIsEnabled +sceKernelTitleWorkdaroundIsEnabled +sceKernelTraceMemoryTypeProtect +sceKernelTriggerEport +sceKernelTriggerUserEvent +sceKernelTruncate +sceKernelUnlink +sceKernelUnsetDipsw +sceKernelUsleep +sceKernelUtimes +sceKernelUuidCreate +sceKernelVirtualQuery +sceKernelVirtualQueryAll +sceKernelWaitAIO +sceKernelWaitAIOs +sceKernelWaitCommandBufferCompletion +sceKernelWaitEqueue +sceKernelWaitEventFlag +sceKernelWaitSema +sceKernelWrite +sceKernelWriteDipswData +sceKernelWriteEventQueueOnCompletionCommand +sceKernelWriteMapCommand +sceKernelWriteMapCommand2 +sceKernelWriteMapDirectCommand +sceKernelWriteMapDirectWithGpuMaskIdCommand +sceKernelWriteMapWithGpuMaskIdCommand +sceKernelWriteModifyMtypeProtectCommand +sceKernelWriteModifyMtypeProtectWithGpuMaskIdCommand +sceKernelWriteModifyProtectCommand +sceKernelWriteModifyProtectWithGpuMaskIdCommand +sceKernelWriteMultiMapCommand +sceKernelWriteMultiMapWithGpuMaskIdCommand +sceKernelWriteRemapCommand +sceKernelWriteRemapIntoPrtCommand +sceKernelWriteRemapWithGpuMaskIdCommand +sceKernelWriteSdkEventLog +sceKernelWriteSdkEventLogV +sceKernelWriteUnmapCommand +sceKernelWriteUnmapToPrtCommand +sceKernelWriteWaitOnAddressCommand +sceKernelWriteWaitOnCounterCommand +sceKernelWriteWriteAddressCommand +sceKernelWriteWriteCounterCommand +sceKernelWritev +sceKernelXenterSblock +sceKernelXexitSblock +sceKernelYieldCpumode +sceKeyboardClose +sceKeyboardConnectPort +sceKeyboardDebugGetDeviceId +sceKeyboardDeviceOpen +sceKeyboardDisconnectDevice +sceKeyboardDisconnectPort +sceKeyboardGetConnection +sceKeyboardGetDeviceInfo +sceKeyboardGetHandle +sceKeyboardGetKey2Char +sceKeyboardInit +sceKeyboardMbusInit +sceKeyboardOpen +sceKeyboardPadEmulateClose +sceKeyboardPadEmulateOpen +sceKeyboardRead +sceKeyboardReadState +sceKeyboardSetProcessFocus +sceKeyboardSetProcessPrivilege +sceLibSecureAddCipher +sceLibSecureAddHash +sceLibSecureCryptographyDecrypt +sceLibSecureCryptographyDeleteContext +sceLibSecureCryptographyEncrypt +sceLibSecureCryptographyGenerateKey +sceLibSecureCryptographyGetBlockSize +sceLibSecureCryptographyGetContextSize +sceLibSecureCryptographyGetKeySize +sceLibSecureCryptographyMessagePadding +sceLibSecureCryptographyMessagePaddingSize +sceLibSecureCryptographyMessageUnpadding +sceLibSecureCryptographyResetContext +sceLibSecureCryptographySetContext +sceLibSecureDestroy +sceLibSecureHashAddMessage +sceLibSecureHashDeleteContext +sceLibSecureHashGetBlockSize +sceLibSecureHashGetContextSize +sceLibSecureHashGetDigest +sceLibSecureHashGetDigestSize +sceLibSecureHashHmac +sceLibSecureHashMessage +sceLibSecureHashResetContext +sceLibSecureHashSetContext +sceLibSecureInit +sceLibSecureRandom +sceLibSecureRemoveCipher +sceLibSecureRemoveHash +sceLibcBacktraceGetBufferSize +sceLibcBacktraceSelf +sceLibcDebugOut +sceLibcFopenWithFD +sceLibcFopenWithFH +sceLibcGetFD +sceLibcGetFH +sceLibcHeapGetAddressRanges +sceLibcHeapGetTraceInfo +sceLibcHeapMutexCalloc +sceLibcHeapMutexFree +sceLibcHeapSetAddressRangeCallback +sceLibcHeapSetTraceMarker +sceLibcHeapUnsetTraceMarker +sceLibcInternalBacktraceForGame +sceLibcInternalHeapErrorReportForGame +sceLibcInternalMemoryGetWakeAddr +sceLibcInternalMemoryMutexEnable +sceLibcInternalSetMallocCallback +sceLibcMspaceAlignedAlloc +sceLibcMspaceCalloc +sceLibcMspaceCheckMemoryBounds +sceLibcMspaceCreate +sceLibcMspaceCreateForMonoMutex +sceLibcMspaceDestroy +sceLibcMspaceFree +sceLibcMspaceGetAddressRanges +sceLibcMspaceGetFooterValue +sceLibcMspaceIsHeapEmpty +sceLibcMspaceMalloc +sceLibcMspaceMallocStats +sceLibcMspaceMallocStatsFast +sceLibcMspaceMallocUsableSize +sceLibcMspaceMemalign +sceLibcMspacePosixMemalign +sceLibcMspaceRealloc +sceLibcMspaceReallocalign +sceLibcMspaceReportMemoryBlocks +sceLibcMspaceSetMallocCallback +sceLibcOnce +sceLibcPafMspaceCalloc +sceLibcPafMspaceCheckMemoryBounds +sceLibcPafMspaceCreate +sceLibcPafMspaceDestroy +sceLibcPafMspaceFree +sceLibcPafMspaceGetFooterValue +sceLibcPafMspaceIsHeapEmpty +sceLibcPafMspaceMalloc +sceLibcPafMspaceMallocStats +sceLibcPafMspaceMallocStatsFast +sceLibcPafMspaceMallocUsableSize +sceLibcPafMspaceMemalign +sceLibcPafMspacePosixMemalign +sceLibcPafMspaceRealloc +sceLibcPafMspaceReallocalign +sceLibcPafMspaceReportMemoryBlocks +sceLibcPafMspaceTrim +sceLibreSslGetMemoryPoolStats +sceLibreSslInit +sceLibreSslInitEx +sceLibreSslInitEx2 +sceLibreSslTerm +sceLncUtilAcquireCpuBudgetOfExtraAudioDevices +sceLncUtilAcquireCpuBudgetOfImeForBigApp +sceLncUtilAcquireCpuBudgetOfInGameStore +sceLncUtilActivateCdlg +sceLncUtilAddLocalProcess +sceLncUtilBlockAppSuspend +sceLncUtilBlockingGetEventForDaemon +sceLncUtilContinueApp +sceLncUtilCrashSyscore +sceLncUtilDeactivateCdlg +sceLncUtilDeclareReadyForSuspend +sceLncUtilDisableSuspendNotification +sceLncUtilEnableSuspendNotification +sceLncUtilFinishSpecialResume +sceLncUtilForceKillApp +sceLncUtilForceKillLocalProcess +sceLncUtilGetApp0DirPath +sceLncUtilGetAppCategory +sceLncUtilGetAppCategoryType +sceLncUtilGetAppFocusedAppId +sceLncUtilGetAppFocusedAppStatus +sceLncUtilGetAppId +sceLncUtilGetAppIdListOfBigApp +sceLncUtilGetAppIdOfBigApp +sceLncUtilGetAppIdOfMiniApp +sceLncUtilGetAppIdOfRunningBigApp +sceLncUtilGetAppLaunchedUser +sceLncUtilGetAppStatus +sceLncUtilGetAppStatusList +sceLncUtilGetAppStatusListForShellUIReboot +sceLncUtilGetAppTitleId +sceLncUtilGetAppType +sceLncUtilGetCdlgExec +sceLncUtilGetCdlgStatus +sceLncUtilGetCdlgType +sceLncUtilGetCoredumpState +sceLncUtilGetDbgExecutablePath +sceLncUtilGetEventForDaemon +sceLncUtilGetEventForShellUI +sceLncUtilGetGpuCrashFullDumpAppStatus +sceLncUtilGetLocalProcessStatusList +sceLncUtilGetParentSocket +sceLncUtilGetResultKillApp +sceLncUtilGetResultLaunchAppByTitleId +sceLncUtilGetVideoFinalizeState +sceLncUtilInitialize +sceLncUtilIsActiveCdlg +sceLncUtilIsAppLaunched +sceLncUtilIsAppSuspended +sceLncUtilIsCdlgActivated +sceLncUtilIsCpuBudgetOfExtraAudioDevicesAvailable +sceLncUtilIsDiscPlayerForeground +sceLncUtilIsHostBoot +sceLncUtilIsPs2Emu +sceLncUtilIsShellUiFgAndGameBgCpuMode +sceLncUtilIsSpeculativeLaunch +sceLncUtilKickCoredumpOnlyProcMem +sceLncUtilKillApp +sceLncUtilKillAppWithReason +sceLncUtilKillLocalProcess +sceLncUtilLaunchApp +sceLncUtilLaunchByName2 +sceLncUtilLoadExec +sceLncUtilNotifyCoredumpRequestEnd +sceLncUtilNotifyCoredumpRequestProgress +sceLncUtilNotifyVshReady +sceLncUtilRaiseException +sceLncUtilRaiseExceptionLocalProcess +sceLncUtilRegisterCdlgSharedMemoryName +sceLncUtilRegisterDaemon +sceLncUtilRegisterShellUI +sceLncUtilReleaseCpuBudgetOfExtraAudioDevices +sceLncUtilReleaseCpuBudgetOfImeForBigApp +sceLncUtilReleaseCpuBudgetOfInGameStore +sceLncUtilResumeApp +sceLncUtilResumeLocalProcess +sceLncUtilSetAppFocus +sceLncUtilSetCdlgExec +sceLncUtilSetControllerFocus +sceLncUtilSetControllerFocusPermission +sceLncUtilSetRemotePlayServiceFlag +sceLncUtilStartKillApp +sceLncUtilStartLaunchAppByTitleId +sceLncUtilSuspendApp +sceLncUtilSuspendBackgroundApp +sceLncUtilSuspendLocalProcess +sceLncUtilSystemReboot +sceLncUtilSystemShutdown +sceLncUtilSystemSuspend +sceLncUtilTerminate +sceLncUtilTryBlockAppSuspend +sceLncUtilUnblockAppSuspend +sceLncUtilUnregisterCdlgSharedMemoryName +sceLncUtilUnregisterDaemon +sceLncUtilUnregisterShellUI +sceLoginDialogClose +sceLoginDialogGetResult +sceLoginDialogGetStatus +sceLoginDialogInitialize +sceLoginDialogOpen +sceLoginDialogTerminate +sceLoginDialogUpdateStatus +sceLoginMgrServerCheckSafetyNoticeShown +sceLoginMgrServerCheckTutorialShown +sceLoginMgrServerClearMorpheusRequiredUserId +sceLoginMgrServerConvertToUserId +sceLoginMgrServerCreateUser +sceLoginMgrServerDestroyUser +sceLoginMgrServerDialogGetAppId +sceLoginMgrServerDialogGetOpenParam +sceLoginMgrServerDialogNotifyCloseFinished +sceLoginMgrServerDialogNotifyOpenFinished +sceLoginMgrServerDialogSetResult +sceLoginMgrServerGetLogoutInfo +sceLoginMgrServerGetMorpheusRequiredUserId +sceLoginMgrServerGetMoveAssignmentModeForIDU +sceLoginMgrServerGetSharePlayAllowPadOperation +sceLoginMgrServerInitialize +sceLoginMgrServerInitializeSharePlayAllowPadOperation +sceLoginMgrServerIsRequestedCdlgClose +sceLoginMgrServerLoginServiceGetRequestParam +sceLoginMgrServerLoginServiceNotifyRequestFinished +sceLoginMgrServerNotifyEasySignInFinished +sceLoginMgrServerNotifyEasySignInUserCode +sceLoginMgrServerNotifyHmdConnectInfo +sceLoginMgrServerNotifySafetyNoticeShown +sceLoginMgrServerNotifyShellUIState +sceLoginMgrServerNotifyTutorialShown +sceLoginMgrServerSetLoginFlag +sceLoginMgrServerSetMorpheusAssignEnabledFlag +sceLoginMgrServerSetMorpheusRequiredUserId +sceLoginMgrServerSetSharePlayMode +sceLoginMgrServerSetUserStatus +sceLoginMgrServerTerminate +sceLoginMgrServerUpdateUserIdRalatedToPadUniqueId +sceLoginServiceInitialize +sceLoginServiceRequestDevices +sceLoginServiceTerminate +sceM4aacEncClearContext +sceM4aacEncClearContextEx +sceM4aacEncCreateEncoder +sceM4aacEncCreateEncoderEx +sceM4aacEncDeleteEncoder +sceM4aacEncDeleteEncoderEx +sceM4aacEncEncode +sceM4aacEncEncodeEx +sceM4aacEncEncodeWithPriority +sceM4aacEncEncodeWithPriorityEx +sceM4aacEncFlush +sceM4aacEncFlushEx +sceM4aacEncFlushWithPriority +sceM4aacEncFlushWithPriorityEx +sceM4aacEncGetContext +sceM4aacEncInitialize +sceM4aacEncTerminate +sceMatAgcRegisterOwner +sceMatAgcRegisterResource +sceMatAgcUnregisterAllResourcesForOwner +sceMatAgcUnregisterOwnerAndResources +sceMatAgcUnregisterResource +sceMatAlloc +sceMatAllocPhysicalMemory +sceMatAllocPoolMemory +sceMatBatchMap +sceMatFree +sceMatFreePoolMemory +sceMatFreeRange +sceMatInitialize +sceMatMapDirectMemory +sceMatMemoryPoolBatch +sceMatMemoryPoolCommit +sceMatMemoryPoolDecommit +sceMatMemoryPoolExpand +sceMatMemoryPoolMove +sceMatMemoryPoolReserve +sceMatMprotect +sceMatMspaceCreate +sceMatMspaceDestroy +sceMatMtypeprotect +sceMatNewFrame +sceMatPopMarker +sceMatPushMarker +sceMatPushMarkerStatic +sceMatRealloc +sceMatReallocBegin +sceMatReallocEnd +sceMatReallocPoolMemory +sceMatRegisterGroup +sceMatRegisterOwner +sceMatRegisterResource +sceMatRegisterResourceType +sceMatReleasePhysicalMemory +sceMatReserveVirtualRange +sceMatResizeCommsBuffer +sceMatSetPrtAperture +sceMatSetThreadInfo +sceMatSetUserCallstackCapture +sceMatTagAllocation +sceMatTagPool +sceMatTagVirtualMemory +sceMatUninitialize +sceMatUnmapMemory +sceMatUnregisterAllResourcesForOwner +sceMatUnregisterOwnerAndResources +sceMatUnregisterResource +sceMatUpdateModuleList +sceMatWriteBookmark +sceMbusAcquireControl +sceMbusAcquireControlList +sceMbusAcquireControlWithState +sceMbusAcquireControlWithState2 +sceMbusAcquireControlWithStateFlag +sceMbusAddAudioOutHandleAttribute +sceMbusAddHandle +sceMbusAddHandleByDeviceId +sceMbusAddHandleByUserId +sceMbusAddHandleByVidPid +sceMbusAddHandleWithModuleId +sceMbusAttachToApplicationByPid +sceMbusBindDeviceWithUserId +sceMbusChangeAppModuleState +sceMbusCheckDriverCallback +sceMbusCheckEvent +sceMbusConvertToLocalDeviceId +sceMbusConvertToLocalDeviceId2 +sceMbusConvertToMbusDeviceId +sceMbusDebugAcquireControl +sceMbusDebugAcquireControlList +sceMbusDebugAcquireControlWithState +sceMbusDebugAcquireControlWithState2 +sceMbusDebugAcquireControlWithStateFlag +sceMbusDebugAddProcess +sceMbusDebugCheckProcessResume +sceMbusDebugDecodeApplicationStartupInfo +sceMbusDebugDisableBgmForShellUi +sceMbusDebugEncodeApplicationStartupInfo +sceMbusDebugGetApplicationStartupInfo +sceMbusDebugGetControlStatus +sceMbusDebugGetDeviceInfo +sceMbusDebugGetInternalInfo +sceMbusDebugGetPriorityInfo +sceMbusDebugReenableBgmForShellUi +sceMbusDebugReleaseControl +sceMbusDebugRemoveCameraAppModuleFocus +sceMbusDebugResumeApplication +sceMbusDebugSetAppModuleFocus +sceMbusDebugSetApplicationFocusByAppId +sceMbusDebugSetCameraAppModuleFocus +sceMbusDebugSetControllerFocusByAppId +sceMbusDebugSetOtherProcessExcludedAction +sceMbusDebugSetPriority +sceMbusDebugStartApplication +sceMbusDebugStartApplication2 +sceMbusDebugStartApplicationNull +sceMbusDebugSuspendApplication +sceMbusDebugTerminateApplication +sceMbusDebugTerminateProcess +sceMbusDetachFromApplicationByPid +sceMbusDisableBgmForShellUi +sceMbusDisableChat +sceMbusDisconnectDevice +sceMbusDumpAppInfo +sceMbusDumpDeviceInfo +sceMbusDumpHandleStatusInfo +sceMbusDumpHandleStatusInfoAll +sceMbusDumpModuleStateInfo +sceMbusDumpModuleStateInfoAll +sceMbusDumpPlayerInfo +sceMbusDumpPortHandleInfo +sceMbusDumpProcMediaInfo +sceMbusDumpProcMediaInfoAll +sceMbusDumpUserMediaInfo +sceMbusEnableChat +sceMbusEnterAudioOutAutoAttenuation +sceMbusEventBusStatusChangeSubscribe +sceMbusEventBusStatusChangeUnsubscribe +sceMbusEventCallbackFuncsInit +sceMbusEventCallbackFuncsInit_ +sceMbusEventCreate +sceMbusEventCreate_ +sceMbusEventDestroy +sceMbusEventReceive +sceMbusGetControlStatus +sceMbusGetDeviceDescription +sceMbusGetDeviceInfo +sceMbusGetDeviceInfoByBusId +sceMbusGetDeviceInfoByBusId_ +sceMbusGetDeviceInfoByCondition +sceMbusGetDeviceInfoByConditionForDeviceService +sceMbusGetDeviceInfoByCondition_ +sceMbusGetDeviceInfo_ +sceMbusGetSimulatedBusUsableStatusByBusType +sceMbusGetSimulatedHandleStatusInfo +sceMbusGetSimulatedHandleStatusInfo2 +sceMbusGetSparkState +sceMbusGetUsersDeviceInfo +sceMbusInit +sceMbusIsBgmProhibited +sceMbusIsUsingDevice +sceMbusLeaveAudioOutAutoAttenuation +sceMbusNotifyBtDisconnection +sceMbusNotifyDriverEvent +sceMbusReenableBgmForShellUi +sceMbusRegisterDriver +sceMbusReleaseControl +sceMbusRemoveAudioOutHandleAttribute +sceMbusRemoveCameraAppModuleFocus +sceMbusRemoveHandle +sceMbusRemoveProxy +sceMbusResolveByDeviceId +sceMbusResolveByHandle +sceMbusResolveByPlayerId +sceMbusResolveByUserId +sceMbusSetAppModuleFocus +sceMbusSetAutoLoginMode +sceMbusSetCameraAppModuleFocus +sceMbusSetDeviceFunctionState +sceMbusSetDuckingSetting +sceMbusSetProxy +sceMbusSetRoutingMode +sceMbusSetScratchData +sceMbusSetScratchDataUpdatedEventMask +sceMbusSetSocialScreenAudioMode +sceMbusSetTestFlag +sceMbusSetThreadParam +sceMbusSetUsbPowerBlackList +sceMbusSetUserMuteStatus +sceMbusSetVolumeDown +sceMbusStartAudioOutAuxBroadcast +sceMbusStartAudioOutSharePlay +sceMbusStopAudioOutAuxBroadcast +sceMbusStopAudioOutSharePlay +sceMbusTerm +sceMbusUnregisterDriver +sceMbusUserLogin +sceMbusUserLogout +sceMouseClose +sceMouseConnectPort +sceMouseDebugGetDeviceId +sceMouseDeviceOpen +sceMouseDisconnectDevice +sceMouseDisconnectPort +sceMouseExtensionGetCursor +sceMouseExtensionRead +sceMouseExtensionReadState +sceMouseExtensionScalePosition +sceMouseExtensionSetConfig +sceMouseExtensionSetCursor +sceMouseGetDeviceInfo +sceMouseGetHandle +sceMouseInit +sceMouseMbusInit +sceMouseOpen +sceMouseRead +sceMouseSetHandType +sceMouseSetPointerSpeed +sceMouseSetProcessFocus +sceMouseSetProcessPrivilege +sceMoveClose +sceMoveGetBluetoothAddress +sceMoveGetCalibrationInfo +sceMoveGetDeviceId +sceMoveGetDeviceInfo +sceMoveGetExtensionPortInfo +sceMoveInit +sceMoveIsReproductionModel +sceMoveIsValidHandle +sceMoveOpen +sceMoveReadStateLatest +sceMoveReadStateRecent +sceMoveReadStateRecentForTracker +sceMoveResetLightSphere +sceMoveSetCalibrationMode +sceMoveSetExtensionPortOutput +sceMoveSetLightSphere +sceMoveSetLightSphereForTracker +sceMoveSetVibration +sceMoveTerm +sceMoveTrackerCalibrateReset +sceMoveTrackerCalibrateYaw +sceMoveTrackerCameraUpdate +sceMoveTrackerCaptureInit +sceMoveTrackerCaptureTerm +sceMoveTrackerControllersUpdate +sceMoveTrackerGetState +sceMoveTrackerGetVersion +sceMoveTrackerGetWorkingMemorySize +sceMoveTrackerInit +sceMoveTrackerPlayGetImages +sceMoveTrackerPlayGetStates +sceMoveTrackerPlayStart +sceMoveTrackerPlayStep +sceMoveTrackerRecordSave +sceMoveTrackerRecordStart +sceMoveTrackerRecordStop +sceMoveTrackerTerm +sceMoveWriteCalibrationInfo +sceMsgDialogClose +sceMsgDialogGetResult +sceMsgDialogGetStatus +sceMsgDialogInitialize +sceMsgDialogOpen +sceMsgDialogProgressBarInc +sceMsgDialogProgressBarSetMsg +sceMsgDialogProgressBarSetValue +sceMsgDialogTerminate +sceMsgDialogUpdateStatus +sceMusicCoreServerCheckCoreStatus +sceMusicCoreServerForceKillCurrentCore +sceMusicCoreServerGetCoreInfo +sceMusicCoreServerGetEvent +sceMusicCoreServerGetLastLaunchUser +sceMusicCoreServerGetPlayStartCondition +sceMusicCoreServerGetPlayStatus +sceMusicCoreServerGetPlayStatus_vsh +sceMusicCoreServerGetSpTrackInfo +sceMusicCoreServerGetSpWakeupAuthorityList +sceMusicCoreServerGetStatusOfTracks +sceMusicCoreServerGetTitleId +sceMusicCoreServerGetTrackInfo +sceMusicCoreServerGetUserData +sceMusicCoreServerInitialize +sceMusicCoreServerKillCurrentCore +sceMusicCoreServerLaunchSpCore +sceMusicCoreServerLaunchUsbMusicCore +sceMusicCoreServerPlayControl +sceMusicCoreServerPlaySpUri +sceMusicCoreServerRegistEventCallback +sceMusicCoreServerSelectCore +sceMusicCoreServerSetAudioMute +sceMusicCoreServerSetAudioVolume +sceMusicCoreServerSetAutoPlay +sceMusicCoreServerSetLaunchUser +sceMusicCoreServerSetPlaylist +sceMusicCoreServerSetRepeatMode +sceMusicCoreServerSetShuffle +sceMusicCoreServerSetSpWakeupAuthorityList +sceMusicCoreServerSetTitleId +sceMusicCoreServerSetTrack +sceMusicCoreServerSetTrackList +sceMusicCoreServerTerminate +sceMusicCoreServerTriggerEvent +sceMusicCoreServerTriggerEventSync +sceMusicCoreServerTryLoadCore +sceMusicCoreServerUnregistEventCallback +sceMusicCoreServerUpdateSpWakeupAuthorityList +sceMusicFwGetCurrentTime +sceMusicFwGetLoop +sceMusicFwGetMuted +sceMusicFwGetNetworkState +sceMusicFwGetVolume +sceMusicFwIsEnded +sceMusicFwIsPlaying +sceMusicFwIsStopped +sceMusicFwRemoveSrc +sceMusicFwSendMessageAsynchronously +sceMusicFwSendMessageSynchronously +sceMusicFwSetCurrentTime +sceMusicFwSetLoop +sceMusicFwSetShuffle +sceMusicFwSetVolume +sceMusicFwSkipNext +sceMusicFwSkipPrevious +sceMusicPlayerServiceBeginTransaction +sceMusicPlayerServiceCreateTrackList +sceMusicPlayerServiceEndTransaction +sceMusicPlayerServiceGetAudioVolume +sceMusicPlayerServiceGetCurrentPlayStatus +sceMusicPlayerServiceGetPlayStatusExtension +sceMusicPlayerServiceGetPlaybackResults +sceMusicPlayerServiceGetTrackInfo +sceMusicPlayerServiceGetTrackListVersion +sceMusicPlayerServiceInitialize +sceMusicPlayerServiceInitialize2 +sceMusicPlayerServiceInitialize3 +sceMusicPlayerServiceInsertTrackEntry +sceMusicPlayerServiceNextTrack +sceMusicPlayerServicePause +sceMusicPlayerServicePlay +sceMusicPlayerServicePlayStartByTime +sceMusicPlayerServicePreviousTrack +sceMusicPlayerServiceReceiveEvent +sceMusicPlayerServiceRemoveAllData +sceMusicPlayerServiceRemoveTrackEntry +sceMusicPlayerServiceRemoveTrackList +sceMusicPlayerServiceSeek +sceMusicPlayerServiceSetAudioVolume +sceMusicPlayerServiceSetRepeatMode +sceMusicPlayerServiceSetShuffle +sceMusicPlayerServiceSetTrackList +sceMusicPlayerServiceSetTrackList2 +sceMusicPlayerServiceSetUsbStorageDeviceInfo +sceMusicPlayerServiceStop +sceMusicPlayerServiceTerminate +sceMusicPlayerServiceUnpause +sceNKWebInitialize +sceNKWebTerminate +sceNetAccept +sceNetAddrConfig6GetInfo +sceNetAddrConfig6Start +sceNetAddrConfig6Stop +sceNetAllocateAllRouteInfo +sceNetApctlCheckCallback +sceNetApctlClearEvent +sceNetApctlGetInfo +sceNetApctlGetResult +sceNetApctlGetState +sceNetApctlInit +sceNetApctlRegisterCallback +sceNetApctlRestart +sceNetApctlStart +sceNetApctlStartConf +sceNetApctlStartWithRetry +sceNetApctlStop +sceNetApctlTerm +sceNetApctlUnregisterCallback +sceNetBandwidthControlGetDataTraffic +sceNetBandwidthControlGetDefaultParam +sceNetBandwidthControlGetIfParam +sceNetBandwidthControlGetPolicy +sceNetBandwidthControlSetDefaultParam +sceNetBandwidthControlSetIfParam +sceNetBandwidthControlSetPolicy +sceNetBind +sceNetBweCheckCallbackIpcInt +sceNetBweClearEventIpcInt +sceNetBweFinishInternetConnectionTestIpcInt +sceNetBweGetInfoIpcInt +sceNetBweRegisterCallbackIpcInt +sceNetBweSetInternetConnectionTestResultIpcInt +sceNetBweStartInternetConnectionTestBandwidthTestIpcInt +sceNetBweStartInternetConnectionTestIpcInt +sceNetBweUnregisterCallbackIpcInt +sceNetClearDnsCache +sceNetConfigAddArp +sceNetConfigAddArpWithInterface +sceNetConfigAddIfaddr +sceNetConfigAddMRoute +sceNetConfigAddRoute +sceNetConfigAddRoute6 +sceNetConfigAddRouteWithInterface +sceNetConfigCleanUpAllInterfaces +sceNetConfigDelArp +sceNetConfigDelArpWithInterface +sceNetConfigDelDefaultRoute +sceNetConfigDelDefaultRoute6 +sceNetConfigDelDefaultRouteDev +sceNetConfigDelIfaddr +sceNetConfigDelIfaddr6 +sceNetConfigDelMRoute +sceNetConfigDelRoute +sceNetConfigDelRoute6 +sceNetConfigDownInterface +sceNetConfigEtherGetLinkMode +sceNetConfigEtherPostPlugInOutEvent +sceNetConfigEtherSetLinkMode +sceNetConfigFlushRoute +sceNetConfigGetDefaultRoute +sceNetConfigGetDefaultRoute6 +sceNetConfigGetIfaddr +sceNetConfigGetIfaddr6 +sceNetConfigRoutingShowRoutingConfig +sceNetConfigRoutingShowtCtlVar +sceNetConfigRoutingStart +sceNetConfigRoutingStop +sceNetConfigSetDefaultRoute +sceNetConfigSetDefaultRoute6 +sceNetConfigSetDefaultRouteDev +sceNetConfigSetDefaultScope +sceNetConfigSetIfFlags +sceNetConfigSetIfLinkLocalAddr6 +sceNetConfigSetIfaddr +sceNetConfigSetIfaddr6 +sceNetConfigSetIfaddr6WithFlags +sceNetConfigSetIfmtu +sceNetConfigUnsetIfFlags +sceNetConfigUpInterface +sceNetConfigUpInterfaceWithFlags +sceNetConfigWlanAdhocClearWakeOnWlan +sceNetConfigWlanAdhocCreate +sceNetConfigWlanAdhocGetWakeOnWlanInfo +sceNetConfigWlanAdhocJoin +sceNetConfigWlanAdhocLeave +sceNetConfigWlanAdhocPspEmuClearWakeOnWlan +sceNetConfigWlanAdhocPspEmuGetWakeOnWlanInfo +sceNetConfigWlanAdhocPspEmuSetWakeOnWlan +sceNetConfigWlanAdhocScanJoin +sceNetConfigWlanAdhocSetExtInfoElement +sceNetConfigWlanAdhocSetWakeOnWlan +sceNetConfigWlanApStart +sceNetConfigWlanApStop +sceNetConfigWlanBackgroundScanQuery +sceNetConfigWlanBackgroundScanStart +sceNetConfigWlanBackgroundScanStop +sceNetConfigWlanDiagGetDeviceInfo +sceNetConfigWlanDiagSetAntenna +sceNetConfigWlanDiagSetTxFixedRate +sceNetConfigWlanGetDeviceConfig +sceNetConfigWlanInfraGetRssiInfo +sceNetConfigWlanInfraLeave +sceNetConfigWlanInfraScanJoin +sceNetConfigWlanScan +sceNetConfigWlanSetDeviceConfig +sceNetConnect +sceNetControl +sceNetCtlApAppInitWpaKey +sceNetCtlApAppInitWpaKeyForQa +sceNetCtlApAppStartWithRetry +sceNetCtlApAppStartWithRetryPid +sceNetCtlApCheckCallback +sceNetCtlApClearEvent +sceNetCtlApCpStart +sceNetCtlApCpStop +sceNetCtlApDialogClose +sceNetCtlApDialogGetResult +sceNetCtlApDialogGetStatus +sceNetCtlApDialogInitialize +sceNetCtlApDialogOpen +sceNetCtlApDialogTerminate +sceNetCtlApDialogUpdateStatus +sceNetCtlApGetConnectInfo +sceNetCtlApGetInfo +sceNetCtlApGetResult +sceNetCtlApGetState +sceNetCtlApInit +sceNetCtlApRegisterCallback +sceNetCtlApRestart +sceNetCtlApRpCheckCallback +sceNetCtlApRpClearEvent +sceNetCtlApRpGetInfo +sceNetCtlApRpGetResult +sceNetCtlApRpGetState +sceNetCtlApRpRegisterCallback +sceNetCtlApRpStart +sceNetCtlApRpStartConf +sceNetCtlApRpStartWithRetry +sceNetCtlApRpStop +sceNetCtlApRpUnregisterCallback +sceNetCtlApStop +sceNetCtlApTerm +sceNetCtlApUnregisterCallback +sceNetCtlCheckCallback +sceNetCtlCheckCallbackForLibIpcInt +sceNetCtlCheckCallbackForNpToolkit +sceNetCtlClearEventForLibIpcInt +sceNetCtlClearEventForNpToolkit +sceNetCtlClearEventIpcInt +sceNetCtlConnectConfIpcInt +sceNetCtlConnectIpcInt +sceNetCtlConnectWithRetryIpcInt +sceNetCtlDisableBandwidthManagementIpcInt +sceNetCtlDisconnectIpcInt +sceNetCtlEnableBandwidthManagementIpcInt +sceNetCtlGetBandwidthInfoIpcInt +sceNetCtlGetConnectionElapsedTimeIpcInt +sceNetCtlGetEtherLinkMode +sceNetCtlGetIfStat +sceNetCtlGetInfo +sceNetCtlGetInfoIpcInt +sceNetCtlGetInfoV6 +sceNetCtlGetInfoV6IpcInt +sceNetCtlGetNatInfo +sceNetCtlGetNatInfoIpcInt +sceNetCtlGetNetEvConfigInfoIpcInt +sceNetCtlGetResult +sceNetCtlGetResultIpcInt +sceNetCtlGetResultV6 +sceNetCtlGetResultV6IpcInt +sceNetCtlGetScanInfoBssidForSsidListScanIpcInt +sceNetCtlGetScanInfoBssidIpcInt +sceNetCtlGetScanInfoByBssidIpcInt +sceNetCtlGetScanInfoForSsidListScanIpcInt +sceNetCtlGetScanInfoForSsidScanIpcInt +sceNetCtlGetState +sceNetCtlGetState2IpcInt +sceNetCtlGetStateIpcInt +sceNetCtlGetStateV6 +sceNetCtlGetStateV6IpcInt +sceNetCtlGetWifiType +sceNetCtlInit +sceNetCtlIsBandwidthManagementEnabledIpcInt +sceNetCtlRegisterCallback +sceNetCtlRegisterCallbackForLibIpcInt +sceNetCtlRegisterCallbackForNpToolkit +sceNetCtlRegisterCallbackIpcInt +sceNetCtlRegisterCallbackV6 +sceNetCtlRegisterCallbackV6IpcInt +sceNetCtlScanIpcInt +sceNetCtlSetErrorNotificationEnabledIpcInt +sceNetCtlSetStunWithPaddingFlagIpcInt +sceNetCtlTerm +sceNetCtlUnregisterCallback +sceNetCtlUnregisterCallbackForLibIpcInt +sceNetCtlUnregisterCallbackForNpToolkit +sceNetCtlUnregisterCallbackIpcInt +sceNetCtlUnregisterCallbackV6 +sceNetCtlUnregisterCallbackV6IpcInt +sceNetCtlUnsetStunWithPaddingFlagIpcInt +sceNetDbgInit +sceNetDhcpGetAutoipInfo +sceNetDhcpGetInfo +sceNetDhcpGetInfoEx +sceNetDhcpStart +sceNetDhcpStop +sceNetDhcpdStart +sceNetDhcpdStop +sceNetDumpAbort +sceNetDumpCreate +sceNetDumpDestroy +sceNetDumpRead +sceNetDuplicateIpStart +sceNetDuplicateIpStop +sceNetEmulationGet +sceNetEmulationSet +sceNetEpollAbort +sceNetEpollControl +sceNetEpollCreate +sceNetEpollDestroy +sceNetEpollWait +sceNetErrnoLoc +sceNetEtherNtostr +sceNetEtherStrton +sceNetEventCallbackCreate +sceNetEventCallbackDestroy +sceNetEventCallbackGetError +sceNetEventCallbackWaitCB +sceNetFreeAllRouteInfo +sceNetGetArpInfo +sceNetGetDns6Info +sceNetGetDnsInfo +sceNetGetIfList +sceNetGetIfListOnce +sceNetGetIfName +sceNetGetIfnameNumList +sceNetGetInterfaceStats +sceNetGetMacAddress +sceNetGetMemoryPoolStats +sceNetGetNameToIndex +sceNetGetRandom +sceNetGetRouteInfo +sceNetGetSockInfo +sceNetGetSockInfo6 +sceNetGetStatisticsInfo +sceNetGetStatisticsInfoInternal +sceNetGetSystemTime +sceNetGetpeername +sceNetGetsockname +sceNetGetsockopt +sceNetHtonl +sceNetHtonll +sceNetHtons +sceNetInetNtop +sceNetInetNtopWithScopeId +sceNetInetPton +sceNetInetPtonEx +sceNetInetPtonWithScopeId +sceNetInfoDumpStart +sceNetInfoDumpStop +sceNetInit +sceNetInitParam +sceNetIoctl +sceNetListen +sceNetMemoryAllocate +sceNetMemoryFree +sceNetNtohl +sceNetNtohll +sceNetNtohs +sceNetPoolCreate +sceNetPoolDestroy +sceNetPppoeStart +sceNetPppoeStop +sceNetRecv +sceNetRecvfrom +sceNetRecvmsg +sceNetResolverAbort +sceNetResolverConnect +sceNetResolverConnectAbort +sceNetResolverConnectCreate +sceNetResolverConnectDestroy +sceNetResolverCreate +sceNetResolverDestroy +sceNetResolverGetError +sceNetResolverStartAton +sceNetResolverStartAton6 +sceNetResolverStartNtoa +sceNetResolverStartNtoa6 +sceNetResolverStartNtoaMultipleRecords +sceNetResolverStartNtoaMultipleRecordsEx +sceNetSend +sceNetSendmsg +sceNetSendto +sceNetSetDns6Info +sceNetSetDns6InfoToKernel +sceNetSetDnsInfo +sceNetSetDnsInfoToKernel +sceNetSetsockopt +sceNetShowIfconfig +sceNetShowIfconfigForBuffer +sceNetShowIfconfigWithMemory +sceNetShowNetstat +sceNetShowNetstatEx +sceNetShowNetstatExForBuffer +sceNetShowNetstatForBuffer +sceNetShowNetstatWithMemory +sceNetShowPolicy +sceNetShowPolicyWithMemory +sceNetShowRoute +sceNetShowRoute6 +sceNetShowRoute6ForBuffer +sceNetShowRoute6WithMemory +sceNetShowRouteForBuffer +sceNetShowRouteWithMemory +sceNetShutdown +sceNetSocket +sceNetSocketAbort +sceNetSocketClose +sceNetSocketInternal +sceNetSyncCreate +sceNetSyncDestroy +sceNetSyncGet +sceNetSyncSignal +sceNetSyncWait +sceNetSysctl +sceNetTerm +sceNetThreadCreate +sceNetThreadExit +sceNetThreadJoin +sceNetUsleep +sceNgs2CalcWaveformBlock +sceNgs2CustomRackGetModuleInfo +sceNgs2FftInit +sceNgs2FftProcess +sceNgs2FftQuerySize +sceNgs2GeomApply +sceNgs2GeomCalcListener +sceNgs2GeomResetListenerParam +sceNgs2GeomResetSourceParam +sceNgs2GetWaveformFrameInfo +sceNgs2JobSchedulerResetOption +sceNgs2ModuleArrayEnumItems +sceNgs2ModuleEnumConfigs +sceNgs2ModuleQueueEnumItems +sceNgs2PanGetVolumeMatrix +sceNgs2PanInit +sceNgs2ParseWaveformData +sceNgs2ParseWaveformFile +sceNgs2ParseWaveformUser +sceNgs2RackCreate +sceNgs2RackCreateWithAllocator +sceNgs2RackDestroy +sceNgs2RackGetInfo +sceNgs2RackGetUserData +sceNgs2RackGetVoiceHandle +sceNgs2RackLock +sceNgs2RackQueryBufferSize +sceNgs2RackQueryInfo +sceNgs2RackRunCommands +sceNgs2RackSetUserData +sceNgs2RackUnlock +sceNgs2ReportRegisterHandler +sceNgs2ReportUnregisterHandler +sceNgs2StreamCreate +sceNgs2StreamCreateWithAllocator +sceNgs2StreamDestroy +sceNgs2StreamQueryBufferSize +sceNgs2StreamQueryInfo +sceNgs2StreamResetOption +sceNgs2StreamRunCommands +sceNgs2SystemCreate +sceNgs2SystemCreateWithAllocator +sceNgs2SystemDestroy +sceNgs2SystemEnumHandles +sceNgs2SystemEnumRackHandles +sceNgs2SystemGetInfo +sceNgs2SystemGetUserData +sceNgs2SystemLock +sceNgs2SystemQueryBufferSize +sceNgs2SystemQueryInfo +sceNgs2SystemRender +sceNgs2SystemResetOption +sceNgs2SystemRunCommands +sceNgs2SystemSetGrainSamples +sceNgs2SystemSetLoudThreshold +sceNgs2SystemSetSampleRate +sceNgs2SystemSetUserData +sceNgs2SystemUnlock +sceNgs2VoiceControl +sceNgs2VoiceGetMatrixInfo +sceNgs2VoiceGetOwner +sceNgs2VoiceGetPortInfo +sceNgs2VoiceGetState +sceNgs2VoiceGetStateFlags +sceNgs2VoiceQueryInfo +sceNgs2VoiceRunCommands +sceNotificationSend +sceNpAbortRequest +sceNpAllocateKernelMemoryNoAlignment +sceNpAllocateKernelMemoryWithAlignment +sceNpAppInfoIntAbortRequest +sceNpAppInfoIntCheckAvailability +sceNpAppInfoIntCheckAvailabilityA +sceNpAppInfoIntCheckAvailabilityAll +sceNpAppInfoIntCheckAvailabilityAllA +sceNpAppInfoIntCheckServiceAvailability +sceNpAppInfoIntCheckServiceAvailabilityA +sceNpAppInfoIntCheckServiceAvailabilityAll +sceNpAppInfoIntCheckServiceAvailabilityAllA +sceNpAppInfoIntCreateRequest +sceNpAppInfoIntDestroyRequest +sceNpAppInfoIntFinalize +sceNpAppInfoIntInitialize +sceNpAppLaunchLink2IntAbortRequest +sceNpAppLaunchLink2IntCreateRequest +sceNpAppLaunchLink2IntDestroyRequest +sceNpAppLaunchLink2IntFinalize +sceNpAppLaunchLink2IntGetCompatibleTitleIdList +sceNpAppLaunchLink2IntGetCompatibleTitleIdNum +sceNpAppLaunchLink2IntInitialize +sceNpAppLaunchLinkIntAbortRequest +sceNpAppLaunchLinkIntCreateRequest +sceNpAppLaunchLinkIntDestroyRequest +sceNpAppLaunchLinkIntFinalize +sceNpAppLaunchLinkIntGetCompatibleTitleIdList +sceNpAppLaunchLinkIntGetCompatibleTitleIdNum +sceNpAppLaunchLinkIntInitialize +sceNpAppLauncherInitialize +sceNpAppLauncherLaunchApp +sceNpAppLauncherTerminate +sceNpArchInit +sceNpArchTerm +sceNpAsmAbort +sceNpAsmClientAbortRequest +sceNpAsmClientClearNpTitleToken +sceNpAsmClientClearNpTitleTokenA +sceNpAsmClientCreateRequest +sceNpAsmClientCreateRequest2 +sceNpAsmClientCreateResourceContext +sceNpAsmClientCreateResourceContext2 +sceNpAsmClientDeleteRequest +sceNpAsmClientDeleteResourceContext +sceNpAsmClientDeleteResourceContext2 +sceNpAsmClientGetAppId +sceNpAsmClientGetCacheControlMaxAge +sceNpAsmClientGetGameNpTitleInfo +sceNpAsmClientGetGameNpTitleToken +sceNpAsmClientGetGameTitleBanInfo +sceNpAsmClientGetNpComInfo +sceNpAsmClientGetNpComInfo2 +sceNpAsmClientGetNpComInfo2A +sceNpAsmClientGetNpComInfo2WithHmac +sceNpAsmClientGetNpComInfo3 +sceNpAsmClientGetNpComInfo4 +sceNpAsmClientGetNpTitleId +sceNpAsmClientGetNpTitleToken +sceNpAsmClientGetNpTitleToken2 +sceNpAsmClientGetNpTitleTokenA +sceNpAsmClientGetRelatedGameNpTitleIds +sceNpAsmClientGetRelatedGameNpTitleIdsA +sceNpAsmClientGetRelatedGameNpTitleIdsResult +sceNpAsmClientGetServiceBaseUrl +sceNpAsmClientGetServiceBaseUrlA +sceNpAsmClientGetServiceBaseUrlWithNpTitleId +sceNpAsmClientGetServiceBaseUrlWithNpTitleIdA +sceNpAsmClientGetServiceIdInfo +sceNpAsmClientGetServiceIdInfoA +sceNpAsmClientInitialize +sceNpAsmClientSetNpTitleId +sceNpAsmClientTerminate +sceNpAsmCreateConnection +sceNpAsmCreateRequest +sceNpAsmDeleteConnection +sceNpAsmDeleteRequest +sceNpAsmGenerateNpTitleToken +sceNpAsmGenerateNpTitleToken2 +sceNpAsmGetNpCommInfo +sceNpAsmGetNpCommInfo2 +sceNpAsmGetRelatedGameNpTitleIds +sceNpAsmGetServiceBaseUrl +sceNpAsmGetServiceIdInfo +sceNpAsmInitialize +sceNpAsmTerminate +sceNpAtomicCas32 +sceNpAtomicDec32 +sceNpAtomicInc32 +sceNpAuthAbortRequest +sceNpAuthCreateAsyncRequest +sceNpAuthCreateRequest +sceNpAuthDeleteRequest +sceNpAuthGetAuthorizationCode +sceNpAuthGetAuthorizationCodeA +sceNpAuthGetAuthorizationCodeV3 +sceNpAuthGetIdToken +sceNpAuthGetIdTokenA +sceNpAuthGetIdTokenV3 +sceNpAuthPollAsync +sceNpAuthSetTimeout +sceNpAuthWaitAsync +sceNpBandwidthTestAbort +sceNpBandwidthTestDownloadOnlyInitStart +sceNpBandwidthTestGetStatus +sceNpBandwidthTestInitStart +sceNpBandwidthTestInitStartDownload +sceNpBandwidthTestInitStartUpload +sceNpBandwidthTestShutdown +sceNpBandwidthTestShutdownInt +sceNpBandwidthTestShutdownWithDetailedInfo +sceNpBandwidthTestUploadOnlyInitStart +sceNpBase64Decoder +sceNpBase64Encoder +sceNpBase64GetDecodeSize +sceNpBase64UrlDecoder +sceNpBase64UrlEncoder +sceNpBase64UrlGetDecodeSize +sceNpCalloutInitCtx +sceNpCalloutStartOnCtx +sceNpCalloutStartOnCtx64 +sceNpCalloutStopOnCtx +sceNpCalloutTermCtx +sceNpCancelEventFlag +sceNpCheckCallback +sceNpCheckCallbackForLib +sceNpCheckNpAvailability +sceNpCheckNpAvailabilityA +sceNpCheckNpReachability +sceNpCheckPlus +sceNpCheckPremium +sceNpClearEventFlag +sceNpCloseEventFlag +sceNpCloseSema +sceNpCmpNpId +sceNpCmpNpIdInOrder +sceNpCmpOnlineId +sceNpCommerceDialogClose +sceNpCommerceDialogGetResult +sceNpCommerceDialogGetStatus +sceNpCommerceDialogInitialize +sceNpCommerceDialogInitializeInternal +sceNpCommerceDialogOpen +sceNpCommerceDialogOpen2 +sceNpCommerceDialogTerminate +sceNpCommerceDialogUpdateStatus +sceNpCommerceHidePsStoreIcon +sceNpCommerceSetPsStoreIconLayout +sceNpCommerceShowPsStoreIcon +sceNpCondDestroy +sceNpCondInit +sceNpCondSignal +sceNpCondSignalAll +sceNpCondSignalTo +sceNpCondTimedwait +sceNpCondWait +sceNpCreateAsyncRequest +sceNpCreateEventFlag +sceNpCreateRequest +sceNpCreateSema +sceNpCreateThread +sceNpDbgAssignDebugId +sceNpDbgDumpBinary +sceNpDbgDumpText +sceNpDbgStrHex +sceNpDeleteEventFlag +sceNpDeleteRequest +sceNpDeleteSema +sceNpEntitlementAccessAbortRequest +sceNpEntitlementAccessDeleteRequest +sceNpEntitlementAccessGenerateTransactionId +sceNpEntitlementAccessGetAddcontEntitlementInfo +sceNpEntitlementAccessGetAddcontEntitlementInfoIndividual +sceNpEntitlementAccessGetAddcontEntitlementInfoList +sceNpEntitlementAccessGetEntitlementKey +sceNpEntitlementAccessGetGameTrialsFlag +sceNpEntitlementAccessGetSkuFlag +sceNpEntitlementAccessInitialize +sceNpEntitlementAccessPollConsumableEntitlementInfo +sceNpEntitlementAccessPollConsumeEntitlement +sceNpEntitlementAccessPollServiceEntitlementInfo +sceNpEntitlementAccessPollServiceEntitlementInfoList +sceNpEntitlementAccessPollUnifiedEntitlementInfo +sceNpEntitlementAccessPollUnifiedEntitlementInfoList +sceNpEntitlementAccessRequestConsumableEntitlementInfo +sceNpEntitlementAccessRequestConsumeEntitlement +sceNpEntitlementAccessRequestConsumeServiceEntitlement +sceNpEntitlementAccessRequestConsumeUnifiedEntitlement +sceNpEntitlementAccessRequestServiceEntitlementInfo +sceNpEntitlementAccessRequestServiceEntitlementInfoList +sceNpEntitlementAccessRequestUnifiedEntitlementInfo +sceNpEntitlementAccessRequestUnifiedEntitlementInfoList +sceNpEulaDialogCheckVersion +sceNpEulaDialogCheckVersionAbort +sceNpEulaDialogClose +sceNpEulaDialogGetResult +sceNpEulaDialogGetStatus +sceNpEulaDialogInitialize +sceNpEulaDialogOpen +sceNpEulaDialogTerminate +sceNpEulaDialogUpdateStatus +sceNpEventGetCurrentNetworkTick +sceNpFreeImpl +sceNpFreeKernelMemory +sceNpFriendListDialogClose +sceNpFriendListDialogGetResult +sceNpFriendListDialogGetResultA +sceNpFriendListDialogGetStatus +sceNpFriendListDialogInitialize +sceNpFriendListDialogOpen +sceNpFriendListDialogOpenA +sceNpFriendListDialogTerminate +sceNpFriendListDialogUpdateStatus +sceNpGameIntentGetPropertyValueString +sceNpGameIntentGetUdsNpComId +sceNpGameIntentInitialize +sceNpGameIntentLaunchApp +sceNpGameIntentLaunchApp2 +sceNpGameIntentNotifyAppLaunched +sceNpGameIntentReceiveIntent +sceNpGameIntentTerminate +sceNpGetAccountAge +sceNpGetAccountCountry +sceNpGetAccountCountryA +sceNpGetAccountDateOfBirth +sceNpGetAccountDateOfBirthA +sceNpGetAccountId +sceNpGetAccountIdA +sceNpGetAccountLanguage +sceNpGetAccountLanguage2 +sceNpGetAccountLanguageA +sceNpGetGamePresenceStatus +sceNpGetGamePresenceStatusA +sceNpGetNavSdkVersion +sceNpGetNpId +sceNpGetNpReachabilityState +sceNpGetOnlineId +sceNpGetParentalControlInfo +sceNpGetParentalControlInfoA +sceNpGetPlatformType +sceNpGetProcessId +sceNpGetRandom +sceNpGetSdkVersion +sceNpGetSdkVersionUInt +sceNpGetState +sceNpGetSystemClockUsec +sceNpGetUserIdByAccountId +sceNpGetUserIdByOnlineId +sceNpGlobalHeapGetAllocator +sceNpGlobalHeapGetAllocatorEx +sceNpGlobalHeapGetAllocatorExPtr +sceNpGlobalHeapGetAllocatorPtr +sceNpGlobalHeapInit +sceNpGlobalHeapTerm +sceNpGriefReportAbortTransaction +sceNpGriefReportCdAbortRequest +sceNpGriefReportCdBaseDataInit +sceNpGriefReportCdCreateRequest +sceNpGriefReportCdDeleteRequest +sceNpGriefReportCdInit +sceNpGriefReportCdPost +sceNpGriefReportCdTerm +sceNpGriefReportCreateClient +sceNpGriefReportCreateRequest +sceNpGriefReportCreateTransaction +sceNpGriefReportDeleteClient +sceNpGriefReportDeleteRequest +sceNpGriefReportDeleteTicketData +sceNpGriefReportDeleteTransaction +sceNpGriefReportGetTicket +sceNpGriefReportInit +sceNpGriefReportIsInit +sceNpGriefReportPost +sceNpGriefReportReadGroupMessageFile +sceNpGriefReportReadJsonFile +sceNpGriefReportReadLfpsCommentFile +sceNpGriefReportReadReportItem +sceNpGriefReportReadTextChatFile +sceNpGriefReportTerm +sceNpGriefReportWriteActivityAttachFile +sceNpGriefReportWriteGroupMessageFile +sceNpGriefReportWriteJsonFile +sceNpGriefReportWriteReportItem +sceNpGriefReportWriteReportItem2 +sceNpGriefReportWriteTemporaryFile +sceNpGriefReportWriteTextChatFile +sceNpHasSignedUp +sceNpHeapDestroy +sceNpHeapFreeImpl +sceNpHeapGetAllocator +sceNpHeapGetStat +sceNpHeapInit +sceNpHeapMallocImpl +sceNpHeapReallocImpl +sceNpHeapShowStat +sceNpHexToInt +sceNpIdMapperAbortRequest +sceNpIdMapperAccountIdToNpId +sceNpIdMapperAccountIdToOnlineId +sceNpIdMapperCreateRequest +sceNpIdMapperDeleteRequest +sceNpIdMapperNpIdToAccountId +sceNpIdMapperOnlineIdToAccountId +sceNpInGameMessageAbortHandle +sceNpInGameMessageCheckCallback +sceNpInGameMessageCreateHandle +sceNpInGameMessageDeleteHandle +sceNpInGameMessageGetMemoryPoolStatistics +sceNpInGameMessageInitialize +sceNpInGameMessagePrepare +sceNpInGameMessagePrepareA +sceNpInGameMessageSendData +sceNpInGameMessageSendDataA +sceNpInGameMessageTerminate +sceNpInt32ToStr +sceNpInt64ToStr +sceNpIntCheckPlus +sceNpIntGetAppType +sceNpIntGetGamePresenceStatus +sceNpIntGetNpTitleId +sceNpIntGetNpTitleIdSecret +sceNpIntGetPlatformType +sceNpIntIsOnlineIdString +sceNpIntIsValidOnlineId +sceNpIntRegisterCheckCallback +sceNpIntRegisterGamePresenceCallback +sceNpIntSetPlatformType +sceNpIntToHex +sceNpIpc2ClientInit +sceNpIpc2ClientTerm +sceNpIpcAbortRequest +sceNpIpcBeginRequest +sceNpIpcCancelCallback +sceNpIpcCheckCallback +sceNpIpcClientInit +sceNpIpcClientInitInternal +sceNpIpcClientTerm +sceNpIpcClientTermInternal +sceNpIpcClientTest1 +sceNpIpcClientTest2 +sceNpIpcCreateRequest +sceNpIpcDeleteRequest +sceNpIpcEndRequest +sceNpIpcGetEvent +sceNpIpcIsInit +sceNpIpcRegisterCallback +sceNpIpcStartReceiveEvent +sceNpIpcStopReceiveEvent +sceNpIpcUnregisterCallback +sceNpIpcWaitRequest +sceNpIsCEX +sceNpIsDevelopmentMode +sceNpIsPlusMember +sceNpJoinThread +sceNpJsonParse +sceNpJsonParse2 +sceNpJsonParse2Init +sceNpJsonParseBuf +sceNpJsonParseBufInit +sceNpJsonParseEx +sceNpJsonParseExInit +sceNpJsonParseInit +sceNpLookupAbortRequest +sceNpLookupCreateAsyncRequest +sceNpLookupCreateRequest +sceNpLookupCreateTitleCtx +sceNpLookupCreateTitleCtxA +sceNpLookupDeleteRequest +sceNpLookupDeleteTitleCtx +sceNpLookupNetAbortRequest +sceNpLookupNetCensorComment +sceNpLookupNetConvertJidToNpId +sceNpLookupNetConvertNpIdToJid +sceNpLookupNetCreateRequest +sceNpLookupNetCreateTitleCtx +sceNpLookupNetDeleteRequest +sceNpLookupNetDeleteTitleCtx +sceNpLookupNetInit +sceNpLookupNetInitWithFunctionPointer +sceNpLookupNetInitWithMemoryPool +sceNpLookupNetIsInit +sceNpLookupNetNpId +sceNpLookupNetSanitizeComment +sceNpLookupNetSetTimeout +sceNpLookupNetTerm +sceNpLookupNpId +sceNpLookupPollAsync +sceNpLookupSetTimeout +sceNpLookupWaitAsync +sceNpLwCondDestroy +sceNpLwCondInit +sceNpLwCondSignal +sceNpLwCondSignalAll +sceNpLwCondSignalTo +sceNpLwCondWait +sceNpLwMutexDestroy +sceNpLwMutexInit +sceNpLwMutexLock +sceNpLwMutexTryLock +sceNpLwMutexUnlock +sceNpMallocImpl +sceNpManagerIntAbortRequest +sceNpManagerIntAccountId2UserId +sceNpManagerIntAddActiveSigninStateCallback +sceNpManagerIntAddOnlineIdChangeCallback +sceNpManagerIntAddPlusMemberTypeCallback +sceNpManagerIntAddSigninStateCallback +sceNpManagerIntAddUserStateCallback +sceNpManagerIntAuthGetAuthorizationCode +sceNpManagerIntAuthGetIdToken +sceNpManagerIntBind +sceNpManagerIntBindByJson +sceNpManagerIntBindByJsonUserInfo +sceNpManagerIntBindCompleted +sceNpManagerIntBindGetWebAppToken +sceNpManagerIntBindOfflineAccountId +sceNpManagerIntCheckGameNpAvailability +sceNpManagerIntCheckGameNpAvailabilityA +sceNpManagerIntCheckGameNpAvailabilityWithPid +sceNpManagerIntCheckNpAvailability +sceNpManagerIntCheckNpAvailabilityByPid +sceNpManagerIntCheckNpState +sceNpManagerIntCheckNpStateA +sceNpManagerIntCheckPlus +sceNpManagerIntCheckSignin +sceNpManagerIntCheckTitlePatch +sceNpManagerIntCheckTitleSystemUpdate +sceNpManagerIntClearGameAccessToken +sceNpManagerIntClearOnlineIdChangeFlag +sceNpManagerIntClearParentalControlInfo +sceNpManagerIntClearParentalControlInfoSubAccount +sceNpManagerIntClearPlusMemberType +sceNpManagerIntClearTicket +sceNpManagerIntClearUsedFlag +sceNpManagerIntClearVshAccessToken +sceNpManagerIntClearVshToken +sceNpManagerIntClearVshTokenA +sceNpManagerIntCreateAuthenticationTicket +sceNpManagerIntCreateLoginContext +sceNpManagerIntCreateLoginRequest +sceNpManagerIntCreateRequest +sceNpManagerIntDeclareSystemProcess +sceNpManagerIntDeleteLoginContext +sceNpManagerIntDeleteRequest +sceNpManagerIntGetAccessTokenViaImplicitFlow +sceNpManagerIntGetAccountAge +sceNpManagerIntGetAccountCountry +sceNpManagerIntGetAccountCountryA +sceNpManagerIntGetAccountCountrySdk +sceNpManagerIntGetAccountDateOfBirth +sceNpManagerIntGetAccountDateOfBirthA +sceNpManagerIntGetAccountDateOfBirthSdk +sceNpManagerIntGetAccountId +sceNpManagerIntGetAccountIdSdk +sceNpManagerIntGetAccountLanguage +sceNpManagerIntGetAccountLanguageA +sceNpManagerIntGetAccountNpEnv +sceNpManagerIntGetAccountType +sceNpManagerIntGetActiveSigninState +sceNpManagerIntGetAuthServerErrorFlag +sceNpManagerIntGetAuthorizationCode +sceNpManagerIntGetAuthorizationCodeA +sceNpManagerIntGetAuthorizationCodeWithPsnoUri +sceNpManagerIntGetAuthorizationCodeWithRedirectUri +sceNpManagerIntGetClientCredentialAccessToken +sceNpManagerIntGetCommunicationRestrictionStatus +sceNpManagerIntGetGameAccessToken +sceNpManagerIntGetGameAuthorizationCode +sceNpManagerIntGetGameTicket +sceNpManagerIntGetGameTicketWithPid +sceNpManagerIntGetGameTitleBanInfo +sceNpManagerIntGetGameTitleToken +sceNpManagerIntGetGameTitleTokenA +sceNpManagerIntGetGameVshToken +sceNpManagerIntGetGameVshTokenWithPid +sceNpManagerIntGetIssuerId +sceNpManagerIntGetLastAccountLanguage +sceNpManagerIntGetMAccountId +sceNpManagerIntGetNpEnv +sceNpManagerIntGetNpId +sceNpManagerIntGetNpIdByOnlineId +sceNpManagerIntGetNpIdInternal +sceNpManagerIntGetNpIdSdk +sceNpManagerIntGetOfflineAccountId +sceNpManagerIntGetOnlineId +sceNpManagerIntGetOnlineIdByAccountId +sceNpManagerIntGetOnlineIdChangeFlag +sceNpManagerIntGetOnlineIdInternal +sceNpManagerIntGetOnlineIdSdk +sceNpManagerIntGetParentalControlFlag +sceNpManagerIntGetParentalControlInfo +sceNpManagerIntGetParentalControlInfoA +sceNpManagerIntGetParentalControlInfoNB +sceNpManagerIntGetPlusMemberType +sceNpManagerIntGetPlusMemberTypeNB +sceNpManagerIntGetServerError +sceNpManagerIntGetSigninState +sceNpManagerIntGetSigninTelemetryInfo +sceNpManagerIntGetTemporarySsoToken +sceNpManagerIntGetTicket +sceNpManagerIntGetTicketA +sceNpManagerIntGetTicketNB +sceNpManagerIntGetTitleToken +sceNpManagerIntGetTitleTokenWithCheck +sceNpManagerIntGetUserIdByAccountId +sceNpManagerIntGetUserIdByMAccountId +sceNpManagerIntGetUserIdByNpId +sceNpManagerIntGetUserIdByOfflineAccountId +sceNpManagerIntGetUserIdByOnlineId +sceNpManagerIntGetUserIdByOnlineIdSdk +sceNpManagerIntGetUserInfo +sceNpManagerIntGetUserList +sceNpManagerIntGetUserNum +sceNpManagerIntGetUserState +sceNpManagerIntGetVshAccessToken +sceNpManagerIntGetVshAccessTokenWithCheck +sceNpManagerIntGetVshClientId +sceNpManagerIntGetVshToken +sceNpManagerIntGetVshTokenA +sceNpManagerIntGetVshTokenNB +sceNpManagerIntGetWebAppToken +sceNpManagerIntGetWebAppTokenByRequest +sceNpManagerIntGetWebAuthorizationCode +sceNpManagerIntInit +sceNpManagerIntInitInternal +sceNpManagerIntIsServerMaintenanceError +sceNpManagerIntIsSubAccount +sceNpManagerIntIsSubAccountByUserId +sceNpManagerIntIsSystem +sceNpManagerIntIsTemporarySignout +sceNpManagerIntIsUnregisteredClientError +sceNpManagerIntLoginAddJsonInfo +sceNpManagerIntLoginAuthenticate +sceNpManagerIntLoginBind +sceNpManagerIntLoginCheckSignin +sceNpManagerIntLoginCreateAuthenticationTicket +sceNpManagerIntLoginGet2svInfo +sceNpManagerIntLoginGetAccessToken +sceNpManagerIntLoginGetAccessTokenViaImplicitFlow +sceNpManagerIntLoginGetAccountId +sceNpManagerIntLoginGetAuthenticateResponse +sceNpManagerIntLoginGetAuthorizationCode +sceNpManagerIntLoginGetDeviceCodeInfo +sceNpManagerIntLoginGetEmail +sceNpManagerIntLoginGetOnlineId +sceNpManagerIntLoginGetUserId +sceNpManagerIntLoginGetWebAccessToken +sceNpManagerIntLoginGetWebAccessTokenByClientId +sceNpManagerIntLoginParseJsonUserInfo +sceNpManagerIntLoginResetSsoToken +sceNpManagerIntLoginRevalidatePassword +sceNpManagerIntLoginSetAccountInfo +sceNpManagerIntLoginSetSsoToken +sceNpManagerIntLoginSetUserId +sceNpManagerIntLoginSignin +sceNpManagerIntLoginValidateCredential +sceNpManagerIntLoginValidateKratosAuthCode +sceNpManagerIntLoginVerifyDeviceCode +sceNpManagerIntMAccountId2UserId +sceNpManagerIntNotifyPlusFeature +sceNpManagerIntNpId2UserId +sceNpManagerIntOnlineId2NpId +sceNpManagerIntOnlineId2UserId +sceNpManagerIntParseIdToken +sceNpManagerIntParseJsonUserInfo +sceNpManagerIntPfAuth +sceNpManagerIntPsnCoreInternalTest +sceNpManagerIntRemoveActiveSigninStateCallback +sceNpManagerIntRemoveOnlineIdChangeCallback +sceNpManagerIntRemovePlusMemberTypeCallback +sceNpManagerIntRemoveSigninStateCallback +sceNpManagerIntRemoveUserStateCallback +sceNpManagerIntRevalidatePassword +sceNpManagerIntRevalidatePasswordOld +sceNpManagerIntSetCheckPlusResult +sceNpManagerIntSetCommerceDialogPlusResult +sceNpManagerIntSetPlusMemberTypeNB +sceNpManagerIntSetRequestHeader +sceNpManagerIntSetTimeout +sceNpManagerIntSignin +sceNpManagerIntSigninByJson +sceNpManagerIntSigninByJsonUserInfo +sceNpManagerIntSignout +sceNpManagerIntStartSystemMode +sceNpManagerIntSubmitUserCode +sceNpManagerIntTemporarySignout +sceNpManagerIntTerm +sceNpManagerIntTermInternal +sceNpManagerIntUnbind +sceNpManagerIntUnbindOfflineAccountId +sceNpManagerIntUpdateBcAccessToken +sceNpManagerIntUpdateVshAccessToken +sceNpManagerIntUpdateVshToken +sceNpManagerIntUpdateVshTokenA +sceNpManagerIntUserSignin +sceNpManagerIntUserSignout +sceNpManagerIntValidateCredential +sceNpManagerIntValidateQrCodeSession +sceNpManagerIntWebLoginRequired +sceNpManagerPrxStartVsh +sceNpManagerPrxStopVsh +sceNpManagerStartVsh +sceNpManagerStopVsh +sceNpManagerUtilConvertJidToNpId +sceNpManagerUtilConvertNpIdToJid +sceNpManagerUtilConvertOldAuthServerError +sceNpManagerUtilDebugDumpByte +sceNpManagerUtilGetVshEapScopeList +sceNpManagerUtilGetVshScopeList +sceNpManagerUtilSystemMessage +sceNpManagerUtilSystemMessageWithUserId +sceNpMatching2AbortContextStart +sceNpMatching2ContextStart +sceNpMatching2ContextStop +sceNpMatching2CreateContext +sceNpMatching2CreateContextA +sceNpMatching2CreateContextInternal +sceNpMatching2CreateJoinRoom +sceNpMatching2CreateJoinRoomA +sceNpMatching2DestroyContext +sceNpMatching2GetLobbyInfoList +sceNpMatching2GetLobbyMemberDataInternal +sceNpMatching2GetLobbyMemberDataInternalList +sceNpMatching2GetMemoryInfo +sceNpMatching2GetRoomDataExternalList +sceNpMatching2GetRoomDataInternal +sceNpMatching2GetRoomJoinedSlotMaskLocal +sceNpMatching2GetRoomMemberDataExternalList +sceNpMatching2GetRoomMemberDataInternal +sceNpMatching2GetRoomMemberIdListLocal +sceNpMatching2GetRoomPasswordLocal +sceNpMatching2GetServerId +sceNpMatching2GetSignalingOptParamLocal +sceNpMatching2GetSslMemoryInfo +sceNpMatching2GetUserInfoList +sceNpMatching2GetUserInfoListA +sceNpMatching2GetWorldIdArrayForAllServers +sceNpMatching2GetWorldInfoList +sceNpMatching2GrantRoomOwner +sceNpMatching2Initialize +sceNpMatching2JoinLobby +sceNpMatching2JoinRoom +sceNpMatching2JoinRoomA +sceNpMatching2KickoutRoomMember +sceNpMatching2LeaveLobby +sceNpMatching2LeaveRoom +sceNpMatching2RegisterContextCallback +sceNpMatching2RegisterLobbyEventCallback +sceNpMatching2RegisterLobbyMessageCallback +sceNpMatching2RegisterManualUdpSignalingCallback +sceNpMatching2RegisterRoomEventCallback +sceNpMatching2RegisterRoomMessageCallback +sceNpMatching2RegisterSignalingCallback +sceNpMatching2SearchRoom +sceNpMatching2SendLobbyChatMessage +sceNpMatching2SendRoomChatMessage +sceNpMatching2SendRoomMessage +sceNpMatching2SetDefaultRequestOptParam +sceNpMatching2SetExtraInitParam +sceNpMatching2SetLobbyMemberDataInternal +sceNpMatching2SetRoomDataExternal +sceNpMatching2SetRoomDataInternal +sceNpMatching2SetRoomDataInternalExt +sceNpMatching2SetRoomMemberDataInternal +sceNpMatching2SetSignalingOptParam +sceNpMatching2SetUserInfo +sceNpMatching2SignalingAbortConnection +sceNpMatching2SignalingCancelPeerNetInfo +sceNpMatching2SignalingEnableManualUdpMode +sceNpMatching2SignalingEstablishConnection +sceNpMatching2SignalingGetConnectionInfo +sceNpMatching2SignalingGetConnectionInfoA +sceNpMatching2SignalingGetConnectionStatus +sceNpMatching2SignalingGetLocalNetInfo +sceNpMatching2SignalingGetPeerNetInfo +sceNpMatching2SignalingGetPeerNetInfoResult +sceNpMatching2SignalingGetPingInfo +sceNpMatching2SignalingGetPort +sceNpMatching2SignalingSetPort +sceNpMatching2Terminate +sceNpMemoryHeapDestroy +sceNpMemoryHeapGetAllocator +sceNpMemoryHeapGetAllocatorEx +sceNpMemoryHeapInit +sceNpMutexDestroy +sceNpMutexInit +sceNpMutexLock +sceNpMutexTryLock +sceNpMutexUnlock +sceNpNotifyPlusFeature +sceNpNotifyPremiumFeature +sceNpOpenEventFlag +sceNpOpenSema +sceNpPanic +sceNpPartyCheckCallback +sceNpPartyCreate +sceNpPartyCreateA +sceNpPartyGetId +sceNpPartyGetMemberInfo +sceNpPartyGetMemberInfoA +sceNpPartyGetMemberSessionInfo +sceNpPartyGetMemberVoiceInfo +sceNpPartyGetMembers +sceNpPartyGetMembersA +sceNpPartyGetState +sceNpPartyGetStateAsUser +sceNpPartyGetStateAsUserA +sceNpPartyGetVoiceChatPriority +sceNpPartyInitialize +sceNpPartyJoin +sceNpPartyLeave +sceNpPartyRegisterHandler +sceNpPartyRegisterHandlerA +sceNpPartyRegisterPrivateHandler +sceNpPartySendBinaryMessage +sceNpPartySetVoiceChatPriority +sceNpPartyShowInvitationList +sceNpPartyShowInvitationListA +sceNpPartyTerminate +sceNpPartyUnregisterPrivateHandler +sceNpPollAsync +sceNpPollEventFlag +sceNpPollSema +sceNpProfileDialogClose +sceNpProfileDialogGetResult +sceNpProfileDialogGetStatus +sceNpProfileDialogInitialize +sceNpProfileDialogOpen +sceNpProfileDialogOpenA +sceNpProfileDialogTerminate +sceNpProfileDialogUpdateStatus +sceNpPush2CreatePushContext +sceNpPush2CreateUserContext +sceNpPush2DeletePushContext +sceNpPush2DeleteUserContext +sceNpPush2Init +sceNpPush2IsInit +sceNpPush2OptionalCheckCallback +sceNpPush2PollUserPresenceOfflineEvent +sceNpPush2RegisterDataType +sceNpPush2RegisterExtendedDataFilter +sceNpPush2RegisterNotificationCallback +sceNpPush2RegisterNotificationExCallback +sceNpPush2SendPushStatisticsDataSystemTelemetry +sceNpPush2SetGlobalMutex +sceNpPush2SetNpCommunicationId +sceNpPush2Term +sceNpPush2TriggerEmptyUserEvent +sceNpPush2UnregisterDataType +sceNpPush2UnregisterExtendedDataFilter +sceNpPush2UnregisterNotificationCallback +sceNpPush2UnregisterNotificationExCallback +sceNpPush2UnsetNpCommunicationId +sceNpPush2WaitCallback +sceNpPushCheckCallback +sceNpPushInit +sceNpPushIntBeginInactive +sceNpPushIntEndInactive +sceNpPushIntGetBindUserState +sceNpPushIntGetConnectionState +sceNpPushIntRegisterNotificationPacketCallback +sceNpPushIntUnregisterNotificationPacketCallback +sceNpPushRegisterExtendedDataFilter +sceNpPushRegisterInContextNotificationtCallback +sceNpPushRegisterNotificationCallback +sceNpPushRegisterNotificationExCallback +sceNpPushSetNpCommunicationId +sceNpPushStartNotification +sceNpPushStartNotificationA +sceNpPushStopNotification +sceNpPushStopNotificationA +sceNpPushTerm +sceNpPushUnregisterExtendedDataFilter +sceNpPushUnregisterNotificationCallback +sceNpPushUnsetNpCommunicationId +sceNpReallocImpl +sceNpRegisterGamePresenceCallback +sceNpRegisterGamePresenceCallbackA +sceNpRegisterNpReachabilityStateCallback +sceNpRegisterPlusEventCallback +sceNpRegisterPremiumEventCallback +sceNpRegisterStateCallback +sceNpRegisterStateCallbackA +sceNpRegisterStateCallbackForToolkit +sceNpRemotePlaySessionSignalingAbortConnection +sceNpRemotePlaySessionSignalingCreateJoinSession +sceNpRemotePlaySessionSignalingEstablishConnection +sceNpRemotePlaySessionSignalingGetConnectionStatus +sceNpRemotePlaySessionSignalingGetCustomProperty +sceNpRemotePlaySessionSignalingGetLocalNetInfo +sceNpRemotePlaySessionSignalingGetMemoryInfo +sceNpRemotePlaySessionSignalingInitialize +sceNpRemotePlaySessionSignalingJoinSession +sceNpRemotePlaySessionSignalingLeaveSession +sceNpRemotePlaySessionSignalingManualUdpCreateJoinSession +sceNpRemotePlaySessionSignalingManualUdpJoinSession +sceNpRemotePlaySessionSignalingSetCustomProperty +sceNpRemotePlaySessionSignalingTerminate +sceNpRtcConvertToPosixTime +sceNpRtcFormatRFC3339 +sceNpRtcParseRFC3339 +sceNpScoreAbortRequest +sceNpScoreCensorComment +sceNpScoreCensorCommentAsync +sceNpScoreChangeModeForOtherSaveDataOwners +sceNpScoreCreateNpTitleCtx +sceNpScoreCreateNpTitleCtxA +sceNpScoreCreateRequest +sceNpScoreCreateTitleCtx +sceNpScoreDeleteNpTitleCtx +sceNpScoreDeleteRequest +sceNpScoreGetBoardInfo +sceNpScoreGetBoardInfoAsync +sceNpScoreGetFriendsRanking +sceNpScoreGetFriendsRankingA +sceNpScoreGetFriendsRankingAAsync +sceNpScoreGetFriendsRankingAsync +sceNpScoreGetFriendsRankingForCrossSave +sceNpScoreGetFriendsRankingForCrossSaveAsync +sceNpScoreGetGameData +sceNpScoreGetGameDataAsync +sceNpScoreGetGameDataByAccountId +sceNpScoreGetGameDataByAccountIdAsync +sceNpScoreGetRankingByAccountId +sceNpScoreGetRankingByAccountIdAsync +sceNpScoreGetRankingByAccountIdForCrossSave +sceNpScoreGetRankingByAccountIdForCrossSaveAsync +sceNpScoreGetRankingByAccountIdPcId +sceNpScoreGetRankingByAccountIdPcIdAsync +sceNpScoreGetRankingByAccountIdPcIdForCrossSave +sceNpScoreGetRankingByAccountIdPcIdForCrossSaveAsync +sceNpScoreGetRankingByNpId +sceNpScoreGetRankingByNpIdAsync +sceNpScoreGetRankingByNpIdPcId +sceNpScoreGetRankingByNpIdPcIdAsync +sceNpScoreGetRankingByRange +sceNpScoreGetRankingByRangeA +sceNpScoreGetRankingByRangeAAsync +sceNpScoreGetRankingByRangeAsync +sceNpScoreGetRankingByRangeForCrossSave +sceNpScoreGetRankingByRangeForCrossSaveAsync +sceNpScorePollAsync +sceNpScoreRecordGameData +sceNpScoreRecordGameDataAsync +sceNpScoreRecordScore +sceNpScoreRecordScoreAsync +sceNpScoreSanitizeComment +sceNpScoreSanitizeCommentAsync +sceNpScoreSetPlayerCharacterId +sceNpScoreSetThreadParam +sceNpScoreSetTimeout +sceNpScoreWaitAsync +sceNpServerErrorJsonGetErrorCode +sceNpServerErrorJsonMultiGetErrorCode +sceNpServerErrorJsonParse +sceNpServerErrorJsonParseInit +sceNpServerErrorJsonParseMultiInit +sceNpServiceChecker2IntAbortRequest +sceNpServiceChecker2IntCheckServiceFlagArray +sceNpServiceChecker2IntCreateRequest +sceNpServiceChecker2IntDestroyRequest +sceNpServiceChecker2IntFinalize +sceNpServiceChecker2IntGetServiceAvailability +sceNpServiceChecker2IntGetServiceAvailabilityA +sceNpServiceChecker2IntGetServiceFlagArray +sceNpServiceChecker2IntInitialize +sceNpServiceChecker2IntIsSetServiceType +sceNpServiceCheckerIntAbortRequest +sceNpServiceCheckerIntCreateRequest +sceNpServiceCheckerIntDestroyRequest +sceNpServiceCheckerIntFinalize +sceNpServiceCheckerIntGetAvailability +sceNpServiceCheckerIntGetAvailabilityList +sceNpServiceCheckerIntInitialize +sceNpServiceCheckerIntIsCached +sceNpServiceClientInit +sceNpServiceClientTerm +sceNpSessionServiceGetJoinedPartySession +sceNpSessionServiceGetRunningGamePlayerSession +sceNpSessionServiceSendPlayerSessionInvitations +sceNpSessionSignalingActivateSession +sceNpSessionSignalingActivateUser +sceNpSessionSignalingCreateContext +sceNpSessionSignalingCreateContext2 +sceNpSessionSignalingCreateJoinActivate +sceNpSessionSignalingDeactivate +sceNpSessionSignalingDestroyContext +sceNpSessionSignalingGetConnectionFromNetAddress +sceNpSessionSignalingGetConnectionFromNetAddress2 +sceNpSessionSignalingGetConnectionFromPeerAddress +sceNpSessionSignalingGetConnectionFromPeerAddress2 +sceNpSessionSignalingGetConnectionInfo +sceNpSessionSignalingGetConnectionStatistics +sceNpSessionSignalingGetConnectionStatus +sceNpSessionSignalingGetCustomProperty +sceNpSessionSignalingGetGroupFromPeerAddress +sceNpSessionSignalingGetGroupFromSessionId +sceNpSessionSignalingGetGroupInfo +sceNpSessionSignalingGetLocalNetInfo +sceNpSessionSignalingGetMemoryInfo +sceNpSessionSignalingInitialize +sceNpSessionSignalingInitializeWithPort +sceNpSessionSignalingJoinActivate +sceNpSessionSignalingManualUdpAbortConnection +sceNpSessionSignalingManualUdpCreateJoin +sceNpSessionSignalingManualUdpEstablishConnection +sceNpSessionSignalingManualUdpJoin +sceNpSessionSignalingRequestPrepare +sceNpSessionSignalingSetCustomProperty +sceNpSessionSignalingTerminate +sceNpSetAdditionalScope +sceNpSetContentRestriction +sceNpSetEventFlag +sceNpSetGamePresenceOnline +sceNpSetGamePresenceOnlineA +sceNpSetNpTitleId +sceNpSetNpTitleIdVsh +sceNpSetPlatformType +sceNpSetTimeout +sceNpSignalSema +sceNpSignalingActivateConnection +sceNpSignalingActivateConnectionA +sceNpSignalingCancelPeerNetInfo +sceNpSignalingCreateContext +sceNpSignalingCreateContextA +sceNpSignalingDeactivateConnection +sceNpSignalingDeleteContext +sceNpSignalingGetConnectionFromNpId +sceNpSignalingGetConnectionFromPeerAddress +sceNpSignalingGetConnectionFromPeerAddressA +sceNpSignalingGetConnectionInfo +sceNpSignalingGetConnectionInfoA +sceNpSignalingGetConnectionStatistics +sceNpSignalingGetConnectionStatus +sceNpSignalingGetContextOption +sceNpSignalingGetLocalNetInfo +sceNpSignalingGetMemoryInfo +sceNpSignalingGetPeerNetInfo +sceNpSignalingGetPeerNetInfoA +sceNpSignalingGetPeerNetInfoResult +sceNpSignalingInitialize +sceNpSignalingSetContextOption +sceNpSignalingTerminate +sceNpSignalingTerminateConnection +sceNpSnsDailymotionDialogClose +sceNpSnsDailymotionDialogGetResult +sceNpSnsDailymotionDialogGetStatus +sceNpSnsDailymotionDialogInitialize +sceNpSnsDailymotionDialogOpen +sceNpSnsDailymotionDialogTerminate +sceNpSnsDailymotionDialogUpdateStatus +sceNpSnsFacebookAbortRequest +sceNpSnsFacebookCreateRequest +sceNpSnsFacebookDeleteRequest +sceNpSnsFacebookDialogClose +sceNpSnsFacebookDialogGetResult +sceNpSnsFacebookDialogGetStatus +sceNpSnsFacebookDialogInitialize +sceNpSnsFacebookDialogOpen +sceNpSnsFacebookDialogTerminate +sceNpSnsFacebookDialogUpdateStatus +sceNpSnsFacebookGetAccessToken +sceNpSnsIntAbortRequest +sceNpSnsIntCheckServiceAvailability +sceNpSnsIntCreateRequest +sceNpSnsIntDeleteRequest +sceNpSnsIntFbGetGameAccessToken +sceNpSnsIntFbGetGameAccessTokenAllowed +sceNpSnsIntFbGetSystemAccessToken +sceNpSnsIntFbGetTitleInfo +sceNpSnsIntLinkedStatus +sceNpSnsIntPostOpenGraph +sceNpSnsIntTest +sceNpSnsIntTwGetSystemAccessToken +sceNpSnsIntUnlink +sceNpSnsIntYtGetAccessToken +sceNpSnsIntYtGetTitleAccessToken +sceNpSnsIntYtRefreshMasterToken +sceNpSnsTwitchAbortRequest +sceNpSnsTwitchCreateRequest +sceNpSnsTwitchDeleteRequest +sceNpSnsTwitchDialogClose +sceNpSnsTwitchDialogGetResult +sceNpSnsTwitchDialogGetStatus +sceNpSnsTwitchDialogInitialize +sceNpSnsTwitchDialogOpen +sceNpSnsTwitchDialogTerminate +sceNpSnsTwitchDialogUpdateStatus +sceNpSnsTwitchGetAccessToken +sceNpSnsYouTubeAbortRequest +sceNpSnsYouTubeCreateRequest +sceNpSnsYouTubeDeleteRequest +sceNpSnsYouTubeDialogClose +sceNpSnsYouTubeDialogGetResult +sceNpSnsYouTubeDialogGetStatus +sceNpSnsYouTubeDialogInitialize +sceNpSnsYouTubeDialogOpen +sceNpSnsYouTubeDialogTerminate +sceNpSnsYouTubeDialogUpdateStatus +sceNpSnsYouTubeGetAccessToken +sceNpStartApp +sceNpStartVsh +sceNpStopApp +sceNpStopVsh +sceNpStrBuildHex +sceNpStrParseHex +sceNpStrToInt32 +sceNpStrToInt64 +sceNpStrToUInt32 +sceNpStrToUInt64 +sceNpStrcpyToBuf +sceNpStrnParseHex +sceNpStrncpyToBuf +sceNpTcsIntDownloadData +sceNpTcsIntUploadDataToNewSlotAbort +sceNpTcsIntUploadDataToNewSlotBegin +sceNpThreadGetId +sceNpTitleMetadataIntAbortRequest +sceNpTitleMetadataIntCreateRequest +sceNpTitleMetadataIntDeleteRequest +sceNpTitleMetadataIntGetInfo +sceNpTitleMetadataIntGetNpTitleId +sceNpTrophy2AbortHandle +sceNpTrophy2CreateContext +sceNpTrophy2CreateHandle +sceNpTrophy2DestroyContext +sceNpTrophy2DestroyHandle +sceNpTrophy2GetGameIcon +sceNpTrophy2GetGameInfo +sceNpTrophy2GetGroupIcon +sceNpTrophy2GetGroupInfo +sceNpTrophy2GetGroupInfoArray +sceNpTrophy2GetRewardIcon +sceNpTrophy2GetTrophyIcon +sceNpTrophy2GetTrophyInfo +sceNpTrophy2GetTrophyInfoArray +sceNpTrophy2RegisterContext +sceNpTrophy2RegisterUnlockCallback +sceNpTrophy2ShowTrophyList +sceNpTrophy2SystemAbortHandle +sceNpTrophy2SystemBuildGroupIconUri +sceNpTrophy2SystemBuildRewardIconUri +sceNpTrophy2SystemBuildTrophyIconUri +sceNpTrophy2SystemCheckCallback +sceNpTrophy2SystemCheckNetSyncTitles +sceNpTrophy2SystemCreateContext +sceNpTrophy2SystemCreateHandle +sceNpTrophy2SystemDebugLockTrophy +sceNpTrophy2SystemDebugUnlockTrophy +sceNpTrophy2SystemDestroyContext +sceNpTrophy2SystemGetTrophyDetails +sceNpTrophy2SystemGetTrophyGroupConf +sceNpTrophy2SystemGetTrophySetArray +sceNpTrophy2SystemGetTrophyTitleConf +sceNpTrophy2SystemGetTrophyTitleDetails +sceNpTrophy2SystemGetTrpIconByUri +sceNpTrophy2SystemIsServerAvailable +sceNpTrophy2SystemRegisterTitleSyncedCallback +sceNpTrophy2SystemRegisterTitleUpdateCallback +sceNpTrophy2SystemRemoveAll +sceNpTrophy2SystemRemoveTitleData +sceNpTrophy2SystemRemoveUserData +sceNpTrophy2UnregisterUnlockCallback +sceNpTrophyAbortHandle +sceNpTrophyCaptureScreenshot +sceNpTrophyConfigGetTrophyDetails +sceNpTrophyConfigGetTrophyFlagArray +sceNpTrophyConfigGetTrophyGroupArray +sceNpTrophyConfigGetTrophyGroupDetails +sceNpTrophyConfigGetTrophySetInfo +sceNpTrophyConfigGetTrophySetInfoInGroup +sceNpTrophyConfigGetTrophySetVersion +sceNpTrophyConfigGetTrophyTitleDetails +sceNpTrophyConfigHasGroupFeature +sceNpTrophyCreateContext +sceNpTrophyCreateHandle +sceNpTrophyDestroyContext +sceNpTrophyDestroyHandle +sceNpTrophyGetGameIcon +sceNpTrophyGetGameInfo +sceNpTrophyGetGroupIcon +sceNpTrophyGetGroupInfo +sceNpTrophyGetTrophyIcon +sceNpTrophyGetTrophyInfo +sceNpTrophyGetTrophyUnlockState +sceNpTrophyGroupArrayGetNum +sceNpTrophyIntAbortHandle +sceNpTrophyIntCheckNetSyncTitles +sceNpTrophyIntCreateHandle +sceNpTrophyIntDestroyHandle +sceNpTrophyIntGetLocalTrophySummary +sceNpTrophyIntGetProgress +sceNpTrophyIntGetRunningTitle +sceNpTrophyIntGetRunningTitles +sceNpTrophyIntGetTrpIconByUri +sceNpTrophyIntNetSyncTitle +sceNpTrophyIntNetSyncTitles +sceNpTrophyNetIsServerAvailable +sceNpTrophyNumInfoGetTotal +sceNpTrophyRegisterContext +sceNpTrophySetInfoGetTrophyFlagArray +sceNpTrophySetInfoGetTrophyNum +sceNpTrophyShowTrophyList +sceNpTrophySystemAbortHandle +sceNpTrophySystemBuildGroupIconUri +sceNpTrophySystemBuildNetTrophyIconUri +sceNpTrophySystemBuildTitleIconUri +sceNpTrophySystemBuildTrophyIconUri +sceNpTrophySystemCheckCallback +sceNpTrophySystemCheckNetSync +sceNpTrophySystemCheckNetSyncTitles +sceNpTrophySystemCheckRecoveryRequired +sceNpTrophySystemCloseStorage +sceNpTrophySystemCreateContext +sceNpTrophySystemCreateHandle +sceNpTrophySystemDbgCtl +sceNpTrophySystemDebugLockTrophy +sceNpTrophySystemDebugUnlockTrophy +sceNpTrophySystemDestroyContext +sceNpTrophySystemDestroyHandle +sceNpTrophySystemDestroyTrophyConfig +sceNpTrophySystemGetDbgParam +sceNpTrophySystemGetDbgParamInt +sceNpTrophySystemGetGroupIcon +sceNpTrophySystemGetLocalTrophySummary +sceNpTrophySystemGetNextTitleFileEntryStatus +sceNpTrophySystemGetProgress +sceNpTrophySystemGetTitleFileStatus +sceNpTrophySystemGetTitleIcon +sceNpTrophySystemGetTitleSyncStatus +sceNpTrophySystemGetTrophyConfig +sceNpTrophySystemGetTrophyData +sceNpTrophySystemGetTrophyGroupData +sceNpTrophySystemGetTrophyIcon +sceNpTrophySystemGetTrophyTitleData +sceNpTrophySystemGetTrophyTitleIds +sceNpTrophySystemGetTrpGroupIcon +sceNpTrophySystemGetTrpTitleIcon +sceNpTrophySystemGetTrpTrophyConfig +sceNpTrophySystemGetTrpTrophyIcon +sceNpTrophySystemGetUserFileInfo +sceNpTrophySystemGetUserFileStatus +sceNpTrophySystemIsServerAvailable +sceNpTrophySystemNetSyncTitle +sceNpTrophySystemNetSyncTitles +sceNpTrophySystemOpenStorage +sceNpTrophySystemPerformRecovery +sceNpTrophySystemRegisterTitleSyncedCallback +sceNpTrophySystemRegisterTitleUpdateCallback +sceNpTrophySystemRemoveAll +sceNpTrophySystemRemoveTitleData +sceNpTrophySystemRemoveUserData +sceNpTrophySystemSetDbgParam +sceNpTrophySystemSetDbgParamInt +sceNpTrophySystemUnregisterTitleSyncedCallback +sceNpTrophySystemUnregisterTitleUpdateCallback +sceNpTrophySystemWrapDebugLockTrophy +sceNpTrophySystemWrapDebugUnlockTrophy +sceNpTrophySystemWrapGetGroupDetails +sceNpTrophySystemWrapGetPlayedTrophyTitles +sceNpTrophySystemWrapGetTitleDetails +sceNpTrophySystemWrapGetTrophyDetailsArray +sceNpTrophySystemWrapGetTrophyTitleIdsByNpTitleId +sceNpTrophySystemWrapRemoveAll +sceNpTrophySystemWrapRemoveTitleData +sceNpTrophySystemWrapRemoveUserData +sceNpTrophyUnlockTrophy +sceNpTssCreateNpTitleCtx +sceNpTssCreateNpTitleCtxA +sceNpTssGetData +sceNpTssGetDataAsync +sceNpTssGetSmallStorage +sceNpTssGetSmallStorageAsync +sceNpTssGetStorage +sceNpTssGetStorageAsync +sceNpTusAbortRequest +sceNpTusAddAndGetVariable +sceNpTusAddAndGetVariableA +sceNpTusAddAndGetVariableAAsync +sceNpTusAddAndGetVariableAVUser +sceNpTusAddAndGetVariableAVUserAsync +sceNpTusAddAndGetVariableAsync +sceNpTusAddAndGetVariableForCrossSave +sceNpTusAddAndGetVariableForCrossSaveAsync +sceNpTusAddAndGetVariableForCrossSaveVUser +sceNpTusAddAndGetVariableForCrossSaveVUserAsync +sceNpTusAddAndGetVariableVUser +sceNpTusAddAndGetVariableVUserAsync +sceNpTusChangeModeForOtherSaveDataOwners +sceNpTusCreateNpTitleCtx +sceNpTusCreateNpTitleCtxA +sceNpTusCreateRequest +sceNpTusCreateTitleCtx +sceNpTusDeleteMultiSlotData +sceNpTusDeleteMultiSlotDataA +sceNpTusDeleteMultiSlotDataAAsync +sceNpTusDeleteMultiSlotDataAsync +sceNpTusDeleteMultiSlotDataVUser +sceNpTusDeleteMultiSlotDataVUserAsync +sceNpTusDeleteMultiSlotVariable +sceNpTusDeleteMultiSlotVariableA +sceNpTusDeleteMultiSlotVariableAAsync +sceNpTusDeleteMultiSlotVariableAsync +sceNpTusDeleteMultiSlotVariableVUser +sceNpTusDeleteMultiSlotVariableVUserAsync +sceNpTusDeleteNpTitleCtx +sceNpTusDeleteRequest +sceNpTusGetData +sceNpTusGetDataA +sceNpTusGetDataAAsync +sceNpTusGetDataAVUser +sceNpTusGetDataAVUserAsync +sceNpTusGetDataAsync +sceNpTusGetDataForCrossSave +sceNpTusGetDataForCrossSaveAsync +sceNpTusGetDataForCrossSaveVUser +sceNpTusGetDataForCrossSaveVUserAsync +sceNpTusGetDataVUser +sceNpTusGetDataVUserAsync +sceNpTusGetFriendsDataStatus +sceNpTusGetFriendsDataStatusA +sceNpTusGetFriendsDataStatusAAsync +sceNpTusGetFriendsDataStatusAsync +sceNpTusGetFriendsDataStatusForCrossSave +sceNpTusGetFriendsDataStatusForCrossSaveAsync +sceNpTusGetFriendsVariable +sceNpTusGetFriendsVariableA +sceNpTusGetFriendsVariableAAsync +sceNpTusGetFriendsVariableAsync +sceNpTusGetFriendsVariableForCrossSave +sceNpTusGetFriendsVariableForCrossSaveAsync +sceNpTusGetMultiSlotDataStatus +sceNpTusGetMultiSlotDataStatusA +sceNpTusGetMultiSlotDataStatusAAsync +sceNpTusGetMultiSlotDataStatusAVUser +sceNpTusGetMultiSlotDataStatusAVUserAsync +sceNpTusGetMultiSlotDataStatusAsync +sceNpTusGetMultiSlotDataStatusForCrossSave +sceNpTusGetMultiSlotDataStatusForCrossSaveAsync +sceNpTusGetMultiSlotDataStatusForCrossSaveVUser +sceNpTusGetMultiSlotDataStatusForCrossSaveVUserAsync +sceNpTusGetMultiSlotDataStatusVUser +sceNpTusGetMultiSlotDataStatusVUserAsync +sceNpTusGetMultiSlotVariable +sceNpTusGetMultiSlotVariableA +sceNpTusGetMultiSlotVariableAAsync +sceNpTusGetMultiSlotVariableAVUser +sceNpTusGetMultiSlotVariableAVUserAsync +sceNpTusGetMultiSlotVariableAsync +sceNpTusGetMultiSlotVariableForCrossSave +sceNpTusGetMultiSlotVariableForCrossSaveAsync +sceNpTusGetMultiSlotVariableForCrossSaveVUser +sceNpTusGetMultiSlotVariableForCrossSaveVUserAsync +sceNpTusGetMultiSlotVariableVUser +sceNpTusGetMultiSlotVariableVUserAsync +sceNpTusGetMultiUserDataStatus +sceNpTusGetMultiUserDataStatusA +sceNpTusGetMultiUserDataStatusAAsync +sceNpTusGetMultiUserDataStatusAVUser +sceNpTusGetMultiUserDataStatusAVUserAsync +sceNpTusGetMultiUserDataStatusAsync +sceNpTusGetMultiUserDataStatusForCrossSave +sceNpTusGetMultiUserDataStatusForCrossSaveAsync +sceNpTusGetMultiUserDataStatusForCrossSaveVUser +sceNpTusGetMultiUserDataStatusForCrossSaveVUserAsync +sceNpTusGetMultiUserDataStatusVUser +sceNpTusGetMultiUserDataStatusVUserAsync +sceNpTusGetMultiUserVariable +sceNpTusGetMultiUserVariableA +sceNpTusGetMultiUserVariableAAsync +sceNpTusGetMultiUserVariableAVUser +sceNpTusGetMultiUserVariableAVUserAsync +sceNpTusGetMultiUserVariableAsync +sceNpTusGetMultiUserVariableForCrossSave +sceNpTusGetMultiUserVariableForCrossSaveAsync +sceNpTusGetMultiUserVariableForCrossSaveVUser +sceNpTusGetMultiUserVariableForCrossSaveVUserAsync +sceNpTusGetMultiUserVariableVUser +sceNpTusGetMultiUserVariableVUserAsync +sceNpTusPollAsync +sceNpTusSetData +sceNpTusSetDataA +sceNpTusSetDataAAsync +sceNpTusSetDataAVUser +sceNpTusSetDataAVUserAsync +sceNpTusSetDataAsync +sceNpTusSetDataVUser +sceNpTusSetDataVUserAsync +sceNpTusSetMultiSlotVariable +sceNpTusSetMultiSlotVariableA +sceNpTusSetMultiSlotVariableAAsync +sceNpTusSetMultiSlotVariableAsync +sceNpTusSetMultiSlotVariableVUser +sceNpTusSetMultiSlotVariableVUserAsync +sceNpTusSetThreadParam +sceNpTusSetTimeout +sceNpTusTryAndSetVariable +sceNpTusTryAndSetVariableA +sceNpTusTryAndSetVariableAAsync +sceNpTusTryAndSetVariableAVUser +sceNpTusTryAndSetVariableAVUserAsync +sceNpTusTryAndSetVariableAsync +sceNpTusTryAndSetVariableForCrossSave +sceNpTusTryAndSetVariableForCrossSaveAsync +sceNpTusTryAndSetVariableForCrossSaveVUser +sceNpTusTryAndSetVariableForCrossSaveVUserAsync +sceNpTusTryAndSetVariableVUser +sceNpTusTryAndSetVariableVUserAsync +sceNpTusWaitAsync +sceNpUInt32ToStr +sceNpUInt64ToStr +sceNpUniversalDataSystemAbortHandle +sceNpUniversalDataSystemCreateContext +sceNpUniversalDataSystemCreateEvent +sceNpUniversalDataSystemCreateEventPropertyArray +sceNpUniversalDataSystemCreateEventPropertyObject +sceNpUniversalDataSystemCreateHandle +sceNpUniversalDataSystemCreateRecordArray +sceNpUniversalDataSystemCreateRecordData +sceNpUniversalDataSystemCreateRecordObject +sceNpUniversalDataSystemDestroyContext +sceNpUniversalDataSystemDestroyEvent +sceNpUniversalDataSystemDestroyEventPropertyArray +sceNpUniversalDataSystemDestroyEventPropertyObject +sceNpUniversalDataSystemDestroyHandle +sceNpUniversalDataSystemDestroyRecordArray +sceNpUniversalDataSystemDestroyRecordData +sceNpUniversalDataSystemDestroyRecordObject +sceNpUniversalDataSystemEventEstimateSize +sceNpUniversalDataSystemEventPropertyArraySetArray +sceNpUniversalDataSystemEventPropertyArraySetBinary +sceNpUniversalDataSystemEventPropertyArraySetBool +sceNpUniversalDataSystemEventPropertyArraySetFloat32 +sceNpUniversalDataSystemEventPropertyArraySetFloat64 +sceNpUniversalDataSystemEventPropertyArraySetInt32 +sceNpUniversalDataSystemEventPropertyArraySetInt64 +sceNpUniversalDataSystemEventPropertyArraySetObject +sceNpUniversalDataSystemEventPropertyArraySetString +sceNpUniversalDataSystemEventPropertyArraySetUInt32 +sceNpUniversalDataSystemEventPropertyArraySetUInt64 +sceNpUniversalDataSystemEventPropertyObjectSetArray +sceNpUniversalDataSystemEventPropertyObjectSetBinary +sceNpUniversalDataSystemEventPropertyObjectSetBool +sceNpUniversalDataSystemEventPropertyObjectSetFloat32 +sceNpUniversalDataSystemEventPropertyObjectSetFloat64 +sceNpUniversalDataSystemEventPropertyObjectSetInt32 +sceNpUniversalDataSystemEventPropertyObjectSetInt64 +sceNpUniversalDataSystemEventPropertyObjectSetObject +sceNpUniversalDataSystemEventPropertyObjectSetString +sceNpUniversalDataSystemEventPropertyObjectSetUInt32 +sceNpUniversalDataSystemEventPropertyObjectSetUInt64 +sceNpUniversalDataSystemEventToString +sceNpUniversalDataSystemGetMemoryStat +sceNpUniversalDataSystemGetStorageStat +sceNpUniversalDataSystemInitialize +sceNpUniversalDataSystemIntAbortHandle +sceNpUniversalDataSystemIntCheckNetSyncTitles +sceNpUniversalDataSystemIntCreateContext +sceNpUniversalDataSystemIntCreateHandle +sceNpUniversalDataSystemIntCreateRecordArray +sceNpUniversalDataSystemIntCreateRecordData +sceNpUniversalDataSystemIntCreateRecordObject +sceNpUniversalDataSystemIntDeleteAllData +sceNpUniversalDataSystemIntDeleteAllRecord +sceNpUniversalDataSystemIntDeleteUserDataWithServerData +sceNpUniversalDataSystemIntDestroyContext +sceNpUniversalDataSystemIntDestroyHandle +sceNpUniversalDataSystemIntDestroyRecordArray +sceNpUniversalDataSystemIntDestroyRecordData +sceNpUniversalDataSystemIntDestroyRecordObject +sceNpUniversalDataSystemIntGetMemoryStat +sceNpUniversalDataSystemIntInitialize +sceNpUniversalDataSystemIntNetSyncTitles +sceNpUniversalDataSystemIntPostRecord +sceNpUniversalDataSystemIntPostRecordData +sceNpUniversalDataSystemIntRecordArraySetArray +sceNpUniversalDataSystemIntRecordArraySetBinary +sceNpUniversalDataSystemIntRecordArraySetBool +sceNpUniversalDataSystemIntRecordArraySetFloat32 +sceNpUniversalDataSystemIntRecordArraySetFloat64 +sceNpUniversalDataSystemIntRecordArraySetInt32 +sceNpUniversalDataSystemIntRecordArraySetInt64 +sceNpUniversalDataSystemIntRecordArraySetObject +sceNpUniversalDataSystemIntRecordArraySetString +sceNpUniversalDataSystemIntRecordArraySetUInt32 +sceNpUniversalDataSystemIntRecordArraySetUInt64 +sceNpUniversalDataSystemIntRecordDataEstimateSize +sceNpUniversalDataSystemIntRecordObjectSetArray +sceNpUniversalDataSystemIntRecordObjectSetBinary +sceNpUniversalDataSystemIntRecordObjectSetBool +sceNpUniversalDataSystemIntRecordObjectSetFloat32 +sceNpUniversalDataSystemIntRecordObjectSetFloat64 +sceNpUniversalDataSystemIntRecordObjectSetInt32 +sceNpUniversalDataSystemIntRecordObjectSetInt64 +sceNpUniversalDataSystemIntRecordObjectSetObject +sceNpUniversalDataSystemIntRecordObjectSetString +sceNpUniversalDataSystemIntRecordObjectSetUInt32 +sceNpUniversalDataSystemIntRecordObjectSetUInt64 +sceNpUniversalDataSystemIntTerminate +sceNpUniversalDataSystemPostEvent +sceNpUniversalDataSystemPostRecord +sceNpUniversalDataSystemPostRecordData +sceNpUniversalDataSystemRegisterContext +sceNpUniversalDataSystemTerminate +sceNpUnregisterGamePresenceCallbackA +sceNpUnregisterNpReachabilityStateCallback +sceNpUnregisterPlusEventCallback +sceNpUnregisterPremiumEventCallback +sceNpUnregisterStateCallback +sceNpUnregisterStateCallbackA +sceNpUnregisterStateCallbackForToolkit +sceNpUserGetUserIdList +sceNpUtilBuildTitleId +sceNpUtilCanonicalizeNpIdForPs4 +sceNpUtilCanonicalizeNpIdForPsp2 +sceNpUtilCmpAccountId +sceNpUtilGetDateSetAuto +sceNpUtilGetDbgCommerce +sceNpUtilGetEnv +sceNpUtilGetFakeDisplayNameMode +sceNpUtilGetFakeRateLimit +sceNpUtilGetIgnoreNpTitleId +sceNpUtilGetNpDebug +sceNpUtilGetNpLanguageCode +sceNpUtilGetNpLanguageCode2 +sceNpUtilGetNpLanguageCode2Str +sceNpUtilGetNpLanguageCodeStr +sceNpUtilGetNpTestPatch +sceNpUtilGetNthChar +sceNpUtilGetShareTitleCheck +sceNpUtilGetSystemLanguage +sceNpUtilGetTrcNotify +sceNpUtilGetWebApi2FakeRateLimit +sceNpUtilGetWebApi2FakeRateLimitTarget +sceNpUtilGetWebTraceSetting +sceNpUtilHttpUrlEncode +sceNpUtilJidToNpId +sceNpUtilJsonEscape +sceNpUtilJsonGetOneChar +sceNpUtilJsonUnescape +sceNpUtilNpIdToJid +sceNpUtilNumChars +sceNpUtilParseJid +sceNpUtilParseTitleId +sceNpUtilSerializeJid +sceNpUtilUtf8GetOneChar +sceNpUtilXmlEscape +sceNpUtilXmlGetOneChar +sceNpUtilXmlUnescape +sceNpUtilityInit +sceNpUtilityTerm +sceNpWaitAsync +sceNpWaitEventFlag +sceNpWaitSema +sceNpWebApi2AbortRequest +sceNpWebApi2AddHttpRequestHeader +sceNpWebApi2AddMultipartPart +sceNpWebApi2AddWebTraceTag +sceNpWebApi2CheckTimeout +sceNpWebApi2CreateMultipartRequest +sceNpWebApi2CreateRequest +sceNpWebApi2CreateUserContext +sceNpWebApi2DeleteRequest +sceNpWebApi2DeleteUserContext +sceNpWebApi2GetHttpResponseHeaderValue +sceNpWebApi2GetHttpResponseHeaderValueLength +sceNpWebApi2GetMemoryPoolStats +sceNpWebApi2Initialize +sceNpWebApi2InitializeForPresence +sceNpWebApi2IntCreateRequest +sceNpWebApi2IntInitialize +sceNpWebApi2IntInitialize2 +sceNpWebApi2IntPushEventCreateCtxIndFilter +sceNpWebApi2IntPushEventCreateDestPs4CtxIndFilter +sceNpWebApi2PushEventAbortHandle +sceNpWebApi2PushEventCreateFilter +sceNpWebApi2PushEventCreateHandle +sceNpWebApi2PushEventCreatePushContext +sceNpWebApi2PushEventDeleteFilter +sceNpWebApi2PushEventDeleteHandle +sceNpWebApi2PushEventDeletePushContext +sceNpWebApi2PushEventRegisterCallback +sceNpWebApi2PushEventRegisterPushContextCallback +sceNpWebApi2PushEventSetHandleTimeout +sceNpWebApi2PushEventStartPushContextCallback +sceNpWebApi2PushEventUnregisterCallback +sceNpWebApi2PushEventUnregisterPushContextCallback +sceNpWebApi2ReadData +sceNpWebApi2SendMultipartRequest +sceNpWebApi2SendRequest +sceNpWebApi2SetMultipartContentType +sceNpWebApi2SetRequestTimeout +sceNpWebApi2Terminate +sceNpWebApiAbortHandle +sceNpWebApiAbortRequest +sceNpWebApiAddHttpRequestHeader +sceNpWebApiAddMultipartPart +sceNpWebApiCheckTimeout +sceNpWebApiClearAllUnusedConnection +sceNpWebApiClearUnusedConnection +sceNpWebApiCreateContext +sceNpWebApiCreateContextA +sceNpWebApiCreateContextForContactsApp +sceNpWebApiCreateExtdPushEventFilter +sceNpWebApiCreateHandle +sceNpWebApiCreateMultipartRequest +sceNpWebApiCreatePushEventFilter +sceNpWebApiCreateRequest +sceNpWebApiCreateServicePushEventFilter +sceNpWebApiDeleteContext +sceNpWebApiDeleteExtdPushEventFilter +sceNpWebApiDeleteHandle +sceNpWebApiDeletePushEventFilter +sceNpWebApiDeleteRequest +sceNpWebApiDeleteServicePushEventFilter +sceNpWebApiGetConnectionStats +sceNpWebApiGetErrorCode +sceNpWebApiGetHttpResponseHeaderValue +sceNpWebApiGetHttpResponseHeaderValueLength +sceNpWebApiGetHttpStatusCode +sceNpWebApiGetMemoryPoolStats +sceNpWebApiInitialize +sceNpWebApiInitializeForPresence +sceNpWebApiIntCreateCtxIndExtdPushEventFilter +sceNpWebApiIntCreateRequest +sceNpWebApiIntCreateServicePushEventFilter +sceNpWebApiIntInitialize +sceNpWebApiIntRegisterServicePushEventCallback +sceNpWebApiIntRegisterServicePushEventCallbackA +sceNpWebApiReadData +sceNpWebApiRegisterExtdPushEventCallback +sceNpWebApiRegisterExtdPushEventCallbackA +sceNpWebApiRegisterNotificationCallback +sceNpWebApiRegisterPushEventCallback +sceNpWebApiRegisterServicePushEventCallback +sceNpWebApiSendMultipartRequest +sceNpWebApiSendMultipartRequest2 +sceNpWebApiSendRequest +sceNpWebApiSendRequest2 +sceNpWebApiSetHandleTimeout +sceNpWebApiSetMaxConnection +sceNpWebApiSetMultipartContentType +sceNpWebApiSetRequestTimeout +sceNpWebApiTerminate +sceNpWebApiUnregisterExtdPushEventCallback +sceNpWebApiUnregisterNotificationCallback +sceNpWebApiUnregisterPushEventCallback +sceNpWebApiUnregisterServicePushEventCallback +sceNpWebApiUtilityParseNpId +sceNpWebApiVshInitialize +sceNpWordFilterAbortRequest +sceNpWordFilterCensorComment +sceNpWordFilterCreateAsyncRequest +sceNpWordFilterCreateRequest +sceNpWordFilterCreateTitleCtx +sceNpWordFilterCreateTitleCtxA +sceNpWordFilterDeleteRequest +sceNpWordFilterDeleteTitleCtx +sceNpWordFilterPollAsync +sceNpWordFilterSanitizeComment +sceNpWordFilterSetTimeout +sceNpWordFilterWaitAsync +sceNpXmlParse +sceNpXmlParseInit +sceOpusCeltDecCreate +sceOpusCeltDecCreateEx +sceOpusCeltDecCtl +sceOpusCeltDecDecode +sceOpusCeltDecDecodeFloat +sceOpusCeltDecDecodeFloatWithPriority +sceOpusCeltDecDecodeWithPriority +sceOpusCeltDecDestroy +sceOpusCeltDecGetSize +sceOpusCeltDecInitialize +sceOpusCeltDecTerminate +sceOpusCeltEncCreate +sceOpusCeltEncCreateEx +sceOpusCeltEncCtl +sceOpusCeltEncDestroy +sceOpusCeltEncEncode +sceOpusCeltEncEncodeFloat +sceOpusCeltEncEncodeFloatWithPriority +sceOpusCeltEncEncodeWithPriority +sceOpusCeltEncGetSize +sceOpusCeltEncInitialize +sceOpusCeltEncTerminate +sceOpusDecCancel +sceOpusDecCreate +sceOpusDecCreateEx +sceOpusDecCtl +sceOpusDecDecode +sceOpusDecDecodeCancelForTimeout +sceOpusDecDecodeFloat +sceOpusDecDecodeFloatWithPriority +sceOpusDecDecodeFloatWithPriorityAndTimeout +sceOpusDecDecodeWithPriority +sceOpusDecDecodeWithPriorityAndTimeout +sceOpusDecDestroy +sceOpusDecGetSize +sceOpusDecInitialize +sceOpusDecTerminate +sceOpusSilkEncCancel +sceOpusSilkEncCreate +sceOpusSilkEncCreateEx +sceOpusSilkEncCtl +sceOpusSilkEncDestroy +sceOpusSilkEncEncode +sceOpusSilkEncEncodeCancelForTimeout +sceOpusSilkEncEncodeFloat +sceOpusSilkEncEncodeFloatWithPriority +sceOpusSilkEncEncodeFloatWithPriorityAndTimeout +sceOpusSilkEncEncodeWithPriority +sceOpusSilkEncEncodeWithPriorityAndTimeout +sceOpusSilkEncGetSize +sceOpusSilkEncInitialize +sceOpusSilkEncTerminate +scePadClose +scePadConnectPort +scePadDeviceClassGetExtendedInformation +scePadDeviceClassParseData +scePadDeviceOpen +scePadDisableTriggerEffect +scePadDisableVibration +scePadDisconnectDevice +scePadDisconnectPort +scePadEnableAutoDetect +scePadEnableExtensionPort +scePadEnableSpecificDeviceClass +scePadEnableUsbConnection +scePadGetActiveTime +scePadGetBluetoothAddress +scePadGetCapability +scePadGetControllerInformation +scePadGetDataInternal +scePadGetDeviceId +scePadGetDeviceInfo +scePadGetExtControllerInformation +scePadGetExtensionUnitInfo +scePadGetFeatureReport +scePadGetFeatureReport2 +scePadGetHandle +scePadGetIdleCount +scePadGetInfo +scePadGetInfoByPortType +scePadGetLicenseControllerInformation +scePadGetMotionSensorPosition +scePadGetMotionTimerUnit +scePadGetSphereRadius +scePadGetTriggerEffectState +scePadGetVersionInfo +scePadInit +scePadIsBlasterConnected +scePadIsDS4Connected +scePadIsLightBarBaseBrightnessControllable +scePadIsMoveConnected +scePadIsMoveReproductionModel +scePadIsValidHandle +scePadLastLotusButtonData +scePadMbusInit +scePadMbusTerm +scePadOpen +scePadOpenExt +scePadOpenExt2 +scePadOutputReport +scePadRead +scePadReadBlasterForTracker +scePadReadExt +scePadReadForTracker +scePadReadHistory +scePadReadState +scePadReadStateExt +scePadRemoteControlInsertData +scePadResetLightBar +scePadResetLightBarAll +scePadResetLightBarAllByPortType +scePadResetOrientation +scePadResetOrientationForTracker +scePadSetAngularVelocityBiasCorrectionState +scePadSetAngularVelocityDeadbandState +scePadSetAutoPowerOffCount +scePadSetButtonRemappingInfo +scePadSetConnection +scePadSetExtensionReport +scePadSetFeatureReport +scePadSetFeatureReport2 +scePadSetForceIntercepted +scePadSetLightBar +scePadSetLightBarBaseBrightness +scePadSetLightBarBlinking +scePadSetLightBarForTracker +scePadSetLoginUserNumber +scePadSetMotionSensorState +scePadSetProcessFocus +scePadSetProcessPrivilege +scePadSetProcessPrivilegeOfButtonRemapping +scePadSetShareButtonMaskForRemotePlay +scePadSetTiltCorrectionState +scePadSetTriggerEffect +scePadSetUserColor +scePadSetUserNumber +scePadSetVibration +scePadSetVibrationForce +scePadSetVibrationMode +scePadSetVibrationTriggerEffectWeakWhileEmbeddedMicInUse +scePadSetVrTrackingMode +scePadShareOutputData +scePadStartRecording +scePadStopRecording +scePadSwitchConnection +scePadTrackerCalibrate +scePadTrackerGetWorkingMemorySize +scePadTrackerInit +scePadTrackerReadState +scePadTrackerTerm +scePadTrackerUpdate +scePadVertualDeviceAddDevice +scePadVirtualDeviceAddDevice +scePadVirtualDeviceDeleteDevice +scePadVirtualDeviceDisableButtonRemapping +scePadVirtualDeviceGetRemoteSetting +scePadVirtualDeviceInsertData +scePadVrControllerGetDeviceInformation +scePadVrControllerGetTriggerEffectState +scePadVrControllerGetTriggerEffectStates +scePadVrControllerRead +scePadVrControllerReadCombinedState +scePadVrControllerReadState +scePadVrControllerSetTriggerEffect +scePadVrControllerSetTriggerEffects +scePadVrControllerSetVibration +scePadVrControllerSetVibrationMode +scePatchCheckerCancel +scePatchCheckerCheckPatch +scePatchCheckerClearCache +scePatchCheckerCreateHandler +scePatchCheckerDestroyHandler +scePatchCheckerDisableAutoDownload +scePatchCheckerEnableAutoDownload +scePatchCheckerGetApplicableTick +scePatchCheckerGetPackageInfo +scePatchCheckerInitialize +scePatchCheckerRequestCheckPatch +scePatchCheckerRequestCheckPatchByType +scePatchCheckerSetCache +scePatchCheckerSetFakeCache +scePatchCheckerTerminate +scePatchCheckerUpdateAppdbForEap +scePerfPmcAperfGetCounter +scePerfPmcClose +scePerfPmcGetCounter +scePerfPmcGetCounterSelf +scePerfPmcL2iGetCounter +scePerfPmcL2iGetCounterSelf +scePerfPmcL2iSelectEvent +scePerfPmcL2iSetCounter +scePerfPmcL2iStart +scePerfPmcL2iStop +scePerfPmcL3GetCounter +scePerfPmcL3GetCounterSelf +scePerfPmcL3SelectEvent +scePerfPmcL3SetCounter +scePerfPmcL3Start +scePerfPmcL3Stop +scePerfPmcMcSeqGetCounter +scePerfPmcMcSeqSetCounter +scePerfPmcMcSeqStart +scePerfPmcMcSeqStop +scePerfPmcMperfGetCounter +scePerfPmcNbGetCounter +scePerfPmcNbSelectEvent +scePerfPmcNbSetCounter +scePerfPmcNbStart +scePerfPmcNbStop +scePerfPmcOpen +scePerfPmcReset +scePerfPmcResetProc +scePerfPmcSdfGetCounter +scePerfPmcSdfSelectEvent +scePerfPmcSdfSetCounter +scePerfPmcSdfStart +scePerfPmcSdfStop +scePerfPmcSelectEvent +scePerfPmcSelectEventProc +scePerfPmcSetCounter +scePerfPmcStart +scePerfPmcStartProc +scePerfPmcStop +scePerfPmcStopProc +scePerfPmcUmcGetCounter +scePerfPmcUmcSetCounter +scePerfPmcUmcStart +scePerfPmcUmcStop +scePerfSetUevt +scePerfTraceAddBufferNotifyEvent +scePerfTraceAmmAddBufferNotifyEvent +scePerfTraceAmmCreate +scePerfTraceAmmDelete +scePerfTraceAmmDeleteBufferNotifyEvent +scePerfTraceAmmEnable +scePerfTraceAmmGetInfo +scePerfTraceAmmStart +scePerfTraceAmmStop +scePerfTraceAmmUpdate +scePerfTraceAprNameAddBufferNotifyEvent +scePerfTraceAprNameCreate +scePerfTraceAprNameDelete +scePerfTraceAprNameDeleteBufferNotifyEvent +scePerfTraceAprNameEnable +scePerfTraceAprNameGetInfo +scePerfTraceAprNameStart +scePerfTraceAprNameStop +scePerfTraceAprNameUpdate +scePerfTraceCreate +scePerfTraceDelete +scePerfTraceDeleteBufferNotifyEvent +scePerfTraceEnable +scePerfTraceGetInfo +scePerfTraceGetMemoryStats +scePerfTraceIoControllerAddBufferNotifyEvent +scePerfTraceIoControllerCreate +scePerfTraceIoControllerDelete +scePerfTraceIoControllerDeleteBufferNotifyEvent +scePerfTraceIoControllerEnable +scePerfTraceIoControllerGetInfo +scePerfTraceIoControllerStart +scePerfTraceIoControllerStop +scePerfTraceIoControllerUpdate +scePerfTraceIoGetEntry +scePerfTraceIoGetPosition +scePerfTracePmAddBufferNotifyEvent +scePerfTracePmCreate +scePerfTracePmDelete +scePerfTracePmDeleteBufferNotifyEvent +scePerfTracePmEnable +scePerfTracePmGetInfo +scePerfTracePmStart +scePerfTracePmStop +scePerfTracePmUpdate +scePerfTraceSpmCreate +scePerfTraceSpmDelete +scePerfTraceSpmEnable +scePerfTraceSpmGetNclk +scePerfTraceSpmRead +scePerfTraceSpmStart +scePerfTraceSpmStop +scePerfTraceStart +scePerfTraceStop +scePerfTraceUpdate +scePfsGetBlockTableReadCommand +scePfsGetHeaderReadCommand +scePfsGetPreadBlockRange +scePfsGetSingleBlockReadCommand +scePfsGetUncompressedSize +scePfsGetWorkBufferSize +scePfsPread +scePfsPreadDecompressBlock +scePfsValidate +scePigletAllocateSystemMemory +scePigletAllocateSystemMemoryEx +scePigletAllocateVideoMemory +scePigletAllocateVideoMemoryEx +scePigletGetConfigurationVSH +scePigletGetInteger +scePigletGetShaderCacheConfiguration +scePigletGetUsageVSH +scePigletHeapDump +scePigletHeapGetInfo +scePigletReleaseSystemMemory +scePigletReleaseSystemMemoryEx +scePigletReleaseVideoMemory +scePigletReleaseVideoMemoryEx +scePigletSetConfiguration +scePigletSetConfigurationVSH +scePigletSetShaderCacheConfiguration +scePktMgrGetDeciHeader +scePktMgrGetDeciPayload +scePktMgrGetPacketSize +scePktMgrGetProtocolNumber +scePktMgrGetSeqNum +scePktMgrGetUlpCmdHdr +scePktMgrGetUlpCmdPayload +scePktMgrIsRecvDataReady +scePktMgrPrepareUlpNtfPacket +scePktMgrPrepareUlpResPacket +scePktMgrRecvDeciPacket +scePktMgrRecvDeciPacketBySocket +scePktMgrSendDeciPacket +scePktMgrSetDeciHeader +scePktMgrSetPacketSize +scePktMgrSetUlpNtfHdr +scePktMgrSetUlpNtfPayload +scePktMgrSetUlpNtfPayloadCommonNotification +scePktMgrSetUlpResHdr +scePktMgrSetUlpResPayload +scePlayGoClose +scePlayGoDialogClose +scePlayGoDialogGetResult +scePlayGoDialogGetStatus +scePlayGoDialogInitialize +scePlayGoDialogOpen +scePlayGoDialogTerminate +scePlayGoDialogUpdateStatus +scePlayGoGetChunkId +scePlayGoGetEta +scePlayGoGetInstallChunkId +scePlayGoGetInstallSpeed +scePlayGoGetLanguageMask +scePlayGoGetLocus +scePlayGoGetOptionalChunk +scePlayGoGetProgress +scePlayGoGetSupportedOptionalChunk +scePlayGoGetToDoList +scePlayGoInitialize +scePlayGoOpen +scePlayGoPrefetch +scePlayGoPrefetchOptionalChunk +scePlayGoRequestNextChunk +scePlayGoSetInstallSpeed +scePlayGoSetLanguageMask +scePlayGoSetToDoList +scePlayGoSnapshot +scePlayGoTerminate +scePlayReadyApiInitializeInitParams +scePlayReadyApiIsStarted +scePlayReadyApiPlatform +scePlayReadyApiStart +scePlayReadyApiStop +scePlayReadyApiVersion +scePlayReadyApiVersionString +scePlayReadyBufferFree +scePlayReadyBufferInit +scePlayReadyBufferInitWithData +scePlayReadyBufferMalloc +scePlayReadyBufferRealloc +scePlayReadyCdmiClose +scePlayReadyCdmiCreateMediaKeySession +scePlayReadyCdmiCreateMediaKeySystemAccess +scePlayReadyCdmiCreateMediaKeys +scePlayReadyCdmiDecryptMultipleOpaque +scePlayReadyCdmiDecryptOpaque +scePlayReadyCdmiDecryptOpaque2 +scePlayReadyCdmiDestroyMediaKeySession +scePlayReadyCdmiDestroyMediaKeySystemAccess +scePlayReadyCdmiDestroyMediaKeys +scePlayReadyCdmiFreeOpaqueDecryptedContent +scePlayReadyCdmiGenerateRequest +scePlayReadyCdmiGetConfiguration +scePlayReadyCdmiGetExpiration +scePlayReadyCdmiGetKeySystem +scePlayReadyCdmiGetMediaKeyCount +scePlayReadyCdmiGetMediaKeyStatus +scePlayReadyCdmiGetSessionAppContext +scePlayReadyCdmiGetSessionId +scePlayReadyCdmiIsLicenseAckRequired +scePlayReadyCdmiLoad +scePlayReadyCdmiRemove +scePlayReadyCdmiRetrieveOpaqueDecryptedContent +scePlayReadyCdmiSetServerCertificate +scePlayReadyCdmiSetSessionCallbacks +scePlayReadyCdmiUpdate +scePlayReadyCloneDecryptContext +scePlayReadyContentGetProperty +scePlayReadyContentSetProperty +scePlayReadyDebugPrintf +scePlayReadyDebugSetLevel +scePlayReadyDomainCertEnumFini +scePlayReadyDomainCertEnumInit +scePlayReadyDomainCertEnumNext +scePlayReadyDomainCertFind +scePlayReadyDomainJoinGenerateChallenge +scePlayReadyDomainJoinProcessResponse +scePlayReadyDomainLeaveGenerateChallenge +scePlayReadyDomainLeaveProcessResponse +scePlayReadyEnvelopeClose +scePlayReadyEnvelopeGetSize +scePlayReadyEnvelopeInitializeRead +scePlayReadyEnvelopeOpen +scePlayReadyEnvelopeRead +scePlayReadyEnvelopeSeek +scePlayReadyFinalize +scePlayReadyFreeDecryptContext +scePlayReadyInitialize +scePlayReadyInitializeInitParams +scePlayReadyLicenseAcqGenerateAck +scePlayReadyLicenseAcqGenerateChallenge +scePlayReadyLicenseAcqGetAdditionalResponseData +scePlayReadyLicenseAcqProcessAckResponse +scePlayReadyLicenseAcqProcessResponse +scePlayReadyLicenseCount +scePlayReadyLicenseDelete +scePlayReadyLicenseDeleteInMemory +scePlayReadyLicenseGetExpirationTime +scePlayReadyLicenseGetProperty +scePlayReadyMemAlloc +scePlayReadyMemFree +scePlayReadyMemGetStats +scePlayReadyMemRealloc +scePlayReadyNewDecryptContext +scePlayReadyProfileClear +scePlayReadyProfileEnter +scePlayReadyProfileLeave +scePlayReadyProfilePause +scePlayReadyProfileResume +scePlayReadyProfileStart +scePlayReadyProfileStop +scePlayReadyReaderBind +scePlayReadyReaderClose +scePlayReadyReaderCommit +scePlayReadyReaderDecrypt +scePlayReadyReaderDecryptMultiple +scePlayReadyReaderDecryptMultipleOpaque +scePlayReadyReaderDecryptOpaque +scePlayReadyReaderDecrypt_Legacy +scePlayReadyReaderFreeOpaqueContent +scePlayReadyReaderRetrieveOpaqueContent +scePlayReadyReinitialize +scePlayReadyReset +scePlayReadyStoreCleanup +scePlayerInvitationDialogClose +scePlayerInvitationDialogGetResult +scePlayerInvitationDialogGetStatus +scePlayerInvitationDialogInitialize +scePlayerInvitationDialogOpen +scePlayerInvitationDialogTerminate +scePlayerInvitationDialogUpdateStatus +scePlayerReviewDialogClose +scePlayerReviewDialogGetResult +scePlayerReviewDialogGetStatus +scePlayerReviewDialogInitialize +scePlayerReviewDialogOpen +scePlayerReviewDialogTerminate +scePlayerReviewDialogUpdateStatus +scePlayerSelectionDialogClose +scePlayerSelectionDialogGetResult +scePlayerSelectionDialogGetStatus +scePlayerSelectionDialogInitialize +scePlayerSelectionDialogOpen +scePlayerSelectionDialogTerminate +scePlayerSelectionDialogUpdateStatus +scePngDecCreate +scePngDecDecode +scePngDecDecodeWithInputControl +scePngDecDelete +scePngDecParseHeader +scePngDecQueryMemorySize +scePngEncCreate +scePngEncDelete +scePngEncEncode +scePngEncQueryMemorySize +scePrecompiledShaderEntries +scePrintDeciHeader +scePrintUlpCmdHdr +scePrintUlpNtfHdr +scePrintUlpResHdr +sceProfileCacheGetAvatar +sceProfileCacheGetProfilePicture +sceProfileCacheGetTrueName +sceProprietaryVoiceChatHelperGetVoiceChatUsageState +sceProprietaryVoiceChatHelperInitialize +sceProprietaryVoiceChatHelperSetVoiceChatState +sceProprietaryVoiceChatHelperTerminate +scePs2EmuMenuDialogClose +scePs2EmuMenuDialogGetResult +scePs2EmuMenuDialogGetStatus +scePs2EmuMenuDialogInitialize +scePs2EmuMenuDialogOpen +scePs2EmuMenuDialogTerminate +scePs2EmuMenuDialogUpdateStatus +scePsmCoreClrCallback +scePsmExecute +scePsmGetConfiguration +scePsmInitialize +scePsmKitFontConfigGetAttr +scePsmKitFontConfigGetFont +scePsmKitFontConfigGetFontName +scePsmKitFontConfigGetFontPath +scePsmMountDirectory +scePsmMountDirectoryEx +scePsmReadConfigurationFile +scePsmRegisterInternalCall +scePsmRegisterPInvokeCallTable +scePsmResourceCallback +scePsmTerminate +scePsmThreadCallback +scePsmUtilFinalize +scePsmUtilGetDebugAssetManagerSize +scePsmUtilGetEmojiAssetManagerSize +scePsmUtilGetHighResoImageAssetManagerSize +scePsmUtilGetLabelAssetManagerSize +scePsmUtilGetOffscreenAssetManagerSize +scePsmUtilGetPsmIniFile +scePsmUtilGetSystemAssetManagerSize +scePsmUtilInitialize +scePsmUtilRegisterCallbacks +scePssAudGetSurroundPan +scePssAudIsStopped +scePssAudSetSurroundPan +scePssAudSetSurroundPanSpeakerConfig +scePssCAudGetSurroundPan +scePssCAudIsStopped +scePssCAudSetSurroundPan +scePssCameraGetCameraConnection +scePssCameraGetConfigType +scePssCameraSetConfigType +scePssInternalKeyboardGetKeyCode +scePssInternalKeyboardGetUTF8Chars +scePssInternalOrbisControllerScan +scePssKeyboardGetKeyCode +scePssKeyboardGetUTF8Chars +scePssKeyboardInitialize +scePssKeyboardPushState +scePssKeyboardReadState +scePssKeyboardTerminate +scePssMousePushState +scePssMouseReadState +scePssMusicPlayerGetLoopFramePos +scePssMusicPlayerGetLoopTimePosition +scePssMusicPlayerGetPlayState +scePssMusicPlayerGetSurroundPan +scePssMusicPlayerSetLoopFramePos +scePssMusicPlayerSetLoopTimePosition +scePssMusicPlayerSetSurroundPan +scePssMusicPlayerStopEx +scePssMusicPlayerUserCreate +scePssPadrGetOutputIsRunning +scePssPadrGetOutputPortCount +scePssPadrGetOutputPortDescription +scePssSoundPlayerGetPlayState +scePssSoundPlayerGetSurroundPan +scePssSoundPlayerSetSurroundPan +scePssSoundPlayerStopEx +scePssSoundPlayerUserCreate +scePssSoundSetSurroundPanSpeakerConfig +scePssThreadIsActive +scePthreadAtfork +scePthreadAttrDestroy +scePthreadAttrGet +scePthreadAttrGetaffinity +scePthreadAttrGetdetachstate +scePthreadAttrGetguardsize +scePthreadAttrGetinheritsched +scePthreadAttrGetschedparam +scePthreadAttrGetschedpolicy +scePthreadAttrGetscope +scePthreadAttrGetsolosched +scePthreadAttrGetstack +scePthreadAttrGetstackaddr +scePthreadAttrGetstacksize +scePthreadAttrInit +scePthreadAttrSetaffinity +scePthreadAttrSetcreatesuspend +scePthreadAttrSetdetachstate +scePthreadAttrSetguardsize +scePthreadAttrSetinheritsched +scePthreadAttrSetschedparam +scePthreadAttrSetschedpolicy +scePthreadAttrSetscope +scePthreadAttrSetsolosched +scePthreadAttrSetstack +scePthreadAttrSetstackaddr +scePthreadAttrSetstacksize +scePthreadBarrierDestroy +scePthreadBarrierInit +scePthreadBarrierWait +scePthreadBarrierattrDestroy +scePthreadBarrierattrGetpshared +scePthreadBarrierattrInit +scePthreadBarrierattrSetpshared +scePthreadCancel +scePthreadCondBroadcast +scePthreadCondDestroy +scePthreadCondInit +scePthreadCondSignal +scePthreadCondSignalto +scePthreadCondTimedwait +scePthreadCondWait +scePthreadCondattrDestroy +scePthreadCondattrGetclock +scePthreadCondattrGetpshared +scePthreadCondattrInit +scePthreadCondattrSetclock +scePthreadCondattrSetpshared +scePthreadCreate +scePthreadDetach +scePthreadEqual +scePthreadExit +scePthreadGetaffinity +scePthreadGetconcurrency +scePthreadGetcpuclockid +scePthreadGetname +scePthreadGetprio +scePthreadGetschedparam +scePthreadGetspecific +scePthreadGetthreadid +scePthreadJoin +scePthreadKeyCreate +scePthreadKeyDelete +scePthreadMain +scePthreadMulti +scePthreadMutexDestroy +scePthreadMutexGetprioceiling +scePthreadMutexGetspinloops +scePthreadMutexGetyieldloops +scePthreadMutexInit +scePthreadMutexInitForInternalLibc +scePthreadMutexIsowned +scePthreadMutexLock +scePthreadMutexSetprioceiling +scePthreadMutexSetspinloops +scePthreadMutexSetyieldloops +scePthreadMutexTimedlock +scePthreadMutexTrylock +scePthreadMutexUnlock +scePthreadMutexattrDestroy +scePthreadMutexattrGetgen +scePthreadMutexattrGetkind +scePthreadMutexattrGetprioceiling +scePthreadMutexattrGetprotocol +scePthreadMutexattrGetpshared +scePthreadMutexattrGettype +scePthreadMutexattrInit +scePthreadMutexattrInitForInternalLibc +scePthreadMutexattrSetgen +scePthreadMutexattrSetkind +scePthreadMutexattrSetprioceiling +scePthreadMutexattrSetprotocol +scePthreadMutexattrSetpshared +scePthreadMutexattrSettype +scePthreadOnce +scePthreadRegisterThreadDeathHook +scePthreadRename +scePthreadResume +scePthreadResumeAll +scePthreadRwlockDestroy +scePthreadRwlockInit +scePthreadRwlockRdlock +scePthreadRwlockTimedrdlock +scePthreadRwlockTimedwrlock +scePthreadRwlockTryrdlock +scePthreadRwlockTrywrlock +scePthreadRwlockUnlock +scePthreadRwlockWrlock +scePthreadRwlockattrDestroy +scePthreadRwlockattrGetpshared +scePthreadRwlockattrGettype +scePthreadRwlockattrInit +scePthreadRwlockattrSetpshared +scePthreadRwlockattrSettype +scePthreadSelf +scePthreadSemDestroy +scePthreadSemGetvalue +scePthreadSemInit +scePthreadSemPost +scePthreadSemTimedwait +scePthreadSemTrywait +scePthreadSemWait +scePthreadSetBesteffort +scePthreadSetDefaultstacksize +scePthreadSetName +scePthreadSetaffinity +scePthreadSetcancelstate +scePthreadSetcanceltype +scePthreadSetconcurrency +scePthreadSetprio +scePthreadSetschedparam +scePthreadSetspecific +scePthreadSingle +scePthreadSuspend +scePthreadSuspendAll +scePthreadTestcancel +scePthreadTimedjoin +scePthreadYield +sceRandomGetRandomNumber +sceRazorCaptureCommandBuffersOnlyImmediate +sceRazorCaptureCommandBuffersOnlySinceLastFlip +sceRazorCaptureImmediate +sceRazorCaptureSinceLastFlip +sceRazorCpuBeginArchiveFileAccess +sceRazorCpuBeginLogicalFileAccess +sceRazorCpuDisableFiberUserMarkers +sceRazorCpuEndArchiveFileAccess +sceRazorCpuEndLogicalFileAccess +sceRazorCpuFiberLogNameChange +sceRazorCpuFiberSwitch +sceRazorCpuFlushOccurred +sceRazorCpuGetDataTagStorageSize +sceRazorCpuGpuMarkerSync +sceRazorCpuInit +sceRazorCpuInitDataTags +sceRazorCpuInitializeGpuMarkerContext +sceRazorCpuInitializeInternal +sceRazorCpuIsCapturing +sceRazorCpuJobManagerDispatch +sceRazorCpuJobManagerJob +sceRazorCpuJobManagerSequence +sceRazorCpuNamedSync +sceRazorCpuPlotValue +sceRazorCpuPopMarker +sceRazorCpuPushMarker +sceRazorCpuPushMarkerStatic +sceRazorCpuResizeTaggedBuffer +sceRazorCpuSetLiveServerThreadSettings +sceRazorCpuSetPopMarkerCallback +sceRazorCpuSetPushMarkerCallback +sceRazorCpuSetPushMarkerStaticCallback +sceRazorCpuShutdown +sceRazorCpuShutdownDataTags +sceRazorCpuStartCapture +sceRazorCpuStartCaptureInternal +sceRazorCpuStopCapture +sceRazorCpuStopCaptureInternal +sceRazorCpuSync +sceRazorCpuTagArray +sceRazorCpuTagBuffer +sceRazorCpuUnTagBuffer +sceRazorCpuUserSignalPost +sceRazorCpuUserSignalPostEx +sceRazorCpuUserSignalWaitBegin +sceRazorCpuUserSignalWaitBeginEx +sceRazorCpuUserSignalWaitEnd +sceRazorCpuWorkloadRunBegin +sceRazorCpuWorkloadRunBeginEx +sceRazorCpuWorkloadRunEnd +sceRazorCpuWorkloadSubmit +sceRazorCpuWriteBookmark +sceRazorGpuInit +sceRazorIsLoaded +sceRegMgrBackupNeedMem +sceRegMgrBackupNeedMemForPS4 +sceRegMgrBackupPullData +sceRegMgrBackupPullDataForPS4 +sceRegMgrBackupPushData +sceRegMgrBackupPushDataForPS4 +sceRegMgrCheckError +sceRegMgrCntSetInitReinst +sceRegMgrCntlDeleteReg +sceRegMgrCntlGetFileName +sceRegMgrCntlGetFilesCount +sceRegMgrCntlStart +sceRegMgrCntlStopHdd +sceRegMgrDrvDataCheckGet +sceRegMgrDrvDataClose +sceRegMgrDrvDataOpen +sceRegMgrDrvGetEntCnt +sceRegMgrDrvGetUpdateCnt +sceRegMgrEvtGetCnt +sceRegMgrEvtGetCntForPS4 +sceRegMgrEvtGetRegId +sceRegMgrEvtGetRegIdForPS4 +sceRegMgrGetBin +sceRegMgrGetBinInitVal +sceRegMgrGetInitError +sceRegMgrGetInt +sceRegMgrGetIntInitVal +sceRegMgrGetStr +sceRegMgrGetStrInitVal +sceRegMgrGetVersion +sceRegMgrGetVersionForPS4 +sceRegMgrIsChange +sceRegMgrIsInitOK +sceRegMgrLogPull +sceRegMgrLogStart +sceRegMgrMemset +sceRegMgrNonSysCheckError +sceRegMgrNonSysGetBin +sceRegMgrNonSysGetInt +sceRegMgrNonSysGetStr +sceRegMgrNonSysSetBin +sceRegMgrNonSysSetInt +sceRegMgrNonSysSetStr +sceRegMgrPrintInfo +sceRegMgrPrivateStorageCount +sceRegMgrPrivateStorageDirCount +sceRegMgrPrivateStorageDirName +sceRegMgrPrivateStorageDirPermit +sceRegMgrPrivateStorageFileName +sceRegMgrPrivateStorageInject +sceRegMgrPrivateStorageIsNvsChange +sceRegMgrPrivateStorageMeasure +sceRegMgrPrivateStorageRead +sceRegMgrPrivateStorageStart +sceRegMgrRecoverRegNvs +sceRegMgrResetVal +sceRegMgrSetBin +sceRegMgrSetInitLevel +sceRegMgrSetInt +sceRegMgrSetStr +sceRegMgrSetbin +sceRegMgrSrvCnvRegionInt +sceRegMgrSrvCnvRegionStr +sceRegMgrSrvGetMachineType +sceRegMgrSrvGetQAFforReg +sceRegMgrSrvGetRealMachineType +sceRegMgrSrvGetRegion +sceRegMgrSrvGetRegionStr +sceRegMgrStrncpy +sceRegMgrSyncHdd +sceRegMgrToolDataCheckGet +sceRegMgrToolGetEntryCnt +sceRegMgrToolGetInfo +sceRegMgrToolGetUpdateCnt +sceRemotePlayClientAddEventListener +sceRemotePlayClientAttachVirtualMicrophone +sceRemotePlayClientDetachVirtualMicrophone +sceRemotePlayClientGetClientStatus +sceRemotePlayClientInitialize +sceRemotePlayClientRemoveController +sceRemotePlayClientShowHomeScreen +sceRemotePlayClientStartMicCapture +sceRemotePlayClientStopMicCapture +sceRemotePlayClientTerminateStreaming +sceRemoteplayApprove +sceRemoteplayChangeEnterKey +sceRemoteplayClearAllRegistData +sceRemoteplayClearConnectHistory +sceRemoteplayConfirmDeviceRegist +sceRemoteplayDisconnect +sceRemoteplayGeneratePinCode +sceRemoteplayGetApMode +sceRemoteplayGetConnectHistory +sceRemoteplayGetConnectUserId +sceRemoteplayGetConnectionStatus +sceRemoteplayGetMbusDeviceInfo +sceRemoteplayGetOperationStatus +sceRemoteplayGetPrimaryUserId +sceRemoteplayGetRemoteplayStatus +sceRemoteplayGetRpMode +sceRemoteplayGiveApproval +sceRemoteplayImeClose +sceRemoteplayImeFilterResult +sceRemoteplayImeGetEvent +sceRemoteplayImeNotify +sceRemoteplayImeNotifyEventResult +sceRemoteplayImeOpen +sceRemoteplayImeSetCaret +sceRemoteplayImeSetText +sceRemoteplayInitialize +sceRemoteplayIsRemoteOskReady +sceRemoteplayIsRemotePlaying +sceRemoteplayNotifyMbusDeviceRegistComplete +sceRemoteplayNotifyNpPushWakeup +sceRemoteplayNotifyOskStatus +sceRemoteplayNotifyPinCodeError +sceRemoteplayNotifySubmitCode +sceRemoteplayNotifyUserDelete +sceRemoteplayPrintAllRegistData +sceRemoteplayProhibit +sceRemoteplayProhibitStreaming +sceRemoteplayServerLock +sceRemoteplayServerUnLock +sceRemoteplaySetApMode +sceRemoteplaySetLogLevel +sceRemoteplaySetProhibition +sceRemoteplaySetProhibitionForVsh +sceRemoteplaySetRpMode +sceRemoteplayTerminate +sceRnpsAppMgrBlockAppInstall +sceRnpsAppMgrCreateUpdateRequest +sceRnpsAppMgrCreateUrlRequest +sceRnpsAppMgrDestroyBundle +sceRnpsAppMgrDestroyUpdateRequest +sceRnpsAppMgrFinishUrlRequest +sceRnpsAppMgrGetAppInfo +sceRnpsAppMgrGetAppInfoDebugString +sceRnpsAppMgrGetAppInfoList +sceRnpsAppMgrGetEventForShellUI +sceRnpsAppMgrGetUpdateProgress +sceRnpsAppMgrHasEventForShellUI +sceRnpsAppMgrInitialize +sceRnpsAppMgrPushEventForShellUI +sceRnpsAppMgrRecoverUfsImage +sceRnpsAppMgrRegisterShellUI +sceRnpsAppMgrRemoveApp +sceRnpsAppMgrRemoveAppOnSystemShutdown +sceRnpsAppMgrRemoveUfsImageOnSystemShutdown +sceRnpsAppMgrRequestUpdateCheck +sceRnpsAppMgrSetCrlUrl +sceRnpsAppMgrSetEventFlagForClients +sceRnpsAppMgrSetUpdateUrl +sceRnpsAppMgrStartService +sceRnpsAppMgrTerminate +sceRnpsAppMgrUnblockAppInstall +sceRnpsAppMgrUnregisterShellUI +sceRtcCheckValid +sceRtcCompareTick +sceRtcConvertLocalTimeToUtc +sceRtcConvertUtcToLocalTime +sceRtcEnd +sceRtcFormatRFC2822 +sceRtcFormatRFC2822LocalTime +sceRtcFormatRFC3339 +sceRtcFormatRFC3339LocalTime +sceRtcFormatRFC3339Precise +sceRtcFormatRFC3339PreciseLocalTime +sceRtcGetCurrentAdNetworkTick +sceRtcGetCurrentClock +sceRtcGetCurrentClockLocalTime +sceRtcGetCurrentDebugNetworkTick +sceRtcGetCurrentNetworkTick +sceRtcGetCurrentRawNetworkTick +sceRtcGetCurrentTick +sceRtcGetDayOfWeek +sceRtcGetDaysInMonth +sceRtcGetDosTime +sceRtcGetTick +sceRtcGetTickResolution +sceRtcGetTime_t +sceRtcGetWin32FileTime +sceRtcInit +sceRtcIsLeapYear +sceRtcParseDateTime +sceRtcParseRFC3339 +sceRtcSetConf +sceRtcSetCurrentAdNetworkTick +sceRtcSetCurrentDebugNetworkTick +sceRtcSetCurrentNetworkTick +sceRtcSetCurrentTick +sceRtcSetDosTime +sceRtcSetTick +sceRtcSetTime_t +sceRtcSetWin32FileTime +sceRtcTickAddDays +sceRtcTickAddHours +sceRtcTickAddMicroseconds +sceRtcTickAddMinutes +sceRtcTickAddMonths +sceRtcTickAddSeconds +sceRtcTickAddTicks +sceRtcTickAddWeeks +sceRtcTickAddYears +sceRudpAccept +sceRudpActivate +sceRudpBind +sceRudpCreateContext +sceRudpEnableInternalIOThread +sceRudpEnableInternalIOThread2 +sceRudpEnd +sceRudpFlush +sceRudpGetContextStatus +sceRudpGetLocalInfo +sceRudpGetMaxSegmentSize +sceRudpGetNumberOfPacketsToRead +sceRudpGetOption +sceRudpGetRemoteInfo +sceRudpGetSizeReadable +sceRudpGetSizeWritable +sceRudpGetStatus +sceRudpInit +sceRudpInitiate +sceRudpListen +sceRudpNetFlush +sceRudpNetReceived +sceRudpPollCancel +sceRudpPollControl +sceRudpPollCreate +sceRudpPollDestroy +sceRudpPollWait +sceRudpProcessEvents +sceRudpRead +sceRudpSetEventHandler +sceRudpSetMaxSegmentSize +sceRudpSetOption +sceRudpTerminate +sceRudpWrite +sceS3dConversionClose +sceS3dConversionExec +sceS3dConversionOpen +sceS3dConversionQueryAttr +sceS3daClose +sceS3daGetInfo +sceS3daOpen +sceS3daSendData +sceSaveDataAbort +sceSaveDataBackup +sceSaveDataBindPsnAccount +sceSaveDataBindPsnAccountForSystemBackup +sceSaveDataCancel +sceSaveDataChangeDatabase +sceSaveDataChangeInternal +sceSaveDataCheckBackupData +sceSaveDataCheckBackupDataForCdlg +sceSaveDataCheckBackupDataInternal +sceSaveDataCheckBackupDataLight +sceSaveDataCheckCloudData +sceSaveDataCheckIpmiIfSize +sceSaveDataCheckSaveDataBroken +sceSaveDataCheckSaveDataVersion +sceSaveDataCheckSaveDataVersionLatest +sceSaveDataClearProgress +sceSaveDataCommit +sceSaveDataCopy5 +sceSaveDataCreateTransactionResource +sceSaveDataCreateUploadData +sceSaveDataDebug +sceSaveDataDebugCheckBackupData +sceSaveDataDebugCleanMount +sceSaveDataDebugCompiledSdkVersion +sceSaveDataDebugCreateSaveDataRoot +sceSaveDataDebugEditDB +sceSaveDataDebugFile +sceSaveDataDebugGetThreadId +sceSaveDataDebugProspero +sceSaveDataDebugRemoveSaveDataRoot +sceSaveDataDebugTarget +sceSaveDataDelete +sceSaveDataDelete5 +sceSaveDataDeleteAllUser +sceSaveDataDeleteBackupData +sceSaveDataDeleteCloudData +sceSaveDataDeleteProspero +sceSaveDataDeleteTitle +sceSaveDataDeleteTransactionResource +sceSaveDataDeleteUser +sceSaveDataDialogClose +sceSaveDataDialogGetResult +sceSaveDataDialogGetStatus +sceSaveDataDialogInitialize +sceSaveDataDialogIsReadyToDisplay +sceSaveDataDialogOpen +sceSaveDataDialogProgressBarInc +sceSaveDataDialogProgressBarSetValue +sceSaveDataDialogTerminate +sceSaveDataDialogUpdateStatus +sceSaveDataDirNameSearch +sceSaveDataDirNameSearch2 +sceSaveDataDirNameSearchInternal +sceSaveDataDirNameSearchPs4 +sceSaveDataDownload +sceSaveDataGetAllSize +sceSaveDataGetAppLaunchedUser +sceSaveDataGetAutoUploadConditions +sceSaveDataGetAutoUploadRequestInfo +sceSaveDataGetAutoUploadSetting +sceSaveDataGetBoundPsnAccountCount +sceSaveDataGetClientThreadPriority +sceSaveDataGetCloudQuotaInfo +sceSaveDataGetDataBaseFilePath +sceSaveDataGetEventInfo +sceSaveDataGetEventResult +sceSaveDataGetFormat +sceSaveDataGetMountInfo +sceSaveDataGetMountedSaveDataCount +sceSaveDataGetParam +sceSaveDataGetProgress +sceSaveDataGetSaveDataCount +sceSaveDataGetSaveDataMemory +sceSaveDataGetSaveDataMemory2 +sceSaveDataGetSaveDataRootDir +sceSaveDataGetSaveDataRootPath +sceSaveDataGetSaveDataRootUsbPath +sceSaveDataGetSavePoint +sceSaveDataGetUpdatedDataCount +sceSaveDataInitialize +sceSaveDataInitialize2 +sceSaveDataInitialize3 +sceSaveDataInitializeForCdlg +sceSaveDataIsDeletingUsbDb +sceSaveDataIsMounted +sceSaveDataLoadIcon +sceSaveDataManualDelete +sceSaveDataManualDownload +sceSaveDataManualUpload +sceSaveDataMount +sceSaveDataMount2 +sceSaveDataMount3 +sceSaveDataMount5 +sceSaveDataMountInternal +sceSaveDataMountSys +sceSaveDataPrepare +sceSaveDataPromote5 +sceSaveDataRebuildDatabase +sceSaveDataRegisterEventCallback +sceSaveDataRestoreBackupData +sceSaveDataRestoreBackupDataForCdlg +sceSaveDataRestoreLoadSaveDataMemory +sceSaveDataSaveIcon +sceSaveDataSaveIconByPath +sceSaveDataSetAutoUploadSetting +sceSaveDataSetEventInfo +sceSaveDataSetParam +sceSaveDataSetSaveDataLibraryUser +sceSaveDataSetSaveDataMemory +sceSaveDataSetSaveDataMemory2 +sceSaveDataSetupSaveDataMemory +sceSaveDataSetupSaveDataMemory2 +sceSaveDataShutdownStart +sceSaveDataSupportedFakeBrokenStatus +sceSaveDataSyncCloudList +sceSaveDataSyncSaveDataMemory +sceSaveDataTerminate +sceSaveDataTransferringMount +sceSaveDataTransferringMountPs4 +sceSaveDataUmount +sceSaveDataUmount2 +sceSaveDataUmountSys +sceSaveDataUmountWithBackup +sceSaveDataUnregisterEventCallback +sceSaveDataUpload +sceSblACMgrCheckPlatformDLL +sceSblACMgrIsPlatformDLL +sceSblRcMgrIsAllowLimitedUiInspector +sceSblRcMgrIsIntdevForPSM +sceScreenShotCapture +sceScreenShotDisable +sceScreenShotDisableNotification +sceScreenShotEnable +sceScreenShotEnableNotification +sceScreenShotGetAppInfo +sceScreenShotGetDrcParam +sceScreenShotIsDisabled +sceScreenShotIsVshScreenCaptureDisabled +sceScreenShotSetDrcParam +sceScreenShotSetOverlayImage +sceScreenShotSetOverlayImageWithOrigin +sceScreenShotSetParam +sceSdecCreateSw +sceSdecCreateSw2 +sceSdecCreateSwHevc +sceSdecDestroySw +sceSdecDestroySw2 +sceSdecDestroySwHevc +sceSdecExecuteSwHevc +sceSdecGetFrameSwHevc +sceSdecGetVersionSw +sceSdecGetVersionSw2 +sceSdecGetVersionSwHevc +sceSdecQueryMemorySw +sceSdecQueryMemorySw2 +sceSdecQueryMemorySwHevc +sceSdecResetSwHevc +sceSdmaBeginQueueMode +sceSdmaCancelQueue +sceSdmaClose +sceSdmaConstantFill +sceSdmaConstantFillNonBlocking +sceSdmaCopyLinear +sceSdmaCopyLinearNonBlocking +sceSdmaCopyTiled +sceSdmaCopyTiledNonBlocking +sceSdmaCopyWindowL2L +sceSdmaCopyWindowL2LNonBlocking +sceSdmaCopyWindowT2T +sceSdmaCopyWindowT2TNonBlocking +sceSdmaCopyWindowTiled +sceSdmaCopyWindowTiledNonBlocking +sceSdmaEndQueueMode +sceSdmaFenceNonBlocking +sceSdmaFinalize +sceSdmaFlushAll +sceSdmaFlushAllCb +sceSdmaFlushAllWithEvent +sceSdmaInitialize +sceSdmaKickQueue +sceSdmaMapUserVAddress +sceSdmaOpen +sceSdmaQueryWorkingBufferSize +sceSdmaTryFlush +sceSdmaUnmapUserVAddress +sceSdmaWaitForEvent +sceShareCaptureScreenshot +sceShareCaptureScreenshotExtended +sceShareCaptureVideoClip +sceShareCaptureVideoClipExtended +sceShareFactoryUtilBackToGameFromShareFactory +sceShareFactoryUtilGetLaunchStatus +sceShareFactoryUtilGetLaunchStatusOfShareFactory +sceShareFactoryUtilInitialize +sceShareFactoryUtilLaunchShareFactory +sceShareFactoryUtilTerminate +sceShareFeaturePermit +sceShareFeatureProhibit +sceShareGetCurrentStatus +sceShareGetRunningStatus +sceShareInitialize +sceShareOpenMenuForContent +sceSharePlayCrashDaemon +sceSharePlayGetCurrentConnectionInfo +sceSharePlayGetCurrentConnectionInfoA +sceSharePlayGetCurrentInfo +sceSharePlayGetEvent +sceSharePlayInitialize +sceSharePlayNotifyDialogOpen +sceSharePlayNotifyForceCloseForCdlg +sceSharePlayNotifyOpenQuickMenu +sceSharePlayProhibitController +sceSharePlayResumeScreenForCdlg +sceSharePlayServerLock +sceSharePlayServerUnLock +sceSharePlaySetMode +sceSharePlaySetProhibition +sceSharePlaySetProhibitionModeWithAppId +sceSharePlayStartStandby +sceSharePlayStartStreaming +sceSharePlayStopStandby +sceSharePlayStopStreaming +sceSharePlayTerminate +sceShareRegisterContentEventCallback +sceShareSetCaptureSource +sceShareSetContentParam +sceShareSetContentParamForApplicationTitle +sceShareSetScreenshotOverlayImage +sceShareTerminate +sceShareUnregisterContentEventCallback +sceShareUtilityAdvanceFromFileWithContentIdList +sceShareUtilityAdvanceFromFileWithTitleIdList +sceShareUtilityAdvanceGetServiceInfo +sceShareUtilityAdvanceInitialize +sceShareUtilityAdvanceQueryServiceInfo +sceShareUtilityAdvanceQueryServiceInfoA +sceShareUtilityAdvanceResetPlayingContent +sceShareUtilityAdvanceSetPlayingContent +sceShareUtilityAdvanceSetUploadContentData +sceShareUtilityAdvanceTerminate +sceShareUtilityAdvanceValidateContents +sceShareUtilityAdvanceWakeUpShareMenu +sceShareUtilityAdvanceWakeUpShareMenuBroadcast +sceShareUtilityAdvanceWakeUpShareMenuDefault +sceShareUtilityAdvanceWakeUpShareMenuForShareContent +sceShareUtilityInitialize +sceShareUtilityInitializeEx2 +sceShareUtilityOpenShareMenu +sceShareUtilityOpenShareMenuBroadcast +sceShareUtilityOpenShareMenuDefault +sceShareUtilityOpenShareMenuForShareContent +sceShareUtilityTerminate +sceShellCoreUtilAccessibilityZoomLock +sceShellCoreUtilAccessibilityZoomUnlock +sceShellCoreUtilAcquireBgmCpuBudget +sceShellCoreUtilAcquireRemotePlayCpuBudget +sceShellCoreUtilAcquireSharePlayCpuBudget +sceShellCoreUtilActivateAbort +sceShellCoreUtilActivateGetStatus +sceShellCoreUtilActivateInit +sceShellCoreUtilActivateIsActivated +sceShellCoreUtilActivateRecordActivation +sceShellCoreUtilActivateStart +sceShellCoreUtilActivateStartAsync +sceShellCoreUtilActivateTerm +sceShellCoreUtilChangeRunLevel +sceShellCoreUtilChangeToStaffModeForIDU +sceShellCoreUtilCheckerAbort +sceShellCoreUtilCleanupCrashReport +sceShellCoreUtilClearAppData +sceShellCoreUtilClearPs4AppCategoryDefaultsListUpdate +sceShellCoreUtilClearPsnAccountInfo +sceShellCoreUtilCrashReportRequestCancel +sceShellCoreUtilDeclareBeginOfExternalStorageAppMove +sceShellCoreUtilDeclareEndOfExternalStorageAppMove +sceShellCoreUtilDeleteDiscInstalledTitleWorkaroundFile +sceShellCoreUtilDeleteDownloadedHidConfigFile +sceShellCoreUtilDeleteDownloadedNetEvConfigFile +sceShellCoreUtilDeleteDownloadedTitleWorkaroundFile +sceShellCoreUtilDeleteSmrHddDummyData +sceShellCoreUtilDoFsck +sceShellCoreUtilDownloadHidConfigFileFromServer +sceShellCoreUtilDownloadNetEvConfigFileFromServer +sceShellCoreUtilDownloadTitleWorkaroundFileFromServer +sceShellCoreUtilEndUmmDictation +sceShellCoreUtilEnterPowerLockSection +sceShellCoreUtilExecuteCrashReport +sceShellCoreUtilExfatFormatExternalHdd +sceShellCoreUtilExitApp +sceShellCoreUtilExitMiniApp +sceShellCoreUtilExitMiniAppWithValue +sceShellCoreUtilExtendShutdownTimer +sceShellCoreUtilFillUpSpaceOnSmrHdd +sceShellCoreUtilFireCrashReport +sceShellCoreUtilFormatExternalHdd +sceShellCoreUtilFormatHdd +sceShellCoreUtilFormatHddForRestore +sceShellCoreUtilFreeUpSpaceOnSmrHdd +sceShellCoreUtilGetAppData +sceShellCoreUtilGetAppEnableTTS +sceShellCoreUtilGetAppEnterButtonAssign +sceShellCoreUtilGetAppLaunchTypeInfo +sceShellCoreUtilGetAppLaunchedParamInt +sceShellCoreUtilGetAppLaunchedParamIntByBudgetType +sceShellCoreUtilGetAppLaunchedParamString +sceShellCoreUtilGetAppLaunchedParamStringByBudgetType +sceShellCoreUtilGetAutoPowerDownRemainingSeconds +sceShellCoreUtilGetBasicProductShape +sceShellCoreUtilGetCheckerString +sceShellCoreUtilGetCheckerStringEx +sceShellCoreUtilGetCloudClientStatus +sceShellCoreUtilGetCrashReportCoreFileSetSize +sceShellCoreUtilGetCrashReportFilterInfoStart +sceShellCoreUtilGetCrashReportInfoForBoot +sceShellCoreUtilGetCrashReportInfoForBootStart +sceShellCoreUtilGetCrashReportInfoStart +sceShellCoreUtilGetCrashReportResult +sceShellCoreUtilGetCrashReportStatus +sceShellCoreUtilGetCrashReportUploadStatus +sceShellCoreUtilGetDeviceIndexBehavior +sceShellCoreUtilGetDeviceIndexBehaviorWithTimeout +sceShellCoreUtilGetDeviceStatus +sceShellCoreUtilGetEffectiveTotalSizeOfUserPartition +sceShellCoreUtilGetEntitlementIdFromNpEntitlementMgr +sceShellCoreUtilGetFreeSizeOfAvContentsTmp +sceShellCoreUtilGetFreeSizeOfUserPartition +sceShellCoreUtilGetFsckProgress +sceShellCoreUtilGetGameLiveStreamingStatus +sceShellCoreUtilGetGnmCompositorOnScreenProfilerFlag +sceShellCoreUtilGetGpuLoadEmulationMode +sceShellCoreUtilGetGpuLoadEmulationModeByAppId +sceShellCoreUtilGetHidConfigFileInfoString +sceShellCoreUtilGetHidConfigFileString +sceShellCoreUtilGetHidConfigName +sceShellCoreUtilGetHidConfigNum +sceShellCoreUtilGetIDUMode +sceShellCoreUtilGetImposeMenuFlagForPs2Emu +sceShellCoreUtilGetManifestFileStatus +sceShellCoreUtilGetNeedSizeOfAppContent +sceShellCoreUtilGetNetEvConfigFileInfoString +sceShellCoreUtilGetOptimizationStatus +sceShellCoreUtilGetOutOfVrPlayZoneWarning +sceShellCoreUtilGetPapcGamePcl +sceShellCoreUtilGetPbtcUserInfoList +sceShellCoreUtilGetPlatformPrivacyDefinitionEventData +sceShellCoreUtilGetPlatformPrivacySetting +sceShellCoreUtilGetProgressOfFormatExternalHdd +sceShellCoreUtilGetProgressOfFsck +sceShellCoreUtilGetPs4AppCategoryDefaultsListId +sceShellCoreUtilGetPs4AppCategoryForTitleId +sceShellCoreUtilGetPsStoreIconLayout +sceShellCoreUtilGetPsStoreIconState +sceShellCoreUtilGetPsnAccountInfo +sceShellCoreUtilGetRegion +sceShellCoreUtilGetRemotePlayStatus +sceShellCoreUtilGetRunLevel +sceShellCoreUtilGetSharePlayStatus +sceShellCoreUtilGetShellUIVMStats +sceShellCoreUtilGetSmrHddInfoString +sceShellCoreUtilGetSocialScreenStatus +sceShellCoreUtilGetSplashScreenState +sceShellCoreUtilGetSupportSiteURL +sceShellCoreUtilGetSuspendConfirmationDialogFlag +sceShellCoreUtilGetSystemBGState +sceShellCoreUtilGetSystemBGWaveColor +sceShellCoreUtilGetSystemBGWaveState +sceShellCoreUtilGetTelemetryToken +sceShellCoreUtilGetTitleWorkaroundFileInfoString +sceShellCoreUtilGetTitleWorkaroundFileString +sceShellCoreUtilGetUIStatus +sceShellCoreUtilGetUmmStatus +sceShellCoreUtilGetUserFocus +sceShellCoreUtilGetUserIdOfMorpheusUser +sceShellCoreUtilGetVMStatsForTelemetry +sceShellCoreUtilGetVersionNumberOfCameraCalibrationData +sceShellCoreUtilGoBackToKratosCurrentSessionGame +sceShellCoreUtilHideBlocksFromUser +sceShellCoreUtilIncrementVersionNumberOfCameraCalibrationData +sceShellCoreUtilIsAccessibilityZoomLocked +sceShellCoreUtilIsAppLaunched +sceShellCoreUtilIsBgmCpuBudgetAcquired +sceShellCoreUtilIsBgmCpuBudgetAvailable +sceShellCoreUtilIsBgmPlaying +sceShellCoreUtilIsExternalStorageAppMoveInProgress +sceShellCoreUtilIsEyeDistanceAdjusted +sceShellCoreUtilIsEyeToEyeDistanceAdjusted +sceShellCoreUtilIsGameLiveStreamingOnAir +sceShellCoreUtilIsIDUState +sceShellCoreUtilIsImposeScreenOverlaid +sceShellCoreUtilIsInSystemSuspendBlackList +sceShellCoreUtilIsInternalKratosUser +sceShellCoreUtilIsKilledOrSuspendedByLogout +sceShellCoreUtilIsNeededCrashReport +sceShellCoreUtilIsPowerSaveAlertRequested +sceShellCoreUtilIsRemotePlayCpuBudgetAcquired +sceShellCoreUtilIsScreenSaverOn +sceShellCoreUtilIsSharePlayCpuBudgetAcquired +sceShellCoreUtilIsShowCrashReport +sceShellCoreUtilIsTemperatureDanger +sceShellCoreUtilIsTitleWorkaroundEnabled +sceShellCoreUtilIsUsbMassStorageMounted +sceShellCoreUtilLaunchByUri +sceShellCoreUtilLeavePowerLockSection +sceShellCoreUtilLog +sceShellCoreUtilMakeManifestFile +sceShellCoreUtilMountAppRight +sceShellCoreUtilMountDownloadDataForShellUI +sceShellCoreUtilMountHddForBackup +sceShellCoreUtilMountHddForRestore +sceShellCoreUtilNavigateToAnotherApp +sceShellCoreUtilNavigateToGoHome +sceShellCoreUtilNavigateToLaunchedApp +sceShellCoreUtilNotificationCancelForIDU +sceShellCoreUtilNotificationRequestedForIDU +sceShellCoreUtilNotificatonRequestedForIDU +sceShellCoreUtilNotifyBgmCoreTermination +sceShellCoreUtilNotifyFarsightUIDone +sceShellCoreUtilNotifyFsReadError +sceShellCoreUtilNotifyImeStatusChanged +sceShellCoreUtilNotifyPsnAccountInfoReceived +sceShellCoreUtilNotifySystemSuspendTelemetryInfo +sceShellCoreUtilNotifyYouTubeAccountLinkStatusChanged +sceShellCoreUtilPfAuthClientConsoleTokenClearCache +sceShellCoreUtilPostActivityForPsNow +sceShellCoreUtilPostErrorLog +sceShellCoreUtilPostLaunchConfirmResult +sceShellCoreUtilPostPsmEventToShellUI +sceShellCoreUtilPreNotifyOfGameLiveStreaming +sceShellCoreUtilPreNotifyOfRemotePlay +sceShellCoreUtilPreNotifyOfSharePlay +sceShellCoreUtilReleaseBgmCpuBudget +sceShellCoreUtilReleaseRemotePlayCpuBudget +sceShellCoreUtilReleaseSharePlayCpuBudget +sceShellCoreUtilReportSessionErrorToGaikaiController +sceShellCoreUtilReportUnexpectedFatalErrorToSystemTelemetry +sceShellCoreUtilRequestCameraCalibration +sceShellCoreUtilRequestEjectDevice +sceShellCoreUtilRequestRebootApp +sceShellCoreUtilRequestShutdown +sceShellCoreUtilResetAutoPowerDownTimer +sceShellCoreUtilResetBgdcConfig +sceShellCoreUtilSetAppData +sceShellCoreUtilSetBgmProhibition +sceShellCoreUtilSetDeviceIndexBehavior +sceShellCoreUtilSetGameLiveStreamingOnAirFlag +sceShellCoreUtilSetGameLiveStreamingStatus +sceShellCoreUtilSetGnmCompositorOnScreenProfilerFlag +sceShellCoreUtilSetGpuLoadEmulationMode +sceShellCoreUtilSetGpuLoadEmulationModeByAppId +sceShellCoreUtilSetIDUMode +sceShellCoreUtilSetImposeStatusFlag +sceShellCoreUtilSetPsStoreIconLayout +sceShellCoreUtilSetPsStoreIconState +sceShellCoreUtilSetRemotePlayStatus +sceShellCoreUtilSetSharePlayStatus +sceShellCoreUtilSetSkipUpdateCheck +sceShellCoreUtilSetSocialScreenStatus +sceShellCoreUtilSetSplashScreenState +sceShellCoreUtilSetSystemBGState +sceShellCoreUtilSetSystemBGWaveColor +sceShellCoreUtilSetSystemBGWaveState +sceShellCoreUtilSetUIStatus +sceShellCoreUtilSetUserFocus +sceShellCoreUtilShowCriticalErrorDialog +sceShellCoreUtilShowErrorDialog +sceShellCoreUtilShowErrorDialogWithFormatArgs +sceShellCoreUtilShowErrorDialogWithParam +sceShellCoreUtilShowPsUnderLockIndicator +sceShellCoreUtilSignalUserInput +sceShellCoreUtilStartOptimization +sceShellCoreUtilStartPsNowGame +sceShellCoreUtilStartRebootTimer +sceShellCoreUtilStartShutdownTimer +sceShellCoreUtilStopOptimization +sceShellCoreUtilStopPsNowGame +sceShellCoreUtilTalkKeyEventReceived +sceShellCoreUtilTestBusTransferSpeed +sceShellCoreUtilTickHeartBeat +sceShellCoreUtilTriggerPapcRecalculation +sceShellCoreUtilTriggerPapcUpdate +sceShellCoreUtilTurnOffScreenSaver +sceShellCoreUtilUnmountAppRight +sceShellCoreUtilUnmountDownloadDataForShellUI +sceShellCoreUtilUnmountHddForBackup +sceShellCoreUtilUnmountHddForRestore +sceShellCoreUtilWriteSmrHddDummyData +sceShellCoreutilGetCrashReportProcessInformation +sceShellUIUtilCreateTaskToken +sceShellUIUtilGetAppUrl +sceShellUIUtilGetDefaultQueryParameter +sceShellUIUtilInitialize +sceShellUIUtilLaunchByUri +sceShellUIUtilLaunchTask +sceShellUIUtilTerminate +sceSigninDialogClose +sceSigninDialogGetResult +sceSigninDialogGetStatus +sceSigninDialogInitialize +sceSigninDialogOpen +sceSigninDialogTerminate +sceSigninDialogUpdateStatus +sceSlimglClientLiveTimeout +sceSlimglClientMonitorServerEnd +sceSlimglClientMonitorServerStart +sceSlimglClientPulse +sceSlimglClientStartIPC +sceSlimglCompositorAllocateIndex +sceSlimglCompositorCreateIndirectRenderTarget +sceSlimglCompositorDeleteIndirectRenderTarget +sceSlimglCompositorFlush +sceSlimglCompositorFlushWithRepeat +sceSlimglCompositorGetCanvasHandle +sceSlimglCompositorGetError +sceSlimglCompositorReleaseIndex +sceSlimglCompositorSetEndOfFrameCommand +sceSlimglCompositorSetIndirectCanvasCommand +sceSlimglCompositorSetIndirectCompositionCommand +sceSlimglCompositorSetIndirectRenderTargetConfigCommand +sceSlimglCompositorSetInvisibleCanvasCommand +sceSlimglCompositorSetMemoryCommand +sceSlimglCompositorSetPostEventCommand +sceSlimglCompositorWaitEndOfRendering +sceSlimglCompositorWaitPostEvent +sceSlimglIPCEnd +sceSlimglIPCSetup +sceSlimglRenderServerThreadStart +sceSlimglServerEndClient +sceSlimglServerRegisterShaderBinary +sceSlimglServerRegisterShaderFile +sceSlimglServerSetPolicy +sceSlimglServerSetupGetDomainSocket +sceSlimglServerSetupSocketPairingBy +sceSlimglServerSetupSocketPairingTransport +sceSlimglServerStartClient +sceSlimglServerStartWithSocket +sceSlimglServerWaitRenderThread +sceSlimglStartServer +sceSlimglSupportServerProcess +sceSocialScreenCloseSeparateMode +sceSocialScreenConfigureSeparateMode +sceSocialScreenCrashDaemon +sceSocialScreenDialogClose +sceSocialScreenDialogGetResult +sceSocialScreenDialogGetStatus +sceSocialScreenDialogInitialize +sceSocialScreenDialogOpen +sceSocialScreenDialogTerminate +sceSocialScreenDialogUpdateStatus +sceSocialScreenGetIgnoreSeparateMode +sceSocialScreenInitialize +sceSocialScreenInitializeSeparateModeParameter +sceSocialScreenOpenSeparateMode +sceSocialScreenReserveHighFrameRateVideoCaptureRequest +sceSocialScreenSetIgnoreSeparateMode +sceSocialScreenSetMode +sceSocialScreenTerminate +sceSpGetPid +sceSpKernelGettimeofday +sceSpKernelNanosleep +sceSpNetConnect +sceSpNetEpollAbort +sceSpNetEpollControl +sceSpNetEpollCreate +sceSpNetEpollDestroy +sceSpNetEpollWait +sceSpNetErrnoLoc +sceSpNetPoolCreate +sceSpNetPoolDestroy +sceSpNetRecv +sceSpNetResolverAbort +sceSpNetResolverCreate +sceSpNetResolverDestroy +sceSpNetResolverGetError +sceSpNetResolverStartNtoa +sceSpNetSend +sceSpNetSetsockopt +sceSpNetSocket +sceSpNetSocketClose +sceSpPthreadAttrDestroy +sceSpPthreadAttrInit +sceSpPthreadAttrSetinheritsched +sceSpPthreadAttrSetschedparam +sceSpPthreadAttrSetstacksize +sceSpPthreadCondDestroy +sceSpPthreadCondInit +sceSpPthreadCondSignal +sceSpPthreadCondWait +sceSpPthreadCondattrDestroy +sceSpPthreadCondattrInit +sceSpPthreadCreate +sceSpPthreadDetach +sceSpPthreadExit +sceSpPthreadJoin +sceSpPthreadMutexDestroy +sceSpPthreadMutexInit +sceSpPthreadMutexLock +sceSpPthreadMutexUnlock +sceSpPthreadMutexattrDestroy +sceSpPthreadMutexattrInit +sceSpPthreadMutexattrSetprioceiling +sceSpPthreadMutexattrSetprotocol +sceSpPthreadMutexattrSettype +sceSpPthreadSetprio +sceSpSelect +sceSrcUtilityFinalize +sceSrcUtilityFlush +sceSrcUtilityGetDelaySamples +sceSrcUtilityGetHandleSize +sceSrcUtilityGetPriority +sceSrcUtilityInitialize +sceSrcUtilityInitializeEx +sceSrcUtilityResample +sceSrcUtilitySetPriority +sceSslCheckRecvPending +sceSslClose +sceSslConnect +sceSslCreateConnection +sceSslCreateSslConnection +sceSslDeleteConnection +sceSslDeleteSslConnection +sceSslDisableOption +sceSslDisableOptionInternal +sceSslDisableOptionInternalInsecure +sceSslDisableVerifyOption +sceSslEnableOption +sceSslEnableOptionInternal +sceSslEnableVerifyOption +sceSslFreeCaCerts +sceSslFreeCaList +sceSslFreeSslCertName +sceSslGetAlpnSelected +sceSslGetCaCerts +sceSslGetCaList +sceSslGetFingerprint +sceSslGetIssuerName +sceSslGetMemoryPoolStats +sceSslGetNameEntryCount +sceSslGetNameEntryInfo +sceSslGetNanoSSLModuleId +sceSslGetNotAfter +sceSslGetNotBefore +sceSslGetPeerCert +sceSslGetPem +sceSslGetSerialNumber +sceSslGetSslError +sceSslGetSubjectName +sceSslInit +sceSslLoadCert +sceSslLoadRootCACert +sceSslRead +sceSslRecv +sceSslReuseConnection +sceSslSend +sceSslSetAlpn +sceSslSetMinSslVersion +sceSslSetSslVersion +sceSslSetVerifyCallback +sceSslShowMemoryStat +sceSslTerm +sceSslUnloadCert +sceSslWrite +sceSulphaGetClientInfo +sceSulphaGetConnectedClientCount +sceSulphaGetDefaultConfig +sceSulphaGetNeededMemory +sceSulphaInit +sceSulphaMessage +sceSulphaSetBookmark +sceSulphaShutdown +sceSysCoreGetEventCount +sceSysCoreReceiveEvent +sceSysUtilSendAddressingSystemNotification +sceSysUtilSendAddressingSystemNotificationWithDeviceId +sceSysUtilSendAddressingSystemNotificationWithUserId +sceSysUtilSendAddressingSystemNotificationWithUserName +sceSysUtilSendNotificationRequest +sceSysUtilSendNpDebugNotificationRequest +sceSysUtilSendSystemNotification +sceSysUtilSendSystemNotification2 +sceSysUtilSendSystemNotificationParamInit +sceSysUtilSendSystemNotificationWithAppId +sceSysUtilSendSystemNotificationWithAppInfo +sceSysUtilSendSystemNotificationWithAppName +sceSysUtilSendSystemNotificationWithAppNameRelatedToUser +sceSysUtilSendSystemNotificationWithDeviceId +sceSysUtilSendSystemNotificationWithDeviceIdRelatedToUser +sceSysUtilSendSystemNotificationWithErrorCode +sceSysUtilSendSystemNotificationWithParams +sceSysUtilSendSystemNotificationWithText +sceSysUtilSendSystemNotificationWithTextRelatedToUser +sceSysUtilSendSystemNotificationWithUserId +sceSysUtilSendSystemNotificationWithUserName +sceSysUtilSendSystemNotificationWithUserNameInfo +sceSysUtilSendTrcCheckNotificationRequest +sceSysUtilSendWebDebugNotificationRequest +sceSysmoduleGetModuleHandleInternal +sceSysmoduleGetModuleInfoForUnwind +sceSysmoduleIsCalledFromSysModule +sceSysmoduleIsCameraPreloaded +sceSysmoduleIsLoaded +sceSysmoduleIsLoadedInternal +sceSysmoduleLoadModule +sceSysmoduleLoadModuleByNameInternal +sceSysmoduleLoadModuleInternal +sceSysmoduleLoadModuleInternalWithArg +sceSysmoduleMapLibcForLibkernel +sceSysmodulePreloadModuleForLibkernel +sceSysmoduleUnloadModule +sceSysmoduleUnloadModuleByNameInternal +sceSysmoduleUnloadModuleInternal +sceSysmoduleUnloadModuleInternalWithArg +sceSystemGestureAppendTouchRecognizer +sceSystemGestureClose +sceSystemGestureCreateTouchRecognizer +sceSystemGestureDebugGetVersion +sceSystemGestureFinalizePrimitiveTouchRecognizer +sceSystemGestureGetPrimitiveTouchEventByIndex +sceSystemGestureGetPrimitiveTouchEventByPrimitiveID +sceSystemGestureGetPrimitiveTouchEvents +sceSystemGestureGetPrimitiveTouchEventsCount +sceSystemGestureGetTouchEventByEventID +sceSystemGestureGetTouchEventByIndex +sceSystemGestureGetTouchEvents +sceSystemGestureGetTouchEventsCount +sceSystemGestureGetTouchRecognizerInformation +sceSystemGestureInitializePrimitiveTouchRecognizer +sceSystemGestureOpen +sceSystemGestureRemoveTouchRecognizer +sceSystemGestureResetPrimitiveTouchRecognizer +sceSystemGestureResetTouchRecognizer +sceSystemGestureUpdateAllTouchRecognizer +sceSystemGestureUpdatePrimitiveTouchRecognizer +sceSystemGestureUpdateTouchRecognizer +sceSystemGestureUpdateTouchRecognizerRectangle +sceSystemLogger2DeliveryGetBatchResult +sceSystemLogger2DeliveryGetResult +sceSystemLogger2DeliverySetBatchDeliveryEvent +sceSystemLogger2DeliveryTerminate +sceSystemLogger2GetTimestamp +sceSystemLogger2Initialize +sceSystemLogger2NativeQueueClientCheckAndMaskData +sceSystemLogger2NativeQueueClientGetEvent +sceSystemLogger2NativeQueueClientSetDeliveryEnable +sceSystemLogger2NativeQueueClientSetDeliveryResult +sceSystemLogger2NativeQueueClientSetNativeQueueConfig +sceSystemLogger2SetAsyncPeripheralConnectionLog +sceSystemLogger2SetEventAsync +sceSystemLogger2SetEventAsyncEx +sceSystemLogger2SetLog +sceSystemLogger2SetLogAsync +sceSystemLogger2SetPeripheralConnectionLog +sceSystemLogger2Terminate +sceSystemLoggerInitialize +sceSystemLoggerSetLogData +sceSystemLoggerTerminate +sceSystemModalDialogClose +sceSystemModalDialogOpen +sceSystemServiceAcquireBgmCpuBudget +sceSystemServiceAcquireFb0 +sceSystemServiceActivateHevc +sceSystemServiceActivateHevcAbort +sceSystemServiceActivateHevcGetStatus +sceSystemServiceActivateHevcInit +sceSystemServiceActivateHevcIsActivated +sceSystemServiceActivateHevcSoft +sceSystemServiceActivateHevcSoftAbort +sceSystemServiceActivateHevcSoftGetStatus +sceSystemServiceActivateHevcSoftInit +sceSystemServiceActivateHevcSoftIsActivated +sceSystemServiceActivateHevcSoftStart +sceSystemServiceActivateHevcSoftTerm +sceSystemServiceActivateHevcStart +sceSystemServiceActivateHevcTerm +sceSystemServiceActivateMpeg2Abort +sceSystemServiceActivateMpeg2GetStatus +sceSystemServiceActivateMpeg2Init +sceSystemServiceActivateMpeg2IsActivated +sceSystemServiceActivateMpeg2Start +sceSystemServiceActivateMpeg2Term +sceSystemServiceAddLocalProcess +sceSystemServiceAddLocalProcessForJvm +sceSystemServiceAddLocalProcessForPs2Emu +sceSystemServiceAddLocalProcessForPsmKit +sceSystemServiceAppGetAppInstallStatus +sceSystemServiceChangeAcpClock +sceSystemServiceChangeClock +sceSystemServiceChangeCpuClock +sceSystemServiceChangeCpuPstate +sceSystemServiceChangeGpuClock +sceSystemServiceChangeMemPstate +sceSystemServiceChangeMemoryClock +sceSystemServiceChangeMemoryClockToBaseMode +sceSystemServiceChangeMemoryClockToDefault +sceSystemServiceChangeMemoryClockToMultiMediaMode +sceSystemServiceChangeNumberOfGpuCu +sceSystemServiceChangeSamuClock +sceSystemServiceChangeUvdClock +sceSystemServiceChangeVceClock +sceSystemServiceDeclareReadyForSuspend +sceSystemServiceDisableMediaPlay +sceSystemServiceDisableMusicPlayer +sceSystemServiceDisableNoticeScreenSkipFlagAutoSet +sceSystemServiceDisablePartyVoice +sceSystemServiceDisablePersonalEyeToEyeDistanceSetting +sceSystemServiceDisableSuspendConfirmationDialog +sceSystemServiceDisableSuspendNotification +sceSystemServiceDisableVoiceRecognition +sceSystemServiceEnablePersonalEyeToEyeDistanceSetting +sceSystemServiceEnableSuspendConfirmationDialog +sceSystemServiceEnableSuspendNotification +sceSystemServiceGetAppCategoryType +sceSystemServiceGetAppFocusedAppStatus +sceSystemServiceGetAppId +sceSystemServiceGetAppIdListOfBigApp +sceSystemServiceGetAppIdOfBigApp +sceSystemServiceGetAppIdOfMiniApp +sceSystemServiceGetAppIdOfRunningBigApp +sceSystemServiceGetAppLaunchedUser +sceSystemServiceGetAppStatus +sceSystemServiceGetAppTitleId +sceSystemServiceGetAppType +sceSystemServiceGetDbgExecutablePath +sceSystemServiceGetDisplaySafeAreaInfo +sceSystemServiceGetEventForDaemon +sceSystemServiceGetGpuLoadEmulationMode +sceSystemServiceGetHdrToneMapLuminance +sceSystemServiceGetLocalProcessStatusList +sceSystemServiceGetMainAppTitleId +sceSystemServiceGetNoticeScreenSkipFlag +sceSystemServiceGetPSButtonEvent +sceSystemServiceGetParentSocket +sceSystemServiceGetParentSocketForJvm +sceSystemServiceGetParentSocketForPs2Emu +sceSystemServiceGetParentSocketForPsmKit +sceSystemServiceGetPlatformPrivacyDefinitionData +sceSystemServiceGetPlatformPrivacyDefinitionVersion +sceSystemServiceGetPlatformPrivacySetting +sceSystemServiceGetRecentLotusPushedButton +sceSystemServiceGetRemoteplayStatus +sceSystemServiceGetRenderingMode +sceSystemServiceGetStatus +sceSystemServiceGetSubAppTitleId +sceSystemServiceGetSubAppTitleIdForSP +sceSystemServiceGetTitleWorkaroundInfo +sceSystemServiceGetUIStatus +sceSystemServiceGetVersionNumberOfCameraCalibrationData +sceSystemServiceHideSplashScreen +sceSystemServiceInitializeForShellCore +sceSystemServiceInitializePlayerDialogParam +sceSystemServiceInvokeAppLaunchLink +sceSystemServiceIsAppSuspended +sceSystemServiceIsBgmCpuBudgetAvailable +sceSystemServiceIsBgmPlaying +sceSystemServiceIsEyeToEyeDistanceAdjusted +sceSystemServiceIsGameLiveStreamingOnAir +sceSystemServiceIsScreenSaverOn +sceSystemServiceIsShellUiFgAndGameBgCpuMode +sceSystemServiceKillApp +sceSystemServiceKillLocalProcess +sceSystemServiceKillLocalProcessForJvm +sceSystemServiceKillLocalProcessForPs2Emu +sceSystemServiceKillLocalProcessForPsmKit +sceSystemServiceLaunchApp +sceSystemServiceLaunchByName2 +sceSystemServiceLaunchEventDetails +sceSystemServiceLaunchPlayerDialog +sceSystemServiceLaunchStore +sceSystemServiceLaunchTournamentList +sceSystemServiceLaunchTournamentsTeamProfile +sceSystemServiceLaunchUdsApp +sceSystemServiceLaunchWebApp +sceSystemServiceLaunchWebBrowser +sceSystemServiceLoadExec +sceSystemServiceLoadExecVideoServiceWebApp +sceSystemServiceNavigateToAnotherApp +sceSystemServiceNavigateToGoBack +sceSystemServiceNavigateToGoBackWithValue +sceSystemServiceNavigateToGoHome +sceSystemServiceNotifyBgmCoreTermination +sceSystemServiceOpenChallengeActivity +sceSystemServiceOpenTournamentOccurrence +sceSystemServiceParamGetInt +sceSystemServiceParamGetString +sceSystemServicePowerTick +sceSystemServiceRaiseExceptionLocalProcess +sceSystemServiceReceiveEvent +sceSystemServiceReenableMediaPlay +sceSystemServiceReenableMusicPlayer +sceSystemServiceReenablePartyVoice +sceSystemServiceReenableVoiceRecognition +sceSystemServiceRegisterDaemon +sceSystemServiceReleaseBgmCpuBudget +sceSystemServiceReleaseFb0 +sceSystemServiceReportAbnormalTermination +sceSystemServiceRequestCameraCalibration +sceSystemServiceRequestPowerOff +sceSystemServiceRequestReboot +sceSystemServiceRequestToChangeRenderingMode +sceSystemServiceResumeLocalProcess +sceSystemServiceSaveVideoToken +sceSystemServiceSetControllerFocusPermission +sceSystemServiceSetGpuLoadEmulationMode +sceSystemServiceSetNoticeScreenSkipFlag +sceSystemServiceSetOutOfVrPlayAreaFlag +sceSystemServiceSetOutOfVrPlayZoneWarning +sceSystemServiceSetPowerSaveLevel +sceSystemServiceShowClosedCaptionAdvancedSettings +sceSystemServiceShowClosedCaptionSettings +sceSystemServiceShowControllerSettings +sceSystemServiceShowDisplaySafeAreaSettings +sceSystemServiceShowErrorDialog +sceSystemServiceShowEyeToEyeDistanceSetting +sceSystemServiceShowImposeMenuForPs2Emu +sceSystemServiceSuspendBackgroundApp +sceSystemServiceSuspendLocalProcess +sceSystemServiceTelemetrySetData +sceSystemServiceTelemetrySetData2 +sceSystemServiceTickVideoPlayback +sceSystemServiceTurnOffScreenSaver +sceSystemServiceUsbStorageGetDeviceInfo +sceSystemServiceUsbStorageGetDeviceList +sceSystemServiceUsbStorageGetdentsClose +sceSystemServiceUsbStorageGetdentsOpen +sceSystemServiceUsbStorageGetdentsRead +sceSystemServiceUsbStorageInit +sceSystemServiceUsbStorageIsExist +sceSystemServiceUsbStorageRegisterCallback +sceSystemServiceUsbStorageRegisterCallbackForMapAvailable +sceSystemServiceUsbStorageRegisterCallbackForMapUnavailable +sceSystemServiceUsbStorageRequestMap +sceSystemServiceUsbStorageRequestMapWSB +sceSystemServiceUsbStorageRequestUnmap +sceSystemServiceUsbStorageTerm +sceSystemServiceUsbStorageUnregisterCallback +sceSystemServiceUsbStorageUnregisterCallbackForMapAvailable +sceSystemServiceUsbStorageUnregisterCallbackForMapUnavailable +sceSystemStateMgrCancelShutdownTimer +sceSystemStateMgrEnterMediaPlaybackMode +sceSystemStateMgrEnterStandby +sceSystemStateMgrExtendShutdownTimer +sceSystemStateMgrExtendShutdownTimerForPostAutoUpdateProcess +sceSystemStateMgrGetCurrentState +sceSystemStateMgrGetTriggerCode +sceSystemStateMgrIsBdDriveReady +sceSystemStateMgrIsGpuPerformanceNormal +sceSystemStateMgrIsShellUIShutdownInProgress +sceSystemStateMgrIsStandbyModeEnabled +sceSystemStateMgrLeaveMediaPlaybackMode +sceSystemStateMgrNotifySystemSuspendResumeProgress +sceSystemStateMgrReboot +sceSystemStateMgrRequestToKeepMainOnStandby +sceSystemStateMgrSendCecOneTouchPlayCommand +sceSystemStateMgrStartRebootTimer +sceSystemStateMgrStartShutdownTimer +sceSystemStateMgrStartStadbyTimer +sceSystemStateMgrStartVshAutoUpdateTimer +sceSystemStateMgrTickMusicPlayback +sceSystemStateMgrTickPartyChat +sceSystemStateMgrTurnOff +sceSystemStateMgrVshAutoUpdate +sceSystemStateMgrWaitVshAutoUpdateVerifyDone +sceSystemStateMgrWakeUp +sceSystemTtsCancel +sceSystemTtsIsAccessibilityAvailable +sceSystemTtsRegisterCallback +sceSystemTtsSpeakRequest +sceSystemTtsUnregisterCallback +sceTextToSpeech2Cancel +sceTextToSpeech2Close +sceTextToSpeech2GetSpeechStatus +sceTextToSpeech2GetSystemStatus +sceTextToSpeech2Initialize +sceTextToSpeech2Open +sceTextToSpeech2RegisterTextConversionItem +sceTextToSpeech2Speak +sceTextToSpeech2Terminate +sceTextToSpeechCancelImpl +sceTextToSpeechCloseImpl +sceTextToSpeechGetAudioDataImpl +sceTextToSpeechGetStatusImpl +sceTextToSpeechInitImpl +sceTextToSpeechOpenImpl +sceTextToSpeechPauseImpl +sceTextToSpeechResumeImpl +sceTextToSpeechSpeakContinuousImpl +sceTextToSpeechSpeakImpl +sceTextToSpeechTermImpl +sceTsCloseFile +sceTsDisableRepresentation +sceTsEnableRepresentation +sceTsEnableStream +sceTsGetAvailableBW +sceTsGetLiveStatus +sceTsGetNextAuInfo +sceTsGetNextUnitData +sceTsGetRepresentationCount +sceTsGetRepresentationInfo +sceTsGetSeekWindow +sceTsGetStreamInfo +sceTsGetUrlEncryptionType +sceTsJumpPTS +sceTsOpenFile +sceTsOpenFileEx +sceTsReleaseBuffer +sceTsRepresentationIsEnabled +sceTsSetAvailableBW +sceTsSetStartingBW +sceTsStartFileStreaming +sceTsStopFileStreaming +sceUlpMgrCloseAllConnectedClients +sceUlpMgrGetDecidState +sceUlpMgrGetNetmpListenSock +sceUlpMgrInit +sceUlpMgrInitDecidState +sceUlpMgrQueuePush +sceUlpMgrQueueTryPop +sceUlpMgrRecv +sceUlpMgrRecvData +sceUlpMgrRegisterProtocol +sceUlpMgrReqClose +sceUlpMgrReqOpen +sceUlpMgrReqSuspend +sceUlpMgrSaveConnectionInfoList +sceUlpMgrSend +sceUlpMgrSendData +sceUlpMgrSetDecidState +sceUlpMgrSetNetmpListenSock +sceUlpMgrUnregisterProtocol +sceUlpMgrVshFinalize +sceUlpMgrVshGetStatCmd +sceUlpMgrVshInitialize +sceUlpMgrVshInstallCmd +sceUlpMgrVshMountCmd +sceUlpMgrVshNextChunkCmd +sceUlpMgrVshReadEvent +sceUlpMgrVshUninstallCmd +sceUlpMgrVshUnmountCmd +sceUltConditionVariableDestroy +sceUltConditionVariableSignal +sceUltConditionVariableSignalAll +sceUltConditionVariableWait +sceUltFinalize +sceUltGetConditionVariableInfo +sceUltGetMutexInfo +sceUltGetQueueDataResourcePoolInfo +sceUltGetQueueInfo +sceUltGetReaderWriterLockInfo +sceUltGetSemaphoreInfo +sceUltGetUlthreadInfo +sceUltGetUlthreadRuntimeInfo +sceUltGetWaitingQueueResourcePoolInfo +sceUltInitialize +sceUltMutexDestroy +sceUltMutexLock +sceUltMutexTryLock +sceUltMutexUnlock +sceUltQueueDataResourcePoolDestroy +sceUltQueueDataResourcePoolGetWorkAreaSize +sceUltQueueDestroy +sceUltQueuePop +sceUltQueuePush +sceUltQueueTryPop +sceUltQueueTryPush +sceUltReaderWriterLockDestroy +sceUltReaderWriterLockLockRead +sceUltReaderWriterLockLockWrite +sceUltReaderWriterLockTryLockRead +sceUltReaderWriterLockTryLockWrite +sceUltReaderWriterLockUnlockRead +sceUltReaderWriterLockUnlockWrite +sceUltSemaphoreAcquire +sceUltSemaphoreDestroy +sceUltSemaphoreRelease +sceUltSemaphoreTryAcquire +sceUltUlthreadExit +sceUltUlthreadGetSelf +sceUltUlthreadJoin +sceUltUlthreadRuntimeDestroy +sceUltUlthreadRuntimeGetWorkAreaSize +sceUltUlthreadTryJoin +sceUltUlthreadYield +sceUltWaitingQueueResourcePoolDestroy +sceUltWaitingQueueResourcePoolGetWorkAreaSize +sceUpsrvGetCompletedTaskId +sceUpsrvGetNextUpdateCheckDateTime +sceUpsrvGetRebootFlag +sceUpsrvGetSystemExUpdateTaskState +sceUpsrvInitialize +sceUpsrvPostErrorLog +sceUpsrvResumePausedTask +sceUpsrvSetFakeVersion +sceUpsrvStartUpdateSession +sceUpsrvSwitchSystemExBank +sceUpsrvSwitchSystemExBankWithoutVerify +sceUpsrvTerminate +sceUpsrvUpdateAppdbForEap +sceUpsrvUpdateCancelBDUpdate +sceUpsrvUpdateCheckCancel +sceUpsrvUpdateCheckCreateHandler +sceUpsrvUpdateCheckDestroyHandler +sceUpsrvUpdateCheckDoCheckGame +sceUpsrvUpdateCheckDoCheckSystem +sceUpsrvUpdateCheckDoCheckSystemBeta +sceUpsrvUpdateCheckDoCheckSystemExpBeta +sceUpsrvUpdateCheckDoCheckSystemForDevKit +sceUpsrvUpdateCheckDoCheckSystemForSettings +sceUpsrvUpdateCheckDoCheckSystemVersionDown +sceUpsrvUpdateCheckDoCheckSystemWithPupInfo +sceUpsrvUpdateCheckGetPackageInfo +sceUpsrvUpdateCheckGetUpdatelistURL +sceUpsrvUpdateCheckIsSystemBetaClosed +sceUpsrvUpdateCheckRequestCheckGame +sceUpsrvUpdateCreateUpdateTask +sceUpsrvUpdateDestroyUpdateTask +sceUpsrvUpdateDoCheckBootUpdate +sceUpsrvUpdateDoExternalDeviceUpdate +sceUpsrvUpdateDoUpdate +sceUpsrvUpdateDoUpdateAsync +sceUpsrvUpdateDoUpdateBeta +sceUpsrvUpdateDoUpdateExpBeta +sceUpsrvUpdateDoUpdateSystemEx +sceUpsrvUpdateDoUpdateWithEntitlement +sceUpsrvUpdateDoUpdateWithHandler +sceUpsrvUpdateDoUpdateWithPupInfo +sceUpsrvUpdateDoUpdateWithPupPath +sceUpsrvUpdateDoUpdateWithPupPath2 +sceUpsrvUpdateGetBetaAgreementUrl +sceUpsrvUpdateGetBetaAgreementUrlForUpdate +sceUpsrvUpdateGetBetaFeatureListUrlForUpdate +sceUpsrvUpdateGetDownloadProgress +sceUpsrvUpdateGetEulaDisplay +sceUpsrvUpdateGetEulaStr +sceUpsrvUpdateGetEulaStrLen +sceUpsrvUpdateGetFeatureList +sceUpsrvUpdateGetFeatureListUrl +sceUpsrvUpdateGetFeatureListUrlForSystemExUpdate +sceUpsrvUpdateGetFeatureListUrlForUpdate +sceUpsrvUpdateGetImageWritingProgress +sceUpsrvUpdateGetObfuscatedString +sceUpsrvUpdateGetProgress +sceUpsrvUpdateGetUpdateTaskInfo +sceUpsrvUpdateGetUpdateTaskMgrInfo +sceUpsrvUpdateGetUrlForBetaAgreement +sceUpsrvUpdateGetUrlForFeatureList +sceUpsrvUpdateGetUrlForFeatureListBeta +sceUpsrvUpdateRequestDownloadPup +sceUpsrvUpdateRequestDownloadPupCancel +sceUpsrvUpdateSetEulaAccept +sceUpsrvUpdateSetUpdateMode +sceUpsrvUpdateStartUpdateTask +sceUpsrvVerifySystemExBank +sceUrlConfigResolverGetAppConfig +sceUrlConfigResolverGetDefaultQueryParameter +sceUrlConfigResolverGetDeviceId +sceUrlConfigResolverGetJscHeapSizeSoftLimit +sceUsbStorageClearFakeWriteProtection +sceUsbStorageDialogClose +sceUsbStorageDialogGetResult +sceUsbStorageDialogGetStatus +sceUsbStorageDialogInitialize +sceUsbStorageDialogOpen +sceUsbStorageDialogTerminate +sceUsbStorageDialogUpdateStatus +sceUsbStorageGetDeviceInfo +sceUsbStorageGetDeviceList +sceUsbStorageGetMountPointOfShellCore +sceUsbStorageGetdentsClose +sceUsbStorageGetdentsOpen +sceUsbStorageGetdentsRead +sceUsbStorageInit +sceUsbStorageIsExist +sceUsbStorageRegisterCallback +sceUsbStorageRegisterCallbackForMapAvailable +sceUsbStorageRegisterCallbackForMapUnavailable +sceUsbStorageRequestMap +sceUsbStorageRequestMapWSB +sceUsbStorageRequestUnmap +sceUsbStorageSetFakeMapLockForDebug +sceUsbStorageSetFakeWriteProtection +sceUsbStorageTerm +sceUsbStorageUnregisterCallback +sceUsbStorageUnregisterCallbackForMapAvailable +sceUsbStorageUnregisterCallbackForMapUnavailable +sceUsbdAllocTransfer +sceUsbdAttachKernelDriver +sceUsbdBulkTransfer +sceUsbdCancelTransfer +sceUsbdCheckConnected +sceUsbdClaimInterface +sceUsbdClearHalt +sceUsbdClose +sceUsbdControlTransfer +sceUsbdControlTransferGetData +sceUsbdControlTransferGetSetup +sceUsbdDetachKernelDriver +sceUsbdEventHandlerActive +sceUsbdEventHandlingOk +sceUsbdExit +sceUsbdFillBulkTransfer +sceUsbdFillControlSetup +sceUsbdFillControlTransfer +sceUsbdFillInterruptTransfer +sceUsbdFillIsoTransfer +sceUsbdFreeConfigDescriptor +sceUsbdFreeDeviceList +sceUsbdFreeTransfer +sceUsbdGetActiveConfigDescriptor +sceUsbdGetBusNumber +sceUsbdGetConfigDescriptor +sceUsbdGetConfigDescriptorByValue +sceUsbdGetConfiguration +sceUsbdGetDescriptor +sceUsbdGetDevice +sceUsbdGetDeviceAddress +sceUsbdGetDeviceDescriptor +sceUsbdGetDeviceList +sceUsbdGetDeviceSpeed +sceUsbdGetIsoPacketBuffer +sceUsbdGetMaxIsoPacketSize +sceUsbdGetMaxPacketSize +sceUsbdGetStringDescriptor +sceUsbdGetStringDescriptorAscii +sceUsbdHandleEvents +sceUsbdHandleEventsLocked +sceUsbdHandleEventsTimeout +sceUsbdInit +sceUsbdInterruptTransfer +sceUsbdKernelDriverActive +sceUsbdLockEventWaiters +sceUsbdLockEvents +sceUsbdOpen +sceUsbdOpenDeviceWithVidPid +sceUsbdRefDevice +sceUsbdReleaseInterface +sceUsbdResetDevice +sceUsbdSetConfiguration +sceUsbdSetInterfaceAltSetting +sceUsbdSetIsoPacketLengths +sceUsbdSubmitTransfer +sceUsbdTryLockEvents +sceUsbdUnlockEventWaiters +sceUsbdUnlockEvents +sceUsbdUnrefDevice +sceUsbdWaitForEvent +sceUserServiceCreateGuestUser +sceUserServiceCreateKratosUser +sceUserServiceCreateSharePlayClientUser +sceUserServiceCreateUser +sceUserServiceDestroyUser +sceUserServiceGetAccessibilityChatTranscription +sceUserServiceGetAccessibilityKeyremapData +sceUserServiceGetAccessibilityKeyremapEnable +sceUserServiceGetAccessibilityPressAndHoldDelay +sceUserServiceGetAccessibilityTriggerEffect +sceUserServiceGetAccessibilityVibration +sceUserServiceGetAccessibilityZoom +sceUserServiceGetAccessibilityZoomEnabled +sceUserServiceGetAccessibilityZoomFollowFocus +sceUserServiceGetAccountRemarks +sceUserServiceGetAgeLevel +sceUserServiceGetAgeVerified +sceUserServiceGetAppSortOrder +sceUserServiceGetAppearOfflineSetting +sceUserServiceGetAutoLoginEnabled +sceUserServiceGetCaptureStatus +sceUserServiceGetChatStatus +sceUserServiceGetControlCenterFunctionControlSettings +sceUserServiceGetCreatedVersion +sceUserServiceGetCurrentUserGroupIndex +sceUserServiceGetDefaultNewUserGroupName +sceUserServiceGetDeletedUserInfo +sceUserServiceGetDiscPlayerFlag +sceUserServiceGetEvent +sceUserServiceGetEventCalendarType +sceUserServiceGetEventFilterTeamEvent +sceUserServiceGetEventSortEvent +sceUserServiceGetEventSortTitle +sceUserServiceGetEventUiFlag +sceUserServiceGetEventVsh +sceUserServiceGetFaceRecognitionDeleteCount +sceUserServiceGetFaceRecognitionRegisterCount +sceUserServiceGetFileBrowserFilter +sceUserServiceGetFileBrowserSortContent +sceUserServiceGetFileBrowserSortTitle +sceUserServiceGetFileSelectorFilter +sceUserServiceGetFileSelectorSortContent +sceUserServiceGetFileSelectorSortTitle +sceUserServiceGetForegroundUser +sceUserServiceGetFriendCustomListLastFocus +sceUserServiceGetFriendFlag +sceUserServiceGetGamePresets +sceUserServiceGetGlsAccessTokenNiconicoLive +sceUserServiceGetGlsAccessTokenTwitch +sceUserServiceGetGlsAccessTokenUstream +sceUserServiceGetGlsAnonymousUserId +sceUserServiceGetGlsBcTags +sceUserServiceGetGlsBcTitle +sceUserServiceGetGlsBroadcastChannel +sceUserServiceGetGlsBroadcastService +sceUserServiceGetGlsBroadcastUiLayout +sceUserServiceGetGlsBroadcastersComment +sceUserServiceGetGlsBroadcastersCommentColor +sceUserServiceGetGlsCamCrop +sceUserServiceGetGlsCameraBgFilter +sceUserServiceGetGlsCameraBrightness +sceUserServiceGetGlsCameraChromaKeyLevel +sceUserServiceGetGlsCameraContrast +sceUserServiceGetGlsCameraDepthLevel +sceUserServiceGetGlsCameraEdgeLevel +sceUserServiceGetGlsCameraEffect +sceUserServiceGetGlsCameraEliminationLevel +sceUserServiceGetGlsCameraPosition +sceUserServiceGetGlsCameraReflection +sceUserServiceGetGlsCameraSize +sceUserServiceGetGlsCameraTransparency +sceUserServiceGetGlsCommunityId +sceUserServiceGetGlsFloatingMessage +sceUserServiceGetGlsHintFlag +sceUserServiceGetGlsInitSpectating +sceUserServiceGetGlsIsCameraHidden +sceUserServiceGetGlsIsFacebookEnabled +sceUserServiceGetGlsIsMuteEnabled +sceUserServiceGetGlsIsRecDisabled +sceUserServiceGetGlsIsRecievedMessageHidden +sceUserServiceGetGlsIsTwitterEnabled +sceUserServiceGetGlsLanguageFilter +sceUserServiceGetGlsLfpsSortOrder +sceUserServiceGetGlsLiveQuality +sceUserServiceGetGlsLiveQuality2 +sceUserServiceGetGlsLiveQuality3 +sceUserServiceGetGlsLiveQuality4 +sceUserServiceGetGlsLiveQuality5 +sceUserServiceGetGlsMessageFilterLevel +sceUserServiceGetGlsOverlayPosition +sceUserServiceGetGlsSortOrder +sceUserServiceGetGlsSortOrderGame +sceUserServiceGetGlsStreamingMode +sceUserServiceGetGlsTtsFlags +sceUserServiceGetGlsTtsPitch +sceUserServiceGetGlsTtsSpeed +sceUserServiceGetGlsTtsVolume +sceUserServiceGetHmuBrightness +sceUserServiceGetHmuZoom +sceUserServiceGetHoldAudioOutDevice +sceUserServiceGetHomeDirectory +sceUserServiceGetHrtf +sceUserServiceGetIPDLeft +sceUserServiceGetIPDRight +sceUserServiceGetImeAutoCapitalEnabled +sceUserServiceGetImeInitFlag +sceUserServiceGetImeInputType +sceUserServiceGetImeLastUnit +sceUserServiceGetImePointerMode +sceUserServiceGetImePredictiveTextEnabled +sceUserServiceGetImeRunCount +sceUserServiceGetInitialUser +sceUserServiceGetIsFakePlus +sceUserServiceGetIsQuickSignup +sceUserServiceGetIsRemotePlayAllowed +sceUserServiceGetJapaneseInputType +sceUserServiceGetKeyRepeatSpeed +sceUserServiceGetKeyRepeatStartingTime +sceUserServiceGetKeyboardType +sceUserServiceGetKratosPrimaryUser +sceUserServiceGetLastLoginOrder +sceUserServiceGetLightBarBaseBrightness +sceUserServiceGetLoginFlag +sceUserServiceGetLoginUserIdList +sceUserServiceGetMicLevel +sceUserServiceGetMouseHandType +sceUserServiceGetMousePointerSpeed +sceUserServiceGetNotificationBehavior +sceUserServiceGetNotificationSettings +sceUserServiceGetNotificationSettings2 +sceUserServiceGetNotificationSettings_1 +sceUserServiceGetNotificationSettings_2 +sceUserServiceGetNotificationSettings_3 +sceUserServiceGetNpAccountId +sceUserServiceGetNpAccountUpgradeFlag +sceUserServiceGetNpAge +sceUserServiceGetNpAuthErrorFlag +sceUserServiceGetNpCountryCode +sceUserServiceGetNpDateOfBirth +sceUserServiceGetNpEnv +sceUserServiceGetNpLanguageCode +sceUserServiceGetNpLanguageCode2 +sceUserServiceGetNpLoginId +sceUserServiceGetNpMAccountId +sceUserServiceGetNpNpId +sceUserServiceGetNpOfflineAccountAdult +sceUserServiceGetNpOfflineAccountId +sceUserServiceGetNpOnlineId +sceUserServiceGetNpSubAccount +sceUserServiceGetPadSpeakerVolume +sceUserServiceGetParentalBdAge +sceUserServiceGetParentalBrowser +sceUserServiceGetParentalContentControl +sceUserServiceGetParentalDvd +sceUserServiceGetParentalDvdRegion +sceUserServiceGetParentalGame +sceUserServiceGetParentalGameAgeLevel +sceUserServiceGetParentalGameWhiteList +sceUserServiceGetParentalMorpheus +sceUserServiceGetPartyMuteList +sceUserServiceGetPartyMuteListA +sceUserServiceGetPartySettingFlags +sceUserServiceGetPasscode +sceUserServiceGetPbtcAdditionalTime +sceUserServiceGetPbtcFlag +sceUserServiceGetPbtcFridayDuration +sceUserServiceGetPbtcFridayHoursEnd +sceUserServiceGetPbtcFridayHoursStart +sceUserServiceGetPbtcMode +sceUserServiceGetPbtcMondayDuration +sceUserServiceGetPbtcMondayHoursEnd +sceUserServiceGetPbtcMondayHoursStart +sceUserServiceGetPbtcPlayTime +sceUserServiceGetPbtcPlayTimeLastUpdated +sceUserServiceGetPbtcSaturdayDuration +sceUserServiceGetPbtcSaturdayHoursEnd +sceUserServiceGetPbtcSaturdayHoursStart +sceUserServiceGetPbtcSundayDuration +sceUserServiceGetPbtcSundayHoursEnd +sceUserServiceGetPbtcSundayHoursStart +sceUserServiceGetPbtcThursdayDuration +sceUserServiceGetPbtcThursdayHoursEnd +sceUserServiceGetPbtcThursdayHoursStart +sceUserServiceGetPbtcTuesdayDuration +sceUserServiceGetPbtcTuesdayHoursEnd +sceUserServiceGetPbtcTuesdayHoursStart +sceUserServiceGetPbtcTzOffset +sceUserServiceGetPbtcWednesdayDuration +sceUserServiceGetPbtcWednesdayHoursEnd +sceUserServiceGetPbtcWednesdayHoursStart +sceUserServiceGetPlayTogetherFlags +sceUserServiceGetPsnPasswordForDebug +sceUserServiceGetRegisteredHomeUserIdList +sceUserServiceGetRegisteredUserIdList +sceUserServiceGetSaveDataAutoSync +sceUserServiceGetSaveDataAutoUpload +sceUserServiceGetSaveDataSort +sceUserServiceGetSaveDataTutorialFlag +sceUserServiceGetSecureHomeDirectory +sceUserServiceGetShareButtonAssign +sceUserServiceGetShareDailymotionAccessToken +sceUserServiceGetShareDailymotionRefreshToken +sceUserServiceGetSharePlayFlags +sceUserServiceGetSharePlayFramerateHost +sceUserServiceGetSharePlayResolutionHost +sceUserServiceGetShareStatus +sceUserServiceGetShareStatus2 +sceUserServiceGetShareStatus3 +sceUserServiceGetSystemLoggerHashedAccountId +sceUserServiceGetSystemLoggerHashedAccountIdClockType +sceUserServiceGetSystemLoggerHashedAccountIdParam +sceUserServiceGetSystemLoggerHashedAccountIdTtl +sceUserServiceGetTeamShowAboutTeam +sceUserServiceGetThemeBgImageDimmer +sceUserServiceGetThemeBgImageWaveColor +sceUserServiceGetThemeBgImageZoom +sceUserServiceGetThemeEntitlementId +sceUserServiceGetThemeHomeShareOwner +sceUserServiceGetThemeTextShadow +sceUserServiceGetThemeWaveColor +sceUserServiceGetTopMenuLimitItem +sceUserServiceGetTopMenuNotificationFlag +sceUserServiceGetTopMenuTutorialFlag +sceUserServiceGetTraditionalChineseInputType +sceUserServiceGetUserColor +sceUserServiceGetUserGroupName +sceUserServiceGetUserGroupNameList +sceUserServiceGetUserGroupNum +sceUserServiceGetUserIdByNpAccountId +sceUserServiceGetUserName +sceUserServiceGetUserNumber +sceUserServiceGetUserStatus +sceUserServiceGetVibrationEnabled +sceUserServiceGetVoiceAgentEnable +sceUserServiceGetVoiceAgentEnableByButton +sceUserServiceGetVoiceAgentEnableWup +sceUserServiceGetVoiceAgentSessionTimeout +sceUserServiceGetVoiceAgentStatusBitFactory +sceUserServiceGetVoiceAgentTtsSpeed +sceUserServiceGetVoiceRecognitionLastUsedOsk +sceUserServiceGetVoiceRecognitionTutorialState +sceUserServiceGetVolumeForController +sceUserServiceGetVolumeForDs4Speaker +sceUserServiceGetVolumeForGenericUSB +sceUserServiceGetVolumeForMorpheusSidetone +sceUserServiceGetVolumeForOtherDevices +sceUserServiceGetVolumeForSidetone +sceUserServiceInitialize +sceUserServiceInitialize2 +sceUserServiceInitializeForShellCore +sceUserServiceIsGuestUser +sceUserServiceIsKratosPrimaryUser +sceUserServiceIsKratosUser +sceUserServiceIsLoggedIn +sceUserServiceIsLoggedInWithoutLock +sceUserServiceIsSharePlayClientUser +sceUserServiceIsUserStorageAccountBound +sceUserServiceLogin +sceUserServiceLogout +sceUserServiceRegisterEventCallback +sceUserServiceSetAccessibilityKeyremapData +sceUserServiceSetAccessibilityKeyremapEnable +sceUserServiceSetAccessibilityZoom +sceUserServiceSetAccountRemarks +sceUserServiceSetAgeVerified +sceUserServiceSetAppSortOrder +sceUserServiceSetAppearOfflineSetting +sceUserServiceSetAutoLoginEnabled +sceUserServiceSetCaptureStatus +sceUserServiceSetChatStatus +sceUserServiceSetCreatedVersion +sceUserServiceSetDiscPlayerFlag +sceUserServiceSetEventCalendarType +sceUserServiceSetEventFilterTeamEvent +sceUserServiceSetEventSortEvent +sceUserServiceSetEventSortTitle +sceUserServiceSetEventUiFlag +sceUserServiceSetFaceRecognitionDeleteCount +sceUserServiceSetFaceRecognitionRegisterCount +sceUserServiceSetFileBrowserFilter +sceUserServiceSetFileBrowserSortContent +sceUserServiceSetFileBrowserSortTitle +sceUserServiceSetFileSelectorFilter +sceUserServiceSetFileSelectorSortContent +sceUserServiceSetFileSelectorSortTitle +sceUserServiceSetForegroundUser +sceUserServiceSetFriendCustomListLastFocus +sceUserServiceSetFriendFlag +sceUserServiceSetGamePresets +sceUserServiceSetGlsAccessTokenNiconicoLive +sceUserServiceSetGlsAccessTokenTwitch +sceUserServiceSetGlsAccessTokenUstream +sceUserServiceSetGlsAnonymousUserId +sceUserServiceSetGlsBcTags +sceUserServiceSetGlsBcTitle +sceUserServiceSetGlsBroadcastChannel +sceUserServiceSetGlsBroadcastService +sceUserServiceSetGlsBroadcastUiLayout +sceUserServiceSetGlsBroadcastersComment +sceUserServiceSetGlsBroadcastersCommentColor +sceUserServiceSetGlsCamCrop +sceUserServiceSetGlsCameraBgFilter +sceUserServiceSetGlsCameraBrightness +sceUserServiceSetGlsCameraChromaKeyLevel +sceUserServiceSetGlsCameraContrast +sceUserServiceSetGlsCameraDepthLevel +sceUserServiceSetGlsCameraEdgeLevel +sceUserServiceSetGlsCameraEffect +sceUserServiceSetGlsCameraEliminationLevel +sceUserServiceSetGlsCameraPosition +sceUserServiceSetGlsCameraReflection +sceUserServiceSetGlsCameraSize +sceUserServiceSetGlsCameraTransparency +sceUserServiceSetGlsCommunityId +sceUserServiceSetGlsFloatingMessage +sceUserServiceSetGlsHintFlag +sceUserServiceSetGlsInitSpectating +sceUserServiceSetGlsIsCameraHidden +sceUserServiceSetGlsIsFacebookEnabled +sceUserServiceSetGlsIsMuteEnabled +sceUserServiceSetGlsIsRecDisabled +sceUserServiceSetGlsIsRecievedMessageHidden +sceUserServiceSetGlsIsTwitterEnabled +sceUserServiceSetGlsLanguageFilter +sceUserServiceSetGlsLfpsSortOrder +sceUserServiceSetGlsLiveQuality +sceUserServiceSetGlsLiveQuality2 +sceUserServiceSetGlsLiveQuality3 +sceUserServiceSetGlsLiveQuality4 +sceUserServiceSetGlsLiveQuality5 +sceUserServiceSetGlsMessageFilterLevel +sceUserServiceSetGlsOverlayPosition +sceUserServiceSetGlsSortOrder +sceUserServiceSetGlsSortOrderGame +sceUserServiceSetGlsStreamingMode +sceUserServiceSetGlsTtsFlags +sceUserServiceSetGlsTtsPitch +sceUserServiceSetGlsTtsSpeed +sceUserServiceSetGlsTtsVolume +sceUserServiceSetHmuBrightness +sceUserServiceSetHmuZoom +sceUserServiceSetHoldAudioOutDevice +sceUserServiceSetHrtf +sceUserServiceSetIPDLeft +sceUserServiceSetIPDRight +sceUserServiceSetImeAutoCapitalEnabled +sceUserServiceSetImeInitFlag +sceUserServiceSetImeInputType +sceUserServiceSetImeLastUnit +sceUserServiceSetImePointerMode +sceUserServiceSetImePredictiveTextEnabled +sceUserServiceSetImeRunCount +sceUserServiceSetIsFakePlus +sceUserServiceSetIsQuickSignup +sceUserServiceSetIsRemotePlayAllowed +sceUserServiceSetJapaneseInputType +sceUserServiceSetKeyRepeatSpeed +sceUserServiceSetKeyRepeatStartingTime +sceUserServiceSetKeyboardType +sceUserServiceSetLightBarBaseBrightness +sceUserServiceSetLoginFlag +sceUserServiceSetMicLevel +sceUserServiceSetMouseHandType +sceUserServiceSetMousePointerSpeed +sceUserServiceSetNotificationBehavior +sceUserServiceSetNotificationSettings +sceUserServiceSetNotificationSettings2 +sceUserServiceSetNotificationSettings_1 +sceUserServiceSetNotificationSettings_2 +sceUserServiceSetNotificationSettings_3 +sceUserServiceSetNpAccountId +sceUserServiceSetNpAccountUpgradeFlag +sceUserServiceSetNpAge +sceUserServiceSetNpAuthErrorFlag +sceUserServiceSetNpCountryCode +sceUserServiceSetNpDateOfBirth +sceUserServiceSetNpEnv +sceUserServiceSetNpLanguageCode +sceUserServiceSetNpLanguageCode2 +sceUserServiceSetNpLoginId +sceUserServiceSetNpMAccountId +sceUserServiceSetNpNpId +sceUserServiceSetNpOfflineAccountAdult +sceUserServiceSetNpOfflineAccountId +sceUserServiceSetNpOnlineId +sceUserServiceSetNpSubAccount +sceUserServiceSetPadSpeakerVolume +sceUserServiceSetParentalBdAge +sceUserServiceSetParentalBrowser +sceUserServiceSetParentalContentControl +sceUserServiceSetParentalDvd +sceUserServiceSetParentalDvdRegion +sceUserServiceSetParentalGame +sceUserServiceSetParentalGameAgeLevel +sceUserServiceSetParentalGameWhiteList +sceUserServiceSetParentalMorpheus +sceUserServiceSetPartyMuteList +sceUserServiceSetPartyMuteListA +sceUserServiceSetPartySettingFlags +sceUserServiceSetPasscode +sceUserServiceSetPbtcAdditionalTime +sceUserServiceSetPbtcFlag +sceUserServiceSetPbtcFridayDuration +sceUserServiceSetPbtcFridayHoursEnd +sceUserServiceSetPbtcFridayHoursStart +sceUserServiceSetPbtcMode +sceUserServiceSetPbtcMondayDuration +sceUserServiceSetPbtcMondayHoursEnd +sceUserServiceSetPbtcMondayHoursStart +sceUserServiceSetPbtcPlayTime +sceUserServiceSetPbtcPlayTimeLastUpdated +sceUserServiceSetPbtcSaturdayDuration +sceUserServiceSetPbtcSaturdayHoursEnd +sceUserServiceSetPbtcSaturdayHoursStart +sceUserServiceSetPbtcSundayDuration +sceUserServiceSetPbtcSundayHoursEnd +sceUserServiceSetPbtcSundayHoursStart +sceUserServiceSetPbtcThursdayDuration +sceUserServiceSetPbtcThursdayHoursEnd +sceUserServiceSetPbtcThursdayHoursStart +sceUserServiceSetPbtcTuesdayDuration +sceUserServiceSetPbtcTuesdayHoursEnd +sceUserServiceSetPbtcTuesdayHoursStart +sceUserServiceSetPbtcTzOffset +sceUserServiceSetPbtcWednesdayDuration +sceUserServiceSetPbtcWednesdayHoursEnd +sceUserServiceSetPbtcWednesdayHoursStart +sceUserServiceSetPlayTogetherFlags +sceUserServiceSetPsnPasswordForDebug +sceUserServiceSetSaveDataAutoSync +sceUserServiceSetSaveDataAutoUpload +sceUserServiceSetSaveDataSort +sceUserServiceSetSaveDataTutorialFlag +sceUserServiceSetShareButtonAssign +sceUserServiceSetShareDailymotionAccessToken +sceUserServiceSetShareDailymotionRefreshToken +sceUserServiceSetSharePlayFlags +sceUserServiceSetSharePlayFramerateHost +sceUserServiceSetSharePlayResolutionHost +sceUserServiceSetShareStatus +sceUserServiceSetShareStatus2 +sceUserServiceSetShareStatus3 +sceUserServiceSetSystemLoggerHashedAccountId +sceUserServiceSetSystemLoggerHashedAccountIdClockType +sceUserServiceSetSystemLoggerHashedAccountIdParam +sceUserServiceSetSystemLoggerHashedAccountIdTtl +sceUserServiceSetTeamShowAboutTeam +sceUserServiceSetThemeBgImageDimmer +sceUserServiceSetThemeBgImageWaveColor +sceUserServiceSetThemeBgImageZoom +sceUserServiceSetThemeEntitlementId +sceUserServiceSetThemeHomeShareOwner +sceUserServiceSetThemeTextShadow +sceUserServiceSetThemeWaveColor +sceUserServiceSetTopMenuLimitItem +sceUserServiceSetTopMenuNotificationFlag +sceUserServiceSetTopMenuTutorialFlag +sceUserServiceSetTraditionalChineseInputType +sceUserServiceSetUserGroupIndex +sceUserServiceSetUserGroupName +sceUserServiceSetUserName +sceUserServiceSetUserStatus +sceUserServiceSetVibrationEnabled +sceUserServiceSetVoiceRecognitionLastUsedOsk +sceUserServiceSetVoiceRecognitionTutorialState +sceUserServiceSetVolumeForController +sceUserServiceSetVolumeForDs4Speaker +sceUserServiceSetVolumeForGenericUSB +sceUserServiceSetVolumeForMorpheusSidetone +sceUserServiceSetVolumeForOtherDevices +sceUserServiceSetVolumeForSidetone +sceUserServiceTerminate +sceUserServiceTerminateForShellCore +sceUserServiceUnregisterEventCallback +sceValidationGetVersion +sceValidationGpuClearState +sceValidationGpuDisableDiagnostics +sceValidationGpuGetDiagnosticInfo +sceValidationGpuGetDiagnostics +sceValidationGpuGetErrorInfo +sceValidationGpuGetErrors +sceValidationGpuGetVersion +sceValidationGpuInit +sceValidationGpuInitContext +sceValidationGpuOnSubmit +sceValidationGpuOnValidate +sceValidationGpuRegisterInitContext +sceValidationGpuRegisterMemoryCheckCallback +sceValidationGpuValidate +sceVdecCoreAnalyzeStream +sceVdecCoreCreateDecoder +sceVdecCoreCreateDecoderBid +sceVdecCoreCreateDecoderSvp +sceVdecCoreDeleteDecoder +sceVdecCoreFinalizeComputeResource +sceVdecCoreFlushDecodeOutput +sceVdecCoreGetDecodeOutput +sceVdecCoreInitializeComputeResource +sceVdecCoreMapMemory +sceVdecCoreMapMemoryBlock +sceVdecCoreQueryComputeResourceInfo +sceVdecCoreQueryFrameBufferInfo +sceVdecCoreQueryInstanceSize +sceVdecCoreResetDecoder +sceVdecCoreSetDecodeInput +sceVdecCoreSetDecodeInputSvp +sceVdecCoreSetDecodeOutputSw +sceVdecCoreSyncDecode +sceVdecCoreSyncDecodeOutputSw +sceVdecCoreSyncDecodeWptr +sceVdecCoreTrySyncDecode +sceVdecCoreTrySyncDecodeOutputSw +sceVdecCoreTrySyncDecodeWptr +sceVdecswAllocateComputeQueue +sceVdecswCreateDecoder +sceVdecswDeleteDecoder +sceVdecswFinalizeDecodeSequence +sceVdecswFlushDecodeOutput +sceVdecswGetAvcPictureInfo +sceVdecswGetDecodeOutput +sceVdecswGetHevcPictureInfo +sceVdecswGetPictureInfo +sceVdecswGetVp9PictureInfo +sceVdecswQueryComputeMemoryInfo +sceVdecswQueryDecoderMemoryInfo +sceVdecswReleaseComputeQueue +sceVdecswResetDecoder +sceVdecswSetDecodeInput +sceVdecswSetDecodeOutput +sceVdecswSyncDecodeInput +sceVdecswSyncDecodeOutput +sceVdecswTryGetDecodeOutput +sceVdecswTrySyncDecodeInput +sceVdecswTrySyncDecodeOutput +sceVdecwrapCreateDecoder +sceVdecwrapDeleteDecoder +sceVdecwrapFlushDecodeOutput +sceVdecwrapGetDecodeOutput +sceVdecwrapMapDirectMemory +sceVdecwrapMapMemory +sceVdecwrapQueryDecoderMemoryInfo +sceVdecwrapQueryFrameBufferInfo +sceVdecwrapResetDecoder +sceVdecwrapSetDecodeInput +sceVdecwrapSyncDecode +sceVencCoreCreateEncoder +sceVencCoreDeleteEncoder +sceVencCoreGetAuData +sceVencCoreGetPicParams +sceVencCoreMapTargetMemory +sceVencCoreMapTargetMemoryByPid +sceVencCoreQueryHeader +sceVencCoreQueryMemorySize +sceVencCoreQueryMemorySizeEx +sceVencCoreQueryPreset +sceVencCoreQueryPresetEx +sceVencCoreSetBitRate +sceVencCoreSetInputFrame +sceVencCoreSetInputFrameByPid +sceVencCoreSetInvalidFrame +sceVencCoreSetPasteImage +sceVencCoreSetPicParams +sceVencCoreSetPictureType +sceVencCoreSetPrivacyGuard +sceVencCoreStartSequence +sceVencCoreStopSequence +sceVencCoreSyncEncode +sceVencCoreUnmapTargetMemory +sceVencCoreUnmapTargetMemoryByPid +sceVencCreateEncoder +sceVencDeleteEncoder +sceVencGetConfig +sceVencMapMemory +sceVencQueryHeader +sceVencQueryMemorySize +sceVencQueryPreset +sceVencSetConfig +sceVencSetDecodedFrame +sceVencSetPictureConfig +sceVencSetRateControlConfig +sceVencSetReferenceFrameInvalidationConfig +sceVencStartEncode +sceVencStopEncode +sceVideoArbitrationAcceptEvent +sceVideoArbitrationEnable +sceVideoArbitrationInitialize +sceVideoCoreAbortRequest +sceVideoCoreAcquireDecoderResource +sceVideoCoreAcquireDecoderResourceForBeWrapper +sceVideoCoreAddStream +sceVideoCoreAsyncAddStream +sceVideoCoreAsyncSendRequest +sceVideoCoreCancelThumbnail +sceVideoCoreChangeActiveStatus +sceVideoCoreChangeAudioStream +sceVideoCoreChangeDisplaySize +sceVideoCoreChangeDisplayStatus +sceVideoCoreChangeHdcpSetting +sceVideoCoreChangeSubtitle +sceVideoCoreDeleteStream +sceVideoCoreGenerateThumbnail +sceVideoCoreGenerateThumbnail2 +sceVideoCoreGetCanvasHandle +sceVideoCoreGetPlayStatus +sceVideoCoreGetPlayStatus2 +sceVideoCoreGetStreamUid +sceVideoCoreGetThumbnail +sceVideoCoreGetThumbnail2 +sceVideoCoreIfSetFunctionTableUnlimited +sceVideoCoreInterfaceAddVblankEvent +sceVideoCoreInterfaceCloseCanvas +sceVideoCoreInterfaceCloseVideoOut +sceVideoCoreInterfaceCreateCanvasContext +sceVideoCoreInterfaceCreateFrameBufferContext +sceVideoCoreInterfaceDestroyCanvasContext +sceVideoCoreInterfaceDestroyFrameBufferContext +sceVideoCoreInterfaceFinishRendering +sceVideoCoreInterfaceFlushVideoOutBuffer +sceVideoCoreInterfaceGetCanvasVideoBufferAddress +sceVideoCoreInterfaceGetCanvasVideoBufferSize +sceVideoCoreInterfaceGetRenderFrameBuffer +sceVideoCoreInterfaceInitializeInterface +sceVideoCoreInterfaceLoadModule +sceVideoCoreInterfaceMainLoop +sceVideoCoreInterfaceOpenCanvas +sceVideoCoreInterfaceOpenVideoOut +sceVideoCoreInterfaceSetCanvasId +sceVideoCoreInterfaceSetFunctionTable +sceVideoCoreInterfaceSetFunctionTableExt +sceVideoCoreInterfaceSetVideoOutBufferInfo +sceVideoCoreInterfaceSubmitCanvases +sceVideoCoreInterfaceUnloadModule +sceVideoCoreInterfaceWaitCanvasFlip +sceVideoCoreLaunchVideoCore +sceVideoCoreMediaSourceAbortSourceBuffer +sceVideoCoreMediaSourceAddSourceBuffer +sceVideoCoreMediaSourceAppendData +sceVideoCoreMediaSourceEndOfStream +sceVideoCoreMediaSourceGetBufferedTimeRanges +sceVideoCoreMediaSourceGetInputBufferEmptySize +sceVideoCoreMediaSourceGetPlaybackQuality +sceVideoCoreMediaSourceGetSourceBufferEvent +sceVideoCoreMediaSourceRemoveSourceBuffer +sceVideoCoreMediaSourceSetDuration +sceVideoCoreMediaSourceSetTimestampOffset +sceVideoCorePlayControl +sceVideoCoreRegistEventCallback +sceVideoCoreReleaseDecoderResource +sceVideoCoreReleaseDecoderResourceForBeWrapper +sceVideoCoreSetAudioMute +sceVideoCoreSetAudioVolume +sceVideoCoreSetFullScreen +sceVideoCoreSetInitialInfo +sceVideoCoreSetInitializeInfo +sceVideoCoreSetPlaybackRange +sceVideoCoreSetThumbnailInfo +sceVideoCoreSyncAddStream +sceVideoCoreSyncSendRequest +sceVideoCoreUnregistEventCallback +sceVideoDecoderArbitrationAcceptEvent +sceVideoDecoderArbitrationEnable +sceVideoDecoderArbitrationEnableSuspendMode +sceVideoDecoderArbitrationInitialize +sceVideoNativeExtEssential_CreateDecInstance +sceVideoNativeExtEssential_DestroyDecInstance +sceVideoNativeExtEssential_Finalize +sceVideoNativeExtEssential_Initialize +sceVideoNativeExtEssential_IsInit +sceVideoOutAddBuffer +sceVideoOutAddBuffer4k2kPrivilege +sceVideoOutAddBufferAnisoPrivilege +sceVideoOutAddBufferAttributeOption +sceVideoOutAddBufferHdrPrivilege +sceVideoOutAddBufferYccPrivilege +sceVideoOutAddDisplayPositionEvent +sceVideoOutAddDriver +sceVideoOutAddFlipEvent +sceVideoOutAddOutputModeEvent +sceVideoOutAddPreVblankStartEvent +sceVideoOutAddS3dHmdPrivilege +sceVideoOutAddSetModeEvent +sceVideoOutAddStereoBuffer +sceVideoOutAddVblankEvent +sceVideoOutAdjustColor2_ +sceVideoOutAdjustColorSpaceConversion_ +sceVideoOutAdjustColor_ +sceVideoOutAllowOutputResolutionWqhdDetection +sceVideoOutClearFlipMaster +sceVideoOutClose +sceVideoOutColorSettingsSetGamma_ +sceVideoOutColorSpaceConversionSettingsSetDefaultSdrToHdrConversion_ +sceVideoOutColorSpaceConversionSettingsSetSdrToHdrConversion_ +sceVideoOutConfigureLayout +sceVideoOutConfigureOptionsInitialize_ +sceVideoOutConfigureOutput +sceVideoOutConfigureOutputEx +sceVideoOutConfigureOutputModeExSubmitDoneUnsafe_ +sceVideoOutConfigureOutputModeEx_ +sceVideoOutConfigureOutputMode_ +sceVideoOutControlHdcpEncryption +sceVideoOutCursorDisable +sceVideoOutCursorEnable +sceVideoOutCursorIsUpdatePending +sceVideoOutCursorSet2xMagnify +sceVideoOutCursorSetHotSpot +sceVideoOutCursorSetImageAddress +sceVideoOutCursorSetPosition +sceVideoOutCursorSetPositionStereo +sceVideoOutCurveSamplePointsCalc_ +sceVideoOutDebugLatencyMeasureGetLatestLatency +sceVideoOutDeleteDisplayPositionEvent +sceVideoOutDeleteDriver +sceVideoOutDeleteFlipEvent +sceVideoOutDeleteOutputModeEvent +sceVideoOutDeletePreVblankStartEvent +sceVideoOutDeleteSetModeEvent +sceVideoOutDeleteVblankEvent +sceVideoOutDriverAddEvent +sceVideoOutDriverDecrementBufferLabel +sceVideoOutDriverDeleteEvent +sceVideoOutDriverGetBufferLabelAddress +sceVideoOutDriverGetEopHandle +sceVideoOutDriverGetFinishedEopHandle +sceVideoOutDriverGetLatestEopHandle +sceVideoOutDriverIncrementBufferLabel +sceVideoOutDriverResetBufferLabel +sceVideoOutDriverTriggerEvent +sceVideoOutGetBufferInformation +sceVideoOutGetBufferLabelAddress +sceVideoOutGetCoredumpOutputMode +sceVideoOutGetCurrentOutputMode_ +sceVideoOutGetDeviceCapabilityInfo_ +sceVideoOutGetDeviceInfoExOts_ +sceVideoOutGetDeviceInfoEx_ +sceVideoOutGetEventCount +sceVideoOutGetEventData +sceVideoOutGetEventId +sceVideoOutGetFlipStatus +sceVideoOutGetHdmiKsvList_ +sceVideoOutGetHdmiMonitorInfoNoMask_ +sceVideoOutGetHdmiMonitorInfo_ +sceVideoOutGetHdmiRawEdid_ +sceVideoOutGetMonitorInfo +sceVideoOutGetOutputStatus +sceVideoOutGetPortStatusInfo +sceVideoOutGetPortStatusInfoByBusSpecifier_ +sceVideoOutGetPortStatusInfo_ +sceVideoOutGetResolutionStatus +sceVideoOutGetStatusForWebcore +sceVideoOutGetVblankStatus +sceVideoOutGetVideoOutModeByBusSpecifier_ +sceVideoOutHdmiMonitorInfoIsSupportedHdcpVersion +sceVideoOutHdmiMonitorInfoIsSupportedHdcpVersion_ +sceVideoOutHdmiMonitorInfoIsSupportedVideoOutMode_ +sceVideoOutInitializeOutputOptions +sceVideoOutIsFlipPending +sceVideoOutIsOutputSupported +sceVideoOutLatencyControlWaitBeforeInput +sceVideoOutLatencyMeasureSetStartPoint +sceVideoOutLockBuffer +sceVideoOutModeSetAny_ +sceVideoOutOpen +sceVideoOutRazorAddCallback +sceVideoOutRazorRecallCallbacks +sceVideoOutRazorRemoveCallback +sceVideoOutRegisterBufferAttribute +sceVideoOutRegisterBuffers +sceVideoOutRegisterBuffers2 +sceVideoOutRegisterStereoBuffers +sceVideoOutRemoveBuffer +sceVideoOutRemoveBufferAttributeOption +sceVideoOutSetAlphaControl +sceVideoOutSetBlankAfterResume +sceVideoOutSetBufferAttribute +sceVideoOutSetBufferAttribute2 +sceVideoOutSetContentType +sceVideoOutSetDisplayEventPosition +sceVideoOutSetFlipMaster +sceVideoOutSetFlipRate +sceVideoOutSetGamutMetadata_ +sceVideoOutSetGlobalBlendSpace +sceVideoOutSetToneMap_ +sceVideoOutSetWindowModeMargins +sceVideoOutSubmitChangeBufferAttribute +sceVideoOutSubmitChangeBufferAttribute2 +sceVideoOutSubmitEopFlip +sceVideoOutSubmitFlip +sceVideoOutSysAddSetModeEvent +sceVideoOutSysAddSetModeEvent2 +sceVideoOutSysAddVblankEvent +sceVideoOutSysAddVblankEvent2 +sceVideoOutSysClose +sceVideoOutSysConfigureLayout +sceVideoOutSysConfigureOutput +sceVideoOutSysConfigureOutputMode +sceVideoOutSysConfigureOutputMode_ +sceVideoOutSysCursorDisable +sceVideoOutSysCursorEnable +sceVideoOutSysCursorIsUpdatePending +sceVideoOutSysCursorObtain +sceVideoOutSysCursorRelease +sceVideoOutSysCursorSetPosition +sceVideoOutSysDeleteVblankEvent +sceVideoOutSysDeleteVblankEvent2 +sceVideoOutSysGetBus +sceVideoOutSysGetColorConversionStatus +sceVideoOutSysGetCurrentOutputMode +sceVideoOutSysGetCurrentOutputMode_ +sceVideoOutSysGetDeviceCapabilityInfoByBusSpecifier_ +sceVideoOutSysGetDeviceInfo +sceVideoOutSysGetFlipStatus +sceVideoOutSysGetMonitorInfo_ +sceVideoOutSysGetPortStatusInfoByBusSpecifier_ +sceVideoOutSysGetPortStatusInfo_ +sceVideoOutSysGetResolutionStatus +sceVideoOutSysGetResolutionStatus2 +sceVideoOutSysGetVblankStatus +sceVideoOutSysGetVblankStatus2 +sceVideoOutSysGetVideoOutModeByBusSpecifier +sceVideoOutSysHdmiMonitorInfoIsMorpheus +sceVideoOutSysIsModeS3d +sceVideoOutSysIsSupportedByMonitorInfo_ +sceVideoOutSysIsUserStatusSystemDefault +sceVideoOutSysIsUserStatusVr +sceVideoOutSysModeIsSystemDefault +sceVideoOutSysModeIsVr +sceVideoOutSysOpenInternal +sceVideoOutSysReadCrc +sceVideoOutSysReadCrc64 +sceVideoOutSysRemovePrivilege +sceVideoOutSysResetAtGpuReset +sceVideoOutSysResetZoomBuffers +sceVideoOutSysSetBlackLevel +sceVideoOutSysSetDcePipeMode +sceVideoOutSysSetDimmer +sceVideoOutSysSetDimmer2 +sceVideoOutSysSetDisplayParameters +sceVideoOutSysSetHdrMetadata +sceVideoOutSysSetHdrScopeCallbacks +sceVideoOutSysSetInvertedColors +sceVideoOutSysSetOutputCsc +sceVideoOutSysSetOverscanRatio +sceVideoOutSysSetRedirectFlip +sceVideoOutSysSetZoomBuffers +sceVideoOutSysSubmitSubWindowLayout +sceVideoOutSysUpdateDisplayParameter +sceVideoOutSysUpdateDisplayParameter_ +sceVideoOutSysUpdatePrivilege +sceVideoOutSysUpdateRenderingMode +sceVideoOutSysUpdateScalerParameters +sceVideoOutUnlockBuffer +sceVideoOutUnregisterBufferAttribute +sceVideoOutUnregisterBuffers +sceVideoOutVrrPegToFixedRate +sceVideoOutVrrUnpegFromFixedRate +sceVideoOutWaitVblank +sceVideoRecordingClose +sceVideoRecordingCloseByHandle +sceVideoRecordingCopyBGRAtoNV12 +sceVideoRecordingGetInfo +sceVideoRecordingGetInfoByHandle +sceVideoRecordingGetStatus +sceVideoRecordingGetSupportInfo +sceVideoRecordingGetVideoOutMode +sceVideoRecordingInit +sceVideoRecordingInitialize +sceVideoRecordingOpen +sceVideoRecordingOpen2 +sceVideoRecordingQueryHddSize2 +sceVideoRecordingQueryMemSize +sceVideoRecordingQueryMemSize2 +sceVideoRecordingRestModeProcessGetStatus +sceVideoRecordingRestModeProcessStart +sceVideoRecordingSendCommand +sceVideoRecordingSetInfo +sceVideoRecordingStart +sceVideoRecordingStop +sceVideoRecordingTerm +sceVideoStreamingEngineDestroyMediaKeySystemAccess +sceVideoStreamingEngineMediaKeySessionGenerateRequest +sceVideoStreamingEngineMediaKeySessionGetExpiration +sceVideoStreamingEngineMediaKeySessionGetKeyStatuses +sceVideoStreamingEngineMediaKeySessionGetSessionId +sceVideoStreamingEngineMediaKeySessionLoad +sceVideoStreamingEngineMediaKeySessionSetEventHandler +sceVideoStreamingEngineMediaKeySystemAccessCreateMediaKeys +sceVideoStreamingEngineMediaKeySystemAccessDestroyMediaKeys +sceVideoStreamingEngineMediaKeySystemAccessGetKeySystem +sceVideoStreamingEngineMediaKeySystemAccessSetCdmStorageConfig +sceVideoStreamingEngineMediaKeysCreateSession +sceVideodec2AllocateComputeQueue +sceVideodec2CreateDecoder +sceVideodec2CreateDecoderBid +sceVideodec2CreateHevcDecoder +sceVideodec2Decode +sceVideodec2DeleteDecoder +sceVideodec2Flush +sceVideodec2GetAvcPictureInfo +sceVideodec2GetHevcPictureInfo +sceVideodec2GetPictureInfo +sceVideodec2GetVp9PictureInfo +sceVideodec2InitLibrary +sceVideodec2MapDirectMemory +sceVideodec2MapMemory +sceVideodec2QueryComputeMemoryInfo +sceVideodec2QueryDecoderInfo +sceVideodec2QueryDecoderMemoryInfo +sceVideodec2QueryHevcDecoderMemoryInfo +sceVideodec2QueryLibraryInfo +sceVideodec2ReleaseComputeQueue +sceVideodec2Reset +sceVideodec2TermLibrary +sceVideodecCreateDecoder +sceVideodecDecode +sceVideodecDeleteDecoder +sceVideodecFlush +sceVideodecMapMemory +sceVideodecQueryResourceInfo +sceVideodecReset +sceVisionManagerApplyCalibrateHmdResult +sceVisionManagerCancelRequest +sceVisionManagerClose +sceVisionManagerFinalize +sceVisionManagerGenerateRegisterUserData +sceVisionManagerGenerateRegisterUserDataFinalize +sceVisionManagerGenerateRegisterUserDataInitialize +sceVisionManagerGetCalibrateTrackingLedInfo +sceVisionManagerGetCalibrateTrackingLedNecessity +sceVisionManagerGetHitCountOfRegisterUserData +sceVisionManagerGetLibraryVersion +sceVisionManagerGetNumOfRegisterUserDataSlot +sceVisionManagerGetRegisterUserDataSize +sceVisionManagerGetRegisterUserDataVersion +sceVisionManagerGetResultOfCalibrateHmd +sceVisionManagerGetResultOfCalibrateStereoCamera +sceVisionManagerGetResultOfCalibrateTrackingLed +sceVisionManagerGetResultOfFindFace +sceVisionManagerGetResultOfFindPad +sceVisionManagerGetResultOfFindPadCorrespondRegion +sceVisionManagerGetResultOfFindUser +sceVisionManagerGetResultOfFindUserInRegion +sceVisionManagerGetResultOfFindUserWithoutIdentify +sceVisionManagerGetResultOfRegisterUserInRegion +sceVisionManagerGetStoreCameraImgYPtr +sceVisionManagerGetWorkingMemorySize +sceVisionManagerInitialize +sceVisionManagerLoadSettings +sceVisionManagerOpen +sceVisionManagerRegistryClear +sceVisionManagerRequestCalibrateHmd +sceVisionManagerRequestCalibrateStereoCamera +sceVisionManagerRequestCalibrateTrackingLed +sceVisionManagerRequestClose +sceVisionManagerRequestFindFace +sceVisionManagerRequestFindPad +sceVisionManagerRequestFindPadCorrespondRegion +sceVisionManagerRequestFindUser +sceVisionManagerRequestFindUserInRegion +sceVisionManagerRequestFindUserWithoutIdentify +sceVisionManagerRequestHeadDetection +sceVisionManagerRequestInitializeRegisterUserData +sceVisionManagerRequestOpen +sceVisionManagerRequestPadTracking +sceVisionManagerRequestRecogUtility +sceVisionManagerRequestRegisterUserInRegion +sceVisionManagerRequestStoreCameraImgY +sceVisionManagerSetCallbackForUpdateCalibrateHmdResult +sceVisionManagerSetCallbackForUpdateCalibrateStereoCameraResult +sceVisionManagerSetCallbackForUpdateCalibrateTrackingLedResult +sceVisionManagerSetCallbackForUpdateCameraFrame +sceVisionManagerSetCallbackForUpdateCtrlCore +sceVisionManagerSetCallbackForUpdateRecog +sceVisionManagerSetCallbackForUpdateRunningStatus +sceVisionManagerSetCallbackForUpdateStoreFrame +sceVisionManagerWaitResponse +sceVnaCancelDownloadTts +sceVnaCancelTts +sceVnaCheckCallback +sceVnaCloseTtsStream +sceVnaDevideAnalyze +sceVnaDisableAgentGui +sceVnaGenerateTelemetrySessionId +sceVnaGetAgentAvailabilityInfo +sceVnaGetAgentSettings +sceVnaGetEventData +sceVnaGetFeedbackStatus +sceVnaGetKeyPhraseInfo +sceVnaGetMicStatus +sceVnaGetSupportedLanguageInfo +sceVnaGetTtsVolume +sceVnaGetVadState +sceVnaGetVoiceDataCollectionSettingsAsync +sceVnaGetVoiceOskOptInStatus +sceVnaGetWakeupPhraseInfo +sceVnaGetWakeupPhraseInfoCount +sceVnaInitialize +sceVnaInitializeForParty +sceVnaNotify +sceVnaNotifyStatus +sceVnaOpenTtsStream +sceVnaPlaySound +sceVnaPlayTts +sceVnaReadTtsStream +sceVnaRegisterCallback +sceVnaRequestDialogTts +sceVnaRequestDownloadCahcedTts +sceVnaRequestDownloadTts +sceVnaRequestPlayCachedTts +sceVnaRequestTts +sceVnaSendAgentEvent +sceVnaSetAgentIntentSessionTelemetry +sceVnaSetClientStatus +sceVnaSetDucking +sceVnaSetEnableAssistantLegalCheckStatus +sceVnaSetEnableAssistantSettings +sceVnaSetInputDevice +sceVnaSetKeyPhraseCategoryEnable +sceVnaSetLanguageSettings +sceVnaSetLocation +sceVnaSetSessionInfo +sceVnaSetSessionTimeoutSettings +sceVnaSetTtsDuckingLevel +sceVnaSetUmmStatus +sceVnaSetVoiceDataCollectionSettingsAsync +sceVnaSetVoiceOskOptInStatus +sceVnaSetWakeUpPhraseTelemetry +sceVnaSetWakeupPhrase +sceVnaSetupKeyPhraseDetection +sceVnaStartAnalyze +sceVnaStartKeyPhraseDetection +sceVnaStartKeywordDetection +sceVnaStopAnalyze +sceVnaStopKeyPhraseDetection +sceVnaStopKeywordDetection +sceVnaTerminate +sceVnaUnregisterCallback +sceVnaUtilGetSupportedLanguageList +sceVnaUtilGetVoiceInputStatus +sceVnaUtilInitialize +sceVnaUtilIsLanguageSupported +sceVnaWaitReady +sceVoiceChatAbortRequest +sceVoiceChatCreateRequest +sceVoiceChatDeleteRequest +sceVoiceChatGetChannelMemberActiveChannelMatchingState +sceVoiceChatGetChannelMemberVoiceConnectionState +sceVoiceChatGetChatChannelMemberInfoList +sceVoiceChatGetChatGroupMemberInfoList +sceVoiceChatGetMicState +sceVoiceChatInitialize +sceVoiceChatProcessEvent +sceVoiceChatRegisterHandlers +sceVoiceChatRegisterMicEventHandler +sceVoiceChatRequestCreateGameSessionVoiceChatChannel +sceVoiceChatRequestCreatePlayerSessionVoiceChatChannel +sceVoiceChatRequestCreateVoiceChatGroup +sceVoiceChatRequestDeleteGameSessionVoiceChatChannel +sceVoiceChatRequestDeletePlayerSessionVoiceChatChannel +sceVoiceChatRequestDeleteVoiceChatGroup +sceVoiceChatRequestJoinGameSessionVoiceChatChannel +sceVoiceChatRequestJoinPlayerSessionVoiceChatChannel +sceVoiceChatRequestJoinVoiceChatGroup +sceVoiceChatRequestLeaveGameSessionVoiceChatChannel +sceVoiceChatRequestLeavePlayerSessionVoiceChatChannel +sceVoiceChatRequestLeaveVoiceChatGroup +sceVoiceChatRequestRegisterSession +sceVoiceChatRequestUnregisterSession +sceVoiceChatRequestUpdateGameSessionVoiceChatChannelName +sceVoiceChatRequestUpdatePlayerSessionVoiceChatChannelName +sceVoiceChatTerminate +sceVoiceChatUnregisterMicEventHandler +sceVoiceConnectIPortToOPort +sceVoiceCreatePort +sceVoiceDeletePort +sceVoiceDisableChat +sceVoiceDisconnectIPortFromOPort +sceVoiceEnableChat +sceVoiceEnd +sceVoiceGetBitRate +sceVoiceGetMemorySize +sceVoiceGetMuteFlag +sceVoiceGetPortAttr +sceVoiceGetPortInfo +sceVoiceGetResourceInfo +sceVoiceGetVolume +sceVoiceInit +sceVoiceInitHQ +sceVoicePausePort +sceVoicePausePortAll +sceVoiceQoSConnect +sceVoiceQoSCreateLocalEndpoint +sceVoiceQoSCreateRemoteEndpoint +sceVoiceQoSDebugGetStatus +sceVoiceQoSDeleteLocalEndpoint +sceVoiceQoSDeleteRemoteEndpoint +sceVoiceQoSDisableChat +sceVoiceQoSDisconnect +sceVoiceQoSEnableChat +sceVoiceQoSEnd +sceVoiceQoSGetConnectionAttribute +sceVoiceQoSGetLocalEndpoint +sceVoiceQoSGetLocalEndpointAttribute +sceVoiceQoSGetRemoteEndpoint +sceVoiceQoSGetRemoteEndpointAttribute +sceVoiceQoSGetStatus +sceVoiceQoSInit +sceVoiceQoSInitHQ +sceVoiceQoSReadPacket +sceVoiceQoSSetConnectionAttribute +sceVoiceQoSSetLocalEndpointAttribute +sceVoiceQoSSetRemoteEndpointAttribute +sceVoiceQoSWritePacket +sceVoiceReadFromOPort +sceVoiceResetPort +sceVoiceResumePort +sceVoiceResumePortAll +sceVoiceSetBitRate +sceVoiceSetMuteFlag +sceVoiceSetMuteFlagAll +sceVoiceSetThreadsParams +sceVoiceSetVolume +sceVoiceStart +sceVoiceStop +sceVoiceUpdatePort +sceVoiceVADAdjustment +sceVoiceVADPVTAdjustment +sceVoiceVADSetVersion +sceVoiceWriteToIPort +sceVorbisDecBitrate +sceVorbisDecBitrateInstant +sceVorbisDecClear +sceVorbisDecComment +sceVorbisDecCrossLap +sceVorbisDecGetDecodePriority +sceVorbisDecGetLastDecodeError +sceVorbisDecHalfrate +sceVorbisDecHalfrateP +sceVorbisDecInfo +sceVorbisDecOpenCallbacks +sceVorbisDecPcmSeek +sceVorbisDecPcmSeekLap +sceVorbisDecPcmSeekPage +sceVorbisDecPcmSeekPageLap +sceVorbisDecPcmTell +sceVorbisDecPcmTotal +sceVorbisDecRawSeek +sceVorbisDecRawSeekLap +sceVorbisDecRawTell +sceVorbisDecRawTotal +sceVorbisDecRead +sceVorbisDecReadFilter +sceVorbisDecReadFloat +sceVorbisDecSeekable +sceVorbisDecSerialNumber +sceVorbisDecSetDecodePriority +sceVorbisDecStreams +sceVorbisDecTimeSeek +sceVorbisDecTimeSeekLap +sceVorbisDecTimeSeekPage +sceVorbisDecTimeSeekPageLap +sceVorbisDecTimeTell +sceVorbisDecTimeTotal +sceVrServiceDialogClose +sceVrServiceDialogGetResult +sceVrServiceDialogGetStatus +sceVrServiceDialogInitialize +sceVrServiceDialogOpen +sceVrServiceDialogTerminate +sceVrServiceDialogUpdateStatus +sceVrSetupDialogClose +sceVrSetupDialogGetResult +sceVrSetupDialogGetStatus +sceVrSetupDialogInitialize +sceVrSetupDialogOpen +sceVrSetupDialogTerminate +sceVrSetupDialogUpdateStatus +sceVrTracker2CheckDeviceIsInsidePlayAreaBoundary +sceVrTracker2CheckPointIsInsidePlayAreaBoundary +sceVrTracker2Finalize +sceVrTracker2GetControllerImage +sceVrTracker2GetCoordinateSystem +sceVrTracker2GetPlayAreaBoundaryGeometry +sceVrTracker2GetPlayAreaOrientedBoundingBox +sceVrTracker2GetResult +sceVrTracker2Initialize +sceVrTracker2IrGetDebugRawImage +sceVrTracker2LocateCoordinateSystem +sceVrTracker2QueryMemory +sceVrTracker2RegisterDevice +sceVrTracker2ResetLocalCoordinate +sceVrTracker2ResetLocalCoordinateWithPose +sceVrTracker2SetCoordinateSystem +sceVrTracker2UnregisterDevice +sceVrTrackerCpuPopMarker +sceVrTrackerCpuProcess +sceVrTrackerCpuPushMarker +sceVrTrackerDeregisterDevice +sceVrTrackerGetLiveCaptureId +sceVrTrackerGetPlayAreaWarningInfo +sceVrTrackerGetResourceInfo +sceVrTrackerGetResult +sceVrTrackerGetState +sceVrTrackerGetStateRelative +sceVrTrackerGetTime +sceVrTrackerGpuSubmit +sceVrTrackerGpuWait +sceVrTrackerGpuWaitAndCpuProcess +sceVrTrackerInit +sceVrTrackerNotifyEndOfCpuProcess +sceVrTrackerQueryMemory +sceVrTrackerRecalibrate +sceVrTrackerRegisterDevice +sceVrTrackerRegisterDevice2 +sceVrTrackerRegisterDeviceInternal +sceVrTrackerResetAll +sceVrTrackerResetOrientationRelative +sceVrTrackerSaveInternalBuffers +sceVrTrackerSetDeviceRejection +sceVrTrackerSetDurationForStatusNotTracking +sceVrTrackerSetDurationUntilStatusNotTracking +sceVrTrackerSetExtendedMode +sceVrTrackerSetHookFunction +sceVrTrackerSetLEDBrightness +sceVrTrackerSetRestingMode +sceVrTrackerStartLiveCapture +sceVrTrackerStopLiveCapture +sceVrTrackerSubmitCompute +sceVrTrackerTerm +sceVrTrackerUnregisterDevice +sceVrTrackerUpdateMotionSensorData +sceVshAvcapClose +sceVshAvcapCreateSyncer +sceVshAvcapDeleteSyncer +sceVshAvcapGetInfo +sceVshAvcapGetStaticInfo +sceVshAvcapInit +sceVshAvcapOpenAudio +sceVshAvcapOpenAudioEx +sceVshAvcapOpenUserdata +sceVshAvcapOpenVideo +sceVshAvcapOpenVideoEx +sceVshAvcapReadAudio +sceVshAvcapReadUserdata +sceVshAvcapReadVideo +sceVshAvcapSelect +sceVshAvcapSetInfo +sceVshAvcapSetStaticInfo +sceVshAvcapStart +sceVshAvcapStop +sceVshAvcapTerm +sceVshAvcapUpdateSyncer +sceVshctlSetPartyStatus +sceVshctlSetProprietaryChatStatus +sceWebBrowserDialogClose +sceWebBrowserDialogGetEvent +sceWebBrowserDialogGetResult +sceWebBrowserDialogGetStatus +sceWebBrowserDialogInitialize +sceWebBrowserDialogNavigate +sceWebBrowserDialogOpen +sceWebBrowserDialogOpenForPredeterminedContent +sceWebBrowserDialogResetCookie +sceWebBrowserDialogSetCookie +sceWebBrowserDialogSetZoom +sceWebBrowserDialogTerminate +sceWebBrowserDialogUpdateStatus +sceWebInitialize +sceWebTerminate +sceWkFontConfigGetAttr +sceWkFontConfigGetFont +sceWkFontConfigGetFontFromFontName +sceWkFontConfigGetFontName +sceWkFontConfigGetFontPath +sceWorkspaceApplyUpdate +sceWorkspaceApplyUpdateForAllFiles +sceWorkspaceApplyUpdateForDirectory +sceWorkspaceApplyUpdateForFiles +sceWorkspaceGetName +sceWorkspaceGetNumberOfPendingUpdates +sceWorkspaceGetPendingUpdateEntries +sceWorkspaceIsBlockedByDataTransfer +sceWorkspaceIsUpdatePending +sceWorkspaceMirrorBarrier +sceZlibFinalize +sceZlibGetResult +sceZlibInflate +sceZlibInitialize +sceZlibWaitForDone +sce_libc_tls_heap +sce_net_dummy +sce_net_in6addr_any +sce_net_in6addr_linklocal_allnodes +sce_net_in6addr_linklocal_allrouters +sce_net_in6addr_loopback +sce_net_in6addr_nodelocal_allnodes +sce_pa_errno +sce_to_fios_open_params +sched_get_priority_max +sched_get_priority_min +sched_getparam +sched_getscheduler +sched_rr_get_interval +sched_setparam +sched_setscheduler +sched_yield +scin +sdb_breakpoint_trampoline +sdb_breakpoint_trampoline_p +sdb_single_step_trampoline +sdb_single_step_trampoline_p +searchCommInfoListById +searchCommInfoListByKey +searchCommInfoListByKeyAndProtocolNumber +searchCommInfoListByKeyAndProtocolNumberWithActivate +searchCommInfoListByKeyWithActivate +searchCommInfoListByNotKeyButProtocolNumber +searchCommInfoListByProtocolNumber +searchCommInfoListByProtocolNumberWithActivate +searchCommInfoListBySecondaryStream +searchCommInfoListBySock +searchProtocolInfoListByProtocolNumber +searchProtocolInfoListBySock +sec_hand +seed48 +seed48.par0 +seekdir +select +sem_close +sem_destroy +sem_getvalue +sem_init +sem_open +sem_post +sem_reltimedwait_np +sem_setname +sem_timedwait +sem_trywait +sem_unlink +sem_wait +send +sendData +sendMessage +send_descriptor +sendfile +sendmsg +sendto +seqNum +setDecidBootEvf +setReplayModeFlag +setVideoMode +set_constraint_handler_s +set_phys_fmem_limit +setbuf +setcontext +setegid +setenv +setenv_np +seteuid +setgroups +setitimer +setjmp +setlocale +setlogin +setpgid +setpriority +setregid +setreuid +setrlimit +setsid +setsockopt +setstate +settimeofday +setuid +setvbuf +sfnt_module_class +shared_memory_area_alias +shared_memory_area_create +shared_memory_area_map +shm_open +shm_unlink +shmat +shmctl +shmdt +shmget +showCommInfoList +showProtocolInfoList +shutdown +sigaction +sigaddset +sigaltstack +sigblock +sigdelset +sigemptyset +sigfillset +siginterrupt +sigismember +siglongjmp +signal +signalcontext +signgam +significand +significandf +sigpending +sigprocmask +sigqueue +sigreturn +sigsetjmp +sigsetmask +sigsuspend +sigtimedwait +sigvec +sigwait +sigwaitinfo +sin +sincos +sincosf +sinf +sinh +sinhf +sinhl +sinl +sk_num +sk_pop +sk_pop_free +sk_value +sleep +snprintf +snprintf_s +snwprintf_s +socket +socketpair +sorry +sos_memory +sos_memp +spaces +sprintf +sprintf_s +sqlite3_bind_blob +sqlite3_bind_double +sqlite3_bind_int +sqlite3_bind_int64 +sqlite3_bind_null +sqlite3_bind_parameter_count +sqlite3_bind_text +sqlite3_bind_text16 +sqlite3_busy_handler +sqlite3_busy_timeout +sqlite3_changes +sqlite3_clear_bindings +sqlite3_close +sqlite3_column_blob +sqlite3_column_bytes +sqlite3_column_bytes16 +sqlite3_column_decltype +sqlite3_column_double +sqlite3_column_int +sqlite3_column_int64 +sqlite3_column_name +sqlite3_column_name16 +sqlite3_column_text +sqlite3_column_text16 +sqlite3_column_type +sqlite3_column_value +sqlite3_create_collation_v2 +sqlite3_create_function +sqlite3_data_count +sqlite3_db_release_memory +sqlite3_errcode +sqlite3_errmsg +sqlite3_errstr +sqlite3_extended_result_codes +sqlite3_finalize +sqlite3_get_autocommit +sqlite3_initialize +sqlite3_interrupt +sqlite3_last_insert_rowid +sqlite3_next_stmt +sqlite3_open_v2 +sqlite3_prepare_v2 +sqlite3_reset +sqlite3_result_error +sqlite3_set_authorizer +sqlite3_sql +sqlite3_step +sqlite3_stmt_busy +sqlite3_stmt_readonly +sqlite3_total_changes +sqlite3_user_data +sqlite3_value_bytes +sqlite3_value_double +sqlite3_value_text +sqlite3_value_text16 +sqlite3_value_type +sqlite3_wal_checkpoint_v2 +sqlite3_wal_hook +sqrt +sqrtf +sqrtl +sr00 +sr01 +sr02 +sr03 +sr04 +sr05 +sr06 +sr07 +sr08 +sr09 +sr10 +sr11 +srand +srand48 +srandom +srandomdev +ssave +sscanf +sscanf_s +stat +stat_set_DeciFuse +stat_set_FuseDeci +statfs +statvfs +stderr +stdin +stdout +stpcpy +strcasecmp +strcasestr +strcat +strcat_s +strchr +strcmp +strcoll +strcpy +strcpy_s +strcspn +strdup +strerror +strerror_r +strerror_s +strerrorlen_s +strftime +strlcat +strlcpy +strlen +strncasecmp +strncat +strncat_s +strncmp +strncpy +strncpy_s +strndup +strnlen +strnlen_s +strnstr +strpbrk +strrchr +strsep +strspn +strstr +strtod +strtod.fpi +strtod.fpinan +strtof +strtof.fpi0 +strtoimax +strtok +strtok_r +strtok_s +strtol +strtold +strtoll +strtoul +strtoull +strtoumax +strtouq +strxfrm +submitCommandBuffersInternalFunc +swap +swapcontext +swapon +swprintf +swprintf_s +swscanf +swscanf_s +symlink +symlinkat +sync +sysKernelGetIntdevModeForInternalLibc +sysKernelGetIntdevModeForRcmgr +sysKernelGetLowerLimitSysexVersion +sysKernelGetLowerLimitUpdVersion +sysKernelGetManufacturingMode +sysKernelGetUpdVersion +sys_alloc +sys_nsig +sys_siglist +sys_signame +sys_trim +sysarch +sysc_e00 +sysc_m00 +sysc_s00 +syscall +sysconf +sysctl +sysctlbyname +sysctlnametomib +sysinfo +syslog +system +t1_cmap_classes +t1_cmap_custom_class_rec +t1_cmap_expert_class_rec +t1_cmap_standard_class_rec +t1_cmap_unicode_class_rec +t1_driver_class +t1cid_driver_class +t42_driver_class +tan +tanf +tanh +tanhf +tanhl +tanl +tbl +tbuf +tcdrain +tcflow +tcflush +tcgetattr +tcgetpgrp +tcgetsid +tcsendbreak +tcsetattr +tcsetpgrp +tcsetsid +telldir +tenth +terminateWave_Jp +terminate_Jp +tgamma +tgammaf +tgammal +thread_exit_data +throwFileNotFoundException +throw_corlib_exception +throw_corlib_exception_p +throw_exception +throw_exception_p +time +times +timespec_get +timezone +tiny +tinytens +tls_client +tls_close +tls_config_free +tls_config_new +tls_configure +tls_connect +tls_error +tls_free +tls_init +tls_read +tls_term +tls_write +tolow_tab +tolower +toup_tab +toupper +towctrans +towlower +towupper +tr_range_tab +trace +translateErrorCode +trunc +truncate +truncf +truncl +ts +tt_cmap0_class_rec +tt_cmap10_class_rec +tt_cmap12_class_rec +tt_cmap13_class_rec +tt_cmap14_class_rec +tt_cmap2_class_rec +tt_cmap4_class_rec +tt_cmap6_class_rec +tt_cmap8_class_rec +tt_driver_class +two +twom100 +twom1000 +twom10000 +twop52 +twop64 +twop84 +twop84_plus_twop52 +ty_range_tab +tz0 +tz1 +tzname +tzone +tzset +u_UCharsToChars +u_UCharsToChars_67 +u_austrcpy +u_austrcpy_67 +u_austrncpy +u_austrncpy_67 +u_caseInsensitivePrefixMatch +u_caseInsensitivePrefixMatch_67 +u_catclose_67 +u_catgets_67 +u_catopen_67 +u_charAge +u_charAge_67 +u_charDigitValue +u_charDigitValue_67 +u_charDirection +u_charDirection_59 +u_charDirection_67 +u_charFromName +u_charFromName_67 +u_charMirror +u_charMirror_59 +u_charMirror_67 +u_charName +u_charName_67 +u_charType +u_charType_59 +u_charType_67 +u_charsToUChars +u_charsToUChars_67 +u_cleanup +u_cleanup_67 +u_countChar32 +u_countChar32_59 +u_countChar32_67 +u_digit +u_digit_67 +u_enumCharNames +u_enumCharNames_67 +u_enumCharTypes +u_enumCharTypes_67 +u_errorName +u_errorName_59 +u_errorName_67 +u_fadopt_67 +u_fclose_67 +u_feof_67 +u_fflush_67 +u_fgetConverter_67 +u_fgetNumberFormat_67 +u_fgetc_67 +u_fgetcodepage_67 +u_fgetcx_67 +u_fgetfile_67 +u_fgetlocale_67 +u_fgets_67 +u_file_read_67 +u_file_write_67 +u_file_write_flush_67 +u_finit_67 +u_flushDefaultConverter +u_flushDefaultConverter_67 +u_foldCase +u_foldCase_59 +u_foldCase_67 +u_fopen_67 +u_fopen_u_67 +u_forDigit +u_forDigit_67 +u_formatMessageWithError_67 +u_formatMessage_67 +u_fprintf_67 +u_fprintf_u_67 +u_fputc_67 +u_fputs_67 +u_frewind_67 +u_fscanf_67 +u_fscanf_u_67 +u_fsetcodepage_67 +u_fsetlocale_67 +u_fsettransliterator_67 +u_fstropen_67 +u_fungetc_67 +u_getBidiPairedBracket +u_getBidiPairedBracket_67 +u_getBinaryPropertySet +u_getBinaryPropertySet_67 +u_getCombiningClass +u_getCombiningClass_59 +u_getCombiningClass_67 +u_getDataDirectory +u_getDataDirectory_67 +u_getDataVersion_67 +u_getDefaultConverter +u_getDefaultConverter_67 +u_getFC_NFKC_Closure +u_getFC_NFKC_Closure_67 +u_getISOComment +u_getISOComment_67 +u_getIntPropertyMap +u_getIntPropertyMap_67 +u_getIntPropertyMaxValue +u_getIntPropertyMaxValue_67 +u_getIntPropertyMinValue +u_getIntPropertyMinValue_67 +u_getIntPropertyValue +u_getIntPropertyValue_59 +u_getIntPropertyValue_67 +u_getMainProperties_67 +u_getNumericValue +u_getNumericValue_67 +u_getPropertyEnum +u_getPropertyEnum_67 +u_getPropertyName +u_getPropertyName_67 +u_getPropertyValueEnum +u_getPropertyValueEnum_67 +u_getPropertyValueName +u_getPropertyValueName_67 +u_getTimeZoneFilesDirectory +u_getTimeZoneFilesDirectory_67 +u_getUnicodeProperties_67 +u_getUnicodeVersion +u_getUnicodeVersion_67 +u_getVersion +u_getVersion_59 +u_getVersion_67 +u_get_stdout_67 +u_hasBinaryProperty +u_hasBinaryProperty_59 +u_hasBinaryProperty_67 +u_init_67 +u_isIDIgnorable +u_isIDIgnorable_67 +u_isIDPart +u_isIDPart_67 +u_isIDStart +u_isIDStart_67 +u_isISOControl +u_isISOControl_67 +u_isJavaIDPart +u_isJavaIDPart_67 +u_isJavaIDStart +u_isJavaIDStart_67 +u_isJavaSpaceChar +u_isJavaSpaceChar_67 +u_isMirrored +u_isMirrored_67 +u_isUAlphabetic +u_isUAlphabetic_67 +u_isULowercase +u_isULowercase_67 +u_isUUppercase +u_isUUppercase_67 +u_isUWhiteSpace +u_isUWhiteSpace_67 +u_isWhitespace +u_isWhitespace_67 +u_isalnum +u_isalnumPOSIX_67 +u_isalnum_59 +u_isalnum_67 +u_isalpha +u_isalpha_67 +u_isbase +u_isbase_67 +u_isblank +u_isblank_67 +u_iscntrl +u_iscntrl_67 +u_isdefined +u_isdefined_67 +u_isdigit +u_isdigit_67 +u_isgraph +u_isgraphPOSIX_67 +u_isgraph_67 +u_islower +u_islower_67 +u_isprint +u_isprintPOSIX_67 +u_isprint_59 +u_isprint_67 +u_ispunct +u_ispunct_59 +u_ispunct_67 +u_isspace +u_isspace_67 +u_istitle +u_istitle_67 +u_isupper +u_isupper_67 +u_isxdigit +u_isxdigit_67 +u_locbund_close_67 +u_locbund_getNumberFormat_67 +u_locbund_init_67 +u_memcasecmp +u_memcasecmp_67 +u_memchr +u_memchr32 +u_memchr32_67 +u_memchr_67 +u_memcmp +u_memcmpCodePointOrder +u_memcmpCodePointOrder_67 +u_memcmp_67 +u_memcpy +u_memcpy_67 +u_memmove +u_memmove_67 +u_memrchr +u_memrchr32 +u_memrchr32_67 +u_memrchr_67 +u_memset +u_memset_67 +u_parseMessageWithError_67 +u_parseMessage_67 +u_printf_67 +u_printf_parse_67 +u_printf_u_67 +u_releaseDefaultConverter +u_releaseDefaultConverter_67 +u_scanf_parse_67 +u_setAtomicIncDecFunctions +u_setAtomicIncDecFunctions_67 +u_setDataDirectory +u_setDataDirectory_67 +u_setMemoryFunctions +u_setMemoryFunctions_67 +u_setMutexFunctions +u_setMutexFunctions_67 +u_setTimeZoneFilesDirectory +u_setTimeZoneFilesDirectory_67 +u_shapeArabic_67 +u_snprintf_67 +u_snprintf_u_67 +u_sprintf_67 +u_sprintf_u_67 +u_sscanf_67 +u_sscanf_u_67 +u_strCaseCompare +u_strCaseCompare_67 +u_strCompare +u_strCompareIter +u_strCompareIter_67 +u_strCompare_67 +u_strFindFirst +u_strFindFirst_67 +u_strFindLast +u_strFindLast_67 +u_strFoldCase +u_strFoldCase_59 +u_strFoldCase_67 +u_strFromJavaModifiedUTF8WithSub +u_strFromJavaModifiedUTF8WithSub_67 +u_strFromPunycode_67 +u_strFromUTF32 +u_strFromUTF32WithSub +u_strFromUTF32WithSub_67 +u_strFromUTF32_67 +u_strFromUTF8 +u_strFromUTF8Lenient +u_strFromUTF8Lenient_67 +u_strFromUTF8WithSub +u_strFromUTF8WithSub_67 +u_strFromUTF8_67 +u_strFromWCS_67 +u_strHasMoreChar32Than +u_strHasMoreChar32Than_67 +u_strToJavaModifiedUTF8 +u_strToJavaModifiedUTF8_67 +u_strToLower +u_strToLower_59 +u_strToLower_67 +u_strToPunycode_67 +u_strToTitle_67 +u_strToUTF32 +u_strToUTF32WithSub +u_strToUTF32WithSub_67 +u_strToUTF32_59 +u_strToUTF32_67 +u_strToUTF8 +u_strToUTF8WithSub +u_strToUTF8WithSub_67 +u_strToUTF8_67 +u_strToUpper +u_strToUpper_59 +u_strToUpper_67 +u_strToWCS_67 +u_strcasecmp +u_strcasecmp_67 +u_strcat +u_strcat_67 +u_strchr +u_strchr32 +u_strchr32_67 +u_strchr_67 +u_strcmp +u_strcmpCodePointOrder +u_strcmpCodePointOrder_67 +u_strcmpFold_67 +u_strcmp_67 +u_strcpy +u_strcpy_67 +u_strcspn +u_strcspn_67 +u_strlen +u_strlen_67 +u_strncasecmp +u_strncasecmp_67 +u_strncat +u_strncat_67 +u_strncmp +u_strncmpCodePointOrder +u_strncmpCodePointOrder_67 +u_strncmp_67 +u_strncpy +u_strncpy_67 +u_strpbrk +u_strpbrk_67 +u_strrchr +u_strrchr32 +u_strrchr32_67 +u_strrchr_67 +u_strrstr +u_strrstr_67 +u_strspn +u_strspn_67 +u_strstr +u_strstr_67 +u_strtok_r +u_strtok_r_67 +u_terminateChars +u_terminateChars_67 +u_terminateUChar32s +u_terminateUChar32s_67 +u_terminateUChars +u_terminateUChars_67 +u_terminateWChars +u_terminateWChars_67 +u_tolower +u_tolower_59 +u_tolower_67 +u_totitle +u_totitle_59 +u_totitle_67 +u_toupper +u_toupper_59 +u_toupper_67 +u_uastrcpy +u_uastrcpy_67 +u_uastrncpy +u_uastrncpy_67 +u_unescape +u_unescapeAt +u_unescapeAt_67 +u_unescape_67 +u_versionFromString +u_versionFromString_67 +u_versionFromUString +u_versionFromUString_67 +u_versionToString +u_versionToString_67 +u_vformatMessageWithError_67 +u_vformatMessage_67 +u_vfprintf_67 +u_vfprintf_u_67 +u_vfscanf_67 +u_vfscanf_u_67 +u_vparseMessageWithError_67 +u_vparseMessage_67 +u_vsnprintf_67 +u_vsnprintf_u_67 +u_vsprintf_67 +u_vsprintf_u_67 +u_vsscanf_67 +u_vsscanf_u_67 +u_writeIdenticalLevelRun_67 +ubidi_addPropertyStarts_67 +ubidi_close_67 +ubidi_countParagraphs_67 +ubidi_countRuns_67 +ubidi_getBaseDirection_67 +ubidi_getClass +ubidi_getClassCallback_67 +ubidi_getClass_67 +ubidi_getCustomizedClass_67 +ubidi_getDirection_67 +ubidi_getJoiningGroup_67 +ubidi_getJoiningType_67 +ubidi_getLength_67 +ubidi_getLevelAt_67 +ubidi_getLevels_67 +ubidi_getLogicalIndex_67 +ubidi_getLogicalMap_67 +ubidi_getLogicalRun_67 +ubidi_getMaxValue_67 +ubidi_getMemory_67 +ubidi_getMirror_67 +ubidi_getPairedBracketType_67 +ubidi_getPairedBracket_67 +ubidi_getParaLevelAtIndex_67 +ubidi_getParaLevel_67 +ubidi_getParagraphByIndex_67 +ubidi_getParagraph_67 +ubidi_getProcessedLength_67 +ubidi_getReorderingMode_67 +ubidi_getReorderingOptions_67 +ubidi_getResultLength_67 +ubidi_getRuns_67 +ubidi_getText_67 +ubidi_getVisualIndex_67 +ubidi_getVisualMap_67 +ubidi_getVisualRun_67 +ubidi_invertMap_67 +ubidi_isBidiControl_67 +ubidi_isInverse_67 +ubidi_isJoinControl_67 +ubidi_isMirrored_67 +ubidi_isOrderParagraphsLTR_67 +ubidi_openSized_67 +ubidi_open_67 +ubidi_orderParagraphsLTR_67 +ubidi_reorderLogical_67 +ubidi_reorderVisual_67 +ubidi_setClassCallback_67 +ubidi_setContext_67 +ubidi_setInverse_67 +ubidi_setLine_67 +ubidi_setPara_67 +ubidi_setReorderingMode_67 +ubidi_setReorderingOptions_67 +ubidi_writeReordered_67 +ubidi_writeReverse_67 +ubiditransform_close_67 +ubiditransform_open_67 +ubiditransform_transform_67 +ublock_getCode +ublock_getCode_59 +ublock_getCode_67 +ubrk_close +ubrk_close_59 +ubrk_close_67 +ubrk_countAvailable +ubrk_countAvailable_67 +ubrk_current +ubrk_current_59 +ubrk_current_67 +ubrk_first +ubrk_first_59 +ubrk_first_67 +ubrk_following +ubrk_following_59 +ubrk_following_67 +ubrk_getAvailable +ubrk_getAvailable_67 +ubrk_getBinaryRules +ubrk_getBinaryRules_67 +ubrk_getLocaleByType +ubrk_getLocaleByType_67 +ubrk_getRuleStatus +ubrk_getRuleStatusVec +ubrk_getRuleStatusVec_67 +ubrk_getRuleStatus_59 +ubrk_getRuleStatus_67 +ubrk_isBoundary +ubrk_isBoundary_59 +ubrk_isBoundary_67 +ubrk_last +ubrk_last_59 +ubrk_last_67 +ubrk_next +ubrk_next_59 +ubrk_next_67 +ubrk_open +ubrk_openBinaryRules +ubrk_openBinaryRules_67 +ubrk_openRules +ubrk_openRules_67 +ubrk_open_59 +ubrk_open_67 +ubrk_preceding +ubrk_preceding_59 +ubrk_preceding_67 +ubrk_previous +ubrk_previous_59 +ubrk_previous_67 +ubrk_refreshUText +ubrk_refreshUText_67 +ubrk_safeClone +ubrk_safeClone_67 +ubrk_setText +ubrk_setText_59 +ubrk_setText_67 +ubrk_setUText +ubrk_setUText_59 +ubrk_setUText_67 +ubrk_swap +ubrk_swap_67 +ucache_compareKeys_67 +ucache_deleteKey_67 +ucache_hashKeys_67 +ucal_add_67 +ucal_clearField_67 +ucal_clear_67 +ucal_clone_67 +ucal_close_67 +ucal_countAvailable_67 +ucal_equivalentTo_67 +ucal_getAttribute_67 +ucal_getAvailable_67 +ucal_getCanonicalTimeZoneID_59 +ucal_getCanonicalTimeZoneID_67 +ucal_getDSTSavings_67 +ucal_getDayOfWeekType_67 +ucal_getDefaultTimeZone_59 +ucal_getDefaultTimeZone_67 +ucal_getFieldDifference_67 +ucal_getGregorianChange_67 +ucal_getKeywordValuesForLocale_59 +ucal_getKeywordValuesForLocale_67 +ucal_getLimit_67 +ucal_getLocaleByType_67 +ucal_getMillis_67 +ucal_getNow_67 +ucal_getTZDataVersion_67 +ucal_getTimeZoneDisplayName_67 +ucal_getTimeZoneIDForWindowsID_67 +ucal_getTimeZoneID_67 +ucal_getTimeZoneTransitionDate_67 +ucal_getType_67 +ucal_getWeekendTransition_67 +ucal_getWindowsTimeZoneID_67 +ucal_get_67 +ucal_inDaylightTime_67 +ucal_isSet_67 +ucal_isWeekend_67 +ucal_openCountryTimeZones_67 +ucal_openTimeZoneIDEnumeration_67 +ucal_openTimeZones_59 +ucal_openTimeZones_67 +ucal_open_67 +ucal_roll_67 +ucal_setAttribute_67 +ucal_setDateTime_67 +ucal_setDate_67 +ucal_setDefaultTimeZone_67 +ucal_setGregorianChange_59 +ucal_setGregorianChange_67 +ucal_setMillis_67 +ucal_setTimeZone_67 +ucal_set_67 +ucase_addCaseClosure_67 +ucase_addPropertyStarts_67 +ucase_addStringCaseClosure_67 +ucase_fold +ucase_fold_67 +ucase_getCaseLocale_67 +ucase_getTrie_67 +ucase_getType +ucase_getTypeOrIgnorable +ucase_getTypeOrIgnorable_67 +ucase_getType_67 +ucase_hasBinaryProperty_67 +ucase_isCaseSensitive +ucase_isCaseSensitive_67 +ucase_isSoftDotted +ucase_isSoftDotted_67 +ucase_toFullFolding +ucase_toFullFolding_67 +ucase_toFullLower +ucase_toFullLower_67 +ucase_toFullTitle +ucase_toFullTitle_67 +ucase_toFullUpper +ucase_toFullUpper_67 +ucase_tolower +ucase_tolower_67 +ucase_totitle +ucase_totitle_67 +ucase_toupper +ucase_toupper_67 +ucasemap_close_67 +ucasemap_getBreakIterator_67 +ucasemap_getLocale_67 +ucasemap_getOptions_67 +ucasemap_internalUTF8ToTitle_67 +ucasemap_open_67 +ucasemap_setBreakIterator_67 +ucasemap_setLocale_67 +ucasemap_setOptions_67 +ucasemap_toTitle_67 +ucasemap_utf8FoldCase_67 +ucasemap_utf8ToLower_67 +ucasemap_utf8ToTitle_67 +ucasemap_utf8ToUpper_67 +ucfpos_close_67 +ucfpos_constrainCategory_67 +ucfpos_constrainField_67 +ucfpos_getCategory_67 +ucfpos_getField_67 +ucfpos_getIndexes_67 +ucfpos_open_67 +uchar_addPropertyStarts_67 +uchar_swapNames +uchar_swapNames_67 +ucln_cleanupOne +ucln_cleanupOne_67 +ucln_common_registerCleanup_67 +ucln_i18n_registerCleanup_67 +ucln_io_registerCleanup_67 +ucln_lib_cleanup_67 +ucln_registerCleanup +ucln_registerCleanup_67 +ucnv_MBCSFromUChar32_67 +ucnv_MBCSFromUnicodeWithOffsets_67 +ucnv_MBCSGetFilteredUnicodeSetForUnicode_67 +ucnv_MBCSGetType_67 +ucnv_MBCSGetUnicodeSetForUnicode_67 +ucnv_MBCSIsLeadByte_67 +ucnv_MBCSSimpleGetNextUChar_67 +ucnv_MBCSToUnicodeWithOffsets_67 +ucnv_bld_countAvailableConverters_67 +ucnv_bld_getAvailableConverter_67 +ucnv_canCreateConverter_67 +ucnv_cbFromUWriteBytes +ucnv_cbFromUWriteBytes_59 +ucnv_cbFromUWriteBytes_67 +ucnv_cbFromUWriteSub +ucnv_cbFromUWriteSub_67 +ucnv_cbFromUWriteUChars +ucnv_cbFromUWriteUChars_59 +ucnv_cbFromUWriteUChars_67 +ucnv_cbToUWriteSub +ucnv_cbToUWriteSub_67 +ucnv_cbToUWriteUChars +ucnv_cbToUWriteUChars_67 +ucnv_close +ucnv_close_59 +ucnv_close_67 +ucnv_compareNames +ucnv_compareNames_67 +ucnv_convert +ucnv_convertEx +ucnv_convertEx_59 +ucnv_convertEx_67 +ucnv_convert_67 +ucnv_countAliases +ucnv_countAliases_67 +ucnv_countAvailable +ucnv_countAvailable_67 +ucnv_countStandards +ucnv_countStandards_67 +ucnv_createAlgorithmicConverter_67 +ucnv_createConverter +ucnv_createConverterFromPackage_67 +ucnv_createConverterFromSharedData_67 +ucnv_createConverter_67 +ucnv_detectUnicodeSignature +ucnv_detectUnicodeSignature_67 +ucnv_enableCleanup +ucnv_enableCleanup_67 +ucnv_extContinueMatchFromU_67 +ucnv_extContinueMatchToU_67 +ucnv_extGetUnicodeSet_67 +ucnv_extInitialMatchFromU_67 +ucnv_extInitialMatchToU_67 +ucnv_extSimpleMatchFromU_67 +ucnv_extSimpleMatchToU_67 +ucnv_fixFileSeparator +ucnv_fixFileSeparator_67 +ucnv_flushCache +ucnv_flushCache_67 +ucnv_fromAlgorithmic +ucnv_fromAlgorithmic_67 +ucnv_fromUChars +ucnv_fromUChars_67 +ucnv_fromUCountPending +ucnv_fromUCountPending_67 +ucnv_fromUWriteBytes_67 +ucnv_fromUnicode +ucnv_fromUnicode_59 +ucnv_fromUnicode_67 +ucnv_fromUnicode_UTF8_67 +ucnv_fromUnicode_UTF8_OFFSETS_LOGIC_67 +ucnv_getAlias +ucnv_getAlias_67 +ucnv_getAliases +ucnv_getAliases_67 +ucnv_getAvailableName +ucnv_getAvailableName_67 +ucnv_getCCSID +ucnv_getCCSID_67 +ucnv_getCanonicalName +ucnv_getCanonicalName_59 +ucnv_getCanonicalName_67 +ucnv_getCompleteUnicodeSet_67 +ucnv_getDefaultName +ucnv_getDefaultName_67 +ucnv_getDisplayName_67 +ucnv_getFromUCallBack +ucnv_getFromUCallBack_67 +ucnv_getInvalidChars +ucnv_getInvalidChars_67 +ucnv_getInvalidUChars +ucnv_getInvalidUChars_67 +ucnv_getMaxCharSize +ucnv_getMaxCharSize_67 +ucnv_getMinCharSize +ucnv_getMinCharSize_67 +ucnv_getName +ucnv_getName_59 +ucnv_getName_67 +ucnv_getNextUChar +ucnv_getNextUChar_67 +ucnv_getNonSurrogateUnicodeSet_67 +ucnv_getPlatform +ucnv_getPlatform_67 +ucnv_getStandard +ucnv_getStandardName +ucnv_getStandardName_67 +ucnv_getStandard_67 +ucnv_getStarters +ucnv_getStarters_67 +ucnv_getSubstChars +ucnv_getSubstChars_67 +ucnv_getToUCallBack +ucnv_getToUCallBack_67 +ucnv_getType +ucnv_getType_67 +ucnv_getUnicodeSet_67 +ucnv_incrementRefCount_67 +ucnv_io_countKnownConverters +ucnv_io_countKnownConverters_67 +ucnv_io_getConverterName +ucnv_io_getConverterName_67 +ucnv_io_stripASCIIForCompare +ucnv_io_stripASCIIForCompare_67 +ucnv_io_stripEBCDICForCompare +ucnv_io_stripEBCDICForCompare_67 +ucnv_isAmbiguous +ucnv_isAmbiguous_67 +ucnv_isFixedWidth +ucnv_isFixedWidth_67 +ucnv_load +ucnv_loadSharedData_67 +ucnv_load_67 +ucnv_open +ucnv_openAllNames +ucnv_openAllNames_67 +ucnv_openCCSID +ucnv_openCCSID_67 +ucnv_openPackage +ucnv_openPackage_67 +ucnv_openStandardNames +ucnv_openStandardNames_67 +ucnv_openU +ucnv_openU_67 +ucnv_open_59 +ucnv_open_67 +ucnv_reset +ucnv_resetFromUnicode +ucnv_resetFromUnicode_67 +ucnv_resetToUnicode +ucnv_resetToUnicode_67 +ucnv_reset_59 +ucnv_reset_67 +ucnv_safeClone +ucnv_safeClone_67 +ucnv_setDefaultName +ucnv_setDefaultName_67 +ucnv_setFallback +ucnv_setFallback_59 +ucnv_setFallback_67 +ucnv_setFromUCallBack +ucnv_setFromUCallBack_59 +ucnv_setFromUCallBack_67 +ucnv_setSubstChars +ucnv_setSubstChars_59 +ucnv_setSubstChars_67 +ucnv_setSubstString +ucnv_setSubstString_67 +ucnv_setToUCallBack +ucnv_setToUCallBack_59 +ucnv_setToUCallBack_67 +ucnv_swap +ucnv_swapAliases +ucnv_swapAliases_67 +ucnv_swap_67 +ucnv_toAlgorithmic +ucnv_toAlgorithmic_67 +ucnv_toUChars +ucnv_toUChars_67 +ucnv_toUCountPending +ucnv_toUCountPending_67 +ucnv_toUWriteCodePoint_67 +ucnv_toUWriteUChars_67 +ucnv_toUnicode +ucnv_toUnicode_59 +ucnv_toUnicode_67 +ucnv_unload +ucnv_unloadSharedDataIfReady_67 +ucnv_unload_67 +ucnv_usesFallback +ucnv_usesFallback_67 +ucnvsel_close_67 +ucnvsel_openFromSerialized_67 +ucnvsel_open_67 +ucnvsel_selectForString_67 +ucnvsel_selectForUTF8_67 +ucnvsel_serialize_67 +ucol_cloneBinary_67 +ucol_closeElements_67 +ucol_close_59 +ucol_close_67 +ucol_countAvailable_59 +ucol_countAvailable_67 +ucol_equal_67 +ucol_equals_67 +ucol_getAttribute_67 +ucol_getAvailable_59 +ucol_getAvailable_67 +ucol_getBound_67 +ucol_getContractionsAndExpansions_67 +ucol_getContractions_67 +ucol_getDisplayName_67 +ucol_getEquivalentReorderCodes_67 +ucol_getFunctionalEquivalent_67 +ucol_getKeywordValuesForLocale_59 +ucol_getKeywordValuesForLocale_67 +ucol_getKeywordValues_67 +ucol_getKeywords_67 +ucol_getLocaleByType_67 +ucol_getLocale_67 +ucol_getMaxExpansion_67 +ucol_getMaxVariable_67 +ucol_getOffset_67 +ucol_getReorderCodes_67 +ucol_getRulesEx_67 +ucol_getRules_67 +ucol_getShortDefinitionString_67 +ucol_getSortKey_67 +ucol_getStrength_59 +ucol_getStrength_67 +ucol_getTailoredSet_67 +ucol_getUCAVersion_67 +ucol_getUnsafeSet_67 +ucol_getVariableTop_67 +ucol_getVersion_67 +ucol_greaterOrEqual_67 +ucol_greater_67 +ucol_keyHashCode_67 +ucol_looksLikeCollationBinary +ucol_looksLikeCollationBinary_67 +ucol_mergeSortkeys_67 +ucol_nextSortKeyPart_67 +ucol_next_67 +ucol_normalizeShortDefinitionString_67 +ucol_openAvailableLocales_67 +ucol_openBinary_67 +ucol_openElements_67 +ucol_openFromShortString_67 +ucol_openRules_67 +ucol_open_59 +ucol_open_67 +ucol_prepareShortStringOpen_67 +ucol_previous_67 +ucol_primaryOrder_67 +ucol_reset_67 +ucol_restoreVariableTop_67 +ucol_safeClone_67 +ucol_secondaryOrder_67 +ucol_setAttribute_59 +ucol_setAttribute_67 +ucol_setMaxVariable_67 +ucol_setOffset_67 +ucol_setReorderCodes_67 +ucol_setStrength_59 +ucol_setStrength_67 +ucol_setText_67 +ucol_setVariableTop_67 +ucol_strcollIter_59 +ucol_strcollIter_67 +ucol_strcollUTF8_67 +ucol_strcoll_67 +ucol_swap +ucol_swapInverseUCA +ucol_swapInverseUCA_67 +ucol_swap_67 +ucol_tertiaryOrder_67 +ucpmap_get +ucpmap_getRange +ucpmap_getRange_67 +ucpmap_get_67 +ucptrie_close +ucptrie_close_67 +ucptrie_get +ucptrie_getRange +ucptrie_getRange_67 +ucptrie_getType +ucptrie_getType_67 +ucptrie_getValueWidth +ucptrie_getValueWidth_67 +ucptrie_get_67 +ucptrie_internalGetRange_67 +ucptrie_internalSmallIndex +ucptrie_internalSmallIndex_67 +ucptrie_internalSmallU8Index +ucptrie_internalSmallU8Index_67 +ucptrie_internalU8PrevIndex +ucptrie_internalU8PrevIndex_67 +ucptrie_openFromBinary +ucptrie_openFromBinary_67 +ucptrie_swap +ucptrie_swap_67 +ucptrie_toBinary +ucptrie_toBinary_67 +ucsdet_close_59 +ucsdet_close_67 +ucsdet_detectAll_59 +ucsdet_detectAll_67 +ucsdet_detect_67 +ucsdet_enableInputFilter_59 +ucsdet_enableInputFilter_67 +ucsdet_getAllDetectableCharsets_67 +ucsdet_getConfidence_59 +ucsdet_getConfidence_67 +ucsdet_getDetectableCharsets_67 +ucsdet_getLanguage_67 +ucsdet_getName_59 +ucsdet_getName_67 +ucsdet_getUChars_67 +ucsdet_isInputFilterEnabled_67 +ucsdet_open_59 +ucsdet_open_67 +ucsdet_setDeclaredEncoding_67 +ucsdet_setDetectableCharset_67 +ucsdet_setText_59 +ucsdet_setText_67 +ucurr_countCurrencies +ucurr_countCurrencies_67 +ucurr_forLocale +ucurr_forLocaleAndDate +ucurr_forLocaleAndDate_67 +ucurr_forLocale_67 +ucurr_getDefaultFractionDigits +ucurr_getDefaultFractionDigitsForUsage +ucurr_getDefaultFractionDigitsForUsage_67 +ucurr_getDefaultFractionDigits_67 +ucurr_getKeywordValuesForLocale +ucurr_getKeywordValuesForLocale_67 +ucurr_getName +ucurr_getName_67 +ucurr_getNumericCode +ucurr_getNumericCode_67 +ucurr_getPluralName +ucurr_getPluralName_67 +ucurr_getRoundingIncrement +ucurr_getRoundingIncrementForUsage +ucurr_getRoundingIncrementForUsage_67 +ucurr_getRoundingIncrement_67 +ucurr_isAvailable +ucurr_isAvailable_67 +ucurr_openISOCurrencies +ucurr_openISOCurrencies_67 +ucurr_register +ucurr_register_67 +ucurr_unregister +ucurr_unregister_67 +udat_adoptNumberFormatForFields_67 +udat_adoptNumberFormat_67 +udat_applyPatternRelative_67 +udat_applyPattern_67 +udat_clone_67 +udat_close_59 +udat_close_67 +udat_countAvailable_59 +udat_countAvailable_67 +udat_countSymbols_67 +udat_formatCalendarForFields_67 +udat_formatCalendar_67 +udat_formatForFields_59 +udat_formatForFields_67 +udat_format_59 +udat_format_67 +udat_get2DigitYearStart_67 +udat_getAvailable_59 +udat_getAvailable_67 +udat_getBooleanAttribute_67 +udat_getCalendar_59 +udat_getCalendar_67 +udat_getContext_67 +udat_getLocaleByType_67 +udat_getNumberFormatForField_67 +udat_getNumberFormat_67 +udat_getSymbols_67 +udat_isLenient_67 +udat_open_59 +udat_open_67 +udat_parseCalendar_67 +udat_parse_67 +udat_registerOpener_67 +udat_set2DigitYearStart_67 +udat_setBooleanAttribute_67 +udat_setCalendar_67 +udat_setContext_67 +udat_setLenient_67 +udat_setNumberFormat_67 +udat_setSymbols_67 +udat_toCalendarDateField_67 +udat_toPatternRelativeDate_67 +udat_toPatternRelativeTime_67 +udat_toPattern_67 +udat_unregisterOpener_67 +udata_checkCommonData_67 +udata_close +udata_closeSwapper +udata_closeSwapper_67 +udata_close_67 +udata_getHeaderSize_67 +udata_getInfo +udata_getInfoSize_67 +udata_getInfo_67 +udata_getLength +udata_getLength_67 +udata_getMemory +udata_getMemory_67 +udata_getRawMemory +udata_getRawMemory_67 +udata_open +udata_openChoice +udata_openChoice_67 +udata_openSwapper +udata_openSwapperForInputData +udata_openSwapperForInputData_67 +udata_openSwapper_67 +udata_open_67 +udata_printError +udata_printError_67 +udata_readInt16 +udata_readInt16_67 +udata_readInt32 +udata_readInt32_67 +udata_setAppData +udata_setAppData_67 +udata_setCommonData +udata_setCommonData_67 +udata_setFileAccess +udata_setFileAccess_67 +udata_swapDataHeader +udata_swapDataHeader_67 +udata_swapInvStringBlock +udata_swapInvStringBlock_67 +udatpg_addPattern_67 +udatpg_clone_67 +udatpg_close_59 +udatpg_close_67 +udatpg_getAppendItemFormat_67 +udatpg_getAppendItemName_67 +udatpg_getBaseSkeleton_67 +udatpg_getBestPatternWithOptions_67 +udatpg_getBestPattern_59 +udatpg_getBestPattern_67 +udatpg_getDateTimeFormat_67 +udatpg_getDecimal_67 +udatpg_getFieldDisplayName_67 +udatpg_getPatternForSkeleton_67 +udatpg_getSkeleton_67 +udatpg_openBaseSkeletons_67 +udatpg_openEmpty_67 +udatpg_openSkeletons_67 +udatpg_open_59 +udatpg_open_67 +udatpg_replaceFieldTypesWithOptions_67 +udatpg_replaceFieldTypes_67 +udatpg_setAppendItemFormat_67 +udatpg_setAppendItemName_67 +udatpg_setDateTimeFormat_67 +udatpg_setDecimal_67 +udict_swap +udict_swap_67 +udigs +udtitvfmt_closeResult_67 +udtitvfmt_close_67 +udtitvfmt_formatCalendarToResult_67 +udtitvfmt_formatToResult_67 +udtitvfmt_format_67 +udtitvfmt_openResult_67 +udtitvfmt_open_67 +udtitvfmt_resultAsValue_67 +uenum_close +uenum_close_59 +uenum_close_67 +uenum_count +uenum_count_67 +uenum_next +uenum_nextDefault +uenum_nextDefault_67 +uenum_next_59 +uenum_next_67 +uenum_openCharStringsEnumeration +uenum_openCharStringsEnumeration_67 +uenum_openFromStringEnumeration +uenum_openFromStringEnumeration_67 +uenum_openUCharStringsEnumeration +uenum_openUCharStringsEnumeration_67 +uenum_reset +uenum_reset_67 +uenum_unext +uenum_unextDefault +uenum_unextDefault_67 +uenum_unext_59 +uenum_unext_67 +ufieldpositer_close_59 +ufieldpositer_close_67 +ufieldpositer_next_59 +ufieldpositer_next_67 +ufieldpositer_open_59 +ufieldpositer_open_67 +ufile_getch32_67 +ufile_getch_67 +ufmt_close_67 +ufmt_getArrayItemByIndex_67 +ufmt_getArrayLength_67 +ufmt_getDate_67 +ufmt_getDecNumChars_67 +ufmt_getDouble_67 +ufmt_getInt64_67 +ufmt_getLong_67 +ufmt_getObject_67 +ufmt_getType_67 +ufmt_getUChars_67 +ufmt_isNumeric_67 +ufmt_open_67 +ufmtval_getString_67 +ufmtval_nextPosition_67 +ugender_getInstance_67 +ugender_getListGender_67 +uhash_close +uhash_close_67 +uhash_compareCaselessUnicodeString +uhash_compareCaselessUnicodeString_67 +uhash_compareChars +uhash_compareChars_67 +uhash_compareIChars +uhash_compareIChars_67 +uhash_compareLong +uhash_compareLong_67 +uhash_compareScriptSet_67 +uhash_compareUChars +uhash_compareUChars_67 +uhash_compareUnicodeString +uhash_compareUnicodeString_67 +uhash_count +uhash_count_67 +uhash_deleteHashtable +uhash_deleteHashtable_67 +uhash_deleteScriptSet_67 +uhash_equals +uhash_equalsScriptSet_67 +uhash_equals_67 +uhash_find +uhash_find_67 +uhash_get +uhash_get_67 +uhash_geti +uhash_geti_67 +uhash_hashCaselessUnicodeString +uhash_hashCaselessUnicodeString_67 +uhash_hashChars +uhash_hashChars_67 +uhash_hashIChars +uhash_hashIChars_67 +uhash_hashLong +uhash_hashLong_67 +uhash_hashScriptSet_67 +uhash_hashUChars +uhash_hashUChars_67 +uhash_hashUnicodeString +uhash_hashUnicodeString_67 +uhash_iget +uhash_iget_67 +uhash_igeti +uhash_igeti_67 +uhash_init +uhash_initSize +uhash_initSize_67 +uhash_init_67 +uhash_iput +uhash_iput_67 +uhash_iputi +uhash_iputi_67 +uhash_iremove +uhash_iremove_67 +uhash_iremovei +uhash_iremovei_67 +uhash_nextElement +uhash_nextElement_67 +uhash_open +uhash_openSize +uhash_openSize_67 +uhash_open_67 +uhash_put +uhash_put_67 +uhash_puti +uhash_puti_67 +uhash_remove +uhash_removeAll +uhash_removeAll_67 +uhash_removeElement +uhash_removeElement_67 +uhash_remove_67 +uhash_removei +uhash_removei_67 +uhash_setKeyComparator +uhash_setKeyComparator_67 +uhash_setKeyDeleter +uhash_setKeyDeleter_67 +uhash_setKeyHasher +uhash_setKeyHasher_67 +uhash_setResizePolicy +uhash_setResizePolicy_67 +uhash_setValueComparator +uhash_setValueComparator_67 +uhash_setValueDeleter +uhash_setValueDeleter_67 +uidna_IDNToASCII_67 +uidna_IDNToUnicode_67 +uidna_close_67 +uidna_compare_67 +uidna_labelToASCII_67 +uidna_labelToASCII_UTF8_67 +uidna_labelToUnicodeUTF8_67 +uidna_labelToUnicode_67 +uidna_nameToASCII_59 +uidna_nameToASCII_67 +uidna_nameToASCII_UTF8_67 +uidna_nameToUnicodeUTF8_67 +uidna_nameToUnicode_67 +uidna_openUTS46_59 +uidna_openUTS46_67 +uidna_toASCII_67 +uidna_toUnicode_67 +uiter_current32_67 +uiter_getState_67 +uiter_next32_67 +uiter_previous32_67 +uiter_setCharacterIterator_67 +uiter_setReplaceable_67 +uiter_setState_67 +uiter_setString_59 +uiter_setString_67 +uiter_setUTF16BE_67 +uiter_setUTF8_59 +uiter_setUTF8_67 +uldn_close_67 +uldn_getContext_67 +uldn_getDialectHandling_67 +uldn_getLocale_67 +uldn_keyDisplayName_67 +uldn_keyValueDisplayName_67 +uldn_languageDisplayName_67 +uldn_localeDisplayName_67 +uldn_openForContext_67 +uldn_open_67 +uldn_regionDisplayName_67 +uldn_scriptCodeDisplayName_67 +uldn_scriptDisplayName_67 +uldn_variantDisplayName_67 +ulist_addItemBeginList +ulist_addItemBeginList_67 +ulist_addItemEndList +ulist_addItemEndList_67 +ulist_close_keyword_values_iterator +ulist_close_keyword_values_iterator_67 +ulist_containsString +ulist_containsString_67 +ulist_count_keyword_values +ulist_count_keyword_values_67 +ulist_createEmptyList +ulist_createEmptyList_67 +ulist_deleteList +ulist_deleteList_67 +ulist_getListFromEnum +ulist_getListFromEnum_67 +ulist_getListSize +ulist_getListSize_67 +ulist_getNext +ulist_getNext_67 +ulist_next_keyword_value +ulist_next_keyword_value_67 +ulist_removeString +ulist_removeString_67 +ulist_resetList +ulist_resetList_67 +ulist_reset_keyword_values_iterator +ulist_reset_keyword_values_iterator_67 +ulistfmt_closeResult_67 +ulistfmt_close_67 +ulistfmt_formatStringsToResult_67 +ulistfmt_format_67 +ulistfmt_openForType_67 +ulistfmt_openResult_67 +ulistfmt_open_67 +ulistfmt_resultAsValue_67 +uloc_acceptLanguageFromHTTP_67 +uloc_acceptLanguage_67 +uloc_addLikelySubtags +uloc_addLikelySubtags_67 +uloc_canonicalize +uloc_canonicalize_67 +uloc_countAvailable +uloc_countAvailable_59 +uloc_countAvailable_67 +uloc_forLanguageTag +uloc_forLanguageTag_67 +uloc_getAvailable +uloc_getAvailable_59 +uloc_getAvailable_67 +uloc_getBaseName +uloc_getBaseName_67 +uloc_getCharacterOrientation +uloc_getCharacterOrientation_67 +uloc_getCountry +uloc_getCountry_67 +uloc_getCurrentCountryID_67 +uloc_getCurrentLanguageID_67 +uloc_getDefault +uloc_getDefault_59 +uloc_getDefault_67 +uloc_getDisplayCountry +uloc_getDisplayCountry_67 +uloc_getDisplayKeyword +uloc_getDisplayKeywordValue +uloc_getDisplayKeywordValue_67 +uloc_getDisplayKeyword_67 +uloc_getDisplayLanguage +uloc_getDisplayLanguage_67 +uloc_getDisplayName +uloc_getDisplayName_67 +uloc_getDisplayScript +uloc_getDisplayScriptInContext_67 +uloc_getDisplayScript_67 +uloc_getDisplayVariant +uloc_getDisplayVariant_67 +uloc_getISO3Country +uloc_getISO3Country_67 +uloc_getISO3Language +uloc_getISO3Language_67 +uloc_getISOCountries +uloc_getISOCountries_67 +uloc_getISOLanguages +uloc_getISOLanguages_67 +uloc_getKeywordValue +uloc_getKeywordValue_67 +uloc_getLCID +uloc_getLCID_67 +uloc_getLanguage +uloc_getLanguage_67 +uloc_getLineOrientation +uloc_getLineOrientation_67 +uloc_getLocaleForLCID +uloc_getLocaleForLCID_67 +uloc_getName +uloc_getName_67 +uloc_getParent +uloc_getParent_67 +uloc_getScript +uloc_getScript_67 +uloc_getTableStringWithFallback +uloc_getTableStringWithFallback_67 +uloc_getVariant +uloc_getVariant_67 +uloc_isRightToLeft +uloc_isRightToLeft_67 +uloc_minimizeSubtags +uloc_minimizeSubtags_67 +uloc_openAvailableByType +uloc_openKeywordList +uloc_openKeywordList_67 +uloc_openKeywords +uloc_openKeywords_67 +uloc_setDefault +uloc_setDefault_67 +uloc_setKeywordValue +uloc_setKeywordValue_59 +uloc_setKeywordValue_67 +uloc_toLanguageTag +uloc_toLanguageTag_67 +uloc_toLegacyKey +uloc_toLegacyKey_67 +uloc_toLegacyType +uloc_toLegacyType_67 +uloc_toUnicodeLocaleKey +uloc_toUnicodeLocaleKey_67 +uloc_toUnicodeLocaleType +uloc_toUnicodeLocaleType_67 +ulocdata_close_67 +ulocdata_getCLDRVersion_67 +ulocdata_getDelimiter_67 +ulocdata_getExemplarSet_67 +ulocdata_getLocaleDisplayPattern_67 +ulocdata_getLocaleSeparator_67 +ulocdata_getMeasurementSystem_67 +ulocdata_getNoSubstitute_67 +ulocdata_getPaperSize_67 +ulocdata_open_67 +ulocdata_setNoSubstitute_67 +ulocimp_addLikelySubtags +ulocimp_canonicalize +ulocimp_forLanguageTag +ulocimp_forLanguageTag_67 +ulocimp_getCountry_67 +ulocimp_getLanguage_67 +ulocimp_getName +ulocimp_getRegionForSupplementalData +ulocimp_getRegionForSupplementalData_67 +ulocimp_getScript_67 +ulocimp_minimizeSubtags +ulocimp_toBcpKey_67 +ulocimp_toBcpType_67 +ulocimp_toLanguageTag +ulocimp_toLegacyKey_67 +ulocimp_toLegacyType_67 +ulpFinal +ulpInit +ultag_isUnicodeLocaleKey_67 +ultag_isUnicodeLocaleType_67 +umask +umsg_applyPattern_67 +umsg_autoQuoteApostrophe_67 +umsg_clone_67 +umsg_close_67 +umsg_format_67 +umsg_getLocale_67 +umsg_open_67 +umsg_parse_67 +umsg_setLocale_67 +umsg_toPattern_67 +umsg_vformat_67 +umsg_vparse_67 +umtx_lock +umtx_lock_67 +umtx_unlock +umtx_unlock_67 +umutablecptrie_buildImmutable +umutablecptrie_buildImmutable_67 +umutablecptrie_clone +umutablecptrie_clone_67 +umutablecptrie_close +umutablecptrie_close_67 +umutablecptrie_fromUCPMap +umutablecptrie_fromUCPMap_67 +umutablecptrie_fromUCPTrie +umutablecptrie_fromUCPTrie_67 +umutablecptrie_get +umutablecptrie_getRange +umutablecptrie_getRange_67 +umutablecptrie_get_67 +umutablecptrie_open +umutablecptrie_open_67 +umutablecptrie_set +umutablecptrie_setRange +umutablecptrie_setRange_67 +umutablecptrie_set_67 +unbox_trampoline_p +uncompress +ungetc +ungetwc +uniset_getUnicode32Instance_67 +unity_mono_set_user_malloc_mutex +unlink +unlink_large_large_chunk +unlinkat +unmount +unorm2_append +unorm2_append_67 +unorm2_close +unorm2_close_67 +unorm2_composePair +unorm2_composePair_59 +unorm2_composePair_67 +unorm2_getCombiningClass +unorm2_getCombiningClass_67 +unorm2_getDecomposition +unorm2_getDecomposition_67 +unorm2_getInstance +unorm2_getInstance_67 +unorm2_getNFCInstance +unorm2_getNFCInstance_59 +unorm2_getNFCInstance_67 +unorm2_getNFDInstance +unorm2_getNFDInstance_59 +unorm2_getNFDInstance_67 +unorm2_getNFKCCasefoldInstance +unorm2_getNFKCCasefoldInstance_67 +unorm2_getNFKCInstance +unorm2_getNFKCInstance_59 +unorm2_getNFKCInstance_67 +unorm2_getNFKDInstance +unorm2_getNFKDInstance_59 +unorm2_getNFKDInstance_67 +unorm2_getRawDecomposition +unorm2_getRawDecomposition_59 +unorm2_getRawDecomposition_67 +unorm2_hasBoundaryAfter +unorm2_hasBoundaryAfter_67 +unorm2_hasBoundaryBefore +unorm2_hasBoundaryBefore_67 +unorm2_isInert +unorm2_isInert_67 +unorm2_isNormalized +unorm2_isNormalized_67 +unorm2_normalize +unorm2_normalizeSecondAndAppend +unorm2_normalizeSecondAndAppend_67 +unorm2_normalize_59 +unorm2_normalize_67 +unorm2_openFiltered +unorm2_openFiltered_67 +unorm2_quickCheck +unorm2_quickCheck_67 +unorm2_spanQuickCheckYes +unorm2_spanQuickCheckYes_67 +unorm2_swap +unorm2_swap_67 +unorm_compare +unorm_compare_67 +unorm_concatenate_67 +unorm_getFCD16_67 +unorm_getQuickCheck_67 +unorm_isNormalizedWithOptions_67 +unorm_isNormalized_67 +unorm_next_67 +unorm_normalize_59 +unorm_normalize_67 +unorm_previous_67 +unorm_quickCheckWithOptions_67 +unorm_quickCheck_59 +unorm_quickCheck_67 +unsetenv +unum_applyPattern_67 +unum_clone_67 +unum_close_59 +unum_close_67 +unum_countAvailable_59 +unum_countAvailable_67 +unum_formatDecimal_67 +unum_formatDoubleCurrency_67 +unum_formatDoubleForFields_59 +unum_formatDoubleForFields_67 +unum_formatDouble_59 +unum_formatDouble_67 +unum_formatInt64_67 +unum_formatUFormattable_67 +unum_format_67 +unum_getAttribute_67 +unum_getAvailable_59 +unum_getAvailable_67 +unum_getContext_67 +unum_getDoubleAttribute_67 +unum_getLocaleByType_67 +unum_getSymbol_59 +unum_getSymbol_67 +unum_getTextAttribute_59 +unum_getTextAttribute_67 +unum_open_59 +unum_open_67 +unum_parseDecimal_67 +unum_parseDoubleCurrency_67 +unum_parseDouble_67 +unum_parseInt64_67 +unum_parseToUFormattable_67 +unum_parse_67 +unum_setAttribute_59 +unum_setAttribute_67 +unum_setContext_67 +unum_setDoubleAttribute_67 +unum_setSymbol_67 +unum_setTextAttribute_59 +unum_setTextAttribute_67 +unum_toPattern_67 +unumf_closeResult_67 +unumf_close_67 +unumf_formatDecimal_67 +unumf_formatDouble_67 +unumf_formatInt_67 +unumf_openForSkeletonAndLocale_67 +unumf_openResult_67 +unumf_resultGetAllFieldPositions_67 +unumf_resultNextFieldPosition_67 +unumf_resultToString_67 +unumsys_close_59 +unumsys_close_67 +unumsys_getDescription_67 +unumsys_getName_59 +unumsys_getName_67 +unumsys_getRadix_67 +unumsys_isAlgorithmic_59 +unumsys_isAlgorithmic_67 +unumsys_openAvailableNames_59 +unumsys_openAvailableNames_67 +unumsys_openByName_59 +unumsys_openByName_67 +unumsys_open_59 +unumsys_open_67 +unw_backtrace +updatePacketSize +uplrules_close_59 +uplrules_close_67 +uplrules_getKeywords_59 +uplrules_getKeywords_67 +uplrules_openForType_59 +uplrules_openForType_67 +uplrules_open_67 +uplrules_selectWithFormat_59 +uplrules_selectWithFormat_67 +uplrules_select_67 +uprops_addPropertyStarts_67 +uprops_getSource_67 +upropsvec_addPropertyStarts_67 +uprv_add32_overflow +uprv_add32_overflow_67 +uprv_aestrncpy +uprv_aestrncpy_67 +uprv_asciiFromEbcdic_67 +uprv_asciitolower +uprv_asciitolower_67 +uprv_calloc +uprv_calloc_67 +uprv_ceil +uprv_ceil_67 +uprv_compareASCIIPropertyNames +uprv_compareASCIIPropertyNames_67 +uprv_compareEBCDICPropertyNames +uprv_compareEBCDICPropertyNames_67 +uprv_compareInvAscii_67 +uprv_compareInvEbcdicAsAscii +uprv_compareInvEbcdicAsAscii_67 +uprv_compareInvEbcdic_67 +uprv_convertToLCID +uprv_convertToLCIDPlatform +uprv_convertToLCIDPlatform_67 +uprv_convertToLCID_67 +uprv_convertToPosix +uprv_convertToPosix_67 +uprv_copyAscii_67 +uprv_copyEbcdic_67 +uprv_decContextClearStatus_67 +uprv_decContextDefault_67 +uprv_decContextGetRounding_67 +uprv_decContextGetStatus_67 +uprv_decContextRestoreStatus_67 +uprv_decContextSaveStatus_67 +uprv_decContextSetRounding_67 +uprv_decContextSetStatusFromStringQuiet_67 +uprv_decContextSetStatusFromString_67 +uprv_decContextSetStatusQuiet_67 +uprv_decContextSetStatus_67 +uprv_decContextStatusToString_67 +uprv_decContextTestSavedStatus_67 +uprv_decContextTestStatus_67 +uprv_decContextZeroStatus_67 +uprv_decNumberAbs_67 +uprv_decNumberAdd_67 +uprv_decNumberAnd_67 +uprv_decNumberClassToString_67 +uprv_decNumberCompareSignal_67 +uprv_decNumberCompareTotalMag_67 +uprv_decNumberCompareTotal_67 +uprv_decNumberCompare_67 +uprv_decNumberCopyAbs_67 +uprv_decNumberCopyNegate_67 +uprv_decNumberCopySign_67 +uprv_decNumberCopy_67 +uprv_decNumberDivideInteger_67 +uprv_decNumberDivide_67 +uprv_decNumberExp_67 +uprv_decNumberFMA_67 +uprv_decNumberFromInt32_67 +uprv_decNumberFromString_67 +uprv_decNumberFromUInt32_67 +uprv_decNumberGetBCD_67 +uprv_decNumberInvert_67 +uprv_decNumberIsNormal_67 +uprv_decNumberIsSubnormal_67 +uprv_decNumberLn_67 +uprv_decNumberLog10_67 +uprv_decNumberLogB_67 +uprv_decNumberMaxMag_67 +uprv_decNumberMax_67 +uprv_decNumberMinMag_67 +uprv_decNumberMin_67 +uprv_decNumberMinus_67 +uprv_decNumberMultiply_67 +uprv_decNumberNextMinus_67 +uprv_decNumberNextPlus_67 +uprv_decNumberNextToward_67 +uprv_decNumberNormalize_67 +uprv_decNumberOr_67 +uprv_decNumberPlus_67 +uprv_decNumberPower_67 +uprv_decNumberQuantize_67 +uprv_decNumberReduce_67 +uprv_decNumberRemainderNear_67 +uprv_decNumberRemainder_67 +uprv_decNumberRescale_67 +uprv_decNumberRotate_67 +uprv_decNumberSameQuantum_67 +uprv_decNumberScaleB_67 +uprv_decNumberSetBCD_67 +uprv_decNumberShift_67 +uprv_decNumberSquareRoot_67 +uprv_decNumberSubtract_67 +uprv_decNumberToEngString_67 +uprv_decNumberToInt32_67 +uprv_decNumberToIntegralExact_67 +uprv_decNumberToIntegralValue_67 +uprv_decNumberToString_67 +uprv_decNumberToUInt32_67 +uprv_decNumberTrim_67 +uprv_decNumberVersion_67 +uprv_decNumberXor_67 +uprv_decNumberZero_67 +uprv_deleteConditionalCE32_67 +uprv_deleteUObject +uprv_deleteUObject_67 +uprv_dl_close +uprv_dl_close_67 +uprv_dl_open +uprv_dl_open_67 +uprv_dlsym_func +uprv_dlsym_func_67 +uprv_eastrncpy +uprv_eastrncpy_67 +uprv_ebcdicFromAscii +uprv_ebcdicFromAscii_67 +uprv_ebcdicToAscii +uprv_ebcdicToLowercaseAscii +uprv_ebcdicToLowercaseAscii_67 +uprv_ebcdictolower +uprv_ebcdictolower_67 +uprv_fabs +uprv_fabs_67 +uprv_floor +uprv_floor_67 +uprv_fmax +uprv_fmax_67 +uprv_fmin +uprv_fmin_67 +uprv_fmod +uprv_fmod_67 +uprv_free +uprv_free_67 +uprv_getCharNameCharacters +uprv_getCharNameCharacters_67 +uprv_getDefaultCodepage +uprv_getDefaultLocaleID +uprv_getDefaultLocaleID_67 +uprv_getInfinity +uprv_getInfinity_67 +uprv_getMaxCharNameLength +uprv_getMaxCharNameLength_67 +uprv_getMaxValues_67 +uprv_getNaN +uprv_getNaN_67 +uprv_getRawUTCtime +uprv_getRawUTCtime_67 +uprv_getStaticCurrencyName +uprv_getStaticCurrencyName_67 +uprv_getUTCtime +uprv_getUTCtime_67 +uprv_int32Comparator +uprv_int32Comparator_67 +uprv_isASCIILetter +uprv_isASCIILetter_67 +uprv_isInfinite +uprv_isInfinite_67 +uprv_isInvariantString +uprv_isInvariantString_67 +uprv_isInvariantUString +uprv_isInvariantUString_67 +uprv_isNaN +uprv_isNaN_67 +uprv_isNegativeInfinity +uprv_isNegativeInfinity_67 +uprv_isPositiveInfinity +uprv_isPositiveInfinity_67 +uprv_itou +uprv_itou_67 +uprv_log +uprv_log_67 +uprv_malloc +uprv_malloc_67 +uprv_mapFile_67 +uprv_max +uprv_maxMantissa +uprv_maxMantissa_67 +uprv_max_67 +uprv_maximumPtr +uprv_maximumPtr_67 +uprv_min +uprv_min_67 +uprv_modf +uprv_modf_67 +uprv_mul32_overflow +uprv_mul32_overflow_67 +uprv_parseCurrency +uprv_parseCurrency_67 +uprv_pathIsAbsolute +uprv_pathIsAbsolute_67 +uprv_pow +uprv_pow10 +uprv_pow10_67 +uprv_pow_67 +uprv_realloc +uprv_realloc_67 +uprv_round +uprv_round_67 +uprv_sortArray +uprv_sortArray_67 +uprv_stableBinarySearch +uprv_stableBinarySearch_67 +uprv_strCompare_67 +uprv_strdup +uprv_strdup_67 +uprv_stricmp +uprv_stricmp_67 +uprv_strndup +uprv_strndup_67 +uprv_strnicmp +uprv_strnicmp_67 +uprv_syntaxError_67 +uprv_timezone +uprv_timezone_67 +uprv_toupper +uprv_toupper_67 +uprv_trunc +uprv_trunc_67 +uprv_tzname +uprv_tzname_67 +uprv_tzname_clear_cache +uprv_tzname_clear_cache_67 +uprv_tzset +uprv_tzset_67 +uprv_uint16Comparator +uprv_uint16Comparator_67 +uprv_uint32Comparator +uprv_uint32Comparator_67 +uprv_unmapFile_67 +upvec_cloneArray_67 +upvec_close_67 +upvec_compactToUTrie2Handler_67 +upvec_compactToUTrie2WithRowIndexes_67 +upvec_compact_67 +upvec_getArray_67 +upvec_getRow_67 +upvec_getValue_67 +upvec_open_67 +upvec_setValue_67 +uregex_appendReplacementUText_67 +uregex_appendReplacement_67 +uregex_appendTailUText_67 +uregex_appendTail_67 +uregex_clone_67 +uregex_close_67 +uregex_end64_67 +uregex_end_67 +uregex_find64_67 +uregex_findNext_67 +uregex_find_67 +uregex_flags_67 +uregex_getFindProgressCallback_67 +uregex_getMatchCallback_67 +uregex_getStackLimit_67 +uregex_getText_67 +uregex_getTimeLimit_67 +uregex_getUText_67 +uregex_groupCount_67 +uregex_groupNumberFromCName_67 +uregex_groupNumberFromName_67 +uregex_groupUText_67 +uregex_group_67 +uregex_hasAnchoringBounds_67 +uregex_hasTransparentBounds_67 +uregex_hitEnd_67 +uregex_lookingAt64_67 +uregex_lookingAt_67 +uregex_matches64_67 +uregex_matches_67 +uregex_openC_67 +uregex_openUText_67 +uregex_open_67 +uregex_patternUText_67 +uregex_pattern_67 +uregex_refreshUText_67 +uregex_regionEnd64_67 +uregex_regionEnd_67 +uregex_regionStart64_67 +uregex_regionStart_67 +uregex_replaceAllUText_67 +uregex_replaceAll_67 +uregex_replaceFirstUText_67 +uregex_replaceFirst_67 +uregex_requireEnd_67 +uregex_reset64_67 +uregex_reset_67 +uregex_setFindProgressCallback_67 +uregex_setMatchCallback_67 +uregex_setRegion64_67 +uregex_setRegionAndStart_67 +uregex_setRegion_67 +uregex_setStackLimit_67 +uregex_setText_67 +uregex_setTimeLimit_67 +uregex_setUText_67 +uregex_splitUText_67 +uregex_split_67 +uregex_start64_67 +uregex_start_67 +uregex_ucstr_unescape_charAt_67 +uregex_useAnchoringBounds_67 +uregex_useTransparentBounds_67 +uregex_utext_unescape_charAt_67 +uregion_areEqual_67 +uregion_contains_67 +uregion_getAvailable_67 +uregion_getContainedRegionsOfType_67 +uregion_getContainedRegions_67 +uregion_getContainingRegionOfType_67 +uregion_getContainingRegion_67 +uregion_getNumericCode_67 +uregion_getPreferredValues_67 +uregion_getRegionCode_67 +uregion_getRegionFromCode_67 +uregion_getRegionFromNumericCode_67 +uregion_getType_67 +ureldatefmt_close_67 +ureldatefmt_combineDateAndTime_67 +ureldatefmt_formatNumeric_67 +ureldatefmt_format_67 +ureldatefmt_open_67 +ures_close +ures_close_67 +ures_copyResb_67 +ures_countArrayItems +ures_countArrayItems_67 +ures_findResource +ures_findResource_67 +ures_findSubResource +ures_findSubResource_67 +ures_getAllItemsWithFallback +ures_getAllItemsWithFallback_67 +ures_getBinary +ures_getBinary_67 +ures_getByIndex +ures_getByIndex_67 +ures_getByKey +ures_getByKeyWithFallback +ures_getByKeyWithFallback_67 +ures_getByKey_67 +ures_getFunctionalEquivalent +ures_getFunctionalEquivalent_67 +ures_getInt +ures_getIntVector +ures_getIntVector_67 +ures_getInt_67 +ures_getKey +ures_getKey_67 +ures_getKeywordValues +ures_getKeywordValues_67 +ures_getLocale +ures_getLocaleByType +ures_getLocaleByType_67 +ures_getLocaleInternal +ures_getLocaleInternal_67 +ures_getLocale_67 +ures_getName_67 +ures_getNextResource +ures_getNextResource_67 +ures_getNextString +ures_getNextString_67 +ures_getSize +ures_getSize_67 +ures_getString +ures_getStringByIndex +ures_getStringByIndex_67 +ures_getStringByKey +ures_getStringByKeyWithFallback +ures_getStringByKeyWithFallback_67 +ures_getStringByKey_67 +ures_getString_67 +ures_getType +ures_getType_67 +ures_getUInt +ures_getUInt_67 +ures_getUTF8String +ures_getUTF8StringByIndex +ures_getUTF8StringByIndex_67 +ures_getUTF8StringByKey +ures_getUTF8StringByKey_67 +ures_getUTF8String_67 +ures_getVersion +ures_getVersionByKey +ures_getVersionByKey_67 +ures_getVersionNumber +ures_getVersionNumberInternal +ures_getVersionNumberInternal_67 +ures_getVersionNumber_67 +ures_getVersion_67 +ures_hasNext +ures_hasNext_67 +ures_initStackObject +ures_initStackObject_67 +ures_open +ures_openAvailableLocales +ures_openAvailableLocales_67 +ures_openDirect +ures_openDirectFillIn +ures_openDirect_67 +ures_openFillIn +ures_openFillIn_67 +ures_openNoDefault +ures_openNoDefault_67 +ures_openU_67 +ures_open_67 +ures_resetIterator +ures_resetIterator_67 +ures_swap +ures_swap_67 +uscript_breaksBetweenLetters +uscript_breaksBetweenLetters_67 +uscript_closeRun_67 +uscript_getCode_67 +uscript_getName +uscript_getName_67 +uscript_getSampleString +uscript_getSampleString_67 +uscript_getScript +uscript_getScriptExtensions +uscript_getScriptExtensions_67 +uscript_getScript_59 +uscript_getScript_67 +uscript_getShortName +uscript_getShortName_59 +uscript_getShortName_67 +uscript_getUsage +uscript_getUsage_67 +uscript_hasScript +uscript_hasScript_59 +uscript_hasScript_67 +uscript_isCased +uscript_isCased_67 +uscript_isRightToLeft +uscript_isRightToLeft_67 +uscript_nextRun_67 +uscript_openRun_67 +uscript_resetRun_67 +uscript_setRunText_67 +usearch_close_67 +usearch_first_67 +usearch_following_67 +usearch_getAttribute_67 +usearch_getBreakIterator_67 +usearch_getCollator_59 +usearch_getCollator_67 +usearch_getMatchedLength_59 +usearch_getMatchedLength_67 +usearch_getMatchedStart_67 +usearch_getMatchedText_67 +usearch_getOffset_67 +usearch_getPattern_67 +usearch_getText_67 +usearch_handleNextCanonical_67 +usearch_handleNextExact_67 +usearch_handlePreviousCanonical_67 +usearch_handlePreviousExact_67 +usearch_last_67 +usearch_next_59 +usearch_next_67 +usearch_openFromCollator_67 +usearch_open_59 +usearch_open_67 +usearch_preceding_67 +usearch_previous_67 +usearch_reset_59 +usearch_reset_67 +usearch_searchBackwards_67 +usearch_search_67 +usearch_setAttribute_59 +usearch_setAttribute_67 +usearch_setBreakIterator_67 +usearch_setCollator_67 +usearch_setOffset_59 +usearch_setOffset_67 +usearch_setPattern_59 +usearch_setPattern_67 +usearch_setText_59 +usearch_setText_67 +uset_addAllCodePoints_67 +uset_addAll_59 +uset_addAll_67 +uset_addRange_59 +uset_addRange_67 +uset_addString_67 +uset_add_59 +uset_add_67 +uset_applyIntPropertyValue_67 +uset_applyPattern_67 +uset_applyPropertyAlias_67 +uset_charAt_67 +uset_clear_67 +uset_cloneAsThawed_67 +uset_clone_67 +uset_closeOver_67 +uset_close_59 +uset_close_67 +uset_compact_67 +uset_complementAll_67 +uset_complement_67 +uset_containsAllCodePoints_67 +uset_containsAll_67 +uset_containsNone_67 +uset_containsRange_67 +uset_containsSome_67 +uset_containsString_67 +uset_contains_59 +uset_contains_67 +uset_equals_67 +uset_freeze_67 +uset_getItemCount_67 +uset_getItem_67 +uset_getSerializedRangeCount_67 +uset_getSerializedRange_67 +uset_getSerializedSet_67 +uset_indexOf_67 +uset_isEmpty_67 +uset_isFrozen_67 +uset_openEmpty_67 +uset_openPatternOptions_67 +uset_openPattern_59 +uset_openPattern_67 +uset_open_67 +uset_removeAllStrings_67 +uset_removeAll_67 +uset_removeRange_67 +uset_removeString_67 +uset_remove_67 +uset_resemblesPattern_67 +uset_retainAll_67 +uset_retain_67 +uset_serialize_67 +uset_serializedContains_67 +uset_setSerializedToOne_67 +uset_set_67 +uset_size_67 +uset_spanBackUTF8_67 +uset_spanBack_67 +uset_spanUTF8_67 +uset_span_67 +uset_toPattern_67 +usleep +uspoof_areConfusableUTF8_67 +uspoof_areConfusableUnicodeString_67 +uspoof_areConfusable_67 +uspoof_check2UTF8_67 +uspoof_check2UnicodeString_67 +uspoof_check2_67 +uspoof_checkUTF8_67 +uspoof_checkUnicodeString_67 +uspoof_check_67 +uspoof_clone_67 +uspoof_closeCheckResult_67 +uspoof_close_67 +uspoof_getAllowedChars_67 +uspoof_getAllowedLocales_67 +uspoof_getAllowedUnicodeSet_67 +uspoof_getCheckResultChecks_67 +uspoof_getCheckResultNumerics_67 +uspoof_getCheckResultRestrictionLevel_67 +uspoof_getChecks_67 +uspoof_getInclusionSet_67 +uspoof_getInclusionUnicodeSet_67 +uspoof_getRecommendedSet_67 +uspoof_getRecommendedUnicodeSet_67 +uspoof_getRestrictionLevel_67 +uspoof_getSkeletonUTF8_67 +uspoof_getSkeleton_67 +uspoof_internalInitStatics_67 +uspoof_openCheckResult_67 +uspoof_openFromSerialized_67 +uspoof_openFromSource_67 +uspoof_open_67 +uspoof_serialize_67 +uspoof_setAllowedChars_67 +uspoof_setAllowedLocales_67 +uspoof_setAllowedUnicodeSet_67 +uspoof_setChecks_67 +uspoof_setRestrictionLevel_67 +uspoof_swap_67 +usprep_close_67 +usprep_openByType_67 +usprep_open_67 +usprep_prepare_67 +usprep_swap_67 +ustr_hashCharsN +ustr_hashCharsN_67 +ustr_hashICharsN +ustr_hashICharsN_67 +ustr_hashUCharsN +ustr_hashUCharsN_67 +ustrcase_getCaseLocale_67 +ustrcase_getTitleBreakIterator_67 +ustrcase_internalFold_67 +ustrcase_internalToLower_67 +ustrcase_internalToTitle_67 +ustrcase_internalToUpper_67 +ustrcase_mapWithOverlap_67 +ustrcase_map_67 +utext_char32At +utext_char32At_67 +utext_clone +utext_clone_67 +utext_close +utext_close_59 +utext_close_67 +utext_copy +utext_copy_67 +utext_current32 +utext_current32_67 +utext_equals +utext_equals_67 +utext_extract +utext_extract_67 +utext_freeze +utext_freeze_67 +utext_getNativeIndex +utext_getNativeIndex_67 +utext_getPreviousNativeIndex +utext_getPreviousNativeIndex_67 +utext_hasMetaData +utext_hasMetaData_67 +utext_isLengthExpensive +utext_isLengthExpensive_67 +utext_isWritable +utext_isWritable_67 +utext_moveIndex32 +utext_moveIndex32_67 +utext_nativeLength +utext_nativeLength_67 +utext_next32 +utext_next32From +utext_next32From_67 +utext_next32_67 +utext_openCharacterIterator +utext_openCharacterIterator_67 +utext_openConstUnicodeString +utext_openConstUnicodeString_67 +utext_openReplaceable +utext_openReplaceable_67 +utext_openUChars +utext_openUChars_67 +utext_openUTF8 +utext_openUTF8_67 +utext_openUnicodeString +utext_openUnicodeString_67 +utext_previous32 +utext_previous32From +utext_previous32From_67 +utext_previous32_67 +utext_replace +utext_replace_67 +utext_setNativeIndex +utext_setNativeIndex_67 +utext_setup +utext_setup_59 +utext_setup_67 +utf8_appendCharSafeBody +utf8_appendCharSafeBody_59 +utf8_appendCharSafeBody_67 +utf8_back1SafeBody +utf8_back1SafeBody_67 +utf8_countTrailBytes +utf8_countTrailBytes_67 +utf8_nextCharSafeBody +utf8_nextCharSafeBody_67 +utf8_prevCharSafeBody +utf8_prevCharSafeBody_67 +utime +utimes +utmscale_fromInt64_67 +utmscale_getTimeScaleValue_67 +utmscale_toInt64_67 +utrace +utrace_cleanup_67 +utrace_data +utrace_data_67 +utrace_entry +utrace_entry_67 +utrace_exit +utrace_exit_67 +utrace_format +utrace_format_67 +utrace_functionName +utrace_functionName_67 +utrace_getFunctions +utrace_getFunctions_67 +utrace_getLevel +utrace_getLevel_67 +utrace_setFunctions +utrace_setFunctions_67 +utrace_setLevel +utrace_setLevel_67 +utrace_vformat +utrace_vformat_67 +utrans_clone_67 +utrans_close_67 +utrans_countAvailableIDs_67 +utrans_getAvailableID_67 +utrans_getID_67 +utrans_getSourceSet_67 +utrans_getUnicodeID_67 +utrans_openIDs_67 +utrans_openInverse_67 +utrans_openU_67 +utrans_open_67 +utrans_register_67 +utrans_rep_caseContextIterator_67 +utrans_setFilter_67 +utrans_stripRules_67 +utrans_toRules_67 +utrans_transIncrementalUChars_67 +utrans_transIncremental_67 +utrans_transUChars_67 +utrans_trans_67 +utrans_transliterator_cleanup_67 +utrans_unregisterID_67 +utrans_unregister_67 +utrie2_cloneAsThawed_67 +utrie2_clone_67 +utrie2_close +utrie2_close_67 +utrie2_enum +utrie2_enumForLeadSurrogate +utrie2_enumForLeadSurrogate_67 +utrie2_enum_67 +utrie2_freeze_67 +utrie2_fromUTrie_67 +utrie2_get32 +utrie2_get32FromLeadSurrogateCodeUnit +utrie2_get32FromLeadSurrogateCodeUnit_67 +utrie2_get32_67 +utrie2_internalU8NextIndex +utrie2_internalU8NextIndex_67 +utrie2_internalU8PrevIndex +utrie2_internalU8PrevIndex_67 +utrie2_isFrozen +utrie2_isFrozen_67 +utrie2_openDummy +utrie2_openDummy_67 +utrie2_openFromSerialized +utrie2_openFromSerialized_67 +utrie2_open_67 +utrie2_serialize +utrie2_serialize_67 +utrie2_set32ForLeadSurrogateCodeUnit_67 +utrie2_set32_67 +utrie2_setRange32_67 +utrie2_swap +utrie2_swap_67 +utrie_clone_67 +utrie_close_67 +utrie_defaultGetFoldingOffset_67 +utrie_enum_67 +utrie_get32_67 +utrie_getData_67 +utrie_open_67 +utrie_serialize_67 +utrie_set32_67 +utrie_setRange32_67 +utrie_swap +utrie_swapAnyVersion +utrie_swapAnyVersion_67 +utrie_swap_67 +utrie_unserializeDummy_67 +utrie_unserialize_67 +uuidgen +vasprintf +vector_str_push +vector_str_substr +verifyDeciHeader +verr +verrc +verrx +vfork +vfprintf +vfprintf_s +vfscanf +vfscanf_s +vfwprintf +vfwprintf_s +vfwscanf +vfwscanf_s +vm_send_BuildIMTThunk +vm_send_CachedStelemrefMethods +vm_send_ClearBreakpoint +vm_send_CreateDelegateTrampoline +vm_send_CreateDomain +vm_send_CreateExceptionFunctions +vm_send_CreateJumpTrampoline +vm_send_CreateSpecificTrampoline +vm_send_CreateStaticRgctxTrampoline +vm_send_CreateThrowTrampoline +vm_send_CreateUnboxTrampoline +vm_send_DebuggerPages +vm_send_FreeDomain +vm_send_GenericArrayMethodInfo +vm_send_GetCachedUnwindInfo +vm_send_JitCompileMethod +vm_send_MapFile +vm_send_MonoGlobals +vm_send_PatchCallsite +vm_send_RegisterOpcodeEmulation +vm_send_SetBreakpoint +vm_send_SetWriteBarrier +vprintf +vprintf_s +vscanf +vscanf_s +vsnprintf +vsnprintf_s +vsnwprintf_s +vsprintf +vsprintf_s +vsscanf +vsscanf_s +vswprintf +vswprintf_s +vswscanf +vswscanf_s +vsyslog +vwarn +vwarnc +vwarnx +vwprintf +vwprintf_s +vwscanf +vwscanf_s +vzone_clone_67 +vzone_close_67 +vzone_countTransitionRules_67 +vzone_equals_67 +vzone_getDynamicClassID_67 +vzone_getLastModified_67 +vzone_getNextTransition_67 +vzone_getOffset2_67 +vzone_getOffset3_67 +vzone_getOffset_67 +vzone_getPreviousTransition_67 +vzone_getRawOffset_67 +vzone_getStaticClassID_67 +vzone_getTZURL_67 +vzone_hasSameRules_67 +vzone_inDaylightTime_67 +vzone_openData_67 +vzone_openID_67 +vzone_setLastModified_67 +vzone_setRawOffset_67 +vzone_setTZURL_67 +vzone_useDaylightTime_67 +vzone_writeFromStart_67 +vzone_writeSimple_67 +vzone_write_67 +wait +wait3 +wait4 +waitDecidBootEvf +wait_for_packet +waitid +waitpid +wapi_set_crypto_policy_callback +warn +warnc +warnx +wcrtomb +wcrtomb_s +wcs2b +wcscat +wcscat_s +wcschr +wcscmp +wcscoll +wcscpy +wcscpy_s +wcscspn +wcsftime +wcslen +wcsncat +wcsncat_s +wcsncmp +wcsncpy +wcsncpy_s +wcsnlen_s +wcspbrk +wcsrchr +wcsrtombs +wcsrtombs_s +wcsspn +wcsstr +wcstod +wcstod.fpi +wcstod.fpinan +wcstodg +wcstof +wcstof.fpi0 +wcstoimax +wcstok +wcstok.nullstr +wcstok_s +wcstol +wcstold +wcstoll +wcstombs +wcstombs_s +wcstoul +wcstoull +wcstoumax +wcsxfrm +wctob +wctomb +wctomb_s +wctrans +wctrans_tab +wctype +wctype_tab +whexdig +whexdig_init_D2A +whexnan +winfnt_driver_class +wmatch +wmemchr +wmemcmp +wmemcpy +wmemcpy_s +wmemmove +wmemmove_s +wmemset +wpe_key_code_to_unicode +wpe_loader_get_loaded_implementation_library_name +wpe_loader_init +wpe_pasteboard_get_singleton +wpe_pasteboard_get_string +wpe_pasteboard_get_types +wpe_pasteboard_string_free +wpe_pasteboard_string_initialize +wpe_pasteboard_string_vector_free +wpe_pasteboard_write +wpe_unicode_to_key_code +wprintf +wprintf_s +write +writeIS +writev +wscanf +wscanf_s +xmlByteConsumed +xmlCreateMemoryParserCtxt +xmlCreatePushParserCtxt +xmlCtxtGetLastError +xmlCtxtUseOptions +xmlDictLookup +xmlFree +xmlFreeDoc +xmlFreeParserCtxt +xmlGetDocEntity +xmlGetPredefinedEntity +xmlInitParser +xmlMalloc +xmlParseChunk +xmlParseContent +xmlRegisterInputCallbacks +xmlRegisterOutputCallbacks +xmlSAX2EndDocument +xmlSAX2EntityDecl +xmlSAX2InternalSubset +xmlSAX2StartDocument +xmlStopParser +xmlStrdup +xmlStrndup +xmlSwitchEncoding +xtime_get +xval +y0 +y0f +y1 +y1f +yn +ynf +zero +zeroes +zrule_close_67 +zrule_equals_67 +zrule_getDSTSavings_67 +zrule_getName_67 +zrule_getRawOffset_67 +zrule_isEquivalentTo_67 +ztrans_adoptFrom_67 +ztrans_adoptTo_67 +ztrans_clone_67 +ztrans_close_67 +ztrans_equals_67 +ztrans_getDynamicClassID_67 +ztrans_getFrom_67 +ztrans_getStaticClassID_67 +ztrans_getTime_67 +ztrans_getTo_67 +ztrans_openEmpty_67 +ztrans_open_67 +ztrans_setFrom_67 +ztrans_setTime_67 +ztrans_setTo_67 \ No newline at end of file diff --git a/src/core/aerolib/aerolib.inl b/src/core/aerolib/aerolib.inl index cd7a6b01..a87c3cc4 100644 --- a/src/core/aerolib/aerolib.inl +++ b/src/core/aerolib/aerolib.inl @@ -1,11228 +1,171520 @@ // SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later - // generated using ps4_names2stubs.py +STUB("++-URPJNZ18", _ZN9Inspector17ScriptDebugServer23removeBreakpointActionsEm) +STUB("++67uYkhqBU", _ZN7WebCore28InspectorFrontendClientLocal8Settings11getPropertyERKN3WTF6StringE) +STUB("++8RYr2gjrw", _ZN9Inspector21InjectedScriptManagerdaEPv) +STUB( + "++BntMcao1o", + _ZN9Inspector8Protocol13BindingTraitsINS0_8Timeline13TimelineEventEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE) STUB("++DO8Y1JaYU", sceAvSettingDebugSetProcessAttribute) STUB("++DyHhMUeQA", sceApplicationRaiseExceptionToLocalPid) +STUB("++In3PHBZfw", _Atomic_fetch_or_8) +STUB("++JZUk1c0dY", mono_aot_Sce_Vsh_Webbrowser_XdbWrapperplt_end) +STUB("++LHBqoQ1cQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEEC2Ev) +STUB("++R8IXi10PI", _ZN3JSC6JSLock12DropAllLocksC2ERNS_2VME) +STUB( + "++TYnF-cbqE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEptEv) STUB("++YZ7P9e87U", sceNgs2RackUnlock) +STUB("++bp9REBkfM", handleSocketError) STUB("++eqYdzB8Go", sceNpLwCondInit) +STUB("++ge3jYlHW8", _ZNKSt11logic_error4whatEv) +STUB( + "++hhahDTg7k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEixEm) +STUB("++j2h+QO22w", _ZN3WTF15BinarySemaphore6signalEv) +STUB("++lgV9pRsO4", FT_Outline_Decompose) +STUB("++qSDotsHuE", _ZN3sce2np4Time7AddDaysEl) +STUB( + "++v6m1cDvuc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB( + "++whtjtTHu4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEE3getEv) +STUB("++wjWXvvUsQ", _ZN7WebCore9HTMLNames15exportpartsAttrE) +STUB( + "++yM9A1U7mo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE7popBackEv) +STUB("+-+7XwmYLnI", _ZN7WebCore28InspectorFrontendClientLocal11isUnderTestEv) +STUB( + "+-5UWEYs90E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "+-70YraJw0w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEED1Ev) +STUB("+-CQzDf6kOc", _ZN3sce6Canvas9releaseIdEh) +STUB("+-OmuFJCLxY", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container8getMediaEv) +STUB( + "+-Tx7ylVWNU", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12string3IsSetEv) STUB("+-du9tWgE9s", sceCompanionHttpdTerminate) +STUB("+-epm9bJq84", GCC_except_table12) +STUB( + "+-g1zrRoVdI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEmmEi) +STUB("+-n4S512l+M", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEneERKS9_) +STUB("+-wmVyLhgm0", WKPreferencesSetStandardFontFamily) +STUB( + "+0-fVVJsugg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEE5resetEPS6_) +STUB("+02q4zuIP2E", _ZN3sce7Toolkit2NP20CreateSessionRequestC2Ev) +STUB( + "+06Sh0kbwc8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEneERKS9_) STUB("+0E0dyw8phY", sceFaceIdentifyExSimilarity) +STUB("+0EDo7YzcoU", futimes) +STUB("+0GVFQ76KHo", _ZNK7WebCore3URL18fragmentIdentifierEv) +STUB("+0Gl8y4tkuM", + _ZNK3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayer6toJsonERNS_4Json5ValueEb) +STUB("+0QEt8ZQWgg", _ZN7WebCore15JSDOMWindowBaseD1Ev) +STUB("+0U0tMljl0I", _ZN4IPMI7Session6Config25estimateSessionMemorySizeEv) +STUB("+0X7oLDImeY", _ZN7WebCore8Document27setFullscreenControlsHiddenEb) +STUB("+0YNxcA-duk", _ZN9Inspector22InspectorDebuggerAgent24continueUntilNextRunLoopERN3WTF6StringE) +STUB( + "+0ZUjMSVjY8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEE11get_deleterEv) +STUB("+0ZZzGYxx+I", _ZN7WebCore8Settings27setLoadsImagesAutomaticallyEb) +STUB("+0geDEimyvE", curl_pushheader_bynum) +STUB( + "+0hc5QmACig", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEC2EPS8_) +STUB("+0jo0J7h4CM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEED1Ev) +STUB( + "+0leBje2YeU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEE11get_deleterEv) +STUB("+0qGCrVTCcs", _ZN3JSC7JSProxy13visitChildrenEPNS_6JSCellERNS_11SlotVisitorE) +STUB("+0rdnkSicqk", WKPreferencesGetApplicationChromeModeEnabled) STUB("+0rj9KhmYb0", sceNpUtilXmlUnescape) +STUB("+0w37v4-Xlc", mono_aot_Sce_Vsh_LncUtilWrapperunbox_trampolines_end) +STUB( + "+0xECQcI0KY", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB("+0yi9NZ4+fw", u_sscanf_u_67) +STUB("+14hrhyqXkw", _ZN3JSC25JSSegmentedVariableObject11analyzeHeapEPNS_6JSCellERNS_12HeapAnalyzerE) +STUB( + "+1AZ25-Dqbc", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody30getComparedLastUpdatedDateTimeEv) +STUB("+1CXrIROzIg", rgctx_fetch_trampoline_rgctx_111_p) +STUB("+1Ex5GCP8Xs", _ZN7WebCore18JSHTMLInputElementC2ERKS0_) +STUB("+1FfZ+0sxvQ", _ZN9Inspector21InspectorConsoleAgent5resetEv) +STUB( + "+1ObAtzCrYE", + _ZN7WebCore4Node16addEventListenerERKN3WTF10AtomStringEONS1_3RefINS_13EventListenerENS1_13DumbPtrTraitsIS6_EEEERKNS_11EventTarget23AddEventListenerOptionsE) +STUB( + "+1P2tV4dbPc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("+1QH-0LyAVo", _ZN7WebCore3URL32removeQueryAndFragmentIdentifierEv) +STUB( + "+1TgCo67I-k", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "+1V5OtXKL9Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEixEm) +STUB( + "+1aHk5791Ms", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEC1ERKS8_) STUB("+1bHLOuow28", sceVshAvcapDeleteSyncer) +STUB( + "+1ck6lGIk-o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE7popBackEv) +STUB("+1ctlV5HdkE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEEC1EPS6_) +STUB( + "+1jackZ6cZg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("+1n+h4FUu9E", WKPreferencesSetAutostartOriginPlugInSnapshottingEnabled) +STUB("+1omO5tOmr0", izrule_open_67) +STUB( + "+1q6WlAf0kY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEC1Ev) STUB("+1qj-S-k6m0", sceUserServiceGetPbtcSaturdayHoursStart) STUB("+1rqC1b3Jw0", sceAvSettingSetHdcpStatus) +STUB("+1zuII0sYyU", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V110AvatarSizeEEmmEv) +STUB("+2+4vTfagBE", _ZN3WTF11dtoaRoundDPEPcdiRbRiRj) +STUB( + "+20LIJsRPjE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE5eraseENS2_8IteratorIS8_EERSB_) STUB("+235EcrmaJc", scePktMgrRecvDeciPacket) +STUB( + "+24vPqGItRk", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi47ParameterWithBinaryRequestBodyToRecordLargeData9terminateEv) +STUB( + "+25sIPn4I4c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEC2EPKS8_) +STUB("+26aZpK535w", + _ZN7WebCore18TextureMapperLayer14paintRecursiveERKNS_25TextureMapperPaintOptionsE) +STUB("+28jc0bl0ao", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE3endEv) STUB("+29DSndZ9Oc", sceUserServiceGetGlsFloatingMessage) +STUB("+2BM9gBawwQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEEixEm) STUB("+2Ed65+55ZI", sceVideoCoreInterfaceDestroyFrameBufferContext) STUB("+2GFBvON4Sk", sceCesUtf8ToEucCn) +STUB("+2GKXkOLMa4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEEC1Ev) +STUB("+2HAuc7yVbc", chown) +STUB("+2MxdALg5JE", _ZN3sce7Toolkit2NP6TicketC1Ev) +STUB( + "+2S3WokwWd8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("+2Tem-5chMc", _ZN3sce3pss4core8graphics10WaitVBlankEv) +STUB("+2XHbrClCfQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEdeEv) +STUB("+2XuBaAXb+4", _ZN7WebCore9GLContextnwEm) STUB("+2bYveDZRzU", sceDtcpIpPollAsync) +STUB("+2d45L3hxh4", rgctx_fetch_trampoline_mrgctx_40) +STUB( + "+2iVb5Lkdg8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("+2jZj-j3Si4", mono_reflection_parse_type) +STUB( + "+2l+BakVSg0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "+2ls4vgvmKw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEptEv) +STUB("+2oRpJalFQ0", mono_aot_ClassLibrary1jit_got) STUB("+2paAsKqXOQ", sceShellCoreUtilRequestRebootApp) +STUB("+2rTX2KM7Ms", _ZN7WebCore18HTMLMarqueeElement14setScrollDelayEj) +STUB("+2thxYZ4syk", environ) +STUB( + "+2uH+wbvMi4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEC2Ev) STUB("+2uXfrrQCyk", sceSystemServiceActivateHevc) +STUB( + "+2vVF0TpuzY", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V122LastUpdatedUserFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_15LastUpdatedUserEEE) +STUB("+31dbB3S-6Y", WKPreferencesResetTestRunnerOverrides) STUB("+352WTlGCQI", sceTextToSpeech2GetSystemStatus) +STUB("+3BWlXyIPVM", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_12PresenceInfoEEC1Ev) +STUB("+3JWTVP4NUc", _ZN3sce2np12NpTitleTokenC2Ev) STUB("+3KMyS93TOs", sceNetConfigWlanDiagGetDeviceInfo) +STUB("+3KiBw-4CQY", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry7getPcIdEv) +STUB("+3MiDyKGrtI", FTC_Image_Cache_New) +STUB("+3PtYiUxl-U", wctype) +STUB( + "+3Q3hFQld3A", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12getBoolean10Ev) +STUB("+3RMc76ya-E", mono_aot_Sce_Vsh_SessionInvitationplt) +STUB("+3YRcBQM3uk", _ZN3sce7Toolkit2NP2V27Ranking17GetGameDataResultC1Ev) +STUB( + "+3ZAeAjnhDk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEC2EPS8_) +STUB( + "+3ZMqb8qTHA", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyD2Ev) +STUB( + "+3gN3rPfBTw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEmmEi) +STUB( + "+3jAVQxPMOc", + _ZN9Inspector20DOMBackendDispatcher29setBreakpointForEventListenerElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("+3jUWY-Vgs4", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEEcvbEv) +STUB( + "+3o0QkRVdDY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("+3p6wRzzzlQ", WKContextConfigurationSetAlwaysKeepAndReuseSwappedProcesses) +STUB("+3sny7aNq9U", mono_aot_Sce_Vsh_VrEnvironmentunbox_trampolines_end) +STUB("+3y41BZ7Bg8", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11ProductInfoEE8allocateEmPKv) +STUB("+3ySpB1buMs", _ZThn16_N3sce2np9LocalFile5WriteEPNS0_6HandleEPKvmPm) +STUB("+4-GNOUIBt0", + _ZN3JSC9Structure40addPropertyTransitionToExistingStructureEPS0_NS_12PropertyNameEjRi) +STUB("+43fvWoSpqU", _ZN3sce2Np9CppWebApi15ProfanityFilter2V224TestForProfanityResponseD1Ev) +STUB("+44Ddangz0g", + _ZNSt9_FacetptrISt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEE6_PsaveE) +STUB("+45BiDnCTxw", _ZN7WebCore9GLContextD0Ev) +STUB("+4BG7Dz95pI", _ZN3JSC7Symbols31asyncGeneratorRejectPrivateNameE) +STUB("+4BWgo8i668", _ZN3WTF12nullAtomDataE) STUB("+4DegjBqV1g", sceNpGetAccountAge) +STUB("+4IeH+Ly56c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEE5resetEPS6_) +STUB( + "+4JCP+VNNwc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("+4JKB5YW3Bk", wpe_pasteboard_get_types) +STUB( + "+4MffyM0Gro", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEmmEi) +STUB("+4PMEfzft-U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEaSERKS7_) +STUB("+4RO4q-4SGs", + _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody8fromJsonERKNS_4Json5ValueE) +STUB( + "+4SPvd7YlPs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEneERKS9_) +STUB( + "+4WxtBCTplY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEdeEv) +STUB( + "+4a+iY5cxMU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) STUB("+4c9xRLmiXQ", scePadResetLightBarAll) +STUB( + "+4d5NmpZp6w", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEdeEv) +STUB( + "+4d9qghuMnk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEC1EPS8_) +STUB( + "+4eRM6Vq084", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEED2Ev) +STUB( + "+4fw-ZEF75E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB("+4kWCKoS01E", _ZN3sce7Toolkit2NP2V26Trophy7Request6Unlock17INVALID_TROPHY_IDE) +STUB("+4lVmXsIwqM", _ZN7WebCore7Element26scrollIntoViewIfNotVisibleEb) +STUB( + "+4lgBq7Fu0k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("+4nVrsxOp0s", _ZNSt9basic_iosIcSt11char_traitsIcEE3tieEPSo) +STUB("+4oF73a0ouQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEED2Ev) +STUB("+4sIFoRT198", _ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequest13setActivityIdEPKc) +STUB( + "+56R6TP-nXY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEEC2ERS9_) +STUB( + "+5AtwMTL-SQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE21intrusive_ptr_add_refEPS9_) +STUB("+5D7++3n9SA", WKBundleFrameDisableThrottlingByTileCount) +STUB("+5E2JwpsKcY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge10ChallengesEED1Ev) +STUB("+5E2YZZIstM", WKPreferencesSetContentChangeObserverEnabled) +STUB("+5ID5YbnNjM", _ZN15AbstractStorage12LocalContent6RemoveEv) +STUB("+5IOQncui3c", _ZNKSt18bad_variant_access4whatEv) +STUB( + "+5JQd-6WeQg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE8capacityEv) +STUB( + "+5Nkn628xwk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "+5OCQrWQ2VQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE21intrusive_ptr_add_refEPS9_) +STUB("+5OuLYpRB28", _Dclass) +STUB("+5V-UOk8zS4", _ZNK3JSC18PropertyDescriptor12configurableEv) +STUB("+5VJ8NrAwAU", + _ZN3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayer16unsetCustomData1Ev) +STUB("+5Yqj5ZOT4U", ubidi_getVisualRun_67) +STUB( + "+5ZkrP3atbI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEEptEv) +STUB("+5b0qY+Kfgk", _ZNK3sce2Np9CppWebApi11UserProfile2V113BasicPresence6toJsonERNS_4Json5ValueEb) +STUB( + "+5ckzCM9yjM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEC1Ev) +STUB("+5ghrR5Vc9I", BIO_up_ref) +STUB( + "+5iTkwxW158", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("+5p2gObV-wE", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEEC1EPS6_) +STUB("+5quUGo72ds", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEE11release_refEv) +STUB( + "+5reQwQ+E4Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEC1EPS8_) +STUB("+5sCd799eg4", _ZNK3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer6toJsonERNS_4Json5ValueEb) +STUB( + "+5uphMKe1Jk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEC2EPNS2_10LibContextE) +STUB( + "+5xMqRsZgfE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEppEv) +STUB("+631th1Z4DU", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry8getScoreEv) +STUB("+63IB3UdMOY", _ZN3JSC30int52AwareSpeculationFromValueENS_7JSValueE) +STUB("+6CNB3ib5dM", _ZN12video_parser13cVideoMetaMP4C2EPNS_18cMp4FFLHndlManagerE) +STUB( + "+6KUpu94voQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEEC1ERKSA_) +STUB("+6KZ11SI7go", mono_aot_Sce_Vsh_AutoMounterWrapperunbox_trampolines) +STUB("+6LwzlBtQZU", mono_aot_ReactNative_Vsh_Commonplt) +STUB("+6Phj3kVNFI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE5beginEv) +STUB("+6WhDHlktyg", _ZTv0_n48_N13MsvMetaEditor8openFileEPKc) +STUB( + "+6Xo+7GdUGM", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponse13getRestrictedEv) +STUB("+6aV1q-CAIg", FcLangSetDestroy) +STUB("+6boXsT6XFA", _ZN9Inspector18InjectedScriptHost7subtypeEPN3JSC14JSGlobalObjectENS1_7JSValueE) +STUB("+6h47p15FxM", mono_array_clone) +STUB("+6hsgukv-aE", _ZN4Manx11MediaPlayerD1Ev) +STUB("+6lwWlBncM8", Java_java_io_UnixFileSystem_delete0) +STUB("+6o8lgVYNRM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEEC2EPKS6_) +STUB("+6qvkZDoTms", _ZN3sce2Np9CppWebApi7Matches2V119AdditionalStatisticD2Ev) +STUB("+6r5RPIVkx8", mono_aot_Sce_Vsh_Orbis_Bgftunbox_trampolines) +STUB( + "+6ru7Z3mFC0", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationProperties8fromJsonERKNS_4Json5ValueE) +STUB( + "+6s6BPCscaM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEptEv) +STUB( + "+6v-+dskwg4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEmmEv) STUB("+6wXHxR7laM", sceSaveDataCheckBackupDataLight) +STUB( + "+7+ZbKm6HJ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEC1ERKS7_) +STUB( + "+708wejfnO4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "+70DV488-hg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE10setContextEPNS2_10LibContextE) +STUB( + "+73ujcZ+ar0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEC2EPNS2_10LibContextE) +STUB("+74TJbH8S8w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEE11release_refEv) +STUB("+79nk0KPcOg", _ZNK3sce2Np9CppWebApi11UserProfile2V16Avatar6getUrlEv) +STUB("+79w68212vg", _ZNK7WebCore24MatrixTransformOperation6matrixEv) STUB("+7B2AEKKns8", scePthreadAttrGetscope) +STUB("+7G3BcPM9WM", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge13ChallengeDataEE19setCustomReturnCodeEi) +STUB("+7HpqmfJz48", _ZN7WebCore13HTTPHeaderMap3addERKN3WTF6StringES4_) +STUB( + "+7Hsun7shz8", + _ZN3sce2Np9CppWebApi14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBody8fromJsonERKNS_4Json5ValueE) +STUB( + "+7KbeAX2-no", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE10setContextEPNS2_10LibContextE) +STUB( + "+7RwyZF4bb8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEED1Ev) +STUB("+7U4658EmuY", _ZN3JSC17hasIteratorMethodERNS_9ExecStateENS_7JSValueE) +STUB("+7U74Zy7gKg", CERT_getSignatureItem) +STUB( + "+7fmt-RxtKo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE3endEv) +STUB( + "+7jUnDsasKs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "+7pe0CCr8YY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE5beginEv) STUB("+7qLP7HjL+4", sceApplicationContinue) +STUB("+7t0gI-8Wxg", _ZTVN7WebCore11DisplayList25DrawDotsForDocumentMarkerE) +STUB("+8+OXsxd-EU", + _ZN3sce2Np9CppWebApi14ConnectAccount2V215AccountLinksApi28ParameterToDeleteAccountLinkC2Ev) +STUB( + "+8ANi0g4YZk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "+8CQKp-kv0E", + _ZN3sce2Np9CppWebApi14SessionManager2V130MemberWithMultiPlatformFactory6createEPNS1_6Common10LibContextERKmPKcPNS5_12IntrusivePtrINS3_23MemberWithMultiPlatformEEE) +STUB( + "+8D1URmpEoQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE8copyFromERKS9_) STUB("+8GCeq43o7c", sceKernelQueryTraceMemory) +STUB("+8If+ixKxuU", + _ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_28ActivityFeedSharedVideoStoryEE8max_sizeEv) +STUB("+8Jgx9E0bkA", Java_sun_reflect_Reflection_getCallerClass) STUB("+8LJld9LIt4", sceLncUtilNotifyCoredumpRequestEnd) STUB("+8M7+xoeeaE", sceHttpCacheRevalidateWithMemoryPool) +STUB( + "+8OohLHXbkQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEaSERS7_) +STUB( + "+8QJ9b+FzHw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEneERKS9_) +STUB("+8Rx3Ny7w+w", _ZN7WebCore11MathMLNames10mpaddedTagE) +STUB("+8T1y8Y-lgQ", _ZNK3WTF3URL10protocolIsEPKc) +STUB("+8TSUSVTx7k", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEED1Ev) +STUB( + "+8TZqe+VZQo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("+8Tc-+RugoI", uenum_unextDefault_67) +STUB( + "+8TdsN+0res", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayer52getpostGameSessionsSessionIdMemberPlayersRequestBodyEv) +STUB( + "+8VuTEFp13s", + _ZN7WebCore28InspectorFrontendClientLocalC2EPNS_19InspectorControllerEPNS_4PageESt10unique_ptrINS0_8SettingsESt14default_deleteIS6_EE) STUB("+8e7wXLmjds", sceNpMatching2SetDefaultRequestOptParam) +STUB("+8eHxy1PQaM", ucol_setReorderCodes_67) +STUB("+8jItptyeQQ", _ZTVSi) +STUB( + "+8ktYe7QaBo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEixEm) +STUB("+8nk7HpiVZc", _ZN12video_parser5vpcom18LwMutexAttrNameSetEPcPKc) STUB("+8oodhFUuas", sceCesGbToUtf16be) STUB("+8vcurPhbEY", sceFiosOpIsCancelled) +STUB( + "+9+ALhHBJ74", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE21intrusive_ptr_add_refEPS9_) STUB("+9+kKMY9YIw", sceNpAtomicCas32) +STUB( + "+917cnGh480", + _ZNK3sce2Np9CppWebApi14SessionManager2V141GetUsersAccountIdGameSessionsResponseBody6toJsonERNS_4Json5ValueEb) +STUB( + "+923WonObD4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEmmEi) +STUB("+988B0Zsk5E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEE11get_deleterEv) +STUB( + "+9Avp3-LnkM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("+9DBgs-d2GA", ures_open_67) +STUB( + "+9H3a5Nutoc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEED2Ev) +STUB( + "+9PFwdcnkFg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEixEm) +STUB("+9TKACifR2g", _ZN7WebCore23ScaleTransformOperation5blendEPKNS_18TransformOperationEdb) +STUB( + "+9USGUHOQ8g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEC1EPS8_) +STUB("+9VxAwiRwpo", _ZN3sce7Toolkit2NP2V29Messaging16GameDataMessagesD1Ev) +STUB( + "+9Z6v-0qPUw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEED1Ev) +STUB("+9ZBRWNf4og", _ZN7WebCore14XMLHttpRequestD1Ev) +STUB( + "+9bfW8AYWRg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEE21intrusive_ptr_add_refEPS7_) +STUB( + "+9dI6LTyy18", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE21intrusive_ptr_add_refEPSA_) +STUB( + "+9gOEhGw9LI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEED1Ev) +STUB("+9j+VbOE+xQ", + _ZN3sce7Toolkit2NP2V23TUS7getDataERKNS3_7Request7GetDataEPNS2_4Core8ResponseINS3_7TusDataEEE) +STUB( + "+9lfPXLJmhs", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB( + "+9sI6TPtsRY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEED1Ev) STUB("+9snhlBsYqs", sceNpRemotePlaySessionSignalingJoinSession) +STUB("+9us0nrDaCU", _ZN3JSC20TypedArrayControllerC2Ev) +STUB("+9ypoH8eJko", _Times) +STUB("+9zPSQtHiuE", Java_com_sony_bdjstack_ti_Database_getStream) +STUB("+A0+F3ASPXQ", _ZN15AbstractStorage12LocalContent4ReadEPvlPl) STUB("+A20uE3spLQ", sceVorbisDecReadFloat) +STUB("+A2tRLT4Abo", _ZN7WebCore8SVGNames14feSpotLightTagE) +STUB("+A3LWaxK2P0", monoeg_g_slist_foreach) +STUB( + "+A8q0KTO9mM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEeqERKS9_) +STUB( + "+A8x5HXuR9E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEE7add_refEv) STUB("+ADiO6FQvEA", sceAgcDriverGetGpuPrintfWorkArea) +STUB( + "+AEFbLRH4xA", + _ZN9Inspector22InspectorDebuggerAgent20didScheduleAsyncCallEPN3JSC9ExecStateENS0_13AsyncCallTypeEib) STUB("+AFvOEXrKJk", sceGnmSetEmbeddedVsShader) STUB("+AGLl-l-WVE", sceFiosGetDefaultOpAttr) +STUB("+AGtNVLAXUI", getErrorString) +STUB("+AHd7krkfM0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEC2ERS7_) +STUB("+AIEKk6K05M", _ZN7WebCore14StaticNodeListnaEmPv) +STUB( + "+AJp3AINsPo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "+AScJATx-OA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE3endEv) STUB("+AX8QoImHeQ", scePerfTraceIoControllerEnable) +STUB("+Abk7CfTivU", _ZN3WTF21RefCountedLeakCounter16suppressMessagesEPKc) +STUB("+AnsPWo12m8", _ZN9Inspector26LayerTreeBackendDispatcherD0Ev) +STUB( + "+Awu-PLh3R0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "+AxfaXJSM9I", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeaders7destroyEPS5_) STUB("+B-xlbiWDJ4", sceFontStringGetTerminateOrder) +STUB( + "+B2jsBdGc84", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("+B32SVIn2Ug", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE5emptyEv) +STUB( + "+B4DtCdEawY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEC1Ev) +STUB( + "+B6kAe1eaQc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEC1EPS8_) +STUB( + "+B8KF5okOw8", + _ZN3sce7Toolkit2NP8Commerce9Interface22getDetailedProductInfoEPNS1_9Utilities6FutureINS1_19ProductInfoDetailedEEERKNS1_30DetailedProductInfoInputParamsEb) +STUB( + "+BDqCDede1o", + _ZN3JSC49throwConstructorCannotBeCalledAsFunctionTypeErrorEPNS_14JSGlobalObjectERNS_10ThrowScopeEPKc) STUB("+BJ9svDmjYs", sceRudpNetFlush) +STUB("+BL3-h8zGDo", cairo_scaled_font_get_font_face) +STUB( + "+BLUiS9X8Ts", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE8pushBackERKS8_) +STUB("+BOK0QQUJsU", _ZN3sce7Toolkit2NP2V29Challenge13ChallengeData13MAX_SIZE_DATAE) +STUB( + "+BQ4Pctd0qA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEED2Ev) +STUB("+BSUP6XSeAw", WKNotificationManagerProviderDidUpdateNotificationPolicy) +STUB("+BStZPQtqpQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEdeEv) +STUB("+BV61XdoQUw", _ZN7WebCore9HTMLNames24onlostpointercaptureAttrE) +STUB( + "+BVxBXIPhto", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEC1Ev) +STUB("+BWNWjvPqzw", _ZN3sce2Np9CppWebApi7Matches2V124RequestCompetitiveResultD2Ev) +STUB("+BZCJi3OIiQ", _ZN7WebCore29isCharacterSmartReplaceExemptEib) +STUB( + "+BZIrqrtTzA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEC1EPS8_) +STUB("+BZiiFue-H0", __tsan_external_register_tag) +STUB("+BascJHoFB4", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEE3getEv) +STUB("+BddkAn6GgI", _ZN3sce2Np9CppWebApi14SessionManager2V16Friend11setOnlineIdERK13SceNpOnlineId) +STUB( + "+BezugFP1uk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEC1ERKS7_) +STUB( + "+Bga0DjO7TI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEC2Ev) +STUB( + "+Bh7KXKnu8o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEmmEi) +STUB("+ByVxWl1pW8", _ZN7WebCore26Matrix3DTransformOperationC2ERKNS_20TransformationMatrixE) STUB("+BzXYkqYeLE", scePthreadSetspecific) +STUB( + "+C+6ZVOXfUo", + _ZN3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyD2Ev) +STUB( + "+C46qLq3-KM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE5beginEv) +STUB("+CBIltBADcU", _Z38sceGpuDebuggerGetEnabledExceptionsMaskPKN3sce3Gnm16HsStageRegistersEPj) +STUB( + "+CNIG-KRqwc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEaSERS7_) STUB("+CSUx-budSk", sceOpusDecDecode) +STUB( + "+CU3YCqA2cQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("+CUrIMpVuaM", stderr) STUB("+CbwGRMnlfU", sceLibcMspaceSetMallocCallback) +STUB( + "+CemcGpxrfY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEEaSERKSA_) +STUB("+CgSI-4D534", _ZNK7WebCore11MediaPlayer9userAgentEv) STUB("+Ck0P+3Uw2A", scePatchCheckerSetCache) +STUB("+CnX+ZDO8qg", _ZNSt12placeholders2_1E) +STUB("+CpPA9+CKUA", _ZNK7WebCore8Document7fgColorEv) +STUB( + "+D0KZVL37IE", + _ZThn24_N9Inspector22InspectorDebuggerAgent13setBreakpointERN3WTF6StringERKNS1_8JSONImpl6ObjectEPS6_PS2_RNS1_6RefPtrINS_8Protocol8Debugger8LocationENS1_13DumbPtrTraitsISD_EEEE) +STUB( + "+D5fxMlk9-U", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB("+DAkoxB+QvU", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle11unsetGlobalEv) STUB("+DCLUa7lUR8", sceSlimglServerSetPolicy) +STUB( + "+DCxAiCU9To", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEppEi) +STUB( + "+DHQAK+V114", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEppEv) +STUB("+DHdNBJvpcI", WKGrammarDetailCopyUserDescription) +STUB("+DJaAKgUPFU", rgctx_fetch_trampoline_mrgctx_125) +STUB("+DSNphhYdd4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEC1ERS7_) +STUB("+DUXnnaJses", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEED2Ev) STUB("+DVcq4YF6Xg", sceKernelSwitchToNeoMode) STUB("+DY07NwJb0s", sceAudioInOpenEx) +STUB( + "+DaYTn2hmiQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody24disableSystemUiMenuIsSetEv) +STUB("+DcT35QV3WA", JVM_Read) +STUB("+DcUw5YwkSY", _ZN7WebCore28InspectorFrontendClientLocal23stopProfilingJavaScriptEv) +STUB( + "+De76KhuKEs", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetBoolean5Ev) +STUB("+DmQkPGqVLw", _ZN3sce2Np9CppWebApi13InGameCatalog2V511ErrorEntity10unsetErrorEv) +STUB("+DpDBrSZWUc", WKWheelEventMake) +STUB("+DxbJ1PJtSo", _ZN3WTF13MetaAllocator17currentStatisticsEv) +STUB( + "+DyYZsT2QAg", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessions30getpostGameSessionsRequestBodyEv) STUB("+DzXseDVkeI", sceSslFreeCaList) +STUB("+DzlquDbwbg", mono_threads_enter_gc_safe_region) +STUB( + "+E1B-LNkZ94", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEC1Ev) +STUB("+E3D-W4kpl8", _ZNK7WebCore11WindowProxy6windowEv) +STUB("+EN6MgNmVv4", _ZN3WTF19addProcessPrivilegeENS_16ProcessPrivilegeE) +STUB( + "+EOPccX5adQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEaSERKS9_) +STUB("+EQNga+wsPc", _ZN3sce2np3ipc10IpmiClient4ctorEv) +STUB("+ET0vrobH9Y", _ZN3sce7Toolkit2NP2V23TUS7Request16TusVariableInputD2Ev) +STUB( + "+Eam+g1+OIQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "+EbTQGKauo4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE5clearEv) +STUB( + "+Eep2qpYhNw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEaSERKS9_) +STUB("+EfQjqmR7VY", _ZN3sce2Np9CppWebApi11Matchmaking2V18Location8fromJsonERKNS_4Json5ValueE) +STUB( + "+EhLRoR6iBM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEE5resetEPS9_) +STUB("+EhVBDfw6ts", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEC1Ev) +STUB( + "+Ejwyp4jjYI", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi16getPublicProfileEiRKNS4_27ParameterToGetPublicProfileERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_24GetPublicProfileResponseEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("+El+RMJGOLw", pio2_lo) +STUB("+ElJcxQBhPM", GCC_except_table47) +STUB("+ErgockOJwc", WKPageLoadFile) +STUB( + "+EwJIlQwzAE", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody37unsetComparedLastUpdatedUserAccountIdEv) +STUB("+ExR8wgG5XU", _ZN7WebCore9HTMLNames13onplayingAttrE) +STUB("+EzrDsM6Mas", rgctx_fetch_trampoline_mrgctx_124_p) +STUB( + "+EzuVMzBgOE", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_18SessionInformationENS1_15AppSTLAllocatorIS5_EEEED2Ev) +STUB("+F+9hhi6k9Q", _longjmp) +STUB("+F-Ssz0kEX4", + _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse22unsetMatchEndTimestampEv) +STUB("+F0NXKWH8YU", Java_java_net_NetworkInterface_getAll) +STUB("+F6NAzieFBQ", mono_aot_Mono_CSharpunbox_trampolines) +STUB("+F7C-hdk7+E", sigemptyset) +STUB( + "+F7y8kaANvQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEdeEv) +STUB("+FBfKK6l1HE", mono_aot_Sce_Vsh_Registryplt) +STUB("+FFEXddc7mg", _ItL_qS4) +STUB( + "+FFIDnU9GSM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEeqERKS9_) +STUB("+FKudG3uS8A", _ZN3JSC13JSSetIterator14finishCreationERNS_2VMEPNS_5JSSetENS_13IterationKindE) STUB("+FRvKknUj1I", sceFiosOpGetActualCount) +STUB("+FWUl-T8yG8", _ZN3JSC21MarkedJSValueRefArrayC1EP15OpaqueJSContextj) +STUB( + "+FXAHSDuiV0", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToSendGameSessionMessageD2Ev) STUB("+FYcYefsVX0", sceFontWritingLineRefersRenderStep) +STUB( + "+Fca5Eyr4BU", + _ZN3WTF14FileSystemImpl15openAndLockFileERKNS_6StringENS0_12FileOpenModeENS_9OptionSetINS0_12FileLockModeEEE) +STUB("+FcvpbbdrZM", _ZNK7WebCore4Page14renderTreeSizeEv) +STUB( + "+Fd5wl1l75U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEE21intrusive_ptr_add_refEPS7_) +STUB( + "+FeOrl8y-DI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEmmEi) +STUB( + "+Fk1sIJmfpc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEEaSERS9_) +STUB( + "+FkVVtT+OKM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEC2EPNS2_10LibContextE) +STUB( + "+FpKISoi8iQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEixEm) +STUB("+FuxYqnmUds", _ZTVN9Inspector25DatabaseBackendDispatcherE) +STUB("+FvUhrQaiJQ", WKPreferencesSetCanvasUsesAcceleratedDrawing) +STUB("+Fz7ERd-kYI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEEmmEi) STUB("+G+UsJpeXPc", sceHttpGetCookie) +STUB("+G1NKeowYHc", _ZN7bmalloc29StaticPerProcessStorageTraitsINS_11AllIsoHeapsEE7Storage8s_objectE) +STUB("+G4FSZtWmhY", mono_aot_System_Net_Httpunbox_trampolines_end) +STUB( + "+G6aU1yz2ds", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEneERKS7_) +STUB("+G9vZcqBAfY", FT_Face_CheckTrueTypePatents) +STUB("+GG9O5nkoLg", ShareInitialize) +STUB( + "+GGcAu0urlE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEC1EPNS2_10LibContextE) +STUB("+GJHl0WFS4k", _ZN3JSC22createOutOfMemoryErrorEPNS_9ExecStateERKN3WTF6StringE) +STUB( + "+GNZDy9hA3k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEC1EPKS8_) +STUB("+GOwQvxqztE", _ZN9Inspector22HeapFrontendDispatcher13trackingStartEdRKN3WTF6StringE) +STUB("+GXA7mPiX+Q", mono_aot_Sce_Vsh_SyscallWrapperunbox_trampoline_addresses) +STUB("+GYqID5YVVg", getaddrinfo) +STUB("+GgghUuOV50", g_ptr_array_sort) +STUB( + "+Ghi4BNapbo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("+Gj0bGErptI", rgctx_fetch_trampoline_rgctx_37_p) +STUB( + "+GnKJPnyz34", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEptEv) +STUB("+Gp0M0sPj9I", _ZN7WebCore11JSDOMWindow9setOpenerERN3JSC14JSGlobalObjectENS1_7JSValueE) +STUB("+GrnY8Ssf70", _ZN7WebCore8SVGNames9symbolTagE) +STUB("+Gv+a9iLWPU", _ZTVN3JSC22EdenGCActivityCallbackE) +STUB( + "+GvxwXoKnP0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEC1Ev) +STUB("+GxvfSLhoAo", _Litob) +STUB("+H-bnpXdWtk", _ZN7WebCore17NowPlayingManagernaEm) +STUB("+H5PTMieXNE", WKContextSetProcessModel) +STUB( + "+HE3J9MZ+xg", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB("+HFFvnlHfGc", il2cpp_array_new_specific) +STUB( + "+HGaF53MDZQ", + _ZN15AbstractStorage18DailymotionService23create_storage_instanceERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("+HOHgm1f0nk", utrans_open_67) +STUB( + "+HPQLcioxMk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEcvbEv) +STUB("+HQb03dI+ko", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi21ParameterToLeaveMatchC2Ev) +STUB("+HWmt-AJocg", + _ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends9setfilterENS5_6FilterE) +STUB( + "+HX+Qn98ydg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE3endEv) +STUB("+HXN6DnhN34", mono_aot_Sce_Vsh_Passcodeunbox_trampolines_end) +STUB( + "+HYH3m08QE8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEmmEi) +STUB("+HcmS7UiTTM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEEC2ERKS6_) +STUB("+HdSZEVvE1c", _ZN15AbstractStorage14DailymotionAPIC1Ev) +STUB("+HnIZdZWPQI", allocateSystem) +STUB("+HuPyGuX+jY", _ZN9Inspector15InspectorTargetD0Ev) +STUB( + "+HvPeIOmIfk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB("+I0mMwbiYEs", _ZN3NTF18URLResponseMessageD1Ev) +STUB("+I3iaqvZ-RU", mono_aot_ReactNative_Debug_DevSupportplt) STUB("+I4K03i3EL0", sceVideoOutInitializeOutputOptions) +STUB( + "+I9g6XWtaeM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEEC2Ev) +STUB( + "+IKebLO+bOU", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("+IMGO+dXHis", _ZN7WebCore6Editor16pasteAsPlainTextENS0_20FromMenuOrKeyBindingE) +STUB("+IPktZAvm18", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody19unsetNpServiceLabelEv) +STUB("+IQ63BGhOjc", _ZN12video_parser5vpcom8datetime8DateTime3NowEv) +STUB("+IUysSYM3z0", mono_aot_System_Reactive_Corejit_code_end) +STUB( + "+IVPnXIXwkI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE5clearEv) +STUB("+IVbcCSdtTE", ucase_toFullLower_67) +STUB("+IYZC9lzWGA", _ZN3sce7Toolkit2NP2V210Tournament5EventaSERKS4_) +STUB("+IaN0m1WK1E", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_6NpUserEE17getAdditionalInfoEv) STUB("+IagDajB6AQ", sceNpManagerIntSubmitUserCode) STUB("+Ib-MHNUf80", sceUsbStorageUnregisterCallback) +STUB( + "+IdJBJ+BNRE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("+ImJ026-DAw", _ZNK7WebCore6Quirks47shouldAvoidScrollingWhenFocusedContentIsVisibleEv) +STUB( + "+InRAxr21AE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEE7get_refEv) +STUB("+IoqHgIw0PM", _ZN7WebCore11DisplayList10DrawGlyphsD0Ev) +STUB( + "+It9P-+AB+k", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearch36setpostGameSessionsSearchRequestBodyENS1_6Common12IntrusivePtrINS3_33PostGameSessionsSearchRequestBodyEEE) +STUB("+IzYTiwKX6Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE3endEv) +STUB( + "+J1k6HdCTgA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEC1ERKS7_) +STUB( + "+J9dKVwE5SY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEneERKS9_) +STUB("+JCs2IrB7Lc", _ZN3sce2Np9CppWebApi11Matchmaking2V15CauseC1EPNS1_6Common10LibContextE) +STUB( + "+JG9xZM5aS0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEaSERKS7_) +STUB( + "+JJtgAjVwF8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V129SetDataInfoRequestBodyFactory6createEPNS1_6Common10LibContextEPvmPNS5_12IntrusivePtrINS3_22SetDataInfoRequestBodyEEE) +STUB("+JLp7hADt2s", cpp_demangle_data_init) +STUB("+JLtJmPAMgE", _ZN4Manx5MutexD0Ev) STUB("+JQyH57+l4k", sceBluetoothHidGetFeatureReport) +STUB( + "+JUunQ07U1o", + _ZN3sce2Np9CppWebApi7Matches2V120ResponseInGameRoster8setTeamsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_17ResponseMatchTeamEEEEE) +STUB("+JbDSpw6fX4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend7FriendsEE3setEv) +STUB("+JbWLjsVmK8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEEC1Ev) +STUB( + "+Jca1W0QHQQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEC2EPNS2_10LibContextE) +STUB("+JhexuCjuLU", + _ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBodyD2Ev) +STUB( + "+JjwsMKhIy0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEC2Ev) +STUB("+JnngM7WyHI", + _ZNK7WebCore22EmptyFrameLoaderClient29generatedMIMETypeForURLSchemeERKN3WTF6StringE) +STUB("+JpQsX8mMEw", mono_aot_Mono_CSharpplt) +STUB( + "+K2lnt-sExY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE7reserveEi) +STUB( + "+K5k9fF+aMU", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V131BandwidthUpstreamMetricsFactory6createEPNS1_6Common10LibContextEiiiPNS5_12IntrusivePtrINS3_24BandwidthUpstreamMetricsEEE) +STUB("+KAZu7rJreE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEEmmEv) +STUB("+KDChyBmSQw", _ZN3JSC7Symbols21homeObjectPrivateNameE) STUB("+KDWny9Y-6k", sceContentExportTerm) +STUB("+KIicT+q2Cc", __libunwind_Unwind_GetIP) +STUB( + "+KJ2ZSLv9C4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEE11release_refEv) STUB("+KLe+1qx374", sceFsUfsStopOperation) +STUB( + "+KP+tvccdVY", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V113RatingFactory6createEPNS1_6Common10LibContextEPKcRKjiPNS5_12IntrusivePtrINS3_6RatingEEE) +STUB("+KRiqc9d8EQ", _ZN3sce2Np9CppWebApi6Common13ParameterBaseD1Ev) +STUB("+KSnjvZ0NMc", srand48) +STUB( + "+KTj+tJpNCk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEC1EPS6_PNS2_10LibContextE) +STUB("+KUOTXQKt+Q", _ZN7WebCore9HTMLNames25onaccessibledecrementAttrE) +STUB("+KXfR7nTyNs", GCC_except_table423) +STUB("+Kb7j57jDzs", _ZN3WTF6Thread5yieldEv) +STUB( + "+KbqqHVIYo4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEneERKS9_) +STUB( + "+KdJtrDCipI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEEdeEv) +STUB("+Ki1Z8YwlXs", _ZN3JSC12JSLockHolderC2EPNS_9ExecStateE) +STUB( + "+KlWNWfAd3M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEE3getEv) +STUB( + "+KokNPL8ycs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEC2ERKS7_) +STUB("+KpfCt2RTTQ", _ZN3WTF12starAtomDataE) +STUB("+Ktgu0jok0Y", getNumOfRegisteredCommInfoList) +STUB("+Kx-IV+21hk", WKPreferencesGetCaptureVideoInUIProcessEnabled) +STUB( + "+KxeCsdK75A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "+KzLVrQIEPY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEEcvbEv) +STUB("+L+nJNrn2V4", mono_get_exception_invalid_operation) +STUB("+L01lTUdzPw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEED1Ev) +STUB("+L1K53Ku3mE", u_isalnum) +STUB("+L22kkFiXok", _sendmsg) STUB("+L5ArV1tPGA", sceVdecswCreateDecoder) +STUB( + "+L5LYM05sY4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEmmEi) +STUB("+L5b-e1RBn8", __sanitizer_get_report_path) +STUB("+L708YrKGbg", _ZN3sce7Toolkit2NP2V27Session16FixedSessionDataD2Ev) STUB("+L98PIbGttk", scePthreadRwlockUnlock) +STUB( + "+LE9Oc3+JbU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE3endEv) +STUB("+LGw19eIktE", _ZN3JSC7Symbols18forEachPrivateNameE) +STUB("+LOr6suGvNk", _ZN3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer11setPlatformEPKc) +STUB( + "+LUabdo811U", + _ZN7WebCore24DocumentMarkerController9addMarkerERKNS_11SimpleRangeENS_14DocumentMarker10MarkerTypeERKN3WTF7VariantIJNS6_6StringENS4_13DictationDataENS6_6RefPtrINS_4NodeENS6_13DumbPtrTraitsISB_EEEEEEE) +STUB("+LVSE3Fjofw", _ZN3sce7Toolkit2NP2V211UserProfile9NpProfileD1Ev) +STUB("+LVolU3eUDE", ubidi_invertMap_67) +STUB( + "+LZBd+5DZHE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEE3getEv) +STUB( + "+LcUXGrXVLI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("+Le0VsFb9mE", _ZTISt23_Generic_error_category) +STUB( + "+LhbgVKo+Fw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEE7get_refEv) +STUB("+LiOmqon2ZI", WTFSetLogChannelLevel) +STUB( + "+LjGcGDPJPw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEcvbEv) +STUB("+LjPW03VdFg", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatusD2Ev) +STUB("+LoAenYdWlM", _ZN7WebCore20SVGPathStringBuilderC1Ev) +STUB( + "+LoSSub-phc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE21intrusive_ptr_add_refEPS9_) +STUB("+LrmM3KN3N8", _ZN7WebCore11DisplayList10StrokePathD0Ev) +STUB( + "+Lxl5KTbZX4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEED1Ev) +STUB("+Ly9G7OxvE8", _ZN3sce2Np9CppWebApi13InGameCatalog2V55Error7setCodeERKi) +STUB( + "+M05GT3tzJg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEE7add_refEv) STUB("+M1lGFTMSzA", sceMusicCoreServerSetTitleId) +STUB("+M5RIA4WqMo", JNU_NewStringPlatform) +STUB("+MBimetTs2c", + _ZN12video_parser16cVideoContentMp423releaseProfilerInstanceEPNS_14iVideoProfilerE) STUB("+MCXJlWdi+s", sceSharePlayGetCurrentConnectionInfoA) +STUB( + "+MGjE3Q8asU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("+MIiJe86DmQ", mono_aot_Newtonsoft_Json_PlayStationunwind_info) +STUB( + "+MR0p5ffg4w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEE11get_deleterEv) +STUB( + "+MSaOJXzzm4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("+MW-sNgWp20", _ZNK3sce2Np9CppWebApi11Matchmaking2V15Cause6toJsonERNS_4Json5ValueEb) +STUB( + "+MZ0CYp0XsY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEEC2ERKSA_) STUB("+MdgHI0TYOw", sceM4aacEncFlush) STUB("+Mtt2MKltuQ", sceKernelDeleteSblock) +STUB("+Mu7bP5WvzQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEptEv) +STUB( + "+Mu9H5-Ao7Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEED2Ev) +STUB("+MuYdJPypkE", ASN1_TIME_print) +STUB("+MzGFuNN348", _ZN7WebCore17PageConfigurationD2Ev) STUB("+N+wrSYBLIw", sceGnmPaDisableFlipCallbacks) +STUB("+N-GwpCV4yk", _ZN7WebCore12DOMTokenList6toggleERKN3WTF10AtomStringENS1_8OptionalIbEE) +STUB( + "+N-NNwLVTMU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "+N-u9KkKv6s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE6resizeEj) +STUB("+N0S0HtBitA", _ZNSt15basic_streambufIwSt11char_traitsIwEED0Ev) +STUB( + "+N5BdmbkYrE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEEC2ERKSA_) +STUB("+N6UhRaLrJE", _ZN3JSC4Heap20edenActivityCallbackEv) +STUB("+N7MjQuH5r0", _ZN7WebCore8SVGNames17vector_effectAttrE) +STUB( + "+NBC6kmpO9I", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEneERKS9_) +STUB("+NCOiMN+Ngg", utrace_exit_67) +STUB("+NCteOHLUd4", _ZN25MmsFileUpdaterFsOperation11openTmpFileEv) +STUB("+NGrXdCa0q8", WKWebsitePoliciesSetAllowedAutoplayQuirks) +STUB( + "+NJ3DuqPaKg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEC1EPS8_) +STUB( + "+NPHPP5Qfzs", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V113ErrorResponse8fromJsonERKNS_4Json5ValueE) STUB("+NVJMeISrM4", sceUserServiceGetGlsTtsFlags) +STUB( + "+NVsnvq6gp4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEppEv) +STUB("+NXjg-1KWPc", _ZN3sce2Np9CppWebApi11Matchmaking2V19SubmitterC1EPNS1_6Common10LibContextE) +STUB("+Nc8JGdVLQs", _ZNSt9exceptionD0Ev) +STUB( + "+NciRKDxGpk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEixEm) +STUB("+Nd4bYkEgRc", ubrk_getAvailable) +STUB("+NiG+102wlw", + _ZN3sce2Np9CppWebApi14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyD1Ev) +STUB("+NiLTGGKF+E", _ZNK7WebCore6Editor8canPasteEv) +STUB("+Nqfy8HVG84", _ZN7WebCore15DatabaseManager9singletonEv) +STUB( + "+Nto+MJRxto", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB( + "+NuOgg6Hep8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("+NuhuZH75ak", _ZN7WebCore18TextureMapperLayer18setFixedToViewportEb) +STUB( + "+O3vPILNV94", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE10setContextEPNS2_10LibContextE) +STUB( + "+O7B7VXpaSE", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Runtime15SyntaxErrorTypeEEESt8optionalIT_ERKN3WTF6StringE) +STUB("+OCxbaKiBUo", _ZN3WTF5equalEPKNS_10StringImplES2_) +STUB( + "+OHZINP9VYU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("+OOjOkuWL6g", WKBundleBackForwardListGetForwardListCount) +STUB( + "+OWRwyFiafI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEED2Ev) +STUB( + "+OXobrj7RqM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE8copyFromERKS9_) +STUB( + "+OY9mjnbjgc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEdeEv) STUB("+OYjjaRc8Xs", sceShareFactoryUtilGetLaunchStatusOfShareFactory) STUB("+OavZyS-eMI", sceCesUhcUcsProfileSetSbcs) +STUB("+Oc7AcmN3h4", _ZN3sce7Toolkit2NP23DownloadListInputParamsC1Ev) +STUB( + "+Oeu4K-dJ-c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEE5resetEPS9_) +STUB("+OgbxjQ3QTw", udat_getLocaleByType_67) +STUB( + "+OjfYXZk0Ik", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEEC2ERS9_) +STUB( + "+OkTn3+PBxM", + _ZN7WebCore28collectVaryingRequestHeadersEPNS_21NetworkStorageSessionERKNS_15ResourceRequestERKNS_16ResourceResponseE) STUB("+OlXCu8qxUk", sceAppContentAppParamGetString) +STUB( + "+OlkSeIKOFY", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setInteger6ERKi) +STUB("+OmKePlbzEo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEE3getEv) +STUB("+OyQtTUb6yY", _ZN3WTF16AtomicStringImpl6lookUpEPKDsj) +STUB( + "+Oz8oaFT-bw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEC1Ev) +STUB("+P5TDFU2-fc", u_isdefined) +STUB("+P6FRGH4LfA", memmove) +STUB("+P6FRnQJc1E", sem_open) STUB("+PDSI6WgPRc", sceNpTrophy2GetGroupInfoArray) +STUB("+PDx3sfB-l4", _ZN7WebCore19approximateAsRegionERKNS_11RoundedRectEj) STUB("+PDyXnclP5w", sceHmdInternalGetPUVersion) +STUB("+PEo5Z7DOlY", cairo_paint) +STUB( + "+PNB7JBmW6Q", + _ZN7WebCore8Document8evaluateERKN3WTF6StringEPNS_4NodeEONS1_6RefPtrINS_15XPathNSResolverENS1_13DumbPtrTraitsIS8_EEEEtPNS_11XPathResultE) +STUB("+PNgG+eviNw", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V113SubtaskStatusEEC1Ev) +STUB("+POsWAWjXo8", _ZN7WebCore11HistoryItem8formDataEv) +STUB("+PQM6EVgMT4", _ZTVN3JSC12HeapAnalyzerE) +STUB( + "+PU7P07Lyjo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEdeEv) +STUB( + "+PaiSioUlH8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEEdeEv) +STUB("+PchhCH55ig", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request14PostPlayedWith9MAX_USERSE) +STUB("+PeIrQMgYpw", _ZN3WTF9URLParser23maybeCanonicalizeSchemeERKNS_6StringE) +STUB("+Pg2UsX0JOk", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEE3getEv) +STUB("+PjH28yxG7c", mono_aot_JSC_Netjit_got) STUB("+Pqub9HZCPo", pthread_barrier_destroy) STUB("+Prbx5iagl0", sceUserServiceGetGlsCameraEliminationLevel) +STUB("+Pxwa79wvyA", _Z25sceLibcForceTlsDestructori) STUB("+Q++Q49a9z8", sceNpSessionSignalingGetConnectionStatistics) +STUB( + "+Q1xnclNAMQ", + _ZN3sce2Np9CppWebApi13InGameCatalog2V514ProductFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_7ProductEEE) +STUB("+Q7xLvpc0PA", _ZN3WTF21MemoryPressureHandler15setProcessStateENS_18WebsamProcessStateE) +STUB( + "+QFRTQrICgQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEE7get_refEv) +STUB("+QHq+jlZBDo", _ZN7WebCore24CoordinatedGraphicsLayer13addChildBelowEPNS_13GraphicsLayerES2_) +STUB("+QL3zQ6ZNy4", _ZThn16_N9Inspector21InspectorConsoleAgent6enableERN3WTF6StringE) STUB("+QMFuN0mi5o", sceDebugGetFileInfoForCoredump) +STUB( + "+QO1XHAZ0OI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEE7get_refEv) +STUB( + "+QQbgGsD72U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEE7add_refEv) +STUB( + "+QVeGxy6q78", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEaSERS7_) +STUB("+QZRPht6+lU", sys_alloc) +STUB( + "+Qd+qbtGMTQ", + _ZN7WebCore21SerializedScriptValue6createERN3JSC9ExecStateENS1_7JSValueENS_22SerializationErrorModeE) +STUB("+QgCQGeexPI", mono_aot_I18N_Rarejit_got) +STUB("+QjD9JmVT10", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEEC1Ev) +STUB("+Qmj7fkB+-M", _ZN7WebCore18JSHTMLVideoElement11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("+QofO2b3Gh8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEdeEv) +STUB( + "+QpTqlAdiH0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEE11release_refEv) +STUB("+QqY4yvfTFI", ucnv_loadSharedData_67) +STUB( + "+QqhGt7MK24", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB( + "+QqzEnc5c80", + _ZN7WebCore27TranslateTransformOperationC1ERKNS_6LengthES3_S3_NS_18TransformOperation13OperationTypeE) +STUB( + "+Qrz-NT0Hu4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("+R0GXLrsPM0", _ZN3WTF13StringBuilder12appendNumberEf) +STUB( + "+R2eXISeSvw", + _ZN7WebCore22EmptyFrameLoaderClient35dispatchDidClearWindowObjectInWorldERNS_15DOMWrapperWorldE) +STUB("+R7zobv9S3E", _ZN3sce10CanvasUtil11bindTextureEhPNS_13CanvasTextureE) +STUB( + "+RCPb5icHV4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEC2EPS8_) +STUB( + "+RD9IF7ia-E", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("+RGTdP3AnK0", uprv_decNumberToUInt32_67) +STUB( + "+RLN3aaekHs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEED2Ev) +STUB("+RLa-6fbshA", FT_Stroker_Done) +STUB( + "+RQ5bmR6OFc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("+RVBvYdYfVA", _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebErrorD2Ev) STUB("+RVCwHtA5kU", sceNpManagerIntGetAccountAge) +STUB( + "+RWkxNHEVYM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEE11get_deleterEv) +STUB("+RY11rLSzEo", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE5beginEv) STUB("+RZFlwV4k3I", sceSysUtilSendSystemNotificationWithAppNameRelatedToUser) +STUB( + "+RcTNad85I0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEixEm) +STUB("+RfBdn+ODPU", cairo_mask_surface) +STUB( + "+RfP2hJ7IpA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "+RgmqLQ98x0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEED1Ev) STUB("+RhzSuuXwxo", sceNpTusSetDataVUser) +STUB("+RkwSDm5kGU", WKDownloadCancel) +STUB( + "+Rn7rLKZuU0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEcvbEv) +STUB("+RnrFA7EwuQ", _ZN3sce7Toolkit2NP2V28Commerce19ServiceEntitlementsC1Ev) +STUB( + "+RpuXWm1Mqw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("+RtBREW92M0", _ZNK7WebCore14SecurityOrigin20isSameSchemeHostPortERKS0_) +STUB( + "+RuThw5axA4", + _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tmcc) STUB("+S-2-jlpaBo", sceNetGetNameToIndex) +STUB( + "+S-M6RpQ-Ko", + _ZN3sce2Np9CppWebApi7Matches2V128ResponsePlayerResultsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_21ResponsePlayerResultsEEE) +STUB("+S3egnFljTg", _ZN3sce7Toolkit2NP2V26Friend7Friends8deepCopyERKS4_) +STUB("+S3wbdDshgw", mono_aot_I18N_Westunbox_trampolines_end) +STUB( + "+S5uolgNXXA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEeqERKS9_) +STUB("+S6HacqRIBo", Java_com_sony_bdjstack_javax_media_controls_SoundManager_getGainLevel) +STUB("+S72K+fa2-8", WKErrorCopyLocalizedDescription) +STUB("+S7ftAAWhoQ", _ZNK7WebCore11MessagePort5derefEv) +STUB("+S7wr6H9Puo", _ZN7WebCore8SVGNames20requiredFeaturesAttrE) +STUB("+SHzgUiuQDE", _ZNK7WebCore17MouseRelatedEvent1yEv) +STUB("+SJV7U08g9E", allocateVideo) +STUB( + "+SLNCwLXghs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("+SMBrTixsiA", _ZNK15AbstractStorage14YoutubeContent7GetStatEPNS_4StatE) +STUB( + "+SPy37ZS69U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEED2Ev) +STUB( + "+SVn1VwOIiw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEE5resetEPS9_) +STUB("+SeQg8c1WC0", _Flt) +STUB("+Sgy63JgEgQ", _ZN7WebCore9FloatRectC2ERKNS_7IntRectE) +STUB("+SjcGg0vjiw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEC1Ev) +STUB("+Sozphy1Wa8", _ZN7WebCore15AffineTransform9translateERKNS_9FloatSizeE) +STUB("+Sswi4eZxvM", _ZN7WebCore11JSDOMWindow11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB( + "+SvaL6iOMM8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE8pushBackERKS8_) +STUB( + "+T-vi8xeg6c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEmmEv) +STUB("+T1qp2oAECs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEEC1Ev) +STUB("+T5iwpOl2oY", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE8pushBackERKS6_) +STUB("+T6s7lG6CIs", _ZN12video_parser5vpcom4InitEPNS0_10_VP_FILEIOEPNS0_13_VP_MEMACCESSE) STUB("+T8Xo6LtFJI", sceAgcDriverAgrSubmitMultiDcbs) +STUB("+TAYtLoToXs", _ZN3sce7Toolkit2NP2V28Commerce12SubContainer8deepCopyERKS4_) +STUB("+TF60FmY-hk", png_free_default) +STUB("+TFxCLoE0JA", _ZN7WebCore22externalRepresentationEPNS_7ElementEj) +STUB( + "+THW47hfTjk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE3endEv) +STUB("+TJLm+3UBQ4", _ZN3sce7Toolkit2NP15PresenceRequestC1Ev) +STUB("+TJY5KIu4IY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEEC1Ev) +STUB("+TMB5dZmYk4", il2cpp_class_from_type) +STUB("+TMeXxuhF8A", _ZN7WebCore9HTMLNames20onwebkitkeyerrorAttrE) STUB("+TN0oRTBxJQ", sceAgcDriverIsTraceInProgress) +STUB("+TPG7zQdn6Y", _ZN3sce2Np9CppWebApi7Matches2V14Task8fromJsonERKNS_4Json5ValueE) +STUB("+TPntL1OK80", _ZNK3JSC18PropertyDescriptor6setterEv) +STUB( + "+TSS9zVYI54", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("+TT+AplhQWA", WKContextSetDownloadClient) +STUB( + "+TThaJVtU1Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE8copyFromERKS9_) +STUB("+TU4zK4D7KA", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10setString7EPKc) +STUB( + "+TXH8e7vyoQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEE7get_refEv) +STUB( + "+TXUKN8jz6A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE7popBackEv) +STUB("+TZJT3fRFOI", _ZN3sce2Np9CppWebApi6Common8IteratorIfEmmEv) +STUB("+TculRjEilg", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12string4IsSetEv) +STUB( + "+TdrexD9g-I", + _ZNK3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody16customData1IsSetEv) +STUB( + "+TjNmuhxdBQ", + _ZN9Inspector23CanvasBackendDispatcher6createERNS_17BackendDispatcherEPNS_30CanvasBackendDispatcherHandlerE) +STUB("+TktRPDfw0Y", cairo_font_options_set_hint_metrics) +STUB( + "+TmGZ8DFBuo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEE11get_deleterEv) +STUB("+TpjDh86I7s", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE7popBackEv) +STUB("+Ts4tkJjqS8", _ZNK3sce2Np9CppWebApi11UserProfile2V112BasicProfile19personalDetailIsSetEv) +STUB("+TtUFzALoDc", _ZTISt7codecvtIDic9_MbstatetE) +STUB( + "+TtgY6TfFuE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEplEm) +STUB( + "+U-nxwdrnDY", + _ZN7WebCore15DeferredPromise12callFunctionERN3JSC14JSGlobalObjectENS0_11ResolveModeENS1_7JSValueE) STUB("+U1R4WtXvoc", pthread_detach) +STUB( + "+U1dkR3eSMM", + _ZN3sce7Toolkit2NP8Sessions9Interface25setInvitationDataUsedFlagEPKNS1_21InvitationDataRequestEPNS1_9Utilities6FutureIiEEb) +STUB("+UBcVRydxu4", + _ZNK3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayer17pushContextsIsSetEv) +STUB("+UFW4Fvxx1E", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V127ConnectionQualityPropertiesD2Ev) +STUB("+UKI-MUuiCU", + _ZN7WebCore21PlatformKeyboardEvent24disambiguateKeyDownEventENS_13PlatformEvent4TypeEb) +STUB("+UQIOUMc7e8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEEC1Ev) +STUB( + "+UTa75Pu3Zo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEppEv) +STUB("+UTitEAfFqg", _ZN3NTF5Mutex7tryLockEv) +STUB( + "+UZcyLdAFOI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEED1Ev) +STUB("+UgGUWPkGQk", mono_property_hash_remove_object) +STUB( + "+Ui3mgWJ6sg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEdeEv) +STUB("+UmSejQaFOc", mono_aot_Sce_Vsh_VideoFramework_Platformplt_end) +STUB("+UmoBB-Kur0", GetAccountCountryA) +STUB("+Uuj++A+I14", _ZTv0_n24_NSiD1Ev) +STUB("+UvjudVMiac", _ZN3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error8unsetTidEv) +STUB( + "+Uw-PejdYik", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEEC1ERSA_) +STUB("+UyKxWAnqIU", _ZN3sce16CommonDialogUtil6ClientD2Ev) +STUB( + "+UyRDMNEiEM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE5emptyEv) STUB("+UzzSnc0z9A", sceHmdInternalEventInitialize) +STUB( + "+V-zPW9shIU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEC2ERKS7_) +STUB( + "+V5A0luRx+A", + _ZN7WebCore22EmptyFrameLoaderClient39dispatchDecidePolicyForNavigationActionERKNS_16NavigationActionERKNS_15ResourceRequestERKNS_16ResourceResponseEPNS_9FormStateENS_18PolicyDecisionModeEON3WTF8FunctionIFvNS_12PolicyActionEEEE) +STUB( + "+V5blyCSzVQ", + _ZN9Inspector14ConsoleMessageC1EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelERKN3WTF6StringES8_jjPNS1_9ExecStateEm) +STUB( + "+V8bB+MtN-E", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEneERKS9_) +STUB("+VC2a8sNzhc", _ZN3sce7Toolkit2NP15AppSTLAllocatorIiE10deallocateEPim) +STUB("+VFypyIHA0Y", mono_aot_Sce_Vsh_MimeTypeunbox_trampolines_end) +STUB("+VG-R77LB4M", WKContextConfigurationSetStorageProcessPath) +STUB("+VL0i6txBE8", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getSubtitleType) +STUB( + "+VQZboVviRg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEC2EPNS2_10LibContextE) +STUB( + "+VSr6sEORl8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEaSERS7_) +STUB( + "+VTpp5afoFA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "+VVguoJWXgQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "+VYC0pbfrxM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("+VcXKROlmjY", _ZN3sce7Toolkit2NP2V26Friend16FriendsOfFriendsD2Ev) +STUB( + "+Vi9ckVPfxM", + _ZN3JSC12RegExpObject23getGenericPropertyNamesEPNS_8JSObjectEPNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB( + "+Vs59TZMiaI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEE11release_refEv) +STUB( + "+VvULKa2tjs", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats18setFrequentlyMutedERKNS1_6Common12IntrusivePtrINS3_15FrequentlyMutedEEE) +STUB("+VvktcfIouQ", _ZN7WebCore9JSElementD2Ev) +STUB("+VwnOe5+8kU", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE8capacityEv) +STUB( + "+VxoqmAijjQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("+W-Nx4D7Up8", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17SetGameDataResultEE3setEv) +STUB( + "+W77CCE4Q6M", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetBoolean7Ev) +STUB( + "+W7fL6PWOhw", + _ZN3sce2Np9CppWebApi14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBody14setInvitationsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_30RequestPlayerSessionInvitationEEEEE) +STUB( + "+W9HuUSauTc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("+WI+fapCx44", _ZN3sce7Toolkit2NP9Utilities10FutureImplC1Ev) +STUB("+WLgzxv5xYA", __sync_fetch_and_add_16) +STUB("+WNjSGwkEgc", usearch_getMatchedText_67) +STUB( + "+WRHSZqLXuI", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitations12getsessionIdEv) +STUB("+WRlkKjZvag", _readv) +STUB("+WS2yRv5aBI", _ZN9Inspector14InspectorAgentC2ERNS_12AgentContextE) +STUB( + "+WS9NRcyGds", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEC1EPS8_) +STUB( + "+WWqyrAccNg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEppEv) +STUB("+WXOhitRdkQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE5emptyEv) +STUB( + "+WZ1l9QP3kY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEE11get_deleterEv) +STUB( + "+WfrdXY7Fxs", + _ZN3sce2Np9CppWebApi14SessionManager2V115SearchCondition9setValuesERKNS1_6Common6VectorINS5_6StringEEE) +STUB("+WnETlI-PdI", _ZN7WebCore12ChromeClient24disableSuddenTerminationEv) +STUB( + "+WqK5B5gTDM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE5clearEv) +STUB( + "+Wsf8VoHXn8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEeqERKS9_) +STUB("+WtCTlFS6Ao", _ZNK7WebCore18ScrollingStateTree14stateNodeForIDEm) +STUB("+WvmZi3216M", _ZNSt13basic_filebufIwSt11char_traitsIwEE4syncEv) +STUB("+X-5yNFPbDw", __muloti4) +STUB( + "+X14bIygJxI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) STUB("+X1Kgnn3bzg", sceCameraStopByHandle) +STUB( + "+X2eDEOVSQQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEC2Ev) +STUB("+X41Is9kAPs", _ZN7WebCore8blankURLEv) +STUB( + "+X4THvzyIyc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEmmEi) +STUB("+X5OqwDYqdM", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_17MessageAttachmentEEC2Ev) +STUB("+X7OWjgXRjg", + _ZNK3sce2Np9CppWebApi7Matches2V126RequestTeamMemberStatistic6toJsonERNS_4Json5ValueEb) +STUB( + "+X9FrED0h28", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEptEv) +STUB( + "+XBeMHSmZc4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEE5resetEPS9_) STUB("+XPO-y2Kmt8", sceAppInstUtilRequestInstallDiscGame) +STUB( + "+XRAR50JOcc", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification16FriendlistUpdateEE12deepCopyFromERS8_) +STUB("+XY0jzNrKsA", _ZN9Inspector21createScriptCallStackEPN3JSC9ExecStateEm) +STUB("+XZ85Y+o7JM", ufmt_getLong_67) +STUB("+XZ94W5QGf8", _ZN3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead13unsetTicketIdEv) +STUB("+XZfnHByVO0", _ZN7WebCore18TextureMapperLayer15setBoundsOriginERKNS_10FloatPointE) +STUB( + "+Xe2-TJDSJg", + _ZN3sce2Np9CppWebApi14SessionManager2V134RequestGameSessionSpectatorFactory6createEPNS1_6Common10LibContextEPKcS9_PNS5_12IntrusivePtrINS3_27RequestGameSessionSpectatorEEE) +STUB("+XiOtdILEHI", _ZN15AbstractStorage14YoutubeContent12readExternalESt10shared_ptrINS_7ContentEE) +STUB( + "+XjvMtyZ0Mg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEC1EPS6_PNS2_10LibContextE) +STUB( + "+XkeJVfP1mw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEEC2Ev) STUB("+XlDnumvLVA", sceVideoOutGetHdmiMonitorInfo_) +STUB("+XnLLwt2q-Y", FcPatternRemove) STUB("+Xne3E9M-E8", sceHidControlSetJediVolumeGain) +STUB( + "+XoLKTwkHYU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEaSERKS7_) +STUB( + "+XqOvTTQoHE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEC2EPNS2_10LibContextE) STUB("+XuZD9HV0p4", sceKernelGetUtokenNpEnvSwitchingForRcmgr) +STUB("+XybtqBH-dw", ubidi_getBaseDirection_67) +STUB("+Y+GvPvwUeY", _ZN3sce2Np9CppWebApi6Common6StringC1Ev) STUB("+Y1acHGomGQ", sceNpFriendListDialogClose) +STUB( + "+Y2x1XJowKA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEC2EPS8_) +STUB( + "+Y4+-Qo5v5A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEC2EPS8_) +STUB("+YBfWz5udq4", WKWebsiteDataStoreHasAppBoundSession) +STUB("+YC15G75LHE", delegate_invoke_impl_target_2_p) +STUB("+YFoMsoUpu8", rgctx_fetch_trampoline_rgctx_100) +STUB( + "+YJFW-t0zbE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) STUB("+YKXDq904dc", sceAudioOut2MbusInit) +STUB("+YPwmEWTZwE", _ZN7WebCore20ResourceHandleClientD0Ev) +STUB( + "+YSHm0nb+Dw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE3endEv) +STUB( + "+YU4jAhUeug", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("+YUitWGlDuo", _ZL14ext_once_state) STUB("+YX0z-GUSNw", sceCoredumpAttachMemoryRegion) +STUB("+YYEOsi3IMk", _ZN7WebCore7Element27dispatchMouseForceWillBeginEv) +STUB("+YbLnJwL+xw", AsyncStorageOpenNative) +STUB( + "+YcFwKDAR+w", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "+Yd4nap86uI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE10setContextEPNS2_10LibContextE) +STUB("+YgOMHqTH6w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEEC2Ev) +STUB("+Yi2J5gcY1U", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesD1Ev) +STUB("+YjjI7wlRaI", _ZN12video_parser25_isValidArtworkResolutionEjj) STUB("+Yp6+orqf1M", scePadResetLightBarAllByPortType) +STUB("+YqSDxzOvVA", __tsan_atomic16_store) +STUB("+YqVizLCtK4", mono_image_loaded_by_guid_full) +STUB( + "+YrfcHy+etk", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsersD1Ev) +STUB("+Yt7tRH8RCA", _ZTVN7WebCore11DisplayList14ConcatenateCTME) +STUB( + "+YxSiO-6XfA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEE5resetEPSA_) +STUB("+YyqQTUIQJQ", _ZN9Inspector21CSSFrontendDispatchernaEm) +STUB( + "+Z4xgv3mOm4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEEC2ERSA_) +STUB("+Z5Bv5pJvsA", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V314MissingElement7getNameEv) +STUB( + "+Z6KjyZ4Us4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEmmEi) +STUB("+ZC8QYB-BA8", _ZN3sce2np3ipc17ServiceIpmiClient13PollEventFlagEijmjPm) +STUB("+ZODIUViXvs", udata_printError) +STUB( + "+ZOMNFeqthU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEaSERKSC_) +STUB( + "+ZRGrS2ZQYs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEED2Ev) +STUB( + "+ZfcTj9uzow", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("+ZftUDCU6rw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEEC2Ev) +STUB("+ZgGbFykhls", _ZNK7WebCore14DocumentLoader12mainResourceEv) +STUB( + "+Zhm401Zw4A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEptEv) +STUB( + "+ZoLkKuBrkA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEED1Ev) +STUB( + "+Zur0S4T+H8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEC2Ev) STUB("+Zv+OWIytek", sceLncUtilSystemShutdown) +STUB("+ZwjLJ74Y38", _ZN7WebCore8Document5closeEv) +STUB("+a4dUflrkFM", + _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody14setRulesetNameEPKc) +STUB( + "+a9HkGama2I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "+aA0lFGKJfA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEneERKS9_) +STUB( + "+aHwBfGAf5E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEE11release_refEv) +STUB( + "+aK15BpdXdY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE5eraseENS2_8IteratorIS6_EERS9_) +STUB("+aNQf0t6YIc", _ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody11getLocationEv) +STUB("+aP2TUR+mlY", _ZN3sce7Toolkit2NP2V28Commerce7Request14CheckoutTargetC1Ev) +STUB( + "+aUP5oFK7y4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("+aWuyyuTuQE", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112GroupingTypeEEaSERKS7_) +STUB( + "+akuXyFLw44", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE5beginEv) +STUB("+am1Woo7Sss", + _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBodyC2EPNS1_6Common10LibContextE) STUB("+anuSx2avHQ", sceNpInGameMessageDeleteHandle) +STUB( + "+apMlLOxpk8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEED1Ev) +STUB("+aqNTRcIsnA", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEED1Ev) STUB("+arkFfg6uxw", scePsmUtilRegisterCallbacks) +STUB("+awEBGL0-8g", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament6EventsEED1Ev) +STUB( + "+azu151bSo8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEplEm) +STUB("+b+a93T4pvo", mono_stack_walk_async_safe) +STUB("+b1xwU7aUwU", _ZN7WebCore21markerTextForListItemEPNS_7ElementE) STUB("+b34-CLWc0s", sceAgcDriverUserDataWritePushMarker) +STUB("+b5TfVQ3-4s", _ZN7WebCore11MediaPlayer13addVideoTrackERNS_17VideoTrackPrivateE) STUB("+bD5Mw5pm4A", sceDataTransferHostLaunch) +STUB("+bDb7iby5NI", _ZNK7WebCore10FloatPoint15matrixTransformERKNS_20TransformationMatrixE) +STUB( + "+bEmcQw3bms", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("+bFVZHy54tw", _ZN3sce2Np9CppWebApi11UserProfile2V16AvatarC2EPNS1_6Common10LibContextE) +STUB( + "+bGT0mudElw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "+bKHGz+nfxA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEED1Ev) STUB("+bMkbKRF6Bo", scePerfTraceCreate) +STUB("+bPLHB2RpZM", _ZN3sce7Toolkit2NP2V27Ranking7Request15GetRangeOfRanks14MAX_NUM_BOARDSE) STUB("+bRDRotfj0Y", sceSaveDataGetSaveDataRootDir) +STUB("+bRRhPeBqZI", FTA_Export_Module_smooth_lcd) +STUB( + "+bUcgwvM-Nk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE8copyFromERKS9_) +STUB("+bUsxQOsRrs", c20) +STUB("+bWXcj6GSEo", _ZN7WebCore8SVGNames20kernelUnitLengthAttrE) +STUB("+bZHOrd+j-8", LOGICAL_PAGE_SIZE) +STUB( + "+baqz7ahOng", + _ZThn16_N9Inspector22InspectorDebuggerAgent19evaluateOnCallFrameERN3WTF6StringERKS2_S5_PS4_PKbS8_S8_S8_S8_S8_RNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISC_EEEERNS1_8OptionalIbEERNSH_IiEE) +STUB("+bpbw8d2OpU", _ZN3sce7Toolkit2NP2V23TUS7Request12SetVariablesC2Ev) +STUB("+bs5hxUx9H8", _ZN12video_parser17cVideoOperatorM4vD1Ev) +STUB("+bvtn3pCtek", _ZNK7WebCore11CryptoKeyEC9exportRawEv) +STUB("+byORTSkWQo", _ZN9Inspector22RemoteInspectionTargetD2Ev) +STUB("+bzQstM51-c", mono_aot_Sce_Vsh_SystemLoggerUtilWrapperjit_code_end) +STUB("+c2s3LcdpjI", _ZN3sce7Toolkit2NP2V27Ranking7Request15GetRangeOfRanksD1Ev) +STUB("+c80CcjZFJc", _ZN7WebCore9HTMLNames11onkeyupAttrE) +STUB("+c8yad1Yodo", mono_btls_x509_get_public_key_asn1) STUB("+cE4Jx431wc", scePadEnableExtensionPort) +STUB( + "+cHNGUw2Gso", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "+cHQSR34crs", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("+cHw5miSmpk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEEC1EPNS2_10LibContextE) +STUB("+cI2Trsp+yY", __asan_report_exp_store16) +STUB("+cKrW2ELayg", u_fscanf_67) +STUB("+cP+N-dOjM4", _ZN12video_parser18cMp4FFLHndlManager8useTrackEj) STUB("+cSD1hGmg+0", sceDebugGetModuleInfo) +STUB("+cTPcVnF0Sc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEEC2EPS6_) +STUB("+cU0Np4JB9g", _ZN3sce7Toolkit2NP2V28Matching4Data5resetEv) +STUB("+caGEFeVZd8", glInvalidateSubFramebuffer) +STUB( + "+cb0csU0I64", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEE11get_deleterEv) +STUB("+ccnYelDjYA", jpeg_natural_order) +STUB("+cq5DYTYew8", _ZN3sce7Toolkit2NP2V27Ranking10UsersRanksaSERKS4_) +STUB("+dAwquupevQ", _ZNK7WebCore5Color9lightenedEv) +STUB("+dBisZM4cLY", tinytens) +STUB( + "+dCnjNAooiM", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("+dGO+GS2ZXQ", _ZN3sce2np9WorkQueue4InitEPKcimm) +STUB("+dGYWQxv5k4", mono_btls_bio_read) +STUB( + "+dIW7qmTTJs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("+dIkRcrPUX8", JVM_GetMethodIxArgsSize) +STUB("+dJgS9Bei2w", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEEplEm) STUB("+dLapxrRdJM", sceApplicationNotifyCoredumpRequestProgress) +STUB( + "+dLm8i++jd8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE21intrusive_ptr_add_refEPS9_) +STUB("+dPfbWlRgmU", + _ZN15AbstractStorage14TwitterStorage7IsExistERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("+dPyq67SQM8", _rtld_free_tls) +STUB("+dTlroLZao8", _ZN9Inspector22InspectorDebuggerAgent20setPauseOnAssertionsERN3WTF6StringEb) +STUB( + "+dV1gZ7ZjF4", + _ZN3sce2Np9CppWebApi7Matches2V120ChildActivityFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_13ChildActivityEEE) STUB("+dVBPC74ZhM", sceLibSecureAddHash) +STUB( + "+dYY-UUQGzU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEC2EPNS2_10LibContextE) +STUB("+djhZV4Ulbs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEEC2EPS6_) +STUB("+dlfEIcJpLM", fuse_lowlevel_new) +STUB( + "+drDFyAS6u4", + _ZN3sce4Json11Initializer27setGlobalNullAccessCallbackEPFRKNS0_5ValueENS0_9ValueTypeEPS3_PvES7_) +STUB("+drp8M9wJhc", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session8SessionsEE3setEv) STUB("+dwA2Fv+uXk", sceM4aacEncEncodeWithPriorityEx) +STUB( + "+dx0rJ0BJU4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE5beginEv) +STUB( + "+dzunfLnaIY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEEC2ERKSA_) +STUB("+e3Bdk+MqN8", _ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequest17setNpServiceLabelERKi) STUB("+e96RoSI62w", sceAppInstUtilRequestDataDiscCopy) +STUB("+eCt8SuNJt8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEEdeEv) STUB("+eFOGH-2A8M", sceAudiodecDecode2) +STUB( + "+eG--zIkcgU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEmmEv) +STUB("+eH7qoT53fs", _ZN3sce7Toolkit2NP16LikeStoryRequestC2Ev) STUB("+eHwb+y5f1w", sceFsUfsReallocateSparseFile) +STUB("+eI85WYDrUY", _ZNKSt9basic_iosIwSt11char_traitsIwEE3tieEv) +STUB( + "+eKs4SJvfwo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEEaSERSA_) +STUB( + "+eKwuhAaMoY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEE3getEv) +STUB( + "+eLOr7oXPcg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB( + "+eNA5mkhlq0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE5emptyEv) +STUB("+eVN0UdRT8c", _ZN7WebCore14ResourceLoader5startEv) +STUB("+eYx2w4ubuM", mono_btls_x509_lookup_add_dir) STUB("+eZsBesRiBM", ScePsmMonoDlFallbackRegister) +STUB("+edN0l5oq-M", mono_aot_Sce_Vsh_Sl2_NativeQueueClientplt_end) +STUB("+eeAyPSj5jw", + _ZN3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer13setPlayerTypeERKNS3_10PlayerTypeE) +STUB("+eeIdWGa+50", GCC_except_table46) +STUB("+egCcKBsQk0", _Z36sceRazorGpuThreadTraceEnableCountersPN3sce3Gnm21DispatchCommandBufferE) STUB("+ehNXJPUyhk", sceFontFtSupportSystemFonts) +STUB("+eiEXbd0+eE", times) +STUB( + "+enL+grRqdU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEE5resetEPS6_) +STUB( + "+eolPg53UUc", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_11ProductInfoENS1_15AppSTLAllocatorIS5_EEEEC1Ev) STUB("+epU+rgObyw", sceVideoOutSysCursorObtain) +STUB("+epVkVPj4B8", _ZN3JSC7Symbols20isJSArrayPrivateNameE) +STUB("+espSlKF9Uc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V117InvitableUserTypeEEptEv) +STUB( + "+eu18mM9DTM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEE3getEv) +STUB( + "+euW7klKfLU", + _ZN7WebCore27PlatformMediaSessionManager30didReceiveRemoteControlCommandENS_20PlatformMediaSession24RemoteControlCommandTypeEPKNS1_21RemoteCommandArgumentE) +STUB( + "+evu2K7P7zI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEC2EPS8_) +STUB("+ewEHVkVfcU", mspace_unlock) STUB("+ezgWao0wo8", sceNetDumpAbort) +STUB("+f0eKTUgPRQ", _ZN23sceMetadataReaderWriter13KeyValueArray6shrinkEv) +STUB( + "+f1fr5DTJJ0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEptEv) +STUB( + "+f3mpQWp5pU", + _ZN3sce2Np9CppWebApi14SessionManager2V129GameSessionPushContextFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_22GameSessionPushContextEEE) +STUB("+f4NidpzOuI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEmmEv) +STUB("+f5+jFgsQMo", _ZN3sce7Toolkit2NP2V212ActivityFeed14PlayedWithFeedC2Ev) +STUB( + "+f7VqaR-ZMg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEE11release_refEv) +STUB("+fA-tpNvZNg", _ZN3sce2np12NpTitleTokenD1Ev) +STUB( + "+fEYdNgAuYo", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeAccountId2OnlineIdBatchC2Ev) +STUB( + "+fEvCdg9D9w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE7reserveEi) +STUB("+fGVLAT42G8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEC2ERKS7_) +STUB("+fMkDXxU9E0", + _ZN15AbstractStorage14StorageManager12NotifyRemoveERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) +STUB("+fN-IYYBqK4", _ZN3WTF11Persistence7Decoder6decodeERh) +STUB("+fOingBMo5A", UCNV_FROM_U_CALLBACK_STOP_59) +STUB("+fTKZiGqo8E", _ZNK7WebCore27TranslateTransformOperation5cloneEv) +STUB("+fWmgIg68kg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEC1EPS8_) +STUB("+fbGO9aoclw", _ZN7WebCore10XMLNSNames17xmlnsNamespaceURIE) +STUB("+feeFP8Y2+c", WKPageCanDelete) +STUB( + "+ffmW8Y1MMY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE4sizeEv) +STUB( + "+fjeqc-HNa0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE21intrusive_ptr_add_refEPS9_) +STUB("+fo47VU51qw", goby_ProcessMessage) +STUB("+fpgSfbPPeM", _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForReadD2Ev) +STUB("+fu-XeN7GQM", _ZN3sce2Np9CppWebApi11Matchmaking2V18Location18unsetGameSessionIdEv) +STUB( + "+fvZBj9zLNo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEEptEv) STUB("+g+UP8Pyfmo", sceKernelGetProcessType) +STUB("+g0V0Clerbg", mono_metadata_parse_typedef_or_ref) +STUB("+gGhrs1m6ac", + _ZNK3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayer6toJsonERNS_4Json5ValueEb) +STUB( + "+gSMGXHgrPU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEneERKS9_) +STUB( + "+gVsgubDJyc", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE18getResponseHeadersERS7_) +STUB("+gWaO8tDgqM", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanityC2ERS5_) +STUB( + "+ghYAC0qFAM", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("+gjVDCDk604", g_locale_to_utf8) +STUB("+goJVfor624", _ZN3sce2Np9CppWebApi6Common18ResponseHeaderBase7destroyEPS3_) +STUB( + "+gpuhK6SW4I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEC2Ev) +STUB("+gy6TjYKbNE", rgctx_fetch_trampoline_rgctx_60_p) +STUB("+h+Yed9M-vc", rgctx_fetch_trampoline_rgctx_59) +STUB( + "+h-B9CYtwQc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEcvbEv) STUB("+h5AoR4cUgc", sceCustomMusicCoreStartOperation2) +STUB( + "+h5pRzH4doQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "+hAReIGbWgw", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivitiesC2ERS6_) +STUB("+hBOLtYWNJo", _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSessionD2Ev) +STUB("+hDIeI+jHYs", _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession13getMaxPlayersEv) +STUB("+hFjyohmOU0", mincore) +STUB("+hHa4QYtLY8", _ZN3sce4Json5ValueC2EPKc) +STUB("+hJ84ojRt-g", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed13UsersWhoLikedEE3getEv) +STUB("+hKyaJJCE+0", _ZN3sce2np9HttpTrans11SendRequestEPNS0_6HandleEPKvm) STUB("+hLkT-vIyQE", scePatchCheckerGetApplicableTick) +STUB("+hU1oroPrjI", mono_btls_pkcs12_add_cert) +STUB("+hWBSj-+bFI", _ZNK3sce2Np9CppWebApi7Matches2V15Error14getReferenceIdEv) +STUB("+hXITgeLM4s", __tsan_atomic64_fetch_add) +STUB("+hYSMjgDouo", _ZN12Mp4Retriever11skipBoxBodyEv) +STUB("+hYsagaV-Ug", _ZN3sce4Json6Object4PairC1ERKNS0_6StringERKNS0_5ValueE) +STUB( + "+hjXHfvy1Mg", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERd) +STUB( + "+hkBZG9Dg84", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEplEm) +STUB("+hl-bzB+Gd8", _ZN7WebCore23CoordinatedImageBacking23clearContentsTimerFiredEv) +STUB("+hlZqs-XpUM", _ZTVSt7_MpunctIwE) +STUB("+htBBgi85YA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEptEv) +STUB( + "+i+vXbqYQMo", + _ZN9Inspector20DOMBackendDispatcher16getSearchResultsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "+i2S1YEJPfU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEmmEi) +STUB("+i52DheCDGI", _ZN7WebCore9HTMLNames9ismapAttrE) +STUB("+i81FtUCarA", + _ZNKSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecPK2tmcc) +STUB( + "+iEDIKpUZ14", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEC1EPKS8_) +STUB( + "+iJarSumtxo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEEC2ERSA_) +STUB("+iK2h7082no", uregex_getMatchCallback_67) +STUB( + "+iL10n8I0mw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("+iLBOBrdx5A", WKNotificationCopyDir) +STUB("+iLdIVuhDhY", _ZNK7WebCore9FloatRect8containsERKS0_) +STUB("+iOUPKA+ckk", uprv_trunc_67) +STUB( + "+iPx2IddvEY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEED1Ev) STUB("+iVwFsjXaFQ", sceKernelDebugGpuPaDebugIsInProgress) +STUB( + "+iXDFPESNGs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEC1ERS7_) +STUB("+iYaEuGvCwU", mono_aot_Sce_Vsh_GameCustomDatajit_code_end) +STUB("+ieBNKg1wAA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEEC2EPS6_) +STUB("+ievrHfHGsg", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V18Variable8setValueERKl) +STUB( + "+ij7tOPnsas", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEE7get_refEv) STUB("+ip+qI1bBCg", ScePsmMonoRuntimeResourceLimit) +STUB("+ipcGv+FKsc", + _ZN7WebCore19JSHTMLSelectElement10putByIndexEPN3JSC6JSCellEPNS1_9ExecStateEjNS1_7JSValueEb) +STUB("+isUKw4zud4", _ZNK3sce4Json6Object8iteratorneERKS2_) +STUB( + "+itpx2nraRw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEEC2ERSA_) +STUB("+iy+BecyFVw", __atomic_load) +STUB("+j+lWGfh7jg", JVM_GetMethodAnnotations) +STUB( + "+j2LqgVLCNA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEneERKS9_) +STUB("+j2vIkVa2c4", mono_install_runtime_cleanup) +STUB("+j7kCGu+lk8", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product18unsetContentRatingEv) +STUB( + "+j8bZZo+fDA", + _ZN7WebCore28collectVaryingRequestHeadersERKNS_15ResourceRequestERKNS_16ResourceResponseEN3PAL9SessionIDE) +STUB("+jBdpELLGNA", _ZN3JSC8JSObject12getPrototypeEPS0_PNS_14JSGlobalObjectE) +STUB("+jG4wqqA8yg", + _ZN7WebCore20LegacySchemeRegistry33shouldTreatURLSchemeAsCORSEnabledERKN3WTF6StringE) +STUB( + "+jHsYmG5nS0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE7reserveEi) +STUB( + "+jJbuldpugk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("+jLvgfDA97c", _ZN7WebCore16MIMETypeRegistry12pdfMIMETypesEv) +STUB("+jSdAF6qTFc", _Z38sceGpuDebuggerSetEnabledExceptionsMaskPN3sce3Gnm16EsStageRegistersEj) +STUB("+jT+EakSFsc", _ZN3sce2Np9CppWebApi6Common6VectorIfEixEm) STUB("+jVaKSG0nHk", sceShellCoreUtilExfatFormatExternalHdd) STUB("+jXJrpWKok8", sceRnpsAppMgrHasEventForShellUI) +STUB("+ji7IBGwnCM", WKUserContentExtensionStoreRemove) +STUB("+jiief7TbqY", _ZN3sce7Toolkit2NP2V26Trophy16UnlockedTrophies5resetEv) +STUB( + "+jkovTjneII", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEmmEv) +STUB( + "+jn7gMdgfk4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE3endEv) STUB("+jqQjsancTs", sceFontFtSupportFontFormats) +STUB( + "+jqwsobz5uo", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody25unsetTotalDataStatusCountEv) +STUB( + "+jrc3QdwcDQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE5beginEv) +STUB( + "+jukwHxATpA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE21intrusive_ptr_sub_refEPS9_) +STUB("+jvfakVKv7M", _ZN3JSC7Symbols29generatorFieldNextPrivateNameE) +STUB("+jwkB1yiTTs", mono_aot_Sce_Vsh_UpdateServiceWrapperplt_end) +STUB( + "+jwmj7nwZmw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEC1EPS6_PNS2_10LibContextE) +STUB( + "+jxVL+h5BfY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEED2Ev) +STUB( + "+jy8g-lyLfI", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions27unsetusePlayerSessionFilterEv) +STUB("+k+ScVKAlVA", _ZTSg) +STUB("+k2KKLVS+t8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEC1Ev) +STUB("+k3JGU-UUXo", _ZN9Inspector21InspectorRuntimeAgent6enableERN3WTF6StringE) +STUB("+k8qx70PRSQ", + _ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse12setAccountIdERKm) +STUB( + "+k8zhFsgbJs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEmmEv) STUB("+k91hoTuoA8", sceAudioOut2SpeakerArrayCreate) +STUB( + "+kAOgY5fSVQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEEaSERSA_) +STUB("+kAtAhAVcd0", _ZNK3sce3Xml3Dom4Node13getAttributesEv) +STUB( + "+kE3dyEXHQQ", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi14getMatchDetailEiRKNS4_25ParameterToGetMatchDetailERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_22GetMatchDetailResponseEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("+kOB1+6k8W8", _ZN3WTF24numberToFixedWidthStringEdjPc) STUB("+kSrjIVxKFE", sceAgcDcbPushMarker) +STUB("+kW1UpM9xfM", _Getint.digits) +STUB("+kX-CdbguB0", _ZN9Inspector31NetworkBackendDispatcherHandleraSERKS0_) +STUB( + "+kXmddRa2NA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE5clearEv) +STUB("+kcEDbbccxw", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getMixerPanFR) +STUB("+kd2qcTMvHE", u_getISOComment) +STUB( + "+keCNfFZs7s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEE7add_refEv) +STUB("+keSg8ay8cE", _ZN7WebCore19ResourceRequestBase17removeCredentialsEv) STUB("+kg7++G48bw", sceSdmaTryFlush) +STUB( + "+ki7QmZMARQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEE11get_deleterEv) +STUB( + "+kjbl7NHIAs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEED1Ev) +STUB("+klL9ixWYfU", _ZN3JSC7Symbols24isConstructorPrivateNameE) +STUB( + "+kqR5l50dNE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEC1ERKS7_) +STUB("+kvyBGa+5VI", __subvdi3) +STUB( + "+kxUorOUoek", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEED1Ev) +STUB("+kxmonJFR9E", _ZN3sce7Toolkit2NP2V210Tournament10TeamMemberC1Ev) +STUB("+l36cFRiecE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEEaSERKS7_) +STUB( + "+l3AwDux9zA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("+l8O7HA9th8", ucal_getCanonicalTimeZoneID_59) +STUB("+lFez3Ggt08", mono_g_hash_table_print_stats) +STUB("+lFjA5nyqvw", shared_memory_area_create) +STUB("+lI9zCCS-HQ", WKPageSetCustomTextEncodingName) +STUB( + "+lKlTe92zGQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEED2Ev) +STUB( + "+lMcMsISmTk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEneERKS9_) +STUB("+lQd4updWBA", _ZTT25MmsFileUpdaterFsOperation) +STUB("+lUoUL6MQug", _ZN3sce7Toolkit2NP2V28Matching7Request9GetWorldsD1Ev) STUB("+lZ1yHWEViw", sceVisionManagerRequestCalibrateStereoCamera) STUB("+la07V7EES0", sceMbusRemoveHandle) STUB("+lbk8RnyvmE", sceVideoOutSysSetOutputCsc) +STUB("+lhBbmohjCk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEE7add_refEv) +STUB( + "+ljJoKsr054", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE4sizeEv) +STUB("+ln-RjgMytM", _ZN12video_parser13cVideoPathMsvC2EPKc) +STUB("+lpzZ5UmZRc", _ZN3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResultsD1Ev) +STUB("+ltA+BngTHw", il2cpp_monitor_try_enter) +STUB( + "+lu4DQkZvA4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB("+lwLqZJLo3g", _ZN7WebCore27PlatformMediaSessionManager30stopAllMediaPlaybackForProcessEv) STUB("+lxqIKeU9UY", sceNetCtlGetStateV6) +STUB( + "+m5FrOYFJFI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEE11release_refEv) STUB("+m8+quqOwhM", pthread_mutexattr_getprioceiling) +STUB("+mD3sj5IeNc", _ZN3sce7Toolkit2NP2V29Messaging15GameDataMessage13MAX_SIZE_DATEE) +STUB( + "+mE7vfTOkM8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEE21intrusive_ptr_add_refEPS7_) +STUB("+mEF2auHNt4", WKPreferencesGetDoNotTrack) +STUB("+mHbyhPyBEk", _ZN23sceMetadataReaderWriter12_storageHostE) +STUB( + "+mM-xLVCkcc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "+mNIfzzoRkE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEdeEv) +STUB( + "+mP4vj45LdU", + _ZN7WebCore15ContextMenuItemC1ENS_17ContextMenuActionERKN3WTF6StringEbbRKNS2_6VectorIS0_Lm0ENS2_15CrashOnOverflowELm16EEE) STUB("+mPswO7rxKs", sceFsInitMountSaveDataOpt) +STUB("+mS029ncrbo", _ZN7WebCore23ApplicationCacheStorage16originsWithCacheEv) +STUB( + "+mT7Rq9pPsc", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEED2Ev) +STUB( + "+mYy22Ucg7Y", + _ZThn16_N9Inspector21InspectorRuntimeAgent8evaluateERN3WTF6StringERKS2_PS4_PKbS8_PKiS8_S8_S8_S8_RNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISE_EEEERNS1_8OptionalIbEERNSJ_IiEE) +STUB( + "+mc7cY2Wfto", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) STUB("+mfO27a-bEY", sceFiosDeallocatePassthruFH) +STUB("+mfiY0Y3JFs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEaSERKS8_) +STUB( + "+mfwp5PhuMw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEeqERKS9_) +STUB("+mg7jP+Y3gA", mono_btls_x509_verify_param_add_host) +STUB( + "+mnA2xyOCls", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEE7add_refEv) +STUB( + "+mofzbqHLno", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEEC1Ev) +STUB( + "+mqMNir+w-w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEppEi) +STUB("+mqwb5ovwSc", __asan_alloca_poison) +STUB( + "+mrEsDl7lkY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEED2Ev) +STUB( + "+msmpthLwko", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEC2EPKS8_) +STUB("+mwnHP7Lou8", glGenTransformFeedbacks) +STUB( + "+mx9C7MCJAM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEE5resetEPS9_) +STUB("+my9jdHCMIQ", atol) +STUB( + "+myMhhaYunw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEED2Ev) +STUB("+n+DZ8DoR3w", _ZN3sce2Np9CppWebApi11Matchmaking2V127ListUserTicketsResponseBodyD1Ev) +STUB("+n3lKQc6mjk", mono_aot_Sce_Vshunbox_trampolines) +STUB( + "+n82oT6i68g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEED2Ev) +STUB( + "+nAxj3mRfss", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEppEi) +STUB( + "+nElDKisVKI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEC1EPS8_) +STUB("+nHWcLWOmb4", _ZNK7WebCore27TranslateTransformOperationeqERKNS_18TransformOperationE) STUB("+nRJUD-7qCk", sceLncUtilLaunchApp) +STUB("+nSg5kHtXkg", + _ZN7WebCore9FrameView24forceLayoutForPaginationERKNS_9FloatSizeES3_fNS_19AdjustViewSizeOrNotE) +STUB( + "+nVe4sC7uYQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEE11release_refEv) +STUB("+nbc66Vtpf4", mono_aot_Sce_PlayStation_HighLevel_UI2unbox_trampoline_addresses) +STUB("+nc3IouJMEA", _ZN7WebCore11DisplayList11ClearShadowD1Ev) +STUB( + "+nczzAUfOfU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEC2EPNS2_10LibContextE) +STUB("+ndmq8LhAjA", _ZN7WebCore22EmptyFrameLoaderClient35dispatchDidChangeLocationWithinPageEv) STUB("+nfHWFq9rhA", sceNpGriefReportCdTerm) +STUB("+njYrfW12hk", receive_descriptor) STUB("+nmn+Z0nWDo", sceNpCloseEventFlag) +STUB( + "+nn6WT4aPKE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEaSERKS7_) +STUB( + "+nnHb4cBo7k", + _ZN3sce2Np9CppWebApi14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyD1Ev) +STUB("+nqbsw8hR9E", _ZN7WebCore26ActiveDOMCallbackMicrotaskD1Ev) +STUB("+nrEMsyYHiw", _ZNK7WebCore6Widget25convertFromContainingViewERKNS_8IntPointE) +STUB("+nvVOKrIjuY", + _ZN12video_parser13cVideoMetaVWG11getMetadataENS_12VP_META_TYPEEjjPNS_12VpMetadata_tE) STUB("+nz1Vq-NrDA", sceNpWebApi2CreateMultipartRequest) +STUB( + "+o1pQSgCKlc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEED2Ev) +STUB("+o6ybgSDnBU", uprv_aestrncpy_67) STUB("+o9816YQhqQ", sceNpWebApi2Initialize) +STUB( + "+oAdFlmRYqg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEC2Ev) +STUB("+oBEpBKDdb0", Java_java_net_PlainSocketImpl_socketAvailable) +STUB("+oCOy8+4at8", CA_MGMT_makeKeyBlobEx) +STUB( + "+oIEJl-pe1M", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("+oJHrfcyJJM", WKPreferencesGetLocalFileContentSniffingEnabled) +STUB( + "+oKFbYmGql8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "+oLz++X6COc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEaSERKS9_) +STUB( + "+oPcrGz8WCw", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEEiRNS2_10LibContextEPT_m) +STUB( + "+oUrdlkTqWI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "+oWkZiJQo5Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE5beginEv) +STUB( + "+oa52-JdNvU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB( + "+oc71GX+WvE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEEC2ERKS9_) +STUB("+odsSmWv4Pw", mono_aot_I18N_Rarejit_code_start) STUB("+ofrEv1aAU0", sceKernelHwHasWlanBt) +STUB("+ogUg+FDENU", mono_btls_key_new) +STUB( + "+ogce9xBHJw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEmmEv) +STUB( + "+op83-kllL0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("+oqyRiwxW18", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession16setMaxSpectatorsERKi) STUB("+orZm32HB1s", sceSaveDataSupportedFakeBrokenStatus) +STUB("+ovAafdG0O8", _ZNK7WebCore13HTTPHeaderMap12isolatedCopyEv) +STUB("+oxgA2SU4WU", _ZN7WebCore39globalObjectOutputConstraintSubspaceForERN3JSC2VME) +STUB( + "+p1cW9xUUwk", + _ZNK3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody15getJoinDisabledEv) +STUB( + "+p550iLNjTY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEptEv) +STUB("+p5Sgtw9Qr4", _ZNK7WebCore13ExtendedColor7cssTextEv) +STUB( + "+p8TZjRofb4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEC2EPS8_) +STUB( + "+p8tdDbiIug", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEEC1ERS9_) +STUB("+pC5kdXCovQ", _ZN4Manx11MediaPlayer12networkStateEv) +STUB("+pDyiHS3B0w", coil_dlsym) +STUB( + "+pICIYLYO18", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "+pVr5Ec0m4c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEppEi) +STUB("+pWGccNXto8", _ZN7WebCore22DefaultFilterOperationD0Ev) +STUB( + "+pXfsHz+TBM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE21intrusive_ptr_sub_refEPS7_) +STUB( + "+pdQbiDJ+n8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "+pevlKcdDss", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEaSERKS7_) +STUB( + "+pn0nPQHqn0", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEiRNS2_10LibContextEPT_m) +STUB( + "+pofwuSf42g", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE3endEv) +STUB("+ppwu+tEGVY", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V15Error16referenceIdIsSetEv) +STUB( + "+pt5Gh93hbo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEC2Ev) +STUB("+pzajmpyNmA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEC2ERKS7_) +STUB("+pze7u9PAcg", _ZN7WebCore10XLinkNames11arcroleAttrE) STUB("+q-vrfWR3Dw", sceDebugGetProcessCoredumpHandlerEventInfo) +STUB( + "+q0CgShBObk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEC2Ev) +STUB("+q0GELad-mY", _ZN7WebCore4Page15setFooterHeightEi) +STUB( + "+q0SlgTRrMM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEppEi) +STUB("+q0quYSqGms", _ZN3sce2Np9CppWebApi6Common6VectorIfED1Ev) +STUB( + "+q6xNks71Uc", + _ZN3sce2Np9CppWebApi14SessionManager2V120ErrorResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_13ErrorResponseEEE) STUB("+qAE4tRMrXk", sceUserServiceGetGlsLiveQuality4) +STUB("+qB+WcQlMio", _ZN3sce2np12WorkerThreadD2Ev) +STUB( + "+qEB0E-vvgA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEneERKS9_) +STUB( + "+qGUp9sbymk", + _ZN7WebCore22SocketStreamHandleImpl21platformSendHandshakeEPKhmRKSt8optionalINS_29CookieRequestHeaderFieldProxyEEON3WTF8FunctionIFvbbEEE) +STUB("+qJQUXbe-dw", mono_aot_Sce_Vsh_LncUtilWrapperunwind_info) +STUB("+qKS53qzWdA", _ZNSt16nested_exceptionD1Ev) +STUB("+qL6AAoZOmQ", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError16unsetReferenceIdEv) +STUB("+qLR-MW92Pc", mono_signature_is_instance) +STUB("+qN86nft0Qg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEEC2Ev) +STUB("+qOz8H8nK+w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEEC2EPKS6_) +STUB( + "+qX-m0JlHn0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEmmEi) +STUB("+qXuNlEFSRQ", _ZN7WebCore8JSDOMURL9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB( + "+qY3sJSzK7g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEC1EPKS8_) +STUB( + "+qaeC1TjgAU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEE7get_refEv) +STUB("+qitMEbkSWk", vsprintf_s) +STUB("+qsTbJFS86A", JSObjectSetPrivate) +STUB("+qso2nVwQzg", _ZTIPb) +STUB("+qt8rrlTA+A", _ZN3sce7Toolkit2NP2V211SharedMedia10BroadcastsC1Ev) +STUB("+qv1agOLjDo", _ZN3JSC7Symbols24isMapIteratorPrivateNameE) +STUB( + "+qvm5zEldmY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEdeEv) +STUB("+qzTqrJRBGU", _ZN7WebCore15DatabaseManager16hasOpenDatabasesERNS_22ScriptExecutionContextE) +STUB("+r+TJDA2yIM", _ZN7WebCore21ISOTrackEncryptionBoxC1Ev) +STUB("+r0UH41I1dI", _ZN7WebCore18PlatformTimeRangesnaEm) +STUB("+r0zCIliT6c", _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead14getMatchmakingEv) STUB("+r1o-CUtFxE", sceUserServiceSetSaveDataAutoSync) STUB("+r3rMFwItV4", sceKernelPread) +STUB( + "+r4GweKhd3s", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayeraSERS5_) +STUB("+r8OGkuL4dc", _ZN3JSC9Integrity22auditCellMinimallySlowERNS_2VMEPNS_6JSCellE) +STUB("+r8WvmR+-dA", mono_class_get_name) +STUB("+r8p7IuSAc0", _ZN3JSC7Symbols26mapIteratorNextPrivateNameE) +STUB("+rCIVcahwFM", mono_aot_I18N_CJKjit_code_start) +STUB("+rDYDewIzM8", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13integer8IsSetEv) +STUB("+rFA8ZR+qaI", _ZN9Inspector24TargetFrontendDispatchernwEm) +STUB("+rFNNNydbXc", _ZN3JSC7Symbols26promiseRejectedPrivateNameE) +STUB( + "+rIgoS-+bGk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE21intrusive_ptr_add_refEPS9_) STUB("+rJnw2e9O+0", sceGnmRaiseUserExceptionEvent) +STUB("+rOJ-sya6ZE", _ZN3sce7Toolkit2NP15AppSTLAllocatorI16SceNpTusVariableE7addressERKS3_) +STUB("+rPvFDsPbXM", _ZNK7WebCore16HTMLImageElement13naturalHeightEv) STUB("+rPzLhUKj1Y", sceNpPush2SetGlobalMutex) +STUB( + "+rRUTQIzAcs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEppEv) STUB("+rSNKzU+aNQ", sceKernelSetDataTransferMode) +STUB("+rTA4ZdSh0c", _ZN3sce2np10JsonObjectC1EP14SceNpAllocator) +STUB("+rTePDtQ5H8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEC1Ev) +STUB( + "+rVL0oxCqWk", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getInteger9Ev) +STUB("+rVbFqON6Ac", lga_victim) +STUB("+rWFNYiNaEM", fstatfs) +STUB( + "+rWjmNf5G5E", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "+rZFBcVySak", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE21intrusive_ptr_sub_refEPS9_) +STUB("+rbcDPAYP74", uhash_compareUnicodeString_67) +STUB( + "+rc6cOmt5i8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEC2ERKS7_) +STUB("+rdLE8STNA8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEEC1Ev) +STUB( + "+rf+eWs9qcg", + _ZN3sce7Toolkit2NP2V27Session17consumeInvitationERKNS3_7Request17ConsumeInvitationEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB( + "+rfoz2FIYxM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("+rgRcVGXxGQ", + _ZN3sce2Np9CppWebApi14SessionManager2V132RequestPlayerSessionMemberPlayer16getNonPsnPlayersEv) +STUB("+rntji0DoNo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEC1Ev) +STUB( + "+rrb4eLe0UE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEppEi) +STUB( + "+rvdaw9ytQg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEEaSERS9_) +STUB( + "+s+8XyBd6Aw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) STUB("+s14jq-KGYw", sceNpUniversalDataSystemEventEstimateSize) +STUB("+s3t2WHT3Dw", _ZN3sce7Toolkit2NP19GetTitleFeedRequestC2Ev) +STUB( + "+s4wzsBb76A", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEeqERKS9_) STUB("+s7Q-UbHJWI", sceAppInstUtilGetInsertedDiscRoleType) +STUB( + "+s7Uzb5sJp8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEC2EPS8_) STUB("+sAja0b9rZU", sceFaceIdentifyLiteSimilarity) +STUB( + "+sHOx9rQMdw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE8pushBackERKS8_) +STUB( + "+sIKiU1erPE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEC2Ev) +STUB( + "+sJ9xrfuaUo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEEC2Ev) +STUB("+sRnW-xubno", _ZN3sce2np14JsonStringImplC2EP14SceNpAllocator) +STUB("+sUvE9LF80k", _ZN3JSC10LinkBuffer8linkCodeERNS_14MacroAssemblerENS_20JITCompilationEffortE) +STUB("+sWc+Z4PpGE", uprv_convertToLCIDPlatform) +STUB( + "+sXAhljWogM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEEptEv) STUB("+sXvR1JH9Aw", sceVideoOutGetHdmiRawEdid_) +STUB( + "+sZeB+HElFU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEEaSERSA_) +STUB( + "+saNKEqKrds", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10setString1EPKc) STUB("+scQA5stvjs", sceAppInstUtilAppInstallAll) STUB("+seEJVlljr0", sceHmd2ReprojectionSetMirroringOption) +STUB( + "+seQdqAThVs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE7releaseEv) +STUB("+sgraKhw4QI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEEdeEv) +STUB("+sjw2JTZnz0", _ZN7bmalloc29StaticPerProcessStorageTraitsINS_9ScavengerEE7Storage8s_objectE) +STUB( + "+suTIBocuKA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEEC1EPS8_PNS2_10LibContextE) +STUB("+suuwfNT5Oc", WKNotificationPermissionRequestAllow) +STUB("+syPWxpxEm4", mono_shared_hashtable_set_type_funcs) +STUB("+t-MaTLADe4", _ZN7WebCore9FrameView11removeChildERNS_6WidgetE) +STUB( + "+t7+B91g07M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEEC2ERSA_) STUB("+tB28CUr9W0", sceVideoOutGetStatusForWebcore) +STUB("+tCZrht05-k", mono_code_manager_reserve) +STUB( + "+tF4ZmJL8kQ", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V321MissingElementFactory7destroyEPNS3_14MissingElementE) +STUB( + "+tI5eaUWEoU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEC1Ev) +STUB("+tNIk5nUtYU", __start__Zfini) +STUB( + "+tNq66YUuwo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEppEv) STUB("+tPsvYO70II", scePlayReadyEnvelopeClose) +STUB( + "+tUlIVde+jk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEC1Ev) +STUB( + "+tWzJKmrgbs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB( + "+teEN5uxG08", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE5clearEv) +STUB("+tfKv1vt0QQ", y0f) +STUB("+tg8J2mdzZo", _ZN3sce2Np9CppWebApi6Common18ResponseHeaderBaseC2Ev) +STUB("+tmOUU1VbUo", mono_aot_Sce_Vsh_Sl2_Sl2Commonplt_end) +STUB("+tmbgrmMLWI", mono_aot_System_Data_Services_Clientplt) +STUB( + "+tn6ODC5FvQ", + _ZN9Inspector24RuntimeBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) +STUB("+touqI6odec", _ZN4Manx8X509cinfC1EPv) +STUB("+tr2GnVDPXY", _ZN3sce7Toolkit2NP2V212NetworkUtils12BandwithInfoC1Ev) +STUB("+tuS+migTvI", _ZN3JSC2VM10ClientDataD1Ev) +STUB("+tyM95Aw07M", _ZNK7WebCore12RenderObject44hasNonEmptyVisibleRectRespectingParentFramesEv) STUB("+u6dKSLWM2o", sceAgcDcbStallCommandBufferParserGetSize) +STUB( + "+u7bgdHEInM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEE11release_refEv) STUB("+uCwAp6KYtQ", sceMusicPlayerServiceSetRepeatMode) +STUB( + "+uCy35P-Kqc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "+uIZy5EUBvg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEED1Ev) +STUB("+uKktfh+zD0", _ZN3JSC17JSArrayBufferView14finishCreationERNS_2VME) +STUB("+uKqBYnAudU", _ZN9Inspector14InspectorAgentC1ERNS_12AgentContextE) +STUB("+uMgWAoorVo", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_isPipPlayList) +STUB("+uPG7em0gCo", _ZN7WebCore11MathMLNames9fenceAttrE) +STUB("+uPwCGfmJHs", _ZNKSt7codecvtIDsc9_MbstatetE5do_inERS0_PKcS4_RS4_PDsS6_RS6_) +STUB("+uRH8ci2Zu8", WKPageGetIsControlledByAutomation) +STUB("+ugzaqpDezk", _ZN3JSC17FunctionOverrides18reinstallOverridesEv) +STUB("+uh2HHZWJ-Q", _ZN3sce7Toolkit2NP2V26Trophy15TrophyPackGroup5resetEv) +STUB( + "+uhZifdtCYA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB("+uigfKS2jic", uhash_igeti) +STUB("+uk5J35y6WQ", _ZN7WebCore13HTTPHeaderMap6removeENS_14HTTPHeaderNameE) +STUB( + "+ukiB9ByP2c", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEdeEv) +STUB( + "+ulnFt314sU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEE3getEv) +STUB("+unvwtv7Z38", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities14UserActivities12setAccountIdEPKc) +STUB("+uq-uCUNlhY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEED2Ev) +STUB( + "+urGVC1j7EM", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("+uuVOZnQbe4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament5EventEE3getEv) +STUB("+v+iV22WMQg", _ZN3sce2np13JsonDocParserC2EP14SceNpAllocatorPK7JsonDef) +STUB( + "+v-JkMQWpyg", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "+v1Qkiwue2k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEC2Ev) STUB("+v4fVHMwFWc", sceNpPartyRegisterHandlerA) +STUB( + "+v4suNRK8TI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE7reserveEi) +STUB("+v53tgfW3vE", Java_sun_awt_GnmUtils_copyBackgroundToPrimaryPlane) STUB("+v5V+l5LDK0", sceIduUtilIsRifInstalled) STUB("+v5r0-k24j0", sceMatMemoryPoolReserve) +STUB("+v66TBg7tzA", FTA_Add_Module_type1) +STUB("+v9cFPEsHmM", rgctx_fetch_trampoline_rgctx_57_p) +STUB( + "+vCoGZv4mtI", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setInteger3ERKi) +STUB( + "+vCr9CiP+Z8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEEC1ERKSA_) +STUB("+vE3ZTcmgGE", ucnv_reset_67) +STUB( + "+vEgnxT07o0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("+vMV8r6ZHvo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEE3getEv) +STUB("+vQWu4q6j9Y", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlotD2Ev) +STUB( + "+vSkGCL5iPc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEEptEv) +STUB("+vUCUJKMSU8", _ZN3sce7Toolkit2NP2V23TUS19FriendsDataStatuses8deepCopyERKS4_) +STUB("+vYbN13ER6E", WKViewGetPageScaleFactor) +STUB("+vdnJZRFUEg", _ZNK7WebCore19ResourceRequestBase12httpReferrerEv) +STUB("+vlPLHD00To", + _ZN3sce7Toolkit2NP7NetInfo9Interface10getNetInfoEPNS1_9Utilities6FutureINS1_13NetStateBasicEEE) +STUB( + "+vlaiT1ac0k", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEneERKS9_) +STUB("+vprxe9e-wQ", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11ProductInfoEE7addressERS3_) +STUB("+vps3+8oLW8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEC2ERS7_) +STUB("+vtKpg7kaes", NET_Wait) +STUB( + "+vwPfmrTOdw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "+w1RaWTADqE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEC2EPKS8_) +STUB( + "+w28vJ7H-i4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE8capacityEv) +STUB( + "+w96w41RlV4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE21intrusive_ptr_add_refEPSA_) STUB("+wCt7fCijgk", sceHttp2CreateTemplate) +STUB("+wHXWfgVJ8k", _ZNK7WebCore10ScrollView21unobscuredContentSizeEv) +STUB("+wKsYq75qr8", _ZN3sce7Toolkit2NP2V24Core11RequestBaseC2ENS3_11ServiceTypeENS3_12FunctionTypeE) +STUB( + "+wMM9GPml9s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE21intrusive_ptr_sub_refEPS6_) +STUB( + "+wPbnRNHnpU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEC2EPS8_) +STUB("+wTsGed5J9I", mono_code_manager_set_read_only) STUB("+wU6CGuZcWk", sceUsbdHandleEventsTimeout) STUB("+waQfICfHaw", sceNpManagerIntGetVshAccessTokenWithCheck) +STUB("+wd7ITlDmEM", _ZN3JSC22JSFinalizationRegistry9deadCountERKN3WTF6LockerINS_10JSCellLockEEE) +STUB("+wdURjqTtJ0", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_15RankInformationEED2Ev) +STUB("+wfGaVPJrrU", mono_btls_x509_store_ctx_up_ref) +STUB("+wgwEpgOGrA", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE5beginEv) +STUB("+wj27DzRPpo", __umoddi3) +STUB( + "+wqWHP00XP8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEdeEv) +STUB( + "+wu9vXn1yKA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEC2EPKS8_) +STUB("+ww+pcpOFNc", _ZNK3WTF6String12toUIntStrictEPbi) +STUB( + "+x+DZnthYzk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEED1Ev) +STUB("+x-wT-s5NXE", mono_class_get_field_token) +STUB("+x-ywEbOrJo", + _ZN3WTF20ParallelHelperClientC1EONS_6RefPtrINS_18ParallelHelperPoolENS_13DumbPtrTraitsIS2_EEEE) +STUB( + "+x2PP-Gbg8Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEC1EPKS8_) +STUB( + "+x5c86TxjHQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE21intrusive_ptr_add_refEPS9_) +STUB("+x6HLnoxm30", Java_sun_awt_GnmUtils_bdjbgCopyPlanes) +STUB("+xDaZ2rHLFY", _ZN7WebCore8Document27removeMediaCanStartListenerEPNS_21MediaCanStartListenerE) +STUB( + "+xIhrCgmUyo", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "+xMi7V4MWxs", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeOnlineId2AccountIdBatchC1ERS5_) +STUB("+xMyBXeSCYw", _ZNSt9basic_iosIcSt11char_traitsIcEE5clearEj) +STUB("+xOFHdelgrI", unumsys_openByName_67) +STUB("+xSBfYO4clQ", _ZN3sce7Toolkit2NP9Utilities6FutureI18SceNpTssDataStatusEC1Ev) +STUB("+xTyBH++3vE", GCC_except_table168) +STUB("+xU0WKT8mDc", isalpha) +STUB("+xYBFG96wpU", _ZN7WebCore17JSDOMGlobalObject12globalObjectEv) +STUB("+xdJWXA20fg", WKURLResponseCopySuggestedFilename) +STUB( + "+xeCX9g1Kh0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "+xm2UE8PlDw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEaSERS7_) +STUB("+xoGf-x7nJA", _Atomic_exchange_8) +STUB( + "+xq2Kb9oXsk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE4sizeEv) +STUB("+xsbcqOIJmM", u_austrcpy) +STUB("+xu2fWY3bcA", _ZN12video_parser7cVpUtil14GetRemainHeapGEv) STUB("+xuDhxlWRPg", sceGnmSetupMipStatsReport) +STUB( + "+xuGabfX1NQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEeqERKS9_) +STUB("+xvhXA8Ci4E", _ZN3sce2np3ipc10IpmiClient7DestroyEv) +STUB("+xy70VTnR+c", YGNodeLayoutGetBorder) STUB("+xy9ORMbd8U", sceKernelGetAppCategoryType) +STUB("+y-PtxQIHe4", YGNodeStyleGetAlignSelf) +STUB( + "+y6916Czy0A", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEptEv) +STUB("+y8HrQsogDk", _ZN3sce7Toolkit2NP2V26Trophy17TrophyPackSummaryaSERKS4_) +STUB( + "+yA2HeJZZFI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEE11release_refEv) STUB("+yCldgPbdIU", scePatchCheckerSetFakeCache) +STUB( + "+yI0kbL2mFA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditions39setsetVariableWithConditionsRequestBodyENS1_6Common12IntrusivePtrINS3_36SetVariableWithConditionsRequestBodyEEE) +STUB("+yMOX81TeWE", _ZNK7WebCore11MediaPlayer13playerPrivateEv) +STUB("+yNC7DPGH2g", psl_builtin_outdated) +STUB("+yNEa4OFH1M", FT_Get_PS_Font_Private) +STUB( + "+yQD2fQl9-4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("+yQL0OwuFF0", _ZN7WebCore16HTMLInputElement14setValueAsDateEd) +STUB("+yRvWsESIkM", _ZN3JSC11ProxyObjectC1ERNS_2VMEPNS_9StructureE) +STUB("+yTSZX7HrfE", _ZN3sce7Toolkit2NP2V27Session7Request6CreateC2Ev) +STUB("+yTcUbxieO8", ures_hasNext) +STUB( + "+yVBybRxm+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB( + "+yYFhbRghyM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEptEv) +STUB( + "+yZs8-SQawY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEC2Ev) +STUB("+yk86kVEU9w", _ZN8meta_gen11MsvPromoter27convMediaTypeImageFromCodecEN9db_schema9CodecTypeE) +STUB("+ykQhkvCGEc", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats15reputationIsSetEv) +STUB("+yoOLVosR6Y", _ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEED2Ev) +STUB( + "+ypdzG3cEIk", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody15unsetMaxPlayersEv) +STUB("+ypzWWOJMwI", _ZN9Inspector22InspectorDebuggerAgentnwEmPv) STUB("+yqjab2fUJA", sceNpRegisterPremiumEventCallback) +STUB("+yrOX7MgVlk", _ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE5_TidyEv) +STUB("+yrjAZcfIy0", mono_type_get_array_type) +STUB( + "+ysOoaWc9Vg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEC1EPS8_) +STUB("+ysk-pa6aOA", _ZN12video_parser5vpcom3rtc20FormatSQLiteDateTimeEPcmPKmc) +STUB("+yubXxUDqaw", rgctx_fetch_trampoline_rgctx_65) +STUB("+ywmZyVOmck", _ZN7WebCore11JSDOMWindow15setOpenDatabaseERN3JSC14JSGlobalObjectENS1_7JSValueE) +STUB("+z1N0FnR4Pc", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku8setLabelEPKc) STUB("+z2ejY-8WLw", sceDebugGetSyncExclusiveWaiterList) +STUB("+z3kfOo91Pg", _ZN7bmalloc15IsoHeapImplBasenwEmPv) STUB("+z4OJmFreZc", sceHmdSetupDialogTerminate) +STUB("+z6-FwD+tTk", + _ZNK7WebCore30InvertLightnessFilterOperation21inverseTransformColorERNS_5SRGBAIfEE) +STUB("+zB9xXLFJgU", _ZN7WebCore11DisplayList8FillPathD2Ev) +STUB("+zEuX9XSDPM", uspoof_setRestrictionLevel_67) +STUB("+zKDeetJAMk", _ZN7WebCore11JSDOMMatrixD1Ev) +STUB("+zL3nHNv5GU", _ZN3JSC17DebuggerCallFrame20positionForCallFrameERNS_2VMEPNS_9CallFrameE) +STUB("+zNZrJWp9X0", _ZN7WebCore10JSLocation7destroyEPN3JSC6JSCellE) +STUB("+zOpknn34cM", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEEptEv) +STUB("+zPRztSZLTg", _ZN3WTF24AutomaticThreadCondition6createEv) STUB("+zPvzIiB+BU", sceHmdInternalSetVirtualDisplaySize) +STUB( + "+zTRQVZ7l7s", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEixEm) +STUB("+zXIIDGjUiA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE7popBackEv) +STUB("+zcWQg1vfHY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V113AttributeTypeEEeqERKS7_) +STUB("+zcmc-II57o", _ZN7CoreIPC10Connection40setDidCloseOnConnectionWorkQueueCallbackEPFvPS0_E) +STUB( + "+zdtyeSbRhg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEeqERKS9_) STUB("+zffgsy7hRw", sceDebugTriggerCoredumpForSystem) +STUB("+zfvXbPVJT0", WKStringGetLength) +STUB("+zgfDoy4FcE", __asan_report_store16) STUB("+zhBPmxiRGE", sceBgftServiceIntPlayGoResume) +STUB( + "+zi2IaVOez4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "+zj9t4Srzj8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB( + "+zjLGkS4VR8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB( + "+zlsO9+oYWk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEC2Ev) +STUB( + "+zq8Vl2Bm1c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEppEi) STUB("+zuv20FsXrA", sceAppMessagingSendMsg) STUB("-+3hY+y8bNo", sceSystemServiceLaunchWebBrowser) STUB("-+7YODtoVLM", sceSysUtilSendSystemNotificationParamInit) +STUB("-+8sSDc61uU", glGetActiveUniformBlockiv) +STUB("-+9ekha4fN0", WKPluginInformationPageURLKey) STUB("-+DMIKu3GMs", sceDeci4hDrfpFtruncate_fuse) +STUB("-+Hf1ZF5vAU", mono_aot_Sce_Vsh_Np_Managerplt) +STUB("-+OEPeIQhdI", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE5beginEv) +STUB("-+RKa3As0gE", _ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2Em) +STUB("-+WCYxsZJ9M", _ZN3sce7Toolkit2NP2V24Core7Request23ServerPushNotificationsC1Ev) +STUB( + "-+Xop6ZLTY0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEaSERS7_) +STUB( + "-+Z+rqZWDtk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "-+aln4gYmu0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE8capacityEv) +STUB("-+e9NvViaBc", _ZN7WebCore19JSDOMMatrixReadOnly9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB( + "-+ed6yGWSXs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEEaSERKS9_) STUB("-+h1C78SdyU", sceLoginMgrServerSetUserStatus) +STUB("-+iCTJ8Ym9A", ucol_safeClone_67) +STUB("-+j9F1rPN9w", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEdeEv) +STUB("-+p7iGog1+0", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIfEC2EPKf) +STUB("-+uVnp5Aj3U", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEED1Ev) +STUB( + "-+valQgvuvg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "-+ws5-trex8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE21intrusive_ptr_add_refEPS9_) STUB("---AJBmrMQc", scePlayReadyReaderDecryptMultiple) STUB("--2iRpRn5Bw", sceFiosFHStat) +STUB("--3LQVV+qcE", _ZN7WebCore21DiagnosticLoggingKeys29succeededMoreThan20SecondsKeyEv) +STUB("--C4AAhZMl4", _ZTVN7WebCore11DisplayList8DrawPathE) +STUB( + "--FHhD603Bs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEEC1ERKSA_) +STUB("--GQ9Ov+0mM", ures_close) STUB("--I4Ml0ADxQ", sceDebugSetProcessEventCntlFlag) +STUB("--IZm4qJYRc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEC1Ev) +STUB("--JUIQmHuuQ", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEEC2Ev) +STUB("--KFYA4wtO4", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V110ReputationC2EPNS1_6Common10LibContextE) +STUB( + "--KpRjZ0YjI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEEC2ERKSA_) +STUB( + "--QQCSdy0IU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("--Xsx+0Xk+g", _ZN7CoreIPC10AttachmentC1Eim) +STUB("--fMWwCvo+c", _ZTSSt8bad_cast) +STUB( + "--ihNFy8i+8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEC2EPS6_PNS2_10LibContextE) STUB("--jrY4SHfm8", scePadSetVrTrackingMode) +STUB("--ll-AgiK2M", _ULx86_64_set_reg) +STUB( + "--m82JWZOQk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE6resizeEj) +STUB("--naDrnhMiM", _ZN3sce7Toolkit2NP2V210Tournament17OfficialBroadCastaSERKS4_) +STUB("--qAxQ9Aed0", _ZN3sce3pss4core7imaging4Font31NotifySystemConfigurationChangeEv) +STUB( + "--sidFfU-X0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE5beginEv) +STUB("-0-p173hRjs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEE7add_refEv) STUB("-00OAutAw+c", sceAudioOutGetInfo) +STUB("-01nbv5hWBQ", JVM_SuspendThread) +STUB("-09a6Ceb6Y0", _ZN3JSC16InternalFunctionC1ERNS_2VMEPNS_9StructureENS_14NativeFunctionES5_) +STUB("-0ETdbxl-Kg", WKBundleFrameHandlesPageScaleGesture) STUB("-0FdPC78x7U", sceSysUtilSendTrcCheckNotificationRequest) +STUB( + "-0Id6XRd4Wo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEppEv) +STUB("-0IpmLJQ06A", _ZNK7WebCore17CSSPrimitiveValue12getRectValueEv) +STUB( + "-0JkmV4lwtg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEneERKS9_) +STUB( + "-0KYZ5rmACw", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayerC1ERS5_) +STUB( + "-0Kj9-HtxLc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "-0KudGXXWwU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEE7add_refEv) +STUB( + "-0Mbw-dNO6E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEC2Ev) +STUB( + "-0MfsOIYvqI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEC1EPKS8_) STUB("-0T5Aq0Xews", sceDataTransferTargetRequestSendSsoOld2New) +STUB( + "-0Vv7HKZaBM", + _ZN3sce2Np9CppWebApi14SessionManager2V139RequestPlayerSessionMemberPlayerFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_32RequestCreatePlayerSessionPlayerEEEEEPNS9_INS3_32RequestPlayerSessionMemberPlayerEEE) +STUB( + "-0WdKXlJthM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEC1EPS7_PFvS9_EPNS2_10LibContextE) +STUB( + "-0X83q95LFs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEC2Ev) STUB("-0c9TCTwnGs", sceCompanionHttpdRegisterRequestCallback2) +STUB( + "-0fS6SRYvJE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEC2Ev) +STUB( + "-0flJSipMpk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEE7get_refEv) +STUB( + "-0gCt-MxS5U", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeaders21intrusive_ptr_sub_refEPS5_) +STUB("-0gVe38p4Ow", _ZN7WebCore11JSDOMObjectC1EPN3JSC9StructureERNS1_14JSGlobalObjectE) +STUB( + "-0gcJ-eyXcw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEEcvbEv) STUB("-0jDlM2hG5k", sceAudiodecCpuInternalDecode) +STUB( + "-0jW4lW++vo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEdeEv) +STUB( + "-0nVY+E4HbE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEEC1ERSA_) +STUB("-0nZw5IxZgA", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification18NewGameDataMessageEEC1Ev) +STUB( + "-0sh4cUML6A", + _ZN7WebCore8Document8evaluateERKN3WTF6StringERNS_4NodeEONS1_6RefPtrINS_15XPathNSResolverENS1_13DumbPtrTraitsIS8_EEEEtPNS_11XPathResultE) STUB("-0wUiGX74GQ", sceHttp2WebSocketCreateRequest) +STUB("-0xr7Z4Hg34", uprv_decNumberCompareTotal_67) +STUB( + "-105oxNWvuE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("-11+UlGuM2c", _ZNK7WebCore9FrameView20documentToClientRectENS_9FloatRectE) +STUB("-13kJxPeWfs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEaSERS7_) +STUB( + "-14smWFvh7U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEC2EPKS8_) +STUB( + "-17Xp5C5rns", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE4sizeEv) +STUB("-1CenoQjRY4", _ZN7WebCore13HitTestResultD1Ev) +STUB( + "-1FYft+OEXI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEptEv) +STUB("-1G1iE3KyGI", _ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED0Ev) +STUB("-1Ie2Ai72es", _Z35scePlayGoDevGenerateKernelHashTablePPvPmS0_S1_) +STUB( + "-1Mtnce4ous", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEppEi) +STUB( + "-1OW95nK+EM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEEptEv) +STUB("-1PWHzoXWyU", _ZN15AbstractStorage6FolderD1Ev) +STUB("-1Qgg3W9FVM", _ZN3JSC22FullGCActivityCallbackD0Ev) +STUB("-1X3PhkFDT8", _ZN7WebCore21InspectorFrontendHost16disconnectClientEv) +STUB("-1kMwGA0+VU", _ZN3NTF17URLRequestJobImplC1Ev) +STUB( + "-1kRpFzenA8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEE7get_refEv) +STUB( + "-1lRptG6Lzg", + _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities17hasnpServiceLabelEv) +STUB( + "-1m9ME90DBs", + _ZN7WebCore18JSHTMLMediaElement6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_16HTMLMediaElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "-1phukGV9Eo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEE11get_deleterEv) +STUB( + "-1rM6XSHsi4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEeqERKS9_) +STUB( + "-1rpGp2Vt-I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEEC2EPS9_PNS2_10LibContextE) STUB("-1whCDzGK1E", sceFsErriGetState) +STUB( + "-1yeS-hZ+IQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEE3getEv) +STUB("-23vA2z+SXI", _ZNK12video_parser5vpcom8datetime8DateTime9FormatMsgEPwmPKw) +STUB("-28o1aT-xMs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEC1Ev) +STUB( + "-29bOHR1EE0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEppEi) STUB("-2B4DKWlSTY", sceImeBackendGetConvertMode) +STUB("-2DPM-Lnzmw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEEC1EPKS6_) +STUB("-2H27wv-nyI", qr8) +STUB("-2HpFPXUzqw", WKPreferencesGetForceSoftwareWebGLRendering) STUB("-2IRUCO--PM", sceKernelReadTsc) +STUB( + "-2PKRTzKePk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEE11get_deleterEv) +STUB("-2Q7HTUa7co", ucnv_setSubstChars_59) +STUB("-2Sz61GLFAg", _ZN7WebCore22SocketStreamHandleImplC1ERKNS_3URLERNS_24SocketStreamHandleClientE) +STUB("-2TYwZ4ERbM", _ZN3sce2np18HttpConnectionPoolC2EP16SceNpAllocatorEx) STUB("-2WA7vdSzbI", sceVideoOutSysSetHdrScopeCallbacks) STUB("-2WqB87KKGg", sceImeDialogSetPanelPosition) +STUB( + "-2Z+nVPlbEY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEC1EPKS8_) +STUB( + "-2a5LOIPD7k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEE7get_refEv) +STUB("-2b9nBoTdJ0", _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error7setPathEPKc) +STUB("-2dynZz+Xzc", + _ZN15AbstractStorage14FacebookFolderC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) +STUB( + "-2e-QLVbevU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB( + "-2fM3ouwRfQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("-2jUfVaMFXg", uregion_getNumericCode_67) +STUB( + "-2l3e-xiXFA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEC2EPKS8_) +STUB( + "-2nNDZfAulQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEE11release_refEv) +STUB("-2rnxRCeHMs", FT_Done_Size) +STUB("-2u6dpfO9UQ", mono_file_map) +STUB( + "-2vziWm6Ik8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEE11get_deleterEv) +STUB( + "-2w3x+dk850", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEE11release_refEv) +STUB("-3-X30Ozz8Q", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEED2Ev) +STUB("-37+rbkKv6k", _ZN3JSC7Symbols26setIteratorNextPrivateNameE) +STUB("-387nNWw32c", mono_class_get_method_from_name_flags) +STUB("-3GOtgegwhE", u_isprintPOSIX_67) +STUB( + "-3KK2fsp12w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEED2Ev) STUB("-3KN5+5cUf8", sceUpsrvVerifySystemExBank) +STUB( + "-3LQaKSJ7to", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEED2Ev) +STUB( + "-3M40YWmnWI", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsers35hasxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB("-3QYeOfEAC8", JVM_MaxMemory) +STUB( + "-3QlplwQP5E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEEC1ERKSA_) +STUB("-3SHNzyp1hw", _ZN3sce7Toolkit2NP2V210Tournament7BracketC1ERKS4_) +STUB("-3UvpBs-26g", _ZN3sce2np4PathD1Ev) +STUB( + "-3UzS9Z52PE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC2ERKS8_) +STUB( + "-3WHiyFkkDQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEED2Ev) +STUB("-3XZEzt2lqM", _Ux86_64_setcontext) STUB("-3Y5GO+-i78", sceUserServiceGetAccessibilityTriggerEffect) +STUB("-3ZujD7JX9c", _Atomic_is_lock_free_8) +STUB("-3du2K3HvYg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEE5resetEPS6_) +STUB( + "-3eLhJ-5zVE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("-3gV5N2u-sc", _ZN3sce2np6Thread4dtorEv) STUB("-3moAnxKYkc", sceLncUtilNotifyVshReady) +STUB( + "-3nPQTGIOfw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEE11get_deleterEv) +STUB( + "-3nWFuiGh7k", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEeqERKS9_) +STUB("-3nj+K1elI0", _execve) +STUB("-3pU5y1utmI", _FExp) +STUB( + "-3r-3Gejvus", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "-3rmbd14uBI", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB( + "-3x7+wyZpEU", + _ZN9Inspector20DOMBackendDispatcher13performSearchElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("-3z5TtOaEkg", mono_property_get_value) +STUB( + "-4-IVnD7yl0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE5beginEv) +STUB("-40Pfth8mqE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE3endEv) +STUB("-431A-YBAks", llrint) +STUB( + "-464OnBCer0", + _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody6toJsonERNS_4Json5ValueEb) STUB("-4GCfYdNF1s", sceImeUpdate) +STUB( + "-4KIDH4cF1U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEixEm) +STUB("-4KVgXHGMdw", png_set_expand) +STUB("-4KqTP5gW3o", _ZN12video_parser13cVideoPathM4v11sExtentListE) +STUB("-4M0K8nGdfk", _ZN3JSC2VM14sharedInstanceEv) +STUB( + "-4TFyIn+vS8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "-4V6uZ4NF5A", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V124NatConnectivityToMetrics6toJsonERNS_4Json5ValueEb) +STUB("-4XiNpIGIH4", _ZN7WebCore9HTMLNames20onlanguagechangeAttrE) +STUB("-4XoQ+IELOI", mono_aot_Sce_Vsh_UpdateServiceWrapperjit_code_start) +STUB( + "-4XxzWyNzAU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEppEi) +STUB( + "-4a57BwnH8A", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEED0Ev) +STUB("-4bVzdiOKDc", monoeg_g_array_append_vals) +STUB("-4dhc9m-vfs", ucptrie_getRange) +STUB( + "-4gYZWOJ5xM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEaSERS8_) +STUB( + "-4jsoWj40-g", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Runtime20ExecutionContextTypeEEEN3WTF8OptionalIT_EERKNS5_6StringE) STUB("-4kr-v21vjc", sceShareUtilityOpenShareMenuBroadcast) +STUB( + "-4myqm13mfY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE8capacityEv) +STUB("-4nCkJB-Wpk", glUniform2ui) +STUB("-4ooC3j97DQ", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching5RoomsEED2Ev) +STUB( + "-4qn5SHAuoQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE3endEv) +STUB( + "-4sVkp5-H-M", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_4Page16CoordinateSystemEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB( + "-4tfOCBqOek", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE8copyFromERKS7_) STUB("-4xfEZanOFg", sceUlpMgrSaveConnectionInfoList) +STUB("-4yJ1w7Q9bs", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody8setValueERKl) +STUB("-5+Q0JbK9fo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEaSERS7_) +STUB("-5-FRgo13Ls", _ZN3JSC7Symbols29derivedConstructorPrivateNameE) +STUB( + "-55w8wkCb+4", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionProperties12setsessionIdEPKc) +STUB("-5EyyprE34M", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt6vectorI16SceNpTusVariableNS2_IS4_EEEEC2ERKS7_) +STUB("-5HxLphGKT0", _ZN3sce7Toolkit2NP2V26Trophy7Request19GetUnlockedTrophiesC2Ev) +STUB("-5IaOJ4dKU4", _ZN3sce7Toolkit2NP22ProductListInputParamsC2Ev) +STUB( + "-5OW0RP9cws", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEppEv) +STUB( + "-5PsLtaBIPQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEEC1ERKSA_) +STUB("-5U4hPxdBOo", ucnv_flushCache_67) +STUB( + "-5UZTOxnil8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE7reserveEi) +STUB( + "-5VHnRIYXmc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "-5bKeSMgJmo", + _ZN7WebCore11DisplayList25DrawDotsForDocumentMarkerC1ERKNS_9FloatRectENS_23DocumentMarkerLineStyleE) +STUB( + "-5budpPgP8o", + _ZN9Inspector23TargetBackendDispatcher15setPauseOnStartElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("-5cV-3bxnS4", _ZN7WebCore26CustomElementReactionStack12processQueueEPN3JSC14JSGlobalObjectE) STUB("-5kyhgJ8jtA", sceFsUfsCollectTelemetry) +STUB( + "-5lut1s8xsI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "-5qxkXnrlzQ", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("-5tkRElgDxY", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_23NpSessionInvitationInfoEEC1ERKS4_) +STUB("-5xLBHcLnNk", _ZNK7WebCore10MouseEvent11fromElementEv) STUB("-5y2uJ62qS8", sceRtcTickAddYears) +STUB("-60GtomjSXQ", u_uastrcpy_67) STUB("-60wFf6p8c0", sceVdecwrapQueryFrameBufferInfo) +STUB( + "-676DS1zNws", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEppEi) +STUB("-67rxYq1qZo", WKBundleSetWebNotificationPermission) +STUB("-69D4t3LLHE", _ZNK3JSC8Profiler8Database6toJSONEv) +STUB( + "-69cEV5hHxE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) STUB("-6FjKlMA+Yc", sceHmdInternalSocialScreenSetOutput) +STUB( + "-6ZCz5jKYD0", + _ZN7WebCore21NetworkStorageSession25deleteCookiesForHostnamesERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEENS_22IncludeHttpOnlyCookiesE) +STUB( + "-6ZToEMzgdY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEC2EPS6_PNS2_10LibContextE) +STUB("-6c3gTtoWss", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE3endEv) +STUB("-6d4SdGQUk0", mono_aot_Sce_Vsh_Webbrowser_XdbWrapperunwind_info) STUB("-6dHxuyIr7A", sceBgftServiceIntPlayGoFindTaskId) +STUB("-6fHtBCBprM", _ZN7WebCore33signedPublicKeyAndChallengeStringEjRKN3WTF6StringERKNS0_3URLE) +STUB("-6iS7eTWvCs", _ZN3sce7Toolkit2NP2V210Tournament27TeamVsTeamTournamentDetails5resetEv) +STUB( + "-6j5W94wjUI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEEaSERKSA_) +STUB("-6jvnhfdlpw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEC2ERKS7_) +STUB( + "-6m7qgGahMo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "-6rae2T63PM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEC1Ev) STUB("-6srIGbLTIU", scePngDecQueryMemorySize) +STUB( + "-6wmwBiW4wo", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB( + "-6xcENl4w+s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEED1Ev) +STUB("-6y9xOBC+eE", _ZN3sce7Toolkit2NP2V27Session14SessionDetailsC1Ev) +STUB("-7+EcozzUoU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEEaSERKS7_) +STUB( + "-7+F6Bm7EiU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEptEv) +STUB( + "-79VoK8qkmM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEED2Ev) +STUB( + "-7A9qfZj08o", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser8getlimitEv) +STUB("-7FHWVgAqME", _ZN7WebCore11PageOverlay8setFrameENS_7IntRectE) +STUB("-7Gi8U+26XU", + _ZN15AbstractStorage14TwitterContentC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) +STUB( + "-7HDDUtcfKk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE7popBackEv) +STUB( + "-7PLiks2JRI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEneERKS9_) +STUB("-7WoJAydNM8", _ZN3WTF16AtomicStringImpl6lookUpEPKhj) STUB("-7XgCmEwKrs", sceUserServiceIsSharePlayClientUser) +STUB("-7c7thUsi1c", _ZTSPKd) +STUB("-7d2AWzYgDw", _ZNK7WebCore23ISOSchemeInformationBox18schemeSpecificDataEv) +STUB( + "-7g-5LVkStM", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Console14ConsoleMessage5LevelEEEN3WTF8OptionalIT_EERKNS6_6StringE) STUB("-7jGuQtigu4", sceNpUniversalDataSystemIntPostRecordData) +STUB("-7nRJFXMxnM", fputws) STUB("-7o1DYzaSuU", sceAppInstUtilAppUpdateStartTime) STUB("-7ovXt8hp6g", sceSpPthreadCreate) +STUB( + "-7pubcJdofw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEixEm) +STUB("-7u-WG3kX3U", _ZN3JSC22resetSuperSamplerStateEv) +STUB("-7vr7t-uto8", _Atomic_thread_fence) STUB("-7zMNJ1Ap1c", sceSystemServiceActivateMpeg2Start) +STUB("-81RLqhFHkU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEE7get_refEv) +STUB( + "-84vpXUUrt4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE5beginEv) +STUB( + "-86LifOC3mE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEppEv) +STUB("-88a0S7jbwQ", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData10getifMatchEv) STUB("-8ArXjBU6qg", sceDtcpIpInit) +STUB("-8B8yCnaar4", WKContextSetUserID) +STUB("-8F1G4H0uQk", mono_metadata_encode_value) +STUB( + "-8GWMo03sLw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEixEm) +STUB("-8Jm4zqdPMs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEC1Ev) +STUB( + "-8P59RslYj0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEE3getEv) +STUB("-8WieNm9NTk", _ZN3sce7Toolkit2NP9Utilities6FutureI24SceNpBandwidthTestResultEC1Ev) STUB("-8Wn4YKZLMM", sceNpAppLaunchLinkIntDestroyRequest) +STUB("-8a1RvBia1Q", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEE7add_refEv) +STUB( + "-8m+pLswdLY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEEcvbEv) +STUB("-8m12oaxsQc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEE3getEv) +STUB("-8piaVtO-jA", _ZN3sce7Toolkit2NP2V212NetworkUtils12Notification14NetStateChangeC2ERKS5_) +STUB( + "-8qw7HxnQJk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEC1EPKS8_) +STUB("-8rPOnonqLI", ustr_hashUCharsN) +STUB("-8t2aEtFws4", hb_font_destroy) +STUB("-8xVXHwp29w", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE4sizeEv) +STUB( + "-8yb-0BQ44I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("-91vFSqiuKw", _ZN3sce2np8WorkItem11SetFinishedEi) +STUB( + "-946JD1-ohw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEC1Ev) +STUB("-952YwDLV-s", monoeg_g_hash_table_iter_init) +STUB("-9BHlFnLjVg", png_set_packing) +STUB("-9HwgkIuyI0", mspace_malloc_stats_fast) +STUB( + "-9I6TUXnd60", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE21intrusive_ptr_add_refEPS9_) STUB("-9LLVU0uvs8", sceNpTrophy2GetTrophyIcon) STUB("-9LzYPdangA", sceSystemServiceActivateHevcGetStatus) +STUB("-9MiRhfacoI", il2cpp_class_get_method_from_name) +STUB( + "-9RXQTWj3fE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEE11get_deleterEv) +STUB("-9SIhUr4Iuo", _Mbtowcx) +STUB("-9SPyZbLwdc", _ZN3JSC7JSProxy9setTargetERNS_2VMEPNS_14JSGlobalObjectE) +STUB( + "-9VjsqXEZtk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEppEi) +STUB("-9cU3y6rXVM", _ZN3sce2np9WorkQueue17ProcFinishedItemsENS0_14WorkItemStatusE) STUB("-9djWj1NU4E", sceShellCoreUtilSetUserFocus) +STUB( + "-9eTwSxhjhE", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("-9fu+83KrCA", + _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product31unsetContentInteractiveElementsEv) +STUB( + "-9l+zDjMaes", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEED1Ev) +STUB( + "-9lkf5nR23I", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEmmEi) +STUB("-9mkDudN5yw", _ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead21unsetPlayerAttributesEv) +STUB( + "-9pKo2bGAuA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE21intrusive_ptr_sub_refEPS7_) +STUB("-9r9XEuzsPE", rgctx_fetch_trampoline_mrgctx_43) +STUB("-9rpiBpO0+c", _ZNK7WebCore11MediaPlayer12getStartDateEv) +STUB( + "-9uTmN54rUg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEE7get_refEv) +STUB("-A+fyFC4L5c", _ZN3JSC7Symbols22reduceRightPrivateNameE) +STUB("-A-OQrmE53U", __asan_report_load1_noabort) +STUB("-A0EiAdM3tI", _ZN3sce7Toolkit2NP2V26Trophy7Request6UnlockD1Ev) +STUB("-A2RJyUr950", udtitvfmt_formatToResult_67) +STUB("-A7WrRrcyhc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEC2ERKS7_) +STUB("-AAl2ff+PAQ", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities13ErrorResponseC1EPNS1_6Common10LibContextE) +STUB("-AH3C+cYjsY", _ZN12video_parser13cVideoMetaVWG14getArtworkInfoEjPNS_18VpThumbnailInfo_t_E) +STUB("-ALNQpKAAMw", __asan_exp_storeN) +STUB( + "-AXvG7Eimo4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE21intrusive_ptr_sub_refEPS9_) STUB("-AYJga7O56c", sceCesUhcToUtf16) +STUB("-AeE58GkM+Q", FT_Bitmap_New) STUB("-Afi-JoRZ-U", sceNpServiceChecker2IntInitialize) +STUB("-AmYlACOriA", _ZN3sce3Xml3Dom6NodeIdneEi) +STUB("-Apk7yibRiQ", _ZN7WebCore7Element21offsetLeftForBindingsEv) +STUB( + "-ArLCO0NUW4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEED1Ev) +STUB("-AuznSOJ2AQ", _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse15getInGameRosterEv) +STUB("-B0M+7o4v9A", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessionsD2Ev) +STUB( + "-B0YkjtFOkA", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB("-B0q-hW9Suw", _ZN7WebCore9HTMLNames13pluginurlAttrE) +STUB("-B36vcnugc0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEED2Ev) +STUB( + "-B39pdry+hY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE10setContextEPNS2_10LibContextE) STUB("-B76wP6IeVA", scanf_s) +STUB("-B7ibBUo4ds", mono_bitset_mem_new) +STUB("-BFUCKzy5ts", + _ZN7WebCore21UserContentController21removeUserStyleSheetsERNS_15DOMWrapperWorldE) +STUB( + "-BFwu1jJDVQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEC1Ev) STUB("-BH+f7FpecY", sceLibSecureCryptographyGenerateKey) +STUB( + "-BHDsmPQazQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEC2ERKS7_) +STUB("-BIaTg4za58", _ZN3sce7Toolkit2NP2V28Matching7Request11SearchRoomsC1Ev) +STUB("-BJ6og-w7Ho", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEE3getEv) +STUB("-BOOjYGTWcA", WKInspectorIsDebuggingJavaScript) STUB("-BPcEQ1w8xc", sceRemoteplaySetRpMode) +STUB( + "-BQHV7+qO7E", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEEiRNS2_10LibContextEPT_m) STUB("-BReK8o1vzQ", sceDtcpIpRemoveHeader) +STUB("-BSR+UeNT3k", _ZNK3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead6toJsonERNS_4Json5ValueEb) +STUB("-BTiWtwKno8", JVM_IsPrimitiveClass) +STUB( + "-BW7cT3I30g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEE5resetEPS6_) STUB("-BdMRUAeZRo", sceFsLvdDisableLayer) +STUB( + "-BekXrmBT9U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("-BgzebSMaVY", _ZN3sce2npeqERKNS0_4UserES3_) +STUB( + "-BitQtTAuDw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("-Bj2snOkWCw", mono_aot_Sce_Vsh_Orbis_ContentManagerunbox_trampolines) +STUB("-BjZzTTOnXs", utext_equals) +STUB("-Bl9-SZ2noc", _ZNSt6_WinitC1Ev) +STUB( + "-BqFJfMo0R0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEE11get_deleterEv) +STUB("-BtM3AmrJRc", _ZN3sce7Toolkit2NP2V23TUS12TusVariables5resetEv) +STUB("-BwLPxElT7U", _LFpcomp) +STUB( + "-Bwvuu68MZo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE5beginEv) +STUB( + "-BxhN2aIUis", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEmmEi) +STUB( + "-BzmMBJg-vc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEEC2ERSA_) +STUB( + "-C0uYMuE+2k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEC2Ev) STUB("-C2nkoEYOnU", sceHmd2ReprojectionQueryDisplayBufferSizeAlign) +STUB("-C72geQPSLg", _ZN3WTF18loggerObserverLockE) +STUB("-C80KCoJ72g", _ZN7WebCore28convertToIntegerEnforceRangeIlEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB( + "-CBdUCEoajM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEC1EPS6_PNS2_10LibContextE) +STUB( + "-CFH7UJUam4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEptEv) +STUB("-CIap3MsUMg", unorm2_normalizeSecondAndAppend_67) +STUB( + "-CPnCpxvKB0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "-CUwqF53QR0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "-CZ9m6RjuZc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEE11get_deleterEv) STUB("-Caws0X3+bY", sceSystemGestureDebugGetVersion) +STUB( + "-CcvqrtdT84", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEEaSERSA_) +STUB("-CdmI7pz6Uk", WKPreferencesSetFullScreenEnabled) +STUB("-CqfrStPZ4s", _ZNK3sce2Np9CppWebApi6Common8IteratorIdEdeEv) +STUB( + "-CsJzdsf8W8", + _ZN7WebCore11HistoryItem14setStateObjectEON3WTF6RefPtrINS_21SerializedScriptValueENS1_13DumbPtrTraitsIS3_EEEE) +STUB( + "-CtMTRoDtmk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEplEm) +STUB("-CyF1XyqmaQ", glGetIntegerv) +STUB("-CyKFkZr9Yg", + _ZN3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayerC1EPNS1_6Common10LibContextE) +STUB("-D-Dsk4CZXA", _ZN7WebCore29SQLiteStatementAutoResetScopeD1Ev) +STUB( + "-D3cN2on72c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEEC1Ev) +STUB("-D3elCoeE5I", _ZN7WebCore9HTMLNames22onaccessibleselectAttrE) +STUB("-D8MD+5yuAw", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanity9terminateEv) +STUB( + "-DCI8BvQVpk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEE5resetEPS7_) +STUB("-DDelvzvDI4", _ZN7WebCore22startOfEditableContentERKNS_15VisiblePositionE) +STUB("-DDmi3EClBw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEptEv) +STUB( + "-DG+cSNIXSk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE8pushBackERKS8_) +STUB( + "-DHemZ+GUvg", + _ZN7WebCore20SharedBufferDataViewC2EON3WTF3RefINS_12SharedBuffer11DataSegmentENS1_13DumbPtrTraitsIS4_EEEEm) +STUB("-DI2WTqsG-4", _ZN12video_parser7cVpUtil22vp_ff4_fopen_by_threadEPKcPPvj) +STUB("-DPCcU5HzAo", _Z30receiveIpmiInvokeSyncMethodResiPiPN4IPMI10BufferInfoEjb) +STUB( + "-DdEXSgPW5Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE5emptyEv) +STUB("-DgOHVa0P38", monoeg_g_timer_new) +STUB("-DhgFoWE1Cc", _ZN7WebCore9HTMLNames6dirTagE) +STUB("-DkBYjZsGlM", mono_aot_System_Net_Httpunbox_trampoline_addresses) +STUB("-Ds-S0orwk4", _ZN7WebCore23CoordinatedImageBacking6updateEv) +STUB( + "-DstrxUTZVU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE8copyFromERKS9_) STUB("-DtvmQ-tgEA", sceAgcSetSubmitMode) +STUB( + "-DuBF88-AY4", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("-E+Gkzlo76c", ucnv_bld_countAvailableConverters_67) +STUB("-E2SeffYXf0", _ZNK7WebCore9FrameTree4findERKN3WTF12AtomicStringE) +STUB( + "-E4iyAZ8zRw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEEC1ERKSA_) STUB("-EHnU68gExU", sceGameLiveStreamingPermitServerSideRecording) +STUB("-EHslebchJ4", mono_aot_Sce_Vsh_Accessor_Db_Notifyunbox_trampolines) +STUB("-EL6-8BIXf4", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi21ParameterToLeaveMatchC1Ev) +STUB("-EPy2jtb0yE", logF_tail) +STUB( + "-EQdqepiKIg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEE7add_refEv) +STUB( + "-ETC+3ENM0Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE4sizeEv) +STUB("-EWXk2g99YI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE5clearEv) +STUB("-EgDt569OVo", _Atomic_exchange_4) +STUB("-EgSegeAKl4", _ZNSt6locale5facet7_IncrefEv) STUB("-EneZpqt2T0", sceMouseSetProcessFocus) +STUB("-Eo3c03tfXk", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEEC2Ev) +STUB( + "-EtATSNUGfg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEEaSERSA_) +STUB("-EuV4+PBwlE", _ZN3WTF18asciiCaseFoldTableE) +STUB("-F3z0DF32Fw", _ZNK3WTF8JSONImpl9ArrayBase3endEv) STUB("-F6NddfUsa4", sceSharePlayStartStandby) +STUB("-FAGPVzSjV4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12RoomPingTimeEED1Ev) +STUB( + "-FCtQygQIjs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEED1Ev) +STUB("-FDKcrJmdZs", monoeg_g_array_new) +STUB("-FDuN-QPtQc", _ZN7WebCore4BlobC1EPNS_22ScriptExecutionContextE) +STUB("-FEaAphpqc8", _ZN3sce7Toolkit2NP26TusAddAndGetVarInputParamsC1Ev) STUB("-FIshKbdFRU", sceCesBig5ToUtf32le) +STUB("-FKZylBFj8Y", _ZN15AbstractStorage11LocalFolderD2Ev) +STUB( + "-FL-1JvDZTM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("-FPD5Ii-bXA", mono_aot_I18N_Otherunbox_trampolines) +STUB( + "-FX5i7tNaDw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEED1Ev) +STUB("-Fbe0dpEgBc", mono_aot_Sce_Facebook_CSSLayoutmethod_addresses) STUB("-Fbhc5T-vIA", sceLncUtilGetVideoFinalizeState) +STUB( + "-FsfwKx9Oqo", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129ConnectionQualityWiredMetrics17setPacketLossRateERKi) +STUB("-FwGo9dtzKY", _ZN7WebCore21WebKitFontFamilyNames4initEv) +STUB( + "-FweycaUu64", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V232WebApiErrorResponse_errorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_25WebApiErrorResponse_errorEEE) +STUB("-FwfB5G9ztg", curl_formadd) +STUB( + "-FwfsUYAVcc", + _ZN3JSC13RuntimeMethod6createEPNS_14JSGlobalObjectES2_PNS_9StructureERKN3WTF6StringEPNS_8Bindings6MethodE) +STUB( + "-G+2nwDM4jY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB("-G-2WJkcuKU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE8pushBackERKS6_) +STUB("-G1ivTvs2mU", + _ZN9Inspector14InspectorAgent29willDestroyFrontendAndBackendENS_16DisconnectReasonE) +STUB("-G3iVvLKzI4", llvm_resume_unwind_trampoline_p) +STUB( + "-G7enOFstJc", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB( + "-GAJtFq3z+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEE11release_refEv) +STUB("-GErxL9jBFc", Java_java_util_zip_Inflater_getBytesRead) +STUB( + "-GMb3vk9l20", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEmmEi) +STUB("-GPFiqyNa4s", _ZN4Manx13WorkQueueImpl5TimerC2EPNS_9WorkQueue8FunctionE) STUB("-GQkEcaeblI", sceCesRefersUcsProfileKoi8R) +STUB("-GVEj2QODEI", _Atomic_fetch_xor_4) +STUB("-GYplHDTVHY", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification11RefreshRoomEED2Ev) +STUB( + "-Gf28NDtCGQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEEC1ERSA_) +STUB( + "-Gg2vtudAR4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE8capacityEv) +STUB("-Gl-h+vKl14", _ZN7WebCore11MediaPlayer10setVisibleEb) +STUB("-Gs4mL5SRp8", umsg_setLocale_67) STUB("-GvBqz54ssU", sceUsbStorageGetDeviceInfo) +STUB( + "-H0Qm52uHi4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlotC1ERS5_) +STUB("-H2CstHudSI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEED2Ev) STUB("-H3UwGQvNZI", sceCameraGetDeviceIDWithoutOpen) +STUB( + "-HALg5kZSl8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEixEm) +STUB("-HAzeV7vL-Q", glCheckFramebufferStatus) +STUB( + "-HEdW4hWFGw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEC2ERS7_) STUB("-HH5Om7MHIQ", scePssCAudSetSurroundPan) STUB("-HIO4VT87v8", sceHttp2SetConnectTimeOut) +STUB("-HIZUuTVyFw", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEEppEv) +STUB("-HJUy5ec9GQ", Java_java_lang_StrictMath_asin) +STUB( + "-HKqt1qNdwo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEC2Ev) +STUB("-HNrydWB0EE", Java_com_sony_bdjstack_system_BDJModule_prepareTitle__I) STUB("-HOOCn0JY48", sceAgcDcbSetShRegistersIndirect) +STUB( + "-HPlUFHYUo8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE4sizeEv) +STUB( + "-HW5WP0O1gY", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEEiRNS2_10LibContextEPT_m) +STUB("-HXv2nr0jQY", _ZN7WebCore26HTMLTextFormControlElement12setRangeTextERKN3WTF6StringEjjS4_) +STUB( + "-HXxkKULPnM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEED1Ev) +STUB("-HYD6ysDUts", _ZN9Inspector22RemoteInspectionTarget34pauseWaitingForAutomaticInspectionEv) +STUB("-Hc6XkAq-eU", ubrk_close) +STUB("-HdxnFZtWew", _ZN3sce2Np9CppWebApi14SessionManager2V16Friend17getPlayerSessionsEv) +STUB("-Hjp76WP2tg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEixEm) +STUB("-HnAojb1VFA", mono_thread_set_threads_exhausted_callback) +STUB("-HnJLYY5Qbo", mono_set_lmf_addr_tls_offset) +STUB("-HnhrbY5DqY", _ZN3sce7Toolkit2NP2V27NpUtils7Request22GetAccountIdByOnlineId13MAX_SIZE_DATEE) +STUB("-HuGlmrhcZ4", _ZN12video_parser5vpcom3rtc13FormatRFC3339EPcPKmi) +STUB("-HwHoMkhCSs", _ZN7WebCore9HTMLNames14http_equivAttrE) +STUB("-I+A1kd-jNE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEED2Ev) +STUB( + "-I+QyHR0Oi0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEmmEv) +STUB("-I22EAAA4uI", _ZN3sce2Np9CppWebApi7Matches2V117LeaveMatchRequestD2Ev) +STUB( + "-I35Jrgz8n8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEEaSERSA_) STUB("-I4IPggVX7s", _sceLibcMallocInitialize) +STUB( + "-I5j1vgsJCg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEEC2ERSA_) +STUB( + "-IANIWhFoMo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE10setContextEPNS2_10LibContextE) STUB("-IAOwd2nO7g", sceImeVshSendTextInfo) +STUB("-IDWXBA-UK0", _ZN7WebCore8SVGNames14zoomAndPanAttrE) +STUB( + "-IHq9uHghpE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEC2Ev) +STUB("-INjjqmfDvw", _ZN23sceMetadataReaderWriter16extractExtensionERKSsRSs) +STUB("-IPY9EUy9O4", _ZNSt8ios_base7copyfmtERKS_) +STUB( + "-IUJ-rc-FAg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "-IUShtiBtcI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE6resizeEj) +STUB( + "-IW9PK24IDc", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessionsD1Ev) +STUB("-IWIc-sYiZk", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112GroupingTypeEEeqERKS7_) +STUB( + "-IYJYDt61yA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE10setContextEPNS2_10LibContextE) +STUB( + "-Ih6ikmQLbE", + _ZN7WebCore21PageOverlayController45copyAccessibilityAttributeStringValueForPointEN3WTF6StringENS_10FloatPointERS2_) +STUB( + "-Im2AEW5umk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEppEv) +STUB("-IrggqXYu-Q", uspoof_openFromSerialized_67) +STUB("-IubHdftGTU", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_28ActivityFeedSharedVideoStoryEE9constructEPS3_RKS3_) +STUB("-Iwc9AvKQvU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEED1Ev) STUB("-Ix48F8rGYI", sceHidControlGetVersionInfo) +STUB( + "-J+FvLOGoBU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEEC2ERSA_) +STUB("-J7Sv5NUMds", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEC2ERKS7_) STUB("-JBoEtvTxvA", sceUsbdGetDescriptor) +STUB( + "-JCwm6aEu4o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEE5resetEPS6_) STUB("-JE2KLnsg9I", sceMusicPlayerServiceRemoveAllData) +STUB( + "-JHS0wTq83M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEppEi) STUB("-JHVe5UMUfM", sceDataTransferTargetRequestSearch) +STUB( + "-JQmEfRLk8s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEC1Ev) +STUB("-JRXdMwjd6I", _ZN7WebCore9HTMLNames8theadTagE) +STUB( + "-JSCA05tQ7c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEC1Ev) +STUB( + "-JYxtdUzigs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEEC2Ev) +STUB("-Ja2aT6A3fg", _ZN3sce2np9NpTitleIdC1Ev) +STUB("-JcTBruFr+M", mono_aot_Sce_Vsh_EventAppjit_code_end) +STUB( + "-Jdch0GvH8U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEEaSERSA_) +STUB("-JjIKV47G5A", unum_formatDoubleCurrency_67) +STUB("-JjkEief9No", __atomic_store_2) +STUB( + "-Jln36Tq2lM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEixEm) +STUB( + "-JoYXTZ+V60", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser28getxPsnAcceptPlatformNamePs5Ev) +STUB("-Jp7F+pXxNg", pipe) +STUB( + "-JpYiERjqxs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "-JyysYboZnE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("-K012oKv7g4", Java_java_awt_GnmGraphics_nativeSetStroke) +STUB("-K5lDxo+iek", _ZN3sce3pss4core8graphics7TextureC2Ev) +STUB( + "-K7zBRxvPvY", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("-K8h1wXHxmY", _ZN7WebCore8SVGNames6g2AttrE) +STUB( + "-KAFm9ogxVU", + _ZN7WebCore16BlobRegistryImpl26writeBlobsToTemporaryFilesERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEEONS1_17CompletionHandlerIFvOS6_EEE) +STUB("-KAers5zOTg", _ZN12video_parser17cVideoProfilerMp418_releaseVideoCodecEPNS_13VpMediaInfo_tE) +STUB("-KBozLIageo", _ZN3sce7Toolkit2NP2V27Ranking7Request15GetFriendsRanks15MAX_NUM_FRIENDSE) +STUB("-KKlTIIqZrk", _ZN3JSC7Options24ensureOptionsAreCoherentEv) +STUB( + "-KKyl-UJoNc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEaSERS7_) +STUB( + "-KM3JD6Mawo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEC1EPKS8_) +STUB( + "-KMIhX+1zvs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEEC1Ev) +STUB("-KN6FGZnxzs", _ZNK7WebCore12SharedBuffereqERKS0_) STUB("-KNh1VFIzlM", sceUsbdCancelTransfer) +STUB( + "-KOVtchwUes", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_) STUB("-KQ7XkCNW2U", scePerfPmcL2iStop) +STUB("-KRLtgJrw7g", mono_counter_get_section) +STUB( + "-KW9aaOW-4E", + _ZN3sce2Np9CppWebApi12Leaderboards2V134RecordLargeDataResponseBodyFactory7destroyEPNS3_27RecordLargeDataResponseBodyE) +STUB("-KWenZqNiks", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEC1Ev) +STUB("-KdbpcGgEXU", _ZN7WebCore21InspectorFrontendHostC1EPNS_23InspectorFrontendClientEPNS_4PageE) +STUB("-Kf5hg8z7hk", _ZN3sce7Toolkit2NP2V212ActivityFeed9StoryUser11URL_MAX_LENE) +STUB("-Kfq0IYFBf0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEE5resetEPS6_) +STUB( + "-KgOaCNfHlE", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStats16getincludeFieldsEv) +STUB("-KkdjQY92A0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEEC2Ev) +STUB( + "-KkrhwM6Rg0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEEC2Ev) +STUB("-Klw5+80OFM", fuse_free_req) +STUB("-KlzWzPxyQ0", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_19GetGameDataResponseEEC1Ev) +STUB( + "-KoO3j3Usgk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("-KuXMRU+oxM", vzone_getTZURL_67) +STUB( + "-KwWzv43lB8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo22setxPsnAtomicOperationENS5_19XPsnAtomicOperationE) +STUB( + "-Ky2SY51SeA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEED1Ev) +STUB("-L+-8F0+gBc", _ZTVSt13runtime_error) +STUB( + "-L+gRFmAyPM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEptEv) +STUB( + "-L-ToNIBUao", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB( + "-L-ykW3UWoI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEmmEi) +STUB("-L3Y5wXVigQ", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEEdeEv) +STUB( + "-L5AqROLYlk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEeqERKS9_) +STUB("-LBTbmN-lt0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEEC2Ev) +STUB( + "-LBlgSynQ3k", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEE3getEv) +STUB("-LBvd0tKBE4", delegate_virtual_invoke_23_p) STUB("-LC9hudmD+Y", sceNpTrophySystemDestroyHandle) +STUB("-LFO7jhD5CE", ungetc) +STUB( + "-LHI2s5IOOw", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetBoolean5Ev) STUB("-LJbF9b-Who", sceNpSnsFacebookAbortRequest) +STUB( + "-LKfBC57JRM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE4sizeEv) +STUB("-LPiephsaEo", g_JSWebAssemblyTablePoison) +STUB("-LSSffiQqPg", JSObjectHasPropertyForKey) +STUB( + "-LUhjd5yQPg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEEC2Ev) +STUB("-LVXigKk--w", _ZN7WebCore13HTTPHeaderMap6removeERKN3WTF6StringE) STUB("-LXhcGARw3k", sceAudioOutMbusInit) +STUB("-LdLZ2x8Vro", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetAccountId2OnlineIdD2Ev) +STUB("-LhEsCQ5mTQ", __ubsan_handle_function_type_mismatch) +STUB("-LhUzPvU4f8", __strcp_D2A) +STUB( + "-LlURYshADg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEC1EPS8_) STUB("-Lpr5gHkHkc", sceShellCoreUtilIsBgmPlaying) +STUB("-LuSbSzfxGg", _ZTVN7WebCore17TextureMapperTileE) STUB("-LxFGYCJwww", sceNpTusGetDataForCrossSaveVUser) +STUB( + "-Ly6BOueRXM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEneERKS7_) STUB("-LzHP72LYUo", sceVideoCoreSetInitialInfo) +STUB("-M5c7Fr+-80", _ZN13MsvMetaEditorC1Ev) +STUB("-M9AqqLEF+k", _ZN7WebCore24CoordinatedGraphicsLayer22transformedVisibleRectEv) +STUB( + "-MA+nE0iXdc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEE3getEv) +STUB("-MD7V1yKTfE", SwCtrlManagerCancelActivate) STUB("-MFiL7hEnPE", sceNpPartyShowInvitationList) +STUB("-MGjVSZgGLs", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIjEC2Ev) +STUB( + "-MHMA8uL2mA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE8capacityEv) +STUB( + "-MJE2k8wWQY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("-MRnIXVJQ-U", _ZN12video_parser5vpcom6CallocE) +STUB( + "-MSB-0-675o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE7reserveEi) +STUB("-MSv8GTlzww", _ZN9Inspector22ContentSearchUtilities11lineEndingsERKN3WTF6StringE) +STUB( + "-MTvLWruKgI", + _ZN7WebCore17JSDOMGlobalObject23promiseRejectionTrackerEPN3JSC14JSGlobalObjectEPNS1_9JSPromiseENS1_27JSPromiseRejectionOperationE) +STUB("-MU6s8JAzXw", __asan_exp_store16) STUB("-MU9L6S3Fj4", sceHttp2WebSocketSetPingTimeout) +STUB( + "-Ma1eVc1-nI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("-MaCPVwIZtc", Java_java_lang_Runtime_gc) STUB("-McDhX8tnWE", sceNpTitleMetadataIntGetInfo) +STUB( + "-McbTC2Bho0", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V145MatchCompletionRateDisconnectedMetricsFactory7destroyEPNS3_38MatchCompletionRateDisconnectedMetricsE) STUB("-Mi5hNiWC4c", sceNetConfigWlanScan) +STUB("-MicizMIiag", _ZN9Inspector14InspectorAgentnaEm) +STUB("-MnzCChBb5c", _ZN9Inspector24ConsoleBackendDispatcherD0Ev) +STUB("-MoZKJXBTlM", _ZThn136_N7WebCore16HTMLMediaElement4playEv) +STUB( + "-MqYPq4mK6c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEE11get_deleterEv) STUB("-Mui67TZd4s", sceAvSettingGetHdmiMonitorInfo) +STUB("-N3-B8FdUFA", _Z21sendIpmiDisconnectCmdii) +STUB( + "-N5XaLKxEs0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEE11get_deleterEv) +STUB("-N79h7XJG8A", _ZN3JSC12StringObjectC1ERNS_2VMEPNS_9StructureE) +STUB("-N8JU4FqoZg", _ZN7WebCore20LowPowerModeNotifierC2EON3WTF8FunctionIFvbEEE) +STUB( + "-N9K32+TOIg", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("-N9SbnOwNto", LoginMgrDestroyUser) +STUB( + "-N9yLoYg8pI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEEC2Ev) +STUB("-NAYLFFi9n8", _ZN3JSC14setNeverInlineENS_7JSValueE) +STUB("-NAi4kLuiTw", _ZN7WebCore16DOMGuardedObjectD0Ev) +STUB("-NCN776X1TY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEED2Ev) +STUB("-NK5ctCHUkU", Java_java_util_zip_ZipEntry_initIDs) +STUB( + "-NMtnz-DXXA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("-NOpB57jCtM", _ZN3JSC16getFunctionRealmERNS_2VMEPNS_8JSObjectE) +STUB( + "-NTZ2ydy0gw", + _ZN3sce2Np9CppWebApi14SessionManager2V123SearchAttributesFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_16SearchAttributesEEE) +STUB( + "-NU7moumN4Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "-NWoybNRyYQ", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfiles9terminateEv) +STUB("-NZ5JtLHso4", verifyDeciHeader) +STUB( + "-Nc2X+UbjQU", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10setString4EPKc) +STUB( + "-Ne0y9n0480", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEEC1Ev) +STUB( + "-NedrbToMss", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE3endEv) +STUB("-Nf9pkKQB7w", bemp2sys_tsdecoder_create) +STUB( + "-NnBvt6HQ7A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEED2Ev) +STUB("-NopEkuDKSI", _ZN7WebCore24CoordinatedGraphicsLayer16didChangeFiltersEv) +STUB("-NxEk7XLkDY", _ZN3sce4Json5Value11referObjectEv) +STUB( + "-NxkyUp9Yzk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEC1EPNS2_10LibContextE) +STUB("-O7BDbTET7c", mono_aot_Mono_Data_Tdsjit_code_end) +STUB( + "-O9zokQlREk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEE11release_refEv) +STUB("-OC53HFeagI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEEC2ERS7_) +STUB( + "-OIzURISqA8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "-ONrJk52jjQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEEcvbEv) +STUB("-OWrx4Cio+M", _ZNK7WebCore8Document10designModeEv) +STUB("-OcRetP9dpc", _ZN3sce7Toolkit2NP2V211SharedMedia7Request14GetScreenshotsC2Ev) +STUB( + "-Oczdk+8RRE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("-OeaeJsE8Cg", _ZN3sce7Toolkit2NP2V29Messaging7Request27GetReceivedGameDataMessagesD2Ev) +STUB("-Oet9AHzwtU", timezone) +STUB( + "-Ok6qgJ3Pfg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEC1ERKS7_) +STUB( + "-Oq-dFyAixg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("-OrgQoBbx8M", _ZN7WebCore14SQLiteDatabase29setIsDatabaseOpeningForbiddenEb) STUB("-Ozn0F1AFRg", sceVideoOutDeleteFlipEvent) STUB("-P0LG2EUFBE", sceNpManagerIntLoginGetAccessToken) +STUB("-P2S5xXIrJA", _ZN7WebCore9GLContextnwEmPv) +STUB( + "-P3qqdtKgJM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEEC1ERSA_) +STUB( + "-P4MeSsk4WA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB("-P5-Lgi0n00", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE5clearEv) +STUB("-P6FNMzk2Kc", cosf) STUB("-P6X35Rq2-E", sceFontCharacterLooksFormatCharacters) +STUB( + "-P6xUpHbGF0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "-P7WOObStig", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB( + "-P83mfmd+P0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEEC2ERKSA_) +STUB("-PA4t0qZEMg", _ZN7CoreIPC15ArgumentEncoderD2Ev) +STUB("-PD5w8BHRxw", mono_aot_Sce_Vsh_Np_IdMappermethod_addresses) +STUB( + "-PDXo881on0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEC2Ev) +STUB("-PGtVjZOOw8", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_21NotifyChallengeResultEE17getAdditionalInfoEv) +STUB("-PI6VA60yx4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEC1Ev) +STUB("-PICMHMyrGE", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEEppEi) +STUB( + "-PK469sXrYE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEplEm) +STUB("-PMWKYwBckw", _ZN7WebCore8Document10setBgColorERKN3WTF6StringE) +STUB( + "-PMZGMmva-c", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEplEm) +STUB( + "-PR0ksCaGyg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEEptEv) +STUB("-PRY8de75LI", uloc_getAvailable_59) +STUB("-PRjiqMZI9Y", _ZN7WebCore9HTMLNames12reversedAttrE) +STUB("-PW4YGzrUxA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEEC1ERS7_) +STUB("-PXuTfPzcT4", _ZN3sce2Np9CppWebApi7Matches2V113RemovedPlayer9setReasonERKNS3_11LeaveReasonE) +STUB("-PYC3+W6yUE", _ZN15AbstractStorage14StorageManager4FreeEPv) +STUB("-PYy6gszSBU", + _ZN7WebCore6Editor10findStringERKN3WTF6StringENS1_9OptionSetINS_14FindOptionFlagEEE) +STUB("-Pd56-y6LyU", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110PlayerTypeEEaSERKS7_) +STUB( + "-PfK8Td8uJs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE8capacityEv) +STUB( + "-PimsYZDKEQ", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUserC1Ev) +STUB( + "-PjDwz7jpzE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "-PjxKOjT01I", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEdeEv) +STUB( + "-PkDrb-VfEY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEED1Ev) STUB("-PoIzr3PEk0", sceSslGetMemoryPoolStats) +STUB( + "-PqW2jjaooY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "-Pw9cpis2pc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "-PxWLGUjIaI", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessions31getxPSNSESSIONMANAGERACCOUNTIDSEv) +STUB( + "-Pxu0naf1LU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEEdeEv) +STUB( + "-Q0HYXLOTCk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEED1Ev) +STUB( + "-Q0mjgOeP64", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE) STUB("-Q1-u1a7p0g", scePlayGoPrefetch) +STUB( + "-Q2c65p4i4I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEED1Ev) +STUB("-Q6FYBO4sn0", nexttoward) +STUB( + "-Q7hu431w7A", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody6toJsonERNS_4Json5ValueEb) +STUB( + "-Q8CROQZtSM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEE7get_refEv) +STUB( + "-QDzD7SYE7I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEE7get_refEv) +STUB( + "-QGzzmRGLuQ", + _ZN7WebCore29cookieRequestHeaderFieldValueERKNS_21NetworkStorageSessionERKNS_29CookieRequestHeaderFieldProxyE) +STUB("-QJ42KiNMKs", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEEC2Ev) +STUB( + "-QR7p31ZA84", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEC1Ev) +STUB( + "-QRPOVJU4aU", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayerD1Ev) +STUB( + "-QUFwG-+yB8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB( + "-QX5kMz5b-U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE5emptyEv) +STUB("-QXXvB6kOno", invpio2hi) +STUB( + "-QZoGsAmbh8", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE11getResponseERS8_) +STUB( + "-Qd0jANeE7U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEE11release_refEv) STUB("-QglDeRr8D8", sceNpSetTimeout) STUB("-QgqOT5u2Vk", _Assert) +STUB( + "-Qi41REGWv4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEEcvbEv) +STUB("-QiSEL7+e8k", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEEC2Ev) +STUB( + "-QjVhV6T3GI", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEEiRNS2_10LibContextEPT_m) +STUB("-Qju-1GPbs0", u_fgets_67) +STUB("-QkGDNo4irQ", _ZN7WebCore26CustomElementReactionStack24s_currentProcessingStackE) +STUB( + "-QkxkxtVpvI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEED2Ev) +STUB("-QlrD62pWME", _ZN3sce2np10NpOnlineId5ClearEv) +STUB( + "-QmH52s3TVQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEppEi) +STUB( + "-QmnU2+mlkI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEaSERKS7_) +STUB( + "-QnkldOVkvg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE3endEv) +STUB("-QoN5MMk6R4", uprv_int32Comparator) +STUB("-Qq59KDuvLw", _ZN3sce2Np9CppWebApi14SessionManager2V12To12setAccountIdERKm) +STUB( + "-QtK2T1EVQ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEEC1ERSA_) STUB("-QuLOgrBhew", sceDebugGetFileInfo) +STUB( + "-QwD0BchqMI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE5emptyEv) +STUB("-R0AqmVskaQ", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatusC2EPNS1_6Common10LibContextE) STUB("-R1DukFq7Dk", sceAudio3dGetSpeakerArrayMixCoefficients) +STUB("-R6tkIyYEVU", _ZN3sce7Toolkit2NP2V210Tournament7Request18GetRegisteredTeamsC2Ev) STUB("-R7CpLCLHe8", sceVnaGetMicStatus) +STUB("-R7czbHyr0E", _ZN7WebCore6Editor23changeSelectionListTypeEv) +STUB( + "-R7eTjyA060", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE3endEv) STUB("-R8FJ+5QbaU", sceIduUtilGetInstalledApp) +STUB( + "-R9HhwnMkZ4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEmmEv) +STUB("-R9mdXBspeQ", _ZNK3sce4Json6String5rfindERKS1_m) +STUB( + "-RA70xymlM4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE8capacityEv) +STUB("-RD2dLOtrY8", _ZN7WebCore6Editor29canIncreaseSelectionListLevelEv) STUB("-RJWNMK3fC8", scePlayGoGetProgress) STUB("-RJmkkuBhaY", sceVisionManagerRequestRegisterUserInRegion) STUB("-ROAAenn4Xg", sceShellCoreUtilGetCrashReportInfoForBoot) +STUB("-RQ46gpc-Yw", _ZN7WebCore16BlobRegistryImpl8blobSizeERKNS_3URLE) +STUB("-RWsM4pVi0E", WKPreferencesSetNewBlockInsideInlineModelEnabled) STUB("-Re+pCWvwjQ", sceAudio3dGetSpeakerArrayMixCoefficients2) +STUB( + "-ReIecaGFz4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEC1Ev) +STUB("-Rjboe+cAt4", _ZN3sce7Toolkit2NP2V28Commerce19ServiceEntitlementsC2Ev) STUB("-Rjp3-YViXc", sceNpUnregisterPremiumEventCallback) STUB("-RnpfpxIhec", sceAgcAcbDmaData) +STUB( + "-RruuIg42og", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE8capacityEv) +STUB("-Ru0nzM2cJ4", _ZN3WTF10TextStreamlsERKNS0_30FormatNumberRespectingIntegersE) STUB("-Ruc8RY6MSo", sceDebugGetUltWaitingQueueResourcePoolInfo) +STUB( + "-RudVpLkf3o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE5beginEv) +STUB( + "-RwHjC47GyI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEEaSERSA_) +STUB( + "-RxOx-aODiI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEE3getEv) +STUB( + "-S-wTeb2n6Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEEC1Ev) +STUB("-S36x8s8CAw", _ZN4IPMI4impl11SessionImpl12setEventFlagEjm) +STUB("-SEUBK8BV7I", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_21NotifyChallengeResultEED1Ev) +STUB("-SFzHfUuIyY", _ZN4Manx13WorkQueueImpl3runEv) +STUB("-SGh0agyaUk", _ZNK7WebCore9RenderBox19absoluteContentQuadEv) +STUB("-SMaAeL9wdY", u_versionFromUString) +STUB("-SS6hQt+3dQ", _ZNK3WTF10StringImpl21findIgnoringASCIICaseEPKS0_) STUB("-SUR+UoLS6c", sceNpTssGetData) STUB("-SV-oTNGFQk", sceScreenShotIsDisabled) STUB("-Se2FY+UTsI", sceGnmSdmaCopyTiled) +STUB("-Sfv5wYgPII", WKBundleSetFrameFlatteningEnabled) +STUB( + "-SgJKoBtwPI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEE11get_deleterEv) +STUB( + "-Si12Qu7jls", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEppEv) +STUB("-SiG1h4R+0k", __dynsym_end) +STUB("-SlFO4c+ZnQ", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10setString2EPKc) +STUB( + "-SlQbbKY3cE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEEC1ERKS9_) STUB("-Sp1aaqI1SQ", sceShellCoreUtilMakeManifestFile) +STUB("-SqaBORAnyI", mono_aot_JSC_Netmethod_addresses) STUB("-SrbXpGR1f0", pthread_attr_setstack) +STUB("-SsejhGG-SM", Java_com_sony_bdjstack_init_Init_removeFiles) +STUB( + "-StT-IjlU-c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEaSERKS7_) +STUB("-SwG4X9pRTs", g_dir_close) +STUB("-SxjDfib1iQ", _ZN4Manx14NetworkProfile12proxyEnabledEv) +STUB("-T+6YbvQ3W4", _ZN3JSC9Structure26flattenDictionaryStructureERNS_2VMEPNS_8JSObjectE) +STUB("-T-w0l9tmtQ", _ZN7WebCore8SVGNames9cursorTagE) +STUB( + "-T50I75bgc4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEC2Ev) +STUB("-T92c9bcHxI", _ZN12video_parser18cMp4FFLHndlManager8finalizeEv) +STUB("-T9ON4qEF4o", + _ZN7WebCore22EmptyFrameLoaderClient17objectContentTypeERKNS_3URLERKN3WTF6StringE) +STUB("-TKc5Xdx23Y", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEE3getEv) +STUB("-TNOnB6-yhA", _ZN7WebCore12SharedBufferC1EONS_10FileSystem14MappedFileDataE) +STUB("-TOHYitNANs", mono_aot_Sce_PlayStation_PUIPlatformunbox_trampolines_end) STUB("-TOuuAQ-buE", sceNgs2VoiceGetState) +STUB("-TP5BT-FntM", _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfileC1EPNS1_6Common10LibContextE) +STUB( + "-TRpVWulqG0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB( + "-TUEOJknbC0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEE5resetEPS9_) +STUB( + "-TWHEIcDYEU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEE7add_refEv) +STUB("-TalmFL-4Us", uprv_max) STUB("-TbZc8pwPNc", sceSslGetPeerCert) +STUB( + "-TcHuzby3w4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("-TgmcddG5Pw", _ZN3JSC7Symbols32stringIndexOfInternalPrivateNameE) STUB("-ThIlThsN80", sceRemoteplayServerLock) STUB("-TpTQG4cqr4", sceOpusCeltEncEncodeFloat) +STUB( + "-TsR8pWbN5Y", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEptEv) +STUB("-TsY1LoIITc", _ZN3JSC7Symbols21nextMethodPrivateNameE) +STUB( + "-TwdNnSAFMA", + _ZN7WebCore11HistoryItem16setDocumentStateERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16EEE) +STUB("-U-Se7lr1lc", _ZN7WebCore6DOMURLD2Ev) +STUB("-U-WFhjLdu4", _ZN7WebCore24PerformanceLoggingClient35synchronousScrollingReasonsAsStringEj) +STUB("-U2IRfHAgiU", _ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse10getAvatarsEv) +STUB("-U3n2IQMNTw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEE11release_refEv) STUB("-U6ujqBRGGg", sceVideoCorePlayControl) +STUB( + "-UAg6GJd-Fs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEED1Ev) +STUB( + "-UCvhtKU2FU", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "-UCw83sp+ic", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEC1Ev) +STUB("-UDxVMs9h9M", SSL_shutdown) +STUB("-UE6BDQDRdU", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V115VariableFactory7destroyEPNS3_8VariableE) +STUB( + "-UJuGYkzC0A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE7reserveEi) +STUB("-UK7d+-mwp8", _ZNK3sce2Np9CppWebApi7Matches2V117ResponseMatchTeam6toJsonERNS_4Json5ValueEb) +STUB("-UKRka-33sM", _ZNSt20bad_array_new_lengthD0Ev) STUB("-ULUBK21QgE", sceFiosDirectoryCreate) +STUB("-ULswyDImAE", _ZN7WebCore17JSDOMGlobalObject10structuresERKN3WTF14AbstractLockerE) +STUB( + "-UNM0s2b3mw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("-URokGExT8U", rgctx_fetch_trampoline_mrgctx_57_p) +STUB("-UWXejaXycI", _ZN7bmalloc9Allocator14reallocateImplEPvmNS_13FailureActionE) +STUB( + "-UeeTAQNXy0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("-UetQJNLBjA", mono_aot_System_Xml_Linqmethod_addresses) +STUB( + "-UjDJUZo-yA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEED1Ev) +STUB("-UlLDWXCHcY", _ZN3sce7Toolkit2NP2V28Commerce8ProductsD1Ev) +STUB("-Up2dx+yhI4", mono_aot_Sce_Vsh_DbRecoveryUtilityWrapperplt_end) +STUB("-UrE3veEVz8", _ZN7WebCore18JSHTMLInputElement9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("-UrHIrgeKrM", WKWebsiteDataStoreConfigurationSetTestingSessionEnabled) +STUB( + "-UzVKaZztH0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEC1ERKS7_) +STUB("-UzbeNWVAE4", __libunwind_Unwind_GetLanguageSpecificData) +STUB( + "-V051VtLyHw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEE21intrusive_ptr_add_refEPS7_) +STUB("-V19vwFXUFc", _ZN3sce2Np9CppWebApi10Activities2V114UserActivities14UserActivitiesD1Ev) +STUB( + "-V5wkcggi1Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEC1EPNS2_10LibContextE) +STUB( + "-V9te34p1MI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE8pushBackERKS8_) +STUB("-VByi7EJRi4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEEC2Ev) +STUB( + "-VChCq+QRVE", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody14unsetBoolean10Ev) +STUB("-VH-Z4xfNG0", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEEaSERKS7_) +STUB( + "-VH1vXRt1+Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEppEi) +STUB("-VQ44oZKoSg", + _ZN3sce2Np9CppWebApi14SessionManager2V117SearchGameSessionC1EPNS1_6Common10LibContextE) +STUB( + "-VQmh+4BX6g", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112OwnerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5OwnerEEE) +STUB("-VR6wClvMLE", WKPageSetUserContentExtensionsEnabled) +STUB("-VVn74ZyhEs", difftime) +STUB("-Vcre7XqbY4", _ZN23sceMetadataReaderWriter5ValueaSERS0_) +STUB("-VjbDZFlPH8", + _ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody9setStatusERKNS3_11OfferStatusE) +STUB( + "-Vp0aWV3ucY", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot10unsetlimitEv) +STUB("-VpZwTO4fCg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEaSERS7_) +STUB("-Vt1ihrzI0Q", mono_add_internal_call) +STUB( + "-W+r3KZTnRc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEEC1Ev) +STUB("-W-D+dMXtD0", _ZN7WebCore9HTMLNames11sandboxAttrE) +STUB("-W0cyz1wnug", _ZN3WTF13MetaAllocatorD1Ev) +STUB("-W1rGxiyonQ", u_getISOComment_67) STUB("-W28+9p1CKI", sceNpSignalSema) STUB("-W4xI5aVI8w", sceKernelSetProcessProperty) +STUB("-W6XjwwK8Bo", _ZThn16_N9Inspector19InspectorAuditAgentD1Ev) +STUB( + "-W899cJizLM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEC1Ev) +STUB("-W9fbd6kB-8", _ZN9Inspector21PageBackendDispatcherD0Ev) +STUB("-WAFtiljCdo", _ZN9Inspector21HeapBackendDispatcherD0Ev) +STUB("-WGPScpDMWA", _ZN3sce2npeqERK13SceNpOnlineIdRKNS0_10NpOnlineIdE) +STUB( + "-WGcryZBis0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEEaSERKSA_) +STUB("-WHkTpS90Mc", _ZN3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead11setTicketIdEPKc) +STUB("-WKRLgOozwg", + _ZN3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallbackD1Ev) +STUB( + "-WLkjQapkLM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("-WOpbmHCVJ0", _ZN7WebCore7Element19removeAttributeNodeERNS_4AttrE) +STUB("-WPNAo5+5Z8", _ZN12video_parser13cVideoMetaMP4D0Ev) +STUB("-WQ0jlIzAEY", _ZN7CoreIPC10Connection10invalidateEv) +STUB("-WRsXUoZ948", _ZN7WebCorelsERN3WTF10TextStreamERKNS_10FloatPointE) +STUB( + "-WS2nHEhheo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEC2EPS6_PNS2_10LibContextE) +STUB("-WSG6xgOw5Q", WKContextSetUserStorageDirectory) +STUB("-WSzZkQJj8I", cpp_demangle_read_encoding) +STUB("-WWyz1uPfx0", curl_multi_socket_action) +STUB( + "-WbfGwe7RZw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEptEv) +STUB("-Wek6mFXOrc", _ZN3sce4Json6StringpLEh) +STUB("-WgnISXjJ7A", _ZN3sce2np10JsonObject16DeleteFieldValueEPKc) +STUB( + "-WjOCT5NPKU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEppEi) +STUB( + "-WkJ2vrMV4Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEC2Ev) STUB("-WqxBRAUVM4", sceSslDisableOptionInternal) STUB("-Wreprtu0Qs", scePthreadAttrSetdetachstate) +STUB("-WyIpV7ukMU", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIjEptEv) +STUB( + "-WzxDM-yTwY", + _ZN9Inspector15ScriptCallStackC2ERN3WTF6VectorINS_15ScriptCallFrameELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB( + "-XB9pzXKmlw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEE7add_refEv) +STUB("-XCn1Pwn7NU", _ZN9Inspector32TimelineBackendDispatcherHandlerC2Ev) +STUB("-XG9UVGafZI", _ZN3sce2Np9CppWebApi14SessionManager2V128ResponseGameSessionSpectatorD1Ev) +STUB("-XGGzORfeFw", _ZN3sce7Toolkit2NP18GetWhoLikedRequestC1Ev) +STUB( + "-XHaGqZr+PE", + _ZN9Inspector31NetworkBackendDispatcherHandler20LoadResourceCallbackC1EON3WTF3RefINS_17BackendDispatcherENS2_13DumbPtrTraitsIS4_EEEEi) +STUB( + "-XNfwZTFkWw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEC1Ev) +STUB("-XTU4Srikks", + _ZN3sce2Np9CppWebApi7Matches2V120RequestTeamStatistic8fromJsonERKNS_4Json5ValueE) STUB("-XYmdxjOqyA", sceSaveDataMountSys) +STUB("-XZfrcPmlfA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEE11get_deleterEv) +STUB( + "-XeAN6sCUaU", + _ZN7WebCore21HTMLOptionsCollection3addERKN3WTF7VariantIJNS1_6RefPtrINS_17HTMLOptionElementENS1_13DumbPtrTraitsIS4_EEEENS3_INS_19HTMLOptGroupElementENS5_IS8_EEEEEEERKSt8optionalINS2_IJNS3_INS_11HTMLElementENS5_ISF_EEEEiEEEE) +STUB("-XhyxXB0cYg", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession17setExpirationTimeERKi) +STUB( + "-Xia6SzTPnQ", + _ZN9Inspector24NetworkBackendDispatcher28interceptRequestWithResponseElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("-Xm1cLEpBec", FT_Stream_GetUShortLE) +STUB( + "-Xoq2AgZNAo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEE7get_refEv) +STUB( + "-XsoR6--b88", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEC2Ev) +STUB( + "-XuRWHRBE10", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) STUB("-Xv5Bno0jTU", sceMusicCoreServerSetAudioMute) +STUB( + "-Xx2pbPCWzE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEaSERS7_) +STUB( + "-XyPpJ6tdCI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEEC1ERSA_) +STUB("-XzP4aYr3ew", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEC1Ev) +STUB("-Y-WZBvAu3M", _ZN3JSC12CachePayloadD2Ev) STUB("-Y0Yv5Y+h-M", sceAudiodecTerminate) +STUB("-Y2pCXfH-dQ", WKWebsiteDataStoreStatisticsClearInMemoryAndPersistentStoreModifiedSinceHours) +STUB( + "-Y3goKIMakc", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V127ConnectionQualityProperties11setWirelessERKNS1_6Common12IntrusivePtrINS3_32ConnectionQualityWirelessMetricsEEE) +STUB( + "-Y7BT2Pxohk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEE7add_refEv) STUB("-Y8hlMgBsr4", sceMoveTrackerControllersUpdate) +STUB( + "-YA7ahTw3uU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEeqERKS9_) +STUB("-YDX6TPLnro", _ZN3WTF13StringBuilder6resizeEj) +STUB("-YGgZXLCrgM", _ZN7WebCore6RegionC1Ev) +STUB( + "-YLp1vVnmYE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) STUB("-YNfTO6KOMY", sceNgs2FftQuerySize) +STUB( + "-YNyFMuQllk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEmmEv) +STUB( + "-YTVwVq1gaI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEEC1EPS9_PNS2_10LibContextE) STUB("-YTW+qXc3CQ", sceKernelInternalMemoryGetModuleSegmentInfo) +STUB("-YXlm94wNZw", _ZN3NTF21ResourceRequestLoggerD2Ev) +STUB("-YYRv4y2pQM", rgctx_fetch_trampoline_mrgctx_14_p) +STUB( + "-YZs+5DwzIg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "-YaLpchcfjM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEED1Ev) STUB("-YbpaF0XS-I", sceContentSearchCloseMetadata) STUB("-YcNkLzNGmY", sceUserServiceGetNpEnv) +STUB("-Ycat1KaiSM", Java_java_util_zip_ZipFile_getEntry) +STUB("-Yk4NyVHTMs", _ZNK7WebCore11HistoryItem13documentStateEv) +STUB( + "-Ym5GT2ZVLQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB( + "-YnhP7OUhTg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE5beginEv) +STUB("-Ysw9ZsBANs", _ZN7WebCore20ResourceResponseBaseC1Ev) STUB("-Z+-9u98m9o", sceHmdInternalGetVirtualDisplayDepth) +STUB("-Z0WigBNl2A", JVM_GetMethodIxExceptionIndexes) +STUB( + "-Z4XazhAN9o", + _ZN3sce2Np9CppWebApi7Matches2V131UpdateMatchStatusRequestFactory7destroyEPNS3_24UpdateMatchStatusRequestE) +STUB( + "-Z4YYBP2aEw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE5beginEv) STUB("-Z8FvBnu6yQ", scePlayReadyCdmiFreeOpaqueDecryptedContent) +STUB("-Z8Mw26kpbw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEaSERKS7_) +STUB("-Z933QqxAPM", mono_aot_Sce_CloudClient_App_Platformunbox_trampolines) +STUB("-ZCSUY48XBY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEED2Ev) +STUB("-ZH-StO7-CA", _ZN3sce2Np9CppWebApi6Common6VectorImEC1EPNS2_10LibContextE) +STUB( + "-ZHY6MNNh5g", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEptEv) +STUB("-ZIRUtUF8jc", _ZN3sce7Toolkit2NP2V212ActivityFeed12SharedVideosC1Ev) +STUB("-ZQC46h5lbg", _ZN7WebCore9HTMLNames35onwebkitpresentationmodechangedAttrE) STUB("-ZR+hG7aDHw", sceKernelSleep) +STUB("-ZXmuPB7XIk", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setMixerPanFR) +STUB("-ZY+4CCqv7Y", psl_suffix_exception_count) +STUB("-ZY3Sk2+Kns", delegate_virtual_invoke_imt_13) +STUB( + "-ZYnhtk7UrA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEC2ERKS7_) +STUB("-ZcgSRyOCgc", _ZN3sce7Toolkit2NP2V27Session11InvitationsD1Ev) +STUB("-ZdGee84iPM", + _ZN3sce7Toolkit2NP2V27Session6updateERKNS3_7Request6UpdateEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("-Zfr0ZQheg4", _Atomic_fetch_sub_1) +STUB( + "-ZgVWWKVFxM", + _ZN7WebCore16HTMLImageElement6decodeEON3WTF3RefINS_15DeferredPromiseENS1_13DumbPtrTraitsIS3_EEEE) +STUB("-ZjhROPju4Q", _ULx86_64_create_addr_space) +STUB("-ZrwAjc+C6Y", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V115FrequentlyMutedC1EPNS1_6Common10LibContextE) +STUB( + "-ZsCz+1anvY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE21intrusive_ptr_add_refEPSA_) +STUB("-Zst47j36u4", _ZN7WebCore21BlobDataFileReferenceD1Ev) STUB("-ZvQH18j10c", scePthreadRwlockattrSetpshared) +STUB("-ZvUYL5zQ3c", __asan_exp_load8) +STUB("-Zvf1BnYBDA", rgctx_fetch_trampoline_mrgctx_52) +STUB("-Zx3Ay8RdQs", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE7reserveEi) +STUB("-a+f55sXbt4", mono_btls_x509_get_public_key_parameters) +STUB("-a3y7hCf088", _ZN3sce2Np9CppWebApi11Matchmaking2V15Cause11unsetSourceEv) +STUB( + "-aCTbLSi+IM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEE21intrusive_ptr_add_refEPS7_) +STUB("-aFZ7KgGnP0", _ZN7WebCore13JSDOMRectList14finishCreationERN3JSC2VME) +STUB("-aG0k61CdWY", _ZN7WebCore8Settings24setDNSPrefetchingEnabledEb) +STUB("-aIwWbB0Cc4", _ZN3sce2Np9CppWebApi13InGameCatalog2V513ContentRatingD2Ev) +STUB("-aK6d418l4c", u_getIntPropertyMap) +STUB("-aMBNq7ntRY", ucal_add_67) +STUB("-aP95m3Tkes", + _ZN3sce2Np9CppWebApi14SessionManager2V124PlayerSessionPushContext8fromJsonERKNS_4Json5ValueE) +STUB("-aQEcE0Vcao", + _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody26unsetNeedsRecordedDateTimeEv) +STUB( + "-aSYFrUlMFo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEC2EPKS8_) +STUB( + "-aTydJ6Nv4M", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEeqERKS9_) STUB("-aUZb3qdsnU", sceNpRemotePlaySessionSignalingManualUdpCreateJoinSession) +STUB( + "-aUyPxa8fN8", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions17getacceptLanguageEv) STUB("-aVO3GCDUAs", sceUltGetQueueDataResourcePoolInfo) +STUB("-afcebKwwd8", _ZN7WebCore10JSLocation14finishCreationERN3JSC2VME) +STUB( + "-afl63ylw6Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE4sizeEv) +STUB( + "-ajClVUd3qE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEEC2Ev) STUB("-ajib2lKj-c", sceKernelPrepareToResumeProcess) +STUB("-am9z4xyweE", _ZN3JSC2VM29scopedArgumentsTableSpaceSlowEv) +STUB("-amctzWbEtw", _ZNKSt8numpunctIwE12do_falsenameEv) +STUB("-aqFIBn0h78", cairo_set_font_options) +STUB( + "-atPsyNwCfY", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12unsetString9Ev) +STUB("-b+Avqa2v9k", _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE4_RepES3_wm) +STUB("-b-ETptprP8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEcvbEv) +STUB("-b4iVKArt94", ft_mem_strdup) +STUB("-b6MeTX-oKs", _ZN3sce3Xml3Dom8Document13createElementEPKNS0_6StringEPKNS0_13AttributeListES5_) +STUB( + "-bAOp4w2+xU", + _ZN7WebCore21ComplexTextControllerC2ERKNS_11FontCascadeERKNS_7TextRunERN3WTF6VectorINS7_3RefINS0_14ComplexTextRunENS7_13DumbPtrTraitsISA_EEEELm0ENS7_15CrashOnOverflowELm16ENS7_10FastMallocEEE) +STUB("-bAjEe-hdCg", _ZN3sce7Toolkit2NP2V24Core7Request10InitParamsD1Ev) +STUB( + "-bCrIgk0-y0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEE3getEv) +STUB( + "-bI+1NDXkHM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE3endEv) +STUB( + "-bM0tuxcxPU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEneERKS9_) +STUB("-bNk-Tn5Xbw", _ZN3NTF21ResourceRequestLogger9AdminPageD1Ev) +STUB( + "-bPUp2AWwDM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE8copyFromERKS9_) +STUB( + "-bTeebRjqWw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEED2Ev) +STUB( + "-bTv9gUo5F4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEED2Ev) +STUB("-bVcZYZ-mpc", Java_sun_net_PortConfig_getUpper0) +STUB( + "-bZ9GoGfIik", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("-bbwtBoUKqo", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_17ActivityFeedStoryEE8allocateEmPKv) +STUB( + "-bfVhAzihAA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEEC2ERSA_) +STUB("-bfgP8FN6oo", utext_getPreviousNativeIndex) +STUB("-bghZqhzaZs", mono_aot_Sce_Vsh_GameListRetrieverWrapperplt_end) +STUB( + "-bjRODTNco4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEEC1ERKSA_) +STUB("-bl1HBIBtJc", + _ZN3sce7Toolkit2NP8Commerce9Interface14categoryBrowseERKNS1_20CategoryBrowseParamsEb) STUB("-blITIdtUd0", sceNpOpenSema) +STUB("-bmucRrSJRU", _ZN3sce2Np9CppWebApi14IdentityMapper2V311PsnWebError8fromJsonERKNS_4Json5ValueE) +STUB("-bozAY6CDpY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEED2Ev) +STUB("-brvZbsy4oQ", _ZN3sce2np9HttpTransC2EP14SceNpAllocator) +STUB("-bw-RAJILdQ", _ZN7WebCore5Range8setStartEON3WTF3RefINS_4NodeENS1_13DumbPtrTraitsIS3_EEEEj) +STUB( + "-byOlo6AGuE", + _ZN7WebCore16NetworkSendQueueC2ERNS_8DocumentEON3WTF8FunctionIFvRKNS3_7CStringEEEEONS4_IFvPKcmEEEONS4_IFNS0_8ContinueENS_13ExceptionCodeEEEE) +STUB( + "-c+9+KhDGOs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEeqERKS9_) +STUB( + "-c1fGlcGaqY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("-c4yaFvd6Ek", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEptEv) +STUB( + "-c7SJiL8z+M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("-c8fT5sxWPM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEEptEv) +STUB("-c9QK+CpQLg", _ZN3sce2np6Handle10CancelImplEi) +STUB("-c9VWG21+Vw", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi22ParameterToCreateMatchaSERS5_) +STUB( + "-cBQgkZEgVU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEED2Ev) +STUB("-cGpc8qME3o", mono_aot_Sce_Cdlg_Platformjit_got) +STUB("-cLIfSisruo", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V18Variable12getPrevValueEv) +STUB("-cLkFY3gJ-U", + _ZNK7WebCore20ScrollingCoordinator32coordinatesScrollingForFrameViewERKNS_9FrameViewE) +STUB( + "-cNoKZneFE8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEEC2ERKSA_) +STUB("-cSBibV9kcg", _ZN7WebCore17LibWebRTCProviderC2ERKS0_) +STUB("-cSnNI8Oe74", _ZN7WebCore11DisplayList8SetStateC2ERKNS_26GraphicsContextStateChangeE) +STUB( + "-cSqt0staBI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEEC1ERSA_) +STUB("-cXqPFWo+ko", + _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody9setStatusERKNS3_12TicketStatusE) +STUB("-cZ3SCHmrb4", + _ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody18getCreatedDateTimeEv) +STUB("-cab1shMMo4", + _ZN3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator16unsetCustomData1Ev) +STUB("-cbfK7bCKQU", __cfi_slowpath_diag) +STUB( + "-cbnnVCdMmI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEC1EPNS2_10LibContextE) +STUB("-cgB1bQG6jo", _ZNSt12placeholders2_6E) +STUB( + "-cn9shohjwo", + _ZThn24_N7WebCore14DocumentLoader22sendCSPViolationReportEON3WTF3URLEONS1_3RefINS_8FormDataENS1_13DumbPtrTraitsIS5_EEEE) +STUB("-cnqtovbNLY", mono_unicode_from_external) +STUB( + "-conQBpLNZc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEE5resetEPS8_) +STUB("-cygyY78b5A", _ZN3sce2Np9CppWebApi13InGameCatalog2V515ContainerRatingD1Ev) +STUB("-czxS5OBjQE", _ZN7WebCore27AuthenticationChallengeBaseC2Ev) +STUB("-d+s6I7Ekm8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEEaSERKS7_) +STUB( + "-d0H+47EWA4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE6resizeEj) +STUB("-d0d1BTY40s", _ZNK7WebCore8Position13containerNodeEv) +STUB("-d2DpQ3vuM0", mono_aot_System_ComponentModel_DataAnnotationsjit_code_end) +STUB("-dD5W8sRvtk", _ZN3sce7Toolkit2NP2V26Friend16FriendsOfFriendsC2ERKS4_) +STUB("-dL4IixJth4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEixEm) +STUB( + "-dN5muz7ECM", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("-dOP8t+-tTI", _ZN3sce7Toolkit2NP2V210Tournament15RegisteredTeamsC1ERKS4_) +STUB("-dOo7gkiKUs", rgctx_fetch_trampoline_rgctx_33) +STUB( + "-dQB25lQLDg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE8copyFromERKS9_) +STUB("-dSe2YtNqog", _ZNK7WebCore13HitTestResult17isContentEditableEv) +STUB("-di405FuIYg", _ZN4IPMI4impl10ServerImpl16releaseSessionIdEi) +STUB( + "-dpBUekyxiY", + _ZN7WebCore8Gradient19setSortedColorStopsEON3WTF6VectorINS0_9ColorStopELm2ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("-dt5CUNEvYs", _ZN3sce2Np9CppWebApi14SessionManager2V124GameSessionMemberForReadD1Ev) +STUB( + "-dwpUPS52kc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEppEv) +STUB("-e-F9HjUFp8", fprintf_s) +STUB( + "-e-i2gtmhdc", + _ZN9Inspector14ConsoleMessageC2EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelERKN3WTF6StringEONS5_3RefINS_15ScriptArgumentsENS5_13DumbPtrTraitsISA_EEEEPNS1_14JSGlobalObjectEm) +STUB("-e4BbPwQWfk", _ZNK7WebCore6JSFile7wrappedEv) +STUB("-eI0Y-JCbf0", nsnp_GetLicenseMetadata) +STUB("-eL8NSaYSjo", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy15TrophyPackGroupEEC2Ev) +STUB( + "-eLvervyJDc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEED2Ev) +STUB( + "-eQNdfNjpDM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE5emptyEv) +STUB("-eTUfliWVzQ", _ZN7WebCore21DiagnosticLoggingKeys9unusedKeyEv) +STUB("-eUZ8xel7b0", _ZN9Inspector13AgentRegistryC1Ev) +STUB( + "-eVnATzRgtQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEppEi) +STUB( + "-eXsITI+o2g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE7reserveEi) +STUB("-eYggVyhXUI", _ZN3sce7Toolkit2NP2V210Tournament14RegisteredTeam5resetEv) +STUB("-ea8UEtlMMA", _ZN3sce2Np9CppWebApi6Common8IteratorIjEaSERKS4_) +STUB( + "-eclTHQEf2c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) STUB("-eczr5e4dsI", sceSaveDataCheckCloudData) +STUB("-edo39H2Azk", mono_native_thread_set_name) +STUB( + "-ee+ufu7MJw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE4sizeEv) +STUB( + "-egsfhAvTHQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("-egu08GJ0lw", _Fetch_or_seq_cst_2) +STUB("-ehyE8FEXNU", mono_aot_System_ServiceModel_Internalsjit_code_end) +STUB( + "-ejQTzGAmfc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE8capacityEv) +STUB("-eme44UDv+4", mono_get_exception_out_of_memory) +STUB("-etnmY06HOE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEED1Ev) +STUB("-eu869E6GrY", _ZN3sce2Np9CppWebApi7Matches2V119ResponseTeamResults7setRankERKi) +STUB("-eu8lTL6CVY", mono_type_generic_inst_is_valuetype) +STUB("-eyJSlStgHo", ubrk_getRuleStatus_59) +STUB( + "-ezywg1fu6A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEED2Ev) +STUB( + "-f3h-dsuVUg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEC1Ev) +STUB("-f5CqEvJjwU", WKPageRunJavaScriptConfirmResultListenerGetTypeID) STUB("-f6M4caNe8k", sceNpMatching2ContextStop) +STUB("-f6yjokBu4U", symlinkat) +STUB("-f7aYhTP1nM", + _ZN7WebCore27ScrollingStateScrollingNode24setReachableContentsSizeERKNS_9FloatSizeE) +STUB( + "-f7k+OSHj3g", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToSendPlayerSessionMessageD1Ev) STUB("-fA+7ZlGDQs", scePthreadAttrGetstacksize) +STUB("-fAFmad5Tnk", _ZN3JSC2VM16weakSetSpaceSlowEv) +STUB("-fEQ6grul7g", _ZN7WebCore30errorDomainWebKitServiceWorkerE) +STUB("-fFRToQPnUA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE6resizeEj) +STUB("-fKQRtsYUSc", + _ZN3JSC17checkModuleSyntaxEPNS_14JSGlobalObjectERKNS_10SourceCodeERNS_11ParserErrorE) +STUB( + "-fKV83tFpnE", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayer52setpostGameSessionsSessionIdMemberPlayersRequestBodyENS1_6Common12IntrusivePtrINS3_49PostGameSessionsSessionIdMemberPlayersRequestBodyEEE) +STUB( + "-fOK9SfMVqY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE21intrusive_ptr_add_refEPS9_) +STUB("-fP1sq0Lnr4", g_slist_remove) +STUB("-fRnPd19cNs", _ZN3sce7Toolkit2NP2V24Core7Request17ExternalAllocatorC1Ev) +STUB("-fSjEhJXufE", _ZNSt10_Ref_countIN15AbstractStorage15FacebookContentEED0Ev) +STUB( + "-fTIY88v+4w", + _ZN7WebCore23CoordinatedImageBackingC2ERNS0_6ClientEON3WTF3RefINS_5ImageENS3_13DumbPtrTraitsIS5_EEEE) +STUB( + "-fTvKOEVmhk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB( + "-fVDBTNZbJ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "-fid4rAA7o0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEEC1ERKSA_) +STUB( + "-fmWDgwUhmU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("-fnefTC1Dlo", mono_aot_Sce_Vsh_Friendmethod_addresses) +STUB("-fpF2YnA+X4", YGNodeRemoveAllChildren) +STUB( + "-fpOvGcII5o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEED2Ev) +STUB("-fwHkWlm-wc", _ZN9Inspector14InspectorAgentD1Ev) +STUB( + "-fzzIEdT+Tk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEE7get_refEv) STUB("-g0pBZ2JdAc", sceShellCoreUtilGetGameLiveStreamingStatus) +STUB("-g26XITGVgE", strerrorlen_s) +STUB( + "-g4bavgSaVs", + _ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionMemberPlayer18unsetNonPsnPlayersEv) +STUB("-g6RLhTGOeg", _ZN9Inspector22InspectorDebuggerAgentnaEm) +STUB("-gE3O+NCHS0", _ZN3WTF15base64URLDecodeERKNS_6StringENS_33SignedOrUnsignedCharVectorAdapterE) +STUB("-gJRMHTKjwI", psl_free) +STUB( + "-gLyaTWRRJo", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) STUB("-gN6uE+zWng", sceNpGlobalHeapGetAllocator) +STUB( + "-gTt6IRuNMk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEC2EPNS2_10LibContextE) +STUB("-gX9IVaPmNc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEED2Ev) STUB("-gYpMonpw2M", sceVideoOutConfigureOutputModeExSubmitDoneUnsafe_) +STUB( + "-gbuzG9v5b4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE5emptyEv) +STUB("-gdRfP6ZTys", ft_stub_set_pixel_sizes) +STUB( + "-gdulTSygIg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("-gm8FTrfR3g", _ZN7WebCore23CoordinatedBackingStore10removeTileEj) +STUB("-gmOrF+tupM", _ZNK3sce2Np9CppWebApi14SessionManager2V117SearchGameSession14sessionIdIsSetEv) +STUB("-gnCZ7L+A-c", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchDetailD2Ev) +STUB("-gpGRSidRRg", mono_class_from_typeref_checked) +STUB("-gq46t7ekcw", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V13MmrC2EPNS1_6Common10LibContextE) STUB("-gwkQpOCl68", sceRemoteplayImeNotify) +STUB( + "-gxBWz0n5JY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE8capacityEv) STUB("-gxcs521SvA", sceUltUlthreadRuntimeDestroy) +STUB("-h+VXXspa4o", + _ZN3sce3pss5orbis5input12InputManager18GetAnalogStickModeEPNS2_15AnalogStickModeE) +STUB("-h4ULGARnK0", _ZN7WebCore6DOMURLC2EONS_3URLES2_) +STUB("-h9+qj63jl8", _ZN7WebCore11MediaPlayer25bufferedTimeRangesChangedEv) +STUB("-hBYBF9yIWk", _ZN7WebCore9HTMLNames5liTagE) +STUB("-hBeoSbOUcI", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_15RankInformationEE3getEv) +STUB( + "-hHF+3Fy7EI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE5beginEv) +STUB("-hJRce8wn1U", _ZN3sce4Json12MemAllocatorC2Ev) +STUB("-hOAbTf3Cqc", _SceLibcTelemetoryOut) STUB("-hOylkSV7qY", scePlayReadyApiStart) +STUB("-hPhWKGhnuE", mono_profiler_install_method_free) +STUB( + "-hQTrDgax-w", + _ZN3sce7Toolkit2NP10ParametersC2EPFvRKNS1_5EventEERNS1_9NpTitleIdEPvmPNS1_19AllocImplementationE) +STUB( + "-hRW3g7XMhw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEC2ERS7_) +STUB( + "-hTnuzcuivs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE8copyFromERKS9_) +STUB( + "-hWgBYZlD2g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEEaSERKSA_) +STUB( + "-hZQKxL2XF0", + _ZN3sce2Np9CppWebApi14SessionManager2V134PostGameSessionsRequestBodyFactory7destroyEPNS3_27PostGameSessionsRequestBodyE) +STUB("-haXZfTh0pg", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi21ParameterToLeaveMatchD1Ev) +STUB("-hchsElmzXY", _ZN3sce2np4Cond9SignalAllEv) +STUB( + "-hdGlIfGY5g", + _ZN9Inspector20DOMBackendDispatcher24setEventListenerDisabledElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("-hdyJE4SeQ0", _ZN3JSC7Symbols18resolvePrivateNameE) +STUB( + "-hhS6oWaWVk", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ErrorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5ErrorEEE) +STUB("-hiERJfleEc", _ZN7CoreIPC15ArgumentEncoderC2Ev) +STUB("-hk9wmuusRU", _ZN9Inspector32TimelineBackendDispatcherHandlerD1Ev) STUB("-hn1tcVHq5Q", sceLibcMspaceCreate) +STUB("-ho4SHPXBFs", _Z32sceGpuDebuggerRegisterShaderCodePKN3sce3Gnm16CsStageRegistersEjPKc) +STUB( + "-hrHhi-UFxs", + _ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE4_PutES3_St22_String_const_iteratorISt11_String_valISt13_Simple_typesIwEEEm) STUB("-hrMXdpZuDU", sceShellCoreUtilPostErrorLog) +STUB("-hsH8-DCdgc", _ZN7WebCore12SettingsBase17setLayoutIntervalEN3WTF7SecondsE) +STUB("-htKnom4PB0", _ZN3sce7Toolkit2NP2V210Tournament12GenericEventaSERKS4_) +STUB( + "-htW7woVSHc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE21intrusive_ptr_add_refEPS9_) STUB("-htpXyfaKlM", sceShellUIUtilInitialize) +STUB("-hzeczmXprY", + _ZN15AbstractStorage11LocalFolder13RemoveContentERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB( + "-i4jcIbzBQQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEEdeEv) +STUB( + "-i4nrfjRJIQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEEC1ERKSA_) +STUB("-i6HCI3fKIk", _ZNK3sce2Np9CppWebApi7Matches2V114ResponseMember6toJsonERNS_4Json5ValueEb) +STUB( + "-i7bkWHgB9w", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEplEm) +STUB("-i9y+WpUoXo", mono_aot_Sce_PlayStation_Jsonplt_end) +STUB("-iCEEHuKDcU", _ZN7WebCore17HTMLSelectElement16setSelectedIndexEi) +STUB("-iFADXW1htg", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate17unsetPerFranchiseEv) +STUB("-iG6vumT9vo", usearch_getCollator_67) +STUB( + "-iQnUslupts", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEneERKSA_) +STUB( + "-iSAXv6kWVA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE5abortEv) +STUB( + "-iW7NtAim+s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEED2Ev) +STUB("-iXnUa0lmbQ", mono_get_machine_config) +STUB("-iiteqKJY0U", __asan_report_store4_noabort) +STUB( + "-ik1kVIBuzo", + _ZN3sce2Np9CppWebApi14SessionManager2V128PostGameSessionsResponseBody8fromJsonERKNS_4Json5ValueE) +STUB( + "-il-z7M6534", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEE3getEv) +STUB("-in0fOcD8h0", _ZN23sceMetadataReaderWriter20LoadedParserInfoListC2Ev) +STUB( + "-inAV5BwjUI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB("-ioWNapbAUQ", + _ZN3sce2Np9CppWebApi11Matchmaking2V127ListUserTicketsResponseBodyC2EPNS1_6Common10LibContextE) +STUB( + "-isQDX3RUTs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEE11release_refEv) +STUB("-ivWQ60ptck", _ZNK7WebCore18CustomHeaderFields22thirdPartyDomainsMatchERKN3WTF3URLE) +STUB("-j+JFiFPjnc", WKBundleHitTestResultCopyLinkTitle) +STUB("-j0mbtf7vCA", _ZN3sce7Toolkit2NP2V210Tournament17OfficialBroadCastD2Ev) +STUB("-j2QKQoewKw", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_33ActivityFeedSharedScreenshotStoryEE8allocateEmPKv) +STUB( + "-j2kunR8q4I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEC1ERS7_) +STUB( + "-jIcLYqJbJg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("-jJ6ZpjlvUc", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_11CountryInfoEEC1Ev) +STUB( + "-jJUx15GC8s", + _ZN3sce2Np9CppWebApi14SessionManager2V130RequestGameSessionMemberPlayerC1EPNS1_6Common10LibContextE) +STUB("-jKSe2Flx6E", _ZN7WebCore15DatabaseManager16hasOpenDatabasesERNS_8DocumentE) +STUB("-jQY59sVCPg", + _ZN3sce2Np9CppWebApi14SessionManager2V115LocalizedString16setLocalizedTextERKNS_4Json6ObjectE) STUB("-jRGLt2Dbe4", sceUserServiceGetVoiceRecognitionTutorialState) +STUB("-jTcfO9Pifo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEC1ERS7_) +STUB( + "-jX3Xp9SIwc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "-jao1CwAAno", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEixEm) +STUB("-jaytp6kqhQ", _ZN3sce2Np9CppWebApi13InGameCatalog2V55Error11unsetSourceEv) +STUB("-jgwuLOP-+I", _ZN3sce7Toolkit2NP2V28Matching26MemberSignalingInformationC1Ev) +STUB( + "-jhusqReJmU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEED2Ev) +STUB("-jpk31lZR6E", _ZNSt14numeric_limitsIjE6digitsE) +STUB( + "-js9M9+PUH0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEC1Ev) +STUB( + "-jyOpW-LqgU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEC1Ev) +STUB("-jzLxBJ33Fs", usearch_getAttribute_67) +STUB( + "-k-GVW8M8FE", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectator12getsessionIdEv) +STUB("-k6SFJMk6HQ", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15ErrorD2Ev) +STUB( + "-k6hcqEPezk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEE3getEv) +STUB("-k9EQTAMuDw", _ZN3sce2np10JsonParserC2EP14SceNpAllocator) +STUB( + "-kHKmATQQDc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("-kIGauVB5yw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEaSERKS9_) +STUB("-kInibsMo0o", _ZN7WebCore8SVGNames14marker_endAttrE) +STUB("-kJfYkUvoVU", _ZN3JSC7Symbols36newHandledRejectedPromisePrivateNameE) +STUB( + "-kK-Rxiguz4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEeqERKS9_) +STUB("-kM+L2LcFco", _ZN3sce7Toolkit2NP15AppSTLAllocatorItEC2Ev) +STUB("-kPU-PjQe8k", _ZN27FilePromoteInnerInformationC1EPKc) +STUB("-kPgTCLEL-U", _ZN7WebCore16NavigationActionD1Ev) +STUB("-kU6bB4M-+k", strspn) STUB("-ka14VvHSX0", sceVideoOutSysSetHdrMetadata) STUB("-keIqW70YlY", sceFontGraphicsCanvasStartDrawing) +STUB( + "-ksa2sfek0g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "-kw4Sv5WyvQ", + _ZN3sce2Np9CppWebApi14SessionManager2V148GetUsersAccountIdGameSessionsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_41GetUsersAccountIdGameSessionsResponseBodyEEE) +STUB("-kzs1+x1VT4", mono_btls_x509_lookup_add_mono) +STUB("-l+ODHZ96LI", _ZTSSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE) +STUB("-l0coi132nk", _ZN7WebCore9HTMLNames18onpointerleaveAttrE) +STUB("-l4Xb7ME2t4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEE7add_refEv) +STUB("-lDZ0iJq-aE", g_strreverse) +STUB("-lLXUnUCErM", ps3) STUB("-lPT15AV1Ko", sceBgftServiceIntDownloadCheckPatchUpdateState) +STUB("-lWtMfBycrg", _ZN3sce2npneERK13SceNpOnlineIdRKNS0_10NpOnlineIdE) STUB("-lZdT34nAAE", sceLibcPafMspaceCalloc) +STUB( + "-la-U+64JcI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEmmEv) STUB("-lc6XZnQXvM", sceNpPartyGetVoiceChatPriority) +STUB("-ligyqcMDg4", _ZN8meta_gen13TiffRetrieverC2Ev) STUB("-loJgo7j+qc", sceIduIsAppInstalled) +STUB("-lte7piMiaI", __ubsan_handle_pointer_overflow_abort) +STUB( + "-luK+wcNNWA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEC2Ev) +STUB( + "-lyvSj9csFI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEppEi) +STUB( + "-m--kjUtWb0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEdeEv) +STUB( + "-m10x6TfUPU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEppEi) +STUB( + "-m1cU01p3fY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB( + "-m2YPwVCwJQ", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERl) +STUB( + "-m5E0C9rs5E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "-m5oHRSZ-wA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEE3getEv) +STUB("-m7FIvSBbMM", __kernel_cos) +STUB("-m98cDevvXw", Java_java_io_UnixFileSystem_createDirectory) +STUB("-m9W71uvqwE", _ZN3JSC7Symbols41putAsyncGeneratorInternalFieldPrivateNameE) +STUB( + "-m9ni55p4SE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEplEm) +STUB( + "-mALKeMOtwY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "-mALZnOB7ro", + _ZN15AbstractStorage13YoutubeFolder10NewContentERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_7ContentEE) +STUB("-mCgVKz1DtQ", _ZN3sce7Toolkit2NP2V210Tournament14RegisteredTeamD2Ev) +STUB( + "-mD8wICtB8g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEE7get_refEv) +STUB( + "-mDsLsqwkO0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEEdeEv) +STUB("-mLzBSk-VGs", _ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE) +STUB( + "-mM-SStYLn4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "-mMRjpzzaRc", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEEiRNS2_10LibContextEPT_m) +STUB("-mNG+8lTulY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE5clearEv) +STUB("-mUC21i8WBQ", __atomic_fetch_sub_4) +STUB( + "-mcbmWkWrY8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEE5resetEPS8_) +STUB( + "-md9AgyWZkw", + _ZN9Inspector22InspectorDebuggerAgent27didCreateFrontendAndBackendEPNS_14FrontendRouterEPNS_17BackendDispatcherE) +STUB("-miUmZ859Zc", qs8) +STUB( + "-ml-r3BIltk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEdeEv) +STUB("-moGynfbX70", WKCertificateInfoGetVerificationError) +STUB( + "-mseOIItMc4", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearch14getsearchIndexEv) +STUB("-n+GMwKBaD0", _ZN3WTF7RunLoop6wakeUpEv) +STUB("-n+x6ZBExPE", _ZN3WTF6StringC2ENS_12ASCIILiteralE) +STUB("-n-UakYzLj8", _ZN7WebCore9HTMLNames8trackTagE) +STUB("-n0CR0QxhnY", _ZN3sce2np9LocalFileD0Ev) STUB("-n5a6V0wWPU", sceFontGraphicsGetDrawingFrameHandle) +STUB("-n76SHy67rs", _ZN7WebCore9HTMLNames11optimumAttrE) +STUB("-n7NBjjuabo", sqlite3_column_text) +STUB( + "-nA5ir+uDdA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE5beginEv) +STUB("-nCVE3kBjjA", _ZNKSt5ctypeIcE9do_narrowEPKcS2_cPc) +STUB("-nCbIPeaahM", Java_com_sony_bdjstack_security_aacs_AACSOnline_getContentCertID) +STUB( + "-nGmQUdincs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE5beginEv) +STUB("-nIs+yxg514", + _ZNK3sce2Np9CppWebApi14SessionManager2V131JoinedPlayerSessionWithPlatform11getPlatformEv) STUB("-nIt6B72SLA", sceGameRightGetStringSizeInBytes) +STUB( + "-nMH6ELN3Tc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE5emptyEv) +STUB( + "-nO5Bj+dye0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEC2ERKS7_) +STUB("-nR+QX8Cw8Q", rgctx_fetch_trampoline_mrgctx_7_p) +STUB("-nZRyHSBKGk", _ZN3sce7Toolkit2NP2V28Matching12RoomPingTime5resetEv) +STUB( + "-ngUVPlNV7c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE7reserveEi) +STUB( + "-njd3s1IXUk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("-nlP-eBgc5g", _ZN7WebCore16HTMLInputElement10setCheckedEbNS_22TextFieldEventBehaviorE) +STUB("-nsCdQaCzmQ", _ZN3sce7Toolkit2NP2V28Commerce12SubContainerC2ERKS4_) STUB("-nsIdJK+0Io", sceAppInstUtilAppGetAppInstallStatusByAppInfo) +STUB("-nvxBWa0iDs", gethostname) STUB("-ny9i-XOgiI", ScePsmMonoDebugInit) +STUB("-o1p4Zg6WN4", _ZN7WebCore15DeferredPromise12callFunctionERN3JSC9ExecStateENS1_7JSValueES4_) STUB("-o5uEDpN+oY", sceKernelConvertUtcToLocaltime) +STUB("-o8Vy6K2H-g", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking8TempRankEEC1Ev) +STUB( + "-o9PXTVNSAE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEEC1EPSA_PNS2_10LibContextE) +STUB("-oW-aAeCPs4", _ZNK3WTF7SecondsplERKNS_24TimeWithDynamicClockTypeE) +STUB("-oXhq4b+gRQ", + _ZN7WebCore32ScrollingStateFrameScrollingNode26setMaxLayoutViewportOriginERKNS_10FloatPointE) +STUB("-oY8Z+8BCww", _ZN4Manx10createDateEP14asn1_string_st) +STUB( + "-ohRFGI2340", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("-okWJcF+8ms", _ZN3JSC11Interpreter13dumpCallFrameEPNS_9ExecStateE) +STUB("-ol1QIFvnE4", WKPageCanGoForward) +STUB("-olF613Aywk", _ZN3sce7Toolkit2NP2V28Presence8PresenceC2ERKS4_) +STUB( + "-oqkAUNWJnM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEEcvbEv) STUB("-p2Gvg7QqFo", sceSpPthreadAttrSetstacksize) +STUB("-p6Rz-s2DY8", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi20ParameterToJoinMatch9terminateEv) +STUB( + "-p7EIfcb-Go", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB("-p97-goGFC4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce19ServiceEntitlementsEE3getEv) +STUB("-pAtC74McJ8", WKPreferencesSetIntersectionObserverEnabled) +STUB("-pJtpmd6fWQ", _ZN3sce7Toolkit2NP2V27Session11SessionDataC2Ev) +STUB("-pOg5A6Yr6g", blockpool_batch) +STUB("-pQZrVK6Lj0", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V115LastUpdatedUser13onlineIdIsSetEv) +STUB("-pVA-QEcWok", png_get_rows) +STUB("-pXo4ukFBjQ", + _ZNK3sce2Np9CppWebApi12Leaderboards2V123RecordScoreResponseBody6toJsonERNS_4Json5ValueEb) +STUB( + "-pZhklYwFZs", + _ZN3sce7Toolkit2NP2V28Commerce26setPsStoreIconDisplayStateERKNS3_7Request26SetPsStoreIconDisplayStateEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB( + "-paFEoIyxWg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "-pd0GLAshZU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "-pdt+SceONQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEE7add_refEv) +STUB("-peRvZEv-W8", _ZN15AbstractStorage14FacebookFolder8NextItemEPSt10shared_ptrINS_4ItemEE) STUB("-pjHhph0ZUc", sceAgcSetStaticBuffer) +STUB("-pnj3-7a6QA", unity_mono_set_user_malloc_mutex) +STUB("-pnxCYYTHdA", _ZN7WebCore9DOMWindow29setCanShowModalDialogOverrideEb) +STUB( + "-po3gSw7A+0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEC2EPS8_) +STUB("-ptjV9t-QiA", + _ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBodyC1EPNS1_6Common10LibContextE) +STUB( + "-pv-azgQ4Sw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB( + "-pwe9t0yj7w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEaSERKS9_) +STUB( + "-pyph9+fiic", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE7reserveEi) STUB("-pzYDZozm+M", sceAudio3dPortQueryDebug) STUB("-q4M5WX0Jrs", sceFiosCancelAllOps) +STUB( + "-q5NR3+q2MM", + _ZN3sce2Np9CppWebApi7Matches2V120RequestTeamStatistic23setTeamMemberStatisticsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_26RequestTeamMemberStatisticEEEEE) +STUB("-q9sR0cRUGc", mono_parse_default_optimizations) +STUB( + "-qEpXgFo4mo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEEC1EPS6_PNS2_10LibContextE) +STUB("-qI5Fo4U5J0", _ZN3sce7Toolkit2NP2V210Tournament7Request18GetRegisteredTeamsD2Ev) +STUB( + "-qKO81a13sA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEEaSERKSA_) STUB("-qLsfDAywIY", sceAjmBatchWait) +STUB("-qMXl9DNcac", _ZN3WTF3URLC1ERKS0_RKNS_6StringEPKNS_15URLTextEncodingE) +STUB( + "-qPML+nD9xk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE5emptyEv) +STUB("-qRVEmNwCDs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEmmEi) +STUB( + "-qWn3hvM7Jo", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE11hasResponseEv) +STUB( + "-qYHkxC72sY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEE7add_refEv) +STUB( + "-qYqo3TC+8I", + _ZN9Inspector14InjectedScript14callFunctionOnERN3WTF6StringERKS2_S5_S5_bbRNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsIS9_EEEERNS1_8OptionalIbEE) STUB("-qYw1YiPsQI", sceClPthreadAttrDestroy) +STUB( + "-qZ5dUEseso", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEmmEv) +STUB("-qZvnKBIkGg", __asan_storeN_noabort) +STUB("-qas2+AuyW0", _ZN7WebCore9HTMLNames12autosaveAttrE) +STUB( + "-qbwU7PeX04", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEmmEi) STUB("-qdAdV-PiqI", ScePsmMonoThreadSetThreadsExhaustedCallback) +STUB("-qdwpSkSadg", + _ZN3JSC19HeapSnapshotBuilder22appendPropertyNameEdgeEPNS_6JSCellES2_PN3WTF17UniquedStringImplE) +STUB("-qfOrY2DCtc", jpeg_write_marker) +STUB( + "-qfSPUkyJcU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE8copyFromERKS9_) +STUB( + "-qfncQvXf2o", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V126BandwidthDownstreamMetrics6toJsonERNS_4Json5ValueEb) STUB("-qjm2fFE64M", sceNpTrophySystemIsServerAvailable) +STUB("-qjq0kJTo8I", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEE7add_refEv) +STUB("-qkGW7vL9HI", JVM_TotalMemory) +STUB( + "-qlyOH8CIzg", + _ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody15setJoinDisabledERKb) +STUB( + "-qrF2GkcbjA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) STUB("-quPa4SEJUw", scePthreadAttrGetstack) +STUB("-qvSeihxW6k", _ZN7WebCore13MIMETypeCachedaEPv) +STUB("-qwk1RxUuDA", FTA_Export_Module_pcf) +STUB( + "-r0HgIg9s9o", + _ZN7WebCore22EmptyFrameLoaderClient21dispatchDidCommitLoadEN3WTF8OptionalINS_18HasInsecureContentEEENS2_INS_13UsedLegacyTLSEEE) +STUB("-r23ePSw30o", WKBundleInspectorSetPageProfilingEnabled) +STUB( + "-r6FNBAA0aU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEC1EPKS8_) +STUB("-r7MQkyDXXs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEE7get_refEv) +STUB( + "-rEvUxwc4xY", + _ZN9Inspector21InspectorConsoleAgent17addConsoleMessageESt10unique_ptrINS_14ConsoleMessageESt14default_deleteIS2_EE) +STUB( + "-rG+Jj0+WKM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE21intrusive_ptr_add_refEPS9_) +STUB("-rIV1NbfHpI", _ZN3sce7Toolkit2NP2V23TUS7Request10DeleteDataD2Ev) STUB("-rJY6WDua3s", sceAppInstUtilAppSetSavedataUploadStatus) +STUB("-rPezWe+1h4", _ZN3sce7Toolkit2NP2V212ActivityFeed5Media20ASPECT_RATIO_MAX_LENE) +STUB("-rXkJO1hOk0", __sys_suspend_process) +STUB( + "-rZM7M+wUOI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEneERKS9_) +STUB( + "-rdIgQDVTK4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEEdeEv) STUB("-rdXUi2XW90", sceHttp2GetAllResponseHeaders) +STUB("-rlG+vYrV58", _ZN7WebCore13endOfDocumentERKNS_15VisiblePositionE) +STUB( + "-rmGwnDY66w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE8pushBackERKS8_) +STUB("-rsLklDvsRw", ucal_getNow_67) +STUB("-rtsXshpfdc", mons) +STUB( + "-rtzyTjX8AM", + _ZN9Inspector23CanvasBackendDispatcherC2ERNS_17BackendDispatcherEPNS_30CanvasBackendDispatcherHandlerE) +STUB("-rvO2El6asc", _ZNK7WebCore16HTMLImageElement19editableImageViewIDEv) +STUB("-rwPbGyZemk", _ZN3JSC19numberOfDFGCompilesEPNS_9ExecStateE) STUB("-rxaMSaCC6c", sceAvControlSetHdrMetadata) +STUB("-rxzL4mDojQ", _ZN3sce2np9HttpTransC2Ev) +STUB("-rz12+rk6Yc", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_15RankInformationEEC1Ev) +STUB("-s0FkYlv7y4", _ZN3sce2Np9CppWebApi6Common8IteratorINS2_17ParameterBaseImpl6KeySetEEC2Ev) +STUB( + "-s1AHviBnac", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "-s3I-frzijc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("-s4y23rdI0Y", _ZN9Inspector31NetworkBackendDispatcherHandler20LoadResourceCallbackD2Ev) +STUB("-s5Y6vEOZf4", JVM_CountStackFrames) +STUB("-s98d979pPQ", WKBundleFrameCopySecurityOrigin) +STUB("-sAXgArt0ts", JVM_InitializeCompiler) STUB("-sD02mFDBh4", sceUserServiceGetGamePresets) +STUB("-sDxqsfDDFE", _ZN3sce7Toolkit2NP2V211UserProfile7Request13GetNpProfilesC2Ev) +STUB( + "-sIUDBScvxc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEeqERKS9_) +STUB( + "-sIzwXne5RA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE5beginEv) +STUB("-sOfRcPQwrk", coil_initialize) +STUB("-sQ3aB-rrVw", _ZN3WTF14FileSystemImpl12readFromFileEiPci) +STUB("-sSm+ykHOgc", _ZN3JSC7Symbols12searchSymbolE) +STUB("-sTHNB0pBec", _ZN7WebCore4Page24scrollingStateTreeAsTextEv) +STUB( + "-sWeVJUAmn4", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi22getLargeDataByObjectIdEiRKNS4_33ParameterToGetLargeDataByObjectIdERNS1_6Common11TransactionINS8_12IntrusivePtrINS8_6BinaryEEENSA_INS4_37GetLargeDataByObjectIdResponseHeadersEEEEE) STUB("-sgi7EeLSO8", sceUsbdFreeTransfer) +STUB("-sjd++qKqaU", _ZNK3JSC14ProtoCallFrame9codeBlockEv) +STUB( + "-slYWx0vx1E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEED2Ev) +STUB( + "-sqXrL5A6Lw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEE7get_refEv) +STUB("-suVQEKu2bY", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17GetGameDataResultEE19setCustomReturnCodeEi) STUB("-svXEpYit6c", sceNpTrophySystemCheckNetSync) +STUB("-svZFUiG3T4", _LGamma_big) +STUB("-swGGmA0SP8", _ZN7WebCore19ResourceRequestBase5equalERKNS_15ResourceRequestES3_) +STUB("-swgMjedLUQ", _ZN3sce2np9NpTitleId5ParseEPS1_PKcm) +STUB("-sxz-ThMtGM", _ZN15AbstractStorage4Item7GetNameEv) +STUB("-syPONaWjqw", _ZNKSt12future_error8_DoraiseEv) +STUB("-t+qNlMCAQU", _ZN7WebCore11DisplayList13ClipOutToPathD1Ev) +STUB( + "-t0Y+88pdk8", + _ZThn24_N9Inspector22InspectorDebuggerAgent18setBreakpointByUrlERN3WTF6StringEiPKS2_S5_PKiPKNS1_8JSONImpl6ObjectEPS2_RNS1_6RefPtrINS8_7ArrayOfINS_8Protocol8Debugger8LocationEEENS1_13DumbPtrTraitsISI_EEEE) +STUB( + "-t17xWcHiAs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "-t1gyDSBcNU", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "-t3V-9ggZXo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEaSERKS9_) +STUB( + "-t4n6Urw-K4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEE11release_refEv) +STUB("-t8PVjghGo4", u_strFindFirst) +STUB( + "-t8eK4WxVIo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEppEv) +STUB( + "-tCqWdb6VFw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEE7add_refEv) +STUB("-tEPJ84QOzw", WKBundleHitTestResultGetIsSelected) +STUB("-tGCVwk0ehU", _ZN7WebCore20TransformationMatrix5flipXEv) +STUB("-tGFs7UG2C8", mono_aot_Mono_CSharpmethod_addresses) +STUB( + "-tLsL46f4RQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB( + "-tMIMzDv13g", + _ZN7WebCore7JSRangeC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_5RangeENS6_13DumbPtrTraitsIS8_EEEE) +STUB("-tPqziuAbt0", _ZNK3WTF24TimeWithDynamicClockTypeltERKS0_) STUB("-tbc2SxQD60", sceNgs2SystemSetSampleRate) +STUB( + "-tcVY3zWzRU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEE11get_deleterEv) +STUB("-tlIe5rL66Y", _ZN8meta_gen13JpegRetriever14ProcessCOMDataEv) +STUB("-tpoeCMP1oE", _ZN7WebCore4Page26setRemoteInspectionAllowedEb) +STUB( + "-trbLproOio", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE3endEv) +STUB( + "-twLeOTEjqg", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("-tx04RSdVXg", + _ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody14smallDataIsSetEv) +STUB("-u3XfqNumMU", _readdir_unlocked) +STUB( + "-u57M+jJaWg", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS2_6VectorINS5_INS1_13InGameCatalog2V59ContainerEEEEEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB( + "-u7tZaAOkc8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEneERKS9_) STUB("-u82z1UhOq4", sceHmdInternalGetEyeStatus) +STUB( + "-uC7vuyAKbY", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V333CommunicationRestrictionStatusApi44ParameterToGetCommunicationRestrictionStatus16setaccountIdOrMeEm) +STUB( + "-uFpwyl6ztQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEE7get_refEv) +STUB("-uGg2VIywqc", _ZNK7WebCore5Color23colorSpaceAndComponentsEv) +STUB( + "-uIJMFiYCGU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEEC1Ev) +STUB( + "-uIwo8bMn4w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEE11release_refEv) +STUB("-uLGa2Nmdg8", _ZN3JSC11VMInspector9dumpValueENS_7JSValueE) +STUB("-uP4aIu-qto", + _ZNK3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer12getAccountIdEv) +STUB("-uQnUEENfpk", _ZN3sce4Json6Object4PairC1Ev) +STUB("-uSVGcnoANY", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V15ErrorD2Ev) +STUB( + "-uceumMYtY0", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessions30setpostGameSessionsRequestBodyENS1_6Common12IntrusivePtrINS3_27PostGameSessionsRequestBodyEEE) +STUB( + "-udU3of5eY0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE3endEv) +STUB( + "-uiFfIfq+uw", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEEiRNS2_10LibContextEPT_m) +STUB("-uk3H89dO8o", il2cpp_type_get_object) STUB("-umGRHNUiZU", sceVrSetupDialogGetResult) +STUB("-un+ko0hE9Y", _ZN3JSC7Symbols14iteratorSymbolE) +STUB( + "-unHuvv5K5o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEaSERS7_) +STUB( + "-uoRJA0MJL4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("-upQQo+sfIY", jpeg_mem_available) +STUB( + "-utk3QIiYIM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "-uvWC+sFCpU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEC2EPS8_) +STUB("-uyhX+nfLTw", _ZN7WebCore11DisplayList8FillRectD0Ev) +STUB( + "-uzFDKDL+BQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEED2Ev) +STUB( + "-uzJDP09EZA", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi27ParameterToLeaveGameSession10initializeEPNS1_6Common10LibContextEPKcSA_) +STUB( + "-v-oMpTcopc", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("-v111tr2mlo", mono_aot_Sce_Vsh_VideoEdit_Wrapperjit_code_end) +STUB( + "-v1W8zSXfYQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEmmEv) +STUB( + "-v3js2bWcwY", + _ZN3sce2Np9CppWebApi7Matches2V126ResponseTeamResultsFactory6createEPNS1_6Common10LibContextEPKciPNS5_12IntrusivePtrINS3_19ResponseTeamResultsEEE) +STUB("-v5CZVGkN3k", cairo_device_to_user_distance) +STUB("-v66AtHKMFw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEEC1ERS7_) +STUB("-vCCXPR60RU", _ZThn120_N7WebCore16HTMLMediaElement12endScrubbingEv) +STUB("-vFcS1GDF+A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEEmmEi) +STUB( + "-vJng1t2tSg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "-vM5SMEs6As", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEEC2ERSA_) +STUB( + "-vNbpqCWr74", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE7reserveEi) +STUB( + "-vNuQdJ87kY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE8copyFromERKS9_) +STUB( + "-vOf4TpOsaI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE8copyFromERKS9_) +STUB("-vTN1-5hhaQ", delegate_invoke_impl_target_10_p) +STUB("-vXEQdRADLI", strtok_s) STUB("-vc-xL+G8u0", sceAgcDriverUserDataWritePacket) +STUB("-vcUDvj8VFQ", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TSS7TssDataEE19setCustomReturnCodeEi) +STUB( + "-vgoekkJV-k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "-vhiB4hK-i4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEixEm) +STUB("-vl7baUxbyA", lnbias) STUB("-vnlTPPXPrw", sceAgcDcbAcquireMemGetSize) +STUB("-vqI0G6ytM8", _ZNK3sce3Xml3Dom4Node13hasChildNodesEv) +STUB( + "-vr5WYrLYW8", + _ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer8fromJsonERKNS_4Json5ValueE) +STUB( + "-vrwJepbH1M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEED2Ev) +STUB("-vxgxZcAHnE", _ZNK3sce2Np9CppWebApi13InGameCatalog2V55Error16referenceIdIsSetEv) +STUB("-vyIrREaQ0g", _Dint) +STUB( + "-w-V9zq+Wzg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEC1EPS6_PNS2_10LibContextE) +STUB( + "-w4+GiwSpNM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEC1Ev) +STUB( + "-wH49i0x-K0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEEC2Ev) +STUB("-wHZ8S63YE4", Java_com_sony_mhpstack_debug_DebugOutput_setNativeDebugFlag) STUB("-wIAG588mvg", sceCompositorInsertThreadTraceMarker) +STUB("-wJZ+9oc8vw", + _ZN3JSC25JSSegmentedVariableObject12heapSnapshotEPNS_6JSCellERNS_19HeapSnapshotBuilderE) +STUB("-wLqOjaIZaU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEeqERKS9_) +STUB("-wUggz2S5yk", sem_setname) +STUB("-wV7wE9SH-I", ustr_hashCharsN) STUB("-wX0puxJChY", sceCesUcs2ToUhc) +STUB("-wZONZBAxqs", _ZN7WebCore9IPAddressC2ERK11sockaddr_in) +STUB("-wa17B7TGnw", _ZN3sce4Json5ValueC2Ev) +STUB("-wej5W2FojU", mono_aot_Sce_Vsh_Lxunbox_trampoline_addresses) +STUB("-whG27+m+C0", FTA_Remove_Module_pfr) STUB("-wsUTr31yeg", sceAudioPropagationSourceSetAttributes) +STUB( + "-wsxvWghjHw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEC1Ev) +STUB( + "-wwDKhon7Mk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("-wwez8FhY5g", _ZNK3sce2Np9CppWebApi6Common8IteratorIjEneERKS4_) STUB("-wzZ7dvA7UU", pthread_attr_getaffinity_np) +STUB("-x5vK4NNNYM", WKDownloadGetTypeID) +STUB("-xFvxRPfTng", _ZN3WTF7RunLoop9TimerBaseD0Ev) +STUB( + "-xGGJ9OYasU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEEptEv) +STUB("-xHVS4PppCM", _ZNK7WebCore15HTMLLinkElement2asEv) +STUB( + "-xOElF2SLZc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEEcvbEv) +STUB( + "-xOoiK8HfDI", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("-xSSlX+qymM", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container18unsetContentRatingEv) +STUB( + "-xT100Y2VJA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEED2Ev) +STUB("-xed3nTuxmc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEC1ERS7_) +STUB("-xgNSAybCRM", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V117ConnectionQuality11unsetGlobalEv) +STUB( + "-xiNFj3pTtU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("-xjMmZr5+Pg", unumsys_openAvailableNames_59) STUB("-xm7kZQNpHI", sceHttpSetEpoll) +STUB("-xuLizlityE", _ZN7WebCore20fillWithEmptyClientsERNS_17PageConfigurationE) +STUB("-xwk8hvGHZo", _Z16WTFCrashWithInfoiPKcS0_i) +STUB("-y-tRnUpuVE", glTexStorage3D) +STUB("-y0ZrMd-RPc", _ZN7WebCore8SVGNames18horiz_origin_yAttrE) +STUB("-y18MAdSy20", _ZN4Manx13WorkQueueImpl10workThreadEPv) +STUB("-y31vUdzeBM", ucnv_close_67) +STUB( + "-y6vNcwWlZE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEdeEv) +STUB("-yCQrJMlne4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEE3getEv) +STUB("-yCg3L8eMEc", Java_java_util_zip_Deflater_init) +STUB("-yDDvULIop8", _ZN3sce2Np9CppWebApi6Common8IteratorImEC2EPm) +STUB("-yNB4-t0-8g", WKViewRestoreBackingStores) +STUB( + "-yQ6yFE-tIo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEC1EPKS8_) +STUB("-yX6wn3uxtY", _ZN3sce7Toolkit2NP15AppSTLAllocatorI16SceNpTusVariableE8allocateEmPKv) +STUB( + "-yXWqzwLQtI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEcvbEv) STUB("-yYPJb0ejO8", sceShellCoreUtilRequestCameraCalibration) STUB("-yexw2HJTr4", sceVideoCoreInterfaceFinishRendering) +STUB("-yiV8shH3WY", _ZN3sce7Toolkit2NP2V28Commerce7Request21DisplayCheckoutDialog11MAX_TARGETSE) +STUB( + "-ylQAv0hYl8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEE5resetEPS8_) +STUB( + "-yqEdbg1e-o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("-yxXF7H5Wfk", _ZN7WebCore8DOMTimerD0Ev) +STUB("-yzOAodX+nQ", mono_aot_Sce_Vsh_SQLiteunbox_trampolines) STUB("-yzonNNSV8E", scePfsGetSingleBlockReadCommand) +STUB("-z+g6idK038", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112GroupingTypeEEmmEi) +STUB( + "-z-ZrNZ73Yw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEE11release_refEv) +STUB( + "-z2eNzpA+4Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "-z394KyTMl0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEE11release_refEv) +STUB( + "-z545hiCwX4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEED2Ev) +STUB( + "-z9RL7YFe+U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEC2Ev) +STUB("-zBw8551Q0Q", _ZN7WebCore20serializationForHTMLERKNS_9DisplayP3IfEE) +STUB("-zDMrM-vwTo", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyleC2EPNS1_6Common10LibContextE) +STUB( + "-zEvjr6MBaE", + _ZN9Inspector26TimelineFrontendDispatcher13eventRecordedEN3WTF6RefPtrINS_8Protocol8Timeline13TimelineEventENS1_13DumbPtrTraitsIS5_EEEE) STUB("-zJi8Vb4Du4", sceGnmSpmSetSpmSelects) +STUB("-zJyi2xdzIA", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE4sizeEv) STUB("-zKhyRjPW5s", sceDeci4hDrfpTruncate_fuse_fullpath) STUB("-zRnJ7WoWSY", sceVideoOutSetAlphaControl) +STUB( + "-zXOaFXUbiI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE7reserveEi) +STUB("-zaXhPoavkU", mtx_recvtbl) +STUB("-zacmF3Qq-o", _ZN7WebCore11MathMLNames7msupTagE) +STUB("-zbpF68OGDs", _ZN3sce2np10Cancelable12UnlockCancelEPKciS3_) +STUB("-zdIQTx0P1Q", _ZN7WebCore6Editor21removeTextPlaceholderERNS_22TextPlaceholderElementE) +STUB("-zeC1rUDOiU", _ZN3JSC8JSObject14deletePropertyEPNS_6JSCellEPNS_9ExecStateENS_12PropertyNameE) +STUB("-zePrByewAY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEE3getEv) +STUB( + "-zeTrKKgJd0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEC2EPNS2_10LibContextE) +STUB( + "-zff5kt0Ufw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE5eraseENS2_8IteratorIS6_EERS9_) +STUB( + "-zhp5N+79Zo", + _ZN15AbstractStorage12LocalService19isSandBoxRandomWordERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB( + "-zi8OTrHAE4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEptEv) +STUB( + "-znbV-zUa5o", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEplEm) STUB("-zpfGY1n49E", sceCompositorSetIndirectCanvasCommand) +STUB("-zr4F1xDgGA", _ZN3JSC16setNeverOptimizeENS_7JSValueE) +STUB( + "0+6f5xRnrB0", + _ZN7WebCore18StyleSheetContentsC2EPNS_15StyleRuleImportERKN3WTF6StringERKNS_16CSSParserContextE) +STUB( + "0+70HfivZbA", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi32ParameterToPostGameSessionsTouchC2ERS5_) +STUB("0+JSM3SBayM", rgctx_fetch_trampoline_rgctx_79) +STUB("0+KF-BexTEs", _ZN13MsvMetaEditor13updateTfhdBoxEi) +STUB("0+LtsbPVpt8", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12Notification14NetStateChangeEE3getEv) +STUB( + "0+O7IUGvHhM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEEC1ERKS9_) +STUB("0+OqE8ZvYdk", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE5emptyEv) +STUB( + "0+QaOhEt-eA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEEaSERSA_) +STUB("0+RzOhf4ICE", ubidi_getClass_67) +STUB( + "0+XCZbksP38", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("0+XUyoFn-X4", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEEixEm) +STUB( + "0+aLF7oONyo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC2Ev) +STUB( + "0+f3OadPRcY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEC2Ev) +STUB("0+fKPnnT5oM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE5emptyEv) STUB("0+l4QSWCM4E", sceNpUniversalDataSystemEventPropertyArraySetBool) +STUB( + "0+x5D2CPMOM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEE5resetEPS6_) +STUB( + "0+xSyywA-MQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEplEm) +STUB( + "0+zKE3VIAUQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEEptEv) +STUB("0-+cyzuM1yM", mono_aot_Sce_Vsh_PatchCheckerClientWrapperjit_code_end) STUB("0--XhDM7E-Q", sceFiosFHTruncate) +STUB("0-24WRoyyAg", sqlite3_extended_result_codes) +STUB( + "0-2LiKwWKH8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEEC2ERKSA_) +STUB( + "0-3Vu0D+-VM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("0-7Lz-ja4pg", + _ZN3sce2Np9CppWebApi15Personalization2V111ErrorEntity8fromJsonERKNS_4Json5ValueE) +STUB("0-9AOriGZNk", mono_aot_Sce_Vsh_VrEnvironmentjit_code_start) +STUB( + "0-AQoeTc9kM", + _ZN7WebCore15UserInputBridge31handleMouseMoveOnScrollbarEventERKNS_18PlatformMouseEventENS_11InputSourceE) +STUB( + "0-BsTa5txAU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("0-JKIdd-Rvk", + _ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody18getCreatedDateTimeEv) STUB("0-KXaS70xy4", pthread_getspecific) +STUB("0-KnocDI0+k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEC1Ev) STUB("0-XSSp1kEFM", sceNetShowRouteWithMemory) +STUB("0-XTGFTkVho", rgctx_fetch_trampoline_mrgctx_99_p) +STUB("0-ZdVDOV+Yc", _ZN7WebCore15SQLiteStatement8finalizeEv) +STUB( + "0-aMin1Le2U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "0-coFk2eyUA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEC1Ev) +STUB("0-eiiT9bGD0", mono_debug_set_debug_handles_hash) +STUB("0-gJZCSPyTU", mono_aot_Sce_Vsh_RequestShareScreenmethod_addresses) +STUB("0-gXGwKpQWA", _ZN7WebCore11EditCommand18setEndingSelectionERKNS_16VisibleSelectionE) +STUB("0-hyCuMaxIY", rgctx_fetch_trampoline_mrgctx_62_p) +STUB( + "0-mWELhv81k", + _ZN9Inspector25DebuggerBackendDispatcher13setBreakpointElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) STUB("0-p4O8FINmU", sceFiosDHCloseSync) +STUB("0-r7qGk8u00", _ZN7WebCore17HTMLButtonElement7setTypeERKN3WTF10AtomStringE) +STUB( + "0-sLAdPRiFk", + _ZN3sce7Toolkit2NP2V23TUS18getUsersDataStatusERKNS3_7Request18GetUsersDataStatusEPNS2_4Core8ResponseINS3_15TusDataStatusesEEE) +STUB( + "0-wx+-eSIBQ", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB( + "00+cKm9Yqds", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEE5resetEPS9_) +STUB( + "000JYjZv4Kk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEEC1EPS6_PNS2_10LibContextE) +STUB("000Tp+Ql3zs", _ZN7WebCore9HTMLNames15incrementalAttrE) +STUB("007PjrBCaUM", _ZTISt8messagesIwE) +STUB( + "008beiLjEks", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEC2EPKS8_) +STUB("00BBdVDT4fY", _ZN3WTF16AtomicStringImpl10addLiteralEPKcj) +STUB( + "00DjG2jckQY", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEEiRNS2_10LibContextEPT_m) +STUB("00EPIYJdiQk", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_11TusVariableENS2_IS4_EEEE7addressERS6_) +STUB("00L0+wPHuoo", mono_aot_Systemunbox_trampolines) +STUB("00MQVzW2OPY", ft_service_list_lookup) +STUB("00MqIAHRDTI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEC1ERS7_) +STUB("00MsjThIJMQ", _ZN8meta_gen13JpegRetrieverC2Ev) +STUB( + "00O-cR8jHc0", + _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container12setPublisherERKNS1_6Common12IntrusivePtrINS3_9PublisherEEE) +STUB( + "00RbVreytfc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE5clearEv) +STUB("00VHzMwfMLo", _ZN3sce7Toolkit2NP2V26Friend12Notification16FriendlistUpdateD2Ev) +STUB("00WMA5IAdWU", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEEixEm) +STUB( + "00ikSIxY70o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEEC2Ev) +STUB( + "00oCq0RwSAY", + _ZN3sce4Json11Initializer27setGlobalNullAccessCallBackEPFRKNS0_5ValueENS0_9ValueTypeEPS3_PvES7_) +STUB("00sV341FsTQ", mono_aot_Sce_Vsh_EventAppunwind_info) +STUB( + "00taCCGeslQ", + _ZN3sce2Np9CppWebApi14SessionManager2V131PlayerSessionPushContextFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_24PlayerSessionPushContextEEE) +STUB( + "010dD-Cc9xw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEED2Ev) +STUB( + "011afDHMiYs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEneERKS9_) +STUB("018Raq8Lamk", makeUlpResHdr) +STUB("01ArAPcJI8A", ures_initStackObject_67) +STUB("01BHTyfcbBs", _ZN15AbstractStorage15HttpTransactionC2Ev) +STUB("01CjkW7gpt4", _ZNK15AbstractStorage15FacebookService14GetServiceTypeEv) +STUB( + "01EM0m7MoN4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE8capacityEv) +STUB("01FSgNK1wwA", _ZTIPf) +STUB( + "01G-VXcZ1LM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "01GvW40Rco8", + _ZN7WebCore22EmptyFrameLoaderClient31dispatchDecidePolicyForResponseERKNS_16ResourceResponseERKNS_15ResourceRequestENS_21PolicyCheckIdentifierERKN3WTF6StringEONS8_8FunctionIFvNS_12PolicyActionES7_EEE) +STUB("01IKkgXrFxs", _ZN3WTF10StringImpl8utf8ImplEPKDsjRPcmNS_14ConversionModeE) +STUB("01PaG-30BLo", s17) +STUB("01SXdBkxuT8", u_isdefined_67) +STUB("01ZGV2VvBPU", + _ZNK3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody18minScoreLimitIsSetEv) +STUB("01beKkjIUv8", _ZN7WebCore36ContentSecurityPolicyResponseHeadersC1ERKNS_16ResourceResponseE) +STUB( + "01bqraVI114", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE5beginEv) +STUB("01c9ykWxC9g", _ZN3JSC8Debugger11unwindEventEPNS_9ExecStateE) +STUB("01f6nGTidnw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEEC1ERS9_) +STUB( + "01h2YMZ-Fec", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEE11release_refEv) +STUB("01jVBuB-lss", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container16unsetContentTypeEv) +STUB( + "01kKYnc7ot0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE5clearEv) +STUB("01nXitlGn8k", _ZN7bmalloc9Allocator16allocateSlowCaseEmNS_13FailureActionE) +STUB("01oONQ6ph3A", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEEdeEv) +STUB( + "01ujcXr-BT8", + _ZN7WebCore11EventTarget16addEventListenerERKN3WTF10AtomStringEONS1_3RefINS_13EventListenerENS1_13DumbPtrTraitsIS6_EEEERKNS0_23AddEventListenerOptionsE) +STUB("01weqI-hq0U", _ZThn24_N9Inspector22InspectorDebuggerAgent6enableERN3WTF6StringE) +STUB("01xW5jub3Zk", mono_aot_Sce_Vsh_Orbis_Bgftunbox_trampoline_addresses) +STUB( + "020m4hWt1jA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) STUB("0239JNsI6PE", sceNetConfigDelIfaddr) +STUB("029SwUP7kXc", _ZN7WebCore21JSTextTrackCueGeneric9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB( + "02Cat6UcS8A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEE5resetEPS9_) +STUB( + "02DG1seekFs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("02PROQf1LGc", utrace_vformat_67) +STUB( + "02W+bjP5nD4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEneERKS9_) +STUB("02ZQTDg-NHI", _ZN7WebCore9HTMLNames7codeTagE) +STUB( + "02awqPQp+fo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEE11get_deleterEv) +STUB( + "02b6+X+QgcM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEixEm) +STUB("02cdVxUq6Aw", _ZN3sce7Toolkit2NP2V26Friend15FriendsOfFriendC1Ev) +STUB("02ekiNf2IvQ", rgctx_fetch_trampoline_rgctx_38) +STUB( + "02gbYCyrzhk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) STUB("02nPI+P0g8o", sceNpSnsTwitchCreateRequest) STUB("02ozaKssy98", sceAvSettingNotifyResponseForSocialScreen) +STUB( + "02rTCbd1Gsc", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData44unsetxPsnTcsComparedLastUpdatedUserAccountIdEv) +STUB( + "02yWE1VJmfg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEC1EPS8_) +STUB( + "03+6+xbrMS8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB("031dJi8CRG4", _ZN7WebCore30plainTextReplacingNoBreakSpaceERKNS_11SimpleRangeEtb) +STUB("03667rjzfts", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13WhoLikedStoryEEC2Ev) +STUB("039VxYQ-evo", mallopt) +STUB( + "03BE9pXugt4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEC2ERKS7_) +STUB("03CHVjtPKv0", _ZN12video_parser14cVideoOperatorC1Ev) +STUB( + "03Fw9wQ61ic", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEE7add_refEv) +STUB( + "03HW+HJ6lQA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEC2Ev) +STUB("03K3wacufYs", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE3endEv) +STUB("03N9BE6uvpo", umutablecptrie_clone) +STUB( + "03OaN7zqU6c", + _ZN3sce2Np9CppWebApi14SessionManager2V140PostGameSessionsSearchRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_33PostGameSessionsSearchRequestBodyEEE) STUB("03RZmELWWzw", sceAgcCbSetUcRegistersDirect) +STUB("03U1u-RK3vg", _ZN4IPMI4impl11SessionImpl13emptyMsgQueueEj) +STUB("03UlDLFsTfw", _ZN3sce2np9EventFlag5ClearEm) +STUB( + "03VdHjMkVLc", + _ZNK3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession25playerJoinableStatusIsSetEv) +STUB("03dwJf2iIhQ", rgctx_fetch_trampoline_mrgctx_95_p) +STUB("03eJ3gM7Wgk", _ZN7WebCore8SVGNames11hangingAttrE) +STUB( + "03mReIg88gA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEEdeEv) +STUB( + "03sfVpe0Gqk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEC2Ev) +STUB("03vXp9LaHDM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11InvitationsEE3getEv) +STUB("03w8Wi7eD-A", sqlite3_step) +STUB( + "04+NqNw5cCM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE8capacityEv) +STUB("040qjk6Ckdg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEED2Ev) +STUB( + "041IP9GM+kA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEC1EPKS8_) +STUB("041c37QfoUc", _ZNSt15basic_streambufIwSt11char_traitsIwEE6xsputnEPKwi) +STUB("043lNaI5rhg", _ZN3WTF15ThreadConditionC1Ev) +STUB( + "047Y0y87-OI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("047cYEcKtJA", _ZN7WebCore11MediaPlayer5paintERNS_15GraphicsContextERKNS_9FloatRectE) +STUB("04ARvaGcQFU", _ZNK7WebCore3URL12isolatedCopyEv) +STUB("04AjkP0jO9U", _umtx_op) STUB("04JRU1Uf8Ms", sceAgcDriverModuleRegistration) +STUB( + "04RrF57B2Bc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("04SGUwIDmfE", _ZN3sce7Toolkit2NP2V26Trophy7Request19GetUnlockedTrophiesD1Ev) +STUB( + "04UE+foMiBU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEC1ERS7_) +STUB("04XvCW-DZys", JSWeakObjectMapCreate) +STUB( + "04Y7T+-jOqU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEEC1ERKSA_) +STUB( + "04iS5WgvYKg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEC2Ev) +STUB("04jmNcEmNs4", _ZN7WebCore13MIMETypeCacheD1Ev) +STUB("04mJ2uwaadw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEC2Ev) +STUB("04ztP4DeGdw", __remquo) STUB("04zv+0zNJkg", sceRegMgrSrvGetMachineType) +STUB("05+CBCmyaq4", _ZN3sce7Toolkit2NP15AppSTLAllocatorIiE7addressERi) +STUB("054i7aDOeq0", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIiEptEv) +STUB("056NZahTIcE", _ZThn24_N7WebCore14DocumentLoaderD0Ev) +STUB("05E7yxe+58U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEED1Ev) +STUB("05HZtE0FPg0", WKContextSetAccessibilityEnabled) +STUB("05ISb1sxzE4", _ZN7WebCore11DisplayList11DrawingItemD2Ev) +STUB("05KEwpDf4Ls", _ZN3sce2np6ObjectdlEPvR14SceNpAllocator) +STUB( + "05Oo2MP6+sE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE5beginEv) +STUB("05OxhjjEjKg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEC1Ev) +STUB("05Td9U4lN78", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEEC2Ev) +STUB( + "05UnoD-AFKY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEcvbEv) +STUB("05Uo75yDn-s", AES_cfb128_encrypt) STUB("05Uv55TkoHc", sceVideoStreamingEngineMediaKeySessionGetKeyStatuses) +STUB( + "05V9lKyYdJE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE3endEv) +STUB("05WiFmKi36U", JVM_ConstantPoolGetLongAt) +STUB( + "05Xv9g6t0IA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEE7add_refEv) +STUB( + "05YUcRzPkME", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEmmEi) STUB("05YzC2r3hHo", sceGnmSqttSetTraceBuffer2) STUB("05cqQH+ZKTk", sceNpServiceChecker2IntGetServiceFlagArray) +STUB("05fwtH36-78", _ZN3sce7Toolkit2NP2V27Ranking10UsersRanks8MIN_PCIDE) +STUB("05ivnENBrnI", + _ZN3sce2Np9CppWebApi7Matches2V119RequestMatchResults10setVersionERKNS3_14ResultsVersionE) +STUB( + "05lq6Sa2gDw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC2Ev) +STUB( + "05lznxHILKc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "05qmP8+9e6Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE4sizeEv) +STUB("05sZvecLe8Q", + _ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends10unsetorderEv) +STUB("05tQK2p2l3o", WKGeolocationPositionCreate_c) +STUB("05yG2pteXBA", mono_aot_Sce_PlayStation_PUIunbox_trampolines_end) +STUB("05yxE28vWu0", _ZN3NTF17URLRequestFileJobC2Ev) +STUB( + "06-98D+7wbQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) STUB("068fJfjBVZw", sceDeci4hDrfpReaddir_fuse) STUB("06AROOK-zaY", sceAppInstUtilAppInstallSharePlayLink) +STUB("06BzAAwCaIg", mono_aot_I18N_CJKmethod_addresses) +STUB("06GoApg-NxU", + _ZN3sce7Toolkit2NP8Sessions9Interface6inviteEPKNS1_16NpSessionRequestEPKNS1_13InviteMessageE) +STUB("06QaR1Cpn-k", floorl) +STUB( + "06VGzReZw-s", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEEiRNS2_10LibContextEPT_m) +STUB("06YrOKWE6sw", rgctx_fetch_trampoline_mrgctx_90) +STUB( + "06ZJ-zMInXM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE5beginEv) +STUB( + "06ZSYUZ+bY0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEEaSERSA_) +STUB( + "06aipIbNfPM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE8capacityEv) +STUB( + "06amGDIiP1I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEEC1Ev) STUB("06dizTpJ-kw", sceS3dConversionExec) +STUB( + "06emBVxC2PU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "06mAaKD1lEc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEmmEv) +STUB("06sjGRMFCVw", _ZNK7WebCore15ContextMenuItem7enabledEv) +STUB("06vOxgTjZhg", coil_registry_get_int) +STUB("06waOZH+zd4", WKPageGroupRemoveAllUserScripts) +STUB("07+KwPnTihw", _ZN7WebCore8SVGNames18v_mathematicalAttrE) +STUB( + "07-4NtgLvIk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE5emptyEv) +STUB("07-D+uOdr4U", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetInteger9Ev) +STUB( + "074LCk9YeUA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEC2Ev) +STUB( + "077AEg4Vt00", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("078ew7gQLwA", WKPageSetRubberBandsAtBottom) STUB("07Dax1oKoV8", sceVoiceChatAbortRequest) +STUB( + "07Gsv84h6Uk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB("07KLQ9Fo-WQ", _ZN3sce2Np9CppWebApi13InGameCatalog2V513ContentRating11unsetSystemEv) STUB("07O525HgICs", sceRtcTickAddSeconds) +STUB("07Q-HvfzY1Y", mono_aot_Sce_Vsh_Orbis_AbstractStoragejit_code_end) +STUB("07did60l+F4", _ZN7WebCore15ScrollAlignment19alignCenterIfNeededE) +STUB("07drtGkizRA", _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSessionD1Ev) +STUB( + "07fCi2raSl4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEC2ERKS7_) +STUB("07gsTgiQMJk", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament16RegisteredRosterEE3getEv) +STUB("07h0AnSh+Xs", _ZN7WebCore9HTMLNames12disabledAttrE) +STUB( + "07mZfVJ5eTU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEaSERKS9_) +STUB("07slamu1UYY", NET_InetAddressToSockaddr) +STUB("08+yKwi1JLE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEEC2ERKS5_) +STUB("08-mhD-AAds", FT_Trace_Get_Count) +STUB( + "088bKfBSKIM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE5beginEv) +STUB("08AQ2wYpzpk", _ZN3sce2np13NpTitleSecretC1Ev) STUB("08EzCX5QN0w", sceUpsrvUpdateGetUrlForBetaAgreement) +STUB("08HMcvsg15g", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEEppEv) STUB("08JSg9p6bgQ", sceTextToSpeech2GetSpeechStatus) +STUB( + "08JfVS6W01I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE5clearEv) STUB("08MKi2E-RcE", sceAudioOutSetHeadphoneOutMode) +STUB("08Mldv4GCkE", WKSessionStateGetTypeID) +STUB( + "08TJJEil2AU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEE7add_refEv) +STUB( + "08YRbeTpcSk", + _ZN7WebCore15SQLiteStatement21getColumnBlobAsVectorEiRN3WTF6VectorIcLm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("08u5HmSZLWI", _ZN7WebCore16nextLinePositionERKNS_15VisiblePositionEiNS_12EditableTypeE) +STUB( + "097U6K6lU2g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEEptEv) +STUB( + "097yI66vBlI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEC2EPNS2_10LibContextE) +STUB("09BCKWlo97Q", _ZNSt9basic_iosIwSt11char_traitsIwEE9set_rdbufEPSt15basic_streambufIwS1_E) +STUB("09C+xS96AKA", mono_breakpoint_clean_code) +STUB("09Cl6tgm2cA", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEcvbEv) +STUB("09DqWeTsQVQ", mono_thread_manage) +STUB("09K3Rbhq3MM", _ZNK3sce2Np9CppWebApi11UserProfile2V112BasicProfile12avatarsIsSetEv) +STUB("09Qw1j90GLw", _ZNK3sce2Np9CppWebApi11UserProfile2V112BasicProfile13relationIsSetEv) +STUB("09SAEP0B3pQ", JVM_Sync) +STUB( + "09XYbBK4zOk", + _ZN7WebCore6Editor19countMatchesForTextERKN3WTF6StringERKNS1_8OptionalINS_11SimpleRangeEEENS1_9OptionSetINS_14FindOptionFlagEEEjbPNS1_6VectorIS6_Lm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("09j9iCj2+sw", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEEC2Ev) +STUB("09jkJlTlT8w", _ZN7WebCore9FrameView17setScrollPositionERKNS_8IntPointE) +STUB("09lWfozUVbc", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12Notification14NetStateChangeEE5resetEv) +STUB( + "09qFsfarp78", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE5emptyEv) STUB("09tk+kIA1Ns", sceHttp2SetMinSslVersion) +STUB("09uCvMnwNk8", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle9getGlobalEv) +STUB("09uhycRoBVY", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V115CompetitionTypeEEppEi) +STUB( + "09umJuScNEI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB("09vKaCuNyqI", FT_Load_Sfnt_Table) +STUB( + "09zBXMpYwwI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("09zNA3rrUG0", _ZN7WebCore11MathMLNames7dirAttrE) +STUB( + "0A0G6-ksZYs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEneERKS9_) +STUB("0A1kLi9wy1I", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEppEi) +STUB( + "0A4Z2kWVMiY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("0A4ef1lYz3k", mono_aot_JSC_Netjit_code_start) +STUB("0AEWR2mf0dA", _ZN3JSC27threadSpecificAssemblerDataEv) +STUB( + "0ALNeQjaTJ0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEptEv) +STUB("0ALuf7DoGqY", _ZN9MmsMp4BoxC2Ev) +STUB("0APUr5EGKJU", rgctx_fetch_trampoline_mrgctx_92_p) +STUB( + "0APj15+LZf4", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE18getResponseHeadersERSB_) +STUB("0ARVE3ZNWvQ", _ZNK7WebCore8Document3dirEv) +STUB( + "0ASnQS3KDrA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEC2Ev) +STUB("0AVQjKBoUZQ", + _ZN7WebCore16FrameLoadRequestC1ERNS_5FrameERKNS_15ResourceRequestERKNS_14SubstituteDataE) +STUB("0AVQpzac7cg", unum_formatDoubleForFields_67) +STUB("0AWZZJadTmU", + _ZN7WebCore14MicrotaskQueue6appendEOSt10unique_ptrINS_9MicrotaskESt14default_deleteIS2_EE) +STUB("0AYF1Jdj8hY", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification18NewGameDataMessageEE5resetEv) +STUB("0Aal-TIC4so", FT_Outline_Get_BBox) +STUB("0AeC+qCELEA", _ZNSt7_MpunctIcED1Ev) +STUB("0AgCOypbQ90", _Atomic_compare_exchange_weak_4) +STUB( + "0AjHMVftVXw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEE7add_refEv) +STUB("0Am3sBbSwo0", _ZN3sce3Xml3Dom8Document16removeAttributesENS1_6NodeIdE) +STUB( + "0AnMJh7GY+k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("0AoMbZFdLZ4", _ZN3sce7Toolkit2NP2V211UserProfile7Request27GetVerifiedAccountsForTitleC1Ev) +STUB("0Aqqie4gXEY", WKPreferencesGetHiddenPageCSSAnimationSuspensionEnabled) +STUB("0Asl1MoAb7Y", _ZNK7WebCore9FrameView21minimumScrollPositionEv) +STUB("0Aw8GCwET+o", _ZN23sceMetadataReaderWriter11getMimeTypeERKSsRSt6vectorIjSaIjEE) +STUB("0AyT+FwaiVw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE4sizeEv) +STUB( + "0B+FDqQcbYQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEEC2Ev) +STUB("0B-kANfqItU", _ZN3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsTouchResponseBodyD2Ev) +STUB( + "0B3FSubJm8k", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEixEm) +STUB( + "0B44XhgWEI8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEC1Ev) +STUB( + "0B7eupzkEMs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEEC1ERKSA_) +STUB("0B8UBK9QAyY", GCC_except_table23) +STUB( + "0BAA8Pimlcg", + _ZNK3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody13getSearchableEv) +STUB("0BCpX4HXIOg", + _ZNK3sce2Np9CppWebApi14SessionManager2V124PlayerSessionPushContext6toJsonERNS_4Json5ValueEb) +STUB("0BCx5N2IWCI", jpeg_set_linear_quality) +STUB( + "0BG+KQeE9O4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEdeEv) +STUB("0BH6qN1jC50", mono_domain_is_unloading) STUB("0BMj1hgG+kE", sceAmprMeasureCommandSizeWaitOnAddress_04_00) +STUB("0BNiqtvNqTA", _ZN9Inspector32TimelineBackendDispatcherHandlerD0Ev) +STUB( + "0BPPm5Oq5Ys", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEEC2ERSA_) +STUB("0BPy81HuyCw", jpeg_suppress_tables) +STUB( + "0BU+NMgvLhU", + _ZN9Inspector24CanvasFrontendDispatcher17recordingProgressERKN3WTF6StringENS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol9Recording5FrameEEENS1_13DumbPtrTraitsISB_EEEEi) +STUB( + "0BUh0UN8rnY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEC1EPKS8_) +STUB( + "0BVKOIK0oxc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEED2Ev) +STUB("0BVMql3sg60", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEEcvbEv) +STUB("0BVzO0W+Wbo", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEEppEi) +STUB("0BeeIqfeHwA", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEEC1Ev) +STUB( + "0BhTk3qfGfc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEC1Ev) +STUB("0BiKvnL8Ls4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V120PlayerJoinableStatusEEneERKS7_) +STUB( + "0BiyjZvkEuI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE8pushBackERKS8_) +STUB( + "0BortfYmQRk", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28sendPlayerSessionInvitationsEiRKNS4_39ParameterToSendPlayerSessionInvitationsERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_50PostPlayerSessionsSessionIdInvitationsResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("0Bsyz501NWA", _ZN7WebCore15JSSVGSVGElementC1ERKS0_) +STUB( + "0BtcoCh5nbg", + _ZN9Inspector24RuntimeBackendDispatcher25enableControlFlowProfilerElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "0BviZqvBXaA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEEC2EPS9_PNS2_10LibContextE) STUB("0BzLGljcwBo", sceGnmDispatchDirect) +STUB("0C2wShXZc8Q", _ZN7WebCore24RotateTransformOperationD0Ev) +STUB("0C4AucTqZoc", u_charMirror_59) STUB("0C5aKg9KghY", sceFontGraphicsSetupShapeFillPlot) +STUB( + "0C6pDUqknH4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("0C9kW9dUXp4", mono_install_trampoline) +STUB("0CAesfH963Q", _ZN3sce4Json6StringC1ERKS1_) +STUB("0CB7Dz8pEuA", _ZNK3WTF3URL5queryEv) +STUB("0CDfsxAzrRU", il2cpp_property_get_get_method) +STUB("0CGMc99sJQc", _ZN3JSC6JSLock12DropAllLocksC2EPNS_14JSGlobalObjectE) +STUB( + "0CIDC2Wdlkw", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetrics17getPercentileRankEv) +STUB("0CMj1as8HmQ", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_20NpSessionInformationEED1Ev) +STUB("0CWP1rGZgcw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEC2Ev) +STUB("0CXUHdlOyB0", _ZNK7WebCore27TranslateTransformOperation10isIdentityEv) +STUB("0CYh09Kj6Yg", _ZN7WebCore12EventHandler26sendContextMenuEventForKeyEv) +STUB("0Cd4Fe0VDPQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEE7add_refEv) +STUB( + "0CeOBfgnffs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEneERKS9_) +STUB("0ClvVCH7yL8", _ZN7WebCore20TransformationMatrix10makeAffineEv) +STUB("0CnwqNph95c", _ZN7bmalloc8FreeListC2Ev) +STUB( + "0CoQY4hl7Jw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEC2EPS8_) +STUB("0CoUVi1Fzws", _ZNSt9_FacetptrISt7codecvtIwc9_MbstatetEE6_PsaveE) +STUB("0CoYb1JENQ0", makeDeciHdr) +STUB("0Coeneps3ug", _ZN7WebCore9HTMLNames12progressAttrE) +STUB("0Cosd1JZb-s", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEEixEm) STUB("0Cq8ipKr9n0", sceKernelUtimes) +STUB("0CtgWXYiULY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEEC2ERS7_) +STUB("0Cu5IQZsCWA", _ZN9Inspector15RemoteInspector9setClientEPNS0_6ClientE) +STUB( + "0CuSvbXyCws", + _ZN7WebCore20findClosestPlainTextERKNS_5RangeERKN3WTF6StringENS3_9OptionSetINS_14FindOptionFlagEEEj) +STUB("0D-d8of1AKI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEE11get_deleterEv) +STUB("0D2KyH6te08", _ZN7WebCore31TextureMapperPlatformLayerProxy10swapBufferEv) STUB("0D2xtHQYxII", sceUserServiceSetGlsAccessTokenTwitch) STUB("0D4-FVvEikw", pthread_cancel) +STUB( + "0D5I44dAg50", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEdeEv) +STUB( + "0D5kkNy8Md4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEEptEv) +STUB( + "0D8mmQVvrXg", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS5_INS7_9RecordApi26RecordScoreResponseHeadersEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("0DGFmG69Co4", _ZN3JSC7Symbols38regExpProtoIgnoreCaseGetterPrivateNameE) +STUB( + "0DM2jQZpNeA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEE7add_refEv) +STUB( + "0DQsPC5QBhY", + _ZN7WebCore8Document15openForBindingsERNS_9DOMWindowES2_RKN3WTF6StringERKNS3_12AtomicStringES6_) STUB("0DT5bP6YzBo", sceNpTusDeleteMultiSlotData) +STUB("0DY9Snf59Wk", _ZN3JSC14JSGlobalObject13visitChildrenEPNS_6JSCellERNS_11SlotVisitorE) +STUB("0DefFNLazLs", ucol_getDisplayName_67) +STUB("0DkchTKnu8Y", _ZN9Inspector22RemoteInspectionTargetD0Ev) +STUB("0DmmJzqovIo", _ZN3sce2Np9CppWebApi11UserProfile2V113AvatarFactory7destroyEPNS3_6AvatarE) +STUB("0Dp8MrkzUiQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEEC2EPKS6_) +STUB("0DpYxkF3NWY", mono_enable_jit_time_log) +STUB("0DpbxQFwU+Y", _ZN9Inspector21RemoteInspectorServer5startEPKcj) +STUB( + "0Dus4g3vVCY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "0DvUhtR4AQ0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEEC2Ev) +STUB("0E141OCgrqw", u_istitle_67) STUB("0E2eyiIG7wM", sceAudioSystemSystemSuspend) STUB("0E4tuBjmqog", sceIduUtilGetCompilationDiscTitleInfo) +STUB("0E5q8C49Zi0", ubidi_getLevels_67) +STUB("0E7kuZbepVg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEED2Ev) +STUB( + "0EA3+KhA2ak", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEmmEv) +STUB( + "0ED2FzRYUmo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("0ELeILzx6IU", + _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse20matchStatisticsIsSetEv) +STUB("0ELyQu0bQIM", WKBooleanCreate) +STUB("0EQViwzMORI", mono_assembly_invoke_search_hook) +STUB( + "0EYm4FhXdEo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "0EYv6MCStO0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "0Eh9aMWUjec", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEEC2EPKS6_) +STUB("0EhLtR7plbI", _ZNK7WebCore17HTMLOptionElement5indexEv) +STUB("0EqR0YW7CDI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEEppEv) +STUB( + "0Eqn40ngE5M", + _ZN3JSC12StringObject18getOwnPropertySlotEPNS_8JSObjectEPNS_14JSGlobalObjectENS_12PropertyNameERNS_12PropertySlotE) +STUB("0Ey5atuU8V0", _ZTVN4IPMI6ServerE) +STUB("0F08WOP8G3s", malloc_report_memory_blocks) +STUB( + "0F15qnI+z-k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEED1Ev) STUB("0F2Qr9w0EJo", sceIduUtilEnablePriorityDownloads) +STUB( + "0F40i4OK9CA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEC2Ev) +STUB("0FCeB7KcTQg", _ZN3sce2Np9CppWebApi11Matchmaking2V110UserTicketC2EPNS1_6Common10LibContextE) +STUB("0FJ8ipURoLQ", _ZN3sce7Toolkit2NP2V210Tournament18OneVsOneRankResultC1ERKS4_) +STUB("0FK6kbZvcvA", WKPreferencesGetSnapshotAllPlugIns) +STUB("0FKwlv9iH1c", _ZNKSt7codecvtIDsc9_MbstatetE6do_outERS0_PKDsS4_RS4_PcS6_RS6_) +STUB("0FUBLRRNmBM", jinit_d_post_controller) +STUB("0FUfhLCu97Y", delegate_invoke_impl_target_0) +STUB( + "0Fa0PfWYvoU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEmmEv) +STUB( + "0FaXGRGstoY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE3endEv) +STUB("0FfIJ1bClRQ", _ZN7WebCore9HTMLNames11preloadAttrE) +STUB("0FfP3qcsmAw", + _ZNK7WebCore11FontCascade6updateEON3WTF6RefPtrINS_12FontSelectorENS1_13DumbPtrTraitsIS3_EEEE) +STUB( + "0FgzOGHbBbU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEED2Ev) +STUB("0FijTu6fliM", _ZN3sce7Toolkit2NP2V29Challenge7Request13SendChallengeC1Ev) +STUB("0FjqCOovYhs", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V13Mmr15getPerFranchiseEv) +STUB("0FlXpxjRjOA", + _ZN9Inspector21InspectorConsoleAgent11startTimingEPN3JSC14JSGlobalObjectERKN3WTF6StringE) +STUB("0FmMcDDxnAY", _ZThn16_N9Inspector21InspectorConsoleAgent13clearMessagesERN3WTF6StringE) STUB("0FnzR6qum90", sceLibcPafMspaceReportMemoryBlocks) +STUB( + "0Fq1cISGuzo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEppEv) +STUB("0Fq3ZYs6iLo", _ZN3JSC7Symbols43AsyncGeneratorSuspendReasonYieldPrivateNameE) +STUB( + "0FtqptO4qfs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEdeEv) +STUB( + "0G+Q1mKM--c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEE5resetEPS6_) +STUB("0G36SAiYUhQ", _ZTIPKd) +STUB("0G39HF8GOCo", rgctx_fetch_trampoline_rgctx_124) +STUB("0G39M6jYWPI", _ZN3sce2Np9CppWebApi7Matches2V121ResponseTeamStatisticD2Ev) +STUB("0G7a3zE4Hao", _ZN7WebCore16BackForwardCache9singletonEv) +STUB("0GAR0oY99so", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18GameCustomDataItemEEC1Ev) STUB("0GAn6zZgyfA", sceVorbisDecTimeSeekPage) +STUB( + "0GCv8MSOwUE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("0GDd+wkJR6A", mono_config_cleanup) +STUB( + "0GEj2FNdMPs", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi42ParameterToPutGameSessionsSearchAttributes10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_42PutGameSessionsSearchAttributesRequestBodyEEE) +STUB("0GJkvqEhbvg", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_8TempRankEEC1Ev) +STUB( + "0GK7Stx0quo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEE7add_refEv) +STUB("0GXk8-OELMU", _ZN3sce7Toolkit2NP2V28Matching7Request17KickOutRoomMemberD2Ev) +STUB( + "0GfensRT41g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEEC2Ev) STUB("0GflMZhj7sU", sceNpGriefReportCreateTransaction) +STUB("0GkIAcBgKFg", _ZNK7WebCore14ScrollableArea24scrollPositionFromOffsetENS_8IntPointE) +STUB( + "0GlX3CVVCCs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEptEv) STUB("0GnN4QCgIfs", sceContentExportInit2) +STUB("0GnYzmeB+AE", mono_domain_set) +STUB("0GnpUt-BVlE", ucnv_getCanonicalName) +STUB("0GqDjpzjTI8", OCSP_resp_find_status) +STUB("0Gqs466l0tQ", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody10limitIsSetEv) +STUB( + "0GsZ86QjEQw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEE3getEv) +STUB( + "0GtOfTmELY0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEptEv) +STUB( + "0Gu1MIYbKII", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("0GxlvzlC15A", _ZN3WTF9BitVector10filterSlowERKS0_) +STUB("0GzqDWrOCWA", mono_aot_Sce_Vsh_Webbrowser_XutilWrapperjit_got) +STUB( + "0H-AlFm8gZY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEaSERKS9_) STUB("0H0JBpVp03o", sceNpAppLaunchLink2IntDestroyRequest) STUB("0H2vBYbTLHI", sceGnmDrawInitDefaultHardwareState200) +STUB( + "0H34zfAoGEU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEEC2EPS8_PNS2_10LibContextE) STUB("0H51EFxR3mc", sceUserServiceGetGlsCameraEdgeLevel) +STUB("0H5TVprQSkA", fmaxl) +STUB( + "0H810BYRZk0", + _ZN7WebCore9subdivideERKN3WTF6VectorINS_10MarkedTextELm0ENS0_15CrashOnOverflowELm16ENS0_10FastMallocEEENS_15OverlapStrategyE) STUB("0HBYxYAjmf0", sceNpGameIntentTerminate) +STUB( + "0HCEd8d-VTY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE5beginEv) +STUB("0HDAWBfKVpQ", _ZN7WebCore6Editor16pasteAsPlainTextERKN3WTF6StringEb) +STUB( + "0HF4kRqw2OA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "0HG6ycBGyNs", + _ZN7WebCore8JSDOMURL6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_6DOMURLENS6_13DumbPtrTraitsIS8_EEEE) +STUB("0HJXacCCeRE", mono_assembly_load_with_partial_name) +STUB( + "0HO4hw42YvA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEEC1EPNS2_10LibContextE) +STUB("0HPBOdMd3c8", _ZN7WebCore32ScrollingStateFrameScrollingNode30setSynchronousScrollingReasonsEj) +STUB( + "0HPF+bs+0u8", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeAccountId2OnlineIdBatch13isInitializedEv) +STUB("0HSMUaTkHtA", _ZN3sce7Toolkit2NP2V212ActivityFeed13UsersWhoLikedD2Ev) +STUB( + "0HcUf1HNNnc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEEaSERSA_) +STUB( + "0HeTsHOX-hc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEaSERKS9_) +STUB( + "0HhVjzkSNtI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEC1Ev) +STUB("0HhZ7C4szlM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEEC2ERKS6_) +STUB( + "0HkylFfb+Ig", + _ZN9Inspector21CSSFrontendDispatcher15styleSheetAddedEN3WTF6RefPtrINS_8Protocol3CSS19CSSStyleSheetHeaderENS1_13DumbPtrTraitsIS5_EEEE) +STUB( + "0HlFc+QSSxI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "0Hlmr54HsZE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE21intrusive_ptr_add_refEPS9_) +STUB("0Hmy+VyRm0I", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEE3getEv) +STUB("0Ht6QGO2Mgc", _ZN3sce2Np9CppWebApi6Common13ConstIteratorImEppEi) +STUB("0Hu7rUmhqJM", _Tls_setup__Times) +STUB("0HuTEtf4Lto", _ZN3JSC7JSProxy12isExtensibleEPNS_8JSObjectEPNS_9ExecStateE) +STUB("0HxXSThl2lI", _ZN12Mp4Retriever18processMetaStrMainEjPh) STUB("0HyIe5JPZYE", sceUlpMgrSend) +STUB("0I+UbeCBkVU", Java_com_sony_bdjstack_javax_media_controls_SoundManager_setPanningPosition) +STUB("0I03nEnNoBY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V117InvitableUserTypeEEmmEv) +STUB("0I6apGOYhtM", _ZN3JSC18sanitizeStackForVMERNS_2VME) +STUB( + "0IC3h-ZA8Vg", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEiRNS2_10LibContextEPT_m) +STUB("0ICJJV60XoU", _ZTVN9Inspector28HeapBackendDispatcherHandlerE) +STUB("0ICMatq6+6g", _ZN3JSC6Config23enableRestrictedOptionsEv) +STUB("0ICY9CDqDX4", _ZN3sce2Np9CppWebApi7Matches2V118RequestMatchPlayer14unsetAccountIdEv) +STUB("0IFPN2Aeum8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEEC2ERS7_) +STUB( + "0IGr0WzkL5E", + _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession9setMemberERKNS1_6Common12IntrusivePtrINS3_30RequestGameSessionMemberPlayerEEE) +STUB( + "0IJ2mf4HtOo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEC2EPS6_PNS2_10LibContextE) STUB("0IL1keINExQ", sceShareTerminate) +STUB( + "0INVXJEjKBs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEixEm) +STUB( + "0IOtig+mlYU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEC1Ev) +STUB("0IQgspU3zuA", _ZNSt15basic_streambufIcSt11char_traitsIcEED1Ev) +STUB("0ISumvb2U5o", _WPutfld) +STUB( + "0IT44Kxbb+g", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEED2Ev) +STUB("0ITXuJOqrSk", _Save_state) +STUB("0IUqQPd6clA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEC2ERS7_) +STUB("0IY2arzvSgQ", mono_aot_System_Xml_Serializationjit_code_start) +STUB("0IhGzSskLLA", _ZNK3sce2Np9CppWebApi6Common6VectorImEixEm) +STUB( + "0IiHgovnPMs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEaSERKS9_) +STUB("0IjKIfzLfb0", mono_aot_Sce_Vsh_DbRecoveryUtilityWrapperunbox_trampolines_end) +STUB("0Ir3jiT4V6Q", _ZNSs5eraseEmm) +STUB( + "0IrMHhv+qH8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEC2Ev) +STUB("0Is1dxlaGR4", + _ZN3JSC23JSModuleNamespaceObject14deletePropertyEPNS_6JSCellEPNS_9ExecStateENS_12PropertyNameE) +STUB( + "0IveluT6kgM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEC1EPS8_) +STUB("0IvpCRHVzNo", _ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody12getSmallDataEv) +STUB( + "0Iwg0S8cDUc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEmmEv) +STUB( + "0J+Kp4CnWng", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE3endEv) +STUB("0J4frRKtCPQ", mono_aot_Sce_Vsh_ShareServerPostWrapperjit_code_start) +STUB("0JIfTD-muD0", usearch_previous_67) +STUB( + "0JQUDJZyS4g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEEC1ERSA_) +STUB( + "0JYUeHP-0OU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE3endEv) +STUB( + "0JeMV+GbkFA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUser12setaccountIdEPKc) +STUB("0Jg8P-SKYNY", mono_aot_System_Net_Http_WebRequestjit_got) +STUB("0JidN6q9yGo", _Thrd_start) +STUB("0Jin5GUgUeY", _ZN3sce7Toolkit2NP2V27Session7Request14SendInvitation18MAX_NUM_RECIPIENTSE) +STUB("0JkotwAYWCc", _ZN2sh13GetObjectCodeEPv) +STUB("0JlZYApT0UM", _ZNSt14_Num_ldbl_base15tinyness_beforeE) +STUB("0JooaCA9qlY", mono_module_file_get_object) +STUB( + "0Js-tyWEyHU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEaSERKS9_) STUB("0JuS3zkDXdc", sceShellCoreUtilTalkKeyEventReceived) +STUB("0JxNOxFh7mU", _ZN7WebCore9CSSParser10parseColorERKN3WTF6StringEb) STUB("0K1yQ6Lv-Yc", sceSslTerm) +STUB("0KClQgT2ckA", WTFLogAlwaysV) +STUB( + "0KD2Pyxm9SE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB( + "0KLQ7BLLZaU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEEC2ERKSA_) +STUB( + "0Ka7CZcVxto", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "0Kg3JJzzpIQ", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V145MatchCompletionRateDisconnectedMetricsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_38MatchCompletionRateDisconnectedMetricsEEE) +STUB( + "0KgB-9mc0J4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEE11get_deleterEv) +STUB("0KgyoEODDmA", YGConfigGetUseWebDefaults) +STUB( + "0KmVmOg088c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE8pushBackERKS8_) +STUB("0KqxIyH6DiE", _ZN3JSC2VM22boundFunctionSpaceSlowEv) STUB("0KrW5eMnrwY", sceSystemGestureGetTouchRecognizerInformation) +STUB("0KsRLd9dTVU", _ZN3WTF3URL24removeFragmentIdentifierEv) +STUB( + "0Kvx23atdGk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEppEi) +STUB("0KynCQXu9XQ", _ZN9Inspector15RemoteInspector9singletonEv) +STUB( + "0L++oeBDbcI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEC1EPS6_PNS2_10LibContextE) +STUB( + "0L0+ghtPTIo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEEC1ERKSA_) +STUB("0L0rPrqMqqE", CryptographyGenerateHmacSha256) +STUB( + "0L1-UCEyQU4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE8capacityEv) +STUB( + "0L2FaN5c5So", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEeqERKS9_) +STUB("0L6Cal4G4dc", _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeIPcPvEEC1Ev) +STUB( + "0LCqO7lC-cc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE21intrusive_ptr_add_refEPS9_) +STUB("0LGrRXiJ-kY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEEC1ERS5_) +STUB( + "0LKqCTWt2Lw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEC2EPNS2_10LibContextE) +STUB("0LM1a1iaHi4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE8capacityEv) +STUB( + "0LOJ6lziUjg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("0LP3hN7yxs0", _ZNSt9basic_iosIcSt11char_traitsIcEE4moveEOS2_) +STUB("0LSRs8rB-A8", _ZN3WTF11writeIndentERNS_10TextStreamEi) +STUB("0LTjiTTEbuo", mono_value_describe_fields) +STUB( + "0LVk4EotHq8", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12unsetString6Ev) +STUB("0LVqe3ixFnk", _ZN3sce2Np9CppWebApi7Matches2V17SubtaskC2EPNS1_6Common10LibContextE) STUB("0LWei+c7RNc", sceKeyboardClose) +STUB("0Lck8j3ahAo", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge13ChallengeDataEE12deepCopyFromERS7_) +STUB("0LgnPwf0I44", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE5emptyEv) +STUB( + "0Lj0pe2i+HE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) STUB("0LkfqnKtPQg", sceMbusEventCreate) +STUB( + "0LmvVuAAk2I", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot7setsortENS5_4SortE) +STUB("0LocGvpwD0M", _ZN7WebCore9HTMLNames10selectAttrE) +STUB("0LpNBybiBxY", + _ZN3sce2Np9CppWebApi14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyD1Ev) +STUB( + "0LqYzF5kSOo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEEC2ERKSA_) +STUB("0Ls1Ts-85yY", _ZN3sce7Toolkit2NP19ProductBrowseParamsC2Ev) +STUB("0LtyzDw08DQ", JVM_SetThreadPriority) +STUB( + "0LuXeVktcpk", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfile18unsetincludeFieldsEv) +STUB("0Lv6K1d47jg", FT_Outline_Transform) +STUB( + "0M-7FIlr8m8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("0M-vF0rurfc", WKPageSetUseFixedLayout) +STUB("0M5xxtd3KVs", _ZN7WebCore15GraphicsContextC1EPNS_20PlatformContextCairoE) STUB("0MB5x-ieRGI", scePadVertualDeviceAddDevice) +STUB("0MHM5pZ54E4", _ZN3JSC19numberOfDFGCompilesEPNS_14JSGlobalObjectEPNS_9CallFrameE) +STUB( + "0MPSM+XOeS8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEneERKS9_) STUB("0MT2l3uIX7c", sceNetGetIfName) STUB("0MV72WO7V34", sceNpLookupSetTimeout) +STUB("0Ma-LQjv6So", cpuset_setaffinity) +STUB( + "0Md1lr7J0Og", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEC1Ev) STUB("0Mi1-0poJsc", sceFontGraphicsGetIndexedVertexesGlyph) +STUB("0MkIjtMfKpE", _ZN3sce2np13JsonDocParser13onStartObjectEjj) +STUB("0MkQ7M2OiC4", + _ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors23setValidationConstraintEPKc) +STUB("0MlK00Ubm2k", YGNodeNewWithConfig) +STUB("0Mo4EsA5wVo", + _ZN9Inspector22PageFrontendDispatcher31frameClearedScheduledNavigationERKN3WTF6StringE) +STUB("0MqrCZ2CMWk", _ZN19JITSharedDataMemory13shared_mallocEm) STUB("0MtUJ3BpGhE", sceAgcDriverGetWaitRenderingPacketSizeInDwords) +STUB( + "0Mvc2GbRXQs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE3endEv) +STUB( + "0MwjtlWeGGg", + _ZN9Inspector21HeapBackendDispatcher6createERNS_17BackendDispatcherEPNS_28HeapBackendDispatcherHandlerE) +STUB( + "0MzJAexrlr4", + _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tmcc) +STUB( + "0MzkfXMsxBk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("0N218-LjuV8", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEED2Ev) +STUB("0N3-Sv3K9y0", twom10000) +STUB("0N7HangwrmM", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead21unsetJoinableUserTypeEv) +STUB( + "0NApYx0udRI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEC1EPS8_) +STUB("0NAq38V3Das", _ZN7WebCore9FloatRectC1ERKNS_7IntRectE) +STUB("0NCiHl62IHw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE5clearEv) +STUB("0ND8MZiuTR8", + _ZGVZNSt13basic_filebufIcSt11char_traitsIcEE5_InitEP7__sFILENS2_7_InitflEE7_Stinit) +STUB("0NE9SkyhX-s", _ZN7WebCore19ResourceRequestBase16setHTTPUserAgentERKN3WTF6StringE) +STUB("0NEguwQXWA0", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIfEppEv) +STUB("0NFMrX7gHYc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V115CompetitionTypeEEneERKS7_) +STUB("0NJDcQ2B8vE", execvp) +STUB( + "0NJVs7w5g5A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEE11get_deleterEv) STUB("0NSzVSTy9tk", sceVisionManagerRequestInitializeRegisterUserData) STUB("0NTHN1NKONI", sceKernelConvertLocaltimeToUtc) +STUB( + "0NV24Af-UEE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE3endEv) +STUB("0NWE4y1zLoc", _UTF7Data_67) +STUB("0Nda0t-A+8A", _ZN7WebCore12ISOWebVTTCueC1ERKS0_) +STUB( + "0Ni4YiLsT38", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEE3getEv) +STUB("0NioBryjzSc", __libunwind_Unwind_Backtrace) +STUB("0Nk0l48XZVo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEcvbEv) +STUB("0Nn7Ti0+p1U", _ZNK3sce2Np9CppWebApi7Matches2V113RequestMember11getPlayerIdEv) +STUB( + "0NojPefpJqc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEC2ERKS7_) +STUB("0NwCmZv7XcU", _FDnorm) +STUB("0NwtoQ5yvkE", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V19RatingApi21ParameterToPostRatingaSERS5_) STUB("0NyJTCJWuuk", sceKernelGetUtokenStoreModeForRcmgr) +STUB("0NzGPjDE7Lg", _ZN3JSC7Symbols39asyncGeneratorFieldQueueLastPrivateNameE) +STUB("0NzQg1z-fGM", xmlStopParser) STUB("0O3xxFaiObw", sceGnmSetSpiEnableSqCounters) +STUB("0O4K1GKtCz4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEC1ERS7_) +STUB("0O6N7MHNdfg", _ZN3sce7Toolkit2NP2V27Ranking12RangeOfRanksC2ERKS4_) +STUB( + "0O8jCgcGE7Q", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEptEv) +STUB("0OI3DXKmR9w", _ZN3JSC21MarkedJSValueRefArrayD2Ev) +STUB("0OLbLK3fZlE", _ZN3WTF11ThreadGroupD1Ev) +STUB("0OOmgn6KC90", ucfpos_constrainCategory_67) +STUB("0OQm7EIMZUs", WKPreferencesSetMediaControlsScaleWithPageZoom) +STUB("0OVoam5Maq8", ucptrie_internalSmallIndex) +STUB("0OWHhE8-No8", _ZN3sce7Toolkit2NP2V24Core7Request17ExternalAllocatorD1Ev) +STUB( + "0OX1OLspa+s", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEC1EPS8_) +STUB( + "0OZ0X7OWInM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEEC1ERSA_) +STUB("0OcOEIPEuUo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEE3getEv) +STUB("0OeraXVXfzM", sqlite3_sql) +STUB("0OjBJZd9VeM", _ZNSt10moneypunctIwLb0EE7_GetcatEPPKNSt6locale5facetEPKS1_) +STUB("0Oje7JLGsY4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEEptEv) +STUB( + "0OmNSkG++kY", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser18setjoinStateFilterEPKc) +STUB("0Oog3KE4xvU", _ZN7WebCore8SVGNames17accent_heightAttrE) +STUB("0OwYXge9+YY", WKWebsiteDataStoreConfigurationSetLegacyTLSEnabled) +STUB( + "0P+IWIj40R8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEppEi) +STUB( + "0P+iMinfe-4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("0P2v-cE-4Hg", _ZN7WebCore20nextSentencePositionERKNS_15VisiblePositionE) +STUB( + "0P5Rw7U5+s8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "0P7aI7xBpIg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEE5resetEPS9_) +STUB( + "0PGKqY9wbgg", + _ZN7WebCore10Pasteboard4readERNS_19PasteboardPlainTextENS_25PlainTextURLReadingPolicyEN3WTF8OptionalImEE) +STUB( + "0PNZ0bNTCfQ", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB( + "0PSJDmUef-4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE21intrusive_ptr_add_refEPS9_) +STUB("0PT1hZ55Faw", _ZN6WebKit17ChildProcessProxyC1Ev) +STUB( + "0PT319lwTJ8", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi17getPlayerSessionsEiRKNS4_28ParameterToGetPlayerSessionsERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_29GetPlayerSessionsResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB( + "0PWWUoAJ5AQ", + _ZN3sce2Np9CppWebApi7Matches2V126RequestInGameRosterFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_19RequestInGameRosterEEE) +STUB("0PYkLRuvLMw", WKPageCopyApplicationNameForUserAgent) +STUB( + "0Pc+oUT-hpg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE8copyFromERKS9_) +STUB("0Pcj1zY3QX0", _ZNK7WebCore12SharedBufferneERKS0_) +STUB("0Pd-K5jGcgM", _ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2ERKSt8_Locinfom) +STUB("0PflEBfoZDs", WKContextConfigurationFullySynchronousModeIsAllowedForTesting) +STUB("0PqE5nkahfw", _ZN7WebCore26CustomElementReactionStack12processQueueEv) +STUB( + "0PsKG2H8qJY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEC2EPNS2_10LibContextE) +STUB( + "0PuKLJyJczA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEEC1ERKSA_) +STUB( + "0Pxzq6GZmto", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE7reserveEi) +STUB( + "0Q0h+TJZBAQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE8copyFromERKS9_) +STUB( + "0Q20iL895pw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE7reserveEi) +STUB( + "0Q4OH-nX6q4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEC1ERS7_) +STUB("0Q5aKjYErBA", _ZN3sce2np6ThreadD1Ev) +STUB( + "0Q6HoGGpzeE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEdeEv) +STUB( + "0Q6fQRvfhUs", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi17addAndGetVariableEiRKNS4_28ParameterToAddAndGetVariableERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_8VariableEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("0Q7yOxNiGBY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEEC1EPS6_PNS2_10LibContextE) +STUB( + "0QA2IWgJnGA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "0QKta6alp6E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEEC1ERSA_) STUB("0QN4BUnzF14", sceShellCoreUtilDoFsck) +STUB( + "0QND7XJNS9A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEC1Ev) +STUB("0QP4K+xAQ6U", _ZN7WebCore17FullscreenManager22setAnimatingFullscreenEb) +STUB("0QPT2m4yxiU", _ZN7WebCore8SVGNames16mathematicalAttrE) +STUB("0QVx-6Ffzjc", _ZThn24_N9Inspector18InspectorHeapAgentD0Ev) +STUB("0QYqa+Aosjs", _ZNSt15basic_streambufIwSt11char_traitsIwEE5_LockEv) +STUB("0QZ4ACiysus", + _ZN7WebCore14endOfParagraphERKNS_15VisiblePositionENS_27EditingBoundaryCrossingRuleE) +STUB("0QbSxsg9i1M", _ZN9Inspector32DebuggerBackendDispatcherHandlerD2Ev) STUB("0QcqLS+gFiQ", sceRegMgrToolGetInfo) +STUB("0QjiF9xEFQA", _ZN9Inspector28DOMDebuggerBackendDispatcherD0Ev) +STUB( + "0Qk4VdmsreE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEEC2Ev) +STUB("0Qo5ERH9rRc", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia10BroadcastsEED2Ev) STUB("0QrO6Gq0V4M", sceNpSnsTwitchDialogClose) +STUB( + "0Qvqwe3kBkQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEC1EPS8_) +STUB("0QzUsuQufGI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEC2Ev) +STUB("0R0tdvM7fFs", _ZN3WTF4Lock16unlockFairlySlowEv) +STUB("0R5do2GZ3ps", _ZN3JSC10JSFunctionC2ERNS_2VMEPNS_14JSGlobalObjectEPNS_9StructureE) STUB("0RFK6ZS8I9E", sceIpmiMgrGetIpcBlockerPid) +STUB( + "0RGtfPgW4AU", + _ZN3sce2Np9CppWebApi7Matches2V129RequestPlayerStatisticFactory6createEPNS1_6Common10LibContextEPKcRKNS5_6VectorINS5_12IntrusivePtrINS3_19AdditionalStatisticEEEEEPNSB_INS3_22RequestPlayerStatisticEEE) +STUB( + "0RMIv10qnxM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEC1EPKS8_) +STUB("0RSuGozMl9o", FTA_Support_Format_OpenType_Otf) STUB("0RX-rifku4w", sceMoveGetDeviceId) +STUB("0RY1ClbavWY", WKPreferencesSetCaptureAudioInUIProcessEnabled) STUB("0RdLmAh7WVo", sceAmprMeasureCommandSizePushMarker) +STUB( + "0Rf4OSzwKO4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEC2Ev) +STUB( + "0RgDLYgtWdE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEE11get_deleterEv) +STUB("0Rgpswo+L8Y", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEEneERKS7_) +STUB("0RqgTKckJBs", _ZN9Inspector14ConsoleMessagenwEm10NotNullTagPv) +STUB("0RrntW74-lw", _ZN3sce7Toolkit2NP2V24Core15MemoryPoolStatsC1Ev) +STUB("0RwUYdXdtu8", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification15BlocklistUpdateEEC2Ev) +STUB( + "0RzlQktOYNo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEeqERKS9_) +STUB( + "0S0uQtHzfB0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEEC2EPS8_PNS2_10LibContextE) +STUB("0S1VPE7USx4", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_14TrophyGameInfoEED1Ev) +STUB("0S2DkqWaato", mono_aot_Sce_CloudClient_App_Platformplt) +STUB( + "0S3jlbeZz4s", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemProperties56setpatchGameSessionsSessionIdMembersAccountIdRequestBodyENS1_6Common12IntrusivePtrINS3_53PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEE) STUB("0S9tTH0uqTU", sceHttpSetConnectTimeOut) +STUB("0SCgHxYfY9o", _ZN3sce2np13NpAccessToken14GetAccessTokenEPNS0_6HandleERKNS0_10NpOnlineIdEPS1_) STUB("0SCgzfVQHpo", sceCompanionHttpdStop) +STUB("0SExVGKxVkE", mono_btls_x509_get_raw_data) +STUB("0SFUOd2K6n0", FT_List_Finalize) STUB("0SL55KrcbfY", sceValidationGpuRegisterMemoryCheckCallback) +STUB( + "0SM8FzGFBIs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEC1ERS8_) +STUB( + "0SPqJBFbt5k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE7popBackEv) +STUB( + "0STy5OgscTw", + _ZN7WebCore13JSDOMRectList25getOwnPropertySlotByIndexEPN3JSC8JSObjectEPNS1_14JSGlobalObjectEjRNS1_12PropertySlotE) +STUB( + "0SWQAStLgEI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE7popBackEv) +STUB("0SYMhAX9h6k", _ZN7WebCore28InspectorFrontendClientLocal21setDockingUnavailableEb) +STUB( + "0SanBgipsB4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEptEv) +STUB("0SavIu0xYW4", mono_aot_ClassLibrary1unbox_trampoline_addresses) +STUB("0SfP+1+7aB4", _ZN3sce2np13NpAccessTokenD1Ev) +STUB( + "0Si7P29+x2g", + _ZN3JSC7JSProxy3putEPNS_6JSCellEPNS_9ExecStateENS_12PropertyNameENS_7JSValueERNS_15PutPropertySlotE) +STUB("0Snx5Y8fnAk", WKPageIsPinnedToBottomSide) +STUB( + "0SoDdOYaQE4", + _ZN3JSC10JSFunction6createERNS_2VMEPNS_14JSGlobalObjectEiRKN3WTF6StringENS_14NativeFunctionENS_9IntrinsicES9_PKNS_6DOMJIT9SignatureE) STUB("0Sp9vJcB1-w", sceNpProfileDialogTerminate) +STUB("0SriRKpBF04", mono_debug_open_mono_symbols) STUB("0Swj6A9svdo", sceDebugDestroyScratchExecutableArea) STUB("0SySxcuVNG0", sceCompanionHttpdGetUserId) +STUB("0T+CikgNoQA", GCC_except_table93) +STUB( + "0T+DRYT2aqA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEE3getEv) +STUB( + "0T2uS+2pycg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEED2Ev) +STUB("0T5qwn2AA2g", mono_aot_Sce_Vsh_RemotePlayunbox_trampolines_end) +STUB("0T5vey8T4UU", monoeg_g_strerror) +STUB("0TADyPWrobI", _ZNSt7_MpunctIwED1Ev) STUB("0TDfP7R4fiQ", sceSystemServiceGetDbgExecutablePath) +STUB("0TEQ2c-FFK8", _ZN7WebCore26ISOProtectionSchemeInfoBoxD2Ev) +STUB("0TEnTEgQABA", _ZN7WebCore37CrossOriginAccessControlCheckDisabler9singletonEv) STUB("0TMX8PPpS0I", sceCesJiscsToUcs) +STUB( + "0TOKw5w0KB8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEeqERKS9_) +STUB("0TQPseNxozE", Java_java_io_UnixFileSystem_deleteOnExit) +STUB("0TaUGh70drs", u_strncasecmp_67) +STUB("0Te5we5rjpc", _ZN3sce7Toolkit2NP2V29Challenge18ChallengeThumbnail5resetEv) +STUB("0TekIvXVYN0", JVM_SetPrimitiveFieldValues) STUB("0TfjSulCV2A", sceAudioOutExClose) +STUB("0TklQzcs5vY", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_13NetStateBasicEE17getAdditionalInfoEv) +STUB( + "0TnDTgRThCY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE3endEv) +STUB( + "0TnRrR7a5Fc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE8capacityEv) +STUB( + "0Tu5kNP6i9k", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeaders15hasCacheControlEv) +STUB( + "0Tx+4VCF5BI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEC1EPKS8_) +STUB("0TyJ6AxRs5w", glCreateShader) STUB("0TyVk4MSLt0", pthread_cond_init) +STUB("0U0WvSsfHV0", _ZN12Mp4Retriever9ExtractI4EPh) +STUB( + "0U7MmSFmRHs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEC2EPKS8_) +STUB( + "0U8Hf9U2ivk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE10setContextEPNS2_10LibContextE) +STUB( + "0UAMZxv9Dj4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEEC2ERSB_) +STUB( + "0UDmAW3Dg3E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEEdeEv) +STUB("0UF1X3lXjxs", mono_btls_bio_hexdump) +STUB( + "0UIKhw7w5aM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("0UJ6QCPKLD0", + _ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForRead10getPlayersEv) STUB("0UMeWRGnZKA", sceNpMatching2RegisterSignalingCallback) +STUB("0UNp2Ey5bw4", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadDataD1Ev) +STUB("0UPU3kvxWb0", _ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1ERKSt8_Locinfom) +STUB( + "0US1L3-PCi4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEED1Ev) +STUB( + "0UV9Kg--Lfg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEED2Ev) +STUB( + "0UXr9btnRjI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEeqERKS9_) +STUB("0UY8++vfejs", _ZN3JSC10JSFunction6s_infoE) +STUB("0UafewjjWpM", hb_buffer_get_direction) +STUB("0UcnBev8dqc", _ZN7WebCore8Document16scrollingElementEv) +STUB( + "0UeaNsmDOc0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEppEi) +STUB("0Uek9fMv9z4", sqlite3_result_error) +STUB("0UgJRpFQKco", ucnv_fromAlgorithmic) +STUB("0Uk-3H5HdEo", + _ZNK9Inspector15RemoteInspector26listingForAutomationTargetERKNS_22RemoteAutomationTargetE) +STUB("0Ukd6tvlVhs", _ZN9Inspector28InspectorScriptProfilerAgentD2Ev) +STUB("0UnkRgGz3L0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEC2ERKS7_) +STUB( + "0Ur8zupZRB0", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearch14setsearchIndexEPKc) +STUB("0Uu1kdKRI-w", _ZNK3sce16CommonDialogUtil6Server10isCloseReqEv) STUB("0UvTFeomAUM", sceNpSignalingActivateConnection) +STUB( + "0V+emDz8mt0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEC1EPS6_PNS2_10LibContextE) +STUB("0V6XABQoR9o", mono_aot_Sce_Vsh_MarlinDownloaderWrapperjit_code_start) STUB("0VFHv-Fa4w8", sceSaveDataSetAutoUploadSetting) +STUB("0VPnpE+afyg", mono_string_to_utf16) +STUB( + "0VXlUv5aIQs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEcvbEv) +STUB("0VZr87lecns", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE21intrusive_ptr_add_refEPS7_) +STUB( + "0Vf1KpXfzqI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE4termEv) +STUB("0VfDaogUQB8", _ZNK3sce2Np9CppWebApi7Matches2V14Task15getAvailabilityEv) +STUB("0Vm5ZtZD8Zw", _ZN7WebCore18ImageBufferBackend20calculateBackendSizeERKNS_9FloatSizeEf) +STUB("0Vok8D+vTQE", _ZN3sce7Toolkit2NP2V212ActivityFeed7Caption15CAPTION_MAX_LENE) +STUB( + "0VrFBjArHts", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEC2EPS8_) +STUB("0VrLxv9BUm0", Java_java_lang_reflect_Array_getByte) +STUB("0W-mECnGicE", _ZN3WTF14FileSystemImpl15getFileDeviceIdERKNS_7CStringE) +STUB( + "0W21-eUYaZQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE21intrusive_ptr_add_refEPS9_) +STUB("0W5pY+f2e8M", _ZN7WebCore16SQLiteFileSystem28deleteEmptyDatabaseDirectoryERKN3WTF6StringE) +STUB( + "0W7vOoBOjek", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEEdeEv) +STUB("0W9b8BHz5k8", _ZN7WebCore18TextureMapperLayer14syncAnimationsEN3WTF13MonotonicTimeE) +STUB( + "0WA+8T2tmGM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEaSERKS7_) +STUB("0WAihgUTfuE", _ULx86_64_Iput_dynamic_unwind_info) +STUB( + "0WB5HzKUNfk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEE5resetEPS8_) +STUB("0WBR0vLv-e8", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container19totalItemCountIsSetEv) +STUB( + "0WFbrRUy+N4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEppEv) +STUB("0WGMORZfHcA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEC2ERS7_) +STUB("0WL2ci7tQyU", + _ZN3sce7Toolkit2NP9Messaging9Interface17sendInGameMessageEPKNS1_24SendInGameMessageRequestE) +STUB("0WMHDb5Dt94", modf) +STUB("0WPKM5DDXDg", _ZN3sce2Np9CppWebApi14SessionManager2V110FromMember8fromJsonERKNS_4Json5ValueE) +STUB("0WQ2z+SqH64", _ZN3JSC6RegExp6createERNS_2VMERKN3WTF6StringENS_11RegExpFlagsE) +STUB( + "0WUZMqYdJqY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEC2EPS8_) STUB("0WVJD1NnpIU", sceAvSettingNotifyDeviceEvent) +STUB( + "0WWSlPhpQqw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEaSERKS9_) +STUB( + "0WWkvUgnN90", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEED1Ev) +STUB("0WY1SH7eoIs", _ZNSt6_Winit9_Init_cntE) +STUB( + "0WeEAqISGbU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEptEv) +STUB( + "0WeVcylsG0o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "0WmorB1nZZM", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging24GameDataMessageThumbnailEE12deepCopyFromERS7_) +STUB("0WoV6dyypH8", u_getIntPropertyValue_59) +STUB("0Wxgp8aaw7w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEE7add_refEv) +STUB( + "0WydpjZKRN4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEE3getEv) +STUB("0X2LDl5vE-M", _ZN3sce7Toolkit2NP2V27Ranking17SetGameDataResult5resetEv) +STUB( + "0X3a7GqVYZ4", + _ZNK7WebCore10PluginData32supportsWebVisibleMimeTypeForURLERKN3WTF6StringENS0_18AllowedPluginTypesERKNS1_3URLE) +STUB("0X5DnA3olsk", EVP_aes_192_cbc) +STUB("0X7Pah5xV04", WKPageCopyTitle) +STUB( + "0X7eUMpd82A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEEC1ERSA_) +STUB( + "0X7kH50AdBo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEC1Ev) +STUB( + "0X8L+qJX3sQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEC2Ev) +STUB( + "0XFQSPtXxwQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEE7add_refEv) +STUB( + "0XG-BFv4UDw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEE7add_refEv) +STUB("0XH9Pu6dPdk", _ZN7bmalloc3api16freeLargeVirtualEPvmNS_8HeapKindE) +STUB("0XLOuzkdWNw", rgctx_fetch_trampoline_mrgctx_63_p) +STUB( + "0XPNULS2lJo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "0XTf8rWP74A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "0XTzODdiJmQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEEaSERKSA_) +STUB("0XU8WtYDwAo", _ZN15AbstractStorage17DailymotionFolderD1Ev) +STUB("0XZ7kiwy0TA", _ZNK3JSC12DateInstance29calculateGregorianDateTimeUTCEPNS_9ExecStateE) +STUB( + "0XZBTEJHa-o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEC1Ev) +STUB("0Xb1eUs-YMc", _ZTVN9Inspector18InspectorHeapAgentE) +STUB("0XcSBCn-4So", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setInteger1ERKi) STUB("0XcZknp7-Wc", sceSslGetSslError) +STUB("0Xh-8oe6PHM", utext_equals_67) +STUB("0XkvVjvSxFw", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE3endEv) STUB("0Xo9g4goDXU", sceAmprAmmCommandBufferRemapIntoPrt) +STUB( + "0Xq5NU-K0wc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE3endEv) STUB("0Xsfib8bq3M", sceUserServiceSetNpNpId) +STUB( + "0XtwkMDw0bY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE5beginEv) +STUB("0Xut9CTEffw", mono_btls_ssl_new) +STUB( + "0XxK6EwGruA", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi47ParameterWithBinaryRequestBodyToRecordLargeDataD2Ev) +STUB("0Xxtiar8Ceg", _ZTIPKn) +STUB("0XzKaUQ7CAc", _ZN3JSC7Symbols23syncIteratorPrivateNameE) +STUB("0Y+FQQF5Pvo", rgctx_fetch_trampoline_rgctx_92) +STUB( + "0Y-NjHi1T80", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEEaSERSA_) +STUB("0Y-ebXGv50I", _ZN3JSC2VM18generatorSpaceSlowEv) +STUB("0Y9Lq+wy8RQ", bemp2sys_psdecoder_create) +STUB( + "0YA6C0Xbtzk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEplEm) +STUB("0YAqVukLe-U", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_25ReceivedInGameDataMessageEED1Ev) +STUB( + "0YED2+p7aiI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB("0YEXGwJHdY4", png_set_swap) +STUB( + "0YIBcyMqA9I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE5emptyEv) STUB("0YMD9fqNphk", sceDataTransferGetPrepareFgTransferProgress) +STUB("0YSKqdQ4OSw", Java_java_lang_StrictMath_floor) +STUB("0YSSzw0gloY", _ZNK3sce2Np9CppWebApi13InGameCatalog2V515ContainerRating10scoreIsSetEv) +STUB( + "0YYJ1VuhLHk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEED2Ev) STUB("0YZj+ZnhLy4", sceUpsrvUpdateDoExternalDeviceUpdate) +STUB( + "0YcLHtWcZTA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("0Ydc18+XsSw", + _ZN15AbstractStorage14StorageManager18UnregisterListenerEPKNS_20StorageEventListenerE) STUB("0Ye4aR9kvuA", sceUserServiceGetVolumeForOtherDevices) +STUB("0YfwqGopI4c", _ZNK3WTF8JSONImpl9ArrayBase6lengthEv) STUB("0Ygl1mtSLhg", sceApplicationExitSpawn2) +STUB( + "0Yh7pjybiUs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEEC2Ev) +STUB("0YlFy8XryFU", _ZN3sce7Toolkit2NP2V210Tournament5MatchC2ERKS4_) STUB("0YmI09jOP-g", sceSystemServiceGetAppTitleId) STUB("0YmjfSJ8X98", sceSysCoreReceiveEvent) +STUB( + "0YoAC6y8jXs", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectatoraSERS5_) +STUB("0YqYAoO-+Uo", _ZNK3sce4Json5Value8getValueEm) +STUB("0Ys3rv0tw7Y", _ZTSSt13basic_istreamIwSt11char_traitsIwEE) +STUB("0YzoonqmUcc", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_24RegisterGameDataResponseEE3getEv) STUB("0Z-Pm5rZJOI", sceRemoteplayServerUnLock) +STUB( + "0Z-zQfu2CZo", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyC1EPNS1_6Common10LibContextE) +STUB("0Z7y+5ad9J0", mono_aot_System_Xml_Serializationplt_end) +STUB("0ZA6fQgGaZ0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE7reserveEi) +STUB("0ZAyqREPVwk", + _ZN3sce7Toolkit2NP2V212ActivityFeed7Request14PostPlayedWith19DESCRIPTION_MAX_LENE) +STUB( + "0ZBL4ZmrD9g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEmmEi) +STUB("0ZFN-qn5k3A", _ZN3sce7Toolkit2NP21ReceiveMessageRequestC2Ev) STUB("0ZOG0jc9nRg", sceAgcAcbRewindGetSize) +STUB( + "0ZS1wR9V5NA", + _ZN7WebCore21NetworkStorageSession27removeStorageAccessForFrameEN3WTF16ObjectIdentifierINS_19FrameIdentifierTypeEEENS2_INS_18PageIdentifierTypeEEE) +STUB("0ZVukIY8H1I", _ZNSt9_FacetptrISt8messagesIcEE6_PsaveE) +STUB("0ZYTObPP57I", usearch_setAttribute_59) +STUB("0Za34L-PPDg", _ZN3JSC8Debugger17resolveBreakpointERNS_10BreakpointEPNS_14SourceProviderE) +STUB( + "0ZbEAPArvRQ", + _ZN3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectatorC2EPNS1_6Common10LibContextE) +STUB("0ZdjsAWtbG8", _ZNSt9_Num_base9is_iec559E) +STUB("0ZiQwP6UAfU", _ZN7WebCore9FrameView18enableAutoSizeModeEbRKNS_7IntSizeES3_) +STUB("0Zix0+Zcx2k", _ZN3WTF8JSONImpl9ArrayBaseD2Ev) +STUB( + "0ZjpgYlILtk", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersC2ERS5_) +STUB( + "0ZkGMRN05Xc", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi28ParameterToDeleteGameSession12getsessionIdEv) +STUB("0Zp+hEFW1R8", mono_gc_wbarrier_generic_store) +STUB("0a-wfUFlLzU", _ZNK7WebCore13HitTestResult19mediaIsInFullscreenEv) +STUB( + "0a0eikb4-aI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEppEi) STUB("0a2TBNfE3BU", sceHttpGetStatusCode) +STUB( + "0a2uuV2YO1g", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEptEv) +STUB("0a42xZWTRqA", _ZN3sce3Xml11Initializer10initializeEPKNS0_13InitParameterE) +STUB("0a51FbrbtpY", rgctx_fetch_trampoline_rgctx_30_p) +STUB("0aBGnxaIO6w", _ZN3sce7Toolkit2NP2V29Messaging12Notification18NewGameDataMessageC1ERKS5_) +STUB("0aFOyZaUPU0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEEixEm) +STUB("0aIgOsLHb10", _ZN3sce7Toolkit2NP2V28Matching7Request11SetRoomInfo23LOWEST_DISPLAY_PRIORITYE) STUB("0aJMoN6KBpg", sceSpPthreadMutexattrSettype) +STUB("0aOnSxayzFU", _ZN3sce7Toolkit2NP2V24Core11ServerErrorD2Ev) +STUB("0aPYh8P2+Ps", nsnp_DecryptWithOffset) STUB("0aR2aWmQal4", sceNpCommerceDialogInitialize) +STUB( + "0aTJDnRKNg0", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot7getsortEv) +STUB( + "0aU8KY4nxUQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEptEv) +STUB( + "0acRxatMrBk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("0ae0oDSPoAg", _ZN7WebCore15GraphicsContext22applyDeviceScaleFactorEf) STUB("0aziJjRZxqQ", scePadDisableVibration) STUB("0bBxiebZeYM", scePerfPmcL2iSetCounter) STUB("0bCpZmASTm4", sceNpAsmGenerateNpTitleToken2) +STUB("0bDqn4vgJuM", _ZN3sce7Toolkit2NP2V26Trophy7Request13SetScreenshotD1Ev) +STUB( + "0bFGPGLzFbA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEC2Ev) +STUB("0bGGr4zLE3w", _ZTv0_n24_NSiD0Ev) +STUB("0bI-VPZXmzg", _ZN3JSC8JSObject12setPrototypeEPS0_PNS_14JSGlobalObjectENS_7JSValueEb) +STUB( + "0bJ1bOUb6ZM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("0bKu3ZjjnMY", _ZN7WebCore11MediaPlayer15maxTimeSeekableEv) +STUB( + "0bMTrvg7weU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEptEv) +STUB("0bW7jRaUqq8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEE3getEv) +STUB( + "0bWbSSJ5MAE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEC1EPKS8_) +STUB( + "0bXR0WSy2Fo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEC2Ev) +STUB( + "0bYI5NuikPk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "0bi3+aepMf4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE4termEv) +STUB( + "0bjxRIlpRqE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE8capacityEv) +STUB("0bkH4IQFtTc", WKPreferencesSetSimpleLineLayoutDebugBordersEnabled) +STUB("0blWarRALu4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEptEv) +STUB( + "0blr50NlfyU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEC2ERKS7_) +STUB( + "0blzi+f5GI0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEmmEi) +STUB( + "0bptpMme1yc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "0bq1LixdHAY", + _ZN9Inspector25NetworkFrontendDispatcher18requestInterceptedERKN3WTF6StringENS1_6RefPtrINS_8Protocol7Network7RequestENS1_13DumbPtrTraitsIS8_EEEE) STUB("0btIPD5hg5A", sceCameraGetAttribute) +STUB("0bu7EeAq79Y", rgctx_fetch_trampoline_rgctx_46_p) +STUB("0c-07mr9xP8", _ZN3JSC22EdenGCActivityCallback12doCollectionERNS_2VME) STUB("0c-HdcCIu3k", sceCesRefersUcsProfileIso8859_9) +STUB("0c1A7bKZtI0", g_ascii_xdigit_value) +STUB("0c6b+XCqt9o", umutablecptrie_getRange) STUB("0c7HbXRKUt4", sceNpRegisterStateCallbackForToolkit) STUB("0cBgduPRR+M", sceNetCtlGetResult) +STUB("0cEED80Q7cU", _ZNK7WebCore13HitTestResult15absoluteLinkURLEv) +STUB("0cGA41wCtko", mono_vm_bridge_set_mono_funcs) +STUB("0cGFf+d24hY", _ZN3JSC7Symbols23requestFetchPrivateNameE) +STUB( + "0cHb7R21ttg", + _ZN3sce2Np9CppWebApi7Matches2V129RequestMatchStatisticsFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_22RequestMatchStatisticsEEE) +STUB("0cIPqIrPhvg", _ZN3JSC8JSObject26setIndexQuicklyToUndecidedERNS_2VMEjNS_7JSValueE) +STUB("0cKbHa0gdeg", _ZN7WebCore15localizedStringEPKc) +STUB("0cLFYdr1AGc", _ZTIPKm) STUB("0cLPZO1Voe8", sceNpManagerIntLoginRevalidatePassword) +STUB("0cMBkwLzIWA", delegate_virtual_invoke_imt_16) +STUB("0cPDxR6zOIY", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getInteger5Ev) +STUB("0cPhfQ0yQfo", WKPreferencesGetHiddenPageDOMTimerThrottlingAutoIncreases) STUB("0cQDAbkOt2A", sceHmdInternalAnotherScreenOpen) +STUB("0cS888QfmWg", _ZN7WebCore26UserTypingGestureIndicatorD2Ev) +STUB("0cYEtBUJ5zQ", u_charType) +STUB("0cZgzwGgI7E", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed13UsersWhoLikedEE5resetEv) +STUB("0cZxCTXvyPs", eglSurfaceAttrib) +STUB( + "0ceWGxcwcz4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEmmEv) +STUB("0cfc2o5UspI", max_lock) +STUB("0cfweK670p4", + _ZN7WebCore12TextIterator29getLocationAndLengthFromRangeEPNS_4NodeEPKNS_5RangeERmS6_) +STUB("0chnVPTyYeA", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEEaSERKS6_) +STUB( + "0cihF8SCF8U", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEptEv) STUB("0cl8SuwosPQ", sceSystemServiceAddLocalProcess) STUB("0cn2c-bk8wA", sceNpAsmClientAbortRequest) +STUB("0cqPK8XF9i4", _ZN12video_parser5vpcom14DirectoryCloseE) +STUB("0csAf8o+EwQ", _ZNK7WebCore20HTMLTableCellElement7colSpanEv) +STUB("0cvrKk89hOE", __sanitizer_unaligned_store64) +STUB( + "0cwjtwaMK1g", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB("0cyWAyRUWvE", _Z26scePlayGoDevAddMappingInfoPKcmt) +STUB( + "0d+KWEyu588", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody23setLocalizedSessionNameERKNS1_6Common12IntrusivePtrINS3_15LocalizedStringEEE) +STUB( + "0d2-mK2F0T8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("0d2tW0028wg", mono_aot_Sce_Vsh_DbRecoveryUtilityWrappermethod_addresses) +STUB("0d7IkUtQmyw", __asan_unpoison_intra_object_redzone) +STUB("0d9dtBvFgxg", isobmf_box_getchildbox) +STUB("0d9jr6TzI-o", + _ZNK7WebCore22EmptyFrameLoaderClient28blockedByContentBlockerErrorERKNS_15ResourceRequestE) +STUB("0dDvXUFUCQ8", fuse_session_data) +STUB("0dERNdgNcq8", mono_metadata_free_inflated_signature) +STUB( + "0dI45gx1gM0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEE11get_deleterEv) +STUB( + "0dOfrES2IUs", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getInteger2Ev) +STUB("0dOpT2MQBIk", mono_debug_add_method) +STUB("0dQrYWd7g94", ilogbf) +STUB( + "0dSVerhAqlQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEED1Ev) +STUB("0dTfcPHH3dg", _ZN3WTF11ThreadGroup16addCurrentThreadEv) +STUB("0dXnXjcRUik", Java_java_util_zip_CRC32_updateBytes) +STUB("0dYM623+hwI", _ZN7WebCore6Region9intersectERKS0_) +STUB( + "0dh9l8wkdW4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB( + "0dhz2irelmE", + _ZN3sce7Toolkit2NP11UserProfile9Interface12getAvatarUrlEPNS1_9Utilities6FutureISbIcSt11char_traitsIcENS1_15AppSTLAllocatorIcEEEEEb) +STUB( + "0dii1CKpr6M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "0doS6T9dhIk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEC2EPKS8_) +STUB("0dr5YpkJ24M", _ZN3JSC7Symbols15flatPrivateNameE) +STUB("0dtmnN3rMSM", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V16StatusEEC1EPS6_) +STUB( + "0duY-QDYZx8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "0dusR-I83q8", + _ZN3sce2Np9CppWebApi14SessionManager2V162PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_30ResponsePlayerSessionSpectatorEEEEEPNS9_INS3_55PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEE) STUB("0dy4JtMUcMQ", _sceFiberGetThreadFramePointerAddress) STUB("0e0wzFADy0I", sceUserServiceSetGlsCameraTransparency) +STUB( + "0e6zSEbS2rI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEE11release_refEv) +STUB( + "0e8iHtmXs+8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE7reserveEi) +STUB( + "0eDmLl0ZGHw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEC2EPS8_) STUB("0eFLVCfWVds", sceNgs2RackQueryBufferSize) +STUB("0eL45bDUw6g", utext_freeze_67) +STUB("0eLuCRZ97IU", mono_aot_ReactNative_Debug_DevSupportjit_code_start) +STUB("0eOxOwsEJYE", _ZN3sce7Toolkit2NP2V210Tournament12MatchDetailsC1ERKS4_) +STUB("0ePDQ-+e+og", _ZNK7WebCore11JSDOMWindow5eventERN3JSC9ExecStateE) +STUB("0eQ71z-VbfM", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSessionC2Ev) +STUB("0eTxi6FDh7g", _ZN3sce7Toolkit2NP2V23TUS13TusDataBufferD1Ev) +STUB("0eUrW9JAxM0", _ZN3sce4Json5ValueD2Ev) +STUB("0eXyXtSzyK4", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V112OnlineStatusEEmmEv) STUB("0eZpG16I-Ps", sceDbgVideoOutAddProcessAttribute) +STUB("0earDv9xPN8", JSValueMakeString) +STUB( + "0efDSqjftPA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEE3getEv) STUB("0egweZdzJ4s", sceDataTransferTargetAbortGetDeviceInfo) +STUB("0eoyU-FoNyk", __fixsfdi) +STUB( + "0eqHTH8CkhI", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEiRNS2_10LibContextEPT_m) +STUB("0erpm7bJt9s", ufmtval_nextPosition_67) STUB("0ers1N4C9CY", sceKernelAprSubmitCommandBufferAndGetResult_TEST) +STUB("0eunykJAhAE", getProtocolInfoListHead) +STUB( + "0eyZBLHiB1w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEEaSERKSA_) +STUB( + "0ezCFda6Zc0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEaSERS7_) +STUB( + "0ezRqEASug4", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEEC1Ev) +STUB("0ezpnHVyg+s", WKPreferencesGetImageControlsEnabled) +STUB("0f06o3-XgV0", _ZN3WTF7RunLoop14initializeMainEv) +STUB("0f2FvtFtrcw", _ZN7WebCore8SVGNames14accumulateAttrE) +STUB("0f3664ug7DY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEE3getEv) +STUB("0f3ylOQJwqE", _ZN3sce2np6ThreadC2Ev) +STUB( + "0f5+eBcgB14", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "0fADx629t1U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "0fE5dHDT0TA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "0fFKipBCBNY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "0fHBm+BJ3xQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEEptEv) +STUB("0fHEWfGPO8c", generic_trampoline_jump) +STUB( + "0fPn7oELg8E", + _ZN3sce7Toolkit2NP2V28Presence14deletePresenceERKNS3_7Request14DeletePresenceEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB( + "0fQTTzq9gA8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB( + "0fQYuuSuLPM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEC2EPS8_) +STUB( + "0fRFrJJRgB8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEEdeEv) +STUB( + "0fSgvHm68KE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEED1Ev) +STUB("0fVIASifMP4", _ZThn112_NK7WebCore16HTMLInputElement17validationMessageEv) STUB("0fWWK5uG9rQ", sceAgcQueueEndOfPipeActionPatchAddress) +STUB( + "0fXhlgvwuEs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEC1Ev) +STUB("0fbjOvIKA94", mono_aot_Sce_Vsh_SyscallWrapperplt_end) +STUB("0fjLnEtRoq0", _ZN7WebCore9HTMLNames10noembedTagE) +STUB("0fkFA3za2N8", _ZNSt7codecvtIwc9_MbstatetED1Ev) +STUB("0fm7zMyq8hc", _ZN3JSC7Symbols22ModuleReadyPrivateNameE) +STUB("0frSZotejIU", _ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamRankResultC1Ev) +STUB( + "0fuMwGlmOgU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEppEi) +STUB("0fvdBxgNxSQ", fuse_reply_ioctl_iov) +STUB("0fwoTW7gqfM", _ZN3sce2np4PathD0Ev) +STUB( + "0fy7OoflkxE", + _ZN3sce2Np9CppWebApi14SessionManager2V125RequestGameSessionFactory6createEPNS1_6Common10LibContextEiNS5_12IntrusivePtrINS3_30RequestGameSessionMemberPlayerEEERKNS5_6VectorINS5_6StringEEEPNS8_INS3_18RequestGameSessionEEE) STUB("0fyTCPOHGX4", scePlayerSelectionDialogClose) +STUB("0g+jtYCdtQw", _ZN9Inspector22RemoteAutomationTargetC2ERKS0_) +STUB("0g+zCGZ7dgQ", _ZTIPKv) STUB("0g0+Oq9xcI0", sceGameUpdateGetAddcontLatestVersion) STUB("0g0qIuPN3ZQ", sceNetConfigAddArpWithInterface) +STUB("0g450D6uUow", _ZN3sce2Np9CppWebApi14ConnectAccount2V212PartnerTokenD1Ev) STUB("0g6-uh4JTP8", sceShellCoreUtilExitMiniApp) +STUB("0g66of16pvY", _ZN9Inspector15ScriptCallStack6appendERKNS_15ScriptCallFrameE) +STUB("0gCVx65qZx8", + _ZN8meta_gen11MsvPromoter29convVP_LANGToISO639_2_TStringEN12video_parser9VP_LANG_eE) +STUB("0gETKZk91ig", WKBundleHitTestResultCopyAbsoluteLinkURL) +STUB("0gGAZ8UUhFs", get_dyn_info_list_addr) +STUB("0gHxaT0Icu4", _ZN7WebCore24CoordinatedGraphicsLayer28didChangeBackdropFiltersRectEv) +STUB("0gLVYXKqJk4", _ZN3JSC7Symbols19toLengthPrivateNameE) +STUB("0gMTyY1aBcg", + _ZN7WebCore19JSHTMLSelectElement15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("0gQImk3C0sA", + _ZN3JSC16callCustomSetterEPNS_14JSGlobalObjectENS_7JSValueEbPNS_8JSObjectES2_S2_) +STUB("0gQWp8DXEfw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE5beginEv) STUB("0gRbLi4WKVg", sceHttpCacheSystemSendStatistics) +STUB("0gS2-9PEbBM", _Ux86_64_regname) +STUB( + "0gXEfysz4-g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE3endEv) +STUB( + "0gXNY-kZTgc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEC2EPS6_PFvS8_EPNS2_10LibContextE) STUB("0gYjPTR-6cY", sceHttpCreateTemplate) +STUB("0gZNC228lVY", mono_aot_System_ServiceModelunbox_trampolines) +STUB("0gZXDIwxfD0", + _ZN3sce7Toolkit2NP2V28Commerce7Request22GetServiceEntitlements17DEFAULT_PAGE_SIZEE) +STUB( + "0gaczn2VNuk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) STUB("0gdlCVNNHCI", _sceNpAllocatorExConvertAllocator) +STUB("0ggQR1NjDCY", _ZNK3WTF8JSONImpl5Value8asStringERNS_6StringE) +STUB("0ghbVoevlV4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116JoinableUserTypeEEC1Ev) +STUB( + "0gk+rG+cQjo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEEC1Ev) STUB("0gkGdPk8dXw", sceKernelIccReadPowerBootMessage) +STUB( + "0gnCHiSpDUs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("0gv-YY1PXjs", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIjEC2EPj) +STUB("0gzImcPIayI", mono_aot_System_IO_Compression_FileSystemunbox_trampolines_end) +STUB("0gzkubHssqM", mono_aot_Sce_Vsh_Orbis_CdlgServerNpCommercejit_got) +STUB( + "0h1aPVoEkug", + _ZN3sce7Toolkit2NP2V29Messaging27getReceivedGameDataMessagesERKNS3_7Request27GetReceivedGameDataMessagesEPNS2_4Core8ResponseINS3_16GameDataMessagesEEE) +STUB("0hA35iD1YM8", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setBoolean4ERKb) +STUB("0hA8gsjvHqo", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError9getReasonEv) +STUB("0hC6Uj6W6wU", + _ZN7WebCore22CSSAnimationController21pauseTransitionAtTimeERNS_7ElementERKN3WTF6StringEd) +STUB( + "0hCG9AwnrNU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB("0hM0IsN0uGo", _ZN7WebCore31SimplifiedBackwardsTextIteratorC2ERKNS_11SimpleRangeE) +STUB("0hSd3sAYB14", JVM_IsConstructorIx) STUB("0hVwNAR5hz8", sceAvSettingSetAudioOutModeInvalid) +STUB("0hWlGQJhwz8", _ZNK3sce2Np9CppWebApi7Matches2V118CreateMatchRequest9getZoneIdEv) +STUB("0hfL10eI3cE", jpeg_destroy_compress) +STUB( + "0hidak6-XOo", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("0hlfW1O4Aa4", localeconv) STUB("0hr-w30SjiI", sceFontRenderSurfaceSetStyleFrame) +STUB( + "0hugZnFh9Ds", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEE11release_refEv) +STUB( + "0hzvdVO+KGY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEmmEi) +STUB("0i331fsne3g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEptEv) +STUB("0i8EaWOLjcY", curl_easy_recv) STUB("0i8Lrllxwow", sceGameLiveStreamingStopDebugBroadcast) +STUB("0i9s74BWrqQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEEneERKS7_) +STUB( + "0iAzvJ044Xo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEC2EPS8_) +STUB( + "0iC8-my5AjQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("0iEGz7pB0ZI", WKPreferencesGetFrameFlatteningEnabled) +STUB( + "0iEKs2dY+ho", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("0iIwX9cW0nc", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku7getTypeEv) STUB("0iJvHDhBxtA", sceTextToSpeechSpeakContinuousImpl) +STUB("0iNT9V3nBiY", _ZN3sce7Toolkit2NP2V27Ranking10UsersRanks8deepCopyERKS4_) +STUB( + "0iOr4PiDz9w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEC2EPNS2_10LibContextE) STUB("0iR9z16pj28", scePerfPmcStartProc) +STUB( + "0iV07dFyyZc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEC1EPKS8_) +STUB("0iYe9MjiM3A", Java_java_awt_GnmGraphics_nativeSetPaintMode) +STUB( + "0iZrU0NIXmg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEE7add_refEv) +STUB( + "0iiei-vva0U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE8capacityEv) STUB("0ikQsDP-+lg", sceGnmSysSubmitCommandBuffersWithPid) +STUB("0il9qdo6fhs", _ZNSt7_MpunctIcEC2EPKcmbb) +STUB( + "0inv8nATMYc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEplEm) +STUB("0iwGE4M4DU8", CERT_isRootCertificate2) +STUB("0ixkCjQDH2I", _ZN3WTF3URL11setPasswordENS_10StringViewE) +STUB( + "0izFxJC0O-c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("0izU71qFT-A", _ZN3sce7Toolkit2NP2V28Commerce7SkuInfoC2Ev) +STUB("0j+UOubWqvU", _ZNK7WebCore5Frame16frameScaleFactorEv) +STUB( + "0j0VGxauPyk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB("0j1jspKbuFk", _ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev) +STUB( + "0j3mzDiWiTI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEC2Ev) +STUB( + "0j5ZZAbckyU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEcvbEv) +STUB( + "0jAr3iCYbKY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEptEv) STUB("0jGJbNTpSV4", sceVideoOutDriverDecrementBufferLabel) +STUB( + "0jGe261VIB0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEE7add_refEv) +STUB("0jIcJu0tb+o", WKGeolocationManagerProviderDidFailToDeterminePosition) +STUB("0jJWa1H9qto", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching6WorldsEE5resetEv) +STUB( + "0jKeIe-OYPE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEC2Ev) +STUB("0jN58mezFe0", ubrk_getRuleStatusVec) +STUB( + "0jPOVqQQx1U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE5emptyEv) +STUB( + "0jSVCkyquW8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEC2ERKS7_) +STUB( + "0jVl8b8h-nQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEE11release_refEv) +STUB("0jXh4mvLVZw", _ZN7WebCore17JSHTMLLinkElement15subspaceForImplERN3JSC2VME) +STUB("0jZegnTVAOk", mono_arch_set_trigger_pages) +STUB( + "0jZpSQGImMU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEC1Ev) +STUB("0jcE0DxcPm0", _ZN3sce7Toolkit2NP15AppSTLAllocatorI16SceNpTusVariableE10deallocateEPS3_m) +STUB("0jei2te6zqo", _ZNK3sce2Np9CppWebApi11UserProfile2V114PersonalDetail15middleNameIsSetEv) +STUB( + "0jg6LSlhz9A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("0jk9oqKd2Gw", _ZN10__cxxabiv123__fundamental_type_infoD2Ev) +STUB("0jlL4fJ6ixA", _ZNK7WebCore15VisiblePosition14characterAfterEv) +STUB( + "0jljIRYDpi4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE3endEv) +STUB("0jpKR6tsSyc", WKRectGetTypeID) +STUB("0js49ke3F3o", Java_java_lang_ClassLoader_00024NativeLibrary_find) +STUB("0jsZGfvAN3g", _ZN7WebCore9DragImageD1Ev) +STUB( + "0juFlJ9R6ss", + _ZN3sce2Np9CppWebApi11UserProfile2V19BlocksApi16getBlockingUsersEiRKNS4_27ParameterToGetBlockingUsersERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_24GetBlockingUsersResponseEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("0jvNVzo1RgY", _ZZSt9MakefacetISt7collateIwESt8_LocinfoERT_T0_E3buf) +STUB("0jx14CPg75E", _ZN3sce7Toolkit2NP2V26Friend7Request19GetFriendsOfFriendsC2Ev) +STUB( + "0jyXo407gmg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEE5resetEPS9_) +STUB( + "0k-NUGilQZM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("0k5TOabiBD0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V120PlayerJoinableStatusEEaSERKS7_) +STUB("0k8PhD26ItI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEED1Ev) +STUB( + "0k8fdhDXBT0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("0k9yhLp+cHE", _ZN7WebCore11DisplayList13SetMiterLimitD0Ev) +STUB( + "0kILXajP0pc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEEdeEv) +STUB("0kJTcu2ueOE", _ZN7WebCorelsERN3WTF10TextStreamERKNS_16FloatRoundedRectE) +STUB( + "0kJb3CklZJk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEplEm) +STUB("0kJbnMr3DyU", + _ZN3sce7Toolkit2NP2V29Messaging12Notification18NewGameDataMessage8deepCopyERKS5_) +STUB("0kKFxdDtyrU", _ZN7CoreIPC15ArgumentEncoder18releaseAttachmentsEv) +STUB( + "0kNpSEblY-s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEE3getEv) +STUB( + "0kO5iDKfovo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEEaSERKS9_) +STUB("0kQCLDuIgig", Java_sun_awt_image_PNGImageDecoder_composeRowInt) +STUB( + "0kUdJisGUA8", + _ZN9Inspector23CanvasBackendDispatcher24setShaderProgramDisabledElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("0kYe0bK58zk", glProgramParameteri) +STUB("0kdUNplmamY", _ZN3WTF8msToDaysEd) STUB("0kgbiCpmb1M", sceMatUninitialize) +STUB("0kguCIP5tfY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEixEm) +STUB( + "0knn6CnVW2E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEC1Ev) +STUB("0kr8s+yacs0", mono_object_castclass_mbyref) +STUB("0krKV0DRrAk", _ZN7WebCore13SleepDisablerC1EPKcN3PAL13SleepDisabler4TypeE) +STUB("0kt8DUiMzLk", WKFrameGetParentFrame) STUB("0ktE1PhzGFU", sceUsbdAllocTransfer) +STUB("0kvhUAsKV+k", _ZNK3sce2Np9CppWebApi13InGameCatalog2V55Error9getReasonEv) STUB("0kywPUxOxgE", sceCesSbcToUcs2) +STUB( + "0l0V4oQeb0M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEEaSERKS9_) +STUB("0l4HIvSeV28", searchCommInfoListByProtocolNumberWithActivate) +STUB( + "0l60XDQoHkk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEaSERKS9_) +STUB( + "0l7dhPdEK1Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEptEv) STUB("0lAFLqZonXI", sceKeyboardDeviceOpen) +STUB("0lBE20Jr0z0", mono_aot_Sce_Vsh_Db_Sharedunbox_trampoline_addresses) +STUB( + "0lCQCvvS1NM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEC1EPS8_) +STUB("0lD2Oypwty8", _ZN7WebCore16MIMETypeRegistry14isTextMIMETypeERKN3WTF6StringE) +STUB("0lDkYS7qJD8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEC2Ev) +STUB("0lGA5lCfyG8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEC2Ev) +STUB( + "0lICmvHYb8I", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("0lJ2j9lHumo", _ZN7WebCore8Document26textManipulationControllerEv) +STUB("0lLK8+kDqmE", _ZN3sce4Json5ValueC1El) +STUB( + "0lPwpDJNox8", + _ZN8meta_gen11MsvPromoter30setKeyValue_TBLV_AudioMimeTypeENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB("0lR2YBKJMIE", _ZNK9Inspector22RemoteAutomationTarget20remoteControlAllowedEv) STUB("0lViPaTB-R8", sceNetBweUnregisterCallbackIpcInt) +STUB( + "0lWcMSGU53Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "0lWfUsWc54A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEppEv) +STUB("0lY3SyL1d2c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEC1Ev) STUB("0lZHbA-HRD0", sceNpServerErrorJsonGetErrorCode) +STUB("0lZViUngUpg", _ZN7WebCore31MediaEngineConfigurationFactory10enableMockEv) +STUB( + "0lZd08YpGoM", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) STUB("0lbbayqDNoE", sceNgs2GeomResetSourceParam) +STUB( + "0lgq0Nb5PZg", + _ZN7WebCore19JSAnimationTimeline6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_17AnimationTimelineENS6_13DumbPtrTraitsIS8_EEEE) +STUB("0lqDXuBdOxs", _ZN7WebCore10TreeWalker8nextNodeEv) +STUB( + "0luNIbUAPsg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEC1Ev) +STUB( + "0lv+ysBnv2g", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) STUB("0lxRS-x+kFI", sceM4aacEncEncodeEx) +STUB( + "0lz+-52BAGY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB("0mSwGG8QhX4", _ZNK7WebCore7Element18afterPseudoElementEv) +STUB( + "0mdP5AyXVD4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEdeEv) +STUB("0mdb9Q8J2hk", + _ZN3sce7Toolkit2NP2V28Matching7getDataERKNS3_7Request7GetDataEPNS2_4Core8ResponseINS3_4DataEEE) +STUB( + "0mdkBoSY90Y", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEdeEv) +STUB("0mgFAAcQ5oc", + _ZN7WebCore11JSDOMWindow15showModalDialogERN3JSC14JSGlobalObjectERNS1_9CallFrameE) +STUB("0mhooUPTcOI", _ZNK7WebCore4Node8containsEPKS0_) +STUB("0mi6NtGz04Y", _ZNSt14numeric_limitsIbE9is_signedE) +STUB( + "0mmuMBLNppc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEEC2Ev) STUB("0moTubWCsTM", sceVdecswQueryComputeMemoryInfo) STUB("0mqlL6YurX0", _sceModuleParam) +STUB( + "0mylfGVkteI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEED1Ev) +STUB( + "0n0M7-HyW4E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("0n26Y1SBD7Y", _ZNK7WebCore13HitTestResult13targetElementEv) +STUB( + "0n2htCYsRX4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEED1Ev) STUB("0nDVqcYECoM", sceNpTusDeleteMultiSlotVariableAsync) +STUB("0nI81nsrl+A", _ZN3JSC12JSLockHolderC1ERNS_2VME) +STUB("0nUMj2vPfzU", _ZN3sce2Np9CppWebApi12Leaderboards2V15Entry12setSmallDataEPKvm) +STUB("0nV21JjYCH8", wcsncpy) +STUB( + "0nYfnKICEsc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEED1Ev) +STUB("0naef748CuM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEEC2EPS6_PNS2_10LibContextE) +STUB( + "0nbvdPdgjQk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEC1EPKS8_) +STUB( + "0ne6UABSIk4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEEC2ERSA_) +STUB("0nfAwy38Dy4", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStats13isInitializedEv) +STUB("0ni-ZSmFOwo", _ZN3sce7Toolkit2NP2V212ActivityFeed5Media11URL_MAX_LENE) +STUB( + "0njudrypKWQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEdeEv) +STUB("0nl2+9rgaic", Java_sun_awt_GnmUtils_copyPlanesBackgroundToPrimary) +STUB( + "0nlzDQqjiDA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("0nmzC8IaJ3s", _ZNK7WebCore17FullscreenManager21isAnimatingFullscreenEv) +STUB("0nqToAGG9tE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEC2ERS7_) +STUB( + "0nsMrt9Z7TY", + _ZN9Inspector22InspectorDebuggerAgent29breakpointActionsFromProtocolERN3WTF6StringERNS1_6RefPtrINS1_8JSONImpl5ArrayENS1_13DumbPtrTraitsIS6_EEEEPNS1_6VectorINS_22ScriptBreakpointActionELm0ENS1_15CrashOnOverflowELm16EEE) +STUB( + "0nw5YTIXiaY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEC1ERKS7_) +STUB( + "0o-Xzq+2lig", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEixEm) +STUB("0o2Vnzv5aUs", mono_aot_Sce_Vsh_VrEnvironmentjit_code_end) STUB("0o3VDdtA6nM", sceAgcDcbSetIndexIndirectArgs) +STUB( + "0oCGU4Ng62A", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEeqERKS9_) +STUB( + "0oFlj9p+7vQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE4sizeEv) +STUB("0oGC9qxxc8g", _ZN3sce2np10JsonObject8SetFieldEPKclPPNS0_10JsonNumberE) +STUB( + "0oIoKcDA0Fw", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE6finishEv) +STUB( + "0oLuG3JxP8Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEED1Ev) +STUB("0oR2Is0DWTQ", _ZN7WebCore6ISOBoxnwEm10NotNullTagPv) +STUB("0oYzitrjux4", _ZN3sce7Toolkit2NP2V23TUS19FriendsDataStatusesD2Ev) +STUB("0oZKK6QmW-k", eglCreateContext) +STUB( + "0oZj2equmu8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE8pushBackERKS8_) +STUB("0odyvYtw5EA", wctrans_tab) STUB("0onIrKx9NIE", sceHttpGetLastErrno) +STUB("0oqSpLTgWQo", WKVibrationSetProvider) +STUB("0os+lhwq2go", _ZN7WebCore6Editor30pasteAsPlainTextBypassingDHTMLEv) STUB("0osoVuiIg38", sceIpmiMgrGetIpcBlockerPidByAppId) +STUB( + "0ourx3DLNi8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE21intrusive_ptr_add_refEPS9_) STUB("0ovCuqnttco", scePlayReadyProfileEnter) +STUB( + "0p45eafTmzo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE5beginEv) +STUB("0pBCM5Bz3+g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEcvbEv) +STUB("0pGgm8EoJQU", _ZN3WTF11Persistence5CoderINS_7CStringEE6decodeERNS0_7DecoderERS2_) +STUB("0pOkbI8mSkU", _ZN3sce7Toolkit2NP2V27Session7Request7GetInfoD2Ev) +STUB( + "0pUdKH2nM2Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEC1ERKS7_) +STUB("0paZQUBr1c4", fuse_opt_match) +STUB("0parhLSAuME", WKIconDatabaseRetainIconForURL) +STUB("0pi0DgXRkEg", ubrk_last_59) +STUB("0pivetF6mSo", mono_arch_get_unbox_trampoline) +STUB( + "0pk0OUiKZ6I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEE11release_refEv) +STUB( + "0pnlM3W2Iyw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE5beginEv) +STUB("0pnqdBg8pdc", il2cpp_field_get_flags) +STUB("0pp8T8yX1BU", _ZNK3JSC4Yarr17RegularExpression7isValidEv) +STUB("0ppk-ExuWJA", WKFramePolicyListenerIgnore) STUB("0ptZiu0jBJs", sceShellCoreUtilShowErrorDialog) +STUB( + "0ptlPN5G-Mc", + _ZN3JSC8JSObject3putEPNS_6JSCellEPNS_9ExecStateENS_12PropertyNameENS_7JSValueERNS_15PutPropertySlotE) +STUB( + "0puvJlPlMo0", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEiRNS2_10LibContextEPT_m) +STUB("0pwb8fOBwpQ", _ZNK3sce2Np9CppWebApi14SessionManager2V110FromMember11getOnlineIdEv) +STUB( + "0pwk0Vi1FLs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEEaSERSA_) +STUB( + "0pzJijLN4Y0", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE11hasResponseEv) +STUB( + "0q3Pf6miAts", + _ZN10Deprecated18ScriptFunctionCallC2ERKNS_12ScriptObjectERKN3WTF6StringEPFN3JSC7JSValueEPNS8_14JSGlobalObjectES9_RKNS8_8CallDataES9_RKNS8_7ArgListERNS4_8NakedPtrINS8_9ExceptionEEEE) +STUB( + "0q45gtJwnOw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEE7add_refEv) +STUB( + "0q5GInIKXTc", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeaders24getXPsnAtomicOperationIdEv) +STUB("0q8I0P9tIl8", + _ZNK3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer10getNatTypeEv) +STUB("0qAqkGzBFMY", _ZN7WebCore19ResourceRequestBase13setIsSameSiteEb) +STUB("0qCrgKq+JTw", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersC1Ev) +STUB( + "0qDdPfWJvYQ", + _ZN3sce2Np9CppWebApi11Matchmaking2V134ListUserTicketsResponseBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_27ListUserTicketsResponseBodyEEE) +STUB( + "0qEU42-GuDk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEppEi) +STUB("0qGI0LUnIL8", _ZN3sce7Toolkit2NP2V28Commerce8ProductsC1Ev) +STUB( + "0qJnAe8DWFc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("0qM4YywWRi8", __sanitizer_get_coverage_guards) +STUB("0qMyjZaf2ew", jit_area) STUB("0qOtCR-ZHck", pthread_attr_getstacksize) +STUB("0qPkXg6hR0M", _ZN7WebCore17FrameLoaderClientdaEPv) +STUB("0qXihH4meFo", _ZN3sce2np9HttpTransC1Ev) +STUB("0qbsT7faz0E", _ZN4IPMI6Server12EventHandlerD1Ev) +STUB("0qcQlD9MKWU", png_set_text) +STUB("0qfrdvzGuSw", FTC_Manager_Reset) +STUB("0qgA9UUOBaM", _ZN7WebCore13HitTestResultaSERKS0_) +STUB( + "0qiAvlI1jyo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEE11release_refEv) +STUB("0qjYM9bp5vs", _ZN3sce2npeqERKNS0_4UserERKi) +STUB( + "0qm3qPFqtKA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("0qmAOS00O2g", _ZN7bmalloc8FreeListD2Ev) +STUB( + "0qr5jdWMC3E", + _ZThn16_N9Inspector21InspectorRuntimeAgent20getCollectionEntriesERN3WTF6StringERKS2_PS4_PKiS8_RNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime15CollectionEntryEEENS1_13DumbPtrTraitsISF_EEEE) +STUB("0qrLVqNUn2Y", _ZTVN3sce2np9JsonArrayE) +STUB( + "0qspaYnzDPo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEptEv) +STUB("0qui1BrbUZk", _ZNSt9basic_iosIwSt11char_traitsIwEE8setstateENSt5_IosbIiE8_IostateEb) +STUB( + "0r59Bcl2uJE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEEC1ERSA_) +STUB("0r6MphedWvo", ucase_addPropertyStarts_67) +STUB("0r8rbw2SFqk", _ZSt17_Future_error_mapi) +STUB("0rE9gw7K-bI", + _ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession18maxSpectatorsIsSetEv) STUB("0rG6xtn7N5Q", sceUsbStorageRegisterCallbackForMapAvailable) +STUB("0rGx-oFMLyk", FT_Stream_ExtractFrame) +STUB("0rH-NteAXpo", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody11unsetOffsetEv) STUB("0rKMjtnMATU", sceVoiceChatRequestLeavePlayerSessionVoiceChatChannel) +STUB("0rKmI1ZbMAc", FT_Glyph_Stroke) +STUB( + "0rL27xs+GzU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEC2Ev) +STUB("0rNsQCxb7Lw", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15StatsC1EPNS1_6Common10LibContextE) +STUB("0rNzyiMSRvI", _ZN3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse19unsetPreviousOffsetEv) +STUB( + "0rPhB3Auqng", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEaSERS7_) STUB("0rSeEhh-HKA", sceVisionManagerSetCallbackForUpdateCalibrateHmdResult) +STUB("0rUX0PANi-o", _ZN3sce7Toolkit2NP19AllocImplementation10deallocateEPvj) +STUB("0rVi1Lt5Ltg", _ZN3sce7Toolkit2NP2V210Tournament18OneVsOneRankResultC2Ev) +STUB("0rfZ5SbLBN4", png_set_longjmp_fn) +STUB("0rj2akkxaO0", _ZN9Inspector17ScriptDebugServer16willRunMicrotaskEv) +STUB( + "0ro1gFmJat8", + _ZN9Inspector22InspectorDebuggerAgent24updatePauseReasonAndDataENS_26DebuggerFrontendDispatcher6ReasonEON3WTF6RefPtrINS3_8JSONImpl6ObjectENS3_13DumbPtrTraitsIS6_EEEE) +STUB("0rqwC4+sgzU", _ZN3sce2np3ipc17ServiceIpmiClient11TermServiceEi) +STUB("0rxKpH+LqNk", _ZN7WebCore7Element10clientLeftEv) +STUB( + "0s5yeA8dR8w", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_13WhoLikedStoryENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB( + "0sHarDG9BY4", + _ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE7_GetcatEPPKNSt6locale5facetEPKS5_) +STUB( + "0sLIVZsY+Qc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "0sQE5M8Zdgo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEED2Ev) +STUB("0sZ-PrsNDLc", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEEC1Ev) STUB("0sesmAYH3Lk", sceNetConfigSetIfFlags) +STUB( + "0shfPEknCDo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "0soNqEI-Ewk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEEC2ERKSA_) +STUB("0soubDsGzXw", _ZN15AbstractStorage14TwitterContent4ReadEPvlPl) +STUB("0sw-S1fR2mk", _ZN3JSC19initializeThreadingEv) +STUB("0swFVOrriBU", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEEmmEi) +STUB("0syNkhJANVw", _ZN3sce2np6ObjectnwEmR14SceNpAllocator) +STUB("0t0-MxQNwK4", raise) +STUB( + "0t3VR9fd9rM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "0t5977rxO-4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEEC1ERSA_) +STUB("0t5T4m4CLuA", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V15ErrorC1EPNS1_6Common10LibContextE) +STUB( + "0tE4C4UiPhE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEptEv) +STUB( + "0tHoI34m3wE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEC2Ev) +STUB("0tHqMCUcq8g", mono_gc_walk_heap) +STUB("0tJ2ME6SPdk", _ZN3sce7Toolkit2NP2V27Session14InvitationDataC1Ev) +STUB( + "0tM0Kw6hZ2M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE5clearEv) +STUB( + "0tMKOPRU7vk", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "0tMwqw51t3I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEE5resetEPS6_) +STUB("0tQQjE7jGbk", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEEC2Ev) +STUB( + "0tREWZe51t8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("0tT-egOV1R0", _ZN7WebCore16DOMGuardedObject16contextDestroyedEv) +STUB( + "0tV1fnVN3sQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEC1EPKS8_) +STUB( + "0tVxd4Dc6QE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEC1EPNS2_10LibContextE) +STUB( + "0tXnZ36kPWA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEC1EPS8_) +STUB( + "0tcwjlgiYco", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEC2EPS6_PNS2_10LibContextE) +STUB("0teUd1yBOKg", png_write_end) +STUB("0tjbqZDVPp8", _ZN7WebCore10FileHandleD2Ev) +STUB("0tm4K4wuhVU", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats20natConnectivityIsSetEv) +STUB( + "0tss2TNi7lI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToSetMultiVariablesByUser10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_28SetMultiVariablesRequestBodyEEE) STUB("0ttVHjPWLsE", sceKernelInternalMapNamedDirectMemory) +STUB( + "0twFo+SpZ8M", + _ZN7WebCore10JSDocument6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_8DocumentENS6_13DumbPtrTraitsIS8_EEEE) +STUB("0tyFGAZEVOc", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEEixEm) +STUB( + "0u4pPHETvHw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEE11release_refEv) +STUB("0uAUs3hYuG4", ctime) +STUB("0uCtvJ7t7X8", _ZNK7WebCore14LoggedInStatus6expiryEv) +STUB("0uCvAguExZQ", _ZN7WebCore11MemoryCache24pruneLiveResourcesToSizeEjb) +STUB( + "0uGhC7Wtowc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "0uIF-hTXVz8", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_20ChallengeRecvDetailsENS1_15AppSTLAllocatorIS5_EEEEC2Ev) +STUB( + "0uMiDy9YUaE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "0uQqTyzpo-w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEED1Ev) STUB("0ugwOX1BRjo", sceAc3EncFlush) +STUB( + "0uiHYKjlCJM", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13integer5IsSetEv) STUB("0up4MP1wNtc", sceNpTusTryAndSetVariableA) +STUB("0up7rxDSYRg", _ZN3sce2Np9CppWebApi7Matches2V117ResponseMatchTeam11setTeamNameEPKc) +STUB("0uqWfQ3k6no", Java_com_sony_bdjstack_org_bluray_bdplus_StatusImpl_send) +STUB("0uuqgRz9qfo", _Cnd_signal) +STUB("0uuzvLo6-hA", __ubsan_handle_alignment_assumption_abort) +STUB("0uvtTMIR7-A", + _ZN7WebCore15DatabaseTracker19fullPathForDatabaseERKNS_18SecurityOriginDataERKN3WTF6StringEb) +STUB( + "0uxceF-Rq6c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEC1EPKS8_) +STUB( + "0v2ANlchKZY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEC2EPS8_) STUB("0v4UVCO4AXs", sceAudiodReportSetEnableFlag) STUB("0v6+W4ulXJ0", sceMatTagVirtualMemory) +STUB("0v8-cEQL93A", _ZN3WTF9BitVector15resizeOutOfLineEm) +STUB("0vAS7bEXO7k", WKPreferencesGetShowsToolTipOverTruncatedText) +STUB("0vAcIjIOiEE", _ZN3JSC18GCActivityCallback18tryCreateFullTimerEPNS_4HeapE) STUB("0vAuFLtXp10", sceMbusDebugSetAppModuleFocus) +STUB( + "0vAvZxHJrds", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEppEv) +STUB("0vC8zP+wJyI", WKPageRestoreFromSessionState) +STUB( + "0vFK5Gsr2vw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEC2Ev) +STUB( + "0vI+P1GX7N0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("0vNe8bbE4nU", rgctx_fetch_trampoline_mrgctx_36) +STUB( + "0vQbIb+89I8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE10setContextEPNS2_10LibContextE) STUB("0vTn5IDMU9A", sceKernelGetMainSocId) STUB("0vV0lazrIlE", sceVdecwrapFlushDecodeOutput) +STUB("0vVnIFMrYAo", _ZNK3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEEixEm) +STUB( + "0vZkpVYPgUs", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V132FrequentlyMutedPropertiesFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_25FrequentlyMutedPropertiesEEE) +STUB("0vc0oPu2cqc", + _ZN7WebCore14SchemeRegistry41allowsLocalStorageAccessInPrivateBrowsingERKN3WTF6StringE) +STUB( + "0vdbz6QFCi0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "0vfYZdF5yZo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEC1EPS6_PNS2_10LibContextE) +STUB( + "0vjDPWX9Hpc", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "0vjviJEgqnk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEE11get_deleterEv) +STUB( + "0vmrwW2fhOk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEC1EPKS8_) +STUB("0vpdJTviIvo", _ZN3sce7Toolkit2NP2V29Challenge13ChallengeDataC1ERKS4_) +STUB("0vu2b3CZiQc", ubrk_isBoundary_59) +STUB( + "0w-arg2V0G4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEED1Ev) +STUB("0w6LRl9ZOGc", _ZN7WebCore15VisiblePositionC2ERKNS_8PositionENS_9EAffinityE) +STUB( + "0wEDwaa1Syw", + _ZNK3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V113ErrorResponse6toJsonERNS_4Json5ValueEb) +STUB( + "0wEjiCERSgE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE5beginEv) STUB("0wFl-CwJ37Y", sceCompositorWaitEvent) +STUB("0wGjbW+tVlc", SSL_get_error) +STUB("0wPw3Bv1gWc", _ZNK3sce2Np9CppWebApi11Matchmaking2V15Cause11sourceIsSetEv) +STUB( + "0wRDECGwsqk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEEC2ERKSA_) +STUB("0wTZ9-9+E6o", _ZN3JSC15JSWeakObjectRef6s_infoE) +STUB( + "0wX+g5KaJM0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE5beginEv) +STUB( + "0wZmCeD-dz4", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEEiRNS2_10LibContextEPT_m) +STUB("0wc3eo2S-RE", png_read_row) +STUB("0wfGuexCjYI", _ZN3sce2Np9CppWebApi12Leaderboards2V15ErrorC2EPNS1_6Common10LibContextE) +STUB("0wgB8VmdqR8", _ZNK7WebCore16HTMLMediaElement8durationEv) +STUB("0wlN5i59xrM", _m_agid) STUB("0wnZViigP9o", sceHmdReprojectionUnsetCallback) STUB("0wnf2a60FqI", sceCameraInitializeRegistryCalibData) +STUB( + "0ws+XzsxTEQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEED2Ev) +STUB("0wu33hunNdE", sleep) +STUB( + "0wxHtqo7dew", + _ZN3JSC14SourceProviderC2ERKNS_12SourceOriginEON3WTF6StringERKNS4_12TextPositionENS_24SourceProviderSourceTypeE) +STUB( + "0wzoLEfYeJo", + _ZN9Inspector20DOMBackendDispatcher11requestNodeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("0x-KAxU5tgQ", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISbIcSt11char_traitsIcENS2_IcEEEE7addressERS6_) +STUB( + "0x0JMPqU0CY", + _ZNK7WebCore14FrameSelection31getClippedVisibleTextRectanglesERN3WTF6VectorINS_9FloatRectELm0ENS1_15CrashOnOverflowELm16EEENS0_19TextRectangleHeightE) +STUB( + "0x1sqZvoENw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEED1Ev) +STUB("0x4NT++LU9s", _ZTSSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE) STUB("0x6o1VVAYSY", sceAudioOut2ContextCreate) +STUB("0x7rx8TKy2Y", _Unlockfilelock) +STUB( + "0xFec1j3PoQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEmmEv) +STUB("0xH4JecjF2Q", _ZN3JSC17JSArrayBufferViewC2ERNS_2VMERNS0_19ConstructionContextE) +STUB( + "0xITDA+k42Y", + _ZN3sce2Np9CppWebApi7Matches2V131RequestCompetitiveResultFactory7destroyEPNS3_24RequestCompetitiveResultE) +STUB( + "0xJVLGcWA0I", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToSendPlayerSessionMessage12getsessionIdEv) +STUB( + "0xKAaXjoetg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEC2ERS7_) +STUB("0xL7AwgxphE", _ZN3sce2np9LocalFile5WriteEPNS0_6HandleEPKvmPm) +STUB( + "0xLVhtsP+RA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("0xOJrOU+yaE", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification14NewRoomMessageEEC2Ev) +STUB("0xQypcNgVg0", WKPageLoadURLWithUserData) +STUB("0xXyNFpQzwU", _ZN3sce7Toolkit2NP2V24Core11ServerErrorD1Ev) +STUB( + "0xasib0kC04", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("0xgFRKf0Lc4", + _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecPKv) +STUB("0xgWqLXrJYI", _ZN7WebCore18DOMWindowExtensionD1Ev) +STUB( + "0xiba5Xl+io", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEppEi) +STUB("0xibgvhB41E", + _ZNK3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator14getCustomData1Ev) +STUB( + "0xn44QqdEIo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEplEm) STUB("0xrhvJ8QANU", sceNpSnsIntYtGetAccessToken) +STUB( + "0xvG+zddEFg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("0xxMecChkro", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEEC1Ev) STUB("0y01ndm0BA8", sceShellCoreUtilGoBackToKratosCurrentSessionGame) +STUB("0y0YtzmtHUg", _ZN7WebCore8SVGNames10feFuncATagE) +STUB("0y370-q87ug", sqlite3_column_type) +STUB( + "0yBLNN0P9ow", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEEC2ERSA_) STUB("0yDdrIgqpjE", sceNpManagerIntGetVshTokenA) STUB("0yNHPIkVTmw", sceRazorCpuUnTagBuffer) STUB("0yVJNcMqyXk", sceKernelGetUtokenFlagedUpdaterForRcmgr) +STUB("0yWz5Qwwuyw", _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeIPcPvEE10deallocateEPS6_m) +STUB("0yaNya-i2-U", _ZN3JSC24getExecutableForFunctionENS_7JSValueE) +STUB("0ydY-JngPc8", _ZN3sce7Toolkit2NP28AdditionalSessionInfoRequestC2Ev) +STUB("0yhTNYJG35I", YGNodeGetPrintFunc) +STUB( + "0yiHLyOe24c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEE7get_refEv) +STUB("0yidLbrWXoE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEEC1Ev) +STUB( + "0ylRSnbIPOY", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_8Debugger16BreakpointAction4TypeEEEN3WTF8OptionalIT_EERKNS6_6StringE) STUB("0ypWH4DpK9E", sceHidControlSetRevokeList) +STUB( + "0ypcZr-tbQo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEED1Ev) +STUB("0yriBj5rS3U", _ZN3JSC25numberOfOSRExitFuzzChecksEv) +STUB( + "0yvSKcjMI+Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE10setContextEPNS2_10LibContextE) +STUB( + "0ywZXWKyZ5U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) STUB("0yzYdZf0IwE", sceRudpSetOption) +STUB( + "0z+uy9sMJBQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEEC2ERSA_) +STUB("0z1mgIkYzG4", _ZN3sce7Toolkit2NP15AppSTLAllocatorIiE8allocateEmPKv) STUB("0z2qLqedQH0", sceHmdInternalSetCrashReportCommand) STUB("0z45PIH+SNI", sceSaveDataMount2) STUB("0z7srulNt7U", sceSystemServiceAcquireFb0) +STUB( + "0zEjOmQC9Vw", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("0zF6qkqn+bk", _ZN3sce7Toolkit2NP2V27Ranking12RangeOfRanks8deepCopyERKS4_) +STUB("0zHCq+Xn2Bc", __tsan_read1_pc) +STUB( + "0zI94ssV1Lg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("0zIN2tg-XUM", _ZN3PAL8KillRing4yankEv) +STUB( + "0zLg7e8bIOY", + _ZN3sce7Toolkit2NP8Matching9Interface22updateSessionAttributeEPNS1_22UpdateAttributeRequestEPNS1_9Utilities6FutureIiEEb) +STUB("0zMFpPqaVvY", _ZN7WebCore8Document20webkitExitFullscreenEv) +STUB("0zSwjAZrtJE", _ZN7WebCore4FileC1ERKN3WTF6StringE) +STUB("0zU-PO6BONU", _ZN3WTF19initializeGCThreadsEv) STUB("0zU0G+wiVLA", sceInvitationDialogOpen) +STUB("0zXEF2bv36g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEE11get_deleterEv) +STUB( + "0zYBH2TiTQ0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE6resizeEj) +STUB( + "0zZqWJ1vWtY", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi17updateMatchStatusEiRKNS4_28ParameterToUpdateMatchStatusERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB("0zbFs+8budU", _ZN12video_parser5vpcom23RtcGetCurrentSecureTickEP10SceRtcTick) +STUB("0zkJDvGhpF0", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V511ContentTypeEEptEv) STUB("0zkr0T+NYvI", sceNpTusGetMultiUserDataStatusAsync) +STUB( + "0zohpOxqv64", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEE11get_deleterEv) +STUB( + "0zqYQrUuZqA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody19unsetDataStatusListEv) +STUB( + "0zr1LvD3oEw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("0zsMYNRB+G4", _ZN3sce7Toolkit2NP2V23TUS19FriendsDataStatusesC2ERKS4_) +STUB("0zsTiDhM0nU", _ZN4IPMI6Client6createEPPS0_PKNS0_6ConfigEPvS6_) +STUB("0ztWhbkFNEM", _ZN3sce7Toolkit2NP2V26Friend12Notification16FriendlistUpdate8deepCopyERKS5_) +STUB("0ztgt9yYb1s", png_get_interlace_type) +STUB("0zuAEore8pY", NpWebInitialize) +STUB( + "0zxPTw-rKfo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEplEm) +STUB( + "1+++-w1Beug", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEmmEi) +STUB( + "1+0lT5o0nOA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEC1EPS8_) +STUB("1+5BaLg65Tw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEEcvbEv) +STUB("1+5ojo5J2xU", _ZTIPl) STUB("1+6sx9A7XeE", sceUlpMgrGetDecidState) +STUB("1+8QvFXFPWQ", + _ZNK3sce7Toolkit2NP15AppSTLAllocatorISbIcSt11char_traitsIcENS2_IcEEEE8max_sizeEv) STUB("1+8t9aHLiz8", _sceUltMutexOptParamInitialize) +STUB("1+BYryzQZt8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEED1Ev) +STUB( + "1+D8T-6QVoE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEEdeEv) STUB("1+DgKL0haWQ", sceFontWritingLineClear) +STUB("1+FCJWJHZCU", WKPreferencesGetShouldRespectImageOrientation) +STUB("1+GAmdx7sH4", monoeg_g_list_reverse) +STUB("1+JNcxjahDI", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification14NewRoomMessageEED2Ev) +STUB( + "1+KKIQ1g+q4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) STUB("1+KpQYgv1zk", sceMusicPlayerServiceGetPlaybackResults) +STUB( + "1+LOD1eEHbI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEC1EPNS2_10LibContextE) +STUB( + "1+NhBhe98BA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEC1EPKS8_) +STUB( + "1+REapi9KG0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEED1Ev) +STUB("1+UU-cxoqk8", s19) +STUB( + "1+VhPSgCL1A", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEeqERKS9_) +STUB("1+Y+ykZkTwg", _ZN3JSC4Yarr17RegularExpressiondaEPv) +STUB( + "1+ZkDXCBnos", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEEC2ERSA_) +STUB( + "1+fpf5Korr4", + _ZN8meta_gen11MsvPromoter23setKeyValueTBLTLanguageENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti) +STUB("1+ht-ZR+TQw", _ZN9Inspector22InspectorDebuggerAgent7disableEb) +STUB("1+i39RxT3EU", uscript_closeRun_67) +STUB( + "1+ido-FAhMY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE8pushBackERKS8_) +STUB( + "1+jR7icdJ18", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetrics18setConfidenceScoreERKi) +STUB( + "1+kKUBq4F14", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEEC1ERSA_) +STUB( + "1+lF8hyyb7g", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEeqERKS9_) STUB("1+nxJ4awLH8", sceUserServiceGetUserGroupName) +STUB( + "1+uHJKwV6G0", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("1+zr-xBIczY", mono_aot_Sce_Vsh_Messagesmethod_addresses) STUB("1-1uDZ4tiFA", sceSystemLogger2Initialize) +STUB( + "1-2ChF1-9+s", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities15ActivityFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS6_12IntrusivePtrINS4_8ActivityEEE) +STUB("1-33AIR7vjk", _ZNSt9_FacetptrISt10moneypunctIcLb1EEE6_PsaveE) +STUB( + "1-4wjBT9nJk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEdeEv) +STUB("1-6VPV4pXAo", SendNtfMsg) +STUB("1-9PZ6MKKjo", mono_profiler_coverage_get) STUB("1-IJHxzRJGw", sceCamera2GetContrast) STUB("1-LFLmRFxxM", sceKernelMkdir) +STUB( + "1-Lj-f1FyC0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEE11get_deleterEv) STUB("1-O9j5vS8QU", sceAvSettingGetCurrentHdmiDeviceId) +STUB( + "1-TVrBGsKl4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEED1Ev) +STUB("1-V2o1+GUpo", _ZN3sce2Np9CppWebApi7Matches2V113ChildActivityC2EPNS1_6Common10LibContextE) +STUB( + "1-VwW8KqeVg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEdeEv) +STUB("1-Wwhd0ToKo", _ZN3NTF14NetworkControl12getIPAddressEv) STUB("1-Xmz3cBpkE", scePlayReadyProfileLeave) STUB("1-gUn1PI4Sw", sceAgcDcbAtomicMem) +STUB( + "1-giGzb7O1Q", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody14integer10IsSetEv) +STUB( + "1-jw2YaVrug", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser17setnpServiceLabelEj) +STUB( + "1-jy5rm27eo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("1-qb2Z-pBRU", _ZN3sce7Toolkit2NP2V210Tournament17TournamentDetailsC1ERKS4_) +STUB("10+T0QBSoWM", sys_trim) +STUB( + "103vWqrZq5k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEEC2EPS8_PNS2_10LibContextE) +STUB( + "10AevvvBQlY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("10C2KUNzUuc", ucache_hashKeys_67) +STUB( + "10DDFRU0bJI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE21intrusive_ptr_add_refEPS9_) +STUB("10Gs0X-2dso", ures_getStringByIndex_67) STUB("10NAQUqyOpw", sceVisionManagerRequestFindPad) +STUB("10VcrHqHAlw", + _ZNSt13basic_filebufIwSt11char_traitsIwEE7seekposESt4fposI9_MbstatetENSt5_IosbIiE9_OpenmodeE) +STUB( + "10Z5dGZdl2E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEED2Ev) +STUB("10fsdhg9448", WKSerializedScriptValueCreate) +STUB("10sQaMQxi70", _ZNK7WebCore22HTMLFormControlElement12willValidateEv) STUB("10t3e5+JPnU", sceNpMatching2Initialize) +STUB( + "10ynQd4weB0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEE7get_refEv) +STUB( + "11-Vgs-wCsQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE5clearEv) +STUB( + "11-tw33xIBs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("116AJAcA-38", __tsan_atomic64_exchange) +STUB( + "11A0hVwMLLc", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities20ErrorResponseFactory6createEPNS1_6Common10LibContextENS6_12IntrusivePtrINS4_5ErrorEEEPNS9_INS4_13ErrorResponseEEE) +STUB("11DM5mLVBA4", _ZN7WebCorelsERN3WTF10TextStreamERKNS_8IntPointE) +STUB("11DvPWLfwtU", WKBundleExtendClassesForParameterCoder) +STUB( + "11IeLYPh0w4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEE7add_refEv) +STUB("11Kr-BPqNGE", _ZN9Inspector21InspectorConsoleAgentC1ERNS_12AgentContextE) +STUB("11Mb6e6N2hk", + _ZN3sce7Toolkit2NP15CommunicationIdC2ERKSbIcSt11char_traitsIcENS1_15AppSTLAllocatorIcEEES9_S9_) +STUB("11N69VhY3v8", _ZN7WebCore11MemoryCache30destroyDecodedDataForAllImagesEv) +STUB( + "11Nl-OXIxHo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEC1Ev) +STUB( + "11R1sl4Hfg0", + _ZN3sce7Toolkit2NP8Sessions9Interface6searchEPKNS1_22SearchNpSessionRequestEPNS1_9Utilities6FutureISt6vectorINS1_20NpSessionInformationENS1_15AppSTLAllocatorISA_EEEEEb) +STUB( + "11Tm+i7KAEY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE5emptyEv) +STUB("11VA62-jFjU", WKPreferencesSetCompositingRepaintCountersVisible) +STUB( + "11X+WA+-9gk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEE5resetEPS6_) STUB("11ZG5FOPbAM", scePerfTraceSpmStop) +STUB( + "11cb5V7fXPs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE3endEv) +STUB( + "11fIl7oWzIw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEC1EPNS2_10LibContextE) +STUB("11fR6GY6dvY", + _ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors8fromJsonERKNS_4Json5ValueE) +STUB( + "11ggS0s-Ogk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("11gkLQd+4F0", + _ZN3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession11setPlatformEPKc) +STUB("11gkco5M1lY", _ZN12video_parser7cVpUtil9PrintDumpEPvi) +STUB("11kj4X8ocA0", _ZN7WebCore5ColorC2EOS0_) +STUB("11uEI36hbmA", _ZNK3sce2Np9CppWebApi7Matches2V118RequestTeamResults7getRankEv) +STUB( + "11vKUvshjAM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEED2Ev) +STUB("11w8jzlFoBs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119ChildActivityStatusEEptEv) +STUB("11yzq8RpTp0", mono_type_get_name) +STUB( + "11zVpLzszyc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "127BAgfQx0I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEE11release_refEv) STUB("128J-E6cX8Q", sceNpUniversalDataSystemCreateRecordData) +STUB("12Bw1wzWkKI", _ZN3sce7Toolkit2NP2V27Session20LocalizedSessionInfo16SESSION_NAME_LENE) +STUB("12EXsiNKS9s", _ZN7WebCore5Range6setEndERKNS_8PositionE) +STUB( + "12EgNNWgZqw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEC1Ev) STUB("12PV4AVsJCM", sceAppInstUtilGetParentalControlLevel) +STUB("12Rb63-+3s4", _ZN3JSC6JSCell14deletePropertyEPS0_PNS_14JSGlobalObjectENS_12PropertyNameE) +STUB("12U1uRaeL7U", usearch_last_67) +STUB("12f6asHhSfM", _ZN12video_parser18cMp4FFLHndlManager18getFF4UuidPrivHndlEyy) +STUB("12gexxIy+t0", _ZNK7WebCore11MediaPlayer31requiresTextTrackRepresentationEv) +STUB("12q9T7r-8fU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEE7get_refEv) +STUB( + "12re2Hd-NhU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEED1Ev) +STUB("12rsFW04hrk", _ZN7WebCore6RegionC1ERKS0_) +STUB("12tIV7cplJA", WKBundlePageAddUserScriptInWorld) +STUB( + "12uL91Dl4jY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEE11release_refEv) STUB("12wOHk8ywb0", sceKernelPollSema) +STUB("12wY179+CE8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE4sizeEv) +STUB("12wh-hWSK9A", uregion_getType_67) +STUB("12wr1p+AvME", _ZZL14report_failure19_Unwind_Reason_CodePN10__cxxabiv115__cxa_exceptionEE4e_ti) +STUB( + "12xTu8tg3nA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("13+IL8oL-sM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEED1Ev) +STUB("1304wfGwMNY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEEC2EPKS6_) +STUB( + "137kxyWmjmI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEE5resetEPS6_) +STUB("138vohStwzY", _ZN7WebCore15XPathNSResolverD2Ev) +STUB("139Uzlhc7iU", mono_aot_Sce_Vsh_Orbis_Bgftplt) +STUB( + "13CNrsMzvDU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "13FZgPGZ9eA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEE11get_deleterEv) +STUB( + "13GsJUeVNp8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEEptEv) +STUB( + "13IQiqhlnCg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE8copyFromERKS9_) +STUB("13JDK3v+BNQ", udat_toPattern_67) +STUB( + "13KoEaVmuJ8", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi15filterProfanityEiRKNS4_26ParameterToFilterProfanityERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_23FilterProfanityResponseEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("13O00wtDjUQ", uprv_decNumberRescale_67) +STUB("13RlUJaR9MI", _ZN7WebCore37CrossOriginAccessControlCheckDisablerC1Ev) +STUB("13Vdz0yQpSw", _ZN3JSC6JSCell12dumpToStreamEPKS0_RN3WTF11PrintStreamE) STUB("13WccQjpYtM", sceKernelEventLogClose) +STUB("13Y3oJ7jRHQ", eglGetCurrentDisplay) +STUB("13YTEVlQaOM", _ZN7WebCore19serializationForCSSERKNS_5ColorE) +STUB("13YhdTR9VUw", _ZN7WebCore12deleteCookieERKNS_8DocumentERKNS_3URLERKN3WTF6StringE) +STUB( + "13ZB+evhVig", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_34DetailedProductInfoListInputParams9ProductIdEE9constructEPS4_RKS4_) +STUB("13eZprwQdRI", _ZN3WTF10hasElapsedERKNS_24TimeWithDynamicClockTypeE) +STUB( + "13lFSJqGMmY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEneERKS9_) +STUB( + "13mSGt2flG4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE3endEv) +STUB("13xzrgS8N4o", _ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1Em) +STUB("13zq0KIVJJg", WKOpenPanelParametersCopyAcceptedFileExtensions) +STUB( + "13zquMW5r4M", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("141GMyYVzL8", + _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes6toJsonERNS_4Json5ValueEb) STUB("1471ajPzxh0", pthread_rwlock_destroy) +STUB( + "148JBaAUk-4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEptEv) +STUB("14H9jNVuOAY", _ZN3sce7Toolkit2NP2V210Tournament25OneVsOneTournamentDetailsC2ERKS4_) +STUB( + "14IksFlkInE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB( + "14LZPHItTxM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE5emptyEv) +STUB( + "14LjvR9JSmY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE7popBackEv) +STUB("14NyMl9s7Yo", GCC_except_table479) +STUB("14PDhhMEBKY", _ZN3sce2np7Callout4StopEv) +STUB("14QqltFJ+xk", _ZNK7WebCore19ProtectionSpaceBase15isPasswordBasedEv) +STUB( + "14QwPzMtdc4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE8capacityEv) +STUB("14QyV2LP+tE", _ZN7WebCore8Settings21setShowRepaintCounterEb) +STUB( + "14VGwjBcHo8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEC1EPKS8_) +STUB("14Zfc72Ykbc", _ZN7WebCore9FrameView37setScrollingPerformanceLoggingEnabledEb) +STUB("14aJhCpL6nU", _ZN12video_parser18cProfileCheckerMp4D2Ev) STUB("14bOACANTBo", scePthreadOnce) +STUB( + "14dk7Cqdhnc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEEC2Ev) +STUB("14ej0AH9EVI", mono_aot_Sce_Vsh_KernelSysWrapperjit_got) +STUB( + "14hGhmOIXoc", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions9getfieldsEv) +STUB("14kQyudPBOE", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_34DetailedProductInfoListInputParams9ProductIdEED1Ev) +STUB("14lTUjs9Z14", + _ZN3sce2Np9CppWebApi12Leaderboards2V127RecordLargeDataResponseBody11setObjectIdEPKc) +STUB("14oSjAHwL3E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEEmmEi) +STUB("14pK67tlLag", _ZN7WebCore11DisplayList10StrokePathC2ERKNS_4PathE) +STUB("14qdePVPv0E", uprv_fmax) +STUB( + "14rD3j3MPM4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEmmEv) +STUB("14uL8NIvS2g", + _ZNSt9_FacetptrISt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEE6_PsaveE) +STUB("14xKj+SV72o", _ZNKSt7codecvtIcc9_MbstatetE3outERS0_PKcS4_RS4_PcS6_RS6_) +STUB("1555+tbp3Qo", mono_aot_System_Transactionsplt_end) +STUB("157EW1LSEtM", __sanitizer_get_heap_size) STUB("159vuk+beoc", sceAvControlChangeProcessAttribute) +STUB( + "15A0IGPGoY8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEixEm) +STUB( + "15AE0K52I48", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEED1Ev) +STUB("15Cz0VyipAQ", _ZN9Inspector24NetworkBackendDispatcherD2Ev) +STUB("15DNj4tGe8c", _ZN9Inspector26TimelineFrontendDispatcherdlEPv) +STUB("15GxVYXUb1g", _ZN7WebCore9HTMLNames15frameborderAttrE) +STUB("15JBN0lRT1s", _ZN3JSC16CompleteSubspace16allocatorForSlowEm) STUB("15JUzFaWTkY", sceNetCtlGetConnectionElapsedTimeIpcInt) +STUB( + "15KZvxLI4JQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEneERKS9_) +STUB( + "15L6LCUhHW4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEC1ERS7_) +STUB( + "15QGpCrzvXg", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "15SNf7TA3PE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "15TtZHNz4Zg", + _ZN7WebCore11MediaPlayerC2ERNS_17MediaPlayerClientENS_16MediaPlayerEnums21MediaEngineIdentifierE) +STUB("15VjSngWz0I", _ZNK15AbstractStorage18DailymotionStorage13GetCapabilityEv) +STUB( + "15YaevbEmQ8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEEptEv) STUB("15Ywg-ZsSl0", sceNetSetDns6Info) +STUB( + "15jwL53UBbQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEplEm) +STUB( + "15k6fTZDi5E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEC2Ev) +STUB("15lB7flw-9w", _ZNSt20bad_array_new_lengthD2Ev) +STUB("15qvbsddabA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEED1Ev) +STUB("15rPAIJU2YE", WKPreferencesGetStorageAccessAPIEnabled) +STUB( + "15stJEESpS8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEC2EPS8_) +STUB("15vmGXiUnGw", + _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchStatusRequestC2EPNS1_6Common10LibContextE) +STUB( + "16+N3qV6MG8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("161H5qAa6fk", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS7TusDataEE3setEv) +STUB("167jPcYThXk", + _ZN3JSC21loadAndEvaluateModuleEPNS_14JSGlobalObjectERKNS_10SourceCodeENS_7JSValueE) +STUB( + "16A1jl1BK0I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE5emptyEv) +STUB("16DOGRFnVaE", _ZN7WebCore13JSHTMLElement15subspaceForImplERN3JSC2VME) +STUB( + "16EZFCh+udM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("16H0tI43iL8", + _ZN3WTF6String28numberToStringFixedPrecisionEfjNS_29TrailingZerosTruncatingPolicyE) +STUB("16JOEw--AIs", umsg_vformat_67) STUB("16Ob5ACgOYk", sceAudioOut2PortUnregister) +STUB( + "16UCJerXzY8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEE11release_refEv) STUB("16UI54cWRQk", sceImeOpenInternal) +STUB("16V3Bs3lvS4", _ZN7CoreIPC10AttachmentC1Ev) STUB("16efS+mFGGc", sceMoveTrackerGetVersion) +STUB("16hg5ktQepw", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIfE21intrusive_ptr_add_refEPS4_) +STUB( + "16hp5L8MiFA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "16iE1U5SFuk", + _ZN9Inspector24CanvasFrontendDispatcher16recordingStartedERKN3WTF6StringENS_8Protocol9Recording9InitiatorE) +STUB("16mriLSanjo", _ZN7WebCore9PageCache9singletonEv) +STUB( + "16ofuEzDgrA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEEcvbEv) STUB("16sMmVuOvgU", sceHttpGetMemoryPoolStats) +STUB("16uyavDW06I", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence12Notification14PresenceUpdateEE3getEv) +STUB( + "16vmQHeSpo8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEC2ERKS7_) +STUB( + "16vpGUSJ+6E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE8capacityEv) +STUB("16zU7B-iCig", _ZN3JSC7Symbols16applyPrivateNameE) +STUB("173U3CJro7E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEED1Ev) STUB("176q2+O2+VQ", scePlayReadyCdmiGetSessionAppContext) +STUB("177XzOMP0XQ", mono_metadata_decode_table_row) STUB("17CahsS7jG8", ScePsmMonoJitInit) +STUB("17G+g+OmP0k", _ZN23sceMetadataReaderWriter8MetadataD2Ev) +STUB( + "17Ls-VM7d4w", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEneERKSA_) +STUB("17Mfe1B3X6U", _fstatfs) +STUB( + "17PZV1FQ-tE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("17Ri+x+MxmI", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE5emptyEv) +STUB("17TxeYbrDwQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE8pushBackERKS6_) +STUB( + "17YvdzrmD9Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEaSERKS9_) +STUB( + "17gDMtP1oTs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE8capacityEv) +STUB("17lDGYhSTx4", _ZN7WebCore13HTTPHeaderMap6appendERKN3WTF6StringES4_) +STUB( + "17nmpheONU0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEED1Ev) +STUB("17ocUkwxbLQ", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEEcvbEv) +STUB( + "17vrPKyaflk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEC1EPS8_) +STUB("18+ldEmxB6w", _ZN7WebCore17HTMLPlugInElement21isReplacementObscuredEv) STUB("186Jz869gsc", sceCamera2Finalize) +STUB( + "188JWJIYA+M", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEED2Ev) STUB("188x57JYp0g", sceKernelCreateSema) +STUB("189r812KgtY", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUseraSERS5_) STUB("18B2NS1y9UU", sceRtcGetCurrentTick) +STUB("18E1gOH7cmk", __lshrdi3) STUB("18IVGrIQDU4", sceAudioOutSetJediJackVolume) STUB("18KNgSvYx+Y", sceNetConfigFlushRoute) +STUB("18MTG+xtvtU", _ZN3WTF17charactersToFloatEPKDsmRm) STUB("18NPivA-byc", sceVideoOutSetDisplayEventPosition) +STUB("18XZM7c4O3U", _ZNK3sce2Np9CppWebApi14ConnectAccount2V28PSNError8getErrorEv) +STUB( + "18YsfEQuZJk", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOffer28setxPsnAcceptPlatformNamePs5ENS5_25XPsnAcceptPlatformNamePs5E) STUB("18ZCDYD5xjI", sceRegMgrCntlGetFileName) +STUB("18gO8FIVDOg", _ZN3JSC16InternalFunction13visitChildrenEPNS_6JSCellERNS_11SlotVisitorE) STUB("18j+qk6dRwk", sceNpLwMutexLock) +STUB( + "18kAO1-lD3w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE7reserveEi) +STUB("18l7K9YYCi0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V117ResponseMatchTypeEEC1EPS6_) +STUB( + "18mSPH7MgKQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEED2Ev) +STUB("18oHpHPSHnY", _ZNK7WebCore26NetscapePlugInStreamLoader6isDoneEv) +STUB( + "18ptDelABgM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE6resizeEj) +STUB("18q8DKWP6Gk", Java_com_sony_gemstack_core_CoreAppId_n_1init) +STUB("18rLbEV-NQs", _ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1Em) +STUB( + "18vg52kHITQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB( + "18xn7dVHFBM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEE7get_refEv) STUB("18ylu1q-Us8", sceDebugGetModuleMetaData) +STUB("192-IV4CFa8", _ZN7WebCore13JSHTMLElementC1ERKS0_) +STUB("195DFuuHr6U", _ZNK7WebCore9FrameView21clientToDocumentPointENS_10FloatPointE) +STUB("195ad-jAsTU", _ZN3sce4Json5Value3setERKNS0_5ArrayE) +STUB( + "19AC7P0009A", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeaderC2Ev) +STUB("19EPmKIGrMA", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEEC2EPKS6_) STUB("19Ec7WkMFfQ", sceNetCtlApCheckCallback) +STUB("19F4El4TWX4", mono_aot_Sce_Facebook_CSSLayoutunbox_trampoline_addresses) +STUB("19FCHyQTrg0", _ZN3WTF14FileSystemImpl15pathGetFileNameERKNS_6StringE) +STUB("19JLd+gpLPA", _ZN3sce7Toolkit2NP2V28Commerce10Descriptor13IMAGE_URL_LENE) STUB("19KgfJXgM+U", sceNpWebApiAddMultipartPart) +STUB("19LEprfkGS0", GetVideoOutputStatus) +STUB("19N0joauSsE", glDrawArrays) +STUB( + "19SKoj7IWJo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("19VrLguqmYc", monoeg_g_slist_find) +STUB( + "19X1yRp+26g", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser10setslotIdsEPKc) +STUB("19bXLmSr5Pg", _ZN7WebCore17JSDOMGlobalObject5worldEv) +STUB( + "19iC94y6f7E", + _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchDetail27getupdateMatchDetailRequestEv) +STUB( + "19nK2FOyBYg", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser25setusePlayerSessionFilterEPKc) +STUB("19qviRPXSkE", rgctx_fetch_trampoline_mrgctx_58) +STUB("19rW9Jqrx+A", WKWebsiteDataStoreConfigurationGetTypeID) STUB("19uCF96mfos", sceUserServiceSetImePointerMode) +STUB( + "1A-cznNpcrw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEC1ERS7_) +STUB("1A1iA5Vql4M", _ZN3WTF10isLeapYearEi) STUB("1ADfldNB9aQ", scePktMgrPrepareUlpNtfPacket) +STUB("1AGh4Iic7S4", _ZN7WebCore19MediaResourceLoader25recordResponsesForTestingEv) +STUB("1AHRv0-rMnU", _ZN3sce7Toolkit2NP2V27Ranking8TempRankD2Ev) +STUB("1AHwZrLxA58", _ZThn16_N9Inspector28InspectorScriptProfilerAgent12stopTrackingERN3WTF6StringE) +STUB("1AHz07523bM", _ZN3sce7Toolkit2NP2V212EventsClient12EventDetailsC2Ev) +STUB( + "1ANO09fNOEU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE8copyFromERKS9_) STUB("1APtZS06W-I", sceDeci4hDrfpOpendir_fuse) STUB("1AQf7o8gpHc", sceLncUtilGetAppType) +STUB("1ARjw9-b3Jk", mono_runtime_invoke_array) +STUB( + "1ASSjgTltmE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEE7add_refEv) +STUB("1ASkWfGLyIo", ulocdata_close_67) +STUB("1AYeyBFz+eM", xmlSAX2EntityDecl) +STUB("1AbLXkyjTJo", _ZN7WebCore15JSSVGSVGElementC2ERKS0_) +STUB( + "1Ae30UkB0f8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEC1Ev) +STUB( + "1AihoMBEL8U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEEC1EPS6_PNS2_10LibContextE) +STUB("1Ans0r2Uc14", ucal_getTimeZoneID_67) +STUB( + "1AoQEGFwmgU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("1Ap3qpzSPVw", g_opcodeMapWide16) +STUB("1At86OClqtY", _ZTVN3sce2np10JsonStringE) +STUB("1AxxTi8Jkj4", _ZN3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMapD1Ev) +STUB( + "1B0chxFxf8s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEC2ERKS7_) +STUB( + "1B2Ine2NmlU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("1B8WzbZ9TiA", WKPreferencesGetInactiveMediaCaptureSteamRepromptIntervalInMinutes) +STUB( + "1BAmfyFqKlw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEEC1ERKSA_) +STUB( + "1BIUNG6hybg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC1Ev) +STUB("1BQcEduGv0s", rgctx_fetch_trampoline_mrgctx_110_p) STUB("1BUTwixUG5Y", sceAgcDriverDebugHardwareStatus) +STUB( + "1BrCxwjaLys", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEED2Ev) +STUB( + "1BvHRYLo7hE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("1BwsNlrphNs", JVM_FillInStackTrace) +STUB( + "1Byz+3eGeWw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEEC1ERKSA_) +STUB("1C2-2WB9NN4", + _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewb) +STUB( + "1C2mJi3KfJg", + _ZN3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectatorC1EPNS1_6Common10LibContextE) +STUB("1C410QYskB0", Java_com_sony_bdjstack_core_CoreXletContext_n_1notifyPause) +STUB("1CCBjCt+Oxk", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE8capacityEv) +STUB( + "1CF0puq0iYM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEE11get_deleterEv) +STUB( + "1CJw1VMB2dc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("1CNmt9x20pM", _ZN7WebCore8Document21queryCommandSupportedERKN3WTF6StringE) +STUB("1CRWFfUpYyE", _ZN3JSC7Symbols40putArrayIteratorInternalFieldPrivateNameE) +STUB("1CTnCdckMzI", mono_aot_Sce_PlayStation_Imeplt) STUB("1CVP7E-WFKk", sceKernelIsTestKit) +STUB( + "1CW6fVw08+E", + _ZN3sce2Np9CppWebApi14IdentityMapper2V319AccountIdMapFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_12AccountIdMapEEE) +STUB( + "1CXuBSTalPk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEED1Ev) +STUB( + "1CZtoiyMhmI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEE11release_refEv) +STUB("1Ce55-O0RmU", _ZN7WebCore11MemoryCache14evictResourcesEN3PAL9SessionIDE) STUB("1CiXI-MyEKs", sceNpLwMutexInit) +STUB("1Clr+azmpqU", mono_btls_ssl_set_min_version) +STUB("1CmTDFZCXjs", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi28ParameterToDeleteGameSessionC2ERS5_) +STUB("1CohJSJK+tc", rgctx_fetch_trampoline_mrgctx_107) +STUB( + "1CullQG-Fjc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEEC2ERKSA_) +STUB("1Cw1MMnI89Y", _ZN7WebCore13AXObjectCache20disableAccessibilityEv) +STUB("1Cx1g9hQXWI", il2cpp_thread_get_name) +STUB( + "1CxeMI8UxQg", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayer35getxPSNSESSIONMANAGERNONPSNCALLERIDEv) STUB("1Cz0hTJFyh4", sceNpTusSetMultiSlotVariableVUser) +STUB("1D+9rXdViXI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V117InvitableUserTypeEEC1EPS6_) +STUB("1D0H2KNjshE", powf) +STUB( + "1DAagfDSyPM", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12getBoolean10Ev) +STUB("1DD+9cjt3hU", _ZNK9Inspector22InspectorDebuggerAgent7enabledEv) +STUB("1DFhG+P0EYM", ucptrie_internalSmallU8Index) +STUB("1DIzxNR8Q40", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10CategoriesEE12deepCopyFromERS7_) +STUB( + "1DJrq1QDYzU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEixEm) +STUB("1DKS1Z3NTIE", _ZN3sce7Toolkit2NP2V26Friend16FriendsOfFriends8deepCopyERKS4_) +STUB("1DL2DNl2iGs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEaSERS7_) STUB("1DMXuE0CbGQ", sceNpManagerIntGetAuthorizationCodeA) +STUB("1DOM52MLTj0", mono_aot_Sce_Vsh_AppInstUtilWrapperjit_code_end) STUB("1DQdJnkcvCc", sceDevUsbAddCPKevent) STUB("1DXIHxWHZAQ", sceAgcDriverCwsrResumeAcq) STUB("1DXOQcuiH8o", sceAvSettingDebugClearDiagCommand) +STUB("1DXTCguRU60", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEaSERS7_) +STUB("1Da75aKSdkU", _ZN7WebCore9HTMLNames11onwheelAttrE) STUB("1DeUNpRIDDA", sceAgcDcbSetCxRegisterDirectGetSize) +STUB("1DgR7RiMl1U", _ZNK3sce2Np9CppWebApi7Matches2V111AddedPlayer9getTeamIdEv) STUB("1DhxSh2IIUI", sceMoveReadStateRecentForTracker) STUB("1DkGvUQYFKI", sceUsbdUnlockEventWaiters) +STUB("1DkPR0np8Xc", WKViewSetSize) +STUB( + "1Dlb4qPiD8g", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEeqERKS9_) STUB("1DmZjZAuzEM", scePadGetExtensionUnitInfo) +STUB("1Dmj0cbsjIY", fuse_send_reply_iov_nofree) +STUB("1DtavqenQjg", _ZN3sce2np10MemoryFile8TruncateEl) +STUB( + "1Dw8A4xDOAc", + _ZNK3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead21fromNonPsnPlayerIsSetEv) +STUB( + "1Dyjy9UEjGc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB("1DzYGtJquJU", mono_aot_Sce_Vsh_Np_Commonplt) +STUB("1E2GPEywsqw", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia10BroadcastsEE5resetEv) +STUB("1ECw9RP03o4", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead14getSessionNameEv) +STUB("1EGztN2blUY", _ZN3sce7Toolkit2NP2V212EventsClient17EventShareFactoryD2Ev) +STUB("1ELEdwIoIwU", _ZN3sce2Np9CppWebApi15Personalization2V15ErrorD2Ev) +STUB("1ELoOr5IBlM", glEndTransformFeedback) +STUB( + "1ES5DdSKvt4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "1ETNGvfK1z4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEC1EPS8_) +STUB( + "1EU6x+wipoI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V120ErrorResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_13ErrorResponseEEE) +STUB("1EYcTwBoE4w", _ZNK9Inspector18InjectedScriptHost16savedResultAliasEv) +STUB( + "1EabSgeEsn8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEaSERS7_) +STUB( + "1Eb3O6vJVDs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) STUB("1EgNBGG9Iso", ScePsmMonoJitCleanup) STUB("1ElwHkpLvmw", sceNpSnsYouTubeGetAccessToken) +STUB("1EmBx0112+c", _ZN3JSC7Symbols35doAsyncGeneratorBodyCallPrivateNameE) STUB("1EoMsKB-clM", sceEsvmEngineMediaKeysCreateSession) +STUB("1Er9TFGSEgw", JVM_GetMethodDefaultAnnotationValue) +STUB( + "1EsrlHTMNDs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEptEv) +STUB("1Et1k-0C974", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_7TssDataEED2Ev) +STUB( + "1Euzez5hB7g", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody17setDataStatusListERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_10DataStatusEEEEE) +STUB( + "1ExP4qHV7u8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEE5resetEPS6_) +STUB("1EyHxzcz6AM", _FXp_addh) +STUB( + "1EzhUixQGGA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEEaSERKSA_) +STUB("1F1TMRMz2a4", _ZN3JSC22FullGCActivityCallback12doCollectionEv) +STUB("1F1hzq+jsgw", _ZNK7WebCore6JSNode7wrappedEv) STUB("1F4yweQoqgg", sceNpAppLaunchLinkIntInitialize) +STUB( + "1F880jMeenM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEED1Ev) +STUB("1FDLh7g440s", png_get_bit_depth) +STUB( + "1FDb9Jy1owA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEED2Ev) STUB("1FGvU0i9saQ", scePthreadMutexattrSetprotocol) STUB("1FH-82oV3PY", sceSdmaQueryWorkingBufferSize) +STUB( + "1FITx-pXXA0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEED1Ev) +STUB( + "1FNM5bF3nvU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEEaSERKSA_) +STUB("1FST2EMhfHk", _ZNK7WebCore6CookieeqERKS0_) +STUB( + "1FVEppDD0SM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEC1EPNS2_10LibContextE) +STUB( + "1FXBdXnti2Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEEaSERSA_) +STUB("1FYJc5IIjnE", _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeIPcPvEEneERKS7_) STUB("1FZBKy8HeNU", sceVideoOutGetVblankStatus) +STUB( + "1Fd9W3EIz3o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE5clearEv) STUB("1FeceR5YhAo", sceMouseMbusInit) +STUB("1Fh7A13lrEk", mono_aot_ReactNative_Modules_Vshunbox_trampolines) +STUB( + "1FkQgc1yllA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE4sizeEv) +STUB( + "1FsJuaSXfEY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEE7add_refEv) +STUB( + "1Fz0xfcDp+8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEEC1EPS8_PNS2_10LibContextE) STUB("1G3lF1Gg1k8", sceKernelOpen) STUB("1G3xnMBZpYI", sceShellCoreUtilGetPsStoreIconLayout) +STUB("1G5Prf1bClU", _ZNK7WebCore16HTMLInputElement20isDateTimeLocalFieldEv) +STUB( + "1G8Btka-o5c", + _ZN3sce2Np9CppWebApi7Matches2V117ResponseMatchTeam10setMembersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_14ResponseMemberEEEEE) +STUB("1GCdiq99pBE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEEC1EPNS2_10LibContextE) +STUB("1GGpdjyZslI", cairo_font_face_set_user_data) +STUB("1GL9pCFuiHQ", FT_Bitmap_Copy) +STUB( + "1GLT-IqP83I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE5clearEv) +STUB( + "1GPRJwdOvz4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEC1EPNS2_10LibContextE) +STUB("1GRQfw+bhcE", _ZN3sce2np10NpOnlineId13GetNpOnlineIdERKNS0_4UserEPS1_) +STUB("1GRro2frtE8", handler_block_trampoline_p) +STUB("1GYsjUC-HLM", FTA_Add_Module_pfr) +STUB( + "1Ga0R789piY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE5emptyEv) +STUB("1GbQ0KjO7Vs", _ULx86_64_r_uc_addr) +STUB( + "1Gdamb7X1tw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEED2Ev) +STUB( + "1GdqnUEYARc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEixEm) STUB("1Gfhi+tZ9IE", sceNpUtilGetDbgCommerce) +STUB("1GhiIeIpkms", _ZNSt16invalid_argumentD0Ev) +STUB("1GjD3Wj8bMg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEEC2EPKS6_) +STUB("1GkDCU-NVbI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEEptEv) +STUB("1GkIKiuqgBg", u_isMirrored) +STUB("1GkSfOATn5k", _ZN3sce2np14JsonStringImplD1Ev) +STUB("1Gm03etxDkU", _ZN3JSC18GCActivityCallback6cancelEv) +STUB("1GnFTITk50Y", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEEcvbEv) +STUB( + "1GpsmBaCBok", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEC2EPS8_) +STUB( + "1Gt-SHu2HPg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEEaSERKS9_) +STUB("1GuRWk-FBlI", _ZN3sce2Np9CppWebApi12Leaderboards2V123RecordScoreResponseBody10setTmpRankERKi) +STUB("1GzMA6ls7io", _ZN7WebCore19JSHTMLSelectElementC2ERKS0_) STUB("1H-+W4Y2Erg", sceBdSchedGetBackgroundCopyRequest) STUB("1H-LQ4r7-F8", sceFsUfsRecryptIsUnfinished) STUB("1H07-M8fGec", sceNpManagerIntGetAccountIdSdk) +STUB("1H5hvSfU6lA", _ZN7WebCore9HTMLNames45onwebkitplaybacktargetavailabilitychangedAttrE) +STUB("1HAhsV7n7IM", mono_aot_Mono_Securityplt) STUB("1HBNVdBWQVk", _sceLibcMspaceLock) +STUB("1HH1+iMik7U", _ZN7WebCore11MediaPlayer5pauseEv) +STUB("1HJmJsAhIVU", _ZN7WebCore15SQLiteStatement8bindNullEi) +STUB( + "1HKSrK+K9BM", + _ZN9Inspector25ConsoleFrontendDispatcher12messageAddedEN3WTF6RefPtrINS_8Protocol7Console14ConsoleMessageENS1_13DumbPtrTraitsIS5_EEEE) +STUB("1HL-sO1sAZU", _ZN7WebCore10ScrollView15setScrollOffsetERKNS_8IntPointE) +STUB( + "1HLuMqYH4II", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEC1Ev) +STUB("1HOjZES3dls", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_28ActivityFeedSharedVideoStoryEE8allocateEmPKv) +STUB("1HPPuRlzWW4", _ZN3JSC2VM18mapBucketSpaceSlowEv) +STUB("1HQ20rRMmb4", + _ZN7WebCore18JSHTMLVideoElement15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) STUB("1HRhAE4HYjg", scePerfPmcL2iGetCounterSelf) +STUB("1HSkObnLOC0", CryptographyDecryptAES128CBC_HS256) STUB("1HSvkN9oxO4", sceNetCtlUnsetStunWithPaddingFlagIpcInt) +STUB("1HTEM2lkcOQ", mono_get_exception_arithmetic) +STUB( + "1HWL+q7xOf8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE7popBackEv) STUB("1HWnwXRCrdI", sceMatMspaceCreate) STUB("1HXxo-+1qCw", sceAudio3dObjectUnreserve) +STUB("1HYDBvqdot0", utext_isLengthExpensive_67) +STUB("1HYEoANqZ1w", _Unlock_shared_ptr_spin_lock) +STUB("1HZ6sylVN4E", delegate_invoke_impl_has_target) +STUB("1HZn05Smfl8", u_vfscanf_u_67) +STUB("1HaOyLLh0iI", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V110Reputation12unsetPerGameEv) +STUB( + "1Hb1TwM5VtQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEE7get_refEv) +STUB("1HiP4YJ7c48", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_33ActivityFeedSharedScreenshotStoryEEneERKS4_) +STUB( + "1HjjfIxI2vM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEE11get_deleterEv) +STUB("1HngmisEcBY", _ZN9Inspector17BackendDispatcher8dispatchERKN3WTF6StringE) +STUB("1HpulLC0IWk", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOfferC2ERS5_) STUB("1HrxhQoPEBs", sceNpTrophy2SystemCheckCallback) STUB("1HvBtxJhxuQ", sceDataTransferTargetRequestStartTransfer) +STUB("1HvdZqSDGi0", __ubsan_handle_sub_overflow_abort) +STUB("1HwAXy03SyY", getenv_np) +STUB("1I1RjHIL-IY", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_16SessionAttributeEE7addressERKS3_) +STUB("1I4rtpjGrpg", GCC_except_table187) +STUB("1IAGE6dH8IY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEC2Ev) +STUB("1IB0U3rUtBw", __fedisableexcept) +STUB("1IEEu5KeTHM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUserC1ERS5_) +STUB("1IIKnMD2xqM", _ZN3WTF6String6appendEPKhj) +STUB( + "1INmoOVoj08", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEC2EPKS8_) +STUB( + "1ITP-OlehWk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEC2ERS7_) +STUB("1IW4zON5-74", _ZNK3sce2Np9CppWebApi12Leaderboards2V14User6toJsonERNS_4Json5ValueEb) +STUB("1IWsxK7VRoA", __sceAudioInVmicWrite) +STUB("1IgvI1I-Sss", unum_formatInt64_67) +STUB( + "1IhWRW076wg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEixEm) +STUB("1IlEK0xIx2M", izrule_getDynamicClassID_67) +STUB("1In1EqSE1CY", _ZN3sce7Toolkit2NP2V24Core7Request20DefaultRequestParams15INVALID_USER_IDE) +STUB("1Iv-JJC7joU", _ZN7WebCore8Settings41setAcceleratedCompositedAnimationsEnabledEb) +STUB( + "1IwGEEHdpq8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEE3getEv) +STUB("1Iz-n06N8C0", _ZN3sce2Np9CppWebApi7Matches2V120RequestPlayerResultsD2Ev) +STUB( + "1J-DjPd-2bw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "1J3UxCOiVAA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEEaSERKS9_) +STUB("1J54XnCD+DQ", GCC_except_table326) +STUB("1J6Ix6mepsw", _ZN7WebCore18JSHTMLInputElement9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("1J9TjAsLRzs", _ZN3sce2Np9CppWebApi6Common6VectorIiEC1Ev) +STUB("1JAZNsOKua0", _ZNK3sce3Xml3Dom8Document11getNodeTypeENS1_6NodeIdE) +STUB("1JEAww49Q-A", WKPageSetResourceCachingDisabled) STUB("1JGVbR1IEBk", sceNpIpcCheckCallback) +STUB("1JIYVmuZQDg", delegate_virtual_invoke_imt_8_p) +STUB( + "1JLtvE--OAE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEC2EPKS8_) STUB("1JNYgwRcANI", sceUserServiceSetVoiceRecognitionTutorialState) +STUB("1JV7Mv590Cc", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEEptEv) +STUB( + "1JWEIVctSqQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEC2EPS8_) +STUB( + "1JZE7XHsEsU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEEC2Ev) +STUB( + "1Jb2ckEqpyc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEC1EPS8_) +STUB("1Jbvipwn+Mg", _ZN7WebCorelsERN3WTF10TextStreamERKNS_16FilterOperationsE) +STUB( + "1JeIRN7X5lM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEE5resetEPS6_) +STUB("1JeltNNTV9w", + _ZNK3sce2Np9CppWebApi14SessionManager2V130ResponsePlayerSessionSpectator11getPlatformEv) +STUB("1JevuWL-iMg", uprv_toupper) +STUB( + "1Jqlm1YdDoo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEmmEv) STUB("1JtbJ0kxm3E", sceNpMatching2GetLobbyMemberDataInternal) +STUB( + "1Jv2xQ1jGew", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE10setContextEPNS2_10LibContextE) +STUB("1K057yzGT+I", mono_aot_System_Net_Httpplt) +STUB("1K0a99tZ9HM", _ZSt25_Rethrow_future_exceptionPv) +STUB("1K5ly63m6fo", cairo_stroke_extents) +STUB( + "1K6sVYJuYuM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEED1Ev) +STUB("1KC8p9GuGzg", ulocimp_toLegacyKey_67) +STUB( + "1KCdWn0oDBI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEE11release_refEv) +STUB( + "1KGo89EImFs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE6resizeEj) +STUB( + "1KL7qwfe+yc", + _ZNK3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfile12getaccountIdEv) +STUB( + "1KQsekMIxHI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEC2EPNS2_10LibContextE) +STUB("1KSBQVUUqBM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlotC1ERS5_) +STUB("1KUSL3RcrcU", _ZN3sce3Xml3Dom8NodeListC2ERKS2_) +STUB("1KWysXcgiJQ", _ZN3JSC7Symbols19toNumberPrivateNameE) +STUB("1KYfLN5YfnI", _ZN7WebCore28InspectorFrontendClientLocal8SettingsC2ERKS1_) +STUB( + "1KneJA8Bujk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE21intrusive_ptr_sub_refEPS9_) +STUB("1KngsM7trps", _ZNSt15_Num_float_base5radixE) +STUB( + "1Ko+sKZgqqs", + _ZN15AbstractStorage14StorageManager21NotifyStorageDetachedERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB( + "1Kz9q9IoyFc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEEC1ERSA_) +STUB("1L-Jusa98fE", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15NpSessionMemberEEeqERKS4_) +STUB( + "1L9pxrF6ZPU", + _ZN7WebCore19JSHTMLSelectElement25getOwnPropertySlotByIndexEPN3JSC8JSObjectEPNS1_9ExecStateEjRNS1_12PropertySlotE) +STUB("1LBVOD6fQok", EVP_sha256) STUB("1LChgwRxJs0", sceM4aacEncFlushWithPriority) +STUB("1LD5qP5aL0o", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19BandwidthD2Ev) +STUB("1LLZLmdJO38", __asan_set_shadow_f1) +STUB("1LMtZ8ohTHg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEE7add_refEv) +STUB( + "1LNH+p+9KAI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEC2EPNS2_10LibContextE) +STUB("1LSKpRp1Oj0", do_check_free_chunk) +STUB( + "1LTkGJjVRLY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEE3getEv) +STUB("1LXGEu7l1es", _ZN9Inspector15RemoteInspector29waitingForAutomaticInspectionEj) +STUB("1LXOYqj7rz0", _ZNK7WebCore9FloatQuad12containsQuadERKS0_) +STUB("1LXqEy7j8-E", _ZN3sce7Toolkit2NP2V28Commerce7Request25DisplayDownloadListDialogD2Ev) +STUB("1LaoVhbfoTo", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V510AnnotationEEC1Ev) STUB("1Lckz4hOWxw", sceVrTrackerSetDurationForStatusNotTracking) +STUB("1Li76cHWOz0", + _ZNK3sce2Np9CppWebApi7Matches2V123ResponseMatchStatistics19teamStatisticsIsSetEv) +STUB( + "1LiNjrgYxKc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEC2Ev) +STUB("1LiSfUnDEpM", _ZNK7WebCore19ResourceRequestBase8priorityEv) +STUB( + "1Licb106gbE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEE21intrusive_ptr_add_refEPS7_) +STUB( + "1LkPf2Z83JI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEneERKS9_) +STUB( + "1LkTUUovTg0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEEptEv) +STUB("1Ln1rE5DOM0", Java_java_util_zip_Deflater_getBytesWritten) +STUB("1LtdLnmdVYc", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V15Owner12setAccountIdEPKc) +STUB("1LvbNeZZJ-o", _ZNSt8numpunctIcE5_InitERKSt8_Locinfob) +STUB( + "1M0zmXHJw3o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEC1EPS6_PNS2_10LibContextE) +STUB("1M8YTpO-JyM", _ZNK7WebCore5Frame15layerTreeAsTextEj) +STUB( + "1M8pN5XZFi4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE4sizeEv) +STUB("1MGS8tK4wbk", _ZNK3sce2Np9CppWebApi6Common6VectorIiE5emptyEv) +STUB("1MHE7HPJf7s", mono_aot_System_ComponentModel_DataAnnotationsunbox_trampolines) STUB("1MMK0W-kMgA", sceSystemGestureAppendTouchRecognizer) +STUB( + "1MN76FxQ5rY", + _ZN8meta_gen11MsvPromoter7PromoteERKN23sceMetadataReaderWriter8MetadataERS2_P22MsvPromoteInnerContextP20MsvCancelInterface_tP19MsvStorageInterfaceP26MsvPromoteInnerInformation) +STUB("1MUTuFYINcs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEEC1Ev) +STUB( + "1MaHTftrX14", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE4termEv) +STUB( + "1Mb7OUaz-58", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE5getIdEv) +STUB( + "1MgMSE6CStE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "1MkSo--2MNI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData19unsetnpServiceLabelEv) +STUB("1Ml5nNkeImU", eglGetProcAddress) +STUB("1Mn-wSJLAIY", _ZNK3WTF7CPUTime23percentageCPUUsageSinceERKS0_) +STUB( + "1MsRyj8mqpo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEixEm) +STUB( + "1Mvp0zOhPwc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEeqERKS9_) +STUB("1MxNQj1dm+Q", mono_btls_x509_crl_get_revoked) +STUB( + "1MySiTA1W3U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE3endEv) +STUB("1N+ZUojw-IM", mono_aot_Sce_Vsh_ProfileCacheunwind_info) +STUB("1N22Cf1eF1w", __tsan_current_error_report_size) +STUB("1N7ft+SiHD0", curl_mime_free) +STUB( + "1N90tKXHd5M", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "1NB2eFyZerM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "1NBJEo2I1QI", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) STUB("1NE9OWdBIww", sceNetCtlRegisterCallbackV6) +STUB( + "1NFlJKXWi-I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEC1EPNS2_10LibContextE) +STUB("1NFvAuzw8dA", mbsrtowcs_s) +STUB( + "1NNHHZf0hx4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEppEv) +STUB("1NNR9occNS4", _Ux86_64_get_accessors) STUB("1NQg5a5nE2I", scePktMgrGetSeqNum) STUB("1NQwUyfrF6E", sceGameRightGetVersion) +STUB( + "1NTgBllAbCE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "1NUWPj1gBDM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("1NV7bbk0mS8", __tsan_unaligned_read16) +STUB("1NcnXq-00ag", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_22ConsumeChallengeResultEE17getAdditionalInfoEv) +STUB( + "1Neep6SY6xU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("1Nf0+rjfAs0", _ZN7WebCore46visibleImageElementsInRangeWithNonLoadedImagesERKNS_11SimpleRangeE) +STUB("1NgqWZM7bts", _ZN7WebCore16nextWordPositionERKNS_15VisiblePositionE) +STUB("1NkxGDvbMNc", + _ZN3sce2Np9CppWebApi7Matches2V128RequestTemporaryMatchResultsC2EPNS1_6Common10LibContextE) STUB("1NlbNxWzn7U", sceKernelIccGetCPMode) +STUB("1NmdZ6398b4", _ZN3sce7Toolkit2NP2V28Matching12Notification11RefreshRoomD1Ev) +STUB( + "1Nq4Cphb5+g", + _ZN3sce2Np9CppWebApi14SessionManager2V132ResponseGameSessionPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_25ResponseGameSessionPlayerEEE) +STUB( + "1NqFalUOzI8", + _ZN9Inspector22InspectorDebuggerAgent18continueToLocationERN3WTF6StringERKNS1_8JSONImpl6ObjectE) +STUB("1NraaTWJB9Y", __asan_locate_address) +STUB( + "1NtSTHekhlw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "1O0XY33UOUw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEixEm) +STUB( + "1O5UVcMC2xc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) STUB("1O96muPzhgU", sceNpLookupNetAbortRequest) +STUB("1O9g6WFku7c", _ZN9Inspector24CanvasFrontendDispatcherdlEPv) +STUB( + "1OEq4SO4EcM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB("1OFtPp2Mv10", _ZStL5sifunRSt8ios_baseNSt5_IosbIiE9_FmtflagsE) +STUB( + "1OJ5g71KizY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEE11release_refEv) STUB("1OLgvahaSco", sceNpWebApi2PushEventAbortHandle) +STUB("1ONFW86TETY", _ZN3sce2np3ipc17ServiceIpmiClient19WaitRequestForAsyncEiij) STUB("1OUW163iM+4", sceVideoOutSysGetPortStatusInfo_) STUB("1OXbuWLRxqI", sceCompositorReleaseCommandBuffer) +STUB("1OaCuIWdaT4", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE4sizeEv) STUB("1OcQaIYrTnY", sceSystemServiceChangeMemPstate) +STUB( + "1OcTHVoQUpY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) STUB("1Odcw19nADw", scePadGetInfo) +STUB("1Ohhg185yUQ", _ZNK7WebCore9FrameTree6parentEv) +STUB( + "1Oi0VX0Y-Gk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEE7get_refEv) +STUB("1OiEo5vYPQ8", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi20ParameterToJoinMatchC2Ev) +STUB("1OlBR8l8M5U", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEE11get_deleterEv) +STUB("1OlYGRE3vcY", UI_method_set_opener) +STUB("1OnILd2aib0", _ZTVN9Inspector32DebuggerBackendDispatcherHandlerE) +STUB("1OuEv4edjTs", _ZN3sce2Np9CppWebApi14SessionManager2V129GetPlayerSessionsResponseBodyD2Ev) +STUB("1Oxn7oHlVpY", rgctx_fetch_trampoline_rgctx_7_p) +STUB( + "1OyJt+3gWQs", + _ZN9Inspector22AuditBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) +STUB("1P-MUvbtyTM", _ZN3sce2np7RingBuf4ctorEv) +STUB( + "1P1dNZoSXz4", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("1P3PCHBviTo", + _ZN7bmalloc29StaticPerProcessStorageTraitsINS_25ARC4RandomNumberGeneratorEE7Storage8s_objectE) +STUB("1P5+IH8+TCc", _ZN7WebCore4BlobC1Ev) +STUB( + "1P8wwHM7De8", + _ZN7WebCore18TextureMapperLayer16paintIntoSurfaceERKNS_25TextureMapperPaintOptionsERKNS_7IntSizeE) +STUB( + "1PB1cJl7XiA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEEC1ERSB_) +STUB("1PGe55Cm1qI", + _ZN3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponseC1EPNS1_6Common10LibContextE) +STUB("1PI+ohm-1Vc", _ZN7WebCore8Document19removeAudioProducerEPNS_13MediaProducerE) +STUB( + "1PI5wp7-7N0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) STUB("1PNiQR-7L6k", sceHmdInternalMmapIsConnect) +STUB( + "1PO5GVJcndQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE8capacityEv) STUB("1PQY6npY6cE", sceMoveTrackerRecordSave) STUB("1PQhPdyNCj8", sceLncUtilReleaseCpuBudgetOfImeForBigApp) +STUB("1PRKLBG6NuE", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V18Variable8fromJsonERKNS_4Json5ValueE) STUB("1PX0NFNL1BQ", sceCompositorResetZoomCommand) +STUB("1PZkUODbkfA", WKStringIsEqualToUTF8CStringIgnoringCase) +STUB("1Pc10QJljKY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEE5resetEPS5_) +STUB("1Pc2TYyPh1w", WKWebsiteDataStoreSetResourceLoadStatisticsThirdPartyCNAMEDomainForTesting) +STUB( + "1PeraYLgJYQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBody6toJsonERNS_4Json5ValueEb) +STUB( + "1PfCscJJMG0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEEC1ERKSA_) +STUB("1PhMKcpW31Q", __asan_exp_store2) +STUB( + "1PiTPnLaFz8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEED1Ev) +STUB("1PiWxLaHTps", _ZNK7WebCore10RenderView12documentRectEv) +STUB( + "1Pj0QxzGVtk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEppEi) +STUB("1Pj8Q1rT658", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE5emptyEv) +STUB("1PjHjfI8ncQ", _ZN7WebCore15ResourceRequest41updateFromDelegatePreservingOldPropertiesERKS0_) +STUB("1Pk0qZQGeWo", sscanf) +STUB("1PqEfzQK4I4", _ZTVN7WebCore11DisplayList20EndTransparencyLayerE) +STUB( + "1PqjOygrgnQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEmmEv) +STUB("1PrEoSKt3-w", _ZN15AbstractStorage15HttpTransactionD1Ev) +STUB("1PvImz6yb4M", __gtdf2) STUB("1Pw5n31Ayxc", sceCoredumpDebugForceCoredumpOnAppClose) +STUB("1Q-ExO66G94", WKPreferencesSetEncryptedMediaAPIEnabled) +STUB( + "1Q0HilzLKSQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE6resizeEj) +STUB("1Q0kBa5eJ-g", mono_aot_Sce_Vsh_VideoServiceWrapperunwind_info) +STUB( + "1Q2MNj8NFMQ", + _ZN3JSC7JSArray27getOwnNonIndexPropertyNamesEPNS_8JSObjectEPNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("1Q7JNd9NM1o", _ZN3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponseD1Ev) +STUB( + "1QAcE53Py8o", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE5beginEv) +STUB("1QFKnDJxk3A", _ZN3sce2np9WorkQueueD1Ev) +STUB("1QHWkAXDxBg", JVM_FindLibraryEntry) +STUB("1QJWxoB6pCo", fputwc) +STUB("1QKDom3XNF8", _ZNSt13basic_ostreamIwSt11char_traitsIwEE12_Sentry_baseD2Ev) +STUB("1QPJreBoNXY", _ZN7WebCore11DisplayList9ClearRectD2Ev) +STUB("1QQ1Z9gJyUg", mono_domain_set_tls_offset) +STUB( + "1QTJb5AnCZo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEED1Ev) +STUB("1QTtdCh2PUQ", uprv_decNumberAnd_67) +STUB("1QYet5c7akM", _ZNK7WebCore14FrameSelection15selectionBoundsENS0_20ClipToVisibleContentE) +STUB("1QcrrL9UDRQ", iswupper) +STUB("1QeMhl0kTkU", ucnv_fixFileSeparator) +STUB("1QfyjHj40es", WKImageCreateCairoSurface) STUB("1QjhKxrsOB8", sceFontUnbindRenderer) +STUB( + "1Qrhaf3rnJ8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEmmEi) +STUB("1Qu-944GjEA", mono_aot_Sce_Vsh_SessionInvitationjit_got) +STUB( + "1QvsgEkPzUM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEC1Ev) +STUB("1QxBMWqn7ZU", _ZN3sce7Toolkit2NP2V24Core18getMemoryPoolStatsERNS3_15MemoryPoolStatsE) STUB("1Qy1jn47QWA", sceDbgUserChannelPrint) +STUB("1R2jChnq1K4", Java_com_sun_havi_ui_FreeTypeFontFace_pGetSupportedCharacterRanges) +STUB("1RDHXzjIkcM", _ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamTournamentD2Ev) STUB("1RGfzjJj4VE", sceUsbStorageGetMountPointOfShellCore) +STUB("1RNxpXpVWs4", __floatundidf) +STUB("1RO3nBwi2W4", _ZN7WebCore18TextureMapperLayer17setRepaintCounterEbi) +STUB( + "1RPdbfO8EZ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEED2Ev) +STUB("1RUCxsUinXw", ucal_close_67) +STUB("1RVx3WHq+mA", _ZN3WTF20protocolIsJavaScriptENS_10StringViewE) +STUB("1RXUUBFLawQ", SSL_CTX_callback_ctrl) +STUB("1RXyMbETa-U", Java_java_awt_GnmFontMetrics_getStringWidth) +STUB( + "1RYwSZCXU-I", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEneERKS9_) +STUB( + "1Ra3ltc9sDM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("1RcfrSujQzY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEC2Ev) +STUB( + "1RhiZ793D-U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE6resizeEj) +STUB("1RhlQHv339E", _ZNK7WebCore4Blob4sizeEv) +STUB("1RkOAp1Xu7s", JVM_SetArrayElement) +STUB( + "1RrfMI6QND0", + _ZN3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyC1EPNS1_6Common10LibContextE) STUB("1S2urF24zNQ", sceNpPushIntBeginInactive) +STUB("1S4FwqBv-LI", mono_aot_Sce_Vsh_Themeunbox_trampolines_end) +STUB("1S4w-l-dd4o", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData13isInitializedEv) +STUB( + "1S9-X7BqCyw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE3endEv) +STUB("1SCH3FYiVNQ", _ZNK7WebCore15AffineTransform8mapPointERKNS_10FloatPointE) +STUB( + "1SFyRaQDT3M", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser17getnpServiceLabelEv) +STUB( + "1SH+WQuoYTo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE4sizeEv) +STUB( + "1SJjoGNjP6s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEEC1ERSA_) +STUB("1SNozVB6JHU", _ZNK7WebCore27AuthenticationChallengeBase18proposedCredentialEv) +STUB("1SQbhRNy110", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEE3getEv) +STUB( + "1SRENV-88dg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("1SYKGOZeZ+4", _ZN3sce7Toolkit2NP2V27Ranking7Request11SetGameData8MIN_PCIDE) +STUB( + "1SfdGbSC+J0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEED2Ev) +STUB("1SgirvjxHGk", _ZN3sce7Toolkit2NP2V212EventsClient17EventShareFactory19MAX_SIZE_CONTENT_IDE) +STUB( + "1SqvaE+I5Zo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE5emptyEv) +STUB("1SrnHnVL2to", _ZN7WebCore10FloatPointC2ERKNS_8IntPointE) +STUB("1SsridDRBYQ", u_cleanup) +STUB("1Svur5RpEKE", pio4lo_hi) +STUB("1SwZkxAV910", _ZN3JSC10callSetterEPNS_14JSGlobalObjectENS_7JSValueES2_S2_NS_8ECMAModeE) +STUB( + "1Sy5d-dbQFk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEEC2Ev) +STUB( + "1T23P8JwWR8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("1TDo-ImqkJc", _Stdin) STUB("1TE3OvH61qo", sceNpTusGetDataForCrossSave) +STUB( + "1TElptMQapg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE5beginEv) STUB("1TFdFqQBGqY", sceSlimglCompositorSetEndOfFrameCommand) +STUB("1TFtbWTHbvs", _ZN3sce7Toolkit2NP2V29Challenge18ChallengeThumbnailC1ERKS4_) STUB("1TFyHtLzdvg", sceShareUtilityAdvanceWakeUpShareMenu) +STUB("1TG2As1NQkU", delegate_virtual_invoke_imt_m_3_p) +STUB("1TOp3pCsV7A", WKPreferencesSetImageControlsEnabled) +STUB("1TUn7RxLdVg", generic_trampoline_aot) +STUB( + "1TV8qHrMp7s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEC2EPS8_) STUB("1TVH3eVt1Mg", sceMatUnregisterResource) +STUB( + "1TVdln4cN84", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "1TWc5PCYluU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEmmEi) +STUB("1TaQLyPDJEY", _ZNSt6locale16_SetgloballocaleEPv) +STUB("1TapIX4HfOg", _ZN7CoreIPC15ArgumentDecoderD2Ev) STUB("1Tb7p2kCYw8", scePktMgrSetPacketSize) +STUB( + "1TcZHKLIbZU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEC2ERKS7_) +STUB("1TjLUwirok0", _ZN3sce2np8NpCommId5ParseEPS1_PKc) +STUB("1Tp96FbSvjk", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container19unsetTotalItemCountEv) STUB("1TpZWrOOCw0", sceMbusDebugGetInternalInfo) +STUB( + "1TrQo8eFHWU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("1Tw-GwQJvug", glStencilMaskSeparate) +STUB( + "1TxAC+X9ME0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEC2Ev) +STUB("1TxolxsUl8U", _ZN3sce7Toolkit2NP2V210Tournament25OneVsOneTournamentDetails8deepCopyERKS4_) +STUB( + "1TzkEQBFQIM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE21intrusive_ptr_sub_refEPS9_) +STUB("1U-s6o8XOcE", sysKernelGetUpdVersion) +STUB("1U0ISnl-L-A", _ZN3WTF10StringImpl23convertToASCIILowercaseEv) +STUB("1U1HXAR-PdU", _ZN3JSC18PropertyDescriptor21setAccessorDescriptorEPNS_12GetterSetterEj) +STUB("1U1RgLXZ+nk", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_28AdditionalSessionInformationEEC2Ev) STUB("1U5cFdTdso0", sceUserServiceGetDefaultNewUserGroupName) +STUB( + "1U8njk0UxWE", + _ZN9Inspector22InspectorDebuggerAgent18getFunctionDetailsERN3WTF6StringERKS2_RNS1_6RefPtrINS_8Protocol8Debugger15FunctionDetailsENS1_13DumbPtrTraitsIS9_EEEE) +STUB("1UA484Q++FQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEEeqERKS7_) +STUB("1UAzCISVNYI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEC2ERS7_) +STUB( + "1UCD4cyWq6I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEE11get_deleterEv) +STUB( + "1UCSrQLOvJU", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionPropertiesD2Ev) +STUB( + "1UDPKSu6mpM", + _ZN7WebCore14DOMCacheEngine15queryCacheMatchERKNS_15ResourceRequestERKNS_3URLEbRKN3WTF7HashMapINS7_6StringES9_NS7_10StringHashENS7_10HashTraitsIS9_EESC_EERKNS_17CacheQueryOptionsE) +STUB("1UFWAsaTuXg", + _ZN9Inspector21InspectorConsoleAgent10countResetEPN3JSC14JSGlobalObjectERKN3WTF6StringE) +STUB("1UHYiU-NGX8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEEC2EPS6_) +STUB("1UKzOMAA3bM", WKPageSetGapBetweenPages) +STUB("1ULaJ4WPLtI", _ZN7WebCore19ResourceRequestBase13partitionNameERKN3WTF6StringE) +STUB( + "1UNaMv2qh6k", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEEaSERKSF_) STUB("1UOnecNlNW0", sceKernelGetAslrStatus) +STUB("1UWX9v7b1aQ", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11TusVariableEEC2Ev) +STUB("1UajXsDYN6U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEEcvbEv) +STUB("1UchwEvKOCY", _ZNK7bmalloc11IsoTLSEntry6extentEv) +STUB( + "1Uf1EjQYRQI", + _ZN3sce2Np9CppWebApi11UserProfile2V131GetBlockingUsersResponseFactory7destroyEPNS3_24GetBlockingUsersResponseE) +STUB("1UgANPJpHwY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEEC2Ev) +STUB( + "1UiVXsiv7WQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE5beginEv) STUB("1Uj1C5XQkAA", sceFsUnbindPackages) +STUB( + "1UkG-il0S2c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEmmEv) +STUB( + "1Ul8RXMYjis", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEC2EPS8_) +STUB("1UlNcIzRCOA", mono_aot_Sce_Vsh_Webbrowser_XutilWrapperplt) +STUB("1UqsL1I+qec", WKNavigationGetTypeID) +STUB( + "1Uu7++69sP8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEC1Ev) STUB("1UyDc79Q4B4", sceMbusRegisterDriver) +STUB("1V3RWo8UOV0", rgctx_fetch_trampoline_mrgctx_94) +STUB( + "1V8AVl849IE", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions16getincludeFieldsEv) STUB("1VBuIy9foww", sceNpIpcDeleteRequest) +STUB("1VG+T070SBU", _ZN7WebCore17PageConsoleClientD0Ev) STUB("1VM0h1JrUfA", sceSslCheckRecvPending) +STUB("1VPntzhCXxI", _ZN3WTF7Unicode18decodeUTF8SequenceEPKc) +STUB( + "1VQi6zv6Oa8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEC2Ev) +STUB("1VVLHbcbJKc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEEaSERKS6_) +STUB( + "1VWdIfQ1bHg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEE11get_deleterEv) +STUB("1VWksZCjUvo", mono_custom_attrs_from_param) +STUB( + "1VbEHp0e18w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEC1Ev) +STUB( + "1Vf8lvdn474", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS2_6VectorINS5_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS5_INS8_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "1VfFnXsph4Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEED1Ev) +STUB( + "1Vj9gdT8dXU", + _ZNK9Inspector17ScriptDebugServer36handleExceptionInBreakpointConditionEPN3JSC9ExecStateEPNS1_9ExceptionE) +STUB( + "1Vl8+APpviM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEC1EPS6_PNS2_10LibContextE) +STUB("1VuIbuS2Ypg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging16GameDataMessagesEED2Ev) +STUB( + "1Vy8iZTkBUU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "1VzUZ-t2SRs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEC2EPKS8_) +STUB("1WAjyy8cyX8", + _ZN3sce2Np9CppWebApi14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyD2Ev) +STUB("1WCDRJQQWwM", + _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead28getReservationTimeoutSecondsEv) +STUB( + "1WChnFq22OE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEplEm) +STUB("1WCmXgJBXH0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEC1ERKS7_) +STUB( + "1WDYjlbvL90", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEE7add_refEv) +STUB( + "1WE1q38+x7U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE5emptyEv) +STUB( + "1WKuJMLVtwo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("1WM6fw+AXm0", _ZNK7WebCore10FileHandlecvbEv) +STUB( + "1WMBbvN27hk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEC2ERS7_) +STUB( + "1WQHkmaHT3I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE) STUB("1WXYJN+b-e0", ScePsmMonoStringFromUtf16) +STUB("1WY2wi+4t9o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEEC2EPS4_PFvS6_EPNS2_10LibContextE) +STUB( + "1Wbm-fnBLPU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "1Wij5bpNZbk", + _ZN7WebCore21SerializedScriptValue6createERN3JSC14JSGlobalObjectENS1_7JSValueENS_22SerializationErrorModeE) STUB("1WsleK-MTkE", sceNgs2GeomCalcListener) +STUB("1X+GW1hdTlM", goby_DeleteLink) +STUB( + "1X2M9ta9OYY", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "1X2g+6cmcpU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "1XCFlKVIi0Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEdeEv) +STUB("1XCz6Gk0Lt4", FT_Done_Library) +STUB("1XDDDDGTymc", _ZN7WebCore8SVGNames10targetAttrE) +STUB( + "1XJ6huZVErw", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToSendPlayerSessionMessage10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_52PostPlayerSessionsSessionIdSessionMessageRequestBodyEEE) +STUB( + "1XKwLo8PIjo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "1XP7MJHTPds", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEC2EPS6_PNS2_10LibContextE) +STUB( + "1XPBn8v-VvA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEE6assignEPSA_PFvSC_EPNS2_10LibContextE) +STUB("1XPu7km4-rY", mono_aot_Sce_Vsh_Np_Tmdbunbox_trampolines_end) +STUB("1XQEj7-jjXc", _ZN7WebCore19JSDOMMatrixReadOnly4infoEv) +STUB( + "1XW9+N0gKj4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEE5resetEPS9_) +STUB("1XWGeZDA09Q", _ZN7WebCore6Path2DC2ERKNS_4PathE) +STUB("1XYVEI923n0", mono_btls_key_get_bytes) STUB("1Xe+XZ1oI28", sceNpAsmGetServiceIdInfo) +STUB("1Xe4M+2mfNo", _ZNK9Inspector15ScriptArguments13argumentCountEv) +STUB("1XgfJXwnZio", _ZN7WebCore19JSAnimationTimelineaSERKS0_) +STUB("1XlvS52WhEE", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats20unsetFrequentlyMutedEv) STUB("1Xmb76MHXug", sceHmdInternalGetDebugTextMode) +STUB( + "1XmpfrWipLc", + _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities17getacceptLanguageEv) +STUB("1Xn140jhfYs", Java_java_net_Inet4Address_init) STUB("1XsGBdpfDsU", sceNpManagerIntInit) +STUB("1XupapsrvhU", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEEC2Ev) +STUB("1XvItBGOHII", _ZN7WebCore18PluginInfoProviderC2Ev) +STUB("1XwHaycrETg", YGJustifyToString) +STUB("1XziIA7gRp0", _ZN3JSC7Symbols23Float64ArrayPrivateNameE) +STUB("1Y5FTgmGNp4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEEeqERKS6_) +STUB("1Y6ds6X6q+8", WKWebsiteDataStoreGetDefaultDataStore) +STUB("1Y8HtIwOznY", mono_aot_Sce_Vsh_MorpheusUpdWrapperunbox_trampoline_addresses) +STUB("1YDkzlcc8YY", u_strspn) +STUB("1YEU5F0Bm98", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlotD1Ev) +STUB("1YFXTueqrU8", _ZNK7WebCore22EmptyFrameLoaderClient12canCachePageEv) +STUB("1YHfWhct218", + _ZN3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinition10setboardIdEi) +STUB( + "1YHxDRfU3eo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEneERKS9_) +STUB("1YLjy4cysZM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEC1ERS7_) +STUB("1YNe79eX1K4", tz1) STUB("1YO1ZDQXErs", sceAudioOutEnable3DAudioForUser) +STUB("1YPZmOcxlBE", rgctx_fetch_trampoline_mrgctx_15_p) +STUB("1YQJbkuXzWI", WKStringIsEmpty) +STUB("1YT1zLJRrvY", u_snprintf_u_67) +STUB("1YV2oywzRzs", _ZN3sce7Toolkit2NP2V28Matching7Request15SendRoomMessageC1Ev) +STUB( + "1YYG2nn+RLY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEED1Ev) +STUB( + "1YZFFZJ30Ns", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEC2EPS8_) +STUB("1YezZ6DJXgY", _ZNK3sce2np4Cond6IsInitEv) +STUB("1YgG-kRZn1Q", _ZNK3JSC12JSRopeString23resolveRopeToAtomStringEPNS_14JSGlobalObjectE) +STUB("1Z+o4MCfau4", mono_aot_System_Reactive_Interfacesjit_code_end) +STUB( + "1Z-ZRnYadZk", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToCancelTicket10initializeEPNS1_6Common10LibContextEPKc) +STUB( + "1Z4PpqWUkpk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEE7get_refEv) STUB("1Z4Xxumgm+Y", sceNpMatching2GetLobbyMemberDataInternalList) +STUB("1Z7QTIKnJbI", + _ZN3sce2Np9CppWebApi14ConnectAccount2V216PartnerTokensApi26ParameterToGetPartnerTokenC2ERS5_) +STUB( + "1ZAXr7CBYR4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "1ZG3jCQtKPg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEC1EPKS8_) +STUB("1ZKVjZUWq+M", mono_lookup_icall_symbol) +STUB("1ZKcxNlKAHY", _Atomic_thread_fence._Guard) +STUB("1ZMchlkvNNQ", _ZN10__cxxabiv117__array_type_infoD1Ev) +STUB( + "1ZOjxb5kVLs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEED1Ev) +STUB( + "1ZSdBPbQtvY", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetAccountId2OnlineId13isInitializedEv) STUB("1ZWN9dK5-Sc", sceSulphaMessage) +STUB( + "1ZYLAwew284", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEED2Ev) +STUB( + "1ZbRETgcVXA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEE11release_refEv) +STUB("1ZiX4EoLQFo", mono_aot_Sce_Vsh_ShellCoreUtilWrappermethod_addresses) +STUB( + "1Zlm6VakIAs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("1Zpt0CB5pRo", _ZN3sce7Toolkit2NP2V28Matching7Request17KickOutRoomMemberC2Ev) +STUB("1Zt8CFweQLw", _ZN12video_parser7cVpUtil12vp_ff4_fopenEPKcPPv) +STUB("1ZtSG6Gh91o", ubrk_previous_67) +STUB("1ZuxxHKBb9g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEaSERKS7_) +STUB("1Zy6+G3PD0M", _ZNK7WebCore23FrameLoaderStateMachine28creatingInitialEmptyDocumentEv) +STUB("1Zz9WSXWtT8", _ZN3sce7Toolkit2NP2V211UserProfile7Request24DisplayUserProfileDialogD2Ev) STUB("1a+iY5YUJcI", sceNpCondDestroy) +STUB("1a-3vBlKHGk", rgctx_fetch_trampoline_mrgctx_23_p) +STUB("1a09+paCT5k", WKBundleFrameContainsAnyFormControls) +STUB("1a50julZ2JI", _ZN3WTF8timeClipEd) +STUB( + "1a5hFKC5SdU", + _ZN7WebCore27TranslateTransformOperation6createERKNS_6LengthES3_NS_18TransformOperation13OperationTypeE) +STUB("1aALDrKbOb4", _ZN3JSC22optimizeNextInvocationEPNS_9ExecStateE) +STUB( + "1aDO1TFGXU0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE8pushBackERKS8_) +STUB( + "1aJfxbq4PSo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEC1EPS8_) +STUB( + "1aMBHREa1sU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEE11release_refEv) +STUB("1aPXW6zlPz4", _ZN7WebCore16FileReaderLoaderC1ENS0_8ReadTypeEPNS_22FileReaderLoaderClientE) +STUB("1aPt-pdEg4I", _ZN3WTF15base64URLEncodeEPKvjRNS_6VectorIcLm0ENS_15CrashOnOverflowELm16EEE) +STUB( + "1aWcBl23wgg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEEcvbEv) +STUB("1aYJxRI69x0", _ZN7WebCore12PrintContext28computePageRectsWithPageSizeERKNS_9FloatSizeEb) +STUB( + "1aatPmEHQ6Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEED2Ev) +STUB( + "1ackgM60O1c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEE7add_refEv) +STUB("1aewkTBcGEY", CERT_CompSubjectAltNamesExact) +STUB("1aiL+Rc87Zg", _ZN3WTF28removeLanguageChangeObserverEPv) STUB("1aifBDr9oqc", sceNpManagerIntAuthGetAuthorizationCode) +STUB("1apa5tXB4mc", _ZN23sceMetadataReaderWriter12getMimeTypesERKSsiPi) +STUB("1atFu71dFAU", _ZN3sce2np6Handle7DestroyEv) +STUB("1axY8yqPUNI", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEEdeEv) +STUB("1b+IhPTX0nk", _FXp_addx) +STUB("1b0arrvb5sY", _ZN3sce7Toolkit2NP2V23TUS12TusVariablesD1Ev) +STUB( + "1b1h73wta6g", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate9setGlobalERKNS1_6Common12IntrusivePtrINS3_29MatchCompletionRatePropertiesEEE) +STUB( + "1b1p+qCI-r8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEEdeEv) STUB("1b2I4GGnkw4", sceFsDeviceAlignedPread) +STUB( + "1b8MrxtWGJ4", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions17setacceptLanguageEPKc) +STUB( + "1b8c3VligbU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEED2Ev) +STUB( + "1bB8-JL0aoU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEaSERKS7_) +STUB("1bCfZiqfPT4", _ZN7WebCore22SkewTransformOperationD1Ev) +STUB( + "1bG0u27AYsQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEC2Ev) STUB("1bG5j0mzOF0", sceBluetoothHidSetFeatureReport) +STUB("1bG95FiZS-k", WKWebsiteDataStoreRemoveFetchCacheForOrigin) +STUB("1bGjhJ77Y-s", WKPreferencesGetPrivateBrowsingEnabled) +STUB("1bGwV8a95lg", _ZN3sce7Toolkit2NP2V212ActivityFeed15PlayedWithStory18TITLE_NAME_MAX_LENE) +STUB("1bLnwSQTCPs", unorm2_quickCheck_67) +STUB("1bNH47yLJRs", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request14PostPlayedWithC1Ev) +STUB("1bPVOU9fxjU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEixEm) +STUB( + "1bUFLMKJbUY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEppEv) +STUB("1bcZtkf-dWQ", ubidi_writeReordered_67) +STUB("1bf+c7ebx0A", _ZNK3sce2Np9CppWebApi11UserProfile2V113BasicPresence12getInContextEv) +STUB("1bh1IH8NXHc", _ZN3WTF11Persistence7Decoder6decodeERd) +STUB( + "1bhBtqfCSFI", + _ZNK3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody14getCustomData2Ev) +STUB("1bhiDXKU+vc", _ZN12video_parser13cVideoMetaVWGC2EPNS_18cMp4FFLHndlManagerE) +STUB( + "1biPdT7EVpA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB("1bnO4QxpHUk", _ZN3sce7Toolkit2NP18VoucherInputParamsC1Ev) +STUB("1brqm+pqVYU", + _ZN8meta_gen11MsvPromoter13setValuesMetaERN23sceMetadataReaderWriter8MetadataEP10KeyValue_ti) +STUB( + "1bvBx1RRfi8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "1c+6I3Ajqk0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEEaSERSA_) +STUB("1c+lQLHbgHc", il2cpp_thread_walk_frame_stack) +STUB( + "1c+osTQtGnc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEEcvbEv) +STUB("1c-lvc-RwAQ", WKPreferencesGetMinimumFontSize) +STUB("1c1C3kTl+4s", _ZN8meta_gen11MsvPromoter8FinalizeEP22MsvPromoteInnerContext) +STUB("1c1y2m9nMOM", _ZNK3sce2Np9CppWebApi7Matches2V14Task6toJsonERNS_4Json5ValueEb) STUB("1c2E1ghXt90", sceNpEntitlementAccessRequestConsumeEntitlement) +STUB("1c69bJ6S5ro", il2cpp_type_get_class_or_element_class) +STUB("1c78OwwgloU", mono_aot_Sce_PlayStation_PUIplt) +STUB( + "1c7OxxtwHps", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM23AccessibilityProperties7InvalidEEEN3WTF8OptionalIT_EERKNS6_6StringE) +STUB( + "1c7pDSeRyMk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE5beginEv) STUB("1c8o7fQHtME", scePlayReadyDomainJoinGenerateChallenge) +STUB("1cBDX0UvFXE", _ZN7WebCore11JSDOMWindow23visitAdditionalChildrenERN3JSC11SlotVisitorE) +STUB("1cM4w8WXkpk", _ZN3sce7Toolkit2NP2V210Tournament15TeamVsTeamMatchC2Ev) +STUB( + "1cNQz4uvjPU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEmmEv) +STUB("1cQewfWgOGk", _ZN7WebCore9HTMLNames15onmouseoverAttrE) STUB("1cS7W5J-v3k", sceHmdDistortionGetWorkMemoryAlign) +STUB("1cTKbqtPr1o", + _ZN15AbstractStorage15FacebookContent12readExternalESt10shared_ptrINS_7ContentEE) +STUB( + "1cVJ1mHwILA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEneERKS9_) +STUB("1cYzn-QdLzE", delegate_virtual_invoke_14) +STUB( + "1cZGJCBDRsY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEE21intrusive_ptr_sub_refEPS7_) +STUB("1ceNilIyayw", twop52) +STUB("1cgmjjApApo", JNU_PrintClass) +STUB( + "1ckSp29WKXA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEplEm) +STUB("1crJbUuDMoE", _ZNK3sce2Np9CppWebApi11UserProfile2V114PersonalDetail13lastNameIsSetEv) +STUB( + "1cvbiySvpKY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEixEm) +STUB("1d+M3jUG4vw", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData8getrangeEv) +STUB("1d7POT3SzGE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEC2ERKS7_) +STUB("1d7jXAh8SH8", GetUsbThumbnailEntryListLib) +STUB( + "1d8eWX6DTqg", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEiRNS2_10LibContextEPT_m) STUB("1d8i5kbJJ0w", sceDataTransferTargetRequestPrepareTransfer) +STUB("1dCYHXYPqRQ", _ZN7WebCore21SerializedScriptValueD1Ev) +STUB("1dDqFMD4gVY", _ZNK7WebCore6Region10intersectsERKS0_) +STUB( + "1dFEHRWxzeQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE10setContextEPNS2_10LibContextE) STUB("1dMndqL-QgE", sceNpWordFilterCensorComment) +STUB("1dOqczDeTh0", _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities8Activity10getMatchIdEv) +STUB( + "1dVNzWMPHXA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB( + "1dXLRvNHJYY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEmmEi) +STUB("1dY2KJfkgMM", _ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE4_RepES3_cm) +STUB("1dZbDfJehVw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEaSERKS7_) +STUB( + "1df0mo3EMqY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE21intrusive_ptr_add_refEPSA_) +STUB("1dfiJ5CzrLs", + _ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors20unsetMissingElementsEv) +STUB("1dmShONVJEc", JSObjectDeletePropertyForKey) +STUB("1dq4iQIG88U", _ZN3WTF6String23make16BitFrom8BitSourceEPKhm) +STUB("1dtMfijLxHg", _ZN3sce7Toolkit2NP2V210Tournament4TeamC2Ev) +STUB("1dtq0xFWSNU", glTexParameterf) +STUB("1dwTMlTk5No", _ZN3sce2Np9CppWebApi6Common12FutureResultIiE4termERKiPNS2_10ThreadPoolE) +STUB( + "1dzHDLangGw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEixEm) +STUB( + "1e-VtN099xk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEneERKS9_) +STUB("1e-q5iIukH8", wcstoumax) +STUB( + "1e06t-CU-oM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEixEm) STUB("1e2BNwI-XzE", sceHttpSendRequest) +STUB("1e46hRscIE8", CA_MGMT_keyBlobToDER) STUB("1e7CmFlJveU", sceShellCoreUtilNavigateToAnotherApp) +STUB( + "1e7m0B8Kb+g", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEneERKS9_) +STUB("1e8y0NYw9II", upvec_compactToUTrie2WithRowIndexes_67) STUB("1eDFI2b1+R4", sceDepthCalculateRectificationInformation) +STUB("1eEXfeW6wrI", _ZNKSt7collateIcE10do_compareEPKcS2_S2_S2_) +STUB( + "1eQWQoJjq0k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE21intrusive_ptr_add_refEPS9_) +STUB("1eQgdcfS--s", mono_aot_Sce_Vsh_Orbis_BgftAccessorunbox_trampoline_addresses) +STUB( + "1eRB+eocHOQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEE7get_refEv) +STUB("1eVdDzPtzD4", _ZNSt8numpunctIcEC2Em) +STUB( + "1ecpta6YgJc", + _ZN3sce2Np9CppWebApi14SessionManager2V124GameSessionPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_17GameSessionPlayerEEE) +STUB( + "1eeYRTvBQ+c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEC2Ev) +STUB("1eejHQ3QcE8", _ZN7WebCore20HTMLTableCellElement10setColSpanEj) +STUB( + "1efiKIiZ8UQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB("1ehuzhdCbSQ", mono_btls_ssl_set_bio) +STUB("1elRZTc80zs", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setAlignedSubtitle) STUB("1eoAje5ctyA", sceSystemServiceIsBgmCpuBudgetAvailable) +STUB("1erlMh7Nvxs", unorm2_normalize_67) +STUB( + "1ewXIqLgvLA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEcvbEv) +STUB("1exRdv739QI", _ZL10_new_array) STUB("1f2V6tO1-yg", _sceLibcAtexitMutexInit) +STUB("1f8FjJ-pndc", _ZN3sce2Np9CppWebApi13InGameCatalog2V59PublisherC2EPNS1_6Common10LibContextE) +STUB("1fD0PsNjs50", _ZN9Inspector31createScriptCallStackForConsoleEPN3JSC9ExecStateEm) +STUB( + "1fSMXUsmn68", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEneERKS9_) +STUB("1fUTttRzIKE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEEC1Ev) +STUB("1fWSjFvwjlE", _ZN3sce7Toolkit2NP2V27Ranking7Request11SetGameData14MAX_NUM_BOARDSE) +STUB("1fWncoBQYug", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEE5resetEPS6_) +STUB("1fXdpOk0pR8", _ZN7WebCore14JSWebAnimation6s_infoE) +STUB("1fYwU-7TWsM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEEppEv) +STUB("1fer52I2524", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBodyD1Ev) +STUB("1flP9FSEUx4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEE3getEv) +STUB( + "1fnlA5TnsRs", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersC1ERS5_) +STUB("1fxTJU+D6n0", _ZN7WebCore28InspectorFrontendClientLocal8SettingsD0Ev) +STUB("1fyEy3F+G+g", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEEdeEv) +STUB("1g0z4DFlFKk", _ZN7WebCore13StyledElement10cssomStyleEv) +STUB( + "1g2YFGH5fKA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("1g2ot19eUEk", _ZN7WebCore12EventHandler16handleWheelEventERKNS_18PlatformWheelEventE) +STUB( + "1g5outKYdes", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEE11get_deleterEv) +STUB("1g6NsJ3kXVY", + _ZN3JSC8Bindings13RuntimeObject20fallbackObjectGetterEPNS_9ExecStateElNS_12PropertyNameE) +STUB("1g70leu-4AY", _ZN3sce2Np9CppWebApi14SessionManager2V122GameSessionPushContextD2Ev) +STUB("1gAHtDH-jxM", mono_aot_Sce_Vsh_Orbis_ContentManagermethod_addresses) +STUB("1gAJb1uKyGo", FTA_Add_Module_bdf) +STUB("1gD19bEA24U", ucnv_io_countKnownConverters_67) +STUB("1gDLLT0N69M", _ZN3JSC8Debugger20setSuppressAllPausesEb) +STUB("1gHYfo8cy3Y", mono_aot_System_ServiceModel_Internalsplt) STUB("1gL5PwYzrrw", sceNpScoreRecordGameDataAsync) +STUB( + "1gOMP3lQkZM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEEC2Ev) +STUB("1gWEHIaOQh0", _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession15unsetSearchableEv) +STUB( + "1gWXaUsPWLw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB("1gXYOYMR+m8", JSScriptEvaluate) +STUB( + "1gY6fDu7c2k", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE8capacityEv) +STUB("1gYJIrfHxkQ", _ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2Em) +STUB("1gZ4CtaI+r4", _ZN7WebCore15HTTPHeaderFieldD1Ev) +STUB("1gZYkI0X540", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEEC1EPS5_PFvS7_EPNS2_10LibContextE) +STUB("1gexBhk9t58", _ZN3sce7Toolkit2NP20ModifySessionRequestC1Ev) +STUB("1gfowbDUZAI", mono_thread_detach) +STUB( + "1gk6Kn5zEE0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEdeEv) STUB("1gkbLH5+kxU", sceHmdInternalRegisterEventCallback) +STUB( + "1glriftR-jM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEC1EPS8_) +STUB("1gpZrBCNmZ4", mono_aot_Sce_Vsh_Np_Asmmethod_addresses) +STUB("1gpwVJ3H8lY", Java_java_awt_GnmGraphics_nativeSetComposite) +STUB("1gttdimsq2s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEEC1Ev) +STUB( + "1gtyxQwYgzc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("1gu5jfPHPUE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEEC1ERKS9_) +STUB("1gwhwMnKiyM", _ZN3sce2Np9CppWebApi6Common8IteratorIjEppEi) +STUB( + "1h+EfOXG-eI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEE7add_refEv) +STUB( + "1h+K4HAL+Cc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE4sizeEv) +STUB( + "1h0YOwifrJs", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB( + "1h5VSpNJNFc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEC1EPS6_PNS2_10LibContextE) +STUB("1h8hFQghR7w", _ZSt12setprecisioni) +STUB("1h8m1KuIR9o", eglSwapInterval) +STUB("1hAznJNzbI8", glUnmapBuffer) +STUB( + "1hDlituK+Fg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEC1EPKS8_) STUB("1hE5Sdn4U3U", sceVdecCoreSyncDecodeOutputSw) +STUB("1hFPolUHb8A", _ZN7WebCore9HTMLNames8spanAttrE) +STUB("1hGl0cHW-7c", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEEplEm) +STUB("1hGmBh83dL8", _Plsw) +STUB("1hPemFIVUys", _ZN7WebCore9FrameView6createERNS_5FrameE) +STUB("1hRl0U15mqk", + _ZN3sce2Np9CppWebApi14IdentityMapper2V311PsnWebErrorC1EPNS1_6Common10LibContextE) +STUB( + "1hTNoqAo5nw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE5clearEv) +STUB("1hTsXh-m4xY", _ZN3sce2Np9CppWebApi14IdentityMapper2V312AccountIdMap12setAccountIdERKm) +STUB( + "1hU8awyVk6k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "1hV080tyFsE", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer19unsetacceptLanguageEv) +STUB( + "1hVd+ogdk94", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations26setinvitationInvalidFilterEPKc) +STUB("1hXoS-xL7zA", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_22FriendsRankInformationEE3getEv) STUB("1hdjgLpYoY0", sceAudioOut2GetAmbisonicsEncodeCoefficients) +STUB("1hduUI-9KPY", bemp2sys_packetizer_release) +STUB( + "1he54+jPxtc", + _ZN9Inspector17BackendDispatcher6createEON3WTF3RefINS_14FrontendRouterENS1_13DumbPtrTraitsIS3_EEEE) +STUB("1hf4m4g-Akk", uregex_setFindProgressCallback_67) +STUB("1hhDlnY9NRw", _ZN3sce2Np9CppWebApi13InGameCatalog2V515ContainerRating8setTotalERKi) +STUB("1hjfiPw68UE", __tsan_func_entry) +STUB("1htg-v-D51A", _ZTVN7WebCore17FrameLoaderClientE) +STUB("1hulS01us-4", glIsProgram) +STUB( + "1hz+TzTiCv0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "1hzPVWZ2IzM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB( + "1hzQtsxkH3Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("1i-MQzGms+I", rgctx_fetch_trampoline_rgctx_81) STUB("1i0rfc+mfa8", sceSaveDataCheckSaveDataBroken) +STUB( + "1i2wDBeAMnE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB( + "1i4fk9HieDg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE5eraseENS2_8IteratorIS6_EERS9_) +STUB("1i7dtYx3cts", _ZN23sceMetadataReaderWriter8Metadata8getFieldEiRSsRNS_5ValueERb) STUB("1i7kmKbX6hk", sceNpScoreAbortRequest) STUB("1iDLkHJ4gbA", sceAt9EncQueryMemSize) +STUB("1iHBAKrdE90", _ZN3sce2np10CancelLockD2Ev) +STUB( + "1iK7RpJgQ0g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("1iQYl+DC2iY", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEEC1Ev) +STUB("1iRAqEqEL0Y", __lshrti3) +STUB("1iRI9Df-bZQ", _ZN3sce2np14JsonNumberImplD1Ev) +STUB("1iTehbdJsN4", _ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetailD1Ev) +STUB("1iXzZQ8lIos", _ZNK3sce2Np9CppWebApi11UserProfile2V112BasicProfile6toJsonERNS_4Json5ValueEb) +STUB("1iYJf4XeUxk", uset_containsSome_67) +STUB("1ic8FohIVJU", mono_aot_Sce_Vsh_SessionInvitationunwind_info) +STUB( + "1if+jTEvH8c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEED2Ev) +STUB( + "1ioWe8vw9ac", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEplEm) +STUB( + "1iq5Jtw4jVs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEEdeEv) +STUB("1itFJ6klpO0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEEC1EPS5_) +STUB( + "1iv4Y1qTLlQ", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "1ivgIy9ciEA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEEC1Ev) +STUB("1j+o52TClOU", gxv_module_class) +STUB("1j18fB0HvlE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEE11release_refEv) STUB("1j3S3n-tTW4", sceKernelGetTscFrequency) STUB("1j4DZ5dXbeQ", sceNetConfigWlanAdhocPspEmuGetWakeOnWlanInfo) +STUB( + "1j5Y5STtC8U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEED1Ev) +STUB( + "1j83+l8Idy8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("1j8J4AKdl2Y", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer10unsetlimitEv) +STUB("1jBtH41KASU", mono_aot_Newtonsoft_Json_PlayStationunbox_trampolines) +STUB( + "1jBtutBLeEE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEC2Ev) +STUB( + "1jCDC4EqZ2Y", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) STUB("1jOK01zGM5I", ScePsmMonoTypeIsValueType) +STUB("1jUJO+TZm5k", _ZTSSt5ctypeIwE) +STUB("1jZ9heHESWw", _ZN7WebCore9HTMLNames16ontimeupdateAttrE) +STUB("1jbXP-SqEwM", il2cpp_class_get_fields) +STUB("1jf1Yan1IyI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEEcvbEv) STUB("1jfXLRVzisc", sceKernelUsleep) +STUB("1jmC2QcpRl0", FT_Vector_Length) +STUB("1jn2Jw6t5lg", + _ZNK3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayer16customData1IsSetEv) +STUB( + "1jo2NKK2Afo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEC1ERS7_) STUB("1jvS0UqbY3E", sceFiosStatisticsPrint) STUB("1jwAtAP7KyU", sceShellCoreUtilNotifyImeStatusChanged) +STUB( + "1jwopmVYLvw", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB( + "1k-hM1CjFl4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEC2EPS9_) +STUB("1k0NwgDdJfo", mono_btls_x509_store_free) +STUB( + "1k1uC428dD0", + _ZN3sce2Np9CppWebApi14SessionManager2V128ResponseGameSessionSpectator8fromJsonERKNS_4Json5ValueE) +STUB("1k457nM9X6w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ChildActivityAvailabilityEEmmEi) +STUB("1k9CxaIu0co", GCC_except_table81) +STUB("1kDK8-lzz1s", setDecidBootEvf) +STUB( + "1kGEizDjKL8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEppEv) +STUB("1kGtVLKZqKQ", + _ZN7WebCore15InspectorClient31doDispatchMessageOnFrontendPageEPNS_4PageERKN3WTF6StringE) +STUB("1kHenFk2dOs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEED1Ev) +STUB("1kIpmZX1jw8", _thread_init_stub) +STUB( + "1kPnMVtnj+g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEcvbEv) +STUB("1kQ0lL8wW5I", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi28ParameterToDeleteGameSessionaSERS5_) STUB("1kRQGmYoDxY", sceClHttpTerm) +STUB( + "1kUHnTVkx2w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE21intrusive_ptr_add_refEPS9_) +STUB("1kZFcktOm+s", _ZTVSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE) +STUB( + "1kbB-8tQwCw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("1kduKXMqx7k", feholdexcept) +STUB( + "1keSKibQEjw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE4sizeEv) +STUB("1kkTnF6SNog", _ZN7WebCore8GradientD1Ev) +STUB("1ksaFxL1SnM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEED2Ev) +STUB("1ktwPRAf19w", _ZN9Inspector30WorkerBackendDispatcherHandlerD2Ev) +STUB("1kuaPe+BvGU", _ZTVN9Inspector29SupplementalBackendDispatcherE) +STUB("1kvQkOSaaVo", _ZNSt10moneypunctIwLb0EEC2ERKSt8_Locinfomb) +STUB("1kvwH5UT7LA", _ZThn120_N7WebCore16HTMLMediaElement4playEv) +STUB( + "1kwXCDSRtMM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("1kxFLgpNgoo", mono_aot_Sce_Vsh_Accessor_Dbplt) STUB("1kzQRoWEgSA", sceJpegDecDecode) +STUB("1l-ri0IF5OU", monoeg_g_dir_rewind) +STUB( + "1l28AuuwSvg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEaSERKS9_) +STUB("1l3T06lc6cI", _ZN7WebCore16HTMLVideoElement20webkitExitFullscreenEv) +STUB("1l4Nx9ssyWA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEC2Ev) +STUB( + "1l74I3X1s10", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getBoolean8Ev) +STUB( + "1l92AZD79lU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEdeEv) +STUB( + "1l98EzZNNXY", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) STUB("1lACBrvq6Vg", sceShellUIUtilLaunchTask) +STUB("1lBBeTjZ0bI", _ZN7WebCore7IntRectC2ERKNS_10LayoutRectE) +STUB("1lC32Kty+84", _ZN7WebCore13toJSDOMWindowERN3JSC2VMENS0_7JSValueE) +STUB("1lDe4Fqoias", _ZNK7WebCore16ISOSchemeTypeBox13schemeVersionEv) +STUB("1lDwztzbTqI", uregex_requireEnd_67) +STUB("1lIphmp7z+A", _ZN3sce2Np9CppWebApi15Personalization2V111ErrorEntityD2Ev) +STUB( + "1lP5i+-vjGM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEC2Ev) +STUB("1lRj0KYFqu4", _ZN7WebCore4Page24dispatchBeforePrintEventEv) +STUB( + "1lZIPiJnuM4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEEC1ERSA_) +STUB( + "1lcFpvoxsAU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE7reserveEi) +STUB("1lehOfA09zk", _ZN3WTF11Persistence7DecoderD2Ev) +STUB( + "1lg3nwrYfOc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE5beginEv) +STUB("1lmunXaKJjM", _ZN7WebCore9HTMLNames10coordsAttrE) +STUB("1lpaCYd8tpc", _ZN3sce7Toolkit2NP2V28Commerce7Request13GetCategories14MAX_CATEGORIESE) +STUB( + "1lph3fpFCBg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEC2Ev) +STUB( + "1ltmAFyyuTY", + _ZN3JSC19JSSymbolTableObject27getOwnNonIndexPropertyNamesEPNS_8JSObjectEPNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("1lw12IB1HrA", _ZN7WebCore21convertToIntegerClampIiEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB("1lxsi6QiRec", _ZNK3sce2Np9CppWebApi15Personalization2V121GetAccessCodeResponse7getCodeEv) +STUB( + "1m1Xthv5cZ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEC1Ev) +STUB("1m2y+e811xA", _ZNK3sce3Xml3Dom4Node13hasAttributesEv) STUB("1m4CKJxzsW0", scePlayerInvitationDialogGetStatus) +STUB("1m9Qb8CcPhk", + _ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody21ticketAttributesIsSetEv) +STUB( + "1mALHp8IlG4", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot9getfieldsEv) +STUB("1mDW3CrKA34", _ZN7WebCore13JSHTMLElement11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("1mFJ6hh-6yk", _ZN7WebCore21JSTextTrackCueGenericD1Ev) +STUB("1mPTuP9w7wg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEEppEv) +STUB( + "1mS-EqzEj50", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEC2EPS8_) +STUB("1mZUl7tMeh4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEED2Ev) +STUB("1maKcwFOk3E", _ZN3JSC14SourceProvider5getIDEv) +STUB("1mecP7RgI2A", gmtime) STUB("1mfDBl40Dms", sceNpAppInfoIntCheckServiceAvailability) +STUB( + "1mgD4WXBIQ8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEC2EPKS8_) +STUB("1mi8mtvJ1zA", _ZNK7CoreIPC10Attachment6encodeERNS_15ArgumentEncoderE) STUB("1miJAwDtxRs", scePssMusicPlayerStopEx) +STUB("1mk1z61Oxkc", _ZNK3sce2Np9CppWebApi6Common8IteratorIjEdeEv) +STUB("1mnghWFX0wQ", _ZN3sce2npgeERKNS0_4TimeERK10SceRtcTick) +STUB("1msXxuJO7Yw", _ZN3sce7Toolkit2NP13AttachmentURLC1Ev) STUB("1muH18WXIQQ", sceNpTrophy2SystemRemoveUserData) +STUB( + "1muoRIsNpAE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE10setContextEPNS2_10LibContextE) STUB("1mvb3+vi3E4", sceIduUtilClearAllSchedules) +STUB( + "1mxJy2PBo54", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEdeEv) +STUB( + "1n-+9sbmwnk", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10setString8EPKc) STUB("1n-dGukBgnY", sceNpTusCreateNpTitleCtxA) +STUB( + "1n0syQSY0yk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEixEm) STUB("1n37q1Bvc5Y", sceSystemServiceGetDisplaySafeAreaInfo) +STUB("1n43cN8DP6E", _ZNK9Inspector14InjectedScript10wrapObjectEN3JSC7JSValueERKN3WTF6StringEb) STUB("1n4BAyQEoAc", sceCesSJisToUtf8) +STUB( + "1nAMXZNUjws", + _ZN3sce2Np9CppWebApi7Matches2V131UpdateMatchDetailRequestFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_24UpdateMatchDetailRequestEEE) +STUB( + "1nB+7-XLYhg", + _ZN3WTF15AutomaticThreadC2ERKNS_14AbstractLockerENS_3BoxINS_4LockEEEONS_3RefINS_24AutomaticThreadConditionENS_13DumbPtrTraitsIS8_EEEENS_7SecondsE) +STUB( + "1nCbdTrkEBM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "1nDGVsYSRRo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEED2Ev) +STUB("1nE9cnpf+oY", mono_aot_Sce_Vsh_Webbrowser_XutilWrapperjit_code_start) +STUB("1nF0eXrBZYM", _ZN3sce2np4PathD2Ev) +STUB( + "1nHr4xTWRDU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("1nJEKr78quM", + _ZThn8_N3sce2np13JsonDocParser13onObjectValueEjjPKcNS0_10JsonParser9ValueTypeES3_) +STUB("1nK3z-539Sw", _ZNK7WebCore7Element12hasAttributeERKNS_13QualifiedNameE) +STUB("1nM7roSQMhs", _ZN3sce7Toolkit2NP2V212EventsClient12EventDetails21MAX_SIZE_EXT_LINK_URLE) +STUB( + "1nS2m6lnVUk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEEC2ERKSA_) +STUB("1nTKA7pN1jw", utime) +STUB("1nU++CN0ObE", WKBundlePageWillExitFullScreen) +STUB("1nU-9usW+G0", RemotePlayClearConnectHistory) +STUB("1nVPJ5kztvE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEmmEi) +STUB("1nWzH157kqw", WKContextSetSystemStorageDirectory) STUB("1nZ4Xfnyp38", _sceLibcGetMallocParam) +STUB("1nafvh3INrY", _ZNK3sce2Np9CppWebApi14SessionManager2V110FromMember12getAccountIdEv) +STUB( + "1navP4CR1VI", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi26RecordScoreResponseHeaders24hasXPsnAtomicOperationIdEv) +STUB("1ncat7SSwP4", fuse_chan_session) +STUB("1nkU7nUON5k", MvpHttpSetCert) +STUB( + "1noVpfOWOxM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEEC2ERSA_) STUB("1npa3LfEfq0", sceAppInstUtilPauseInstall) +STUB( + "1nuXnpuD75M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEEdeEv) +STUB( + "1nvAAzavcN8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("1nxJkpm8wLA", + _ZNK7WebCore20ScrollingCoordinator36coordinatesScrollingForOverflowLayerERKNS_11RenderLayerE) +STUB("1nylaCTiH08", _ZTSj) +STUB( + "1o+KK5wnw2I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE4sizeEv) +STUB("1oDEe0cbO3U", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError11unsetSourceEv) +STUB( + "1oDOkVUZufM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEixEm) +STUB( + "1oE6qz9zsic", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEC1EPS8_) +STUB("1oMvFrDq0pw", WKHitTestResultGetTypeID) +STUB("1oOvNgnAAp4", _ZN4Manx19get_netscape_formatEPK6Cookie) STUB("1oTrw-ivVpA", sceCompositorSetFlipCommand) +STUB("1oa4qrszUrE", _ZN7WebCore15AsyncFileStreamD1Ev) +STUB( + "1oasg2vyO8U", + _ZN7WebCore23TextureMapperFPSCounter19updateFPSAndDisplayERNS_13TextureMapperERKNS_10FloatPointERKNS_20TransformationMatrixE) +STUB("1obfHQ48Hu0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEptEv) +STUB("1oeM2V1M67o", + _ZN7WebCore28throwRequiredMemberTypeErrorERN3JSC14JSGlobalObjectERNS0_10ThrowScopeEPKcS6_S6_) +STUB("1ojt4v5bSzc", mono_mempool_strdup) +STUB( + "1onVvEofFWg", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer30unsetxPsnAcceptPlatformNamePs5Ev) +STUB( + "1ozIH2V91hA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE3endEv) +STUB("1p0FEYfvSns", ubrk_safeClone) +STUB( + "1p5ifdFKiyI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("1p5uDHGLvd4", glGetProgramBinary) +STUB( + "1p6Uh3QD0Is", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEC2Ev) +STUB("1pBAEZW+8Qs", mono_aot_System_Xml_Linqjit_got) +STUB("1pDJdHXwJ1Y", + _ZN3WTF15base64URLDecodeENS_10StringViewENS_33SignedOrUnsignedCharVectorAdapterE) +STUB("1pHAbsw952I", _ZNK3sce2np14JsonObjectImpl12fieldSetInitEPNS1_8FieldSetE) +STUB( + "1pIUK11v2A8", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody14boolean10IsSetEv) +STUB("1pJCgibxzYs", _ZN7WebCore4Page32nonFastScrollableRectsForTestingEv) +STUB( + "1pJOmt3H--4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEC2Ev) +STUB( + "1pM2Qy7+bQI", + _ZN7WebCore11EventTarget27addEventListenerForBindingsERKN3WTF12AtomicStringEONS1_6RefPtrINS_13EventListenerENS1_13DumbPtrTraitsIS6_EEEEONS1_7VariantIJNS0_23AddEventListenerOptionsEbEEE) +STUB("1pOW-QRdqbE", _ZN9Inspector15InspectorTargetD2Ev) +STUB( + "1pagbvXX-dg", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetrics16getNumberOfTimesEv) +STUB("1pb9VArSqX4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEED1Ev) +STUB("1pcgoKvYl7Q", g_str_has_prefix) +STUB( + "1pgNyzm8oB4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEC1EPS8_) +STUB("1phat1ndnM0", _ZN7WebCore9HTMLNames11onfocusAttrE) +STUB("1pldd0vvtDc", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE7popBackEv) STUB("1ppzHkQhiNs", sceUserServiceGetGlsCameraContrast) STUB("1pxQfif1rkE", sceHmdGetDeviceInformationByHandle) +STUB("1pxVgwcIUFo", mono_method_desc_search_in_image) +STUB("1q--VcVnmRA", u_memchr32_67) STUB("1q1titRBL6o", sceAgcDcbDrawIndirect) +STUB("1qBCm0XPudI", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V117ResponseMatchTypeEEptEv) +STUB( + "1qCOtL98KS8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEED2Ev) +STUB("1qKq5FPtbUk", _ZN3PAL9SessionID26generateEphemeralSessionIDEv) +STUB("1qL3wDU4ddw", _ZN7WebCore9HTMLNames8codeAttrE) STUB("1qM6pEHHOLk", sceFontGraphicsProcessWaitAllSequences) +STUB("1qO3Z0OL2mE", _ZN3sce7Toolkit2NP2V210Tournament7Request19SendUserMatchReportD1Ev) +STUB("1qPO0N90U0M", _ZN3sce7Toolkit2NP6Trophy9Interface10trophyInitEv) +STUB("1qTgeX2yO+4", _ZN3JSC7Symbols14allPrivateNameE) +STUB("1qUC6wdHHzY", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi24ParameterToReportResultsC1ERS5_) +STUB("1qWfeYAFHng", _ZN3sce7Toolkit2NP2V24Core12ResponseBase10sameThreadEv) STUB("1qXLHIpROPE", sceGnmInsertWaitFlipDone) +STUB( + "1qYL2vZjxWw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEneERKS9_) +STUB("1qZf0i-jdDI", mono_aot_Sce_Vsh_RnpsAppMgrWrapperunbox_trampolines_end) +STUB("1qanF2UB9Xg", mono_aot_Sce_Vsh_DbPreparationWrapperjit_code_end) STUB("1qbUFXlBXFw", sceShellCoreUtilGetFsckProgress) +STUB("1qec85qcAJE", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanityC1ERS5_) +STUB( + "1qfAPiWwPWQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEE11get_deleterEv) +STUB( + "1qh9KS-4CNE", + _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities13isInitializedEv) +STUB( + "1qnxr452fTY", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToSendGameSessionMessage12setsessionIdEPKc) +STUB( + "1qoFtDFYPwA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEmmEi) +STUB("1qrhwbKWyNA", _ZN3JSC10Identifier29checkCurrentAtomicStringTableEPNS_9ExecStateE) +STUB("1qvJP61VKMw", _ZNSsaSEOSs) +STUB( + "1qwRB06CWxI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "1r+8I++PtwU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEC1EPKS8_) +STUB("1r+EphqpZ0s", _ZN3JSC17DeferredWorkTimer17cancelPendingWorkEPNS_8JSObjectE) +STUB("1r23P6FLQEM", mono_debug_add_delegate_trampoline) +STUB("1r4l+X-3zmI", uprv_decNumberRemainderNear_67) +STUB("1r8jGgOfJwk", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11TusVariableEE7addressERKS3_) +STUB("1r9w133zkWY", _ZNK3WTF8JSONImpl10ObjectBase9writeJSONERNS_13StringBuilderE) +STUB("1rFPShTezl0", _ZN3sce7Toolkit2NP2V210Tournament7Request18GetRegisteredTeamsC1Ev) +STUB("1rGG490DeFE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEE7get_refEv) +STUB( + "1rKRjY4GSEc", + _ZN3sce2Np9CppWebApi14SessionManager2V156PostPlayerSessionsSessionIdInvitationsRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_49PostPlayerSessionsSessionIdInvitationsRequestBodyEEE) +STUB("1rLXMfY9K+k", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlotC2ERS5_) +STUB("1rOfBYZN9ww", _ZN7WebCore4Page20setDeviceScaleFactorEf) +STUB("1rTE0BEoihE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEED1Ev) STUB("1rZSWUv1IRc", sceAgcDcbCopyData) +STUB( + "1rZZYScyqRE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEmmEv) +STUB("1reBS5j79LQ", _ZN3sce7Toolkit2NP2V26Friend6FriendC2Ev) +STUB("1rlHMruxwHk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEED1Ev) +STUB("1rmon7rFUcM", _ZNK3sce2Np9CppWebApi13InGameCatalog2V513ContentRating7getNameEv) +STUB("1roIGVwdmk4", _ZN8meta_gen12JpegPromoterD1Ev) STUB("1rpZqxdMRwQ", sceHttpGetAcceptEncodingGZIPEnabled) +STUB( + "1rrABQXr9Tg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "1rrOvU0oPYM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE3endEv) +STUB("1rs4-h7Fq9U", __divmoddi4) +STUB("1rt9PQJV64k", _ZN15AbstractStorage13TwitterFolderD1Ev) +STUB( + "1rx0LMPsjeM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEC2EPKS8_) +STUB("1s+c3SG0WYc", _ZN3sce2np9EventFlag4WaitEmjPmj) +STUB( + "1s3bl7gF878", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "1sB8wQ7MyV4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEC2EPS8_) +STUB("1sFIml1gkvE", __asan_report_exp_load1) +STUB("1sGQan8NiQ0", _ZN3sce2Np9CppWebApi7Matches2V124RequestCompetitiveResult16getPlayerResultsEv) +STUB("1sGo4cTbwEA", mono_aot_System_Runtime_Serializationunbox_trampolines) +STUB("1sKGLPtkdow", _ZNK3sce4Json5Value8getValueERKSbIcSt11char_traitsIcENS0_8StlAllocIcEEE) +STUB( + "1sLRbsDcfvg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC1ERKSB_) +STUB("1sN6cwmEjcc", delegate_virtual_invoke_imt_m_11) +STUB("1sP+XBRFmqg", mono_method_signature) +STUB( + "1sPYAzPcWyA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEcvbEv) +STUB("1sUwwFuHW5g", _ZN3JSC4Heap17globalObjectCountEv) +STUB("1sWluYvAfBM", SSL_get_client_random) +STUB("1sWmNDp+0To", _ZN7WebCore12BlobRegistry16blobRegistryImplEv) +STUB("1sbo31OsqMQ", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_addEventTime) +STUB( + "1scSuRZxNsM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEE11get_deleterEv) +STUB("1siRBursJjw", _ZN3sce4Json6ObjectD2Ev) +STUB("1sqJ+5rsEzs", + _ZN7WebCore21JSCSSStyleDeclaration23visitAdditionalChildrenERN3JSC11SlotVisitorE) +STUB("1srQTITTjM4", _ZN3WTF16fastZeroedMallocEm) +STUB( + "1sugteqkETg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE23clearOnFinishedCallbackEv) +STUB( + "1t+S5Uw1riA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEEaSERSA_) +STUB( + "1t-lC1wdcA4", + _ZN3sce2Np9CppWebApi7Matches2V120RequestMemberFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_13RequestMemberEEE) +STUB( + "1t0pR-mdrtg", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Runtime15SyntaxErrorTypeEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB("1t1-JoZ0sZQ", sinhf) STUB("1t3ixYNXyuc", sceAjmDecAt9ParseConfigData) +STUB( + "1t4MGo48HIU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEdeEv) +STUB("1t5lhAe3UR0", _ZNK3JSC8Debugger22pauseOnExceptionsStateEv) +STUB("1t9M6G0QM1o", _ZN3sce7Toolkit2NP2V28Commerce11SubCategoryC2Ev) +STUB("1t9U+QGX7w0", _ZN3WTF9MediaTimenaEm) +STUB("1tAcK51c-88", _ZN3sce7Toolkit2NP2V28Commerce10DescriptorD1Ev) +STUB( + "1tAm86Kb5GQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEE3getEv) +STUB( + "1tAmxS5g2Hs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEED2Ev) STUB("1tB0xkLNjcw", sceAgcDcbAtomicGdsGetSize) +STUB("1tKwS9K7BZA", _ZN3JSC14ProtoCallFrame9setCalleeEPNS_8JSObjectE) STUB("1tKyG7RlMJo", scePthreadGetprio) +STUB( + "1tRKoADIYeU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE4sizeEv) +STUB( + "1tW4amc3slw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE4sizeEv) +STUB("1tWMuLo+iB8", uhash_deleteHashtable_67) +STUB("1tXDV45yh2Y", _ZN3WTF14FileSystemImpl19filesHaveSameVolumeERKNS_6StringES3_) +STUB("1tZGv4oi0cs", _ZN3JSC7Symbols29promiseReactionJobPrivateNameE) +STUB( + "1tcWJ5ew-TA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEC1ERKS7_) +STUB("1tk0xABWfqk", Canonicalize) +STUB( + "1tkez8oYyX8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "1touPjeAL2o", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE5beginEv) +STUB( + "1tr98vaoDT4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEE11get_deleterEv) +STUB("1tt8FddamlM", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getInteger4Ev) +STUB( + "1ttKchtHaMk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEC1EPS8_) +STUB("1tvWBujUKQk", mono_arch_clear_breakpoint) +STUB("1ty9Y1xzdmg", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE6resizeEj) +STUB( + "1u+pTJn9oj8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE5emptyEv) +STUB("1u29VUXf-kM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEC2ERS7_) +STUB("1uBKk-ueSvM", + _ZN3sce2Np9CppWebApi7Matches2V123ResponsePlayerStatisticC2EPNS1_6Common10LibContextE) +STUB("1uCdVAqt+YA", _ZN7WebCore12EventHandler15handleAccessKeyERKNS_21PlatformKeyboardEventE) +STUB( + "1uFZuB6eRAk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEEC1Ev) +STUB("1uJgoVq3bQU", _Getptolower) +STUB( + "1uK7+Hvx118", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEED1Ev) +STUB( + "1uPHW2pj24w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "1uPlm3piHd8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEED1Ev) +STUB( + "1uS-RSQa+1g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEC1Ev) +STUB("1uXd5bVohHc", _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRankingC2Ev) +STUB( + "1ud-36ZJ114", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEED2Ev) +STUB("1ueTWnGIyW0", _ZN3sce7Toolkit2NP2V212NetworkUtils7Request16GetBandwidthInfoD2Ev) +STUB("1uf1SQsj5go", towupper) +STUB( + "1ufhcTdbpL8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEC1ERKS7_) +STUB( + "1ugtjdNXHIE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "1uhS+FE1eOY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("1uiDWP8AjtA", ucurr_getPluralName) +STUB( + "1uiGozzDcs8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("1ulKpAYXUAo", mono_set_thread_interruption_request_flag_ptr) +STUB( + "1urag1LmOwM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEEC2ERKSA_) +STUB("1uryzAWFUuA", _ZNK15AbstractStorage7Storage7GetTypeEv) +STUB( + "1usDFC2WXJ4", + _ZN3JSC41constructFunctionSkippingEvalEnabledCheckEPNS_14JSGlobalObjectERKNS_7ArgListERKNS_10IdentifierERKNS_12SourceOriginERKN3WTF6StringERKNSB_12TextPositionEiNS_24FunctionConstructionModeENS_7JSValueE) +STUB("1usuqa2LXUg", fuse_session_destroy) +STUB("1uvFpFqye9g", _ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponseD1Ev) +STUB("1uwR+A7N7oc", mono_aot_Sce_Vsh_Np_AppLaunchLinkunbox_trampolines) +STUB("1uz3FeoMLRk", _ZN3WTF16AtomicStringImpl3addEPKhj) +STUB("1vAE--J65fU", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEEdeEv) +STUB("1vB5+jaiBzM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEE7add_refEv) +STUB("1vBOjvPlb9U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEE7get_refEv) STUB("1vCEy8EP+gc", sceKernelInternalResumeDirectMemoryRelease) STUB("1vDaenmJtyA", sceKernelOpenEventFlag) +STUB("1vGDqFIZWTQ", _ZN3sce7Toolkit2NP21TusSetDataInputParamsC1Ev) +STUB( + "1vI7n0NDK5A", + _ZN9Inspector20DOMBackendDispatcher12getOuterHTMLElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("1vKM7kB2jSk", Java_java_lang_Package_getSystemPackages0) +STUB( + "1vN3bM2wjfo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEE7add_refEv) +STUB("1vTzThp8e4A", _ZN3sce7Toolkit2NP9Utilities6FutureI19SceNpTrophyGameDataE3getEv) +STUB("1vn2-6I8PLE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEED2Ev) +STUB("1vo6qqqa9F4", _ZdlPvS_) +STUB("1vs602jmh7M", _ZN3sce2Np9CppWebApi12Leaderboards2V15Entry10setCommentEPKc) +STUB("1vtq6-A5reA", GCC_except_table414) +STUB("1vuGK3A1ePY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEppEv) +STUB( + "1vvQSQDM14s", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeaders17unsetCacheControlEv) +STUB( + "1vykeIoQoY4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("1vyq1zTl2kk", _ZN3sce2Np9CppWebApi14SessionManager2V131ResponsePlayerSessionInvitationD1Ev) +STUB("1w1qHQnwnWg", _ZN3JSC18GCActivityCallback15createFullTimerEPNS_4HeapE) +STUB( + "1w2PLgvoMF0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("1w4KTY1y7RU", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setBoolean8ERKb) +STUB( + "1wBHMdJQvZY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "1wBbmjdFEXw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEE7get_refEv) +STUB("1wDQqsncViM", _ZN7WebCore8SVGNames5rAttrE) +STUB("1wFNGIk3FR0", FT_Get_Renderer) +STUB("1wI+QyOuHDc", _ZN3sce7Toolkit2NP2V27Ranking7Request11SetGameData8MAX_PCIDE) +STUB( + "1wIJWKFIB7Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEEC1ERKSA_) +STUB("1wLhpGWDFlM", _ZNK7WebCore17HTMLSelectElement5valueEv) STUB("1wMKF3L2PXU", sceUpsrvPostErrorLog) STUB("1wMn3X94WME", sceNpAsmClientDeleteRequest) +STUB("1wNmKSa3Nyc", Java_com_sony_bdjstack_security_aacs_AACSOnline_getNonce) +STUB( + "1wS04Y5TPik", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEdeEv) STUB("1wYJBiKygKY", sceClKernelReleaseFlexibleMemory) +STUB("1wYyDmfG-1M", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13SessionMemberEED1Ev) +STUB("1wZvCS-KzPs", SHA256_Final) +STUB("1wcdIyiFb94", _ZN7WebCore5Range24createContextualFragmentERKN3WTF6StringE) +STUB( + "1wmEgr+LGCk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEppEv) +STUB( + "1wpCXuFzH10", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEED1Ev) +STUB("1wq4f6x1LoA", qzerof) +STUB("1wsPC7RqShQ", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetail19unsetnpServiceLabelEv) STUB("1wsyLPfjnmg", sceAppInstUtilGetInstallStatus) +STUB( + "1wtqJZpO4Dw", + _ZN7WebCore16MIMETypeRegistry32containsImageMIMETypeForEncodingERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEES8_) STUB("1wxFFk3xIhA", sceKernelIccControlBDPowerState) +STUB("1wy8bq-Us9M", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBodyD1Ev) +STUB("1x0YNUHzmZM", _ZN3sce7Toolkit2NP2V212NetworkUtils13NetStateBasicC2ERKS4_) +STUB("1x0cP4qpiN4", _ZN13MsvMetaEditor14getMoovBoxInfoEv) +STUB("1x0jThSUr4w", _ZN3sce2np6ObjectdaEPv) +STUB("1xCI3sEgjhk", _ZNK7WebCore23ApplicationCacheStorage11maximumSizeEv) +STUB("1xDj+t1Zub8", g_ptr_array_set_size) +STUB("1xE7OKnU+S8", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData12getaccountIdEv) +STUB( + "1xGFELf7RKg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEED2Ev) +STUB("1xNXivfnyvQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEC2ERS7_) STUB("1xSZodB2geA", sceContentSearchTerm) +STUB("1xYbkViN0Qo", __cxx_global_var_init .33) +STUB( + "1xYklDtHGtw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE4sizeEv) +STUB("1xbdPOXWMkY", _ZNK7WebCore8Settings18showRepaintCounterEv) +STUB( + "1xcMgCdJwiA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEEC1EPS5_PFvS7_EPNS2_10LibContextE) +STUB("1xchZd188u0", + _ZN7WebCore23ApplicationCacheStorage26storeUpdatedQuotaForOriginEPKNS_14SecurityOriginEl) +STUB( + "1xgwYSdQwYw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE5startEPNS2_10LibContextE) +STUB("1xoLMLSYmE8", + _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession28setReservationTimeoutSecondsERKi) +STUB("1xpx3iwQ3p8", _ZN13MsvMetaEditor12truncateFileEPKcl) +STUB( + "1xvjKimSdSI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEptEv) +STUB("1xvtUVx1-Sg", __pthread_cleanup_push_imp) +STUB("1xx0ve4g77Q", _ZN3JSC7Symbols18italicsPrivateNameE) STUB("1xxcMiGu2fo", sceUserServiceGetUserName) +STUB("1xy5Q9BI8KU", _ZN12video_parser10cVideoPathC2EPKc) +STUB("1xzeyYMI2hQ", _ZN3JSC15createTypeErrorEPNS_14JSGlobalObjectERKN3WTF6StringE) +STUB( + "1y1T31BMRqU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE8capacityEv) +STUB( + "1y3T6CNBkIQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE6resizeEj) STUB("1y6BZW9sKjQ", sceAppInstUtilAppGetAppOtherSize) +STUB( + "1y7V948DYe8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEE5resetEPS7_) +STUB( + "1y8h83o0Ya4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "1yDfiR1Wh74", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEC2ERS8_) +STUB( + "1yDufm1xVo0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "1yMEuHTj5D4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEplEm) +STUB("1yNctDJdXNM", _ZNK7WebCore24CachedResourceHandleBase3getEv) +STUB("1yOsZYC0bKs", _ZN3WTF16AtomicStringImpl3addEPKDs) +STUB( + "1yQt6nY6c0o", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V139GetMultiDataStatusesResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_32GetMultiDataStatusesResponseBodyEEE) STUB("1yXS+iqB3wQ", sceKernelMapperGetParam) +STUB("1yYzosuMlRQ", _ZN19JITSharedDataMemory9sbrk_infoE) +STUB( + "1yaZoWIsWdA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) STUB("1yca4VvfcNA", sceKernelTitleWorkaroundIsEnabled) +STUB( + "1yl7v2VycT0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEppEv) +STUB("1ylmHWYLYdg", mono_aot_Sce_Vsh_VideoServiceWrapperunbox_trampoline_addresses) +STUB("1yqO3zM6aD0", _ZN7WebCore12ChromeClient20didInsertMenuElementERNS_15HTMLMenuElementE) +STUB( + "1ys9uBbBlT4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE7popBackEv) +STUB( + "1yshiy1sSHc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE10setContextEPNS2_10LibContextE) +STUB("1ywCkCTsDxU", _ZN3sce2Np9CppWebApi15ProfanityFilter2V219WebApiFilterRequestD2Ev) +STUB("1yzPk-TN1+0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11SessionDataEE3getEv) +STUB("1z6bBg1qBfU", FT_Stream_ReadOffset) STUB("1z7XMEnjelI", sceUserServiceGetControlCenterFunctionControlSettings) +STUB( + "1zADpAFyOFE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEmmEi) +STUB("1zC4Yze8GWA", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy15TrophyPackGroupEE5resetEv) STUB("1zDEFUmBdoo", sceUserServiceGetAccessibilityZoom) STUB("1zHP7BQXxr4", sceRazorCpuStartCapture) +STUB("1zJdp+3xH20", _ZN7WebCore11MediaPlayer6createERNS_17MediaPlayerClientE) +STUB("1zKadIOLJqE", _ZN7WebCore9HTMLNames23onautocompleteerrorAttrE) +STUB( + "1zNS5hLRmrQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("1zSahCRH0-Y", mono_get_exception_bad_image_format) +STUB("1zVgH9N3NNY", mono_aot_appjit_got) +STUB( + "1zfXlxhJaqg", + _ZN3sce7Toolkit2NP2V28Commerce26displayProductBrowseDialogERKNS3_7Request26DisplayProductBrowseDialogEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB( + "1zm9Vio-TJQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEEC1ERS9_) +STUB("1zovCBzwnbc", _ZN7WebCore21HTMLOptionsCollection6removeEi) +STUB( + "1zpRbCIAH1w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEC1EPS8_) +STUB( + "1zptq8p0kGc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE7popBackEv) +STUB("1zq11f8z83Q", mono_btls_bio_mono_initialize) +STUB( + "1zr6cQn2P4M", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionProperties35setxPSNSESSIONMANAGERNONPSNCALLERIDEPKc) +STUB( + "1zsmOY7-A0o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEED1Ev) +STUB( + "1zv0tl7404o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEC1ERKS7_) +STUB( + "1zzJu7k1bLs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("1zzpP6uXs-s", _ZN3JSC7Symbols13ofPrivateNameE) +STUB( + "1zzyG2pHP50", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEixEm) +STUB( + "2+0CSHbJOyk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEptEv) +STUB( + "2+4xx+oiB+8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEED2Ev) +STUB("2+6K-2tWaok", _Fetch_or_seq_cst_1) +STUB( + "2+7obvUWItU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEEC1ERSA_) STUB("2+A7x-y0wNs", ScePsmMonoSecurityEnableCoreClr) +STUB( + "2+DfnomJcDs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEEC1ERS9_) +STUB( + "2+J2+XumCcg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEEaSERSA_) +STUB("2+My9LyO5hM", mono_aot_Sce_Vsh_SysUtilWrappermethod_addresses) +STUB("2+U7T3s-8fw", _ZN9Inspector13AgentRegistryD1Ev) +STUB("2+XEVHKBMuY", _ZN3sce3pss4core16InitializeCsharpEPK19ScePsmConfiguration) +STUB( + "2+YytwcL6tI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEE3getEv) +STUB( + "2+d9DcWT3Go", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEEC2ERKSA_) +STUB("2+gi0SvRxKA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE5beginEv) +STUB( + "2+ib2nsv-dc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEE5resetEPS9_) +STUB("2+kc2PfLOV0", _ZN3JSC7Symbols28isUndefinedOrNullPrivateNameE) +STUB("2+pMi9i6zYg", g_str_has_suffix) STUB("2+pVfgiEd7A", pthread_attr_setsolosched_np) +STUB( + "2+rYuU6EIp4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEC1EPNS2_10LibContextE) +STUB("2+uRH9hvLWM", _ZN7WebCore11HistoryItem9setTargetERKN3WTF6StringE) +STUB("2-+fJU7sdx8", glGetShaderSource) +STUB("2--tkMWfV6k", mono_object_isinst_mbyref) +STUB( + "2-4ltCJz+KE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE8copyFromERKS9_) +STUB( + "2-5GwIw4u6Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEE5resetEPS9_) +STUB( + "2-6xb1JqfHA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEE3getEv) STUB("2-8NWLS8QSA", sceSaveDataUmountSys) +STUB("2-E7zx+MSTE", _ZNK7WebCore9FrameView10renderViewEv) +STUB( + "2-EcKe8jqtY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("2-EpPErhK3o", mono_debugger_method_has_breakpoint) +STUB("2-Htz3Rhqy4", _ZNK7WebCore12ISOWebVTTCue16presentationTimeEv) +STUB("2-J+JAsSYY0", _ZN7WebCore9HTMLNames15crossoriginAttrE) +STUB( + "2-JPZiBhcCk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEEcvbEv) +STUB( + "2-LcEABCML4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE5beginEv) +STUB("2-M5p9KpriU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V110AvatarSizeEEeqERKS7_) STUB("2-MkHLDkFP4", sceUserServiceGetGlsOverlayPosition) +STUB("2-S0J1RW2vQ", _ZN15AbstractStorage14StorageManagerD1Ev) +STUB( + "2-SAuLzhtgk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE7reserveEi) +STUB( + "2-XeykBl7qQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEeqERKS9_) +STUB("2-Y9ZJ7ixrU", __start__Zhash) +STUB("2-ZSPY7bDjU", _ZN3sce7Toolkit2NP15AppSTLAllocatorIiEC2Ev) +STUB("2-ZV5n3odSc", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V113ErrorResponseD2Ev) +STUB("2-aQ-I5tcxM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge18ChallengeThumbnailEE3getEv) STUB("2-b8QbU+HNc", sceUserServiceGetImeLastUnit) STUB("2-bYnN1qoQM", sceSpNetSocketClose) +STUB("2-pbW8Uw8FI", _ZN7WebCore15ActiveDOMObjectD1Ev) +STUB( + "2-utYvCggQ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEEaSERKSA_) +STUB("2-wiEVIMIA0", p5_16) +STUB("201HW-Di-fs", _ZN3sce3pss4core6camera6Camera13SetConfigTypeEi) +STUB("203JffNGrbg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEC1Ev) +STUB("203wIziut0o", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEEptEv) +STUB("207Zjd6AVDQ", _ZN3JSC7Symbols16isSetPrivateNameE) +STUB("20BsCgZHqOk", _ZN3sce2Np9CppWebApi10Activities2V114UserActivities5Error9setSourceEPKc) +STUB( + "20FEq1AdVD4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEmmEi) +STUB( + "20JXjAfU0fI", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsers35setxPSNSESSIONMANAGERNONPSNCALLERIDEPKc) +STUB("20UTKti9SoQ", _ZN7WebCore29createDefaultParagraphElementERNS_8DocumentE) +STUB( + "20UekU7x2m8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEC2EPNS2_10LibContextE) +STUB("20VhWlfulVM", _ZN3JSC2VM20dumpTypeProfilerDataEv) +STUB( + "20bxOmrkl-g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEEC1Ev) +STUB("20cUk0qX9zo", _malloc_init_lv2) +STUB( + "20fQKVbtHjM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEC2EPS8_) +STUB("20fktvybHIM", _ZN7WebCore9FrameView29setShouldUpdateWhileOffscreenEb) +STUB("20gqejs13iI", mono_aot_Sce_Vsh_VideoFramework_Platformplt) +STUB( + "20jsZerxL14", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEdeEv) +STUB("20mD5Dpn2E8", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEEC2EPS6_) +STUB("20ncFey1XAg", mono_aot_Sce_Vsh_SQLiteAuxmethod_addresses) +STUB("20oHu2qpgAA", _ZN3sce2np9JsonArrayC2EP14SceNpAllocator) +STUB( + "20pc-1kG840", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE21intrusive_ptr_sub_refEPS9_) +STUB("20qj+7O69XY", isnan) STUB("20qqWmDFSYc", sceNpUniversalDataSystemIntRecordObjectSetBool) +STUB( + "20r6nhYgjCE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE4sizeEv) +STUB( + "20t9bUGiHvM", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("20u2l0mDMQ8", _ZN7WebCore24CoordinatedGraphicsLayer17didChangeChildrenEv) STUB("20wAMbXP-u0", sceNpTrophySystemCheckNetSyncTitles) +STUB("20wueHdL0Nk", _ZN3sce3Xml6StringC2ERKS1_) +STUB("20x87zEXaUM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEED1Ev) +STUB( + "20zjGVEcG5U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEC1ERKS7_) STUB("21+rb7xOlJk", sceKernelIsModuleLoaded) +STUB( + "21-b8Wqkqt0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEE7get_refEv) +STUB("210fV99FlRk", _ZN3WTF11Persistence7EncoderlsEl) +STUB("2115j0TIHfM", _ZN7WebCore8SVGNames15feTurbulenceTagE) STUB("215BW2R73RU", sceClHttpSetAutoRedirect) +STUB( + "216C91IIggw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEEaSERSA_) +STUB( + "216JbB5+Cew", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC1ERKSB_) +STUB("21Bak5bqoqU", il2cpp_string_length) +STUB("21EUI6EIxPo", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEEC2Ev) STUB("21FMz6O4B2E", sceNpIdMapperNpIdToAccountId) +STUB( + "21HBte8ztQI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEC1EPKS8_) +STUB("21Iix09Z04g", mono_aot_Sce_Vsh_VideoServiceWrapperunbox_trampolines_end) +STUB( + "21J8Lcw+Qn4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("21KFhEQDJ3s", _malloc_fini) +STUB("21MSzOuqZi0", _ZN7WebCore15UserInputBridge16stopLoadingFrameEPNS_5FrameENS_11InputSourceE) +STUB("21N4NbEuAjY", _ZN7bmalloc5Cache30tryReallocateSlowCaseNullCacheENS_8HeapKindEPvm) +STUB("21SKuM5fp6A", _ZN7WebCore10FileSystem15getFileDeviceIdERKN3WTF7CStringE) +STUB( + "21Usjr7Qjbo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEEC2EPS4_PFvS6_EPNS2_10LibContextE) +STUB( + "21V5nmYlWm4", + _ZN3WTF30overrideUserPreferredLanguagesERKNS_6VectorINS_6StringELm0ENS_15CrashOnOverflowELm16ENS_10FastMallocEEE) +STUB("21VqkIaq1YE", + _ZThn16_N9Inspector21InspectorRuntimeAgent18releaseObjectGroupERN3WTF6StringERKS2_) +STUB( + "21XnfADVJHc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEED1Ev) STUB("21cLLwe2AnE", scePatchCheckerUpdateAppdbForEap) +STUB("21cUbLIHG+s", _ZN7WebCore8FormDataD2Ev) +STUB("21csdPTFF+s", _ZN3sce7Toolkit2NP2V23TUS25AtomicAddToAndGetVariableC1ERKS4_) +STUB("21dI64V067E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEC2Ev) +STUB( + "21fWEgpIylM", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) STUB("21g4m4kYF6g", sceFontGraphicsFillRatesInit) +STUB( + "21i6ysl4NJY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEEaSERKS9_) +STUB("21oZeaUHjAs", _ZN7WebCore8SVGNames7maxAttrE) +STUB( + "21p2cgS32IA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEmmEv) +STUB("21pLHdVlBbs", uloc_toLanguageTag_67) +STUB( + "21pij2qjwXc", + _ZN7WebCore10FileSystem15openAndLockFileERKN3WTF6StringENS0_12FileOpenModeENS1_9OptionSetINS0_12FileLockModeEEE) +STUB("21rDa5eoK74", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE3endEv) STUB("21sS8EU45cw", sceVideoOutSysGetFlipStatus) +STUB("21vkVuOP2lk", FT_Attach_File) +STUB("21w78rpNbjY", _ZN15AbstractStorage12LocalService13SearchStorageEv) STUB("221fvqVs+sQ", sceNetMemoryFree) +STUB("223yzNUMJKw", _ZN3WTF9MediaTime15createWithFloatEf) +STUB("224Dc5ju5Mk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEEC2EPNS2_10LibContextE) +STUB( + "227yhc7ApnE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEppEv) +STUB( + "228r8PUE-38", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setInteger7ERKi) +STUB("22AK6qbo6PY", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOffer9unsetviewEv) +STUB("22BjDPwCmn8", _ZN7WebCore9HTMLNames12filenameAttrE) STUB("22C8vFKX2u4", sceDebugGetUltInfo) +STUB( + "22GfJEfmVVM", + _ZN7WebCore11ImageBuffer6createERKNS_9FloatSizeENS_13RenderingModeEfNS_10ColorSpaceEPKNS_10HostWindowE) +STUB("22I90Pji9+0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEC2ERS7_) +STUB( + "22LL2G4mMbk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE7popBackEv) +STUB( + "22Oi2qGXhpk", + _ZN3sce2Np9CppWebApi7Matches2V129RequestPlayerStatisticFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_22RequestPlayerStatisticEEE) +STUB( + "22Q70MvOEA0", + _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product16setContentRatingERKNS1_6Common12IntrusivePtrINS3_13ContentRatingEEE) +STUB( + "22WL8q6EIk8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEEC1ERKSB_) +STUB( + "22a9CvKua6o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEmmEi) +STUB( + "22aDTE+ulbk", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEEiRNS2_10LibContextEPT_m) STUB("22buO-UufJY", sceHttpSetDelayBuildRequestEnabled) +STUB("22g2xONdXV4", _ZTSSt9bad_alloc) +STUB( + "22jUcl2T0og", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEEaSERSA_) STUB("22nfK8hJRj0", sceHeadTrackerQueryWorkingMemory) +STUB("22ngKDr3G28", _ZN7WebCore17FrameLoaderClientnaEmPv) STUB("22oeZeA0CdU", sceNpIpcClientInit) +STUB("22u8+2qmkb8", _ZN8meta_gen17CommonFsOperation8readFileEmPv) +STUB("22v2XWp4DFo", _ZN3sce7Toolkit2NP2V28Commerce8ProductsC2Ev) +STUB( + "23+iRIR3AIA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEEcvbEv) +STUB( + "23Bii2HafS4", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectatorD1Ev) STUB("23CPPI1tyBY", sceKernelGetEventFilter) +STUB("23E3fe5jmjY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEED1Ev) +STUB("23E7KzEOJtY", utrans_stripRules_67) +STUB("23Fko5SNRsY", unumf_close_67) +STUB("23HoIgD7WYs", GCC_except_table170) +STUB("23ICNCTX0Eg", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112GroupingTypeEEptEv) +STUB( + "23JVWfJTBvo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE7reserveEi) +STUB("23QZTBt3E60", _ZN15AbstractStorage14MemfileContent8SeekTimeElPl) +STUB( + "23SS55ne7vI", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("23axeMp33b8", _ZN7WebCore6Editor3cutENS0_20FromMenuOrKeyBindingE) +STUB("23bjhGrmGds", _ZNK7WebCore16HTMLMediaElement13platformMediaEv) +STUB("23jQPF1C6aE", WKViewSetDrawsBackground) +STUB( + "23l-xRYzmaY", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody19setLeaderPrivilegesERKNS1_6Common6VectorINS5_6StringEEE) +STUB("23nm4oXHlfI", _ZN3sce4Json5ValueC2Ed) +STUB("23pBo3p6Slk", _ZN12video_parser13cVideoPathMgv20GetBackupLicenseNameEPc) +STUB("23rLkkMg6WA", mono_aot_System_Data_Services_Clientunwind_info) +STUB("23rhr19fYWs", _ZN15AbstractStorage14FacebookFolder12readExternalESt10shared_ptrINS_7ContentEE) +STUB("23sxNJOxckc", __tsan_get_report_mutex) +STUB("23uLv15jvFA", u_strToUTF8) +STUB("23xrf3OlwEM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEED2Ev) +STUB( + "23z9yIyd9hU", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM18CustomElementStateEEESt8optionalIT_ERKN3WTF6StringE) +STUB("24+NH8GAfik", _ZN7WebCore15JSDOMWindowBase21shouldInterruptScriptEPKN3JSC14JSGlobalObjectE) +STUB( + "24+arNAYGYA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEeqERKS9_) +STUB("240U4cfeeh8", _ZNK7WebCore17FullscreenManager27areFullscreenControlsHiddenEv) +STUB("24CeNkcXhRE", unorm2_getInstance_67) +STUB( + "24GszWKTjBA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("24IDgrvWCMc", _ZN12video_parser12cVpFileCache7stopRunEv) +STUB( + "24JaJzStCtY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "24NDGTkf-Yg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEmmEv) +STUB("24PiQ1wZR0Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEcvbEv) +STUB("24Q9hvXTeQA", _ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_9ImageDataE) +STUB("24QWHtxr2EM", _ZN7WebCore23ApplicationCacheStorageC2ERKN3WTF6StringES4_) +STUB("24SDQYS0N4M", _ZN3WTF10SymbolImpl6createERNS_10StringImplE) +STUB("24TLMSs45A4", udat_getContext_67) +STUB( + "24UTLgAGxwg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEED1Ev) +STUB( + "24aitGqHnso", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("24f-Ffa4rxg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEC2Ev) +STUB("24gRLIT1y3I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE8pushBackERKS8_) STUB("24kDA+A0Ox0", sceVrTrackerRegisterDevice2) +STUB("24kDIV0aDzs", _ZN3sce4Json5Value12s_nullstringE) +STUB("24m4Z4bUaoY", sscanf_s) +STUB("24mbf555RJU", _ZN3sce7Toolkit2NP2V211SharedMedia7Request13GetBroadcastsD2Ev) +STUB( + "24rKTi7X+1c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEixEm) +STUB( + "24sBys581sg", + _ZN3JSC23JSModuleNamespaceObject17defineOwnPropertyEPNS_8JSObjectEPNS_14JSGlobalObjectENS_12PropertyNameERKNS_18PropertyDescriptorEb) +STUB( + "24uIFFJ8zOI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEED2Ev) +STUB("24z+yWlcYoE", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setPrimaryAudioDefaultLang) +STUB("252gDgfnpkU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEEC1Ev) +STUB( + "257A0xgUUC0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE8copyFromERKS9_) +STUB( + "258qZGQqbXw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEppEi) +STUB("259y57ZdZ3I", __ltsf2) +STUB( + "25CJr-RGKiM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "25OYNt0MWG8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEEptEv) STUB("25PEYXEnaJ0", sceDebugGetUltQueueInfo) +STUB( + "25Su-hk+x-o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "25Szkaz7grI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE8copyFromERKS9_) +STUB( + "25TL52J-9UE", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS2_6VectorINS5_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS5_INS8_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB( + "25Y+DvXIVek", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB("25e3mliz6U8", SSL_SESSION_get_master_key) +STUB("25hugdNv2HE", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session12Notification18InvitationReceivedEE3setEv) +STUB("25lgQJ93JO4", _ZNK9Inspector22InspectorDebuggerAgent27pauseOnNextStatementEnabledEv) +STUB("25mS80V8okg", WKBundleNavigationActionCopyDownloadAttribute) +STUB("25mefJRpH0Q", X509_get_ext_d2i) +STUB( + "25s0uS3VQqI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEED2Ev) +STUB( + "2651fpSUsO0", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEiRNS2_10LibContextEPT_m) +STUB( + "2685-0hm1hg", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12string5IsSetEv) +STUB("269oIIvZjh4", mono_aot_System_Coreunbox_trampoline_addresses) +STUB( + "26AtT0IVhRI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEptEv) STUB("26BOSNNJS7g", sceVnaGetAgentSettings) +STUB( + "26IC9i6yosg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) STUB("26K6KWi+gy4", sceProfileCacheGetTrueName) +STUB("26KgmsjIE50", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product7setTypeEPKc) +STUB("26KknMfv0Yw", _ZN3sce7Toolkit2NP2V26Trophy16TrophyPackTrophyD2Ev) +STUB( + "26LQAA4BoXA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetrics8fromJsonERKNS_4Json5ValueE) +STUB("26MmdD1jVj8", bemp2sys_psdecoder_release) STUB("26PM5Mzl8zc", sceGnmLogicalCuIndexToPhysicalCuIndex) +STUB("26SufKG5x4M", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData9terminateEv) STUB("26VqvOFbxYo", sceNetDbgInit) +STUB( + "26a5JulMr4k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEC2Ev) +STUB("26lYor6xrR4", SSL_acceptConnection) +STUB("26liLpqGRjo", _ZN7WebCore15HTMLFormElement6submitEv) +STUB("26oRO1kBIVU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEEC2EPKS6_) +STUB( + "26pWLDpBG0Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEC1Ev) STUB("26q33kxcGYs", sceMusicFwGetCurrentTime) +STUB( + "26rwauzW-Is", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEdeEv) +STUB("26sRl2nNXaE", WKBundleFrameForJavaScriptContext) STUB("26vWrPAWJfM", sceNpMatching2GetRoomDataExternalList) +STUB( + "26wN8Yjf9Fk", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("270EeLhlxKE", _ZN7WebCore24CachedResourceHandleBaseC2Ev) STUB("273-I-zD8+8", sceNetConfigWlanInfraScanJoin) +STUB("2783+UMEt+o", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request14PostPlayedWithD1Ev) +STUB( + "27E4o5mMxTs", + _ZN7WebCore26NetscapePlugInStreamLoader6createERNS_5FrameERNS_32NetscapePlugInStreamLoaderClientEONS_15ResourceRequestEON3WTF17CompletionHandlerIFvONS7_6RefPtrIS0_NS7_13DumbPtrTraitsIS0_EEEEEEE) +STUB("27EhhOjbt+4", _ZNK7WebCore20CachedResourceLoader11isPreloadedERKN3WTF6StringE) +STUB("27GrDZcAVL0", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification16FriendlistUpdateEEC2Ev) +STUB("27KwWvSiUd4", Java_java_awt_GnmImage_nativeGetRGB) +STUB("27Q0QecqZYM", _ZN3sce3pss5orbis5video14VideoPlayerVcs17VideoCoreSetSpeedEi) +STUB("27YDrjX0Rts", mono_aot_Sce_Vsh_Np_Papcmethod_addresses) +STUB("27Z-Cx1jbkU", _ZNSt24_Iostream_error_categoryD1Ev) +STUB( + "27Zn2YFaCbI", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearchC2ERS5_) +STUB("27ZvxOPJzt8", _ZN4Manx11MediaPlayer12supportsTypeEPKcS2_) STUB("27bAgiJmOh0", pthread_cond_timedwait) +STUB("27muhQADEG0", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112UpdateStatusEEppEi) +STUB( + "27nQtoHvZbY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEEC2Ev) +STUB( + "27pwxbhRx28", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE8capacityEv) +STUB("28-zrObSsN8", _ZN7WebCore20ResourceResponseBaseC2ERKN3WTF3URLERKNS1_6StringExS7_) +STUB( + "280u+DiKYu4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEEaSERKSB_) +STUB( + "281bSEyyhl0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "28AwuQt8sNs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) STUB("28Gu3wb-d1o", sceMbusDumpPortHandleInfo) +STUB("28MHn3Mx6wE", _ZNK3JSC13RuntimeMethod6methodEv) +STUB( + "28Q4TeyKC7c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("28QB8kkNorc", _ZN7WebCore9HTMLNames12nomoduleAttrE) STUB("28QqMnuuJ9Y", sceAudioOut2GetSpeakerArrayAmbisonicsCoefficients) +STUB("28VJv5mU8Mo", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getInteger7Ev) +STUB( + "28WPhuVuctY", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEEiRNS2_10LibContextEPT_m) +STUB( + "28XU165-v4s", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("28XkJS9-BHA", _ZN3sce7Toolkit2NP2V27Ranking17SetGameDataResultC2Ev) +STUB( + "28eYm72DhHk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("28gSNwqQAh4", monoeg_g_ptr_array_set_size) +STUB("28hrVKvp3BA", il2cpp_value_box) +STUB( + "28iF9xg6EFs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEC1EPS8_) +STUB( + "28lkrIQ-ZF4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEixEm) +STUB("28oDQxn7Aw4", _ZN3JSC7Symbols43arrayIteratorFieldIteratedObjectPrivateNameE) +STUB("28r5Y8TMl0Q", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_19ProductInfoDetailedEE17getAdditionalInfoEv) +STUB("28uM7rlJq0g", _ZN7WebCore33testPreloadScannerViewportSupportEPNS_8DocumentE) STUB("28xmRUFao68", sceNpTrophyUnlockTrophy) +STUB("28y+c5-yi2c", _ZN7WebCore10Pasteboard14readAllStringsERKN3WTF6StringE) STUB("290AWkA-lck", sceOpusDecDestroy) +STUB("291n9Y114No", _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead11unsetLeaderEv) +STUB( + "292HO0W7gxs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEEcvbEv) +STUB("292zEgzQjLU", rgctx_fetch_trampoline_mrgctx_82_p) +STUB("293qmhFJnV4", mono_aot_Sce_Vsh_VoiceAndAgentunbox_trampoline_addresses) +STUB("29A3BQay0ZI", _ZN3sce7Toolkit2NP2V210Tournament15RegisteredUsers5resetEv) +STUB("29D+EUtAOGI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence8PresenceEE12deepCopyFromERS7_) +STUB("29DLZns5UrA", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEEdeEv) +STUB( + "29F97q4StMc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEE7get_refEv) +STUB( + "29FjieVcegY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEC1EPS8_) +STUB("29I8pJ49Hc0", _ZN7WebCore21UserContentControllerD1Ev) +STUB( + "29IzTO2j9Hs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("29J5paz-NXI", rgctx_fetch_trampoline_rgctx_113) +STUB( + "29SRzXOZTaQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEEaSERKS8_) +STUB("29UIt-CiQoE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEdeEv) +STUB( + "29Yy-AbuN-M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEEdeEv) +STUB( + "29aMn-0etW0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE5eraseENS2_8IteratorIS8_EERSB_) STUB("29ftOGIrUCo", sceNpSetEventFlag) +STUB( + "29gFnS6LaMo", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE5eraseENS2_8IteratorIS6_EERS9_) STUB("29hgt4+HPYs", sceAudioOut2GetIpcHandle) +STUB("29i3Hdvg9zw", _ZN3JSC18GCActivityCallback13scheduleTimerEN3WTF7SecondsE) +STUB( + "29iCxbDdSz4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEC2Ev) STUB("29oKvKXzEZo", sceGnmMapComputeQueue) +STUB( + "29w0uhx8iBE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEED2Ev) +STUB( + "29yhFJ-SWcQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB( + "2A+dHO08iuo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "2A032cRLKZk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEC1ERKS7_) +STUB( + "2A1bWwGiH1k", + _ZN3sce2Np9CppWebApi13InGameCatalog2V521ContainerMediaFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_14ContainerMediaEEE) +STUB( + "2A3PZm2w--M", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEplEm) +STUB( + "2A508ZEMWzM", + _ZN3JSC14JSGlobalObject17defineOwnPropertyEPNS_8JSObjectEPS0_NS_12PropertyNameERKNS_18PropertyDescriptorEb) +STUB( + "2A73YeyfogM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEppEi) +STUB("2AA9QT1IUgs", + _ZNK3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayer16getJoinTimestampEv) +STUB( + "2ACjnFd8gxU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEC2EPKS8_) +STUB("2AE+1w-vUeo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEptEv) +STUB( + "2AGlUB7JBmE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEC1Ev) +STUB( + "2ALuiY+-oX4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEC2EPS6_PNS2_10LibContextE) +STUB( + "2ANkpZsxeTo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEEC1Ev) +STUB( + "2AOUf-FsObo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEC2Ev) +STUB( + "2APQr9KERvk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEEptEv) +STUB( + "2AQ7jF5TMMU", + _ZN3sce2Np9CppWebApi14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyD2Ev) +STUB("2AR7FSLePkk", + _ZN23sceMetadataReaderWriter10jpegParser23jpegParserWriteMetadataERKSsRKNS_8MetadataE) +STUB("2AUmACQO05w", _ZNK3sce2Np9CppWebApi6Common8IteratorIdEptEv) +STUB( + "2AV8vGagMXg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("2AbvyU4dqhA", g_JSGlobalObjectPoison) +STUB("2AdktzQ--kA", _ZN7WebCore4Page20setUseDarkAppearanceEb) +STUB( + "2Agu8BJ8heg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEptEv) +STUB( + "2AmEql684WI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEE11get_deleterEv) +STUB("2ApsCsIuALw", _ZN7WebCore17JSDOMGlobalObject21offsetOfWorldIsNormalEv) +STUB("2AqqzZ9fKwY", u_strFromUTF8WithSub) +STUB( + "2AuO93joDe8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEC2Ev) +STUB( + "2AviI2U46+Y", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer17hasacceptLanguageEv) +STUB("2Aw366Jn07s", _LAtan) +STUB("2AyUAX6hJmM", _ZNKSt9basic_iosIcSt11char_traitsIcEE5widenEc) +STUB("2B+V3qCqz4s", _Cnd_init_with_name) +STUB( + "2BCN3Zf18R0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEmmEi) +STUB("2BFkLGmS+Ao", FcPatternGetInteger) +STUB("2BIkSnOhATY", _ZN4Manx21DisplayRefreshMonitorD2Ev) +STUB( + "2BKu7qQECqI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEEC1EPNS2_10LibContextE) +STUB("2BO62eI2Q8g", udat_getBooleanAttribute_67) +STUB( + "2BQ+X8krmck", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEE6assignEPS7_PFvS9_EPNS2_10LibContextE) STUB("2BS4EtAaF28", sceAgcJumpPatchSetTarget) +STUB( + "2BSVAe7ly40", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEE11get_deleterEv) +STUB("2BTI9QR3Q2c", rgctx_fetch_trampoline_mrgctx_41) +STUB( + "2BWRnERid68", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE10setContextEPNS2_10LibContextE) +STUB("2Bd7UoCRhQ8", SSL_validateCertParam) +STUB( + "2BkeME944pM", + _ZN3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponse9setBlocksERKNS1_6Common6VectorImEE) +STUB( + "2BlJ-QwxMRo", + _ZN7WebCore21NetworkStorageSession29setAgeCapForClientSideCookiesEN3WTF8OptionalINS1_7SecondsEEE) +STUB("2BmJdX269kI", _ZNKSt8numpunctIwE11do_groupingEv) STUB("2BnPSY1Oxd8", sceNpTusGetMultiSlotVariableAAsync) +STUB("2BoNk3cT5DE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEC2ERS7_) +STUB("2BpxyUGzDdw", + _ZN7CoreIPC13MessageSender11sendMessageEN3WTF10PassOwnPtrINS_14MessageEncoderEEE) +STUB("2BrXbDTPIcE", g_ptr_array_remove) +STUB( + "2BsKczBTCWM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE5abortEv) +STUB("2BtaIvBG7-Y", _ZN3WTF10StringImpl20create8BitIfPossibleEPKDs) +STUB("2Btkg8k24Zg", aligned_alloc) +STUB("2BuJjjg4OyY", _ZN3sce7Toolkit2NP2V28Presence7Request14DeletePresenceC2Ev) +STUB("2ByTJhif5-k", PIo2) +STUB( + "2C1n6j-JXUA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEC2ERKS7_) STUB("2C6StOEz+nM", sceVideodec2MapMemory) +STUB("2CLKDwJXlSA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEEC1EPS4_PFvS6_EPNS2_10LibContextE) +STUB( + "2CN6+objfjM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEppEv) +STUB( + "2CNsn-9o2LI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE3endEv) +STUB("2COdJHFUeUo", _ZN3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer16unsetCustomData1Ev) +STUB("2CP8bpzVcyk", _ZN3JSC7Symbols26InternalPromisePrivateNameE) +STUB( + "2CWmJOoGoLA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEptEv) +STUB( + "2CXbn5s2F18", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEE5resetEPS6_) +STUB( + "2CYRbACBbZ8", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("2CZKDvi+xV4", JSRemoteInspectorServerStart) +STUB("2Cbacph-jV8", delegate_virtual_invoke_imt_10) STUB("2CeEvU+2VzY", sceUpsrvUpdateGetEulaDisplay) +STUB("2CfT-vnJtBA", _ZN7WebCore14DocumentLoaderC2ERKNS_15ResourceRequestERKNS_14SubstituteDataE) +STUB("2CfthlaCufA", u_isbase_67) +STUB( + "2Cg4yFbhQVo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "2Ch5cl2wXgQ", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData42setxPsnTcsComparedLastUpdatedUserAccountIdEm) +STUB("2ChSmFDC91I", WKOpenPanelResultListenerChooseFiles) +STUB("2CtlOo7nzno", _ZN3WTF10fastMallocEm) +STUB( + "2Cu34IG0NJI", + _ZN8meta_gen11MsvPromoter29setKeyValue_TBLAVC_IconHeightENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) STUB("2CxY28ewv8g", sceVideoOutConfigureOutputEx) +STUB( + "2D0N953nlVI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEED2Ev) +STUB( + "2D1W3kx06jM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB("2D3H+1nhwqQ", FTA_Support_Format_Pcf) +STUB( + "2D4Cj5Jt054", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE6resizeEj) +STUB( + "2D4pjAjG1dQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE5beginEv) +STUB( + "2D6J7D8+FoE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEmmEi) +STUB("2D9yfogw5bs", _ZN7WebCore11DisplayList8DrawPathC1ERKNS_4PathE) +STUB("2DBODjhqpOI", mono_aot_Sce_Vsh_WebViewDialogunbox_trampolines) +STUB("2DDULE-MYmQ", _ZN7WebCore23CoordinatedBackingStore7setSizeERKNS_9FloatSizeE) +STUB("2DE3xMWxTBI", WKPageCopyProvisionalURL) +STUB("2DGBAtaGQKc", mono_gc_set_heap_size_limit) +STUB( + "2DQtRdbv7vw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEC2EPKS8_) STUB("2DZKLRza9tQ", sceSdmaCancelQueue) +STUB( + "2DnI4d0GkEU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEED2Ev) +STUB( + "2Do9Rs5D7Hg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE4sizeEv) +STUB("2DxvpT8Kics", __tsan_atomic32_compare_exchange_weak) +STUB( + "2E5iNGAmxps", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE21intrusive_ptr_sub_refEPS9_) STUB("2E73lXML2Kk", sceAvControlGetCurrentOutputModeWithSync) +STUB("2E7ATnVXdZY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE5clearEv) STUB("2EBuouuYKgM", sceVideoOutSysDeleteVblankEvent2) +STUB("2EEDQ6uHY2c", _ZTIn) +STUB("2EVqG-ESTSw", _ZN3sce7Toolkit2NP2V212EventsClient17EventShareFactory12MAX_SIZE_TAGE) +STUB("2EVvhVabsJM", _ZN7WebCore8Settings25setMinimumLogicalFontSizeEi) STUB("2EWfAroUQE4", sceUserServiceSetGlsTtsSpeed) +STUB("2EXbWy6w4Z0", _ZN7WebCore24DocumentParserYieldTokenC2ERNS_8DocumentE) +STUB("2EY+5-CTFXc", _ZN3JSC13JSMapIterator14finishCreationERNS_2VMEPNS_5JSMapENS_13IterationKindE) +STUB("2EeZIfN5hXw", _ZN7WebCore7Element22setTabIndexForBindingsEi) STUB("2EfjPXVPk3s", sceNetCtlGetEtherLinkMode) +STUB("2EoYjMBr3xs", _ZN15AbstractStorage14TwitterContent5WriteEPKvlPl) +STUB("2ExfKIyEVJo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEED2Ev) +STUB( + "2Eyqw8mTWxs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEneERKS9_) +STUB( + "2F5huG-IXCs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "2FEVGn8ymmk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("2FGj+qnCtQM", _ZN3sce7Toolkit2NP2V210Tournament15RegisteredUsersC1ERKS4_) +STUB("2FHeipL4TDM", _ZN4Manx6System6osNameEv) +STUB( + "2FKKLv6Onu4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEaSERKS9_) +STUB("2FLN6z7Tga0", WKPageLoadPlainTextString) +STUB("2FPKT8OxHxo", CERT_extractAllDistinguishedNames) +STUB("2FPWFw1bJf0", mono_assembly_getrootdir) +STUB( + "2FQes7+e-Fc", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody6toJsonERNS_4Json5ValueEb) +STUB( + "2FRXLPBZL6s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEEC1Ev) +STUB( + "2FYMAt8Db9c", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEplEm) +STUB( + "2FbKe49-cCs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEE5resetEPS9_) +STUB("2FezsYwelgk", _ZTVSt8messagesIwE) +STUB("2Ff0fkg5A2M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEC1ERS8_) +STUB("2FreFa-C3+k", _ZN3sce7Toolkit2NP15AppSTLAllocatorI13SceNpOnlineIdE8allocateEmPKv) +STUB( + "2FsleDITAK4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEaSERKS9_) +STUB("2Fu4CKX9Va4", + _ZN7WebCore16HTMLMediaElement36setOverridePreferredDynamicRangeModeENS_16DynamicRangeModeE) +STUB("2Fzd4IszRAY", WKSecurityOriginCreate) +STUB( + "2G-r0tmRI8M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE10setContextEPNS2_10LibContextE) +STUB("2G1UznxkcgU", _ZGVNSt14_Error_objectsIiE14_System_objectE) STUB("2G2C0nmd++M", sceCameraStop) +STUB( + "2G5kYPASyW0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEplEm) +STUB("2G6i6hMIUUY", getdents) STUB("2G7-vVz9SIg", sceRudpGetLocalInfo) +STUB( + "2G9O3pP13Bk", + _ZN15AbstractStorage15FacebookStorage15RemoveRecursiveERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("2GM0mg+8jXc", _ZN3sce7Toolkit2NP2V29Messaging16GameDataMessagesD2Ev) +STUB("2GO7CQvjMo8", _ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequest17unsetInGameRosterEv) +STUB("2GWRrgT8o20", _ZTISt10ctype_base) STUB("2GbOPwcNJd0", sceNpAsmClientGetNpTitleToken2) +STUB("2Gc+UDHZNrA", JVM_FreeMemory) +STUB( + "2GcAUIXHzME", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsC2EPNS1_6Common10LibContextE) +STUB("2GdBuLgUeSI", _ZN7WebCore22DefaultFilterOperation6createENS_15FilterOperation13OperationTypeE) +STUB("2GevjemzjJ8", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_19ProductInfoDetailedEEneERKS4_) +STUB( + "2Gg9FyFlY6E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEppEv) +STUB("2GpREPwnOW4", _ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamTournamentaSERKS4_) +STUB("2GsWjGLiiF4", JNU_ReleaseStringPlatformChars) +STUB("2H0q+W0RyYk", WKWebsiteDataStoreGetResourceLoadStatisticsEnabled) STUB("2H1RlsV3ioM", scePerfTracePmStop) +STUB("2H50GzZ63L0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEEC2Ev) +STUB("2H51caHZU0Y", _ZTVN10__cxxabiv129__pointer_to_member_type_infoE) +STUB("2H7XUKtHAdc", _ZN3sce2Np9CppWebApi13InGameCatalog2V520ContainerRatingCount10unsetScoreEv) +STUB("2H8m1wTdRVs", mono_aot_Sce_Vsh_PsnUtiljit_code_start) STUB("2HC+lay1ILU", sceMoveWriteCalibrationInfo) +STUB("2HED9ow7Zjc", __absvsi2) +STUB( + "2HEk7PGYpPc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEED2Ev) +STUB("2HHbbKYM7DE", WKBundlePageRegisterScrollOperationCompletionCallback) STUB("2HHfdrT+rnQ", sceSystemServiceActivateHevcIsActivated) +STUB("2HPiq4K59Xc", _ZN7WebCore17CredentialStorage24defaultCredentialStorageEv) +STUB( + "2HQ55UMlE5s", + _ZN7WebCore26MessagePortChannelRegistry25didDisentangleMessagePortERKNS_21MessagePortIdentifierE) +STUB( + "2HRyZzguZzs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB( + "2HSrPeSIBV0", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi22ParameterToCreateMatch10initializeEPNS1_6Common10LibContextENS6_12IntrusivePtrINS3_18CreateMatchRequestEEE) +STUB("2HZf301Pl98", _ZNK15AbstractStorage11LocalFolder7GetStatEPNS_4StatE) STUB("2HajCEGgG4s", sceNpSignalingGetPeerNetInfoResult) +STUB( + "2HcBsUtk9NY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("2Hd6bj3PQJE", _ZN3sce7Toolkit2NP2V211UserProfile7Request27DisplayGriefReportingDialogD1Ev) STUB("2HeYOG2bEcU", sceCesUtf32ToBig5) +STUB("2HkOOhiWK3M", _ZN3sce2np8SelectorD0Ev) +STUB( + "2Hl8xOKwJ8s", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE3endEv) +STUB( + "2Hm0e3iXI8M", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("2HnmKiLmV6s", _Atomic_fetch_sub_4) +STUB("2HrAYiI1XS8", _ZN3JSC14JSGlobalObject6createERNS_2VMEPNS_9StructureE) +STUB("2HtDuQ3JUEk", uprv_decContextGetStatus_67) STUB("2Hw8gjMdwSY", sceAmprMeasureCommandSizeWriteAddressFromCounterPair_04_00) +STUB("2HzgScoQq9o", hypot3) +STUB("2I-9M0V-i8c", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEEixEm) +STUB("2I2RV6LyNng", rtprio_thread) STUB("2I5eSIxm4Ng", sceKernelGetSubsysSubId) +STUB("2I9n0OzAicc", _ZN7WebCore8SVGNames17linearGradientTagE) +STUB("2IBfZ3RsxdU", mono_aot_Sce_Vsh_SysfileUtilWrapperjit_got) +STUB("2IC-EspCqXs", _ZN7WebCore9JSElement9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "2IDMNR2mr1U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE4sizeEv) +STUB( + "2IDv+5JWdEA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEED1Ev) STUB("2IJhUyK8moE", sceGnmSqttSelectMode) +STUB("2IKm-BXcq9g", _ZNK9Inspector21InspectorConsoleAgent7enabledEv) +STUB("2IQC9I2rgsE", _ZN3JSC9Structure6s_infoE) +STUB("2IS3HuSY1vw", _ZN3sce7Toolkit2NP15AppSTLAllocatorI13SceNpOnlineIdEC2ERKS4_) +STUB( + "2IX3zXA0UbI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEixEm) +STUB( + "2IXVAFL4HUc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE28getResponseInformationOptionEv) +STUB("2IZgdeRe2xE", _ZTVSt15basic_streambufIcSt11char_traitsIcEE) +STUB( + "2IaCo4tBh7s", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEppEv) +STUB( + "2IeGWneKdJw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEC2Ev) +STUB( + "2IfVifwFvhI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEEC1Ev) +STUB("2Ifv4D0xPmw", _ZN3sce7Toolkit2NP24ChallengeResponseRequestC1Ev) +STUB("2IgS7jiLYUo", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11SessionDataEE19setCustomReturnCodeEi) +STUB( + "2IiBSSdhfQM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE21intrusive_ptr_sub_refEPS9_) +STUB("2IimZDepQAY", _ZN9Inspector8Protocol3CSS11CSSProperty4TextE) +STUB( + "2IpWZOkTMiM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEcvbEv) +STUB("2IpspXy7k1o", il2cpp_class_get_type) +STUB("2Irwf6Oqt4E", SSL_getNextSessionId) +STUB( + "2IyEU5sGEdw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEC1ERS7_) +STUB("2IyVp+WLxIw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEC1ERKS7_) +STUB("2J0HrHaFDGs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEC2Ev) +STUB( + "2JCbDkKG2ek", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEE5resetEPS9_) +STUB( + "2JDZBQ3dTmE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEeqERKS9_) +STUB("2JEJdnVxBRA", _ZN3sce7Toolkit2NP2V27Ranking7Request13GetUsersRanks14MAX_NUM_BOARDSE) +STUB( + "2JERz+LFZF8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEE3getEv) +STUB( + "2JEkKBeGsPM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB( + "2JOuKtPLnc4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEEC2ERKSA_) +STUB( + "2JTdMAk+Upw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEC1EPS8_) +STUB("2JXVTjOe-qM", _ZN7WebCore20HTMLTableCellElement8setScopeERKN3WTF10AtomStringE) +STUB("2JaKgDK0sR8", mono_aot_Sce_Vsh_Np_Snsunbox_trampolines) +STUB("2Jc99Z-8EhQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEE5resetEPS6_) +STUB( + "2JcMFSvH4M4", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V325PsnWebErrorWrapperFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_11PsnWebErrorEEEPNS8_INS3_18PsnWebErrorWrapperEEE) +STUB("2JdCthltjmo", _ZN3sce2Np9CppWebApi7Matches2V17SubtaskD1Ev) +STUB("2Je9kk2kq8g", AnnotatePCQDestroy) STUB("2JgFB2n9oUM", scePadSetTriggerEffect) +STUB( + "2Jglz+E6IvI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEneERKS9_) +STUB( + "2JhtUaL1Z6M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "2Jm85HW8qAw", + _ZN3sce2Np9CppWebApi14SessionManager2V115SearchCondition12setAttributeERKNS3_15SearchAttributeE) +STUB( + "2JoZT1ZB1RU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEplEm) +STUB("2JpjMR3bG8s", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEptEv) +STUB("2Js-mSdOPU4", mono_metadata_free_marshal_spec) +STUB( + "2Jt1TqV1It4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE21intrusive_ptr_add_refEPS9_) STUB("2JtEQrjeUR4", sceFiosSetGlobalDefaultOpAttr) STUB("2JtWUUiYBXs", sceAgcGetRegisterDefaults2) +STUB("2Jx-kzaGeG8", monoeg_g_hash_table_size) +STUB("2K0ArvkVKuI", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container10getVersionEv) +STUB( + "2K0DlpUJHrU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEEC2Ev) +STUB("2K2ZFsGumc8", _ZN3sce2Np9CppWebApi15Personalization2V121GetAccessCodeResponseD1Ev) +STUB("2K6zyWD2WxI", _ZNK3WTF10StringImpl10startsWithEPKS0_) +STUB("2KGXCqApfz4", dlinfo) +STUB("2KK8D03LGg0", _ZN3JSC6JSCell12heapSnapshotEPS0_RNS_19HeapSnapshotBuilderE) STUB("2KNEDy+8OLg", sceAppInstUtilAppGetAddcontInfo) +STUB("2KNnG2Z9zJA", _ZNSt6_MutexC1Ev) +STUB("2KO6PkC9yb0", res_getResource_67) +STUB( + "2KRAzvu3Nxg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE7reserveEi) STUB("2KVa2-HqIRs", sceMouseExtensionSetCursor) STUB("2KW9VnPMWDQ", sceVideoOutSysSetBlackLevel) STUB("2KXS-HkZT3c", sceFontFtSupportOpenTypeTtf) +STUB( + "2KityIgkzpU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEeqERKS9_) +STUB("2KjWQhJvFxA", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEEmmEi) +STUB( + "2KqNbE73+aI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEED1Ev) +STUB( + "2KvflElTb1o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEE5resetEPS6_) +STUB("2KwpxBxKxu0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEEcvbEv) +STUB( + "2KytzitBu9M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEC1Ev) STUB("2L-W-ZYn2Qo", sceNpFriendListDialogInitialize) +STUB( + "2L1HUikvsKk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE3endEv) +STUB( + "2L430LIYCJE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE4sizeEv) +STUB("2L86QHJGH30", _ZN3sce7Toolkit2NP2V210Tournament20OneVsOneMatchDetailsD2Ev) +STUB("2L8gDyjvyl8", g_get_charset) +STUB("2L8p9UgRdvo", _ZN9Inspector22InspectorDebuggerAgent8stepIntoERN3WTF6StringE) +STUB( + "2LHOdGX3hPQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEeqERKS9_) STUB("2LKUTf2HNEk", sceNpUniversalDataSystemIntDeleteUserDataWithServerData) +STUB("2LKVAt2Daw8", _ZN7WebCore12EventHandler12selectCursorERKNS_13HitTestResultEb) +STUB("2LLpgZUyZTw", _ZN3sce7Toolkit2NP2V211UserProfile9NpProfileC2Ev) +STUB("2LUk8Ch0mJY", _ZN3WTF13normalizedNFCERKNS_6StringE) +STUB("2Lb13vobDWc", _ZThn24_N9Inspector22InspectorDebuggerAgent6resumeERN3WTF6StringE) +STUB("2LdCmpD47rs", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeINS1_11TusVariableEPvEE7addressERS6_) +STUB( + "2Ldub2gTzYc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEptEv) +STUB( + "2LfWPsjwYe0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "2LjuMOz0Huw", + _ZN9Inspector20CSSBackendDispatcher17getAllStyleSheetsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "2LlnX9JerXg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEE21intrusive_ptr_add_refEPS7_) +STUB("2LooX97-5b8", _ZNK3sce2Np9CppWebApi7Matches2V120ResponseMatchResults10getVersionEv) +STUB( + "2LqYmCT4sio", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setBoolean3ERKb) STUB("2LrlpFmBTC8", sceUsbStorageGetdentsOpen) +STUB( + "2LumHO07+lk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEE7add_refEv) +STUB("2Lvc7KWtErs", __kernel_sindf) +STUB( + "2Lw8E7NOr6g", + _ZN7WebCore14DocumentLoader21setCustomHeaderFieldsEON3WTF6VectorINS_15HTTPHeaderFieldELm0ENS1_15CrashOnOverflowELm16EEE) +STUB( + "2Lwj0aDXmWM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "2LwmYA5NX0s", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEC1Ev) +STUB("2M+dFM8Wmq4", __sys_kqueueex) +STUB("2M0ZLmwaVd8", _ZN7WebCore9FetchBody12fromFormDataERNS_22ScriptExecutionContextERNS_8FormDataE) +STUB( + "2M4Rt+itFfY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE5beginEv) +STUB("2M54M-SKV-k", FcConfigGetCurrent) +STUB("2M7akX+bJTw", _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession13setMaxPlayersERKi) +STUB( + "2M8RsUvnwUI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB("2M9VZGYPHLI", __truncdfsf2) +STUB("2MC2ZFRBtKc", _ZN3sce7Toolkit2NP2V28Commerce7Request21DisplayJoinPlusDialogD1Ev) +STUB( + "2MJdZC3reOo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEEC1EPSA_PNS2_10LibContextE) +STUB("2MK5Lr9pgQc", _ZNSt8bad_castD0Ev) +STUB( + "2MOM9Jk6DQ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE5eraseENS2_8IteratorIS8_EERSB_) STUB("2MOy+rUfuhQ", pthread_cond_signal) +STUB( + "2MWbY1q4pJA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEaSERKS9_) +STUB( + "2MZ119cVgK4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "2MbqYnLDaoc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEeqERKS9_) +STUB("2MdHT+n6Jwc", mono_aot_Sce_Vsh_ProfileCachemethod_addresses) +STUB("2MfMa3456FI", _Getcloc) +STUB( + "2Mo5KwOkcSg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEE11get_deleterEv) +STUB("2MsnEddYS5w", _ZN7WebCore9JSElement4infoEv) +STUB("2MwwGOkHrvA", png_set_write_user_transform_fn) +STUB( + "2N1r8wtxBKg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEEC1Ev) +STUB( + "2N4uOVJIAG4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("2N5zUQ4FLoA", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed14PlayedWithFeedEE5resetEv) +STUB("2NCACgNAZmY", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_17TitleCloudStorage2V19ConditionEEmmEv) +STUB("2NCsw+p5fhQ", _ZN12video_parser7cVpUtil22vp_ff4_fseek_by_threadEPvli) +STUB("2NH2humQpog", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEC2Ev) +STUB("2NHlTAhVJQM", _ZN7WebCore14StaticNodeListnwEmPv) +STUB("2NPurLS-IXo", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError9getSourceEv) +STUB("2NPvILZGQM8", _ZN3JSC7Symbols21createHTMLPrivateNameE) +STUB("2NThFFu5XdE", _ZNK7WebCore11MediaSample8hasAlphaEv) +STUB("2NXkxHfxg5Y", _ZN7WebCore20makeRGBA32FromFloatsEffff) +STUB("2NZthKrlG-o", _ZN3JSC7Symbols17assertPrivateNameE) +STUB("2NaZ-stsAv0", utext_close) +STUB( + "2NcJEi8CcCw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEC1Ev) +STUB("2NeDeAGJL2E", _ZNK3sce2Np9CppWebApi7Matches2V118RequestMatchPlayer11getPlayerIdEv) STUB("2NeZnMEP3-0", sceHttpSetPriorityOption) +STUB( + "2NgtUwi940A", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) STUB("2NhkFTRnXHk", scePadReadForTracker) +STUB("2NiN7-BXsDo", JVM_GetClassContext) +STUB("2NkWCegz2to", _ZN3sce2Np9CppWebApi6Common8IteratorINS2_6StringEEaSERKS5_) +STUB("2Nlpj99LvVo", _ZN7WebCore20ScrollingCoordinator13pageDestroyedEv) +STUB("2NrQs5Oc5NU", _ZN3sce3Xml4Attr7setNameEPKNS0_6StringE) +STUB("2NvhgiBTcVE", __ctzsi2) +STUB( + "2O5iso6VJI8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEE7get_refEv) +STUB( + "2OBzQi+EbpE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEaSERKS9_) +STUB("2OD7Oi6auPk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEED2Ev) +STUB("2OE6PRf9V5k", _ZN3sce7Toolkit2NP2V24Core7Request14RemoveCallbackD2Ev) +STUB( + "2OEcZLc27Js", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "2OIDU9l1C+U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEC2Ev) +STUB("2OIhvrfQkl4", _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScoreC2ERS5_) +STUB("2OLmRt6Wlb8", uprv_decNumberToString_67) STUB("2Of0f+3mhhE", scePthreadMutexDestroy) +STUB( + "2OgoP+aBy+M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEE3getEv) +STUB( + "2OhW155rZTw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEEC2ERSA_) +STUB("2Olt9gqOauQ", _ZNKSt8numpunctIwE13thousands_sepEv) +STUB( + "2OviWdLsOE0", + _ZN3sce2Np9CppWebApi14IdentityMapper2V333PsnWebError_error_missingElements8fromJsonERKNS_4Json5ValueE) +STUB("2OwIlPSvjKw", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V18Variable10valueIsSetEv) +STUB("2P-AwkXelLA", mono_aot_Mono_CSharpunbox_trampoline_addresses) +STUB( + "2P5FhwmVOVM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE10setContextEPNS2_10LibContextE) +STUB( + "2P789Qo27CQ", + _ZN7WebCore26HTMLTextFormControlElement6selectENS_19SelectionRevealModeERKNS_23AXTextStateChangeIntentE) +STUB("2PDufitsff0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEEC1EPS5_PFvS7_EPNS2_10LibContextE) +STUB("2PEtGWY41Tc", mono_aot_Sce_Vsh_MarlinDownloaderWrapperunbox_trampolines_end) +STUB("2PHbXN2bnxk", getpwnam_r) STUB("2PKMNZuXcPQ", sceFiosFHWritev) +STUB( + "2PNg+ks5Vco", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEC1EPNS2_10LibContextE) +STUB( + "2PNosI8UaaM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEE5resetEPS9_) +STUB("2POQ965uUbU", _ZNK7WebCore37BasicComponentTransferFilterOperation6amountEv) +STUB("2PP8wAfXz-M", _ZN3sce7Toolkit2NP2V26Trophy15TrophyPackGroupD2Ev) +STUB("2PQXEoCzWjg", _ZN3sce7Toolkit2NP2V212NetworkUtils12BandwithInfoD2Ev) +STUB("2PVKr6w9AM4", _ZNK7WebCore10StorageMap8containsERKN3WTF6StringE) +STUB("2PWfzfdBMOo", _ZN3sce7Toolkit2NP2V28Matching5WorldC1Ev) +STUB("2PX8AY1a0Eo", _ZN7WebCore20HTMLFrameElementBase6heightEv) +STUB("2PXViLQGQq0", _ZN7WebCore8SVGNames15repeatCountAttrE) +STUB("2PXZUKjolAA", _ZTIPKf) +STUB("2PYNoOV5tdI", Java_java_lang_StrictMath_sin) STUB("2PZfeVc3T98", sceMusicFwSetShuffle) +STUB( + "2Pa3P8LcI4c", + _ZN7WebCore13getRawCookiesERKNS_21NetworkStorageSessionERKNS_3URLERKNS_12SameSiteInfoES5_St8optionalImESA_RN3WTF6VectorINS_6CookieELm0ENSB_15CrashOnOverflowELm16EEE) +STUB( + "2PhsdcbkRfo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) STUB("2Pms7iCE-Fo", sceShellCoreUtilSetSplashScreenState) +STUB("2PoQu-K2qXk", _ZNSt7collateIwEC2ERKSt8_Locinfom) STUB("2PrsbRYyZi4", sceAgcDriverGetSetFlipPacketSizeInDwords) +STUB("2PuCkkEw9eE", glShaderSource) +STUB( + "2PvZlrmbeFQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE7reserveEi) +STUB("2PxU-rB3ixI", _ZNSt8ios_base7failureC1EPKcRKSt10error_code) STUB("2Q0z6rnBrTE", pthread_attr_setstacksize) +STUB("2Q2jh6Y7wQQ", mono_aot_Sce_Vsh_VideoPlayerjit_code_start) +STUB( + "2Q5RGm4IveI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEC2ERKS7_) +STUB("2Q7j6oWFX2I", _ZN4Manx8X509cinf12serialNumberEPcj) +STUB("2Q8rymUy8to", _ZN3sce2Np9CppWebApi14SessionManager2V112NonPsnLeaderD2Ev) +STUB( + "2QBWM84BqXA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEC1Ev) +STUB("2QBxm43-Rr8", _ZN3WTF10WorkerPoolD1Ev) +STUB( + "2QDwMqileP0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("2QGFkodBuuM", png_get_text) +STUB("2QGQuBYQV98", mono_aot_Sce_Vsh_AppInstUtilWrapperunwind_info) +STUB("2QInXpjrgR0", __tsan_atomic32_store) +STUB("2QJx9Y8S7EI", _ZNK3JSC12JSRopeString11resolveRopeEPNS_14JSGlobalObjectE) +STUB( + "2QNVqV99XM0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("2QQQ8yOcLe4", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product14setDescriptionEPKc) +STUB("2QVQeht26Do", mono_jit_thread_attach) +STUB("2QXf8A0Fsjg", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_removeEventTime) +STUB("2QZ6i6cRmI4", _ZNK7WebCore8Document15visibilityStateEv) +STUB("2QbbMrPN0b8", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17GetGameDataResultEEC1Ev) +STUB("2QeEVi7ZbqI", _ZN3sce7Toolkit2NP29GameCustomDataGameDataRequestC2Ev) STUB("2QfqfeLblbg", sceFontStyleFrameGetScalePixel) STUB("2QgUy+xJqS0", sceNpTrophy2GetGameIcon) +STUB("2QhFHIOZPNM", WKPreferencesSetWebAuthenticationLocalAuthenticatorEnabled) +STUB( + "2Ql+uFW4gfM", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC2Ev) +STUB( + "2QopYH-NdUw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEE5resetEPS6_) +STUB("2QtQ+C2PcQI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEppEi) +STUB( + "2QwVrP1I4WQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEptEv) +STUB("2Qzl3gA29ls", _ZN7WebCore14StaticNodeListdaEPv) STUB("2R+Q+mF1eog", sceIpmiMgrRaiseExceptionToPid) +STUB("2R2j1QezUGM", _ZNSt12bad_weak_ptrD2Ev) +STUB("2R3GP6I8vDI", bemp2sys_pesparser_parse) +STUB( + "2R5g69wxWPE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEcvbEv) +STUB("2R6EUYFiQAM", uregex_groupNumberFromCName_67) +STUB("2R7sNgYqmi0", _ZN7WebCore11DisplayList4ClipD1Ev) +STUB("2R92B2fNXO0", JVM_GetProtectionDomain) +STUB("2RAzAWyh1sM", _ZN7WebCore9HTMLNames4uTagE) +STUB( + "2RBUoFWP56I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE21intrusive_ptr_add_refEPS9_) STUB("2RBVSWjzL74", sceKernelWriteSdkEventLogV) +STUB( + "2RErB8p4+hw", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getInteger4Ev) +STUB("2RGQGAal6vo", _ZNK7WebCore9FloatSize14diagonalLengthEv) +STUB( + "2RPil4vZUsE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEED1Ev) +STUB( + "2RR92X8DieU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEE11get_deleterEv) +STUB("2RVlVZ1oJAw", _ZN7WebCore8Settings19setShowDebugBordersEb) +STUB("2RVtNYjCrT0", _ZN9Inspector27DOMStorageBackendDispatcherD1Ev) +STUB("2RWIwPniPIU", _ZN12video_parser13cVideoPathMsvD0Ev) +STUB("2RcA0tTsEfI", mono_aot_Mono_Dynamic_Interpretermethod_addresses) +STUB("2RdicdHhtGA", _ZN3sce16CommonDialogUtil12getSelfAppIdEv) +STUB( + "2Rqk9j75MeI", + _ZN3sce2Np9CppWebApi14SessionManager2V129PostPlayerSessionsRequestBodyC1EPNS1_6Common10LibContextE) STUB("2RykCI-4Kts", sceCesIso2022UcsContextInit) +STUB("2RzxDZcWm7c", mono_assemblies_init) +STUB("2S-hLekYP7g", WKPageHorizontalRubberBandingIsEnabled) +STUB( + "2S2+-uyP55k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE7reserveEi) +STUB("2S9XRK34gCA", _ZN8meta_gen12JpegPromoter13SetFieldValueEiPib) +STUB("2SAIjwQw3V0", _ZN3sce7Toolkit2NP2V210Wordfilter16SanitizedCommentD2Ev) +STUB( + "2SAp5zI3MUo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE8copyFromERKS9_) +STUB("2SIbmtyoC5k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEC1Ev) STUB("2SKEx6bSq-4", sceKernelBatchMap) +STUB("2SKuIvr9sYU", _ZN3sce2np12StreamReader7ReadAllEPNS0_6HandleEPNS0_9StreamCtxEPvmPm) +STUB("2SMzgmzR-6Q", _ZN9Inspector18InjectedScriptHost6createEv) +STUB("2SSK3UFPqgQ", __floatdisf) +STUB("2SSw6lT8qJo", WKBundleScriptWorldNormalWorld) +STUB( + "2SUeJ9prUSA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEED2Ev) +STUB("2SVtfbYe8Ps", WKUserScriptCopySource) +STUB( + "2SYdpgZoT2g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEC2EPNS2_10LibContextE) +STUB("2SYvas-fF18", _ZN7WebCore30InvertLightnessFilterOperation5blendEPKNS_15FilterOperationEdb) +STUB("2SgvPe2rKlc", _ZN3sce2Np9CppWebApi6Common9RefObject7ReleaseEv) +STUB( + "2SiHIPaxvxw", + _ZN9Inspector28InspectorScriptProfilerAgent17didEvaluateScriptEN3WTF7SecondsEN3JSC15ProfilingReasonE) STUB("2Skcwb8RW2w", sceApplicationSuspendSystemForDebugger) +STUB( + "2SpMW5aZkCo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE4sizeEv) +STUB( + "2St4bhJvr3M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEEcvbEv) +STUB( + "2StJ8aHcIAw", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V128SetMultiVariablesRequestBody8fromJsonERKNS_4Json5ValueE) +STUB( + "2T+wNpL97hA", + _ZN9Inspector25DebuggerBackendDispatcher15searchInContentElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("2T2gM19fpnk", _ZN4Manx13WorkQueueImplD2Ev) +STUB("2T2lkjZnNAA", + _ZN7WebCore24CoordinatedGraphicsLayer23setContentsClippingRectERKNS_16FloatRoundedRectE) +STUB( + "2T74f+6MC1c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEE5resetEPS9_) +STUB("2T7lbS+CSzA", FT_GlyphLoader_CheckPoints) +STUB("2T8bl3JiAm0", ztrans_getTime_67) +STUB("2TBP8Ovj8SA", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V223FilterProfanityResponse10setMessageEPKc) +STUB( + "2TG4sh9gEvg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("2THa+iADEVI", _ZN3sce7Toolkit2NP2V23TUS12TusVariablesaSERKS4_) STUB("2TJ5KzC73gY", sceSystemServiceKillLocalProcessForJvm) +STUB("2TKA6PzTsdE", + _ZN3sce2Np9CppWebApi13InGameCatalog2V525ContentInteractiveElement8fromJsonERKNS_4Json5ValueE) +STUB( + "2TS11WjdZy8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("2TTHEYSAN-M", _ZN3WTF7RunLoop7iterateEv) +STUB("2TTNqz3ZiHg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEE7get_refEv) +STUB("2TYdayAO39E", _ZNSt7codecvtIcc9_MbstatetED0Ev) STUB("2Tb92quprl0", scePthreadCondInit) +STUB("2TgCUOHPmxY", _ZN22MmsMdCommonFsOperationD1Ev) +STUB( + "2TiaM08kFOk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE21intrusive_ptr_sub_refEPS9_) +STUB("2Tn5rXJPYi8", _ZN3sce3pss5orbis5video15VideoPlayerBase16GetLastErrorCodeEv) +STUB("2TpWOT7thyE", _ZN12video_parser13cVideoPathMgv20SetMaclistEKBVersionEi) +STUB( + "2Tu43TOLYQA", + _ZN3sce7Toolkit2NP2V210Tournament18getRegisteredUsersERKNS3_7Request18GetRegisteredUsersEPNS2_4Core8ResponseINS3_15RegisteredUsersEEE) +STUB( + "2TzFsrt-4qU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEED2Ev) +STUB("2U1eDa54b8E", _ZN3sce7Toolkit2NP2V28Matching7Request9LeaveRoomC1Ev) +STUB( + "2U41bV8CfDM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("2U6LEZ5b8z8", _ZN7WebCore14StaticNodeListnaEm) +STUB( + "2U6SO9wffqg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEE3getEv) +STUB( + "2U8P+6Bcrd4", + _ZN7WebCore10FontHandleC1EON3WTF3RefINS_12SharedBufferENS1_13DumbPtrTraitsIS3_EEEENS_4Font6OriginEfbb) STUB("2U9KB5G-W2w", sceOpusDecDecodeFloat) +STUB( + "2UE5K-18Gyw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("2UF-ArxYv14", ultag_isUnicodeLocaleType_67) +STUB("2UFh+YKfuzk", ctime_s) +STUB("2UIjkO5W7cY", + _ZN3sce7Toolkit2NP4Auth9Interface9getTicketEPNS1_9Utilities6FutureINS1_6TicketEEE) STUB("2ULUb+GapIM", scePssMouseReadState) +STUB( + "2UWD2AzYUOw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEE5resetEPS9_) +STUB( + "2UWSo6JPcag", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEE3getEv) +STUB("2UZHEdawMIU", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13SessionMemberEEneERKS4_) +STUB("2UZg+FAym4c", FT_Get_CMap_Language_ID) +STUB("2UaDd1XEm4M", _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBodyD1Ev) +STUB("2UcqK8iNJrc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEC2ERS7_) +STUB("2UdvlqIo2+o", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEE7add_refEv) +STUB( + "2Uo6vRB5tiM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE21intrusive_ptr_add_refEPS9_) +STUB("2UpHdcB6ZHI", _ZN7WebCore16BlobRegistryImpl17unregisterBlobURLERKN3WTF3URLE) +STUB( + "2Uq0Rac-XxM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB( + "2UsdJFC2qHo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEED2Ev) +STUB( + "2UzmGxnnNyw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEC1ERKS7_) +STUB( + "2V-RL56o5cU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEptEv) +STUB( + "2V4fGHDeKbk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "2V5cd7SgHZU", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectator55setpostGameSessionsSessionIdMemberSpectatorsRequestBodyENS1_6Common12IntrusivePtrINS3_52PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEE) +STUB("2V6fVvK7DzM", ucurr_isAvailable) +STUB("2V8DFaBEiNs", _ZN7WebCore20ResourceResponseBase6setURLERKN3WTF3URLE) +STUB("2VD2Ej+58XY", _ZN7WebCore18PrewarmInformationnwEmPv) +STUB( + "2VF18OZl8m0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEE11get_deleterEv) +STUB("2VF3mEweOpI", + _ZN3sce2Np9CppWebApi12Leaderboards2V122GetRankingResponseBodyC1EPNS1_6Common10LibContextE) +STUB("2VFQx+Q2dS8", _ZTv0_n40_N12Mp4Retriever8seekFileElb) +STUB( + "2VHDDUOvL68", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("2VLqcPeTce8", + _ZN3sce2Np9CppWebApi7Matches2V120RequestPlayerResultsC1EPNS1_6Common10LibContextE) STUB("2VMtYW1k054", sceDebugCreateScratchExecutableAreaForPrx) +STUB("2VOB+5XRQic", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18SessionInformationEE7destroyEPS3_) +STUB( + "2VQnL2f4t2w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEEC2ERSA_) +STUB("2VRU7xiqLO8", setcontext) +STUB( + "2VRn5kARGng", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("2VRrmqcEmrA", + _ZN7WebCore20PasteboardCustomData22fromPersistenceDecoderEON3WTF11Persistence7DecoderE) +STUB( + "2VVZYMiNkPw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE17getNpWebApi2ReqIdEv) +STUB( + "2VW9rbi67PA", + _ZN3sce2Np9CppWebApi14IdentityMapper2V342PsnWebError_error_validationConstraintInfoC2EPNS1_6Common10LibContextE) +STUB("2VXjgJz9nqs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEED1Ev) +STUB("2Vd1JIC2cqk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEE7add_refEv) +STUB("2VhQMBrzofA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE5beginEv) +STUB("2Vi3aJUlabI", _ZN7WebCore11MediaPlayer15durationChangedEv) STUB("2VmnxS1aZG0", sceNpManagerIntGetAuthorizationCodeWithRedirectUri) +STUB("2VzR2bMe3iU", _ZN4IPMI4impl10ServerImplD0Ev) +STUB("2W2HevoNdEc", Java_sun_awt_DownloadedFont_nativeDispose) +STUB("2W2eeUxgC3U", _ZN7WebCore12SharedBufferC2EON3WTF6VectorIcLm0ENS1_15CrashOnOverflowELm16EEE) STUB("2W53snqCbnA", sceNpUniversalDataSystemIntRecordObjectSetObject) +STUB("2W8raUaXJ8o", _ZThn136_N7WebCore16HTMLMediaElement15enterFullscreenEv) +STUB("2WE3BTYVwKM", cos) +STUB( + "2WGWTBVL+EE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEplEm) +STUB( + "2WHtrN5t-WQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEED1Ev) +STUB("2WIqQWEBRMQ", _ZN13MsvMetaEditor10InitializeEv) +STUB( + "2WKFMUN-f+4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEdeEv) +STUB("2WLueaP8Qyc", ft_validator_init) +STUB("2WOKLblrFs0", rgctx_fetch_trampoline_mrgctx_113) +STUB("2WQSpbbBBUU", isobmf_decoder_next_disk_offset) +STUB( + "2WUkRbpk+Qo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEeqERKS9_) +STUB("2WVBaSdGIds", _ZSt3cin) +STUB("2WhIfrxT4xA", _ZN3sce7Toolkit2NP2V24Core7Request11MemoryPools24WEB_API_MEM_DEFAULT_SIZEE) +STUB( + "2Wiib3MCfHM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEE11get_deleterEv) +STUB("2WkWZ4mf6Lc", _ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead11setTeamNameEPKc) +STUB("2Wl2bokVhiw", _ZN8meta_gen11MsvPromoter23retrieveGenericFileInfoEPKc) +STUB("2WoqIZS4f+8", g_set_prgname) +STUB("2WpUBRnLMNg", _ZN3WTF11Persistence7EncoderlsEs) +STUB("2WqXdvWNwdY", _ZNK7WebCore10ISOFullBox7versionEv) +STUB("2WwJgcSt7Nw", _ZN3sce7Toolkit2NP2V28Matching6WorldsC2ERKS4_) +STUB( + "2Wyw8cJqyuU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEC2Ev) STUB("2X0ruzkCtrA", sceAvSettingDebugSetHdmiMonitorInfo) +STUB("2X3KbR1J6-c", _ZN3JSC18IncrementalSweeperC2EPNS_4HeapE) +STUB("2X5agFjKxMc", calloc) +STUB( + "2X6zN3rg6Bo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEC2EPS8_) +STUB("2X7awcQsJms", + _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchStatusRequestC1EPNS1_6Common10LibContextE) +STUB( + "2X8g-TBF7PY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEdeEv) +STUB("2X9VrsiM+-Y", _ZN7WebCore7Element9classListEv) +STUB( + "2XAoYNRNbuU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE7reserveEi) +STUB( + "2XBOUlI5bi4", + _ZN3WTF15base64URLDecodeERKNS_6VectorIcLm0ENS_15CrashOnOverflowELm16EEENS_33SignedOrUnsignedCharVectorAdapterE) +STUB("2XCI+mDIrRY", mono_counters_register) +STUB( + "2XD05mDYafQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE7reserveEi) +STUB( + "2XEK2wFxBSg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE21intrusive_ptr_add_refEPS9_) +STUB("2XF0mf-TUuI", ucol_cloneBinary_67) +STUB( + "2XFEL1+RqjM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEC2EPNS2_10LibContextE) +STUB("2XFOG9cQuV4", _ZNK7WebCore16HTMLMediaElement23webkitHasClosedCaptionsEv) +STUB("2XHzo3KHsvw", mono_aot_Sce_Vsh_Np_AuCheckunbox_trampoline_addresses) +STUB("2XLg3fHDKgQ", _ZNK7WebCore9TreeScope14getElementByIdERKN3WTF6StringE) +STUB( + "2XMBuZXX5QI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEEptEv) +STUB( + "2XMF8LvthoI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEeqERKS9_) +STUB("2XNpG4ZDT4s", xmlGetPredefinedEntity) +STUB( + "2XSbgzoPn3c", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("2XXc6yOFres", OCSP_cert_status_str) +STUB( + "2XeDjWX8UnQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "2XkLZhga2L0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEppEv) +STUB( + "2XkvcftV+Mw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEE7get_refEv) +STUB("2XptLFIw+Kk", _ZN3sce7Toolkit2NP2V23TUS15TusDataStatuses5resetEv) +STUB( + "2Xq7Kbp7NJc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEE3getEv) +STUB( + "2Xx4qK9DOEc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("2XyGuIngkyU", _ZN7WebCore15HTMLLinkElement5setAsERKN3WTF12AtomicStringE) +STUB( + "2Y2G857PGog", + _ZN3sce7Toolkit2NP10WordFilter9Interface10filterWordEPKNS1_17FilterWordRequestEPNS1_9Utilities6FutureINS1_19WordFilterSanitizedEEEb) +STUB("2Y45Gy8TaHo", _ZN12video_parser13cVideoMetaVWG15getSeasonNumberEPi) +STUB( + "2Y7m29Gn50U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEE5resetEPS6_) +STUB( + "2Y8RdLpbOPo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEneERKS9_) +STUB("2YCDWkuFEy8", _ZNSt8numpunctIwE5_TidyEv) +STUB( + "2YEv35EmtDE", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEEiRNS2_10LibContextEPT_m) +STUB("2YIQ9Ed6+lU", _ZN3sce7Toolkit2NP15AppSTLAllocatorItE9constructEPtRKt) +STUB("2YLdmthJURg", _ZN15AbstractStorage15FacebookStorageD2Ev) +STUB( + "2YQFPhYgS0I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("2YRqfNusLmQ", uhash_nextElement) +STUB("2YS0DtL8qSc", _ZN7WebCore8Document20identifierForElementERNS_7ElementE) +STUB("2YS0leWna8I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEEC1EPS5_PFvS7_EPNS2_10LibContextE) +STUB("2YSzwYnNE3Q", _ZN3sce2Np9CppWebApi11UserProfile2V15ErrorD1Ev) +STUB("2YXmevi4vQ0", _ZN7WebCore6JSFileC2ERKS0_) +STUB("2YbS+GhInZQ", _ZN3sce2np8WorkItem10SetPendingEv) +STUB("2Yc8JPHyUSY", _ZN7WebCore15SQLiteStatementC1ERNS_14SQLiteDatabaseERKN3WTF6StringE) +STUB("2YcKd7nB+Ag", _ZN3sce7Toolkit2NP2V27Ranking7Request15GetFriendsRanksC1Ev) +STUB( + "2Yf4RtYRhb0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEEC2ERSA_) +STUB("2YfXXadue0s", RemotePlaySetRpMode) +STUB( + "2YhY4DATn2w", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEptEv) +STUB( + "2Yi2gYCnJi0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEeqERKS9_) +STUB("2YiOFz-yZ50", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_25ChallengeBinaryDataResultEE3getEv) +STUB( + "2YoqjM4zljs", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) STUB("2YsHtbvCrgs", sceKernelGetIdTableCurrentCount) +STUB("2YvlXyxJyaE", WKBundlePageSetTextZoomFactor) STUB("2Z+PpY6CaJg", pthread_mutex_unlock) +STUB("2Z0HaiSlRQY", _ZN3sce7Toolkit2NP2V210Tournament15RegisteredTeams5resetEv) +STUB("2Z5KCpQoPoI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEcvbEv) +STUB( + "2Z6S3wUFfB4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEEptEv) +STUB("2Z89SocEqmo", _ZN7WebCore17JSDOMGlobalObject17addBuiltinGlobalsERN3JSC2VME) +STUB("2ZA13DYhKPQ", _ZNK7WebCore10ScrollView18contentsToRootViewERKNS_7IntRectE) +STUB( + "2ZByAczqzNU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEE21intrusive_ptr_add_refEPS7_) +STUB( + "2ZHJxBomsU8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE6resizeEj) +STUB("2ZM8aofdWh8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEE3getEv) +STUB("2ZMNABg88EE", _ZN3NTF3URLC2EPKc) +STUB("2ZPUtL9C2No", JNI_GetCreatedJavaVMs) +STUB( + "2ZTdaVcUZD4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEE3getEv) STUB("2ZaHWy3IhKQ", sceFiosExistsSync) +STUB("2Zal1BzP1xU", _ZTVN15AbstractStorage18DailymotionStorageE) +STUB( + "2ZkjWav84Zs", + _ZN7WebCore21PageOverlayController43copyAccessibilityAttributeBoolValueForPointEN3WTF6StringENS_10FloatPointERb) +STUB("2ZnBc9ZCIqw", _ZN7WebCore28InspectorFrontendClientLocalD0Ev) +STUB( + "2Zq-k1b8Dkw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE8pushBackERKS6_) +STUB("2ZqL1jnL8so", _ZTSSt8numpunctIcE) +STUB( + "2ZqkOTUMIYM", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemProperties12setaccountIdEPKc) +STUB("2Zr3I-G3Xmc", _ZN7WebCore8Document34webkitDidEnterFullScreenForElementEPNS_7ElementE) +STUB( + "2ZsvMw6LXxE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEC1EPS8_) +STUB("2ZuK9C9AJjE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEmmEv) +STUB( + "2Zytx22Mu6U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEC1EPS8_) +STUB( + "2a7UIblEuKo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE3endEv) +STUB("2aFFTXLXkGY", _ZNK23sceMetadataReaderWriter8Metadata14checkReadFieldEiRS0_S1_Pb) +STUB("2aIQRjhKAzo", WKBundleClearApplicationCache) +STUB( + "2aLNm-e4dY4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("2aMiAKRnwgk", _ZN3WTF30userPreferredLanguagesOverrideEv) +STUB("2aReQ71pNkM", rgctx_fetch_trampoline_rgctx_89_p) +STUB( + "2aRs2ldyWrs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEneERKS9_) +STUB("2aSYNP1UUMs", delegate_virtual_invoke_imt_23_p) +STUB("2aSk2ruCP0E", _ZNSt8_LocinfoC1ERKSs) +STUB("2aa1x2FcJT0", _ZN7WebCore4Page30applicationWillEnterForegroundEv) +STUB("2agRS2DDOGI", _ZN7WebCore8SVGNames17baseFrequencyAttrE) STUB("2aizWWQBSoY", sceNpGriefReportWriteTemporaryFile) +STUB("2apC3qcQPvQ", WKContextConfigurationSetOverrideLanguages) +STUB("2atcqaHtnO0", WKBundleNodeHandleGetHTMLInputElementAutoFilled) +STUB("2awTIdIwODI", _ZNK3WTF3URL11isLocalFileEv) +STUB("2azQPZOWx6U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEC2EPS8_) +STUB("2b-a4e6ND74", mono_aot_Sce_Vsh_GriefReportStoragejit_code_end) STUB("2b-b5AouLv4", sceShellCoreUtilIsAccessibilityZoomLocked) STUB("2b3TI0mDYiI", sceNpScoreCensorComment) +STUB("2b6EWaCIKeM", _ZN3sce7Toolkit2NP2V27Session7Session16SESSION_NAME_LENE) +STUB( + "2bAMWBUewu0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE5emptyEv) +STUB("2bASh0rEeXI", _ZSt4wcin) +STUB("2bBQThoLcBU", _ZN7WebCore8Gradient12addColorStopERKNS0_9ColorStopE) +STUB("2bJPZE8nnCI", + _ZThn16_N9Inspector21InspectorRuntimeAgent26disableControlFlowProfilerERN3WTF6StringE) +STUB( + "2bL3zuJhQck", + _ZN3sce7Toolkit2NP2V28Matching8joinRoomERKNS3_7Request8JoinRoomEPNS2_4Core8ResponseINS3_4RoomEEE) +STUB("2bOKQcArI2k", + _ZN7WebCore9FrameView29setVisualViewportOverrideRectEN3WTF8OptionalINS_10LayoutRectEEE) +STUB( + "2bUUbbcqHUo", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERj) +STUB( + "2bVhpCEpdGA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEEC2ERKSA_) +STUB( + "2bWLlcCkzTI", + _ZN3sce2Np9CppWebApi14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBody8fromJsonERKNS_4Json5ValueE) STUB("2bbBBOkH4CY", sceAudioOut2MasteringTerm) +STUB("2bcmReUqDO4", ubidi_countRuns_67) +STUB("2bdiy8B-X2A", _ZN7WebCore4Page26startMonitoringWheelEventsEb) +STUB("2beu2bHw6qo", _ZN3sce2np5MutexC2Ev) +STUB( + "2bfL3yIBi5k", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERm) +STUB("2bnlV6FiqG0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE7popBackEv) +STUB("2boNt6Y0Eqs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEEaSERS9_) +STUB( + "2bq1UibUJA8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "2bqO0o1F4F4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEmmEi) +STUB( + "2c+xDQy1u7E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE3endEv) +STUB("2c4XKRPLkbE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEED1Ev) +STUB( + "2c7y91JantU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEC2EPKS8_) +STUB("2cAlfhQsYIA", + _ZN3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayer16unsetCustomData1Ev) +STUB("2cCuivTnfHI", _ZN3WTF11Persistence7EncoderlsEh) +STUB("2cDuA1XOmPI", mono_class_data_size) STUB("2cFJrJ+hxUQ", sceCesSJisToUtf16le) STUB("2cJVU9KC3zY", sceAvSettingNotifyVideoOutMode) +STUB( + "2cZoACjewGw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC1Ev) +STUB( + "2cbDyCVj69Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEED2Ev) +STUB("2cbKu53mAVw", _ZN7WebCore7Element34invalidateStyleAndLayerCompositionEv) +STUB( + "2cbgl1JsAwI", + _ZNK3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfiles16getincludeFieldsEv) STUB("2ccJz9LQI+w", sceAgcDcbDmaDataGetSize) STUB("2cfdqkF20ZI", sceVencQueryHeader) +STUB( + "2cjMOMYVRgk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEC2EPNS2_10LibContextE) +STUB("2ckTPPrHDzM", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V13MmrC1EPNS1_6Common10LibContextE) +STUB( + "2cqeVCMPfdg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "2cu+yRxU2ns", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEED2Ev) +STUB("2cvFu-4Zmvc", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error23getValidationConstraintEv) +STUB( + "2cyugI9cdfk", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser9setfieldsENS1_6Common12IntrusivePtrINS6_6VectorINS6_6StringEEEEE) +STUB( + "2d1toxs5fZE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEptEv) +STUB( + "2d4md5rdtQc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEED1Ev) +STUB("2d5UH9BnfVY", _Tls_setup__Wcstate) STUB("2dA75YfXNrQ", sceOpusDecInitialize) +STUB("2dALFCAUHgY", __asan_exp_load1_noabort) +STUB("2dAzrh4J0WY", _ZNK3sce2np10JsonString5CloneEP16SceNpAllocatorEx) STUB("2dB427dT3Iw", sceNpTusAddAndGetVariableAAsync) STUB("2dBOiluwiMw", sceCameraGetConnectedDeviceAndDriverMode) STUB("2dEhvvjlq30", pthread_setcanceltype) +STUB("2dF0hfMr7Xo", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE5beginEv) +STUB( + "2dRYo2XXSog", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB( + "2dTFoDVLrF8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEmmEv) +STUB("2dXihgWrxE4", _ZN7WebCore15defaultMIMETypeEv) +STUB("2dbm0DhmsPc", _ZN7WebCore24PointerCaptureController29touchWithIdentifierWasRemovedEi) +STUB( + "2dcZw43h6rU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEixEm) +STUB( + "2ddCLhg3xHg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEC2Ev) +STUB( + "2diu95llyV8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEE7add_refEv) +STUB("2djeYNpoVfk", _ZN3sce7Toolkit2NP2V28Commerce7ProductD2Ev) +STUB("2dlaytfYE60", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEED2Ev) +STUB("2dnEXzbgPgk", _ZN7WebCore9HTMLNames12ononlineAttrE) +STUB("2dnaEy8W7Q0", _ZN7WebCore4Path16addBezierCurveToERKNS_10FloatPointES3_S3_) +STUB("2dpKjFdVxqU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEC2Ev) +STUB( + "2dqfGe+njLA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE5emptyEv) +STUB( + "2dxnF4lse-0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEEdeEv) +STUB( + "2e3huPymRnY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEC1ERKS7_) +STUB("2e7Y020-QlQ", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEE5resetEPS5_) +STUB("2e82MxFnonI", + _ZN3sce2Np9CppWebApi14SessionManager2V112JoinableUserC2EPNS1_6Common10LibContextE) +STUB("2e96MkSXo3U", _ZTISt10moneypunctIcLb0EE) +STUB("2e9GLlHTKA4", _ZN3sce2np9HttpTrans7DestroyEv) +STUB( + "2e9hkpxh3N8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "2eA-RmCqdek", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEC1ERKS7_) STUB("2eDcGHC0YaM", sceZlibGetResult) +STUB("2eDtakd-FK0", delegate_virtual_invoke_4) +STUB("2eDxu+ARl1M", monoeg_g_strchug) STUB("2eHZuGzujZI", scePsmKitFontConfigGetFont) +STUB( + "2eJP3ByArdg", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_33ActivityFeedSharedScreenshotStoryEE9constructEPS3_RKS3_) STUB("2eKbgcboJso", sceNetSendmsg) +STUB("2eLBy9mcYx4", _ZN3sce3pss5orbis9framework18PsmFrameworkCsharp21SetEnableNativeMethodEb) +STUB("2eQ9LLJMx5Q", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth8AuthCodeEEC1Ev) +STUB("2eQpqTjJ5Y4", asinh) +STUB("2eTBt85Cq0I", p5_128) +STUB( + "2eTOGTlEZJg", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeAccountId2OnlineIdBatchaSERS5_) +STUB( + "2eYelZ3cefs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEEC2ERSA_) +STUB( + "2eaFa3aMWYs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEC2Ev) STUB("2edrkr0c-wg", sceNpWebApiUnregisterServicePushEventCallback) STUB("2ee14ktE1lw", sceNetFreeAllRouteInfo) +STUB("2ee4Rl9d1qQ", monoeg_g_strconcat) +STUB("2eggS6YiNew", _ZN3NTF21ResourceRequestLogger5flushEv) +STUB( + "2eiJIWZEbtc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEC2Ev) +STUB("2ekuHm8gYhc", _ZN7WebCore27ScrollingStateScrollingNode17setScrollPositionERKNS_10FloatPointE) +STUB("2el-7lc32dE", _ZN7WebCore5Range23commonAncestorContainerEPNS_4NodeES2_) STUB("2emCE6-7fOA", sceAppInstUtilAppGetNoRelatedAddcontTitleList) +STUB("2emaaluWzUw", __cxa_guard_abort) +STUB("2emcIQV3dOc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE5beginEv) +STUB( + "2eoKrZYhFTw", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) STUB("2eq1bMwgZYo", sceNpTusAbortRequest) +STUB("2et7hDo2b5w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEEC1Ev) STUB("2ezc3rKyIqM", sceDebugProcessSpawn) +STUB("2f+7BbGb6Yc", AnnotateCondVarSignal) +STUB("2f4X7OpBu5c", _ZN7WebCorelsERN3WTF10TextStreamERKNS_7IntRectE) STUB("2fCvoTO7EUU", sceVencCoreSetInputFrame) +STUB( + "2fEAIhLKGqo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "2fKToeefbQM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEE11get_deleterEv) +STUB("2fL2d6BRTa4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEaSERS7_) +STUB("2fM8-SUQfGo", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_15ActivityStoryIdEE17getAdditionalInfoEv) +STUB( + "2fRER8uB8sk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB( + "2fT8jCvGRhQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEdeEv) +STUB("2fe0xrpkq0s", _ZN3sce2Np9CppWebApi14SessionManager2V16FriendD2Ev) +STUB( + "2fsIgTIqPDU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("2ftIdEP8NFI", _ZN7WebCore11JSDOMWindow6s_infoE) +STUB( + "2fuuPZnHTm4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEC2Ev) +STUB( + "2fxdcyt5tGs", + _ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_bRSt8ios_baseRNSt5_IosbIiE8_IostateERSs) +STUB("2fy7aV58GZM", rgctx_fetch_trampoline_rgctx_74_p) +STUB("2fz0QiXSbwQ", + _ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE5_InitERKSt8_Locinfo) +STUB("2g2I24bMKlA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEED2Ev) +STUB( + "2g3v15VsDjU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEeqERKS9_) +STUB("2g5wco7AAHg", seed48) +STUB( + "2g9eYmi3M5w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEEC2ERKSA_) +STUB( + "2gBO0VyPbMM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEC2Ev) +STUB( + "2gBR1spOXTY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "2gF6++dzV1Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEE5resetEPS9_) +STUB( + "2gI9Vk3L0OI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEE3getEv) +STUB("2gIDmLL6afE", _ZN7bmalloc29StaticPerProcessStorageTraitsINS_11EnvironmentEE7Storage8s_memoryE) +STUB("2gIyJ4Cd5O8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V114SearchOperatorEEptEv) +STUB( + "2gJUUtEZxp8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE8capacityEv) +STUB("2gLa4w1nQqM", _ZN7WebCore4Page14setMediaVolumeEf) +STUB("2gLmRbOOBKE", _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse17setExpirationTimeERKi) +STUB( + "2gLwN7YftPc", + _ZN3sce2Np9CppWebApi7Matches2V127ReportResultsRequestFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_20ReportResultsRequestEEE) STUB("2gMXO8S2qik", sceDepth2WaitAndExecutePostProcess) +STUB("2gMbh2bXhsU", JVM_GetCPMethodNameUTF) +STUB("2gPLknvqjzk", _ZN7WebCore36ContentSecurityPolicyResponseHeadersC2ERKNS_16ResourceResponseE) +STUB( + "2gTQ81js94I", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEEdeEv) +STUB( + "2gTmf+Js8N0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEC1Ev) +STUB( + "2gUzVB+RKNA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEC1EPKS8_) +STUB( + "2gX1sasbRnA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE8capacityEv) +STUB("2ga4PiukfYc", ucptrie_openFromBinary) +STUB("2gbcltk3swE", div) +STUB( + "2gdex5IU2Yg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEE11get_deleterEv) +STUB( + "2geHZOyqKDs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEC2ERKS7_) +STUB( + "2gl07ex73Ts", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEE3getEv) +STUB( + "2gmEjnOIlBc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC2ERSA_) +STUB( + "2gmcTmOsyyw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEE7add_refEv) +STUB( + "2gpBSk+bcWY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE3endEv) +STUB( + "2gtzJh4Ho+w", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEeqERKS9_) +STUB( + "2guwI8tNbB4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEC2EPS6_PNS2_10LibContextE) +STUB( + "2gwYP0xJ8n4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "2gzE4xm4h80", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEppEv) STUB("2h037DNaRPU", scePerfPmcUmcStart) +STUB("2h3jY75zMkI", _LInf) +STUB("2h59YqPcrdM", _ZN3sce2np3ipc10IpmiClient4dtorEv) +STUB("2hBPnkneKNc", delegate_invoke_impl_target_1_p) +STUB("2hEtqkwpxGA", mono_aot_I18N_MidEastjit_got) +STUB( + "2hEyEaCxl8A", + _ZNK7WebCore9FrameView35convertFromContainingViewToRendererEPKNS_13RenderElementERKNS_8IntPointE) +STUB("2hFRBH1Db60", rgctx_fetch_trampoline_rgctx_31_p) +STUB( + "2hG+qSBb-AU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "2hGshlwat0w", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEixEm) +STUB("2hH4qcvCBZw", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEEcvbEv) +STUB("2hI-ePxzkcc", + _ZNK3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession16sessionNameIsSetEv) +STUB( + "2hMkeOYR54o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEppEv) +STUB("2hQ6eG0i3rw", uprv_mul32_overflow_67) +STUB("2hRhoMRXm6s", EVP_SignFinal) +STUB( + "2hUdFYLiFgc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEED1Ev) +STUB("2hWZJ75A4Vs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEE7add_refEv) +STUB( + "2haHKp3UR7o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEED1Ev) +STUB("2haZWaB3Gcs", WKRunLoopCallOnMainThread) +STUB("2heDFOb3rWM", mono_aot_Sce_Vsh_Np_Papcunbox_trampolines) +STUB("2hg9YVGV13I", mono_gc_register_bridge_callbacks) +STUB("2hiV0v27kcY", _ZNK3sce2np4User12HasAccountIdEPb) +STUB("2hj9h9zcj9U", fuse_opt_parse) STUB("2hlBNB96saE", sceNpWebApi2IntPushEventCreateCtxIndFilter) +STUB("2ho2X0o+LGc", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth7IdTokenEEC1Ev) +STUB( + "2hoURhW4Ac0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEneERKS9_) +STUB( + "2hoav7M2FjY", + _ZN7WebCore50rangeExpandedByCharactersInDirectionAtWordBoundaryERKNS_15VisiblePositionEiNS_18SelectionDirectionE) +STUB( + "2hw4wvM8Dj4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEptEv) +STUB("2hxunnGMnBU", _ZNK7WebCore31BasicColorMatrixFilterOperation6amountEv) STUB("2i0OGsRbIUA", sceDtcpIpTerm) +STUB( + "2i3Zz-KTFB4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEppEi) +STUB( + "2i3a0Rbkea0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEEC1ERS9_) +STUB("2i4ImodDhAk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEdeEv) +STUB("2i6PbN7F88k", _ZN7WebCore25DropShadowFilterOperationD1Ev) +STUB("2i6dhi0NrH8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEcvbEv) +STUB( + "2i9l0vwp4cw", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_13WhoLikedStoryENS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv) +STUB("2iCC9R7Ldhs", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18GameCustomDataItemEEC2ERKS4_) +STUB("2iNYrcGDF6g", _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead11leaderIsSetEv) +STUB("2iORhW4G1F4", _ZN7WebCore16MIMETypeRegistry21extensionsForMIMETypeERKN3WTF6StringE) STUB("2iP1vI69aLE", sceAudioOutSetCaesarVolume) +STUB( + "2iVJNG5EYpg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE3endEv) +STUB( + "2iVejtkr4Ig", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEEC2ERKSC_) +STUB("2iW5Fv+kFxs", _ZNKSt13runtime_error4whatEv) +STUB("2iWdgD4VXNY", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEEixEm) +STUB( + "2icyyJTlYVA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEC1ERKS7_) +STUB( + "2iecF1JBOL4", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsers12getsessionIdEv) +STUB( + "2ikmh6yBG8Y", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody17getNpServiceLabelEv) +STUB( + "2imQabX4fvc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE21intrusive_ptr_sub_refEPS9_) +STUB("2imeFp+OvX0", + _ZN3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate21unsetPlayerAttributesEv) +STUB("2ioZrakRg1M", _ZN3sce2Np9CppWebApi15Personalization2V15Error9unsetCodeEv) +STUB( + "2ip4ICzTFdA", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V19RatingApi21ParameterToPostRating9setratingENS1_6Common12IntrusivePtrINS3_6RatingEEE) +STUB( + "2itmaweLQiI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEppEi) +STUB( + "2iyIaOv5iL4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "2j2193-W1w4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEEC1ERKSA_) +STUB( + "2j2NXUkwAbM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEE3getEv) +STUB( + "2j68jdfHGa0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEEC1ERSA_) +STUB("2j9L1LpDLO8", mono_aot_Sce_PlayStation_Coremethod_addresses) +STUB("2jC+gGu1ep4", _ZN3JSC7Symbols28MAX_STRING_LENGTHPrivateNameE) +STUB( + "2jFjNflzwfo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "2jGlWG1tCUs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEEC1Ev) +STUB("2jKVW2uBSw8", glRenderbufferStorage) +STUB( + "2jL6dWWYrls", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("2jNUxUS4NaI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS19FriendsDataStatusesEE3setEv) +STUB("2jSZpJ3bvjY", _ZN7WebCore8SVGNames14altGlyphDefTagE) +STUB("2jVww3UpJww", g_string_new) +STUB( + "2jYf4ZHDWV4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEE3getEv) +STUB("2jZKDUeH8kQ", JVM_GetCPMethodClassNameUTF) +STUB("2jbA+-Cyl-w", _ZN7WebCore16JSStringCallbackD2Ev) STUB("2jdHoPpS+W0", sceNpHeapGetStat) +STUB( + "2jdQQaVWuAw", + _ZN7WebCore17FrameLoaderClient31dispatchDidReachLayoutMilestoneEN3WTF9OptionSetINS_15LayoutMilestoneEEE) +STUB( + "2jeTPjPRQKQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEC2EPS8_) +STUB("2jgqoWLtP4o", _ZNK15AbstractStorage13YoutubeFolder13GetCapabilityEv) +STUB( + "2jhkCdkszRw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEmmEi) STUB("2jiIxUmcsGo", sceTextToSpeech2Cancel) +STUB( + "2jkHipj3M94", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEE7add_refEv) +STUB("2jmkoDEonc8", _ZTVN15AbstractStorage13YoutubeFolderE) +STUB( + "2joaSU3fMTI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE7popBackEv) +STUB( + "2jpj0Zl15ns", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEE11get_deleterEv) +STUB( + "2js6uy1pKCw", + _ZN3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsTouchResponseBody18setTouchedDateTimeERK10SceRtcTick) +STUB("2jwy6+fFilk", WKContextDisableProcessTermination) +STUB( + "2jyn3jkqAeE", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionProperties37unsetxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB("2k0lZXN7wYo", _ZN7WebCore18JSHTMLInputElement15subspaceForImplERN3JSC2VME) +STUB("2k3RoQK8h0c", SSL_set_verify) +STUB("2k5ECGBBVc4", _ZNK7WebCore6Widget23convertToContainingViewERKNS_9FloatRectE) +STUB("2k6m8dF7sPc", SSL_CTX_get_ex_new_index) +STUB("2kA+qcVxCoA", mono_aot_platformunbox_trampolines_end) +STUB("2kDZb3V0F5g", _ZN3WTF14derefIfNotNullI14_cairo_surfaceEEvPT_) +STUB("2kEnDKM11uI", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V113AttributeTypeEEmmEi) +STUB( + "2kGYq3J+AGA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEED1Ev) +STUB("2kLRaGG0wZY", _ZN7WebCore9FontCache29purgeInactiveFontDataIfNeededEv) +STUB("2kMKY0zbK9s", _ZN3sce7Toolkit2NP2V212EventsClient11EventInGameC1ERKS4_) +STUB( + "2kMzV2-4RCU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEC1ERKS7_) +STUB( + "2kN4k0fxVrI", + _ZN7WebCore16ScriptController37executeScriptInWorldIgnoringExceptionERNS_15DOMWrapperWorldERKN3WTF6StringEb) +STUB("2kRjkNvugE4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEC1Ev) +STUB("2kSkeD5vqKM", _ZN9Inspector25ConsoleFrontendDispatcher12heapSnapshotEdRKN3WTF6StringEPS3_) +STUB("2ke9oybYy5k", mono_btls_x509_chain_get_cert) +STUB( + "2kf-2GGFoas", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_11DOMDebugger17DOMBreakpointTypeEEESt8optionalIT_ERKN3WTF6StringE) +STUB("2kjkLyaBVWo", JSMemoryStatsQuerySCE) +STUB( + "2klgSTjtiJo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEeqERKS9_) +STUB("2kmp5e-GeGw", _ZN3sce2Np9CppWebApi11Matchmaking2V19Attribute8setValueEPKc) +STUB("2koSOEa2Xss", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEdeEv) +STUB( + "2l+KNmBpGho", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB( + "2l+wZrnrEXg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEmmEi) +STUB( + "2l3kgkO89Qc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEEC1ERSA_) +STUB( + "2l5pMfiQg10", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEEdeEv) +STUB("2l83ikAF9V0", _ZN15AbstractStorage14StorageManager10m_instanceE) +STUB("2lAdEJ5I86E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEixEm) +STUB( + "2lCII4hiNEk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEC1EPS8_) +STUB( + "2lCrw1znjzc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEEcvbEv) +STUB( + "2lH7Y+gy-uQ", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_19UpStreamTransactionIT_T0_EE) +STUB("2lI1xw8MWoE", _ZN3WTF10URLHelpers14userVisibleURLERKNS_7CStringE) STUB("2lOJJzw1t5o", sceVoiceQoSEnableChat) +STUB("2lRXRLy4Pfc", WKContextCreateWithInjectedBundlePath) +STUB("2lSRg9FfIOY", ft_highpow2) +STUB( + "2lTYsL-uDn4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE7reserveEi) +STUB( + "2lUXVToprFw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEED2Ev) +STUB( + "2lW+4bvzyRM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("2lWQC5EWuzU", + _ZN3sce2Np9CppWebApi7Matches2V123RequestTeamMemberResultC2EPNS1_6Common10LibContextE) +STUB("2lY3qEGYy-M", __asan_report_load16_noabort) +STUB( + "2lYN0wYWRwA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEC1EPNS2_10LibContextE) +STUB("2lZkpHy+fpk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEaSERKS7_) +STUB("2lbt196v3R8", WKPreferencesSetStorageAccessPromptsEnabled) +STUB("2lgqM74hGv4", _ZN3WTF8WallTime3nowEv) +STUB("2liALUtWexk", WKDatabaseManagerGetTypeID) +STUB("2ljzHKoKet8", _ZN9Inspector22PageFrontendDispatchernwEm) +STUB( + "2lm1ZAdo4Jk", + _ZN3sce2Np9CppWebApi14SessionManager2V129GetPlayerSessionsResponseBody8fromJsonERKNS_4Json5ValueE) +STUB( + "2lmkJRIe6pQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE3endEv) +STUB("2lvOARTF5x0", _ZNK3sce2np13NpAccessToken7IsEmptyEv) +STUB("2lwxXokj4Fg", uprv_decNumberReduce_67) +STUB( + "2ly0guhcyCM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEEC2ERSA_) +STUB("2lzWy2xmnhY", _ZN3sce2np13NpAccessTokenC2Ev) +STUB("2m+8v0JXrxY", JVM_GetThreadStateNames) STUB("2m077aeC+PA", sceSigninDialogGetStatus) +STUB("2m3K29qJSuM", _ZN7WebCore11MediaPlayer27videoPlaybackQualityMetricsEv) +STUB("2m41tMRyPpc", glIsSync) +STUB("2m4vg20UoXI", T_CString_int64ToString) +STUB("2m8-COJnKdo", Java_java_util_zip_Inflater_initIDs) STUB("2m9+Opco-hk", sceFiosFHPreadSync) +STUB("2mF-4BcXaTA", _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V16RatingD2Ev) STUB("2mH42a-kAiQ", sceKernelSetSafemodeDirect) STUB("2mKX2Spso7I", sceNetSetsockopt) +STUB("2mN+0oNQLFU", _ZNK3WTF10StringImpl12hashSlowCaseEv) +STUB("2mN3EQxIpGg", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEEcvbEv) +STUB( + "2mNHoWDJfL8", + _ZN3sce2Np9CppWebApi14IdentityMapper2V340PsnWebError_error_missingElementsFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_33PsnWebError_error_missingElementsEEE) +STUB("2mQGp1B16Uc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEE3getEv) +STUB( + "2mVf+9X+wto", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("2mXGiQ+NjhA", _ZNK3WTF7SecondsplENS_8WallTimeE) +STUB("2mXglONte2c", mono_aot_SMDiagnosticsplt) +STUB("2mb4g7cTmcM", _ZN7WebCore16convertToIntegerIsEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB( + "2mb8FYgER+E", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERf) +STUB("2mbVAtshWRI", _ZN3sce4Json5Array5eraseERKNS1_8iteratorE) STUB("2mcSJjH5VLc", sceSpNetResolverDestroy) +STUB( + "2mclEqDAKVg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEppEv) +STUB( + "2mezmAkZ7O4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEEC2Ev) +STUB("2mgxaDcw3WM", _ZN3sce2Np9CppWebApi12Leaderboards2V15Entry11setOnlineIdERK13SceNpOnlineId) +STUB( + "2mjk15s2JDg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEEC1ERSA_) +STUB("2mkA5bryKXk", _ZN3sce7Toolkit2NP9Utilities6FutureI18SceNpTssDataStatusE3getEv) +STUB("2mkHo219gQY", twop84_plus_twop52) +STUB("2mrZg8eUudc", searchCommInfoListByKeyWithActivate) +STUB("2mrb4euDuGY", _ZNK3sce2np12HttpTemplate6IsInitEv) +STUB( + "2mrmvVrTd-w", + _ZN7WebCore15JSDOMWindowBaseC2ERN3JSC2VMEPNS1_9StructureEON3WTF6RefPtrINS_9DOMWindowENS6_13DumbPtrTraitsIS8_EEEEPNS_13JSWindowProxyE) +STUB("2mutOzj6Bi4", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_21GameCustomDataMessageEE17getAdditionalInfoEv) +STUB("2n+fxNdSZfs", _ZN3sce4Json19InternalInitializerC2Ev) +STUB("2n+gsAD8UIc", _ZN3WTF13StringBuilder11shrinkToFitEv) +STUB( + "2n1n06n4oWo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEptEv) +STUB("2n2Y65Orzhs", _ZN23sceMetadataReaderWriter8MetadataD0Ev) +STUB( + "2n4tma3Yjvw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEC2EPNS2_10LibContextE) +STUB( + "2n4xH84DzJE", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi28ParameterToDeleteGameSession13isInitializedEv) +STUB( + "2n6dTBXLLyk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE8pushBackERKS8_) +STUB("2nBj4Qmtkv4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEptEv) +STUB( + "2nCLzCajiGw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEaSERS8_) STUB("2nEVmFiV6OI", sceNpLookupNetNpId) +STUB( + "2nFx9h9l3NM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEC1Ev) +STUB( + "2nHZHJLjI-A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEED2Ev) +STUB( + "2nIY7PE4ToM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("2nQMP7aOjmE", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE3endEv) +STUB("2nTDk6Leuys", _ZN3sce7Toolkit2NP2V210Tournament22TeamVsTeamMatchDetailsD2Ev) +STUB("2nU9K7WvVoI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEEeqERKS7_) +STUB( + "2nUHn31gW7U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEC1EPS8_) +STUB( + "2nUNCdw4kxs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE8pushBackERKS8_) +STUB( + "2naa5fV2BkU", + _ZN3sce2Np9CppWebApi7Matches2V124LeaveMatchRequestFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_13RemovedPlayerEEEEEPNS9_INS3_17LeaveMatchRequestEEE) +STUB("2nbbUmPHyG8", _ZN7WebCore8Document6imagesEv) +STUB("2nfRTOgdtag", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110ResultTypeEEC2EPS6_) +STUB("2ni9EhZLXzY", mono_bitset_sub) +STUB("2nlecpLpLuQ", _ZN7WebCore9HTMLNames12itempropAttrE) +STUB("2nq4LncyYi0", mono_md5_get_digest_from_file) +STUB("2nqzJ87zsB8", finitef) +STUB("2nrESUvIBaA", JVM_ArrayCopy) +STUB( + "2nty03CeIYk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEcvbEv) +STUB("2nw7QLyE9FA", _ZN3JSC11IsoSubspaceD0Ev) +STUB( + "2o1eUFas2G8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE8copyFromERKS9_) STUB("2o2cjfuEOGo", sceFsStatWorkspace) +STUB("2o3n0iKkjwY", _ZN3WTF15FilePrintStreamD2Ev) +STUB( + "2o8wyZamZGo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEneERKS9_) +STUB("2oCktOzZ86s", _ZNK7WebCore20ResourceResponseBase12lastModifiedEv) +STUB( + "2oDW5dnAdzM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE7popBackEv) +STUB( + "2oN8mpML7n8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("2oNey8Gkn4M", + _ZN7WebCore22EmptyFrameLoaderClient8setTitleERKNS_19StringWithDirectionERKN3WTF3URLE) +STUB( + "2oNxVXgzJyg", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyD1Ev) +STUB("2oT3cKT3h5w", _ZN9Inspector21InjectedScriptManagernwEmPv) STUB("2oUqKR5odGc", sceNetCtlUnregisterCallbackForNpToolkit) STUB("2oVMzn0Q23A", sceCesUtf16beToEucKr) +STUB("2oZFtMaGcto", _pi_lo) +STUB("2oZiVeKIU7s", jpeg_fdct_2x1) +STUB( + "2oiECcNOyRg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEneERKS9_) +STUB("2onR+odZ3LA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEixEm) +STUB( + "2opfrEFa5eI", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) STUB("2otu3ItEh4k", sceBackupRestoreUtilCancelRestoreData) +STUB( + "2ovZ6RGBe4Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEppEv) STUB("2ozvSM6L3vU", sceFsUfsInitalizeSparseFile) +STUB("2p-xv5IJGzE", _ZN3JSC7Symbols31rejectWithoutPromisePrivateNameE) +STUB("2p0Wpb3P7ZI", mparams .0) +STUB("2p1nMSd85io", _ZNK3JSC8Debugger17suppressAllPausesEv) STUB("2pEUrnXGxys", sceG2PDialogClose) +STUB( + "2pJJ0dl-aPQ", + _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE11do_get_timeES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm) +STUB( + "2pKU0tokZIE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEE3getEv) STUB("2pOuoWoCxdk", sceKernelAioPollRequest) +STUB("2pPUdYJYK6c", + _ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors18getMissingElementsEv) +STUB("2pR3W4w3TGI", _ZN12video_parser5vpcom8LockLockEPN3paf6thread5MutexEy) +STUB("2pRgjHB0quk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEEdeEv) +STUB("2pU6NaisdsI", _ZN3sce7Toolkit2NP2V28Matching4DataD1Ev) +STUB("2paWSVXIJBc", _ZN7WebCore9HTMLNames8rowsAttrE) +STUB( + "2pgn-U2Xq40", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEC2Ev) +STUB("2pkq+agYpkc", _ZN7WebCore24CachedResourceHandleBaseC1Ev) +STUB( + "2ptOcBl7QQI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE8copyFromERKS9_) +STUB("2puGHZSIf-w", _ZN3sce7Toolkit2NP2V28Commerce19ServiceEntitlementsaSERKS4_) +STUB( + "2pvuS-KHtiw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "2q0l346J1PM", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions17setacceptLanguageEPKc) +STUB("2q1DC47z1JM", EVP_CIPHER_CTX_free) STUB("2q3IIivs72Q", sceNpPush2UnregisterNotificationExCallback) +STUB("2q5PPh7HsKE", isinf) +STUB( + "2q995WSi6z4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEC2EPS8_) +STUB("2q9bYzWzWqM", mono_aot_System_Reactive_Linqunbox_trampoline_addresses) +STUB( + "2qABDESFNrc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEppEv) +STUB("2qAOcgRJZ3M", u_flushDefaultConverter) +STUB("2qBSLBkkDFQ", _ZN12Mp4Retriever10registMetaEjPh) +STUB( + "2qBcpDHfY-Q", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "2qCUPOySC-M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE6resizeEj) +STUB("2qD1WMZjSGI", mono_aot_Sce_Vsh_DataTransferjit_got) +STUB( + "2qH5FSn0eJA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEEC2ERKSA_) +STUB("2qHVC3VLgPs", _default_constraint_handler_s) +STUB("2qLoWgWvKLg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEE11get_deleterEv) +STUB("2qPIzbtSTHw", _ZN7WebCore7Element12setAttributeERKN3WTF10AtomStringES4_) STUB("2qSZ0DgwTsc", sceNpWebApiGetErrorCode) +STUB("2qWuxj2N+fI", __ubsan_handle_add_overflow_abort) +STUB("2qYxa-lcvKA", vector_str_substr) +STUB( + "2qZJ+oWmEXk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEEC1EPS8_PNS2_10LibContextE) +STUB("2qe1zk2F8to", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToCancelTicketC2Ev) +STUB( + "2qgbswA83v0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEED2Ev) +STUB("2qh6aZCdAk8", _ZN3sce7Toolkit2NP16AttachmentDetailC1Ev) +STUB( + "2qiLYAmOST4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEC2Ev) +STUB( + "2qj8hPX2hLs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE5clearEv) +STUB("2qjWY+Dm524", _ZN7WebCore8SVGNames20xChannelSelectorAttrE) +STUB("2qk9QGMy-ZI", mono_aot_Sce_Vsh_VoiceMsg_VoiceMsgWrapperunbox_trampolines) +STUB( + "2qtnatrVfjY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEC2ERS7_) +STUB( + "2r287lN5Irg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEaSERKS9_) +STUB( + "2r3K1B7qtLM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEE11release_refEv) +STUB( + "2r5RCydxn6M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEEC2ERKSA_) +STUB( + "2rBzzZz17vw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEEcvbEv) +STUB( + "2rE3Dnr+siI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE8capacityEv) +STUB( + "2rEHf7o-zWQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB( + "2rHDhNXfKRo", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) STUB("2rOYe6lVCVQ", sceShellCoreUtilLog) +STUB( + "2rQ5ignmsJA", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS2_6VectorINS5_INS1_13InGameCatalog2V59ContainerEEEEEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "2rTD0+OtFow", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE7reserveEi) +STUB("2rU9INbqLSU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE3endEv) +STUB("2rV4eLzjwjk", mono_aot_Sce_Vsh_SysUtilWrapperplt) STUB("2rV7Y4IhWkc", sceNpTrophySystemWrapGetGroupDetails) +STUB( + "2rVARam3Co0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE21intrusive_ptr_add_refEPS7_) +STUB("2rZ7BW5io5I", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEmmEi) +STUB("2raGNZ319Dg", _ZN3sce7Toolkit2NP2V210Tournament13OneVsOneMatchC1Ev) STUB("2rc+egSfb5A", sceLoginDialogUpdateStatus) +STUB("2rcvKZfm5rI", FT_Stroker_Export) +STUB( + "2rf51TIsYvg", + _ZN7WebCore15GraphicsContext15drawNativeImageERKN3WTF6RefPtrI14_cairo_surfaceNS1_13DumbPtrTraitsIS3_EEEERKNS_9FloatSizeERKNS_9FloatRectESE_NS_17CompositeOperatorENS_9BlendModeENS_16ImageOrientationE) +STUB( + "2rff9f7zRcw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEC1EPKS8_) +STUB("2rgTwNzAAHQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEcvbEv) +STUB( + "2rj56-czOEs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEppEv) +STUB("2rkJWBBUnHI", jinit_d_coef_controller) +STUB("2rke-0hLDS4", _ZN3JSC24createStackOverflowErrorEPNS_9ExecStateE) +STUB("2rmvbvOCyjY", FT_Vector_From_Polar) +STUB("2roO2KtrNlE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEED2Ev) +STUB("2rowME6bIVQ", _ZN7WebCore11MathMLNames8openAttrE) STUB("2rsFmlGWleQ", sceNpCheckNpAvailability) +STUB( + "2ru-eNFa8VE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEED1Ev) +STUB("2rv0Oe-u1FA", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE6resizeEj) +STUB("2rvlzy2a4A8", _ZN3sce7Toolkit2NP2V27Session14InvitationDataC1ERKS4_) +STUB("2rwt2+Jmy9s", mono_aot_Sce_Vsh_FileSelectorplt_end) +STUB("2rzwEKVe3yY", _ZN7WebCore11ImageSource4sizeENS_16ImageOrientationE) +STUB("2s+Z9J73DSA", WKWebsiteDataStoreRemoveAllIndexedDatabases) +STUB("2s+xE16XQRA", _ZN7WebCorelsERN3WTF10TextStreamERKNS_10LayoutRectE) +STUB( + "2sAfqvol12k", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB( + "2sFg3vFSTqk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEC2EPS6_PNS2_10LibContextE) +STUB( + "2sIxz+qg-Y4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE10setContextEPNS2_10LibContextE) +STUB("2sTzwlghBUU", _ZN7WebCore36parseCrossOriginResourcePolicyHeaderEN3WTF10StringViewE) STUB("2sUoEjXwIps", sceUpsrvUpdateRequestDownloadPupCancel) +STUB( + "2sUqNWV24I0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE21intrusive_ptr_add_refEPS9_) +STUB("2sWzhYqFH4E", _Stdout) +STUB( + "2sZAh3idDD0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEC2EPS8_) STUB("2sgenMqwczM", sceVideoOutSysGetDeviceInfo) +STUB("2sh+j1Ml2pU", jpeg_natural_order2) STUB("2sk-Mt8xEsA", sceDeci4hDrfpInitMountDoneEvf) +STUB( + "2softC7Xiuk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEEC1EPS6_PNS2_10LibContextE) +STUB("2spPvIooxh4", GCC_except_table90) +STUB("2spmuC+1Wtk", _ZThn16_NK26ScePssInputControllerOrbis7GetTypeEv) +STUB("2t+trYl6cq0", JNU_Equals) STUB("2t7q3K27iFA", sceNpUniversalDataSystemCreateRecordObject) +STUB( + "2t9-tbHVWYU", + _ZN3sce2Np9CppWebApi12Leaderboards2V137GetBoardDefinitionResponseBodyFactory7destroyEPNS3_30GetBoardDefinitionResponseBodyE) +STUB("2tB0Rjhw+qw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEEC1ERS7_) +STUB("2tBfuGAKI28", _ZN3sce7Toolkit2NP2V212EventsClient6EventsC2Ev) +STUB("2tD2S9ph2Pc", u_isalnum_59) STUB("2tJsBnPiylo", sceKernelDebugInjectProcessEvent) +STUB( + "2tKQl4YDP2o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEEptEv) +STUB( + "2tRbaPO7xik", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEmmEv) +STUB("2tWMR61WghE", JVM_ActiveProcessorCount) +STUB("2tcju+KXU9g", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE3endEv) +STUB("2teIv3bTDTA", + _ZNK3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator16customData1IsSetEv) +STUB( + "2thwcfnysCU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEC2EPNS2_10LibContextE) +STUB("2tjgAthxKw8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEdeEv) +STUB("2tocZojNaag", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V128SetMultiVariablesRequestBodyD2Ev) +STUB( + "2tt29XJahrk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "2tuUIl1TIR0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB( + "2tzNd5gHSiM", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations28hasxPsnAcceptPlatformNamePs5Ev) +STUB( + "2u+KiW9+ipw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEptEv) +STUB( + "2u5KXbhvMMo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEE11release_refEv) +STUB("2uE88wpiLjY", mono_aot_System_Net_Httpunbox_trampolines) +STUB("2uKxXHAKynI", _Atomic_store_8) +STUB( + "2uMk1CCvSDc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB("2uPWfK1Cv9o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEE7get_refEv) +STUB("2uSGK0YyhLU", mono_aot_Sce_Vsh_Np_Udsjit_code_start) +STUB("2uSWyOKYc1M", sce_net_in6addr_linklocal_allrouters) +STUB( + "2uYkfVHLsKQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEC1Ev) +STUB("2ud1bFeR0h8", _ZTSSt12domain_error) STUB("2udlQni6qgQ", sceDbgInstallExceptionHandlerAltStack) +STUB("2uglBBTj7Xk", YGNodeLayoutGetDirection) +STUB( + "2uo67nrnv0k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE5clearEv) +STUB("2uouw57e7qM", _ZNK3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead13onlineIdIsSetEv) +STUB( + "2ut4bPFm0ac", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEE3getEv) +STUB("2uw51wxVsiI", GetOnlineId) +STUB("2uxQJLN5Xg8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEptEv) STUB("2v21-m4gljU", sceCamera2IsAttached) +STUB("2v31GTAzIjc", _ZN3JSC2VM12mapSpaceSlowEv) +STUB("2vCEhtrehN4", mono_security_set_core_clr_platform_callback) +STUB("2vDqwBlpF-o", strtod) +STUB( + "2vDuGSyRuJk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEC2Ev) +STUB( + "2vF35k48OKE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "2vG1bsbzGqM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEixEm) +STUB("2vIP9cBK1R0", u_strlen) +STUB( + "2vIPzh2T7zk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) STUB("2vK13TtDpLI", scePsmCoreClrCallback) +STUB("2vPr-tg31UY", _ZNK7WebCore14ResourceLoader28shouldIncludeCertificateInfoEv) +STUB( + "2vQGRiHWnjA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEppEi) +STUB( + "2vQHymxENJo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEeqERKS9_) +STUB("2vSWgtyiSPg", + _ZN7WebCore24RotateTransformOperationC1EddddNS_18TransformOperation13OperationTypeE) +STUB( + "2vSff9S+SzY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEmmEi) STUB("2vcPzfCr49Q", sceS3daGetInfo) +STUB("2veNqr3JMos", _ZN7WebCorelsERN3WTF10TextStreamENS_15ScrollAlignment8BehaviorE) +STUB("2veyNsXFZuw", _ZTSPKDn) +STUB( + "2vfOk3r6jgA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEC1Ev) +STUB("2vhQr2hP5n0", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEEmmEv) +STUB("2vjNvTQIQ6U", + _ZNK3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends16getaccountIdOrMeEv) +STUB( + "2vnoD8qY6CM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEC2EPNS2_10LibContextE) +STUB( + "2vrvSCgb3uU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE8capacityEv) +STUB("2vyJNYfv8Ns", _ZNK3sce3pss5orbis9framework11PsmCallList6GetNumEv) +STUB("2vz0NwZVQ2Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEptEv) +STUB("2w+4Mo2DPro", _ZNKSt5ctypeIcE10do_tolowerEPcPKc) +STUB("2w3bo8DF4vM", glBeginTransformFeedback) +STUB("2w5H3b3yPqw", cairo_arc_negative) +STUB( + "2w7irb9YYcY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEC1Ev) +STUB("2w8SdVsst74", _ZN3sce7Toolkit2NP2V24Core11addCallbackERKNS3_7Request11AddCallbackE) +STUB( + "2w9iadUyU5A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEC1EPS8_) +STUB( + "2w9zfRDORlM", + _ZNK3sce2Np9CppWebApi14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBody6toJsonERNS_4Json5ValueEb) +STUB("2wDzNZ9oKro", coil_raise) +STUB( + "2wE40nUY0Nc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB("2wIfvCipwio", _ZN12video_parser5vpcom8datetime8DateTime13SetTimeFormatEPKw) +STUB( + "2wJKjPHZp2I", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorI16SceNpTusVariableNS1_15AppSTLAllocatorIS5_EEEEC2Ev) +STUB( + "2wb07EiJ3W8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("2wiYanBFmKc", _ZN7WebCore22EmptyFrameLoaderClientD1Ev) STUB("2woRp-7hcWs", sceClSslInit) +STUB( + "2wpeoAP6c7I", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_17ActivityFeedStoryENS1_15AppSTLAllocatorIS5_EEEEC1Ev) +STUB( + "2wvNMIWHgic", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEE3getEv) STUB("2wvqS7Odb6M", sceFiosOpSyncWait) +STUB("2wyqhlHaHLI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE4sizeEv) +STUB("2wz4rthdiy8", _ZNSt7collateIwE7_GetcatEPPKNSt6locale5facetEPKS1_) +STUB("2x0vLaDPMJA", _ZN12video_parser13cVideoMetaMP49_finalizeEv) +STUB( + "2x1iAHqpaUc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEC1EPKS8_) +STUB("2x24iCBAFo4", _ZN7WebCore11MediaSampleD0Ev) +STUB("2x32Wm9lOOU", _ZN7WebCore9HTMLNames10heightAttrE) +STUB("2x55BYiVzCc", MASSMATerminate) +STUB("2x77ylWJsKU", unumf_openForSkeletonAndLocale_67) +STUB("2xG6qbIDkEQ", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container12getPlatformsEv) +STUB( + "2xJMb4rPJvc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEED2Ev) +STUB( + "2xJwXBwT94k", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE5emptyEv) +STUB("2xL9dcAmXtE", + _ZNK3sce2Np9CppWebApi7Matches2V122RequestMatchStatistics6toJsonERNS_4Json5ValueEb) +STUB( + "2xR9yGYLG2s", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE4sizeEv) +STUB( + "2xRA6cazzq8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) STUB("2xU8m24KpiA", sceValidationGpuOnSubmit) +STUB("2xW3kRKCcfY", ubidi_getParagraphByIndex_67) +STUB("2xW6hBcxTlk", _ZN3JSC13InferredValue15notifyWriteSlowERNS_2VMENS_7JSValueEPKc) +STUB("2xaoe377rxw", _ZN7WebCore9HTMLNames16aria_detailsAttrE) +STUB("2xcrFIhtxGY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEEC2ERS7_) STUB("2xenlv7M-UU", sceSystemServiceRaiseExceptionLocalProcess) STUB("2xhRHbvhwfU", sceCompositorGetRemainedCommandNum) +STUB( + "2xkFeilh5IM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEneERKS9_) +STUB("2xliHbyIZxw", + _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse6toJsonERNS_4Json5ValueEb) +STUB( + "2xmeJsfG1+Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEEaSERSA_) +STUB( + "2xnQXfB-1xc", + _ZN3JSC8JSObject13putInlineSlowEPNS_14JSGlobalObjectENS_12PropertyNameENS_7JSValueERNS_15PutPropertySlotE) +STUB( + "2xoZKoUKPeM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEC2Ev) STUB("2xxUtuC-RzE", sceScreenShotEnable) +STUB("2xxVBFt3lm8", mono_aot_Sce_Vsh_Np_Udsjit_got) +STUB( + "2xyHk3c4bao", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEC1Ev) +STUB("2y+gxwVZqtA", mono_aot_Sce_Vsh_SQLiteAuxjit_code_end) +STUB( + "2y5DSsBWIQ0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB("2yAjfzUQhYU", _ZN9Inspector30TargetBackendDispatcherHandlerD2Ev) +STUB("2yAjlV7p8So", vm_send_DebuggerPages) +STUB( + "2yD28tM2v9U", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariable13isInitializedEv) +STUB("2yET7w0wyUA", umtx_unlock_67) +STUB( + "2yEnsVi5WN8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEE7add_refEv) +STUB("2yJbdphMV2A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEaSERS7_) +STUB("2yJg6Pu-EAE", _ZN3WTF12base64DecodeEPKcjNS_33SignedOrUnsignedCharVectorAdapterEj) +STUB( + "2yNDUNfjds4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEC1EPS8_) +STUB("2yOarodWACE", _ZNSt6_WinitD2Ev) +STUB( + "2yUTvJXqonE", + _ZN9Inspector22AuditBackendDispatcher3runElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "2yV5oTdFeMk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("2yVUJa-WJtg", _ZNK7WebCore10PluginData17webVisiblePluginsEv) +STUB("2yWlLo2VShQ", _ZN7WebCore9HTMLNames8styleTagE) +STUB("2yY+GRyC7Sw", __ubsan_handle_negate_overflow_abort) STUB("2yYv9QWB3hU", sceAmprAmmMeasureAmmCommandSizeAllocatePaForPrt) +STUB( + "2yfh7KBtwXA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEE3getEv) +STUB( + "2ygUvQddISA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEE3getEv) +STUB("2yhHYN+YqEQ", mono_image_get_resource) +STUB("2ylW0rzp5F8", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi27ParameterToLeaveGameSessionD2Ev) +STUB("2yorpzmHA-w", _ZN7WebCore17SQLiteTransactionC1ERNS_14SQLiteDatabaseEb) +STUB( + "2yp29KM84FQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEmmEv) +STUB( + "2ypJUeQTUSU", + _ZN3sce2Np9CppWebApi13InGameCatalog2V522ContainerRatingFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_15ContainerRatingEEE) STUB("2yqVLC4dqVA", sceClNetInit) +STUB("2ysKPolaDTE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEEaSERS6_) +STUB( + "2ywxNpj4BVE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEC2EPNS2_10LibContextE) +STUB( + "2yxtaq7T0v8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEC2EPKS8_) +STUB("2z0os9YxmlE", _ZTVN3sce7Toolkit2NP19AllocImplementationE) STUB("2z1Tkrqh8jE", sceKernelNotifyAppStateChanged) +STUB( + "2z7VA-s8fYs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEEdeEv) +STUB( + "2zCFvJVG5iE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE8copyFromERKS9_) +STUB( + "2zCGY8hFHOk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) STUB("2zCd8XDOe-Y", sceCamera2SetSharpness) +STUB( + "2zDJXhwidEA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE10setContextEPNS2_10LibContextE) +STUB("2zFFtiMV6D8", _ZN3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayerD1Ev) +STUB("2zFyCYiVjM0", u_unescape) +STUB("2zHoT6pCWlQ", WKTextCheckerCheckSpelling) +STUB("2zKnvQlTfsw", autofit_module_class) STUB("2zLw9GwrtyI", sceKernelWriteModifyProtectWithGpuMaskIdCommand) +STUB("2zPKdOEo22s", _ZN7WebCore14MicrotaskQueueD2Ev) +STUB("2zQOpCZREJk", SSL_CTX_set_next_proto_select_cb) +STUB( + "2zXSQQj4sd8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("2zaKdvHsAhg", jpeg_set_defaults) +STUB( + "2zcABVPo0Ic", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEED1Ev) +STUB("2zcmNIcvgXc", + _ZNK3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayer11getPlatformEv) +STUB( + "2zekpgOOxBU", + _ZN15AbstractStorage14FacebookFolder9NewFolderERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_6FolderEE) +STUB( + "2zjvBA8zmug", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEEC1Ev) +STUB( + "2zxF9stMZ+c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEmmEv) +STUB( + "2zyqHxb3tpQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "2zyv1yMh+4g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("3+2TagfQkH4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS7TusDataEEC2Ev) +STUB("3+43NKBK2S4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11UserProfile10NpProfilesEEC2Ev) +STUB("3+5qZWL6APo", _ZNSt14numeric_limitsIeE14min_exponent10E) STUB("3+64z-ckBS8", sceLncUtilStartKillApp) +STUB("3+9T0ru1PkU", _ZNSoC1EPSt15basic_streambufIcSt11char_traitsIcEEb) STUB("3+E-5EFZxDo", sceKernelInternalSuspendDirectMemoryRelease) +STUB("3+H8nAsVOys", rgctx_fetch_trampoline_mrgctx_47) +STUB( + "3+K+fyvpImE", + _ZN3sce2Np9CppWebApi7Matches2V132ResponseCompetitiveResultFactory7destroyEPNS3_25ResponseCompetitiveResultE) +STUB("3+LtR6YEub4", _ZN7WebCore7Element22scrollIntoViewIfNeededEb) +STUB( + "3+PsLW7jdHA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEptEv) +STUB("3+Qr0+VLg+0", _ZN3JSC25JSSegmentedVariableObject12addVariablesEjNS_7JSValueE) +STUB("3+UPM-9E6xY", modff) +STUB("3+VwUA8-QPI", _ZNKSt8numpunctIcE9falsenameEv) +STUB("3+XgrwoE+KQ", WKContextTerminateNetworkProcess) STUB("3+a6oBBT2rs", sceHttpCacheSetCacheSharing) +STUB( + "3+f7pU3YO-o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEED2Ev) +STUB("3+sAdqOViy0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEC2ERS7_) +STUB("3+uIHgu5Byg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEE5resetEPS6_) +STUB("3+vaAKmP0zY", mono_aot_Sce_Vsh_WebBrowsermethod_addresses) +STUB("3-2nJb0U70U", g_ascii_strcasecmp) STUB("3-643mGVFJo", sceSslLoadRootCACert) STUB("3-9DXFGVg0M", sceVideoOutSysHdmiMonitorInfoIsMorpheus) +STUB("3-AFNZaRabc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEED1Ev) +STUB("3-B5PsCpkbw", _ZN3sce7Toolkit2NP2V24Core7Request11AddCallbackD2Ev) +STUB( + "3-DiboyW0ag", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "3-F9DFOHTOA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEC1Ev) +STUB( + "3-FwVXRW+7U", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("3-GO8L8fFx0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEC2Ev) +STUB( + "3-J-Gx8ZCfU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEC1Ev) +STUB("3-LseAwUCXU", _ZN3sce7Toolkit2NP2V210Tournament5Event8deepCopyERKS4_) +STUB("3-MUAUHJg3U", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Error7getCodeEv) +STUB("3-NJmGjTdGU", _ZN7WebCore13rangesOverlapEPKNS_5RangeES2_) +STUB("3-QFdzPv6W0", SSL_CTX_set_cipher_list) +STUB("3-epgMMMEQ8", _ZN7WebCore4Text9splitTextEj) +STUB("3-fwAyoN468", _ZN3sce2Np9CppWebApi6Common6VectorIiE5eraseENS2_13ConstIteratorIiEERS6_) +STUB( + "3-jrvyLGA9U", + _ZN3JSC23JSModuleNamespaceObject3putEPNS_6JSCellEPNS_14JSGlobalObjectENS_12PropertyNameENS_7JSValueERNS_15PutPropertySlotE) +STUB("3-kL54G6PQE", uloc_toLegacyKey) +STUB( + "3-mQqfN0WKk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("3-y7Vb4Kyao", + _ZN3JSC16clearArrayMemsetEPNS_12WriteBarrierINS_7UnknownEN3WTF15DumbValueTraitsIS1_EEEEj) +STUB("3-zCDXatSU4", __isfinitel) +STUB("3009kEuNaRA", _ZN3sce2np14HttpConnectionC2EP14SceNpAllocator) +STUB("3040bxCvolo", _ZN9Inspector27InspectorFrontendDispatcherdlEPv) +STUB("304E47J5sJo", GCC_except_table59) STUB("304ooNZxWDY", sceNetRecvfrom) +STUB("305+7Bx1JWY", + _ZN7WebCore12SettingsBase44setMediaContentTypesRequiringHardwareSupportERKN3WTF6StringE) STUB("306mCg0ibh8", scePadVrControllerRead) +STUB( + "30BXSe54de0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEeqERKS9_) +STUB("30FldU7FPQs", _ZN7WebCore15FocusController20nextFocusableElementERNS_4NodeE) +STUB("30GFb-IB3yI", monoeg_g_slist_remove) +STUB( + "30MgV+FTKWo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEC2EPS8_) +STUB( + "30N1MW75n2E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEEC2ERSA_) +STUB("30O8gNuBEx8", _ZN7WebCore9FrameView12setMediaTypeERKN3WTF6StringE) STUB("30Rh4ixbKy4", sceKernelFdatasync) +STUB( + "30TWZn8Hh4w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE5beginEv) +STUB( + "30TgDCfzZgY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEEC2Ev) +STUB( + "30Vzv4jmzxc", + _ZN3sce2Np9CppWebApi7Matches2V130RequestTeamMemberResultFactory6createEPNS1_6Common10LibContextEPKcdPNS5_12IntrusivePtrINS3_23RequestTeamMemberResultEEE) +STUB("30ZHcPPvH0U", _ZN3sce7Toolkit2NP2V28Commerce7Request11GetProductsD2Ev) +STUB("30Zxe35LtBg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS3_5EmptyEED1Ev) +STUB( + "30bCOrO6I0U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "30c2U1PsS2Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEptEv) +STUB("30e9+loZaqc", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku16unsetIsPlusPriceEv) +STUB( + "30hAdY8FXng", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEED2Ev) +STUB("30jjAlUhKRU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEC1ERS7_) +STUB("30k3Yu7s3Xs", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIiEneERKS4_) +STUB("30l0FBIRnnk", mono_unicode_to_external) +STUB( + "30ovfJyxQ2E", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE5abortEv) +STUB( + "30sL5m-S2kw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEC2Ev) +STUB("30uE8YDjhoI", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_21GameCustomDataMessageEEC1Ev) +STUB("30yOp4Pxj20", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEdeEv) +STUB( + "30yq4NAVFrk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEEC2Ev) STUB("3104QzuFx3w", sceIduUtilIsDiscCompilationDisc) +STUB("311pqC4Yz94", _ZN3sce7Toolkit2NP17PostInGameRequestC2Ev) +STUB("316RmeAtl8o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEEaSERS7_) +STUB("318GifOvcOY", __cxa_demangle_gnu3) +STUB("319bFITviLA", _ZN3sce7Toolkit2NP2V212EventsClient6Events5resetEv) +STUB("31Bh5lfPPXs", _ZN3sce7Toolkit2NP2V211UserProfile7Request13GetNpProfilesC1Ev) +STUB("31BlqiSZ3fw", audiodeccpuinternal_core_ops_lpcm_bd2) +STUB("31DDycIH6lw", + _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody18setCreatedDateTimeERK10SceRtcTick) +STUB("31EP8ruDqQI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEED2Ev) STUB("31G6PB2oRYQ", sceGnmSdmaConstFill) +STUB( + "31GmqsUxpvI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEED1Ev) +STUB("31QeZ4z-JZs", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEEC1ERKS7_) +STUB( + "31To+oSrrJs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEmmEv) STUB("31YoCS9Clds", sceFsDevpfsCancelWaitEvent) +STUB("31Yt0A46-l4", _ZN3WTF6Thread6resumeEv) +STUB( + "31aF6xu3KhA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE8pushBackERKS8_) +STUB("31bPq9RXAls", _ZNK3JSC6JSCell11toPrimitiveEPNS_14JSGlobalObjectENS_22PreferredPrimitiveTypeE) +STUB("31fsMm8SZxc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEC1Ev) +STUB("31g+YJf1fHk", __fixxfdi) +STUB( + "31hTNfF554o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEEaSERKSA_) +STUB("31i24BN0PQ4", uprv_isInvariantString_67) +STUB("31lJOpD3GGk", _ZNSt14numeric_limitsIlE6digitsE) STUB("31nGh-2voAg", sceClKernelMapNamedFlexibleMemory) +STUB( + "31tkBXveB9M", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12setInteger10ERKi) +STUB("31vzT36+cXM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersD2Ev) +STUB("31wb5+dfl-0", ucasemap_getLocale_67) +STUB("31yoQG8UtcY", _ZN7WebCore21DiagnosticLoggingKeys18neverSeenBeforeKeyEv) +STUB( + "31zcW5Le8Pc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "321eY0f18xg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("322xuNOccMA", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanityC1ERS5_) +STUB("326-26W1Ht4", glFramebufferTexture2D) STUB("32AcaTaBPSY", sceAmprMeasureCommandSizeWriteAddressFromCounterOnCompletion) +STUB( + "32B0EfQLdhs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEE11release_refEv) +STUB( + "32DyQBseDLg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "32GRs998AmA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEC1EPKS8_) +STUB( + "32GZlEGgPW4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEEaSERSA_) +STUB("32H7zAaJblY", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfilesC2ERS5_) STUB("32HQAQdwM2o", sceSaveDataMount) +STUB("32I2lC4qysE", uprv_malloc_67) +STUB("32MZ7PBVe1k", _ZN7WebCore13HitTestResultC2ERKNS_11LayoutPointE) +STUB( + "32NR-2ymYoE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEED1Ev) +STUB("32Oq+eOTUJU", uprv_compareEBCDICPropertyNames_67) +STUB( + "32USUK58Er0", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeaderD1Ev) +STUB("32YPeuXr47M", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12string3IsSetEv) STUB("32eFln4+jzc", sceBgftServiceDownloadPauseTask) +STUB("32j2cyCl3Yo", _ZN4IPMI4impl11SessionImpl10trySendMsgEjPKvm) +STUB("32lzv0QiLbo", + _ZN9Inspector14InjectedScriptC1EN10Deprecated12ScriptObjectEPNS_20InspectorEnvironmentE) +STUB("32oP5SP4zAw", _ZN4Manx14NetworkProfile8finalizeEv) +STUB("32r6n2sLLcw", _ZN12Mp4Retriever9metaIdTblE) +STUB("32sLpN4txmg", mono_aot_Sce_Vsh_VideoFramework_Platformjit_got) +STUB("32sr9JSPqrQ", _ZN3sce7Toolkit2NP2V211UserProfile9NpProfileD2Ev) +STUB( + "32xLQfMRYlY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEC1EPS6_PNS2_10LibContextE) +STUB( + "33+GyiZZdKs", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("335A2pSXNYE", monoeg_g_strdelimit) STUB("336zdcN++6g", sceAc3EncEncodeAsync) +STUB("33EJeb8F35g", _ZN7WebCore19JSHTMLSelectElementC1ERKS0_) +STUB( + "33IHNe43r1s", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEiRNS2_10LibContextEPT_m) +STUB("33IslmxoWR4", mono_aot_Sce_Vsh_GameListRetrieverWrapperjit_got) +STUB("33R3zL7PFIg", il2cpp_class_get_interfaces) +STUB("33WTIzHLTe4", + _ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody15setWaitsForDataERKb) +STUB("33aeRemQ8VA", mono_win32_compat_ZeroMemory) +STUB("33eTlnxc7AY", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEED2Ev) +STUB("33jKd5sGCys", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEdeEv) +STUB("33q5FI-ON3A", mono_aot_Sce_Vsh_Gls_GlsSharedMediaViewplt) +STUB( + "33qN8PHz5fI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEmmEv) +STUB( + "33scBRpv12o", + _ZN3JSC8JSObject55convertInt32ToDoubleOrContiguousWhilePerformingSetIndexERNS_2VMEjNS_7JSValueE) +STUB("33t+tvosxCI", _ZTISt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE) +STUB("33tRqKUP04I", _ZNK7WebCore3URL19protocolHostAndPortEv) +STUB( + "33tdLpxfHEc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEED2Ev) +STUB( + "33u6P1sGNUg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEE3getEv) +STUB( + "33vdjVGa87o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEE3getEv) +STUB("33wxroB98Uo", _ZNK3sce2Np9CppWebApi12Leaderboards2V113ErrorResponse6toJsonERNS_4Json5ValueEb) STUB("343Lpcj48O8", sceDataTransferCheckBgTransferRunning) +STUB("344vzzehB7M", __init_array_end) +STUB( + "349K68lxAHg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB("34EfyU8EIQ4", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification15BlocklistUpdateEE5resetEv) +STUB( + "34EvdBaE2Wg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "34M-IgveNT4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEixEm) +STUB("34P5ykQ+nbk", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE7popBackEv) +STUB("34Ri-I2zseI", _ZN7WebCore26IdentityTransformOperationD1Ev) STUB("34V2Umd+mwM", scePsmRegisterPInvokeCallTable) +STUB("34iOQz7kvIg", _ZN12video_parser13cVideoMetaMP410getGPSInfoEPNS_11VpGPSInfo_tE) STUB("34kvdye-B3o", sceLncUtilIsCdlgActivated) +STUB("34mi8lteNTs", _ZNSt8messagesIcED1Ev) +STUB("34nH7v2xvNQ", wcstoll) +STUB("34rw3yhC59w", _ZNK7WebCore16HTMLStyleElement8disabledEv) +STUB( + "34ssgwrDxJU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEC2ERS7_) +STUB("34wv7CQNnHo", _ZN12video_parser5vpcom7ReallocE) +STUB("34y-EWM9PZE", udat_get2DigitYearStart_67) +STUB( + "354rh-aFbdQ", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE6finishEv) +STUB("354yn8AiJ+I", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIdEC2EPd) +STUB( + "3565EfEcRUE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEppEv) +STUB( + "359Zg8B0xN4", + _ZN3JSC23SimpleMarkingConstraintC2EN3WTF7CStringES2_NS1_8FunctionIFvRNS_11SlotVisitorEEEENS_20ConstraintVolatilityENS_21ConstraintConcurrencyENS_21ConstraintParallelismE) +STUB( + "35CoTgAg8yo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "35KNCmLeeFg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEplEm) +STUB("35KmTDkZkoc", mono_aot_Sce_Vsh_Np_Commonunwind_info) +STUB( + "35MoRFyQVGE", + _ZN3sce2Np9CppWebApi11UserProfile2V131GetBlockingUsersResponseFactory6createEPNS1_6Common10LibContextERKNS5_6VectorImEEiPNS5_12IntrusivePtrINS3_24GetBlockingUsersResponseEEE) +STUB("35NoyMOtYpE", SetDataFolder) +STUB("35ORvn0jTS8", _ZN10Deprecated11ScriptValueaSERKS0_) +STUB("35T-3aC2LeE", _ZN7WebCore8SVGNames7descTagE) +STUB( + "35T12DVUCqU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEC2Ev) +STUB( + "35XxSJwoZss", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEED1Ev) +STUB( + "35crYIwaL7U", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("35e7kEHI70g", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEEC1Ev) +STUB("35fc0lxWKkY", _ZThn136_N7WebCore16HTMLMediaElement8setMutedEb) +STUB("35hf1B8ev14", JSObjectHasProperty) +STUB( + "35i6Fzy6iUo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEC1Ev) +STUB( + "35oaLCDefXg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEE3getEv) +STUB( + "35z0vW7oz1k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEC1EPS8_) +STUB( + "360Uq9VvF7k", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB( + "3613PX3XDaQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEC2EPS8_) +STUB("361mocQBo3g", rgctx_fetch_trampoline_mrgctx_64_p) +STUB( + "365OU25S+0Y", + _ZN3sce2Np9CppWebApi7Matches2V124LeaveMatchRequestFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_17LeaveMatchRequestEEE) STUB("368es-zmQuc", sceShellCoreutilGetCrashReportProcessInformation) +STUB( + "369GFjYSHnM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEC1EPS8_) +STUB("36ApFwdg3pw", _ZNK7WebCore8Document6hiddenEv) +STUB( + "36FCNqdy-fE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEC1EPNS2_10LibContextE) +STUB( + "36GQOppzr2k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC1Ev) +STUB("36GRau6llzM", WKPageMarkAdClickAttributionsAsExpiredForTesting) +STUB("36GsIj3FrIw", _ZN3sce7Toolkit2NP2V29Challenge18ChallengeThumbnailC2Ev) +STUB( + "36J4eugCkag", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE5beginEv) STUB("36MDnaC1OHI", sceApplicationGetStateForDebugger) +STUB("36MVOzx6Uw0", _ZN3sce7Toolkit2NP20ChallengeSendRequestC2Ev) +STUB("36QNLZCsGZ8", _ZN3JSC3DFG18getNumCompilationsEv) +STUB( + "36Qn7igYkTQ", + _ZNK7WebCore21NetworkStorageSession55shouldBlockThirdPartyCookiesButKeepFirstPartyCookiesForERKNS_17RegistrableDomainE) STUB("36SxclBwsFs", sceOpusSilkEncEncodeWithPriority) +STUB("36UasLgAHg8", _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession13setSearchableERKb) +STUB("36V-ayZDWQo", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIlEC2EPKl) +STUB( + "36V6Ky9ElHA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE7popBackEv) +STUB( + "36WKwBokTsU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("36Wm5aIJUFY", cairo_new_sub_path) +STUB( + "36Xw1r3MRDo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEEC2ERKSA_) +STUB("36YjmziKXoc", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error9setStatusERKi) +STUB("36hIlYK72Vc", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEED2Ev) +STUB("36hv5tEW5cc", _ZNK9Inspector15RemoteInspector6Client11browserNameEv) +STUB("36sA+u7-LlA", mono_aot_ReactNative_Components_Vshunbox_trampoline_addresses) +STUB( + "36sXWvheefc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEEC2ERKS9_) +STUB("36tH2mTvPgs", _atanlo3) +STUB("36vtOQuRF8o", _ZN7WebCore13JSDOMRectListD1Ev) +STUB( + "36wRZjKAXpk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEdeEv) STUB("36xDKk+Hw7o", sceHmdDistortionGetWorkMemorySize) +STUB( + "379q8i9I0SE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE7reserveEi) +STUB("37BZMTiwN5c", _ZN3sce7Toolkit2NP2V26Friend7Request26DisplayFriendRequestDialogD1Ev) +STUB("37CMzzbbHn8", _ZTISt13basic_filebufIwSt11char_traitsIwEE) STUB("37DR-ZKbsv8", sceFaceIdentifySimilarity) +STUB("37HHcr6Cw8M", _ZN3sce3pss5orbis9framework11PsmCallListC1Ev) +STUB("37JfCwRdgnI", _ZN7CoreIPC15ArgumentDecoder6decodeERj) +STUB( + "37N6qDFqSjs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEED1Ev) +STUB("37R0ijwPews", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE5emptyEv) +STUB("37Rd2JS+FCM", _ZN3sce2np9EventFlag4PollEmjPm) +STUB( + "37XWx7TdtSk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEEC1ERKSA_) STUB("37ZdK-DvAJI", scePerfPmcSdfGetCounter) +STUB("37c6POpov60", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request7GetFeed13MAX_PAGE_SIZEE) +STUB("37dXZkodlCY", _ZN3NTF22URLRequestJobSchedulerD2Ev) +STUB("37hyOXyHL6k", mono_aot_Sce_Vsh_PartyCommonunwind_info) +STUB("37mIA-MjoWg", YGNodeStyleSetWidthPercent) +STUB( + "37mP9vAwr7c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("37szA7sW+Gg", _ZN7WebCore11JSImageData15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "37vf--UMPb0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE21intrusive_ptr_add_refEPS9_) +STUB("37xLoICBg0U", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V116TaskAvailabilityEEppEi) +STUB("37yPX1Dd-xs", _ZN12video_parser10cVideoPathD2Ev) +STUB("38-bjsboMps", mono_aot_Sce_Vsh_RequestShareScreenunbox_trampolines_end) STUB("380EWm2DrVg", sceNpMatching2SignalingGetLocalNetInfo) +STUB("3814EY2BTXo", _ZN23sceMetadataReaderWriter20LoadedParserInfoList24getUnloadParserCandidateEPj) STUB("382VXUjp0XU", sceFsUfsAllocatePatchImage) +STUB( + "386tXjjSAV4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE5beginEv) +STUB("388LcMWHRCA", fabs) +STUB("38B5Qc5Doj0", _ZN3JSC13RuntimeMethod15createPrototypeERNS_2VMERNS_14JSGlobalObjectE) +STUB( + "38HQ1-q3RFE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEEptEv) +STUB( + "38KgnBZbRL4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEC2Ev) +STUB("38MHJa5nLlU", _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest9setZoneIdEPKc) +STUB( + "38NSfA0vUws", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "38TWxXJ2vc0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEC2EPS8_) STUB("38YQch0p-Xo", sceMbusSetUsbPowerBlackList) STUB("38cfkczfN08", sceNpManagerIntLoginGetAccessTokenViaImplicitFlow) +STUB("38fFiZMtYSs", ubidi_setContext_67) +STUB("38fMik9zN5Y", ubidi_getMemory_67) +STUB( + "38fqxsuF5I0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE13getLibContextEv) +STUB( + "38gbXtzKr+U", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "38jQ1TPae2c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("38kHj8Rh5I8", mono_aot_System_Data_Services_Clientunbox_trampolines_end) +STUB( + "38m4tfySoWs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEE11get_deleterEv) STUB("38oSSWu98Lk", sceFsUfsMkfs) +STUB( + "38qmN4HDWOA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEE5resetEPS9_) +STUB("38s3C5AinhU", mono_get_uintptr_class) STUB("38tFulGgeWI", sceAudioOutSysGetOutputInfo) +STUB("38vHu+T50H8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEEmmEi) +STUB("38zYSKmTGIc", _ZN7WebCore21SerializedScriptValue8toStringEv) +STUB( + "39+FQ-2FoVE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB("39-glXtDPsE", _ZN7WebCore11DisplayList12PutImageDataD0Ev) STUB("394sckksiCU", sceFontStyleFrameSetEffectSlant) +STUB( + "398YbeC0WnM", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessions17setacceptLanguageEPKc) +STUB("39BK09X7zLY", glBlendFunc) +STUB("39DQQSLsNgY", _ZN3sce7Toolkit2NP2V27Session7Request17ConsumeInvitationC2Ev) +STUB("39HHkIWrWNo", vswscanf_s) +STUB("39I2tW21-Kk", jinit_upsampler) +STUB( + "39VY+KojNhg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEE11release_refEv) STUB("39WxhR-ePew", sceAjmBatchJobDecode) +STUB( + "39Y48ufHtLY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEE7get_refEv) +STUB("39ZD23ofnks", _ZN3sce7Toolkit2NP22UpdateNpSessionRequestC2Ev) +STUB("39c+H8bSITU", + _ZNK3sce2Np9CppWebApi12Leaderboards2V123RecordScoreResponseBody16getTmpSerialRankEv) STUB("39iV5E1HoCk", sceSysmoduleLoadModuleInternal) STUB("39lewWn5+G0", sceShellCoreUtilGetManifestFileStatus) +STUB("39n3nXzZWeM", _ZN7WebCore8SVGNames14cap_heightAttrE) +STUB("39tjjgU19JY", _ZN7WebCore6Chrome24disableSuddenTerminationEv) +STUB("39x1VqBO8IA", mono_guid_to_string_minimal) +STUB("3A0IOfgA2K4", _ZNK3WTF8JSONImpl5Value10memoryCostEv) +STUB("3A1eJRAF6Ic", _ZN7WebCore17PageConsoleClient24setShouldPrintExceptionsEb) STUB("3A2X6OCHtnA", sceAmprAmmCommandBufferUnmapToPrt) +STUB("3A3QX575l3I", ucsdet_detectAll_59) +STUB( + "3A3Xk25yrus", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEC1Ev) +STUB("3A4uN0y4e7o", zero) +STUB("3A9RVSwG8B0", __floatundixf) +STUB("3AEmld5+kCM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEEC1ERKS5_) +STUB("3AFe2ppI85A", _ZN7WebCore9GLContext22createOffscreenContextEPNS_15PlatformDisplayE) +STUB( + "3AGGgXPht6Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEEC1ERSA_) +STUB("3AGuYLeF9Q4", uregex_hitEnd_67) STUB("3AI9N7clwCs", sceMatMprotect) +STUB( + "3AMAcjF+tVM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEEC2Ev) +STUB("3AWH2FaJfxE", _ZN9Inspector29AuditBackendDispatcherHandlerD2Ev) +STUB("3AXAGsodfmg", _ZNK3sce2np7RingBuf11GetFreeSizeEv) +STUB( + "3AdLwKeOeXU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE10setContextEPNS2_10LibContextE) +STUB("3Af3+T3MOdY", _ZNK7WebCore13ContainerNode17traverseToChildAtEj) +STUB( + "3Ag5akdn93U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEE7get_refEv) +STUB("3AhFWhH0mH8", _ZN3WTF6StringC2EPKc) +STUB("3Akc82eLT0I", uregex_regionEnd64_67) +STUB( + "3AkmEl5gHkI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEeqERKS9_) +STUB("3AlRuA+uVyg", _ZN7WebCore3URL15hostIsIPAddressEN3WTF10StringViewE) +STUB( + "3AoEUWpXDmE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEC2ERS7_) +STUB("3AsGIs7lx2w", _ZN7WebCore18JSHTMLInputElement14finishCreationERN3JSC2VME) +STUB( + "3Awv8IlOz+o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEED2Ev) STUB("3AyTaWcF-H8", sceAgcDriverRegisterWorkloadStream) +STUB("3B0UjWrE4F0", _ZN7WebCore24MatrixTransformOperation6createERKNS_20TransformationMatrixE) +STUB("3B4gh+UMw10", _ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_20ChallengeRecvDetailsEE8max_sizeEv) +STUB( + "3B7MFTPTAxc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEEC2EPS9_PNS2_10LibContextE) STUB("3B8820wLyCk", sceKernelHwGetBdDriveInfo) +STUB( + "3BBTjRCE9Ng", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayer12setsessionIdEPKc) +STUB("3BDHghdSgog", WKWebsiteDataStoreSetStatisticsNotifyPagesWhenDataRecordsWereScanned) +STUB( + "3BHUk6Mcg2c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEEC1Ev) +STUB("3BKtV-ZgNGE", curl_escape) +STUB("3BNqOa83GtA", _ZN7WebCore19AccessibilityObject11isARIAInputENS_17AccessibilityRoleE) +STUB("3BNu-q4BYSQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEE5resetEPS6_) +STUB("3BVi4EDkOYA", jpeg_idct_4x2) +STUB("3BVpZh2e4Ho", + _ZN9Inspector14ConsoleMessage26updateRepeatCountInConsoleERNS_25ConsoleFrontendDispatcherE) +STUB("3BbBNPjfkYI", _Ldtob) +STUB( + "3BedShO70aQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEixEm) +STUB("3Bf7cw+WH1A", swap) +STUB( + "3BhbxNge554", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEEiRNS2_10LibContextEPT_m) +STUB("3BjB1psEx8s", mono_threads_set_shutting_down) +STUB( + "3Bk39bYRYgc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEE7get_refEv) +STUB( + "3Bl1sfPCTZ4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("3Bnk9LMRvgk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_17TitleCloudStorage2V19ConditionEEC2EPS6_) +STUB("3BoL0x8h0nE", g_str_equal) STUB("3BpP850hBT4", pthread_condattr_setpshared) +STUB("3Bq9ltZiV-U", _ZThn16_N26ScePssInputControllerOrbisD0Ev) +STUB("3BqYx-4igt0", _ZN12video_parser14cVideoOperatorD0Ev) STUB("3BqoiFOjSsk", sceNpProfileDialogGetStatus) STUB("3BrWWFU+4ts", sceFontGetVerticalLayout) STUB("3BsxDbWqTBQ", sceCesEucJpToUtf16) +STUB("3BxlmDKiHq0", mono_aot_System_Xmlplt_end) +STUB("3BytPOQgVKc", snprintf_s) +STUB( + "3Bz0GWCJdVo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE5beginEv) +STUB( + "3C+jhmNd7wE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE5abortEv) +STUB( + "3C-gzpq+3XY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("3C9BB4+ICx4", _ZN3JSC8Bindings13RuntimeObjectC1ERKS1_) +STUB("3CAYAjL-BLs", __adddf3) +STUB("3CB6yKkDe6Y", _ZN7WebCore19TextResourceDecoderD1Ev) +STUB("3CECWZfBTVg", CERT_getSubjectCommonName2) +STUB( + "3CFEf2TxTtc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEC2EPKS8_) +STUB( + "3CGYqoSDpz0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) STUB("3CHi1K1wsCQ", sceNetHtonll) +STUB("3CJ1jNrVg+4", mono_aot_System_Reactive_Linqplt_end) +STUB("3CJl5ewd7-0", _ZN3sce2np6Thread4ctorEv) +STUB("3CNVYZj-sfE", + _ZN3sce2Np9CppWebApi15Personalization2V121GetAccessCodeResponseC1EPNS1_6Common10LibContextE) +STUB("3CNY4Z0Luc8", __sys_namedobj_create) +STUB( + "3CTsvQRw1dg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEdeEv) +STUB( + "3CUqkWrczkU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE4sizeEv) +STUB("3CWmJsrc4AE", ucnv_createConverter_67) +STUB( + "3CX0gkWD-iE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB("3Ced4Xw+JB0", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils16NetStateDetailedEE12deepCopyFromERS7_) +STUB("3CjDtHR8UuY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEED1Ev) STUB("3Ckj9wlRA7c", sceDebugIpmiGetConnectRequestInfoList) +STUB("3Cl1FkN3orM", WKBundleFrameRegisterAsyncImageDecoder) +STUB("3ClP+rIikEw", _ZNK3sce2Np9CppWebApi11Matchmaking2V18Location6toJsonERNS_4Json5ValueEb) +STUB( + "3ClV7PSmhYg", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("3Cp-nOwl47U", _ZN15AbstractStorage14StorageManager6UpdateENS_11ServiceTypeE) +STUB( + "3CrHDe376cA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEEC2ERKSA_) +STUB( + "3CsuZra7Daw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEplEm) +STUB("3CtP20nk8fs", _ZNSt14_Error_objectsIiE14_System_objectE) +STUB( + "3Cu5cyG0WI8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEaSERS7_) +STUB("3CvcsgbdX58", JVM_SocketAvailable) +STUB("3Cvlf8PUy94", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo12getaccountIdEv) STUB("3Cy40mvJFyE", sceNpEntitlementAccessGetAddcontEntitlementInfoIndividual) +STUB( + "3CyP58G84w0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEeqERKS9_) +STUB( + "3CzvswWharM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEC1Ev) +STUB( + "3CzxRVbZc8s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEC2ERS7_) +STUB("3D-lb52KBks", _ZN7WebCore7Element21boundsInRootViewSpaceEv) +STUB("3DDz282J3cE", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredTeamsEE12deepCopyFromERS7_) +STUB("3DEJbFScwg8", delegate_virtual_invoke_10_p) +STUB("3DFYSB4Xk68", _ZN7WebCore14LoggedInStatus13setTimeToLiveEN3WTF7SecondsE) +STUB( + "3DFrVBQ3BJ0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("3DJJcxlaGok", + _ZNK7WebCore21NetworkStorageSession28shouldBlockThirdPartyCookiesERKNS_17RegistrableDomainE) +STUB("3DK2dxDedi0", glTexSubImage2D) STUB("3DXOsPHy9FQ", sceVisionManagerGenerateRegisterUserData) +STUB("3DcW5F8pk34", _ZN7WebCore4Page27setFullscreenControlsHiddenEb) +STUB( + "3DcttN5CH9Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEED1Ev) +STUB( + "3Dmr8-HFdUU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEEaSERSA_) +STUB( + "3DpDLUvEBKI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEE7add_refEv) +STUB("3Dq2mSdXqgE", _ZN7WebCore6Editor19insertEditableImageEv) +STUB("3DqiPW3mayI", _ZN3WTF28encodeWithURLEscapeSequencesERKNS_6StringE) +STUB( + "3DsIFIGoiDQ", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetrics27setCompletionRatePerReasonsERKi) +STUB("3DtP-+fNq0c", cairo_image_surface_get_stride) +STUB("3DtWT550eGM", glUniformMatrix2x3fv) STUB("3DuTkVXaj9Y", sceUserServiceGetPbtcFridayDuration) +STUB( + "3DvvoE9dRdw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEC1Ev) +STUB("3Dw5c477kQk", WKInspectorToggleJavaScriptProfiling) +STUB("3DyeUPKT2+c", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEEaSERS7_) +STUB("3E3yDTjF-SI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEEeqERKS7_) +STUB("3E5VYwkk1p8", __tsan_on_report) STUB("3EDFoWECKOg", sceKernelGetSystemSwBeta) +STUB( + "3EG8ac1t-7U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE5eraseENS2_8IteratorIS8_EERSB_) STUB("3EI-OSJ65Xc", sceNpWebApi2CreateRequest) +STUB("3EOYidQjTSM", _ZN3sce7Toolkit2NP2V28Presence8PresenceC1ERKS4_) STUB("3ET+1J4apB0", sceIduReboot) +STUB("3EUK5l6RAVk", _ZN3JSC11SymbolTable14finishCreationERNS_2VME) +STUB("3EUdMBRwxlE", _ZN3sce7Toolkit2NP2V27Session7Request17ConsumeInvitationD1Ev) +STUB( + "3EWL3yhJQ9A", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEneERKS9_) +STUB("3EXYyJjDdQw", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEEC1Ev) STUB("3EXdrVC7WFk", sceGnmDriverInternalRetrieveGnmInterfaceForReplay) +STUB( + "3EZDHVOP7vk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEED1Ev) +STUB("3Eb7+yCX55w", uldn_languageDisplayName_67) +STUB("3EcIpkf-kTI", _ZNK7WebCore7Element25containsFullScreenElementEv) +STUB("3EgxfDRefdw", expm1f) +STUB("3EhDLdxPJA8", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112UpdateStatusEEC2Ev) +STUB("3Ejy6aJB7u8", delegate_virtual_invoke_11) +STUB("3Ek9odpk9YA", _ZN3sce7Toolkit2NP9Utilities6FutureIiED1Ev) +STUB("3Emlg2ArWRg", ucnv_incrementRefCount_67) +STUB("3En652M2+Vk", _ZN7WebCore9HTMLNames13aria_ownsAttrE) +STUB("3EnF-fzC6g0", + _ZN3sce2Np9CppWebApi14SessionManager2V115LocalizedStringC1EPNS1_6Common10LibContextE) +STUB("3ErXia+y89M", _ZN3sce2np7Callout9IsStartedEv) +STUB("3Ev6IFrUeAM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE3endEv) +STUB( + "3F+Y4BFp9iQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE3endEv) +STUB("3F1oLnsP0LQ", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEEC2ERS6_) +STUB( + "3F3fJv6SH54", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions25getusePlayerSessionFilterEv) +STUB("3F60zkQwfw4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE8capacityEv) +STUB("3FExQerx1SI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching6WorldsEE3setEv) +STUB( + "3FGuxUmUvCw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEC2Ev) +STUB( + "3FMeVFZ3OxU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEC1EPNS2_10LibContextE) +STUB("3FOeDrXJqS8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE3endEv) +STUB( + "3FaOQzTa39w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEmmEv) +STUB("3Fd+8Pk6fgE", _ZTSPKi) +STUB( + "3Feki3+Pt7c", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("3FfhG3OCRyk", goby_CheckLicense) +STUB("3FiKO2eDhvU", _ZN7WebCore4Path5clearEv) +STUB( + "3FswAJv87Dg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE5eraseENS2_8IteratorIS8_EERSB_) STUB("3FtD6y5Rk5Q", sceNpManagerIntUpdateVshToken) +STUB( + "3FtHDoI1J+w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEppEv) +STUB("3FuoO8uU9+M", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE8pushBackERKS6_) +STUB( + "3Fy5HE9ws3Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("3G3NkSJ-kwc", WKWebsitePoliciesCopyCustomHeaderFields) +STUB( + "3G4EgxG4o5g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEC1Ev) +STUB( + "3G4fK2odadg", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V226WebApiFilterRequestFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_19WebApiFilterRequestEEE) STUB("3G4zhgKuxE8", sceFontRenderCharGlyphImage) +STUB( + "3G6ETfRyMmI", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsC2EPNS1_6Common10LibContextE) +STUB("3GC9QQlTKoU", WKPageResumeActiveDOMObjectsAndAnimations) +STUB( + "3GE-tTh9mF4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "3GJt8J3vkxg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "3GP6ihUXjJU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE21intrusive_ptr_add_refEPS9_) STUB("3GPpjQdAMTw", __cxa_guard_acquire) +STUB("3GXZVX106MA", _ZN3sce7Toolkit2NP2V28Matching17AttributeMetadataD2Ev) +STUB("3GXyJjvs9EQ", mono_aot_Sce_Vsh_EventServiceWrapperjit_code_start) +STUB( + "3GYohwAP22k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("3GaSGSyePDI", _ZN3sce7Toolkit2NP2V28Commerce7Request14CheckoutTargetD1Ev) +STUB( + "3GguY6HKDKQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEC2Ev) +STUB("3Gn+E5AVeCg", WKUserContentURLPatternCopyScheme) +STUB( + "3GnG8AXF8Fk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEptEv) STUB("3GqBPApWgPY", sceKernelWaitCommandBufferCompletion) +STUB( + "3GqGXlIw0OA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE4sizeEv) +STUB( + "3Gugy0RMDkE", + _ZN7WebCore16FrameLoadRequestC2ERNS_5FrameERKNS_15ResourceRequestENS_28ShouldOpenExternalURLsPolicyERKNS_14SubstituteDataE) +STUB("3GzmcihF5UM", mono_aot_Systemunbox_trampolines_end) +STUB( + "3H2suBucSJI", + _ZN7WebCore5Style8Resolver21pseudoStyleForElementERKNS_7ElementERKNS0_20PseudoElementRequestERKNS_11RenderStyleEPS9_PKNS_14SelectorFilterE) +STUB( + "3H5CVxgSr+o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEdeEv) STUB("3H5sVXHQbs0", sceDataTransferTerminate) STUB("3HAgZPl1v+4", sceFiosTerminate) +STUB("3HDn1r7lsGM", WKFrameIsDisplayingStandaloneImageDocument) +STUB( + "3HE0cDYJHP0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE7reserveEi) +STUB( + "3HG3cDVLUzU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEEdeEv) +STUB( + "3HIGxRyLcwg", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEEiRNS2_10LibContextEPT_m) +STUB("3HK90PNd0CA", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku9nameIsSetEv) +STUB( + "3HSC0TdZMjg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE3endEv) +STUB("3HSPRdTF1fw", _ZN3sce3Xml3Dom6NodeIdC2Ev) STUB("3HaJqtrvQqg", scePssKeyboardInitialize) +STUB( + "3HbC2CVEAmk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE8capacityEv) +STUB("3HbwrgY5DsY", delegate_virtual_invoke_imt_26_p) +STUB("3HgPTvfMSb4", _ZN3sce2Np9CppWebApi11Matchmaking2V127ListUserTicketsResponseBodyD2Ev) +STUB( + "3Hhif1Nt0gc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "3HkGlWKnttQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEmmEv) +STUB("3HnSw9cH-TE", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS25AtomicAddToAndGetVariableEED2Ev) +STUB("3HqyBrpu3jA", ENGINE_get_first) STUB("3Hx2Uw9xnv8", sceImeKeyboardUpdate) +STUB("3HxE0UPm48E", mono_print_thread_dump_from_ctx) +STUB( + "3I0nEXkbKD0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE6resizeEj) +STUB( + "3I1NC6PBITI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEEC2ERSA_) +STUB("3I2FbiV6fhw", _ZNK3sce2np8NpCommId7IsEmptyEv) +STUB( + "3I4VLRZ4xsw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEC2EPS8_) +STUB( + "3IC5aCodnX4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEED2Ev) +STUB("3ICTbdm9yDE", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Error9codeIsSetEv) +STUB("3IDweSxou1E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEC2ERKS7_) +STUB( + "3IHrTs+1F2U", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEneERKS9_) +STUB( + "3IN3Gd-+t3M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("3IO4pYlBzGU", ktrace) +STUB( + "3IPJCp2ngFo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEC2ERS7_) +STUB( + "3IQJKTpbgjQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "3Ibc3k+A1dE", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "3IeyiHOmayw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEEdeEv) +STUB("3Ig-1D9qSfE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEC2Ev) +STUB( + "3IlWp64anwU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE7reserveEi) +STUB("3IoD01lnka4", _ZN22MmsMdCommonFsOperation13storeFileSizeEv) +STUB( + "3IoVWIlmwyI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB( + "3Is0Iqf-ddk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEcvbEv) +STUB("3ItcbZh5emo", _ZN9Inspector34ApplicationCacheFrontendDispatchernwEm) +STUB( + "3IvUk+DBL2g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEC1Ev) +STUB( + "3IvnxfQpS7I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEEC1ERSA_) +STUB("3Iw3YWgqaS0", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging24GameDataMessageThumbnailEEC1Ev) +STUB("3J-ImOjCoog", uloc_getDisplayVariant_67) STUB("3J7Qlmn5Qvs", sceVdecswTryGetDecodeOutput) STUB("3JCe3lCbQ8A", sceHttp2Init) +STUB("3JHUyDc9vDI", _ZN3JSC7JSValue21putToPrimitiveByIndexEPNS_14JSGlobalObjectEjS0_b) +STUB("3JKfEnZUXkg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEE5resetEPS6_) STUB("3JNHzrEDnrk", sceShellCoreUtilIsPowerSaveAlertRequested) +STUB("3JPluOTZIOQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE5beginEv) STUB("3JTfX4nYjrc", sceAvControlGetDeviceInfo) +STUB( + "3JU1ZUdvOO8", + _ZN7WebCore14ScrollableArea30scrollToOffsetWithoutAnimationERKNS_10FloatPointENS_14ScrollClampingE) +STUB( + "3JYgD1NX7ew", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE21intrusive_ptr_sub_refEPS9_) +STUB("3JYhkiIHkJc", __sceKernelGetGPI) +STUB("3Jb+xAN0RLc", mono_get_cached_unwind_info) +STUB("3Jek4LNhcQ0", mono_aot_Sce_Vsh_EventAppmethod_addresses) +STUB( + "3JkLnzyKwF0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEE11release_refEv) STUB("3JyuejcNhC0", sceHmdReprojectionStartWideNear) +STUB("3K8Y0RvaHJU", _ZN23sceMetadataReaderWriter13ParserManager13releaseParserEi) +STUB( + "3KCaG4gsj7k", + _ZN7WebCore11DisplayList8Recorder12putImageDataENS_22AlphaPremultiplicationERKNS_9ImageDataERKNS_7IntRectERKNS_8IntPointES2_) STUB("3KChwrxsVPg", sceMusicPlayerServiceGetAudioVolume) STUB("3KDcnM3lrcU", sceAgcWaitRegMemPatchAddress) +STUB( + "3KEEPn1asOE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEC1EPS6_PNS2_10LibContextE) +STUB( + "3KFfSq5skPQ", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeader12setsessionIdEPKc) STUB("3KIbxxVQv84", sceKernelGetSpecialIForRcmgr) +STUB("3KK-Q0bl7oI", _ZN7WebCore16HTMLInputElement7setTypeERKN3WTF10AtomStringE) +STUB( + "3KKog+pzlJM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEC2EPS8_) +STUB( + "3KLJsCVcbUE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "3KNUP6PsBUo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEED1Ev) STUB("3KOuC4RmZZU", sceNpSignalingInitialize) +STUB( + "3KVMZbKgH8Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEneERKS9_) +STUB( + "3KW+M0wII9E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "3KW1uAmSO-g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE7popBackEv) +STUB( + "3KX+OAM1HYM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB( + "3Ka458TAnU0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEptEv) +STUB( + "3Kc0E7CjW3Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEE5resetEPS9_) +STUB("3Kdj1+eB7jY", _ZN3sce2Np9CppWebApi14SessionManager2V123MemberWithMultiPlatformD1Ev) +STUB("3KeAc1cF8EY", SSL_CIPHER_get_bits) +STUB( + "3KgXrefR1ws", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("3KlxAJJwr58", _ZN7WebCore21NetworkStorageSession14storageSessionEN3PAL9SessionIDE) +STUB("3KoHM+CMvoc", JVM_Open) +STUB("3KrOfXHjvw0", _ZN3IPC13ArgumentCoderIN3WTF6StringEE6encodeERNS_15ArgumentEncoderERKS2_) +STUB( + "3Kt2kS+0z6g", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10setString4EPKc) +STUB("3Kt8VBmOWpI", _ZN9MmsMp4BoxD1Ev) +STUB("3Ku9r8b6gCg", _ZN3sce2np20BufferedStreamReader5CloseEv) +STUB( + "3KutCavowug", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE10setContextEPNS2_10LibContextE) +STUB("3Kvd0-luspA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEC1Ev) +STUB("3KyBnDtIniw", unum_setTextAttribute_67) +STUB("3KzATBUIYEk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEC1EPS8_) STUB("3L-gCf-E4zk", scePlayReadyCdmiGetExpiration) +STUB( + "3L1hfNaKKJE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEC1Ev) +STUB("3L6XDc-UNVA", WKAuthenticationChallengeGetProposedCredential) STUB("3L99HU+j-MA", sceNpGriefReportCdBaseDataInit) +STUB("3LBwhPy74PU", + _ZN7WebCore19JSDOMMatrixReadOnly14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB( + "3LD6SRaNC0o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEEC2ERS9_) +STUB( + "3LF3LVuhyHo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("3LFVKmoavF4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEC1Ev) +STUB( + "3LGXHBjED-Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("3LIRw+rB9A4", _ZN3JSC2VM29callbackGlobalObjectSpaceSlowEv) +STUB("3LNwKNmDL80", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEED2Ev) +STUB("3LPfiB1gNFY", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129ConnectionQualityWiredMetrics9setJitterERKd) +STUB( + "3LRXwKD7KfI", + _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody13getMaxPlayersEv) +STUB("3Lbx0dg+6lg", __tsan_get_report_stack) STUB("3Lca1XBrQdY", sceKernelAioCancelRequests) +STUB( + "3LdHRIFRZFk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE5clearEv) +STUB( + "3LfL9QefxJI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE6resizeEj) +STUB("3LpeW4HSgKE", _ZN3sce7Toolkit2NP2V212EventsClient11EventInGameD1Ev) +STUB("3LtNyMyhCd8", _ZN3sce7Toolkit2NP2V212EventsClient15EventUserStatusC1Ev) +STUB("3Ltx9fK9MUc", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEEmmEv) +STUB("3LuoWoXJ1WI", _ZN3sce2np3ipc10IpmiClientD0Ev) +STUB("3LwgB6m1zlY", Java_java_net_PlainSocketImpl_socketBind) +STUB("3Ly-aZD+gQQ", _ZN3sce7Toolkit2NP2V26Trophy15TrophyPackGroup8deepCopyERKS4_) STUB("3M1tCF9VfoE", sceShellCoreUtilGetProgressOfFsck) +STUB("3M20pLo9Gdk", _ZNKSt8numpunctIwE8truenameEv) +STUB( + "3M4Zu3TOlcI", + _ZN7WebCore27withinTextUnitOfGranularityERKNS_15VisiblePositionENS_15TextGranularityENS_18SelectionDirectionE) +STUB( + "3M4udOKfa1U", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEptEv) STUB("3M8jROcYzjs", sceKernelWriteMapDirectCommand) +STUB("3M9-PeeY+S4", + _ZN3JSC21msToGregorianDateTimeERNS_2VMEdN3WTF8TimeTypeERNS2_17GregorianDateTimeE) +STUB("3M9CekGEngw", mono_aot_Sce_Vsh_Gls_GlsSharedMediaViewunwind_info) +STUB( + "3MB9nkbLfDY", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetBoolean8Ev) +STUB( + "3MBBhJMJkxk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEED2Ev) +STUB( + "3MD-AjkmdkI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEED2Ev) +STUB( + "3MJAUaTiBgE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE7reserveEi) +STUB( + "3MJqOp4MX1k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEEC2ERKSA_) STUB("3MKNQM3CJw8", sceUserServiceGetNotificationSettings2) +STUB( + "3MUAm69291I", + _ZN7WebCore16BlobRegistryImpl35registerBlobURLOptionallyFileBackedERKN3WTF3URLES4_ONS1_6RefPtrINS_21BlobDataFileReferenceENS1_13DumbPtrTraitsIS6_EEEERKNS1_6StringE) +STUB("3MUp7-9-xkg", WKFrameCreateFrameHandle) +STUB("3MVW8+eWnjs", _ZN3sce2np18HttpConnectionPoolD2Ev) +STUB("3MWI7gn4dfY", WKViewGetPunchHoles) +STUB("3MWPXpfeWXo", _ZN3sce7Toolkit2NP2V210Tournament16RegisteredRoster5resetEv) +STUB("3MXVqP+S-MQ", _ZN3JSC9JSPromise6createERNS_2VMEPNS_9StructureE) +STUB("3Mc9PdpemIk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEEC1EPS6_PNS2_10LibContextE) STUB("3MdvN660P4w", sceEsvmEngineMediaKeySystemAccessGetConfiguration) +STUB( + "3Mdxll18Tqo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEED2Ev) +STUB("3MoxakHN9Eg", _ZN7WebCore18TextureMapperLayer17setContentsOpaqueEb) +STUB("3N6HbRGVAbw", _ZN22MmsMdCommonFsOperation18CreateBufferOptionC2Ev) +STUB( + "3N7Gb4ZHtlw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEdeEv) +STUB( + "3N9DRVjaj-A", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "3NBpOpqlXLw", + _ZN9Inspector20DOMBackendDispatcher13getAttributesElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "3NCvo8sUxc0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC2Ev) +STUB("3NGBrAJfbmo", mono_aot_Sce_Vsh_SysfileUtilWrapperjit_code_start) +STUB("3NH1ZqHJbbk", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed13UsersWhoLikedEE19setCustomReturnCodeEi) +STUB( + "3NItjQDOoGI", + _ZN12video_parser48VpMpegvideoAvcParsePPS_get_top_left_bottom_rightEPNS_21VpMpegvideoAvcPPSCtrlEiPjS2_) +STUB( + "3NKX2GE53Gc", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations13isInitializedEv) +STUB( + "3NQKhqbBz-U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB("3NZhPjx-d8A", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEEdeEv) +STUB( + "3NaDqLJ0dNo", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112OwnerFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_5OwnerEEE) +STUB( + "3NbMM+oZyDc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("3Nir3M8HWDU", _ZN7WebCore9HTMLNames5h2TagE) +STUB("3NkyHTtIzRE", _ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForReadD1Ev) STUB("3Nm6tcgPCgQ", scePssSoundPlayerSetSurroundPan) +STUB("3Nr9caNHhyg", posix_spawn) +STUB("3Ns42AD8UGI", glDrawElementsInstancedEXT) +STUB( + "3Ntb+yOs7kQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEC2EPKS8_) +STUB("3O-VCkQL+w8", _ZN3sce2Np9CppWebApi13InGameCatalog2V55Error9unsetCodeEv) +STUB( + "3O0dDrN2Ub4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEC1EPS8_) STUB("3O7Ln8AqJ1o", sceRtcGetDaysInMonth) +STUB("3OGWd5HYT4Y", _ZN7WebCore8Document8timelineEv) +STUB("3OHnNaU1EHA", _ZNK3sce2Np9CppWebApi11UserProfile2V16Avatar6toJsonERNS_4Json5ValueEb) STUB("3OLHl6cAPjQ", sceVisionManagerGetRegisterUserDataVersion) STUB("3OMbYZBaa50", scePlayGoGetLanguageMask) +STUB( + "3OND4wi9JKY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEEcvbEv) +STUB("3OYr+HkfHBE", init_jk) STUB("3Oaux9ITEtY", sceSharePlayServerUnLock) STUB("3OdRkSjOcog", sceFontBindRenderer) +STUB("3OeDFY-UrlU", _ZN3JSC16throwSyntaxErrorEPNS_9ExecStateERNS_10ThrowScopeE) STUB("3OfeY4pzDV0", sceAmprMeasureCommandSizePushMarkerWithColor) +STUB("3OhfrC3tnh0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEE11get_deleterEv) +STUB( + "3OiO-NzlFbk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "3OjcH7RBNmo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE10setContextEPNS2_10LibContextE) +STUB("3OmzZ2gsM7s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEE7add_refEv) +STUB( + "3OnorzrjiY0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEptEv) STUB("3OnubUs02UM", sceNpWebApiGetMemoryPoolStats) +STUB( + "3OqKvavPY70", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE4sizeEv) +STUB("3OwG7YRNVOs", Java_java_awt_GnmToolkit_getScreenResolution) +STUB( + "3P+CcdakSi0", + _ZZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE9_GetffldxEPcRS3_S6_RSt8ios_basePiE4_Src) +STUB( + "3P-RN+00aug", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetrics6toJsonERNS_4Json5ValueEb) +STUB( + "3P0x4vzizxo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEC2Ev) +STUB( + "3P5TpKkhgPg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("3P7i3vxeZ18", renameat) +STUB("3P8TH4BFAg0", _ZNK3sce2Np9CppWebApi7Matches2V118RequestMatchPlayer15playerNameIsSetEv) +STUB( + "3P9D732NTrQ", + _ZN7WebCore21ComplexTextController14ComplexTextRunC1ERKN3WTF6VectorINS_9FloatSizeELm0ENS2_15CrashOnOverflowELm16ENS2_10FastMallocEEERKNS3_INS_10FloatPointELm0ES5_Lm16ES6_EERKNS3_ItLm0ES5_Lm16ES6_EERKNS3_IjLm0ES5_Lm16ES6_EES4_RKNS_4FontEPKDsjjjjb) +STUB( + "3PCIhEv01L4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEE5resetEPS6_) +STUB("3PDS2cyBkCw", _ZN9pathscale14set_unexpectedEPFvvE) +STUB("3PH3sDVuI20", _ZN7WebCore12PrintContext5beginEff) STUB("3PIU3PKoJPU", sceIduUtilGetSettingBin) STUB("3PKDRmrOlts", sceVideoCoreChangeAudioStream) +STUB("3PL1usXYg40", WKContextGetBatteryManager) STUB("3PSiwAzFISE", sceGameLiveStreamingSetCameraFrameSetting) +STUB( + "3PYPan9HaUc", + _ZN9Inspector24NetworkBackendDispatcher24getSerializedCertificateElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("3PZOiy2oZ9w", _ZN3WTF30numCodeUnitsInGraphemeClustersENS_10StringViewEj) +STUB("3PZWQN4dZUk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEcvbEv) +STUB( + "3PfHgud+7Ng", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEE21intrusive_ptr_sub_refEPS6_) +STUB( + "3Ph-u3z7AT0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("3PhwCztJMr0", Java_java_net_PlainSocketImpl_socketListen) +STUB("3PiMrWNwmgw", WKFrameCopyURL) +STUB("3PnKtGBM91A", + _ZN9Inspector21InjectedScriptManager23didCreateInjectedScriptERKNS_14InjectedScriptE) +STUB("3PrY5frVzkI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE8pushBackERKS6_) +STUB( + "3PreKVzXvRA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB("3PrhSO6dCns", uhash_geti) +STUB("3Ps+hlmBTMs", ucnv_toAlgorithmic) +STUB("3PsuRAadNps", _ZN7WebCore11MathMLNames13mathcolorAttrE) STUB("3PtV6p3QNX4", scePthreadEqual) +STUB("3PwZyNS7uWQ", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils5IdMapEE19setCustomReturnCodeEi) +STUB("3Q1Rm8ZQILU", _ZN7WebCore22EmptyFrameLoaderClient19dispatchDidFailLoadERKNS_13ResourceErrorE) STUB("3Q1gOWWarcw", sceCesUtf8ToSbc) +STUB("3Q3Q+M2xg0E", _ZL16buffer_allocated) +STUB( + "3Q3TfPIVcO8", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeaders17unsetCacheControlEv) STUB("3Q85e5cS3e0", sceCompositorSetPostEventCommand) +STUB("3QC1YQvFxEw", glPopGroupMarkerEXT) +STUB("3QDJXWo8JlM", + _ZN7WebCore18TextureMapperLayer20paintSelfAndChildrenERKNS_25TextureMapperPaintOptionsE) +STUB( + "3QH03m5E8SI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("3QIPIh-GDjw", rewind) +STUB("3QMXeS1mJG8", + _ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayerC2EPNS1_6Common10LibContextE) +STUB("3QQmCLX9eCA", _ZN3WTF22CrossThreadTaskHandler21setCompletionCallbackEONS_8FunctionIFvvEEE) +STUB("3QRGXtCYIlw", _ZN3sce10CanvasUtil6finishEv) STUB("3QYCmMlOlCY", sceSystemGestureFinalizePrimitiveTouchRecognizer) +STUB( + "3Qaes4s94Pg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEED2Ev) +STUB("3QbnMG-5mr8", UCNV_TO_U_CALLBACK_ESCAPE_67) +STUB("3QbvZ3xoajQ", _ZN3JSC11ArrayBuffer27primitiveGigacageDestructorEv) +STUB( + "3Qef+GNRYkc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEneERKS9_) +STUB("3Qeg9xX6hmA", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku27displayPlusUpsellPriceIsSetEv) +STUB("3Qg6O4Aj98E", _ZN7WebCore9HTMLNames9mutedAttrE) +STUB("3Qhb7xN3SlY", _ZN7WebCore18JSHTMLInputElementD1Ev) +STUB( + "3QmrphFo0gI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEEC2ERKSA_) STUB("3QtqTA0uMmU", sceNetCtlApDialogClose) +STUB( + "3QvWbC+K3TE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEEC2EPS6_PNS2_10LibContextE) +STUB( + "3Qye+y00GtE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEneERKS9_) +STUB("3R2fR2I+U9c", _ZN3sce7Toolkit2NP19GetTitleNewsRequestC1Ev) +STUB( + "3RGrd81vlzA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "3RHxGL8doDw", + _ZN3sce2Np9CppWebApi7Matches2V134ResponseTeamMemberStatisticFactory6createEPNS1_6Common10LibContextEPKcRKNS5_6VectorINS5_12IntrusivePtrINS3_19AdditionalStatisticEEEEEPNSB_INS3_27ResponseTeamMemberStatisticEEE) STUB("3RJZH7EwHdg", scePerfPmcSdfStart) STUB("3RQ5aQfnstU", sceSystemServiceGetNoticeScreenSkipFlag) +STUB("3RRdTCq+hjY", _ZN7WebCore9HTMLNames14backgroundAttrE) +STUB( + "3RUt+aopCmQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE8capacityEv) +STUB("3RbPI457+jU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEC1ERS7_) +STUB("3RdCtbREfp4", GCC_except_table92) +STUB("3Rh+aTCEEAQ", YGNodeStyleSetPositionPercent) +STUB("3Rh7qg2KTYY", _ZN7WebCore13JSDOMRectList11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("3Rhy2gXDhwc", warn) +STUB("3Rjs8pYosbM", __tsan_atomic64_fetch_or) +STUB("3RsXG6NL28w", _ZN3sce7Toolkit2NP2V24Core5Empty5resetEv) +STUB("3RuGM0ViflU", _ZTVN7WebCore26IdentityTransformOperationE) +STUB("3RuJrIP2QjM", mono_btls_x509_revoked_get_sequence) +STUB( + "3S1Z10-67kQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE10setContextEPNS2_10LibContextE) +STUB("3S5oFJOxq5g", udata_getInfoSize_67) +STUB("3SHDTB+hy4k", _ZNK3sce2Np9CppWebApi7Matches2V117LeaveMatchRequest17getNpServiceLabelEv) +STUB( + "3SLi73JSNxc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEE3getEv) +STUB("3SN5+yX0NxI", _ZN7WebCore8SVGNames7minAttrE) +STUB( + "3SPVPFR+Rtg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("3SSBLxG5YTI", _ZN12video_parser7cVpUtil15convLangVpToIsoENS_9VP_LANG_eEPt) +STUB("3SVaehJvYFk", amd64_set_fsbase) +STUB("3SW2Rs+BCYE", _ZN3WTF13MetaAllocator17currentStatisticsERKNS_6LockerINS_4LockEEE) +STUB( + "3SbMB2E7fhg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE5emptyEv) +STUB("3ScX6KyQ4h8", rgctx_fetch_trampoline_rgctx_123) +STUB( + "3SdxiRRV7t4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEE5resetEPS9_) +STUB( + "3Sgd6vavJhM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("3SmmHWPetYc", + _ZN7WebCore11MediaPlayer22performTaskAtMediaTimeEON3WTF8FunctionIFvvEEERKNS1_9MediaTimeE) +STUB("3SqFHDC844E", _ZN3sce7Toolkit2NP2V210Tournament7Request15EventTypeFilterC1Ev) +STUB("3SsdQzYQzo4", _ZN3sce3Xml3Dom6NodeIdC1Ev) STUB("3T08s8+BBT4", sceDebugAcquireAndUpdateDebugRegister) +STUB( + "3T2jH363bk4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEEC2ERS9_) +STUB( + "3T4sPrYXxTM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) STUB("3T5aIe-7L84", sceNetConfigWlanBackgroundScanStop) STUB("3T9y5xDcfOk", sceUserServiceLogout) +STUB("3TBpZa39IrM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEEC2ERKS6_) +STUB("3THnS7v0D+M", _ZTSPKx) +STUB( + "3TMSfgbq0Hw", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody14boolean10IsSetEv) +STUB( + "3TO8XzEiLzs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "3TOr-RYa+50", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("3TTubET2yh0", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V115FrequentlyMuted11unsetGlobalEv) STUB("3TWaWroGGGk", sceAppCheckerExecuteEx) +STUB("3TXZl5TizHU", _ZN7WebCore21DiagnosticLoggingKeys16notHTTPFamilyKeyEv) +STUB( + "3TYarvH7s0Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEEdeEv) STUB("3TbxIy0VEiU", sceNpManagerIntGetAccountDateOfBirthSdk) STUB("3Tcz5bNCfZQ", sceNpGetAccountLanguage2) +STUB( + "3TdpLcaLXIw", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectatorC1ERS5_) +STUB( + "3TjWJAz-ZtY", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC2ERKSA_) +STUB("3Tmjg+pNxC4", SSL_CTX_load_verify_mem) +STUB( + "3ToUBmeaTJI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus18setLastUpdatedUserERKNS1_6Common12IntrusivePtrINS3_15LastUpdatedUserEEE) +STUB( + "3ToWJ-uk1Uk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("3Ts9sXMsLDg", _ZN7WebCore20PasteboardCustomData5EntryC2ERKS1_) +STUB("3TsXk8jA39E", _ZN3WTF14FileSystemImpl40lastComponentOfPathIgnoringTrailingSlashERKNS_6StringE) STUB("3Tt9zL3tkoc", sceNpWebApi2CheckTimeout) +STUB( + "3Tu5MeRUvaM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("3TyDpOiEZnQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEptEv) +STUB("3U06ah2CDQ4", rgctx_fetch_trampoline_rgctx_41) +STUB("3U2E2PkIKxM", _ZN10Deprecated25ScriptCallArgumentHandler14appendArgumentEPKc) +STUB("3U2eeEqUwR0", _ZNSt10filesystem10_File_sizeEPKcPi) +STUB("3U2pDdbhjag", _ZN3WTF11Persistence5CoderISt5arrayIhLm20EEE6decodeERNS0_7DecoderE) +STUB("3U8DNqyYIv4", mono_domain_has_type_resolve) +STUB("3UA8GN0IPDo", _ZN9Inspector28InspectorScriptProfilerAgent26programmaticCaptureStoppedEv) +STUB( + "3UBb-s4nDPk", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "3UCUgwma5gc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEEC2ERKSA_) +STUB( + "3UJNUj9CnZE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEC1EPS8_) STUB("3UJTdJgcQzA", sceMbusDumpModuleStateInfo) STUB("3ULZGIl+Acc", sceAudioInVmicDestroy) STUB("3UPU8hbpaW0", sceFiosFHPwritev) STUB("3UVqGJeDf30", sceNpScoreSanitizeCommentAsync) +STUB( + "3UY6QBPERcE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "3UYL8c75It8", + _ZN3sce2Np9CppWebApi7Matches2V126CreateMatchResponseFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_19CreateMatchResponseEEE) +STUB( + "3UYjirHN2h4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE7popBackEv) STUB("3UZADLBXpiA", sceUserServiceGetVolumeForSidetone) +STUB( + "3UZcxMW6mkM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEED2Ev) +STUB("3Ua-YPM5wKw", _ZNK3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer14joinStateIsSetEv) +STUB( + "3Uasf0Bqqyo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEC2EPS8_) +STUB("3Ub-eh3lN4E", + _ZN3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponse8fromJsonERKNS_4Json5ValueE) +STUB( + "3Ui2WObDshw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "3UiESBkXGLY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE5clearEv) +STUB( + "3UiWlQA6oDI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEED1Ev) +STUB( + "3UikTocJcVg", + _ZN3sce2Np9CppWebApi14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayer13setPlayerNameEPKc) +STUB( + "3UoCWhkJbXs", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_28ActivityFeedSharedVideoStoryENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB( + "3V0gFRojGn4", + _ZN9Inspector21DOMFrontendDispatcher12didFireEventEiRKN3WTF6StringEdNS1_6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) +STUB( + "3V0qxyCPMxE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEE11get_deleterEv) +STUB( + "3V3VcDcxNqg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEE7add_refEv) +STUB( + "3V4Q7TUvT+M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE7reserveEi) +STUB("3V8p3rXCLkA", delegate_virtual_invoke_8_p) +STUB("3V9ZlX9Q-yE", + _ZNK3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer17pushContextsIsSetEv) +STUB("3VGWEYHMdDM", g_utf16_to_utf8) +STUB( + "3VIqDTSKFOU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEE11get_deleterEv) STUB("3VJOpzKoIeM", sceCameraSetTrackerMode) STUB("3VJmLpukTAc", scePerfTraceAmmDelete) +STUB("3VM2mj64POs", _ZN7WebCore8SVGNames13pointsAtZAttrE) +STUB("3VMBsbzgfj8", _ZN3sce2Np9CppWebApi11UserProfile2V15Error8fromJsonERKNS_4Json5ValueE) +STUB("3VROAldPB0Y", monoeg_g_slist_nth_data) +STUB( + "3VTMiaw4Hfg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEEC1ERSA_) +STUB("3VU-Pl-1eow", rgctx_fetch_trampoline_rgctx_53) +STUB("3VX5yZIrhic", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13SessionMemberEE10deallocateEPS3_m) +STUB( + "3VblZgpO1mA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsC1EPNS1_6Common10LibContextE) +STUB("3VdCUl+DkNw", _ZN3sce2np18MemoryStreamWriterD1Ev) +STUB("3VdoiD4rOVo", mono_aot_Sce_Vsh_UsbStorageSceneunbox_trampolines) +STUB( + "3VedwVpM3J0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEE7add_refEv) +STUB("3VoVUcanFYE", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats15unsetReputationEv) +STUB("3VpUbHUfQLM", kmq_open) +STUB("3VsB4tvMGkg", monoeg_g_memdup) +STUB( + "3VvDKKvB79A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEEaSERKSA_) +STUB( + "3VyQ92JCzo8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEE7get_refEv) +STUB( + "3W-ImWSABlU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEC1EPS8_) +STUB("3W1JDGjtt3M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEaSERKS7_) +STUB( + "3W6oM582Xa0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEixEm) +STUB("3W83LFBoVOg", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt6vectorI16SceNpTusVariableNS2_IS4_EEEEneERKS7_) +STUB( + "3WBc6R6XFwU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEEC1ERKS9_) +STUB("3WBnDdsrzis", mono_btls_x509_dup) +STUB("3WCA+6clvlo", _ZN7WebCore8FormData10appendDataEPKvm) +STUB( + "3WJIsKE06v0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("3WKo2oEmhNA", ucnv_setFromUCallBack_59) +STUB("3WOAdMPcNJI", _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeINS1_11TusVariableEPvEED1Ev) +STUB( + "3WSmy5MVrDA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "3WYI+PyszHA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "3WacKmbqS+c", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEED1Ev) +STUB( + "3WcQF1KzhMY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEdeEv) +STUB("3WfSV0+G32g", ures_getStringByKeyWithFallback) +STUB( + "3WhL7xY5dHM", + _ZNK7WebCore19MediaQueryEvaluator8evaluateERKNS_13MediaQuerySetEPNS_24MediaQueryDynamicResultsENS0_4ModeE) +STUB( + "3WhVurvjPns", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEED1Ev) +STUB("3WiMzBlsf50", _ZN7WebCore12ChromeClient23generateReplacementFileERKN3WTF6StringE) +STUB("3WooF6+ypWM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEE3getEv) +STUB("3WpTQrvGUcU", FT_Vector_Unit) +STUB("3WqEGKqUye4", _ZN3sce3pss5orbis3web11WebViewBase12IsFullScreenEv) +STUB("3WtJoftNWAw", GCC_except_table15) +STUB("3WxN4u0Qywg", _ZN3JSC15JSWeakObjectRef14finishCreationERNS_2VMEPNS_8JSObjectE) +STUB( + "3WxpTVN1tRk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEE21intrusive_ptr_add_refEPS7_) +STUB("3WzBXVjy6mc", Java_sun_awt_GnmUtils_invokeDisplayCallback) STUB("3WzWV86AJ3w", sceNetConfigDownInterface) +STUB("3WzgZDZnfdo", _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScoreD2Ev) +STUB( + "3WzyhIzewdI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("3X+cZHapioA", _ZN3JSC32JSDestructibleObjectHeapCellTypeC2Ev) +STUB("3XC8jrgArys", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEEC1EPS6_) +STUB( + "3XDM8+OgjaA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEC2ERS7_) +STUB( + "3XG5JQrHLU0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("3XHnMfffKJE", CmdThread) +STUB("3XNASuRKeIk", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEEplEm) +STUB( + "3XNgy9i50vo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEaSERKS9_) +STUB("3XR2IhSEjfM", _ZN7WebCore11MediaSampleC2Ev) +STUB( + "3XRGiYqbJY8", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessions17hasacceptLanguageEv) +STUB( + "3XY-aS41ghU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "3XY9kv7PTIU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEC2EPNS2_10LibContextE) +STUB("3XaFUrB8Bns", isobmf_box_getstate) +STUB( + "3XkE+guuRNw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEEC1Ev) +STUB("3Xm+VkCnH24", JVM_IsSameClassPackage) +STUB("3XqtftHfnqo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEEplEm) +STUB("3Xsf6cttiRo", _ZN7bmalloc15IsoHeapImplBasedlEPv) +STUB( + "3XuxieBPrLs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("3XwULRPa25E", _ZN15AbstractStorage14YoutubeContentD0Ev) +STUB("3XxEKWK9sDY", + _ZN3JSC19HeapSnapshotBuilder11analyzeEdgeEPNS_6JSCellES2_NS_11SlotVisitor14RootMarkReasonE) +STUB( + "3Y+mhrisss8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEEptEv) +STUB("3Y0dEShClao", _ZN3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer14unsetJoinStateEv) +STUB("3Y4J-V60GZs", mono_debug_symfile_lookup_method) +STUB("3YAMfWDAvQo", + _ZN3JSC8JSObject48convertDoubleToContiguousWhilePerformingSetIndexERNS_2VMEjNS_7JSValueE) +STUB("3YC2LF72-f4", _ZN7WebCore11DisplayList10StrokePathC1ERKNS_4PathE) +STUB("3YCLf2Eqc1g", _ZN3sce2Np9CppWebApi6Common6VectorIiE8copyFromERKS4_) +STUB("3YCLxZqgIdo", _ZNSt7codecvtIcc9_MbstatetEC1ERKSt8_Locinfom) STUB("3YCwwpHkHIg", sceVrTrackerStopLiveCapture) +STUB( + "3YNftjTkdOA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE6resizeEj) +STUB( + "3YO63l6hYFs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("3YODFwSqgtc", _ZN3sce4Json5Value12s_nullobjectE) +STUB( + "3YPpd-5Y08E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEppEi) STUB("3YQ1qY5ePUk", sceAudioInAsyncOpen) +STUB( + "3YR0qZiM9gI", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextEm) +STUB("3YRkxVfeu1s", + _ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_16HTMLImageElementE) +STUB("3YWBrCiubuc", u_strToTitle_67) +STUB( + "3YWlTJQWmdA", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12unsetString3Ev) +STUB( + "3YXCvMsDacE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE8capacityEv) +STUB( + "3YZGJeHwcbM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEED1Ev) +STUB( + "3YZiqz6qIWM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE6insertENS2_8IteratorIS6_EERKS6_RS9_) STUB("3Ybj4E1qNtY", sceNpScoreGetRankingByAccountIdForCrossSave) +STUB( + "3YfWHm1sdqo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE7reserveEi) +STUB( + "3Yk4YqA8QVk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot9setfieldsEPKc) +STUB("3YkIl1TadwA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEC2ERKS7_) +STUB("3YmKvJYGWfA", mono_aot_Sce_Vsh_MyGameListjit_code_end) +STUB( + "3Yn6A-wreds", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEEptEv) +STUB( + "3YnQ8toz6lk", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEiRNS2_10LibContextEPT_m) +STUB("3YnXspQNyw8", nmount) +STUB("3Yo+NPpWMQk", __tsan_atomic64_fetch_nand) +STUB("3Yo1jiOUgmY", u_strchr_67) +STUB("3YpDe6oXPV8", WebProcessMainManx) +STUB("3Yr1O6r-8ms", _ZNK7WebCore19ResourceRequestBase16httpHeaderFieldsEv) STUB("3YsMdm5Ci44", scePssMusicPlayerGetPlayState) +STUB("3YtCsbxqPGM", + _ZN3sce7Toolkit2NP9Utilities6FutureISbIcSt11char_traitsIcENS1_15AppSTLAllocatorIcEEEE3getEv) +STUB( + "3YuWbJPLieg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEcvbEv) +STUB( + "3Yzg48jAfsY", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot15unsetaccountIdsEv) +STUB("3Z-hTSXcHyc", WKBundleScriptWorldGetTypeID) +STUB("3Z0lsqw+tj0", _Z38sceGpuDebuggerGetEnabledExceptionsMaskPKN3sce3Gnm16PsStageRegistersEPj) +STUB("3Z22ZB8mHq8", u_getPropertyValueEnum) +STUB("3Z6eKFG+dqo", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersC2Ev) +STUB( + "3Z7SD3U+C+s", + _ZNK3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfile14haslanguageSetEv) +STUB("3Z7T+yqwlBc", _ZN7WebCore16FrameLoadRequestD1Ev) +STUB("3Z8jD-HTKr8", _LPow) +STUB( + "3ZBlQQFUUMQ", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetBoolean3Ev) +STUB("3ZEpcvKsbvI", uprv_convertToLCIDPlatform_67) STUB("3ZFpzcRqYsk", sceSystemServiceRequestCameraCalibration) +STUB("3ZIH7k+SJzA", g_hash_table_lookup_extended) +STUB( + "3ZMlXJ99YBU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEC2ERKS7_) STUB("3ZOA8Pf6Jho", sceKernelWriteMapCommand) +STUB( + "3ZPA1Kmj+Dw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEmmEv) +STUB( + "3ZPKpX0YNAE", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS9_) +STUB( + "3ZQmMw77AL4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEED1Ev) +STUB("3ZRLqwPxxoI", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEEdeEv) +STUB( + "3ZTKX47IJIE", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayerD1Ev) STUB("3ZWa3AoyWZQ", sceAgcAsyncCondExecPatchSetCommandAddress) STUB("3ZWtClII0ME", sceNpTrophy2SystemBuildRewardIconUri) +STUB("3ZX3TSuPUHs", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEC2Ev) +STUB("3ZdlXHdk090", __ulp_D2A) +STUB("3ZhL-MkICwI", _ZN3sce4Json6Object5eraseERKNS0_6StringE) +STUB("3Zhv4HG-fN0", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes14boolean10IsSetEv) +STUB("3Zkj-D8lfnU", _ZN7WebCore15PlatformDisplay16sharingGLContextEv) STUB("3Zl8BePTh9Y", sceNpCheckCallback) +STUB( + "3ZlvzCoNV+A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "3ZqZ3xAhnXY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE21intrusive_ptr_sub_refEPS9_) STUB("3Zr8O3Bnqco", sceFsMlfsMount) +STUB("3ZuKZKJ1Ysk", _ZN3sce7Toolkit2NP2V28Matching7Request14SendInvitationC1Ev) +STUB( + "3ZwJ-9kv0b8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEEC1ERSA_) +STUB( + "3Zz-0Hukffw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEC2EPS6_PNS2_10LibContextE) +STUB("3a+wuXU3LT0", _ZN7WebCore11MediaPlayer17setPreservesPitchEb) +STUB( + "3a1HGXvRmTQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEE7get_refEv) +STUB("3a4TANFDzNA", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetailC2Ev) +STUB("3a6B43jFjX8", _ZNK7WebCore20ResourceResponseBase12isSuccessfulEv) +STUB( + "3a8z7qKNQvQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB( + "3aAWML8jjmg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEC1EPS8_) +STUB("3aETmxWCSx4", Java_java_io_FileOutputStream_open) STUB("3aEY9tPXGKc", sceAudioPropagationSourceQueryInfo) +STUB( + "3aL1VhqCVAE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE3endEv) +STUB( + "3aXKznQUpJw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("3aXpgKuFSbI", mono_aot_System_Xmlunwind_info) +STUB("3aZN32UTqqk", _ZTISt22_Future_error_category) +STUB("3aeIfu8G6SE", _ZN7WebCore22multipleFileUploadTextEj) +STUB("3afasRLTvb8", mono_btls_x509_chain_add_cert) +STUB( + "3ahiYxKJcCA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEE11release_refEv) +STUB( + "3aiW8i3QXMU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEplEm) +STUB( + "3ajDPKLe2AY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEED2Ev) +STUB("3akdRDQT+nU", _ZN7WebCore20SVGPathStringBuilderC2Ev) +STUB("3at8rFY+PRk", xmlRegisterOutputCallbacks) +STUB("3attRwXs1JY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE7reserveEi) +STUB( + "3avu10wAzl4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser19unsetnpServiceLabelEv) +STUB( + "3b5tWWE7Q9w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEEaSERSA_) +STUB( + "3b6850gYENM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEC1Ev) +STUB("3b9l+wUehPc", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15CategoryInfoSubEE7destroyEPS3_) +STUB("3bDK4xmV5Kg", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12getBoolean10Ev) +STUB( + "3bPKlpay2fc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEEC1EPS8_PNS2_10LibContextE) STUB("3bYJjwtsUQc", sceDebugReadProcessMemoryForSDBGP) +STUB("3bgEKUvvw6U", JVM_Timeout) STUB("3bh2aBvvmvM", sceNpTusCreateRequest) +STUB( + "3biOWW-hz4M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "3bjEFf8OhTs", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "3bkDn4dJ55Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEC2ERKS7_) +STUB( + "3bm-NSULNt0", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119BandwidthProperties13setDownstreamERKNS1_6Common12IntrusivePtrINS3_26BandwidthDownstreamMetricsEEE) +STUB( + "3bnM5sjZBsg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEC2EPS8_) +STUB("3bovtcH-okE", mono_aot_Sce_Vsh_ShellUIUtilWrapperplt_end) +STUB( + "3bstXM1XDFk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "3bvqtecaMaM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE3endEv) +STUB( + "3c1LB5k+s-w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEC2Ev) +STUB( + "3c1SP6vjqcs", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "3c1q4wKH8x0", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V230FilterProfanityResponseFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_23FilterProfanityResponseEEE) +STUB( + "3c2l3sD1-VQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEEdeEv) +STUB("3c6eyS3Jx4Q", SSL_CTX_use_certificate_chain_file) STUB("3cAg7xN995U", sceAjmBatchJobGetStatistics) +STUB( + "3cBOPxiXQV0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEC1Ev) +STUB("3cBuHUZvJuw", _ZNK9MmsMp4Box7cmpTypeEPKc) STUB("3cCvc6gRJdA", sceBgftServiceIntDebugPlayGoRevertToInitialState) +STUB( + "3cKe6AdDTe8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEC1EPS6_PNS2_10LibContextE) +STUB("3cL6gACIbDI", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody8getValueEv) +STUB("3cRqbsC4oQE", _ZN3WTF17PrivateSymbolImpl16createNullSymbolEv) +STUB("3cUUypQzMiI", __cxa_begin_catch) +STUB("3cW6MrkCKt0", _ZNSt10moneypunctIcLb0EED1Ev) +STUB( + "3ca97-TU7QY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEeqERKS9_) +STUB( + "3ccGEf20YQs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEmmEi) +STUB("3cdfz7nTpC4", izrule_close_67) +STUB( + "3cftsQrBm0g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEE11get_deleterEv) +STUB( + "3cgWGDrzsnQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEEdeEv) +STUB( + "3cmOlxhabd0", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("3crHndPLhWs", _ZN3sce2Np9CppWebApi11UserProfile2V113BasicPresence14unsetInContextEv) +STUB("3csGEmgGKTs", WKBundlePageSetUseDarkAppearance) +STUB("3cu+NjdfhSU", + _ZN7WebCore11JSDOMWindow15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB( + "3d2gpPdJXT4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEE7get_refEv) +STUB( + "3d4XGhD2neI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEptEv) +STUB( + "3d6AJykJVa0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE3endEv) +STUB( + "3d7rQhf9eks", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEC2EPS8_) +STUB( + "3dKNyshFxDo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "3dKcj8YQHKk", + _ZN7WebCore13cookiesForDOMERKNS_21NetworkStorageSessionERKNS_3URLERKNS_12SameSiteInfoES5_St8optionalImESA_NS_20IncludeSecureCookiesE) +STUB("3dLQ7IReITw", _ZN7WebCore16HTMLImageElement14setCrossOriginERKN3WTF12AtomicStringE) +STUB("3dMKwTK6ZFE", _ZN7WebCore5Range6expandERKN3WTF6StringE) +STUB("3dTNNBoujn0", FTA_Support_Renderer_Raster1) +STUB("3dgGcCZNu9M", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEixEm) +STUB("3dj37xNl8Oc", _ZN3sce7Toolkit2NP26TusAddAndGetVarInputParamsC2Ev) +STUB("3dmVkJ1WFVk", _ZN3WTF14tryFastReallocEPvm) +STUB("3dtZDlg1TYg", _ZNK3sce2Np9CppWebApi11Matchmaking2V19Submitter13platformIsSetEv) +STUB("3dtiF-9KrYM", unorm2_getRawDecomposition_59) +STUB( + "3dzG3sjv1eo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("3e+4Iv7IJ8U", accept) +STUB( + "3e2IaUQkivI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEE11release_refEv) STUB("3e4k2mzLkmc", sceNpPartyCheckCallback) +STUB( + "3e6bFf4-3+8", + _ZN7WebCore27PlatformMediaSessionManager15endInterruptionENS_20PlatformMediaSession20EndInterruptionFlagsE) +STUB( + "3e85Ylcp894", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE7popBackEv) STUB("3e9SYGqEUnw", sceNpRemotePlaySessionSignalingEstablishConnection) +STUB( + "3eAYmGk0RBc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEmmEi) STUB("3eBNV9A0BUM", sceRemoteplayGetConnectUserId) +STUB( + "3eC8d6eJmt8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEptEv) +STUB("3eCvb-utsDw", AsyncStorageClearNative) +STUB( + "3eFWLAJOQs0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEE11release_refEv) +STUB("3eG+Hx2GCPs", _ZN7WebCore9HTMLNames13onseekingAttrE) +STUB("3eGXiXpFLt0", stdout) +STUB( + "3eJs868HcIU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEppEv) +STUB("3eMT8gzf7wk", _Z20WebViewBaseGoForwardii) +STUB("3eNdZdD2rgc", _ZTVN12video_parser17cVideoOperatorM4vE) +STUB( + "3eV0AYREmu8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEEC2Ev) +STUB("3eV8yB0VROo", _Ux86_64_get_elf_image) +STUB("3ebAgliMP-c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEED2Ev) +STUB("3egbiajVQQ8", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE5clearEv) +STUB("3enOTWb1NUo", CRYPTO_THREADID_set_callback) +STUB("3eoh4hjcYag", _ZN3sce2np9LocalFileD1Ev) +STUB("3epKOd2Wtp4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEC2EPS8_) +STUB( + "3epjsrE9tuA", + _ZThn16_N9Inspector21InspectorRuntimeAgent13getPropertiesERN3WTF6StringERKS2_PKbPKiS9_S7_RNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime18PropertyDescriptorEEENS1_13DumbPtrTraitsISG_EEEERNSA_INSC_INSE_26InternalPropertyDescriptorEEENSH_ISM_EEEE) STUB("3eqs37G74-s", pthread_getthreadid_np) +STUB( + "3er3f7zU3sw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEC2Ev) +STUB("3esC3xhwwac", png_error) +STUB("3ey06DTa90A", + _ZN3sce2Np9CppWebApi14SessionManager2V134PostGameSessionsSearchResponseBody15getGameSessionsEv) STUB("3f0ejg9vcE8", sceNpManagerIntGetVshClientId) +STUB( + "3f1IqcWtd24", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE6resizeEj) +STUB("3f56uMOQw4g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEcvbEv) +STUB("3f5ETZ6IIdM", _ZNK3sce2np13JsonArrayImpl10GetItemNumEv) +STUB( + "3fBdRAvkTxg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEE11release_refEv) +STUB( + "3fD3B+9iyao", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEE11release_refEv) +STUB( + "3fIOnELYqmA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEEaSERKS9_) +STUB( + "3fL9p8rBpUc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "3fM0SkcbLbM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEixEm) +STUB("3fQ3SSI-qG0", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIfEplEm) +STUB("3fWyc4r03Qg", _ZN7WebCore8Document12updateLayoutEv) STUB("3fcBoTACkWY", sceUserServiceSetImeInitFlag) +STUB( + "3feLxKKjnPw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEE3getEv) +STUB( + "3feuDH+0LaA", + _ZN3sce7Toolkit2NP9Messaging9Interface21retrieveInGameMessageEPKNS1_27ReceiveInGameMessageRequestEPNS1_9Utilities6FutureINS1_25ReceivedInGameDataMessageEEE) +STUB("3fhVhEV-In4", g_hash_table_new_full) STUB("3foHkmhq6ak", sceSocialScreenDialogGetStatus) +STUB( + "3fvCyRg+ghI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEppEi) +STUB("3fxY0RvS5h0", _ZN9Inspector30WorkerBackendDispatcherHandlerC2ERKS0_) +STUB("3g3GKA8WgJc", _ZN4Manx8X509nameC1EPv) +STUB("3g5lFAfPpzk", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V115FrequentlyMuted9getGlobalEv) +STUB( + "3g7ajpsX5aY", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V314MissingElementC1EPNS1_6Common10LibContextE) +STUB("3g7tdl9Ppds", _ZNK3sce2np7RingBuf7IsEmptyEv) +STUB("3g8MMjaAs0M", WKPageSetPageNavigationClient) STUB("3gB9EbKwJyQ", sceDebugReadProcessResourceStatData) +STUB( + "3gDnlViElDY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEEC2Ev) +STUB("3gFANa1TSV0", _ZN10MsvUpdater13getCurrentValEv) +STUB("3gGbs2iwSdM", _ZN7WebCore4Page23resumeAllMediaBufferingEv) +STUB("3gIrlaesBdY", monoeg_g_slist_find_custom) +STUB("3gNZuENirDc", mono_aot_Sce_Vsh_Messagesjit_code_end) +STUB("3gO4YQgo+IU", mono_install_assembly_refonly_search_hook) STUB("3gOaQJeTWZM", sceMusicCoreServerSetSpWakeupAuthorityList) +STUB("3gQA+sM11-M", _ZN3JSC37JSSegmentedVariableObjectHeapCellTypeD0Ev) STUB("3gQncidodmw", sceVrTracker2IrGetDebugRawImage) +STUB( + "3gTDNW59rq4", + _ZN3sce2Np9CppWebApi13InGameCatalog2V511ErrorEntity8setErrorERKNS1_6Common12IntrusivePtrINS3_5ErrorEEE) STUB("3gVX6ejR1hM", sceAvControlChangeScanInMode) STUB("3gY5B0FCkNY", pthread_resume_all_np) +STUB("3gdcQ+R76j8", + _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToCancelTicket13isInitializedEv) +STUB( + "3geoFxypPhk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE3endEv) +STUB( + "3gfJFwe4lS8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("3grQ1jCgta8", cairo_user_to_device) +STUB("3grqhhd8-mY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEC1Ev) +STUB( + "3grvz5SJJ44", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEEC2Ev) STUB("3gtNzvkq-XY", scePigletGetConfigurationVSH) +STUB("3guk5tKNnt0", _ZNK7WebCore3URL21hasFragmentIdentifierEv) +STUB("3h1io5JBDcA", _ZN7WebCore11prefetchDNSERKN3WTF6StringE) +STUB( + "3h1tg-yIpTk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("3h3Dm9Geh90", X509_PUBKEY_get0_param) +STUB( + "3h4fd-F-r+E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEC1Ev) STUB("3hBvwqEwqj8", sceRudpEnd) +STUB("3hDjShMJO7U", _ZNK3WTF9MediaTime18isPositiveInfiniteEv) +STUB( + "3hL61wDNRRo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEixEm) +STUB( + "3hNGDPj345Q", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEeqERKS9_) +STUB("3hPUZzg1RzA", _ZN8meta_gen17CommonFsOperation8seekFileElb) +STUB("3hRFngR3flU", _ZN7WebCore15SQLiteStatement9bindInt64Eil) +STUB( + "3hUzlTITUls", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE6resizeEj) +STUB("3hVZid8XOJQ", rgctx_fetch_trampoline_mrgctx_52_p) STUB("3hVv3SNoL6E", sceFontGetFontStyleInformation) +STUB("3hZgvn-vgoo", _ZN13MsvMetaEditor16getFunctionFlagsEPj) +STUB("3hbhpMR3TT0", udtitvfmt_format_67) +STUB( + "3hf2fqQxO34", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE5clearEv) +STUB("3hl+3pWsRNY", _ZN7WebCore19ResourceRequestBase37setExistingHTTPReferrerToOriginStringEv) +STUB("3hmTy9qQZLE", _ZN2GK9PlayerPSN5resetEb) STUB("3hmcpOw2tsE", sceUserServiceGetUserIdByNpAccountId) +STUB( + "3i++4iDosyA", + _ZN3sce2Np9CppWebApi11Matchmaking2V128GetTicketResponseBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_21GetTicketResponseBodyEEE) +STUB("3i0Aq+f3qeM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEptEv) +STUB( + "3i2WgunIGIQ", + _ZN9Inspector31ScriptProfilerBackendDispatcherC1ERNS_17BackendDispatcherEPNS_38ScriptProfilerBackendDispatcherHandlerE) STUB("3i5MEzrC1pg", sceCameraSetContrast) +STUB( + "3iNVb-F3hUk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEC1EPNS2_10LibContextE) STUB("3iONR2EXyKA", sceHmdReprojectionSetUserEventToFinish) +STUB("3iP9Xa6Z3z0", _ZN15AbstractStorage14StorageManager4LoadENS_11ServiceTypeE) +STUB("3iQHGio44FE", Java_java_net_PlainDatagramSocketImpl_peek) +STUB("3iRErH-tsWM", + _ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody21getUserCenteredAroundEv) STUB("3ic-p1mwH1I", sceMbusAcquireControlWithStateFlag) +STUB("3if2Hu9QawY", _ZN4Manx10FontStream4sizeEPv) +STUB("3ihVViNiFE8", _ZN3sce7Toolkit2NP2V29Messaging7Request20GameDataMessageImageD1Ev) +STUB( + "3ijFCecvKKU", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeaderaSERS5_) +STUB( + "3ip78Y0ydtU", + _ZN7WebCore22EmptyFrameLoaderClient38dispatchDidLoadResourceFromMemoryCacheEPNS_14DocumentLoaderERKNS_15ResourceRequestERKNS_16ResourceResponseEi) STUB("3it5yM0Teo0", sceNpTrophySystemWrapDebugLockTrophy) +STUB("3ivdto+NNCY", _ZN12video_parser5vpcom3rtc14GetDaysInMonthEPKm) +STUB("3j07a9DNBEY", _ZN7WebCore26ContextDestructionObserverC2EPNS_22ScriptExecutionContextE) +STUB( + "3j96xXE3ecc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEC1EPS8_) +STUB( + "3jDEYFK2w1M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEE7add_refEv) +STUB( + "3jE5G+aXMOc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEC2EPS6_PNS2_10LibContextE) +STUB("3jEYk0EGAyY", _ZN7WebCore9FrameView22setBaseBackgroundColorERKNS_5ColorE) +STUB("3jG2MXFuT+A", delegate_virtual_invoke_28) +STUB("3jMmHq3kMAs", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V113MmrProperties8fromJsonERKNS_4Json5ValueE) +STUB("3jT5OpYbH2U", compilerrt_abort_impl) +STUB( + "3jUeuJshJS4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEEdeEv) +STUB( + "3jY23Auif2E", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEEiRNS2_10LibContextEPT_m) STUB("3jcyx7XOm7A", sceHmdInternalGetPUSerialNumber) +STUB( + "3jeBu0QFXWU", + _ZN3sce7Toolkit2NP11UserProfile9Interface12getAvatarUrlEPNS1_9Utilities6FutureISbIcSt11char_traitsIcENS1_15AppSTLAllocatorIcEEEEEPKNS1_18UserProfileRequestEb) +STUB( + "3jf1thKjd60", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEE11get_deleterEv) +STUB("3jgsVW-+-H8", _ZN3sce2np14JsonStringImpl5ClearEv) STUB("3jnRsjnzIjI", sceAvControlIsColorimetryHdr) +STUB( + "3jtyQvk41nY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEE7add_refEv) +STUB( + "3jyFqDtEcQ8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEmmEi) +STUB("3jyjeeXzXZ4", _ZN3sce7Toolkit2NP2V211UserProfile7Request24DisplayUserProfileDialogC1Ev) +STUB("3k-zXaoAKm8", _log10f_impl) +STUB( + "3k5gAz5Lp1c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE21intrusive_ptr_add_refEPS9_) STUB("3k6kx-zOOSQ", sceKernelMlock) +STUB("3kBOxytQ06Q", _ZN7WebCore9HTMLNames8videoTagE) +STUB("3kCiCa3eq8c", utrans_rep_caseContextIterator_67) +STUB("3kHQ58qipyo", rgctx_fetch_trampoline_mrgctx_66) +STUB( + "3kInHOZ9+8k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEEC2ERSA_) +STUB( + "3kLkx8w1rSs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEeqERKS9_) +STUB("3kSOJ5mCJd0", JVM_MonitorNotifyAll) +STUB("3kSgxZfP+wQ", _UTF32BEData_67) +STUB( + "3kTJqJRiIr8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEC1EPS8_) +STUB("3kYjQMDvHII", ulist_deleteList_67) STUB("3kg7rT0NQIs", scePthreadExit) +STUB("3kghAseoxNs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEE3getEv) +STUB( + "3kitR+PuizA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEC2EPKS8_) +STUB( + "3kjXzznHyCg", + _ZZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8_GetifldEPcRS3_S6_NSt5_IosbIiE9_FmtflagsERKSt6localeE4_Src) +STUB( + "3koedqh4HoE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEE11release_refEv) +STUB( + "3kqAlM5VQGk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEEC1Ev) +STUB("3ktOaECB77A", _ZN7WebCore16BlobRegistryImpl15registerBlobURLERKN3WTF3URLES4_) +STUB( + "3ktQEGSmF0U", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3CSS8CSSMedia6SourceEEESt8optionalIT_ERKN3WTF6StringE) +STUB( + "3kw5pznDgdQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE8pushBackERKS8_) +STUB( + "3l2ITZ8b-iM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEppEv) +STUB( + "3l3k9S0khYo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEC1EPS8_) +STUB( + "3lC95nbky6U", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB("3lN1a1a8lkw", WKBundleRemoveOriginAccessWhitelistEntry) +STUB("3lNwYmcELHE", mono_aot_Sce_Vsh_RequestShareScreenunwind_info) +STUB( + "3lXEdk0z8pE", + _ZN7WebCore24RemoteMediaPlayerSupport31setRegisterRemotePlayerCallbackEON3WTF8FunctionIFvPFvOSt10unique_ptrINS_18MediaPlayerFactoryESt14default_deleteIS4_EEENS_16MediaPlayerEnums21MediaEngineIdentifierEEEE) +STUB("3lXG1gYF274", _ZN10MsvUpdater13UpdateContentEPK18MmsFileUpdateParam) +STUB( + "3lXfROkmZXg", + _ZN7WebCore11JSImageDataC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_9ImageDataENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "3lbzu2PX3IU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE21intrusive_ptr_sub_refEPSA_) +STUB( + "3lc9BuAaS4Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE21intrusive_ptr_sub_refEPS9_) STUB("3lgQ5Qk42ok", sceHttpUriMerge) STUB("3livsiq3ji4", sceAudioOut2InitializeEx) +STUB("3ljltQiScUw", _ZN3WTF11Persistence7DecoderrsERNS_8OptionalIiEE) STUB("3lpLQXJv9fE", sceMusicCoreServerSetShuffle) +STUB("3lszoToV9UA", _ZN7WebCore11MathMLNames15mathvariantAttrE) STUB("3luF0xq0DkQ", sceSaveDataGetSaveDataRootPath) +STUB( + "3lyzMNZFHI0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE21intrusive_ptr_add_refEPS9_) STUB("3lzrNhmEuCg", scePlayReadyLicenseAcqGetAdditionalResponseData) +STUB("3m2ro+Di+Ck", nextafterf) +STUB("3m3CSOfa5HU", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V15Owner8fromJsonERKNS_4Json5ValueE) +STUB( + "3m6HE2r+96g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEC2EPS8_) +STUB("3m6zSP0iQu4", mono_aot_Sce_Vshjit_code_end) +STUB( + "3mCQTzEUTMQ", + _ZN7WebCore21NetworkStorageSession10setCookiesERKN3WTF6VectorINS_6CookieELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEERKNS1_3URLESB_) STUB("3mHuKF7fsd8", sceLncUtilSetCdlgExec) +STUB("3mMhLw3+emA", _ZN4Manx11MediaPlayer8hasVideoEv) +STUB("3mOYiNMKQeI", _ZN3sce7Toolkit2NP2V28Matching7Request8JoinRoom24HIGHEST_DISPLAY_PRIORITYE) +STUB( + "3mPDJls-Tpc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) STUB("3mR3QJFzrg4", sceNpManagerIntClearParentalControlInfo) +STUB("3mStN5GBS80", _ZN7WebCore16HTMLMediaElement4loadEv) +STUB("3mYpSkj11l4", _ZN3sce7Toolkit2NP2V28Commerce14ProductDetailsD1Ev) +STUB("3mcWGj6UXd0", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_24RegisterGameDataResponseEED1Ev) +STUB("3miJ-BAq16A", _ZN3sce7Toolkit2NP2V211SharedMedia11ScreenshotsD2Ev) STUB("3mjsu608hoU", sceDepthSetRoi) +STUB( + "3mk1Is05O7Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEC2Ev) +STUB( + "3mm9+mRP89A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "3mu7YgukSkc", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToSendGameSessionMessage53getpostGameSessionsSessionIdSessionMessageRequestBodyEv) +STUB("3mzq2F6BGBE", _ZN7WebCore14SecurityOrigin6createERKN3WTF6StringES4_NS1_8OptionalItEE) +STUB("3n0QWwxX46U", __asan_report_exp_load16_noabort) +STUB("3n3wCJGFP7o", _ZTVSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE) +STUB( + "3n5RwrZJZAc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("3n6wEr0jDRk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEE11get_deleterEv) +STUB("3nIAEWyFU7o", _ZN9Inspector15RemoteInspector20receivedCloseMessageEj) +STUB("3nJgHQwirAU", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V122UploadDataResponseBodyD2Ev) +STUB("3nQDNE+JFKE", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Error12unsetMessageEv) +STUB( + "3nQMOXV1zow", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEC2EPS8_) STUB("3nQRdDyLMzE", sceDeci4hClose) +STUB("3nRsatuVjQU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEEC2ERS7_) +STUB("3nUMOKQgTvU", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable24lastUpdatedDateTimeIsSetEv) +STUB("3nVu5QjK+Ns", _ZN3sce7Toolkit2NP2V24Core19JsonMemoryPoolStatsC2Ev) +STUB("3nXw7b+YjRU", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13integer2IsSetEv) +STUB("3najRojKZIo", _ZN3JSC8JSObject11hasInstanceEPNS_14JSGlobalObjectENS_7JSValueE) +STUB("3neVPWwhANc", _ZNK7WebCore3URL4passEv) +STUB("3ng2Nc7ipgo", utrie2_get32FromLeadSurrogateCodeUnit) +STUB( + "3nl2tr-OsCI", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeaders24getXPsnAtomicOperationIdEv) +STUB("3nmBMeZtd+Y", _ZN3WTF13aboutBlankURLEv) STUB("3nn7rnOdt1g", sceSystemServiceTelemetrySetData) +STUB("3nnUhxICDDo", mono_btls_ssl_ctx_free) +STUB("3nsa26YrPzU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEE11release_refEv) +STUB("3nsspx5t01Q", mono_class_get_flags) +STUB( + "3o-dALTQWRE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("3o0PDVnn1qA", _ZTIPd) +STUB( + "3o0a9lFbE7k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE21intrusive_ptr_sub_refEPS9_) +STUB("3o0x1RR++Ng", _ZNK3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer10getNatTypeEv) STUB("3o3XDEydBjM", sceNpSnsYouTubeCreateRequest) STUB("3o6cZedja9M", sceDeci4hDrfpSearchTbl) +STUB("3oBkoQ94tu4", mono_aot_Sce_Vsh_Registryunwind_info) +STUB( + "3oE80CtovHg", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "3oFtN7P07kw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEED2Ev) +STUB("3oHFvSKbDqY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament16RegisteredRosterEED1Ev) STUB("3oIK7y7O4k0", sceNgs2SystemQueryInfo) STUB("3oL6ZnWIW80", sceAudiodecDecode2WithPriorityEx) +STUB("3oQXJPlb8zo", WKPageConfigurationGetUserContentController) +STUB("3oV6cGFfxmk", _ZN7WebCore19JSAnimationTimeline4infoEv) +STUB( + "3oVM+lCdBXE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEC2Ev) +STUB( + "3oVVtgC0F0E", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEaSERKSB_) +STUB( + "3ocUiA8RVA4", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinition17hasnpServiceLabelEv) +STUB("3odFp6+-Jkk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEED1Ev) +STUB("3odVOzLMVEk", mono_profiler_install_coverage_filter) +STUB("3oiIVBRnmYg", rgctx_fetch_trampoline_rgctx_29) +STUB("3okGL4Cutpk", ures_getLocale) +STUB("3olEmcMZYco", _ZN7WebCore8SVGNames7pathTagE) +STUB( + "3onqS+355Dk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEE7get_refEv) +STUB("3op2--wf660", _ZTSPKv) +STUB("3oqHkpkTvTk", mono_aot_Sce_Vsh_UserServiceWrappermethod_addresses) +STUB("3oqJnlANR1A", _ZN3sce7Toolkit2NP2V28Matching4RoomC2ERKS4_) STUB("3oqgIFPVkV8", sceUserServiceGetNotificationBehavior) +STUB( + "3otU74hiloU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEneERKS9_) +STUB("3ouqdWJ4ldw", nn_setsockopt) +STUB("3ovo4cphzuw", goby_GetAvailableLinks) +STUB("3oz0KquW47A", _ZN3sce7Toolkit2NP2V24Core7Request14RemoveCallbackC2Ev) +STUB("3p1EBzuU7lg", _ZN7WebCore4Page19setDelegatesScalingEb) STUB("3p7Wjk2mKeg", sceNpRemotePlaySessionSignalingManualUdpJoinSession) +STUB("3p9MGtW94vc", GCC_except_table17) STUB("3pBbmM8ZyN4", sceAudiodecClearContextEx) STUB("3pCNbVM11UA", sceNgs2CalcWaveformBlock) +STUB( + "3pDmfo3CDiU", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V139ConnectionQualityWirelessMetricsFactory6createEPNS1_6Common10LibContextEidiPNS5_12IntrusivePtrINS3_32ConnectionQualityWirelessMetricsEEE) +STUB( + "3pEjZ5H4+1g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEED1Ev) +STUB("3pF7bUSIH8o", isnanf) +STUB("3pFQHWls4Ug", _ZN3WTF21MemoryPressureHandler24currentMemoryUsagePolicyEv) +STUB( + "3pKHvS7DLuQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEC1EPS8_) +STUB( + "3pLiNPfIrdY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "3pP-lIHN+l8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE5clearEv) +STUB( + "3pXJ8mCEc9g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEppEv) +STUB( + "3pZ+ERxbHC8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE5clearEv) STUB("3pcAvmwKCvM", sceSystemGestureInitializePrimitiveTouchRecognizer) +STUB( + "3pedKJVOgn0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE6resizeEj) +STUB("3pf1uFd13oU", _ZN7WebCore24CoordinatedGraphicsLayer22effectiveContentsScaleEv) +STUB("3pmBdB-bl8w", cairo_reference) +STUB( + "3pouf0bzPjI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "3pvdIr9W-2k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEE5resetEPS9_) +STUB("3pwZQsU+mKU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4DataEE3getEv) STUB("3pxqefzM4mQ", sceImeBackendConvertCancel) STUB("3pxwYqHzGcw", sceNetCtlApRpGetResult) +STUB("3pzw+MrP15U", Java_java_net_PlainSocketImpl_socketAccept) +STUB( + "3q11gKaBxXo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEE11get_deleterEv) +STUB( + "3q1eGdD6qts", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEppEi) +STUB( + "3q2Ny31nAkA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEEptEv) +STUB( + "3q6ze8YK6lc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEC2EPS8_) STUB("3qG7UJy2Fq8", sceNetAddrConfig6Start) +STUB("3qGbMaLVgxY", AES_decrypt) +STUB("3qKJl6U2Tgo", _ZN15AbstractStorage15FacebookServiceC2Ev) +STUB( + "3qMDe77-7-E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE3endEv) +STUB("3qQmz11yFaA", __fixsfsi) +STUB( + "3qSM7BC0NMI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEC2Ev) +STUB( + "3qStDOsRt-Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEE3getEv) +STUB("3qTwQ5MjCiU", _ZN7WebCore5Frame4initEv) +STUB("3qWXO9GTUYU", _ZNSt12system_errorD1Ev) +STUB( + "3qZaBThNEr8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEE11release_refEv) +STUB( + "3qa+GPPi0Hg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEC2EPS6_PNS2_10LibContextE) +STUB("3qeW+zqfuhQ", _ZN3JSC9JSPromise7resolveEPNS_14JSGlobalObjectENS_7JSValueE) +STUB("3qfGoMlYkiI", _ZNK3WTF24TimeWithDynamicClockType8wallTimeEv) +STUB( + "3qrIfMl6XxI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEC1EPS8_) +STUB("3qrge7L-AU4", _ZNK3sce4Json5Value7getRealEv) +STUB( + "3qsjJczXiKw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEmmEv) +STUB( + "3qtt6ngz73o", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE5beginEv) +STUB("3qxE14ptOEo", _ZN7WebCore11DisplayList13SetMiterLimitC2Ef) STUB("3qxgM4ezETA", scePthreadAttrSetaffinity) +STUB( + "3qzRgcRfCc0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEppEi) +STUB("3r-EMEkvCTo", _ZN7WebCore11JSDOMMatrix14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB( + "3r0m5wt6QkM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE10setContextEPNS2_10LibContextE) +STUB("3r2B1rwZpPk", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getPlayableTime) +STUB("3r35V2b+MH0", + _ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody19npServiceLabelIsSetEv) +STUB( + "3r3HCiC7qVo", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB( + "3r4hdTPa0lA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("3rCx4MuJ4GE", _ZN3sce7Toolkit2NP2V24Core7Request10InitParamsC2Ev) +STUB("3rGzxcMK-Mg", _ZN3sce2np8WorkItem15RemoveFromQueueEv) STUB("3rHWaV-1KC4", sceAppContentAddcontUnmount) +STUB( + "3rHZqVrntiI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEeqERKS9_) +STUB( + "3rHmvvhjDBs", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V138SetMultiVariablesRequestBody_variables10unsetValueEv) +STUB("3rJJb81CDM4", __cxa_get_globals) +STUB("3rK86aObY4E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEptEv) +STUB( + "3rLLmZDLGFs", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("3rLPdWwF7Io", _ZN13MsvMetaEditor19getPresentationTypeEPj) +STUB( + "3rNhGzMh8oQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEE7get_refEv) +STUB("3rOh9uTV+Ko", _ZN3sce2Np9CppWebApi6Common13ParameterBase10initializeERNS2_10LibContextE) +STUB( + "3rPrPrmlzPo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("3rQTgVQshN0", _ZN7WebCore25DropShadowFilterOperation6createERKNS_8IntPointEiRKNS_5ColorE) +STUB( + "3rR-p21p2rs", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeaders15hasCacheControlEv) +STUB("3rXpEBCRi1o", CommerceSetPsStoreIconLayout) STUB("3rXsYx0JURc", ScePsmMonoAddInternalCall) +STUB("3rZOepV0sMM", _ZN7WebCore23ISOSchemeInformationBoxD0Ev) +STUB( + "3rdzYBBXZ7M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEC2EPNS2_10LibContextE) +STUB( + "3rfu+PK4MS4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEEdeEv) +STUB("3rggqYkgpbw", uregex_reset64_67) +STUB( + "3riNH8Pg8Ro", + _ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBodyC1EPNS1_6Common10LibContextE) STUB("3rlqy6XxrmI", sceNpAsmClientGetServiceIdInfoA) +STUB( + "3rmajXDtK9s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEC1EPS6_PNS2_10LibContextE) +STUB( + "3rnHmHsOM1I", + _ZN9Inspector23WorkerBackendDispatcher19sendMessageToWorkerElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "3rqBB1gQwjQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE5emptyEv) +STUB( + "3rs5a16kQgM", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer14getkeepHtmlTagEv) +STUB( + "3rvXpNqQOVM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEEC1EPS6_PNS2_10LibContextE) +STUB("3s0juAjIv-Q", mono_aot_Sce_Vsh_WebViewDialogunbox_trampoline_addresses) +STUB("3s1AvP2KdQ0", rgctx_fetch_trampoline_mrgctx_101) +STUB( + "3s7nWPgBL0Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEcvbEv) +STUB( + "3s8LRDS84bM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEdeEv) STUB("3s8cHiCBKBE", sceSystemServiceReportAbnormalTermination) +STUB("3s8eZwwVACU", _ZN7WebCorelsERN3WTF10TextStreamERKNS_27AbsolutePositionConstraintsE) +STUB("3sKaCKo8NtI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEC1ERKS7_) +STUB("3sKvLyigU4s", _ZN7WebCore24CoordinatedGraphicsLayer19imageBackingVisibleEv) +STUB("3sNsQzNdylI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEC1Ev) +STUB("3sPWeCbiWEo", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17GetGameDataResultEED1Ev) +STUB( + "3sQoA03uAYM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("3sTGJxsk2tM", WKPreferencesSetTelephoneNumberParsingEnabled) +STUB("3sVrBLScRtY", + _ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody16setMinScoreLimitERKl) +STUB( + "3sVzOoVKBsI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEcvbEv) +STUB("3sYy9XRSuLY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ChildActivityAvailabilityEEeqERKS7_) +STUB( + "3saxnztNDwA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEC1Ev) +STUB("3sfS7qT5eWI", _ZNK3sce2Np9CppWebApi14SessionManager2V115SearchCondition8getValueEv) STUB("3shKmTrTw6c", sceAudioInGetRerouteCount) +STUB( + "3sim-WtcNdU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEC1EPNS2_10LibContextE) +STUB( + "3sj6kBJDR6A", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEplEm) +STUB("3skeQcEYn-w", _ZN3sce7Toolkit2NP2V23TUS25TusDataStatusForCrossSaveC2Ev) +STUB( + "3sq8GGQF1Zs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEmmEi) +STUB("3st9IJ-fMOE", g_string_truncate) +STUB("3sxs3M-Zqi4", mono_aot_Sce_Vsh_Np_Udsplt) +STUB("3t+-YSBmZvE", _ZN12video_parser10cVideoPath10GetExtNameEv) +STUB("3t06QtomkIM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ResponseCooperativeResultEEptEv) +STUB( + "3t5Kkna-HgM", + _ZN15AbstractStorage18DailymotionContent13ParseMetadataEPN23sceMetadataReaderWriter8MetadataES3_) +STUB( + "3t5ibGZRIdQ", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("3t7EdRCpq+g", _ZN3sce7Toolkit2NP2V28Commerce19ServiceEntitlements8deepCopyERKS4_) +STUB("3t9p85V-a4c", mono_aot_Sce_Vsh_Sl2_NativeQueueClientjit_code_start) +STUB( + "3tKIuacq5jc", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearchC1Ev) STUB("3tPPMo4QRdY", sceUsbdClearHalt) +STUB("3tUO7QWZzvo", _ZN7WebCore14SocketProviderC2Ev) STUB("3tWKpNKn5+I", sceNpTrophyConfigGetTrophyTitleDetails) +STUB( + "3tX90rHhOyU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEC2EPS8_) +STUB( + "3tXk2jnIDi4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEEC2ERKSA_) +STUB( + "3taGrOQn8so", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessionsC1ERS5_) +STUB("3tg-7zqOj7g", _ZN3JSC19ControlFlowProfiler36basicBlockExecutionCountAtTextOffsetEilRNS_2VME) STUB("3tiBWhkHH3A", sceMoveTrackerTerm) +STUB("3tnX4BYslaY", + _ZN3sce2Np9CppWebApi13InGameCatalog2V520ContainerRatingCountC2EPNS1_6Common10LibContextE) +STUB("3toPy0pWt5Y", Java_java_awt_GnmGraphics_nativeRemoveClip) +STUB("3tolGFkslb4", WKPageSupportsTextEncoding) +STUB("3tzc9DUf-4U", _ZN3sce2Np9CppWebApi11Matchmaking2V19Attribute7setTypeERKNS3_13AttributeTypeE) +STUB("3u-CRxg2b0Q", _ZN7WebCore21BlobDataFileReferenceC1ERKN3WTF6StringES4_) +STUB( + "3u2GoRYVhr8", + _ZN9Inspector25TimelineBackendDispatcherC1ERNS_17BackendDispatcherEPNS_32TimelineBackendDispatcherHandlerE) +STUB("3u3NAvbbSFk", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE5beginEv) STUB("3u4M8ck9vJM", scePadReadHistory) +STUB("3uCFpGhR4oc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEaSERKS7_) +STUB("3uGJ6hKMv6Y", WKPreferencesGetSmartInsertDeleteEnabled) +STUB( + "3uIwm8ckbVc", + _ZN3sce7Toolkit2NP2V23TUS12getVariablesERKNS3_7Request12GetVariablesEPNS2_4Core8ResponseINS3_12TusVariablesEEE) +STUB("3uKk4puCQoQ", png_set_expand_gray_1_2_4_to_8) +STUB( + "3uL-6jkbL7E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEC2EPKS8_) +STUB("3uTgrMPM4K8", u_getTimeZoneFilesDirectory_67) +STUB( + "3uVjaJzGhqU", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEEiRNS2_10LibContextEPT_m) +STUB("3uW2ESAzsKo", _FXbig) +STUB( + "3ucoEWOMt40", + _ZN9Inspector14InjectedScript24getDisplayablePropertiesERN3WTF6StringERKS2_iibRNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime18PropertyDescriptorEEENS1_13DumbPtrTraitsISC_EEEE) +STUB("3ugZ5it8Orw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEC2Ev) +STUB( + "3uhntzjS90Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEmmEv) +STUB("3ulYXwNoFvc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEEppEv) +STUB("3umkqy4D8u4", mono_aot_Sce_Vsh_RemotePlayplt) +STUB("3upSZFX48Y4", _ZN3JSC7Symbols15boldPrivateNameE) STUB("3upe0x3ZdiY", sceUpsrvUpdateGetUrlForFeatureListBeta) +STUB("3urTbaMTNyE", cairo_set_antialias) +STUB("3v--3NC-72Q", _ZN7WebCore16HTMLMediaElement14setCrossOriginERKN3WTF12AtomicStringE) +STUB( + "3v75cEdyGwY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "3v9AsJCwW1E", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13boolean3IsSetEv) +STUB( + "3vG8zX8X+Js", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEC1Ev) STUB("3vHcGnZpiN8", sceSysUtilSendSystemNotificationWithAppInfo) +STUB("3vKaayQBdSk", nn_recvmsg) +STUB( + "3vWhfzCf5uo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE7reserveEi) +STUB("3vZUxLvBCsc", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V224TestForProfanityResponse11unsetStatusEv) +STUB( + "3vaXzJMwfIo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE5beginEv) +STUB( + "3vcCzp79yIU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE8pushBackERKS8_) +STUB( + "3vhkALZKoXk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEE5resetEPS9_) +STUB("3vjU6Wr-4Q8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE5clearEv) +STUB("3vkN07sxRNU", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification18NewGameDataMessageEE3getEv) +STUB( + "3vkVA4yIcpM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) STUB("3vmrvQ4rvgs", sceVoiceQoSGetRemoteEndpointAttribute) +STUB( + "3vpHlweG5iQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("3vsGWl6l7LY", _ZN7WebCore16ResourceResponseC2ERKS0_) STUB("3vxmiyPKb90", sceDevUsbInitCP) STUB("3vyRmRU3CL8", sceGameCustomDataDialogClose) +STUB( + "3w0nrldhcT8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEED1Ev) STUB("3w8SkMfCHY0", sceHmdInternalGetDebugSocialScreenMode) +STUB("3wBlLV8DiaY", _ZN7WebCore11MediaPlayer12networkStateEv) +STUB( + "3wCEN9TNBU4", + _ZN15AbstractStorage14TwitterStorage15RemoveRecursiveERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("3wDKZRIqEA0", _ZNK9Inspector20InspectorTargetAgent14connectionTypeEv) +STUB("3wJTjzFg8lc", + _ZNK3sce2Np9CppWebApi11Matchmaking2V127ListUserTicketsResponseBody6toJsonERNS_4Json5ValueEb) +STUB("3wSPG3tsCoo", il2cpp_runtime_invoke_convert_args) STUB("3wTtZ3c2+0A", sceUserServiceGetEventVsh) STUB("3wUaDTGmjcQ", sceAppContentGetAddcontInfoListByIroTag) +STUB("3wWqYNGFofg", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku10labelIsSetEv) +STUB("3waAScJjcZw", + _ZN3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator12unsetNatTypeEv) +STUB("3wbWdO8rhwY", mono_method_header_get_code) +STUB("3wcYIMz8LUo", nrand48) +STUB("3wferxuMV6Y", CERT_VerifyValidityTime2) +STUB( + "3whB5927Jb0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE21intrusive_ptr_add_refEPS7_) +STUB( + "3wkE9hA-nSY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEED2Ev) STUB("3wn42MWTzTs", sceAmprCommandBufferWriteCounterOnCompletion) +STUB( + "3wn7o2JYsM0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEC2Ev) +STUB( + "3wrc243UKiw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "3ww24CyKkKY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("3wxAGOWA5rw", WKPreferencesSetSimpleLineLayoutEnabled) +STUB( + "3wxUdl3zM6A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEppEi) +STUB( + "3x2ULW70STQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEE21intrusive_ptr_sub_refEPS7_) +STUB("3x4Zf5kAezE", + _ZN3sce2Np9CppWebApi7Matches2V124ResponseTeamMemberResultC2EPNS1_6Common10LibContextE) +STUB("3x99s2P78c8", _ZN3JSC7VMTraps8fireTrapENS0_9EventTypeE) +STUB( + "3xFeERioZeQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE5beginEv) STUB("3xULm-emJqE", sceDiscIdGet) +STUB("3xUXnmUkXfo", _ZN3sce4Json5ValueC1ERKNS0_6ObjectE) +STUB("3xgqVi8Gd4g", WKPreferencesSetAsynchronousPluginInitializationEnabledForAllPlugins) +STUB("3xhF5sXHvj0", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE3endEv) +STUB( + "3xhwc0fdc58", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEC1Ev) +STUB( + "3xm-Za3Hv6I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEppEi) +STUB("3xmEsNrtkWs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEppEi) +STUB("3xoP69U8NGs", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession14setCustomData2EPKvm) +STUB("3xsE3RDNnQw", glDeleteFramebuffers) +STUB( + "3xsbtd1XEbU", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditionsD2Ev) +STUB("3xusIXS+iL0", _ZNK3JSC17DebuggerCallFrame4typeEv) STUB("3xy2vPK0o6c", sceDebugTriggerVrCaptureDump) +STUB( + "3y-kXHTLabg", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V333CommunicationRestrictionStatusApi44ParameterToGetCommunicationRestrictionStatus16getaccountIdOrMeEv) +STUB( + "3y2j1Yr65bE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("3y2ysESiRFA", curl_easy_escape) STUB("3yA8V7dy8Cc", scePlayReadyDomainCertEnumInit) +STUB( + "3yB34MDM3V8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEC1Ev) +STUB("3yBZ0VHyP6E", _ZL13global_locale) +STUB( + "3yHvP+7uifs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEEC2Ev) +STUB("3yQipX6ypKM", glBlendEquationSeparate) +STUB("3yRgYSwNWAE", _ZN7WebCore17CredentialStorage29originsWithSessionCredentialsEv) +STUB("3yRsfv-s0kA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEC2Ev) STUB("3yTx5JA+cgg", sceMatMapDirectMemory) +STUB("3yVtByzKow4", _ZN7WebCore26ISOProtectionSchemeInfoBoxD1Ev) +STUB("3yXJHxARCvQ", ucnv_getMaxCharSize) +STUB("3yXKaQ46hyo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEED2Ev) +STUB("3yYVIdiqEQ4", jinit_marker_reader) +STUB( + "3ybkAgcTk2I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE10setContextEPNS2_10LibContextE) +STUB("3yfS8opxosg", _ZN7WebCore11MediaPlayer26activeSourceBuffersChangedEv) +STUB("3yj8qtF1D1o", _ZN3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer13setPlayerNameEPKc) +STUB("3yjZbSvan2g", getgroups) +STUB("3yjcqa6fjKM", _ZN7WebCore9HTMLNames18formnovalidateAttrE) +STUB( + "3ykXNW6h2Qc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEppEv) +STUB( + "3ykxR4l6NCo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEEdeEv) +STUB( + "3ylQqRkblgk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEED1Ev) +STUB( + "3ym9tbWtB+8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "3yncwV+Ar5Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEppEv) +STUB("3ypXX2M7P+w", _ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody8getGroupEv) +STUB("3yq8l1IxaTg", _ZTVN7WebCore6Path2DE) +STUB( + "3yrp9DjynbM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE5beginEv) +STUB("3yvDWOIJECc", monoeg_g_str_hash) +STUB("3ywnw-YQ-IQ", _ZN3sce2Np9CppWebApi7Matches2V121ResponsePlayerResults11setPlayerIdEPKc) +STUB("3yxLpdKD0RA", _ZnwmSt11align_val_t) +STUB("3yz2wrHB6ZQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V112OnlineStatusEEeqERKS7_) +STUB( + "3z0m-X+9xRs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEE7get_refEv) +STUB("3z2UGDyKklI", _ZN7WebCore8JSDOMURLD2Ev) +STUB( + "3z3MLZrg1js", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEE3getEv) +STUB("3z59UsQwbso", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEaSERS7_) +STUB("3z5EPY-ph14", _ZN3sce2np4CondC1Ev) +STUB( + "3z8dl2DYpGk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEEaSERS9_) +STUB("3z9F7LSLR7c", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V114ResultsVersionEEdeEv) +STUB("3zC91Jdt37w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEaSERS7_) +STUB( + "3zCMDbtD7ik", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB("3zGzS4eQlys", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12EventsClient6EventsEE3getEv) +STUB("3zIKKxAWo38", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicket9terminateEv) +STUB("3zLyTNiXgXc", + _ZN7WebCore18JSHTMLMediaElement15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) STUB("3zM9I43piGc", sceCesUtf32leToBig5) +STUB( + "3zPBos4QJ2E", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE6finishEv) +STUB("3zPeShOSo64", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEEC2ERS6_) +STUB( + "3zR4vTtdYY0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEdeEv) STUB("3zRdT3O2Kxo", sceNetSysctl) +STUB("3zTMWg3QCv8", mono_aot_Sce_Vsh_PartyCommonunbox_trampoline_addresses) +STUB( + "3zWKgu7LFMI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEE7get_refEv) +STUB( + "3zWdGHgeBCI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("3zWpyQga5N0", FcPatternGetBool) +STUB( + "3zeyj3Omj-s", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEplEm) +STUB( + "3zlAqu5xSdA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEC2ERKS7_) +STUB( + "3zlXB+Zq-BQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEEC2ERSA_) +STUB("3zoOAlAOZdg", mono_arch_nullify_class_init_trampoline) +STUB("3zqAv9mDpGc", uregex_openC_67) +STUB("3zrPYHbotag", GCC_except_table471) +STUB("3zuikvFn8GI", _ZN12video_parser7cVpUtil22vp_ff4_ftell_by_threadEPvPm) +STUB( + "3zwagqy2GH4", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("4+-kOCEB-vs", uregion_getRegionFromCode_67) +STUB("4+C6N+zAXfU", rgctx_fetch_trampoline_mrgctx_91) +STUB("4+EkBvy9rSA", fuse_reply_none) +STUB( + "4+KF3RYG1l4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE8capacityEv) +STUB("4+LUsvf0+7E", _ZN3sce2Np9CppWebApi7Matches2V113ChildActivity11unsetStatusEv) +STUB("4+SScYDT5Pg", FT_TrueTypeGX_Validate) +STUB("4+Y0-XRlarQ", monoeg_g_unsetenv) +STUB( + "4+YPGO3yUU4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("4+f471j+4aY", _ZN4Manx8ImeEventC1ENS0_12ImeEventTypeEPKcji) STUB("4+h9EzwKF4I", scePthreadAttrSetschedpolicy) +STUB( + "4+kYgTLWe9g", + _ZN7WebCore17PageConfigurationC1EON3WTF9UniqueRefINS_12EditorClientEEEONS1_3RefINS_14SocketProviderENS1_13DumbPtrTraitsIS7_EEEEONS2_INS_17LibWebRTCProviderEEEONS6_INS_20CacheStorageProviderENS8_ISF_EEEE) +STUB("4+oswXtp7PQ", _ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED2Ev) +STUB("4+uBwOyTdMo", mono_btls_key_assign_rsa_private_key) +STUB( + "4+vzM1BwXIE", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUser17hasnpServiceLabelEv) +STUB( + "4+wRiPxdQi8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEppEi) +STUB("4+xG8NftNiY", _ZN7WebCore5Range6detachEv) +STUB("4+xPgKPSw6c", _ZN4IPMI4impl11SessionImpl18createAsyncContextEjijm) +STUB("4+y8-2NsDw0", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8_GetffldEPcRS3_S6_RSt8ios_basePi) +STUB("4+yz93np9rs", _WPrintf.fchar) +STUB("4-30FU3BDs0", WKPreferencesGetFetchAPIEnabled) +STUB("4-D93xv8nRk", _ZN3WTF24numberToFixedWidthStringEdjRSt5arrayIcLm123EE) +STUB("4-Dt9bW3f7g", mono_aot_Systemunwind_info) +STUB( + "4-Fllbzfh2k", + _ZZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8_GetffldEPcRS3_S6_RSt8ios_basePiE4_Src) +STUB( + "4-GEoBBCL04", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE5emptyEv) STUB("4-GxiotYTWo", _sceLibcMalloc) +STUB("4-HiK3luXGI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEdeEv) +STUB("4-Kpf6DxtUU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEEC1Ev) +STUB( + "4-OUth-wTiI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEE11get_deleterEv) +STUB( + "4-PyHsIdnbk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEEC2ERSA_) +STUB("4-QpphokW6Y", __asan_report_exp_store_n_noabort) +STUB("4-WCEZyXPog", _ZN7WebCore11DisplayList18FillCompositedRectD2Ev) +STUB("4-gCTWs9z0g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEED2Ev) +STUB("4-hAUuiojY8", Java_java_io_FileInputStream_open) +STUB( + "4-iBsNG8+B4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("4-jiB8LTwSA", mono_aot_Sce_Vsh_DbPreparationWrapperunbox_trampolines_end) +STUB("4-kqaTFy5y0", _ZN3sce7Toolkit2NP7TssDataC2Ev) +STUB("4-lwWnkoH2Q", Java_com_sun_dvb_event_MHPEventQueue_run) +STUB("4-n293djcRY", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEEixEm) +STUB( + "4-r7g+tCYl8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE8pushBackERKS8_) +STUB( + "4-s+H6bu+dU", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi42ParameterToPutGameSessionsSearchAttributesC2ERS5_) +STUB("4-uQw+1hf8M", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V115LastUpdatedUser11setOnlineIdERK13SceNpOnlineId) +STUB("4-v5LYnR2Vg", _ZN7WebCore4PageD2Ev) STUB("4-yhZ7aj3VE", sceFiosDebugDumpOp) +STUB("40+6pS1CK6w", WKContextGetWebSecurityFilter) +STUB("401M3Y7au70", + _ZN3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayerC2EPNS1_6Common10LibContextE) STUB("4055yaUg3EY", sceAudioOutMasteringSetParam) STUB("405M9x9WM80", sceVideoStreamingEngineMediaKeysCreateSession) +STUB("408v7lhN4QU", _ZN7WebCore21resolveCharacterRangeERKNS_11SimpleRangeENS_14CharacterRangeEt) +STUB("40BxQHhkVGI", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSessionD1Ev) +STUB("40Dl2PqHr6Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEED2Ev) STUB("40GlkRTqRH0", sceNpManagerIntGetOnlineId) +STUB( + "40HB1xBnsIA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEdeEv) STUB("40IZ5L7mLQo", sceUlpMgrVshUnmountCmd) +STUB( + "40J4dgsIlSM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEppEi) +STUB("40Ldv5RYfrI", WKPluginSiteDataManagerGetSitesWithData) +STUB("40NtJm4om0A", kldsym) +STUB( + "40NzVTw3gUE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEE7add_refEv) +STUB( + "40UClN+sTTQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEmmEv) +STUB( + "40WJrqMfW5U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEixEm) +STUB("40Wa2neSLM0", FT_New_Memory_Face) +STUB( + "40h4voKpWKI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE7popBackEv) +STUB("40iQek4o5ME", _ZN3WTF13printInternalERNS_11PrintStreamERKNS_10StringViewE) +STUB( + "40j-usQaBwE", + _ZN9Inspector33ApplicationCacheBackendDispatcher6createERNS_17BackendDispatcherEPNS_40ApplicationCacheBackendDispatcherHandlerE) +STUB("40j64VDDOVw", + _ZN7WebCore24CoordinatedGraphicsLayer17didChangeGeometryENS0_17FlushNotificationE) +STUB( + "40myMUnBnM8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE8capacityEv) +STUB("40pzekkxYAw", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersC2ERS5_) +STUB("4119tDJ1m6I", JSStringIsEqualToUTF8CString) +STUB("411l8u+aGo4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEED2Ev) +STUB("4164qgNnvv8", _ZN3sce2Np9CppWebApi6Common8IteratorIiEC1EPi) +STUB("416vjcKYsfo", glUniform2iv) +STUB( + "417J3H855-4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEC1Ev) +STUB("417JucZaE3g", _ZN3sce2np9RefObjectD2Ev) +STUB("419zeSm4NX0", _ZN7WebCore14StaticNodeListnwEm) +STUB("41AsKYHp-QM", + _ZN3sce2Np9CppWebApi14SessionManager2V123MemberWithMultiPlatformC1EPNS1_6Common10LibContextE) STUB("41CVMRinjWU", sceNpManagerIntGetNpIdSdk) +STUB( + "41CZbi0cT18", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEmmEv) +STUB("41DAwvtJO4w", _ZN3JSC22FullGCActivityCallbackC1EPNS_4HeapE) +STUB( + "41DMez0erGg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEC2Ev) +STUB("41F11lDW4dM", _ZNSt9_FacetptrISt8numpunctIwEE6_PsaveE) +STUB( + "41GQClPYCgY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE6resizeEj) +STUB("41HB-w-ddWE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEED1Ev) +STUB("41HGBvD2Fak", _ZN3sce2np14JsonNumberImplD2Ev) +STUB( + "41LwbZUiEq4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEC2ERS7_) +STUB("41Ny9FV0dHg", ures_openDirectFillIn) +STUB("41O00lD-QV4", _ZStL5spfunRSt8ios_basei) +STUB( + "41SCbMhrPkw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE10setContextEPNS2_10LibContextE) +STUB("41SqJvOe8lA", _FDunscale) +STUB("41XIke70jMw", _ZN7WebCore16convertToIntegerIsEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB("41ate1mmCjM", _closeSecondaryStream) STUB("41gDrpv1pTw", sceNpSetAdditionalScope) STUB("41kc2YhzZoU", sceUserServiceSetPadSpeakerVolume) +STUB("41mmriasMRc", + _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession8fromJsonERKNS_4Json5ValueE) +STUB("41mqfuenzj4", _ZN3sce2Np9CppWebApi6Common6String5clearEv) STUB("41q4BQrLOyM", sceNpEntitlementAccessPollConsumableEntitlementInfo) +STUB("41qbwcyFKBc", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_16NetStateDetailedEED2Ev) +STUB( + "41tdktSWVk0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEC2ERS7_) +STUB( + "41tnd+xLKsQ", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities13ErrorResponse8setErrorERKNS1_6Common12IntrusivePtrINS4_5ErrorEEE) +STUB( + "41u9csBgLxo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEED2Ev) +STUB("41uFpyfOR7s", _ZN7WebCore12JSTimeRanges9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("41x1hieiqCI", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetAccountId2OnlineIdC2Ev) +STUB("42+F4YDx7-4", bemp2sys_pesparser_release) +STUB( + "42-alsc7lB8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEmmEv) STUB("421cr+-5Mus", sceVideoOutGetHdmiMonitorInfoNoMask_) +STUB("42HcmdjlDmc", WKContextMenuItemGetChecked) +STUB("42JsosEueOQ", JSObjectMakeRegExp) STUB("42K0F17ml9c", sceUserServiceGetPbtcMondayHoursEnd) +STUB("42KSa1VES+E", mono_md5_final) +STUB( + "42KgBvyQMDM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEeqERKS9_) +STUB("42NQScvhE8o", _ZN12video_parser5vpcom11AtomicNop64EPy) +STUB( + "42R55riuS7k", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEplEm) +STUB("42RAcFre-RA", udat_getSymbols_67) +STUB( + "42Sfb4MQo1A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEppEv) +STUB("42WPLbCm5tk", _ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetail14setDisplayNameEPKc) STUB("42YkUouoMI0", scePthreadMutexSetspinloops) +STUB("42fR7c+qPuo", _Z32sceGpuDebuggerRegisterShaderCodePKN3sce3Gnm16PsStageRegistersEjPKc) +STUB("42nlgcQ5Rv8", _ZN9Inspector15InspectorTargetC2Ev) +STUB( + "42tdS4N6B6o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEE11release_refEv) +STUB("42u6gUWvUTg", WKContextConfigurationSetCookieStoragePath) +STUB("42v2N7UFeOE", _ZTVN12video_parser13cVideoPathMsvE) +STUB( + "42vFGzB1i9w", + _ZNK3sce2Np9CppWebApi14SessionManager2V128ResponseGameSessionSpectator6toJsonERNS_4Json5ValueEb) +STUB("42whUnOrDXg", + _ZN12video_parser20cVideoContentFactory22_createVideoContentMp4EPvPPNS_13iVideoContentE) STUB("42xMaQ+GLeQ", sceImeVshGetPanelPositionAndForm) +STUB( + "439ahXKpmCM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEEC1ERKSA_) +STUB("43B0VnF0P7E", _ZN3sce2np12NpTitleTokenD2Ev) STUB("43B0lauksLY", sceNpManagerIntGetTicketA) +STUB("43D-Qbm3Tos", _ZNK3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead13teamNameIsSetEv) +STUB("43EN7S3pLf4", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110ResultTypeEEC1Ev) +STUB( + "43GAFClJ-Ag", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi44ParameterToPatchGameSessionsSearchAttributesC1Ev) +STUB("43GG5UMdsJc", _ZN3sce7Toolkit2NP2V27Session7Request22GetReceivedInvitationsC1Ev) +STUB("43MESLndGvQ", _ZN3sce4Json5Array8iterator7advanceEm) +STUB("43MWqYNStHU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEEC1EPNS2_10LibContextE) +STUB( + "43O2OMxnMeg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEED2Ev) +STUB( + "43OM6nLDRpI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE8capacityEv) +STUB( + "43Oq5Wty5Ak", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEEC2ERKS9_) +STUB("43PYQ2fMT8k", _WStopfx) +STUB( + "43Rd4p4RhjI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEixEm) +STUB( + "43RfCvq5tdc", + _ZN3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBody8fromJsonERKNS_4Json5ValueE) +STUB( + "43V5peTgkCQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) STUB("43WJ08sSugE", sceAgcDcbWaitOnAddressGetSize) +STUB("43XXEXaONEQ", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEEC1Ev) +STUB( + "43e1+0XIC0I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "43hw9p2+7VI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEEC2ERSA_) +STUB( + "43i9KN2izZM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEC2EPS8_) +STUB( + "43iZhVMHUxk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEptEv) +STUB("43kV+5bJS-c", YGNodeGetBaselineFunc) +STUB("43mnfTQPCbw", hb_buffer_get_glyph_positions) +STUB("43rL1NB1S4I", _ZNK12video_parser5vpcom8datetime8DateTimeplERKS2_) +STUB("43u-nm1hQc8", _Ldbl) +STUB( + "43wP6TVRMPs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE5beginEv) +STUB( + "443MXrJ11sw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE21intrusive_ptr_add_refEPS9_) +STUB("444+v4xOtlA", WKPageLoadedSubresourceDomains) +STUB( + "446tDdFI7BM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEEC2ERSA_) +STUB("449uAhTZ1oc", + _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead19representativeIsSetEv) STUB("44FL0PIYP80", scePlayReadyCdmiDecryptMultipleOpaque) +STUB( + "44GzUmcmclo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEC1EPNS2_10LibContextE) +STUB( + "44LK0qMfmYo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEEcvbEv) +STUB("44NqyrtBMMk", _ZN3JSC27numberOfExceptionFuzzChecksEv) STUB("44PCVgTBBCw", sceShellCoreUtilIsKilledOrSuspendedByLogout) +STUB( + "44TwlT0ZO1o", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE5beginEv) +STUB( + "44WHEtGWQyU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEaSERKS9_) +STUB("44WhlN1JMFI", il2cpp_gchandle_get_target) +STUB( + "44XmCVZHc1M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEC2Ev) +STUB( + "44aq1JSf6Fs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEEaSERSA_) +STUB( + "44eTAf9s61U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEC1EPS8_) +STUB("44ekkJ11Dzc", __asan_stack_malloc_8) +STUB("44f4XR6IFVo", _ZN7WebCore21DiagnosticLoggingKeys27createSharedBufferFailedKeyEv) +STUB( + "44h7kOOwZ+s", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi15recordLargeDataEiRKNS4_47ParameterWithBinaryRequestBodyToRecordLargeDataERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_27RecordLargeDataResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("44hlATrd47U", posix_spawnattr_init) +STUB( + "44o3ylYGNQQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEEC1ERS9_) +STUB("44rCCk2fBaQ", + _ZN3sce2Np9CppWebApi7Matches2V120RemovedPlayerFactory7destroyEPNS3_13RemovedPlayerE) +STUB("44sDfIlDN4Y", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEE3getEv) +STUB( + "44u-aoel+t8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE5emptyEv) +STUB( + "44vO54zyfwM", + _ZN7WebCore17SubresourceLoader6createERNS_5FrameERNS_14CachedResourceEONS_15ResourceRequestERKNS_21ResourceLoaderOptionsEON3WTF17CompletionHandlerIFvONSA_6RefPtrIS0_NSA_13DumbPtrTraitsIS0_EEEEEEE) +STUB( + "44xCpFjczm8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEE3getEv) +STUB("44yS2Vg7cTo", + _ZN3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform11setPlatformEPKc) +STUB("44ygghy3b4E", WKDownloadGetOriginatingPage) +STUB( + "44zdIQHDcAQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEC1Ev) +STUB( + "450NUgxBpIE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEC2EPS8_) +STUB( + "458PyBG-vcY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE5eraseENS2_13ConstIteratorIS9_EERSC_) STUB("458yjI+OECI", sceNpUtilJidToNpId) +STUB("459Hq2z-2LU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEEixEm) +STUB("45E7omS0vvc", iswctype) +STUB("45F1hLWD8TU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEaSERS7_) +STUB("45Jm93Q-sHQ", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities5Error8fromJsonERKNS_4Json5ValueE) +STUB( + "45M4ITcSusA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEE11get_deleterEv) STUB("45M67FoqnUo", scePs2EmuMenuDialogGetStatus) +STUB( + "45NCCTwKOKw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEED2Ev) STUB("45PKa3aJnSw", sceNpSessionSignalingManualUdpJoin) STUB("45QrFvUkrjg", sceSystemServiceDisablePartyVoice) +STUB("45R8R4xDgOo", EVP_sha512) +STUB("45XFIt8UG6k", _ZN7WebCore12SharedBuffer6createEPKcm) STUB("45Yurf7lZmU", sceKernelAllocateToolMemory) +STUB( + "45dp7bBbxbA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE21intrusive_ptr_add_refEPS9_) STUB("45gE-Md7pGc", sceDtcpIpCancelActivate) STUB("45ggEzakPJQ", sceNetSocketClose) +STUB( + "45m6XhM1J6k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEC2ERKS7_) +STUB("45mqCXz5uqA", mono_aot_Sce_Vsh_VrEnvironmentplt_end) +STUB("45wjxz039z4", mono_aot_ReactNative_Vsh_Commonunwind_info) +STUB("45yMcIUmYUQ", _ZN3JSC7JSScope6toThisEPNS_6JSCellEPNS_14JSGlobalObjectENS_8ECMAModeE) +STUB("45z6WoZYP-A", _ZN7WebCore11RoundedRectC1ERKNS_10LayoutRectERKNS0_5RadiiE) +STUB("46+D3t4woE4", Java_com_sun_dvb_event_UserEventRegistry_keyCodeUnregistered) +STUB("462D3ipIoDk", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_20ChallengeRecvDetailsEE17getAdditionalInfoEv) +STUB("4649E4V9B-U", rgctx_fetch_trampoline_mrgctx_44_p) +STUB("464OLzpKUHs", _ZN7WebCore13TextIndicatorD2Ev) +STUB("4651HpFw2z0", mono_aot_I18N_Raremethod_addresses) +STUB("465db23M9Jo", _ZN23sceMetadataReaderWriter8Metadata8getFieldEiRSsRNS_5ValueE) +STUB("467YVSBcllE", _ZN3JSC7Symbols19toStringPrivateNameE) +STUB("46HN6HdESf8", mono_aot_System_Runtimeplt) +STUB( + "46NKeywVaZk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEED1Ev) +STUB( + "46QBdoO5+go", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEC1Ev) +STUB( + "46RGeLAySQk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEED2Ev) +STUB( + "46UGmhbbidE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEC2EPNS2_10LibContextE) +STUB("46Y8UjUJPK0", _ZN3WTF6Thread16registerGCThreadENS_12GCThreadTypeE) +STUB("46YOQvNCaHU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEaSERKS7_) +STUB( + "46YX6oW2aP4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("46bLh4C9Dio", _ZN7WebCore10JSDocumentD1Ev) +STUB("46haDPRVtPo", _ZTSSi) +STUB( + "46i6e7SFPeA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEdeEv) +STUB( + "46iThHANkoU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEptEv) +STUB("46mktH-IzbQ", _ZN12video_parser5vpcom3rtc21ConvertLocalTimeToUtcEPKmPm) +STUB( + "46ovVReyg94", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEppEi) +STUB( + "46wuHQi+9mw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEmmEv) +STUB("46yEGJfgnac", _ZN12video_parser13cVideoMetaMP414getChapterInfoERjPNS_11VpChapter_tE) +STUB( + "470kKfT0rBg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEEC1ERSA_) STUB("474Gw2f9zYw", sceFsTransactionCancel) +STUB("47B8y-Mqy78", EC_GROUP_new_by_curve_name) +STUB( + "47EougbkLbs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEplEm) +STUB("47H3Xt0ke9s", _ZN3WTF14AtomStringImpl11addSlowCaseERNS_10StringImplE) +STUB( + "47IiWKxJsFo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "47JlRwShq3M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEED2Ev) +STUB("47K1RAe-Oc4", mono_aot_ReactNative_Modules_Vsh_Gct_Telemetryunbox_trampolines_end) +STUB( + "47KxLwF9to4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEmmEv) +STUB("47OujMZvKOE", _ZN3JSC18GCActivityCallbackC2EPNS_4HeapE) +STUB("47RvLSo2HN8", _ZNSt8bad_castD1Ev) STUB("47S+J03eask", sceFaceShapeTrack) STUB("47UAEuQl+iI", sceNpUniversalDataSystemTerminate) +STUB("47WhLC3+uRA", _ZN7WebCore13MIMETypeCacheD2Ev) +STUB("47bs4XNAt0g", Java_java_io_RandomAccessFile_length0) +STUB("47cPqlN++CI", JVM_ConstantPoolGetFloatAt) STUB("47jR75uXOFs", sceDtcpIpOpenContentAsync) +STUB( + "47jWFqMl27I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE4sizeEv) +STUB("47lUe3tPqY0", _ZN7WebCore11DisplayList17FillRectWithColorD2Ev) +STUB( + "47pl9PVxGNk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB( + "47rPvIfhC18", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("47s0O9-6E-0", _ZNK3sce4Json5Value7getRootEv) +STUB("47uOi6A35Nk", mono_get_single_class) +STUB( + "47xcpNf0Ry8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEEdeEv) STUB("48+pt04Ko4A", sceNpUniversalDataSystemIntRecordArraySetInt32) STUB("48-miagyJ2I", sceAudioInDeviceOpenEx) +STUB("4811NeEERqs", _ZN3NTF17URLRequestHttpJobC2Ev) +STUB( + "484E33Xci1I", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("484wyluLvuc", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsD2Ev) +STUB( + "487ptKXbF-8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEE11release_refEv) +STUB("488namPY+tQ", _ZNK9Inspector14ConsoleMessage7messageEv) +STUB("489c-YAqtqQ", u_getFC_NFKC_Closure_67) +STUB("48Bh7rcKtuY", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getBoolean7Ev) +STUB("48CUM9ft8Ns", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ChildActivityAvailabilityEEmmEv) +STUB( + "48CuE-yZMTM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE4sizeEv) +STUB("48F2MuYRtP8", _ZThn16_N9Inspector21InspectorConsoleAgent7disableERN3WTF6StringE) +STUB( + "48I0JlCIR3Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEE3getEv) +STUB( + "48UlDlmaidQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("48WiSdjl-uQ", _ZN7WebCore23ISOSchemeInformationBox5parseERN3JSC8DataViewERj) +STUB("48Z12OPcEag", __remainder) +STUB("48cD6hKl8VQ", g_file_test) +STUB("48hqfJY4ZT0", _ZN7WebCore28BackingStoreBackendCairoImplD1Ev) STUB("48qKr9oyIbQ", sceMbusConvertToLocalDeviceId) +STUB("48qqauT8IDk", JVM_DTraceActivate) +STUB("48rKLK1urQE", il2cpp_image_get_filename) +STUB("48sw7nusiXs", _ZNK3WTF6String11toIntStrictEPbi) +STUB("48t7NHsyEsk", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V113ErrorResponse6toJsonERNS_4Json5ValueEb) STUB("48ujxTli9ao", sceCesUtf16leToSJis) +STUB("48vx--WiBLU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEC1Ev) +STUB( + "48xOTJNKul0", + _ZN7WebCore12SharedBuffer6createEON3WTF6VectorIcLm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("48xaakU1ajk", _ZN3sce2Np9CppWebApi12Leaderboards2V15Entry21unsetRecordedDateTimeEv) +STUB( + "49+g+EYEvf8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEE7get_refEv) +STUB("490GyRIQAu0", _ZN7WebCore18TextureMapperLayer14setAnchorPointERKNS_12FloatPoint3DE) +STUB( + "490JpNaqsAs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEaSERKS7_) STUB("496OAXH9THg", sceVideoRecordingGetSupportInfo) +STUB("497YSTC2NTI", _ZN3sce7Toolkit2NP2V212EventsClient11EventInGameC2ERKS4_) +STUB( + "49BVdNq003o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEE7get_refEv) +STUB("49G9TmtmutI", uhash_initSize) +STUB("49GAz4KpvyA", JSValueGetTypedArrayType) +STUB( + "49OOE6mYknw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "49OXX2p1dVQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEC1Ev) +STUB("49SRuYkw6kI", getloadavg) +STUB("49W0007WCSc", _ZN7WebCore18TextureMapperLayernaEmPv) +STUB( + "49ZmkMSvEow", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE5clearEv) +STUB("49buAkN3HZI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEE7add_refEv) +STUB("49fw9U8URo4", g_GlobalDataPoison) +STUB( + "49hB1EObbfA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "49kLX6jffbc", + _ZN3sce2Np9CppWebApi14SessionManager2V157PostGameSessionsSessionIdSessionMessageRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_50PostGameSessionsSessionIdSessionMessageRequestBodyEEE) +STUB( + "49l7T-LljeI", + _ZN3sce2Np9CppWebApi14SessionManager2V130MemberWithMultiPlatformFactory7destroyEPNS3_23MemberWithMultiPlatformE) +STUB( + "49oqCKfJRyo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE8pushBackERKS8_) +STUB( + "49tH6OfdmOo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE4termEv) +STUB( + "49woOumLCHw", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V314MissingElementC2EPNS1_6Common10LibContextE) +STUB( + "49zLKEO-dZM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEC1Ev) +STUB("4A-G9UeZp5k", _ZN7WebCore11DisplayList14ConcatenateCTMD1Ev) +STUB( + "4A0KRyXDmQE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEE11release_refEv) +STUB("4A9ALSrfr7k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEEC2EPKS6_) STUB("4AAcTU9R3XM", scePlayGoSetInstallSpeed) +STUB("4ABedbtz7GE", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEEdeEv) +STUB( + "4AFThLW28xQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEED1Ev) +STUB("4AIjdLthswQ", + _ZN9Inspector17ScriptDebugServer27dispatchBreakpointActionLogEPN3JSC9ExecStateERKN3WTF6StringE) +STUB("4AJahaAsmhM", _ZN3JSC7Symbols21instanceOfPrivateNameE) +STUB("4ALhrxFo5Gk", JVM_DefineClassWithSource) +STUB( + "4ANCdHsrKaA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEE3getEv) +STUB("4AO3zU38Gd8", _ZN3WTF6String6appendEh) STUB("4AP0X9qGhqw", sceHmdInternalSetM2LedBrightness) +STUB("4ARueaFcXXA", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110TaskStatusEEdeEv) +STUB( + "4AVnysOJvFU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE10setContextEPNS2_10LibContextE) +STUB( + "4AXXNpU2hCE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEneERKS9_) +STUB("4AYAkSLP2rU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEdeEv) +STUB("4Ab3tEoXZAo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEE7add_refEv) +STUB( + "4AbrcjZu+mA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEC2Ev) +STUB("4AeMF+7VG38", _ZN3JSC14SourceProviderD0Ev) +STUB( + "4AmW-ARsRpY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEEcvbEv) +STUB( + "4AokO9oEBKE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEEC1EPS8_PNS2_10LibContextE) +STUB( + "4Ap73-666mU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEE7add_refEv) +STUB("4Argi6cCJow", _ZN3sce7Toolkit2NP2V27Session7Request4JoinC2Ev) +STUB("4AzDMjaSMI4", + _ZNK7WebCore27TranslateTransformOperation5applyERNS_20TransformationMatrixERKNS_9FloatSizeE) +STUB("4B+XIBeq0kw", _ZN3JSC7Symbols16shiftPrivateNameE) +STUB("4B-lI3nzKgw", _ZN7WebCore15JSSVGSVGElement11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB( + "4B2rjkpduJY", + _ZN3sce2Np9CppWebApi7Matches2V126CreateMatchResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_19CreateMatchResponseEEE) +STUB("4B3n3+l+wMo", rgctx_fetch_trampoline_rgctx_83) +STUB( + "4B4bXOgIKYE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB("4B7BVVH0nds", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEEC2ERS7_) +STUB( + "4B7ym4T2euw", + _ZN3sce7Toolkit2NP2V24Core16terminateServiceERKNS3_7Request16TerminateServiceEPNS3_8ResponseINS3_5EmptyEEE) +STUB("4B871WWhFkY", coil_clock_gettime) +STUB("4B9olYHnHnQ", png_set_bKGD) STUB("4BAhDLdrzUI", sceFontFtSupportTrueType) +STUB("4BAhWOEnY4M", _ZN7WebCore8Settings44setHiddenPageDOMTimerThrottlingAutoIncreasesEb) +STUB("4BBiN3LsIDg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge13ChallengeDataEED1Ev) +STUB("4BERqYMNCNU", BN_sub_word) +STUB("4BFLpxNpLtk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEaSERKS9_) +STUB( + "4BGzlWzaF+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEED2Ev) +STUB( + "4BIhuisjsnM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEED1Ev) +STUB("4BJDyylvnE4", mono_aot_Sce_Vsh_EventAppunbox_trampolines) STUB("4BJEqF66ONc", _sceLibcLockInitialize) +STUB( + "4BNauKMReyA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEED1Ev) +STUB( + "4BODj8Tr9ZY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("4BTYS80wlsQ", _ZN3sce7Toolkit2NP2V24Core7Request16TerminateServiceC1Ev) +STUB("4BUuvbmiXWs", uhash_open) +STUB("4BWlQLirVAA", WKBundlePageSetDiagnosticLoggingClient) +STUB( + "4Ba6a5Um83c", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEneERKS9_) +STUB("4Bau4ZHasmo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEED2Ev) +STUB("4Bc9qxY6JOw", mono_profiler_install_class) +STUB("4BcFLyk6Chg", _ZTV25MmsFileUpdaterFsOperation) STUB("4BlE4IPXP0Q", sceHmd2GetDeviceInformationByHandle) STUB("4BlZurolOAo", sceAudioOut2GetSpeakerArrayCoefficients) +STUB( + "4BuSGeES6pA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEC2EPNS2_10LibContextE) +STUB("4BuSoL+GHSE", png_set_filter) +STUB("4Bvq8TB95oA", _ZNK7WebCore9FrameView17useDarkAppearanceEv) +STUB( + "4ByzwBWhM3s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEE5resetEPS9_) +STUB( + "4BzRHCb6hg8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE10setContextEPNS2_10LibContextE) +STUB("4BzqFCefFtM", _ZN3sce7Toolkit2NP2V28Commerce9Container5resetEv) +STUB("4C5ObvulD3I", cairo_matrix_translate) +STUB("4C6UJHi60zI", mono_aot_Sce_Vsh_SystemLoggerUtilWrapperjit_got) +STUB("4C7We-mJFQI", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessionsD1Ev) STUB("4C8BBKCcM6A", sceCompositorSetFilterType) +STUB( + "4C8gNu-61t4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEppEv) +STUB("4CD5YSD9fvg", _ZNK7WebCore16HTMLInputElement15suggestedColorsEv) +STUB( + "4CPuhJiw9tA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEC1Ev) +STUB("4CVc6G8JrvQ", _Atomic_flag_clear) +STUB("4CWz9cxy2-0", _ZN3sce2Np9CppWebApi7Matches2V116RequestMatchTeam8fromJsonERKNS_4Json5ValueE) +STUB( + "4CZ7uqiUCzY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEC1Ev) +STUB("4Cfh-pnfsco", _ZN7WebCore17HTMLOptionElement8selectedEv) +STUB("4Chwxhh9oyE", mono_aot_appunbox_trampoline_addresses) +STUB("4CiIyjuiGiE", _ZN9Inspector18InspectorHeapAgentnwEm10NotNullTagPv) +STUB( + "4ClN4aYoaK0", + _ZN7WebCore44computeMinimumScaleFactorForContentContainedERKNS_18ViewportAttributesERKNS_7IntSizeES5_) +STUB( + "4Cpgz2gDAYQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "4CqeiXE9YkU", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEEiRNS2_21DownStreamTransactionIT_EE) STUB("4CqfNm3pisU", sceNpUtilGetWebTraceSetting) +STUB( + "4CtfVM9lLZ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEEC2Ev) STUB("4CzZUVleMcE", sceShellCoreUtilNotifyFarsightUIDone) +STUB("4D+ibdbZrhQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE5beginEv) +STUB("4D00o5x9qrg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEC2ERS7_) +STUB( + "4D0evDfSz2U", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE5eraseENS2_8IteratorIS6_EERS9_) +STUB("4D43aF6t+xE", mono_aot_Sce_Vsh_FileSelectorAdvancejit_code_start) STUB("4D9Dog+o+cg", sceDeci4hDrfpClosedir) +STUB("4DC5IwRCIcI", mono_aot_ReactNative_Modules_Vsh_Gct_Telemetry2jit_got) +STUB("4DE+nnCVRPA", _ZN3sce2np9WorkQueue4StopEv) +STUB("4DEzfatKlS0", _ZN7WebCore23DeferredStylePropertiesD2Ev) +STUB( + "4DFuFsIr-JA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEC1Ev) +STUB("4DJ49tOuOQc", _ZNK7WebCore12ChromeClient27createDisplayRefreshMonitorEj) +STUB("4DKuyN5inxQ", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V117ConnectionQualityC2EPNS1_6Common10LibContextE) +STUB( + "4DLxEa3BNY0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEEdeEv) STUB("4DM06U2BNEY", sceKernelCancelSema) +STUB("4DMpPzLN8V8", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V114ResultsVersionEEptEv) +STUB("4DYQZqufDdI", + _ZNK7WebCore22SkewTransformOperation5applyERNS_20TransformationMatrixERKNS_9FloatSizeE) +STUB( + "4DhGHHZbPhk", + _ZN3sce2Np9CppWebApi7Matches2V133RequestTeamMemberStatisticFactory6createEPNS1_6Common10LibContextEPKcRKNS5_6VectorINS5_12IntrusivePtrINS3_19AdditionalStatisticEEEEEPNSB_INS3_26RequestTeamMemberStatisticEEE) +STUB( + "4DmFe+YxOt8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEptEv) +STUB("4Dp8cC4noCs", _ZN7WebCore8Settings38setHiddenPageDOMTimerThrottlingEnabledEb) STUB("4E+7+mWiRuA", sceNpSnsDailymotionDialogTerminate) +STUB("4E+BWsisyyE", mono_aot_Sce_Vsh_Messages_DbAccessLibunbox_trampoline_addresses) +STUB("4E-foFz4xFA", YGNodeStyleGetAlignItems) +STUB("4E3QY4FpyPs", mono_aot_Sce_Vsh_VideoFramework_Platformunbox_trampolines_end) +STUB("4EFg8xX72y4", + _ZThn24_N9Inspector22InspectorDebuggerAgent17setOverlayMessageERN3WTF6StringEPKS2_) +STUB( + "4EIq+L2sMM8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE6resizeEj) +STUB("4EeL6RsrWs0", mono_perfcounters_init) +STUB("4EefIMYCqjM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEE7get_refEv) +STUB( + "4EgB2myNw30", + _ZN9Inspector25DebuggerBackendDispatcher16removeBreakpointElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("4Ej8DQ4dEKU", _ZN12video_parser18cMp4FFLHndlManagerD1Ev) +STUB("4EkPKYzOjPc", _ZNSt8ios_base6_IndexE) +STUB( + "4EkTIw+Cg-o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "4EkiThR+-0o", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE21intrusive_ptr_add_refEPS7_) +STUB( + "4EthPpYHA6Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEC2ERS7_) +STUB("4Eur8eZ9By0", _ZN7WebCore24CoordinatedGraphicsLayer37selfOrAncestorHaveNonAffineTransformsEv) +STUB( + "4EwX43ywdpc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEEC1Ev) +STUB( + "4Ez9WBSasHk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE5emptyEv) +STUB("4EzrAohwbaI", _ZNK7WebCore20ResourceResponseBase18cacheControlMaxAgeEv) +STUB("4F-9eVaDVCc", _ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForReadD2Ev) +STUB("4F-Zlt62BWM", ucsdet_open_59) +STUB("4F11tHMpJa0", _Strerror) STUB("4F7uYHxulZ4", sceDbgAmprAprGetNumberOfErrors) +STUB("4F9pQjbh8R8", _Fwprep) +STUB("4FFsFmw5Qg0", _ZNK3WTF3URL15encodedPasswordEv) +STUB("4FH5hyIXo9k", cairo_rotate) +STUB( + "4FR0WyuPqTo", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicket10initializeEPNS1_6Common10LibContextEPKc) +STUB("4FTNJKyJYaE", _ZN3JSC8FreeList14initializeBumpEPcj) +STUB( + "4FU0PW3IvMo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEED2Ev) STUB("4FUZ+c52d2k", sceBluetoothHidRegisterDevice) +STUB("4FW9T-ft3fk", YGConfigIsExperimentalFeatureEnabled) +STUB( + "4FX3wmDo3Sc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEppEv) +STUB("4Fa+ZmJ8qn4", ucnv_getInvalidUChars) +STUB( + "4FaJEcEJ14Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEC1EPS8_) +STUB( + "4Fj212IzDog", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEC1EPKS8_) +STUB( + "4FjwWTSjtf8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEC2Ev) +STUB("4FkTHj5YRdY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE3endEv) +STUB( + "4FkbTKpwCCs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEppEv) +STUB("4FmDzhnUF+4", RSA_padding_add_PKCS1_PSS_mgf1) +STUB("4Fn5bmVcmS8", + _ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_33ActivityFeedSharedScreenshotStoryEE8max_sizeEv) +STUB("4Fp5Pq1VTWs", _ZN3WTF9MediaTimenwEmPv) +STUB("4FrZfvvYHCI", u_strToLower) STUB("4Fu8tHW+u-k", sceNpUniversalDataSystemEventPropertyObjectSetFloat64) +STUB( + "4G0kLEJlmV8", + _ZN3sce2Np9CppWebApi11Matchmaking2V130SubmitTicketRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_23SubmitTicketRequestBodyEEE) STUB("4G37EIMMD+Q", sceVideoOutSysUpdateRenderingMode) +STUB( + "4GDCgaMIhh0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEEC1ERSA_) +STUB( + "4GGmSKYOnhY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEneERKS9_) +STUB("4GN2t+VJdx8", _malloc) +STUB( + "4GW5a4NdD1Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEED2Ev) +STUB( + "4GWvJ2HQq4A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEC2EPNS2_10LibContextE) +STUB("4GWw35CYKmM", mono_btls_x509_get_version) +STUB("4GZ9O-OrfzE", _ZN3sce2np3ipc17ServiceIpmiClient13WaitEventFlagEijmjPmj) +STUB("4GbIwW5u5us", _ZNSt13basic_ostreamIwSt11char_traitsIwEE6sentryC2ERS2_) +STUB( + "4GdlGMgWm2Y", + _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest15setMatchResultsERKNS1_6Common12IntrusivePtrINS3_28RequestTemporaryMatchResultsEEE) +STUB("4Gj1pCDEEFk", _ZN7WebCore16ISOSchemeTypeBoxD2Ev) +STUB("4Gv3tXZ2WKI", UCNV_FROM_U_CALLBACK_SUBSTITUTE) +STUB("4H0RvhaJttI", _ZN8meta_gen17CommonFsOperation13storeFileSizeEl) STUB("4H0h0tPjIk0", sceNpSnsYouTubeDialogClose) +STUB("4HD3KMh8YCU", _ZN7WebCore7Element18getAttributeNodeNSERKN3WTF10AtomStringES4_) +STUB( + "4HNBB20jqbg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "4Hc4bem8Fbg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("4Hdxc1OeY5I", ures_openNoDefault_67) +STUB( + "4Hg+jQhxFec", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeaders7destroyEPS5_) +STUB("4HjgsN0kYF8", uloc_countAvailable_59) +STUB( + "4HzG95oFtnA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEC1Ev) +STUB("4HzS6Vkd-uU", CA_MGMT_extractAllCertDistinguishedName) +STUB("4I0nA7IwpiQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEC1ERKS7_) +STUB( + "4I1lhC6dTlo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("4I62ddmPmbk", _ZN4IPMI4impl11SessionImpl19destroyAsyncContextEi) STUB("4I8vEpuEhZ8", sceHttpDeleteTemplate) +STUB( + "4ICTnIU8HqI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) STUB("4IGO2LPD3h8", sceCameraGetCalibDataForEve) +STUB( + "4IL5xRHsn4A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEED1Ev) +STUB("4IQX82B-Kc4", _ZN4Manx11MediaPlayer11bytesLoadedEv) +STUB("4ISBwqOsxVU", _ZN3JSC12HeapCellTypeC1ENS_14CellAttributesE) +STUB("4ITASgL50uc", lroundl) STUB("4IXuUaBxzEg", sceUserServiceGetGlsIsRecDisabled) +STUB("4IdW0jsDZ5o", _ZN7WebCore14JSVoidCallbackD2Ev) +STUB( + "4Im6j3SAWTs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEED2Ev) STUB("4IsRgjK5hsU", sceVideoCoreInterfaceCloseVideoOut) STUB("4IzqhhUQ3nk", sceNpTrophy2GetGameInfo) STUB("4J2sUJmuHZQ", sceKernelGetProcessTime) +STUB("4J30z4XNd+g", JNU_CallStaticMethodByName) STUB("4J3Z9DzaMzs", sceLoginMgrServerInitialize) +STUB("4J3mlRvzOx4", _ZN3sce7Toolkit2NP2V29Messaging12Notification16NewInGameMessage8deepCopyERKS5_) +STUB("4J4Baf8ana8", FT_Stream_Skip) +STUB( + "4J4ZkKKJj1o", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("4J4dpH41fqw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEED1Ev) STUB("4J5F23VgTjY", scePlayerReviewDialogUpdateStatus) +STUB( + "4JFcmjoj9NM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEED2Ev) +STUB("4JGDOwffWGU", + _ZN3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinition9setfieldsEPKc) +STUB("4JHNLE2ozhw", rgctx_fetch_trampoline_rgctx_48_p) +STUB("4JJDz6r-ghE", res_getIntVectorNoTrace) +STUB( + "4JL6Mbrv2QQ", + _ZN3sce2Np9CppWebApi14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyC2EPNS1_6Common10LibContextE) +STUB( + "4JQDvkemZlw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEeqERKS9_) +STUB("4JQd7jBog-8", + _ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends16setaccountIdOrMeEPKc) +STUB("4JbUh2qCzpY", _ZN3WTF23dayInMonthFromDayInYearEib) +STUB( + "4JbrfuExpew", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEC1ERS7_) +STUB( + "4Jc2cNu1Rj0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEED2Ev) STUB("4JhGC2hqQ48", sceDeci4hDrfpFchstat_fuse) +STUB("4JiFsEs9Yyw", WKPreferencesSetFetchAPIEnabled) +STUB("4JkbUUO-yHM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEC1ERKS7_) +STUB("4JokRSwYf8M", + _ZN3sce2Np9CppWebApi7Matches2V122RequestMatchStatistics8fromJsonERKNS_4Json5ValueE) +STUB( + "4JqYox5PyQk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE8pushBackERKS8_) +STUB( + "4JxCiTeYbDk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEaSERKS7_) +STUB( + "4K4+gNU7mis", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("4KAVeWKx490", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfoaSERS5_) +STUB("4KBGa9y8xro", _ZN3sce7Toolkit2NP2V23TUS7TusDataC2Ev) +STUB("4KFFUT-5pM8", _ZN3WTF10fastStrDupEPKc) +STUB( + "4KIXyxRA+Kg", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V113ErrorResponseC1EPNS1_6Common10LibContextE) STUB("4KIjvAf8PCA", sceHmdInternalSetIPD) +STUB("4KKKN2LPnew", _ZN13MsvMetaEditor13updateTrafBoxEi) +STUB("4KL6iEYFfts", u_fprintf_u_67) +STUB( + "4KMFl+GqXlo", + _ZN3sce7Toolkit2NP3TSS9Interface13getDataStatusEPNS1_9Utilities6FutureI18SceNpTssDataStatusEERKNS1_23TssGetStatusInputParamsEb) +STUB("4KNZgER6re0", + _ZN7WebCore19InspectorController15connectFrontendERN9Inspector15FrontendChannelEbb) +STUB( + "4KOlIde0dI8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "4KP1a-3jMjw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEmmEv) +STUB( + "4KQp8WpX3oc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEC1EPKS8_) +STUB("4KRyNe79gGI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEEC1EPS6_) +STUB("4KSA6cZz4WE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEEC1ERKS7_) +STUB( + "4KXyfrEOhq0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEptEv) +STUB("4KY0luF+mAk", + _ZN7WebCore16JSXMLHttpRequest15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB("4KcC+IEgQ48", _ZN7WebCore17NowPlayingManagernaEmPv) +STUB("4KcyXY60l9U", + _ZN3sce2Np9CppWebApi14SessionManager2V113PlayerSessionC2EPNS1_6Common10LibContextE) +STUB("4Keqp+75Nb0", mono_aot_Sce_Vsh_Orbis_Bgftjit_got) +STUB("4Kf0Hy8xJrI", u_charMirror) STUB("4Kgi9D47mC8", sceFiosGetAllFHs) +STUB( + "4KkHjimkN1M", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE5emptyEv) +STUB("4KvJmQu4hmo", _ZN3sce7Toolkit2NP2V23TUS15TusDataStatusesC2ERKS4_) +STUB("4KwR0LMkMQQ", mono_aot_System_Runtimejit_got) +STUB("4Ky3U3sFEws", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEC2ERS7_) +STUB( + "4L1O43wl4hk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEE3getEv) +STUB("4L3U7xeQZqI", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V19RatingApi21ParameterToPostRatingD1Ev) +STUB("4L8CUrnHS2s", _ZN3sce7Toolkit2NP2V210Tournament12GenericEventC2ERKS4_) +STUB( + "4LDIY8J3Y7Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "4LFb2ce6BJI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB( + "4LNB3hNnNvc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("4LPi8JtvxYQ", WKMouseEventMake) STUB("4LSXsEKPTsE", sceGnmDriverInternalRetrieveGnmInterfaceForGpuDebugger) +STUB("4LY5pyZ5IQk", FT_Lookup_Renderer) +STUB( + "4LhVkRVRL4w", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEneERKS9_) +STUB( + "4LlJl8jv+2Y", + _ZN7WebCore13TextIndicator15createWithRangeERKNS_11SimpleRangeEN3WTF9OptionSetINS_19TextIndicatorOptionEEENS_35TextIndicatorPresentationTransitionENS_9FloatSizeE) +STUB("4Lq+4mBCicA", _ZN7bmalloc6IsoTLS8scavengeEv) +STUB( + "4M+tXW+N0+M", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB( + "4M-Kc9iP+8A", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE8capacityEv) +STUB("4M5OQvD2uE8", glRenderbufferStorageMultisample) STUB("4M7UYhGTlqk", sceUlpMgrUnregisterProtocol) +STUB( + "4M9hIrGyOyU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEED1Ev) +STUB("4MD3949sSc0", _ZN3sce7Toolkit2NP2V23TUS7Request16TusVariableInputC1Ev) +STUB( + "4MHN6x-5U8Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEC1Ev) +STUB("4MHgRGOKOXY", + _ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE5_InitERKSt8_Locinfo) STUB("4MJA9iZyYQs", sceCesUcsProfileInitIso2022JpCp50221) +STUB("4MKwMaZw7wU", _ZN7WebCore9HTMLNames9valueAttrE) +STUB("4MLq+nXcg1A", _ZN7WebCore12EventHandler15sendScrollEventEv) +STUB( + "4MQyZyDI+K4", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions13isInitializedEv) +STUB("4MR1gw+ffTs", glUniformMatrix3x2fv) +STUB("4MaYEBu4bw4", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersaSERS5_) +STUB("4MaZZrV8E6I", _ZN3WTF8JSONImpl5ValueC2Eb) +STUB("4Mbb6GJcxos", + _ZN9Inspector24WorkerFrontendDispatcher25dispatchMessageFromWorkerERKN3WTF6StringES4_) +STUB("4MdGVqrsl7s", _ZNSt14numeric_limitsIlE8digits10E) STUB("4MgRw-bVNQU", sceGnmUpdatePsShader) +STUB("4Mi-U60dbHQ", Java_sun_awt_DownloadedFont_getFontFamily) STUB("4Ml2G-TSCho", sceFiosSetThreadDefaultOpAttr) +STUB("4Mm-D4wuWxg", _ZN3JSC4Yarr17RegularExpressionnwEm10NotNullTagPv) +STUB( + "4MqJ-esHA34", + _ZThn16_N9Inspector21InspectorRuntimeAgent12awaitPromiseERKN3WTF6StringEPKbS6_S6_ONS1_3RefINS_31RuntimeBackendDispatcherHandler20AwaitPromiseCallbackENS1_13DumbPtrTraitsIS9_EEEE) +STUB("4MrcByJivI0", mono_aot_Sce_Vsh_Messages_DbAccessLibunbox_trampolines_end) +STUB( + "4MuLwBniwNY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEC1Ev) +STUB( + "4MuX-QttYv8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEC1Ev) STUB("4Mv9OXypBG8", sceGnmFindResourcesPublic) +STUB("4N5OJ0irX88", _ZNK7WebCore17FrameLoaderClient29shouldAlwaysUsePluginDocumentERKN3WTF6StringE) +STUB("4N6ifdTOfoM", SHA1_Init) +STUB("4NEtN1HiWHo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEE11release_refEv) +STUB( + "4NFZWopPA1E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEppEi) +STUB( + "4NI-FQ1donM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE3endEv) +STUB( + "4NLqQtj91kU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEptEv) +STUB( + "4NMtRgUdEe4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEEaSERSA_) +STUB("4NOQobqQH80", + _ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_17DOMMatrixReadOnlyE) STUB("4NQp4ipWbxA", sceSdecGetVersionSw2) +STUB("4NRMzOTXERA", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15CategoryInfoSubEEeqERKS4_) +STUB("4NSTmO+Huf8", mono_aot_Systemjit_got) +STUB("4NSxjyMl-ho", PEM_read_X509) +STUB( + "4NZhBGxv9kQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEED2Ev) +STUB("4NfiJyJk378", _ZN3sce7Toolkit2NP19ActivityFeedRequestC1Ev) STUB("4Nj7u5B5yCA", sceNpMatching2RegisterLobbyEventCallback) +STUB( + "4NrGFtxm5Hk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEneERKS9_) STUB("4NrufkNCkiE", sceNpTusSetData) +STUB("4NsbNbRkUiM", WKWebsiteDataStoreSetStatisticsMergeStatistic) +STUB("4Nt5lRs-4O0", __ubsan_handle_pointer_overflow) +STUB("4O04WQLW-7M", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy15TrophyPackGroupEED1Ev) +STUB( + "4O2-qy0kais", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE7reserveEi) +STUB("4O5nOHJbhIE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEE11release_refEv) STUB("4O7+bRkRUe8", sceSslGetAlpnSelected) +STUB("4O8lYvForpk", _ZN3sce2np9NpTitleId5ParseEPS1_PKc) +STUB( + "4OAdeG0XB-Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE21intrusive_ptr_sub_refEPS9_) +STUB("4OEZ2m7YTOU", _ZN3JSC7Symbols15testPrivateNameE) +STUB("4OP5nRRVDGw", _ZN12video_parser20cVideoContentFactory21_createFFLInstanceMp4EPKcPPvb) +STUB("4OP5qoYLgE0", _ZN7WebCore15makeSimpleRangeEPKNS_5RangeE) STUB("4OPOZxfVkHA", sceSaveDataCheckIpmiIfSize) +STUB( + "4OUV+UGy8jQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEplEm) +STUB( + "4OW0JqyuKAo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEE5resetEPS8_) +STUB( + "4OWGyDLxOLo", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessionsaSERS5_) +STUB( + "4ObRSg3I4WY", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V122NatConnectivityFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_15NatConnectivityEEE) +STUB( + "4Od8GrNR1Ko", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEE11get_deleterEv) +STUB("4OfCzdRhS-0", _ZN3sce7Toolkit2NP2V28Commerce14ProductDetails13IMAGE_URL_LENE) STUB("4OqKr5iYCqI", sceDbgMapperVirtualQuery) +STUB("4OtUd9pr7eM", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V112TicketStatusEEptEv) +STUB( + "4Oy+6MTN9Hg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEC2EPNS2_10LibContextE) STUB("4P1e01mbenA", sceKernelGetProcessTypeOfBudget) +STUB( + "4PAGNwqOS9c", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "4PD9lX1KCrc", + _ZN7WebCore21ComplexTextControllerC2ERKNS_11FontCascadeERKNS_7TextRunERN3WTF6VectorINS7_3RefINS0_14ComplexTextRunENS7_13DumbPtrTraitsISA_EEEELm0ENS7_15CrashOnOverflowELm16EEE) +STUB( + "4PEvsQmAXgE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE21intrusive_ptr_add_refEPSA_) +STUB("4PGgsQ-d8TI", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container16unsetDescriptionEv) STUB("4PKnYXOhcx4", sceGnmGetResourceBaseAddressAndSizeInBytes) +STUB("4PL4SkJXTos", _ZNSt14_Num_ldbl_base8is_exactE) +STUB( + "4PMDEa3OnrY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEE11release_refEv) +STUB( + "4PO5nODsF2M", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE4initEv) +STUB("4PQ+-MoYPRw", _ZN9Inspector27InspectorFrontendDispatchernwEm) STUB("4PTzGjEmkXI", sceCompositorMakeCanvasHandle) +STUB( + "4PZ6VafI6aw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEC1Ev) +STUB( + "4Pa5+RsdykQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEC2EPKS8_) STUB("4Pd0g-lGEM0", sceShellCoreUtilSetIDUMode) +STUB("4Pd54jvwVhY", glFrontFace) +STUB( + "4Pf8EXsGGxk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEC2Ev) +STUB("4Pifh-GDFbw", _ZN3JSC9JSWeakMap6s_infoE) +STUB( + "4PkHgokcA7I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEC1EPKS8_) +STUB( + "4Pt3ff0XTR8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE5emptyEv) +STUB("4Q-cHxss7tc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEEC1ERS5_) STUB("4Q11W4M2h5Q", sceHmd2ReprojectionTerminate) +STUB( + "4Q279D12zgM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE5beginEv) +STUB("4Q3EVWDe1nA", _ZN7WebCore11DisplayList14DrawingContext26setTracksDisplayListReplayEb) +STUB("4Q7i2DOeKL8", _ZN3sce7Toolkit2NP2V24Core7Request11AddCallbackC2Ev) STUB("4Q8db4pIRV0", pthread_single_np) +STUB("4QJGnd5dWAw", mono_aot_Sce_PlayStation_Imejit_got) +STUB( + "4QQJWsNMKaY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("4QR4+cugEx4", ucnv_extSimpleMatchToU_67) +STUB("4QUw1EzZa8o", mono_aot_Sce_Vsh_SysfileUtilWrapperunbox_trampoline_addresses) +STUB("4QWuNF91U9M", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V18PlatformEEppEv) +STUB("4QXiWC+ejP0", _ZN7WebCore24charactersAroundPositionERKNS_15VisiblePositionERiS3_S3_) +STUB( + "4QXwaTaj-c8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE28getResponseInformationOptionEv) STUB("4QYFwC7tn4U", sceNpTrophySystemGetDbgParamInt) +STUB( + "4QmI+wnwQs4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEppEv) +STUB( + "4Qn1ujWQLUQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEdeEv) +STUB("4QrIS2z8+EI", jpeg_consume_input) +STUB("4QrXjQcjo8w", GCC_except_table18) +STUB("4QroZY-ja3w", nn_close) +STUB( + "4QwOhK9FArE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEixEm) +STUB("4QwxZ3U0OK0", _Do_call) +STUB( + "4QxNgRHjPyY", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEEiRNS2_10LibContextEPT_m) +STUB("4QzvMaxdGlw", _ZNK7WebCore8Settings28iceCandidateFilteringEnabledEv) +STUB("4R-GfKM0GGs", _ZN7WebCore9HTMLNames9strongTagE) +STUB( + "4R4azVETFZ0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEE7get_refEv) +STUB("4R5DWBzSrag", + _ZN7WebCore24DeprecatedGlobalSettings45setShouldRespectPriorityInCSSAttributeSettersEb) STUB("4R6-OvI2cEA", sceKernelAddUserEvent) +STUB( + "4RFvNRp0fAY", + _ZN7WebCore15JSDOMWindowBase19moduleLoaderResolveEPN3JSC14JSGlobalObjectEPNS1_9ExecStateEPNS1_14JSModuleLoaderENS1_7JSValueES8_S8_) +STUB( + "4RJKYGHkeeE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEE5resetEPS9_) +STUB( + "4RMgzbWivYo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE21intrusive_ptr_add_refEPS9_) +STUB("4RRjK-Wd1lU", FT_Outline_Get_Bitmap) +STUB( + "4RVFD7F8+pQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEC1EPS6_PNS2_10LibContextE) +STUB("4RXA+PSQXzk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEEC2EPNS2_10LibContextE) +STUB( + "4RbA2kWBsoI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("4RgiEcXk+b0", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEEC2ERS7_) STUB("4Ri3mo87MrQ", ScePsmMonoSetDirs) +STUB( + "4RmG5B3A04Y", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEdeEv) +STUB("4Rn+RfimcRY", _ZN7CoreIPC18MessageReceiverMapD1Ev) +STUB( + "4Rnnx6M+iiA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("4RnulbiuTRw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEaSERS7_) +STUB("4Rr3vDNvcEs", rgctx_fetch_trampoline_rgctx_101) +STUB( + "4RscapE22fs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "4RvnLhnAooc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEEcvbEv) +STUB( + "4RyYqWod+c4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEC1Ev) +STUB( + "4RycqlFa1NQ", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsers10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_60PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEE) +STUB( + "4RylQIfOc38", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEEC1Ev) +STUB( + "4S+xuP4VFOk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEEC2ERKSA_) +STUB("4S-fEuv1EaE", _ZN7WebCore49reportExtraMemoryAllocatedForCollectionIndexCacheEm) +STUB( + "4S50IOw9NBg", + _ZN3sce7Toolkit2NP2V28Matching9leaveRoomERKNS3_7Request9LeaveRoomEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB( + "4S69ft6BkkI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEEC2ERKSA_) +STUB("4SCX2TiYw8Q", _ZGVZNSt6locale5_InitEvE14classic_locimp) +STUB( + "4SHHfOUXaXc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEE11release_refEv) +STUB("4SLJBMm44F8", _ZNSt9basic_iosIwSt11char_traitsIwEEC1Ev) +STUB("4SMYF1r45hs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEC2Ev) +STUB("4SOWXMrEyFA", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIfEC2EPf) STUB("4SSJ+cn+Pvg", sceAmprAmmMeasureAmmCommandSizeMapAsPrt) +STUB("4ST5OtXfodM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE3endEv) +STUB("4SU1b9bcL18", _ZN3WTF14AtomStringImpl3addEPKhj) +STUB("4SbrhCozqQU", sem_reltimedwait_np) STUB("4SgLbJPUxNw", sceShellCoreUtilDeleteDownloadedNetEvConfigFile) STUB("4SlBjZmGWfg", sceDevUsbDeleteHostRawKevent) +STUB("4SnCJmLL27U", _ZNKSt5ctypeIcE9do_narrowEcc) +STUB( + "4SnUzViaCf0", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V129SetDataInfoRequestBodyFactory7destroyEPNS3_22SetDataInfoRequestBodyE) +STUB( + "4Sng5wE4vPg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEptEv) STUB("4So0MC3oBIM", sceFontCreateGraphicsService) +STUB( + "4SoK4xCUSkE", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBody14setInvitationsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_31ResponsePlayerSessionInvitationEEEEE) +STUB("4Srtnk+NpC4", _ZNSt8messagesIwEC1EPKcm) +STUB("4SvaJGoaPY8", _ZN23sceMetadataReaderWriter8Metadata11DeserializeERN3sce4Json5ValueERS0_) STUB("4SvlEtd0j40", sceLibcPafMspaceReallocalign) +STUB("4T-rn4ZD+CY", mono_aot_ReactNative_Modules_Vshjit_code_start) +STUB( + "4T0Swzv5ja0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEC2EPKS8_) +STUB("4T4GgJjNBHA", _ZN9Inspector16toInspectorValueEPN3JSC14JSGlobalObjectENS0_7JSValueE) +STUB("4T4PuM0C3lM", _ZN3sce2Np9CppWebApi14SessionManager2V129GetPlayerSessionsResponseBodyD1Ev) +STUB( + "4T55oRvMzX4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "4T6VlI4Z-Gs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEC2Ev) +STUB( + "4T7NyL19U6M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEED2Ev) +STUB("4T9kRhpb-V0", RemotePlaySetProhibitionForVsh) +STUB("4TB+JrM5q8I", _ZNK7WebCore18HTMLMarqueeElement4loopEv) +STUB("4TFZLZuR+l4", _ZN3JSC17createJSMicrotaskERNS_2VMENS_7JSValueES2_S2_S2_) +STUB("4TGeM5jD7x0", _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScoreD1Ev) +STUB("4TJ1qJGXAV8", FTA_Export_Module_psaux) STUB("4TK7DRrXC5c", scePktMgrGetUlpCmdHdr) STUB("4TOEFdmFVcI", sceUserServiceGetGlsCommunityId) STUB("4TPW3H2f-lM", sceVideoOutGetPortStatusInfoByBusSpecifier_) +STUB("4TS7CSj8s00", _ZNK7WebCore22SkewTransformOperation6angleYEv) +STUB("4TTbo2SxxvA", _Ttotm) +STUB( + "4TV8L6fZgaM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC1Ev) +STUB("4TZ39-Q9dgc", Java_java_io_FileOutputStream_writeBytes) +STUB( + "4TZJZQYnc70", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEE11release_refEv) +STUB( + "4TavuQn1aE8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEE7add_refEv) +STUB( + "4Tfqy-dutnU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEE11release_refEv) +STUB( + "4ThVQ9Gfusg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEED1Ev) +STUB("4TiSms4BRNo", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData12setaccountIdEPKc) +STUB( + "4TiZy24yFoQ", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicket10initializeEPNS1_6Common10LibContextENS6_12IntrusivePtrINS3_23SubmitTicketRequestBodyEEE) +STUB( + "4ToLdhFpkPs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE8copyFromERKS9_) +STUB( + "4ToXGcUnkUE", + _ZN3sce7Toolkit2NP8Matching9Interface15inviteToSessionEPKNS1_18SessionInformationEPKNS1_13InviteMessageE) +STUB( + "4Tt7buRjUL0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEeqERKS9_) +STUB("4TuXOTNLRZ0", _ZN9Inspector15RemoteInspector7connectEj) +STUB( + "4TwnemZ+3MU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEED1Ev) STUB("4Ty+Pa7lZXY", sceCesUtf32leToSJis) +STUB("4U7XQYIZAI0", RemotePlayGetRpMode) +STUB("4U9CKqxDyK8", _ZN7WebCore11DisplayList4SaveC2Ev) +STUB("4UELURFLXkk", mono_field_get_offset) STUB("4UF2uu2eDCo", sceNpTusGetMultiSlotDataStatusForCrossSaveVUserAsync) +STUB("4UFYk-Rr+EM", _ZN7WebCore9DOMWindow18unregisterObserverERNS0_8ObserverE) STUB("4UFagYlfuAM", sceRazorCaptureSinceLastFlip) +STUB( + "4UJtZFs4wPw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEE7add_refEv) +STUB( + "4US3WyPIdRs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEppEv) +STUB("4UVQzKBTEFs", Java_java_lang_ClassLoader_defineClass0) +STUB("4UWDiU1sWU0", _ZNK3sce2Np9CppWebApi7Matches2V118RequestTeamResults8getScoreEv) +STUB( + "4UWIK7VNYuA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119NatConnectivityFromC2EPNS1_6Common10LibContextE) +STUB("4UZZcXmQt9Y", _ZN7WebCore11MediaPlayer21endSimulatedHDCPErrorEv) +STUB("4Ufb3NaPj0c", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE4sizeEv) +STUB("4Uj1DZGlHTw", ubrk_next) STUB("4UkZbYKVF7c", sceAmprCommandBufferConstructMarker) STUB("4UlW3CSuCa4", sceAudioOutExPtOpen) +STUB("4UlyNf+YwYU", _ZNK3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator12natTypeIsSetEv) +STUB( + "4Unpe75CXLE", + _ZThn32_N7WebCore14DocumentLoader14notifyFinishedERNS_14CachedResourceERKNS_18NetworkLoadMetricsE) STUB("4UsFAtbEpzI", sceUlpMgrSetNetmpListenSock) +STUB("4UsgyIdjr8Y", _ZN3sce7Toolkit2NP2V28Commerce16RatingDescriptorC1Ev) +STUB("4UwPod4Wdmk", _ZN7WebCore8SVGNames8titleTagE) +STUB("4UxUjgC+2PQ", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate12unsetPerGameEv) +STUB( + "4V0H+brwuCU", + _ZN3sce2Np9CppWebApi14SessionManager2V122LocalizedStringFactory6createEPNS1_6Common10LibContextEPKcNS_4Json6ObjectEPNS5_12IntrusivePtrINS3_15LocalizedStringEEE) +STUB("4VD0OuFSW04", + _ZN15AbstractStorage14TwitterContent11SetMetadataEPN23sceMetadataReaderWriter8MetadataE) +STUB( + "4VL7TLpLXW8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE5emptyEv) STUB("4VLlu7EIjzk", sceNpTusAddAndGetVariableForCrossSaveVUser) +STUB("4VNXRsIJzn0", mono_aot_Sce_Vsh_Np_AppInfojit_got) +STUB( + "4VPIDrOGoq4", + _ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId17hasnpServiceLabelEv) +STUB("4VRZ2RXGspA", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchDetail9terminateEv) +STUB("4VTEYhwAJck", _ZNK7WebCore8Document23webkitFullscreenEnabledEv) +STUB( + "4VUDXmoiZeQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEdeEv) +STUB( + "4VXqKOic1Xs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEixEm) +STUB( + "4ViVmOFcJQg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("4Vj67+ImaHI", _ZNK7WebCore19InspectorController30buildObjectForHighlightedNodesEv) +STUB( + "4VmOYQTvXGY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEE5resetEPS8_) +STUB("4VnDt-huzjA", _Z27Ime_DicDeleteUserDicsNativei) +STUB("4VnT2MObSW8", mono_image_loaded_full) +STUB("4VqboG5pjf0", nn_sendmsg) +STUB( + "4VutgqObizM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "4Vw5i9U8N7Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEEC1ERKSA_) +STUB( + "4Vy3XHhEF34", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEC1Ev) +STUB( + "4VzKofrIjLE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEppEv) +STUB("4VzjdhVa+lY", mono_aot_Sce_Vsh_Np_Asmunbox_trampolines_end) +STUB( + "4W-gjbJb0Gk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEeqERKS9_) +STUB("4W0fAoG50Nk", + _ZN3sce2Np9CppWebApi13InGameCatalog2V515ContainerRatingC1EPNS1_6Common10LibContextE) +STUB("4W0wxLj52NI", _ZN7WebCorelsERN3WTF10TextStreamERKNS_6RegionE) +STUB( + "4W1vGdsx2n0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEC2Ev) +STUB( + "4W6b6so-L-E", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB( + "4WKpxFuQc-k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEC1Ev) +STUB("4WLw+JZeJLA", WKPreferencesSetMediaPlayable) STUB("4WOA1eTx3V8", sceSystemGestureUpdateTouchRecognizerRectangle) +STUB( + "4WQu1mMrFME", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEED2Ev) +STUB( + "4WWLcIAVqMo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEE11release_refEv) +STUB("4WaMtxfQwd8", _ZN3NTF18CreationParametersC2Ev) +STUB( + "4WacVxl1B+8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEdeEv) +STUB("4Wp+fWL5uEM", _ZN7WebCore9HTMLNames8formAttrE) +STUB( + "4Wq-RRWM+q0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEED1Ev) +STUB("4WsMn4H547E", _ZN3sce7Toolkit2NP2V210Tournament7Request19SendUserMatchReportC1Ev) +STUB( + "4Wt-1tt+lUc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEED1Ev) +STUB("4Wt5uzHO98o", _Dunscale) +STUB("4X0QwvuCfjc", setrlimit) +STUB( + "4X0fUIxBmO0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEED0Ev) STUB("4X14YSK4Ldk", sceFontGetFontGlyphsOutlineProfile) +STUB("4X39gpshmRs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEEC2EPKS6_) +STUB("4X3Oj5stWxk", + _ZN3sce7Toolkit2NP10IdDatabase16addTitleSecretIdERKNS1_9NpTitleIdENS1_11ServiceTypeE) +STUB("4X5I6upG+9Q", Java_com_sony_bdjstack_core_CoreApp_getInitialClass) +STUB("4X8svbQd+wQ", _ZN12video_parser7cVpUtil11vp_ff4_freeEPvS1_) +STUB( + "4XAyYXxJ4JA", + _ZNK3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfiles14getlanguageSetEv) +STUB( + "4XF8LD0SLnQ", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser17setplatformFilterEPKc) STUB("4XJkjqVrJrs", sceAgcDriverGetAllocatedToolMemoryForGpuReset) +STUB( + "4XMPdi+PSB8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEC1EPS8_) +STUB("4XRJPtlXTn0", ucnv_MBCSFromUnicodeWithOffsets_67) +STUB("4XS2Wv8dC5Q", _ZN7WebCore11DisplayList11FillEllipseC1ERKNS_9FloatRectE) +STUB("4XSL+J6pye0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE8pushBackERKS6_) +STUB("4XZd94Wa2Ak", _ZN3sce2Np9CppWebApi7Matches2V125ResponseCompetitiveResult16getPlayerResultsEv) +STUB("4XbhuyqB6pA", WKBundleClearHistoryForTesting) +STUB( + "4XdLCWgZ-L8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEC1ERKS7_) +STUB("4Xe0NrWsndM", _ZN3WTF24AutomaticThreadCondition4waitERNS_4LockE) +STUB("4XhFA9ZK3io", mono_unhandled_exception_message) +STUB( + "4XkrdavSRUg", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionProperties10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_39PatchPlayerSessionsSessionIdRequestBodyEEE) +STUB("4Xl5l2QwFgg", dladdr) STUB("4XsQdhiOaAc", sceVideoOutSysIsUserStatusVr) +STUB("4XshO9E3bZE", _ZNK3sce2Np9CppWebApi7Matches2V120RequestPlayerResults6toJsonERNS_4Json5ValueEb) +STUB("4XuziKx0Mmo", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V16StatusEEppEi) +STUB( + "4XvgKBWb3FE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEptEv) +STUB("4Y09+1TFWxc", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16UnlockedTrophiesEEC2Ev) +STUB( + "4Y0OZ9CebmM", + _ZN7WebCore8Document17setBodyOrFramesetEON3WTF6RefPtrINS_11HTMLElementENS1_13DumbPtrTraitsIS3_EEEE) +STUB( + "4Y1h21ryTKE", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi21getAccountId2OnlineIdEiRKNS4_32ParameterToGetAccountId2OnlineIdERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_12AccountIdMapEEENSA_INS4_36GetAccountId2OnlineIdResponseHeadersEEEEE) +STUB("4Y22r3-P3RA", _ZN3WTF11dtoaRoundSFEPcdiRbRiRj) +STUB("4Y2I2UV-MYA", + _ZThn16_N9Inspector22InspectorDebuggerAgent20setPauseOnExceptionsERN3WTF6StringERKS2_) +STUB("4Y3P3hq9hhM", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE5clearEv) +STUB( + "4Y9-t1KCIn4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi23setMultiVariablesByUserEiRKNS4_34ParameterToSetMultiVariablesByUserERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB( + "4YAbq7JIZ94", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeaders7setETagERKNS1_6Common6StringE) STUB("4YClXOfFOdk", sceImeBackendTemporalConfirm) +STUB("4YDoT6MwFdc", _ZL22dwarf_eh_find_callsiteP15_Unwind_ContextP13dwarf_eh_lsdaP15dwarf_eh_action) STUB("4YJ5gYtRAAE", sceNpUtilJsonUnescape) STUB("4YMBk1lfUm0", sceUsbStorageUnregisterCallbackForMapUnavailable) +STUB("4YOnvHQco2w", _ZN15AbstractStorage14TwitterServiceD1Ev) +STUB("4YPeEmXevC4", _ZN7WebCore8SVGNames6u1AttrE) STUB("4YQ-w9Xwn7s", sceShellCoreUtilGetCrashReportStatus) +STUB( + "4YTViV4+FLY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEC2EPS8_) +STUB( + "4YdkXFWz8Dg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEEdeEv) +STUB( + "4YeRnVQUxI0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEEC2ERSA_) +STUB("4Ymr0K7W9WA", __ubsan_handle_function_type_mismatch_v1_abort) +STUB( + "4YnJkdEaAS4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEED1Ev) +STUB("4Yna719ts4M", utext_next32From) STUB("4Ypfo9RIwfM", sceBluetoothHidRegisterCallback) STUB("4Yu-wQ-xrNs", sceShareUtilityAdvanceFromFileWithTitleIdList) +STUB("4Yyat0vtan0", GetContentFileStatusLib) +STUB("4YzcZ4koEWo", _ZN7WebCore18TextureMapperLayer18setContentsVisibleEb) +STUB( + "4Z0kpPvfnfQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEC1EPKS8_) +STUB("4Z2wRg5jt3M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEixEm) +STUB("4Z3J6sTDyU0", _ZN3sce2Np9CppWebApi7Matches2V113ChildActivityD2Ev) +STUB("4ZAN-jysmlg", SwCtrlSinkStreamIsEOS) +STUB("4ZBMN3zI3zs", _ZN4Manx11MediaPlayerC1EPNS_17MediaPlayerClientE) +STUB("4ZJD5r7ugsc", _ZN3sce7Toolkit2NP2V211SocialMedia7Request7PhotoFb11MAX_URL_LENE) +STUB("4ZMGdbkcjzk", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_23NpIdListRankInformationEE3getEv) +STUB("4ZMRsKRFfAY", seqNum) +STUB( + "4ZO1nNx5fig", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE10setContextEPNS2_10LibContextE) +STUB("4ZQbnnW1z+Q", WKBundleFrameGetPendingUnloadCount) +STUB("4ZSSOt1acl8", _ZN3sce2Np9CppWebApi11Matchmaking2V19Submitter11setPlatformERKNS3_8PlatformE) +STUB( + "4ZW8wIls7N8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE5clearEv) +STUB("4ZXj4yVA40U", + _ZN3sce2Np9CppWebApi14SessionManager2V115SearchConditionC2EPNS1_6Common10LibContextE) +STUB("4ZXlZy7iRWI", _ZTSN10__cxxabiv120__function_type_infoE) STUB("4ZYuSI8i2aM", sceSystemServiceGetParentSocketForPsmKit) +STUB("4ZZAP3Ty9To", _ZN9Inspector21InjectedScriptManager18injectedScriptHostEv) +STUB( + "4ZcisJGzxgM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE3endEv) +STUB( + "4ZeYO1WYd1U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) STUB("4ZeZWcMsAV0", pthread_cleanup_push) +STUB("4ZerC-xiHv8", _ZNK3WTF3URL20protocolIsJavaScriptEv) +STUB("4ZjyKz4IjQo", _ZN7WebCore11HistoryItemC2ERKN3WTF6StringES4_S4_) +STUB( + "4ZmiHwkQ+9g", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEneERKS9_) +STUB("4ZnE1sEyX3g", _ZGVNSt8messagesIcE2idE) +STUB( + "4Zw1kiTlBsM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEE7get_refEv) +STUB("4a-30lmYmdI", _ZN12video_parser5vpcom5_ReadEPNS_8_vp_fileEPvjPi) +STUB( + "4a3bhOLNGwI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEC1Ev) +STUB("4a4FVRpXQJM", Java_com_sony_bdjstack_ti_Database_getPlayItems) +STUB( + "4a6IHbTNoTI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEEptEv) +STUB( + "4aAREFH4rOM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEE11release_refEv) +STUB( + "4aDDEEapPkg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB( + "4aDLN0LOAew", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEptEv) +STUB( + "4aGWROUFFTg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "4aH0-tkW5PU", + _ZN3JSC8JSObject14deletePropertyEPNS_6JSCellEPNS_14JSGlobalObjectENS_12PropertyNameERNS_18DeletePropertySlotE) +STUB("4aHyuLG09aw", _ZN7WebCore16BlobRegistryImplC2Ev) +STUB( + "4aNgxSC2DFE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE5beginEv) +STUB("4aQsvxZFa+0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEE3getEv) +STUB( + "4aTIqWlkZUg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEptEv) +STUB("4aVl+bWZmfI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEC2Ev) +STUB("4aXDehFZLDA", CERT_STORE_findIdentityByTypeFirst) +STUB( + "4aXd1e5CbfQ", + _ZN3sce2Np9CppWebApi14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyC2EPNS1_6Common10LibContextE) +STUB( + "4afM3Xt0+Ig", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "4ajArsvLAVo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEptEv) +STUB("4alOvv5O7KU", il2cpp_class_array_element_size) +STUB("4apave5TFsg", + _ZN7WebCore14SchemeRegistry36registerURLSchemeAsAlwaysRevalidatedERKN3WTF6StringE) +STUB("4asyR6+TvFE", _ZN9Inspector15RemoteInspector16pushListingsSoonEv) +STUB( + "4awsTFbKE9M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "4ay1x8rkya0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE21intrusive_ptr_sub_refEPSA_) +STUB( + "4b-GUNp-Fww", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEppEi) +STUB("4b-vop3WuR4", _ZN3sce3Xml4AttraSERKS1_) +STUB("4b4Y3TiRa6k", _ZN7WebCore31contextMenuItemTagCheckSpellingEv) +STUB("4bLEJwF1yGg", _ZN3sce7Toolkit2NP2V26Trophy15TrophyPackGroup19MAX_NUMBER_TROPHIESE) +STUB("4bOt65l9CT8", _ZN7WebCore14SecurityPolicy13allowAccessToERKNS_21UserContentURLPatternE) +STUB("4bQMfDI+p6w", _ZN3sce7Toolkit2NP2V27Session18AvailablePlatformsD2Ev) STUB("4bT02EA5CF0", sceDtcpIpStartSeq) +STUB( + "4bTVoo+UVRE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEdeEv) +STUB( + "4baVknTOiS0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE8pushBackERKS8_) +STUB( + "4bfH1zFOdBY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE5abortEv) +STUB("4bgkmutzYAc", + _ZNK3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15Error16referenceIdIsSetEv) +STUB("4boImm4wxu0", _bind) +STUB( + "4boWhdk45q0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEEaSERSA_) +STUB( + "4bqaYYtswtE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEE7add_refEv) +STUB( + "4btQHKBCjNY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEppEv) +STUB( + "4btsnC+Eh7Q", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlotD2Ev) +STUB("4bxhcpUu04g", _ZN4Manx16getGenericFamilyEPKwj) +STUB("4c1ohhNTURs", _ZN7WebCore4Node18startIgnoringLeaksEv) +STUB( + "4c24qmetW9s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEE7add_refEv) +STUB( + "4c2RvN0P+E4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE5clearEv) +STUB( + "4c3UDIiPvnY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE6resizeEj) +STUB( + "4c3sJovS0U0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEdeEv) +STUB( + "4c4u-n3W2HY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEE5resetEPS9_) +STUB("4c6WX1XAWbE", _ZN3sce7Toolkit2NP15AppSTLAllocatorI13SceNpOnlineIdE10deallocateEPS3_m) +STUB("4cIJxNKQK5g", _ZN3sce2np9JsonArray12AddItemArrayEPPS1_) +STUB("4cP4FNbcqtE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEE11get_deleterEv) +STUB( + "4cRoQpH+sFw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEixEm) STUB("4cS74wnODLM", sceVideoRecordingRestModeProcessGetStatus) +STUB("4cTIrOZw1-0", uscript_getShortName) +STUB("4cWxMuvkAVE", WKPreferencesGetCanvasUsesAcceleratedDrawing) +STUB("4cZX7bAkRdA", _ZN9Inspector14InjectedScriptaSERKS0_) +STUB( + "4cfiSnwoOdg", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeaders21intrusive_ptr_add_refEPS5_) STUB("4cn1ichfHIE", sceMusicFwGetNetworkState) +STUB( + "4cnSYU-oI20", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEE11get_deleterEv) +STUB("4cqbxf455Ik", _ZN7WebCore9HTMLNames29onwebkitmouseforcechangedAttrE) +STUB("4cs9dAQPVl0", ucal_getDayOfWeekType_67) STUB("4cuKd4S83xw", sceMusicPlayerServiceSetTrackList) +STUB("4cvRVllWYcE", _ZN7WebCore9HTMLNames16marginheightAttrE) +STUB("4czdTeOyFV0", _ZN3sce7Toolkit2NP2V210Tournament17TournamentDetails5resetEv) STUB("4czppHBiriw", sceKernelSignalSema) +STUB( + "4d5P3oPcmVw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEEdeEv) +STUB("4d9S8jMy6Ac", _ZNK15AbstractStorage14TwitterContent10GetServiceEv) +STUB("4dB3tq45pBw", _ZN4IPMI4impl10ServerImpl18doTerminateRequestEj) +STUB("4dEcE+HO5iY", g_ptr_array_new) +STUB( + "4dIeigg7RqY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE6resizeEj) STUB("4dWfNKOT1sg", sceLncUtilActivateCdlg) +STUB( + "4dYXjvUkipM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE8copyFromERKS9_) +STUB("4da8cAdKl-o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEEptEv) +STUB( + "4dfIN3IhMPo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("4dhx-ioq00U", _ZN9Inspector38ScriptProfilerBackendDispatcherHandlerC2Ev) +STUB("4doOKZvqnq8", _ZN7WebCore8Document17queryCommandStateERKN3WTF6StringE) STUB("4dq2rblWlg0", sceAudioOut2ContextSetAttributes) STUB("4dsNPwVODKM", sceShellCoreUtilIsTitleWorkaroundEnabled) +STUB("4dtPhcCb76Y", _ZN3WTF11Persistence5CoderINS_10AtomStringEE6decodeERNS0_7DecoderE) +STUB("4dvdsqyLM8c", cairo_image_surface_create_from_png_stream) +STUB("4e-JjxDUlb8", glGetInteger64v) +STUB("4e7O-m-JWVM", cairo_get_fill_rule) +STUB( + "4e9YYvVtdKM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEE11get_deleterEv) STUB("4e9dMKt+UYA", pthread_suspend_np) +STUB( + "4eBe+qMmIpU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("4eFONvtCw-I", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi28ParameterToDeleteGameSessionC2Ev) +STUB("4eIK+jvU-gQ", _ZN7WebCore24CoordinatedGraphicsLayer15removeAnimationERKN3WTF6StringE) +STUB("4eK7kBvRmYc", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4RoomEEC2Ev) +STUB("4eLWslEJdRo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEEC1ERKS7_) +STUB( + "4eN+1nhWU0Y", + _ZN9Inspector14InspectorAgent7inspectEON3WTF6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsIS5_EEEEONS2_INS1_8JSONImpl6ObjectENS6_ISB_EEEE) +STUB("4eO+y6WtOIw", _ZN3WTF14SymbolRegistry12symbolForKeyERKNS_6StringE) +STUB("4eO39DusLpI", mono_set_defaults) STUB("4eOvDyN-aZc", sceNpScoreCensorCommentAsync) +STUB("4eSv-lGRJ9k", _ZNK3sce7Toolkit2NP9Utilities6FutureI16SceNpTusVariableE17getAdditionalInfoEv) STUB("4eUBMHs41k0", sceFaceShapeFit) STUB("4eX4H3CtEfk", sceVencDeleteEncoder) +STUB("4eahqnUQCls", _ZN3sce2Np9CppWebApi6Common8IteratorINS2_6StringEEppEv) +STUB("4eebjJb6IcY", uspoof_getRecommendedUnicodeSet_67) +STUB("4eheJycBxI0", WKBundlePageConfirmCompositionWithText) +STUB("4eiqY+Af-ro", _ZNK15AbstractStorage15FacebookStorage7GetStatEPNS_4StatE) STUB("4ej3RtYH320", sceSocialScreenDialogClose) +STUB("4ejAnR1Xpg8", BN_set_word) +STUB("4ejzo1EOtPM", + _ZN7WebCore20throwSetterTypeErrorERN3JSC14JSGlobalObjectERNS0_10ThrowScopeEPKcS6_) +STUB( + "4enI30eEEpI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE7popBackEv) +STUB("4epVEWM0BdY", _Z15sendIpmiMessageiPKvmPj) +STUB("4ephroQdYfA", _ZNK3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer12getAccountIdEv) +STUB("4ewKtBcrBto", _ZN12Mp4Retriever14processLoopBoxEv) +STUB("4f+Q5Ka3Ex0", __negsf2) +STUB("4f-pHWI9gcU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE6resizeEj) +STUB( + "4f3gBd0oaqM", + _ZN3sce2Np9CppWebApi7Matches2V128ResponseTeamStatisticFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_21ResponseTeamStatisticEEE) +STUB("4f4k1BywICY", _ZNK3JSC9CodeBlock4dumpERN3WTF11PrintStreamE) +STUB( + "4f7FxenJ11A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEC2EPNS2_10LibContextE) +STUB( + "4f83QoWheo0", + _ZN3sce2Np9CppWebApi11Matchmaking2V131SubmitTicketResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_24SubmitTicketResponseBodyEEE) +STUB( + "4fFP980c5us", + _ZN3sce7Toolkit2NP11UserProfile9Interface14getCountryInfoEPNS1_9Utilities6FutureINS1_11CountryInfoEEEb) +STUB( + "4fFXfHEBKck", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEppEi) +STUB("4fHtC1JQK64", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEEC2ERKS6_) +STUB( + "4fHymdmot4I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEC2EPNS2_10LibContextE) +STUB( + "4fIMehzTqlQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEC2ERKS7_) +STUB("4fKFBy78LEk", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_19ProductInfoDetailedEED2Ev) STUB("4fKzISZFxaE", sceFsDevpfsInitFetchMetaEntryCtx) +STUB( + "4fMcS+qIbSI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEEC2ERKSB_) +STUB("4fPIrH+z+E4", _ZNKSt7codecvtIwc9_MbstatetE11do_encodingEv) +STUB( + "4fTRcKhnz8Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEC1ERS7_) STUB("4fU5yvOkVG4", sceSysmoduleGetModuleInfoForUnwind) +STUB( + "4fWCBQp6dpU", + _ZN9Inspector25DebuggerBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("4fWIAEzWbX8", Java_com_sony_bdjstack_system_BDJModule_terminateTitle) +STUB("4fX0kRsOUQA", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession14getCustomData2Ev) STUB("4fZAv0vbycQ", sceFiosOpGetPath) +STUB( + "4far50spixg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEC2Ev) +STUB( + "4faz65LsDB0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("4ff48fxer-8", _ZN7WebCore5ColorC2EffffNS_10ColorSpaceE) STUB("4fgkfVeVsGU", sceHttpRequestGetAllHeaders) +STUB( + "4fgpYGzdGxU", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersC1ERS5_) STUB("4fgtGfXDrFc", sceAmprMeasureCommandSizeWriteAddress_04_00) +STUB("4fwlS7wB3AY", p5_8192) +STUB( + "4fxn8KRVCuk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("4fymWXPdseo", + _ZN7WebCore15reportExceptionEPN3JSC14JSGlobalObjectENS0_7JSValueEPNS_12CachedScriptE) +STUB("4g1ee34TMH8", _ZN3sce3Job10JobManagerD1Ev) +STUB( + "4g4WHz+m3qA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE3endEv) STUB("4g5vWZV5goU", sceVideoCoreInterfaceOpenVideoOut) +STUB("4g6BoFF-ywE", u_strchr) +STUB( + "4g9GjN7SKoM", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEEC1Ev) STUB("4g9JiF+D2cE", sceVideoNativeExtEssential_IsInit) +STUB( + "4gCq4TTq2-Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEED2Ev) +STUB("4gDTaBZH8lo", cairo_ft_scaled_font_lock_face) +STUB("4gDriHUPM+k", + _ZN7WebCore22EmptyFrameLoaderClient11createFrameERKN3WTF6StringERNS_21HTMLFrameOwnerElementE) +STUB( + "4gEYAcgM9zE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEED2Ev) +STUB("4gGN1iulpWM", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V111LeaveReasonEEneERKS7_) +STUB( + "4gI48snNksk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE7popBackEv) +STUB("4gJ2MFHUsvY", WKCookieManagerDeleteCookiesForHostname) +STUB("4gJAjpddSVo", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTicketsD1Ev) +STUB( + "4gL1Yb+Pt5U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB("4gLqVhLngro", _ZN7WebCore26ISOProtectionSchemeInfoBoxC1Ev) STUB("4gMowNrTFnQ", sceRnpsAppMgrGetUpdateProgress) +STUB("4gN-r7nYdYY", _ZN7WebCore8JSDOMURLC1ERKS0_) +STUB("4gN9AATFpTU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEcvbEv) STUB("4gOMfNYzllw", sceNpPartyGetMemberSessionInfo) +STUB("4gSFMMDLYM4", mono_aot_Sce_Vsh_ShareGuideSceneunwind_info) +STUB("4gT52GwiD0A", _ZN3JSC4Heap25protectedObjectTypeCountsEv) +STUB( + "4gVOVhyTINc", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSD_ESD_) +STUB("4gdGUYtfI-A", _ZTVN9Inspector24RuntimeBackendDispatcherE) +STUB( + "4gfEnQ4DZdY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE5clearEv) +STUB("4gfe6xZWoP4", genName.hex) +STUB( + "4gg-uNDZg88", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE5beginEv) +STUB("4gh3IM9SXw8", mono_runtime_set_shutting_down) STUB("4gi0acCfJL4", sceNpAsmClientDeleteResourceContext2) +STUB( + "4gkY0Lnj2Zk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEED1Ev) +STUB( + "4gmBFeKcPH0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEmmEi) +STUB("4go6vGk6E+A", WKWebsiteDataStoreClearAllDeviceOrientationPermissions) +STUB( + "4gs6BjHYiXU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEmmEv) +STUB("4gzdOe+mRrw", Java_com_sony_bdjstack_javax_media_controls_SoundManager_free) +STUB("4h3fLdA8LHw", coil_mspace_malloc) +STUB("4h4+sBW9vT0", _ZN3sce7Toolkit2NP2V27Session7Request22GetReceivedInvitationsC2Ev) +STUB( + "4h4aB8xXO5s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEC1ERKS7_) +STUB("4h4kYUxRDgU", u_strHasMoreChar32Than) +STUB( + "4h6dKKvxvdA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE3endEv) +STUB( + "4h87otKRt8g", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10getString5Ev) +STUB("4hDGZkbevi0", + _ZNK3sce2Np9CppWebApi14SessionManager2V128ResponseGameSessionSpectator11getPlatformEv) +STUB( + "4hEgkCNtZug", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE5emptyEv) +STUB( + "4hG3fSbPE50", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEEC2Ev) +STUB("4hLcEyw6XIs", GCC_except_table100) +STUB("4hLgnaOq3IM", _ZN12video_parser17cVideoOperatorMp4C2EPKc) +STUB("4hO9JFoKQpc", _ZN3sce7Toolkit2NP2V210Tournament5MatchC2Ev) +STUB("4hOE443tpw4", X509_STORE_CTX_free) STUB("4hOXCEnHlHQ", sceNpRemotePlaySessionSignalingSetCustomProperty) +STUB("4hPLek5k2kQ", _ZN7WebCore13GraphicsLayer8addChildEON3WTF3RefIS0_NS1_13DumbPtrTraitsIS0_EEEE) +STUB("4hPa7Dtb36Y", _ZN3sce7Toolkit2NP2V28Matching6MemberC1Ev) +STUB("4hPoej35jCA", WKContextGetSharedThreadContext) +STUB("4hPwsDmVKZc", SSL_enableCiphers) STUB("4hTD8I3CyAk", sceHmdInternalMirroringModeSetAspect) +STUB( + "4hWmUaeBwdQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEED1Ev) +STUB( + "4hbsMTaApzg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEC2EPS8_) +STUB( + "4hhrybsuHGU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEmmEi) +STUB( + "4hiQK82QuLc", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERx) +STUB("4hkRP+tzB-c", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V122UploadDataResponseBody8fromJsonERKNS_4Json5ValueE) STUB("4hl78F9jMCM", sceSpPthreadCondWait) +STUB("4hnuqy+8CAU", _ZN7WebCore8SVGNames17gradientUnitsAttrE) +STUB("4hpGSSn9t74", _ZN7WebCore16ISOSchemeTypeBoxC2ERKS0_) +STUB("4hqqZuMI7rU", _ZN12video_parser17cVideoProfilerMp48finalizeEv) +STUB("4hsvw3h04JU", _ZN9Inspector29AuditBackendDispatcherHandlerC2Ev) +STUB("4htp6fAZF0U", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V111OfferStatusEEC1Ev) +STUB("4hwL0vHb1Jw", glUniform3fv) +STUB("4hyVWysfDe4", _ZN3JSC7Symbols17createPrivateNameE) +STUB( + "4hz2fKoQkO4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEEaSERKSA_) +STUB("4i-lPi0Dcw8", + _ZN3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayer17unsetPushContextsEv) +STUB("4i4lCtimDgg", _ZN9Inspector22InspectorDebuggerAgent18didCancelAsyncCallENS0_13AsyncCallTypeEi) +STUB( + "4i5WPPOhHnw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEEC1Ev) +STUB( + "4i8I4mQMGxY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEEC2ERSA_) +STUB("4iA7KbTNmLA", _ZN3sce7Toolkit2NP2V28Presence7Request14DeletePresenceD2Ev) +STUB( + "4iDn9nQH90w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEEC2EPS5_PFvS7_EPNS2_10LibContextE) +STUB("4iF+HWkPTkQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEE3getEv) +STUB("4iFgTDd9NFs", _LLog) +STUB("4iJZYN0vrwc", _ZN3JSC10loadModuleEPNS_14JSGlobalObjectERKN3WTF6StringENS_7JSValueES6_) +STUB("4iMpsAJZg+8", _ZN4Manx11MediaPlayer11currentTimeEv) STUB("4iOzclpv1M0", sceLibcHeapSetAddressRangeCallback) +STUB("4iRgopOo1X0", monoeg_g_queue_free) +STUB( + "4iRnc2NuXds", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEEcvbEv) +STUB("4iRtUH7ZYPg", _ZNK3WTF6String20substringSharingImplEjj) +STUB( + "4iVtAgaU8PQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEEdeEv) +STUB("4iYMn5+K7NE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEEC1EPS5_PFvS7_EPNS2_10LibContextE) +STUB("4ia3TbCbRVc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEEC1Ev) STUB("4ic6Lb+mlfA", sceNpPush2RegisterExtendedDataFilter) +STUB("4idnpRiSXto", getAvailableProtocolInfoList) +STUB( + "4if4CFgz-ug", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE8pushBackERKS9_) +STUB("4ifo9QGrO5w", _Locterm) +STUB( + "4ijn95+7z60", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("4il4PZAZOnQ", _ZN3sce2np6ObjectdaEPvR14SceNpAllocator) +STUB( + "4ilO+6ak-ec", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEC1EPNS2_10LibContextE) STUB("4imyVMxX5-8", sceSystemServiceGetGpuLoadEmulationMode) +STUB( + "4inijZ1D5CE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "4isnooBPYvs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEED2Ev) +STUB( + "4ixESYc13qg", + _ZZSt9MakefacetISt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEESt8_LocinfoERT_T0_E3buf) STUB("4iy9hG9Du1s", sceVideoOutAddBuffer) +STUB("4j+HoQHszgM", mono_aot_System_Corejit_code_start) +STUB( + "4j4M6d-q-oI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEixEm) +STUB( + "4jCh8QPDYDs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEixEm) +STUB("4jEJGjsMyeQ", _ZN3WTF11Persistence7Decoder6decodeERb) +STUB("4jLxGyUym+Y", + _ZN3sce2Np9CppWebApi11UserProfile2V125GetPublicProfilesResponseC1EPNS1_6Common10LibContextE) +STUB( + "4jN5eFsDPqY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "4jNVVb76Mwo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEneERKS9_) +STUB( + "4jYsOL4LF0A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEE11release_refEv) STUB("4jZLf+MFU8U", sceSpPthreadMutexattrSetprotocol) STUB("4jkLJc954+Q", sceNetCtlApGetResult) +STUB("4jmeF96OjiA", YGMeasureModeToString) +STUB( + "4jo7fokoOPM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEmmEv) +STUB("4jplQ0DHupo", _ZN3JSC22createOutOfMemoryErrorEPNS_14JSGlobalObjectE) +STUB("4jt3j8+qmGU", _ZN12video_parser5vpcom6StringC1EPKw) STUB("4jt8pMDudgk", sceShareCaptureVideoClip) +STUB("4juDCtH9HBg", _ZNK3sce2Np9CppWebApi6Common6VectorIlE5beginEv) +STUB("4k+5la20zT8", _fini) +STUB("4k3e7qWpRcU", WKContextStopMemorySampler) +STUB( + "4k4OnRLyvYs", + _ZN9Inspector21InspectorRuntimeAgent8evaluateERN3WTF6StringERKS2_PS4_PKbS8_PKiS8_S8_S8_RNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISE_EEEERSt8optionalIbERSJ_IiE) +STUB("4k5CuEwXbZo", _ZN3sce7Toolkit2NP24ChallengeResponseRequestC2Ev) +STUB("4kAy7rwAwCI", + _ZN12video_parser18cProfileCheckerMp419_isPlayableVideoAVCERKNS_13VpMediaInfo_tE) +STUB( + "4kFaEdEs5Ak", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE21intrusive_ptr_add_refEPS7_) STUB("4kHw99LUG3A", sceAudioInVmicWrite) +STUB( + "4kJcQKeuIOg", + _ZN7WebCore11MediaPlayer33copyVideoTextureToPlatformTextureEPNS_23GraphicsContextGLOpenGLEjjijjjbb) +STUB("4kKYBQ3b5HQ", _ZN7WebCore17LibWebRTCProviderdlEPv) +STUB("4kKhbLDBWQg", WKBundleHitTestResultGetTypeID) +STUB( + "4kQOezzpQjA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("4kQZ8klxFyM", _ZN4Manx8X509cinf9notBeforeEv) +STUB("4kRA6RackUU", _ZN7WebCore6JSNodeaSERKS0_) +STUB( + "4kWdjP9wBIA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEC1Ev) +STUB("4kWs0MPZ4mg", _ZTVN7WebCore22EmptyFrameLoaderClientE) +STUB("4kXIKm1ctlo", _ZN3JSC2VM30scriptFetchParametersSpaceSlowEv) +STUB( + "4kc-LkjvS3Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEEdeEv) +STUB( + "4kfv5Fu4Sdw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE8copyFromERKS9_) +STUB("4kiUonWDBLU", mono_profiler_install_monitor) +STUB("4ktv3Yu7TM4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEC2ERS7_) +STUB( + "4kvlVC-PMqI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEEptEv) +STUB("4kwKSYxwOWQ", _ZN7WebCore10FileSystem24fileSystemRepresentationERKN3WTF6StringE) +STUB( + "4kzwuUS8ySQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "4l-eAbA+SWw", + _ZThn664_N7WebCore24CoordinatedGraphicsLayer10updateTileEjRKNS_17SurfaceUpdateInfoERKNS_7IntRectE) +STUB("4l9WIZ53cg8", _ZN7WebCore9HTMLNames23onaccessibledismissAttrE) +STUB( + "4lAXG55Modw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEmmEi) +STUB("4lFCaf2S+P0", unorm2_openFiltered_67) STUB("4lFaRxd-aLs", sceNgs2SystemGetUserData) +STUB("4lKmeH7ib7w", _ZN4Manx6Bundle6createEv) +STUB( + "4lOoRctKFnk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEEaSERKS9_) +STUB("4lP1J2jYQBU", _ZN3JSC4Yarr17RegularExpressionnwEm) +STUB( + "4lQu6skqxGA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEneERKS9_) +STUB("4lVbvCvPuHE", mono_aot_Sce_Vsh_VideoPlayerjit_code_end) +STUB("4lVvk4j5XyQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEEeqERKS7_) +STUB( + "4lWOpiABU3Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "4lcEaSaqQ5Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEC2EPKS8_) +STUB("4lcVzB4Gixo", PKCS8_PRIV_KEY_INFO_free) +STUB( + "4lej5664zp0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEEC1Ev) +STUB("4lffn9gHyR0", HMAC_CTX_init) +STUB( + "4liiepBP0Ac", + _ZN7WebCore25WebSocketChannelInspector36didReceiveWebSocketHandshakeResponseEPNS_8DocumentERKNS_16ResourceResponseE) +STUB( + "4lkRXpMmplI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEneERKS9_) +STUB("4ll0zcC5bAc", _ZN3sce7Toolkit2NP2V29Messaging12Notification16NewInGameMessage5resetEv) +STUB( + "4llLfvU+9BI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEEC1ERKSA_) STUB("4llLk7YJRTE", sceNpUniversalDataSystemEventPropertyArraySetString) +STUB("4llda2Y+Q+4", _ZNSt14numeric_limitsIlE9is_signedE) +STUB( + "4lolELlJCMo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEC2EPKS8_) +STUB("4lpCZSRjK-c", _ZN7WebCore8SVGNames9scriptTagE) +STUB( + "4lqdQTxieGg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEC2Ev) +STUB("4lr78wyJwho", WriteZStream) +STUB( + "4lrAq1TKk9E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE5emptyEv) +STUB( + "4ltTwkSBOvs", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12string9IsSetEv) +STUB("4ltqjQd2iJE", _ZTVN9Inspector27CSSBackendDispatcherHandlerE) +STUB( + "4lv9MUy4hzU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEneERKS9_) +STUB( + "4lyMug2ad+Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEEdeEv) +STUB( + "4m1sj5VM9ss", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEneERKS9_) +STUB( + "4m2-7cdZJ4I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEC2ERKS7_) +STUB( + "4m8Bd-dhcPM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "4mBPHrRMft8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "4mDB1uYisIk", + _ZN9Inspector26InspectorBackendDispatcher6createERNS_17BackendDispatcherEPNS_33InspectorBackendDispatcherHandlerE) STUB("4mEAk-UKVNw", sceNpUtilCanonicalizeNpIdForPs4) +STUB( + "4mKAj7kQ7MQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEED2Ev) +STUB("4mOMvysd4IA", _ZN3JSC14JSRunLoopTimerD2Ev) +STUB( + "4mT2vz9L5Qg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEC1EPS6_PNS2_10LibContextE) +STUB("4mUxj6KnMsU", _ZN7WebCore14JSWebAnimation14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB("4mVOglFcW8E", WKContextSetCacheModel) +STUB( + "4mZNIs1R85Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEC1EPS8_) +STUB("4mdynkqoCFc", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend7FriendsEE3getEv) +STUB("4mfcPUFbik4", _ZN7WebCore16JSStringCallbackD1Ev) +STUB( + "4mjkNhEJnGY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEC2EPKS8_) +STUB( + "4mlAtc5cdLE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE5emptyEv) +STUB( + "4mlBHIlSAPI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEeqERKS9_) +STUB("4mtpkZh7myg", _ZN7WebCore19serializationForCSSERKNS_9DisplayP3IfEE) STUB("4muPEJ-x5N8", sceAmprMeasureCommandSizeWriteCounterOnCompletion) +STUB("4muRUY4-1yc", ztrans_setFrom_67) +STUB("4n51s0zEf0c", inet_pton) +STUB( + "4n5s0cpDf9w", + _ZN7WebCore8JSPath2DC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_6Path2DENS6_13DumbPtrTraitsIS8_EEEE) +STUB("4n94Pf5hH74", _IMAPData_67) STUB("4nAp4pZgV1A", sceKernelSetGpuCu) +STUB("4nCyBD9jBus", _ZN3sce2np13JsonDocParser5ParseEPKcm) STUB("4nEjiZH1LKM", sceUserServiceSetVolumeForController) +STUB("4nLCquKJCVw", _ZN3sce7Toolkit2NP2V210Tournament18OneVsOneRankResult5resetEv) +STUB("4nRn+exUJAM", _WStod) +STUB( + "4nRtlkglzJM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE4sizeEv) STUB("4nUbGGBcGco", sceUserServiceGetLastLoginOrder) +STUB("4nV-ejO0KIc", uprv_aestrncpy) +STUB("4nVANpGwnNY", _ZN3sce7Toolkit2NP2V28Matching7Request11SetRoomInfoD2Ev) +STUB( + "4nVNPPHThzc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEEC1EPNS2_10LibContextE) +STUB("4ncnynlrwuQ", GCC_except_table403) +STUB("4ndOu5jG93E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEE3getEv) +STUB( + "4neldM1aEtI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEE3getEv) STUB("4nqCnLJSvck", pthread_barrierattr_init) +STUB("4ns7J9OrJ5g", _ZN15AbstractStorage7StorageD0Ev) +STUB("4nvwbRegyA0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEC1Ev) +STUB( + "4nwaRDQ-91c", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsersaSERS5_) +STUB( + "4o3Q+1PRb3s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEC1EPKS8_) +STUB( + "4o5r9U89wLE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEplEm) +STUB("4oJLNc68S5w", + _ZN3sce2Np9CppWebApi7Matches2V133RequestTemporaryCompetitiveResult16unsetTeamResultsEv) +STUB("4oKwKmeOKjM", setegid) +STUB("4oRem-AuOiA", _ZN7WebCore14SQLiteDatabase4openERKN3WTF6StringENS0_8OpenModeE) +STUB("4oX+qn9EWP0", mono_aot_Sce_Vsh_RequestShareScreenjit_code_start) STUB("4oXYe9Xmk0Q", sceKernelGetGPI) +STUB("4ocNjZJjDM0", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIlE21intrusive_ptr_add_refEPS4_) +STUB("4oeQnXCMj58", utrace_getFunctions_67) +STUB("4oethVH35iE", _ZN7WebCore8SVGNames14stop_colorAttrE) +STUB("4omqr7cy71k", ures_swap_67) STUB("4oofFQudfx0", sceLncUtilDeactivateCdlg) +STUB("4orcGYZG2cE", + _ZN15AbstractStorage14YoutubeStorage9SerializeESt10shared_ptrINS_7ContentEES1_INS_4ItemEE) +STUB("4orpsmR6LnM", + _ZN8meta_gen11MsvPromoter21pushBackThumbnailInfoERN12video_parser18VpThumbnailInfo_t_Eb) +STUB("4owKV8D5ep8", __rela_plt_start) +STUB("4oyj-1T54Zc", _ZN3JSC18PropertyDescriptor19setCustomDescriptorEj) +STUB("4p8IUn5CM0I", glGenBuffers) STUB("4pA3qqAcYco", sceFontGraphicsStructureCanvas) +STUB( + "4pEK47Jbajs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEC1Ev) +STUB( + "4pLeCaU1ms4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEeqERKS9_) +STUB("4pQ3B1BTMgo", + _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE5_IputES3_RSt8ios_basewPcm) +STUB( + "4pTIkK11qpc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB("4pYERzbMOAw", _ZN3sce7Toolkit2NP2V26Friend7FriendsC2Ev) +STUB("4pYihoPggn8", __inet_ntop) +STUB( + "4pcS-W414Zg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "4pl9Ukrxr-w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEED2Ev) +STUB("4pmWgHLlhAQ", _ZN3sce7Toolkit2NP2V24Core5EmptyC1ERKS4_) +STUB( + "4ptWOPXRygw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEED1Ev) +STUB("4q18Y5QTpsc", mono_aot_Sce_Vsh_Accessor_Dbplt_end) +STUB( + "4q2A8iJGpDo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEC1Ev) +STUB( + "4q7k3DHyUJ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB("4q9iRNKayfw", JSScriptCreateFromString) +STUB("4qAqOs8vdRs", JNU_ThrowInternalError) +STUB("4qBL-6tYpds", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS7TusDataEE12deepCopyFromERS7_) +STUB("4qCJAabaQ6A", WKPreferencesGetIntersectionObserverEnabled) +STUB( + "4qD6QmAsqB0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEC2ERS7_) STUB("4qGrR6eoP9Y", scePthreadDetach) +STUB("4qHwSTPt-t8", _ZNSt7codecvtIcc9_MbstatetEC2ERKSt8_Locinfom) +STUB( + "4qJE+JALDrA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEppEv) +STUB( + "4qS6wdJc3hw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEC2EPS8_) +STUB("4qYZIQDcrG4", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V15Error9getReasonEv) +STUB( + "4qim3wuzH6g", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEeqERKS9_) +STUB("4qpkuvcBNyQ", GCC_except_table27) +STUB( + "4qq2WPcdLmw", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeaderC2Ev) STUB("4quckD2y7Pg", sceAmprCommandBufferSetMarker) +STUB( + "4qw2Ma5jE3M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("4qwDUAMxe4E", _ZN3sce2Np9CppWebApi7Matches2V123ResponseMatchStatistics19getPlayerStatisticsEv) +STUB( + "4qwbw0HClTc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEppEi) +STUB( + "4qz4UyiinuE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEEC2ERKSA_) +STUB("4r--aFJyPpI", _ZTSPw) +STUB( + "4r-B36POyF0", + _ZN7WebCore11RenderLayer27scrollToOffsetWithAnimationERKNS_8IntPointENS_10ScrollTypeENS_14ScrollClampingE) +STUB( + "4r1m0wnDEwk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEED2Ev) +STUB( + "4r6ywKqycdk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEppEi) +STUB( + "4r7etP2Ess8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEE11get_deleterEv) +STUB("4r9P8foa6QQ", _ZNSt14numeric_limitsItE6digitsE) +STUB("4rCdnji8r8o", _ZN7WebCore8FormData10appendBlobERKN3WTF3URLE) +STUB( + "4rHrE7phnrQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEptEv) +STUB("4rIiwRN5juk", _ZN9Inspector24TargetFrontendDispatchernaEmPv) +STUB("4rJypnZmwSw", _ZN7WebCore4Page29setFullscreenAutoHideDurationEN3WTF7SecondsE) +STUB("4rK-OPl4dic", _ZNK3sce2Np9CppWebApi7Matches2V17Subtask9getStatusEv) +STUB( + "4rK4KSfYuW4", + _ZN7WebCore7UIEvent11initUIEventERKN3WTF10AtomStringEbbONS1_6RefPtrINS_11WindowProxyENS1_13DumbPtrTraitsIS6_EEEEi) +STUB("4rNrGeXUMCU", _ZN7WebCore27PlatformMediaSessionManager26applicationDidBecomeActiveEv) +STUB( + "4rNwTKsu-Yo", + _ZN9Inspector20CSSBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "4rOxRRYQLQ0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEC2EPKS8_) STUB("4rS5zG7RFaM", scePadGetDeviceInfo) +STUB( + "4rSEgvdg+fA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "4rTJXuq4rGI", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessionsD2Ev) +STUB("4rX2bT-Bcxo", _ZN3sce2Np9CppWebApi15Personalization2V15Error16unsetReferenceIdEv) +STUB( + "4rXkglfN-zU", + _ZN9Inspector21PageBackendDispatcher17setShowPaintRectsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "4ra0u5NBWvo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEE11get_deleterEv) +STUB("4rc9KXXxd6E", _ZN8meta_gen13JpegRetriever12ConvDmsToDegERNS0_10gps_lonlatEb) +STUB("4re+MXX6ltU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEC2ERS7_) +STUB( + "4re781cCA74", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEixEm) +STUB( + "4renT0prugI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("4rn5Ptg2kuE", _ZN7WebCore20PasteboardWriterData10WebContentD1Ev) +STUB("4roTaiqqXQE", _ZN3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectatorD2Ev) +STUB("4rpx-P+kdJQ", _ZNK3sce2Np9CppWebApi6Common8IteratorImEdeEv) +STUB("4rrOHCHAV1w", _ZSt7setbasei) +STUB( + "4ruUXIlh5bg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEC1EPS8_) +STUB("4ruz0+AMzoo", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_28ActivityFeedSharedVideoStoryEED1Ev) +STUB("4rxJYR2IbIU", WKPreferencesSetMediaStreamEnabled) +STUB("4s-kfKFg+5o", _ZN3sce3Xml3Dom15DocumentBuilder26setSkipIgnorableWhiteSpaceEb) STUB("4s3lpDzi0as", sceVoiceGetMemorySize) +STUB( + "4sDjG2i3u4Y", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("4sFy+2y46mo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEptEv) +STUB( + "4sJZdDo9ZRs", + _ZN9Inspector25DatabaseBackendDispatcher21getDatabaseTableNamesElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "4sOf-Xf6ds8", + _ZN3sce2Np9CppWebApi14SessionManager2V131JoinedPlayerSessionWithPlatform8fromJsonERKNS_4Json5ValueE) +STUB("4sklOXp+9tM", ucol_getUCAVersion_67) +STUB("4sld6v+kIhU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEdeEv) STUB("4slehMAh00w", sceDebugIpmiGetChannelKidList) +STUB( + "4sugbFHRwHU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEE21intrusive_ptr_sub_refEPS7_) +STUB("4svUXLrNYXs", cairo_surface_destroy) +STUB("4syzM-L5wbk", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_28ActivityFeedSharedVideoStoryEED2Ev) +STUB( + "4szzMae5Vd0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEmmEv) +STUB( + "4t8oDmpFfGw", + _ZN7WebCore17serializeFragmentERKNS_4NodeENS_15SerializedNodesEPN3WTF6VectorIPS0_Lm0ENS4_15CrashOnOverflowELm16ENS4_10FastMallocEEENS_11ResolveURLsEPNS5_INS_13QualifiedNameELm0ES7_Lm16ES8_EENS_19SerializationSyntaxE) +STUB("4tB7KLDYBu4", _ZN7WebCore21DiagnosticLoggingKeys28networkCacheFailureReasonKeyEv) +STUB("4tDF0D+qdWk", __atomic_store_4) +STUB("4tEx7tt+b7g", + _ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody15setNeedsTmpRankERKb) +STUB( + "4tJbBwDnsng", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE5clearEv) +STUB("4tLMfOZLCD0", _ZN7CoreIPC15ArgumentDecoder16removeAttachmentERNS_10AttachmentE) +STUB("4tMXLC7QwyM", WKPreferencesGetUserTimingEnabled) +STUB("4tMeGM38DFc", _Z28SoundPlayer_PauseSurroundPanid) STUB("4tPhsP6FpDI", sceSaveDataDialogOpen) +STUB( + "4tRwkia1WzA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEC1EPS8_) +STUB("4tUDlqAckSY", mono_aot_Sce_Vsh_Lxplt) +STUB("4tUiu0CIqMM", __ubsan_handle_dynamic_type_cache_miss_abort) +STUB("4tUowCWwdyI", _ZN3sce2Np9CppWebApi7Matches2V124ResponseTeamMemberResultD2Ev) +STUB( + "4tUtQ7uGvps", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEC2Ev) +STUB("4tVyrIS9VDM", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToCancelTicketD2Ev) +STUB("4tWoxO+7N2M", uregion_getRegionFromNumericCode_67) +STUB("4tccmWPe104", _ZN3sce2Np9CppWebApi6Common8IteratorINS2_6StringEEC1EPS4_) +STUB("4tfuolBZ-fw", _ZN3JSC2VM15dumpRegExpTraceEv) +STUB( + "4tjfcW2t-Sk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE10setContextEPNS2_10LibContextE) +STUB("4to3tThESn0", FTA_Support_Format_Bdf) +STUB("4tpaGyvQ5iI", mono_context_set) +STUB( + "4tv8n3wWquI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEEcvbEv) STUB("4u58d6g6uwU", sceNpTusSetDataAAsync) +STUB("4u5CIZrB1wU", WKPageLoadFileWithUserData) +STUB( + "4uEK7w8ZZ6Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEEdeEv) +STUB("4uHaJsaPZmE", coil_freehostent) +STUB( + "4uHxH05niUM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEE5resetEPS9_) +STUB( + "4uJ3RsdOK0w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEC2EPNS2_10LibContextE) +STUB("4uJJNi+C9wk", isalnum) +STUB("4uKTGWDz1xE", _ZN3JSC2VM22weakObjectRefSpaceSlowEv) +STUB( + "4uPYmU3Fn2A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "4uRWzqLISDA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "4uUaYIjWy-U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE3endEv) +STUB("4uYhaXaveRc", monoeg_g_setenv) +STUB("4ufGsV2Qxvo", _ZN7WebCore21PlatformKeyboardEvent20currentCapsLockStateEv) STUB("4uhgVNAqiag", _sceNpManagerDestroyMemory) +STUB("4ulPySgBJGQ", _ZN9Inspector20InspectorTargetAgentdlEPv) +STUB( + "4uoScRtKM+Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEED1Ev) +STUB("4upSS+z-5Xs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEC1Ev) +STUB( + "4uq3r-tjVz8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEC1EPS8_) +STUB( + "4uyEWPp6GzY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEEC1ERKSA_) STUB("4uyHN9q4ZeU", sceAudio3dObjectSetAttributes) +STUB("4uzOc9paw8A", _ZN3WTF9MediaTimeD2Ev) STUB("4v+otIIdjqg", sceGnmDrawIndirect) +STUB("4v1Cn6SWlQE", _ZN3IPC15ArgumentDecoder16removeAttachmentERNS_10AttachmentE) +STUB("4v48g7H+Dik", + _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBodyC1EPNS1_6Common10LibContextE) +STUB("4v4AzFlXiQM", _ZNK7WebCore9FrameView13isTransparentEv) +STUB("4v8YK4hVhyQ", rgctx_fetch_trampoline_rgctx_98_p) +STUB("4vCyIflWano", _ZNK3sce2Np9CppWebApi7Matches2V120RequestPlayerResults7getRankEv) +STUB("4vEQrYUFJxI", _ZN7WebCore15startOfDocumentERKNS_15VisiblePositionE) +STUB("4vHxgXZ9HV8", glUniform1uiv) +STUB("4vI9lIREBzc", _ZN3PAL10systemBeepEv) +STUB("4vKq7BQr9Og", _ZN7WebCore11SimpleRangeC2EONS_13BoundaryPointES2_) +STUB("4vV0B-6mB-A", pS5) +STUB( + "4vWpUy4V6vo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "4vdwryvSYfk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEneERKS9_) +STUB( + "4ve493w3vC4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEC1EPNS2_10LibContextE) STUB("4veE0XiIugA", sceSystemServiceGetMainAppTitleId) +STUB( + "4vfv0VZ60zE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEppEi) STUB("4vkZwDJbMx0", sceKernelGetThreadName) +STUB( + "4vo-+wduNZw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE4initEv) +STUB("4voIrf4fQWA", _ZN3JSC7Symbols32promiseFlagsIsHandledPrivateNameE) +STUB( + "4vp9R+4cauw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "4vrpU4aZF5g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEaSERS7_) +STUB("4vvHlyI6cvk", _ZN3JSC14JSGlobalObject16addStaticGlobalsEPNS0_18GlobalPropertyInfoEi) +STUB("4w1AOvC3ulM", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIdEppEv) +STUB( + "4w7i5dQEoAs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEppEv) +STUB("4w7xlxHan80", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEmmEv) +STUB( + "4w8fqvVVFJs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEC1Ev) +STUB( + "4wAbvDDNr-8", + _ZN3JSC14StructureCache43emptyStructureForPrototypeFromBaseStructureEPNS_14JSGlobalObjectEPNS_8JSObjectEPNS_9StructureE) +STUB("4wBErCRIYHQ", uspoof_areConfusableUTF8_67) STUB("4wDGvfhmkmk", sceNetConfigDelRoute6) STUB("4wFdhvGOlHk", sceSystemServiceUsbStorageUnregisterCallbackForMapAvailable) +STUB("4wHuG6WpyF0", _ZN3WTF14SymbolRegistryD1Ev) +STUB("4wIsLoc+FDo", zeroes) +STUB("4wJaGIskMkw", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE5emptyEv) +STUB("4wL5uCteSsQ", nn_term) +STUB( + "4wOwwfwDbq8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE7popBackEv) +STUB( + "4wSU25+iIxg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEE7get_refEv) STUB("4wSze92BhLI", sceKernelWrite) +STUB("4wWkKh5lfdI", GCC_except_table16) +STUB( + "4wb6uJ8ZF58", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("4wcUDWBEyHY", uspoof_getCheckResultNumerics_67) +STUB("4wdPRamGNMA", _ZN3sce7Toolkit2NP2V23TUS13TusDataStatusD2Ev) +STUB("4wfTy4dm2A8", GCC_except_table95) +STUB("4whCiYTOLzQ", uprv_decNumberRemainder_67) +STUB( + "4wmDCLUYBLQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEEC2ERKS9_) +STUB("4x0HXWXB6rQ", _ZThn136_N7WebCore16HTMLMediaElement16returnToRealtimeEv) +STUB("4x33lGf0eEE", _ZN9Inspector19InspectorAuditAgentnwEm) +STUB( + "4x3tqqL9RD4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE5emptyEv) STUB("4x5Im8pr0-4", scePadGetInfoByPortType) +STUB( + "4x7IL0nmmlI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEE11get_deleterEv) +STUB("4x9f9f50VxA", _ZN7WebCore11DisplayList9ClearRectC2ERKNS_9FloatRectE) +STUB( + "4x9s6VzXnDw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE8pushBackERKS8_) +STUB("4xAjFW5vRIg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116InitialJoinStateEEneERKS7_) +STUB( + "4xDKCHLPABU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("4xG87W9dTSg", FT_TrueTypeGX_Free) +STUB("4xIZlFGA6Uo", _ZN15AbstractStorage14DailymotionAPIC2Ev) +STUB("4xLuLt-6LXI", _ZN7WebCore6JSFile14finishCreationERN3JSC2VME) +STUB( + "4xMc6mgQTJM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEEaSERSA_) +STUB("4xSvkMgasQc", _ZN3JSC18GCActivityCallbackD0Ev) +STUB("4xZUs4fpZnQ", popen) +STUB( + "4xfsTd0XS2I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEED2Ev) +STUB("4xoMS1UQvKI", SwCtrlSinkStreamStart) +STUB("4xpmxk1v2KI", _ZN7WebCore8PositionC1EPNS_4NodeEiNS0_10AnchorTypeE) +STUB("4y-197YEH2U", _ZN4Manx5MutexC1Ev) +STUB( + "4y0ZppfMqwo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEEaSERKSA_) +STUB("4y2t1NszVno", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament6EventsEE19setCustomReturnCodeEi) +STUB("4y7bFIfDvqM", _ZN3sce7Toolkit2NP9Utilities6FutureIiEC2Ev) STUB("4y9RNPSBsqg", scePadIsMoveConnected) +STUB( + "4yAMjadREzc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEppEv) +STUB("4yB8kESwxUs", uprv_min_67) +STUB("4yBXGLKCG-s", _ZN3NTF21ResourceRequestLogger5flushEPv) +STUB( + "4yC41GMuUq8", + _ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime15PropertyPreview7SubtypeEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE) +STUB("4yEgSfvxY80", fuse_reply_open) +STUB("4yEj4CWqle4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEE5resetEPS4_) +STUB( + "4yGek1Vzk-0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE5clearEv) +STUB( + "4yJANm8CY0g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEE11get_deleterEv) +STUB("4yKPpCV+JVs", mono_aot_ReactNative_Vsh_Commonjit_got) +STUB("4yKs78fNg00", _ZN3sce7Toolkit2NP2V27Ranking12RangeOfRanksC1ERKS4_) +STUB("4yQbK3wYek8", _Z20Ime_DicAddWordNativeimP11_MonoStringS0_) +STUB( + "4yQjT2nvL2g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEED2Ev) +STUB("4ySoP73IpDQ", _ZN7WebCore22EmptyFrameLoaderClient17cancelPolicyCheckEv) +STUB("4ySyyH7WLNQ", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEEdeEv) +STUB("4yTdU9Hg-Rw", _ZN7WebCore18SecurityOriginData9fromFrameEPNS_5FrameE) +STUB( + "4yU8Ud0rnNg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEE3getEv) STUB("4yWqjTZtvs4", sceCompsoitorGetGpuClock) +STUB("4yaTIedbZwQ", _ZN7WebCore22GraphicsLayerTransformC1Ev) +STUB( + "4yhgTW7UB6c", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectator9terminateEv) +STUB("4yiUxzwWvKg", _ZN7WebCore11MathMLNames9mtableTagE) +STUB( + "4ykOxuSgNXI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEC1EPKS8_) +STUB( + "4yn7tWIvuGo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("4yojiOtWzMw", _ZN7WebCore9HTMLNames13directionAttrE) +STUB("4ypn4qU4FaA", delCommInfoList) +STUB( + "4ypnKt9Bco0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEC2EPS6_PNS2_10LibContextE) STUB("4ys00CRU6V8", sceUserServiceGetGlsLiveQuality5) +STUB("4yt9cD1qcEI", FT_Stream_GetUOffset) +STUB( + "4yti+ACB8CA", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi27ParameterToLeaveGameSession12getaccountIdEv) +STUB( + "4yvw4IPHV4Q", + _ZN15AbstractStorage15FacebookStorage15CreateRecursiveERKSbIcSt11char_traitsIcENS_8StlAllocIcEEENS_8ItemTypeEPSt10shared_ptrINS_4ItemEE) +STUB( + "4ywAI+aDezU", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUser10setslotIdsEPKc) +STUB( + "4yx8t5vDxW0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEaSERKS9_) +STUB("4yylLfO254U", mono_btls_x509_store_ctx_get_untrusted) STUB("4z-nQO02eGQ", sceDeci4hDrfpChkInValidDeciHead) +STUB("4z03CDKv6IA", _ZNK3sce2Np9CppWebApi14SessionManager2V16Friend14accountIdIsSetEv) +STUB("4zE6cBWL8ac", _ZN7WebCore11WindowProxyD2Ev) +STUB("4zFp5aq78zM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE8copyFromERKS7_) +STUB( + "4zHFAGjwRO0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEixEm) STUB("4zLOHbt3UFk", sceNetConfigSetDefaultRoute6) +STUB( + "4zOYhbIoadI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEE5resetEPS6_) +STUB("4zSU9nkv-vg", + _ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody6toJsonERNS_4Json5ValueEb) +STUB("4zU8rDPa4r4", AacsPermissionActivate) STUB("4zUh1kGuaiw", sceKernelReserveSystemDirectMemory) +STUB("4zXQk+xDQRM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE5emptyEv) +STUB("4zYmu-s0cLU", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRanking10setboardIdEi) +STUB( + "4zYstZhecug", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("4zhc1xNSIno", _ZTIPKj) +STUB("4zjydcbDOv4", _ZN7WebCore20GraphicsContextStateC1Ev) +STUB("4zl-9Emcwhc", curl_mvfprintf) +STUB("4znIAFaCTDE", _ZN3WTF7RunLoop6isMainEv) +STUB("4zord7MtPtw", _ZN2GK9PlayerPSN13initializeLibEb) +STUB("4zpOeFS4864", _ZN3sce7Toolkit2NP2V24Core7Request20DefaultRequestParams13ASYNC_DEFAULTE) +STUB("4zrm6VrgIAw", _ZN3sce4Json5ValueaSERKS1_) +STUB("4zsaU7SmJeE", WKNavigationDataCopyTitle) +STUB("4zukl3hNxak", _ZN8meta_gen11MsvPromoter20convDatetimeToStringEl) STUB("4zxevggtYrQ", sceNpLwMutexDestroy) +STUB("5++VaMgcCng", _ZN7WebCore23ISOSchemeInformationBox11boxTypeNameEv) +STUB( + "5++Y3V7Ig0g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEED2Ev) +STUB("5+-ZFSRQ0+k", u_getTimeZoneFilesDirectory) +STUB( + "5+0KnhHX4hA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEppEv) +STUB("5+3b0iloKdw", _ZN7WebCore24DocumentParserYieldTokenD1Ev) +STUB("5+4NY7hFR-c", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEixEm) +STUB( + "5+64jNQOnNo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEE7add_refEv) +STUB("5+7EhH0NgGU", _ZN3sce2Np9CppWebApi6Common13ParameterBaseD2Ev) +STUB("5+ArYJZjo30", mono_valloc) +STUB("5+DHSLOxhyU", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE7reserveEi) +STUB("5+Do3zXMCGk", _ZNK7WebCore12ChromeClient10screenSizeEv) +STUB("5+HWkh86b6A", __asan_report_store8_noabort) +STUB("5+JpnCyOLuI", Java_com_sony_bdjstack_org_bluray_vfs_VFSManagerImpl_isDiscEjected) +STUB( + "5+QHKBkULCM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEixEm) +STUB("5+U+mGZV+SM", X509_INFO_free) +STUB( + "5+c4bXqSClA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEEaSERSA_) +STUB("5+d7lpGjgQ4", _ZN12video_parser5vpcom8datetime8DateTime13GetTimeFormatEv) +STUB( + "5+fGZdCSoY0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEC2EPS8_) +STUB("5+iE70B6-hc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE5beginEv) +STUB("5+k4AJAOi9s", _ZN7WebCore4Page17ensureTestTriggerEv) +STUB("5+lE4DXhz5g", _ZN7WebCore19JSAnimationTimeline7destroyEPN3JSC6JSCellE) +STUB( + "5+lIVcQqh6s", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Console12ChannelLevelEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB( + "5+lvvuRknDY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE8copyFromERKSA_) +STUB( + "5+pq5C5vcOk", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getInteger2Ev) +STUB("5+pvaWRWMT8", + _ZN6WebKit12ChildProcess21initializeProcessNameERKNS_36ChildProcessInitializationParametersE) STUB("5+r7JYHpkXg", sceAudioOutGetSparkVss) +STUB( + "5+tqnKIoU44", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEE11release_refEv) STUB("5+u4Z6FmQsc", sceUserServiceGetHrtf) +STUB( + "5+xV+PO5caM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEED2Ev) +STUB("5-0d98Ed20o", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEC1Ev) STUB("5-2agAeaE+c", sceRemoteplaySetLogLevel) +STUB("5-3wdp3FVtc", _Unwind_GetIPInfo) +STUB("5-CkWwYfClI", uset_spanBackUTF8_67) +STUB( + "5-GWTO14U14", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE5beginEv) +STUB( + "5-HLSycveqU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEC2EPS6_PNS2_10LibContextE) +STUB( + "5-HhMjyoKeQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEEaSERKSA_) +STUB( + "5-I920hFJ0I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEE7add_refEv) +STUB("5-JogjFzMsQ", utrace_functionName_67) +STUB("5-MfXawDf7w", + _ZN7WebCore12SettingsBase21setStandardFontFamilyERKN3WTF12AtomicStringE11UScriptCode) +STUB( + "5-SN41F0lPQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEEC1Ev) +STUB("5-UHpg8s00I", _ZN3sce7Toolkit2NP2V24Core12ResponseBase13getReturnCodeEv) +STUB("5-ZoQoEBymk", _ZN3sce3Xml3Dom8NodeList10removeItemENS1_6NodeIdE) +STUB("5-aNCKDNRNs", _ZN9Inspector27InspectorFrontendDispatcherC1ERNS_14FrontendRouterE) +STUB( + "5-fuw85833w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEED1Ev) +STUB( + "5-hOVu7jBQU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE5clearEv) STUB("5-ncLMtL5+g", pthread_mutex_setspinloops_np) STUB("5-rYyD+-vHQ", sceKernelAddProcessToCanvasMap) +STUB( + "5-t-0F3BAYE", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V132NatConnectivityPropertiesFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_25NatConnectivityPropertiesEEE) +STUB("5-tgt0nhe68", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setSubtitleLang) +STUB("5-ulmjWNkbQ", WKPreferencesSetShouldRespectImageOrientation) +STUB("5-xFkXRpd6w", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container23unsetContentDescriptorsEv) +STUB("5-z1quqcDYo", FTA_Export_Module_sfnt) STUB("500KORghSZM", sceClPthreadMutexInit) +STUB("503Mq+6DpaI", delegate_virtual_invoke_32) +STUB( + "503mRdm0JSk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE5abortEv) +STUB("503z5IFHqFQ", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead27unsetJoinableSpecifiedUsersEv) STUB("504MPu5OUbg", sceSblACMgrCheckPlatformDLL) +STUB( + "505a5d0-Tro", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEiRNS2_10LibContextEPT_m) +STUB( + "5074nb+MUAE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEaSERKS7_) +STUB( + "50BNmpDFYKs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEE11release_refEv) STUB("50BvYYzPTsY", sceNpTrophySystemNetSyncTitle) +STUB("50EiGezGmk8", _ZN3IPC15ArgumentDecoder6decodeERl) +STUB( + "50GAmNwwAkI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("50HTRXvbW-k", FTA_Remove_Module_sfnt) +STUB("50HbkESZU-E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEED1Ev) +STUB("50IUIu7683o", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE5beginEv) +STUB("50ML-yo24PU", _ZN7WebCore11ImageSource4sizeEv) +STUB("50Ovbxril00", _ZN3sce7Toolkit2NP2V24Core7Request16TerminateServiceD1Ev) STUB("50R2xYaYZwE", sceSslReuseConnection) +STUB("50TB0tEQ3g4", _ZN7WebCore8Settings37setPunchOutWhiteBackgroundsInDarkModeEb) +STUB("50VkfE6TpKg", _ZTVN7WebCore18PluginInfoProviderE) +STUB("50W6WJgJaQ8", + _ZN3sce2Np9CppWebApi12Leaderboards2V123RecordScoreResponseBodyC1EPNS1_6Common10LibContextE) +STUB("50YDZbJAa6s", eglPigletMemoryInfoSCE) +STUB("50a9aq8a5AQ", WKSecurityOriginCreateFromDatabaseIdentifier) +STUB("50aDlGVFt5I", _ZTIPKDi) +STUB( + "50gyAQRO03Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEED1Ev) +STUB("50jnl9s+4rA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEE7get_refEv) +STUB("50k7Z03ceQg", mono_aot_Sce_Vsh_UserServiceWrapperjit_code_start) +STUB( + "50kPBVRrbUw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEmmEi) +STUB( + "50oxAQ8IzrQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEC1EPNS2_10LibContextE) +STUB( + "50puy7vggJg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEE7add_refEv) +STUB( + "50vxAafzggA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEED1Ev) +STUB( + "50wiuSx05BY", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB( + "50xe3TrAJ20", + _ZN3JSC21createUint8TypedArrayEPNS_9ExecStateEPNS_9StructureEON3WTF6RefPtrINS_11ArrayBufferENS4_13DumbPtrTraitsIS6_EEEEjj) +STUB( + "510V1yCtlbI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB( + "515v1Rp02ME", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEC2EPS8_) +STUB( + "515w1NyHQR4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE7reserveEi) +STUB( + "516ii4UFaLs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEC1EPS8_) +STUB("5183YWrtwcs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEED1Ev) +STUB( + "51B47S6mJEM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEC2Ev) +STUB("51FdIXsq3Y4", mono_aot_System_Runtime_Serializationplt_end) +STUB("51N8TxsEV0Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEEptEv) +STUB( + "51NNNNiW57U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEC1EPNS2_10LibContextE) +STUB( + "51NiGwPy794", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEEC2Ev) +STUB( + "51Q7kg1Kz9M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEE7add_refEv) +STUB("51RsoHX3cVI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge13ChallengeDataEE3getEv) +STUB( + "51UN613jvmo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEE7add_refEv) +STUB("51VF-fi1yFQ", unorm2_spanQuickCheckYes_67) +STUB("51YpII41z34", eglSwapBuffers) +STUB( + "51a7n5-9YDo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEEC1ERS9_) +STUB( + "51eEmahmxbU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("51ePOmhWku4", _ZN3JSC46UnconfigurablePropertyChangeEnumerabilityErrorE) +STUB("51fZjLwOe-o", mono_aot_Sce_Vsh_Np_AuCheckunbox_trampolines_end) STUB("51jH2C+it2s", sceFiosOpGetRequestCount) +STUB( + "51kG+EqvxJk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEED2Ev) +STUB( + "51nyuCov02Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEE7get_refEv) +STUB( + "51q02IXvKnU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEEC1ERKSA_) +STUB( + "51viQF0mxts", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("51zlE5TH2-8", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V122UploadDataResponseBodyD1Ev) +STUB("52+a3D15aw4", glTexImage2D) +STUB("520gOzLyXYg", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEED2Ev) +STUB( + "523Kzya5eLI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEE11get_deleterEv) +STUB( + "5256kx+hJFY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEEC2ERKSA_) +STUB("525iEk4QDKc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEC2ERKS7_) +STUB("52AlYvq+dmk", _ZN3sce2Np9CppWebApi6Common10InitParamsD1Ev) +STUB( + "52IEZjtCAzk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEEaSERKS9_) STUB("52NcYU9+lEo", sceKernelRename) +STUB( + "52QCt9SI414", + _ZN3JSC7JSArray32tryCreateUninitializedRestrictedERNS_25ObjectInitializationScopeEPNS_17GCDeferralContextEPNS_9StructureEj) +STUB( + "52Wr18BA1Z4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE7popBackEv) +STUB( + "52ZjxBEzwf8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEeqERKS9_) STUB("52bk-Ucb5s0", sceFiosOpGetBuffer) +STUB("52g7rlbVA+s", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEE11release_refEv) +STUB("52gEDarUguI", _ZN9Inspector22InspectorDebuggerAgent14removeListenerERNS0_8ListenerE) +STUB("52lO2B7t-V0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEED2Ev) +STUB( + "52n9tmfDgpQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEppEv) STUB("52pL2GKkdjA", sceSaveDataSetEventInfo) +STUB("52r68vPvrBA", aio_suspend) +STUB( + "52ufjIRUXuE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE21intrusive_ptr_add_refEPS9_) STUB("52wOUjm4hZA", sceSystemLogger2NativeQueueClientSetDeliveryResult) +STUB("52xCgnSgAkY", _ZN3WTF17StringPrintStream8toStringEv) +STUB("52xmQd6HEaE", _ZN3JSC8JSObject19convertToDictionaryERNS_2VME) STUB("52xo6EJ+8O8", sceUserServiceGetNotificationSettings_2) STUB("532IaQguwMg", scePthreadMutexattrSetprioceiling) +STUB("533LxprVn0A", Java_com_sony_gemstack_org_havi_ui_HBackgroundImageDecoder_display) +STUB("534mR13VcpU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4DataEE19setCustomReturnCodeEi) +STUB( + "535xR-icw38", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10setString8EPKc) STUB("537ZOR325ZI", sceSpPthreadCondattrInit) STUB("538bRGc6Zo8", sceCesMbcsUcsContextInit) +STUB( + "53D6DgxoF7E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEEC2ERSA_) +STUB( + "53DH+ZDnTP4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEED1Ev) +STUB( + "53F+8DeqeTk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE8pushBackERKS8_) +STUB( + "53FZWhFrMhs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEED2Ev) +STUB("53HX8mvBcAg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEEC2Ev) +STUB( + "53HviDeINCI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEC2Ev) +STUB("53OH1UTXxpA", + _ZNK3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform13platformIsSetEv) +STUB( + "53UKXjY7g0Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEE11get_deleterEv) +STUB( + "53XdV-GugyM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEE5resetEPS9_) +STUB("53XsM4QkTfc", _ZN7WebCore23commonInclusiveAncestorERNS_4NodeES1_) +STUB("53YC8+zD9eU", _ZTVN7WebCore11DisplayList17DrawFocusRingPathE) +STUB("53ZFAkGdDkU", WKBundleFrameGetVisibleContentBounds) +STUB( + "53chqCI3PiI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEC1ERKS7_) +STUB( + "53cpI185v8M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("53dHGwil0DU", jpeg_mem_dest) +STUB("53eCdQ7MMEc", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets16setrulesetFilterEPKc) +STUB( + "53o1qsOLFII", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE7popBackEv) +STUB("53s-hczaH5A", _ZThn120_NK7WebCore16HTMLMediaElement11currentTimeEv) +STUB( + "53s3GPyomgY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEEC2ERKSA_) STUB("540lotO7oHE", sceAppInstUtilInitialize) +STUB("542QUkz8cns", Java_com_sony_gemstack_io_FilePath_n_1makecanonical) +STUB("543BALhGa98", + _ZThn24_N9Inspector22InspectorDebuggerAgent20setPauseOnAssertionsERN3WTF6StringEb) +STUB("5480seCq-jQ", _ZN7WebCore8SVGNames14pathLengthAttrE) +STUB( + "54Awhl1UJw4", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetInteger5Ev) +STUB("54Fhpv4OFfw", rgctx_fetch_trampoline_mrgctx_126_p) +STUB("54HrgUIQHOk", cairo_glyph_path) +STUB( + "54KWYt3g2kU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEneERKS9_) +STUB("54Tc57Y9FUA", _ZN9Inspector35DOMDebuggerBackendDispatcherHandlerC2Ev) +STUB("54YE-dy2Qfk", _ZN3sce2Np9CppWebApi6Common6VectorIfE6insertENS2_8IteratorIfEERKfRS6_) +STUB( + "54YMjiFCx2o", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB( + "54YuQ+Xjb38", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("54e6aO3EayI", _ZN7WebCore6Path2DnaEm) +STUB("54gwGJf2rwo", _ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_11ProductInfoEE8max_sizeEv) +STUB("54i4mVgs+44", + _ZN3JSC19HeapSnapshotBuilder38setOpaqueRootReachabilityReasonForCellEPNS_6JSCellEPKc) +STUB( + "54kPc1if2e4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE21intrusive_ptr_add_refEPS9_) STUB("54phPH2LZls", sceVoiceStart) +STUB( + "54rpfdOdYo4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEC2EPS6_PNS2_10LibContextE) +STUB( + "54sBvmlCIuk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "54sJe2WblKI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEEC2EPSA_PNS2_10LibContextE) +STUB( + "55+iGrHlGr4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEdeEv) +STUB("55-0EcgDmz8", _ZN3WTF13MetaAllocatorD2Ev) +STUB("552Oh3lsLHQ", uenum_unextDefault) +STUB( + "55ALCWTmXe0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEE3getEv) +STUB( + "55AQ2NTO+iU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEC1EPS8_) +STUB( + "55C+GhvF9pQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEC1ERS7_) +STUB( + "55DWKnsWGnY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE5beginEv) +STUB("55Mn7EPyCAg", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE7reserveEi) +STUB("55QR+rnq6FI", WKGeolocationManagerSetProvider) +STUB( + "55QZrzatF74", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE7reserveEi) STUB("55U6ZRnK8+A", sceCesRefersUcsProfileIso8859_13) +STUB("55U74xVRi-c", _ZN4Manx11MediaPlayer10cancelLoadEv) STUB("55aShElDfY4", scePthreadMain) +STUB( + "55btamARQFs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEC1EPS6_PNS2_10LibContextE) +STUB("55dAn2Lp0j4", _ZN3sce7Toolkit2NP2V212ActivityFeed7StoryIdD1Ev) +STUB("55jv0M4baUA", mono_aot_Sce_Vsh_ErrorDialogUtilWrappermethod_addresses) +STUB( + "55k2W2vK5UY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEED1Ev) +STUB("55nMATnNlS4", _Ux86_64_getcontext) +STUB("55ngJr+I6YI", cpp_demangle_read_name) +STUB( + "55tnwOSv30w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEC2Ev) +STUB("56+wNliTZSY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEEC1EPS4_PNS2_10LibContextE) +STUB("561j4eDPGGE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEcvbEv) +STUB("561zLg7hORI", _ZN3JSC13DebuggerScope6s_infoE) +STUB("564-xfiutdc", _ZN7WebCore9plainTextERKNS_11SimpleRangeEtb) +STUB( + "567jEB4JFwM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEC2Ev) +STUB("56DcxnzDcpg", _ZN7WebCore8SVGNames19diffuseConstantAttrE) +STUB( + "56HRjObk5FQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEEC1Ev) +STUB( + "56Ht5Yloyfc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEE7add_refEv) +STUB( + "56NYbWlyAPE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "56NbYD9iAlg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) STUB("56QLTqx911s", sceNpUniversalDataSystemEventPropertyObjectSetInt64) +STUB( + "56W9tl3fAEY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE4sizeEv) +STUB("56Wsrmx3txk", _ZN3WTF10ParkingLot9unparkOneEPKv) STUB("56bliV+tc0Y", sceUserServiceSetGlsCameraEdgeLevel) +STUB("56cL-Bvyo44", _ZN3sce7Toolkit2NP2V28Commerce14ProductDetails28PRODUCT_LONG_DESCRIPTION_LENE) +STUB("56eZPuFnFFo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEptEv) +STUB("56ekFBUjiYU", _ZN3sce7Toolkit2NP2V29Messaging7Request27GetReceivedGameDataMessagesD1Ev) +STUB("56f34U0xe8c", glGetInternalformativ) +STUB("56gTiiSPo5I", _ZN3sce2Np9CppWebApi6Common6VectorIlEC2Ev) +STUB("56lwe489dZ0", _ZN3sce7Toolkit2NP2V27Session10InvitationC2Ev) +STUB("56zNcQIs4+U", _ZN7WebCore11FrameLoader11shouldCloseEv) +STUB( + "57AiRDvLhkA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEED1Ev) +STUB("57B4p3HC1us", uenum_openCharStringsEnumeration) +STUB("57DWOV4h+so", _ZN3JSC8Debugger18setProfilingClientEPNS0_15ProfilingClientE) +STUB("57Jmwvu69bo", mono_thread_get_managed_id) +STUB( + "57MiiNgpqGo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "57NVOfUBmiw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "57ST1U27ZxY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEEcvbEv) +STUB("57WAc7JREYI", _ZN3WTF14AtomStringImpl14lookUpSlowCaseERNS_10StringImplE) +STUB("57XmD42P9gQ", _ZN4IPMI4impl10ClientImpl16invokeSyncMethodEjPKvmPiPvPmm) STUB("57ZK+ODEXWY", sceKernelAddTimerEvent) +STUB( + "57fPwzYZiCY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEE11release_refEv) +STUB("57hBP8lBBC4", ures_getUInt) STUB("57labkp+rSQ", sceAgcDcbAcquireMem) +STUB("57mMrw0l-40", _ZNSt6_WinitC2Ev) +STUB( + "57n9Dzo68ow", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEppEv) +STUB("57nl0V2pVZY", Java_java_net_PlainDatagramSocketImpl_datagramSocketClose) +STUB( + "57qD5+5Rfno", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEcvbEv) +STUB("57r68Byk4gk", _ZN3JSC9CodeBlock19baselineAlternativeEv) +STUB( + "57rzRryzsBk", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeaders15setCacheControlERKNS1_6Common6StringE) +STUB( + "589Hj6gCFu0", + _ZN3sce7Toolkit2NP2V26Trophy19getUnlockedTrophiesERKNS3_7Request19GetUnlockedTrophiesEPNS2_4Core8ResponseINS3_16UnlockedTrophiesEEE) +STUB( + "589Iv4F6keU", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody21setTotalVariableCountERKi) +STUB("58ATZ7hxU2g", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence12Notification14PresenceUpdateEED2Ev) +STUB("58CIUaViW+k", u_isJavaIDStart) +STUB("58CUfuxZsUg", _ZN3JSC11VMInspector16isValidCodeBlockEPNS_2VMEPNS_9CodeBlockE) +STUB( + "58Cjd7PzpdE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEC2Ev) +STUB( + "58CkS0ieIm4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEC1EPS8_) STUB("58GfHBfwpOY", sceKernelGetQafExpirationTimeNotafterForRcmgr) +STUB( + "58HnTZbC0+k", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfiles10initializeEPNS1_6Common10LibContextEPKc) +STUB("58J79QECdTA", _ZN3WTF10AtomString6numberEm) +STUB( + "58bzh57vGv8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEdeEv) +STUB( + "58ebZk0fJEQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEixEm) +STUB("58gHhliZIgE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE3endEv) +STUB("58jj0FDsGSk", pio2_3tlo) +STUB("58mTXoDizKM", _ZN7WebCore20ISOOriginalFormatBoxD1Ev) +STUB( + "58oSHlK49sQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEC2ERKS7_) +STUB( + "58tQ8xO9Bi0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEaSERKSB_) STUB("58v9tSlRxc8", sceRemoteplayImeNotifyEventResult) +STUB( + "58vr16ibHgM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEC2Ev) +STUB("58xOuBct8co", _ZN7WebCore6ISOBoxdaEPv) +STUB( + "59-DaqXtgMs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE21intrusive_ptr_sub_refEPS9_) STUB("595JFF0TQeo", sceApplicationDebugSpawnDaemon) +STUB("59E5fECPIPw", _ZN3JSC8DebuggernwEm10NotNullTagPv) +STUB( + "59E95MocP2Q", + _ZN3sce2Np9CppWebApi14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBody12setAccountIdERKm) STUB("59Il7nyszck", _sceNpIpcDefaultMallocImpl) STUB("59JzpduJC-k", sceSpPthreadMutexattrDestroy) +STUB("59RwGyLk84s", uprv_mapFile_67) +STUB("59S26y-1Ono", _ZN7WebCore9HTMLNames10itemidAttrE) +STUB("59ZJ9flQTpA", + _ZN7WebCore21NetworkStorageSession47resetCrossSiteLoadsWithLinkDecorationForTestingEv) +STUB("59ZoWcKl5v8", + _ZNK3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody16getMinScoreLimitEv) +STUB("59aOFn29ZvU", __cxx_global_var_init .37) +STUB( + "59jr3NWR3i0", + _ZN3sce2Np9CppWebApi14ConnectAccount2V216PartnerTokensApi26ParameterToGetPartnerToken9terminateEv) +STUB("59kubE57kwA", _ZN3JSC9JSONParseEPNS_9ExecStateERKN3WTF6StringE) +STUB("59mYlsSHdtY", _ZN2sh14ShaderVariableC1Ev) +STUB("59oywaaZbJk", _ZTVSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE) STUB("59tL1AQBb8U", sceHttpUnsetEpoll) +STUB( + "59tRZPLqjxE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("59wLmumrkno", _ZN7WebCore4Page30setNeedsRecalcStyleInAllFramesEv) STUB("59yDtw0EuFI", sceVisionManagerGenerateRegisterUserDataInitialize) +STUB("5A0dlaindAY", _ZN7bmalloc29StaticPerProcessStorageTraitsINS_11EnvironmentEE7Storage8s_objectE) +STUB( + "5A1JkOFCwqg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEptEv) +STUB("5A1ghKVPits", _ZNK3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer16customData1IsSetEv) +STUB("5A5zNbX2eqA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEEC1Ev) +STUB("5A93XZbySDE", Java_java_awt_GnmImage_clonePSD) +STUB("5A9QHOsqHvo", + _ZN7WebCore24CoordinatedGraphicsLayerC1ENS_13GraphicsLayer4TypeERNS_19GraphicsLayerClientE) +STUB("5A9f4BE9kWw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEaSERKS7_) +STUB( + "5AA4MnTQPTQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEC2ERKS8_) +STUB("5AKCnEfGT+Y", ures_getBinary) +STUB("5AL8k9c6Poc", _ZNK15AbstractStorage12LocalStorage10GetServiceEv) +STUB("5AMS0IntU8I", creat) +STUB("5AN3vhTZ7f8", _FPoly) +STUB("5ASnwTJcyzM", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEptEv) +STUB("5AYZm1ZgpwA", _ZN3sce2Np9CppWebApi6Common8IteratorIfEC2EPf) +STUB("5AYcEn7aoro", wcstoul) +STUB("5AZPp99ogrc", _ZNK3sce4Json5Array8iteratorneERKS2_) +STUB("5AfAYG74PQE", _ZN7WebCore11HistoryItemC1ERKN3WTF6StringES4_) +STUB("5Ag8q0zzoo8", udata_readInt16) +STUB( + "5Ah9JVr6u5Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE10setContextEPNS2_10LibContextE) +STUB("5Akd5zFpylM", _ZN3sce7Toolkit2NP2V210Tournament27TeamVsTeamTournamentDetailsaSERKS4_) +STUB( + "5Ap2TcCYIJc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEEC1ERKSA_) STUB("5AtqyMgO7fM", sceGnmSdmaOpen) STUB("5AuWFbVvqTU", sceDepthLoadCalibrationData) +STUB( + "5AvSpOCNyGg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEptEv) +STUB("5B+RW4LNIzg", fuse_chan_new_compat24) +STUB("5B+TSfX4cRc", _ZN9Inspector28DOMStorageFrontendDispatchernwEm) +STUB( + "5B1RHTrNZDY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEplEm) +STUB( + "5B1liGtUSpE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEmmEi) +STUB("5B3XPC0hGC0", WKWebsiteDataStoreSetStatisticsGrandfathered) +STUB( + "5B6Iz7u0m5Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEEdeEv) +STUB("5B891j8wVb0", _ZNK3WTF7SecondsplENS_13MonotonicTimeE) +STUB("5B9XA9bFUy4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V111OfferStatusEEeqERKS7_) +STUB("5B9yA8ziBGo", uspoof_getSkeleton_67) +STUB( + "5BBSKModVTA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE6resizeEj) +STUB("5BCa3NjIBck", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEdeEv) +STUB( + "5BFKk+6wC-Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEE11release_refEv) +STUB( + "5BI6Ocwgrds", + _ZN9Inspector25NetworkFrontendDispatcher17requestWillBeSentERKN3WTF6StringES4_S4_S4_NS1_6RefPtrINS_8Protocol7Network7RequestENS1_13DumbPtrTraitsIS8_EEEEddNS5_INS7_9InitiatorENS9_ISC_EEEENS5_INS7_8ResponseENS9_ISF_EEEEPNS6_4Page12ResourceTypeEPS3_) +STUB( + "5BIJNOCKfqU", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetInteger8Ev) +STUB("5BIbzIuDxTQ", _ZTISt12domain_error) +STUB("5BOCgzM-dGE", _ZN7WebCore17MouseRelatedEvent7offsetYEv) +STUB("5BQIjX7Y5YU", _ZNKSt7codecvtIwc9_MbstatetE13do_max_lengthEv) +STUB("5BQsDP-Id8g", _ZN7WebCore25WebSocketChannelInspector17didCloseWebSocketEPNS_8DocumentE) +STUB("5BT8vo62XFw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEE7get_refEv) +STUB("5BUa9rW5onM", + _ZN3sce7Toolkit2NP10IdDatabase10addCommsIdERKNS1_15CommunicationIdENS1_11ServiceTypeE) +STUB("5BaGDINXu6c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEEC1EPKS6_) +STUB("5BaeQoUoWsk", _ZN3sce7Toolkit2NP15AppSTLAllocatorI13SceNpOnlineIdEC2Ev) +STUB( + "5BaerSlEa9Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEE11release_refEv) STUB("5BiLoju9NSo", sceFsUfsExtendFile) +STUB("5BlrhmRn+ww", png_get_image_height) +STUB("5Bv-04tmchM", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead16setSwapSupportedERKb) +STUB( + "5BvB74TO5xc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("5Bvl-vILki4", _ZN7WebCore9HTMLNames8loopAttrE) +STUB("5BzJO0hvqNQ", _ZN3sce7Toolkit2NP2V29Challenge7Request16GetChallengeDataD2Ev) +STUB("5C996P2V92A", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEEaSERKS6_) +STUB( + "5CHHO1+FcAY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB( + "5CIs0tSI30U", + _ZN3sce7Toolkit2NP2V27NpUtils22getOnlineIdByAccountIdERKNS3_7Request22GetOnlineIdByAccountIdEPNS2_4Core8ResponseINS3_5IdMapEEE) +STUB("5CJXb1X+okk", cairo_surface_set_device_scale) +STUB("5CL3pzRNzJ4", glClearBufferuiv) +STUB("5CRAo7r0EsQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEEppEi) +STUB( + "5CRjomJhWqI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEmmEi) +STUB( + "5CW-MRMEkzE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEaSERS7_) STUB("5CdQTZIQPxM", sceAgcDriverGetEqEventType) STUB("5ChfcHOf3SM", sceAudioDeviceControlSet) +STUB("5CnMx6kR-Gw", u_fopen_67) +STUB( + "5CtDWqxxyVY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("5CtU+6RQAHM", _ZN7WebCore8Document7pluginsEv) +STUB("5CuHZwTDEtk", _ZN7WebCore6RegionC1ERKNS_7IntRectE) +STUB("5Cye0EwTQUw", rgctx_fetch_trampoline_mrgctx_37_p) +STUB( + "5CzL8byRSwU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEE7add_refEv) +STUB("5D2GzAMcjL4", _ZNK7WebCore21ISOTrackEncryptionBox18defaultIsProtectedEv) +STUB("5D5XeYqrxeE", ulist_close_keyword_values_iterator_67) +STUB("5DCBla1N0I8", _ZN7WebCore9HTMLNames7dataTagE) +STUB( + "5DD+FlL7ozs", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser28setxPsnAcceptPlatformNamePs5ENS5_25XPsnAcceptPlatformNamePs5E) +STUB("5DFeXjP+Plg", _ZNSt10moneypunctIcLb0EEC2Em) STUB("5DIzIUbaYkc", sceApplicationSendDebugSpawnResult2) +STUB("5DLa+e3Daho", _ZN7WebCore16HTMLMediaElement32prepareForVideoFullscreenStandbyEv) +STUB( + "5DNq28+Q2og", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEE3getEv) +STUB("5DQUuOYK190", ft_validator_run) +STUB("5DSGmoa4S+s", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18SessionInformationEED1Ev) +STUB("5DW6m6ZvXWY", _ZN7WebCore8SVGNames16lengthAdjustAttrE) +STUB( + "5Db4C3Rva7U", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "5DbD+R8gyHA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEC2EPS6_PNS2_10LibContextE) STUB("5DcuNJ7D+Cs", sceNpUniversalDataSystemIntGetMemoryStat) +STUB("5DdJdPeXCHE", _ZTSSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE) +STUB("5DjHI44jYFw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEC2ERS7_) +STUB( + "5Dk0n5+845U", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("5Dk6vKTnImk", _ZN7WebCore8SVGNames11spacingAttrE) +STUB("5Dkyawhp0TE", _ZNK7WebCore11RenderVideo8videoBoxEv) STUB("5DkyduAF2rs", sceNpOpenEventFlag) STUB("5DlWM6aGVeI", sceGpuExceptionAddRazorHandler) +STUB("5DmPhiGW5Sg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching6WorldsEEC2Ev) +STUB("5DmxNjwctv4", _ZN3WTF14FileSystemImpl8realPathERKNS_6StringE) +STUB("5DopXjCXIwA", ucnv_safeClone_67) +STUB("5DpZw7KOQmg", _ZN3sce2np9JsonValue7SetTypeENS1_9ValueTypeE) STUB("5Ds-y6A1nAI", sceUserServiceGetNpNpId) +STUB("5DxUI-9Nrnw", mono_aot_Sce_Vsh_GriefReportStoragejit_got) +STUB( + "5DyPP0VdX2s", + _ZN3sce2Np9CppWebApi14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyC2EPNS1_6Common10LibContextE) +STUB("5DzttCF356U", _ZNSt9_Num_base9is_signedE) +STUB("5E1G+BA51Jo", delegate_virtual_invoke_imt_m_6) +STUB( + "5E2IdDJagiA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEEaSERS9_) +STUB("5E932GGEHuI", + _ZN3sce2Np9CppWebApi14SessionManager2V136GetFriendsPlayerSessionsResponseBody10getFriendsEv) +STUB( + "5E94XbjpWdE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEC2Ev) +STUB( + "5E9PdXGV7CU", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC2ERKS8_) +STUB("5EA6L4j9OrU", _ZN3sce2Np9CppWebApi7Matches2V113RemovedPlayer11setPlayerIdEPKc) +STUB("5EIJscg02gs", WKBundleNavigationActionCopyFormElement) +STUB("5EQ9mH3irMI", _ZN4Manx7Network6strdupEPKc) +STUB( + "5EQTtBhbtYY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEE11release_refEv) +STUB( + "5EQz9BE0cRE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEED1Ev) +STUB( + "5ESANxDrRwE", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchDetail27setupdateMatchDetailRequestENS1_6Common12IntrusivePtrINS3_24UpdateMatchDetailRequestEEE) +STUB("5ESzBPcRI7U", _ZN7WebCore15hasAnyPlainTextERKNS_11SimpleRangeEt) +STUB("5EU0WjubeF0", + _ZNK7WebCore26IdentityTransformOperation5applyERNS_20TransformationMatrixERKNS_9FloatSizeE) +STUB( + "5EZCok90ehs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE8capacityEv) +STUB("5EbtsmF7TSc", _ZN15AbstractStorage12LocalContent5WriteEPKvlPl) STUB("5EiQCnL2G1Y", sceUserServiceGetRegisteredUserIdList) +STUB( + "5EmwTwUwdxg", + _ZN3sce2Np9CppWebApi15Personalization2V128GetAccessCodeResponseFactory6createEPNS1_6Common10LibContextEPKcS9_lPNS5_12IntrusivePtrINS3_21GetAccessCodeResponseEEE) +STUB("5Es17ZWH0Vw", _ZN3sce2Np9CppWebApi6Common6VectorIfEC2EPNS2_10LibContextE) +STUB( + "5Ev5KNi-bdE", + _ZN9Inspector25DebuggerBackendDispatcherC2ERNS_17BackendDispatcherEPNS_32DebuggerBackendDispatcherHandlerE) +STUB("5EwOw7QfY3w", _ZN3sce7Toolkit2NP2V28Commerce7SkuInfo14SKU_ID_MAX_LENE) +STUB("5Eyqy6FVc18", _ZNK7WebCore16VisibleSelection16hasEditableStyleEv) +STUB("5EzjnsqMRxE", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_16NetStateDetailedEE3getEv) +STUB("5F0N899ZNx0", mono_aot_Sce_Vsh_AppDbWrapperunbox_trampolines) +STUB( + "5F0Tii3IxKY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("5F18KLo264k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEE11release_refEv) +STUB("5F4qWfh3NsI", JSGlobalContextRetain) +STUB( + "5F7D2WLcblc", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "5F999wWUj7k", + _ZN3sce7Toolkit2NP2V23TUS20getFriendsDataStatusERKNS3_7Request20GetFriendsDataStatusEPNS2_4Core8ResponseINS3_19FriendsDataStatusesEEE) +STUB( + "5F9VIeQgPyU", + _ZN7WebCore14JSWebAnimationC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_12WebAnimationENS6_13DumbPtrTraitsIS8_EEEE) +STUB("5F9dAVYm+Ek", _ZN7WebCore11JSDOMWindow21deletePropertyByIndexEPN3JSC6JSCellEPNS1_9ExecStateEj) +STUB( + "5FAgPlFviq0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE8capacityEv) +STUB("5FD0gWEuuTs", _ZGVNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE) +STUB("5FEnWE-49pI", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats13getReputationEv) +STUB( + "5FF4SGJPjJI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEEptEv) +STUB("5FJw6Rumom4", _ZN12video_parser13cVideoPathMsvC1EPKc) +STUB("5FVmKLxFnys", _ZNK7WebCore14DocumentLoader16mouseEventPolicyEv) +STUB( + "5FW7y8rMlkI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEC1EPNS2_10LibContextE) +STUB("5FWmbpkU1uw", + _ZN3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBodyC2EPNS1_6Common10LibContextE) +STUB("5FYa0MBDXEo", _ItL_pi_lo) +STUB("5FdejCVZfZs", __wrap_getenv) +STUB("5FfwhxCHUwA", ZIP_CRC32) +STUB("5FoE+V3Aj0c", _rtld_addr_phdr) +STUB( + "5FsZDH-KO5Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEneERKS9_) +STUB("5FtM7gmxmLA", ucnv_fromUCountPending_67) +STUB("5G+Z9vXPWYU", CERT_decryptRSASignature) STUB("5G-MA1x5utw", sceUserServiceGetCurrentUserGroupIndex) +STUB("5G2ONUzRgjY", memrchr) STUB("5G2Swzlv4dU", sceCesEucJpToUtf32be) +STUB("5G4TSqmhiF4", _ZNK9Inspector14InjectedScript9wrapTableEN3JSC7JSValueES2_) +STUB("5G8vGPoCtr8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEC2Ev) +STUB( + "5GDUprckmJc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) STUB("5GFncAhZHc4", sceAppInstUtilGetConfigList) +STUB( + "5GLoc-y05dY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE5clearEv) STUB("5GRg11q-4Po", sceAppInstUtilMountBdEmu) +STUB("5GXbIFVAO5E", + _ZN7WebCore18JSHTMLImageElement15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB( + "5GbDxFuC7Lo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEC1ERS7_) +STUB( + "5GcDseBRWz8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEmmEv) +STUB("5GdEk83csHo", _ZN3sce7Toolkit2NP2V24Core10OnlineUserD1Ev) +STUB( + "5GdfEwKrhuM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE8capacityEv) +STUB("5GeRUU1F3bo", mono_aot_Sce_Vsh_AppContentUtilWrapperunwind_info) +STUB("5Gjz1nLOKvo", PixelFormatLookup) +STUB("5GqRsNdzwwQ", _ZN15AbstractStorage12LocalService20GetSandBoxRandomWordEv) +STUB( + "5Gs6k-L-9Hk", + _ZNK3sce2Np9CppWebApi11UserProfile2V111PresenceApi28ParameterToGetBasicPresences13getaccountIdsEv) +STUB( + "5GwB3shPZPQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEEC2ERKSA_) +STUB( + "5GxWU6thsFw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("5H-bke+QIn0", + _ZN12video_parser17cVideoProfilerMp421_releaseThumbnailInfoEPNS_13VpMediaInfo_tE) +STUB("5H2j5vefKBg", _ZNK7WebCore14ScrollableArea16scrolledToBottomEv) +STUB("5H2nAWalcPs", _ZN12video_parser16cVideoContentMp414getFflInstanceEPPv) +STUB("5H3GkWWQY5A", _ZN3sce7Toolkit2NP2V27NpUtils7Request24SetTitleIdForDevelopmentC1Ev) +STUB( + "5H5LNSRRzKM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE3endEv) +STUB("5H5XOvxA8dw", _ZN3sce7Toolkit2NP2V23TUS25AtomicAddToAndGetVariable5resetEv) +STUB("5H5ytGoOj0A", _ZN7WebCore14ResourceHandle6cancelEv) +STUB( + "5HFbXGSr1nY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB("5HHP0m89Bvk", _ZNK3sce2Np9CppWebApi14SessionManager2V116FromNonPsnMember11getPlayerIdEv) +STUB("5HIn4jxKwu8", glIsQueryEXT) +STUB( + "5HJ9REA0seY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE7reserveEi) +STUB("5HJZD8sNEWA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE4sizeEv) +STUB("5HR+YnAQc14", _ZNK7WebCore4Page16hasSeenAnyPluginEv) +STUB("5HWN7o2vE6M", _ZN7WebCore9HTMLNames11basefontTagE) +STUB("5HWP63cOH+w", _ZN3sce2np18HttpConnectionPoolD0Ev) +STUB("5HYK5k5FY-M", _ZN3JSC7Symbols46webAssemblyCompileStreamingInternalPrivateNameE) +STUB( + "5HZxpDKT1Xs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB("5HbixKduB3g", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setMixerGain) +STUB( + "5HbwPMOQCB8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEC1Ev) +STUB( + "5HeaBTx0AVA", + _ZN3sce2Np9CppWebApi14SessionManager2V161PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_29RequestPlayerSessionSpectatorEEEEEPNS9_INS3_54PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEE) +STUB("5Het+dGMX+0", ures_getByKeyWithFallback_67) +STUB("5HfzFsObscc", _ZN7WebCore23SynchronousLoaderClient24platformBadResponseErrorEv) +STUB( + "5Hk10gClZpU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEEC2Ev) +STUB("5Hnl+iQQPyc", _ZN7WebCore4Page29clearPreviousItemFromAllPagesEPNS_11HistoryItemE) +STUB( + "5HvtOavr9uo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE5beginEv) +STUB("5I-Xs0fzfgM", delegate_virtual_invoke_imt_3_p) STUB("5I080Bw0KjM", sceFontGraphicsStructureVertexesGlyph) +STUB("5I0KrtwvlSw", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetInteger1Ev) +STUB("5I0ZSvxhRmc", glDrawElementsInstanced) +STUB( + "5I1zcVqyxV0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEE11get_deleterEv) +STUB("5I4KfoHqFck", _ZN3WTF8JSONImpl5ValueC1ENS1_4TypeE) +STUB( + "5I54F6UusM4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEC2ERS8_) +STUB("5I8V274Iw9Y", _ZN9Inspector24WorkerFrontendDispatchernaEmPv) +STUB("5IARBN5zNTE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE5clearEv) +STUB("5ICFZx8ga2c", _ZN3sce2Np9CppWebApi6Common6VectorIiE5clearEv) STUB("5ICXeCXAnDQ", sceAvSettingGetHdmiKsvList) +STUB("5IEd+tXmLQo", _ZN3sce2Np9CppWebApi7Matches2V118RequestTeamResults9setTeamIdEPKc) STUB("5IFOAYv-62g", sceVrTrackerCpuProcess) +STUB("5IJlKspehi8", winfnt_driver_class) +STUB("5INKKNAjXjc", mono_btls_bio_mem_new) +STUB("5IPrQ6zXIvg", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V113MmrPropertiesD1Ev) STUB("5IVqeThOi2s", sceDeci5Write) +STUB( + "5IZ1JyIpUqw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEC1Ev) +STUB( + "5IdKLy7eRbA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "5IewxYtcsUY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEED2Ev) +STUB("5IiyI7vRRlw", uprv_modf) +STUB( + "5IkBkh+MZYw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEptEv) +STUB( + "5InHWOweRMM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEptEv) +STUB( + "5InePIqhGU0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEE7add_refEv) +STUB("5IpoNfxu84U", lrand48) +STUB("5IuLhXyCfqA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEC1Ev) +STUB( + "5IvXMWnNN90", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEdeEv) +STUB("5Ixi+NTtIBk", mono_aot_I18N_MidEastunbox_trampolines) +STUB("5IyJ1Yh0yKg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ResponseCooperativeResultEEneERKS7_) +STUB( + "5IzM1kTfnkg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEC1EPS8_) STUB("5J-HJDElPnM", scePssCameraSetConfigType) +STUB("5J28fLJPSB8", _ZNK3WTF10StringView10startsWithERKS0_) +STUB("5J8WWcx0pzw", unum_setAttribute_67) +STUB("5J8hYJct0v4", _ZN7WebCore24CoordinatedGraphicsLayer18createBackingStoreEv) STUB("5J9GGMludxY", sceNpTusSetMultiSlotVariableAsync) STUB("5J9k6e9d9DA", sceDebugGetUltListOfUltRuntime) +STUB( + "5JF2AU7696w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEmmEi) +STUB("5JG2TkVNkhY", _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse17unsetMatchResultsEv) +STUB( + "5JRwV0UMSTo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEEptEv) +STUB( + "5Jefi6PcTcU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEC1Ev) +STUB("5Jer6es4taY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEE7get_refEv) +STUB("5JmzZt8twAo", _ZN3sce4Json6ObjectD1Ev) +STUB("5Jowi8NzZIs", + _ZN3sce2Np9CppWebApi7Matches2V119ResponseTeamResultsC2EPNS1_6Common10LibContextE) +STUB( + "5JpVxEMC2DI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEC2EPKS8_) +STUB("5JrIq4tzVIo", mono_pmip) +STUB("5JygG55ciUo", _ZN3sce7Toolkit2NP2V28Commerce8SkuLabelC2Ev) +STUB("5JyhV10GpQE", _ZNK3sce3Xml3Dom8Document12getLastChildENS1_6NodeIdE) STUB("5JywDY5LQK0", sceM4aacEncDeleteEncoderEx) +STUB("5K-9Y7aFV60", _ZN3WTF13isMainRunLoopEv) +STUB("5K0NVMGxk7E", _ZN7WebCore13MediaQuerySetD1Ev) +STUB("5K48og4tl0c", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE3endEv) +STUB("5K4R8L+HeF4", _ZN3JSC7Symbols14SetPrivateNameE) STUB("5K54SEOf8Gk", sceShareFactoryUtilLaunchShareFactory) +STUB( + "5K7DzlEGXDc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "5K7cxBMxaiw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEmmEv) +STUB("5K9LUkQJElg", _ZN7WebCore9HTMLNames20onanimationstartAttrE) +STUB( + "5KDBZhXkFwU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEE11get_deleterEv) +STUB("5KG2sHpzEmo", _ZNK3WTF9MediaTime9isInvalidEv) +STUB("5KHU1bntbb0", _ZN7bmalloc12logVMFailureEm) +STUB("5KIm4JyA6d8", _ZN3sce7Toolkit2NP9Interface21registerEventCallbackEPFvRKNS1_5EventEE) STUB("5KKsXg7EXi8", sceImeBackendPartConfirm) +STUB("5KOPB+1eEfs", _ZTVSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE) +STUB( + "5KRRH0MFHz4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEED1Ev) +STUB("5KUTurhTufw", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10ContainersEE3setEv) +STUB("5KUuEEmBTpo", RAND_load_file) STUB("5KWrg7-ZqvE", pthread_setaffinity_np) +STUB("5KYlWU5KLAA", __asan_exp_load4) +STUB("5KfPZTHZaEY", qr3) +STUB("5KgLTiW8QZk", WKBundleSetShouldTrackVisitedLinks) +STUB("5KgmHsaCxXg", _ZN7WebCore11MediaPlayer11sizeChangedEv) +STUB("5KhBFeIsznA", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEEC2ERS7_) +STUB("5KhQZQnPN50", _ZN15AbstractStorage14TwitterStorageD2Ev) +STUB( + "5KlQ00rmEYM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("5KpY2XoOktg", __asan_stack_malloc_9) +STUB( + "5Kq0Av-eH7o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEE11get_deleterEv) +STUB("5KtRxRkDiN4", _ZN3NTF15ThreadConditionC1Ev) +STUB("5L1e-VHcPLQ", _ZN3JSC22EdenGCActivityCallback11gcTimeSliceEm) +STUB( + "5L5Aft+9nZU", + _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8get_yearES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm) +STUB( + "5LESOTtkFj4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEixEm) STUB("5LLWbpP5xi8", sceAjmBatchJobDecodeSingle) +STUB("5LPNdAqnbDw", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError11unsetReasonEv) +STUB("5LQSozsHJFo", _ZN7WebCore6DOMURL12searchParamsEv) +STUB("5LYU+G+wm98", + _ZN6WebKit17ChildProcessProxy15dispatchMessageERN3IPC10ConnectionERNS1_14MessageDecoderE) STUB("5LZA+KPISVA", sceHttpUriBuild) +STUB("5Le5nPQZwUU", unumf_formatInt_67) +STUB("5Lf51jvohTQ", _Mtx_destroy) +STUB("5Lh+sfg0+3c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEaSERS7_) STUB("5LhFvqzrcug", sceMusicPlayerServiceSeek) STUB("5LiMEPuW0DQ", sceNpEntitlementAccessGetEntitlementKey) +STUB( + "5Lj2obGw934", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "5Lkp6DCzRhM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE5emptyEv) +STUB( + "5LmxVzONTDM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEptEv) +STUB("5LoVY9nQRTY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEED1Ev) +STUB("5LwBmaI2tmw", _ZNK7WebCore3URL5queryEv) STUB("5Lx1PHXzL6Y", sceVisionManagerGetResultOfCalibrateStereoCamera) +STUB( + "5M+cGng1jFw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEC1EPS8_) +STUB( + "5M-LVtMKruY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEmmEi) +STUB("5M36pKJh7LE", _ZN3JSC7Symbols23regExpCreatePrivateNameE) +STUB("5M3SCZEvi+8", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities5ErrorC2EPNS1_6Common10LibContextE) +STUB("5MIGaxHOMjs", _ZN8meta_gen11MsvPromoter8binToStrEPhjPSs) +STUB("5MK8Nye3fNM", AnnotatePublishMemoryRange) +STUB( + "5MKn2Bw+xn4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE5beginEv) STUB("5MLppFJZyX4", sceSystemServiceChangeNumberOfGpuCu) +STUB("5MOUT7xkwgU", _ZN7WebCore17CredentialStorage3setERKN3WTF6StringERKNS_10CredentialERKNS1_3URLE) +STUB("5MPOusK4JQY", _ZN7WebCore8SVGNames19color_renderingAttrE) +STUB( + "5MPYrHVctq4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEaSERKS7_) +STUB( + "5MUzh8ZCQLs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEEC2EPS6_PNS2_10LibContextE) +STUB("5MZEPxUs0oE", _ZN7WebCore6Editor17cancelCompositionEv) +STUB( + "5MbNiacAJAk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlot19unsetnpServiceLabelEv) +STUB("5McKPX7hfmc", _ZN8meta_gen17CommonFsOperationC2EPKc) +STUB( + "5Mem7DF-KnA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE7popBackEv) +STUB( + "5MfY7NalVJ8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE5emptyEv) +STUB("5Mg5Cv4Gw9Q", YGNodeIsDirty) +STUB( + "5MgaMP5hzXc", + _ZN3JSC12RegExpObject17defineOwnPropertyEPNS_8JSObjectEPNS_9ExecStateENS_12PropertyNameERKNS_18PropertyDescriptorEb) +STUB( + "5MgbQjiMyts", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEC1Ev) +STUB("5Mj0TkVrj8k", jinit_inverse_dct) +STUB("5MjvDb+LU3Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEC2Ev) STUB("5Mn7TYwpl30", sceNpWebApiDeleteHandle) +STUB( + "5Mpm5puQXgo", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10setString9EPKc) +STUB("5Mq24gdcgwM", __sqrtl) +STUB( + "5MtHckCMbM4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("5MtXWF1jX80", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V19RatingApi21ParameterToPostRatingD2Ev) +STUB( + "5MwsLkQi19g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEaSERKS9_) STUB("5MwxIk3-gLo", sceDepthQueryMemory) +STUB( + "5N0SC+yA6O4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("5N0mvyPNqqo", _ZN7WebCore17LibWebRTCProvider9setActiveEb) +STUB("5N6MwahrroM", _ZNK3sce2Np9CppWebApi7Matches2V121ResponseTeamStatistic9getTeamIdEv) +STUB("5N6glICVsiQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEC2Ev) +STUB("5NBTfOR8YYo", _ZN7WebCore27makeBoundaryPointBeforeNodeERNS_4NodeE) STUB("5NE8Sjc7VC8", sceAudioInOpen) +STUB("5NHOvrtbgLQ", Java_java_lang_StrictMath_atan2) +STUB("5NIZxrsg72A", _ZTVN7WebCore26ActiveDOMCallbackMicrotaskE) +STUB( + "5NJwkW4LXzs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEEC1Ev) +STUB( + "5NScTgIMBpg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEE7get_refEv) +STUB("5NWok6SqDAk", mono_aot_Sce_Vsh_LncUtilWrapperjit_code_end) +STUB("5NYsP564wwY", FT_Get_Module_Interface) +STUB( + "5NbKBuUd8Ww", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "5Ncf5aPnPLA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEEC1ERSA_) +STUB("5NeBFc2PFng", __sanitizer_set_report_path) +STUB( + "5Ngrigad+xA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEE3getEv) +STUB( + "5NlD1nbdLgo", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE11getResponseERS4_) +STUB("5Nmhj2pxEfM", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10getString3Ev) +STUB( + "5Nw7bNLH1nI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE6resizeEj) +STUB("5Nwi8pVhpIY", ubrk_swap) +STUB( + "5NwwRib5Sxo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEixEm) +STUB( + "5NzVpz0TGw4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEE3getEv) +STUB("5O+AifrdWVs", _Z27sendIpmiInvokeSyncMethodCmdiiiiPKN4IPMI8DataInfoEPKNS_10BufferInfoEib) +STUB("5O+fi8P4g+M", _ZN7WebCore15AsyncFileStreamdaEPv) +STUB("5O+uFe6GMlA", _ZThn40_N7WebCore8DOMTimerD0Ev) +STUB( + "5O29d4PkoRI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEC2EPS8_) +STUB("5O88dXB4RDY", _ZN7WebCore9HTMLNames9figureTagE) +STUB("5O8bmW45o0U", ucnv_reset) +STUB("5O92iRi6Hk4", eglGetConfigAttrib) +STUB( + "5O9jSa0oBSs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEEC2ERSA_) +STUB("5OA2RK-yG9I", + _ZN9Inspector18InjectedScriptHost7wrapperEPN3JSC9ExecStateEPNS1_14JSGlobalObjectE) +STUB( + "5OBssNXtjCQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("5OCoDxN-Cqc", _ZNK3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate11getTeamNameEv) +STUB("5OEl1mRhUm0", tcgetpgrp) +STUB("5OJsq1at5TA", _ZN7WebCore32ScrollingStateFrameScrollingNode15setHeaderHeightEi) +STUB("5OL+CNY-9qc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE5clearEv) +STUB("5OOmHD4rcfM", _ItL_pS1) STUB("5OOpQ9aHmb8", scePlayReadyCdmiRemove) +STUB("5OQdcIyHdAs", JVM_CurrentClassLoader) +STUB( + "5ORBtwajlzI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEmmEv) +STUB( + "5OXhLz8erX4", + _ZN3JSC12StringObject14deletePropertyEPNS_6JSCellEPNS_14JSGlobalObjectENS_12PropertyNameERNS_18DeletePropertySlotE) +STUB("5OXqH8ACXSE", _ZN3sce2np14HttpConnectionD2Ev) +STUB("5OY7kJhAQYE", _ZN4Manx9X509chain10appendListEPNS_8X509cinfE) +STUB("5OYUBVvR8ZM", _ZN12video_parser5vpcom8datetime8DateTime12ParseRFC3339EPKc) +STUB("5OZ1YwHyHd8", cairo_get_dash) +STUB("5OcP9EZ2O0U", _ZN7WebCore24CoordinatedGraphicsLayer16removeFromParentEv) +STUB( + "5OcnACDcGu8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEaSERKS9_) +STUB("5Of6HQkKiNc", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112UpdateStatusEEC2EPS6_) STUB("5Oie5RArfWs", sceCameraGetCalibDataFromDevice) +STUB("5Op1g02Jscs", _ZN3sce7Toolkit2NP2V26Friend15FriendsOfFriendC2Ev) +STUB("5OpjqFs8yv8", drem) +STUB("5OqszGpy7Mg", strtoull) +STUB( + "5P84j6cG6Bk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEC2EPS6_PNS2_10LibContextE) +STUB("5PAd3ryxUEk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEEC2EPS4_PNS2_10LibContextE) +STUB("5PBo5zAQDRs", _ZN3sce7Toolkit2NP15AppSTLAllocatorIcE7addressERKc) +STUB( + "5PPdnEsLYpU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEED2Ev) +STUB( + "5PS6d9CvpGk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEC2EPNS2_10LibContextE) +STUB( + "5PS8PxbzSEQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEEC2Ev) +STUB( + "5PaUyrCtQgM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEC1EPNS2_10LibContextE) +STUB("5PdhLEbEgT0", _ZThn16_N9Inspector22InspectorDebuggerAgent8stepNextERN3WTF6StringE) +STUB( + "5Pdl9KdMIOc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE8copyFromERKS9_) +STUB("5PfqUBaQf4g", _ZSt4cout) +STUB( + "5PkRbt+8dA8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEaSERS7_) +STUB( + "5PmwpA5-UTk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEC1EPS8_) +STUB( + "5Pqezv45q9A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEcvbEv) +STUB("5Prc2ipNX7Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEaSERKS9_) +STUB( + "5PvK6MvM3P0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "5Q+aJKscsJU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEC1EPNS2_10LibContextE) +STUB("5Q1cmSZMYAM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEE5resetEPS6_) +STUB( + "5Q6JTf0hQvI", + _ZN7WebCore12JSTimeRanges6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_10TimeRangesENS6_13DumbPtrTraitsIS8_EEEE) +STUB("5Q6YOeOcXKU", rgctx_fetch_trampoline_mrgctx_112_p) +STUB( + "5Q7AAXmh59c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEEC2ERSA_) +STUB("5Q9eXxWwvAg", _ZNK7WebCore4Page17viewportArgumentsEv) +STUB("5Q9yzfWhfyY", rgctx_fetch_trampoline_mrgctx_51) +STUB("5QF2sLtBPOU", _ZN7Nicosia29ContentLayerTextureMapperImpl11flushUpdateEv) STUB("5QG71IjgOpQ", sceFontDestroyGraphicsDevice) +STUB( + "5QGvmEFQHOk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "5QJRueHuTBo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEED2Ev) +STUB( + "5QJSVQ8-aVE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("5QN7MedM4tk", mono_mempool_get_allocated) +STUB( + "5QNGYNiMLVQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEppEi) +STUB( + "5QXun275Rvc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("5QbpxE-FmnQ", mono_metadata_typedef_from_field) +STUB("5Qegnqg5ZiI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEEplEm) +STUB( + "5QfrOgBUex8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEC1Ev) +STUB( + "5Ql2Q1AaJHg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "5Qr+zGzplKI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEC2EPKS8_) STUB("5Qrm9WvdQQ4", sceKernelWriteWriteAddressCommand) +STUB("5QrtfBfbjP4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEC2ERS7_) +STUB( + "5R0Ss2OHp1s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEC1EPKS8_) STUB("5R6kI-8f+Hk", sceNpTusGetDataVUserAsync) +STUB("5R8X3Eg05OY", _ZL21emergency_malloc_wait) +STUB("5RATgocuL0o", _ZN7WebCore9HTMLNames10acceptAttrE) +STUB("5RBpaKVkWRQ", EVP_PKEY_get1_RSA) +STUB( + "5RGb65N4xN4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("5RICSJuTYNs", _ZN7WebCore13MediaQuerySet6createERKN3WTF6StringENS_23MediaQueryParserContextE) +STUB("5RMEEGAn4xo", _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicket11getticketIdEv) +STUB("5RP2EceyRm4", + _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession21getSupportedPlatformsEv) STUB("5RQCvNleU3I", sceFsInitCreatePfsTrophyDataOpt) +STUB( + "5RRhb1FQOj0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEE7add_refEv) +STUB("5RSKjWE2avA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEptEv) +STUB("5RT4Z2QA-AA", _ZN6WebKit17ChildProcessProxyD1Ev) +STUB( + "5RTX8F471hs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEC2Ev) +STUB("5RUic0ZrxJc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEEC1ERKS6_) +STUB( + "5RWqsqj3vxU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEC2ERKS7_) +STUB("5RZ47lJyEKc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEptEv) +STUB("5RZwfs50G4k", _ZN3sce7Toolkit2NP2V27Session7Request4Join15MAX_INDEX_VALUEE) +STUB( + "5Rb1JJGQfzc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEEC2Ev) +STUB("5Rj+-omlG3s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEdeEv) +STUB("5Rj2MyJZATM", _ZN7WebCore13GraphicsLayerD0Ev) +STUB( + "5RkxeIi6XSg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEdeEv) +STUB("5RuBPNjHYro", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE3endEv) +STUB( + "5Rus7likdx0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEppEv) +STUB( + "5RxAfBqeNUU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEaSERS7_) STUB("5S1dAxkmQFM", sceClHttpWaitRequest) +STUB("5S2eUJGDgCo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEcvbEv) +STUB("5S41GRIUTOQ", _ZNK7WebCore27TranslateTransformOperation19isRepresentableIn2DEv) +STUB("5S4sz8SdGgk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEE11release_refEv) +STUB("5S95VVjvojI", jpeg_natural_order5) +STUB("5SA72S-f0UU", _ZN3WTF8JSONImpl10ObjectBaseC1Ev) +STUB( + "5SCejrgtD2s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_) STUB("5SHGNwLXBV4", sceGnmValidateGetDiagnostics) +STUB("5SIh7ParUgY", mono_aot_Sce_Vsh_KernelSysWrapperplt) +STUB("5SIn8558ccY", _ZNK3sce2Np9CppWebApi7Matches2V120RequestPlayerResults10scoreIsSetEv) +STUB("5SKK+o8Of-U", jpeg_idct_3x6) +STUB( + "5SNN35iSwhw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEneERKS9_) +STUB("5SUVWNDLxCQ", u_isIDIgnorable_67) STUB("5SVxCVcDW7g", sceDataTransferAbortRequest) +STUB("5SbqBNhRRBM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEE3getEv) +STUB( + "5SdJJgbOHZc", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser11setsortModeENS5_8SortModeE) STUB("5SfMtsW8h7A", sceShellCoreUtilAccessibilityZoomLock) +STUB( + "5SfulqUKwfA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("5Sls4rnZYpk", _ZN7WebCore18JSHTMLInputElement6s_infoE) STUB("5SmjWNahyeo", sceDebugGetDataListOfUltQueue) +STUB("5SpzTlcpsLs", unorm2_quickCheck) +STUB("5SrekqH5TJQ", _ZN3WTF10StringImpl28convertToLowercaseWithLocaleERKNS_10AtomStringE) +STUB( + "5T+oKl9dsgM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEE5resetEPS6_) +STUB( + "5T2f0wfvGog", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEppEi) +STUB("5T4SHQqzoGo", gethostbyname) +STUB( + "5T5H6ER1lvs", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeader9terminateEv) +STUB("5T6TphmcgVQ", glGetBufferParameteri64v) +STUB( + "5T8S3sCIl68", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEC1ERS7_) +STUB( + "5TEKYu3PyD0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEplEm) +STUB( + "5TF7i5V27bc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEcvbEv) +STUB("5TI-Br6fGkk", _ZN7WebCore9HTMLNames9keygenTagE) +STUB("5TMhYwnExmg", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIdED1Ev) +STUB( + "5TOuXtzSk4o", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEixEm) +STUB( + "5TS-AWxpgrs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE8copyFromERKS9_) +STUB("5TTi0mfbpgw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEEdeEv) +STUB( + "5TWRRZrseG8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEEcvbEv) STUB("5TYmu2tN5o4", sceNpIpcClientInitInternal) +STUB( + "5TZTneevvOY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEEptEv) +STUB("5TazKXr9t+Q", _ZNK7WebCore14ScrollableArea26reachableTotalContentsSizeEv) STUB("5TcrMOuwXMk", sceClHttpAddRequestHeader) +STUB( + "5Te4DrU-ulI", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "5Tg4rlmMglE", + _ZN3sce2Np9CppWebApi14SessionManager2V140ResponsePlayerSessionNonPsnPlayerFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_33ResponsePlayerSessionNonPsnPlayerEEE) STUB("5TgME6AYty4", sceKernelAioDeleteRequest) +STUB( + "5Tgg-rL58Cs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEEC1Ev) +STUB("5TjaJwkLWxE", bcmp) +STUB("5TlM-h+ipBU", _ZN7WebCore28InspectorFrontendClientLocal8SettingsdaEPv) +STUB("5TmW31l5VQw", mono_aot_Sce_Vsh_Np_AuCheckjit_code_start) +STUB("5Tnk7OiQXl0", + _ZThn16_N9Inspector22InspectorDebuggerAgent24continueUntilNextRunLoopERN3WTF6StringE) +STUB( + "5TsJZvhlNxk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEC1EPKS8_) STUB("5TvttyRuU84", sceGameCustomDataDialogOpen) +STUB( + "5TwSfklv4m8", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionPropertiesC1Ev) +STUB("5U+eeWgS9ks", _ZN3sce2Np9CppWebApi13InGameCatalog2V514ContainerMediaD2Ev) +STUB("5U-VsLRlRsY", _ZThn16_N9Inspector20InspectorTargetAgentD1Ev) +STUB("5U2j47T1l70", CA_MGMT_keyBlobToPEM) +STUB("5U3V4M2WO8Q", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V15Error11reasonIsSetEv) +STUB( + "5U4pxhI1BBo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEC2EPS6_PNS2_10LibContextE) +STUB("5U5PRbq4Qcc", _ZTVN15AbstractStorage14YoutubeStorageE) STUB("5U6NRSMS9QU", scePsmUtilFinalize) +STUB("5U6mBSzKmSg", + _ZN3sce2Np9CppWebApi7Matches2V126RequestTeamMemberStatistic8fromJsonERKNS_4Json5ValueE) +STUB( + "5U86-WxpNk8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB("5UATk3g9+Mg", mono_aot_Sce_PlayStation_HighLevel_UI2Platformjit_code_start) +STUB( + "5UCI4WMtS3E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEC2ERKS7_) +STUB("5UFz30Wboyg", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesD1Ev) +STUB("5UJbOthu3+s", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V18SortModeEEC1EPS6_) STUB("5USjtgtV6Cg", sceCesUcsProfileInitSJis1997X0208) +STUB( + "5UTd-cef+Ug", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEC2Ev) +STUB( + "5UV12de1fGo", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("5UagplYjXBo", u_memchr) +STUB("5Ubhv638hHA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEdeEv) +STUB( + "5UcRrgFkXzg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEC2Ev) +STUB( + "5UguFKgs8ec", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE3endEv) +STUB("5UhnGPXbi88", _ZNK3WTF3URL10protocolIsENS_10StringViewE) +STUB( + "5UiP-8SG-Vs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE7reserveEi) +STUB( + "5UpGpRjjKqY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEdeEv) +STUB("5Ur+CDAtZBI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEaSERS7_) +STUB( + "5UurMAoOqPo", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126MatchCompletionRateFactory7destroyEPNS3_19MatchCompletionRateE) +STUB( + "5UwnuWGA7yM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "5UyugULAmY8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "5V2NZPx+OU0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEaSERKS7_) +STUB("5V2WIPOZcaA", u_getIntPropertyMaxValue) +STUB("5V2feJ523kM", Java_org_blurayx_s3d_ui_DirectDrawS3D_drawStereoscopicImages0) +STUB("5V5gwXq2Zhc", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead19unsetRepresentativeEv) STUB("5V8YGx9g0UA", sceVideoOutGetBufferInformation) STUB("5VBAeTtoF0s", sceNpTrophy2SystemDebugUnlockTrophy) +STUB( + "5VBJfbJcS7M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEEptEv) +STUB( + "5VBtqowFKFs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("5VDOSnuKQcI", _ZN7WebCore12JSTimeRangesC1ERKS0_) +STUB( + "5VJl3bLDEpw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC1ERKSA_) +STUB("5VLf3cA+jHU", _ZN12video_parser8cPDLUtil11getPDLStateEPKcyyPNS_8PDLStateE) +STUB( + "5VN0zsPmi+c", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "5VOggoQXMyQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE4sizeEv) +STUB("5VYHGP-8f1k", __asan_report_load8) +STUB("5ViZYJRew6g", _ZTSSt8messagesIwE) +STUB("5Vk2ExKTPK8", _ZN3JSC11JSGenerator6s_infoE) STUB("5VlQSzXW-SQ", sceHttp2CookieFlush) +STUB( + "5VoSa11hn6E", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEdeEv) +STUB("5VpbYYKsV38", EVP_MD_size) +STUB( + "5VtxCpZnA5o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEC1EPNS2_10LibContextE) STUB("5VuCHqv7kmw", sceSdmaFenceNonBlocking) +STUB( + "5Vzga1ZAJZ8", + _ZThn16_N9Inspector21InspectorRuntimeAgent13getPropertiesERN3WTF6StringERKS2_PKbS7_RNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime18PropertyDescriptorEEENS1_13DumbPtrTraitsISE_EEEERNS8_INSA_INSC_26InternalPropertyDescriptorEEENSF_ISK_EEEE) +STUB( + "5W-tQqvnH+8", + _ZN3sce2Np9CppWebApi7Matches2V131RequestCompetitiveResultFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_24RequestCompetitiveResultEEE) +STUB( + "5W-vGQL2w-o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEC2EPS6_PNS2_10LibContextE) +STUB( + "5W1twgGpvwE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEEC2ERKSA_) STUB("5W6LurzMZaY", sceSystemServiceShowClosedCaptionSettings) +STUB("5WCZtBBLH3U", mono_get_array_class) +STUB( + "5WLQCpCmhPg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEC2EPS8_) +STUB( + "5WQkDCDj0W8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE5beginEv) +STUB("5WTA3RiOfXU", _ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEE6resizeEj) +STUB("5WWqUlHf3lo", _ZTVN9Inspector33LayerTreeBackendDispatcherHandlerE) +STUB("5WZsWfoc3GQ", _ZN7WebCore15HitTestLocationD2Ev) +STUB( + "5WcTqlLl9W4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE5beginEv) STUB("5Wf4q349s+Q", scePadReadStateExt) +STUB( + "5Wjc0avwwCo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEppEv) +STUB("5WkKzsvdNZw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEC1ERKS7_) +STUB("5WlB6jYsK3I", _ZN3sce2Np9CppWebApi7Matches2V117ResponseMatchTeamD2Ev) +STUB( + "5WlBrDw1wpI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("5WmxjUldLqg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEEC1EPS5_PNS2_10LibContextE) +STUB( + "5WqHUB6fHa4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEppEv) +STUB("5WuiSZkU3mg", _ZN3sce2np8Selector4InitEPKc) +STUB( + "5WxlwRrdPxY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEptEv) +STUB("5Wy+JxpCBxg", _ZN3sce2np9EventFlag4OpenEPKc) STUB("5X+QFaVtiKg", sceNetCtlApDialogTerminate) +STUB("5X4b5KyyNp4", wpe_pasteboard_get_string) +STUB("5XAAwjS5FEE", _Z27sceRazorGpuThreadTraceResetv) +STUB("5XDBYQU1Fc0", _ZN7WebCore8Settings18setDefaultFontSizeEi) +STUB( + "5XEMwsWneRQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE21intrusive_ptr_sub_refEPS9_) +STUB("5XGzjwts+3I", _ZN3sce7Toolkit2NP2V28Matching5Rooms5resetEv) STUB("5XHaH3kL+bA", sceGameLiveStreamingUnregisterCallback) STUB("5XLSih32qHA", sceContentDeleteTerminate) +STUB( + "5XNd7RCy1r8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("5XOw3HVuKMo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEED2Ev) +STUB( + "5XS0mKp8q9I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEED2Ev) +STUB( + "5XYIVFucl2Q", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("5Xa2ACNECdo", strcpy_s) +STUB("5Xbk73Dvu8E", WKPreferencesGetWebAnimationsEnabled) +STUB("5XfwSMKO0lA", ASN1_STRING_type) +STUB("5XiHgeKL3pw", _ZN7WebCore12ChromeClient15elementDidFocusERNS_7ElementE) +STUB("5XimD92RZqs", _ZN3JSC7Symbols32promiseStateFulfilledPrivateNameE) +STUB("5XkPh73uOas", WKBundleFrameClearOpener) +STUB("5Xn4Ygw7nlE", _ZNK7WebCore26HTMLTextFormControlElement14selectionStartEv) +STUB("5Xo2XrjnnSA", _ZN3WTF24normalizeLineEndingsToLFEONS_6VectorIhLm0ENS_15CrashOnOverflowELm16EEE) +STUB( + "5XtBK4PsVlA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEE3getEv) +STUB("5XtJrr78K4c", + _ZN3sce7Toolkit2NP4Auth9Interface15getCachedTicketEPNS1_9Utilities6FutureINS1_6TicketEEEb) +STUB("5XvkLPNJIhU", mono_aot_Sce_Vsh_UsbStorageScenejit_code_end) +STUB( + "5Xw1GGBLbFo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEeqERKS9_) +STUB("5XzzJSlUM8w", WKPreferencesGetDefaultFixedFontSize) +STUB("5Y2VZnmetAs", _ZN7WebCore5ColorC1ERKN3WTF6StringE) +STUB( + "5Y47+l2siB4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEppEv) STUB("5Y6nZqIZvBg", sceVdecswFinalizeDecodeSequence) STUB("5Y8uUbGMio0", sceVideoOutSysModeIsSystemDefault) +STUB("5YG+jQGIAhU", il2cpp_assembly_get_image) +STUB("5YGfwZHHFbw", + _ZN7WebCore24RotateTransformOperation6createEddddNS_18TransformOperation13OperationTypeE) +STUB("5YJqdG-SN8I", _ZN3sce7Toolkit2NP2V27Session7Request4JoinD2Ev) +STUB( + "5YNF6LxbJM0", + _ZN7WebCore10MouseEvent6createERKN3WTF12AtomicStringEONS1_6RefPtrINS_11WindowProxyENS1_13DumbPtrTraitsIS6_EEEERKNS_18PlatformMouseEventEiPNS_4NodeE) STUB("5YNnX5Pfquo", sceShellCoreUtilDownloadTitleWorkaroundFileFromServer) +STUB("5YOm7mBmTUY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEaSERKS7_) STUB("5YPCjqIgMbg", sceClKernelMunmap) +STUB( + "5YPrmWXM0Zs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB( + "5YRcxdYqA1g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "5YSC3zFm1lk", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemProperties12setsessionIdEPKc) +STUB( + "5YYZeM-Sp8w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEC1EPS8_) +STUB("5YaxsWwJhHc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE5clearEv) +STUB( + "5Ybc7I6qN5U", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE10setContextEPNS2_10LibContextE) +STUB("5YfFv3RsCYw", mono_aot_Sce_Vsh_Np_Asmunbox_trampolines) STUB("5Yl1uuh5i-A", sceNetConfigDelMRoute) +STUB("5YnHXcwYZVs", _ZN7WebCore12EditingStyle21styleAtSelectionStartERKNS_16VisibleSelectionEb) +STUB("5Yq77syosgI", SwCtrlSinkStreamSetReadPointer) +STUB("5YqK1eWNQnM", _ZN7WebCore6JSFileD1Ev) +STUB("5YuPh3NUQ9Q", _ZN9Inspector18InjectedScriptBaseD1Ev) +STUB( + "5YvUd56e7yE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEC1Ev) +STUB("5Yyd2vDsUWg", _ZN7WebCore15HitTestLocationC1ERKNS_10FloatPointE) STUB("5Z+2fhutd+c", sceClSendSystemNotification) +STUB( + "5Z-BOT4ORvw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEEC1Ev) +STUB( + "5Z-WHn7X8no", + _ZN9Inspector28DOMStorageFrontendDispatcher21domStorageItemUpdatedEN3WTF6RefPtrINS_8Protocol10DOMStorage9StorageIdENS1_13DumbPtrTraitsIS5_EEEERKNS1_6StringESB_SB_) STUB("5Z0YF3QKlhk", sceCompositorSetSeparateContextCommand) +STUB("5Z0ZZdSuDyA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE5clearEv) +STUB("5Z1c0doVn20", _ZN9Inspector18InspectorHeapAgentnaEmPv) +STUB("5Z25U0LIPDY", mono_aot_System_Reactive_Interfacesplt) +STUB("5Z2m+CedfVk", mono_aot_Sce_Vsh_PatchCheckerClientWrapperunbox_trampolines) +STUB( + "5Z6A5hPER+A", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE5emptyEv) +STUB("5Z6jl5TA2pA", __tsan_write4_pc) +STUB("5Z7z4XjqxcA", _ZN7WebCore29SQLiteStatementAutoResetScopeaSEOS0_) +STUB( + "5ZA0rZ7usT8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("5ZB8LnSchsU", WKPageCopyStandardUserAgentWithApplicationName) STUB("5ZJPtZf6EaY", sceUserServiceGetParentalGameWhiteList) +STUB("5ZKavcBG7eM", __atomic_fetch_or_8) +STUB( + "5ZQ+3EMTpuk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEED2Ev) +STUB( + "5ZRRcsXCy5g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEE7add_refEv) +STUB( + "5ZXM9JtDr8s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "5ZY1TPj6xPQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "5ZZAC6JRQPo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEaSERKS9_) +STUB( + "5ZZWCZQJF+M", + _ZN7WebCore13FetchResponse6createERNS_22ScriptExecutionContextEON3WTF8OptionalINS_9FetchBodyEEENS_12FetchHeaders5GuardEONS_16ResourceResponseE) +STUB( + "5ZZxHh0b5qU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEC1EPS8_) +STUB("5ZaEDHHWcpA", mono_aot_System_Netjit_code_end) +STUB("5ZgxJXyX+DY", _ZN3sce7Toolkit2NP2V28Matching12Notification11RefreshRoom19OWNER_EXCHANGE_SIZEE) +STUB("5ZkEP3Rq7As", cbrt) +STUB("5ZkGt3xBZ8Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEED2Ev) +STUB("5Zkj4-G-RbE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEC1Ev) STUB("5Zlr3joORIE", sceMatInitialize) +STUB( + "5ZmHq5-n58M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE3endEv) STUB("5ZoFb+9L7LY", sceNpManagerIntClearOnlineIdChangeFlag) +STUB("5ZzBLU1wIwo", _ZN7WebCore18JSHTMLVideoElement6s_infoE) +STUB("5a4nrywbfZc", glBindTransformFeedback) +STUB("5a8b+s6HtaA", mono_get_root_domain) +STUB("5a9GgEplHSU", _ZN3sce2Np9CppWebApi7Matches2V114ResponseMember11setJoinFlagERKb) +STUB( + "5aFInNdgPAE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE5eraseENS2_8IteratorIS6_EERS9_) +STUB( + "5aG1ghS5yJ4", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEEiRNS2_10LibContextEPT_m) +STUB( + "5aIa6+nUXLA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEeqERKS9_) +STUB("5aLqvrbXzvw", _ZN23sceMetadataReaderWriter14StorageManager10initializeEv) +STUB("5aS5ecSjlVc", _ZN3JSC4Heap39decrementDeferralDepthAndGCIfNeededSlowEv) +STUB("5aTXG4zGUKY", _ZN7WebCore8SVGNames8maskAttrE) +STUB("5aXKyDH-FQs", _ZN7WebCore22EmptyFrameLoaderClient29dispatchDidPopStateWithinPageEv) +STUB( + "5abwd1oxAjk", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10setString9EPKc) +STUB("5acW3MSCndw", WKPageSetMayStartMediaWhenInWindow) +STUB("5afBJmEfUQI", _ZNSt10moneypunctIcLb0EEC1EPKcm) +STUB( + "5amWv5Ma9fc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEE11release_refEv) +STUB("5anPnb+MWoU", u_strcmpFold_67) +STUB( + "5anTMZA4YRU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE21intrusive_ptr_sub_refEPS9_) +STUB("5ar727BtdoQ", _ZNK3WTF6String19characterStartingAtEj) +STUB("5avJQwMJgsY", + _ZNK3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody13getEntryLimitEv) +STUB("5axqbCvE1bE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEE5resetEPS6_) +STUB("5ayw0ZaCKK0", + _ZN7WebCore29deleteAllCookiesModifiedSinceERKNS_21NetworkStorageSessionEN3WTF8WallTimeE) +STUB("5b-D80m2TKc", curl_share_cleanup) +STUB("5b004VLFMTc", delegate_virtual_invoke_imt_m_18) STUB("5b3ZqlxJ+WE", sceKernelWriteMapCommand2) +STUB("5b6k75mTRb8", _ZN3sce7Toolkit2NP2V28Matching6MemberD2Ev) +STUB( + "5b9hIoEHmnU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEC1EPS9_) +STUB( + "5bB6DS0+qmc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEmmEi) STUB("5bBPLZV49kY", sceNpUtilXmlEscape) +STUB("5bBacGLyLOs", gmtime_s) +STUB("5bDbYUYXAmU", WKOpenPanelResultListenerGetTypeID) +STUB("5bFKFMYbouA", _ZN3sce2Np9CppWebApi6Common6VectorIiEixEm) +STUB("5bFNnMc9ebU", _ZN7WebCore15JSSVGSVGElement4infoEv) +STUB("5bQqdR3hTZw", _ZNSt10moneypunctIwLb0EEC2EPKcm) +STUB("5bZk93kkE5w", _ZN7WebCore11isEndOfLineERKNS_15VisiblePositionE) +STUB( + "5bfFcgF4YDc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEE3getEv) +STUB( + "5bhWQcGQbAw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEC1ERKS7_) +STUB( + "5bhvZNLvuiI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEC1ERKS7_) +STUB( + "5biEd-yQgvc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEC1EPS6_PNS2_10LibContextE) +STUB( + "5bnqjZD3cDU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEptEv) +STUB( + "5bp3xm+qySo", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("5btbLjqP-jU", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession19getJoinableUserTypeEv) STUB("5bvvbUSiFs4", sceAppContentGetAddcontDownloadProgress) +STUB( + "5c-AgckJymM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEaSERS7_) +STUB( + "5c170-XHn4E", + _ZN9Inspector23CanvasBackendDispatcher20resolveCanvasContextElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) STUB("5c5XIIUOnw8", sceCesUtf32ToGb) +STUB( + "5c7oTkFXOls", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEEC2ERKSC_) +STUB( + "5cD8AAcQNH8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "5cDd+VYj3iQ", + _ZN3JSC14JSGlobalObject17defineOwnPropertyEPNS_8JSObjectEPNS_9ExecStateENS_12PropertyNameERKNS_18PropertyDescriptorEb) +STUB("5cJ3RuOZuBs", _ZN7WebCore6Chrome16setStatusbarTextERNS_5FrameERKN3WTF6StringE) STUB("5cK+UC54Oz4", sceUserServiceSetFriendFlag) +STUB("5cM51KUPRlM", mono_aot_Sce_Vsh_CloudClientjit_code_end) +STUB( + "5cNlivIgxsk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEEC2ERKSA_) +STUB("5cPHNuhyuvg", _ZN3sce7Toolkit2NP2V28Matching6Worlds8deepCopyERKS4_) +STUB("5cQZYmhq8JE", _ZN7WebCore11MediaPlayer28setShouldMaintainAspectRatioEb) +STUB( + "5cRx2fciaEs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE23clearOnFinishedCallbackEv) +STUB( + "5cZ47Z8G4nY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEmmEi) STUB("5cgHNZaLnH0", sceUserServiceCreateGuestUser) +STUB("5ckAy-191ws", _ZN3JSC21linkAndEvaluateModuleEPNS_9ExecStateERKNS_10IdentifierENS_7JSValueE) STUB("5cmnYvTeG20", sceClAudiodecDeleteDecoder) +STUB("5co03gsGUOE", rgctx_fetch_trampoline_rgctx_114_p) +STUB("5co7rs22tn8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEEptEv) +STUB("5cuWIWh72Wc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEC1ERS7_) STUB("5cyEcilO-J0", sceFiosOpDelete) +STUB("5d-UMeAB5q4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEC2Ev) STUB("5d0YOfd9Sio", ScePsmMonoClassFromName) STUB("5d1ETCfqFnA", sceTsGetNextUnitData) +STUB("5d1Fu4WzokU", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_23NpIdListRankInformationEED2Ev) +STUB( + "5d2-IEcEMyI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEC2Ev) +STUB("5d77I8lC8Ek", _ZN7WebCore4Attr5styleEv) +STUB("5d7RiNIPhv8", _ZN3sce7Toolkit2NP2V210Tournament10TournamentC1ERKS4_) +STUB("5d8SoFh1OlQ", _ZN3JSC8JSObject12isExtensibleEPS0_PNS_9ExecStateE) +STUB("5d986ipaDyw", _ZN3JSC12VMEntryScopeC1ERNS_2VMEPNS_14JSGlobalObjectE) +STUB("5dCBe3YJ9cg", _ZN3NTF21URLRequestFormElementD0Ev) +STUB( + "5dGM-nhvJw0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEEC2ERKSA_) +STUB("5dJ+h7s5eoI", _ZN9Inspector26InspectorBackendDispatcherD1Ev) +STUB( + "5dK1I0A02E0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEC1EPKS8_) +STUB( + "5dLhJ9+CHlI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE21intrusive_ptr_add_refEPS9_) STUB("5dM-i0Ox2d8", sceUserServiceGetPbtcFridayHoursEnd) +STUB("5dOMK+Nlqxk", rgctx_fetch_trampoline_rgctx_118) +STUB( + "5dSbCRA+UeU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB( + "5dVoGd1qvC4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEeqERKS9_) +STUB("5dXJI4++gY4", JVM_RegisterSignal) +STUB("5dYXT+RAisM", _ZN3sce2Np9CppWebApi7Matches2V119RequestInGameRosterD1Ev) +STUB("5dYcrmvcToE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEC2Ev) +STUB( + "5dagxpWT2DI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEEdeEv) +STUB("5dclua8Io5s", _ZNK7WebCore11MediaPlayer17contentTypeCodecsEv) +STUB( + "5deOf-KyU4U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEC2Ev) +STUB("5dfVNhCZFxE", glGetTransformFeedbackVarying) +STUB("5dfgL5ucwaw", udat_setLenient_67) +STUB( + "5dgKLTmwgr8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEC1Ev) STUB("5dgOEPsEGqw", scePthreadBarrierInit) +STUB("5dj7CsbAu2w", _ZN9Inspector32DatabaseBackendDispatcherHandlerD1Ev) +STUB("5dqooVDnRhI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEEC2ERKS9_) +STUB("5e0s94yNzD4", utext_close_59) +STUB( + "5e5YmWQybQ4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEC1Ev) +STUB("5e5rj-coUv8", CA_MGMT_verifySignature) +STUB( + "5e93Dn2G7Ss", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "5eAi4YcHLB8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEC1EPS8_) +STUB("5eClSCd861E", _ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody10causeIsSetEv) +STUB( + "5eDUZhrW3S8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEED1Ev) +STUB("5eFzUD8XVjo", _ZN7WebCore9HTMLNames9buttonTagE) STUB("5ePaXQKhi2k", sceCesUcsProfileInitEucJis2004) +STUB("5eVLTdFFsLk", u_isULowercase_67) +STUB( + "5eVZqhGOPqg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB("5eWer-QKiAg", Java_java_awt_Component_paintLock) +STUB( + "5eZhojaE7kg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEaSERKS7_) +STUB("5ehgoYyaJmA", _ZN3WTF7RunLoop9TimerBase5startENS_7SecondsEb) +STUB( + "5eiy8gXECPI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEE7add_refEv) +STUB( + "5ejDuYPiIWY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE5clearEv) +STUB( + "5ejzvPwMfic", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB("5eo3yRQ09IU", _ZN3sce7Toolkit2NP2V26Trophy7Request19GetUnlockedTrophiesC1Ev) +STUB( + "5eoDuXGjIdQ", + _ZN3WTF15AutomaticThreadC2ERKNS_14AbstractLockerENS_3BoxINS_4LockEEEONS_3RefINS_24AutomaticThreadConditionENS_13DumbPtrTraitsIS8_EEEENS_10ThreadTypeENS_7SecondsE) +STUB( + "5eqc5ZmAKAg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE5beginEv) +STUB("5equn1kFE0w", mono_aot_System_Numericsplt_end) +STUB("5etqRztjIEU", _ZN7WebCore22ResourceLoadStatistics20areDomainsAssociatedEbRKN3WTF6StringES4_) +STUB("5euVemDnv+M", _ZN7WebCore21MediaRecorderProviderC2ERKS0_) +STUB( + "5exq63lGkTk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEC2EPKS8_) +STUB("5ezDlX4hzec", + _ZN3JSC8JSObject25getOwnPropertySlotByIndexEPS0_PNS_14JSGlobalObjectEjRNS_12PropertySlotE) STUB("5f-6lp7L5cY", sceHmdInternalDfuGetStatus) +STUB( + "5f2-75nTwOQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEC2Ev) +STUB("5f42SVZ4-Ws", _ZN12Mp4Retriever14processStsdBoxEv) +STUB( + "5f6MkjNt3Js", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB("5f9xDKxYjbY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEC1Ev) +STUB("5fANL96CbhY", Java_java_awt_GnmGraphics_initIDs) +STUB( + "5fAcvfp0138", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEEC2ERKSA_) +STUB( + "5fBse95RjuA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("5fC5WIiN+Ac", uloc_getDisplayScript) +STUB( + "5fHdJW0T4DU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("5fPSgTdqQzg", DSA_get0_key) +STUB( + "5fPWZogQ+cA", + _ZN9Inspector25DebuggerBackendDispatcher15getScriptSourceElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "5fQTBQjMGm8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("5fQaXhHC4uY", mono_aot_Sce_Vsh_ProfileCachejit_code_end) +STUB("5fRRmpd93FM", ucol_getLocaleByType_67) +STUB("5fTxEp1g1mw", mono_aot_Sce_Vsh_VoiceAndAgentunbox_trampolines_end) +STUB( + "5fW0tz3yqFE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEC1ERKS7_) +STUB("5fXJzlY1Xh8", il2cpp_monitor_pulse_all) +STUB( + "5fXZLSqjvSo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEC1EPS8_) +STUB( + "5fb6R-Co1ig", + _ZN3sce2Np9CppWebApi14SessionManager2V149PutGameSessionsSearchAttributesRequestBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_42PutGameSessionsSearchAttributesRequestBodyEEE) STUB("5fbNa7tkGoI", sceCompositorSetEventCommand) +STUB( + "5fgAfBRYJS8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE5clearEv) +STUB("5fjRkhORnsc", WKPageSetVisibilityState) STUB("5fq+oTNFedg", sceNpEulaDialogGetResult) +STUB( + "5fsMnIPsAVg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEC1EPS8_) +STUB( + "5fshx3PPYqc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "5ftdcN0v+d0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEE11get_deleterEv) +STUB( + "5fun+ib7kCY", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations28getxPsnAcceptPlatformNamePs5Ev) +STUB( + "5fwKFDcTuGU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("5g-XKaX0hTg", _sin_impl) +STUB( + "5g2r5zPQzAs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEE11get_deleterEv) +STUB("5g381PzIMYw", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEEC1Ev) +STUB("5g38Q4IofHA", unum_formatDouble_59) STUB("5g6-RbnXrbE", sceCesSJisToUtf32) +STUB( + "5g6kfk9LFP0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEED2Ev) +STUB("5g9cNS3IFCk", SSL_closeConnection) +STUB("5gELNQcC+f8", _ZNK7WebCore8Position10downstreamENS_27EditingBoundaryCrossingRuleE) +STUB( + "5gGx8DYQsXU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) STUB("5gIVIzipgsw", sceShellCoreUtilGetAutoPowerDownRemainingSeconds) +STUB( + "5gJS3kJQiSQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEEcvbEv) +STUB("5gOOC0kzW0c", signgam) +STUB("5gP3fp-B64Y", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification16FriendlistUpdateEE3getEv) +STUB("5gTI2SV8lTM", gai_strerror) +STUB("5gXTm7cSZhw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEC2Ev) +STUB("5gXnxR+pdUo", sem_close) +STUB( + "5gZZCYba9Pg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEE7add_refEv) +STUB("5gbr38WlfZE", YGNodeStyleGetPosition) +STUB( + "5gc3munulFE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEEC1ERSA_) +STUB( + "5ge9U-b6tMw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEEcvbEv) +STUB("5gsmp2Ox0Vs", NpStateManagerStop) +STUB("5gtUZbkgnQI", _ZN3sce7Toolkit2NP2V29Messaging24GameDataMessageThumbnail8deepCopyERKS4_) +STUB( + "5gu1s1nBAhY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEaSERKS9_) +STUB("5h0eiVvefDA", uprv_decNumberVersion_67) +STUB( + "5h3QFBojepY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "5h97ib55UjQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEE11get_deleterEv) +STUB( + "5hD7cQXu+Mc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEdeEv) +STUB( + "5hDjXvG0aNo", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession23setLocalizedSessionNameERKNS1_6Common12IntrusivePtrINS3_15LocalizedStringEEE) +STUB("5hKpuqATmek", _ZN7WebCore20ResourceResponseBaseC1ERKNS_3URLERKN3WTF6StringExS7_) +STUB("5hMXXEDLGqE", _ZN13MsvMetaEditor22searchUuidWithUserTypeEPKjPib) +STUB( + "5hR4M2499NY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEaSERKS9_) +STUB( + "5hRgNvI6fpQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEC1Ev) +STUB( + "5hSHpcSFBig", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEED1Ev) +STUB( + "5hYCe5D5m8E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEED1Ev) +STUB( + "5hZ6a7tYDTE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEC2EPNS2_10LibContextE) +STUB("5haH1DZRMIc", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V18RelationEEppEi) +STUB( + "5hawOmncJTA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEeqERKS9_) +STUB( + "5hbCmQT4nO4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyC2EPNS1_6Common10LibContextE) +STUB( + "5hbb0uXZrgc", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "5hgPIpnI5ss", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEE11get_deleterEv) +STUB("5hkGCgm07gk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE6resizeEj) +STUB("5hpa41iufLo", _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest18getChildActivitiesEv) +STUB("5hpi-ggrt9s", mono_aot_Sce_Vsh_Themeunbox_trampolines) +STUB("5hsJhDVP7QE", _ZN3sce7Toolkit2NP2V210Tournament7Request10TeamFilterC2Ev) STUB("5huYgqy73xo", sceDbgUserChannelPrintf) +STUB( + "5huiDr06TX0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("5hyGcUq8iOs", + _ZN3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform14unsetJoinStateEv) +STUB( + "5hyQmkchWk8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEEaSERS9_) +STUB( + "5hyp8p6YAEQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEEC1ERSA_) +STUB( + "5hzYAOOwNRc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEixEm) +STUB("5i+J+lV6oNw", wpe_loader_get_loaded_implementation_library_name) +STUB("5i-qE0WD+q8", _ZN7WebCore18DOMWindowExtensionC2EPNS_5FrameERNS_15DOMWrapperWorldE) +STUB( + "5i0IYxmHlE4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEE11release_refEv) +STUB("5i4G0Dch02o", mono_aot_Sce_Vsh_SQLiteunbox_trampolines_end) +STUB( + "5i6Vm5eqd2c", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEptEv) +STUB("5i8mTQeo9hs", __atomic_exchange) +STUB("5i8mYqsM8z0", _ULx86_64_destroy_addr_space) +STUB( + "5iAOUQNFz+o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEE5resetEPS6_) STUB("5iAhhCI-A1A", sceAudioInSetMicLevel) +STUB("5iGBmITxmzo", jio_snprintf) +STUB( + "5iNuY1PfVz4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEptEv) +STUB("5iPoUxHRg1U", _ZN7WebCore17PageConsoleClientC1ERNS_4PageE) +STUB( + "5iUgIheUp5Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEE11release_refEv) +STUB( + "5iWYg6rTRyw", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12unsetString7Ev) +STUB("5iZG-E-Tj3o", _ZNK7WebCore9RenderBox11clientWidthEv) +STUB("5iahcrakLRo", _ZN3sce7Toolkit2NP2V210Tournament12EventDetailsC2Ev) STUB("5ifAYsFspMM", sceKernelPrepareToSuspendProcess) +STUB( + "5im-hNGx6QU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEC1EPS8_) +STUB( + "5inJZ9DWU-8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEC2Ev) +STUB( + "5iopwZQTBdQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEC2Ev) +STUB("5ipBcLYVc2k", FT_Remove_Module) +STUB("5iq1GFWmatc", utrie_enum_67) STUB("5iqtUryI-hI", sceUserServiceGetNotificationSettings) STUB("5isaotjMWlA", sceNetEventCallbackWaitCB) +STUB("5iutBW2kKYU", Java_com_sony_bdjstack_core_CoreApp_getBasePath) +STUB("5iwHJGfeSLY", _ZN12video_parser17cVideoOperatorMnvC2EPKc) +STUB("5ixVUdmlq1o", WKInspectorIsFront) STUB("5ixbljAMYeg", sceMbusDebugGetPriorityInfo) STUB("5iyXoE5JDCg", sceFsUfsAllocateSaveData) +STUB("5iypqrWVS40", _ZN12video_parser5vpcom3rtc19ParseSQLiteDateTimeEPmPKc) +STUB( + "5j-VpP4DjUE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEEC1Ev) +STUB("5j4kGT4mYL8", _ZNK7WebCore12SettingsBase19sansSerifFontFamilyE11UScriptCode) +STUB("5j5u8ODxw0M", _ZN3JSC7Symbols18PromisePrivateNameE) +STUB("5j6-WEttbuw", + _ZN7WebCore8Settings46setAuthorAndUserStylesEnabledInspectorOverrideEN3WTF8OptionalIbEE) +STUB( + "5j71cGUknZU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEEC2EPS8_PNS2_10LibContextE) +STUB("5j7fnT5sLSY", generic_trampoline_jit) +STUB( + "5j8K2STP57U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE5emptyEv) +STUB("5j9bYxepQ+I", _ZN3JSC7Symbols11matchSymbolE) STUB("5jL7UM+AdbQ", sceUserServiceSetSystemLoggerHashedAccountId) +STUB("5jLg5+MVNOA", g_slist_nth_data) +STUB( + "5jNSXii7Ii0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEC2Ev) +STUB("5jNubw4vlAA", strnlen) +STUB("5jRCs2axtr4", inet_ntop) +STUB("5jX3QET-Jhw", _ZTSSt9time_base) +STUB( + "5jXILdtQ3Og", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEE3getEv) +STUB( + "5jgS9cSmlQs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEE5resetEPS9_) +STUB("5jhzau6bbXk", _cos_impl) +STUB( + "5jjCirv5CTQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEEC1Ev) +STUB("5jk63e4y8qA", _ZN7WebCore21convertToIntegerClampIlEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB( + "5jofPJnvvGA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE7popBackEv) +STUB("5jpU6nIoG7s", _ZN7WebCore17JSHTMLLinkElement14finishCreationERN3JSC2VME) +STUB("5jqBeo7ZSLo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEE3getEv) +STUB( + "5jrWuNhpppA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) STUB("5jsZ5DrpJYc", sceFsMlfsMountWithFlags) STUB("5jwhYRmIpTE", sceVnaSetSessionTimeoutSettings) +STUB("5jwt0lYswdE", _ZN12Mp4Retriever14processTkhdBoxEv) +STUB( + "5k2xq0wh18c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEC1Ev) +STUB( + "5kB1T8Ex9bA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEEC1EPS8_PNS2_10LibContextE) +STUB("5kBfZ40bAuk", tcgetattr) +STUB( + "5kCVJI+pv+Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("5kH064n38yc", GCC_except_table331) +STUB("5kKBK5wylwI", WKHitTestResultCopyLinkTitle) +STUB("5kKmf95aeiM", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetBoolean1Ev) +STUB( + "5kVK5WJoyeY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEE11release_refEv) +STUB("5kVoMk8TJRU", usearch_reset_67) +STUB( + "5kWPmfzWrNQ", + _ZN3sce2Np9CppWebApi7Matches2V14Task11setSubtasksERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_7SubtaskEEEEE) +STUB( + "5kWpFDZfzJo", + _ZN9Inspector24RuntimeBackendDispatcher12awaitPromiseElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("5kYJZyG9nIw", _ZN7WebCore9HTMLNames11enctypeAttrE) +STUB("5kbL2PamH30", mono_aot_Sce_Vsh_MyGameListjit_got) +STUB( + "5khLs+O2lpY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEE7add_refEv) +STUB("5kng5eAMagw", + _ZN7WebCore17LinkIconCollector12iconsOfTypesEN3WTF9OptionSetINS_12LinkIconTypeEEE) +STUB("5kt-2P9eBgc", _ZN7WebCore14SQLiteDatabase22disableThreadingChecksEv) STUB("5kx49CAlO-M", sceFontGetAttribute) +STUB( + "5kxdg1HLUSM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEC1Ev) +STUB( + "5kzeIgDm6PQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEdeEv) +STUB("5l-RMMB0B9Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEE7get_refEv) +STUB( + "5l14Uh9z+MI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE5beginEv) +STUB( + "5l3EaxOWG-c", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) STUB("5l3IfCFJxBs", sceAgcDriverFindResourcesPublic) +STUB("5l4-Ye9uFuA", _ZN3JSC13RuntimeMethodC2ERNS_2VMEPNS_9StructureEPNS_8Bindings6MethodE) +STUB("5lGNa6oA3Wg", + _ZN7WebCore19JSHTMLSelectElement11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("5lJZI5dqOj0", mono_aot_Sce_Vsh_RequestShareStorageWrappermethod_addresses) +STUB("5lVoAOpBn1Q", Java_java_util_zip_ZipFile_getSize) +STUB( + "5lZxfnXd59A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEcvbEv) +STUB("5lb4HbLqUeE", _ZNK7WebCore12ChromeClient33shouldDispatchFakeMouseMoveEventsEv) STUB("5ldnD16rYZw", sceAjmBatchJobSetResampleParametersEx) STUB("5lhvOqheFBA", sceNpMatching2GetRoomMemberDataInternal) +STUB( + "5li12quI-mo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB("5lj721VKEdI", _ZN3JSC7Symbols25concatSlowPathPrivateNameE) +STUB("5lqFaOk9rQE", _ZN7WebCore26HTMLTextFormControlElement21setSelectionDirectionERKN3WTF6StringE) STUB("5lrSEHdqyos", sceNetGetIfnameNumList) +STUB("5lsDn8-BaNU", _ZN12Mp4Retriever14processUuidBoxEv) +STUB( + "5m3I8TAsbuw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEC2Ev) +STUB("5m7AgdxA2ps", _ZN3JSC11VMInspector9forEachVMEON3WTF8FunctionIFNS0_13FunctorStatusERNS_2VMEEEE) +STUB("5m8+OXFKHyw", mono_aot_Sce_Vsh_Np_AuCheckmethod_addresses) +STUB("5mCd+ow2T2s", WKArrayAppendItem) +STUB( + "5mCgT5N4uYo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEEC1ERKSA_) +STUB( + "5mDu25LGUds", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("5mDyEN8X7Zw", ustrcase_internalToUpper_67) +STUB( + "5mI1SnuO9wk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEC1ERS7_) +STUB( + "5mMU5hblNns", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEC1ERS7_) +STUB("5mNZ1PXEPWI", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEEplEm) STUB("5mO+cXIAaRI", scePthreadMutexGetprioceiling) +STUB( + "5mPGhLmO8Ks", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE6resizeEj) +STUB( + "5mPNUq8OETE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEEC2ERKSA_) +STUB( + "5mQ-4X10tJo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEE11get_deleterEv) +STUB( + "5mUG6spIw-4", + _ZN3sce7Toolkit2NP2V28Matching14sendInvitationERKNS3_7Request14SendInvitationEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("5mZYrdBvCCA", u_versionToString) +STUB( + "5ma9zz9mlf0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "5mdHwsvDxeI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEC2Ev) +STUB( + "5mfQHJ-BXzM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB( + "5mhO-GsviAI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE6resizeEj) +STUB( + "5mhoSsB6yw0", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB("5ml1wcikg0c", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEdeEv) +STUB("5mlTo8nbdYU", _ZN3JSC4Yarr10parseFlagsEN3WTF10StringViewE) +STUB("5mppAJEHox0", WKViewDidExitFullScreen) +STUB("5my6B3OKWLk", WKContextConfigurationSetInjectedBundlePath) +STUB("5n-mrnhy5Fk", _ZN3sce2Np9CppWebApi6Common6VectorIiED1Ev) STUB("5n-wRxhsTXU", sceDebugStopChildProcesses) +STUB( + "5n5BLnFKY6g", + _ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead21unsetFromNonPsnPlayerEv) STUB("5n5i6p18f+Q", sceMusicCoreServerTerminate) +STUB("5n8+z7tyJDQ", g_list_nth_data) +STUB( + "5n95QveY7H4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEaSERS7_) +STUB("5nB67Vde7AA", + _ZN3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinitionC2Ev) +STUB("5nHE5aoXmoc", Java_com_sony_bdjstack_system_BDJModule_waitForExit) +STUB( + "5nJYd4V9qF4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE5beginEv) +STUB("5nM4Yy92Qwg", _ZN3sce2np9EventFlag4dtorEv) +STUB( + "5nQqVXM+6-c", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEEcvbEv) +STUB("5nW3A7Q-2OQ", _ZN7WebCore12ChromeClient17didAddHeaderLayerERNS_13GraphicsLayerE) STUB("5nayeu8VK5Y", sceNpManagerIntRemoveOnlineIdChangeCallback) STUB("5nc2gdLNsok", sceCoredumpAttachUserFile) +STUB("5ncu2Zysxcw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEEC2EPS5_PFvS7_EPNS2_10LibContextE) +STUB("5nd7FB7MQhE", _ZNK9Inspector17BackendDispatcher12CallbackBase8isActiveEv) STUB("5nl86m-O6zg", sceOpusSilkEncCtl) +STUB("5nlaOBZYquI", _ZN3sce3Xml12MemAllocatorD0Ev) +STUB("5npvcIFzkLc", _ZN7WebCore9HTMLNames6wbrTagE) +STUB("5nyaTBp3OLA", ucurr_getName_67) +STUB("5o5LFXSYQsw", _ZN3sce7Toolkit2NP2V28Commerce9ContainerC1Ev) +STUB("5o8+E6aqcKk", + _ZN3sce2Np9CppWebApi7Matches2V128RequestTemporaryMatchResultsC1EPNS1_6Common10LibContextE) +STUB( + "5oDrRAty+6g", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "5oEDjTgTmK0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEmmEv) +STUB( + "5oFq3CNRerc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE8pushBackERKS8_) STUB("5oLJoOVBbGU", sceNetCtlApAppInitWpaKeyForQa) +STUB( + "5oMSt-sYGY4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "5oU25pL8aKU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEmmEv) +STUB("5odJ9-BPKj0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V115SearchAttributeEEmmEv) +STUB("5oozK98GQac", il2cpp_monitor_pulse) +STUB( + "5oqGmxHcbHE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEE3getEv) +STUB("5osvee3K52Q", goby_ManageRights) +STUB("5ovK+oroKlY", _ZN15AbstractStorage14TwitterStorageD0Ev) STUB("5ox1t2dfriw", sceAudioOutGetSystemInfoEx) +STUB( + "5p8LHGPi5oc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEED2Ev) +STUB( + "5pHB8m5ZtGI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE5beginEv) +STUB("5pMRwq9iJhc", mono_debug_free_source_location) +STUB("5pMktPrQ1pg", _ZN9Inspector18InjectedScriptBaseaSERKS0_) +STUB("5pZKrL6W9jI", _ZTVN9Inspector21PageBackendDispatcherE) +STUB( + "5pbw5vA7vRQ", + _ZN7WebCore10WheelEvent20initWebKitWheelEventEiiON3WTF6RefPtrINS_11WindowProxyENS1_13DumbPtrTraitsIS3_EEEEiiiibbbb) +STUB( + "5pkGq7Ilw9Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEE7get_refEv) +STUB( + "5prlZSNAmwg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE4sizeEv) +STUB( + "5puPMzl9jtE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEplEm) +STUB( + "5puj1JruUOU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEED2Ev) +STUB("5pwC1RwyN7A", _ZN7WebCore9HTMLNames7citeTagE) +STUB("5pwtd+MYKfw", AacsPermissionActivateCheck) +STUB("5q0suac3C+8", ures_getVersionNumberInternal) +STUB("5q7D6a4Yc7M", ring_doorbell) STUB("5q95ravnueg", sceGnmDrawIndexIndirectMulti) +STUB("5qBXmEPTZpI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEED1Ev) +STUB( + "5qBh9gmIMYw", + _ZN9Inspector25RuntimeFrontendDispatcher23executionContextCreatedEN3WTF6RefPtrINS_8Protocol7Runtime27ExecutionContextDescriptionENS1_13DumbPtrTraitsIS5_EEEE) +STUB("5qHg+VqPrT4", _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRankingC2ERS5_) +STUB( + "5qMXy8fDfz8", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_4Page20CookieSameSitePolicyEEESt8optionalIT_ERKN3WTF6StringE) +STUB("5qOttZkPpOQ", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_21NotifyChallengeResultEED2Ev) +STUB("5qP1iVQkdck", ftello) STUB("5qRVfxOmbno", sceAudioInDeviceHqOpen) +STUB("5qcBN4xuhSI", rgctx_fetch_trampoline_rgctx_113_p) +STUB( + "5qjqI0FPyWc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEC2EPS8_) +STUB("5qqbXOGlHw4", FT_Library_Version) +STUB("5qqjEdxEeeU", _ZN3WTF18FunctionDispatcherD0Ev) +STUB("5qtcuXWt5Xc", _Randseed) +STUB( + "5qugEw6kQ3U", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEplEm) STUB("5quyauWOGX0", sceClHttpAbortRequest) +STUB( + "5r+v8yyPmCs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE17getNpWebApi2ReqIdEv) +STUB( + "5r2Y8-7I8Eo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE3endEv) +STUB( + "5r2zwKiU-2Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEC2EPS8_) +STUB( + "5r4jPU8MWAQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE6resizeEj) +STUB( + "5r4qvRkyUy4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEEptEv) +STUB("5r5GmjB00v0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEEptEv) +STUB("5r801ZWiJJI", _ZNSt6locale7_Locimp8_MakelocERKSt8_LocinfoiPS0_PKS_) +STUB("5r9JJG6Qbh4", Java_java_io_FileDescriptor_initIDs) +STUB("5rCCrgOuFtQ", _ZNK7WebCore9FrameView28absoluteToLayoutViewportRectENS_9FloatRectE) +STUB( + "5rCy1tlszTI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE7reserveEi) +STUB("5rD2lCo4688", _ZTSPKs) +STUB("5rDrhhxeH90", il2cpp_get_corlib) +STUB("5rDyTRHHx3k", GetCurrentTime) +STUB( + "5rINiSr7Wa8", + _ZN7WebCore25WebSocketChannelInspector21didSendWebSocketFrameEPNS_8DocumentERKNS_14WebSocketFrameE) +STUB("5rJgyi8UtAU", _ZN3NTF22URLRequestJobSchedulerC1Ev) +STUB("5rLiDvpncr0", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V18SortModeEEptEv) +STUB( + "5rNa2myKI+w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEC1Ev) +STUB( + "5rP60EvxPg4", + _ZN8meta_gen11MsvPromoter16ExtractThumbnailERN23sceMetadataReaderWriter9ThumbnailEP22MsvPromoteInnerContextP20MsvCancelInterface_tP19MsvStorageInterfaceP26MsvPromoteInnerInformation) +STUB("5rS-6rO0R6g", _ZNK7WebCore13HTTPHeaderMap17getUncommonHeaderERKN3WTF6StringE) +STUB("5rbqI4X4rOs", _ZN9Inspector22InspectorDebuggerAgent17clearPauseDetailsEv) +STUB( + "5relJQzkE9I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEE7add_refEv) +STUB( + "5rjSowS0dqk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEE7add_refEv) +STUB("5rp0gDy116g", _ZN7WebCore19JSAnimationTimeline9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("5rrJMdrBV0g", _ZN3sce2Np9CppWebApi7Matches2V124ResponseTeamMemberResultD1Ev) STUB("5rrJOgmGgPY", sceDataTransferAbortFgTransfer) +STUB( + "5rx9BI+P0Yg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEneERKS9_) +STUB("5s+C+3KyIG0", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_accessiblePlayList) +STUB( + "5s-tzz2VeoE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE5startEPNS2_10LibContextE) +STUB("5s0ydPMO0f0", uprv_deleteUObject) +STUB( + "5s3QAId9Fo8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEED1Ev) +STUB( + "5s4TinvE+1c", + _ZN7Nicosia9AnimationC1ERKN3WTF6StringERKN7WebCore17KeyframeValueListERKNS5_9FloatSizeERKNS5_9AnimationEbNS1_13MonotonicTimeENS1_7SecondsENS0_14AnimationStateE) STUB("5sAWgysOBfE", sceFontGraphicsUpdateClipping) STUB("5sBISBR0ooA", sceDbgAssertionHandler) +STUB( + "5sK+ewjenbY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEE7add_refEv) +STUB( + "5sNJ89fhoWw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEmmEi) +STUB("5sNT63YuvME", _ZN7Nicosia16SceneIntegration6ClientD0Ev) +STUB( + "5sRu4LyJ22M", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE17getNpWebApi2ReqIdEv) +STUB("5sSAnvs7pzI", _ZN3sce2np14JsonStringImplD0Ev) STUB("5sYNBNK+W3g", sceFiosFHClose) +STUB("5sd-RroOg-w", WKContextGetMaximumNumberOfProcesses) +STUB( + "5sdx8ctOIE0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("5sfbtNAdt-M", _ZNKSt12future_error4whatEv) +STUB("5ssHBRrth-w", _ZN7WebCore9HTMLNames9legendTagE) +STUB("5ssgfQ4aL9A", bemp2sys_logprintf_setlevel) +STUB("5t1WvcR0qqk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V510AnnotationEEeqERKS7_) +STUB("5t3Fcej08Z8", JVM_FindClassFromClassLoader) +STUB("5t5EIFVnWlQ", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEEC2Ev) +STUB( + "5t7Tz-GAdWQ", + _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile12setLanguagesERKNS1_6Common6VectorINS5_6StringEEE) +STUB("5t7pPLGAH60", mono_field_get_value_object) STUB("5tAHSWQfomw", sceDebugGetSyncWaiterList) +STUB( + "5tHXQyYv3DM", + _ZN9Inspector25DatabaseBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("5tM252Rs2fc", getc_unlocked) STUB("5tOfnaClcqM", sceAjmBatchStart) STUB("5tRaBjtdTzY", sceVideoOutVrrPegToFixedRate) +STUB( + "5tSQI3wPYQM", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody25unsetLocalizedSessionNameEv) +STUB("5tW9QOKdw7g", _ZNK3sce2Np9CppWebApi7Matches2V117ResponseMatchTeam11getTeamNameEv) +STUB("5tYi1l9CXD0", _ZN3sce2np9RefObject7ReleaseEv) +STUB("5ti4Vc-Mp6I", WKWebsiteDataStoreRemoveLocalStorage) +STUB("5tmv0sLeWpU", PEM_read_bio_X509_AUX) +STUB("5to2dtEmnsg", _ZL18_new_array_nothrow) +STUB( + "5toHmdcZrx4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUserD2Ev) +STUB("5trdnX5Neq0", _ZN7WebCore15JSSVGSVGElement14finishCreationERN3JSC2VME) STUB("5txKfcMUAok", pthread_mutexattr_setprotocol) STUB("5txx+w0HYOs", sceBgftServiceIntDownloadGetProgress) +STUB("5u-OHNy+7cc", _ZN3PAL22registerNotifyCallbackERKN3WTF6StringEONS0_8FunctionIFvvEEE) STUB("5u2WeL-PR2w", sceSystemServiceGetPlatformPrivacyDefinitionData) +STUB( + "5u3bsq8gHnU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEE7get_refEv) +STUB("5u5m9uySmd0", _ZN7WebCore9VRManager9singletonEv) +STUB("5u92OudBAQs", mono_aot_Sce_Vsh_Accessor_Dbunbox_trampolines) +STUB("5uDsUFAoyFQ", _ZNK3sce2Np9CppWebApi7Matches2V120ReportResultsRequest6toJsonERNS_4Json5ValueEb) +STUB( + "5uE1LUx8z8A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEC2Ev) +STUB( + "5uEl-q4nnKw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEppEv) +STUB("5uEq+xEE5VE", _ZN3JSC7Symbols25generatorFramePrivateNameE) STUB("5uFKckiJYRM", sceGnmSetPsShader350) +STUB( + "5uN0347eJm8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEEC2EPSA_PFvSC_EPNS2_10LibContextE) +STUB( + "5uOSMNfzqHc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEE5resetEPS8_) +STUB( + "5uOU8IfPT2I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("5uRi+ZGaijc", + _ZN3sce2Np9CppWebApi11Matchmaking2V120ErrorResponseFactory7destroyEPNS3_13ErrorResponseE) +STUB("5uSNu5gTC1I", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEE3getEv) +STUB("5uYwhIt0ZgA", _ZN7WebCore8XMLNames8langAttrE) +STUB( + "5uZu9zxo0y4", + _ZN3sce2Np9CppWebApi6Common23UpDownStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC1Ev) STUB("5udAm+6boVg", sceGnmCreateWorkloadStream) +STUB("5udeImdKV88", _ZThn176_NK7WebCore8Document42shouldBypassMainWorldContentSecurityPolicyEv) +STUB("5uejYlz1HSo", mono_aot_Sce_Vsh_DbPreparationWrapperplt_end) +STUB("5uqBKY6wdV4", mono_aot_Sce_Vsh_GriefReportunwind_info) +STUB("5uu3AmSSEBg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE7reserveEi) +STUB( + "5uvjzBmTu5Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE4sizeEv) +STUB( + "5uvuKGA1cQU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEC2EPS8_) +STUB("5ux94o4IbC0", png_get_valid) +STUB("5uxtaxT7+2U", _ZNK7WebCore16HTMLMediaElement6pausedEv) +STUB( + "5uy3POCFlAc", + _ZN3JSC19JSSymbolTableObject14deletePropertyEPNS_6JSCellEPNS_14JSGlobalObjectENS_12PropertyNameERNS_18DeletePropertySlotE) +STUB( + "5v9DxFIdXq4", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError9setErrorsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_5ErrorEEEEE) +STUB("5v9kfC4GeYs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEED2Ev) +STUB( + "5vE3GUR0Nr0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE5clearEv) +STUB("5vHroLEmcZU", + _ZN7WebCore12SettingsBase20setCursiveFontFamilyERKN3WTF12AtomicStringE11UScriptCode) +STUB("5vILCAT5iX0", _ZN3sce2Np9CppWebApi12Leaderboards2V112EntryFactory7destroyEPNS3_5EntryE) +STUB("5vSMUBUm+HM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEEC2EPS6_PNS2_10LibContextE) +STUB("5vTnxovHQM4", _ZNK3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead13platformIsSetEv) +STUB("5vWidtUYDek", mono_aot_Sce_PlayStation_Orbis_Speechunwind_info) +STUB( + "5vcNFpc6oM8", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayer13isInitializedEv) +STUB("5vl4QkoHFYY", _ZNK3WTF6String14toUInt64StrictEPbi) +STUB( + "5vni++SVEII", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE6resizeEj) STUB("5vtFYXFJ7OU", sceUserServiceGetParentalDvd) +STUB( + "5vxa6rutVFw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("5vyXyk7zR6M", _ZNK7WebCore11MediaPlayer22hasAvailableVideoFrameEv) STUB("5vzOS2pHMFc", sceAudioPropagationSourceSetAudioPaths) +STUB("5w+Rr9+LpNk", WKContextUseTestingNetworkSession) +STUB("5w1u7rkzlBw", _ZNKSt9basic_iosIwSt11char_traitsIwEE5widenEc) +STUB("5w55Rh-7xNM", WKWebsitePoliciesGetDataStore) +STUB( + "5w745-GRndQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEE7add_refEv) +STUB("5w7WOKz7R2Y", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE5emptyEv) +STUB("5wAvtZfDK8M", il2cpp_class_get_element_class) +STUB( + "5wBnhHNNzPs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("5wDkfxnmbfI", _ZN7WebCore6JSNodeC2ERKS0_) +STUB("5wDmVg6B5-4", _ZN3sce7Toolkit2NP2V27Ranking7Request13GetUsersRanks8MIN_PCIDE) +STUB("5wJ799-PseQ", _ZN7WebCore8SVGTests27hasFeatureForLegacyBindingsERKN3WTF6StringES4_) +STUB( + "5wM1AxqBnvM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEC1EPNS2_10LibContextE) STUB("5wP7bivaX7c", sceAvControlIsHdrSupportedByMonitorInfo) +STUB( + "5wQblGoCaiA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEEC2EPS6_PNS2_10LibContextE) +STUB("5wTstW4Gvks", _ZN7WebCore19ResourceRequestBase13setHTTPMethodERKN3WTF6StringE) +STUB( + "5wWpL-6h3HE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEneERKS9_) +STUB("5wb9FIvzdd8", _ZN3sce2Np9CppWebApi7Matches2V111AddedPlayerC1EPNS1_6Common10LibContextE) +STUB( + "5wfp3dx-RNc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEptEv) STUB("5wjxESwX68I", sceShareFeatureProhibit) +STUB("5wk3sZEzYzs", _ZN3sce2Np9CppWebApi6Common6VectorIlE21intrusive_ptr_sub_refEPS4_) +STUB( + "5wk6-iVSm3c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE5beginEv) +STUB("5wtV7AmfJHM", _ZN7WebCore4Page23scheduleRenderingUpdateEv) +STUB("5wuEQJyn0QI", mono_aot_Sce_Vsh_Orbis_CdlgServerNpCommerceplt) +STUB("5wx9IkLreUQ", _ZN3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer14setCustomData1EPKvm) +STUB( + "5x-lTelv074", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("5x0Tc16D9IE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEEC1EPNS2_10LibContextE) +STUB( + "5x7XYR5UoCQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "5x8xnRDuv30", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEptEv) +STUB("5x92kVGvuec", FTC_SBitCache_Lookup) STUB("5xBpxt9gWiU", _sceLibcUnwindMutexInit) +STUB("5xCC90SVu-s", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_26ActivityFeedCondensedStoryEEC1ERKS4_) +STUB("5xDT5s6gCgg", sqlite3_column_name16) STUB("5xGAHCxA8M0", sceUltConditionVariableWait) +STUB("5xIa67r+LPE", _ZNK7WebCore3URL4userEv) +STUB( + "5xIuvnZfBvM", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS2_6VectorINS5_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS5_INS8_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("5xKeD3Xek3k", _ZN7WebCore11MathMLNames11alttextAttrE) +STUB( + "5xLNa0FRH0Q", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditionsC2ERS5_) +STUB( + "5xOdQGVtMpA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "5xQh3R1cMM0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEC2Ev) +STUB("5xTEr2xjqZM", _ZN7WebCore21convertToIntegerClampImEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB("5xXdtHf+CbU", _ZN7WebCore16VisitedLinkStore27invalidateStylesForAllLinksEv) +STUB( + "5xZk3UZHJBA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE6resizeEj) +STUB("5xaAcGH9QLs", JSRemoteInspectorDisableAutoStart) +STUB( + "5xd8lA7ZiCQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEEcvbEv) +STUB("5xgZx3AvaBQ", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable9setSlotIdERKi) +STUB("5xnIXBGQEV8", _ZN7WebCore20ISOOriginalFormatBoxC1Ev) +STUB( + "5xq6ZEP2OY4", + _ZN3sce2Np9CppWebApi14SessionManager2V157PostGameSessionsSessionIdMemberPlayersResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_50PostGameSessionsSessionIdMemberPlayersResponseBodyEEE) +STUB("5xrnhzmmZos", _Z21clearIpmiMessageQueuei) +STUB("5xsx74tXTsU", _ZN8meta_gen13TiffRetrieverD2Ev) +STUB("5xuzeLSBGPg", WKDatabaseManagerGetDatabaseDetailsExpectedUsageKey) +STUB( + "5xxTZnhwjOc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEE5resetEPS7_) +STUB("5xxxQSuP-3Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ChildActivityAvailabilityEEppEi) STUB("5y0wMPQkaeU", sceNpInt32ToStr) +STUB( + "5y6hVI2aLPU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEC2Ev) +STUB( + "5y8B0FwhfOY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB("5y8l2xECbuA", _ZN3JSC17FuzzerPredictionsC1EPKc) +STUB("5yChmiUJqt4", _ZN15AbstractStorage12LocalStorageC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("5yD7mtyHFIs", _ZN9Inspector15RemoteInspector15pushListingsNowEv) +STUB( + "5yFl0GN5ngc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEC2EPS6_PNS2_10LibContextE) +STUB("5yFprAQdMY4", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13boolean9IsSetEv) STUB("5yFpvHAL1qM", sceS3dConversionQueryAttr) +STUB("5yH++VAVSmc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEC1Ev) STUB("5yHFvMwZX2o", sceSaveDataDebugGetThreadId) +STUB( + "5yHGxtJOwFw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEaSERKS7_) +STUB("5yHuiWXo2gg", _ZN3sce4Json5Value3setEb) +STUB( + "5yKiqEeYzPA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle11setPerGenreERKNS1_6Common12IntrusivePtrINS3_19PlayStylePropertiesEEE) +STUB("5yLbxbgm3Ek", _ZN3sce7Toolkit2NP2V212ActivityFeed13UsersWhoLikedD1Ev) +STUB( + "5yP2ZgKzByI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("5yVBon4oQMg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE7reserveEi) +STUB("5yXyWGB2WNE", _ZN3WTF10ParkingLot11forEachImplERKNS_12ScopedLambdaIFvRNS_6ThreadEPKvEEE) STUB("5yYjEdd4t8Y", sceNpSignalingCreateContext) +STUB("5yZOVXSHWpo", WKContextSetUsesNetworkProcess) STUB("5yb0O2TsYvw", sceImeBackendOpen) +STUB("5ybFTyFeUbQ", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEEppEv) +STUB("5ybvC00BiMo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEE5resetEPS6_) +STUB( + "5ydf-B-Dihk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEneERKS9_) STUB("5yga+o4TVqk", sceAvSettingControlHdcpEncryption) STUB("5ygy1IPUh5c", sceAppMessagingSendMsgToShellUI) +STUB( + "5yiOmhy5nQQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEptEv) +STUB( + "5yo-4tuiGoM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEE5resetEPS7_) +STUB( + "5yqQucMqBI0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE4sizeEv) +STUB( + "5yqemlmAhbk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEC1EPS8_) +STUB("5ytRGIY0Dwc", mono_aot_Sce_PlayStation_PUIPlatformunbox_trampolines) +STUB("5ywIAwiv3nY", sr10) +STUB("5z0f+ru0Dwg", _ZN13MsvMetaEditor17updateEachMoofBoxEi) +STUB( + "5zAlmMnlJTI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEdeEv) STUB("5zBnau1uIEo", sceNpUniversalDataSystemCreateContext) +STUB( + "5zCB78yzpEI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE10setContextEPNS2_10LibContextE) STUB("5zCW8dx4mKk", sceNpSnsIntFbGetGameAccessToken) +STUB("5zFNCOeM5pc", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE4sizeEv) +STUB("5zM0S8rA1Cs", _ZNK3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse17getTotalItemCountEv) +STUB("5zMJOGM2sLQ", _ZN7WebCore6Region5uniteERKS0_) +STUB("5zNKDCKx4bU", _ZNK7WebCore11JSDOMWindow6framesERN3JSC14JSGlobalObjectE) +STUB( + "5zNQ-Olz7OA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE21intrusive_ptr_add_refEPS9_) +STUB("5zSE85dlaJM", WKBundlePageSetContextMenuClient) +STUB("5zWJrz0X3Ig", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEEneERKS7_) +STUB("5zWUVRtR8xg", _FXp_setw) +STUB("5zXCzWZhwaQ", utrie2_internalU8PrevIndex) +STUB( + "5zbvAHroKWM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) STUB("5zcQehpL1Mc", sceDeci4hRead) +STUB("5zig4D657pQ", _ZN3sce2Np9CppWebApi13InGameCatalog2V59ContainerC1EPNS1_6Common10LibContextE) +STUB("5zpup0URQoc", RSA_free) +STUB( + "5zrDcSbpPgA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEppEi) +STUB( + "5zxktE2egBY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEixEm) +STUB("5zy52IXaODk", _ZN3JSC7Symbols33promiseRejectionRejectPrivateNameE) +STUB("5zyEbeBeTlE", _ZN7WebCore11DisplayList17FillRectWithColorD1Ev) +STUB( + "6+4D9D4vESc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEEC1ERSA_) +STUB("6+8N+ozBlqQ", _ZN3WTF21MemoryPressureHandler26endSimulatedMemoryPressureEv) +STUB( + "6+8iU7nnU2U", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEeqERKS9_) +STUB("6+C63btEXnQ", _ZN12video_parser17_VpBitreadReadBitEPNS_21VpMpegvideoAvcBitreadEiPvi) +STUB("6+F5CRKtELA", WKContextPauseHTMLTiles) +STUB( + "6+FEoF2cgO4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEEC1ERKSA_) +STUB("6+Ilj5seAW8", _ZN3JSC19HeapSnapshotBuilder11analyzeNodeEPNS_6JSCellE) +STUB("6+JjX8dugXY", WKNotificationGetID) +STUB( + "6+LiqC-Omdc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEC2EPKS8_) +STUB( + "6+NMbqdqHFE", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13integer1IsSetEv) +STUB("6+NsFXHpWXc", u_strFromUTF32) +STUB( + "6+NxT-ujmno", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC2Ev) +STUB( + "6+WR5aDy6bg", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("6+XDwGoQ6zc", _ZN3sce2Np9CppWebApi7Matches2V118RequestTeamResults20getTeamMemberResultsEv) STUB("6+bfgq18W84", sceDebugInit) +STUB("6+ix1AaU8xY", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt6vectorI16SceNpTusVariableNS2_IS4_EEEE10deallocateEPS6_m) +STUB( + "6+ksx1XowpA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEEC2ERSA_) +STUB("6+mBcQlHzNg", _ZN3JSC22globalMemoryStatisticsEv) +STUB("6+rNfThi1CY", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer9unsetsortEv) STUB("6+tPBogghdI", sceLoginMgrServerDialogGetOpenParam) +STUB( + "6+tWrQKev+0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEC1EPS8_) +STUB( + "6+tkwSme-y8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEE7get_refEv) STUB("6+v7m1vwE+0", sceHmdInternalAnotherScreenSendVideo) +STUB("6+yXRlVrjbc", FT_Stroker_CubicTo) +STUB( + "6+zWu5yZ2bE", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Runtime12RemoteObject7SubtypeEEESt8optionalIT_ERKN3WTF6StringE) +STUB("6+zaUZSlg-E", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate15getPerFranchiseEv) +STUB("6-+0tEfhXI8", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEEC1Ev) STUB("6-+Yqc-NppQ", sceNpTusDeleteMultiSlotDataAAsync) STUB("6-1fKaa5HlY", sceSharePlayResumeScreenForCdlg) +STUB("6-68Bw2XP0Q", + _ZN7WebCore40restrictMinimumScaleFactorToViewportSizeERNS_18ViewportAttributesENS_7IntSizeEf) STUB("6-G9OxL5DKg", sceNpScoreGetFriendsRankingAAsync) +STUB("6-GLBzdKYYM", _ZN3sce2Np9CppWebApi13InGameCatalog2V53SkuC1EPNS1_6Common10LibContextE) +STUB( + "6-GQaHkqZBw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEC2EPKS8_) +STUB("6-GmQWtFE6Y", _ZN7bmalloc11IsoTLSEntryC2Em) +STUB("6-HwyA5qhqU", Java_java_io_ObjectInputStream_allocateNewArray) +STUB( + "6-Jam0XlSHw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("6-KDz3WqEAc", png_set_IHDR) +STUB( + "6-KWlx0ZoKo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEmmEi) +STUB("6-LMlTS1nno", _ZTVSt12future_error) +STUB( + "6-MQ7CcsNNg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEmmEi) +STUB("6-MnIeHjOeE", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request15PostInGameStoryD2Ev) +STUB( + "6-NEL13T3tc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("6-RfgdMbM4k", + _ZNK3sce2Np9CppWebApi11UserProfile2V112BasicProfile25isOfficiallyVerifiedIsSetEv) +STUB("6-TkLF+tmkM", _ZN3WTF8JSONImpl5ValueC1ERKNS_6StringE) +STUB( + "6-UkAiIoCQ4", + _ZN9Inspector25BrowserFrontendDispatcher18extensionsDisabledEN3WTF6RefPtrINS1_8JSONImpl7ArrayOfINS1_6StringEEENS1_13DumbPtrTraitsIS6_EEEE) +STUB("6-WU6MmYG0c", _ULx86_64_is_signal_frame) +STUB("6-YuH6asuyE", _ZN3sce7Toolkit2NP15AppSTLAllocatorI13SceNpOnlineIdE9constructEPS3_RKS3_) +STUB("6-ZiYGjq7b8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEdeEv) +STUB("6-fUwIYLI9w", _rtld_allocate_tls) +STUB( + "6-fu8nS-bAs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("6-ioRtwmTdA", _ZN7WebCore6JSNode15subspaceForImplERN3JSC2VME) +STUB( + "6-jCUc6r2fU", + _ZN3sce2Np9CppWebApi13InGameCatalog2V524ContentDescriptorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_17ContentDescriptorEEE) +STUB( + "6-qf2ePM50Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE5beginEv) +STUB("6-uGJ48n1BM", ucnv_extContinueMatchToU_67) +STUB("60+np84nu94", _ZN9Inspector30CanvasBackendDispatcherHandlerC2ERKS0_) STUB("60-cjn5Dn0Q", sceVrServiceDialogOpen) +STUB("600gKEiGusc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEC1Ev) +STUB( + "609u8DKdiH8", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("60IX3+7ylYk", mono_aot_Sce_Vsh_MimeTypeunbox_trampolines) +STUB("60IXulCxepw", WKWebsiteDataStoreSetStatisticsMaxStatisticsEntries) +STUB("60PjHzkyxhA", WKPageLoadHTMLString) +STUB( + "60PxGiP12yY", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot8setlimitEi) STUB("60RuiO+Dep4", sceApplicationSwitchToNeoMode) +STUB("60UTHqV7APg", mono_aot_Sce_Vsh_Np_IdMapperunbox_trampoline_addresses) +STUB( + "60UqZREtPnE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("60auoZK0sPo", _ZN3JSC27ReadonlyPropertyChangeErrorE) +STUB( + "60bQstCdlq8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEC1Ev) +STUB("60j3hXkW9+4", WKPageRestoreFromSessionStateWithoutNavigation) +STUB( + "60lM1GvH9bE", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12setBoolean10ERKb) +STUB("60nh2aBGU-o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEED2Ev) +STUB("60q1rziOzzQ", fnmatch) +STUB( + "60u+2ie0jMs", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM18CustomElementStateEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB("60vmzOO+r4o", umutablecptrie_fromUCPMap_67) +STUB("60zOHhhdSdk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEE11get_deleterEv) +STUB( + "610Bm5R6a8E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) STUB("610iwJKrGGo", sceBgftServiceIntDownloadGetGameAndGameAcProgress) +STUB("612HTOBkd3M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEdeEv) +STUB("617HDWTYn7I", WKBundleNodeHandleSetHTMLInputElementValueForUser) +STUB("61D40NZXwo8", _ZN3sce2Np9CppWebApi13InGameCatalog2V59ContainerD1Ev) +STUB( + "61EC2LTV350", + _ZN9Inspector27DOMStorageBackendDispatcherC1ERNS_17BackendDispatcherEPNS_34DOMStorageBackendDispatcherHandlerE) +STUB("61F2XYl-Qlw", _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody13unsetTicketIdEv) +STUB("61IVWsR1+yw", _ZN7WebCore15XPathNSResolverD1Ev) +STUB("61JbhcIJzdg", _ZL5traceP15_Unwind_ContextPv) +STUB( + "61Psz9hBouM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) STUB("61SRHOc+Zl4", sceDebugIpmiGetServerInfo) +STUB("61SRkUwIq4c", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_6NpUserEE9constructEPS3_RKS3_) +STUB("61Vtjhd4M0Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEC1Ev) +STUB("61hqQqOvL00", _ZN3sce3Xml3Dom4Node11removeChildENS1_6NodeIdE) +STUB( + "61l7lw7GPpM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEdeEv) +STUB( + "61wgc-NcB7U", + _ZThn176_NK7WebCore8Document11completeURLERKN3WTF6StringENS_22ScriptExecutionContext9ForceUTF8E) +STUB("61xa89ApzAw", _ZN8meta_gen13JpegRetrieverD1Ev) STUB("61ykjnH3AR4", sceDbgKeyboardGetKey2Char) +STUB("61yrarhAKxA", _ZN3sce7Toolkit2NP2V24Auth7IdTokenC1ERKS4_) +STUB( + "62+cyr7Hu2A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("6206R5Ww+sc", _ZN13OpaqueJSClassD2Ev) +STUB( + "625Q0lP8cX0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("627ftUcqI-4", mono_aot_System_Resources_ResourceManagerjit_code_start) +STUB( + "628Uzra6LjY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE8copyFromERKS9_) STUB("62KCwEMmzcM", scePthreadAttrDestroy) +STUB( + "62PmOEiNI8A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEC1Ev) +STUB( + "62Q9piHDD9E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE10setContextEPNS2_10LibContextE) +STUB( + "62S4NglnjOc", + _ZN3sce2Np9CppWebApi14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyC1EPNS1_6Common10LibContextE) +STUB( + "62TQJkUhvNM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEC1EPS8_) +STUB( + "62Ubo15oizM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEneERKS9_) STUB("62VJcoJnzdA", sceLncUtilSetRemotePlayServiceFlag) +STUB("62bzPhk37z0", + _ZNK3sce2Np9CppWebApi7Matches2V133RequestTemporaryCompetitiveResult18playerResultsIsSetEv) +STUB( + "62c-p7qEqIM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEE11get_deleterEv) +STUB( + "62fpLnXGm7M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEC1Ev) +STUB( + "62goa3W5RR0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB("62hri+YWbvk", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setGPR) +STUB( + "62jVvErk0Z0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEEC2Ev) +STUB( + "62jc4aLyK74", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEptEv) +STUB( + "62r3MEB9wLs", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsers9terminateEv) +STUB("62tMijWPfEc", _ZN7CoreIPC18MessageReceiverMap21removeMessageReceiverENS_15StringReferenceEm) +STUB( + "62wPLX-5coE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEppEv) STUB("632HibKgIsU", scePlayReadyDomainJoinProcessResponse) +STUB( + "633jpEVU0y4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEppEv) STUB("6381dWF+xsQ", sceHttpCreateEpoll) +STUB("63DD2vMWKhc", + _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi20ParameterToJoinMatch13isInitializedEv) +STUB( + "63J2Qm0nEj4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariable12setaccountIdEPKc) +STUB("63JKuy+rgMM", + _ZN3JSC8Bindings13RuntimeObject16getConstructDataEPNS_6JSCellERNS_13ConstructDataE) +STUB( + "63MBqXTZksQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEEcvbEv) +STUB("63P1MwkgE7I", _ZTC13MsvMetaEditor0_12Mp4Retriever) +STUB("63Qic8I9ysg", _ZN7WebCore9HTMLNames11framesetTagE) +STUB("63SzfoRv414", _ZNK7WebCore11HistoryItem15formContentTypeEv) +STUB("63X1ZO8IhCA", mono_aot_Newtonsoft_Json_PlayStationplt) +STUB("63bmb0nlVdw", _ZNK3JSC10CodeOrigin4dumpERN3WTF11PrintStreamE) +STUB("63gMgJpSkQo", _ZN3sce7Toolkit2NP2V212NetworkUtils12Notification14NetStateChangeD1Ev) +STUB( + "63irgN+Sqf4", + _ZN9Inspector23CanvasBackendDispatcherC1ERNS_17BackendDispatcherEPNS_30CanvasBackendDispatcherHandlerE) +STUB("63kHf1kLFGc", rgctx_fetch_trampoline_mrgctx_4_p) +STUB("63mNZtAp8Ag", mono_aot_Microsoft_CSharpplt) +STUB( + "63mPNKdUOZY", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession20setInvitableUserTypeERKNS3_17InvitableUserTypeE) STUB("63t6w0MgG8I", sceUserServiceSetGlsIsMuteEnabled) +STUB("63tAnrWmYsQ", WKBundlePageCopyRenderTreeExternalRepresentationForPrinting) +STUB( + "63vGjNguP2g", + _ZN7WebCore22EmptyFrameLoaderClient12createPluginERKNS_7IntSizeERNS_17HTMLPlugInElementERKNS_3URLERKN3WTF6VectorINS9_6StringELm0ENS9_15CrashOnOverflowELm16EEESF_RKSB_b) +STUB("63xZLzR8ZKE", mono_opcode_value) +STUB("640Q+XibEfc", _ZN3sce7Toolkit2NP2V24Core10OnlineUserC1Ev) +STUB("64180GwMVro", _ZN10__cxxabiv119__pointer_type_infoD0Ev) +STUB("64Adu9FVEys", GCC_except_table246) +STUB( + "64BX2V6ez4M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "64BsH9lub88", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEC1Ev) STUB("64D6V-ADQe0", sceNpManagerIntSignout) STUB("64ERZWVFBTE", sceHmd2ReprojectionSetUserEventEnd) +STUB("64MyBNwaY5I", _ZN3JSC16throwSyntaxErrorEPNS_14JSGlobalObjectERNS_10ThrowScopeE) STUB("64PEUYPuK98", sceUserServiceGetGlsAccessTokenNiconicoLive) +STUB("64QoC3ihZjc", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container11setAgeLimitERKi) +STUB("64TfvPwyhPM", _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_5RangeE) +STUB( + "64VsOItALXA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEmmEv) +STUB("64XMq6sDxUo", FT_Trace_Get_Name) +STUB( + "64Y38SwY+ZQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("64d1Ql4ALKM", + _ZNK3sce2Np9CppWebApi14SessionManager2V124GameSessionMemberForRead15spectatorsIsSetEv) +STUB("64kf1Dg-AsA", _ZN7WebCore8SVGNames14visibilityAttrE) STUB("64nkF7LGk8w", sceSystemServiceDisableMediaPlay) +STUB( + "64pqofAwJEg", + _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tmcc) +STUB("64sasHZlD+E", _ZN7WebCore12PrintContext3endEv) +STUB("64t1HKepy1Q", CA_MGMT_freeCertDistinguishedName) +STUB( + "64t1tScUT7U", + _ZN3sce2Np9CppWebApi7Matches2V124RequestCompetitiveResult16setPlayerResultsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_20RequestPlayerResultsEEEEE) +STUB("64umtbwiizI", _ZN4IPMI4impl10ClientImpl10initializeEPKNS_6Client6ConfigEPv) +STUB("64zPqAZVyN8", _ZN7WebCore11DisplayList8DrawRectD0Ev) +STUB("65+h7A-+B+M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEE3getEv) +STUB( + "65-3DeqSgrA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEE11release_refEv) +STUB("654BTEUyjAw", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEED1Ev) +STUB( + "655LHN8zlcI", + _ZN7WebCore17PageConsoleClient9timeStampEPN3JSC14JSGlobalObjectEON3WTF3RefIN9Inspector15ScriptArgumentsENS4_13DumbPtrTraitsIS7_EEEE) STUB("656LMQSrg6U", sceSystemServiceReceiveEvent) +STUB("659bF7Iw3XI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEEC2Ev) +STUB("65LGb3C4dE0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEEC1Ev) +STUB("65PBKMxAzwM", mono_aot_Sce_Vsh_SystemLoggerUtilWrapperunbox_trampolines_end) +STUB("65U47xQLX-I", _ZN3sce2Np9CppWebApi14SessionManager2V15Error7setCodeERKl) STUB("65VH0Qaaz6s", sceSaveDataGetMountInfo) +STUB( + "65WU72UOp74", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsC2EPNS1_6Common10LibContextE) +STUB( + "65XpEaKrA0o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("65bNfW1vqBI", _ZN7WebCore12JSTimeRanges4infoEv) +STUB( + "65cBi3HE1EM", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("65cvm2NDLmU", + _ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_bRSt8ios_basece) +STUB( + "65d8WRH+44Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEC2Ev) +STUB( + "65mLI2EEd2w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEC1ERS7_) +STUB( + "662LNVPwRlU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) STUB("668Ij9MYKEU", sceNpTusGetMultiSlotDataStatusAVUserAsync) +STUB( + "66AuqgLnsQE", + _ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE4_PutES3_St22_String_const_iteratorISt11_String_valISt13_Simple_typesIcEEEm) +STUB( + "66Bm2pTa3iw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEeqERKS9_) +STUB( + "66CLOc8CmJg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEEC1EPS8_PNS2_10LibContextE) +STUB( + "66Ep23Q5q0E", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB( + "66HQoUCACsE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB( + "66I3KamsSsU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEC2Ev) STUB("66IVWcdNHyI", sceCamera2SetContrast) +STUB( + "66JGp79C7yA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEED1Ev) +STUB("66VgKsjmYTM", _ZN3JSC8Debugger23updateCallFrameInternalEPNS_9ExecStateE) +STUB( + "66bF1cNKiVg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEC1EPS6_PNS2_10LibContextE) +STUB( + "66dMfnlHtss", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEmmEv) +STUB( + "66gJM-bRYNY", + _ZN3sce2Np9CppWebApi14SessionManager2V160PatchGameSessionsSessionIdMembersAccountIdRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_53PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEE) +STUB("66iwkYpXCUo", _ZN7WebCore8SVGNames11restartAttrE) +STUB("66lUg3KSBQs", _ZN7WebCore12ISOWebVTTCueD2Ev) +STUB( + "66o2NZq2nlo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEplEm) +STUB( + "66qBfB7O4HA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEE5resetEPS6_) +STUB( + "66rtr32Z+4c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE5clearEv) +STUB("671szSrFr6s", _ZN3JSC8Debugger9exceptionEPNS_14JSGlobalObjectEPNS_9CallFrameENS_7JSValueEb) +STUB("6750DaF5Pas", _ZN3sce2np6ThreadD2Ev) STUB("676j8sJONxM", sceCesUcs2ToSbc) +STUB( + "678hfNSP+Mo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEED2Ev) +STUB("67AhDC4lXVg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEED2Ev) +STUB( + "67E6pXft6ak", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEEcvbEv) +STUB( + "67FkXsGt5NI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEC1Ev) +STUB( + "67H7V-omIwo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "67Hk7ZetEbw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEE3getEv) +STUB("67LBM2mDbVM", _ZN3JSC14throwTypeErrorEPNS_9ExecStateERNS_10ThrowScopeEN3WTF12ASCIILiteralE) +STUB("67O5hEE++yo", rgctx_fetch_trampoline_rgctx_49_p) +STUB("67P8MiTuxKc", _ZN9Inspector15AsyncStackTrace20didDispatchAsyncCallEv) +STUB("67UMDvxRnTI", _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile10getAvatarsEv) +STUB("67Vu55MuB2c", + _ZNK3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsers9hasoffsetEv) +STUB( + "67Yoe5UlRP0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE5beginEv) +STUB("67bjaftRI50", _ZNK3sce2Np9CppWebApi14SessionManager2V15Error6toJsonERNS_4Json5ValueEb) +STUB("67mnqi19O1g", JVM_ConstantPoolGetFieldAtIfLoaded) STUB("67q17ERGBuw", sceHmdInternalGetRequiredPUPVersion) +STUB("67r6W-hiLco", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_11TusVariableENS2_IS4_EEEE7destroyEPS6_) +STUB("67re2IPp4Bo", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V517ContentDescriptor6toJsonERNS_4Json5ValueEb) +STUB( + "67tFvMMSeSE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEdeEv) +STUB( + "67wioL3b18k", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser13isInitializedEv) +STUB("67xw5D1OJts", _ZN7WebCore4PathD1Ev) +STUB( + "67yReI04I5w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE7popBackEv) +STUB("6813smIs-F4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEEC2ERKS9_) +STUB("685kVUKFFPY", mono_btls_ssl_ctx_initialize) +STUB("688gmLp3oeA", _ZN3JSC11MarkedBlock15aboutToMarkSlowEj) +STUB("689E3Karaw4", mono_domain_foreach) STUB("68B6XDgSANk", sceNpTusGetFriendsDataStatusForCrossSaveAsync) +STUB( + "68CReqfDCI0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEED1Ev) +STUB("68GU-RJ4dJ8", il2cpp_object_get_class) +STUB( + "68OWUIoyNNI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB("68RwU+yZBKU", Java_java_lang_reflect_Array_getFloat) STUB("68S3GKWhY6o", sceCameraIsConnectedForSystem) +STUB("68TnHm0k+Wo", mono_aot_Sce_PlayStation_Orbisplt) +STUB( + "68U+PukbxtE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE7reserveEi) +STUB("68VnGYcPyAc", _ZNK3JSC16ScriptExecutable9endColumnEv) +STUB("68WlyBlmQwM", + _ZN3sce7Toolkit2NP2V29Messaging7Request19SendGameDataMessage25MAX_SIZE_DATA_DESCRIPTIONE) +STUB("68Xne9xAk7s", glReadBuffer) +STUB("68a7dt2jTZo", _ZN7WebCore11DisplayList5ScaleD2Ev) +STUB("68d4tUskfS0", png_set_gray_to_rgb) +STUB( + "68e7n6SqtQk", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi47ParameterWithBinaryRequestBodyToRecordLargeData14getRequestBodyEv) +STUB("68hfPMwG3UQ", _ZN7WebCore11HistoryItem8setTitleERKN3WTF6StringE) +STUB( + "68imx5BwVAI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEC2Ev) +STUB("68l9v1aImyw", uscript_breaksBetweenLetters_67) +STUB( + "68rHCvjiqfk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEC2EPS8_) +STUB( + "68s0+CwJ5Jc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEED1Ev) STUB("68voDu2wGDE", sceNetApctlUnregisterCallback) STUB("69-5c5Th-o8", sceShareFactoryUtilTerminate) +STUB("69-JXZw10I4", _ZNK7WebCore6Editor23getCompositionSelectionERjS1_) +STUB( + "6905rbkIWeg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEneERKS9_) +STUB("6964-bbBA9Q", _ZN7WebCore11DisplayList6SetCTMD1Ev) +STUB( + "696i32ORI0k", + _ZN3sce2Np9CppWebApi14ConnectAccount2V216PartnerTokensApi15getPartnerTokenEiRKNS4_26ParameterToGetPartnerTokenERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_12PartnerTokenEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB( + "6991pgjS5g4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEE7get_refEv) +STUB("69DY3oiCwqM", mono_aot_System_Data_Services_Clientplt_end) +STUB( + "69Mr2AJ2F+I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE3endEv) +STUB( + "69NaEMX3xQc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEppEv) +STUB( + "69Ng45oazLY", + _ZNK9Inspector18InjectedScriptBase27callFunctionWithEvalEnabledERN10Deprecated18ScriptFunctionCallE) +STUB( + "69O7uIBypVQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEixEm) +STUB( + "69OHh1g57FE", + _ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionMemberPlayer8fromJsonERKNS_4Json5ValueE) +STUB( + "69PlO-CgeL8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE7reserveEi) +STUB("69Sj99mhvBE", mono_aot_ReactNative_Modules_Vsh_Gct_Telemetryjit_got) +STUB( + "69V06Medp-k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEC1EPNS2_10LibContextE) +STUB("69YVBbcF0-0", _ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_7DOMRectE) +STUB("69ZWOeabh1w", ucnv_getCCSID_67) +STUB("69aMgxJRczE", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_18GameCustomDataItemEEC1Ev) +STUB("69cJDk+7h5E", YGNodeCalculateLayout) STUB("69fVNDtk2Zk", sceVideodec2GetVp9PictureInfo) +STUB( + "69jvTBt-P3w", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB( + "69lWirHT6vI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEED2Ev) +STUB("69nDyoTs6hM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V120PlayerJoinableStatusEEmmEi) +STUB( + "69sp5ZjGiws", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEEC1EPS8_PNS2_10LibContextE) +STUB("69sxscNZzFE", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge13ChallengeDataEEC2Ev) STUB("69u+XqsoNd0", sceNpEntitlementAccessPollConsumeEntitlement) +STUB( + "69vPE5me7xk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "69vQyIGHxug", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEppEv) +STUB("6A+1YZ79qFk", iswcntrl) +STUB( + "6A1LVVtkyb0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE7popBackEv) STUB("6A6EweB3Dto", sceNetConfigWlanAdhocClearWakeOnWlan) +STUB("6A9ZWIILUwQ", mono_aot_Sce_Vsh_GriefReportmethod_addresses) +STUB("6A9x05T0dgE", _ZN7WebCore15ActiveDOMObjectC2ERKS0_) STUB("6AJE2jKg-c0", sceNetSyncCreate) +STUB( + "6AJxfDoJAfs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEdeEv) +STUB("6ALZDaUt5vI", uset_serializedContains_67) STUB("6AN7OlSMWk0", sceNetDhcpStop) +STUB("6ANtMXo+8T4", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE8capacityEv) +STUB("6AO4z2E92Ws", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEED2Ev) +STUB( + "6AP3kPJLZmQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEE7get_refEv) +STUB( + "6AXi7OU3GQE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEED2Ev) +STUB("6AYtfmV+2PQ", ucnv_openAllNames) +STUB("6AZDjebK-v8", coil_mspace_calloc) STUB("6AcoqeEhs6E", sceNpManagerIntWebLoginRequired) +STUB( + "6Af9Fu9zMLI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEC2EPS7_PFvS9_EPNS2_10LibContextE) +STUB("6Ah3qEzF5fg", _ZN9Inspector24CanvasFrontendDispatcher18clientNodesChangedERKN3WTF6StringE) +STUB( + "6Aq91JjROw8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEC2Ev) +STUB( + "6Aw-JetDKOM", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi35ParameterToSetGameSessionPropertiesC2Ev) +STUB("6B+t0c4O4DE", + _ZN3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer12setJoinStateERKNS3_9JoinStateE) +STUB( + "6B5AkjdR44Q", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("6B7jOBVu988", _ZN7WebCore3URLC1ERKS0_RKN3WTF6StringE) +STUB( + "6B9R5HiN0sc", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_13FriendsOfUserENS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv) +STUB("6BA6o6hUoTI", WKPreferencesGetJavaScriptMarkupEnabled) +STUB("6BC0gFV8QRw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEEC1ERKS6_) +STUB( + "6BDkqW5ckBo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEptEv) STUB("6BEmysiBFRM", sceMbusGetDeviceInfoByCondition) +STUB( + "6BFCn2DlPC8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "6BFRC2S8GNU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEEdeEv) +STUB( + "6BJK9d0u+K8", + _ZThn24_N9Inspector22InspectorDebuggerAgent14didParseSourceEmRKNS_19ScriptDebugListener6ScriptE) +STUB( + "6BK36-Lz9wk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEED2Ev) +STUB( + "6BLG0mX+TTk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "6BVwVeJCspE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEdeEv) +STUB( + "6BXLBuaImMo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE10setContextEPNS2_10LibContextE) +STUB("6BYT26CFh58", _ZTSN10__cxxabiv117__array_type_infoE) +STUB("6BYwjF4VVpI", ucol_normalizeShortDefinitionString_67) +STUB( + "6Bb9l3vdbVY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEE11get_deleterEv) +STUB( + "6BmXR7zU-gA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEEptEv) +STUB("6BoDuKAJfjI", mono_lls_insert) STUB("6BpEZuDT7YI", pthread_key_delete) +STUB( + "6Bpij9bfZSo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEppEi) +STUB( + "6BrJnqJ6jTM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEEdeEv) +STUB("6BswaRlDZkw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEC1ERKS7_) +STUB( + "6C+j-3zX6Kk", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getInteger7Ev) +STUB( + "6C-U7hvT+L8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEplEm) +STUB("6C2xmQ6qrmA", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils13NetStateBasicEE19setCustomReturnCodeEi) +STUB("6C8Npd4b2w4", _ZN7WebCore22EmptyFrameLoaderClient31prepareForDataSourceReplacementEv) +STUB( + "6C9EUWfvx7E", + _ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody22unsetLargeDataNumLimitEv) +STUB("6CD9L46HBRQ", _ZN7WebCore9FrameView24renderedCharactersExceedEj) +STUB("6CJEbL6VeaY", _ZN3sce7Toolkit2NP2V24Core5EmptyC1Ev) +STUB("6CPwoi-cFZM", _ZNKSt8bad_cast4whatEv) +STUB("6CQ7A-3-1Ks", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEED1Ev) +STUB("6CQ7RFmBjnQ", eglQueryContext) +STUB("6CRC7JhV+ik", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEC2ERKS7_) STUB("6CRWGc-evO4", sceHmdReprojectionSetCallback) +STUB("6CWGYOMLeyU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116InitialJoinStateEEC1EPS6_) +STUB( + "6CXzqKR8x8c", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE3endEv) +STUB( + "6CYACypt064", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE3endEv) +STUB("6CcKkO-b8-0", _ZNSt14error_categoryD0Ev) +STUB("6Ccou9yorMk", _ZN7WebCore9HTMLNames18autocapitalizeAttrE) STUB("6Cdc9bbjrRY", scePadVrControllerSetTriggerEffect) +STUB( + "6CfUchrohks", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEEC2ERSA_) +STUB( + "6Cj1aB9DQko", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEEC2ERKS8_) +STUB( + "6Ckje6RcBVM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEptEv) +STUB( + "6ClC-pREDZU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEC1EPS8_) +STUB("6ClJwE3AiGs", _ZN3sce7Toolkit2NP2V23TUS7Request7GetDataC1Ev) +STUB("6Cop9CFwVYs", c18) +STUB( + "6D0INEfdd-U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEEC1ERKSA_) +STUB( + "6D2ZdHxQd5o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEaSERKS7_) +STUB("6D4AZCAH2oo", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfileaSERS5_) +STUB( + "6DAcqruvhlg", + _ZN3sce7Toolkit2NP2V212ActivityFeed13getPlayedWithERKNS3_7Request13GetPlayedWithEPNS2_4Core8ResponseINS3_14PlayedWithFeedEEE) +STUB("6DBUo0dty1k", _ZNSt8messagesIcEC2Em) STUB("6DFUkCwQLa8", sceFontCharacterGetBidiLevel) +STUB( + "6DFXt+7t2v8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEC2ERKS8_) STUB("6DFuRKT4C9w", sceAgcDcbSetNumInstancesGetSize) +STUB( + "6DWQpP31bxw", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyD2Ev) +STUB( + "6DYUrB0WWL4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEC1EPNS2_10LibContextE) +STUB( + "6DcK2MvK6bE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "6Dd6jDnUn-8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE21intrusive_ptr_add_refEPS9_) +STUB("6DdCqaKnz4s", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEC2Ev) +STUB("6DfMVkKZQno", _ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_15CategoryInfoSubEE8max_sizeEv) +STUB("6DgJPLY7-oI", mono_aot_Sce_Vsh_RequestShareStorageWrapperunwind_info) +STUB( + "6DmqRXs1z5w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEC2EPKS8_) STUB("6DmsnKqhilg", scePerfPmcStopProc) +STUB("6Dr-30Wd4bA", utext_current32) +STUB( + "6DtttupLJ90", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("6DvK+OdIPW4", cairo_set_source_rgb) +STUB( + "6DvrN2fB-AY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "6DynMAyHl-o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEED1Ev) +STUB( + "6E01NmPtUqA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEmmEv) +STUB( + "6E6yBbACWIg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEC2EPS8_) +STUB( + "6E9QZL-U0UU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEEaSERSA_) +STUB("6EAMoRVfnYc", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_23NpSessionInvitationInfoEED1Ev) +STUB("6EDzpceJKz8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEEC2ERS5_) +STUB( + "6EF5-ag4kFc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEE11release_refEv) STUB("6EG6Zzcmrbg", sceCesUtf16ToMbc) +STUB( + "6EHcB1pIhjY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) STUB("6EKG2A33Gtk", scePlayReadyFinalize) STUB("6EOfS5SDgoo", sceNpTrophyConfigGetTrophySetInfoInGroup) +STUB( + "6ERHdsgJ7Ck", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEdeEv) +STUB("6EV409ek-d4", _ZN7WebCore16BackForwardCache10setMaxSizeEj) +STUB("6EVDxXdzQSA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEE7get_refEv) STUB("6EVXSBewBXs", scePktMgrIsRecvDataReady) +STUB("6EYF3tXjXbU", _listen) +STUB("6EbI3U7nYUI", _ZNK3sce7Toolkit2NP9Utilities6FutureI13SceNpOnlineIdE3getEv) +STUB("6Ee8Mlcb1Ho", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124NatConnectivityToMetricsD1Ev) +STUB("6EkiZ2KuQ1U", _ZNK7WebCore11MediaPlayer9isLoopingEv) +STUB("6Elq8JRcABo", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_13TusDataOutputEEC1Ev) +STUB("6EoZ4czsNTk", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V113ErrorResponseC1EPNS1_6Common10LibContextE) +STUB("6Es3CbUEwQE", _ZNK3sce2Np9CppWebApi11UserProfile2V113BasicPresence14accountIdIsSetEv) STUB("6Et3d4p1u8c", sceUserServiceGetFileSelectorSortTitle) +STUB( + "6EtKnoJleqI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEEC2ERKSA_) +STUB( + "6Etg0UyH0tk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEEaSERKS9_) +STUB("6Eu5XtKCAy0", _ZN7WebCore22EmptyFrameLoaderClient20redirectDataToPluginERNS_6WidgetE) +STUB("6EuaJ0Q774k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEE7get_refEv) STUB("6ExR0HScaLc", sceVencStartEncode) +STUB( + "6F-M+sSaSe8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEED1Ev) +STUB("6F1JfiING18", _ZNSt10moneypunctIwLb0EED2Ev) +STUB( + "6F5FVTjBsbo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE8copyFromERKS9_) +STUB( + "6F7jQ+Aq210", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEdeEv) +STUB("6FBMvkZ0Gx0", _ZN3IPC15ArgumentEncoder6encodeEd) +STUB("6FFYgdO9TBY", mono_aot_Sce_Vsh_GriefReportunbox_trampoline_addresses) +STUB("6FHQ2-xTuPY", _ZN7WebCore32rejectPromiseWithGetterTypeErrorERN3JSC14JSGlobalObjectEPKcS4_) +STUB( + "6FK4IOnANkc", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser9setfieldsEPKc) +STUB( + "6FN4yoA5R3A", + _ZN7WebCore14StaticNodeListC1EON3WTF6VectorINS1_3RefINS_4NodeENS1_13DumbPtrTraitsIS4_EEEELm0ENS1_15CrashOnOverflowELm16EEE) +STUB( + "6FNL64WJdAA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE6resizeEj) +STUB("6FUnD2VHRrw", EVP_MD_CTX_free) +STUB( + "6FWFwTOpm8Y", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot7hassortEv) +STUB( + "6FZoKD1Dy3E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("6Fa1qwhHQs4", _ZN3sce2Np9CppWebApi14ConnectAccount2V212PartnerToken9getScopesEv) +STUB("6FgmMff9S9g", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_12CategoryInfoEEC1Ev) +STUB("6FhHfJM+cC8", _ZN7WebCore17HTMLScriptElement8setAsyncEb) +STUB( + "6FiztUTOel4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "6Fkqs44Sa+M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEC2Ev) +STUB( + "6Fp8jJ7A7CY", + _ZN15AbstractStorage7Service13CreateStorageERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_7StorageEE) +STUB("6FsIeMre8Q8", _ZNK3WTF8JSONImpl5Value9asBooleanERb) +STUB( + "6FzbW6sUGgo", + _ZN7WebCore6JSNodeC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_4NodeENS6_13DumbPtrTraitsIS8_EEEE) +STUB("6G1JBcGU4cw", mono_shared_ptr_array_add) +STUB("6G21TZ477uY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEEcvbEv) +STUB( + "6G5AbU2+roc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEC1Ev) +STUB("6G5fpY0ODcA", _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse15getGroupingTypeEv) STUB("6G6BrngbzRg", sceNpManagerIntSigninByJson) +STUB( + "6G6CvM7qVG0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEeqERKS9_) STUB("6G9+4eIb+cY", sceNpTusGetMultiUserVariable) STUB("6G9VLWCmQN4", sceNpSnsTwitchDialogGetResult) +STUB( + "6GEcYc1b9uk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEC1Ev) +STUB( + "6GG5IFre7kg", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13integer5IsSetEv) STUB("6GKDdRCFx8c", sceNpTusSetThreadParam) +STUB( + "6GLgB6L3QIo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEEaSERSA_) +STUB( + "6GMNdAI9QUg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("6GN+N-5RaIc", OpenSSL_version) +STUB("6GNCV5aIMIY", + _ZN3sce7Toolkit2NP2V29Messaging7Request37DisplayReceivedGameDataMessagesDialogD1Ev) +STUB("6GQnc3pn74o", _ZN7WebCore9HTMLNames11resultsAttrE) +STUB("6GST59Tt47Y", GCC_except_table1) +STUB("6GTrLVlb4CU", _ZN8Gigacage11alignedFreeENS_4KindEPv) +STUB( + "6Gcgn7QgK0Q", + _ZN3sce2Np9CppWebApi14SessionManager2V122LocalizedStringFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_15LocalizedStringEEE) +STUB("6GmKgqTuk30", _ZN7WebCore11XPathResultD2Ev) +STUB( + "6GnkLg98AGQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEdeEv) STUB("6Gqlv5KdTbU", sceFontCharacterRefersTextBack) +STUB( + "6GvXUqmDjDY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEEaSERSA_) +STUB("6Gwl39KKUEI", _getsockname) STUB("6H-71OdrpXM", sceMsgDialogProgressBarSetMsg) +STUB("6H1iJI-0TRs", jpeg_fdct_islow) +STUB("6H2JzJIQdwE", _ZN3JSC8Debugger11unwindEventEPNS_9CallFrameE) +STUB( + "6H2hHFOXSPU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEneERKS9_) +STUB( + "6H4D9vum3t0", + _ZN3sce2Np9CppWebApi14SessionManager2V129PostPlayerSessionsRequestBody17setPlayerSessionsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_20RequestPlayerSessionEEEEE) +STUB( + "6H9HwHaDOrQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEmmEi) STUB("6HNbayHPL7c", sceNetConfigUpInterfaceWithFlags) +STUB("6HSff9awO94", _ZNK7WebCore6Region9totalAreaEv) +STUB("6HSxFL6hcSU", _ZN12video_parser13cVideoMetaMP4C1EPNS_18cMp4FFLHndlManagerE) +STUB("6HTNYVhJ+KY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEC1ERKS7_) +STUB("6HTmRHoq1WY", JVM_IsInterrupted) +STUB("6HZNd7nhoLo", _ZN7WebCore17snapshotSelectionERNS_5FrameEj) +STUB( + "6HZpOqJsuXk", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V219WebApiErrorResponse8setErrorERKNS1_6Common12IntrusivePtrINS3_25WebApiErrorResponse_errorEEE) +STUB("6HaRzv379ew", _ZNK3sce3Xml3Dom4Node11isAvailableEv) +STUB( + "6HaVSrAFyKc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEmmEi) +STUB( + "6HancqNRLtI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "6Hh4ZRmzBjA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC2ERKSC_) +STUB( + "6Hhht0w+cGU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE10setContextEPNS2_10LibContextE) +STUB("6HiIx11fy5c", _ZN3WTF13emptyAtomDataE) +STUB("6HiQ+FuztZM", mono_counter_get_size) STUB("6HmGJTn18mI", ScePsmMonoRuntimeResourceSetCallback) +STUB( + "6Hmt53dQWUg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE5eraseENS2_8IteratorIS8_EERSB_) STUB("6HpE68bzX6M", sceKeyboardReadState) +STUB("6HsepncSjoU", _ZTVN7WebCore36ISOProtectionSystemSpecificHeaderBoxE) +STUB("6Ht+MYwoqxY", _ZN3sce7Toolkit2NP2V27Ranking7Request13GetUsersRanksD2Ev) +STUB("6HxGCg7U3fw", _ZN3sce7Toolkit2NP15AppSTLAllocatorItED2Ev) +STUB( + "6HzIZX8iEWA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEneERKS9_) STUB("6HzMb6bZM6k", sceCesUtf8StrToIso2022Str) +STUB( + "6I+MtcWH-Fw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "6I2E2yM3utU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEC2EPS6_PNS2_10LibContextE) +STUB("6I2EFmcR4wM", _ZNSt9basic_iosIwSt11char_traitsIwEE5rdbufEPSt15basic_streambufIwS1_E) +STUB("6I334HGjpfU", WKBundleSetPrivateBrowsingEnabled) +STUB("6I5eD9q8C3I", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V19RatingApi21ParameterToPostRatingC1ERS5_) +STUB("6I7zkam1GeI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence8PresenceEE3setEv) +STUB("6IFQEEuM7Yg", WKBundlePageResetTrackedRepaints) +STUB("6II7YIgxbSU", glUniformMatrix4x2fv) +STUB("6IM2up2+a-A", fstatvfs) STUB("6IMbpR7nTzA", sceGnmQueryResourceRegistrationUserMemoryRequirements) +STUB("6IZThsmEH7A", BN_CTX_start) +STUB("6IZtgWDHdGE", JVM_SetSockOpt) +STUB( + "6IdALlCCpd0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEE5resetEPS9_) +STUB( + "6IgMfESR02c", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE4sizeEv) +STUB("6IhBbKbOoL4", _ZN3sce7Toolkit2NP2V211UserProfile9NpProfile19MAX_SIZE_AVATAR_URLE) +STUB("6IhkDtvvtU0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE5beginEv) STUB("6IjXJUy6ZnA", sceNpTrophy2GetGroupIcon) +STUB("6InnAoi1hRI", generic_trampoline_aot_p) +STUB( + "6IrGUnjTCag", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEC2Ev) +STUB( + "6Irzv8gdN3I", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo24getxPsnAtomicOperationIdEv) +STUB("6Ishswm5Ets", c21) +STUB("6IsuKpiTObA", mono_aot_I18N_Otherjit_code_end) +STUB( + "6ItgwPU9tF4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEneERKS9_) +STUB( + "6Itto9pqaus", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEEptEv) +STUB( + "6Itz1XouY+0", + _ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody15unsetMaxPlayersEv) +STUB( + "6IuUQB4H8ec", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE6resizeEj) +STUB("6IwA+eAhbFA", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V18PlatformEEdeEv) +STUB("6J0PLGaYl0Y", SSL_rngFun) +STUB( + "6J9XbOf7NSc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEC2EPS6_PNS2_10LibContextE) +STUB( + "6JBdYxOw+GI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEixEm) +STUB("6JFErPfBZ+U", _ZN3sce2Np9CppWebApi7Matches2V15ErrorC1EPNS1_6Common10LibContextE) +STUB("6JFMoOMzxoo", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_28NpSessionDetailedInformationEE3getEv) +STUB( + "6JG-utTWReQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "6JHRGTPLlv0", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUseraSERS5_) +STUB("6JSqNbiicHM", _ZN3sce7Toolkit2NP2V26Friend12Notification15BlocklistUpdate5resetEv) +STUB( + "6JUPbFEHlUE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEdeEv) +STUB("6JUqQUan7cM", WKOpenPanelParametersGetAllowsMultipleFiles) +STUB("6JWud4KoipU", _ZN7WebCore8SVGNames26strikethrough_positionAttrE) STUB("6JcY5RDA4jY", sceLibcPafMspaceMallocUsableSize) +STUB( + "6JkS4DCy3bo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "6Jmv4owEFlc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEE11release_refEv) +STUB("6JnP3KTSV1M", + _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody23unsetUserCenteredAroundEv) STUB("6Jy-q6ADWrg", sceVideoNativeExtEssential_Initialize) STUB("6Jy73SRfG-o", sceVrTracker2Initialize) +STUB( + "6JzOw5TKvZE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEE6assignEPSA_PFvSC_EPNS2_10LibContextE) +STUB("6K0K0jUxAJI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEEixEm) +STUB( + "6K1cooU8mK4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE5emptyEv) +STUB( + "6K1g7+ztzAs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEC1EPNS2_10LibContextE) +STUB( + "6K5C90HV35c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEC1EPNS2_10LibContextE) +STUB( + "6KBOuSdfsZk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEC1EPS6_PNS2_10LibContextE) +STUB("6KOulgIBLEU", uplrules_open_67) +STUB("6KS1ap6Jtz0", _ZN7WebCore5Range10selectNodeERNS_4NodeE) +STUB( + "6KSgHL6tPuc", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi44ParameterToPatchGameSessionsSearchAttributesaSERS5_) +STUB("6KcHbwBESLA", AacsBusDecrypt) +STUB("6KdgxIStfjQ", _ZN9Inspector22InspectorDebuggerAgent8stepOverERN3WTF6StringE) +STUB("6KfaIVRy89o", _ZN3sce7Toolkit2NP2V29Messaging25GameDataMessageAttachment5resetEv) +STUB( + "6KhFGKetVYs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEixEm) +STUB("6Ki-NJYbs54", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEEC1Ev) +STUB("6KnlnJPgAjg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEC2ERS7_) +STUB( + "6KrTVLdsfmQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB( + "6KsrULdwYsc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEppEv) +STUB( + "6Kw6LDX8oLg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEE7add_refEv) +STUB( + "6Kz7lugVU-w", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE8capacityEv) +STUB( + "6L+sPydwX3o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE6resizeEj) STUB("6L0-A5piudQ", sceVideoOutSysCursorDisable) +STUB( + "6L0rxyZAPWQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB("6L1WldwEDQs", + _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicket13isInitializedEv) +STUB("6L4hEdFOp8A", delegate_virtual_invoke_imt_m_8) +STUB( + "6L8QPnzOxQM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE7popBackEv) +STUB("6L90iL-CjWA", _ZN3WTF11ThreadGroupD2Ev) +STUB( + "6LBYfMy0tzY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE3endEv) +STUB( + "6LBZGKg8Oik", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE5emptyEv) +STUB("6LCn0yJSOo0", ENGINE_ctrl_cmd) +STUB( + "6LDkOHIpueE", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBodyC1EPNS1_6Common10LibContextE) +STUB( + "6LFvgDspKfI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEmmEi) +STUB("6LGRGSLdSdQ", FcPatternAddBool) +STUB( + "6LHKqmaGMHQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEppEi) +STUB("6LIE69MfTWE", _ZN7WebCore8SVGNames23patternContentUnitsAttrE) +STUB("6LMmL6eC7oo", ubrk_first_67) +STUB("6LW2Rb8R0CM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEE11release_refEv) +STUB("6LZj99zdTX8", T_CString_integerToString_67) STUB("6Lg4BNleJWc", sceRemoteplayDisconnect) +STUB( + "6LjLZQePY74", + _ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime26InternalPropertyDescriptorEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE) +STUB("6LlwJ9+jg9E", _ZN12video_parser5vpcom6String5SplitEc) +STUB("6LmTCyxtXgo", WKPageRunJavaScriptAlertResultListenerCall) +STUB("6LmWhlFRLeM", mono_aot_Sce_Vsh_VideoEdit_Wrapperunbox_trampoline_addresses) +STUB( + "6LopWdH+BJE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB("6LrAQY0Ka4c", EVP_DigestUpdate) +STUB("6LrWMd22IeM", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEED2Ev) STUB("6Lu9geO5TiA", sceNpTusAddAndGetVariableForCrossSaveVUserAsync) +STUB("6Lv5NxeQdlE", + _ZN7WebCore4Page23finalizeRenderingUpdateEN3WTF9OptionSetINS_28FinalizeRenderingUpdateFlagsEEE) +STUB("6LvU2UX265I", _ZN3JSC12iteratorStepEPNS_14JSGlobalObjectENS_15IterationRecordE) STUB("6Lw60o5T9Ms", scePlayReadyBufferInit) +STUB("6M+7uiGXQoQ", JSWeakGetObject) +STUB("6M-U9KWX338", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEdeEv) +STUB("6M465x4P3FY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEEC2ERKS7_) +STUB("6M4g3C542KU", YGNodeStyleSetAspectRatio) +STUB( + "6M7H3uwGsb4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEC1Ev) +STUB("6MBAIH50vB4", _ZN3sce2Np9CppWebApi14SessionManager2V110FromMemberC1EPNS1_6Common10LibContextE) +STUB( + "6MFuYizQIKM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEED2Ev) +STUB( + "6MLse2zGCtc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEmmEi) +STUB("6MM7ng9P+18", CMAC_Final) +STUB("6MOP4-+mBzk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEEC1EPS5_PNS2_10LibContextE) +STUB( + "6MORSoGtTEY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE8pushBackERKS8_) STUB("6MTe9GADvZs", sceGameRightGetLogoPngImage) +STUB("6MV3LG2T8hU", _ZN7WebCore24CachedResourceHandleBaseC2EPNS_14CachedResourceE) +STUB( + "6MbOrfuOBD4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEE3getEv) STUB("6Mc2Xs7pI1I", sceUltQueueTryPush) +STUB("6MdlRs2aIlM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlotD2Ev) STUB("6Me4hYsy3Kc", sceSocialScreenSetMode) +STUB( + "6MjTxdDC150", + _ZN3sce2Np9CppWebApi14SessionManager2V147PutPlayerSessionsNonPsnLeaderRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_40PutPlayerSessionsNonPsnLeaderRequestBodyEEE) +STUB("6MkPqt6aq4c", _ZN3sce2Np9CppWebApi10Activities2V114UserActivities8Activity10setMatchIdEPKc) +STUB( + "6Mkb1J6qZiI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("6MlW+h8WgQ8", _ZN3JSC7Symbols40promiseFieldReactionsOrResultPrivateNameE) +STUB("6Mls5JbQoR0", _ZN3sce7Toolkit2NP2V23TSS7TssData8deepCopyERKS4_) STUB("6Mo6+u0BZeA", scePerfTracePmGetInfo) STUB("6MojQ8uFHEI", sceNetInitParam) +STUB("6MpA7G+mF0c", mono_aot_Sce_Vsh_VideoServiceWrapperunbox_trampolines) +STUB("6MqjK7RyLvc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEEC2Ev) +STUB("6MqnXbffvVg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEptEv) +STUB("6MsEcKTsqds", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110PlayerTypeEEeqERKS7_) STUB("6MuJ-vnDk6A", sceNpPushUnregisterNotificationCallback) +STUB("6MuMVeHVIA0", _ZN7WebCore11MediaPlayer19prepareForRenderingEv) +STUB("6N+DDsH05rc", _ZN7WebCore9HTMLNames16autocompleteAttrE) +STUB("6N5wsk+K4T4", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_19GetGameDataResponseEE17getAdditionalInfoEv) +STUB("6N78UxQEyPc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEE5resetEPS6_) +STUB("6NCOqr3cD74", _init_tls) +STUB("6NDxJ2FOwYc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEptEv) +STUB("6NH0xVj6p7M", _ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2Em) +STUB( + "6NIMdW+UIrM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEC2EPS8_) +STUB("6NKemP1XhgU", upvec_open_67) +STUB("6NKwdOawk54", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEEC2Ev) +STUB("6NTfTRcWSxs", _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V314MissingElementD1Ev) +STUB("6NTnFm2SmY4", mono_aot_Mono_Securityunbox_trampolines) +STUB("6NezXKGHglU", _ZN7WebCore6Editor4copyENS0_20FromMenuOrKeyBindingE) +STUB( + "6NidKRsAOqc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEcvbEv) +STUB( + "6NjdBSvc29o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "6NkYhpz8y-g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEED2Ev) +STUB( + "6Nl6Xrfc9Qk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEC2EPS8_) +STUB("6NlbpyIfUuY", _ZN3sce4Json5ArrayC2ERKS1_) STUB("6Nx1hIQL9h8", sceNetGetRouteInfo) +STUB( + "6Nzs-sLxkSM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE5beginEv) +STUB("6O17MYprz3w", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEEdeEv) +STUB("6O38TxxjTvc", + _ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession6toJsonERNS_4Json5ValueEb) +STUB("6O7CSVJUKHo", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session7SessionEE19setCustomReturnCodeEi) +STUB("6O8EwYOgH9Y", getsockopt) +STUB( + "6OBUPw8DHd0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEE11release_refEv) +STUB("6OD-q4DoVyE", _ZN7WebCore10StyleColor13isSystemColorENS_10CSSValueIDE) +STUB( + "6OJnYcBlssM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEE7add_refEv) +STUB( + "6OSQTlDgUOs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEED1Ev) +STUB("6OYWLisfrB8", + _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewe) STUB("6Oc0bLsIYe0", sceNetGetMacAddress) +STUB("6OdqxwePEgA", _ZN7WebCore11DisplayList10SetLineCapC1ENS_7LineCapE) +STUB("6OfeCf-u4bg", glGenFramebuffers) +STUB("6Ogwaprthfs", _ZN7WebCore16HTMLMediaElement25setVideoFullscreenStandbyEb) +STUB( + "6OlwkgTIh94", + _ZN9Inspector14InjectedScript14callFunctionOnERN3WTF6StringERKS2_S5_S5_bbRNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsIS9_EEEERb) +STUB( + "6OmCUsJwkTY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEC2Ev) +STUB("6OnmSnvjzPI", _ZN15AbstractStorage14YoutubeService13SearchStorageEv) +STUB("6Opw5OOI9WM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEC1EPS8_) +STUB( + "6OsQ+R+4pbo", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions19unsetacceptLanguageEv) +STUB( + "6Ox6o-KszW0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEEptEv) +STUB("6Oyyw5TWc4A", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEED2Ev) +STUB("6P+15JGEmX8", _ZN7WebCore24CoordinatedGraphicsLayer18purgeBackingStoresEv) +STUB("6P-xIACeryI", _ZN7WebCorelsERN3WTF10TextStreamENS_10ScrollTypeE) +STUB("6P04fQkPVec", WKContextRegisterURLSchemeAsSecure) +STUB( + "6P3otfKz0Ao", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "6P6ASvWxQ-E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEEC2ERKSA_) +STUB( + "6P8rfIUcd34", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEmmEi) +STUB( + "6P8utWRG8zc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEC1ERS7_) +STUB("6PADv578bD0", _ZN7WebCore11FrameLoader16detachFromParentEv) +STUB("6PAo+VpvWx8", _ZN3NTF6ThreadD2Ev) STUB("6PBNpsgyaxw", sceRudpEnableInternalIOThread) +STUB("6PC91xJIol8", _ZN3sce7Toolkit2NP20GetPlayedWithRequestC2Ev) +STUB("6PEq4Zzkjrw", mono_btls_x509_lookup_mono_method) +STUB( + "6PGOZ6wxvkk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEEC2ERS9_) +STUB( + "6PIgp1OXdww", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEE11get_deleterEv) +STUB( + "6PJIccfp+Mw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEEptEv) +STUB("6PPm2rZiMcs", _ZN3WTF17StringPrintStream5resetEv) +STUB("6PYg8AhQmAY", _ZN7WebCore9HTMLNames10listingTagE) +STUB("6Pcmvzwjxcg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEED2Ev) +STUB( + "6PgIjSURWhY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEC1EPKS8_) +STUB( + "6PkEES4KcIQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEC1EPS6_PNS2_10LibContextE) +STUB("6Pl+Tx8TW2g", _ZN3sce3pss5orbis9framework21PsmMainThreadCallList6UpdateEv) +STUB( + "6PwsVbqA3oI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEptEv) +STUB("6Q1r39Py10Y", _ZN3sce2Np9CppWebApi6Common6VectorIfE5eraseENS2_8IteratorIfEERS6_) +STUB("6Q6FeIBP1uU", _ZN15AbstractStorage15FacebookContent6RemoveEv) +STUB( + "6Q7DrUdvrGA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSD_ESD_) +STUB("6QACBchOqcU", _ZN7WebCore8SVGNames13keyPointsAttrE) +STUB("6QCOea4SMrg", ulist_count_keyword_values) +STUB( + "6QL0WMBsvbs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEED1Ev) +STUB("6QL1C4uv4T0", _ZN7WebCore16FileReaderLoaderC2ENS0_8ReadTypeEPNS_22FileReaderLoaderClientE) +STUB("6QMIEsUp-Oo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEED1Ev) +STUB( + "6QNuLdT8-io", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE5emptyEv) STUB("6QP1MzdFWhs", sceAudioInIsSharedDevice) +STUB("6QU40olMkOM", _ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE4_RepES3_wm) +STUB( + "6QUyVTOMOeg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEcvbEv) +STUB("6QVSHamAVJ0", mono_aot_Sce_Vsh_Np_Commonjit_code_start) +STUB("6QWMcGENlPE", _ZNK7WebCore8Document29originIdentifierForPasteboardEv) +STUB( + "6QYOW0bg4-8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB( + "6QaL31ldrAE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEeqERKS9_) +STUB( + "6QcY1pdQKSk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEE7add_refEv) +STUB("6Qe0KPUAzx8", _ZN25MmsFileUpdaterFsOperation8finalizeEv) +STUB( + "6QeVyxMbKgg", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetInteger2Ev) +STUB("6QfhFhAfeIo", EVP_DigestVerifyFinal) +STUB( + "6Qr35myuFWw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEppEi) +STUB( + "6QrESgw4BQw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEED2Ev) +STUB( + "6QxpjqM6kNM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("6R3EdBd+hL8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEaSERS7_) +STUB( + "6R5Z2lpGEPk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEE7get_refEv) +STUB( + "6RGkooTERsE", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERf) +STUB("6RQRpTn+-cc", _ZN3sce2np4CondD2Ev) +STUB("6RXuTZIVqIg", WKPageSetPageUIClient) +STUB("6Ra+NbLw5iU", _ZNK7WebCore19ProtectionSpaceBase10serverTypeEv) +STUB( + "6RcYiYj7CZk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEdeEv) STUB("6RclvsKxr3I", sceHmdInternalDfuCheckAfterPvt) STUB("6RdLdsNW3dY", sceDebugGetThreadInfo) +STUB( + "6RfyQt-LUDI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("6RiVl6twiZs", _ZN3JSC7Symbols24isProxyObjectPrivateNameE) +STUB( + "6RjmqszAe3Y", + _ZN7WebCore17LibWebRTCProvider16registerMDNSNameEN3PAL9SessionIDEmRKN3WTF6StringEONS3_17CompletionHandlerIFvONSt12experimental15fundamentals_v38expectedIS4_NS_17MDNSRegisterErrorEEEEEE) +STUB( + "6Rjx73SZVf0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEC2EPKS8_) +STUB( + "6Rm3cdKAhV8", + _ZN3sce7Toolkit2NP8Matching9Interface13createSessionEPKNS1_20CreateSessionRequestEPNS1_9Utilities6FutureINS1_18SessionInformationEEEb) +STUB( + "6Rp7eOq1c+g", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("6RxzKEvl31I", + _ZN7WebCore22EmptyFrameLoaderClient18dispatchCreatePageERKNS_16NavigationActionE) +STUB("6S0zsQ1cbTs", _ZN3JSC16CompleteSubspaceD0Ev) +STUB("6S2fV6tfkuM", _ZNK7WebCore22ScriptExecutionContext23domainForCachePartitionEv) +STUB( + "6S5VayJWCLQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEaSERKS9_) +STUB("6S5fu0bXJAQ", mono_aot_Sce_Vsh_SystemLoggerUtilWrappermethod_addresses) +STUB("6S5jsbm0i+k", mono_aot_Sce_Vsh_SystemLoggerWrapperunwind_info) +STUB("6S8jzWWGcWo", _ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED2Ev) +STUB("6SCDPuOjens", _ZN3sce2np14JsonNumberImplD0Ev) +STUB("6SDkzKp5bS0", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V13Mmr13perGenreIsSetEv) +STUB("6SE5pNTQhQ4", _ZN7WebCore12TextIteratorC1EPKNS_5RangeEt) +STUB("6SFD859+uLU", _ZN7WebCore4Page10pluginDataEv) +STUB("6SGVh1Sk2hI", _ZN3sce7Toolkit2NP2V210Tournament25OneVsOneTournamentDetails5resetEv) +STUB("6SKAMuUgdIg", _ZN9Inspector24NetworkBackendDispatcherD0Ev) +STUB( + "6SP2WnRKdgE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE8copyFromERKS9_) +STUB("6Sajlv-clVQ", WKBundleSetClient) +STUB("6SckwBNQpR4", + _ZN7WebCore18JSHTMLMediaElement14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB("6SjTRqhQ1iY", _ZN3sce7Toolkit2NP15AppSTLAllocatorItE8allocateEmPKv) +STUB( + "6SpQz7G5Auc", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsers35getxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB("6SvkVpal5k4", mono_metadata_type_equal) +STUB("6Svs7GQKWi8", _ZN7WebCore9GlyphPage7s_countE) +STUB( + "6Sz80t+Apz0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEEC2ERKSA_) +STUB( + "6T-6Zev-N1c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEmmEv) +STUB("6T773MR5QPI", AacsModuleStop) +STUB( + "6TD1ru5-4ko", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEixEm) STUB("6TEl6BobGj8", sceApplicationSpawnDaemon) +STUB("6TEwaLqQl+A", unorm2_hasBoundaryAfter) +STUB("6THw24x30eg", _ZN7WebCore20ISOOriginalFormatBoxD0Ev) +STUB("6TIMpGvsrC4", _ZN3sce16CommonDialogUtil6ClientD1Ev) +STUB("6TIkwWdSsy0", _ZN7WebCore21JSTextTrackCueGeneric14finishCreationERN3JSC2VME) +STUB("6TLQ8mftRGA", + _ZN3sce2Np9CppWebApi7Matches2V120ReportResultsRequest8fromJsonERKNS_4Json5ValueE) STUB("6TTRm8KRqbw", sceNpManagerIntClearTicket) +STUB( + "6TTqrWFq14A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("6Te6aB2x18k", Java_java_lang_StrictMath_sinh) +STUB( + "6Te7MrWaN8U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "6Thiq-dxKHU", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEiRNS2_10LibContextEPT_m) +STUB("6Tpo2doMNPY", T_CString_toLowerCase_67) +STUB("6Tsgcaoc-L0", GCC_except_table332) +STUB( + "6TtLQbvxvT8", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead19setLeaderPrivilegesERKNS1_6Common6VectorINS5_6StringEEE) +STUB("6Tv4AQY6Gss", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE6resizeEj) +STUB("6TwfEX58ZUY", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_26ActivityFeedCondensedStoryEEneERKS4_) +STUB("6TxzHeN5tro", + _ZNK3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform19getUsePlayerSessionEv) +STUB( + "6Ty4VGfK2yk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE5beginEv) +STUB( + "6U2A9QDu6sY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEE6assignEPS5_PFvS7_EPNS2_10LibContextE) +STUB("6UB2zZjzaDw", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce19ServiceEntitlementsEE3setEv) +STUB( + "6UERUmnXTlk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEE11get_deleterEv) STUB("6UEembipgrM", sceNpSignalingDeactivateConnection) +STUB("6UHS1Lj-qYc", c15) STUB("6ULAa0fq4jA", scePthreadRwlockInit) +STUB("6UXWnBRjOxM", _ZN12video_parser7cVpUtil13TimecodeToHMSEjjRiS1_S1_) STUB("6UbbC7GA9MI", sceRnpsAppMgrBlockAppInstall) STUB("6UcLOHdkVjo", sceGpuExceptionRemoveDebuggerHandler) STUB("6UgtwV+0zb4", scePthreadCreate) +STUB("6Uiidbdwj4E", usearch_setAttribute_67) +STUB("6Ur0PoWQ2mc", _ZN3JSC10ConfigFile5parseEv) +STUB( + "6Us5g1aJSvU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE6resizeEj) +STUB("6UslIdcOKyI", _ZN3sce2Np9CppWebApi14IdentityMapper2V333PsnWebError_error_missingElementsD2Ev) +STUB( + "6UtgkvUu1SU", + _ZN15AbstractStorage14FacebookFolder10NewContentERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_7ContentEE) +STUB("6UxSV9SQiKI", Java_java_awt_GnmGraphics_clonePSD) STUB("6UzEidRZwkg", sceAgcDriverSubmitMultiDcbs) +STUB("6V+FWaxwyEc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEEixEm) +STUB("6V+as96kvy4", _ZN7WebCore11DisplayList13StrokeEllipseC1ERKNS_9FloatRectE) +STUB("6V1F6Yvjivg", _ZN7WebCore6Editor18confirmCompositionERKN3WTF6StringE) +STUB( + "6V1Fjm8zfe4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEE3getEv) STUB("6V1vy4M8Yb4", sceBgftServiceIntSetTaskVisible) +STUB("6V3JcMgN+qA", _ZN7WebCore8SVGNames11descentAttrE) +STUB( + "6VEfhCBIiDQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEE7get_refEv) +STUB( + "6VGEHtQCQI4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEptEv) +STUB("6VIC0pMsv30", _ZN3WTF24AutomaticThreadCondition7waitForERNS_4LockENS_7SecondsE) +STUB("6VJpFkVmh5g", _ZNK7WebCore11MediaPlayer19playerContentsScaleEv) +STUB("6VKz4WbRjBE", _ZN7WebCore9HTMLNames17aria_disabledAttrE) +STUB( + "6VMcLp042jA", + _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody18maxSpectatorsIsSetEv) STUB("6Vf9WTLDoss", sceAudiodecClearContext) +STUB( + "6ViqJEpMCTI", + _ZN9Inspector20DOMBackendDispatcher11setNodeNameElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "6VkFzliw91s", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead14setMatchmakingERKNS1_6Common12IntrusivePtrINS3_18MatchmakingForReadEEE) +STUB("6Vn8UMEXjH8", _ZL29_sceLibcDeleteWithSizeNothrowPvmRKSt9nothrow_t) +STUB("6Voi0Jp1SqE", _ZN9Inspector18InspectorHeapAgentnaEm) +STUB("6VqdJAapsck", mono_conc_hashtable_remove) +STUB("6VrSv8tnlPk", utrie2_swap_67) +STUB( + "6VsYiTYxlkk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEEcvbEv) +STUB("6Vst7HqJMXU", _ZN3sce2np10MemoryFileD0Ev) +STUB("6VwVQ2QAMy4", _ZN4IPMI4impl11SessionImpl13getSessionKeyEv) +STUB("6W+ovJY9kVo", _ZN7WebCore15SQLiteStatementD2Ev) +STUB("6W31AZUFExA", __ratio_D2A) +STUB("6W3NYYHtY7c", _ZN3sce7Toolkit2NP27ChallengeGetItemListRequestC1Ev) +STUB("6WB4MjHfA0Y", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEE3getEv) +STUB( + "6WBCle7AwDc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEE5resetEPS6_) +STUB("6WDfHN9XuEI", _ZN3sce2Np9CppWebApi6Common17ParameterBaseImplD2Ev) +STUB("6WH7RBBXvNE", _ZN3sce3Xml3Dom8NodeListC1Ev) +STUB( + "6WI79RBZWeA", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V230FilterProfanityResponseFactory7destroyEPNS3_23FilterProfanityResponseE) +STUB("6WIt6evZD40", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEE7add_refEv) +STUB("6WLenADtOQk", nsnp_InitSession) +STUB("6WR6sFxcd40", _Atomic_store_2) +STUB("6WTgpKqUxRo", _ZN3sce2np4NpIdC1ERK7SceNpId) +STUB( + "6WU-DPPrc2E", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V128SetMultiVariablesRequestBody17setNpServiceLabelERKj) +STUB("6WUUBTvfOBk", _ZN4Manx13KeyboardEventC1ENS0_4TypeEibbbbb) +STUB("6WYrZgAyjuE", _ZTSN10__cxxabiv123__fundamental_type_infoE) +STUB("6WmPWDwSFtw", _ZN7WebCore14SecurityOrigin6createERKN3WTF6StringES4_St8optionalItE) +STUB( + "6Wn3LXPE4ww", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEplEm) +STUB("6WwFtNvnDag", __fixunsdfsi) +STUB( + "6X+Zf-emkhw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEC1EPS6_PNS2_10LibContextE) +STUB( + "6X2NqaL-jXo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEC1EPS8_) STUB("6X6dp+07h4U", sceAudioOutExOpen) +STUB( + "6X99zTqWwWs", + _ZN3sce2Np9CppWebApi14SessionManager2V134GetGameSessionsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_27GetGameSessionsResponseBodyEEE) STUB("6XG4B33N09g", sched_yield) +STUB("6XHAxarPCaA", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setMixerPanLR) +STUB("6XHK1fbKMOc", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_init) +STUB("6XKUKyq4z8g", delegate_virtual_invoke_imt_m_15) +STUB("6XP+Lw1Nby0", _ZNK3JSC7JSValue16toStringSlowCaseEPNS_14JSGlobalObjectEb) +STUB("6XXMjeTswAo", rgctx_fetch_trampoline_rgctx_78_p) +STUB( + "6XYwelGaeyQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE21intrusive_ptr_sub_refEPS9_) +STUB("6XcQYYO2YMY", _ZTSPs) +STUB("6Xe4q9CNivc", uhash_setKeyComparator_67) +STUB( + "6XfvvXLTzlc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE8copyFromERKS9_) +STUB( + "6XiNPQlR2ZA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEE3getEv) +STUB( + "6XnprvUIL2M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEEdeEv) +STUB("6Xo6esUCRpI", u_strToUTF8WithSub_67) +STUB( + "6XucuFvMCJQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEEaSERKSA_) +STUB( + "6Xv4OUcazNs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEEptEv) STUB("6XyZfSDBsKs", scePerfTraceSpmRead) +STUB("6Xzg6OvgfW4", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V115NatConnectivity11globalIsSetEv) +STUB( + "6Y1nT3z-hG8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEED1Ev) +STUB("6Y3HHedGzlw", cairo_scaled_font_destroy) +STUB("6Y6iyj4BU1I", mono_aot_SMDiagnosticsjit_code_start) +STUB("6Y9jd3gG1tc", mono_is_debugger_attached) +STUB( + "6YAUB-e8bPw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEE7get_refEv) +STUB("6YCd7V18kVU", mono_log_write_syslog) +STUB( + "6YFch5EDwBI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "6YFlH6t1MRI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEppEi) +STUB( + "6YFt+9jW4UE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEED2Ev) +STUB("6YKBRzFhGdA", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_17ActivityFeedStoryEE10deallocateEPS3_m) +STUB( + "6YKjyWz6dd4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEEptEv) +STUB( + "6YP0xGLc2nE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEED2Ev) +STUB( + "6YRB0JBG694", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEC1EPS8_) STUB("6YRHhh5mHCs", sceGnmRequestFlipAndSubmitDoneForWorkload) +STUB( + "6YStHdktHws", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEptEv) +STUB("6YVGH1ffjY8", printCommInfo) +STUB( + "6Ya3wfyLKw0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("6Ybp0kViMvU", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEEC2Ev) +STUB("6YlaN3ZykV4", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku10priceIsSetEv) +STUB("6YmI7Xbaw8I", _ZN7WebCore8SVGNames21dominant_baselineAttrE) +STUB("6YolmssnkX0", wcstodg) +STUB("6Ypng7+83nc", mono_aot_System_ComponentModel_Compositionplt_end) +STUB( + "6YsXiCAAp+s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("6Z+fdt4pe2s", _ZN9Inspector15AsyncStackTraceD1Ev) +STUB("6Z-n6acrhTs", CERT_CompSubjectCommonName2) +STUB("6Z-zM-XE9Ic", _ZNK3sce2np14JsonObjectImpl15fieldSetFreeAllEPNS1_8FieldSetE) +STUB( + "6Z4iqsm2NT8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEC1EPKS8_) +STUB("6Z7V+FlXSE8", WKBundleNodeHandleGetHTMLInputElementLastAutoFillButtonType) +STUB("6Z83sYWFlA8", _exit) +STUB("6Z9hW3VMhXs", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE7popBackEv) +STUB("6ZA8tOr6XCc", _ZN3sce7Toolkit2NP2V24Core7Request17ExternalAllocatorD2Ev) +STUB("6ZDv6ZusiFg", _ZNSiD0Ev) +STUB( + "6ZF5qZfpcws", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEppEi) +STUB("6ZG4asYB-+M", _ZThn16_N9Inspector18InspectorHeapAgentD0Ev) +STUB("6ZGCXOAgLDE", UCNV_TO_U_CALLBACK_SKIP_67) +STUB( + "6ZIHSfb4JR8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE7reserveEi) +STUB("6ZIjQAWKeRs", ucnv_fromUnicode) +STUB( + "6ZIvrs5tcgo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("6ZKNilLPknk", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_18SessionInformationEED1Ev) +STUB("6ZKYLDnP6h8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEEaSERS7_) +STUB("6ZKsmn9DS0Y", _ZN3sce7Toolkit2NP2V23TUS7Request7SetDataD1Ev) +STUB( + "6ZLWXIRBFuI", + _ZN3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBody10getPlayersEv) +STUB("6ZPdNlyUd9A", _ZN3sce7Toolkit2NP2V23TUS7TusDataD2Ev) STUB("6ZQ4kfhM37c", sceUserServiceGetGlsBroadcastUiLayout) +STUB("6ZQ64IUQsOA", _ZN7WebCore12ISOWebVTTCueaSERKS0_) STUB("6ZQXcSKKjyo", sceSlimglCompositorFlush) +STUB("6ZSbpM8An44", mono_aot_Sce_Vsh_DbRecoveryUtilityWrapperplt) +STUB( + "6ZXNhFVJqy4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE4sizeEv) +STUB("6ZXtFYaM5Os", _ZN9Inspector27DOMBackendDispatcherHandlerC2ERKS0_) +STUB("6ZY8KhdoMzA", _ZN3JSC7Symbols21onRejectedPrivateNameE) +STUB("6ZZXWwD6FyI", JSStringGetLength) +STUB("6ZbQK2Mb7Eg", udat_isLenient_67) +STUB("6ZjTW1uImXg", _ZN7WebCore20previousWordPositionERKNS_15VisiblePositionE) +STUB( + "6ZjgIfHsdsM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEC1Ev) +STUB("6ZkjKg8bCCA", _ZN8meta_gen13JpegRetriever14ProcessSOFDataEi) +STUB("6Zl5wWwDtik", _ZNK3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap14isCurrentIsSetEv) +STUB("6Zl8YABX-mc", _ZN3JSC6RegExp12dumpToStreamEPKNS_6JSCellERN3WTF11PrintStreamE) +STUB("6Zn-n1+filM", _ZNK7WebCore14DocumentLoader21archiveResourceForURLERKNS_3URLE) +STUB("6ZoLlhh15CA", + _ZN7WebCore26MessagePortChannelRegistry19didCloseMessagePortERKNS_21MessagePortIdentifierE) +STUB("6ZpRm5zh0J4", mono_aot_Sce_Vsh_Np_Commonunbox_trampolines) +STUB("6ZwgBEs9MBM", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Error14getReferenceIdEv) STUB("6a0N6GPD7RM", sceHttp2SetCookieMaxSize) +STUB("6a1KgkULyqs", _ZN7bmalloc11IsoTLSEntrynwEmPv) +STUB("6a1p3QgXvo0", FT_Stream_ReadUShort) +STUB( + "6a8csGB2D6k", + _ZN7WebCore11JSDOMWindow17defineOwnPropertyEPN3JSC8JSObjectEPNS1_9ExecStateENS1_12PropertyNameERKNS1_18PropertyDescriptorEb) STUB("6aANndpS0Wo", sceMouseSetProcessPrivilege) +STUB("6aB3RsJzBWE", _ZTVN7WebCore26ISOProtectionSchemeInfoBoxE) +STUB("6aDXSO9Aic0", _ZNK3sce2np9JsonValue5CloneEP14SceNpAllocator) +STUB("6aE-u6oI86Q", _ZNK3JSC25JSInternalPromiseDeferred7promiseEv) +STUB("6aEXAPYpaEA", _CWcsxfrm) +STUB("6aEkwkEOGRg", _ZN10__cxxabiv120__si_class_type_infoD1Ev) +STUB( + "6aF5bCS2viU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("6aFwTNpqTP8", _ZNKSt7_MpunctIcE16do_thousands_sepEv) +STUB("6aHLe+p7amI", _ZN7WebCore15AsyncFileStreamC1ERNS_16FileStreamClientE) +STUB("6aKYLBS8Di8", _ZN3sce2np3ipc10IpmiClientC1Ev) +STUB( + "6aMEeGhJ3hY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEeqERKS9_) +STUB( + "6aV5q4cm0CM", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEEC1Ev) +STUB("6aXmCP6s7LM", _ZN3sce7Toolkit2NP2V26Friend7FriendsC1Ev) +STUB("6ac0lJj26Q8", + _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku17setAnnotationNameERKNS3_10AnnotationE) +STUB("6ad8er4wBPw", _ZN3JSC18ErrorHandlingScopeD1Ev) STUB("6adrFGe2cpU", sceNpWaitSema) +STUB( + "6agIfkmUQU0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEC2EPS6_PNS2_10LibContextE) +STUB("6ah1fimhTeo", _ZN7WebCore6JSFile15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "6ahgTYgo898", + _ZN9Inspector24NetworkBackendDispatcherC2ERNS_17BackendDispatcherEPNS_31NetworkBackendDispatcherHandlerE) +STUB("6aiAMnlT0wA", _ZN7WebCore15XPathExpression8evaluateEPNS_4NodeEtPNS_11XPathResultE) +STUB("6aj8UF-RB9o", YGNodeStyleSetPositionType) +STUB("6ajQEiaMYXw", _ZN7WebCore21NetworkStorageSession17domCookiesForHostERKN3WTF6StringE) +STUB( + "6aoPP29q-SM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEEC2Ev) +STUB("6avZJUSaBhc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEEC2Ev) +STUB("6azovDgjxt0", _ZTSPKj) +STUB("6b+qT-deAg0", mono_aot_System_ServiceModel_Webunwind_info) +STUB( + "6b-Bstxi7ZQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEE7get_refEv) +STUB("6b-RkK-dpw0", _ZN3sce2Np9CppWebApi14SessionManager2V118LeaderWithOnlineId12setAccountIdERKm) +STUB("6b1uHtKrbEo", WKDownloadGetID) +STUB("6b3KIjPD33k", _ZNSt6locale7_LocimpC1Eb) +STUB("6b5l07favPU", _ZN3sce2Np9CppWebApi6Common13ParameterBaseC2Ev) +STUB( + "6b5uwMKoDBc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEED1Ev) +STUB( + "6b6LHNBplZ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "6b8QnNW7+Vw", + _ZN3JSC16CompleteSubspaceC2EN3WTF7CStringERNS_4HeapEPNS_12HeapCellTypeEPNS_22AlignedMemoryAllocatorE) STUB("6b8nZuvZxpQ", sceVnaRequestTts) +STUB("6bAOTzmhclg", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEEdeEv) +STUB("6bEWRPgH4hY", _ZTSPn) +STUB("6bJFALRs0l8", _ZN9Inspector21HeapBackendDispatcherD2Ev) +STUB( + "6bJNuejWU+4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot10unsetgroupEv) +STUB("6bNZBfoPZwc", _ZN3sce2Np9CppWebApi11UserProfile2V113BasicPresence12setAccountIdERKm) +STUB("6bQ+RwgiJMo", _ZN3sce2Np9CppWebApi6Common8IteratorIlEmmEv) +STUB("6bRANWNYID0", llrintl) +STUB( + "6bUyQkfe5GU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEC1EPS8_) +STUB("6bUz43Wi17E", _ZN25MmsFileUpdaterFsOperation9FreeLargeEPv) +STUB("6bYsRATI3tQ", _ZN3sce2np9HttpTrans16SetRequestHeaderEPKcS3_) +STUB( + "6bcTm3eLQcI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEplEm) +STUB( + "6bfvRBEB7X8", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities33GetUsersActivitiesResponseFactory7destroyEPNS4_26GetUsersActivitiesResponseE) STUB("6biw1XHTSqQ", sceHmdClose) +STUB( + "6blg22mfvBY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEED1Ev) +STUB("6bsWjotUa1Q", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getSecondaryVideoStream) +STUB("6btC4FjXNfM", _ZN3sce7Toolkit2NP2V27Session7Request32DisplayReceivedInvitationsDialogC1Ev) +STUB( + "6buaYAwmd-Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEdeEv) STUB("6bvqnBIINiY", sceNpAsmClientGetGameTitleBanInfo) STUB("6bwFkosYRQg", sceNpAuthCreateRequest) +STUB( + "6bwlFahMvmg", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V136GetMultiVariablesResponseBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_29GetMultiVariablesResponseBodyEEE) +STUB("6bz2PYEIwV4", rgctx_fetch_trampoline_rgctx_23) +STUB("6bz32V2i7zQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEEC1EPNS2_10LibContextE) STUB("6bz4VVSSFyg", sceCompositorCommandGpuPerfBegin) STUB("6c2zGtThFww", sceGameLiveStreamingClearSpoilerTag) +STUB("6c3rCVE-fTU", _open) +STUB( + "6c6sKF4W0-U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEppEv) +STUB("6cBZ2UaxePg", _ZN7WebCore24CoordinatedGraphicsLayerD2Ev) +STUB( + "6cI-d3pVnyg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEC1Ev) +STUB("6cO1aKnHM64", _ZN3WTF13printInternalERNS_11PrintStreamENS_9ClockTypeE) +STUB( + "6cORpD1DvtM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("6cT5NumzIbU", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12RangeOfRanksEE12deepCopyFromERS7_) +STUB( + "6cZoyci7-wg", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setBoolean6ERKb) +STUB( + "6cbxzqSLXVU", + _ZN7WebCore14FrameSelection16setSelectedRangeERKN3WTF8OptionalINS_11SimpleRangeEEENS_9EAffinityENS0_17ShouldCloseTypingENS_14EUserTriggeredE) +STUB("6cfcRTPD2zU", _ZTSPl) +STUB( + "6cge7wMzE1c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEC1Ev) +STUB("6cl3cz+XiLI", _ZN3JSC7Symbols30forceFulfillPromisePrivateNameE) +STUB("6cnsYxwMAQs", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEEC1Ev) +STUB( + "6crYZJAd7ZA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEE7add_refEv) +STUB( + "6cuIqDibk7U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE8capacityEv) +STUB("6cxt2rJQec0", _ZN7WebCore23ScaleTransformOperationD0Ev) +STUB("6cyQuEEF7d4", _ZN3sce7Toolkit2NP25PostInvitationDataRequestC1Ev) STUB("6d-bWUDuz9U", scePerfTraceIoControllerStop) +STUB("6d4vj7bZQVo", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEEC1Ev) +STUB("6d5h3ZgzNmA", _ZN4Manx15ProcessLauncher6launchEPKcPiS3_) +STUB("6dHgysQUfVc", _ZNK7WebCore20ResourceResponseBase7expiresEv) +STUB( + "6dISWR98yKc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEE11get_deleterEv) +STUB( + "6dPQke5mcyM", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_20NpSessionInformationENS1_15AppSTLAllocatorIS5_EEEED2Ev) +STUB( + "6dR1uN4KLIo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEdeEv) +STUB("6dTcoLYk5Pg", _ZN7WebCore8SVGNames16kernelMatrixAttrE) STUB("6dUxyl-M50g", sceShellCoreUtilStartRebootTimer) +STUB("6dY37WakYAo", _ZN3sce16CommonDialogUtil6ServerC2EPKcmmis) +STUB("6dcE0XpW2o8", _ZN3sce7Toolkit2NP2V27Session7Request6Search15MAX_INDEX_VALUEE) +STUB("6ddOFPDvuCo", _ZTISt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE) +STUB("6ddv18bf7H8", + _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse20setMatchEndTimestampEPKc) STUB("6dfDreosXGY", sceUserServiceGetNpAccountId) +STUB("6dfJTRn5w0Q", _ZN3sce2Np9CppWebApi6Common6VectorImED1Ev) +STUB("6dhVu-SHjHI", Hide) +STUB("6dlDe+C9aGk", WKPreferencesSetCSSOMViewScrollingAPIEnabled) +STUB("6dnqmpbSP98", _ZN7WebCore16ScriptController13jsWindowProxyERNS_15DOMWrapperWorldE) +STUB("6dtqiBKeAlk", rgctx_fetch_trampoline_mrgctx_38) +STUB("6e+7KGBjV9o", + _ZN3sce2Np9CppWebApi14SessionManager2V125ResponseGameSessionPlayer8fromJsonERKNS_4Json5ValueE) +STUB( + "6e2IUSzTSk4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEC1EPNS2_10LibContextE) +STUB( + "6e4sxxtt3qM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "6e4yRTLSGLo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEC2Ev) +STUB("6e64qI81ak8", glTexParameteriv) +STUB("6eATaUH-V4Q", _ZN9Inspector31NetworkBackendDispatcherHandlerD0Ev) +STUB( + "6eCUNqWHS+M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEC1EPNS2_10LibContextE) STUB("6eEiDgUsIPw", sceAc3EncIsEncoding) +STUB("6eG09MAOjGo", rgctx_fetch_trampoline_mrgctx_67) +STUB("6eLKwIEjXzA", uprv_deleteUObject_67) +STUB( + "6eNHqStx1U0", + _ZN7WebCore18TextureMapperLayer29setAnimatedBackingStoreClientEPN7Nicosia26AnimatedBackingStoreClientE) +STUB("6ePLnfc4Qgo", _ZN7WebCore19ProtectionSpaceBase7compareERKNS_15ProtectionSpaceES3_) +STUB( + "6eSrTy4kvBI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEC2EPS6_PNS2_10LibContextE) +STUB("6eU9xX9oEdQ", mbtowc) +STUB("6eWqhVnss2E", _ZN3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer12setAccountIdERKm) +STUB("6eYydzyEZxA", _ZN7WebCore12ChromeClient50testIncomingSyncIPCMessageWhileWaitingForSyncReplyEv) +STUB( + "6ebRgRIXw9U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEC1ERKS7_) +STUB( + "6ebVmvjfoI8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE5clearEv) +STUB("6ebqMkrKndk", WKPreferencesSetTextAutosizingUsesIdempotentMode) STUB("6ee9Hd3EWXQ", sceAgcDcbDrawIndexGetSize) +STUB("6ef2v7j6sCU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEdeEv) +STUB("6ef4cYC04DM", + _ZN3WTF20ParallelHelperClientC2ENS_6RefPtrINS_18ParallelHelperPoolENS_13DumbPtrTraitsIS2_EEEE) +STUB("6egMCsaFSUE", Java_java_lang_System_mapLibraryName) +STUB("6eh9QGpaRWw", dynlib_get_obj_member) +STUB("6ei1eQn2WIc", _FDsign) +STUB("6ems2EAHiJs", _ZNK3WTF13MonotonicTime19approximateWallTimeEv) +STUB( + "6en0fkQoGI4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEmmEv) +STUB("6eoxFFSEuoY", IsDebuggingSupported) +STUB("6epPZ2UYJTk", _ZN7WebCore10ScrollView21setExposedContentRectERKNS_9FloatRectE) +STUB("6eqGWHOTSPc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEEC1ERKS7_) +STUB("6esKXS17kNM", _ZN3sce7Toolkit2NP2V211UserProfile7Request13GetNpProfilesD1Ev) +STUB("6f0LylaXd7o", _ZNK7WebCore11HistoryItem28shouldOpenExternalURLsPolicyEv) +STUB("6f5f-qx4ucA", wcscpy_s) +STUB("6fH0zZf54hU", Java_com_sony_bdjstack_ti_Database_getCurrentPlayListTable) STUB("6fIC3XKt2k0", sceMsgDialogUpdateStatus) +STUB( + "6fIW5HGIGz0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("6fQrPeC0Y8E", mono_thread_set_tls_offset) +STUB("6fVkWvWlrjA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEE5resetEPS6_) +STUB( + "6fWg1Azksqs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEC1Ev) +STUB("6fetXFxzXm0", _ZN12video_parser13cVideoMetaVWGD1Ev) +STUB("6fjpoeCJVmg", _ZN3JSC11SymbolTableC2ERNS_2VME) +STUB("6fk1eYHHIyY", u_file_read_67) +STUB("6fomUWNk6Xc", _ZN3sce2np8HttpFileD1Ev) +STUB("6fqUs7onElA", _ZN3sce7Toolkit2NP2V23TUS25AtomicAddToAndGetVariableD2Ev) +STUB("6fqpu9wjD2g", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V113MmrProperties9getRatingEv) +STUB( + "6fwKnXym170", + _ZN7WebCore23AuthenticationChallengeC1ERKNS_15ProtectionSpaceERKNS_10CredentialEjRKNS_16ResourceResponseERKNS_13ResourceErrorE) +STUB("6fxExrea6+4", EVP_CIPHER_CTX_set_flags) STUB("6fxZHeuNhIA", sceOpusCeltDecDecode) +STUB( + "6fyqnbAjDRE", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivitiesaSERS6_) +STUB("6g-lsIudFQY", _ZN15AbstractStorage14MemfileContentD1Ev) +STUB( + "6g0AWKQxzcQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEC2Ev) +STUB( + "6g0U40Z6AVo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE5beginEv) +STUB( + "6g3XDYgwptc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "6g4VzhRszHk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) STUB("6g6q-g1i4XU", sceNpWebApiSetHandleTimeout) +STUB("6g8aRptom6Y", WKUserContentExtensionStoreCompile) +STUB("6gAc64mQLH8", Java_java_net_PlainDatagramSocketImpl_getTTL) +STUB("6gAhNHCNHxY", _ZTVSt7_MpunctIcE) +STUB( + "6gBvZEOI9hM", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody14setCustomData2EPKvm) +STUB("6gCBQs1mIi4", _ZNSt8messagesIcEC1Em) +STUB( + "6gGrhIi04EY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEC1ERS7_) +STUB("6gJUdmk1iYA", + _ZN7WebCore12ChromeClient39shouldReplaceWithGeneratedFileForUploadERKN3WTF6StringERS2_) +STUB( + "6gJfayUw71I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("6gMiKfIw270", _ZN9Inspector15ScriptCallStackC1Ev) STUB("6gOfuHe419U", sceMatNewFrame) +STUB( + "6gQ-LLahUW4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUserC1ERS5_) STUB("6gT5JU72smg", sceTsReleaseBuffer) +STUB( + "6gUq1c0w2kw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE8pushBackERKS8_) STUB("6gVoKmSa+Gw", sceVideoCoreMediaSourceGetInputBufferEmptySize) +STUB( + "6gXlAq9wHUA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEE7add_refEv) STUB("6gYjd50q0CE", _sceUltQueueDataResourcePoolOptParamInitialize) +STUB( + "6gZRpJoPHU4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEppEv) STUB("6gapC-97PpU", scePsmUtilGetPsmIniFile) +STUB("6gc1Q7uu244", __mulvti3) +STUB( + "6gcKtkkNcTQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("6gfzYHkeL1k", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEEC2ERKS6_) +STUB("6glQ8kD-GTc", _ZN7WebCore6ISOBox4readERN3JSC8DataViewERj) +STUB("6grFSpPJQ1w", _ZN7WebCore5Range18selectNodeContentsERNS_4NodeE) +STUB("6gtXj9F99b8", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetString10Ev) STUB("6gtqLPVTdJY", sceSystemStateMgrWakeUp) +STUB("6gtqvuAs33c", + _ZNK3sce2Np9CppWebApi14SessionManager2V127GetGameSessionsResponseBody6toJsonERNS_4Json5ValueEb) +STUB( + "6gvV1q4oN+o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEEaSERSA_) +STUB("6gvVMVMBGnU", _ZN12video_parser18cMp4FFLHndlManager14getFF4ElstHndlEj) +STUB( + "6gwofFOXUz8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "6gx54bswMNY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEEptEv) STUB("6gyx-I0Oob4", sceHttpDbgGetConnectionStat) +STUB( + "6h0ShMUKIbU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEC1Ev) +STUB("6h1bExZI-tE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEdeEv) +STUB("6h4Y5m0Wmss", mono_aot_System_Collectionsmethod_addresses) +STUB("6h6qrJ54uYI", mono_aot_Sce_Vsh_Orbis_ContentManagerplt_end) +STUB("6h94BuC6RWk", _ZN7WebCore6Path2D6createEv) +STUB("6hB-uhkd0Fg", _ZN3NTF21ResourceRequestLogger9AdminPageC2EPKc) +STUB("6hE9xEWbm-M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEC1Ev) +STUB("6hSAbrbC3sE", _ZN3sce3pss5orbis9framework12PsmFramework8FinalizeEv) +STUB( + "6hT89Tg8yLM", + _ZN7WebCore21JSCSSStyleDeclaration19getOwnPropertyNamesEPN3JSC8JSObjectEPNS1_9ExecStateERNS1_17PropertyNameArrayENS1_15EnumerationModeE) +STUB("6hUKoSNxGHM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking8TempRankEED1Ev) +STUB( + "6hUNUqaCyXY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEE6assignEPS5_PFvS7_EPNS2_10LibContextE) +STUB("6hV3y21d59k", _ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED2Ev) +STUB("6hVdubrwqc4", _ZN3JSC7Symbols22internalAllPrivateNameE) STUB("6hbai6KIXkk", sceAmprAmmMeasureAmmCommandSizeMap) +STUB("6hd30WWn0Fo", + _ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody19unsetNpServiceLabelEv) STUB("6hdfGRKHefs", sceLibcPafMspaceCreate) +STUB("6hfyVLzdy9I", WKPreferencesSetShouldDisplaySubtitles) +STUB("6hhCUQPCbWc", _ZTVN15AbstractStorage12LocalServiceE) STUB("6hlAoEaRNmI", sceShareUtilityAdvanceFromFileWithContentIdList) +STUB("6hnjdHQRIjg", _ZNK7WebCore12ISOWebVTTCue8settingsEv) +STUB( + "6hpwfO+hnyU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("6hsTsLiKEl4", mono_aot_Sce_PlayStation_Jsonplt) +STUB("6htjEH2Gi-w", _ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1Em) +STUB("6hvkAQuPiTc", _ZN7WebCore24CoordinatedGraphicsLayer16resumeAnimationsEv) +STUB("6hxfaJWadRA", Java_com_sony_bdjstack_ti_Database_init) +STUB("6i00BlGDSV4", WKContextConfigurationAlwaysKeepAndReuseSwappedProcesses) STUB("6i0wQ7VpTSg", sceAvSettingGetMorpheusPuStatus) +STUB("6i18OJSvFWk", _ZN3sce4Json17InitParameterRttiC1EPNS0_14AllocParamRttiEPvm) +STUB("6i2sRJHmTbA", _ZNK7WebCore6JSNode8nodeTypeERN3JSC9ExecStateE) +STUB("6i3NZOqWDPQ", _ZN7WebCore6RegionD2Ev) +STUB("6i5aLrxRhG0", __inet_ntoa) +STUB("6i6VdLXP5Vk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V115SearchAttributeEEC2EPS6_) +STUB( + "6i9ua9zzTXs", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEEiRNS2_10LibContextEPT_m) +STUB( + "6iAhwmHrW1g", + _ZN7WebCore18PlatformTimeRangesC1EON3WTF6VectorINS0_5RangeELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("6iDi6e2e4x8", + _ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE7_GetcatEPPKNSt6locale5facetEPKS5_) +STUB( + "6iOVsWZn+3M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEEdeEv) +STUB("6iT-G1g0qt8", _ZN3JSC15JSScriptFetcher6s_infoE) +STUB( + "6iTRVBzIbD4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEED2Ev) +STUB("6iTzJRMsnkw", _ZNK7WebCore12RenderObject16repaintRectangleERKNS_10LayoutRectEb) +STUB("6idnz2oz05E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119SubtaskAvailabilityEEaSERKS7_) +STUB("6ifqKpxhUOM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge18ChallengeThumbnailEE3setEv) +STUB("6ighL5HiBY4", uset_containsNone_67) +STUB( + "6ij6YW-3Q1Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEmmEv) +STUB( + "6ilpNt50O1w", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE17getResponseHeaderERSB_) +STUB( + "6injZSzPkG4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEC2EPNS2_10LibContextE) +STUB( + "6ioCFoFXk0E", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) STUB("6irU4d1Gl3c", sceBgftServiceIntDownloadUnregisterTask) +STUB("6ivguIfmmS8", cpp_demangle_push_type_qualifier) +STUB("6j-ogt5bZCo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEdeEv) +STUB( + "6j0u2YA1M5A", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("6j48Q9Te2Po", + _ZN7WebCore11WindowProxy40createJSWindowProxyWithInitializedScriptERNS_15DOMWrapperWorldE) +STUB( + "6j5ol6kMp10", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEEptEv) +STUB("6j8lgZFObVo", _ZN23sceMetadataReaderWriter8MetadataD1Ev) +STUB( + "6j8tLvv9Cp4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("6jAtbdWXPBw", WKPreferencesGetMediaDevicesEnabled) STUB("6jFWpAfqAcc", sceNpCreateEventFlag) +STUB( + "6jGGSglWBlo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("6jHOZ6fItFU", _ZN3sce2npeqERK12SceNpTitleIdRKNS0_9NpTitleIdE) +STUB( + "6jJrvFEEq7o", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) STUB("6jLL5BIZ88U", sceAmprMeasureCommandSizeWaitOnCounter) +STUB("6jMCcCJazV4", ucol_nextSortKeyPart_67) +STUB( + "6jMR9zHqcWg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEC2Ev) +STUB( + "6jNEPd-bAQI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) STUB("6jPYBCGQgiQ", sceUserServiceSetParentalBrowser) +STUB( + "6jRlsMJb-z0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEE7add_refEv) +STUB("6jT7mMKftVY", + _ZN3sce2Np9CppWebApi14SessionManager2V127ResponsePlayerSessionPlayer11setPlatformEPKc) STUB("6jTNxzXckKU", sceFiosFileGetSize) +STUB("6jTdIXHSF4E", _ZN9Inspector19InspectorAuditAgentD2Ev) STUB("6jUfpgzO2J0", sceAudioInSetNoiseGateThreshold) +STUB("6jW8ZQfOOxo", _ZN3sce7Toolkit2NP2V210Tournament7Request8GetEventC1Ev) +STUB("6jXcZuxLnX4", _ZN7WebCore6FourCC10fromStringERKN3WTF6StringE) +STUB("6jZLakbLGTI", _ZN3WTF6String6removeEjj) +STUB("6jdNCEi6cFI", + _ZNK3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse19previousOffsetIsSetEv) +STUB("6jj29MbyzuI", sysKernelGetManufacturingMode) +STUB("6jkxaKVf01A", WKPreferencesSetQTKitEnabled) +STUB( + "6jlFAPd4jGY", + _ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayerC1EPNS1_6Common10LibContextE) +STUB( + "6jm++Ivr06Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE8pushBackERKS6_) +STUB( + "6jmdimtVM8M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEEcvbEv) STUB("6jpZY0WUwLM", sceSystemServiceKillLocalProcess) +STUB("6jrPmOnwskw", GCC_except_table136) +STUB("6juxMrBmDBU", _ZN3sce2np18HttpConnectionPool18SetConnectionErrorEii) +STUB("6jxmRAS4nQ0", _ZN7WebCore24CachedResourceHandleBaseC1EPNS_14CachedResourceE) +STUB( + "6jzXSIvg7EQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEE7get_refEv) +STUB( + "6jztgmozVEI", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessions9terminateEv) +STUB( + "6k+O8FI-P9M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEEcvbEv) +STUB( + "6k-Kyr9rSqs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEppEi) +STUB("6k0X7NGUGkw", + _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession18unsetMaxSpectatorsEv) +STUB( + "6k1CG5aK5lI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("6k2J3Q6Ybb8", _ZN7WebCore7JSRange9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "6k2mne6Z8ms", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE4sizeEv) +STUB("6kEVUeU2EL8", _ZN3WTF10StringImpl18simplifyWhiteSpaceEv) STUB("6kHBllapJas", sceHmdInternalResetInertialSensor) +STUB("6kL-6MlnOos", _ZN3WTF17languageDidChangeEv) +STUB("6kO8OVYUL7U", _ZN3JSC18PropertyDescriptor15setConfigurableEb) +STUB( + "6kOOezZ8400", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEC1EPS7_PFvS9_EPNS2_10LibContextE) STUB("6kPnj51T62Y", sceVideoOutGetResolutionStatus) +STUB( + "6kSgIacvArw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEC1Ev) +STUB("6kSz7BOrmC4", uloc_openAvailableByType) +STUB( + "6kWoGfo1Fq4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC2ERSA_) +STUB("6kc6BCMppHE", JSStringGetCharactersPtr) +STUB("6kdiTAwx4+A", _ZNK7WebCore12TextEncoding6decodeEPKcmbRb) +STUB("6keY+aKvyBE", vzone_getLastModified_67) +STUB( + "6klkN8eMtaI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEE11release_refEv) +STUB("6kqwdAZEv98", mono_shared_hashtable_size) +STUB( + "6kr44xgsuW0", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api15listUserTicketsEiRKNS4_26ParameterToListUserTicketsERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_27ListUserTicketsResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB( + "6kumUbULIFM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC1ERKSC_) +STUB("6kyOAf0ASJU", _ZN3JSC7Symbols25throwTypeErrorPrivateNameE) +STUB("6l-r6Nb2jbo", _ZN3JSC8Debugger17stepIntoStatementEv) +STUB( + "6l1Zib6S5ww", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEC1EPS6_PNS2_10LibContextE) +STUB( + "6l1kGZU-GRo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEEaSERSA_) +STUB("6l3Bv2gysNc", _ZN3sce4Json5Value3setERKNS0_6StringE) +STUB("6l451ru3SJg", _ZN3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreateD2Ev) +STUB( + "6l4SE9K1eOI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEED1Ev) +STUB("6l79pbB6a0E", _ZN3sce7Toolkit2NP2V28Commerce10Categories5resetEv) +STUB("6l8Ua3l0RQU", _ZN7WebCore8FormDataD1Ev) +STUB( + "6lBS38EjnUU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("6lCWG45kMZQ", g_get_current_dir) +STUB("6lCkJVSEkCo", _ZNK7WebCore15JSDOMWindowBase7wrappedEv) +STUB("6lEc1ExhDbE", _ZN3sce3Xml11InitializerD2Ev) +STUB( + "6lF+4p1KBn4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEC2EPS8_) +STUB( + "6lGoYQZ+noA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE3endEv) +STUB( + "6lLDKa1S3EI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEppEv) +STUB("6lM8YE2+lpw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEEC1EPNS2_10LibContextE) STUB("6lNcCp+fxi4", sceAgcSetUcRegIndirectPatchSetAddress) +STUB("6lO3sF7Ke00", GCC_except_table4) +STUB( + "6lPBvDDqiTg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE3endEv) STUB("6lVRHMV5LY0", sceHmdSetupDialogGetResult) +STUB("6lWlcHu15Jw", _ZN3JSC12DateInstanceC2ERNS_2VMEPNS_9StructureE) +STUB("6lYJ-OpUyPs", _ZN3sce2Np9CppWebApi11UserProfile2V113BasicPresenceC1EPNS1_6Common10LibContextE) STUB("6lZYZqQPfkY", sceSaveDataGetCloudQuotaInfo) +STUB("6lewWDIQodI", _ZN7WebCore16HTMLImageElement9setHeightEj) +STUB("6ljeTSi+fjs", _ZNK3sce16CommonDialogUtil6Client9getResultEv) +STUB("6ljlgovZafE", _ZN7WebCore19JSHTMLSelectElementD2Ev) +STUB("6lrgLpy0G+0", __asan_version_mismatch_check_v7) +STUB("6lwSxBExYLo", NetCtlUnregisterCallbackNative) +STUB("6lxsEIodP9k", _ZN7WebCore21getCachedDOMStructureERNS_17JSDOMGlobalObjectEPKN3JSC9ClassInfoE) +STUB("6ly8M4dm9oE", _ZN7WebCore8SVGNames11feOffsetTagE) +STUB( + "6lzLYPjJyEg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE5clearEv) +STUB( + "6m+5Nb780W0", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3CSS16StyleSheetOriginEEESt8optionalIT_ERKN3WTF6StringE) +STUB( + "6m-gghNt6hw", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10setString5EPKc) +STUB("6m0NLHoa6gA", mono_get_dbnull_object) +STUB( + "6m4cMqSC0y4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE7reserveEi) +STUB("6m65wOWTyCI", _ZN7WebCore11DisplayList18FillCompositedRectD1Ev) +STUB("6m7QO1Xga8g", que_no) +STUB( + "6mBBz7Pb3h8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("6mBp6comd7g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEEC1EPS6_) STUB("6mFxkVqdmbQ", sceAgcAcbPopMarker) +STUB("6mMQ1MSPW-Q", chdir) +STUB("6mQdXwULg1c", WKBundleCopyOriginsWithApplicationCache) +STUB( + "6mTvUfQJa1I", + _ZN3sce4Json6Parser14parseCodePointERSbIcSt11char_traitsIcENS0_8StlAllocIcEEERNS0_11InputStreamE) +STUB( + "6mZqRI1JeVA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "6maYWkJNt0w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEC2EPKS8_) +STUB( + "6mdBRQZGlls", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEE3getEv) +STUB( + "6mdRKXZ2IMI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "6mdWbeO1fBc", + _ZN3sce7Toolkit2NP2V27Ranking15getRangeOfRanksERKNS3_7Request15GetRangeOfRanksEPNS2_4Core8ResponseINS3_12RangeOfRanksEEE) +STUB( + "6mdtwu1AyFA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEaSERKS9_) +STUB("6me2sBkp8VU", + _ZNK3sce2Np9CppWebApi7Matches2V128RequestTemporaryMatchResults20getCompetitiveResultEv) +STUB( + "6mf-5p-ElNs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEC2EPS6_PFvS8_EPNS2_10LibContextE) STUB("6miba-pcQt8", sceNpManagerIntGetSigninState) +STUB("6mjLTKi0dYU", _ZN3sce7Toolkit2NP2V23TUS7Request12TusUserInputC2Ev) +STUB("6mqDF-9XV9o", uplrules_getKeywords_59) +STUB("6mr2Nasi3gc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEE7get_refEv) +STUB("6mu+YCJEVWc", _ZN3sce7Toolkit2NP2V210Tournament7Request10TeamFilterD1Ev) +STUB( + "6mxD8msqS4g", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser12getaccountIdEv) +STUB("6mxabRWMvHs", _ZN3sce7Toolkit2NP2V29Messaging22GameDataMessageDetails18MAX_SIZE_DATA_NAMEE) STUB("6n-iPMM7ImM", sceVideoCoreGetThumbnail) +STUB( + "6n10FzfM214", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEC2EPNS2_10LibContextE) +STUB( + "6n1cIZt+6og", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEptEv) +STUB("6n23e0gIJ9s", nearbyintl) STUB("6n8NT1pHW9g", sceNpManagerIntCreateLoginContext) +STUB("6n9zXyOLEq0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEE7get_refEv) +STUB( + "6nFzV0LRC7Y", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEptEv) +STUB("6nH53ruuckc", CERT_checkCertificateIssuer) +STUB("6nIvJACi-SI", _ZN3sce7Toolkit2NP17KickMemberRequestC1Ev) +STUB("6nLYZbqjtyc", __tsan_get_report_mop) +STUB("6nTiq94YXw0", _ZN3WTF18ParallelHelperPoolC2Ev) +STUB( + "6nUwUwG81mo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("6nW8WXQYRgM", _ZN3sce2np4CondC2Ev) +STUB( + "6nZ8O0ci6P8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEdeEv) STUB("6na+Sa-B83w", sceZlibFinalize) +STUB( + "6naISfUFYx0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("6nbOQW8bunE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEED2Ev) STUB("6ncge5+l5Qs", scePadClose) +STUB( + "6nf4OPg4oAE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC2ERKSB_) +STUB( + "6nhdX1Wo0O8", + _ZN9Inspector28DOMStorageFrontendDispatcher22domStorageItemsClearedEN3WTF6RefPtrINS_8Protocol10DOMStorage9StorageIdENS1_13DumbPtrTraitsIS5_EEEE) +STUB( + "6nkTSrqjeY0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE5beginEv) +STUB("6nkw2jvWJUY", _ZN9Inspector31NetworkBackendDispatcherHandler20LoadResourceCallbackD1Ev) STUB("6nmAQrIEG24", sceClPthreadCondSignal) +STUB( + "6nrvGECpWQU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEC2EPS8_) +STUB("6nvauoCfcG4", uprv_strndup_67) +STUB("6o0QC+B8-6I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEE11get_deleterEv) +STUB("6o4itIbqsY8", WKViewWillExitFullScreen) +STUB("6oCPeed+v4M", _ZN7WebCore11DisplayList8SetStateC1ERKNS_26GraphicsContextStateChangeE) +STUB( + "6oEykmqYVfk", + _ZN7WebCore11DisplayList9DrawImageC1ERNS_5ImageERKNS_9FloatRectES6_RKNS_20ImagePaintingOptionsE) +STUB( + "6oFi0pt4Gc4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEmmEv) STUB("6oIHlaJhz8w", sceCesRefersUcsProfileKoi8U) +STUB("6oKSgiKQI64", JVM_GetPrimitiveFieldValues) +STUB( + "6oKoSQmW6o8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEppEv) +STUB("6oL3-+pe6-I", _ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody14submitterIsSetEv) +STUB("6oLEhbdGcyA", _ZN3sce7Toolkit2NP2V212EventsClient17EventShareFactoryD1Ev) +STUB( + "6oMxoz2A2-o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) STUB("6oPKxZwNhWo", sceCesUcsProfileInitGb18030_2000) +STUB("6oTflEVejvA", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_18GameCustomDataItemEE17getAdditionalInfoEv) STUB("6oVBmLXDVZU", ScePsmMonoDelegateFreeFtnptr) +STUB( + "6oVNfo0sz50", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEEC1EPS9_PNS2_10LibContextE) STUB("6oZ3DZGzjIE", sceUserServiceSetGlsIsRecDisabled) +STUB("6oaQvkEtWE4", SwCtrlSinkInitialize) +STUB("6ocfVwswH-E", CERT_extractValidityTime2) +STUB("6ocqaJ6b3sM", _ZNK7WebCore11HTMLElement5titleEv) +STUB( + "6oh0rtZZZE0", + _ZN7WebCore13TextIndicator26createWithSelectionInFrameERNS_5FrameEN3WTF9OptionSetINS_19TextIndicatorOptionEEENS_35TextIndicatorPresentationTransitionENS_9FloatSizeE) +STUB("6ojHaeHOpRg", _ZN3sce2Np9CppWebApi11Matchmaking2V110UserTicket13unsetTicketIdEv) +STUB( + "6orDtmsPu64", + _ZN7WebCore23AuthenticationChallengeC2ERKNS_15ProtectionSpaceERKNS_10CredentialEjRKNS_16ResourceResponseERKNS_13ResourceErrorE) +STUB( + "6orHZ5f0weY", + _ZN7WebCore31rejectPromiseWithExceptionIfAnyERN3JSC9ExecStateERNS_17JSDOMGlobalObjectERNS0_17JSPromiseDeferredE) +STUB( + "6ot4sE4uzbg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEE3getEv) +STUB("6ot8v-aJp4w", _ZNK7WebCore15ActiveDOMObject20isAllowedToRunScriptEv) +STUB( + "6ozVBlFC+R8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEC2Ev) +STUB( + "6p3P4bybdXg", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi22postGameSessionsSearchEiRKNS4_33ParameterToPostGameSessionsSearchERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_34PostGameSessionsSearchResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) STUB("6p9jvljuvsw", sceNpWordFilterCreateTitleCtxA) +STUB("6pFpST8cU9o", utrace_data) +STUB("6pJRRd1pcLA", __asan_report_store_n) +STUB( + "6pJhf5zSOT8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEC2Ev) +STUB("6pNzJUtwAWo", _ZN3sce3pss5orbis5video15VideoPlayerBase9SetVolumeEi) +STUB("6pOSfbf0n2s", _ZNK7WebCore11HTMLElement9translateEv) +STUB( + "6pQwHVz-sp4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEEptEv) +STUB("6pSeaS8vAaA", umutablecptrie_get_67) +STUB("6pSl+vLbXP4", mono_btls_key_get_bits) STUB("6pajOezHAMI", sceNpSnsIntPostOpenGraph) +STUB( + "6pf1csTDhJs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "6pkE+kqgRco", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEEC2Ev) +STUB("6pkxvoufGrI", _ZN3JSC17JSArrayBufferView22slowDownAndWasteMemoryEv) +STUB( + "6po0TjfsIco", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEC2Ev) +STUB( + "6pph0Zg7KfM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEppEv) +STUB("6psZfG3S-fg", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationProperties18getNumberOfMatchesEv) +STUB( + "6ptM0bQUgag", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData39unsetxPsnTcsComparedLastUpdatedDateTimeEv) +STUB("6puN-DdtP0s", _ZN7WebCore19HTMLTableRowElement10insertCellEi) +STUB("6q05i9yEM7c", _ZL2hc) +STUB("6q0KZ62Ok1s", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_10TrophyInfoEEC1Ev) +STUB( + "6q1eUV0OZoE", + _ZN7WebCore22EmptyFrameLoaderClient33dispatchWillPerformClientRedirectERKN3WTF3URLEdNS1_8WallTimeENS_19LockBackForwardListE) +STUB("6q3HbnByPQ8", _ZNK3sce2Np9CppWebApi7Matches2V120ResponseInGameRoster10teamsIsSetEv) +STUB( + "6q4nVR9Yzrg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("6q6V19pMwLs", _ZN3JSC2VM15drainMicrotasksEv) +STUB("6q8q0z2Te1c", _ZN3WTF8JSONImpl5ValueC1Ed) +STUB("6qASSvWiPOU", _ZTVN7WebCore11DisplayList9TranslateE) +STUB("6qCuxSfW07o", _ZN3sce7Toolkit2NP2V29Messaging16GameDataMessagesC1ERKS4_) +STUB("6qFqND4iwPA", _ZN3sce4Json11InitializerC2Ev) +STUB("6qGhMiG+4-0", ECDSA_sign) +STUB( + "6qHTAp5Z3mI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEE11release_refEv) +STUB( + "6qHULLgyVz0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEEcvbEv) +STUB("6qHZ69Qfeb4", coil_dlclose) +STUB("6qI5g0UUyRw", EVP_aes_192_gcm) +STUB("6qJpqcBfN4U", _ZN7WebCore23AuthenticationChallenge15platformCompareERKS0_S2_) +STUB( + "6qJxsMqXgqU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEE11release_refEv) +STUB( + "6qL1IB3Fhck", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE23clearOnFinishedCallbackEv) STUB("6qM3kO5S3Oo", scePthreadCondattrGetclock) STUB("6qN1zaEZuN0", sceNgs2CustomRackGetModuleInfo) +STUB("6qRL52tLOII", cairo_pattern_reference) +STUB( + "6qWEZHzmM+4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEaSERKS9_) +STUB("6qWt575LR98", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEplEm) +STUB("6qX9DWxWU2I", _ZN7WebCore24DeprecatedGlobalSettings26setAllowsAnySSLCertificateEb) +STUB( + "6qXN6H1T9AI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEE11release_refEv) +STUB("6qYa4lB52gA", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V16RatingC2EPNS1_6Common10LibContextE) +STUB("6qb9qnKiB2c", _ZN7WebCore11MathMLNames6mtrTagE) +STUB( + "6qcyKL6ZhD4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEE11get_deleterEv) +STUB( + "6qe2QcAHHk8", + _ZN7WebCore8Settings38setForcedSupportsHighDynamicRangeValueENS_12SettingsBase24ForcedAccessibilityValueE) +STUB( + "6qg221lLjTc", + _ZN3sce7Toolkit2NP9Utilities6FutureISt4listINS1_11TusVariableENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB( + "6qjn2lkQXmw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE21intrusive_ptr_sub_refEPS9_) +STUB("6qm4BgAubEk", mono_aot_Sce_Vsh_ErrorDialogUtilWrapperjit_got) +STUB( + "6qmfAVrZes0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEppEv) +STUB("6qoDknLl0Q0", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V314MissingElement7setNameEPKc) +STUB( + "6qrThkcFkjE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEED2Ev) +STUB( + "6qw4ZGY68os", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEaSERKS7_) +STUB("6qy4F-nOeqI", _ZN3sce2Np9CppWebApi11Matchmaking2V15ErrorC1EPNS1_6Common10LibContextE) +STUB( + "6r3ubd-gcsI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEE11get_deleterEv) STUB("6r4hDyrRUGg", sceUserServiceGetAppearOfflineSetting) +STUB("6r6ssbPbKc4", _ZN3sce2np4Path11BuildAppendEPcmcPKcm) +STUB( + "6r7kkWFaWJ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("6r9e0Q0mmFM", _ZN7WebCore13GraphicsLayer13addChildBelowEPS0_S1_) +STUB("6rB5RFDqlLw", _ZN9Inspector31RuntimeBackendDispatcherHandlerD2Ev) +STUB("6rB7giYlHP4", _ZN12video_parser17cVideoProfilerMp420getMediatimeByOffsetExjjPy) +STUB( + "6rG3EBAmfHY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEEC2ERKSA_) +STUB("6rLpBtCq0Co", _ZN12video_parser17cVideoOperatorMp4D0Ev) +STUB( + "6rPq-s1rMkI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) STUB("6rUvx-6QmYc", sceRazorCpuWorkloadSubmit) +STUB("6rW5DhoijqY", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi21ParameterToLeaveMatchD2Ev) +STUB("6rbFd1xKksc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEED1Ev) +STUB("6rdgvpVBBGI", _ZN3sce3Xml3Dom6NodeIdC1EPvS3_b) +STUB( + "6rdnbr8UTxE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEC1Ev) +STUB( + "6rfaant0hGs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEneERKS9_) +STUB( + "6rg4d--wmYo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEC1Ev) +STUB( + "6rgmXYVAjyw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEixEm) +STUB("6ricVz3LSwA", _ZN3sce2Np9CppWebApi6Common6VectorImE5clearEv) +STUB("6rjMQQSOK7I", _ZN7WebCore9HTMLNames9hgroupTagE) +STUB( + "6roY1n0faok", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE8capacityEv) STUB("6roaZqVbD2o", sceCesUtf16ToGb) +STUB( + "6rqVRFeF+uI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEaSERKS9_) +STUB( + "6rsL6KjSn1o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "6rxMUYuiCgs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEE7get_refEv) +STUB( + "6s+Pa94bCzw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB( + "6s-EMKmjogs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEEC2EPS8_PNS2_10LibContextE) STUB("6s-tDu1w580", sceAvSettingSetProcessAttribute) +STUB("6s2KBbiKoeQ", _ZNK3sce2Np9CppWebApi11Matchmaking2V15Cause14getReferenceIdEv) +STUB("6s3eHZETzRg", _ZTVN7WebCore11DisplayList22BeginTransparencyLayerE) +STUB( + "6sA+PpHnPRM", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "6sALqg5zOXc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEE5resetEPS6_) +STUB("6sAaleB7Zgk", _ZNSt8messagesIwED1Ev) +STUB("6sFjqhFXazo", _ZN3WTF13MetaAllocatorC2Emm) +STUB("6sI08fxTRDQ", WKPreferencesSetFrameFlatteningEnabled) +STUB( + "6sI0DtJCJYc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("6sJIpuPp6Ug", _ZN3JSC15createTypeErrorEPNS_14JSGlobalObjectE) +STUB("6sJWiWSRuqk", strncpy) +STUB("6sNCMCcDva8", _ZN3JSC29createNotEnoughArgumentsErrorEPNS_14JSGlobalObjectE) +STUB("6sNie6r4X-A", uregex_patternUText_67) +STUB( + "6sQhqGZfqlQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEptEv) +STUB( + "6skQqMOy7Ik", + _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets28getxPsnAcceptPlatformNamePs5Ev) STUB("6slrIYa3HhQ", sceFontGraphicsTextureRefersSurface) +STUB( + "6sn-8Hkqfp0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "6svBaAI4Ggw", + _ZN15AbstractStorage14YoutubeStorage15RemoveRecursiveERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB( + "6sxng9ONdfI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) STUB("6sy3Y9QjOJw", sceKernelGetGPO) +STUB("6t+iBrmS2jc", + _ZN3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallbackD2Ev) +STUB( + "6t-5FNVvW58", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "6t2tqubghqY", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("6t5G5dYpMVg", mono_aot_get_method) +STUB("6tHjwBbwBHI", + _ZN3sce2Np9CppWebApi13InGameCatalog2V525ContentInteractiveElementC1EPNS1_6Common10LibContextE) +STUB( + "6tS+1Td9xfI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEmmEi) +STUB( + "6tSAT90CDnE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEixEm) +STUB("6tTbrt1O1SY", + _ZN3sce4Json5Value30setElementAccessFailureHandlerEPFviPKNS0_6StringEPKmPKS1_S8_PvES9_) +STUB( + "6tbQzFmGsY4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE8capacityEv) +STUB( + "6tcQUI3RKzY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEdeEv) +STUB("6te3AYyG8DM", g_StructureTransitionTablePoison) +STUB("6tfClfbWkoE", + _ZN3sce2Np9CppWebApi7Matches2V118RequestMatchPlayer13setPlayerTypeERKNS3_10PlayerTypeE) +STUB("6tfemYI0syo", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging25GameDataMessageAttachmentEE5resetEv) +STUB("6tg0fDb-1CI", _ZNK7WebCore4Page28remoteInspectionNameOverrideEv) +STUB("6tl87fx8jW0", Java_java_net_PlainDatagramSocketImpl_connect0) +STUB("6tpJ09XQWU4", + _ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends11unsetfilterEv) +STUB("6trxThGwW+E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEaSERS7_) +STUB("6ttFOYFULyE", throw_exception) +STUB("6ttP+oJhhOU", Java_java_net_PlainDatagramSocketImpl_bind) +STUB( + "6tuCWhXgPWM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE7popBackEv) +STUB( + "6tvRfA2A4S0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEdeEv) STUB("6txNWOo9HqI", sceNpManagerUtilSystemMessage) +STUB("6u-wDQcw7aM", WKPreferencesSetDefaultFontSize) +STUB("6u1krNl-oPM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEixEm) +STUB("6u20ZWqmgEY", delegate_invoke_impl_target_7_p) STUB("6u98-pOEZ7A", scePigletGetUsageVSH) +STUB( + "6uADnQM6BoE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE6resizeEj) +STUB( + "6uIuyO4KZgY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEEaSERS9_) +STUB("6uO4pTm83fQ", _ZN3sce2np8JsonBoolC2EP14SceNpAllocator) +STUB("6uOuk2GNd0k", _ZL16emergency_buffer) +STUB("6uRfe3kru7g", _ZN7WebCore15JSSVGSVGElement15subspaceForImplERN3JSC2VME) +STUB("6uRicjad3G0", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12BlockedUsersEE12deepCopyFromERS7_) +STUB( + "6uSR4IDJIXw", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersC2Ev) +STUB("6uSd4F-3iOg", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE5clearEv) STUB("6uYcvVjH7Ms", sceNetConfigWlanApStop) +STUB( + "6uaxXSrH-t8", + _ZN3sce2Np9CppWebApi14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBody25getJoinableSpecifiedUsersEv) +STUB( + "6ub07QzjcyA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("6utDtURD3Rc", _ZN4Manx8X509name7getItemENS0_12X509NameTypeEiPcj) STUB("6uvAl4RlEyk", sceNetCtlApRpStop) +STUB("6uvnoqZfJDU", _ZNK7WebCore8Document7doctypeEv) +STUB( + "6uvsDoFDgRU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "6v8iPxdKh94", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("6v9-ne7wt+4", _ZN7WebCore13CharacterData10insertDataEjRKN3WTF6StringE) STUB("6vGCkkQJOcI", sceFontSetupRenderScalePixel) STUB("6vGNjK1X5iU", sceAudiodReportUnregisterHandler) +STUB("6vKnJ0YYMVs", WKInspectorGetTypeID) +STUB("6vLxC+pasvA", _ZN3JSC7Symbols31propertyIsEnumerablePrivateNameE) +STUB( + "6vP0+4bSdgw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "6vQllokbxsQ", + _ZN7WebCore16MIMETypeRegistry33preferredImageMIMETypeForEncodingERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEES8_) +STUB("6vQp2stBq68", _ZNK7WebCore9FrameView23documentBackgroundColorEv) +STUB( + "6vWAXpg9eio", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEE5resetEPS6_) STUB("6vWY0aegNnk", sceHmdGetViewStatus) +STUB("6vYXzFD-mrk", _ZNKSt7collateIcE4hashEPKcS2_) +STUB( + "6vYYgo+vPgQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEixEm) +STUB( + "6vcRYeFZpFU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB( + "6vfe8v-CD0s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEC1EPS8_) +STUB("6viGpZpHbv8", _ZN12video_parser18cMp4FFLHndlManager14getFF4StsdHndlEj) +STUB( + "6vj-RwXpzx8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "6vm01KRxbM4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEEptEv) STUB("6vmrNgzv924", sceVisionManagerGetRegisterUserDataSize) +STUB("6voa+OgzKxc", _ZN3sce2Np9CppWebApi7Matches2V117ResponseMatchTeam13unsetTeamNameEv) +STUB("6vopFVc7RLI", _ZNK7WebCore14CredentialBase7isEmptyEv) +STUB( + "6w+imlxuA60", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEEC2Ev) +STUB("6w-VsQFYF2w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEED1Ev) +STUB( + "6w41-MfgAv0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE8capacityEv) +STUB("6w8tPp+Yk6E", setreuid) +STUB( + "6wJPdsV8NOM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE8copyFromERKS9_) +STUB("6wJwUIVwAxg", FT_Vector_Rotate) +STUB("6wK1viz3u24", __sqrt) +STUB("6wLehmKPNa4", PubSubSubscribe) +STUB("6wPgME-NdKA", mono_exception_from_name_two_strings) +STUB("6wWrq5tb+yk", sfnt_module_class) +STUB("6wXisPohifE", __sys_resume_process) STUB("6wfdbeqaQco", sceHidControlSetUserColor) +STUB("6whcJMHioXw", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData10setboardIdEi) +STUB( + "6wixmwmsi8c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEE5resetEPS8_) +STUB("6wo0ARK96Ek", _ZN3WTF11Persistence7Encoder6encodeEt) +STUB("6ww1xI2yWEI", _ZN23sceMetadataReaderWriter8Metadata8setFieldERKSs) +STUB("6x-luKeSQNg", WKPreferencesGetAsynchronousPluginInitializationEnabled) +STUB( + "6x-yQ99AceY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEixEm) STUB("6x06HaJWiDQ", sceSulphaGetNeededMemory) +STUB("6x1DRHvVZYI", _ZN7WebCore29contextMenuItemTagLeftToRightEv) +STUB("6x1JXGn6Yqk", _ZN7WebCore14JSWebAnimationC2ERKS0_) +STUB( + "6x3XXS8HpQA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEC2EPKS8_) +STUB( + "6x6rQuRx+Ss", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEE5resetEPS9_) +STUB("6xEO6mzPsiA", il2cpp_domain_get_assemblies) +STUB("6xKUW67MEeY", _Z37sceGpuDebuggerRegisterFetchShaderCodePKvjPKc) +STUB( + "6xLfWij1WNQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEeqERKS9_) +STUB( + "6xMRAR-V1JA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE4sizeEv) STUB("6xMew9+rZwI", scePthreadCondattrSetpshared) +STUB("6xRst7sx+0Y", mono_btls_x509_name_copy) STUB("6xV3u1IX9hY", sceKernelWriteWaitOnAddressCommand) +STUB( + "6xVVF5JaU34", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("6xVmVcuw4t0", Java_java_io_UnixFileSystem_getBooleanAttributes0) +STUB("6xVpy0Fdq+I", _sigprocmask) +STUB("6xWOV1fjt24", WKContextConfigurationSetUserId) +STUB( + "6xarkuk0iOU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEC1EPNS2_10LibContextE) +STUB( + "6xdXhqAex8I", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("6xesGyeWJfQ", + _ZNK7WebCore6Editor26selectionStartHasMarkerForENS_14DocumentMarker10MarkerTypeEii) +STUB("6xfC1QjOWmk", _ZNK3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead21playerAttributesIsSetEv) +STUB( + "6xfXSJ7uG9o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEppEv) +STUB( + "6xfiAiks+6c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEEaSERSA_) +STUB("6xh1tBXTmFA", _ZN3sce2Np9CppWebApi14SessionManager2V116FromNonPsnMemberD1Ev) STUB("6xlf9+pa0GY", sceNpMatching2CreateContextInternal) +STUB("6xpx7DjGIzE", ures_countArrayItems_67) +STUB( + "6xr5Zp1nYuE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE17getResponseHeaderERSB_) +STUB( + "6xvl3JBzRek", + _ZN7WebCore11DisplayList20DrawTiledScaledImageC1ERNS_5ImageERKNS_9FloatRectES6_RKNS_9FloatSizeENS2_8TileRuleESA_RKNS_20ImagePaintingOptionsE) +STUB("6y+NITWLmmE", u_hasBinaryProperty) +STUB("6yAntKci2GE", _ZN7WebCore11MathMLNames5msTagE) +STUB("6yCZwTLGL4c", _ZN3WTF14fastMallocSizeEPKv) +STUB("6yCcv3jyMfk", _ZN7WebCore24CoordinatedGraphicsLayer14setAnchorPointERKNS_12FloatPoint3DE) +STUB( + "6yFd3HB2OE8", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScore24getxPsnAtomicOperationIdEv) +STUB("6yMnkmRUIKA", WKPreferencesSetMediaDevicesEnabled) +STUB( + "6yNTPzhIgTc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("6yQTKzljpcM", WKBundleBackForwardListItemIsTargetItem) +STUB( + "6yRDsfHB+6w", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEEdeEv) +STUB( + "6yRMvzsNgxM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEE11get_deleterEv) +STUB("6yS9uNax8IU", _ZN3JSC18PropertyDescriptor13setDescriptorENS_7JSValueEj) +STUB( + "6ySn8xr3l9I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE8pushBackERKS8_) STUB("6yU1KEvOl14", sceRegMgrNonSysSetBin) +STUB("6yU5lk66Vv8", + _ZN7WebCore12ChromeClient16hasStorageAccessEON3WTF6StringES3_mmONS1_17CompletionHandlerIFvbEEE) STUB("6yXA1cZyFz4", sceVorbisDecTimeSeek) +STUB("6yXHAKO8Fwg", _ZN3JSC10IsoCellSet33parallelNotEmptyMarkedBlockSourceEv) +STUB("6yYwCC3Gfmo", WKBundleFrameStopLoading) +STUB( + "6yZMCvLzHFw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEneERKS9_) +STUB( + "6yc65mibD-4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("6ym+oZImo1k", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE8copyFromERKS7_) +STUB( + "6ymyIJBIuIo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE21intrusive_ptr_add_refEPS9_) +STUB("6yplvTHbxpE", _ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED0Ev) +STUB( + "6yqvKiUI9o4", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsersC2Ev) +STUB("6yzY60Utq0A", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging25GameDataMessageAttachmentEED1Ev) +STUB("6z-q6zRLxFI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEC2Ev) +STUB( + "6z0p-VK7CMk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE6resizeEj) +STUB("6z1JeV3sLx8", _ZN9Inspector22InspectorDebuggerAgent20backtraceObjectGroupE) +STUB("6z2P2V2XCiI", FTA_Remove_Module_smooth_lcdv) +STUB("6z5ySLhOFQE", glStencilFuncSeparate) +STUB("6z6RTJBjblE", _ZN9Inspector15ScriptCallStackC2Ev) +STUB( + "6z7bnuqvMHY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEEC1Ev) +STUB("6z9LFxCfQgw", _ZNSt15basic_streambufIwSt11char_traitsIwEE5uflowEv) +STUB( + "6zDGeJG+9Ys", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEED1Ev) +STUB("6zDTIGZKwB0", _ZN3sce7Toolkit2NP20ModifySessionRequestC2Ev) +STUB("6zDeyzjWz-8", FTA_Export_Module_raster5) +STUB("6zGNzBYG3-8", _ZN7WebCore10Pasteboard11writeStringERKN3WTF6StringES4_) STUB("6zGifD5IqRo", ScePsmMonoStringNewWrapper) +STUB( + "6zGln51xzoY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEE7get_refEv) +STUB("6zJNbo2nyk4", mono_aot_Sce_Vsh_SQLiteAuxjit_got) STUB("6zKouhabgjM", sceKeyboardMbusInit) +STUB( + "6zLCWBJjsm0", + _ZN7WebCore22CacheStorageConnection13updateRecordsEmONSt12experimental15fundamentals_v38expectedIN3WTF6VectorINS_14DOMCacheEngine6RecordELm0ENS4_15CrashOnOverflowELm16EEENS6_5ErrorEEE) +STUB("6zLDgp1lYO0", _ZN3sce7Toolkit2NP2V212NetworkUtils7Request19GetBasicNetworkInfoC2Ev) +STUB( + "6zRdftg-7z8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEaSERKS9_) +STUB("6zU++1tayjA", __extendsfdf2) +STUB("6zWUKLs2zY8", mono_aot_Sce_Vsh_VideoServiceWrapperjit_code_end) +STUB( + "6zYaTyoGeww", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData24unsetxPsnAtomicOperationEv) +STUB( + "6zcc4vyhfLQ", + _ZN7WebCore9FrameView24paintContentsForSnapshotERNS_15GraphicsContextERKNS_7IntRectENS0_19SelectionInSnapshotENS0_26CoordinateSpaceForSnapshotE) +STUB("6zg3ziZ4Qis", + _ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE5_InitERKSt8_Locinfo) +STUB( + "6znSyI4tHR0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("6znTVlwDoh4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE5beginEv) +STUB( + "6zoDryEuZbM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE21intrusive_ptr_add_refEPS9_) +STUB("6zv7cfmRgCM", _ZN7WebCore8SVGNames10filterAttrE) +STUB("6zwy9u-y9i8", _ZN3JSC7Symbols37regExpStringIteratorGlobalPrivateNameE) STUB("6zxuBlsGF0I", sceFontGraphicsSequenceGetAgcCommandsForJump) +STUB("7++HyggGH44", _ZN3WTF14FileSystemImpl27isSafeToUseMemoryMapForPathERKNS_6StringE) +STUB("7+0ouwmGDww", __ashrti3) +STUB("7+7EZDESn0U", WKRenderLayerGetTypeID) +STUB("7+F9pr5g26Q", CA_MGMT_extractCertASN1Name) +STUB("7+Gq-0xFybo", FcFontList) +STUB("7+KQPL+96JY", _ZN3sce7Toolkit2NP2V212EventsClient12EventDetails19MAX_SIZE_TITLE_NAMEE) +STUB( + "7+LbrrOoFhE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEC2ERS7_) STUB("7+OJIpko9RY", _sceFiberInitializeWithInternalOptionImpl) STUB("7+OR1TU5QOA", sceNpTrophySystemGetTrophyData) +STUB( + "7+PmcEwupgE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE5beginEv) +STUB("7+XbDOTe2S0", _ZN9Inspector14InjectedScript13releaseObjectERKN3WTF6StringE) +STUB("7+dvfiBHXOc", mono_aot_Sce_PlayStation_BclExtensionsjit_code_end) +STUB("7+hk+ra-Nok", _ZThn8_N3sce2np13JsonDocParser12onObjectNameEjjPKc) +STUB("7+icaL29TYs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEC1Ev) +STUB( + "7+oCtx2q+O4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEC1EPS7_PNS2_10LibContextE) +STUB( + "7+sCRl51dEw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEE11release_refEv) +STUB( + "7+sK4wptCwE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEED2Ev) STUB("7+uKCMe4SLk", sceNpManagerIntGetAccountCountry) STUB("7+v3uWRHgQ4", sceDepthSetCommands) +STUB( + "7+v9b5RKB5c", + _ZN7WebCore26ActiveDOMCallbackMicrotaskC2ERNS_14MicrotaskQueueERNS_22ScriptExecutionContextEON3WTF8FunctionIFvvEEE) +STUB( + "7+vp9qHnefY", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyC2EPNS1_6Common10LibContextE) +STUB( + "7+w2J2tPl1M", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("7-2Lu2r5yb4", JVM_GetClassSigners) +STUB("7-2glF9P8AI", + _ZN7WebCore17CredentialStorage24getFromPersistentStorageERKNS_15ProtectionSpaceE) +STUB( + "7-40cqGcz9E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEED1Ev) +STUB( + "7-AW9mVPxtI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEEdeEv) +STUB( + "7-BX2Jeii7c", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "7-F7rT8sLfI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEEdeEv) +STUB( + "7-Gdiep3RZg", + _ZN7WebCore16BlobRegistryImpl15registerBlobURLERKN3WTF3URLEONS1_6VectorINS_8BlobPartELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEERKNS1_6StringE) +STUB( + "7-Lx5Q4-v90", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEE5resetEPS9_) +STUB( + "7-OYR+Ui-do", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB("7-OxGuuZnkM", _ZN15AbstractStorage12LocalContent5FlushEv) STUB("7-R7QqM35s0", sceDebugIpmiGetDump) +STUB("7-RvuFg4OzY", mono_gc_wait_for_bridge_processing) +STUB( + "7-UiRtYjSDg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEC2EPNS2_10LibContextE) +STUB("7-a7sBHeUQ8", wcstod) +STUB("7-dpn36Q3qc", _ZN7WebCore14foldQuoteMarksERKN3WTF6StringE) STUB("7-miUT6pNQw", sceFontGetTypographicDesign) +STUB("7-psagK3Iow", _ZThn16_N9Inspector18InspectorHeapAgent7disableERN3WTF6StringE) +STUB( + "7-qkn0ALaO0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEED2Ev) +STUB("7-qu9XBD8iI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEE7get_refEv) +STUB("7-r0RQ6jHjg", GCC_except_table72) +STUB("7-xmQEeX5Ck", mono_aot_I18N_CJKjit_code_end) +STUB( + "7-ySFB+Vo68", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB( + "7-zi88YGX38", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEneERKS9_) +STUB("701xv4i88-g", _ZN7WebCore22EmptyFrameLoaderClient32updateGlobalHistoryRedirectLinksEv) +STUB( + "7022anBuij8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEE11get_deleterEv) +STUB("702ZVPACD+I", g_JSWebAssemblyMemoryPoison) +STUB( + "704m4HUvfNY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEEptEv) +STUB( + "70Dj40Ar0ag", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE3endEv) +STUB( + "70EUl52OpCM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEEdeEv) +STUB("70Ro6v2hlLQ", _ZN3JSC13vmEntryToWasmEPvPNS_2VMEPNS_14ProtoCallFrameE) STUB("70Swvw7h6ck", sceNpManagerIntGetOfflineAccountId) +STUB( + "70l1pvMOVIg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEC1ERS7_) +STUB("70niEKUAnZ0", _ZNK3sce16CommonDialogUtil6Client19isInitializedStatusEv) +STUB( + "70ntBCAv3qw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEaSERS7_) +STUB("70qFzq4z3UI", _ZN3sce2np13RingBufMemoryD0Ev) +STUB("70syGbtSdn4", _ZN23sceMetadataReaderWriter8Metadata13_selectSubsetERKS0_) +STUB("71-1jbC1u24", WKPageCopyCustomUserAgent) +STUB("710Bp0WQkAQ", + _ZN8meta_gen11MsvPromoter21setKeyValue_TBLI_PathENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti) +STUB("710soebYLH0", mono_metadata_get_inflated_signature) +STUB( + "7175vlh5BqY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("71B6E4fG+sA", JSValueIsNumber) STUB("71E9e6n+2R8", scePadOpenExt2) +STUB("71FWawHH1NU", _ZNK7WebCore15HTMLLinkElement3relEv) +STUB("71MqbV1TZQA", _ZN7WebCore20PasteboardCustomDataC1EOS0_) STUB("71P0F8eJfPk", sceMatRegisterResourceType) +STUB( + "71RS46Of45w", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getInteger1Ev) +STUB( + "71SQ7HAyo40", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEmmEi) +STUB( + "71cL8H46qHM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEppEv) +STUB("71e3PK+sjL8", YGConfigGetContext) +STUB("71eCBabjnWU", sqlite3_value_type) +STUB( + "71gOoS734Uk", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser18hasjoinStateFilterEv) +STUB( + "71j-hbkEhI0", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersC1Ev) +STUB("71jbb8xfEq4", + _ZN3sce7Toolkit2NP2V29Messaging7Request28GetGameDataMessageAttachment19MAX_SIZE_ATTACHMENTE) +STUB("71mfcaKoFkw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEEaSERKSA_) +STUB( + "71n4xd0lXF8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEE5resetEPS6_) +STUB("71sgC7+39is", u_countChar32) STUB("71w5DzObuZI", sceFontSupportGlyphs) +STUB( + "723zyOBO7q0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEED1Ev) +STUB( + "725KKyObHng", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEC1EPNS2_10LibContextE) +STUB( + "727vdH6CZfc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEaSERKS9_) +STUB( + "72AQTIrPyuo", + _ZN3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsTouchResponseBodyC1EPNS1_6Common10LibContextE) +STUB( + "72QxfXmhzNk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEC2EPS8_) +STUB( + "72VR48dy4QY", + _ZN3sce2Np9CppWebApi14SessionManager2V129GameSessionPushContextFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_22GameSessionPushContextEEE) +STUB( + "72WlWyOevr8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEppEv) +STUB("72Xc-Zdql7E", _ZN9Inspector27InspectorFrontendDispatcherC2ERNS_14FrontendRouterE) +STUB( + "72bM0Im+hXE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEE6assignEPS5_PFvS7_EPNS2_10LibContextE) +STUB( + "72ek4eKCDtM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE21intrusive_ptr_add_refEPS7_) +STUB( + "72fRL8uLylg", + _ZN3sce2Np9CppWebApi15Personalization2V112ErrorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5ErrorEEE) +STUB("72mM3QwA6Eo", _ZN3sce2np10JsonObject8SetFieldEPKcbPPNS0_8JsonBoolE) +STUB("72mm7Ox2Wo8", mono_aot_Sce_Vsh_Np_Webapiunbox_trampolines) +STUB("72nd6WyGCLU", + _ZNK3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResults22teamMemberResultsIsSetEv) +STUB( + "72rIvihBfJc", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V129SetDataInfoRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_22SetDataInfoRequestBodyEEE) +STUB("72rYuYoDTWk", getegid) +STUB( + "72w8jvw+SGs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEaSERKS9_) +STUB("72wZB0MqDcg", sqlite3_wal_hook) +STUB( + "72yo9BGphJ4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEED2Ev) +STUB( + "73-MWVlr1Gg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEEaSERKSA_) +STUB("732GeeuVli4", rgctx_fetch_trampoline_mrgctx_115) +STUB("733IvkSQ3tY", + _ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession30reservationTimeoutSecondsIsSetEv) +STUB("733xcnCgEWg", + _ZN3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator11setPlatformEPKc) STUB("735GfVO9v2s", sceVideoOutCursorSetPositionStereo) +STUB( + "73CNl0EKFmQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEC2EPS8_) +STUB( + "73GV+sRHbeY", + _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE11do_get_timeES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm) +STUB( + "73I4BBiAx3c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEED1Ev) +STUB( + "73Ms846GtIA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("73OOfmlKsoY", _ZN9Inspector21DOMFrontendDispatcher16shadowRootPoppedEii) +STUB("73QTBvO2yGo", Java_sun_misc_AtomicLongCSImpl_attemptUpdate) +STUB("73SV5VnRI68", _ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayerD2Ev) STUB("73WQ4Jj0nJI", sceScreenShotSetOverlayImageWithOrigin) +STUB( + "73XG6dPCOr0", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "73XzI6MdHu4", + _ZN7WebCore20SharedBufferDataViewC1EON3WTF3RefINS_12SharedBuffer11DataSegmentENS1_13DumbPtrTraitsIS4_EEEEm) +STUB("73ZYnt2WGWU", _ZN7WebCore10LayoutRect5scaleEf) STUB("73ZZdojLIgs", sceAgcDcbSetCfRegisterDirect) STUB("73cbQgoCuB4", sceUpsrvUpdateGetFeatureList) +STUB("73dMWaYVuB8", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend16FriendsOfFriendsEE19setCustomReturnCodeEi) +STUB( + "73e3FnFmw6k", + _ZN9Inspector13AgentRegistry6appendESt10unique_ptrINS_18InspectorAgentBaseESt14default_deleteIS2_EE) STUB("73fF1MFU8hA", scePlayGoGetChunkId) +STUB( + "73fihY0gUsk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEEcvbEv) +STUB("73gjSG1YiTU", WKURLResponseIsAttachment) +STUB("73hwirhzHjg", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEED1Ev) STUB("73o7T9GCiNU", sceCesUhcToUcs2) +STUB("73qbxKjBH0o", _ZN3sce2np12HttpTemplate7DestroyEv) +STUB( + "73uNe6pfWF4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEEC2ERSA_) +STUB("73vg+nRH68g", FT_GlyphSlot_Embolden) +STUB( + "74+mzp8Rz6g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEEC1EPS9_PNS2_10LibContextE) STUB("74-1x3lyZK8", sceAppContentGetRegion) +STUB( + "741r+LHMBmI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEC1EPS8_) STUB("743ZzEBzlV8", sceNpWebApiGetHttpResponseHeaderValueLength) +STUB("745gvhPlKWQ", _ZNSt14overflow_errorC1EPKc) +STUB("749AEdSd4Go", _ZTVSt9type_info) +STUB( + "749D7dADluQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEmmEv) STUB("74ASEqxSnkM", sceNpUniversalDataSystemEventPropertyObjectSetObject) +STUB("74E3+ZonU5Q", _ZN7WebCore12JSAudioTrackD2Ev) +STUB("74OZKwz-xYE", _ZN7WebCore9HTMLNames13onsuspendAttrE) STUB("74PbyKbRv-I", sceEditMp4SetFinishCallback) +STUB("74SncbyJ65I", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsD1Ev) +STUB("74YXcrlixiA", _ZN3sce7Toolkit2NP2V28Matching12RoomPingTimeD2Ev) +STUB( + "74ZFJvWrFIg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEC1ERS7_) +STUB( + "74ck5KEE9q8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEEC1Ev) +STUB("74mtR8svFzk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V124RequestCooperativeResultEEmmEv) +STUB( + "74u2S5XInx8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("74vuH9BYkF0", BN_mul) +STUB( + "74y6-+V+rgk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEED1Ev) +STUB( + "75-4iX2aMMY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE21intrusive_ptr_sub_refEPS7_) +STUB("751UqqIzoec", + _ZN3JSC8evaluateEPNS_9ExecStateERKNS_10SourceCodeENS_7JSValueERN3WTF8NakedPtrINS_9ExceptionEEE) +STUB("753OCxriFNY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEaSERS7_) +STUB( + "754SO8QWWDs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEEcvbEv) +STUB( + "756KIb6WACM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEE3getEv) +STUB( + "75EkPBAMjxo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEEC2ERSA_) +STUB( + "75GiOIb8-rM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB( + "75GjvHiupOY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEmmEv) +STUB( + "75Hbvij1fk8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "75HznY1Qxls", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser28hasxPsnAcceptPlatformNamePs5Ev) +STUB( + "75J34NwHjdg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEED2Ev) +STUB( + "75LMAPGq5u0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEEaSERKSA_) +STUB( + "75R2WXh1r-A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEE11release_refEv) STUB("75cwn1y2ffk", sceUserServiceGetGlsMessageFilterLevel) +STUB("75fdGWpRw34", _ZNK7WebCore22EmptyFrameLoaderClient21canShowMIMETypeAsHTMLERKN3WTF6StringE) +STUB("75fjmB8fYrc", _ZN3sce2np18HttpConnectionPool8RegisterEPNS0_14HttpConnectionE) +STUB( + "75hUGUlCWiA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEplEm) STUB("75i2K6Oitrk", sceNpSnsTwitchDialogTerminate) +STUB("75jFiV-jHmM", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container11getAgeLimitEv) STUB("75lTZ9hOy2w", sceNpUniversalDataSystemIntTerminate) +STUB("75nTISHl6cY", _ZNK7bmalloc11IsoTLSEntry9alignmentEv) +STUB( + "75ok-DZg0rE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE5emptyEv) +STUB("75p0UbAOPnQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEC1ERKS7_) +STUB("75qcBN57jBQ", _ZN7WebCore7JSRange15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("75qnyRc9zRc", + _ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer17unsetPushContextsEv) +STUB("75tSWNcC8Oo", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEEptEv) +STUB("75xioEk4rX0", _ZN7WebCore13CharacterData11replaceDataEjjRKN3WTF6StringE) +STUB( + "76-riXxZEwc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEE7add_refEv) +STUB( + "760YDpfWbew", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEptEv) +STUB("766RqC9GMsw", SSLv23_client_method) +STUB("768mKI7DmSk", _ZNK7WebCore14LoaderStrategy27shouldPerformSecurityChecksEv) +STUB("769lRs6JSh8", _ZN3JSC2VM25intlNumberFormatSpaceSlowEv) +STUB("76MnEBMIXew", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_6NpUserENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB("76MpsmFlKQM", + _ZN3sce2Np9CppWebApi14SessionManager2V127ResponsePlayerSessionPlayer12setAccountIdERKm) STUB("76NVW6T2AUg", sceDtsEncFlush) +STUB( + "76NVeU9p54I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEC1Ev) STUB("76OBvrrQXUc", sceVrTrackerGetResult) +STUB( + "76OfPSmfdLI", + _ZN3sce2Np9CppWebApi14SessionManager2V127PlayerSessionForReadFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_20PlayerSessionForReadEEE) +STUB("76SwZUP7i1w", _ZN3JSC8Bindings10RootObjectD2Ev) +STUB("76TQwY6ysBg", mono_aot_System_Threading_Tasksjit_code_end) +STUB( + "76U8Y1XJ5CE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEED1Ev) +STUB("76VDSNM3z2c", + _ZN7WebCore21ContentSecurityPolicyC1EONS_3URLEPNS_27ContentSecurityPolicyClientE) +STUB( + "76ZzkysrBs8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEE6assignEPS5_PFvS7_EPNS2_10LibContextE) +STUB("76gMgZi79iU", _ZN7WebCore8SVGNames13transformAttrE) +STUB( + "76kn6lqlWm4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEE11get_deleterEv) +STUB( + "76lpLfH-Ma0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEEC1ERKSA_) +STUB("76n9U18PgpU", _ZNK3sce2np13JsonArrayImpl16itemArrayDestroyEPNS1_9ItemArrayE) +STUB( + "76wRMuipNhs", + _ZN3sce7Toolkit2NP8Matching9Interface18joinInvitedSessionEPKNS1_17MessageAttachmentEPNS1_9Utilities6FutureINS1_18SessionInformationEEEi) +STUB("76wkMtNFpLQ", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110TaskStatusEEC2EPS6_) +STUB( + "77+m4HTuY04", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("770617+VABw", _ZN7WebCore15JSDOMWindowBase25s_globalObjectMethodTableE) STUB("774Mee21wKk", sceFontGraphicsStructureDesign) +STUB("774ZHX0Z3Cc", FT_MulFix) +STUB( + "77GnmwDI5kM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEE11get_deleterEv) +STUB( + "77HS-XS5xmQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEC1EPKS8_) +STUB( + "77cAhsdJ7jk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEEaSERKSA_) +STUB( + "77cwQdsCXrE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEmmEv) +STUB("77fynmb9f78", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIfE21intrusive_ptr_sub_refEPS4_) +STUB("77gX-adHTvM", Java_com_sun_bluray_ui_FAABaseComponent_deleteHandle) +STUB( + "77j0gjW1lFI", + _ZN7WebCore19JSHTMLSelectElement18getOwnPropertySlotEPN3JSC8JSObjectEPNS1_14JSGlobalObjectENS1_12PropertyNameERNS1_12PropertySlotE) +STUB( + "77j7KdONCHU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEmmEi) +STUB( + "77lBa6KIKV0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEED2Ev) STUB("77ooWxGOIVs", scePadEnableAutoDetect) +STUB( + "77pIHINUs70", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEdeEv) +STUB("77pL1FoD4I4", __mb_cur_max) +STUB("77qd0ksTwdI", log1pl) +STUB( + "77tK42Mvf00", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEC2EPS8_) +STUB( + "77txYVo+u04", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEC1EPS7_PFvS9_EPNS2_10LibContextE) +STUB("77uWF3Z2q90", _Restore_state) +STUB("78+MUflpKSE", _ZN7WebCore16MIMETypeRegistry25isPDFOrPostScriptMIMETypeERKN3WTF6StringE) +STUB( + "786H+Wq6bx8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEC1EPS8_) +STUB("7886GhNYAHg", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError11sourceIsSetEv) +STUB("78B+yM0R6Dc", _ZN3JSC19numberOfDFGCompilesEPK15OpaqueJSContextPK13OpaqueJSValue) +STUB("78CvgJMjnVw", _ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamRankResultC2ERKS4_) +STUB("78ESYDgjRGo", _ZN3sce2Np9CppWebApi7Matches2V113ChildActivityD1Ev) +STUB("78FiHequa9U", getlogin_r) +STUB( + "78JQWsvUvpc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "78Jjoxx9Sss", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEppEv) +STUB( + "78R3yWyAjOo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEC2EPS8_) +STUB( + "78RZKc70FO4", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersD2Ev) +STUB( + "78VqIyga8P4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEC1Ev) +STUB("78W-VoyWnjE", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia11ScreenshotsEE5resetEv) +STUB("78Wi0rCCkdA", _ZN7WebCore11DisplayList8SetStateD1Ev) +STUB("78Xk34TUyIU", + _ZNK3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer14joinStateIsSetEv) +STUB("78YSUMVcvLY", WKBundlePageGetMainFrame) +STUB("78dQnGbpOnE", _ZN3sce2np9JsonValue8SetArrayEPKNS0_9JsonArrayE) +STUB("78hPgBeEJKw", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEEptEv) +STUB("78i6RsGXf4k", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V18Variable14unsetPrevValueEv) +STUB("78jTzk16L3k", bemp2sys_pesparser_destroy) +STUB( + "78mSxku5MWU", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_13PlayerSessionEEE) +STUB( + "78ogtWVAx6g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEEcvbEv) +STUB( + "78tloWhTFtk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEED1Ev) +STUB( + "78uuMm404dk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEE7add_refEv) +STUB("78xaBy7LnGw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ResponseCooperativeResultEEC1EPS6_) +STUB("78yvwepeL7U", _ZN3sce2np7RingBuf15CheckinForWriteEm) +STUB("7980b3DyBQg", uprv_decNumberToIntegralValue_67) +STUB( + "79ArUpmL3MM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEEaSERSA_) STUB("79EsKMqL-jQ", sceFsExfatfsMkfs) +STUB("79JBRSF8Q+o", _Z34sceGpuDebuggerUnregisterShaderCodePKN3sce3Gnm16PsStageRegistersE) +STUB( + "79Ja0fjHbUs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "79Jftt4Th5c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEmmEv) STUB("79M-JqvvGo0", sceNpWebApiCreateHandle) +STUB("79OE9ov2-JQ", _ZN3JSC28getHashMapBucketKeyClassInfoEv) +STUB("79UCYGe6xtQ", _ZN2GK9PlayerPSN5resetEv) STUB("79VtWg0CMd0", sceMbusDebugAcquireControlList) +STUB( + "79WZ7d5M8F4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEppEi) +STUB( + "79Yxa4WGT6M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEC1Ev) +STUB("79bfFTip+p4", + _ZN7WebCore17FrameLoaderClient38shouldForceUniversalAccessFromLocalURLERKN3WTF3URLE) +STUB( + "79d4APqf+4g", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEneERKS9_) +STUB("79k9QVa88ys", _ZN3sce2Np9CppWebApi11Matchmaking2V15ErrorD1Ev) +STUB( + "79mAp39tjes", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("79s2tnYQI6I", wcsrtombs_s) STUB("79siTMMdXfs", scePlayReadyApiStop) +STUB("79t-WkazKN0", mono_aot_Sce_Vsh_PatchCheckerClientWrapperunbox_trampoline_addresses) +STUB( + "79wG3N6AnFs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "7A-lPhBoeXM", + _ZN7WebCore21PlatformKeyboardEvent23setCurrentModifierStateEN3WTF9OptionSetINS_13PlatformEvent8ModifierEEE) +STUB("7A3PTx2lVF0", _ZN12video_parser18cMp4FFLHndlManager14unlockPlayHndlEv) +STUB( + "7A69CEF63r0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEC2Ev) +STUB("7AFSgbCZEmU", mono_aot_System_Xml_Linqplt) +STUB( + "7AHSWPv9awY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEC1ERKS7_) +STUB("7ALiNKkulaY", _ZN3sce2Np9CppWebApi7Matches2V14TaskC1EPNS1_6Common10LibContextE) +STUB( + "7ASQQbU3yDo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEEaSERKS9_) +STUB( + "7AVkwsW+BUQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEeqERKS9_) +STUB("7AX57BV1GaQ", WKViewReplyCreateNewPage) +STUB( + "7AX9qj3bqFU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEC1ERKS7_) +STUB("7AaHj1O8-gI", _ZNSt14numeric_limitsImE6digitsE) +STUB( + "7AcCMcHRu0I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE21intrusive_ptr_add_refEPS9_) +STUB("7Af2XxmI-m8", _ZNK3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead11getPlatformEv) +STUB( + "7AnVUXtKa8Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEneERKS9_) +STUB( + "7ApMEFqFUiE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEE21intrusive_ptr_add_refEPS7_) +STUB("7ApjkqlvXFY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEED1Ev) +STUB("7Arj-FS88Kk", _ZN7WebCore16HTMLInputElement13setAutoFilledEb) +STUB("7Av2fvlAxRU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V510AnnotationEEC2EPS6_) STUB("7Ayp3diNYnk", sceMusicPlayerServiceStop) +STUB( + "7B2QvBMWfWY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE8copyFromERKS9_) +STUB("7B3cQHFuTlE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE8copyFromERKS7_) +STUB("7B4DD-851M8", _ZN7WebCore21identifierToUSVStringERN3JSC9ExecStateERKNS0_10IdentifierE) STUB("7B668XL7yag", sceCesUtf16StrGetMbcsLen) +STUB("7B7QLlsyCo8", WKGeolocationPositionCreate) +STUB( + "7BA+fDn5KMc", + _ZN8meta_gen11MsvPromoter28setKeyValue_TBLAVC_DrmStringENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB("7BF+8K88NEY", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getInteger9Ev) +STUB( + "7BFGZ8lFgJU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEE7add_refEv) STUB("7BFSgwCJBYI", sceCesRefersUcsProfileIso8859_4) +STUB("7BFvD2kQfrE", _ZN7WebCore7Element16getAttributeNodeERKN3WTF12AtomicStringE) +STUB("7BG7O4dBPoM", ucnv_swap_67) +STUB("7BGUDQDJu-A", posix_spawnattr_getflags) +STUB( + "7BJ9L9m3B+A", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEeqERKS9_) +STUB( + "7BP2GkJzjUM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEC1EPS8_) +STUB("7BZO9j0ZIwE", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEEdeEv) +STUB( + "7BZROIPvMuQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEplEm) +STUB( + "7Bc6AIhycYA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEED1Ev) +STUB( + "7BeF4oIC4vA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEEC2ERKSA_) STUB("7BjZKcN+oZ4", sceNpBase64UrlGetDecodeSize) STUB("7Bt5pBC-Aco", sceSaveDataGetSaveDataMemory) +STUB("7By5faPTEho", u_parseMessage_67) +STUB("7BzI5YqoVWY", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification11RefreshRoomEE5resetEv) +STUB( + "7CEqXXMCyzw", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities33GetUsersActivitiesResponseFactory6createEPNS1_6Common10LibContextERKNS6_6VectorINS6_12IntrusivePtrINS4_14UserActivitiesEEEEEPNSA_INS4_26GetUsersActivitiesResponseEEE) +STUB( + "7CFzd6+oKrg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE10setContextEPNS2_10LibContextE) +STUB( + "7CKcZemE8Gc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEEcvbEv) +STUB("7CLRifgN2RQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession21joinableUserTypeIsSetEv) +STUB( + "7CNbhRg6z7Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEE7get_refEv) +STUB( + "7CT0at-Czuw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEED1Ev) +STUB( + "7CU0vga3sFM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEED1Ev) STUB("7CXAnIwFY3U", sceFiosCacheContainsFileRangeSync) +STUB("7CY1Q4PhKOI", _ZN7WebCore4Page28effectiveAppearanceDidChangeEbb) STUB("7D-evFZkLUk", sceNpGriefReportCdAbortRequest) +STUB( + "7D2CxKksbb4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "7D5ygYnswIs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEneERKS9_) +STUB( + "7DNlEW55cTI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEE3getEv) +STUB("7DOKh5QyHmQ", _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody13unsetLocationEv) +STUB( + "7DP7GI2l-5A", + _ZN9Inspector26LayerTreeBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("7DS-qtZoKjM", cairo_matrix_scale) +STUB("7DVasQnfPqQ", GCC_except_table400) +STUB( + "7DZnpel8GOk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE10setContextEPNS2_10LibContextE) +STUB( + "7DaEWQqe3mI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("7DeHVWFBEQY", _ZN3sce2Np9CppWebApi6Common6VectorImE7popBackEv) +STUB( + "7DepnTZTAY4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE7reserveEi) +STUB("7DgwqVzqeeo", fuse_reply_attr) +STUB("7DhQVaOVB0E", _ZN3sce2Np9CppWebApi7Matches2V118RequestTeamResultsD2Ev) +STUB( + "7DhW72gDfsE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEED1Ev) +STUB("7DiGXa4sf0o", _ZN3sce2Np9CppWebApi7Matches2V113ErrorResponseC2EPNS1_6Common10LibContextE) +STUB( + "7DiIq-ALGr4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("7DjBMqKjDio", uset_addString_67) +STUB("7Dk45PQZX1k", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification11RefreshRoomEE3getEv) +STUB("7Dr8pkZQCi0", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_11TusVariableENS2_IS4_EEEEneERKS7_) +STUB( + "7Dz6hRo73fE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEED2Ev) +STUB("7DzM2fl46gU", _ZTISt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE) +STUB("7E+h3yiZjKw", u_isIDStart) +STUB("7E-EgYhZLug", Java_java_io_ObjectStreamClass_getFieldIDs) +STUB( + "7E1-qzFvEGs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("7E3P4fyLyao", _ZN7WebCore8SVGNames11glyphRefTagE) +STUB("7E6ivBa-C9c", _ZN3sce7Toolkit2NP2V27NpUtils5IdMap8deepCopyERKS4_) +STUB( + "7E7OndXMRuA", + _ZN3sce7Toolkit2NP12ActivityFeed9Interface11getUserNewsEPKNS1_18GetUserNewsRequestEPNS1_9Utilities6FutureISt6vectorINS1_17ActivityFeedStoryENS1_15AppSTLAllocatorISA_EEEEEb) +STUB("7E98yW74AZY", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIjEdeEv) +STUB("7EAqBtDmsgw", mono_aot_Sce_Vsh_SQLiteAuxunbox_trampoline_addresses) +STUB("7EDara0g2AI", Java_java_io_FileInputStream_available0) +STUB("7EEa7rdbEss", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEC2ERS7_) +STUB( + "7EHRwn7h0uk", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfiles16unsetlanguageSetEv) +STUB( + "7ESIRbZTPZA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEmmEv) +STUB("7ETpt3V2fEU", unorm2_isNormalized) +STUB("7EU3HpgxcvY", mono_free) +STUB("7Ea1zU7f94g", mono_counter_get_name) +STUB( + "7Eh1-HfaDno", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEC1EPS6_PNS2_10LibContextE) +STUB("7EhPN5Q2Jxo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEdeEv) +STUB( + "7EiQXh2nWio", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS2_6VectorINS5_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS5_INS8_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISH_SI_EE) +STUB("7EirbE7st4E", _ZTVN10__cxxabiv117__pbase_type_infoE) +STUB("7EjM25S0-Rk", _ZN7WebCore10ScrollView17setScrollbarModesENS_13ScrollbarModeES1_bb) +STUB("7EkyOOXfgDo", + _ZN15AbstractStorage14TwitterStorage11DeserializeESt10shared_ptrINS_7ContentEEPS1_INS_4ItemEE) STUB("7EmaZ+NX7rg", sceCesUcs2ToEucJp) STUB("7EnjUtnAN+o", sceUserServiceSetVolumeForMorpheusSidetone) +STUB("7EqOpt3gTIg", WKWebsiteDataStoreIsStatisticsHasHadUserInteraction) +STUB( + "7F-xm9YJIHk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEptEv) +STUB("7F1CfFQ0lkw", uset_contains_59) +STUB("7F1EpvvXXx8", _ZN7WebCore8SVGNames16word_spacingAttrE) +STUB( + "7F59nvBkTv4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE7popBackEv) +STUB( + "7FNdSs9jNEY", + _ZThn152_N7WebCore8Document17addConsoleMessageEN3JSC13MessageSourceENS1_12MessageLevelERKN3WTF6StringEm) +STUB( + "7FO4HMO-8Xc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEED2Ev) +STUB("7FORJLFZ-fI", __ubsan_handle_sub_overflow) +STUB( + "7FPZUmPgyx0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEEaSERKSA_) +STUB("7FQrD9yTNcU", _ZN7WebCore6Editor19insertUnorderedListEv) +STUB( + "7FVTs160c0M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEEcvbEv) STUB("7FZsbyVRM4U", sceAjmBatchJobControl) +STUB( + "7Fa+BAk+yl0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEE7get_refEv) +STUB("7Fdo0eTIT9s", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi28ParameterToDeleteGameSessionD2Ev) +STUB( + "7FdzVlEiPnM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEED1Ev) +STUB("7FhFjjduNvs", mono_signature_get_desc) +STUB("7FjitE7KKm4", _Gamma_big) +STUB( + "7Fk41JIcLlo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE6resizeEj) STUB("7FpTaZpBUh0", sceShellCoreUtilGetEntitlementIdFromNpEntitlementMgr) +STUB( + "7FqF6fGODRs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEdeEv) +STUB("7FsLa3ZN-I4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEEixEm) +STUB( + "7Fy5v1rmAEg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) STUB("7FzEsuBrBhg", sceBgftServiceIntDownloadRegisterTaskByStorage) +STUB("7G+D4ck3iSI", _ZN3WTF22userPreferredLanguagesEv) +STUB("7G0+Y6lSGqw", _ZN3sce7Toolkit2NP28NpSessionDetailedInformationC2Ev) +STUB("7G7hHL9msVg", _ZN9Inspector21InspectorConsoleAgentnaEm) +STUB("7GF7CfOKTBw", _ZN3WTF13MetaAllocatorC2ERNS_4LockEmm) +STUB("7GGGQHMZ5JE", _ZN23sceMetadataReaderWriter16getNumOfMimeTypeERKSsPi) +STUB("7GLAqVxG5yI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEixEm) +STUB("7GLcx3V-PiI", _ZN7WebCore11DisplayList25DrawDotsForDocumentMarkerD0Ev) +STUB("7GP5CuWPFTI", _ZN7WebCore9HTMLNames14formactionAttrE) +STUB( + "7GQ2Maqjzjw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEEC1ERKSA_) +STUB("7GgGIxmwA6I", _FXp_ldexpx) +STUB("7GiaU8HwHlE", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOffer9terminateEv) +STUB("7GkWDMiMhFg", _ZN7WebCore8SVGNames15filterUnitsAttrE) +STUB("7GlSiMRHJKM", _ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequest8fromJsonERKNS_4Json5ValueE) +STUB("7GlkHqJMVSc", _ZN9Inspector15RemoteInspector15updateTargetMapEPNS_24RemoteControllableTargetE) +STUB( + "7Gq4fTYcvCk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEC1EPS6_PNS2_10LibContextE) +STUB( + "7GqNHHgceXk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEC1EPNS2_10LibContextE) +STUB( + "7GrER6bqFz8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEEC2ERS9_) +STUB("7Gs6i-8AUM0", utmscale_toInt64_67) STUB("7GuAkdz0C9A", scePlayReadyProfileStart) +STUB( + "7GvxbWYL8N4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("7H+asvpsk4I", _ZN3sce2Np9CppWebApi13InGameCatalog2V55Error10setMessageEPKc) STUB("7H0iTOciTLo", pthread_mutex_lock) +STUB("7H1uXJTxxD4", _ZN3sce7Toolkit2NP2V212ActivityFeed5StoryC1Ev) +STUB( + "7H6fVQJIvw4", + _ZN9Inspector18InjectedScriptBaseC2ERKN3WTF6StringEN10Deprecated12ScriptObjectEPNS_20InspectorEnvironmentE) +STUB( + "7H72EJlhanw", + _ZN8meta_gen11MsvPromoter32setKeyValue_TBLAVC_IconCodecTypeENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB("7HCQJcS95eo", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110PlayerTypeEEC1EPS6_) +STUB( + "7HEsVU0vsx4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEppEi) +STUB("7HImxy0l66w", mono_aot_System_Collectionsplt) +STUB("7HJk0CRl0Os", _ZN12video_parser5vpcom8datetime8DateTime24ConvertRtcTickToDateTimeEPm) +STUB("7HOzNJVbN0g", + _ZN3JSC16IsoSubspacePerVMC1EN3WTF8FunctionIFNS0_18SubspaceParametersERNS_2VMEEEE) STUB("7HQ4c0Hz+2Q", sceFsUfsGetExtentMap) +STUB("7HWVUdqZfGs", ubidi_getReorderingMode_67) +STUB( + "7HbdRVex2+Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEEC1ERKS9_) +STUB("7HdEC2L-nDs", _ZN3sce7Toolkit2NP2V211SharedMedia6VideosD2Ev) +STUB("7HeGitBJQkM", _ZN3JSC7Symbols16fixedPrivateNameE) +STUB("7HfHzXUNFrk", _ZN3sce7Toolkit2NP5EventC1EPKNS1_8UserInfoE) +STUB("7HhWN6K9Cd8", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi21ParameterToLeaveMatchC1ERS5_) +STUB("7Hm+Mw2EdTI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEEC2Ev) STUB("7HmaD1MaWQs", sceAgcSdmaCopyLinear) +STUB("7HoSJ30RWXk", FT_Outline_Translate) +STUB("7HsB7ixRwJ8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEEC2Ev) +STUB( + "7HuxTchuRT4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEEC1ERKSA_) +STUB( + "7HvwLP5hr9A", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEneERKS9_) +STUB("7HwcP1R63Eo", _ZNK9Inspector15RemoteInspector18clientCapabilitiesEv) +STUB( + "7HxETh-r8Ew", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEE5resetEPS7_) +STUB("7Hzd9G4LEyU", rgctx_fetch_trampoline_rgctx_53_p) +STUB("7I+E3HMa9PI", WKPageFindString) +STUB("7I+scz0D8Ig", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE6resizeEj) +STUB("7I1u2TisWQo", coil_mkstemp) +STUB("7I2Gv9s5KZo", rgctx_fetch_trampoline_rgctx_97_p) +STUB("7I2lZS0DRjA", _ZN3sce2np11NpHttpTrans13GetResultCodeEPNS0_6HandleE) +STUB( + "7I8IAovn7lA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEE7add_refEv) +STUB("7IAjXmWM4bg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEEmmEi) +STUB("7IB2cMpxifg", _ZN7WebCore11DisplayList20FillRectWithGradientD0Ev) +STUB( + "7IDdNe0C2tM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEC1Ev) +STUB("7IHg-sW3Ez8", + _ZN3sce7Toolkit2NP2V24Core23getFunctionTypeAsStringENS3_12FunctionTypeERNS3_15StringifyResultE) +STUB("7IKPBcyNsFU", _ZN7WebCore8XMLNames8baseAttrE) +STUB("7ILy1oxtHdU", __tsan_read4) +STUB("7IN+T9v1oAg", _ZNK3WTF6String28convertToUppercaseWithLocaleERKNS_10AtomStringE) +STUB("7IQ862KCLk0", _ZN15AbstractStorage12LocalContent8SeekByteEliPl) +STUB( + "7IRk89c3PwE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEmmEv) +STUB( + "7IS0UUV9434", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEEptEv) +STUB("7IS7HX6IhO4", _ZN3JSC2VM35customGetterSetterFunctionSpaceSlowEv) +STUB("7IVk0mPdQQE", uregex_utext_unescape_charAt_67) +STUB( + "7IXwER6ry8M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("7Id44jEI1VI", _ZN7WebCore9HTMLNames17aria_selectedAttrE) +STUB( + "7Ifj7Rf+8lU", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "7IgV8DBuzJQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEED2Ev) +STUB("7IhJrsLLTcg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEC1ERS7_) STUB("7IiUdURpH0k", sceUserServiceSetAppearOfflineSetting) +STUB("7IlxAwnpT4g", _ZN3JSC12StringObject21deletePropertyByIndexEPNS_6JSCellEPNS_14JSGlobalObjectEj) +STUB("7ImQAMWPZCY", + Java_com_sony_bdjstack_javax_media_controls_VideoSystem_setGraphicsPlaneOffsetValue) +STUB("7Io5FhgoXzk", unumf_resultGetAllFieldPositions_67) +STUB("7IohJqId6Mw", _ZNSt9basic_iosIwSt11char_traitsIwEED0Ev) +STUB("7IrVBOtOdZ4", __asan_stack_malloc_3) +STUB( + "7IrfjRetWn8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEneERKS9_) +STUB( + "7IrovRN3paM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("7ItP6sEP+m0", _ZN3sce2Np9CppWebApi7Matches2V117LeaveMatchRequest19unsetNpServiceLabelEv) +STUB( + "7Itnp5nXvE4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEC2Ev) +STUB("7IwKPW53RMs", _ZN7WebCore8JSDOMURL15subspaceForImplERN3JSC2VME) +STUB( + "7J2RnYdPufg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEmmEi) +STUB( + "7J33a2j38rM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEC1EPKS8_) +STUB("7J78O2z8glA", _ZN3WTF6StringC2EPKDsj) STUB("7J9IYIejSDs", sceShareUtilityAdvanceSetPlayingContent) +STUB( + "7JGet6gjHrs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEC2ERKS7_) +STUB("7JJNLG2nkY0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed4FeedEE3getEv) STUB("7JNcL38ez2s", sceMbusChangeAppModuleState) +STUB( + "7JQ7gILI4-Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEC1EPS8_) +STUB( + "7JRzFSxYfS0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEEC1Ev) +STUB( + "7JVcg4G3ehU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("7JViFoeKCC0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12RoomPingTimeEE5resetEv) +STUB("7JWHhmrDvEU", + _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody19getTicketAttributesEv) +STUB( + "7JWpvswMd8w", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEdeEv) +STUB( + "7Ja6sz-cbr0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEdeEv) STUB("7JgSJnaByIs", sceShellCoreUtilRequestShutdown) +STUB( + "7JghICrSrmk", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser9terminateEv) +STUB( + "7JmKDYGUdR4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEneERKS9_) +STUB( + "7Jn3IjOuLn4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEEC1ERKSA_) +STUB("7Jn6EsJwZN8", WKWebsiteDataStoreSetStatisticsSubframeUnderTopFrameOrigin) +STUB( + "7Jnbrbv+QNA", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearch10unsetlimitEv) STUB("7Jp3g-qTgZw", scalbln) +STUB("7JrPBRw53sM", _ZN3JSC2VM20sharedInstanceExistsEv) +STUB( + "7JvOGv8o-RY", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "7Jvqysh06Kg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("7JwKchX2P8o", _ZN15AbstractStorage14YoutubeService4StopEv) +STUB( + "7JyEaRyTrZE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE5clearEv) +STUB("7JymdqpH2yc", _ZN7WebCore9FrameView36scheduleLayerFlushAllowingThrottlingEv) +STUB("7K0aIXQSuEg", _ZN7WebCore9HTMLNames12requiredAttrE) +STUB( + "7K2oR22AcqE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEC1Ev) +STUB( + "7K6w63LYeKE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("7K9GEBT5Smg", unorm_quickCheck_59) +STUB("7KB0OLPbezI", _ZNK7WebCore10ScrollView18contentsToRootViewERKNS_8IntPointE) +STUB( + "7KH8IRw4xFo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE5clearEv) +STUB("7KQckhaDi18", curl_easy_perform) +STUB( + "7KX-AIpXLZ4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) STUB("7Kh86vJqtxw", sceNpTrophyConfigGetTrophyGroupDetails) +STUB("7KjKZ1IVMSc", _ZN3WTF10TextStream10startGroupEv) +STUB( + "7Kl0B9urzQE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEeqERKS9_) +STUB( + "7Kl41JL61KM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE3endEv) +STUB( + "7KpMdxQON90", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEEC2ERSA_) +STUB( + "7Kqo9m2ulPg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEEC2ERSA_) +STUB("7KuwdAt0kQQ", mdbg_call) +STUB("7Kw-D+awA14", mono_aot_Sce_Vsh_Sl2_Sl2Commonplt) +STUB( + "7L+LqJ0pcis", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE5eraseENS2_8IteratorIS6_EERS9_) +STUB("7L1FHOv9bkc", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadDataC2ERS5_) +STUB("7L1RtLIikSw", mono_aot_Sce_Vsh_MyGameListunwind_info) +STUB("7L5Pcyx9NOA", udatpg_open_67) STUB("7LCq4lSlmw4", sceUserServiceSetPasscode) +STUB( + "7LESPmZegaI", + _ZN9Inspector21InspectorRuntimeAgent14callFunctionOnERN3WTF6StringERKS2_S5_PKNS1_8JSONImpl5ArrayEPKbSB_SB_SB_RNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISF_EEEERNS1_8OptionalIbEE) +STUB("7LFNG4CO1-s", + _ZNK3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends9hasoffsetEv) +STUB("7LNlKUwxeu4", _ZN3sce7Toolkit2NP2V27Session12SessionImageD2Ev) +STUB("7LNuwhEM700", ugender_getInstance_67) +STUB( + "7LPhQCbr3vs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE6resizeEj) +STUB("7LRQKgIIFRM", monoeg_g_list_insert_before) +STUB("7LaBdIC2qEU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEE3getEv) +STUB("7LaChig9ovU", WKNotificationManagerSetProvider) +STUB("7LcZWt2aJoc", _ZN3sce7Toolkit2NP28NpSessionDetailedInformationD2Ev) STUB("7Lcfo8SmpsU", sceNgs2GeomResetListenerParam) +STUB( + "7LcgqxYwxSY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEC2Ev) +STUB("7LftIjvZ5SE", _ZN3NTF21ResourceRequestLoggerD0Ev) +STUB( + "7Lj2ga9vDCM", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetInteger1Ev) +STUB("7Lj9Qgh39Jk", WKAXObjectURL) +STUB( + "7Lo8eAYfTsQ", + _ZN9Inspector14InjectedScript19evaluateOnCallFrameERN3WTF6StringEN3JSC7JSValueERKS2_S7_S7_bbbbRNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISB_EEEERNS1_8OptionalIbEERNSG_IiEE) +STUB("7Lsstfqdsv4", _GLOBAL__sub_I_iostream.cpp) +STUB("7LttsVl3WAg", _ZN7WebCore9HTMLNames7sampTagE) +STUB("7LvuNzXfACY", coil_registry_get_str) +STUB("7Ly52zaL44Q", asin) STUB("7M+1UFqWOAI", sceVideodec2GetHevcPictureInfo) +STUB( + "7M0moYHVsGQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEE11get_deleterEv) +STUB( + "7M3+xdUFQnA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEE7add_refEv) +STUB( + "7MGP-Ud6Nms", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEaSERKS7_) +STUB( + "7MIinVbUNew", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "7MORNcEQ4d4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEC1ERKS7_) +STUB("7MSYSwjYHsM", _ZN7WebCore9HTMLNames15bordercolorAttrE) +STUB( + "7MZoAs2w8Ag", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEE11get_deleterEv) +STUB( + "7Mb7ZVzDZbg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEcvbEv) +STUB( + "7McbJzLttL4", + _ZN3JSC8Bindings13RuntimeObject19getOwnPropertyNamesEPNS_8JSObjectEPNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("7Me766pFw4k", mono_aot_Sce_Vsh_Np_AuCheckunbox_trampolines) +STUB("7MeYabjRcQo", _ZNK7WebCore6Quirks47shouldIgnoreContentObservationForSyntheticClickEb) +STUB("7MgpqYYA8eA", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16UnlockedTrophiesEE19setCustomReturnCodeEi) STUB("7MlFRuRpW+4", sceNpUniversalDataSystemIntDestroyRecordObject) STUB("7Mp6qE235Qc", sceSlimglCompositorSetIndirectCanvasCommand) +STUB("7MrgNVLFbAc", il2cpp_runtime_invoke) +STUB("7MsYv4D1Ang", _ZNK3sce3Xml3Dom8Document7getTextENS1_6NodeIdE) +STUB("7Muy2w1kJzc", + _ZN7WebCore14MicrotaskQueue6appendEOSt10unique_ptrINS_13EventLoopTaskESt14default_deleteIS2_EE) +STUB( + "7N4izqijO0U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "7N95rKdZmb0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEED1Ev) +STUB( + "7NFlvm1gidk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEED1Ev) +STUB( + "7NJX3t6Z9Vs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE7popBackEv) +STUB("7NL6s-ybpfg", _ZN7WebCore18PlatformTimeRangesnwEm) +STUB( + "7NLSmEb0TRU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("7NQGsY7VY3c", _ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1ERKSt8_Locinfom) +STUB("7NTjDQ+gR7M", internal_memalign) STUB("7NYEzJ9SJbM", sceAudio3dAudioOutOutput) +STUB( + "7NYy6otja3s", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEEaSERKSC_) +STUB("7NdcD91mdEY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEC2EPS8_) +STUB("7Nm1o42CbJ8", eglGetCurrentContext) +STUB( + "7Nnr8nKU2sU", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities21UserActivitiesFactory7destroyEPNS4_14UserActivitiesE) +STUB("7Nsc1Qh-+iE", ucol_getUnsafeSet_67) +STUB( + "7NwMkfM0D84", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS5_INS7_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB( + "7NwV-XSi-oM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE8pushBackERKS8_) +STUB("7NwggrWJ5cA", __sys_regmgr_call) STUB("7NxubT1-VV4", sceCompositorReserveCommandBuffer) +STUB("7NzOZjxbR7Q", _ZN3sce7Toolkit2NP2V27Session7Request6Create16SESSION_NAME_LENE) +STUB( + "7O+wAMEtUM8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEixEm) +STUB("7O-vjsHecbY", _LXp_ldexpx) +STUB("7O0JI1X9bYY", _ZN3JSC7Symbols41putStringIteratorInternalFieldPrivateNameE) STUB("7O6DI5IiOxQ", sceSlimglClientMonitorServerStart) +STUB("7OCTkL2oWyg", _ZNSt6_Mutex7_UnlockEv) +STUB("7OD+b+1FcDY", _ZN7WebCore11DisplayList9ClearRectD1Ev) +STUB("7OGapdx1hQM", _ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayerD1Ev) +STUB( + "7OLbwC+lF8o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("7ONbnvN2brw", _ZN3sce7Toolkit2NP2V23TUS7Request7GetDataD1Ev) +STUB("7OO0uCJWILQ", _ZTIPDh) +STUB( + "7OTmEmevdEo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("7OU+l3x91UA", ucase_getCaseLocale_67) +STUB("7Oa6o6aCtYw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEEaSERKS7_) +STUB("7Oc5AygU+9Q", WKImeEventRelease) +STUB( + "7Ogfar5Ba6Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEE11release_refEv) +STUB("7OiI1ObT1QU", _ZN3sce2np11NpHttpTransD1Ev) +STUB( + "7OjyRUcvNP4", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) STUB("7OlZkMu6Nbg", scePerfPmcSelectEvent) +STUB("7OotxFIdhy8", _ZN3sce2np10JsonNumber3SetEPKc) +STUB("7OpNDDNMJyo", __sys_dl_get_metadata) +STUB("7OrP2bdX0Pc", monoeg_g_ptr_array_remove_index_fast) +STUB( + "7OuvCjt89+w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("7P1Wm-5KgAY", _ZNSt12domain_errorD1Ev) +STUB("7P1p4DxMskU", mono_aot_System_ComponentModel_DataAnnotationsunwind_info) +STUB("7P4rQ1juJAk", mono_aot_Sce_Vsh_EventServiceWrapperunwind_info) +STUB("7PL-muel3rE", + _ZN3sce7Toolkit2NP2V211SocialMedia7Request21PostMessageToFacebook17MAX_USER_TEXT_LENE) +STUB( + "7PTSIbh5Wns", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEppEi) +STUB( + "7PY+Hq4LjJM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("7Pc0nOTw8po", verrc) +STUB("7PkSz+qnTto", fsetpos) +STUB("7PlnoccwZfQ", + _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchDetail10getmatchIdEv) +STUB("7Psx1DlAyE4", getprogname) +STUB("7PxmvOEX3oc", wctomb) +STUB("7PyS1fOX8DA", rgctx_fetch_trampoline_mrgctx_102) STUB("7Q-U-8yN1Hk", sceKernelIccIndicatorStandbyBoot) +STUB("7Q-sEvjg7n8", uregion_getRegionCode_67) +STUB( + "7Q1e7y+XOis", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEED1Ev) +STUB( + "7Q1vcZ49zS8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEC1EPS8_) +STUB("7Q8puVvGDqI", _ZN3sce7Toolkit2NP2V26Friend7FriendsC1ERKS4_) STUB("7QA+NMGjKK4", sceLibcFopenWithFD) +STUB("7QCJi-znzGY", mono_aot_Sce_Vsh_VideoServiceWrapperplt_end) +STUB("7QDa1ULaJ7k", _ZN7WebCore4Path12closeSubpathEv) STUB("7QDrajf3MxI", scePlayReadyLicenseAcqProcessAckResponse) +STUB( + "7QKGzl4lW6k", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEptEv) STUB("7QLrixwVHcU", sceRemoteplayProhibitStreaming) +STUB( + "7QNeLcaNTSw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "7QRqLhCABIo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEixEm) +STUB("7QTMSPEe1lw", _ZNK7WebCore11MediaPlayer24shouldUsePersistentCacheEv) +STUB("7QVVkqjdGc0", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku8getPriceEv) +STUB("7QZ7mYR+qgU", mono_aot_Sce_Vsh_PartyCommonplt_end) STUB("7QZtURYnXG4", sceShareSetContentParam) +STUB("7Qe-v+V94Ic", RSA_flags) +STUB("7QgvTqUGFlU", SSL_getSessionInfo) +STUB( + "7Qhud0z+5o0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("7QoLN1BNvco", mono_aot_platformplt) STUB("7QoTYzVuzto", sceVideoRecordingOpen) +STUB("7Qq+PAPNTUM", _ZNK3sce2Np9CppWebApi14SessionManager2V114Representative11getOnlineIdEv) +STUB("7QtnLq2iAsQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEED2Ev) +STUB("7QxQ+HfCy3M", _ZN3sce2np9JsonArrayD0Ev) +STUB( + "7R2isan9UJg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("7R65C8WTc9E", _ZN3sce2Np9CppWebApi7Matches2V114ResponseMemberC2EPNS1_6Common10LibContextE) +STUB("7R83-mIE4ik", WKViewAccessibilityRootObject) +STUB( + "7R9-UbfWFYo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE6resizeEj) +STUB("7RBN7nKypLc", SHA1) STUB("7RBSTKGrmDA", sceSslGetNameEntryInfo) +STUB("7REoZxCEojI", WKRunLoopRunMain) +STUB("7RFJWA3zTqQ", mono_mlist_last) +STUB( + "7RM8P5SDhQI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "7RMXisOvuPE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEneERKS9_) +STUB("7RUwcMgn2J4", png_set_gamma) +STUB("7RWO+H8RWno", uhash_init_67) +STUB("7RYfALbinDw", tolow_tab) +STUB("7RZABO0cMFI", _ZN3WTF17StringPrintStream9toCStringEv) +STUB( + "7RcsGZeTYFc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEED2Ev) +STUB( + "7ReIoMc02cg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("7RnkdybfYiQ", _ZN15AbstractStorage12Serializable12readExternalESt10shared_ptrINS_7ContentEE) +STUB("7RoTnYEHEFw", _ZN7WebCore18JSHTMLVideoElementD2Ev) +STUB("7RpkbtIp-o4", _ZNK7WebCore12SettingsBase18standardFontFamilyE11UScriptCode) +STUB("7Rsq06tRYkc", WKViewGetViewScaleFactor) +STUB("7RvDjfy4gUA", tls_read) +STUB( + "7S+nI3cAT+o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("7S1e4l2WT+4", _ZN3WTF14FileSystemImpl14MappedFileDataC1ERKNS_6StringENS0_14MappedFileModeERb) +STUB("7S5wcWqncYU", _ZN7WebCore22MutableStylePropertiesD1Ev) +STUB("7S61OCMFZLU", _CESU8Data_67) STUB("7S6OwXEoTmk", sceCustomMusicCoreBgmOpen2) +STUB( + "7S8nSDhXnCE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEeqERKS9_) STUB("7SE4sjhlOCI", sceUserServiceSetIsFakePlus) +STUB("7SEHgnHRau0", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V224TestForProfanityResponseC2EPNS1_6Common10LibContextE) +STUB("7SFwZ9sFGhE", mono_lock_free_queue_dequeue) +STUB( + "7SLAt3NeN4E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEE3getEv) +STUB("7SMZl95BBCk", _ZN7WebCore4Page12setSessionIDEN3PAL9SessionIDE) +STUB( + "7SOKBz1srl8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEEcvbEv) STUB("7SOVShNUDXo", sceMusicPlayerServiceEndTransaction) +STUB("7SSGacw8bLM", _ZN7WebCore12UTF8EncodingEv) +STUB( + "7SSKavnQxHs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEED2Ev) +STUB( + "7SSUAe-fAOo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEC2Ev) +STUB( + "7SU2RIb-lf8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "7SUO3dw1zOY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("7SXNu+0KBYQ", wcstof) +STUB("7SY055G7-LE", _ZN7WebCore8Document6setDirERKN3WTF12AtomicStringE) +STUB("7Sd1KuCKyww", _ZNK7WebCore16DocumentFragment14getElementByIdERKN3WTF10AtomStringE) +STUB("7SgmPPNv3lE", _ZN3sce2Np9CppWebApi6Common9RefObjectD1Ev) +STUB("7ShPrvjazws", curl_multi_remove_handle) +STUB("7SmqB-eXB+4", SpeechClose) +STUB( + "7SnCndqxn1E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEED1Ev) +STUB("7SpuXhuQ4xs", _ZNK9Inspector15ScriptCallStack19buildInspectorArrayEv) +STUB( + "7Sq-9ceoq8g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEC2Ev) +STUB( + "7SrwHufcZ-I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE7reserveEi) STUB("7SuMUlN7Q6I", sceNpScoreGetFriendsRankingAsync) +STUB( + "7Suj3-eD7gc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "7Sz3j3t26jo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEED2Ev) +STUB( + "7T2NcREE1iw", + _ZN7WebCore11EventTarget27addEventListenerForBindingsERKN3WTF10AtomStringEONS1_6RefPtrINS_13EventListenerENS1_13DumbPtrTraitsIS6_EEEEONS1_7VariantIJNS0_23AddEventListenerOptionsEbEEE) +STUB( + "7T8oTGuCpAA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEmmEv) +STUB( + "7T9aUIFPv4g", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEneERKS9_) +STUB("7TCfNv4qszM", _ZN7WebCore6WidgetC2EPv) +STUB( + "7TI97RnYV9c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE21intrusive_ptr_sub_refEPS9_) +STUB("7TIcrP513IM", _Tls_setup__Mbcurmax) +STUB( + "7TK4l8eixXQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("7TKQXURk25w", _ZN3sce7Toolkit2NP2V28Matching7Request9GetWorldsC2Ev) +STUB("7TKreizczvg", goby_FreeLicenseInfo) +STUB("7TNZJDxcW0A", _ZN3sce7Toolkit2NP2V210Wordfilter16SanitizedCommentC1ERKS4_) +STUB("7TSQcd66UoE", _ZNK7WebCore17FrameLoaderClient29overrideContentSecurityPolicyEv) +STUB("7TVIyXDASFY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEE11get_deleterEv) +STUB("7TW4UgJjwJ8", _ZTIDi) +STUB("7TaiaYkvLFo", AacsDecrypt) +STUB( + "7TbWc6AWyMk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEmmEi) +STUB( + "7TcQOtJN3hU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE3endEv) +STUB( + "7TcbCkGU21g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEC2Ev) +STUB( + "7Te1eeupXxQ", + _ZN3sce7Toolkit2NP2V26Friend15getBlockedUsersERKNS3_7Request15GetBlockedUsersEPNS2_4Core8ResponseINS3_12BlockedUsersEEE) +STUB( + "7TfYabYQ2Pc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEE7get_refEv) +STUB("7ThCUjHhoqE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V115CompetitionTypeEEeqERKS7_) +STUB( + "7TmSyinE3HI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEptEv) +STUB( + "7Trx4iXcFMc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "7U+IjZL-SB0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE7reserveEi) +STUB( + "7U+WFbh70Fg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEEC2ERSA_) +STUB( + "7U-wmkRgWXA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE3endEv) +STUB("7U1GL2vgUtA", SwCtrlSinkStreamFinalize) +STUB( + "7U1JRPo1Juk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEC1Ev) +STUB("7U1sopoeo0Q", _ZNK9Inspector15ScriptCallFrame8sourceIDEv) +STUB( + "7U8kblyWtBE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEE7add_refEv) +STUB("7U8ohGrno28", inflateInit_) +STUB( + "7UDQ5gdVKOg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("7UF34iKj8T0", _ZN3sce7Toolkit2NP2V210Tournament7Request10GetBracketC1Ev) +STUB( + "7UOjEcLbh5M", + _ZN3sce2Np9CppWebApi7Matches2V120ResponseMatchResults20setCompetitiveResultERKNS1_6Common12IntrusivePtrINS3_25ResponseCompetitiveResultEEE) +STUB( + "7UPPy8jb-Gc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEE7add_refEv) +STUB("7UTSPEnobtk", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEEaSERKS6_) +STUB( + "7UV7dzkdgUI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEC2EPKS8_) +STUB( + "7UXvuGOy7O8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEE11get_deleterEv) +STUB( + "7UZeFyA1BCo", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC1Ev) +STUB("7UaiJm7sZ+k", _ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_13FriendsOfUserEE8max_sizeEv) +STUB("7UdG6FtbrJg", _ZN7WebCore21InspectorFrontendHostD2Ev) +STUB("7UkAZOxltU8", _Z32sceGpuDebuggerRegisterShaderCodePKN3sce3Gnm16GsStageRegistersEjPKc) +STUB("7UkDkleTd3I", _ZN7WebCore23MediaQueryParserContextC2ERKNS_8DocumentE) STUB("7UnZ7b3kkvM", sceHttpCacheSetData) +STUB("7Uoplf70Yus", _ZN7WebCore15ActiveDOMObject4stopEv) +STUB( + "7UrKnj9MFIo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEC1Ev) STUB("7UsdDOEvjlk", sceAudioOutSetSystemDebugState) STUB("7UyNPNS3nUQ", sceCesRefersUcsProfileIso8859_6) +STUB("7UyS4ijxz2A", _ZN3sce7Toolkit2NP23ChallengeGetDataRequestC1Ev) +STUB( + "7V+E9TgF0h4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEE7add_refEv) +STUB("7V-BoL+qtH0", mono_aot_Sce_Vsh_Accessor_Db_Notifyunbox_trampoline_addresses) +STUB( + "7V4oAYiehZU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEEC1ERSA_) +STUB("7VBlVFPhir4", _ZN7WebCore13MIMETypeCacheD0Ev) STUB("7VGfMerK6m0", sceUsbdFillControlTransfer) +STUB( + "7VHfcK1Rroc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE5clearEv) +STUB( + "7VLG21DccP4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEmmEi) +STUB("7VPIYFpwU2A", _ZdlPvmRKSt9nothrow_t) +STUB("7VPOusObMVg", mono_aot_mscorlibplt_end) +STUB("7VRfkz22vPk", _ZNSt13basic_ostreamIwSt11char_traitsIwEED0Ev) STUB("7VSZJxxcTL8", sceVideoOutSysGetBus) +STUB( + "7VTSuSvOFe0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEmmEv) +STUB( + "7VWT6zWBd7E", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB("7VYFuUMRvuo", _ZN3JSC17DeferredWorkTimer10runRunLoopEv) +STUB("7VZMYA3yKL8", _ZN3sce7Toolkit2NP2V28Matching6WorldsC1ERKS4_) +STUB( + "7VaYUjPgXFk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEED2Ev) +STUB( + "7Vc7GU-alPA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEixEm) +STUB("7VjtaYFiWuk", _ZN7WebCore9HTMLNames17xhtmlNamespaceURIE) +STUB( + "7Vk5pJM1DQE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEEaSERKSA_) +STUB("7VkVu32ipPk", _ZN9Inspector17ScriptDebugServer22exceptionOrCaughtValueEPN3JSC9ExecStateE) +STUB("7Vkj3MeFml8", _ZN7WebCore16convertToIntegerIjEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB("7VnJtqQSwUU", FT_List_Insert) +STUB("7VnK1K-gAEU", _ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEEC1EPNS2_10LibContextE) +STUB("7VsXAYFzdMY", AnnotateCondVarSignalAll) STUB("7VxUuGJJD5M", sceDebugGetSyncObjectList) +STUB("7W4jJ-XhqMY", _ZN3sce7Toolkit2NP2V28Commerce8CategoryaSERKS4_) +STUB("7W6jR0LyiSg", _ZN3sce3pss5orbis9framework8PsmEvent4PostERKNS2_12PsmEventDataE) +STUB( + "7W8oN7yV2tU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEdeEv) +STUB("7W9czm7cuNg", _ZN3JSC4Heap7protectENS_7JSValueE) STUB("7WBGJ8aph1M", sceRegMgrMemset) +STUB( + "7WG7XNqnX84", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V128SetMultiVariablesRequestBody6toJsonERNS_4Json5ValueEb) +STUB( + "7WIAgsP0h3o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE8pushBackERKS8_) +STUB( + "7WIhb86+Kl4", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi27ParameterToLeaveGameSession9terminateEv) STUB("7WPj4KCF3D8", sceNpTrophySystemGetTitleIcon) +STUB("7WRyyyXDzrs", _ZStL5wferr) +STUB( + "7WT0x5ORCDU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "7WUkWz9KNio", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE4sizeEv) +STUB( + "7WVWe9FlOnQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("7WVXLziXGtM", _ZN3WTF13printInternalERNS_11PrintStreamEt) +STUB("7Wb0Jv2wCO0", sqlite3_bind_int) STUB("7WcNoAI9Zcw", sceHttpsFreeCaList) +STUB( + "7Wdv8AhjnM8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) STUB("7Wes8MVwuoM", sceUserServiceGetPbtcWednesdayHoursStart) +STUB("7WhyhrCakMs", mono_aot_Sce_Vsh_MorpheusUpdWrapperjit_got) +STUB("7WjTCZdhnXE", _ZN9Inspector27LayerTreeFrontendDispatcherC2ERNS_14FrontendRouterE) +STUB("7WoI+lVawlc", seekdir) +STUB("7WtKsgXCtAc", u_getIntPropertyMinValue_67) +STUB( + "7WtPxpf4Mw0", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V122LastUpdatedUserFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_15LastUpdatedUserEEE) +STUB( + "7WyijPTR0eE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEEaSERS9_) +STUB("7WypClyQwoI", _ZN3JSC2VM18withScopeSpaceSlowEv) +STUB( + "7WzshjFte0s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEEC1ERSA_) +STUB( + "7X-9Zw4xh80", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE3endEv) +STUB( + "7X0JNbR4Uzs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEeqERKS9_) +STUB( + "7X3IY0hLwcs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "7X3wSywr7+0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE8pushBackERKS8_) +STUB( + "7X4NgwKIpj8", + _ZN7WebCore22StorageEventDispatcher26dispatchLocalStorageEventsERKN3WTF6StringES4_S4_RKNS_18SecurityOriginDataEPNS_5FrameE) +STUB("7X7jTgWpNoA", udata_openSwapper_67) +STUB( + "7XBvp+S+fQE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEC1Ev) STUB("7XEv6NnznWw", scanf) STUB("7XIlJQQZ2fg", sceUserServiceSetPbtcMondayHoursStart) +STUB( + "7XPERGGhQXo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEptEv) +STUB( + "7XPkxegnzUo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE7popBackEv) STUB("7XRH1CIfNpI", sceGnmSqttSetHiWater) +STUB( + "7XRIvNpwfNY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE5beginEv) +STUB("7XRV7tj5XDo", _ZN7WebCore8Settings33setImagesEnabledInspectorOverrideEN3WTF8OptionalIbEE) +STUB("7XV6f9Fjnx0", uprv_getRawUTCtime) +STUB( + "7XaTs2Za-nI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEEC2ERSA_) +STUB("7Xaz7BxcERA", SSLv23_server_method) +STUB("7Xc95EMbk9I", _ZN3sce4Json11s_initparamE) +STUB("7XdtNG2s9MY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEC2ERKS7_) +STUB("7Xdw2-E1v4c", _ZNK14OpaqueJSString6stringEv) +STUB( + "7XgqaCx-ZpA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE5beginEv) +STUB( + "7XiaU7RH4b4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEC2Ev) STUB("7Xl257M4VNI", pthread_equal) +STUB( + "7XlYWsbObzs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEC1Ev) +STUB( + "7Xobedxkv2A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE21intrusive_ptr_add_refEPS9_) +STUB("7XqmeX6Pros", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEC1ERKS7_) +STUB( + "7XqwuTnyKLM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("7XrDmP4anuw", _ZTVN9Inspector40ApplicationCacheBackendDispatcherHandlerE) +STUB("7XuFvMnZioo", JSEndProfiling) +STUB("7XuHBUHOwkA", _ZN3sce2Np9CppWebApi7Matches2V122RequestMatchStatisticsD1Ev) +STUB("7XwLpg3AkWQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEED2Ev) +STUB("7XxZiT7khnY", _ZN3NTF17URLRequestHttpJobD2Ev) STUB("7Y4364GBras", sceHttpSetCookieMaxSize) +STUB("7Y4kvv8g0P8", mono_aot_ReactNative_PUIjit_code_start) +STUB( + "7Y6vFRWAIXA", + _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_13PlayerForReadEEEEE) +STUB("7YAFidwFyxs", + _ZN3JSC4Yarr11YarrPatternC2ERKN3WTF6StringENS2_9OptionSetINS0_5FlagsEEERNS0_9ErrorCodeE) +STUB( + "7YBQIzCCgmA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEmmEi) +STUB( + "7YCtS3ndotE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE21intrusive_ptr_add_refEPS9_) +STUB("7YGj8EFGdm4", + _ZN7WebCore15StringTruncator14centerTruncateERKN3WTF6StringEfRKNS_11FontCascadeERfbf) +STUB( + "7YKG06lA2aA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE21intrusive_ptr_add_refEPS7_) +STUB("7YKK3bU5bwc", _ZN7WebCore7Element23webkitRequestFullscreenEv) +STUB("7YMs1mf-FgY", + _ZN7WebCore20DecodeOrderSampleMap24findSampleAfterDecodeKeyERKSt4pairIN3WTF9MediaTimeES3_E) +STUB("7YNtGn8Fecw", _ZNK7WebCore6Editor16hasBidiSelectionEv) +STUB("7YRt0yuwLOs", _ZN7WebCore8SVGNames16foreignObjectTagE) +STUB( + "7YVIBhbchmo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEptEv) STUB("7YW9rloMLYo", sceVdecCoreMapMemoryBlock) +STUB("7YYJp6PgNI4", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11EntitlementEE8allocateEmPKv) +STUB("7YYimDe4DIQ", _ZN3sce7Toolkit2NP2V29Messaging7Request20GameDataMessageImageC1Ev) +STUB("7Ydu1Ne53A0", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V110Reputation9getGlobalEv) +STUB( + "7YitIzYFv7w", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE5getIdEv) +STUB("7Yjm0aibBRo", _ZN7WebCore9FrameView42setNeedsLayoutAfterViewConfigurationChangeEv) +STUB("7YkI001aHmw", _ZNK7WebCore18JSHTMLVideoElement7wrappedEv) STUB("7YmdciXqdyw", sceDtcpIpGetErrorCode) +STUB( + "7YnIa6Ln+vc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE3endEv) +STUB( + "7YnbdCh40DY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE5beginEv) +STUB( + "7YoxUmDxwjE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEED2Ev) +STUB("7YscO42a7g0", Java_com_oracle_bluray_ui_FAAComponentHelper_deleteHandle) +STUB("7Yt-ZIgpucA", ulist_next_keyword_value) +STUB("7YuW91JxnbY", _ZN7WebCore17FrameLoaderClient24isEmptyFrameLoaderClientEv) +STUB( + "7YuwyY8neN0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEEdeEv) +STUB( + "7Ywiozww4gM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEC1EPNS2_10LibContextE) +STUB("7YzKMo-06yk", _ULx86_64_access_fpreg) +STUB( + "7Z0AL6Ob8O0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEE11get_deleterEv) STUB("7Z1hhsEmkQU", sceNetBandwidthControlSetPolicy) +STUB("7Z2LU5zctU4", mono_btls_x509_crl_get_next_update) +STUB( + "7Z2p5jMbqh8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("7Z6ph1LRUTM", _ZN3JSC19iteratorForIterableEPNS_9ExecStateENS_7JSValueE) +STUB( + "7ZCkjXWu60k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEmmEv) +STUB( + "7ZDsfRn4GKA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEEptEv) +STUB( + "7ZEjhIfdMQg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEmmEi) +STUB("7ZFG6Tyd1IY", _ZN3sce7Toolkit2NP7NetInfo9Interface19psnLoginDialogStartEi) +STUB("7ZFy2m9rc5A", _reclaim_telldir) STUB("7ZGS7F0Nl4E", sceMoveTrackerRecordStop) +STUB("7ZGiKfb37l0", _ZN7WebCore11MediaPlayer27applicationWillResignActiveEv) +STUB( + "7ZI76UdA308", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE6resizeEj) +STUB("7ZLWyP2SFLo", _ZN3sce7Toolkit2NP20JoinNpSessionRequestC2Ev) +STUB( + "7ZOQ9Qq6iPs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("7ZOWt4eQzMs", _ZN9Inspector21InjectedScriptManager19injectedScriptForIdEi) +STUB("7ZTLaTyAWFA", WKPageSetEnableVerticalRubberBanding) +STUB( + "7ZXP4MhOzA0", + _ZNK3sce2Np9CppWebApi14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBody6toJsonERNS_4Json5ValueEb) +STUB( + "7Ze2ptB+4cQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEC1EPKS8_) +STUB( + "7Zif-WeDDgk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEE5resetEPS9_) +STUB("7Zihjr8aD+Y", _ZN3WTF20ObjectIdentifierBase26generateIdentifierInternalEv) +STUB("7Zjk4bx+FQI", _gm_) STUB("7ZlAakEf0Qg", pthread_attr_setinheritsched) +STUB("7ZmeGHyM6ew", _ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED2Ev) +STUB("7ZoDvK2OUeA", _ZN3sce7Toolkit2NP2V212NetworkUtils12BandwithInfoaSERKS4_) +STUB("7ZqXJAwiDUM", _ZN3JSC21loadAndEvaluateModuleEPNS_9ExecStateERKNS_10SourceCodeENS_7JSValueE) +STUB( + "7Zr4JmzumUg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEE5resetEPS7_) +STUB("7ZtJ9iCsIsg", _ZN7WebCore10FileSystem10fileExistsERKN3WTF6StringE) +STUB("7ZxRBz8a270", _ZNK7WebCore21HTMLFrameOwnerElement15contentDocumentEv) +STUB( + "7ZxeJGARy+8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEEcvbEv) +STUB("7a+UHoaob7g", mono_threads_attach_coop) +STUB("7a0jXJtqx7A", __sanitizer_cov_module_init) +STUB( + "7a5UIhWjl58", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE3endEv) +STUB( + "7a7pIpaaEfs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB( + "7aF2OuEoiig", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getInteger6Ev) +STUB("7aFQ9x9t+HQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE3endEv) STUB("7aGTPfrqT9s", scePngEncCreate) +STUB("7aH8TzZw9d8", ZIP_Close) +STUB( + "7aK0rxPcBFw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEixEm) +STUB("7aQeX4x1mJQ", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody9setOffsetERKi) +STUB("7aQnOMQKj8w", _ZN7WebCore8PositionC1EPNS_4NodeEjNS0_25LegacyEditingPositionFlagE) +STUB("7aRXAJjjs8U", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V223FilterProfanityResponse12unsetMessageEv) +STUB("7aRdBviSzcw", g_log_set_always_fatal) +STUB("7aRf4VQx-nw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEED1Ev) +STUB("7aTlLYMr6no", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEE11release_refEv) +STUB( + "7aWjpLR72-I", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEC2Ev) +STUB("7adKrsNyrRQ", JSScriptRelease) +STUB( + "7afrZcFOD7c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEppEi) +STUB( + "7afxfyN8iqs", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE21intrusive_ptr_sub_refEPS7_) +STUB("7ahPTEg3j9M", _ZN7WebCore22ResourceLoadStatistics13primaryDomainEN3WTF10StringViewE) +STUB( + "7alvZI-KLQU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEmmEi) +STUB( + "7arWuz3NU4A", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB( + "7aruTRHEyQ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) STUB("7as0CjXW1B8", sceHmdReprojectionSetUserEventStart) +STUB( + "7au5moeRlPU", + _ZN7WebCore18PlatformPasteboard8getTypesERN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB( + "7auLIt6+EQU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("7b1SeNVnTGw", mono_aot_I18N_Otherjit_code_start) +STUB("7b1oczmgZGY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12RangeOfRanksEED2Ev) +STUB("7b4WWdcrGOg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEEC1Ev) +STUB("7b5y1XSa+KQ", _ZN3sce2npneERKNS0_13NpTitleSecretERK16SceNpTitleSecret) +STUB("7b5yZy8-SpE", mono_aot_System_Reactive_Interfacesunwind_info) +STUB("7b6rOT08JYA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE21intrusive_ptr_add_refEPS7_) +STUB("7b8f-gHC5pE", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119SubtaskAvailabilityEEmmEv) +STUB( + "7bDjDWnEh9E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE5emptyEv) +STUB("7bDnXvHVSY4", _ZN7WebCore8SVGNames17preserveAlphaAttrE) +STUB("7bL9hbEC1w0", WKAccessibilityCanUseSecondaryAXThread) STUB("7bOLX66Iz-U", sceAppContentTemporaryDataMount) +STUB("7bPTcZme3AE", u_memmove_67) +STUB("7bQhjofI9Hk", _ZNK7WebCore7Element10screenRectEv) +STUB( + "7bS1ila1Vp0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEC2EPKS8_) STUB("7bSiBI8KqBw", sceDepthSetPostFilterParameter) +STUB("7bTJr1njnSc", _ZN7WebCore23HTMLTableSectionElement9insertRowEi) +STUB("7bV0114o7Pk", _ZN7WebCore8Document17queryCommandValueERKN3WTF6StringE) +STUB("7bdq6CTw01U", _ZN3JSC15createEvalErrorEPNS_9ExecStateERKN3WTF6StringE) +STUB( + "7bito6DevR0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEC2ERS7_) +STUB("7bqPJYmh+68", rgctx_fetch_trampoline_mrgctx_13_p) +STUB("7brRfHVVAlI", _ZNSt7collateIcE2idE) +STUB( + "7bs9zCgEaVc", + _ZN3sce7Toolkit2NP10Challenges9Interface7getItemEPKNS1_23ChallengeGetItemRequestEPNS1_9Utilities6FutureINS1_20ChallengeRecvDetailsEEEb) STUB("7bu++dneYUU", sceVoiceChatRequestDeleteGameSessionVoiceChatChannel) +STUB( + "7bvOktuDNGY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "7bwCYaEqlSc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "7bx8g-owglQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("7bzUdBtIQhE", _ZThn8_N3sce2np10MemoryFileD0Ev) +STUB("7c+R0fw2RmQ", _ULx86_64_dwarf_extract_proc_info_from_fde) +STUB("7c-cdEImR7I", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product23unsetContentDescriptorsEv) +STUB( + "7c8D3WqExYg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEmmEv) +STUB("7cGuv-8-6jE", WKPageHandleImeEvent) +STUB( + "7cHwTqd8k+4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEneERKS9_) +STUB("7cIS2cFG3PE", FT_Stroker_ExportBorder) +STUB("7cPuvrYJZeE", _ZN3sce7Toolkit2NP19RangeOfRanksRequestC1Ev) +STUB( + "7cSfH87GrRQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB( + "7cT+aXHKB9s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEE5resetEPS9_) STUB("7cTc7seJLfQ", sceSystemServiceKillLocalProcessForPsmKit) +STUB("7cVMwHmN308", ft_glyphslot_free_bitmap) +STUB("7cbPVu7oATY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ChildActivityAvailabilityEEneERKS7_) +STUB("7cbzYk001wI", _ZN7WebCore8SVGNames14feCompositeTagE) +STUB( + "7cd0cABL+5g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEcvbEv) +STUB( + "7cfVIsHkEpE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEE5resetEPS9_) +STUB( + "7ck1otbxb1k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "7ck6TJ9MCH8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEmmEi) +STUB("7cmH-sxgIS8", mono_debug_find_method) +STUB( + "7cnBGsciNnw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEptEv) +STUB("7cpDrw3sjCM", + _ZN12video_parser13cVideoMetaVWG17getThumbnailImageENS_9VP_LANG_eENS_15VP_SEARCH_OPT_eEjPh) +STUB("7cw-euqwty0", jpeg_fdct_11x11) +STUB( + "7cyEtZe6MIQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEED1Ev) +STUB("7d9xQd6e65c", _ZNSt13basic_filebufIcSt11char_traitsIcEE5_InitEP7__sFILENS2_7_InitflE) +STUB( + "7dBo812IrEQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEdeEv) +STUB("7dFxmg4wSRM", _ZN9Inspector15ScriptCallFrameC2ERKS0_) +STUB( + "7dHLpX7qkQk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEC2EPKS8_) +STUB("7dI1j4ItuHE", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadDataC1Ev) +STUB("7dJuJIhpu+w", + _ZN3sce2Np9CppWebApi7Matches2V120ResponseMatchResultsC1EPNS1_6Common10LibContextE) +STUB( + "7dL-sK2tn7o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "7dVBXb3wz+o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEmmEv) +STUB("7dX2cWYt-ec", qzero) +STUB("7deWNsME63Y", _ZN24scePssCAudioSourcePlayer12SetPlayStateEit) +STUB("7dlAxeH-htg", _Stofx) +STUB("7doP386xw7Y", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE6resizeEj) +STUB( + "7dqFi7Dvzgo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB("7dqSnW4K+ok", WKPreferencesSetSubpixelCSSOMElementMetricsEnabled) +STUB( + "7dqdFQnF+Ac", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE3endEv) +STUB( + "7drWUH69bJg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB("7dulKcLcwHI", sysKernelGetLowerLimitSysexVersion) +STUB("7dv37ENJNNY", _ZN3NTF17URLRequestHttpJobC1Ev) +STUB("7dyKpPHU+Yk", _ZN3sce2np3ipc10IpmiClient10DisconnectEv) +STUB( + "7dyn-UP72QY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEEC1ERSA_) +STUB( + "7e+cjAN6xk8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "7e+zRFRitmE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "7e1JCOGEgG0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEmmEv) +STUB("7e3DrnZea-Q", _ZNSt10moneypunctIcLb1EEC2ERKSt8_Locinfomb) +STUB( + "7e3fU7RtD-g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE5beginEv) +STUB("7e3mAXZ5AGY", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle12unsetPerGameEv) +STUB( + "7e6mE4oIQnU", + _ZN3sce7Toolkit2NP2V27NpUtils24setTitleIdForDevelopmentERKNS3_7Request24SetTitleIdForDevelopmentEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB( + "7e9znqK4fnA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE10setContextEPNS2_10LibContextE) +STUB( + "7eGovI9eywY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEmmEv) +STUB( + "7eImbdpE1fk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEaSERKS7_) +STUB("7eKgbF9x6Ic", _ZN3sce7Toolkit2NP2V27Ranking17SetGameDataResultD2Ev) +STUB("7eNus40aGuk", wcscspn) +STUB( + "7eXD+-mfVpI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEEC1Ev) +STUB( + "7eYWfse5Frg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEE7add_refEv) +STUB( + "7eZZYsQ3P-8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEmmEv) +STUB("7eaAtC-etfs", delegate_invoke_impl_target_1) +STUB("7ee7qLz2hjg", mono_metadata_parse_mh) +STUB( + "7egFwiOMTt0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEC1ERS7_) +STUB("7exmsg3vl2Q", _ZN9Inspector21InjectedScriptManager18releaseObjectGroupERKN3WTF6StringE) +STUB("7ezuxY8qSBk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEE3getEv) +STUB("7f-e72wP6No", _ZNK7WebCore9ImageData5widthEv) +STUB("7f13XmbjTZo", hb_buffer_create) STUB("7f1RT+wOQ-U", sceAppInstUtilAppAllowDownloadInstall) +STUB( + "7f1kneP7OTM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB("7f2JnsDa9Zg", + _ZN3sce2Np9CppWebApi13InGameCatalog2V517ContentDescriptor8fromJsonERKNS_4Json5ValueE) +STUB("7f4Nl2VS0gw", _ZTISt9basic_iosIcSt11char_traitsIcEE) +STUB( + "7f6MKqL+26g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEED2Ev) +STUB("7f8YM2IS570", ucsdet_close_67) +STUB("7fDXeAE39eE", mono_aot_Sce_Vsh_AppDbWrapperplt) +STUB("7fES7D9wiJk", X509_load_crl_file) +STUB("7fHjxMXM+kc", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyD1Ev) +STUB("7fKmJJYLvyw", JSWeakObjectMapSet) STUB("7fMQZVzPqdc", sceNpTrophy2SystemDestroyContext) +STUB("7fOOGNUUoNE", _ZN12video_parser5vpcom6_OpenTEPcS1_bPPNS_8_vp_fileE) +STUB("7fOcpBLva2Y", _ZN3WTF7RunLoop9TimerBaseC2ERS0_) +STUB("7fS035RCGwA", __asan_report_exp_load4) +STUB( + "7fTspeJSVrg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEmmEi) +STUB("7fU+MXbC5CA", mono_aot_Sce_Vsh_Gls_GlsSharedMediaViewunbox_trampoline_addresses) +STUB("7fXJ1BHjMmY", _ZN9Inspector21InjectedScriptManager7connectEv) +STUB( + "7fXLgrl4MoU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEED1Ev) +STUB( + "7fXs6GxEVi4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUser10initializeEPNS1_6Common10LibContextEPKcSA_) +STUB( + "7fYvkmAsFzw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEEC1ERKSA_) +STUB("7farfEqMGa0", _ZTVN12video_parser16cVideoContentMp4E) +STUB("7fdfkqrJUr4", _ZN23sceMetadataReaderWriter13KeyValueArray7releaseEiPFvPvE) +STUB( + "7fdos89wl10", + _ZN3sce2Np9CppWebApi11Matchmaking2V112ErrorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5ErrorEEE) +STUB( + "7fhzvvX+VJk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEC1EPS8_) +STUB("7fqPcHU-PQU", + _ZN3JSC12CachePayload17makeMappedPayloadEON3WTF14FileSystemImpl14MappedFileDataE) +STUB("7ft4gCfkcIA", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEED1Ev) +STUB( + "7ftWYavllD0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE3endEv) +STUB("7fuGL8i-Ehk", uiter_setReplaceable_67) +STUB( + "7fwglQfZNOE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "7g0nNfXWoZA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE8pushBackERKS6_) +STUB("7g5GqP6Zyak", _ZN6icu_6713UnicodeStringD0Ev) +STUB("7gDeOsY7lH8", mono_aot_Sce_Vsh_Sticker_StickerLibAccessorunbox_trampolines) +STUB("7gIdYyBzf4Y", _ZN7WebCore12SharedBufferD2Ev) +STUB( + "7gIjwxvckHE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "7gMJtnbc2hY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEppEv) +STUB("7gOzpUJ7-gA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEptEv) +STUB( + "7gQyLyJf30w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "7gYDQTMC7QU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEEC1EPS8_PNS2_10LibContextE) +STUB("7ga3x+36xrU", tcgetsid) +STUB("7gc-QliZnMc", _ZNSt14_Num_ldbl_base5trapsE) +STUB("7gj0BXUP3dc", _ZTIPw) +STUB( + "7glcrDVRAdw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEED1Ev) +STUB("7glioH0t9HM", _ZNKSt5ctypeIcE10do_toupperEPcPKc) +STUB( + "7gtMWdi+8GQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEE7get_refEv) +STUB( + "7gxURQpznOs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEmmEi) STUB("7gxh+5QubhY", sceAppContentAddcontEnqueueDownload) +STUB( + "7gzJbD3Adlw", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V231TestForProfanityResponseFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_24TestForProfanityResponseEEE) +STUB("7h+e56B2oKs", curl_mvsprintf) +STUB("7h1gxkWw9Ec", _ZNK7WebCore7Element9innerHTMLEv) +STUB( + "7h2iLEn9WZI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEE5resetEPS6_) +STUB("7h7uBMNLGaU", fuse_add_dirent) +STUB( + "7hLCaaUl+Q0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEEaSERKSA_) +STUB( + "7hLuwtMx+Dk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEppEv) +STUB("7hNbBhDETeY", g_WebAssemblyToJSCalleePoison) +STUB( + "7hNwClFxgiw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEEC2EPS9_PNS2_10LibContextE) STUB("7hOUKGcT6jM", sceLibcPafMspacePosixMemalign) +STUB("7hPIudA3CT4", _ZTVN7WebCore11DisplayList8DrawRectE) +STUB("7hRWTOqVQ9w", + _ZN7WebCore18TextureMapperLayer30setScrollPositionDeltaIfNeededERKNS_9FloatSizeE) +STUB( + "7hVaw6i6j20", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE8capacityEv) +STUB( + "7hW2ZfpzR3Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE8pushBackERKS8_) +STUB( + "7hXFjvKOtiM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEE3getEv) +STUB("7hb4tWFbBqI", _ZN3sce2Np9CppWebApi14SessionManager2V15ErrorD1Ev) +STUB( + "7hhdLSCDdBI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEmmEv) +STUB("7hhovAcWC6g", mono_method_get_signature_full) +STUB( + "7hl+-5mtYEM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEEcvbEv) +STUB( + "7honfQd7wpg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEC1EPKS8_) +STUB("7hqQnjtxqf4", + _ZN3JSC8Bindings13RuntimeObject15createStructureERNS_2VMEPNS_14JSGlobalObjectENS_7JSValueE) +STUB("7hrpktO8r1M", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE7popBackEv) STUB("7hsMq4oz0Sc", sceKernelGetPagingStatsOfAllThreads) +STUB("7ht8b5GNMMY", _ZN9Inspector25ConsoleFrontendDispatcherdaEPv) +STUB("7htBEIzmbA8", _ZN3sce2Np9CppWebApi7Matches2V17SubtaskC1EPNS1_6Common10LibContextE) +STUB( + "7hvzpEvl3Mo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB("7hy1R1ySluk", Java_com_sony_bdjstack_javax_media_controls_SoundManager_unbind) +STUB("7i1SBa+RLes", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEC2ERKS7_) +STUB( + "7i3ZEB6E34g", + _ZN3sce2Np9CppWebApi11UserProfile2V112ErrorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5ErrorEEE) +STUB( + "7i4e-fK+Pyk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEcvbEv) +STUB( + "7i7VOELHFiw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEED2Ev) +STUB("7i8k5TpCMio", _ZN3WTF8JSONImpl5ValueC2EPKc) +STUB( + "7i9+SaB4l0c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB("7iFNNuNyXxw", _Getfloat) +STUB( + "7iGHUEmf0wU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEmmEi) +STUB( + "7iJqFRun9y4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEEC2ERSA_) +STUB("7iKAJFysZaM", _ZNK7WebCore16HTMLMediaElement5mutedEv) +STUB("7iKQwPVb3Uk", mono_aot_Sce_Vsh_MyGameListplt) +STUB("7iLvXhVBRJw", mono_jit_set_domain) +STUB( + "7iNV2XWPmmA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEeqERKS9_) +STUB("7iNXtJji1iI", udata_swapInvStringBlock) +STUB("7iQzTaBQPCg", mono_reflection_lookup_dynamic_token) +STUB( + "7iTgf0603xk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE5clearEv) +STUB("7iTp7O6VOXQ", inet_ntoa) +STUB("7iWjtLM--CQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE6resizeEj) +STUB("7iX8e9aZI3Y", _ZNK3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead14accountIdIsSetEv) +STUB("7iYIxEBkAYE", g_list_find) +STUB("7iZdbVWxIGg", _ZN7WebCore12EventHandler30dispatchFakeMouseMoveEventSoonEv) +STUB("7ibVms37EfY", _ZN7WebCore11MathMLNames14columnspanAttrE) +STUB("7icUNURF+hg", _ZN3sce7Toolkit2NP2V27NpUtils7Request19DisplaySigninDialogD1Ev) STUB("7ifZFxWJ9Q4", sceVideoOutLockBuffer) +STUB("7iiQEE-DNZQ", g_JSCallbackObjectPoison) +STUB("7ijxBuDNvHY", curl_global_sslset) +STUB( + "7ikA0MH9miU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEE7get_refEv) +STUB( + "7in6rO7+oYo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEmmEi) +STUB("7iq7ele0yc0", _ZN3JSC11ArrayBuffer9tryCreateEjj) +STUB("7iqjFK0P5zQ", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEEC2ERKS6_) +STUB("7itOr2Vdfc8", _ZN3sce7Toolkit2NP2V23TUS7Request20GetFriendsDataStatusD1Ev) +STUB("7iuXgpguf3w", _ZN7WebCore8SVGNames11divisorAttrE) +STUB("7ixIvcctKQk", mono_aot_Sce_Vsh_EventServiceWrapperplt_end) +STUB("7izyOzpICKg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEdeEv) +STUB( + "7j+IPQcqxEE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEEC1ERKSA_) +STUB( + "7j-LaemZ+M4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEE11release_refEv) STUB("7j9VcwnrZo4", sceHttpGetEpoll) +STUB( + "7jAG5WaApuY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEED2Ev) STUB("7jGLOR-C9zQ", _sceDepthDisplayDebugScreen) +STUB("7jR452Jay78", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_28NpSessionDetailedInformationEE17getAdditionalInfoEv) +STUB("7jRmhjMXT7w", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V15Owner6toJsonERNS_4Json5ValueEb) +STUB( + "7jSQYLk2N8k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "7jUBbfF8MC0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "7jUGGnOt+5I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEE11get_deleterEv) +STUB( + "7jW-iU4o4c0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEC1EPS8_) +STUB("7jXS0r9rkLg", JSObjectMakeTypedArrayWithArrayBuffer) +STUB("7jYNgL0mtOw", _ZN3sce2Np9CppWebApi14SessionManager2V115LocalizedStringD1Ev) +STUB( + "7jbnFXytxmQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEED1Ev) STUB("7jdAXK+2fMo", sceAjmBatchJobRunSplitBufferRa) +STUB("7jdT0uaI4HI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEEC2EPS6_) +STUB("7jn38a1NQoQ", _ZN18MmsFileUpdaterBaseD1Ev) +STUB("7jp4FsAR+1s", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead19setCreatedTimestampEPKc) +STUB("7jtFrSBal2w", _ZN3WTF17AtomicStringTableD1Ev) +STUB("7jv2iFyX20k", _ZN3sce2Np9CppWebApi11UserProfile2V113BasicPresenceD2Ev) +STUB("7jwjOjeal74", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEEaSERS7_) +STUB( + "7jwxAkG8Fns", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEdeEv) +STUB("7jxFf0KjE+c", _ZN3sce7Toolkit2NP5EventC2Ev) +STUB( + "7k+zTuqfOmQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEE5resetEPS8_) +STUB( + "7k3jNkA10so", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("7k8IDS3dnQA", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead25localizedSessionNameIsSetEv) +STUB("7kAhdhlNvew", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE8copyFromERKS7_) +STUB("7kJ1QYHAhPE", uloc_getISOCountries) +STUB("7kM+jvmzV28", mono_aot_Sce_CloudClient_App_Platformjit_code_end) +STUB("7kMW6YMmiQs", + _ZN3sce2Np9CppWebApi14IdentityMapper2V318OnlineIdMapFactory7destroyEPNS3_11OnlineIdMapE) +STUB("7kSGOVXdivc", _ZN3sce2Np9CppWebApi7Matches2V118RequestMatchPlayer12setAccountIdEPKc) STUB("7kXCiz3D0OU", scePssThreadIsActive) +STUB("7kYKc2bAx+I", _ZN7WebCore8SVGNames18lighting_colorAttrE) +STUB("7kbOG9Y7SXM", _ZN7WebCore19JSDOMMatrixReadOnly9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("7khEIoGv2Q8", WKContextSetShouldUseFontSmoothing) +STUB("7kizCLVvdXM", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_19ProductInfoDetailedEEC1ERKS4_) +STUB("7klfyDxGaQg", ucnv_getName_67) +STUB("7kmAApX8qTI", _ZNK3sce2Np9CppWebApi7Matches2V118RequestTeamResults9getTeamIdEv) +STUB("7kq9ALkg4AA", mono_btls_x509_revoked_get_reason) +STUB( + "7kqJPQPdrbU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEppEi) STUB("7krELEpl+Y0", sceUpsrvUpdateCancelBDUpdate) +STUB( + "7krgVxZg02Q", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE17getResponseHeaderERSB_) +STUB( + "7kzJUtqwY+0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEC2EPKS8_) +STUB("7l2Jv4Pu9RA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody8setLimitERKi) +STUB("7l3U5RmuZ60", + _ZNK7WebCore29PerspectiveTransformOperation5applyERNS_20TransformationMatrixERKNS_9FloatSizeE) +STUB("7l44TDMrkeE", _ZN7WebCore22SocketStreamHandleImpl12platformSendEPKhmON3WTF8FunctionIFvbEEE) +STUB("7l4jBeWiHI4", _ZN3WTF21RefCountedLeakCounterC1EPKc) +STUB("7l6AML7+4G8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEE3getEv) +STUB("7lCihI18N9I", _ZdaPvmRKSt9nothrow_t) +STUB( + "7lDz3ZjojIc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEplEm) +STUB( + "7lGR9Gp+9GY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE21intrusive_ptr_add_refEPS9_) +STUB("7lK55VjWSF8", mono_shared_internal_hash_table_lookup) +STUB("7lNx5gajOXk", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEEplEm) +STUB("7lO9jFyTA4A", _ZN9Inspector26DebuggerFrontendDispatchernwEmPv) +STUB( + "7lOwMl2laPA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEC2Ev) +STUB( + "7lSM-9o-zGM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEC2EPS8_) +STUB( + "7leJXUoEpTI", + _ZN9Inspector21PageBackendDispatcher17searchInResourcesElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("7lfSx6Ni9oE", _ZN7WebCore8Document5linksEv) +STUB("7lgPvyGKqas", JVM_GetMethodIxExceptionTableLength) +STUB("7lhAeC928LQ", _ZN3sce7Toolkit2NP2V212EventsClient12EventDetailsC1Ev) +STUB( + "7lhTcIr5eBI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE21intrusive_ptr_add_refEPS9_) +STUB("7liQqSHn5fc", _ZNK7WebCore4Page9pageCountEv) +STUB( + "7ljQcdQT1jU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE8copyFromERKS9_) STUB("7lkxCYpD+xk", sceVideoCoreChangeHdcpSetting) +STUB("7lo+0LUsYuw", _ZN7WebCore7Element14scrollIntoViewEb) +STUB( + "7lqWXO1ZdCs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "7lr6cMExXPo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEEC1ERKSA_) +STUB("7lu35eETqeQ", WKPreferencesSetWebShareEnabled) +STUB( + "7lyEPtBKSFY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "7lzi-RHUqww", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEaSERKS7_) +STUB( + "7m-O1GMK0QM", + _ZN3sce2Np9CppWebApi7Matches2V123ResponseMatchStatistics17setTeamStatisticsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_21ResponseTeamStatisticEEEEE) +STUB( + "7m5227vgGAg", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi27ParameterToLeaveGameSession12setsessionIdEPKc) +STUB( + "7mAjiQUCDvs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEptEv) +STUB( + "7mCLhGibMUA", + _ZN3sce2Np9CppWebApi14SessionManager2V161GetUsersAccountIdPlayerSessionsInvitationsResponseBodyFactory7destroyEPNS3_54GetUsersAccountIdPlayerSessionsInvitationsResponseBodyE) +STUB("7mEn9EDhcn0", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyD1Ev) +STUB( + "7mGw9srXHJ0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE8copyFromERKS9_) +STUB("7mLDMf26EJ8", _ZN7WebCore18throwThisTypeErrorERN3JSC14JSGlobalObjectERNS0_10ThrowScopeEPKcS6_) STUB("7mNFRHtNsx4", scePrintUlpResHdr) STUB("7mNuSDZQNNo", sceEsvmEngineMediaKeySessionUpdate) +STUB("7mOx7zxO+6g", _ZN12Mp4Retriever14processFreeBoxEv) +STUB("7mQ26kdVI1U", WKNotificationManagerProviderDidShowNotification) +STUB( + "7mQ7Qgf2LCY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEE7get_refEv) +STUB("7mUmOtv4Etc", IsSrcIdPlaying) +STUB("7mjdWhhT8RU", mono_aot_System_Reactive_Coreplt_end) +STUB("7mmcaG0Shqs", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12EventsClient6EventsEE12deepCopyFromERS7_) STUB("7mrTdxGkB3U", sceNpTrophy2SystemGetTrophyTitleConf) +STUB( + "7muAI9nj4hU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEC1Ev) +STUB( + "7muwftfzuFY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("7myYxRSXGbY", _ZN12video_parser13cVideoMetaMP419_readThumbnailImageEPcxjPh) +STUB( + "7n+mipDk2Zw", + _ZN3sce2Np9CppWebApi14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyD2Ev) +STUB("7n0ehnQc0Gw", _ZN7WebCore8Document20updateIsPlayingMediaEm) +STUB("7n8vDqOwmn4", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEEcvbEv) +STUB( + "7nBKmRRKzX8", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUser13isInitializedEv) +STUB( + "7nFq2nDiQ5I", + _ZN7WebCore22CacheStorageConnection12updateCachesEmONSt12experimental15fundamentals_v38expectedINS_14DOMCacheEngine10CacheInfosENS4_5ErrorEEE) +STUB( + "7nNkQIqhssc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEEC2Ev) STUB("7nOoijNPvEU", sceAgcWaitRegMemPatchReference) +STUB( + "7nV7jsTmDpU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEneERKS9_) +STUB( + "7nVcmhKAhhE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE8readDataEPcm) STUB("7nXGDGMXSqo", sceAmprMeasureCommandSizeReadFileScatter) +STUB("7nYdmZyxP0I", _ZN23sceMetadataReaderWriter7Storage12readMetadataERKSsRKNS_8MetadataEjRS3_) +STUB("7nYn3KU7GMI", Java_com_sony_bdjstack_javax_media_controls_VideoSystem_setScreenConfiguration) +STUB("7neCrtTwTjM", _ZN7WebCore10JSLocation6s_infoE) +STUB("7nhDWYNO3lw", _ZN7WebCore14ScrollableArea27notifyScrollPositionChangedERKNS_8IntPointE) +STUB( + "7ni7zsvERh0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEC1EPS6_PNS2_10LibContextE) +STUB("7niGF7s7qHU", GetPhotoInfoLib) +STUB( + "7niojC8U0-Y", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB( + "7nk-u6AGsnQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEE3getEv) +STUB("7npSfq5eIik", _ZN3JSC7Symbols15sortPrivateNameE) +STUB("7nuoK1AytFM", ucal_setGregorianChange_59) +STUB( + "7nvr1Oocn1A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("7o3+pBwa3Ko", jpeg_simple_progression) +STUB("7o36Jzkuwfs", _ZNK7WebCore4Path6isNullEv) STUB("7o4tmcD7foY", sceMusicCoreServerGetTitleId) +STUB( + "7o5XeqKWry4", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessions10initializeEPNS1_6Common10LibContextE) STUB("7o8g-r6yVZk", sceCesBig5ToUtf16be) +STUB("7oEHtlR1sXw", _ZN7WebCore16HTMLMediaElement8fastSeekEd) +STUB("7oIDpW1fnds", _ZN7WebCore7IntRectC2ERKNS_9FloatRectE) +STUB("7oIzjfIWi6o", wmatch) +STUB("7oJpAd+vJQA", _ZN3sce2np3ipc17ServiceIpmiClient21DeleteRequestForAsyncEii) +STUB("7oKMHilvjQA", _ZN7bmalloc5Cache25allocateSlowCaseNullCacheENS_8HeapKindEm) +STUB( + "7oMUTH81jV8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "7oNVLeraJVA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEC2Ev) +STUB("7oRxmHRqfCY", removeProhibitionFlagListener) +STUB("7oTRWUza6Fk", _ZN3sce7Toolkit2NP2V23TUS13TusDataStatusD1Ev) +STUB("7oVQasr0GHw", mono_aot_System_Dataunbox_trampolines) +STUB( + "7oZsq8yG0Zk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEcvbEv) +STUB( + "7obJWtXCpNY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("7oio2Gs1GNk", + _ZNSt13basic_filebufIcSt11char_traitsIcEE7seekoffElNSt5_IosbIiE8_SeekdirENS4_9_OpenmodeE) STUB("7okrKugZRI4", sceCustomMusicCoreGetSystemAudioVolume) +STUB( + "7ouO+CipUSI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE5beginEv) STUB("7oxv3PPCumo", sceKernelReserveVirtualRange) +STUB("7oz1ahPfK-Y", _ZN3JSC7Symbols17NumberPrivateNameE) +STUB("7p+rMEo3-cs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEmmEv) +STUB("7p1UwWUx9C8", + _ZN7WebCore6Widget5paintERNS_15GraphicsContextERKNS_7IntRectENS0_25SecurityOriginPaintPolicyE) +STUB( + "7p4HU+QkLUw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEptEv) +STUB("7p7kTAJcuGg", __inet_addr) +STUB( + "7p8jDKuJskk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("7p9tNwX7Prc", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_17ActivityFeedStoryEEC2ERKS4_) +STUB("7pASQ1hhH00", posix_spawnattr_getsigdefault) +STUB( + "7pBRNL9SVNQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEEC2Ev) +STUB("7pC12Y2UbWc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEED2Ev) +STUB("7pCOClUrUmM", ucnv_getName) +STUB( + "7pD1t-0bOMk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEC2ERKS7_) +STUB("7pDRHhO7Hxw", + _ZN7WebCore36ISOProtectionSystemSpecificHeaderBox12peekSystemIDERN3JSC8DataViewEj) +STUB("7pEKaQB9TYI", WKPreferencesSetAntialiasedFontDilationEnabled) +STUB("7pFnRL79ZKE", setReplayModeFlag) +STUB( + "7pGvEIUwAQc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEE7get_refEv) +STUB("7pN3P801eUw", _ZN3JSC24getFloat64ArrayClassInfoEv) +STUB("7pNKcscKrf8", _Stoll) +STUB("7pOP1-HcGd8", _ZN7WebCore20NetworkStateNotifier11addListenerEON3WTF8FunctionIFvbEEE) +STUB( + "7pQUqytL4AY", + _ZN9Inspector24RuntimeBackendDispatcher6createERNS_17BackendDispatcherEPNS_31RuntimeBackendDispatcherHandlerE) +STUB( + "7pR3YmVfuYI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEEC2Ev) +STUB("7pa8HdZUwlc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116JoinableUserTypeEEC2Ev) +STUB("7pd71mDVdIQ", _ZN3sce7Toolkit2NP2V24Core7Request21NpToolkitCallbackInfoC2Ev) +STUB( + "7pevkv3XqTU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE8pushBackERKS8_) STUB("7pif5RySi+s", sceUserServiceSetHoldAudioOutDevice) STUB("7pl2UBkJIRk", sceSpNetEpollAbort) +STUB("7plAKE6QBd4", _ZN3sce2Np9CppWebApi6Common6VectorIdE7reserveEi) +STUB("7ptEBVx3d5g", WKViewSetViewClient) +STUB("7ptExjmGIEo", p5_512) +STUB("7pv4GMWAJws", _ZN7WebCore16HTMLTableElement11createTHeadEv) STUB("7pvtcnbjvTk", sceLncUtilIsDiscPlayerForeground) +STUB("7pw6BiYF85o", _ZN12video_parser17cVideoOperatorMnvD1Ev) +STUB("7qJpOjZSSkI", _ZN7WebCoreeqERKNS_18SecurityOriginDataES2_) +STUB( + "7qR12vt1sFo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "7qRM0Gb-pkc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE3endEv) +STUB( + "7qWiZgwGbp8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEaSERKS7_) STUB("7qZVNgEu+SY", sceGnmInsertPopMarker) STUB("7qf7mhzOQPo", sceSystemStateMgrStartShutdownTimer) +STUB( + "7qfzj3qOB7U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEEcvbEv) STUB("7qkaKBAshAk", sceLoginMgrServerGetMoveAssignmentModeForIDU) +STUB("7ql+sS+-xMc", uhash_compareUnicodeString) +STUB( + "7qlebFfMeMc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB("7qqQA1v-gj8", _ZNK3JSC12JSRopeString11resolveRopeEPNS_9ExecStateE) +STUB("7qx+k6JaR0E", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIlE21intrusive_ptr_sub_refEPS4_) +STUB("7qx9ZPDsDq4", _ZN3WTF6String6numberEf) +STUB("7r-cRJ8ieEM", _ZN7WebCore11DisplayList7ClipOutD2Ev) +STUB( + "7r4QwpqvU3M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE8pushBackERKS8_) +STUB("7rBlPIEPUyI", utrie_setRange32_67) +STUB("7rCX22wnafA", uenum_unext_67) +STUB("7rCiCCIa8Jo", _ZN7WebCore15HitTestLocationC2Ev) +STUB("7rEQhmpH8S0", _ZN12video_parser5vpcom8datetime8DateTimeD2Ev) +STUB( + "7rM2JdeQHu4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEE11get_deleterEv) +STUB("7rNEJOU11hY", WKPageRequestStorageAccessConfirmResultListenerGetTypeID) STUB("7rQdA99onWU", scePerfPmcMcSeqStop) +STUB("7rV1sDuGIBY", jio_vfprintf) +STUB("7rcp+-q8MOo", _ZN7WebCore8isReloadENS_13FrameLoadTypeE) STUB("7rekIUh97Jc", sceFsUfsHideBlocksFromUser) +STUB("7rfErhFzrTM", _ZN7WebCore8JSPath2DaSERKS0_) +STUB("7rjDj4OaSZI", _ZNK3sce2Np9CppWebApi7Matches2V118CreateMatchRequest19getCancellationTimeEv) +STUB( + "7rk9gc1KLpc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "7rnMMfiF6XI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE5emptyEv) +STUB("7rnbZv4SZGI", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12setInteger10ERKi) +STUB( + "7rnfjAu2T1Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEppEi) STUB("7rogx92EEyc", sceFontCreateWritingLine) +STUB("7rpBVV1wWdg", _ZNK3sce2Np9CppWebApi15Personalization2V15Error11sourceIsSetEv) +STUB("7ruwcMCJVGI", __kernel_cosdf) STUB("7rwsM14lA0Y", sceHttpCacheRevalidate) +STUB("7rxRdJURjaY", + _ZN7WebCore16ScriptController13executeScriptERKN3WTF6StringEbPNS_16ExceptionDetailsE) +STUB("7rxnZJsitOo", _ZN3JSC15constructNumberEPNS_14JSGlobalObjectENS_7JSValueE) +STUB( + "7rxnaWbFiOU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "7ry4ceyDecw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEEaSERKSA_) +STUB( + "7sAD0kv-8fg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE8copyFromERKS9_) +STUB("7sC0PWT-6x8", _ZN3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayerD2Ev) +STUB("7sGpnAOSuJk", _ZN3JSC48UnconfigurablePropertyChangeAccessMechanismErrorE) +STUB( + "7sK+Wf9qAlk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEmmEi) +STUB("7sQ+HPaU-xY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEEppEi) +STUB("7sQJoWkkeyw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEED2Ev) +STUB("7sSG84fU0QE", _Z38sceGpuDebuggerSetEnabledExceptionsMaskPN3sce3Gnm16GsStageRegistersEj) +STUB( + "7sWzkmBaOXU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEC2Ev) +STUB("7sXto2xOz20", mono_aot_Sce_Vsh_Accessor_Db_Notifyplt) STUB("7siOfIbbg8I", sceKernelGetCurrentFanDuty) +STUB("7smeGY1I2EQ", mono_metadata_init) +STUB("7smsfQWlv-w", llvm_throw_corlib_exception_trampoline_p) +STUB( + "7ssB5cny7ps", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEEC2ERSA_) +STUB( + "7t2OqEaZ5G0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEE21intrusive_ptr_sub_refEPS7_) +STUB("7t3lPIaxzws", _ZNK7WebCore4Page15forEachDocumentERKN3WTF8FunctionIFvRNS_8DocumentEEEE) +STUB("7tACjdACOBM", _ZNSt14_Num_ldbl_base5radixE) +STUB( + "7tDx3XXwXgY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE10setContextEPNS2_10LibContextE) +STUB("7tIwDZyyKHo", _ZNKSt7codecvtIcc9_MbstatetE16do_always_noconvEv) +STUB( + "7tN5TgRVWBk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEC1ERS7_) +STUB("7tQcF--0ZeE", _ZN3sce7Toolkit2NP2V27Session7Request17GetInvitationDataC2Ev) +STUB("7tTevQ9Prkw", _ZN3sce7Toolkit2NP9Utilities6FutureI13SceNpOnlineIdED2Ev) +STUB("7tTmRfjk7AE", JVM_FindSignal) +STUB("7tTpzMt-PzY", _ZTIN10__cxxabiv129__pointer_to_member_type_infoE) +STUB("7tZN-6O8+XI", _ZN23sceMetadataReaderWriter8MetadataC1Ev) STUB("7tcEaueZLEw", sceVencCoreQueryHeader) +STUB("7tgvysxSvMQ", uregion_getContainingRegion_67) +STUB( + "7thBcegEA48", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "7thj3CoqRns", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("7thzCvuayP8", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead21unsetLeaderPrivilegesEv) +STUB( + "7tlG7qEgf-A", + _ZN9Inspector18InspectorHeapAgent10getPreviewERN3WTF6StringEiRSt8optionalIS2_ERNS1_6RefPtrINS_8Protocol8Debugger15FunctionDetailsENS1_13DumbPtrTraitsISA_EEEERNS7_INS8_7Runtime13ObjectPreviewENSB_ISG_EEEE) +STUB("7tm0GnvQOXc", _ZN4Manx6CookieC2Ev) +STUB("7toDR5T5+6o", _ZN3JSC7Symbols21ModuleLinkPrivateNameE) STUB("7toV+elXqNM", sceAgcCbCondWrite) +STUB("7tpfL-ChrcI", + _ZN7WebCore4Page33removeActivityStateChangeObserverERNS_27ActivityStateChangeObserverE) +STUB("7u-IA2nC-ho", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Publisher9unsetNameEv) +STUB("7u-PW+P3QRw", _ZN3sce7Toolkit2NP2V24Core8ResponseINS3_18CustomResponseDataEEC2Ev) +STUB("7u0Uo1JBhWI", _ZN3sce2Np9CppWebApi6Common6VectorIdE7popBackEv) +STUB("7u6xT54Gym0", + _ZN3sce2Np9CppWebApi7Matches2V121ResponseMemberFactory7destroyEPNS3_14ResponseMemberE) +STUB("7u9DDNs476c", mono_aot_Systemjit_code_end) +STUB( + "7uARA17olMY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEC1EPKS8_) +STUB("7uChLfYz4AE", _ZN3sce2Np9CppWebApi6Common6VectorIfE10setContextEPNS2_10LibContextE) +STUB("7uEKCJNwdgI", _ZN7WebCore24CoordinatedGraphicsLayer15setContentsRectERKNS_9FloatRectE) +STUB("7uHtTuWzH7M", _ZN7WebCore9HTMLNames13onofflineAttrE) +STUB("7uInq-rV0oc", + _ZN7WebCore14SQLiteDatabase20setCollationFunctionERKN3WTF6StringEONS1_8FunctionIFiiPKviS7_EEE) STUB("7uLPqiNvNLc", sceNpTusGetMultiSlotDataStatusAAsync) +STUB("7uP9SZTd0w8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEC1ERS7_) +STUB("7uX6IsXWwak", _ZTIPKe) +STUB( + "7uXiqnIka+M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "7ubnYQ7QZ1E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEC1Ev) +STUB( + "7ueDLYjbtM8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEE7get_refEv) STUB("7uhBFWRAS60", sceKernelClearEventFlag) +STUB("7uhYq0XVJSc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEixEm) STUB("7ukE-Yrzqog", sceAudioOut2MasteringInitEx) +STUB("7ul-CqURZMA", _ZN7WebCore8SVGNames16font_stretchAttrE) STUB("7uqf3hPw8Yw", sceNpManagerIntSignin) +STUB("7v4h8nXSHVw", _ZN7WebCore15GraphicsContext18setStrokeThicknessEf) +STUB("7vB8Zdxyt2Q", _Z27sceRazorGpuThreadTraceStartPN3sce3Gnm17DrawCommandBufferE) +STUB("7vDR+PWf33w", _ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody13ticketIdIsSetEv) +STUB("7vDoLwaK4xs", _ZN3JSC7JSArray15copyToArgumentsEPNS_9ExecStateENS_15VirtualRegisterEjj) +STUB( + "7vDtk-lU1Tk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEE7get_refEv) +STUB( + "7vZLeY5xcqw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEppEi) +STUB( + "7vZwwVBiV88", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEC1EPKS8_) +STUB( + "7vaXaXNXYpQ", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeaders21intrusive_ptr_sub_refEPS5_) +STUB("7vfm0eUVXQc", _ZN7WebCore7Element11clientWidthEv) +STUB("7vhUO3s6Mw4", _ZN4Manx21Curl_cookie_loadfilesEP13SessionHandle) +STUB("7viCF+kxvfU", + _ZN3sce2Np9CppWebApi13InGameCatalog2V513ContentRatingC1EPNS1_6Common10LibContextE) STUB("7vjNQ6Z1op0", sceNpMatching2ContextStart) +STUB("7vjpL8AQE0U", mono_aot_appjit_code_start) +STUB( + "7vm39qC7Nhk", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_14ScriptProfiler9EventTypeEEESt8optionalIT_ERKN3WTF6StringE) +STUB("7vocvpCkmtI", ucurr_getKeywordValuesForLocale_67) +STUB("7vogZXhH-O0", _ZN7WebCore9HTMLNames15aria_atomicAttrE) +STUB( + "7vtAYSY6bqM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEmmEv) +STUB( + "7vtYVsbjXtM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUser9terminateEv) +STUB("7vytp5uDwHU", utrace_cleanup_67) +STUB("7w+LeZ5ymys", _ZN3sce2np7RingBufD1Ev) +STUB("7w09iXWXQZc", glUniformMatrix3fv) +STUB("7w0tVnYH3KI", _ZN7WebCore11MediaPlayer25shouldIgnoreIntrinsicSizeEv) +STUB("7w3lGvrPXnM", + _ZThn24_N9Inspector22InspectorDebuggerAgent20setBreakpointsActiveERN3WTF6StringEb) +STUB("7wAbgYDc1xo", _ZN7WebCore9HTMLNames5dlTagE) STUB("7wCjXDc2cjI", sceUrlConfigResolverGetDefaultQueryParameter) +STUB( + "7wCpbZn3A10", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEE11release_refEv) +STUB( + "7wEANk-BbmA", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_18SessionInformationENS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv) +STUB("7wF24V3Ity4", mono_aot_Sce_Vsh_Np_AppLaunchLinkplt) +STUB("7wGcSRiXMG0", ures_getVersion) STUB("7wORfQWfnM0", sceVshAvcapInit) +STUB( + "7wPqwjG-mPE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE8pushBackERKS8_) +STUB("7wQl1NIU2q0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend7FriendsEED2Ev) +STUB("7wRBEcZoyPI", _ZN3sce7Toolkit2NP9NpTitleIdC1Ev) +STUB( + "7wTnlJvIM4s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEEdeEv) +STUB( + "7wX70WJXaSA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEptEv) +STUB("7wbrBFtLTOk", mono_method_get_header_checked) +STUB("7weprQXzVCI", _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile12unsetAboutMeEv) STUB("7whYpYfHP74", sceSslGetIssuerName) +STUB("7wjIexo6MvQ", WKPageSetPageFindMatchesClient) STUB("7wniYnHArVU", sceVshctlSetPartyStatus) +STUB( + "7wnrvWIt1q8", + _ZN3sce2Np9CppWebApi14SessionManager2V159PostPlayerSessionsSessionIdMemberPlayersResponseBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_27ResponsePlayerSessionPlayerEEEEEPNS9_INS3_52PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEE) +STUB("7wuF160ByAA", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessionsC1ERS5_) +STUB( + "7wwmcioD8GQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEC1Ev) +STUB( + "7wxKICJRPhE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("7wxcVuLXjCU", WKWebsiteDataStoreConfigurationCopyApplicationCacheDirectory) STUB("7x2xKiiB7MA", sceFontStyleFrameGetScalePoint) +STUB("7x711wfwKEM", SoundLoad) +STUB( + "7xBa-539VuU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEC2EPS8_) +STUB("7xHc82XURl8", __asan_report_exp_store8) +STUB("7xOeJ01pYMw", _ZN7WebCore9CookieJar12sameSiteInfoERKNS_8DocumentE) +STUB("7xR6RTQA3YQ", _ZNK7WebCore6Editor6canCutEv) STUB("7xSkVM0yhV0", sceNpTrophy2SystemIsServerAvailable) STUB("7xYdUWg1WdY", sceNetConfigWlanAdhocScanJoin) +STUB("7xZPYVC9HlQ", _ZNK7WebCore15AffineTransform7mapRectERKNS_7IntRectE) +STUB( + "7xaEpHGMwM0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEC2EPS8_) +STUB("7xewwX3b8DU", _ZN7Nicosia16SceneIntegrationC2ERNS_5SceneERNS0_6ClientE) +STUB("7xfAsgL2uZY", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product10unsetMediaEv) +STUB( + "7xjQjqXWlks", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("7xn10svtv8I", mono_aot_Sce_PlayStation_HighLevel_UI2Platformjit_code_end) +STUB("7xnsvjuqtZQ", __negvsi2) +STUB("7xrN1+5W2EI", _ZN15AbstractStorage18DailymotionContent5WriteEPKvlPl) +STUB("7xs-MsvwIww", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEC2ERKS7_) +STUB( + "7xtUXtbHllQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEppEi) +STUB( + "7xudTPl1058", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEeqERKS9_) +STUB( + "7xuuigfR6YU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEC2EPS8_) STUB("7xvsKSy+09o", sceAppInstUtilAppInstallGetLinkState) STUB("7xyAxrusLko", sceAudioPropagationSystemQueryMemory) +STUB( + "7y-+8D-NnVE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEC2EPS8_) +STUB( + "7y-4wGizfA8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEmmEv) STUB("7y2mIfBZO+I", sceRazorCpuUserSignalWaitBegin) +STUB("7y4XwenfJCM", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V19JoinStateEEC1EPS6_) +STUB( + "7y9l2wdKRlI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "7yB-1SMPWgU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEC2EPNS2_10LibContextE) +STUB( + "7yFsoyLh4qs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE8pushBackERKS8_) STUB("7yIpFl9KknY", sceRegMgrGetVersionForPS4) +STUB( + "7yKMDWUTKkQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEE11get_deleterEv) +STUB("7yMFgcS8EPA", _Cnd_destroy) +STUB( + "7yPpfux-puY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEptEv) +STUB("7yQMd+x9H-M", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku14setIsPlusPriceERKb) +STUB( + "7yTH62fFC6I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEED2Ev) STUB("7yUQmZWoqVg", sceShellCoreUtilResetBgdcConfig) +STUB("7yUi5vhU6jY", _ZTVN15AbstractStorage7ContentE) +STUB("7yVPipHElno", uprv_int32Comparator_67) +STUB( + "7yWAlzkChiA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "7yXITS65REs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEixEm) STUB("7yXjWLWJFHU", sceLncUtilGetCdlgExec) +STUB( + "7yZ5E94+a5E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEEaSERSA_) +STUB( + "7yZxLNzVE6c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEEC2Ev) +STUB("7yaXecp2C1Y", _ZN10MsvUpdaterC1Ev) +STUB("7yd77QMeHYU", fuse_sync_compat_args) +STUB( + "7yeAB5yU70I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEmmEv) +STUB( + "7yl7KgO3jtg", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSessionaSERS5_) +STUB( + "7ynxgix5CWo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEppEv) +STUB("7yoylSlzs08", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEC2ERKS7_) +STUB("7yrkUU5Dmf0", monoeg_g_list_nth_data) +STUB( + "7yuDXvqIQF4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEneERKS9_) +STUB( + "7yvmfRSsUqQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEE3getEv) +STUB("7yvyZp8UBVA", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12RoomPingTimeEEC2Ev) +STUB("7yzlR+C4pw0", GCC_except_table351) +STUB("7z02PpmQ8p4", adjust_heap) +STUB( + "7z2cr9fsgkw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEC2EPS8_) +STUB("7z5XZM3NUmI", Java_java_io_FileInputStream_readBytes) +STUB( + "7z5ykGN-JIQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE3endEv) +STUB("7zFt1IsCMf4", _ZNK9Inspector21InspectorConsoleAgent22developerExtrasEnabledEv) +STUB( + "7zIyQPq+fW8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEppEi) +STUB( + "7zKHjQqkbLk", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("7zKsIDMLD-0", _ZN3sce7Toolkit2NP2V28Presence12Notification14PresenceUpdate8deepCopyERKS5_) +STUB( + "7zO40Ubn+dU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEE3getEv) +STUB("7zYbmYp5YQM", uprv_min) STUB("7zeO0teNgU8", ScePsmMonoDebuggerAgentParseOptions) +STUB( + "7zhxd+GVoWQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "7znfnJZOzCQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("7zpvvFtWio4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEE7get_refEv) +STUB( + "7zrwhFig2Gc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "7zsU0-ouq8s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEEptEv) +STUB( + "7zsee5IHLis", + _ZN3sce7Toolkit2NP2V26Friend10getFriendsERKNS3_7Request10GetFriendsEPNS2_4Core8ResponseINS3_7FriendsEEE) STUB("7zu3F7ykVeo", sceUserServiceGetAccountRemarks) +STUB("7zvO32POmQw", _ZN3sce7Toolkit2NP2V27Ranking7Request8SetScore8MIN_PCIDE) +STUB( + "8+4rDt8DwJ0", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot13getaccountIdsEv) +STUB( + "8+80W1+qfSA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEneERKS9_) +STUB( + "8+Ao2c1gFw0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEEC2ERKSA_) STUB("8+CmlQdq7u8", sceShellCoreUtilRequestEjectDevice) +STUB("8+HEt2ltjX8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEC2Ev) +STUB("8+IWPUep4uY", uprv_getStaticCurrencyName) +STUB("8+KmK2NNPww", _ZN9Inspector22InspectorDebuggerAgent20didDispatchAsyncCallEv) +STUB("8+Sw5EO5Rz8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE8capacityEv) +STUB("8+UPqcEgsYg", CERT_getCertificateSubject) +STUB("8+W-yd4K9vU", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_19ProductInfoDetailedEE9constructEPS3_RKS3_) +STUB("8+bvxYiuFLM", _ZN3sce3pss4core8graphics14NativeGraphics20RestoreGraphicsStateEv) +STUB( + "8+lgYWC2MKA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEC1ERS7_) +STUB( + "8+mU2ytO6bo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEdeEv) +STUB( + "8+oOpix4I0Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEEC1ERSA_) +STUB("8+pbMrwpj8U", _UIx86_64_full_mask) STUB("8+qs9Lh1Mug", sceValidationGpuGetDiagnostics) STUB("8+s5BzZjxSg", scePthreadAttrGetaffinity) +STUB("8+u9jIuQ9jQ", _ZN3sce2Np9CppWebApi6Common6VectorIlED2Ev) +STUB("8+uYQVpnSrk", _ZN7WebCore8SVGNames10strokeAttrE) +STUB("8-33e2lOOC8", _ZN7WebCore6Cursor8fromTypeENS0_4TypeE) +STUB("8-64JQpyWp0", _ZN7WebCore28InspectorFrontendClientLocal19setDebuggingEnabledEb) +STUB( + "8-90+EVPfcE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEC2ERS7_) +STUB( + "8-9Y4oS+OuE", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "8-G2Y2n+hxc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE5clearEv) +STUB("8-JqBtdvpe0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEE7add_refEv) +STUB("8-R5U3iiEI8", _ZN9Inspector21InspectorConsoleAgentD1Ev) +STUB( + "8-RoR7XlALE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEmmEi) +STUB( + "8-SoOhIpMAs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE3endEv) +STUB( + "8-UWUr5nzkA", + _ZN7WebCore18ScrollingStateTree15setRemovedNodesEN3WTF7HashSetImNS1_7IntHashImEENS1_10HashTraitsImEEEE) +STUB("8-VzftUVhck", _ZN7WebCore9HTMLNames13onmessageAttrE) +STUB( + "8-WyMeY6Dtk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("8-YkZFXzp+o", _ZN3WTF24TimeWithDynamicClockType3nowENS_9ClockTypeE) +STUB("8-bkqei4PMY", _ZN7WebCore18PlatformTimeRanges5clearEv) +STUB( + "8-dnBq9VaBI", + _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product12setPlatformsERKNS1_6Common6VectorINS5_6StringEEE) STUB("8-e7E989rCU", scePlayGoGetInstallChunkId) +STUB("8-gHRL4zbd8", JSGlobalContextSetUnhandledRejectionCallback) +STUB("8-gX5W0jOxY", mono_bitset_union) +STUB("8-hZIMejkAc", WKBooleanGetTypeID) +STUB("8-pxgXRAHiY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE6resizeEj) STUB("8-voJZab+0E", sceVoiceQoSDisableChat) STUB("8-zmgsxkBek", sceFontGlyphDefineAttribute) +STUB("802pFCwC9w0", __udivti3) +STUB("805Uf87-0dM", __asan_get_report_address) +STUB( + "8068PjBvkJY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEED2Ev) +STUB("8098pRP5akI", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEED1Ev) +STUB( + "809XqQXH3ps", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEptEv) +STUB( + "80BR53J5uEE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEC1EPS8_) +STUB("80J1+bA9ZIk", _ZN7WebCore21DiagnosticLoggingKeys16internalErrorKeyEv) +STUB("80LTtL71Ics", _ZN3WTF20ParallelHelperClientD2Ev) +STUB("80N7lkcSs8I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEED2Ev) +STUB("80Oq9-9fvGM", + _ZN3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponse13setNextOffsetERKi) STUB("80XdmVYsNPA", scePadStartRecording) +STUB( + "80XjIquGbok", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEED2Ev) +STUB( + "80Y63sXa2y4", + _ZN3JSC13RuntimeMethod18getOwnPropertySlotEPNS_8JSObjectEPNS_9ExecStateENS_12PropertyNameERNS_12PropertySlotE) +STUB( + "80cSgWbaoOY", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody16unsetCustomData1Ev) +STUB("80cchWF2U14", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEE7get_refEv) +STUB("80fcVNTzsdk", _ZN3sce7Toolkit2NP16EventListRequestC1Ev) +STUB( + "80i1DAxeW14", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEixEm) +STUB("80wLdp72zyU", _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V113ErrorResponseD2Ev) +STUB("80xEONMJfBM", mono_aot_Sce_Vsh_Webbrowser_XdbWrapperunbox_trampoline_addresses) +STUB( + "80y-gqQIDzQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEppEv) +STUB("80zfVuuuxbM", _ZTVN7WebCore24RotateTransformOperationE) +STUB("812ErfQJ70Q", WKPreferencesGetLargeImageAsyncDecodingEnabled) +STUB("816frQKIUek", YGConfigSetLogger) +STUB( + "819c52c05y4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE5clearEv) +STUB("81AgDAJ9Bug", _ZN12video_parser10cVideoPath19GetPathNameOriginalEv) STUB("81DkaQt6J30", sceNpWebApi2IntPushEventCreateDestPs4CtxIndFilter) STUB("81HsnXFbWS4", sceAjmBatchJobSetResampleParameters) +STUB("81KCoTZY3UY", _ZN7WebCore9HTMLNames18onvolumechangeAttrE) +STUB("81MD+QADYBA", _ZN7WebCore17SQLiteTransactionC2ERNS_14SQLiteDatabaseEb) +STUB("81NPJfXmuWA", _ZN9Inspector14InspectorAgent6enableERN3WTF6StringE) +STUB( + "81P36N-rVnM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEED2Ev) +STUB("81SYcLsx1Oo", _ZN3sce7Toolkit2NP2V28Matching7Request15SendRoomMessageD1Ev) +STUB("81T70clxSV8", __preinit_array_end) +STUB( + "81UtMWiOfAM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("81VKocczZ8k", monoeg_g_ascii_xdigit_value) +STUB( + "81W8PHnGLHY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE5abortEv) +STUB("81Yimq-MfUY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEmmEi) STUB("81ZjjD6MqDk", sceSpNetResolverAbort) +STUB( + "81bW0Z+IalE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEppEi) +STUB("81cc-11uj3k", _ZNK7WebCore8Position24computeNodeAfterPositionEv) +STUB("81dEoicalyk", WKBundleSetApplicationCacheOriginQuota) +STUB("81dRKj9s7JA", _ZN7WebCore9HTMLNames12codebaseAttrE) +STUB("81eO-evrZWU", uhash_compareLong) +STUB("81hRRuj67UY", mono_profiler_get_current_time) +STUB( + "81iR49ahSuo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "81pAHILAnpI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE4termEv) +STUB( + "81r--0UCLz4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE8copyFromERKS9_) +STUB( + "81rqZbXtzMY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "81svbZawAfQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE5clearEv) +STUB("81uX7PzrtG8", _ZNKSt7collateIwE9transformEPKwS2_) +STUB("81vTH6onyXk", _ZN7WebCore9FrameTree11appendChildERNS_5FrameE) +STUB("81vsDhbLa9I", _ZN3sce7Toolkit2NP2V27Session11SessionDataC2ERKS4_) +STUB( + "81w0cOjyw3k", + _ZN7WebCore9JSDOMRectC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_7DOMRectENS6_13DumbPtrTraitsIS8_EEEE) +STUB("82+1IlmM2LQ", RecvThread) STUB("821E7f26Dy0", sceCesGbUcsProfileSet4ByteCharRange) +STUB("825l3ahMQb8", usprep_open_67) +STUB( + "82A8MKH2JSc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("82Es1Z7OX18", _ZNK3JSC12JSRopeString33resolveRopeToExistingAtomicStringEPNS_9ExecStateE) +STUB( + "82GuTM0VS-E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEixEm) +STUB("82J08GIspUI", _ZN3sce2Np9CppWebApi7Matches2V123RequestTeamMemberResult8setScoreERKd) STUB("82RP7itI-zI", sceNpTusGetMultiUserVariableForCrossSaveVUserAsync) +STUB( + "82SDMVCgjFY", + _ZN9Inspector26AnimationBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) +STUB("82TFNb9cc-w", pio2_3thi) +STUB("82U+y3yxaqg", __asan_stack_free_2) +STUB("82UnAk1CC98", SoundInitialize) +STUB("82ZOvyi9kZs", _ZN7WebCore8Document25createCSSStyleDeclarationEv) +STUB("82a6n7tJLoY", mono_aot_Sce_Vsh_UpdateServiceWrapperunbox_trampoline_addresses) +STUB("82bVw8qSCFc", WKFramePolicyListenerUseWithPolicies) STUB("82k2MzTAs3U", sceFsUfsAllocateDownloadData) +STUB("82mYiWFCqJk", _ZN3JSC11RegisterSet25reservedHardwareRegistersEv) +STUB("82mm6jhmlXM", _ZNK7WebCore14FrameSelection11currentFormEv) +STUB("82n4LwLnE3s", WKFrameGetFrameLoadState) +STUB("82ndriDYXu0", GCC_except_table221) +STUB( + "82sNxa7EYcU", + _ZN3sce2Np9CppWebApi14SessionManager2V127GetGameSessionsResponseBodyC2EPNS1_6Common10LibContextE) +STUB( + "82wbxAvTXYY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE10setContextEPNS2_10LibContextE) +STUB("82xkxfc-r-A", usearch_handleNextCanonical_67) +STUB("82yg+EfjqV4", _ZNK3WTF9MediaTimentEv) STUB("833Y2TnyonE", sceNpTusGetMultiSlotDataStatusA) +STUB( + "834ooMhjNJ0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEdeEv) +STUB( + "835EfUG6rEI", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("835p-ywJWEY", + _ZN15AbstractStorage14YoutubeContent11SetMetadataEPN23sceMetadataReaderWriter8MetadataE) +STUB( + "837DYewRfHE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEptEv) +STUB( + "838uDrE90fI", + _ZN7WebCore11JSDOMWindow17defineOwnPropertyEPN3JSC8JSObjectEPNS1_14JSGlobalObjectENS1_12PropertyNameERKNS1_18PropertyDescriptorEb) +STUB( + "83Fl-otnL8w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEmmEv) +STUB( + "83JP9l62vqs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEEC2ERKSA_) +STUB( + "83KhGMADM4g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE6resizeEj) +STUB( + "83MOvok5m9k", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10getString6Ev) +STUB( + "83OKvIJ9hQk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEEaSERSA_) +STUB( + "83Ofz1vAtEE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE5clearEv) +STUB("83OhUgcv-zM", initThread) +STUB( + "83PJ6KaX-rk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB("83PjroiDmFI", _ZNK3sce2Np9CppWebApi14SessionManager2V15Error9getSourceEv) +STUB("83TnXMiZhoI", _ZN7WebCore7Element18insertAdjacentTextERKN3WTF6StringES4_) +STUB("83UuBEtf9QI", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend16FriendsOfFriendsEE12deepCopyFromERS7_) +STUB( + "83XLUkhFKGw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "83fgB0siJ7k", + _ZN7WebCore8JSPath2DC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_6Path2DENS6_13DumbPtrTraitsIS8_EEEE) STUB("83i-0wbUtlM", ScePsmMonoStringLength) +STUB("83kEPQNWy8A", _ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEED1Ev) +STUB("83lbPafRjgU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16UnlockedTrophiesEED1Ev) STUB("83leZmsmmT4", sceSystemServiceTelemetrySetData2) +STUB( + "83mM1ifu19I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE8pushBackERKS8_) +STUB( + "83nJQFiYJQQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEE11get_deleterEv) +STUB("83qtpn8+XnA", FTA_Support_Format_TrueTypeGx) +STUB( + "83rZr6+U0Sk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEE11release_refEv) +STUB("83tS6HRLhis", _ZNK7WebCore12RenderObject7childAtEj) +STUB( + "83uSe2hJdXk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEE6assignEPS7_PFvS9_EPNS2_10LibContextE) +STUB( + "83zps7rYDxo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("845S2XQdxhw", hb_buffer_set_direction) STUB("845enllqZOA", sceHeadTrackerFinalize) +STUB("846dTS0lJxA", _ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForReadD1Ev) +STUB("848+jm1RbPw", png_get_sPLT) +STUB("84955-7DGwQ", _ZN7WebCore11ImageBufferD1Ev) +STUB( + "84B3mHn08eY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB( + "84GvFNxlHu4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) STUB("84H-GMsBU6M", sceMbusUserLogin) +STUB("84MgU4MMTLQ", sce_net_in6addr_linklocal_allnodes) +STUB("84UvB5bVu40", mono_aot_Sce_PlayStation_Orbisunwind_info) +STUB("84YmzSlL7xM", __asan_store2_noabort) +STUB( + "84aS8IPKiZs", + _ZN7WebCore26MessagePortChannelRegistryC1EON3WTF8FunctionIFvRKNS_21MessagePortIdentifierENS1_16ObjectIdentifierINS_21ProcessIdentifierTypeEEEONS1_17CompletionHandlerIFvNS_26MessagePortChannelProvider11HasActivityEEEEEEE) +STUB("84c6B5MNTY4", _ZN7WebCore9HTMLNames12behaviorAttrE) +STUB("84exS0Tz93A", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge18ChallengeThumbnailEEC2Ev) STUB("84fDxStrG44", sceDeviceServiceInitialize) +STUB( + "84hNJSiDVh0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEC1ERKS8_) STUB("84mvEJFMYK4", sceKeyboardGetDeviceInfo) +STUB( + "84nex+7YQBE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE3endEv) +STUB( + "84u6QQ8OcuA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE10setContextEPNS2_10LibContextE) +STUB("84wFdzYjYWM", _ZN3sce7Toolkit2NP2V210Tournament7BracketC1Ev) +STUB("84wIPnwBGiU", _ZNSt7collateIwED2Ev) +STUB( + "85+okwrvJ94", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEptEv) +STUB( + "85227V--Iwg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEmmEv) STUB("852F5+q6+iM", sceVideodec2Decode) STUB("8533Q+LU7EQ", sceNpLookupCreateTitleCtx) STUB("853R8RXtPMY", sceKernelWriteDipswData) +STUB( + "853nwXOanco", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEaSERKS9_) +STUB("85Dwu5xralY", _ZNK9Inspector14FrontendRouter16hasLocalFrontendEv) +STUB( + "85FBoqCoG2c", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEptEv) +STUB( + "85Nbm8Nxlhw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEC1EPNS2_10LibContextE) +STUB("85O5VmSVqmI", RnpsGetOpenPsIdForSystem) STUB("85QMKsnns2o", sceKernelGetResource) STUB("85RI6pMiI6c", sceFaceTrackerRegisterRecoveryFromLostTargetCallback) +STUB("85S6tE7Yj9Q", _ZN3JSC6JSCell7destroyEPS0_) +STUB("85VvItGKSso", _ZN3WTF10StringView11SplitResult8Iterator17findNextSubstringEv) +STUB( + "85XYuzKCx1w", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEEptEv) +STUB( + "85YAQEkfES4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEC1EPKS8_) +STUB("85YHrhvEUZg", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetail10setmatchIdEPKc) STUB("85ZWdzWYgas", sceNpServiceCheckerIntDestroyRequest) +STUB( + "85a1O1NX+U4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEEC2Ev) +STUB("85dgws57jQI", _ZN3JSC16InternalFunction6s_infoE) +STUB("85ihBnbDmN4", mono_object_new_fast) +STUB("85japawIVRs", mono_aot_Sce_Vsh_Np_RifManagerunbox_trampolines) +STUB("85uJvC0LtH8", InitializeEncoding) STUB("85v1KZeMTgU", sceAvSettingCloseLoopbackBuffers) +STUB("85x+9X--y44", mono_aot_Sce_Vsh_KernelSysWrapperjit_code_start) +STUB("85zfUWmEezc", _ZThn672_N7WebCore24CoordinatedGraphicsLayer19imageBackingVisibleEv) STUB("85zul--eGXs", sceSaveDataSetParam) +STUB( + "86-n0Cirtws", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEdeEv) +STUB("863+6F5aaJc", _ZN4Manx9X509chainD2Ev) +STUB( + "863CFlOqZW0", + _ZNK3sce2Np9CppWebApi14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBody6toJsonERNS_4Json5ValueEb) +STUB("863Xi0RSKcM", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13FriendsOfUserEED2Ev) +STUB("864pTeUZkns", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEEC1Ev) +STUB( + "86C8N-j5GaY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE21intrusive_ptr_add_refEPS9_) +STUB("86CYbamMKg8", dwarf_reg_state_pool) +STUB( + "86FLn7MZ8S0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEC2EPKS8_) +STUB("86FcCWrjlLI", _ZTVN9Inspector24ConsoleBackendDispatcherE) +STUB( + "86IBBgOtSEg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB( + "86IbuPuDwmU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEC2Ev) +STUB("86JgtVBApTw", _ZNK7WebCore6Quirks29shouldAvoidUsingIOS13ForGmailEv) +STUB("86S44SnCgU0", mono_class_num_methods) +STUB("86ZN9dRzLSY", + _ZN7WebCore24CoordinatedGraphicsLayer18setBackdropFiltersERKNS_16FilterOperationsE) +STUB("86db-POgDaM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEED1Ev) +STUB( + "86jNzbmb9Xk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEE3getEv) +STUB( + "86kYpKZYi6k", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE5emptyEv) +STUB("86mSgXjesi4", + _ZN7WebCore15StringTruncator15rightClipToWordERKN3WTF6StringEfRKNS_11FontCascadeERfbfb) +STUB( + "86mWM4V6g4o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEC2ERKS7_) +STUB( + "86snHoZux4Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEC1Ev) +STUB("86w9gD5145M", _ZNK9Inspector14ConsoleMessage7isEqualEPS0_) +STUB( + "86xobPwKnxM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEC2ERS7_) +STUB( + "8707T3pvVL0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEneERKS9_) +STUB("8748CMwOfzs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEaSERS7_) +STUB( + "876gm+oXa-g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEixEm) +STUB("87Evced-ubg", __tsan_read8_pc) +STUB("87GekE1nowg", _ZNK3sce16CommonDialogUtil6Client8isFinishEv) +STUB( + "87GxEszTWHE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEE11release_refEv) +STUB( + "87H0FX-vmYY", + _ZN3JSC12StringObject17defineOwnPropertyEPNS_8JSObjectEPNS_9ExecStateENS_12PropertyNameERKNS_18PropertyDescriptorEb) +STUB("87JaFrM3K-U", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11EntitlementEEC2ERKS4_) +STUB("87OOTOeB8pE", _ZNK3WTF6String10tryGetUtf8Ev) +STUB( + "87RkCcOK8EI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEC2Ev) +STUB("87ZDz6-kBq8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEED1Ev) +STUB("87blI6UBBRg", YGConfigFree) +STUB("87c5Woa1HE8", _ZNK7WebCore8Document31defaultCharsetForLegacyBindingsEv) STUB("87efDBqDEao", sceMbusStartAudioOutAuxBroadcast) +STUB("87gr-QVAD0A", _ZN3sce7Toolkit2NP2V24Core7Request20DefaultRequestParamsD2Ev) +STUB("87hyvGGe1qo", Java_com_sony_gemstack_org_dvb_application_AppProxyImpl_n_1initialisation) STUB("87ivWj5yKzg", sceNpWordFilterWaitAsync) +STUB("87kuO6Vb384", mono_aot_Sce_Vsh_Friendjit_code_start) +STUB( + "87mnHfWxrbQ", + _ZN9Inspector8Protocol13BindingTraitsINS0_8Debugger9CallFrameEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE) +STUB("87rZESXTlek", _ZN7WebCore11DisplayList4ItemC2ENS0_8ItemTypeE) STUB("87tCXR9gXkg", sceAppInstUtilAppInstallPs4CloudGame) +STUB("87y0cjK5WrY", + _ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer12unsetNatTypeEv) +STUB("87yC0cEoCyg", _ZN12video_parser7cVpUtil15SwapUTF16EndianEPwS1_i) +STUB("88+PrKBUNhA", udat_close_59) STUB("88+nqBN-SQM", sceUserServiceGetSaveDataTutorialFlag) +STUB("88-YlkMyvPM", mono_btls_ssl_write) +STUB("884z2EqDTyQ", _ZNK7WebCore11MediaPlayer9startTimeEv) +STUB( + "887+b0g69Hw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEEdeEv) +STUB("8897qt4Jsc0", _UTF32Data_67) +STUB("88AHlMQMY2k", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE5beginEv) +STUB("88Dsmx1Nj+A", _Z26Camera_SetConfigTypeNativeii) +STUB("88EV-EV0PYM", mono_aot_Sce_Vsh_WebViewDialogjit_got) +STUB( + "88EpPjvWJjQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEED1Ev) +STUB( + "88EqqbmEaR8", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V137MatchCompletionRateQuitMetricsFactory7destroyEPNS3_30MatchCompletionRateQuitMetricsE) +STUB("88EyUEoBX-E", _ZNSt6chrono12system_clock9is_steadyE) +STUB("88Fre+wfuT0", _ZTSSt23_Generic_error_category) +STUB("88GKkivBFhI", _ZN3sce2np8JsonNull5ClearEv) +STUB("88I6OPWzc-U", mono_aot_Sce_Vsh_DbRecoveryUtilityWrapperunwind_info) +STUB("88Oyd0j2VfQ", _ZN3WTF6Thread7suspendEv) +STUB("88QdTuQS0oc", CONF_modules_load_file) +STUB( + "88Rk5FV9QAs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE5beginEv) +STUB( + "88UbrMfFKzs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEcvbEv) +STUB("88Vv-AzHVj8", fmodf) +STUB("88WaPmXp6x8", hb_font_funcs_set_nominal_glyph_func) +STUB( + "88XrTtyQbT8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEmmEv) +STUB("88aTQZOp3eA", _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile8fromJsonERKNS_4Json5ValueE) +STUB( + "88gadX30Byc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEC1Ev) +STUB("88menXYWpBk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V113ErrorResponseC1EPNS1_6Common10LibContextE) +STUB( + "88qH1oSHZbk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "88rursjFF-M", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB( + "88t6keST3jo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEC1Ev) +STUB("88unzk13gEs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEE7get_refEv) STUB("88y5DztlXBE", sceSystemStateMgrLeaveMediaPlaybackMode) STUB("8927Cl0rvug", ScePsmMonoRegisterBundledAssemblies) +STUB("8956F1voabk", _ZNK7WebCore20ResourceResponseBase34cacheControlContainsMustRevalidateEv) +STUB("899jyvgvJO8", _ZN3JSC4Yarr17RegularExpressionD2Ev) +STUB( + "89BoJ5b2fFI", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot17hasnpServiceLabelEv) +STUB( + "89Gygek6oq0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEdeEv) +STUB( + "89LiiDxQx3M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE7popBackEv) +STUB("89M9XjRxHE8", Java_com_sony_bdjstack_security_aacs_AACSOnline_getDeviceBindingID) +STUB("89P-nyi1gYk", _ZN3sce2Np9CppWebApi6Common8IteratorINS2_17ParameterBaseImpl6KeySetEEaSERKS6_) +STUB( + "89bIOQowhu0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEC1EPKS8_) +STUB("89bUBaCrC8Q", _ZN7WebCore9HTMLNames22ontransitioncancelAttrE) +STUB( + "89g6fgUA5L0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEC2EPNS2_10LibContextE) +STUB( + "89gkRsbcr-E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEE7add_refEv) +STUB( + "89knq0nSPoc", + _ZN9Inspector21DOMFrontendDispatcher22inlineStyleInvalidatedEN3WTF6RefPtrINS1_8JSONImpl7ArrayOfIiEENS1_13DumbPtrTraitsIS5_EEEE) +STUB("89nOgT5lSMw", mono_conc_hashtable_destroy) +STUB("89qRV3WqaJw", mono_aot_Sce_Vsh_MimeTypemethod_addresses) +STUB( + "89wcgASEQBE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "89zzumsNiKY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEptEv) +STUB("8A0cAU4yBVY", FT_Render_Glyph_Internal) +STUB("8A0knFNsfrQ", _ZN9Inspector24CanvasFrontendDispatcher13canvasRemovedERKN3WTF6StringE) STUB("8A4T5ahi790", sceHmdDistortionSetOutputMinColor) +STUB("8A75eH1+SK0", _ZN3sce2Np9CppWebApi6Common6VectorIdED2Ev) STUB("8A7Zj+CRIoY", sceMbusDebugStartApplicationNull) +STUB( + "8A9L2obyGFE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEC1EPS8_) STUB("8AFfaImRNvM", sceAppInstUtilAppGetIrremovableAppList) +STUB( + "8AQuyjQVvaY", + _ZN3JSC8Bindings13RuntimeObject12defaultValueEPKNS_8JSObjectEPNS_9ExecStateENS_22PreferredPrimitiveTypeE) +STUB("8ASJ+Z8ucho", mono_btls_x509_lookup_init) +STUB("8ATBwVI+xfE", JSObjectIsConstructor) +STUB("8AXPL-1ruuw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE7popBackEv) +STUB("8Aa+vkMrTB8", cairo_matrix_invert) +STUB("8Ad6pf9G7cY", SSL_library_init) +STUB("8AgQaMFPjgk", WKPreferencesSetIsNSURLSessionWebSocketEnabled) +STUB("8ArIPXBlkgM", _ZGVNSt8numpunctIwE2idE) +STUB( + "8As89jEbWGA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEE3getEv) +STUB("8AyNCecdJu4", utrie_clone_67) +STUB("8B1ma0irGss", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEE3getEv) +STUB( + "8B41JC1gqpg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE3endEv) +STUB("8B4VW7ug08U", _ZNK7WebCore13ContainerNode15countChildNodesEv) +STUB( + "8B5MxMQaVzI", + _ZN9Inspector17ScriptDebugServer27dispatchFunctionToListenersEN3WTF8FunctionIFvRNS_19ScriptDebugListenerEEEE) +STUB( + "8B8H8IWRMNc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "8B9oK2Syz9U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEmmEi) +STUB("8BAjfnje7GE", mono_aot_ReactNative_Modules_Vshmethod_addresses) +STUB( + "8BF0G0pf8+k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE3endEv) STUB("8BLW2WiSIuI", sceFiosDebugDumpError) +STUB( + "8BMw6McaE1E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE21intrusive_ptr_sub_refEPS9_) STUB("8BNxNGzXcIc", sceImeBackendReset) +STUB("8BOJm7jP1i0", _ZN3JSC7JSProxy12isExtensibleEPNS_8JSObjectEPNS_14JSGlobalObjectE) STUB("8BOObG94-tc", scePadSetVibrationForce) +STUB("8BR72pm2o88", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEED2Ev) +STUB("8BSBAkpmLJs", _ZN7WebCore11MathMLNames18subscriptshiftAttrE) +STUB("8BTv1JN+kDg", Java_com_sony_bdjstack_javax_media_controls_SoundManager_getIndex) STUB("8BVP56JIZuA", sceNpFriendListDialogGetStatus) +STUB("8Bcr6Nlg7SM", _ZN3sce7Toolkit2NP2V24Core17CustomRequestBase20setCustomServiceTypeEi) +STUB( + "8BdtbbqfB4Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE21intrusive_ptr_add_refEPS7_) +STUB("8BmNb6bfcL0", FTC_Manager_RemoveFaceID) +STUB("8BpjJImTYOo", _ZNK7WebCore8Document29useElevatedUserInterfaceLevelEv) STUB("8BrtU9maWG4", sceKernelGetCompiledSdkVersionByPid) +STUB( + "8Bry08-yF5Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE7reserveEi) +STUB("8BthJlBF8h0", _ZN7WebCore8SVGNames6k4AttrE) +STUB( + "8BtuRKRkAgI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEED2Ev) +STUB("8Bx9GhcwKv8", _ZN3sce7Toolkit2NP2V23TUS7Request10DeleteData19MAX_DATA_REAL_SLOTSE) +STUB("8BxDHnQxrtY", vzone_inDaylightTime_67) STUB("8By20nPynEo", sceAudioOutSetPadSpkVolume) +STUB("8C36kDPJiS0", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession16setSwapSupportedERKb) +STUB("8C8b5+pKTlU", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody7getInfoEv) +STUB( + "8C9IaVK7-aU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEEC2ERSB_) +STUB("8CAmAEvRBAs", mono_class_is_valuetype) +STUB( + "8CHxiX0aRWU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("8CJiPTZPzxc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEEC1Ev) +STUB( + "8CKXZM9mjBk", + _ZN7WebCore8Document5writeEPS0_ON3WTF6VectorINS2_6StringELm0ENS2_15CrashOnOverflowELm16ENS2_10FastMallocEEE) +STUB( + "8CPV-vR4yeQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEC1Ev) +STUB( + "8CPfbVza4TM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEmmEi) +STUB("8CQ6hvaP02M", JVM_NewMultiArray) +STUB( + "8CVvo-jduN8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEdeEv) +STUB("8CZkNnI1+r8", _ZN7WebCore18PlatformTimeRangesC2ERKS0_) +STUB("8Ce6O0B-KpA", _ZTSPKe) +STUB("8Cj4mypVxeM", _ZN3sce7Toolkit2NP27GetSharedScreenshotsRequestC2Ev) STUB("8CqniKDzjvg", sceNpMatching2SignalingGetPeerNetInfo) +STUB("8CruzjvpOpo", u_uastrncpy_67) +STUB( + "8CtsKespKNg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEptEv) +STUB("8CvUXZP4Gsc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEED1Ev) +STUB( + "8CvY6xwM+hA", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("8D2GMMAmpC8", JSObjectGetTypedArrayBuffer) +STUB("8D2X+-YRqik", _ZN3sce2Np9CppWebApi6Common8IteratorImEC1EPm) +STUB( + "8D4i-I2CgTs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEC1Ev) +STUB( + "8D6av0fSwYA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEE7get_refEv) +STUB("8DA2XBZ-VqY", _ZN7WebCore14ScrollableAreaC2Ev) +STUB( + "8DGbe-oZ0XU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEC2Ev) +STUB( + "8DJJb9wBoSY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEEaSERKSA_) +STUB("8DLBHeMsS1k", FcFontSetMatch) +STUB("8DNJW5tX-A8", _ZNSt18bad_variant_accessD0Ev) +STUB("8DP3Cufk2xw", _ZN3WTF8CollatorC1EPKcb) STUB("8DPEdJh9RkE", sceNpLookupNetCreateTitleCtx) +STUB("8Dbbtb+SL8I", g_isConnect) +STUB( + "8DeFzeqIDfQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEC2Ev) +STUB("8Dnr5-1OA-A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEEppEv) +STUB("8Do8auuWdlI", Java_com_sony_gemstack_org_dvb_application_AppsDatabaseImpl_n_1init) +STUB( + "8DpRIrt+JH4", + _ZN7WebCore14ScrollableArea31adjustScrollStepForFixedContentEfNS_20ScrollbarOrientationENS_17ScrollGranularityE) +STUB("8DrClRz7Z2U", _ZN3sce2np9RefObjectD0Ev) +STUB("8DvXQqbHbJU", _ZN7WebCorelsERN3WTF10TextStreamERKNS_10LayoutSizeE) +STUB("8E1w2JMg4VU", _ZN7WebCore22SkewTransformOperationD0Ev) +STUB("8E3Sd4-xS-E", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEE7add_refEv) +STUB("8E3xiDBHzeg", _ZN7WebCore8SVGNames10polygonTagE) +STUB("8E8iEeuyUks", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16UnlockedTrophiesEE3getEv) +STUB( + "8EGe9LUfDTc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("8EI2YIBPufQ", _ZNK7WebCore20TransformationMatrix17toAffineTransformEv) +STUB( + "8EJGA3zVb7M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "8EKL1meARlk", + _ZN7WebCore21NetworkStorageSession43setPrevalentDomainsToBlockButKeepCookiesForERKN3WTF6VectorINS_17RegistrableDomainELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("8EQ1k-45LF0", WKPreferencesSetCaptureAudioInGPUProcessEnabled) +STUB( + "8EUdVL-7VzI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEED2Ev) +STUB("8EWKZMal51w", _ZN3WTF10StringImpl17s_emptyAtomStringE) +STUB( + "8Een5Jg-PiI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEdeEv) +STUB("8Ef68e31YjA", _ZNK15AbstractStorage17DailymotionFolder7GetStatEPNS_4StatE) +STUB("8Elqwzjf6KQ", _ZN3WTF18ExternalStringImpl6createEPKDsjONS_8FunctionIFvPS0_PvjEEE) +STUB( + "8Etv6zGHjJ0", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Console14ConsoleMessage4TypeEEEN3WTF8OptionalIT_EERKNS6_6StringE) +STUB("8Eue157jhDI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEaSERS7_) +STUB( + "8EuesH8mP8c", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB("8F-6OAVX8Ao", _ZNK7WebCore26HTMLTextFormControlElement26isInnerTextElementEditableEv) +STUB( + "8F0fIFfuGTI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEC1EPS8_) +STUB("8F1ctQaP0uk", roundl) +STUB("8F52nf7VDS8", __eqdf2) STUB("8F5j7U-Bq6s", sceAgcDriverSetValidationErrorOutputFrequency) +STUB("8F6QVB0ji1U", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody7setInfoEPKvm) +STUB("8FBD-Rkv4hQ", _ZN3JSC16InternalFunction11getCallDataEPNS_6JSCellE) +STUB("8FEjLQwRnwI", _ZN7WebCore24DeprecatedGlobalSettings37gResourceLoadStatisticsEnabledEnabledE) +STUB("8FGEdlmruQQ", mono_btls_ssl_print_errors_cb) +STUB("8FKB-KCBLXU", _ZN9Inspector21InspectorConsoleAgentnwEm10NotNullTagPv) +STUB( + "8FKOd3YZuoM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("8FQEz+Hqbyk", _ZN7WebCore32serializationForRenderTreeAsTextENS_5SRGBAIhEE) +STUB( + "8FTpAEAojpQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("8FZB4rMZL7A", _ZN7WebCore18TextureMapperLayerD1Ev) +STUB("8FZCwSl5aL0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEaSERKS7_) +STUB( + "8Fd1eEeR0IE", + _ZN3sce2Np9CppWebApi14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyC2EPNS1_6Common10LibContextE) +STUB( + "8FmKXIqakAY", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("8FqgR3V7gHs", CERT_getCertExtension) STUB("8FuvovbHui4", sceCesRefersUcsProfileJisX0201RomanTilde0x7e) +STUB("8FvyUwk9vRM", mono_aot_Sce_PlayStation_PUIPlatformjit_got) +STUB( + "8G-HUUvIAto", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEEcvbEv) STUB("8G2LB+A3rzg", atexit) +STUB("8G392ayhCbI", _ZN7WebCore13CSSStyleSheet10insertRuleERKN3WTF6StringEj) +STUB("8G7TUQzUXk8", + _ZN3sce2Np9CppWebApi7Matches2V120RequestMemberFactory7destroyEPNS3_13RequestMemberE) +STUB( + "8G9Aa6kloPo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEptEv) +STUB("8GJivKkXZrk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE3endEv) +STUB("8GM-Z1J8310", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEaSERKS7_) +STUB( + "8Ga6nwquwFE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEeqERKS9_) +STUB( + "8GeMfG+Kldk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEEC2ERSA_) +STUB("8Gfarwyi-y0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEED2Ev) +STUB("8GjM2JWuepQ", mono_set_assemblies_path) STUB("8GkaY2B7opM", sceHmd2ReprojectionGetStatus) +STUB("8Gl+aYTYdtU", WKPageSetPageLoaderClient) +STUB("8Gn4CQddSsQ", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku9typeIsSetEv) +STUB( + "8GoSXz0dBBQ", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEEiRNS2_10LibContextEPT_m) +STUB( + "8GvlEJm62g4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEC2EPS8_) +STUB("8GwVKh0hWOg", _ZThn120_N7WebCore9DOMWindowD0Ev) +STUB("8H3yBUytv-0", _ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED0Ev) +STUB("8H5jn8fhm1I", jpeg_fdct_10x10) +STUB("8H8WT7VeOgg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEC2Ev) +STUB( + "8HDehIOfxDQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEppEi) +STUB("8HJxlMVRFTU", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11EntitlementEEC2Ev) +STUB( + "8HLtmjHT6fs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEE7get_refEv) +STUB( + "8HOjWgy3dR4", + _ZThn16_N9Inspector21InspectorRuntimeAgent14callFunctionOnERN3WTF6StringERKS2_S5_PKNS1_8JSONImpl5ArrayEPKbSB_SB_SB_RNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISF_EEEERNS1_8OptionalIbEE) +STUB("8HVu8ydUmLM", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEEC1Ev) +STUB("8HhxNMSnlT4", g_VideoOutReprojectionRate) +STUB( + "8HihWxY-UcU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEEC2Ev) +STUB("8HrKWYwzjJ0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth8AuthCodeEEC2Ev) +STUB( + "8HspV0A0Jas", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("8HuwT+hKGGg", _ZN3sce7Toolkit2NP2V210Tournament7Request18GetRegisteredUsersC1Ev) +STUB("8I1tIrw0dvg", SSLeay) +STUB( + "8I51JwvRKtA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEC2EPS8_) +STUB("8I7xekkfFhQ", NetCtlCheckCallbackNative) +STUB("8ICL-Sn5+2k", GCC_except_table269) +STUB("8IEd1z5hqb8", _ZN9Inspector21InspectorConsoleAgentnwEmPv) +STUB("8IFjpT4vpdU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEaSERKS7_) +STUB( + "8IG0UPDEbEo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEppEv) STUB("8IGjwtnvYwI", sceFiosIsValidHandle) +STUB("8IQWkMybIwg", ucnv_isAmbiguous_67) +STUB("8IR1mG6ZOnM", _ZN7WebCore13HitTestResultC1ERKNS_11LayoutPointE) +STUB("8IRMbYCNJ8w", + _ZN8meta_gen13TiffRetriever10InitializeEP23PromoteInnerInformationiN9db_schema9CodecTypeE) STUB("8IS0KLkDNQY", sceHmdInternalSetVirtualDisplayDepth) +STUB("8IU-yTBbKCc", _ZN3sce7Toolkit2NP2V24Core7Request11MemoryPools27NP_TOOLKIT_MEM_DEFAULT_SIZEE) +STUB("8IWKA5xjoIw", _ZN3JSC16callCustomSetterEPNS_14JSGlobalObjectEPFbS1_llEbNS_7JSValueES4_) +STUB("8IX8TlRX0DQ", _ZN7WebCorelsERN3WTF10TextStreamERKNS_13GraphicsLayer16CustomAppearanceE) +STUB( + "8IbgLa95tAQ", + _ZN3sce2Np9CppWebApi14SessionManager2V128ResponseGameSessionSpectatorC1EPNS1_6Common10LibContextE) STUB("8Ick-e6cDVY", sceHmdGetDistortionWorkMemoryAlign) +STUB( + "8Ida2cof78g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE8pushBackERKS8_) +STUB("8IhWWA-uhGA", _ZN7WebCore9HTMLNames11patternAttrE) +STUB( + "8IjY9r0i9WE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE21intrusive_ptr_sub_refEPS9_) +STUB("8Ijs9yzqVTU", _ZTVN9Inspector18InjectedScriptHostE) +STUB("8Ijx3Srynh0", _ZTIx) +STUB("8Il7b6+ndo8", _ZNK15AbstractStorage14FacebookFolder7GetStatEPNS_4StatE) +STUB( + "8IlfO9IvjJM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEEaSERKSA_) +STUB( + "8Im2f8F6JF0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE5emptyEv) STUB("8IqdtMmc5Uc", sceUserServiceGetGlsIsCameraHidden) +STUB("8ItkKGIHJmE", _ZNK3WTF3URL28queryWithLeadingQuestionMarkEv) +STUB("8Iu0hJTTkXM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEEC1Ev) +STUB("8J-ZWqhJC+0", + _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBodyC2EPNS1_6Common10LibContextE) +STUB("8J3ctSNLYQg", _ZN7WebCore23CoordinatedBackingStoreD1Ev) +STUB("8J3ibSyXSGU", mono_shared_hashtable_lookup) +STUB("8J50bwny9H4", _ZN7WebCore20DictationAlternativeC2Ejjm) +STUB( + "8J8vzvxnD4c", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer39setxPSNSESSIONMANAGERREQUESTEXACTORIGINEPKc) +STUB("8JA1CHE5IGw", _ZNK7WebCore7Element10shadowRootEv) +STUB("8JBVcsTZCBo", _ZN7WebCore8SVGNames19animateTransformTagE) +STUB("8JDGfjB7ysY", _ZN10Deprecated11ScriptValueC2ERKS0_) +STUB( + "8JEMpKFSVJ8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEeqERKS9_) +STUB("8JGR6pBb0+w", _ZN3sce7Toolkit2NP2V27Ranking17GetGameDataResult5resetEv) +STUB("8JHXNHuOCIw", EVP_CIPHER_CTX_set_padding) +STUB( + "8JIiF5qYZGU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB( + "8JKAj5Mkwug", + _ZN3sce7Toolkit2NP8Commerce9Interface18consumeEntitlementERKNS1_29ConsumeEntitlementInputParamsEb) +STUB( + "8JQ-G9JbCws", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEEC2EPS6_PNS2_10LibContextE) +STUB( + "8JQKcnfU9Mc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEC1ERKS7_) +STUB("8JTDrZtcRDQ", _ZNSt15basic_streambufIwSt11char_traitsIwEE8pubimbueERKSt6locale) STUB("8JX-S2ADen4", _sceNpManagerFreeImpl) +STUB("8Ji9q7l-y1I", WKViewDidEnterFullScreen) +STUB("8Jiiv4OS0eg", _Fofindbyfd) +STUB( + "8Jili043MPE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEE11get_deleterEv) +STUB("8JluKlHujk0", delegate_invoke_impl_target_2) +STUB( + "8JquVOUAluY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEEaSERS9_) +STUB("8Jr4cvRM6EM", _Getgloballocale) +STUB("8JrILsiO4Ik", _ZNK7WebCore6Widget23convertToContainingViewERKNS_10FloatPointE) +STUB("8Jrc5Nub3mY", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForReadC2EPNS1_6Common10LibContextE) +STUB( + "8JsDEb4m1Eo", + _ZN9Inspector25NetworkFrontendDispatcher16responseReceivedERKN3WTF6StringES4_S4_dNS_8Protocol4Page12ResourceTypeENS1_6RefPtrINS5_7Network8ResponseENS1_13DumbPtrTraitsISA_EEEE) +STUB( + "8JtnXETnzQk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE7popBackEv) +STUB( + "8Jz-3wGewAI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("8K-LVDYy0bo", + _ZN3sce7Toolkit2NP2V29Messaging7Request19SendGameDataMessage21MAX_SIZE_TEXT_MESSAGEE) +STUB("8K3JHuxGxGQ", _ZN3sce7Toolkit2NP9Utilities6FutureI19SceNpTrophyGameDataEC2Ev) +STUB("8K7BukmOdO0", _ZN7WebCore9HTMLNames24onwebkitanimationendAttrE) +STUB("8K82kJxF4+w", mono_aot_Sce_Vsh_JsExtensionunwind_info) +STUB( + "8KC8ONrb2tA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEC1EPNS2_10LibContextE) STUB("8KDMful7g1Y", sceKernelSlvNotifyError) +STUB("8KHh+VefZDM", errno) +STUB("8KHszvU2Fbg", mono_aot_Sce_Vsh_Np_ServiceChecker2unwind_info) STUB("8KMULEIpDx8", sceCesEucKrToUtf32) +STUB( + "8KUbcGHFkxo", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE10setContextEPNS2_10LibContextE) +STUB("8KW0UiKR9wg", _ZSt9use_facetISt7collateIcEERKT_RKSt6locale) +STUB("8KXX2Cg3q5I", WKWebsiteDataStoreClearDiskCache) STUB("8Kcp5d-q1Uo", sceNetInetPton) +STUB("8Ke1wu8fnVQ", GCC_except_table11) +STUB("8Ke58pr-Nn0", _ZNK3JSC8Bindings13RuntimeObject19getInternalInstanceEv) +STUB("8KeeeFcEdls", _ZNSt10filesystem5_StatEPKcPNS_5permsEPi) +STUB( + "8KfpQloQjDs", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEED1Ev) +STUB( + "8KgBrkXcMrU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEE7add_refEv) STUB("8Kh+1eidI3c", sceNetConfigSetIfaddr) +STUB("8KiOeSAspEg", WKBundlePageSetBottomOverhangImage) STUB("8KjtCpKz0GQ", sceFrontPanelDisplaySetOutputMode) STUB("8Kly1JrJUlw", sceAgcAcbPushMarkerSpan) +STUB("8KnO2N9rsSE", + _ZNK3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform14sessionIdIsSetEv) +STUB("8Kowq53G00s", _ZN7WebCore8SVGNames6ryAttrE) STUB("8KrqbaaPkE0", sceUsbdFillControlSetup) +STUB("8KtiLiHVP5k", ucase_toFullUpper) +STUB("8KwflkOtvZ8", __atomic_load_8) +STUB("8L1yrPX3z0A", _ZN3sce2Np9CppWebApi14SessionManager2V115LocalizedStringD2Ev) +STUB( + "8L3IHfQVP54", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEEptEv) +STUB( + "8L7KWh4++44", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "8LAJxeUdlfk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEplEm) +STUB( + "8LBflhrBEPw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEE5resetEPS9_) +STUB( + "8LGg0xUkMkc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE5emptyEv) +STUB( + "8LH8hFtY9rw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEC2EPKS8_) +STUB( + "8LIaCdC-AwM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEC1EPKS8_) +STUB("8LJOLHmWey4", _ZN7WebCore11MediaPlayer17seekWithToleranceERKN3WTF9MediaTimeES4_S4_) +STUB("8LNY0wNMOFo", _ZN9Inspector24RemoteControllableTarget19setTargetIdentifierEj) +STUB( + "8LPt8NKIPa4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEE5resetEPS6_) +STUB("8LQccqDG08o", _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEED1Ev) +STUB("8LR9hvg3nEI", mono_stack_walk_no_il) +STUB("8LRpdRXPf0s", GetStringPlatformChars) +STUB( + "8LU3ysiXpSg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE5clearEv) +STUB("8LVL407LqN8", _ZN9Inspector33AnimationBackendDispatcherHandlerD2Ev) +STUB( + "8LX3fKh-oVM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEEC1ERS9_) +STUB( + "8LYtq3NfCCY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEC2EPS8_) +STUB("8LalMSTp+tE", _HZData_67) +STUB("8Lemumnt1-8", CERT_extractSerialNum2) +STUB( + "8LetkKPdzJY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEC2EPNS2_10LibContextE) +STUB( + "8Lf2iycHkcA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) STUB("8Lf4Fp1TxA0", sceVideoOutAdjustColor2_) +STUB( + "8LfDbpT7QU4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEE11release_refEv) +STUB( + "8LhBx0ZHGwg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEC2EPS8_) +STUB( + "8Lj9mT-pd3s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEC1EPNS2_10LibContextE) +STUB( + "8LlzGXxL-BY", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities10unsetlimitEv) STUB("8Lo6Zv94aho", sceSystemServiceDisableNoticeScreenSkipFlagAutoSet) +STUB("8Lr9U8OGHsE", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry19getRecordedDateTimeEv) +STUB("8LtPsbRuYso", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product14setDisplayNameEPKc) +STUB( + "8Lw8c17Vmmk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEC1EPS6_PFvS8_EPNS2_10LibContextE) STUB("8M64VSmc8-A", sceUpsrvUpdateGetBetaAgreementUrlForUpdate) +STUB("8M6cv85VPG4", _ZN3WTFlsERNS_10TextStreamERKNS_3URLE) +STUB("8MDdXkueLyk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEaSERKS7_) STUB("8MEjogxPrv0", sceCamera2SetExposureGain) +STUB("8MExInxqXhE", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession14setCustomData1EPKvm) +STUB( + "8MGPH+IErWk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "8MGzdmcGLtU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEEC1ERKSA_) +STUB("8MNwOmGRJiQ", _ZNK7WebCore19ProtectionSpaceBase4hostEv) +STUB("8MPc+lwPsTU", _ZN3sce7Toolkit2NP2V29Challenge18ChallengeThumbnail8deepCopyERKS4_) +STUB("8MTUD52Sx+o", __asan_update_allocation_context) +STUB("8MZi4-tr47E", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus13dataSizeIsSetEv) +STUB("8McYx55Xe7c", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18SessionInformationEE9constructEPS3_RKS3_) +STUB("8McgDFB8ieA", rgctx_fetch_trampoline_mrgctx_80_p) +STUB("8MeR3+4qFO0", _ZN3sce7Toolkit2NP2V28Matching9AttributeD2Ev) +STUB("8MfLWEwgorc", mono_aot_Microsoft_CSharpmethod_addresses) +STUB("8Mg+NtJ64oc", + _ZN3sce3pss5orbis5input46InputManager_GetControllerHandleByUserIdNativeEiNS2_12HardwareTypeEPi) +STUB("8MiixbKxVT0", _ZN7WebCore9HTMLNames20onwebkitkeyaddedAttrE) +STUB("8Mio51rNcJQ", _ZN3sce7Toolkit2NP2V26Trophy7Request19GetTrophyPackTrophyC1Ev) STUB("8MjO05qk5hA", sceCameraSetRegister) +STUB("8MjsRSBicYc", makeUlpResHdrNoFragment) +STUB("8MnBSwMIbOg", + _ZN12video_parser20cVideoContentFactory19releaseVideoContentEPNS_13iVideoContentE) STUB("8MqXmG2IbM8", sceIduUtilGetNumInstalledApps) +STUB("8MqwVJd-cSY", _ZN3sce7Toolkit2NP2V27Ranking7Request8SetScoreC1Ev) +STUB("8MrvDWzE5Eo", _ZN9Inspector15RemoteInspector5setupEj) +STUB( + "8MtIPCdWOGI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEC1Ev) +STUB("8N-4nYLwXak", WKPreferencesGetQTKitEnabled) +STUB("8N-NuWOSbsw", _ZN3NTF3URL24removeFragmentIdentifierEv) +STUB("8N00f1amYeA", Java_java_awt_GnmImage_nativeSetColorModelIntPixels) +STUB( + "8N0tJDxt8Y0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "8N1sHCc4bnA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "8N2lLlFQeUc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEE5resetEPS6_) STUB("8N2tmT3jmC8", sceAgcDcbSetIndexCount) +STUB("8NBMvh0iER0", __asan_default_options) +STUB( + "8NEgXjw66MU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEEC1ERS8_) +STUB("8NEhOzjGDWM", JNU_SetFieldByName) +STUB( + "8NGrDMIt+BE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEEptEv) +STUB( + "8NHF7+TgcW8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEppEi) +STUB("8NLhMIIrYIk", _ZN3sce3pss4core6camera17IsCameraConnectedEiPb) +STUB("8NNHrZe2Em4", _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead11memberIsSetEv) +STUB("8NS4ExBbqAw", _ZN3sce2Np9CppWebApi13InGameCatalog2V514ProductFactory7destroyEPNS3_7ProductE) +STUB("8NUB97h5hMg", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead15getJoinDisabledEv) +STUB("8NVUcufbklM", + _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecPKv) +STUB("8NZZs9FgG5Y", mono_aot_JSC_Netunbox_trampolines_end) +STUB( + "8NgMpaaAfkU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEdeEv) +STUB( + "8Nl7btCkccY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEEC1EPS9_PNS2_10LibContextE) STUB("8Nq3pmu0zuE", sceAppInstUtilGetMainAppTitleId) +STUB("8NrLRhJhmnc", mono_aot_Sce_Vsh_Np_Webapiunbox_trampolines_end) +STUB( + "8NtPgE3KjtY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEaSERS7_) STUB("8NuOHiTr1Vw", pthread_rwlockattr_settype_np) +STUB( + "8NvEP90rrCE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("8NvMTqWOwo4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersD2Ev) +STUB( + "8Nxjy-8eU6s", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEplEm) STUB("8NzBD4MiQH4", sceClPthreadAttrSetinheritsched) +STUB("8NzwQtK+OjQ", _ZN4Manx3Ssl10SslContextD2Ev) +STUB("8O-6RHUTD7k", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession15setJoinDisabledERKb) +STUB("8O-hcNI2jho", _ZN7WebCore8SVGNames6k1AttrE) +STUB("8O0T16ycgH8", _ZN3JSC12CachePayload17makeMallocPayloadEON3WTF9MallocPtrIhNS1_10FastMallocEEEm) +STUB("8O273zrVSU4", mono_btls_x509_crl_get_revoked_count) +STUB("8O8iTFqJDj4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEptEv) +STUB("8O9hi9-+3kE", _ZN9Inspector34DOMStorageBackendDispatcherHandlerD1Ev) +STUB( + "8OA95knynUU", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getInteger4Ev) +STUB("8OABXTm-4nI", + _ZN3sce2Np9CppWebApi14IdentityMapper2V333PsnWebError_error_missingElements9unsetNameEv) +STUB("8OCexW9qJgQ", _ZNK3sce4Json6String6substrEmm) +STUB("8OGv-VaSrPc", _ZN3sce2np18HttpConnectionPool8FindIdleEiPKcS3_t) +STUB("8OHZsn1lLv0", _ZNK7WebCore6Length3refEv) STUB("8OJ86vFucfo", sceNetCtlClearEventIpcInt) +STUB("8OJ8j1Uyunk", _ZN7WebCore11DisplayList14ConcatenateCTMD0Ev) +STUB("8OKCmdrC6Kw", _ZTVN7WebCore11DisplayList13ClipOutToPathE) +STUB( + "8OLV0SsQGHk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE8capacityEv) +STUB( + "8ONBJbPoq6c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEC1EPS8_) +STUB("8ORf7qkFq1E", fuse_version) +STUB("8ORxSr+WMPQ", _ZN7WebCore11DisplayList11DrawEllipseC1ERKNS_9FloatRectE) +STUB("8OSy0MMQ7eI", _ZTSPt) +STUB("8OXV3N926Mw", __asan_poison_cxx_array_cookie) +STUB("8OaTnjfgDmQ", _ZN3sce7Toolkit2NP2V27NpUtils7Request22GetOnlineIdByAccountIdC1Ev) +STUB("8OaWHSy5nm0", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_25ChallengeBinaryDataResultEEC2Ev) +STUB( + "8OazyQWbzNk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "8ObHRAQ3aCc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEppEi) +STUB("8Ocv8EZNP0w", mono_aot_Sce_Vsh_ShellCoreUtilWrapperplt) +STUB( + "8OdAKrWrc3w", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEdeEv) +STUB("8Ojm3nxXGo8", Java_java_awt_GnmFontMetrics_initIDs) +STUB("8Okvia9yPe0", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEEaSERKS6_) +STUB("8OlhS07zQ6w", _ZN3JSC7JSProxy17preventExtensionsEPNS_8JSObjectEPNS_14JSGlobalObjectE) STUB("8OnWXlgQlvo", _sceKernelRtldThreadAtexitDecrement) +STUB( + "8Os6TXetGnk", + _ZN8meta_gen11MsvPromoter23setKeyValue_TBLI_BaseIdENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti) +STUB("8OsvsFluH5A", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead15unsetMaxPlayersEv) +STUB("8OuJzCvCV84", + _ZN7WebCore19JSAnimationTimeline15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "8OvP9GBErOk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEEC2ERKSA_) +STUB("8OxMMqYXs-E", _ZN3JSC7Symbols31newPromiseCapabilityPrivateNameE) +STUB( + "8P1n6bFL0SQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("8P3ImXX5UX8", _ZN9Inspector21InspectorRuntimeAgentnwEm) +STUB("8P43RzcRoFI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEE3getEv) +STUB( + "8P53XE-LcpI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEC2EPKS8_) STUB("8P9BlyDO4xE", sceBgftServiceTerm) +STUB( + "8P9pJU7-a5Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB("8P9vqW+IePk", _ZN12video_parser5vpcom6StringC1ERKSs) +STUB("8PEuKhIthlw", _ZN7WebCore15DOMWrapperWorldD2Ev) STUB("8PF0W+Q47rM", sceVnaCancelTts) STUB("8PGQdZFioFQ", sceKernelGetUtokenExpirationTimeNotafterForRcmgr) +STUB( + "8PGaueckmNE", + _ZN7WebCore6Editor33markMisspellingsAfterTypingToWordERKNS_15VisiblePositionERKNS_16VisibleSelectionEb) +STUB("8PIh8BFpNYQ", _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE13do_date_orderEv) +STUB("8PJ9qmklj2c", _ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED2Ev) +STUB("8PKVhejBM2Q", WKBackForwardListItemCopyOriginalURL) +STUB( + "8PKz7-m83Yk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEC2Ev) +STUB( + "8PPoO0XNa9A", + _ZN3sce2Np9CppWebApi7Matches2V121ResponseTeamStatistic23setTeamMemberStatisticsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_27ResponseTeamMemberStatisticEEEEE) +STUB("8PQY5phhmoE", _ZN3WTF6String6numberEm) +STUB( + "8PUhG5z7x-8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE5emptyEv) STUB("8PXQIdRsZIE", sceUserServiceSetGlsCameraDepthLevel) +STUB( + "8PcGryCtIyc", + _ZN15AbstractStorage11LocalFolder9NewFolderERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_6FolderEE) +STUB( + "8PdEjuDG0tQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEEC1ERKSA_) +STUB( + "8PoKVfl28n0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEC1EPNS2_10LibContextE) +STUB( + "8Pt9GdhKzfk", + _ZNK3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody14getCustomData1Ev) +STUB( + "8Q24DLUP6Ic", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("8Q4DnxdSuws", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEcvbEv) +STUB("8Q60JLJ6Rv4", getc) STUB("8Q71i3u9lN0", sceUserServiceSetTopMenuTutorialFlag) +STUB("8Q9l9kEKS+0", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V128SetMultiVariablesRequestBody14unsetVariablesEv) +STUB( + "8QNBDH4ufmc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEED2Ev) +STUB( + "8QO+QzaiNdQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEppEv) +STUB("8QOmy+K3L2k", _ZN15AbstractStorage12LocalStorageD2Ev) STUB("8QQxOZQP9lc", sceSystemServiceShowErrorDialog) +STUB("8QSl3FZdvbg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEC2ERKS7_) +STUB("8QTCtygIwB4", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setPrimaryAudioStream) +STUB("8QdR1SgicKg", mono_aot_Sce_Vsh_GameListRetrieverWrapperunbox_trampolines) +STUB("8QkqEUG71zk", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetrics9getJitterEv) +STUB("8Qt5WNwzYko", _ZN3sce7Toolkit2NP2V28Commerce7SkuInfo14PRODUCT_ID_LENE) +STUB("8QtMUIaB7Uk", WKSecurityOriginGetPort) +STUB("8QvjMtUTm88", _ZN3JSC7Symbols40getArrayIteratorInternalFieldPrivateNameE) +STUB("8QwZe+atlOg", _ZN3JSC11VMInspector2gcEPNS_2VME) +STUB("8R00hgzXQDY", _ZNSt16nested_exceptionD2Ev) +STUB("8R3APcMguxY", _ZN3WTF14FileSystemImpl18hardLinkOrCopyFileERKNS_6StringES3_) +STUB("8R3h91+im+w", _ZN3JSC8Debugger34notifyDoneProcessingDebuggerEventsEv) +STUB("8R5hS9urFg4", _ZN7WebCore7Element17removeAttributeNSERKN3WTF10AtomStringES4_) +STUB("8R5ivzpkmFk", _ZN3JSC15IsoHeapCellTypeC2ENS_15DestructionModeEPFvPNS_6JSCellEE) +STUB("8R8Xu4jgFjo", _ZNSt13basic_ostreamIwSt11char_traitsIwEEC1EPSt15basic_streambufIwS1_Eb) STUB("8REoLjNGCpM", sceFontGetResolutionDpi) +STUB("8RJJo61fpeg", _ZN7WebCore22EmptyFrameLoaderClient37dispatchDidReachVisuallyNonEmptyStateEv) +STUB("8RJYbHOSgnM", + _ZN23sceMetadataReaderWriter10jpegParser22jpegParserReadMetadataERKSsRKNS_8MetadataERS3_) STUB("8RTK3rcM5aU", sceAvSettingSetVideoOutModeInvalid_) +STUB("8RYSSEu8pUk", _ZN3WTF28displayNameForLanguageLocaleERKNS_6StringE) +STUB("8Rc62+-s1+M", _ZNK7WebCore14FrameSelection18isFocusedAndActiveEv) +STUB( + "8ReVlgBkWyM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEplEm) +STUB( + "8ReaMOMaHJk", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScore24unsetxPsnAtomicOperationEv) +STUB("8Redb1zdVYY", _ZN7WebCore9FrameView27updateBackgroundRecursivelyERKNS_5ColorEb) +STUB( + "8RgxiWf4oXc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE8capacityEv) STUB("8RjBhxgP+28", sceMbusSetDeviceFunctionState) +STUB("8RjQPy3Voqs", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE5beginEv) +STUB( + "8Rjmf94dDGM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEC1Ev) +STUB( + "8Rk0QeYkNwc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEeqERKS9_) +STUB("8RkA35jwegw", _Z37PsmGraphicsAddPostSwapBuffersCallbackPFvPvES_) +STUB("8RmJkIwQIKg", + _ZN7WebCore11JSDOMWindow10putByIndexEPN3JSC6JSCellEPNS1_9ExecStateEjNS1_7JSValueEb) +STUB("8RmZzRy2EB4", _ZN12video_parser18cMp4FFLHndlManager14getFF4PlayHndlEv) +STUB("8Rn6Uiw+f9w", il2cpp_class_get_events) +STUB( + "8RptU+m9PGU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEixEm) +STUB( + "8RsoOstH+Vo", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser15getmemberFilterEv) +STUB("8Rt9DuUY-2c", delegate_invoke_impl_target_8) +STUB("8RtceH+pH3g", _ZTVN7WebCore11DisplayList8FillPathE) +STUB( + "8RwCBNw6P+0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB("8Rwwk4fXVlQ", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle12perGameIsSetEv) +STUB("8RzZ2C-aHG0", Java_java_lang_String_intern) +STUB( + "8S0y3rofC4Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEmmEi) +STUB( + "8S10WsVXo5k", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToSendPlayerSessionMessage9terminateEv) +STUB("8S1mWU-N9kM", _ZThn16_N3sce2np10MemoryFileD1Ev) +STUB("8S2712b7L7o", _ZN7WebCore28InspectorFrontendClientLocal8SettingsaSERKS1_) +STUB("8S3lfixsFds", ubrk_close_59) +STUB( + "8S5aAjQhr24", + _ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody8fromJsonERKNS_4Json5ValueE) +STUB("8S5yfZ1q9K8", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessionsD2Ev) +STUB("8S6+heQnCSg", bemp2sys_psdecoder_sendmessage) +STUB( + "8S8cItIPgfo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEC1EPS8_) +STUB("8S94Ka5I+0Q", ucurr_unregister_67) +STUB("8S9bwpVSMvI", JSGlobalContextCreate) +STUB("8SDojuZyQaY", _ZNKSt14error_category23default_error_conditionEi) +STUB( + "8SEoKYLM0sM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEdeEv) +STUB( + "8SF2RJEQyWw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEEaSERKSA_) +STUB( + "8SHfQyTniLo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEppEv) +STUB( + "8SIMl8YR03k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEEC2ERKSA_) +STUB("8SJGJaRiCaY", EVP_CipherInit_ex) +STUB("8SKVXgeK1wY", vsnwprintf_s) +STUB("8SOxQrQ7AfQ", cairo_scaled_font_get_font_options) STUB("8SXJpzhlCJg", sceAppInstUtilAppUnInstallTypes) +STUB("8SXRtf+sJ9s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE3endEv) +STUB("8SbQO48TxZ8", _ZN3sce7Toolkit2NP2V210Tournament6EventsD2Ev) +STUB( + "8SdKhohCIEo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEppEi) +STUB("8Sf0tJXMvqA", ucnv_openU) STUB("8SljQx6pDP8", sceRtcEnd) +STUB("8SoB57mhbi4", mono_assembly_load_references) +STUB("8Sqo3teInkc", _ZN3sce7Toolkit2NP2V210Tournament16RegisteredRosteraSERKS4_) +STUB("8SsbRzTucHU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEcvbEv) STUB("8Ssk4OU38vw", sceUltReaderWriterLockUnlockRead) +STUB("8SvGrBTpEYM", + _ZN7WebCore11HistoryItem12addChildItemEON3WTF3RefIS0_NS1_13DumbPtrTraitsIS0_EEEE) +STUB("8T-qrc8WEzA", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119PlayStylePropertiesD1Ev) +STUB( + "8T18aK17pHw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEED1Ev) STUB("8T8VUmTIKE0", sceDeci5Read) STUB("8TAXvaMXV4w", sceCesSbcToUtf32be) +STUB( + "8TB+0wE1KhU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEEC1ERKSA_) +STUB("8TB5s74NkHw", __sanitizer_get_total_unique_coverage) STUB("8TBE+9XCZbI", sceAmprAmmCommandBufferMapDirect) STUB("8TGeI5PAabg", sceUserServiceSetImeAutoCapitalEnabled) +STUB( + "8TMncYpBQSU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEptEv) +STUB("8TQ7sfmVYGs", + _ZN7WebCore19LayerRepresentation20releasePlatformLayerEPNS_26TextureMapperPlatformLayerE) +STUB( + "8TVIn2x-aeg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEE3getEv) +STUB( + "8TbF8pKs+Ro", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("8TfNVjoESl8", + _ZN7WebCore15makeSimpleRangeERKN3WTF6RefPtrINS_5RangeENS0_13DumbPtrTraitsIS2_EEEE) +STUB("8TpAxZoLLRw", _ZN3sce2np3ipc17ServiceIpmiClient18EndRequestForAsyncEii) STUB("8TqMzIggthc", sceKernelIccGetErrLog) +STUB( + "8TvPGcNi+XQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEEC2Ev) +STUB("8Tzx7cA1XHU", _ZN7WebCore14CredentialBase7compareERKNS_10CredentialES3_) +STUB( + "8U-CFwUXaoA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEC1EPNS2_10LibContextE) +STUB( + "8U-ovgOO1Ik", + _ZN7WebCore16HTMLTableElement10setCaptionEON3WTF6RefPtrINS_23HTMLTableCaptionElementENS1_13DumbPtrTraitsIS3_EEEE) +STUB("8U1vo21oMoU", _ZN7WebCore11DisplayList15DrawNativeImageD1Ev) +STUB( + "8U1x4AD0iPM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEE7add_refEv) +STUB("8U5earSfvFI", g_get_home_dir) +STUB("8U7AfKhu-8U", unumf_resultToString_67) +STUB("8UCA-GchFo0", _ZN7WebCore30InvertLightnessFilterOperationD0Ev) +STUB("8UCJPkPdE3Q", _ZTVN7WebCore11DisplayList12PutImageDataE) +STUB("8UFY5oZKF4M", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEED1Ev) STUB("8UHip7L+b80", scePsmTerminate) +STUB( + "8UIy0SXtBUM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEC2Ev) STUB("8UVYwy0F2Hk", sceKernelSetProcessName) +STUB("8UVezszaPHg", _ZN3sce2Np9CppWebApi7Matches2V118RequestMatchPlayerC1EPNS1_6Common10LibContextE) +STUB( + "8Ua9smLR9BM", + _ZN9Inspector22InspectorDebuggerAgent19evaluateOnCallFrameERN3WTF6StringERKS2_S5_PS4_PKbS8_S8_S8_S8_RNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISC_EEEERSt8optionalIbERSH_IiE) +STUB("8UeXNsYnnVQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEED1Ev) +STUB("8UeuxGKjQr8", _ZNSt7_MpunctIwED0Ev) +STUB("8Unr2gwsENc", SetMute) +STUB( + "8Uslkd0ZbcI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEE11release_refEv) +STUB( + "8Uuu6aHJLns", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEC2EPS6_PNS2_10LibContextE) +STUB( + "8V3xCfsS5JI", + _ZNK3sce2Np9CppWebApi14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBody11getPlayerIdEv) +STUB("8V5WEQkIKYw", _ZNK7CoreIPC14MessageDecoder13isSyncMessageEv) +STUB("8VBA6xuvSBA", pa_sync) +STUB("8VBLjtKV5eI", _ZN3sce7Toolkit2NP2V24Core7Request11MemoryPoolsC1Ev) STUB("8VBTeRf1ZwI", sceNpGetAccountDateOfBirth) +STUB("8VCa+mE1jIE", _ZNK3JSC12PropertySlot20customAccessorGetterEPNS_9ExecStateENS_12PropertyNameE) +STUB( + "8VCoXHOqa94", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEED2Ev) +STUB("8VCqeob59jM", + _ZN3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResults22unsetTeamMemberResultsEv) +STUB( + "8VDFbVGg3cU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE5clearEv) +STUB( + "8VHloNojuiA", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE18getResponseHeadersERSE_) +STUB("8VK-q3yEO7M", mono_profiler_install_appdomain) +STUB("8VKAqiw7lC0", _ZNSt10filesystem12_Current_getERA260_c) +STUB( + "8VOQZyVtMiM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE6resizeEj) +STUB( + "8VPA6ZMO1ps", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEC1Ev) +STUB("8VT1E+wAqcQ", _ZN10Deprecated25ScriptCallArgumentHandlerC1EPN3JSC9ExecStateE) +STUB("8VVXJxB5nlk", getopt_long) +STUB( + "8VWyc8ke-uw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEC1Ev) +STUB( + "8VXPQp0LxUk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEeqERKS9_) +STUB( + "8VXZ+m6d5k0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEdeEv) +STUB( + "8VYztPGz7p8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEE11release_refEv) STUB("8Vjplhyyc44", sceNpWebApiIntInitialize) +STUB("8VoOXhaFbp8", png_get_channels) +STUB("8Vs1AjNm2mE", _ZTSN10__cxxabiv117__class_type_infoE) +STUB("8VsLTYU7vrI", T_CString_toUpperCase_67) +STUB( + "8Vt9iGZ3hXU", + _ZZSt9MakefacetISt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEESt8_LocinfoERT_T0_E3buf) +STUB( + "8VxLjHh1FMM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEppEi) +STUB("8VxnZ-Os8hU", _ZNK3JSC18PropertyDescriptor10enumerableEv) +STUB( + "8Vz6XaORKlU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEE11get_deleterEv) STUB("8W+8vFlIPuA", sceUserServiceSetNpMAccountId) +STUB("8W48dCn5fck", il2cpp_current_thread_get_frame_at) +STUB("8W5b+PNZYwI", _ZNK3JSC9CallFrame10codeOriginEv) +STUB( + "8W7ReiCqyAM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB("8WAfe-QpPwk", __sanitizer_cov_trace_pc_guard) STUB("8WDA9RiXLaw", sceGnmPaEnableFlipCallbacks) +STUB("8WDJjbxNvCg", ures_getByKey) +STUB("8WEbbYu6k4g", _ZN7WebCore9HTMLNames22webkitattachmentidAttrE) +STUB( + "8WGUNHKaFzs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEppEv) +STUB( + "8WGbO0XCKfM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEC1Ev) +STUB("8WH4Pm72J5A", + _ZN7WebCore17PageConsoleClient16takeHeapSnapshotEPN3JSC14JSGlobalObjectERKN3WTF6StringE) +STUB("8WRGpXy43Rw", _ZN3WTF7CString16newUninitializedEmRPc) +STUB( + "8WSEEuhgqdY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEC1EPS8_) +STUB("8WTNYVcLNFA", ENGINE_load_private_key) +STUB( + "8WZMvz1zKr4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEneERKS9_) +STUB("8Wal1MC0Llo", _ZN3WTF21bootSessionUUIDStringEv) +STUB("8Wanl67X4JQ", rgctx_fetch_trampoline_mrgctx_68) +STUB("8WbbVaufULY", ucnv_toUWriteCodePoint_67) +STUB("8Wc+t3BCF-k", _ZTINSt6locale7_LocimpE) +STUB( + "8WcdJXAIRaA", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsersD2Ev) +STUB("8Wcn9B8z17M", WKBundlePageCopyRenderTree) +STUB("8Wda217cJAI", + _ZN12video_parser17cVideoProfilerMp421_releaseSubtitleCodecEPNS_13VpMediaInfo_tE) +STUB( + "8Wfl31rWKec", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE8capacityEv) +STUB("8Why0SPsQa0", _ZNK7WebCore21PageOverlayController20viewOverlayRootLayerEv) +STUB("8WjcG+pfRgE", mono_metadata_type_hash) +STUB( + "8WlxBW2Ok30", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi27ParameterToLeaveGameSession12setaccountIdEPKc) +STUB("8Wo3Ss6cNb0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEEaSERKS7_) +STUB( + "8WpDz2mogd8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEC2Ev) +STUB( + "8WryVbP1y8A", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) STUB("8WtmqmE4edw", sceCameraSetVideoSyncInternal) +STUB( + "8WyTri4XmqA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEC1Ev) +STUB("8WzUhuCvVx4", RtcGetCurrentDebugNetworkTickNative) +STUB( + "8X1f5erLNo0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEmmEv) STUB("8X5O9jV-bFs", sceApplicationSetControllerFocusPermissionToSubProcess) +STUB("8X9tHEAMZhA", _ZN3sce7Toolkit2NP2V29Messaging16GameDataMessagesC2ERKS4_) +STUB("8XCozccg+jU", _ZN9Inspector32DatabaseBackendDispatcherHandlerD0Ev) STUB("8XGijEoThE0", sceVideoOutSysGetResolutionStatus) +STUB("8XKAwGS4vPg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEEC1Ev) STUB("8XKR6wa64iQ", sceInvitationDialogGetResult) +STUB( + "8XKXUnsUi2I", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEEptEv) +STUB("8XMkMnjyoHA", + _ZN3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator11setOnlineIdERK13SceNpOnlineId) +STUB( + "8XT8t1yXLaA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V145SetMultiVariablesRequestBody_variablesFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_38SetMultiVariablesRequestBody_variablesEEE) STUB("8XTArSPyWHk", sceAudioOut2PortSetAttributes) +STUB( + "8XZKYR+U1dg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEeqERKS9_) STUB("8XiF7OmlpcM", sceDebugResumeApplication) +STUB("8XiTMO5U8Hs", _ZN3NTF22URLRequestJobScheduler10initializeEv) +STUB("8XjRlb2loGU", u_strFromUTF8) +STUB("8Xjh6xp0ye4", _ZN3sce7Toolkit2NP2V212NetworkUtils7Request16GetBandwidthInfoC2Ev) +STUB( + "8XrLwSAJdxo", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_11ProductInfoENS1_15AppSTLAllocatorIS5_EEEED1Ev) STUB("8Y+aDvVGLiw", sceUserServiceGetGlsAccessTokenTwitch) +STUB("8Y-Bro92C7Y", _ZN7WebCore16NetworkSendQueue15processMessagesEv) +STUB( + "8Y22z5nTYW8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEC2EPS8_) +STUB("8Y5OOBb0B5Y", _ZN3sce2np7RingBuf5WriteEPKvm) +STUB("8Y6RLatuTeM", _ZN9Inspector34DOMStorageBackendDispatcherHandlerC2Ev) +STUB( + "8YDZUOqkWOc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEE3getEv) +STUB("8YF8gLw-X4o", _ZN3sce7Toolkit2NP15AppSTLAllocatorISbIcSt11char_traitsIcENS2_IcEEEEC1Ev) +STUB( + "8YKLUP15U98", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEED1Ev) +STUB( + "8YKNWRCZ78I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEEaSERKSA_) +STUB("8YOgGCMTaSc", _ZN3sce2Np9CppWebApi12Leaderboards2V15Entry14unsetSmallDataEv) +STUB("8YUlFAtJIfY", Java_java_util_ResourceBundle_getClassContext) +STUB( + "8YZ0Yh1Q2lk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEEcvbEv) +STUB("8Ydwx621DeA", _ZN3WTF3URL10invalidateEv) +STUB("8YkVumKhds4", mono_unhandled_exception) +STUB( + "8YmeSJZXVU4", + _ZN3sce2Np9CppWebApi14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayer11setPlayerIdEPKc) STUB("8Yr143yEnRo", sceRtcConvertLocalTimeToUtc) +STUB( + "8YtcWzYdIRs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEED1Ev) +STUB( + "8YuDwsGaeuA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("8YwLa1Mnk80", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEEC1Ev) +STUB("8YxTYL2RpRQ", fuse_new_compat25) +STUB( + "8YyEouHum7M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEC1EPNS2_10LibContextE) +STUB("8Z+XlYy8K6c", + _ZThn24_N9Inspector22InspectorDebuggerAgent16removeBreakpointERN3WTF6StringERKS2_) +STUB( + "8Z-7icycHjI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEEC2ERSA_) STUB("8Z2Jc5GvGDI", sceNpCheckNpAvailabilityA) +STUB( + "8Z2r+RQdpO4", + _ZN3JSC14JSRunLoopTimer26removeTimerSetNotificationEN3WTF6RefPtrINS1_10SharedTaskIFvvEEENS1_13DumbPtrTraitsIS5_EEEE) +STUB("8Z3AWaTmiEw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE5clearEv) +STUB( + "8Z78YTlkABw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB( + "8ZErRC49B4s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEC2EPS6_PNS2_10LibContextE) +STUB("8ZG-N130ev8", _ZN3sce7Toolkit2NP2V27Session17SessionInfoUpdate10STATUS_LENE) +STUB( + "8ZNgnjz-3LQ", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectatorD1Ev) +STUB("8ZSSSH8Hx-w", GCC_except_table114) +STUB( + "8ZW8CDnM0DE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEEdeEv) +STUB( + "8ZWUEx99Mwg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE7popBackEv) +STUB("8ZZnd+fDCng", ShGetActiveUniform) +STUB( + "8ZZp4qB0HYE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE13goToProcessedEi) +STUB("8Zd-76t0uq8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE8pushBackERKS6_) +STUB("8ZddTpSAKIg", hb_font_funcs_create) +STUB("8ZdxfFqFCPw", mono_aot_Sce_Vsh_EventAppplt) +STUB("8ZnSFFtwYok", _ZNK3sce2Np9CppWebApi7Matches2V118CreateMatchRequest11zoneIdIsSetEv) +STUB("8ZxmGwESvSQ", FT_Outline_Get_CBox) +STUB( + "8a+QpnuLBLI", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitations35getxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB("8a-KCoh37wg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy17TrophyPackSummaryEEC2Ev) +STUB("8a0-AOT6IMw", mono_assembly_name_get_culture) +STUB("8a3gjG3z9kE", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils12Notification15UserStateChangeEE5resetEv) +STUB("8a6l2bQ4E4U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEED2Ev) +STUB("8aC5SbFC89s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEC2ERKS7_) STUB("8aCOCGoRkUI", sceKernelIsCEX) +STUB( + "8aHyfmWWHGM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEaSERKS9_) STUB("8aI7R7WaOlc", sceAmprCommandBufferConstructor) +STUB("8aIp9UUBBr8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEEC2EPNS2_10LibContextE) STUB("8aLlLHKP+No", sceNpTrophySystemDbgCtl) +STUB( + "8aN1sGR1vfg", + _ZN9Inspector8Protocol13BindingTraitsINS0_8Timeline9EventTypeEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE) STUB("8aPSCSE8msA", sceApplicationIsSuspendable) +STUB( + "8aQwTdpcc5M", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEptEv) STUB("8aT8Um9YvLE", sceFsGetSmrInfo) +STUB("8aUrpPHUc-0", uprv_getStaticCurrencyName_67) +STUB( + "8aalZ8Hr-Yk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEE7add_refEv) +STUB( + "8aeb+81ECkA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEaSERS7_) +STUB( + "8aehxnWCPO0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEeqERKS9_) +STUB("8alcKasLZvM", _WStoxflt.vals) +STUB( + "8alx97vbThE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEixEm) +STUB("8aoLirCPF-0", _ZN3sce2Np9CppWebApi6Common17ParameterBaseImplC1EPNS2_10LibContextE) +STUB( + "8b-uv83M8zg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEeqERKS9_) +STUB("8b1MlBzgg9c", _ZNK7WebCore10ScrollView16windowToContentsERKNS_8IntPointE) +STUB("8b2o8RfK620", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce19ServiceEntitlementsEEC1Ev) +STUB("8b3ThumamG4", mono_aot_Sce_CloudClient_App_Platformunbox_trampolines_end) +STUB("8bAYuVYJ6J8", _ZNSt9basic_iosIwSt11char_traitsIwEE3tieEPSt13basic_ostreamIwS1_E) STUB("8bAq9t5kF9k", sceCompositorGetAnotherProcessSystemSize) +STUB( + "8bDoKOYvyrM", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions10initializeEPNS1_6Common10LibContextEPKc) +STUB( + "8bFaC8j8eLg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEC1EPNS2_10LibContextE) +STUB( + "8bHt2xBGEUU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEEC2EPS9_PNS2_10LibContextE) STUB("8bI5h8req30", sceAudioPropagationRoomCreate) +STUB("8bIEQOSVuTo", mono_aot_Sce_Vsh_Orbis_AbstractStorageunwind_info) STUB("8bK-4Vxjr8E", scePadTrackerGetWorkingMemorySize) +STUB("8bOCxIwo+XU", delegate_virtual_invoke_imt_3) +STUB( + "8bV3Kz9xp9E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEppEi) +STUB( + "8bVElXx+fSA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE7reserveEi) +STUB("8baLUqBXC3U", approx0) +STUB("8bhousiIM2I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEC2ERKS7_) +STUB("8biIjNR6iIg", rgctx_fetch_trampoline_rgctx_105_p) +STUB("8bjgDkrRz+Q", _ZN7WebCore11CachedImage5imageEv) +STUB("8bkQ+YRnpOE", ft_mem_free) +STUB( + "8bkwy73zeKQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "8boSOXVb0xg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEC2Ev) +STUB( + "8br4LSv6nPg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEE11get_deleterEv) +STUB( + "8bsscaNVPLo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE6resizeEj) +STUB("8btDir3QAQc", unum_clone_67) STUB("8btynvj0KNA", sceNpMatching2GetSslMemoryInfo) +STUB( + "8bv0kQKNX58", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE21intrusive_ptr_add_refEPS9_) +STUB("8byEIstY8fo", WKDoubleGetValue) +STUB( + "8cAHpfu28dk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEC1EPS8_) +STUB("8cAU0GeME54", _ZNK9Inspector15ScriptArguments10argumentAtEm) STUB("8cAlCzoOiic", sceKernelMapSanitizerShadowMemory) +STUB( + "8cBZZU0LvNM", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayerC1ERS5_) +STUB( + "8cCxM4FQjzE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("8cDupwx3X+Y", cairo_matrix_init_translate) +STUB("8cGhsLj37FI", mono_aot_Sce_Vsh_ShellUIUtilWrapperjit_got) +STUB("8cIuwm0q3+I", _ZN3JSC7Symbols30allocateUint16ArrayPrivateNameE) +STUB("8cQ3pFKHXPA", EVP_PKEY_encrypt_init) +STUB("8cXvB8OPQ1o", _Z8writeAlliPKvm) +STUB("8chJMpt+J2U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEEC2EPS5_PNS2_10LibContextE) +STUB( + "8cmupXHZgAw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEED1Ev) +STUB("8cnVx1yH9-I", FT_Raccess_Guess) +STUB("8cq1G692WXA", _ZN7WebCore24CoordinatedGraphicsLayer18setContentsVisibleEb) +STUB("8cqiONwBQw0", mono_reflection_get_custom_attrs_blob) +STUB("8cs9YqVIrOQ", _ZN3JSC7Symbols27isExecutionStatePrivateNameE) +STUB( + "8d-ZgmNG3hk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE21intrusive_ptr_sub_refEPS9_) +STUB("8d3OO75O9R4", + _ZNK7WebCore8Document11completeURLERKN3WTF6StringENS_22ScriptExecutionContext9ForceUTF8E) +STUB( + "8d4mfdYNrso", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("8dEZbWDA6-4", _ZN7WebCore13GraphicsLayer18setBackgroundColorERKNS_5ColorE) +STUB("8dJf2exFZjg", _ZN23sceMetadataReaderWriter13KeyValueArray3getERKSsRNS_5ValueE) +STUB("8dQOR-iIbME", upvec_getValue_67) +STUB("8dSCqNSE-Nc", uprv_decNumberCompare_67) +STUB("8dSvGPJw5zc", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersC2Ev) +STUB( + "8dW7C320d20", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEmmEv) +STUB("8dWkWjo5EeE", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V15Owner12getAccountIdEv) +STUB("8dbxlsbVzdY", WKPageSetPageStateClient) +STUB("8deBnfl7TnQ", _ZN3sce7Toolkit2NP2V27Session7Request6UpdateD1Ev) +STUB("8dgEidjyBYA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEC1Ev) +STUB("8dhjNuhwRhE", _ZN7WebCore17JSDOMRectReadOnlyaSERKS0_) +STUB( + "8diEls6fqlQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE5beginEv) +STUB("8dkEOgkDweo", _ULx86_64_init) +STUB( + "8dnNdIgN-iQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEED1Ev) +STUB("8dq9NqVFX7E", + _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities13ErrorResponse6toJsonERNS_4Json5ValueEb) +STUB("8dsV6f-rJhc", _ZN3sce7Toolkit2NP2V212EventsClient7Request9GetEventsC1Ev) +STUB( + "8dtno93w8yE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB( + "8dvMegZvg9s", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer20hasuseCurrencySymbolEv) STUB("8dzXU5GxsjI", sceFiosFHToFileno) +STUB( + "8e+pVZZq6ic", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEC2EPKS8_) +STUB("8e2KBTO08Po", _Nan) STUB("8e4TgQd155k", sceFiosCacheFlushFileRangeSync) +STUB( + "8e4l1XeboLw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEEptEv) +STUB("8eDqEhpPaeE", _ZN7WebCore9FloatRect5uniteERKS0_) +STUB("8eEvg4UE6hY", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_7NpUsersEED2Ev) +STUB( + "8eGL2s+2-Ak", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB( + "8eKy4mw0Cd8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "8eTWBk1Jw+I", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEptEv) +STUB( + "8eYPrBx1LpY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEdeEv) +STUB("8eYzxmkntIw", WKPreferencesGetShouldUseServiceWorkerShortTimeout) +STUB("8eaUD3Ep2ig", _ZN3sce7Toolkit2NP14RankingRequestC1Ev) +STUB("8edVNsn04Ps", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V115SearchAttributeEEeqERKS7_) +STUB("8em5CBRlzJg", YGNodeStyleGetAspectRatio) +STUB("8en6fwz81Lk", _ZN3JSC17DeferredWorkTimerC1ERNS_2VME) +STUB( + "8epq4SqfvjI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEEaSERSA_) +STUB("8eqBiqB72AE", _ZN3sce2Np9CppWebApi6Common6VectorImE5beginEv) +STUB( + "8erzH6AwFQk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEC1EPS6_PNS2_10LibContextE) +STUB("8esrh4dst9M", _ZN3sce7Toolkit2NP2V28Matching9Attribute18MAX_SIZE_BIN_VALUEE) STUB("8eyH37Ns8tk", sceNetCtlApRpUnregisterCallback) +STUB( + "8f+DSYxCt9A", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyC2EPNS1_6Common10LibContextE) +STUB("8f-nCwwanrs", WKPageCopySessionState) +STUB("8f40UHqpcH4", mono_aot_ReactNative_Modules_Vsh_Gct_Telemetry2unwind_info) +STUB("8fAMdZCnewA", FT_Property_Get) +STUB("8fFXTukOa9c", _ZN7WebCore8Document14createTextNodeERKN3WTF6StringE) +STUB("8fFwrF5lbxQ", _ZN7WebCore17HTMLScriptElement14setCrossOriginERKN3WTF12AtomicStringE) +STUB("8fJiWJYEvX8", _ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_15PlayedWithStoryEE8max_sizeEv) +STUB("8fN3lsDFf5c", mono_error_cleanup) STUB("8fSxAYQGBbE", sceFsBindApplication) +STUB( + "8fdjNKU-AfU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "8fdxMl3KJ1I", + _ZN3sce2Np9CppWebApi11Matchmaking2V130SubmitTicketRequestBodyFactory7destroyEPNS3_23SubmitTicketRequestBodyE) STUB("8fe55ktlNVo", sceAcmBatchStartBuffers) +STUB( + "8ff0Ui9A1Pc", + _ZN7WebCore11DisplayList14DrawTiledImageC2ERNS_5ImageERKNS_9FloatRectERKNS_10FloatPointERKNS_9FloatSizeESC_RKNS_20ImagePaintingOptionsE) +STUB( + "8ffVIaghtQ0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEED1Ev) +STUB("8fg44i3qpp8", + _ZN3sce2Np9CppWebApi7Matches2V123ResponseMatchStatisticsC1EPNS1_6Common10LibContextE) +STUB("8fjI+DiObFA", utext_previous32_67) +STUB( + "8fjZXzN9j5Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEEC2Ev) +STUB("8fkLx5ejxY8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEED1Ev) +STUB("8foS4r5VM2M", WKWebsiteDataStoreConfigurationCopyMediaKeysStorageDirectory) +STUB("8frt1ymWL70", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEED2Ev) +STUB("8fryvN6BDtY", setpgid) +STUB( + "8fvBiwvmc64", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEC2Ev) +STUB("8fxZwyicsRQ", _ZN9Inspector31ScriptProfilerBackendDispatcherD0Ev) +STUB("8g6IzRqXHW0", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities8Activity8fromJsonERKNS_4Json5ValueE) +STUB( + "8g6k5LfExE8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEC1Ev) +STUB("8gG-+co6LfM", __addvdi3) STUB("8gH1aLgty5I", sceHmdReprojectionStartMultilayer) +STUB( + "8gIECLpha44", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE3endEv) +STUB("8gNI0QbVgUc", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia11ScreenshotsEED2Ev) +STUB( + "8gZJrbh0HNI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEE7get_refEv) +STUB("8gaO8HCQEAU", + _ZNSt9_FacetptrISt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEE6_PsaveE) +STUB( + "8gbw2Wi2GQ8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("8glOPCWDXVo", WKRenderLayerGetAbsoluteBounds) +STUB("8gmJWvBasNo", Java_sun_awt_GnmUtils_waitVblankEvent) +STUB("8goZrMdh1-U", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_13NetStateBasicEED1Ev) STUB("8gps121HPSU", sceUpsrvUpdateGetFeatureListUrlForSystemExUpdate) STUB("8h-SOB-asgk", sceFontDefineAttribute) STUB("8h-YslMIj1o", sceUserServiceSetHrtf) +STUB("8h1tiaq-9Fc", _ZThn16_N9Inspector28InspectorScriptProfilerAgentD1Ev) +STUB( + "8hCocComxlM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEixEm) +STUB("8hCzswIZfyw", _ZN3sce7Toolkit2NP2V28Commerce7Request21DisplayJoinPlusDialogD2Ev) STUB("8hEGkR1pfr8", sceUltMutexLock) +STUB("8hIi9eul1AI", rgctx_fetch_trampoline_mrgctx_47_p) +STUB("8hP37BoaTMw", _ZNK15AbstractStorage14FacebookFolder10GetServiceEv) STUB("8hPzfjZzV88", sceNpCloseSema) +STUB("8hRldS3wvW0", udatpg_open_59) +STUB( + "8hV5k3NHCLg", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) STUB("8hZ2EEl2Tto", sceShareUtilityOpenShareMenuDefault) +STUB( + "8hZJK-1l7VY", + _ZN7WebCore16UserGestureToken60setMaximumIntervalForUserGestureForwardingForFetchForTestingEN3WTF7SecondsE) +STUB( + "8hd0ieUHyho", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "8hfUUOi+JPI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEixEm) +STUB("8hi6-rkfY2M", xmlDictLookup) +STUB( + "8hlH2KcABfc", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) STUB("8hm6YdoQgwg", sceAudio3dDeleteSpeakerArray) +STUB( + "8hm9fJBAA2o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEEC2ERKSA_) +STUB( + "8htZ6CfifNc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEEC1ERKSA_) +STUB("8htex21zoHw", _ZN7WebCore20PasteboardCustomDataC2Ev) STUB("8hxesRi3xUE", sceAppInstUtilAppGetAddcontListAll) +STUB("8hyOiMUD36c", _ZNSt14_Num_ldbl_base14is_specializedE) +STUB("8hygs6D9KBY", mbsrtowcs) +STUB("8i-vOVRVt5w", _ZN3sce2np9EventFlag3SetEm) +STUB("8i0WEPLBJmI", _ZN3JSC17createJSMicrotaskERNS_2VMENS_7JSValueE) +STUB("8i5JWALfIoY", + _ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody12setSmallDataEPKvm) +STUB("8i5uJ3yO9oA", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V16StatusEEaSERKS7_) +STUB( + "8i7im1ZILXA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEC2Ev) +STUB("8iEGAigWFrI", _ZN7WebCore23CoordinatedBackingStore20commitTileOperationsERNS_13TextureMapperE) +STUB("8iHD6jxa6mM", + _ZN8meta_gen11MsvPromoter18isSkippableContentEP22MsvPromoteInnerContextP19MsvStorageInterface) +STUB( + "8iLQ5vAjqi8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE3endEv) +STUB("8iOMaIjW-DM", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V15GroupEEppEv) +STUB("8iOyY3+3Rvg", _ZN7WebCore21NetworkStorageSession22removeAllStorageAccessEv) +STUB("8iQfkVB5Tkw", mono_aot_Sce_Vsh_Lxjit_code_end) +STUB( + "8iUkOOUnN8I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE6resizeEj) +STUB( + "8ia9KpadGNg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEE7add_refEv) +STUB( + "8iaLe4jCPoU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("8id98PZCuVc", _ZN3sce7Toolkit2NP2V29Challenge7Request21GetChallengeThumbnailC2Ev) +STUB("8ijDcsqEnnw", _ZN7WebCore23AuthenticationChallengeC1Ev) +STUB("8ilLOknjnUo", _ZN3sce7Toolkit2NP2V28Matching7Request15GetRoomPingTimeD2Ev) STUB("8inAOixHSQw", sceFiosOverlayResolveSync) +STUB("8irPscuFMaM", mono_aot_Sce_Facebook_CSSLayoutunbox_trampolines) +STUB("8iuHpl+kg8A", _ZNSt10filesystem9_Open_dirERA260_cPKcRiRNS_9file_typeE) +STUB("8iuw0SvgnHU", _ZN3sce7Toolkit2NP2V211SharedMedia5VideoD2Ev) +STUB( + "8j0ksyJPbO0", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody21unsetLeaderPrivilegesEv) +STUB( + "8j4ZPsPCiWk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEmmEv) +STUB("8j9ZB-vGetc", WKViewSetVisible) +STUB("8jG8R-0qvV4", halF) +STUB( + "8jHg6a7iX-E", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEptEv) +STUB("8jJF2Rqisys", _ZN7WebCore9HTMLNames11primaryAttrE) +STUB("8jJOS46A0+Q", _ZN3JSC7Symbols23importModulePrivateNameE) +STUB( + "8jL9xlJREyA", + _ZN7WebCore11DisplayList11SetLineDashC2ERKN3WTF6VectorIdLm0ENS2_15CrashOnOverflowELm16ENS2_10FastMallocEEEf) STUB("8jNGivweX70", sceWkFontConfigGetFontName) +STUB( + "8jNW7K2onCY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEppEi) +STUB( + "8jRpEQjr6-E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEC2EPS8_) +STUB("8jeUVytNXpw", _ZN7WebCore6ISOBoxdlEPv) +STUB( + "8jgNR+zdxrY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSE_) STUB("8jiB8eq+BkM", sceVoiceChatRequestCreateVoiceChatGroup) +STUB("8jjT5Fq1up4", mono_register_bundled_assemblies) +STUB("8jlezqNQjXI", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V111OfferStatusEEptEv) STUB("8jlixeK+pgk", sceCustomMusicCoreGetHdcpStatus) +STUB( + "8jm5dwGJqL8", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle9setGlobalERKNS1_6Common12IntrusivePtrINS3_19PlayStylePropertiesEEE) STUB("8jqzzPioYl8", sceImeDialogGetPanelPositionAndForm) +STUB("8jsyDn03CCI", il2cpp_unity_liveness_calculation_begin) +STUB( + "8jtcV5OOa7M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE8copyFromERKS9_) +STUB("8jzNORbUATU", rgctx_fetch_trampoline_mrgctx_126) +STUB("8k1rNqvczTc", _ZN3sce2np9SemaphoreC2Ev) +STUB("8k20eTUQ5Zk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEEC2Ev) +STUB("8k4o1hH-YZc", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container16contentTypeIsSetEv) STUB("8k5ENIb5s7g", sceLibSecureHashHmac) +STUB("8k7wWU-zBtc", + _ZN3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectator16unsetCustomData1Ev) +STUB("8kAjbRlEC5I", _ZN3JSC12HeapCellTypeD2Ev) +STUB( + "8kB4jz90JH4", + _ZN3sce2Np9CppWebApi11Matchmaking2V134ListUserTicketsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_27ListUserTicketsResponseBodyEEE) +STUB( + "8kBW4UAj3QM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEED2Ev) +STUB("8kCXHRXY0yQ", _ZNSt9_FacetptrISt7codecvtIDsc9_MbstatetEE6_PsaveE) STUB("8kM+eFzoBas", sceNpManagerIntUpdateVshTokenA) +STUB( + "8kQwRbDExG4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEED2Ev) +STUB("8kTpmAaPOaM", _ZNK7WebCore14RenderListItem10markerTextEv) +STUB("8kU11lW12ss", _ZN4IPMI4impl10ClientImpl17invokeAsyncMethodEjPKvmPjPKNS_6Client12EventNotifeeE) +STUB("8kUkQPQP7bA", _ZN3sce2np10EventQueueD2Ev) +STUB( + "8kW-qTG080I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEC2EPS8_) +STUB( + "8kZffY3uxhI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEC1Ev) +STUB( + "8kf9ZF9dftQ", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi31putGameSessionsSearchAttributesEiRKNS4_42ParameterToPutGameSessionsSearchAttributesERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB( + "8kgzycy5INs", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Network17ResourceErrorTypeEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB( + "8khLfmf2q7w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEC1ERS7_) STUB("8kuIzUw6utQ", sceNpScoreGetFriendsRanking) +STUB( + "8kyvZOTQe5Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE3endEv) STUB("8kzIXsRy1bY", sceHttpSetDefaultAcceptEncodingGZIPEnabled) +STUB( + "8l-00s61ASw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEE7add_refEv) +STUB( + "8l3NBpfYhfg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE8copyFromERKS9_) STUB("8l9+nBL1Ps0", sceBgftServiceIntUploadGetProgress) +STUB("8lA9lXh0Jfk", WKPreferencesGetAutostartOriginPlugInSnapshottingEnabled) +STUB("8lCno7f4lUI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEEC1Ev) +STUB("8lFDYew19-0", uset_getSerializedRangeCount_67) STUB("8lH54sfjfmU", sceGnmDrawInitToDefaultContextState) +STUB("8lLZVryYgAc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEEC2ERS6_) +STUB( + "8lOL9J9S2D0", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeader43getputPlayerSessionsNonPsnLeaderRequestBodyEv) +STUB("8lPvbU+0nPo", _ZNK7WebCore20HTMLFrameElementBase8locationEv) +STUB( + "8lQFm3Y7pqY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEC1ERKSA_) +STUB("8lROZyvshL0", uprv_stricmp_67) STUB("8lWNf9MWnHw", sceDebugIpmiGetConnectionInfoList) +STUB( + "8leNmVCFlLE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("8lfJFcmtYdQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEE7get_refEv) STUB("8lfvnRMqwEM", sceRtcGetCurrentClock) STUB("8lkg9dlBDtw", sceCesGbToUtf32le) +STUB("8llaUJJ9iG0", + _ZN7WebCore6LengthC2EON3WTF3RefINS_16CalculationValueENS1_13DumbPtrTraitsIS3_EEEE) +STUB("8loW0toK9co", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_17ActivityFeedStoryEED2Ev) +STUB("8lq3HM5y55s", monoeg_g_shell_parse_argv) +STUB( + "8m23pUnNezQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB("8m8-UQTKyUc", _ZN7WebCore14SQLiteDatabase9interruptEv) +STUB( + "8m8ow0jgOt0", + _ZN9Inspector20DOMBackendDispatcher13querySelectorElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "8mBjaBh9qlg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEEC1ERKS9_) +STUB("8mCb2LBddmI", u_getBidiPairedBracket_67) +STUB( + "8mE8A2AvZp0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEE11release_refEv) +STUB("8mKu28JdhO4", WKContextConfigurationCopyResourceLoadStatisticsDirectory) +STUB( + "8mLBWSOYh6U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEE5resetEPSA_) +STUB( + "8mYuWmK7qes", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V138SetMultiVariablesRequestBody_variables11unsetSlotIdEv) +STUB( + "8mcM5f4jRS8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEC2ERS7_) +STUB("8me1HzECeUY", _ZN12video_parser17cTsFFLHndlManagerC1EPKc) +STUB("8meb8xLAF-c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEEC2Ev) +STUB("8milg8QNAII", _ZN7WebCore11DisplayList16DrawLinesForTextD0Ev) +STUB("8miuoqRKhec", mono_aot_Sce_Vsh_SQLitemethod_addresses) +STUB("8mn-7ut9drU", _ZN7Nicosia6BufferD2Ev) STUB("8mpZuu7xfbM", sceUsbStorageRegisterCallbackForMapUnavailable) STUB("8mql9OcQnd4", sceKernelDeleteEventFlag) STUB("8mrBeLW0Zk0", sceAutoMounterClientGetUsbDeviceInfo) STUB("8mtcsG-Qp5E", sceAudioInCountPorts) +STUB( + "8mzRw5W6RCM", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersC1Ev) +STUB( + "8n0tHYtTkk8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("8n4m7yHIrS4", _ZN3sce2np13JsonDocParserC2EP14SceNpAllocator) +STUB( + "8n9J2ApyQIo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE5abortEv) +STUB("8nFPzh2HhQU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEE11get_deleterEv) +STUB("8nJBCqN7T2Q", ucase_getTypeOrIgnorable) +STUB( + "8nJUDQgkplU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEED1Ev) +STUB( + "8nMldE4Leho", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEE3getEv) +STUB( + "8nOTgf1ky-E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEcvbEv) +STUB("8nQGCoTYDcM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEcvbEv) +STUB("8nRcqN+Rt-Q", WKPageLoadURL) +STUB( + "8nRsH4C9R6o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEptEv) STUB("8nUMQUGz3Vs", sceDepthSetRoiset) +STUB("8nV64L7-0bI", _ZN7WebCore14StyleSheetListD1Ev) +STUB("8nY19bKoiZk", fcntl) +STUB( + "8nYUs4yRFok", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEEC2ERS9_) +STUB( + "8nYptG9u+so", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE5beginEv) +STUB("8ndvyB6EAnk", _ZN3sce2Np9CppWebApi11Matchmaking2V110UserTicket11setTicketIdEPKc) +STUB("8ngzWNZzFJU", wcstok) +STUB( + "8njA+kUT4hg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE3endEv) +STUB("8nlEm-PUWjQ", _ZNK7WebCore12SharedBuffer14dataAsUInt8PtrEv) +STUB("8nlHsJDEMqU", _ZN15AbstractStorage15FacebookServiceD1Ev) STUB("8no2rlDjl7o", sceUserServiceGetSystemLoggerHashedAccountId) +STUB( + "8nq9IVnRuRo", + _ZN3sce2Np9CppWebApi7Matches2V130ResponsePlayerStatisticFactory7destroyEPNS3_23ResponsePlayerStatisticE) +STUB( + "8nqH1DbIx2w", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsers31setxPSNSESSIONMANAGERACCOUNTIDSEPKc) +STUB("8ntm0FZeDEQ", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V128SetMultiVariablesRequestBody12getVariablesEv) STUB("8ntsRd07EQA", sceTextToSpeech2Speak) +STUB("8nzaNIxnkGc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEC2Ev) +STUB("8o+NY6J8sdY", _ZN7WebCorelsERN3WTF10TextStreamERKNS_9FloatSizeE) +STUB("8o+oBXdeQPk", _ZGVNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE) +STUB("8o251reVYWs", mono_aot_Sce_Vsh_Messages_DbAccessLibunbox_trampolines) +STUB("8o42zgXg1kg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEEC1EPNS2_10LibContextE) +STUB("8o6hZ+sX7OU", _ZN3JSC10JSFunction21calculatedDisplayNameERNS_2VME) +STUB("8oGnhBsOJxs", fuse_chan_bufsize) +STUB( + "8oL-q1uoAkg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEED2Ev) +STUB("8oLJMYpizrE", uprv_decNumberSquareRoot_67) +STUB( + "8oMAokcbGuA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEC2EPNS2_10LibContextE) +STUB("8oO55jndPRg", _ZNSbIwSt11char_traitsIwESaIwEE6assignEmw) +STUB("8oQrlcWx0fg", _ZNK7WebCore16JSXMLHttpRequest8responseERN3JSC14JSGlobalObjectE) +STUB("8of6l1u8E4U", _ZN7WebCore17JSDOMGlobalObject24builtinInternalFunctionsEv) +STUB( + "8oh0tCf8ono", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEeqERKS9_) +STUB( + "8okTVyQN+FM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEC2Ev) +STUB( + "8os9Th2fLfg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("8ouFk-V2WjM", _UIx86_64__mempool_free) +STUB("8oxXJyibqh4", _ZN6WebKit12ChildProcessD0Ev) +STUB("8ozlDe1o-ok", WKPreferencesGetIsAccessibilityIsolatedTreeEnabled) +STUB( + "8p-LFXYXVxA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("8p2-EuJKwuE", JVM_FindClassFromClass) +STUB("8p45vW3td-Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEEC2Ev) +STUB( + "8p5AMaNHiYY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEC2Ev) +STUB( + "8p5MqBfQpmQ", + _ZN3sce2Np9CppWebApi14SessionManager2V135ResponseGameSessionSpectatorFactory7destroyEPNS3_28ResponseGameSessionSpectatorE) +STUB("8p6EMxA06uE", _ZNK3JSC7JSValue16toNumberSlowCaseEPNS_9ExecStateE) +STUB( + "8p7j0y5skig", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEdeEv) +STUB("8p8NfEvYtak", _ZN9Inspector25BrowserFrontendDispatchernwEmPv) +STUB( + "8p9cStamUIw", + _ZN3sce2Np9CppWebApi14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyD2Ev) +STUB( + "8pCay2dZoCQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEC1Ev) +STUB( + "8pEQNPKL7-8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEC2EPS8_) +STUB( + "8pQmot8dXYg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEC1EPS8_) +STUB("8pST-rncXjc", mono_print_thread_dump) +STUB("8pSX4XvDgjc", _ZN3sce2np14JsonDocBuilderC1EPKNS0_9JsonValueE) +STUB("8pSeFangUAU", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetBoolean4Ev) +STUB("8pSjvfRF8wY", _ZN3JSC7Symbols38asyncGeneratorQueueItemNextPrivateNameE) +STUB("8pVAm2UA-WA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEEppEv) +STUB("8pViWaQiKhA", _ZN9Inspector18InjectedScriptBaseC2ERKN3WTF6StringE) STUB("8pWltDG7h6A", sceCompanionHttpdAddHeader) +STUB("8pXCeme0FC4", _ZNSt7collateIcED1Ev) +STUB("8pc5PXn7SJk", _ZN9Inspector22InspectorDebuggerAgent20setPauseOnExceptionsERN3WTF6StringERKS2_) +STUB("8pcLLbdpWzM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEmmEi) +STUB( + "8pdhL+Py4I8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE7reserveEi) +STUB( + "8pgCKvHWKq4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE4sizeEv) +STUB( + "8pgG2WuOgPQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE8capacityEv) +STUB( + "8pgQ9E9i2+o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("8pkWO5IFxLE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEED2Ev) +STUB( + "8pmZt80MWJE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEEaSERKSA_) +STUB("8pmhsADteEE", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11TusVariableEE9constructEPS3_RKS3_) +STUB("8pokA8LyOtk", _ZN9Inspector25RuntimeFrontendDispatchernwEm) +STUB("8ppA5Hd3FVU", ASN1_STRING_print) +STUB( + "8pqxyLGg9BM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEC2Ev) STUB("8prUGP8pi9M", sceClHttpSetNonblock) +STUB("8pwP-7j5UZI", tls_configure) +STUB( + "8pzn7sTfq9c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("8q0o+-HUPBE", _ZN7WebCore20PasteboardCustomData5EntryC1Ev) +STUB( + "8q37B2wKf1I", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("8q7ftS5g7ps", g_JSScriptFetcherPoison) STUB("8qAJ0Jd58-Q", sceShareOpenMenuForContent) STUB("8qB9Ar4P5nc", sceUsbdGetDeviceList) +STUB("8qH2UuomAuM", il2cpp_object_get_size) STUB("8qHfcUe-Nbo", sceKernelQueryToolMemory) STUB("8qL9O-t6RdE", sceDeci4hDrfpStat) +STUB( + "8qMUjYwGhhk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEC2EPKS8_) +STUB( + "8qPuRwomp0I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEE7add_refEv) +STUB( + "8qYT4W2a-5k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("8qYmcJgmz70", + _ZNK3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponse13getNextOffsetEv) +STUB( + "8qc0pKtXoGc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEneERKS9_) +STUB( + "8qckNdPt+Zk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEEC1ERSA_) +STUB("8qdVicknu9M", _ZNK7WebCore11MessagePort3refEv) +STUB( + "8qglVrEOCwg", + _ZN3JSC12StringObject27getOwnNonIndexPropertyNamesEPNS_8JSObjectEPNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("8qjW8fYssto", _ZN7WebCore11DisplayList4SaveD2Ev) +STUB("8qk62JS2dG0", mono_object_new) +STUB( + "8qkE9VTWnhc", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeOnlineId2AccountIdBatch10initializeEPNS1_6Common10LibContextENS6_12IntrusivePtrINS6_6VectorINS6_6StringEEEEE) +STUB("8qnKSbDRHAY", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11ProductInfoEE7destroyEPS3_) STUB("8qnq8TEhqL8", s_sceLibcMallocState) +STUB( + "8qo2pZpDDJQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE8pushBackERKS8_) +STUB("8qoeA7iML+Y", _ZN3sce2np14JsonNumberImpl3SetEi) +STUB( + "8qqMF4uP9ns", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "8qrE3g8lggI", + _ZThn24_N7WebCore14DocumentLoader17addConsoleMessageEN3JSC13MessageSourceENS1_12MessageLevelERKN3WTF6StringEm) +STUB("8qtytWLvK3c", _ZN3sce7Toolkit2NP2V24Auth7Request11GetAuthCodeC1Ev) +STUB("8qyJEnqVsso", _ZN7WebCore19JSAnimationTimeline14finishCreationERN3JSC2VME) +STUB("8qygzLD+JkI", _ZNK3JSC9CodeBlock26reoptimizationRetryCounterEv) +STUB( + "8qzdSP13Xhk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEmmEv) +STUB( + "8r+ZSjN7cYU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE4sizeEv) +STUB("8r+cK8-zvBs", WKNavigationActionGetTypeID) +STUB( + "8r6pbq6yB3M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEE7add_refEv) +STUB( + "8rErEAQTH6E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEaSERKS8_) +STUB("8rFLLtgkGtM", _Z34scePlayGoEmuFsLoadChunkMappingInfoPvmS_mt) STUB("8rGA7ASyk8Y", sceCesUtf16leToUhc) STUB("8rHK-6bbvqM", sceKernelDebugReleaseDebugContext) +STUB("8rN5UjqbHo0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEC2ERS7_) +STUB("8rRzoDFknyk", _ZNK7WebCore11MediaPlayer31maximumDurationToCacheMediaTimeEv) +STUB("8rXtX498ONs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEE3getEv) STUB("8raHXYfv3Js", sceBgftServiceIntDownloadGetPatchGoProgress) +STUB( + "8raXTYQ11cg", + _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE7_GetintERS3_S5_iiRiRKSt5ctypeIcE) +STUB("8rd5FvOFk+w", _ZTISt18bad_variant_access) +STUB("8reqGK4Jslw", + _ZNK7WebCore24CoordinatedGraphicsLayer41selfOrAncestorHasActiveTransformAnimationEv) STUB("8rhLl1-0W-o", sceNpProfileDialogGetResult) +STUB( + "8ribD2kOIeQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE21intrusive_ptr_add_refEPS9_) +STUB("8rjATNfmywY", _ZN9Inspector27PerGlobalObjectWrapperWorldC2Ev) +STUB( + "8rkYT4LS3Lc", + _ZN7WebCore17KeyframeValueList6insertESt10unique_ptrIKNS_14AnimationValueESt14default_deleteIS3_EE) STUB("8s+T0bJeyLQ", sceNetSetDnsInfoToKernel) +STUB( + "8s7icFeN1eA", + _ZN3sce7Toolkit2NP8Sessions9Interface17getInvitationDataEPKNS1_21InvitationDataRequestEPNS1_9Utilities6FutureINS1_17MessageAttachmentEEEb) +STUB("8s9UY6PrUa8", _ZNK3WTF6String5asciiEv) +STUB("8s9vbju5QaE", _ZN3sce2Np9CppWebApi7Matches2V15Error11unsetSourceEv) +STUB( + "8sC5x2mTn58", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEC1EPS8_) STUB("8sFq5s8eHnQ", sceAmprAmmMeasureAmmCommandSizeRemap) +STUB("8sFu9BpNYtk", + _ZN3sce2Np9CppWebApi14SessionManager2V110FromMember11setOnlineIdERK13SceNpOnlineId) +STUB("8sFvxy0EtG4", mono_btls_key_up_ref) +STUB("8sIZJC3g1SU", _ZN3JSC7Symbols27isAsyncGeneratorPrivateNameE) +STUB("8sMLUHoKn50", + _ZN3sce2Np9CppWebApi7Matches2V123ResponseMatchStatisticsC2EPNS1_6Common10LibContextE) +STUB( + "8sMsEpTsUso", + _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody15getJoinDisabledEv) +STUB("8sN4TdPfvNI", WKPreferencesGetAntialiasedFontDilationEnabled) +STUB("8sOZCTw78EQ", _ZN3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer8fromJsonERKNS_4Json5ValueE) +STUB("8sQtWpAYCgA", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEEdeEv) +STUB("8sRazHFyyQw", FTC_Manager_Lookup_Size) +STUB( + "8sRfYnV7XlA", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScore10initializeEPNS1_6Common10LibContextEiNS6_12IntrusivePtrINS3_22RecordScoreRequestBodyEEE) +STUB( + "8sTbTgujtxU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEED2Ev) +STUB( + "8sV4WCpIP1M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEEC1ERKSA_) +STUB( + "8sW-5VAuFM0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE8capacityEv) +STUB("8sWDDbvzRtg", _ZNK3WTF6String5splitEDsbRNS_6VectorIS0_Lm0ENS_15CrashOnOverflowELm16EEE) +STUB("8sZw9-G4ubQ", kJSClassDefinitionEmpty) +STUB( + "8saF-RUoUQU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEE7get_refEv) +STUB( + "8sdVRf9CoyA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEC1EPS8_) +STUB( + "8sg4sRJkj38", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V125FrequentlyMutedProperties8fromJsonERKNS_4Json5ValueE) +STUB( + "8sgNw1WbG1Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEC2EPS8_) +STUB("8shc+gbpJ5w", WKWebsiteDataStoreStatisticsProcessStatisticsAndDataRecords) +STUB( + "8singq2gbZM", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setInteger6ERKi) +STUB( + "8sk36eHYtrU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) STUB("8skggWXlSqM", sceKernelDeleteGpuExceptionEvent) STUB("8spY5jF1aig", sceVshAvcapReadAudio) +STUB("8spciBR67qY", delegate_virtual_invoke_imt_m_13_p) +STUB("8sr4GAVP968", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEEC1Ev) +STUB("8srhi9kpSTI", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112GroupingTypeEEppEi) +STUB("8stlbyGspnE", _ZN3WTF22defaultPortForProtocolENS_10StringViewE) +STUB("8svDYUH0Bjo", SwCtrlSinkFinalize) STUB("8t+XNSyIXus", sceSocialScreenGetIgnoreSeparateMode) +STUB("8t3NJDmskf4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEaSERKS7_) +STUB("8t7fiGWomPU", _ZNK3WTF10StringImpl18hasInfixStartingAtERKS0_j) +STUB("8t9Vk74CkmU", _ZNK7WebCore10ISOFullBox5flagsEv) +STUB( + "8tBlosXLX5k", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE5emptyEv) +STUB("8tE06sxxee8", _ZNK7WebCore15SQLiteStatement18bindParameterCountEv) +STUB( + "8tFs0xlbfHk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEneERKS9_) +STUB("8tJ08IRhkes", _ZN3sce2Np9CppWebApi13InGameCatalog2V511ErrorEntityD1Ev) +STUB( + "8tL33DeitnI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEptEv) +STUB("8tL6yJaX1Ro", _ZNSt8ios_base5_SyncE) +STUB( + "8tLNDzKLqmI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("8tN3S+eEa-c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEED2Ev) +STUB("8tUBw7skPZ0", WKPageRunJavaScriptConfirmResultListenerCall) +STUB( + "8tYrEcCSUVg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEE7add_refEv) +STUB( + "8tfNke-JP3M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "8tm+jbVk7XQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEE3getEv) +STUB("8tq87pgLk+8", _ZN7WebCore22createDragImageForNodeERNS_5FrameERNS_4NodeE) +STUB("8tsQXe8FuPw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEaSERS7_) +STUB( + "8tuCRRSFJa0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE5emptyEv) +STUB("8u8lPzUEq+U", memchr) +STUB( + "8u9N9gPDYUw", + _ZN9Inspector21PageBackendDispatcher6reloadElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("8uGRJZoashk", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead17nonPsnLeaderIsSetEv) +STUB("8uKM4ygHphQ", _ZN3sce2Np9CppWebApi6Common8IteratorImEmmEi) +STUB( + "8uQdzf2BNlw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("8uQflsF31oU", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer12hasdirectionEv) +STUB("8ue5C0IlNvA", _ZN7WebCore8SVGNames15animateColorTagE) +STUB("8un+CI4zC5Q", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEaSERS7_) +STUB("8utugZeuS5k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEC1ERS7_) +STUB( + "8uy0+pZLjp8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE8copyFromERKS9_) +STUB( + "8uy5GqOey4E", + _ZN3sce2Np9CppWebApi14SessionManager2V132FriendJoinedPlayerSessionFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_25FriendJoinedPlayerSessionEEE) +STUB("8uz5mbc23ig", mono_btls_x509_store_add_cert) +STUB( + "8v-1oUw9olU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("8v32xfCSuRU", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE5beginEv) +STUB("8v4H1LkQlz4", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEED2Ev) +STUB("8v4Xk2b+C1k", FcConfigSubstitute) +STUB("8v50ik3N8zs", _ZNK7WebCore9FrameTree12traverseNextENS_7CanWrapEPNS_7DidWrapE) +STUB("8v8WnjSpQuc", _ZNK3sce2Np9CppWebApi13InGameCatalog2V55Error9getSourceEv) +STUB("8vBNMcGGq1w", rgctx_fetch_trampoline_rgctx_52) +STUB( + "8vCYRbNtpHs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEdeEv) +STUB("8vE6Z6VEYyk", access) +STUB("8vEBRx0O1fc", _ZNSt10moneypunctIwLb1EE4intlE) +STUB("8vSqKgoif-I", GCC_except_table36) +STUB("8vWG-fYkWWg", Java_java_lang_Double_longBitsToDouble) STUB("8vYXkdXmh-Q", sceLncUtilSuspendBackgroundApp) +STUB("8vZfDPq-k84", mono_metadata_free_type) +STUB( + "8vaGFqiao+4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEmmEv) +STUB("8vdU3tjLqgE", _ZNK7WebCore5Frame6windowEv) STUB("8vdyXEwToi0", sceCesRefersUcsProfileCp857) +STUB( + "8vgoB2QpCq4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEED1Ev) +STUB( + "8vhDU0ts2ls", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEC2Ev) STUB("8vhI2SwEfes", sceUserServiceGetNpCountryCode) +STUB("8viKdiZL7j4", cairo_surface_get_type) STUB("8viux6iPtf8", sceNpSessionSignalingManualUdpCreateJoin) +STUB( + "8vkfrSJ4i6Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB("8vlYNyAUFlU", _ZN7WebCore15GraphicsContext5scaleERKNS_9FloatSizeE) +STUB( + "8vmIpfb+zmE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEC2Ev) +STUB( + "8vmN7L3vD10", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "8vqIDNAN5Lg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEC2ERS7_) +STUB( + "8vwi6aXMqRQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEE5resetEPS9_) +STUB("8vyiTfU+1+s", rgctx_fetch_trampoline_mrgctx_109) STUB("8w-H19ip48I", sceRtcGetTick) +STUB("8w4gFcXTELc", _ZN7WebCore12ChromeClient29supportsImmediateInvalidationEv) +STUB( + "8w85JkamSVM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEC1EPNS2_10LibContextE) +STUB( + "8wAExrmWCmk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEaSERKS9_) +STUB("8wD6Sq3WBcA", WKBundleResetOriginAccessAllowLists) +STUB( + "8wF5eBxnS5A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEC1Ev) +STUB( + "8wHc+-Xo7T0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE7popBackEv) +STUB( + "8wO9yNi5ucs", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error27setValidationConstraintInfoERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_24ValidationConstraintInfoEEEEE) STUB("8wVUn7AO8mA", sceUserServiceSetPbtcSaturdayHoursEnd) +STUB( + "8wWGZD2une0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEaSERS7_) +STUB("8wWauon64VQ", _ZN3sce7Toolkit2NP2V24Auth8AuthCodeD2Ev) +STUB( + "8wi-wgXct0k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEC1Ev) +STUB( + "8wnmelYBJvY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE7popBackEv) +STUB( + "8wp1JJ8d0co", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "8wr9i3BWSBw", + _ZN7WebCore32throwArgumentMustBeFunctionErrorERN3JSC14JSGlobalObjectERNS0_10ThrowScopeEjPKcS6_S6_) +STUB("8x++mBOUeso", _ZN3sce2Np9CppWebApi6Common10InitParamsC1Ev) +STUB( + "8x6BJ-6cv3k", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEptEv) +STUB("8xIdJWLkSLo", _ZN3sce7Toolkit2NP2V28Matching7Request8JoinRoom24DEFAULT_DISPLAY_PRIORITYE) +STUB("8xXJUdXNHL4", + _ZN7WebCore48closestEditablePositionInElementForAbsolutePointERKNS_7ElementERKNS_8IntPointE) +STUB("8xXiEPby8h8", _Getptimes) +STUB("8xYY2l-Ugoc", _ZN7WebCorelsERN3WTF10TextStreamERKNS_7IntSizeE) +STUB("8xcXCQYNlCQ", WKPreferencesGetUserInterfaceDirectionPolicy) +STUB("8xgKWJVwQMI", _ZN3sce2Np9CppWebApi14SessionManager2V16FriendC2EPNS1_6Common10LibContextE) +STUB("8xkWymJPw2g", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13FriendsOfUserEED1Ev) +STUB("8xogyiumZ3I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEE7add_refEv) +STUB("8xtAsAizlvE", + _ZNK3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponse17getPreviousOffsetEv) +STUB( + "8xtqkZX7zjs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEEaSERSA_) +STUB( + "8y+XQD0mZSs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEplEm) +STUB("8y1Cv7BS6dg", sqlite3_data_count) +STUB( + "8y6zXfWDII8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEixEm) +STUB("8y7DjDBJ6Nw", res_getTableItemByIndex) +STUB("8y9cI401Bxc", _ZN3sce7Toolkit2NP2V23TUS7Request19AddToAndGetVariableD2Ev) +STUB( + "8yBHRDWbIGs", + _ZNK7WebCore10ScrollView29unobscuredContentRectInternalENS_14ScrollableArea36VisibleContentRectIncludesScrollbarsE) +STUB( + "8yEkjV3jLIc", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEED2Ev) +STUB( + "8yHyjhysCSk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("8yIFbKnhf28", _ZN3sce7Toolkit2NP2V28Matching17AttributeMetadataC1Ev) +STUB("8yL-ikMAPas", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V117InvitableUserTypeEEppEv) +STUB("8yLznatBuzo", _ZN9Inspector21InspectorRuntimeAgent13releaseObjectERN3WTF6StringERKS2_) +STUB( + "8yVdpzzMqRo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEEC2ERKSA_) STUB("8yiDK9rMKtc", sceBgftServiceIntAbortNotificationEvent) +STUB("8ym-HGNfQeU", _ZN8meta_gen11MsvPromoter15convertLangTypeEN12video_parser9VP_LANG_eE) +STUB( + "8ynoC4ERxCs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEEC1ERKS8_) +STUB( + "8yq2lu0pQ2g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("8yrWqwnPGTs", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V125NatConnectivityPropertiesD2Ev) +STUB("8yyiCDAXbrQ", mono_aot_System_Runtime_Serializationmethod_addresses) +STUB("8yyuwiQdZT8", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities26GetUsersActivitiesResponseD2Ev) +STUB( + "8z+3RKGEKMY", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE5getIdEv) STUB("8z3zK1NQgQY", scePlayReadyCdmiSetSessionCallbacks) +STUB("8z5gjWiHnvA", WKPreferencesGetWebRTCLegacyAPIEnabled) +STUB( + "8zBNZXDimjA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE7popBackEv) +STUB( + "8zCNBRsxyOU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE8copyFromERKS9_) +STUB( + "8zCYQzSXIWY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEppEi) +STUB( + "8zJzZ6-BKnk", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V129MatchCompletionRateProperties6toJsonERNS_4Json5ValueEb) STUB("8zLSfEfW5AU", sceCoredumpRegisterCoredumpHandler) +STUB( + "8zLpKxMTWSg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "8zM+FpFvnr4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEC2ERKS7_) +STUB("8zMm0QOWZAA", cairo_in_stroke) +STUB("8zNkk8YIQDU", _ZN3sce7Toolkit2NP15CommunicationIdC2Ev) +STUB( + "8zQ4fwrlvSs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("8zRsoIHzL+w", _ZN3sce7Toolkit2NP2V28Commerce14ProductDetails8MAX_SKUSE) +STUB("8zTFvBIAIN8", memset) +STUB("8zUkkJh02yE", JVM_Interrupt) +STUB( + "8zXiqKvBIpk", + _ZN3sce2Np9CppWebApi14SessionManager2V143UsersPlayerSessionsInvitationForReadFactory7destroyEPNS3_36UsersPlayerSessionsInvitationForReadE) +STUB( + "8zZz7vrUQCw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEC1EPS6_PNS2_10LibContextE) STUB("8zbVe50ACas", sceVnaSetEnableAssistantLegalCheckStatus) +STUB("8zga68c0fJ0", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE3endEv) +STUB("8zj2LYparBk", _ZNK7WebCore19DragCaretController23isContentRichlyEditableEv) +STUB("8zlDKTZKF+s", mono_aot_System_IO_Compression_FileSystemjit_code_start) +STUB( + "8zlVzKxLImY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEC1Ev) +STUB( + "8zo60DdOBkk", + _ZNK7WebCore21ContentSecurityPolicy21allowScriptFromSourceERKNS_3URLENS0_24RedirectResponseReceivedE) +STUB( + "8zrNaJuWo9A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("8zsqYG3p0AM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEptEv) +STUB("8zsu04XNsZ4", expf) +STUB( + "8ztJtiS2N8s", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE4sizeEv) STUB("8ztpPAczQLs", sceHttpCacheCreateRequestWithTag) +STUB( + "8zyHrtXex2E", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13integer4IsSetEv) +STUB("8zzDdL3-5Do", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS25AtomicAddToAndGetVariableEE12deepCopyFromERS7_) +STUB( + "8zzc4OFFK7k", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEEptEv) +STUB("9++e41uCH38", mono_aot_System_Numericsunwind_info) +STUB( + "9+2m7mcMgVc", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10getString9Ev) +STUB("9+6bMQWFZQg", _Z20WTFCrashWithInfoImpliPKcS0_immmmm) STUB("9+7ISLVZk2c", scePssSoundPlayerGetPlayState) +STUB("9+7WZC9uyo8", uscript_openRun_67) STUB("9+8RiLTZ57g", sceApplicationGetCoreFileName) +STUB("9+NmoosRoBA", _ZN3sce2np7RingBufD2Ev) +STUB("9+O2778uxzI", _ZN23sceMetadataReaderWriter14StorageManager10getStorageERKSsPPNS_7StorageE) +STUB( + "9+O5dkJ-RAk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEEC2ERSA_) +STUB("9+OV-JUH6P4", Java_com_sony_bdjstack_core_CoreApp_getInitialArguments) +STUB( + "9+QzCPtyj90", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEEC1ERKS9_) STUB("9+SNhbctk64", sceCameraSetConfigInternal) +STUB("9+Wdaue0ZDE", _ZN7WebCore11MathMLNames12fontsizeAttrE) +STUB( + "9+YTfrz4Gr0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEC1Ev) STUB("9+g9iOq+7kg", sceInvitationDialogUpdateStatus) +STUB("9+iSQViDda8", _ZN7WebCore18ParsedContentRangeC2ERKN3WTF6StringE) +STUB( + "9+iV7tVBAWA", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setBoolean2ERKb) STUB("9+m5nRdJ-wQ", sceNpCalloutInitCtx) +STUB("9+nPgH-HAXs", WKBundleHitTestResultCopyAbsolutePDFURL) +STUB( + "9+o6t5g7I4w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("9+ss8rOc3Tw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEEdeEv) +STUB( + "9+u389WKnho", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEEC1EPS6_PNS2_10LibContextE) +STUB("9+vJo3MTStg", mono_domain_from_appdomain) +STUB("9--Rr8jM-DA", uset_getSerializedRange_67) +STUB( + "9-47Mp8fKgE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEdeEv) +STUB("9-578CFQx5c", _WPrintf.percent) +STUB( + "9-8IjIogXvI", + _ZN3sce2Np9CppWebApi14SessionManager2V127PlayerSessionForReadFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_20PlayerSessionForReadEEE) +STUB("9-9Fw3vcS+0", _ZN7WebCore9HTMLNames7markTagE) +STUB("9-FO5VLI3i4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ResponseCooperativeResultEEC2EPS6_) +STUB( + "9-IewNgBuWE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEdeEv) +STUB("9-J4t5zkgJg", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEED2Ev) +STUB( + "9-OJhmAWvEk", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("9-P4rOjWBKQ", g_slist_find) +STUB( + "9-RL-oOxhUk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEE11release_refEv) +STUB("9-TRy4p-YTM", _ZTISt11regex_error) +STUB("9-UYT5wtXHo", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate17perFranchiseIsSetEv) +STUB( + "9-XgINsKn0I", + _ZN8meta_gen11MsvPromoter29setKeyValue_TBLV_VideoBitrateENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB("9-YDyfqwRDw", cuse_lowlevel_teardown) +STUB( + "9-ZvaH-Oodg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE4sizeEv) +STUB( + "9-a-8txG+b4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE10setContextEPNS2_10LibContextE) STUB("9-fQVDsnM94", sceAudioOut2PortCreateEx) +STUB("9-g-VqPicEQ", _ZN7WebCore9HTMLNames13onstorageAttrE) +STUB("9-iVwdotSr4", CommerceShowPsStoreIcon) STUB("9-jaAXUNG-A", sceHmdInternalPushVr2dData) +STUB( + "9024IicCeWU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEEaSERKSA_) +STUB( + "902mTQNihVI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEEC2Ev) STUB("9030RnBDoh4", scePngEncQueryMemorySize) +STUB( + "908w6T+HN8k", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEeqERKS9_) +STUB( + "90CLQXDKRy0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEC2EPKS8_) +STUB( + "90CmknkcnOw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEixEm) +STUB( + "90EuhbIPLWo", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS5_INS7_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "90I4N6UxnMs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEE7add_refEv) +STUB("90KQ3YTMvBU", ucnv_createAlgorithmicConverter_67) +STUB("90S9Y9dYReA", _ZNK7WebCore9FrameView19baseBackgroundColorEv) +STUB("90T0XESrYzU", _ZNSt13_Num_int_base10is_integerE) +STUB( + "90TH7-OTCq4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEC1Ev) +STUB( + "90WZRdg64pE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEED1Ev) +STUB("90XdvAqFFn8", _ZN3sce2np3ipc17ServiceIpmiClientD1Ev) +STUB( + "90YeG75GCMU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEEC1ERKSB_) +STUB("90bDQvXrvq8", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE5beginEv) +STUB("90bVMRJg1jM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEC1Ev) +STUB( + "90m6qsdWl7s", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetInteger4Ev) +STUB("90o7nxDtbdc", Java_java_lang_Object_registerNatives) +STUB("90ojN3DTHjY", nl_langinfo) STUB("90pmGqDK4BI", sceNpDbgAssignDebugId) +STUB( + "90tCdPotPR0", + _ZN7WebCore15GraphicsContext24drawConsumingImageBufferESt10unique_ptrINS_11ImageBufferESt14default_deleteIS2_EERKNS_10FloatPointERKNS_20ImagePaintingOptionsE) +STUB( + "90x2qFhhk+0", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToSendGameSessionMessageC2ERS5_) STUB("90y6o3vONeQ", sceLibSecureCryptographyResetContext) +STUB("910DzrTNQDw", _ZN3sce7Toolkit2NP2V29Challenge7Request13SendChallenge21MAX_SIZE_TEXT_MESSAGEE) +STUB("911IbjFdJDA", _ZNK7WebCore16HTMLMediaElement33lastMediaResourceLoaderForTestingEv) +STUB("912NXRv7iXE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE5beginEv) +STUB( + "912V5M8tU1M", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_11EntitlementENS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv) STUB("919MhccOiII", sceJpegDecDecodeWithInputControl) +STUB("91EcLyEE3iU", _ZN7WebCore9HTMLNames17aria_valueminAttrE) +STUB( + "91G2YoEIjG4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEEC2ERKSA_) +STUB("91Gy65OHabk", _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error10getMessageEv) +STUB( + "91H5EUrrh6Y", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE8capacityEv) +STUB( + "91LPpMUA0HU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEC1EPS9_) +STUB("91MCV3e8nlw", Java_java_awt_GnmGraphicsEnvironment_runConsoleEventThread) +STUB("91Q1Pv5Bv34", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15PlayedWithStoryEE7addressERS3_) +STUB("91TqZ9OxUgI", mono_image_addref) +STUB("91XFHcBWP-k", _ZNK3sce2np14JsonStringImpl6GetStrEv) +STUB( + "91aXKNiHtZw", + _ZThn16_N9Inspector22InspectorDebuggerAgent13setBreakpointERN3WTF6StringERKNS1_8JSONImpl6ObjectEPS6_PS2_RNS1_6RefPtrINS_8Protocol8Debugger8LocationENS1_13DumbPtrTraitsISD_EEEE) +STUB("91bSJvzfgEA", _ZN9Inspector15AsyncStackTrace18didCancelAsyncCallEv) +STUB("91iEWZCFXj8", jpeg_mem_term) +STUB("91kCCWMU75A", _ZN7WebCore24DeprecatedGlobalSettings21mockScrollbarsEnabledEv) STUB("91kOKRnkrhE", sceUserServiceGetGlsCameraChromaKeyLevel) +STUB("91lAv49NDC8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEED1Ev) +STUB("91qDhcPGktQ", _ZN7WebCore9HTMLNames16aria_invalidAttrE) +STUB("91tmX-hOiP4", _ZN3sce2Np9CppWebApi11Matchmaking2V19SubmitterD1Ev) +STUB("91wv2313GMQ", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container13childrenIsSetEv) +STUB("91zlAET-Bn8", _ZN3sce7Toolkit2NP34DetailedProductInfoListInputParams9ProductIdC1Ev) STUB("923EmVF1ojk", scePerfPmcL2iStart) +STUB("924CNCJmlCs", + _ZNK7WebCore30InvertLightnessFilterOperation14transformColorERNS_15FloatComponentsE) STUB("9262lxP0SpM", sceAvControlSetGamutMetadata) STUB("926stjXB08w", sceFsUfsCollectTelemetry2) +STUB( + "92B8mpCNIyE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEptEv) +STUB( + "92GyfCAPUCI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEC2Ev) +STUB("92HTzROeIiQ", rgctx_fetch_trampoline_rgctx_100_p) +STUB("92MbMr8naXY", mono_aot_Sce_PlayStation_HighLevel_UI2Platformplt_end) +STUB("92QDsOnBYss", uprops_addPropertyStarts_67) +STUB("92RMcC5IfeE", sqlite3_bind_parameter_count) +STUB("92bWLmKZvAo", _ZTVN9Inspector31BrowserBackendDispatcherHandlerE) +STUB("92e4jZiW9Tc", FT_CeilFix) +STUB("92mAf1S1GTw", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariableaSERS5_) +STUB( + "92mD6nkU57s", + _ZN7WebCore10JSLocation25getOwnPropertySlotByIndexEPN3JSC8JSObjectEPNS1_14JSGlobalObjectEjRNS1_12PropertySlotE) +STUB("92p4t4-bfJk", _ZN3sce7Toolkit2NP2V28Commerce10DescriptorC2Ev) +STUB( + "92pPiTnPfM4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEC1EPS8_) +STUB("92u28XHNKv8", _ZN3sce7Toolkit2NP2V23TSS7Request7GetDataC1Ev) STUB("92xCv12VJIA", sceFiosSaveTimeStamp) STUB("92xc-Oij6do", sceNpUniversalDataSystemIntRecordObjectSetArray) +STUB( + "92zLivgv22w", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB("92zzWjEld40", mono_aot_Sce_Vsh_Passcodejit_code_start) +STUB("932OhF7yB4I", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEEplEm) +STUB( + "935n6m4gqQ4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "9369S2BNenI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEneERKS9_) +STUB( + "93AB1d47W9c", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE4sizeEv) +STUB("93FjKklK15A", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOffer7setviewEPKc) +STUB("93Hxh-h1reM", unorm2_append_67) +STUB( + "93IiI78oTpY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEEC1ERKSC_) +STUB("93IuLXtj1sc", _ZN15AbstractStorage14MemfileContentD0Ev) +STUB( + "93MLsChSv5Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) STUB("93MnzhkAAgk", sceLncUtilContinueApp) +STUB("93OYoC8EI80", mono_escape_uri_string) +STUB("93P7JEmYuh0", rgctx_fetch_trampoline_mrgctx_45_p) +STUB( + "93PniEerHsg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) STUB("93X4S1mT3y0", sceFsDevpfsFsck) +STUB("93YI2YQOmbA", monoeg_g_file_get_contents) +STUB( + "93cgympDipE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "93dZiTaDEPQ", + _ZN3sce2Np9CppWebApi14ConnectAccount2V215AccountLinksApi17deleteAccountLinkEiRKNS4_28ParameterToDeleteAccountLinkERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB( + "93gBqL3qwtw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE7reserveEi) +STUB("93i7N2DYhBU", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_33ActivityFeedSharedScreenshotStoryEEC2Ev) STUB("93trbeNjx7c", sceShellCoreUtilGetIDUMode) +STUB( + "93wmsi+VaFg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEC1EPKS8_) +STUB("94+5iSFgIKo", rgctx_fetch_trampoline_rgctx_46) STUB("94+Ggm38KCg", sceHmdReprojectionClearUserEventEnd) +STUB( + "942vnFq4xdI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEED1Ev) +STUB("9443loxYNHc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEEptEv) STUB("946ueKyw75w", sceAppInstUtilAppCancelableUnInstall) +STUB( + "947LdqfT3rk", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser11getsortModeEv) +STUB( + "949jY5-cj9s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEixEm) STUB("94AHNBOWx-E", sceClHttpInit) +STUB("94EuReVV8c0", SHA224_Final) +STUB("94G36ovZEdI", _ZN3JSC2VM21bigIntObjectSpaceSlowEv) +STUB("94NTgVHUaE8", JSObjectMakeTypedArrayWithBytesNoCopy) +STUB("94Nv-iEJPHU", _ZN3sce2Np9CppWebApi6Common6VectorIfE5clearEv) +STUB("94OiPulKcao", _ZNSt12placeholders3_15E) +STUB("94PPEKa0QsQ", JSObjectMakeFunction) STUB("94TcQVqP4Fw", sceEsvmEngineMediaKeysSetEventHandler) +STUB( + "94ZLp2+AOq0", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERm) STUB("94ZcZmcnXK4", sceUserServiceSetPbtcMode) +STUB("94dk1V7XfYw", _ZNSt13runtime_errorD0Ev) +STUB("94dqjDJwsRY", _ZN7WebCore4Page30accessibilitySettingsDidChangeEv) +STUB("94fTC-ZSU4o", il2cpp_method_get_class) +STUB( + "94ute9U3+x8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE5beginEv) +STUB( + "94y2PO61+Jg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEmmEi) +STUB("95+sJrPf30A", _ZN15AbstractStorage14YoutubeContent5WriteEPKvlPl) +STUB( + "95-tVkowD7k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEC1ERKS7_) +STUB("951o4aXk+P8", _ZN3JSC10Identifier27checkCurrentAtomStringTableERNS_2VME) +STUB("959ch5i1yBY", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEEmmEv) STUB("959qrazPIrg", sceKernelGetProcParam) +STUB( + "95C8bCPInIE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEE5resetEPS6_) +STUB( + "95ERUyteUzo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEED1Ev) +STUB("95FhkfvoGQM", _ZN3WTF23callOnMainThreadAndWaitEONS_8FunctionIFvvEEE) +STUB("95Jbx5-gFZ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEC2Ev) +STUB("95MaQlRbfC8", _ZNSt10moneypunctIwLb0EED0Ev) +STUB( + "95MikYUI6SA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEED1Ev) +STUB("95NZUqZWgrU", _ZNK3sce2Np9CppWebApi7Matches2V120RequestTeamStatistic6toJsonERNS_4Json5ValueEb) +STUB("95SqSmwHB0M", mono_aot_Sce_Vsh_ShareServerPostWrapperjit_got) STUB("95UOysgEA1k", sceNpIpcAbortRequest) +STUB("95V3PF0kUEA", powl) +STUB("95ZTWkRkRys", + _ZN7WebCore5Frame6createEPNS_4PageEPNS_21HTMLFrameOwnerElementEPNS_17FrameLoaderClientE) +STUB("95atR7io-XY", GCC_except_table260) STUB("95bdtHdNUic", sceAudioOutSuspendResume) +STUB("95cbDYU5PBg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEEC1Ev) +STUB( + "95e4MAZRGnA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEC1EPS8_) +STUB("95ePi-pYYmg", uset_removeAll_67) +STUB( + "95mYiMqtDkI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEED2Ev) +STUB( + "95u7Kn+ZzSg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEdeEv) +STUB("95x6M5HT8IY", + _ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer10setNatTypeERKi) +STUB("960DUC4pbQA", rgctx_fetch_trampoline_rgctx_119_p) +STUB("966Sw8LjFIg", rgctx_fetch_trampoline_rgctx_1) +STUB("969Euioo12Q", _ZNSt8messagesIcEC2ERKSt8_Locinfom) +STUB("96Bg8h09w+o", _ZNSt9_Num_base15has_denorm_lossE) +STUB( + "96EouqhYdhc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEE11release_refEv) +STUB("96Ev+CE1luE", _ZNSt8messagesIcE7_GetcatEPPKNSt6locale5facetEPKS1_) STUB("96F7zp1Xo+k", sceCameraSetAttributeInternal) +STUB("96GyccomUww", _ZN3sce2Np9CppWebApi7Matches2V119ResponseTeamResults9setTeamIdEPKc) +STUB("96Jno3e1rpA", _ZN3sce2Np9CppWebApi14SessionManager2V110FromMember11setPlatformEPKc) +STUB( + "96KFt5QhJZM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEEC1ERKSA_) +STUB( + "96N4jjP6DV4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEE5resetEPS6_) +STUB("96S1Qrln1-E", + _ZN15AbstractStorage18DailymotionContentC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) +STUB("96S8rlsntBU", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicketD1Ev) +STUB("96X8jzxG20g", + _ZN7WebCore12ChromeClient34exitVideoFullscreenForVideoElementERNS_16HTMLVideoElementE) +STUB( + "96Ys2uUS+e8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("96iOZxITfmM", ures_getVersion_67) +STUB("96iwUEq1jKY", _ZN7WebCore14SQLiteDatabase9lastErrorEv) +STUB( + "96j+qqI2nDg", + _ZN3sce2Np9CppWebApi11Matchmaking2V116AttributeFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_9AttributeEEE) +STUB( + "96k3CyKEs9c", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB("96kVLpVimmw", _ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody9unsetPcIdEv) +STUB("96nGjHXEWo4", vm_send_GetCachedUnwindInfo) STUB("96pmXKJwUWY", sceNpManagerIntSetCheckPlusResult) +STUB( + "96ugFT1kOiE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEaSERKS9_) +STUB("96xdSFbiR7Q", _ZTIPe) +STUB( + "96zXLB4Ukeo", + _ZN12video_parser17cVideoProfilerMp419_additionalCheckAACERNS_7cVpListINS_13VpMediaInfo_tEjEERNS0_13VpTrackInfo_tE) +STUB( + "977Gb79HlfI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE21intrusive_ptr_sub_refEPS9_) +STUB("9789sAtaavg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEEC1EPKS6_) +STUB( + "97COouWLTx0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE4sizeEv) STUB("97L0D3+iBDE", sceShellCoreUtilGetHidConfigFileString) +STUB("97PkESu6iVk", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V113ErrorResponseD2Ev) +STUB("97QKcc74TmM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEEC1EPKS6_) STUB("97RAfJch+qE", sceNpManagerIntBindOfflineAccountId) +STUB("97UFbB1wPXs", _ZNK7WebCore14SecurityOrigin9canAccessERKS0_) STUB("97UTMR7Tb5s", sceBgftServiceIntDownloadStartTaskAll) +STUB("97V-KpyIRRw", + _ZN7WebCore14ScrollableArea27availableContentSizeChangedENS0_25AvailableSizeChangeReasonE) +STUB("97WNikw2qFE", mono_declsec_flags_from_class) +STUB( + "97Z+KJ-hbr8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEC1EPS6_PNS2_10LibContextE) STUB("97ZkWubtMk0", sceUserServiceSetPartyMuteListA) +STUB("97ixcMQb0LI", ucol_getOffset_67) +STUB("97ju9poLOrE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEED1Ev) +STUB( + "97lPAwMVVk0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE5beginEv) +STUB( + "97o+V25wgXk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE21intrusive_ptr_sub_refEPS9_) +STUB("97p3eJHwYx8", _ZTVN9Inspector22InspectorDebuggerAgentE) +STUB( + "97vrN6GbLbI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEC1EPS6_PNS2_10LibContextE) +STUB("97z4LrV5qGc", mono_aot_Sce_Vsh_Np_AppLaunchLinkjit_code_start) +STUB("97zVHR8KxbQ", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13WhoLikedStoryEED2Ev) +STUB("98-71sEmEjM", _ZN9Inspector26InspectorBackendDispatcherD0Ev) +STUB("98-MNSKtaHw", mono_aot_System_Windowsplt_end) +STUB("982Fr3+9qfg", + _ZN3sce7Toolkit2NP2V29Messaging7Request37DisplayReceivedGameDataMessagesDialogC2Ev) +STUB("984IK1VPNp0", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product10labelIsSetEv) +STUB("984JEn4ELo4", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V117ConnectionQualityD1Ev) +STUB("985+pv1mzsA", d2i_PKCS12_fp) +STUB("9891V3n8oac", mono_get_method_full) +STUB( + "98A6nOqsafE", + _ZN3JSC8JSObject16getPropertyNamesEPS0_PNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("98AUuVfM5wM", _ZN12video_parser5vpcom10LockCreateEPPN3paf6thread5MutexEy) +STUB("98EKVFkCQDI", _ZN7WebCore21BlobDataFileReferenceD2Ev) +STUB( + "98IhQWJj8iA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) STUB("98LV9dS2Fvw", sceKernelIccIndicatorStandby) +STUB( + "98OqYkQMiMA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE7popBackEv) +STUB( + "98Qkaf0GRS4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEEcvbEv) +STUB("98VZNtHov7E", _ZN3JSC11SymbolTable6s_infoE) +STUB( + "98VkW0qYFIc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEED2Ev) STUB("98XGr2Bkklg", sceFontGraphicsSetupRotation) +STUB( + "98Zakb3EuGs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEC1Ev) STUB("98g6a1l5dUA", sceDataTransferHostAbort) +STUB( + "98j6Jz2Ak7k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEaSERKS9_) +STUB("98kInJrpGRo", _ZN3JSC13WatchpointSet11fireAllSlowERNS_2VMEPNS_22DeferredWatchpointFireE) +STUB("98nRVSHbSg0", _ZN3sce7Toolkit2NP2V29Messaging12Notification16NewInGameMessageD2Ev) +STUB( + "98o1IxQmWlw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEmmEv) +STUB( + "98q3NXdg3gk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEED2Ev) +STUB( + "98qSbG0y2aM", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("98rCRtmk60U", __ubsan_handle_nonnull_arg) +STUB("98sb6MXwouI", JVM_IsSupportedJNIVersion) +STUB("98uC3Rri4Ok", + _ZNK3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectator11getPlatformEv) +STUB( + "98uQnQ9oOzU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEEptEv) +STUB( + "98vIpQcFFBE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEppEv) +STUB("98w+P+GuFMU", _ZNSt9_Num_base12has_infinityE) +STUB("98xcorGsnzA", _ZN7WebCore16deleteAllCookiesERKNS_21NetworkStorageSessionE) +STUB( + "98xs5TtyE8s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("9903eIDpTjw", _ZN3JSC19HeapSnapshotBuilderdlEPv) +STUB( + "990u69sZ3UY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE8pushBackERKS8_) +STUB( + "992WKH2EjGE", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetrics17getPacketLossRateEv) +STUB( + "999ceaMVbOU", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi42ParameterToPutGameSessionsSearchAttributes9terminateEv) STUB("99HNmYMUJZQ", sceCesRefersUcsProfileCp1251) +STUB( + "99Hx+OMBaVs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEEaSERKSA_) +STUB("99IBjvBYx88", + _ZN3sce2Np9CppWebApi7Matches2V120ReportResultsRequestC1EPNS1_6Common10LibContextE) +STUB( + "99L1SWwDr2A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEC1Ev) +STUB( + "99LaqkZTepU", + _ZN3sce2Np9CppWebApi14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyC1EPNS1_6Common10LibContextE) +STUB("99NupPHfSoE", + _ZN3sce2Np9CppWebApi14ConnectAccount2V214PSNError_errorC2EPNS1_6Common10LibContextE) +STUB( + "99XM8kE7PH4", + _ZN3sce2Np9CppWebApi11Matchmaking2V127GetOfferResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_20GetOfferResponseBodyEEE) +STUB("99XpfyBTg9c", blockpool_map) +STUB("99YgkcF5CR0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEEC1EPS6_) +STUB("99a6XsKMLbI", zrule_getName_67) STUB("99b82IKXpH4", sceAppContentAppParamGetInt) STUB("99bMGglFW3I", sceRtcParseRFC3339) +STUB( + "99cjPEk+8hM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB( + "99iCE56-YBk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB("99iifkWp7Ec", __asan_memmove) +STUB( + "99k+ZQri5nk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEED1Ev) +STUB( + "99oHLvIRD58", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEixEm) +STUB( + "99t2EfaXkXY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEixEm) +STUB("99uOYXc5ZhQ", + _ZN3sce7Toolkit2NP2V28Matching7Request11SearchRooms32MAX_NUM_USERS_TO_SEARCH_IN_ROOMSE) +STUB("9A2YUo6bLG8", + _ZThn24_N9Inspector22InspectorDebuggerAgent20setPauseOnExceptionsERN3WTF6StringERKS2_) +STUB("9A5IcwFXw1s", _ZN3sce2np13JsonDocParser8addValueEPKNS0_9JsonValueEPPS2_) +STUB("9ACFYpyoo2E", Java_com_sony_bdjstack_javax_media_controls_VideoSystem_getKeepResolutionMode) +STUB("9ACToo+GjQs", _ZN3sce7Toolkit2NP9Interface13passUserEventERKNS1_5EventE) +STUB("9ADox1mWYRQ", mono_aot_Sce_Vsh_RnpsAppMgrWrapperjit_code_end) +STUB( + "9AGF7CA0kqY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEC1Ev) +STUB("9AGT4R9XxlU", WKDownloadCopyRequest) +STUB("9AOMjk-ovyE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEED1Ev) +STUB("9AOghtzX6t8", _ZN7WebCore12ISOWebVTTCueD1Ev) +STUB("9AP4jjDiIFE", uprv_stableBinarySearch) +STUB("9AQ+tvpiA9g", _ZN7WebCore42contextMenuItemTagCheckSpellingWhileTypingEv) +STUB("9AXx+6CVOxs", _ZN7WebCore28InspectorFrontendClientLocal15changeSheetRectERKNS_9FloatRectE) +STUB("9AbrOy9tA0c", mono_aot_Sce_Vsh_SysUtilWrapperjit_code_end) +STUB("9AcX4Qk47+o", _ZNSt15_Num_float_base11round_styleE) +STUB("9AdVLpFeSYg", ucptrie_toBinary) +STUB( + "9Afx5ygPxbg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEppEi) STUB("9AiIY8rXo9w", sceNpRemotePlaySessionSignalingAbortConnection) +STUB("9AqYFHoF5j0", mono_btls_x509_get_hash) +STUB("9AreLj-7bSM", _ZN3sce7Toolkit2NP2V27NpUtils12Notification15UserStateChange8deepCopyERKS5_) +STUB( + "9AuVWpMjbqc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEdeEv) +STUB("9Av1ZdVrsO8", _ZN12video_parser5vpcom22SetFileAccessFunctionsEPNS0_10_VP_FILEIOE) +STUB( + "9AxUeYQPLVg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "9B01YvPtXYY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("9B64QUYKB3E", mono_image_load_module) +STUB("9B8CaJE+Hak", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE6resizeEj) +STUB( + "9B9cCH1uu9I", + _ZN15AbstractStorage17DailymotionFolder12RemoveFolderERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) +STUB("9BA11xwFLxA", _ZN3sce7Toolkit2NP2V24Core8ResponseINS3_18CustomResponseDataEED2Ev) +STUB( + "9BEoIyhxFr4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE8copyFromERKS9_) +STUB("9BFmRpnnd8k", _ZN7WebCore9HTMLNames8typeAttrE) +STUB( + "9BGtQiod9nI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEE5resetEPS6_) +STUB( + "9BHHeY-GSC4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("9BHilYtCbmo", WKPageSetCaretVisible) +STUB("9BI3oYkCTCU", _ZNSt7codecvtIwc9_MbstatetED0Ev) +STUB( + "9BNK6jGsTQs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB("9BQ3lAY5LZY", _ZN7WebCore16HTMLInputElement15setDefaultValueERKN3WTF6StringE) +STUB( + "9BQwbyUawYM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "9BWGeypaCTA", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody14unsetInteger10Ev) STUB("9BcDykPmo1I", __error) +STUB( + "9BgFIbiysPI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEC1EPNS2_10LibContextE) STUB("9BhoVC0q85k", sceRegMgrBackupNeedMem) +STUB("9BkFxDivHFA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEE7add_refEv) +STUB("9BmAYmQ3-Z0", _ZNK3sce2Np9CppWebApi11Matchmaking2V15Error14getReferenceIdEv) +STUB("9BosXxJq7Zk", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15Error8fromJsonERKNS_4Json5ValueE) +STUB( + "9BsJ0kg0kAg", + _ZN3sce2Np9CppWebApi7Matches2V127RequestPlayerResultsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_20RequestPlayerResultsEEE) +STUB("9Buea6A4nrs", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13FriendsOfUserEE7addressERKS3_) +STUB( + "9BxpckOI7Qw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("9ByRMdo7ywg", _ZTVN10__cxxabiv121__vmi_class_type_infoE) +STUB("9ByZEM2Rtbk", _ZN10Deprecated25ScriptCallArgumentHandlerC2EPN3JSC14JSGlobalObjectE) +STUB( + "9C01T+GGdVo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEplEm) +STUB("9C0BXk+RPFU", _ZN7WebCore11MathMLNames10heightAttrE) +STUB( + "9C1qOA9CZRs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEED2Ev) +STUB( + "9C5C9qrEAWI", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB( + "9CA9gndhqkg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEptEv) +STUB("9CBk-TwpmHI", _ZN7WebCore9HTMLNames8tfootTagE) +STUB("9CD1bazoVZ4", _ZN3JSC8JSObject11hasInstanceEPNS_9ExecStateENS_7JSValueES3_) +STUB( + "9CD82fft1+k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEEC1Ev) STUB("9CHWVv6r3Dg", sceAudioOutSystemControlSet) STUB("9CO85fjUYH8", sceCustomMusicServiceTerminate) +STUB("9CTwmB-qZuI", _ZN3sce7Toolkit2NP2V24Core7Request16ThreadProperties16PRIORITY_DEFAULTE) +STUB("9CUro9a3dSc", + _ZN3JSC13RuntimeMethodC1EPNS_14JSGlobalObjectEPNS_9StructureEPNS_8Bindings6MethodE) +STUB("9CaGnt954vQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEE11get_deleterEv) +STUB("9CdadcNnX+E", _ZN7WebCore11RenderStyleD2Ev) +STUB( + "9Cdj4bKdp8I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEC1ERKS7_) +STUB( + "9ChGaOfn-cg", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126BandwidthDownstreamMetrics8fromJsonERKNS_4Json5ValueE) +STUB( + "9CmTZYhWE78", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEptEv) STUB("9Cmcy0FRlOs", sceCesSbcToUtf16le) +STUB( + "9CpFGG4KJw8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEE11get_deleterEv) +STUB("9CpTEbxV7tE", Java_sun_awt_GnmUtils_bdjbgAllocFromImage) +STUB( + "9CqQo0AZw8A", + _ZN3sce7Toolkit2NP11UserProfile9Interface7getNpIdEPNS1_9Utilities6FutureI7SceNpIdEEPKNS1_18UserProfileRequestEb) +STUB( + "9CuVgEY2g+s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEE5resetEPS9_) +STUB( + "9Cy9G-iw6Sw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEC1EPS8_) +STUB("9D1PY1C0XK4", + _ZN7WebCore11MediaPlayer11mediaEngineENS_16MediaPlayerEnums21MediaEngineIdentifierE) +STUB("9D40kL7Jyes", _ZN7WebCore22ResourceLoadStatistics6decodeERNS_12KeyedDecoderEj) +STUB( + "9D6+LMPAW00", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEC2EPS8_) +STUB("9D6IPRLL8U0", _ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamTournamentC1Ev) +STUB( + "9DAOlu7b+kY", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitations52setpostPlayerSessionsSessionIdInvitationsRequestBodyENS1_6Common12IntrusivePtrINS3_49PostPlayerSessionsSessionIdInvitationsRequestBodyEEE) +STUB("9DAe2g9wzX4", wpe_pasteboard_get_singleton) +STUB("9DDCGs+YGTE", _ZN3JSC13BooleanObject14finishCreationERNS_2VME) +STUB("9DEHEHglTj4", ucurr_getRoundingIncrementForUsage_67) +STUB("9DFfU1kqUS0", mono_metadata_packing_from_typedef) +STUB("9DNtLWtpMC8", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V115FrequentlyMutedC2EPNS1_6Common10LibContextE) +STUB("9DPmPJF3ZRE", _ZN3sce10CanvasUtil11bindTextureEhPv) +STUB( + "9DXwrERAuhk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSC_) +STUB("9Dk49Ct+3y0", _ZNK7WebCore16BlobRegistryImpl18getBlobDataFromURLERKNS_3URLE) +STUB("9Dm5f-FuT8c", _ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequest19unsetNpServiceLabelEv) +STUB( + "9DngAhmRO6k", + _ZN3JSC23JSModuleNamespaceObject25getOwnPropertySlotByIndexEPNS_8JSObjectEPNS_9ExecStateEjRNS_12PropertySlotE) +STUB( + "9Do9Q9Uky3w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "9Dpws1AhtWw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEaSERKS7_) +STUB("9Ds+PUN0dTU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEC2Ev) STUB("9Dxg7XSlr2s", sceNetCtlApRpStartWithRetry) +STUB("9E+hVWQWMe0", _ZN3JSC22FullGCActivityCallback12lastGCLengthEv) +STUB( + "9E1-mZyoZ-I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEaSERS7_) +STUB( + "9E4jau0CJNo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEED2Ev) +STUB("9E8iB0PsZns", _ZN3JSC7Symbols36flatIntoArrayWithCallbackPrivateNameE) +STUB("9EADTID9mso", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_11CountryInfoEE17getAdditionalInfoEv) +STUB("9EDA+P8u8v0", _ZN3NTF18URLResponseMessage14getMessageTypeEv) +STUB("9EFglp2WKow", il2cpp_array_get_byte_length) +STUB( + "9ER2vbGBsn0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "9ETublZfML8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEE7add_refEv) +STUB( + "9EaEOtvBvO0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEE3getEv) +STUB("9EcTld4VfWE", _ZN7WebCore10JSLocationC2ERKS0_) +STUB( + "9EjdtGuEHlA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEEC1ERKSA_) +STUB("9EkkKP1ETPE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEE3getEv) +STUB("9ElZF5fyxDU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEE7add_refEv) +STUB( + "9Eo5OyRe8gM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEaSERS7_) STUB("9EpRYMy7rHU", sceCameraStart) +STUB("9F4eESDZFPs", mono_aot_Sce_Vsh_EventServiceWrapperjit_code_end) +STUB( + "9F4utDRC+Rk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEppEv) +STUB( + "9F5Sj4paZRI", + _ZN9Inspector20CSSBackendDispatcher23getComputedStyleForNodeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "9FCSSpNir4I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE4sizeEv) +STUB("9FF+T5Xks9E", _ZNSt6locale7_Locimp8_ClocptrE) +STUB("9FIdF0nhg00", _ZNK7WebCore9CookieJar14cookiesEnabledERKNS_8DocumentE) +STUB( + "9FLWbhtVEX4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEEcvbEv) +STUB("9FPBL9gvu9s", _ZN3sce7Toolkit2NP2V24Core7Request16ThreadPropertiesC1Ev) +STUB("9FTsJGPDruo", _ZN7WebCore9HTMLNames12noresizeAttrE) +STUB("9FUUJfyNMG4", mono_aot_Sce_Vsh_WebBrowserjit_code_start) +STUB( + "9FVPcjjqXtU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("9FX-K7sP3f8", mono_aot_Sce_Vsh_Np_Trophyplt) +STUB( + "9FX3a1SmCW8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEE7add_refEv) +STUB("9FZDGHSsINU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEEeqERKS7_) +STUB("9FdGIgYrVF4", _ZN3WTF14FileSystemImpl25createTemporaryZipArchiveERKNS_6StringE) +STUB("9Ff7AijH93g", uloc_getDisplayKeyword) +STUB("9FiILh-Kytg", __asan_set_shadow_f8) +STUB( + "9FjPayZuUn4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEC2EPKS8_) +STUB( + "9FnZNiUeYEE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEC1Ev) STUB("9FowWFMEIM8", sceRazorCpuJobManagerSequence) +STUB("9FxyMDQtqy0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEEC2ERS9_) +STUB("9G-fqSz4G8U", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable10ownerIsSetEv) +STUB("9G2LYp3FlE4", glBindSampler) +STUB("9G32u5RRYxE", _ZNSt3pmr19new_delete_resourceEv) +STUB( + "9G7fpmodu1Q", + _ZN3sce7Toolkit2NP2V28Commerce22getServiceEntitlementsERKNS3_7Request22GetServiceEntitlementsEPNS2_4Core8ResponseINS3_19ServiceEntitlementsEEE) +STUB("9GCLZSDrkEA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEptEv) +STUB( + "9GCZgTGSmLk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE8pushBackERKS8_) +STUB( + "9GE7e+WK1bc", + _ZN3sce2Np9CppWebApi11UserProfile2V112ErrorFactory6createEPNS1_6Common10LibContextElPKcS9_PNS5_12IntrusivePtrINS3_5ErrorEEE) +STUB( + "9GF0V3-pKSg", + _ZN7WebCore21ContentSecurityPolicy17didReceiveHeadersERKNS_36ContentSecurityPolicyResponseHeadersEON3WTF6StringENS0_19ReportParsingErrorsE) +STUB( + "9GFSPz8-F4E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE8copyFromERKS9_) +STUB( + "9GHnQoyYhys", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE4sizeEv) STUB("9GIB91cj1wc", sceImeBackendParamInit) +STUB("9GMinneGvk0", _ZN3sce7Toolkit2NP2V27Session7Request7GetDataC1Ev) +STUB("9GNi+zOp9Qs", _ZN7WebCore17FullscreenManager14exitFullscreenEv) +STUB("9GV+bfjgtYw", _ZN9Inspector15RemoteInspectorC2Ev) +STUB("9GWDkED8mtE", _ZN7WebCore9HTMLNames17aria_posinsetAttrE) +STUB( + "9GZmhSiFKr8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEEC1ERSA_) +STUB("9GasEzC4uFE", _ZN7WebCore12NamedNodeMap3refEv) +STUB( + "9GgBeXK-r-0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEneERKS9_) +STUB( + "9Gi-s0qU-fU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEED2Ev) +STUB( + "9Gjt1wWkJa0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE21intrusive_ptr_sub_refEPS9_) +STUB("9GmSeBUGFIU", fuse_loop) STUB("9Gq5rOkWzNU", sceAppContentSmallSharedDataFormat) +STUB( + "9GqPa4xowO4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEEC2ERKSC_) +STUB("9Gsw6lvdddE", PSNowInitialize) +STUB("9GyicjhjtZM", _ZN4Manx11StoragePath12iconDatabaseEv) +STUB("9H02q68agW0", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEE5resetEPS5_) +STUB("9H2BStEAAMg", _ZTVSt7codecvtIDic9_MbstatetE) +STUB("9H4HuUFiNtw", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats20getConnectionQualityEv) +STUB( + "9H6AmHcPVHQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE21intrusive_ptr_sub_refEPS7_) +STUB( + "9H7JafMe5QM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEE5resetEPS9_) +STUB( + "9H8NK-uEacw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE4sizeEv) STUB("9H8w8cym7eg", sceDataTransferRequestPrepareFgTransfer) +STUB( + "9HFOGiqMbIM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE5beginEv) +STUB("9HFZvESTOhk", _ZN7WebCore14ResourceHandle16setDefersLoadingEb) +STUB("9HFuhpMU7dQ", _ZN3sce2Np9CppWebApi11Matchmaking2V18LocationC1EPNS1_6Common10LibContextE) +STUB("9HGfqQKOYPk", _ZN3sce2Np9CppWebApi11Matchmaking2V19Submitter12setAccountIdERKm) +STUB("9HH2CPkWIv8", _ZN3sce7Toolkit2NP2V210Tournament15TeamVsTeamMatchC1Ev) +STUB("9HILqEoh24E", _ZNSs5_CopyEmm) +STUB("9HIQZCEH3w4", _ZN3JSC7Symbols37regExpProtoMultilineGetterPrivateNameE) +STUB("9HKYvd0Fc8Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEC2ERS7_) +STUB( + "9HNIMS0D+60", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE10setContextEPNS2_10LibContextE) +STUB( + "9HPoDKLJ5d0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("9HRXl53a0Cc", _ZNK3sce2Np9CppWebApi6Common8IteratorIlEneERKS4_) +STUB("9HSHM5kvg64", _ZN7WebCore13IdentifierRep7isValidEPS0_) +STUB("9HTemx1zRCw", _ZN3sce2np9JsonArrayD1Ev) +STUB( + "9HV4XyEW3Vo", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyC1EPNS1_6Common10LibContextE) +STUB( + "9HYAVefIxVQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEED2Ev) +STUB("9HfqqJubj1Y", mono_aot_Sce_Vsh_Registryunbox_trampolines_end) +STUB( + "9Hit0Qh9dcI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "9Hk3Tl54QWI", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEEC2Ev) +STUB("9HopjVNdAHw", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching6WorldsEE19setCustomReturnCodeEi) STUB("9Hr89GfRrfA", sceFsMountLwfsCompat) +STUB("9HtGt7M9cMs", WKPageHandleWheelEvent) +STUB( + "9HvngOdGm08", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "9HxpiwWf5Hw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEEC1ERKSA_) +STUB("9HzWfg82K2w", WKOpenPanelParametersCopyCapture) STUB("9HzfhdtESio", pthread_getname_np) +STUB("9I+F9cgffOM", ucptrie_getValueWidth_67) +STUB("9I3Z6Okr+Mc", ucnv_openCCSID) STUB("9I4TdP3A9-g", sceVisionManagerInitialize) +STUB( + "9IG9qsaJ1QE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEppEv) +STUB( + "9IHyCYvSPKs", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeader35getxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB( + "9IIm4QNzFCM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEE7get_refEv) +STUB( + "9IKooW79-AM", + _ZN3sce7Toolkit2NP2V23TUS12setVariablesERKNS3_7Request12SetVariablesEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB( + "9IKt7cbdCk8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("9IMLp-vhtUc", rgctx_fetch_trampoline_rgctx_14_p) +STUB( + "9INUzJ1aqcA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("9IS4qPHwhV0", _ZN3sce7Toolkit2NP2V27Ranking7Request15GetRangeOfRanksD2Ev) +STUB( + "9IXbH6lGPxI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEE3getEv) +STUB("9Iem9Wk07xU", __sys_rdup) +STUB( + "9Igkr36DaKk", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyD1Ev) +STUB( + "9Ii6qzBv9qA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE4initEv) +STUB( + "9IuU96Uztlw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEppEi) +STUB( + "9IygJEdu7Lg", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V333CommunicationRestrictionStatusApi44ParameterToGetCommunicationRestrictionStatus10initializeEPNS1_6Common10LibContextEm) +STUB( + "9Ize+VvpjTI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEneERKS9_) +STUB("9J118CUNfBw", g_timer_stop) +STUB("9J4zJhbeEQs", __tsan_get_report_data) +STUB("9J6V61ncugs", il2cpp_format_stack_trace) +STUB("9J784JLSmEc", _ZNK3sce2Np9CppWebApi13InGameCatalog2V55Error6toJsonERNS_4Json5ValueEb) +STUB("9J8+IeONNco", _ZNK7WebCore9FrameTree3topEv) +STUB( + "9J8+PcvyTrc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE5emptyEv) +STUB( + "9JDiLNYiBgQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEE11release_refEv) +STUB("9JF4UfDyx5Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEptEv) +STUB( + "9JGlAZZy+Mo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEC2Ev) +STUB( + "9JHn0FeN92Y", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEptEv) +STUB("9JIn-Zly3Lw", _ZN3JSC8Debugger11returnEventEPNS_9CallFrameE) +STUB( + "9JRRXbqLYOU", + _ZN3sce2Np9CppWebApi7Matches2V127ResponseTeamMemberStatistic8setStatsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_19AdditionalStatisticEEEEE) +STUB( + "9JUEPXjNF3I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEED2Ev) +STUB("9JUeacTrqns", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEEC2ERS9_) +STUB("9JXz4Na5cDg", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_18SessionInformationEEC1Ev) STUB("9JYNqN6jAKI", sceKernelDebugOutText) +STUB( + "9Jfj79GG9ew", + _ZN3JSC4callEPNS_9ExecStateENS_7JSValueENS_8CallTypeERKNS_8CallDataES2_RKNS_7ArgListERN3WTF8NakedPtrINS_9ExceptionEEE) +STUB( + "9Jkg4W-0nrY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE5beginEv) +STUB("9JmzXIwUrS0", + Java_sun_awt_image_GnmImageDecoder_readImage__ILjava_io_InputStream_2ILjava_awt_Image_2) +STUB("9JpQlCkEpMA", _ZN7WebCore25DropShadowFilterOperationD0Ev) +STUB("9JsJTYD6boI", SwCtrlManagerCheckActivate) +STUB("9JtmOPS-INA", _ZN7WebCore11MathMLNames7noneTagE) +STUB( + "9Jx8dA+ldQU", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEEiRNS2_10LibContextEPT_m) +STUB( + "9Jz5s+uWvpQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEE3getEv) +STUB("9K03gpAhS6c", rgctx_fetch_trampoline_rgctx_28_p) +STUB( + "9K6xG3A1ICM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEaSERKS7_) +STUB( + "9KEAna5JSts", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEmmEv) +STUB("9KIfkC+iXrY", _ZNSt15basic_streambufIwSt11char_traitsIwEED1Ev) +STUB("9KLjPjbLuLY", _ZNK7WebCore26HTMLTextFormControlElement18selectionDirectionEv) +STUB("9KOHB4tX7H8", _ZN7WebCore9DOMWindow4openERS0_S1_RKN3WTF6StringERKNS2_12AtomicStringES5_) +STUB( + "9KRnS-7HUZs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEEcvbEv) STUB("9KSGFMRnp3k", sceNpWebApi2IntInitialize2) +STUB("9KUZFjI1IxA", _ZN3sce4Json6StringC1EPKc) +STUB( + "9KX8MktrvHA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData17setnpServiceLabelEj) STUB("9KXSwPg4PlM", sceAppInstUtilAppGetAppInstallStatus) +STUB( + "9KaibvqTzlM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEmmEv) +STUB( + "9KbGVjOPvZA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEEC1Ev) +STUB("9KdswXJB298", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEEcvbEv) +STUB( + "9KePtqOYFUY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEC2EPNS2_10LibContextE) +STUB("9Kfep5v1bZ0", _ZNK3sce2np10JsonNumber3GetEPm) +STUB("9KibQmcN8IA", WKSecurityOriginCopyToString) +STUB( + "9KlAN8VXt78", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEEC2Ev) +STUB( + "9Km5hNg0azA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE5beginEv) +STUB("9KnzDUK-Yyg", _ZN3sce7Toolkit2NP2V27Ranking7Request15GetRangeOfRanksC2Ev) +STUB("9Kpk4m9pJ+A", _ZN3sce7Toolkit2NP2V28Commerce7Request21DisplayJoinPlusDialogC2Ev) +STUB( + "9KpvLOwPxsw", + _ZN7WebCore17PageConsoleClient23messageWithTypeAndLevelEN3JSC11MessageTypeENS1_12MessageLevelEPNS1_14JSGlobalObjectEON3WTF3RefIN9Inspector15ScriptArgumentsENS6_13DumbPtrTraitsIS9_EEEE) +STUB("9Ks+gN027W0", _ZN7WebCore16BlobRegistryImpl8blobSizeERKN3WTF3URLE) +STUB( + "9Kw-FNjn9nU", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEiRNS2_10LibContextEPT_m) +STUB("9KzYwvEszt8", _ZN7WebCore12ChromeClientC2Ev) +STUB( + "9KzoqPB0LWU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEEC1Ev) +STUB( + "9L+-vaQbDEI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE5beginEv) +STUB( + "9L-NdBDyygs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEED1Ev) +STUB( + "9L0wOqsn4v8", + _ZN3JSC14JSGlobalObject3putEPNS_6JSCellEPNS_9ExecStateENS_12PropertyNameENS_7JSValueERNS_15PutPropertySlotE) +STUB( + "9L1AihLIqLI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEppEi) +STUB( + "9L5G6y75Uwc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEC2EPS8_) +STUB("9L5spctC4FQ", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error11unsetStatusEv) +STUB("9L913mV71Wc", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V19RatingApi21ParameterToPostRatingC2ERS5_) +STUB( + "9L9ATLzIf7Y", + _ZN7WebCore17PageConsoleClient9recordEndEPN3JSC9ExecStateEON3WTF3RefIN9Inspector15ScriptArgumentsENS4_13DumbPtrTraitsIS7_EEEE) STUB("9LBcV3rS10Q", sceKernelSetCoredumpAppInfo) +STUB("9LCjpWyQ5Zc", pow) +STUB("9LCsiEehCT4", throwFileNotFoundException) +STUB( + "9LG74KA+OYc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEE11get_deleterEv) +STUB( + "9LHFzlAqh+M", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEeqERKS9_) +STUB( + "9LIn0hm4s4Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEE11get_deleterEv) +STUB( + "9LLr+cX+kmk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEED1Ev) +STUB("9LOj0XIPK2A", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicketC1Ev) +STUB("9LQXouHddeo", Java_com_sony_bdjstack_org_bluray_vfs_VFSManagerImpl_proxyGetState) +STUB("9LaGPRKyx2o", Java_java_net_PlainDatagramSocketImpl_send) +STUB("9LcAvVHbGqg", _ZN9Inspector24WorkerFrontendDispatcherC1ERNS_14FrontendRouterE) +STUB( + "9Lcd2v0uKP4", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessionsC1ERS5_) +STUB("9Lm2mfsSmws", FT_Face_GetVariantSelectors) +STUB( + "9LmCRDbA-Oo", + _ZN7Nicosia9AnimationC2ERKN3WTF6StringERKN7WebCore17KeyframeValueListERKNS5_9FloatSizeERKNS5_9AnimationEbNS1_13MonotonicTimeENS1_7SecondsENS0_14AnimationStateE) +STUB( + "9LnhTZ5iwX0", + _ZN3sce2Np9CppWebApi14ConnectAccount2V28PSNError8setErrorERKNS1_6Common12IntrusivePtrINS3_14PSNError_errorEEE) +STUB("9LxqL+tTZyg", mono_btls_ssl_get_version) +STUB("9LzZhiXxOL8", WKContextSetPrewarmsProcessesAutomatically) +STUB("9LzxE7TaNKk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE5clearEv) +STUB("9M-Fw+5nW6U", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_17ActivityFeedStoryEE7destroyEPS3_) +STUB( + "9M-xuCFofsg", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("9M46YTkP3Hs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEC1Ev) STUB("9M7HkbwUs-E", sceCompositorCheckCrash) +STUB("9M7sUZQldSU", _ZNK3sce2Np9CppWebApi6Common6VectorIfE3endEv) +STUB("9MBu5R5rnV0", _ZN7WebCore9HTMLNames23onwebkitsourceendedAttrE) STUB("9MJD0zGyRgA", sceFsInitMountGamePkgOpt) +STUB( + "9MKpcE42j7g", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEeqERKS9_) +STUB("9MRKKXsMKOc", + _ZN3sce2Np9CppWebApi14SessionManager2V117FromMemberFactory7destroyEPNS3_10FromMemberE) +STUB("9MROWxV0URM", + _ZN3sce7Toolkit2NP2V28Commerce23ServiceEntitlementLabel33SERVICE_ENTITLEMENT_LABEL_MAX_LENE) +STUB("9Mav6itWd5Y", __asan_loadN_noabort) +STUB( + "9MgUT6XTylU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEdeEv) STUB("9Mv61HaMhfA", sceGnmRegisterGdsResource) +STUB("9N-1yVdTxlE", mono_thread_set_manage_callback) +STUB( + "9N3w6CJwbzk", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification18NewGameDataMessageEE12deepCopyFromERS8_) +STUB("9N9bmUv2yeY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V117InvitableUserTypeEEmmEi) +STUB("9NA-AqIW8lA", _ZSt9use_facetISt8numpunctIcEERKT_RKSt6locale) +STUB("9NCfuHNNcEQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEC1EPS6_) +STUB("9NExYJCCEZM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEptEv) +STUB( + "9NJ0ndWwR3U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEEdeEv) +STUB("9NSOljbtlxA", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V15GroupEEC2EPS6_) +STUB( + "9NTnov9LzBM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUserC2ERS5_) +STUB( + "9NUi+GnCldE", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129MatchCompletionRateProperties12setCompletedERKNS1_6Common12IntrusivePtrINS3_35MatchCompletionRateCompletedMetricsEEE) +STUB("9NaotfNJ0+0", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V110MmrFactory7destroyEPNS3_3MmrE) +STUB("9NbKoZNi0Jo", _ZN3WTF17GregorianDateTimeC1EdNS_15LocalTimeOffsetE) +STUB("9NdR8grnNI8", CloseZStream) +STUB( + "9NgN02RcDxY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEaSERS7_) +STUB("9NhzA0Ll22A", _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeIPcPvEE7addressERS6_) +STUB("9Nlag1nP2do", YGConfigSetUseWebDefaults) +STUB( + "9NoeyrSr1+Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE5clearEv) +STUB("9NrxNGZX24U", _ZN3JSC14iteratorMethodEPNS_14JSGlobalObjectEPNS_8JSObjectE) +STUB( + "9NstcErTXqY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE5beginEv) +STUB( + "9Nur74Ho6Sw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEC2EPS8_) +STUB( + "9NwAmiWPtow", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC2ERSA_) +STUB("9NwVTF2r-To", _ZN3sce7Toolkit2NP2V27Session7Request4JoinC1Ev) +STUB( + "9Nxdcpow-wI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE7popBackEv) +STUB( + "9O+f-jplL6E", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEneERKS9_) +STUB("9O1Xdko-wSo", exp2l) +STUB( + "9O2BrHdfaLo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "9O31pzg-OrQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEC2EPNS2_10LibContextE) +STUB( + "9O7RT-twyXA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEaSERKS9_) +STUB( + "9OD8QtQGOKg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEmmEi) +STUB( + "9OEaW3BN+Pg", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUserC2Ev) +STUB( + "9OGcMk7my4Y", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V120ErrorResponseFactory7destroyEPNS3_13ErrorResponseE) +STUB("9OJBjMn7SAI", _ZN7WebCore16JSXMLHttpRequest11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB( + "9OLoM5YQxfY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE21intrusive_ptr_sub_refEPSA_) +STUB("9OV-NYh2TAs", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V223FilterProfanityResponse10getMessageEv) +STUB( + "9OXzqmMrdq4", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectator10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_52PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEE) +STUB( + "9ObVaYNTRvE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEE11release_refEv) +STUB( + "9OfXSRiu58E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEC2EPS6_PNS2_10LibContextE) STUB("9Oj3MIJ+Zjk", scePlayerSelectionDialogOpen) +STUB( + "9OnEOj4zQTI", + _ZNK3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody18maxSpectatorsIsSetEv) +STUB( + "9OoGDca4WW8", + _ZN3sce2Np9CppWebApi14SessionManager2V131ResponseGameSessionMemberPlayerC2EPNS1_6Common10LibContextE) +STUB( + "9OqVcuPYkRc", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_34DetailedProductInfoListInputParams9ProductIdEE10deallocateEPS4_m) +STUB( + "9OumR-T2J6E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEdeEv) +STUB( + "9Owj+z9YQEc", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB( + "9P+MNOYBjFY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEC2EPS9_) +STUB("9P141FOejPM", _ZN7WebCore8SVGNames16font_face_srcTagE) +STUB("9P1D1NwRok0", _ZNK7WebCore11HTMLElement10spellcheckEv) +STUB("9P2-lff1PBw", Java_com_sony_bdjstack_security_aacs_AACSOnline_isCacheable) +STUB("9P5nNrVmPtg", Java_com_sony_bdjstack_ti_Database_getStreams) +STUB( + "9P6j51wHaGQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE21intrusive_ptr_add_refEPS9_) STUB("9P8qV9WtgKA", sceNpManagerPrxStopVsh) STUB("9PCBPZcDU7Q", sceApplicationInitializeForShellCore) +STUB("9PJfPHVOrVs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEED1Ev) +STUB( + "9PJlMISE1kc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE8pushBackERKS8_) +STUB("9PNaecmeTbA", WKDataGetTypeID) +STUB("9PNhbIplSpU", X509_get_issuer_name) +STUB("9POEXdfKlMY", _ZNK7WebCore11MediaPlayer7visibleEv) +STUB("9POsLAUO1IA", unum_formatUFormattable_67) +STUB("9PTAJclcW50", SSL_recv) +STUB("9PTSYUj3K+0", mono_aot_Sce_Vsh_ShellCoreUtilWrapperunwind_info) +STUB("9PYoyhBTI3s", Java_java_net_PlainSocketImpl_socketClose0) +STUB("9PqrCLfKZZI", _ZN3sce4Json5Value4swapERS1_) +STUB( + "9PulNOzoybc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEixEm) +STUB("9PxZzPbFSAo", ShareTerminate) +STUB( + "9Q0-ws5KyZA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEppEi) +STUB("9Q6mXLvfp+U", monoeg_g_string_append) +STUB( + "9Q8+OX+sjzY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB("9QBr0EuWoHA", _ZN7WebCore11DisplayList15FillRoundedRectD0Ev) +STUB( + "9QChup-AGvc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEED1Ev) +STUB("9QLkVzWD0Z8", _ZN7WebCore27PlatformMediaSessionManager21sharedManagerIfExistsEv) +STUB("9QN7g5mQgCU", _ZN3sce2np13NpTitleSecretC2ERK16SceNpTitleSecret) STUB("9QNb5TtkWhQ", sceAppInstUtilGetExternalPs5AllSize) +STUB("9QS8NAgqsH4", udtitvfmt_openResult_67) +STUB("9QSdWfiLaBo", ucol_getLocale_67) +STUB( + "9QXUdY0uii4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("9QZluZ4dNDY", _ZNK7WebCore4Page15visibilityStateEv) +STUB("9QaGCOo87eE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEED1Ev) +STUB("9Qb5wZZgZGY", mono_aot_Sce_PlayStation_Orbismethod_addresses) +STUB("9Qbi8rLzfpI", pss_io_icall_install_functions) +STUB( + "9QlEEWtdJBQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEEC2EPS6_PNS2_10LibContextE) +STUB( + "9QlrYML579E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEmmEv) +STUB( + "9QoXEHQrGDQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEE7get_refEv) +STUB("9QqW0QKTIAY", _ZN3sce2Np9CppWebApi13InGameCatalog2V53SkuD1Ev) +STUB("9R3WZBaXGIE", _ZN3sce2Np9CppWebApi7Matches2V116RequestMatchTeamC2EPNS1_6Common10LibContextE) +STUB("9R3pLiWvp9A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEED1Ev) +STUB("9RBhNGw7Pgs", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session7SessionEE3setEv) +STUB( + "9RDehA1DQX4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEC2EPNS2_10LibContextE) +STUB( + "9RE2Pm0hcXw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEE11release_refEv) +STUB( + "9RIh4KJZNKY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEneERKS9_) +STUB("9RKIMuF-lLs", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V19JoinStateEEC2EPS6_) +STUB("9RMSBpPZVdk", RSA_get0_key) STUB("9RVIoocOVAo", sceAudioOutA3dExit) +STUB("9RY5wR3m+BA", _ZN7WebCore15HTMLBaseElement7setHrefERKN3WTF10AtomStringE) +STUB("9RYsSzqyNrM", _ZN9Inspector30TargetBackendDispatcherHandlerC2ERKS0_) +STUB( + "9RdPWOvNdEI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEC1EPKS8_) +STUB("9RgD4AUEARg", _ZN7WebCore8SVGNames8fillAttrE) +STUB( + "9Rk7MqKLk8I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE3endEv) +STUB("9Rm+AqJdpLQ", _ZN12video_parser13cVideoPathMnvC1EPKc) STUB("9RnL-m0+diQ", scePthreadAttrGetsolosched) +STUB( + "9Rq7mQXOSL4", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData21hasxPsnNpServiceLabelEv) +STUB("9RruACE8cEU", _wapi_fileshare_layout) +STUB( + "9RsAON+VdXs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "9Rt5nCke1fI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEE21intrusive_ptr_sub_refEPS7_) +STUB( + "9RuPHUsa428", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEC2EPNS2_10LibContextE) +STUB("9Rvb-lG-IYI", WKMessageListenerSendReply) +STUB("9Rx0ZwXL4Qc", _ZN7WebCore6Editor23setBaseWritingDirectionE16WritingDirection) +STUB( + "9Rzbr5Hj8RE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEE7add_refEv) +STUB( + "9S1mAEvPjkI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE21intrusive_ptr_sub_refEPS9_) STUB("9S4noWrUI0s", sceAgcDcbSetBaseDispatchIndirectArgsGetSize) +STUB( + "9S7uqgMoypE", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V126BandwidthDownstreamMetrics20getStandardDeviationEv) +STUB("9S960jA8tB0", _ZNSt10moneypunctIcLb1EEC1EPKcm) +STUB("9SFNBXWtYig", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10getString6Ev) +STUB( + "9SP-HoLD9JQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEptEv) +STUB("9SQVys0xk5U", _ZThn32_N7WebCore14DocumentLoaderD1Ev) +STUB("9SRRU8yTt04", sqlite3_user_data) +STUB("9SSHrlIamto", + _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewx) +STUB( + "9STxWNpdNdM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) STUB("9ScDVErRRgw", sceSystemServiceNavigateToAnotherApp) STUB("9Sh0Kk7Xf4w", sceUltReaderWriterLockTryLockWrite) +STUB( + "9SkRa3ZrU90", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEaSERS7_) +STUB("9SpzEgRegWI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEED1Ev) +STUB( + "9Sq8+ojbxBw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("9Swkf6RqtPM", _ZN7WebCore9HTMLNames17onselectstartAttrE) +STUB("9T+7hxWg0t4", _ZN12video_parser13cVideoPathMgv17GetNewMaclistNameEPc) STUB("9T2pDF2Ryqg", sceNetHtonl) +STUB( + "9T7ehUNmgSA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("9TB8RLYXg+g", eglDestroySurface) +STUB( + "9TE9P7XNesU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEE11release_refEv) +STUB( + "9TK1rI7ZAPE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEEaSERKSA_) +STUB("9TLZ1lFdCBI", mono_aot_SMDiagnosticsmethod_addresses) +STUB("9TVOJxDJIZM", _ZN7WebCore10Pasteboard4readERNS_20PasteboardFileReaderE) +STUB("9TZ1Khuxk60", + _ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRanking13isInitializedEv) +STUB("9TZSKC6khSI", mono_aot_System_Reactive_Linqmethod_addresses) +STUB("9TZg6EG5ncM", glReleaseShaderCompiler) +STUB("9Tb09M8E6yE", _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRankingD2Ev) +STUB( + "9TbQLIcT+00", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEC2EPS8_) +STUB("9TcvPh7XBa8", _ZN8meta_gen13JpegRetriever23IsExistDateTimeOriginalEv) +STUB( + "9TfGnN6xq-U", + _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8get_timeES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm) +STUB("9Thds+U5BYc", _ZN3sce7Toolkit2NP2V23TUS19FriendsDataStatusesC1Ev) +STUB("9Ti1y0pMb4k", rgctx_fetch_trampoline_rgctx_12_p) +STUB("9TkMHRkkdmQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE8pushBackERKS6_) +STUB("9TndABWg5Ds", res_getAlias) STUB("9TrhuGzberQ", sceVoiceInit) +STUB("9Tsav0JhJko", _ZN3JSC23JSScriptFetchParameters6s_infoE) +STUB("9Ttseh+SADs", _ZN3JSC7Symbols21enqueueJobPrivateNameE) +STUB( + "9Tu9akEinpQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "9TuLca+PUl4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEEC2ERKSA_) +STUB( + "9Tx--A3tLYo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEC2EPNS2_10LibContextE) +STUB( + "9TyZXKMTyNM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEC2EPNS2_10LibContextE) +STUB( + "9TzF1ucznr4", + _ZN3sce7Toolkit2NP2V212NetworkUtils16getBandwidthInfoERKNS3_7Request16GetBandwidthInfoEPNS2_4Core8ResponseINS3_12BandwithInfoEEE) +STUB( + "9TzzoEW7f4A", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("9U0wW6vYnKI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEE7add_refEv) +STUB("9U1DoHp0Kcs", _ZN3WTF10StackTrace8demangleEPv) +STUB("9U6BUwk6388", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament6EventsEE3getEv) +STUB("9U7Jh-C5384", _ZN3JSC15TypeProfilerLog17processLogEntriesERNS_2VMERKN3WTF6StringE) +STUB("9U92i3XaiOI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V113ErrorResponse8fromJsonERKNS_4Json5ValueE) STUB("9U9m1YH0ScQ", sceRudpProcessEvents) +STUB( + "9UDKIFifeJY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEC1EPS6_PNS2_10LibContextE) +STUB("9UDTFDWegew", delegate_virtual_invoke_imt_6_p) +STUB( + "9UEO2lJRWO4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEC1Ev) +STUB("9UGa6YysTHk", _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error9unsetPathEv) +STUB("9UH610uc47Y", _ZN3sce7Toolkit2NP2V212EventsClient9EventDataC2Ev) STUB("9UK1vLZQft4", scePthreadMutexLock) +STUB("9UL6B+jDehY", + _ZN9Inspector22InspectorDebuggerAgent28setPauseOnDebuggerStatementsERN3WTF6StringEb) +STUB( + "9UPI2xL72uo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEEC2Ev) +STUB( + "9UQogcrgR58", + _ZN3sce2Np9CppWebApi7Matches2V120ResponseMatchResults20setCooperativeResultERKNS3_25ResponseCooperativeResultE) STUB("9UVGP8KVB2U", sceHandDetectionGetWorkingMemorySize) +STUB( + "9UVcMxtg64E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEEC1ERKSA_) +STUB( + "9UXJdKNAmrY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEEdeEv) +STUB("9UXmjmN-xPE", il2cpp_set_memory_callbacks) +STUB("9Uew6b9Pp8U", _ZN3sce2np12NpHttpClientD2Ev) +STUB( + "9UhesxWkvag", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("9Umxsn0UtfI", mono_method_desc_full_match) +STUB( + "9Up57J-EhtA", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer39hasxPSNSESSIONMANAGERREQUESTEXACTORIGINEv) +STUB( + "9UvlKTIfT9Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEC1EPS8_) +STUB( + "9UyebErhLVg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("9V0j0gYaQBM", _ZNK7WebCore14CredentialBase8passwordEv) +STUB("9VDL1bE1nFM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEED1Ev) STUB("9VDzY7m1NN8", sceShellCoreUtilCheckerAbort) STUB("9VJUCJrxBJQ", sceKernelPrepareDirectMemorySwap) +STUB( + "9VRF2bL1GAs", + _ZN3sce2Np9CppWebApi11Matchmaking2V115LocationFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_8LocationEEE) +STUB("9VUHbsxs8e4", _ZN3sce7Toolkit2NP2V27Session10Invitation12MAX_LEN_DATEE) +STUB("9VVkuLiaGYM", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEEC2Ev) +STUB("9VcMaebz00w", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26RecordScoreResponseHeadersaSERS5_) +STUB("9VeY8wiqf8M", atan2l) +STUB("9VewapwEFzE", _ZN13MsvMetaEditor19getMetaDataUnitInfoEjttPNS_11MtdtBoxInfo12DataUnitInfoEPb) STUB("9Vf5HAjr5Ek", sceCustomMusicCoreStopOperation) +STUB("9VgqXw48Zfk", Java_java_io_RandomAccessFile_writeBytes) +STUB("9VhFNFfyadA", _ZN3JSC7JSArray38isIteratorProtocolFastAndNonObservableEv) +STUB( + "9ViuL8f-bGU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE4sizeEv) +STUB("9VjSpYjnLBo", _ZNK3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead13platformIsSetEv) +STUB( + "9Vq2Qf8c--I", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayerD2Ev) +STUB("9Vqxt-qBPB4", sysinfo) +STUB("9VuLTCewmdM", uprv_decNumberMin_67) +STUB("9Vv+atzgA4M", _ZNK3sce2Np9CppWebApi13InGameCatalog2V55Error11sourceIsSetEv) +STUB("9Vw1T+nh1ug", _ZN7WebCore24CoordinatedGraphicsLayer20setContentsTilePhaseERKNS_9FloatSizeE) +STUB("9VwvENO63lo", _ZN8meta_gen14ImageRetriever10SetMetaValEif) +STUB("9Vyfb-I-9xw", _ZNKSt7codecvtIDsc9_MbstatetE16do_always_noconvEv) +STUB("9W+Os0b9DUg", mono_aot_Sce_PlayStation_Orbis_Speechunbox_trampoline_addresses) +STUB( + "9W+WA56Jtyw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEC2Ev) STUB("9W19mAu8Bzc", sceMatFree) +STUB("9W4+-PzFayU", uloc_toLegacyKey_67) STUB("9W40oT315tY", sceUserServiceGetVoiceAgentEnableWup) +STUB("9W6sEqfgXDY", JSScriptCreateReferencingImmortalASCIIText) +STUB( + "9W97-umznwA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("9WBY+bRpi74", YGNodeStyleSetAlignSelf) +STUB("9WFqVqWuSz4", fuse_loop_mt_proc) +STUB( + "9WGb5jgj-iY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE8copyFromERKS9_) +STUB( + "9WIXHFKg9-s", + _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse12setMatchTypeERKNS3_17ResponseMatchTypeE) STUB("9WK-vhNXimw", sceKernelAioSetParam) STUB("9WRHk1wQT08", sceSystemStateMgrRequestToKeepMainOnStandby) +STUB( + "9WSKZEhdVGE", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("9WSnQEt0mxM", _ZN3JSC22optimizeNextInvocationEPNS_14JSGlobalObjectEPNS_9CallFrameE) +STUB( + "9WSx20Q0sgE", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities9terminateEv) +STUB("9WeYC6-6tNE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEC2ERKS7_) +STUB("9Wf+LYudLno", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE5emptyEv) +STUB( + "9WlCI-P6Q6A", + _ZN7WebCore35positionOfNextBoundaryOfGranularityERKNS_15VisiblePositionENS_15TextGranularityENS_18SelectionDirectionE) +STUB("9Wp8GyqojTQ", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEEcvbEv) +STUB("9WpLq56+Y1M", _ZN3sce2Np9CppWebApi6Common8IteratorIdEC1Ev) +STUB("9WrqbnwH-M0", JVM_ConstantPoolGetClassAtIfLoaded) +STUB("9WsrPeppdMo", _ZN3sce7Toolkit2NP2V23TUS16FriendsVariablesD1Ev) +STUB( + "9WumJFHmlqc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEEC1ERSA_) +STUB("9WxYiFfOx1s", _ZN7WebCore9FrameView15setHeaderHeightEi) +STUB("9WzEBmwPCKg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence8PresenceEE5resetEv) +STUB( + "9X+7wnzshPc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEneERKS9_) +STUB("9X2d2k8hoCI", Java_com_sony_bdjstack_org_bluray_vfs_VFSManagerImpl_proxyGetDisabledClipIDs) STUB("9X4SkENMS0M", sceGnmSqttGetStatus) +STUB("9X5yIYFahok", _ZN8meta_gen11MsvPromoter23retrieveSpecialDateInfoEv) +STUB( + "9X6gXVloEkU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEED1Ev) STUB("9X9+cneTGUU", sceNpWebApi2DeleteUserContext) +STUB("9X9k1rTErfI", _ZNK3sce2Np9CppWebApi13InGameCatalog2V513ContentRating9getSystemEv) STUB("9XAxK2PMwk8", sceErrorDialogTerminate) +STUB("9XKjme5gWpo", _ZTVN7WebCore12BlobRegistryE) +STUB("9XL3Tlgx6lc", _ZTSSt7codecvtIDsc9_MbstatetE) +STUB( + "9XNlDm9WcOI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEmmEi) +STUB("9XRswf+XVIk", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V115LastUpdatedUser12getAccountIdEv) +STUB("9XT0E2eroig", uhash_hashLong) STUB("9XYJwCf3lEA", sceHttp2GetStatusCode) +STUB( + "9XZuNe29744", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEE5resetEPS6_) +STUB( + "9XdXcj8wPiA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEneERKS9_) +STUB("9XjupHhe3IA", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE6resizeEj) +STUB("9XouNrl+xF0", WKViewAccessibilityHitTest) +STUB( + "9Xr+cbOTJdE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEC2EPKS8_) +STUB("9Xr7y2JSEtc", Java_java_lang_System_identityHashCode) +STUB( + "9Xt-fXhFqzU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEEC1Ev) +STUB("9Xx7YdPMoFY", _ZN3WTF21MemoryPressureHandler33setShouldUsePeriodicMemoryMonitorEb) +STUB("9Xz6uhF2BbI", _ZN3JSC7Symbols41getStringIteratorInternalFieldPrivateNameE) STUB("9Y5keOvb6ok", _sceUltQueueCreate) +STUB( + "9YMf55svY38", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEEptEv) +STUB("9YMojY3k+IE", _ZNK7WebCore23ScaleTransformOperation4dumpERN3WTF10TextStreamE) +STUB( + "9YOZHabeaE4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEEC2ERKSA_) +STUB("9YR+jtSTTZQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEC1Ev) +STUB("9YSpgMUyq5A", utext_setNativeIndex_67) +STUB("9YW4SbZQgRM", ucfpos_close_67) +STUB( + "9YWXkd3AZAk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi12downloadDataEiRKNS4_23ParameterToDownloadDataERNS1_6Common21DownStreamTransactionINS8_12IntrusivePtrINS4_27DownloadDataResponseHeadersEEEEE) +STUB("9YY6kfBKCV4", + _ZN9Inspector20InspectorTargetAgentC2ERNS_14FrontendRouterERNS_17BackendDispatcherE) +STUB("9YYC8ZNZ-AE", _ZN3JSC8Bindings13RuntimeObject16getConstructDataEPNS_6JSCellE) +STUB("9YYE46mjXFE", + _ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForRead12unsetPlayersEv) +STUB("9Yf-Pwira94", _ZN3JSC13ErrorInstance17sanitizedToStringEPNS_9ExecStateE) STUB("9YhwG4DhwtU", sceNpAppLaunchLinkIntCreateRequest) STUB("9YmBJ8KF9eI", sceNpPollEventFlag) +STUB("9YoTlneHoC0", _ZN3sce7Toolkit2NP2V212EventsClient17EventShareFactoryC2Ev) +STUB("9YpqWq7-K8U", + _ZNK3sce2Np9CppWebApi7Matches2V120RequestTeamStatistic25teamMemberStatisticsIsSetEv) +STUB( + "9YqghEc-uuE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEE5resetEPS9_) STUB("9Yv7222knIM", sceEsvmEngineMediaKeySessionGetSessionId) +STUB( + "9Yx1om0o7DE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEE11get_deleterEv) STUB("9Z-PeHV7oSg", sceDataTransferTargetAbortGetTitles) +STUB( + "9Z0P3MZ9WOQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEED2Ev) +STUB("9Z0gNNdVsQo", _ZN9Inspector14FrontendRouter18disconnectFrontendERNS_15FrontendChannelE) +STUB("9Z4QCM3w9VQ", uprv_isInvariantUString) +STUB("9Z7cGthAErc", il2cpp_profiler_install_allocation) +STUB( + "9Z7z5zaC0So", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEED2Ev) STUB("9ZA23Ia46Po", sceAudio3dPortGetAttributesSupported) STUB("9ZAbQPFO7Ss", sceRegMgrPrivateStorageCount) +STUB( + "9ZBtW0l-Uo0", + _ZN3sce2Np9CppWebApi7Matches2V120RequestTeamStatistic8setStatsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_19AdditionalStatisticEEEEE) +STUB( + "9ZK7VZOg2Hw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE6resizeEj) +STUB("9ZLnJu4nqSA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEEeqERKS7_) +STUB("9ZQJ5Qh2TXw", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_13TusDataOutputEEC2Ev) +STUB( + "9ZUEXXZPwhw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEC1EPS8_) +STUB( + "9ZZkIqt6tZ4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE5clearEv) +STUB("9ZcGqLGV-+c", u_toupper_67) +STUB("9Ze737zQ89E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEdeEv) STUB("9ZiLXAGG5rg", sceNpCommerceDialogInitializeInternal) +STUB("9ZltRXsnhNY", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessionsaSERS5_) +STUB("9ZpBbdy7E1E", upvec_compactToUTrie2Handler_67) +STUB("9ZqL5WUiiXw", WKPreferencesSetInteractiveFormValidationEnabled) +STUB( + "9Zu5MbzfzhY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE5beginEv) +STUB( + "9ZvqxVfcpOM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEC1EPS6_PNS2_10LibContextE) +STUB("9ZxI8Yhazeo", _ZN3sce7Toolkit2NP2V212ActivityFeed14PlayedWithFeed5resetEv) +STUB("9a-8iiu4V3k", mono_aot_Sce_Vsh_DbRecoveryUtilityWrapperjit_got) +STUB("9a2C2wgAoXg", _ZN3JSC15IsoHeapCellType11finishSweepERNS_11MarkedBlock6HandleEPNS_8FreeListE) STUB("9aCk9jZ00-w", sceSdmaConstantFill) +STUB("9aG1Y+TwE4k", _ZN7WebCore18TextureMapperLayer13setSolidColorERKNS_5ColorE) +STUB("9aGME3ZvhCY", _ZNK7WebCore19ResourceRequestBase9hasUploadEv) +STUB("9aItdVdBvJU", _ZN3sce2Np9CppWebApi14SessionManager2V118LeaderWithOnlineId11setPlatformEPKc) +STUB("9aLF8VCUYjI", u_fopen_u_67) +STUB( + "9aM5CHAbjdY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEC1EPNS2_10LibContextE) +STUB("9aNFpPJWKls", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetInteger6Ev) +STUB( + "9aNk4+ug+Tk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEppEv) +STUB("9aODPZAKOmA", err_set_exit) +STUB( + "9aPAf9D+5Pg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("9aQBNagjgcM", ucnv_safeClone) +STUB( + "9aTGalFt+U8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEED2Ev) +STUB("9aXkiczQmPI", _ZN3sce2Np9CppWebApi11Matchmaking2V19AttributeC1EPNS1_6Common10LibContextE) +STUB( + "9aYFwbusNac", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("9agpzpLikVw", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead14setSessionNameEPKc) +STUB("9aiQo-uRPJY", _ZN3sce2np3ipc17ServiceIpmiClient12BeginRequestEii) +STUB("9ao-QZCm5RI", _ZN3sce7Toolkit2NP2V28Commerce7Request21DisplayCheckoutDialogC1Ev) +STUB("9apGsfN-vLY", AacsSelectKey) +STUB( + "9arj5LEldVw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE5beginEv) +STUB("9at1IwpXFm8", uprv_decNumberMultiply_67) +STUB( + "9b-5iZGs0Fc", + _ZN7WebCore11CryptoKeyEC9importRawENS_25CryptoAlgorithmIdentifierERKN3WTF6StringEONS2_6VectorIhLm0ENS2_15CrashOnOverflowELm16ENS2_10FastMallocEEEbi) +STUB( + "9b-9UNUJZrA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEEC2ERS9_) +STUB("9b1Vl4heYfc", _ZN7WebCore16JSXMLHttpRequest9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("9b36v9Nah3s", _ZNK3sce2np9JsonValue9GetStringEv) +STUB( + "9b6qtOJzPkY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "9b7fQeORaq0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEaSERKS9_) +STUB("9b9BlMk6R4g", _ZN3sce7Toolkit2NP2V210Tournament7Request8GetEventC2Ev) +STUB( + "9bEZEiQzwAA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEdeEv) +STUB( + "9bEyClNTlJM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEC1EPKS9_) +STUB("9bHSd64WzB0", _ZNK7WebCore9FrameView13paintBehaviorEv) +STUB("9bJDrk2KoMg", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setBoolean6ERKb) +STUB("9bKYzKP6kYU", CA_MGMT_extractPublicKeyInfo) +STUB( + "9bPIjBhN9EQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEC2Ev) +STUB( + "9bPciSyKlvM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEED1Ev) +STUB("9bQ2DtomD18", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEED2Ev) +STUB("9bSDYmkp-Vw", JSValueToStringCopy) +STUB( + "9bU9XW-mbno", + _ZZSt9MakefacetISt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEESt8_LocinfoERT_T0_E3buf) +STUB("9bbMhTfv3nY", WKHitTestResultCopyLookupText) +STUB( + "9bcGdz9MtfM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEC2Ev) STUB("9bfdLIyuwCY", sceKernelMtypeprotect) +STUB("9biiDDejX3Q", _ZNSt13basic_filebufIcSt11char_traitsIcEE5_LockEv) STUB("9bnaeOBBD1Q", sceCompositorFlushWithRepeat) STUB("9bpjp8T0nRg", sceAudioOut2LoPortDestroy) +STUB( + "9bu238dw8jA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "9c9y1KjOQrw", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "9cDhsWnLzQA", + _ZN7WebCore21ComplexTextController14ComplexTextRunC2ERKN3WTF6VectorINS_9FloatSizeELm0ENS2_15CrashOnOverflowELm16EEERKNS3_INS_10FloatPointELm0ES5_Lm16EEERKNS3_ItLm0ES5_Lm16EEERKNS3_IjLm0ES5_Lm16EEES4_RKNS_4FontEPKDsjjjjb) +STUB("9cFgcwjP8fw", _ZN7WebCore19UserContentProviderD2Ev) +STUB("9cJ2S8f4Mj4", _ZNK3sce2np18HttpConnectionPool6IsInitEv) +STUB("9cLS8Nr+r7M", _ZN7WebCore9URLParserC1ERKN3WTF6StringERKNS_3URLERKNS_12TextEncodingE) +STUB("9cOpdpQjro8", __ubsan_handle_function_type_mismatch_abort) +STUB( + "9cTBpDzF6B0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEC1EPS8_) +STUB( + "9cVz4hL7-1s", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEeqERKS9_) +STUB( + "9cXNMcRGN8A", + _ZN9Inspector21InspectorConsoleAgent5countEPN3JSC9ExecStateEON3WTF3RefINS_15ScriptArgumentsENS4_13DumbPtrTraitsIS6_EEEE) +STUB("9cb+WUxOzVg", jio_vsnprintf) +STUB( + "9cbroM3jIys", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE3endEv) +STUB( + "9ccwIx0wkHs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE3endEv) +STUB( + "9clEEzfRLXU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) STUB("9coQ7gTfwhA", sceShellCoreUtilGetRegion) +STUB("9cpxUNV97mM", curl_multi_perform) +STUB( + "9cuODeYf6n8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEC1EPKS8_) +STUB( + "9cvRd6oYyQw", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeaders17unsetCacheControlEv) +STUB("9cwzuFnbszA", _ZN7WebCore26Matrix3DTransformOperationD1Ev) +STUB("9d+3tTazqAI", mono_aot_Sce_Vsh_Stickerjit_code_start) STUB("9d0PDAM9g1Q", scePerfTracePmEnable) +STUB( + "9d72Wyut5VA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEEdeEv) +STUB( + "9d8WmB9eh18", + _ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionMemberPlayer16setNonPsnPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_33ResponsePlayerSessionNonPsnPlayerEEEEE) +STUB("9dDxpPozlvI", _ZN3sce2Np9CppWebApi6Common6VectorIiE6insertENS2_13ConstIteratorIiEERKiRS6_) +STUB("9dFvRCRI8tg", _ZN7WebCore11JSDOMMatrix15subspaceForImplERN3JSC2VME) +STUB( + "9dHS89MrNjw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEEC1ERSA_) +STUB("9dKW3mdWo-0", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_11TusVariableENS2_IS4_EEEE8allocateEmPKv) +STUB("9dKg1Iu9IQk", mono_thread_create) +STUB("9dLv0t-u1mk", _ZN3sce7Toolkit2NP2V27Ranking8TempRank10FIRST_RANKE) +STUB( + "9dM+yx2nLTg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("9dOBfs078pg", _ZN3WTF10StringImpl8endsWithERS0_) +STUB( + "9dODJGnq8dE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE7reserveEi) +STUB("9dP5ka2bKIY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEC2ERKS7_) +STUB( + "9dRg+ERq5hI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE4sizeEv) +STUB( + "9dTy3DvXF7Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEE5resetEPS6_) +STUB( + "9dXaK201po0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEaSERS7_) +STUB("9daYeu+0Y-A", __divdi3) STUB("9ddRUOV8Q5A", sceDeviceServiceGetEventState) +STUB( + "9djO7trdVOM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEE7add_refEv) +STUB("9dmPhlu7td4", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEED2Ev) +STUB( + "9du9HrDwS6c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE7popBackEv) +STUB("9duJwhiYGCE", T_CString_toLowerCase) +STUB("9dulQPS5uJg", _ZN7WebCore12TextIteratorC2ERKNS_11SimpleRangeEt) STUB("9dvVBukqOsw", sceShellCoreUtilStopPsNowGame) +STUB("9dwA+t5a9BU", WKWebsiteDataStoreSetClientCertificate) +STUB( + "9dxtjuaEoHc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEED1Ev) +STUB("9e+P2QF+5wc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEEaSERS5_) +STUB( + "9e+QnV2e-mQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE8capacityEv) +STUB( + "9e0m3WEBRag", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEED2Ev) +STUB( + "9e1nWpOT4lg", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) STUB("9e56uLgk5y0", scePadIsMoveReproductionModel) +STUB("9e61iN5WLxg", _ZN7WebCore15VisiblePositionC1ERKNS_8PositionENS_9EAffinityE) +STUB("9eEmovxM7pg", __DTOR_LIST__) +STUB( + "9eIaFYhJ+Rs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEE11release_refEv) +STUB("9eMlfusH4sU", flock) +STUB("9eNVHEwRadA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEmmEi) STUB("9eP06So7cfY", sceVideoCoreAcquireDecoderResource) +STUB("9eTG+-xGe+g", _ZN7WebCore19ResourceRequestBase23setFirstPartyForCookiesERKNS_3URLE) +STUB( + "9eXrJ1iB92Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "9eZQWPZmx88", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEED2Ev) +STUB( + "9eeRNhGVkxo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE5beginEv) STUB("9eic4AmjGVI", sceNgs2VoiceQueryInfo) +STUB("9ej2hBD+fc0", WKPreferencesGetSelectionPaintingWithoutSelectionGapsEnabled) +STUB( + "9ekJZ0oas7k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEED2Ev) +STUB( + "9euZEpiR6ek", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEED1Ev) STUB("9exeDpk7JU8", sceHmdInternalGetIPD) +STUB( + "9eywfTNJkrk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE3endEv) STUB("9ez71nWSvD0", scePadDisconnectPort) +STUB("9ezXGfGJLuU", _ZN7WebCore12ChromeClient23enableSuddenTerminationEv) +STUB("9f-LMAJYGCY", _ZNSt12placeholders2_8E) +STUB("9f20fWoMvS0", + _ZN15AbstractStorage14FacebookFolderC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) +STUB("9f6kIC+gbnk", _ZN3JSC19HeapSnapshotBuilderD2Ev) +STUB( + "9f9v5fBXfQc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEEaSERKSA_) STUB("9fAPih-AeJo", sceDebugGetVirtualMemoryDetailInfoForCoredump) STUB("9fK1V0QGyL4", sceNpManagerIntCheckTitleSystemUpdate) +STUB( + "9fQessF2qkI", + _ZN3JSC16InternalFunction40createFunctionThatMasqueradesAsUndefinedERNS_2VMEPNS_14JSGlobalObjectEiRKN3WTF6StringENS_14NativeFunctionE) +STUB("9fZXlGExTyM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEE3getEv) STUB("9faEv99wVjc", scePlayReadyCdmiGetMediaKeyStatus) +STUB("9flMWhIFSeM", _ZN7WebCore8SVGNames7durAttrE) +STUB("9fmN+7oFbuI", + _ZThn16_N9Inspector28InspectorScriptProfilerAgent13startTrackingERN3WTF6StringEPKb) STUB("9fs1btfLoUs", scalbnf) STUB("9fvHMUbsom4", sceVrTrackerUpdateMotionSensorData) +STUB( + "9fzeAy0Njsw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE10setContextEPNS2_10LibContextE) +STUB( + "9g3TvskQxwE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEEptEv) +STUB( + "9g3wBqdQ7S0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEC2EPS7_PNS2_10LibContextE) +STUB( + "9g5B36NpVrw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEC2Ev) +STUB("9g5RodpM50c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE5beginEv) +STUB( + "9g9RpFK6f04", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE5emptyEv) +STUB( + "9gIqDexP0sg", + _ZN7WebCore11ImageBufferC1ERKNS_9FloatSizeEfNS_10ColorSpaceENS_13RenderingModeEPKNS_10HostWindowERb) +STUB("9gO6YSPJvLU", _ZTVN7WebCore23CoordinatedBackingStoreE) +STUB( + "9gRowJ6oius", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEixEm) +STUB("9gXDUNzVOiM", _ZN3JSC6JSCell16getConstructDataEPS0_) +STUB("9gXsfyz0f5w", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEdeEv) +STUB("9gda3JloLFE", WKWebsiteDataStoreDumpResourceLoadStatistics) +STUB( + "9gf37qvIiuU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEC1Ev) +STUB("9gfFGr6B1Fc", NpWebReadData) +STUB( + "9gg5h1rQi20", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE21intrusive_ptr_add_refEPS9_) +STUB("9ggT5xtuRzk", ucal_getTZDataVersion_67) +STUB("9giznW5Belc", _ZNK3JSC11ArrayBuffer5sliceEd) +STUB("9gjYS0WRXz0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE3endEv) STUB("9gwCE5fggiM", sceClPthreadMutexattrSettype) +STUB( + "9gynMJpYqlE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEixEm) +STUB( + "9h0u-yAwwKc", + _ZN3JSC19JSNativeStdFunction6createERNS_2VMEPNS_14JSGlobalObjectEiRKN3WTF6StringEOSt8functionIFlPNS_9ExecStateEEENS_9IntrinsicENS_14NativeFunctionE) +STUB("9h3QG13-rQQ", glSamplerParameteriv) +STUB("9h9igbnLK8s", _ZN3sce7Toolkit2NP2V27Ranking7Request8SetScoreD2Ev) +STUB("9hB8AwIqQfs", _ZNKSt14error_category10equivalentERKSt10error_codei) +STUB("9hFk1C73Ukc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEE7get_refEv) +STUB("9hGAeMY88-Y", _ZN7WebCore12ChromeClient23isPlayingMediaDidChangeEjm) +STUB( + "9hL9j3FyNeM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEEC2ERKSA_) +STUB("9hM1-tzVZtU", JVM_IsThreadAlive) +STUB( + "9hP5fZIOpIk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEptEv) +STUB("9hSchU+U-8w", _ZNK7WebCore22HTMLFormControlElement10formMethodEv) +STUB( + "9hXvsPHx0e0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEEC2ERSA_) +STUB("9hbsNzeiMVA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEmmEi) +STUB("9hg98wew990", _ZTVN4IPMI4impl10ServerImplE) +STUB("9hjcEW15Tyw", _ZN3WTF24AutomaticThreadCondition9notifyOneERKNS_14AbstractLockerE) +STUB("9hkT1aMC0Rs", ubrk_preceding) +STUB("9hkwSazcTHE", + _ZN8meta_gen11MsvPromoter22setKeyValue_TBLI_WidthENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti) +STUB( + "9hlyrfccop8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "9huohs3TAxU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "9hyq-EJUn8I", + _ZN3JSC9Structure25attributeChangeTransitionERNS_2VMEPS0_NS_12PropertyNameEjPNS_41DeferredStructureTransitionWatchpointFireE) STUB("9i+R1rj6Trk", sceShellCoreUtilGetSuspendConfirmationDialogFlag) +STUB("9i1IUCQIlRM", delegate_virtual_invoke_imt_m_14) +STUB("9i3FkuGagRA", ucal_getTimeZoneIDForWindowsID_67) +STUB("9i9SZMANEgM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V120PlayerJoinableStatusEEC2EPS6_) +STUB("9iAZcHT7FBg", _ZN7WebCore18CustomHeaderFieldsC2ERKS0_) +STUB( + "9iBx9rerED4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEC1EPS6_PNS2_10LibContextE) +STUB("9iCP-hTL5z8", _WStoull) +STUB("9iDiDwbvShI", utrans_clone_67) +STUB( + "9iGOvuVZff4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEE7get_refEv) +STUB("9iGYtO7nweM", WKDictionaryGetSize) +STUB( + "9iHpsFZ+PVw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEdeEv) +STUB( + "9iMSMugM5zI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEEC2Ev) +STUB( + "9iO3rPkoyQY", + _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody19setTicketAttributesERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_9AttributeEEEEE) STUB("9iRbHCtcx-o", sceFontGraphicsSetupClipping) +STUB("9iReaS7k8RA", _ZN6WebKit17ChildProcessProxyD0Ev) +STUB( + "9iSJPgI+hoY", + _ZN7WebCore9FrameView27computeLayoutViewportOriginERKNS_10LayoutRectERKNS_11LayoutPointES6_S3_NS_30ScrollBehaviorForFixedElementsE) +STUB( + "9iUWFxqk6Gg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB( + "9iUpShA7680", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("9iXt34+oIKI", _ZN7WebCore8Document28setNeedsDOMWindowResizeEventEv) +STUB("9iXtwvGVFRI", _ZNSt8numpunctIcE2idE) +STUB("9iaVc1IWrKM", _ZN3sce2Np9CppWebApi6Common6VectorImEC2EPNS2_10LibContextE) +STUB("9ibZzkBkQyY", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersD1Ev) +STUB("9iclt66Ip38", _ZN7WebCore8SVGNames9widthAttrE) +STUB( + "9ikCRIaN3AU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE8capacityEv) +STUB("9ikEdF-YHFo", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead17joinDisabledIsSetEv) +STUB("9iozwfofZVw", rgctx_fetch_trampoline_rgctx_23_p) +STUB( + "9itUrZFDocA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("9ixZbA-P1mE", ucnv_getMinCharSize_67) +STUB( + "9izAoH16gXk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB("9j+LSHhp4h0", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEED1Ev) +STUB("9j+Pah7d6mg", _ZN9Inspector18InjectedScriptBaseC1ERKN3WTF6StringE) +STUB("9j-ZhhsSTMc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEE7get_refEv) +STUB("9j0AkeNr+qk", _ZN4IPMI6ClientD0Ev) +STUB("9j3jntJ9Nfw", WKBundleFrameCopyMIMETypeForResourceWithURL) +STUB("9j5a8ogFOE8", _ZN4IPMI4impl10ServerImpl17allocateSessionIdEv) +STUB( + "9j6AQ2zpBw4", + _ZN7WebCore24CoordinatedGraphicsLayer13addChildBelowEON3WTF3RefINS_13GraphicsLayerENS1_13DumbPtrTraitsIS3_EEEEPS3_) +STUB("9jFUM0UppvE", _Ux86_64_flush_cache) +STUB("9jII5bWqm40", _ZN7WebCore12GCController17garbageCollectNowEv) +STUB("9jIJ3E53A8c", _ZN3sce7Toolkit2NP2V24Core7Request11MemoryPoolsD1Ev) +STUB("9jJTRrWCWK0", vfork) +STUB( + "9jQNQW9nJGg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEEC1Ev) +STUB( + "9jRalYIyZzA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEE7get_refEv) +STUB("9jSuWQLNQ9M", uprv_convertToPosix) +STUB("9jTFtoUTO3I", + _ZN12video_parser5vpcom16_GetHandleStatusEPNS_8_vp_fileEPNS0_23VP_FILE_RESOURCE_STATUSE) +STUB("9jTIFmDJs4Q", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle6toJsonERNS_4Json5ValueEb) +STUB("9jWgF2OFg0A", _ZN8meta_gen11MsvPromoter30retrieveMultiLangThumbnailInfoEPKc) +STUB( + "9jcZw4wIf6I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEixEm) +STUB("9jgehwZ016k", il2cpp_method_get_param) +STUB( + "9js8Z+YRP78", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("9jsfeGcl2aY", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V13Mmr6toJsonERNS_4Json5ValueEb) +STUB( + "9juroVAcXRU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEptEv) +STUB( + "9jxCqOm6egg", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToSendPlayerSessionMessage12setsessionIdEPKc) +STUB("9jxDlmIzQj8", __sanitizer_free_hook) +STUB("9k1BjbRa6Gs", _ZThn24_N9Inspector22InspectorDebuggerAgent8stepIntoERN3WTF6StringE) +STUB("9k3ruqaVcSM", mono_aot_Sce_Vsh_Passcodemethod_addresses) +STUB("9kASvUOHrXs", GCC_except_table3) +STUB( + "9kDWGLmHwLY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEC2EPS6_PNS2_10LibContextE) +STUB( + "9kDaVWrJnkk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEcvbEv) +STUB("9kGnP+jnLiI", _ZN7WebCore12DOMException11descriptionENS_13ExceptionCodeE) +STUB("9kNIG6jfHRM", uprv_maximumPtr_67) +STUB("9kOFELic7Pk", fwprintf_s) STUB("9kPCz7Or+1Y", sceSystemServiceReenableMusicPlayer) +STUB("9kQAFHxHWo4", Java_com_sony_bdjstack_javax_media_controls_VideoSystem_getScreenAspectRatio) +STUB("9kSWQ8RGtVw", _Atomic_fetch_add_2) STUB("9kTbF59TjLs", sceFontGlyphRefersMetricsHorizontal) STUB("9kZc-37F7es", sceVorbisDecGetDecodePriority) +STUB( + "9kdYkh-OoP4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEED2Ev) +STUB("9keSd9gxiWg", _ZN12Mp4Retriever14processMetaBoxEv) +STUB( + "9kfwopmgbl4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEC2EPKS8_) +STUB("9khd40gnX3s", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession18maxSpectatorsIsSetEv) +STUB( + "9khel5Vjd2w", + _ZN9Inspector21PageBackendDispatcher8navigateElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "9kinEDjMmQ4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEC2Ev) +STUB( + "9kjSfQ9zMdE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEppEv) STUB("9kkkQp8Xz1Y", sceAudioOut2LoInit) +STUB("9km02mPqPJE", FT_Outline_Render) STUB("9ks8OZX2tYs", sceGameRightGetString) +STUB( + "9kvg2YKTxPw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEptEv) +STUB("9l1Xqm+d8K8", _ZN3sce7Toolkit2NP2V212EventsClient9EventDataD1Ev) STUB("9l2uOATqogs", sceGnmSysGetClientNumber) +STUB("9l7AK7-JFzw", WKMessageListenerGetTypeID) +STUB("9lAHLyUVQhE", _ZN3sce7Toolkit2NP2V210Tournament24OfficialBroadCastDetails5resetEv) +STUB( + "9lI2hrGpisE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE3endEv) +STUB("9lKvUIZkntU", res_getPublicType_67) +STUB("9lLmMrDj590", uloc_getScript) +STUB( + "9lRuwESw0v4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB("9lS3Odgn90U", _ZN3sce2Np9CppWebApi7Matches2V15Error9setSourceEPKc) +STUB( + "9lSbICUVJsk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEE11get_deleterEv) +STUB("9lSi1Sx+rNU", mono_get_thread_class) +STUB("9lT7kN9Rnag", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13boolean3IsSetEv) +STUB( + "9lalT0wpCw4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEEC2ERSA_) +STUB( + "9lfIaClBKHQ", + _ZThn24_N7WebCore14DocumentLoader35enqueueSecurityPolicyViolationEventEONS_28SecurityPolicyViolationEvent4InitE) +STUB( + "9lhqMTcAXjA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEEdeEv) +STUB("9llzqKWsNMI", _UIx86_64__mempool_init) +STUB("9lmtK4D4Vp0", rgctx_fetch_trampoline_rgctx_18_p) +STUB("9loQX1sfAyo", _ZN7WebCore27ContentSecurityPolicyClientD2Ev) +STUB("9ltF1xBh8u0", WKPreferencesSetJavaEnabledForLocalFiles) +STUB( + "9ltqATuaGoo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEC2EPS6_PNS2_10LibContextE) +STUB( + "9luWSzZzdMk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEC1EPS8_) STUB("9lvj5DjHZiA", sceKernelPollEventFlag) STUB("9lz4fkS+eEk", sceNpManagerIntGetAccountType) +STUB("9m+rQFPwOPI", _ZN3JSC11VMInspector18dumpSubspaceHashesEPNS_2VME) +STUB("9m-AZF+kAyU", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEED2Ev) STUB("9m6mmioPTOo", sceMatSetUserCallstackCapture) STUB("9m8EcOGzcIQ", sceHttpGetAuthEnabled) +STUB( + "9mBgCvN6ET0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("9mCeP4wtXho", _ZN3sce2Np9CppWebApi7Matches2V123ResponseMatchStatistics19unsetTeamStatisticsEv) +STUB( + "9mDFan8EzBY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEC1ERS7_) +STUB( + "9mE7YWcymkU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "9mI1KYg01nQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEC2ERKS7_) STUB("9mI9zDF5KPk", sceVideoOutSysRemovePrivilege) STUB("9mIcUExH34w", sceNetGetStatisticsInfoInternal) +STUB("9mKJuQ1tqXg", _ZN4Manx8X509nameD1Ev) +STUB("9mKjVppFsL0", __longjmp) STUB("9mMuuhXMwqQ", sceLibcPafMspaceFree) +STUB("9mP+epi+9zU", _ZN3JSC13WatchpointSetD1Ev) +STUB("9mYII9rF7lI", _ZN3NTF15DNSPrefetchImplC1Ev) +STUB( + "9mYZFH9uDCA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEEC1ERSB_) STUB("9mZEgoiEq6Y", sceNpScoreGetRankingByNpId) +STUB("9majkc5-mso", _ZN9Inspector21InspectorConsoleAgentD2Ev) +STUB( + "9mb2J5lb7iM", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38setPlayerSessionMemberSystemPropertiesEiRKNS4_49ParameterToSetPlayerSessionMemberSystemPropertiesERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB( + "9moHH2IqiHA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("9msLSBEGafY", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBodyD2Ev) +STUB( + "9mvaRKq8QzU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEE5resetEPS9_) +STUB("9mz0oIY43Z8", _ZN8Gigacage16freeVirtualPagesENS_4KindEPvm) +STUB("9n-7isCBMlw", + _ZN3sce2Np9CppWebApi7Matches2V123ResponsePlayerStatisticC1EPNS1_6Common10LibContextE) +STUB( + "9n0+lxYsCD8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE8capacityEv) +STUB( + "9n2QUJ0LTVs", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "9n4hSgs6+3s", + _ZN9Inspector25DebuggerBackendDispatcher7stepOutElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "9n53iXu9eJU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEmmEi) +STUB("9n60S+t4Cxs", _ZN3sce2np9NpTitleIdC2ERK12SceNpTitleId) +STUB("9n8lgwPKRLY", mono_aot_System_Resources_ResourceManagerjit_code_end) +STUB( + "9nHgElhZp1g", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE5emptyEv) +STUB("9nHoP9FDPfo", JVM_ClassLoaderDepth) +STUB("9nIhaALWeGo", _ZN23sceMetadataReaderWriter11gvMp4Parser21gvMp4ParserInitializeEv) STUB("9nLbWmRDpa8", sceAcm_ConvReverb_SharedIr) +STUB("9nOKATsmoqg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEEaSERS7_) +STUB("9nPEBzwvxwE", _ZN3sce7Toolkit2NP2V28Matching5WorldC2Ev) STUB("9nTsENYMulM", sceM4aacEncTerminate) +STUB("9nXCUbHMnOE", u_strFindFirst_67) +STUB( + "9napqk1y6+Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEEC2ERKS9_) +STUB("9nbOHk50ckc", uset_setSerializedToOne_67) +STUB( + "9ncOLGylUEA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEcvbEv) +STUB("9nf8joUTSaQ", _Unlocksyslock) +STUB( + "9ni7xEvZAxs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEED1Ev) +STUB("9niNrXsF3Bc", _ZN3sce4Json5Array8iteratorD2Ev) +STUB("9nlSnRqmujY", mono_aot_System_Collectionsunwind_info) +STUB( + "9nrCUl1pl54", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEptEv) +STUB( + "9ntJ3Z79Uz0", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "9ntNY29zxQs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE5clearEv) +STUB("9ntvzn8AhaI", GCC_except_table80) +STUB( + "9nxJ0euHjcA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEEaSERKSA_) +STUB("9nxVSw0+aRc", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_11TusVariableENS2_IS4_EEEE10deallocateEPS6_m) +STUB("9nyDRil1cus", mono_log_close_syslog) +STUB("9nyr-WeKzRY", ztrans_adoptTo_67) +STUB("9nz1W9shXQA", MD4_Final) +STUB( + "9o+V5Terwg8", + _ZN3sce2Np9CppWebApi14SessionManager2V128PostGameSessionsResponseBody15setGameSessionsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_11GameSessionEEEEE) +STUB( + "9o1bIcmH++A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEppEi) STUB("9o4inFK-oWc", sceNpAsmClientSetNpTitleId) +STUB("9o4lPDNBpLI", _ZN7Nicosia14PaintingEngine6createEv) +STUB("9o7TZr3vezM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEE7add_refEv) +STUB( + "9o9-LkExdSc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEEaSERSA_) STUB("9oCCIMp7zLo", sceFiosFileTruncate) +STUB("9oGk-O2In3Y", atanlo) +STUB( + "9oJA70dGh3w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEC2Ev) +STUB("9oK0+VrU0VI", ucnv_getNonSurrogateUnicodeSet_67) +STUB( + "9oLpUrxO0BM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEptEv) +STUB( + "9oLruMfoas8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEED1Ev) +STUB("9oW4DYuIjaA", thread_exit_data) +STUB("9ohwTl0Bcnk", _ZN9Inspector25DebuggerBackendDispatcherD2Ev) STUB("9oiOWQ5FMws", sceNetConfigWlanDiagSetAntenna) +STUB("9oiX1kyeedA", bzero) +STUB("9opd1ucwDqI", _ZTIPx) +STUB("9oqk83i-twU", + _ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors10setMessageEPKc) +STUB("9os1IsUvdHQ", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEEC2ERKS6_) +STUB("9ozXeR1-w4c", SpeechInitialize) +STUB( + "9p16KzQjIf4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEEdeEv) +STUB("9pAkUXtTjjg", _ZN3WTF10makePoisonEv) +STUB( + "9pBmNjl2t8o", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData24setxPsnAtomicOperationIdEPKc) +STUB("9pCWkKhz2Eo", + _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOffer28hasxPsnAcceptPlatformNamePs5Ev) +STUB("9pKnLuhiDL4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE21intrusive_ptr_add_refEPS7_) STUB("9pLoHoPMxeg", sceNpClearEventFlag) +STUB( + "9pN9iYp0nk4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEppEv) +STUB( + "9pOKdfbj-cM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEptEv) STUB("9pOesIjMaSk", sceBgftServiceDownloadStopTaskAll) +STUB("9pPbNXw5N9E", _ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1EPKcm) +STUB( + "9pTTSQSEVOU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEEC2ERKSC_) +STUB("9pVA5pNkGHs", play) +STUB("9pbQZlVJLEA", g_file_get_contents) STUB("9pbTND42x74", sceDepthHeadCandidateTrackerSetValidationInformation) +STUB("9pbrgoNoY4s", + _ZN3sce2Np9CppWebApi7Matches2V122RequestPlayerStatisticC2EPNS1_6Common10LibContextE) +STUB("9pcai2KJAjk", _ZN3JSC10JSCellLock8lockSlowEv) +STUB("9pdLjBERB7s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEE7add_refEv) +STUB( + "9pfVGFrKay8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB( + "9pgKRMkqd3w", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB( + "9pj40npxRRM", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectator9terminateEv) +STUB( + "9pjRNxMGeFo", + _ZN9Inspector32DatabaseBackendDispatcherHandler18ExecuteSQLCallbackC1EON3WTF3RefINS_17BackendDispatcherENS2_13DumbPtrTraitsIS4_EEEEi) STUB("9plZCCRm9x4", sceShellCoreUtilEnterPowerLockSection) +STUB( + "9plhn6EJ0as", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("9pp9-dwqIHM", _ZN3sce2npneERKNS0_9NpTitleIdES3_) +STUB("9puMU9uZHn4", monoeg_g_queue_pop_head) +STUB("9pwuIEk7Rqo", ucal_clear_67) STUB("9pyartiGi-o", sceBgftServiceDownloadStartTask) +STUB("9q+h2q5YprU", _ZN3sce2np9LocalFile5CloseEv) +STUB( + "9q3Xp4OXmhI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "9q5EUiAOxkY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEEC2EPS6_PNS2_10LibContextE) +STUB( + "9q5c19kl2ig", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB( + "9q8UaHHZw6c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEC1EPS8_) +STUB("9qACCyOUAx8", png_write_rows) +STUB("9qAPLsjRPg4", + _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_10TimeRangesE) +STUB("9qCog5WvW9A", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE3endEv) +STUB( + "9qGaMH6K8jU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEppEi) +STUB("9qGjeGStPzE", _ZN3sce2Np9CppWebApi14SessionManager2V132RequestPlayerSessionMemberPlayerD2Ev) +STUB("9qHWPIJTFJg", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_6NpUserEEC1Ev) +STUB("9qI0dw2DSpQ", _ZN7WebCore9FrameView18updateControlTintsEv) +STUB("9qSCLJUxrgE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116InitialJoinStateEEaSERKS7_) +STUB( + "9qXODlj+xCs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEEaSERKSA_) +STUB("9qZNdB+2Bc0", uprv_ebcdictolower) STUB("9qdtVVdPT-0", sceRazorCpuUserSignalPost) +STUB( + "9qeMVgbwEQI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEEC1ERSB_) +STUB( + "9qlNw1MMRjs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEEaSERKSA_) +STUB("9qmEvk3fUyA", _ZN3JSC7Symbols25toLocaleStringPrivateNameE) +STUB("9qmxcoe8Y4A", _ZN7WebCore30InvertLightnessFilterOperationD1Ev) STUB("9qpBjpMYpnw", sceHandDetection) +STUB( + "9qqgKG5sN8E", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEED1Ev) +STUB( + "9qrhgYvSIpw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEptEv) +STUB( + "9qs16ksEZgA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "9quMJh+rquU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEEC2ERS9_) +STUB("9qxUiFlS1A4", + _ZNK3WTF17double_conversion23DoubleToStringConverter13ToExponentialEdiPNS0_13StringBuilderE) +STUB("9r0ux2+Uqlc", + _ZN9Inspector17BackendDispatcher10getBooleanEPN3WTF8JSONImpl6ObjectERKNS1_6StringEPb) +STUB("9r1JIq53T+c", _ZNK3JSC7JSValue9toIntegerEPNS_9ExecStateE) +STUB( + "9r2b1HVuSSY", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectatorC2Ev) +STUB("9r3yjlD6YOc", _ZN3sce2np14JsonNumberImpl3SetEPKc) +STUB("9r7PpojYy68", _ZN7WebCore12UserActivityC1EPKc) STUB("9r7dM3puxMk", sceNpSessionSignalingActivateUser) +STUB("9r9Ky2+ODXc", mono_string_from_utf32) STUB("9rAeANT2tyE", __cxa_guard_release) +STUB( + "9rGzyu0ZL0w", + _ZN7WebCore35serializePreservingVisualAppearanceERKNS_11SimpleRangeEPN3WTF6VectorIPNS_4NodeELm0ENS3_15CrashOnOverflowELm16ENS3_10FastMallocEEENS_22AnnotateForInterchangeENS_22ConvertBlocksToInlinesENS_11ResolveURLsE) +STUB("9rH9n8530IU", glBufferSubData) +STUB("9rLdwFjvPv0", delCommInfoListBySock) STUB("9rLooB4jRvY", sceVideoStreamingEngineMediaKeySessionGenerateRequest) +STUB("9rMML086SEE", _ZNSt6locale5_InitEv) +STUB("9rMbG0YsekE", _ZN3sce7Toolkit2NP15AppSTLAllocatorI13SceNpOnlineIdED1Ev) +STUB("9rU9t0IVmC8", _ZN7WebCore18HTMLMarqueeElement7setLoopEi) +STUB( + "9rUgCQXXpm0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEED1Ev) +STUB("9rjZCZ6PEok", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle11globalIsSetEv) +STUB( + "9rjckQ9ziXA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEmmEi) +STUB( + "9rqnovtGQFk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEE3getEv) +STUB( + "9rrmYB3l1ec", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEEiRNS2_10LibContextEPT_m) +STUB("9rw-dYdn3bA", _ZN7WebCore8Settings32setAcceleratedCompositingEnabledEb) +STUB("9s1E1w7ONEE", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead27joinableSpecifiedUsersIsSetEv) +STUB( + "9s21igMP22s", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE4sizeEv) +STUB("9s3P+LCvWP8", _Frprep) +STUB( + "9s3P0G6CejI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEmmEv) STUB("9s6ZwdTXAmc", scePatchCheckerDestroyHandler) +STUB("9s9O6EEZzuU", _ZN4Manx7RunLoop7currentEv) +STUB( + "9sA156977D8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEE7get_refEv) +STUB( + "9sCppD725fQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "9sLW7j9u4DY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEE11release_refEv) +STUB( + "9sMhtMOX-Lg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEEC2Ev) +STUB( + "9sNS8JgSFiI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEE11release_refEv) +STUB( + "9sNqYoDokyg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEeqERKS9_) +STUB( + "9sPSC2lCHog", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEE3getEv) STUB("9sSpOBHnrjM", sceCesBig5ToUtf16le) +STUB("9sborhBph9g", + _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities14UserActivities12getAccountIdEv) STUB("9sdvKfLR+mY", sceCompositorSetInvisibleCanvasCommand) +STUB("9shFdrb5VAs", _ZN9Inspector20InspectorTargetAgentD1Ev) +STUB("9smhIInBMpM", _ZN8Gigacage16tryAlignedMallocENS_4KindEmm) +STUB("9spXJRHFHRA", _ZN3sce7Toolkit2NP2V28Commerce10Descriptor8NAME_LENE) +STUB( + "9sti7vTvx2U", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData10initializeEPNS1_6Common10LibContextEiNS5_19XPsnAtomicOperationEPKc) +STUB("9svkamY60w4", _ZN3sce7Toolkit2NP2V23TUS7Request16GetUsersVariableD2Ev) +STUB( + "9syopX0IIsQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEC2ERKS7_) +STUB( + "9szMw8nXoUw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEEC1ERSA_) +STUB( + "9t4xELFJxkc", + _ZN3sce2Np9CppWebApi11Matchmaking2V128PlayerForTicketCreateFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_21PlayerForTicketCreateEEE) +STUB( + "9t6WQLYeWzA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEaSERKS9_) STUB("9tEwE0GV0qo", sceAudio3dBedWrite) +STUB( + "9tF1UEXU2A4", + _ZNK3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead23supportedPlatformsIsSetEv) +STUB( + "9tGU+J9kuRs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEmmEv) +STUB("9tHTHaoaTRU", _ZN3JSC18PropertyDescriptor9setGetterENS_7JSValueE) +STUB( + "9tT1HjFHiUc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE3endEv) +STUB( + "9tTE7ZTOyuA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEaSERS7_) +STUB("9tTqUgSxFmE", uprv_syntaxError_67) +STUB( + "9tUMBN2042I", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEplEm) +STUB( + "9tVdB4j7-V8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("9tXNMYxPrIs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEE7get_refEv) +STUB( + "9ta1PDe-fN0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEC2EPS8_) +STUB("9ta5HFCd3Hc", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEEcvbEv) +STUB( + "9taEHUJ0G0E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEC1EPS8_) +STUB("9tck1xjHPsU", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEEdeEv) +STUB( + "9tdkVrwsAmY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEED1Ev) +STUB("9tfT3KiaerY", _ZN7WebCore8Document10setCharsetERKN3WTF6StringE) STUB("9tfy4+aDxrM", sceVoiceQoSGetRemoteEndpoint) +STUB("9tgwmHGKhnA", _ZN7WebCore8SVGNames19image_renderingAttrE) STUB("9thKyBzyAR4", sceKernelGetRenderingMode) STUB("9thMn+uB1is", sceRazorCaptureCommandBuffersOnlySinceLastFlip) +STUB( + "9thO3PbTyAk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEppEv) +STUB("9tnIVFbvOrw", __floatundisf) +STUB("9tnYMYNMA1I", _ZN3sce7Toolkit2NP2V24Core10OnlineUserC2Ev) +STUB("9tvPjSs-M-o", + _ZNK7WebCore6Quirks62shouldLayOutAtMinimumWindowWidthWhenIgnoringScalingConstraintsEv) +STUB("9tw1PljClHQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEED1Ev) +STUB("9twAdkLcx3Q", + _ZN2sh33CheckVariablesWithinPackingLimitsEiRKSt6vectorINS_14ShaderVariableESaIS1_EE) +STUB("9tz7W7-K48w", _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicket7getviewEv) +STUB("9u-+t-g0hdE", _ZN7WebCore10LayoutRectC2ERKNS_9FloatRectE) +STUB("9u-leikYIwU", JVM_Send) +STUB( + "9u1N7MfGHyY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE7popBackEv) +STUB("9u2xvQofqRE", _ZN12video_parser5vpcom8datetime8DateTimeC1Ettttttj) +STUB("9u3od5S6zFY", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110ResultTypeEEneERKS7_) +STUB( + "9uCGe-uPU+g", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB( + "9uKWAIdJRzg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE3endEv) +STUB("9uLllMP6nhU", _ZN9Inspector24CanvasFrontendDispatchernaEmPv) +STUB( + "9uLuRS4vpyE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEED2Ev) +STUB("9uLwD-AHv5w", _ZN3sce7Toolkit2NP2V29Messaging16GameDataMessagesaSERKS4_) +STUB("9uOxriAeVYg", _ZNK7WebCore10ScrollView16contentsToWindowERKNS_8IntPointE) +STUB("9uP25i6ipno", _ZNK3sce4Json5Array5emptyEv) +STUB( + "9uQcMJe7lK4", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead20setInvitableUserTypeERKNS3_23CustomInvitableUserTypeE) +STUB("9uRO2kWvbzo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEEC1EPS6_) +STUB( + "9uUAIvFBv8U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "9uZ0ta1XexA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "9ul6Vq3F-I0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEEcvbEv) STUB("9urVLs6ovQk", sceKernelGetMemoryPstate) +STUB("9uu1wS0n4Jw", _ZN7WebCore11HistoryItem18setFormContentTypeERKN3WTF6StringE) STUB("9v+V7a-Du3Y", sceNetApctlStartConf) +STUB("9v4ik3FRiDA", rgctx_fetch_trampoline_rgctx_64) +STUB("9v4s2WAlWKI", _ZN3WTF17callOnMainRunLoopEONS_8FunctionIFvvEEE) STUB("9v8qoOWDC48", sceIduIsStaffMode) +STUB("9v9aTc07VPs", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEEC2ERS6_) STUB("9vA2aW+CHuA", sceNetInetNtop) +STUB("9vA30Kj3Ldo", _ZN3sce7Toolkit2NP2V28Matching6MemberC1ERKS4_) +STUB("9vBDYBr6IRo", _ZN7WebCore12ChromeClient24didRemoveMenuItemElementERNS_19HTMLMenuItemElementE) +STUB( + "9vDPIYr3Vn4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE21intrusive_ptr_sub_refEPS9_) STUB("9vDQuBQPGrk", sceCesRefersUcsProfileCp866) STUB("9vHGtqLkmTQ", sceCompositorGetClientList) +STUB("9vJDKDiEqB8", _ZN7WebCore9HTMLNames10valignAttrE) +STUB("9vOUspyyXN0", WKBundleClearAllDiskcaches) +STUB( + "9vPdl9fXpJw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB( + "9vT88RzaMuc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "9vTLF39-rVQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE7reserveEi) +STUB("9vaUjldYdOY", WKVibrationGetTypeID) +STUB("9vbxlgJba48", mono_aot_Sce_Vsh_DataTransferunbox_trampoline_addresses) +STUB( + "9vfSmt+FLsM", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB( + "9vm71Bkm7Eo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEEC2ERS9_) STUB("9vvSCbbEOow", sceCesEucCnToUtf16le) +STUB("9vxj1CYn+Fo", _ZN7WebCore11DisplayList4ClipC2ERKNS_9FloatRectE) STUB("9vyP6Z7bqzc", pthread_rename_np) +STUB( + "9vyxxhn-me0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEEC2Ev) +STUB("9w+kRyuPZOM", _ZN7WebCore31MediaEngineConfigurationFactory11disableMockEv) +STUB( + "9w-7ZjiH5IA", + _ZN9Inspector23CanvasBackendDispatcher14requestContentElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("9w0VG82erX8", _ZNK7WebCore13HTTPHeaderMap8containsERKN3WTF6StringE) +STUB("9w1t5WdrSDI", _ZN3WTF11Persistence7Decoder6decodeERt) +STUB("9w3DvL0N2IA", uscript_breaksBetweenLetters) +STUB( + "9w5HkaJ2Iog", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEEC2ERKSA_) +STUB("9w5VabzNm9c", _ZN3sce2Np9CppWebApi11Matchmaking2V15Error8fromJsonERKNS_4Json5ValueE) +STUB("9w5re1A-HmQ", _ZN3JSC7Symbols35repeatCharactersSlowPathPrivateNameE) +STUB("9w5zHN6xOw8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEED2Ev) +STUB( + "9wF8uG8xZi0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEC1EPNS2_10LibContextE) STUB("9wO9XrMsNhc", sceNetRecv) +STUB( + "9wPhKMilhoI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEED2Ev) +STUB( + "9wTeADknSNY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEC1Ev) +STUB("9wYKBq8z2rA", _ZNK3WTF3URL4pathEv) +STUB( + "9wbUJuYetY8", + _ZN7WebCore11MemoryCache19getOriginsWithCacheERN3WTF7HashSetINS1_6RefPtrINS_14SecurityOriginENS1_13DumbPtrTraitsIS4_EEEENS1_11DefaultHashIS7_EENS1_10HashTraitsIS7_EEEE) +STUB("9wj2Ohdq3V0", _ZTVN7WebCore11DisplayList10DrawGlyphsE) +STUB("9wlSo1iqPBs", mono_array_new_full) +STUB("9wn-erEKew4", + _ZN7WebCore11DisplayList15FillRoundedRectC1ERKNS_16FloatRoundedRectERKNS_5ColorENS_9BlendModeE) +STUB("9wsgDjADKjk", _ZN3sce2Np9CppWebApi7Matches2V116RequestMatchTeam10getMembersEv) +STUB("9x+QdqQEnU0", Java_java_net_Inet4AddressImpl_lookupAllHostAddr) +STUB("9x04OJBX0J0", FcPatternGetMatrix) +STUB("9x0AYz1FTR8", _ZNK3sce2Np9CppWebApi6Common6VectorIjE3endEv) +STUB("9x5f0140e-c", _ZN7WebCore14WebSocketFrameC1ENS0_6OpCodeEbbbPKcm) +STUB("9x78-Zpc+XE", EVP_EncryptFinal_ex) +STUB("9x8S5Fjmcyw", _ZNK3sce2Np9CppWebApi14ConnectAccount2V212PartnerToken12getTokenTypeEv) +STUB("9xB0XwufJkM", uiter_setState_67) +STUB( + "9xL1XLvUzTU", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC2ERKSC_) +STUB("9xN76g0Nw0g", _ZN7WebCore18AdClickAttribution13markAsExpiredEv) +STUB( + "9xQOIRdEi4M", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getBoolean2Ev) STUB("9xRIkqnNibE", sceKernelSetBackupRestoreMode) +STUB("9xRRhd7WCOc", GCC_except_table76) +STUB("9xUnIQ53Ao4", __paritysi2) +STUB( + "9xVDn4Co+nE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEppEv) +STUB("9xXmW3HuGGk", _ZNK3WTF12AtomicString23convertToASCIIUppercaseEv) +STUB( + "9xY8Ug7ZmKY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEmmEv) STUB("9xcazelb3Ks", sceNpManagerIntGetNpIdInternal) +STUB("9xf8MYStc58", WKContextConfigurationCopyStorageProcessPath) +STUB( + "9xhIwQEN8G0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEEaSERKSA_) +STUB( + "9xmKaBZrj6w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEC1Ev) +STUB("9xrhjJsmR2Q", JSValueMakeSymbol) +STUB( + "9xuw6ZuXkC4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEdeEv) +STUB( + "9xxjmTAI6Io", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEE11get_deleterEv) +STUB( + "9xycIwGX6E4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEptEv) STUB("9y4IcsJdTCc", sceNetCtlDisableBandwidthManagementIpcInt) STUB("9y5v+fGN4Wk", sceAvPlayerPause) +STUB("9y6v26yVN4g", _ZN3WTF8JSONImpl10ObjectBaseD2Ev) +STUB("9y7Molw64Zw", ucnv_MBCSFromUChar32_67) +STUB("9y9YsMBbUq0", _ZN3sce2Np9CppWebApi6Common6StringC1EPNS2_10LibContextE) +STUB("9yDWMxEFdJU", strrchr) +STUB("9yIgudDTiYc", _ZN3sce7Toolkit2NP2V26Trophy7Request18GetTrophyPackGroupD2Ev) STUB("9yK6Fk8mKOQ", sceGameLiveStreamingTerminate) +STUB("9yKCRw7LyGU", WKContextConfigurationSetWebSQLDatabaseDirectory) +STUB("9yLjn46Ypfs", _ZN3sce4Json5Array8iteratorD1Ev) +STUB("9ySjIGOUlD4", rgctx_fetch_trampoline_mrgctx_9) +STUB("9yV0RpurfxI", _ZN7WebCore8SVGNames22requiredExtensionsAttrE) +STUB( + "9yVJIfDzwGc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEC1EPKS8_) +STUB("9yW5GcKMmJI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEE7add_refEv) +STUB("9yaO7ovhE7o", _ZN3WTF15FilePrintStreamD0Ev) STUB("9yf4dKVx9Nw", sceCesMbcToUcs2) +STUB( + "9yhR1Jbudl0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEE11release_refEv) +STUB("9ylasLJoZF0", uenum_openFromStringEnumeration) +STUB("9ym46rnYKZA", _ZNK3WTF7RunLoop9TimerBase16secondsUntilFireEv) +STUB( + "9ynH+f1BWwE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE7reserveEi) +STUB("9ynK7WRsjT8", _ZN7WebCore8SVGNames17clipPathUnitsAttrE) +STUB("9ynziHHqEtw", _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEEixEm) +STUB( + "9yqY8JNWWdg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEE7add_refEv) +STUB("9yvyzMoy5ZI", mono_aot_ReactNative_PUIjit_code_end) STUB("9yxlvURJU6U", sceKernelJitGetSharedMemoryInfo) +STUB( + "9yy8jbF8AuM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "9z+RMGvGq3k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEEC1EPS6_PNS2_10LibContextE) +STUB("9z-T9X9IMXE", _ZN9Inspector20InspectorTargetAgentnaEmPv) +STUB("9z38jdn1Yxw", _ZN7WebCore18StyleSheetContentsD2Ev) STUB("9z3E9CCNNEM", sceMbusConvertToMbusDeviceId) +STUB("9z3KgLgX-88", mono_aot_Sce_Vsh_Orbis_AbstractStorageplt_end) +STUB( + "9z4I3dmrreA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEED1Ev) +STUB( + "9z5IHQl-ED0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEC2EPS8_) +STUB("9z5ilnoxdQU", _ZNK7WebCore16FileReaderLoader17arrayBufferResultEv) +STUB( + "9z5nsxW5TE4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEC2EPS6_PNS2_10LibContextE) +STUB("9z6cz7NgsDA", mono_raise_exception) STUB("9z8Lc64NF1c", sceHmdInternalSetVRMode) +STUB("9zC61f9EJ+4", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V18SortModeEEeqERKS7_) +STUB("9zDsrofkKf8", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEEC2Ev) +STUB( + "9zNhN8qn0ME", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEC1ERKS7_) +STUB("9zPBIupchgA", _ZN3WTF19initializeThreadingEv) +STUB("9zPBKi1RfcM", mono_btls_ssl_get_server_name) +STUB( + "9zRlyw-wIcw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("9zWObmFZbbc", fuse_teardown_compat22) +STUB( + "9zaFTibX1Nc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE7reserveEi) +STUB("9zeGXDlETvM", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_16NetStateDetailedEE17getAdditionalInfoEv) +STUB("9zi9FTPol74", _ZN3sce2np5MutexD1Ev) +STUB( + "9zioa-wVHnM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE5clearEv) STUB("9zklzAl9CGM", pthread_rwlock_timedwrlock) STUB("9zmcX1uKDGg", sceCompositorReleaseLocalStall) +STUB("9zpID2DQn8g", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119ChildActivityStatusEEmmEv) +STUB("9zpLsLESzTs", _sigsuspend) +STUB("9zu1IfIAui0", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS15TusDataStatusesEE19setCustomReturnCodeEi) STUB("9zwJpai7jGc", sceSharePlayNotifyDialogOpen) +STUB( + "9zyzAlr-A0U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE5beginEv) +STUB("A++pFuyxZPg", cairo_scaled_font_get_ctm) +STUB("A+1YXWOGpuo", _LDtest) STUB("A+2M7EivuOU", sceVdecswQueryDecoderMemoryInfo) +STUB("A+ABIQ7gp7Q", jzero_far) +STUB( + "A+BSZ1YgF2o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEED1Ev) +STUB( + "A+C+OwNq1rI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEEC2ERSA_) +STUB( + "A+DQXl1ZH-8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEaSERS7_) +STUB( + "A+DfEnU9jj0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEptEv) +STUB("A+FhGENHV-E", _ZN3sce4Json6String5clearEv) +STUB("A+Fl4kp0Obk", _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse10setMatchIdEPKc) STUB("A+NVAFu4eCg", sceHttp2SendRequestAsync) +STUB( + "A+OmcXbHdWA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("A+RCnUXoF3k", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15PlayedWithStoryEE9constructEPS3_RKS3_) +STUB("A+Y3xfrWLLo", _Fspos) +STUB("A+ZaAAv53ZU", _ZN7WebCore4Page36setShouldSuppressScrollbarAnimationsEb) +STUB( + "A+bs0OuLr7I", + _ZN9Inspector8Protocol13BindingTraitsINS0_8Debugger9CallFrameEE11runtimeCastEON3WTF6RefPtrINS5_8JSONImpl5ValueENS5_13DumbPtrTraitsIS8_EEEE) STUB("A+gXFduc9gM", sceEsvmEngineMediaKeySystemAccessDestroyMediaKeys) +STUB("A+iiHCksp7Y", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE8capacityEv) +STUB( + "A+jL2wEoNNs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEcvbEv) +STUB("A+mlx+9Zt9I", rgctx_fetch_trampoline_rgctx_47_p) +STUB( + "A+qE8DD70Ac", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody8fromJsonERKNS_4Json5ValueE) +STUB("A+rTLSeCJFQ", curl_version) STUB("A+rpKNvFumU", sceBdSchedGetExtentMap) +STUB("A+sAjT9zHM8", _ZN9Inspector38ScriptProfilerBackendDispatcherHandlerD1Ev) STUB("A+uGq+3KFtQ", sceGnmMapComputeQueueWithPriority) +STUB("A+uMGgdfMa8", _ZN7WebCore20GraphicsContextStateD2Ev) +STUB( + "A+ubR6wRBHU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEEC2ERKSA_) +STUB( + "A+v4Lrbu3I4", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_15PlayedWithStoryENS1_15AppSTLAllocatorIS5_EEEEC2Ev) +STUB("A+wjqCjSkWY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEEC1ERS6_) +STUB( + "A+y+KEwk6pA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "A+ywHupQfJs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("A-+HeD-cMog", JVM_UnloadLibrary) +STUB( + "A--2TGAYoE8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE10setContextEPNS2_10LibContextE) +STUB("A-0StSi2AwA", cairo_set_font_size) +STUB("A-0jH6FlENI", mono_aot_Sce_PlayStation_PUIPlatformplt_end) +STUB( + "A-1W8n83nN8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEE11get_deleterEv) +STUB("A-59lWgJLb0", ucal_getAvailable_67) +STUB( + "A-6h9estZBw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEED2Ev) STUB("A-BYlKx72vw", sceAvSettingSetDisplayBlackLevel) +STUB( + "A-BqzAqXDN4", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "A-FexfLmD54", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEC2Ev) +STUB("A-IcJ38H870", _ZN3sce7Toolkit2NP2V211SharedMedia7Request9GetVideosD1Ev) +STUB("A-LX+unZHNA", _ZN7WebCore9HTMLNames16onloadeddataAttrE) +STUB("A-MGi5icglU", _ZN3sce7Toolkit2NP2V24Auth7Request10GetIdTokenD1Ev) +STUB("A-QKU+9HMhI", mono_aot_System_Data_Services_Clientjit_got) +STUB( + "A-T9v311l7s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "A-WkfCedYzk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEEdeEv) +STUB("A-ZO370RoSA", _ZN7WebCore17PageConsoleClient4timeEPN3JSC14JSGlobalObjectERKN3WTF6StringE) +STUB("A-cEjaZBDwA", _LZero) +STUB( + "A-tKe03rh7w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEEC1ERKSA_) +STUB( + "A-vzhvZ5u20", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEC2Ev) +STUB("A-x1fiSwh0A", DH_get0_pqg) +STUB( + "A0+B1H9GQtE", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS5_INS7_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISE_SF_EE) +STUB( + "A0DmXMwrdKc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEEptEv) +STUB("A0Kkj3BtiUY", _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEEC1Ev) +STUB("A0O5kF5x4LQ", _fstat) +STUB( + "A0P1bAV2eF8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEC2Ev) +STUB( + "A0PftWMfrhk", + _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE11get_weekdayES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm) +STUB( + "A0TmU0Rsdfk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEEaSERKSA_) +STUB("A0Ts3Oz6TPo", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification15BlocklistUpdateEE3getEv) +STUB("A0Xp97hSdNo", _ZThn64_N7WebCore10ScrollView15setScrollOffsetERKNS_8IntPointE) +STUB( + "A0iC8lJFgtc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("A0ia1KpQ4rY", + _ZN15AbstractStorage18DailymotionContent12readExternalESt10shared_ptrINS_7ContentEE) +STUB("A0rWlXAfqWE", __tsan_atomic128_store) +STUB( + "A0zNPHb53co", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEE11release_refEv) +STUB("A1-r+VSS0kk", _ZN7WebCore24CoordinatedGraphicsLayer10removeTileEj) +STUB("A18qthxPm4Q", mono_aot_Sce_Vsh_AppContentUtilWrapperunbox_trampoline_addresses) +STUB( + "A19tx8UCtZo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEixEm) +STUB( + "A1CkbkQoMFQ", + _ZN3sce7Toolkit2NP4Auth9Interface17getUserAccessCodeEPNS1_9Utilities6FutureINS1_6TicketEEERKNS1_21AccessCodeInputParamsEb) +STUB("A1HoXBZt3nQ", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetInteger3Ev) +STUB("A1R5T0xOyn8", fmodl) STUB("A1ThglSGUwA", sceSaveDataGetAllSize) STUB("A1XQslLAA-Y", sceNpTitleMetadataIntCreateRequest) +STUB( + "A1aIZYg4qdA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEE7add_refEv) +STUB( + "A1ap2sSvz8Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEEC1ERKSA_) +STUB("A1h+YaeoiHI", mono_aot_Sce_Vsh_Accessorunbox_trampoline_addresses) +STUB("A1jmJtg48go", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEEC2EPKS6_) +STUB( + "A1jnLmDEzs4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEEC2ERKSA_) +STUB( + "A1r1wc0PT+c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEC2Ev) +STUB("A1rhKFuCEIg", _ZTVN7WebCore20ISOOriginalFormatBoxE) +STUB( + "A1t8lmmhv+I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE7reserveEi) STUB("A1tqSIQvZhs", sceFsCreatePprPfsTrophyDataImage) STUB("A1zOC17L80g", sceKernelSetMemoryPstate) +STUB("A22IMPPB3OY", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product21getContentDescriptorsEv) +STUB( + "A255wdhvqk4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEEC1ERKS9_) +STUB( + "A2651fW0iB8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE21intrusive_ptr_add_refEPS9_) +STUB("A29RHrlfTM0", _ZNK3sce4Json6String5rfindEPKcmm) +STUB("A2BZJgwBmeI", _ZN3WTF10protocolIsENS_10StringViewEPKc) +STUB( + "A2Bqcmm8viY", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM14ShadowRootTypeEEESt8optionalIT_ERKN3WTF6StringE) STUB("A2CQ3kgSopQ", sceNpSetContentRestriction) +STUB( + "A2ETRcMwk3w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE10setContextEPNS2_10LibContextE) +STUB("A2Eh2M8nZqY", mono_aot_Sce_Vsh_BackupRestoreUtilplt) +STUB("A2HfEZB-rZQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ResponseCooperativeResultEEppEv) +STUB( + "A2J2cLyEr2M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEEC2ERSA_) +STUB("A2Jb0fC9k5k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEEppEi) +STUB( + "A2MiBwsnBSA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE8copyFromERKS9_) STUB("A2OPwu2Xo-c", sceNpMallocImpl) STUB("A2Q-gC8MxII", scePerfPmcNbStop) +STUB("A2Ru3JRG0dE", _ZN7WebCore8Document9setCookieERKN3WTF6StringE) +STUB("A2Sjbwfsp2c", _ZN7WebCore9HTMLNames11headersAttrE) +STUB( + "A2T8s9z8nfY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("A2TTRMAe6Sw", _ZTISt8numpunctIwE) +STUB("A2Xztk6l0mE", _ZN7WebCore8SVGNames18systemLanguageAttrE) STUB("A2jWOLPzHHE", sceHmdInternalCrashReportReadDataSize) +STUB("A2m1QsR0MZQ", mono_pe_file_open) +STUB( + "A2p5aEz8Hoc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEED1Ev) +STUB("A2pNKPuIDN0", _ZN7WebCore8SVGNames11opacityAttrE) +STUB("A2te-zPWOyg", _ZNK15AbstractStorage18DailymotionContent10GetServiceEv) +STUB( + "A2tqNanniRI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEEaSERSA_) +STUB( + "A2usXVbIOpM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEplEm) +STUB( + "A3+e2DjGY90", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEE11release_refEv) +STUB("A32EEl9qjEY", uprv_asciiFromEbcdic_67) STUB("A33uDRt2rQM", sceVideoStreamingEngineMediaKeySystemAccessDestroyMediaKeys) +STUB("A37OEqKnWWI", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_16EventInformationEEC1Ev) +STUB("A3FLVZ4FHbY", cairo_surface_write_to_png_stream) +STUB("A3HuqQOmdmA", WKBundleBackForwardListItemCopyOriginalURL) +STUB( + "A3Kc7Vrwkvk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEixEm) +STUB("A3NEPgIsmnQ", + _ZN3sce2Np9CppWebApi13InGameCatalog2V525ContentInteractiveElementC2EPNS1_6Common10LibContextE) STUB("A3TNKhREamw", sceVnaUnregisterCallback) STUB("A3YKyP3MwAI", scePlayReadyLicenseAcqGenerateChallenge) +STUB("A3YOM+5fr5A", _ZNK3WTF6String25splitAllowingEmptyEntriesERKS0_) +STUB("A3aZCVa2GRA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEEC1EPS5_PFvS7_EPNS2_10LibContextE) +STUB( + "A3cocAcY2KU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB( + "A3f3Dmc2MGM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB("A3fnrWMP7zk", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats12getPlayStyleEv) +STUB( + "A3jARsQjZRE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) STUB("A3m-y8VVgqM", sceNpManagerIntGetCommunicationRestrictionStatus) +STUB("A3oFI9JLDi4", _Z16WTFCrashWithInfoiPKcS0_immmm) +STUB("A3sDAc90aHc", _ZN7WebCore12ChromeClient20eventThrottlingDelayEv) +STUB("A3vIdrdhcdk", _ZN7WebCore42wordBoundaryForPositionWithoutCrossingLineERKNS_15VisiblePositionE) +STUB( + "A3vS8-6YhBM", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC1Ev) STUB("A3wbbLmrQV4", sceShellCoreUtilDownloadNetEvConfigFileFromServer) STUB("A3z26deg9VQ", scePerfPmcClose) +STUB("A428t51ioBQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEE7get_refEv) +STUB("A49tCnZlNyw", WKAuthenticationChallengCopyRequestURL) +STUB( + "A4B-PxiQ6Nc", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V136MatchCompletionRatePropertiesFactory7destroyEPNS3_29MatchCompletionRatePropertiesE) +STUB( + "A4EHb+Te4go", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEaSERKS7_) +STUB( + "A4F66HMzuwk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEC2EPNS2_10LibContextE) STUB("A4KPdcTIVuc", sceSocialScreenDialogTerminate) +STUB( + "A4MMgh3fkgY", + _ZThn32_N7WebCore14DocumentLoader16redirectReceivedERNS_14CachedResourceEONS_15ResourceRequestERKNS_16ResourceResponseEON3WTF17CompletionHandlerIFvS4_EEE) +STUB("A4P8aG8cGz0", _ZN7bmalloc13IsoSharedPage9tryCreateEv) +STUB( + "A4ReJogcU7k", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEEC1ERKSC_) +STUB("A4SdYgoAxIM", _ZN7WebCore16NetworkSendQueueD1Ev) +STUB( + "A4YVxfx9Mco", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEC2ERS7_) +STUB("A4bGTcq3-2E", WKContextConfigurationIgnoreSynchronousMessagingTimeoutsForTesting) +STUB("A4bnsoggxYA", _ZN3sce7Toolkit2NP2V28Matching7Request12SearchClauseD1Ev) +STUB("A4dOumHPyNQ", WKWebsiteDataStoreGetAllStorageAccessEntries) +STUB( + "A4jWCZQZYOE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEEC1ERSA_) +STUB("A4ox6HqeDG4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEEdeEv) +STUB( + "A4rANBtw0dI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "A4vEPN-BQAw", + _ZN7WebCore21NetworkStorageSession18setAppBoundDomainsEON3WTF7HashSetINS_17RegistrableDomainENS1_11DefaultHashIS3_EENS1_10HashTraitsIS3_EEEE) +STUB( + "A4wTWCKzgT4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("A4zXSpJuqvk", _ULx86_64_set_caching_policy) +STUB("A55zzvrPB7A", _ZN3IPC15ArgumentEncoder6encodeEm) +STUB( + "A56EtlVY70Y", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "A58icFdN9hE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("A5APW8--ie0", _ZN3JSC8Bindings13RuntimeObject7destroyEPNS_6JSCellE) +STUB( + "A5DgxwR+kFM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "A5EX+eJmQI8", + _ZZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_bRSt8ios_basewRKSbIwS2_SaIwEEE4_Src) +STUB( + "A5HmxKaod9g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEC1EPKS8_) +STUB("A5HsmsXdCnw", _ZN7WebCore15GraphicsContext20setShouldSmoothFontsEb) +STUB("A5Hxx4-o50g", PEM_write_bio_X509) +STUB( + "A5JR2J2Q52o", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE3endEv) +STUB( + "A5KcmtnVATU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEneERKS9_) +STUB("A5NjMQ4ZCv0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V124RequestCooperativeResultEEptEv) +STUB( + "A5OcDmN0MRs", + _ZN9Inspector22InspectorDebuggerAgent29breakpointActionsFromProtocolERN3WTF6StringERNS1_6RefPtrINS1_8JSONImpl5ArrayENS1_13DumbPtrTraitsIS6_EEEEPNS1_6VectorINS_22ScriptBreakpointActionELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("A5Tpi9NQOFw", _ZN3sce7Toolkit2NP2V212ActivityFeed15PlayedWithStoryD2Ev) +STUB("A5WvlZN4KEM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEE5resetEPS6_) +STUB("A5ZXsjODZnA", utext_isWritable_67) +STUB("A5d7+JLBz0o", YGNodeStyleGetFlex) +STUB("A5h6OSq6tG4", _ULx86_64_dwarf_to_unw_regnum_map) +STUB("A5iQWVULNEU", mono_aot_Mono_Securitymethod_addresses) +STUB( + "A5mU819AeKc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEaSERKS8_) +STUB("A5rtWrW1CAk", mono_aot_Sce_Vsh_Np_Webapimethod_addresses) +STUB("A5sEdd114m4", Java_java_io_ObjectInputStream_setObjectFieldValue) +STUB( + "A5vYoH8KPm0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEED1Ev) +STUB( + "A5w74g0Nk7M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("A5wwW5tmsgE", + _ZN7WebCore9CookieJar29cookieRequestHeaderFieldProxyERKNS_8DocumentERKN3WTF3URLE) +STUB( + "A5wycg1BTw4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEaSERS7_) +STUB("A5ya72jAXm4", _ZN3sce3pss4core9resources15ResourceManagerC2EPK11_MonoStringb) +STUB( + "A61gjERDjtk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE5beginEv) +STUB("A6FC9-s8BTk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEdeEv) +STUB("A6IB1hIEwCw", _ZN7WebCore12JSTimeRangesC2ERKS0_) +STUB("A6OKuW6OstM", _ZN7CoreIPC10Attachment7disposeEv) +STUB("A6OedzqJNWI", _ZN3WTF14FileSystemImpl11getFileSizeERKNS_6StringERx) +STUB("A6PU1u15CRI", _ZN3sce3pss5orbis9framework11PsmCallList8RegisterEPFvPvES4_) +STUB( + "A6REAyMilMo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEE3getEv) +STUB( + "A6iPAEkl6BE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEED1Ev) +STUB("A6o3MJ1JaTA", rgctx_fetch_trampoline_mrgctx_16) +STUB( + "A6oqr7nA6Kg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEE11get_deleterEv) +STUB( + "A6rq9qRjbzo", + _ZN3sce2Np9CppWebApi7Matches2V126AdditionalStatisticFactory6createEPNS1_6Common10LibContextEPKcS9_PNS5_12IntrusivePtrINS3_19AdditionalStatisticEEE) +STUB("A6tUo1vI7Tw", _ZN3sce3pss4core9threading4CondC1ERNS2_5MutexEPKci) +STUB("A6xEYmcRiho", _ZN7WebCore19JSAnimationTimelineC1ERKS0_) +STUB("A6yBulcPsOs", _ZN7WebCore9HTMLNames19allowfullscreenAttrE) +STUB("A6ykK35-yyA", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEED2Ev) +STUB("A6zCDUY2zic", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEEneERKS7_) +STUB( + "A7+i9j6G5Rg", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("A71XWS1kKqA", __atomic_fetch_and_2) +STUB("A742Lh-FnVE", _ZTVN3sce2np8JsonNullE) +STUB( + "A74KdP+ypxQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEC1EPS8_) +STUB( + "A74Ovpw1+UQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "A74ZKQsNkiw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEC2ERS7_) +STUB("A77t-NPbEOE", _ZN7WebCore5Range14setStartBeforeERNS_4NodeE) STUB("A7EKlm22zoE", sceLibSecureHashGetBlockSize) +STUB("A7GW1FP4jDo", _ZN12video_parser13cVideoMetaMP416getThumbnailInfoEjPNS_18VpThumbnailInfo_t_E) +STUB( + "A7LUJaujPOo", + _ZN3sce2Np9CppWebApi6Common23UpDownStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE8sendDataEPKvm) +STUB( + "A7TeaRimIGs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB("A7URD7UI5fE", _ZN3sce7Toolkit2NP2V28Matching7Request20SetInitConfigurationD1Ev) +STUB("A7hpstw2W-U", _ZN3sce7Toolkit2NP2V212ActivityFeed9StoryUserD1Ev) +STUB("A7lgyd346M4", _ZN3JSC19HeapSnapshotBuilder22hasExistingNodeForCellEPNS_6JSCellE) STUB("A7n9nNg7NBg", sceHttpCacheRedirectedConnectionEnabled) +STUB("A7oKSmrU2as", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEED1Ev) STUB("A7oRMdaOJP8", sceRazorCpuInitDataTags) +STUB( + "A7td473jiv8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEE7get_refEv) +STUB("A7vb06DjJUY", ucnv_getDefaultName) +STUB( + "A82AGq3-dxU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEE7add_refEv) +STUB( + "A835XiVhZ0k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEED2Ev) +STUB("A86aYTYSOgY", mono_event_get_raise_method) +STUB( + "A88nyUWqaWs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("A8DwB8VTJpA", mono_error_get_error_code) +STUB("A8FRv+YeMlA", _ZN7WebCore8SVGNames14keySplinesAttrE) +STUB( + "A8IXVgW00bU", + _ZN12video_parser13cVideoMetaMP411getMetadataENS_12VP_META_TYPEENS_9VP_LANG_eENS_15VP_SEARCH_OPT_eEjPNS_12VpMetadata_tE) +STUB( + "A8JdfjuehJM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB( + "A8LsCPXwRI4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEptEv) +STUB("A8WGRwZEqvM", mono_aot_Newtonsoft_Json_PlayStationjit_code_start) +STUB("A8Yk5AhNDck", openat) STUB("A8ZQAl+7Dec", sceFontGraphicsUndefineIndexedVertexesGlyph) +STUB( + "A8blQWiCUQw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEneERKS9_) +STUB( + "A8dkqjuAmmU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB( + "A8fKLdW9G7g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE21intrusive_ptr_add_refEPS9_) +STUB("A8fX5m6Lnrg", + _ZN15AbstractStorage13YoutubeFolder12RemoveFolderERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) +STUB("A8jAM22FYJI", delegate_virtual_invoke_imt_m_5_p) +STUB("A8kKNkL15Xc", _ZN3sce7Toolkit2NP2V210Tournament24OfficialBroadCastDetailsC1ERKS4_) +STUB( + "A8oC9VAr3kk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE7reserveEi) +STUB("A8qBzXjvXvg", _ZNK7WebCore29DeprecatedCSSOMPrimitiveValue13getFloatValueEt) +STUB( + "A8x8pPi6It0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEE11get_deleterEv) +STUB( + "A9-8YCZYqQA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEE7add_refEv) +STUB( + "A9-crOz1qBc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEC1EPS9_) +STUB( + "A91egLKEeUE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE4sizeEv) +STUB("A923XQeoiUY", _ZN7WebCore6JSNode14finishCreationERN3JSC2VME) +STUB("A98W3Iad6xE", _FPow) +STUB("A999naA-WaU", rgctx_fetch_trampoline_mrgctx_50) +STUB( + "A9AVsu9nD5s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("A9EgnsMJptg", _ZN12video_parser5vpcom3rtc14GetCurrentTickEPm) +STUB("A9MS1-aXvKI", _ZN7WebCore20PasteboardWriterDataD2Ev) +STUB("A9PfIjQCOUw", _ZTIPo) +STUB("A9Rgli5ycgw", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V110UpdateModeEEppEi) +STUB("A9Rtccia9-k", GCC_except_table379) +STUB("A9aDQi3tJMI", SSL_get_verify_result) +STUB( + "A9cHyHRzsao", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEppEv) STUB("A9cVMUtEp4Y", sceHttpInit) +STUB( + "A9fNqYz-JuA", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEiRNS2_10LibContextEPT_m) +STUB( + "A9iDTMAEXUk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB("A9l5kWscE7c", _ZN23sceMetadataReaderWriter10ParserInfoC1ERKS0_) +STUB("A9nYDf-VLMc", _ZN22MmsMdCommonFsOperation7isExistEPKc) +STUB( + "A9oxtTM68M8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEneERKS9_) +STUB( + "A9s6XDc3A8M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEaSERKSA_) +STUB( + "A9wWh6VTG0I", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEdeEv) +STUB( + "A9z3h7c6aIE", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSession12getaccountIdEv) +STUB( + "AA0B8Y2DjSY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("AA1a19bbBCA", monoeg_g_build_path) +STUB("AA4U9nG9L2E", _ZN7WebCore25DropShadowFilterOperationD2Ev) +STUB("AAAJ9J3BKC0", _ZN3JSC8Debugger11atStatementEPNS_9CallFrameE) +STUB( + "AAC+4PtFrJ4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEeqERKS9_) STUB("AACRJJP3Ntk", scePsmKitFontConfigGetFontName) STUB("AAELy8Yc3Mc", sceVideoOutSysGetVideoOutModeByBusSpecifier) +STUB( + "AAF5mye1stQ", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeaders15getCacheControlEv) +STUB( + "AAFBJl5Ds-U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEE11get_deleterEv) +STUB("AAHmHrXOtv4", curl_free) STUB("AAMM-Q1X0g0", sceVdecswSyncDecodeInput) +STUB("AAYzPG3rUm0", ucfpos_getIndexes_67) +STUB("AAaF-VPei4k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEC2ERS7_) +STUB( + "AAdM44gs+sQ", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setBoolean7ERKb) +STUB( + "AAePaoiXINE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE5clearEv) STUB("AAeX-U5-P3M", sceAgcGetDefaultCxStateFlat) STUB("AAj9X+4aGYA", sceNpWebApi2PushEventStartPushContextCallback) STUB("AAk6w60xP3A", sceSysUtilSendNotificationRequest) +STUB("AAkVf-cyiwM", _ZN3WTF21MemoryPressureHandler12setPageCountEj) +STUB("AAtXFGQUFSI", _ZN7WebCore6DOMURL8setQueryERKN3WTF6StringE) +STUB( + "AAvJDOcrMlc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEaSERKS9_) +STUB( + "AAw64sV5r7A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "AAxn2SfQwPw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEppEv) +STUB("AB+rgo-Be8M", il2cpp_method_get_token) +STUB("AB3cQg5BjjI", _ZN7WebCore16JSXMLHttpRequest6s_infoE) +STUB("AB6vv+EFfcY", _ZN12video_parser5vpcom13LwMutexUnlockEPNS0_11sys_lwmutexE) +STUB( + "AB6xGODZH3Q", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi21postGameSessionsTouchEiRKNS4_32ParameterToPostGameSessionsTouchERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_33PostGameSessionsTouchResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("ABAA2f3PM8k", CERT_getCertificateExtensions2) +STUB("ABFE75lbcDc", _ZNKSt7codecvtIwc9_MbstatetE6do_outERS0_PKwS4_RS4_PcS6_RS6_) +STUB("ABGu4YJvWPo", _ZTVN7WebCore11DisplayList9DrawImageE) +STUB("ABJ1OwHs4Gs", _ZN7WebCore9HTMLNames6insTagE) +STUB( + "ABOzgPdRQzQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEC1Ev) +STUB( + "ABPV-ztyxNw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEEC2Ev) +STUB("ABPW-f1l6DA", _ZNK7WebCore6Quirks32isNeverRichlyEditableForTouchBarEv) +STUB("ABPo0bt+Nvk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE4sizeEv) +STUB( + "ABUQqA5bYHQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("ABWYlIsfwbs", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersD1Ev) +STUB("ABXmJr6QytU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEmmEv) +STUB("ABcMO6bA+mw", WKProtectionSpaceGetPort) STUB("ABoN0o46u8E", sceUserServiceSetPbtcPlayTime) STUB("ABrTK2IVS4c", s_fixed_buf) +STUB("ABsB4dU5bGs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEC1Ev) +STUB( + "ABviRCi95IE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEE11get_deleterEv) +STUB("ABvprqer1Rc", monoeg_g_locale_to_utf8) +STUB("ABxyZgRkY3Q", _ZN7WebCore19JSHTMLSelectElement6s_infoE) +STUB("AC1tPOyDkpA", X509_STORE_CTX_set_error) +STUB("AC8zkXALCGI", _ZN3sce7Toolkit2NP26GetEntitlementsInputParamsC2Ev) +STUB("ACA4xhLZpL8", uset_containsAll_67) +STUB( + "ACBVjamxEzg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEC1EPS8_) +STUB("ACDE-7O1Y3w", _ZN7WebCore8SVGNames7in2AttrE) +STUB( + "ACDIMdOWuPs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("ACFqSfIdK+4", _ZNK7WebCore25DropShadowFilterOperation1xEv) +STUB("ACK9lJ9J0Mc", u_frewind_67) +STUB( + "ACNqdfSjzhQ", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions19unsetacceptLanguageEv) +STUB( + "ACUs2xgaCJU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEEC2ERSA_) +STUB("ACVeBkbSTvI", _ZN7WebCore4Page18setPageScaleFactorEfRKNS_8IntPointEb) +STUB("ACYbiKvILzo", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12string6IsSetEv) +STUB("ACazp+XQF6E", + _ZN3WTF14FileSystemImpl14MappedFileDataC1EiNS0_12FileOpenModeENS0_14MappedFileModeERb) +STUB( + "ACcs7VrpfKM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) STUB("ACdU2QH82O4", sceVisionManagerRequestClose) +STUB("AChB3w1OeOg", _ZN7WebCore4Node10childNodesEv) +STUB("AChVPl3pIiU", _ZN3JSC7Symbols17strikePrivateNameE) STUB("ACjtE27aErY", sceHttp2SetResolveTimeOut) +STUB("ACp9MXyxLHE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEE7add_refEv) +STUB( + "ACqovDHJ+tU", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("ACrEBIhoK-4", _Z38sceGpuDebuggerGetEnabledExceptionsMaskPKN3sce3Gnm16GsStageRegistersEPj) +STUB( + "ACuvQCQMe9Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEEC2ERKSA_) +STUB("ACv0fKVga70", _ZN7WebCore19makeMapBetweenRectsERKNS_9FloatRectES2_) +STUB("ACxv8BSIZ0Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEC2Ev) +STUB("AD1CfnQ+AME", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116InitialJoinStateEEppEv) +STUB("AD5eTVuK+Kg", mono_aot_Sce_Vsh_VoiceMsg_VoiceMsgWrapperplt) +STUB("AD8xxTzPA8k", utrans_transliterator_cleanup_67) +STUB("ADFCdtovp6c", YGNodeStyleGetMaxWidth) +STUB("ADJ0z1mfh6E", Java_java_util_zip_ZipFile_getNextEntry) +STUB("ADJhwBSHO08", _ZN8meta_gen14ImageRetriever10SetMetaValEii) +STUB("ADMEMW9fSoo", _ZN3sce7Toolkit2NP21SearchSessionsRequestC1Ev) +STUB("ADN8G76X6xg", RemoveMediaSource) +STUB( + "ADPAslgHs2A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEmmEv) +STUB("ADRmtP5lw0E", mono_aot_System_Reactive_Interfacesplt_end) +STUB("ADSvTqX7Moc", _ZN3JSC7WeakSet13findAllocatorENS_13CellContainerE) +STUB("ADTgfxLGqGA", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredUsersEED1Ev) +STUB("ADTnzMsi2Q8", ucase_toupper_67) +STUB( + "ADdZTu2bkH4", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB( + "ADeudk4Bzuw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEE7get_refEv) +STUB( + "ADjx3dMFpvk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE10setContextEPNS2_10LibContextE) +STUB( + "ADkNGpuG9ls", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "ADmGlXt8-aw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEED2Ev) +STUB( + "ADpTJaSPA1U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEEC2EPS8_PNS2_10LibContextE) +STUB("ADsMyXKjHVo", glUseProgram) +STUB( + "ADtNcliBWn4", + _ZNK3sce2Np9CppWebApi14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBody16invitationsIsSetEv) +STUB("ADwmp-WX02I", _ZNK7WebCore20FontAttributeChanges10editActionEv) STUB("ADzErLRX1EY", sceSdmaClose) STUB("AE+mHBHneyk", sceUsbdClaimInterface) +STUB("AE-QTunoIMw", _ZN3sce7Toolkit2NP2V210Tournament15TeamVsTeamMatchaSERKS4_) +STUB("AE0LDB81R4A", + _ZN3sce2Np9CppWebApi7Matches2V122RequestMatchStatisticsC1EPNS1_6Common10LibContextE) +STUB("AE3ED2J8pcE", _ZN3sce3pss5orbis5video15VideoPlayerBase19GetBufferedPositionEPmS4_) +STUB("AE70osJu+C0", _ZN12video_parser18cMp4FFLHndlManager10initializeEjj) +STUB( + "AEBGIMm4--I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEEC2Ev) +STUB( + "AECN-LFmkEQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "AEDq89Ed2Es", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEE11get_deleterEv) +STUB("AEFrp8kHkko", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setSecondaryVideoStream) +STUB("AEG-wbnO1Yc", _ZN7WebCore4Page45setOutsideViewportThrottlingEnabledForTestingEb) +STUB("AEJdIVZTEmo", qsort) +STUB( + "AEM867ca3rk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEneERKS9_) +STUB("AEPvEZkaLsU", iswpunct) +STUB("AEU2tkjdZ2w", ft_glyphslot_set_bitmap) +STUB( + "AEU6igJoMe4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE6resizeEj) +STUB("AEXbZaoPfsE", _ZN3sce2Np9CppWebApi7Matches2V118RequestMatchPlayerC2EPNS1_6Common10LibContextE) +STUB( + "AEc1ALvyOGI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEC1EPKS8_) +STUB("AEf6cGMJ5Fg", JSScriptRetain) +STUB("AEnBqqmNJBA", _ZN9Inspector28PageBackendDispatcherHandlerD0Ev) +STUB( + "AEoKYgVhNvs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEE7get_refEv) +STUB("AEqxJxKr8BI", + _ZN3JSC14StructureCache32emptyObjectStructureConcurrentlyEPNS_14JSGlobalObjectEPNS_8JSObjectEj) +STUB( + "AEscOX7vUQE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE5beginEv) +STUB("AEt7ZxxKEXs", _ZN3sce7Toolkit2NP2V24Core8ResponseINS3_18CustomResponseDataEE5resetEv) +STUB("AEuF3F2f8TA", fgetc) +STUB( + "AEvisHb9+lM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEaSERS7_) +STUB("AExYkCj1R2Q", _ZN7WebCore6Editor13rangeForPointERKNS_8IntPointE) +STUB( + "AEy6ZzuUueM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEdeEv) +STUB( + "AF2LJAg8tDE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEC1Ev) +STUB("AF4z1EF54tQ", _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession14setSearchIndexEPKc) +STUB( + "AFAvE2Ct-AU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEEcvbEv) +STUB( + "AFC0qOYxC0k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE7reserveEi) STUB("AFIh8SQkYlQ", sceAgcDcbSetIndexIndirectArgsGetSize) +STUB("AFLa8IFxjsQ", _ZNK7WebCore9FloatSize6isZeroEv) +STUB( + "AFQbaVsXCOg", + _ZN9Inspector33ApplicationCacheBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("AFRL2fNOmeI", _ZStL8stdopens) +STUB("AFRS4-8aOSo", __atomic_fetch_or_4) +STUB( + "AFS8TOg4RX0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEE3getEv) +STUB("AFTj0YTrafE", _ZN3sce7Toolkit2NP2V27Session9SessionIdC1ERKS4_) +STUB("AFaKHX-zKCY", WKContextConfigurationSetApplicationCacheDirectory) +STUB("AFeZCFKJd3k", + _ZN7WebCore19ResourceRequestBase18setHTTPHeaderFieldENS_14HTTPHeaderNameERKN3WTF6StringE) +STUB( + "AFieW8+VQ2M", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("AFmlCEskx-Y", unumsys_open_67) +STUB("AFs8wZ7wnJQ", _ZN7WebCore11DisplayList11SetLineDashD2Ev) +STUB( + "AFvShtQzn4o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEC2Ev) +STUB("AG+9iB+spSc", _ZN3JSC7Symbols16matchPrivateNameE) +STUB( + "AG-QqgxMp2g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE5clearEv) +STUB("AG-xi62BJTU", _ZN7WebCore9FrameView17setTracksRepaintsEb) +STUB("AG7ICWq3N8w", WKRenderLayerCopyRendererName) +STUB( + "AG9xveT2ycg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEEC1ERKSA_) STUB("AGDKupLjTZM", sceUserServiceGetTeamShowAboutTeam) STUB("AGGtsVQ78ZE", sceNpGriefReportCreateClient) +STUB("AGKZYfPNw+8", uloc_getParent_67) +STUB("AGKwwvvvs4E", + _ZN7WebCore11FrameLoader21loadURLIntoChildFrameERKNS_3URLERKN3WTF6StringEPNS_5FrameE) STUB("AGLBmvVgdZ8", sceNpSessionSignalingGetGroupFromPeerAddress) STUB("AGLEZbbzOLo", sceFsSetSystemReserveSize) +STUB( + "AGPy4NWEbLg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("AGRCZPRMOC0", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15ErrorD1Ev) +STUB( + "AGRMu3YUrjc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEmmEv) +STUB("AGYntkLfXCc", + _ZN3sce7Toolkit2NP2V27Session4joinERKNS3_7Request4JoinEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("AGadQiCfKDY", _ZN3sce2np10JsonParser4InitEPK7JsonDefPNS1_12EventHandlerE) +STUB("AGeGu39H7mY", Java_com_sony_gemstack_org_dvb_application_AppProxyImpl_n_1getMaster) +STUB( + "AGi70O2EYMI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEED1Ev) STUB("AGnsy1zV34o", sceLncUtilEnableSuspendNotification) +STUB( + "AGuyqZCsSMw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "AH+ojxZTVOk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB("AH+tO9m5m0c", _ZNSbIwSt11char_traitsIwESaIwEE7replaceEmmPKwm) +STUB( + "AH3VNMiD9Wo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEeqERKS9_) +STUB("AH7kRAoG-lA", __tsan_atomic128_compare_exchange_weak) +STUB("AH8sEAQe3Ts", _ZN7WebCore11DisplayList18DrawFocusRingRectsD2Ev) +STUB("AHBGzWbT2ZI", _ZNK3JSC7JSValue20toIntegerPreserveNaNEPNS_9ExecStateE) +STUB( + "AHBdzg35YWw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEEC1Ev) +STUB( + "AHGWRrr1tM4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEED0Ev) +STUB("AHHNgiEhbn4", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISbIcSt11char_traitsIcENS2_IcEEEE7destroyEPS6_) +STUB("AHICm1sKo90", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE8copyFromERKS6_) +STUB( + "AHLxkKjFUpE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "AHMxTVY3szY", + _ZN3sce2Np9CppWebApi14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyC1EPNS1_6Common10LibContextE) +STUB("AHNKaOCthAE", _ZN4IPMI7SessionD2Ev) +STUB("AHQCPhF-LZI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEixEm) +STUB( + "AHTpMEo172c", + _ZN3JSC4Yarr11byteCompileERNS0_11YarrPatternEPN3WTF20BumpPointerAllocatorERNS0_9ErrorCodeEPNS3_4LockE) +STUB( + "AHah8J-i2EI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEEC1ERSA_) +STUB("AHb8b9f-fJc", preinit) +STUB( + "AHfgVI3iTzw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEC1EPS6_PNS2_10LibContextE) +STUB("AHh5pwgAikE", mono_aot_System_Windowsplt) +STUB( + "AHhwBZMuARg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEC2EPS8_) +STUB("AHmW2IKU5HY", _ZN7WebCore21DiagnosticLoggingKeys11inactiveKeyEv) +STUB( + "AHp-DNo-04c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEC1Ev) +STUB( + "AHpaHscjI8Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEE11get_deleterEv) +STUB("AHxyhN96dy4", ferror) +STUB("AI-INyhOZ6w", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_16NetStateDetailedEEC2Ev) +STUB("AI1aDzdpDTk", _ZN7WebCore14CredentialBaseC2ERKN3WTF6StringES4_NS_21CredentialPersistenceE) +STUB( + "AI2eQ8UT+KE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE7popBackEv) +STUB("AI6mDpNxPYk", _ZNK3sce3Xml3Dom8Document13getChildNodesENS1_6NodeIdEPNS1_8NodeListE) +STUB( + "AI7f7ZfbyAk", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer28hasxPsnAcceptPlatformNamePs5Ev) +STUB( + "AI8nq0bwsKg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("AIDhc3KCK7w", _ZN3sce2np9WorkQueueD2Ev) +STUB("AIG2nY8Ppyg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V120PlayerJoinableStatusEEC1EPS6_) +STUB("AIJaxwKOFM8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEEC2ERS7_) +STUB( + "AIJfF-npXdE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE6resizeEj) +STUB("AIL6Gy411DE", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_16SessionAttributeEEC1Ev) +STUB("AIMCjPPVWZM", _ZN3sce2np8NpTicketD1Ev) +STUB("AIOn++bTCGY", WKRenderLayerIsReflection) +STUB( + "AIQR4t8O-lY", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_19ProductInfoDetailedENS1_15AppSTLAllocatorIS5_EEEED1Ev) +STUB( + "AIWkUptoXFE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("AIa9v9Xc6SY", _ZN3sce7Toolkit2NP2V26Trophy16UnlockedTrophiesC1ERKS4_) STUB("AImiaYFrKdc", sceAudioOutStopAuxBroadcast) +STUB( + "AIo2+FOIoZA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEC1Ev) +STUB( + "AIr6VaENo3Y", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("AIsLh7n-7oc", _ZNK7WebCore4Node18lookupNamespaceURIERKN3WTF12AtomicStringE) +STUB( + "AItEva+Cvhg", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer34setxPSNSESSIONMANAGERREQUESTORIGINEPKc) +STUB( + "AIwWvEWA9ys", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEixEm) STUB("AJ3xhNOXs-A", sceVideoCoreInterfaceGetCanvasVideoBufferAddress) +STUB("AJ7+0UjKEww", _ZN3WTF7Unicode19convertLatin1ToUTF8EPPKhS2_PPcS4_) +STUB("AJDnHmUH1zw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEC1Ev) +STUB("AJGCoChPP4E", _ZNSt9_FacetptrISt5ctypeIwEE6_PsaveE) +STUB("AJH5ShL-Kro", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEmmEv) +STUB("AJHz2Jpq0IU", _ZN7WebCore11MathMLNames4initEv) STUB("AJP3sETFdTI", sceCesMbcToUtf32) +STUB( + "AJRnU0Zod6c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEC1Ev) +STUB("AJRtFc+0VnA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEED2Ev) +STUB("AJUoYP9LJZI", GCC_except_table362) +STUB("AJX1HNQC45E", unorm2_getNFCInstance_67) +STUB("AJZG-TPbDC4", fuse_fs_flush) +STUB("AJq7lcfI+d8", Java_java_net_PlainSocketImpl_initProto) +STUB("AJqdktmWMrI", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312AccountIdMapC2EPNS1_6Common10LibContextE) +STUB("AJsqpbcCiwY", _ZTVSt8ios_base) +STUB("AJtHsjp5DCI", mspace_destroy) +STUB("AJtrVOudVB4", unorm2_isInert_67) +STUB("AJwcRGNkaWg", _ZN3sce7Toolkit2NP2V27Ranking7Request15GetRangeOfRanksC1Ev) +STUB( + "AJxQgAlbVqs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEixEm) +STUB("AK1Vjnd7Yuk", _ZNK7WebCore4Node18nextElementSiblingEv) +STUB( + "AK1gjkE4cf0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEE21intrusive_ptr_sub_refEPS7_) +STUB( + "AK3YfD2zNMM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE5beginEv) +STUB("AK7Q1jOwZQo", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEED1Ev) +STUB( + "AKAuczLoOv0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEE5resetEPS6_) +STUB("AKBLI5PUwRY", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_28AdditionalSessionInformationEEC1Ev) +STUB("AKCR+0T+VSo", delegate_virtual_invoke_imt_m_10_p) +STUB( + "AKCvSvrjbaM", + _ZN7WebCore16BlobRegistryImpl27populateBlobsForFileWritingERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEERNS2_INS0_18BlobForFileWritingELm0ES4_Lm16ES5_EE) +STUB( + "AKHnxKT5BSw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEeqERKS9_) +STUB("AKL3tIrm1WU", _ZN3sce7Toolkit2NP30DetailedProductInfoInputParamsC1Ev) +STUB( + "AKUj0jPxg4g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEEC2Ev) +STUB( + "AKWwyYGqMtE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEEC2ERSA_) +STUB( + "AKYiy2Xn9dY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEC1Ev) STUB("AKZOzsb9whc", sceNetCtlApGetState) +STUB("AKduh-C7Ukw", WKRenderLayerGetPositiveZOrderList) +STUB("AKenFQbXGE0", ucnv_open) +STUB( + "AKfepwUvqIQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "AKgtbB2LWnk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEplEm) +STUB("AKiHGWhC2KU", _ZN3sce2np4CondD0Ev) +STUB("AKknh8Cx-V8", chroot) +STUB("AKpVSHUv0kc", WKBundleFramePauseTransitionOnElementWithId) +STUB("AKtZZ6Nu4wE", ucnv_bld_getAvailableConverter_67) +STUB("AKuB8V85ONQ", vzone_clone_67) +STUB( + "AL8GZoLsaS8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("ALB8UQSCLO8", _ZN3sce7Toolkit2NP27ChallengeGetItemListRequestC2Ev) +STUB("ALDJM2eel7E", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer12getdirectionEv) +STUB( + "ALEXgLx9fqU", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERl) +STUB("ALF3slG1nek", _ZN3JSC7Symbols25getThenFinallyPrivateNameE) +STUB( + "ALGQovVNKX8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEE5resetEPS9_) +STUB("ALGgrOH5g2g", ucnv_setSubstString_67) +STUB( + "ALGvYerBhPM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEEC1ERKSA_) +STUB("ALJjoV2HGrE", _ZL12ext_once_mtx) +STUB( + "ALQO24RYUVM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEppEi) +STUB("ALQqwDoJ6jo", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_21GameCustomDataMessageEE3getEv) +STUB("ALRqpSN31Vo", _ZN7WebCore12TextIterator8subrangeERNS_5RangeEii) +STUB("ALWBDkbvEF4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEEC1EPNS2_10LibContextE) +STUB( + "ALYkgZLowIY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEE7add_refEv) +STUB("ALZurOIZhys", YGNodeStyleSetDirection) +STUB("ALcclvT4W3Q", _ZTSSt10bad_typeid) +STUB("ALe7rCExPJ8", mono_aot_Sce_Vsh_Themejit_got) +STUB("ALj-caXHUZI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12FriendsRanksEED1Ev) +STUB( + "ALkslfocTfo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEEptEv) +STUB("ALmke7OyDYg", _ZTVN15AbstractStorage6FolderE) +STUB("ALqVlwdQJpI", _ZN7WebCore10protocolIsERKN3WTF6StringEPKc) +STUB( + "ALsadtzQI4Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB("ALtdQuwSy0A", _ZN3WTF4SHA111computeHashERSt5arrayIhLm20EE) +STUB("ALvv8s83TW0", mono_aot_System_Runtime_Extensionsjit_code_end) +STUB( + "ALyXkBnc9GE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEEC1EPS9_PNS2_10LibContextE) STUB("ALyjUuyowuI", sceUserServiceSetThemeEntitlementId) +STUB("AM+vFcFw6Uw", _Z38sceGpuDebuggerSetEnabledExceptionsMaskPN3sce3Gnm16PsStageRegistersEj) +STUB("AM5dbXp3qbI", __sanitizer_start_switch_fiber) +STUB("AM96SgGkDdk", _ZN3sce7Toolkit2NP2V210Tournament5EventC2Ev) +STUB("AMBQxmX0PhE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEaSERS7_) +STUB("AMBk3-1ITHg", _ZN7WebCore8SVGNames16writing_modeAttrE) +STUB("AMBngNURvqs", __asan_get_report_sp) +STUB("AMDhfKJMQNw", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product10mediaIsSetEv) +STUB("AMHAc7Xpl1M", pio2_2thi) +STUB("AMLRfnzY1CU", WKBundleBackForwardListItemHasCachedPageExpired) +STUB("AMMz7TNLoDg", _ZN3sce7Toolkit2NP2V28Commerce7Request29DisplayVoucherCodeInputDialogC1Ev) STUB("AMNjai0JfVU", sceCesEucCnToUtf8) +STUB( + "AMNnCzp468w", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer15hascontainerIdsEv) +STUB( + "AMSF4v-jW3s", + _ZN3sce2Np9CppWebApi14SessionManager2V130PostPlayerSessionsResponseBody17setPlayerSessionsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_13PlayerSessionEEEEE) +STUB("AMUIydtUy7w", _ZN7WebCore7JSRange14finishCreationERN3JSC2VME) +STUB( + "AMW6dGp3ShU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEmmEi) +STUB("AMXD4SYEIIg", _ZN7WebCore12ISOWebVTTCueD0Ev) +STUB("AMdSKZsUnXc", _ZN3JSC7Symbols20polyProtoPrivateNameE) +STUB( + "AMev43YercI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE8pushBackERKS8_) +STUB("AMhoOLgG9e8", _ZN9Inspector18InjectedScriptBaseD2Ev) +STUB( + "AMjoZ5aN1ac", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V135FrequentlyMutedInGameMetricsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_28FrequentlyMutedInGameMetricsEEE) +STUB( + "AMp4pBvfw4I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEC1ERS7_) +STUB("AMrPlFNJec8", WKSessionStateCreateFromData) +STUB("AMvdjcTxfbs", _ZNK7WebCore11MediaPlayer19mediaCacheDirectoryEv) +STUB( + "AMzjf2brlcw", + _ZN15AbstractStorage13TwitterFolder9NewFolderERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_6FolderEE) +STUB("AN-Y1GUW+Sg", _ZN7WebCore18ScrollingStateNode8setLayerERKNS_19LayerRepresentationE) +STUB("AN23iFa9vBo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEED1Ev) STUB("AN3h0EBSX7A", sceNpSignalingGetConnectionInfo) +STUB("AN4y+K+3-jU", __ubsan_handle_nullability_arg) +STUB( + "ANB19+6-3fg", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "ANGGvNOMOLQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "ANJDc6rDFyI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEppEv) STUB("ANJssPz3mY0", sceNpScoreRecordScoreAsync) +STUB( + "ANKAIU4TdHc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEaSERS7_) +STUB("ANKg0lF2VSc", mono_domain_finalize) +STUB( + "ANM9x4eJJKU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE5emptyEv) STUB("ANOe9iuJbWQ", sceMusicFwSkipPrevious) +STUB("ANRxBkkTRPg", _ZNK7WebCore9FrameTree12traverseNextEPKNS_5FrameE) +STUB("ANSEMiIMnOM", _ZN7WebCore4Page19userContentProviderEv) +STUB( + "ANW-ywnsY2w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEED1Ev) +STUB( + "ANWUVFX6N1o", + _ZN3sce2Np9CppWebApi14SessionManager2V129GetPlayerSessionsResponseBody17setPlayerSessionsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_20PlayerSessionForReadEEEEE) +STUB( + "ANWadiC8rwE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEmmEv) +STUB( + "ANau5pziTAM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("ANdfelUexnk", _ZN3WTF10StringImpl31convertToLowercaseWithoutLocaleEv) +STUB( + "ANiu7HG0epU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("ANjtSxtdCso", _ZN3JSC12DateInstance7destroyEPNS_6JSCellE) STUB("ANmSWUiyyGQ", sceSaveDataGetProgress) +STUB("ANq4kcABc7A", _ZN3WTF3URLC2ERKS0_RKNS_6StringEPKNS_15URLTextEncodingE) +STUB("ANrzcyJG20E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V124RequestCooperativeResultEEC1EPS6_) +STUB("ANxMqv1m5ro", _ZN3JSC2VM19intlLocaleSpaceSlowEv) +STUB("ANxd0w7UNUQ", + _ZN8meta_gen11MsvPromoter18setDateMsvMetadataENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB("ANz-ClqTX+4", _ULx86_64_step) +STUB( + "AO+RQ7YWnXA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE4sizeEv) +STUB("AO+obtY0fJY", _ZN3JSC38NonExtensibleObjectPropertyDefineErrorE) +STUB("AO-FLhen3zw", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11TusVariableEEC1Ev) +STUB("AO0LHG1yvPw", _ZN7WebCore18TextureMapperLayer19setContentsTileSizeERKNS_9FloatSizeE) +STUB( + "AO2kbZXvITs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEC1EPS8_) +STUB("AO8OudSSOFo", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEEC1Ev) +STUB( + "AOD7rmu2xPY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE3endEv) +STUB( + "AOH5nX-W+Xo", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlot13isInitializedEv) +STUB("AOHUfTGOH-4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEC2Ev) STUB("AOLcoIkQDgM", sceAgcDriverQueryResourceRegistrationUserMemoryRequirements) +STUB("AOQXgGyoOJw", _ZN7WebCore9HTMLNames8abbrAttrE) +STUB( + "AOVzug96SLU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEEptEv) STUB("AOWqIYsgVHs", sceContentExportFromData) +STUB( + "AOXCKofywTM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEppEi) +STUB( + "AOdcDUU4SyM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEC1Ev) +STUB( + "AOdeefsS1Js", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("AOojoKFjiQY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEE7add_refEv) +STUB( + "AOpNUQ7Ah1c", + _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container21setContentDescriptorsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_17ContentDescriptorEEEEE) +STUB( + "AOtCFXbt6og", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE8capacityEv) STUB("AOujSGqU+ms", sceFiosFHCloseSync) +STUB( + "AOw2gfsSN-8", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetInteger9Ev) +STUB( + "AOwtjDAmCB8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "AP+sL-J1zSQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE5beginEv) +STUB("AP3uK6E-25s", __tsan_atomic128_fetch_sub) +STUB("AP4g3QKWeFg", WKHTTPCookieStoreSetHTTPCookieAcceptPolicy) +STUB( + "AP5LzDEfb1g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "AP70azXJdj0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEeqERKS9_) +STUB("APAcjNNVeDQ", jpeg_start_decompress) +STUB("APE85iQ98s8", _ZNK3sce2Np9CppWebApi7Matches2V17Subtask6toJsonERNS_4Json5ValueEb) +STUB( + "APJtOdfJvlw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEE3getEv) +STUB( + "APKVz7tDrWA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "APP6PNgxyIA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEE3getEv) +STUB( + "APPFgVM2CdU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "APQAGXZ6pIw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEC1Ev) STUB("APTXePHIjLM", sceFontGraphicsAppendGradientSegment) +STUB( + "APXMNs2+0I0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEptEv) +STUB( + "APc0Mmlyu5I", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEEcvbEv) +STUB("APeZW7E9trc", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament6EventsEE3setEv) +STUB("APjMbicny1Q", glFinish) +STUB("APmhwAq4gf8", ssave) +STUB("APozXwT-c+I", shmdt) +STUB("APqGFOC7Upo", _ZN7WebCore3URLC2ERKS0_RKN3WTF6StringE) +STUB("APrAh-3-ICg", _ZTVSt10moneypunctIwLb1EE) +STUB("APswSWmsPg4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEEppEv) STUB("APuq-SZJRo8", sceDataTransferTargetRequestLaunch) STUB("AQ680L4Sr74", sceUserServiceSetIsRemotePlayAllowed) +STUB( + "AQAM5h9zq5Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEC1Ev) +STUB( + "AQBadyACkJc", + _ZN7WebCore22EmptyFrameLoaderClient41dispatchDidReceiveAuthenticationChallengeEPNS_14DocumentLoaderEmRKNS_23AuthenticationChallengeE) +STUB("AQL3jxrBaOI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEEixEm) +STUB("AQPe-ArsI6M", + _ZN3sce7Toolkit2NP2V28Presence7Request11SetPresence28MAX_SIZE_DEFAULT_GAME_STATUSE) +STUB("AQTcevtsafI", + _ZN7WebCore31BasicColorMatrixFilterOperation6createEdNS_15FilterOperation13OperationTypeE) STUB("AQV4A8YFx44", sceNpAppLaunchLinkIntAbortRequest) +STUB("AQbiF0Fxboc", g_UseAudio3dBackend) +STUB("AQgbLb+eZ2M", _ZN3JSC44UnconfigurablePropertyChangeWritabilityErrorE) STUB("AQkj7C0f3PY", sceNgs2SystemResetOption) +STUB("AQlqO860Ztc", _ZTSN10__cxxabiv120__si_class_type_infoE) +STUB("AQsAMoRBkLE", _ZN12Mp4Retriever14mp4DbFieldInfoE) +STUB("AQyiYChNI0c", _ZN3sce2np8NpCommIdC1Ev) +STUB( + "AQysrLpIvus", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEC2EPKS8_) +STUB( + "AR-xO5Kpgeo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEixEm) +STUB("AR9ZlkEfHkc", _ZN7WebCore9TimerBaseD2Ev) +STUB( + "ARB9Id4Go9o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE7popBackEv) +STUB( + "ARCruLmoSYw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEmmEv) +STUB("AREt+4e0IIM", YGNodeStyleGetJustifyContent) +STUB("ARGN7-Aio+g", _ZN3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsSearchRequestBodyD2Ev) +STUB("ARGWfG7+2CQ", _ZN3sce7Toolkit2NP2V24Core7Request20DefaultRequestParamsC2Ev) +STUB("ARQuup8gtks", _ZNK7WebCore11JSDOMWindow5eventERN3JSC14JSGlobalObjectE) STUB("ARS+TNLopyk", sceGnmSqttGetWritebackLabels) +STUB("ARU2nmAcaKI", + _ZN3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator16setJoinTimestampEPKc) +STUB("ARVl0+Yjsd4", _ZN3sce7Toolkit2NP2V211SharedMedia9BroadcastC2Ev) +STUB("ARZszYKvDWg", _ZNKSt7_MpunctIcE16do_positive_signEv) STUB("ARai7ZRDpHs", sceTsSetAvailableBW) +STUB("ARcyRMoScR8", _ZN3WTF12AtomicString16fromUTF8InternalEPKcS2_) +STUB("AReNPwiiL3Q", Java_java_io_FileInputStream_initIDs) STUB("ARhgpXvwoR0", sceVrTrackerGpuWaitAndCpuProcess) +STUB("ARjjKibRs0A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEE3getEv) +STUB( + "ARk0TecFxk0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEmmEv) +STUB("ARlY6zhSacE", BIO_new) +STUB( + "ARmCwlQ6pH4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEppEi) STUB("ARowrgmuN94", sceDebugReadThreadRegister) +STUB("ARrbEsbHQlI", _ZN7WebCore21DiagnosticLoggingKeys28canceledMoreThan20SecondsKeyEv) +STUB("ARuPIlCJ1zA", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody17getNpServiceLabelEv) +STUB( + "AS1ADdtdIsM", + _ZN9Inspector25TimelineBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("AS1AsnCMEQo", _ZN7WebCore8SVGNames21stroke_dashoffsetAttrE) +STUB( + "AS1rCnSRF1g", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE8sendDataEPKvm) +STUB("AS45QoYHjc4", _Z5dummyv) +STUB("ASCvvxlvfMc", _ZN3sce2Np9CppWebApi14SessionManager2V16FriendC1EPNS1_6Common10LibContextE) +STUB("ASEeRny5+-8", _Z24receiveIpmiDisconnectResiPi) +STUB("ASH2Xwo63xM", _ZNK7WebCore5Range4textEv) +STUB("ASKQRVIwzl4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEEixEm) +STUB( + "ASKjjqIa4a0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEaSERS7_) +STUB( + "ASLp3rG5ce8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEE7get_refEv) +STUB("ASUJmlcHSLo", _ZNSt11regex_errorD0Ev) +STUB("ASURmjcE44E", _ZNK3sce2Np9CppWebApi14ConnectAccount2V214PSNError_error14getReferenceIdEv) STUB("ASUric-2EnI", sceGnmSqttSetTraceBuffers) STUB("ASVb7Y-pR4Y", sceKernelSandboxPath) +STUB( + "ASXpsyCEU2A", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB( + "ASXvzCPdypc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEaSERKS8_) +STUB("ASaQoxJfvKs", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V113SubtaskStatusEEC1EPS6_) +STUB("AScfeiXP3kk", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119SubtaskAvailabilityEEmmEi) +STUB("ASfhwEyh1cI", _ZN7WebCore22CanvasRenderingContext5derefEv) +STUB("ASk3zod9RiY", u_charDirection_59) +STUB("ASltWpUx6Zg", _ZN3WTF8JSONImpl5Array6createEv) +STUB( + "ASnQgOs+RIo", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13boolean6IsSetEv) STUB("ASoW5WE-UPo", sceKernelAprSubmitCommandBufferAndGetResult) STUB("ASonnwltwEk", sceNpAppInfoIntCheckAvailabilityA) +STUB("ASpOjs5DfLM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEED2Ev) +STUB( + "ASpxuSqg9dE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "ASqMHFuTF50", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE21intrusive_ptr_add_refEPS9_) STUB("AT0TAY74nQw", sceSlimglServerSetupGetDomainSocket) STUB("AT6NySjQ2gY", sceLoginMgrServerCreateUser) +STUB("AT9BnSw1bsQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEC2ERKS7_) +STUB("ATCtfvLzY5E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEC1ERKS7_) +STUB( + "ATJNKevSqi4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEE11release_refEv) +STUB("ATJaPHE0IC0", WKContextConfigurationSetWebProcessPath) +STUB("ATKLe+rQEMM", _ZNK3JSC2VM19vmEntryGlobalObjectEPKNS_9ExecStateE) +STUB("ATOg2BQlWBY", __asan_report_load4_noabort) +STUB("ATPVUw7-QEM", _ZN7WebCore13HitTestResultC2ERKNS_10LayoutRectE) STUB("ATRGkmbolVM", sceVoiceQoSEnd) +STUB( + "ATRUUclaAqw", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetInteger1Ev) +STUB( + "ATTJa+W3c84", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEE7get_refEv) +STUB( + "ATW2xBGlLXA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEE11get_deleterEv) +STUB("ATYj6zra5W0", _ZNKSt5ctypeIwE10do_tolowerEw) STUB("ATdq3mGwqqU", sceVideoStreamingEngineMediaKeySystemAccessGetKeySystem) +STUB("AThB5CvMing", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEptEv) +STUB( + "ATjJU3U3E-E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEmmEv) +STUB("ATlsETVPp4g", mono_image_open) +STUB("ATpTPg64JhM", _Wctombx.initial) +STUB("ATqkQdniUJk", mono_aot_Sce_PlayStation_HighLevel_UI2Platformjit_got) +STUB( + "ATsAcZ29TIE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEC2EPS8_) +STUB( + "ATu+X2YWJSw", + _ZN3sce2Np9CppWebApi14SessionManager2V124GameSessionMemberForRead13setSpectatorsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_20GameSessionSpectatorEEEEE) +STUB( + "ATy-kHngKaM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEC2Ev) +STUB("AU2gZbRq+XY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE5emptyEv) +STUB("AU5+XoLXqFc", _ZN7WebCore14JSWebAnimation15subspaceForImplERN3JSC2VME) +STUB("AU6pxhbAexg", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V115NatConnectivity11unsetGlobalEv) +STUB("AU7CH6OFMb4", _ZN7WebCore22identifierToByteStringERN3JSC9ExecStateERKNS0_10IdentifierE) STUB("AU87qNukGi4", sceAgcDriverSetWorkloadStreamInactive) +STUB("AUCJoipMdAY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEmmEv) +STUB( + "AUDPBckmkfg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("AUHMFmvHx08", mono_debug_symfile_lookup_locals) STUB("AUIHb7jUX3I", sceNpUniversalDataSystemDestroyHandle) +STUB("AULWgkh4sn4", _ZTVN7WebCore6ISOBoxE) +STUB( + "AUP5MRpNXLs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEmmEi) +STUB("AUQ+0l3kKz0", _ZN3sce7Toolkit2NP2V210Tournament6EventsD1Ev) STUB("AURXo5jFRu0", sceHidControlGetJediExtensionUnitInfo) STUB("AUVfU6byg3c", sceNpMatching2KickoutRoomMember) +STUB( + "AUVq5kL5XFk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEEcvbEv) +STUB("AUW6at2PxHs", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12BlockedUsersEE3getEv) STUB("AUXVxWeJU-A", sceKernelUnlink) +STUB("AUXrEfs0cTo", + _ZN3sce7Toolkit2NP11UserProfile9Interface11getPlatformEPNS1_9Utilities6FutureIiEEb) STUB("AUYdq63RG3U", sceLibcPafMspaceTrim) +STUB( + "AUYtRH+dtMQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEE11release_refEv) +STUB("AUbtwPEbmXo", kmq_timedreceive) +STUB("AUcgHfu+700", _ZN7WebCore11ImageBufferD2Ev) +STUB("AUgku96mkGc", _ZN7WebCore20HTMLTableCellElement8setScopeERKN3WTF12AtomicStringE) +STUB("AUjbNpPv8xk", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEEptEv) +STUB( + "AUkgSifPWfE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE8pushBackERKS8_) +STUB("AUla1en6inE", strtof.fpi0) +STUB( + "AUlln5em9R8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEED2Ev) +STUB("AUn2aRDId28", WKWebsiteDataStoreConfigurationCopyCacheStorageDirectory) +STUB( + "AUn539IKYCk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEptEv) +STUB("AUoChK8Xsus", vm_send_CreateDomain) +STUB("AUqJNkobQ1c", physhm_unlink) +STUB("AUqKSgnOwRc", _ZN9Inspector29AuditBackendDispatcherHandlerD1Ev) +STUB( + "AUrZewA40Vo", + _ZN7WebCore11ImageBuffer6createERKNS_9FloatSizeENS_16ShouldAccelerateENS_20ShouldUseDisplayListENS_16RenderingPurposeEfNS_10ColorSpaceEPKNS_10HostWindowE) +STUB("AUs1-hnmHdA", __cxx_global_var_init .28) +STUB("AUskqPkbmT4", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead21unsetSearchAttributesEv) +STUB("AUt1u0HvSCI", JVM_GetMethodIxByteCode) STUB("AUuzKQIwhXY", sceNpManagerIntAbortRequest) +STUB( + "AUwpb5r0tJw", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26RecordScoreResponseHeaders26unsetXPsnAtomicOperationIdEv) +STUB("AV+hAwHmjd4", _ZN3sce7Toolkit2NP2V27Session7SessionC2Ev) +STUB( + "AV20HPic28M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("AV5jHo8O3+E", _ZN3sce2np10EventQueue7EnqueueEPKvmj) +STUB("AV6ipCNa4Rw", strcasecmp) +STUB( + "AV7-okeR0Ys", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEmmEi) +STUB( + "AVAGLuOnhm4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEE7add_refEv) +STUB("AVBWiTSDdMg", _ZN3JSC19HeapSnapshotBuilder34resetNextAvailableObjectIdentifierEv) +STUB("AVEEb57HhUw", FT_Glyph_Transform) +STUB("AVEvkhr0OO4", mono_get_exception_appdomain_unloaded) +STUB("AVGpTCwrL5U", _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEED2Ev) +STUB("AVK5pOlvnc4", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13boolean1IsSetEv) +STUB("AVNqVT39rEA", _ZTVN9Inspector32TimelineBackendDispatcherHandlerE) +STUB("AVNvDtVEYxA", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setInteger5ERKi) +STUB( + "AVd1Vw6lLLs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEC2EPS8_) +STUB("AVhyz3DmAWc", utrans_unregisterID_67) STUB("AVr6AKXGc0M", scePadVrControllerGetTriggerEffectStates) +STUB( + "AVrK9o8vZcY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("AVskck6Ei5A", _ZN3sce3Xml3Dom8Document12setAttrValueENS1_6NodeIdEPKNS0_6StringES6_) STUB("AVtf1JiYnQI", sceHidControlDisconnectHandle) +STUB("AVydhxF55z0", ucnv_unloadSharedDataIfReady_67) +STUB("AVyuvygnd0w", SystemDialogOpen) +STUB("AW42cyp174Q", rgctx_fetch_trampoline_mrgctx_125_p) +STUB( + "AWDXFOS7zq8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEE7get_refEv) +STUB( + "AWF7N--deiQ", + _ZN3sce2Np9CppWebApi14SessionManager2V159PostGameSessionsSessionIdMemberSpectatorsRequestBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_27RequestGameSessionSpectatorEEEEEPNS9_INS3_52PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEE) +STUB("AWHt8gDYjEU", png_get_gAMA) +STUB("AWITin0sqdk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEdeEv) +STUB("AWQ7UtNyAYQ", _ZN3JSC16setNeverOptimizeEPNS_14JSGlobalObjectEPNS_9CallFrameE) STUB("AWS3NyViL9o", scePthreadMutexGetyieldloops) +STUB("AWTs12FyKEg", _ZN3sce7Toolkit2NP2V27Session16FixedSessionDataC2Ev) +STUB("AWWg03aji6s", + _ZN7WebCore17JSHTMLLinkElement15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "AWgbb2mDp1c", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEneERKS9_) +STUB( + "AWl7dAm1FTs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEC1Ev) +STUB( + "AWov8+gA4i0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEED2Ev) +STUB("AWvkva1I29A", WKPageLoadDataWithUserData) +STUB("AWwyuOnNIvw", Java_java_lang_StrictMath_log1p) +STUB( + "AX1WCc5aIyA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE5clearEv) +STUB("AX32XHkRqYI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE3endEv) +STUB( + "AX3kyrL8t-M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEC1EPKS8_) +STUB( + "AX3m7w9z0Mk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("AX96SAijGUI", + _ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession19getSearchAttributesEv) +STUB("AX97ONJpZ+Y", JVM_Sleep) +STUB( + "AXBfG6c2F9Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "AXGH6VLhXAg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEneERKS9_) +STUB("AXGJtPl3VZY", il2cpp_unity_liveness_calculation_from_statics) +STUB( + "AXN33YB6nOM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEEcvbEv) +STUB( + "AXObhMCkmRs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB( + "AXPjQ+kk+g4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEC1EPS7_PNS2_10LibContextE) +STUB( + "AXTWyp43nSs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEEC1Ev) STUB("AXXEjyZq2mE", sceMbusDebugReenableBgmForShellUi) +STUB("AXfM18qkbrc", _ZNSt15basic_streambufIcSt11char_traitsIcEE8pubimbueERKSt6locale) +STUB("AXgKDNch+9g", X509_get_ext_count) STUB("AXh4kwbspSs", sceGnmValidateAndSubmitCommandBuffers) +STUB( + "AXi3EjlZW08", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEptEv) +STUB("AXiTbrEiZA8", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge18ChallengeThumbnailEED2Ev) +STUB( + "AXjgwBUtS6s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE8pushBackERKS8_) +STUB("AXkUptcZr1w", WKBundlePageUninstallPageOverlay) +STUB( + "AXkx430PDgU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEEC2ERKSC_) +STUB("AXsvyvweIck", _ZN3sce3Xml3Dom4NodeC1ENS1_6NodeIdE) +STUB( + "AXtieTDmrsw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("AXyUy4sOVuY", _ZN7WebCore24contextMenuItemTagItalicEv) +STUB("AXzFm00pyhE", _WGenld.lzero) +STUB("AY+T-PtKbAE", _ZN3sce7Toolkit2NP2V212EventsClient22EventOfficialBroadCastC1Ev) +STUB( + "AY4Hd7YrQ8E", + _ZNK3sce2Np9CppWebApi14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBody6toJsonERNS_4Json5ValueEb) +STUB("AY5HtCxTNwQ", _ZN7WebCore11JSDOMMatrixC1ERKS0_) +STUB( + "AY7aP+BFdfw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEE7add_refEv) +STUB("AY8CiwVoepc", mono_btls_x509_store_new) +STUB( + "AYAFx5Ey5rQ", + _ZN3sce2Np9CppWebApi14SessionManager2V132RequestPlayerSessionMemberPlayer8fromJsonERKNS_4Json5ValueE) +STUB("AYAo2OsntHU", _ZN3sce7Toolkit2NP2V23TUS7Request18GetFriendsVariableC2Ev) STUB("AYBQmnRplrg", sceSaveDataDebugTarget) +STUB("AYEmKwgRfRI", Java_com_sony_gemstack_org_dvb_application_AppsDatabaseImpl_n_1disableCallbacks) +STUB("AYHa8PfwL1I", + _ZThn16_N9Inspector21InspectorRuntimeAgent19setSavedResultAliasERN3WTF6StringEPKS2_) +STUB( + "AYLmObq3c-w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEE11release_refEv) +STUB( + "AYLsni6UxKw", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("AYOSrFpKHUE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEEC2Ev) +STUB("AYPXlrp3urc", _ZN3JSC7Symbols17toPrimitiveSymbolE) +STUB("AYQqXkf4Z4c", u_strFromUTF32WithSub_67) +STUB( + "AYSrXrov3lk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "AYWiw3WM0ME", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEE11release_refEv) +STUB( + "AYZqLijiKR8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEmmEi) +STUB("AYaZ5CHXzNA", _ZNK7WebCore16TrackPrivateBase17startTimeVarianceEv) STUB("AYbQS0FkE3c", sceSystemLoggerSetLogData) +STUB("AYdagz+jPcI", _ZN3sce2Np9CppWebApi12Leaderboards2V14UserC2EPNS1_6Common10LibContextE) +STUB( + "AYgEVTXrXFc", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "AYoiikXU280", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEEC2ERSA_) +STUB("AYp8AgxYQC8", _ZN7WebCore9HTMLNames10bgsoundTagE) +STUB("AYvKpqUe04E", _ZN3sce7Toolkit2NP2V212ActivityFeed13UsersWhoLikedC2Ev) +STUB("AYvkDhdPHzU", mono_aot_Sce_Vsh_Np_ServiceChecker2plt) +STUB("AYyuTwPxtAU", _ZN3sce7Toolkit2NP2V24Core13CallbackEvent5resetEv) +STUB("AYyxvDy-SFU", _ZN4IPMI4impl11SessionImpl26respondToSyncMethodRequestEiPKNS_10BufferInfoEj) +STUB("AZ+JE981Lgg", _ZNK7WebCore21BackForwardController9backCountEv) +STUB("AZ+cnefiiHg", delegate_virtual_invoke_imt_18_p) +STUB("AZ--mVLFgKQ", Java_java_io_FileInputStream_skip0) STUB("AZ2TuCjJ4J8", sceApplicationDeclareShellCore) STUB("AZ4eAlGDy-Q", sceNpScoreGetRankingByRangeForCrossSaveAsync) +STUB("AZ5bMttGzKA", jpeg_quality_scaling) +STUB("AZ9iWcpNRPk", mono_declsec_get_assembly_action) +STUB("AZCGnCb-TH8", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSessionC2EPNS1_6Common10LibContextE) +STUB( + "AZE7gB9J20A", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE5beginEv) STUB("AZFXXpZJEPI", sceUserServiceSetImeRunCount) +STUB("AZGKZIVok6U", _ZTVSt18bad_variant_access) +STUB("AZH1GjEJS9s", _ZN3sce7Toolkit2NP6Trophy9Interface12trophyUnlockEibi) +STUB("AZTMWob-mog", _ZN3sce2np10MemoryFile4SyncEv) +STUB( + "AZUx09eRXk4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE5beginEv) +STUB("AZVNKb4AFZE", _ZN3sce2Np9CppWebApi6Common6VectorIdE21intrusive_ptr_add_refEPS4_) +STUB("AZb2Bl9bMsk", _ZN4Manx21DisplayRefreshMonitorD1Ev) +STUB("AZbcxbfE7Ik", WKUserMediaPermissionRequestAudioDeviceUIDs) +STUB("AZdUgKbmWZM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEEC1ERS7_) +STUB( + "AZgolazGh+M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("AZmSVK2KvL4", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchStatus9terminateEv) +STUB("AZoGz-UFAp4", mono_gc_wbarrier_generic_nostore) +STUB( + "AZoPJEyeiOk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEE5resetEPS9_) +STUB("AZpheaKroNY", freeVideoMemory) +STUB("AZsPtFoHAZ8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody10unsetLimitEv) +STUB("Aa02of1NSls", mono_aot_Sce_Vsh_GriefReportplt) +STUB("Aa2O2EG2zrI", _ZThn16_N9Inspector21InspectorRuntimeAgent6enableERN3WTF6StringE) +STUB("Aa8cXoodZg4", + _ZN7WebCore4Path14addRoundedRectERKNS_9FloatRectERKNS_9FloatSizeENS0_19RoundedRectStrategyE) STUB("AaFh1H8YTPY", sceNpTrophy2SystemGetTrophyDetails) +STUB("AaU89EqjdQ4", _ZN3WTF10SymbolImpl17nextHashForSymbolEv) STUB("AaVc2ZX5wCI", sceUpsrvUpdateCheckGetUpdatelistURL) STUB("Aacl5qkRU6U", sceAudio3dStrError) STUB("Aajiktl6JXU", sceHmdInternalGetVr2dData) +STUB("AakTChmIbPY", u_tolower_59) +STUB( + "AamWGSiwlLs", + _ZN7WebCore11DisplayList18FillCompositedRectC2ERKNS_9FloatRectERKNS_5ColorENS_17CompositeOperatorENS_9BlendModeE) +STUB( + "AaotzMpnXPg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEE5resetEPS9_) +STUB("AaqV6yDcQTM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE6resizeEj) +STUB( + "Aar99jHKE3g", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEdeEv) +STUB( + "AasUDqNyd7Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEE11get_deleterEv) +STUB("Aast7knICYE", _ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody11getLocationEv) +STUB( + "AatuMYO1dHQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEE21intrusive_ptr_sub_refEPS7_) +STUB( + "AawHDpsapd4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEED1Ev) +STUB("AawjM-DVEyQ", _ZNK7WebCore10ScrollView16windowToContentsERKNS_7IntRectE) +STUB("Aay9fr+bfQo", mono_aot_Sce_Vsh_FileSelectorAdvancemethod_addresses) +STUB("Ab-yq+iJFlE", _ZN3JSC23getUint16ArrayClassInfoEv) +STUB("Ab0R4oOE-DY", glWaitSync) +STUB( + "Ab2SnolJqnM", + _ZN9Inspector23CanvasBackendDispatcher14startRecordingElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("Ab5wMfsZNvc", ucurr_getDefaultFractionDigitsForUsage_67) STUB("Ab7+DH+gYyM", sceSslLoadCert) +STUB( + "Ab8--gGJiXg", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsers35getxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB("Ab947VoiFCI", _ZN3sce7Toolkit2NP2V28Commerce7Request27DisplayCategoryBrowseDialogC1Ev) +STUB("AbA05b6nRfY", JSPropertyNameArrayGetNameAtIndex) +STUB("AbBUw4SUvoY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEEC2ERKS7_) +STUB( + "AbBawmiAWY8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEC2Ev) +STUB("AbHqWS1Qc3g", uprv_toupper_67) +STUB( + "AbTD3obgjpw", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_8Debugger5Scope4TypeEEESt8optionalIT_ERKN3WTF6StringE) STUB("AbYvTOZ8Pts", sceNgs2VoiceRunCommands) +STUB("AbaLEol7ssM", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIfEneERKS4_) +STUB( + "AbdK21Mm1Js", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEEC1ERKSA_) STUB("Abendgtz+3o", sceAgcCbDispatchGetSize) STUB("AbiIaBA50I0", sceMusicPlayerServiceBeginTransaction) +STUB("Abv1Cb-pj2w", _ZN7WebCore22ResourceLoadStatistics5mergeERKS0_) +STUB( + "AbwUgraIKyc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEC1Ev) +STUB("AbxQCXQKsNY", _ZN7WebCore13ContainerNode22getElementsByClassNameERKN3WTF10AtomStringE) +STUB( + "AbxUlol33W4", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayer9terminateEv) +STUB("AbyOZRESLWY", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_21GameCustomDataMessageEE3getEv) +STUB( + "AbywYIucBPo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEE5resetEPS8_) STUB("Ac3I81u9ky4", sceShellCoreUtilGetImposeMenuFlagForPs2Emu) +STUB( + "Ac4I-XQuOgU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEplEm) +STUB("Ac4aVZAfP3U", u_vsscanf_67) +STUB("Ac4nZvBPfYU", _ZN7WebCore28InspectorFrontendClientLocal15dispatchMessageERKN3WTF6StringE) STUB("Ac86z8q7T8A", sceKernelExitSblock) +STUB("Ac9Gy-vmaIM", _ZN12video_parser13cVideoMetaMP417getTimeZoneOffsetEPs) STUB("AcARz3iay1I", sceMbusEventDestroy) STUB("AcDNpEpoT9U", sceShareCaptureVideoClipExtended) +STUB("AcG6blobOQE", _ZN3sce2np4Path6SetStrEPKcm) +STUB("AcHZv3fOM6A", g_ptr_array_remove_fast) +STUB( + "AcHirYSl0HA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEC1EPNS2_10LibContextE) +STUB( + "AcItPXx6-cQ", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124BandwidthUpstreamMetrics8fromJsonERKNS_4Json5ValueE) +STUB( + "AcMT1Y+7ixU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE8pushBackERKS8_) +STUB("AcWqxTxm6L8", WKViewHandleWheelEvent) +STUB( + "AcWy2lejOuQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("AcamLEVLvZs", _ZN7WebCore8SVGNames10originAttrE) STUB("AceRR9y6-ss", sceTextToSpeechResumeImpl) +STUB("AcgrOfh90VA", WKPreferencesGetCrossOriginWindowPolicyEnabled) +STUB("Acl7E8U+V44", _ZN3WTF8WordLock8lockSlowEv) +STUB( + "Acl7JiN54CU", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10getString2Ev) STUB("AcruVcmKz78", scePigletReleaseVideoMemoryEx) STUB("AcslpN1jHR8", scePadDeviceClassGetExtendedInformation) STUB("ActTHWrmwbo", sceAvControlSetDefaultAudioOutMode) +STUB("Actd3LlAN40", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi20ParameterToJoinMatchC2ERS5_) STUB("Acyg4vTdGm0", sceHmd2ReprojectionGetCurrentOutput) +STUB("Acz3w+5PgUA", _ZNK7WebCore12RenderObject39pixelSnappedAbsoluteClippedOverflowRectEv) +STUB( + "Ad-Q5VkVJgE", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEEiRNS2_10LibContextEPT_m) +STUB( + "Ad0B0ud+xo8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEC2Ev) +STUB("Ad56ZKck1GU", _ZN3NTF21ResourceRequestLoggerC1Ev) +STUB( + "Ad5hf0cYboo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE7reserveEi) +STUB("Ad9LVYzibBM", _ZN7WebCore17FrameLoaderClient24didRestoreScrollPositionEv) +STUB("AdF7IVgWOEE", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils12Notification15UserStateChangeEEC1Ev) +STUB( + "AdQOA51emuk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEE5resetEPS6_) +STUB( + "AdSFWRF1Hhs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE8pushBackERKS8_) +STUB( + "AdWdjSQLBEI", + _ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_18PlayerForOfferReadEEEEE) +STUB("AdYIJfkKh-Q", _ZN3sce2Np9CppWebApi6Common8IteratorINS2_6StringEEC1Ev) +STUB("AdYYKgtPlqg", _rtld_get_stack_prot) +STUB("AdhbdaLsiik", _ZN3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse17setTotalItemCountERKi) +STUB("Adk-gZhFBwM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEEC1ERS6_) +STUB("AdkcXAOQDl8", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEEC1Ev) +STUB( + "Adm+gJjIE18", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE5startEPNS2_10LibContextE) +STUB("Ads7t69vHBk", glIsQuery) +STUB( + "AdtWyM147jA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEdeEv) +STUB("AdwRm4rOp6s", makeDeciHeader) +STUB( + "Adwlji+y+h8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEEptEv) +STUB("Ae4xNo4KBwU", _ZN7WebCore9HTMLNames6bigTagE) +STUB("Ae5yw4TYq-8", WKCookieManagerGetTypeID) +STUB("Ae7Kk0Xypu0", _ZN7WebCore4PathaSERKS0_) +STUB("AeCkyuoYGuA", mono_aot_Sce_Vsh_SessionInvitationjit_code_end) +STUB( + "AeD0Ymq7ezE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "AeE2dAGAuU4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEE7add_refEv) STUB("AeGaY8JrAV4", sceUsbdLockEventWaiters) +STUB( + "AeMw7OaV8ls", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE8copyFromERKS9_) +STUB("AeRVQduA3e4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEED2Ev) +STUB( + "AeRzMFIAhHk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE10setContextEPNS2_10LibContextE) +STUB("AeSfYEtVSKg", _ZN3sce7Toolkit2NP2V210Tournament5MatchD1Ev) +STUB("AeTgkm3kN-k", _ZN3JSC10ConfigFile20setParentProcessNameEPKc) +STUB( + "AeUY8h8BTBk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEC1EPS8_) +STUB( + "AeW84iJUywc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEC1ERS7_) +STUB( + "AeXbbp5Oh4I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEED1Ev) +STUB("AeZTCCm1Qqc", fegetround) +STUB("AeaD2Qmh6B0", mono_gc_get_heap_size) +STUB("AehsN7SFbQA", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchDetailD1Ev) +STUB("AekenVbSWcY", _ZN3sce2Np9CppWebApi14SessionManager2V131JoinedPlayerSessionWithPlatformD2Ev) +STUB("AenKAXoYO0A", bemp2sys_tsdecoder_destroy) +STUB("AepOyHjQFAc", _ZN3sce7Toolkit2NP2V26Friend12Notification15BlocklistUpdateC1ERKS5_) STUB("Aeu5wVKkF9w", sceHttpCreateRequestWithURL) +STUB( + "Af2I3Cnrft8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEdeEv) +STUB( + "Af30sxCwTTg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("Af5zmblQJjI", Java_java_lang_System_setOut0) +STUB("Af6qMnbcSqI", _ZThn112_N7WebCore9DOMWindowD0Ev) +STUB( + "AfA76M4URj4", + _ZN3sce2Np9CppWebApi7Matches2V126RequestTeamMemberStatistic8setStatsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_19AdditionalStatisticEEEEE) +STUB("AfCYbPzNADg", mono_images_init) STUB("AfDLbTnIsYc", sceBgftServiceIntDownloadReregisterTaskPatch) +STUB("AfFITaJQwlo", _ZN7WebCore8SVGNames23preserveAspectRatioAttrE) +STUB( + "AfFlkyb3Dpw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEC2EPKS8_) STUB("AfI6pPRlI34", sceFaceIdentifyGetFeature) STUB("AfIDd+2ycTs", sceCamera2SetWhiteBalance) +STUB( + "AfK1sH3UHkE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB("AfL-nqNC5fY", FT_MulDiv_No_Round) +STUB("AfMxh2e9V3Q", getlogin) +STUB("AfORewp+ARE", _ZN7WebCore26IdentityTransformOperationC2Ev) +STUB("AfSfLDJiEK0", _ZN3sce2Np9CppWebApi6Common6VectorIjE6resizeEj) +STUB("AfTHcCnZkhE", u_strtok_r) +STUB("AfX8I7C66fE", _ZNK3sce2Np9CppWebApi7Matches2V15Error7getCodeEv) STUB("AfY2Uq3R494", sceVshAvcapSetStaticInfo) +STUB( + "AfZ7IUj9RWQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEE11get_deleterEv) +STUB("AfexwR3oSR8", WKPageIsMockRealtimeMediaSourceCenterEnabled) +STUB( + "AfgnYbxt3xY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEE11get_deleterEv) +STUB( + "Afik3jzm0G4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEEaSERKSA_) +STUB("AfoZyRwpc00", + _ZN9Inspector17ScriptDebugServer22exceptionOrCaughtValueEPN3JSC14JSGlobalObjectE) +STUB("AfpvtwJKVF0", _ZN3sce7Toolkit2NP2V27Session11SessionDataD1Ev) +STUB("AfpzINLrJ8M", uscript_isCased) +STUB("AfttByu5ALE", _ZN7WebCore11DisplayList8DrawLineD1Ev) +STUB("AfuS23bX6kg", getgid) +STUB("AfyQflYRLDA", _ZN3sce7Toolkit2NP2V212ActivityFeed7CaptionC2Ev) +STUB( + "Ag+W8uLitug", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEeqERKS9_) +STUB( + "AgCfXWfrJKs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEC2EPNS2_10LibContextE) +STUB("AgDmpIIO0Co", _ZNK3sce2Np9CppWebApi7Matches2V120ResponseInGameRoster12playersIsSetEv) +STUB("AgG+Cb2Bigs", _ZN3sce7Toolkit2NP2V27NpUtils5IdMapD1Ev) +STUB("AgI4Yii9cgI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_17TitleCloudStorage2V19ConditionEEptEv) +STUB( + "AgJrWsGmmi4", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getBoolean1Ev) +STUB("AgPFrfHPJNY", ures_swap) STUB("AgYSGAQGtXs", sceShellCoreUtilCleanupCrashReport) +STUB("AgaOBmlvd1U", _ZN7WebCore9HTMLNames15onbeforecutAttrE) +STUB("Agb5P41DSzo", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112UpdateStatusEEeqERKS7_) +STUB( + "AgbJ+Bkbp2U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE8pushBackERKS8_) STUB("AgcxgceaH8k", sceNpScoreGetFriendsRankingForCrossSave) +STUB( + "Agk284DXNM8", + _ZN3sce2Np9CppWebApi14SessionManager2V130RequestPlayerSessionInvitationC1EPNS1_6Common10LibContextE) +STUB("AgoWl1EVDPo", _ZN3JSC9JSWeakSet6s_infoE) +STUB( + "AgppqW8HRso", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEppEv) +STUB("Agsyrf4L8uA", _ZNK3sce2np10JsonNumber6GetNumEPl) +STUB("Agu-33Jlq+Q", _ZN7WebCore22counterValueForElementEPNS_7ElementE) +STUB("Agx9YzHLySs", __match_D2A) +STUB("AgxEl+HeWRQ", _ZNSt6locale5facet7_DecrefEv) +STUB( + "AgxIxL3KDD4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEC1Ev) +STUB( + "AgxXyvaaer0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEED2Ev) +STUB("Ah4d58obKwE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEEC1Ev) +STUB( + "Ah7EHZdqMv4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB( + "AhEEFcQZ7tU", + _ZN7WebCore17HTMLSelectElement3addERKN3WTF7VariantIJNS1_6RefPtrINS_17HTMLOptionElementENS1_13DumbPtrTraitsIS4_EEEENS3_INS_19HTMLOptGroupElementENS5_IS8_EEEEEEERKSt8optionalINS2_IJNS3_INS_11HTMLElementENS5_ISF_EEEEiEEEE) STUB("AhGvpITrf4M", sceAgcDriverAgrSubmitDcb) +STUB( + "AhJgNdYmkZo", + _ZN7WebCore20ApplicationCacheHost28maybeLoadFallbackForResponseEPNS_14ResourceLoaderERKNS_16ResourceResponseE) +STUB( + "AhLwPKB5AqM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE5clearEv) +STUB("AhNHpLBVqAI", _ZN7WebCore30InvertLightnessFilterOperationD2Ev) +STUB( + "AhRvlKjeHJI", + _ZN9Inspector17BackendDispatcher19reportProtocolErrorESt8optionalIlENS0_15CommonErrorCodeERKN3WTF6StringE) +STUB( + "AhUBZCQFMrg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("AhUNPmI1PjI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE5beginEv) +STUB("Aha867xk+js", _ZN3sce2Np9CppWebApi7Matches2V113ErrorResponseD1Ev) +STUB("AhcwKNannr8", searchCommInfoListBySecondaryStream) +STUB( + "AhdQZnDmdTY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE5clearEv) +STUB("AhfQDu5DYhI", il2cpp_class_has_parent) +STUB( + "Ahku9ydLj9w", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToSetMultiVariablesByUser9terminateEv) +STUB( + "Ahlu-7DMjg0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE8pushBackERKS8_) +STUB( + "AhnlG38gTkk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEED2Ev) STUB("AhqlQ8cngrk", scePlayerInvitationDialogGetResult) +STUB("AhwGp7JtQjI", WKInspectorHide) STUB("Ai+CmAO2w54", sceKernelGetProcessAbiType) +STUB("Ai5yrljUSjI", glGenVertexArrays) +STUB("AiGmBF0ubhE", _ZN3sce7Toolkit2NP21TusSetDataInputParamsC2Ev) +STUB( + "AiM-S81hW6Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEC1Ev) +STUB("AiOIdr8qlv8", _ZN3WTF24AutomaticThreadConditionC2Ev) +STUB("AiQVTEwWQ5w", _ZN3sce7Toolkit2NP2V26Trophy7Request19GetTrophyPackTrophyD1Ev) +STUB("AiXfM7pAAgo", WKPreferencesSetFantasyFontFamily) STUB("AiYaoHGTYLM", ScePsmMiniGetDebugOptions) +STUB("AiakG67rmUE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEE7get_refEv) +STUB("AiazZsMHSfs", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession13setMaxPlayersERKi) +STUB( + "Aidc1CBWfi4", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetBoolean6Ev) STUB("AifdcI1aKas", sceNpSnsFacebookDialogGetResult) +STUB("AilVyFw1yns", _ZN12video_parser10cVideoPathD1Ev) +STUB("Aioru3Sp3WQ", _ZN7WebCore14valueForLengthERKNS_6LengthENS_10LayoutUnitE) +STUB("AitA5hf0b4o", GetAccountLanguage2) +STUB("AiuJezekCBc", umutablecptrie_fromUCPTrie) +STUB("Aiy00lPTCdA", _ZN3sce7Toolkit2NP2V28Commerce7Product16PRODUCT_NAME_LENE) +STUB( + "Aiybkv35qik", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEdeEv) STUB("Aj2Ds5L9tmU", sceVideoCoreInterfaceMainLoop) +STUB("Aj4Ha7tFybU", _ZN7WebCore23AuthenticationChallengeD2Ev) +STUB("AjA-S003ESY", mono_get_string_class) +STUB("AjEm95J+bh4", uhash_remove) +STUB("AjEsAEzv+BI", + _ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody6toJsonERNS_4Json5ValueEb) +STUB( + "AjFzijH6yIY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEE7get_refEv) +STUB( + "AjIvwY7FjAw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEeqERKS9_) +STUB("AjSWJSHcOIk", _ZN9Inspector29SupplementalBackendDispatcherD1Ev) +STUB( + "AjVClaSXzZM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEEC1ERSA_) +STUB("Ajae5Y4p2RI", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V219WebApiErrorResponseC1EPNS1_6Common10LibContextE) +STUB( + "AjixtXuS1Zg", + _ZN3sce2Np9CppWebApi14SessionManager2V135ResponseGameSessionSpectatorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_28ResponseGameSessionSpectatorEEE) +STUB("AjkxQBlsOOY", _ZNKSt8messagesIwE8do_closeEi) +STUB( + "AjooIBWUz3c", + _ZN3sce2Np9CppWebApi14SessionManager2V145RequestCreatePlayerSessionNonPsnPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_38RequestCreatePlayerSessionNonPsnPlayerEEE) +STUB("AjtiJRIV4Ro", _ZN3sce2Np9CppWebApi6Common6VectorIjE8pushBackERKj) STUB("AjtlFa2HRws", sceVideoOutAddSetModeEvent) STUB("AjzLvR0g5Zs", sceNpUtilGetTrcNotify) +STUB("Ak7b6A9cJvc", WKPreferencesSetShouldDisplayCaptions) +STUB("Ak82qzAhdwA", JVM_CurrentLoadedClass) +STUB("AkAdc+-cUY4", _ZN7WebCore8SVGNames6u2AttrE) +STUB( + "AkBQaoXLvj0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEED1Ev) +STUB("AkCuWWSvQHA", _ZN3sce2Np9CppWebApi14ConnectAccount2V212PartnerToken22unsetAccessTokenSecretEv) +STUB("AkDTv2T16Dg", mono_shared_area_remove) +STUB("AkI8IiQHqkA", + _ZN7WebCore5Image7setDataEON3WTF6RefPtrINS_12SharedBufferENS1_13DumbPtrTraitsIS3_EEEEb) +STUB("AkOOhwxmrbE", _malloc_finalize) +STUB("AkVBfGATOC0", monoeg_g_queue_new) +STUB("AkZDh0eGH+E", _ZTV13MsvMetaEditor) +STUB( + "AkZYKwb26Fc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEneERKS9_) +STUB( + "Akc-LXEndk0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEmmEv) +STUB("Aked5DcJ-7M", _ZTVN15AbstractStorage14TwitterServiceE) +STUB( + "AklrXTu970w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEC2EPNS2_10LibContextE) +STUB("Akm3oZiReFc", _ZNK7WebCore4Page23isMonitoringWheelEventsEv) +STUB( + "AkonPGMfQSI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEEC2Ev) +STUB( + "AkpbOUqutxE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEaSERS7_) +STUB("AkqlD9D8CyI", _ZN7WebCore11DisplayList10StrokePathD2Ev) +STUB( + "AktpMpPtju0", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToSendGameSessionMessageC2Ev) +STUB( + "Akx92VYsbak", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser17hasnpServiceLabelEv) +STUB( + "AkzdgCGDTAA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB("Al3HAN0xvfw", _ZN7WebCore17standardUserAgentERKN3WTF6StringES3_) STUB("Al4qjNREVQQ", sceHmd2SetVibration) +STUB("Al8MZJh-4hM", wmemset) +STUB("Al8uQZRF2v4", + _ZN3sce2Np9CppWebApi7Matches2V120ResponseInGameRosterC1EPNS1_6Common10LibContextE) +STUB("AlDCRmsBk0E", g_slist_last) +STUB( + "AlHdkNd4hyI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEED2Ev) +STUB( + "AlIvAQxkLX0", + _ZN7WebCore10JSDocumentC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_8DocumentENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "AlNsXbn0EzU", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessionsC2ERS5_) +STUB("AlP0gG2KQiw", mono_btls_x509_name_free) +STUB( + "AlUtS-I4oU8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE5beginEv) +STUB("AlXVe2XVb98", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_15ActivityStoryIdEE3getEv) +STUB("AlXeQLzHOPM", _ZN3WTF7CString4growEm) +STUB( + "AlZ7AYQFoto", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE11getResponseERS8_) +STUB("AlbShN04mCk", _ZN7WebCore9HTMLNames21onselectionchangeAttrE) +STUB("AleDTt+SyDo", _ZN3sce7Toolkit2NP2V26Friend7Request15GetBlockedUsersC1Ev) +STUB( + "AlgJXQspPOc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEEC2ERKS9_) +STUB("Alkbf4vUAvA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEcvbEv) +STUB( + "AlnYC9HXEto", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEmmEi) +STUB("AloU5nLupdU", CERT_STORE_releaseStore) STUB("AlogKJrMsco", scePerfTraceDelete) STUB("Alqa9RE0Y5k", sceKernelReleaseTraceDirectMemory) +STUB( + "AltsVXKpgBA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE4sizeEv) +STUB("AlvmR1GwSVY", ures_getIntVector_67) +STUB("AlvvmKbsd24", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10ContainersEED1Ev) +STUB( + "AlxvR5lgY-c", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEplEm) +STUB( + "Alz7VSFRVQQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEE11get_deleterEv) STUB("Am+ONet261k", sceOpusCeltEncEncodeWithPriority) +STUB( + "Am-F0h2kTak", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE21intrusive_ptr_sub_refEPS9_) +STUB("Am2wwvV-gr8", _ZN3sce7Toolkit2NP23EventInformationRequestC2Ev) +STUB("Am3TF-mLbXE", _ZN9Inspector21InjectedScriptManager19injectedScriptIdForEPN3JSC9ExecStateE) +STUB( + "Am489KlRgkw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEptEv) +STUB( + "Am60cNGKAno", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEC2EPS8_) STUB("Am8Hlr7tlxA", sceVideoOutSysAddVblankEvent2) +STUB( + "AmC332RRbFs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEaSERS8_) +STUB("AmFhOPPRYW4", _ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequestD1Ev) STUB("AmJ0mn2l4lM", sceKernelGetLibkernelTextLocation) STUB("AmJ3FJxT7r8", sceUserServiceSetGlsIsRecievedMessageHidden) +STUB("AmNeqCMs2oU", SSL_CTX_up_ref) +STUB("AmSA0TTYNEQ", _ZN3sce7Toolkit2NP2V212ActivityFeed13ButtonCaptionC1Ev) +STUB("AmTKOUGAGpA", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEED1Ev) STUB("AmTvo3RT5ss", sceSystemServiceLoadExecVideoServiceWebApp) STUB("AmVcTjMPw4M", sceDataTransferInitialize) +STUB( + "AmXdz3s74QA", + _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody14getCustomData2Ev) +STUB( + "AmaZ2nOlqFE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEE11release_refEv) +STUB( + "AmchweIolL4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEED2Ev) +STUB( + "AmcjJAK1YN8", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_15CategoryInfoSubENS2_IS4_EEEE10deallocateEPS6_m) +STUB( + "AmdD3TzpP-c", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS5_INS7_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("AmgsrlAk78I", C1lo) +STUB( + "Amh3wSBhi10", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEE5resetEPS9_) +STUB("Amlk9ZNFJag", _ZNK7WebCore8Document22touchEventHandlerCountEv) STUB("AmmYLcJGTl0", sceGnmSpmStartSpm) +STUB( + "AmpdX8iQicg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEED1Ev) +STUB( + "AmsRXbsV+kM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEC2Ev) +STUB("An+I+fbFDzU", mono_string_to_utf8) +STUB("An0PZRq4qKw", g_JSFunctionPoison) +STUB( + "An1eIVHZGHg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEEC1ERKSA_) +STUB( + "An4Un3FkpbI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEmmEv) STUB("An7fJiCJu2s", sceFsSetWorkspaceFileHash) +STUB("An8-m5wsoTk", _ZNK3WTF8JSONImpl10ObjectBase3endEv) +STUB( + "An9mlaXsHy0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEdeEv) +STUB("AnE9WWbyWkM", _ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED1Ev) +STUB("AnEgrSUtZdM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEED2Ev) +STUB("AnFr-MjcNEQ", __asan_stack_malloc_always_3) +STUB( + "AnGFuXEHR90", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEneERKS9_) +STUB("AnIwPVeSiNg", _ZN7WebCore13HitTestResultC1ERKNS_11LayoutPointEjjjj) +STUB("AnNQFsvufuc", _ZNK7WebCore6Editor11textCheckerEv) +STUB( + "AnPpt54O1ng", + _ZNK3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer6toJsonERNS_4Json5ValueEb) STUB("AnQ9uoI3ENY", _sceDepthSetHeteroAdjustParam) +STUB("AnQQM55IXDQ", sqlite3_column_int) +STUB( + "AnQakP7-zLk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEEdeEv) +STUB("AnTtuRUE1cE", _Makestab) +STUB("AnTvPnYyt6c", rgctx_fetch_trampoline_mrgctx_33) +STUB("AnVgmQj3yRg", _ZN3sce7Toolkit2NP9Utilities6FutureIiEC1Ev) +STUB( + "AnVx3PRLElg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE5clearEv) +STUB( + "Anhr3zKSfP4", + _ZNK9Inspector17ScriptDebugServer36handleExceptionInBreakpointConditionEPN3JSC14JSGlobalObjectEPNS1_9ExceptionE) +STUB("Ani6e+T-y6Q", posix_spawnattr_setsigdefault) +STUB( + "AnlAI3prhE4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEC1EPS8_) +STUB( + "AnlznmKvirg", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB( + "AnnAe2SatVU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "Ao2FvA8wRs8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEC2Ev) STUB("Ao2YNSA7-Qo", sceVoiceStop) +STUB("Ao79N2ZY9zw", recvbuf) STUB("Ao7fKckorGE", sceMusicCoreServerUpdateSpWakeupAuthorityList) +STUB("AoAG2JE8GIo", cairo_restore) STUB("AoBZzDiZwng", sceAvSettingGetHdcpStatus) +STUB("AoBsO61PR9Q", _ZN3sce7Toolkit2NP2V27Session7Request17GetInvitationDataC1Ev) +STUB("AoGKSRLMOD8", JVM_CurrentTimeMillis) +STUB("AoI+0INzZek", utrie2_get32FromLeadSurrogateCodeUnit_67) +STUB("AoKQpye80kU", glCompressedTexImage3D) +STUB("AoLA2MRWJvc", getw) +STUB( + "AoLKRivi46Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE21intrusive_ptr_add_refEPSA_) +STUB( + "AoNF3RLJ4W8", + _ZN9Inspector24BrowserBackendDispatcherC2ERNS_17BackendDispatcherEPNS_31BrowserBackendDispatcherHandlerE) +STUB("AoQqIQgzoLY", apply_reg_state) STUB("AoSlid9sAJE", sceFsInitMountDownloadDataOpt) +STUB("AoTNh42+Dw8", JVM_RegisterPerfMethods) +STUB( + "AoURc5di8gw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEC1EPS6_PNS2_10LibContextE) +STUB( + "AoUaCo4hSIo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEEC1ERKSA_) +STUB( + "AoZ95q7e-W8", + _ZN3sce2Np9CppWebApi14SessionManager2V130RequestPlayerSessionInvitation8fromJsonERKNS_4Json5ValueE) +STUB("AoZRvn-vaq4", + _ZZNSt13basic_filebufIwSt11char_traitsIwEE5_InitEP7__sFILENS2_7_InitflEE7_Stinit) STUB("AodT6gE5Qpk", sceSysUtilSendSystemNotificationWithParams) +STUB( + "AogY5Q0zxiA", + _ZN3sce2Np9CppWebApi14ConnectAccount2V215AccountLinksApi28ParameterToDeleteAccountLink10initializeEPNS1_6Common10LibContextEPKc) +STUB("Aohba1pDRgk", _ZN12video_parser7cVpUtil13vp_ff4_fwriteEPvPKvmPm) +STUB("Aojl-oU8Pc8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEaSERKS7_) +STUB("Ap+o97AVBWY", jpeg_natural_order4) +STUB("Ap1qJIX6ZgU", _ZNK7WebCore22HTMLFormControlElement11formEnctypeEv) +STUB( + "Ap2vAeN3qS0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEppEi) STUB("Ap5dJ0zHRVY", sceSystemStateMgrEnterMediaPlaybackMode) +STUB( + "Ap6X8LBPEQg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEmmEv) +STUB( + "Ap9yuauO+qE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEEC2ERSA_) +STUB( + "ApE-6wYJnHA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEE11get_deleterEv) +STUB( + "ApIGErJ4cyY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE5emptyEv) +STUB("ApKRAlRaXxA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEED2Ev) STUB("ApMLfJ527Ag", pthread_attr_getsolosched_np) +STUB( + "ApNl3Gwny+s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "ApYofkREMFU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEEC1EPS5_PFvS7_EPNS2_10LibContextE) STUB("Apb4YDxKsRI", sceNetResolverStartAton) +STUB("ApblR7nulzY", _ZN3sce7Toolkit2NP2V27Ranking7Request8SetScoreD1Ev) +STUB("AphmdTpDn5Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEC1ERS7_) STUB("ApiBWk+XhTM", sceDepthEnableHeteroMode) +STUB( + "ApjuosAIEFo", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE6insertENS2_8IteratorIS6_EERKS6_RS9_) STUB("ApkYaHb8Sek", sceKernelAprGetFileStat) +STUB("AplSHRUidGA", _ZN7WebCore11MediaPlayer26applicationDidBecomeActiveEv) +STUB("ApoRaeIzcZk", mono_aot_Sce_Vsh_Accessorjit_code_start) +STUB("AprbZU1rknE", _ZN3sce7Toolkit2NP2V27Ranking17GetGameDataResultC1ERKS4_) +STUB("Aps4d4mBAV4", _ZN7WebCore8SVGNames10feFuncBTagE) +STUB("ApzQ92rdPkU", _ZN3JSC6JSLock12DropAllLocksC1EPNS_9ExecStateE) +STUB( + "Aq0Mjj1nep0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEE5resetEPS7_) +STUB( + "Aq2AKkpAHZA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "Aq8VKmBGVd0", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS2_6BinaryEEENS5_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("AqBioC2vF3I", read) STUB("AqGfBZu4uCA", sceUserServiceSetNotificationSettings2) STUB("AqJ4xkWsV+I", sceNpCalloutTermCtx) +STUB( + "AqKCTFCwW24", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEC2Ev) +STUB("AqLqg7skyrE", jpeg_fdct_16x8) +STUB("AqMO8-jHIs8", + _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse9setStatusERKNS3_6StatusE) +STUB("AqQzczIY59k", + _ZN3sce7Toolkit2NP9Utilities6FutureISbIcSt11char_traitsIcENS1_15AppSTLAllocatorIcEEEED2Ev) +STUB("AqUBdZqHZi4", warnc) +STUB( + "AqVEm7xg84M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE21intrusive_ptr_add_refEPS9_) STUB("AqVMssr52Rc", sceRtcTickAddTicks) +STUB( + "AqY6riP-PjM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData21setxPsnNpServiceLabelEj) STUB("Aqae0TjLvQU", sceNpEntitlementAccessRequestConsumeServiceEntitlement) +STUB("AqikO8-5cdE", mono_aot_Sce_Vsh_Orbis_ContentManagerplt) +STUB("AqpZU2Njrmk", remquof) +STUB( + "Aqq8zT53vEU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEC2Ev) +STUB("AqqoCHSoK7Y", _ZThn16_N9Inspector21InspectorRuntimeAgentD0Ev) +STUB("AqtTZeLtvwU", _ZN7WebCore21JSCSSStyleDeclarationaSERKS0_) +STUB( + "Aquv9EuC1l8", + _ZN9Inspector25TimelineBackendDispatcher14setInstrumentsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("Ar0NmXhAc98", _ZTVN7WebCore23ISOSchemeInformationBoxE) +STUB( + "Ar2h6HntYsM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEC1ERS7_) +STUB( + "Ar3xNlGTciU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "Ar5+XlzPkw0", + _ZN9Inspector22InspectorDebuggerAgent13setBreakpointERN3WTF6StringERKNS1_8JSONImpl6ObjectEPS6_PS2_RNS1_6RefPtrINS_8Protocol8Debugger8LocationENS1_13DumbPtrTraitsISD_EEEE) +STUB("ArC4PqsJOWc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEEC1Ev) +STUB( + "ArDViRWvkU8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB("ArH6j2e7PXg", + _ZN3WTF8JSONImpl10ObjectBase9setObjectERKNS_6StringEONS_6RefPtrIS1_NS_13DumbPtrTraitsIS1_EEEE) +STUB("ArJxs6wtlBw", _ZN3sce7Toolkit2NP2V26Friend15FriendsOfFriendC1ERKS4_) +STUB( + "ArMYOcHPmzs", + _ZN7WebCore12JSAudioTrackC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_10AudioTrackENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "ArMaYOX08iI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEEcvbEv) +STUB("ArROm9wdMxM", _ZN3JSC7Symbols30asyncGeneratorYieldPrivateNameE) STUB("ArSg-TGinhk", sceGnmUnmapComputeQueue) +STUB( + "ArTN-6rtnT8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "ArXOHIVsd2k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("ArYZrL8JVSI", _ZN3sce2Np9CppWebApi7Matches2V119AdditionalStatisticD1Ev) +STUB("ArYdZGEUW8w", glGetUniformiv) +STUB("ArZF2KISb5k", _LDunscale) +STUB( + "AranbtHSzMw", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10getString5Ev) +STUB( + "ArazDFbLJNA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("Arel-HEkkOM", _ZN3sce2Np9CppWebApi13InGameCatalog2V513ContentRating6setUrlEPKc) +STUB("ArexMXaUHuI", + _ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForRead15unsetSpectatorsEv) +STUB( + "Ari06g4xG58", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEC1ERKS8_) +STUB("Arl4t4yCekc", _ZN6WebKit12ChildProcess18disableTerminationEv) +STUB( + "Armx4jQhCN8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "ArrCj7ZhboM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "ArwwR8wCcVw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB("ArzkVgrMe9o", mono_aot_Sce_Vsh_ShareServerPostWrappermethod_addresses) STUB("As-JdqyUuMs", sceKernelSetSafemode) +STUB("As3I17TV4BE", + _ZN7WebCore13GraphicsLayer20setReplicatedByLayerEON3WTF6RefPtrIS0_NS1_13DumbPtrTraitsIS0_EEEE) +STUB( + "As5Sm8MWb4U", + _ZN7WebCore9ImageDataC1ERKNS_7IntSizeEON3WTF3RefIN3JSC21GenericTypedArrayViewINS6_19Uint8ClampedAdaptorEEENS4_13DumbPtrTraitsIS9_EEEE) STUB("AsCQCYTbe80", pthread_barrierattr_destroy) +STUB("AsGKmK2kJtM", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setSubtitleDisp) +STUB("AsRL0V4bgyY", fetch_proc_info) +STUB("AsShnG3DulM", _ZNSt12domain_errorD2Ev) +STUB("AsX1FKTHm2A", mono_shared_mutex_lock) +STUB("AsXgNlqe7xI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEE11get_deleterEv) STUB("Asczi8gw1NM", sceHmdInternalAnotherScreenSendAudio) +STUB( + "AskZ0b9yOw8", + _ZN3sce2Np9CppWebApi14SessionManager2V136JoinedGameSessionWithPlatformFactory7destroyEPNS3_29JoinedGameSessionWithPlatformE) +STUB( + "Asmum66xaH0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEC1EPS8_) +STUB("Astztyx6jKk", fuse_req_ctx) +STUB("AsueLb+3C4k", glSamplerParameteri) STUB("Asuucx2vvaE", sceProprietaryVoiceChatHelperGetVoiceChatUsageState) STUB("AsxmyXFDsiM", sceFaceIdentifyExGetFeature) STUB("AsziNQ9X2uk", sceNpTusGetMultiSlotVariableAVUser) +STUB("At8z4Agmcnc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEC1ERS7_) STUB("AtCnBMTgdoo", sceNpSnsYouTubeDialogTerminate) +STUB("AtKeeOk+CQI", WKContextAddVisitedLink) +STUB( + "AtQfEV6AGU8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEEC2Ev) +STUB("AtUOSzkIyO4", _ZNK3WTF10StringImpl4utf8ENS_14ConversionModeE) STUB("AtXJ8HI53HQ", sceNpRemotePlaySessionSignalingGetMemoryInfo) +STUB( + "AtXm-wTWQko", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEC2Ev) +STUB( + "AtfOfcEaLOk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEeqERKS9_) +STUB("Atil+QRPGs8", _ZN7WebCore8JSPath2DD1Ev) +STUB("Atkc8fTjugg", _ZN3sce2Np9CppWebApi6Common8IteratorINS2_17ParameterBaseImpl6KeySetEEC1EPS5_) +STUB( + "Atm22vkJ8mQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE4sizeEv) +STUB("AtmaYbJzdnQ", Java_java_lang_SecurityManager_getClassContext) +STUB("AtnrY+b9Rcg", _ZNK3JSC7JSValue20toIntegerPreserveNaNEPNS_14JSGlobalObjectE) +STUB("Atp9oheNRqg", _ZN9Inspector15RemoteInspector39sendAutomaticInspectionCandidateMessageEv) +STUB("Atq+9b5btSU", jpeg_std_error) +STUB("AtvOgVdBLNA", + _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead19getUsePlayerSessionEv) STUB("AtyWhIJC6rU", sceFsUfsDirectWrite) +STUB("Au-YQEODZBY", _ZN7WebCore11DisplayList14DrawTiledImageD0Ev) +STUB( + "Au1J8AG2OFA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("Au4Jy58DXj4", mono_aot_Sce_Vsh_Np_Trophyunwind_info) +STUB("Au75DUCRQN0", _ZN7WebCore9FrameView16setPaintBehaviorEj) +STUB( + "AuJIJ-oqR1Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEppEv) +STUB("AuQtjAqCYgc", g_string_free) +STUB("AuRg19KxWco", uhash_hashUChars) +STUB( + "AuTg43GFFTw", + _ZN7WebCore6Editor19countMatchesForTextERKN3WTF6StringEPNS_5RangeENS1_9OptionSetINS_14FindOptionFlagEEEjbPNS1_6VectorINS1_6RefPtrIS5_NS1_13DumbPtrTraitsIS5_EEEELm0ENS1_15CrashOnOverflowELm16EEE) +STUB( + "AuYjD-ekUG8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEmmEi) +STUB("Auc6i3VTZ4c", _ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequest21unsetCancellationTimeEv) +STUB( + "AudQdVdK8bU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEppEv) +STUB("AudzykEqchY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEEC2EPS5_PFvS7_EPNS2_10LibContextE) +STUB("AuhjTeWbn5Y", _ZN3WTF40clearDefaultPortForProtocolMapForTestingEv) STUB("AumF38kir6s", sceApplicationLocalProcessResume) +STUB( + "AunIU8ycZ5Q", + _ZN3sce2Np9CppWebApi14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyC1EPNS1_6Common10LibContextE) STUB("Auqk+H3qGuo", sceNpAsmClientCreateResourceContext2) +STUB("AutSTqT7f9c", _ZN7WebCore8SVGNames21limitingConeAngleAttrE) +STUB( + "AuxqfHk3+D4", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanity10initializeEPNS1_6Common10LibContextEPKcSA_NS6_12IntrusivePtrINS3_19WebApiFilterRequestEEE) +STUB("Av3vvSirm4c", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119PlayStyleProperties6toJsonERNS_4Json5ValueEb) +STUB("Av3zjWi64Kw", strftime) +STUB( + "Av4recFzuqM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "Av5zg+Zy+OQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEC1EPKS8_) +STUB( + "AvAfuNLW9Iw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEC1ERKS7_) +STUB("AvJhBkwvs2g", _ZN25MmsFileUpdaterFsOperation13removeTmpFileEPKc) +STUB("AvOP1OYXJ8I", _ZN3JSC7Symbols22onFulfilledPrivateNameE) +STUB( + "AvOyUuFKFOc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEC1Ev) +STUB("AvQjbt0RSyo", + _ZN7WebCore22EmptyFrameLoaderClient24dispatchDidFinishLoadingEPNS_14DocumentLoaderEm) +STUB("AvSstBGWKcM", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEEdeEv) +STUB( + "AvV0x-vhNR4", + _ZN9Inspector15ScriptArgumentsC2EPN3JSC14JSGlobalObjectEON3WTF6VectorINS1_6StrongINS1_7UnknownELNS1_30ShouldStrongDestructorGrabLockE0EEELm0ENS4_15CrashOnOverflowELm16ENS4_10FastMallocEEE) +STUB( + "AvdlVJf9IvM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEmmEv) +STUB("AvfzO51zGKI", + _ZN7WebCore9JSDOMRect15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB("AviCul77lps", _ZN7WebCore9HTMLNames12decodingAttrE) +STUB("AvjnXHAa7G0", CERT_enumerateAltName) +STUB( + "AvngEisH1bU", + _ZN9Inspector20DOMBackendDispatcher19setAttributesAsTextElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("AvoadUUK03A", CA_MGMT_decodeCertificate) +STUB( + "AvpzTOUCSS8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE3endEv) +STUB("AvrA9K2lvC4", u_isJavaIDPart) +STUB( + "AvuMvsUlJNM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEC1EPS6_PFvS8_EPNS2_10LibContextE) STUB("Avv7OApgCJk", sceFontStringRefersTextCharacters) +STUB("AvvE5A5A6ZA", _ZN3sce2np10JsonParserD2Ev) +STUB("AvvwkPNRuxM", mono_aot_Sce_Vsh_RequestShareScreenunbox_trampoline_addresses) +STUB("Aw2xTP5uAG0", WKPreferencesSetWebArchiveDebugModeEnabled) +STUB("Aw3HmCDPjnw", _ZN7WebCore27PlatformMediaSessionManager30applicationWillEnterForegroundEb) +STUB( + "Aw6aVWo4qb0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEEaSERKSB_) +STUB( + "AwCkB8DjFbQ", + _ZN3sce2Np9CppWebApi7Matches2V125RequestMatchPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_18RequestMatchPlayerEEE) +STUB("AwGzFwnaitQ", FcInit) +STUB("AwO-jxy52uE", _ZN3sce3Xml3Dom8Document12setAttributeENS1_6NodeIdEPKNS0_6StringES6_) +STUB( + "AwPFFwg-Znc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEED1Ev) +STUB("AwR16YyyVdI", _ZN7WebCore4toJSERNS_14StringCallbackE) +STUB("AwW34uD71ZQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE5emptyEv) +STUB("AwWC0Y+Shbg", _ZN3sce7Toolkit2NP2V24Core7Request14RemoveCallbackC1Ev) +STUB( + "AwaLKqdnekw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE8copyFromERKS9_) +STUB("Awb0lcEV300", _ZN3WTF10WorkerPoolC1ENS_12ASCIILiteralEjNS_7SecondsE) +STUB( + "Awctq3s1B5A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEC2Ev) +STUB("AwdlDnuQ6c0", _ZNSt14numeric_limitsIdE12min_exponentE) +STUB("AweMzgNw10Q", AnnotatePCQCreate) +STUB( + "AwiR8FKViZ8", + _ZN7WebCore23CoordinatedBackingStore10updateTileEjRKNS_7IntRectES3_ON3WTF6RefPtrIN7Nicosia6BufferENS4_13DumbPtrTraitsIS7_EEEERKNS_8IntPointE) +STUB("Awj5m1LfcXQ", _ZGVNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE) +STUB( + "Awk6hLfU0pE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("Awl+7Q5Haaw", _ZN3sce2Np9CppWebApi11Matchmaking2V19Submitter13unsetPlatformEv) +STUB("AwlZAyVEWxI", _ZN3sce7Toolkit2NP2V28Matching7Request8JoinRoomD2Ev) +STUB("AwxMKgOWcws", rgctx_fetch_trampoline_mrgctx_60_p) +STUB("AwyaII5zMBE", + _ZNSt9_FacetptrISt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEE6_PsaveE) STUB("Ax1Qs3Cm95Q", sceVideoOutAddStereoBuffer) STUB("Ax6LQJJq6HQ", sceFontGraphicsUpdateShapeFill) STUB("Ax7NjOzctIM", sceRazorCpuSync) +STUB("Ax867+0HUgA", cairo_pattern_set_extend) +STUB("Ax940iArzkM", + _ZN3sce7Toolkit2NP9Utilities6FutureISbIcSt11char_traitsIcENS1_15AppSTLAllocatorIcEEEED1Ev) +STUB("AxAWyeoZW30", + _ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody13ticketIdIsSetEv) +STUB("AxD0nee82Qk", _ZN7WebCore16BlobRegistryImplnaEm) +STUB( + "AxDODpdpctw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("AxGBQpD1Rao", fuse_fs_readlink) +STUB("AxGxBABe5lY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEE7get_refEv) STUB("AxHBk3eat04", sceRtcFormatRFC2822LocalTime) +STUB("AxKnV2b5PKU", rgctx_fetch_trampoline_rgctx_56_p) +STUB("AxNpQ9qdn3E", mono_btls_x509_store_ctx_get_error_depth) STUB("AxQ6HtktYfQ", sceHmdInternalGetPuPositionParam) +STUB("AxUhC3zNrhk", issetugid) STUB("AxUlf9UUxCg", sceRegMgrNonSysSetStr) +STUB( + "Axbe+-JvUU8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE8copyFromERKS9_) +STUB("AxbrDa89hBs", _ZNK3WTF3URL4portEv) +STUB( + "Axcq4sz6TBo", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyC1EPNS1_6Common10LibContextE) +STUB( + "AxecKhHYwyI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEEptEv) +STUB("AxgY4OgTRas", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEE7get_refEv) STUB("AxhcqVv5AYU", sceAjmStrError) +STUB("Axj7GY0vnPE", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectIdC1ERS5_) +STUB("AxkrIoArfIs", WKImageCreate) STUB("AxoDrINp4J8", sceAjmInstanceCreate) STUB("Axq72jlliZk", sceVshAvcapReadVideo) +STUB( + "AxqdvHseVv8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE7reserveEi) +STUB( + "AxvWC+6Y1Ss", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "AxxUOHX42n8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEdeEv) +STUB("AxxgdOAerIE", _ZN6WebKit12ChildProcess17enableTerminationEv) +STUB("AxzX3eZ9oLo", _ZN23sceMetadataReaderWriter7StorageD2Ev) +STUB("Ay09172BWJU", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V16StatusEEptEv) +STUB("Ay9aP6nu1jU", _ZN3sce7Toolkit2NP2V23TUS12TusVariablesC2Ev) +STUB("AyBXRSljh4c", _ZN12video_parser13cVideoPathMgv16SetMaclistSuffixEc) +STUB("AyDi1bo2cL0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEC2Ev) +STUB("AyGDhzmvDQA", _ZN3sce7Toolkit2NP2V29Messaging7Request27GetGameDataMessageThumbnailD2Ev) +STUB("AyGRv7M1eCo", uldn_keyValueDisplayName_67) +STUB("AyIo9E7XKTU", + _ZN7WebCore8Settings45setMockCaptureDevicesEnabledInspectorOverrideEN3WTF8OptionalIbEE) +STUB( + "AyO3Dv-nNfs", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V125NatConnectivityProperties11setFromNat1ERKNS1_6Common12IntrusivePtrINS3_19NatConnectivityFromEEE) +STUB( + "AyRMGiZQc8E", + _ZN3sce2Np9CppWebApi14SessionManager2V131GameSessionMemberForReadFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_24GameSessionMemberForReadEEE) +STUB( + "AySE3F7Vpek", + _ZN9Inspector27DOMStorageBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("AyZpHAiHILk", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEEdeEv) STUB("Ayg6PIon2wA", sceAmprAmmMeasureAmmCommandSizeUnmap) +STUB("AyhMognXlkY", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_11TusVariableENS2_IS4_EEEEeqERKS7_) +STUB( + "AyhbVMdfYUk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEC1EPS8_) +STUB("AyhnyEc+VJo", _ZN7WebCore8SVGNames14numOctavesAttrE) STUB("Ayjio+cfSFA", sceUpsrvUpdateCheckCancel) +STUB("AykuNbDgQlE", mono_method_get_signature) +STUB("Ayojz3NaSxQ", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container8fromJsonERKNS_4Json5ValueE) +STUB("AypFIXRyX2o", _ZN3sce7Toolkit2NP19GetTitleNewsRequestC2Ev) +STUB( + "AypW2P1CpvA", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScore26unsetxPsnAtomicOperationIdEv) +STUB("Ayqs7t7iPd4", WKUserMediaPermissionRequestVideoDeviceUIDs) +STUB("Aytjey6FPTU", ERR_peek_error) +STUB("Ayyzf0loiqk", _ZN3sce2Np9CppWebApi14SessionManager2V12ToC2EPNS1_6Common10LibContextE) +STUB("AyzbwzloMDI", _ZN3JSC7Symbols27regExpSearchFastPrivateNameE) +STUB("Az-pLnhSwJM", _ZN3sce2Np9CppWebApi7Matches2V123ResponseMatchStatistics17getTeamStatisticsEv) +STUB("Az0wDZ2JLeY", _ZN9Inspector33AnimationBackendDispatcherHandlerC2Ev) +STUB("Az14s0jb+TI", usearch_getPattern_67) +STUB( + "Az2cmL1XfEA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEEC2Ev) +STUB("Az3tTyAy380", significand) +STUB("Az4H9FlfxCA", FT_Stream_TryRead) +STUB( + "Az4UNqRNZI0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("Az8vuu9IJnM", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_12PresenceInfoEE17getAdditionalInfoEv) +STUB( + "AzAp6IUpnKs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEaSERS7_) +STUB("AzBnOt1DouU", _ZNKSs5_XranEv) +STUB("AzCEQ6SFKtA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEaSERS7_) STUB("AzD4irAcKE4", sceNpUniversalDataSystemEventPropertyObjectSetUInt32) STUB("AzDHKrrOxss", sceNpTrophyNetIsServerAvailable) +STUB("AzDv9cXtbwI", mono_aot_ReactNative_Modules_Vsh_Gct_Telemetryunbox_trampolines) +STUB("AzHFo0vXbUc", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V18RelationEEdeEv) +STUB("AzMZCV33Cuo", _ZN7WebCore8FormData15appendFileRangeERKN3WTF6StringExxdb) +STUB( + "AzPPyQcwi7U", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEneERKS9_) +STUB( + "AzRzzMkPW-g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE8pushBackERKS8_) +STUB( + "AzT2Ip4-1Us", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("AzTARWDb2zs", ulist_addItemEndList) STUB("AzUipl-DpIw", sceSslGetNanoSSLModuleId) +STUB( + "AzWLHJIG-cg", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V117ReputationFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_10ReputationEEE) +STUB("Azc0ughbhN4", _ZN3sce7Toolkit2NP2V27Ranking8TempRank5resetEv) +STUB("AzmGoRWYFRg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEEC1ERKS6_) STUB("AzqoBha7js4", sceNetResolverAbort) +STUB("AzuirRhvygA", ENGINE_free) +STUB("Azw7PDTow7I", _ZN7WebCore6Editor26writeSelectionToPasteboardERNS_10PasteboardE) +STUB("Azw9C8cy7FY", _ZTVSt14overflow_error) +STUB("Azx5O0j6G0I", _ZN4IPMI4impl11SessionImpl12estimateSizeEPKNS_7Session6ConfigE) +STUB("B++OBplHeGw", rgctx_fetch_trampoline_rgctx_50) +STUB("B+2XbdB4Ox0", _ZTVN7WebCore27ContentSecurityPolicyClientE) +STUB( + "B+BrW0vZr5M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "B+DSBSF2LcI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEppEi) +STUB("B+GM09yeizA", _ZN7WebCore6ISOBox5parseERN3JSC8DataViewERj) +STUB("B+KBspxXlDY", _ZN3sce7Toolkit2NP2V210Tournament22TeamVsTeamMatchDetailsaSERKS4_) +STUB( + "B+M3884R9II", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEEC1ERKSA_) +STUB( + "B+NEg+nq3DE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEE7get_refEv) +STUB( + "B+Prickqu5Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEC2EPS8_) +STUB("B+PvaLFAPzY", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_8TempRankEED1Ev) +STUB("B+VIoA9pLb0", _ZN3JSC18BytecodeCacheErroraSERKNS0_10WriteErrorE) STUB("B+aG9DUnTKA", sceAgcDcbDrawIndexOffset) +STUB("B+anQG1XI-A", _ZNK7WebCore17MouseRelatedEvent1xEv) +STUB( + "B+dxNKq-u6A", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEneERKS9_) +STUB( + "B+q26TB+Cgs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEdeEv) STUB("B+q4oWOyfho", sceFontGraphicsCanvasRenewal) +STUB( + "B+qALxbKz48", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEC2EPS8_) STUB("B+vc2AO2Zrc", sceKernelAllocateMainDirectMemory) +STUB("B+xjZJDv5kA", _ZN3sce2Np9CppWebApi11Matchmaking2V15Cause8fromJsonERKNS_4Json5ValueE) STUB("B+yGIX1+BTI", sceNpHeapInit) +STUB("B+zfF7bMswI", _accept) +STUB( + "B-3kcHr7I84", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE5clearEv) +STUB( + "B-4G4Bb04K8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE4sizeEv) +STUB("B-5NUKn65m8", _ZN12video_parser5vpcom15GetHandleStatusE) +STUB("B-Dr-f6tRro", _ZN3sce2Np9CppWebApi6Common17ParameterBaseImplC2EPNS2_10LibContextE) +STUB( + "B-F6JswET-k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEED1Ev) STUB("B-M6KjO8-+w", sceNetSetDnsInfo) STUB("B-QBMeFdNgY", sceCompanionHttpdGet2ndScreenStatus) +STUB("B-RFzJaOexM", ucol_getKeywords_67) STUB("B-WW6mNtp2s", sceUserServiceSetShareDailymotionAccessToken) +STUB( + "B-XA7bNV6zU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEEaSERKSA_) +STUB("B-ZabV536Ag", _ZN15AbstractStorage15FacebookContent8SeekTimeElPl) +STUB("B-aDhqkzvT0", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13boolean6IsSetEv) +STUB( + "B-aOIzMdV0Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEE11get_deleterEv) +STUB("B-cXHQXb2xw", AnnotateIgnoreSyncBegin) +STUB("B-ccnhV5zAU", _ZN3sce2Np9CppWebApi6Common6StringeqERKS3_) +STUB("B-fuSvib9CA", _ZN9Inspector21DOMFrontendDispatcher34powerEfficientPlaybackStateChangedEidb) +STUB("B-mNueVFgAw", glDepthRangef) +STUB("B-tbzFDCT4c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEEC2EPS5_PNS2_10LibContextE) +STUB("B-uwQDniNXM", WKRunLoopStopMain) +STUB( + "B-vNtCpZq1E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEED1Ev) +STUB("B-y0uPyx-Hg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEcvbEv) +STUB("B034ouNvVG8", _ZN3sce7Toolkit2NP2V28Commerce14ProductDetailsC1Ev) +STUB( + "B05DPfoBu5s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEE7add_refEv) +STUB( + "B0ABlx18Qbo", + _ZN3sce2Np9CppWebApi14SessionManager2V136RequestPlayerSessionSpectatorFactory6createEPNS1_6Common10LibContextEPKcS9_PNS5_12IntrusivePtrINS3_29RequestPlayerSessionSpectatorEEE) +STUB("B0CeIhQty7Y", _ZNSt10filesystem18_Xfilesystem_errorEPKcSt10error_code) +STUB( + "B0G0DtSGAQ0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEplEm) +STUB("B0G9dxUrdrk", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE7reserveEi) +STUB("B0HIBmg7JR4", _ZN3JSC19HeapSnapshotBuildernwEm10NotNullTagPv) +STUB("B0K-rCwQW4I", _ZN3sce7Toolkit2NP2V212EventsClient13EventDurationC2Ev) +STUB("B0MuvNsV9e0", _ZN9Inspector18IdentifiersFactory16createIdentifierEv) +STUB("B0OBGdoCuI0", _ZN3sce7Toolkit2NP2V27Ranking10UsersRanks13MAX_NUM_USERSE) +STUB("B0PtaDqaYm0", BgsStorageGetItemsBySearch) +STUB("B0QpOqnqivM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEC2ERKS7_) +STUB( + "B0UQCbiIYRg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("B0VJOvGWnWk", WKPageSetIgnoresViewportScaleLimits) +STUB("B0XStQsKGlc", mono_array_set_generic_method_info) STUB("B0ZX2hx9DMw", sceFiberReturnToThread) +STUB("B0bibF3fc1Q", _ZN7WebCore13GraphicsLayer13addChildAboveEPS0_S1_) +STUB( + "B0cRFLH2VJE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "B0jJcjc1om0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEEaSERKS9_) +STUB( + "B0zyQzPREjo", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getString10Ev) +STUB( + "B1+9tlAndgc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEplEm) +STUB("B12iWctD-b8", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead21getSupportedPlatformsEv) +STUB("B15LDiphlzk", _ZN3sce7Toolkit2NP19JoinPlusInputParamsC2Ev) +STUB( + "B16q2wNrxHU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEC1EPS8_) +STUB("B18ofI3UyAQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEmmEi) +STUB("B19ESkRVY58", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable10unsetValueEv) +STUB("B1FW3aW9sGI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEEC2ERS7_) +STUB("B1GJfvSoSCA", _ZN7WebCore6ISOBox4readERN3JSC8DataViewE) +STUB("B1HFSrttPpo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEED1Ev) STUB("B1K98ubk6V8", sceKernelIsExperimentalBeta) +STUB( + "B1MWEGy6MHc", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser12getaccountIdEv) +STUB("B1Qm4MdV7iQ", + _ZNK3sce2Np9CppWebApi7Matches2V120ResponseMatchResults22competitiveResultIsSetEv) +STUB("B1TWf4bajm4", htopdw) +STUB("B1a1QgRyfug", _ZN9Inspector32DatabaseBackendDispatcherHandlerC2ERKS0_) +STUB("B1aavPm9L5k", Java_java_net_DatagramPacket_init) +STUB("B1b3EppnsYA", _ZN3sce7Toolkit2NP9Interface5init2EPFvRKNS1_5EventEPvERNS1_9NpTitleIdES6_) +STUB( + "B1iiXCqp68s", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("B1k+b1xdmUc", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V18PlatformEEC1EPS6_) STUB("B1kel3gTRSg", sceShellCoreUtilGetUmmStatus) +STUB( + "B1pT-zdDrdg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEplEm) +STUB( + "B1zzwpRvaM8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEEC1Ev) +STUB("B2+7Qkl8Hbo", _ZN7WebCore11MediaPlayerD2Ev) +STUB( + "B2+fuyY8txE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEE11get_deleterEv) STUB("B260o9pSzM8", sceCameraGetMmapConnectedCount) +STUB( + "B27IplPWvms", + _ZThn24_N9Inspector22InspectorDebuggerAgent18getFunctionDetailsERN3WTF6StringERKS2_RNS1_6RefPtrINS_8Protocol8Debugger15FunctionDetailsENS1_13DumbPtrTraitsIS9_EEEE) +STUB( + "B2C25knmUKg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEE3getEv) +STUB("B2EKjeEonCY", _ZN7WebCore8SVGNames15fePointLightTagE) +STUB( + "B2JOIVKjrg8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) STUB("B2KI2AachWE", sceAudioPropagationSystemLock) +STUB("B2KLQSgcySg", _ZNK15AbstractStorage18DailymotionStorage10GetServiceEv) +STUB( + "B2Lbw1jKGlk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEEdeEv) +STUB( + "B2YlK2huTfk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEC1ERKS7_) +STUB("B2ZbqV9geCM", tgammaf) +STUB( + "B2aPBKk-lR0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "B2omeKs6CsM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser9setoffsetEi) +STUB("B2oz8skt2FU", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEE3getEv) +STUB("B2qnIypgeQM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEEC2ERS7_) +STUB( + "B2rIJbqSX5k", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinition17getnpServiceLabelEv) +STUB( + "B2wTrWeUxmE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEC1Ev) +STUB( + "B2x+EWuuTCs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEEC1Ev) +STUB("B2zNei739Gs", _ZN3JSC4callEPNS_14JSGlobalObjectENS_7JSValueES2_RKNS_7ArgListEPKc) +STUB( + "B3+G8xcesFI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEED2Ev) +STUB("B35ZcgDNE60", WKPreferencesGetMediaPlayable) STUB("B36fgKhpfUE", scePadGetFeatureReport2) STUB("B37SruheQ5Y", sceHttp2SslDisableOption) +STUB("B3CCXKKN4Wo", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE3endEv) +STUB( + "B3CxVRR-nOo", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsC2EPNS1_6Common10LibContextE) +STUB( + "B3DOiuch5ME", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEED1Ev) +STUB("B3MQlY0+31s", mono_arch_init) +STUB( + "B3NV6s4VRQ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEEaSERSA_) +STUB("B3OaooM8pTE", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15CategoryInfoSubEE7addressERS3_) +STUB("B3OwcJfuhCQ", _ZN7WebCore16HTMLMediaElement9setVolumeEd) +STUB("B3Q4YpFuW20", _ZN7WebCore10JSLocation15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("B3UHXWhzQ8o", _ZN4Manx19Curl_cookie_getlistEP10CookieInfoPKcS3_b) +STUB( + "B3bK-9rF3Zg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEC2Ev) +STUB( + "B3f7V9Q7RVs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB( + "B3jqkL1Bdbo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEC2ERS7_) +STUB("B3mdrwFTe5E", _ZN3JSC8JSBigInt6equalsEPS0_S1_) +STUB("B3uOVvPk7zU", + _ZN3sce2Np9CppWebApi14SessionManager2V123MemberWithMultiPlatform8fromJsonERKNS_4Json5ValueE) +STUB("B3uU5aDZn94", FT_Stroker_Set) +STUB("B3wg5t9bCdk", glGenSamplers) +STUB("B3ztGesOnVo", monoeg_g_string_free) +STUB("B4-zPp0EATE", FT_Get_Sfnt_Name) +STUB("B4HngCFLJm0", JNU_ThrowNoSuchMethodError) +STUB( + "B4L6Xr6CWRI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEEC2ERSA_) +STUB( + "B4URAOQjWxE", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersD2Ev) +STUB( + "B4Ubcsl3o5U", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEneERKS9_) +STUB("B4UeKdrvlvE", _ZN7WebCore8JSDOMURL9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("B4ZiJnbQ7BE", g_path_get_basename) STUB("B4c4qfm3m2c", sceDbgGetSystemSwVersion) STUB("B4eWCeaW8ec", ScePsmMonoEnvironmentExitcodeGet) +STUB( + "B4eh0wuzR1Y", + _ZN7WebCore27verifyVaryingRequestHeadersERKN3WTF6VectorISt4pairINS0_6StringES3_ELm0ENS0_15CrashOnOverflowELm16EEERKNS_15ResourceRequestEN3PAL9SessionIDE) +STUB("B4ijkp3u6mQ", mono_aot_I18N_Westplt_end) +STUB("B4lsUpqd-Ls", mono_thread_stop) +STUB("B4nfphd97lo", _ZN3sce7Toolkit2NP2V28Presence12Notification14PresenceUpdateD1Ev) +STUB("B4qsrutYs4g", __tsan_external_write) STUB("B4xIPqeRONI", sceKernelWriteModifyProtectCommand) +STUB("B51fHHTA-po", vm_send_SetBreakpoint) +STUB("B59+zQQCcbU", memmove_s) STUB("B59oMLpCo6s", sceSpPthreadExit) +STUB("B5DLOG-aIrY", _ZN7WebCore8SVGNames12panose_1AttrE) +STUB("B5Fg2pmcHI8", getmntinfo) STUB("B5GmVDKwpn0", pthread_yield) +STUB("B5NlgkaeVMw", WKDatabaseManagerGetDatabaseOrigins) +STUB("B5NvWdm5NeA", _ZN3sce16CommonDialogUtil6ServerD0Ev) +STUB("B5ToBf44Rwc", mono_aot_Sce_PlayStation_HighLevel_UI2Platformunwind_info) +STUB( + "B5XenMKoWbY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEppEv) +STUB("B5Z6xoZd+YY", WKPreferencesSetMultithreadedWebGLEnabled) +STUB("B5aHpH1jj90", _ZN3JSC19ControlFlowProfiler37hasBasicBlockAtTextOffsetBeenExecutedEilRNS_2VME) STUB("B5gVeVurdUA", sceAppContentDownload1Expand) STUB("B5ibZI5UlzU", sceHttp2CookieImport) +STUB("B5icjC5-YJ0", _ZNK7WebCore13HitTestResult21innerNonSharedElementEv) +STUB("B5mtoJZP8M0", __ubsan_current_error_report_size) +STUB( + "B5pN2ql9A0k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("B6-MC0jKUTI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEE7get_refEv) STUB("B60nJD7SUE0", sceAppInstUtilAppDestroyMetadata) +STUB( + "B60xhghUcrA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEppEi) +STUB("B62IAjtQimk", _OrbisTextureImage2DCanvas) +STUB("B62c5BF1DtY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEC1Ev) +STUB( + "B637C3-q2+M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEEdeEv) +STUB("B6ANcCn3hAs", _ZNK3sce2Np9CppWebApi14SessionManager2V115SearchCondition11valuesIsSetEv) STUB("B6HVJtDYxEE", sceInvitationDialogTerminate) STUB("B6IXdHGBL-g", sceNpAppLaunchLink2IntCreateRequest) +STUB("B6JXVOMDdlw", + _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE5_FputES3_RSt8ios_basewPKcmmmm) +STUB("B6KaJRpSuIc", _ZN7WebCore4Page23suspendAllMediaPlaybackEv) +STUB("B6LJEGw2W8U", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEEC1ERKS5_) +STUB("B6OMnyK7ouA", _ZN9Inspector24RemoteControllableTarget4initEv) STUB("B6TZJJ+mf9Y", scePatchCheckerGetPackageInfo) +STUB("B6TkLyTY1vc", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScore10getboardIdEv) +STUB( + "B6USapXN+sM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEdeEv) +STUB( + "B6WC6bg4wbY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEEptEv) +STUB( + "B6YyhfkQ+c8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEixEm) +STUB( + "B6ZhAfhgsiw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEptEv) +STUB( + "B6bE1qTByNU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEptEv) +STUB("B6e7H-CKcPQ", _ZN3sce3Xml6StringC2EPKc) +STUB("B6gqPm8EtR8", _ZN7WebCore14SQLiteDatabaseC2Ev) +STUB("B6iefrHukJg", ucsdet_getConfidence_59) +STUB( + "B6ltkP66xoA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEED2Ev) +STUB( + "B6luTT6yBWE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEE7get_refEv) +STUB("B6ogvA4m4fQ", _ZN3sce7Toolkit2NP9NpTitleId14getTitleSecretEv) +STUB("B6tNSkRBbr4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEC2Ev) +STUB( + "B6v3QM3U39Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEppEi) +STUB("B6zWfWto4y4", _ZN3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer13unsetOnlineIdEv) +STUB("B7+CIxAZkLY", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V117ConnectionQualityD2Ev) +STUB( + "B70FxIcn4MY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEC1Ev) +STUB("B73zpTXiw2s", _ULx86_64_get_reg) +STUB( + "B74tP0XybhQ", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_11EntitlementENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB("B75tJbZxjsQ", _ZN23sceMetadataReaderWriter14StorageManager21updateParserInfoTableEv) +STUB("B76Hwhjp9eE", ucln_i18n_registerCleanup_67) STUB("B782NptkGUc", sceRazorCpuGetDataTagStorageSize) +STUB( + "B7Am8rWsQik", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEppEv) +STUB( + "B7L-DfdoG78", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "B7MU9aLz0fg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("B7Sw-iUs7e4", FTA_Remove_Module_type1) +STUB("B7UcjiIEWJA", _ZN7WebCore11HTMLElement12setTranslateEb) STUB("B7bQNq1KPQQ", sceNpPushIntGetBindUserState) STUB("B7cT9aVby7A", sceNpSignalingGetConnectionFromPeerAddressA) +STUB("B7cgFaVqJ8U", _ZN3sce2Np9CppWebApi7Matches2V119RequestInGameRosterD2Ev) +STUB("B7ciVXz8B14", WKPreferencesSetInlineMediaPlaybackRequiresPlaysInlineAttribute) +STUB("B7elLSJ8Wkk", + _ZN3sce2Np9CppWebApi12Leaderboards2V123RecordScoreResponseBody16setTmpSerialRankERKi) +STUB("B7gQbkr+FVU", _ZNK7WebCore10ScrollView14scrollbarModesERNS_13ScrollbarModeES2_) +STUB( + "B7l2QFoeyM4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEixEm) +STUB( + "B7pGVW6pRjU", + _ZN7WebCore15RemoteDOMWindowC1EON3WTF3RefINS_11RemoteFrameENS1_13DumbPtrTraitsIS3_EEEEONS_22GlobalWindowIdentifierE) +STUB("B7qwtk+RTDs", _ZN3sce7Toolkit2NP2V28Matching7Request11SetRoomInfo20MAX_SIZE_ROOM_STATUSE) STUB("B7rBR0CoYLI", sceNpTusGetDataForCrossSaveVUserAsync) +STUB("B7re7PeP12A", _ZN3NTF7Privacy13setDoNotTrackEb) +STUB( + "B7sCJIvsqgw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEE11get_deleterEv) +STUB( + "B7uKA2QQPNU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB("B7w5kvr9Ups", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE7reserveEi) +STUB("B8-G2Ok8Wrk", WKPreferencesGetSubpixelAntialiasedLayerTextEnabled) +STUB( + "B81sOpR2-bM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEE7get_refEv) +STUB("B85Z+whqllM", + _ZN3WTF15base64URLEncodeEPKvjRNS_6VectorIcLm0ENS_15CrashOnOverflowELm16ENS_10FastMallocEEE) +STUB( + "B88G+cjn1ZY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEE7add_refEv) +STUB( + "B89vPOPWopQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEEC2ERSA_) +STUB( + "B8BrtNRzars", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEdeEv) +STUB( + "B8F97XR5SmU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE3endEv) +STUB("B8G++ayAyMc", __asan_report_exp_load16) +STUB( + "B8Kw-m2N8sM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEEC2Ev) +STUB("B8LYOaTudRU", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEEdeEv) +STUB( + "B8c4P1vCixQ", + _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tmPKwSE_) +STUB("B8fPrmmyTPg", g_slist_prepend) +STUB("B8iTw9a7JFU", _ZN7WebCore8SVGNames10widthsAttrE) +STUB("B8jGs8D+GHY", unorm2_getRawDecomposition) +STUB("B8nHW0+LrJ8", JSObjectGetPrivateProperty) +STUB("B8q2yfuN-ps", _Z28Ime_DicDeleteLearnDicsNativei) +STUB( + "B8qZXzgMxoM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE5beginEv) +STUB("B8rOL5rf3A8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEaSERS7_) +STUB( + "B9-ACtQJlDE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEE11get_deleterEv) +STUB( + "B9BhkZjAY2s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE8copyFromERKS9_) +STUB("B9Cj8nRZE3s", _ZN12video_parser18cMp4FFLHndlManager14getFF4MtdfHndlEj) +STUB( + "B9DfrQyYWOE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("B9KU0iisDek", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110ResultTypeEEmmEv) +STUB( + "B9Kfm6rak-o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "B9LgJ8g700s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE8pushBackERKS8_) +STUB( + "B9MuU8U0pGk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEE3getEv) +STUB("B9Q2ay2JEjE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEEcvbEv) +STUB( + "B9Ux+ETlMS8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE5clearEv) +STUB( + "B9ZgR4SGTfU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEaSERKS9_) +STUB("B9f0KrVp8No", _ZN3WTF10initializeEv) +STUB("B9fOyasfPcM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE5clearEv) +STUB("B9gyOyMDTec", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEptEv) +STUB( + "B9lE08nMQWs", + _ZN7WebCore18ImageBufferBackend12putImageDataENS_22AlphaPremultiplicationERKNS_9ImageDataERKNS_7IntRectERKNS_8IntPointES1_Pv) +STUB("B9rn6eKNPJg", _ZTSSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE) +STUB("B9ssGwF-8Rs", _ZNK7WebCore12ChromeClient24hasStablePageScaleFactorEv) +STUB("B9yullCf7f8", _ZNK3sce2Np9CppWebApi14SessionManager2V15Error14getReferenceIdEv) +STUB("BA07kXgwOxA", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification16FriendlistUpdateEE3setEv) +STUB( + "BA5HULZBtrE", + _ZNK3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfile13isInitializedEv) +STUB( + "BA8SaOC5vNc", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB( + "BAA1OKZXON4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEEC2Ev) +STUB("BAB9Ehv8GXU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEC2ERS7_) +STUB( + "BAE63doJm-8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEEC2EPSA_PNS2_10LibContextE) +STUB( + "BAEl5ulW77w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE7popBackEv) +STUB("BAI904Pucyk", _ZN3WTF11Persistence7DecoderrsERNS_8OptionalItEE) +STUB("BALU6L2sL-0", uloc_getDisplayLanguage_67) +STUB("BAYjQubSZT8", tzname) +STUB( + "BAb+dtLjyyk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEppEv) +STUB("BAeP6NR-9z0", WKBundlePageViewportConfigurationAsText) +STUB( + "BAhScPe82vA", + _ZN7WebCore12RenderObject19scrollRectToVisibleENS_19SelectionRevealModeERKNS_10LayoutRectEbRKNS_15ScrollAlignmentES7_NS_31ShouldAllowCrossOriginScrollingE) +STUB("BAiD5liOBlk", _ZN3JSC41DeferredStructureTransitionWatchpointFireD0Ev) +STUB( + "BAlp6U0xLWs", + _ZN3sce2Np9CppWebApi14IdentityMapper2V318PsnWebErrorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_11PsnWebErrorEEE) +STUB( + "BAyVZRrOS24", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE6resizeEj) +STUB("BAz8Ji7lJls", curl_mvsnprintf) STUB("BB+kb08Tl9A", scePthreadRwlockDestroy) +STUB( + "BB0EZXP2iqs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE10setContextEPNS2_10LibContextE) +STUB("BB1y186LP9w", _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead16unsetSearchIndexEv) +STUB("BB2VAEZ47TU", _ZN3sce7Toolkit2NP2V23TUS7TusDataC2ERKS4_) +STUB("BB4gl7SgLdk", FT_Stream_GetShortLE) +STUB( + "BB58ZJQf2D4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEEcvbEv) +STUB( + "BB6Vh01keww", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEdeEv) +STUB("BB8G5Wd9EMs", JVM_AssertionStatusDirectives) +STUB("BBD1CgzV0bM", _ZN3sce7Toolkit2NP2V28Matching26MemberSignalingInformationD2Ev) +STUB("BBIVUqapmKw", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12EventsClient6EventsEE19setCustomReturnCodeEi) +STUB("BBJoU2m+U88", WKPreferencesGetDiagnosticLoggingEnabled) STUB("BBM2NN4R+Xs", sceFacePartsEx) +STUB( + "BBO7LTJsiPg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEmmEi) +STUB( + "BBQqK246aTI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEEaSERSA_) +STUB("BBQurH6VtfA", _ZNK7WebCore7Element15getURLAttributeERKNS_13QualifiedNameE) +STUB("BBRMvk1Qo4w", _ZN7WebCore10Pasteboard10readStringERKN3WTF6StringE) +STUB("BBRc85lKZCs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEEC2EPKS6_) +STUB("BBRhYfYBDgU", FT_Glyph_StrokeBorder) STUB("BBSmGrxok5o", sceSystemServiceGetAppIdOfMiniApp) +STUB( + "BBUCC6HfyHo", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot11getsortModeEv) +STUB( + "BBYJ+BDQWaM", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) STUB("BBbJ92uUdCg", sceNpMatching2LeaveLobby) +STUB( + "BBfG6aynOTQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEE7get_refEv) +STUB( + "BBmhEXX+nA0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("BBoN-+1fjTA", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanityC1Ev) +STUB("BBtBjx9-bMI", _ZN3sce2np8NpCommIdC2Ev) +STUB( + "BBtxzzLnRjc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEE7get_refEv) STUB("BC+OG5m9+bw", sceKernelGetDirectMemoryType) +STUB("BC-SCIsDApU", rgctx_fetch_trampoline_mrgctx_21_p) +STUB("BC5RZVMOin4", _ZL4msgs) +STUB( + "BC9KZo0gV2c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEED2Ev) +STUB( + "BC9kuL2+VLU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEED1Ev) +STUB( + "BCATnoGUjrs", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlot17setnpServiceLabelEj) STUB("BCDA6jn4HVY", sceUserServiceGetGlsTtsSpeed) +STUB("BCFRvYRHgoc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEEC2EPKS6_) +STUB( + "BCI8FlVa2D0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEE5resetEPS6_) +STUB("BCLK+XXiiEM", rgctx_fetch_trampoline_mrgctx_59_p) +STUB("BCUDW4v2m9E", + _ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody20createdDateTimeIsSetEv) +STUB("BCUovNCHJIE", jpeg_idct_14x14) +STUB("BCVNx+Pzk1M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEppEi) +STUB( + "BCYGZySszhU", + _ZN3sce2Np9CppWebApi14SessionManager2V140PostGameSessionsSearchRequestBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_15SearchConditionEEEEEPNS9_INS3_33PostGameSessionsSearchRequestBodyEEE) +STUB("BCZa1egj-TY", mono_aot_Sce_Vsh_ProfileCachejit_code_start) +STUB("BCcUsMKVXRA", WKPreferencesSetIsAccessibilityIsolatedTreeEnabled) +STUB("BCfMrh6R4AY", _ZN3sce3pss4core8graphics14NativeGraphics19AllocateVideoMemoryEjj) +STUB("BCgmZ6fi4Os", ucurr_isAvailable_67) +STUB("BCjX3MYyu+M", _ZN3sce7Toolkit2NP2V28Commerce12SubContainerC2Ev) STUB("BCn4rUfwb1E", sceMusicFwIsEnded) +STUB("BCsl0BxGKnE", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils5IdMapEE3getEv) +STUB("BCsyLvW91To", _ZNK3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead11getTeamNameEv) +STUB("BCvXipfsDpg", EVP_aes_256_gcm) +STUB("BCwmAAHDv6w", _ZN3sce7Toolkit2NP2V27Ranking7Request8SetScore8MAX_PCIDE) +STUB("BCzsWDsn9L0", _ZN7WebCore7Element9offsetTopEv) +STUB("BD-dweT67gw", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE8copyFromERKS7_) +STUB("BD-xV2fLe2M", gamma) STUB("BD6kfx442Do", sceNpMatching2LeaveRoom) +STUB( + "BDBiO4eh5ZA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "BDDT3qQnSN8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEC1EPKS8_) STUB("BDDZwF5kuTc", sceUsbStorageInit) STUB("BDGc8ohuveU", sceKernelGetPrefixVersion) +STUB("BDK0OHPh5wc", __sqrtf) STUB("BDLSyH7y6Mo", sceKernelSetPhysFmemLimit) +STUB( + "BDMQf9z9-Q0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEC2Ev) +STUB("BDPEXRJITt8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEC1ERKS8_) +STUB( + "BDPHwVHGGVU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) STUB("BDUaqlVdSAY", sceScreenShotEnableNotification) +STUB("BDX+d6SozkA", _ZN3sce2Np9CppWebApi6Common6VectorIlE6insertENS2_8IteratorIlEERKlRS6_) +STUB("BDZc9tjWAxw", _ZN3sce2Np9CppWebApi6Common6VectorIjEC1Ev) +STUB( + "BDZsAgnX9Jw", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM10PseudoTypeEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB( + "BDdJ6gZSolk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEppEi) +STUB( + "BDfvHEREmew", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEptEv) +STUB("BDgdYUNKTic", mono_aot_Sce_Vsh_AppContentUtilWrapperplt_end) +STUB("BDiJG6eet1g", mono_runtime_resource_check_limit) +STUB("BDie4qEtKuA", _ZN3sce2np9JsonValue13GetFieldValueEPKc) +STUB("BDt+Gq2a+Rk", _ZN7WebCore11MathMLNames17movablelimitsAttrE) +STUB("BDteGj1gqBY", + _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewPKv) +STUB("BDv+BtxRrDw", _ZN7WebCore12BlobRegistryD1Ev) +STUB( + "BDvV6iGMotE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEC1Ev) +STUB("BDwgsFETJuo", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_19WordFilterSanitizedEEC1Ev) +STUB("BE1xZxTRD64", + _ZN3sce7Toolkit2NP2V24Core7Request11MemoryPools32IN_GAME_MESSAGE_MEM_DEFAULT_SIZEE) +STUB("BE7U+QsixQA", _ZNSt12placeholders3_19E) +STUB( + "BE8ShILG8YA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB("BEErbU1FwoI", + _ZNK7WebCore32FixedPositionViewportConstraints28layerPositionForViewportRectERKNS_9FloatRectE) +STUB("BEFy1ZFv8Fw", copysign) +STUB("BEGvI6L3BqI", _ZN15AbstractStorage14TwitterContent4OpenEit) +STUB("BEK5iZulCwI", _ZN7WebCore12DOMTokenList8setValueERKN3WTF6StringE) +STUB("BEKIcbCV-MU", towctrans) +STUB( + "BEM9Ptmji9U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEEcvbEv) +STUB( + "BENEp-HcOgk", + _ZN3sce2Np9CppWebApi7Matches2V123ResponseMatchStatistics19setPlayerStatisticsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_23ResponsePlayerStatisticEEEEE) +STUB("BER1Mhcfk28", _ZNK3JSC19CacheableIdentifier4dumpERN3WTF11PrintStreamE) +STUB("BEYVp9YbGN8", _ZN10Deprecated25ScriptCallArgumentHandler14appendArgumentEl) +STUB("BEZCWisc+zw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEC1Ev) +STUB("BEcoXHS2cZM", sos_memp) +STUB("BEh38m+5WA8", + _ZN7WebCore21SerializedScriptValueC2EON3WTF6VectorIhLm0ENS1_15CrashOnOverflowELm16EEE) STUB("BEhMn+TyoGA", sceSocialScreenDialogUpdateStatus) +STUB( + "BEl2UvMHC+Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEC1EPNS2_10LibContextE) +STUB( + "BEliazuCx3s", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetInteger6Ev) +STUB("BEoPiW7swz4", HMAC_Init) +STUB( + "BEoTnwMVeoM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE28getResponseInformationOptionEv) +STUB("BEpYI1rpnnw", _ZN7WebCore7Element25ensureUserAgentShadowRootEv) +STUB("BEsBaj8K0Bs", _ZN3JSC13ShadowChicken16functionsOnStackEPNS_14JSGlobalObjectEPNS_9CallFrameE) +STUB( + "BEugniHUcTM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEEcvbEv) +STUB("BEut3UqoLv8", _ZN7WebCore8JSPath2D9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("BEwqFgdKXuA", _ZNK3WTF3URL11encodedUserEv) +STUB( + "BEzlMkuv4WY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEmmEi) +STUB("BEzuHMRRYIs", _ZN3WTF13printInternalERNS_11PrintStreamEj) +STUB( + "BF16BCzT5hQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEC2EPNS2_10LibContextE) +STUB("BF6Hn6R+ZYw", mono_aot_SMDiagnosticsjit_got) +STUB("BF6zFAeRAYA", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setInteger6ERKi) +STUB("BF7vBpqnd3I", _ZN3JSC8Debugger11returnEventEPNS_9ExecStateE) +STUB( + "BFB+8Xz4dms", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot10unsetgroupEv) STUB("BFEwbDCkoNM", sceEsvmEngineMediaKeySessionLoad) +STUB( + "BFH1K+eyICA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEplEm) +STUB("BFJRGOxbuKs", _ZN7WebCore10FileSystem13directoryNameERKN3WTF6StringE) +STUB("BFLU41DtVFE", + _ZN3sce2Np9CppWebApi14SessionManager2V113ErrorResponseC1EPNS1_6Common10LibContextE) +STUB("BFP+XuuORYo", _ZN3JSC14JSGlobalObject25setRemoteDebuggingEnabledEb) +STUB( + "BFQ2dbCyIzM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("BFfBxCfF9BI", _ZN3sce7Toolkit2NP5EventC1Ev) +STUB( + "BFfFKl6E9wE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("BFha7NFunUs", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_18SessionInformationEE17getAdditionalInfoEv) +STUB("BFhaIpDOpSw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEppEv) +STUB( + "BFiUy752Vkg", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicket30unsetxPsnAcceptPlatformNamePs5Ev) +STUB("BFijPohIpnY", _ZN3WTF12AtomicString6numberEm) +STUB( + "BFjFr4bA0uI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEmmEv) +STUB( + "BFlGrz5lIJ0", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsC1EPNS1_6Common10LibContextE) +STUB("BFnY5ZzK7-Q", WKContextSetAdditionalPluginsDirectory) +STUB( + "BFqWU-lS4dg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEE7add_refEv) +STUB("BFt6nFM3lbc", ucurr_openISOCurrencies) +STUB( + "BFvPW0mQWVo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEeqERKS9_) +STUB("BFyDpKjORBg", PSNowGetStatus) +STUB("BFzTW597daY", _ZN3JSC13RuntimeMethod6s_infoE) STUB("BFzmWeUd7kA", sceVisionManagerRequestRecogUtility) +STUB("BG0nGfpkivk", _ZN7WebCore8Settings36setShowDebugBordersInspectorOverrideEN3WTF8OptionalIbEE) +STUB( + "BG1mJXc4T64", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEED2Ev) +STUB( + "BG1wfct4cqc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEC1Ev) +STUB( + "BG5WJCpVwo4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEneERKS9_) +STUB( + "BGBIr55MEWg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEEdeEv) +STUB( + "BGDPQriAEdY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("BGM3os8bUdE", _ZN23sceMetadataReaderWriter8MetadataC2ERKS0_) +STUB("BGOHoGhfYyo", _ZN3sce7Toolkit2NP2V26Trophy16UnlockedTrophies17INVALID_TROPHY_IDE) +STUB("BGPoxAhhmaQ", ubrk_safeClone_67) +STUB("BGUi9Gj3128", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend7FriendsEE5resetEv) +STUB( + "BGaXNQH5MYA", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEEiRNS2_10LibContextEPT_m) +STUB( + "BGbpVa9D+yM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE5beginEv) +STUB("BGd4bkSC3gA", _ZN9Inspector13AgentRegistry13discardValuesEv) +STUB( + "BGjQVtu-vTo", + _ZN7WebCore18StyleSheetContentsC1EPNS_15StyleRuleImportERKN3WTF6StringERKNS_16CSSParserContextE) +STUB("BGlxgyjSzjI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEEC1Ev) +STUB("BGuvmFH0-Uo", WKPageStopLoading) +STUB( + "BGvHZ9VInCE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEEC2ERKSA_) +STUB("BGw928BfU6E", _ZN3JSC10JSFunction11getCallDataEPNS_6JSCellE) +STUB("BH0Hh+FnDFs", mono_aot_Sce_Vsh_Webbrowser_XdbWrapperjit_got) +STUB("BH3wIwvzC6A", u_strrchr32_67) +STUB( + "BH5QR-sR5io", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEE11release_refEv) +STUB("BH5Tfw8jd04", _ZNK7WebCore27TranslateTransformOperation1zEv) +STUB( + "BH6N4Bh3BJ4", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13integer6IsSetEv) +STUB( + "BHA-TnJ9SPQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("BHAPXQ4-8eQ", _ZN3JSC10LinkBuffer34finalizeCodeWithoutDisassemblyImplEv) STUB("BHBgaf-ZEy4", scePigletHeapDump) +STUB("BHCyHXCvQZ8", _ZN7WebCore21mainThreadNormalWorldEv) +STUB( + "BHE96QMi8hA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEC2EPS6_PNS2_10LibContextE) +STUB( + "BHKsAoWGubk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEEC2ERKSA_) +STUB( + "BHLRXt2hn-w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEE7get_refEv) +STUB("BHSBmUC-3yo", _ZN3sce7Toolkit2NP2V23TUS7Request12TusUserInputC1Ev) +STUB( + "BHgtEJLdWkc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE8pushBackERKS8_) +STUB( + "BHkqRWg+K2Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEC1Ev) STUB("BHn83xrF92E", sceCameraOpen) +STUB( + "BHodSFf-lrE", + _ZN3sce7Toolkit2NP2V210Tournament19sendUserMatchReportERKNS3_7Request19SendUserMatchReportEPNS2_4Core8ResponseINS8_5EmptyEEE) STUB("BHouLQzh0X0", sceKernelDirectMemoryQuery) STUB("BHrUtjVRivQ", sceHttpCacheClearAll) +STUB("BHutqch9tAQ", _ZNK7WebCore18RenderLayerBacking26backingStoreMemoryEstimateEv) +STUB( + "BHvfIGdarBQ", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody17getDataStatusListEv) +STUB( + "BHx3f9oTYnA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("BHzcOeptnhU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEE11get_deleterEv) +STUB("BI3Wo2RpVmA", _ZN3sce2np8NpTicket5ClearEv) +STUB("BI4F6Jymk4g", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getPrimaryAudioLang) +STUB("BI59R87qofU", _ZN25MmsFileUpdaterFsOperation13finishTmpFileEv) +STUB( + "BI9o5XhZN0U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEEC2ERSA_) +STUB("BIALMFTZ75I", devname_r) STUB("BICyNlVbb44", sceFsUfsFsckWithMM) +STUB("BIEjU1aGhmo", _ZN7WebCore8SVGNames6fyAttrE) +STUB("BIFGEnYbKVE", _ZN3sce2Np9CppWebApi7Matches2V118RequestMatchPlayerD1Ev) +STUB("BIGLukID1tA", _ZN7WebCore10JSDocument15subspaceForImplERN3JSC2VME) +STUB( + "BILlm3ybHYc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE10setContextEPNS2_10LibContextE) +STUB( + "BINIC8w3PEA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE5emptyEv) +STUB( + "BINwqPnQC7s", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) STUB("BIPexNBSGog", sceAgcDcbCondExec) +STUB("BIQOXd6njEg", _LMBCSData6_67) STUB("BIQaOpcytRc", sceMbusAcquireControlList) +STUB( + "BIaC5d7ta6o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEppEv) +STUB("BIelQlNTFGc", _ZNK7WebCore26HTMLTextFormControlElement12selectionEndEv) +STUB("BIjOgAimSf8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEC1ERKS7_) STUB("BIkMmUfNKWM", sceNpTusCreateNpTitleCtx) +STUB("BIn573xddA8", Java_java_net_PlainDatagramSocketImpl_bind0) +STUB("BInU0JPW7s0", approx) +STUB("BIo07nRbnrs", ubidi_getVisualIndex_67) +STUB("BIqPNz1T+t4", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_6NpUserENS1_15AppSTLAllocatorIS5_EEEE3getEv) STUB("BIqhORVcFnI", sceApplicationSwitchToNeoMode2) +STUB( + "BIuDHYFezwk", + _ZN3sce2Np9CppWebApi14SessionManager2V127GameSessionSpectatorFactory7destroyEPNS3_20GameSessionSpectatorE) +STUB("BIz4JaR7IBM", mono_aot_Sce_Vsh_ShellCoreUtilWrapperunbox_trampolines) +STUB("BJ6dJOeqPtk", _ZN7WebCore9HTMLNames21onaccessibleclickAttrE) +STUB("BJCXJJCi0Zc", _ZN3sce2np3ipc17ServiceIpmiClient17invokeInitServiceEi) +STUB("BJCgW9-OxLA", _ZTISt8ios_base) +STUB( + "BJEeKVvL-ps", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE8pushBackERKS8_) +STUB( + "BJIfYAzuuhk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE3endEv) +STUB( + "BJJI50AQKTM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE4sizeEv) +STUB("BJKpbkn0Rto", _ZN7WebCore8Settings16setImagesEnabledEb) +STUB("BJRODC6xvA4", u_iscntrl_67) +STUB( + "BJRs+hkrUvo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEEC1ERSA_) +STUB("BJaqcDYGAa8", u_errorName_67) STUB("BJgi0CH7al4", sceHttp2SetRedirectCallback) STUB("BJi3VSFP+8s", sceRegMgrCntlDeleteReg) +STUB( + "BJiptujMcFA", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities19unsetnpServiceLabelEv) +STUB( + "BJmW3e8x6KI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEppEi) +STUB( + "BJr12zVoeWY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEEC2ERSA_) +STUB( + "BJw8VOqeLUQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("BJwTxrffVrs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEEC2Ev) +STUB("BK2h2pP0g2U", _ZN9Inspector14InjectedScript18releaseObjectGroupERKN3WTF6StringE) +STUB( + "BKEXfrDxpLY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEE3getEv) +STUB("BKGclfR6HkY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEED2Ev) +STUB( + "BKGu+Lprm1w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEaSERKS9_) +STUB( + "BKIcnpAAfjQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEC2Ev) STUB("BKMEGvfCPyU", sceUsbdAttachKernelDriver) +STUB( + "BKNfHSauA58", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSE_) +STUB("BKQCiAX1qrk", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinition10getboardIdEv) +STUB("BKSCW2bCACA", __cxa_thread_atexit) +STUB("BKSUXMNPO2s", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session12Notification18InvitationReceivedEE3getEv) +STUB( + "BKUn9pJKoas", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEC1EPKS8_) +STUB("BKVwwV971yw", _ZN3sce7Toolkit2NP2V212NetworkUtils7Request22GetDetailedNetworkInfoD1Ev) +STUB("BKdEIHS1zbQ", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetInteger2Ev) +STUB("BKgXHG1tMP0", WKPageConfigurationSetContext) +STUB( + "BKiVEmY4ukU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEplEm) +STUB("BKidCxmLC5w", _Stoldx) +STUB("BKzMBqwj0jc", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_20ChallengeRecvDetailsEEC1Ev) +STUB("BKzl3QflY8o", _ZN3JSC22JSFinalizationRegistry14finishCreationERNS_2VMEPNS_8JSObjectE) +STUB( + "BL0zWc9s8lU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE5emptyEv) +STUB("BL8gQE-Gbnc", _ZN3JSC7Symbols24setStateToMaxPrivateNameE) +STUB("BLDhOJAQYsw", _ZNK3sce2Np9CppWebApi6Common6VectorINS2_6StringEEixEm) +STUB( + "BLE+zQmOkmc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEcvbEv) +STUB( + "BLLsnv5XnE8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "BLMGAUPAgMk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEC1ERKS7_) +STUB( + "BLSu0e93tLg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEEcvbEv) +STUB( + "BLVKL43rpY4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEC1Ev) +STUB("BLVwFfgGWes", _ZN7WebCore15GraphicsContext9setShadowERKNS_9FloatSizeEfRKNS_5ColorE) +STUB("BLWN2--HrXA", _ZN9Inspector18InspectorHeapAgentnwEm) +STUB("BLXbTBn-sg8", mono_aot_Sce_PlayStation_Jsonunbox_trampolines) +STUB( + "BLadnRsV8+Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEC1ERS7_) +STUB("BLbG44GXk8c", _ZN9Inspector28HeapBackendDispatcherHandlerD2Ev) +STUB("BLeUlxPwr5w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEC1Ev) +STUB( + "BLezlnPXU14", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEEC2ERKSA_) +STUB( + "BLfs8ztkRoc", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "BLgO6GslN9U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEEC2ERKSA_) +STUB("BLhZ1h2APgE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEEneERKS7_) STUB("BLo--aicQXs", scePlayReadyContentGetProperty) +STUB("BLyDVSfU8a0", _ZN3sce2Np9CppWebApi7Matches2V120ReportResultsRequestD1Ev) +STUB("BLyftg4Rx14", jpeg_read_coefficients) +STUB("BLylHdCcD2o", _ZNK7WebCore16HTMLInputElement11isTimeFieldEv) +STUB("BLz7Uep60o8", _ZN13MsvMetaEditor20cmUtChangeDateToTimeEPK2tmPj) +STUB( + "BLzPQYlWeXE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEcvbEv) +STUB( + "BM+oEk6QXRU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEEaSERKSA_) +STUB("BM0pVKMuv+o", mono_register_config_for_assembly) +STUB( + "BM2ZMe65ZoM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "BM5uQRao-yA", + _ZN3sce2Np9CppWebApi6Common23UpDownStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEED2Ev) +STUB("BM8Nx5umthA", _ZN12video_parser5vpcom8MemalignE) +STUB("BMDA8TuExXw", il2cpp_domain_get) +STUB("BMJN7feeTqs", _ZN7WebCore14JSVoidCallback11handleEventEv) +STUB("BMP8b5t9wPM", WKPreferencesSetCookieEnabled) +STUB( + "BMP97pExpV0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEC2Ev) STUB("BMR4F-Uek3E", sceSaveDataUmount) +STUB("BMV1qriRuLo", mono_btls_x509_store_ctx_get_current_cert) +STUB("BMV5XFtSkZk", WKBundleFrameEnableThrottlingByTime) +STUB("BMVIEbwpP+8", __floatdidf) +STUB("BMW45a2F-Yk", mono_aot_Sce_Vsh_Np_Trophyunbox_trampoline_addresses) +STUB("BMX1jxc0IG4", mono_exception_from_token_two_strings) +STUB("BMYA9UuBQCo", SSL_CTX_check_private_key) +STUB( + "BMYqy4ygGVQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("BMcXei7NXB8", SSL_get_servername) +STUB("BMjFEB02M-s", _ZN7bmalloc12cryptoRandomEPvm) +STUB( + "BMkYZGbKsZE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEcvbEv) +STUB("BMqsRTJXTRk", RtcGetCurrentAdNetworkTickNative) +STUB("BMsgOkmiz1U", mono_aot_Sce_Vsh_Stickerjit_got) +STUB("BMuRmwMy6eE", _ZTVSt13basic_ostreamIwSt11char_traitsIwEE) +STUB("BMuU85q-3jg", mono_aot_Mono_CSharpunbox_trampolines_end) +STUB("BN-ieaFADxc", + _ZN3sce2Np9CppWebApi14ConnectAccount2V215PSNErrorFactory7destroyEPNS3_8PSNErrorE) +STUB( + "BN9ThaS6KH0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEC2EPNS2_10LibContextE) +STUB( + "BNBXB7Z1hwE", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeOnlineId2AccountIdBatch13isInitializedEv) +STUB("BNC7IeJelZ0", _ZTSh) +STUB("BNDYDpUYVPE", utrace_setFunctions_67) +STUB("BNEChuhP2dU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEED2Ev) +STUB("BNFmm3YBxv0", _ZN3JSC7Symbols25repeatSlowPathPrivateNameE) +STUB("BNHoa9i4g+4", c11) +STUB("BNJJ7H7zm1o", multi_access) +STUB( + "BNWaP6gbDjo", + _ZN7WebCore12EventHandler24logicalScrollRecursivelyENS_22ScrollLogicalDirectionENS_17ScrollGranularityEPNS_4NodeE) +STUB("BNYc2zKvxyM", _ZN3sce7Toolkit2NP2V24Core15StringifyResultD1Ev) +STUB( + "BNZq-mRvDS8", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERPv) +STUB("BNbWdC9Jg+4", j1) +STUB( + "BNhsHJdw7g8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEeqERKS9_) +STUB("BNjEJWwVbtY", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE3endEv) +STUB( + "BNnqV4vsILU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE21intrusive_ptr_add_refEPS9_) STUB("BNowx2l588E", sceKernelGetProcessTimeCounterFrequency) +STUB( + "BNq3N8g5tWI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEC2EPS8_) +STUB("BNt4eT2ocg0", vm_send_CreateDelegateTrampoline) +STUB("BNtUjnBrApE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEEneERKS7_) +STUB("BNvBr7ovc3Q", mono_aot_Sce_Vsh_ErrorDialogUtilWrapperplt) +STUB("BO1r8DPhmyg", _ZNSt12placeholders3_12E) +STUB("BOAlLR6ANos", _ZN27FilePromoteInnerInformationC2EPKc) +STUB("BOBj7UfI96k", _ZN3WTF8JSONImpl9ArrayBaseD0Ev) +STUB( + "BOIKtuT41Pw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEdeEv) +STUB( + "BOJdV8VufQA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEneERKS9_) +STUB( + "BOKKZYXlCec", + _ZN15AbstractStorage15HttpTransaction15ReceiveResponseERSbIcSt11char_traitsIcENS_8StlAllocIcEEERiS6_) +STUB("BOLYyx48MlQ", _ZN12video_parser5vpcom11Utf16ToUtf8EPKwPSsi) +STUB("BOLp9C1MCgk", + _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody22unsetCenterToEdgeLimitEv) +STUB( + "BOMZ+tScMVk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE5clearEv) +STUB("BOQB98GDDvA", _ZN7WebCore14JSNodeIterator9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB( + "BOV1LyWOI30", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEC2Ev) STUB("BOVKAzRmuTQ", sceAvPlayerDisableStream) +STUB("BOaUT257JQE", _ZN7WebCore11MediaPlayerdaEPv) +STUB("BObVGXGG-aE", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEEdeEv) +STUB("BOfNQNz061Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEE7get_refEv) +STUB( + "BOlTjkKvHAc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "BOqOrxjw6zA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEC1EPS7_PNS2_10LibContextE) +STUB("BOtuzpAvdiU", RemotePlaySetProhibition) STUB("BOwybKVa3Do", sceRemoteplayTerminate) +STUB( + "BP+G79hAkeI", + _ZN3JSC17profiledConstructEPNS_14JSGlobalObjectENS_15ProfilingReasonENS_7JSValueERKNS_8CallDataERKNS_7ArgListES3_) STUB("BP2pKoCEwgs", sceSdmaCopyTiled) +STUB( + "BPCC-AI8P7c", + _ZN7WebCore12ChromeClient45inputElementDidResignStrongPasswordAppearanceERNS_16HTMLInputElementE) +STUB("BPD2616kIP4", _ZN3sce2Np9CppWebApi7Matches2V118RequestMatchPlayer15unsetPlayerNameEv) STUB("BPE9s9vQQXo", mmap) +STUB("BPFBUek7PTA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEaSERS7_) STUB("BPFs-TiU+8Q", sceUserServiceSetParentalGameAgeLevel) +STUB( + "BPKS1YfNBlc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEE7add_refEv) +STUB( + "BPNbpUdVw1U", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUseraSERS5_) +STUB( + "BPSPc3pUMJo", + _ZN3sce4Json19InternalInitializer20initialize_staticlibEPKNS0_13InitParameterENS1_10InitOptionE) +STUB( + "BPdaznYGKzQ", + _ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody17unsetJoinDisabledEv) +STUB("BPgk4Vm11OA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEE3getEv) +STUB("BPh+itev3WQ", _ZNK3WTF19MetaAllocatorHandle4dumpERNS_11PrintStreamE) +STUB( + "BPhwn5bGl4A", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessionsC2Ev) +STUB("BPidIRvnZRQ", WKPreferencesSetResourceUsageOverlayVisible) +STUB("BPj7nbdgDGQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEE11release_refEv) +STUB( + "BPpId3sgRzc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEC1ERS7_) +STUB("BPsYUrdqw34", _ZN9Inspector21InspectorConsoleAgentC2ERNS_12AgentContextE) +STUB("BPwhnEHj1-4", _ZNK6icu_678TimeZone5getIDERNS_13UnicodeStringE) +STUB( + "BPylgjzR0mg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEppEi) +STUB( + "BQ-8I4FcCQs", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("BQ350P8PSlY", + _ZN3sce2Np9CppWebApi14SessionManager2V130ResponsePlayerSessionSpectator12setAccountIdERKm) STUB("BQ3tey0JmQM", sceCommonDialogIsUsed) +STUB( + "BQ5GYaLU2Io", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEC2Ev) +STUB("BQ9V6q6BT9k", JVM_GC) +STUB("BQCvVFzFZCg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEEaSERKS7_) +STUB( + "BQFwN58AHC0", + _ZN7WebCore10MouseEvent6createERKN3WTF12AtomicStringEbbNS1_13MonotonicTimeEONS1_6RefPtrINS_11WindowProxyENS1_13DumbPtrTraitsIS7_EEEEiiiiibbbbttPNS_11EventTargetEdtPNS_12DataTransferEb) +STUB("BQIv6mcPFRM", CERT_extractDistinguishedNames2) +STUB("BQKkiZVKZaI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEED2Ev) +STUB("BQL5SKPxOM8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEppEi) +STUB( + "BQLLsk5SkLI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB( + "BQLWa5kt2Gw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEEC2Ev) +STUB( + "BQMAVSbVQDY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEptEv) +STUB("BQNyLN2nA9w", tls_config_new) +STUB( + "BQQLYmOV94w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE21intrusive_ptr_sub_refEPS9_) STUB("BQQniolj9tQ", sceKernelMapDirectMemory2) STUB("BQUi7AW+2tQ", sceSystemServiceChangeUvdClock) +STUB( + "BQW1eGZuwVE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE7reserveEi) +STUB("BQah1z-QS-w", CERT_VerifyCertificatePolicies2) +STUB("BQcwz9m6sO8", _ZN7WebCore9HTMLNames14leftmarginAttrE) +STUB( + "BQnzqBoR0o4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEE21intrusive_ptr_sub_refEPS7_) STUB("BQqV4AR38B8", sceDeci4hCreateHostProcessAndWait) +STUB("BQs6Wk0OSiw", tt_cmap12_class_rec) +STUB("BQsKtlFi8cw", _ZN3sce2np14JsonNumberImpl3SetEl) +STUB( + "BQsgoBaEBMA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("BQtUj7CVrC0", u_getPropertyEnum) +STUB("BQyTr76CMQc", _ZN9Inspector25BrowserFrontendDispatchernaEmPv) +STUB( + "BQygiMy4ziE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEC2EPKS8_) +STUB( + "BQzMkDdoiEc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "BR-+Ow3CfVg", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitationsC2Ev) +STUB("BR0cKcQ5YXM", _ZTVN7WebCore14ResourceHandleE) +STUB("BRAEBSsyFho", _ZN7WebCore19enclosingLayoutRectERKNS_9FloatRectE) +STUB("BRAPUfVBWfk", pshinter_module_class) +STUB("BRIIkNGIP-0", _ZN3sce7Toolkit2NP10IdDatabaseC2ERKNS1_9NpTitleIdEPKc) +STUB( + "BRL3uArmUoI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEC2EPS8_) +STUB( + "BRTrNcnIAHM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEED1Ev) +STUB( + "BRVSrwWFPFo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE6resizeEj) STUB("BRXOoXQtb+k", sceMouseDebugGetDeviceId) +STUB("BRYaC0en9CQ", WKPageRunJavaScriptInMainFrame) +STUB( + "BRbmtp1OoTw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEEC1ERKSA_) +STUB( + "BRikC4X43tk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEEC2Ev) +STUB( + "BRrT1WABDt8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "BRvqbu-jQlk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEdeEv) +STUB( + "BRz1TB80chY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) STUB("BS1S-3Gn6Ic", scePsmUtilGetDebugAssetManagerSize) +STUB("BS2+vonqqwk", _ZN3sce2Np9CppWebApi7Matches2V124ResponseTeamMemberResult11setPlayerIdEPKc) +STUB( + "BS5hjmzOcwQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEdeEv) +STUB("BS6NER4vrvw", + Java_java_security_AccessController_doPrivileged__Ljava_security_PrivilegedExceptionAction_2) +STUB("BSE1GBeHulw", WKPageHideFindUI) +STUB( + "BSFKWe90sAY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEED2Ev) +STUB( + "BSImfzvBM3I", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE21intrusive_ptr_add_refEPS7_) +STUB("BSJMP4YY4Uo", + _ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8_GetvalsIcEEvT_RKSt8_Locinfo) +STUB("BSKR+tn0yyU", _ZN7WebCore18TextureMapperLayerC2Ev) +STUB("BSNGN3uj0hM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_17TitleCloudStorage2V19ConditionEEdeEv) +STUB("BSOczKqxgHI", + _ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest20matchStatisticsIsSetEv) +STUB( + "BSPfYvGi8HM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB("BSSHeveGkP0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEdeEv) +STUB("BSTpZbc2czE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEC1ERS7_) +STUB( + "BSTxAMz3odY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEE3getEv) +STUB("BSVJqITGCyI", _ZNSt7collateIcE7_GetcatEPPKNSt6locale5facetEPKS1_) +STUB( + "BSY7xmxAAN4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEE11get_deleterEv) +STUB("BSe-1Yjjpe8", _ZN7WebCore11DisplayList13SetMiterLimitC1Ef) +STUB( + "BSiF8Ctbf80", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEptEv) +STUB("BSir46mgacE", _ZN6icu_678TimeZone18detectHostTimeZoneEv) +STUB( + "BSjSNBdK+RE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "BSjtrGvfzCA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB("BSmWDIkV4w4", _ZN3sce4Json5Value3setEd) +STUB( + "BSo3kx5dd2E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEED2Ev) STUB("BSoSgiMVHnY", sceNpTrophySetInfoGetTrophyNum) +STUB( + "BSqePly7mz4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEED1Ev) +STUB("BSqmh5B4KTg", SSL_initiateRehandshake) +STUB( + "BT+FFO0RXNI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEED1Ev) +STUB("BT1RirePGAs", _ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE5beginEv) +STUB("BT2WxW2eKsw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEEC1EPS6_) +STUB( + "BT31NxaQo-0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "BT4Ai0rsoBc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEC1Ev) +STUB("BTB0jlUMu4M", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching5RoomsEEC2Ev) +STUB("BTCkyrYLBNE", _ZN3NTF15DNSPrefetchImpl10initializeEv) +STUB( + "BTFHrRJO5DE", + _ZN7WebCore11DisplayList12PutImageDataC2ENS_22AlphaPremultiplicationEON3WTF3RefINS_9ImageDataENS3_13DumbPtrTraitsIS5_EEEERKNS_7IntRectERKNS_8IntPointES2_) +STUB("BTFjoSWI5-Y", u_charDirection) +STUB("BTGp5pnG2es", + _ZN8meta_gen13JpegRetriever10InitializeEP23PromoteInnerInformationN9db_schema9CodecTypeE) +STUB( + "BTJEZklGn7M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE8pushBackERKS8_) +STUB( + "BTKr4C6rJVs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE7popBackEv) +STUB("BTOv1017JlU", WKFrameIsFrameSet) STUB("BTRVfOx7K1c", sceNpManagerIntGetNpEnv) +STUB("BTRrEgoPQWI", u_shapeArabic_67) STUB("BTUvkWzrP68", sceNetAddrConfig6GetInfo) +STUB( + "BTWl0NaPmmY", + _ZN7WebCore15UserInputBridge22handleContextMenuEventERKNS_18PlatformMouseEventERNS_5FrameENS_11InputSourceE) +STUB("BTXZgU0oot8", _ZN7WebCorelsERN3WTF10TextStreamERKNS_12VelocityDataE) +STUB( + "BTa9PYL0204", + _ZN3sce2Np9CppWebApi14SessionManager2V137PostPlayerSessionsResponseBodyFactory7destroyEPNS3_30PostPlayerSessionsResponseBodyE) STUB("BTawastvk7s", sceVideoOutDebugLatencyMeasureGetLatestLatency) +STUB("BTcR+rZoeKo", _ZN3JSC7Symbols30createPrivateSymbolPrivateNameE) +STUB("BTklyiCczcQ", _ZN12video_parser16cVideoContentMp4C1EPNS_18cMp4FFLHndlManagerE) STUB("BTrQnC6fcAk", sceHmdReprojectionInitializeCapture) +STUB("BTsuaJ6FxKM", wmemcpy_s) +STUB( + "BTt-mszokxI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEED1Ev) +STUB( + "BTwVqQdFv7s", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEdeEv) +STUB( + "BU+c8p+jUjQ", + _ZThn16_N9Inspector18InspectorHeapAgent15getRemoteObjectERN3WTF6StringEiPKS2_RNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsIS9_EEEE) STUB("BU0x8ye5-dI", sceContentSearchGetNumOfApplication) +STUB( + "BU2P2iqzI34", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEEC2ERSA_) +STUB( + "BU5wh4+ObWw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "BUH7rHzMP6g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEppEv) +STUB( + "BUP2bHKphL0", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser17setplatformFilterEPKc) +STUB("BUVDl9VOFvA", _ZN7WebCore24DocumentParserYieldTokenC1ERNS_8DocumentE) +STUB( + "BUaoh5EoUNQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEC2Ev) +STUB( + "BUcn6jcACYc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEE7get_refEv) +STUB("BUkvLLlPGXU", + _ZNK3sce2Np9CppWebApi7Matches2V120ResponseMatchResults22cooperativeResultIsSetEv) +STUB("BUmTw7ByILU", JVM_handle_bsd_signal) +STUB("BUmydJk3RJY", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V15Error7getCodeEv) +STUB( + "BUoPJnu1hUY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEED1Ev) +STUB( + "BUpd6fEwIuw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEEC1ERSA_) +STUB( + "BUtv2V1vE9M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEE7get_refEv) +STUB("BUu+PtgYBfM", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_17ActivityFeedStoryEE9constructEPS3_RKS3_) +STUB( + "BUv1GqIOFG0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEE5resetEPS6_) +STUB("BUwiEkA1Qgc", EVP_PKEY_decrypt) +STUB("BUxLDgrIMRA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersC2Ev) +STUB("BUxgEHwFaMU", _ZNSt10_Ref_countIN15AbstractStorage14FacebookFolderEED1Ev) +STUB("BV1JJKGIDV0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Wordfilter16SanitizedCommentEE3getEv) STUB("BV1OcAHhXnA", sceNpEulaDialogOpen) +STUB( + "BV43Lbx9U7c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEEC1ERKSA_) +STUB("BV5sgWMa2to", + _ZN7WebCore9CookieJarC2EON3WTF3RefINS_22StorageSessionProviderENS1_13DumbPtrTraitsIS3_EEEE) +STUB("BV8Pb6uxFqE", _ZN3WTF8JSONImpl5Value7asValueERNS_6RefPtrIS1_NS_13DumbPtrTraitsIS1_EEEE) +STUB( + "BV8uWuK9JwE", + _ZN7WebCore19JSHTMLSelectElement18getOwnPropertySlotEPN3JSC8JSObjectEPNS1_9ExecStateENS1_12PropertyNameERNS1_12PropertySlotE) STUB("BVDkopEoLMk", sceNKWebInitialize) +STUB("BVDsLZ8FHFY", _ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_5RangeE) STUB("BVFg3CWU6Eo", sceAgcDcbSetCfRegisterRangeDirect) +STUB("BVHNrjZZzU4", _ZN7WebCore9HTMLNames21aria_autocompleteAttrE) +STUB("BVHXutaNUW8", delegate_virtual_invoke_imt_m_9) +STUB( + "BVJqooAZAdI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEixEm) +STUB("BVM-POr6asg", uprv_sortArray_67) +STUB("BVPFezY-v1c", _ZN7WebCore17HTMLCanvasElement8setWidthEj) +STUB("BVS3VA9mWqE", _ZN12video_parser13cVideoPathMp411sExtentListE) +STUB( + "BVSsPY0wgMk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEE11release_refEv) +STUB( + "BVTVnl5T93A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEEC1Ev) +STUB("BVVeTxPPx3w", _ZTVN12video_parser17cVideoProfilerMp4E) +STUB("BVVnZEz-y3k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEEC1Ev) +STUB( + "BVXWuV6anbQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "BVYuopqyztY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEE3getEv) STUB("BVafm-M0GNw", sceKernelCreateBudget) +STUB("BVaird4y-R8", _ZN7WebCore14ScrollableAreaD0Ev) +STUB("BVasMrHWkUM", _ZN3sce2np10JsonObject8SetFieldEPKcPKNS0_9JsonValueEPPS4_) STUB("BVdp6O0nF3k", ScePsmMonoGcWbarrierGenericStore) STUB("BVfIVVqL1DA", sceApplicationLocalProcessKill) STUB("BVmR1H8l+XI", sceAmprAprCommandBufferReadFileGatherScatter) +STUB("BVnIFRyY5JA", mono_aot_I18N_Rareunbox_trampolines) +STUB( + "BVo2eF+Hcws", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEE7get_refEv) +STUB("BVpUZ+iitmQ", + _ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody13setEntryLimitERKi) +STUB("BVx2kjgq3x8", _ZN7WebCore11JSImageData4infoEv) +STUB( + "BW2XcDqGFd8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "BW9I5y6SBU0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB("BWAtsvaXToA", _Unwind_SetIP) +STUB( + "BWCk4eDfp38", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEC1Ev) +STUB( + "BWCnpUL+AO0", + _ZN3sce7Toolkit2NP14GameCustomData9Interface10getMessageEPKNS1_28GameCustomDataMessageRequestEPNS1_9Utilities6FutureINS1_18GameCustomDataItemEEEb) +STUB( + "BWDILfRcisI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEC1ERS7_) +STUB( + "BWERyw8Hap8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("BWMWo+5rLW0", _ZN7WebCore23ApplicationCacheStorage5emptyEv) +STUB("BWPBpwMoO30", _ZN7WebCore15ScrollAlignment19alignToEdgeIfNeededE) +STUB( + "BWPEzsnuc7o", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10getString7Ev) +STUB("BWPTxURFKm4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEC2ERKS7_) +STUB("BWSwSWP+008", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEEC2EPS6_) STUB("BWY-qKM5hxE", sceHmdGet2DEyeOffset) +STUB("BWaGYEsV8s8", GCC_except_table180) +STUB("BWgXtAe6mPM", _ZN9Inspector21DOMFrontendDispatcher19didAddEventListenerEi) +STUB( + "BWkC15Xkh7U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEEaSERS9_) +STUB( + "BWl9fHlVl7E", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("BWonN1CGmg8", _ZN3sce7Toolkit2NP2V24Core7Request11MemoryPoolsC2Ev) +STUB( + "BWqAou81qN8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEcvbEv) +STUB( + "BWraUHsMpHY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEC2ERKS8_) +STUB("BWuTVzjB040", mono_aot_Sce_Vsh_Passcodeunwind_info) +STUB("BWxQa08OaN4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEEplEm) +STUB("BX9yrnbQ6aY", _ZN7WebCore21BlobDataFileReference4sizeEv) +STUB("BXJ+pZ3BaeM", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEEcvbEv) STUB("BXW9b3R1Nw4", sceNetCtlGetWifiType) +STUB("BXbQ9Rmo4Ck", _ZN3JSC22EdenGCActivityCallbackD2Ev) +STUB("BXbijPH89Sc", _ZN7WebCore19InspectorController4showEv) +STUB("BXgtCsp0EDU", _ZN7WebCore28InspectorFrontendClientLocal8dispatchERKN3WTF6StringE) +STUB("BXktjyzVytA", ldigs) +STUB("BXmn6hA5o0M", __mulsf3) +STUB( + "BXmuwIQiwZ0", + _ZN7WebCore10PingLoader19sendViolationReportERNS_5FrameERKN3WTF3URLEONS3_3RefINS_8FormDataENS3_13DumbPtrTraitsIS8_EEEENS_19ViolationReportTypeE) +STUB("BXpm0S4olVo", _ZNK3WTF8WallTime4dumpERNS_11PrintStreamE) +STUB( + "BXqKVhfs5R4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE7popBackEv) +STUB("BXuyUEGOPKA", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus11setObjectIdEPKc) +STUB("BXv1hrUMLb8", uprv_calloc_67) +STUB("BXywXAy0lGk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEC1ERS7_) +STUB( + "BY-x-Zb4ONw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEED2Ev) +STUB("BY0DYQGNv3g", u_getMainProperties_67) +STUB( + "BY0ySPm9pzI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEptEv) +STUB( + "BY1jyWLZrcA", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi25joinPlayerSessionAsPlayerEiRKNS4_36ParameterToJoinPlayerSessionAsPlayerERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_52PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB( + "BY8cHN5DFC4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEE5resetEPS9_) STUB("BYFjoQE6RpE", sceMusicFwSetLoop) +STUB("BYGiANMl42A", ucsdet_getLanguage_67) STUB("BYIZGKm6bO4", sceNpBandwidthTestGetStatus) +STUB( + "BYKbjzScONo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("BYKcIs2EBF0", jround_up) STUB("BYM3L--ojzI", pthread_resume_np) +STUB("BYPEz1X2hjw", mono_aot_Sce_Vsh_Webbrowser_XutilWrapperunbox_trampolines) +STUB("BYTfz0ZpkvQ", mono_aot_System_Threading_Tasksjit_code_start) +STUB( + "BYVCDLl0aMI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "BYXjYjZQELU", + _ZN9Inspector14InjectedScript21getInternalPropertiesERN3WTF6StringERKS2_bRNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime26InternalPropertyDescriptorEEENS1_13DumbPtrTraitsISC_EEEE) +STUB("BYZVTUTk-DI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEED1Ev) +STUB("BYZhwit3CYc", mono_field_get_flags) STUB("BYcSvEsINWU", sceAgcDcbSetMarkerSpan) +STUB("BYcXjG3Lw-o", _WGenld) +STUB( + "BYdOf8FrP2U", + _ZN3sce2Np9CppWebApi7Matches2V120ReportResultsRequest15setMatchResultsERKNS1_6Common12IntrusivePtrINS3_19RequestMatchResultsEEE) +STUB( + "BYeVtgnvZDk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "BYf23Ou7CcA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEixEm) +STUB("BYiteQcFpFI", __cxx_global_var_init .1) +STUB("BYkkgnu9RQA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEixEm) STUB("BYmJ-iMswng", sceBgftServiceIntDownloadUnregisterTaskAll) +STUB("BYq6zmhI1Hs", udata_readInt16_67) +STUB("BYvEJzM7AnY", _ZN3sce2Np9CppWebApi6Common8IteratorIdEC1EPd) +STUB( + "BYvrp+qY2SI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEixEm) +STUB( + "BZ0iUuqTYfM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE5emptyEv) STUB("BZ0olR8Da0g", sceBgftServiceIntInit) +STUB( + "BZ0p8VjHE4E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEmmEi) +STUB("BZ4Av55PWoA", JNU_ThrowNoSuchMethodException) +STUB("BZ9YIj5FwaI", + _ZN3sce2Np9CppWebApi7Matches2V122RequestMatchStatistics21unsetPlayerStatisticsEv) +STUB( + "BZBSl5p+3Pw", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB("BZCFjYmSXCg", EVP_CIPHER_CTX_new) +STUB("BZEcdytvUYM", _ZN7WebCore12EventHandler18accessKeyModifiersEv) +STUB("BZFvjfb9xDk", cairo_set_source_rgba) STUB("BZGAf+F0blI", sceSystemServiceGetAppLaunchedUser) +STUB( + "BZHh57soCP8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEC2Ev) +STUB("BZPe5Oe6WLc", __multadd_D2A) +STUB("BZY5mpL0Syk", UCNV_TO_U_CALLBACK_SKIP) +STUB("BZga-sUr6X8", _ZN7WebCore8SVGNames11targetXAttrE) +STUB( + "BZh11XKQBP4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEC2Ev) +STUB("BZj-LE0sIHA", JSContextGroupSetExecutionTimeLimit) +STUB( + "BZmCEHQ-pVY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEppEv) +STUB("BZmaPvVcqUE", ucurr_countCurrencies_67) +STUB( + "BZnP+GW44Zs", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountId13isInitializedEv) +STUB( + "BZuHI3L7k9M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEC2EPNS2_10LibContextE) +STUB("BZx2PqN5SsE", JSValueIsUndefined) +STUB("Ba+zrutzkZc", mono_aot_Sce_Vsh_Orbis_BgftAccessorunwind_info) +STUB("Ba7cIC6zfKE", + _ZN3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayerC1EPNS1_6Common10LibContextE) +STUB("BaILhlzfYu4", _ZN7WebCore15startOfSentenceERKNS_15VisiblePositionE) +STUB("BaOKcng8g88", module_start) +STUB( + "BaZBggby8-s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEEC1ERSA_) STUB("Bagshr7OQ6Q", sceNpTrophy2CreateContext) STUB("BaihFa8LBw0", sceNpAppInfoIntCheckServiceAvailabilityAll) +STUB("BakQN1HuHXM", _ZN3sce7Toolkit2NP2V210Tournament17TournamentEventIdD2Ev) +STUB("BamOsNbUcn4", _ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE) +STUB("BatAeK1Du4g", uregex_getText_67) +STUB( + "Bawh-3xY52c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEEaSERKSA_) +STUB("Bb0y7BWPBp0", u_getCombiningClass_59) +STUB("BbCPZT3BuHU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEC2ERKS7_) STUB("BbCZjJizU4A", sceFontWritingSetMaskInvisible) +STUB("BbD+vaVb5MQ", mono_aot_I18Njit_code_start) +STUB( + "BbGpp-xS1FE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEneERKS9_) STUB("BbI8si4o-fA", sceAgcDriverSysSubmitFlipHandleProxy) +STUB("BbI9+Kl9WfY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEEaSERKS7_) +STUB( + "BbIuzwGAxhk", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V19RatingApi21ParameterToPostRating9terminateEv) +STUB("BbJ4naWZeRw", + _ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE5_InitERKSt8_Locinfo) +STUB("BbKt5wzlOsU", _ZNK3WTF6String7toFloatEPb) +STUB("BbLWFSkBPRk", _ZNK7WebCore11FrameLoader8loadTypeEv) STUB("BbOT4vBwAjs", sceAudioPropagationResetAttributes) +STUB("BbV7n8cLfAc", ucnv_setFromUCallBack_67) +STUB( + "BbWzZZrtHRs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEC2Ev) +STUB("BbXxNgTW1x4", _ZNKSt10bad_typeid4whatEv) +STUB("BbbfOTSVhWk", _ZN3sce2Np9CppWebApi11Matchmaking2V15Cause16unsetReferenceIdEv) +STUB("Bbc2pDcwP0g", _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRankingC1Ev) +STUB( + "BbdP+2RV8SI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE3endEv) +STUB("BbiDee1C8AE", _ZN7WebCore28InspectorFrontendClientLocal31constrainedAttachedWindowHeightEjj) +STUB( + "BbkSnMoL0xM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE5beginEv) +STUB("BbkdawQaHyg", _ZN15AbstractStorage14YoutubeContent5CloseEv) +STUB("Bbrs+XVuf+o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEC2EPS8_) +STUB( + "Bbwhmpr2A34", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEEaSERSA_) +STUB( + "Bc+KMenfc50", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEC2EPNS2_10LibContextE) +STUB( + "Bc+OUtviQsc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEC2Ev) +STUB("Bc+QBlnP+iI", mono_btls_bio_indent) STUB("Bc0S7C2y0Ng", sceKernelRestoreApp) +STUB( + "Bc2H3DgtA68", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEEC2EPS8_PNS2_10LibContextE) +STUB("Bc3rL5ELD-A", glGetAttachedShaders) +STUB("Bc4ozvHb4Kg", _ZGVNSt10moneypunctIcLb0EE2idE) +STUB( + "Bc58Bkvu1WU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEmmEv) +STUB( + "Bc8Q1CwuzHo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE8pushBackERKS8_) +STUB("BcCD3V30xsk", _ZNK3sce3Xml13AttributeList9getLengthEv) +STUB("BcCwWsJj8vo", _ZN3sce7Toolkit2NP2V29Messaging7Request27GetGameDataMessageThumbnailC2Ev) +STUB( + "BcInWqzYnd8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEC1Ev) +STUB( + "BcInr0uZ2VI", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12getInteger10Ev) +STUB("BcM8Z1gMYJE", _ZN3JSC10Identifier4fromEPNS_9ExecStateEi) +STUB("BcSL9PGBRzg", WKRenderObjectCopyElementID) +STUB("BcT3QQZ44HU", WKSerializedScriptValueGetTypeID) +STUB("BcYfhsAI-y0", WKContextSetStorageAccessAPIEnabled) +STUB( + "BcZJSvD7dpw", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody6toJsonERNS_4Json5ValueEb) +STUB("BcbHFSrcg3Y", _ZNSt6locale7_Locimp9_MakewlocERKSt8_LocinfoiPS0_PKS_) +STUB("BchENGJOUTk", _ZN23sceMetadataReaderWriter15ParserInterfaceC1ERKS0_) +STUB( + "BciGnJSuegU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEC1ERS7_) +STUB("BcmAcgljv78", _ZN23sceMetadataReaderWriter8MetadataC1ERKS0_PFPvmEPFvS3_E) STUB("BcoPfWfpvVI", sceNgs2JobSchedulerResetOption) +STUB("BcrC80L8i0Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEED1Ev) +STUB("BcrUHwrvOuk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEE7add_refEv) +STUB( + "BcsH4EyLKJk", + _ZN3sce7Toolkit2NP2V210Tournament18getRegisteredTeamsERKNS3_7Request18GetRegisteredTeamsEPNS2_4Core8ResponseINS3_15RegisteredTeamsEEE) +STUB("Bd-EIoPzXJs", _ZNK9Inspector14ConsoleMessage9argumentsEv) +STUB("Bd7bMuLrAqE", _ZNK3sce2np8JsonBool7GetBoolEv) +STUB( + "BdK9-MAv6e4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "BdReXHq8uUM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("BdfPxmlM9bs", _ZTSSt7collateIwE) +STUB("BdmkDCjE3fE", _ZNK7WebCore11MediaPlayer13platformLayerEv) +STUB("Bdn6SlO1+NQ", png_write_info) +STUB("Bdn6e4QmW4Y", _ZN7WebCore9HTMLNames8tbodyTagE) +STUB( + "Bdoun7esBs8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEdeEv) STUB("BdykpTwq2bs", sceNpInGameMessageAbortHandle) +STUB( + "Bdz3MQHYkLE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE10setContextEPNS2_10LibContextE) STUB("BdzbUHOEoO4", sceNpManagerIntLoginGetWebAccessToken) +STUB("Be-QgsXW00k", Java_com_sony_gemstack_org_havi_ui_HBackgroundImageDecoder_getImageData) +STUB( + "Be1fGLBPbcs", + _ZN7WebCore21SerializedScriptValueC1EON3WTF6VectorIhLm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("BeA34F6FVUk", _ZN4Manx11MediaPlayer8hasAudioEv) +STUB("BeAKGfKUauE", GCC_except_table407) +STUB("BeCK+4Cj5gA", ucptrie_internalU8PrevIndex_67) STUB("BeCdfnNLrA8", sceKernelSubmitAIO) +STUB( + "BeMQXzOHAYQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEE7add_refEv) +STUB("BeOKdUmvac8", mono_emit_native_call) +STUB("BeQa0My06nI", + _ZN3JSC8JSObject25getOwnPropertySlotByIndexEPS0_PNS_9ExecStateEjRNS_12PropertySlotE) +STUB("BeUBlVoWDTw", _ZN3sce2np14HttpConnectionC1EP14SceNpAllocator) +STUB( + "BeXLdBhmnl0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEeqERKS9_) +STUB("Bea-ElS5IZA", _ZN9Inspector22HeapFrontendDispatchernaEmPv) +STUB( + "Bebafrn-Ku4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEppEi) +STUB( + "Beo-ugOSjeI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEppEv) +STUB( + "Bep+2anZqBU", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "BepH5MkiEJM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEC1Ev) +STUB("BetsiFQjxSU", _ZN9Inspector18InjectedScriptBaseD0Ev) +STUB( + "BetvGamJgGo", + _ZNK3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead15getInvitationIdEv) +STUB("BeuQ-Tiwy6Y", mono_set_jit_tls_offset) +STUB( + "BexES8cw7dA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEptEv) +STUB("BexXP1Jkck0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEEeqERKS7_) +STUB("Bf-1cIE-brw", _ZN7WebCore16TrackPrivateBaseD2Ev) +STUB( + "Bf0YSfcZUTc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEED1Ev) +STUB("Bf0pzkQc6CU", SSL_setCookie) +STUB("BfAsxVvQVTQ", vwarnc) +STUB("BfCm8qZTAgM", fuse_new) +STUB("BfDWzeH4rxo", _ZN4Manx16Curl_cookie_initEP13SessionHandlePKcP10CookieInfob) +STUB( + "BfFkLJnwNwo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "BfGzm6w1Uo4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEeqERKS9_) +STUB("BfMdOqq0X9I", + _ZThn16_N9Inspector22InspectorDebuggerAgent15getScriptSourceERN3WTF6StringERKS2_PS2_) +STUB( + "BfMyyXLVTjg", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectatorC1ERS5_) +STUB("BfOWosLa0hk", ubidi_setClassCallback_67) +STUB("BfOYxPpqlW0", _ZN7WebCore9HTMLNames10scopedAttrE) +STUB("BfRQOqnOth0", _ZN3sce7Toolkit2NP2V23TUS14DataContentionC2Ev) +STUB("BfT4dv3a02o", _ZN7WebCore11FontCascade11setCodePathENS0_8CodePathE) STUB("BfYmnUyy0ew", sceImeBackendClose) +STUB( + "BfaOut3W4GI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE3endEv) +STUB( + "BfnfDWgSIT8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEplEm) +STUB("BfntUeA0JTQ", ucase_hasBinaryProperty_67) +STUB("BfrQIv8VJU4", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11ProductInfoEE9constructEPS3_RKS3_) +STUB("BfwuAI1AZuo", WTFAnnotateBenignRaceSized) +STUB( + "Bg+ekiciYNs", + _ZN7WebCore18JSHTMLImageElementC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_16HTMLImageElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "Bg0W3dp-rPc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE8copyFromERKS9_) +STUB( + "Bg17ifDbgNA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("Bg5C-OvUlPc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V124RequestCooperativeResultEEeqERKS7_) +STUB("Bg7YvhX-epE", _ZN3sce7Toolkit2NP2V27Session14InvitationDataC2Ev) +STUB("BgAXdUz+i6I", uregex_start64_67) +STUB( + "BgDRJGy2eUs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEmmEi) +STUB("BgDtc93upnM", _ZN3sce2Np9CppWebApi6Common6String6appendEPKc) +STUB("BgFp4vX14gM", uprv_decNumberClassToString_67) +STUB("BgJDgr16f0k", _ZNK3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer12getJoinStateEv) +STUB("BgJaal3eOJg", _ZN7WebCore15HTTPHeaderFieldD2Ev) STUB("BgM3t3LvcNk", sceGnmValidateDisableDiagnostics2) STUB("BgOJY0UvOQ4", sceSysUtilSendAddressingSystemNotificationWithUserId) +STUB( + "BgT+jn7Q7Oo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE3endEv) +STUB("BgUMBGvhATU", FT_Outline_EmboldenXY) +STUB("BgZcGDh7o9g", _ZNSt9exceptionD1Ev) STUB("BgaEJWAV0Fk", sceRnpsAppMgrGetAppInfoDebugString) +STUB("Bged4DzmfPM", rgctx_fetch_trampoline_rgctx_87_p) +STUB("BgfN1o2sOSI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend16FriendsOfFriendsEEC2Ev) +STUB("BggAgo-oWFI", mono_aot_Sce_Vsh_RequestShareScreenplt_end) +STUB("BghkhNf6ax4", _ZN7WebCore32serializationForRenderTreeAsTextERKNS_9DisplayP3IfEE) STUB("BgjPgbXKYjE", sceSystemServiceActivateHevcInit) +STUB( + "BgkVJv6SfYk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "Bglpxc+nY8Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE8copyFromERKS9_) +STUB("BgnV9ciabNs", WKPluginInformationPluginURLKey) STUB("BgnrThNspOQ", sceShareUtilityAdvanceGetServiceInfo) +STUB("BgqMT+9JnBk", _ZN7WebCore26ISOProtectionSchemeInfoBox11boxTypeNameEv) +STUB("BgtQxH2QsUY", mono_aot_Sce_Vsh_Friendunbox_trampolines_end) +STUB("Bgu7pE3ieUs", mono_aot_Sce_Vsh_SystemLoggerWrapperjit_code_start) +STUB( + "Bgv1VEb4Ras", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE5clearEv) +STUB( + "Bgwja-kN4Ro", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEC2EPS8_) STUB("Bh-+3oc6euE", sceUpsrvStartUpdateSession) +STUB( + "Bh0wIDtgiOs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE4sizeEv) +STUB( + "Bh1JhQgxCiE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEE3getEv) +STUB("Bh25G2uY2-o", __asan_report_load8_noabort) +STUB("Bh5TmAk9Wqo", _ZL10read_valuecPPh) +STUB( + "Bh62QuOqJ9o", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "Bh6Gp0ySKZU", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13integer1IsSetEv) +STUB( + "Bh7kyHndjrU", + _ZN7WebCore18TextureMapperLayer11setChildrenERKN3WTF6VectorIPS0_Lm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB( + "BhCWMvGdH+I", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12unsetString7Ev) +STUB("BhCcIlyHMrk", u_istitle) +STUB( + "BhD3VeZzpPs", + _ZN9Inspector23CanvasBackendDispatcher12updateShaderElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "BhD9cBcAGJk", + _ZN3JSC8Bindings13RuntimeObjectC1ERNS_2VMEPNS_9StructureEON3WTF6RefPtrINS0_8InstanceENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "BhEG22x+fao", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEneERKS9_) +STUB("BhGJXRKJg5c", _ZN3JSC19HeapSnapshotBuildernaEm) +STUB("BhGX3nzI6QI", _ZN9Inspector18InjectedScriptBaseC2ERKS0_) +STUB( + "BhHYetdF2dQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEC2Ev) +STUB("BhM73vZ2868", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V113AttributeTypeEEppEv) +STUB("BhMk5-CKH2g", _ZN3JSC7Symbols17anchorPrivateNameE) +STUB("BhNAR5P2VEg", curl_multi_socket_all) +STUB( + "BhPoV5kL7ZA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEC2ERKS7_) STUB("BhRxR+R0NFA", sceUserServiceSetSharePlayResolutionHost) +STUB( + "BhS3iiQHCVQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBody12getAccountIdEv) +STUB("BhT2pp1pncw", _ZN3sce7Toolkit2NP2V28Commerce12SubContainer5resetEv) +STUB( + "BhT42GbydjU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEEneERKS7_) +STUB( + "BhTQo5RgrSA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("BhU5ZMbWlAs", uprv_getNaN) +STUB("BhaIhoxXkGk", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container14getDisplayNameEv) +STUB("Bhm0RD1LynM", mono_aot_Sce_Vsh_VideoFramework_Platformjit_code_end) +STUB("Bhm8Injl0KA", FT_Outline_Copy) +STUB("BhrEyM1kGW8", mono_property_get_set_method) +STUB( + "BhsARdSbrEA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE8pushBackERKS8_) +STUB( + "Bhw0lrtHsR0", + _ZN3sce2Np9CppWebApi12Leaderboards2V112ErrorFactory6createEPNS1_6Common10LibContextEiPKcPNS5_12IntrusivePtrINS3_5ErrorEEE) +STUB("Bi+jQHr8S80", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEEC1EPNS2_10LibContextE) +STUB("Bi-QrrFjvs4", + _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets17getplatformFilterEv) +STUB("Bi4hN2Y66TM", _ZN9Inspector15RemoteInspector27updateHasActiveDebugSessionEv) +STUB("Bi5DYqNEpw4", _Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm14TcaPerfCounterE) +STUB( + "Bi81dRG6HAQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEEC1ERKSA_) +STUB( + "Bi8a6ZX6QLE", + _ZN7WebCore14FrameSelection12setSelectionERKNS_16VisibleSelectionEjNS_23AXTextStateChangeIntentENS0_19CursorAlignOnScrollENS_15TextGranularityE) +STUB("Bi9HDY+ODiQ", mono_check_corlib_version) +STUB("BiHHifIvX88", cpuset_setid) +STUB( + "BiHSfPqk5dU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "BiJVPVKL2io", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEEptEv) +STUB("BiM6ri5fwo8", _ZN3WTF13printInternalERNS_11PrintStreamEy) +STUB( + "BiO6g8zo698", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEC2Ev) +STUB("BiOSYw1pQXM", __tsan_atomic32_fetch_nand) +STUB("BiT7PuD3NpY", _ZN3sce16CommonDialogUtil6ServerC2EPKcmis) +STUB("BiXAyp5Mp1I", ubrk_setUText_59) +STUB("Bin7e2UR+a0", _ZNSt9exception18_Set_raise_handlerEPFvRKS_E) +STUB("BisNcGBfuD4", __rela_dyn_start) +STUB("Bivech5VpYM", YGNodeStyleSetFlexBasis) +STUB( + "Bizxq50TMok", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEptEv) +STUB("Bj+3WfwFN2A", + _ZNK7WebCore21ContextMenuController21checkOrEnableIfNeededERNS_15ContextMenuItemE) +STUB("Bj1A9t6x7kc", _ZN3sce2Np9CppWebApi7Matches2V123ResponseMatchStatisticsD2Ev) STUB("Bj2oUqp84J0", sceVnaUtilGetVoiceInputStatus) +STUB("Bj7pDi5WGns", _ZN12video_parser5vpcom7_MallocEj) +STUB( + "BjEyQXjovuc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEC1EPNS2_10LibContextE) +STUB("BjG+5vptxRY", _ZN4Manx6Cookie6createEPKcS2_S2_) +STUB("BjJ6okF8bfg", _ZN3sce7Toolkit2NP2V212NetworkUtils16NetStateDetailedC2ERKS4_) +STUB("BjLA08Ot7N4", _ZNK7WebCore18AdClickAttribution3urlEv) +STUB( + "BjVIsRySEKI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE21intrusive_ptr_add_refEPS9_) +STUB("BjYGyklZu78", WKInspectorClose) +STUB("Bja9Lr9ZuyA", _ZN7WebCore8Settings42setHiddenPageCSSAnimationSuspensionEnabledEb) +STUB("BjfQwTeHQHA", rgctx_fetch_trampoline_mrgctx_35_p) +STUB( + "BjjhIuLpCAY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE6insertENS2_13ConstIteratorIS9_EERKS9_RSC_) +STUB( + "BjmEbtwvqQs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEcvbEv) STUB("BjsreFAfJzo", sceMoveTrackerCameraUpdate) +STUB( + "BjtGD43wUK8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEaSERKS9_) +STUB("BjtxPGQ2-fQ", _ZN3sce3Xml3Dom8NodeListD2Ev) +STUB("BjuJvr7WLjk", monoeg_g_timer_stop) +STUB("BjwTHxBa4gc", WKRegistrableDomainCreate) +STUB("Bk1N2NiKOnk", g_config) +STUB( + "Bk1P+ArvTU0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE7popBackEv) +STUB("Bk3H5AlkwIM", WKKeyValueStorageManagerGetOriginKey) +STUB( + "Bk6-WRzBupk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE8copyFromERKS9_) +STUB( + "Bk7Ooj3PyXk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "Bk8bBZw+MIA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEEcvbEv) +STUB( + "BkCCFj2cqAw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("BkNALuQPzPU", getSockListFromCommInfoList) STUB("BkOBCo0sdLM", sceUserServiceGetPbtcThursdayHoursEnd) +STUB("BkROgbo51Jw", _ZN3sce2Np9CppWebApi14SessionManager2V125ResponseGameSessionPlayerD2Ev) +STUB( + "BkWHelepXxE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE5clearEv) +STUB("BkbsZWOc6Uo", upvec_getArray_67) +STUB("Bkc5Df9+EDM", _ZN3JSC7Symbols21allSettledPrivateNameE) +STUB( + "BkiRDIFBIT0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEC2EPS8_) STUB("BkimQeX118I", sceDeci4hDrfpOpendir_fuse_fullpath) STUB("BkjBP+YC19w", sceFontCharacterRefersTextNext) +STUB("BkmXm7XvXJI", _ZNK7WebCore8Document10compatModeEv) +STUB("BkokKC24ETU", jinit_color_deconverter) +STUB("Bkpc599WnwA", sqlite3_value_bytes) +STUB("BkuxOAPlMMw", _ZN3sce2np13RingBufMemory4InitEm) +STUB( + "BkxNuo1FyGM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEppEv) +STUB( + "Bl0P+2yH4sI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEC1ERKS7_) +STUB("Bl5m20wA4HU", _ZN7WebCore12newTextCodecERKNS_12TextEncodingE) +STUB("Bl6rAJiQGWI", + _ZN7WebCore16FrameLoadRequestC2ERNS_5FrameERKNS_15ResourceRequestERKNS_14SubstituteDataE) +STUB( + "BlBXfoS4Mfw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB("BlCTfoiwt1w", _ZN3sce7Toolkit2NP2V28Presence16PlatformPresence19MAX_SIZE_TITLE_NAMEE) +STUB( + "BlEQPpfUOVg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("BlFY-yUwqKA", _ZNK7WebCore11FrameLoader28blockedByContentBlockerErrorERKNS_15ResourceRequestE) +STUB("BlHxtSQOjXo", _ZN7WebCore20serializationForHTMLERKNS_5SRGBAIfEE) +STUB("BlKPFkqR5+c", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V18Variable22getLastUpdatedDateTimeEv) +STUB("BlLpa0MpPFU", _ZN3sce2Np9CppWebApi7Matches2V119CreateMatchResponseD2Ev) +STUB( + "BlN+ZvgQDfE", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V129ConnectionQualityWiredMetrics18getConfidenceScoreEv) +STUB("BlSbZdzMJEs", _ZN3sce7Toolkit2NP2V211UserProfile7Request27DisplayGriefReportingDialogD2Ev) +STUB( + "BlVI-+knyMY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEED1Ev) +STUB( + "BlXyMw0GIwk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) STUB("BlZ8niq3nHU", sceHttp2WebSocketCloseAsync) +STUB( + "BlcMg2SDql4", + _ZN3sce2Np9CppWebApi12Leaderboards2V128GetRankingRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_21GetRankingRequestBodyEEE) +STUB( + "BldXVhfO28A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEmmEi) +STUB( + "BlgYkLmYDGY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEC1EPS8_) +STUB("BloPUt1HCH0", _ZSt9_LStrxfrmIwEmPT_S1_PKS0_S3_PKSt8_Collvec) +STUB("BlsAmng+Uyo", + _ZN3sce2Np9CppWebApi7Matches2V125ResponseCompetitiveResult18unsetPlayerResultsEv) +STUB( + "Blsr+ZnBm8g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEC2Ev) +STUB("BluzXLczfV4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEED2Ev) +STUB( + "BlxzzZzU8w8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEEC1EPS8_PNS2_10LibContextE) +STUB("Bly2yMnodoE", mparams .2) +STUB( + "BlyKxQBpjgg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE10setContextEPNS2_10LibContextE) +STUB( + "BlySYZIOGJc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEC1EPS8_) +STUB("Bm0Awrwk9bg", _ZN3sce7Toolkit2NP2V212EventsClient5Event5resetEv) +STUB("Bm3fZDBjrgA", __tsan_get_report_unique_tid) +STUB("Bm3k7JQMN5w", sigblock) +STUB( + "Bm43V7O-IoM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEeqERKS9_) +STUB("Bm4JYynHNqc", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE5emptyEv) +STUB("Bm5Asz+2428", mono_runtime_set_main_args) STUB("Bm6hsUC8Yos", sceDbgAddGpuExceptionEvent) +STUB("Bm74HLvoNY4", _ZN3sce2np12HttpTemplateD1Ev) +STUB("Bm7i18g1Vaw", _ZN7WebCore19JSDOMMatrixReadOnlyC1ERKS0_) STUB("Bm9eE0veFss", scePatchCheckerCheckPatch) +STUB( + "BmGbXv5n-L4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEEC2ERKSA_) +STUB("BmJSILyuz90", _ZN3sce3Xml13AttributeListC1Ev) +STUB("BmK3Rf-WpCY", mono_aot_Sce_Vsh_Np_ServiceCheckerunbox_trampolines) STUB("BmMjYxmew1w", scePthreadCondTimedwait) +STUB("BmOUgbiiXXY", il2cpp_type_get_name) +STUB( + "BmOafav235Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE8capacityEv) +STUB( + "BmPUwZmrUgY", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEED2Ev) +STUB( + "BmZbnEl9SVs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEED1Ev) +STUB("BmangOLiMU4", delegate_virtual_invoke_imt_9) +STUB("Bmbr0b0FTig", _ZNK7WebCore16HTMLMediaElement16shouldBufferDataEv) +STUB( + "BmcqEzFK14g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE21intrusive_ptr_add_refEPS9_) +STUB("Bmi8PdvsM3M", FT_Stream_ReadLong) +STUB( + "BmkIs4H67Y8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEED1Ev) +STUB("Bmq-Nd9Pndk", _ZN7WebCore8SVGNames10ellipseTagE) +STUB("Bmr+tv0fgY0", _Strcollx.initial) STUB("BmuZaiyqkkI", sceBdSchedCancelPrioritizedBackgroundCopyRequest) +STUB("BmwpjbblEg4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEEC2EPNS2_10LibContextE) +STUB( + "BmxAYkNjzW4", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getInteger6Ev) STUB("Bn2ZF4ZjeuQ", sceFiosFHReadSync) +STUB( + "Bn5wWNbaT00", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEdeEv) +STUB("Bn7nComeL1M", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEEC1ERKS7_) +STUB("BnDRY2nuOMo", + _ZN9Inspector34createScriptCallStackFromExceptionEPN3JSC9ExecStateEPNS0_9ExceptionEm) +STUB( + "BnEa5lq+-Hw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEC2EPNS2_10LibContextE) STUB("BnHnDvv6yAA", sceNpTrophy2SystemRemoveTitleData) +STUB("BnHu-WYwi2I", mono_aot_System_ServiceModel_Internalsplt_end) STUB("BnMaW5wfnlQ", sceLncUtilUnregisterDaemon) +STUB( + "BnOfk8FWxR4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEEdeEv) +STUB( + "BnQQ4WmhPAk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE3endEv) +STUB( + "BnQpaYneH60", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData24setxPsnAtomicOperationIdEPKc) +STUB("BnRas6fU12w", __tsan_atomic8_fetch_xor) STUB("BnSHkcDlM+8", sceRegMgrStrncpy) +STUB( + "BnUM856xASM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEC2EPS8_) +STUB("BnV7WrHdPLU", _Thrd_equal) +STUB( + "BnXK65nkNFo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEEC1ERSA_) +STUB("Bndt99oRGSI", mono_aot_Sce_Vsh_WebViewDialogmethod_addresses) +STUB("Bnhc4tdyQOE", _ZN7WebCore17FrameLoaderClient15didDisownOpenerEv) +STUB("BniLazfRYjI", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEEptEv) +STUB("BnjBFMDiOAg", _ZN7WebCore19JSDOMMatrixReadOnly15subspaceForImplERN3JSC2VME) +STUB( + "Bno6QK-ZTSo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEED1Ev) +STUB("BnqtRy48TyQ", mono_aot_mscorlibplt) +STUB("Bnr9ZV9PPH0", mono_aot_Sce_Vsh_VoiceMsg_VoiceMsgWrapperjit_code_start) +STUB("Bnx1X3WfXUA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEEC1EPS4_PNS2_10LibContextE) +STUB("BnxN3TjQaZc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEppEi) +STUB( + "Bo--3JGpVzk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB( + "Bo44ZzYkTks", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEEC2ERKSF_) +STUB("Bo5wtXSj4kc", fwscanf_s) +STUB("Bo7kzN9vOT0", _ZN3WTF6Thread33setCurrentThreadIsUserInteractiveEi) +STUB("BoCQ-IBM4I0", _ZN7WebCore10XMLNSNames4initEv) STUB("BoD6du5+wxo", sceNpManagerIntGetAuthorizationCode) +STUB("BoP7Hnd2QXg", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEED1Ev) +STUB( + "BoV-jcZ6Kkc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("BoYqh7FZ03M", g_ScopedArgumentsPoison) +STUB( + "BoakAg6TFe4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE8pushBackERKS8_) +STUB("BoakLOKHTSo", WKContextGetCookieManager) +STUB("Boc1pjUVAuM", _ZN3sce2Np9CppWebApi11Matchmaking2V113ErrorResponseC2EPNS1_6Common10LibContextE) +STUB( + "Boeor1cL9BA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEC2ERKS7_) +STUB("Bof69eeNCCw", _ZN15AbstractStorage14TwitterContent5CloseEv) STUB("BohEAQ7DlUE", sceAudioInGetSilentState) STUB("BohYr-F7-is", sceKernelSetPrtAperture) STUB("BonkDE5m1Ss", sceNpEulaDialogUpdateStatus) +STUB( + "BowqgBsUMto", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE3endEv) +STUB("Boyeh1udkF8", _ZN3sce7Toolkit2NP2V23TUS7Request12SetVariables26MAX_VARIABLE_VIRTUAL_SLOTSE) STUB("BozJej5T6fs", sceFontGetPixelResolution) +STUB("Bp1MPfUmFJg", _ZN3sce2Np9CppWebApi7Matches2V123ResponsePlayerStatisticD1Ev) +STUB("Bp6H-C1yT0I", _ZN3sce7Toolkit2NP2V29Challenge9ChallengeC2Ev) +STUB( + "BpAQpIuyc3A", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) STUB("BpFoboUJoZU", sceKernelCreateEventFlag) +STUB("BpKoikcdXzw", _ZN3sce7Toolkit2NP2V212ActivityFeed11SharedVideoC1Ev) +STUB( + "BpOvU-QgYaE", + _ZN7WebCore7Element14scrollIntoViewEON3WTF8OptionalINS1_7VariantIJbNS_21ScrollIntoViewOptionsEEEEEE) +STUB("BpP68iXiK5I", glDisableVertexAttribArray) +STUB( + "BpPMr+FUobY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB("BpPdPSYHBy8", WKBundleSetUseDashboardCompatibilityMode) +STUB("BpQp7svQfCE", JVM_InternString) +STUB( + "BpR0gCj4wCA", + _ZN3sce7Toolkit2NP8Presence9Interface11getPresenceEPKNS1_15PresenceRequestEPNS1_9Utilities6FutureINS1_12PresenceInfoEEEb) +STUB("Bpay3NjseSU", _ZN3sce2np7CalloutC2EPNS0_14CalloutContextE) +STUB( + "BpcAJmvx6zk", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectator13isInitializedEv) STUB("Bph+nEAV4WY", sceAudioOut2PortRegister) +STUB("Bpic7Y4tG2U", _ZN7WebCore9HTMLNames12plaintextTagE) +STUB("BpikjnSbkcU", _Wctype2) +STUB("BpipriRfwZo", _ZN12video_parser5vpcom13UTF8stoUTF16sEPKhjPtPj) +STUB("BplzxzYzc64", _ZN3JSC41DeferredStructureTransitionWatchpointFireD2Ev) +STUB("BpplnzdTht4", _ZTVN9Inspector32DatabaseBackendDispatcherHandlerE) +STUB("BpqEaUzi1YI", _ZN3sce3Xml3Dom6NodeIdeqEi) +STUB("BptwdT67de4", _ZNK3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error9getReasonEv) +STUB("Bq+LRV-N6Hk", sem_getvalue) +STUB("Bq0PXCi7+AM", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V15GroupEEeqERKS7_) +STUB("Bq2a8HmmUoY", __cfi_slowpath) +STUB("Bq8m04PN1zw", _ZTVSt12system_error) +STUB("BqBkwvs0b5U", _ZN7WebCore23AuthenticationChallengeD1Ev) +STUB( + "BqBzETsWm+0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEED2Ev) +STUB("BqFx1VLEMPk", _ZN3sce2np4Path5ClearEv) +STUB("BqGJsJcFYaM", FT_Outline_Done) +STUB( + "BqIRmGCRv9I", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities20ErrorResponseFactory7destroyEPNS4_13ErrorResponseE) +STUB( + "BqIZSp2YTog", + _ZN3sce2Np9CppWebApi14SessionManager2V122LocalizedStringFactory7destroyEPNS3_15LocalizedStringE) +STUB( + "BqKjIMCpHcg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEE7get_refEv) +STUB( + "BqWZ5wJU2PE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEC1EPS8_) +STUB("BqXMU4VLoIg", mono_metadata_parse_method_signature_full) +STUB( + "BqYgcXSaLqM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEE11get_deleterEv) +STUB("BqdKcO41N4w", _ZN3sce2Np9CppWebApi14SessionManager2V128PostGameSessionsResponseBodyD2Ev) +STUB("BqeoI1D1EMQ", _ZNK3sce2np10JsonObject11GetFieldNumEv) +STUB("BqfBIchFGgY", _ZN7WebCore15SQLiteStatement12isColumnNullEi) +STUB( + "Bqi7L+o4zk8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEneERKS9_) +STUB( + "BqjBp866LCM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "Bqp0wGheQ4I", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEEdeEv) +STUB("BqraEMdP6jc", WKPageLoadData) +STUB("Bqs78zlDTMQ", uprv_decNumberMinus_67) +STUB( + "BqtOno2Hdc8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEE11get_deleterEv) +STUB("BqtgDqSMfJE", _ZNK7WebCore15AffineTransform7mapRectERKNS_9FloatRectE) +STUB("BquE5qCYVGw", WKPreferencesSetMediaContentTypesRequiringHardwareSupport) +STUB( + "BqviS7ItgbI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEC1EPS8_) +STUB("BqxIGjoykMs", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request11GetWhoLikedC2Ev) +STUB( + "BqxczY2MLDk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEppEi) +STUB("Br0YM4+rt-Q", mono_aot_Sce_Vsh_Np_AppLaunchLinkmethod_addresses) +STUB( + "Br4EFaSlJkg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEEptEv) +STUB( + "Br7H2SYUFPY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEEC1ERS9_) +STUB("BrD0I3X9Nuw", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11ProductInfoEEC2Ev) +STUB( + "BrJ1Q-pJdTQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEE3getEv) STUB("BrNgn7z6A40", sceSlimglCompositorSetIndirectCompositionCommand) +STUB("BrSQXazeSPY", _ZN3sce7Toolkit2NP2V28Commerce8CategoryC1ERKS4_) +STUB("BrSesfxNNvs", _ZNK7WebCore20ResourceResponseBase13isRedirectionEv) +STUB("BraS9NFJCzA", _ZN7WebCore22EmptyFrameLoaderClient19detachedFromParent2Ev) +STUB("BrasstnkWCU", + _ZN3sce2Np9CppWebApi7Matches2V121ResponseTeamStatisticC1EPNS1_6Common10LibContextE) +STUB( + "Brca1ZhHugg", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V132FrequentlyMutedPropertiesFactory7destroyEPNS3_25FrequentlyMutedPropertiesE) +STUB( + "Brgx2BeP-a8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("Briz+oRYlr0", _ZN3sce7Toolkit2NP2V211SharedMedia14CommonMetadataC1Ev) +STUB("Brnt8dE5A9I", _ZN3sce7Toolkit2NP2V24Auth8AuthCodeC2ERKS4_) +STUB( + "BrpqmAkL1FM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEC1EPNS2_10LibContextE) +STUB( + "BrqUJ+saWbo", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE21intrusive_ptr_sub_refEPS7_) +STUB("BrqxKujapGU", _ZNK7WebCore5Range19boundaryPointsValidEv) +STUB( + "BrxnxsLO43w", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEneERKS9_) +STUB("Bs1KuTHTCOM", mono_bitset_test) STUB("Bs3QDmfuh4w", sceSpKernelNanosleep) +STUB("Bs3YyOymqj0", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEE7get_refEv) +STUB( + "Bs4H7l6tz18", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEEC1Ev) +STUB("Bs5NjXA9ja4", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE4sizeEv) +STUB("Bs9lPODBjso", _ZN3sce7Toolkit2NP2V27Session12Notification18InvitationReceivedaSERKS5_) +STUB("BsBgLgmD1co", YGSetMemoryFuncs) +STUB("BsCQsx8Drqg", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredUsersEE12deepCopyFromERS7_) STUB("BsE-m8JxIOg", sceNpTrophy2GetRewardIcon) +STUB("BsN2E9i1zLw", Java_com_sony_bdjstack_core_AppCacheManager_isLoaded) +STUB( + "BsPfx49vlxY", + _ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead19setFromNonPsnPlayerERKNS1_6Common12IntrusivePtrINS3_16FromNonPsnMemberEEE) +STUB("BsWoAOxltGM", _ZN3sce7Toolkit2NP2V211SharedMedia14CommonMetadata24MAX_LEN_APPLICATION_NAMEE) +STUB("BsjbIVU27jQ", u_strrstr) +STUB( + "Bskx1npE9VU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE10setContextEPNS2_10LibContextE) STUB("BsmV0JLSdpg", sceFaceShapeGetWorkingMemorySize) STUB("Bsmr2r9f5Vg", sceAudiodecDecodeEx) +STUB( + "BsnnhuudXLE", + _ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime15PropertyPreviewEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE) +STUB("Bt4ps1bQCis", _ZThn16_N9Inspector22InspectorDebuggerAgentD0Ev) +STUB("BtF3FDGEhR4", _ZNK7WebCore15StyleProperties16getPropertyValueENS_13CSSPropertyIDE) +STUB("BtHxQ6Pv6fk", _ZN7WebCore16SQLiteFileSystem24databaseModificationTimeERKN3WTF6StringE) STUB("BtJ3gH33xss", sceKernelYieldCpumode) +STUB("BtKKW3gxM00", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEEppEv) +STUB("BtL-4hMHuT8", + _ZN3sce7Toolkit2NP2V210Tournament7Request19SendUserMatchReport20MAX_LENGTH_FREE_TEXTE) +STUB("BtNM6TJROc4", _ZN9Inspector21InspectorRuntimeAgentdaEPv) +STUB( + "BtRxT+yr52U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEEC2ERSA_) +STUB("BtXPJQEg41Y", _ZN3sce2np4Cond4dtorEv) +STUB( + "BtZCjkl1VzU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEC2Ev) +STUB("BtfoEpEDoy0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEEC2ERKS7_) STUB("Btgtlzfk9EQ", sceSysUtilSendSystemNotificationWithText) STUB("Btkx21f1M8k", sceLoginDialogGetResult) +STUB("BtnYwpLN+RQ", mono_type_get_ptr_type) STUB("BtqmpTRXHgk", sceRtcGetTime_t) +STUB("Btrg927DcY4", _UIx86_64__sos_alloc) +STUB( + "BtvN8chFZIs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE3endEv) STUB("Bu+L5r1lKRg", sceNetConfigAddRoute6) +STUB("BuAIhZn+1Rs", _ZN3WTF14AtomStringImpl6lookUpEPKhj) +STUB("BuC3ARyjHBs", uprv_getUTCtime) +STUB( + "BuCa2n9FUcc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEEC1Ev) +STUB( + "BuKwZ4qCE8c", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseD2Ev) +STUB("BuP7bDPGEcQ", _LXp_addx) +STUB( + "Bufewfs6LUc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE4sizeEv) +STUB("BulZV+Yia3Q", _ZN7WebCore20serializationForHTMLERKNS_11LinearSRGBAIfEE) +STUB("Bum5UgOta+M", _ZN3sce7Toolkit2NP2V27NpUtils5IdMapC1ERKS4_) +STUB("Butl23CGFuw", _ZN3sce7Toolkit2NP15AppSTLAllocatorI13SceNpOnlineIdEneERKS4_) +STUB( + "Buv3r+Vr6vY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("BuxsERsopss", _ZNSt10moneypunctIcLb1EE7_GetcatEPPKNSt6locale5facetEPKS1_) +STUB("BuxsKSqNfGA", mono_aot_Sce_Vsh_PartyCommonjit_code_start) +STUB( + "Bv3PhLc1Rhk", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setInteger2ERKi) +STUB("Bv6ogral1m8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEED2Ev) +STUB( + "BvF5O9LtFRM", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfiles14setlanguageSetEPKc) +STUB("BvHVgTa7aSI", _ZN8meta_gen14ImageRetriever10SetMetaValEid) +STUB("BvKNUDcqwjU", _ZN7WebCore9HTMLNames14onpagehideAttrE) +STUB("BvRS0cGTd6I", _ZNKSt7codecvtIDsc9_MbstatetE13do_max_lengthEv) +STUB("BvRmL6IYCgM", _ZN3JSC12StringObject14finishCreationERNS_2VMEPNS_8JSStringE) +STUB( + "BvXidcjVfz0", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("BvZvTr56+qQ", mono_btls_ssl_get_error) +STUB( + "Bvf3LpQ5K7c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEmmEv) +STUB( + "Bvkny+Obfl0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEppEv) STUB("Bvn74vj6oLo", scePthreadAttrSetstack) +STUB("BvtFZdpVpkg", uprv_stricmp) +STUB( + "Bvuj-YI6rzc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) STUB("BvvO8Up88Zc", sceGnmDriverInternalVirtualQuery) +STUB("Bvykb5TIZ6U", _ZN7WebCore10FileSystem18decodeFromFilenameERKN3WTF6StringE) +STUB("Bw+7-OwsnYM", _ZN7WebCore10ISOFullBoxC2Ev) +STUB( + "Bw+QCDJZ-2Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEEaSERSA_) +STUB("Bw-QDxYd1jc", WKBundleSetSpatialNavigationEnabled) STUB("Bw31liTFT3A", sceSigninDialogUpdateStatus) +STUB( + "Bw3Iu5kBNY8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE6resizeEj) +STUB( + "Bw41EETjOp4", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitations35hasxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB("Bw8+YxTv8Y4", mono_aot_Mono_Dynamic_Interpreterjit_got) +STUB( + "Bw8TULZXlT0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEcvbEv) +STUB("BwAIkiXQHfk", WKPreferencesGetDOMTimersThrottlingEnabled) +STUB( + "BwDYpTAATZI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("BwDiCf2Irzg", _ZN7WebCore13MIMETypeCachenwEmPv) +STUB( + "BwJ73Sw0eLU", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("BwJxlOw1Ow4", _ZN12Mp4Retriever8GetDbFIdENS_15mp4DbFieldIdTagE) +STUB( + "BwKrGdrhy+I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEC1Ev) +STUB("BwVlJDvU-t0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEEeqERKS7_) +STUB( + "BwXigp2CQbk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEC1EPNS2_10LibContextE) +STUB( + "Bwb7jJ4H5As", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEC1EPKS8_) +STUB("BwgI-tzxR44", unorm2_getNFDInstance_67) STUB("BwhDEizgtpo", sceAppInstUtilAppInstallRequestCompilationDiscApp) STUB("Bwi+EP8VQ+g", sceNpLwCondSignalTo) +STUB( + "BwlIkk8yUsQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEEC1ERKSA_) +STUB( + "BwljoHr4u-A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEptEv) +STUB("BwoYh9eiWvw", _ZNK7WebCore16URLDecomposition8protocolEv) +STUB("BwzMDOLhDYI", WKAuthenticationDecisionListenerRejectProtectionSpaceAndContinue) +STUB("Bx6M5pr4eEU", _ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetail14unsetFirstNameEv) +STUB("Bx7ugj-u3o8", jpeg_idct_2x2) +STUB("Bx8JdxEYePE", _ZN3sce7Toolkit2NP2V29Challenge9ChallengeD1Ev) +STUB( + "BxELvT7VM6I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE8copyFromERKS9_) +STUB( + "BxFLzFSUTBU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("BxK7Mmvj8oM", ucnv_MBCSToUnicodeWithOffsets_67) +STUB("BxMPm9tv3M4", _ZN3JSC7Symbols24putByIdDirectPrivateNameE) +STUB("BxP6yR2GQQk", _ZN7WebCore4Page40setLowPowerModeEnabledOverrideForTestingESt8optionalIbE) +STUB("BxPcbYqH1lk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEE11get_deleterEv) +STUB("BxPeH9TTcs4", __cxa_current_exception_type) +STUB( + "BxQ3e31us6Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEC2ERS7_) STUB("BxQv1DSUaeY", sceDbgSetBreakOnWarningState) +STUB( + "BxTULgMqp3I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("BxXjoC55K18", JVM_Close) +STUB("BxYkFlE891I", _ZN9Inspector21InspectorRuntimeAgentnwEmPv) +STUB("BxZOkd4o1U8", RAND_add) +STUB("Bxai++S+IdM", _ZN7WebCore9HTMLNames15onpointerupAttrE) STUB("BxcmiMc3UaA", sceFontFtSetAliasFont) +STUB( + "BxcwQ40h7GM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEED1Ev) +STUB("BxeiWYklF7I", + _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody19getTicketAttributesEv) +STUB("Bxm+T4kzc1A", _ZN7WebCore11DisplayList22ApplyDeviceScaleFactorD1Ev) +STUB("Bxni4gpqvRE", _ZNK7WebCore6Editor25stringForCandidateRequestEv) +STUB("BxsoEfeAL7U", _ZN3sce7Toolkit2NP2V27Ranking7Request11GetGameDataC2Ev) +STUB( + "BxtPDaHV49k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE7popBackEv) +STUB("By+M3Ko+Nb8", _ZN3sce7Toolkit2NP2V24Core12ResponseBaseC2Ev) +STUB("By6b1vjSVok", cairo_ft_font_face_create_for_pattern) +STUB("By8+oITPeGU", _ZNK3JSC8Debugger13isBlacklistedEm) +STUB("ByEKhyXuoPA", Java_java_util_zip_Adler32_update) +STUB( + "ByIJAPKHlh0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEC1EPS6_PNS2_10LibContextE) +STUB("ByRgiMDtkTo", __wrap_access) +STUB("ByRkAwhxkN8", mono_file_unmap) +STUB("ByRmvtB-ldg", _ZN3NTF21URLRequestHttpMessage6createEv) +STUB("ByTg3YjgKVY", g_queue_free) +STUB("ByVK-cVydjw", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V224TestForProfanityResponse9setStatusEPKc) +STUB("ByfjUZsWiyg", strlcat) +STUB( + "Byg+AJipGjQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEED1Ev) +STUB("BykPm1ajcM0", _ZNK3sce4Json14InitParameter212getAllocatorEv) +STUB( + "BykdB6aUhgE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEED1Ev) +STUB("BymNLHb9xek", mono_aot_Sce_Vsh_Np_Trophyjit_code_start) +STUB( + "BynWamXz3tk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE5beginEv) +STUB("ByogDrS-Xw8", __sys_set_uevt) STUB("BypQuF113-k", sceNpUniversalDataSystemEventPropertyArraySetInt32) +STUB( + "BysnIhUJiL0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEC2ERKS7_) +STUB( + "BywH5RHb73o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEE11get_deleterEv) +STUB("BywqS3Q8szU", _ZNK7WebCore22EmptyFrameLoaderClient14cancelledErrorERKNS_15ResourceRequestE) +STUB( + "Bz+-KFhYkWQ", + _ZN7WebCore8Gradient6createEON3WTF7VariantIJNS0_10LinearDataENS0_10RadialDataENS0_9ConicDataEEEE) +STUB("Bz3GmM6mUKU", _ZN3sce7Toolkit2NP2V28Commerce8Category5resetEv) +STUB( + "Bz4+K6mdnOE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEplEm) +STUB("BzC9gfB648w", _ZN7WebCore8SVGNames20specularConstantAttrE) +STUB( + "BzGZbm42-v8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEdeEv) +STUB( + "BzJ8db5dWVM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEmmEv) +STUB("BzL9VRF4-D0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12EventsClient6EventsEED2Ev) +STUB("BzPo4ufGQYc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEC1ERS7_) +STUB("BzRoMQieW4M", ShGetInfoLog) +STUB("BzS2+Gd2SJM", _ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBodyD2Ev) +STUB("BzS42mcRG-Q", _ZN3PAL13SleepDisablerC1EPKcNS0_4TypeE) +STUB( + "BzT7tE61h1Q", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "BzYzzbxSfkY", + _ZN3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession25unsetPlayerJoinableStatusEv) +STUB("BzZob2Qk4B0", + _ZN3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator10setNatTypeERKi) +STUB( + "BzdrPNiDX9M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEaSERKS9_) +STUB("BzeFBYkcR3w", _ZN7WebCore11MediaPlayer25nativeImageForCurrentTimeEv) +STUB("Bzj6EDufzVw", _ZN7WebCore11DisplayList10SetLineCapC2ENS_7LineCapE) +STUB("Bzr9hA09kT4", _ZNSt6vectorIN15AbstractStorage19FacebookFolderEntryESaIS1_EE11_ReallocateEm) +STUB( + "BzsA1hma9Vc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEE11release_refEv) STUB("BztTl7QeYqE", _sceNpAllocatorFree) +STUB("Bzvv4mzBISM", _ZN7WebCore18PlatformTimeRangesD1Ev) STUB("C++Y3xup+O0", sceMatMemoryPoolMove) +STUB("C+-sGGnws9A", _ZN7WebCorelsERN3WTF10TextStreamENS_9BlendModeE) +STUB("C+5oNT1ESfY", _ZN7WebCore21WheelEventTestMonitor21clearAllTestDeferralsEv) +STUB( + "C+IEJdFDpso", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemPropertiesC1ERS5_) STUB("C+IEj+BsAFM", sceAmprMeasureCommandSizeWriteAddressOnCompletion) +STUB("C+IZRnhqqG8", _ZN3WTF10StringView16GraphemeClusters8IteratorD2Ev) STUB("C+Khtbbx2g8", sceKernelAprResolveFilepathsWithPrefixToIdsAndFileSizesForEach) +STUB("C+NsIwxwwa8", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18GameCustomDataItemEE7destroyEPS3_) STUB("C+P5nUw7FYE", sceSystemServiceUsbStorageIsExist) +STUB("C+PD4D-WvVQ", JNU_CopyObjectArray) +STUB( + "C+Q9j1xWO5g", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE3endEv) +STUB( + "C+Z5mvvQaVo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEC2EPS7_PNS2_10LibContextE) +STUB("C+e8Hg4gjU0", _ZN7WebCore13SleepDisablerC2EPKcN3PAL13SleepDisabler4TypeE) STUB("C+i9gJY4A1I", sceKernelIccGetHwInfo) +STUB("C+morSMfP84", _ZNK7WebCore20ResourceResponseBase12isAttachmentEv) +STUB("C+nqkA-1ro0", _ZN3JSC29ensureGlobalFuzzerPredictionsEv) +STUB( + "C+or+8OobPM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE5emptyEv) STUB("C+vcBYRcSt8", sceAppInstUtilAppCancelMoveApps) STUB("C-+JPjaEhdA", sceNetConfigWlanAdhocPspEmuSetWakeOnWlan) +STUB("C-3N+mEQli4", _ZTSNSt8ios_base7failureE) +STUB("C-4AXvmxXK4", png_get_filter_type) STUB("C-4Qw5Srlyw", sceFontGenerateCharGlyph) +STUB( + "C-9IN+XxqZs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEeqERKS9_) +STUB("C-9IuUyNx-Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEEC2Ev) +STUB("C-EZ3PkhibQ", _ZNK3sce16CommonDialogUtil6Client14getClientStateEv) +STUB("C-FUxOeDE1E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEixEm) +STUB("C-IAF74xKYg", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product11getAgeLimitEv) +STUB( + "C-NAsQD1yv0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC1ERKSA_) +STUB("C-PgX-qZLhk", _ZN9Inspector32ScriptProfilerFrontendDispatcherdlEPv) +STUB("C-PpdS5zris", FT_OpenType_Free) +STUB("C-QVraVqT-Q", jpeg_idct_2x4) +STUB("C-VP4AsZ13E", monoeg_g_direct_equal) +STUB( + "C-VfHk7dESE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("C-blDyZOIa8", WKPluginInformationBundleShortVersionKey) +STUB( + "C-dA9xs9TkY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEdeEv) +STUB("C-dodVAz604", _ZNK7WebCore12ChromeClient33shouldUseTiledBackingForFrameViewERKNS_9FrameViewE) +STUB( + "C-eZx5gMBKc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEED2Ev) +STUB("C-hTkXLSvCk", _ZN3JSC6JSLock12DropAllLocksD1Ev) +STUB("C-iN2W5bbuo", _ZN3JSC5JSSet6s_infoE) +STUB("C-lrlIiUeZs", _ZN7WebCore15SQLiteStatementD1Ev) +STUB("C-mWVPzAz0Y", ustr_hashUCharsN_67) +STUB( + "C-pGBA8apIE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE10setContextEPNS2_10LibContextE) +STUB("C-rxSvL2nc8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEC2ERKS7_) +STUB( + "C-tPFq4S0Yk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEE11get_deleterEv) +STUB( + "C00qXQCAOI4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE7popBackEv) +STUB( + "C04D-yTYrAw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE7reserveEi) +STUB("C05CUtDViqU", CA_MGMT_freeSearchDetails) +STUB( + "C07AuGOwohI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE21intrusive_ptr_sub_refEPS9_) +STUB("C09KlVTdtMA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEEppEi) +STUB("C0A4DMm7c5A", YGNodeClone) +STUB("C0E8TaxTeD8", c10) +STUB("C0EYtSTHGyc", WKGrammarDetailGetTypeID) +STUB("C0IYaaVSC1w", _ZTISt11range_error) +STUB("C0MWlYbPFGA", _ZN7WebCore28InspectorFrontendClientLocal14frontendLoadedEv) STUB("C0QNDdQW+8M", sceRazorCpuUserSignalWaitEnd) +STUB("C0UhOPZuKbA", _ZN3sce7Toolkit2NP2V210Tournament24OfficialBroadCastDetailsC2Ev) +STUB( + "C0UhhOIv4Jo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEC1EPNS2_10LibContextE) +STUB("C0V80QECptc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEED2Ev) +STUB("C0Y6+FbHIPg", _ZN7WebCore9HTMLNames10pseudoAttrE) +STUB( + "C0Zs0k0vPqM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEC2Ev) +STUB("C0Zzwfz-3bw", WKNotificationCopyLang) +STUB("C0a9gIndzfA", _ZN3sce7Toolkit2NP2V211SharedMedia14CommonMetadataD2Ev) +STUB("C0ecyCza-5U", + _ZN9Inspector21InspectorConsoleAgent22setLoggingChannelLevelERN3WTF6StringERKS2_S5_) STUB("C0f7TJcbfac", sceKernelAvailableDirectMemorySize) +STUB("C0fTnF5BjEI", + _ZN3sce2Np9CppWebApi7Matches2V125ResponseCompetitiveResult8fromJsonERKNS_4Json5ValueE) STUB("C0gNCiRIi4U", sceNpSetGamePresenceOnlineA) +STUB( + "C0iWDaJdvU0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE21intrusive_ptr_sub_refEPS9_) +STUB("C0j9K2vhdYg", _ZN3sce7Toolkit2NP7Ranking9Interface13registerCacheEiiib) +STUB( + "C0jq4lsP0FQ", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeaderC1Ev) +STUB("C0llM9BF2ho", ucol_openAvailableLocales_67) +STUB("C0nVvG6+x-s", FTA_Remove_Module_bdf) STUB("C0rPwER-yxg", sceHmd2ReprojectionInitialize) +STUB("C0tDw7J-3Tw", _ZN3JSC7Symbols29generatorFieldThisPrivateNameE) +STUB( + "C0vvBzhXPeU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEC2EPS8_) +STUB( + "C0wIlfPqDlo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEC2EPS8_) +STUB("C0yCmcRkfH8", _ZN7WebCore27PlatformMediaSessionManager16processDidResumeEv) +STUB( + "C1+4k3Ub3+E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEC2EPS6_PNS2_10LibContextE) +STUB("C1+gBUd3C34", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEEneERKS7_) +STUB("C1-M65KwtjU", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead16customData2IsSetEv) +STUB("C12fbSrJXes", ulist_deleteList) +STUB( + "C15tCYj-hoU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE3endEv) +STUB( + "C16v8ZT+xzo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEC2EPNS2_10LibContextE) +STUB("C17yf4lG2Kc", _ZN3JSC10Identifier4fromEPNS_9ExecStateEj) +STUB( + "C18qJ5JAauM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEEC2ERKSB_) +STUB("C1Ajs0GJ9FQ", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V324ValidationConstraintInfoD1Ev) +STUB("C1D37z9C0fQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEED1Ev) +STUB( + "C1FXhuYlQwU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE5beginEv) +STUB("C1LBXRglVQA", _ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBodyD2Ev) +STUB("C1TJsMv9wb8", _ZN3sce2np13RingBufMemoryD1Ev) +STUB("C1YevJSd750", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEmmEi) +STUB( + "C1cnWBE8+iI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEC2Ev) +STUB("C1kSXHV0pK0", bemp2sys_pesparser_init) +STUB("C1pE9UztZMo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V116TaskAvailabilityEEneERKS7_) +STUB("C1skAF1VQbY", _ZN3NTF5Mutex6unlockEv) +STUB( + "C1tOaFb0B38", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEE5resetEPS6_) +STUB("C1ujZwhvzhI", _ZN3JSC4Heap24reportExtraMemoryVisitedEm) +STUB("C1vVG6JQH6A", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEEdeEv) +STUB("C257CI4wq7g", mono_method_get_unmanaged_thunk) +STUB( + "C27pH6uM8tk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE8pushBackERKS8_) +STUB("C282U0P6Nwg", _ZN3sce2np14CalloutContext7DestroyEv) +STUB("C28sII4CaLQ", _ZN3sce2Np9CppWebApi13InGameCatalog2V57ProductC2EPNS1_6Common10LibContextE) +STUB( + "C2BE5PrNg98", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE10setContextEPNS2_10LibContextE) +STUB( + "C2BGfaYpLc4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEEcvbEv) +STUB( + "C2EwPD751C0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEptEv) +STUB("C2FgjGcN39c", _ZN3WTF18charactersToDoubleEPKhmPb) +STUB("C2JaQRcg9Kc", _ZNK3WTF10StringImpl11sizeInBytesEv) +STUB("C2RSFYT+9Bg", delegate_virtual_invoke_24) +STUB( + "C2VBnE5uQ0Y", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("C2W0uvw-C48", mono_aot_Sce_Vsh_VideoFramework_Platformunbox_trampoline_addresses) +STUB( + "C2YSpfp1gsI", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_13FriendsOfUserENS1_15AppSTLAllocatorIS5_EEEED2Ev) +STUB("C2a-9w1AhSA", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEEppEi) STUB("C2agGcmq83w", sceAvControlSimulateProcessOutputModeArbitration) +STUB("C2b9lHwUN6I", ucnv_compareNames_67) +STUB("C2fPc5Q38TE", + _ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody18unsetMinScoreLimitEv) +STUB("C2kJ-byS5rM", pwrite) STUB("C2ltEJILIGE", sceKernelGetPsmIntdevModeForRcmgr) +STUB("C2q0bN6cQ4A", _ZN3sce7Toolkit2NP2V210Tournament12EventDetailsD2Ev) +STUB( + "C2wxbYBxq2g", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_23NpSessionInvitationInfoENS1_15AppSTLAllocatorIS5_EEEEC1Ev) STUB("C2yjkNdzbW4", sceAgcDriverIDHSSubmit) +STUB("C31eIhTlRM4", uhash_hashScriptSet_67) STUB("C36iRE0F5sE", scePthreadSemWait) +STUB("C3CXSYj8B6M", ucurr_openISOCurrencies_67) STUB("C3ETNYXsht4", sceUsbStorageUnregisterCallbackForMapAvailable) +STUB( + "C3Jcc0LyWjI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEneERKS9_) +STUB("C3KUJDxz-is", _ZN3sce2Np9CppWebApi11UserProfile2V125GetBasicPresencesResponseD2Ev) +STUB( + "C3Kg63gCbNk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEppEv) +STUB("C3LC9A6SrVE", _ZNKSt7_MpunctIcE14do_frac_digitsEv) +STUB( + "C3MP-Pl8Wo8", + _ZN7WebCore6Editor24replaceSelectionWithTextERKN3WTF6StringENS0_17SelectReplacementENS0_12SmartReplaceENS_10EditActionE) +STUB( + "C3PAWdNm8vQ", + _ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeaders7hasETagEv) +STUB( + "C3Rgm0nngOU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEC2ERS7_) +STUB("C3UpIfLGRbA", _ZN7WebCore13HitTestResultD2Ev) +STUB("C3Xnff4rgk4", _ZNK7WebCore21JSTextTrackCueGeneric7wrappedEv) +STUB("C3bLQX0d+So", _ZN3JSC7JSArray26shiftCountWithArrayStorageERNS_2VMEjjPNS_12ArrayStorageE) +STUB( + "C3bgNMh1888", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEC2Ev) +STUB( + "C3eG4Bp+gig", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEC2EPNS2_10LibContextE) +STUB( + "C3g7zOvEL5Q", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("C3iWD8fqTjc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116InitialJoinStateEEeqERKS7_) +STUB( + "C3j2Xy8OmaU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE3endEv) +STUB("C3kg2BO5Pyg", u_getDefaultConverter_67) STUB("C3r2zT5ebMg", sceRemoteplayImeOpen) +STUB( + "C3rZP-FveLE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("C3sAx2aJy3E", _ZTISt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE) +STUB("C3uEVqmgg48", + _ZN9Inspector21InspectorConsoleAgent10stopTimingEPN3JSC14JSGlobalObjectERKN3WTF6StringE) +STUB("C3vniWm8dNw", glGetUniformuiv) +STUB( + "C3xK1o7yDH4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEptEv) +STUB("C4+VYUYFI6E", mono_get_exception_index_out_of_range) STUB("C403YJqJNus", sceUserServiceGetVoiceAgentStatusBitFactory) +STUB("C40DVLTpil8", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V115FrequentlyMuted6toJsonERNS_4Json5ValueEb) +STUB( + "C435BVbje9Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEC2EPS6_PNS2_10LibContextE) +STUB("C49LgOV-jPo", _ZN7WebCore18TextureMapperLayer9paintSelfERKNS_25TextureMapperPaintOptionsE) +STUB( + "C4EU0-gmmW0", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEEiRNS2_10LibContextEPT_m) +STUB( + "C4G-++b7f40", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE21intrusive_ptr_sub_refEPS7_) +STUB("C4GGY4M5WPs", WKPreferencesGetMenuItemElementEnabled) +STUB("C4GpT07pyh4", _ZN3sce7Toolkit2NP2V210Tournament12GenericEventC1ERKS4_) +STUB( + "C4H75BKtKV0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("C4IbjPBn4mY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEEplEm) +STUB("C4L3jt-+8E0", _ZN7WebCore21NetworkStorageSession9setCookieERKNS_6CookieE) +STUB( + "C4Qrn2xtCdc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEneERKS9_) +STUB("C4RUHNEGsb0", unorm2_normalize_59) STUB("C4UgDHHPvdw", sceNetResolverCreate) +STUB( + "C4YuHqwLaAQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEE7get_refEv) +STUB("C4a3dGgs+Cc", FT_Outline_Check) +STUB( + "C4ektnwBAC8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEEC2ERS9_) +STUB( + "C4ex7v59hgw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEC2EPNS2_10LibContextE) +STUB("C4g29wO9igs", _ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession13getMaxPlayersEv) STUB("C4i9a6cVRWM", scePlayReadyLicenseDeleteInMemory) +STUB("C4j57iQD4I8", _ZTISt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE) +STUB("C4ksb8TTkME", ucurr_forLocale) STUB("C4l9fB17t8w", sceAgcDcbEventWriteGetSize) +STUB( + "C4qbdwX3KzI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEC2EPS8_) +STUB("C4qe0TvWEKQ", _ZNK7WebCore22HTMLFormControlElement10formActionEv) +STUB( + "C4xCvsGrGIA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEixEm) +STUB("C4zZZmuvyKM", u_strncmpCodePointOrder_67) +STUB( + "C5+YSMeJdjs", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("C5+iMF5IAY4", mono_aot_Sce_Vsh_GriefReportStoragejit_code_start) +STUB( + "C51ERkmPoVs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEEC2ERKSA_) +STUB("C54iMS8+tl8", JSCheckScriptSyntax) +STUB( + "C56gZ1Fwj4g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "C5D2gsQveTg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("C5FqYQvdn9E", g_filename_from_utf8) +STUB("C5H2-PLShWU", _ZN7WebCore9HTMLNames17aria_controlsAttrE) STUB("C5J+ANTy0qI", sceFiosDirectoryCreateWithMode) +STUB( + "C5Qpu8p3tvA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEptEv) +STUB( + "C5T6x3pasU4", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "C5UjwsbPDNs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEaSERKS9_) +STUB("C5XVZ3h5PhI", _ZN3sce7Toolkit2NP2V210Wordfilter16SanitizedCommentaSERKS4_) +STUB("C5ifI-ABvq0", _ZN9Inspector25NetworkFrontendDispatcherdlEPv) +STUB("C5jau3kWcTE", _ZN7WebCore9HTMLNames7srcAttrE) +STUB( + "C5oxOGHm0Q4", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("C5vg1mRnJ90", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEptEv) +STUB("C5zCc0ufEz0", _ZN9Inspector22InspectorDebuggerAgent6resumeERN3WTF6StringE) +STUB("C6-7Mo5WbwU", _ZNSt10filesystem18_Xfilesystem_errorEPKcRKNS_4pathESt10error_code) STUB("C6-MvMXmvLc", sceCesRefersUcsProfileAsciiWithKatakana) +STUB( + "C63aEdFKedU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) STUB("C6A8S-Hio2M", sceFsISSchedMapStat) +STUB( + "C6BfwOnkiDQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEixEm) +STUB("C6C97DqLp4M", hb_icu_get_unicode_funcs) +STUB( + "C6EJOskfF5Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEE7get_refEv) +STUB( + "C6Gj67au0DA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE4sizeEv) +STUB( + "C6Li1qon1x8", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V318PsnWebErrorWrapperC2EPNS1_6Common10LibContextE) +STUB( + "C6NUqOD5gkg", + _ZN3JSC8JSObject38putDirectIndexSlowOrBeyondVectorLengthEPNS_9ExecStateEjNS_7JSValueEjNS_18PutDirectIndexModeE) +STUB("C6Pc5Xu7bxU", _ZN3sce2Np9CppWebApi12Leaderboards2V15Entry7setRankERKi) +STUB( + "C6Ub1Qwfuug", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE8pushBackERKS8_) +STUB("C6X4oaIU6-k", __tsan_atomic128_fetch_add) +STUB("C6ZJ7oFVXx8", _ZStL11_Sys_errtab) STUB("C6ZNCDTj00Y", sceNpSignalingGetConnectionStatistics) +STUB("C6gWCWJKM+U", lroundf) +STUB("C6ibH-4Ydg0", _ZN7WebCore26Matrix3DTransformOperationD0Ev) +STUB( + "C6lWET8ErOA", + _ZN7WebCore18PlatformPasteboard5writeERKN3WTF6VectorINS_20PasteboardCustomDataELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("C6oLAUS1iPc", + _ZN7WebCore20ResourceResponseBase24sanitizeHTTPHeaderFieldsENS0_16SanitizationTypeE) +STUB( + "C6qMCyBFAeI", + _ZN3sce2Np9CppWebApi14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBody13setSpectatorsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_28ResponseGameSessionSpectatorEEEEE) +STUB("C6rdzA-le1s", _ZN3sce2Np9CppWebApi6Common6VectorIjE5clearEv) +STUB( + "C6rjcIv+yJY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEEptEv) +STUB( + "C6skkzFAAGI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEED1Ev) STUB("C6xstRBFOio", sceNpManagerIntGetAccountLanguage) +STUB( + "C6yV0NX8fqs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEdeEv) +STUB("C6zMedRGAuc", _ZN3sce2Np9CppWebApi10Activities2V114UserActivities5Error10setMessageEPKc) +STUB( + "C70OfZmfRyo", + _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody19getJoinableUserTypeEv) +STUB("C73SG7WKAgo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEED1Ev) +STUB( + "C73r27RP0CE", + _ZN8meta_gen11MsvPromoter23setKeyValue_TBLI_HeightENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti) STUB("C77VnsdaKKI", sceNpManagerIntSetPlusMemberTypeNB) +STUB("C7Fqw7M-LiE", _ZN3JSC4Yarr17RegularExpressionnaEm) +STUB( + "C7Joqb7LNII", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectator10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_54PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEE) +STUB("C7KVLWk-IVk", + _ZN3JSC6JSCell17customHasInstanceEPNS_8JSObjectEPNS_14JSGlobalObjectENS_7JSValueE) +STUB("C7N2GuwqTA0", FT_Sqrt32) +STUB("C7N4tdIifZ0", rgctx_fetch_trampoline_mrgctx_32_p) +STUB( + "C7UDvuDYXaQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE8pushBackERKS8_) +STUB( + "C7W8IfKQqYg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEEC2ERKSA_) +STUB( + "C7dvUSk3aRk", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi24sendPlayerSessionMessageEiRKNS4_35ParameterToSendPlayerSessionMessageERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB("C7ho+Z7QpzA", getwhex) +STUB( + "C7mUU3JIa7c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEE7add_refEv) +STUB( + "C7rbXm3gdRE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEE3getEv) +STUB("C7rqIyDWvn0", mono_debug_print_stack_frame) +STUB( + "C7ybxQ4uxkI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEED2Ev) +STUB("C8+FFE6E1lY", YGFlexDirectionToString) +STUB("C8-TefDupr4", _ZN7WebCore27contextMenuItemTagUnderlineEv) +STUB( + "C80RoieLk6g", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi42ParameterToPutGameSessionsSearchAttributes12setsessionIdEPKc) STUB("C81K5tny9CE", sceAvControlIsModeGen1Vr) +STUB( + "C83LCukRz-w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEEC2Ev) +STUB("C86F6UUBdFw", _ZN4IPMI6Client6ConfigC2Ev) +STUB( + "C86WukaiznQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEeqERKS9_) +STUB("C88FsQ2KsjU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEEC1ERS7_) +STUB( + "C88cTESKaBE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("C8AHWrQyDAk", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V116TaskAvailabilityEEC1Ev) +STUB("C8DSGbgf3RM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEC1ERKS7_) +STUB( + "C8GjRVltZ-0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEEcvbEv) +STUB("C8SMKrvRkl8", _ZNK3sce2np3ipc17ServiceIpmiClient6IsInitEv) STUB("C8TY-UnQoXg", sceNpTusGetFriendsVariableA) +STUB( + "C8WUuFSpCyc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEE7get_refEv) +STUB("C8Ww8ZdVW1o", _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead14getCustomData2Ev) +STUB("C8aXkfk9P0A", _ZN7WebCore11MediaPlayer10invalidateEv) +STUB( + "C8c+JCm0U5I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE8copyFromERKS9_) +STUB( + "C8cWJm4a3vk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEEC1EPS8_PNS2_10LibContextE) +STUB("C8nzxw4nnP0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEC1Ev) +STUB("C8r9P9yL7-A", mono_profiler_startup_log) +STUB( + "C8vsFte3EHU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEEC2ERKSA_) STUB("C8wi8QOUQQk", sceKernelSuspendDirectMemoryRelease) +STUB("C94NVHorTnk", _ZN3JSC7Symbols34regExpProtoStickyGetterPrivateNameE) +STUB("C968FP2T0gA", _ZNK3sce2Np9CppWebApi14SessionManager2V16Friend11getOnlineIdEv) +STUB("C96SMHvoMfs", g_hash_table_lookup) +STUB("C97VnSMYMSc", ucnvsel_selectForUTF8_67) +STUB("C98CdyBxNpM", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt6vectorI16SceNpTusVariableNS2_IS4_EEEEC2Ev) +STUB( + "C9A379Zd6K4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEE7get_refEv) +STUB( + "C9AgDnFeBFA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEED1Ev) STUB("C9E1TPtMAjg", sceVideoCoreInterfaceLoadModule) STUB("C9ElcezDvIE", sceApplicationSuspend) STUB("C9JwMHZ8Xkk", sceAudioOutConfigureOutputModeEx) +STUB( + "C9RE06KveEA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEE7add_refEv) +STUB("C9YhqadaXzQ", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody10unsetLimitEv) +STUB( + "C9h7sDg6hPM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("C9lhqCz3iZ0", _ZNK7WebCore12SettingsBase20pictographFontFamilyE11UScriptCode) +STUB( + "C9nQTzluMFk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEppEi) +STUB( + "C9nmXx5ezhw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEC1EPKS8_) +STUB("C9pWfTkbH0Q", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V111OfferStatusEEppEi) +STUB( + "C9r3kg0-k8g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("C9tMr-NPOJM", mono_aot_Sce_Vsh_MorpheusUpdWrapperjit_code_end) +STUB("C9womydOhKw", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIfEC1Ev) +STUB("C9znBBnAIok", mono_opcode_name) STUB("CA5jcDb2vYI", sceKernelGetSocPowerConsumption) +STUB("CA9cI9X7n8E", _ZN3sce2Np9CppWebApi6Common8IteratorIjEmmEv) +STUB("CABpOvHRDVI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching5RoomsEEC1Ev) +STUB( + "CAE-9GwPlYY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEEC1ERKSA_) +STUB( + "CAHgY-Gly7s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE) STUB("CAIoDnCFX70", sceFaceTrackerUnregisterUser) +STUB("CALfQOMRFRc", mono_aot_Sce_Vsh_SysUtilWrapperjit_got) +STUB("CAM9NbC8Jus", _ZN3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResults8setScoreERKd) +STUB("CAOt1d2AT44", _ZNK3JSC18GCActivityCallback9isEnabledEv) +STUB( + "CAQzeQBPATw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEC1EPS8_) +STUB( + "CARXbyBFL6Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEEC1ERKSA_) +STUB("CATkBsr20tY", CERT_getCertificateIssuerSerialNumber) +STUB("CAZvVbvclq8", _ZN12video_parser7cVpUtil8DiffTimeERNS_5vpcom8datetime8DateTimeES4_) STUB("CAbbX6BuQZ0", sceRudpCreateContext) +STUB("CAd6mqZAfQ4", _ZN3sce7Toolkit2NP2V28Presence16PlatformPresenceD1Ev) +STUB("CAeLxSO6Fzw", _ZNK3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate12getAccountIdEv) +STUB("CAgB8oEGwsY", CERT_VerifyValidityTime) +STUB("CAgLrLTNpJY", _Xtime_to_Useconds) +STUB( + "CAi3r9SUJTs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEEaSERSA_) +STUB( + "CAlz6lTRRIU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEC1Ev) STUB("CApAj-v1kVs", sceVshAvcapOpenVideoEx) +STUB( + "CAuG9X992Vs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEEC2ERSA_) +STUB( + "CAx4Bj6o1Wk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEppEi) +STUB("CAx7X0QmDNg", png_get_tIME) +STUB("CAxK0cyQWnY", _ZN3sce7Toolkit2NP2V29Messaging7Request17SendInGameMessageC2Ev) +STUB("CAypDWjJScU", glResumeTransformFeedback) +STUB( + "CAyv3-YmjyY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE5clearEv) +STUB( + "CB91DPxocWY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEmmEv) +STUB( + "CB9NG4PQp3U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEaSERKS7_) +STUB( + "CBKtF+B2xrs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEC2ERS7_) +STUB("CBMBWsSrlq8", _ZN7WebCore18PlatformTimeRangesC1ERKN3WTF9MediaTimeES4_) +STUB("CBMayXu7N5E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEaSERS7_) +STUB("CBNZ5OjzUdo", _ZN9Inspector33InspectorBackendDispatcherHandlerD1Ev) +STUB("CBNtXOoef-E", sched_get_priority_max) +STUB("CBPDnkErMEM", cloc_o) +STUB("CBQGMZDDQD4", _ZN7WebCore9FrameView30graphicsLayerForPlatformWidgetEPv) +STUB( + "CBQkgZlYGKA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE10setContextEPNS2_10LibContextE) +STUB( + "CBTuRMUsNEU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEC1EPS8_) +STUB("CBUYpGaOZEY", _ZN3sce7Toolkit2NP2V27Ranking7Request11SetGameDataD1Ev) +STUB("CBV1LMkpn1U", _ZN7WebCore16SQLiteFileSystem20databaseCreationTimeERKN3WTF6StringE) STUB("CBX4+UX-tG4", sceTsGetRepresentationInfo) +STUB( + "CBaTyAu61lw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEplEm) +STUB("CBgGpKwrHSA", LoginMgrTerminate) +STUB("CBiZX1axLmc", mono_object_new_alloc_specific) STUB("CBiu4mCE1DA", sceVideoOutSetFlipRate) +STUB( + "CBpZOt-r2hU", + _ZN7WebCore21JSCSSStyleDeclarationC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_19CSSStyleDeclarationENS6_13DumbPtrTraitsIS8_EEEE) +STUB("CBrj1sUFTZ0", _ZNK7WebCore9InlineBox14caretMaxOffsetEv) +STUB("CBu3fNa2rus", _ZN3JSC7Symbols24createPromisePrivateNameE) STUB("CBvvoNSsWVU", sceDevUsbAddHostRawKevent) +STUB("CC-BLMBu9-I", malloc_stats) +STUB( + "CC0nzkzdVsk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("CC1FIVcHVpc", _ZN7WebCore11DisplayList11DrawEllipseD1Ev) +STUB("CC3SYjHufw8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEE11get_deleterEv) +STUB( + "CC8n23ujero", + _ZN3sce2Np9CppWebApi14SessionManager2V137RequestPlayerSessionInvitationFactory7destroyEPNS3_30RequestPlayerSessionInvitationE) +STUB("CCExU9zTwME", mono_aot_Sce_PlayStation_HighLevel_UI2jit_code_end) STUB("CCIWdE3I4lA", sceNpIpcBeginRequest) +STUB("CCLJRgXg9V0", umtx_lock_67) +STUB("CCThZGN3PEk", _Z20WTFCrashWithInfoImpliPKcS0_immmmmm) +STUB("CCYNuxc3zD8", _ZThn16_N9Inspector21InspectorRuntimeAgent18enableTypeProfilerERN3WTF6StringE) STUB("CCbC+lqqvF0", sceNpCommerceDialogGetStatus) +STUB( + "CCe202m43uo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "CCiR41PTUjY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE6resizeEj) +STUB("CCjsMjCwCWE", + _ZN9Inspector28InspectorScriptProfilerAgent8addEventEN3WTF7SecondsES2_N3JSC15ProfilingReasonE) +STUB("CClObiVHzDY", _ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED2Ev) +STUB( + "CCmRFfTgZrI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEdeEv) +STUB("CCmU-uYjeIk", _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile14unsetAccountIdEv) STUB("CConkVwc7Dc", sceNpManagerIntGetAccountDateOfBirthA) +STUB("CCq1OzivhKY", _ZN3sce7Toolkit2NP2V210Tournament16RegisteredRosterC2Ev) +STUB( + "CCv9CYanMNI", + _ZN15AbstractStorage14YoutubeStorage15CreateRecursiveERKSbIcSt11char_traitsIcENS_8StlAllocIcEEENS_8ItemTypeEPSt10shared_ptrINS_4ItemEE) +STUB("CD+3VFi3BF4", u_get_stdout_67) +STUB("CD8HbK+LEOQ", _ZN7WebCore14SchemeRegistry25registerURLSchemeAsSecureERKN3WTF6StringE) +STUB("CDG6wR08Ntw", curl_strequal) +STUB("CDQiZI5nup8", _ZNK7WebCore15ContextMenuItem6actionEv) +STUB("CDVFTd-vBew", mono_get_object_class) +STUB("CDZqEyHuQBw", _ZN7WebCore15HTMLFormElement13checkValidityEv) +STUB("CDa0HmrFMd0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking8TempRankEE12deepCopyFromERS7_) +STUB("CDa5R6cq2+M", WKContextSetJavaScriptGarbageCollectorTimerEnabled) +STUB( + "CDb2Svm4vx0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEE5resetEPS9_) +STUB("CDbOSJyS+8Q", ulist_reset_keyword_values_iterator_67) +STUB("CDjDlxkoWhU", _ZN7WebCore11FileMonitorD2Ev) +STUB("CDlUjtscypE", WKPageClearWheelEventTestTrigger) STUB("CDlgfsy4Rhw", sceValidationGpuValidate) +STUB("CDm+TUClE7E", _ZNSt8numpunctIcEC1ERKSt8_Locinfomb) +STUB( + "CDnxxnKa2dc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEppEi) +STUB( + "CDvTXBBirN8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "CDxIRrABgH4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEE3getEv) +STUB("CDxz+odUzjk", _ZNK7WebCore11HistoryItem12isTargetItemEv) +STUB("CDzSgHA6hWg", _ZN3sce2np10JsonParser5ParseEPKcm) +STUB("CE+K7LnQock", _ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody10usersIsSetEv) STUB("CE-JCVY9rzw", sceDeci4hDrfpWrite_fuse) +STUB( + "CE0O-D1AG+w", + _ZN7WebCore18JSHTMLMediaElementC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_16HTMLMediaElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB("CEAEH+lrYHw", _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeIPcPvEE7destroyEPS6_) +STUB("CEArszX4xxQ", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V125NatConnectivityProperties11getFromNat1Ev) +STUB( + "CEDQEB+Hx2c", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V128SetMultiVariablesRequestBodyC2EPNS1_6Common10LibContextE) +STUB("CEDv5P43Ouk", _ZN3WTF8dataLogFEPKcz) +STUB( + "CEFdgr6O-oI", + _ZN3sce2Np9CppWebApi14SessionManager2V127PlayerSessionForReadFactory7destroyEPNS3_20PlayerSessionForReadE) +STUB("CENl2LuJEDA", _ZN3sce7Toolkit2NP2V24Core12ResponseBase8deepCopyERKS4_) +STUB("CEQjJzzBB+M", _ZN9Inspector27CSSBackendDispatcherHandlerC2Ev) +STUB("CEW5tsddJD4", _ZN7WebCore8SVGNames7trefTagE) +STUB( + "CEWIEloY-0Q", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB( + "CEY3YeCeUtg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEC2EPS8_) +STUB("CEZw2bOO-WA", rgctx_fetch_trampoline_rgctx_5) STUB("CEbYeyYuiPQ", sceKernelMapperGetUsageStatsData) STUB("CEcz6AdSUpw", sceMatRegisterGroup) +STUB("CEg0t7KpU+I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEC2ERS7_) +STUB( + "CEhMr4rnE1o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEE7get_refEv) +STUB("CEo-skc8HZg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEC1Ev) +STUB( + "CEwVzbcg0Is", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEC2Ev) +STUB("CEx0bY57b0E", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku15getDisplayPriceEv) +STUB("CExKanCWG-U", _ZN3sce7Toolkit2NP2V23TUS7Request20GetFriendsDataStatusC2Ev) +STUB( + "CF0BBQcIyF0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEC2Ev) +STUB("CF3JQshnmQI", _ZN3JSC6JSCell17customHasInstanceEPNS_8JSObjectEPNS_9ExecStateENS_7JSValueE) +STUB( + "CF5d64ot3Zc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE13getLibContextEv) +STUB("CF7+t+JIOEo", uhash_setValueComparator) +STUB( + "CFBRyn0MbVc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEEC1ERKSA_) +STUB("CFEjBEf0Mes", WKPreferencesGetMediaCapabilitiesEnabled) +STUB("CFGT373U98c", _ZNK7WebCore8Document18monotonicTimestampEv) +STUB("CFHLizHW2ZE", ztrans_equals_67) +STUB( + "CFJHhFhFiog", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEEC1Ev) +STUB( + "CFOQPc6vg0Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE8pushBackERKS8_) STUB("CFPx3eyaT34", sceNpTusGetDataForCrossSaveAsync) +STUB("CFTBSm1lhTU", _ZN3JSC4Yarr12errorToThrowEPNS_9ExecStateENS0_9ErrorCodeE) STUB("CFTG6a8TjOU", sceWebBrowserDialogGetStatus) +STUB("CFW6tGbn+5U", _ZN3JSC7Symbols28promiseRejectSlowPrivateNameE) +STUB("CFe1LwIEeO8", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEEC2Ev) +STUB("CFjj7pKSrS4", _ZN3WTF11OSAllocator8decommitEPvm) +STUB( + "CFrMt9i2BmE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEeqERKS9_) +STUB("CFtAcs7A434", WKBundleDOMWindowExtensionGetScriptWorld) +STUB( + "CFvf00pG9g8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE6finishEv) +STUB("CFvmCVk6TfI", _ZN7WebCore23ISOSchemeInformationBoxC1Ev) +STUB( + "CFx+c0aMQ2w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEC1Ev) +STUB("CFx+hotTVlI", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_20ChallengeRecvDetailsEEneERKS4_) +STUB("CFzLYUJTbUg", _ZN7WebCore15GraphicsContext8fillRectERKNS_9FloatRectERKNS_5ColorE) +STUB( + "CG+zwMsy65Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEEC1ERKS9_) +STUB( + "CG2UUtwfu20", + _ZN7WebCore21SerializedScriptValue11deserializeERN3JSC14JSGlobalObjectEPS2_RKN3WTF6VectorINS5_6RefPtrINS_11MessagePortENS5_13DumbPtrTraitsIS8_EEEELm0ENS5_15CrashOnOverflowELm16ENS5_10FastMallocEEENS_22SerializationErrorModeE) +STUB( + "CG7wDPl7xRE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE21intrusive_ptr_add_refEPS9_) STUB("CGDS6leRS1k", sceBackupRestoreUtilGetBackupDataInfo) +STUB( + "CGE+qiPjFcw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("CGE4mmSd3eI", WKBatteryStatusGetTypeID) +STUB( + "CGGQG4qIRr8", + _ZThn16_N9Inspector21InspectorRuntimeAgent14getBasicBlocksERN3WTF6StringERKS2_RNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime10BasicBlockEEENS1_13DumbPtrTraitsISC_EEEE) +STUB("CGKtxL26XqI", _ZN3sce2np3ipc10IpmiClient7ConnectEPKvm) +STUB("CGMsaoLDa+g", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEEaSERS6_) +STUB("CGQ2P7lOMoQ", _ZNK7WebCore12ChromeClient19availableScreenSizeEv) +STUB("CGalV4GHxVY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEED2Ev) +STUB("CGj8fjDSgdI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEEC2EPS6_) +STUB("CGjnAIJU2b4", _ZN15AbstractStorage12LocalContent12readExternalESt10shared_ptrINS_7ContentEE) +STUB( + "CGuRGI0MOZI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEED2Ev) +STUB( + "CGxP3DGxYqs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEE3getEv) +STUB("CH-77hJ3grc", _ZN3WTF13monthFullNameE) +STUB( + "CH-F0m44r-c", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEdeEv) +STUB("CHEEHf-OFTk", utext_nativeLength_67) +STUB("CHEGG9KvmR4", _ZN7WebCore21WindowsLatin1EncodingEv) +STUB( + "CHF+Tm21MyA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEE7add_refEv) +STUB("CHF4vI44PXs", _ZN7WebCore11PageOverlay6createERNS0_6ClientENS0_11OverlayTypeE) +STUB("CHG4TrPt7qw", _ZN3JSC14createURIErrorEPNS_14JSGlobalObjectERKN3WTF6StringE) +STUB("CHKC0sAoFcw", _ZN3sce7Toolkit2NP2V212ActivityFeed15PlayedWithStoryC2Ev) +STUB("CHPZFRIZO7o", WKBundleHitTestResultGetImageRect) +STUB("CHSR+Bn4MmA", _ZN3WTF14AtomStringImpl3addEPKNS_10StringImpl16StaticStringImplE) +STUB( + "CHbU4muWptQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEE11release_refEv) +STUB("CHbWmxR5ZZk", _ZN7WebCore9HTMLNames7endAttrE) +STUB( + "CHiL-1m+S8w", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "CHk97A0hG78", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEeqERKS9_) +STUB("CHrhwd8QSBs", _ZNSt6thread20hardware_concurrencyEv) +STUB( + "CHxJkXZWF2c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEmmEv) +STUB( + "CHymt8UFihM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEC1Ev) STUB("CI2p6Viee9w", sceNpIpc2ClientTerm) STUB("CI6Qy73ae10", pthread_cond_signalto_np) +STUB("CI7ciM21NXs", _ZN3sce2np5MutexD2Ev) +STUB("CICOiTAYqgo", _ZN3sce7Toolkit2NP2V210Tournament7Request19SendUserMatchReportD2Ev) +STUB( + "CICbcvSvdQ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE8pushBackERKS8_) +STUB( + "CIKBb9V-fSY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEmmEv) +STUB("CILQQaLK8kg", _ZN4Manx11getFontPathEPKwj) +STUB("CIQ32RB-IEU", Java_java_awt_GnmScaledImage_pSetScalingHints) +STUB("CIS-2OZ0bZI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V124RequestCooperativeResultEEppEv) STUB("CIXA8WUeAls", sceShellCoreUtilFireCrashReport) +STUB("CIXpZ+bbpzs", + _ZNK3sce2Np9CppWebApi14SessionManager2V131JoinedPlayerSessionWithPlatform13platformIsSetEv) STUB("CIlQhaz-UNw", sceCesUtf16beToSbc) +STUB( + "CIoRgXwAOcE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEC2EPKS8_) +STUB( + "CIq8UAlNGdw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("CIrV8Sq2Uic", FTA_Add_Module_raster1) +STUB("CIrdJ2hsHzE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEED2Ev) +STUB("CIszVLmspgo", _ZN3JSC14ProtoCallFrameC1Ev) +STUB( + "CIyxo2AYcp4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEeqERKS9_) +STUB( + "CJ+05fNguaQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEED2Ev) STUB("CJ45DLRQOD8", sceLncUtilRaiseExceptionLocalProcess) +STUB( + "CJ9TnqUloLk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEEaSERS9_) STUB("CJAxTxQdwHM", sceNpTusSetMultiSlotVariableVUserAsync) +STUB("CJO21WV552c", uregex_ucstr_unescape_charAt_67) +STUB("CJOLmTNwg6g", AacsPermissionCheck) +STUB("CJVE5cb1btY", _ZNK7WebCore17HTMLOptionElement21isDisabledFormControlEv) +STUB("CJWBfuaEiQk", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEEC1Ev) +STUB("CJWuDmR1WXY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEC2ERKS7_) +STUB("CJYL20PlkkM", _ZTVN9Inspector26InspectorBackendDispatcherE) +STUB("CJc3ICTVt0M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEaSERS7_) +STUB("CJkitLFH-II", ures_getByIndex) +STUB( + "CJlkiO928MM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEEaSERSA_) +STUB("CJmM0Zu+5VE", utext_extract_67) +STUB("CJpcvsCxGbM", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionFactory7destroyEPNS3_13PlayerSessionE) +STUB("CJuhJu9vSwg", _ZN3sce7Toolkit2NP2V28Commerce16RatingDescriptor13IMAGE_URL_LENE) +STUB("CJzubUV4wLM", + _ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error8fromJsonERKNS_4Json5ValueE) +STUB("CK5V5+EduqY", _ZN3sce2Np9CppWebApi14IdentityMapper2V311PsnWebErrorD1Ev) +STUB( + "CK6xNhZpaBc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEEC1Ev) +STUB("CK7bO5NztTQ", GCC_except_table28) +STUB( + "CKAyQgI5xU0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEEC1Ev) +STUB("CKFo4pVUvrY", + _ZN7WebCore9FrameView29setVisualViewportOverrideRectESt8optionalINS_10LayoutRectEE) +STUB("CKHIXBG74lI", _ZN3sce2Np9CppWebApi14ConnectAccount2V214PSNError_errorD2Ev) STUB("CKHlRW2E9dA", sceAudio3dPortGetState) +STUB("CKJOqWLNaIA", _ZN3WTF7RunLoop5cycleEj) +STUB("CKQm3LRNxFQ", _ZNK7WebCore6Length5derefEv) +STUB( + "CKRrXCmdrHE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEEcvbEv) STUB("CKTyfq2tb7k", sceShellCoreUtilGetPlatformPrivacySetting) +STUB("CKXVKoO-ko4", _ZN3sce2Np9CppWebApi6Common13ConstIteratorImEmmEv) +STUB("CKZSi363z8Y", _ZNK3sce2np14JsonObjectImpl9freeFieldEPNS1_5FieldE) +STUB( + "CKf5HCXXYUI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "CKfE3g2cV5g", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEdeEv) +STUB("CKgXd3Rgr08", _ZN7WebCore21convertToIntegerClampIlEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB("CKjDfmFQmBM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEEptEv) +STUB( + "CKjfrFwDI+Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEC2Ev) +STUB("CKlZ-H-D1CE", _ZNSt7collateIcE5_InitERKSt8_Locinfo) +STUB("CKmxM--7U88", cairo_image_surface_get_height) +STUB( + "CKr36aIiwTw", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEEiRNS2_10LibContextEPT_m) +STUB( + "CKr5iHwY2+g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEE6assignEPS6_PFvS8_EPNS2_10LibContextE) STUB("CKt5reDfhaU", sceClNetPoolDestroy) +STUB( + "CL2ueZE+Jtg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEppEv) +STUB("CL4mkkTpqLA", + _ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody17unsetWaitsForDataEv) STUB("CL6y9q-XbuQ", sceRtcTickAddMonths) +STUB("CL7VJxznu6g", wctob) STUB("CL9DIlKFCnA", sceKernelGetAutoUpdateVersion) +STUB( + "CL9FeV8pj0I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEED1Ev) +STUB("CL9KtRfwmG4", _Nats) +STUB("CLHhxjn--Yo", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead17unsetNonPsnLeaderEv) +STUB( + "CLICMau0sbE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE7popBackEv) +STUB("CLLB8Nyghbs", _ZN3WTF9msToHoursEd) +STUB( + "CLT04GjI7UE", + _ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8_GetmfldERS3_S5_bRSt8ios_basePc) +STUB("CLYCq-XCdw8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEEC1Ev) +STUB("CLanQPO2C2E", _ZN7WebCore21DeviceOrientationData6createESt8optionalIdES2_S2_S1_IbE) +STUB("CLcV6IzL22E", GCC_except_table6) +STUB( + "CLelZrqy36Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEixEm) +STUB( + "CLhbSWKMooI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEEcvbEv) +STUB( + "CLnSZ4WTwDA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEC1EPS6_PNS2_10LibContextE) +STUB( + "CLnzBzhIM4w", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "CLuHRW1NQtc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "CLyftQTQlAo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEC2Ev) +STUB("CLzum2VlVAQ", _ZN3WTF10AtomString6numberEd) +STUB( + "CM0aqtlLiW4", + _ZN3sce2Np9CppWebApi7Matches2V126ResponseTeamResultsFactory7destroyEPNS3_19ResponseTeamResultsE) +STUB("CM5QrdK0gHc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEaSERS7_) +STUB( + "CM8ADL4s8F0", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemPropertiesC1ERS5_) +STUB("CM8jw+2tnHc", + _ZN7WebCore15ActiveDOMObject20queueTaskInEventLoopENS_10TaskSourceEON3WTF8FunctionIFvvEEE) STUB("CMA9M3cwctY", sceFsTrophyImageError) +STUB( + "CMAYpp3R6ok", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE3endEv) +STUB("CMBmzy0hOTk", _ZNK3sce7Toolkit2NP2V24Core17CustomRequestBase21getCustomFunctionTypeEv) +STUB("CMBoQfBTRBY", _ZN7WebCore23CoordinatedBackingStoreC2Ev) +STUB("CMC6IfvUtAE", rgctx_fetch_trampoline_mrgctx_22) +STUB("CMGXXKpT+VA", _ZN7WebCore9FrameView14invalidateRectERKNS_7IntRectE) +STUB("CMHTX5gchP0", lmos) +STUB("CMKyrGMW54Y", _ZNK7WebCore12SettingsBase17cursiveFontFamilyE11UScriptCode) +STUB("CMMNfYf0nGw", _ZNK7WebCore11ContentType9parameterERKN3WTF6StringE) +STUB("CMQ6naYIzNk", rgctx_fetch_trampoline_mrgctx_20) +STUB( + "CMY4fKCG8xI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEE3getEv) +STUB("CMZjWpI9jMA", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEEC1Ev) +STUB( + "CMhnnQKYAp0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEppEv) +STUB("CMkpo2tTjS0", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V111LeaveReasonEEeqERKS7_) STUB("CMl8mUJvSf8", sceUserServiceSetSharePlayFlags) +STUB("CMqu4xbcnJc", rgctx_fetch_trampoline_rgctx_6_p) +STUB("CMrbKg-BX7Q", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V125NatConnectivityProperties11getFromNat3Ev) +STUB( + "CMuy9gf2G28", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "CMvQgGL--YA", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot7getsortEv) +STUB( + "CMvmPRDQsi0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEdeEv) +STUB("CMwT-KpOFYk", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus9setSlotIdERKi) +STUB( + "CN+Tx9nzLuY", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) STUB("CN7EbEV7MFU", sceAppContentDownloadDataFormat) +STUB("CNEe4IDVQ3k", _ZNK3sce2Np9CppWebApi12Leaderboards2V113ErrorResponse8getErrorEv) +STUB( + "CNEsO9+z28M", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitations35setxPSNSESSIONMANAGERNONPSNCALLERIDEPKc) +STUB("CNJ0WvIGGZ4", _ZN3WTF14numberToStringEdPc) +STUB("CNJoUbqVaFc", _ZN3sce2np13NpAccessTokenC2ERKS1_) STUB("CNNRoRYd8XI", sceVideodec2CreateDecoder) +STUB("CNP5gNDn7eM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEEC1ERS6_) +STUB("CNPX6fJd66c", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE5beginEv) +STUB("CNPin3xt-Yg", _ZN3sce7Toolkit2NP2V28Matching4RoomD2Ev) +STUB("CNQLeYqffyw", _ZN9Inspector26DebuggerFrontendDispatcher7resumedEv) +STUB("CNS2pMT-wL4", _ZN3JSC20JSStringHeapCellTypeC1Ev) +STUB( + "CNSuVcrr1Vk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("CNSxbt5m4mc", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching6WorldsEE12deepCopyFromERS7_) +STUB("CNVHR5xfEqI", _ZN7WebCore16HTMLVideoElement24webkitSupportsFullscreenEv) +STUB( + "CNWbwY5dwdg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEED1Ev) +STUB("CNfDCtPLzso", _ZN3sce7Toolkit2NP9Messaging9Interface11sendMessageEPKNS1_11MessageDataEib) +STUB("CNkdPntEBV0", __tsan_read2_pc) +STUB("CNkp-W06xuw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE8pushBackERKS6_) STUB("CNsRsR5a+qc", sceMusicPlayerServiceGetCurrentPlayStatus) +STUB("CNx0ylkWoCg", glBeginQuery) +STUB( + "CNzyrFsT9PM", + _ZN3sce2Np9CppWebApi13InGameCatalog2V510SkuFactory6createEPNS1_6Common10LibContextEiPNS5_12IntrusivePtrINS3_3SkuEEE) STUB("CO+HiTmB0-4", sceAppInstUtilInstallPatch) +STUB("CO1JUzzLODw", mono_aot_Sce_Vsh_SyscallWrapperunwind_info) +STUB("CO2kQ-1VbWU", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEEcvbEv) +STUB("CO6yUWUrXz0", il2cpp_image_get_assembly) +STUB("COCL0Uh7FiI", c17) +STUB("COD0rwcCaUY", _ZN7WebCore11MathMLNames8mfracTagE) +STUB( + "COHrD01h9cU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE5beginEv) +STUB("COOnONW47lo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEE7add_refEv) +STUB( + "COQVtzsDErQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEC2Ev) +STUB("CORMWSC+MDc", _ZNK3WTF8JSONImpl5Value9asIntegerERi) +STUB( + "COS3TmgirFk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("COSADmn1ROg", _Denorm) +STUB("COUJo0QtUFc", mono_aot_Sce_Vsh_Np_AuCheckjit_got) +STUB("COUS5bDWzP0", mono_btls_error_get_error_string_n) +STUB("COYtvdMtSZA", rgctx_fetch_trampoline_mrgctx_35) +STUB("COZ4zQO5B3I", _ZN7WebCore8SVGNames8tspanTagE) +STUB( + "CObcmaYVBgc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE10setContextEPNS2_10LibContextE) +STUB("COe2sIHZwJ0", rgctx_fetch_trampoline_rgctx_4) +STUB("COg8jqqgLC8", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed13UsersWhoLikedEE3setEv) +STUB( + "COj6lfxp0Ho", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE8capacityEv) +STUB( + "COp-jp2P01c", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEE3getEv) +STUB( + "COp9Gt-u6L4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) STUB("COqIT6fJpzc", sceSystemTtsIsAccessibilityAvailable) STUB("COwz3WBj+5s", sceSaveDataUpload) +STUB("COxqqhvLSyM", _ZNK3sce2np10JsonNumber5CloneEP16SceNpAllocatorEx) +STUB( + "COyHjWgn1ts", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEaSERKS7_) STUB("CP-kVAMmWVw", sceAgcDriverGetRegShadowInfo) +STUB( + "CP-ymzj69JQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB("CP1-a895Wnw", _ZN3sce7Toolkit2NP2V28Matching7Request7GetDataD2Ev) +STUB("CP3B785G8k4", _ZN3sce3pss5orbis5input48InputManager_GetControllerHandleByDeviceIdNativeElPi) +STUB("CPC0fBIeh-c", _ZNK7WebCore12SharedBuffer5beginEv) +STUB("CPDt6gjsX9Y", _ZN3JSC9constructEPNS_14JSGlobalObjectENS_7JSValueES2_RKNS_7ArgListEPKc) +STUB( + "CPEC9BAX1zE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEEC2ERSA_) +STUB("CPHB3ynrL14", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEEC2EPNS2_10LibContextE) STUB("CPLV6G-eXmk", sceAudioPropagationSystemRegisterMaterial) +STUB("CPMD3Xc8osA", _ZThn16_N9Inspector18InspectorHeapAgent13startTrackingERN3WTF6StringE) +STUB( + "CPMJuha-FyQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "CPOQBZ0tA-E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEEC1ERSA_) +STUB( + "CPPfyAr9Uos", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEixEm) +STUB("CPSC921MkSU", _ZN3JSC7Symbols36getGeneratorInternalFieldPrivateNameE) +STUB("CPY3kZjzPao", mono_btls_x509_cmp) +STUB("CPmbbHsaQ14", _ZN4Manx6System24setDefaultThreadPriorityEi) +STUB("CPpDO+iVEQY", WKViewRequestExitFullScreen) +STUB( + "CPprJmIqsvM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEEptEv) +STUB("CQ+fWei6Y1s", _ZNK3sce2Np9CppWebApi11Matchmaking2V19Attribute8getValueEv) +STUB( + "CQ0XQz3Yd9s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE3endEv) STUB("CQ1bzp1ba0k", sceKernelGetBackupRestoreModeOfNextBoot) +STUB("CQ5XY-KhUkw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEEaSERS6_) STUB("CQG2oyx1-nM", sceNpLwMutexUnlock) +STUB( + "CQLoj7VNBMo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE5beginEv) +STUB( + "CQNMLobe25U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEED1Ev) +STUB( + "CQYCVS5HneM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEED2Ev) +STUB( + "CQf6IBJdZWQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE5beginEv) +STUB( + "CQmAhyYND6M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEC1Ev) +STUB("CQmgQxUimzw", _ZN7WebCore9HTMLNames12autoplayAttrE) +STUB("CQpBDm9Ykzs", _ZN3sce3pss5orbis9framework12PsmStringObj8FreeUtf8EPc) STUB("CQpIkZ7FVbs", sceUserServiceGetChatStatus) +STUB("CQs8CXpa4FY", _ZN3sce7Toolkit2NP2V23TUS7Request18GetUsersDataStatusD2Ev) STUB("CQsSq6l6+kA", sceAgcGetDataPacketPayloadAddress) +STUB("CQsllLq8d7I", WKSendDisplayConfigurationChangedMessageForTesting) STUB("CQt+pVKwL-0", sceCesGbToUtf16) STUB("CQtPRSF6Ds8", sceNpWebApiReadData) +STUB("CQtwXOnCU1M", _ZN3WTF20ConcurrentPtrHashSetC1Ev) STUB("CR-l-yI-o7o", sceHttpUriCopy) +STUB( + "CR1AYr21fBI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE3endEv) +STUB( + "CRCROWK9RXc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEcvbEv) +STUB("CRCrYdWe6II", _ZN23sceMetadataReaderWriter15ParserInfoTableD1Ev) STUB("CRD+jSErEJQ", sceImeDialogGetPanelSizeExtended) +STUB("CRJcH8CnPSI", unsetenv) +STUB( + "CRLInMIF4-M", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("CRNZeopk00I", _ZN23sceMetadataReaderWriter20LoadedParserInfoList16unregisterParserEj) +STUB( + "CRQ3ENOWldw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE5clearEv) +STUB("CRQnRmsfKuA", + _ZN9Inspector17ScriptDebugServer24evaluateBreakpointActionERKNS_22ScriptBreakpointActionE) +STUB("CRR5HsrCpXA", WKWebsiteDataStoreSetResourceLoadStatisticsDebugModeWithCompletionHandler) +STUB( + "CRTkCnRQNrw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE8pushBackERKS8_) +STUB( + "CRXK1b+vvx0", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEEiRNS2_10LibContextEPT_m) +STUB("CRXrrO9JXPk", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V19JoinStateEEppEv) +STUB("CRYMVM8KCa4", fivesbits) +STUB("CRheYnmQudU", _ZN7WebCore9HTMLNames11templateTagE) +STUB("CRjyQvI95lY", _ZN7WebCore16ResourceResponseC2ERKNS_3URLERKN3WTF6StringExS7_) +STUB("CRoMIoZkYhU", _ZTVSt4_Pad) +STUB( + "CRqfzns7jWc", + _ZN9Inspector26LayerTreeBackendDispatcherC1ERNS_17BackendDispatcherEPNS_33LayerTreeBackendDispatcherHandlerE) +STUB("CRrcMiT03uE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE7popBackEv) +STUB( + "CRtp-iKMBz4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEeqERKS9_) STUB("CRyJ7Q-ap3g", sceHmdInternalSetDebugSocialScreenMode) +STUB("CS91br93fag", __ashldi3) +STUB( + "CSBQBS-Smmw", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119NatConnectivityFrom9setToNat2ERKNS1_6Common12IntrusivePtrINS3_24NatConnectivityToMetricsEEE) STUB("CSCliE0CoAg", scePktMgrSetUlpNtfHdr) +STUB("CSEjkTYt5dw", _ZTVN10__cxxabiv120__function_type_infoE) STUB("CSFNyhqnD5k", sceVorbisDecRawSeek) +STUB( + "CSFRkoXbBrM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) STUB("CSIMDsVjs-g", sceNpMatching2JoinRoom) +STUB( + "CSPtqy8vFks", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEppEi) +STUB("CSQDgq2Ziug", X509_print_ex) +STUB("CSUwlTmA7vs", _ZN3sce7Toolkit2NP2V24Core13CallbackEvent8deepCopyERKS4_) +STUB("CSWPy4toO8k", utext_copy) +STUB("CSWYlHs6Izc", Java_java_lang_Shutdown_runAllFinalizers) +STUB( + "CSWpxOzwrnw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEC1Ev) +STUB("CSXnwqXBe4A", + _ZN3sce2Np9CppWebApi12Leaderboards2V123RecordScoreResponseBodyC2EPNS1_6Common10LibContextE) +STUB( + "CSZfhxQtoyw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE3endEv) +STUB( + "CSajrCfZ5nI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("CScn7k-XRxA", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12string9IsSetEv) +STUB( + "CSdpOXXAy4Q", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "CSfZZh9mqjs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEE7add_refEv) +STUB( + "CSjP0YyyBU0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEC1ERS7_) STUB("CSl1MAdUbYs", sceShellCoreUtilTriggerPapcUpdate) +STUB("CSoIa7qJqRc", jpeg_fdct_12x6) +STUB( + "CSqGW2j4ONw", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10getString2Ev) +STUB("CSuZXQ2Jvng", _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeDataC2Ev) +STUB("CSyTVQgzju4", _ZN3sce2Np9CppWebApi12Leaderboards2V15Entry14setHighestRankERKi) +STUB("CT0iNspIjwM", + _ZN3sce2Np9CppWebApi14SessionManager2V124GameSessionMemberForRead12unsetPlayersEv) +STUB( + "CT1J6pzrSG4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEE11get_deleterEv) +STUB( + "CT29zhQgbvg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEppEi) +STUB("CT2gtjWgCN0", _ZN3sce3Xml3Dom8Document9serializeEPKNS0_18SerializeParameterEPNS0_6StringE) +STUB("CT3th2KZ+4o", _ZN7WebCore24StorageNamespaceProviderD0Ev) +STUB("CT4aR0tBgkQ", log10l) +STUB("CT4bXm6yiKY", _WGetint.flit) +STUB("CT7Mjy8Qyss", _ZN3JSC4Yarr12errorMessageENS0_9ErrorCodeE) +STUB("CT9-jgtUoC4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEEmmEi) +STUB( + "CT9MI7vtrkk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("CTKS0pQr2tU", _ZN3sce7Toolkit2NP20RegisterScoreRequestC1Ev) STUB("CTKW9UibxEA", sceSystemLogger2DeliveryGetBatchResult) +STUB("CTOFOi7GY1s", _ZN3sce7Toolkit2NP2V23TUS7Request12GetVariables26MAX_VARIABLE_VIRTUAL_SLOTSE) +STUB("CTP18gSkax4", _ZNSt9basic_iosIcSt11char_traitsIcEE7copyfmtERKS2_) +STUB("CTPka2irX+A", fuse_set_signal_handlers) +STUB( + "CTTx0bem2Ko", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEC1Ev) +STUB("CTWXeC413WU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy17TrophyPackSummaryEED2Ev) +STUB("CTXAX9LyDlU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEC2ERKS7_) +STUB( + "CTYMB7UVd50", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEmmEi) +STUB("CTet7V7yH2Y", jinit_downsampler) STUB("CTh72m+IYbU", sceAudioInHqOpenEx) +STUB( + "CTjoxUk62Eg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEE5resetEPS9_) +STUB( + "CTkeJw8jzOo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEC2ERS7_) STUB("CTplLrrndUg", sceRegMgrGetStr) STUB("CTy4PBhpWDw", sceNpMatching2SignalingGetPeerNetInfoResult) +STUB( + "CU0V2qbmvu8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEdeEv) +STUB("CU3AFIBXfU8", _reallocalign) +STUB("CU6pVH4LNf8", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10CategoriesEED1Ev) +STUB( + "CU7qPX8Vrls", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE7popBackEv) STUB("CU8m+Qs+HN4", sceSysmoduleLoadModuleByNameInternal) +STUB("CU9S4e4-GbI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE21intrusive_ptr_sub_refEPS7_) STUB("CUCOiOT5fOM", sceFontGraphicsDesignStartDrawing) +STUB("CUDH0R16JvU", mono_loader_register_module) +STUB("CUFAwAyb2kE", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi27ParameterToLeaveGameSessionC1ERS5_) +STUB( + "CUIwfrz8K0U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) STUB("CUKn5pX-NVY", sceFontAttachDeviceCacheBuffer) +STUB( + "CUNAOpCF3F4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEC2ERS7_) +STUB( + "CUONR4VGVkc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEC1Ev) +STUB("CUSez58qA84", _ZN3sce7Toolkit2NP2V28Matching5RoomsC2ERKS4_) STUB("CUSk0qEDj7s", sceRegMgrSrvCnvRegionInt) +STUB("CUY36OE+M+s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEE11release_refEv) +STUB("CUa1YpbWv+E", _ZN7WebCore9HTMLNames10captionTagE) +STUB( + "CUikti925K0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEppEv) +STUB("CUkG1cK2T+U", _ZTVSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE) +STUB( + "CUkmniBv1bc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEC2EPNS2_10LibContextE) +STUB("CUlajtWO-L4", _ZN7WebCore13HTTPHeaderMap3setERKN3WTF6StringES4_) +STUB( + "CUxy6oceOSo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE5emptyEv) +STUB( + "CUyr41KBGAo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEE7add_refEv) +STUB("CV3YJ-QFxi0", Java_java_awt_GnmToolkit_beep) +STUB("CV4VWEe0QK8", _ZN7WebCore10ScrollView21setDelegatesScrollingEb) +STUB( + "CV6PB8SWwUw", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions9hasfieldsEv) +STUB("CVAZFgYPXaA", fuse_req_ctx_compat24) +STUB( + "CVGBLjvrRyQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE5beginEv) +STUB( + "CVIa+lzH6sc", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112ErrorFactory6createEPNS1_6Common10LibContextEiPKcPNS5_12IntrusivePtrINS3_5ErrorEEE) +STUB( + "CVJ+XWGupG8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEE7add_refEv) +STUB( + "CVNActuG3Xc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEC2EPS8_) +STUB("CVZjx9O+1Ic", _ZNK3sce2Np9CppWebApi6Common13ParameterBase13isInitializedEv) +STUB( + "CVcEH3JTus8", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi28ParameterToDeleteGameSession12setsessionIdEPKc) +STUB("CVcmmf8VL40", _ZTISt9time_base) +STUB( + "CVeNh4NUDIY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE7popBackEv) +STUB( + "CVj265Loy-4", + _ZN3sce7Toolkit2NP2V29Messaging28getGameDataMessageAttachmentERKNS3_7Request28GetGameDataMessageAttachmentEPNS2_4Core8ResponseINS3_25GameDataMessageAttachmentEEE) +STUB("CVoT4wFYleE", __fe_dfl_env) +STUB( + "CVoU2SMBOE8", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "CWBduqW1Crk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "CWEcXui9eOQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("CWHVjeJ6MZA", _ZN3sce3Xml3Dom8DocumentC2ERKS2_) +STUB("CWOI5J2vrQo", glGetSamplerParameterfv) +STUB("CWRQgaUPkmM", _ZN7WebCore5Style5Scope29flushPendingDescendantUpdatesEv) +STUB( + "CWSszVsMX4U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "CWTa2VM6czc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) STUB("CWVW78Qc3fI", sceMsgDialogGetStatus) +STUB( + "CWVcnHVvNpk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEplEm) +STUB( + "CWWhbexfX00", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEC1EPS8_) +STUB("CWX8y31zqQM", _ZN3JSC13ErrorInstance17sanitizedToStringEPNS_14JSGlobalObjectE) +STUB( + "CWYR-Y+ntmI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) STUB("CWcxjT6X+1c", sceShellCoreUtilIsRemotePlayCpuBudgetAcquired) +STUB( + "CWfrxh5cD90", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody16setSwapSupportedERKb) +STUB( + "CWiF-2pAtec", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEE21intrusive_ptr_add_refEPS7_) +STUB("CWiqHSTO5hk", rindex) +STUB("CWkPMrlG0xk", mono_shared_internal_hash_table_insert) STUB("CWlBd2Ay1M4", sceSaveDataGetDataBaseFilePath) +STUB("CWmtGgR8wmM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEC2ERS7_) +STUB("CWnGG3DOIt8", glDeleteRenderbuffers) +STUB( + "CWohPPRiAmk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEEC1ERKSA_) +STUB( + "CWpEjgIAAKQ", + _ZN3sce2Np9CppWebApi11UserProfile2V131GetPublicProfileResponseFactory7destroyEPNS3_24GetPublicProfileResponseE) +STUB("CWqU-deu6xg", _ZTVN7WebCore11DisplayList10StrokeRectE) +STUB("CWx+1PBYF-c", _ZSt9use_facetISt7codecvtIwc9_MbstatetEERKT_RKSt6locale) +STUB("CX3WC8qekJE", _ZTSSt13runtime_error) +STUB( + "CX5qqjEonA8", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer17getacceptLanguageEv) +STUB( + "CX6zbscWatM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEEaSERKSA_) +STUB( + "CXCwrae7j+o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEEdeEv) +STUB( + "CXMTDDr1EbE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEeqERKS9_) +STUB("CXOCKWslI-I", _ZN3sce2Np9CppWebApi6Common8IteratorIjEC1EPj) +STUB( + "CXS0LLk+e08", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE3endEv) +STUB("CXURjGcS5d4", _ZN7WebCore9HTMLNames5h3TagE) +STUB("CXXjhKhutaQ", cuse_lowlevel_setup) +STUB( + "CXclfg++VT8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEE11get_deleterEv) +STUB( + "CXg19T-molE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE21intrusive_ptr_sub_refEPS9_) +STUB("CXgp9dPHOTY", _ZN3JSC17weakClearSlowCaseERPNS_8WeakImplE) +STUB("CXkb5yazhTk", _ZN23sceMetadataReaderWriter7Storage21updateParserInfoTableEv) +STUB("CXkqldFdy+4", rethrow_exception_p) +STUB("CXncpqp7gBE", _ZN3sce2Np9CppWebApi6Common6VectorIjEC2Ev) STUB("CXoCR22n86Q", sceDbgSetBreakOnErrorState) +STUB( + "CXyL3pZRkkQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE3endEv) STUB("CY8CHAy3TGk", sceFsUfsFsck) +STUB( + "CYCmVNbAi+4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEED2Ev) +STUB("CYECV+WoJpQ", + _ZNK3sce2Np9CppWebApi7Matches2V123ResponseMatchStatistics6toJsonERNS_4Json5ValueEb) +STUB( + "CYEb4rk5eCo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEC2Ev) +STUB("CYElAh1x4Jc", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEEixEm) +STUB("CYG4ENFhXdA", _ZN3JSC7Options10setOptionsEPKc) STUB("CYIzY6OXyAs", sceKernelEndAppMount2) +STUB("CYJC0YsH4u4", _ZN7bmalloc9Allocator12allocateImplEmmNS_13FailureActionE) +STUB( + "CYK57jd-260", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEmmEv) +STUB( + "CYMoGlXVfMc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEE3getEv) +STUB( + "CYOgsbc82lo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEC2EPKS8_) +STUB("CYPJi6zTh+U", NET_ThrowNew) +STUB("CYS3VjmRCCU", _ZN3IPC13DataReference6decodeERNS_15ArgumentDecoderERS0_) +STUB( + "CYTFFdU5cmI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEeqERKS9_) +STUB("CYW71WY3WUU", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes14integer10IsSetEv) +STUB( + "CYZEkULCxrc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEppEv) +STUB("CYkcE1YQNeg", _ZN3JSC35getSomeBaselineCodeBlockForFunctionENS_7JSValueE) +STUB( + "CYn5f1wClEI", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getBoolean5Ev) +STUB( + "CYoRYbYDxJM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEC1ERS7_) +STUB( + "CYqOBjeon3s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "CYwm0L6chkw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEE7add_refEv) +STUB("CZ-8yXlRVB0", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEE3getEv) +STUB("CZ0z95gBgXg", uloc_getBaseName) +STUB( + "CZ9Dfrl7HPE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEEC1ERS9_) +STUB("CZHdjB7ArhA", _ZNK3WTF10StringView8containsEPKc) +STUB("CZNm+oNmB-I", optreset) +STUB("CZORPcYSNNA", il2cpp_field_set_value_object) +STUB("CZRJl06iMWk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEED2Ev) STUB("CZRLO-gAmpk", sceVideoCoreInterfaceUnloadModule) +STUB("CZT07J4ApsE", _ZN3JSC4Yarr17RegularExpressionnwEmPv) +STUB("CZVUD-Wvxn0", _ZN3JSC7Symbols29defaultPromiseThenPrivateNameE) +STUB( + "CZXpze4DgBA", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariable31getaddAndGetVariableRequestBodyEv) +STUB("CZZeLY8LRCU", _ZN3sce7Toolkit2NP2V210Tournament20OneVsOneMatchDetailsC2ERKS4_) +STUB("CZbH3YP7JV4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE4sizeEv) +STUB( + "CZbZiYL+UyM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEC2Ev) +STUB( + "CZcWuq5aLS4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEEC2ERKSA_) +STUB( + "CZdHj3xbCxY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEC1Ev) STUB("CZecZG5-Rfc", sceMoveTrackerPlayGetStates) +STUB( + "CZetgOlryas", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "CZgESEqN2gg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE5eraseENS2_8IteratorIS8_EERSB_) STUB("CZgPsIdPqSk", sceVisionManagerRequestFindUserWithoutIdentify) +STUB("CZkn2zf6pPM", g_opcodeMapWide32) +STUB("CZnQ67rQOAI", JVM_GetClassMethodsCount) STUB("CZrOHqt6oCY", sceShellCoreUtilActivateStartAsync) +STUB("CZtVnwgan2E", rgctx_fetch_trampoline_rgctx_80_p) +STUB("Ca+obrunqtI", _ZN3sce7Toolkit2NP2V27Ranking12FriendsRanksD1Ev) +STUB("Ca5eFow4EPU", _ZN2GK9PlayerPSN11setPlatformEv) +STUB( + "CaDhP62-xG0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE8pushBackERKS8_) +STUB( + "CaFP31h5mR4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "CaG2m85yX88", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEptEv) +STUB("CaK65eE3ONo", rgctx_fetch_trampoline_mrgctx_28) +STUB( + "CaKfQZSlGbc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEED2Ev) +STUB( + "CaKslPqhDcs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEppEv) +STUB("CaW5gixDGFw", _ZNK3WTF9BitVector14equalsSlowCaseERKS0_) +STUB("CaWzM7xPdpQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEC2ERS7_) +STUB("CaaDcQ265D0", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_15RankInformationEE17getAdditionalInfoEv) +STUB("Caez01BS2mE", FT_Set_Charmap) +STUB( + "CalnXFORAIk", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_23NpSessionInvitationInfoENS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv) STUB("CawZgCYqXWk", pthread_barrier_wait) +STUB( + "Cb+sh1N3i9c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("Cb1IrMas-u8", mono_aot_ReactNative_Modules_Vsh_Gct_Telemetry2jit_code_start) +STUB("Cb1hI+w9nyU", _ZNSt8numpunctIcEC2ERKSt8_Locinfomb) +STUB("Cb3IRwKPJPI", + _ZN3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinition9terminateEv) +STUB( + "Cb5RaKK2eLA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEEaSERKSA_) +STUB("Cb7rTfsLBjI", _ZN12video_parser10cVideoPath11GetPathNameEv) +STUB("Cb7xWd9-7tc", _ZNK15AbstractStorage4Item15CreateThumbnailEPvPSt10shared_ptrINS_7ContentEE) +STUB( + "Cb9cDLBevFY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEC2EPKS8_) +STUB( + "CbFplXIocfc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE11getResponseERS8_) +STUB( + "CbImY5IhNno", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEC2EPKS8_) +STUB( + "CbJTWIOHsoE", + _ZN3sce2Np9CppWebApi14SessionManager2V127PostGameSessionsRequestBody8fromJsonERKNS_4Json5ValueE) +STUB("CbNga0tWS2o", _ZNSbIwSt11char_traitsIwESaIwEE6assignEOS2_) +STUB("CbNwLqSqKDw", _ZN7WebCore20PasteboardCustomDataaSERKS0_) STUB("CbQh3DKMSno", sceAgcAcbCopyDataGetSize) +STUB("CbRhl+RoYEM", _LQuadph) +STUB("CbTkO6oTYk4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEcvbEv) STUB("CbUYbKgLtJM", sceShellCoreUtilGetPs4AppCategoryDefaultsListId) +STUB( + "CbVLrGdVcQ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEEaSERKS9_) +STUB("CbW3wJN+T+Y", _ZNK7WebCore5Color7getRGBAERfS1_S1_S1_) +STUB("CbWxMDgV5WQ", WKErrorCopyDomain) +STUB( + "CbbwZ4UFWK4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEC1EPS8_) +STUB("Cbgna+rzoKg", _ZN9Inspector21InspectorConsoleAgentD0Ev) +STUB( + "CbhZFoiynxI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEC2EPKS8_) +STUB("Cbi5bE14zRk", _ZN7WebCore24RotateTransformOperationD2Ev) +STUB( + "CbiAo0FosAY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEmmEi) +STUB( + "CbkaS7C3Hig", + _ZN9Inspector25DebuggerBackendDispatcher8stepOverElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("CbrT3dwDILo", _ZN3sce4Json5ValueC1ENS0_9ValueTypeE) +STUB( + "Cbw9i5ChN4E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE4sizeEv) +STUB("Cbz6kMfkIfM", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112GroupingTypeEEppEv) +STUB("CbzhOF12EMk", _ZN3WTF14AtomStringImpl3addEPKDs) +STUB( + "Cc+6BUxLSrk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEE6assignEPS5_PFvS7_EPNS2_10LibContextE) +STUB("Cc+Qhdd4ons", curl_url_get) +STUB("Cc-+O41+qDY", _ZN7WebCore13AXObjectCache23focusedUIElementForPageEPKNS_4PageE) +STUB( + "Cc-mqzfwZdM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEC2Ev) +STUB( + "Cc0GKKH52hc", + _ZN3sce2Np9CppWebApi7Matches2V126AdditionalStatisticFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_19AdditionalStatisticEEE) +STUB("Cc1lge6eNeA", ucase_totitle) +STUB( + "Cc5r7Wmy+gc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("Cc6pT9g-ZIk", WKPageCenterSelectionInVisibleArea) +STUB( + "Cc74A1JtZow", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEEptEv) +STUB( + "CcEsc39wfoY", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectator28getxPsnAcceptPlatformNamePs5Ev) +STUB( + "CcFIHcgxm+8", + _ZThn24_N9Inspector22InspectorDebuggerAgent19evaluateOnCallFrameERN3WTF6StringERKS2_S5_PS4_PKbS8_S8_S8_S8_RNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISC_EEEERSt8optionalIbERSH_IiE) +STUB( + "CcGfrrtVfio", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEE7get_refEv) STUB("CcIH40dYS88", sceNpTusDeleteRequest) +STUB( + "CcLEsw-l+dA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEppEi) +STUB("CcM8rPorbzI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEEC2ERKS7_) +STUB("CcMQp8E76TM", WKPreferencesGetShouldPrintBackgrounds) +STUB( + "CcTwPw9bs-I", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("CcY0E8MatFg", _ZN3JSC2VM25intlDisplayNamesSpaceSlowEv) STUB("CcYWiRcCY38", sceCesUtf32beToBig5) +STUB( + "CcZmwv0vEXk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEE11get_deleterEv) +STUB("Ccb2YD3x2NA", _ZN7WebCore9PageCache6removeERNS_11HistoryItemE) +STUB("CchAOsvqoAo", _ZN3sce7Toolkit2NP2V24Core12ResponseDataaSERKS4_) +STUB("CchgKVep+h8", _ZNK7WebCore20ResourceResponseBase27cacheControlContainsNoStoreEv) +STUB( + "CckDbmfBtsY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEdeEv) +STUB( + "Cckrkt2EK+k", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("CclqWxyGoHI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEneERKS9_) +STUB("CcpIbveKkZc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEC1Ev) +STUB( + "Ccryri+NLTA", + _ZN9Inspector24RuntimeBackendDispatcher18enableTypeProfilerElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("CctDwDGNTV8", _ZN3sce7Toolkit2NP2V212ActivityFeed7CaptionD2Ev) +STUB( + "CcuupyJjroU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEE3getEv) +STUB("CczSTwBcdxE", _ZN3sce7Toolkit2NP11TusVariableC1Eil) +STUB("Cd5MjaSs9No", _ZNK3sce2Np9CppWebApi7Matches2V113ChildActivity9getStatusEv) +STUB("Cd7iiRtSBkU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEC1ERS7_) +STUB("CdB-tXuJG6I", _ZN3sce7Toolkit2NP2V28Matching9AttributeC2Ev) +STUB( + "CdJrRMlkgmI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEmmEi) STUB("CdMxiPm8PRc", sceOpusCeltEncCreate) +STUB( + "CdOZf5UuKTw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEneERKS9_) STUB("CdQg39qlfgY", sceNpManagerIntCreateLoginRequest) +STUB("CdS6RU1tzh8", _ZN7WebCore19BlurFilterOperation6createENS_6LengthE) +STUB("CdUqp-LHLno", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariableD1Ev) STUB("CdWp0oHWGr0", sceUserServiceGetInitialUser) +STUB("CdZPjawzaK8", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11SessionDataEE3setEv) +STUB("CdcpsO0SLtw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEED2Ev) +STUB("CdgGBMYr0RU", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScore13isInitializedEv) +STUB("CdknolF3ZmY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEE7get_refEv) +STUB("CdobpaGS6WU", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_14TrophyGameInfoEE3getEv) +STUB( + "CdrkD30abHQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEED2Ev) +STUB("CdsviRGZSIY", _ZN7WebCore21DiagnosticLoggingKeys11cpuUsageKeyEv) +STUB("CdtXvtmle9M", _ZN7WebCore22EmptyFrameLoaderClient14didChangeTitleEPNS_14DocumentLoaderE) +STUB( + "Cdxm+zNVATM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEE21intrusive_ptr_sub_refEPS7_) +STUB( + "CdzNHVUKOsQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEixEm) +STUB( + "Ce3mEsqP6jI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEEcvbEv) +STUB("Ce9OAueql30", png_create_info_struct) +STUB( + "CeCxDBSbT1A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEC1Ev) +STUB("CeElm41KZXc", + _ZN7WebCore32ScrollingStateFrameScrollingNode14setFooterLayerERKNS_19LayerRepresentationE) +STUB( + "CeN0J-CTs1Q", + _ZN3sce7Toolkit2NP2V29Messaging7Request27GetReceivedGameDataMessages25MAX_NUM_GAME_DATA_MSG_IDSE) +STUB( + "CeQrFhGNKyc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEC1ERS7_) +STUB( + "CeRrd3RlxNY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEplEm) STUB("CeSI7C4ihjo", sceFontGraphicsSequenceGetAgcCommandsForSubmit) +STUB("CeSQvxUUIYs", _ZNK7WebCore23FrameLoaderStateMachine32isDisplayingInitialEmptyDocumentEv) +STUB( + "CeUeEQuj+rg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEC1Ev) +STUB("CeWwr0BgALg", _ZN3sce7Toolkit2NP2V210Tournament7Request19SendTeamMatchReportC2Ev) +STUB("CeXpJ67r7j0", _ZN3JSC7Symbols39AsyncGeneratorStateExecutingPrivateNameE) +STUB( + "CeZ9WEvUMGk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEdeEv) +STUB( + "CeZmyQM7bAI", + _ZN3sce2Np9CppWebApi14SessionManager2V134ResponsePlayerSessionPlayerFactory6createEPNS1_6Common10LibContextERKmPKcPNS5_12IntrusivePtrINS3_27ResponsePlayerSessionPlayerEEE) +STUB("CeamasxeTSs", + _ZN3sce2Np9CppWebApi14SessionManager2V123MemberWithMultiPlatform11setPlatformEPKc) +STUB("Ceh1Rzjl9ww", udatpg_setAppendItemName_67) +STUB("Cej7NxK3YEw", _ZN3sce2Np9CppWebApi6Common8IteratorIlEC1EPl) STUB("Cekhs6LSHC0", sceRemoteplayGetRpMode) STUB("CenzYgIUIIw", sceVnaSetDucking) +STUB("Ceq8ieFRG+0", _ZN3WTF8JSONImpl6Object6createEv) STUB("CerqkWrBq-A", sceUserServiceSetNotificationSettings_3) +STUB( + "CeyrtwvJTqQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEE3getEv) +STUB("Cf-2kNJZ-kg", _ZN3sce3Xml3Dom8NodeList9terminateEv) +STUB("Cf1Hb3G9Kkw", _ZN7WebCore9HTMLNames4bTagE) +STUB( + "Cf4YKUzgWqc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE7popBackEv) STUB("Cf8NftzheE4", sceUserServiceGetPbtcSaturdayHoursEnd) +STUB("CfH+dj4dWJE", + _ZN3sce2Np9CppWebApi14SessionManager2V124GameSessionMemberForReadC2EPNS1_6Common10LibContextE) +STUB( + "CfKDlPSQIdo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEED1Ev) +STUB("CfL0uTDcrqY", mono_install_jump_trampoline) +STUB("CfMn-JFeLmQ", _ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEE8copyFromERKS5_) +STUB("CfOrGjBj-RY", log2l) +STUB("CfP4Q2Yjm1U", u_memcasecmp) +STUB("CfRalQNh1Mc", _ZN9Inspector20InspectorTargetAgent15setPauseOnStartERN3WTF6StringEb) +STUB("CfU6jdqHDkM", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_23NpSessionInvitationInfoEEneERKS4_) +STUB("CfYEYTOHv+8", + _ZN7WebCore13JSHTMLElement15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB("Cfbsupt+BBk", WKWebsiteDataStoreSetStatisticsMinimumTimeBetweenDataRecordsRemoval) +STUB("Cfdmkc6eosw", mono_trace_set_logheader_string) +STUB("CfeusPdBZ94", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEmmEv) +STUB( + "CfjSBS+DW-g", + _ZN7WebCore17PageConsoleClient10addMessageEN3JSC13MessageSourceENS1_12MessageLevelERKN3WTF6StringES7_jjONS4_6RefPtrIN9Inspector15ScriptCallStackENS4_13DumbPtrTraitsISA_EEEEPNS1_14JSGlobalObjectEm) +STUB("CfkNVHnT78w", ft_validator_error) +STUB("CfkjC51cAZU", _ZN3sce2Np9CppWebApi7Matches2V111AddedPlayer13setPlayerNameEPKc) STUB("CfkpBe2CqBQ", sceFontGraphicsDrawupFillTextureImageObject) +STUB( + "CfoCiLo7xX8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEED1Ev) STUB("CfwUlQtCFi4", scePadMbusInit) +STUB("CfwjgvKYsI8", _ZN23sceMetadataReaderWriter15ParserInfoTableD2Ev) +STUB( + "Cg03nWxWq4s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEC2Ev) +STUB( + "Cg42wEpEc+Y", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser17unsetmemberFilterEv) +STUB( + "Cg4AWLjaKuI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) STUB("Cg4srZ6TKbU", sceKernelRead) +STUB("CgBCrLvqRUQ", _ZN9Inspector21DOMFrontendDispatchernwEmPv) +STUB("CgCJr7J9+eQ", _ZTVN15AbstractStorage17DailymotionFolderE) +STUB("CgDwXDpbej4", _ZN7WebCore9HTMLNames12onchangeAttrE) +STUB("CgGaZAovO+w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEixEm) +STUB("CgJ2nGibrIo", _ZNK7WebCore15VisiblePosition30absoluteSelectionBoundsForLineEv) +STUB( + "CgOkiNT0U5I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEEC1ERSA_) +STUB( + "CgSAiGsv0bY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEEaSERKSA_) +STUB( + "CgSbdJjHTyc", + _ZN15AbstractStorage14MemfileContentC1ESbIcSt11char_traitsIcENS_8StlAllocIcEEEN3paf6common9SharedPtrINS6_6BufferEEE) +STUB("CgUDNF1mJVs", + _ZN3sce2Np9CppWebApi7Matches2V125RequestTeamResultsFactory7destroyEPNS3_18RequestTeamResultsE) STUB("CgVdl9Sp1G0", sceLncUtilGetCoredumpState) +STUB( + "CgVpOTm1s8s", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser11unsetfieldsEv) +STUB("CgX3gwiVZYM", + _ZNK3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayer14getCustomData1Ev) +STUB( + "CgXnN69zcjQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB( + "CgYvpwF5BTQ", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlot13getaccountIdsEv) +STUB( + "CgZF8fvxU18", + _ZN3sce2Np9CppWebApi14SessionManager2V127ResponsePlayerSessionPlayerC1EPNS1_6Common10LibContextE) +STUB( + "CgZOaV3UU8Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEdeEv) +STUB( + "Cgb6uzWp6Xw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEED2Ev) STUB("CgdJ1PkIsE4", scePlayerSelectionDialogTerminate) STUB("CgfvQDFAtYU", sceKernelDebugGetPauseCount) +STUB("Cgh0i6SAWZo", _ZNK7WebCore14ResourceHandle6clientEv) +STUB("CguPlNtb5xY", uprv_decNumberDivide_67) +STUB( + "CgxvomERULI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE3endEv) +STUB("CgyJK7VOznY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEaSERS7_) +STUB("Ch+tmX9rvZM", jpeg_idct_9x9) +STUB( + "Ch0SLRZjIcU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEC2EPS6_PNS2_10LibContextE) +STUB("Ch0rwJ8oqIA", _ZNK7WebCore11MediaPlayer14preservesPitchEv) +STUB( + "Ch30KdY7vZw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE7popBackEv) +STUB("Ch6UfO991Xs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEEC2ERS7_) +STUB( + "Ch8GFwym8PA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEEaSERKSA_) +STUB("ChC8UlHcgSo", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container9getRatingEv) STUB("ChCOChPU-YM", sceKernelSettimeofday) +STUB( + "ChCtHSG7DPY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEC1ERS7_) +STUB("ChELiKSlZ9o", _ZN3WTF15fastAlignedFreeEPv) +STUB( + "ChFhSECNG40", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE8pushBackERKS8_) +STUB( + "ChIS3Sau4KU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEE7get_refEv) +STUB("ChLHxk0SgNg", _ZN3JSC9Structure8isSealedERNS_2VME) +STUB("ChQ8saJ2j+E", BN_bin2bn) +STUB( + "ChSE1CBGOo0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEC1Ev) +STUB("ChTfGuWGCd0", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEED2Ev) +STUB("ChYUCyXH4LU", _ZN3JSC20TypedArrayControllerD2Ev) +STUB("ChZfZu6D8To", rgctx_fetch_trampoline_mrgctx_45) +STUB("ChZrjApCxSA", _ZN3JSC11IsoSubspaceC1EN3WTF7CStringERNS_4HeapEPNS_12HeapCellTypeEm) STUB("ChiY6gHrMK4", sceDepthSaveInternalBuffers) +STUB("Chl8gP+3Bcc", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils12Notification15UserStateChangeEED1Ev) +STUB( + "ChmAPh+flJQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEppEi) +STUB( + "ChsAg1q678s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEEC2ERSA_) +STUB("Chv7JuHBGdI", _ZTSn) STUB("Ci0PqEOATeQ", scePadTrackerTerm) +STUB("Ci16P2r8vac", mono_threads_set_default_stacksize) +STUB("Ci23cw0YzEg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEEC2EPS6_) +STUB("CiD6-BPDZrA", _ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED1Ev) +STUB( + "CiFhkQg6Dr0", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("CiHv9vxLw-g", _ZN7WebCore6Editor7copyURLERKN3WTF3URLERKNS1_6StringE) +STUB("CiKXl603eqg", _ZN7WebCore20SVGPathStringBuilder6resultEv) STUB("CiQbpUqMc90", sceUserServiceCreateKratosUser) +STUB( + "CiQhlijmzx4", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB( + "CiR811GvkyQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEC2EPS9_) +STUB("CiRO4fSA0Nk", _ZN7WebCore23CoordinatedImageBackingD1Ev) +STUB("CiT0N4PeQU0", _ZN7WebCore12JSAudioTrack14finishCreationERN3JSC2VME) +STUB("CiTwxKPU0ZM", _ZN3sce7Toolkit2NP2V27NpUtils7Request22GetAccountIdByOnlineIdC2Ev) +STUB("CiUf2BGIMYQ", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEE5resetEPS5_) +STUB("CiaetnwGuCA", uprv_decNumberIsSubnormal_67) STUB("Cidi9Y65mP8", sceNetGetSockInfo6) +STUB( + "Cif5PCyIEqM", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("Cin3R+j17yw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEE11get_deleterEv) +STUB("CinxxPNU5zg", WKPageSetScaleFactorKeepingScrollOffset) +STUB( + "Cirj6zaZK8Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEmmEi) +STUB("Cix07ta4TUU", mono_dl_open) +STUB("CiyEuwxFBHU", Java_com_sony_bdjstack_javax_media_controls_SoundManager_alloc___3BIIZ) +STUB("Cj+Fw5q1tUo", _Xtime_get_ticks) +STUB( + "Cj+oRnNqYqs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEE11get_deleterEv) +STUB( + "Cj+sC0O+XOs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEEC1ERKSA_) +STUB("Cj81LPErPCc", __signbitl) +STUB( + "CjABZPKPB58", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEED1Ev) +STUB( + "CjB99kD5MrM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("CjCSTPYXAkc", fuse_opt_insert_arg) +STUB( + "CjDIf5btcyI", + _ZN7WebCore24CoordinatedGraphicsLayer12setMaskLayerEON3WTF6RefPtrINS_13GraphicsLayerENS1_13DumbPtrTraitsIS3_EEEE) +STUB("CjFUMMCCx-4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE4sizeEv) +STUB("CjLdS99AOJU", WKPreferencesGetEnumeratingAllNetworkInterfacesEnabled) +STUB("CjLk6g64QKc", _ZN3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayerD2Ev) STUB("CjM2EuBIMV0", sceAppInstUtilAppIsInUpdating) +STUB("CjPeOAnJSIs", _m_ch_key2) +STUB("CjQROLB88a4", __signbitf) +STUB( + "CjRpsQTPLyQ", + _ZN7WebCore14ResourceHandle6createEPNS_17NetworkingContextERKNS_15ResourceRequestEPNS_20ResourceHandleClientEbbb) STUB("CjVIpztpTNc", sceNpTusTryAndSetVariableForCrossSaveVUserAsync) +STUB("CjZOCyNpKsk", _ZN3WTF8JSONImpl9ArrayBase11pushIntegerEi) +STUB("CjbBp3WkdmQ", rgctx_fetch_trampoline_rgctx_64_p) +STUB("CjbNSVG1Wzg", _Z29Sound_CreateSurroundPanPlayeriPi) +STUB("CjlD53MVsLc", _ZN7WebCore8SVGNames22alignment_baselineAttrE) +STUB( + "Cjp1VdyvAcg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEEC2Ev) +STUB( + "CjqYQFuibNw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEC2EPS6_PNS2_10LibContextE) +STUB("CjsYsFzNRDM", mono_aot_System_ServiceModel_Internalsunwind_info) STUB("CjxqMyx2-pU", sceHttp2GetAllTrailingHeaders) +STUB("CjzjU2nFUWw", _ZN10__cxxabiv116__enum_type_infoD0Ev) +STUB( + "CjzmCTIVTAY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEEC2ERKSA_) +STUB("Ck7EnTkn80I", GCC_except_table243) +STUB("Ck7bElZaJ-4", WKPageGetSelectionAsWebArchiveData) STUB("Ck7qGp2MjI4", sceFsUmountSaveData) +STUB("Ck7yQ-P4LTU", + _ZN9Inspector17ScriptDebugServer29dispatchBreakpointActionSoundEPN3JSC9ExecStateEi) +STUB("Ck9k-L7rz-I", FcInitBringUptoDate) +STUB( + "CkCN8-sXJrs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEED1Ev) +STUB("CkDyem5Vkyw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEE11release_refEv) +STUB("CkJiJfJbJJc", _ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE3endEv) +STUB( + "CkNEm60EiSU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEppEi) +STUB( + "CkNaUyQB0as", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEED1Ev) +STUB("CkP9jjPO4ic", BIO_new_fp) STUB("CkPxQjSm018", sceNpSignalingGetConnectionFromPeerAddress) STUB("CkVmLoCNN-8", sceFontGetScalePixel) +STUB("CkXK2Mgoq+I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE8capacityEv) +STUB("CkXUW6BfNPM", _ZN7WebCore24FrameDestructionObserverD0Ev) +STUB("CkY0AVa-frg", _ZSt15get_new_handlerv) +STUB("CkZ778Hu6Ng", FcPatternGetString) +STUB("Ckk8xQfD6dg", delegate_virtual_invoke_imt_5_p) STUB("CkomU+GYCQ8", sceKernelSetAppInfo) +STUB("Cl2V3DEEHcs", _ZN9Inspector31createScriptCallStackForConsoleEPN3JSC14JSGlobalObjectEm) +STUB("Cl56AZ183lA", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEEcvbEv) STUB("ClBMa8CWKkM", sceUsbStorageDialogOpen) +STUB( + "ClBol8ZgBBg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE3endEv) +STUB("ClEQiRzl3f4", _ZN3sce7Toolkit2NP2V27Ranking10UsersRanksC2Ev) +STUB("ClFa2+CRKVo", _ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_9DOMMatrixE) STUB("ClGNc0cii6I", sceCesIso2022StrGetUtf8Len) +STUB( + "ClKv7yGVu6s", + _ZN7WebCore17PageConsoleClient10addMessageEN3JSC13MessageSourceENS1_12MessageLevelERKN3WTF6StringEmPNS_8DocumentE) +STUB( + "ClMTvMHeU1Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEcvbEv) +STUB("ClO-QNFpK2k", _ZN9Inspector33LayerTreeBackendDispatcherHandlerD0Ev) +STUB( + "ClOg8L6EqMY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEplEm) +STUB("ClRdU+e1I1o", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product16unsetContentTypeEv) +STUB("ClUGAAMlVr4", mono_aot_System_Net_Httpjit_code_start) +STUB("ClULz8wHZdw", Java_java_lang_reflect_Array_newArray) +STUB( + "ClVcmwIVr3k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEE11get_deleterEv) +STUB("ClZ8vxvE28U", _ZNK7WebCore20ResourceResponseBase24isAttachmentWithFilenameEv) +STUB("ClceGNiWhXM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE7reserveEi) +STUB("ClfCoK1Zeb4", __atomic_compare_exchange) +STUB( + "ClfFs2TSgDk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE7reserveEi) STUB("ClnsFLLLcss", sceAmprMeasureCommandSizeWaitOnCounter_04_00) +STUB( + "Clo-rEjiNxU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEED1Ev) +STUB( + "ClsCc2AQU74", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEixEm) +STUB("CluPe2pSlWw", _ZN3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error9unsetCodeEv) +STUB( + "ClyBQ+c06fU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEE3getEv) +STUB( + "Cm1h1W2gZ10", + _ZN7WebCore11JSDOMWindow19getOwnPropertyNamesEPN3JSC8JSObjectEPNS1_9ExecStateERNS1_17PropertyNameArrayENS1_15EnumerationModeE) +STUB("Cm4GR2wEVwc", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE3endEv) STUB("Cm8AZ5YHBTk", scePlayReadyCdmiCreateMediaKeys) +STUB( + "CmDYPRnJ8o0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEED2Ev) +STUB("CmEb6NZaH44", _ZN3WTF7RunLoop9TimerBaseD2Ev) +STUB("CmHmkN5DjlE", mono_event_get_flags) +STUB( + "CmKpXG179jA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEixEm) +STUB("CmMj2R-l2u0", __rela_dyn_end) +STUB( + "CmT2ssqrxwc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEC2ERS8_) +STUB("CmV8rA9at8A", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEE7add_refEv) +STUB("CmZE73V+9QY", ucnv_io_getConverterName) +STUB("CmcCOnsxO4g", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V18RelationEEC2Ev) +STUB( + "Cmcn3RSODj4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEppEv) STUB("Cmd4+m7V00c", _sceNpAllocatorExStrdup) +STUB("CmehGeAPaZU", monoeg_g_strreverse) +STUB("Cmeoilr1Pvk", Java_com_sony_gemstack_io_factories_jar_JarRandomAccessFile_getProxy) STUB("CmlLiND79W8", sceAgcSdmaConstFill) +STUB("Cmmtdh--N9s", _ZN7WebCore19MediaElementSession25removeBehaviorRestrictionEj) +STUB( + "CmoYFAoeFMg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "Cmp3EDOZyxM", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE18getResponseHeadersERSB_) +STUB( + "CmsawZOG7Y4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEdeEv) +STUB("CmsboRSnrS4", uloc_getCharacterOrientation_67) +STUB( + "CmzH9wXBu9g", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE5beginEv) +STUB("Cn1RbccDNP0", + _ZN7WebCore23ApplicationCacheStorage23calculateUsageForOriginEPKNS_14SecurityOriginERl) +STUB("Cn1d1wD5dGs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEaSERS7_) +STUB("Cn4swlrBdg0", + _ZN3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectator14setCustomData1EPKvm) +STUB("Cn5Shf4vRoc", _ZNK3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayer11getOnlineIdEv) +STUB( + "Cn63pWGUArg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEC1EPS8_) +STUB("CnCoeVHpqrI", _ZTVN9Inspector30CanvasBackendDispatcherHandlerE) +STUB("CnDHI7sU+l0", _ZN3sce2np6ObjectdlEPv) +STUB("CnDWD5FXLwQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEEC2Ev) +STUB( + "CnIfHZhZp4o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEEC1ERKSA_) +STUB("CnRsS4PUsec", mono_arch_get_call_filter) STUB("CnSKoVauJt0", sceFsUfsGrowLwfs) +STUB("CnWeAH8yMqY", _ZN7WebCore9HTMLNames12subtitleAttrE) STUB("CnY1NGmdi7I", sceAudiodecCpuInternalClearContext) +STUB("CnZqpfuD2XI", _ZN3sce2Np9CppWebApi6Common6VectorIfED2Ev) +STUB( + "Cnb07hW6wXA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEmmEv) +STUB("CncGondE0Xs", _ZN3JSC15createTypeErrorEPNS_9ExecStateE) +STUB( + "CngZI2dSbSw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEppEi) +STUB( + "Cnh2w4I5fqE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEED2Ev) +STUB("CnjwEJWxV+s", _Z16detachIpcChanneli) +STUB( + "CnlzgQFKsP8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) STUB("Cnn3HtdAFOU", sceMatMemoryPoolExpand) +STUB("CnoiK3ePTEA", _ZNK7WebCore6Chrome10windowRectEv) STUB("Cnp77podkCU", sceHttpCreateRequestWithURL2) +STUB( + "Cnx648nNrzI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEEdeEv) +STUB("CoBERCGoWsY", _ZTVN7WebCore25DropShadowFilterOperationE) +STUB( + "CoCSdxl8BQ0", + _ZN9Inspector24NetworkBackendDispatcher17interceptContinueElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "CoFuc7Z-WP8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEC2Ev) +STUB( + "CoMPNhTIaJU", + _ZN3sce2Np9CppWebApi14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyC2EPNS1_6Common10LibContextE) STUB("CoPMx369EqM", sceGameLiveStreamingGetCurrentStatus) +STUB("CoRa1vHix+4", _ZNK7WebCore16HTMLInputElement5valueEv) STUB("CoTbY7roruU", sceUpsrvUpdateCheckDoCheckSystemForDevKit) +STUB( + "CoUpOKMTVJw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEED2Ev) +STUB("CoW-JYJBpRQ", u_enumCharTypes_67) STUB("CocbHVIKPE8", sceNpAuthGetIdTokenA) +STUB("CofYpd0ovrE", ures_getByKey_67) +STUB( + "Coi9yB1O55A", + _ZN3sce2Np9CppWebApi14SessionManager2V143GetFriendsPlayerSessionsResponseBodyFactory7destroyEPNS3_36GetFriendsPlayerSessionsResponseBodyE) +STUB("CoiBwv7Gerg", + _ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer10setNatTypeERKi) STUB("CokWh8qGANk", sceUserServiceSetVibrationEnabled) +STUB("ConU-nXswn8", eglTerminate) +STUB("CorhLc2xdsI", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V510AnnotationEEmmEi) +STUB("CosTELN5ETk", getwc) +STUB("CozMDJlTSEU", __sanitizer_symbolize_global) +STUB( + "Cp-qR1FAoII", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("Cp4EpLUtukM", u_isprint_67) +STUB("Cp9ksNOeun8", _ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED1Ev) +STUB( + "Cp9lVcz5yWc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("CpF21FIEKVQ", profil) +STUB("CpHAdNB7hs4", _ZN9Inspector25RuntimeFrontendDispatcherC2ERNS_14FrontendRouterE) +STUB("CpIzEs1Q1Ug", SSL_select_next_proto) +STUB("CpMk2iCpgBQ", + _ZN7WebCore12ChromeClient41exitVideoFullscreenToModeWithoutAnimationERNS_16HTMLVideoElementEj) +STUB( + "CpOuKyX26Nw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEE21intrusive_ptr_add_refEPS7_) +STUB( + "CpQMLEasiL8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE5beginEv) +STUB( + "CpVHU7S7LN0", + _ZN7WebCore32WorkerThreadableWebSocketChannelC1ERNS_17WorkerGlobalScopeERNS_22WebSocketChannelClientERKN3WTF6StringERNS_14SocketProviderE) +STUB("CpWcnrEZbLA", _Stof) +STUB("CpbVHshIV7M", _ZN7WebCore9HTMLNames8langAttrE) +STUB( + "Cpbi5npt4q4", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRateC2EPNS1_6Common10LibContextE) +STUB("CpiD2ZXrhNo", _Strxfrmx) +STUB("CpkYVuxHycc", _ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamRankResultC2Ev) +STUB( + "Cpl82rPXkiQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB("CpnNC74lyvk", _ZNK7WebCore8Document11topDocumentEv) STUB("Cpo6sQmnZgU", sceMbusBindDeviceWithUserId) +STUB( + "CpsH4WTgVUY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEdeEv) +STUB("CpuB22NqC6E", _ZN3WTF26currentProcessMemoryStatusERNS_19ProcessMemoryStatusE) +STUB("CpuRkMwXVfE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEEC1Ev) +STUB( + "CpzZhcGlHhQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("Cq1DEDyxNW0", mono_aot_Sce_Vsh_Orbis_CdlgServerNpCommerceunbox_trampoline_addresses) +STUB( + "Cq8HkThepJw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEE11get_deleterEv) +STUB("Cq8O3oR6PWc", + _ZN3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBody21unsetTicketAttributesEv) +STUB( + "CqCI4aoLk54", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEC1Ev) +STUB( + "CqIPEI3nY+0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE3endEv) STUB("CqJuNXo5yiM", sceNpSessionSignalingTerminate) +STUB( + "CqM6iNjMFak", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("CqMomYo6fWA", WKCertificateInfoCopyPrivateKeyPassword) +STUB( + "CqOxlVGrtkc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEC1ERKS7_) +STUB("CqRoIOhp7V4", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus24lastUpdatedDateTimeIsSetEv) +STUB("CqW1XfJDqNs", glGetQueryObjectivEXT) +STUB( + "CqXpG5dtTXw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "Cqb+YQpu72I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE5beginEv) +STUB( + "Cqc5529NqAo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("Cqfbm5pTMIw", _ZNK7WebCore14DocumentLoader16mainResourceDataEv) +STUB( + "Cqip+CoTeJA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEC2EPNS2_10LibContextE) +STUB("CqjOWM+bC4E", _ZN3JSC19ArrayBufferContentsaSEOS0_) +STUB( + "Cqm3-7HqmA8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("Cqpti4y-D3E", _PJP_CPP_Copyright) +STUB("CqsEZlVu3cQ", _ZN12video_parser18cMp4FFLHndlManager13getFF4ComHndlEv) +STUB("CqtVse0oDtk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEcvbEv) +STUB("CqvGTLhOV70", WKPageLoadWebArchiveDataWithUserData) +STUB("Cqw9+RMoajE", _ZN8meta_gen11MsvPromoter27convMediaTypeVideoFromCodecEN9db_schema9CodecTypeE) STUB("Cr+tY-r0NvM", sceClHttpUnsetEpoll) +STUB( + "Cr--ShXItmo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE5beginEv) +STUB( + "Cr4-YFHso5E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEaSERKS9_) +STUB("Cr4g9FAysfM", _ZNK7WebCore16BlobRegistryImpl18isBlobRegistryImplEv) +STUB( + "Cr90eu7Xgf0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEC2EPNS2_10LibContextE) +STUB( + "Cr9XMZ5oHrw", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetString10Ev) +STUB("CrAHm1usfLw", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12RoomPingTimeEEC1Ev) +STUB("CrHm8ueBDeU", ures_getNextString) STUB("CrJAqHAld9M", sceShellCoreUtilClearPs4AppCategoryDefaultsListUpdate) STUB("CrLqDwWLoXM", sceVoiceGetPortInfo) +STUB( + "CrLwQb1PC-8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEED1Ev) +STUB( + "CrNKeSrk4wg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEED1Ev) +STUB( + "CrTo4sXb6jE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE3endEv) +STUB( + "CrUv5tmMJ3E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEED1Ev) +STUB("CrVW6NdjgmE", _ZN4Manx11StoragePath8appCacheEv) +STUB( + "CrVfHnK51+Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEEC2EPS6_PNS2_10LibContextE) +STUB("CrXyManXbMA", Java_com_sony_bdjstack_javax_media_controls_VideoDecoder_init) +STUB("CrZTHC5yd64", _ZN15AbstractStorage7ServiceC2Ev) +STUB("CrZdCWiXw1Y", _ZN13MsvMetaEditor8openFileEPKc) +STUB("CraXw7gobSE", _ZN3sce7Toolkit2NP16NpSessionRequestC2Ev) +STUB("Crcf65Klvc4", coil_signal_semaphore) STUB("Crha9LvwvJM", sceRazorCpuWorkloadRunBeginEx) +STUB("CrhyrR+hJkM", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V112TicketStatusEEdeEv) +STUB( + "CrjYkWrjOfE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("CrjatRbBPGA", u_fsetlocale_67) +STUB( + "CrndUnTUSaM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEmmEv) +STUB( + "CrnxJ6Wm8Tk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE8copyFromERKS9_) +STUB("CrvDHSJhBII", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119NatConnectivityFrom9getToNat2Ev) +STUB("CrxnEM1JJ9g", _ZN7WebCore15PlatformDisplay27sharedDisplayForCompositingEv) +STUB("Cs0khU2ULZ4", uprv_pathIsAbsolute_67) +STUB("Cs3DBACRSY8", _ZTISt7codecvtIcc9_MbstatetE) +STUB("Cs4aegJdHFU", _ZN7WebCore6Widget4hideEv) +STUB( + "Cs4d765Mlvg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEptEv) +STUB("Cs8HBh3k-N8", mono_runtime_exec_managed_code) +STUB( + "CsIJrtO3jPs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) STUB("CsIrEmYADDo", sceNpPush2RegisterDataType) +STUB("CsRde4NNVbo", uiter_getState_67) +STUB("CsVvgas0eUo", _ZNK7WebCore11XPathResult15singleNodeValueEv) +STUB("CsY7po-fA9Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEEC2Ev) +STUB("CsaKS0Bc0zg", _ZN3JSC2VM21globalObjectSpaceSlowEv) STUB("CscDZAFA5+c", sceVoiceChatProcessEvent) +STUB("CsjmLzPe1cE", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V18RelationEEneERKS7_) +STUB( + "CsphmY1twiA", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEEiRNS2_10LibContextEPT_m) STUB("Csuvq2MMXHU", sceHmdInternalGetHmuPowerStatusForDebug) +STUB("Csx50UU9b18", _Tzoff) STUB("Ct3WeO240lw", sceAjmGetFailedInstance) +STUB( + "Ct4LwrHkzcE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEC1ERKS7_) +STUB("Ct67Z5RXulU", mono_allocator_free) +STUB( + "Ct6IIzVFcJU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEC2Ev) +STUB("CtAuypiNATE", _ZN3sce2np14HttpConnectionC1EP16SceNpAllocatorEx) STUB("CtB+A9-VxO0", sceAgcDcbDispatchIndirect) +STUB( + "CtCjlf159tI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEE7add_refEv) +STUB( + "CtERWPwrLpg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("CtK8g2qdXwI", PlaybackCommand) +STUB("CtMEsoBvzO8", uhash_iput) +STUB("CtO0q0-CWfY", _ZN7WebCore23ApplicationCacheStorage15deleteAllCachesEv) +STUB( + "CtOwRZyczKc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB("CtPRd3LuB9U", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container14getDescriptionEv) +STUB("CtTAKxzkgF4", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error10setMessageEPKc) +STUB("CtVkHM1vW7A", _ZNK7WebCore11XPathResult20invalidIteratorStateEv) STUB("CtWUbFgmq+I", sceVrTrackerResetAll) +STUB( + "CtYYhmiQNaw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("CtZ28uSgHvI", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_7TssDataEEC2Ev) +STUB( + "CtZypHdmyFg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("CtbKEfqw+g4", ulocimp_minimizeSubtags) +STUB( + "CtboODC0CYA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE21intrusive_ptr_add_refEPS9_) +STUB("Ctbx9CkZCXU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEC1Ev) STUB("Ctd9i+9hFu4", sceDtsEncIsEncoding) +STUB("CtijUX3Vn5c", _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE5clearEv) +STUB("Ctm-m3Y326Q", + _ZN7WebCore22EmptyFrameLoaderClient31dispatchUnableToImplementPolicyERKNS_13ResourceErrorE) +STUB( + "Ctn81MfMlk4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEEC2ERKSA_) +STUB("CtogCIVTBsk", _ZN7WebCore9FrameView24setScrollPinningBehaviorENS_21ScrollPinningBehaviorE) +STUB("CtqqsxZ-lpo", _ZNK7WebCore16JSStringCallback22scriptExecutionContextEv) +STUB( + "CttiMysXcbA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEEC1Ev) +STUB("Ctvh7VZDN0E", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE21intrusive_ptr_sub_refEPS7_) +STUB( + "Ctvh9fO1Qo4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEC1Ev) +STUB("Ctw8TmmIXFs", _ZNK7WebCore23ScaleTransformOperation1xEv) STUB("Ctx+O9CztCk", sceClHttpsSetSslCallback) STUB("CtygVRCL+bA", scePlayerReviewDialogOpen) +STUB("Ctz7dKz3Da0", _ZNK3JSC9JSPromise6resultERNS_2VME) +STUB("Cu07x4fIYO0", glIsEnabled) +STUB( + "CuAd0dL9mzY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEmmEi) +STUB("CuB1saqAZVs", _ZN3sce2Np9CppWebApi6Common6VectorIdE8copyFromERKS4_) +STUB("CuE2jWA-RaY", _ZN7WebCore15GraphicsContextC2EPNS_20PlatformContextCairoE) +STUB("CuJ1lpUapSs", _ZN3JSC15WeakHandleOwnerC1Ev) +STUB("Cubm05Z7E7I", _ZN3WTF14FileSystemImpl14setMetadataURLERKNS_6StringES3_S3_) +STUB( + "Cudr-Yc-U1E", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "Cue5OjC9XjI", + _ZN7WebCore18TextureMapperLayer12sortByZOrderERN3WTF6VectorIPS0_Lm0ENS1_15CrashOnOverflowELm16EEE) STUB("CuhaOAhwLHE", sceCesSJisToUtf32be) +STUB( + "CuiPIy12ak4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "CujwbxaASOA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("CukPhzuwECw", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15CategoryInfoSubEE9constructEPS3_RKS3_) +STUB( + "CuqBADJkLI4", + _ZN3JSC16InternalFunction27createSubclassStructureSlowEPNS_9ExecStateENS_7JSValueEPNS_9StructureE) +STUB("CuqN-UrxCrE", _ZNK3WTF6String27isSafeToSendToAnotherThreadEv) +STUB("CuuAb4Teouk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE6resizeEj) +STUB("Cv+zC4EjGMA", _ZNSt5ctypeIcE2idE) +STUB("Cv-8x++GS9A", _Lock_spin_lock) +STUB( + "Cv4WADmDUUs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE7reserveEi) +STUB( + "CvBE8i34Z50", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE5beginEv) +STUB("CvGog64+vCk", _ZN3sce2np12NpHttpClient4InitEii) +STUB("CvJ3HUPlMIY", _ZSt5wcerr) +STUB("CvLd+zsiNGM", WKRenderObjectGetFrameRect) +STUB("CvQHe7rKZvI", _ZN3sce2Np9CppWebApi7Matches2V116JoinMatchRequest17setNpServiceLabelERKi) STUB("CvUnq1gsWMg", sceMouseExtensionReadState) +STUB("CvfKVbSHgWc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEED1Ev) +STUB("CvfRmGbnycw", mono_aot_Sce_PlayStation_Coreplt_end) +STUB( + "CvnRjJssyeQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEplEm) +STUB( + "CvoLxnNNlHM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEEC2ERSA_) +STUB("CvpEQIpe-Ng", _ZNK3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator10getNatTypeEv) +STUB("CvpSdW4rKh8", _ZN7WebCore31contextMenuItemTagIgnoreGrammarEv) +STUB( + "CvpwHUrZ4w0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEE3getEv) +STUB("CvqQqWqcO-0", FcFontRenderPrepare) +STUB("CvrQw-QIoxQ", _ZN7WebCore10JSDocumentC1ERKS0_) +STUB( + "Cvrcmj+QSTU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEEaSERKSA_) +STUB( + "Cvs6PSlnSQo", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE10setContextEPNS2_10LibContextE) STUB("CvwCMJtzp1I", sceUserServiceGetGlsLiveQuality) +STUB( + "Cvy2eUzRGlo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEC2EPS8_) +STUB( + "Cw+LG0EfqKc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE7releaseEv) +STUB("Cw74jJ7Cvzs", _ZN9Inspector18InjectedScriptHost7wrapperEPN3JSC14JSGlobalObjectE) +STUB( + "Cw7cicVP0iM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEEC1ERSA_) STUB("CwBFvAlOv7k", sceAudioInSetMode2) +STUB("CwCzG0nnLg8", _ZN3sce16CommonDialogUtil6Client15launchCmnDialogEv) +STUB("CwDNrs5xFWk", WKPageSetAdClickAttributionConversionURLForTesting) STUB("CwDVsGO6U3Q", sceMbusAddHandleByUserId) +STUB("CwJ+vZZCWvU", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V219WebApiErrorResponse8fromJsonERKNS_4Json5ValueE) +STUB("CwN8E6gsYh0", mono_aot_System_Windowsmethod_addresses) +STUB("CwRFC2F8-2E", WKPreferencesGetWebShareEnabled) +STUB("CwRmBvXyloE", _LDint.mask) +STUB("CwTYTSKP3Jw", _ZN7WebCore9HTMLNames9sourceTagE) +STUB("CwZrFsrTpO4", trace) +STUB("CwcUwXlAghA", monoeg_g_ptr_array_sized_new) STUB("CweVdHVfxDQ", sceUpsrvUpdateCheckDestroyHandler) +STUB("Cwl1xhKYq2s", _ZTVN9Inspector25TimelineBackendDispatcherE) STUB("CwoJ0zJMylg", sceDbgSetExceptionHandlerAltStack) +STUB("Cwoo0lEAtMQ", WKBackForwardListCopyForwardListWithLimit) +STUB( + "CwpexFUvzVc", + _ZN3sce2Np9CppWebApi14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBody10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_28RequestJoinGameSessionPlayerEEEEE) STUB("CwqYdG4TrjA", sceNpStrToInt64) +STUB("CwqlKj3xo-4", s15) +STUB("CwtIlEFxTEM", _ZNSt9_FacetptrISt5ctypeIcEE6_PsaveE) +STUB("CwvwTZP5gf4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEC2EPS8_) +STUB("Cx75ActBTZo", _ZN12video_parser14cVideoOperator23getRelativeFileExtCountEv) +STUB("CxCYeGea0gg", _ZN7WebCore9FrameView19scrollElementToRectERKNS_7ElementERKNS_7IntRectE) +STUB( + "CxLETQ-8KSc", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13boolean8IsSetEv) +STUB("CxLjOlnTFVE", SendPrivateMessage) +STUB("CxTVF9hcT5I", WKViewGetCanvasHole) +STUB( + "CxTzLqql7xs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) STUB("CxUz3nU06NE", sceVideoOutSetToneMap_) +STUB("CxZYyc0YPjU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEEaSERKS9_) +STUB( + "CxajR92uCzc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEdeEv) STUB("Cxb2w82t7lw", sceVideoOutAddDisplayPositionEvent) +STUB( + "Cxd6YOG3QyQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEptEv) +STUB("CxdyS3KYhA0", u_file_write_67) +STUB( + "CxioeQv07yU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "CxkuskPILOI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "Cxuanux-z20", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEppEv) STUB("CxwJc7yMKgg", sceDeci4hDrfpRename) +STUB( + "CxwoicpnTMo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEC2EPNS2_10LibContextE) +STUB("Cxwy7wHq4J0", _ZN3sce4Json11Initializer10initializeEPKNS0_13InitParameterE) +STUB("CxxHgMg2FS0", png_set_read_fn) +STUB("CxxZ4m5WzGU", _ZNK3WTF10StringImpl27startsWithIgnoringASCIICaseERKS0_) +STUB("CxyD6Pv8bC0", + _ZN3sce7Toolkit2NP2V29Challenge7Request13SendChallenge25MAX_SIZE_DATA_DESCRIPTIONE) +STUB( + "Cy+3QN21Iw4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEC1ERS7_) +STUB( + "Cy0y8104uvc", + _ZN3sce2Np9CppWebApi14SessionManager2V127GetGameSessionsResponseBodyC1EPNS1_6Common10LibContextE) +STUB( + "Cy2k0NpidyM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("Cy98Ve48+Io", uregex_regionEnd_67) +STUB( + "CyDZEzEPRjA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE4sizeEv) +STUB("CyGQ8oAmQD4", _ZN3sce7Toolkit2NP2V23TUS16FriendsVariablesC2ERKS4_) STUB("CyIK-i4XdgQ", sceRtcGetDayOfWeek) +STUB("CyN41AniueA", _ZNK3WTF3URL24strippedForUseAsReferrerEv) +STUB( + "CyN9ErxBf78", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEEC2Ev) +STUB("CyTgmxqg4mg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEEcvbEv) +STUB("CyXs2l-1kNA", _Iswctype) +STUB( + "CyYRqy7HuLA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEC1EPS8_) STUB("Cya+jvTtPqg", sceWebBrowserDialogResetCookie) +STUB( + "CyaAf2wHOrQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEEdeEv) +STUB("CyauxA5yaTE", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_6NpUserENS1_15AppSTLAllocatorIS5_EEEEC2Ev) +STUB("Cyb-5L6XKbo", _ZN7WebCore19ResourceRequestBase12setIsTopSiteEb) +STUB( + "CybuvqOtB+A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEEaSERSA_) STUB("CydP+QtA0KI", sceUserServiceTerminateForShellCore) +STUB("Cydi4yJvklQ", mono_aot_Sce_Vsh_Webbrowser_XutilWrapperunbox_trampoline_addresses) +STUB( + "CyiZaEw0jSM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEE7add_refEv) STUB("Cyjl1yzi1qY", sceNetConfigAddRoute) +STUB("Cykko0lPS3I", _ZNK7WebCore13CSSImportRule10styleSheetEv) +STUB( + "Cyo0fXgnVe4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEdeEv) +STUB( + "CyofvVPbuCI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEEC2Ev) +STUB("CyplNHePlDQ", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEEC1EPKS6_) +STUB("CyqFDc0oWA4", _ZN3sce7Toolkit2NP2V27Session9SessionId5resetEv) +STUB( + "CyuPCHiTofU", + _ZN3sce2Np9CppWebApi14SessionManager2V130PostPlayerSessionsResponseBodyC1EPNS1_6Common10LibContextE) +STUB("Cyw+pgg2YcI", glVertexAttribIPointer) +STUB( + "CyzIVs2496Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEEaSERSA_) +STUB("Cz2W84E4wfg", _ZN12video_parser5vpcom8_ReallocEPvj) +STUB("Cz7grwogKf0", _ZN3sce7Toolkit2NP9Utilities6FutureIiE3getEv) +STUB( + "Cz8LcyK7otE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEdeEv) +STUB( + "Cz9auOmTKtE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEED1Ev) +STUB( + "CzMdVrg+4bk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE4sizeEv) +STUB( + "CzT-1hso8vI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEE7get_refEv) +STUB("CzWwI339UFc", _ZN7WebCore9HTMLNames17ontouchcancelAttrE) +STUB( + "Czd1f-2eVf4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEppEv) +STUB( + "CzfJZ1PI0HI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEC2EPKS8_) +STUB( + "Czfz1l29Gr4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEEC1ERKSA_) +STUB( + "CzhQz3JQW9Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEEdeEv) +STUB("CziCQrOhJ60", _ZN7WebCore10TreeWalker15previousSiblingEv) +STUB("CzjiYYbFr4c", uspoof_check_67) STUB("Czjo1Se8pEw", sceMbusGetDeviceDescription) STUB("CzkKf7ahIyU", sceNpUniversalDataSystemPostEvent) +STUB("CzkycDc4qLQ", _ZN3sce2Np9CppWebApi6Common17ParameterBaseImpl16setRequestHeaderEPKcS5_) +STUB("Czlat6lafD8", _ZTSPKo) STUB("CzmA-OALrH8", sceSlimglCompositorGetCanvasHandle) +STUB("CznMfhTIvVY", _ZN3sce2np9WorkQueue6IsInitEv) +STUB("CzvTwuMfE+s", fuse_reply_xattr) +STUB( + "CzxmrnrPb1g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEEC1Ev) +STUB( + "D+AMi6xyWEI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEaSERKS9_) +STUB( + "D+GLwc45+7k", + _ZN3JSC7JSProxy23getGenericPropertyNamesEPNS_8JSObjectEPNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("D+NeYdSiipM", ucal_isSet_67) +STUB("D+Ycg-BvfQc", mono_aot_System_Reactive_Linqjit_got) +STUB("D+fkILS7EK0", _Fail_s) +STUB("D+puaDTBe8M", mono_aot_Sce_Vsh_Np_Pbtcunwind_info) +STUB("D+tysex3ZPw", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_6NpUserENS1_15AppSTLAllocatorIS5_EEEED2Ev) +STUB( + "D+wOfcOkWE0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("D--nDUfX2hQ", mono_aot_Sce_Vsh_Messages_DbAccessLibjit_code_end) +STUB("D-6Mp9oMPvs", _ZN7WebCore8SVGNames15markerUnitsAttrE) STUB("D-6S9JHI6A0", sceShellCoreUtilGetSystemBGWaveState) +STUB( + "D-6aSKNEl40", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEixEm) +STUB( + "D-6wc-oZ2eo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEaSERKS7_) STUB("D-7hSd3Ziqg", sceCesUtf8ToEucJp) +STUB("D-8cZ6N7n4g", _ZNK3WTF9MediaTime12toJSONStringEv) +STUB("D-EdAPEilis", uprv_modf_67) +STUB("D-Fu0+5P5Rs", mono_aot_System_Web_Servicesunbox_trampolines_end) +STUB("D-GaihbBuPw", _ZN7WebCore8SVGNames8styleTagE) +STUB( + "D-KO39txt6s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEixEm) +STUB("D-MYWruwiUQ", _ZNK7WebCore15AffineTransform9mapRegionERKNS_6RegionE) +STUB("D-Om2SCd1RA", _ZN4Manx7RunLoop3runEv) +STUB("D-U692HzoOo", fuse_opt_add_arg) +STUB("D-WphAs+Lh8", FcPatternAddDouble) +STUB( + "D-XrjSUAVYo", + _ZN7WebCore11DisplayList18DrawFocusRingRectsC1ERKN3WTF6VectorINS_9FloatRectELm0ENS2_15CrashOnOverflowELm16ENS2_10FastMallocEEEffRKNS_5ColorE) +STUB("D-ZUl1FSOdE", unorm2_composePair_59) +STUB( + "D-b-78unZT4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("D-dT+vERWmU", _ZN3sce2np7HttpUriD2Ev) +STUB("D-e3WfA3w-U", WKUserMediaPermissionCheckGetTypeID) +STUB( + "D-ooCuggqmU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("D-qDARDb1aM", iswalpha) +STUB("D-rjlYdbggI", u_isIDPart_67) +STUB( + "D-wnRPJ6Oj8", + _ZN7WebCore16BlobRegistryImpl19registerFileBlobURLERKNS_3URLEON3WTF3RefINS_21BlobDataFileReferenceENS4_13DumbPtrTraitsIS6_EEEERKNS4_6StringE) +STUB("D03JZawhAMk", + _ZN3JSC14LocalAllocator16allocateSlowCaseEPNS_17GCDeferralContextENS_21AllocationFailureModeE) +STUB( + "D05SeRGdqcY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE5eraseENS2_8IteratorIS6_EERS9_) +STUB( + "D061Chp6BjM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "D0BCVbOcbDQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEmmEv) +STUB("D0C-8tUYQsI", _ZN3JSC8Profiler8DatabaseD1Ev) +STUB("D0GTbRkQ1zg", _ZN3JSC6Symbol6s_infoE) +STUB("D0I9A5MhZ+Y", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_17ActivityFeedStoryEE7addressERKS3_) +STUB("D0J12YYKb4w", _ZN3sce7Toolkit2NP2V27NpUtils7Request17CheckPsPlusAccessC2Ev) +STUB("D0Jhk501qcw", ucnv_createConverter) +STUB( + "D0KcQLl2dlU", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEEiRNS2_10LibContextEPT_m) +STUB( + "D0MGrXoOhOs", + _ZNK7WebCore12ChromeClient36dispatchDisabledAdaptationsDidChangeERKN3WTF9OptionSetINS_19DisabledAdaptationsEEE) +STUB("D0NRRPBWvGk", mono_aot_Sce_Vsh_Messages_DbAccessLibunwind_info) STUB("D0OdFMjp46I", sceKernelCreateEqueue) +STUB( + "D0Q8DXlFnEo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEED2Ev) +STUB("D0QLgQ06KBw", restore_context_p) +STUB("D0RQtji285U", Java_java_awt_GraphicsEnvironment_getMouseLocation) STUB("D0RWslNmK9s", sceVdecCoreDeleteDecoder) +STUB("D0VsxX3MKBw", _ZN3sce7Toolkit2NP2V210Tournament10TournamentC1Ev) +STUB("D0WQtfZWtK0", _ZN7WebCore6WidgetD1Ev) +STUB( + "D0X3ZWYC68E", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS5_INS7_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISE_SF_EE) STUB("D0cPLPTMMsM", sceDtcpIpStartAuthAsync) +STUB("D0gLApZm36c", _ZN3WTF21currentSearchLocaleIDEv) +STUB("D0gqPsqeZac", _ZNSt10moneypunctIwLb0EE4intlE) +STUB("D0hjxLxkjcU", rgctx_fetch_trampoline_rgctx_17_p) +STUB("D0jdB4RclcI", uprv_decNumberSubtract_67) +STUB( + "D0jwiIm8bOo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "D0kZfqpFPjo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("D0lUMKU+ELI", _ZNKSt5ctypeIwE5do_isEPKwS2_Ps) +STUB("D0n924iO0Yw", glGetBufferPointerv) +STUB("D0oRC24Pq6A", _Wctrans2) +STUB( + "D0xK2MrxLRg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEE11release_refEv) STUB("D0yUjM33QqU", sceRazorCpuResizeTaggedBuffer) +STUB("D1+5LUUSWHo", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy17TrophyPackSummaryEE5resetEv) +STUB("D189LBn9o-0", _ZN7WebCore8Settings21setColorFilterEnabledEb) +STUB("D1A-mAFwjT4", _ZN4IPMI4impl10ServerImplD1Ev) +STUB("D1AxKjeR0LQ", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product8setLabelEPKc) +STUB("D1BjVDcTyFo", _ZN3sce7Toolkit2NP2V212ActivityFeed12SharedVideosD2Ev) STUB("D1D6GFIYYGs", pthread_main_np) STUB("D1IAo-CNswA", sceHttp2WebSocketSendDataMessage) +STUB( + "D1IM59j5JZs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEE7add_refEv) +STUB( + "D1JWHCpCBXE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEE7add_refEv) +STUB("D1KYCZ80Sac", cairo_mask) +STUB("D1N2bsTVWFo", _ZN3sce2Np9CppWebApi13InGameCatalog2V515ContainerRating10unsetTotalEv) +STUB("D1T8WM7DeaA", _ZN7WebCore8SVGNames13filterResAttrE) +STUB("D1WMUW1K-XY", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE7popBackEv) +STUB( + "D1fR9PnAdJU", + _ZN3JSC23encodeFunctionCodeBlockERNS_2VMEPKNS_25UnlinkedFunctionCodeBlockERNS_18BytecodeCacheErrorE) +STUB( + "D1krPa9N57A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEEC2Ev) +STUB("D1l8+Bu+-Y8", FT_Angle_Diff) +STUB( + "D1ofGeQp7rw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEmmEv) +STUB( + "D1tDA6QCyDY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("D1tyB3jTMDg", + _ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody15unsetEntryLimitEv) +STUB( + "D1xBWil3hrw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEC1Ev) +STUB( + "D1zQQnzU+GA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE3endEv) +STUB("D2-dIoJ0ZtE", sigtimedwait) +STUB("D213b+fMrCc", mono_shared_hashtable_foreach_remove) +STUB( + "D24Nr9N5s6o", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEdeEv) +STUB( + "D24wPNNCrMc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEED2Ev) +STUB( + "D2800sZKINs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEixEm) +STUB( + "D28pIGAI8UI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEEcvbEv) +STUB( + "D2C6fb4fNY0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEE3getEv) +STUB("D2ClNimI0dg", __DTOR_END__) +STUB("D2F8M3A-Qbw", _ZN7WebCore9HTMLNames9scopeAttrE) +STUB( + "D2GSv8cVcss", + _ZN3sce2Np9CppWebApi14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyC1EPNS1_6Common10LibContextE) +STUB("D2HdGEYkNkg", _ZN3JSC17DebuggerCallFrame5scopeEv) +STUB("D2JOQimv1is", _ZN7WebCore20previousLinePositionERKNS_15VisiblePositionEiNS_12EditableTypeE) STUB("D2MCGrGvCYY", sceMbusDebugSuspendApplication) +STUB("D2MgYl19V7A", _ZN3sce7Toolkit2NP2V26Friend12BlockedUsers8deepCopyERKS4_) +STUB("D2O5KU7KlMo", WKKeyValueStorageManagerGetStorageDetailsByOrigin) +STUB( + "D2P-xY54SPs", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody8fromJsonERKNS_4Json5ValueE) +STUB( + "D2Q4FUh376Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEEC1EPNS2_10LibContextE) +STUB("D2Vd3m4Bli8", X509_LOOKUP_file) +STUB( + "D2VtRktPSZw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEixEm) +STUB("D2a6DmGgnpg", _ZN7WebCore9HTMLNames9alignAttrE) +STUB("D2bZ6GobOCM", _ZN7WebCore21convertToIntegerClampItEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB("D2dW1Xovxsw", EVP_PKEY_encrypt) +STUB( + "D2ekje9rQGA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "D2feT18a7VY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEptEv) +STUB( + "D2h5o1mN4s8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEEC2ERKSA_) +STUB("D2jeJh1bZJM", mono_aot_System_Reactive_Interfacesunbox_trampolines_end) +STUB( + "D2k9P8c9dBc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE) STUB("D2l3rQK-VzQ", sceNpManagerIntClearVshTokenA) +STUB("D2mHostbGt8", _ZN23sceMetadataReaderWriter13ParserManager12_checkStatusEv) +STUB( + "D2njLPpEt1E", + _ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_bRSt8ios_baseRNSt5_IosbIiE8_IostateERSs) +STUB( + "D2ojMaEXFAM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEC2EPS8_) +STUB( + "D2tFd57ks3s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEED2Ev) +STUB("D2u2i75XUDo", _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody12unsetOfferIdEv) +STUB("D2zWfCKPZCk", YGConfigSetContext) +STUB("D32g7jPlu4E", _ZN7WebCore17JSHTMLLinkElementD2Ev) +STUB( + "D37St+76qLc", + _ZN3sce2Np9CppWebApi7Matches2V129RequestPlayerStatisticFactory7destroyEPNS3_22RequestPlayerStatisticE) +STUB("D3CRTfQdhbA", NpStateManagerRegisterCallback) +STUB( + "D3FtOa8BH9Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEppEi) STUB("D3H+cjfzzFY", sceAppContentAddcontShrink) +STUB("D3NxCPxR1vY", _ZN3sce7Toolkit2NP2V212EventsClient7EventIdC1Ev) +STUB( + "D3Q7JP-29Tc", + _ZN3sce7Toolkit2NP2V29Messaging19sendGameDataMessageERKNS3_7Request19SendGameDataMessageEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("D3T7cs3PiFo", _ZN7CoreIPC13ArgumentCoderIN3WTF6StringEE6decodeERNS_15ArgumentDecoderERS2_) +STUB( + "D3THb1XIVLs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEC1EPS8_) +STUB("D3U5pw7dEHo", _ZN3sce2Np9CppWebApi6Common6VectorIiE6resizeEj) +STUB("D3UFqHJuaeQ", _ZN3JSC7Symbols15somePrivateNameE) +STUB("D3VES2EZ6a4", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate12perGameIsSetEv) +STUB( + "D3bz3iwH3uE", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser12setaccountIdEPKc) +STUB( + "D3fu7FvwNaI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEE7get_refEv) +STUB( + "D3hI0ikt2Tk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEEplEm) +STUB( + "D3hQ5gVYKFM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB( + "D3iN5Jrv1ng", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEmmEv) +STUB("D3lMEqYuTXc", _ZN7WebCore11HistoryItemD2Ev) +STUB( + "D3lyiLzU0yM", + _ZN7WebCore15JSFetchResponse6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_13FetchResponseENS6_13DumbPtrTraitsIS8_EEEE) +STUB("D3nKxJ29sJ8", mono_aot_System_ServiceModel_Webplt_end) STUB("D3s8DoEnuR4", sceVideoOutAddBufferYccPrivilege) +STUB( + "D3tUMw-ZqcM", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRanking10initializeEPNS1_6Common10LibContextEi) +STUB("D3ucpMtsmEw", _ZN3sce2np3ipc14service_client10EndRequestEii) +STUB( + "D3x07IYKnfA", + _ZN9Inspector23TargetBackendDispatcher6resumeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("D45IcsszyQI", cairo_get_line_width) +STUB( + "D46AnIBO1-k", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE5emptyEv) +STUB( + "D46S70ex9E4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEEC1ERKSA_) +STUB( + "D48ZETMK8T8", + _ZN3sce2Np9CppWebApi14SessionManager2V123SearchAttributesFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_16SearchAttributesEEE) +STUB( + "D498Gcnh-dg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE7reserveEi) +STUB( + "D49e1mwye4Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEEC1ERSA_) +STUB("D4BBx7mxbp4", _LMBCSData19_67) +STUB("D4Ct4+Vq+4w", __ubsan_handle_nonnull_arg_abort) +STUB("D4E7FmVUn8I", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku19unsetAnnotationNameEv) +STUB("D4Hf-0ik5xU", __muldc3) +STUB( + "D4IK-CiLpYM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEppEv) +STUB( + "D4Jb9-xqqBk", + _ZN7WebCore22CryptoAlgorithmAES_CBC15platformEncryptERKNS_30CryptoAlgorithmAesCbcCfbParamsERKNS_12CryptoKeyAESERKN3WTF6VectorIhLm0ENS7_15CrashOnOverflowELm16ENS7_10FastMallocEEENS0_7PaddingE) +STUB( + "D4JwmDq3kwQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("D4Lk1XQiiPQ", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEEptEv) +STUB("D4P+5XqS8HU", + _ZN3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayer8fromJsonERKNS_4Json5ValueE) +STUB( + "D4Q9cBhTZoQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEeqERKS9_) +STUB( + "D4U+MSjZW7Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEC1Ev) +STUB("D4aKjfQUUDA", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt6vectorI16SceNpTusVariableNS2_IS4_EEEED2Ev) +STUB( + "D4k+8dbThKE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEC1EPS6_PNS2_10LibContextE) +STUB( + "D4kJWO3rclA", + _ZN7WebCore15RemoteDOMWindowC2EON3WTF3RefINS_11RemoteFrameENS1_13DumbPtrTraitsIS3_EEEEONS_22GlobalWindowIdentifierE) +STUB("D4mQ1WnfVCk", _ZNK7WebCore11HTMLElement21canonicalEnterKeyHintEv) +STUB( + "D4pP8slUsU4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEE11get_deleterEv) +STUB( + "D4yPlPy5mgI", + _ZN3JSC12RegExpObject16getPropertyNamesEPNS_8JSObjectEPNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE) STUB("D4yla3vx4tY", sceKernelError) +STUB("D5-UlH-hxT8", _ZNK7WebCore9FrameView14didFirstLayoutEv) +STUB( + "D53PAtdnq6w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEppEv) +STUB( + "D54eHl4Jl+E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEE7add_refEv) +STUB("D55fJP-tnMQ", _ZN7WebCore8SVGNames11unicodeAttrE) +STUB( + "D59DzqyCGqU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEED2Ev) +STUB( + "D5Gx44q5FZo", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getBoolean2Ev) STUB("D5JfdpJKvXk", sceHmdGetDistortionWorkMemorySize) +STUB("D5KQhCgzND8", + _ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer14setCustomData1EPKvm) +STUB( + "D5KdoIgekS4", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getInteger5Ev) +STUB( + "D5NUEdzPrK4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "D5O5HA9NK7k", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions37unsetxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB("D5ON0NveW+U", _ZNK9Inspector18InjectedScriptBase12globalObjectEv) +STUB("D5QGJRXaGzQ", mono_aot_Sce_Vsh_Np_Pbtcplt_end) +STUB("D5VwaDSEE9g", mono_btls_error_clear_error) +STUB("D5Y1cX5ZyLU", _ZN7WebCorelsERN3WTF10TextStreamENS_11TouchActionE) +STUB("D5foqLinQDc", _ZN3sce2Np9CppWebApi15Personalization2V15Error9setReasonEPKc) +STUB("D5iaQceaLcI", _ZN15AbstractStorage14YoutubeStorageD1Ev) +STUB( + "D5ihzlCiVp8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEE7get_refEv) +STUB( + "D5j2htKIghw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE5clearEv) +STUB( + "D5lU4YaiIyg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE7popBackEv) +STUB("D5m73fSIxAU", _ZNSt14_Error_objectsIiE16_Iostream_objectE) +STUB("D5nSwhnZwM8", _ZN3sce2Np9CppWebApi11UserProfile2V113BasicPresence12setInContextERKb) +STUB("D5oWX5Shi7E", uenum_close_67) +STUB("D5qJmwMlccI", _ZN3sce2np11NpHttpTransD2Ev) STUB("D5s1+ptdJUk", sceNpPush2CreatePushContext) +STUB("D5sWYfEaf3E", _ZN3sce7Toolkit2NP2V27NpUtils7Request19DisplaySigninDialogC1Ev) +STUB( + "D5srYLheuTE", + _ZN3sce7Toolkit2NP8Sessions9Interface17getInvitationListEPKNS1_21InvitationListRequestEPNS1_9Utilities6FutureISt6vectorINS1_23NpSessionInvitationInfoENS1_15AppSTLAllocatorISA_EEEEEb) +STUB("D5vKWUIXLkg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEmmEv) +STUB( + "D5zIhKZLBRc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEC2EPS6_PNS2_10LibContextE) +STUB( + "D60c3w1g3Js", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEaSERKS7_) +STUB("D615PAo5ccY", _ZN3sce7Toolkit2NP2V28Commerce8ProductsD2Ev) +STUB("D67LGyU9Jvs", _ZThn16_N9Inspector22InspectorDebuggerAgent8stepIntoERN3WTF6StringE) +STUB( + "D6AdsGoYACI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEmmEi) +STUB("D6D9QvimnPc", _ZN7WebCore11DisplayList7RestoreD2Ev) +STUB("D6FQrxfSRw0", + _ZN15AbstractStorage14FacebookFolder11SetMetadataEPN23sceMetadataReaderWriter8MetadataE) STUB("D6HEAnaC9zQ", scePlayGoSnapshot) +STUB( + "D6Khq4DH4l0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEEC2Ev) +STUB("D6QBgLq-nlc", CERT_STORE_addIdentityNakedKey) +STUB( + "D6RJ2XNgcr4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEE7get_refEv) +STUB("D6W4pe7Eyzo", _ZNK3JSC7JSValue16toNumberSlowCaseEPNS_14JSGlobalObjectE) +STUB( + "D6WC69hhYLQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB("D6dSysDsxho", _ZN3sce7Toolkit2NP2V212ActivityFeed6ActionC2Ev) +STUB("D6esyyBljUQ", _ZN4Manx14NetworkProfile14mountUploadDirEv) +STUB( + "D6fYcAp4l3k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEE6assignEPS7_PFvS9_EPNS2_10LibContextE) +STUB("D6gT6hNDk24", _ZNK7WebCore11RoundedRect8containsERKNS_10LayoutRectE) STUB("D6ovvSecedE", scePadRemoteControlInsertData) +STUB( + "D6tyqlofqpM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB("D6whRx5uJjA", _ZNK7WebCore27AuthenticationChallengeBase20previousFailureCountEv) +STUB("D6zZXKyK2XI", WKIconDatabaseClose) +STUB( + "D76EYP2dNNg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEE7get_refEv) +STUB( + "D76n9tZlwuY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEppEv) +STUB( + "D76y1Y5-Tro", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEaSERS7_) +STUB( + "D78zYJ6WLEc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "D7DEYbvpjcY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEE11get_deleterEv) +STUB( + "D7ExtW8K220", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "D7GqDSvrHl4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEE11release_refEv) +STUB( + "D7JFXtudr2A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEC1EPS8_) STUB("D7P8dL0ZKsI", sceVoiceQoSDebugGetStatus) +STUB( + "D7VP1qg9Vus", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEC2ERKS7_) +STUB("D7X2E7zr0Ms", _ZN3JSC7Symbols16truncPrivateNameE) STUB("D7dg5QJ4FlE", sceGameLiveStreamingStopGenerateStandbyScreenResource) +STUB( + "D7fljzHA2gY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEE11release_refEv) STUB("D7lbcn6Uxho", sceUserServiceSetNpLanguageCode) +STUB( + "D7mCXwuCZCg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEE5resetEPS6_) +STUB("D7ooGYQUtfA", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEEptEv) +STUB( + "D7qRLdhJjD0", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebErrorC2EPNS1_6Common10LibContextE) +STUB("D7s7dVKRTtU", _ZN7WebCore18CustomHeaderFieldsC1ERKS0_) +STUB( + "D7vihpJSS5s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEE7add_refEv) +STUB("D7wrc1aJMbo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEC1Ev) +STUB("D87MssF+SDE", _ZN7WebCore11DisplayList11FillEllipseC2ERKNS_9FloatRectE) +STUB( + "D8BPRyrSZ+g", + _ZN3sce2Np9CppWebApi14SessionManager2V146PatchPlayerSessionsSessionIdRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_39PatchPlayerSessionsSessionIdRequestBodyEEE) +STUB("D8Br9BnZoqo", SSL_new) +STUB( + "D8FyiBsqJUY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("D8GfkqC2eYU", WKUserContentControllerRemoveAllUserContentFilters) +STUB("D8JBAR3RiZQ", wscanf) +STUB( + "D8MIRnyak44", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEEC1ERS9_) +STUB( + "D8MdeROqB98", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V125NatConnectivityPropertiesC2EPNS1_6Common10LibContextE) STUB("D8OtBevb2j8", sceNpSessionSignalingGetCustomProperty) +STUB( + "D8OtXzqe49U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEppEi) +STUB( + "D8Y9x4DArlE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB( + "D8bS5wd+TEg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEppEi) STUB("D8cuU4d72xM", sceSysmoduleGetModuleHandleInternal) STUB("D8eCqBxSojA", sceNgs2FftProcess) +STUB("D8eSqW1wB+Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE3endEv) +STUB("D8eVrr57Cdw", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE3endEv) +STUB("D8fbM215v5U", _ZN3NTF10initializeEv) +STUB("D8qzwL-tVFY", htopw) +STUB("D8uS+3LygrY", _ZN7WebCore10TreeWalker9lastChildEv) +STUB("D8zy16yGtb8", _ZTVN3JSC8Bindings10RootObjectE) +STUB( + "D91QLOypj8Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "D938paDgjmg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE7popBackEv) +STUB("D93FsJ-Bib4", _ZN3WTF11Persistence5CoderINS_7CStringEE6decodeERNS0_7DecoderE) +STUB("D947DWfj9tY", eglMakeCurrent) +STUB( + "D95Nri7n91I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC1ERKSA_) +STUB( + "D9DGn8IG0dw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "D9Dm-iji0iw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE21intrusive_ptr_sub_refEPS7_) +STUB( + "D9H9qnzTtmw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE8pushBackERKS8_) +STUB("D9J+iUzkQCk", _ZN3sce7Toolkit2NP2V210Wordfilter7Request13FilterComment16MAX_SIZE_COMMENTE) +STUB("D9K0XgKxaV4", _ZN3sce7Toolkit2NP2V210Tournament5EventD1Ev) +STUB( + "D9KtUbSYoaw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEEC2ERSA_) +STUB("D9Kuasb-8ZQ", + _ZN3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer16setJoinTimestampEPKc) +STUB("D9NbUGKcEHE", _Z40PsmGraphicsRemovePostSwapBuffersCallbackj) +STUB( + "D9NsYHQ3Avc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE4sizeEv) +STUB("D9O2WHETJfs", _ZN7WebCore9HTMLNames16onhashchangeAttrE) +STUB("D9Yd1YkgPsI", wpe_loader_init) STUB("D9ZcN1WT7lE", sceBgftServiceIntDebugPlayGoIsPaused) +STUB( + "D9ZuyDmsuS0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE5eraseENS2_8IteratorIS5_EERS8_) +STUB( + "D9ct6Z0Huzs", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEEiRNS2_10LibContextEPT_m) +STUB( + "D9ePRKG+Vm8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEED2Ev) +STUB( + "D9qG2VuyW5M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEmmEv) +STUB("D9sF1x4r39w", _ZN3JSC4Heap11collectSyncENS_9GCRequestE) +STUB( + "D9sJ3W1xB8E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEC1Ev) STUB("D9sr1xGUriE", sceAgcCreatePrimState) +STUB("D9tmIHchV20", utrie_defaultGetFoldingOffset_67) +STUB("DA+1PtQC6jI", _ZN7WebCore12TextIterator26rangeFromLocationAndLengthEPNS_13ContainerNodeEiib) +STUB("DA+REGfMy64", _ZN3sce7Toolkit2NP2V210Tournament7Request12SearchEvents13MAX_PAGE_SIZEE) +STUB( + "DAFbo16yh2g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEE3getEv) +STUB( + "DAMz8k1fqJM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEC2EPNS2_10LibContextE) STUB("DAR+Nuv4E7M", sceNpGameIntentLaunchApp) +STUB( + "DATdo8NwGt0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEmmEi) +STUB( + "DAVZdnoGPOE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEE7add_refEv) +STUB( + "DAWdz9PrfE4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB("DAaqGjN-L1E", YGNodeStyleGetAlignContent) +STUB("DAbZ-Vfu6lQ", wcstoull) +STUB("DAbpqwz0T74", _ZN8meta_gen14ImageRetriever10SetMetaValEiPcm) +STUB( + "DAbxZ04qqI8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("DAcbr5ogFno", + _ZN7WebCore18EventLoopTaskGroup9queueTaskENS_10TaskSourceEON3WTF8FunctionIFvvEEE) +STUB( + "DAlFyShnnjA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE21intrusive_ptr_add_refEPS9_) +STUB("DAmwG6U7YIc", FT_Set_MM_Design_Coordinates) +STUB("DAnKdjbF0TY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEptEv) +STUB( + "DAnYYsCckM0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEEptEv) STUB("DArcuPFT7SU", sceBgftServiceIntDownloadSetResumeState) +STUB("DAvBs8LZWDM", _ZNK7WebCore6Widget25convertToContainingWindowERKNS_7IntRectE) STUB("DAycoVmY3Mw", sceCamera2GetSaturation) +STUB("DAzWvw7Ir-A", _ZN3sce7Toolkit2NP2V26Trophy7Request19GetTrophyPackTrophyC2Ev) STUB("DB+dOgEwWOs", sceKernelStreamWriteStat) +STUB( + "DB0D3J-x5YQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB("DB4go2kMtxo", _ZN9Inspector26DatabaseFrontendDispatcherdaEPv) STUB("DB7Mkm+Pqzw", scePthreadResume) +STUB( + "DBIfU2beyPE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("DBO-xlHHEn8", _ZTVSt13basic_istreamIwSt11char_traitsIwEE) +STUB("DBPatVsU1UE", il2cpp_unity_liveness_calculation_end) +STUB( + "DBQzOIUCKhk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEC2EPNS2_10LibContextE) STUB("DBZMYLxXRYA", sceAgcSdmaCopyTiledBC) +STUB("DBbfQ-p+XDo", _ZNK3sce2Np9CppWebApi11Matchmaking2V15Cause9getSourceEv) +STUB("DBd+DgEOL5k", + _ZN3sce7Toolkit2NP9Messaging9Interface23displayReceivedMessagesEiPKNS1_7RequestE) +STUB("DBfLmGdgef0", _ZN7WebCore14LoaderStrategyD1Ev) +STUB( + "DBhro9TPuAc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE21intrusive_ptr_sub_refEPS7_) +STUB( + "DBkwjweiIuY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE5clearEv) +STUB( + "DBlcUtLfwIw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEE7add_refEv) +STUB("DBnRsrL3U8U", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TSS7TssDataEEC2Ev) +STUB( + "DBo1AlV+mMs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) STUB("DBswy44k1lU", sceFsUfsAllocateAdditionalContents) +STUB("DBvRuKWSgEY", _ZN3JSC7Symbols34GeneratorStateCompletedPrivateNameE) +STUB( + "DBwwJm8jPGc", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEiRNS2_10LibContextEPT_m) +STUB("DBwxPItsqE8", _ZThn64_NK7WebCore9FrameView12headerHeightEv) +STUB( + "DC+8P8jHaMg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEEC1Ev) +STUB( + "DC1FyWG-qts", + _ZN3sce2Np9CppWebApi7Matches2V130RequestTeamMemberResultFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_23RequestTeamMemberResultEEE) STUB("DC2NSz1IDyk", sceSysUtilSendSystemNotificationWithUserName) +STUB("DC6bLPb4VD8", + _ZN7WebCore13GraphicsLayer13addChildBelowEON3WTF3RefIS0_NS1_13DumbPtrTraitsIS0_EEEEPS0_) +STUB( + "DC6oCPKELHs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE6resizeEj) +STUB("DCC67J1Y-Qg", _ZNK7WebCore4Page9sessionIDEv) +STUB("DCED60UCIc0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEC1ERKS7_) +STUB("DCLZaH0Q5DE", _ZNK7CoreIPC15StringReference8toStringEv) +STUB( + "DCNN-D9fd50", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "DCOj74gUk6Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEED2Ev) +STUB( + "DCRdVxlHSyg", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi42ParameterToPutGameSessionsSearchAttributesC1Ev) +STUB("DCRiROH09qc", + _ZN3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectator11setPlatformEPKc) +STUB("DCVbIFEYqfI", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V111LeaveReasonEEC2Ev) +STUB("DCVmMM10fxo", _ZN3sce3pss4core8graphics14NativeGraphics19AllocateVideoMemoryEmm) +STUB("DCY9coLQcVI", _ZTISt12future_error) +STUB( + "DCZuf4gAyio", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("DCaq-waberM", + _ZN7WebCore16JSXMLHttpRequest15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("DCbHrYNuMXo", _ZN7WebCore24CoordinatedGraphicsLayer17suspendAnimationsEN3WTF13MonotonicTimeE) +STUB("DCdHL7bcNss", mono_get_exception_field_access) STUB("DCfnYVX6xBo", sceFiosPrintTimeStamps) +STUB( + "DCkav1uIj5k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEmmEv) +STUB( + "DCrLyg8I63Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEED2Ev) +STUB( + "DCriL8BTdYQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEmmEv) +STUB( + "DCv0nZ+zeb0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE5emptyEv) +STUB( + "DCveI7UYZvs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEneERKS9_) STUB("DD-KiRLBqkQ", scePadEnableUsbConnection) +STUB("DD08+9TAImA", _ZN3JSC17MarkingConstraint17quickWorkEstimateERNS_11SlotVisitorE) +STUB( + "DD2-Y2Rc5vE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEdeEv) +STUB( + "DDAbpbnJrKs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEeqERKS9_) STUB("DDCQA2fPQj0", sceAgcDriverUnregisterGpuResetCallbacks) +STUB( + "DDDzEJ2sgPU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEixEm) +STUB("DDFzYGBRGrI", _ZN3sce7Toolkit2NP2V27Ranking12RangeOfRanksC1Ev) +STUB("DDHG1a6+3q0", roundf) +STUB("DDIR4QpfiIg", _ZN3WTF16callOnMainThreadEONS_8FunctionIFvvEEE) STUB("DDKghiBPZNg", sceFsNsfsAddOverlayToNamespace) +STUB( + "DDMSmBMG8hg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEneERKS9_) +STUB( + "DDOy5lL-PfA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody35setComparedLastUpdatedUserAccountIdEPKc) +STUB("DDQjbwNC31E", _ZNSt8messagesIwEC2ERKSt8_Locinfom) +STUB("DDQkJ92zOvg", _ZN15AbstractStorage15FacebookService5StartEv) +STUB("DDShcGWr-4s", _ZN8meta_gen14ImageRetriever8FinalizeEv) +STUB("DDW8PFTS+1g", WKContextDownloadURLRequest) +STUB("DDYywAer5K0", _ZN3sce3Xml3Dom8NodeList11insertFirstENS1_6NodeIdE) +STUB( + "DDbz-rQ1t5U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "DDhK8DAk4ms", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEptEv) +STUB( + "DDmxBXZkpHo", + _ZN7WebCore10Pasteboard15writeCustomDataERKN3WTF6VectorINS_20PasteboardCustomDataELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("DDnr3lDwW8I", _ZNKSt7codecvtIDic9_MbstatetE11do_encodingEv) +STUB("DDrm5JlJPl4", _ZN3sce2Np9CppWebApi7Matches2V114SubtaskFactory7destroyEPNS3_7SubtaskE) +STUB("DDtxNyBCQmE", _ZN3JSC22DeferredWatchpointFireD0Ev) +STUB("DDuh+yvPMwQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEixEm) +STUB( + "DDvN0oxNcQo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("DDx0-QMzeD4", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product14setReleaseDateEPKc) +STUB("DDxCFdQ8YyU", WKWebsiteDataStoreStatisticsDeleteCookiesForTesting) +STUB("DDxIEUn63w8", _ZN3sce2Np9CppWebApi14SessionManager2V127PostGameSessionsRequestBodyD1Ev) +STUB("DDxLGS1bKWw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEC1Ev) +STUB("DDxNvs1a9jM", __mulosi4) +STUB( + "DDxPx81FrvA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEEptEv) +STUB( + "DE0kW8hhYS8", + _ZN3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBody5setToERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_23MemberWithMultiPlatformEEEEE) +STUB("DE2yor5gKVY", + _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead18maxSpectatorsIsSetEv) +STUB( + "DE3SUa8Yt58", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEC2Ev) +STUB("DE6cpXTwlxA", mspace_trim) +STUB( + "DECe2D89u0o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEaSERKS9_) +STUB("DEIxYzhqE5g", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEEplEm) +STUB("DEJWhX-yHNg", ENGINE_get_next) +STUB("DEPiS-EDbzk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEaSERS7_) +STUB("DEQmHCl-EGU", __atomic_store_8) +STUB("DEdebd5c3Hw", WKBundleFrameGetNumberOfActiveAnimations) +STUB( + "DEfColdZyR0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE5clearEv) +STUB( + "DEgyscYUnDs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEEptEv) +STUB( + "DEmrPf1rtlc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEEC1Ev) STUB("DEogcVYTvm8", sceVorbisDecRawTotal) +STUB( + "DEqEcw-I+As", + _ZN3sce2Np9CppWebApi7Matches2V127ResponseMatchResultsFactory7destroyEPNS3_20ResponseMatchResultsE) +STUB( + "DEvK64zu-oQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEdeEv) +STUB("DF068VecPFY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEEC2ERS7_) +STUB("DF2bDNLQbUM", + _ZN7WebCore22EmptyFrameLoaderClient29savePlatformDataToCachedFrameEPNS_11CachedFrameE) +STUB("DF2gm2NCGhY", WKBackForwardListClear) +STUB( + "DF6t59pWmLc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("DFBZJzYu0MM", WKViewSetViewScaleFactor) +STUB( + "DFBxL78AGLo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEE11get_deleterEv) +STUB( + "DFG1PW7DCfk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEED1Ev) +STUB("DFLUj7hw4Ck", rgctx_fetch_trampoline_rgctx_103) +STUB( + "DFOWonX7gIA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEixEm) +STUB("DFYOI3dvxU4", uprv_stableBinarySearch_67) +STUB("DFaFoelr9Xw", _ZN7WebCore11MediaPlayer16reloadTimerFiredEv) +STUB("DFbJy+ORy1w", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4DataEED1Ev) +STUB( + "DFbYaVeI4wo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEC1EPS8_) +STUB( + "DFhS6TUPeKQ", + _ZN7WebCore21JSCSSStyleDeclaration25getOwnPropertySlotByIndexEPN3JSC8JSObjectEPNS1_9ExecStateEjRNS1_12PropertySlotE) +STUB("DFjv+LHtSFs", + _ZN7WebCore17FrameLoaderClient23dispatchDidExplicitOpenERKN3WTF3URLERKNS1_6StringE) STUB("DFlBYT+Lm2I", sceNpTusGetMultiSlotVariableForCrossSaveAsync) +STUB("DFmMT80xcNI", sysctl) +STUB( + "DFoj14XYBr0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEC1Ev) +STUB("DFpTo4CWnA4", _ZN3sce2Np9CppWebApi6Common8IteratorIdEaSERKS4_) +STUB("DFpikNdC3w4", _ZNK7WebCore24RotateTransformOperation27isAffectedByTransformOriginEv) +STUB( + "DG1HMi1H6cY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEC2Ev) +STUB("DG4KEqvKaY4", _ZN9Inspector15RemoteInspector20receivedSetupMessageEj) +STUB( + "DG6EpCkXXVA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEmmEi) +STUB("DG8dDx9ZV70", __fixunsxfdi) STUB("DGCwN1Lmmys", scePadVrControllerSetVibration) +STUB("DGHBlx7MdZU", _ZN7WebCore9FloatSizeC1ERKNS_7IntSizeE) +STUB("DGL4+zhEA-0", rgctx_fetch_trampoline_mrgctx_105_p) +STUB("DGLM-Fkb0D8", _ZN3JSC8Debugger12breakProgramEv) STUB("DGMG3JshrZU", sceKernelSetVirtualRangeName) +STUB("DGPzFSjsHaM", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEEixEm) +STUB( + "DGSVF6WM3pE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEaSERKS7_) +STUB("DGU0Qg+6p8M", _ZN15AbstractStorage12LocalContentC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB( + "DGUsOI3eNQI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEEC1ERKS9_) +STUB("DGVfJgP7BXA", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeDataC1ERS5_) +STUB("DGY7qWLcHGA", cpuset_getid) +STUB("DGbb+VBzV6c", _ZN15AbstractStorage14YoutubeService5StartEv) +STUB("DGc5YHKR8S0", _ZN3sce7Toolkit2NP2V28Matching7Request14SendInvitation21MAX_SIZE_USER_MESSAGEE) +STUB( + "DGfQHtdsJ-8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEC1Ev) +STUB("DGfQcLf5l4E", _ZL34__orbis_default_unexpected_handlerv) +STUB("DGkUQEbknmA", JSStringGetMaximumUTF8CStringSize) +STUB("DGrij8GoG00", + _ZN7WebCore18TextureMapperLayer26applyAnimationsRecursivelyEN3WTF13MonotonicTimeE) +STUB( + "DH3Br38GA14", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEmmEv) +STUB("DHAwOWrkloM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE3endEv) +STUB("DHD7eNyXDgM", _ZNK3sce2Np9CppWebApi7Matches2V121ResponseTeamStatistic10statsIsSetEv) +STUB( + "DHGUak8na3k", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBody8fromJsonERKNS_4Json5ValueE) STUB("DHItaFqEQkU", sceBufferFree) +STUB("DHMLSFLHOkM", _ZNK3sce2Np9CppWebApi14SessionManager2V115SearchCondition11getOperatorEv) +STUB( + "DHMPBNdoI6Q", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEptEv) +STUB( + "DHNpNUWdOiE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEEaSERKSA_) +STUB("DHOTYcqa4hk", _ZN3sce2Np9CppWebApi13InGameCatalog2V57ProductC1EPNS1_6Common10LibContextE) +STUB("DHPTW5Go8nw", _ZN15AbstractStorage18DailymotionServiceC2Ev) STUB("DHQXNKiY-Dw", sceVdecCoreFinalizeComputeResource) +STUB("DHWACaPn-g4", _malloc_initialize) +STUB("DHXdTVvHVK0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE4sizeEv) +STUB("DHZFFMpeKrk", _ZN7WebCore15SQLiteStatement15getColumnDoubleEi) +STUB( + "DHb-eagnsVk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEC2EPKS9_) +STUB("DHbAda1fa1k", WKContextRegisterURLSchemeAsCachePartitioned) +STUB("DHgcswRN9TQ", mono_win32_compat_FillMemory) +STUB("DHi-7w29ie4", ucurr_unregister) +STUB("DHm4E+8okhU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEcvbEv) +STUB("DHm6fDoGDBs", _ZN9Inspector22InspectorDebuggerAgent24clearAsyncStackTraceDataEv) STUB("DHmwsa6S8Tc", sceNpCommerceShowPsStoreIcon) +STUB("DHo6TWtuGmg", _ZN7WebCore6Editor29handleAlternativeTextUIResultERKN3WTF6StringE) +STUB("DHrbwttBFig", _ZN7WebCore4PathaSEOS0_) +STUB( + "DI3NVDsspjk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEixEm) STUB("DI3yZlrLLxM", sceDepthHeadCandidateTrackerGetResult) STUB("DI5n4aOdxmk", sceNpGlobalHeapGetAllocatorPtr) +STUB("DI8wW8s-O5s", WKPreferencesSetCSSRegionsEnabled) +STUB( + "DIEFA0GRT9M", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEptEv) +STUB("DIHRuOTRrqc", rgctx_fetch_trampoline_rgctx_41_p) +STUB( + "DII6qcT7RSo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE10setContextEPNS2_10LibContextE) +STUB("DIIHsm0p4mo", _ZNK3sce2Np9CppWebApi7Matches2V116RequestMatchTeam9getTeamIdEv) +STUB("DIIRFBxRfMQ", FTA_Remove_Module_cff) +STUB( + "DIIxbYHKZZ4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEmmEv) +STUB( + "DIJrn1q9Bp8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE5emptyEv) +STUB( + "DILN0V3Dn9s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE10setContextEPNS2_10LibContextE) STUB("DILuzcvXjGQ", sceSystemServiceSaveVideoToken) +STUB("DITCXSNlhCY", _ZN3JSC7Symbols29promiseResolveSlowPrivateNameE) STUB("DIU1sFRRaiE", sceHmd2GazeGetCalibrationData) +STUB("DIWzj8Cnq+4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS15TusDataStatusesEEC2Ev) +STUB( + "DIXGebh2bbM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEdeEv) +STUB("DId51WHtNjY", _ZN3WTF12createThreadEPFvPvES0_PKc) +STUB("DIdt7mJ-+Mo", _ZN3JSC4Heap35deprecatedReportExtraMemorySlowCaseEm) +STUB( + "DIhA9V-XCGc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEED2Ev) +STUB( + "DIl3QkmEECA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE3endEv) STUB("DImz2Ft9E2g", sceAudioOut2GetSpeakerInfo) +STUB( + "DIodHZDu6RE", + _ZN7WebCore21SerializedScriptValue11deserializeERN3JSC9ExecStateEPNS1_14JSGlobalObjectENS_22SerializationErrorModeE) +STUB("DIrOrTMEuZw", _ZN3sce7Toolkit2NP2V210Tournament14RegisteredUserD1Ev) +STUB( + "DIsxmxgvY2I", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V120ErrorResponseFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_5ErrorEEEPNS8_INS3_13ErrorResponseEEE) +STUB("DIvJVQ3aBR8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V122UploadDataResponseBodyC2EPNS1_6Common10LibContextE) STUB("DIwqTkcZiJo", sceHmd2ReprojectionSetUserEventStart) +STUB("DIxvoy7Ngvk", _ZNK3sce4Json5Value10getIntegerEv) +STUB("DJ+a5ILqjcg", _ZN7WebCore9HTMLNames11contentAttrE) +STUB("DJ+sP6bSuMc", _ZN3sce2Np9CppWebApi6Common6VectorIjE5beginEv) +STUB("DJ--iSo4x+I", + _ZN7WebCore21WheelEventTestMonitor23removeDeferralForReasonEPKvNS0_11DeferReasonE) +STUB("DJ-4VhQzx4w", submitCommandBuffersInternalFunc) +STUB("DJ4D1wbLSQE", mono_aot_Sce_Vsh_PsnMessageUtilunbox_trampolines_end) +STUB("DJ8j+2GA-r0", ztrans_open_67) +STUB( + "DJAhLAw+plk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEED1Ev) +STUB( + "DJB6Ul7ScAU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEeqERKS9_) +STUB("DJLMNkz6oP8", _ZN9Inspector26TimelineFrontendDispatcherdaEPv) +STUB("DJMEBvhpY18", monoeg_g_hash_table_foreach_remove) +STUB( + "DJNFN5X2pnA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE3endEv) +STUB("DJOAsXuug44", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEcvbEv) +STUB( + "DJQUiS9SvVY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE21intrusive_ptr_add_refEPS9_) STUB("DJURdcnVUqo", sceFontGraphicsFillPlotInit) +STUB( + "DJVLa7QUIa4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEE11get_deleterEv) +STUB("DJXyKhVrAD8", _Erf_small) +STUB("DJg+qWX1rwY", ERR_get_error) +STUB( + "DJgQrITERFA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEC2ERS7_) +STUB( + "DJgcSF2KWNg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEE11get_deleterEv) +STUB("DJidosAYILg", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEEptEv) +STUB("DJjXhJEhds0", _ZNSt9basic_iosIcSt11char_traitsIcEE9set_rdbufEPSt15basic_streambufIcS1_E) +STUB("DJktOWakWpE", _ZN3JSC16InternalFunction16getConstructDataEPNS_6JSCellE) STUB("DJsHcEb94n0", sceRazorCpuSetPushMarkerCallback) +STUB( + "DJuDQZEtsEs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE6resizeEj) +STUB( + "DJxQnDALoL0", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot17setnpServiceLabelEj) STUB("DJy2VDiX8j0", sceNpTrophySystemWrapRemoveAll) +STUB( + "DK+BjC764Vo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEdeEv) STUB("DK+GoXCNT04", sceHttpsLoadCert) +STUB( + "DK4s8pXXa-0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("DK5FmaPEFe4", g_utf8_to_utf16) +STUB("DK6V1CLfss8", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi22ParameterToCreateMatchC1ERS5_) +STUB( + "DK6lPc+GHTA", + _ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead17unsetInvitationIdEv) STUB("DK6xpBP1gxw", sceNpAppLaunchLink2IntInitialize) +STUB( + "DKCy061-8x0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEaSERS7_) +STUB( + "DKD5wZUQD+k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEppEi) +STUB("DKDex8u4uoU", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_skipToPrevLinkPoint) +STUB("DKGaYsA1wCg", _ZN3JSC8JSCalleeC2ERNS_2VMEPNS_14JSGlobalObjectEPNS_9StructureE) +STUB( + "DKJ+61Xoz-Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEED1Ev) +STUB("DKLD2I0fPQ4", + _ZN3sce2Np9CppWebApi12Leaderboards2V123RecordScoreResponseBody8fromJsonERKNS_4Json5ValueE) +STUB( + "DKOAKtw9Wso", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEaSERKS9_) +STUB("DKUoV-3Xc6A", WKPageCopyPageConfiguration) STUB("DKWSr89zMsI", sceRegMgrNonSysGetStr) STUB("DKWTYfo-jMY", sceKernelDebugRaiseExceptionWithContext) +STUB("DKcDIamAq5s", _ZN8meta_gen11MsvPromoter41readAndpushThumbnailInfoFromSideImageFileEPKc) +STUB( + "DKdVJ9u0KHk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEC1Ev) +STUB("DKdo2D2V5qc", _ZNK7WebCore5Frame24isAlwaysOnLoggingAllowedEv) +STUB( + "DKghgUOFP2I", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeaders21intrusive_ptr_sub_refEPS5_) +STUB( + "DKjvhynQkxU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEC1EPS8_) +STUB( + "DKkwPpi+uWc", + _ZZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE9_GetffldxEPcRS3_S6_RSt8ios_basePiE4_Src) +STUB("DKo3NJKlHGk", _ZNK7WebCore17JSDOMGlobalObject12currentEventEv) +STUB( + "DKvlUTABSxM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEppEi) +STUB( + "DKzuRyhtvjE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) STUB("DL2RXaXOy88", sceAgcDriverDeleteEqEvent) STUB("DLORcroUqbc", sceKernelGetOpenPsId) +STUB("DLSijjw25cc", EVP_PKEY_get0_DH) +STUB( + "DLT9zEX4mCs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEC2Ev) +STUB("DLTJKFk-OI4", udatpg_getAppendItemName_67) +STUB("DLUu0RPAgO8", _ZN3JSC7Symbols32resolveWithoutPromisePrivateNameE) +STUB("DLW++1OroYc", _ZN3WTF10StringImpl7replaceEDsDs) +STUB("DLW2MfypEgQ", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEE3getEv) +STUB( + "DLW3aIRFf5Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "DLX9ZNzL5oI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEE11release_refEv) STUB("DLXiDjC1D1A", sceMusicPlayerServiceUnpause) +STUB("DLf0c68diD4", _ZN3sce7Toolkit2NP2V24Core7Request11MemoryPools25MATCHING_MEM_DEFAULT_SIZEE) STUB("DLfoNxTFNVk", sceAmprCommandBufferWaitOnAddress_04_00) +STUB( + "DLhFj+Y3r2I", + _ZN9Inspector31ScriptProfilerBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) +STUB( + "DLi3vp6yiHY", + _ZN3sce2Np9CppWebApi14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyD2Ev) +STUB("DLog94EYwFI", _ZN3WTF15memoryFootprintEv) STUB("DLpCCyufz2s", sceFsUfsAllocateGameImage) +STUB("DLs73j9k0q4", _ZNK7WebCore9DOMWindow8documentEv) +STUB("DLscY4vSZkg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEE11get_deleterEv) +STUB( + "DLvh1fvEt-8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEE11release_refEv) +STUB( + "DLyRqLdKpSo", + _ZN15AbstractStorage17DailymotionFolder13RemoveContentERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("DM1eyIdcmqw", _ZNK7WebCore12GridPosition12spanPositionEv) +STUB("DM39YN-X56M", _ZN3WTF14FileSystemImpl17encodeForFileNameERKNS_6StringE) +STUB( + "DM3BEBjAoB8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUserC1ERS5_) +STUB("DM43TNBBfb0", _ZNK3sce4Json6StringeqERKS1_) +STUB( + "DM7D7N534g8", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError8fromJsonERKNS_4Json5ValueE) +STUB("DM7MyKLUQzM", _ZNK3sce7Toolkit2NP17MessageAttachment17getAttachmentSizeEv) +STUB( + "DM8tZX0aHqk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB("DMB487Ois9o", WKBundleInspectorGetTypeID) +STUB( + "DMIcwd4A3ac", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEE7get_refEv) +STUB("DMWSC2m73aY", _ZN7WebCore3URL14encodeHostNameEN3WTF10StringViewE) +STUB("DMWwdFKaCDw", __libunwind_Unwind_GetIPInfo) +STUB("DMY+RIC9iA4", _ZN12video_parser13cVideoMetaVWG16getThumbnailInfoEjPNS_18VpThumbnailInfo_t_E) +STUB("DMYrhifx1WE", _ZN3sce7Toolkit2NP2V29Messaging12Notification16NewInGameMessageC1Ev) +STUB( + "DMZzd5om2rc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB("DMei+WazvFA", mono_aot_Sce_Vsh_Np_Tmdbunwind_info) +STUB( + "DMjIYRYWWUU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEEC2Ev) +STUB("DMm6Lh-3hIY", ucasemap_utf8ToUpper_67) +STUB("DMoAIt-s9Ks", _ZN3JSC19ArrayBufferContentsD1Ev) +STUB("DMqBXLYRnNc", + Java_com_sony_bdjstack_javax_media_controls_VideoSystem_setBackgroundDeviceColor) +STUB( + "DMqwrzIA6FM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE6resizeEj) STUB("DMvAm4HFKg0", sceMusicPlayerServiceSetShuffle) +STUB( + "DMyZ2fNYGDk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE6finishEv) +STUB( + "DN+ne4e8T5g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEE5resetEPS6_) +STUB("DN0xDLRXD2Y", _ZTSPf) +STUB( + "DN22V6n2FPo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEC2Ev) +STUB("DN3nYDsSbt8", __CTOR_LIST__) +STUB( + "DN4n3Mup9OY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("DN77JoQXH6U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEdeEv) STUB("DN8v2xNOyjg", sceSlimglCompositorSetInvisibleCanvasCommand) +STUB( + "DNDV56gSPPs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEC2Ev) +STUB( + "DNE6LI1CVbo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEC1Ev) STUB("DNE77sfNw5Y", sceSystemServiceSetControllerFocusPermission) +STUB( + "DNEX4+HWi0M", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB( + "DNJftLYsGZs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("DNL2FcQX1lA", unumsys_close_59) +STUB("DNM6jPWTIwI", _ZN7WebCore20ResourceLoadObserver19statisticsForOriginERKN3WTF6StringE) +STUB( + "DNMmWd-5Ofs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEC1EPS6_PNS2_10LibContextE) +STUB( + "DNTVVXEtfe4", + _ZN3sce2Np9CppWebApi14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyC2EPNS1_6Common10LibContextE) +STUB( + "DNWq1hvSwhE", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V136FrequentlyMutedInPartyMetricsFactory6createEPNS1_6Common10LibContextEiiiPNS5_12IntrusivePtrINS3_29FrequentlyMutedInPartyMetricsEEE) STUB("DNb-Y-33FyE", ScePsmMonoArrayAddrWithSize) +STUB("DNbsDRZ-ntI", _ZSt25_Rethrow_future_exceptionSt13exception_ptr) +STUB( + "DNf1gEN5JNA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEeqERKS9_) +STUB( + "DNjCxWifa0Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEE11get_deleterEv) +STUB("DNmJw98YzUU", _ZN3sce2Np9CppWebApi6Common6StringD1Ev) +STUB("DNsikQCYCGM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEEC1EPKS6_) +STUB( + "DNwT9SLYG9M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "DNxxFZlfJM0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEED1Ev) +STUB( + "DNzN0yobRGs", + _ZN3sce7Toolkit2NP8Matching9Interface13modifySessionEPKNS1_20ModifySessionRequestEPNS1_9Utilities6FutureIiEEb) +STUB("DO1fyoQLh0o", _ZN12video_parser17cVideoProfilerMp412getAudioInfoEjPPNS_13VpMediaInfo_tE) +STUB( + "DO1sF3L2F3s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEcvbEv) +STUB( + "DO3sU-3OXlo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEEcvbEv) +STUB("DO5QvHY3UG8", _ZN3sce11playstation4core3Ime13ImeClientCall13UpdateContextEmPtj) +STUB( + "DO7gUg8Unx4", + _ZN9Inspector28DOMDebuggerBackendDispatcher31removeInstrumentationBreakpointElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("DOBCPW6DL3w", _ZTIPDi) +STUB("DOCnSv1cXx8", cairo_curve_to) STUB("DOFWwhLN09E", sceMbusSetVolumeDown) +STUB( + "DOFb2OcMfuw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEeqERKS9_) +STUB("DOHD6PjWmZ0", _ZN7WebCore11RemoteFrameC2EONS_21GlobalFrameIdentifierE) +STUB( + "DOJi+Xqoyms", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEC1EPS8_) STUB("DOO+zuW1lrE", sceSysmodulePreloadModuleForLibkernel) +STUB("DOUicDZmVk4", + _ZN3sce2Np9CppWebApi14SessionManager2V124GameSessionMemberForRead13getSpectatorsEv) +STUB("DOVFpAYK3HA", jpeg_fdct_9x9) +STUB("DOVxUXWntL0", _ZNK7WebCore14SecurityOrigin10canRequestERKNS_3URLE) +STUB( + "DOat2r2+U0k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "DObdyWe9kxA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE7popBackEv) +STUB("DOcZTn-y8sw", mono_aot_I18Nunbox_trampolines) STUB("DOcz37jR7dk", sceKernelSetEmergencyErrorLog) +STUB("DOi+7bvqWpY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEE3getEv) STUB("DOmdOwV3Aqw", sceFontGraphicsEndFrame) +STUB( + "DOo2yUI0Tsk", + _ZN12video_parser17cVideoProfilerMp417_releaseMediaListERNS_7cVpListINS_13VpMediaInfo_tEjEEMS0_FNS_11VP_RESULT_eEPS2_E) +STUB("DOqfwW33c5U", _ZNK3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15Error7getCodeEv) +STUB( + "DOw6S9539tY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEC1EPNS2_10LibContextE) STUB("DOwXL+FQMEY", sceSslGetSerialNumber) +STUB( + "DP0XXiJzRmw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE8capacityEv) +STUB( + "DP49y190adc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEE3getEv) +STUB("DPBNNj+AtMI", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_26ActivityFeedCondensedStoryEEeqERKS4_) +STUB("DPDs6Nb95Fs", rgctx_fetch_trampoline_mrgctx_67_p) +STUB("DPGzznIq6jk", ufieldpositer_next_67) +STUB("DPLMrrm0plU", _ZN3JSC10Identifier4fromERNS_2VMEd) +STUB( + "DPOI4gaLgH4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEEaSERKS9_) +STUB("DPOkPZ1UM8g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEaSERS7_) +STUB("DPPQ6aWNSXo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEEdeEv) +STUB( + "DPPz1qYDcrw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "DPTFPm41nDw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEEptEv) +STUB("DPa-0KRJZQ0", fuse_reply_ioctl_retry) STUB("DPcAnsOlTQs", sceAgcDriverSetHsOffchipParamDirect) STUB("DPcu0qWsd7Q", sceNpTusGetMultiSlotVariableForCrossSaveVUserAsync) +STUB("DPd5RrM+-+A", lchflags) +STUB( + "DPdCqnmGVP8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEixEm) +STUB( + "DPdOB3ZEhiw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEppEi) +STUB("DPeWR2z7s+k", _ZTVN9Inspector25DebuggerBackendDispatcherE) +STUB( + "DPemPzWoppg", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsers9terminateEv) +STUB("DPhWJAHlWzw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_12FutureResultIiEEEaSERKS6_) STUB("DPp0DoWStVs", sceKernelGetAIOData) +STUB( + "DPqu-khrj0s", + _ZN3sce7Toolkit2NP8Commerce9Interface26getDetailedProductInfoListEPNS1_9Utilities6FutureISt6vectorINS1_19ProductInfoDetailedENS1_15AppSTLAllocatorIS7_EEEEERKNS1_34DetailedProductInfoListInputParamsEb) +STUB("DPxdK61lRaE", FcPatternDuplicate) +STUB("DPzn7fIYrno", rgctx_fetch_trampoline_rgctx_112_p) +STUB("DQ435HoiiJc", JSContextGetGroup) +STUB( + "DQ5igD0CQQQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEE7add_refEv) +STUB("DQ7K6s8euWY", fminl) +STUB("DQ88xyNHkB4", mono_aot_ReactNative_Vsh_Commonjit_code_end) +STUB("DQ9mChn0nnE", _ZTIPj) +STUB( + "DQDVm1U2ZXA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEppEi) +STUB("DQErMq8kZ+s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEaSERS7_) +STUB( + "DQGxxfV-LCY", + _ZN7WebCore22EmptyFrameLoaderClient33dispatchWillPerformClientRedirectERKNS_3URLEdN3WTF8WallTimeE) +STUB("DQKDQHas1xw", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312AccountIdMap11setOnlineIdERK13SceNpOnlineId) +STUB("DQLfpq4bYv8", _ZN12video_parser18cProfileCheckerMp416_isPlayableMovieEv) +STUB( + "DQME2wcowHs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE8capacityEv) +STUB( + "DQPla-aRD9Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEEaSERKSA_) +STUB("DQSwkf0v-8M", _ZN3sce2Np9CppWebApi14SessionManager2V118MatchmakingForReadD2Ev) +STUB("DQWmTH8mtKU", _ZN3WTF11parseUInt16ENS_10StringViewE) +STUB( + "DQXDxmcJibE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEE3getEv) +STUB("DQXJraCc1rA", alarm) +STUB( + "DQXSRdjF-qY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE21intrusive_ptr_add_refEPS9_) +STUB("DQZPe+YYKWc", Java_java_awt_Component_paintUnlock) +STUB("DQbtGaBKlaw", strnlen_s) +STUB("DQfMoQrtiCc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEC1Ev) +STUB( + "DQjhnV+0l6c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB("DQnohbZGTxo", rgctx_fetch_trampoline_mrgctx_15) +STUB( + "DQp+NhJmtdM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("DQrMjSgCx1M", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable18getLastUpdatedUserEv) +STUB( + "DQvEeqd6Zss", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEixEm) +STUB("DQylqHn4u3g", _ZN8meta_gen11MsvPromoter22determineContentStatusEv) +STUB("DR-KUzK0bFw", ucnv_toUWriteUChars_67) STUB("DR-ZCmvVR9Q", sceAcm_IFFT) +STUB("DR029KeWsHw", + _ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_bRSt8ios_basecRKSs) +STUB( + "DR0Wrl6T8AY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE5clearEv) +STUB( + "DR11Ly2iWCo", + _ZN7WebCore33validateCrossOriginResourcePolicyERKNS_14SecurityOriginERKN3WTF3URLERKNS_16ResourceResponseE) +STUB("DR1TVxyTPKc", WKURLCreateWithUTF8CString) +STUB( + "DR2+1QFy7Oo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEeqERKS9_) +STUB("DR5-oCJNvBU", _ZNK9Inspector14ConsoleMessage13argumentCountEv) STUB("DRA3ay-1DFQ", sceNpPartyGetId) +STUB("DRA4Hre5fLA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEEplEm) +STUB( + "DRFIw3xVFvU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEEC2Ev) +STUB( + "DRG+Wa8pNzA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("DRGXpDDh8Ng", lstat) +STUB("DRHqIBMlgK4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEC2ERKS7_) +STUB( + "DRIVfwHXECw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEED2Ev) +STUB( + "DRKrmcrqums", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEEdeEv) +STUB( + "DRLsyMtqWW8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEC2Ev) +STUB("DRNmoIUMxyk", _ZNK7WebCore19MediaElementSession22allowsPictureInPictureEv) +STUB( + "DROcbboUfB0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEmmEi) +STUB( + "DROdZ0bu8dI", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEED1Ev) +STUB("DRP2CWLtObo", ft_smooth_lcdv_renderer_class) +STUB( + "DRQd7vaEvTc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEC1Ev) STUB("DRQs7hqyGr4", sceFontGraphicsGetVertexesGlyphMetrics) +STUB("DRU3Cxamekk", _ZN7WebCore9HTMLNames12datetimeAttrE) +STUB( + "DRVPjmG+VkU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEE11release_refEv) +STUB("DRbjyNom-BE", _ZN3sce2np3ipc10IpmiClientD1Ev) +STUB("DRchg7SNqic", + _ZN3sce2Np9CppWebApi14SessionManager2V122GameSessionPushContextC2EPNS1_6Common10LibContextE) STUB("DReLgJ4LPj8", sceApplicationSendResultOfDebuggerTitleIdLaunchRequest) +STUB("DRk9hXjs1Tc", _Atrealloc) +STUB( + "DRkG+tJvcOY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEC1EPNS2_10LibContextE) +STUB("DRm9MRXxV-Y", _ZN7WebCore14FrameSelection6moveToEPKNS_5RangeE) +STUB( + "DRtPUo0Qaqk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEEptEv) +STUB("DRuBt2pvICk", _read) +STUB("DRwo4pgCHKk", glGetShaderPrecisionFormat) +STUB("DS03EjPDtFo", _FHypot) STUB("DS2yu3Sjj1o", sceNpTssGetDataAsync) +STUB( + "DS4MYWsBtZM", + _ZN9Inspector33ApplicationCacheBackendDispatcherC1ERNS_17BackendDispatcherEPNS_40ApplicationCacheBackendDispatcherHandlerE) +STUB( + "DS7mo5leOsI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEEC2EPNS2_10LibContextE) +STUB( + "DS8NMQ0HIHo", + _ZN7WebCore16WebSocketChannelC2ERNS_8DocumentERNS_22WebSocketChannelClientERNS_14SocketProviderE) +STUB("DSHoRUTWQD0", _ZN7WebCore16NavigationActionD2Ev) +STUB("DSI7bz2Jt-I", __powixf2) +STUB("DSJ9UP0+mDU", _ZN7bmalloc29StaticPerProcessStorageTraitsINS_9DebugHeapEE7Storage8s_memoryE) +STUB("DSJG9i4eHQg", _ZNK3sce2Np9CppWebApi6Common6VectorIdEixEm) +STUB("DSMAvC7D5q8", _ZN8meta_gen11MsvPromoter22convISO639_2_TToStringEt) STUB("DSOLCrc3Kh8", sceCameraGetDeviceConfig) +STUB("DSPFZhy+nVg", _ZN3sce2Np9CppWebApi14SessionManager2V113FriendFactory7destroyEPNS3_6FriendE) +STUB("DSTJsRjpDeg", JSClassCreate) STUB("DSTergmOvvE", sceVrTracker2CheckDeviceIsInsidePlayAreaBoundary) +STUB( + "DSW+Iyqyx88", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE7popBackEv) +STUB( + "DSb51YJKRYA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEppEv) +STUB("DSbI7WKbKHI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEE5resetEPS6_) +STUB("DSfHnKqdbCU", _ZN7WebCore9HTMLNames11colspanAttrE) +STUB( + "DSgpd9Coqc8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEdeEv) STUB("DSh3EXpqAQ4", sceNpTrophyIntDestroyHandle) +STUB("DSi4KyusDpI", _ZNSt9basic_iosIcSt11char_traitsIcEEC1Ev) +STUB( + "DSmtqvqw9mw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEE7add_refEv) +STUB("DSnq6xesUo8", _ZGVNSt20_Future_error_objectIiE14_Future_objectE) +STUB( + "DSo6tS2OAos", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEEptEv) +STUB("DSpQOXEYCbU", Java_sun_awt_GnmUtils_waitFlipEvent) +STUB("DSxqLOTVyEE", Java_java_util_zip_ZipFile_getCSize) +STUB("DSyWpg52hj4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEED2Ev) +STUB("DSyXgNlQVHE", _ZN3sce2Np9CppWebApi7Matches2V113ErrorResponse8fromJsonERKNS_4Json5ValueE) +STUB( + "DT+SaF83Tr0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEED1Ev) +STUB( + "DT1XknAZdds", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEeqERKS9_) +STUB( + "DT2LMTWUsKg", + _ZN3sce2Np9CppWebApi14SessionManager2V127RequestPlayerSessionFactory7destroyEPNS3_20RequestPlayerSessionE) +STUB( + "DT39dZn0J+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEEC1Ev) +STUB( + "DTAQaEQPc0M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("DTAUj8F85Zc", mono_aot_I18Nunwind_info) +STUB("DTAuKszh240", _ZN7WebCore9HTMLNames7altAttrE) +STUB( + "DTH1zTBrOO8", + _ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE7_GetcatEPPKNSt6locale5facetEPKS5_) +STUB( + "DTMUx+nluxQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToSendPlayerSessionMessage55getpostPlayerSessionsSessionIdSessionMessageRequestBodyEv) +STUB("DTTrQJRdCQ4", _ZN9Inspector14InjectedScript19clearExceptionValueEv) +STUB( + "DTYxbQdtj9I", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEeqERKS9_) +STUB("DTdRfuePDrA", _ZN3JSC11createErrorEPNS_9ExecStateENS_9ErrorTypeERKN3WTF6StringE) +STUB( + "DTdpnRZrI-U", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer16unsetserviceNameEv) +STUB( + "DTe15BBYXDs", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_18GameCustomDataItemENS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv) +STUB( + "DTgM1Lvq98k", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi42ParameterToPutGameSessionsSearchAttributesaSERS5_) +STUB( + "DTk9V+0ZPV8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEplEm) +STUB("DTlGa9Kcqws", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEEeqERKS7_) +STUB("DTo2eFghF+k", ulocdata_open_67) +STUB("DTrtyZWzPFM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEptEv) +STUB("DTtZOgB6qzc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEED1Ev) +STUB( + "DTtmuxWuCOs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEC1EPS8_) +STUB("DTx1RAvJENo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE5emptyEv) +STUB( + "DTyjPsI5TAE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEC2EPKS8_) +STUB("DU1GbhkawsE", mono_gc_out_of_memory) +STUB( + "DU1gg8YYJCs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEppEv) +STUB("DU2LPrXa1-k", _ZN7WebCore11DisplayList18DrawFocusRingRectsD1Ev) +STUB("DU4OTGUDVtI", _ZN3sce7Toolkit2NP15AppSTLAllocatorISbIcSt11char_traitsIcENS2_IcEEEEeqERKS7_) +STUB("DUF5lHKpf6o", WKPopupMenuItemIsEnabled) +STUB("DUFkuflD2aY", WKBundleRangeHandleCopySnapshotWithOptions) STUB("DUHzVPNlugg", sceNpStrParseHex) +STUB("DUIF+u2eAeU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEE3getEv) +STUB( + "DUMu7pGYFto", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEE7get_refEv) STUB("DUWhxkyVPj4", sceShareUtilityTerminate) +STUB("DUeAr7H-GOc", mono_vtable_get_static_field_data) +STUB("DUi-KTzBAyY", mono_aot_Sce_Vsh_CloudClientplt_end) +STUB( + "DUmqn3S4XS4", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities20ErrorResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS6_12IntrusivePtrINS4_13ErrorResponseEEE) +STUB("DUryOTZ-MZE", il2cpp_gchandle_new_weakref) +STUB("DUwSS3OMOiw", _ZNK7WebCore12SharedBuffer11getSomeDataEm) +STUB("DUz3cbjHnoc", mono_aot_Sce_Vsh_SessionInvitationplt_end) +STUB( + "DV07MO-fURw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEC1Ev) +STUB("DV2AdZFFEh8", _Cnd_register_at_thread_exit) +STUB("DV5fZOOB8Xg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE8capacityEv) +STUB( + "DV6TMQnQeyA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEptEv) +STUB("DV8b-N1ytwc", rgctx_fetch_trampoline_rgctx_106) STUB("DVAUSbVTZnU", sceSpNetResolverGetError) STUB("DVCQW9o+ki0", sceUsbdSetInterfaceAltSetting) +STUB("DVHMNgx5UyI", __asan_store16) +STUB("DVLgvKIkO4w", Java_org_havi_ui_HFontCapabilities_pGetSupportedCharacterRanges) +STUB("DVOaFql8qLY", utf8_appendCharSafeBody_59) +STUB( + "DVOekzO4NZ0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEE11get_deleterEv) STUB("DVTn+iMSpBM", sceAudioInVmicCreate) +STUB( + "DVVlAlv-sbE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "DVWEsmHx13U", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetInteger6Ev) +STUB("DVZmEd0ipSg", _FXp_movx) +STUB("DVaz5-hI7Qc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEE11get_deleterEv) +STUB( + "DVbx8PozzrQ", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot8getgroupEv) +STUB("DVeoAh0xG6w", + _ZNK7WebCore20ScrollingCoordinator25scrollableContainerNodeIDERKNS_12RenderObjectE) +STUB( + "DVfwTk4AZqM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEC1EPS8_) +STUB( + "DVm-WC616tc", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeader10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_40PutPlayerSessionsNonPsnLeaderRequestBodyEEE) +STUB("DVpuQTSeEfM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEC1ERKS7_) +STUB("DVq1Uvd+XxQ", + _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse22matchEndTimestampIsSetEv) +STUB( + "DVqpN8zCZWo", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("DVy01ZMv0OQ", _ZN3sce7Toolkit2NP2V210Tournament27TeamVsTeamTournamentDetails8deepCopyERKS4_) +STUB( + "DW1fCLHEE44", + _ZN9Inspector20DOMBackendDispatcher18insertAdjacentHTMLElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "DW2SYLojlmA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEC1ERKS7_) +STUB("DW8653aEx5g", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16TrophyPackTrophyEEC2Ev) +STUB("DWBP7THhblo", Java_java_net_InetAddressImplFactory_isIPv6Supported) +STUB( + "DWCwZfHeHQI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEED1Ev) +STUB("DWF4tgsgXj0", vzone_getDynamicClassID_67) +STUB("DWHVNw+q-ag", rgctx_fetch_trampoline_rgctx_95) +STUB("DWJep6U-MYQ", + _ZN15AbstractStorage13TwitterFolder13RemoveContentERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("DWMcG8yogkY", _ZSt8_XLgammaf) +STUB( + "DWN6mKqkOqU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEC1ERS7_) +STUB("DWNSBXMqW64", _ZN3JSC12HeapVerifier15checkIfRecordedEm) +STUB( + "DWTFS41QZ54", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEaSERS7_) STUB("DWVv0MlE1sw", sceShellCoreUtilTickHeartBeat) +STUB("DWWNTz7HFiA", _ZN3JSC17DeferredWorkTimerD0Ev) STUB("DWWW02MbKdk", sceNpBandwidthTestDownloadOnlyInitStart) +STUB("DWWuQ5mOn24", _ZN3JSC2VM20proxyRevokeSpaceSlowEv) +STUB("DWY1jnsgOQI", EC_POINT_point2oct) +STUB("DWbJC3dV0OY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEC1ERS7_) +STUB("DWdEQvQvQxs", WKPageRunJavaScriptInMainFrameAndReturnString) +STUB( + "DWqskzo+8ig", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE10setContextEPNS2_10LibContextE) +STUB("DWsUjyLWhLo", _ZN7WebCore9HTMLNames9rulesAttrE) STUB("DWzAHSX9KW8", sceLibreSslInit) STUB("DX1JP95j3Gg", sceFiosOpReschedule) +STUB("DX6WEfxBWNM", _ZN3sce7Toolkit2NP2V210Tournament5EventC2ERKS4_) +STUB("DX8eYOK5CZQ", usearch_close_67) +STUB( + "DXFKfaLaBHo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEmmEi) +STUB("DXJAxIde0V0", _ZN7WebCore28BackingStoreBackendCairoImplD0Ev) +STUB("DXO5KLWzySM", _ZN3JSC2VM18int8ArraySpaceSlowEv) +STUB("DXQ-iiRMN4g", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEE11get_deleterEv) +STUB( + "DXWRiRBZlJU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "DXbNX-FXWl4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEneERKS9_) +STUB("DXcZsaBCf9E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEaSERKS9_) +STUB("DXdvy5xNlE4", _ZN7WebCore11MediaPlayer21setShouldDisableSleepEb) +STUB( + "DXiQOXLshvg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE21intrusive_ptr_add_refEPS9_) STUB("DXigwIBTjWE", sceNpTusGetFriendsDataStatus) +STUB("DXk-FP-Qw7Y", _ZN3JSC2VM19uint8ArraySpaceSlowEv) +STUB("DXlC3IrK2Ts", _ZN3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponse9getBlocksEv) STUB("DXlobplVYj0", sceVideodec2InitLibrary) +STUB( + "DXluNItmW8U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEaSERS7_) STUB("DXmgc5op8Yw", sceAmprMeasureCommandSizeReadFileGatherScatter) +STUB("DXnCHRSEEE0", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEEptEv) +STUB("DXnu4p828lM", mono_metadata_decode_row) +STUB( + "DXoZaroe2Tk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEEaSERKSA_) +STUB("DXqOIg6G+L4", _ZN7WebCore9FrameView20removeScrollableAreaEPNS_14ScrollableAreaE) +STUB("DXrpKIcAdv4", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEEppEi) +STUB("DXvKtIXioPY", WKDatabaseManagerGetDatabaseDetailsDisplayNameKey) +STUB("DXxrgqkQ8ac", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE3endEv) +STUB( + "DXz6wGd0phs", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSession12setsessionIdEPKc) +STUB( + "DXzCnHAbgjI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "DY035VcSgDs", + _ZN3sce2Np9CppWebApi14SessionManager2V119NonPsnLeaderFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_12NonPsnLeaderEEE) +STUB("DY7yTh8tqiI", _ZN7WebCore14MicrotaskQueueD1Ev) +STUB( + "DY8MiYDUBJE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEppEv) STUB("DYAC6JUeZvM", sceGnmSqttGetTraceWptr) +STUB( + "DYFaGNHXDBU", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayerC1Ev) +STUB( + "DYIA3NdSPHo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEEdeEv) +STUB( + "DYMybKpzOG0", + _ZN3sce2Np9CppWebApi11UserProfile2V131GetPublicProfileResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_24GetPublicProfileResponseEEE) +STUB("DYSZsQOCF4Y", mono_aot_Sce_Vsh_Sl2_NativeQueueClientunbox_trampoline_addresses) +STUB("DYamMikEv2M", _Wctrans) +STUB("DYbCnv1ns8U", posix_name) +STUB("DYbLD-s1oiQ", FTC_Manager_New) +STUB("DYcMsG69kBo", _ZNK3WTF10StringView16GraphemeClusters8IteratoreqERKS2_) STUB("DYdXC4Ixa4s", sceFaceDetectionGetWorkingMemorySize) STUB("DYhhWbJSeRg", sceVideoOutColorSettingsSetGamma_) +STUB( + "DYiVeZF5HkU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEeqERKS9_) +STUB("DYiuLw4hOAs", _ZN3sce7Toolkit2NP28GameCustomDataUseFlagRequestC2Ev) +STUB("DYivN1nO-JQ", getcwd) +STUB("DYjXSQpmafc", _ZN3sce3Xml3Dom8Document16setAttributeListENS1_6NodeIdEPKNS0_13AttributeListE) +STUB("DYmV8jYoonY", _ZN7WebCore11MathMLNames11mencloseTagE) +STUB("DYn-3XJV-VE", _Z38sceGpuDebuggerSetEnabledExceptionsMaskPN3sce3Gnm16VsStageRegistersEj) +STUB("DYn6EjpB5-A", + _ZN7WebCore21JSCSSStyleDeclaration22visitOutputConstraintsEPN3JSC6JSCellERNS1_11SlotVisitorE) +STUB( + "DYowyhV3gYo", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V19RatingApi21ParameterToPostRating10initializeEPNS1_6Common10LibContextENS6_12IntrusivePtrINS3_6RatingEEE) +STUB("DYsGuyxpPUE", _ZN3JSC15ArrayBufferViewD1Ev) +STUB("DYyn+5XPlT0", _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEEC1Ev) +STUB( + "DZ0AL6QT9Pw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEE7get_refEv) +STUB("DZ4+wcCVZCY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEEC2Ev) +STUB( + "DZ5OsNOsHpk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEE7add_refEv) +STUB("DZ8Zj-5bC38", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEC1ERS7_) +STUB( + "DZ8bKtOKmsI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEC2Ev) +STUB("DZ9z+onj7Jk", DSA_get0_pqg) STUB("DZAoScKrRVs", sceMusicCoreServerGetPlayStatus) +STUB("DZBfePfwL4M", utext_openReplaceable) +STUB("DZCr76xhebs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEED2Ev) +STUB( + "DZCwcaJDJao", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("DZF93h86bFk", _ZN9Inspector18InspectorHeapAgentnwEmPv) +STUB("DZHjJ7f77Xw", mono_file_map_size) +STUB("DZId6VHoc1k", ucurr_getRoundingIncrementForUsage) +STUB("DZIjWI34Wg0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEEC1EPS6_) +STUB("DZO+TYEjuHs", internal_realloc) STUB("DZQSHdxdMb8", sceNpGriefReportWriteGroupMessageFile) +STUB( + "DZTGCw2Bpi4", + _ZN7WebCore14FrameSelection6modifyENS0_11EAlterationENS_18SelectionDirectionENS_15TextGranularityENS_14EUserTriggeredE) +STUB("DZU+K1wozGI", nanf) +STUB( + "DZVm+Cr-uB4", + _ZN3sce7Toolkit2NP2V28Commerce13getCategoriesERKNS3_7Request13GetCategoriesEPNS2_4Core8ResponseINS3_10CategoriesEEE) +STUB("DZWUbu8315k", _ZN3JSC19HeapSnapshotBuilderC2ERNS_12HeapProfilerE) +STUB("DZa4zziRweM", rgctx_fetch_trampoline_mrgctx_29) +STUB( + "DZaCL+NWLBo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB( + "DZf1KcP78ew", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEC2ERS7_) +STUB("DZhZwYkJDCE", _ZTIN10__cxxabiv120__function_type_infoE) +STUB( + "DZka0Ic1ub0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEEaSERKSA_) +STUB( + "DZlu+2I9ZE0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("DZnvMvmrAzs", mono_aot_Sce_Vsh_GriefReportjit_code_end) STUB("DZvLrOrRi14", sceBackupRestoreUtilBackupData) +STUB("DZzXHBYmlw0", WKURLCopyPath) +STUB("Da0OiEp6X68", _ZN7bmalloc11AllIsoHeaps4headEv) +STUB("Da6x253v+8Q", _ZNK3WTF7SecondsmiENS_8WallTimeE) +STUB("DaAF69v-zdc", _ZN3JSC7Symbols35regExpProtoUnicodeGetterPrivateNameE) +STUB("DaAUUF+1JfU", mono_runtime_run_main) +STUB("DaBdguwimxA", _ZN7WebCore6Path2DD0Ev) +STUB( + "DaDYjRAkrmY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEC2EPS8_) +STUB("DaEhAeokHd8", __tsan_atomic64_load) +STUB( + "DaJiUtrSu1k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEC1Ev) +STUB("DaQ7xqgiGgY", mono_images_cleanup) +STUB("DaQgwFzvJbs", mono_aot_System_Numericsjit_code_start) +STUB("DaYYQBc+SY8", _ZTISt7_MpunctIwE) +STUB("DaYfJlkP-0k", _ZNK7WebCore16TrackPrivateBase2idEv) +STUB( + "DacJqcYretQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEppEv) +STUB("DahGtlwCuaw", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product12getPublisherEv) +STUB( + "DakJL5-DwF0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE8pushBackERKS8_) +STUB("Dal5tHOLXIM", _ZN7WebCore11MediaPlayer15nextMediaEngineEPKNS_18MediaPlayerFactoryE) +STUB("Dalu6YqR7Gw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEE5resetEPS6_) +STUB( + "DanSQ1MxoPU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEEC1ERKSA_) +STUB( + "DazJqrEJ3ww", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEC1EPKS8_) +STUB("DazasauPTPE", _ZNK7WebCore21NetworkStorageSession26getAllStorageAccessEntriesEv) +STUB("Db2K8M0KqP8", _ZNK7WebCore23ScaleTransformOperationeqERKNS_18TransformOperationE) STUB("Db6G2wnBgp0", sceAudiodReportOutput) +STUB("Db6LgF9YAqs", qonef) +STUB("Db6xmY7At2g", _ZN9JITBridge12waitDoorbellEi) +STUB("Db8ktuueI7E", mono_aot_Sce_PlayStation_PUIjit_got) +STUB("Db8y2+U9MxA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEmmEi) +STUB("Db9BXuiZ4GI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEE7get_refEv) +STUB( + "DbAAhSiebN4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEC2Ev) +STUB("DbEnA+MnVIw", _Towctrans) +STUB( + "DbGqCNPV62Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE5beginEv) +STUB( + "DbHpV51r+w8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("DbKM0BaSfOI", mono_debugger_agent_register_transport) +STUB( + "DbPKXAKkdPA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE21intrusive_ptr_sub_refEPS9_) +STUB("DbPwNqSrU9E", mono_aot_Sce_Vsh_Np_Trophyjit_got) +STUB( + "DbQ6Ah3UJ9Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEEC1ERKS8_) +STUB("DbUZH7fs1Pw", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V15ErrorC2EPNS1_6Common10LibContextE) +STUB( + "DbVilBDidd8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEppEv) +STUB( + "DbY7ydudUUI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE4sizeEv) +STUB( + "DbbH-5gYqeM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEEC2ERS9_) STUB("Dbbkj6YHWdo", sceCoredumpWriteUserData) +STUB("DbcAZrdDKoc", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4DataEEC1Ev) STUB("Dbd5BY0QjG0", sceNpLookupNetTerm) +STUB("Dbe23izGT8U", + _ZN7WebCore24GraphicsContextImplCairo13createFactoryERNS_20PlatformContextCairoE) +STUB("DbhfEFLVQO4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEE7get_refEv) +STUB( + "DbkPzqPL0-s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEixEm) +STUB( + "DbniytjLR4E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "DbxzJaUsPVU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEppEv) +STUB( + "Dbylzw7+h+4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEaSERS7_) +STUB("DbympYJIrV4", _ZN3JSC22FullGCActivityCallback9deathRateEv) +STUB( + "Dc-AE2PjeVg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB( + "Dc2qitFgjFY", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEiRNS2_10LibContextEPT_m) +STUB("Dc4ZMWmPMl8", _ZNSt22_System_error_categoryD0Ev) +STUB("Dc6914UBMH8", + _ZN3sce2Np9CppWebApi14IdentityMapper2V342PsnWebError_error_validationConstraintInfoD1Ev) +STUB( + "Dc9w6uH2d1k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEED1Ev) +STUB("DcFet+cY8jU", mono_lls_remove) +STUB( + "DcO303praDY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "DcP5vGNGU1o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEEcvbEv) +STUB("DcbaEZDLHeg", _ZN7WebCore9HTMLNames7topAttrE) +STUB("DceITXrEqMI", SpeechSpeak) +STUB( + "Dcih7q8mSWE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEEC2ERKSA_) +STUB( + "DcmIYBiy2a8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEED2Ev) +STUB("DcrJr531A4w", hb_buffer_guess_segment_properties) +STUB("Dcu5h6UKIKE", _ZNK9Inspector19InspectorAuditAgent14hasActiveAuditEv) +STUB( + "Dcw6epsQFX4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEC2EPS6_PNS2_10LibContextE) +STUB("DcyNB8BFugE", _ZN7WebCore19InspectorController14setIsUnderTestEb) +STUB("Dcze1nqtPC8", UI_method_get_writer) +STUB("Dd0BhN-hX5A", _ZN3sce2Np9CppWebApi13InGameCatalog2V517ContentDescriptor8unsetUrlEv) STUB("Dd9-iAuMyis", sceDtsEncDeleteEncoder) +STUB("DdCXCm0lsD0", mono_aot_System_IO_Compression_FileSystemjit_got) +STUB( + "DdCb69iibGw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEE5resetEPS9_) +STUB("DdD8hWNsUSc", AacsModuleInit) +STUB("DdI943QWaTE", WKPreferencesSetIncrementalRenderingSuppressionTimeout) STUB("DdJvHNduw2M", sceVideoCoreInterfaceCreateCanvasContext) +STUB("DdRr-+gIzrU", _ZN3WTF8JSONImpl10ObjectBase10setBooleanERKNS_6StringEb) +STUB("DdWuolqEQ+k", mono_gc_reference_queue_add) +STUB("DdXO3SO-EHE", ubidi_isMirrored_67) STUB("DdkOIlDT5vs", sceMoveSetExtensionPortOutput) STUB("DdomLktL5+M", sceDepthValidateCurrentCalibrationData) +STUB( + "DdqYemx8ll4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEEcvbEv) STUB("Ddwk4gLT5j0", sceAgcDriverIsCaptureInProgress) +STUB( + "DdyX55Nn0oc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEC2EPKS8_) +STUB("DdzWPWQi6C0", _ZN3sce2np10JsonObjectC2EP14SceNpAllocator) +STUB( + "DeAT2BPn-4s", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions35setxPSNSESSIONMANAGERNONPSNCALLERIDEPKc) +STUB( + "DeDgYjO4PmE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("DeEm1ZFv74U", _ZN12video_parser13cVideoPathMgv17GetOldMaclistNameEPc) +STUB("DeFsyDHokeY", + _ZNK3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody18maxScoreLimitIsSetEv) +STUB("DeGiG9LjNOo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE5emptyEv) +STUB( + "DeM-5Y5saj0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEE7add_refEv) +STUB( + "DeOYGXQnCyk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEE7add_refEv) +STUB("DeToQFef2dA", _ZN7WebCore9FrameView27positionForRootContentLayerERKNS_10FloatPointES3_ff) +STUB( + "DeVJrTjOUNk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEED1Ev) +STUB("DeWNwNoFO-A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEE7add_refEv) +STUB( + "DeWzzRjlD1E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEEC2EPS8_PNS2_10LibContextE) +STUB("DeZTTtDscBY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEEC1EPKS6_) +STUB( + "DeduXk4fvso", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEEC1ERKSA_) +STUB( + "DedxVUwYeRA", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions30unsetxPsnAcceptPlatformNamePs5Ev) +STUB("Def7PTK8QRM", mono_method_get_flags) +STUB( + "DeiMDddqu0k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("DekmG75HsNQ", _ZN7WebCore6Editor26increaseSelectionListLevelEv) +STUB( + "Dem2rlK8vtk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEC2ERS7_) STUB("DembpCGx9DU", sceUserServiceGetPbtcSaturdayDuration) +STUB( + "DepuBg8Ixwg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEED1Ev) STUB("DeqX7jLWt1A", sceDebugGetWaitingListOfUltMutex) STUB("DeucnsfJpqo", sceAvSettingCallbackFuncsInitForLnc) +STUB("DevDN3kRJnw", _ZN3JSC2VM28callbackConstructorSpaceSlowEv) +STUB( + "DevS6lecFGw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEE7add_refEv) +STUB( + "Df-urkj7z-0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEED2Ev) +STUB("Df1BO64nU-k", _Xtime_diff_to_ts) +STUB( + "Df4iPAY1XbU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEED2Ev) +STUB("Df8IB4AqBsA", _ZN3sce7Toolkit2NP2V29Challenge13ChallengeDataaSERKS4_) +STUB( + "DfBwX81QUqA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEE11release_refEv) STUB("DfD47ZODK8Y", sceApplicationGetCoredumpState) +STUB("DfF-Hdld5XA", _ZNK7WebCore4Path12elementCountEv) +STUB("DfI1tgRALh4", _ZN7WebCore9HTMLNames9styleAttrE) +STUB("DfPN7DYpgWA", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEEC1Ev) STUB("DfSCDRA3EjY", sceNpCommerceDialogOpen) +STUB("DfVFFiR2j2M", _ZN22MmsMdCommonFsOperation18CreateBufferOptionC1Ev) +STUB("DfVOIx22EDw", _ZN7WebCore9HTMLNames6xmpTagE) +STUB("DfW2Xv8kTP4", _ZThn8_N6WebKit17ChildProcessProxyD0Ev) +STUB( + "DfX58gQrncM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEmmEv) +STUB("DfZB2uu86Gw", _ZN7WebCore14SQLiteDatabase27turnOnIncrementalAutoVacuumEv) +STUB( + "DfafhdwOwXg", + _ZN7WebCore26PresentationOrderSampleMap43findSampleContainingOrAfterPresentationTimeERKN3WTF9MediaTimeE) +STUB( + "DfbmMawJHys", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE8capacityEv) +STUB("Dfdbc8trvZg", curl_multi_strerror) +STUB("DfiaT0acYUA", _ZN7WebCore12ChromeClient31imageOrMediaDocumentSizeChangedERKNS_7IntSizeE) STUB("DfivPArhucg", memcmp) +STUB("Dfizi+q0qYE", access_reg) +STUB("DfjV2RV2YtM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEptEv) +STUB( + "Dfkt9itEz+w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEED2Ev) +STUB( + "DfqL3COh2HY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEmmEv) +STUB("Dfuj-HVYmM8", rgctx_fetch_trampoline_rgctx_10) STUB("Dfwp-U1OfRI", sceFiosArchiveSetDecompressorThreadCount) +STUB("DfzMrc+9P1g", _ZNK3sce2Np9CppWebApi7Matches2V117ResponseMatchTeam9getTeamIdEv) +STUB("Dg05dR7Cut0", _ZN7bmalloc11IsoTLSEntrydlEPv) +STUB( + "Dg0qHAslaTA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "Dg1tvKujqVE", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB("Dg2kbssOe-g", _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRankingC1ERS5_) +STUB( + "Dg5V5PYue44", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEEaSERSA_) +STUB( + "Dg5icfKSd5Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEeqERKS9_) +STUB("Dg6MPQ7C2Vc", _ZN7WebCore17HTMLSelectElement6removeEi) +STUB("Dg8GX+KK7TY", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities13ErrorResponseC2EPNS1_6Common10LibContextE) +STUB( + "Dg8yRSxkpTI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEptEv) STUB("DgE6sgTBCqU", sceShareFactoryUtilGetLaunchStatus) STUB("DgEvomXMtAM", sceGnmSysOpen) +STUB( + "DgK2cwVvMos", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEptEv) +STUB("DgOXxr1ZN8A", _ZN7WebCore7Element9outerTextEv) +STUB( + "DgWGK1NIGpY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEEC2ERKSA_) STUB("DgZmOeBXM+c", sceIduUtilSetMoveMode) +STUB( + "DgdTJRyGEHo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEC2Ev) +STUB("DghzFjzLqaE", _ZTSDi) +STUB( + "DgkUB-PEgC4", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUserD2Ev) STUB("DgpRToHWN40", sceNpTusGetMultiSlotDataStatusForCrossSave) +STUB( + "Dh47umxKhTs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEeqERKS9_) +STUB("Dh4BmUzUIzI", _ZN12video_parser10cVideoPath13sNetProtocolsE) +STUB( + "Dh4e1oGrOvk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "DhB4pfYPWrs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "DhIYNfXB5Vg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "DhNZblSiClw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB( + "DhOq7Ks23EA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE5beginEv) +STUB( + "DhQ+Ew7e4Pg", + _ZN3sce2Np9CppWebApi14SessionManager2V137ResponsePlayerSessionSpectatorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_30ResponsePlayerSessionSpectatorEEE) STUB("DhTavziiZ80", sceKeyboardDisconnectDevice) +STUB( + "DhTjWwepv6I", + _ZN3WTF14FileSystemImpl14MappedFileData13mapFileHandleEiNS0_12FileOpenModeENS0_14MappedFileModeE) +STUB( + "DhUc5jPXKfU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEdeEv) +STUB( + "DhXTD5eM7LQ", + _ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_bRSt8ios_baseRNSt5_IosbIiE8_IostateERSbIwS2_SaIwEE) +STUB( + "DhYpda+yUI8", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_9Animation17PlaybackDirectionEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB( + "DhZuVc7Uqjo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEC2ERKS7_) +STUB("Dhd5HNKSiME", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V510AnnotationEEdeEv) +STUB("DheEaRbGppg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEC2ERS7_) +STUB( + "DhlMRns11E8", + _ZN9Inspector24RuntimeBackendDispatcher19disableTypeProfilerElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) STUB("DhqqFiBU+6g", sceCameraAudioOpen) +STUB("Dhs9LkoqV8Y", _ZN7WebCore16BlobRegistryImplnwEm) STUB("DhtKelVAIaA", sceCompositorSetGnmContextCommand) +STUB( + "DhvtjyeDuQY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEED1Ev) +STUB("DhyTyaZbGfQ", _ZNK3JSC6JSCell9getStringEPNS_14JSGlobalObjectE) STUB("Di05lHWmCLU", sceUserServiceSetGlsCameraChromaKeyLevel) +STUB( + "Di0l6jHiGq8", + _ZN3sce2Np9CppWebApi14SessionManager2V134PostGameSessionsSearchResponseBody17unsetGameSessionsEv) +STUB( + "Di3rBc+FWbQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE8pushBackERKS9_) +STUB("Di4s6zsQIH4", _ZN3sce7Toolkit2NP2V24Core12ResponseBaseC1Ev) +STUB( + "Di7vWgPZYIg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEneERKS9_) +STUB( + "DiACMWzgXvk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEC2Ev) +STUB("DiAiAYviceQ", _ZNK23sceMetadataReaderWriter8Metadata14checkReadFieldEiRS0_S1_) +STUB("DiBmbfiH8J4", curl_easy_setopt) +STUB( + "DiF8sDA9cgc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE5clearEv) +STUB("DiGVep5yB5w", _ZSt13_Execute_onceRSt9once_flagPFiPvS1_PS1_ES1_) +STUB("DiHxx2k5zfM", _ZN3sce2np10JsonObject5ClearEv) +STUB( + "DiIAStC2uBI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEptEv) +STUB("DiJ0KH4GHZo", _ZNSs7replaceEmmRKSsmm) +STUB("DiMNwdYc2Yg", _ZN3WTF20tryFastAlignedMallocEmm) +STUB("DiU7SdKBUsw", _ZN3sce7Toolkit2NP2V210Tournament12EventDetailsaSERKS4_) STUB("DiUk6-mq--0", sceNpLookupNetInitWithFunctionPointer) +STUB( + "DiZKAJHAkYA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) STUB("DicBhsm2iR4", sceNpSessionSignalingGetConnectionFromPeerAddress2) +STUB( + "DidaTUwPH0o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEEC2ERKSA_) +STUB( + "DiiuIGdBFAU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("Dij6Sj04Kwc", YGConfigSetExperimentalFeatureEnabled) +STUB( + "DimSfeukMyY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) STUB("Dinob0yMRl8", sceVoicePausePortAll) +STUB( + "Dinz9rnAyzA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUser9terminateEv) +STUB("DirnOdl+1Ts", mono_aot_Sce_Vsh_Sl2_NativeQueueClientunbox_trampolines_end) +STUB("Dit0kQ9-10M", mono_aot_Sce_Vsh_LncUtilWrapperunbox_trampoline_addresses) +STUB("Dj-xKPlfsd8", _ZN3JSC15RegExpPrototype13visitChildrenEPNS_6JSCellERNS_11SlotVisitorE) +STUB("Dj25vyu+NB8", rgctx_fetch_trampoline_mrgctx_43_p) +STUB( + "Dj2WuKEtKsw", + _ZN15AbstractStorage12LocalService18append_storagelistERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) +STUB( + "Dj4D99OR4L8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE10setContextEPNS2_10LibContextE) +STUB( + "DjDSzEsJvXc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEC1EPS8_) +STUB("DjIeXX2OOtM", + _ZN3sce7Toolkit2NP10ParametersC1EPFvRKNS1_5EventEEPvmPNS1_19AllocImplementationE) +STUB( + "DjJC+YcvFl4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "DjL5H7Xhic8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEE11release_refEv) +STUB( + "DjLV+hFQWuQ", + _ZN3sce2Np9CppWebApi14SessionManager2V150GetUsersAccountIdPlayerSessionsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_31JoinedPlayerSessionWithPlatformEEEEEPNS9_INS3_43GetUsersAccountIdPlayerSessionsResponseBodyEEE) +STUB("DjLpZIMEkks", _ZGVNSt14_Error_objectsIiE15_Generic_objectE) +STUB("DjQzK3OnWAE", _ZN7WebCore7JSRange14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB( + "DjRlJ+2iJz0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB("DjWf03qkdoY", _ZNK7WebCore11MediaPlayer17doesHaveAttributeERKN3WTF10AtomStringEPS2_) +STUB("Djc6lP7YppU", _ZNK7WebCore14SecurityOrigin12isolatedCopyEv) +STUB("DjcXlH7kBr0", _ZTVN9Inspector24BrowserBackendDispatcherE) +STUB( + "Djhsz48bUMo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) STUB("DjibZOK00TU", sceOpusDecDecodeFloatWithPriority) +STUB( + "DjlVPuUjR70", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEEdeEv) +STUB("DjmYAd8gHII", Java_java_net_PlainDatagramSocketImpl_dataAvailable) +STUB("DjoD4C1cLw0", + _ZN3sce2Np9CppWebApi13InGameCatalog2V520ContainerRatingCount8fromJsonERKNS_4Json5ValueE) STUB("DjpBvGlaWbQ", scePthreadSemGetvalue) +STUB("DjrwV-4o+wI", mono_property_hash_new) STUB("Djuj2+1VNL0", sceNpTusGetMultiUserVariableForCrossSaveVUser) STUB("DjuqqqV08Nk", sceNetCtlSetStunWithPaddingFlagIpcInt) +STUB( + "DjxO2KeXrfc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("Dk+ztXE9tgk", _ZN3NTF3URL5parseEv) STUB("Dk6FC-TI+7Q", scePthreadAttrSetsolosched) +STUB("DkAGX6EPi+g", _ZN15AbstractStorage12SerializableD1Ev) +STUB( + "DkGWMLAJUB4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEEcvbEv) STUB("DkN+WBclFps", sceNpPushInit) STUB("DkNebxmJyVI", sceKernelMsync) +STUB("DkQVriP9PA4", _ZN7WebCore11DisplayList14DrawingContext8recorderEv) +STUB( + "DkUCxaryAfU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE7reserveEi) +STUB( + "DkYfIk955L4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEED2Ev) +STUB( + "DkZPh6p3prA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEE7get_refEv) +STUB("DkbeDmA72zo", __asan_exp_load2) +STUB( + "DkcIL5N9tQU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEEC1Ev) +STUB("Dkk29mw5RF4", _ZN15AbstractStorage13TwitterFolderD0Ev) +STUB("Dkk5NiuWv5M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEEC1ERKS7_) +STUB("DkkJVxRX2g0", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku18setPlusUpsellPriceERKi) STUB("Dkm5qe8j3XE", sceUsbdGetConfigDescriptor) +STUB("DkoMmMauDtk", mono_aot_Mono_Securityunbox_trampolines_end) +STUB("DkoWPvryJsg", _ZN3NTF8finalizeEv) STUB("Dkpw9X-HSVA", sceNpAsmGetRelatedGameNpTitleIds) +STUB("Dkpxj1EiWBA", mono_aot_Sce_PlayStation_BclExtensionsplt_end) +STUB("DkvHOe+O9w0", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging25GameDataMessageAttachmentEED2Ev) +STUB( + "DkxbVWwM5YQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE7popBackEv) +STUB("Dl+ugVvEVXY", jpeg_new_colormap) +STUB("Dl1fPoihXYA", mono_aot_ReactNative_Debug_DevSupportunbox_trampolines) +STUB("Dl4hxL59YF4", _ZNSt9_Num_base14max_exponent10E) +STUB( + "DlBfQB6n8wM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEE5resetEPS9_) STUB("DlCg0QhcgYQ", scePthreadRegisterThreadDeathHook) +STUB("DlDsyX+XsoA", _ZNSt8messagesIwEC2EPKcm) +STUB("DlFczkFKBwM", _ZN3sce7Toolkit2NP2V28Matching7Request10CreateRoom23MIN_SESSION_INDEX_VALUEE) +STUB("DlMXPZR3BeU", _ZThn16_N9Inspector22InspectorDebuggerAgent11didContinueEv) +STUB( + "DlPlanfpAh4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEneERKS9_) +STUB("DlQzS+ULk7c", _ZN3WTF14FileSystemImpl15unmapViewOfFileEPvm) +STUB( + "DlTANVRX3Jc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEppEv) +STUB("DlWmn2ZQuWY", _ZN3sce4Json6Object8iteratorppEv) +STUB( + "DldNIxUypH8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEmmEv) +STUB( + "Dlel4rdoMBQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEplEm) +STUB( + "Dlkc5UVVMFA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEEcvbEv) +STUB( + "DlpSfRDDU40", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE3endEv) +STUB( + "DlprvMM+Wi8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE8copyFromERKS9_) +STUB("Dlri33kcH6o", _ZN15AbstractStorage15HttpTransaction4InitEv) +STUB( + "DlxZC4MGtt4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEE11get_deleterEv) +STUB( + "DlyhG0x+7tI", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V113ErrorResponse8setErrorERKNS1_6Common12IntrusivePtrINS3_5ErrorEEE) +STUB( + "Dm0sKFOv6SI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody8fromJsonERKNS_4Json5ValueE) +STUB("Dm3jatUOhno", mono_btls_x509_store_from_store) +STUB("Dm54r75vnd4", _ZN3JSC11ArrayBuffer13createAdoptedEPKvj) STUB("Dm8WJjI6Pks", sceNpUniversalDataSystemIntInitialize) +STUB("Dm9kHKVv-GI", glUniform4uiv) STUB("DmBx8K+jDWw", scePadSetProcessPrivilege) +STUB( + "DmDP0MVi7oE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEC2Ev) +STUB("DmOJ1MfHFrw", _ZNK3WTF13StringBuilder11reifyStringEv) +STUB("DmTIYZfrF1I", _ZN7WebCore7Element16setAttributeNodeERNS_4AttrE) STUB("DmTq6Y8jYqY", sceBackupRestoreUtilTerminate) +STUB("DmUIy7m0cyE", _WStoxflt) +STUB("Dmi4ny+Mmm0", _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_17ParameterBaseImpl6KeySetEEdeEv) STUB("Dmj7m0jmEXQ", sceKernelWaitAIO) +STUB("Dmmzn4Z5OTs", _ZN4Manx5Mutex6unlockEv) +STUB("DmsukTbpoyc", _ZN7WebCore8SVGNames7endAttrE) +STUB("DmubjYoCIsE", _ZN3sce7Toolkit2NP2V26Trophy7Request13SetScreenshot18MAX_NUMBER_TARGETSE) +STUB("DmwlYF-Xoq4", Java_sun_awt_GnmUtils_bdjbgGetAddress) STUB("Dn-DRWi9t54", scePthreadCondattrGetpshared) +STUB("Dn1NY1xs7Zw", glUniform1fv) +STUB( + "Dn2gP0NdzMw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE8capacityEv) +STUB("Dn4hfvMyAFQ", _ZN7WebCore12CSSStyleRule15setSelectorTextERKN3WTF6StringE) STUB("DnC0qZ9h+Ms", sceLoginMgrServerSetMorpheusAssignEnabledFlag) +STUB( + "DnE2Dk7hU8E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEE5resetEPS8_) STUB("DnG4HGO0QZo", sceCesUcsProfileInitEucJpX0208Ss2Ss3) STUB("DnHNoMdjX6s", sceBgftServiceIntPlayGoGetDownloadTaskId) STUB("DnPUsBAe8oI", sceNpMatching2RegisterLobbyMessageCallback) +STUB("DnQZHQhq8u4", _ZN7WebCore11FontCascadeC1ERKNS_16FontPlatformDataENS_17FontSmoothingModeE) +STUB("DnTRTEPXrpI", _Z38VideoPlayerVcs_GetNetworkStateForDebugi) +STUB("DnXatGyC6cw", _ZN7WebCore14JSVoidCallback6createEPN3JSC8JSObjectEPNS_17JSDOMGlobalObjectE) +STUB( + "DnXsIs9B3Gc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE10setContextEPNS2_10LibContextE) +STUB("DnbNi+2KqNc", _ZN7WebCore11PageOverlayD1Ev) +STUB( + "Do+NBa43Fyg", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEEC1ERKSC_) +STUB( + "Do1IgySygDA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE7popBackEv) +STUB("Do3zPpsXj1o", _seekdir) +STUB("Do8AHEUeLkc", JVM_InitializeSocketLibrary) +STUB( + "DoAriDyGOus", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEEC2ERSA_) +STUB("DoDo59wgsXE", jpeg_fdct_8x4) +STUB("DoEzsqQn7qM", _ZN7WebCore23throwNonFiniteTypeErrorERN3JSC9ExecStateERNS0_10ThrowScopeE) +STUB("DoGS21ugIfI", _ZTIm) +STUB( + "DoHA4yrIaSE", + _ZN3sce2Np9CppWebApi11UserProfile2V121PersonalDetailFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_14PersonalDetailEEE) STUB("DoKHmUw1yiQ", sceCoredumpAttachUserMemoryFile) +STUB("DoNVOdqBQ9o", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_20NpSessionInformationEEC2Ev) +STUB( + "DoUT7MvPYhA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToSetMultiVariablesByUserD2Ev) +STUB("DoVa5dq8LBk", + _ZN7WebCore13GraphicsLayer15addChildAtIndexEON3WTF3RefIS0_NS1_13DumbPtrTraitsIS0_EEEEi) +STUB("DoZKbw82vJQ", Java_com_sony_bdjstack_system_BDJModule_prepareTitle__II) STUB("DoZWauG8mu0", sceNpTrophy2GetGroupInfo) +STUB( + "Docpx6UI1F8", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities26GetUsersActivitiesResponse8fromJsonERKNS_4Json5ValueE) STUB("Dog+g25QYjw", sceVrTracker2RegisterDevice) +STUB("DojSTghs5jU", JSGlobalContextSetDebuggerRunLoopWithCurrentRunLoop) STUB("Don67tr+Dkc", sceIduUtilDisablePriorityDownloads) +STUB("DoqNy-ZXJw8", MvpHttpHead) +STUB("DovS4nLxaTw", _ZN9Inspector21InspectorRuntimeAgent18enableTypeProfilerERN3WTF6StringE) +STUB( + "DowkuRBDu1c", + _ZN9Inspector24NetworkBackendDispatcher6createERNS_17BackendDispatcherEPNS_31NetworkBackendDispatcherHandlerE) +STUB("Dowlirg4J24", _ZN3JSC7JSArray4pushEPNS_14JSGlobalObjectENS_7JSValueE) +STUB("Doz8ZuI27Xg", mono_aot_Sce_Vsh_VideoRecordingWrapperjit_code_end) +STUB("Dp-CxfvTwyE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEEdeEv) +STUB("Dp64o6lCLkM", WKAXObjectButtonState) +STUB( + "Dp8SMvKMHqk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEEaSERSA_) +STUB( + "Dp9eeFgeibU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEED0Ev) STUB("DpDnfM6StzA", sceKernelMapTraceMemory) +STUB( + "DpE88uXr-v8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEE7add_refEv) +STUB( + "DpFX8zzj3gQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEmmEv) +STUB("DpHQ8Z9f9SE", _ZN3WTF11Persistence7Decoder14verifyChecksumEv) +STUB( + "DpIbPxnrTSg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEED2Ev) +STUB( + "DpKr+poBojo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEEC1ERKSA_) +STUB("DpQmygHE0Mo", _ZN3sce3Xml3Dom6NodeIdntEv) +STUB( + "DpSItkxcYH4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE8pushBackERKS8_) +STUB( + "DpSib5fPcls", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEC2Ev) +STUB("Dpd4FaSEAkk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEED2Ev) +STUB( + "DpdMFusC6XU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEC1EPKS8_) STUB("DphIqi0q48w", sceVisionManagerGetLibraryVersion) +STUB("DprI+2xue3U", _ZN3sce7Toolkit2NP2V211SharedMedia14CommonMetadata19MAX_LEN_DESCRIPTIONE) +STUB( + "DpzFaQdStJY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEED1Ev) +STUB("Dq5bk2mU2xw", _ZN3WTF4SHA1C2Ev) +STUB( + "Dq6TO-PRshA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEixEm) +STUB( + "DqANfoOh6-g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEE11release_refEv) +STUB("DqCJOD9uGcg", + _ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse11setOnlineIdERK13SceNpOnlineId) +STUB("DqHwIDc6J4E", _ZN3sce2Np9CppWebApi13InGameCatalog2V53SkuC2EPNS1_6Common10LibContextE) +STUB("DqJyaSqqTng", glUniform1iv) +STUB("DqQRSC-M1zg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEEC1EPS5_PFvS7_EPNS2_10LibContextE) +STUB( + "DqSwHbwC3U4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEC1ERKS7_) +STUB("DqVuY6bqTJ4", _ZN3sce7Toolkit2NP2V210Tournament15TeamVsTeamMatchD1Ev) +STUB( + "DqWlKDF4oCQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("DqY5cDl790s", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setSecondaryAudioLang) +STUB("DqY9Scfgflg", _Z13Image_ConvertijjPi) +STUB("DqaBYUc1zFM", uspoof_getAllowedChars_67) +STUB("DqbT2Bqx3cQ", getDirent) +STUB( + "Dqbv8YjV5qI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEEC2Ev) +STUB("DqgTo4wnmbc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEEC1Ev) +STUB("DqlOyzQxpJs", _ZN3sce7Toolkit2NP2V212ActivityFeed12SharedVideos8deepCopyERKS4_) +STUB( + "DqlU2sfmlp0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "DqnD3S5V0Xs", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEEiRNS2_21DownStreamTransactionIT_EE) +STUB( + "Dqr23wET+gU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEED1Ev) +STUB("Dqr99d9gdWI", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils13NetStateBasicEE12deepCopyFromERS7_) +STUB( + "Dqs8kNGZN8c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE21intrusive_ptr_sub_refEPSA_) +STUB( + "Dr0cvb5GMgU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEE11get_deleterEv) +STUB("Dr2VufJK70A", WKRemoveMockMediaDevice) +STUB("Dr3F3qrSQ2c", FT_Glyph_Copy) +STUB( + "Dr3gK7ZXpMo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEppEi) +STUB("Dr6CbLw-6nc", uregion_getPreferredValues_67) +STUB("DrAnKTUtN4Q", _ZN7WebCore8SVGNames6useTagE) +STUB("DrAv+rMOOtE", _ZN7WebCore7JSRange9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB( + "DrBWhra-pd4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "DrDN2x+Goi4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE3endEv) STUB("DrDfu7uq6JY", scePlayerSelectionDialogInitialize) +STUB("DrEP3qaThDE", WKPreferencesGetAccelerated2DCanvasEnabled) +STUB( + "DrEXNDO4GM0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEC1EPS8_) +STUB( + "DrEk5KxShDw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEED2Ev) +STUB( + "DrHkhARLWfg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "DrKiCXxAj1k", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUserC2ERS5_) +STUB("DrOgvTqPxuA", _ZN3JSC4Heap26protectedGlobalObjectCountEv) +STUB("DrQSmtwNhUE", mono_btls_x509_revoked_new) STUB("DrUu8cPrje8", scePadOutputReport) STUB("DrZuCQDnm3w", sceNetDhcpGetInfoEx) +STUB("DrekXkm+oxg", _ZN3sce2Np9CppWebApi6Common15DefaultResponseC1Ev) +STUB( + "DrlxqRBGWwI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("DrqS2CGRFuI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEE5resetEPS6_) +STUB( + "DrtoIMW0B2s", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE4sizeEv) +STUB("Drupl3SzOhM", unorm2_getNFDInstance) STUB("Drw-bwULZvA", ScePsmMonoInit) +STUB( + "DrwF7P0EpSU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEC1Ev) +STUB("DrzwGvqQVZc", _ZN7WebCore22EmptyFrameLoaderClientC2Ev) +STUB("Ds+MUxya7Hk", WKContextConfigurationSetPrewarmsProcessesAutomatically) STUB("Ds-BHoPDTHY", sceRegMgrDrvDataCheckGet) +STUB( + "Ds-gSf8SLVk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEdeEv) +STUB("Ds3V4AkI+J4", _ZNK3WTF8Collator11collateUTF8EPKcS2_) +STUB( + "Ds3jrFDJC98", + _ZN8meta_gen11MsvPromoter7PromoteEP22MsvPromoteInnerContextP20MsvCancelInterface_tP19MsvStorageInterfaceP26MsvPromoteInnerInformation) +STUB("Ds5RbUIjoVM", mono_file_map_close) +STUB("Ds8vsvfq2K4", mono_aot_Sce_Vsh_PartyCommonjit_got) +STUB("Ds94mpE+9Yc", _ZN3sce7Toolkit2NP2V28Matching7Request13GetAttributesD1Ev) +STUB("DsCIAx5UQQk", WKPreferencesGetWebSecurityEnabled) +STUB("DsDvzCfoRpw", _ZN3JSC10Identifier29checkCurrentAtomicStringTableEPNS_2VME) +STUB( + "DsH9uUIjvJA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEED1Ev) +STUB("DsHS59vYKJs", mono_aot_System_Transactionsunbox_trampolines) STUB("DsKIPXZX4uU", sceProfileCacheGetProfilePicture) STUB("DsPOTEvSe7M", sceNpWebApiSendMultipartRequest2) STUB("DsPrCZ82v3g", sceOpusSilkEncEncodeFloat) +STUB("DsQPfdyTiv8", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_17MessageAttachmentEED1Ev) STUB("DsST7TNsyfo", sceAudioOutExPtGetLastOutputTime) STUB("DsW+3FTXL0Q", sceUltUlthreadTryJoin) +STUB( + "DsZIdw8bWYU", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser9unsetsortEv) +STUB("DsaOYD2V5H8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEEeqERKS7_) STUB("DscD1i9HX1w", scePadResetLightBar) +STUB("DsgIGBYVD1o", _ZN7WebCore22throwSequenceTypeErrorERN3JSC9ExecStateERNS0_10ThrowScopeE) +STUB( + "DsgU8BKg8QU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEE11get_deleterEv) +STUB( + "DsjBETa6xGg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEptEv) +STUB("Dslqaj8DqiQ", _ZN3JSC7Symbols31hasOwnLengthPropertyPrivateNameE) +STUB("DsubRB4M1fo", u_vsprintf_u_67) +STUB("DsvJnhblA0I", _ZN3sce2Np9CppWebApi14SessionManager2V115LocalizedString16getLocalizedTextEv) +STUB( + "Dt095towWhY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEE7get_refEv) +STUB( + "Dt0QPX1gsB0", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "Dt1IeN4luzU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEppEi) STUB("Dt2rEe-d5c0", sceNpAsmTerminate) +STUB( + "Dt3AirSn6Eg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEC2Ev) +STUB( + "Dt40hluGFnE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEEC2ERS9_) +STUB("Dt8AiEKkdL8", _ZN3sce2Np9CppWebApi14SessionManager2V128ResponseGameSessionSpectatorD2Ev) +STUB("Dt9kllUFXS0", _ZdlPvSt11align_val_tRKSt9nothrow_t) +STUB( + "DtD0NxEVgOk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE8capacityEv) +STUB("DtF2vxvSHjw", + _ZN3WTF8JSONImpl5Value9parseJSONERKNS_6StringERNS_6RefPtrIS1_NS_13DumbPtrTraitsIS1_EEEE) +STUB("DtFST5B5GKo", _ZTVN7WebCore15XPathNSResolverE) +STUB("DtHSk0ZL2Q8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE7popBackEv) +STUB( + "DtHSyqLe9RM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "DtHnWZafiiA", + _ZN3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinition19unsetnpServiceLabelEv) +STUB("DtKdjqIP18U", wpe_pasteboard_string_initialize) +STUB("DtUG7-AGqcI", + _ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForReadD2Ev) +STUB("DtaYZKLnIKI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEE7get_refEv) +STUB("DtdiNU9AStc", + _ZN7WebCore15StringTruncator14centerTruncateERKN3WTF6StringEfRKNS_11FontCascadeE) +STUB( + "Dti--CP0qGg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEppEv) +STUB("DtiIzLvqg1s", _ZN3sce7Toolkit2NP2V28Matching7Request8JoinRoom23MAX_SESSION_INDEX_VALUEE) +STUB( + "DttnxfCcGPU", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_6Target10TargetInfo4TypeEEEN3WTF8OptionalIT_EERKNS6_6StringE) STUB("DtvB12rj81E", sceSdecQueryMemorySw2) +STUB( + "DtwAECfqj1w", + _ZN9Inspector20InspectorTargetAgent27didCreateFrontendAndBackendEPNS_14FrontendRouterEPNS_17BackendDispatcherE) +STUB("Dtwj0uYHras", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetBoolean6Ev) +STUB("Du5Ufj3aug0", mono_aot_System_ServiceModel_Webunbox_trampolines_end) +STUB("DuAovlr-wto", _Z20sceNpIpcGetIpcClientv) +STUB( + "DuKTJB6uG7Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEEaSERSA_) +STUB("DuW5ZqZv-70", _ZNKSt9exception6_RaiseEv) +STUB( + "DudAC0rjZNk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEE11release_refEv) STUB("DufQZgH5ISc", sceNetCtlApRpCheckCallback) +STUB( + "DureKyAfm04", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEplEm) STUB("DuslmoqQ+nk", sceNpMutexTryLock) +STUB( + "DutvlYFO68Y", + _ZN15AbstractStorage14TwitterStorage9GetForderERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_6FolderEE) +STUB("Dutyk7ghYas", mono_privileges_set_heap) +STUB("Dv1FqxQxOkw", cairo_surface_reference) +STUB("Dv7LNMyScu4", + _ZN3sce2Np9CppWebApi7Matches2V125CreateMatchRequestFactory7destroyEPNS3_18CreateMatchRequestE) +STUB("DvKkBV1hFE8", WKBundleScriptWorldCopyName) +STUB("DvMouUHstNo", _ZN7WebCore9HTMLNames15placeholderAttrE) +STUB( + "DvQvr9FKAP8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "DvSydbFFPsQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEC2EPS8_) +STUB( + "DvWrG-CSIBA", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi35ParameterToSetGameSessionProperties13isInitializedEv) +STUB( + "DvYN0I6ZMjY", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE11getResponseERS6_) +STUB( + "DvYfjuVcOkY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEEcvbEv) +STUB( + "DvZfgbHQODg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE7reserveEi) +STUB( + "DvZsgagacGI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "DvdhyaYOQR8", + _ZN3sce2Np9CppWebApi12Leaderboards2V129GetRankingResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_22GetRankingResponseBodyEEE) +STUB("DveJcw0aKBk", _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRankingaSERS5_) STUB("DviyPC-JJ1k", sceShellCoreUtilIncrementVersionNumberOfCameraCalibrationData) +STUB("Dvj-07aJaM4", ubrk_getRuleStatus_67) STUB("Dvk+xqAqXco", sceNpManagerIntCheckNpState) +STUB("Dvmf1wsD9Ew", _ZNK9Inspector15ScriptCallFrameeqERKS0_) +STUB( + "DvnJjzxbnvc", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi24setGameSessionPropertiesEiRKNS4_35ParameterToSetGameSessionPropertiesERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB( + "Dvnd+0pMTz0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEC2EPS6_PNS2_10LibContextE) +STUB( + "DvpFIqpAnQk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEC1Ev) +STUB( + "DvvyBBSF9zc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEED2Ev) +STUB( + "Dw+vAxY-WYE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEC1EPNS2_10LibContextE) +STUB("Dw3ieb2rMmU", __atomic_fetch_xor_8) +STUB( + "Dw3vKVHJNWo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEEaSERSA_) +STUB("Dw46TyJ7G7c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEEC2EPS6_) +STUB("Dw6bhZUmD4w", _ZN3JSC8Bindings13RuntimeObject4infoEv) +STUB( + "Dw8C3Psfdbw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEptEv) STUB("DwAvlQGvf1o", sceSaveDataGetSaveDataRootUsbPath) +STUB("DwCrp7rDiTM", _ZN3NTF3URLC2Ev) +STUB( + "DwF+Mw-+i7k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("DwH3gdbYfZo", _ZTISt9bad_alloc) STUB("DwICrVxerkY", sceAgcAcbRewind) +STUB("DwM+3IR55eo", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V112StatsFactory7destroyEPNS3_5StatsE) +STUB( + "DwP96pQ3JjA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "DwPtrW8egkw", + _ZN8meta_gen11MsvPromoter30setKeyValue_TBLAVC_IconProtectENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB( + "DwUb7VByaeQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEcvbEv) +STUB( + "DwY7bI4VPdQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEEaSERSA_) +STUB( + "DwYPstN7dq0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB("DwcWtj3tSPA", putw) +STUB( + "DwryAQQy7n8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEEdeEv) STUB("DwuHIlLGW8I", sceRtcFormatRFC3339LocalTime) +STUB("DwvK0kE665A", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V117ResponseMatchTypeEEC1Ev) +STUB("DwwpqTcKG0Q", _ZN3WTF13printInternalERNS_11PrintStreamEN3JSC14TypedArrayModeE) +STUB("DwzCUG7hU78", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEC1Ev) +STUB( + "Dx5bn4QaKEM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEED2Ev) +STUB("DxAQjE-LxrQ", mono_create_specific_trampoline) +STUB( + "DxAyiet7yHg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEE7add_refEv) +STUB("DxGwDArtbAo", _ZNK7WebCore31BasicColorMatrixFilterOperationeqERKNS_15FilterOperationE) STUB("DxGyV8dtOR8", sceAudioOut2ContextBedWrite) STUB("DxRki7T2E44", sceLncUtilGetAppStatus) STUB("DxU4JGh4S2k", sceRemoteplayGetOperationStatus) +STUB("DxUAcjpayC8", _ZNK7WebCore11MediaSample12toJSONStringEv) +STUB("DxUrwaURmnw", WKPageTryClose) +STUB("DxVrjV-GW0M", WKUserContentControllerCreate) STUB("DxdfhwB4GdM", sceVorbisDecHalfrateP) STUB("DxgcfMpudms", sceBgftServiceIntUploadStartTask) +STUB("DxiWT3trxeo", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEE5resetEPS5_) STUB("DxihSZ+xwsM", sceImeBackendConvertForward) +STUB( + "DxjAOsGEdsk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEEaSERKSA_) +STUB("DxjJR-ixiNE", X509_get_subject_name) STUB("DxmIMUQ-wXY", pthread_attr_getstackaddr) +STUB("DxoEuIeEVdw", _ZN3sce7Toolkit2NP2V29Messaging12Notification18NewGameDataMessageC2Ev) +STUB("Dxr0D8c6ndE", mono_vm_bridge_privileges_start_init) +STUB( + "DxyfpphZzhM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEixEm) +STUB( + "Dy+2XhOLMbg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE5beginEv) +STUB("Dy6dHzIb0WA", _ZN3JSC30waitForAsynchronousDisassemblyEv) +STUB("DyDJcqmMP6g", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_33ActivityFeedSharedScreenshotStoryEEeqERKS4_) +STUB( + "DyJI1ymbjEU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEED2Ev) +STUB("DyK1E41EnIc", p5_2048) +STUB( + "DyLT0Oj45tQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEEC1Ev) +STUB( + "DyTMliCigUU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEE7add_refEv) +STUB( + "DyVXiiGnZ3A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEEC2Ev) +STUB("DyVni9XJD8E", _ZN7WebCore9HTMLNames7metaTagE) +STUB("DyaogVVlO6U", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainerD2Ev) +STUB("DyerRilxWZ4", _ZN15AbstractStorage7Service4LoadENS_11ServiceTypeE) +STUB("Dys3YgSazRQ", _ZN7WebCore12BlobRegistryC2ERKS0_) +STUB("DyzD9dy1J9M", _ZN3WTF17StringPrintStreamD2Ev) +STUB("Dz3fysTfVsM", _ZN3sce7Toolkit2NP2V29Messaging16GameDataMessagesC2Ev) +STUB("Dz5DkAHjSHI", _ZN3JSC9Exception6s_infoE) +STUB( + "Dz7K9m9yb9c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "Dz9ou3Se5j8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("DzE4cVn1yy8", + _ZN7bmalloc29StaticPerProcessStorageTraitsINS_13IsoSharedHeapEE7Storage8s_memoryE) STUB("DzES9hQF4f4", scePthreadAttrSetschedparam) +STUB( + "DzJDHoZrqkQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEEC2ERKSB_) +STUB("DzJr37Dh7dA", shmget) +STUB("DzNxdec+l5o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEaSERS7_) +STUB("DzRdjkvHsPo", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody14unsetVariablesEv) +STUB("DzSamg10HYg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEC1Ev) +STUB("Dza-PctrwiU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEEC1Ev) +STUB("Dzc3Zl2a1QI", _ZNK3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error9getSourceEv) +STUB( + "DzgCSyOvdSc", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions28hasxPsnAcceptPlatformNamePs5Ev) +STUB("Dzk1tw2Xut8", mono_metadata_decode_table_row_col) +STUB("DzkYNChIvmw", _LEps) +STUB( + "Dzlrc8gXt4w", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEEptEv) +STUB( + "Dzn9VftrelA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB("DzngOUvbK0M", _ZNK7WebCore12ChromeClient24plugInStartLabelSubtitleERKN3WTF6StringE) +STUB("DzqV969jHfY", _ZN7WebCore9HTMLNames18onbeforeunloadAttrE) +STUB("Dzt60obx+MI", + _ZN3sce2Np9CppWebApi13InGameCatalog2V516PublisherFactory7destroyEPNS3_9PublisherE) +STUB("Dzwgw8WFPjk", _ZN3sce2np14JsonStringImplD2Ev) +STUB("DzzQ9IwMZ38", _ZN7WebCore7Element20offsetTopForBindingsEv) +STUB( + "E+2HDjUAhf8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE4sizeEv) +STUB("E+AhHrpXb-8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEED1Ev) +STUB( + "E+CL7dEJ8aA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEeqERKS9_) +STUB( + "E+D6HdjabcU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEC1EPS8_) +STUB( + "E+FkojOsM6o", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE5emptyEv) +STUB("E+JOt9P6e4A", ucal_getAttribute_67) +STUB( + "E+JqszcrUgQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEEC1ERKSA_) +STUB("E+QDh-rbqps", _ZN3sce7Toolkit2NP2V28Commerce12SubContainerC1Ev) +STUB("E+U0VcSwzJM", ures_getNextResource) +STUB("E+VdnU77+7o", _ZN12video_parser5vpcom7_DeleteEPc) +STUB("E+XDyvbaQmo", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15Error14setReferenceIdEPKc) +STUB("E+ZoUOTnyFw", WKPreferencesGetRemotePlaybackEnabled) +STUB("E+azScndM-w", udatpg_openSkeletons_67) STUB("E+b+c1Idyew", sceHmd2GetFieldOfView) +STUB("E+bNjlNe1DU", _ZN15AbstractStorage14TwitterServiceD2Ev) STUB("E+dPfjeQLHI", sceHmdReprojectionSetDisplayBuffers) +STUB("E+ePN03olfY", _ZN7WebCore9HTMLNames15tableborderAttrE) +STUB("E+eSIhBFC0s", uspoof_areConfusableUnicodeString_67) STUB("E+f1n8e8DAw", sceImeDisableController) +STUB( + "E+g-qMvRxlQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEC2EPS8_) +STUB( + "E+kuQ5Xkd2I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEE5resetEPS9_) +STUB( + "E+lI7Bs1zlw", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer9terminateEv) +STUB( + "E+nu9I9vmbA", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeaderaSERS5_) +STUB( + "E+qQqMMMzAI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEED2Ev) STUB("E+tyo3lp5Lw", pthread_attr_setdetachstate) +STUB( + "E+u0h1scl+Q", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setString10EPKc) +STUB( + "E+u5unTLGG0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEdeEv) +STUB( + "E+uhqptm6xY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEEcvbEv) +STUB( + "E+vKNKl-GnM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB("E+yB0cAX47I", _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities8Activity7getNameEv) +STUB( + "E-1Ekw3ou9I", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEaSERKS9_) +STUB("E-42fQBhQik", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification16NewInGameMessageEEC2Ev) +STUB( + "E-5HFXug-OU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEC2EPNS2_10LibContextE) +STUB("E-7VFfKSoOA", _ZN3sce2Np9CppWebApi7Matches2V17SubtaskD2Ev) +STUB( + "E-7tCtyPtyc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("E-9NJ9dRsuw", _ZN12Mp4RetrieverC1Ev) +STUB( + "E-A4wchCu+U", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEeqERKS9_) +STUB( + "E-ACOSv9jg0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("E-GDXpncS2I", _ZN3sce7Toolkit2NP2V28Commerce7Request13GetCategoriesC1Ev) +STUB( + "E-L2ED4xt0Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE8pushBackERKS8_) +STUB( + "E-Lo23z3CD8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE6resizeEj) +STUB("E-PTtHa3kns", htopqw) +STUB( + "E-VJDI1yuCk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEEC2Ev) +STUB("E-XEmpL9i1A", __atomic_fetch_and_4) +STUB("E-XneJLIAQQ", + _ZN15AbstractStorage15FacebookContent13ParseMetadataEPN23sceMetadataReaderWriter8MetadataES3_) +STUB( + "E-aBMqCDzns", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEEC2ERSA_) +STUB( + "E-c-umKLOIY", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126BandwidthPropertiesFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_26BandwidthDownstreamMetricsEEENS8_INS3_24BandwidthUpstreamMetricsEEEPNS8_INS3_19BandwidthPropertiesEEE) +STUB("E-cRDsvig9k", _ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest9getZoneIdEv) +STUB("E-cWtjS4cfk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEEaSERS9_) +STUB( + "E-jpr0IeEgA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEEC2ERSA_) +STUB("E-mYAG-aa1A", _ZN3sce2npeqERKNS0_8NpCommIdES3_) +STUB( + "E-nzhTkBR4c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "E-rjy-FUu4w", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEneERKS9_) +STUB("E-ub4plThvU", LockProtocolInfoList) +STUB("E0+yxDU5iW8", _ZN3WTF17TextBreakIteratorC1ENS_10StringViewENS0_4ModeERKNS_10AtomStringE) +STUB( + "E06vfPugo3A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE3endEv) +STUB( + "E09+V4dX0u0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEC2EPNS2_10LibContextE) +STUB( + "E09yL0r+WD8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("E0Ah6v3NquI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEEC2Ev) STUB("E0BLvy57IiQ", sceHmdInternalAnotherScreenSetFadeAndSwitch) +STUB( + "E0CTYxeKBnw", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("E0Gm4nF1y3U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEC1Ev) +STUB("E0H-Rg9JQxQ", _ZN3WTF10StringImpl5adoptEONS_12StringBufferIhEE) +STUB("E0Hrd81t2kU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEptEv) +STUB("E0LGxTnifDc", _ZNK7WebCore16DOMGuardedObject7isEmptyEv) STUB("E0P0sN-wy+4", sceVrTrackerResetOrientationRelative) +STUB("E0QCvEG2ONQ", _ZN7WebCore27DeviceOrientationClientMockC2Ev) +STUB("E0R5cfrGk7E", _ZNK7WebCore11RenderStyle11fontMetricsEv) +STUB( + "E0XFvM8EReA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEEC2ERSA_) +STUB( + "E0d-uxUlbaY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE21intrusive_ptr_sub_refEPS9_) STUB("E0dDLsjKKwY", sceFsWsDelete) +STUB("E0e078nnpSc", mono_aot_Newtonsoft_Json_PlayStationjit_code_end) +STUB("E0gQvy1OLVw", _ZN7WebCore9HTMLNames21onanimationcancelAttrE) +STUB("E0jIJ2u2T5k", _ZN3sce7Toolkit2NP2V212EventsClient22EventOfficialBroadCast16MAX_SIZE_CHANNELE) +STUB("E0o0m00RS1E", _ZN7WebCore13NodeTraversal19nextAncestorSiblingERKNS_4NodeE) +STUB("E0pHVD7uJ+E", _ZN7bmalloc15IsoHeapImplBasenwEm) +STUB( + "E0pNK8faRos", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEEC2Ev) +STUB( + "E0ummyZin08", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEixEm) +STUB("E0xK0dvjJAQ", _ZN3WTF8JSONImpl10ObjectBase10setIntegerERKNS_6StringEi) +STUB("E0xbIPkCbAk", mono_aot_Sce_Vsh_ShareGuideScenejit_got) +STUB( + "E0y3fIt1Zqo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEC1EPKS8_) +STUB("E0yB1UHl4VI", ucnv_setFromUCallBack) +STUB( + "E0zNzafhWT8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEC2EPS8_) +STUB("E14mW8pVpoE", _ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE) +STUB("E15mAwfzwXU", _ZN7WebCore12EditingStyleC2EPKNS_19CSSStyleDeclarationE) +STUB( + "E18YrWMMEdk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB( + "E1Co6ZcYoSg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEEC1ERKS9_) +STUB("E1InWDQyueI", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_26EventInformationListDetailEEC1Ev) STUB("E1KEw5XMGQQ", scePadEnableSpecificDeviceClass) +STUB("E1PpixMc+X0", _ZN3sce7Toolkit2NP2V210Wordfilter16SanitizedCommentC2Ev) +STUB("E1QXDwXQGLU", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession21unsetLeaderPrivilegesEv) +STUB("E1QbfONrBrI", _ZN3sce3Xml3Sax6ParserC2Ev) +STUB("E1SdT+pjijw", _ZN3sce2Np9CppWebApi6Common6VectorIdEixEm) +STUB( + "E1TeIZhG7XA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEED1Ev) +STUB("E1UapwhepfU", _ZN7WebCore8SVGNames6y1AttrE) +STUB( + "E1UoA7LNDfs", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitationsD2Ev) +STUB("E1VALdavf1k", _ZN3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponseD2Ev) +STUB("E1WWXSG7gn0", _ZN3NTF17URLRequestFileJobD2Ev) +STUB("E1WfUIH8KTg", _ZN7WebCore6JSNode9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) STUB("E1Wrwd07Lr8", sceNpTrophyDestroyContext) +STUB( + "E1ZduOTa+Ec", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "E1a4-8K2n4s", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE8readDataEPcm) +STUB("E1bP5EuczLQ", _ZN3WTF21charactersToIntStrictEPKhmPbi) +STUB( + "E1gHpZ51p3g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEE11release_refEv) +STUB("E1hUfTHwXWU", mono_event_get_remove_method) +STUB("E1iwBYkG3CM", __fflush) +STUB( + "E1qOnLxAI8Y", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE5emptyEv) +STUB("E1r+f0A6A7Q", _ZN3JSC23MacroAssemblerX86Common16s_bmi1CheckStateE) +STUB("E1ufQIpLUYU", g_array_new) +STUB( + "E1vn4v9KgJk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEE3getEv) +STUB( + "E1wYlDQAuj8", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Runtime13ObjectPreview4TypeEEESt8optionalIT_ERKN3WTF6StringE) +STUB("E1y4qj5Dxas", + _ZN3sce2Np9CppWebApi7Matches2V121ResponseTeamStatisticC2EPNS1_6Common10LibContextE) +STUB( + "E21sSLwnuWk", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectator12setsessionIdEPKc) +STUB("E27swYU5Hlk", _ZN7WebCore11MathMLNames8mrootTagE) +STUB("E27wOOhC3n0", + _ZNK7WebCore10PluginData16supportsMimeTypeERKN3WTF6StringENS0_18AllowedPluginTypesE) STUB("E29VzZty03U", sceCesRefersUcsProfileCp737) +STUB("E2E+DDLhCRg", cairo_copy_path) +STUB("E2EqJP-v9MY", _ZN3sce7Toolkit2NP2V27Ranking7Request11GetGameDataC1Ev) +STUB( + "E2FqZHxEc5g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE8copyFromERKS9_) +STUB( + "E2ObhF4Skm4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE21intrusive_ptr_add_refEPS9_) STUB("E2OcGgi-FPY", sceImeDicDeleteUserDics) +STUB( + "E2Pb+DSyrss", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("E2QFpAcDPq4", _ZN3sce2np7RingBuf16CheckoutForWriteEPm) +STUB("E2QNBolgyow", jpeg_idct_8x4) +STUB("E2QjFehvp2Y", _ZNK3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate10getNatTypeEv) +STUB("E2RDHfE68c8", WKCertificateInfoCreateWithCertficateChain) +STUB("E2TQfgp0rl0", _ZN23sceMetadataReaderWriter8MetadataC1ERKS0_) +STUB( + "E2Tdl-6XaHQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE8copyFromERKS9_) +STUB("E2TkkVyRubQ", _ZN3WTF13StringBuilder16appendCharactersEPKhj) +STUB("E2VXQLu8tOY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEEC1Ev) +STUB("E2YhT7m79kM", _Fetch_xor_seq_cst_1) +STUB("E2Z8R4TU6jM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEE11get_deleterEv) +STUB("E2oigRVGFO4", mono_class_from_generic_parameter) +STUB("E2pRXDTKB68", _ZN7WebCore22EmptyFrameLoaderClientC1ERKS0_) +STUB("E2s4c1-cIEs", _ZN7WebCore30isStatusCodeCacheableByDefaultEi) +STUB( + "E2t7mWzo858", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEC2Ev) +STUB("E2tUZQZ-Ffc", mono_aot_ReactNative_Debug_DevSupportmethod_addresses) +STUB("E2ugyp6n7Fs", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData11getobjectIdEv) +STUB( + "E33cNZvYFv4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEEC2Ev) +STUB( + "E34qE-vlJL0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEC1ERS7_) +STUB("E36Wp0SYd08", _ZN3sce2Np9CppWebApi11Matchmaking2V15CauseD1Ev) +STUB( + "E36oE-G5CNo", + _ZN7WebCore11DisplayList25DrawDotsForDocumentMarkerC2ERKNS_9FloatRectENS_23DocumentMarkerLineStyleE) +STUB("E37hQ-WsRZs", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEEaSERKS6_) +STUB("E38f4hHkSHc", g_hash_table_iter_init) +STUB("E3E-fjz3Tks", il2cpp_stats_dump_to_file) +STUB("E3EyQCv7aNo", bemp2sys_tsfilter_sendmessage) +STUB("E3GYS9emu1w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEC2Ev) +STUB( + "E3JKV+f+Mh0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "E3MBnJpodGI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE5beginEv) +STUB("E3Pu6A6KHWo", g_slist_find_custom) +STUB("E3RYvWbYLgk", gammaf_r) +STUB("E3T8u3pGTv8", DW.ref.__gxx_personality_v0) +STUB("E3Ur-rzcMUg", _ZN7WebCore6Editor13canDHTMLPasteEv) +STUB("E3jJNvpyfDg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE5beginEv) STUB("E3oH1qsdqCA", sceNetSetDns6InfoToKernel) +STUB("E3pqm309ql4", _ZN7WebCore16HTMLMediaElement11setControlsEb) +STUB("E3r6Cg7w4XM", WKWebsiteDataStoreSetResourceLoadStatisticsEnabled) +STUB( + "E3r6aNEtFjw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("E3rUmom767A", uregex_appendTailUText_67) +STUB("E3vh3HLyXrI", _ZN3WTF8CollatorD2Ev) +STUB("E3wVdWiuD3Q", mono_bitset_clear_all) +STUB("E3yZgI3uyrE", _ZN7WebCore11DisplayList11SetLineJoinD1Ev) +STUB("E4-gy9tn-e4", _ZN7WebCore16ISOSchemeTypeBoxC1Ev) +STUB("E40TBASN9yY", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEEixEm) +STUB( + "E42E93MW9OA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEC1Ev) +STUB("E48THo7J2pI", _ZN3sce2Np9CppWebApi14ConnectAccount2V212PartnerToken14setAccessTokenEPKc) +STUB("E496BdsEjfo", _ZN3JSC12BigIntObject14finishCreationERNS_2VMEPNS_8JSBigIntE) +STUB("E4A0yvypFeA", _ZN7WebCore20TransformationMatrix16applyPerspectiveEd) STUB("E4BCVfx-YfM", sceNpTusSetDataVUserAsync) +STUB("E4CRRBvtGwU", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE7reserveEi) STUB("E4I7uCoWbkM", sceShellCoreUtilGetUserFocus) +STUB("E4NUN+buCoI", + _ZN3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallbackC1ERS5_) +STUB("E4SYYdwWV28", _Eps) +STUB("E4TfKCZ60P0", _ZN3JSC12JSLockHolderD2Ev) +STUB( + "E4Yetryik40", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEC1EPS8_) STUB("E4a-ahM57QQ", sceSslSetVerifyCallback) +STUB( + "E4aiNFtCxp8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEC1Ev) +STUB("E4b78NK7bXs", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy15TrophyPackGroupEE19setCustomReturnCodeEi) +STUB( + "E4chE2uOgZw", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("E4gWXl6V2J0", _ZNSt9_Num_base12max_exponentE) +STUB("E4iOn3dUTKg", _ZN3JSC12HeapAnalyzerD2Ev) +STUB( + "E4kl5irETdg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEEC1EPKS6_) +STUB("E4lrM+EnUjA", CRYPTO_num_locks) +STUB( + "E4mMHoKVG-A", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEneERKS9_) +STUB("E4uoqSdo8ek", _ZN3sce2np10EventQueueD0Ev) +STUB("E4vxp+IU3dg", _ZN7WebCore21DisplayRefreshMonitorD1Ev) +STUB( + "E4wIFGsLEdo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("E4wZaG1zSFc", dirname) +STUB( + "E4yk0kut1MI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE6resizeEj) +STUB( + "E50FRi5Pcs4", + _ZN7WebCore9JSDOMRectC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_7DOMRectENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "E50Y-LL7Q3c", + _ZN7WebCore19JSHTMLSelectElement17defineOwnPropertyEPN3JSC8JSObjectEPNS1_9ExecStateENS1_12PropertyNameERKNS1_18PropertyDescriptorEb) +STUB("E51l7UtV1-A", _ZN3JSC13RuntimeMethod15subspaceForImplERNS_2VME) +STUB( + "E55RE0Dmk1U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("E55qAIHCNcE", mono_aot_Sce_PlayStation_PUIunbox_trampoline_addresses) +STUB( + "E56JgbD4qN4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEC2EPKS8_) +STUB( + "E5D72x8Tvu8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEEC1ERKSA_) +STUB("E5JRO12DLtU", _ZNK7WebCore14ResourceLoader32isAllowedToAskUserForCredentialsEv) STUB("E5Koh2tNPtY", sceUltGetSemaphoreInfo) +STUB("E5LkpnAY7po", cairo_rectangle) +STUB("E5NdzqEmWuY", _ZNKSt7codecvtIDic9_MbstatetE13do_max_lengthEv) +STUB("E5OsEQbrnvk", WKRectCreate) +STUB("E5Pe45LDRqI", _ZN7WebCore19JSHTMLSelectElement9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("E5R651AJg1s", _ZN3sce7Toolkit2NP2V28Commerce9Container8deepCopyERKS4_) +STUB("E5TfXUcLDCE", _ZN7WebCore11MediaPlayerD0Ev) +STUB("E5YKN7nexAw", _ZN3JSC7Symbols24makeTypeErrorPrivateNameE) +STUB("E5bdqIaXjl0", EVP_CIPHER_block_size) +STUB("E5bewLdZ0JA", _ZN7WebCore17NowPlayingManagernwEm) +STUB("E5cL6Get-QI", WKNotificationManagerGetLocalIDForTesting) +STUB( + "E5feQYEMqzE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEC1Ev) +STUB( + "E5gbbM9wB4U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE5beginEv) +STUB("E5opvIVafTc", SSL_get_ex_data_X509_STORE_CTX_idx) +STUB("E5qSFrM0WtE", _ZNK3WTF6String33stripLeadingAndTrailingCharactersEPFbDsE) +STUB("E5qbM3aFc2s", WKImeEventMake) +STUB("E5rWAm1VaRM", cairo_matrix_multiply) +STUB( + "E5sceUonOQo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE5beginEv) +STUB("E5vrYy2a2TY", mono_aot_System_Netunwind_info) +STUB( + "E6+2PY8XuP0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEE7add_refEv) +STUB("E6+OCIBb5wQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE3endEv) STUB("E63t2ZgWfpU", sceDeci4hDrfpFtruncate_fuse_fullpath) +STUB("E64IEZ8n7gY", _ZN3sce7Toolkit2NP2V28Commerce9ContainerC2ERKS4_) +STUB("E64hr8yXoXw", _ZNKSt7_MpunctIcE13do_pos_formatEv) +STUB( + "E65Zb0-uuto", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEC2Ev) +STUB("E68XxcheXP0", ucol_open_59) +STUB("E6GYo9uzjds", _ZThn8_N3sce2np10MemoryFile4ReadEPNS0_6HandleEPvmPm) +STUB( + "E6IfiO7EwwM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEC2EPS8_) +STUB( + "E6JYWW4l14E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEmmEv) +STUB("E6K9I5NMc3M", mono_aot_Sce_Vsh_Np_Udsjit_code_end) +STUB( + "E6KNy7P0fng", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEEaSERSA_) +STUB( + "E6MoOyd9Gxk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEED1Ev) +STUB("E6OA1UUy8+4", WKPageSetRubberBandsAtLeft) +STUB( + "E6OOHrzgRKg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEppEi) +STUB( + "E6OYuzahsUI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEC2EPS8_) +STUB( + "E6Rvpf1ZsQM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE6resizeEj) +STUB("E6TRIoaA9Wo", _ZNK7WebCore24RotateTransformOperation5cloneEv) +STUB( + "E6VW9wDt8ag", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_8Debugger16BreakpointAction4TypeEEESt8optionalIT_ERKN3WTF6StringE) +STUB("E6XSG7zCNk8", + _ZN9Inspector24TargetFrontendDispatcher25dispatchMessageFromTargetERKN3WTF6StringES4_) +STUB( + "E6Xc7ASSvFA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEE11get_deleterEv) +STUB("E6Xy0-YpX5k", _ZN3sce7Toolkit2NP2V210Tournament18OneVsOneRankResultC2ERKS4_) +STUB("E6ao34wPw+U", stat) +STUB( + "E6aue+TkaSc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEmmEv) +STUB("E6elORKTdDA", utrie2_openFromSerialized_67) +STUB( + "E6lToi8jbd4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEC1Ev) +STUB( + "E6oGd04BNqQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE3endEv) +STUB("E6pFju6L7DY", _UIx86_64_mi_init) STUB("E6rzFwsDFwE", sceNpManagerIntAddPlusMemberTypeCallback) +STUB( + "E6xokUoMHsY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEptEv) +STUB( + "E7+bsa1DnLc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEEcvbEv) +STUB( + "E71p+VrrkFg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE8sendDataEPKvm) +STUB("E74tmT4yCzY", _ZN3JSC7Symbols44AsyncGeneratorStateSuspendedYieldPrivateNameE) +STUB( + "E75Hgmyt+Io", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("E75NKjfPoEg", _ZNK3WTF9MediaTime12toJSONObjectEv) +STUB( + "E75oO33FYtg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEC2EPS8_) STUB("E79Au3w61PM", sceAc3EncEncode) +STUB("E79y-3nLVjM", _ZNK3WTF13DecimalNumber32bufferLengthForStringExponentialEv) +STUB( + "E7ABorgo8J0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEC1ERS7_) STUB("E7AR4o7Ny7E", sceRtcGetDosTime) +STUB( + "E7BAHMlok4E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEEC1Ev) STUB("E7Bz0ePVC+E", scePerfTraceSpmEnable) +STUB("E7CmfLfeSuQ", __sys_namedobj_delete) +STUB( + "E7EBcWzUMio", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEC2Ev) +STUB("E7Gp2hJ7lp8", _ZN3sce7Toolkit2NP2V27Ranking17GetGameDataResultC2Ev) +STUB( + "E7IQ24UHDiM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEE7add_refEv) +STUB("E7Iebdxa-8c", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEdeEv) STUB("E7LV-Vm+w0s", sceEsvmEngineMediaKeySessionClose) +STUB( + "E7UermPZVcw", + _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE7_GetfmtES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tmPKc) +STUB( + "E7V4cx0O8cQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("E7b0fE4ER44", ucln_cleanupOne_67) +STUB( + "E7jA4q9VeLU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE8capacityEv) +STUB( + "E7nYzeVh7nw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEC2EPS8_) +STUB( + "E7rVmU7aaFQ", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB( + "E7uXVatBkHs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEED1Ev) +STUB("E7vt6fOJw3E", ucptrie_internalSmallU8Index_67) +STUB("E7wqN7zhn6Y", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13boolean8IsSetEv) +STUB( + "E7xSoysJA2o", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEdeEv) +STUB( + "E7yDfuyot1c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEC1EPS8_) +STUB( + "E8-vSzyOybA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEED2Ev) +STUB("E8BmtbByVKs", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadDataC1Ev) STUB("E8C608-pFng", sceVideoOutSysReadCrc) +STUB("E8D8IxDNmjQ", _ZN7WebCore11MathMLNames12mathsizeAttrE) +STUB( + "E8FnGRr21Ig", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V127ConnectionQualityPropertiesC1EPNS1_6Common10LibContextE) STUB("E8HrmeBTXLA", sceAvControlGetCurrentDeviceId) +STUB("E8OnvxcALi0", + _ZN3JSC11JSWithScope6createERNS_2VMEPNS_14JSGlobalObjectEPNS_7JSScopeEPNS_8JSObjectE) +STUB( + "E8PeVqjnYXg", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "E8UvmmmIIzQ", + _ZN3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform21unsetUsePlayerSessionEv) +STUB( + "E8a+5vdhWx0", + _ZNK3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBody6toJsonERNS_4Json5ValueEb) STUB("E8b8E4weT70", sceNpIpcClientTest1) +STUB( + "E8d13rolWj8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEmmEv) STUB("E8dTcvQw3hg", sceNetShowIfconfigWithMemory) +STUB( + "E8dlsOT529s", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "E8eMz43iXn8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "E8fVFe3orEk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("E8mRcgwBtkM", _ZNK7WebCore26IdentityTransformOperation4dumpERN3WTF10TextStreamE) +STUB("E8pE7QZK8y8", _ZN7WebCore6JSNode9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB( + "E8pPjlz943E", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessions10initializeEPNS1_6Common10LibContextENS6_12IntrusivePtrINS3_29PostPlayerSessionsRequestBodyEEE) +STUB( + "E8uGT9JXb20", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEppEv) +STUB("E8vY0z6NxDw", _ZN3sce2Np9CppWebApi7Matches2V15Error10setMessageEPKc) +STUB("E8wCoUEbfzk", wcsncmp) +STUB("E8wh-MWRJF8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEppEv) +STUB("E8xuxFe9JeM", convert_flags) +STUB("E8yuDNYbzl0", _ZN3sce2np15CancelableScopeD0Ev) +STUB("E9+nyb7XDmU", mono_aot_Sce_Vsh_VideoEdit_Wrapperunwind_info) STUB("E9FdusyklCA", sceSystemServiceActivateHevcStart) +STUB("E9Gqo59+5Ns", _ZN3sce7Toolkit2NP2V212EventsClient12EventDetailsC1ERKS4_) +STUB( + "E9IrMyNjPfA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlotC2Ev) +STUB( + "E9MUEPCByaw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("E9R0IOdsZZw", _ZNK3sce2Np9CppWebApi11UserProfile2V112BasicProfile14accountIdIsSetEv) +STUB("E9WB2QfHQV8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEEC1EPKS6_) STUB("E9XIciu-5lg", sceClPthreadCondattrDestroy) +STUB( + "E9XwPVi+8i0", + _ZN3JSC11ArrayBuffer15createFromBytesEPKvjON3WTF6RefPtrINS3_10SharedTaskIFvPvEEENS3_13DumbPtrTraitsIS8_EEEE) +STUB("E9ciCg7sxKc", YGAssert) +STUB("E9gqTc-xkNc", mono_init) +STUB("E9lS19wjNII", _ZNK9Inspector22RemoteAutomationTarget4typeEv) +STUB( + "E9pgNcfTj3Q", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeader35setxPSNSESSIONMANAGERNONPSNCALLERIDEPKc) +STUB( + "E9s6gQv0PAU", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot7hassortEv) STUB("E9scVxt0DNg", sceHmdInternalCreateSharedMemory) +STUB("E9y7-AmuziU", FTA_Remove_Module_pcf) +STUB( + "EA1kmFT62kI", + _ZN3sce2Np9CppWebApi14SessionManager2V140PostGameSessionsTouchResponseBodyFactory7destroyEPNS3_33PostGameSessionsTouchResponseBodyE) STUB("EA4bmgm02o8", sceKernelSetNeoModeClock) +STUB("EA4e5dxTZcw", tls_term) +STUB("EA7SEI4HaI4", jpeg_fdct_15x15) +STUB("EAFfRWY5oLM", _ZN3WTF12base64EncodeEPKvjNS_18Base64EncodePolicyE) +STUB( + "EAH3DkKHtOg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEE7add_refEv) +STUB( + "EAIg2Gn1-LI", + _ZN9Inspector25DebuggerBackendDispatcher26setPauseForInternalScriptsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "EALGb-bUpCw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("EANWA6BI8I8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEEC1EPNS2_10LibContextE) +STUB( + "EAP4Up8QQOM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEE7add_refEv) +STUB("EAQVV1xK9tI", _ZN3JSC18GCActivityCallbackD2Ev) +STUB("EAQd3NNDqaw", _ZNK3sce2Np9CppWebApi11Matchmaking2V15Cause16referenceIdIsSetEv) +STUB("EARPL-r8jf0", getfsstat) +STUB("EATE6DzEI4Y", _ZN7WebCore9HTMLNames15ondragleaveAttrE) +STUB( + "EAZwR6TkMIY", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE11hasResponseEv) STUB("EAl7xvi7nXg", sceNetConfigSetDefaultRoute) +STUB("EAoybreRrGU", SSL_getSocketId) +STUB("EApzMa04JDw", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Error10getMessageEv) +STUB("EArItANtOv0", rgctx_fetch_trampoline_mrgctx_13) +STUB( + "EAs6yWxAu9Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE6resizeEj) +STUB("EB-G5sdRW7Q", __asan_report_store_n_noabort) +STUB( + "EBEslkwnKSU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEEC2Ev) +STUB("EBJv7yCl8DQ", SSL_CTX_set_cert_verify_callback) +STUB( + "EBL3hgpbeAI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE5beginEv) +STUB( + "EBNkrir7LHE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("EBOgtWMb7rk", _ZN7WebCore11MediaPlayer7setSizeERKNS_7IntSizeE) +STUB("EBRKLWTYXy4", _ZN15AbstractStorage13TwitterFolder5CloseEv) +STUB("EBUGyYazBQA", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container14setDisplayNameEPKc) +STUB("EBVhFlkjxn4", xmlMalloc) +STUB("EBbqcKB1XRI", mono_get_exception_type_initialization) +STUB( + "EBd-7FZ26AQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEC2Ev) +STUB("EBjE6sitQCI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEEptEv) +STUB( + "EBjFh2V6YIQ", + _ZN7WebCore26PresentationOrderSampleMap43findSampleStartingOnOrAfterPresentationTimeERKN3WTF9MediaTimeE) +STUB("EBkab3s8Jto", _FFpcomp) +STUB("EBl83RFuuPc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEEC1Ev) +STUB("EBluxG-e6IE", _ZN3JSC8JSObject11hasInstanceEPNS_14JSGlobalObjectENS_7JSValueES3_) +STUB("EBtYaOALaJk", ucase_toFullTitle_67) +STUB( + "EBu1uYUCIcw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE21intrusive_ptr_add_refEPS9_) +STUB("EBvpcVMORHY", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V112OnlineStatusEEdeEv) +STUB("EBvr2CZnjVo", FT_Activate_Size) +STUB("EBwahsMLokw", _ZNSt10filesystem5_StatEPKcPNS_5permsE) +STUB( + "EBz6pgp-9a0", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayer10initializeEPNS1_6Common10LibContextEPKcSA_) +STUB( + "EC2cojC1KNc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEC1EPNS2_10LibContextE) +STUB( + "EC37aoQ1yck", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEEC2ERSA_) +STUB( + "EC5etLnjBjk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEC2EPS8_) STUB("ECCXnWcVm7Y", sceBgftServiceSyncCall) STUB("ECEzk+K9L2k", sceNpFriendListDialogTerminate) +STUB( + "ECG4AhmFSZk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "ECHBc2VywIw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "ECLIJf93zMY", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "ECLtW7WUv+4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE8pushBackERKS8_) +STUB( + "ECMih-dEFPs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEED2Ev) +STUB("ECOPpUQEch0", malloc_check_memory_bounds) +STUB( + "ECP-k9M+WS4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "ECSkjONQn+s", + _ZN3sce7Toolkit2NP2V29Messaging27getGameDataMessageThumbnailERKNS3_7Request27GetGameDataMessageThumbnailEPNS2_4Core8ResponseINS3_24GameDataMessageThumbnailEEE) +STUB("ECUBXuZdyFQ", mono_aot_Sce_Vsh_VideoServiceWrapperjit_got) +STUB("ECUHmdEfhic", __ashlti3) +STUB( + "ECV9fMbErzI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEmmEi) STUB("ECcNKhS8wvg", sceAudioOut2LoContextCreate) +STUB("ECh+p-LRG6Y", _Pow) +STUB( + "ECoTDJabeLQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEeqERKS9_) +STUB("ECv+6+YUPCE", _ZN9Inspector22RemoteInspectionTarget30unpauseForInitializedInspectorEv) +STUB( + "ED16d20jrsY", + _ZN3JSC16CompleteSubspace12allocateSlowERNS_2VMEmPNS_17GCDeferralContextENS_21AllocationFailureModeE) +STUB( + "ED3UyRsBdoM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEEC2ERKSA_) +STUB( + "ED7kWHUREwo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEE6assignEPS6_PFvS8_EPNS2_10LibContextE) STUB("ED9-Fjr8Ta4", sceGnmDrawIndexIndirect) +STUB( + "EDCIO6tB1sE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEneERKS9_) +STUB( + "EDCmHPuRGRU", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEEC2Ev) +STUB("EDFaRzbbhGY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEC2Ev) +STUB("EDHPIv3WKb0", _ZN7WebCore20PasteboardWriterDataD1Ev) +STUB( + "EDJ-vpdlMdY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEC2ERS7_) +STUB( + "EDPqKuYLHGk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB("EDRXPV+A9P0", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEE11get_deleterEv) +STUB("EDUCoiCsU9A", _ZN7WebCore6DOMURLC1EONS_3URLES2_) +STUB( + "EDUEkqfdTsM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToSetMultiVariablesByUserC2Ev) +STUB("EDUsQljbrpw", _ZN3sce7Toolkit2NP2V23TUS7TusData8deepCopyERKS4_) +STUB("EDdShKgRXAM", WTFReportNotImplementedYet) +STUB("EDhysPfQWXE", _ZTVN9Inspector28DOMDebuggerBackendDispatcherE) +STUB("EDjOOOMkukI", _ZN12video_parser7cVpUtil13vp_ff4_fcloseEPv) +STUB( + "EDjrET0aJsg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEppEv) +STUB( + "EDnTqvlibXQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEEC2ERSA_) STUB("EDq5bqCqYpA", sceAmprAmmCommandBufferConstructor) +STUB("EDr5p3jshJ0", mono_runtime_resource_set_callback) +STUB("EDu2h6y8Zec", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEE7get_refEv) +STUB("EDvkw0WaiOw", __unorddf2) +STUB("EDw-LQKe3fE", _ZNK15AbstractStorage14YoutubeContent13GetCapabilityEv) +STUB("EDyhWelj7UY", pause) +STUB( + "EE01NBx3ZL0", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot17hasnpServiceLabelEv) +STUB( + "EEEB2GzYDyA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("EEEKGMwP7eU", _ZN7WebCore8SVGNames18horiz_origin_xAttrE) +STUB("EEK5W51EhhM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEED2Ev) +STUB( + "EEM14Kf-QfY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEE3getEv) +STUB("EEQUMMIXylA", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13boolean4IsSetEv) +STUB( + "EEUBxvVSYaE", + _ZN3JSC12RegExpObject14deletePropertyEPNS_6JSCellEPNS_14JSGlobalObjectENS_12PropertyNameERNS_18DeletePropertySlotE) +STUB("EEVcPWQ8F4U", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13WhoLikedStoryEEeqERKS4_) +STUB( + "EEWCZq+Szgo", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("EEXgOrxJ1go", WKPageGetEstimatedProgress) +STUB("EEZp-BTCzhQ", monoeg_g_print) STUB("EEemGEQCjO8", sceNgs2ModuleArrayEnumItems) +STUB("EEetcHg6meQ", rgctx_fetch_trampoline_mrgctx_41_p) +STUB("EEexH-CS5gM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEE5resetEPS6_) +STUB( + "EEfcF1O2K64", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEppEv) STUB("EEkGXyPcT6E", sceMusicCoreServerTriggerEvent) +STUB( + "EEm2h5hSnP4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEmmEi) +STUB("EEvugJCBmb8", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth7IdTokenEED1Ev) +STUB( + "EEx55k0zSLo", + _ZN15AbstractStorage13YoutubeFolder9NewFolderERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_6FolderEE) +STUB("EEyf7-Ls31Q", _ZN3JSC8Debugger18willEvaluateScriptEv) +STUB("EF-b2FTd0IQ", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE5beginEv) STUB("EF1lpApBn4s", sceMusicPlayerServiceRemoveTrackList) +STUB( + "EF41KjvK7Kw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "EF5pTt-m79k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEE5resetEPS8_) +STUB("EF8AgCSu+40", _ZNK3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap6toJsonERNS_4Json5ValueEb) +STUB( + "EF8qr8s9CiE", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_20NpSessionInformationENS1_15AppSTLAllocatorIS5_EEEEC1Ev) +STUB( + "EF9g0KlseMM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEEC1Ev) +STUB( + "EFDb5mXqjDs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE8copyFromERKS9_) +STUB("EFDd0QoYyP4", _ZN3WTF3URL8setQueryENS_10StringViewE) +STUB("EFES6UR65oU", _ZN3sce2npgtERKNS0_4TimeES3_) +STUB("EFI2iRR6Ei0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEC2ERS7_) +STUB("EFI5pH2RkeE", _ZN4Manx11MediaPlayer8setMutedEb) +STUB( + "EFNwjt-0Sd4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEeqERKS9_) STUB("EFPddKZhjgw", sceDebugReadThreadRegisterForSDBGP) +STUB( + "EFUe8u8HuPY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEeqERKS9_) +STUB("EFaZwhyRrlg", + _ZN8meta_gen11MsvPromoter18setTextMsvMetadataENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB("EFffsPLsOio", _ZN3sce2np9Semaphore4OpenEPKc) STUB("EFhM9SF2aSQ", sceShellCoreUtilReleaseBgmCpuBudget) +STUB( + "EFj1T2cLpto", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEEC2ERSA_) +STUB( + "EFlL7Ps6qq0", + _ZN3JSC8JSObject3putEPNS_6JSCellEPNS_14JSGlobalObjectENS_12PropertyNameENS_7JSValueERNS_15PutPropertySlotE) +STUB("EFst4N6vJhU", __asan_report_exp_store16_noabort) +STUB("EFuI+GMAoxQ", Java_java_net_PlainDatagramSocketImpl_getTimeToLive) +STUB("EFwM7xQGq4Y", _ZN12video_parser10cVideoPath10GetDirNameEv) +STUB( + "EFyCD7ipktA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEixEm) +STUB( + "EG4+HoJ-hmk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB( + "EG4FUVe2qYo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEC2ERS7_) +STUB( + "EG7+Bl6j+oc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE5eraseENS2_8IteratorIS6_EERS9_) +STUB( + "EG8zvTG2cUg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB( + "EGHrVBULTRc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEneERKS9_) +STUB("EGIQzGNJtNo", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariableC2Ev) +STUB( + "EGK9DI9AGpQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE4sizeEv) +STUB( + "EGKjLdBzG3s", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("EGOi+1ZjWFc", _ZN3sce7Toolkit2NP2V27Session7Request4Join15LOWEST_PRIORITYE) +STUB( + "EGS8dOsI+5Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("EGTDbDBMptw", _ZN3JSC7JSProxy6s_infoE) +STUB("EGTj1EB5ypU", _ZN7WebCore9PageGroup25captionPreferencesChangedEv) +STUB("EGYOvxUaGFY", mono_aot_Sce_Vsh_Sl2_Sl2Deliverunwind_info) +STUB("EGYpmwU7ra4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEptEv) +STUB( + "EGaiKGECnFY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEC2Ev) +STUB("EGe2DmiW87Y", + _ZN3sce7Toolkit2NP2V212NetworkUtils12Notification14NetStateChange8deepCopyERKS5_) +STUB( + "EGf4E-WuBvU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEEC1ERKSC_) +STUB( + "EGns-j-rL7o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEppEv) +STUB("EGqfikjTwy8", _ZTVN7Nicosia16SceneIntegration6ClientE) STUB("EGt+sFM8+WI", sceSpNetEpollDestroy) +STUB( + "EGyD+ga65Pw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEneERKS9_) +STUB( + "EGzDx4gj+zw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEixEm) +STUB("EH-x713A99c", atan2f) +STUB("EH3+U0AEHcM", __tls_align) +STUB("EH7KVt4Dfmw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEcvbEv) STUB("EH9Au2RlSrE", sceRazorCpuGpuMarkerSync) +STUB("EHAyVTr-m5g", _ZN3sce2np6Object12GetAllocatorEv) +STUB("EHNuKCjrx78", sdb_breakpoint_trampoline_p) +STUB( + "EHOlA2B4Vjs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE6resizeEj) +STUB("EHOrrCFvbgo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEED2Ev) STUB("EHQEDVXZ0TI", sceNpTrophy2ShowTrophyList) STUB("EHW+8T2LfP4", sceCesRefersUcsProfileJisX0201Tilde0x7e) +STUB( + "EHY2813FNEo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEE5resetEPS9_) +STUB("EHijR05BARc", Java_sun_awt_GnmUtils_bdjbgAlloc) +STUB("EHozWIUdRnw", _ZN3JSC7Symbols29toLocaleDateStringPrivateNameE) STUB("EHrIzxIpb+c", sceKernelGetCoredumpAppInfo) +STUB("EHrOTTgMxXo", _ZN7WebCore14LoaderStrategyD0Ev) STUB("EHsF2i9FXPM", sceLibcInternalBacktraceForGame) +STUB("EHxdFvoxzCM", _ZN2GK9PlayerPSNaSERKS0_) STUB("EI-5-jlq2dE", scePthreadGetthreadid) +STUB("EI1P-Nb8dQA", _ZN3sce7Toolkit2NP9Utilities10FutureImplD1Ev) +STUB("EI4qqK4jAck", _ZN3sce2Np9CppWebApi6Common8IteratorIfEC1Ev) +STUB("EI7UwdLMv6I", _ZN7WebCore12SharedBuffer24createWithContentsOfFileERKN3WTF6StringE) +STUB( + "EIAjd93jVcg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB("EIC7WX3qreg", mono_aot_System_Threading_Tasksunwind_info) +STUB( + "EICAJwUu-2g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEC2EPNS2_10LibContextE) +STUB("EICqo7yiqa4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEEmmEv) +STUB("EID1OUoD76g", _ZN7WebCore19ResourceRequestBase20clearHTTPContentTypeEv) +STUB("EIDDGRdPyI8", _ZN7WebCore9HTMLNames15aria_flowtoAttrE) +STUB( + "EIHpnU9SEKQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEEptEv) +STUB("EIK1tqMar6U", YGNodeLayoutGetWidth) +STUB( + "EIKwAopGAgI", + _ZN7WebCore24CoordinatedGraphicsLayer20setReplicatedByLayerEON3WTF6RefPtrINS_13GraphicsLayerENS1_13DumbPtrTraitsIS3_EEEE) +STUB( + "EIO2HsR8K2o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEED2Ev) +STUB( + "EIR5xBu8rzM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE21intrusive_ptr_sub_refEPS9_) +STUB("EIZbVQs381s", sysKernelGetIntdevModeForRcmgr) STUB("EIZdWTT7Zdw", sceAvSettingInit) STUB("EIc0PIXVccE", scePerfPmcStop) +STUB("EIcEU-ngPo0", _ZN7WebCore9HTMLNames12downloadAttrE) +STUB("EIdtyyQIVFE", _ZNK7WebCore11MediaPlayer13movieLoadTypeEv) +STUB("EIi9Vz5HzK0", cpp_demangle_read_tmpl_param) +STUB("EIidYZvvsv4", mono_vm_bridge_privileges_finish_init) +STUB( + "EIj2P0hRVx8", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V226WebApiErrorResponseFactory7destroyEPNS3_19WebApiErrorResponseE) +STUB("EIjrkvleaPE", _ZN7WebCore7Element16getAttributeNodeERKN3WTF10AtomStringE) +STUB("EIr1K8rUHqw", + _ZN7WebCore20LegacySchemeRegistry34registerURLSchemeAsDisplayIsolatedERKN3WTF6StringE) +STUB("EItmXRLen7w", cairo_get_matrix) +STUB("EIwS9+aPG60", _ZN7WebCore8SVGNames10cursorAttrE) +STUB("EIwwRbyxZTM", _ZN3WTF6String24numberToStringFixedWidthEdj) +STUB( + "EJ7M3NN0m3A", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB("EJ96SfoZh2g", _ZN3JSC10JSFunctionC1ERNS_2VMEPNS_14JSGlobalObjectEPNS_9StructureE) +STUB( + "EJAOHYWUki4", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer15setserviceLabelEi) +STUB( + "EJJiV41CZgA", + _ZN7WebCore22EmptyFrameLoaderClient38dispatchDecidePolicyForNewWindowActionERKNS_16NavigationActionERKNS_15ResourceRequestEPNS_9FormStateERKN3WTF6StringENS_21PolicyCheckIdentifierEONS9_8FunctionIFvNS_12PolicyActionESD_EEE) +STUB( + "EJNpsvWfnwo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE21intrusive_ptr_sub_refEPS9_) STUB("EJQifjOp8s4", sceVideoOutRegisterBufferAttribute) +STUB("EJZBym9sZQ0", mspace_malloc_usable_size) STUB("EJapNl2+pgU", sceGnmComputeWaitSemaphore) +STUB("EJbXsBT7uts", _ZNK7WebCore4Page27pageExtendedBackgroundColorEv) +STUB( + "EJdDHnlzfto", + _ZN9Inspector15ScriptArgumentsC2ERN3JSC9ExecStateEON3WTF6VectorINS1_6StrongINS1_7UnknownEEELm0ENS4_15CrashOnOverflowELm16EEE) +STUB("EJj2svCikG8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlotC2Ev) +STUB( + "EJkx0ZtLtm4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("EJl0Y6keGco", _ZN7WebCore19HTMLTextAreaElement7setColsEj) +STUB("EJv3Qy88Ywo", + _ZNK3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayer6toJsonERNS_4Json5ValueEb) STUB("EJwPtSSZykY", sceHmdInternalMirroringModeSetAspectDebug) +STUB("EK65hayLg9g", mono_aot_Sce_Vsh_Np_AuCheckjit_code_end) +STUB( + "EKEet-dNWPI", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayerC2Ev) +STUB("EKF3k5QZG2Y", mono_btls_x509_name_get_entry_count) +STUB("EKNxZyDECME", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEEC1ERS7_) +STUB("EKRJc7kHLIg", _ZN3sce7Toolkit2NP2V23TUS7Request12GetVariables23MAX_VARIABLE_REAL_SLOTSE) +STUB( + "EKRMmXMHBrs", + _ZN7WebCore23atBoundaryOfGranularityERKNS_15VisiblePositionENS_15TextGranularityENS_18SelectionDirectionE) +STUB( + "EKRu5EFU6j0", + _ZN7WebCore9FrameView17setScrollPositionERKNS_8IntPointENS_14ScrollClampingENS_14AnimatedScrollE) +STUB("EKSIm5bZoqM", + _ZN3sce2Np9CppWebApi7Matches2V127ResponseTeamMemberStatistic8fromJsonERKNS_4Json5ValueE) +STUB("EKW4neZCdQQ", _ZN3JSC16createRangeErrorEPNS_14JSGlobalObjectERKN3WTF6StringE) STUB("EKi1jx59SP4", sceNpPartyGetMemberVoiceInfo) STUB("EKn+IFVsz0M", sceHmdInternalGetPuBuildNumber) +STUB("EKpqhA6kdaY", LockCommInfoList) +STUB("EKqHXG0tq2Y", _ZN3sce7Toolkit2NP2V210Tournament4Team8deepCopyERKS4_) +STUB("EKrmdrAHkTk", __rela_plt_end) +STUB( + "EKxCLIS5ZUY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEC2Ev) +STUB( + "EKzzN5HSvPs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE7reserveEi) +STUB("EL+4ceAj+UU", _ZNSt14numeric_limitsIDsE6digitsE) +STUB( + "EL2X7TspXVY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEaSERKS9_) +STUB( + "EL8l+0r9UyI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "ELNRHKkyckY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEEC2EPS6_PNS2_10LibContextE) +STUB("ELSr5qm4K1M", __umodti3) +STUB("ELZCcxSXaX8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE3endEv) +STUB("ELa6nMcCO9w", _ZN3sce2np18MemoryStreamReader4ReadEPNS0_6HandleEPvmPm) +STUB("ELcgtmZjgOE", _ZNK3sce7Toolkit2NP15CommunicationId6getSigEv) +STUB( + "ELlADeKmWXE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEptEv) +STUB( + "ELos5KSRl5w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE3endEv) +STUB( + "ELtbccV8rAk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEE5resetEPS9_) +STUB( + "ELudnwBwfEM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) STUB("ELvBVG-LKT0", sceSystemGestureRemoveTouchRecognizer) +STUB("ELvH8kXt1FQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEEC1EPS5_PNS2_10LibContextE) +STUB("ELvJ6lRWP6U", mono_aot_I18Njit_code_end) +STUB( + "ELxlNxdGrgo", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("EM+5NoPKGyI", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_playPlayListAtMark) +STUB( + "EM0WKHy9eas", + _ZN7WebCore10ScrollView5paintERNS_15GraphicsContextERKNS_7IntRectENS_6Widget25SecurityOriginPaintPolicyE) +STUB("EM5NLPqpUlc", _ZN3sce3Xml3Dom8Document11removeChildENS1_6NodeIdES3_) +STUB( + "EMCFwXJUSa4", + _ZNK3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody15searchableIsSetEv) +STUB( + "EMHaCcsVNUs", + _ZN3JSC8JSObject19getOwnPropertyNamesEPS0_PNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("EMN1BSF4VWo", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V117ResponseMatchTypeEEppEi) +STUB("EMNG6cHitlQ", _ZTVSt9bad_alloc) +STUB("EMO8fbfieRI", _ZN3WTF11PrintStream5beginEv) +STUB( + "EMQLZz3SQZI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEC1Ev) +STUB("EMSbJA42Ckk", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEEppEi) +STUB("EMXE+zX2if0", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament16RegisteredRosterEE5resetEv) +STUB( + "EMdvpNKqcfg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEC2ERS7_) STUB("EMiyK-GRjA8", sceFaceAgeGetWorkingMemorySize) +STUB( + "EMmae-ChEYs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEE5resetEPS9_) +STUB("EMutwaQ34Jo", perror) +STUB("EN+jB88lBmc", _ZN3sce7Toolkit2NP2V212EventsClient11EventInGameC1Ev) +STUB( + "EN-BhGq9byk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE5beginEv) +STUB( + "EN0vmg9c0v0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEE11release_refEv) +STUB( + "EN4lo8h3oMc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEE11get_deleterEv) +STUB("ENCQTNg5e+k", _ZN7WebCore21JSCSSStyleDeclarationC1ERKS0_) +STUB("END0rQA7Cr4", mono_bitset_foreach) +STUB("ENFUpkwnFM8", curl_mime_data) +STUB("ENFzwBQibNI", _ZN3JSC10loadModuleEPNS_9ExecStateERKN3WTF6StringENS_7JSValueES6_) STUB("ENIHay-pf9k", sceMbusDebugAddProcess) +STUB("ENJAm-+uyK8", _ZN3sce2Np9CppWebApi10Activities2V114UserActivities13ErrorResponseD1Ev) +STUB("ENLfKJEZTjE", set_constraint_handler_s) +STUB( + "ENNRNyRzjZY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEptEv) +STUB("ENRvkp+Fcmc", _ZN7WebCore17CSSPrimitiveValue14setStringValueEtRKN3WTF6StringE) +STUB("ENS6KVTAqYw", _ZN9Inspector22InspectorDebuggerAgentnwEm) +STUB("ENeUMXMCCAk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE6resizeEj) +STUB("ENgBTg9H2yI", getProhibitionFlags) +STUB( + "ENi-+3RjOHU", + _ZN7WebCore8JSDOMURLC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_6DOMURLENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "ENi4JMRQNG0", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersC2Ev) +STUB( + "ENiQ3XmICDA", + _ZN3sce2Np9CppWebApi14SessionManager2V167PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyFactory7destroyEPNS3_60PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyE) +STUB("ENicfrCN-iw", vm_send_GenericArrayMethodInfo) +STUB( + "ENpl1eHRevs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEE11get_deleterEv) +STUB( + "ENqjlXUU5Po", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("ENsHmJCNG4Q", hb_buffer_get_glyph_infos) +STUB( + "ENxhiOs68wg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEE11get_deleterEv) +STUB( + "ENyJqNd098k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE7reserveEi) +STUB("ENyRRJ1Z4AI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEED2Ev) +STUB( + "EO+4JNXXins", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEC2EPKS8_) +STUB("EO+sWh4e9Rc", + _ZN3sce2Np9CppWebApi11UserProfile2V125GetBasicPresencesResponseC1EPNS1_6Common10LibContextE) +STUB( + "EO0Ql1nuEHw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEE5resetEPS9_) +STUB( + "EO5a8pI9Yvs", + _ZN3sce2Np9CppWebApi14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBody25setJoinableSpecifiedUsersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_12JoinableUserEEEEE) +STUB("EO7L0IQDZlE", _ZN7WebCore18PlatformTimeRangesnwEm10NotNullTagPv) +STUB( + "EO98AmENOAM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEC2EPKS8_) +STUB( + "EOKBl05t-hk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEC1Ev) +STUB("EOLQfNZ9HpE", c16rtomb) +STUB("EOPQJP9a46I", _ZN7WebCore9HTMLNames8wrapAttrE) +STUB("EOQ4DcUDYQM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEEC2ERKS7_) +STUB( + "EOXnwnyStDc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "EOZ0nHTsamo", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEED1Ev) +STUB("EObieXObKfo", _ZNK3sce2Np9CppWebApi7Matches2V120ReportResultsRequest20matchStatisticsIsSetEv) +STUB( + "EOjZYswcI3c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEE11release_refEv) +STUB( + "EOkT1Yc0LUo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEEcvbEv) +STUB("EOmLhk6TiW4", _ZN3WTF17StringPrintStreamD1Ev) +STUB( + "EP-exEeG1mQ", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V331ValidationConstraintInfoFactory6createEPNS1_6Common10LibContextEPKcS9_PNS5_12IntrusivePtrINS3_24ValidationConstraintInfoEEE) +STUB("EP0qJoDMhBg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE4sizeEv) +STUB("EPEUMPT+9XI", _ZN3sce2np3ipc14service_client12AbortRequestEii) +STUB("EPJbX73AVeU", _ZN3sce2np8NpCommIdD1Ev) +STUB( + "EPOIKTShhpc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEE7get_refEv) +STUB("EPOjdTmnrXg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEmmEv) +STUB("EPR7hdZNKKE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEEC2ERS6_) +STUB( + "EPSZnEudIso", + _ZN7WebCore22StorageEventDispatcher28dispatchSessionStorageEventsERKN3WTF6StringES4_S4_RKNS_18SecurityOriginDataEPNS_5FrameE) +STUB("EPWLUouFmGE", _ZN12video_parser5vpcom8datetime8DateTime13GetDateFormatEv) +STUB( + "EPWhpjsKrI0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEE5resetEPS9_) +STUB("EPYD+gZwF3k", vm_send_FreeDomain) +STUB("EPbP6zJBbsk", jvmciHotSpotVMAddresses) +STUB("EPcNonui1w0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEEC2EPS5_PFvS7_EPNS2_10LibContextE) +STUB("EPdBkepv-2k", _ZN9Inspector27InspectorFrontendDispatchernwEmPv) STUB("EPeq43CQKxY", sceNpTusAddAndGetVariableForCrossSave) +STUB("EPo1N7nzMxE", _ZThn8_N3sce2np13JsonDocParser10onEndArrayEjj) +STUB( + "EPqORvvwOk0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEE11release_refEv) +STUB("EPt1H8iIaj8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE8copyFromERKS7_) +STUB( + "EPxd1L5tock", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEEdeEv) +STUB( + "EPzYWmAKBJ0", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionPropertiesD1Ev) +STUB( + "EQ-FJJ4HbQw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEcvbEv) +STUB("EQ-IYluwKvQ", mono_mlist_set_data) +STUB("EQ-yMC-j9YA", uhash_find) +STUB("EQ2lA6ZqWQ8", _ZNK15AbstractStorage15FacebookContent7GetStatEPNS_4StatE) STUB("EQ6SCLMqzkM", sceUsbdFreeDeviceList) +STUB("EQ6qo4aHH90", _Z38sceGpuDebuggerGetEnabledExceptionsMaskPKN3sce3Gnm16EsStageRegistersEPj) +STUB( + "EQ9y9FY5W0Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEC2EPKS6_) +STUB("EQBEkO3VExA", Java_com_sony_gemstack_resources_ResourceManager_initJNI) STUB("EQBusz6Uhp8", sceImeVshInformConfirmdString2) +STUB( + "EQHBEbdulgc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEmmEv) +STUB("EQP-RPsXOCA", _ZNK7WebCore14DocumentLoader9isLoadingEv) +STUB("EQV776115vk", _ZN7WebCore9DOMWindow36dispatchAllPendingBeforeUnloadEventsEv) +STUB( + "EQXBwQgLaIQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEC2ERKS7_) +STUB( + "EQZ2Dh6C2lo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "EQbh+dsDtlQ", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitationsC2Ev) +STUB( + "EQkmCZo5emY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEeqERKS9_) +STUB("EQs8VVpTWI8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEppEv) +STUB( + "EQs8ndAM2ig", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEppEi) STUB("EQtFad2c1T8", sceVideodec2QueryDecoderInfo) +STUB("EQwcrNbG49U", JVM_GetClassNameUTF) +STUB( + "EQzwbAGvjqA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEEC1ERSA_) STUB("ER2ar8yUmbk", sceHmdDistortionGetCompoundEyeCorrectionCommand) +STUB("ER8-AFoFDfM", _ZTSPKm) +STUB( + "ERDZidsto-o", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13boolean1IsSetEv) +STUB("ERG90hCSW5I", WKBundleResetApplicationCacheOriginQuota) +STUB( + "ERHJF1bea8E", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEdeEv) +STUB("ERJyBJEMTAk", _ZN3sce2Np9CppWebApi14SessionManager2V16Friend13unsetOnlineIdEv) STUB("ERKzksauAJA", sceSaveDataDialogGetStatus) +STUB( + "ERMCnMK+e98", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE7reserveEi) +STUB("ERUQawyiFiU", _ZN7WebCore13toLinearSRGBAERKNS_5SRGBAIfEE) +STUB("ERWRlD3tdlM", _ZN3WTF6String24numberToStringECMAScriptEd) +STUB("ERWTHgoZej0", _ZN3sce7Toolkit2NP2V23TUS7Request17TryAndSetVariableD2Ev) +STUB("ERWfmpZNl98", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIjEmmEv) +STUB("ERYMucecNws", _ZNSt14numeric_limitsIeE12min_exponentE) +STUB( + "ERa-uKoAwd0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE3endEv) +STUB("ERc8U4brmvI", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V110UpdateModeEEC2EPS6_) +STUB("ERceC3MBxqc", Java_java_security_AccessController_getStackAccessControlContext) +STUB("ERgb4lPId44", WKBundleFrameGetJavaScriptWrapperForFileForWorld) +STUB("ERhlT6vYvfA", _ZNK7WebCore14ScrollableArea13scrolledToTopEv) +STUB("ERhsQL+87ks", nsnp_Decrypt) +STUB( + "ERkszvdfm1I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEC2ERKS7_) STUB("ERmiOK9VT0g", sceFiosArchiveGetMountBufferSize) +STUB("ERuf9y0DY84", _ZN3sce4Json6ObjectixERKNS0_6StringE) +STUB( + "ERyU1w68Dbo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEppEv) +STUB( + "ERzoBKyzTYM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE5eraseENS2_8IteratorIS6_EERS9_) STUB("ES+vLK-z0+U", sceVisionManagerGetResultOfFindUserWithoutIdentify) STUB("ES3UMUWWj9U", sceNpMatching2SetSignalingOptParam) +STUB( + "ES5HyyIPXqc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEE21intrusive_ptr_sub_refEPS7_) +STUB("ESC-dyZ8rnM", mono_threads_enter_gc_unsafe_region) +STUB("ESEz+id3WAs", _ZN3JSC7Symbols29requestInstantiatePrivateNameE) STUB("ESHbhJnEg1M", sceUserServiceSetNpOfflineAccountId) +STUB( + "ESLSfXWtNcE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEptEv) +STUB( + "ESP+o70WUcU", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlot17getnpServiceLabelEv) +STUB( + "ESTKeWgINv0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEC2EPS7_PFvS9_EPNS2_10LibContextE) +STUB("ESX8af0NRuU", _ZN3sce2np14JsonDocBuilder27GetEscapedJsonStringBufSizeEPKc) +STUB( + "ESZ1wU1W4BA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEED1Ev) +STUB("ESfpGInW8C0", _ZN12Mp4Retriever13convertToUtf8EPtmPhmb) STUB("ESiS-L7svdc", sceMbusEnableChat) +STUB("ESjnwcGBWeg", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_19UserRankInformationEEC1Ev) +STUB( + "ESmRsPD6RRs", + _ZN3sce7Toolkit2NP2V26Trophy20getTrophyPackSummaryERKNS3_7Request20GetTrophyPackSummaryEPNS2_4Core8ResponseINS3_17TrophyPackSummaryEEE) +STUB("ESn28HeUFW0", Java_com_sony_bdjstack_security_aacs_AACSOnline_setPermission) +STUB( + "ESs8MWB58h8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) STUB("ESxtLvQZO5Y", sceShellCoreUtilGetVMStatsForTelemetry) +STUB( + "ET3FphTEUFk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEC2Ev) +STUB("ET3kRKXUtqE", __tsan_unaligned_read2) +STUB("ET3uFuIq2Gk", _ZN7WebCore14SchemeRegistry24registerURLSchemeAsLocalERKN3WTF6StringE) STUB("ET4Gr-Uu07s", sceAvPlayerStart) +STUB( + "ET4gVE4ybKU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEE5resetEPS9_) +STUB( + "ETB+UDwv7Kc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEED2Ev) +STUB("ETBRnmr8FCA", _ZN7WebCore18TextureMapperLayer12setTransformERKNS_20TransformationMatrixE) +STUB( + "ETBSBxkFziI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEC1EPS8_) +STUB( + "ETIWjfrRtic", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEC2EPS6_PNS2_10LibContextE) +STUB( + "ETMHGrlZm48", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ErrorResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_13ErrorResponseEEE) +STUB("ETN4mn+-5l0", _ZNK3WTF3URL4userEv) +STUB( + "ETQYFuwKEVQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE3endEv) STUB("ETS-uM-vH9Q", sceNpScoreGetRankingByNpIdPcId) +STUB("ETSlSSaZxGw", _ZN9Inspector27LayerTreeFrontendDispatcherdlEPv) +STUB("ETUVm8GqZ8k", mono_aot_SMDiagnosticsjit_code_end) +STUB("ETXmXdiDYdA", _ZN3JSC7Symbols27promiseFulfilledPrivateNameE) STUB("ETa2mo9ojss", sceAppInstUtilSetPrimaryAppSlot) +STUB("ETb+w14ZBHA", _ZN3sce7Toolkit2NP21TusGetDataInputParamsC2Ev) +STUB("ETmaHODW01I", + _ZN3sce2Np9CppWebApi14ConnectAccount2V216PartnerTokensApi26ParameterToGetPartnerTokenC2Ev) +STUB( + "ETqXv7IBi8w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEC2EPNS2_10LibContextE) +STUB( + "ETrmIb1W1-w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEE7add_refEv) +STUB("ETuwqIjS3G0", Java_java_awt_Window_pChangeCursor) +STUB("ETvO9pe63Ks", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15NpSessionMemberEEC2ERKS4_) +STUB("ETvXu-y7oN4", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request13GetPlayedWithD2Ev) +STUB( + "ETwDQdvsdUM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEC1Ev) +STUB( + "EU0LgF7FVRk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEEC1Ev) +STUB("EU0UhVJMuI8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE6resizeEj) +STUB("EU0W9ZIDlMY", bemp2sys_tsfilter_init) +STUB( + "EU6H8lhqYYg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEEC1Ev) +STUB( + "EU7cL5AJSC8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEC1Ev) STUB("EUCaQtXXYNI", sceVrTrackerRecalibrate) +STUB( + "EUDxrYMwIhA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEptEv) +STUB("EUEJ9ApMPBI", _ZN15AbstractStorage11LocalFolderD1Ev) +STUB("EUH+EmT-v9E", _ZNK3sce4Json6String6lengthEv) +STUB("EUJU383KIwY", u_isUWhiteSpace_67) +STUB( + "EUMoSn2H7os", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEEaSERS9_) +STUB("EUMq7VbMM4A", _ZN7WebCore24CoordinatedGraphicsLayer26setShouldUpdateVisibleRectEv) +STUB("EUOJnux2Y98", _ZN3sce2Np9CppWebApi11Matchmaking2V110UserTicket14setRulesetNameEPKc) +STUB( + "EUS59XQmiP8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEC1Ev) +STUB( + "EUaD4wwlrWk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC1Ev) +STUB( + "EUcSFxGbd9U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE6resizeEj) +STUB("EUdyKSnrCkw", mono_class_is_subclass_of) +STUB("EUeakLo20lA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEdeEv) STUB("EUgC8BO6EfE", sceDeci4hDrfpCreate_fuse_fullpath) +STUB( + "EUk51q7XfQc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) STUB("EUmWuIWWTvg", sceMbusDebugSetApplicationFocusByAppId) +STUB("EUs1HTSziTA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEED1Ev) +STUB( + "EUzPDdosDU0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE10setContextEPNS2_10LibContextE) +STUB("EV-OXjw2Y6Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEixEm) +STUB("EV-rWpK-lgU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS15TusDataStatusesEE3getEv) +STUB("EV1qQ7b+vLo", __asan_report_exp_store2_noabort) +STUB( + "EV63UDaz6ro", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEppEi) +STUB("EVAOZzClSqs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V115SearchAttributeEEneERKS7_) +STUB( + "EVB0ZrmkcOo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEptEv) +STUB( + "EVCsZAc87Hk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEEC1ERKSA_) +STUB( + "EVEY3Aho4DA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEEC2Ev) +STUB("EVGGV4de5iI", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getBoolean9Ev) +STUB("EVI0kBCp+vM", _ZN3WTF6String6numberEdjNS_29TrailingZerosTruncatingPolicyE) +STUB("EVMBft8-fdQ", mono_personality) +STUB( + "EVN0+KhaDss", + _ZN7WebCore12SharedBuffer6appendEON3WTF6VectorIcLm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB( + "EVNipgaWGlU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEC1Ev) +STUB( + "EVOhrbpp39s", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEdeEv) +STUB("EVOlfvNV6V8", mono_aot_Sce_Vsh_Sticker_StickerLibAccessorjit_code_end) +STUB( + "EVanM8n1ubo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEE11release_refEv) +STUB( + "EVdNz5x5Dd8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("EVdVab-pK3o", uset_clear_67) +STUB("EVgaLPB1Mbg", _ZN3WTF6String6numberEi) +STUB("EVnF+rZpx0c", mono_aot_Sce_Vsh_GameCustomDataunbox_trampolines_end) +STUB( + "EVwgkMV6Dnw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("EVwvyDL91rs", g_hash_table_remove) +STUB("EVykoz75tkY", rgctx_fetch_trampoline_mrgctx_69_p) +STUB("EW+GVVb3Y8Y", il2cpp_thread_get_all_attached_threads) +STUB( + "EW+JpYK9Jbs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEE3getEv) +STUB("EW+wdnKCpRY", mono_aot_System_Reactive_Coreplt) +STUB( + "EW0+37ceYzY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEED2Ev) STUB("EW5OKnsWysM", sceNpUniversalDataSystemCreateRecordArray) +STUB( + "EW5m8mU5XW4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEED2Ev) +STUB("EWBdNivGTLc", JVM_MonitorWait) +STUB( + "EWCbD1Hm9sA", + _ZN3sce2Np9CppWebApi14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyC2EPNS1_6Common10LibContextE) +STUB( + "EWHb6EPgMzc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEEC2Ev) +STUB( + "EWIcMRfmA5w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEE11get_deleterEv) +STUB( + "EWJupGxq1Ck", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEixEm) +STUB("EWK9BQ3GPSE", _ZN3sce7Toolkit2NP2V211SocialMedia7Request7PhotoFbD2Ev) +STUB( + "EWN77Uj7YT4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("EWOfML0pnaI", _ZN7WebCore4Page34setInitialScaleIgnoringContentSizeEf) +STUB( + "EWOrIiFi1Cs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEE11get_deleterEv) +STUB( + "EWRdiRZ9Xdw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEEaSERKSA_) +STUB( + "EWSzWEauJOU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEdeEv) +STUB("EWVFpBhoEGg", _ZNK7WebCore22DefaultFilterOperationeqERKNS_15FilterOperationE) +STUB("EWWEBA+Ldw8", __udivmoddi4) +STUB( + "EWaFrTZByyg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEC1Ev) STUB("EWcwMpbr5F8", sceHttp2SslEnableOption) +STUB("EWee4t7ZzQM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEE3getEv) +STUB("EWgQ0z+cfic", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEEC1Ev) +STUB( + "EWkOHSxqIb8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "EWkiobR8+LQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE3endEv) +STUB( + "EWmhd1rAknU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEEC1ERSA_) +STUB("EWqiGg1F7BA", _ZN7WebCore9HTMLNames4qTagE) +STUB( + "EWsT2hJRzJw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEC2Ev) +STUB("EX-R-kaOsvo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEEC1ERKS9_) +STUB( + "EX-cRmHBgbw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE5beginEv) +STUB( + "EX5mTalIAIU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEE5resetEPS6_) +STUB( + "EX7XbW8i4ms", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "EX84G6nPWb0", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("EXB+Y5cOQI8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEEaSERS7_) +STUB( + "EXGXLUoM2-I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEE11release_refEv) +STUB("EXH1U-UBywI", swapcontext) +STUB( + "EXIc+psPgg0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE5beginEv) +STUB( + "EXL-YJrEB94", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEE7get_refEv) +STUB( + "EXLElKtzsFY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEeqERKSA_) +STUB("EXRZRH444-o", _ZNK7WebCore18TextureMapperLayer12drawsContentEv) +STUB("EXW20cJ3oNA", _ZNSt14numeric_limitsIdE8digits10E) +STUB( + "EXWbEIS-bSw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEEC1Ev) +STUB( + "EXWbp4PfPnw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEC2Ev) STUB("EXeJ80p01gs", sceNpManagerIntLoginGetDeviceCodeInfo) +STUB("EXeKK2Romv8", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_17TitleCloudStorage2V19ConditionEEppEi) +STUB("EXmNUXqkPhI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEEC2Ev) +STUB("EXuTtQMJ0Lw", _ZN3JSC6RegExp6createERNS_2VMERKN3WTF6StringENS3_9OptionSetINS_4Yarr5FlagsEEE) STUB("EXv3ztGqtDM", pthread_mutexattr_setpshared) +STUB("EY+ZC0vHX+I", _ZN7WebCore8SVGNames14marker_midAttrE) +STUB("EY0acPBsxKo", mono_aot_Sce_Vsh_WebViewDialogjit_code_start) STUB("EY28T2bkN7k", sceHttpAddRequestHeader) +STUB("EY2PlB+wrIk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEEmmEi) STUB("EY38A01lq2k", sceFontGetRenderScalePixel) +STUB( + "EY3sPcxeAms", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEEC2Ev) STUB("EY8cOKuR7Bc", sceDebugTriggerCoredump) +STUB( + "EYCjxvjKJCU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEEcvbEv) +STUB( + "EYEU0icdk6o", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("EYEYkiShCxM", mono_image_has_authenticode_entry) STUB("EYInZQm5t88", sceRegMgrPrivateStorageDirName) +STUB( + "EYLZgleLgVY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("EYMou+ZnHJ8", _ZN3sce7Toolkit2NP2V210Tournament24OfficialBroadCastDetailsaSERKS4_) +STUB( + "EYSCmEu6J+8", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13integer6IsSetEv) STUB("EYSKE8otTSs", scePerfTracePmDeleteBufferNotifyEvent) +STUB( + "EYX18O31OWk", + _ZN7WebCore19JSAnimationTimelineC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_17AnimationTimelineENS6_13DumbPtrTraitsIS8_EEEE) +STUB("EYZJsnX58DE", _ZNSt13basic_ostreamIwSt11char_traitsIwEED1Ev) +STUB( + "EYi7ChiSJB4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEeqERKS9_) STUB("EYkbvZMNLvs", sceImeBackendGetString) +STUB("EYrJ5HrUGAs", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V115LastUpdatedUser11getOnlineIdEv) STUB("EYvRF1VUpUU", sceUserServiceSetShareStatus) +STUB("EYwl49hc4Co", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEC2ERS7_) +STUB("EZ1GzMyIc-Y", _ZN3JSC7Symbols38createAsyncFromSyncIteratorPrivateNameE) +STUB( + "EZ7WYMRaNIQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) STUB("EZ8h70dtFLg", pthread_cond_setname_np) +STUB("EZ94ewo1vHE", png_warning) +STUB("EZAlnPmzeTw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEC2ERKS7_) +STUB("EZER6Jtj0TM", _ZN3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayerD1Ev) +STUB( + "EZERT15P5-8", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("EZF8kLAfpVU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V115SearchAttributeEEptEv) +STUB( + "EZGVoKs5BO8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEEC1ERSA_) +STUB( + "EZHQyZg7Wq8", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE5getIdEv) STUB("EZJecX+WvJc", sceUserServiceGetThemeBgImageDimmer) +STUB("EZOP9rEdz30", _ZN9Inspector26DebuggerFrontendDispatchernaEm) +STUB("EZOPH0HFGHM", _ZN3sce2Np9CppWebApi14IdentityMapper2V312AccountIdMapD2Ev) +STUB("EZb6o3iQ36c", ShareGetCurrentStatus) +STUB( + "EZbjec+d+Xo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("EZcKdSoc0-w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEEaSERS9_) +STUB( + "EZcVdPcJXd8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEmmEv) +STUB("EZlLaviV1-U", _ZN3sce7Toolkit2NP2V24Core8ResponseINS3_5EmptyEEC2Ev) STUB("EZqxQRb1foc", sceUpsrvUpdateGetFeatureListUrlForUpdate) +STUB("EZrgxNGtqws", ubrk_openRules_67) STUB("EZtqozPTS4M", sceRazorCpuSetPushMarkerStaticCallback) +STUB("EZvvQXz2ilE", _ZN7CoreIPC18MessageReceiverMapC1Ev) +STUB( + "EZyFtZJmIBE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE4sizeEv) +STUB("Ea+86Wd8S-g", _ZNK3WTF24TimeWithDynamicClockType4dumpERNS_11PrintStreamE) +STUB( + "Ea+OZDg18rQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V130RequestGameSessionMemberPlayer6toJsonERNS_4Json5ValueEb) +STUB("Ea+awuQ5Bm8", _ZNKSt8messagesIwE3getEiiiRKSbIwSt11char_traitsIwESaIwEE) +STUB( + "Ea16yNLmh7w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEC1EPNS2_10LibContextE) +STUB("Ea1JLlyj72I", _ZN7WebCore9HTMLNames9headerTagE) STUB("Ea2NaVMQNO8", sceNetConfigAddArp) +STUB("Ea3+vtUvdUw", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V115LastUpdatedUser8fromJsonERKNS_4Json5ValueE) +STUB( + "Ea6KJK6hafQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("Ea6Vodkv13Q", _ZN9Inspector32DebuggerBackendDispatcherHandlerD1Ev) +STUB("EaBzcUGrpYI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE6resizeEj) STUB("EaD-N1hrcMc", sceAppInstUtilAppGetInstallAddcontFromDiscStatus) +STUB( + "EaIXqqOzlAs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEC1EPS6_PNS2_10LibContextE) +STUB("EaK2AflMZhQ", _ZN7WebCore8Gradient25setGradientSpaceTransformERKNS_15AffineTransformE) +STUB( + "EaMyk3rIH78", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEC1EPS6_PNS2_10LibContextE) +STUB( + "EaNyI3eRq7k", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_18GameCustomDataItemENS1_15AppSTLAllocatorIS5_EEEED1Ev) +STUB("EaRDIeh-baM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEptEv) +STUB("EaWv76ydBpw", _ZN3sce2Np9CppWebApi13InGameCatalog2V510SkuFactory7destroyEPNS3_3SkuE) +STUB( + "EaZnzPyKgaA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("EabSiJLJyww", _ZNK3sce2Np9CppWebApi6Common6VectorIdE3endEv) +STUB( + "EaeTyNQkaZo", + _ZN3sce2Np9CppWebApi11UserProfile2V113AvatarFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_6AvatarEEE) +STUB( + "EafhHrndAKo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEEC2Ev) +STUB("Eajk61IT7ng", _ZN7WebCore16DocumentTimeline17suspendAnimationsEv) +STUB("EakD6xL9a20", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEdeEv) STUB("EamBMojFPls", sceCesUtf8ToMbc) +STUB( + "EaqNOUt4pFI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEC1EPS6_PNS2_10LibContextE) +STUB( + "EaqathyoerM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEED2Ev) +STUB("EaxLv8TfsrM", _ZN3sce2np13RingBufMemoryD2Ev) +STUB("Eb+9GDocWGw", ucnv_getName_59) +STUB( + "Eb1hE0IOiX0", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB("Eb3SYtDAAj0", _ZN9Inspector21DOMFrontendDispatcherC2ERNS_14FrontendRouterE) STUB("Eb6RFqAKzVY", sceMbusLeaveAudioOutAutoAttenuation) +STUB( + "Eb75FWVWAIE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEC1EPS8_) +STUB("Eb7c1T8MuSo", _ZNK7WebCore11HistoryItem11originalURLEv) +STUB("Eb93zcJedbM", _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile10setAboutMeEPKc) +STUB("EbB+bkACwUc", monoeg_g_path_get_dirname) +STUB("EbEbBKHhqvM", _ZThn16_N9Inspector14InspectorAgentD1Ev) +STUB("EbInyv2qkqM", mono_config_parse_memory) STUB("EbNufIY0Zvc", sceContentSearchGetMetadataFieldInfo) +STUB("EbP8tz9rbWs", _ZN9Inspector14FrontendRouterD2Ev) +STUB("EbPVS06zVAo", + _ZNK3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectator16customData1IsSetEv) +STUB( + "EbQRkxb6kiY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "EbRVIHi4wzY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("EbS+N1MbOBw", _ZN7WebCore13MIMETypeCacheaSERKS0_) +STUB( + "EbS5WNqkt5w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEmmEi) +STUB( + "EbVyTX4oFeY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEC2EPS8_) +STUB("EbaxxSIUfsk", _ZN3WTF9MediaTime20positiveInfiniteTimeEv) +STUB("EbfE0StszWE", FinalizeMediaModule) +STUB( + "EbihZup1hoA", + _ZThn176_N7WebCore8Document17addConsoleMessageEN3JSC13MessageSourceENS1_12MessageLevelERKN3WTF6StringEm) +STUB( + "EblbSf4-EXs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("EbmFmabti7g", _ZN3JSC10JSFunction4nameERNS_2VME) STUB("EboejOQvLL4", sceRazorCpuIsCapturing) +STUB( + "EbpksFArSQw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEE11get_deleterEv) +STUB( + "Ebr90muM0lg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEC2ERS7_) +STUB( + "EbrFuTrDHOg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEE11release_refEv) +STUB("Ebuv-rVlBX4", _ZN7WebCore7Element15removeAttributeERKN3WTF10AtomStringE) +STUB( + "EbwQjMJpt00", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("EbyOKyTWMBM", _ZN12video_parser5vpcom11initializer22SetGetCommonStringFuncEPFPKwRKiE) +STUB( + "EbyqbBQDzW8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEC2EPS8_) +STUB("Ec4RdQbd+vI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEC2Ev) STUB("Ec63y59l9tw", sceNpSetNpTitleId) +STUB("Ec6dqG56Kog", WKBundleAddOriginAccessAllowListEntry) +STUB( + "EcAc780sFnA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEneERKS9_) +STUB("EcDbVbmri+I", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersD1Ev) +STUB( + "EcId4LxtFC0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEEdeEv) +STUB("EcLWz4nKnY8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEED1Ev) +STUB("EcLiD9ydwX8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEEneERKS7_) +STUB( + "EcNTaPEWSLI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEmmEi) +STUB( + "EcPdOjUVQIU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEdeEv) STUB("EcTHemmz6n4", sceCompsoitorGetProcessRenderingTime) +STUB("EcTOEqC20I0", _ZN3WTF8JSONImpl10ObjectBaseD1Ev) +STUB( + "EcTtm49oVHc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEEaSERSA_) +STUB( + "EcVHQdCZ-q4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("EcWLFic0Q9U", mono_aot_Sce_Vsh_FileSelectorunbox_trampoline_addresses) STUB("EcaEt4nv8No", sceAgcDriverSysGetGfxAppGpuResetStatus) +STUB("EcboqmwkrMY", _ZNK3sce2np9JsonArray5CloneEP16SceNpAllocatorEx) +STUB("EcddTB8Kt7Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEED1Ev) +STUB("EciO+1-a91M", _ZN3sce2Np9CppWebApi15Personalization2V15Error11unsetSourceEv) +STUB( + "EcnogZpYeP0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEmmEv) +STUB("Ecr-PCm4IWY", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE5beginEv) +STUB("EcsAk-ul7TI", mono_class_implements_interface) STUB("EcvEiAbDsyk", sceShellUIUtilGetAppUrl) +STUB("Ecwid6wJMhY", _Stolx) +STUB( + "EcxQh7tzRLI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEC2Ev) +STUB("Ed0aLPhQx7Y", _ZNK3sce7Toolkit2NP15AppSTLAllocatorIiE8max_sizeEv) +STUB("EdF8JLPaKUs", _ZN12Mp4RetrieverD1Ev) +STUB( + "EdFYZpPIbiE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEE3getEv) +STUB("EdGBCTaSbwM", _ZN22MmsMdCommonFsOperation8readFileEjPv) +STUB("EdJS-hyHozc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V120PlayerJoinableStatusEEeqERKS7_) +STUB( + "EdLvWwQ4-1A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEE7add_refEv) +STUB("EdN4PtGiwG8", _ZN3JSC7Symbols33stringIncludesInternalPrivateNameE) +STUB("EdO0Qb+NZ9M", _ZNK3JSC12PropertySlot12customGetterEPNS_9ExecStateENS_12PropertyNameE) +STUB("EdPboSS9riE", _ZN7WebCore5Range8setStartERKNS_8PositionE) +STUB("EdT3EtGltPg", _ZN23sceMetadataReaderWriter13KeyValueArray3setEPNS_8KeyValueE) +STUB("EdTr7I4K1uI", _ZN3sce2Np9CppWebApi11UserProfile2V125GetPublicProfilesResponseD1Ev) +STUB("EdVbEa9144I", mono_g_hash_table_lookup_extended) +STUB( + "EdWZUgJ3JYo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE8copyFromERKSA_) +STUB("EdZXye9GA2I", _ZN3sce7Toolkit2NP2V24Core8ResponseINS3_18CustomResponseDataEED1Ev) +STUB("Edc0LKPzxbU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEcvbEv) +STUB("EdcZfiHyWJU", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEEdeEv) +STUB( + "EdcZvW0NvOo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEE7add_refEv) +STUB( + "EddO1iuXDps", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEED1Ev) +STUB( + "EdeUwNA6caY", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB("EdefUaKYEPE", eglBindTexImage) +STUB( + "EdfkLF+1AYs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("Edi1I6slWTU", _ZN7WebCore15AsyncFileStreamnwEm) +STUB( + "EdiICM8M5oQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE8capacityEv) +STUB("EdkISCe7zb8", _ZNK3sce2Np9CppWebApi7Matches2V118RequestTeamResults10scoreIsSetEv) +STUB( + "EdkadxyNkNM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEC2Ev) +STUB( + "Edr96guD4nY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEC2EPS8_) +STUB( + "EdwGavVaA6Y", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer20setuseCurrencySymbolEb) +STUB("Ee+UffrEuAY", ucasemap_internalUTF8ToTitle_67) +STUB("Ee1Mv1wMBhk", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEEptEv) +STUB("Ee2bKGk0j4M", uldn_openForContext_67) +STUB( + "Ee2cghlOlFs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEED2Ev) STUB("Ee3LPFXEvA0", sceKernelSetIoreq) +STUB("Ee3Y61IerS0", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_28NpSessionDetailedInformationEED1Ev) +STUB("Ee99oKTR++w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEC1Ev) +STUB("EeBQ7253LkE", _ZNKSt8messagesIcE5closeEi) +STUB( + "EeBumidaqNc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEC1EPS8_) +STUB( + "EeEtG-RFyaQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEdeEv) +STUB("EeGYlSFqG4c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEmmEv) +STUB( + "EeHU-BBbqK8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "EeNITvom5Rk", + _ZN9Inspector26AnimationBackendDispatcher16resolveAnimationElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("EeOtHxoUkvM", _ZTIN10__cxxabiv117__class_type_infoE) +STUB( + "EeQZDUDbers", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEC2Ev) +STUB( + "EeU0GSrHlnw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEppEv) STUB("EeVJ6rikwss", sceUserServiceGetGlsSortOrderGame) +STUB("EeVthQocE3Y", __sys_test_debug_rwmem) +STUB("EeZvkwOQkDU", _ZN4IPMI4impl10ServerImpl25registerKeventForProcExitEj) +STUB("Eeetr0CfdLs", rgctx_fetch_trampoline_mrgctx_24_p) +STUB("Eegf7F-oqzk", uset_equals_67) +STUB( + "EehVWOUiOPk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEmmEv) STUB("EejsJSul9nA", sceAvSettingChangeProcessAttribute) +STUB("Een9k936RW0", bemp2sys_packetizer_create) +STUB("EeoKUMWrMys", _ZN7WebCore8SVGNames6k3AttrE) +STUB("EepUNU63bvc", _ZN7WebCore9HTMLNames10marqueeTagE) +STUB("EesBxlNesYM", + _ZN3sce2Np9CppWebApi14SessionManager2V125ResponseGameSessionPlayer11setPlatformEPKc) +STUB( + "Ef2oqYnK+Yo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEdeEv) +STUB( + "Ef79qa-VnrQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "EfAbrZyGLRg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEC1Ev) +STUB("EfMNLIfp6QY", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationProperties12getWelcomingEv) +STUB("EfNQF2jRElQ", _ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error9setSourceEPKc) +STUB("EfRsAsiwQV8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V511ContentTypeEEeqERKS7_) +STUB( + "EfYw5HxwZaw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "EfZn061vqfI", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB("EfbN1PNbQ7w", _ZN7WebCore17FrameLoaderClient22dispatchDidReceiveIconEv) +STUB("EfdaVVzDkSg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEEptEv) STUB("EfgH5jBjqpM", sceNpSessionServiceGetJoinedPartySession) +STUB("Efn-a1tGPqw", _ZN3WTF19ParallelEnvironmentC1EPFvPvEmi) STUB("EfnfZtjjyR0", sceNpUtilParseTitleId) +STUB( + "EfoBIEQgBmk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEC1Ev) +STUB( + "EfqWR3aCjZY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEE11release_refEv) STUB("EfqmKkirJF0", sceKernelMlockall) +STUB("EfrTUx1fmtU", qS3) +STUB( + "EfsWIuzMksA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEptEv) STUB("EftEB4kmkSg", sceNpUtilJsonEscape) STUB("EfvzrKzujQE", sceHidControlGetDeviceName) +STUB( + "EfwFypOQemw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEED2Ev) +STUB( + "EfwLq56LyUU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEC1EPNS2_10LibContextE) +STUB( + "Eg0oOr9Vz1o", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE3endEv) +STUB( + "Eg2WYfzV3Jw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB( + "Eg3UJkA4YGw", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeaders24getXPsnAtomicOperationIdEv) +STUB( + "Eg6TAB+22EM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "EgC8o0Rn4Go", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEppEv) STUB("EgEPXDie5XQ", sceUserServiceGetThemeTextShadow) +STUB("EgErBK3HZNc", WKPageSetControlledByAutomation) +STUB( + "EgFbegQmSwo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEC2EPNS2_10LibContextE) +STUB("EgHudGJawMs", _ZN9Inspector27CSSBackendDispatcherHandlerC2ERKS0_) STUB("EgIn3QBajPs", sceFontGraphicsUpdateFillMethod) STUB("EgJqC+9VmvM", sceKernelClearGameDirectMemory) +STUB("EgJuhxEz0wg", mono_aot_System_Dataplt_end) +STUB( + "EgKNWVm7Pv4", + _ZN9Inspector23TargetBackendDispatcherC2ERNS_17BackendDispatcherEPNS_30TargetBackendDispatcherHandlerE) +STUB( + "EgLCVO0s9ks", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEC1Ev) +STUB( + "EgLX0wc8jfw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE7popBackEv) +STUB("EgSIYe3IYso", _ZNSt9_Num_base10is_integerE) +STUB("EgeTANIm-fQ", _ZN3sce7Toolkit2NP2V211SocialMedia7Request12ActionLinkFbC2Ev) +STUB("Eggp2vvHgmE", _ZN7WebCore21UserContentControllerD0Ev) +STUB("EghlSHTb5KU", uiter_next32_67) +STUB( + "EgiGWJLQ6Jk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEneERKS9_) +STUB("EgiXIlZ8rwo", CreateZStream) +STUB("Egleh7nfX4c", + _ZNK3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends9getfilterEv) STUB("EgmLo6EWgso", pthread_rwlock_unlock) STUB("EgmlHG93Tpw", sceNpManagerIntDeleteLoginContext) +STUB( + "EgopK9UaJ8k", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("EgwcFZpfkbQ", _ZN7WebCore16ScriptController11windowProxyEv) STUB("Eh+Vqkrrc00", sceNetInetNtopWithScopeId) +STUB("Eh4A9qNAKvM", _ZN3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator10setNatTypeERKi) +STUB("Eh7uskcjFl4", _ZN9Inspector28PageBackendDispatcherHandlerC2ERKS0_) +STUB("EhAaiqA7Jgc", mono_method_get_name) +STUB( + "EhBw4CiUmf0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEED2Ev) +STUB("EhD2KpLs1cw", Java_java_lang_reflect_Array_setChar) STUB("EhE73s4u2Yg", sceDataTransferTargetRequestBindSavedata) +STUB("EhLaOnhdcXo", _ZN3sce2np9HttpTrans12RecvResponseEPNS0_6HandleEPvmPm) +STUB("EhOOmJWzSmk", mono_aot_Sce_Vsh_UserServiceWrapperunbox_trampolines) +STUB( + "EhPGI8cSAG8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEE5resetEPS9_) +STUB("EhQQuwIASuw", _ZN12video_parser5vpcom6_ChmodEPci) +STUB("EhRJ-yl2m9E", _ZN7WebCore18RenderLayerBacking30setIsTrackingDisplayListReplayEb) +STUB("EhU6GNY5CVw", _ZN7WebCore22HTMLFormControlElement13setFormMethodERKN3WTF6StringE) +STUB( + "EhVJ+wwxFK4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEC1EPS9_) +STUB( + "EhVJRG6LuwM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "Ehe2OLlQ6js", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEEC2EPS8_PNS2_10LibContextE) +STUB("EhePbYxMnqY", rgctx_fetch_trampoline_rgctx_54_p) +STUB("Eheq1igFqCM", _ZN7WebCore13HitTestResultC1ERKNS_10LayoutRectE) +STUB("EhfeKhQoHj0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEC1Ev) +STUB("Ehjy-lAMZoc", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119ChildActivityStatusEEmmEi) +STUB("Ehkz-BkTPwI", _ZN3sce2np6Thread12DoThreadMainEv) +STUB( + "EhoQjwNycKo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEE5resetEPS9_) +STUB("EhqyxOyQlls", + _Z32Ime_SetPreeditRectGeometryNativemN3sce11playstation4core3Ime15ImeTextGeometryE) +STUB( + "Ehr3HGZ7hQE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEED2Ev) +STUB( + "Ei+rwvM+nhA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEE3getEv) +STUB( + "Ei1DcM9fpAg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("Ei1Dn07XYs4", ures_getString) +STUB( + "Ei4lrxNnG9M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("Ei7Gxq2j6e8", _ZN3WTF24AutomaticThreadCondition9notifyAllERKNS_14AbstractLockerE) +STUB( + "EiAOpvgpaiY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE6resizeEj) +STUB( + "EiDOnNd1wdk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEmmEi) STUB("EiF92YDNHRA", sceInvitationDialogGetStatus) +STUB("EiHf-aLDImI", logl) +STUB( + "EiHqMaUVcVw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEixEm) +STUB( + "EiKL1khnnI4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("EiMbExkrCf4", mono_aot_System_ServiceModel_Internalsmethod_addresses) +STUB("EiMkgQsOfU0", __powisf2) +STUB("EiNcaVz5BQk", uspoof_getInclusionUnicodeSet_67) +STUB("EiOhI0xdnqs", _ZN7WebCore29SQLiteStatementAutoResetScopeC1EOS0_) +STUB("EiQTpEHlqGs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEED2Ev) +STUB( + "EiQehVwgZxs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE5emptyEv) +STUB("EiWxbCFATxw", _ZN12video_parser13cVideoMetaMP416getEpisodeNumberEPi) +STUB("EiYeGyIO7yE", mono_bitset_find_start) +STUB("EiYv5gqx0Ls", mono_aot_Sce_Vsh_Gls_GlsSharedMediaViewunbox_trampolines_end) +STUB("Eia04SHhxa0", coil_set_debugger_port) +STUB("EidFctP9kfk", _ZTVSt9basic_iosIwSt11char_traitsIwEE) +STUB( + "EiernRRx6CQ", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetrics27getCompletionRatePerReasonsEv) +STUB("Eif2MJOmod4", _ZN12video_parser13cVideoPathM4vC1EPKc) +STUB("EijXOxU9SAU", _ZN3sce7Toolkit2NP2V26Friend7Request15GetBlockedUsersD2Ev) +STUB("EikE-GrFloI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEC2ERS7_) +STUB("Eisgz+sqX1g", _ZN3WTF37parseDateFromNullTerminatedCharactersEPKc) +STUB("Eix6BBYackE", _Z18sendIpmiConnectCmdiPvPKvm) +STUB("EizhQNDGt8o", WKBundlePageAddUserScript) +STUB("Ej0-MQtjabk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEEcvbEv) +STUB("Ej0X1EwApwM", _ZNKSt5ctypeIwE10do_tolowerEPwPKw) +STUB("Ej2QCEJXBec", dvdAuthInitialize) +STUB("Ej400cAVTZ0", u_fputc_67) +STUB("Ej4A0AumbJ4", _ZN3JSC22EdenGCActivityCallbackC1EPNS_4HeapE) +STUB("Ej5O8fLz0QU", _ZN3NTF8Registry10initializeEbb) +STUB("Ej7zgb55994", mono_lock_free_alloc) STUB("Ej9YiEmOWVE", sceAvSettingIsSupportedVideoOutModeByHdmiMonitorInfo) +STUB("EjD0Kwis-6Y", Java_com_sony_bdjstack_ti_Database_getTitle) +STUB("EjF8+d+GJvA", null) +STUB("EjHPHhdChko", + _ZNK3sce2Np9CppWebApi14SessionManager2V127PostGameSessionsRequestBody6toJsonERNS_4Json5ValueEb) +STUB("EjL+gY1G2lk", lgamma_r) STUB("EjMsfO3GCIA", sceNpJoinThread) +STUB("EjW+wxqS93k", fuse_session_new) +STUB("EjX3MmMvpTs", WKBundlePagePostMessageIgnoringFullySynchronousMode) +STUB( + "EjYI9RorGtA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEeqERKS9_) +STUB( + "EjYxXIk+HiE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEC2ERKS7_) +STUB("EjbNP5MEexk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEEC1Ev) +STUB( + "EjfCxrN4Dvg", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE18getResponseHeadersERSE_) +STUB( + "Eji5P2RMwwA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEED2Ev) STUB("EjllaAqAPZo", pthread_condattr_setclock) +STUB( + "EjoUG62MFCw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "EjsP3q44NBM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEC1Ev) +STUB( + "EjwICDNgIbc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEppEv) +STUB( + "Ejx7DhCW2mk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) STUB("EjxE+-VvuJ4", sceUserServiceSetGlsIsCameraHidden) +STUB("EjxUpzR2Yx8", _ZN3sce4Json5ValueC2El) STUB("EjyAI+QNgFw", sceNpPartyGetStateAsUserA) STUB("Ek+VR4lcJQI", sceVideoOutSysAddVblankEvent) +STUB( + "Ek0g-cQLZ48", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEC1Ev) +STUB("Ek3df14vjDk", EVP_PKEY_set1_RSA) +STUB( + "Ek4-zsEPa-c", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEneERKS9_) STUB("EkENuw5cosY", sceLibcGetFD) +STUB( + "EkHQkuspYyo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "EkM1ybYRK1k", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE4sizeEv) +STUB("EkR0YuNu6P8", _ZN7WebCore6JSNode14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB("EkYKe+qGQCM", _ZN3sce2Np9CppWebApi6Common6VectorIlEC2EPNS2_10LibContextE) +STUB("EkYvmQJl8iE", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIlEC2EPl) +STUB( + "EketLk4tmZk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE8pushBackERKS8_) STUB("EkqGLxWC-S0", sceUsbdHandleEvents) +STUB("EkrFsaV1O7Q", + _ZN12video_parser5vpcom3rtc19ParseSQLiteDateTimeEPmPNS1_24SQLiteDateTimeFormatTypeEPKc) +STUB("EksoTo0wy2I", _ZN3sce7Toolkit2NP2V24Core24NpToolkitMemoryPoolStatsC2Ev) +STUB( + "EkvXBfDzM4M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEC2EPS8_) STUB("El+cQ20DynU", scePthreadAttrSetguardsize) +STUB("El-HZiyKyzE", _ZTVN15AbstractStorage7StorageE) +STUB( + "El2GLtEirAo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "El4kM4Skmnc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEEC1ERSA_) +STUB("El4tFb9f8dk", _ZNK3sce7Toolkit2NP2V24Core11RequestBase15getFunctionTypeEv) +STUB( + "El7sDMIuJ8k", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEEptEv) +STUB( + "El9pSfyTa1U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "ElEwZT613go", + _ZN3sce7Toolkit2NP10Challenges9Interface13sendChallengeEPKNS1_20ChallengeSendRequestEPNS1_9Utilities6FutureIiEEb) +STUB("ElGny6mhejo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEED2Ev) +STUB( + "ElGyonrbd58", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEEiRNS2_10LibContextEPT_m) +STUB("ElKI+ReiehU", _ZNSt8numpunctIwEC2Em) +STUB( + "ElLB0RVLP7I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEED2Ev) +STUB( + "ElNL9J-OTm0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEaSERKS9_) +STUB( + "ElNkT2LUYaU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE8pushBackERKS9_) STUB("ElNyedXaa4o", sceRazorCpuInitializeInternal) +STUB("ElU3kEY8q+I", _Locvar) +STUB("ElUzZAXIvY0", SSL_getSSLTLSVersion) +STUB("ElXcYHtYqtE", _ZNK3WTF3URL17lastPathComponentEv) +STUB( + "ElZ9I02f5b8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEEC1ERSA_) +STUB( + "ElZhMe6ExPo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEptEv) +STUB("ElarSAjjjas", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament5EventEE5resetEv) +STUB( + "Ell1PBPX3Ws", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEE11release_refEv) +STUB("ElpoPPrD7Tw", _ZN3sce2Np9CppWebApi6Common8IteratorIlEppEv) STUB("ElslOCpOIns", sceAjmBatchJobRunBufferRa) +STUB("ElyRRHXjuw4", _ZN7WebCore9HTMLNames9appletTagE) +STUB( + "Elzyl94I834", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("Em-4arLuEqo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEED1Ev) +STUB("Em5voBytaq0", _ZN7WebCore10FileHandleaSEOS0_) +STUB("Em6rHdmsPXI", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request8SetLikedD1Ev) +STUB( + "Em82U6GATZ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEEC1EPS8_PNS2_10LibContextE) +STUB( + "Em9GcDOUeQw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEneERKS9_) +STUB("EmANKTg9wVg", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_20NpSessionInformationEE17getAdditionalInfoEv) +STUB("EmDE5z8WGPM", _ZN3WTF11Persistence7Decoder6decodeERj) +STUB( + "EmFA2KPkWPo", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEEiRNS2_10LibContextEPT_m) +STUB("EmIR9ZGK08g", _ZN3sce3web15TerminateCsharpEv) +STUB( + "EmJwZx4it44", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEEaSERSA_) +STUB( + "EmPfHtDvDvI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEC1EPS6_PNS2_10LibContextE) +STUB("EmQjXmjizpc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEEC1EPKS6_) +STUB("EmRD5jXfyyc", _ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForReadC1EPNS1_6Common10LibContextE) +STUB("EmRnmWkMaFI", _ZN3sce7Toolkit2NP2V28Matching12RoomPingTimeC2Ev) +STUB("EmWcBzV6g0w", _ZN3PAL9SessionID26enableGenerationProtectionEv) +STUB("EmZaCfGsNnc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEEdeEv) +STUB( + "EmhaF0QRNuI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEE7add_refEv) +STUB("Emnpi9aJl98", _ZN7WebCore28convertToIntegerEnforceRangeIhEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB("EmpW38vZWAY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TSS7TssDataEEC1Ev) +STUB("Emqq9C2Q5Z8", _ZN3sce7Toolkit2NP2V23TSS7TssDataC1Ev) +STUB("EmrfDsAor7Q", _ZN2GK9PlayerPSNC2ERKS0_) +STUB( + "EmsDF75CZAI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("EmxnthSiK7U", _ZN3sce7Toolkit2NP2V212EventsClient5Event13MAX_SIZE_DATEE) +STUB("En+dYUM8u7U", glDeleteVertexArrays) +STUB("En-4CGB-Or4", GCC_except_table345) +STUB("En2uhErgbpM", _ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody14unsetSmallDataEv) +STUB( + "En5uqfsG6sk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEEptEv) +STUB("En8ghzCM0HM", glBlendFuncSeparate) +STUB( + "EnJXr5AJ3+g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE21intrusive_ptr_sub_refEPS9_) +STUB("EnK73YuamtU", _ZN3JSC17JSPromiseDeferred6s_infoE) +STUB("EnMjfRlO5f0", _ZTISt10moneypunctIwLb0EE) +STUB("EnOKtxgFjSU", _ZN7WebCore17PageConsoleClientD1Ev) +STUB( + "EnSZTstFnVg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEixEm) +STUB("EnSoEKglbyc", _ZN12video_parser13cVideoMetaMP413getChapterNumERjPj) +STUB( + "EnUR1gOtjVE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEE7get_refEv) +STUB("EnYKPlIQ0DA", WKContextCreate) +STUB("EnZD-OcBOWA", _ZN7WebCore10Pasteboard7hasDataEv) STUB("Ena7T6bVG5s", sceRegMgrCntlGetFilesCount) +STUB( + "End50zcPc-8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE3endEv) +STUB("EnehEnuAhVo", _ZN3sce2Np9CppWebApi7Matches2V119ResponseTeamResults8setScoreERKd) +STUB("EnesV4gXDtE", _ZNK3sce4Json6Object8iteratorptEv) +STUB( + "EnhITVS0aEM", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("Enhcfvhh2C0", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats8unsetMmrEv) +STUB( + "EnjYaRegu94", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "Ennfd1ObUfU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "EnnlFAkLUKc", + _ZN3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectator15setPushContextsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_24PlayerSessionPushContextEEEEE) +STUB( + "Enr3AUV44tM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEEC2ERSA_) +STUB("EnulGVsNDS8", mono_aot_Sce_PlayStation_Corejit_got) +STUB( + "Eo-wckOY7oI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEEC1ERSA_) STUB("Eo0S65Jy28Q", sceSslGetNotBefore) +STUB("Eo3iJoTQazQ", WKPreferencesSetSansSerifFontFamily) +STUB( + "Eo9k7pUP8-g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEE7get_refEv) +STUB("EoBKLiBSVtA", unumf_openResult_67) +STUB("EoJfBwJ3qss", _ZN3sce7Toolkit2NP2V27Session14SessionDetailsC2Ev) +STUB( + "EobKD5KF5-Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("EoccCF6iOmI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEEdeEv) +STUB("Eoev6gdLaS8", _ZN3sce7Toolkit2NP2V23TUS14DataContentionC1Ev) +STUB("Eofyp3gpCuU", _ZN3sce7Toolkit2NP2V28Matching7Request11SetRoomInfoC2Ev) +STUB("EohScesyHDI", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi24ParameterToReportResults10setmatchIdEPKc) +STUB( + "EoiGLV1dir8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEE7get_refEv) +STUB( + "EojlO98MB4I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEE11release_refEv) +STUB( + "Eor8lysi8pA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEC1EPNS2_10LibContextE) STUB("EotR8a3ASf4", pthread_self) +STUB("Eota8FMl3bc", _ZN7WebCore17HTMLScriptElement7setTextERKN3WTF6StringE) +STUB("EoxXe2Cl1rA", _ZTVN9Inspector21InjectedScriptManagerE) +STUB( + "Ep1uD0m4qR0", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitations10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_49PostPlayerSessionsSessionIdInvitationsRequestBodyEEE) +STUB( + "Ep5JoGYdScs", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10setString3EPKc) +STUB("EpAnju3ofLU", WKPageReloadExpiredOnly) +STUB( + "EpCvivolzx8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEaSERKS9_) +STUB("EpIfo9S64Yc", _ZN3sce3Xml3Sax6ParserC1Ev) +STUB( + "EpR-x3YqzPU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEmmEi) +STUB( + "EpRQviD9RCQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEE7get_refEv) +STUB("EpUU3kS7Oxg", _ZN3sce2Np9CppWebApi7Matches2V117ResponseMatchTeamD1Ev) +STUB("EpYd-oklLoY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10CategoriesEEC1Ev) +STUB( + "EpmkRKzqbXw", + _ZN7WebCore13MutationEvent17initMutationEventERKN3WTF10AtomStringEbbPNS_4NodeERKNS1_6StringES9_S9_t) +STUB("EpmvIVUUUx0", + _ZN6WebKit17ChildProcessProxy15dispatchMessageEPN7CoreIPC10ConnectionERNS1_14MessageDecoderE) +STUB("EprDGeWcZe0", __asan_exp_store8_noabort) +STUB( + "Eprbsoz4his", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEEcvbEv) +STUB( + "Eps1IYroXBI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEmmEv) +STUB("Epso29hWGJA", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer9getoffsetEv) +STUB("EpuC2g9LWMY", _ZN3sce7Toolkit2NP2V211SocialMedia7Request7PhotoFbC1Ev) +STUB("Epv0iVbfYMA", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeINS1_11TusVariableEPvEE7destroyEPS6_) +STUB( + "EpwclcOuk9U", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEeqERKS9_) +STUB("EpyWvhlGDaw", WKWebsiteDataStoreConfigurationGetNetworkCacheSpeculativeValidationEnabled) STUB("Eq+fDFaK3i0", sceRegMgrNonSysCheckError) +STUB("EqCoCs9oKuE", _ZNK3sce2Np9CppWebApi7Matches2V119ResponseTeamResults6toJsonERNS_4Json5ValueEb) +STUB("EqIA-2uMpIo", _ZN7WebCore11JSImageData9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("EqJRF++XyD4", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V18PlatformEEaSERKS7_) +STUB("EqKbJ0+Ql7U", u_charType_67) +STUB("EqL+-BktuAA", _ZN3JSC8JSObject11analyzeHeapEPNS_6JSCellERNS_12HeapAnalyzerE) +STUB( + "EqLt0MQsGvI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEC2EPNS2_10LibContextE) +STUB("EqMYo6+xXPk", _ZN3JSC11createErrorEPNS_14JSGlobalObjectENS_9ErrorTypeERKN3WTF6StringE) STUB("EqMtBHWu-5M", sceAppContentSmallSharedDataUnmount) +STUB("EqN+ED6P2FA", FT_FloorFix) +STUB( + "EqNqEBcL75U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEC2Ev) +STUB("EqQQgky8sBU", _ZN3sce2Np9CppWebApi7Matches2V121ResponseTeamStatistic9setTeamIdEPKc) +STUB("EqRj7d5zUU4", _ZN7WebCore7JSEvent9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("EqX45DhWUpo", _ZN3sce2np6Thread4InitEPKcimm) STUB("EqcPA3ugRP8", sceSystemServiceDeclareReadyForSuspend) +STUB("EqcvUDNk4kE", _ZN7WebCore4Page29applicationDidEnterBackgroundEv) +STUB("EqeD-cS7HOA", __sanitizer_cov_indir_call16) STUB("EqfGtRCryNg", sceUserServiceSetPbtcWednesdayDuration) +STUB("Eqig13PagU8", AnnotateNewMemory) STUB("EqjVAyTOkKc", sceIduUtilDownloadInstallPkg) +STUB("EqjWj2OxQ68", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V18PlatformEEmmEv) +STUB( + "Eqjd0iDQNuM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEC2ERKS7_) +STUB("EqmzIcR5AVc", _ZN7WebCore8JSPath2D14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB( + "EqngeFUtWHU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE8capacityEv) +STUB("Eqrp-3495x8", _ZN7WebCore10TimeRanges13intersectWithERKS0_) +STUB("Eqyj4CKVl5E", fuse_chan_data) +STUB( + "EqzUbcko6xo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEED1Ev) +STUB("Er0Lin-u20o", FT_Stream_GetLong) +STUB("Er0cbD8FKr8", u_enumCharNames_67) +STUB( + "Er0f6YqPDCA", + _ZN7WebCore15UserInputBridge21handleMouseForceEventERKNS_18PlatformMouseEventENS_11InputSourceE) +STUB( + "Er0ky52PzNE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("Er2rl6X-19s", _ZN7WebCore16ThreadGlobalDataD1Ev) +STUB("Er4YajbBg2k", _ZN9Inspector15ScriptCallFrameD1Ev) +STUB( + "Er5QliqBi5c", + _ZN7WebCore17FrameLoaderClient56dispatchWillDisconnectDOMWindowExtensionFromGlobalObjectEPNS_18DOMWindowExtensionE) +STUB("Er5RROJCXYo", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry12getAccountIdEv) +STUB("Er6E1f2+plI", _ZN3sce2Np9CppWebApi7Matches2V15Error8fromJsonERKNS_4Json5ValueE) +STUB("ErBCp3pvQD4", utrie2_enumForLeadSurrogate) +STUB("ErDg0p+d4AE", _ZN7WebCore14ScrollableArea19invalidateScrollbarERNS_9ScrollbarERKNS_7IntRectE) +STUB("ErESRy2z8Tc", + _ZNK3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayer12getAccountIdEv) +STUB( + "ErEUIz7a6iE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEEC2ERKSA_) +STUB("ErEtiiAyg4Y", + _ZN3sce2Np9CppWebApi13InGameCatalog2V516ContainerFactory7destroyEPNS3_9ContainerE) STUB("ErH6tKS7fzE", sceShareCaptureScreenshot) +STUB( + "ErJsDKazBkg", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V134ConnectionQualityPropertiesFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_29ConnectionQualityWiredMetricsEEENS8_INS3_32ConnectionQualityWirelessMetricsEEEPNS8_INS3_27ConnectionQualityPropertiesEEE) +STUB( + "ErKkW7m7ROg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEC1EPKS8_) +STUB("ErMtG2aEQk8", _ZN7WebCore5Range6createERNS_8DocumentERKNS_8PositionES5_) +STUB( + "ErPgMam83-k", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer14setserviceNameENS5_11ServiceNameE) +STUB( + "ErRKLHle1Ac", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("ErWkFcqcBYE", WKIconDatabaseCopyIconDataForPageURL) +STUB("Erdh435OyM0", _ZN3sce7Toolkit2NP2V27Session7Request6UpdateD2Ev) +STUB( + "ErfjZVv24eU", + _ZNK3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V19RatingApi21ParameterToPostRating13isInitializedEv) +STUB("ErgHdDWCpVc", WKPageIsClosed) +STUB("Ern79HkuLec", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V18PlatformEEneERKS7_) +STUB("Erp13lgq9JM", _ZNK3sce2Np9CppWebApi7Matches2V121ResponsePlayerResults10scoreIsSetEv) +STUB( + "ErqafFwIFwA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEC1EPS6_) +STUB("ErrYizaCG6E", _Latin1Data_67) +STUB("EruGr0TR1CU", FT_Face_SetUnpatentedHinting) +STUB( + "ErvqoDGAWBI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEmmEv) +STUB("ErwSbohShIc", WKPageRubberBandsAtTop) +STUB("ErxaIj9IxWo", _ZNK3sce2Np9CppWebApi13InGameCatalog2V515ContainerRating10countIsSetEv) +STUB("Es-CwSVnalY", _ZN3sce2np9Semaphore7DestroyEv) +STUB( + "Es1LjRkmxYg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEEdeEv) +STUB("Es2NKgJgvdw", _ZN7WebCore16JSHTMLCollection9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB( + "EsGKNdEVShU", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersD1Ev) +STUB("EsGW6Kl4OW8", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking10UsersRanksEED1Ev) +STUB("EsKocMZlRkU", _ZN7WebCore21BlobDataFileReference6createERKN3WTF6StringE) +STUB( + "EsKp8iBwvYY", + _ZN9Inspector24NetworkBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "EsOOSShnC0M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC2Ev) STUB("EsSbFnoWxVc", sceAudiodecInitialize) +STUB( + "EsTxCSVZlqc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEptEv) +STUB( + "EsUXFBpt6DQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEE3getEv) +STUB( + "EsYK34tgTag", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEmmEv) +STUB("EsbKry4ko8k", _ZN3sce7Toolkit2NP2V29Challenge7Request16GetChallengeDataD1Ev) +STUB( + "EshsZv7oIdQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEppEv) +STUB("EsoUVUbGMdg", _ZN4IPMI4impl10ClientImplD0Ev) STUB("Esr9db8S1S0", sceAjmBatchJobGetGaplessDecode) +STUB("EsyFJczeZrA", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V112OnlineStatusEEmmEi) +STUB( + "EsyrRDokkYE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "EszWSQh260Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEneERKS9_) +STUB("EszjHLoMAVY", __asan_store8) +STUB( + "Et5N7XTCEG4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEC1Ev) +STUB("EtAkabgjh3U", _ZN3JSC9HandleSet4growEv) STUB("EtEs+C-L3FY", sceUpsrvUpdateGetBetaFeatureListUrlForUpdate) +STUB( + "EtM-2qv2Y44", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEC1EPS8_) +STUB("EtMKzsL3G6k", uprv_decContextSetStatus_67) +STUB( + "EtMQrE2lp4o", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("EtO3z7ToC6Y", _ZNK7WebCore7Element15absoluteLinkURLEv) +STUB("EtPFfT9o1S0", _ZN7WebCore15AffineTransform9translateEdd) +STUB( + "EtVZNZdIcMw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEaSERKS9_) +STUB("EtYVzweeOW8", _ZN3sce2Np9CppWebApi7Matches2V120RequestTeamStatisticD2Ev) +STUB( + "Etdhu-TeMVI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEeqERKS9_) +STUB("EtfRt5hez60", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData10setifMatchEPKc) +STUB("Etii7YdOfl0", _ZTVN7WebCore11DisplayList9ClearRectE) +STUB("EtkHCzxwif8", mono_log_open_logfile) +STUB("EtpM9Qdy8D4", __floattidf) STUB("Etq15-l9yko", sceNpDbgDumpBinary) +STUB("Etvu03IpTEc", _ZN3sce2np15CancelableScope5BeginEPNS0_6HandleEPKciS5_) +STUB("EtxxVxJKJLA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsD1Ev) +STUB( + "Eu-28lnK+PM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEEC2ERSA_) +STUB("Eu0JtjGCmkU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE5beginEv) +STUB( + "Eu4lBFZ1RcY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE3endEv) STUB("Eu7QNB9x1r0", sceSysUtilSendNpDebugNotificationRequest) +STUB("Eu95jmqn5Rw", _ZN3sce4Json14InitParameter217setFileBufferSizeEm) +STUB("EuCGceMHgS8", _ZN3WTF15AutomaticThread7tryStopERKNS_14AbstractLockerE) +STUB("EuFvqF73SwU", u_enumCharNames) +STUB("EuHCn7yiExw", _ZN7WebCore13JSHTMLElement14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB("EuJ8rkwxX9c", _ZN7WebCore26MessagePortChannelProvider17setSharedProviderERS0_) +STUB( + "EuJgsNai158", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEC1Ev) STUB("EuM4L2UOzSQ", sceNpManagerUtilSystemMessageWithUserId) +STUB( + "EuOueAR9pJ0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEdeEv) +STUB( + "EuPpAmggO70", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEED2Ev) +STUB("EuQCNA5RsXI", _ZNSt9basic_iosIwSt11char_traitsIwEE5clearENSt5_IosbIiE8_IostateEb) +STUB("EuQE83L6prs", _ZNK7WebCore11RenderLayer24needsCompositedScrollingEv) +STUB("EuSlxfcPOrc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEptEv) +STUB( + "EuUcsHVy068", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEmmEv) +STUB( + "EuUuvv2KARo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEEC2ERKS9_) +STUB("EuV8syTZP20", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEC1Ev) +STUB( + "EuWhmrA1m0s", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEppEv) +STUB("Eubj+4g8dWA", _ZNSt14numeric_limitsIyE8digits10E) +STUB( + "EufVDB3Hnhg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEeqERKS9_) STUB("Eul7AGEpjLo", sceAmprAprCommandBufferMapBegin) +STUB("EuvdPRQiK7g", _ZNK7WebCore17FrameLoaderClient24isEmptyFrameLoaderClientEv) +STUB("EuvnHP5UHos", Java_com_sony_gemstack_org_havi_ui_HBackgroundImageDecoder_freeSurface) +STUB( + "EuzR99wkjPs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEED1Ev) +STUB("Ev+2GetBNwE", _ZN3WTF9URLParser19parseURLEncodedFormENS_10StringViewE) +STUB("Ev0iNcSQkaQ", mono_assembly_close) +STUB("Ev1ElNAm6SE", GCC_except_table175) +STUB("Ev2wobaSotg", _ZN3sce7Toolkit2NP2V26Trophy7Request20GetTrophyPackSummaryD2Ev) +STUB("Ev3BqJ-U1Fg", FT_GlyphLoader_Reset) +STUB("Ev4YVLUDVe0", _ZNK7WebCore10ScrollView14useFixedLayoutEv) +STUB("Ev64kl21-zs", rgctx_fetch_trampoline_mrgctx_114) +STUB("Ev7SF7bb70o", _ZNK3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead11getOnlineIdEv) +STUB("EvAZolE3syo", _ZN3sce7Toolkit2NP2V212NetworkUtils13NetStateBasic5resetEv) +STUB("EvF-FcIJopU", mono_runtime_init) STUB("EvKaSXRNt9o", sceValidationGpuGetErrorInfo) +STUB( + "EvKfBqZLwxg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE3endEv) +STUB( + "EvLNN3K++yo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB( + "EvNxm7Y1pI4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEC1Ev) +STUB("EvPDm3anqN4", _ZN3sce7Toolkit2NP2V28Matching7Request15SendRoomMessageC2Ev) +STUB( + "EvTs1Dmvn4Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("EvVXKPeuyiY", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V128SetMultiVariablesRequestBody17getNpServiceLabelEv) +STUB("Eva2i4D5J6I", _ZSt14set_unexpectedPFvvE) +STUB("EvaWvuniNCE", _ZN7WebCore14stopResolveDNSEm) +STUB("EvcZEqj6aPU", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V333PsnWebError_error_missingElements9nameIsSetEv) +STUB("EveUtaCYQgk", FTA_Remove_Module_truetype) +STUB( + "EviQs3RBmoM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEED1Ev) +STUB( + "Evq+NhTb3yg", + _ZN3sce2Np9CppWebApi14SessionManager2V146PatchPlayerSessionsSessionIdRequestBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_39PatchPlayerSessionsSessionIdRequestBodyEEE) +STUB( + "EvsNMHaw4jM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEC2EPS7_PFvS9_EPNS2_10LibContextE) +STUB("Evu+Yc14KgU", _Z26Ime_SetCaretGeometryNativemN3sce11playstation4core3Ime8ImeCaretE) +STUB("EvvQwl+bIv4", DvdMac) STUB("EvwmfJ-sQEQ", sceKernelSetUpdatemode) +STUB( + "EvxfaXs-vUA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "EvyzxvKEZTo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEeqERKS9_) +STUB("Ew0nc8fY+h0", _ZN3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSessionD2Ev) +STUB( + "Ew680wM4Fdk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEeqERKS9_) +STUB( + "EwAktS7HFkc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE5beginEv) STUB("EwC6IQrXGoY", sceSystemLoggerInitialize) +STUB("EwIYjHJpkKU", _ZN3sce2Np9CppWebApi12Leaderboards2V14User9unsetPcIdEv) +STUB( + "EwJQnIc2Kuo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEE7get_refEv) +STUB( + "EwJZK4vmFKk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEE11release_refEv) +STUB( + "EwKylsIEkdg", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead19setJoinableUserTypeERKNS3_22CustomJoinableUserTypeE) +STUB( + "EwMJCFvVvm8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) STUB("EwNylPdWUTM", sceNpTrophy2GetTrophyInfo) +STUB( + "EwT0RLATwf0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEC1EPNS2_10LibContextE) STUB("EwXvkZpo9Go", sceHmdInternalSetS3dPassMode) +STUB("EwZGwzhgDAA", _ZN7WebCore12GCController41setJavaScriptGarbageCollectorTimerEnabledEb) +STUB("Ewd+kXqU2Bc", SystemServiceParamGetInt) +STUB("EwdSfaUJOnI", _ZN3JSC12DateInstanceC1ERNS_2VMEPNS_9StructureE) STUB("EwdhSaFjU7A", sceBufferAlloc) STUB("EwfSRaPlCE4", sceShellCoreUtilGetCheckerString) +STUB("Ewg+pBX78M8", _ZNK7WebCore4File12lastModifiedEv) +STUB("EwhDKyvR0-Y", _ZN7WebCore20TransformationMatrix5flipYEv) +STUB("EwiJ5sn0kTg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEaSERS7_) +STUB("Ewj-FG9Kj7I", _ZN3JSC7Symbols29allocateTypedArrayPrivateNameE) STUB("EwjWGcIOgeM", sceGnmDriverInternalRetrieveGnmInterfaceForHDRScopes) STUB("Ewjywv3W4QA", sceSystemServiceGetSubAppTitleId) +STUB("EwkmP0c0c2Q", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13boolean5IsSetEv) +STUB( + "EwkqixgoDWM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEcvbEv) +STUB( + "Ewmb9Cjrssg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEC1EPS8_) +STUB( + "Ewu1XfryEQ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("EwuWGgfsy0U", ustr_hashICharsN_67) +STUB( + "EwyVTadJn8I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEED1Ev) +STUB( + "Ex+OAmhl6nk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEEC2ERSA_) +STUB("Ex+cnRETa4s", _ZN7WebCore9FrameView26adjustTiledBackingCoverageEv) +STUB( + "Ex1jfSDYa8k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEEaSERKSA_) +STUB( + "Ex5PhVJqazk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) STUB("Ex6oewvPS+o", ScePsmMonoArrayElementSize) +STUB("Ex6z08qINEI", _ZNK7WebCore24CoordinatedGraphicsLayer26isCoordinatedGraphicsLayerEv) +STUB("Ex9O99bavJU", _ItL_aT) +STUB( + "ExAXV609bRM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEED1Ev) +STUB( + "ExCBh6sNPWo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEE11get_deleterEv) +STUB("ExIJ4oFvvzU", _ZN4IPMI6Server12EventHandlerD0Ev) +STUB("ExLGXXGTfdI", _ZN7WebCore24CoordinatedGraphicsLayer36requestPendingTileCreationTimerFiredEv) +STUB("ExRR7lpqzvo", mono_btls_ssl_get_ciphers) +STUB("ExRWw8VYQ0U", _Z28scePlayGoDevGetHashTableInfoP25ScePlayGoDevHashTableInfo) +STUB("ExTBCFtg+Wc", _ZN7WebCore4Page40passiveTouchEventListenerRectsForTestingEv) +STUB( + "ExUMNp7syTM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("ExVINUt2j4U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEcvbEv) +STUB( + "ExazMHZlYGM", + _ZN7WebCore20SVGPathStringBuilder16curveToQuadraticERKNS_10FloatPointES3_NS_18PathCoordinateModeE) STUB("ExeLuE3EQCQ", sceNpLwCondWait) +STUB("ExiSLfgc8Ds", __asan_stack_free_9) +STUB("ExiZtMOvZ-A", + _ZNK3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator16customData1IsSetEv) +STUB("Exk+A7qWe-o", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setBoolean9ERKb) +STUB("ExluI5X0llk", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setBoolean5ERKb) +STUB("ExontidGbqc", _ZN3JSC19iteratorForIterableERNS_9ExecStateEPNS_8JSObjectENS_7JSValueE) +STUB( + "Exq7qTyGZaA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("ExsvtKwhWoM", CA_MGMT_convertProtectedPKCS8KeyToKeyBlob) +STUB( + "Ey1QoQWEFxw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE3endEv) +STUB( + "Ey7RBmWkMS4", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitationsaSERS5_) +STUB("Ey7ZfkxjDsk", mono_aot_Sce_Vsh_DiscPlayerjit_code_end) +STUB( + "Ey7rLaDMuHk", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB( + "Ey9pCFtdCc0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEEC2Ev) +STUB("EyCwdRqOZTY", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request7GetFeedD1Ev) +STUB("EyD1Vj67-pU", _ZTVN7WebCore9GLContextE) +STUB("EyHDz7bL4q8", _ZN7WebCore12SharedBuffer21createFromReadingFileERKN3WTF6StringE) +STUB( + "EyJHv1J2h9o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEC2Ev) +STUB("EyJaNuOarus", _ZN3sce7Toolkit2NP2V27Ranking17GetGameDataResultD2Ev) +STUB("EyLiGmBVSo8", + _ZNK7WebCore13JSHTMLElement21pushEventHandlerScopeEPN3JSC14JSGlobalObjectEPNS1_7JSScopeE) +STUB("EySRvVSytPw", _ZNK7WebCore8DOMTimer15alignedFireTimeEN3WTF13MonotonicTimeE) +STUB("EyW-cASbo5g", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17GetGameDataResultEED2Ev) +STUB("EyWYVPvYnzg", _ZN3sce2Np9CppWebApi11UserProfile2V16AvatarD2Ev) +STUB( + "EyWl9MkM4f4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB("EyZ8aGsCW8g", _ZN12video_parser18cProfileCheckerMp4C2Ev) STUB("Eye1lgCj9yo", sceKernelIccIndicatorStandbyShutdown) +STUB( + "EyePlSSS8dw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEE7add_refEv) +STUB("EygNpeJhPT8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEEdeEv) +STUB( + "Eyhneu+++7A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEdeEv) +STUB("EyhtbPFMWNA", _ZN3sce2np10MemoryFile4ReadEPNS0_6HandleEPvmPm) +STUB("Eyilh6sEB7Y", _ZN3sce7Toolkit2NP2V210Tournament20OneVsOneMatchDetailsC1Ev) +STUB("EyqqC2OwC9M", _ZN9Inspector27LayerTreeFrontendDispatchernaEm) +STUB("Eyr+rWtJgks", _ZN3WTF18dateToDaysFrom1970Eiii) +STUB("EyuEiAvlSDQ", Java_java_awt_GnmGraphics_nativeCopyArea) +STUB("EyvrFZ67-fo", sqlite3_value_double) +STUB("EyxwvvHBOTw", mono_aot_mscorlibunbox_trampolines) +STUB("Ez-Pj0QWgSc", WKBundleNavigationActionGetShouldOpenExternalURLs) STUB("Ez2iQHniESc", sceDeci5CreateHostProcessAndWait) +STUB( + "Ez8HKmf+sK4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE5emptyEv) +STUB("Ez8gQSpXsec", fuse_add_direntry) +STUB("Ez8xjo9UF4E", recv) +STUB("EzAwc3tWi+o", _ZN2GK9PlayerPSN17cancelRequestGameEv) +STUB("EzGHWSQ-uko", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEC2Ev) +STUB("EzL6OajgmVk", _ZN7WebCore9HTMLNames13integrityAttrE) +STUB( + "EzNlP5WQTGI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE8pushBackERKS8_) +STUB( + "EzNwnMbgzsY", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEED2Ev) +STUB("EzPk-I96yfg", _ZN3sce7Toolkit2NP2V29Messaging12Notification16NewInGameMessageC1ERKS5_) +STUB("EzTlt0HmQsk", mono_property_get_parent) +STUB( + "EzUpYFDNf3Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEC2Ev) +STUB( + "EzV1XEVw0JQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEC2Ev) +STUB( + "EzWzd+BUIXE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE7popBackEv) +STUB("Eze5Qz4pO6A", _ZN3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate11setTeamNameEPKc) STUB("EziLjfyTnKI", _sceNpAllocatorExStrndup) +STUB("EzuahjKzeGQ", _ZNSt15_Num_float_base15tinyness_beforeE) +STUB( + "EzvsEGrdNIU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEED1Ev) STUB("EzzSJz6yuMc", sceFiosFHSyncSync) +STUB( + "EzzepK6GCrs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEmmEi) +STUB("Ezzq78ZgHPs", wcschr) +STUB("F+2mXPmh-7s", u_getNumericValue) +STUB( + "F+4oCUylxcM", + _ZN7WebCore22ScriptExecutionContext47canSuspendActiveDOMObjectsForDocumentSuspensionEPN3WTF6VectorIPNS_15ActiveDOMObjectELm0ENS1_15CrashOnOverflowELm16EEE) +STUB("F+7llwLcYHI", WKContextRefreshPlugIns) +STUB( + "F+AmVDFUyqM", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERx) +STUB("F+EdH4XRvTw", _ZN7WebCore28InspectorFrontendClientLocal8SettingsnwEmPv) +STUB( + "F+F5oI1D+RQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEE7get_refEv) STUB("F+IvO6vqpbA", sceFsTransactionStart) +STUB("F+Mp2OR4H+c", _ZN3WTF11Persistence7Decoder21decodeFixedLengthDataEPhm) +STUB("F+URsD5wKoo", + _ZN3sce2Np9CppWebApi11UserProfile2V111PresenceApi28ParameterToGetBasicPresencesC1ERS5_) +STUB( + "F+VCZx1H9Uo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEixEm) +STUB( + "F+X+pzQfSoE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE10setContextEPNS2_10LibContextE) +STUB("F+Xbt14NwoU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEEmmEi) +STUB( + "F+afxtvvQ+k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEC1Ev) +STUB("F+cp2B3cWNU", + _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd) STUB("F+eQlfcka98", sceNpTusGetMultiSlotVariable) +STUB("F+ehGYUe36Y", _ZNSt14_Num_ldbl_base15has_denorm_lossE) +STUB("F+hD7TU85Sw", _ZN3sce2np18HttpConnectionPool17ReleaseConnectionEi) +STUB("F+m2tOMgeTo", __atomic_load_4) +STUB("F+ogdDTLr1s", udtitvfmt_closeResult_67) +STUB("F+t58VrhPQg", _ZN12video_parser5vpcom6StringD2Ev) STUB("F+xsDVy+gqw", sceLoginMgrServerNotifyHmdConnectInfo) STUB("F+yfmduIBB8", scePthreadAttrSetstackaddr) +STUB("F-5EK+9Ue1Y", mono_aot_Sce_CloudClient_App_Platformjit_got) +STUB("F-7nYSizbvc", g_shell_parse_argv) +STUB("F-84AnXgtio", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16TrophyPackTrophyEE19setCustomReturnCodeEi) +STUB("F-AkFa9cABI", _ZN3sce2np4UserC2Ev) +STUB( + "F-DovztmM9Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEEC2Ev) +STUB("F-Fql-LTx4o", mono_get_void_class) +STUB( + "F-KitvVOrpQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "F-Tz7UzYtJ4", + _ZN15AbstractStorage4Item8set_metaERN23sceMetadataReaderWriter8MetadataERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEm) +STUB( + "F-UMwv0CiMU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEC1Ev) +STUB("F-XZNK6Y-p0", g_find_program_in_path) +STUB("F-bQmUqmTpI", _ZNK3sce4Json5ValueixERKSbIcSt11char_traitsIcENS0_8StlAllocIcEEE) +STUB("F-cW5QXnhxo", _ZNK7WebCore15CertificateInfo12isolatedCopyEv) +STUB( + "F-coDQKHI6Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEeqERKS9_) +STUB("F-ejRKJlEiQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEED1Ev) STUB("F-g-G0oJegs", sceShellCoreUtilFillUpSpaceOnSmrHdd) +STUB( + "F-hFx3hm3Bw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEC1Ev) +STUB("F-iEWTPtfyw", WKPreferencesGetIsSecureContextAttributeEnabled) STUB("F-iMNHd4L7I", scePssSoundPlayerGetSurroundPan) STUB("F-nn3DvNKww", sceSystemServiceActivateMpeg2Abort) +STUB( + "F-pHtydHBT8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "F-q2n6JH4UQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE4sizeEv) +STUB("F-sVzaBbUCI", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V223FilterProfanityResponse11statusIsSetEv) +STUB("F-u9aPW-k64", _ZN7WebCore11MathMLNames5moTagE) +STUB("F-uVRMPiWzg", ulist_removeString_67) +STUB("F-vtAS2uuns", WKPageGetGapBetweenPages) +STUB("F-zFpvJdGSc", _ZN3sce2Np9CppWebApi13InGameCatalog2V515ContainerRating8setScoreERKf) +STUB("F0+00OPNsz8", __start__Zinit_array) +STUB("F00rJQ1aWWA", _ZN7WebCore19JSHTMLSelectElement14finishCreationERN3JSC2VME) +STUB( + "F05P+h4OpuM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEE11release_refEv) +STUB("F09B23u5GSU", _ZN15AbstractStorage14YoutubeContentD2Ev) +STUB("F0CGnQOq7rY", rgctx_fetch_trampoline_rgctx_121) +STUB("F0DWeYML2fs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEcvbEv) +STUB( + "F0Ed5JaJFns", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEaSERKS7_) +STUB( + "F0Er9SyqhkY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "F0I6kyFAA5E", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo22getxPsnAtomicOperationEv) +STUB("F0Mf2UJ06v8", _ZNK3WTF9MediaTimecvbEv) +STUB( + "F0RLanQwP-Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEED2Ev) STUB("F0Sos4cB8Zg", sceEditMp4Terminate) STUB("F0VSNgqS1+g", sceApplicationSystemReboot) +STUB( + "F0X4ZzUC2FY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEptEv) STUB("F0XIzrG5yvw", sceLoginDialogClose) STUB("F0Y42t-3e18", sceAgcDriverInitResourceRegistration) +STUB("F0ZOyF38ynA", isobmf_box_gettype) STUB("F0ZXt5q0ZTA", sceAgcDriverGetDefaultOwner) +STUB("F0e60JHYx9M", _ZN9Inspector28InspectorScriptProfilerAgentnaEmPv) +STUB("F0fNBmtdOgo", _ZNK7WebCore18MessagePortChannel31hasAnyMessagesPendingOrInFlightEv) +STUB( + "F0nZMGk9sv0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEC1Ev) +STUB( + "F0ovT0t0MHI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("F0pINIU7TtY", WKPreferencesSetSuppressesIncrementalRendering) +STUB("F0rrNsJLnZ4", WKPreferencesSetRegionBasedColumnsEnabled) STUB("F0wuEvioQd4", sceUserServiceGetGlsCameraPosition) +STUB("F0x0R2VBhKc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEEC1ERKS9_) +STUB("F0y9i1GoH34", _ZN3sce7Toolkit2NP2V26Friend7Request10GetFriends13MAX_PAGE_SIZEE) +STUB("F16solOlH-M", _ZN7WebCore4Path14addQuadCurveToERKNS_10FloatPointES3_) +STUB("F1FQRs9dX74", _ZN3sce2Np9CppWebApi13InGameCatalog2V513ContentRating8unsetUrlEv) +STUB("F1HbpPUnsvU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116InitialJoinStateEEmmEv) +STUB("F1J5HXb9feo", _ZN3WTF22removeProcessPrivilegeENS_16ProcessPrivilegeE) +STUB( + "F1J6P2zePBU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "F1JIOENWUso", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEppEi) STUB("F1P+-wpxQow", sceNpPartyGetMemberInfo) +STUB("F1P8FVovKRs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEEaSERS7_) +STUB( + "F1UGagOmV1Q", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEdeEv) +STUB( + "F1UPnxDvAPQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE5emptyEv) STUB("F1XWLxplruo", sceMoveTrackerPlayStep) +STUB( + "F1Ydt9e4hAg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEC2EPS6_PFvS8_EPNS2_10LibContextE) STUB("F1dCP7qkqok", sceFiosTimeIntervalFromNanoseconds) +STUB("F1eYELxTKGQ", WKOriginDataManagerGetTypeID) +STUB("F1gzOpSRDHY", _ZN7WebCore11MathMLNames8moverTagE) +STUB( + "F1jzcqU0BV0", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEEiRNS2_10LibContextEPT_m) +STUB("F1nFfw-1gX0", _Z26sceRazorGpuThreadTraceSavePKc) +STUB("F1o13VbrKb4", _ZN7WebCore9SampleMap9addSampleERNS_11MediaSampleE) +STUB("F1zx98TJiz4", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V18SortModeEEneERKS7_) STUB("F20xA1NsG9s", sceShellCoreUtilDeclareEndOfExternalStorageAppMove) +STUB("F27xQUBtNdU", _ZNKSt8ios_base7failure8_DoraiseEv) +STUB( + "F29Whg2qTMM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEppEv) +STUB("F2A0G-vIz0k", _ZN7WebCore18TextureMapperLayer26computeTransformsRecursiveEv) +STUB( + "F2F49IWey6w", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEptEv) +STUB( + "F2T-o4cdLAE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEE6assignEPS5_PFvS7_EPNS2_10LibContextE) +STUB("F2T58EyY+rU", g_PS4TitleNPSecret) +STUB("F2YtR1KDZL8", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V115LastUpdatedUser12setAccountIdEPKc) +STUB("F2ZShEhLU8Y", cairo_user_to_device_distance) +STUB("F2alK5FIh2Y", monoeg_g_list_copy) +STUB( + "F2bVezCk4e0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEE3getEv) +STUB( + "F2bbUSXj910", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEptEv) +STUB( + "F2df5HzFU2I", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEeqERKS9_) +STUB("F2dxLUl-PKo", _ZN3JSC22DeferredWatchpointFireC2ERNS_2VME) +STUB( + "F2fffKdiys8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE5emptyEv) +STUB("F2hoSCv-7Io", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEdeEv) +STUB( + "F2i8OCaSTMg", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "F2jfKooWAr0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEEC2Ev) +STUB("F2lKLnZwroM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEC1ERKS7_) +STUB("F2mHImVJQPM", WKBundlePageOverlayFractionFadedIn) +STUB("F2nN1dBDiyM", _ZN6icu_6713UnicodeStringD2Ev) +STUB( + "F2tstga0tRw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEC2EPS6_PNS2_10LibContextE) +STUB( + "F2u7VJoHjSM", + _ZN7WebCorelsERN3WTF10TextStreamERKNS0_6VectorImLm0ENS0_15CrashOnOverflowELm16ENS0_10FastMallocEEE) +STUB("F2uJJj9ieBQ", _ZNK7WebCore11MessagePort18isLocallyReachableEv) +STUB("F2uQDOc7fMo", _ZNSt14numeric_limitsIyE9is_signedE) +STUB( + "F2uUdOnPf9U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEED2Ev) +STUB("F2umEBpQFHc", _ZN3sce2np9WorkQueue11GetItemByIdEi) STUB("F2w5pQ+lv0o", sceRazorCpuBeginArchiveFileAccess) +STUB("F2xYmg5DiR4", _ZN3sce2np3ipc17ServiceIpmiClient11findServiceEi) +STUB( + "F2y4z7mTHxY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEED2Ev) +STUB("F3149N0oKZQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEppEi) STUB("F31VqfrQ80A", sceAudiodecCreateDecoderEx) +STUB( + "F32U5xyG0oU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEaSERKS7_) +STUB("F35Uj-GMte0", glDrawArraysInstancedEXT) +STUB("F3877Ru6Rgo", _Z28scePlayGoEmuFsGetChunkStatustPtPh) STUB("F3Cug8WEm8k", sceFsPartitionTrim) +STUB( + "F3CwcPgmCAc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("F3DpTj5CpPg", _ZN7WebCore17JSDOMGlobalObject7destroyEPN3JSC6JSCellE) +STUB("F3Eg4srFrVw", + _ZNK3sce2Np9CppWebApi14SessionManager2V130ResponsePlayerSessionSpectator12getAccountIdEv) +STUB( + "F3GUko3Mpy8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "F3HPtJ8MuJ0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEE11release_refEv) +STUB("F3ILcSPTa-c", _ZN9Inspector31ConsoleBackendDispatcherHandlerC2ERKS0_) +STUB( + "F3MBqzsVZeY", + _ZN7WebCore15ArchiveResource6createEON3WTF6RefPtrINS_12SharedBufferENS1_13DumbPtrTraitsIS3_EEEERKNS_3URLERKNS1_6StringESD_SD_RKNS_16ResourceResponseE) +STUB( + "F3NH0spuwMQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEmmEi) +STUB( + "F3PSXxsT11s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE5clearEv) +STUB( + "F3Q8Y6SrfGw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE21intrusive_ptr_add_refEPS9_) +STUB("F3WhQ4dxW5o", GCC_except_table37) +STUB( + "F3bLOHFhS-o", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB( + "F3pHDDRiX60", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody35getComparedLastUpdatedUserAccountIdEv) +STUB("F3qDSOTQ1sU", mono_aot_Sce_Vsh_AppInstUtilWrapperunbox_trampolines_end) +STUB("F3tYXMleY-k", mono_aot_Sce_Vsh_VideoEdit_Wrapperjit_code_start) +STUB("F3v3ysCMIuw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEEmmEi) +STUB( + "F3zFreULt98", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("F4+UVdi0PgY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEED2Ev) +STUB( + "F4+qkV+3vAs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEEdeEv) +STUB("F4-Cii7JB-E", _ZN7WebCore12ChromeClient28clearPlaybackControlsManagerEv) +STUB( + "F40Gbw0dMfs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("F43XzupHfoo", _ZN3sce7Toolkit2NP2V28Commerce19ServiceEntitlementsD1Ev) +STUB( + "F45mMCGKT+0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE6resizeEj) +STUB( + "F48mrWHvorw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEEC1Ev) +STUB("F4AnS9A-OSc", WKPageGetMediaState) +STUB("F4F9g24xmvQ", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEEC1ERKS6_) STUB("F4Kib3Mb0wI", sceKernelGetSanitizerNewReplace) +STUB("F4KlEMYCWXE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEEaSERS9_) +STUB("F4Le3nyuYA8", monoeg_g_slist_prepend) +STUB( + "F4QKzAV-Qms", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("F4VhavRKwcw", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V115NatConnectivityC1EPNS1_6Common10LibContextE) STUB("F4aEZgffle0", sceUserServiceCreateSharePlayClientUser) +STUB("F4jRPgXyp60", _ZN7WebCore9HTMLNames28onwebkitfullscreenchangeAttrE) +STUB( + "F4k18pLoYTQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEC2Ev) +STUB( + "F4kzW65-I90", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB("F4nK8I4PVvw", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEEmmEv) STUB("F4nrEfi-M84", sceVdecCoreSetDecodeInput) STUB("F4pQ5tsDo74", sceSlimglIPCSetup) +STUB( + "F4sJ-phip74", + _ZN3sce2Np9CppWebApi11Matchmaking2V116AttributeFactory6createEPNS1_6Common10LibContextEPKcNS3_13AttributeTypeES9_PNS5_12IntrusivePtrINS3_9AttributeEEE) +STUB( + "F4uG-0FGN74", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEEaSERSA_) STUB("F4w2atwG428", sceMoveTrackerInit) +STUB("F4wrULqVMpE", _ZN7WebCore24MatrixTransformOperationD0Ev) +STUB("F4xfUw8Mo+A", _ZN3WTF10StringImpl7replaceEDsPKhj) +STUB("F4zG4YSZT1Q", wcstok.nullstr) +STUB("F4zedmRTZ-s", Java_com_sony_gemstack_org_dvb_application_AppProxyImpl_n_1init) +STUB("F5+qn-OEl80", + _ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest20childActivitiesIsSetEv) +STUB("F5-TEtpR904", mono_aot_System_ServiceModel_Webjit_code_end) +STUB("F55EB8F2+TU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEEC1ERKS7_) +STUB( + "F55zS-EuT1g", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEdeEv) +STUB("F59F0ZNVcHU", _ZN3JSC2VM20mapIteratorSpaceSlowEv) +STUB("F5JF36X3ATs", _ZN4Manx13KeyboardEventC2ENS0_4TypeEibbbbb) +STUB( + "F5LskrCzNeQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEE3getEv) +STUB( + "F5Up4uEenjU", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) STUB("F5XJY1XHa3Y", sceGnmSqttSelectTokens) +STUB( + "F5ZT5gA9WcM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEppEi) +STUB( + "F5h+T-D+SCk", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi31listEdgeOnlineId2AccountIdBatchEiRKNS4_42ParameterToListEdgeOnlineId2AccountIdBatchERNS1_6Common11TransactionINS8_12IntrusivePtrINS8_6VectorINSA_INS3_11OnlineIdMapEEEEEEENSA_INS4_46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEEE) +STUB( + "F5jGr+eZLKc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("F5plZg-sI2g", _ZN3sce7Toolkit2NP2V212EventsClient5EventC2ERKS4_) +STUB( + "F5uQ6U6czrg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEED2Ev) +STUB( + "F5yaU6TEU8g", + _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody8setUsersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_4UserEEEEE) +STUB( + "F64YvSbKbBE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("F64ZVTNoUkE", delegate_virtual_invoke_3_p) +STUB( + "F668broqvSU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEEdeEv) +STUB( + "F66LuHM8w-k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("F66cDxrHjkg", mono_aot_Sce_PlayStation_Coreunwind_info) +STUB("F69qOv2tB+w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEEC1Ev) +STUB( + "F6ALCip-QVg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEdeEv) +STUB( + "F6BxdO+leyQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEEC2ERSA_) STUB("F6E4ycq9Dbg", sceNpGetUserIdByOnlineId) +STUB("F6E6lfL1GuM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEED1Ev) +STUB("F6FftBCNduo", JVM_IsNaN) +STUB("F6G1N6EbSRc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEEC2ERKS9_) +STUB("F6I3W3FwovU", il2cpp_property_get_parent) +STUB( + "F6TbqOU1QGo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEEC1ERKSA_) +STUB("F6USm2eC+ps", _ZN12Mp4Retriever14processMinfBoxEv) STUB("F6Y46kLqXEQ", sceShellCoreUtilNotificatonRequestedForIDU) +STUB("F6cJ1mb8a3k", __sanitizer_annotate_contiguous_container) +STUB("F6cMNnTEcjU", WKPreferencesSetAllowMediaContentTypesRequiringHardwareSupportAsFallback) +STUB("F6cWO0eoF6s", _ZNK3sce2Np9CppWebApi7Matches2V116JoinMatchRequest6toJsonERNS_4Json5ValueEb) +STUB( + "F6cWxIx+kIQ", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE8sendDataEPKvm) +STUB( + "F6cl3MZpGV0", + _ZN7WebCore7Element34setAttributeWithoutSynchronizationERKNS_13QualifiedNameERKN3WTF10AtomStringE) STUB("F6e0kwo4cnk", sceKernelTriggerUserEvent) +STUB("F6g64Yst1FQ", + _ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends9setoffsetEi) +STUB( + "F6gjo9f5Ne8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("F6hnPpozF2M", WKBundleNodeHandleSetHTMLInputElementAutoFillButtonEnabledWithButtonType) +STUB( + "F6hvvhlbciA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("F6kf+33gnwk", _ZN7WebCore6Editor22styleForSelectionStartEPNS_5FrameERPNS_4NodeE) +STUB("F6nSMD-W0aI", + _ZN3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession14setSessionNameEPKc) +STUB( + "F6oBD4AlMFI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEixEm) +STUB("F6pGveCt2Ho", _ZN7WebCore9FrameView20setCanHaveScrollbarsEb) +STUB("F6tunp5+4ZM", _ZN15AbstractStorage12SerializableC1Ev) +STUB( + "F6vb+yPPv9s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEE5resetEPS9_) +STUB("F6zbHtndY4Y", WKPreferencesGetLongMousePressEnabled) STUB("F70KBaPW924", scePs2EmuMenuDialogInitialize) +STUB( + "F75Zs6qPXYY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEE7add_refEv) +STUB("F76QpBylM0I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEE11release_refEv) +STUB( + "F76vz6hLneA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEC2ERKS7_) +STUB("F78ECICRxho", __ledf2) +STUB("F78Jg0igNZs", mono_jit_info_table_find) +STUB("F7CUCpiasec", _ZNSt10moneypunctIcLb1EED2Ev) +STUB("F7DUp2PfxK0", _ZN3sce7Toolkit2NP2V23TUS25TusDataStatusForCrossSaveC1Ev) +STUB( + "F7Qihqqrpkc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) STUB("F7Sndm5teWw", sceHmdReprojectionStopCapture) +STUB("F7dMbQcpSXQ", __asan_stack_malloc_always_1) +STUB("F7fNJZaRFnU", __libunwind_Unwind_GetRegionStart) +STUB( + "F7gPjhvaRJU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEmmEv) +STUB("F7gcH2DGnpA", uspoof_setAllowedLocales_67) STUB("F7geI3o4PzI", sceUserServiceSetGlsSortOrder) +STUB("F7l8ZqgNcm0", ucol_previous_67) +STUB("F7nxTXHZ95k", _ZN3JSC20failNextNewCodeBlockEPNS_9ExecStateE) +STUB("F7ooCb4rfS0", GCC_except_table165) +STUB( + "F7q3G1G6IIM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEEC1ERKS9_) +STUB( + "F7s+Gj+PXr0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE7popBackEv) +STUB("F7trORiQaSc", _ZN7WebCore21DiagnosticLoggingKeys28activeInBackgroundTabOnlyKeyEv) STUB("F7wS7FbfumQ", sceVoiceQoSSetLocalEndpointAttribute) STUB("F7whoytBofE", sceFiosIsSuspended) +STUB( + "F7zBh34jUcM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V138SetMultiVariablesRequestBody_variables8fromJsonERKNS_4Json5ValueE) +STUB( + "F8-Ugm+4Q8E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEppEi) +STUB("F81hKe2k2tg", fgetws) +STUB( + "F83rIGWzvIs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("F84SCsbc8+s", _ZStL5wfout) +STUB("F8AIoVlzTww", mono_btls_x509_lookup_mono_free) +STUB("F8BZSnKdJGM", _ZN7WebCore9HTMLNames16aria_setsizeAttrE) +STUB("F8BjVmFyYLg", _ZN3sce2Np9CppWebApi7Matches2V114ResponseMemberD2Ev) +STUB( + "F8J2eOg1yMs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEC2Ev) +STUB( + "F8Lt8SxK-vY", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBody5getToEv) STUB("F8NLhWvFemI", sceAgcAcbQueueEndOfShaderActionGetSize) +STUB("F8SVjLhhPs4", _ZN7WebCore9HTMLNames4initEv) +STUB("F8Tdzi8dFwg", delegate_virtual_invoke_imt_m_7_p) +STUB("F8WuSFdu4is", _ZN3WTF14AtomStringImpl6lookUpEPKDsj) STUB("F8aomqtpD98", sceVisionManagerRequestFindUser) +STUB("F8b+Wb-YQVs", wmemmove_s) STUB("F8bUHwAG284", scePthreadMutexattrInit) +STUB("F8c+NpXFNdI", + _ZN3sce2Np9CppWebApi14SessionManager2V116FromNonPsnMemberC2EPNS1_6Common10LibContextE) +STUB("F8eFQFx6JhU", _ZN3sce2Np9CppWebApi7Matches2V116RequestMatchTeam11setTeamNameEPKc) +STUB( + "F8fnNp4ci7M", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB( + "F8g4PHGZ1Gs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEC1EPS8_) +STUB("F8gSmCrblRU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V112TicketStatusEEeqERKS7_) +STUB( + "F8kWDrMMrdk", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("F8luFJ2FEPY", _ZN3sce7Toolkit2NP2V23TUS7Request12SetVariablesC1Ev) +STUB("F8on+5POdxA", _ZN4Manx13WorkQueueImpl28unregisterSocketEventHandlerEi) +STUB( + "F8ploJkzdw0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEC1EPNS2_10LibContextE) +STUB( + "F8ztC84hf24", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEE11release_refEv) +STUB("F963GLVx2ek", _ZN7WebCore16ISOSchemeTypeBox5parseERN3JSC8DataViewERj) +STUB( + "F98YLZc7bsM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEC1Ev) +STUB("F98laITjKEg", _ZN7WebCore17LibWebRTCProviderD0Ev) +STUB( + "F9CIeXtjOWE", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersC2Ev) +STUB("F9Fb9yjLvwI", _ZNK3sce2np14JsonStringImpl5CloneEP14SceNpAllocator) +STUB( + "F9HtJ08qQIs", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditions10initializeEPNS1_6Common10LibContextEPKciNS6_12IntrusivePtrINS3_36SetVariableWithConditionsRequestBodyEEE) +STUB( + "F9L8T5NgwBQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEEC2ERKSA_) STUB("F9LZ1EbJnfo", sceKernelGetCpumodeGame) +STUB( + "F9Q4gwuT+uc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEC1EPNS2_10LibContextE) +STUB("F9R+0Hh-hE0", _ZN3NTF17URLRequestMessage17setIsMainResourceEb) +STUB( + "F9Soa9Wv8L4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEED2Ev) +STUB( + "F9a26lhcTpE", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot11unsetoffsetEv) +STUB("F9bDxOEGeA8", _ZN3WTF22CrossThreadTaskHandlerD2Ev) STUB("F9gmz-sU-Z4", sceCompositorGetDummySize) STUB("F9iDGS9ddCM", scePadLastLotusButtonData) +STUB("F9iLEZoUOtE", _ZN3sce7Toolkit2NP2V28Commerce9ContainerC2Ev) +STUB("F9khEfgTmsE", _ZN3sce2np4TimeplERKS1_) +STUB( + "F9l1q0F0CRE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("F9mo10yTzKs", _Z38sceGpuDebuggerGetEnabledExceptionsMaskPKN3sce3Gnm16LsStageRegistersEPj) +STUB("F9ozKElq1Mw", _ZN3sce2Np9CppWebApi7Matches2V119RequestMatchResults22unsetCooperativeResultEv) +STUB( + "F9sGcGTTF6k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEE7get_refEv) +STUB("F9xskYej0KY", _ZNK7WebCore29DeprecatedCSSOMPrimitiveValue16getRGBColorValueEv) +STUB( + "F9ygy5izHro", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEplEm) STUB("FA-B27CW4RQ", sceMbusDebugSetPriority) +STUB( + "FA08+lU4RGM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEE7get_refEv) +STUB( + "FA440wTsG58", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "FA4YGemSVEY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("FA5W-aFckfU", _ZN9Inspector14InjectedScriptD0Ev) +STUB("FA6DokxKoxg", _ZN7WebCore16DocumentTimeline16resumeAnimationsEv) STUB("FA7dUleeGik", sceFiosOpCancel) +STUB("FABHqGyYu4I", mono_aot_Sce_Vsh_Stickerunbox_trampoline_addresses) +STUB( + "FABdOG6k27s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEE7get_refEv) +STUB( + "FAF+U9pj3Vk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEeqERKS9_) +STUB("FAKbB9NPYHA", _ZNK7WebCore13FetchResponse16resourceResponseEv) +STUB("FAKxcUW+Pqk", UI_method_get_opener) +STUB("FAKyzglgBnQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEC2Ev) +STUB( + "FAOQP39scOk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEEC1Ev) +STUB("FAQjhfUrYTY", _ZN3sce7Toolkit2NP2V210Tournament15RegisteredTeamsC2ERKS4_) +STUB( + "FARZzj70WEQ", + _ZN9Inspector27AnimationFrontendDispatcher16animationCreatedEN3WTF6RefPtrINS_8Protocol9Animation9AnimationENS1_13DumbPtrTraitsIS5_EEEE) +STUB( + "FASHHppuH2Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "FAU5OETP+F0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEEC1ERKS9_) +STUB( + "FAZqyOE6GtA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEmmEi) +STUB("FAah-AY8+vY", _ZTSSt11_Facet_base) +STUB("FAeGfmN1Dio", _ZNK7WebCore24RotateTransformOperation4dumpERN3WTF10TextStreamE) +STUB( + "FAeup1oE8XY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE21intrusive_ptr_add_refEPS7_) +STUB( + "FAk3SVqgJNE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEC1EPS6_PNS2_10LibContextE) STUB("FAqD7n94bYY", sceDebugInitForCoredump) +STUB("FAreWopdBvE", _LXp_invx) +STUB( + "FAuaGGltB4Q", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEneERKS9_) +STUB( + "FB+zeHo2ADA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("FB4JbLYOZmA", _ZN9Inspector22InspectorDebuggerAgentD1Ev) +STUB( + "FB6Wl5h3IVU", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetInteger3Ev) +STUB("FB9S-dovCx0", _ZN7WebCore20UserGestureIndicator18currentUserGestureEv) +STUB("FBABlmX5ktY", _ZN7WebCore9HTMLNames6kbdTagE) STUB("FBCE8LMRNAQ", sceMusicCoreServerGetPlayStartCondition) +STUB( + "FBCM2xdncWo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEE3getEv) +STUB( + "FBFgLBHW4RA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEeqERKS9_) +STUB( + "FBM5JrggMvg", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEiRNS2_10LibContextEPT_m) +STUB( + "FBND2HA9gNE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE10setContextEPNS2_10LibContextE) +STUB( + "FBNI-sshANw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEEC2ERKSA_) +STUB( + "FBQeSm45UyY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "FBRtlLRABts", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE21intrusive_ptr_sub_refEPS9_) +STUB("FBUmWqGJHs8", mono_allocator_strdup_printf) +STUB( + "FBVoRKMrisA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEcvbEv) +STUB( + "FBXK-lfTx0Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEC1ERKS7_) +STUB( + "FBePYJidCUU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEEptEv) +STUB( + "FBgtH0JXtAU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEED2Ev) +STUB( + "FBjmYXkzQL8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEE11release_refEv) +STUB("FBqILEKqTbk", _ZN7WebCore6Editor21insertTextPlaceholderERKNS_7IntSizeE) +STUB("FBqnPsPwRsY", _ZN3NTF17URLRequestDataJob5startEb) +STUB( + "FBx9+zlrXkk", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_19ProductInfoDetailedENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB("FC2Iy9XAhrE", + _ZN7bmalloc15IsoHeapImplBase16finishScavengingERNS_6VectorINS_16DeferredDecommitEEE) +STUB("FC7E1riolAM", _ZN15AbstractStorage14MemfileContent4ReadEPvlPl) +STUB( + "FC8jUAxtaNY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEneERKS9_) STUB("FCD1HduAwWQ", sceSystemLogger2SetEventAsyncEx) +STUB( + "FCE30pnVnZc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEEC1ERKSA_) +STUB("FCELJ0M6+v8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEE7get_refEv) +STUB( + "FCMwtKXijpE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEE5resetEPS9_) +STUB("FCN5sMrQJrQ", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEEixEm) +STUB("FCPRm6IOCCM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEixEm) +STUB( + "FCQSXNccn8s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE8copyFromERKS9_) +STUB("FCSUVvY-0RM", _ZNK15AbstractStorage14MemfileContent7GetStatEPNS_4StatE) +STUB("FCSjphAR2aA", _ZN7WebCore9HTMLNames10onloadAttrE) +STUB("FCYMDgYo3CQ", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119PlayStyleProperties14getCompetitiveEv) +STUB( + "FCbkGMqZDbY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEEdeEv) +STUB("FCcPee0M5uw", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable20lastUpdatedUserIsSetEv) +STUB( + "FCcX5Swgy1M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEC2EPNS2_10LibContextE) +STUB("FCcmRZhWtOk", pwritev) +STUB("FCgBeI1DH8A", _ZN12video_parser12cVpFileCache5fsizeEPy) +STUB("FCgEdpbhY04", _ZN7WebCore9HTMLNames7formTagE) +STUB("FCgpSDPilWk", _ZN3JSC7Symbols41getAsyncGeneratorInternalFieldPrivateNameE) +STUB( + "FClr6-hkMx4", + _ZN7WebCore5Event6createERKN3WTF10AtomStringENS0_9CanBubbleENS0_12IsCancelableENS0_10IsComposedE) +STUB("FCm3IYsmcVM", __tsan_atomic32_fetch_or) +STUB( + "FCqgypxqHpY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEC1EPS6_PNS2_10LibContextE) +STUB("FCuvlxsgg0w", _ZTISt24_Iostream_error_category) +STUB("FCx2DacLDWs", u_strcasecmp) +STUB("FCyEmxhHRsk", _ZN7WebCore9JSDOMRectD1Ev) STUB("FCygF4Ec4so", sceContentExportStart) +STUB("FD7Kfj4cCDs", _ZN3WTF15ThreadConditionD2Ev) STUB("FDAvHQuI70c", sceVideoRecordingCloseByHandle) +STUB("FDDqKE1WhCI", _ZN7WebCore8SVGNames11altGlyphTagE) +STUB( + "FDEK4CLipWw", + _ZN7WebCore31CrossOriginPreflightResultCache16canSkipPreflightERKN3WTF6StringERKNS_3URLENS_23StoredCredentialsPolicyES4_RKNS_13HTTPHeaderMapE) +STUB("FDHnwGEShOQ", _ZN3JSC7JSArray9setLengthEPNS_14JSGlobalObjectEjb) STUB("FDHr4Iz7dQU", sceNetConfigAddMRoute) +STUB("FDNqBnvnrmo", + _ZN7WebCore12ChromeClient34recommendedScrollbarStyleDidChangeENS_14ScrollbarStyleE) +STUB( + "FDOBUXjWPqI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEC1EPS8_) +STUB( + "FDSb1wuEPH8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEE7add_refEv) +STUB("FDStlKcia7Y", _ZN7WebCore22DefaultFilterOperationD1Ev) +STUB("FDTCx504LA0", __ubsan_vptr_type_cache) STUB("FDTOhhPHtps", sceVideoOutSysConfigureLayout) +STUB( + "FDbRjn2utOs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEdeEv) +STUB( + "FDg-qTsN1qo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEEC2ERSA_) +STUB( + "FDmPC5XErno", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEEaSERKSA_) +STUB( + "FDmQHCu3qqk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEEC2ERSA_) +STUB("FDoikEnKM7g", rgctx_fetch_trampoline_rgctx_24) +STUB("FDqeAJDT+TM", _Z17destroyIpcChanneli) +STUB( + "FDr5ORTfrr0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEaSERKS9_) +STUB( + "FE2Me5xQzVA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("FE94b7OBZGA", _ZN3sce7Toolkit2NP2V212ActivityFeed11SharedVideoD1Ev) +STUB( + "FEBiqtQqIXw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("FECzfU3XrrE", _ZN3sce7Toolkit2NP2V212ActivityFeed7CaptionC1Ev) +STUB("FEFV7Ogfd8E", _ZN3WTF15AutomaticThread5startERKNS_14AbstractLockerE) +STUB( + "FEFqfuXeWqI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEneERKS9_) STUB("FEIR6uKyeeE", sceDevUsbWriteHost) +STUB( + "FELSRtjBFtE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEE7add_refEv) +STUB( + "FEPPjxShnlU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE3endEv) +STUB("FEU0ygVamU4", JSObjectGetArrayBufferBytesPtr) +STUB("FEWhRykt9L0", _ZNK7WebCore16HTMLMediaElement7seekingEv) STUB("FEYGFUlSCVQ", sceNpManagerIntIsSystem) +STUB("FEYYkBx7Yv8", SHA384_Init) +STUB( + "FEaJWtA4i+I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEED2Ev) STUB("FEafYUcxEGo", sceFontGetRenderScalePoint) +STUB( + "FEbaaE9hXto", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) STUB("FEdkOG1VbQo", sceNetCtlGetScanInfoByBssidIpcInt) +STUB( + "FEejWjSYWfE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE5beginEv) +STUB("FEgDnEoI4SQ", _ZN3sce7Toolkit2NP2V27NpUtils7Request17CheckAvailabilityC2Ev) +STUB("FEggDzehrjw", _ZNK3sce2Np9CppWebApi7Matches2V118CreateMatchRequest17inGameRosterIsSetEv) +STUB("FEiqqdDLczo", _ZN7WebCore9HTMLNames10methodAttrE) +STUB( + "FEkG+ghCo88", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEC2EPS8_) +STUB("FEkLrSser8s", _ZN7WebCore7IntRect5scaleEf) +STUB( + "FEmrOjuH0mk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE5clearEv) +STUB("FEnPMEzVYzA", rgctx_fetch_trampoline_rgctx_117) +STUB( + "FEoifjKIWdk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE21intrusive_ptr_sub_refEPS9_) +STUB("FEstcM511Bs", unum_getAttribute_67) +STUB("FEtOJURNey0", wprintf_s) +STUB( + "FEu1YP9T60E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEEC1Ev) +STUB( + "FEu1f3FzXEs", + _ZN15AbstractStorage11LocalFolder10NewContentERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_7ContentEE) +STUB("FEv7YlZcAhk", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12EventsClient6EventsEE3setEv) STUB("FF2LpsJxclY", sceDebugClearStepThread) +STUB("FF3Bpy-+5aE", WKPreferencesGetHTTPEquivEnabled) +STUB("FF7t-vxbO9I", + _ZNK3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator10getNatTypeEv) STUB("FFAsBnL6r28", sceCesUcsToJiscs) +STUB( + "FFCR0-ZETz8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEC2Ev) +STUB( + "FFDIQc3t1TM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEED1Ev) +STUB("FFEmClnxtds", mono_aot_Sce_Vsh_VideoServiceWrapperjit_code_start) +STUB( + "FFFhWCcPg6M", + _ZN9Inspector21PageBackendDispatcher16setEmulatedMediaElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("FFGrIADI-ko", _ZN7WebCore14DocumentLoader23applyPoliciesToSettingsEv) +STUB( + "FFIZy5mWuRE", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V115FrequentlyMuted9setGlobalERKNS1_6Common12IntrusivePtrINS3_25FrequentlyMutedPropertiesEEE) +STUB( + "FFKIzXsYKps", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEplEm) +STUB("FFQ99YStuJU", _ZN7WebCore17FrameLoaderClient20willInjectUserScriptERNS_15DOMWrapperWorldE) +STUB("FFRePk+rFTA", uprv_getNaN_67) +STUB("FFS315Iuhh8", mono_shared_area) STUB("FFVZcCu3zWU", sceGnmGetOffChipTessellationBufferSize) +STUB( + "FFaNcmwnhFk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEmmEi) +STUB( + "FFbduCaDu1Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEC2EPS8_) +STUB("FFbs7VK+504", _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody10unsetLimitEv) +STUB("FFkX5-S-pWs", + _ZN7WebCore12SharedBuffer6createEON3WTF6VectorIhLm0ENS1_15CrashOnOverflowELm16EEE) +STUB( + "FFpHQa3Cg+E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEC1ERKS7_) +STUB( + "FFyvRCOVcRo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEC2Ev) +STUB("FFz6NY6O3Rs", _ZN7WebCore8SVGNames10methodAttrE) +STUB("FG-AeXp6J30", _ZN3sce7Toolkit2NP2V26Friend7Request22DisplayBlockUserDialogC1Ev) +STUB( + "FG0IgLSoX9g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEC2Ev) +STUB("FG0yVorh6kA", __asan_report_exp_load_n_noabort) +STUB( + "FG2XYsInsoI", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setInteger5ERKi) +STUB("FG3MfV7yxYc", rgctx_fetch_trampoline_rgctx_91) +STUB( + "FG7RJA0imqk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEdeEv) +STUB("FGFb8rldXJ0", _ZNK7WebCore27TranslateTransformOperation1zERKNS_9FloatSizeE) +STUB( + "FGIoRi2Zo8Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEC1Ev) +STUB("FGKZ7P+hueQ", _ZN3WTF8JSONImpl5ValueC2ENS1_4TypeE) +STUB("FGLZgF6NUTo", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEEdeEv) +STUB("FGQKSv78rMY", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V18PlatformEEC2EPS6_) +STUB( + "FGQW0BK5Xjg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("FGVtpgkhnt4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge10ChallengesEEC1Ev) +STUB("FGYellVj5iA", _ZN3JSC22FullGCActivityCallback11gcTimeSliceEm) +STUB("FGjjp4Q9nh4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE5emptyEv) +STUB("FGkHz99w5g4", WKPreferencesSetScreenFontSubstitutionEnabled) +STUB( + "FGm8LMvmnP8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEeqERKS9_) +STUB( + "FGmrGuHQr6E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE10setContextEPNS2_10LibContextE) +STUB("FGotBpRW4fs", _ZN7WebCore27AuthenticationChallengeBase7nullifyEv) +STUB("FGr1ZFJX3GU", _ZN3sce7Toolkit2NP2V28Commerce7Request25DisplayDownloadListDialogD1Ev) +STUB( + "FGrRAKtdub8", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions20unsetjoinStateFilterEv) +STUB( + "FGsbe8V40yA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "FGx16jKbGO0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("FH54s41kXRo", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container8setLabelEPKc) +STUB( + "FH6cpBv7tHo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "FHBcXPoyfj0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEED2Ev) +STUB("FHErahnajkw", _Atan) +STUB("FHJlhz0wVts", _WStoflt) +STUB("FHOfKEKv5bw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE5beginEv) +STUB("FHSNfxQFEdA", u_getIntPropertyMinValue) +STUB( + "FHSTA1X1AtU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEC1EPS8_) +STUB( + "FHThj52L8Zg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEEptEv) +STUB( + "FHTkCrFOp3s", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEdeEv) +STUB("FHTsMLypt6s", udatpg_openBaseSkeletons_67) +STUB("FHdeCFVf-f8", FT_Stream_EnterFrame) +STUB( + "FHfpa+Rs+cg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEneERKS9_) +STUB("FHiaFaawCm4", mono_aot_System_Resources_ResourceManagerunwind_info) +STUB( + "FHjKKIFWl-o", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEEiRNS2_10LibContextEPT_m) +STUB( + "FHlvn6PPP+g", + _ZN9Inspector20DOMBackendDispatcher12setOuterHTMLElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "FHo+9uUSx9Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("FHpaPyt9iz4", _ZN3sce7Toolkit2NP2V27Session7Request6Search13MAX_PAGE_SIZEE) +STUB( + "FHtfdONBzhI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) STUB("FI+VqGdttvI", sceSystemServiceChangeAcpClock) +STUB("FI+cFRCAE1Y", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13SessionMemberEEC1Ev) +STUB( + "FI052HZN17g", + _ZN9Inspector21DOMFrontendDispatcher17childNodeInsertedEiiN3WTF6RefPtrINS_8Protocol3DOM4NodeENS1_13DumbPtrTraitsIS5_EEEE) STUB("FI2JD0jAHCs", sceAmprCommandBufferWriteAddressFromTimeCounterOnCompletion) +STUB( + "FI4+jJBaNuo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE5emptyEv) +STUB("FIAr4J2Mc3I", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEcvbEv) STUB("FIDyevLVMHA", scePssCameraGetConfigType) +STUB( + "FIE4+qZC77Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEED1Ev) +STUB( + "FIGq0QCsCJU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "FIIcj5oo8O4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEdeEv) +STUB("FIIcqX1R3SQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEptEv) +STUB("FILu3XT0iqE", _ZN3JSC7Symbols20undefinedPrivateNameE) +STUB("FIORIf42lEA", _ZN7WebCore9TimerBase4stopEv) STUB("FIV95WE1EuE", sceNetPppoeStop) +STUB("FIVtaAWmpH0", _ZNK3WTF10StringView8endsWithERKS0_) +STUB( + "FIba8Eoz9DE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "FIbs2obMtdg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEC1Ev) +STUB( + "FIgKMtNTMLE", + _ZN3sce2Np9CppWebApi14SessionManager2V159PostPlayerSessionsSessionIdMemberPlayersResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_52PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEE) +STUB("FIjXN2TkuTs", _ZN3sce4Json5Value5clearEv) +STUB("FIkRi525WWs", utrans_getAvailableID_67) STUB("FIs3-UQT9sg", pthread_getschedparam) STUB("FIs6NUONxeQ", sceFontGraphicsUpdateSlantShift) +STUB( + "FItzU2rXvUM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE6resizeEj) +STUB("FIwGkGMVpS4", _ZN3JSC11ArrayBuffer6createEONS_19ArrayBufferContentsE) +STUB("FIy+9NMa4S4", g_path_get_dirname) +STUB( + "FJ+qIuONO1U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEppEi) +STUB( + "FJ-+VKIYK1g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEEC2Ev) +STUB("FJ03rKnjNtw", g_queue_pop_head) +STUB("FJ1MHGDC2cA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEEC1ERS7_) STUB("FJ4DCt8VzVE", sceNpLwCondSignalAll) +STUB("FJAg8-+kSWs", _ZN7WebCore9Scrollbar10mouseMovedERKNS_18PlatformMouseEventE) +STUB("FJB0fZbTUWY", WKContextEnableProcessTermination) +STUB( + "FJDcItupGtw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE21intrusive_ptr_add_refEPS9_) +STUB("FJJNTde17A8", SSL_get_rbio) +STUB( + "FJQLG5YKbmc", + _ZN3JSC7JSProxy14deletePropertyEPNS_6JSCellEPNS_14JSGlobalObjectENS_12PropertyNameERNS_18DeletePropertySlotE) +STUB( + "FJVbAyiDve0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "FJXUJ49OO2M", + _ZN9Inspector18InjectedScriptBase13makeAsyncCallERN10Deprecated18ScriptFunctionCallEON3WTF8FunctionIFvRNS4_6StringEONS4_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS4_13DumbPtrTraitsISB_EEEERNS4_8OptionalIbEERNSG_IiEEEEE) +STUB("FJdpBy9-OCE", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getAllPrimaryAudioLangs) +STUB("FJjHPHXYwD8", _ZN3sce2Np9CppWebApi10Activities2V114UserActivities5Error11unsetSourceEv) +STUB( + "FJkCGkhSowg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEdeEv) +STUB("FJm3lf5Dw4Y", _ZN12video_parser5vpcom6String18SetFormattedStringEPKcz) +STUB("FJmglmTMdr4", getargv) +STUB( + "FJnax-VbVxo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEmmEv) +STUB("FJork2pKclo", _ZZSt7_FiopenPKcNSt5_IosbIiE9_OpenmodeEiE4mods) +STUB("FJr0rVn9pHc", _ZN3sce7Toolkit2NP2V210Tournament7Request19SendTeamMatchReportD2Ev) STUB("FJrT5LuUBAU", pthread_exit) +STUB("FJsOPLwUw5I", monoeg_g_slist_copy) +STUB("FJx3kQhSYxo", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12unsetString1Ev) +STUB("FJxiqh2DvTw", pclose) STUB("FJyVzN8qkOo", sceSystemLogger2NativeQueueClientSetDeliveryEnable) +STUB("FK+8maQ3KE8", _ZN7WebCore8GradientD2Ev) +STUB( + "FK6-IL27ZZQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "FKA9Xq9vkTE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE8pushBackERKS8_) +STUB( + "FKAAv+FYOAY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEaSERKS9_) +STUB( + "FKKvU4rVni4", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEEiRNS2_10LibContextEPT_m) +STUB( + "FKOlE0C1C4I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEmmEi) +STUB("FKPT9p58MAQ", fpathconf) +STUB( + "FKQd+oAuCMw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEEdeEv) +STUB( + "FKRYDqV5i5A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEEC1EPS9_PNS2_10LibContextE) STUB("FKSu6oEy0iE", sceFsUfsSeekHoleInFile) +STUB( + "FKTjGNG4AAo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEEC1EPS8_PNS2_10LibContextE) +STUB( + "FKULCTGerv8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEC1EPS8_) +STUB("FKVhj3L1HF8", _ZNK3sce2Np9CppWebApi11Matchmaking2V110UserTicket14getRulesetNameEv) +STUB("FKcri-wI35g", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V116TaskAvailabilityEEmmEv) +STUB( + "FKh8xr89EAQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEplEm) +STUB( + "FKjjTnU3Jy4", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "FKm-YEnNtEA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEED1Ev) +STUB("FKp2wB9uPwY", _ZN7WebCore13MediaStrategyC1Ev) +STUB("FKpKGi9ag2E", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V112OnlineStatusEEppEv) +STUB( + "FKsX53cx1Eo", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE10setContextEPNS2_10LibContextE) +STUB("FKvUMcH+qF8", _ZN3sce2np13JsonDocParserC1EP14SceNpAllocatorPK7JsonDef) +STUB( + "FKxhM4yiQLY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEC2Ev) +STUB("FKzWNFUwhgw", _ZN7WebCore23CoordinatedBackingStoreD2Ev) +STUB("FL+PbMcEVGI", WKContextMenuItemCreateAsAction) +STUB( + "FL+u52yNM1A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEC2Ev) STUB("FL0unhGcFvI", sceFontGraphicsDrawupFillTexturePatternObject) +STUB("FL32esjngZg", _ZN3sce2Np9CppWebApi11Matchmaking2V110UserTicket16unsetRulesetNameEv) +STUB( + "FL3K2lvYq-E", + _ZN3sce2Np9CppWebApi14SessionManager2V137RequestPlayerSessionInvitationFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_2ToEEEPNS8_INS3_30RequestPlayerSessionInvitationEEE) +STUB( + "FL4Qx7D5o8w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEC2EPKS8_) +STUB( + "FL8JYfjjfMw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEE3getEv) +STUB( + "FLD7Rf5nyE4", + _ZN15AbstractStorage12LocalStorage15CreateRecursiveERKSbIcSt11char_traitsIcENS_8StlAllocIcEEENS_8ItemTypeEPSt10shared_ptrINS_4ItemEE) +STUB("FLIhhuDeTSs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEC1ERS7_) +STUB( + "FLPuwvD4sYM", + _ZNK3sce2Np9CppWebApi14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBody6toJsonERNS_4Json5ValueEb) +STUB("FLQ60xToFP0", _ZN3sce7Toolkit2NP2V26Trophy7Request23DisplayTrophyListDialogD2Ev) +STUB( + "FLQ8PiS7nvk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEC2Ev) +STUB( + "FLT8j7VcOko", + _ZNK7WebCore21ContentSecurityPolicy30upgradeInsecureRequestIfNeededERN3WTF3URLENS0_19InsecureRequestTypeE) STUB("FLTTgSdkoOc", sceWorkspaceApplyUpdateForFiles) +STUB("FLUK0ZqO7Pc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEaSERKS7_) +STUB("FLYJ02qgHI8", _ZN7WebCore11DisplayList11DrawPatternD1Ev) +STUB( + "FLvDx5RW-z8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEE11release_refEv) +STUB( + "FM4vKn7NQXk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEEC1ERKSA_) +STUB("FM5NPnLqBc8", wcscpy) +STUB("FMAHbnNqsvU", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEEixEm) +STUB("FMKYya06OjA", mono_aot_Sce_Vsh_Np_RifManagerunbox_trampolines_end) +STUB("FMU7jRhYCRU", _Dscale) +STUB( + "FMXw9e6kICE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEC1Ev) +STUB( + "FMcQ2vSIHoI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("FMhcXpjqzIc", _ZN3JSC33getHashMapBucketKeyValueClassInfoEv) +STUB( + "FMiPe0Hty-M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEppEv) +STUB("FMoSUe3Uac4", _ZN3sce2np13NpAccessTokenC1ERK16SceNpAccessToken) +STUB("FModQzwn1-4", _Printf) +STUB("FMsbTTXdX4k", __asan_report_load_n_noabort) STUB("FMvo0UFMf-o", sceKernelDebugAcquireAndUpdateDebugRegister) +STUB( + "FMwkK+yU2HE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "FN-SKZbEIHE", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData26unsetxPsnAtomicOperationIdEv) STUB("FN4UuY2CUz0", scePadTrackerCalibrate) +STUB("FN4gaPmuFV8", write) +STUB( + "FN52SJNRvp8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEneERKS9_) STUB("FNAESqqy9cc", sceMusicCoreServerLaunchUsbMusicCore) +STUB("FNCVZgUSgfw", WKCookieManagerGetHostnamesWithCookies) +STUB("FNE6tzXGxLc", mono_aot_Sce_Facebook_CSSLayoutjit_code_end) +STUB( + "FNExyBrkc9o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEppEi) +STUB( + "FNHWDEau-6g", + _ZN6WebKit17ChildProcessProxy18addMessageReceiverEN3IPC15StringReferenceEmRNS1_15MessageReceiverE) +STUB( + "FNI-4CaBcKM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEC1Ev) +STUB("FNJN5HdvU90", _ZN3WTF15ThreadCondition6signalEv) +STUB( + "FNKcU9I-kU0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE5beginEv) +STUB( + "FNNkNGXUrMU", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("FNQNzCuY4Og", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEEaSERS6_) +STUB("FNRVZg15vvo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE5clearEv) +STUB( + "FNTd74IKFoA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE3endEv) +STUB( + "FNUxN+au25U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEppEv) +STUB("FNW6t+8uEe4", udtitvfmt_close_67) +STUB( + "FNcxxp-VMgw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEEcvbEv) +STUB("FNeoc7rmKfo", rgctx_fetch_trampoline_rgctx_25_p) +STUB("FNfP9dKTd5Q", u_setDataDirectory) STUB("FNfdkVuQIh0", sceApplicationDebugSpawnCommonDialog) STUB("FNigDX9ue0g", sceKernelLwfsWrite) +STUB("FNjUbQF94YU", _ZN3sce7Toolkit2NP9Utilities6FutureI24SceNpBandwidthTestResultEC2Ev) +STUB("FNlWXHc7hK4", mono_aot_Sce_Vsh_FileSelectorAdvanceunbox_trampoline_addresses) +STUB("FNq4SsbRtKg", _ZNK7WebCore11HistoryItem8childrenEv) +STUB("FNuqhSviERw", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession28getExclusiveLeaderPrivilegesEv) +STUB( + "FNuywt2O-J8", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS5_INS7_7DataApi25UploadDataResponseHeadersEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("FNws245ryZM", _ZN7WebCore8SVGNames8mpathTagE) +STUB("FNyriqDetMY", _ZN3sce3Xml3Dom8DocumentC1Ev) STUB("FNzy4vvhlPY", sceVoiceChatGetChatChannelMemberInfoList) +STUB( + "FO090PFxXjA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE21intrusive_ptr_add_refEPS9_) +STUB("FO0NpJP2c5c", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEEC1Ev) +STUB("FO2oM5nyfjQ", + _ZN7WebCore15FocusController17setFocusedElementEPNS_7ElementERNS_5FrameENS_14FocusDirectionE) +STUB( + "FO68r4bXeQY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("FO7vVsCOvWc", mono_code_manager_cleanup) +STUB("FO80A4ewW+E", __cxx_global_var_init .36) +STUB( + "FOAYq1eTl1Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEC2EPNS2_10LibContextE) STUB("FOEUXzOE0ow", sceFiosVprintf) +STUB( + "FONQ2eA0530", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "FOU51RLy7V8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEEaSERSA_) +STUB("FOU9hGXYs4A", WKPreferencesGetCaptureAudioInUIProcessEnabled) +STUB("FOX5cdgzoRA", _ZN7WebCore18PlatformTimeRanges13intersectWithERKS0_) +STUB("FOXX1s3yDOg", TEEC_OpenSession) +STUB("FObJjOlF5qo", _ZN3sce7Toolkit2NP15AppSTLAllocatorIcED1Ev) +STUB( + "FOcbHwDVh8s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEEaSERKS9_) +STUB("FOe7cAuBjh8", _Atomic_compare_exchange_weak) +STUB("FOkC5Gjb72A", _ZN3sce2Np9CppWebApi14SessionManager2V112JoinableUserD1Ev) STUB("FOkcUM1F9nY", sceNpUniversalDataSystemDestroyRecordArray) STUB("FOoPyT5K+Ro", sceRnpsAppMgrInitialize) +STUB("FOsY+JAyXow", _ZNKSt12codecvt_base13do_max_lengthEv) +STUB("FOt55ZNaVJk", _ZdaPvm) +STUB("FOum7YUAKjM", _ZN3sce7Toolkit2NP2V28Presence7Request11GetPresenceD2Ev) STUB("FOwvmNlFLjM", sceAgcDriverRequestCaptureStop) +STUB( + "FP+nlBHwj74", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEC2EPS8_) +STUB("FP1JAPcVjW0", _ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionNonPsnPlayerD1Ev) +STUB("FP2oghGzFW4", WKPluginSiteDataManagerClearSiteData) STUB("FP4TKrdRXXM", sceUserServiceGetGlsBcTags) +STUB( + "FP4rr9SQxVI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEE5resetEPS6_) +STUB( + "FPCJcwlzH3M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEC2EPS8_) +STUB("FPD00OeBumk", _ZN3NTF21ResourceRequestLogger9AdminPageD2Ev) +STUB("FPGuhTsUtyw", + _ZN3sce7Toolkit2NP9Utilities6FutureISbIcSt11char_traitsIcENS1_15AppSTLAllocatorIcEEEEC2Ev) +STUB("FPJ7KlJEPzo", _ZN3WTF16weakRandomUint32Ev) STUB("FPN86biiXCg", scePerfPmcL3SelectEvent) +STUB( + "FPORIa4Rkbs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEED1Ev) +STUB("FPVANrBOCqM", WKWebsiteDataStoreSetStatisticsPruneEntriesDownTo) +STUB( + "FPb0CeFSeIw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEE11release_refEv) +STUB("FPhiNyoXyrY", _ZN7WebCore23ApplicationCacheStorage18diskUsageForOriginERKNS_14SecurityOriginE) +STUB( + "FPkgrHD25Vw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEC1Ev) +STUB( + "FPlOO0icao8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEE7add_refEv) +STUB("FPmfebR+qRw", _ZN7WebCore8SVGNames13repeatDurAttrE) +STUB("FPtevC0570Y", _ZN7WebCore17HTMLSelectElement9namedItemERKN3WTF12AtomicStringE) +STUB("FPuDt8dTHVc", mono_aot_Sce_Vsh_Np_Asmplt_end) +STUB("FPwp7ypjzlc", _ZN7WebCore15XPathNSResolverC2Ev) +STUB("FPxZe+7sKPI", _realloc) +STUB("FPxn9BMUCl4", _ZN7WebCore27ScrollingStateScrollingNode31setExpectsWheelEventTestTriggerEb) +STUB( + "FQ3223lR8CE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("FQ9KInINgw8", mono_counter_get_type) +STUB("FQ9NFbBHb5Y", _ZSt7_BADOFF) +STUB("FQAzZj+cvJM", _ZN3sce7Toolkit2NP2V211UserProfile7Request24DisplayUserProfileDialogD1Ev) +STUB( + "FQEb1-9qXuc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE8pushBackERKS8_) +STUB( + "FQKh4mbIo4Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEEC2Ev) +STUB( + "FQO2aJ3rhKI", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("FQP4SFNWKTg", _ZNK3JSC8Debugger17breakpointsActiveEv) +STUB("FQXDGkLo5lw", WKWebsiteDataStoreIsStatisticsOnlyInDatabaseOnce) +STUB( + "FQXdCB-0jhs", + _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product21setContentDescriptorsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_17ContentDescriptorEEEEE) +STUB("FQf7z9EVOYQ", _ZNK3JSC9CallFrame11callerFrameERPNS_10EntryFrameE) +STUB( + "FQfgTaTdD4Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "FQfzQ87vIHA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEdeEv) +STUB("FQhhAq8485I", _ZN9Inspector22AuditBackendDispatcherD1Ev) +STUB("FQixDx+33Sw", _ZN7WebCore15JSFetchResponse11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB( + "FQjqOxeoO-Y", + _ZN3sce2Np9CppWebApi14SessionManager2V129PostPlayerSessionsRequestBodyC2EPNS1_6Common10LibContextE) +STUB( + "FQmOKMe0XLg", + _ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_errorFactory6createEPNS1_6Common10LibContextEiPNS5_12IntrusivePtrINS3_17PsnWebError_errorEEE) +STUB( + "FQowxL1xbgc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEED1Ev) +STUB("FQp+YoiVPDk", mono_arch_set_breakpoint) +STUB("FQqiBC8oep4", + _ZN7WebCore20throwGetterTypeErrorERN3JSC14JSGlobalObjectERNS0_10ThrowScopeEPKcS6_) +STUB("FQrrVMzekMs", _ZN7WebCore20TransformationMatrix5scaleEd) +STUB("FQsD5vTPCIQ", _ZN12video_parser13cVideoMetaVWGD2Ev) +STUB("FQxmT+zWFmI", _ZN8meta_gen12JpegPromoterD2Ev) +STUB("FQz66HusRxA", GetProcessTime) +STUB("FR1GTDrUjQU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE8capacityEv) +STUB("FR4wjgGyss4", _ZN7WebCore12commonVMSlowEv) +STUB( + "FR5V4h+UDHY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEED1Ev) +STUB("FRDcroFI5oQ", WKBundleRangeHandleCreate) +STUB("FRHTBSKUjbY", _ZNK3sce2Np9CppWebApi7Matches2V120RequestTeamStatistic9getTeamIdEv) +STUB( + "FRIzN1QTvt0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEC1Ev) +STUB( + "FRLh1YHbNu0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("FRPmIVOlL+o", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_19WordFilterSanitizedEE17getAdditionalInfoEv) +STUB( + "FRQiELNiLNw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEC2EPNS2_10LibContextE) STUB("FRT4EYtZU1Y", sceContentSearchGetMyApplicationIndex) +STUB("FRTohqXNHCM", _ZN3sce2Np9CppWebApi6Common17ParameterBaseImplD1Ev) +STUB( + "FRVuWMditKE", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions17hasacceptLanguageEv) +STUB( + "FRdM28BbKvI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("FReDLqnfawk", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE7popBackEv) +STUB( + "FReoy5ALjAA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE21intrusive_ptr_add_refEPS9_) +STUB("FRiELCz5i8Y", _ZNK7WebCore10TimeRanges7nearestEd) +STUB( + "FRkSeaqfZCM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "FRktIckLBqI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEEC1ERKSA_) +STUB("FRluBCWNkDA", WKPreferencesSetAsynchronousPluginInitializationEnabled) +STUB( + "FRn8p61SWqM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEC2Ev) +STUB( + "FRu7RoVWxeA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) STUB("FS33uqKkEJA", sceDebugCreateScratchExecutableArea) +STUB( + "FS3NkwAzLuQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE8copyFromERKS9_) STUB("FS4QDTBsbvA", sceSdmaCopyLinearNonBlocking) +STUB( + "FS5KldwLor0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEC1EPS6_PFvS8_EPNS2_10LibContextE) STUB("FSAFOzi0FpM", sceHttp2SetRequestContentLength) +STUB( + "FSBGYnHURTI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEE5resetEPS9_) +STUB( + "FSEM7spQh+I", + _ZN3sce2Np9CppWebApi14SessionManager2V130RequestGameSessionMemberPlayer10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_24RequestGameSessionPlayerEEEEE) +STUB( + "FSEZl29BkTQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEC1Ev) +STUB( + "FSGCYA4uEqM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEC2Ev) +STUB("FSGjsbLwaVI", + _ZN23sceMetadataReaderWriter11gvMp4Parser23gvMp4ParserReadMetadataERKSsRKNS_8MetadataERS3_) +STUB( + "FSIvbzv3EPU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEmmEv) +STUB("FSJMWVT-xxg", _ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEEC2Ev) +STUB( + "FSQpiW9I3SQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEED2Ev) +STUB( + "FSV9lX43m-8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEppEv) +STUB( + "FSW+vDCLbSo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEC1EPNS2_10LibContextE) +STUB( + "FSWkWfs+zTw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEEaSERSA_) +STUB("FSWw9gIrqHo", + _ZN3sce2Np9CppWebApi11Matchmaking2V110UserTicket9setStatusERKNS3_12TicketStatusE) +STUB( + "FSZL2Eyt7u0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEptEv) +STUB("FSaQ-ZFyV3A", rgctx_fetch_trampoline_mrgctx_4) STUB("FSivH9XPeho", sceShellCoreUtilGetPs4AppCategoryForTitleId) STUB("FSjfP0-ST3I", sceAvSettingSetVideoOutModeInvalid) +STUB( + "FSlAlJCz9c4", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("FSnq97QcZr8", mono_aot_Sce_Vsh_SysfileUtilWrapperunbox_trampolines_end) +STUB( + "FSp6nAVoz14", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEEC1ERSA_) +STUB("FSp7Nq+RS-o", _ZN3sce7Toolkit2NP8Commerce9Interface13createSessionEb) STUB("FSrzrDEkthc", sceNpGriefReportDeleteRequest) +STUB( + "FSyQc4E006k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEEC2ERSA_) +STUB("FSyipfKROYU", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIdEC2Ev) +STUB("FT+jqopqLH4", rgctx_fetch_trampoline_mrgctx_65) STUB("FT07o-hAwrw", sceVnaSetWakeupPhrase) +STUB("FTCfSvqy0HE", _ZN7WebCore11MediaPlayernwEm) +STUB("FTDRgzhgHno", g_WebAssemblyFunctionBasePoison) +STUB("FTDt5KHGsco", WKContextRegisterURLSchemeAsBypassingContentSecurityPolicy) +STUB( + "FTFCa3ozVZ0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEC2EPS6_PNS2_10LibContextE) +STUB("FTJxu+itNSs", + _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse24lastPausedTimestampIsSetEv) +STUB( + "FTKv8WXBuGc", + _ZN3sce7Toolkit2NP7NetInfo9Interface18getNetInfoDetailedEPNS1_9Utilities6FutureINS1_16NetStateDetailedEEE) STUB("FTQCTDU0b4g", sceCompositorGetVideoSize) +STUB( + "FTR3aJpj1nk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEC1EPKS8_) +STUB("FTTfy11u0xI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEEC1EPNS2_10LibContextE) +STUB("FTVOVsiCzrI", _ZNK7WebCore13ImageDocument12imageElementEv) +STUB("FTgCL2l7zPM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEEplEm) +STUB("FTkR6dclrzE", mono_get_exception_overflow) +STUB( + "FTlq-lM8c7Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEC1ERKS7_) STUB("FTnplTtBnw8", sceFaceAttributeGetWorkingMemorySize) +STUB("FTvuO6kEYc8", png_get_progressive_ptr) +STUB("FTx8zZOXi4w", _ZNK7WebCore15AffineTransform22toTransformationMatrixEv) STUB("FTyUH7H+cr4", sceNpUniversalDataSystemIntCreateRecordArray) +STUB( + "FU-OOrVdofM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEE11get_deleterEv) +STUB( + "FU-cHlvmHrc", + _ZN3sce2Np9CppWebApi14SessionManager2V132ResponseGameSessionPlayerFactory7destroyEPNS3_25ResponseGameSessionPlayerE) +STUB("FU03r76UxaU", tgammal) +STUB( + "FU1sy2PeAOE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEC1EPS6_PNS2_10LibContextE) +STUB( + "FU3iLaFeAug", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) STUB("FU6NK4RHQVE", sceNetConfigGetIfaddr6) +STUB( + "FU7BYSzlMWk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) STUB("FU9dBtKaM90", sceDbgKeyboardClose) STUB("FUHG8sQ3R58", sceGnmSetEsShader) +STUB( + "FUI7BA6sx0g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEC2EPKS8_) +STUB("FUJC80kVXcc", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE3endEv) +STUB( + "FUJr06OCY8Y", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "FUP09azNviM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEdeEv) +STUB("FUUgFK8Upao", _ZNK7WebCore12ChromeClient31visibleRectForTiledBackingStoreEv) +STUB( + "FUVV2ha6lDE", + _ZN3JSC32throwDOMAttributeGetterTypeErrorEPNS_9ExecStateERNS_10ThrowScopeEPKNS_9ClassInfoENS_12PropertyNameE) +STUB( + "FUYmZhS5fm8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("FUbGs1rzI6g", _ZN7WebCore10FileHandle4openEv) +STUB( + "FUgmWrbSJ6I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE8copyFromERKS9_) +STUB( + "FUj4ht1Oj3Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEEC1ERSA_) +STUB("FUjbhth5rpQ", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEEppEi) +STUB( + "FUjqMDkA6zk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToSetMultiVariablesByUser31setsetMultiVariablesRequestBodyENS1_6Common12IntrusivePtrINS3_28SetMultiVariablesRequestBodyEEE) +STUB( + "FUnHreXtgA8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE10setContextEPNS2_10LibContextE) +STUB("FUvMboaJEU4", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110TaskStatusEEmmEv) +STUB("FUvnVyCDhjg", _ZTSDn) +STUB("FUxAKQOPLHU", _ZNK7WebCore4Page34inLowQualityImageInterpolationModeEv) +STUB( + "FV1b31YBRas", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEeqERKS9_) +STUB( + "FV377ltyrsI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEC2Ev) +STUB("FV3wbwlVzS0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEptEv) +STUB("FV7qhkVXa78", jpeg_fdct_2x4) +STUB( + "FV8T9iG3EPk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEE7add_refEv) +STUB("FVC-Qs07cPM", __cxx_global_var_init .5) +STUB( + "FVCHa0uCXmk", + _ZNK3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession28spectatorJoinableStatusIsSetEv) STUB("FVGWf8JaHOE", sceAudioInExtSetAecMode) +STUB( + "FVPQMSw88t0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE7popBackEv) +STUB( + "FVYB7IIuaoE", + _ZN9Inspector24RuntimeBackendDispatcher13getPropertiesElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "FVbXoHNme94", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEaSERKS9_) +STUB("FVfoCo2+1CM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4DataEE12deepCopyFromERS7_) +STUB("FVhYusaWqA4", hb_font_create) +STUB("FViWTCmYhfI", WKPreferencesSetLogsPageMessagesToSystemConsoleEnabled) +STUB( + "FVjxVzE0tPg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEdeEv) +STUB("FVzkM+se3LY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEdeEv) +STUB( + "FW-847MiNk0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE6isBusyEv) +STUB( + "FW0u+JRPGtY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEmmEv) +STUB( + "FW4pfu-jsZY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEeqERKS9_) STUB("FW8GJjej89g", sceMbusDebugGetApplicationStartupInfo) STUB("FW8H7tqgdbM", sceCesRefersUcsProfileIso8859_1) +STUB("FW9SB4Gw0AM", _ZN7WebCore4Page24suspendAllMediaBufferingEv) +STUB("FWCtCJRjjqM", _ZN7WebCore6Editor3cutEv) STUB("FWF8zkhr854", sceSystemGestureCreateTouchRecognizer) +STUB( + "FWGOC57Jh6I", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEcvbEv) +STUB("FWGmdRcl8J4", uprv_decNumberNormalize_67) +STUB("FWGwLKZl7gA", il2cpp_class_has_attribute) +STUB("FWKCSN6qd3I", _ZN3sce7Toolkit2NP2V29Messaging7Request27GetGameDataMessageThumbnailD1Ev) +STUB("FWNlwckpqiQ", _ZNK3sce2Np9CppWebApi15Personalization2V111ErrorEntity8getErrorEv) +STUB("FWPehyusZk4", _ZN12video_parser13cVideoMetaVWGD0Ev) +STUB("FWQ--Q8Z3RA", + _ZN15AbstractStorage10TwitterAPI6FinishERiRSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB( + "FWSsCcJfRzk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE5beginEv) +STUB( + "FWUkK5OYaJE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEEptEv) +STUB("FWVpcDqZEno", mono_aot_Newtonsoft_Json_PlayStationplt_end) +STUB( + "FWbHV2VFBJE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB( + "FWeRSiPGZW8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("FWjuz7V0EHo", mono_aot_Sce_Vshjit_code_start) STUB("FWonlDV6d5k", sceNpAppLaunchLink2IntFinalize) +STUB("FWs3pMutLLM", _ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_18GameCustomDataItemEE8max_sizeEv) +STUB("FWuKSBWcWpY", _ZN19JITSharedDataMemory15shared_mallinfoEv) +STUB( + "FWvXxPBjKo4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE10setContextEPNS2_10LibContextE) +STUB("FX+WQiynX4A", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE3endEv) +STUB("FX+eS2YsEtY", _ZSt10_GetloctxtIcSt19istreambuf_iteratorIwSt11char_traitsIwEEEiRT0_S5_mPKT_) +STUB("FXCfp5CwcPk", CERT_CompSubjectAltNames) +STUB( + "FXHJ0c5nK0M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEE3getEv) +STUB("FXJgRPi79Uc", _ZN7WebCore20DictationAlternativeC1Ev) STUB("FXLlx5oqwh0", sceBackupRestoreUtilCancelBackupData) +STUB( + "FXMKxFiNTTU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB( + "FXP1+3uVWsM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE8capacityEv) STUB("FXP359ygujs", sceFontDestroyLibrary) STUB("FXPWHNk8Of0", scePthreadAttrGetschedparam) +STUB( + "FXWB2Gf474U", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEptEv) +STUB( + "FXaSS2yMjwo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "FXd3vv+Y6x8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("FXi4ubu1MYw", mono_aot_System_IO_Compression_FileSystemmethod_addresses) +STUB("FXrK1DiAosQ", _ZNSt14numeric_limitsImE9is_signedE) +STUB("FXz1QSPJDvo", _ZN7WebCore7PatternD1Ev) +STUB("FY6r0wohLpE", WKPageGroupAddUserContentFilter) +STUB("FYBRvPoVT60", _ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_7ElementE) +STUB("FYCUHTZYc0Y", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession20getInvitableUserTypeEv) STUB("FYGZ0F5ZglA", sceFiosCachePrefetchFileRange) +STUB( + "FYMYJH5mJMQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE5beginEv) +STUB("FYNb0UsK7bo", mono_set_signal_chaining) +STUB("FYOYHvvUNbc", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEEplEm) +STUB("FYSe6iue9yo", WKUInt64GetValue) +STUB( + "FYVQXqEQpt0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEC2EPS8_) +STUB("FYWPelwNlow", + _ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody20createdDateTimeIsSetEv) +STUB( + "FYZJrjJ-cq8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEEC2Ev) +STUB( + "FYdJxS3+z8s", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessions28hasxPsnAcceptPlatformNamePs5Ev) +STUB( + "FYgsW9IBFB8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEptEv) +STUB("FYhW0cFVkfU", _ZN7WebCore11DisplayList10DrawGlyphsD1Ev) +STUB( + "FYhnZZLS9Tw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE6isBusyEv) +STUB("FYlV1evmD0c", WKPreferencesSetLocalStorageEnabled) +STUB( + "FYoTGVdaf38", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEEaSERSA_) +STUB("FYokOKVjbL8", _Z14getIpmiMessageiPvPmmPj) +STUB( + "FYpKT5bJWqs", + _ZN3sce2Np9CppWebApi11Matchmaking2V128GetTicketResponseBodyFactory7destroyEPNS3_21GetTicketResponseBodyE) +STUB( + "FYtYaqQau3c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEE11get_deleterEv) +STUB( + "FZ6iiTMxCvk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("FZ79+m9rjAk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE7reserveEi) +STUB( + "FZAYG6OaXcU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEE3getEv) +STUB("FZCuitEu5PU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEE7add_refEv) +STUB( + "FZF10vBaKDU", + _ZN7WebCore16BlobRegistryImpl15registerBlobURLERKNS_3URLEON3WTF6VectorINS_8BlobPartELm0ENS4_15CrashOnOverflowELm16EEERKNS4_6StringE) +STUB( + "FZOffHooqqg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "FZPi1FKVP1M", + _ZN3sce7Toolkit2NP8Matching9Interface25registerSessionAttributesEPKNS1_24RegisterSessionAttributeEi) +STUB("FZRXp-BlmOI", _ZNK7WebCore19DragCaretController40editableElementRectInRootViewCoordinatesEv) +STUB( + "FZVwEIe8X5c", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "FZXAWifD-Zk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB( + "FZXff56W0pU", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetrics27getCompletionRatePerReasonsEv) +STUB("FZacimxYLYc", _ZN9Inspector22HeapFrontendDispatcherC1ERNS_14FrontendRouterE) +STUB("FZed-0jzMRA", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V19Bandwidth6toJsonERNS_4Json5ValueEb) +STUB("FZgi0OUp2OU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEaSERS7_) +STUB( + "FZhUiTHfkLE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE8pushBackERKS8_) +STUB( + "FZk6O78MC5M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEC1Ev) STUB("FZkD-E6MNTQ", sceCamera2GetAutoExposureGain) STUB("FZoCQTL8R04", sceVideoOutSysSetDisplayParameters) +STUB( + "FZs3ueQCBdw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEeqERKS9_) +STUB("FZyUhOcX-LA", JSContextGroupRelease) +STUB( + "Fa02PlexEYQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEdeEv) STUB("Fa0atOcWPaI", sceSlimglIPCEnd) +STUB( + "Fa2iHYoO-Uc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEmmEv) +STUB("Fa3M9vt2GNg", _ZN9Inspector25BrowserFrontendDispatchernwEm) STUB("Fa3x75OOLRA", sceGnmEndWorkload) +STUB( + "Fa4Jz1T7N5s", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEdeEv) STUB("Fa4dVWgmffk", sceNpWordFilterSetTimeout) +STUB("Fa62NGp3wkk", WKInspectorShowMainResourceForFrame) +STUB("Fa7tNy5W1JA", + _ZN9Inspector22InspectorDebuggerAgent21willDispatchAsyncCallENS0_13AsyncCallTypeEi) +STUB("Fa9J7ngbX6c", _ZN3sce7Toolkit2NP3TUS9Interface12setVariablesERNS1_21TusSetVarsInputParamsEb) +STUB("Fa9ocon8fUk", _ZN3WTF6String8fromUTF8ERKNS_7CStringE) +STUB( + "FaBfkB9CzjI", + _ZN3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectatorC1EPNS1_6Common10LibContextE) +STUB("FaEwVkG3PY0", _ZN7WebCore16HTMLTableElement9deleteRowEi) +STUB( + "FaGbTl7GSKY", + _ZN7WebCore8Document28searchForElementByIdentifierERKN3WTF16ObjectIdentifierINS_21ElementIdentifierTypeEEE) +STUB("FaGklu1Uj2Y", _ZN7WebCore9plainTextEPKNS_5RangeEtb) +STUB( + "FaJpSTnJc+0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEC2EPKS8_) STUB("FaJvCKzvS+o", sceMusicCoreServerSetPlaylist) STUB("FaMNvjMA6to", sceNpMemoryHeapGetAllocator) +STUB( + "FaScLq9jHGY", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession30exclusiveLeaderPrivilegesIsSetEv) +STUB( + "FaWcwzVg-RY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEptEv) STUB("FaXwNYQABhI", sceMusicFwSendMessageAsynchronously) +STUB( + "FaZCwvM2Cjo", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi10leaveMatchEiRKNS4_21ParameterToLeaveMatchERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) STUB("FabW3QpY3gQ", sceNpTusGetFriendsVariableForCrossSaveAsync) +STUB("FacbXK+neFI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEED2Ev) +STUB("FafaS6YYcI0", jit_info_table_new) +STUB( + "FaiD0-l1bi4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB("FajrozYzGvw", WKOpenPanelParametersCopyAcceptedMIMETypes) +STUB("FamucWKpUiI", _ZNK7WebCore9InlineBox22canAccommodateEllipsisEbii) +STUB( + "FaoNPaQokbY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE8pushBackERKS8_) +STUB("Far+0EDHNT4", _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead12getSessionIdEv) +STUB("FarWXzw3sRs", _ZN7WebCore11MathMLNames10msgroupTagE) +STUB( + "FauTlWzQtoM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEplEm) +STUB("FaxEiEtRu98", mono_aot_Sce_Vsh_ShareGuideScenejit_code_end) +STUB("FaxtjclFXWo", rgctx_fetch_trampoline_mrgctx_56) +STUB("FazP3bj2myU", _ZNSt10_Ref_countIN15AbstractStorage15FacebookContentEE12_Delete_thisEv) +STUB("Fb75R8uLhVQ", _ZN3JSC7Symbols13replaceSymbolE) +STUB( + "FbGii8QGVSg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE5beginEv) +STUB("FbPgeyqyKxw", WKBundleBackForwardListItemCopyChildren) +STUB("FbWFbLUQOys", cairo_scaled_font_extents) +STUB("FbdEMaWO06g", PSNowTerminate) +STUB("FbgsoB-Gp0k", _ZNK7WebCore4Page23remoteInspectionAllowedEv) +STUB( + "Fbhq5mnuB4I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE4sizeEv) +STUB("FbklI6mL4Fw", _ZN7WebCore32isStatusCodePotentiallyCacheableEi) +STUB( + "FbknE-LTZCw", + _ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime12RemoteObjectEE11runtimeCastEON3WTF6RefPtrINS5_8JSONImpl5ValueENS5_13DumbPtrTraitsIS8_EEEE) +STUB("Fbq6rkrW44s", _ZThn64_NK7WebCore10ScrollView12contentsSizeEv) +STUB( + "FbqyBrWWUdI", + _ZN3sce2Np9CppWebApi14SessionManager2V127ResponsePlayerSessionPlayerC2EPNS1_6Common10LibContextE) +STUB( + "FbrlLxVDlCc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("FbtukaCjFCM", _ZN3sce7Toolkit2NP2V28Commerce7Request22GetServiceEntitlementsD1Ev) +STUB( + "Fbtzvs7QRLQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEC2EPS8_) +STUB("FbvROv13LwA", _ZN7bmalloc17getPerProcessDataEjPKcmm) +STUB( + "FbxBkDmN7Y8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEEaSERSA_) STUB("FbxEpTRDou8", scePadSetProcessPrivilegeOfButtonRemapping) +STUB( + "FbyWsqhQTb8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("FbzaVpY48K8", Java_com_sony_gemstack_org_dvb_application_AppsDatabaseImpl_n_1getSize) +STUB("Fc-j1ASNCfc", futimesat) +STUB("Fc2cOwHvrNI", _ZN3sce7Toolkit2NP2V28Matching7Request15SendRoomMessage16MESSAGE_MAX_SIZEE) +STUB( + "Fc3zgDjEL0w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEEaSERSA_) +STUB( + "Fc7UtlRcB4s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE5clearEv) STUB("Fc8qxlKINYQ", sceVideoRecordingSetInfo) +STUB( + "Fc9vUoIplps", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE3endEv) STUB("FcAheKO8u7c", sceShellCoreUtilGetCrashReportCoreFileSetSize) +STUB("FcBetDloh7M", _ZNK7WebCore18TextureMapperLayer23isShowingRepaintCounterEv) STUB("FcHBfHjFXkA", sceGameLiveStreamingClearPresetSocialFeedbackCommands) +STUB("FcHLJ0cp+UY", __asan_store2) +STUB( + "FcHhPlZ5n6I", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("FcL+-Kw05rE", ERR_remove_thread_state) +STUB( + "FcMmLDQhRrY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("FcPJo9IFZ8w", _ZN3JSC8Debugger2vmEv) STUB("FcVRhZfdD6M", sceDebugGetUltMutexInfo) +STUB( + "FcVj5RfHa3Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEC1Ev) +STUB("FcXFU+eY+PA", _ZN3sce7Toolkit2NP2V212ActivityFeed11SharedVideo18VIDEO_DURATION_LENE) STUB("FcgdDM3MB+k", sceAgcAcbSetWorkloadStreamInactive) +STUB("FcjmvJ4DIIE", _ZThn120_NK7WebCore16HTMLMediaElement7canPlayEv) STUB("FcoLzecMfmQ", sceUpsrvUpdateCheckDoCheckGame) +STUB( + "Fcte2S985kY", + _ZN3JSC12StringObject19getOwnPropertyNamesEPNS_8JSObjectEPNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("Fcvdbqpwpnw", _ZN3sce2np9NpTitleIdC1ERK12SceNpTitleId) +STUB("Fcve1msoJH0", _ZN9Inspector25RuntimeFrontendDispatcherC1ERNS_14FrontendRouterE) +STUB( + "FcvuAYXzTg0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEppEi) +STUB("Fcw0NIAPtPQ", JVM_Available) +STUB("Fd+i7UyKSPU", + _ZN3sce2Np9CppWebApi7Matches2V133RequestTemporaryCompetitiveResult14getTeamResultsEv) +STUB( + "FdBcHONM4L8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("FdE9MhgN3V8", _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse14unsetMatchTypeEv) +STUB( + "FdJlxz7OMjM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) STUB("FdN+edNRtiw", sceNetCtlApInit) +STUB( + "FdOIlKJFmbU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEC1ERS7_) +STUB("FdOpdRczylg", mono_profiler_set_events) +STUB( + "FdQ6u9pJKnY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEC2EPS8_) +STUB("FdVPEWL8spY", _ZN7WebCore12WorkerThread17workerThreadCountEv) +STUB("FdZ4o7kKSbI", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_23NpSessionInvitationInfoEEeqERKS4_) +STUB("FdaMZ5OvrB4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE8pushBackERKS6_) STUB("FdbMnFUqVN0", sceVideoCoreInterfaceSetVideoOutBufferInfo) +STUB( + "FdeurA-4Xf4", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("FdhH0BTtUW4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEC1ERKS7_) +STUB("FdhooB4MqkE", WKProtectionSpaceCopyCertificateInfo) STUB("FdjoqFQOlt0", sceFiosFHGetSize) +STUB("FdpYFbq5C3Q", _ZN3sce2np8JsonBool7SetBoolEb) +STUB("FdpiHD2TNa4", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE3endEv) +STUB("FdtZF4Kb-DM", _ZN7WebCore9HTMLNames19contenteditableAttrE) +STUB( + "FduUnpC6JgA", + _ZN3WTF8JSONImpl10ObjectBase8setArrayERKNS_6StringEONS_6RefPtrINS0_9ArrayBaseENS_13DumbPtrTraitsIS6_EEEE) +STUB( + "Fdyi7jH8cb0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEEC2ERKSA_) +STUB("Fe3rSLxR0nQ", _ZN23sceMetadataReaderWriter7StorageD1Ev) +STUB("Fe4mPBqYU8U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEE11release_refEv) STUB("FeBOnMEm0SY", sceKernelSetCompressionAttribute) +STUB("FeCbAqqYAJc", _ZN7WebCore19HTMLTableRowElement10deleteCellEi) +STUB( + "FeFhTT4nANo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEED2Ev) +STUB("FeGTya83K9c", _getNextCommInfoId) +STUB("FeHJNqnyMNg", _ZN9Inspector26DatabaseFrontendDispatchernwEm) +STUB("FeIamrDe0aM", _ZN12video_parser5vpcom4path8SplitExtERKSsRSsS4_) +STUB( + "FeOJ8TVZKIM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEmmEv) +STUB( + "FeQ8lcL0Gq0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEC1EPKS8_) +STUB("FeQx0uUwsEU", mono_debug_remove_method) +STUB("FeRX0tbFuoA", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable8setValueERKl) +STUB("FeSYwKImb80", _ZN7WebCore37BasicComponentTransferFilterOperationD0Ev) +STUB("FeYrnuEZxkI", WKPageGetPageLength) +STUB("FeaJljDxazo", _WLdtob.Nan) +STUB("FedPCDpfuIY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEEC2ERKS7_) +STUB( + "FedbSNlNb+k", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEE3getEv) +STUB( + "FegsNS5zOXY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEeqERKS9_) +STUB("Feu1kRzMayE", _WGetfloat.digits) +STUB("Fevm+IGiXwo", _ZNK3JSC8JSString13equalSlowCaseEPNS_9ExecStateEPS0_) +STUB("FeyelHfQPzo", __subsf3) +STUB( + "Ff+VkymM6Xs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEEC2ERKSA_) +STUB("Ff4A85FCHyg", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIlEneERKS4_) +STUB("Ff5903PrTZI", + _ZN3sce2Np9CppWebApi14SessionManager2V115SearchCondition11setOperatorERKNS3_14SearchOperatorE) +STUB("Ff6oQqOVuao", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia6VideosEE19setCustomReturnCodeEi) +STUB( + "Ff8YIEBYu24", + _ZNK7WebCore21NetworkStorageSession29cookieRequestHeaderFieldValueERKNS_29CookieRequestHeaderFieldProxyE) +STUB( + "FfBPa2dGLZ4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "FfGdRFl8Uac", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEEC2ERKSA_) +STUB("FfIGOD31g-o", Java_java_lang_Runtime_traceMethodCalls) +STUB( + "FfIjkuACVec", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser12getaccountIdEv) +STUB( + "FfKM55Iraf0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEC1Ev) +STUB( + "FfKiMCov2SE", + _ZN9Inspector21PageBackendDispatcher15getResourceTreeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "FfL1j8hB9eM", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetrics17getPercentileRankEv) +STUB("FfP4+AR75Xk", _ZN7WebCore24InspectorInstrumentation17s_frontendCounterE) +STUB("FfQDL+N-aVU", _ZN3sce7Toolkit2NP2V210Tournament24OfficialBroadCastDetailsC1Ev) +STUB("FfQc4Aw-xj0", _ZN3sce2Np9CppWebApi11Matchmaking2V112CauseFactory7destroyEPNS3_5CauseE) +STUB("FfRPM8I9Wvw", _ZNK7WebCore15CSSGroupingRule8cssRulesEv) +STUB("FfRx0Iqy44I", _ZN3sce7Toolkit2NP2V27Session12Notification18InvitationReceived5resetEv) +STUB("FfSNfBmn+K8", _ZN3sce2np9JsonValueD2Ev) +STUB( + "FfSkfIKapVk", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("FfUKglMxwJk", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEEC1ERKS6_) +STUB("FfXZGW1TMvo", _ZTVN3sce2np8SelectorE) STUB("FfXgMSmZLfk", sceUserServiceSetKeyRepeatStartingTime) +STUB("FfZ7dAUmTMw", _ZNK7WebCore17ActiveDOMCallback25activeDOMObjectAreStoppedEv) +STUB("FfdG-Liacw8", _ZN3sce7Toolkit2NP2V212ActivityFeed12SharedVideos5resetEv) +STUB( + "FffYPfRKH7c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE7popBackEv) +STUB( + "FfngM2PVzy0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "Ffs0Wn0Cmbs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "FfvXrUZWOpY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("FfvZ8GZyL4g", _ZN3sce7Toolkit2NP19TusDeleteDataParamsC2Ev) +STUB( + "FfxEkzSTfqA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEdeEv) +STUB("Fg+UYXVqC6s", fuse_fs_rename) +STUB( + "Fg1EWgkOTUY", + _ZN3sce2Np9CppWebApi14SessionManager2V158PostPlayerSessionsSessionIdMemberPlayersRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_51PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEE) +STUB("Fg2BRITDYDg", WKIconDatabaseEnableDatabaseCleanup) +STUB("Fg4w+h9wAMA", _ZN10__cxxabiv120__si_class_type_infoD0Ev) +STUB("Fg7DTuZhN2U", _ZNK7WebCore4Node22previousElementSiblingEv) +STUB( + "FgAaWGOt7hk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "FgC-D6TnxNc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("FgHJrrJSptw", WKRenderLayerGetRenderer) +STUB("FgKMxg-joM8", FTC_Image_Cache_Lookup) +STUB("FgP0jMzeUU0", EVP_CipherFinal_ex) +STUB("FgTqYvN24Wg", _ZTv0_n24_N25MmsFileUpdaterFsOperationD0Ev) +STUB( + "FgVwjbmIzwE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEE11get_deleterEv) +STUB("FgaUOCE4CiA", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request11GetWhoLikedC1Ev) +STUB( + "FgbNCwEVObM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE5emptyEv) +STUB("FgdgBDdhsL0", mono_aot_Sce_Vsh_Np_Tmdbplt_end) +STUB( + "FgeNuqpGZ9g", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE5beginEv) +STUB( + "Fgglj88E+oQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEC1EPS6_PNS2_10LibContextE) STUB("FgkKjJr06g0", sceBdSchedGetPrioritizedBackgroundCopyRequest) +STUB("Fgm7cz6AX4k", _ZN3sce2np4TimeplERK10SceRtcTick) +STUB( + "FgmxzIbarZo", + _ZN9Inspector31NetworkBackendDispatcherHandler20LoadResourceCallbackC2EON3WTF3RefINS_17BackendDispatcherENS2_13DumbPtrTraitsIS4_EEEEi) +STUB("FgwytTB3xM0", fuse_fs_create) +STUB("Fh-CX4ssmf8", _ZNK7WebCore4Page24isAlwaysOnLoggingAllowedEv) +STUB("Fh1GjwqvCpE", _WPutstr) +STUB( + "Fh3knvOXgN0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEmmEi) +STUB("Fh5UKPJ8Cj8", mono_aot_Sce_Vsh_Gls_NativeCallunwind_info) +STUB("FhQHDFyT9vE", _ZN7WebCore9HTMLNames8axisAttrE) +STUB( + "FhQR7Qc-hZk", + _ZN7WebCore16BlobRegistryImpl19registerFileBlobURLERKN3WTF3URLEONS1_3RefINS_21BlobDataFileReferenceENS1_13DumbPtrTraitsIS6_EEEERKNS1_6StringE) +STUB( + "FhSxycvQ5Us", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEEaSERSA_) STUB("FhU9oYrbXoA", sceUsbdSetConfiguration) +STUB( + "FhV1O6QV9rw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEC2EPS8_) +STUB( + "FhXN5lQMQwg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEppEi) +STUB("FhapblPGTsQ", _ZNK7WebCore14LoaderStrategy11usePingLoadEv) STUB("Fhc+DypKzcU", sceDbgDeleteExternalTriggerEvent) +STUB( + "FhdNDyXGrrc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB( + "FhgvvZbYDGY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEC1ERKS7_) +STUB("FhlCgpKi820", _ZThn120_NK7WebCore16HTMLMediaElement6pausedEv) +STUB("FhrGoRnCbCU", _ZN3JSC7Symbols34arrayIteratorFieldIndexPrivateNameE) +STUB( + "FhshAfCT9HE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEE7add_refEv) +STUB( + "Fhwe1cyP-5c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEEaSERSA_) +STUB("Fi1asFSjrI4", Java_sun_misc_AtomicLong_VMSupportsCS8) +STUB("Fi1fK8VxhCs", _ZN3sce7Toolkit2NP2V28Commerce7Request18DownloadListTargetC2Ev) +STUB( + "Fi3WoH4py6Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEmmEi) +STUB( + "Fi8rf5UJSzc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEE7get_refEv) +STUB( + "FiK5Kb-eOXs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE5emptyEv) +STUB("FiTR0ct11sQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEcvbEv) +STUB( + "FiZ-BpuLxlw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEE5resetEPS6_) +STUB("FiZSit4dUcg", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container13ageLimitIsSetEv) STUB("Fidd8vWgyVE", sceNpUniversalDataSystemEventPropertyObjectSetBool) +STUB("FifScKLv688", _ZN3sce7Toolkit2NP8Presence9Interface11setPresenceEPKNS1_15PresenceDetailsEb) +STUB("FigcgjQNk-Y", _ZNK3sce2Np9CppWebApi11UserProfile2V114PersonalDetail12getFirstNameEv) +STUB("FihG2CudUNs", err_set_file) +STUB("Fijkhrl9Jqc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEC1ERKS7_) +STUB( + "FilC363Tb+U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEE7add_refEv) +STUB("Fin-BQj1StQ", mono_image_open_from_data_full) +STUB("FiqBFtOqwyg", _ZN12video_parser5vpcom6StringC2ERKSbIwSt11char_traitsIwESaIwEE) +STUB("FisUpFYlKVI", _ZN3JSC23MacroAssemblerX86Common18s_sse4_1CheckStateE) +STUB( + "FiuLyCoDZ2U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE3endEv) +STUB("Fiw3va9jOb4", _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15Error12unsetMessageEv) +STUB( + "FiwgVdR-i1w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEmmEv) +STUB( + "Fixq6tKtgGM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("Fj3K7fq81Nw", _ZN3WTF7RunLoop9TimerBaseD1Ev) +STUB("Fj7T2VY7xg4", xmlSAX2InternalSubset) +STUB("Fj7VTFzlI3k", _ZTISt5ctypeIwE) STUB("Fj7r9EHzF38", sceAgcDriverSubmitMultiCommandBuffers) +STUB( + "FjBIQ1p8rDM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEmmEi) STUB("FjDPATY4YZw", sceUlpMgrSetDecidState) +STUB("FjGK2UkuftY", _ZN7WebCore9HTMLNames8sizeAttrE) +STUB("FjL0RLR0s-Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEdeEv) +STUB( + "FjLfTnd1Zpg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEC2ERS7_) +STUB( + "FjOznE4Uds4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEC2EPKS8_) +STUB("FjP4ZsLHhpI", _ZN9Inspector14ConsoleMessage5clearEv) +STUB("FjWvl4f4zyg", _ZN7WebCore22EmptyFrameLoaderClient18cannotShowURLErrorERKNS_15ResourceRequestE) +STUB("FjZCPmK0SbA", _ZNSt7codecvtIwc9_MbstatetE2idE) +STUB("Fjaafcv5byY", _ZNK7WebCore16BackForwardCache10frameCountEv) +STUB("FjbLZy95ts4", _ZN3sce2np12NpHttpClientD0Ev) STUB("FjbOtABSsKU", sceUserServiceGetGlsStreamingMode) +STUB("Fjc4-n1+y2g", __elf_phdr_match_addr) +STUB( + "FjnHRgk9IxM", + _ZN9Inspector25DebuggerBackendDispatcher18continueToLocationElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "Fjq6h+V12jE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEE11get_deleterEv) +STUB( + "FjuGsFvo2u8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEC1ERS7_) +STUB( + "FjucNldFJxY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB( + "Fk0THn16N7E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "Fk1ktoLiX+U", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("Fk7-KFKZi-8", acosh) +STUB( + "FkGuGBUZRmo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEptEv) +STUB("FkLOvGvslX4", _ZN3JSC11checkSyntaxEPNS_14JSGlobalObjectERKNS_10SourceCodeEPNS_7JSValueE) +STUB( + "FkPzOU52HPs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE5emptyEv) STUB("FkQX7rjFomk", sceHmd2ReprojectionSetTiming) +STUB( + "FkVFR0zhi2o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("FkfHNXUdyd8", _ZN7WebCore9HTMLNames14onmouseoutAttrE) +STUB( + "FkfbhyQcu8U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEC2Ev) +STUB("Fkh4-Vom6ZU", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEEixEm) +STUB("FkpPAxNYZDw", _ZN7WebCore9HTMLNames13loopstartAttrE) +STUB("FkqcX0GrERw", _ZNK7WebCore12SharedBuffer11DataSegment4sizeEv) +STUB( + "FkqzqztnkLo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEC2EPS8_) STUB("FksZ-ychRZQ", sceHubAppUtilDeeplinkToLiveDetailView) +STUB("FktuuBJlOws", + _ZN9Inspector18InspectorHeapAgent29willDestroyFrontendAndBackendENS_16DisconnectReasonE) STUB("FkuwsD64zoQ", sceNpWebApiInitializeForPresence) +STUB("FkyGnTaZnss", _ZN7WebCore9FrameView14adjustViewSizeEv) +STUB( + "Fl+9SN4VpCE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE21intrusive_ptr_add_refEPS9_) +STUB("Fl1VFB0eJHM", _ZN7WebCore15PasteboardImageC1Ev) +STUB("Fl2+3kVkZMY", _ZN7WebCore11JSDOMMatrix15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("Fl21dNxa5A0", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_23NpSessionInvitationInfoEE3getEv) +STUB("Fl4Z1PFgaro", _ZN7WebCore37CrossOriginAccessControlCheckDisablerC1ERKS0_) STUB("Fl52JeSLPyw", sceUserServiceSetFileSelectorSortContent) +STUB("FlB06QArnMc", _ZN9Inspector17ScriptDebugServer11addListenerEPNS_19ScriptDebugListenerE) +STUB("FlCmLNQfNao", fuse_reply_readlink) +STUB( + "FlJCuqSPVeM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEneERKS9_) +STUB( + "FlO60i1MgDU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC2ERKSA_) +STUB("FlTe07B8XjQ", _ZN22MmsMdCommonFsOperation9closeFileEv) +STUB("FlYLMra2YxY", __ubsan_handle_implicit_conversion_abort) +STUB( + "FlagLhjAEmc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEEptEv) +STUB("FliSulMBEDs", _ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_13FetchResponseE) +STUB("FljuSdm2Iek", _ZN7WebCore17JSDOMRectReadOnly4infoEv) +STUB( + "Flo73r9UNgg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEC1Ev) +STUB( + "FloNRko19dU", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToSendPlayerSessionMessageC2Ev) +STUB( + "Flr9FziG73c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEED2Ev) +STUB("Flv4OG+-cjQ", _ZN7WebCore18InspectorPageAgent7frameIdEPNS_5FrameE) +STUB("Flyyg6hzUOM", _ZN3sce2np9LocalFile4SeekEliPl) +STUB("Fm-dmyywH9Q", fileno) STUB("Fm2AwUzfhIs", sceDevUsbReadHostRaw) +STUB("Fm3MkCIcp7k", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEED2Ev) +STUB( + "Fm4-+OaUWQo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEE11get_deleterEv) +STUB( + "Fm9nKJ67nQc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB( + "FmCYUIeYM7w", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE3endEv) +STUB("FmCpUwzsqqo", _ZN7WebCore17NowPlayingManagerdaEPv) +STUB("FmDmhB16wwE", _ZN3sce2npeqERKNS0_9NpTitleIdERK12SceNpTitleId) +STUB( + "FmH1Sn6H3tw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEC1EPS8_) +STUB( + "FmKHOzpinRI", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Network9Initiator4TypeEEEN3WTF8OptionalIT_EERKNS6_6StringE) +STUB( + "FmKUG9inRjU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE5clearEv) +STUB("FmL7VrECwds", il2cpp_capture_memory_snapshot) +STUB("FmO1xZ5pATA", u_getUnicodeProperties_67) +STUB("FmOpWiZg-Q0", il2cpp_string_intern) +STUB("FmQphPwpBis", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEE5resetEPS6_) +STUB( + "FmX1-8SgW+E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEED1Ev) +STUB("Fmanv10GDxM", JNU_ThrowInstantiationException) +STUB( + "FmdGRjaNgX0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE8pushBackERKS8_) +STUB( + "Fmgv+EuX16Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEC1EPS6_PNS2_10LibContextE) STUB("FmjFl9Nvwcw", sceShellCoreUtilFreeUpSpaceOnSmrHdd) +STUB("FmpoQCGORqc", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12BlockedUsersEE3setEv) +STUB("FmqwUp-Kius", _ZN2GK9PlayerPSND2Ev) +STUB( + "FmrXiY6yzTQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEE11get_deleterEv) STUB("Fmx4tapJGzo", sceNpTusSetDataAVUserAsync) +STUB("Fmy9vMwwroc", _ZN3JSC17DeferredWorkTimer6doWorkERNS_2VME) +STUB( + "Fn0T-uO7wZE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("Fn4CbPkv4E8", _ZN3sce7Toolkit2NP2V212NetworkUtils12BandwithInfo8deepCopyERKS4_) +STUB( + "Fn8UyJMipUw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "FnAf-8nZ7hg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEC2Ev) +STUB("FnEjFAzY+Ao", _ZNK3sce2np10JsonNumber3GetEPi) +STUB("FnEnECMJGag", _ZTVSt8messagesIcE) +STUB("FnIDUmNAvm0", _ZN23sceMetadataReaderWriter13_storageTableE) +STUB("FnJ0pXF0gR0", _ZN7WebCore19ResourceRequestBase18addHTTPHeaderFieldERKN3WTF6StringES4_) +STUB("FnLDy4R08cQ", CRYPTO_cleanup_all_ex_data) STUB("FnQzqm0V3lU", scePerfTraceIoControllerCreate) +STUB( + "FnV5d20pWbA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEC2EPNS2_10LibContextE) STUB("FnWkLNOmJXw", sceUserServiceIsGuestUser) +STUB("Fncgcl1tnXg", erand48) +STUB( + "FndZtozeZpk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "Fne4jC9JJZA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) STUB("FneFypEDRgY", sceAgcDcbSetWorkloadStreamInactive) +STUB("FnhAa5JKqhE", _ZNK7WebCore19ResourceRequestBase12isolatedCopyEv) +STUB("FnhwGKKZOjU", cairo_show_glyphs) +STUB( + "FnydCZal0fc", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB( + "Fo+vc2wFP9A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEC2EPS8_) +STUB("Fo+yeWyWEec", _ZN3IPC15ArgumentEncoder6encodeEt) +STUB("Fo--ToR1fsg", _ZN7WebCore9CookieJar10clearCacheEv) STUB("Fo0Oaoqukg4", sceAmprAmmCommandBufferRemapWithGpuMaskId) +STUB( + "Fo1CWDdzm+A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("Fo29Yb3JBYs", _ZN3sce7Toolkit2NP2V28Commerce10CategoriesC2ERKS4_) +STUB("Fo60F0v1VZU", mono_aot_Sce_Vsh_Accessor_Db_Notifymethod_addresses) +STUB("FoARlup+lmg", _malloc_usable_size) +STUB( + "FoBddwLfphM", + _ZN3JSC8JSObject19getOwnPropertyNamesEPS0_PNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("FoDIzczBEy4", _ZN3JSC22printSuperSamplerStateEv) +STUB( + "FoIPs0G+QqM", + _ZN7WebCore11JSDOMMatrix6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_9DOMMatrixENS6_13DumbPtrTraitsIS8_EEEE) +STUB("FoLtZPut76Q", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_17MessageAttachmentEED2Ev) +STUB("FoMTASl07eo", uhash_hashCaselessUnicodeString) +STUB("FoRLx-EgrCs", mono_aot_Sce_PlayStation_Jsonunwind_info) +STUB( + "FoW0vK0fhvY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEptEv) +STUB("Foc0YVGG9s8", _ZN3sce7Toolkit2NP2V23TUS7Request7SetDataC1Ev) +STUB("FoeX6ro3gg0", _ZNK7WebCore5Color10asExtendedEv) +STUB("FofqQDjeu5I", _ZN3JSC20JSStringHeapCellTypeD2Ev) +STUB( + "Fohv+3uFE-U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEEC2ERSA_) +STUB("Foj36srqK9g", mono_monitor_enter_v4) +STUB("FonIxj-iNqo", _ZN3sce2Np9CppWebApi11Matchmaking2V18Location16setGameSessionIdEPKc) STUB("Foo+QaGFJTQ", sceDataTransferTargetRequestTransferSpeed) +STUB( + "FopwU5bIFcc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE21intrusive_ptr_add_refEPS7_) +STUB("Fot-m6M2oKE", _Putstr) +STUB("FotoJOXjmps", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEEC2ERS5_) +STUB("Fou2sUion5M", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersC1Ev) +STUB( + "FovPcXsm+38", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEC2ERS7_) +STUB( + "Fp667JFixf0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEC2EPNS2_10LibContextE) +STUB( + "Fp6Aa-YHqHM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEneERKS9_) STUB("FpCZBcq2c7Y", sceCesMbcsUcsContextInitCopy) +STUB("FpENdRuW664", Java_java_io_RandomAccessFile_seek0) +STUB( + "FpTSNJJ0GoI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEEC2Ev) +STUB( + "FpastpcN5Qs", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser9hasoffsetEv) +STUB("Fpchv+-9IbQ", _ZNK9Inspector22InspectorDebuggerAgent17breakpointsActiveEv) +STUB( + "FpcoN5Mx+N0", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB( + "FpddYxuOt3g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEC1Ev) +STUB( + "FpilmaiaIKU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEcvbEv) +STUB( + "FplHL+KDETs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEixEm) STUB("FpmVtvy8tYo", scePfsGetBlockTableReadCommand) +STUB("FpqHuF8DFi8", mono_aot_Sce_PlayStation_Imeunbox_trampolines_end) +STUB( + "Fpwu2-A4VwI", + _ZN3sce2Np9CppWebApi14SessionManager2V135PostGameSessionsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_11GameSessionEEEEEPNS9_INS3_28PostGameSessionsResponseBodyEEE) +STUB("FpwzAcEDEIU", rgctx_fetch_trampoline_rgctx_60) +STUB("FpxnD+vtdFQ", _ZN3WTF21RefCountedLeakCounter9incrementEv) +STUB( + "Fq1XJ-1PBxc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEEaSERKSA_) STUB("Fq6+0Fm55xU", sceUsbdExit) +STUB( + "FqCyijE2SnY", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer12setdirectionENS5_9DirectionE) +STUB("FqHN0elWA6E", _ZN3sce3pss5orbis9framework12PsmInitParamC1Ev) +STUB( + "FqKeUhlzrRQ", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("FqPVY+sRxGM", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE7popBackEv) +STUB( + "FqR6+W7Y8OE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEC2EPNS2_10LibContextE) +STUB( + "FqSamUDPFlw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEED2Ev) +STUB( + "FqWJnZTvcPM", + _ZN3sce2Np9CppWebApi14SessionManager2V130RequestGameSessionMemberPlayerC2EPNS1_6Common10LibContextE) +STUB("FqWrH4hnBow", u_getDataDirectory_67) +STUB( + "FqYJDdmVjs4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("Fqc0-3YCXjo", tls_close) +STUB("Fqg7CSrL+1I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEC1Ev) +STUB("FqjmInhF2yQ", Java_com_sony_gemstack_resources_ResourceManager_reserveStream) +STUB( + "FqkkKYA9eNc", + _ZN3sce2Np9CppWebApi11Matchmaking2V112ErrorFactory6createEPNS1_6Common10LibContextElPKcS9_PNS5_12IntrusivePtrINS3_5ErrorEEE) STUB("Fql-di-dWu0", sceSpPthreadCondattrDestroy) +STUB("FqlohMUHxBs", _ZN3sce7Toolkit2NP2V28Commerce10ContainersD2Ev) +STUB("Fqmxb+ZzXfw", _ZN3sce7Toolkit2NP2V210Tournament12MatchDetailsD2Ev) STUB("Fqn-wkJCOes", sceM4aacEncEncode) +STUB("FqneT2syjGE", FcFontMatch) +STUB( + "FqptE4Mnync", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEE5resetEPS9_) +STUB( + "Fqq6XXAfv8A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE10setContextEPNS2_10LibContextE) +STUB("Fqr9aR5mkcg", mono_aot_Sce_Vsh_Np_Managerjit_got) +STUB("FqsrXoH8AdQ", _ZN6WebKit17ChildProcessProxy18didFinishLaunchingEPNS_15ProcessLauncherEi) STUB("FqtDOHUuDNw", sceNpManagerIntGetParentalControlFlag) +STUB( + "Fr28jDV1iOQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEC2EPS8_) +STUB("Fr7j8dMsy4s", + _ZNKSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewPK2tmcc) +STUB( + "FrCFTw-J7C8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEmmEi) STUB("FrCNL9TQ8ms", sceAmprCommandBufferWaitOnCounter) +STUB("FrFSe3WaYFk", _ZN7WebCore6Editor26decreaseSelectionListLevelEv) +STUB("FrH6fg5FSeI", _ZN7WebCore14SocketProviderC1Ev) +STUB( + "FrHBP6hu78c", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEEdeEv) +STUB("FrIZp6mPIq0", _ZN7WebCore4Page20unmarkAllTextMatchesEv) +STUB( + "FrMpGbOpWcI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("FrPx59tZ91Y", _ZN7WebCore10JSLocation14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB("FrQmcZZVFpk", _ZN3sce7Toolkit2NP2V27NpUtils7Request17CheckPsPlusAccessC1Ev) +STUB("FrWdTOjaiOA", JSContextGroupRetain) +STUB("FrXKeGs6Md0", uniset_getUnicode32Instance_67) STUB("FraP7debcdg", sceWebBrowserDialogOpen) +STUB( + "Frb23wGoQs8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEE11release_refEv) +STUB("FriXzburZN8", _ZN7WebCore17PageConsoleClientnwEmPv) +STUB("FrjC3ev-71Y", _ZN3sce2Np9CppWebApi7Matches2V126RequestTeamMemberStatisticD2Ev) +STUB("Frm0+nWgZRo", _ZNSt9basic_iosIcSt11char_traitsIcEE4fillEc) +STUB("Frm1N1BC9XE", _ZNK15AbstractStorage13YoutubeFolder7GetStatEPNS_4StatE) +STUB( + "FrnzdlUgBnA", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_20NpSessionInformationENS1_15AppSTLAllocatorIS5_EEEEC2Ev) +STUB("FrsnVM33fps", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_28ActivityFeedSharedVideoStoryEE7addressERS3_) +STUB("FrtNUpYSmbA", mono_cli_rva_image_map) +STUB("FrwEznwnZts", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V113AttributeTypeEEdeEv) STUB("FrxliFYAO8Y", sceNpUtilGetIgnoreNpTitleId) +STUB( + "FrzOaq7JbJI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEaSERS7_) +STUB( + "Fs1q74mahsA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEEC1ERSA_) +STUB("Fs3ejLCo4zc", t1_driver_class) +STUB("Fs9m+rcaQM8", __asan_stack_malloc_4) +STUB( + "FsFEeOGHkoc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEEC2EPNS2_10LibContextE) STUB("FsOBy3JfbrM", sceUserServiceGetFileSelectorFilter) +STUB("FsRCiocN8k0", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEEC1Ev) +STUB("FsROImWgAGc", _ZThn16_N9Inspector18InspectorHeapAgent12stopTrackingERN3WTF6StringE) +STUB("FsRs30s47tk", + _ZN7WebCore21ContentSecurityPolicyC2EONS_3URLEPNS_27ContentSecurityPolicyClientE) +STUB("FsSCUyy3fMY", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18SessionInformationEEC1ERKS4_) +STUB("FsVDduQSoRU", fuse_lowlevel_notify_inval_inode) +STUB("Fsa9M5D8Dko", _ZN7WebCore12NamedNodeMap15removeNamedItemERKN3WTF10AtomStringE) +STUB( + "FsaVxexOmig", + _ZN9Inspector20InjectedScriptModule14ensureInjectedEPNS_21InjectedScriptManagerERKNS_14InjectedScriptE) +STUB("FscFh70QHyg", _ZNK7WebCore8FormData9asBlobURLEv) +STUB("FsiuQCKSE5Q", + _ZN4IPMI4impl10ClientImpl17invokeAsyncMethodEjPKNS_8DataInfoEjPjPKNS_6Client12EventNotifeeE) +STUB( + "FsjZmlJctW4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEC2EPNS2_10LibContextE) +STUB( + "FslkTgAZYyo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEC1EPS6_PFvS8_EPNS2_10LibContextE) STUB("FsouSN0ykN8", sceNpScoreGetRankingByNpIdPcIdAsync) +STUB("FssNW3GALk0", _ZN7WebCore8Document13activeElementEv) +STUB( + "Fsth-cnbVhQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "Fsv1hTLwxVA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "Ft++poeglbk", + _ZN8meta_gen11MsvPromoter29setKeyValue_TBLV_AudioBitrateENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB("Ft-3KAzl--c", _ZN3sce2Np9CppWebApi11Matchmaking2V15Error10setMessageEPKc) +STUB("Ft-VezxSErk", _ZN3sce2np13NpTitleSecretC2EPKvm) STUB("Ft3EtsZzAoY", sceKernelAioDeleteRequests) STUB("Ft5agD1+fA0", sceAvSettingNotifyProcessPostSuspend) +STUB("Ft6ZvhqtLic", uloc_getCurrentLanguageID_67) +STUB("FtC9uKqXDjg", _ZN7WebCore15HitTestLocationC1Ev) +STUB( + "FtEdZhZtlFA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEED1Ev) STUB("FtGP5aXKFQU", sceFsMountGamePkg) +STUB("FtIzMIIekMw", _ZN7WebCore8SVGNames17unicode_rangeAttrE) +STUB("FtLOITlasvY", _ZN3WTF13StringBuilder12appendNumberEx) +STUB( + "FtMRmqqq1Ag", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "FtMZkujMvQQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB("FtOPxGScdLw", _ZN9Inspector22InspectorDebuggerAgent26buildBreakpointPauseReasonEm) +STUB("FtPFMdiURuM", _ZTISt16nested_exception) +STUB("FtVNuKHl+0k", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEE5resetEPS5_) +STUB( + "FtWexLid4o0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEE11get_deleterEv) +STUB( + "FtbxUaDwvTk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEEC2EPS6_PNS2_10LibContextE) +STUB("Ftf+UWKXOAA", _ZN3sce7Toolkit2NP2V210Tournament13OneVsOneMatchaSERKS4_) +STUB("FtnH+ny7aDw", _ZN7WebCore11DisplayList6RotateD1Ev) +STUB("FtrFPGe8m30", _ZN3sce7Toolkit2NP2V23TUS7Request7SetDataC2Ev) +STUB( + "FtrY+p5gefI", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEiRNS2_10LibContextEPT_m) +STUB( + "Fts2nXFk6F0", + _ZN3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsers10initializeEPNS1_6Common10LibContextE) +STUB( + "FttaQVGuJpA", + _ZN7WebCore19TextTrackCueGeneric6createERNS_22ScriptExecutionContextERKN3WTF9MediaTimeES6_RKNS3_6StringE) +STUB("Fu0n0QGoarQ", JSPropertyNameArrayRetain) +STUB("Fu1cFF-yuM4", g_MonoEnv) +STUB( + "Fu8AxlYjsaE", + _ZN9Inspector21HeapBackendDispatcher12stopTrackingElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "Fu94Ox0tP-A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEE5resetEPSA_) +STUB("FuE8Sk+7tHM", _ZN3JSC7Symbols38regExpStringIteratorUnicodePrivateNameE) STUB("FuEl46uHDyo", sceImeDicReplaceWord) +STUB( + "FuGEiXpD874", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEC1Ev) +STUB("FuHXBscOxGk", _ZNK7WebCore16HTMLImageElement36pendingDecodePromisesCountForTestingEv) +STUB("FuJr+lxuOIM", _ZN3sce7Toolkit2NP2V28Matching6Worlds5resetEv) +STUB( + "FuK-xhMc23Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("FuPUzILKqDU", _ZN3sce7Toolkit2NP2V28Commerce7SkuInfoC1Ev) +STUB( + "FuRtPqkRaPA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEE7add_refEv) +STUB("FuSKfS9KP74", mono_aot_System_Resources_ResourceManagerunbox_trampoline_addresses) STUB("FuVbkyKlf+s", sceAgcCbCondWriteGetSize) +STUB( + "FuVsViyrmaU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEED1Ev) +STUB("FuYvSTtsdlM", unumsys_getName_67) +STUB("FubuBXanVWk", _ZN3sce2np3ipc17ServiceIpmiClientC1Ev) +STUB( + "FueXOxLWLAo", + _ZN7WebCore19UserContentProvider60invalidateAllRegisteredUserMessageHandlerInvalidationClientsEv) +STUB("Fuh2NwPuKyQ", _ZN7WebCore17LibWebRTCProvidernaEmPv) +STUB("FuiRrsO3xGA", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountIdD2Ev) +STUB( + "FupxgeeUnBg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEppEi) +STUB("Fux56rPNtvs", WKBundlePageCanShowMIMEType) +STUB("FuxaUZsWTok", fesetexceptflag) +STUB("FuxhR0K0zVE", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession23getLocalizedSessionNameEv) STUB("Fuy39y9QJdE", sceVencCoreSyncEncode) +STUB("FuyOGJaB15A", _ZN9Inspector18InspectorHeapAgent17didGarbageCollectEN3JSC15CollectionScopeE) STUB("Fv+LV+3CjIE", sceApplicationResume) +STUB("Fv6ugI-vz9Q", __tsan_atomic8_compare_exchange_strong) +STUB("Fv8MWCUH8k8", FT_Stream_GetULong) +STUB("FvE94vlStlg", mono_aot_System_Collectionsjit_code_end) +STUB( + "FvHMso-wnz0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) STUB("FvI50-3hoSo", sceDbgAmprAmmGetNumberOfErrors) +STUB( + "FvQmNv4YemE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("FvUqRaU7jtg", sysc_m00) +STUB("FvZFydLB754", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18SessionInformationEEC2ERKS4_) +STUB( + "FvZSgMMFBZM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEixEm) +STUB("FvhDmS1+KJc", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_6TicketEED2Ev) +STUB( + "FvicVw4S4tY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEC2EPS8_) +STUB("FvmbvyYnfGQ", _ZN3JSC12RegExpObjectC1ERNS_2VMEPNS_9StructureEPNS_6RegExpE) +STUB("Fvmf0p6INBU", mono_aot_Sce_Vsh_Accessorunbox_trampolines_end) +STUB( + "FvrPJobNCZQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEED2Ev) STUB("FvuQlkBE3Ng", sceApplicationBlockingKill2) +STUB( + "FvuqpOA4YRo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEED2Ev) +STUB("Fvv446hlLkA", mono_lock_free_queue_enqueue) +STUB( + "FvxQvacs+F8", + _ZN7WebCore31forwardFunctionCallToBackingSetERN3JSC14JSGlobalObjectERNS0_9CallFrameERNS0_8JSObjectERKNS0_10IdentifierE) +STUB( + "Fw1InKyzD+E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEEaSERSB_) +STUB("Fw1nH3Map3o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEaSERS7_) +STUB("Fw6D7tNaqBM", _ZThn24_N9Inspector22InspectorDebuggerAgent11didContinueEv) +STUB( + "Fw7m66m-nMQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEE7add_refEv) +STUB( + "Fw9HgMNu7No", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEEC1ERS9_) +STUB("FwB6SfbyAQM", cairo_ft_font_face_reset_synthesize_weight) +STUB( + "FwEVvEmlhSM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEEC1Ev) +STUB("FwKWIx0rgyY", _ZN3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse10getFriendsEv) +STUB("FwLum2FjiBQ", _ZN7WebCore19sleepDisablerClientEv) +STUB("FwOTcwLmDFw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEEppEv) STUB("FwR3P7Qi5Q0", sceHandTrackerEraseResult) +STUB("FwRBE7FurCc", + _ZNSt9_FacetptrISt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEE6_PsaveE) +STUB("FwRQrJGdfGk", __tsan_atomic128_fetch_xor) +STUB("FwXIWwbIPrI", _ZN7WebCore13GraphicsLayer7setSizeERKNS_9FloatSizeE) +STUB("FwYZZK4UCXQ", rgctx_fetch_trampoline_rgctx_36_p) +STUB( + "FwYwIsTzaOo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEC2EPS8_) +STUB("FwZxHpDJ0gs", _ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriendsD2Ev) +STUB("FwaUer3zeVc", mono_aot_Sce_Vsh_DiscPlayerplt_end) +STUB("FwhQYXEmkOY", rgctx_fetch_trampoline_rgctx_32_p) +STUB("FwjRUuF9+B8", mono_profiler_events) +STUB( + "FwkRla8eI6E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEC1Ev) +STUB("FwmwwnqEvRw", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_8TempRankEE3getEv) +STUB( + "Fwnfq0Ef7F8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEE7get_refEv) +STUB("Fwow0yyW0nI", remquol) +STUB( + "FwpBg3fJTys", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) STUB("FwpK7+QxBlg", sceBgftServiceIntDownloadFindActiveTask) +STUB( + "FwsjW4Qw5Vk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE5clearEv) STUB("Fwvh++m9IQI", sceGnmGetGpuCoreClockFrequency) +STUB("FwzVaZ8Vnus", optopt) +STUB("Fx2FORGKZJM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEC2ERKS7_) +STUB("Fx2UwoQVVmo", _ZN3sce2np7CalloutD0Ev) +STUB("Fx3lSf37Z4c", mono_btls_x509_crl_from_data) +STUB( + "FxA3THhm6Mw", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V226WebApiErrorResponseFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_19WebApiErrorResponseEEE) +STUB( + "FxENaDHh8BY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEEC1ERSA_) +STUB("FxFSy0yOK2U", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getCurrentPosition) +STUB("FxG0371AIgc", _ZN7WebCorelsERN3WTF10TextStreamERKNS_9FloatRectE) +STUB( + "FxH3lzOpbxA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("FxH5g4E9Vj0", unum_parseDoubleCurrency_67) +STUB("FxH74ylow+Q", _ZN7WebCore19JSAnimationTimelineD2Ev) +STUB("FxHW5NuEXsY", tcflush) +STUB( + "FxIaQFtBuAE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEEC2ERSA_) +STUB( + "FxJvnuwh23U", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEdeEv) +STUB("FxM2yfH7BX8", uset_remove_67) +STUB("FxOHF0FBNfU", _ZN15AbstractStorage14StorageManager16RegisterListenerEPNS_17ItemEventListenerE) +STUB("FxOa6zwDh1c", _ZNK7WebCore16HTMLInputElement8multipleEv) +STUB( + "FxPu4oxlSt4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("FxSpiu+ptYo", _ZN3sce7Toolkit2NP2V28Matching6WorldsaSERKS4_) +STUB("FxThiGU3qyM", unorm2_close_67) +STUB("FxVZqBAA7ks", _write) +STUB("Fxe84wRnMaY", mono_get_uint64_class) +STUB("FxeRx7vInsU", _ZN3sce7Toolkit2NP2V29Messaging12Notification16NewInGameMessageD1Ev) +STUB( + "Fxg5jB6x6Wg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE5beginEv) +STUB("Fxk0AdJTh8s", Java_java_net_Inet6Address_init) +STUB( + "Fxlgzw6CqC0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("FxnOqy130ZY", _ZN3sce2Np9CppWebApi14SessionManager2V111GameSessionD2Ev) +STUB("Fxq5MuWRkSw", SSL_ASYNC_getRecvBuffer) STUB("Fxux7Ob+Ynk", sceNpUtilGetNpLanguageCode2Str) +STUB( + "Fxw5ElewQ5M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEE3getEv) +STUB( + "FxwPiTxDbhU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEppEv) +STUB( + "Fxxr5lYBfl4", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("Fy3Br9HMIi8", _ZN7WebCore11DisplayList4ClipD2Ev) +STUB( + "Fy576x6mUxc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEppEi) STUB("Fy96WkLemI0", sceCesEucKrUcsProfileSetSbcs) +STUB("FyJjbH+d4HQ", __tsan_write16_pc) +STUB("FyMm5OSA9Mw", _ZN7WebCore17cssValueKeywordIDEN3WTF10StringViewE) +STUB( + "FyOAjfkFjWQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEC2ERS7_) +STUB("FyOMUdXa5Tc", _ZN3WTF11PrintStream3endEv) +STUB("FyPe4Yj0RRg", _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBodyD2Ev) +STUB( + "FyPujRNhwwc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEppEi) +STUB("FyQIb3s4-Ow", WKBundleAddUserScript) +STUB( + "FySEeDYOjLk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEEaSERSA_) +STUB("FySlXOyk40o", _ZNK3sce3Xml3Dom4Node11getNodeNameEv) +STUB( + "FySvwNKJp2U", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody19setJoinableUserTypeERKNS3_22CustomJoinableUserTypeE) +STUB( + "FyT0cBmd+Fs", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEEiRNS2_10LibContextEPT_m) +STUB("FyVJTzY51dc", WKArrayRemoveItemAtIndex) +STUB("FyVn4gpsWfU", u_countChar32_67) +STUB("FyWCJLdsxqU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEED2Ev) +STUB("FyhlwO6-+sM", glDepthFunc) +STUB("Fyk2lOILeKY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEE7get_refEv) +STUB("FylpFtTPS5s", mono_aot_Sce_Vsh_MyGameListunbox_trampolines_end) +STUB("Fyogm-tTBOc", + _ZN7WebCore20SVGPathStringBuilder6moveToERKNS_10FloatPointEbNS_18PathCoordinateModeE) +STUB( + "FyolTF1dvuA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "FypKAVi0Xhw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEptEv) STUB("FyuoXPzv780", sceFiosDebugDumpDH) STUB("FyvlwTMC2TI", sceVideoCoreInterfaceCreateFrameBufferContext) STUB("Fyw2Fkasc+4", sceAvSettingNotifyUmdEvent) +STUB( + "FywKncPHxLc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB( + "FywwLXCpuVw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEmmEi) +STUB("FyxSrbBQ9-c", _WScanf.schar) +STUB( + "FyznWfTyqGI", + _ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody20setLargeDataNumLimitERKi) STUB("Fz+01Q4GjpM", sceTextToSpeechCancelImpl) +STUB("Fz+So9vLtw0", _ZN7WebCore6ISOBoxD0Ev) +STUB( + "Fz-U1vhb4mY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEC2Ev) STUB("Fz3C6fePEb4", sceDeci4hDrfpFstat_fuse) +STUB( + "FzB0CiU5y1Y", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditions12setaccountIdEPKc) STUB("FzECy3Wxxas", sceVdecswGetPictureInfo) STUB("FzEWeYnAFlI", sceContentExportInit) +STUB( + "FzJljjQlYEg", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V143SetVariableWithConditionsRequestBodyFactory6createEPNS1_6Common10LibContextENS3_9ConditionElPNS5_12IntrusivePtrINS3_36SetVariableWithConditionsRequestBodyEEE) +STUB( + "FzLcLuehUeo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE7popBackEv) +STUB( + "FzNIpimABFg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEmmEi) +STUB("FzPzYIEFW74", mono_signature_hash) STUB("FzQS6DREDfk", sceSharePlayProhibitController) +STUB("FzTIDgUHT0I", mono_aot_System_Runtimeplt_end) STUB("FzVPLU4R+Rg", sceVencCoreStartSequence) +STUB("FzWXwAyLoCw", jinit_2pass_quantizer) +STUB("FzaIQgRM9Pw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEEC1ERKS6_) +STUB( + "FzaSoS-xZuI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V145SetMultiVariablesRequestBody_variablesFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_38SetMultiVariablesRequestBody_variablesEEE) STUB("FzjISMWw5Xg", sceSystemStateMgrExtendShutdownTimerForPostAutoUpdateProcess) +STUB( + "FzopadzxGLU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEneERKS9_) STUB("FzpLsBQEegQ", sceFontGraphicsGetDeviceUsage) +STUB("FzqYPd7E5Ho", _ZN3sce7Toolkit2NP2V211UserProfile10NpProfilesC2Ev) +STUB("FzqrpwhFlJw", BIO_printf) +STUB("FzrPo3xk3aI", _ZN7WebCore16HTMLMediaElement25setCurrentTimeForBindingsEd) +STUB("G++R7K10k0E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEC2Ev) +STUB( + "G+0djWyODzI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEeqERKS9_) +STUB( + "G+2CCVLVFDs", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12unsetString8Ev) +STUB( + "G+5PYx1k++U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE5beginEv) +STUB( + "G+5oGeFDYBE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEaSERS7_) +STUB( + "G+6r8z+ZKDY", + _ZN7WebCore30InspectorInstrumentationWebKit24interceptRequestInternalERNS_14ResourceLoaderEON3WTF8FunctionIFvRKNS_15ResourceRequestEEEE) +STUB("G+88ITlwCTY", _ZN3JSC7Symbols32AsyncFromSyncIteratorPrivateNameE) +STUB("G+93zhSXEbk", _ZN3sce7Toolkit2NP2V24Core18CustomResponseDataC2ERKS4_) +STUB("G+BEH0hlDrQ", _ZN3sce2Np9CppWebApi7Matches2V119ResponseTeamResults20getTeamMemberResultsEv) +STUB("G+C7RYtPMbI", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110TaskStatusEEC1Ev) +STUB("G+LWfM-r6Gg", _ZN7WebCore10XMLNSNames9xmlnsAttrE) +STUB("G+Lq53FSulk", sqlite3_errcode) +STUB("G+P6ACwtwVk", __libunwind_Unwind_GetTextRelBase) STUB("G+QLTfyLMYk", sceAudioPropagationSourceGetAudioPathCount) +STUB("G+REYMt-IKM", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V224TestForProfanityResponse12unsetMessageEv) +STUB( + "G+S3cl-sxP4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEC2Ev) +STUB("G+XSOLKw5AI", DES_set_odd_parity) +STUB( + "G+ZR9welKZ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEEaSERSA_) +STUB( + "G+ZwzZ+R+FI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEeqERKS9_) +STUB( + "G+dqMVctaDI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEC1EPNS2_10LibContextE) +STUB( + "G+ewQYQUq3Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEEaSERKSA_) +STUB("G+v692ul7MA", _ZThn8_N3sce2np9HttpTrans4ReadEPNS0_6HandleEPvmPm) +STUB("G-+SmxcuaMA", _ZN7WebCore20UserGestureIndicatorD1Ev) +STUB("G-2uaUYmQjw", delegate_virtual_invoke_9) STUB("G-39lsdSgXo", sceFiosRenameSync) +STUB("G-6N-vLNZ10", _ZN7WebCore18PlatformTimeRangesC2Ev) STUB("G-7VqR7pzeA", sceCesUcs2ToEucKr) +STUB("G-82OcP0fvk", jpeg_fdct_6x6) +STUB( + "G-IymMZQk4M", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE5beginEv) +STUB("G-Jl6md9fz4", uloc_canonicalize) STUB("G-MYv5erXaU", sceKernelGetAppInfo) STUB("G-NhAZUNlwc", sceKernelWriteMapWithGpuMaskIdCommand) +STUB("G-QmsJI7gXE", _ZN3sce7Toolkit2NP2V26Trophy16TrophyPackTrophyaSERKS4_) +STUB( + "G-TX0ZOueng", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEneERKS9_) +STUB( + "G-UcquEEV7k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("G-f-m1EyF0A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEE3getEv) +STUB( + "G-jgwqaPxNQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEEC1ERSA_) +STUB("G-rWYY8TfUY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEED1Ev) STUB("G-w5-0Oy+Pc", sceVshAvcapOpenVideo) +STUB("G-yDD7GpSZU", g_array_append_vals) +STUB( + "G-z56TXBIYk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEEC1EPSA_PFvSC_EPNS2_10LibContextE) +STUB("G0+FF86PJns", u_totitle_67) +STUB( + "G0-GEDZG-cA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE21intrusive_ptr_sub_refEPS9_) +STUB("G02jybb1+go", + _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile11setOnlineIdERK13SceNpOnlineId) +STUB("G0520-GD5FM", _ZN3sce7Toolkit2NP2V212EventsClient11EventInGameD2Ev) +STUB("G0EShb8y49Y", + _ZN15AbstractStorage18DailymotionStorageC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB( + "G0GseSL+1EY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEEaSERSA_) +STUB("G0RUhA20GAw", mono_aot_ReactNative_Vsh_Commonunbox_trampolines) +STUB("G0TZ92Vt05Y", rgctx_fetch_trampoline_mrgctx_17_p) +STUB("G0U+9Gt7XPg", __tsan_atomic8_load) +STUB("G0VGrAWh0Iw", _ZN7WebCore5Range10insertNodeEON3WTF3RefINS_4NodeENS1_13DumbPtrTraitsIS3_EEEE) +STUB("G0WF9pgnzCE", udat_setContext_67) +STUB("G0YOlUTPg78", _ZN3JSC16InternalFunction11getCallDataEPNS_6JSCellERNS_8CallDataE) +STUB("G0ccNQDjLVk", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEEaSERKS6_) +STUB("G0gdWIZvnKI", _ZN9Inspector20InspectorTargetAgentdaEPv) STUB("G0hFeOdRCUs", sceSaveDataChangeInternal) STUB("G0jrLdvEqDw", sceAgcDcbMemSemaphore) +STUB( + "G0o8NfhTxGo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) STUB("G0pE+RNCwfk", sceNpScoreDeleteNpTitleCtx) +STUB( + "G0xjibk1xPM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEppEv) +STUB("G1-NjYeIowE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE7popBackEv) STUB("G1-RyPlIrIY", scePadTrackerInit) STUB("G12foE0S77E", sceSaveDataGetAutoUploadSetting) STUB("G13HF1z-e4o", sceContentSearchOpenMetadata) +STUB( + "G13deiPI5fk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEmmEi) STUB("G14y+PFH9KE", SdkVersion) +STUB( + "G15ALic2GPE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEEdeEv) +STUB("G1C+IzPmhc0", mspace_lock) +STUB("G1CxXeXs2d0", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeaders9unsetETagEv) +STUB( + "G1IdDujNvyQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "G1ONyub9214", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("G1RjxI6BFSg", _ZN7WebCore19serializationForCSSERKNS_11LinearSRGBAIfEE) +STUB("G1RwFxS5NPo", _ZN7WebCore21AudioHardwareListener6createERNS0_6ClientE) +STUB("G1WJEmXaB20", mono_debugger_agent_transport_handshake) STUB("G1YOKDJYX2Y", sceAudioOut2GetSpeakerArrayMemorySize) +STUB("G1ejD-EBEAw", _ZN3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBody13unsetLocationEv) +STUB("G1fDABsBuxo", WKDataGetBytes) +STUB("G1g1T9IQFEY", _ZN3JSC9Structure8isFrozenERNS_2VME) +STUB("G1kDk+5L6dU", _Call_onceEx) +STUB("G1kiSnxB7pA", _ULx86_64_dwarf_callback) +STUB( + "G1lMEu4RoR4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("G1rbEqv-HhM", + _ZNK7WebCore12ChromeClient33signedPublicKeyAndChallengeStringEjRKN3WTF6StringERKNS_3URLE) +STUB("G1s+fE+00M4", + _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_19CSSStyleDeclarationE) +STUB("G1z7M8FULpg", _ZN3sce2Np9CppWebApi12Leaderboards2V111UserFactory7destroyEPNS3_4UserE) +STUB("G1zcPUEvY7U", _ZNKSt7codecvtIwc9_MbstatetE9do_lengthERS0_PKcS4_m) STUB("G2+JJ+BamfE", scePlayReadyReaderDecrypt_Legacy) +STUB("G23Rtu5LBvI", + _ZNK3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForRead15spectatorsIsSetEv) +STUB( + "G24ICW-CBmc", + _ZN7WebCore21ComplexTextController7advanceEjPNS_11GlyphBufferENS_19GlyphIterationStyleEPN3WTF7HashSetIPKNS_4FontENS4_7PtrHashIS8_EENS4_10HashTraitsIS8_EEEE) +STUB("G29jd4UdmU8", _ZNK3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead12natTypeIsSetEv) +STUB("G2AWJUJFDjs", mono_register_machine_config) +STUB( + "G2CFSKQVJP4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEneERKS9_) +STUB( + "G2LZZPVIkYQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEC1Ev) +STUB( + "G2MW2sFUAos", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEE7get_refEv) +STUB("G2Ny4kfT-+U", _ZN15AbstractStorage11LocalFolder6RemoveEb) STUB("G2OOzViPX7I", sceBufferInit) +STUB("G2QFZfc7NH4", GCC_except_table66) +STUB( + "G2QKxGBCrpg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEE11release_refEv) +STUB("G2U3S-VCv-c", glIsVertexArray) +STUB("G2VH+7gp8Qc", mono_icall_init_comp) +STUB( + "G2VfL6sFcuk", + _ZN7WebCore24CoordinatedGraphicsLayer40setCoordinatorIncludingSubLayersIfNeededEPNS_30CoordinatedGraphicsLayerClientE) +STUB( + "G2Y3lwYhm8I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEppEi) +STUB("G2YE8xWdlU8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEE11get_deleterEv) +STUB("G2Z-FNOcMT8", _ZN3sce7Toolkit2NP2V27Ranking12RangeOfRanks9MAX_RANGEE) +STUB( + "G2c5+68-R-k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEEC2ERSA_) +STUB( + "G2hj0RMA9Dw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "G2hkcFEoy30", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEppEv) +STUB( + "G2k--Yv6xD0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("G2kjkUnsxJ4", _ZN7WebCore7JSRangeC2ERKS0_) +STUB( + "G2m4fT8bWpc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE5beginEv) +STUB("G2tb9MfBnFs", _ZN4IPMI7SessionD0Ev) +STUB("G2wJ3AqjNDs", _ZN3sce2Np9CppWebApi14SessionManager2V111GameSession8fromJsonERKNS_4Json5ValueE) +STUB("G2y9Aln7HYg", _ZN3sce3pss4core9threading4CondD1Ev) +STUB("G30u3vZ0xGc", WKPreferencesGetWebAnimationsCSSIntegrationEnabled) +STUB("G33UVyzplCY", _ZN7bmalloc5Cache25allocateSlowCaseNullCacheENS_8HeapKindEmm) +STUB("G350AOROeU4", _ZN3sce7Toolkit2NP2V210Tournament10TeamMemberD2Ev) +STUB( + "G37m8nX5spg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEptEv) +STUB( + "G38CT2ThEYQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEC1EPS7_PFvS9_EPNS2_10LibContextE) STUB("G3AnLNdRBjE", sceNpWebApiInitialize) +STUB( + "G3BBQSsDo9M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEC1Ev) +STUB("G3FORkp2ePs", _ZNK7WebCore6Quirks56shouldDispatchSyntheticMouseEventsWhenModifyingSelectionEv) +STUB("G3Fa5r+f11U", _ZN7WebCore8Document4headEv) +STUB("G3GJxr0Wg6A", _ZN3JSC2VM22errorInstanceSpaceSlowEv) STUB("G3O2j9f5z00", sceNetGetRandom) +STUB("G3UrSBjCgXA", wcstod.fpinan) STUB("G3brhegfyNg", sceRazorCpuWriteBookmark) +STUB( + "G3gZD-XtzZs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEC2ERKS7_) +STUB( + "G3h-NDHnyW4", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "G3myszLfkIc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "G3osstxzMWg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEC2EPNS2_10LibContextE) +STUB("G3qjOUu7KnM", flsl) +STUB("G3uGD3Wqll4", mono_btls_x509_up_ref) +STUB("G4+RWlGLEt0", WKContextCopyPlugInAutoStartOriginHashes) STUB("G40-Idmfb-8", sceCesUtf16ToSJis) STUB("G420P25pN5Y", sceCoredumpDebugTriggerCoredump) +STUB("G43WQVeW3Bo", _ZNK7WebCore12ISOWebVTTCue8durationEv) +STUB( + "G44HCU7cNh4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEC2Ev) +STUB("G46aDJx5Qx8", + _ZNK3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody11getSortModeEv) +STUB("G46u5R1Ng2o", GCC_except_table352) +STUB("G47L4jUy648", + _ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends9terminateEv) +STUB( + "G4A-f1sFGFU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE5emptyEv) +STUB("G4FYQtsjOX0", _ZN3sce2np3ipc17ServiceIpmiClient11InitServiceEi) +STUB( + "G4HmUyS-KLs", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEiRNS2_10LibContextEPT_m) +STUB("G4J2MwKCa2Q", _ZThn24_N9Inspector28InspectorScriptProfilerAgentD1Ev) +STUB("G4Jr+rsslPg", _ZN3WTF11setDataFileEOSt10unique_ptrINS_11PrintStreamESt14default_deleteIS1_EE) +STUB("G4NgZuAegEE", + _ZN7WebCore20ResourceResponseBase18addHTTPHeaderFieldENS_14HTTPHeaderNameERKN3WTF6StringE) +STUB( + "G4PJ0C9QWlM", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "G4PRrzc81Es", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("G4Pw4hv6NKc", _ZNSt14_Num_ldbl_base10is_boundedE) STUB("G4Q8KNkb5XE", sceCompositorAllocateIndex) +STUB( + "G4QJQ2hZwWQ", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser9setoffsetEi) +STUB( + "G4WTZycq2nM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEC1Ev) +STUB("G4WkJKGm3Q8", ucol_reset_67) +STUB( + "G4WyhMLdOZI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE8pushBackERKS8_) +STUB( + "G4WzCGB5t9s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEED1Ev) +STUB("G4XM-SS1wxE", _ZTVN10__cxxabiv123__fundamental_type_infoE) +STUB("G4bcOddzB7o", _ZN3JSC9Exception6createERNS_2VMENS_7JSValueENS0_18StackCaptureActionE) STUB("G4c6av2TDtc", sceDbgGetModuleInfo) +STUB("G4fAeJa3sKU", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V112TicketStatusEEmmEv) +STUB("G4hygtgV3+o", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_26ActivityFeedCondensedStoryEE7addressERS3_) +STUB( + "G4j+dyj6ux0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "G4jUB+B8ZmE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEeqERKS9_) +STUB( + "G4jvQHLGZLg", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V122FrequentlyMutedFactory7destroyEPNS3_15FrequentlyMutedE) +STUB( + "G4sUafXFRnY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEED1Ev) STUB("G4tFfSDPtXU", sceDebugDestroyPerfScratchExecutableArea) +STUB( + "G4ttzwQKgYk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("G4uZKT3k7PE", mono_aot_Sce_Vsh_JsExtensionjit_got) STUB("G4ubH1mUgdQ", sceMbusStopAudioOutAuxBroadcast) +STUB("G4v5vCrrp40", FT_Select_Charmap) STUB("G4vltQ0Vs+0", sceNetBweGetInfoIpcInt) +STUB("G4yQyiIWb2s", _ZN7WebCore16DOMGuardedObjectD2Ev) +STUB( + "G4zZU74mmDE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEmmEi) +STUB("G5+B7btf3wQ", _ZNK3sce2np9JsonValue9GetNumberEv) +STUB("G507Rff5eO4", __sanitizer_report_error_summary) +STUB( + "G50kNWSybLc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEC2EPNS2_10LibContextE) +STUB( + "G529xW-9DHU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEdeEv) +STUB("G56xsGGU9RM", _ZN4Manx14NetworkProfile3setENS_14SettingOptTypeEPKcj) +STUB("G59bi5VXpok", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEED2Ev) +STUB( + "G59mkpXOaCQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEmmEv) STUB("G5AwzWnHxks", sceSystemServiceLaunchTournamentList) +STUB("G5L+tx3yrcA", + _ZN6WebKit12ChildProcess10initializeERKNS_36ChildProcessInitializationParametersE) +STUB("G5PdBJLSBUs", mono_install_assembly_postload_refonly_search_hook) +STUB("G5Tt0L2IVbI", _ZN7WebCore21ContextMenuController16clearContextMenuEv) +STUB("G5VoD9ffZ3M", _ZN3sce7Toolkit2NP2V24Auth7IdToken8deepCopyERKS4_) +STUB("G5ZDNtddzSk", _ZN7WebCore22EmptyFrameLoaderClient15willChangeTitleEPNS_14DocumentLoaderE) +STUB("G5bKZl2qXhs", mono_aot_System_Windowsunbox_trampolines_end) +STUB( + "G5kaVi8M2RU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEC2EPS8_) +STUB("G5mPHL0b+Dg", mono_aot_Sce_Vsh_WebBrowserplt_end) +STUB("G5p77Gzf8d0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEED2Ev) +STUB("G5pp6Pow71o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEC2EPS6_) STUB("G5tFhAqrCTg", sceKernelWriteRemapWithGpuMaskIdCommand) +STUB("G5xp26+m09c", mono_aot_ClassLibrary1plt) STUB("G5zDncG5huc", sceClPthreadAttrInit) +STUB("G5zqmbwA7EA", __asan_stack_malloc_always_6) +STUB( + "G6+bVOEet2I", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V112ErrorFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_5ErrorEEE) +STUB( + "G63fShp5bkg", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearchC1ERS5_) STUB("G68xdfQuiyU", sceNpTusSetDataAsync) +STUB("G6EH2WtNRYA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEEC1Ev) +STUB("G6H6CrXn8wg", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_16EventInformationEED2Ev) +STUB( + "G6M9h9KwfxI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEneERKS9_) +STUB("G6WNctXKZKA", _ZN7WebCore6DOMURL6createERKN3WTF6StringERKS0_) +STUB("G6aMjjGftbY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEEC2EPS5_PFvS7_EPNS2_10LibContextE) +STUB("G6ftGG8w5Ik", _ZN7WebCore15HTMLLinkElement5setAsERKN3WTF10AtomStringE) +STUB("G6hR3CSbchA", + _ZN8meta_gen14ImageRetriever12SetDataOnDB2ERN23sceMetadataReaderWriter8MetadataE) STUB("G6peSSDP4iA", sceVideoOutDriverGetFinishedEopHandle) +STUB( + "G6qobnH9idA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) STUB("G6qytFoBJ-w", sceNpIntGetPlatformType) +STUB("G6tbWtFUq68", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEppEi) +STUB("G6uTAEOzoFM", _ZN7WebCore9TreeScope16elementFromPointEdd) +STUB( + "G7+UdybMv9k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEC2EPS8_) +STUB( + "G72fTN0zSrk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE8copyFromERKS9_) +STUB( + "G72sQWf73CU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEC1EPNS2_10LibContextE) +STUB( + "G75e0I8be+8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEC1EPS6_PNS2_10LibContextE) +STUB("G78CVmMDaC8", SSL_accept) STUB("G7KlmIYFIZc", sceScreenShotSetParam) +STUB( + "G7Kv7hXiU+0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEC1EPS8_) +STUB("G7LyD3ajBaI", _ZTVN9Inspector21HeapBackendDispatcherE) +STUB( + "G7VZvjBkNvE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEC2EPNS2_10LibContextE) +STUB("G7f58FAIqec", _ZN7WebCore5Frame14willDetachPageEv) +STUB( + "G7mk8bZOFMI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEE5resetEPS9_) +STUB( + "G7n8rgj5WH4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEC1Ev) +STUB("G7pDekY6FHw", _ZN3JSC7Symbols21BuiltinLogPrivateNameE) +STUB( + "G7sjJiKHwQM", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V127ConnectionQualityProperties8fromJsonERKNS_4Json5ValueE) +STUB( + "G7t8KslxlPI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "G7vao9K02lk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEC2EPS8_) STUB("G7xphg9tZlg", sceAudioOutSysGetMonitorInfo) +STUB("G7yOZJObV+4", qsort_s) +STUB("G7yXWAlfjTw", _ZN9Inspector27AnimationFrontendDispatchernaEm) +STUB( + "G7ygm7cT8kQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEppEv) +STUB( + "G8+QjbA7pJs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE7popBackEv) +STUB("G84OiYjxe2w", _ZN7WebCore14ResourceLoader6cancelEv) +STUB( + "G84okRnyJJg", + _ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_bRSt8ios_baseRNSt5_IosbIiE8_IostateERe) +STUB("G85xANoQtwY", _ZN15AbstractStorage11LocalFolder12readExternalESt10shared_ptrINS_7ContentEE) +STUB("G883+9A8Xlk", _ZN3sce7Toolkit2NP2V23TSS7TssDataC2ERKS4_) +STUB( + "G89Pflfkxkg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEEC2Ev) +STUB( + "G8ARZfwKA+8", + _ZN3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBody5getToEv) +STUB("G8BTwv-UHhU", png_set_chunk_cache_max) +STUB("G8EWtfBo9CY", _ZN3sce2Np9CppWebApi14IdentityMapper2V312AccountIdMap13unsetOnlineIdEv) +STUB("G8It-BcWJ2Q", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119PlayStyleProperties12getChallengeEv) +STUB( + "G8J3SFP+jFA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEC2EPKS8_) STUB("G8LF2Xk6sJ0", sceDbgInstallExceptionHandler) +STUB( + "G8Q3JEzvy2U", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEneERKS9_) +STUB("G8VIS1QkWg4", + _ZN15AbstractStorage14TwitterStorage13GetRootFolderEPSt10shared_ptrINS_6FolderEE) +STUB( + "G8amLWeWTNk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("G8oXWyZcgHw", _ZN7WebCore22CSSAnimationController36setAllowsNewAnimationsWhileSuspendedEb) +STUB( + "G8owpgIVXVo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEptEv) +STUB( + "G8wjLKghl2c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEC1EPS8_) +STUB("G8z7rz17xYM", _ZTSSt13bad_exception) STUB("G90IIOtgFQ0", sceRazorCpuFiberLogNameChange) +STUB( + "G9372ROHlDc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEE11release_refEv) +STUB("G97ililhr-Y", JVM_DumpAllStacks) +STUB("G9BhJHACdeU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEED1Ev) +STUB("G9G4n6xskuE", _ZN9Inspector18InjectedScriptHostC2Ev) +STUB("G9Hp-BbB1Cs", _ZN7WebCore11HistoryItemC1Ev) +STUB("G9Iyt5lxwvs", WTFReportBacktrace) +STUB("G9JWsA3DK8w", mono_bitset_intersection_2) +STUB( + "G9Jpb-YMX-U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEC2EPKS8_) +STUB( + "G9LB1YD5-xc", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8_GetifldEPcRS3_S6_NSt5_IosbIiE9_FmtflagsERKSt6locale) +STUB( + "G9RaNrj+Qb0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEED1Ev) +STUB("G9Vx7CH6DII", + _ZN7WebCore5Frame27injectUserScriptImmediatelyERNS_15DOMWrapperWorldERKNS_10UserScriptE) +STUB( + "G9cCWzIXB-0", + _ZNK3sce2Np9CppWebApi14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayer6toJsonERNS_4Json5ValueEb) +STUB("G9dSRkpQ9AU", mono_aot_Sce_Cdlg_Platformmethod_addresses) +STUB("G9hRTbFHLbA", _ZN22MmsMdCommonFsOperationC2Ev) +STUB("G9pjS4vxl30", _ZN4Manx15Curl_cookie_addEP10CookieInfobPcPKcS4_) +STUB("G9xSYlaNv+Y", __asan_before_dynamic_init) +STUB("GA+LdSWDvA8", _ZN3NTF17URLRequestJobImpl10initializeEv) +STUB( + "GA-b8FNjRlc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEcvbEv) +STUB("GA4WnBtNXyI", call_filter_p) +STUB("GA4wD-1Roe4", _ZN9Inspector24CanvasFrontendDispatcher14programCreatedERKN3WTF6StringES4_) STUB("GA5ZDaLtUBE", sceNetGetStatisticsInfo) +STUB( + "GAAKZDvTuGA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEdeEv) +STUB("GADSoACJeSk", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS19FriendsDataStatusesEED1Ev) +STUB("GAGrrgl7GAU", _ZNK3sce2np10JsonNumber9GetNumStrEv) +STUB("GAIvEDR+FEs", _ZN3sce2Np9CppWebApi14SessionManager2V15ErrorC1EPNS1_6Common10LibContextE) +STUB( + "GAJxsHYPsD8", + _ZN3sce2Np9CppWebApi14SessionManager2V140ResponsePlayerSessionMemberPlayerFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_27ResponsePlayerSessionPlayerEEEEEPNS9_INS3_33ResponsePlayerSessionMemberPlayerEEE) +STUB( + "GAMJRGAIsAI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEEC2Ev) +STUB( + "GAMXnQPNhew", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEE7get_refEv) +STUB("GAOGiBWWxD0", _ZN7WebCore20PasteboardCustomData5EntryC2Ev) STUB("GAOJz8z7Qz4", _sceLibcReallocalign) +STUB("GAPyAoUcxK8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEC2ERKS7_) +STUB( + "GAQh79DI8h8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "GAT24B0aM7I", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEeqERKS9_) +STUB("GAUBOKABbRQ", _ZN3sce7Toolkit2NP2V28Presence8PresenceC2Ev) +STUB("GAUuLKGhsCw", ceilf) +STUB("GAYCOrTcC+g", _ZN3sce7Toolkit2NP2V27Session7Request14SendInvitation19MAX_SIZE_ATTACHMENTE) +STUB("GAccTNWvZ8o", _ZN3sce4Json5Value9serializeERSbIcSt11char_traitsIcENS0_8StlAllocIcEEE) +STUB("GAfBg1DhkIs", _ZN3sce7Toolkit2NP2V210Tournament27TeamVsTeamTournamentDetailsC1Ev) +STUB("GAh593fcz8M", _ZN7WebCore9HTMLNames13aria_sortAttrE) +STUB("GAiEhgDtJWQ", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_17MessageAttachmentEE3getEv) +STUB("GAlw+1nlQaQ", _ZN3WTF3MD5C1Ev) +STUB("GAn0W3Sfygs", il2cpp_class_get_property_from_name) +STUB( + "GAoWMVyJCI4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEE21intrusive_ptr_sub_refEPS7_) +STUB( + "GApKajdv5YY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEdeEv) +STUB("GAtITrgxKDE", sce_net_in6addr_any) +STUB("GB-UJVSBNaA", _ZN8meta_gen13JpegRetriever13GetColorSpaceEv) STUB("GB19cfR-Tis", sceShellCoreUtilSetSystemBGWaveState) STUB("GB70BZwBCjI", sceImeBackendConvertBackward) STUB("GB7Fhk5SUaA", sceNpAppLaunchLinkIntGetCompatibleTitleIdList) +STUB("GB8w2Gfd0Ag", WKGeolocationPermissionRequestDeny) STUB("GBCh3zCihoU", sceAgcDcbSetCxRegistersIndirectGetSize) +STUB("GBEujBRMRSw", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEE3getEv) +STUB( + "GBF5CiBW5-k", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions28setxPsnAcceptPlatformNamePs5ENS5_25XPsnAcceptPlatformNamePs5E) +STUB( + "GBGeTxvyuBw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEC1ERS7_) +STUB("GBHytuHJ+Ic", _ZN3sce7Toolkit2NP2V24Core12ResponseBaseD1Ev) +STUB( + "GBILv-xY3eU", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "GBMoIqgBoXo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEED2Ev) +STUB( + "GBNwwgsIPOM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEEC1ERSA_) +STUB( + "GBTmQniamQc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) STUB("GBUY7ywdULE", scePthreadRename) +STUB("GBW8PBQRDBE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEixEm) +STUB("GBYpZ0JKTd0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE8pushBackERKS6_) +STUB("GBZVcGfndtY", mono_aot_System_Reactive_Coreunbox_trampolines) +STUB("GBgGUdl+5cM", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors12messageIsSetEv) +STUB("GBiW5PxQtbA", _ZN9Inspector24RuntimeBackendDispatcherD1Ev) +STUB( + "GBkkg3ybGYg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE21intrusive_ptr_sub_refEPS9_) +STUB("GBl3n8k9jWY", tt_cmap4_class_rec) STUB("GBoDF37nd-E", sceNpUniversalDataSystemIntRecordArraySetBool) +STUB("GBrFO98kCU4", _ZN7Nicosia29BackingStoreTextureMapperImpl10takeUpdateEv) +STUB("GBs9aUK+S5Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE7reserveEi) +STUB( + "GBszOLs8eUg", + _ZN9Inspector20CSSBackendDispatcher17getStyleSheetTextElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "GBuwvBFcHHU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE5clearEv) +STUB( + "GBvTNoOIv54", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEC2EPS8_) +STUB("GBwXtW7PRy8", _ZN7WebCore9HTMLNames19onwebkitneedkeyAttrE) STUB("GC18r56Bp7Y", sceUserServiceDestroyUser) +STUB( + "GC7vNhm9ANc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEC2EPNS2_10LibContextE) +STUB("GCB3rQOEXNk", _ZN7WebCore11FrameLoader14detachChildrenEv) +STUB("GCDXjCEnKck", _ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponseD2Ev) +STUB( + "GCHtDOBjmYg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEC2EPS8_) +STUB( + "GCJuBPOLDro", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEmmEi) +STUB("GCMRCWH3PU0", _ZN15AbstractStorage4Item11SetMetadataEPN23sceMetadataReaderWriter8MetadataE) +STUB("GCPUCV9k1Mg", CERT_getNumberOfChild) +STUB("GCQfXdvTZO8", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEEppEv) +STUB("GCXtBIZJoFY", _ZN3WTF5Mutex4lockEv) +STUB("GCYAe0mfQAM", u_countChar32_59) +STUB( + "GCb3FGEYu1k", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC2Ev) +STUB("GCcHBTn+aZc", _ZN4Manx11StoragePath12localStorageEv) +STUB( + "GChWiM+VzJs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "GCixCC31v1s", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEplEm) +STUB( + "GCjioAFcoeA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "GCmZA4ztpFk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE21intrusive_ptr_add_refEPS9_) +STUB("GCpDdYK0M6U", setlogin) +STUB( + "GCpzTizx-FQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEaSERKS9_) +STUB( + "GCqL5V0xULY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEC1EPNS2_10LibContextE) +STUB("GCvoIgW7NrY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEC2Ev) +STUB("GCwNfdTwjtA", _ZNK3JSC2VM29deprecatedVMEntryGlobalObjectEPNS_14JSGlobalObjectE) +STUB("GD26e1U9SCE", _ZN3JSC13JSFinalObject13visitChildrenEPNS_6JSCellERNS_11SlotVisitorE) +STUB( + "GD6ZtpeeSYQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEC1EPS8_) +STUB("GD9ACwrN6IU", Java_java_io_UnixFileSystem_createFileExclusively) +STUB("GDA5UhZlpEQ", _ZNK7WebCore11HTMLElement4formEv) +STUB("GDAlnp6taxw", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_13TusDataOutputEE3getEv) +STUB("GDFroa3tl3I", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Error7setCodeERKi) +STUB("GDHqV2AO5dU", _ZN7WebCore26stopObservingCookieChangesERKNS_21NetworkStorageSessionE) +STUB( + "GDLUhlLf-KI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEE3getEv) +STUB( + "GDMsCL3cgZ0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEEC2ERSA_) +STUB("GDOPgC5h2sk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V120ErrorResponseFactory7destroyEPNS3_13ErrorResponseE) +STUB( + "GDPliB4bkGg", + _ZN7WebCore13PathUtilities27pathsWithShrinkWrappedRectsERKN3WTF6VectorINS_9FloatRectELm0ENS1_15CrashOnOverflowELm16EEEf) +STUB("GDQFvBg-DhY", _ZN3sce7Toolkit2NP2V24Core7Request21NpToolkitCallbackInfoD1Ev) STUB("GDX5XhnWKrw", sceDbgBacktraceSelf) STUB("GDXlRTxgd+M", sceNpTusGetMultiSlotVariableA) STUB("GDYFXk0f-uI", sceCesBig5ToUtf16) +STUB( + "GDiCYtaiUyM", + _ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_bRSt8ios_basewRKSbIwS2_SaIwEE) +STUB( + "GDkvP2g8URI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("GDoaflM8pXo", JSRemoteInspectorGetInspectionEnabledByDefault) +STUB("GDpYG41Up38", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13SessionMemberEED2Ev) +STUB( + "GDqBtSSL1Yk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEC1Ev) +STUB("GDuV00CHrUg", utimes) +STUB( + "GDucvkOqjZ4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEppEv) +STUB("GDxzthIy7Qk", _ZN7WebCore22EmptyFrameLoaderClient31dispatchDidStartProvisionalLoadEv) +STUB( + "GDz+OgH8Ssg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) STUB("GDzBPefugvU", sceKernelEventLogOpen) +STUB("GE+2k2MFilI", glUniform2uiv) STUB("GE+ZU2Y9pEs", sceMouseExtensionScalePosition) +STUB("GE4I2XAd4G4", __sync_fetch_and_or_16) +STUB( + "GE7KcKaQtv8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEmmEi) STUB("GE9UpqJPdFs", sceWebInitialize) STUB("GEAzhWJM1mY", sceFiosArchiveMountWithOrderSync) +STUB( + "GECWsBEERHA", + _ZNK3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfile14getlanguageSetEv) +STUB( + "GEH71y-eqWU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEED1Ev) +STUB("GEK3LmjM9Q4", tls_client) +STUB( + "GENQjpj-bvo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEEC1Ev) +STUB("GEPIGxjRuV0", local_addr_space) +STUB("GEUAFDNuhBc", WKBundlePageCopyTrackedRepaintRects) +STUB("GEULQRMkuxo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEEcvbEv) STUB("GEZ9sIz3wuM", sceShellCoreUtilIsShowCrashReport) +STUB("GEchQ5odRG0", _ZN13MsvMetaEditor10resizeFileEmiPmPc) +STUB("GEjhu-eMbeY", _ZN7WebCore15JSDOMWindowBase15createStructureERN3JSC2VMENS1_7JSValueE) +STUB( + "GEnO4jNcXck", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEixEm) STUB("GEnUkDZoUwY", scePthreadSemInit) +STUB( + "GEpoktek0oA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEC2Ev) +STUB("GEr4ONIE5iU", ucase_totitle_67) +STUB("GErjv-ij8jg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEEC2Ev) +STUB("GEs31bClO0g", _ZN7WebCore21ISOTrackEncryptionBoxD0Ev) +STUB("GExGNgg3Wtc", _ZN3sce2np14HttpConnection7DestroyEv) +STUB("GEylwSsiGG8", _ZN3sce4Json5Array8iteratorppEi) STUB("GF+GkOCVVLg", sceLoginMgrServerNotifyEasySignInUserCode) +STUB( + "GF2tspZpftw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEEaSERSA_) STUB("GF5cVgFKg4g", sceOpusCeltDecDecodeFloatWithPriority) +STUB("GFKGvgOqeMY", _ZN7WebCore19JSDOMMatrixReadOnlyaSERKS0_) +STUB( + "GFMjwOxyW3k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEmmEi) +STUB("GFNW5Glc-u8", _ZN6WebKit12ChildProcess21removeMessageReceiverEN7CoreIPC15StringReferenceEm) +STUB("GFOwb+TuKV4", cuse_lowlevel_init) +STUB("GFcDnBojEHk", dlvsym) +STUB("GFcJewjtQ38", usearch_searchBackwards_67) +STUB( + "GFew5q7NaB4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEED2Ev) +STUB("GFhTr50CnrE", SwCtrlSinkStreamStop) STUB("GFhVUpRmbHE", sceNpInGameMessageInitialize) +STUB("GFii35jH7fk", _ZN7WebCore21DiagnosticLoggingKeys10webViewKeyEv) +STUB( + "GFjjRImRS8g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEED2Ev) +STUB( + "GFn06UKhyHw", + _ZN7WebCore22EmptyFrameLoaderClient23dispatchWillSendRequestEPNS_14DocumentLoaderEmRNS_15ResourceRequestERKNS_16ResourceResponseE) +STUB("GFnFUa+9DJs", _ZN9Inspector22ContentSearchUtilities17createSearchRegexERKN3WTF6StringEbb) +STUB("GFwkSdvHiP4", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku19annotationNameIsSetEv) +STUB("GFyb-SJQikY", delegate_virtual_invoke_imt_m_4) +STUB("GG1Y+vBUkdU", _ZThn16_N3sce2np9HttpTransD1Ev) +STUB( + "GG59YFMhlHg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "GG7rUTAvljY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE8copyFromERKS9_) +STUB("GGFZds9H2q8", orbismmap) +STUB("GGIG9nj2zXk", eglCreatePbufferSurface) +STUB("GGJLC5a4rWQ", _ZN3JSC8Debugger15continueProgramEv) +STUB("GGKYUO8eo4I", _ZN3sce2Np9CppWebApi7Matches2V116JoinMatchRequestC2EPNS1_6Common10LibContextE) STUB("GGNBNEFp9Z0", sceFsUfsLargewriteFsck) +STUB("GGSRAj71-Ag", _ZN7WebCore11FetchLoaderD2Ev) +STUB("GGV33YyYzB8", _ZN3sce7Toolkit2NP2V26Trophy7Request23DisplayTrophyListDialogC2Ev) +STUB( + "GGWNxVf+d60", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEE7get_refEv) +STUB("GGjNjlzGmxA", _ZN13MsvMetaEditor13checkMetadataEPttPb) +STUB("GGoH7e6SZSY", _ZNKSt8messagesIwE5closeEi) +STUB("GGqI60EEL-w", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus13unsetDataSizeEv) +STUB( + "GGqIV4cjzzI", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8_GetifldEPcRS3_S6_NSt5_IosbIiE9_FmtflagsERKSt6locale) STUB("GGqucL9F+YI", sceFiosDHOpenSync) +STUB( + "GGrPvJ2Okm8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEED1Ev) STUB("GGsn7jMTxw4", sceGnmDrawIndexAuto) +STUB("GGthfnlokVw", _ZNK15AbstractStorage14YoutubeStorage7GetStatEPNS_4StatE) +STUB("GGwIlHba13U", _ZN3sce7Toolkit2NP2V28Commerce19ServiceEntitlements5resetEv) +STUB("GH-8t-+jzHM", WKFrameGetTypeID) +STUB("GHI8khgTP5k", YGNodeStyleGetFlexShrink) +STUB("GHJfnnqXIVY", u_vfscanf_67) +STUB("GHQulEstteY", _ZN3sce7Toolkit2NP15AppSTLAllocatorI16SceNpTusVariableEC2Ev) STUB("GHUqRrCB2hM", sceLncUtilDeclareReadyForSuspend) +STUB( + "GHZ4J6WLM+c", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("GHbvNOFZd9E", WKPreferencesSetAnimatedImageAsyncDecodingEnabled) STUB("GHib0Wf+ny0", sceVideoNativeExtEssential_CreateDecInstance) +STUB("GHipxIJRjZA", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session8SessionsEE3getEv) +STUB( + "GHkaDPseT6s", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEaSERKS9_) +STUB( + "GHnpIfZXIRM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEmmEv) STUB("GHrctgvI0SQ", sceVisionManagerRegistryClear) +STUB( + "GHs0W1uEJtg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("GHsPYRKjheE", _ZNSt12placeholders2_2E) +STUB("GHtQMARh-58", _ZN3sce7Toolkit2NP2V28Commerce14ProductDetailsD2Ev) +STUB( + "GHtzg8ZpWg8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEE5resetEPS6_) STUB("GHuASZVVDBA", scePerfTraceIoControllerDeleteBufferNotifyEvent) +STUB( + "GHxOs1sCHQw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEED2Ev) +STUB("GHzcsl3kCZM", _ZN3JSC7Symbols15metaPrivateNameE) +STUB( + "GI-M4WdwQ9U", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEplEm) +STUB("GI-kJrlbsDQ", _ZNK3sce2np3ipc10IpmiClient6IsInitEv) +STUB("GI22WsIAwnc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE7reserveEi) +STUB("GI90Ozm8uQU", _ZN3JSC11VMInspector23currentThreadOwnsJSLockEPNS_9ExecStateE) +STUB("GIBhqoeiiho", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSessionC1Ev) +STUB( + "GIDVDtwKjAQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE5emptyEv) +STUB("GIEuHCOvHxQ", _ZN3sce7Toolkit2NP2V28Presence7Request11GetPresenceC2Ev) +STUB( + "GIGUNzlGt7c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEC2Ev) STUB("GIHvC8x7LPo", sceSocialScreenCrashDaemon) STUB("GIIW2J37e70", sceAgcDcbSetIndexSize) +STUB("GIKFKHQ-iaE", _ZN3sce7Toolkit2NP2V26Friend16FriendsOfFriendsD1Ev) +STUB("GIPP33SFTsQ", _ZN7WebCore9HTMLNames9startAttrE) +STUB("GIQb53a5FvU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEED2Ev) +STUB( + "GIRZIwKcwS0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEC1ERS7_) +STUB( + "GIZ-Nyd0JHU", + _ZN3sce2Np9CppWebApi14SessionManager2V134GetGameSessionsResponseBodyFactory7destroyEPNS3_27GetGameSessionsResponseBodyE) +STUB( + "GIdIlbhZDIo", + _ZN7WebCore16ScriptController20executeScriptInWorldERNS_15DOMWrapperWorldERKN3WTF6StringEbPNS_16ExceptionDetailsE) +STUB( + "GIdkGdMoacA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE8pushBackERKS8_) +STUB("GIeprzAUR84", _ZN3JSC8JSBigInt13tryCreateZeroERNS_2VME) +STUB( + "GIgKVpSN564", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEC2Ev) +STUB("GIjv95F1IfU", WKPreferencesSetAcceleratedCompositingEnabled) STUB("GImICnh+boA", sceNpRegisterPlusEventCallback) +STUB("GIniJssLcts", _ZN4IPMI4impl10ServerImpl11tryDispatchEPvm) STUB("GIwVmm8Rgvc", sceCesIso2022StrToUtf32Str) +STUB("GJ+VEmIdxUQ", WKBundleFrameIsMainFrame) +STUB("GJ+kp6p38IM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11SessionDataEED1Ev) +STUB("GJ0sG7BdmgI", mono_aot_Sce_Vsh_WebBrowserjit_code_end) +STUB( + "GJ1To-bKRhE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEED1Ev) +STUB( + "GJH2be9gMS0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEdeEv) +STUB("GJIBGuU11z8", _Atcount) +STUB("GJMfs3BCXuY", __tsan_atomic32_fetch_add) +STUB( + "GJOFJWnSmUE", + _ZN9Inspector32ScriptProfilerFrontendDispatcher14trackingUpdateEN3WTF6RefPtrINS_8Protocol14ScriptProfiler5EventENS1_13DumbPtrTraitsIS5_EEEE) STUB("GJQTuIKPCLM", sceFaceTrackerGetTrackIdByUserId) +STUB("GJW36FCtS9Y", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V18SortModeEEC2Ev) +STUB( + "GJYG0swFcTE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEEC2Ev) +STUB("GJYws7E0sU0", _ZN7WebCore4toJSEPN3JSC9ExecStateERNS_11WindowProxyE) +STUB("GJZYj1sMy1U", _ZN7WebCore8Document13setAlinkColorERKN3WTF6StringE) +STUB( + "GJb4mvM-4L0", + _ZN9Inspector21PageBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("GJctcqX1rkg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEC2ERKS7_) +STUB("GJeqgaC2mck", WKMediaSessionMetadataCopyTitle) +STUB("GJjedsBxT8A", _ZThn16_N9Inspector19InspectorAuditAgent5setupERN3WTF6StringEPKi) +STUB( + "GJkiKlxHG5o", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V136FrequentlyMutedInPartyMetricsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_29FrequentlyMutedInPartyMetricsEEE) +STUB("GJmnoQmslM4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEEC1ERS7_) +STUB("GJsL9usTdig", WKContextGetGeolocationManager) +STUB("GJu2OLJK5Eo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEED1Ev) +STUB("GJucNrTY5kk", _ZN3sce3Xml4AttrC1Ev) +STUB( + "GJug+HeDsdg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE21intrusive_ptr_sub_refEPS9_) +STUB("GJuu7sr0dEA", __tsan_atomic8_fetch_sub) +STUB("GJvXdGwFBuk", _ZN12video_parser18cProfileCheckerMp415isPlayableAudioERKNS_13VpMediaInfo_tE) +STUB( + "GJwvgeqlZvE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEmmEi) +STUB("GJx12mBcRE8", _ZN7WebCore8SVGNames20transform_originAttrE) +STUB("GJxUTbnhr+U", _ZN12video_parser5vpcom13LwMutexCreateEPNS0_11sys_lwmutexEPNS0_12lwmutex_attrE) +STUB("GK+VCvKAFXY", JVM_Exit) +STUB("GK0JJEw1zO0", delegate_virtual_invoke_imt_m_11_p) +STUB("GK11yFH9-lU", _ZN3sce7Toolkit2NP2V23TUS25AtomicAddToAndGetVariableaSERKS4_) +STUB( + "GK4wxcDmUi8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE7reserveEi) +STUB("GKDQvZF6sRk", _ZN7WebCore12BlobRegistryD0Ev) +STUB("GKHM54nGcrE", _ZNK3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse13getNextOffsetEv) +STUB("GKJkOXls+WU", _ZN7WebCore9HTMLNames14onfocusoutAttrE) STUB("GKMjPmDls-w", sceWorkspaceApplyUpdateForAllFiles) +STUB("GKNYF7iMZaA", _ZN12video_parser7cVpUtil12vp_ff4_ftellEPvPm) +STUB("GKOdtyJINIc", xmlParseContent) +STUB( + "GKOfk4gkO6Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE10setContextEPNS2_10LibContextE) +STUB("GKPNXBs6dzo", + _ZN7WebCore11JSDOMWindow14deletePropertyEPN3JSC6JSCellEPNS1_9ExecStateENS1_12PropertyNameE) +STUB( + "GKT4kP85kaE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE5beginEv) +STUB("GKWcAz6-G7k", _ZTVSt5ctypeIcE) +STUB( + "GKebOWQrsKU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "GKlWpBdGVpk", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer7setsortENS5_4SortE) +STUB("GKpz0qjwEIY", _ZN7WebCore17PageConsoleClient7timeEndEPN3JSC14JSGlobalObjectERKN3WTF6StringE) +STUB("GKv8tK3zMjw", + _ZN15AbstractStorage15FacebookContentC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEbb) +STUB( + "GKy+n9hLY18", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession21setSupportedPlatformsERKNS1_6Common6VectorINS5_6StringEEE) +STUB("GKy3Jm-BJts", _ZN3sce7Toolkit2NP2V24Core7Request11MemoryPools20SSL_MEM_MINIMUM_SIZEE) +STUB("GL-gM1Knz28", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEE3getEv) +STUB( + "GL53WabpPNw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE6resizeEj) +STUB( + "GL5bxP-1n0o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEC1EPNS2_10LibContextE) +STUB("GL5nO43fsjU", _ZN3sce2np10EventQueueC2EP14SceNpAllocator) +STUB( + "GL6IrAyELWQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEmmEv) STUB("GL8+3RHW5vk", sceVideoOutDriverGetLatestEopHandle) +STUB( + "GLCEF5PbiNQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEEptEv) +STUB( + "GLDQ5RNh4do", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetBoolean4Ev) STUB("GLFNgsekcJU", sceGpuTraceParametersSetDuration) +STUB("GLKt+4hIz+s", WKBatteryManagerGetTypeID) +STUB("GLNDoAYNlLQ", __kernel_rem_pio2) +STUB("GLRFDEH0yxA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEEixEm) +STUB("GLRtuC2tjQY", _ZN7WebCore16HTMLVideoElement6createERNS_8DocumentE) +STUB("GLT5AYibDGQ", _ZN7WebCore8SVGNames12overflowAttrE) +STUB("GLWg1JVMMXA", _WGetint.barr) +STUB("GLdM7S0E6Aw", mono_file_map_fd) +STUB( + "GLfiITGJN5Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEED1Ev) +STUB("GLhdt8hXS28", g_build_path) +STUB( + "GLl0cdJWHrc", + _ZN15AbstractStorage18DailymotionStorage15CreateRecursiveERKSbIcSt11char_traitsIcENS_8StlAllocIcEEENS_8ItemTypeEPSt10shared_ptrINS_4ItemEE) +STUB("GLlk+iOe80c", _ZN3sce7Toolkit2NP2V211SocialMedia7Request21PostMessageToFacebookD2Ev) +STUB("GLtDujY7y-A", il2cpp_method_is_inflated) +STUB("GLxD5v2uMHw", _ZN10__cxxabiv117__pbase_type_infoD0Ev) +STUB("GLz1wi7YHwI", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEEplEm) +STUB("GM+SPYcBLSM", _ZN3sce2Np9CppWebApi6Common13ConstIteratorImE21intrusive_ptr_add_refEPS4_) +STUB("GM3KUZu1bCk", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS16FriendsVariablesEE19setCustomReturnCodeEi) +STUB("GM3gnBK6qP0", g_setenv) +STUB( + "GM4w-NlILc0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE5emptyEv) +STUB( + "GM6ol4LBOmA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEneERKS9_) +STUB("GMAq7k4r2FM", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEED1Ev) +STUB("GMDlBS2FjfA", _ZN7WebCore10ISOFullBoxC2ERKS0_) STUB("GMLAWOO7I2Y", sceUserServiceSetPbtcFridayHoursStart) +STUB("GMLHXo9io7U", _ZNK3WTF10StringView25containsIgnoringASCIICaseERKS0_j) +STUB("GMPYCA-JBAY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEE7add_refEv) +STUB( + "GMPaYIEPGOs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEptEv) +STUB("GMRugn+lVTw", _ZN3WTF3ICU12minorVersionEv) +STUB( + "GMSN1x4y+cs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB("GMSPx33Ubik", _ZN3sce7Toolkit2NP2V28Commerce7Request13GetContainersC2Ev) +STUB("GMWX0+Oz9WA", _ZN3JSC12SymbolObject14finishCreationERNS_2VMEPNS_6SymbolE) +STUB("GMZsFa4YuLY", _ZN7WebCore14SchemeRegistry27registerURLSchemeAsNoAccessERKN3WTF6StringE) +STUB( + "GMbsEdZMZ48", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEEdeEv) +STUB( + "GMcJpHH93t0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE5emptyEv) +STUB("GMg-K-nm8wQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEdeEv) +STUB("GMizWCBYuVM", _ZNK23sceMetadataReaderWriter8Metadata8getValueERKSsRNS_5ValueE) +STUB("GMpvxPFW924", vprintf) +STUB( + "GMslvizB0Vw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE5eraseENS2_8IteratorIS6_EERS9_) +STUB("GMtQuGiE5MI", _ZNK7WebCore11MediaPlayer17hasClosedCaptionsEv) +STUB("GMuXRQ-sUR0", mono_btls_x509_chain_get_count) +STUB( + "GMv-FUyeXIU", + _ZN6WebKit12ChildProcess17initializeSandboxERKNS_36ChildProcessInitializationParametersERNS_31SandboxInitializationParametersE) +STUB("GMxc7ms4eLw", __asan_get_free_stack) +STUB("GMzhcYmBETc", + _ZN7WebCore11MediaPlayer26paintCurrentFrameInContextERNS_15GraphicsContextERKNS_9FloatRectE) +STUB("GMzjS9jvyDQ", BIO_new_mem_buf) +STUB("GN-EOqRvz0A", _ZN7WebCore7Element13scrollByLinesEi) +STUB( + "GN1PvggD4SQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEC1EPKS8_) +STUB( + "GN92gdelkN0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEE3getEv) +STUB("GNAx4p223bE", _ZN3JSC22FullGCActivityCallback16setDidGCRecentlyEv) +STUB( + "GNFtXTWpiL0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEppEi) +STUB( + "GNG9pVGEE8M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE8copyFromERKS9_) +STUB( + "GNGQ6sr9J6I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEC1Ev) +STUB( + "GNI28ZKoduI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "GNJWLgaqjds", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("GNM0CPnOTjM", _ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequestC2EPNS1_6Common10LibContextE) +STUB("GNQdrdUBiUc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEEC1EPS5_PNS2_10LibContextE) +STUB( + "GNSJkp2i+2s", + _ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead22unsetInvitationInvalidEv) STUB("GNSN5849fjU", sceNpMatching2SignalingCancelPeerNetInfo) +STUB( + "GNWKfcvlttI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("GNWhg1ez6Jo", mono_arch_get_restore_context) +STUB("GNZpcrnC7uE", glPixelStorei) STUB("GNcF4oidY0Y", sceNpTrophyDestroyHandle) +STUB( + "GNcKEF3Ai3U", + _ZN3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsTouchResponseBody20unsetTouchedDateTimeEv) STUB("GNfPC72c3fs", sceSpNetConnect) +STUB("GNjTZuiQf6M", mono_aot_Sce_Vsh_Np_AuCheckplt_end) +STUB( + "GNkoXyvvmZ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEEC2EPS6_PFvS8_EPNS2_10LibContextE) STUB("GNlx+y7xPdE", sceGnmUpdateHsShader) +STUB("GNqc84Ar8ko", YGNodeGetParent) +STUB("GNsiLzm4SH8", FT_Init_FreeType) +STUB("GNzTCyrXd0A", getLastErrorString) +STUB("GNzvJ-oTGN0", _ZN12video_parser24_isBestArtworkResolutionEjj) +STUB( + "GO2lZsN3QdE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEC2Ev) +STUB( + "GOI286v90sk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEcvbEv) +STUB( + "GOKaOF0HTy8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEptEv) +STUB("GOKrmbjnHY0", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEE3getEv) STUB("GOP1R6vumsg", sceAgcSdmaFlush) +STUB("GOPtWSfLUdU", _ZN7WebCore26ActiveDOMCallbackMicrotaskD0Ev) +STUB( + "GOQ36+MfSc4", + _ZZSt9MakefacetISt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEESt8_LocinfoERT_T0_E3buf) +STUB("GORjkrS5SDc", _ZN3sce7Toolkit2NP2V24Core10OnlineUserD2Ev) +STUB( + "GORlq9bG5Tw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEE3getEv) +STUB("GOSphImKqvo", _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScoreC1ERS5_) STUB("GOafsLorJmg", scePktMgrGetUlpCmdPayload) +STUB( + "GOgkTyiRrOg", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlotaSERS5_) +STUB( + "GOh-1SQbFx0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEEdeEv) +STUB("GOkU1fV7sBM", _ZNK7WebCore10ScrollView18exposedContentRectEv) +STUB( + "GOo1xl+bTjQ", + _ZN9Inspector8Protocol13BindingTraitsINS0_8Debugger15FunctionDetailsEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE) +STUB("GOtjhkxJaCo", wait_for_packet) +STUB("GOuddQLEThY", _ZN23sceMetadataReaderWriter20LoadedParserInfoListC1Ev) +STUB( + "GOv-80iBOBg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEED1Ev) +STUB( + "GOvxo5sBsts", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEEC2ERSA_) +STUB("GP+exQxv2Ds", WKViewReplyAuthenticationChallenge) +STUB( + "GP-Anqni0CE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEppEv) +STUB("GP1LQbgyA-I", ucnv_openU_67) +STUB( + "GP6LW61GN1I", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V117DataStatusFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_10DataStatusEEE) +STUB("GP9OLQvAHag", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEEplEm) +STUB( + "GPADomkQZRg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEneERKS9_) STUB("GPC-wPiKvKk", sceApplicationSendResultOfDebuggerKillRequest) +STUB("GPFmSUAPZNU", _ZN3JSC12HeapCellTypeC2ENS_14CellAttributesE) +STUB( + "GPI9Vdh7170", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("GPJDrtZ-R-c", mono_aot_Sce_Vsh_Gls_GlsSharedMediaViewunbox_trampolines) +STUB("GPJMxSyIsSY", mono_aot_Sce_Vsh_Np_Tmdbunbox_trampolines) +STUB( + "GPMSk2+XWOo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEE11get_deleterEv) +STUB( + "GPP78v+WBW8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("GPRMLcwyslw", CERT_verifySignature) STUB("GPRRxFM01r4", sceNpAsmClientCreateResourceContext) +STUB( + "GPSVwiBYJC0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEED2Ev) STUB("GPbUp9jXQa8", sceAgcAcbWaitUntilSafeForRendering) +STUB( + "GPhm+C3tRuo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEixEm) +STUB("GPiFzdmbdzI", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEEplEm) +STUB("GPoMyy5-NiM", _ZN3sce7Toolkit2NP2V211UserProfile8RealName18MAX_SIZE_LAST_NAMEE) +STUB("GPuymBQUb6s", _ZN7WebCore7IntRectC1ERKNS_10LayoutRectE) +STUB( + "GPyS8eQsXgU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEptEv) STUB("GQ0hqmzj0F4", sceNpSignalingGetConnectionFromNpId) +STUB( + "GQ4BpcnDxEY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEeqERKS9_) +STUB( + "GQ8rlKbe0Ss", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEC2EPS6_PNS2_10LibContextE) +STUB("GQBWqhIGGnE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEC1Ev) +STUB("GQDKfTGArbI", mono_aot_Sce_Vsh_Lxplt_end) STUB("GQFGj0rYX+A", sceHttp2GetCookie) STUB("GQHCksS7aLs", sceNpTusGetDataVUser) +STUB("GQLPt+OUJkE", mono_thread_get_num_threads) +STUB("GQLXi2KQaXk", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadDataD1Ev) STUB("GQMZ6uHq5-o", sceVencCoreGetPicParams) STUB("GQTObcITIXI", sceShareCaptureScreenshotExtended) +STUB( + "GQTvW+ePtqs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEED2Ev) +STUB( + "GQV0R9WGbcg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEppEi) +STUB( + "GQZdPRNQyFE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEE5resetEPS9_) +STUB( + "GQcdYACGMnM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEppEv) +STUB( + "GQcyshPrJ0A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEC2EPKS8_) +STUB("GQh5U+LYBCQ", _ZN3sce7Toolkit2NP9Utilities6FutureI7SceNpIdEC2Ev) +STUB("GQli4UAXTfQ", __sys_dynlib_unload_prx) STUB("GQsAVJuy8gM", sceUsbdGetConfigDescriptorByValue) +STUB("GR+0ko0mEi0", WKPreferencesGetTextAutosizingEnabled) +STUB("GR+C-qDzxRs", + _ZNK3sce2Np9CppWebApi14SessionManager2V127ResponsePlayerSessionPlayer11getPlatformEv) +STUB("GR+f8ocq5VE", _ZNK7WebCore22SkewTransformOperation27isAffectedByTransformOriginEv) +STUB( + "GR+nn8syFuY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE3endEv) +STUB( + "GR3Ay56Fxtg", + _ZN3sce2Np9CppWebApi14ConnectAccount2V219PartnerTokenFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_12PartnerTokenEEE) STUB("GR3YJwi7gs8", sceDeci4hDrfpChstat_utimens_fuse) +STUB( + "GR7-cFS7J-U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEC2Ev) +STUB( + "GR7hDdRvynY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("GR9+J8OgWSs", _ZNK3NTF3URL10protocolIsEPKc) +STUB("GRI2dTtcCXE", _ZN3JSC8Debugger17didExecuteProgramEPNS_9CallFrameE) +STUB("GRNR3ByLE9s", ucsdet_setText_67) +STUB("GRVtsCkrnnA", + _ZNK7WebCore14SecurityOrigin16canAccessStorageEPKS0_NS0_25ShouldAllowFromThirdPartyE) +STUB("GRYGvRhpD-g", _ZN7WebCore19StorageQuotaManager39resetQuotaUpdatedBasedOnUsageForTestingEv) +STUB( + "GRZINy2vjNo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE8copyFromERKS9_) +STUB( + "GRiHtJX0krw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE21intrusive_ptr_sub_refEPS9_) +STUB("GRjtnoy4iHI", _ZN7Nicosia5Scene5StateaSERKS1_) +STUB( + "GRojeE1YTbM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEEaSERSA_) +STUB("GRs7ejLmIm0", _ZN3JSC7Symbols22ModuleFetchPrivateNameE) +STUB( + "GRufnfnx1wE", + _ZN3sce2Np9CppWebApi14SessionManager2V137RequestGameSessionMemberPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_30RequestGameSessionMemberPlayerEEE) STUB("GRvK1ZE+FEQ", sceNpUtilGetNpDebug) +STUB("GRyswm3by1E", _ZN7WebCore7toSRGBAERKNS_11LinearSRGBAIfEE) +STUB( + "GRzHg46AfTI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("GRzmXI6WftI", _ZN7WebCore11DisplayList8ReplayerD1Ev) +STUB("GS+nS5MV7Qs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEmmEv) +STUB("GS1AvxBwVgY", _ZNSt10moneypunctIwLb1EEC2EPKcm) +STUB( + "GS2b2KvoSYU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEC2ERKSA_) +STUB("GS50Ol6MY9A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEEC1Ev) +STUB( + "GS8IAudyTLg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEmmEv) +STUB("GS9DSbzC+MY", _ZN3sce3Job10JobManager10initializeEPvmjjjmPKNS1_12ConfigParamsE) +STUB("GSAXi4F1SlM", _ZNKSt7collateIcE7do_hashEPKcS2_) +STUB( + "GSFQDX0+Fpk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE7reserveEi) +STUB( + "GSI+zSiR9Jg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEE5resetEPS9_) +STUB("GSIH23bQiUk", _ZN7WebCore20lastOffsetForEditingERKNS_4NodeE) STUB("GSKko1I75XQ", sceCesBig5ToUtf32) +STUB("GSNgafkbVXM", _ZN3sce2np9JsonValue9GetParentEv) +STUB("GSQjbagr8F4", WKPreferencesSetUseLegacyTextAlignPositionedElementBehavior) +STUB("GST3YemNZD8", _ZNSt14numeric_limitsIiE9is_signedE) STUB("GST42pfUfMc", sceKernelTitleWorkdaroundIsEnabled) +STUB( + "GST6G3qdBrw", + _ZN7WebCore24DocumentMarkerController10markersForERNS_4NodeEN3WTF9OptionSetINS_14DocumentMarker10MarkerTypeEEE) +STUB("GSUKU3FDYJY", _ZN7WebCore9HTMLNames25webkitallowfullscreenAttrE) +STUB("GSVe-aaTiEg", _ZN3sce2np9HttpTransD2Ev) +STUB("GSWCtBVDIpo", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V18SortModeEEmmEi) +STUB( + "GSc12L2ohCo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEdeEv) +STUB("GSdscWmFHSM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEptEv) +STUB("GSgQGxgTtBU", _ZN7WebCore21DiagnosticLoggingKeys19retrievalRequestKeyEv) +STUB("GSik6FPYYto", _ZTVN23sceMetadataReaderWriter7StorageE) +STUB( + "GSkrhorpTsQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEC2EPS6_PNS2_10LibContextE) +STUB("GSnYxHl+bTs", mono_aot_I18N_Rarejit_code_end) +STUB("GT3wfuoOO5o", EVP_PKEY_up_ref) +STUB("GTI8cgWbMI0", + _ZNK3sce2Np9CppWebApi14SessionManager2V123MemberWithMultiPlatform6toJsonERNS_4Json5ValueEb) STUB("GTP5C2Wvrhs", sceAudioOutSetPadJackVolume) +STUB("GTSbNvpE1fQ", CERT_validateCertificate) +STUB("GTZYWYRctR0", _ZNK3sce3Xml3Dom4Node13getChildNodesEPNS1_8NodeListE) +STUB("GTa5LU6nCLE", _ZL14_sceLibcDeletePv) +STUB( + "GTcGGFpo5to", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEE3getEv) +STUB("GTd0+Scsuys", ucnv_setToUCallBack_67) STUB("GTqfUUQLKa0", sceFsCreateExfatPartition) +STUB( + "GTxGCWEJX6E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "GTxeKGUOY5Y", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_11GameSessionEEE) +STUB( + "GU1w2E3QXHY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE3endEv) +STUB( + "GU2pC4ZB4II", + _ZN7WebCore20LegacySchemeRegistry49registerURLSchemeAsBypassingContentSecurityPolicyERKN3WTF6StringE) +STUB("GU4AF9Yrvzw", _ZN7WebCore16MIMETypeRegistry25mediaMIMETypeForExtensionERKN3WTF6StringE) +STUB("GUC6GjExtds", _ZN25MmsFileUpdaterFsOperationC1Ev) +STUB( + "GUE0Vp5Evnk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("GUOkMlvO7D4", _ZN7WebCore4PageD1Ev) +STUB("GUVMYx93ZBI", _ZN3JSC2VM39unlinkedModuleProgramCodeBlockSpaceSlowEv) +STUB("GUZfchtm3zQ", _ZN7WebCore9HTMLNames13onstalledAttrE) +STUB( + "GUf520XFpAU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEEC1ERSA_) STUB("GUna2W6TBG4", sceAvSettingIsSuspendedProcessOutputModeAvailable2) +STUB("GUq5MmrvvBU", _ZN7WebCore37smallestRectWithAspectRatioAroundRectEfRKNS_9FloatRectE) +STUB("GUs7JyenuEA", _ZN7WebCore14SchemeRegistry34shouldLoadURLSchemeAsEmptyDocumentERKN3WTF6StringE) +STUB("GUsFASGQ7Po", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18GameCustomDataItemEEneERKS4_) +STUB( + "GUskBWxvsRU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("GUuhLSwsTAM", _ZNK7WebCore16HTMLImageElement12naturalWidthEv) +STUB("GUuiOcxL-r0", _WStof) +STUB( + "GUwCS3UKpBQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEED1Ev) +STUB("GV4t+Ojz4UE", _ZNK3sce2Np9CppWebApi13InGameCatalog2V520ContainerRatingCount8getCountEv) STUB("GV6hye4Lsjc", sceVideoCoreInterfaceOpenCanvas) +STUB("GV7ST5JoPUQ", WTFAnnotateHappensAfter) +STUB( + "GVEbyNroOEI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot17setnpServiceLabelEj) +STUB("GVI4jqU-KA4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEED1Ev) STUB("GVLppS4bkFc", sceBgftServiceIntPlayGoGetApplicationIniChunkSize) +STUB("GVNd-uYjLkE", _ZNK3sce2Np9CppWebApi11UserProfile2V114PersonalDetail11getLastNameEv) +STUB( + "GVO3Ty6x6Wc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE5clearEv) +STUB("GVVHy34Bw9s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEEC2Ev) +STUB("GVa9wfF+3Mo", _ZN3JSC19HeapSnapshotBuilder30previousSnapshotHasNodeForCellEPNS_6JSCellERj) +STUB("GVlkqTU6QYQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEED2Ev) +STUB( + "GVmcygRyLgo", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeaders15setCacheControlERKNS1_6Common6StringE) +STUB("GVnNjpJWCXM", FT_Get_Postscript_Name) +STUB("GVq6mcQFlZk", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_20ChallengeRecvDetailsEED2Ev) +STUB( + "GVrRCx7H7Uw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "GVsKxqjiwds", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEixEm) +STUB( + "GVwRgcE9ghA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("GW-D9QdJ3us", mono_config_string_for_assembly_file) +STUB("GW0BFA3-JCg", _ZN3sce7Toolkit2NP2V28Matching4Room18MAX_SIZE_ROOM_NAMEE) +STUB( + "GWE+7zQuMME", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEixEm) +STUB( + "GWGQHrjmMno", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEEcvbEv) +STUB("GWJZ8nG5qA4", mono_monitor_enter) +STUB("GWMp2D9TLgs", _ZN3sce2Np9CppWebApi6Common8IteratorIiEppEi) +STUB( + "GWO-Lj0KJaY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEC2EPS8_) +STUB("GWP3DPDBSQI", _ZN3JSC7Symbols32loadAndEvaluateModulePrivateNameE) +STUB("GWR8egpJ4Vw", _ZNK3sce2Np9CppWebApi6Common6VectorImE8capacityEv) +STUB( + "GWU3PLeU-Uw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEC2Ev) STUB("GWXTyxs4QbE", sceMoveGetDeviceInfo) +STUB( + "GWZxZDYoI00", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEC2EPKS8_) +STUB( + "GWaRkbGYu1s", + _ZN3sce7Toolkit2NP12ActivityFeed9Interface9likeStoryEPKNS1_16LikeStoryRequestEPNS1_9Utilities6FutureIiEEb) +STUB("GWfexl813eg", _ZN9Inspector14ConsoleMessagedlEPv) +STUB( + "GWh6k9fG6aI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEmmEv) +STUB("GWi8H4yeG6Q", _ZNK3sce2Np9CppWebApi15Personalization2V15Error6toJsonERNS_4Json5ValueEb) +STUB("GWlhLW-DFLk", _ZN6Dinkum7threads21thread_resource_errorC1Ev) STUB("GWnWQNXZH5M", sceNpScoreCreateNpTitleCtxA) +STUB("GWpmTAy++os", JVM_RecvFrom) +STUB("GWpqS2ajjvs", _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOffer7hasviewEv) +STUB("GWtzpTKbZ+0", _ZNK3sce4Json14InitParameter211getUserDataEv) +STUB( + "GWu9Dz+9xhk", + _ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors27setValidationConstraintInfoERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_42PsnWebError_error_validationConstraintInfoEEEEE) +STUB("GWvTh6Cxidg", WKPreferencesSetDefaultFixedFontSize) +STUB( + "GWxek0eV51I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEixEm) +STUB("GWy1Z5IV65E", _ZN7WebCore19JSHTMLSelectElementD1Ev) +STUB( + "GWyvsTrNC2Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEC1Ev) +STUB( + "GX1stv0FKYc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "GX4DLMQ9488", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEC1ERS7_) +STUB( + "GX5ZPIwOIiM", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "GX7oRTixqbA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126PlayStylePropertiesFactory6createEPNS1_6Common10LibContextEiiiiPNS5_12IntrusivePtrINS3_19PlayStylePropertiesEEE) STUB("GXBlM-ekzrI", sceAgcBranchPatchSetCompareAddress) +STUB("GXGaUgZ0-Uc", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10CategoriesEEC2Ev) +STUB( + "GXKnEC-yyk8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEC1EPS6_PNS2_10LibContextE) +STUB( + "GXQ1L9Z9eG8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEE11release_refEv) STUB("GXQ2KV8thlc", sceM4aacEncEncodeWithPriority) +STUB("GXR1yNObIXk", _ZN3JSC7JSScope6s_infoE) +STUB("GXRcBXLSymE", mono_aot_Sce_Vsh_VideoRecordingWrapperunbox_trampoline_addresses) +STUB("GXXTFlCpAfo", mono_method_get_generic_container) +STUB("GXbL5lvDALs", + _ZN3sce7Toolkit2NP2V27Session5leaveERKNS3_7Request5LeaveEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB( + "GXbPA+K0V3Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE5beginEv) +STUB("GXbl+h53Jvk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE8pushBackERKS6_) +STUB("GXcCQB-7-Sc", SetServiceType) +STUB("GXedg4SunHo", mono_btls_pkcs12_import) +STUB( + "GXfHD0yY8G0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEE11release_refEv) +STUB( + "GXg+BAcUSnI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "GXjurSPXb5U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEEC1Ev) STUB("GXm6bV3ivGM", sceBgftServiceDownloadFindActivePupTask) +STUB( + "GXmMkF4k4J0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEC1EPS8_) +STUB("GXnfnrSkly4", ures_close_67) +STUB("GXnv8GxjAYw", + _ZN9Inspector27PerGlobalObjectWrapperWorld10addWrapperEPN3JSC14JSGlobalObjectEPNS1_8JSObjectE) +STUB("GXpk7pbqc+c", ulocimp_forLanguageTag_67) +STUB( + "GXsXRgVfdB8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE21intrusive_ptr_sub_refEPS9_) +STUB("GXwAucAAVKE", _ZN3sce7Toolkit2NP2V210Tournament22TeamVsTeamMatchDetails5resetEv) +STUB( + "GXwVA1tNCmQ", + _ZN3sce2Np9CppWebApi7Matches2V127ResponseMatchResultsFactory6createEPNS1_6Common10LibContextENS3_14ResultsVersionEPNS5_12IntrusivePtrINS3_20ResponseMatchResultsEEE) +STUB("GXwzMV4sWus", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119SubtaskAvailabilityEEC2Ev) +STUB("GY2I-Okc7q0", __asan_version_mismatch_check_v8) +STUB("GY9HhSASNDA", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12BandwithInfoEE12deepCopyFromERS7_) +STUB( + "GYGAbv58Kow", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE21intrusive_ptr_sub_refEPS9_) +STUB("GYJuIfJTnoo", uenum_close) +STUB("GYNW9m6bxIQ", _ZN3JSC14JSGlobalObject25s_globalObjectMethodTableE) +STUB( + "GYPIZVZsLPY", + _ZNK3sce2Np9CppWebApi14SessionManager2V129PostPlayerSessionsRequestBody6toJsonERNS_4Json5ValueEb) +STUB( + "GYPt0JrQAEg", + _ZN9Inspector21PageBackendDispatcher13setShowRulersElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("GYR6aHwlcaw", ucnv_getCCSID) +STUB("GYTAGzLGs+Y", ures_resetIterator) +STUB("GYTma8zq0NU", _ZNSt13basic_filebufIwSt11char_traitsIwEE5_LockEv) STUB("GYUk4t27Myw", sceShellCoreUtilLaunchByUri) +STUB("GYYIk8cGKzw", SSL_get_current_cipher) +STUB( + "GYYwUPNWBEY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEC1EPNS2_10LibContextE) +STUB( + "GYZ8cOaUPoQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEneERKS9_) STUB("GYamKe-3LbY", sceVisionManagerGetResultOfRegisterUserInRegion) +STUB("GYb9BH0k588", _ZN7WebCore9FrameView52disableLayerFlushThrottlingTemporarilyForInteractionEv) +STUB( + "GYclskDBHE8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE6resizeEj) +STUB("GYdCz1BiUBM", mono_aot_Sce_Vsh_Accessor_Dbunbox_trampoline_addresses) +STUB("GYjQb6dmwQ0", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeINS1_11TusVariableEPvEEC1ERKS7_) +STUB("GYmOFhEhwHI", _ZTVN9Inspector15RemoteInspector6ClientE) +STUB( + "GYmZVwnXyLc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEEptEv) +STUB( + "GYoJDTtMhGo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE10setContextEPNS2_10LibContextE) STUB("GYocVtgXJbg", sceDevUsbCloseHostStream) +STUB( + "GYqyvAJtRdw", + _ZN9Inspector21DOMFrontendDispatcher25customElementStateChangedEiNS_8Protocol3DOM18CustomElementStateE) +STUB( + "GYtQFolsBPQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEptEv) +STUB("GYtmhIpK5bc", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Error16unsetReferenceIdEv) +STUB("GYvoOadj6Ys", + _ZN8meta_gen11MsvPromoter11setKeyValueENS0_23MsvPromoterSetValueInfoEP10KeyValue_tPvi) +STUB("GZ2YtnlAzH4", _ZNK3sce2np4User25GetAccountIdFromRegistoryEPm) STUB("GZ2fZbzgixo", sceCustomMusicAudioOutGetAllMusicVolume) STUB("GZ6b3AIskOk", sceHandTrackerGetDepthRoi) +STUB( + "GZ8Zvp6ZwU4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEC1EPS6_PNS2_10LibContextE) +STUB("GZAZl2mqRbI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEED1Ev) STUB("GZB2v0XnG0k", sceNgs2SystemSetUserData) +STUB( + "GZFZDGteYXg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) STUB("GZFlI7RhuQo", pthread_mutexattr_gettype) +STUB("GZHXpU8oTF4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEED1Ev) +STUB("GZKYKdhWW8A", _ZN3JSC27objectPrivateFuncInstanceOfEPNS_14JSGlobalObjectEPNS_9CallFrameE) +STUB( + "GZLM--5O-rI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEmmEi) +STUB("GZMY2InuGqM", _ZN3JSC15WeakHandleOwnerC1ERKS0_) +STUB("GZNST4KS+L0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEE7get_refEv) +STUB("GZOVXCOJ+L4", _ZN7WebCore13TextIndicatorD1Ev) +STUB("GZR1pAMAEt8", mono_aot_Sce_Vsh_SQLiteplt_end) STUB("GZSR0Ooae9Q", scePthreadAttrSetcreatesuspend) +STUB( + "GZTtPT0oGbM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE6resizeEj) +STUB("GZVGHsmNwrc", WKViewSetIsVisible) +STUB( + "GZVGKA-4UVo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE21intrusive_ptr_sub_refEPS9_) +STUB("GZWZXLPO9Yo", _ZN8meta_gen11MsvPromoter22retrievePromoterOptionEP26MsvPromoteInnerInformation) +STUB("GZWjF-YIFFk", asinf) +STUB("GZdXEhL0O38", ufmt_open_67) +STUB( + "GZdYtzLqHDE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE7popBackEv) +STUB( + "GZi4wygq828", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEE7add_refEv) +STUB( + "GZiYfj-DABM", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("GZuWgRFSA+o", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15PlayedWithStoryEEC1Ev) +STUB( + "GZuXTgngrkY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("GZugQT95TYo", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEEC2Ev) +STUB("GZxQA0G4NKY", _ZN3sce2Np9CppWebApi7Matches2V120RequestPlayerResults8setScoreERKd) +STUB( + "GZzhMy6UpuA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEC1EPS8_) +STUB("Ga62rZ9VPkc", mono_aot_Sce_Vsh_MarlinDownloaderWrapperunbox_trampoline_addresses) STUB("Ga6r7H6Y0RI", sceGnmSubmitAndFlipCommandBuffersForWorkload) +STUB("GaBd+6ZpNQU", _ZNSbIwSt11char_traitsIwESaIwEE6assignEPKwS4_) +STUB("GaCAKR7qn-0", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEEcvbEv) +STUB("GaDit2xiyZc", _ZN3sce7Toolkit2NP2V210Tournament6Events8deepCopyERKS4_) +STUB( + "GaFCNkPwVyI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEC1EPS6_PNS2_10LibContextE) +STUB( + "GaKNlKb+QE4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE21intrusive_ptr_add_refEPS9_) +STUB("GaS8QZThdBQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEC1Ev) +STUB("GaXDDWPO1z8", _ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_17ActivityFeedStoryEE8max_sizeEv) +STUB("Gabnudg8bzM", _ZN3WTF15ThreadCondition4waitERNS_5MutexE) +STUB("GaeTcxQ69fA", p5_1024) +STUB("GagDu-aD1Qg", rgctx_fetch_trampoline_mrgctx_105) +STUB("GagczbmtfhI", _ZN3WTF18FunctionDispatcherD2Ev) +STUB("Gak6zrIRaWo", _ZNK7WebCore15GraphicsContext18hasPlatformContextEv) +STUB( + "GamBJwe3I04", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEEC1Ev) +STUB("GamJ8jA0W5A", _ZNK7WebCore18TextureMapperLayer11shouldBlendEv) +STUB( + "GaoiVDAahk8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "GatXH-qaSJE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEC2EPNS2_10LibContextE) +STUB("Gav1Xt1Ce+c", _ZSt7_MP_MulPyyy) +STUB("GawFHI26U80", mono_aot_Sce_Vsh_VideoRecordingWrapperunbox_trampolines) STUB("Gaxrp3EWY-M", sceNpNotifyPlusFeature) +STUB( + "Gay7zprjxMg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB("GayvOjZOQNI", GCC_except_table24) +STUB("Gb-fxOosuM0", _ZNK3sce2Np9CppWebApi14ConnectAccount2V214PSNError_error10getMessageEv) +STUB( + "Gb0PFvAKD4k", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("Gb3-J6Mla08", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13SessionMemberEE8allocateEmPKv) +STUB("GbLGdmiF5BI", _ZN3JSC12CachePayloadD1Ev) +STUB( + "GbYMQNxR3j0", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V122FrequentlyMutedFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_15FrequentlyMutedEEE) +STUB( + "GbZeL6MHCJE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE8copyFromERKS9_) +STUB( + "GbaStDk1a24", + _ZN7WebCore21UserContentController17addUserStyleSheetERNS_15DOMWrapperWorldESt10unique_ptrINS_14UserStyleSheetESt14default_deleteIS4_EENS_22UserStyleInjectionTimeE) STUB("GbayQ7DO8jA", sceNpAppLauncherLaunchApp) +STUB("GbbwaSI5Ovo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEC2ERS7_) +STUB("GbcKdx3JDJw", WKProtectionSpaceGetReceivesCredentialSecurely) +STUB("Gbf3mDjijuQ", _ZN7WebCore24CoordinatedGraphicsLayer21didChangeImageBackingEv) +STUB("Gbf850JXpeI", _Bocu1Data_67) +STUB("GbfYPnK7W8o", _ZN12video_parser5vpcom8datetime8DateTime17SetDateTimeFormatEPKw) +STUB("GbhE629vwg8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEED1Ev) +STUB("Gblk9Tyt0B0", _ZN7WebCore9DragImageC1EOS0_) +STUB("GbpPJtP6htc", _ZN3sce2Np9CppWebApi11Matchmaking2V19Attribute8fromJsonERKNS_4Json5ValueE) +STUB("Gbr7tQZ4A1A", __libunwind_Unwind_Resume) +STUB("GbxTmw+P-A4", _ZN7WebCore11DisplayList11SetLineJoinC2ENS_8LineJoinE) +STUB( + "Gc0AGmzHUN4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("Gc3f8YcDNrE", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEE3getEv) STUB("Gc5k1qcK4fs", sceMsgDialogProgressBarInc) +STUB( + "GcB8GSBhh2A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEmmEi) +STUB("GcBBIozjw1g", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody8setValueERKl) +STUB( + "GcE+fDsY6UA", + _ZN12video_parser17cVideoProfilerMp412_createMediaEjMS0_FNS_11VP_RESULT_eEjPNS_13VpMediaInfo_tEEMNS_18cProfileCheckerMp4EFbRKS2_EMS0_FS1_S3_ERNS_7cVpListIS2_jEE) +STUB("GcEtXHDJDsA", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119BandwidthProperties13getDownstreamEv) +STUB("GcFKlTJEMkI", isupper) +STUB("GcGShVuyGwg", mono_allocator_malloc) +STUB( + "GcHBzsl-OHs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "GcUEOVCIZy8", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setInteger7ERKi) +STUB("GcUPkO7ruRw", _ZN7WebCore22EmptyFrameLoaderClientC1Ev) +STUB( + "GcX0ViXmdr0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEppEv) STUB("GcdIHVyl-aw", sceMbusResolveByDeviceId) +STUB("GceM6WE2WS4", _ZNK3sce3Xml3Dom8Document11getNodeNameENS1_6NodeIdE) +STUB("GciZ5UdsizU", _ZN3WTF4Lock8lockSlowEv) +STUB("GcifvkbIdFo", _ZN3sce7Toolkit2NP2V211UserProfile7Request27DisplayGriefReportingDialogC2Ev) STUB("Gcjh+CisAZM", sceHttp2SetResolveRetry) +STUB( + "Gcpqs-kk96Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "GcqDAyFcqUw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEEcvbEv) +STUB("Gcx7jKVH4Fo", _ZN7WebCore24previousSentencePositionERKNS_15VisiblePositionE) +STUB("GcxRiAp3hbA", _ZN3NTF3Ssl8finalizeEv) +STUB("Gd+qURyWyR4", ln2HI) +STUB("Gd14yqJAPa4", _ZN12video_parser5vpcom9_MemalignEjj) +STUB("Gd2cNn9kpFQ", Java_java_net_PlainDatagramSocketImpl_setTTL) +STUB("GdE8XJtFbSE", u_strFoldCase_67) +STUB( + "GdEXKaDnxuU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEC2EPS8_) +STUB( + "GdHVe2G4vHU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEC1EPS8_) STUB("GdIm4Jm2mm8", sceApplicationGetProcs) STUB("GdMXy2ocZ48", sceMoveTrackerCaptureInit) +STUB("GdQE3WsnVCM", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request8SetLikedC2Ev) +STUB( + "GdSqUKrWqQs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEEaSERSA_) +STUB( + "GdU3fBjlmtg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "GdcTQKsg5d4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEC2ERKS7_) +STUB( + "Gdd02bZupuA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEC1EPNS2_10LibContextE) +STUB( + "GdgKwcwT8E4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEeqERKS9_) STUB("GdgpUNXwRsE", _sceDepthEnableDebugScreen) +STUB("GdkV-7Tkijw", WKPreferencesSetProcessSwapOnNavigationEnabled) +STUB("GdlvBtLAHXQ", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setBoolean3ERKb) +STUB("GdnhqBupzSE", YGNodeStyleSetFlexBasisAuto) +STUB( + "GdpvuevFpdE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEED1Ev) +STUB("GdwuPYbVpP4", __atomic_store_n) +STUB("GdyCEk3degI", rgctx_fetch_trampoline_mrgctx_77) +STUB( + "Ge1OVitLCP4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEC2EPS8_) +STUB("Ge5LPTR3xDM", Java_java_util_zip_Deflater_initIDs) +STUB("Ge6pgi0lST0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEptEv) +STUB( + "Ge6sxIT+bx4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEC2EPS6_PNS2_10LibContextE) +STUB("Ge8YISwcays", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEE11get_deleterEv) +STUB("Ge9Kx6Ju6jg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEC2Ev) +STUB( + "Ge9ne5xHuxs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEmmEi) +STUB( + "GeCHMPsoAXU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("GeJKliDKddg", JSGlobalContextSetIncludesNativeCallStackWhenReportingExceptions) +STUB( + "GeKbZ7oP95s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE7popBackEv) +STUB( + "GeaOQYX4Q1c", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetrics27setCompletionRatePerReasonsERKi) STUB("GecDKH8ag3M", sceSystemTtsSpeakRequest) +STUB( + "Gei2wr0Pqnw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "Gejy94be54Q", + _ZN9Inspector15AsyncStackTraceC2EON3WTF3RefINS_15ScriptCallStackENS1_13DumbPtrTraitsIS3_EEEEbNS1_6RefPtrIS0_NS4_IS0_EEEE) +STUB("Geq48oFpp0A", _ZN3WTF10StringImpl9substringEjj) STUB("Getl+RqEhVQ", sceSystemServiceGetRemoteplayStatus) +STUB( + "Gettsb-t0qk", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo25getsetDataInfoRequestBodyEv) +STUB( + "Gev+GcZhs4o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC1ERSA_) +STUB( + "GexFHbhrBvM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEED1Ev) +STUB("GezJ5b754Bs", _ZN3sce7Toolkit2NP2V24Core7Request11MemoryPools21JSON_MEM_MINIMUM_SIZEE) +STUB("GfBtCQhC0Fs", mono_aot_Sce_Vsh_Db_Sharedjit_got) +STUB("GfBvEsyC8oY", _ZNK7WebCore16URLDecomposition8pathnameEv) STUB("GfDUIXu2zes", sceMusicFwIsStopped) +STUB("GfDzwBDRl3M", SSL_ASYNC_recvMessage) +STUB( + "GfGTD16X2pI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEptEv) +STUB( + "GfHCW0mNr00", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("GfKXQDoSdAA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEaSERKS7_) +STUB("GfKtbQJhry0", il2cpp_profiler_install_gc) +STUB( + "GfL2Ya58wj8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEmmEv) +STUB( + "GfOdFg60bvo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE3endEv) +STUB( + "GfOxyybjJ2U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEEC1ERKSB_) +STUB("GfQIOjyubkQ", _ZN3sce7Toolkit2NP2V29Challenge7Request13SendChallengeD2Ev) +STUB("GfREyk-b3vM", __cxx_global_var_init) +STUB( + "GfRjF9w7erA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEneERKS9_) +STUB("GfZoGLdKTn0", _ZTVN7WebCore11DisplayList11ClearShadowE) +STUB("Gfc0aRUJWa8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEC1ERS7_) +STUB("GflSK+Jz9Lo", _ZN3WTF22equalRespectingNullityENS_10StringViewES0_) +STUB("GfnvVIML3Gw", __asan_exp_loadN) +STUB( + "GfwOufLvsbI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEC2Ev) +STUB("GfxAp9Xyiqs", __isnan) +STUB("Gfzd1R86ep8", glGetFloatv) +STUB( + "Gg-N09Pdqzw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEdeEv) +STUB( + "Gg-wrWTlOS8", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12string4IsSetEv) STUB("Gg3+yWL6DWU", sceKernelLoadStartModuleForSysmodule) STUB("GgFMb22sbbI", sceSystemGestureUpdatePrimitiveTouchRecognizer) +STUB("GgNWVxe-YSU", _ZN15AbstractStorage6FolderD0Ev) STUB("GgOrwi+9vcA", sceCompositorLockCommandBuffer) +STUB("GgPiEmHWuxg", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStatsC2Ev) +STUB("GgSXKx2xATk", _ZN9Inspector28DOMStorageFrontendDispatchernaEm) +STUB( + "GgWaXl9yy9E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "Ggcb+ftqAvQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("Ggh3DRD5OCU", utrans_transIncremental_67) +STUB("GgjJq0PxpUg", _ZNK3WTF8JSONImpl5Value9asIntegerERx) +STUB( + "Ggla80MqoRo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEC1EPS8_) +STUB( + "GgmQLvW+bWo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) STUB("GgrAun5x5Eg", sceWorkspaceIsBlockedByDataTransfer) +STUB( + "GguATNl6lBg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEEC1ERSA_) +STUB("Ggznek+dXtg", _ZN7WebCore10JSDocument23visitAdditionalChildrenERN3JSC11SlotVisitorE) +STUB( + "Gh-kaPIkQ9k", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEptEv) +STUB( + "Gh0o8XPayGU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEEC1Ev) +STUB("Gh35wbyg4U8", _ZThn8_N3sce2np9LocalFileD0Ev) +STUB( + "Gh3efERWevs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEE21intrusive_ptr_add_refEPS7_) STUB("Gh74vNl06sg", sceNpUserGetUserIdList) +STUB("Gh7soVn0NGU", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119PlayStyleProperties11setProgressERKi) +STUB( + "Gh7yJ8pdIFI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEC1Ev) +STUB("GhO6L9-UJS4", _ZN7WebCore6Region8subtractERKS0_) +STUB("GhP1PyN1Twk", AnnotateThreadName) +STUB("GhQ4MY3pYEg", _ZN7WebCore9HTMLNames18onpointerenterAttrE) +STUB("GhSIARptbG8", _ZN3WTF14FileSystemImpl14MappedFileDataD1Ev) +STUB("GhTZtaodo7o", vfprintf_s) +STUB("GhX55L+EUH4", _ZNK3sce2Np9CppWebApi7Matches2V124ResponseTeamMemberResult11getPlayerIdEv) +STUB("GhYXokH9koc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEEneERKS7_) +STUB( + "GhZeEvhE2q4", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetInteger3Ev) +STUB("Ghcm94pt0TY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEED2Ev) +STUB("GhsF8zOJ3Cc", mono_thread_get_undeniable_exception) STUB("Ghu0khDguq8", sceUserServiceSetImeInputType) STUB("Ghz9iWDUtC4", sceNpGetAccountCountry) +STUB("Ghzo+Uyy-t8", _ZN3sce7Toolkit2NP2V28Commerce12ProductLabelD2Ev) +STUB( + "Gi-GZkRIBV0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEE7add_refEv) +STUB("Gi28UK8WzGQ", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEED1Ev) +STUB( + "Gi7ShZE5nBc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEEptEv) +STUB("Gi7XC+1X+8o", _ZNK7WebCore36ISOProtectionSystemSpecificHeaderBox8systemIDEv) +STUB("GiBMpBpiYd0", _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse9getStatusEv) +STUB("GiFdIE3L+ZY", _ZNSs7replaceEmmPKcm) +STUB("GiGIymC7UiI", WKPreferencesSetWebRTCMDNSICECandidatesEnabled) +STUB("GiINKoQuNVg", + _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody8fromJsonERKNS_4Json5ValueE) +STUB("GiJmYHz54rQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEEC2EPS5_PNS2_10LibContextE) +STUB( + "GiSQp3uJjac", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE4sizeEv) +STUB( + "GiWETd3nkAM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEC2EPS8_) +STUB( + "GiWN6uxe6TU", + _ZN7WebCore9FontCache22createFontPlatformDataERKNS_15FontDescriptionERKN3WTF10AtomStringEPKNS_18FontTaggedSettingsIiEENS_34FontSelectionSpecifiedCapabilitiesE) +STUB( + "GiXmZGHatWM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEaSERKS9_) +STUB( + "Gihs4J652WM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEED2Ev) +STUB( + "Gijg+c9HV10", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEE11get_deleterEv) +STUB("GipcbdDM5cI", makecontext) +STUB( + "GiqQCkKjFcE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEppEv) +STUB("GisV2ItxzSQ", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEEcvbEv) +STUB("GiuNQjoj4fs", FT_Library_SetLcdFilterWeights) +STUB( + "Gj47eqLxolE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEplEm) +STUB("Gj6tgiTcW4U", _ZN3JSC7JSArray3popEPNS_9ExecStateE) +STUB("GjEzzszOGBA", _ZN8meta_gen11MsvPromoter14matrixToDegreeEPA3_i) +STUB( + "GjHD4cElxwk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE5startEPNS2_10LibContextE) +STUB( + "GjHvH0ht6G4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEEeqERKS7_) +STUB("GjKfG6sGBOE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEEC2Ev) STUB("GjOxjIVZA1Y", sceShellCoreUtilShowPsUnderLockIndicator) +STUB("GjQLdCasJDg", nsnp_Callback) +STUB("GjQNntzB+Bo", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForReadC2EPNS1_6Common10LibContextE) STUB("GjTLuu76SmM", sceVdecwrapMapMemory) +STUB("GjV1xAe92pA", _ZN7WebCore7Element9innerTextEv) STUB("GjZepmfthqc", sceBgftServiceIntUploadStartTaskAll) +STUB( + "GjbsmBJYdMk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "GjcA03YszY8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEED1Ev) +STUB("GjgsXQ+-x+I", _ZN3JSC14JSGlobalObject14finishCreationERNS_2VMEPNS_8JSObjectE) STUB("Gjixv5hqRVY", sceNpTusGetMultiUserVariableA) +STUB("GjjW3bNHObE", _ZN3sce2Np9CppWebApi14SessionManager2V131JoinedPlayerSessionWithPlatformD1Ev) STUB("GjlCrU4GcIY", sceUsbdGetDeviceAddress) STUB("GjlEgLCh4DY", sceNpTusAddAndGetVariableAVUserAsync) +STUB("GjlePVpfinU", rgctx_fetch_trampoline_mrgctx_49) +STUB("Gjlf+huGFNw", JSStringCreateWithCharacters) +STUB( + "GjrpHc3chJg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEplEm) +STUB("Gk+8gCXwG-E", sqlite3_column_double) +STUB("Gk0mg+4tTUI", utext_char32At) +STUB( + "Gk5roC6xrqk", + _ZN7WebCore32ScrollingStateFrameScrollingNode24setCounterScrollingLayerERKNS_19LayerRepresentationE) +STUB( + "Gk7HAtV9ofQ", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "Gk9ujES5kG8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEEC1ERSA_) +STUB("GkA4buNC-VA", + _ZNK7WebCore31BasicColorMatrixFilterOperation14transformColorERNS_15FloatComponentsE) +STUB( + "GkAJMY+wF4I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEixEm) +STUB( + "GkIneoDCSOs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE3endEv) +STUB("GkMyrZa8cHM", ucnv_fromUChars_67) +STUB("GkPVpZGE6sQ", _ZN3sce7Toolkit2NP15AppSTLAllocatorIcE7destroyEPc) +STUB( + "GkQrpMn+8Lo", + _ZNK3sce2Np9CppWebApi14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBody6toJsonERNS_4Json5ValueEb) +STUB( + "GkROvxyaoF0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEeqERKS9_) +STUB("GkSqeLsK6UY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEE7get_refEv) +STUB("GkZr2dPXNgw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEEC1EPS5_PNS2_10LibContextE) STUB("GkcHilidQHk", sceUserServiceGetGlsCameraReflection) STUB("GkcNZBoiDcs", sceLncUtilDisableSuspendNotification) +STUB("GkcuoqSr8nw", WKPreferencesGetHiddenPageDOMTimerThrottlingEnabled) STUB("Gke7hJc-Pm0", sceClSslTerm) +STUB("Gkl6Qti1Wfg", _ZN12video_parser7cVpUtil14_freadToBufferEPNS0_13VpFileCache_tEx) +STUB("Gkoa1wKi7K0", mono_aot_Mono_Data_Tdsunwind_info) STUB("GkuFL+S22uc", sceCesIso2022StrGetUtf16Len) +STUB("Gkvg56ubDpo", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V18RelationEEptEv) +STUB("Gl+u5UChB1s", mono_class_num_fields) +STUB( + "Gl4p7kLDww4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "Gl5iwJZ1W8E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEC1EPS8_) STUB("Gl6w5i0JokY", sceAppContentDownloadDataGetAvailableSpaceKb) +STUB("Gl9UFzi54FQ", WKBundlePageGetInspector) +STUB( + "GlHYCz2XFvk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEEC2ERKSA_) +STUB("GlIrjgdHfGc", _ZN7WebCore20GraphicsContextStateD1Ev) +STUB( + "GlJyccL2tv4", + _ZN3sce2Np9CppWebApi11UserProfile2V132GetPublicProfilesResponseFactory7destroyEPNS3_25GetPublicProfilesResponseE) +STUB("GlK3W3WZsn4", g_NativeCodePoison) +STUB( + "GlLpuCUx28o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE5clearEv) +STUB( + "GlOMlMBHCuk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEE3getEv) +STUB( + "GlbfaP-JwtM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("GlcXYq3EsV0", _ZNK7WebCore10ScrollView18contentsToRootViewERKNS_10FloatPointE) +STUB("GldGeV80-58", curl_mfprintf) +STUB("GlelR9EEeck", cbrtf) +STUB( + "Glf9vdV5zfk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEC1EPKS8_) +STUB("Glom7gJFV-M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEE11get_deleterEv) +STUB( + "GlreTYMyXC8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEC2Ev) +STUB("GltWfLh3-dc", _ZN7WebCore8SVGNames8hrefAttrE) +STUB( + "GlvflXGKGNo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEC1Ev) +STUB("Glwe0sa+-+8", rgctx_fetch_trampoline_mrgctx_51_p) +STUB("GlxLVLdfMos", WKPreferencesGetPrimaryPlugInSnapshotDetectionEnabled) +STUB( + "GlxjwZjoPh4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEE11release_refEv) +STUB( + "GlzwleQ-P7E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEmmEi) +STUB("Gm0erHUvxXw", ucsdet_setDetectableCharset_67) +STUB("Gm7A45gur-E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEixEm) +STUB("Gm9xuNlQSjE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEEC2EPNS2_10LibContextE) +STUB( + "GmAE20CYi8E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEE7get_refEv) +STUB("GmIN5ZvUPSM", + _ZN7WebCore15nativeImageSizeERKN3WTF6RefPtrI14_cairo_surfaceNS0_13DumbPtrTraitsIS2_EEEE) +STUB("GmJGWhxYLKQ", _ZN3sce2Np9CppWebApi6Common6VectorIdE5clearEv) +STUB("GmJr4Guymvk", _ZN3WTF10StringImpl11reverseFindEPS0_j) +STUB("GmJyq9LDPJs", WKURLCopyScheme) STUB("GmKMHwvxLlo", sceLncUtilAcquireCpuBudgetOfImeForBigApp) +STUB("GmKS0bnd+BI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariableC1EPNS1_6Common10LibContextE) +STUB("GmNOyPRGDwA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEdeEv) STUB("GmOguNIsuKk", sceAmprCommandBufferConstructNop) +STUB("GmP2ZgUoTPo", glScissor) +STUB( + "GmRfAxG49x8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEE11release_refEv) +STUB("GmXs45yD890", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEEC1Ev) +STUB( + "GmkJ7v6mVfU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEaSERKS7_) +STUB("GmknlpaIzyI", mono_aot_System_Runtime_Extensionsunwind_info) +STUB( + "Gmr+A+Womww", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE5emptyEv) STUB("GmrTCACYzkE", sceVnaGetEventData) +STUB("Gn+r7nHba3k", jpeg_idct_6x12) +STUB("Gn3ZBaH2rK0", cairo_surface_create_similar) +STUB( + "GnB-wpd4obI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEE11release_refEv) STUB("GnG9xqIIEWk", sceLibSecureHashResetContext) +STUB("GnJCXIvEcd8", _ZN3sce7Toolkit2NP2V211SharedMedia10Broadcasts5resetEv) +STUB( + "GnMMiHDZCCQ", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_19ProductInfoDetailedENS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv) +STUB("GnNvLp8818o", _ZN7WebCore6Editor23handleAcceptedCandidateENS_18TextCheckingResultE) +STUB( + "GnRsxVHRrro", + _ZN7WebCore19ProtectionSpaceBaseC2ERKN3WTF6StringEiNS_25ProtectionSpaceServerTypeES4_NS_35ProtectionSpaceAuthenticationSchemeE) +STUB( + "GnTXkxscE8k", + _ZN7WebCore16MIMETypeRegistry21allowedFileExtensionsERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEES8_) +STUB( + "GnTyRxugk1E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE10setContextEPNS2_10LibContextE) +STUB("GnU5P3SpJ1Q", _ZN7WebCore21BackForwardController11forwardItemEv) STUB("GnVDzYfy-KI", sceHttpSetCookieSendCallback) +STUB("GnajuZVqOUc", _ZN3sce7Toolkit2NP2V210Tournament12EventDetailsD1Ev) +STUB("GnimSlf3jqg", _ZN7WebCore15HTMLLinkElement7relListEv) +STUB( + "Gnq-U0hA7Vc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE7popBackEv) +STUB("GnqKwm4KHMA", _ZN9Inspector27AnimationFrontendDispatcherdlEPv) STUB("GnxKOHEawhk", sceAmprCommandBufferGetCurrentOffset) +STUB( + "Go+VRVxhGv4", + _ZN9Inspector21InspectorRuntimeAgent5parseERN3WTF6StringERKS2_PNS_8Protocol7Runtime15SyntaxErrorTypeERSt8optionalIS2_ERNS1_6RefPtrINS7_10ErrorRangeENS1_13DumbPtrTraitsISE_EEEE) +STUB("Go2peEcYtcM", + _ZN12video_parser13cVideoMetaVWG12_getMetadataENS_12VP_META_TYPEEjPPNS_12VpMetadata_tE) STUB("Go4qB43MgX8", sceFaceAllPartsGetWorkingMemorySize) +STUB( + "Go6yQS5VMN0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE8capacityEv) +STUB("Go8rq2aaDlc", _ZN3WTF37parseDateFromNullTerminatedCharactersEPKcRb) +STUB("GoCeRnC3e+0", _ZN3sce7Toolkit2NP2V28Matching6Member8deepCopyERKS4_) +STUB("GoDUgXTQZLY", throw_corlib_exception) +STUB( + "GoDz7Nqtnqo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEE11release_refEv) +STUB("GoEp+s6J5yg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEED1Ev) STUB("GoF2bhB7LYk", sceFontGetScalePoint) STUB("GoGd21YYfCw", sceBgftServiceIntDownloadSetHighPriority) STUB("GoLUMUdvoi0", sceDeci4hDrfpFtruncate) +STUB("GoMPhCyp74o", _ZNK3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator12getAccountIdEv) +STUB("GoOGiThozIg", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku7idIsSetEv) +STUB("GoQ1CrU3pSg", _ZN3JSC11ArrayBuffer19createUninitializedEjj) +STUB("GoS6HzHIbuE", mono_aot_Sce_Vsh_SyscallWrapperunbox_trampolines) STUB("GoTmFeui+hQ", scePthreadMutexattrGetprotocol) +STUB("GoX0Z-J0paw", _ZN7WebCore11MathMLNames11mlongdivTagE) +STUB("GoaAO+o56mA", WKPreferencesGetForceEnableVideo) +STUB("GodxpAzGsxI", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V112OnlineStatusEEppEi) +STUB( + "Gof3Ec0ZSfg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEC1Ev) +STUB("GolPYrXT8eU", + _ZN3sce2Np9CppWebApi14SessionManager2V115SearchCondition8fromJsonERKNS_4Json5ValueE) STUB("Gop3lku7E+Q", sceVisionManagerGetResultOfFindUserInRegion) +STUB( + "GopELq8R-9w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEED2Ev) STUB("Gp+41FTXklM", sceFsInitUmountGamePkgOpt) +STUB("Gp0pR6Sws00", + Java_com_sony_gemstack_org_dvb_application_AppsDatabaseImpl_n_1getAttributesFromId) +STUB( + "Gp5VcGlSROc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEC1Ev) +STUB("GpDR4arH8lM", _ZN9Inspector24CanvasFrontendDispatchernwEmPv) +STUB("GpEG1IcP86s", _ZN3sce4Json5Value10s_nullrealE) +STUB("GpGc4ILGeNE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEC1Ev) +STUB("GpHqRFLabFA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEC2ERS7_) STUB("GpLQDNKICac", sceNpCreateRequest) +STUB( + "GpML4e-O11Q", + _ZN7WebCore35createAccessControlPreflightRequestERKNS_15ResourceRequestERNS_14SecurityOriginERKN3WTF6StringE) +STUB( + "GpNaAXN+GlY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE8capacityEv) +STUB( + "GpR7cdyClRc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEmmEi) STUB("GpWMCMxa1aA", sceLibSecureAddCipher) +STUB("GpZgx9YPGZo", uscript_getUsage_67) +STUB("Gpa2tZnJuQg", Java_java_util_zip_Inflater_end) +STUB("GpapT9ChCKs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEEC2EPS6_) +STUB("GpdlPc6VYfw", __tsan_mutex_pre_divert) +STUB("GpgGEmVl9Ck", eglQueryAPI) +STUB("GphNWAcTBGE", _ZN3JSC16SamplingProfiler18reportTopFunctionsEv) +STUB( + "GpjQRuMwSrs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEC2EPS8_) +STUB( + "GpjYftkWuqg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEED1Ev) STUB("GpptAvO+vGI", sceHttpCacheRetrieve) STUB("GpuFjTMZsis", sceAvControlGetMonitorInfo) +STUB("Gpz8Xfpds+A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEC2Ev) +STUB( + "Gq0RYGEEgKE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEEC2ERKSA_) +STUB("Gq1FVbe0-KE", + _ZN9Inspector21InspectorConsoleAgentC1ERNS_12AgentContextEPNS_18InspectorHeapAgentE) +STUB( + "Gq9XSUWxnaU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEEptEv) +STUB("GqCfInRNnaQ", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountIdC1Ev) STUB("GqETL5+INhU", sceNetBweRegisterCallbackIpcInt) +STUB("GqF-5J6eSqg", _ZNK3sce2Np9CppWebApi11UserProfile2V112BasicProfile14languagesIsSetEv) +STUB("GqI7c4FrDfc", _ZN7WebCore18pluginScriptObjectEPN3JSC9ExecStateEPNS_13JSHTMLElementE) +STUB( + "GqIHH8GfLP8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("GqK+hm6Mdp0", + _ZN7WebCore15UserInputBridge14handleKeyEventERKNS_21PlatformKeyboardEventENS_11InputSourceE) +STUB( + "GqLT87CzbNk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE3endEv) +STUB("GqN5h-zFfOI", _ZNK7WebCore16HTMLMediaElement11currentTimeEv) +STUB( + "GqQ4RvgCIhw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEC2EPKS8_) +STUB( + "GqShbqXV8U8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEED1Ev) +STUB( + "GqSueWRu-Y8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE7reserveEi) +STUB( + "GqYLh0rMzlQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEE11get_deleterEv) STUB("Gqa5Pp7y4MU", sceFontGetRenderEffectSlant) +STUB( + "GqdhJt6l9F8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEE7add_refEv) +STUB("GqdnVh2qSig", _ZN3sce3pss4core5audio5Sound23CreateSurroundPanPlayerEv) +STUB("GqeDT76NiQk", uregex_split_67) +STUB("GqgJUMwBLMw", + _ZN3WTF8JSONImpl9ArrayBase9pushValueEONS_6RefPtrINS0_5ValueENS_13DumbPtrTraitsIS3_EEEE) +STUB("Gqh8-5LJ3g4", mono_btls_x509_get_pubkey) +STUB("GqiI8g1gvaM", ures_getInt_67) +STUB("GqidY-RO6jg", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEEC2EPS6_) +STUB("Gqj46dgrxBI", g_strchug) +STUB( + "GqkuC6oXppA", + _ZN9Inspector20DOMBackendDispatcher11getDocumentElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "GqlbQQOzz4k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEC1Ev) +STUB("GqlmQCbNDpc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEEC2ERS7_) +STUB( + "GqmaGEEDG-U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEC2Ev) +STUB("GqqwioO1HC4", + _ZN3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBody8fromJsonERKNS_4Json5ValueE) +STUB("GqtvKHkHYEY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEC1ERKS7_) +STUB("Gqw13uaqnx0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE6resizeEj) +STUB("Gqx-llHCbtg", _ZN3sce2Np9CppWebApi11Matchmaking2V19AttributeD1Ev) +STUB("Gqz3wQ-Cnec", _ZN7WebCore11DisplayList11DrawEllipseC2ERKNS_9FloatRectE) +STUB("Gr+ih5ipgNk", _ZTIPKl) +STUB( + "Gr-NufZRPbo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEC1EPS8_) +STUB( + "Gr22ZmQ5Olg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEE7get_refEv) STUB("Gr4HfdAqjc4", sceFsUfsAllocateAligned) +STUB("Gr7RF3--uDc", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product10getVersionEv) +STUB( + "Gr978RoNvjE", + _ZN12video_parser47VpMpegvideoAvcParseSPS_get_offset_for_ref_frameEPNS_21VpMpegvideoAvcSPSCtrlEiPi) +STUB( + "Gr9h5LOVcQ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE5eraseENS2_8IteratorIS8_EERSB_) STUB("GrA9ke1QT+E", sceAudioPropagationSystemQueryInfo) +STUB( + "GrATz5OViKs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEC2EPS8_) +STUB( + "GrGPZY2lebE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEED1Ev) +STUB("GrLInwUuV2k", glDrawBuffers) +STUB("GrLxGc23gQc", _ZN7WebCore11DisplayList7ClipOutC1ERKNS_9FloatRectE) +STUB("GrPVlBqGsdI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE8copyFromERKS7_) STUB("GrQ9s4IrNaQ", sceAudioOutGetPortState) +STUB( + "GrQSJl-p+c0", + _ZN3JSC4callEPNS_14JSGlobalObjectENS_7JSValueERKNS_8CallDataES2_RKNS_7ArgListERN3WTF8NakedPtrINS_9ExceptionEEE) +STUB("GrXt-2SalT0", _ZNK7WebCore5Color14colorWithAlphaEf) +STUB("GrZjCgU8MOI", _ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody7getPcIdEv) +STUB("GraLckR1SPU", _ZNK3WTF9MediaTime8toStringEv) STUB("GrdiysPCp+M", sceKernelGetUniversalMode) +STUB( + "GrkSSMEFhYg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEC2EPS6_PNS2_10LibContextE) +STUB("Grm8FwC5JHA", _ZN3WTF17charactersToFloatEPKDsmPb) +STUB("Grn1GRcWJio", _ZN3WTF7CPUTime16forCurrentThreadEv) +STUB("GrqTpQcB-j0", _ZN7WebCore13ContainerNode8childrenEv) +STUB("Gry41FCj66k", _ZN7WebCore9URLParserC2ERKN3WTF6StringERKNS_3URLERKNS_12TextEncodingE) +STUB("Gs5+U15W-kU", Java_sun_awt_DownloadedFont_getStatus) +STUB("Gs7Z-QaIvu8", g_clear_error) +STUB( + "GsAxqp76fCI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) STUB("GsU8nt6ujXU", sceFontGraphicsTextureMakeFillTexture) STUB("GsWjzRU7AWA", sceNpIntCheckPlus) +STUB("GsZGs1DOSWo", _ZN7WebCore11DisplayList16DrawLinesForTextD2Ev) +STUB("Gsb4h38mrks", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEaSERKS7_) +STUB("Gsbuwj5LXck", mono_aot_System_ComponentModel_DataAnnotationsunbox_trampoline_addresses) +STUB("GsjUOSUMQZ8", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEEC2Ev) +STUB("GslDM6l8E7U", _Unwind_DeleteException) +STUB( + "GslIZxxBq4o", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEneERKS9_) +STUB( + "GsmsTXjUSvU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEE11get_deleterEv) STUB("GssDGmm3rGM", sceMbusGetControlStatus) +STUB("Gssl8v-q4A4", _ZN7WebCore19BlurFilterOperationC1ENS_6LengthE) +STUB( + "Gt4cT6KC+7U", + _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container29setContentInteractiveElementsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_25ContentInteractiveElementEEEEE) +STUB("Gt5RT417EGA", dremf) +STUB( + "Gt5raPAdKeo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("Gt6fMQroxAY", JSContextGroupClearExecutionTimeLimit) +STUB( + "Gt7xyYvmn8I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "GtCcjkrIaw8", + _ZN7WebCore17PageConsoleClient5countEPN3JSC9ExecStateEON3WTF3RefIN9Inspector15ScriptArgumentsENS4_13DumbPtrTraitsIS7_EEEE) +STUB("GtEbqvEBuK4", _ZN9Inspector15InspectorTargetD1Ev) STUB("GtF-2gJqsts", scePlayerSelectionDialogGetResult) +STUB( + "GtK0QzIVsQU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEmmEi) +STUB("GtMgx4YcBuo", _ZN3sce2np4User5ClearEv) STUB("GtOEkqZ1LDA", ScePsmMonoStringNew) +STUB( + "GtQZ4YcvCBc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEneERKS9_) +STUB("GtSIY8asgS8", _ZN7WebCore17FrameLoaderClient21didChangeScrollOffsetEv) +STUB("GtUmJEfR0xk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEC1Ev) +STUB( + "GtY0oqbLe0Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEEC1ERSA_) +STUB( + "Gtc6TEvZtx4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEEC1ERKSA_) +STUB( + "GtcDpgcdwWE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEE3getEv) +STUB("GtdVS0krX2M", + _ZN7WebCore18TextureMapperLayer16setContentsLayerEPNS_26TextureMapperPlatformLayerE) +STUB( + "GteQs20+nas", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEeqERKS9_) STUB("Gtfab+eP6GM", sceHidControlGetDeviceId) +STUB( + "Gtgc1Q5kqN8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("GthClwqQAZs", _ZNKSt14error_category10equivalentEiRKSt15error_condition) +STUB("Gtly3NhVKN4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEdeEv) +STUB( + "GtoP6-JItWs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEED2Ev) +STUB("Gtsl8PUl40U", _ZTVSt8numpunctIwE) STUB("GtuZGmN-tKw", sceNpSessionSignalingCreateContext) +STUB( + "Gtx9uPdbaxI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEppEi) +STUB("GtzBdoUBMuc", _ZN12video_parser16cVideoContentMp4C2EPNS_18cMp4FFLHndlManagerE) +STUB("Gu4NynMMIE4", _ZNK7WebCore20DeprecatedCSSOMValue12cssValueTypeEv) +STUB("Gu7yAM5pHW0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEE7add_refEv) +STUB("GuGxzhc35rM", + _ZN7WebCore11MediaPlayer26setTextTrackRepresentationEPNS_23TextTrackRepresentationE) +STUB("GuIr1eWRunc", WKPageSetRubberBandsAtRight) +STUB( + "GuL--Yalh2w", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEEcvbEv) +STUB("GuLJLDkyoYQ", WKPageSetAdClickAttributionOverrideTimerForTesting) STUB("GuPIeil94Pc", sceDataTransferTargetAbortPwrReq) +STUB("GuWdK+yg4ho", _ZNK3sce2Np9CppWebApi7Matches2V118CreateMatchRequest17getNpServiceLabelEv) STUB("GuchCTefuZw", sceAmprCommandBufferDestructor) +STUB( + "GuctNCREPIc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEEC1ERKSA_) +STUB( + "Gue5Kw4juDk", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectator28setxPsnAcceptPlatformNamePs5ENS5_25XPsnAcceptPlatformNamePs5E) STUB("GufC+PBbxxA", sceFsISSchedStatDescriptor) +STUB( + "Guhn7Rd4Qeg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE21intrusive_ptr_add_refEPS9_) +STUB("Guk9aLNk+yE", _ZN9Inspector27LayerTreeFrontendDispatchernwEm) +STUB("GupZbXE8ZRQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEC2ERS7_) +STUB("GuruEy9Q-Zk", _ZN3sce2np3ipc17ServiceIpmiClient17invokeTermServiceEi) +STUB( + "Gusrqf8Zz2w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE8copyFromERKS9_) +STUB("GutQ9FSUsSw", _ZNK7WebCore18JSHTMLMediaElement7wrappedEv) +STUB("Gv67hJ-YiJQ", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V525ContentInteractiveElement6toJsonERNS_4Json5ValueEb) +STUB("Gv6QUkJPOJg", _ZN7WebCore9HTMLNames9nonceAttrE) +STUB("Gv7U8izfhRE", + _ZN7WebCore24CoordinatedGraphicsLayer10updateTileEjRKNS_17SurfaceUpdateInfoERKNS_7IntRectE) +STUB("GvAwpvKsjPc", WKPageSelectContextMenuItem) +STUB("GvCK+iPaC0s", rgctx_fetch_trampoline_mrgctx_77_p) +STUB("GvCeMmaiecY", uloc_getTableStringWithFallback_67) +STUB("GvDTrCUBj6g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEEC1EPS6_) +STUB("GvDpNf+QLGE", + _ZNK3sce2Np9CppWebApi7Matches2V127ResponseTeamMemberStatistic6toJsonERNS_4Json5ValueEb) +STUB("GvDsz3xfMJs", unumf_formatDecimal_67) +STUB("GvGKMjRb0ck", ucnv_open_59) +STUB("GvGvswb0v34", _ZN3sce4Json14InitParameter2C2Ev) +STUB("GvHRNpJ7Qts", _ZN9Inspector17BackendDispatcher12CallbackBase7disableEv) +STUB("GvKs80R+Ung", PKFree) +STUB( + "GvN07mwMCeA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEneERKS9_) +STUB( + "GvUb-StTQaw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "GvVkUV2JPZE", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeaders24hasXPsnAtomicOperationIdEv) +STUB("GvWrHi5LzyU", _ZN7WebCore11DisplayList8SetStateD0Ev) +STUB("GvYZax3i-Qk", _ZNKSbIwSt11char_traitsIwESaIwEE5_XranEv) +STUB("GvcpIsKd29g", _ZN3sce7Toolkit2NP2V212NetworkUtils7Request16GetBandwidthInfoC1Ev) +STUB( + "GvgI2wpHUyE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEEcvbEv) STUB("GviyYfFQIkc", sceGnmGetCoredumpAddress) +STUB("Gvofk1RGzaM", uscript_getName) +STUB("Gvp-ypl9t5E", _ZTVSt13bad_exception) STUB("GvqPsPX4EUI", sceSystemStateMgrTickPartyChat) +STUB("Gvt+VlBbE1M", + _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead21searchAttributesIsSetEv) +STUB("GvwE97PtrZY", WKWebsiteDataStoreSetStatisticsGrandfatheringTime) +STUB("GvxTh5+CttM", _ZN3sce7Toolkit2NP2V24Core11RequestBaseaSERKS4_) +STUB("GvyNJ7hiYcE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEC2ERS7_) +STUB( + "Gw+aYsgyE4U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEC1Ev) +STUB( + "Gw2UxudKi+s", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB( + "Gw5Vza07VAM", + _ZN7WebCore14DocumentLoader31fromTemporaryDocumentIdentifierEN3WTF16ObjectIdentifierINS_22DocumentIdentifierTypeEEE) STUB("Gw6S4oqlY7E", sceGameLiveStreamingSetGuardAreas) +STUB("Gw6h7XvgsVo", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEEC1ERS6_) STUB("Gw7yn0CEmv8", _sceUltReaderWriterLockOptParamInitialize) +STUB("Gw8K-Ibg-QM", monoeg_g_timer_elapsed) +STUB("Gw9B-uN5iFw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEEC2EPS5_PNS2_10LibContextE) +STUB("GwDT4g7lgEk", _ZN3sce2Np9CppWebApi6Common6VectorIfE21intrusive_ptr_sub_refEPS4_) STUB("GwFVF2KkIT4", sceHmdInternalIsCommonDlgMiniAppVr2d) +STUB( + "GwFfaMw2aHk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEC2EPS6_PNS2_10LibContextE) +STUB("GwFhWxamXuQ", _ZN12video_parser13cVideoMetaVWG10getGPSInfoEPNS_11VpGPSInfo_tE) +STUB( + "GwWn958m6g4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEED1Ev) +STUB( + "GwZbACFChDY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("GwfKLihv7-o", _ZN7WebCore36visiblePositionForPositionWithOffsetERKNS_15VisiblePositionEi) +STUB("GwhI3go+ZZY", WKBundlePageDidExitFullScreen) +STUB("GwkxP7923yc", + _ZN7WebCore12SettingsBase20setCursiveFontFamilyERKN3WTF10AtomStringE11UScriptCode) +STUB( + "Gwlmsi45l74", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "GwlvBbuxFss", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEaSERKS7_) +STUB("Gwm+Kgely-s", mono_aot_Sce_Vsh_DataTransferjit_code_start) +STUB("GwpODXE2OFk", _ZN7WebCore17FullscreenManager17didExitFullscreenEv) +STUB("GwqphWHl2lQ", ztrans_getStaticClassID_67) +STUB("GwtdQhe3AUM", WKWebsiteDataStoreStatisticsClearThroughWebsiteDataRemoval) +STUB("Gwuoupmfe8Q", uprv_trunc) +STUB("Gx+EYbwlmE0", mono_assembly_load_from) +STUB( + "Gx14Ks78kyM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEC1ERKS8_) +STUB( + "Gx3gkm05HdQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEEC1EPS9_PNS2_10LibContextE) STUB("Gx6XB3Cf5KY", sceLibcFopenWithFH) STUB("GxAF6y9l98M", sceFiosArchiveGetDecompressorThreadCount) +STUB("GxApoYad2zY", _ZN7bmalloc29StaticPerProcessStorageTraitsINS_9DebugHeapEE7Storage8s_objectE) +STUB( + "GxDlxgJNRIg", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions9setfieldsENS1_6Common12IntrusivePtrINS6_6VectorINS6_6StringEEEEE) +STUB( + "GxFIkkvE8U8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEE11release_refEv) +STUB( + "GxJJu4ykIF8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEE11get_deleterEv) +STUB( + "GxKgxfeeMXU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEC2ERKS7_) +STUB("GxL+C51Fo5A", ufieldpositer_next_59) +STUB("GxLRCIuSI2M", _ZN7WebCore11MediaPlayer17supportsKeySystemERKN3WTF6StringES4_) +STUB("GxLWibfli9A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEaSERKS7_) +STUB("GxPUre7bkuE", delegate_virtual_invoke_6_p) +STUB( + "GxSTsMB0WyE", + _ZN3sce2Np9CppWebApi7Matches2V133RequestTemporaryCompetitiveResult14setTeamResultsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_27RequestTemporaryTeamResultsEEEEE) +STUB( + "GxUGTIVTBRc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEeqERKS9_) +STUB("GxVDSv5dIws", _ZN7WebCore28topPrivatelyControlledDomainERKN3WTF6StringE) +STUB("GxYlcKD-B44", _ZN15AbstractStorage12LocalStorageD0Ev) +STUB( + "GxbOLs+UBS0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("Gxk-Wt0tp-0", jpeg_idct_1x1) +STUB("GxotrjFiHnc", JSObjectMakeConstructor) STUB("GxqMYA60BII", sceUserServiceSetGlsCameraBrightness) +STUB( + "GxrbTKK3MqE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEdeEv) +STUB("Gxt5BB8ahXg", _ZN7WebCore4Page16setActivityStateEN3WTF9OptionSetINS_13ActivityState4FlagEEE) +STUB( + "GxuVQ-yNLX4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEEaSERSA_) +STUB("GxypSl6NUwI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS19FriendsDataStatusesEE3getEv) +STUB("Gy--AnYjtr8", WKContextSetMemoryCacheDisabled) STUB("Gy0ReOgXW00", sceAudioOutSetPortConnections) +STUB( + "Gy0THFJm33w", + _ZNK3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsSearchRequestBody6toJsonERNS_4Json5ValueEb) +STUB( + "Gy1czU50EBI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEC1EPNS2_10LibContextE) +STUB( + "Gy2iRxp3LGk", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERf) +STUB("Gy3nDLxHAaM", _ZN7WebCore14JSVoidCallbackD1Ev) +STUB("Gy50gCK06Xk", _ZNK3sce2np13JsonArrayImpl5CloneEP14SceNpAllocator) +STUB("Gy96Dui8SfM", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIjE21intrusive_ptr_sub_refEPS4_) +STUB( + "GyF5K3aiwPM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE8copyFromERKS9_) +STUB("GyFZR4d5pHg", _ZN10Deprecated25ScriptCallArgumentHandlerD2Ev) STUB("GyI2f9yDUXM", sceNpMatching2GetUserInfoListA) +STUB("GyKvp1lgCFw", RemotePlayNotifyUserDelete) +STUB("GyQu9uZuDXQ", WKContextSyncLocalStorage) +STUB( + "GyUwGzE5Rko", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEixEm) +STUB("GyV5w1FsExg", _ZThn96_NK7WebCore16HTMLInputElement17validationMessageEv) +STUB( + "GyVmPPMYRA4", + _ZN7WebCore12EventHandler17scrollRecursivelyENS_15ScrollDirectionENS_17ScrollGranularityEPNS_4NodeE) +STUB( + "Gyf1CAJYGhM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEC2EPNS2_10LibContextE) +STUB("GyfIYhv4qX8", _ZNK3sce2Np9CppWebApi6Common6VectorIiE4sizeEv) +STUB( + "GyjF24A1P9I", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "GyntQGIPSnQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEE3getEv) +STUB("GyrT4pmbp1I", mono_aot_Sce_Vsh_PsnMessageUtilunbox_trampoline_addresses) +STUB("GyvUQ674UvQ", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEEC1ERKS6_) +STUB("Gz+I4uxmv7M", BN_mod_inverse) STUB("Gz1rmUZpROM", sceNpTrophy2CreateHandle) +STUB("Gz7fsv9TEzM", _ZN7WebCore27outputConstraintSubspaceForERN3JSC2VME) +STUB( + "Gz9Wi+38KKE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEC1ERKS7_) +STUB( + "GzCPQPkj8hw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("GzDZo0Jo33k", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEEdeEv) +STUB( + "GzEOnByIEHU", + _ZN3sce7Toolkit2NP7Ranking9Interface19displayRangeOfRanksEPKNS1_19RangeOfRanksRequestEPNS1_9Utilities6FutureINS1_15RankInformationEEEb) +STUB( + "GzF5kkWHxeg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEC1EPNS2_10LibContextE) +STUB( + "GzFDxECF+6I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE3endEv) +STUB( + "GzO47PsldK8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEE11release_refEv) +STUB( + "GzX9-kspZUs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEdeEv) +STUB("GzaGT-nX+vk", _ZN3WTF14FileSystemImpl29makeSafeToUseMemoryMapForPathERKNS_6StringE) +STUB("Gzah1AMZDS8", _ZN4IPMI4impl10ServerImplC2Ev) +STUB( + "Gzc9Wli7dXI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi10uploadDataEiRKNS4_42ParameterWithBinaryRequestBodyToUploadDataERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_22UploadDataResponseBodyEEENSA_INS4_25UploadDataResponseHeadersEEEEE) +STUB("GzcqLy9vAYY", WKSerializedScriptValueDeserialize) +STUB("GzfIPAecUW4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData13unsetobjectIdEv) +STUB("GzflMHP-8EQ", mono_aot_Sce_Vsh_EventServiceWrappermethod_addresses) +STUB("GzhXaAN+uYw", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error10getMessageEv) +STUB("GzpH26DPgkY", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_19WordFilterSanitizedEE3getEv) +STUB( + "GzqrUd4brhA", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody16setMaxSpectatorsERKi) +STUB("H+0E2sFenKo", mono_debug_lookup_method_addresses) STUB("H+3rEYCIICE", sceUpsrvUpdateCheckCreateHandler) +STUB("H+8UBOwfScI", __powidf2) +STUB("H+BMUU6oC8s", _ZN7WebCore32serializationForRenderTreeAsTextERKNS_5SRGBAIfEE) +STUB("H+ED9TvVwUQ", _ZNK7WebCore20FontAttributeChanges18createEditingStyleEv) +STUB( + "H+FunD5qAp0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEEC2ERSA_) +STUB( + "H+N9ndJD8v8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEED2Ev) +STUB( + "H+Nu+RWBkuc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE8copyFromERKS9_) +STUB( + "H+OfZxdLCM4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEixEm) +STUB("H+RES7B8vBM", + _ZN3sce2Np9CppWebApi14SessionManager2V131JoinedPlayerSessionWithPlatform12setSessionIdEPKc) +STUB("H+T2VJ91dds", _ZNSt8numpunctIwEC1EPKcmb) +STUB( + "H+X8eVl7ccE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEmmEv) +STUB("H+Ywz5Grgsk", _ZN3sce7Toolkit2NP2V210Tournament18OneVsOneTournamentaSERKS4_) +STUB( + "H+a36gZrPls", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE21intrusive_ptr_sub_refEPS9_) STUB("H+bqFwVYz6M", sceGnmSysEnableSubmitDone45Exception) +STUB( + "H+jk3RlHsDQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEE7get_refEv) +STUB( + "H+kgNA1n6kA", + _ZN9Inspector15AsyncStackTrace6createEON3WTF3RefINS_15ScriptCallStackENS1_13DumbPtrTraitsIS3_EEEEbNS1_6RefPtrIS0_NS4_IS0_EEEE) +STUB("H+oM6blpPU8", AsyncGetCallTrace) +STUB( + "H+qricroNsI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB( + "H+xN7NKoyu0", + _ZN7WebCore10FontHandleC2EON3WTF3RefINS_12SharedBufferENS1_13DumbPtrTraitsIS3_EEEENS_4Font6OriginEfbb) STUB("H-7tWq8gfKs", sceCameraGetCalibDataFromDeviceForEve) +STUB( + "H-8KnjfX5Us", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEdeEv) +STUB("H-9iQYaRXDo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEEC1ERKS7_) +STUB( + "H-BjaManDHw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEC1EPKS8_) +STUB( + "H-C6pEJfVyA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "H-CAGT3ua+U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEC2Ev) STUB("H-FNq8isKE0", sceFontWordsFindWordCharacters) +STUB("H-G7WrXqsZE", _ZN7WebCore6Editor28updateEditorUINowIfScheduledEv) +STUB( + "H-I2JYFLDcI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEC1EPS8_) +STUB( + "H-IgnXJ5380", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser9getfieldsEv) +STUB( + "H-IhV9Kwycc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEC2EPNS2_10LibContextE) +STUB( + "H-JdSW6DwhY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE8copyFromERKS9_) +STUB("H-LpvQe2GB0", _ZNK7WebCore17HTMLLegendElement4formEv) +STUB( + "H-OxZieKYKs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("H-PxK0DNH70", _ZN7WebCore20PasteboardWriterDataC2Ev) +STUB("H-QeERgWuTM", putc_unlocked) +STUB("H-Soj+zinYk", mono_aot_Sce_PlayStation_Imeunbox_trampoline_addresses) +STUB("H-TDszhsYuY", _ZTVSt7codecvtIwc9_MbstatetE) STUB("H-WaabqfU-I", sceDebugKillProcess) +STUB( + "H-YRL0+Nin4", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot8getlimitEv) +STUB( + "H-a6zg9lvcI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE6resizeEj) +STUB( + "H-enG6bYAaM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEneERKS9_) +STUB("H-g83ExS6KE", _ZN3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayerD1Ev) +STUB("H-gEkxHy3s8", _ZNK7WebCore15ActiveDOMObject18hasPendingActivityEv) +STUB("H-jGYRkbVE4", WKPreferencesSetSubpixelAntialiasedLayerTextEnabled) +STUB("H-n4J3+aI6o", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V223FilterProfanityResponseC2EPNS1_6Common10LibContextE) +STUB("H-q1DcxO7HM", Java_java_awt_GnmGraphicsDevice_getIDstring) +STUB( + "H-rTiw3vmcU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEEC1ERSA_) +STUB("H02lfd0hCG0", SSL_sendAlert) STUB("H06KcilGIfI", scePerfPmcNbGetCounter) +STUB( + "H07Qu9DRAmA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "H09rWtKGUXU", + _ZN3sce2Np9CppWebApi14SessionManager2V136GetPlayerSessionsResponseBodyFactory7destroyEPNS3_29GetPlayerSessionsResponseBodyE) +STUB( + "H0ACSwvTx+8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEEC1ERSA_) +STUB("H0B1Zm47424", + _ZN3sce2Np9CppWebApi14ConnectAccount2V215AccountLinksApi28ParameterToDeleteAccountLinkD2Ev) +STUB("H0BpQ7MGQbw", _ZN3sce2Np9CppWebApi6Common6VectorImE6insertENS2_8IteratorImEERKmRS6_) +STUB("H0CXchtam5k", _ZNK7WebCore8FormData7flattenEv) +STUB( + "H0EkgPT8-b0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE8pushBackERKS8_) +STUB( + "H0ErG8LW9rg", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("H0FQnSWp1es", _Deletegloballocale) +STUB("H0GlNSfrsT0", _ZN7WebCore9HTMLNames10actionAttrE) +STUB("H0LXPH+m+XA", _ZNK3WTF8JSONImpl10ObjectBase4findERKNS_6StringE) +STUB("H0NwmJX8SOA", __libunwind_Unwind_DeleteException) +STUB( + "H0PGwTexYG0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "H0RU4h2U0sk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("H0UUYsOvZUA", rgctx_fetch_trampoline_rgctx_108) +STUB("H0W98kDHCPE", _ZN3sce7Toolkit2NP2V212EventsClient12EventDetails21MAX_SIZE_REQUIREMENTSE) +STUB("H0WTMJD9+jM", JSGlobalContextSetRemoteInspectionEnabled) +STUB("H0XjNhflED4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEixEm) +STUB( + "H0ZS0dFIzWU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEptEv) +STUB( + "H0ZfkK4WHJM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEEC2ERSA_) +STUB("H0a2QXvgHOk", _ZNSt10moneypunctIwLb1EEC2ERKSt8_Locinfomb) +STUB("H0aqk25W6BI", _ZTISt10bad_typeid) +STUB("H0avAuaZfOg", mono_aot_Sce_Vsh_Messagesjit_code_start) +STUB("H0cM2rlQfIE", mono_method_desc_new) +STUB( + "H0eljOZCGnk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEE7add_refEv) +STUB("H0gi2nUt5vE", + _ZNK3sce2Np9CppWebApi14SessionManager2V122GameSessionPushContext6toJsonERNS_4Json5ValueEb) STUB("H0hj8V6fJwk", sceKernelGetQafGenerationForRcmgr) +STUB("H0jxp-CXk3o", _ZN9Inspector21DOMFrontendDispatchernwEm) +STUB( + "H0kHifttkdI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB("H0kyPvsDk5Y", bemp2sys_logprintf_getlevel) STUB("H0mJnhKwV-s", sceFontFtSupportPcf) STUB("H0n1QHWdVwQ", sceNpIntGetNpTitleId) +STUB("H0pVDvSuAVQ", getchar_unlocked) +STUB("H0qFect9wrY", rgctx_fetch_trampoline_mrgctx_88_p) +STUB("H0y1rhGqJ7Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEcvbEv) +STUB("H0yW7HkbWzI", PSNowSetSettings) STUB("H0zRqu+IAsw", sceCesRefersUcsProfileCp1253) +STUB( + "H134UgcuIw4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("H1HqUgxuDy0", + _ZNK3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator14getCustomData1Ev) +STUB("H1Hy3q7Jtao", mparams .4) +STUB("H1R+2GwNikg", _ZNK3sce2Np9CppWebApi6Common6VectorINS2_6StringEE8capacityEv) STUB("H1VDOoibLBg", sceVorbisDecBitrate) +STUB("H1bArJPagV0", getservbyname) +STUB("H1cGFcWt0I0", + _ZN3sce2Np9CppWebApi11UserProfile2V125GetPublicProfilesResponse8fromJsonERKNS_4Json5ValueE) STUB("H1fYQd5lFAI", sceCompanionUtilTerminate) +STUB("H1jYaeQshic", _ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody13unsetObjectIdEv) +STUB( + "H1kfG0ZrXVM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "H1lfHwvYbhM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEE11release_refEv) +STUB("H1oe++DEiaM", unum_getSymbol_67) +STUB("H1p9Bd5xQeQ", WKPreferencesGetCustomPasteboardDataEnabled) +STUB("H1rc-rHCrrA", _ZN3WTF7RunLoop21initializeMainRunLoopEv) +STUB("H1sJExU7jt8", __sanitizer_update_counter_bitset_and_clear_counters) +STUB("H1vOTAqYBbM", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V16StatusEEC1Ev) +STUB( + "H1yb41h8kMs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "H20O5E-KBzU", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V230FilterProfanityResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_23FilterProfanityResponseEEE) +STUB("H254w-gIJpc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEE21intrusive_ptr_sub_refEPS5_) +STUB("H26cWBXW184", ucase_toFullTitle) +STUB("H290E4pgRHo", _ZN7WebCore7Element18getAttributeNodeNSERKN3WTF12AtomicStringES4_) +STUB("H2EuchM-d64", udata_open_67) +STUB( + "H2F--L0yCOo", + _ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody16unsetCustomData2Ev) +STUB("H2HLRQerr+g", _ZN4IPMI4impl10ClientImplD1Ev) +STUB("H2KGT3vA7yQ", + _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecx) +STUB("H2LmrUCPD40", WKPreferencesGetJavaScriptRuntimeFlags) +STUB( + "H2NiOlCtS7s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE10setContextEPNS2_10LibContextE) +STUB( + "H2PYJoK0GhU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE8pushBackERKS8_) +STUB("H2QD+kNpa+U", __inet_ntoa_r) +STUB("H2S3lRfnOrc", _ZN3sce7Toolkit2NP2V24Auth8AuthCode5resetEv) +STUB( + "H2TE61FKOUI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEdeEv) STUB("H2TzUB5dpJw", sceNpTrophy2SystemCreateHandle) STUB("H2a+IN9TP0E", scePthreadSemTrywait) +STUB( + "H2apITLaEek", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEC2Ev) +STUB("H2e8t5ScQGc", __cxa_finalize) +STUB("H2eFItdG+uk", _ZN3sce7Toolkit2NP2V212ActivityFeed13UsersWhoLikedC2ERKS4_) STUB("H2f6ZwIqLJg", sceSystemStateMgrNotifySystemSuspendResumeProgress) +STUB("H2oBJVmx0XQ", WKBundleHitTestResultCopyAbsoluteImageURL) +STUB("H2rVpzoGwEA", _ISO2022Data_67) +STUB("H2ypFp05YKU", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEEppEv) +STUB( + "H32OB1-nHY8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSD_ESD_) STUB("H336BO4+kP4", sceNpGriefReportReadLfpsCommentFile) STUB("H33CwgKf4Rs", sceNpManagerIntGetUserIdByOnlineIdSdk) +STUB("H33ge+SDjlI", UCNV_TO_U_CALLBACK_SUBSTITUTE) +STUB("H35ORo78mlA", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_23NpSessionInvitationInfoEE7addressERS3_) +STUB("H35UsHYlhB4", _ZN3sce2np3ipc17ServiceIpmiClient13CreateRequestEPiiPKvm) +STUB("H35mHjMeOUk", mono_class_init) +STUB( + "H36dFphjSmA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEC2EPS8_) +STUB("H39CJdK96pU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEmmEv) +STUB("H3AtFkB+DmM", _ZN7WebCore18JSHTMLInputElement11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("H3Kr9gOGCwk", _ZNK3sce2Np9CppWebApi7Matches2V119RequestMatchResults20getCompetitiveResultEv) +STUB("H3LD-9ATHlY", WKPreferencesGetPaintTimingEnabled) +STUB( + "H3P9si43yHM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEmmEi) +STUB( + "H3Q4sSPgwZA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEEC1ERSA_) +STUB("H3Sisa6bSSU", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEE3getEv) STUB("H3Uc4VqAD90", scePigletAllocateVideoMemory) +STUB( + "H3XsCvF5j2A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEC1EPNS2_10LibContextE) +STUB( + "H3Z5h4l3J18", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEC1Ev) STUB("H3ZiJiKmfHA", sceIduUtilGetCompilationDiscInfo) +STUB( + "H3g9CtcMXpk", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_19UpStreamTransactionIT_T0_EE) +STUB("H3hEYc3w6s4", _ZN3sce7Toolkit2NP2V29Challenge18ChallengeThumbnailaSERKS4_) +STUB( + "H3hodDT1wf4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEC1Ev) +STUB( + "H3mBlx8SSUE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "H3o6Dg-9W20", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEEC2Ev) +STUB( + "H3oY+kG5dio", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("H3pmc6s-Yuw", _ZN7WebCore11JSDOMMatrix14finishCreationERN3JSC2VME) STUB("H3uq7x0sZOI", sceNpTusDeleteNpTitleCtx) +STUB("H3whj7yh+iM", _ZN3sce2np8JsonBoolD1Ev) +STUB("H3xGWuYcrxI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEdeEv) STUB("H4-K+LKFpfc", sceNetApctlInit) +STUB( + "H40e9RfXDPw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEED2Ev) +STUB("H43OUnX46hU", _ZN7WebCore9CookieJar26shouldIncludeSecureCookiesERKNS_8DocumentERKN3WTF3URLE) +STUB("H49qutQi9a0", curl_multi_poll) STUB("H4EXZ9L3p2M", sceCompositorSetMorpheusState) +STUB("H4EfuyCGOsA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEEppEi) +STUB("H4EgMfEASyE", _ZNK7WebCore11RenderLayer19absoluteBoundingBoxEv) +STUB( + "H4Il16X5heo", + Java_java_security_AccessController_doPrivileged__Ljava_security_PrivilegedExceptionAction_2Ljava_security_AccessControlContext_2) +STUB( + "H4IxauuS118", + _ZN3sce2Np9CppWebApi14SessionManager2V124GameSessionPlayerFactory6createEPNS1_6Common10LibContextERKmRK13SceNpOnlineIdPKcSE_PNS5_12IntrusivePtrINS3_17GameSessionPlayerEEE) +STUB( + "H4J2i-RlLD0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE21intrusive_ptr_add_refEPS9_) +STUB("H4MCONF+Gps", wcspbrk) +STUB("H4NI+LIEM2Y", Java_java_io_RandomAccessFile_setLength0) +STUB("H4Xnv4tX730", WKDatabaseManagerSetQuotaForOrigin) +STUB( + "H4YH99UeGXY", + _ZN7WebCore21NetworkStorageSession59didCommitCrossSiteLoadWithDataTransferFromPrevalentResourceERKNS_17RegistrableDomainEN3WTF16ObjectIdentifierINS_18PageIdentifierTypeEEE) +STUB("H4Z3ShBNjSA", SSL_negotiateConnection) +STUB("H4bdJzvPR7U", _ZNK3WTF8JSONImpl5Value8asDoubleERf) +STUB( + "H4c7fSIE4HI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEppEi) +STUB("H4eyE4ez7O4", FT_Get_FSType_Flags) +STUB("H4fcpQOpc08", _ZNSt6locale2id7_Id_cntE) +STUB("H4haJKBliZE", u_strncmp) +STUB("H4iCs-u7khs", searchCommInfoListByKeyAndProtocolNumber) +STUB( + "H4jL77K5brc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEneERKS9_) +STUB( + "H4kZb3sUSGs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEmmEi) +STUB( + "H4o1Rn6YirU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEaSERKS7_) +STUB( + "H4pLicWlzrg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEmmEi) +STUB( + "H4rBpDYuly0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEC1EPS8_) +STUB("H4shQANw1vE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEC2Ev) +STUB("H4uiFzMF7Yc", Java_com_sun_dvb_event_MHPEventQueue_init) +STUB( + "H4vlWuQWtMk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser9terminateEv) +STUB("H4ynxwcDMGg", _ZNK3sce2Np9CppWebApi13InGameCatalog2V515ContainerRating10totalIsSetEv) +STUB("H4zO5E6EFgM", _ZN12video_parser5vpcom22IsExistsRemovableMediaEv) STUB("H4zqFaDhHW4", sceVoiceQoSDeleteRemoteEndpoint) +STUB( + "H5-+7zNsRtY", + _ZN3sce2Np9CppWebApi7Matches2V131RequestCompetitiveResultFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_24RequestCompetitiveResultEEE) STUB("H51PINVcMM8", sceNpManagerIntTermInternal) +STUB( + "H52ryDw6af4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE7reserveEi) +STUB( + "H5472PHYSfQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) STUB("H54cSDvjryI", sceKernelIsGenuineKratosCex) +STUB( + "H54exsQrdEo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEEaSERSA_) +STUB("H57vsYyE0TU", _ZN3sce16CommonDialogUtil6Server6setRunEPvm) STUB("H59T7YvKI5M", sceKernelGiveDirectMemoryToMapper) +STUB( + "H5CUBG4tVMM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEEC2ERKSA_) +STUB("H5CkYadPsXQ", _ZNK7WebCore7Element10clientRectEv) +STUB( + "H5E5peHS8a4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB("H5IByLixeaI", mono_class_get_method_from_name) +STUB( + "H5PuMGya94U", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "H5RWHoogd2Q", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId12unsetifMatchEv) +STUB("H5RZOrnVEP0", _ZNK3IPC15ArgumentDecoder28bufferIsLargeEnoughToContainEjm) +STUB( + "H5UB5ckoSRE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE3endEv) +STUB("H5Ua1dSjKi8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEEC1ERKS7_) STUB("H5WHYRfDkR0", sceNetShowNetstatWithMemory) +STUB("H5ZSRk2716Q", _ZN8meta_gen14ImageRetrieverC2Ev) +STUB("H5d8CbQ8MTc", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_16SessionAttributeEED2Ev) +STUB( + "H5hfZfVoLNA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEmmEv) +STUB( + "H5ibs5CZoQA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEC2Ev) +STUB("H5kLCyRw33Y", psl_registrable_domain) +STUB( + "H5pQxwSKcEw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEaSERS7_) +STUB("H5qpHwHsY3o", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116JoinableUserTypeEEdeEv) +STUB("H5t0P5fgBHU", _ZN7WebCore8Document7appletsEv) STUB("H5yARg37U5g", sceNetCtlGetResultV6) +STUB("H5yWnR-IzaU", + _ZN3sce2Np9CppWebApi7Matches2V120ResponseInGameRoster8fromJsonERKNS_4Json5ValueE) +STUB("H61hE9pLBmU", _ZTSSt9exception) +STUB("H63M1OG9BHs", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIjEppEv) +STUB( + "H640tYMUz+U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEEC2Ev) STUB("H69MYqpNjCc", sceKernelBeginAppMount) +STUB( + "H6ANjVQ4ffU", + _ZN9Inspector21PageBackendDispatcher18getResourceContentElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("H6BxvrQ8JRg", _ZN7WebCore9HTMLNames30onaccessiblescrollintoviewAttrE) +STUB("H6Gu+D3Z7Ek", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEEC1ERS7_) +STUB("H6HfiL+Wk9k", _ZN3JSC22EdenGCActivityCallbackC2EPNS_4HeapE) +STUB( + "H6Lcd89DpHk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEptEv) +STUB( + "H6QMydvpBG0", + _ZN3sce2Np9CppWebApi14SessionManager2V119JoinableUserFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_12JoinableUserEEE) +STUB("H6bGC6sM7+8", _ZN13MsvMetaEditor15getMetaDataInfoEjtt) STUB("H6bIN2qvlxY", sceKernelEventLogPread) +STUB( + "H6btaOLCRg8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEC2EPKS8_) +STUB("H6c49yBe168", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEED1Ev) +STUB( + "H6e-1D02prE", + _ZNK3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead19getFromNonPsnPlayerEv) +STUB("H6i87iJXL8c", _ZN3sce7Toolkit2NP2V23TUS7TusDataD1Ev) +STUB( + "H6oyD1Wl8tw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "H6q4N5ctWQ0", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi21ParameterToLeaveMatch10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_17LeaveMatchRequestEEE) +STUB( + "H6rGzGHIA0w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) STUB("H6sQJ99usfE", sceNpTusGetMultiUserDataStatusForCrossSaveVUserAsync) STUB("H6vHS5cidSA", sceAgcDcbContextStateOpGetSize) +STUB("H6vXNrzeV18", + _ZN3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectator16setJoinTimestampEPKc) STUB("H6wju6uvjmA", sceFiosCacheContainsFileSync) STUB("H6xqSNWg0wM", sceNpIntGetAppType) +STUB( + "H6xtjEuXJ9k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEC1Ev) +STUB("H6yhzXzNmBg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEC2Ev) +STUB("H7-7Z3ixv-w", _ZNSt4_Pad7_LaunchEPKcPP12pthread_attrPP7pthread) STUB("H7-fgvEutM0", sceGnmGetEqTimeStamp) +STUB("H7-xFNWsKqE", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product12versionIsSetEv) +STUB("H75MRAdNg3w", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110TaskStatusEEC2Ev) +STUB("H76Vum22-1Y", _ZN3sce7Toolkit2NP9Utilities6FutureI18SceNpTssDataStatusED2Ev) +STUB("H79hvSjD4-w", _ZN7WebCore11FrameLoader17HistoryController26saveDocumentAndScrollStateEv) +STUB( + "H7OgYdLtOB4", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions9terminateEv) +STUB( + "H7PaYrROi1M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEaSERS7_) +STUB( + "H7QlY2hzWNw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEppEi) +STUB( + "H7SPbHsCEGc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("H7cknGH2DVo", WKBundleNodeHandleCopyDocument) +STUB("H7fGIwrDoyo", _ZN3sce7Toolkit2NP2V28Commerce13CategoryLabelD2Ev) +STUB("H7g8z3ZOLn0", _ZN3sce7Toolkit2NP2V27Session7Request6SearchC2Ev) +STUB( + "H7oc8ONTB0k", + _ZN9Inspector27InspectorFrontendDispatcher7inspectEN3WTF6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsIS5_EEEENS2_INS1_8JSONImpl6ObjectENS6_ISA_EEEE) +STUB("H7ocC6jKOVs", WKBundleFrameContainsAnyFormElements) +STUB( + "H7piX9NmYUc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEcvbEv) STUB("H7rjk3Sc1xI", sceBgftServiceIntPlayGoCheckDiscIniChunksInstall) +STUB( + "H7uZAakbOX4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) STUB("H7uZqCoNuWk", sceAgcDcbPopMarker) +STUB( + "H7zhhYi03JU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB("H8-HSuGeyy0", png_set_read_user_transform_fn) +STUB("H80mgXKj4wo", + _ZN3sce2Np9CppWebApi14SessionManager2V123MemberWithMultiPlatform12setAccountIdERKm) +STUB("H83apoANqa8", uset_addAll_67) +STUB("H843XLhvW90", _ZN3sce7Toolkit2NP2V210Tournament15RegisteredTeamsC2Ev) +STUB( + "H89+F+AQ4Nk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEE7add_refEv) STUB("H896Pt-yB4I", sceAmprCommandBufferWriteKernelEventQueue_04_00) +STUB("H8AprKeZtNg", _Stderr) +STUB("H8Dp8lwh8QQ", glUniform4f) +STUB("H8KVeCoTFeQ", _ZN7WebCore15HTMLLinkElement14setCrossOriginERKN3WTF10AtomStringE) +STUB("H8Ntl4Bm1K8", _ZThn152_NK7WebCore8Document6originEv) +STUB("H8S62po9mYM", _ZN3sce3pss4core8graphics14NativeGraphics20AllocateSystemMemoryEjj) +STUB("H8TYC6jUOxM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEEC1EPNS2_10LibContextE) +STUB("H8U6orIrfzg", _ZN3JSC10Identifier4fromERNS_2VMEi) +STUB( + "H8YYw26YNsI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEE11release_refEv) +STUB("H8cQuFAzgU4", _ZN3sce7Toolkit2NP2V28Presence7Request11SetPresenceC1Ev) +STUB("H8ck5HzoHyY", + _ZN3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession12setSessionIdEPKc) +STUB( + "H8cn48BWv-Q", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEED1Ev) +STUB("H8mJyVVAiOA", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetBoolean8Ev) +STUB( + "H8n8eLcz26w", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetBoolean1Ev) +STUB("H8rCuVuhMOc", mono_btls_x509_verify_param_get_depth) +STUB("H8rNrDvHhVY", _ZN7WebCore11DisplayList8DrawRectD1Ev) +STUB("H8rrKGteMnA", ucnv_extInitialMatchToU_67) +STUB("H8t5nwtjE7o", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE5clearEv) STUB("H8teLntGkWs", sceVideoOutRemoveBuffer) +STUB("H8ufT+mZDyM", GetMediaPlaybackInfo) STUB("H8wG9Bk-nPc", sceNpAuthDeleteRequest) +STUB( + "H8xrMgJtk0I", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("H8ya2H00jbI", sin) +STUB("H98NR3TRB+g", _ZN9Inspector22InspectorDebuggerAgent15didRunMicrotaskEv) +STUB("H9A4YognTPU", mono_aot_System_Numericsplt) +STUB("H9Atnn27DDQ", _ZNK3WTF8JSONImpl5Value12toJSONStringEv) +STUB("H9CREnB62Lo", _ZNK7WebCore5Range9firstNodeEv) STUB("H9FTtSJuK3Y", sceVideoOutSysResetZoomBuffers) +STUB( + "H9LPDRr+YHM", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM23AccessibilityProperties7CheckedEEEN3WTF8OptionalIT_EERKNS6_6StringE) +STUB("H9RRA3+Ow28", _ZNK7WebCore19BlurFilterOperationeqERKNS_15FilterOperationE) +STUB( + "H9RbjogD+00", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEdeEv) +STUB("H9TOtqlqmHM", FcPatternFilter) +STUB("H9V5-dRsnXI", _ZN3sce2Np9CppWebApi13InGameCatalog2V520ContainerRatingCountD1Ev) STUB("H9VH6VZBsSY", sceVideoCoreInterfaceSetFunctionTableExt) +STUB("H9bwCsWw7LA", cairo_mesh_pattern_curve_to) +STUB("H9d5-BJUf-k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEED2Ev) +STUB("H9dlkTGyCMc", _ZN7WebCore11DisplayList22BeginTransparencyLayerD0Ev) +STUB("H9hFHYFmT6A", _ZNK7WebCore4Node11isEqualNodeEPS0_) +STUB("H9kEqtoTXGs", _ZN7WebCore19JSDOMMatrixReadOnly14finishCreationERN3JSC2VME) +STUB("H9kJybk7-NA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEEaSERKS7_) +STUB( + "H9kRqk5Kb-s", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE3endEv) +STUB("H9llogdwvjQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEEC1EPKS6_) +STUB("H9lpugbKV5U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEaSERKS7_) +STUB( + "H9mBVykpTHY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEppEi) +STUB("H9vHkdES8OE", + _ZN7WebCore22EmptyFrameLoaderClient26shouldUseCredentialStorageEPNS_14DocumentLoaderEm) STUB("HA1Ldbi3lPY", sceUltSemaphoreTryAcquire) +STUB("HA2IEgsyebU", _ZNK7WebCore12SharedBuffer4sizeEv) +STUB( + "HA5dJhA7v1I", + _ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead23unsetSupportedPlatformsEv) +STUB("HA9E2aOVFWc", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData12unsetifMatchEv) +STUB( + "HAAl6-rDNLU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEptEv) +STUB("HAJOooeViqw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEEC1ERS6_) +STUB( + "HAMLGvq8kqM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEE7add_refEv) +STUB("HASl4yI9dwE", _ZN4Manx8X509cinf7versionEv) +STUB( + "HAT6DHzVIOk", + _ZZSt9MakefacetISt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEESt8_LocinfoERT_T0_E3buf) +STUB( + "HAT7GAPn4ps", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEC1Ev) +STUB( + "HATp80TkxeI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEEC1ERKSA_) +STUB("HAYM4T9AB7A", _ZN7WebCore9HTMLNames10nowrapAttrE) +STUB("HAZeNLuiGFY", GCC_except_table555) +STUB("HAbNcbgkyrk", ucnvsel_serialize_67) +STUB( + "HAcEf0UsWM0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("HAfbPkozGjI", _ZNK7WebCore16HTMLImageElement25hasEditableImageAttributeEv) +STUB("HAgSIq7b2U0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE8copyFromERKS7_) STUB("HAiWUEwEfGo", sceLoginDialogGetStatus) +STUB( + "HAmRaFJN1oI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEptEv) STUB("HAr740Mt9Hs", sceHmdInternalMmapGetSensorCalibrationData) +STUB("HAxW6DIwYBU", _ZN3JSC9constructEPNS_14JSGlobalObjectENS_7JSValueERKNS_7ArgListEPKc) +STUB( + "HAzQR0wRKU8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEED2Ev) +STUB("HB0pGjN75DY", _ZN12video_parser16cVideoContentMp419releaseMetaInstanceEPNS_10iVideoMetaE) +STUB("HB27YbLPkU4", _ZNK3JSC8JSObject8toStringEPNS_14JSGlobalObjectE) +STUB("HB406sTEdyM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEE11release_refEv) STUB("HB57CbhjcLw", sceDebugReadEvent) +STUB("HB5ddDjK+Lc", _ZN12video_parser17cVideoProfilerMp410initializeEv) +STUB("HB6rCHl8fMs", _ZN3WTF6StringC1EPKDs) +STUB( + "HB9YEI2W3fM", + _ZNK3WTF8JSONImpl10ObjectBase9getObjectERKNS_6StringERNS_6RefPtrINS0_6ObjectENS_13DumbPtrTraitsIS6_EEEE) STUB("HBA-tCWUXP8", sceShellCoreUtilPreNotifyOfSharePlay) STUB("HBEICuPh5r4", scePerfTraceEnable) +STUB( + "HBP-AXD9hoM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEEdeEv) +STUB( + "HBQGeNlrDzw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEptEv) +STUB( + "HBQIAp4xwMU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEE11release_refEv) +STUB("HBWarJFXoCM", CERT_extractSerialNum) +STUB( + "HBaMh7x1vsc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEEC1ERSA_) +STUB("HBdr-hevL5E", AnnotatePCQPut) +STUB( + "HBhAuTlMK50", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEC2EPS8_) STUB("HBkUky2PZPA", sceKernelCloseSema) +STUB( + "HBlLYbtai0g", + _ZN8meta_gen11MsvPromoter27setKeyValue_TBLAVC_DurationENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB("HBmQvWiq4pg", WKDictionarySetItem) +STUB( + "HBmrpoDGE6Y", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB( + "HBqSW+65IEM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEC1ERS7_) +STUB("HBqaZUMi6wU", SSL_CIPHER_get_name) STUB("HBsPvq47HNA", sceKernelSetDipsw) +STUB("HBvsEAbjkLg", _ZN3JSC7Symbols36GeneratorResumeModeNormalPrivateNameE) +STUB( + "HBy6G6Kg3o0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEE5resetEPS8_) +STUB( + "HC3YGaD8Emw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEEC1ERSA_) +STUB("HC5iwpmehr8", mono_aot_Sce_Vsh_GriefReportStorageunwind_info) +STUB("HC8vbJStYVY", at_quick_exit) +STUB("HCB1auZdcmo", _ZNSt10filesystem16_Last_write_timeEPKc) +STUB( + "HCBJrafmCOk", + _ZN9Inspector20DOMBackendDispatcher13highlightNodeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("HCBMosgePkw", _ZN7WebCore21NetworkStorageSession21defaultStorageSessionEv) STUB("HCD46HVTyQg", sceNetCtlConnectConfIpcInt) +STUB("HCDMZrzAEXs", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching6WorldsEED1Ev) +STUB( + "HCHItuHfFpI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEC2Ev) +STUB("HCM1EwLWQf8", _ZNK7WebCore16HTMLMediaElement5endedEv) +STUB( + "HCNRMaapuRk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("HCOb-FMNF18", _ZN7WebCore21MediaRecorderProviderdaEPv) +STUB("HCT7t94m4Fo", _ZN3sce7Toolkit2NP2V212EventsClient12EventDetails5resetEv) STUB("HCUhvdmryuQ", sceRegMgrDrvDataClose) STUB("HCX2n+I6XnI", sceVrTrackerGetResourceInfo) +STUB("HCYsekMO4e4", _ZN7WebCore5Event9initEventERKN3WTF10AtomStringEbb) +STUB("HCa8i3qeQ1U", _ZN3JSC8DebuggernaEm) +STUB("HCkarS8lSU0", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEED2Ev) +STUB( + "HCpXo+sx0xY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEE7get_refEv) +STUB("HCqUPyoAZqw", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V115CompetitionTypeEEptEv) +STUB( + "HCtnm9nQBTo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEneERKS9_) +STUB( + "HCytjP1sjnU", + _ZN3sce2Np9CppWebApi7Matches2V120RemovedPlayerFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_13RemovedPlayerEEE) +STUB( + "HCzNCcPxu+w", + _ZZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8_GetmfldERS3_S5_bRSt8ios_basePwE4_Src) +STUB("HD+IPUl76Hs", curl_easy_cleanup) +STUB( + "HD-UV895Edc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEneERKS9_) STUB("HD1YKVU26-M", sceAvPlayerPostInit) +STUB("HD6f9VfDe1s", ulpInit) +STUB( + "HD6lesEV7GE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEC1EPKS8_) +STUB("HD9vSXqj6zI", _FXp_subx) +STUB( + "HDBaXEUcJR4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE4sizeEv) +STUB( + "HDEeXzcSMzQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE6resizeEj) +STUB("HDF0+N4Hjhk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEC2ERKS7_) +STUB( + "HDGGH3bZJQc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE4sizeEv) +STUB( + "HDGUB4ZH-Ns", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEEptEv) STUB("HDMHJ9zsCFg", scePlayerReviewDialogClose) +STUB( + "HDNAYRTHrPA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEE11release_refEv) +STUB( + "HDPrJ-Ua6OE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEC1EPS8_) +STUB( + "HDR85PvYfmo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEC2EPS8_) +STUB("HDR9zkTEoJ4", _ZNK7WebCore20ResourceResponseBase8mimeTypeEv) +STUB("HDRkIEPgcMI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEptEv) +STUB("HDSXTb38UlQ", _ZN3WTF8JSONImpl5ValueC1Ei) +STUB("HDU7JAwRLvk", uloc_getBaseName_67) +STUB("HDXDWS6jfSc", mono_aot_platformunbox_trampoline_addresses) +STUB( + "HDeZL1fsvWg", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsers35setxPSNSESSIONMANAGERNONPSNCALLERIDEPKc) +STUB( + "HDecDLDKqw4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEneERKS9_) +STUB("HDjIl2Orp6k", _ZN7WebCore4Page16setCanStartMediaEb) +STUB( + "HDkBnvj83H0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEmmEv) +STUB( + "HDko7k5PnhM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC1ERKSA_) STUB("HDlD-xE1Xuk", sceVrTracker2ResetLocalCoordinateWithPose) +STUB("HDmPAKg4yH8", S1hi) +STUB("HDnBZ+mkyjg", _ZGVNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE) +STUB( + "HDnItyT5UOc", + _ZN7WebCore21SerializedScriptValueC2EON3WTF6VectorIhLm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEESt10unique_ptrINS2_IN3JSC19ArrayBufferContentsELm0ES3_Lm16ES4_EESt14default_deleteISA_EE) +STUB("HDnXvar5Wj0", YGNodeGetInstanceCount) +STUB("HDvFM0iZYXo", __atomic_exchange_2) +STUB( + "HDyA7yg3FfQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEED1Ev) +STUB( + "HE0Yyuvq2OE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE17getNpWebApi2ReqIdEv) +STUB( + "HE5nHpp5-fY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEEdeEv) +STUB( + "HE6vC8yPbUk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEE21intrusive_ptr_sub_refEPS7_) +STUB("HE7f8hdRLc0", _ZN3sce7Toolkit2NP3Sns9Interface13postMessageFbERKNS1_15SnsPostFacebookE) STUB("HE8VNl2+1Fw", sceMatMemoryPoolBatch) STUB("HE93dr-5rx4", sceGameLiveStreamingScreenTerminate) +STUB( + "HEBxolpZWP8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE10setContextEPNS2_10LibContextE) +STUB( + "HEKSxzmT6h4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEC2Ev) +STUB( + "HEOlwniUvog", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEmmEv) +STUB("HEUJxyOmSyM", mono_aot_Sce_Vsh_VoiceMsg_VoiceMsgWrapperjit_code_end) +STUB( + "HEVchwWj+DY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("HEaJwYQw2Xs", WKPluginSiteDataManagerGetTypeID) +STUB("HEdLKMssW34", _ZN7WebCore21JSCSSStyleDeclaration9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("HEeXBdgvJI4", _ZN3sce2np9HttpTransC2EP16SceNpAllocatorEx) +STUB("HEhfkkn7Oyw", _ZN3JSC7Symbols44AsyncGeneratorStateAwaitingReturnPrivateNameE) +STUB("HEnTXfreIvM", _ZN3JSC20PromiseDeferredTimer17hasPendingPromiseEPNS_17JSPromiseDeferredE) +STUB( + "HEo6yqMeXGc", + _ZN7WebCore9FontCache13fontForFamilyERKNS_15FontDescriptionERKN3WTF10AtomStringEPKNS_18FontTaggedSettingsIiEENS_34FontSelectionSpecifiedCapabilitiesEb) +STUB( + "HEoI8fpUPLo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEmmEv) +STUB("HErjm1riB-w", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container9unsetSkusEv) +STUB( + "HF18bUxw3S8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEEcvbEv) +STUB("HF1DRnNs0uk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE8pushBackERKS6_) +STUB( + "HF2YDw+e3Hs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEdeEv) +STUB( + "HF3Vzc154sM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEEdeEv) STUB("HF3YllT3mXU", sceAgcDriverSubmitMultiAcbs) STUB("HF7lK46xzjY", pthread_mutexattr_destroy) +STUB("HFA1p9qRRLw", _ZN3sce7Toolkit2NP2V210Tournament20OneVsOneMatchDetails8deepCopyERKS4_) +STUB( + "HFFJAV05HP4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEmmEv) +STUB("HFHlNjdbknA", _ZN13MsvMetaEditor9readFileXEjPv) +STUB("HFIXBmlQmXI", glBlendEquation) +STUB("HFKE9Vcdt7o", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V18Variable11unsetSlotIdEv) STUB("HFM-KkVMVps", sceTextToSpeechOpenImpl) +STUB("HFNvo+lEynY", ucase_toFullFolding) +STUB( + "HFRIoMrgZQc", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeader35getxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB( + "HFSuY0TCj1Q", + _ZN3JSC26UnlinkedFunctionExecutable4linkERNS_2VMERKNS_10SourceCodeESt8optionalIiENS_9IntrinsicE) +STUB("HFVG5V43-io", fuse_fs_fgetattr) +STUB( + "HFXzZJQKQfk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEC2ERS7_) +STUB("HFaF1BclnSo", WKPageGetContentsAsMHTMLData) STUB("HFcQl9TMcFQ", sceNpEntitlementAccessAbortRequest) STUB("HFd-lpjGxJA", sceUltUlthreadYield) +STUB("HFekJVl58XU", g_ptr_array_sized_new) +STUB("HFhlACkXqNw", _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBodyD2Ev) +STUB("HFmKB6CKa6A", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10setString9EPKc) STUB("HFtbbWvBO+U", sceLibcHeapMutexCalloc) +STUB("HFws8ku--Aw", _ZN7WebCore8Settings18setMinimumFontSizeEi) +STUB("HFxRr3-fCPc", _ZN9Inspector28InspectorScriptProfilerAgentdaEPv) STUB("HGA2SV-Gkq8", sceSystemServiceIsGameLiveStreamingOnAir) STUB("HGDKKtTRpog", sceDebugNoStopOnDLLoad) +STUB( + "HGDKssqdPfY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEE7get_refEv) +STUB( + "HGDO4lITyC4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEEC1ERKSA_) +STUB( + "HGGb71oERVw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEE3getEv) +STUB("HGJK4r+WQFg", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V219WebApiErrorResponseC2EPNS1_6Common10LibContextE) +STUB( + "HGLKnP+0iEo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "HGLbSTtwU1M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEED2Ev) +STUB("HGM8nun6vjw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEEC2ERKS6_) +STUB( + "HGQWVqwU2Fo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEED1Ev) +STUB( + "HGTNe98Tths", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEED1Ev) +STUB( + "HGU4-tgpmbU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "HGVxMYfG08s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEE11get_deleterEv) +STUB("HGZ0DTuCvuQ", + _ZNK3sce3Xml3Dom8Document20getElementsByTagNameENS1_6NodeIdEPKNS0_6StringEPNS1_8NodeListE) +STUB("HGiG9r2w3Zw", _ZNK7WebCore12ChromeClient25shouldPaintEntireContentsEv) +STUB( + "HGqVuA-v4TA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEmmEv) +STUB( + "HGqmRjXSkWY", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification18NewGameDataMessageEE19setCustomReturnCodeEi) +STUB("HGtDYp4ddNE", FcConfigCreate) +STUB( + "HGvQXkDuFX4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEmmEv) +STUB("HGx1Op+9DZI", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_14TrophyGameInfoEE3getEv) STUB("HGxgXwGSAzQ", sceRegMgrLogStart) +STUB( + "HH+XO5ckiBw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "HH-pvuw2v10", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE4sizeEv) +STUB("HH-sRSNiSaU", hb_ot_layout_script_get_language_tags) +STUB("HH0YCx+Kgf4", rgctx_fetch_trampoline_rgctx_39) +STUB("HH1QicGw220", mono_aot_Sce_Vsh_BackupRestoreUtilunbox_trampolines_end) +STUB("HH3KJFVK2Kg", _ZN9Inspector25NetworkFrontendDispatcherdaEPv) +STUB("HH3vHgAU9iM", _ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamRankResult8deepCopyERKS4_) +STUB("HH4lrxyRkro", mono_aot_System_Reactive_Coreunbox_trampoline_addresses) +STUB("HH8uEbhmUbg", SSL_use_PrivateKey_ASN1) +STUB("HH9QG2J5eoI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEED1Ev) +STUB("HHIM-14wEes", mono_aot_Sce_Vsh_Np_Trophyunbox_trampolines_end) +STUB("HHJl--Po-1Y", rgctx_fetch_trampoline_mrgctx_85_p) +STUB("HHKtLpzPl4A", mspace_reallocalign) +STUB( + "HHLMFjjEbW4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEED1Ev) +STUB( + "HHMVTjBTGNA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEE7get_refEv) +STUB("HHPwnrCX3cU", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData12getaccountIdEv) +STUB( + "HHQwieUvA3Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE8copyFromERKS9_) +STUB("HHVYizU41fY", + _ZN3sce2Np9CppWebApi11UserProfile2V125GetBasicPresencesResponse8fromJsonERKNS_4Json5ValueE) +STUB("HHVZLHmCfI4", _ZTSPh) +STUB( + "HHX25jSGnJU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE10setContextEPNS2_10LibContextE) +STUB("HHY+Jr-aBEg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEppEv) +STUB( + "HHaucqQ7S5A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEE11get_deleterEv) +STUB( + "HHbaZGNn2Eo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEE3getEv) +STUB("HHkTUhfZGdo", _ZNK3sce2np14JsonNumberImpl3GetEPl) +STUB("HHkWewj6ikw", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEEixEm) +STUB( + "HHkwt852N5E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE6resizeEj) +STUB("HHnnPwUh7oM", _ZN3WTF12refIfNotNullI6_cairoEEvPT_) STUB("HHo1BAljZO8", sceGnmDisableMipStatsReport) +STUB("HHx-tF5nNvE", WKPreferencesGetDNSPrefetchingEnabled) +STUB( + "HHx2OWEWKKQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE3endEv) +STUB( + "HI+uTLTFpTg", + _ZN3sce2Np9CppWebApi14SessionManager2V161PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_54PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEE) +STUB( + "HI03Ro2yHG8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "HI3hVc7T2D8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE4sizeEv) +STUB( + "HI4KqGUlOUc", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSession9terminateEv) STUB("HI4N2S6ZWpE", scalb) +STUB("HI5k3d99Br4", mono_aot_System_Resources_ResourceManagermethod_addresses) +STUB( + "HI5v9nQUjqg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "HIEF94Rclb4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEC1Ev) STUB("HIImy8uMSUg", sceVisionManagerRequestStoreCameraImgY) STUB("HIO82JX-Ki4", scePerfTraceGetMemoryStats) +STUB("HIS17RbBqtA", coil_gethostbyaddr) +STUB( + "HIUH6bp3NNk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEC2Ev) STUB("HIUdjR-+Wl8", sceFontStyleFrameGetEffectWeight) +STUB("HIWq9DRwkyc", _ZN3JSC8Bindings13RuntimeObject15createPrototypeERNS_2VMERNS_14JSGlobalObjectE) +STUB( + "HIYRdLyw2Yw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEC2Ev) +STUB("HIhqigNaOns", _Inf) +STUB( + "HIjezqCqIfY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEmmEi) +STUB( + "HIkwgAuwsAo", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser8setlimitEi) +STUB("HImvLVPw6oM", _ZN3JSC12JSLockHolderC2EPNS_2VME) +STUB("HIoPdOf0ylg", _ZN7WebCore11MemoryCache18pruneDeadResourcesEv) +STUB( + "HIp-WUW+hk4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEE7add_refEv) +STUB("HIr-aSrUlxw", _ZN3sce7Toolkit2NP2V29Messaging7Request28GetGameDataMessageAttachmentD2Ev) +STUB("HIrgQNzR7JU", _ZNK7WebCore4Page9groupNameEv) +STUB( + "HItO8EAAoL8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEC2Ev) +STUB("HIuzOncLbiw", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku18originalPriceIsSetEv) +STUB("HIvX5HS+SRg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS3_5EmptyEED2Ev) STUB("HIwEvx4kf6o", sceAppMessagingSendMsgToShellCore) +STUB("HIxbMe6Ovi0", mbst) +STUB("HIynUewxYHA", _ZN7WebCore7cookiesERNS_8DocumentERKNS_3URLE) +STUB( + "HIzktHO8SlI", + _ZN7WebCore14SecurityPolicy22generateReferrerHeaderENS_14ReferrerPolicyERKNS_3URLERKN3WTF6StringE) STUB("HJ+KnEHcaxI", sceKeyboardOpen) +STUB( + "HJ0QvgugaxI", + _ZN7WebCore16BlobRegistryImpl27populateBlobsForFileWritingERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16EEERNS2_INS0_18BlobForFileWritingELm0ES4_Lm16EEE) STUB("HJ1n138CQ2g", sceSslDeleteConnection) +STUB("HJ3vdF4LmxM", _ZN7WebCore16MIMETypeRegistry15canShowMIMETypeERKN3WTF6StringE) +STUB( + "HJ4hR9rhoZQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEE11release_refEv) +STUB("HJ60TvRrnOU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10CategoriesEE3setEv) +STUB("HJ8GpRT1aiw", _ZN3sce4Json5ArrayD1Ev) +STUB( + "HJ8veJlCIV8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE8capacityEv) +STUB( + "HJ9TT0xGp4s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEE7add_refEv) +STUB("HJFAd2piPpA", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody9getOffsetEv) +STUB("HJFP+q84cmM", _ZN7WebCore15GraphicsContext10strokeRectERKNS_9FloatRectEf) +STUB("HJK-E0zrL9Y", _ZNK7WebCore10ScrollView22contentsScrollPositionEv) +STUB( + "HJMKfig0dls", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEneERKS9_) STUB("HJMS5pu4dvY", sceDbgKeyboardReadState) +STUB("HJNBnuiBHr0", mono_domain_get_by_id) +STUB("HJPM+fd267g", _ZNK3sce2Np9CppWebApi6Common8IteratorIdEneERKS4_) +STUB("HJQorhtNWoc", _Z20Ime_KbdGetInfoNativemjRN3sce11playstation4core3Ime15ImeKeyboardInfoE) +STUB( + "HJTzzhFQd8g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "HJWtnwEvyko", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEE7add_refEv) +STUB( + "HJbcue7sDt0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEC1EPS6_PNS2_10LibContextE) +STUB("HJc1J6Apg9A", + _ZN3sce2Np9CppWebApi14SessionManager2V118LeaderWithOnlineId8fromJsonERKNS_4Json5ValueE) +STUB( + "HJkkvmeKq5g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEppEi) +STUB( + "HJnMLMuKYkw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEED2Ev) STUB("HJosRn4GUxs", sceNpStopApp) +STUB("HJshvcn63K4", _ZN10Deprecated25ScriptCallArgumentHandlernwEm) STUB("HJt+4x-CnY0", sceNetConfigDelArp) +STUB("HJwsIXNRlos", mono_aot_appmethod_addresses) +STUB("HJxnIyN+xFk", _ZN3sce7Toolkit2NP2V210Tournament10TournamentC2ERKS4_) STUB("HJyZ8CZGVoY", sceSysUtilSendSystemNotificationWithTextRelatedToUser) +STUB("HJz9ZIS7gQI", _ZThn136_N7WebCore16HTMLMediaElement5pauseEv) +STUB( + "HJzgQVwBPhg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEC1EPS8_) STUB("HK-7ir0qAkg", sceContentExportFromFileWithTitleIdList) +STUB("HK0XarL0FJ0", _ZN9Inspector38ScriptProfilerBackendDispatcherHandlerC2ERKS0_) +STUB("HK0gjeXo2eo", u_strFindLast) STUB("HK42UWvTsRE", sceVencCoreQueryMemorySizeEx) +STUB("HK9nVxuq2qU", _ZN3NTF21URLRequestFileMessage6createEv) +STUB( + "HKAsBSaOdsU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEE5resetEPS6_) STUB("HKGLeuWrAvs", sceGpuExceptionAddDebuggerHandler) +STUB("HKHJsLAyXKA", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setBoolean7ERKb) +STUB( + "HKI32TUjrvk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE8capacityEv) STUB("HKIa-WH0AZ4", sceNetMemoryAllocate) +STUB( + "HKNLNiIM8TY", + _ZN7WebCore32WorkerThreadableWebSocketChannelC2ERNS_17WorkerGlobalScopeERNS_22WebSocketChannelClientERKN3WTF6StringERNS_14SocketProviderE) +STUB("HKQJY7aViYI", _ZN7WebCore22EmptyFrameLoaderClient23createNetworkingContextEv) +STUB( + "HKQYk5Bypgw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEEaSERKSA_) STUB("HKZmLmGfkd4", sceLncUtilNotifyCoredumpRequestProgress) +STUB( + "HKg0cUj4hkU", + _ZN7WebCore8Document16createTreeWalkerERNS_4NodeEmON3WTF6RefPtrINS_10NodeFilterENS3_13DumbPtrTraitsIS5_EEEEb) +STUB("HKh4UIbMSeA", _ZN3sce7Toolkit2NP2V210Tournament6EventsC1Ev) +STUB("HKjYBSCx3mY", cairo_scaled_font_get_font_matrix) +STUB("HKl8qYMHUxs", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToCancelTicket9terminateEv) +STUB("HKlxqXa8a6Y", uprv_isNegativeInfinity_67) +STUB( + "HKmeHsngYAw", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB( + "HKoIypYkD3A", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEixEm) +STUB("HKqPSVj9DAo", upropsvec_addPropertyStarts_67) +STUB("HKsrg+sJBp4", YGNodeStyleGetPadding) STUB("HKu68cVzctg", sceUserServiceSetAccessibilityZoom) +STUB( + "HKvh-Md23Ec", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEC2EPS6_PNS2_10LibContextE) +STUB( + "HKvztOTitWc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEppEv) +STUB("HKzMOsNZfbg", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_25ChallengeBinaryDataResultEEC1Ev) STUB("HL-venrRcnQ", sceNpLookupNetDeleteRequest) STUB("HL11bLUWN4g", sceNpRemotePlaySessionSignalingGetLocalNetInfo) +STUB( + "HL46jWIBhc8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEmmEv) +STUB("HLDcfGUMNWY", __subdf3) +STUB( + "HLI8kKI-Dn4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEED2Ev) +STUB("HLIjDSWSsHM", _ZN3sce7Toolkit2NP2V210Tournament14RegisteredUserC1ERKS4_) +STUB("HLLPd3SKqcw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119SubtaskAvailabilityEEC2EPS6_) STUB("HLQfohD2YuE", sceNpManagerIntAccountId2UserId) STUB("HLUSF4Oi7Pc", scePthreadTimedjoin) +STUB("HLewWCB7FWA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEED1Ev) +STUB( + "HLhjqvTDDOM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEEC1ERKS9_) +STUB( + "HLjJwksDE8E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("HLqXAx0lmUs", __Fail_s) +STUB( + "HLsS3rDJumw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEE3getEv) STUB("HLwz1fRIycA", sceNpTrophyGetGameIcon) +STUB( + "HM-P-1QRyOw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEmmEi) +STUB( + "HM-gv3A1Iz0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEC2Ev) +STUB( + "HM1ORzVC2uc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("HM22unUzzGI", g_ptr_array_remove_index) STUB("HM2shAIRvv4", sceUserServiceGetSaveDataAutoSync) +STUB("HM4DjXIBtGA", mono_aot_System_ServiceModel_Webjit_code_start) +STUB("HM5P36b7Ldo", _ZNK7WebCore6Editor30applyEditingStyleToBodyElementEv) +STUB( + "HM6-FaBXwHE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("HM8MCmQ6pAI", mono_config_for_assembly) +STUB( + "HMDfNwkwTiE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEED1Ev) STUB("HMEQbrlRmL0", ScePsmMonoConfigParse) +STUB( + "HMEvP18jwH4", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "HMIeQqMyKok", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEC1EPKS8_) +STUB("HMRMLOwOFIQ", _Atomic_store_4) +STUB("HMSEiFcus9U", _Z37sceGpuDebuggerEnableTargetSideSupportv) +STUB("HMSfP0oCnvY", _ZN3JSC19HeapSnapshotBuilderC1ERNS_12HeapProfilerENS0_12SnapshotTypeE) +STUB("HMUN7HgM5Mo", Java_java_lang_StrictMath_exp) +STUB( + "HMV2htOE-RA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB("HMVWQXv-hH4", _Mbstate2) +STUB("HMW6e2WoQPs", mono_aot_Sce_Vshunwind_info) +STUB("HMX8NtsKaC4", _ZN9Inspector28DOMStorageFrontendDispatcherC2ERNS_14FrontendRouterE) +STUB( + "HMXEt5F8K0s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEC2ERKS7_) +STUB("HMcNe70D9TI", FT_Vector_Polarize) +STUB("HMdZ6uhGCFM", unum_getTextAttribute_67) +STUB( + "HMhyPIsjGuA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE4sizeEv) +STUB( + "HMmRR1Lvifc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE5clearEv) STUB("HMnVBVUyajk", sceAgcDriverIsPaDebug) +STUB("HMsW4rK7x18", mono_type_get_desc) STUB("HMv4KFyL5os", sceBgftServiceIntUploadSetUploadError) +STUB( + "HMvOMX9+yT0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEE11release_refEv) STUB("HMvaHoZWsn8", sceNetCtlApRpStartConf) +STUB( + "HN4MTcnccAU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEC1Ev) +STUB( + "HN4il55xbWA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEplEm) +STUB("HN556OqArfI", coil_get_native_thread_id) +STUB( + "HN5mLHUh6JI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEmmEi) +STUB( + "HN8MvfCT-Us", + _ZN9Inspector20DOMBackendDispatcher10removeNodeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("HNDOY53U1VU", + _ZN3sce7Toolkit2NP3TSS9Interface7getDataEPNS1_9Utilities6FutureINS1_7TssDataEEEb) +STUB("HNHso8Nb0GM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEEC2Ev) +STUB("HNJUerldoxg", _ZN7WebCore15JSSVGSVGElement9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "HNMRyeCXUuc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEED1Ev) +STUB( + "HNMbgs32WLc", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi11setDataInfoEiRKNS4_22ParameterToSetDataInfoERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS4_26SetDataInfoResponseHeadersEEEEE) +STUB("HNNNIyL293s", _ZN3WTF15defaultLanguageEv) +STUB("HNNh2LCUgVA", + _ZN3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayerC1EPNS1_6Common10LibContextE) +STUB("HNPiZwOB9mU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEixEm) STUB("HNRCEumA2V8", sceDbgAmprAmmGetErrors) +STUB("HNTSSfhy2tE", _ZN7WebCore5Range14isPointInRangeERNS_4NodeEj) STUB("HNX6U3ERdRI", sceCesUtf32beToEucCn) STUB("HNbQyWI-BtU", sceBluetoothHidParamInitialize) +STUB( + "HNbmjRyTSCE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEneERKS9_) +STUB( + "HNdkomKSjCk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEmmEv) +STUB( + "HNenjdtPDHU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB("HNg0VHXQrZM", + _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody18setUpdatedDateTimeERK10SceRtcTick) +STUB("HNi1EDPUzuM", Java_java_awt_FlushThread_flush) +STUB( + "HNij1-aIpSQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEED1Ev) +STUB("HNnWdT43ues", swscanf) +STUB("HNqKgfsfJ2A", GCC_except_table336) +STUB( + "HNqknqWLsHA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("HNsuYKFGO5k", mono_trace_set_print_handler) +STUB( + "HNyRocgZH2Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEE5resetEPS9_) +STUB( + "HO6HHZBJ0hQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEE7get_refEv) +STUB( + "HOFnioT-Tkg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE21intrusive_ptr_sub_refEPS9_) +STUB("HOJB+6dHSNM", YGNodeNew) +STUB("HOOe-g7LcDI", _ZN3WTF7RunLoop8dispatchEONS_8FunctionIFvvEEE) +STUB("HORX-1XW8ag", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13FriendsOfUserEEC1ERKS4_) STUB("HOSnwjsiZMk", sceSystemServiceAppGetAppInstallStatus) +STUB("HOcDtKImf0Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEE5resetEPS6_) +STUB( + "HOgPN87n1yM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEptEv) STUB("HOgeYd40G5E", scePssMusicPlayerSetLoopFramePos) +STUB("HOirJ44YRZo", _ZN8meta_gen17CommonFsOperation13storeFileSizeEv) +STUB("HOjCRclP1Lw", _ZN7WebCore27PlatformMediaSessionManager18processWillSuspendEv) +STUB("HOo5sHjlhNI", Java_java_io_RandomAccessFile_getFilePointer0) +STUB( + "HOrrsSMAAqE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEmmEi) +STUB("HOvB4DFVZlI", mono_aot_Sce_Cdlg_Platformjit_code_start) +STUB( + "HP3440g3wh8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEE7add_refEv) +STUB("HP4jsVYqBKg", _ZN3sce2np9LocalFileC2Ev) +STUB( + "HP8SW4M3xpQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEneERKS9_) +STUB( + "HP9HNLxF4f0", + _ZN3sce2Np9CppWebApi14SessionManager2V113PlayerSession9setMemberERKNS1_6Common12IntrusivePtrINS3_33ResponsePlayerSessionMemberPlayerEEE) +STUB("HPGLb8Qo6as", _LDivide) +STUB("HPGzZzZTcNY", _ZN3sce7Toolkit2NP2V210Tournament7BracketD2Ev) +STUB("HPKQqF68JGw", _ZN7WebCore4Node12replaceChildERS0_S1_) +STUB( + "HPQ4sBDpk7Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "HPWTrvPduu8", + _ZN7WebCore15JSDOMWindowBase24moduleLoaderImportModuleEPN3JSC14JSGlobalObjectEPNS1_9ExecStateEPNS1_14JSModuleLoaderEPNS1_8JSStringENS1_7JSValueERKNS1_12SourceOriginE) +STUB("HPbF7sy2B9I", _ZN3sce2Np9CppWebApi7Matches2V122RequestPlayerStatistic8getStatsEv) +STUB( + "HPd4h-ERJUg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB( + "HPd58+XdDIQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEmmEi) +STUB( + "HPdDMxsa9eg", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V145SetMultiVariablesRequestBody_variablesFactory7destroyEPNS3_38SetMultiVariablesRequestBody_variablesE) +STUB( + "HPeYP9scjvE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEE7get_refEv) +STUB( + "HPisyaq3L-g", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser10getslotIdsEv) +STUB( + "HPjP81uCEVQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE5clearEv) +STUB("HPlmfRhMWwo", _Unwind_GetTextRelBase) +STUB("HPmUq28fuMk", _ZN3WTF6StringC1EPKhj) +STUB( + "HPmvUjvCA1I", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("HPnyGlR0v7Q", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119NatConnectivityFromD2Ev) STUB("HPpz-oyX4vM", sceVdecCoreInitializeComputeResource) STUB("HPvwGbCjCMA", sceCesIso2022JpUcsProfileSetSbcs) STUB("HPw11phYb4g", sceCesUtf8ToUhc) +STUB( + "HPx6LeMFKIo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "HQ1+McfhhIM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEppEv) +STUB("HQ6DCQrAXD4", uloc_addLikelySubtags) +STUB( + "HQ6Dr9tz6io", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEE3getEv) +STUB("HQAa3rCj8ho", _ZGVNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE) +STUB("HQBM6-F+iI8", _ZN3sce2Np9CppWebApi7Matches2V126RequestTeamMemberStatistic11setPlayerIdEPKc) +STUB("HQG4dukHWHo", _ZNK3JSC7JSValue19synthesizePrototypeEPNS_9ExecStateE) +STUB("HQMDEdrkt1E", _ZN3sce2Np9CppWebApi7Matches2V15ErrorC2EPNS1_6Common10LibContextE) +STUB( + "HQMgtRf-qk0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "HQMr9K6VRAM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEeqERKS9_) +STUB( + "HQNXENwgHzU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEEptEv) STUB("HQOwnfMGipQ", sceNetErrnoLoc) +STUB("HQVp5LgdQDY", _ZN3sce7Toolkit2NP2V27Session7Request22GetReceivedInvitationsD1Ev) +STUB( + "HQYUwdoobdo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEC2Ev) +STUB("HQadBg0DDN0", _ZN3sce7Toolkit2NP2V28Matching12Notification11RefreshRoomC2Ev) +STUB( + "HQayaNjjt4w", + _ZN9Inspector13AgentRegistry27didCreateFrontendAndBackendEPNS_14FrontendRouterEPNS_17BackendDispatcherE) +STUB("HQbgeUdQyyw", _ZNSt7collateIwEC2Em) +STUB( + "HQeQ4lIdGVs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("HQgBJvkdrfA", _ZN9JITBridge20shutdownFromCompilerEPS_b) +STUB("HQhHNsQc7wk", _ZN3NTF17URLRequestMessageD2Ev) +STUB( + "HQj4pWT5hZ0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE7popBackEv) +STUB( + "HQjJuMOL7fw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEeqERKS9_) +STUB( + "HQkde9GYBVM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEE7get_refEv) +STUB("HQuVAZvKqlY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEC1ERS7_) +STUB("HQyBEpH4h+E", d2i_OCSP_RESPONSE) +STUB( + "HQyKciuFBAc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEEC2EPS5_PFvS7_EPNS2_10LibContextE) +STUB("HR0Ks7kSkUY", JSValueMakeFromJSONString) +STUB("HR3YQ2AyLLc", _ZTVN15AbstractStorage15FacebookContentE) +STUB( + "HR57-RrsxwI", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats20setConnectionQualityERKNS1_6Common12IntrusivePtrINS3_17ConnectionQualityEEE) +STUB( + "HRA2g9hOiTk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEED2Ev) +STUB("HRBeLG106ww", _ZN3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate12unsetNatTypeEv) STUB("HRDHLMA9Y7s", sceBgftServiceIntDownloadStartTask) STUB("HRDq-RDIGmI", sceKernelBeginAppMount2) +STUB("HRFf-IW+9h4", _ZN7WebCore26IdentityTransformOperationD0Ev) +STUB( + "HRKAVx+C-74", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeaderC2ERS5_) +STUB( + "HRLtyJx-mX8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "HRWgJODnHJw", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToSetMultiVariablesByUserC1ERS5_) STUB("HRX1iyDoKR8", sceHttpSetAcceptEncodingGZIPEnabled) STUB("HRXjUojlG70", sceLncUtilGetParentSocket) +STUB( + "HRYATiATbnI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEptEv) +STUB( + "HRcVStTocg8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEE11release_refEv) +STUB("HRddUJkLioA", rgctx_fetch_trampoline_rgctx_110_p) +STUB("HRh5Em+vtJw", ucpmap_get_67) +STUB("HRkYAo+HK5w", WKConnectionPostMessage) +STUB( + "HRnb1Ind72Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE5clearEv) +STUB( + "HRnsujVxWOk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEneERKS9_) +STUB("HRpZp6CCUcM", _ZN9Inspector21DOMFrontendDispatcher17attributeModifiedEiRKN3WTF6StringES4_) +STUB("HRuqgFnBD60", JSValueCreateJSONString) +STUB( + "HRvCLR9kbkE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEC1EPS6_PNS2_10LibContextE) +STUB("HRvr0-VWwEo", _ZN8meta_gen13TiffRetriever14ProcessNextIFDENS_3ifdE) +STUB("HRwqg1GDJyQ", _ZNK7WebCore18PlatformTimeRanges5startEj) STUB("HRyNHoAjb6E", sceGnmIsCoredumpValid) +STUB( + "HRypua9xlMI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEED2Ev) +STUB("HS0m+kyKMKc", WKContextSetCustomWebContentServiceBundleIdentifier) STUB("HS0z4LDx5eI", ScePsmMonoJitExec2) +STUB( + "HSN8XtBDL00", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEEptEv) +STUB("HSQ3lpRwL2E", _ZN7WebCore13MediaStrategyD0Ev) STUB("HSR5o9hELHs", sceMusicCoreServerSetAudioVolume) +STUB("HSY0-IPlV4k", _ZN9Inspector21InspectorConsoleAgent16takeHeapSnapshotERKN3WTF6StringE) +STUB( + "HSbRimKZeFY", + _ZN7WebCore15JSDOMWindowBase23promiseRejectionTrackerEPN3JSC14JSGlobalObjectEPNS1_9ExecStateEPNS1_9JSPromiseENS1_27JSPromiseRejectionOperationE) +STUB("HScPSffm6P0", il2cpp_is_vm_thread) +STUB("HSdW4PMnibU", utrie2_open_67) +STUB("HSg1UUjLCvs", _ZN7WebCore12JSAudioTrack13visitChildrenEPN3JSC6JSCellERNS1_11SlotVisitorE) +STUB("HSgGzRi+yIU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEE11release_refEv) +STUB("HSh8IJaDD7o", _ZN3sce2np4NpId5ClearEv) +STUB("HSkPyRyFFHQ", _ZTv0_n24_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev) +STUB( + "HSmw7UUvbs4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi23getMultiVariablesBySlotEiRKNS4_34ParameterToGetMultiVariablesBySlotERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_29GetMultiVariablesResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("HSnL1FGsY4I", __cxx_global_var_init .29) +STUB("HSxmGAOnwrI", _ZN7WebCore9HTMLNames6varTagE) +STUB( + "HT+P531qWOs", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB( + "HT-kkLQ312c", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V124BandwidthUpstreamMetrics18getConfidenceScoreEv) STUB("HT1udTT8fB8", sceNpTrophySystemWrapRemoveTitleData) +STUB("HT5RnWbzRwc", _ZN3WTF13MetaAllocator19isInAllocatedMemoryERKNS_14AbstractLockerEPv) +STUB("HT6WH6yQxO0", rgctx_fetch_trampoline_rgctx_92_p) +STUB("HT8ovS-O+qI", _ZNK7WebCore11MediaSample15isNonDisplayingEv) STUB("HT8qWOTOGmo", sceHmdDistortionGetCorrectionCommand) +STUB("HTB1uUwgSVQ", cairo_mesh_pattern_line_to) +STUB( + "HTIZBwIY6d0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE7popBackEv) +STUB( + "HTOow7mTv0Q", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119BandwidthPropertiesC1EPNS1_6Common10LibContextE) STUB("HTQKxIObCrs", sceTsGetStreamInfo) +STUB("HTRRfCDmV7E", _ZN7WebCore8Gradient12addColorStopEfRKNS_5ColorE) +STUB( + "HTTZ++HJ9bY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE3endEv) +STUB( + "HTi72TdpV0E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEppEv) +STUB("HTpFP1m31J8", _ZN7WebCore17ParsedContentType6createERKN3WTF6StringENS_4ModeE) +STUB( + "HTpPn4-Vp5Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("HTq-wlWnajA", _ZN23sceMetadataReaderWriter13ParserManager10initializeEv) STUB("HTrcDKlFKuM", sceMsgDialogClose) +STUB( + "HTuX3QAwoVA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEEaSERSA_) +STUB( + "HTvWmf9D5yk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEEaSERKSA_) +STUB("HTxb6gmexa0", seteuid) +STUB( + "HU+-n01vwH0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB( + "HU-6QxP6Tz0", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "HU11UODh-JA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("HU3yzCPz3GQ", _ZNSt15_Num_float_base9is_moduloE) +STUB( + "HU6cysaUOoQ", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEEiRNS2_10LibContextEPT_m) +STUB("HU8BLk0sUe0", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_16SessionAttributeEEC2ERKS4_) STUB("HUARhdXiTD0", sceFontGraphicsTextureMakeFillTextureImage) +STUB("HUBt2NGnRf4", _ZN9Inspector17ScriptDebugServer34notifyDoneProcessingDebuggerEventsEv) +STUB( + "HUCFK8h6dS4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEEcvbEv) +STUB("HUH2pIVwBXM", _ZN3sce7Toolkit2NP2V23TUS25AtomicAddToAndGetVariable8deepCopyERKS4_) +STUB("HUJrYWYhhwo", uset_span_67) +STUB("HULvHeesi0Y", _ZN3sce7Toolkit2NP10IdDatabaseD1Ev) +STUB("HUT9FHGWIas", _ZN23sceMetadataReaderWriter13ParserManager13requestParserEii) +STUB("HUbZmOnT-Dg", atan2) +STUB( + "HUdcdrfVn-0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEmmEi) +STUB("HUejyiZ9CnM", _ZN7WebCore9HTMLNames17aria_readonlyAttrE) +STUB( + "HUlK8DV1fcQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("HUq8WYkwAP4", _ZN3sce7Toolkit2NP2V27Session11InvitationsD2Ev) +STUB( + "HUsiH+pUPEI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE8copyFromERKS9_) +STUB("HUtRZ9lkwqI", _ZN3WTF11Persistence5CoderISt5arrayIhLm20EEE6decodeERNS0_7DecoderERS3_) +STUB("HUuwDWJu9Ac", _ZN3sce2Np9CppWebApi7Matches2V117ResponseMatchTeam9setTeamIdEPKc) +STUB( + "HV+Rmzng1R4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE21intrusive_ptr_add_refEPS7_) +STUB( + "HV-GlRFOJ4k", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEptEv) +STUB("HV3hA9XLITE", _ZNK3WTF9MediaTime14hasDoubleValueEv) +STUB( + "HV47WGnDlDo", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_17ActivityFeedStoryENS1_15AppSTLAllocatorIS5_EEEEC2Ev) +STUB( + "HV5ZbBXRy8k", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("HV7HZmJquy4", _ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody12getSubmitterEv) STUB("HVAa744ecdw", scePlayGoPrefetchOptionalChunk) +STUB( + "HVBR9dQxqC0", + _ZN9Inspector20DOMBackendDispatcher14highlightFrameElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "HVDX5cIlq6o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEC2EPS6_PNS2_10LibContextE) +STUB("HVG22Xup244", _ZN3sce7Toolkit2NP2V23TUS25AtomicAddToAndGetVariableC2ERKS4_) +STUB( + "HVJfFq-d85o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEppEi) +STUB( + "HVKPCah7GPU", + _ZN9Inspector31ScriptProfilerBackendDispatcherC2ERNS_17BackendDispatcherEPNS_38ScriptProfilerBackendDispatcherHandlerE) +STUB("HVL+1QItYTA", + _ZN8meta_gen14ImageRetriever12SetValueDataEPKcPNS_14ImageMetaValueEPiP10KeyValue_tb) +STUB("HVN14qaLReQ", + _ZN7WebCore27ScrollingStateScrollingNode26setRequestedScrollPositionERKNS_10FloatPointEb) +STUB( + "HVQpB1Y8Gcc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEneERKS9_) +STUB("HVSaZbxYi2s", FT_Realloc) +STUB("HVTfSNXNkDM", _ZN3sce2Np9CppWebApi14SessionManager2V110FromMember12setAccountIdERKm) +STUB("HVYC-jaEOM4", + _ZN7WebCore14SchemeRegistry49registerURLSchemeAsBypassingContentSecurityPolicyERKN3WTF6StringE) +STUB("HVa5FLC0xuI", _ZN3sce7Toolkit2NP18GetUserNewsRequestC1Ev) +STUB( + "HVgT1afwgHc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEED2Ev) STUB("HVgWmGIOKdk", sceNpWebApiRegisterNotificationCallback) +STUB("HViyoC+c0no", g_slist_concat) +STUB( + "HVq2jyEdFNg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEE7get_refEv) +STUB("HVq72tQLj2k", _ZN3sce7Toolkit2NP2V26Trophy16TrophyPackTrophy8deepCopyERKS4_) +STUB( + "HVwOHqFWcFc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEED1Ev) +STUB("HW0dx8g3GnU", _ZN3WTF9MediaTime12setTimeScaleEjNS0_13RoundingFlagsE) +STUB( + "HW5+lsvt4Dk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEEC1Ev) +STUB("HWBJOsgJBT8", __atomic_fetch_sub_1) +STUB("HWE+M24Pgkg", _aot_register_finalizer) +STUB("HWEOv0+n7cU", mergesort) +STUB( + "HWJpYxIR0oE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEneERKS9_) +STUB( + "HWKbFvDSqJo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEdeEv) +STUB( + "HWOIqk8iU3c", + _ZN7WebCore10ScrollView5paintERNS_15GraphicsContextERKNS_7IntRectENS_6Widget25SecurityOriginPaintPolicyEPNS_18EventRegionContextE) +STUB( + "HWPf+WqdD6Y", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE11getResponseERSB_) +STUB( + "HWQwK2WdfXE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("HWRP4l2b7pE", WKBundleResourceLoadStatisticsNotifyObserver) +STUB( + "HWReSt5YXHw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEppEv) +STUB("HWV6QbT5HDU", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_17ActivityFeedStoryEEneERKS4_) +STUB("HWZd3fXbPio", WKAuthenticationChallengeIsInMainFrame) +STUB("HWcfdLiowwM", _ZN7WebCore7IntRect9intersectERKS0_) +STUB("HWhvb-bEWy0", _ZNK3JSC17DebuggerCallFrame12functionNameEv) +STUB( + "HWslWvCKluo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEEcvbEv) +STUB( + "HWsseflvJEU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEC1Ev) +STUB("HWuVga4APvA", _ZNK3JSC12DateInstance26calculateGregorianDateTimeEPNS_9ExecStateE) +STUB( + "HWw5SgIgI84", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEptEv) STUB("HWxHOdbM-Pg", sceRtcGetCurrentRawNetworkTick) +STUB( + "HWzqJIwpNHE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEEC1Ev) +STUB("HX0tOqBqRlE", YGExperimentalFeatureToString) +STUB("HX1OC8XEKPQ", _ZN3sce2Np9CppWebApi13InGameCatalog2V55Image6setUrlEPKc) +STUB( + "HX24U9Q8Er0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE13getLibContextEv) STUB("HX5524E5tMY", sceCameraGetWhiteBalance) +STUB("HX6U0A9ppmM", mono_install_unhandled_exception_hook) +STUB( + "HX9RO6Jnvik", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("HX9slXuFM5c", WKPageSelectFindMatch) +STUB( + "HXDOAS+POXU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB("HXHx7QB4GsQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEED2Ev) +STUB( + "HXJwzYPpOsI", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities8setlimitEi) +STUB( + "HXKmMsfhZdI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE8capacityEv) +STUB( + "HXYq037QzpQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEC1EPS8_) +STUB("HXc9paDU7vM", _ZNK7WebCore23ScaleTransformOperation1zEv) +STUB("HXdJL6yxg3c", mono_aot_Sce_Vsh_MimeTypejit_code_end) STUB("HXdJuV30E8Q", sceClHttpDeleteTemplate) +STUB("HXdgZL4aG4U", il2cpp_gchandle_new) +STUB("HXjZAjwPJG0", _ZN3sce7Toolkit2NP2V26Friend15FriendsOfFriendaSERKS4_) +STUB("HXrogCTDubI", xmlFree) STUB("HXymib4T8gc", sceAmprAmmWaitCommandBufferCompletion) +STUB( + "HXzMvelTtMs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE5clearEv) STUB("HXzjK9yI30k", sceVideoOutAddFlipEvent) +STUB("HY0-+bRqLho", _ZN3sce7Toolkit2NP2V211UserProfile9NpProfileC1Ev) +STUB("HY3RafoMFks", _ZN3sce7Toolkit2NP2V210Tournament7Request19GetRegisteredRosterC2Ev) +STUB("HY6bZLf09XA", _ZN3JSC19HeapSnapshotBuilder23setWrappedObjectForCellEPNS_6JSCellEPv) +STUB( + "HY8ixyhUPFs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE4sizeEv) +STUB( + "HY9sa7cgarI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEC2EPS8_) +STUB( + "HYBRojOyv4s", + _ZN3sce2Np9CppWebApi13InGameCatalog2V516PublisherFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_9PublisherEEE) +STUB( + "HYCMyLzgjyE", + _ZN7WebCore15JSSVGSVGElementC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_13SVGSVGElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB("HYDApQYDgcI", + _ZN15AbstractStorage14YoutubeStorage7IsExistERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("HYFSl8uM4GI", + _ZN7WebCore25TextureMapperBackingStore25calculateExposedTileEdgesERKNS_9FloatRectES3_) STUB("HYFgF7xrf8M", sceFsDevpfsWaitEvent) +STUB("HYGJpCWrRbc", mono_image_get_name) +STUB( + "HYHqtDjdCw4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEC2Ev) +STUB("HYL2II2G4fQ", _ZNK3WTF9MediaTime18isNegativeInfiniteEv) +STUB( + "HYMJRbCn4Hg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE3endEv) STUB("HYMgE5B62QY", sceUserServiceSetGlsCamCrop) +STUB("HYPO0siPqNs", _ZN3sce2Np9CppWebApi6Common6VectorIiE21intrusive_ptr_add_refEPS4_) +STUB("HYXbmmRBNc8", _ZN3sce2Np9CppWebApi6Common6VectorIdE6resizeEj) +STUB("HYcBDdfNsxI", mono_jit_exec) +STUB("HYezwOU4-4c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEEmmEv) +STUB("HYf37c5fzxo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEEC1EPS5_PFvS7_EPNS2_10LibContextE) +STUB("HYgtW9iS5Fk", HMAC) +STUB( + "HYreXVVjmUI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE8capacityEv) +STUB("HYte4xhyK9w", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110PlayerTypeEEppEv) +STUB("HYwqB4wv0kw", + _ZNK3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer12natTypeIsSetEv) +STUB("HYyGDuk-j3k", _ZN7WebCore8SVGNames10onzoomAttrE) +STUB("HYz9i0PIHWs", _ZNK7WebCore10StorageMap7getItemERKN3WTF6StringE) STUB("HYzkJb41fcE", sceKernelWriteMultiMapWithGpuMaskIdCommand) +STUB("HZ0Welds7e0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEEptEv) +STUB( + "HZ0WgcxvM4g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEED2Ev) +STUB( + "HZ1gm1qkKgU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE6insertENS2_13ConstIteratorIS9_EERKS9_RSC_) STUB("HZ2ih547n5Y", _sceDepthSetCameraFactoryCalibrationData) +STUB( + "HZ42V-ED0to", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13boolean2IsSetEv) STUB("HZ91VeepRC4", sceVideoCoreSetInitializeInfo) +STUB( + "HZB-tgI0S98", + _ZN9Inspector17ScriptDebugServer12sourceParsedEPN3JSC14JSGlobalObjectEPNS1_14SourceProviderEiRKN3WTF6StringE) +STUB( + "HZBo+pl1z1E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEppEv) +STUB("HZFv+Ur-OLw", _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead9getMemberEv) +STUB( + "HZLibglP8bg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEE11get_deleterEv) +STUB("HZMcVNu9oqk", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V18Variable24unsetLastUpdatedDateTimeEv) STUB("HZO7xOos4xc", sceKernelGetModuleInfoInternal) +STUB( + "HZOTQ7ymmvU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEC2EPNS2_10LibContextE) +STUB("HZPRG8FmMc4", _ZN7WebCore21NetworkStorageSession27permitProcessToUseCookieAPIEb) +STUB( + "HZRr6wrdSG4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEEC1ERSA_) +STUB( + "HZSwiGws3qY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEppEi) +STUB( + "HZWGfqaSufo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEmmEv) +STUB( + "HZdN6ko7lrM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("HZj+-pkSU3E", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE6resizeEj) +STUB( + "HZkAdkqRS7E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE6resizeEj) +STUB("HZlXPT46bsM", _ZN3NTF6ThreadD1Ev) +STUB( + "HZnIvQOv6lE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE10setContextEPNS2_10LibContextE) +STUB( + "HZp4c4nRSZ4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE5beginEv) +STUB("HZvInRgsr8M", _ZN7WebCore8Document24setShouldCreateRenderersEb) +STUB( + "Ha3NB4ZVPaE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEED1Ev) +STUB("Ha876NZobao", __asan_load1) +STUB("Ha8E-qWvyWc", _ZN7WebCore22HTMLFormControlElement15setAutocompleteERKN3WTF6StringE) STUB("HaI8g79+OOA", sceDebugGetModuleList) +STUB("HaJZszqZGWU", _ZN3JSC12HeapVerifier12validateCellEPNS_8HeapCellEPNS_2VME) +STUB( + "HaLOZPCHpuM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEED2Ev) +STUB("HaPexYqovlM", mono_aot_Sce_CloudClient_App_Platformmethod_addresses) +STUB("HaRTbSYC+rw", _ZN7WebCore8SVGNames16stop_opacityAttrE) +STUB("HaTX20lT6No", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEC1Ev) +STUB("HaWSmfYQX0M", _ZN3WTF9MediaTimedaEPv) +STUB("HaYgXvIjhuo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEE11get_deleterEv) STUB("HabmgqPwPw0", sceAgcDcbContextStateOp) +STUB("Habqtw0NHUI", _ZN3JSC29getUint8ClampedArrayClassInfoEv) +STUB("HadVExFjsog", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEEC2Ev) +STUB( + "HakGGq3GwfA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB( + "Haodxvi4RVI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE3endEv) +STUB("HaphP42WhtQ", _ZNK7WebCore10TimeRanges5startEj) STUB("HarYYlaFGJY", sceUsbdClose) +STUB("HaxT3P6YcO8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEC2Ev) +STUB("HayURMHMcKY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEEC1EPS6_) +STUB("Hb3ioKymYSg", uprv_dlsym_func_67) +STUB("Hb3ytAC6Dmw", mono_aot_ReactNative_Components_Vshunwind_info) +STUB("Hb45BVZ1WVQ", xmlSAX2EndDocument) +STUB( + "Hb7hweQsfQc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("Hb978OISvRE", monoeg_g_hash_table_lookup_extended) STUB("Hb9HWFKo9F4", sceUltReaderWriterLockLockRead) +STUB( + "HbA3GmWEl2c", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE8capacityEv) STUB("HbAX1cSb+hw", sceImeBackendSetConvertMode) +STUB("HbAbmkmvAOo", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEEC1EPS6_) +STUB( + "HbJ342YtS1w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEC1EPNS2_10LibContextE) +STUB("HbOKtj27KvM", _ZN3sce7Toolkit2NP9Utilities10FutureImpl7waitForEj) +STUB("HbQcVg6C5vc", monoeg_g_markup_parse_context_parse) STUB("HbRSpVkdVF0", sceKernelDebugRaiseExceptionWithInfo) +STUB("HbbM72T9icI", _ZN15AbstractStorage12LocalContentC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("Hbf1gqTGmiU", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEEppEi) +STUB("HbfdxoUWpyI", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadDataD2Ev) +STUB( + "Hbg5v66b5Fg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEC2EPS8_) +STUB( + "HblIt+4MbRs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEEdeEv) +STUB("HblNi06Y6UI", _ZN3WTF7Unicode18convertUTF16ToUTF8EPPKDsS2_PPcS4_b) STUB("HbxYY27lK6E", sceAudio3dAudioOutOutputs) +STUB( + "Hc2dofrAHZI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "Hc3B+uBBKlo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE8capacityEv) +STUB( + "HcB443FVfXs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE3endEv) +STUB("HcFfRJ-2NkA", JVM_GetClassAccessFlags) +STUB( + "HcGj6v+Z0Lg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEC1EPKS8_) +STUB("HcJ03wiUPm4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS19FriendsDataStatusesEED2Ev) +STUB( + "HcLOU6VBKRw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "HcLmHooPjoU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEE11release_refEv) +STUB( + "HcW40AG6-gU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEE3getEv) +STUB("Hca1vaS6z+o", mono_metadata_parse_param) STUB("HcbIPAn1o3g", sceWorkspaceMirrorBarrier) +STUB( + "HcdLy-IOk6I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("HciaSIulWeo", _ZN3sce3Job10JobManagerC2Ev) +STUB("Hclp1skpfRU", u_locbund_getNumberFormat_67) +STUB("HcnHBUxWpgU", _ZN3sce7Toolkit2NP2V27Ranking8TempRankC1Ev) +STUB( + "Hcp7gK-GJ-E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEC2EPS8_) +STUB("HcpmBnY1RGE", _FDint) +STUB( + "HcuV5mJnIHY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEEC2EPNS2_10LibContextE) +STUB("Hcukgmlncpk", _ZN7WebCore11MediaPlayer18mediaEngineUpdatedEv) +STUB("Hd0roeFay9w", _ZN3sce7Toolkit2NP2V23TUS7Request20GetFriendsDataStatusD2Ev) +STUB("Hd2fZvS+3Ag", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEC2Ev) +STUB("Hd5Hvjttlps", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEdeEv) +STUB( + "Hd6JXPAaCOM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEC2Ev) +STUB("Hd6X+4Sysik", _ZN12video_parser16cVideoContentMp419getOperatorInstanceEPPNS_14iVideoOperatorE) +STUB("Hd77FYTTkwE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEEC2ERKS5_) +STUB("Hd7DOz4Bih8", _ZN7WebCore14MicrotaskQueueC2ERN3JSC2VME) +STUB("Hd8mUObediA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEEmmEv) +STUB( + "Hd9GvAMwTbg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("Hd9cvQ9rZq0", _ZN8meta_gen11MsvPromoter26retrieveMovieThumbnailInfoEPKc) +STUB("HdE+dwXD45U", _ZN7WebCore22strictCSSParserContextEv) +STUB("HdE77Kv1w0E", _ZTVN7WebCore28InspectorFrontendClientLocal8SettingsE) +STUB( + "HdFOZo9WWtk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEcvbEv) +STUB( + "HdIrJs8maeo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEC2Ev) STUB("HdL8UX2RHxA", scePlayReadyCdmiGetKeySystem) +STUB("HdLOeAYX9+Q", mono_aot_Sce_Vsh_ShareServerPostWrapperunbox_trampolines_end) +STUB( + "HdTtGsjgzP8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "HdUdU7QGV4g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEmmEi) +STUB("Hdc3DSIsG2I", _ZN3sce4Json5Array8iteratorC2ERKS2_) +STUB( + "HdfZzEPmlnk", + _ZN9Inspector15ScriptArgumentsC1ERN3JSC9ExecStateEON3WTF6VectorINS1_6StrongINS1_7UnknownEEELm0ENS4_15CrashOnOverflowELm16EEE) +STUB( + "HdhDexEBHlQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEixEm) +STUB("HdhVMYBcZfo", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEED2Ev) STUB("Hdm6rO0xlnw", sceKeyboardDisconnectPort) +STUB("Hdn98gghSNc", uprv_maximumPtr) +STUB("HdqkxFL0nGo", _ZN9Inspector18InspectorHeapAgentdlEPv) +STUB("HdqqKULykYw", _ZN3sce7Toolkit2NP2V26Trophy7Request13SetScreenshot17INVALID_TROPHY_IDE) +STUB("Hdr9YKG0Y28", Java_java_lang_Float_intBitsToFloat) STUB("He3luzgOL-w", sceDbgGetDebugSuspendCount) +STUB( + "HeBPhimMnfs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEEC1ERKSA_) +STUB("HeBwePMtuFs", _ZNKSt8messagesIcE7do_openERKSsRKSt6locale) +STUB("HeDIXZsguvA", _ZN3sce7Toolkit2NP2V28Presence7Request11SetPresenceD1Ev) +STUB("HeEnbCBzHvc", _ZN3NTF17URLRequestFileJobD1Ev) +STUB( + "HeLZykLter8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE8pushBackERKS8_) +STUB("HePAPRigVQg", udata_swapDataHeader_67) +STUB( + "HeSaQKwrY+Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("HeTyl3dKJxs", _ZN7WebCore12BlobRegistryD2Ev) +STUB("HeUvmw2JBD0", + _ZN3JSC17MarkingConstraint20prepareToExecuteImplERKN3WTF14AbstractLockerERNS_11SlotVisitorE) +STUB("HeZDG4Nsf8s", _ZN3sce7Toolkit2NP2V24Core11RequestBaseD2Ev) STUB("HeZzL2xbRJY", sceShellCoreUtilGetRunLevel) STUB("HedUSy9swaw", sceVshAvcapGetInfo) +STUB("HefQQVTQj34", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEE11get_deleterEv) +STUB("Heg3MWrCcdc", _ZN7WebCore8SVGNames9onendAttrE) +STUB("Heh4KJwyoX8", posix_spawn_file_actions_addclose) +STUB("Hera0SLzgyY", _ZN7WebCore12ChromeClientC2ERKS0_) +STUB("Het7UaL5QvI", _ZN7WebCore11MediaPlayer34seekableTimeRangesLastModifiedTimeEv) +STUB( + "Heui1aDSo68", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEaSERKS9_) +STUB( + "Hex-a8KoZLI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEEC1ERS9_) +STUB("Hf+v9bM1guY", _ZN3WTF14FileSystemImpl12truncateFileEix) +STUB("Hf8hPlDoVsw", __muldi3) +STUB("HfEGUzuya18", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18GameCustomDataItemEED2Ev) +STUB( + "HfHQ1iGXUV4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEE7add_refEv) +STUB("HfKQ6ZD53sM", _Atomic_signal_fence) +STUB( + "HfKQWVeemjM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEE3getEv) +STUB("HfKZzf2Bgk0", _ZNK3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer14getCustomData1Ev) +STUB( + "HfMwoADzuNs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEEaSERKSA_) STUB("HfQTiMSCHJk", sceUserServiceSetGlsIsFacebookEnabled) +STUB( + "HfR1qd6EM+Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "HfX4L7GsocE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB( + "HfZl1V5g+O8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB( + "HffSVg4nz4w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEE11release_refEv) +STUB( + "HfidnvM-qmE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEEC2ERSA_) +STUB( + "HfnTwwuLjAI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEC1Ev) +STUB( + "Hfol65PZ+0k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEaSERS7_) +STUB("Hfq8eeKXP-A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEppEv) +STUB("HfwSYBY9ybg", WKBundleFrameCopyName) +STUB("Hg0C1dM+D0M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEdeEv) +STUB("Hg0GBcA80dk", _ZN15AbstractStorage4ItemdlEPv) +STUB("Hg1im-rUeHc", _ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1ERKSt8_Locinfom) +STUB("Hg5BvQMX4mE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEEC1EPNS2_10LibContextE) +STUB( + "Hg5fkpQ91js", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEC2EPNS2_10LibContextE) +STUB( + "Hg9CeX7-Lu4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEED2Ev) +STUB("HgFRO6Upsg4", curl_mime_name) +STUB( + "HgI+jR7PqCU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEC2ERS7_) +STUB("HgIUF7ZI63M", rootapprox) +STUB("HgP0GoWJtAQ", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEEixEm) STUB("HgPSJ1kcnHM", sceMbusEventCallbackFuncsInit_) +STUB("HgPiXeD6iK8", _ZN7WebCore11HTMLElement12setInnerTextERKN3WTF6StringE) +STUB( + "HgRj9oePsXU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEmmEv) +STUB( + "HgT6Yedxbd0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEmmEv) +STUB( + "HgVoGCDCCjI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEED1Ev) STUB("HgX7+AORI58", sceKernelAioSubmitReadCommands) STUB("HgXd0wLL-UA", sceIduUtilReboot) +STUB("HgZIJ7KjSjI", u_vsscanf_u_67) +STUB("HgZqXiZCK24", ucnv_fromUnicode_UTF8_OFFSETS_LOGIC_67) +STUB( + "HgdqjUsjvhw", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEiRNS2_10LibContextEPT_m) +STUB( + "HgglfkwHrTs", + _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product29setContentInteractiveElementsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_25ContentInteractiveElementEEEEE) +STUB("Hgtgx8Br4IM", __tsan_get_report_thread) +STUB( + "HgweHs-aio8", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersC2ERS5_) +STUB("Hh+5bs44RNM", WKPreferencesGetAnimatedImageAsyncDecodingEnabled) +STUB("Hh-yx9qeRqM", + _ZN3sce2Np9CppWebApi14SessionManager2V130RequestGameSessionMemberPlayer10getPlayersEv) +STUB( + "Hh0B2beidfs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEE5resetEPS8_) +STUB( + "Hh1+CciL6RE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB( + "Hh4d05g2RiI", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("Hh99STc+Yso", _ZN7WebCore9HTMLNames24aria_multiselectableAttrE) +STUB("HhAxSe0AxGc", cff_cmap_unicode_class_rec) STUB("HhBo--ix7Lg", sceShellCoreUtilStartPsNowGame) STUB("HhF0bzKlhjM", ScePsmMonoJitParseOptions) STUB("HhGAQ+ffliw", sceKernelDeleteEport) +STUB( + "HhII0rjCc5o", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEplEm) +STUB("HhKQodH164k", _ZN3sce2np4UserD0Ev) +STUB( + "HhUyIxhT6MM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEE5resetEPS6_) +STUB("HhV2Og-Q+yA", _ZN7WebCore18ImageBufferBackend13sinkIntoImageENS_18PreserveResolutionE) +STUB("HhYP4z0eMJM", _ZThn8_N6WebKit12ChildProcessD1Ev) +STUB("HhapY9S36NY", udat_adoptNumberFormat_67) +STUB("Hhe4ZDzNjR4", mono_aot_Sce_Vsh_VrEnvironmentjit_got) +STUB("HheeSB140oA", _ZN7WebCore9HTMLNames7abbrTagE) +STUB( + "Hhgp7Ksf6pM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEC2EPS8_) +STUB("Hhi4XU4ZThY", _ZNSt9basic_iosIwSt11char_traitsIwEEC2EPSt15basic_streambufIwS1_E) +STUB("Hhki7ncbDjg", _ZN7WebCore11MediaPlayer7setRateEd) +STUB("HhkynyrWvFw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE7popBackEv) +STUB( + "HhlFAdjhyRU", + _ZN3sce2Np9CppWebApi14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBody16unsetInvitationsEv) +STUB( + "Hhlum6vuXUo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEEC2ERSA_) +STUB( + "Hhmm33LFE94", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEEC1ERSA_) STUB("Hhmu86aYI1E", sceNpServiceClientTerm) +STUB( + "Hhrv8X3nw2g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEEdeEv) +STUB( + "HhtP7YR11IY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("HhtuEAftVvk", _ZN3sce2np3ipc14service_client12BeginRequestEii) +STUB("HhyDCyUZAGE", + _ZN7WebCore18JSHTMLImageElement15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "Hhz2ojxUe7U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEmmEv) +STUB( + "Hi1WTqwZIa0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEED2Ev) STUB("Hi3onqHSN6M", sceNpSnsFacebookDialogOpen) +STUB("Hi4r2WYrMdk", _ZNK3sce7Toolkit2NP9Utilities6FutureI13SceNpOnlineIdE17getAdditionalInfoEv) +STUB("Hi9Fjg-rBTc", usearch_reset_59) +STUB( + "HiBGHS04gqc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEE5resetEPS6_) +STUB("HiKjianFW0c", _ZNK3JSC7JSValue9toIntegerEPNS_14JSGlobalObjectE) +STUB( + "HiL6QlU0jfY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("HiOrhyJTPEA", _ZN3sce2Np9CppWebApi14SessionManager2V131ResponseGameSessionMemberPlayerD2Ev) +STUB("HiWaBTUw+4c", _ZN3sce7Toolkit2NP2V23TUS7TusDataaSERKS4_) +STUB("HiYd+o5nvW4", _ZN12video_parser18cMp4FFLHndlManager14getFF4TrefHndlEjj) STUB("HibOtezzT6M", sceVideoOutCursorIsUpdatePending) +STUB( + "HidVSBhMHPM", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitationsD1Ev) +STUB("HiehcAiEDCc", WKContextClearVisitedLinks) +STUB("HiiZOtEj+V4", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle17unsetPerFranchiseEv) +STUB( + "HitMamX+gHU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEEC1Ev) +STUB( + "HiyGzpGVU+8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEC1EPNS2_10LibContextE) +STUB("Hj+LNdBr5fg", _ZN3JSC2VM30moduleNamespaceObjectSpaceSlowEv) +STUB( + "Hj0aoAVQel8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEC2EPS8_) +STUB( + "Hj1JDA4AF+E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEE11release_refEv) +STUB( + "Hj1RDgscHqA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEED2Ev) +STUB("Hj31N2JSU2M", ubrk_refreshUText) +STUB("Hj3d3tyRIpY", wctype_tab) +STUB("Hj3klsYNFCU", _ZN7WebCore6Editor20canSmartCopyOrDeleteEv) STUB("Hj4eWnDektQ", sceAgcDriverSetupRegisterShadow) +STUB("Hj5XAm2bfd0", log2e) +STUB( + "Hj6Z2I24k64", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEEaSERKSA_) +STUB( + "Hj7+Vk2hDEk", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V324ValidationConstraintInfoC2EPNS1_6Common10LibContextE) +STUB( + "HjFMjZsRlW8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEmmEv) +STUB( + "HjIpHPp6ZTU", + _ZN7WebCore15JSFetchResponseC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_13FetchResponseENS6_13DumbPtrTraitsIS8_EEEE) +STUB("HjJvp8fMoRM", _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V16RatingD1Ev) +STUB( + "HjLroYdM0Qo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEdeEv) +STUB( + "HjMOzo1hGts", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("HjP7xGsP+fY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEC1ERKS7_) +STUB("HjS-hWzdVyw", _ZN3WTF13MetaAllocator18debugFreeSpaceSizeEv) +STUB("HjVPfi0omIY", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead14getCustomData1Ev) +STUB("HjZKTNaHsv0", _ZN12video_parser10cVideoPath21StandardizePathStringEPcPS1_) +STUB("HjbL1QMKb7Q", _ZN10MsvUpdater11getFileSizeEmPl) +STUB("HjhPNUX3UO8", _ZN7WebCore18PlatformPasteboardC2ERKN3WTF6StringE) +STUB("HjlABSyLzNg", FcPatternGetFTFace) +STUB("HjmOQPiuspU", JSObjectDeletePrivateProperty) +STUB( + "HjmQjfMb2VA", + _ZN9Inspector20DOMBackendDispatcher17setAttributeValueElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) STUB("Hjxpy28aID8", sceNetCtlUnregisterCallbackV6IpcInt) +STUB("Hk5rEKZCxE0", mono_aot_System_Netjit_code_start) +STUB("Hk7iHmGxB18", ipmimgr_call) +STUB("Hk8iQRmEvCo", _ZN3sce7Toolkit2NP2V28Commerce12SubContaineraSERKS4_) +STUB( + "HkB5TPIujPc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEC2ERS7_) +STUB( + "HkEZSBU2EyU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEE11get_deleterEv) +STUB("HkP1nzuy6bs", initialize_Jp) +STUB("HkSJXCHCQCU", FT_Reference_Face) +STUB("HkT3ygqjkCg", _ZN4IPMI6ServerD2Ev) STUB("HkUgFhrpAD4", sceNpManagerIntGetAuthServerErrorFlag) STUB("HkXJ7FFaQK8", sceAudioOutExGetOutputInfo) +STUB("HkXgZNMy-Sw", YGNodeStyleGetFlexDirection) +STUB("HkYCXGbS+Qs", _ZN3sce2np18HttpConnectionPool10UnregisterEPNS0_14HttpConnectionE) +STUB( + "HkYyg9sti+s", + _ZN3sce2Np9CppWebApi14SessionManager2V127PostGameSessionsRequestBodyC2EPNS1_6Common10LibContextE) +STUB( + "HkZuyhS7pm4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEEC2EPS8_PNS2_10LibContextE) +STUB("Hka9gz6FuDs", u_getPropertyValueName) +STUB( + "HkbT+otxL4s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE10setContextEPNS2_10LibContextE) +STUB("Hkm3Dfu-aW4", _ZN9Inspector22InspectorDebuggerAgent12assertPausedERN3WTF6StringE) +STUB( + "HknpRUcmqi0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEED1Ev) +STUB("Hkp7M+pJILk", cairo_get_line_cap) +STUB("HkrWkPbiP6s", _ZN3sce2Np9CppWebApi10Activities2V114UserActivities5Error16unsetReferenceIdEv) STUB("HkuBuYhYaPg", sceUserServiceSetThemeTextShadow) +STUB( + "HkvLHXioWUU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEppEi) +STUB("Hl0w9R+ZEg4", _ZN3JSC7Symbols43asyncGeneratorFieldSuspendReasonPrivateNameE) +STUB( + "Hl2GmKPlvIk", + _ZN9Inspector15ScriptCallStackC2ERN3WTF6VectorINS_15ScriptCallFrameELm0ENS1_15CrashOnOverflowELm16EEE) +STUB("Hl458iz-luE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEEC2ERKS7_) +STUB( + "Hl7RCpqqp+Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEC1ERKS7_) +STUB("Hl8YduKcROo", ubiditransform_transform_67) +STUB("HlBFvGj3ckU", _ZN3sce2Np9CppWebApi6Common13ConstIteratorImEC2EPKm) +STUB("HlDiu7tCnh8", + _ZN3sce4Json5Value9serializeERSbIcSt11char_traitsIcENS0_8StlAllocIcEEEPFiS7_PvES8_) +STUB( + "HlHJwCrgEJk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEdeEv) +STUB( + "HlHb8LLob6o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEptEv) STUB("HlJPUgz3lgc", sceNpUtilUtf8GetOneChar) +STUB( + "HlMp8dedzx0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEmmEv) STUB("HlPrXSZTbS0", sceWkFontConfigGetFontPath) +STUB("HlTBv1Nlo7w", mono_security_core_clr_require_elevated_permissions) STUB("HlTPoZ-oY7Y", sceGnmDrawIndex) +STUB("HlTxzdeueXA", _ZN7WebCore14FrameSelection9selectAllEv) +STUB("HlUauT-hotg", + _ZN15AbstractStorage15FacebookStorage9SerializeESt10shared_ptrINS_7ContentEES1_INS_4ItemEE) +STUB("HlaoRo4Ttd0", + _ZN7WebCore28convertToIntegerEnforceRangeItEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB("HldN461O2Dw", _ZN3sce2np8WorkItemC2EPKc) +STUB( + "HldZihgdrns", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEED1Ev) +STUB("HlpzPvFHtkw", mono_aot_Sce_Vsh_Thememethod_addresses) +STUB( + "HlrXr8XU-Yw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEC1EPKS8_) +STUB( + "HltBAtBTmPY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("HltDA5NKEtk", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE3endEv) +STUB( + "HlwjIo1Fsos", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEE5resetEPS9_) STUB("HlzHlgqiBo8", scePthreadSuspendAll) +STUB("Hm169FldTsE", + _Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm13TdPerfCounterE20SceRazorGpuBroadcast) +STUB("Hm5HSXOiUr0", _ZNK3JSC7JSValue14toThisSlowCaseEPNS_14JSGlobalObjectENS_8ECMAModeE) +STUB("Hm7OSZZdfjo", _ZN4Manx9X509chainD1Ev) STUB("Hm7qubT3b70", sceNpUniversalDataSystemCreateEventPropertyArray) +STUB( + "HmAA0DCQOlQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "HmJtgkXAwIg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEE11get_deleterEv) +STUB( + "HmNgpKIBMjo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEED2Ev) +STUB("HmQHtS5+jlQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEEC2EPS5_PNS2_10LibContextE) +STUB( + "HmVdaW4zRvc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("HmWV8JHMYm8", mono_store_remote_field_new) +STUB( + "HmatGA6y7Uw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEptEv) +STUB("HmcMLz3cPkM", _ZNSt10moneypunctIwLb1EE7_GetcatEPPKNSt6locale5facetEPKS1_) +STUB("HmdaOhdCr88", _Erf_one) STUB("HmgKoOWpUc8", sceLibcOnce) +STUB("Hmquk4Q8zgk", mono_aot_appplt_end) +STUB( + "HmscKeiU93I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEEC1ERSB_) +STUB( + "Hmzbdbje1Zw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEppEv) +STUB("Hn+oQHUrE1M", + _ZNK7WebCore22EmptyFrameLoaderClient18cannotShowURLErrorERKNS_15ResourceRequestE) +STUB( + "Hn+zWluTQOI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE4sizeEv) +STUB( + "Hn-T0hnkwg8", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessions9terminateEv) +STUB("Hn3uYKN4eRc", mono_marshal_string_to_utf16) +STUB( + "Hn5zuZQyWiA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEEdeEv) +STUB("HnD9AnPLXJ0", _ZN3sce7Toolkit2NP2V28Commerce10DescriptorC1Ev) +STUB("HnEU93QBgkw", _ZN7WebCore16HTMLMediaElement23setWebkitPreservesPitchEb) +STUB("HnFVdtdSIN4", fuse_fs_mkdir) +STUB("HnH+6f8sU60", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V110UpdateModeEEdeEv) STUB("HnIuDIXu7Ko", sceNpSnsYouTubeDialogInitialize) +STUB("HnJqiEMMxRI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE5clearEv) STUB("HnLtsMPtlvI", sceHandDetectionLocal) +STUB( + "HnNP3cD23D0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("HnO9++6MtoY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS15TusDataStatusesEE5resetEv) +STUB("HnR1Ryt7Lnc", fuse_session_add_chan) +STUB( + "HnR6c2nbGEU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "HnRj+5kX8eo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEED1Ev) STUB("HnV+y1xVP2c", sceNpPush2DeleteUserContext) +STUB("HnVgP2pQrgE", + _ZN7WebCore8Document36updateLayoutIgnorePendingStylesheetsENS0_18RunPostLayoutTasksE) STUB("HnWRDz8K3l4", sceEsvmEngineMediaKeysSetServerCertificate) +STUB( + "HnZ39HX8Dqc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEEptEv) +STUB( + "HncryaE59Ok", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEmmEi) STUB("HneC+SpeLwc", sceNpManagerIntDeleteRequest) +STUB("HneyXNQpPhQ", u_isgraph) +STUB("HnfoQSPjI7o", xmlByteConsumed) +STUB("HngLT8ghSjc", _ZN7WebCore19StorageQuotaManager20resetQuotaForTestingEv) +STUB( + "HngShRrV5kE", + _ZN9Inspector26InspectorBackendDispatcherC1ERNS_17BackendDispatcherEPNS_33InspectorBackendDispatcherHandlerE) +STUB( + "Hnho55B7DoY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEC1EPS6_PNS2_10LibContextE) +STUB("Hnrc4jUGrL4", audiodeccpuinternal_core_ops_dts_hd_ma) STUB("HntZzPkuaTo", sceBgftServiceIntDownloadDebugGetStat) +STUB( + "HnyxjeNNchI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEE7get_refEv) +STUB( + "Hnz03JdIuKk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEE3getEv) +STUB("Ho1p29Wuuvk", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce19ServiceEntitlementsEE12deepCopyFromERS7_) STUB("Ho5NVQzpKHo", sceImeConfigGet) +STUB("Ho7945yolEI", _ZN7WebCore12EventHandler30setCapturingMouseEventsElementEPNS_7ElementE) +STUB("HoLVWNanBBc", getpid) +STUB("HoNF5D0T-pk", mono_aot_Sce_Vsh_Np_AppLaunchLinkjit_code_end) STUB("HoPC33siDD4", sceNpInt64ToStr) STUB("HoPNIMLMmW8", sceFontGraphicsCanvasSetSurfaceFill) +STUB( + "HoQdTPvJhlg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEC1EPKS8_) +STUB( + "HoSVUe0PlfM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE6resizeEj) +STUB( + "HoSxSE9oGbI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEeqERKS9_) +STUB( + "HoTpD8+xhWc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE7reserveEi) STUB("HoV-GJyx7YY", sceNetGetIfList) +STUB("HoXiuWuma4I", + _ZNK3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead12getSessionIdEv) +STUB( + "Hoa5PX6QgpA", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_6Canvas10ShaderTypeEEESt8optionalIT_ERKN3WTF6StringE) +STUB("HofoEUZ5mOM", CERT_rawVerifyOID2) +STUB("HohNCzDzBW0", RSA_sign) +STUB( + "HojO5G-mwXU", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB( + "HopC1fPz8SQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEdeEv) +STUB("HopnL7CuhJk", _ZNK7WebCore12NamedNodeMap14getNamedItemNSERKN3WTF10AtomStringES4_) STUB("HoqTrkS9c5Q", sceNpMatching2SetRoomMemberDataInternal) +STUB("HorGWGukVpo", _ZN7bmalloc15IsoHeapImplBase9footprintEv) +STUB("Hotsqx1YfB0", _ZN12video_parser18cProfileCheckerMp418isPlayableSubtitleERKNS_13VpMediaInfo_tE) STUB("How7B8Oet6k", scePthreadGetname) +STUB("Hoy0pcsXYvA", mono_install_lookup_dynamic_token) STUB("Hp3NIFhUXvQ", sceFontGraphicsStructureDesignResource) +STUB("Hp5F2y3u8kU", _ZN3sce2Np9CppWebApi13InGameCatalog2V55ImageC1EPNS1_6Common10LibContextE) +STUB( + "Hp5aQR2E830", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEEC2Ev) +STUB( + "Hp9RCDqDZUI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEneERKS9_) +STUB("HpAlvhNKb2Y", _ZNKSt22_System_error_category7messageEi) +STUB("HpCeP12cuNY", _ZNSoD1Ev) STUB("HpLCF06Oa0w", sceDevUsbInit) +STUB("HpTU5H3Ifn4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEdeEv) +STUB("HpTh1ncXggE", uscript_hasScript_59) +STUB( + "HpZjemVsJwc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEdeEv) +STUB( + "HpbAnMRU8Js", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEppEv) +STUB("HpgdHWqIO28", _ZN7WebCore22EmptyFrameLoaderClient19updateGlobalHistoryEv) STUB("HpjkTSPG-LQ", sceRnpsAppMgrPushEventForShellUI) +STUB("HpqE8LZzJq0", _ZN9Inspector8Protocol8Timeline13TimelineEvent4TypeE) +STUB("Hpqigs6H3OI", _ZN4Manx11MediaPlayer15maxTimeSeekableEv) +STUB("Hq2MK40I6Lw", _ZN3sce7Toolkit2NP2V23TUS12TusVariablesC1Ev) STUB("Hq2VRfX3OOk", sceAudioOut2LoContextPush) +STUB("Hq8zMjWpUu8", _ZNK7WebCore11RenderStyle18computedLineHeightEv) +STUB("Hq9-2AMG+ks", posix_spawnattr_destroy) +STUB("HqB+7Yqc1yw", _ZN7WebCore23ApplicationCacheStorage18vacuumDatabaseFileEv) STUB("HqBmVIFhqAo", sceUserServiceSetGamePresets) +STUB( + "HqG2Uypw-E8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEEaSERSA_) +STUB( + "HqHtlUFXo3k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEmmEv) +STUB( + "HqOTLR+07Xo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEED1Ev) +STUB("HqOyInbNB+8", _ZN9Inspector17ScriptDebugServernwEm) +STUB( + "HqPYgCpnYPY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEEaSERSA_) +STUB( + "HqUX52XTFc4", + _ZN7WebCore13GraphicsLayer6createEPNS_20GraphicsLayerFactoryERNS_19GraphicsLayerClientENS0_4TypeE) +STUB("HqZ0tOXvi+A", _ZNK7WebCore16ISOSchemeTypeBox10schemeTypeEv) +STUB( + "HqZQ5ecjFpI", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_11EntitlementENS1_15AppSTLAllocatorIS5_EEEED1Ev) +STUB("HqaR-dKhU0Q", mono_btls_x509_store_ctx_set_param) +STUB( + "Hqeq+s0Id70", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEC2EPS8_) +STUB("HqqUHMbskgo", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth8AuthCodeEED2Ev) STUB("Hr-OkmQ25GM", sceUpsrvUpdateDoUpdateBeta) +STUB( + "Hr6GNBRI0Rg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEC1EPS8_) +STUB("Hr6dWGk7qZg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEC1ERS7_) +STUB("HrAPht9ZYiE", mono_object_clone) +STUB( + "HrAyMVbGTJ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEE11get_deleterEv) +STUB("HrCznvA8AQk", X509_up_ref) +STUB( + "HrHBTXdGZ0o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEC2EPS7_PFvS9_EPNS2_10LibContextE) +STUB("HrKzZ9BUJ2w", il2cpp_class_value_size) +STUB( + "HrQAoPiGsAs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEC2Ev) +STUB( + "HrR4eZqkclI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEeqERKS9_) +STUB("HrVr0FDsbc8", _ZN15AbstractStorage12LocalServiceD0Ev) +STUB("HrW4LrMta4w", WKContextSetCookieStorageDirectory) +STUB( + "HrZWq6nXhqo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEC1EPNS2_10LibContextE) +STUB("HrZyCKrH7rE", _ZN7WebCore11MathMLNames14separatorsAttrE) +STUB("Hrb0PpvlXDQ", mono_aot_Sce_Vsh_Sl2_Sl2Deliverjit_got) +STUB( + "Hrgeud6SQiY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEC2EPS8_) +STUB("Hrl76mzEvrc", _ZN7WebCore16BackForwardCache6removeERNS_11HistoryItemE) STUB("Hrs7gsCRlk0", sceAvControlIsDeviceConnected) +STUB("Hrux++TH0pI", mono_shared_hashtable_new) +STUB("Hrwct6Zk9pA", _ZN7WebCore16convertToIntegerIlEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB( + "Hs2zpYzELSk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE10setContextEPNS2_10LibContextE) +STUB("Hs586a2xPis", uldn_getDialectHandling_67) +STUB( + "Hs5W5AD1hso", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemProperties56getpatchGameSessionsSessionIdMembersAccountIdRequestBodyEv) +STUB("Hs7FP4ljGT4", WKDoubleCreate) +STUB("HsBUGXopmbQ", _ZN7WebCore8Document13setXMLVersionERKN3WTF6StringE) +STUB( + "HsBVdL+SrWA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEEC1Ev) +STUB("HsBiFJJIQ5Q", _ZN7WebCore15JSSVGSVGElementD1Ev) STUB("HsHttp1Ktm0", sceNpManagerIntGetTitleTokenWithCheck) +STUB( + "HsIbgeDeBcw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEEC1Ev) STUB("HsLtF4jKe48", sceGnmDebuggerResumeWavefront) +STUB("HsNDwPVrVQA", _ZN7WebCore28InspectorFrontendClientLocal12moveWindowByEff) STUB("HsOlaoGngDc", sceUserServiceGetPbtcFlag) +STUB( + "HsX3lXxmzHQ", + _ZN7WebCore15UserInputBridge23handleMouseReleaseEventERKNS_18PlatformMouseEventENS_11InputSourceE) +STUB( + "HsYJgEyCGME", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEE7get_refEv) +STUB( + "HsbkZR1yfGQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) STUB("HsjvaxD7veE", sceUserServiceSetPbtcTzOffset) +STUB( + "HslX-CAf8Lg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEE11release_refEv) +STUB("HslyHL5sc6M", mono_aot_Sce_Facebook_CSSLayoutplt) +STUB( + "HssCUpc1uxk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB("HsvhqOV4Emw", mono_aot_Sce_Vsh_JsExtensionplt) +STUB("Hsz9u38ULuI", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request8SetLikedD2Ev) STUB("Ht6MNTl-je4", sceNpTrophyGroupArrayGetNum) +STUB("Ht77qXUqN7U", _ZN3sce7Toolkit2NP2V24Core7Request11AddCallbackC1Ev) +STUB("HtA8DLhQEY4", _ZN7WebCore9HTMLNames7baseTagE) +STUB("HtBKMIkuZes", _ZN19JITSharedTextMemory15shared_mallinfoEv) +STUB("HtOUO45KkKk", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament5EventEE3setEv) +STUB("HtSUddn6TJk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEEC1EPKS6_) +STUB( + "HtYgU5+9VFg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEED2Ev) +STUB( + "HtazgCZ-lU4", + _ZN3JSC26UnlinkedFunctionExecutable4linkERNS_2VMEPNS_16ScriptExecutableERKNS_10SourceCodeEN3WTF8OptionalIiEENS_9IntrinsicEb) STUB("HtpGVrVLOlA", sceNpAsmClientGetNpTitleToken) +STUB("Htr6CcbIOGQ", ENGINE_cleanup) +STUB( + "HtwHiIbHimA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEC1EPNS2_10LibContextE) STUB("HtwSd4H2Tws", sceVideoOutAddDriver) +STUB( + "HtwXx3HHRx0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEppEi) STUB("Htwoe5tvNYg", sceKernelGetUtokenExpirationTimeNotbeforeForRcmgr) +STUB( + "Htx3Yd0Q-Ac", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEE7add_refEv) +STUB( + "Hu1Xd3XqbhE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEC1ERKS7_) +STUB("Hu446VFzW+0", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEE3getEv) +STUB("HuHO7Bn9W5k", _ZN7WebCore20PasteboardCustomDataC2EOS0_) +STUB( + "HuJboplhsQk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEED1Ev) STUB("HuToUt1GQ8w", sceSaveDataRestoreBackupDataForCdlg) STUB("HuViW4HnrOw", sceVideoOutSubmitChangeBufferAttribute2) STUB("HuVpMjidh7c", sceRegMgrCntSetInitReinst) +STUB("HubR2yeq+44", _ZN7WebCore9HTMLNames16onmousewheelAttrE) +STUB( + "HucH4MunMII", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEC1Ev) STUB("HudB2Jv2MPY", scePthreadBarrierDestroy) +STUB( + "HudRVdJx6FI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEcvbEv) +STUB( + "HudZTXkhQuc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEC2EPNS2_10LibContextE) +STUB("HulhdZP2sYE", _ZNK23sceMetadataReaderWriter8Metadata13getFieldCountEv) +STUB("HuqEAwuDxe8", WKCookieManagerDeleteAllCookies) +STUB("Hutj4lBiCRE", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_clearEventTime) +STUB("HuvWHTju1hA", + _ZN3sce2Np9CppWebApi12Leaderboards2V122GetRankingResponseBody18setTotalEntryCountERKi) +STUB( + "Huy1Np79EIs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEEC1ERSA_) +STUB("HuzRYUDiRD0", _ZN3sce3pss5orbis5video15VideoPlayerBase12SetLoopRangeEmm) +STUB( + "Hv8UFPjBI1M", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyC2EPNS1_6Common10LibContextE) +STUB("Hv9QKbZceis", _ZN7WebCore21JSTextTrackCueGeneric15subspaceForImplERN3JSC2VME) +STUB( + "Hv9Tgn96zwA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE8pushBackERKS8_) +STUB("HvBLOrV8h-c", _ZN3JSC7Symbols31mapIteratorFieldKindPrivateNameE) +STUB( + "HvCNWNwLOe0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEC1Ev) +STUB("HvGfmLy4yLE", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_23NpSessionInvitationInfoEE10deallocateEPS3_m) +STUB("HvHPvwdkpqc", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16TrophyPackTrophyEEC1Ev) +STUB("HvLTnNM22B4", _ZN7WebCore9HTMLNames11datalistTagE) STUB("HvNrMhlWBSk", sceNpManagerIntGetAccountNpEnv) +STUB("HvPrgqyNx4U", + _ZN7WebCore24CoordinatedGraphicsLayerC2ENS_13GraphicsLayer4TypeERNS_19GraphicsLayerClientE) +STUB("HvQmbphoT1c", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEEcvbEv) +STUB( + "HvQnW-f8OF4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE7popBackEv) +STUB( + "HvTb0HQnH8Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEneERKS9_) +STUB("HvTorT+TclQ", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request15PostInGameStoryC1Ev) +STUB("HvUE8aVx9qQ", _ZN7WebCore9HTMLNames7bodyTagE) +STUB("HvW3PREOGso", showCommInfoList) STUB("Hvd3S--n25w", sceUsbdFreeConfigDescriptor) +STUB("Hvh1mwfScPE", _ZTVN7WebCore20SVGPathStringBuilderE) +STUB("HvjZPtAnjuQ", _ZN7WebCore9FrameTree7setNameERKN3WTF10AtomStringE) STUB("Hvl1+ARWoss", sceKernelWaitAIOs) +STUB("HvoRj7fP+dU", _ZN7WebCore20PasteboardCustomDataC1ERKS0_) +STUB("HvoicOVEJnE", _ZN7WebCore7JSRange7destroyEPN3JSC6JSCellE) +STUB("HvpAPSloiLA", WKViewCreate) STUB("Hvpr+otU4bo", sceNpHexToInt) +STUB( + "Hvu940EAVQM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEEC1EPS7_PFvS9_EPNS2_10LibContextE) +STUB( + "Hw3J05eITjI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEC1ERKS7_) STUB("HwBlC8TLKHQ", sceSlimglCompositorWaitPostEvent) +STUB("HwBrtLl-5IY", _ZN3sce4Json6Parser11parseObjectERNS0_5ValueERNS0_11InputStreamEPS2_) +STUB("HwDt5lD9Bfo", _ZNK3sce4Json5ValueixEPKc) STUB("HwEtHFCpU5U", sceGameCustomDataDialogTerminate) STUB("HwFpasG4+kM", sceUserServiceSetGlsLiveQuality4) +STUB( + "HwGgXncyRRA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEneERKS9_) +STUB( + "HwI4L9kQ4jk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEEC2ERSA_) +STUB("HwJ0Nml4P8s", jpeg_stdio_dest) STUB("HwP3aM+c85c", sceNpWebApi2GetHttpResponseHeaderValueLength) +STUB( + "HwUJKvsLdog", + _ZN3sce7Toolkit2NP10Challenges9Interface11getItemListEPKNS1_27ChallengeGetItemListRequestEPNS1_9Utilities6FutureISt6vectorINS1_20ChallengeRecvDetailsENS1_15AppSTLAllocatorISA_EEEEEb) +STUB("HwXXEzgOcpI", _ZN3sce2Np9CppWebApi6Common6VectorIdE21intrusive_ptr_sub_refEPS4_) +STUB( + "HwXdgSMYiHM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEE7add_refEv) +STUB( + "Hwgy7k3QmR4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEE6assignEPS6_PFvS8_EPNS2_10LibContextE) STUB("Hwh11+m5KoI", sceJpegDecDelete) +STUB("Hwk+RGbntvs", _ZN7WebCore4Node12insertBeforeERS0_PS0_) +STUB( + "Hwq3vIkbtl0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEE7get_refEv) +STUB( + "Hwq5Y8QF-eU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEEC1ERSA_) +STUB("HwrbuxHk7pM", _ZN12video_parser12cVpFileCache11updateCacheEPNS0_10_CacheInfoEx) +STUB("HwtOCKw3ioM", _ZN7WebCore10FileSystem24pathByAppendingComponentERKN3WTF6StringES4_) +STUB("HwzPEj3BPu8", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia6VideosEEC2Ev) +STUB("Hwzak1JVoDY", WKAXObjectDescription) +STUB( + "HwzmV2hFl78", + _ZN7WebCore10JSLocationC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_8LocationENS6_13DumbPtrTraitsIS8_EEEE) +STUB("Hx-KCms9n4s", get_vm_map_timestamp) +STUB("Hx-h8By+tlQ", _ZN3JSC7Symbols21tryGetByIdPrivateNameE) +STUB("Hx42BduDriQ", unum_getDoubleAttribute_67) +STUB( + "Hx5k9hp9kyY", + _ZN9Inspector20CSSBackendDispatcher23getMatchedStylesForNodeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "Hx8cvWyMdqI", + _ZN3sce7Toolkit2NP7Friends9Interface14getFriendslistEPNS1_9Utilities6FutureISt6vectorINS1_6NpUserENS1_15AppSTLAllocatorIS7_EEEEEPKNS1_17FriendInfoRequestEb) +STUB( + "HxBHZlSJURQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEC1Ev) +STUB("HxBLq92LRQE", mono_metadata_get_generic_param_row) +STUB("HxFAszDPXuE", FcPatternEqual) STUB("HxGTYmj3LJ8", sceDebugNoStopChildProcesses) +STUB( + "HxNK4fMru50", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEE7add_refEv) STUB("HxNRiCWfVFw", sceUserServiceGetGlsBroadcastService) +STUB( + "HxSNBA3c8ng", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEEC2ERKSB_) +STUB("HxT+avGg5Os", _ZNK7WebCore5Range11compareNodeERNS_4NodeE) +STUB( + "HxTHcSd2W4A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE6resizeEj) +STUB( + "HxVEOQ4AHyU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEE11get_deleterEv) +STUB( + "Hxe1ODZWiog", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEppEv) +STUB( + "HxgY49RI8SE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB( + "HxixVeKsCSs", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEiRNS2_10LibContextEPT_m) +STUB("HxkNBh-aMFs", _ZN3JSC11IsoSubspaceC2EN3WTF7CStringERNS_4HeapEPNS_12HeapCellTypeEmh) +STUB( + "HxktJWXWl4Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE5emptyEv) +STUB( + "Hxn2+rK0EL0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEC2Ev) +STUB("Hxo8IehmtCI", Java_com_sony_gemstack_io_factories_jar_JarRandomAccessFile_setProxy) +STUB("HxtyQSJ7YO0", MvpHttpAbort) +STUB("HxuW4PZLWgs", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE6resizeEj) +STUB("HxyAlvMOndQ", _ZN3sce7Toolkit2NP2V212ActivityFeed11SharedVideo17CREATION_DATE_LENE) +STUB( + "HxybCxtAU6k", + _ZN7WebCore22EmptyFrameLoaderClient20createDocumentLoaderERKNS_15ResourceRequestERKNS_14SubstituteDataE) +STUB("HxzaHLBNjzs", _ZN7WebCore24CoordinatedGraphicsLayer14setDebugBorderERKNS_5ColorEf) +STUB( + "Hy+XbWCor78", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE5beginEv) +STUB( + "Hy-BttwDSd8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEC1EPS8_) +STUB( + "Hy-R9RdALFg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEppEi) +STUB("Hy91MjhKaFU", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11EntitlementEEeqERKS4_) +STUB("HyC1lgnGOAU", _ZN3sce3Xml3Dom8Document7setTextENS1_6NodeIdEPKNS0_6StringE) +STUB("HyH55WWqwZo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEE11release_refEv) +STUB( + "HyNVGQfOOBs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEE7add_refEv) +STUB( + "HycO2SHk5+w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEC1Ev) STUB("Hyg37zqntzY", sceMoveTrackerCaptureTerm) +STUB( + "HyibZzuFSqk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE10setContextEPNS2_10LibContextE) +STUB("Hyj-J0JdS-o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEE11release_refEv) +STUB("HykcoTLLx5o", _ZN3WTF14AtomStringImpl3addEPKh) +STUB("HyplwWzKSjo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEcvbEv) STUB("HyrG1GT4JxI", sceNpManagerIntStartSystemMode) +STUB("HysMhJhMBIs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEC2Ev) +STUB("HyudEvY2tuo", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEE5resetEPS5_) +STUB("HywoTZ3E+V4", _ZN9Inspector21InjectedScriptManagerD0Ev) +STUB("Hyxyxn00C18", _ZN15AbstractStorage10YoutubeAPI11SendContentEPKvl) +STUB("Hz2fNnKN8iA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEED2Ev) +STUB( + "Hz5hldlzg-A", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE5beginEv) +STUB( + "Hz5lfz9LodE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEC1Ev) +STUB("Hz70-NKc3Sw", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEEixEm) +STUB( + "HzB+FOawf44", + _ZN7WebCore10MouseEvent6createERKN3WTF10AtomStringEONS1_6RefPtrINS_11WindowProxyENS1_13DumbPtrTraitsIS6_EEEERKNS_18PlatformMouseEventEiPNS_4NodeE) STUB("HzC60MfjJxU", sceMoveOpen) +STUB( + "HzCyp6A2nXc", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations28setxPsnAcceptPlatformNamePs5ENS5_25XPsnAcceptPlatformNamePs5E) STUB("HzMN7ANqYEc", sceGnmValidateGetVersion) +STUB("HzRe5zmL5zM", _ZThn136_NK7WebCore16HTMLMediaElement12isFullscreenEv) +STUB("HzWS4hQruF8", mono_btls_x509_revoked_free) +STUB( + "HzY7ZJMLh8c", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "HzaUNqbKjl0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEEC1ERSA_) +STUB( + "HzdpyzFwVUk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEppEi) +STUB("HzhgdsSJKDo", _ZN7WebCore15AffineTransform6rotateEd) +STUB( + "HzmLioyFqX0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEC1Ev) +STUB("HzmsiSfYg3Q", _ZN3sce3Xml11InitializerC2Ev) +STUB("HznU2Kio9L4", Java_com_sony_gemstack_org_dvb_application_AppsDatabaseImpl_n_1acceptRunningApp) STUB("HzrIn-Voa5o", sceHmdInternalSetIPDSettingEnableForSystemService) +STUB("HzzBW6y3kkI", mono_aot_Sce_Vsh_ShareServerPostWrapperunbox_trampolines) +STUB("I++dHwS1YAg", _ZN3sce7Toolkit2NP2V29Challenge13ChallengeData5resetEv) +STUB("I+-o3X+hjBc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEED2Ev) +STUB("I+-pHtw7CLo", _ZN7WebCore18HTMLMarqueeElement15setScrollAmountEj) +STUB("I+2QnmhN3xc", glInvalidateFramebuffer) +STUB( + "I+4x7ybyVyA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEC1EPKS8_) +STUB("I+6+ql8bCcU", _ZN3NTF3URL7setPortERKSs) +STUB("I+GDa7o5LiY", _ZN3NTF17URLRequestJobImpl6cancelEv) +STUB( + "I+HhKO5gy1c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEC1Ev) +STUB("I+IY6JkIpEk", _ZN7WebCore11MathMLNames13fontstyleAttrE) +STUB("I+K-67VMRow", mono_aot_Sce_Vsh_Stickerplt) +STUB( + "I+MbciRxosY", + _ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody13setUpdateModeERKNS3_10UpdateModeE) STUB("I+RLwaauggA", sceNgs2StreamCreateWithAllocator) +STUB("I+TiE5hPhjg", nsnp_GetLicensePath) +STUB("I+V5wgZhwsA", udat_getNumberFormatForField_67) +STUB( + "I+XWif-alZk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("I+YE3T6fsQY", __start__Zinit) +STUB( + "I+ZDhohdbcg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB( + "I+ap4-yvqiA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEED1Ev) +STUB( + "I+bgxHFUA0U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "I+fZ-VItu5I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEED2Ev) +STUB("I+pR0r79q1A", _ZN9Inspector27DOMBackendDispatcherHandlerC2Ev) +STUB("I+tdxsCap08", _ZN3sce16CommonDialogUtil6Client11closeModuleEv) +STUB( + "I+y49AtjafQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB( + "I+zbh-6REWE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEppEi) +STUB("I--4149DxrU", _ZN3sce7Toolkit2NP2V29Challenge18ChallengeThumbnailC2ERKS4_) +STUB( + "I-0-kkAjbJA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEE11release_refEv) +STUB( + "I-7BpUKxodc", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody30unsetExclusiveLeaderPrivilegesEv) +STUB("I-9gOw3TczI", _ZN12video_parser5vpcom7_CallocEjj) +STUB( + "I-BSe92jZDk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEE5resetEPS9_) +STUB( + "I-ItK2bBlz8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEC1EPNS2_10LibContextE) +STUB( + "I-NgaY9QQOU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEE7add_refEv) +STUB("I-OpF7lc-YM", JSObjectGetTypedArrayBytesPtr) STUB("I-Qm+MEso5c", sceAmprMeasureCommandSizeWriteCounter_04_00) +STUB( + "I-aeyhNd1+w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEC1ERKS7_) +STUB("I-cP9AIOPqU", _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead12getSessionIdEv) +STUB("I-e7Dxo087A", _ZNSt8messagesIwED2Ev) +STUB("I-ibC-yZF-4", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V16StatusEEeqERKS7_) +STUB( + "I-mBl12SRH4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEC1Ev) +STUB("I-pl6ntSrYY", mono_thread_set_main) +STUB("I01-BrwepO0", _ZN23sceMetadataReaderWriter15g_parserManagerE) +STUB( + "I01ROKxd9X0", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations9hasfieldsEv) +STUB( + "I03uFJJiOXQ", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStats16hasincludeFieldsEv) +STUB( + "I0DaesQ+R8g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE7popBackEv) +STUB("I0NudvE3nE4", il2cpp_class_num_fields) +STUB("I0NvvnK49NE", _ZN3JSC7Symbols15bindPrivateNameE) +STUB("I0PkxCo7wxQ", JSGlobalContextSetName) +STUB( + "I0U0A7ZCYYo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEdeEv) +STUB("I0aP03UbIDY", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V18Variable10unsetOwnerEv) +STUB( + "I0gB28CY8cg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEppEv) +STUB("I0gE8x3npgg", _ZN3JSC2VM13deleteAllCodeENS_19DeleteAllCodeEffortE) +STUB( + "I0jvF3TAsRw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEC1Ev) +STUB( + "I0lLldwoWvA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEppEv) +STUB( + "I0p5mNRNKpk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE21intrusive_ptr_add_refEPS9_) +STUB("I0rhSugtjy4", _ZNK3sce2Np9CppWebApi14ConnectAccount2V212PartnerToken14getAccessTokenEv) +STUB("I0wxpjuw6sE", WKPreferencesGetMetaRefreshEnabled) +STUB( + "I0xM2Ano9MA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEmmEi) +STUB("I0xZP3C3o-c", JVM_DoPrivileged) +STUB("I1+mzAGuKcg", _ZN3sce7Toolkit2NP2V28Commerce19ServiceEntitlementsD2Ev) STUB("I111PPn2g18", sceKernelWriteSdkEventLog) +STUB("I14Gu-NUIUY", + _ZN3sce3pss5orbis9framework8PsmEvent17RegisterDelegatorEPFvRKNS2_12PsmEventDataEPvES7_) +STUB( + "I14t5MhQ748", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEEC1Ev) +STUB("I15XV7WYEos", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification18NewGameDataMessageEED2Ev) +STUB("I17tgnlvhP8", _ZN3sce7Toolkit2NP2V27Session7Request6Create15MIN_INDEX_VALUEE) +STUB("I1F05HKGkII", mono_file_map_open) +STUB("I1J4AmgICLM", sqlite3_bind_int64) +STUB( + "I1KbWBfyHUQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "I1MLCrKVm2U", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEeqERKS9_) +STUB( + "I1MtHmhZoe4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEE11release_refEv) +STUB( + "I1OWnbqI2gY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE7releaseEv) +STUB( + "I1Pz9Bq+RVQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEcvbEv) +STUB("I1Ru2fZJDoE", _ZTSN10__cxxabiv121__vmi_class_type_infoE) +STUB("I1Va5Dj8ffk", monoeg_g_error_free) +STUB("I1ZbKvN8bN4", _ZN7WebCore9HTMLNames9colorAttrE) STUB("I1acwR7Qp8E", sceFontSetResolutionDpi) +STUB("I1kBZV6keO4", _ZN3sce2np5Mutex4ctorEv) +STUB( + "I1kzbvZD1nA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE21intrusive_ptr_add_refEPSA_) +STUB("I1vyHN9q4rk", mono_aot_Sce_Vsh_Sticker_StickerLibAccessormethod_addresses) +STUB( + "I24Y8z96Fd8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEEC1ERSA_) +STUB("I25bsv++cMg", _ZN3sce7Toolkit2NP2V28Commerce7Request29DisplayVoucherCodeInputDialogD1Ev) +STUB("I29SrxImX-A", _ZN3WTF6String23make8BitFrom16BitSourceEPKDsm) +STUB( + "I2E-Htqt84w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEppEi) +STUB( + "I2IknfDQ9Hg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEC1EPS8_) +STUB("I2IwTiwoWkQ", _ZN7WebCore18PrewarmInformationD2Ev) +STUB( + "I2ODj8xfJjE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("I2QC8PYhJWY", _ZN3sce4Json14InitParameter212setAllocatorEPNS0_12MemAllocatorEPv) +STUB( + "I2UzwkwwEPs", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERl) +STUB( + "I2d4nu97ERo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEptEv) +STUB( + "I2erG4YkEAg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEEC2ERKS9_) +STUB( + "I2g+qmRNJrM", + _ZN3sce2Np9CppWebApi7Matches2V122RequestMatchStatistics19setPlayerStatisticsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_22RequestPlayerStatisticEEEEE) +STUB("I2lK60l+Cno", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V110Reputation11globalIsSetEv) +STUB( + "I2r47l0zHLI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEcvbEv) +STUB("I3+xmBWGPGo", + _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecl) +STUB( + "I31dKU3DwgM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEED2Ev) +STUB("I31iLrToaDk", mono_get_exception_not_supported) +STUB("I3214xCz1gY", WKPointGetValue) +STUB("I32rxOdxlVk", _ZN7WebCore9HTMLNames6asAttrE) +STUB( + "I34lmQ-r5iI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEC2EPS6_PFvS8_EPNS2_10LibContextE) STUB("I37rBumJ9X4", sceAvSettingRemoveProcessOutputMode) +STUB( + "I381uWPKe0M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEppEi) +STUB("I384tcDPk1c", _ZN3JSC11regExpFlagsERKN3WTF6StringE) +STUB("I38s92i-Xjk", curl_global_init) +STUB( + "I3Cm2PthpHQ", + _ZN7WebCore14ScrollableArea34constrainScrollPositionForOverhangERKNS_10LayoutRectERKNS_10LayoutSizeERKNS_11LayoutPointES9_ii) STUB("I3Fwcmkg5Po", sceAudioOutGetFocusEnablePid) +STUB( + "I3HHmiIqgC4", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "I3IOLIQFlxQ", + _ZN9Inspector20DOMBackendDispatcher17highlightSelectorElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "I3LWxmXq+C4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE21intrusive_ptr_sub_refEPS9_) +STUB("I3e5aMGNe-0", _ZN3JSC7Symbols17searchPrivateNameE) +STUB( + "I3hUSLo9MQQ", + _ZN3sce2Np9CppWebApi14SessionManager2V136GetFriendsPlayerSessionsResponseBodyC2EPNS1_6Common10LibContextE) +STUB("I3ootbOM-00", _ZNK3sce3Xml3Dom8Document13getEntityTypeENS1_6NodeIdE) +STUB("I3ps3nG0aKs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116InitialJoinStateEEdeEv) +STUB( + "I3wCwIwMJGs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB( + "I3z3tCWd5Ec", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEED1Ev) STUB("I4+4hKttt1w", sceHttpsEnableOptionPrivate) +STUB("I4-PyX6nOPo", _ZN3sce7Toolkit2NP2V26Trophy7Request23DisplayTrophyListDialogC1Ev) +STUB("I42gBhK-AbI", mono_vfree) +STUB("I42mYvwndio", _ZN7WebCore20TransformationMatrix15scaleNonUniformEdd) +STUB( + "I44793pOQVE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEEC2ERKSA_) +STUB( + "I45yc4MY9nc", + _ZN7WebCore23CoordinatedBackingStore20paintToTextureMapperERNS_13TextureMapperERKNS_9FloatRectERKNS_20TransformationMatrixEf) +STUB( + "I47oCQPbw4I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB( + "I48zAE0KEi8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEC2EPNS2_10LibContextE) +STUB("I494luuz6qk", _ZN3WTF16AtomicStringImpl3addEPKDsj) +STUB( + "I498PmOx-WM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEppEi) STUB("I4Dpeom1P6Y", sceTsOpenFileEx) +STUB("I4Myxk+roNI", _ZNK3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer13onlineIdIsSetEv) +STUB("I4O9MqxoKGI", Java_java_awt_GnmGraphics_nativeDrawOval) +STUB("I4PRUFYb1WM", _ZTVN7WebCore11DisplayList15FillRoundedRectE) +STUB( + "I4PxJ6HcibM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEC2Ev) +STUB( + "I4YvCYkhIqM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE5emptyEv) +STUB("I4eCG2hgXRE", Java_sun_awt_DownloadedFont_loadFromFile) +STUB("I4jBdT+0Ng8", mono_aot_Sce_Vsh_AppDbWrapperunwind_info) STUB("I4oxnvdvQmk", sceAudioSystemSystemResume) +STUB("I4plsnAHNDE", _ZN3NTF17URLRequestJobImplD1Ev) +STUB("I4pt0NSJBb4", __asan_report_load_n) +STUB("I4q+6sukCEc", _ZNK7WebCore16HTMLInputElement12isMonthFieldEv) +STUB("I4qJlIt9njM", PubSubPublish) +STUB("I4sXVq8FNbw", _ZN7WebCore24TemporarySelectionChangeD1Ev) +STUB("I4ucgk5zCH4", + _ZThn16_N9Inspector21InspectorConsoleAgent22setLoggingChannelLevelERN3WTF6StringERKS2_S5_) +STUB("I4uvoHI1wRY", mono_aot_Sce_Vsh_Sl2_Sl2Clientjit_code_end) +STUB("I4y33AOamns", _ZTIPKc) +STUB("I5+LmChfiaI", mono_aot_Sce_Vsh_AppContentUtilWrapperunbox_trampolines) +STUB("I55q7IbIU-A", _ZN7WebCore11MediaPlayer7repaintEv) +STUB("I59cILXmGzw", uhash_get_67) +STUB("I5ECYW2vgfQ", _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse18getCompetitionTypeEv) +STUB("I5Fv27RVaXA", _ZN3JSC10JSFunction11displayNameERNS_2VME) +STUB( + "I5G3BBCBakY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEED1Ev) +STUB("I5GeHJrhyms", fuse_kern_unmount) +STUB("I5JDizVSxbY", + _ZN3JSC21loadAndEvaluateModuleEPNS_14JSGlobalObjectERKN3WTF6StringENS_7JSValueES6_) +STUB("I5NEJ-Q-rBs", _ZN3sce7Toolkit2NP15AppSTLAllocatorItEeqERKS3_) STUB("I5OmtvOve6E", sceIduUtilGetEnvironment) +STUB( + "I5QFERQpzoM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEE7add_refEv) +STUB("I5RVjZ56xv8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEC2Ev) STUB("I5Rf2rXvBKQ", sceFontGraphicsUpdateShapeFillPlot) +STUB("I5UU-OsptFI", _ZN7WebCore24MatrixTransformOperationC1Edddddd) +STUB("I5WMqUk6HrE", _ZN7WebCore9HTMLNames5rbTagE) +STUB("I5X8IKb7vN8", _ZN4Manx7Network4freeEPv) +STUB("I5ZyZfpplKM", mono_aot_mscorlibunwind_info) +STUB( + "I5cgDxVebZ0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEdeEv) STUB("I5dlIKkHNkQ", sceNpTusGetMultiUserDataStatusVUserAsync) +STUB( + "I5eHSc9Yx4o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEE21intrusive_ptr_add_refEPS7_) STUB("I5jQit5Q78Q", sceVorbisDecBitrateInstant) +STUB("I5jcbATyIWo", _ZNSt8ios_baseD0Ev) +STUB("I5nmuZqb3LM", mono_gc_get_generation) +STUB( + "I5pyVptGX1Y", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEneERKS9_) +STUB("I5utIyLdyjg", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112GroupingTypeEEC2EPS6_) +STUB("I5uzTXxbziU", _ZN3sce2np4Cond7DestroyEv) +STUB("I5vyOoVvcEw", _ZN3WTF31NonSharedCharacterBreakIteratorC2ENS_10StringViewE) +STUB("I5wa74016LQ", cairo_region_get_rectangle) +STUB( + "I5y8d3X+2n8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "I5ysvI-IIJw", + _ZN7WebCore17PageConsoleClient9recordEndEPN3JSC14JSGlobalObjectEON3WTF3RefIN9Inspector15ScriptArgumentsENS4_13DumbPtrTraitsIS7_EEEE) +STUB( + "I65deDtHFuE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEEaSERKSA_) +STUB("I69kRgYrWmY", _ZN15AbstractStorage4Item11GetPathNameEv) +STUB("I6BK+r-jqhk", _ZN7WebCore29SQLiteStatementAutoResetScopeC2EOS0_) +STUB("I6CEmnwFeTY", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_19ProductInfoDetailedEED1Ev) +STUB("I6FCGU4YhOA", _ZN3sce2np10NpOnlineId13GetNpOnlineIdEiPS1_) +STUB("I6FO+6KM2Gw", mono_aot_Sce_Vsh_WebViewDialogplt_end) +STUB("I6I6FkXrmlI", ures_getType_67) +STUB("I6LQd5tyt0w", FT_Bitmap_Init) +STUB( + "I6RbRdy3Q7s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEE11release_refEv) +STUB("I6XovEp+75w", _ZN3JSC7Symbols43typedArrayGetOriginalConstructorPrivateNameE) +STUB("I6Z-684E2C4", ispunct) +STUB( + "I6ew5InnOCA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEED1Ev) +STUB("I6gS9R3DurY", _ZN3WTF6String6numberEd) +STUB("I6gThqeUQo8", _ZN3sce7Toolkit2NP9Utilities6FutureIbED1Ev) +STUB( + "I6m4QBwYRXk", + _ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionNonPsnPlayerC2EPNS1_6Common10LibContextE) +STUB( + "I6nM-Lkv9jQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEE7add_refEv) +STUB("I6r+uulCR34", _ZN7WebCore9HTMLNames13inputmodeAttrE) +STUB( + "I6r7pr37kBk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "I6r9DNlQ1FA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE5beginEv) +STUB("I6rOX+ftOsI", _ZN3sce7Toolkit2NP2V212ActivityFeed13UsersWhoLikedC1Ev) +STUB( + "I6t7Fbo8yfU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE7popBackEv) +STUB( + "I6tYhuj7HMI", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api9getTicketEiRKNS4_20ParameterToGetTicketERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_21GetTicketResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("I6tnUuepZhU", + _ZN7WebCore16JSXMLHttpRequest22visitOutputConstraintsEPN3JSC6JSCellERNS1_11SlotVisitorE) +STUB( + "I6tsHYfkcbI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEaSERKSA_) +STUB("I6x5YLhoOyU", + _ZN7WebCore19JSAnimationTimeline11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("I7+bgf+f1FM", mono_aot_Sce_PlayStation_Coreunbox_trampolines_end) +STUB("I704tM8sYxw", mono_bitset_find_first) +STUB( + "I71iJjNcF8k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEaSERKS7_) +STUB( + "I72sRnVpcYs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEEptEv) +STUB("I7650OhP6W8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEE11release_refEv) +STUB( + "I77d7xkmE78", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V137MatchCompletionRateQuitMetricsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_30MatchCompletionRateQuitMetricsEEE) +STUB("I78wJHt9tdI", _ZNK3sce2Np9CppWebApi6Common6String4findERKS3_) +STUB("I7A4lT+s9h8", u_tolower) STUB("I7DtdmOU3rw", sceAppInstUtilAppGetAddcontInfoByContentId) +STUB("I7GFwkajYkc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEED2Ev) +STUB( + "I7GJg3tUlK0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("I7ImcLds-uU", readv) +STUB( + "I7R3iaba+jU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEppEi) +STUB("I7Rs8wP+xaw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEEC1EPKS6_) +STUB("I7TAVHwbvc4", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12RoomPingTimeEE19setCustomReturnCodeEi) +STUB("I7YOgIdzNMs", ucnv_getFromUCallBack_67) +STUB("I7dFdkpGxYI", _ZN7WebCore9HTMLNames17onpointeroverAttrE) +STUB( + "I7daff3tdqc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEED1Ev) +STUB("I7eE64SW48g", mspace_get_footer_value) +STUB( + "I7f22iWhA1s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("I7i7e1LGVZI", _ZN7WebCore16ScriptController16createRootObjectEPv) +STUB("I7kdy6R0axo", jpeg_fdct_14x7) +STUB( + "I7mIGiQD-qM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEEC1Ev) +STUB( + "I7mh0ZNMjnU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEEC2ERSA_) +STUB("I7ofh1cBE5o", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V113AttributeTypeEEmmEv) +STUB("I7rDjJe4Eok", _ZN15AbstractStorage14TwitterStorageD1Ev) +STUB( + "I7soL767pak", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE5clearEv) +STUB( + "I82AAZYHaN0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE7reserveEi) +STUB("I82nyOgGKjY", glUniform3f) +STUB( + "I83P5+ifCdo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEC1Ev) +STUB("I849n0yCszo", WKContextMenuItemGetTag) +STUB( + "I84EUs864es", + _ZN9Inspector8Protocol13BindingTraitsINS0_8Debugger5ScopeEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE) +STUB( + "I84U862KpZo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB("I88Ie+4t0-c", GCC_except_table280) STUB("I88KChlynSs", sceErrorDialogInitialize) +STUB("I8DjaU4h+T8", _ZN7WebCore4Page33synchronousScrollingReasonsAsTextEv) +STUB("I8H3EdOu8cw", _ZN3sce4Json5Value3setERKSt4listIS1_NS0_8StlAllocIS1_EEE) +STUB("I8J1Y7S8Muw", _ZN7WebCore8SVGNames13font_sizeAttrE) +STUB("I8R9aSsT2C0", WKURLGetTypeID) +STUB( + "I8a3AELXUuY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("I8dHzWVUUw4", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetail9unsetviewEv) +STUB( + "I8e4hvvZF4o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEC1ERKS7_) +STUB( + "I8ha5SFyaug", + _ZN3sce7Toolkit2NP2V29Messaging22consumeGameDataMessageERKNS3_7Request22ConsumeGameDataMessageEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("I8kzojIx5UY", delegate_virtual_invoke_imt_28) +STUB( + "I8pKrVYKAO0", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser7hassortEv) +STUB( + "I8rDVikNfHw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEE5resetEPS9_) +STUB( + "I8rLR3LZ-Yg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEC1EPS6_PNS2_10LibContextE) STUB("I8sUe4XPSvU", sceMatAllocPoolMemory) +STUB("I8v9gOO4bXE", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15ErrorC1EPNS1_6Common10LibContextE) +STUB("I8xwUdauOcY", _ZNK3sce2Np9CppWebApi14SessionManager2V115LocalizedString18getDefaultLanguageEv) STUB("I91P0HAPpjw", sceAudioOutStartAuxBroadcast) +STUB( + "I94LxkpuV5g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEdeEv) +STUB( + "I94QkY5q8SQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEEC1ERKSA_) +STUB( + "I99fckM6Uso", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS9_) +STUB("I9IXZ61WkD0", glBindTexture) +STUB("I9JAPU81VpY", _ZN3IPC15ArgumentEncoder13addAttachmentEONS_10AttachmentE) +STUB("I9K8X5wNZRI", _ZN9Inspector14FrontendRouter15connectFrontendEPNS_15FrontendChannelE) +STUB("I9O9l17oQIo", _ZN7WebCore11JSDOMMatrixC2ERKS0_) STUB("I9R5VC6eZWo", sceFontClearDeviceCache) +STUB( + "I9WCDJCkdZU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEC1EPNS2_10LibContextE) STUB("I9aiD3P3IiI", sceNpTcsIntUploadDataToNewSlotAbort) +STUB( + "I9dKXzmkp-U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEC2EPNS2_10LibContextE) +STUB( + "I9lEfQAJEoU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE5clearEv) +STUB("I9uZ6uF29YY", + _ZN7WebCore28InspectorFrontendClientLocal8Settings11setPropertyERKN3WTF6StringES5_) +STUB( + "IA4fg2qjTjs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEC2ERKS8_) +STUB("IA8HMDjPSig", _ZNK3sce2Np9CppWebApi14IdentityMapper2V312AccountIdMap11getOnlineIdEv) STUB("IAB7wscPwio", sceUserServiceGetFileSelectorSortContent) +STUB( + "IACZMb7b7H8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEED1Ev) STUB("IADmD4tScBY", sceImeDialogGetStatus) +STUB("IAEl1Ta7yVU", _ZNSt15basic_streambufIcSt11char_traitsIcEE9showmanycEv) +STUB("IAHGC+h+UGw", _ZN3WTF11Persistence7Encoder6encodeEf) +STUB("IAHmDPs6qd8", _ZN8meta_gen11MsvPromoter26retrieveMultiLangTitleInfoEPKc) +STUB( + "IAL+gBXNQM8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE4sizeEv) +STUB("IALAyZ626jY", jpeg_idct_3x3) +STUB( + "IAQxXU7qsTQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE3endEv) +STUB( + "IASUKKR2K0U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEED2Ev) +STUB("IAUPgA2vd9k", mono_conc_hashtable_new_full) +STUB( + "IAXzsIq88HQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEED1Ev) +STUB("IAZgenCVKNE", _ZN3WTF11LogArgumentIPKvE8toStringES2_) +STUB("IAcF3sv2enE", WKURLResponseGetHttpStatusCode) STUB("IAf1M-HM55c", scePerfTracePmUpdate) +STUB( + "IAhVdJnk8FU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE5beginEv) +STUB("IAjYih7HkWE", _ZNK7WebCore19ResourceRequestBase9isTopSiteEv) +STUB( + "IAkGC4cv3zs", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEED1Ev) +STUB( + "IAoGqhiiOgk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEeqERKS9_) +STUB("IApJAV73lSI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEED1Ev) +STUB("IAxgE3PWIcE", mono_aot_Sce_Vsh_PsnMessageUtiljit_got) STUB("IAz2HgZQWzE", sceCameraGetVrCaptureInfo) +STUB("IB3TRJLSgFw", _ZN7WebCore9HTMLNames9iframeTagE) +STUB("IB3mxHrpJnA", _ZN7WebCore8Document23setAsRunningUserScriptsEv) +STUB( + "IB5avbov-NI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEdeEv) +STUB( + "IB7E-UsWTpA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEE3getEv) +STUB( + "IB7qdUvlkzg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEC1Ev) +STUB( + "IBHTBzd-VAg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEED2Ev) +STUB( + "IBKM6vVMLSI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEEC2EPSA_PNS2_10LibContextE) +STUB("IBMQZwZ+Oms", _ZN3sce7Toolkit2NP2V29Challenge7Request21GetChallengeThumbnailC1Ev) +STUB("IBNzGcdOddw", + _ZNK3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead7getFromEv) +STUB("IBOhqpwo1zI", WKBundleResetOriginAccessWhitelists) +STUB( + "IBR4CoqG3k0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEC1EPS6_PNS2_10LibContextE) +STUB( + "IBRGy9t+DCQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("IBSCAHHwzSs", uregex_close_67) +STUB( + "IBU1+F-BFnA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEC1EPKS8_) +STUB("IBWy9uGWcp8", _ZN7WebCore15SQLiteStatement21getColumnBlobAsStringEi) +STUB("IBZ-ohjPQX8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEEC2EPKS6_) +STUB( + "IBcX2N9ogYc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEptEv) +STUB( + "IBdWgzE+PC4", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariable9getslotIdEv) +STUB( + "IBdqRGiGW0U", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("IBjqt0oLxeg", + _ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody14submitterIsSetEv) +STUB("IBn9qjWnXIw", __popcountsi2) +STUB("IBpqUH0M8ao", _ZN7WebCore8Document13setDesignModeERKN3WTF6StringE) +STUB( + "IBqXkLGEYyg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE4sizeEv) +STUB("IBrGr8mdGNA", _ZN7WebCore35contextMenuItemTagShowSpellingPanelEb) +STUB("IBtmqzzHmRo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEaSERKS7_) +STUB("IBtzswgYU3A", _ZTISt10money_base) STUB("IBv4P3q1pQ0", sceVrTrackerTerm) +STUB( + "IBxB9Jq8eTw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEE7get_refEv) +STUB("IC8rPAm64F4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEE11release_refEv) +STUB("ICCQp0ORAiY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE8pushBackERKS6_) +STUB("ICERBon8R3Y", mono_aot_Sce_Vsh_Accessorunbox_trampolines) +STUB("ICH5rmcYGWg", _ZN3sce2np14JsonStringImplC1EP14SceNpAllocator) +STUB("ICLQjM1sSwI", _ZN3sce7Toolkit2NP27GetSharedScreenshotsRequestC1Ev) STUB("ICNJ-1POs84", sceScreenShotIsVshScreenCaptureDisabled) +STUB( + "ICVTP-JoTy8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSC_) +STUB("ICXUqiWRgWs", delegate_virtual_invoke_16_p) +STUB("ICY0Px6zjjo", __gtsf2) +STUB( + "ICaZtyH0tRE", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_6Canvas11ContextTypeEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB( + "ICg93DrEZAw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("ICj99EwVtqU", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIdEdeEv) +STUB( + "ICkYs3hez7c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEEC1ERSA_) +STUB("IClE1UosCoM", _ZN7WebCore20ResourceLoadObserver6sharedEv) +STUB("ICmTBdI2BEE", rgctx_fetch_trampoline_mrgctx_63) +STUB("ICnB2IswiwU", _ZN3JSC9Structure14sealTransitionERNS_2VMEPS0_) +STUB( + "ICoaGydk0Ks", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119NatConnectivityFrom9setToNat1ERKNS1_6Common12IntrusivePtrINS3_24NatConnectivityToMetricsEEE) +STUB("ICx2UgXIXlk", _ZN7WebCore12ChromeClient17didAddFooterLayerERNS_13GraphicsLayerE) STUB("ID+Gq3Ddzbg", sceNetCtlConnectIpcInt) +STUB("ID0FRTNvS94", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEptEv) +STUB("ID6l3yU4Gwg", _ZN7WebCore8Document25startTrackingStyleRecalcsEv) +STUB("ID7vMKqWzNM", + _ZN7WebCore20LegacySchemeRegistry40setDomainRelaxationForbiddenForURLSchemeEbRKN3WTF6StringE) +STUB("IDANRncW4HU", _ZN3WTF20initializeMainThreadEv) +STUB("IDB8WaFUmpo", whexdig) +STUB("IDCiUZVIa64", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEdeEv) +STUB( + "IDO9ntgsUO0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEmmEv) +STUB("IDWlJ-Pqm78", getzone) STUB("IDXFgpkpDsU", sceNpAsmGetNpCommInfo2) +STUB("IDYAnLE0+kM", _ZN9Inspector28HeapBackendDispatcherHandlerC2ERKS0_) STUB("IDYJZSeBgDs", sceUsbStorageRequestMap) +STUB("IDZbJIVb5JI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEppEi) +STUB( + "IDavRLMGVFo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE7reserveEi) +STUB( + "IDbsave4aNc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEppEi) +STUB( + "IDf+FB-95RM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "IDhjHh-wi3Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE5clearEv) +STUB("IDmch1bKy34", cairo_font_options_set_hint_style) +STUB( + "IDnHLk+KsB4", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB( + "IDvLOa9XdGE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE5emptyEv) STUB("IDwNl7rxOQg", sceMusicFwSetCurrentTime) +STUB( + "IDxhUpqHwoc", + _ZN9Inspector18InjectedScriptHost21getInternalPropertiesERN3JSC2VMEPNS1_9ExecStateENS1_7JSValueE) +STUB( + "IDzHMvOZsdo", + _ZNK7WebCore10ScrollView21unobscuredContentRectENS_14ScrollableArea36VisibleContentRectIncludesScrollbarsE) +STUB( + "IE-7N3b0NL8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEppEi) +STUB("IE0xYGwycW0", WKPreferencesSetDialogElementEnabled) +STUB( + "IE2HP8FGsLA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEEaSERKSA_) +STUB( + "IE2x3--ZNXA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEC1Ev) +STUB( + "IE4yA08WagA", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets10initializeEPNS1_6Common10LibContextEPKc) STUB("IEB+vgVoQbw", sceNpWordFilterCreateAsyncRequest) +STUB("IEEiIV664i8", _ZN3JSC22createOutOfMemoryErrorEPNS_14JSGlobalObjectERKN3WTF6StringE) +STUB("IEFEDR4gS2w", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking8TempRankEE3setEv) +STUB( + "IEGYPDxVu1s", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE4sizeEv) +STUB("IEIydcJjkbo", _ZNK3WTF6Thread4dumpERNS_11PrintStreamE) +STUB("IEUh8Xtxsn0", + _ZN7WebCore15DatabaseManager23detailsForNameAndOriginERKN3WTF6StringERNS_14SecurityOriginE) +STUB( + "IEWqmH1dAWY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEEcvbEv) +STUB("IEXEP8fmFr8", _ZN7WebCore11DisplayList13ClipOutToPathC1ERKNS_4PathE) STUB("IEdUCV9j2Cw", sceNpUniversalDataSystemEventPropertyArraySetBinary) +STUB("IEeMuJVSFtI", _ZN7WebCore11HistoryItem17setAlternateTitleERKN3WTF6StringE) +STUB("IEj78AQ7hsc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEEcvbEv) STUB("IElCGP1gobk", sceContentBinderGetNumOfDifference) +STUB("IEtotmsDoYg", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V13Mmr11getPerGenreEv) STUB("IEzqdjIueps", sceSocialScreenConfigureSeparateMode) +STUB("IF3eLfGQiag", ucol_getBound_67) +STUB( + "IF6GaMYf5Uk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE8capacityEv) +STUB( + "IF6VS1Ng7Fg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEdeEv) +STUB( + "IF9Yc8tAwlY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEEC1EPS7_PNS2_10LibContextE) +STUB("IFALbvmLM+8", _ZN7WebCore14FrameSelectionC2EPNS_5FrameE) +STUB("IFFtgsiRyGQ", _ZN7WebCore10JSLocation4infoEv) +STUB("IFH02-MW68w", _ZN3sce2Np9CppWebApi13InGameCatalog2V55ErrorC2EPNS1_6Common10LibContextE) +STUB( + "IFNjbmOnyGE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEC2EPS8_) +STUB( + "IFOx1bNyYts", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB( + "IFQ4rl0BHus", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEC1EPKS6_) STUB("IFQwtT2CeY0", sceMoveSetVibration) STUB("IFRxwVZPcYw", sceMbusDebugReleaseControl) +STUB( + "IFSfc9Si7vs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB("IFSy-jZ0kEI", mono_aot_Mono_Data_Sqliteunwind_info) +STUB( + "IFU35-pdHKU", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser17hasplatformFilterEv) +STUB("IFVaBpTyFRY", + _ZNK3sce2Np9CppWebApi7Matches2V124ResponseTeamMemberResult6toJsonERNS_4Json5ValueEb) +STUB( + "IFbDzgbVp5U", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13boolean1IsSetEv) +STUB("IFdTVKKGVLI", g_JSArrayBufferPoison) +STUB( + "IFeE73k4YyQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEppEi) +STUB( + "IFeOLPLGFG8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEE11get_deleterEv) +STUB("IG-3e4xYcLY", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setRate) STUB("IG1Kd+k6U3s", sceNpServiceChecker2IntCreateRequest) +STUB("IG22hh3eur0", _ZN3JSC18IncrementalSweeper6doWorkEv) +STUB("IG3a3BD+Yes", _ZN3sce2Np9CppWebApi7Matches2V123ResponsePlayerStatistic11setPlayerIdEPKc) +STUB("IG4vDJkluuE", mono_btls_x509_verify_param_from_store_ctx) STUB("IG6ZoGSDaMk", sceNpManagerIntUnbindOfflineAccountId) +STUB( + "IGCZbdkzrhE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEE3getEv) +STUB( + "IGD45N1lO1s", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE8capacityEv) +STUB("IGFTSBRJiHk", _ZN3JSC12addErrorInfoEPNS_14JSGlobalObjectEPNS_8JSObjectEb) +STUB("IGJ-lPf5b1Y", _ZN4Manx21DisplayRefreshMonitorC2Ev) +STUB( + "IGQJzUqMtx8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) STUB("IGThmAe0IFc", sceIduUtilIsDiscInserted) +STUB("IGZfa0QbHK0", _ZN3sce7Toolkit2NP2V210Tournament15TeamVsTeamMatchC1ERKS4_) +STUB("IGa9NHlyivY", + _ZNK3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsers9getoffsetEv) +STUB("IGc6FTBp6jE", _ZN3sce7Toolkit2NP2V23TUS7Request12SetVariablesD1Ev) +STUB("IGcJ6U0SuHU", _ZN3JSC17JSArrayBufferViewC1ERNS_2VMERNS0_19ConstructionContextE) +STUB( + "IGd4piK-kMs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEC2EPS8_) +STUB("IGd5X5j9+Dc", _ZN7WebCore12SharedBuffer6createEPKhm) STUB("IGdE6nsMTAY", sceVrTracker2CheckPointIsInsidePlayAreaBoundary) +STUB("IGdTnMB+gA8", _ZN3IPC15ArgumentEncoder6encodeEb) +STUB("IGdZfsLTXOc", _ZNK3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE8capacityEv) +STUB("IGnFlGNW+Vo", + _ZN15AbstractStorage14YoutubeStorageC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("IGngArGbzHo", _ZN3sce2np3ipc17ServiceIpmiClient7DestroyEv) STUB("IGrJsPNL6n4", sceLncUtilIsAppLaunched) +STUB("IGrbJj1nins", rgctx_fetch_trampoline_mrgctx_103_p) STUB("IGwoR-bZ-aQ", sceDeci4hGetStatus) +STUB("IH2Yle2Qh1U", Java_com_sony_gemstack_org_havi_ui_HBackgroundImageDecoder_displaySurface) +STUB("IHCjKLEGzm0", vm_send_RegisterOpcodeEmulation) +STUB("IHClyogk-U0", _ZN7WebCore16MIMETypeRegistry23isSupportedJSONMIMETypeERKN3WTF6StringE) STUB("IHHSdVBTwBc", sceShellCoreUtilIsUsbMassStorageMounted) +STUB( + "IHJFNWm4S2E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEE11release_refEv) +STUB("IHMI0n-H8Xk", rgctx_fetch_trampoline_mrgctx_61_p) STUB("IHPqcbc0zCA", scePadDeviceClassParseData) +STUB("IHQRMDrYqts", xmlRegisterInputCallbacks) STUB("IHRDvZodPYY", sceNpSignalingSetContextOption) +STUB("IHYNHgkyRTw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V110AvatarSizeEEneERKS7_) +STUB("IHZD-nXKzPw", _ZN7WebCore16HTMLMediaElement29getCurrentMediaControlsStatusEv) +STUB("IHZcUo10YCw", Java_com_sony_bdjstack_javax_media_controls_SoundManager_pause) +STUB("IHa+7ffbXps", _ZN3WTF15base64URLEncodeEPKvj) +STUB( + "IHbEH2q1DMQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE7popBackEv) +STUB( + "IHbk3YNeDz8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEppEi) +STUB( + "IHfCwDchxdo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEE7add_refEv) +STUB( + "IHhXxoAsZRU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEC2EPS6_PNS2_10LibContextE) STUB("IHhl7z1-uFI", sceVideoCoreInterfaceGetRenderFrameBuffer) +STUB("IHiK3lL7CvI", _Atthreadexit) +STUB("IHjsOPckz9Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEE5resetEPS6_) +STUB("IHkbD6NUVB4", Java_java_io_UnixFileSystem_initIDs) +STUB( + "IHm-2CBKHl0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEC1EPS6_PNS2_10LibContextE) +STUB("IHpfHlI4FXs", Java_com_sony_bdjstack_security_aacs_AACSOnline_getPMSN) +STUB("IHq2IaY4UGg", __fixsfti) +STUB( + "IHqUs8zAc3c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEC1EPKS8_) +STUB( + "IHrYMbKlPeg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "IHszTmpbhBI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEC1EPKS8_) +STUB("IHyZtPpt+-Q", _ZN3sce7Toolkit2NP2V210Tournament7Request15EventTypeFilterD2Ev) +STUB( + "IHycGnN+79o", + _ZN3sce2Np9CppWebApi14SessionManager2V151PatchGameSessionsSearchAttributesRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_44PatchGameSessionsSearchAttributesRequestBodyEEE) STUB("II+V6wXKS-E", sceUserServiceSetShareStatus2) +STUB("II+m39Ytbfs", _ZN7WebCore4Page40updateMediaElementRateChangeRestrictionsEv) +STUB("II08aNs+H8c", + _ZN3sce2Np9CppWebApi11Matchmaking2V120PlayerForReadFactory7destroyEPNS3_13PlayerForReadE) +STUB("II4v52-8BI8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEdeEv) +STUB("IIBBieYYH6M", _ZNK3sce2np10NpOnlineId7IsEmptyEv) +STUB( + "IIDAg2bnVTk", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearch36getpostGameSessionsSearchRequestBodyEv) +STUB( + "IIDZsUI2hR8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEE7add_refEv) STUB("IIEZ8A31pFo", scePsmUtilGetLabelAssetManagerSize) +STUB( + "IIFLFkSK9fA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEmmEi) +STUB("IIJHCy+uDyI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEmmEv) +STUB("IILi8PWnIN4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEEC1EPKS5_) +STUB( + "IIP1YrE9RkE", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE5getIdEv) +STUB( + "IISdHanbDX0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("IIT+EGxGv8A", mono_upgrade_remote_class_wrapper) +STUB( + "IIUKSsADZCI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("IIUY-5hk-4k", initstate) +STUB( + "IIXQGzQYesQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE8pushBackERKS8_) +STUB( + "IIaosXuMTAQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB("IIee+n8qW-E", + _ZN3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse10setFriendsERKNS1_6Common6VectorImEE) +STUB("IIhlecN4L84", _ZNK7WebCore16BlobRegistryImpl18getBlobDataFromURLERKN3WTF3URLE) +STUB("IIlyMEtv3eA", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_6NpUserEEneERKS4_) +STUB( + "IImfQqdcnIY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEEC1Ev) +STUB( + "IIy47gUAJa4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEC1EPNS2_10LibContextE) +STUB( + "IJ+wojje2Og", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("IJ-Jxtdju18", g_assertion_message) +STUB("IJ4PBnF3RrM", + _ZN12video_parser41VpMpegvideoAvcParsePPS_get_slice_group_idEPNS_21VpMpegvideoAvcPPSCtrlEiPh) +STUB( + "IJ7j6CmbbHE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEEC2ERSA_) +STUB( + "IJDLbgQgbsQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE21intrusive_ptr_add_refEPS9_) STUB("IJIggoPZExk", pthread_spin_destroy) +STUB( + "IJJAO0gYWP0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEC1EPS6_PNS2_10LibContextE) +STUB("IJKVjsmxxWI", __cxa_allocate_dependent_exception) +STUB( + "IJPH53bfhlo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEED1Ev) +STUB("IJRNUbdpGmM", _ZN3sce2Np9CppWebApi14SessionManager2V117SearchGameSession12setSessionIdEPKc) +STUB("IJYALczrHyI", _ZN3sce2Np9CppWebApi6Common6VectorIfEC2Ev) +STUB( + "IJYK1OHvPrs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEE11release_refEv) +STUB("IJZ+ZJuC9SY", u_vparseMessageWithError_67) +STUB( + "IJbBoinGYT8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEEC2ERSA_) +STUB("IJd2ND3hzd0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE8pushBackERKS5_) +STUB( + "IJgIYFmU+18", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEC1Ev) +STUB("IJlEyEMIWt8", u_fungetc_67) +STUB("IJmeA5ayVJA", _ZNSbIwSt11char_traitsIwESaIwEE6assignEPKwm) +STUB( + "IJnPLsBZ2rw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEEC1ERSA_) +STUB( + "IJps34Jgda0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEdeEv) +STUB("IJtTo2GMb6Q", _ZN3JSC7Symbols28sentinelSetBucketPrivateNameE) +STUB("IJzlDqHrcAA", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Error16referenceIdIsSetEv) +STUB("IK1SOe-F4lI", mono_class_inflate_generic_type) STUB("IK1XJgSEKSc", sceUlpMgrVshInstallCmd) +STUB("IK2LeB7anM4", _ZN3JSC2VM29strictEvalActivationSpaceSlowEv) +STUB("IK3c4F7EKu0", _ZNK7WebCore14DocumentLoader28urlForHistoryReflectsFailureEv) +STUB("IK428RhUww4", mono_aot_Sce_Vsh_VoiceMsg_VoiceMsgWrapperunwind_info) +STUB("IK6MOOvNFqY", WKPageHandleMediaEvent) +STUB("IKENWUUd8bk", SSL_lockSessionCacheMutex) +STUB("IKG13mPMFrs", WKPreferencesGetTiledScrollingIndicatorVisible) +STUB( + "IKMbPO8eg2U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE5beginEv) +STUB("IKP8typ0QUk", sem_post) +STUB("IKPSxmtW3uc", mono_aot_Sce_Vsh_AppInstUtilWrapperjit_got) +STUB( + "IKPthntsCNo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEeqERKS9_) +STUB("IKQCt8asDCI", _ZNK3sce2Np9CppWebApi6Common6VectorIjE4sizeEv) +STUB("IKQimvG9Wqs", _ZN3sce4Json5Value3setENS0_9ValueTypeE) +STUB("IKS68kjJYm0", _ZN3sce7Toolkit2NP2V26Friend12Notification15BlocklistUpdateD2Ev) +STUB( + "IKSpe3nDEo4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEE5resetEPSA_) +STUB("IKV8uTXqGb0", RecvDeciPayload) STUB("IKWgVjEKH+g", sceIduUtilIsInitialised) +STUB( + "IKehnzGx75M", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot11unsetoffsetEv) +STUB( + "IKf9ZYROJrk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEC1EPKS8_) +STUB("IKfdBNxQ0Nw", WKBundlePageCopyContextMenuItems) +STUB( + "IKfl43nS+JM", + _ZN7WebCore20UserGestureIndicatorC1EN3WTF8OptionalINS_26ProcessingUserGestureStateEEEPNS_8DocumentENS_15UserGestureTypeENS0_23ProcessInteractionStyleE) STUB("IKk3EGj+xRI", sceUserServiceGetIsFakePlus) +STUB("IKnEk6g6ZV0", cairo_set_miter_limit) +STUB( + "IKo0Q3en1VQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEEaSERKSA_) +STUB("IKoxEK0uuYw", utext_openUTF8) +STUB( + "IKqpuRJIc7I", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB("IKtKACP9tMo", + _ZN3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsers10unsetlimitEv) +STUB( + "IKtqCFTWdSI", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V232WebApiErrorResponse_errorFactory7destroyEPNS3_25WebApiErrorResponse_errorE) +STUB( + "IKwL6ST8uNc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB( + "IL+rUK7iXck", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEEC1Ev) +STUB("IL3Wk7QuRhA", _ZN3sce2np7RingBuf4InitEPvm) +STUB( + "IL4RffHDATI", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28joinPlayerSessionAsSpectatorEiRKNS4_39ParameterToJoinPlayerSessionAsSpectatorERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_55PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("IL7SZSnxsK8", mono_profiler_startup) STUB("IL9p2+BM-9c", sceAvControlSetHdcpEncryption) +STUB("ILCa64n-L8U", sqlite3_stmt_busy) +STUB( + "ILEdBDvJQlA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEmmEi) +STUB("ILNcdPVctW4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEC1ERKS7_) +STUB( + "ILOfNWw6DHU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEE3getEv) +STUB( + "ILT-Jjv6oZU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEC2Ev) +STUB("ILUBRWJbOSk", Java_com_sony_gemstack_io_FilePath_n_1stat) +STUB("ILWpTCmzS5k", _ZNK3WTF6String5splitERKS0_bRNS_6VectorIS0_Lm0ENS_15CrashOnOverflowELm16EEE) +STUB("ILkZXXuyNWc", _ZN7WebCore21ISOTrackEncryptionBoxC2ERKS0_) STUB("ILl7f+knBmk", scePlayReadyBufferRealloc) +STUB("ILoDiOjJmLs", + _ZN3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse8fromJsonERKNS_4Json5ValueE) +STUB("ILp2f6r3-X8", _ZN3WTF8JSONImpl9ArrayBase10pushStringERKNS_6StringE) +STUB("ILsQyeegGIk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEdeEv) +STUB("ILv5Uxo6BUQ", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku6toJsonERNS_4Json5ValueEb) +STUB("ILv6XtwFEXU", + _ZN3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectatorC2EPNS1_6Common10LibContextE) +STUB( + "IM3kWrxXpBQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEptEv) STUB("IM8g1QaDCLA", sceCesUcs2ToGb) +STUB("IM9G2Z-DP+o", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE8pushBackERKS6_) +STUB("IMIK7DINHN0", unum_close_59) +STUB( + "IMIhyUYqhEE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEaSERKS9_) +STUB("IMJ+G6b6cx0", WKViewSetViewAccessibilityClient) +STUB("IMK4c6Jow5M", _ZN2sh20InitBuiltInResourcesEP18ShBuiltInResources) +STUB("IMMFx7XRySI", _ZN7WebCore19MediaElementSession22addBehaviorRestrictionEj) +STUB("IMO1IAUN-hs", _ZN3WTF9WorkQueue8dispatchEONS_8FunctionIFvvEEE) +STUB("IMPIEgDTZ+8", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_12CategoryInfoEED1Ev) +STUB( + "IMS2WtXY6P4", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEEiRNS2_10LibContextEPT_m) +STUB( + "IMVv4As7s-s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEC2EPS6_PNS2_10LibContextE) +STUB("IMb5qS2iFR4", + _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets16hasrulesetFilterEv) +STUB("IMb6dZxKqrY", kmq_timedsend) +STUB("IMbYEIyon1E", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEeqERKS9_) +STUB("IMdbfLGVQ9g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEEppEi) STUB("IMecW2MacSY", sceIduUtilSetSettingStr) +STUB("IMfkwkOLzok", mono_aot_Sce_Vsh_FileSelectorAdvanceunwind_info) +STUB( + "IMls1QwjlMg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEptEv) +STUB("IMt+UO5YoQI", fdiml) +STUB("IMx1-B6ju9g", YGNodeStyleSetMarginAuto) STUB("IMzgZ3nDArM", sceNpWebApiCreateContextForContactsApp) STUB("IN4P5pJADQY", sceFontGraphicsUpdateLocation) +STUB("INBbBXR8S18", uprv_decNumberSetBCD_67) +STUB( + "INCejvDuJFI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEppEi) +STUB( + "INESFOszz-Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("INJGaJROvII", _ZN3IPC15ArgumentDecoder6decodeERm) +STUB( + "INMYz2r8Nrs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEmmEi) STUB("INOiD5QWHNg", sceSpPthreadCondInit) +STUB("INZSjlRcuyQ", _ZN3sce2np20BufferedStreamReader4ReadEPNS0_6HandleEPvmPm) +STUB("INfaRKgkmAk", _ZL23_sceLibcNewArrayNothrowmRKSt9nothrow_t) +STUB( + "INgczqD0H+w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEC1ERS7_) +STUB("INhaxAHVa1g", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12BlockedUsersEE19setCustomReturnCodeEi) +STUB("INiFOwj7shs", il2cpp_class_get_bitmap) +STUB("IO2yE8-du0I", _ZN9Inspector24RemoteControllableTargetaSERKS0_) +STUB("IO7omKdKcJY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEED2Ev) +STUB( + "IO88-PkBhAE", + _ZN3JSC12StringObject19getOwnPropertyNamesEPNS_8JSObjectEPNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("IO92NEwJXT8", xmlStrdup) +STUB("IOB4Kx96K5A", _ZN7WebCore9HTMLNames14aria_modalAttrE) STUB("IOC0zyNzTM0", sceUpsrvInitialize) +STUB("IOHz+JeAITI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEC2ERKS7_) +STUB("IOIPajZ5VRk", mono_aot_Sce_Vsh_Accessor_Dbmethod_addresses) +STUB("IOL9BK+MWAM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEED2Ev) +STUB("IOOKHyE1Q1A", mono_trace_set_mask_string) +STUB("IOR2W7-ojAo", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead8fromJsonERKNS_4Json5ValueE) +STUB( + "IORgdrmPl8g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEC1EPS8_) +STUB( + "IOUS+zRfelk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEC2Ev) +STUB( + "IOW+oEg48NM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEE5resetEPS9_) +STUB("IOX7r0kt748", dl_iterate_phdr) +STUB( + "IOXt9u2CFGk", + _ZN3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBody8fromJsonERKNS_4Json5ValueE) +STUB("IOaozfGUAFI", WKBundleCreateWKDataFromUInt8Array) STUB("IOdgHlCGU-k", sceVideoOutSubmitChangeBufferAttribute) +STUB("IOgsbCKaKDU", _ZN3WTF8JSONImpl9ArrayBase5beginEv) +STUB( + "IOjlK3Xe+hk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "IOknF4AQSck", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEEC1EPS9_PNS2_10LibContextE) STUB("IOnSvHzqu6A", sceKernelSetEventFlag) +STUB("IOqzwu89Go8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEED1Ev) +STUB( + "IOs-4aunNLk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEeqERKS9_) STUB("IOscbdNr5dM", sceFsNsfsSetGlobalExclude) +STUB("IOshdGlvJ2E", _ZN7WebCore9HTMLNames13onmouseupAttrE) +STUB( + "IOzUq7HkaIc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEE3getEv) +STUB( + "IOzq33jNat8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEED2Ev) +STUB("IP+72JlN+vM", _ZN3sce2Np9CppWebApi12Leaderboards2V127RecordLargeDataResponseBodyD2Ev) +STUB( + "IP+PUCz9AKk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEmmEi) +STUB("IP1XczHKYPo", _ZNK7WebCore6JSNode21pushEventHandlerScopeEPN3JSC9ExecStateEPNS1_7JSScopeE) +STUB("IP1evjq7z2E", _ZN7WebCore20ISOOriginalFormatBoxC1ERKS0_) +STUB( + "IP5mOusVxcs", + _ZN3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform12setJoinStateERKNS3_9JoinStateE) +STUB( + "IP6G8B2IBVw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE7popBackEv) +STUB("IPF05cGyxsY", + _ZN3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResultsC2EPNS1_6Common10LibContextE) STUB("IPHvnM5+g04", sceVoiceInitHQ) +STUB("IPKTmjbeQ6M", _ZN9Inspector13AgentRegistryD2Ev) +STUB("IPMQayxG57w", _ZN3sce7Toolkit2NP2V28Commerce10CategoriesD1Ev) STUB("IPN-FRSrafk", sceCompanionUtilOptParamInitialize) +STUB("IPRwBF2+tkM", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18GameCustomDataItemEEeqERKS4_) +STUB("IPXVajGkXIY", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_8TempRankEED2Ev) +STUB( + "IPYcCvgbThg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEE3getEv) +STUB("IPaITrbKVzE", _ZN3sce7Toolkit2NP15AppSTLAllocatorIiE7addressERKi) +STUB("IPatA8RrJ+E", g_str_hash) STUB("IPb1hd1wAGc", sceNpGetGamePresenceStatus) +STUB("IPgCymIpggk", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error6toJsonERNS_4Json5ValueEb) +STUB("IPjFXT1aVWI", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEEptEv) +STUB("IPjwywTNR8w", _LXp_sqrtx) +STUB("IPkyP6ig4sc", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody11offsetIsSetEv) STUB("IPoYwwlMx-g", sceFontTextCodesStepBack) +STUB("IPq8+oLLggA", g_UnlinkedSourceCodePoison) +STUB("IQ-K3gfnd4Q", ubidi_setLine_67) STUB("IQ3UD6SZbXo", sceVrTracker2Finalize) +STUB("IQGAIkGw5aw", __tsan_mutex_pre_unlock) +STUB("IQGcnzpiMSw", _ZNK3sce2Np9CppWebApi11Matchmaking2V15Error6toJsonERNS_4Json5ValueEb) +STUB( + "IQHXZTYq3X8", + _ZN3JSC8Bindings13RuntimeObject6createERNS_2VMEPNS_9StructureEON3WTF6RefPtrINS0_8InstanceENS6_13DumbPtrTraitsIS8_EEEE) +STUB("IQHhmv8BSvA", _ZN3sce7Toolkit2NP2V212ActivityFeed13UsersWhoLiked5resetEv) +STUB("IQIG9gEn6Jw", _ZN8meta_gen11MsvPromoter25allocKeyValueForIconTableEv) STUB("IQMhNqP7Ulw", sceApplicationGetCpuUsage) STUB("IQOP6McWJcY", sceHttpGetEpollId) +STUB( + "IQOTNobrCdI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEaSERKS7_) +STUB("IQOtjPPUJZM", _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScoreC1Ev) +STUB("IQT43N-zxfI", mono_aot_Sce_Vsh_GameCustomDatamethod_addresses) +STUB( + "IQXHVmHQ18Q", + _ZN3sce2Np9CppWebApi13InGameCatalog2V532ContentInteractiveElementFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_25ContentInteractiveElementEEE) +STUB( + "IQbdcSBY9KI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "IQcP+8suRX0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEEcvbEv) +STUB("IQen0wTU8Nc", WKPreferencesSetAggressiveTileRetentionEnabled) +STUB( + "IQhK2t2XQ2A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEC2EPNS2_10LibContextE) +STUB("IQiQ9qpBnmk", _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse12getMatchTypeEv) STUB("IQl1M8Gynsw", sceGpuTraceParametersInit) +STUB("IQlNjqCFCxE", rgctx_fetch_trampoline_rgctx_11) STUB("IQmLAxP+i94", sceCustomMusicCoreSendMulticastEvent) +STUB( + "IQndNU5dncQ", + _ZNK9Inspector18InjectedScriptBase27callFunctionWithEvalEnabledERN10Deprecated18ScriptFunctionCallERb) +STUB( + "IQoNQJ3BYfI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEC1EPS8_) STUB("IQsOlh8f-sw", scePlayReadyReaderDecryptMultipleOpaque) +STUB("IQt8xe137uc", JNU_CallMethodByName) STUB("IQtWgnrw6v8", sceAudioInChangeAppModuleState) STUB("IQtb-TaIjSM", sceNpEntitlementAccessGenerateTransactionId) STUB("IQtleGLL5pQ", sceFontGetRenderCharGlyphMetrics) +STUB( + "IQvYkyIEwRM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEixEm) +STUB("IR0dCpED2L8", udatpg_replaceFieldTypes_67) STUB("IR0rE-hHJro", sceMusicCoreServerGetSpTrackInfo) +STUB( + "IR4SQb3g9r0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEppEi) +STUB("IR4x7c3IhCw", _ZN7WebCore9Scrollbar11mouseExitedEv) +STUB( + "IRGTsSr6eag", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "IRGiWZBQJNE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE21intrusive_ptr_sub_refEPS9_) +STUB("IRRGlO7Zjs8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEED1Ev) +STUB( + "IRSBlh1r9u0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEEC1ERKSC_) +STUB("IRUFZywbTT0", _LHypot) +STUB("IRVq0yCLrE4", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_6TicketEED1Ev) +STUB( + "IRVqdGwSNXE", + _ZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_bRSt8ios_baseRNSt5_IosbIiE8_IostateERe) +STUB( + "IRfmUmm9bCU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEE7get_refEv) +STUB("IRhibSDgZhM", _ZN3sce7Toolkit2NP2V27Session8SessionsD2Ev) +STUB( + "IRiJe-BV7ow", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("IRiggzlySno", _ZN3WTF15AutomaticThread11shouldSleepERKNS_14AbstractLockerE) +STUB("IRk2LD8KwS0", _ZN3sce2Np9CppWebApi11UserProfile2V113BasicPresence14unsetAccountIdEv) +STUB("IRogVTONyrs", WKOpenPanelParametersGetCaptureEnabled) +STUB("IRt7wYbY6UM", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119NatConnectivityFrom9getToNat1Ev) +STUB("IRu1aYSj+vQ", _ZN3sce2Np9CppWebApi7Matches2V116RequestMatchTeamD1Ev) +STUB( + "IRvmALvGV48", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEE11release_refEv) +STUB( + "IRvuaQoct2o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE8pushBackERKS8_) +STUB( + "IRwNsWj78ys", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB( + "IS17Bw01fOQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE4sizeEv) +STUB("IS1N8Ih6JoU", d2i_PKCS8_PRIV_KEY_INFO_bio) +STUB("IS2P-VRkdhE", ucnv_open_67) +STUB( + "IS5AaLc0AvY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE5emptyEv) +STUB( + "IS6aVH6FbCs", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot13hasaccountIdsEv) +STUB( + "ISHK9QjN3R8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEdeEv) +STUB( + "ISHvKPB7tNI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEED1Ev) +STUB("ISICA2VSmtE", + _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody20unsetCreatedDateTimeEv) STUB("ISNsr2lrhbU", sceNpRemotePlaySessionSignalingGetConnectionStatus) +STUB("ISTLytNGT0c", inet_aton) +STUB("ISUUjW5I+7Q", _ZN9JITBridge14shutdownFromVMEPS_b) +STUB("ISWh5+ZPHJQ", g_printerr) +STUB( + "ISZm9L0EhZU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE5beginEv) +STUB("ISdpIgzLH4g", mono_array_length) STUB("ISeIA7PBwyc", sceSysUtilSendSystemNotificationWithDeviceIdRelatedToUser) +STUB( + "ISlaS8f-wU8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEaSERKS9_) STUB("ISoryBJKvl4", sceUlpMgrInit) +STUB("ISrTNpjxmvI", + _ZN3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayer12setAccountIdEPKc) +STUB("ISssLJI2eC8", _ZN7WebCore16comparePositionsERKNS_15VisiblePositionES2_) +STUB("ISu-gIjBX9Q", _ZN7WebCore11HistoryItem11setReferrerERKN3WTF6StringE) +STUB( + "ISvDb1fS+mQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEC1EPS8_) +STUB( + "ISwS86QslL4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEE7add_refEv) +STUB( + "IT+9ZQ8EigA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEEptEv) +STUB("IT-rstTbKL8", _ZN9Inspector25RuntimeFrontendDispatcherdlEPv) +STUB( + "IT0nWT8rSCk", + _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets28hasxPsnAcceptPlatformNamePs5Ev) +STUB("IT1HfKWFBQ0", WKFramePolicyListenerDownload) +STUB( + "IT437RTPboc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEptEv) +STUB( + "IT4DyqEmct0", + _ZN3sce2Np9CppWebApi14SessionManager2V156PostGameSessionsSessionIdMemberPlayersRequestBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_28RequestJoinGameSessionPlayerEEEEEPNS9_INS3_49PostGameSessionsSessionIdMemberPlayersRequestBodyEEE) +STUB( + "IT4c2qbSDPk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEppEi) +STUB("IT65NTVqB2o", _ZN12video_parser5vpcom29SetDefaultFileAccessFunctionsEv) +STUB( + "ITD12A+N6Ho", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEED1Ev) +STUB("ITEVHDu-D80", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEC2ERS7_) +STUB("ITFLHIx2gXs", mono_aot_Sce_Vsh_FileSelectorjit_code_start) +STUB( + "ITFk-2jOpuU", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V134ConnectionQualityPropertiesFactory7destroyEPNS3_27ConnectionQualityPropertiesE) +STUB( + "ITIm7C+vjYc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "ITRZ7FEEcY4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEixEm) STUB("ITUmvpBPaG0", sceNpTrophySetInfoGetTrophyFlagArray) +STUB("ITWHrq9voaU", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_22FriendsRankInformationEED1Ev) +STUB("ITaoiNTCieI", _ZN3sce2Np9CppWebApi14ConnectAccount2V214PSNError_errorD1Ev) +STUB("IThWGmihQUM", hb_font_make_immutable) +STUB("ITiSLeoTvQY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEED2Ev) +STUB("ITkjnzScbFE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEcvbEv) +STUB("ITnvTCJpUjk", _ZN3sce7Toolkit2NP2V29Challenge13ChallengeDataC1Ev) +STUB( + "ITqgZSC3WJo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEED2Ev) +STUB( + "ITrVRLRON5o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEED1Ev) +STUB( + "ITswihNXpQA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEeqERKS9_) +STUB("ITwB6pPwmRc", _ZNK3WTF3URL4dumpERNS_11PrintStreamE) +STUB( + "IU+2OE4mfjk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEmmEv) +STUB("IU+jMKipip4", WKPreferencesGetCSSOMViewScrollingAPIEnabled) +STUB( + "IU2hAFuSeo0", + _ZN9Inspector27DOMStorageBackendDispatcher6createERNS_17BackendDispatcherEPNS_34DOMStorageBackendDispatcherHandlerE) +STUB("IUHFPvFW4ig", + _ZN7WebCore21JSCSSStyleDeclaration10putByIndexEPN3JSC6JSCellEPNS1_9ExecStateEjNS1_7JSValueEb) +STUB("IUPWuNbTkng", _ZN3sce2Np9CppWebApi6Common6VectorIdE6insertENS2_8IteratorIdEERKdRS6_) +STUB("IURjY2yv8Lw", _ZNKSt9basic_iosIwSt11char_traitsIwEE4fillEv) +STUB( + "IUTbIVWt5GY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEEaSERKSA_) +STUB( + "IUU8e4EjBcs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEEC1Ev) +STUB("IUY0ho-22JE", _ZN7WebCore33stripLeadingAndTrailingHTMLSpacesERKN3WTF6StringE) +STUB("IUaDKNFBvJU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE8copyFromERKS7_) +STUB("IUcSgnLSpgQ", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_25ChallengeBinaryDataResultEE17getAdditionalInfoEv) +STUB("IUfBO5UIZNc", posix_spawnp) +STUB("IUjz2pR+uGU", + _ZN3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallbackC1Ev) +STUB("IUlOgy1pXxg", _Z15checkCreateRoomRKN3sce7Toolkit2NP2V28Matching7Request10CreateRoomE) STUB("IUlpGnuoR1c", sceCompositorInitWithProcessOrder) +STUB( + "IUnIbMxYDwk", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "IUo0jjFPjFw", + _ZN9Inspector24RuntimeBackendDispatcher10saveResultElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "IUoTqBh9k5U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE3endEv) +STUB( + "IUoowjakya0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("IUrObgAAdJU", mono_aot_Sce_Vsh_Sl2_NativeQueueClientjit_code_end) +STUB("IUsLDXiVkIM", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V111LeaveReasonEEdeEv) +STUB("IUuJ+ktmcTM", _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile14unsetLanguagesEv) +STUB( + "IUwNZOMBgGM", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsC1EPNS1_6Common10LibContextE) STUB("IV-ddS1D+U0", sceFaceTrackerGetResult) +STUB( + "IV1KvoudfKg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("IV2qBxyvR-c", + _ZN3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer8fromJsonERKNS_4Json5ValueE) +STUB("IVFVnpPIpRA", _ZNK3sce2Np9CppWebApi14SessionManager2V15Error9getReasonEv) +STUB("IVHQGH8yyB4", _ZN3PAL5Clock6createEv) +STUB("IVLJgTvIhS8", _ZTVN7WebCore13MIMETypeCacheE) +STUB( + "IVNb6lVPgzI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEC1EPS6_PNS2_10LibContextE) +STUB( + "IVR0zdfBhyw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE) STUB("IVSbAEOxJ6I", sceNpTssGetStorage) +STUB( + "IVSf+WpM4vw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEaSERKS9_) +STUB( + "IVXOksHTWCU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEmmEi) +STUB("IVaowWLHMK0", WKBundleFrameSetAccessibleName) +STUB("IVbhiIVZelg", _ZN3JSC15ObjectPrototype6s_infoE) STUB("IVd2CCSrXzY", sceUpsrvUpdateGetProgress) +STUB("IVfINJV3j44", _ZN9Inspector21InspectorRuntimeAgent27setTypeProfilerEnabledStateEb) +STUB("IVgh4w08BXs", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking10UsersRanksEE5resetEv) STUB("IVjtw0AuSBE", sceHidControlSetHandleState) +STUB( + "IVjy5rAsRjI", + _ZN7WebCore9CookieJar6createEON3WTF3RefINS_22StorageSessionProviderENS1_13DumbPtrTraitsIS3_EEEE) +STUB( + "IVkp04L0Aaw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEcvbEv) +STUB( + "IVnLyh8Gme4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE6resizeEj) +STUB( + "IVo-R2v0Ofg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEC2Ev) +STUB("IW2JW4kuDcM", mono_aot_Sce_Vsh_Np_RifManagerunbox_trampoline_addresses) +STUB( + "IW6whqKXGW4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEE11release_refEv) +STUB("IW8IHo2Et4g", _ZN3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error6setTidEPKc) +STUB( + "IW8fvpY082g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEmmEv) STUB("IWEla-izyTs", sceUserServiceGetImeRunCount) +STUB("IWIAgd-2uio", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy15TrophyPackGroupEE3getEv) STUB("IWIBBdTHit4", sceKernelMapFlexibleMemory) +STUB("IWL2kqTzhYA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEEC1EPS5_PFvS7_EPNS2_10LibContextE) STUB("IWOyO5jKuZg", scePadVirtualDeviceInsertData) +STUB("IWP1omvGMT8", + _ZN7WebCore19InspectorController26setInspectorFrontendClientEPNS_23InspectorFrontendClientE) STUB("IWSCO20RwIY", sceShellCoreUtilSetSkipUpdateCheck) +STUB("IWW--70EDNQ", mono_aot_Sce_Vsh_EventAppjit_got) STUB("IWalAn-guFs", sceHttpUriParse) +STUB( + "IWeoiRQNFUw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEE3getEv) +STUB("IWt0IzsPdsA", _ZN7WebCore13JSDOMRectList6s_infoE) +STUB( + "IWuC+kOf2Y8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEEC1ERKSA_) STUB("IWybWbR-xvA", sceHmdReprojectionQueryOnionBuffAlign) +STUB( + "IWzkMZOnh88", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE8pushBackERKS8_) +STUB( + "IX1x-+bL+DU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEEaSERSA_) STUB("IX23slKvtQI", sceHttp2GetCookieBox) +STUB( + "IX3hFDHY5CM", + _ZN3sce2Np9CppWebApi12Leaderboards2V112ErrorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5ErrorEEE) STUB("IX49aL2rOGU", sceUsbStorageDialogInitialize) +STUB( + "IX4wH3rBSFY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEEC2Ev) +STUB("IXAh0unHcjI", YGNodeStyleSetMaxWidth) +STUB("IXDubFoyCw4", + _ZN3sce2Np9CppWebApi7Matches2V123ResponseMatchStatistics21unsetPlayerStatisticsEv) +STUB("IXEc2JYkmm4", _deleteOneNode) +STUB("IXPN0f-aJ+M", pio4lo_lo) +STUB( + "IXU-Mx6iCQY", + _ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead22unsetReceivedTimestampEv) +STUB("IXW-z8pggfg", _ZN3sce4Json11Initializer10initializeEPKNS0_14InitParameter2E) +STUB("IXW6gHdbpMc", _ZN7WebCore21UserContentControllerD2Ev) +STUB("IXWxhO3ZOBE", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS25AtomicAddToAndGetVariableEEC1Ev) +STUB("IXXc85fjOzA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUserC1Ev) +STUB("IXZPRy0BMI8", vm_send_CachedStelemrefMethods) STUB("IXdwKopqJHo", sceHttpCacheCompleteRequest) +STUB("IXhS1ij+J1s", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V219WebApiFilterRequestC2EPNS1_6Common10LibContextE) +STUB("IXhjXNSGYI4", mono_aot_Sce_Vsh_VoiceMsg_VoiceMsgWrapperunbox_trampolines_end) +STUB("IXiXAHDFjeU", EVP_DecryptUpdate) +STUB("IXjSyZQ5ST4", _ZN3sce7Toolkit2NP10IdDatabase15addServiceLabelERKjNS1_11ServiceTypeE) STUB("IXmfUaze9So", sceNpCommerceDialogOpen2) +STUB( + "IXo+Mr-jmNk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEEC1EPS6_PNS2_10LibContextE) +STUB("IXq9Nh8Ri2M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEptEv) +STUB("IXzpGKFGdHE", _ZN3sce3Xml3Dom8Document10initializeEPKNS0_11InitializerE) +STUB( + "IY2ho9ATLxM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEplEm) +STUB( + "IY58Gt+aEBA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "IYApcYk6uBY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "IYEzYmDr9lQ", + _ZN9Inspector21PageBackendDispatcherC1ERNS_17BackendDispatcherEPNS_28PageBackendDispatcherHandlerE) +STUB( + "IYNtFaD0AKg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE7popBackEv) +STUB( + "IYOdj77UnLw", + _ZN3sce2Np9CppWebApi14SessionManager2V134PostGameSessionsRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_27PostGameSessionsRequestBodyEEE) +STUB( + "IYOkZcT+auU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("IYPfcj3Vau0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEED2Ev) +STUB( + "IYPh02nYiog", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("IYU31xtHBBw", _ZN3sce3Xml3Dom4NodeC2ENS1_6NodeIdE) +STUB( + "IYVa+zfruWA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE5emptyEv) STUB("IYZ+Mu+8tPo", sceRemoteplayChangeEnterKey) +STUB("IYbUhxZNmBg", utext_openCharacterIterator) +STUB("IYdmFM04Qhg", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadDataD2Ev) +STUB( + "IYe9MTtbYDU", + _ZN9Inspector14ConsoleMessageC2EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelEON3WTF6VectorINS5_12JSONLogValueELm0ENS5_15CrashOnOverflowELm16EEEPNS1_9ExecStateEm) +STUB("IYl5Sxwrxck", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEC2ERS7_) +STUB("IYneCFCupf4", _ZN3sce7Toolkit2NP17FriendRankRequestC1Ev) +STUB( + "IYv836e5h5Q", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEeqERKS9_) +STUB( + "IZ-8Xs8LBhI", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions31getxPSNSESSIONMANAGERSESSIONIDSEv) STUB("IZ-qjhRqvjk", sceHttp2AbortRequest) +STUB( + "IZ3uBH30a-k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEC1EPNS2_10LibContextE) +STUB( + "IZA6dfgHzPA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE5beginEv) +STUB( + "IZDLssdA9c8", + _ZN9Inspector17BackendDispatcher19reportProtocolErrorEN3WTF8OptionalIlEENS0_15CommonErrorCodeERKNS1_6StringE) +STUB("IZOGdJ+LFFU", _ZN3sce2np7RingBuf5ClearEv) +STUB("IZP0-Laqy5A", _ULx86_64_sigreturn) +STUB("IZQ-9iLRAwQ", _ZN3sce2Np9CppWebApi6Common8IteratorIfEC2Ev) +STUB("IZS6yQzPhqI", _ZN3JSC22DeferredWatchpointFireD1Ev) +STUB("IZSMfDMAiNg", _ZN3sce7Toolkit2NP9Utilities6FutureIbEC2Ev) +STUB("IZT1hu34ju8", mono_aot_ClassLibrary1jit_code_end) +STUB( + "IZVFTWcFN0U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE5beginEv) +STUB("IZVxTbucCz0", _ZN12video_parser22VpMpegvideoAvcParseSPSEPhiPNS_21VpMpegvideoAvcSPSCtrlE) +STUB("IZZ9vGDAfN8", _MBCSData_67) +STUB("IZfLlaPXR+8", mono_aot_System_Datamethod_addresses) +STUB( + "IZfW86HNwlE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEC1EPS8_) +STUB( + "IZgCu5Ipy+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEE7add_refEv) +STUB( + "IZmTiNoxZ2o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEC1Ev) +STUB( + "IZnubzgOEZI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "IZoNTkBMYzY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEneERKS9_) +STUB( + "IZp+PlQo29E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEE3getEv) STUB("IZrItPnflBM", sceAudioOutSetMorpheusWorkingMode) +STUB("IZsxZqY6xcE", _ZN3sce2np14HttpConnection4InitEiPKcS3_t) +STUB( + "IZtPnEpWWBE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE10setContextEPNS2_10LibContextE) STUB("IZw2TINic+0", sceVideoOutGetCoredumpOutputMode) +STUB( + "IZwl0l2ROyk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEE7get_refEv) +STUB( + "IZyx8Xwge7Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEC1Ev) +STUB("IZz5Cy2O52Q", WKPreferencesSetInvisibleMediaAutoplayPermitted) +STUB( + "Ia+kelrtwqo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEC2ERS7_) +STUB("Ia5o2GTzUBw", mono_aot_System_Dataplt) +STUB( + "Ia6Vj5-RkKw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEeqERKS9_) STUB("Ia71U49hehw", sceNpTrophySystemRegisterTitleUpdateCallback) +STUB( + "Ia8a242B4ts", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEC2Ev) +STUB( + "IaBjulBjZ7s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("IaCJeaXDWlk", UCNV_FROM_U_CALLBACK_ESCAPE_59) +STUB( + "IaCNd2JlV3A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEEC2ERSA_) +STUB( + "IaGICOSEgao", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE8pushBackERKS8_) +STUB( + "IaGnloEa0YY", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEEiRNS2_10LibContextEPT_m) +STUB("IaIvX3kgyb0", _ZN3sce4Json5Array8iteratorC1ERKS2_) +STUB("IaJtwUHdpXs", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOfferD2Ev) +STUB( + "IaLhCKXKvmU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEE7add_refEv) +STUB("IaNsGTooh7A", _ZNK7WebCore26ISOProtectionSchemeInfoBox20schemeInformationBoxEv) +STUB( + "IaPBtXN50hQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("IaQoBoi2WTQ", _ZN7WebCore13NodeTraversal19nextAncestorSiblingERKNS_4NodeEPS2_) +STUB( + "IaRaDSINYug", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEixEm) +STUB("IaVn+dReaVw", _ZN7WebCore9HTMLNames10schemeAttrE) +STUB("IaYzxLnoJWE", _ZN9Inspector15AsyncStackTraceD2Ev) STUB("IaZXJ9M79uo", sceAudioOut2UserDestroy) +STUB( + "IadOUrZnuWM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) STUB("IafI2PxcPnQ", scePthreadMutexTimedlock) +STUB("IafjN9FBQyM", ShInitialize) +STUB("IanwrjjBJ5Y", il2cpp_object_new) +STUB("IapqW01xOP4", mono_aot_Sce_Vsh_SQLiteAuxunbox_trampolines_end) +STUB("IaxgG9UumKo", + _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributesC2EPNS1_6Common10LibContextE) +STUB("Ib1SMmbr07k", _ZN3sce16CommonDialogUtil6ClientD0Ev) +STUB( + "IbJ5vm1gpM4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE10setContextEPNS2_10LibContextE) +STUB("IbM-EN54IKo", + _ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId8hasrangeEv) +STUB( + "IbVu5gq9eqQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEC2ERKS7_) +STUB( + "IbWx007Acn4", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERSB_) +STUB("IbYAd4QkY6s", _ZNK3sce2Np9CppWebApi15Personalization2V15Error9getReasonEv) +STUB( + "IbYL9tYYHuM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "Ibk4RNlFKRY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "IboOvmmOUvI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("IbuWiz2xOr0", _ZN3JSC4Heap10collectNowENS_15SynchronousnessENS_9GCRequestE) +STUB( + "Ic-vLNUcaYQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE7reserveEi) +STUB("Ic0HUCvXNJQ", mono_aot_Sce_Vsh_Sl2_Sl2Commonjit_code_start) +STUB("Ic5GhDpCRDw", umsg_applyPattern_67) +STUB("Ic8JMhUFe88", FTA_Add_Module_psnames) +STUB("IcFlF9RbS5Q", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeaders7destroyEPS5_) STUB("IcM2f5EoRRA", sceUserServiceSetUserGroupIndex) +STUB( + "IcNiAfK8N74", + _ZN23sceMetadataReaderWriter13ParserManager18registerParserInfoERKSt6vectorINS_10ParserInfoESaIS2_EE) +STUB("IcPfdX-tqP8", _ZN3sce2Np9CppWebApi14SessionManager2V115SearchConditionD2Ev) +STUB("Icc9+aRUQfQ", _ZN3sce2np10NpOnlineId16SetNpOnlineIdStrEPKc) +STUB( + "Icpx1uc-QMI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("IcuECtP3L0E", _ZN3sce7Toolkit2NP2V24Core4termERKNS3_7Request10TermParamsE) +STUB( + "IcyxwGmnFyI", + _ZN7WebCore16BlobRegistryImpl18appendStorageItemsEPNS_8BlobDataERKN3WTF6VectorINS_12BlobDataItemELm0ENS3_15CrashOnOverflowELm16EEExx) +STUB( + "IczieOiPYC0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEEC2ERKS9_) +STUB("Id-3QAPx0kI", _ZN7WebCore9HTMLNames7lowAttrE) +STUB( + "Id4abKCSTww", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEppEv) +STUB( + "IdBfsPTQ-TM", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeAccountId2OnlineIdBatch9terminateEv) +STUB("IdDEzfNzOq0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEC1ERS7_) STUB("IdI2f+xHIeA", sceVrTracker2ResetLocalCoordinate) +STUB("IdIO1h6EW3I", _ZNK3WTF12ASCIILiteral4dumpERNS_11PrintStreamE) +STUB("IdKE2DrNBck", cairo_translate) +STUB( + "IdLN7RFP2jU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEE7get_refEv) +STUB("IdPdE-du09Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEED1Ev) STUB("IdQuLJhnPAQ", sceKernelGetDefaultToolMemorySize) +STUB("IdQufwgHtEM", _ZN3JSC8Bindings8Instance19createRuntimeObjectEPNS_14JSGlobalObjectE) +STUB("IdV-tXejEGQ", + _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE5_FputES3_RSt8ios_basewPKcm) +STUB("IdWhZ0SM7JA", _FPmsw) +STUB("IdYVP-rBXDY", _ZN3JSC20WriteBarrierCounters22usesWithBarrierFromCppE) +STUB( + "IddVOaANQVw", + _ZN9Inspector17ScriptDebugServer27dispatchFailedToParseSourceERKN3WTF7HashSetIPNS_19ScriptDebugListenerENS1_7PtrHashIS4_EENS1_10HashTraitsIS4_EEEEPN3JSC14SourceProviderEiRKNS1_6StringE) +STUB( + "Ideb4SYEkDI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE8copyFromERKS9_) STUB("Idffwf3yh8s", sceGnmDrawInitDefaultHardwareState) +STUB("Idjfy4LiGgs", _ZN12Mp4Retriever10GetDbFTypeENS_15mp4DbFieldIdTagE) +STUB("Idp+8dpnrr8", _ZN3WTF11PrintStream6printfEPKcz) +STUB("IdqtjitnIRY", _ZTVN7WebCore18TextureMapperLayerE) +STUB("IdtpBr-PoD0", FT_RoundFix) +STUB("IdwCoiYMq2s", _ZN3sce7Toolkit2NP2V28Matching26MemberSignalingInformationD1Ev) +STUB("IdxVRT5V+l4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEC1ERKS7_) +STUB( + "Ie-6RHWcLgI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEE11release_refEv) +STUB( + "Ie0XotctMT8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEaSERKS9_) +STUB( + "Ie24i+v1-ok", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEEaSERKSA_) +STUB( + "Ie7Ip7r1WHI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "IeDat5zDkpk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "IeEXI2Wol-Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE5emptyEv) +STUB("IeJhkJt7BAI", mono_get_inflated_method) STUB("IeNj+OcWgU8", sceNpBase64UrlEncoder) +STUB("IePGF3SWJxY", _ZN3JSC7Symbols25typedArraySortPrivateNameE) +STUB("IeQSRVoUfPw", WKNotificationManagerProviderDidCloseNotifications) +STUB("IeQy-clnfbs", jpeg_fdct_2x2) +STUB("IeSffOIDQrM", _ZN3sce7Toolkit2NP7TssDataC1Ev) STUB("IeXW4fnPkyw", sceDebugCreatePerfScratchDataArea) +STUB( + "IeYWE8c0q2A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE8copyFromERKS9_) +STUB("IefAhNUAivM", _ZN3sce2np9NpTitleIdC2ERKS1_) +STUB("Iep44h1nOdg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEEeqERKS7_) +STUB("IesIjBGNW1g", __asan_stack_malloc_always_7) +STUB("IewcaRR3F8I", FTA_Export_Module_pshinter) +STUB("IeyIJiE74KM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEEC1ERS6_) +STUB( + "IezD5dF6NbQ", + _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest15setInGameRosterERKNS1_6Common12IntrusivePtrINS3_19RequestInGameRosterEEE) +STUB("If-x7dEm3i0", __tsan_atomic8_compare_exchange_val) +STUB( + "If4d2h3LVRk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEEC2ERKSA_) +STUB("If4qzpAueWU", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13SessionMemberEE7destroyEPS3_) +STUB("If7x201SLlk", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS12TusVariablesEE12deepCopyFromERS7_) +STUB( + "If9RgExlSq8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEC1ERS7_) +STUB("IfA9te0tIEU", fuse_fs_truncate) +STUB("IfAIT0GGlwI", mono_debugger_agent_parse_options) +STUB( + "IfAUdKkXJxk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEEdeEv) +STUB( + "IfEG-rBZiFA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("IfIiHBio398", _ZN7WebCore13HitTestResultC1Ev) +STUB( + "IfTQdBY7i2E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEC2EPS6_PNS2_10LibContextE) +STUB( + "IfVDQlqoXso", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEEaSERKSA_) +STUB("IfVNNqChk5s", _ZN3sce7Toolkit2NP2V210Tournament7Request10GetBracketD2Ev) +STUB("IfWUkB7Snkc", _ZTSSt15basic_streambufIcSt11char_traitsIcEE) +STUB("IfWiQyx3HIM", u_catclose_67) +STUB( + "IfYHZyD055E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEED1Ev) +STUB("IfYl2LuI8UI", + _ZN3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator17unsetPushContextsEv) +STUB("Ifa0CArZ1Yg", _ZN7WebCore13HitTestResultC2ERKNS_11LayoutPointEjjjj) STUB("IfiN+-oeVWI", scePlayGoGetSupportedOptionalChunk) +STUB( + "IfkAwhCL2HI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE5beginEv) +STUB("IfkZ1ee1C38", _ZN3sce2Np9CppWebApi6Common6VectorIdEC2Ev) +STUB( + "IflGKIivNMo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("IfoowZgAFX8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEEC2ERS7_) +STUB( + "Ig+3HTnJQAQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEC1Ev) +STUB("Ig+vNmL2bGg", uprv_decContextSetStatusFromStringQuiet_67) +STUB( + "Ig-i1V0lg0w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEE5resetEPS6_) +STUB("Ig0Ts6ju8rQ", glVertexAttrib4fv) +STUB( + "Ig2+t-HkcYs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEppEv) +STUB( + "Ig2ExPN+1fE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEC2EPS8_) +STUB("Ig2IVCBx4qY", jinit_1pass_quantizer) +STUB("Ig3LXTERtzc", Java_java_net_PlainDatagramSocketImpl_leave) +STUB("IgBFcd4cF28", cairo_font_face_destroy) +STUB( + "IgBue4dsEJY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEmmEi) +STUB("IgFReVl+gKY", mono_btls_x509_revoked_get_serial_number) STUB("IgMVFBKHGFE", sceClAudiodecDecode) STUB("IgOXtx50ZWM", sceVrTrackerSubmitCompute) +STUB( + "IgPKVNSl81I", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("IgU++WJoTEQ", fuse_fs_release) +STUB("Iga-UEf-wR4", _ZN7WebCore8SVGNames6x1AttrE) +STUB("Igc1Aj8pSII", _ZThn96_N7WebCore14XMLHttpRequestD1Ev) +STUB("IgcBCyr+6hI", GCC_except_table473) +STUB("IgerFXFR9Ts", _ZTVN7WebCore14JSVoidCallbackE) +STUB( + "IgfMQ4Dmo14", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEE3getEv) STUB("IgguX1ZMXMM", sceUpsrvUpdateGetUrlForFeatureList) +STUB("IgjnabrP4Sg", _ZN3sce2Np9CppWebApi14SessionManager2V117SearchGameSessionD2Ev) +STUB("IglfWxaajs0", jpeg_aritab) +STUB("IglowNcOePQ", __sys_opmc_get_hw) +STUB("IgpdIk+DbIY", _ZN3JSC8SubspaceD2Ev) STUB("IgqBZdkIvqM", sceApplicationRaiseException) +STUB( + "IgujjDf7Ypw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEneERKS9_) +STUB( + "IgwYJEYwPME", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEE21intrusive_ptr_sub_refEPS7_) +STUB( + "Igyhh+Xm0s4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEE7get_refEv) +STUB("Ih1gA1ynWjk", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead16customData1IsSetEv) STUB("Ih3xsOhFi8A", sceBluetoothHidSetOutputReport) +STUB( + "Ih4tagjei1Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEptEv) +STUB("Ih63dOPnHP0", + _ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody20unsetCreatedDateTimeEv) +STUB("Ih70NW9VAdQ", monoeg_g_list_delete_link) +STUB("IhBYnjoZghA", mono_aot_Sce_Vsh_UserServiceWrapperunbox_trampoline_addresses) +STUB("IhHOpdG2KGo", YGNodeStyleSetWidth) +STUB( + "IhKCPMyGMOM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEmmEv) +STUB("IhOHULApF5M", _ZN4Manx14NetworkProfile10initializeEv) +STUB("IhPWA3mYDk4", JSValueIsDate) +STUB( + "IhRgrFc69cU", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditionsC1Ev) +STUB( + "IhXONMfk02w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEEC2ERSA_) +STUB("IhYgO74v0+c", _ZN3sce7Toolkit2NP13InviteMessageC2Ev) +STUB( + "IhbD9z6lGbQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE8copyFromERKS9_) +STUB( + "IhdIriJ6AF8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEC2Ev) STUB("IhlLdSAX+Jk", sceLncUtilKillLocalProcess) +STUB("Ihz5iWMnHDY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEppEi) +STUB( + "Ii7ADHLAYg4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody30setComparedLastUpdatedDateTimeERK10SceRtcTick) +STUB( + "Ii7cu0+7wT4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE5beginEv) +STUB("IiBD2hwp06k", u_fadopt_67) +STUB("IiCJTLueaWU", VerifyFixClassname) +STUB("IiFFNfPTaaI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEC1ERS7_) +STUB("IiHEJbI83cQ", mono_aot_Sce_Vsh_AppDbWrappermethod_addresses) +STUB( + "IiIc8nBGjQU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "IiMKMaQu+Ns", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE3endEv) +STUB("IiMePajfzUI", _ZN7WebCore11DisplayList13ClipOutToPathD0Ev) +STUB("IiROOhdN-fA", _ZN3IPC10Connection24createSyncMessageEncoderENS_15StringReferenceES1_mRm) +STUB("IiRQGia5YSU", _ZN3JSC2VM6createENS_8HeapTypeE) +STUB( + "IiTx9BwArWM", + _ZN7WebCore23CoordinatedBackingStore25paintTilesToTextureMapperERN3WTF6VectorIPNS_17TextureMapperTileELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEERNS_13TextureMapperERKNS_20TransformationMatrixEfRKNS_9FloatRectE) +STUB( + "IiZLH-rfAMQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEC1EPS8_) +STUB( + "IiZkIZWR2RY", + _ZN7WebCore11JSDOMWindow25getOwnPropertySlotByIndexEPN3JSC8JSObjectEPNS1_9ExecStateEjRNS1_12PropertySlotE) +STUB("IiofFKEgSew", aio_write) +STUB("IitctlDZLbw", _ZNK7WebCore14ResourceLoader24isAlwaysOnLoggingAllowedEv) STUB("IiwhRynrDnQ", sceUserServiceSetPartySettingFlags) +STUB("IizpdlgPdpU", CA_MGMT_convertKeyDER) +STUB("Ij+pmlAPEes", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V510AnnotationEEppEv) STUB("Ij+ryuEClXQ", sceKernelDeleteAmprSystemEvent) +STUB("Ij73Rv0ZhKI", _ZN7WebCore9HTMLNames12onsearchAttrE) +STUB("IjDmpUrMSz0", AsyncStorageRemoveItemNative) +STUB("IjFLMR3MH3M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEEmmEv) +STUB("IjOpzNzl57o", _ZN3sce2np13NpTitleSecretC1EPKvm) +STUB( + "IjdQmtSfABk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEEptEv) +STUB( + "IjfM9pizqko", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "IjjVp9K7RsI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEEdeEv) +STUB("IjlonFkCFDs", __addvti3) +STUB( + "Ijml4LILSRE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEneERKS9_) +STUB( + "IjpCgLp4HnA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEEC1ERSA_) +STUB("IjpRgk25doc", ucol_getShortDefinitionString_67) +STUB("Ijpk2+gvzms", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEC1ERS7_) +STUB("IjquEAbfizc", FTA_Add_Module_cff) +STUB("Ijs9M5v0FjA", _ZN3JSC7Symbols24thisTimeValuePrivateNameE) +STUB("IjwftUb9Xfs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEE5resetEPS6_) +STUB("IjytoQHKfwc", _ZN3sce7Toolkit2NP2V28Commerce10CategoriesC1ERKS4_) STUB("Ik-KpLTlf7Q", sceHttpTerm) +STUB("Ik17GQynFpw", FT_Get_PS_Font_Value) +STUB("Ik1djcgFM70", _ZN3JSC22ArrayAllocationProfile13updateProfileEv) STUB("Ik5TMINZINo", sceVideoCoreInterfaceAddVblankEvent) +STUB("Ik7a6r6a7iw", JSValueIsString) +STUB("Ik7hrJEazOQ", cpp_demangle_read_sname) +STUB("Ik9OVKn9LZA", Java_com_sony_bdjstack_core_CoreApp_getName) STUB("IkBCxG+o4Nk", sceNetConfigWlanInfraLeave) +STUB("IkDe9ajjgrc", _ZN7WebCore15isEndOfDocumentERKNS_15VisiblePositionE) +STUB( + "IkDmtqnlt3o", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "IkEr7pWvRjQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEE3getEv) +STUB("IkFbCRm9afY", _ZN3sce7Toolkit2NP15AppSTLAllocatorItEC2ERKS3_) +STUB("IkFdFkjVeQg", AnnotateHappensAfter) +STUB("IkFhWRZ5Jb8", _ZN9Inspector15ScriptArguments24getFirstArgumentAsStringERN3WTF6StringE) +STUB("IkG9w8ZtXA8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEE7get_refEv) +STUB( + "IkHkCEZ5fi0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEC1EPNS2_10LibContextE) +STUB( + "IkJzqOW1yps", + _ZN8meta_gen11MsvPromoter34setKeyValue_TBLV_VideoProfileLevelENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) STUB("IkL62FMpIpo", sceNpInGameMessagePrepareA) +STUB("IkLRlZVvw5g", nsnp_FinSession) +STUB("IkSpxZtcGFs", _ZN7WebCore11MathMLNames10lspaceAttrE) +STUB("IkWJtQkfvZs", ECDSA_verify) +STUB("IkXHxiU0HyQ", ucol_getContractions_67) +STUB("IkaQNfPt-mk", __asan_set_shadow_f2) +STUB( + "IkakYWVFoVc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEC1EPKS8_) +STUB("IkhwWUN3o3U", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS15TusDataStatusesEE12deepCopyFromERS7_) +STUB("IkiI5iE7d98", JSObjectGetTypedArrayByteLength) STUB("IkjZOyRXN4A", sceHandTrackerInitialize) STUB("IklPwMoko10", sceMusicCoreServerGetStatusOfTracks) +STUB( + "IklXXM53-+M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEE3getEv) +STUB("IkmBuACxfkg", _ZN7WebCore28InspectorFrontendClientLocal26isTimelineProfilingEnabledEv) +STUB("IknlaoECxqg", _ZNK7WebCore18AdClickAttribution8referrerEv) +STUB("IkoI44e0OXc", __tsan_release) +STUB( + "Ikp+P7mDU+c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "Iks8sHd2ta0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEC1EPS6_PNS2_10LibContextE) +STUB( + "IksYJqCBw94", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE8capacityEv) +STUB( + "Ikt1f83OovA", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToSendGameSessionMessage10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_50PostGameSessionsSessionIdSessionMessageRequestBodyEEE) +STUB( + "IkxgD402ShY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEC2ERKS7_) +STUB( + "Ikzsu2oWDlE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE7popBackEv) +STUB("Il-gr2IO+fY", _ZN3WTF11OSAllocator16reserveAndCommitEmmNS0_5UsageEbb) +STUB("Il1VIdvQNQo", _ZN3WTF17double_conversion23StringToDoubleConverter14StringToDoubleEPKtmPm) +STUB( + "Il4GGxx-NAY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("Il4v0nCRffo", __asan_set_error_exit_code) +STUB( + "Il8NS5XPSmA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEaSERKS7_) +STUB( + "IlJMl34X3IM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEE7add_refEv) +STUB("IlJiXLRCfks", WKPreferencesGetNotificationsEnabled) +STUB("IlMM-ZmxY28", _ZNK7WebCore9FrameView22baseLayoutViewportSizeEv) +STUB("IlMqEkBLuBE", _ZN3sce2Np9CppWebApi6Common13ConstIteratorImED2Ev) +STUB("IlMyo-kG9VM", _ZN7WebCore7Element12setInnerHTMLERKN3WTF6StringE) +STUB("IlO3gE1DNoI", WKContextConfigurationSetUsesWebProcessCache) +STUB( + "IlQQXWwwDt8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEeqERKS9_) +STUB( + "IlRY+QYc-s0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEC1EPNS2_10LibContextE) +STUB( + "IlS2X8Bp7r0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEEaSERSA_) +STUB( + "IlWuwwKXV7U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "IlYelQk7hFo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEmmEi) +STUB("IlYsJXsK75Y", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10getString9Ev) STUB("IldAc7Eq5-c", sceShellCoreUtilNotifyYouTubeAccountLinkStatusChanged) +STUB("Ile1Uews8N8", _ZNK7WebCore9ImageData6heightEv) +STUB( + "IlfkhhJCjZQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "IlhEYd0ntds", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE8copyFromERKS9_) STUB("IljzwFmlBKg", sceCesUtf8StrGetMbcsLen) +STUB( + "Ilki4lk8XJo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE8pushBackERKS8_) +STUB( + "IlmPmUCAopA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEEaSERS9_) +STUB("IlmoSbxNwxU", uplrules_close_67) +STUB("Ilp-RrniJ8w", mono_aot_System_Transactionsmethod_addresses) +STUB("IlsmvBtMkak", _ZNK3sce4Json5Value9getObjectEv) +STUB( + "IluXM--ej6k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEED1Ev) STUB("Im+jOoa5WAI", sceAudio3dGetDefaultOpenParameters) +STUB("Im10hfUMRTY", + _ZNK3sce2Np9CppWebApi7Matches2V128RequestTemporaryMatchResults6toJsonERNS_4Json5ValueEb) +STUB("Im1vS6CqDb4", _ZN3sce2Np9CppWebApi10Activities2V114UserActivities8ActivityD2Ev) STUB("Im235TKzFr4", sceNpTrophy2SystemDebugLockTrophy) +STUB("Im55VJ-Bekc", swprintf_s) +STUB( + "Im7FDyI-SjQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEC1EPS6_PNS2_10LibContextE) +STUB("Im8eHiDTMeY", _ZN3WTF5equalEPKNS_10StringImplEPKDsj) +STUB("Im92wGL1848", _ZN3JSC7Symbols36promiseResolveThenableJobPrivateNameE) STUB("ImGu0XisCrg", sceCustomMusicCoreStartOperation) +STUB( + "ImJHpARwOeA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEaSERKS9_) STUB("ImQzZdQP6Lk", sceVnaSetWakeUpPhraseTelemetry) +STUB( + "ImS2Dm4Ldfg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEeqERKS9_) +STUB("ImU42jms6yo", rgctx_fetch_trampoline_mrgctx_26_p) STUB("ImXI9qdLfc0", sceKernelDeleteACInfo) +STUB( + "ImYWfERhuRY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEcvbEv) +STUB("ImblNB7fVVU", _ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE5_TidyEv) +STUB("ImcbXg63P+g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEcvbEv) +STUB("Imhs4kQbeps", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEE5resetEPS6_) +STUB( + "Imk3P+Ewgks", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "ImkXHgmc9LE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEEC1ERKSA_) +STUB( + "ImknYD1GOGI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEC1Ev) +STUB("ImoON94w1mc", monoeg_g_str_has_prefix) +STUB("Imq55VAs2yM", + _ZNK3sce2Np9CppWebApi7Matches2V121ResponsePlayerResults6toJsonERNS_4Json5ValueEb) +STUB( + "Ims3CoGy37o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEC2Ev) +STUB( + "ImuSwPyPC7I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE3endEv) +STUB( + "In+3UxUA24c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEE7add_refEv) +STUB( + "In-t-CCR6Hs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEC1Ev) +STUB( + "In0UDhhMBxk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB("In5ugGO8zCE", _ZNK9Inspector14ConsoleMessage3urlEv) +STUB("InCF5XTv5UQ", + _ZN7bmalloc29StaticPerProcessStorageTraitsINS_25ARC4RandomNumberGeneratorEE7Storage7s_mutexE) +STUB("InJfgR2qxOU", _ZN3JSC37JSSegmentedVariableObjectHeapCellTypeD1Ev) +STUB( + "InOsYBrvIT8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEE3getEv) +STUB( + "InPjtmb+klM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEC1Ev) +STUB("InW+GhGRr70", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEEcvbEv) +STUB("InWCDUOqVQI", WKBundlePageOverlaySetNeedsDisplay) +STUB("Inh5Z-OfpQo", _ZN7WebCore11MediaPlayer13prepareToPlayEv) +STUB("Ini4tYD9VF4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEE7get_refEv) +STUB("Inld2SiNs+E", i2d_X509_PUBKEY) +STUB( + "InmSC9KxjRY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE7popBackEv) +STUB("InoC17C0v7k", isatty) STUB("Inp1lfL+Jdw", sceNetEpollDestroy) +STUB("InrAKcZaX-A", _ZN7WebCore19InspectorController13willCompositeERNS_5FrameE) +STUB( + "IntAnFb+tw0", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERf) +STUB( + "InvFYx0uE24", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE21intrusive_ptr_add_refEPS7_) +STUB("InwrU6cuX-o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEED2Ev) STUB("Io7kh1LHDoM", sceNpWebApi2AddMultipartPart) STUB("Io9+nTKXZtA", pthread_mutex_timedlock) +STUB("IoDV+oqRRWo", _ZN7WebCore11MediaPlayer13addAudioTrackERNS_17AudioTrackPrivateE) +STUB("IoGwVQHItWY", _ZNK7WebCore4Node7baseURIEv) STUB("IoKIpNf9EK0", sceImeDialogInitInternal3) +STUB("IoNHhprXb8k", ucnv_getAlias) +STUB("IoNVJKklWm0", _ZN7Nicosia29ContentLayerTextureMapperImpl19swapBuffersIfNeededEv) +STUB("IoNgvbVSw24", _ZN15AbstractStorage7ServiceD0Ev) +STUB("IoT+E4Ndsko", utrie_serialize_67) +STUB("IoWRtY4cG98", + _ZThn664_N7WebCore24CoordinatedGraphicsLayer39tiledBackingStoreHasPendingTileCreationEv) +STUB("IoY-NWspCE4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEptEv) +STUB("Iok1WdvAROg", _ZNSt10filesystem7_UnlinkEPKc) +STUB("Iok2hcJIyDQ", _ZN3sce7Toolkit2NP2V211SharedMedia11ScreenshotsC2Ev) +STUB("Iol5fnRzOY4", mono_aot_System_Reactive_Linqplt) +STUB("IomWHpTgpI8", _ZN3sce7Toolkit2NP2V28Matching7Request12SearchClauseC1Ev) +STUB("IonqsnFkdJY", _ZNK3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer15playerNameIsSetEv) +STUB( + "Ioq8NQrsmFk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEppEv) +STUB( + "IoxOGiBpJx8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEC2EPNS2_10LibContextE) +STUB( + "IoyfppKltNI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEE11get_deleterEv) +STUB( + "IozhreQwKiY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEmmEi) +STUB( + "Ip+RDR889jI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEixEm) +STUB("Ip0oCnCtcT0", WKPreferencesGetReferrerPolicyAttributeEnabled) +STUB("Ip3FGULx7ng", _ZN3WTF8JSONImpl5ValueC2ERKNS_6StringE) +STUB("Ip4A7VSdh1U", ures_getFunctionalEquivalent_67) +STUB( + "Ip7YxSfveEA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEEptEv) +STUB( + "Ip9EaGpd9Oc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEmmEv) +STUB( + "IpCH3U9wFW0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEED1Ev) STUB("IpEZSWzuMGg", sceMoveTrackerCalibrateReset) +STUB( + "IpI6J3ZJyu0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEC1EPNS2_10LibContextE) STUB("IpMhRnVgJUU", sceVideoOutSysGetColorConversionStatus) +STUB("IpQR5wAgCfk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEC2ERS7_) +STUB("IpWmqKEuLxU", _ZN3sce2Np9CppWebApi11Matchmaking2V15CauseC2EPNS1_6Common10LibContextE) +STUB("Ipi-U6neCxo", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE4sizeEv) +STUB( + "Ipji7oPuouA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEcvbEv) +STUB( + "Ipjqmw2QplY", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponse13setRestrictedERKb) +STUB( + "IpnaAcLpS94", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEE7add_refEv) +STUB("Ipo19kq3hWA", _ZNK3JSC8Profiler8Database4toJSEPNS_14JSGlobalObjectE) +STUB( + "IpoZ1weXvEM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE8copyFromERKS9_) +STUB( + "Iq-EhQvK4lQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEneERKS9_) STUB("Iq-iZyQ4BVQ", sceNpUniversalDataSystemIntCreateHandle) +STUB("Iq-nLBtQE7U", _ZN7WebCore23ApplicationCacheStorage21setDefaultOriginQuotaEl) +STUB( + "Iq1WaXARONA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEneERKS9_) +STUB( + "IqBl52G8-3E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEmmEi) +STUB( + "IqBz76IcuC4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEED2Ev) +STUB("IqCW3eAnmi8", u_strFromUTF8WithSub_67) +STUB("IqK5rvqsy9A", + _ZN15AbstractStorage14TwitterStorageC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB( + "IqLzUI7jQow", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEEC1ERSA_) +STUB( + "IqNj2WUNlKw", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getInteger8Ev) +STUB( + "IqW2e2jbAd8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEC2EPS8_) +STUB( + "IqZK9n5Unt8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEED1Ev) +STUB( + "IqZuVex4Q7k", + _ZN7WebCore11DisplayList12PutImageDataC1ENS_22AlphaPremultiplicationEON3WTF3RefINS_9ImageDataENS3_13DumbPtrTraitsIS5_EEEERKNS_7IntRectERKNS_8IntPointES2_) STUB("IqaPZ1ZMC+c", sceNpStartApp) +STUB("IqcrfZx0zKs", _ZN7WebCore14ScrollableArea28setScrollOffsetFromInternalsERKNS_8IntPointE) +STUB("IqdYYfCAHuU", delegate_virtual_invoke_imt_12_p) +STUB( + "IqepZk2LrLY", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB("IqjRfua8gz8", u_charAge_67) +STUB("Iqpp9WOrXeE", WKPageSetMaintainsInactiveSelection) +STUB("IqriIZYvAL8", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V13MmrD1Ev) +STUB("IqvI72sPVyw", _ZN9Inspector24TargetFrontendDispatcherC2ERNS_14FrontendRouterE) STUB("Iqz2w4IZfqk", scePatchCheckerClearCache) +STUB( + "IqzB5JsCCLg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE5emptyEv) +STUB( + "Ir+RBCg8j2s", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "Ir0lsyLpQB8", + _ZN9Inspector20DOMBackendDispatcher12setNodeValueElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) STUB("Ir13Y5FbeeA", sceAudioOut2ReportUnregisterHandler) +STUB("Ir1Bso0XStA", mono_debug_close_mono_symbol_file) +STUB("IrAYtHdJ2HA", _ZN7WebCore18PlatformTimeRanges9unionWithERKS0_) +STUB( + "IrCcRtHVTpA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE5emptyEv) +STUB("IrOpC8SDD1s", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIdE21intrusive_ptr_add_refEPS4_) +STUB("IrPk3iRaSU8", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_19ProductInfoDetailedEE8allocateEmPKv) +STUB( + "IrV7XKZgwCk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE5emptyEv) STUB("IrXeG0Lc6nA", sceFontGetScriptLanguage) +STUB("IrZg5RHoLGQ", _ZNK15AbstractStorage11LocalFolder10GetServiceEv) +STUB("Irc2HhL6jp4", _ZN12video_parser5vpcom3rtc10IsLeapYearEt) +STUB("Irg3UX8TFzM", _ZN7WebCore18JSHTMLMediaElementD1Ev) +STUB( + "IrjUWfCcwr4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEC2EPS6_PNS2_10LibContextE) +STUB( + "Irtni1Y-GFA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEmmEv) +STUB( + "Is+nI7Hq9jU", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody23getTotalDataStatusCountEv) +STUB("Is-YM6hO4hw", _ZNK7WebCore5Frame7frameIDEv) +STUB("Is3ycYFTIN4", YGNodeStyleSetAlignItems) +STUB( + "Is89xxXsJNg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE5clearEv) +STUB( + "Is9gJ7pyC5g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE5clearEv) +STUB( + "IsEcNHomkl8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "IsEjg-sOGFk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEaSERKS7_) +STUB("IsF8dCgf14w", _ZN7WebCore8Document16addAudioProducerEPNS_13MediaProducerE) +STUB("IsJVYLiBgow", WKWebsitePoliciesGetAutoplayPolicy) +STUB("IsPcsC1N-6I", _ZN7WebCore23ApplicationCacheStorageC1ERKN3WTF6StringES4_) +STUB("IsUM7dDdAaQ", _ZNK7WebCore6Widget23convertToContainingViewERKNS_7IntRectE) +STUB("IsVVlFOqJ7w", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead15setJoinDisabledERKb) +STUB("IsauUl8mDDY", _ZNK7WebCore11RenderStyle21visitedDependentColorENS_13CSSPropertyIDE) +STUB( + "Ise8Z1gXwno", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEC1EPKS8_) +STUB( + "Isg+u8XwT6U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE8copyFromERKS9_) +STUB("IsjJYpIZzvc", _ZNK3JSC7JSValue19toWTFStringSlowCaseEPNS_9ExecStateE) +STUB( + "IsoyYPeXdGM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEC1Ev) +STUB("IsqE1Kivdas", _ZN3sce7Toolkit2NP2V211SharedMedia14CommonMetadata13MAX_LEN_TITLEE) +STUB( + "IsvxcRE9wpI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEEdeEv) +STUB("Iszli7AzLl8", _ZN3sce7Toolkit2NP2V24Core13CallbackEventC2ERKS4_) +STUB( + "It07IR7JAGQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEEC1ERKSA_) +STUB("It2gHn6TKgk", FTC_SBit_Cache_New) +STUB("ItC2hTrYvHw", verrx) STUB("ItJTxCCvT4A", sceVorbisDecRead) +STUB( + "ItL6We7nrX4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB("ItO4km85h7E", _ZN9Inspector26DebuggerFrontendDispatcherC2ERNS_14FrontendRouterE) +STUB( + "ItPqrUFki-M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEC1Ev) +STUB("ItZHQ9B51QI", + _ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession28getReservationTimeoutSecondsEv) +STUB("ItZXngg8tfo", _ZN3sce7Toolkit2NP2V26Trophy7Request18RegisterTrophyPackD1Ev) +STUB("ItZkZXYeh1I", _ZN3sce2np14JsonNumberImpl3SetEm) +STUB( + "Ita+8UJcQlc", + _ZN7WebCore22EmptyFrameLoaderClient22createJavaAppletWidgetERKNS_7IntSizeERNS_17HTMLAppletElementERKNS_3URLERKN3WTF6VectorINS9_6StringELm0ENS9_15CrashOnOverflowELm16EEESF_) +STUB( + "Itcwf7DdHiE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEED1Ev) +STUB("ItdgLLUUlX0", __tsan_get_alloc_stack) +STUB( + "IthHdE4+UA4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEC2Ev) +STUB("IthJS-ZcEV4", _ZN7WebCore10ISOFullBox5parseERN3JSC8DataViewERj) +STUB("IthxLPwzd04", _ZN3sce7Toolkit2NP2V211UserProfile9NpProfile22MAX_NUM_LANGUAGES_USEDE) +STUB( + "ItjDQqppfLg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("ItkIBAdycp4", _ZNK3sce2Np9CppWebApi7Matches2V113ErrorResponse6toJsonERNS_4Json5ValueEb) +STUB("ItmiNlkXVkQ", _ZTSSt24_Iostream_error_category) +STUB( + "Itqv2Dwvjl4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE3endEv) +STUB( + "ItrAO9ZjHe8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEC2ERS7_) +STUB( + "Iu--mJYKn4o", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEeqERKS9_) +STUB( + "Iu0l5rnXgIM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEEC1Ev) +STUB( + "Iu2LCt151tg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "Iu3PeFrik8Y", + _ZN3JSC12StringObject3putEPNS_6JSCellEPNS_9ExecStateENS_12PropertyNameENS_7JSValueERNS_15PutPropertySlotE) STUB("Iu899MfLTlE", sceMbusDebugDecodeApplicationStartupInfo) +STUB("IuDfAy-evo4", _ZN3sce7Toolkit2NP2V28Commerce7Request26DisplayProductBrowseDialogD1Ev) +STUB("IuFImJ5+kTk", _ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2ERKSt8_Locinfom) +STUB( + "IuGjnl4i730", + _ZN7WebCore22StorageEventDispatcher36dispatchSessionStorageEventsToFramesERNS_4PageERKN3WTF6VectorINS3_6RefPtrINS_5FrameENS3_13DumbPtrTraitsIS6_EEEELm0ENS3_15CrashOnOverflowELm16ENS3_10FastMallocEEERKNS3_6StringESH_SH_SH_RKNS_18SecurityOriginDataE) +STUB( + "IuGyz6uLGxo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEC2Ev) +STUB( + "IuO+F6M1IX8", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStats18unsetincludeFieldsEv) +STUB( + "IuOuCeAKBEg", + _ZN9Inspector24ConsoleBackendDispatcher22setLoggingChannelLevelElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "IuPqIm7eFOc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE11getResponseERS6_) +STUB("IuW-f48TrCI", _ZN7WebCore9HTMLNames7relAttrE) +STUB("Iuc4hXTE5PE", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V16StatusEEppEv) +STUB( + "IueKbUzHvBw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEptEv) +STUB( + "IuxHrb1CRzk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) STUB("IuxnUuXk6Bg", sceKernelGetModuleList) +STUB("Iv249kxxuiQ", X509_EXTENSION_get_object) +STUB("Iv3mg5--iDE", _ZNK3sce2Np9CppWebApi6Common6VectorIfEixEm) +STUB( + "Iv43W837LwU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("Iv4LGdKM5JA", mono_aot_Sce_Vsh_Stickermethod_addresses) +STUB("Iv7p0JnxpoQ", _ZN3sce2Np9CppWebApi12Leaderboards2V15Entry13setSerialRankERKi) +STUB("IvDq59ffIzQ", GCC_except_table274) +STUB( + "IvEpaJLoeI4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE6resizeEj) +STUB("IvF98yl5u4s", erfcf) +STUB( + "IvHnLVu6i1E", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB( + "IvJw3v6M31g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB("IvM7GNSK6wA", _ZStL14classic_locale) +STUB("IvMsyTCxaVs", _ZN3sce2Np9CppWebApi12Leaderboards2V15ErrorD1Ev) +STUB("IvP-B8lC89k", _Wcstate) +STUB( + "IvQsjoAcmQo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "IvRU-N-j6EE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEC1EPS6_PNS2_10LibContextE) +STUB("IvTsS4VJq1w", _ZTVN3sce2np10JsonNumberE) +STUB("IvZztwZzfyA", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getInteger6Ev) +STUB("IvbJzet8uss", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEC2ERS7_) +STUB( + "IveLmJuvnBU", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126NatConnectivityFromFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_19NatConnectivityFromEEE) +STUB( + "IvecwlttTx4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEptEv) +STUB("IvnXHG-Nwhc", uspoof_getChecks_67) +STUB("IvngxwXoUdw", WKBackForwardListItemGetTypeID) +STUB( + "Ivo42L7J7XY", + _ZN9Inspector25DatabaseBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) +STUB( + "IvqoHMpUXEg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEED2Ev) +STUB( + "Ivt+F4Jukss", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE5emptyEv) +STUB( + "IvuYm7FCZEY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEneERKS9_) +STUB( + "Ivusd8QIzeE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEC2EPKS8_) +STUB( + "IvvzJcdUGas", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE3endEv) +STUB( + "Iw+NfP8Cp5Q", + _ZThn24_N9Inspector22InspectorDebuggerAgent21breakpointActionProbeEPN3JSC14JSGlobalObjectERKNS_22ScriptBreakpointActionEjjNS1_7JSValueE) +STUB( + "Iw1u3bTWrRU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEppEi) STUB("Iw2h0Jrrb5U", sceNpMatching2SendRoomMessage) +STUB("Iw5XW-1wgr0", _ZNK7WebCore17FrameLoaderClient24loadedSubresourceDomainsEv) +STUB("IwAvLDYDqt8", _ZN3sce7Toolkit2NP27ReceiveInGameMessageRequestC2Ev) +STUB("IwDQAbQxvD0", _ZN3sce2np10Cancelable11CheckCancelEPKciS3_) +STUB("IwFD5MtgZlc", _WLdtob.nan) +STUB( + "IwGjTJmoWRs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEmmEv) +STUB( + "IwIvO92zFQs", + _ZN9Inspector20CSSBackendDispatcher15setRuleSelectorElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("IwJKMuS3-AQ", _ZN3sce7Toolkit2NP15PresenceDetailsC2Ev) +STUB("IwOCxQwCP9o", _ZN9Inspector15ScriptCallFrameaSERKS0_) +STUB("Iwar51fiS+s", + _ZN7WebCore14FrameSelection16setSelectedRangeEPNS_5RangeENS_9EAffinityEbNS_14EUserTriggeredE) +STUB("Iwjgb9Q6nLg", + _ZN7WebCore24CoordinatedGraphicsLayer12setTransformERKNS_20TransformationMatrixE) +STUB( + "IwlvDoZh9kI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEppEv) +STUB("IwmVVM5dPhM", psl_is_public_suffix) +STUB("Iwn1B6is5r8", _ZN3JSC17JSAPIValueWrapper6s_infoE) +STUB("Iwo4jAaBZEM", pio2_2tlo) +STUB("IwqPejh2Vjk", ulistfmt_resultAsValue_67) +STUB("Ix-uY-vavVE", _ZN3sce2Np9CppWebApi11Matchmaking2V110UserTicketC1EPNS1_6Common10LibContextE) +STUB( + "Ix-vk8gszSk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEC2Ev) +STUB( + "Ix1k2-8f3Wk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEEaSERKSA_) +STUB( + "IxAlZZxlHkE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEEaSERSA_) +STUB( + "IxBcAeNa9fw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEEcvbEv) STUB("IxCpDYsiTX0", sceUserServiceGetTopMenuLimitItem) +STUB("IxD7Ovht4b4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEED2Ev) +STUB( + "IxIUdWwopT0", + _ZN7WebCore16CalculationValue6createESt10unique_ptrINS_18CalcExpressionNodeESt14default_deleteIS2_EENS_10ValueRangeE) +STUB("IxIevj0Sqic", _ZN3sce7Toolkit2NP2V27Ranking7Request15GetFriendsRanksD2Ev) +STUB( + "IxOzBQXDzOg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEC2EPS8_) +STUB("IxPxVmr12vk", + _ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest19expirationTimeIsSetEv) +STUB( + "IxUy2niEi34", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE6resizeEj) +STUB("IxXsO5OebNY", _Z25sceMatRegisterGdsResourcemmjmPKcjm) +STUB("IxYdrzCYwJc", sr00) STUB("IxYiarKlXxM", sceAgcDmaDataPatchSetDstAddressOrOffset) +STUB("IxcAbcRAFk4", _ZN7WebCore9HTMLNames8nameAttrE) +STUB( + "IxhLZjD+nQs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEE11release_refEv) +STUB( + "IxlHuXHMvb4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEEdeEv) +STUB( + "Ixmw1CzTqjI", + _ZN3sce2Np9CppWebApi14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBody13setSpectatorsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_30ResponsePlayerSessionSpectatorEEEEE) STUB("IxqaB0MHl0s", sceNpManagerIntCreateAuthenticationTicket) +STUB( + "IxskaBLemkU", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126BandwidthPropertiesFactory7destroyEPNS3_19BandwidthPropertiesE) +STUB( + "Ixwxn5+hqtg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEE7add_refEv) +STUB("IxyvptSqdr0", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEEixEm) +STUB("Ixz55FaZ1gQ", _ZN3JSC22getInt16ArrayClassInfoEv) +STUB("Iy+trV6uh-s", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEEC2ERS6_) +STUB( + "Iy0hvk1TXzY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "Iy3kQxW3G10", + _ZN15AbstractStorage10YoutubeAPI17GetUploadLocationERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEmS7_RS5_) +STUB( + "Iy4E3PmYGp0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "IyGIg0HeY3A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEC2EPS8_) +STUB("IyGgrXgsVes", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEEC2EPKS6_) +STUB("IyJy2sCBCHU", _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead14setSearchIndexEPKc) +STUB( + "IyMfHXL9VzE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEdeEv) +STUB("IyT41iG8Ync", _ZNK3sce2np4User7IsEmptyEv) +STUB( + "IyUcglm6m4s", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38addPlayerSessionJoinableSpecifiedUsersEiRKNS4_49ParameterToAddPlayerSessionJoinableSpecifiedUsersERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_61PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB( + "IyUvkdRjHn4", + _ZN3sce7Toolkit2NP2V28Matching17kickOutRoomMemberERKNS3_7Request17KickOutRoomMemberEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("IyWcyd2bITI", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request8SetLikedC1Ev) +STUB("IyYcaOUSTng", u_strCaseCompare_67) +STUB("IyaKR2FqFXU", _ZNK7WebCore17HTMLPlugInElement12pluginWidgetENS0_19PluginLoadingPolicyE) +STUB("IyaSDQOW49g", _ZN3JSC7Symbols15findPrivateNameE) +STUB( + "IyeDD2JI9vo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEE11get_deleterEv) +STUB("IyfWUn9Ue1Y", _ZN7WebCore9HTMLNames4aTagE) +STUB("IyhLOq-9KZA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE5beginEv) +STUB("IyizMqqpWnY", _ZNK7WebCore7Element12getAttributeERKNS_13QualifiedNameE) +STUB( + "IyqYCZR1Uew", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEEdeEv) +STUB("IyrC1lVqedo", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatusD1Ev) +STUB( + "Iyrhm-aY+0Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEppEv) STUB("IysRiVOGIVM", sceVideoOutSysGetCurrentOutputMode) +STUB("IyvtvpZPpPg", _ZNK7WebCore26ISOProtectionSchemeInfoBox17originalFormatBoxEv) +STUB("IywQUdfUAP0", _ZN7WebCore3URL11setProtocolERKN3WTF6StringE) +STUB("Iz0z3ATi4aE", _ZNK3sce2Np9CppWebApi14SessionManager2V118LeaderWithOnlineId11getPlatformEv) +STUB( + "Iz2mCbvVDvc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "Iz4QKtM93DQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEmmEi) +STUB("Iz8Nn79wHVQ", _ZNK7WebCore20HTMLTableCellElement18rowSpanForBindingsEv) +STUB("Iz8WjECFHIY", WKNavigationDataCopyURL) +STUB("Iz8atNTssLg", mono_mlist_get_data) +STUB("Iz8euzlEEY4", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification16FriendlistUpdateEED2Ev) STUB("Iz9X7ISldhs", sceAudioOutA3dControl) +STUB("IzC+la5Js9c", _ZNK7WebCore15HTTPHeaderField4nameEv) +STUB("IzDX4gNyAV4", _ZN3sce2Np9CppWebApi7Matches2V125ResponseCompetitiveResultD2Ev) +STUB("IzG7RrfSAw4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE8pushBackERKS6_) +STUB("IzIy0lJWD08", _ZN9Inspector33ApplicationCacheBackendDispatcherD0Ev) +STUB("IzPvsq7Nccs", _ZNSt13runtime_errorC1EPKc) STUB("IzQN+F5q3wg", sceShellCoreUtilResetAutoPowerDownTimer) +STUB("IzQZsHx7TXE", _ZN7WebCore15GraphicsContext7restoreEv) +STUB("IzRV-oICvO0", uprv_itou_67) +STUB( + "IzRkiHaf4QU", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEEiRNS2_10LibContextEPT_m) +STUB("IzXg6-zWJ5E", _ZNK3WTF9BitVector12bitCountSlowEv) +STUB("IzffkhPRxw0", _ZN7WebCorelsERN3WTF10TextStreamERKNS_12FloatPoint3DE) +STUB( + "IzwjynM1wUE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEEC2Ev) +STUB("IzxyWmghAig", WKBundleGetJavaScriptObjectsCount) STUB("Izy+4XmTBB8", sceUserServiceSetIPDLeft) +STUB( + "J+-natXDyAA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEEC2ERKSA_) +STUB("J+2xNfBgF6c", _ZN3sce7Toolkit2NP2V212NetworkUtils16NetStateDetailedC1ERKS4_) +STUB( + "J+6sTBRSYdc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEE7add_refEv) +STUB("J+BqNoqjapk", _ZN12Mp4Retriever9ExtractI8EPh) +STUB( + "J+HJf1ltT0w", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEptEv) STUB("J+LF6LwObXU", sceKernelDeleteHRTimerEvent) +STUB("J+NpPkeEmlY", mono_aot_System_Runtime_Extensionsplt_end) +STUB("J+PBQIf-40g", mono_btls_x509_get_public_key_algorithm) +STUB("J+PVeG2qp0o", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTicketsaSERS5_) +STUB( + "J+PWG1oHCA8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE5clearEv) +STUB("J+VOOa9z59c", _ZN3sce7Toolkit2NP2V27NpUtils5IdMap5resetEv) +STUB( + "J+Y1flnRvtQ", + _ZN3JSC7JSProxy16getPropertyNamesEPNS_8JSObjectEPNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB( + "J+Z0oLcpiv8", + _ZN15AbstractStorage14TwitterService23create_storage_instanceERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("J+Z2peVsVmw", _ZN3sce2Np9CppWebApi15Personalization2V15Error9setSourceEPKc) STUB("J+bKHRzY4nw", sceUserServiceGetPbtcSundayHoursEnd) STUB("J+cECJ7CBFM", sceUserServiceGetPbtcSundayHoursStart) +STUB("J+hjiBreZr4", _ZTSSt10moneypunctIwLb1EE) +STUB("J+oVFGsb0Qg", _ZN7WebCore10Pasteboard21createForCopyAndPasteEv) +STUB("J+pWkecAYYs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEC2Ev) +STUB("J+tk1r7u+3c", mono_aot_Sce_Vsh_RemotePlayplt_end) +STUB("J+uDQ2Xphdo", _ZN7WebCore11DisplayList20FillRectWithGradientC2ERKNS_9FloatRectERNS_8GradientE) +STUB( + "J--FgMId4+Y", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE8capacityEv) +STUB( + "J-0I2PtiZc4", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE9_GetffldxEPcRS3_S6_RSt8ios_basePi) +STUB("J-0wEQz2H5I", _ZN7WebCore5Style5Scope22flushPendingSelfUpdateEv) +STUB( + "J-4CWadZu4s", + _ZN3sce7Toolkit2NP8Matching9Interface10kickMemberEPNS1_17KickMemberRequestEPNS1_9Utilities6FutureIiEEb) STUB("J-6d0WTjzMc", sceRudpActivate) +STUB("J-6tvqPD7Cg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE5clearEv) +STUB( + "J-7tA1oC-Gc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "J-9+igQy8us", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEED1Ev) +STUB("J-9EH0SlCMI", rgctx_fetch_trampoline_mrgctx_3_p) +STUB( + "J-Cl3CjW8II", + _ZN9Inspector21PageBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) +STUB("J-DvOzoRz2E", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEED2Ev) +STUB( + "J-ET9IysVCc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEC2EPS8_) +STUB( + "J-GJSI9lqgU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEED1Ev) STUB("J-GYJvLMUoE", sceRnpsAppMgrUnregisterShellUI) +STUB( + "J-HUWnnZ-Xg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEE11get_deleterEv) +STUB("J-JL-TLqlrI", EC_POINT_free) STUB("J-KEr4gUEvQ", sceUserServiceGetHomeDirectory) +STUB("J-MJF99ka4M", _ZN3sce2Np9CppWebApi6Common6String10setContextEPNS2_10LibContextE) +STUB( + "J-S0BBcJMhY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEE7get_refEv) +STUB( + "J-aLkGVzU3I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEED1Ev) +STUB("J-f7oAB0blc", WKViewClearBackingStores) +STUB( + "J-gOsU9R-iI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEC2ERKS7_) +STUB( + "J-hsxr6IYCc", + _ZN9Inspector28DOMStorageFrontendDispatcher19domStorageItemAddedEN3WTF6RefPtrINS_8Protocol10DOMStorage9StorageIdENS1_13DumbPtrTraitsIS5_EEEERKNS1_6StringESB_) +STUB("J-k4Sp-yaYY", delegate_invoke_impl_has_target_p) +STUB("J-mthfzvjKQ", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V117ResponseMatchTypeEEdeEv) +STUB("J-nc3Hu3Vxc", _ZN15AbstractStorage17DailymotionFolderD0Ev) +STUB( + "J-nuwzzj1EA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEC2EPS8_) +STUB("J-oDqE1N8R4", _Tolotab) +STUB("J-rh9f-5jPY", + _ZN7WebCore18JSHTMLVideoElement15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB("J-uv0J9VNaU", _ZN3sce7Toolkit2NP2V27Session7Request6UpdateC2Ev) +STUB( + "J-xYTnWfUds", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEEC2Ev) +STUB("J02aO+FiLU4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11InvitationsEEC1Ev) +STUB("J06J7hH+9bs", glClearBufferfi) +STUB( + "J0FluUaFZ1g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB("J0IyckharR4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEcvbEv) +STUB("J0Kyx5E61iU", _ZNK3WTF6String23convertToASCIIUppercaseEv) STUB("J0MUxuo9H9c", sceNpManagerIntAddActiveSigninStateCallback) +STUB( + "J0OA0yuyAhA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEEaSERKSA_) +STUB( + "J0PjWWlfNDo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("J0PtvGVzWTE", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26RecordScoreResponseHeadersC1ERS5_) +STUB( + "J0RpPo4qgBA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEED2Ev) +STUB("J0bGGwdIfhk", + _ZNK7WebCore11RenderTheme14focusRingColorEN3WTF9OptionSetINS_10StyleColor7OptionsEEE) +STUB( + "J0feIcsi9EY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("J0jU9Q3l+aI", mono_shared_area_unload) +STUB("J0kng1yac3M", readdir_r) +STUB("J0pPFTlWe4I", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge13ChallengeDataEE5resetEv) +STUB( + "J0roIgiiB8g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEE11get_deleterEv) +STUB("J0s+lgtocB4", mono_aot_System_Net_Http_WebRequestunbox_trampolines_end) +STUB("J0v4IwoeBvc", _ZNK7WebCore16DOMGuardedObject11isSuspendedEv) +STUB("J0wnu0Wcsjk", __tsan_write4) +STUB("J14nre-GEk4", _ZN3sce7Toolkit2NP2V28Matching7Request11SearchRoomsD2Ev) +STUB( + "J160sr9UjzA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEmmEi) +STUB("J17Ht24BhJA", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13integer6IsSetEv) +STUB("J192ZqTgPjM", _ZNK3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead11getOnlineIdEv) +STUB( + "J1G1dvdm834", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeAccountId2OnlineIdBatchC2ERS5_) +STUB("J1H1QRCJf2Q", getitimer) +STUB("J1HXOaT7W68", + _ZN3sce2Np9CppWebApi14SessionManager2V117SearchGameSession8fromJsonERKNS_4Json5ValueE) +STUB( + "J1I3gTm8seE", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_19ProductInfoDetailedENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB( + "J1MLX-Twuds", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEEiRNS2_10LibContextEPT_m) +STUB("J1MM+8ak-e0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEE7add_refEv) +STUB("J1Qm9qh7StM", + _ZN3sce7Toolkit2NP2V210Tournament7Request19SendTeamMatchReport19MAX_SIZE_SCREENSHOTE) +STUB( + "J1RBKl9JKpY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEC1EPNS2_10LibContextE) +STUB("J1Tu68RHMaA", _ZN2GK9PlayerPSN4stopEv) +STUB( + "J1WDlTdcAb0", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB( + "J1Wo6jMY+q0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "J1X+stgb0zQ", + _ZN3sce2Np9CppWebApi15Personalization2V118ErrorEntityFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_11ErrorEntityEEE) +STUB( + "J1Xq6z8Bqzg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "J1droeg6nJc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEE21intrusive_ptr_add_refEPS7_) +STUB("J1lpiTKAEuk", _ZN3sce2np3ipc10IpmiClientD2Ev) +STUB("J1qKTkCk00o", _ZN7WebCore17LibWebRTCProvider6createEv) +STUB("J1sK+qvJVTY", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_21AbortGameDataResponseEED2Ev) +STUB("J1xTq0vRmMs", _ZN3sce7Toolkit2NP2V210Tournament10TournamentD1Ev) +STUB("J1yHKX6tL5Y", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_13NetStateBasicEEC2Ev) STUB("J20mpxC9gDA", sceDebugGetEventSubscriptionListForEQueueFd) STUB("J23ENpIFoRc", sceSaveDataDebugCheckBackupData) +STUB("J25govWMjF0", g_ascii_strdown) STUB("J25sxFmD+1w", sceHttpCacheSystemTerm) +STUB("J27fPOsLvXk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEE7get_refEv) +STUB("J2CB-hl+VCY", + _ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody20updatedDateTimeIsSetEv) +STUB( + "J2FL8Gk462c", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "J2GQnBJ0mWU", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) STUB("J2JPTUBlAyQ", scePsmUtilGetHighResoImageAssetManagerSize) +STUB("J2KHqJfiY0o", __tsan_atomic64_compare_exchange_val) +STUB("J2L1Rr-IbE8", _ZN7WebCore16ResourceResponseaSERKS0_) +STUB("J2OMHZAhMC0", WKNavigationDataGetTypeID) +STUB( + "J2PmgmFGJ0o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEEC1ERSA_) +STUB( + "J2SJqyOdL2U", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19Bandwidth9setGlobalERKNS1_6Common12IntrusivePtrINS3_19BandwidthPropertiesEEE) +STUB("J2TKi09t5tI", mono_reflection_get_type) +STUB( + "J2Ve3PDUt2A", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE4sizeEv) +STUB("J2YGgymXg+M", _ZN3sce2Np9CppWebApi6Common9RefObjectC1Ev) +STUB( + "J2bKml1OcHQ", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsC2EPNS1_6Common10LibContextE) +STUB("J2bcHJvlt1M", _ZN15AbstractStorage18DailymotionServiceC1Ev) +STUB( + "J2bnSrCOXZg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEC1EPNS2_10LibContextE) +STUB( + "J2hMZFmIbPw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE21intrusive_ptr_add_refEPS9_) +STUB("J2rPprTFLio", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE5beginEv) +STUB( + "J2u2m-3ZqcI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE3endEv) +STUB( + "J2uw-ob5zag", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEC2EPKS8_) +STUB("J2vCAy65mls", __sync_fetch_and_and_16_internal) +STUB("J2vh4ENvWWU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE5beginEv) +STUB("J2wE7kcMwmA", _ZN7WebCore4Page24replaceSelectionWithTextERKN3WTF6StringE) +STUB("J2xO4cttypo", _ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1Em) +STUB("J3422jFfivQ", Java_com_sony_bdjstack_javax_media_content_dripfeed_Player_startPlayFrames) +STUB("J34dKCmiLb4", _ZN3JSC37JSSegmentedVariableObjectHeapCellTypeD2Ev) +STUB("J3AZOgx8k4A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEEC2ERKS7_) +STUB( + "J3AonhjU4DI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEEptEv) +STUB("J3HnvW8FJV8", FTA_Support_Format_OpenType_Ttf) +STUB("J3J1T9fjUik", towlower) +STUB("J3JjYmGmtg0", udict_swap) +STUB( + "J3RZsZM7-P4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEEC2ERKSA_) +STUB( + "J3V08We+Zrc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("J3XuGS-cC0Q", lround) +STUB("J3Z8qAeuk7g", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge10ChallengesEE3getEv) +STUB( + "J3bidwOpPCI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEED1Ev) +STUB("J3edELK4FvM", arch_raise_user) +STUB( + "J3iduJTcpvQ", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot8setlimitEi) +STUB( + "J3jq8sRSIwo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEE11release_refEv) +STUB( + "J3mNII0unhA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEE11release_refEv) +STUB( + "J3z0xdeSrfw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEC1EPS8_) +STUB("J44dsZUcK4I", EVP_aes_256_cbc) +STUB( + "J47X5D6BWqo", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSession35getxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB( + "J48l6n1RaV4", + _ZN7WebCore11EventTarget30removeEventListenerForBindingsERKN3WTF10AtomStringEONS1_6RefPtrINS_13EventListenerENS1_13DumbPtrTraitsIS6_EEEEONS1_7VariantIJNS0_15ListenerOptionsEbEEE) +STUB("J4CPP4JTKfc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEE11release_refEv) +STUB("J4FBpvaSdJA", _ZNK7WebCore6Chrome13setWindowRectERKNS_9FloatRectE) +STUB( + "J4GuFwIcRRg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEC2EPNS2_10LibContextE) +STUB( + "J4JmfyFNZlc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEE11get_deleterEv) +STUB( + "J4M+M1Nflck", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEC2EPS8_) +STUB( + "J4MWXF1kCdQ", + _ZN7WebCore31CrossOriginPreflightResultCache11appendEntryERKN3WTF6StringERKNS1_3URLESt10unique_ptrINS_35CrossOriginPreflightResultCacheItemESt14default_deleteIS9_EE) +STUB("J4NntrE4Abw", _ZN7WebCore9HTMLNames10promptAttrE) STUB("J4Vh3VVX0iU", sceVrTracker2GetResult) +STUB("J4bTZYwN5uQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ChildActivityAvailabilityEEaSERKS7_) +STUB( + "J4eQ1Mox2lA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V133BandwidthDownstreamMetricsFactory7destroyEPNS3_26BandwidthDownstreamMetricsE) +STUB( + "J4h9Iq-fkQ4", + _ZN9Inspector14ConsoleMessageC1EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelERKN3WTF6StringES8_jjPNS1_14JSGlobalObjectEm) +STUB( + "J4hGBETqQkU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) STUB("J4lWCVwUKtU", sceNpUniversalDataSystemIntRecordArraySetUInt32) +STUB( + "J4mEpPKFXf4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE5clearEv) +STUB( + "J4mWWtz3Bls", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE5beginEv) +STUB("J4nC1AlSrJM", _ZN9Inspector28InspectorScriptProfilerAgent12stopTrackingERN3WTF6StringE) +STUB("J4q5kQaotFE", _ZNK7WebCore10FontRanges17fontForFirstRangeEv) +STUB( + "J4tQbyr1TBE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE5emptyEv) STUB("J4ten1IOe5w", sceUserServiceGetNpLanguageCode) +STUB("J4uxX9+pemc", Java_java_awt_GnmGraphics_nativeFillPolygon) +STUB( + "J4vXbYykW8M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEED2Ev) +STUB( + "J4xFt84aJlM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEEdeEv) +STUB("J526sLKBCc8", _ZN15AbstractStorage14YoutubeServiceD0Ev) +STUB( + "J53PDM8jTJM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "J56hlu77GQI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEC1EPS8_) +STUB( + "J5D07SMhWdM", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEEiRNS2_10LibContextEPT_m) +STUB("J5IG3lL56FI", glOrbisUnmapTextureResourceSCE) STUB("J5OPALFNdFE", sceShellCoreUtilGetCrashReportInfoStart) +STUB("J5QA0ZeLmhs", _ZNSt15_Num_float_base8is_exactE) STUB("J5RqzZ7nMVc", sceKernelCloseEport) +STUB("J5VVuT74c6c", _ZNK9Inspector15ScriptCallFrame12columnNumberEv) +STUB( + "J5Yy0TJ2OVM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEaSERKS9_) +STUB( + "J5ZKtm4Y0os", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB( + "J5gRcWrxZ+A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEaSERKS7_) STUB("J5i3hiLJMPk", sceNetResolverGetError) +STUB( + "J5iJFVD1bCw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE6isBusyEv) +STUB("J5j1pBL1cjg", _ZN7WebCore11MediaPlayer15removeTextTrackERNS_22InbandTextTrackPrivateE) +STUB("J5lZTL2H6Aw", uloc_countAvailable) +STUB("J5oRw5SLfRo", _ZN7WebCore8SVGNames15altGlyphItemTagE) +STUB("J5oe8ZET4pU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia6VideosEEC1Ev) +STUB( + "J5sRIUeQtFI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("J5t6kpsGfGA", mono_string_is_interned) STUB("J5u88cqU7OU", sceMbusSetRoutingMode) +STUB( + "J6AzD8TrUMk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "J6ClyXwI3sQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEdeEv) +STUB("J6FoFNydpFI", malloc_finalize) +STUB("J6I-dnVtvEc", _ZNK7WebCore14ScrollableArea22mouseExitedContentAreaEv) +STUB( + "J6KpIditfWA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEeqERKS9_) +STUB("J6MTZzX21G4", _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody8getUsersEv) +STUB( + "J6O9xoAsBNk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEED2Ev) +STUB("J6PIrjOJOLU", _ZN12video_parser13cVideoPathMp4C2EPKc) +STUB("J6Qxs-B3yUc", _ZN7WebCore5RangeD1Ev) STUB("J6Ujb3RviBA", sceFiosFHPwritevSync) +STUB("J6W0p3ZMQKs", mono_set_lmf_tls_offset) +STUB( + "J6WNl+AB5zE", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "J6ZZfgpm9GU", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB( + "J6c3aQEG85w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEE11release_refEv) +STUB("J6eF2N6k0EQ", _ZNK3sce2Np9CppWebApi14SessionManager2V16Friend12getAccountIdEv) +STUB( + "J6mGcLoeY7E", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead25setJoinableSpecifiedUsersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_12JoinableUserEEEEE) +STUB( + "J6sXBqkBnOU", + _ZN3sce7Toolkit2NP7Friends9Interface21getFriendslistofUsersEPNS1_9Utilities6FutureISt6vectorINS1_13FriendsOfUserENS1_15AppSTLAllocatorIS7_EEEEEPKNS1_19FriendOfUserRequestEb) +STUB("J6w1KXkkLm0", _ZN12Mp4Retriever14processFtypBoxEv) +STUB("J70xb+ZpKFM", WTFCrashWithSecurityImplication) +STUB( + "J78CmgsZiaw", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEEiRNS2_10LibContextEPT_m) STUB("J7COZrgSFRA", sceImeVshSetSelectionText) +STUB("J7Cw18z9W+g", uprv_getDefaultCodepage) +STUB("J7DHUBI1l0I", _ZN3sce2Np9CppWebApi11UserProfile2V15ErrorC1EPNS1_6Common10LibContextE) +STUB("J7Dkz4Xqu4k", _ZN7WebCore4Page36setAllowsMediaDocumentInlinePlaybackEb) +STUB("J7EnH5GWjRs", _ZN3sce7Toolkit2NP2V212ActivityFeed6Action19STORE_LABEL_MAX_LENE) +STUB("J7IVFPM6rXM", _ZN7WebCore22EmptyFrameLoaderClient25didDisplayInsecureContentEv) +STUB( + "J7JjM+yATs4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEptEv) +STUB("J7LWSdYo0Zg", SSL_getCipherInfo) +STUB("J7MKuQpWo4Y", c13) +STUB("J7N-B6rL6ZM", Java_java_awt_Window_pSetWarningString) +STUB( + "J7O30c5+anQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEED1Ev) +STUB("J7UlpDGmVaI", _ZN7WebCore15HitTestLocationC2ERKNS_10FloatPointE) +STUB("J7UnX3CMhpI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE6resizeEj) +STUB( + "J7WUeopB3lA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEppEv) +STUB("J7WxT-sXnz0", _ZN7WebCore18RenderLayerBacking25setUsesDisplayListDrawingEb) STUB("J7Xs-UluzGk", sceUltReaderWriterLockTryLockRead) +STUB("J7ZBHXibZA8", _ZN12video_parser5vpcom11Utf8ToUtf16EPKcPSbIwSt11char_traitsIwESaIwEEi) +STUB("J7ZXGgY3Ykc", + _ZN3sce2Np9CppWebApi14SessionManager2V132RequestPlayerSessionMemberPlayer12unsetPlayersEv) STUB("J7bWqy7TiBY", sceRnpsAppMgrStartService) +STUB("J7d2Fq6Mb0k", _ZNSt14numeric_limitsIfE8digits10E) +STUB( + "J7dUAYK-xWg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEEC1ERSA_) +STUB( + "J7h+XcaVbO8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEED2Ev) +STUB( + "J7kBdR4Es9w", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions9unsetviewEv) +STUB("J7n2QKPAd9k", _ZN22MmsMdCommonFsOperation8tellFileEv) +STUB( + "J7ohwG8SeEw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEEaSERKSA_) +STUB("J7qYAZ8QNkE", _ZN7WebCore16BlobRegistryImplnaEmPv) +STUB("J7rYKQEJvEI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE8pushBackERKS6_) +STUB( + "J7wzW4XxRv4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEneERKS9_) +STUB( + "J8BlCThjkks", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEE7get_refEv) +STUB( + "J8ClOUdkKpk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEEC1EPS6_PNS2_10LibContextE) +STUB("J8GcxU03WkE", FcCharSetSubtractCount) +STUB("J8JRHcUKWP4", __modti3) +STUB("J8JmG1yEvtg", utext_setup_59) +STUB("J8TgBkZ8yq8", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead20nonPsnSupportedIsSetEv) +STUB( + "J8US+J-vRnI", + _ZN7WebCore11DisplayList18DrawFocusRingRectsC2ERKN3WTF6VectorINS_9FloatRectELm0ENS2_15CrashOnOverflowELm16ENS2_10FastMallocEEEffRKNS_5ColorE) STUB("J8YCgfKAMQs", sceAgcQueueEndOfPipeActionPatchGcrCntl) STUB("J8jAi-tfJHc", sceNpPartyLeave) +STUB("J8nNL6oV1eU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEEC2ERS7_) +STUB("J8oy-Lxf1jg", EVP_MD_CTX_cleanup) +STUB("J8p9T9ctuUY", mono_aot_Sce_Vsh_DataTransferjit_code_end) +STUB("J8rnf+mNOAo", delegate_virtual_invoke_imt_31_p) STUB("J8t8t3eVoMg", sceSystemServiceGetUIStatus) +STUB( + "J8yVikepwKs", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi32ParameterToPostGameSessionsTouch12setsessionIdEPKc) +STUB("J8yofV8T9A4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEEC2ERKS7_) +STUB( + "J9+6zM1a6xw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEC1EPKS8_) +STUB("J9+qK5adfAw", _ZN4Manx14NetworkProfile3setENS_14SettingOptTypeEl) +STUB("J96rvYBxALo", _ZN3sce16CommonDialogUtil6ServerD1Ev) +STUB("J97M2lm6a2I", mono_aot_Sce_Vsh_SystemLoggerUtilWrapperplt) +STUB("J98mAY+MsBs", WKPreferencesSetHiddenPageDOMTimerThrottlingEnabled) +STUB("J9CVeZC2RgM", _ZNK7WebCore6DOMURL4hrefEv) +STUB("J9Fo8pqmVZ4", _ZN3WTF8Internal9appendHexEPhjmjNS_17HexConversionModeE) +STUB( + "J9G04uytny8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB( + "J9Ncq2KrfFU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEEdeEv) +STUB( + "J9QrYFU1JHQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("J9ZSTc1O0MM", _ZN3sce2Np9CppWebApi11UserProfile2V125GetPublicProfilesResponseD2Ev) +STUB("J9bWkXpsDlU", GCC_except_table102) STUB("J9eBpW1udl4", sceHmdSetupDialogGetStatus) +STUB("J9g-9ncaRDw", _ZN3JSC8Debugger16currentExceptionEv) +STUB("J9g-WBCNoRk", allowedHourFormatsCleanup_67) +STUB("J9kJ2glUtmc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEED2Ev) +STUB("J9kgQ5G6WSc", _ZN9Inspector15RemoteInspectorD1Ev) +STUB("J9klOgvbE2A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEED1Ev) +STUB( + "J9p4ZJdhRlU", + _ZN3JSC17DeferredWorkTimer14addPendingWorkERNS_2VMEPNS_8JSObjectEON3WTF6VectorINS_6StrongINS_6JSCellELNS_30ShouldStrongDestructorGrabLockE0EEELm0ENS5_15CrashOnOverflowELm16ENS5_10FastMallocEEE) STUB("J9rlRuQ8H5s", pthread_mutexattr_setkind_np) STUB("J9ujmUpwWAc", sceFiosOpGetOffset) +STUB( + "J9xZ9Bgd8hQ", + _ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody8fromJsonERKNS_4Json5ValueE) +STUB( + "J9yWWIZ2WHA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEC2Ev) +STUB( + "J9yivvtjNes", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEEC2Ev) +STUB("JA+i8RdtW7I", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_6NpUserEEC2Ev) STUB("JA4+sS39GMs", sceNpLookupCreateAsyncRequest) +STUB("JA552YbVwcs", _ZN12video_parser5vpcom3rtc12TickAddWeeksEPmPKmi) +STUB( + "JA5dA-of5T0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEC2EPS6_PNS2_10LibContextE) +STUB("JA6GJCmFIjY", _ZN9Inspector18InspectorHeapAgentC1ERNS_12AgentContextE) +STUB("JA9b3iqvtHo", _ZN7WebCore25WebSocketChannelInspectorC2ERNS_8DocumentE) +STUB("JAAxVx89vNc", _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead9getMemberEv) +STUB("JAEgKfRXTnY", _ZN7WebCore6CursorC2EPNS_5ImageERKNS_8IntPointE) +STUB("JAEvQGf9eVs", _ZN7WebCore9HTMLNames21ontransitionstartAttrE) +STUB("JAF7iQVw4IQ", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIlEplEm) +STUB("JAMwbHgJ4aA", _ZNK3sce2np14JsonNumberImpl9GetNumStrEv) +STUB( + "JAPOF6R-jW8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("JAQ2XNJTzaw", _ZN3sce7Toolkit2NP2V28Matching5RoomsC1Ev) +STUB( + "JAR27Ryrv4A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEEC1Ev) +STUB("JARG0sFWjr4", uloc_toUnicodeLocaleType_67) +STUB("JARRMS0FBdc", _ZN12video_parser13cVideoMetaVWG20_changeEndianChapterEPvj) +STUB("JATlaeBu+lU", _ZN3sce4Json6Object8iteratorC1ERKS2_) +STUB( + "JAgvNr8pFeM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEC2EPS6_PNS2_10LibContextE) STUB("JAiMBkOTYKI", sceImeDicDeleteWord) +STUB("JAmgylm2GBo", + _ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer14unsetJoinStateEv) +STUB("JAnhkaJMA+w", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE3endEv) +STUB("JAtzJlcNXQY", _ZN12Mp4Retriever15processMetaAlbmEv) +STUB( + "JAuYxVSRhd4", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE21setOnFinishedCallbackEPFvliS4_PvEPFvliSC_ESC_) +STUB("JAzqiBpYj-0", _ZN7WebCore9FloatSizeC2ERKNS_7IntSizeE) +STUB("JB0+BsPXtDA", GCC_except_table302) +STUB( + "JB5zSXYFDpI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEE7add_refEv) +STUB("JB82UX1nA-U", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate10getPerGameEv) +STUB("JBCYpr7Atp0", _ZN7bmalloc8FreeList14initializeListEPNS_8FreeCellEmj) +STUB("JBH18i-WCu0", cairo_surface_status) +STUB("JBHZ4wLpnx0", curl_easy_duphandle) +STUB( + "JBKqRWT7vpc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEmmEi) STUB("JBN6N-EY+3M", sceHttpsGetSslError) +STUB( + "JBNROUHw2HU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEmmEv) +STUB( + "JBNdpXtvVvA", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities21UserActivitiesFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS6_12IntrusivePtrINS4_14UserActivitiesEEE) +STUB( + "JBNtqSLmTWc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE21intrusive_ptr_add_refEPS9_) +STUB("JBQwNQ9vlhY", g_strdup) +STUB( + "JBYtvL5mHnY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEC2ERKS7_) +STUB("JBcgYuW8lPU", acos) +STUB("JBkZVkAmw4Y", _ZNK3sce2Np9CppWebApi14SessionManager2V15Error11reasonIsSetEv) +STUB("JBlViBWr6Eo", _ZN7WebCore8SVGNames22buffered_renderingAttrE) +STUB("JBugz1LKFAA", WKBundlePageOverlaySetAccessibilityClient) +STUB( + "JBv3C-gTTLw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEC2EPNS2_10LibContextE) +STUB( + "JC5ommFaOHo", + _ZN7WebCore29updateRequestForAccessControlERNS_15ResourceRequestERNS_14SecurityOriginENS_23StoredCredentialsPolicyE) +STUB("JC6QsGdn5gc", delegate_virtual_invoke_imt_m_12_p) STUB("JC7I7J1bllQ", sceKernelGetHwModelName) +STUB("JCBQmmKJcw4", CRYPTO_set_locking_callback) +STUB("JCEBUaUl5QY", nsnp_FreeLicenseMetadata) +STUB("JCGNnROcK6w", _ZN7WebCore15SQLiteStatement12getColumnIntEi) +STUB("JCPwggg12f8", mono_aot_I18N_Rareplt) +STUB( + "JCRGdx9xeFc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEcvbEv) +STUB("JCZkULz99oQ", _ZN3JSC8Profiler8DatabaseC1ERNS_2VME) +STUB( + "JCalVPSaKNY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE6resizeEj) +STUB( + "JCawVO2PsYY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEEdeEv) +STUB("JCdPQZuEEXE", mono_aot_Sce_Vsh_Gls_NativeCallunbox_trampolines) +STUB("JCmHsYVc2eo", tanhl) STUB("JCnVgZgcucs", sceFontGlyphRefersMetricsHorizontalX) +STUB("JCpm-rt-kFY", _ZN7WebCore9HTMLNames15pluginspageAttrE) STUB("JCqpB7AGLQg", sceUpsrvUpdateCheckRequestCheckGame) +STUB("JCqxDsIQe3E", _ZN3sce2Np9CppWebApi6Common6VectorIjEC2EPNS2_10LibContextE) +STUB( + "JD3iFUdL+-0", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessionsaSERS5_) +STUB( + "JD5TXgZwP20", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE21intrusive_ptr_sub_refEPS9_) +STUB("JDBcdgH0FnQ", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEED1Ev) +STUB( + "JDHvTKkbxbI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSE_) +STUB("JDLZ8x9gcVc", _ZN3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayerD1Ev) STUB("JDWOb4UaFYc", sceDevUsbAddHostKevent) +STUB("JDYW1-PECLQ", _ZN3sce7Toolkit2NP2V28Commerce8Products5resetEv) +STUB("JDYbbgccPDE", _ZN3sce2np11NpHttpTransC2EP16SceNpAllocatorEx) +STUB( + "JDaQLsO6--U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEED1Ev) +STUB("JDgSc25Ysco", _ZN3JSC2VM22scriptFetcherSpaceSlowEv) +STUB("JDqkg5ihzk0", mono_profiler_get_events) +STUB("JDqvAZMtNEg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEptEv) +STUB( + "JDtIXQM02NE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEE11get_deleterEv) +STUB( + "JDufMDTQUpc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE8copyFromERKSA_) STUB("JDwx3Bl4bB4", scePlayerInvitationDialogInitialize) +STUB( + "JDxF0sKTyEk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEC2ERS7_) STUB("JDz+XAlWY30", sceVencCoreSetPasteImage) STUB("JDzKvHLMXOI", sceAudioOutSetJediJackVolume2) +STUB( + "JE-3jYenodI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEEdeEv) +STUB( + "JE3B+lD-9Ok", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEED2Ev) +STUB( + "JE7WVvDyemc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEC1EPS8_) +STUB( + "JE8O8p62W9Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEE11get_deleterEv) +STUB("JEBKpzJ8INI", rgctx_fetch_trampoline_rgctx_68_p) +STUB("JEC0lbbB2gU", _ZN7Nicosia5SceneC2Ev) STUB("JEG+WDtNkKw", sceSdecExecuteSwHevc) +STUB( + "JEGjFQiIP+s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEptEv) STUB("JEHhANREcLs", sceAudioOutSystemControlGet) +STUB( + "JEKBZNKcVYo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEC2Ev) STUB("JELHf4xPufo", sceNpCheckCallbackForLib) +STUB( + "JEO1hQ2kYqY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEEC2EPS9_PNS2_10LibContextE) STUB("JETZShs6kqM", sceCesUtf32beToEucJp) STUB("JEVYGhDc97M", sceAmprAmmCommandBufferMap) +STUB("JEYp0T1VC58", _ZN3sce2np9HttpTrans4InitERKNS0_12HttpTemplateEPNS0_18HttpConnectionPoolEiPKcm) +STUB( + "JEdo2OQOC08", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE7reserveEi) +STUB("JEeDUmYtT5A", _ZNK3sce2Np9CppWebApi7Matches2V113RequestMember6toJsonERNS_4Json5ValueEb) +STUB("JEhq2XYUYis", _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15ErrorD1Ev) +STUB( + "JEm+Y0NuhIs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB( + "JEmTg4ZyTfc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB( + "JErIfVFGLRY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEE11release_refEv) +STUB( + "JEs-iooePUQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEEC2ERS9_) +STUB("JEt20zWYCIE", glVertexAttrib2f) STUB("JEvAQvdvR1A", sceUserServiceGetVoiceAgentSessionTimeout) +STUB("JEwTPXFKpS4", _ZN7WebCore9DOMWindowD2Ev) +STUB("JEyg5RKFNpY", _ZNK3WTF6String13toInt64StrictEPbi) +STUB("JF2+FzujwUw", mono_aot_ReactNative_Components_Vshmethod_addresses) +STUB( + "JF7KB-OHb3I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "JFAIJPbJcIY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEED1Ev) +STUB( + "JFImt7Fnhw4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEE11release_refEv) +STUB( + "JFL+407oho4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEmmEv) +STUB("JFRj1nTrGl4", _ZN7WebCore28InspectorFrontendClientLocal8SettingsdlEPv) +STUB("JFSCOXTEvfg", FT_Stream_ReadUShortLE) +STUB("JFSfX9g9dy0", WKPreferencesSetShouldAllowUserInstalledFonts) STUB("JFcSDC6AD+k", sceVdecCoreSyncDecodeWptr) +STUB("JFf2nPKZAAM", monoeg_g_filename_to_uri) +STUB("JFfq04EYkr8", _ZN4Manx17getBaselineOffsetEPKwj) +STUB("JFg1otUfi+Q", _ZN7WebCore10TreeWalker11nextSiblingEv) STUB("JFg3az5ITN4", sceSystemServiceGetEventForDaemon) +STUB("JFiji2DpvXQ", _ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE) +STUB("JFkvxXYRVS0", + _ZN3sce2Np9CppWebApi14SessionManager2V130PostPlayerSessionsResponseBody17getPlayerSessionsEv) +STUB("JFnoZazQmVc", _ZN3sce7Toolkit2NP23CategoryInfoInputParamsC2Ev) +STUB( + "JFo79ERgvrY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEE7add_refEv) +STUB("JFrWQEQjdp0", _ZTVN3sce16CommonDialogUtil6ServerE) +STUB( + "JFt2-LCxt4Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEcvbEv) +STUB("JFtbEAJ+3K0", mono_aot_System_Collectionsunbox_trampoline_addresses) +STUB("JFyjYpgJALo", _ZNK3sce2np10JsonObject8GetFieldEiPPKc) +STUB( + "JFz+ZktwvBQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) STUB("JFzLJBlYIJE", sceRazorCpuBeginLogicalFileAccess) +STUB("JG+2ZSGp8Tk", _ZN12video_parser17cVideoProfilerMp418_releaseAudioCodecEPNS_13VpMediaInfo_tE) STUB("JG+FmOG9jbQ", sceDeci4hDrfpRmdir_fuse) +STUB( + "JG+gprgI+dU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEED2Ev) STUB("JG-Dc43R4pM", sceDepth2QueryMemory) +STUB("JG1MkIFKnT8", _FDenorm) +STUB( + "JG2zyU+7eH8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "JG33EGn4aPE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB( + "JG6Vap8Vhqk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEE11get_deleterEv) +STUB( + "JG7KrqMHa-s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEmmEv) +STUB("JGECjvSLd+s", _ZN7WebCore15DatabaseTracker5usageERKNS_18SecurityOriginDataE) +STUB("JGF+59cTHl0", _ZN3sce4Json5ValueC1ERKSt4listIS1_NS0_8StlAllocIS1_EEE) +STUB("JGK6yGiZaQw", _ZN3sce2Np9CppWebApi6Common8IteratorIlEC1Ev) +STUB("JGMio+21L4c", mkdir) +STUB("JGQuq1TIsC8", _ZN3JSC7Symbols16throwPrivateNameE) +STUB("JGVv8xF-A-4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEED2Ev) +STUB( + "JGYIRVtAKb4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEED1Ev) +STUB("JGYMjGdyi+E", _ZN9Inspector15InspectorTarget5pauseEv) STUB("JGZ2CS3Rh4w", sceDataTransferGetFgTransferProgress) +STUB( + "JGaCXld6sTE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE21intrusive_ptr_sub_refEPS9_) STUB("JGfTMBOdUJo", sceKernelGetFsSandboxRandomWord) STUB("JGgj7Uvrl+A", scePthreadCondBroadcast) +STUB("JGkExZI3fFI", u_charName) +STUB( + "JGkYG42e8ts", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEE7get_refEv) +STUB( + "JGl4+FcE73A", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEdeEv) +STUB("JGnW730qpTg", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V314MissingElement9nameIsSetEv) +STUB( + "JGpz9iQTreY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEED1Ev) +STUB("JGwhvrsOS78", _ZN3sce7Toolkit2NP2V28Matching4RoomD1Ev) +STUB( + "JGwuvUsA5+0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEED1Ev) +STUB( + "JH2HZnTh7wg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEE7get_refEv) +STUB( + "JH2lfvGo-X4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEEdeEv) +STUB("JHAYKa2Q2hw", WKPreferencesSetShowsToolTipOverTruncatedText) +STUB("JHAyTKDhBmA", _ZN3sce7Toolkit2NP2V28Matching12Notification11RefreshRoom15INVALID_USER_IDE) +STUB("JHBmUO0py9w", _ZN9Inspector25NetworkFrontendDispatchernwEm) +STUB("JHEcam1RLx4", _ZN7WebCore11MathMLNames6mtdTagE) +STUB("JHG9CTmkdQw", _ZN3sce2np13NpTitleSecretC2ERKS1_) STUB("JHGxU93dbQg", sceNpHeapFreeImpl) STUB("JHIz24zeqF0", sceBdSchedSetDiscIdentity) +STUB( + "JHOWuSVZ7yI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEC1EPNS2_10LibContextE) STUB("JHOtNtQ-jmw", sceNpServiceClientInit) +STUB("JHPhakzTesM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEED2Ev) +STUB("JHSSw7eLWAg", _ZN9Inspector14ConsoleMessageD2Ev) +STUB("JHY3FTvCpi8", jpeg_fdct_4x8) +STUB("JHYAZN267Cw", _ZN3JSC23objectConstructorFreezeEPNS_14JSGlobalObjectEPNS_8JSObjectE) +STUB("JHbabbGVSgs", _ZN3JSC7Symbols25mapBucketValuePrivateNameE) +STUB( + "JHcSgXbrdNw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEE5resetEPS9_) +STUB( + "JHmPBtT4Kak", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB("JHp7ogc1+HY", _Mtx_init_with_default_name_override) +STUB("JHtEMhPonUY", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt6vectorI16SceNpTusVariableNS2_IS4_EEEEC1ERKS7_) +STUB("JHuFHzY5Ov0", WKViewGetPage) +STUB("JHv5PTTZjiA", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament6EventsEEC1Ev) +STUB("JHvEnCQLPQI", _Locale) +STUB("JHwbbje-pZg", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISbIcSt11char_traitsIcENS2_IcEEEE7addressERKS6_) +STUB( + "JHxzNKWg8dc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEppEv) +STUB( + "JHycQWvdMmI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEE7get_refEv) +STUB("JI2n0DRLfBM", _ZN15AbstractStorage12LocalContentD2Ev) +STUB("JI4ly8BJLdc", _ZN7WebCore13JSDOMRectListD2Ev) +STUB("JIEHi4Bs9-k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEC1Ev) +STUB( + "JIHFGaq4brI", + _ZN7WebCore14SecurityPolicy32removeOriginAccessAllowlistEntryERKNS_14SecurityOriginERKN3WTF6StringES7_b) +STUB("JIQKSsEyGbU", __ubsan_handle_load_invalid_value) +STUB("JIjADmol06M", _ZN3WTF11Persistence7DecoderrsERNS_8OptionalIbEE) STUB("JIm0mxpJAdM", sceDebugReleaseDebugRegister) +STUB("JIo0Fu8Dd68", JVM_GetClassAnnotations) +STUB("JIo6KXGWql0", _ZN7WebCore19BlurFilterOperationD2Ev) +STUB("JIq0tgqNSTM", GCC_except_table242) +STUB("JIscE4uyUP4", + _ZN3sce7Toolkit2NP2V210Tournament7Request19SendUserMatchReport19MAX_SIZE_SCREENSHOTE) STUB("JIvML6YBykI", sceMusicCoreServerForceKillCurrentCore) +STUB( + "JIwAJCKM7jI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEE7get_refEv) +STUB( + "JJ-A6r4XqLQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("JJ-mkOhdook", _ZNSt13basic_filebufIwSt11char_traitsIwEED0Ev) +STUB("JJ31I5ZoHGA", _ZN3WTF40parseES5DateFromNullTerminatedCharactersEPKc) +STUB( + "JJ42w3-VN2Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEC2EPKS8_) +STUB("JJ7N0ybvaHU", _ZN7WebCore12PrintContext16computePageRectsERKNS_9FloatRectEfffRfb) +STUB("JJ9neZgQDBo", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE7reserveEi) +STUB( + "JJALQvwdHpM", + _ZN3sce2Np9CppWebApi7Matches2V127RequestTeamStatisticFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_20RequestTeamStatisticEEE) +STUB("JJCGSdL-4lY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEcvbEv) +STUB( + "JJGn7KS6Evk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "JJHaGjIEGUs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEC1EPS8_) +STUB("JJP2-ns-hTM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEaSERKS7_) +STUB("JJVMk0VyDlU", _ZN3sce7Toolkit2NP2V211SharedMedia9BroadcastD2Ev) +STUB("JJVOQ9-csDE", WKPreferencesGetCookieEnabled) +STUB( + "JJWNqn8slXI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEEC2ERKSA_) +STUB("JJX4HAYGYuU", _ZN3NTF17URLRequestHttpJobD0Ev) +STUB( + "JJjVnM+9Jw0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEC1Ev) +STUB( + "JJmLIGpHmuI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEEC1ERSA_) +STUB("JJoG1D3v2MA", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12unsetString5Ev) +STUB("JJqvXFYuPec", _ZN3sce7Toolkit2NP2V27Session7Request17ConsumeInvitationD2Ev) +STUB("JJv1on3HygA", + _ZN15AbstractStorage15FacebookContentC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) +STUB("JJzWfWTkTzw", _ZN4Manx14NetworkProfile13cookieEnabledEv) +STUB("JK-T05fwUVA", _ZN3sce2Np9CppWebApi11UserProfile2V113BasicPresence8fromJsonERKNS_4Json5ValueE) +STUB( + "JK0FXmFDEPc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEE5resetEPS9_) STUB("JK0fCuBEWJM", sceUserServiceSetPbtcFlag) STUB("JK1oZe4UysY", sceNetEmulationGet) +STUB("JK2VbjS-3pM", mono_gchandle_new_weakref) STUB("JK2wamZPzwM", sceAudioOut2PortCreate) +STUB( + "JK6AmGTXYlI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEEptEv) +STUB("JKB5zyqVKJE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V110UpdateModeEEaSERKS7_) +STUB("JKEtn7uh0C0", _ZN3JSC7Symbols25iteratedStringPrivateNameE) STUB("JKGYZ2F1yT8", sceNpTusTryAndSetVariableForCrossSaveAsync) +STUB("JKJK4IdI5DE", isobmf_decoder_getquerydata) +STUB("JKNkx0OzGW0", _ZN3sce7Toolkit2NP2V27Session7Request6Search15MIN_INDEX_VALUEE) +STUB( + "JKQWXbAjHNE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEED2Ev) +STUB("JKRf+2yrIaE", UCNV_FROM_U_CALLBACK_STOP) +STUB( + "JKTaWWgfnrQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "JKWoZEDBE84", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEEdeEv) +STUB( + "JKZ55zfqI+A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEC2EPS8_) STUB("JKbDB4m5qyA", sceDataTransferTargetAbortPrepareTransfer) +STUB("JKbiE8BNPbc", _ZN3JSC16callCustomSetterEPNS_9ExecStateEPFbS1_llEbNS_7JSValueES4_) +STUB( + "JKfCmqrvJgM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEdeEv) +STUB( + "JKhZeyvKfTM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEC1EPS6_) STUB("JKl06ZIAl6A", sceHttpAbortRequestForce) +STUB("JKl4a2-u08Q", _ZN7WebCore11HTMLElement5clickEv) +STUB( + "JKmQO41BaRA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEE11get_deleterEv) +STUB("JKo44-+kGg8", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt6vectorI16SceNpTusVariableNS2_IS4_EEEE7destroyEPS6_) +STUB("JKr08Xt4-fw", _ZNSt9basic_iosIcSt11char_traitsIcEE5clearENSt5_IosbIiE8_IostateEb) +STUB("JKsefjJ5H7A", _ZN7WebCore8Settings33setFontFallbackPrefersPictographsEb) STUB("JKxPw1ZBtNM", sceVnaPlayTts) STUB("JKyG3SWyA10", pthread_attr_setguardsize) +STUB("JL+56RCNxbI", mono_mlist_alloc) +STUB( + "JL-TsSd6Vds", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEeqERKS9_) +STUB("JL3q4exb1R4", _ZNK3sce2Np9CppWebApi6Common6VectorINS2_6StringEE4sizeEv) +STUB("JL4zz6ehIWE", _ZN3sce2np8NpTicketD2Ev) +STUB("JL9jF0r0KbU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE7popBackEv) +STUB( + "JLDQKL-8t8w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB( + "JLH36M9t1c0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEC2EPKS8_) +STUB("JLKd45DXMWw", _ZN7WebCore6Region21updateBoundsFromShapeEv) +STUB( + "JLNgqMXnSKc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEppEi) +STUB( + "JLP5kpUltsw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE8copyFromERKS9_) STUB("JLalnDvk6B4", sceAppInstUtilGetContentSize2) +STUB( + "JLq5lQg2o90", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE8copyFromERKS9_) +STUB( + "JLs1t7vRlz0", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEEiRNS2_10LibContextEPT_m) +STUB("JLwBDYxOYXM", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119NatConnectivityFrom6toJsonERNS_4Json5ValueEb) +STUB("JM4EBvWT9rc", tanh) +STUB("JM4dtbCgfXg", _ZN3sce7Toolkit2NP2V29Challenge7Request16GetChallengeDataC2Ev) STUB("JM58a21mtrQ", sceHttpAddQuery) +STUB("JMA7QKrZvjc", _ZN3sce3pss5orbis9framework12PsmEventData8SetValueERKNS_4Json5ValueE) STUB("JMADh-6iSWc", scePsmExecute) +STUB("JMBlA4Sqkek", _ZN9Inspector21InjectedScriptManagernaEm) +STUB("JMJ09u+0RvU", _ZN7CoreIPC13DataReference6decodeERNS_15ArgumentDecoderERS0_) +STUB("JMKl4AB0qAY", _ZN3sce2Np9CppWebApi14SessionManager2V125ResponseGameSessionPlayerD1Ev) STUB("JMNwMECvR4U", sceVideoCoreSetThumbnailInfo) +STUB( + "JMP7G31eyN4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE3endEv) +STUB("JMPK-1KGVfo", _ZN15AbstractStorage10TwitterAPI11SendContentEPKvl) +STUB("JMR7Ta53gWo", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge10ChallengesEEC2Ev) STUB("JMSapEtDH9Q", sceNpTrophySystemCloseStorage) +STUB("JMUQsZWRFyA", fuse_get_context) +STUB("JMUe8On8+E0", g_opcodeMap) +STUB( + "JMVCqzKaQus", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE21intrusive_ptr_sub_refEPS9_) +STUB("JMVvoQs4Vuc", YGNodeSetChildren) +STUB("JMap+RuWCso", _ZN3PAL12CryptoDigest6createENS0_9AlgorithmE) +STUB("JMcDB6ul5FM", _ZN3JSC17JSPromiseDeferred6rejectEPNS_9ExecStateENS_7JSValueE) +STUB("JMhvguiXDRw", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112UpdateStatusEEppEv) +STUB( + "JMlXcYqRHRE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEEC1ERKSA_) +STUB( + "JMpyFyWW4sQ", + _ZN7WebCore9Scrollbar21createNativeScrollbarERNS_14ScrollableAreaENS_20ScrollbarOrientationENS_20ScrollbarControlSizeE) +STUB( + "JMwBt9GFCBo", + _ZN7WebCore30forwardForEachCallToBackingSetERNS_17JSDOMGlobalObjectERN3JSC9CallFrameERNS2_8JSObjectE) +STUB("JN11cC6WIkY", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V333PsnWebError_error_missingElements7getNameEv) +STUB( + "JN6qsUu3T-8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEC1Ev) +STUB("JN7DMHbIVIY", _ZN3sce7Toolkit2NP2V29Challenge10Challenges8deepCopyERKS4_) +STUB( + "JN7kxXolIPs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEixEm) +STUB("JNHfaQ3Sv98", _ZN7WebCore9HTMLNames25onwebkittransitionendAttrE) +STUB( + "JNOSfoQLGBQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEC1EPS8_) STUB("JNTMIaBIbV4", sceNgs2RackSetUserData) +STUB("JNUH68bpuxI", _ZN9Inspector34DOMStorageBackendDispatcherHandlerD2Ev) +STUB("JNWS6QRHjXc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEixEm) +STUB( + "JNYW2r3+xZo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("JNatysW6CZk", jpeg_idct_7x14) STUB("JNkVVsVDmOk", pthread_attr_getguardsize) +STUB("JNktKOUPYCQ", + _ZN7WebCore21UserContentController20removeUserStyleSheetERNS_15DOMWrapperWorldERKN3WTF3URLE) +STUB("JNqhKC7xEio", rgctx_fetch_trampoline_mrgctx_122_p) +STUB("JNuNqwh0YgE", GCC_except_table179) +STUB("JNxgC+-Mtew", u_feof_67) +STUB( + "JNy6E0rUtUY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEED1Ev) +STUB("JO-9GKQvbCw", WKPageConfigurationGetContext) +STUB("JO-ugUSKi44", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi22ParameterToCreateMatchC2ERS5_) +STUB( + "JO2eZo5+odA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEptEv) +STUB("JO3+XBPWgeI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE5beginEv) +STUB("JO47seG-aN0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEEC2ERS9_) STUB("JO4yuTuMoKI", sceNetCtlGetNatInfo) +STUB("JO5+JCKFMD4", _ZNK15AbstractStorage15FacebookStorage10GetServiceEv) STUB("JO5QXiyBcjQ", sceUserServiceSetPbtcThursdayHoursStart) +STUB( + "JODtJKnMrYg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEC2ERS8_) +STUB("JOEK19Eybio", mono_aot_Sce_Vsh_SysUtilWrapperunwind_info) +STUB( + "JOHv22-xmzE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEED1Ev) +STUB( + "JOJcTmgv8aM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEC1EPKS8_) +STUB("JOQYfWleMOE", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIjEppEi) +STUB("JOV1XY47eQA", _Thrd_abort) STUB("JOWmDrl+j20", sceAgcCbSetUcRegisterRangeDirectGetSize) +STUB( + "JOak3gjACRY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE4sizeEv) +STUB("JObMoFPvfYI", usprep_openByType_67) +STUB( + "JOd9ljiTPOw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEC1Ev) +STUB("JOeG2B2AJmk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE8copyFromERKS7_) +STUB( + "JOeNO1OiWjQ", + _ZN3JSC23JSModuleNamespaceObject18getOwnPropertySlotEPNS_8JSObjectEPNS_14JSGlobalObjectENS_12PropertyNameERNS_12PropertySlotE) +STUB("JOesYFupLKA", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEEC2Ev) +STUB("JOi9TuQ4PVY", rgctx_fetch_trampoline_rgctx_16_p) +STUB("JOj6qfc4VLs", + _ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE5_InitERKSt8_Locinfo) +STUB( + "JOwemtSCW3k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEE11release_refEv) +STUB("JP-PtKMiI1E", _ZN3sce4Json5ArrayC1Ev) +STUB("JP2VBzeI9NU", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V110AvatarSizeEEC2Ev) +STUB( + "JP7XCBGtX7s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "JP8uep0SjBc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE8pushBackERKS8_) +STUB("JP9y7f7e7QQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V125ResponseGameSessionPlayer12getAccountIdEv) +STUB( + "JPDqSOnI6nI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEC2EPS6_) +STUB( + "JPDw8L0+efM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEC2Ev) +STUB( + "JPEzTlqdeRA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEE7add_refEv) +STUB( + "JPFa5NRl0JI", + _ZN7WebCore24DocumentMarkerController13removeMarkersEN3WTF9OptionSetINS_14DocumentMarker10MarkerTypeEEE) +STUB( + "JPJe-fW02eo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE6resizeEj) +STUB("JPMZdhX2qEA", _ZN7WebCore13GraphicsLayer17suspendAnimationsEN3WTF13MonotonicTimeE) +STUB("JPN+kTUT1nU", fuse_setup) +STUB( + "JPN+yP-GTMM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEC1EPS6_PFvS8_EPNS2_10LibContextE) STUB("JPQagYw-y+4", sceAmprAmmMeasureAmmCommandSizeModifyProtect) +STUB("JPbxSMGcIXk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEE3getEv) +STUB( + "JPdvNzMvrE8", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToSendPlayerSessionMessageC1ERS5_) +STUB( + "JPeLMnpblzM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEC1Ev) STUB("JPh3Zgg0Zwc", sceJpegDecCreate) +STUB( + "JPiugmRbPs4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE3endEv) +STUB( + "JPogfcq6G4k", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "JPolFAvpTb0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "JPrWRgM-jTg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "JPuDW37bbL0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE8capacityEv) +STUB( + "JPuT1sBcgTE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEmmEi) +STUB("JPweFxj7KXo", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData11hasobjectIdEv) +STUB("JPx70wOPTuE", JVM_GetTemporaryDirectory) +STUB("JPz5ZejS4k8", _ZN3sce2Np9CppWebApi13InGameCatalog2V520ContainerRatingCountD2Ev) +STUB("JPzSawlNG9E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEdeEv) +STUB( + "JQ-Ylaenqvo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE7popBackEv) +STUB("JQ0sop7jsm4", _ZN3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse17setPreviousOffsetERKi) +STUB( + "JQ419YwNuc8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEdeEv) +STUB("JQ5PeKXGA2Y", _ZN3JSC16slowValidateCellEPNS_6JSCellE) +STUB( + "JQ8FPqED1YU", + _ZN3sce2Np9CppWebApi11Matchmaking2V127GetOfferResponseBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_20GetOfferResponseBodyEEE) +STUB( + "JQC7l6djA-k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEE11release_refEv) STUB("JQKWIsS9joE", sceFontWritingLineGetOrderingSpace) +STUB( + "JQSpi9J2tj8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEE7add_refEv) +STUB( + "JQTLT4u+1Go", + _ZN7WebCore26MessagePortChannelRegistry29existingChannelContainingPortERKNS_21MessagePortIdentifierE) +STUB( + "JQWQSRZdJ3E", + _ZN8meta_gen11MsvPromoter24setKeyValue_TBLAVC_TitleENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB( + "JQbVuHG2Rzo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEEaSERSA_) +STUB( + "JQfoYnhuz+E", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS5_INS7_9RecordApi26RecordScoreResponseHeadersEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "JQi5y4LVCHM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) STUB("JQk8ck8vnPY", sceNetResolverConnect) +STUB( + "JQkZv1wLd7c", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEEdeEv) +STUB("JQkp+nemtRY", WKBundlePageGroupCopyIdentifier) +STUB( + "JQpcGrx4BTc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEmmEv) +STUB("JQqAOeX3ai8", + _ZN3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayerC2EPNS1_6Common10LibContextE) +STUB("JQrajDnmJR0", _ZN7WebCore6JSNodeD2Ev) +STUB("JQvhDx6JnW4", uset_getSerializedSet_67) +STUB( + "JQwrcyLAwVc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE4sizeEv) +STUB( + "JQx+9ktvZUc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEEaSERKSA_) +STUB("JQx-yaSToZ8", _ZNK7WebCore16HTMLMediaElement12networkStateEv) +STUB("JQy5ECB3u9c", JVM_GetClassModifiers) +STUB("JQyLCevN3aM", FT_Get_PS_Font_Info) +STUB( + "JR50QoqsUMg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEEC1EPS8_PNS2_10LibContextE) +STUB("JR55OjkCHoc", _ZN7WebCore8SVGNames12edgeModeAttrE) +STUB("JR5LaqZ9Fxg", _ZN7WebCore11CachedFrame23cachedFramePlatformDataEv) +STUB( + "JR5fjwq-IjY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEED2Ev) +STUB( + "JR7Hw6IWdTM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB( + "JR9Iu5p+lPE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("JRCLamjp4XM", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE7reserveEi) +STUB( + "JRCsVIe61vM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("JRED8uRzYcc", uprv_pow_67) +STUB("JREmVpFIgEY", _ZN15AbstractStorage14StorageManager6MallocEm) +STUB("JRJGe2pCRSY", uprv_getRawUTCtime_67) STUB("JRKSSV0YzwA", sceGnmDebuggerResumeWavefrontCreation) +STUB("JRL5HQ04IFM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12FriendsRanksEEC1Ev) +STUB("JRPAh6iy7dY", ulocdata_getPaperSize_67) +STUB( + "JRPQayxpW9I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEED1Ev) +STUB("JRPrmfTHt08", _ZNK3WTF3URL30stringCenterEllipsizedToLengthEj) +STUB("JRQDxlSFesA", _ZN3sce3pss5orbis9framework11PsmCallList6UpdateEv) +STUB("JRQIZdQ5VRs", _ZN9JITBridge8shutdownEb) +STUB( + "JRQUjbrKz6U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEC1Ev) +STUB( + "JRX4wZNzuZY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEEC2EPS8_PNS2_10LibContextE) +STUB( + "JRhxpEr49dY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEE7add_refEv) +STUB( + "JRm5ieDo81A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE8pushBackERKS8_) +STUB("JRtw5pROOiM", _ZN3sce2np9RefObjectC2Ev) STUB("JS5Jdf00tcU", sceUserServiceSetVolumeForDs4Speaker) STUB("JS6H7Kwm37s", sceUserServiceSetShareStatus3) +STUB("JSEDJhmqss4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEE7get_refEv) +STUB("JSHnjTejK20", pR2) STUB("JSNgID8Bupk", sceKernelCheckDipsw) +STUB( + "JSOuey6xpdA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "JSRkbgmSXg4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "JSXGe6gEhQM", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot9getslotIdEv) +STUB("JSXzwTOSylU", _ZN12video_parser16cVideoContentMp418releaseDrmInstanceEPNS_9iVideoDrmE) +STUB("JSZRv7K8MqM", WKPreferencesSetDNSPrefetchingEnabled) +STUB( + "JSbELrBeGOo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEE11get_deleterEv) +STUB("JSbNmt85AcQ", RemotePlayProhibitStreaming) +STUB("JScMKvWaF28", _ZN7WebCore9HTMLNames11classidAttrE) +STUB("JSeJIy8wt0s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEcvbEv) +STUB("JSg1MSo7NKE", _ZN3sce4Json5Array8iteratorC2Ev) +STUB( + "JSh2DA0ZD9M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("JSi+hWkA9pI", FTA_Add_Module_winfonts) +STUB("JSmMVMH2UVo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEcvbEv) +STUB("JSpF6akjCns", Java_java_util_zip_CRC32_update) +STUB("JSpe2pqtgn4", mono_aot_Sce_Vsh_WebBrowserunwind_info) +STUB("JSphJHGztUM", _ZN7WebCore7Element14getClientRectsEv) +STUB("JSx9KSwmzKI", u_getCombiningClass_67) STUB("JT+t00a3TxA", sceNpGetAccountCountryA) +STUB("JT09vtkRDFo", WKContextConfigurationSetLocalStorageDirectory) +STUB("JT1UHZPbMas", _ZN7WebCore10Pasteboard5writeERKNS_20PasteboardWebContentE) +STUB("JT4sPygD4nc", _ZNK7WebCore26Matrix3DTransformOperationeqERKNS_18TransformOperationE) +STUB("JT5TelrgjVo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEaSERKS7_) +STUB("JTIHqYZFMQE", ucnv_close) +STUB( + "JTJB7rlYQDI", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS2_6BinaryEEENS5_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB( + "JTNpjZElMiQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEED1Ev) +STUB( + "JTTweisGNNI", + _ZNK3sce2Np9CppWebApi14SessionManager2V134PostGameSessionsSearchResponseBody6toJsonERNS_4Json5ValueEb) +STUB("JTX3PmF93GM", + _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container31unsetContentInteractiveElementsEv) +STUB("JTXC0psWzuo", ucol_getRules_67) +STUB("JTXc91mV-lE", _ZN3sce7Toolkit2NP2V28Matching12Notification14NewRoomMessageD1Ev) +STUB("JTaAzpmi+tU", mono_aot_System_IO_Compression_FileSystemunbox_trampoline_addresses) STUB("JTctYix8NXU", sceShellCoreUtilWriteSmrHddDummyData) +STUB("JTeaIEONlYI", WKArrayGetTypeID) +STUB("JTiSgKFrT0Y", _ZN3sce7Toolkit2NP2V28Commerce7Request11GetProductsC2Ev) +STUB("JTjUklvzi3s", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V113ErrorResponse6toJsonERNS_4Json5ValueEb) +STUB("JTk-tDMt1vA", mono_aot_Mono_Data_Tdsjit_code_start) +STUB( + "JTmIYW4MJ3M", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE5beginEv) +STUB( + "JTqLoioHbqk", + _ZThn16_N9Inspector21InspectorRuntimeAgent14callFunctionOnERN3WTF6StringERKS2_S5_PKNS1_8JSONImpl5ArrayEPKbSB_SB_RNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISF_EEEERSt8optionalIbE) STUB("JTvBflhYazQ", sceKernelWaitEventFlag) STUB("JTw1cAVkuc0", sceUltConditionVariableSignal) +STUB("JTwLgG1svM4", __tsan_atomic64_compare_exchange_weak) +STUB("JTwt9OTgk1k", _ZNSt13basic_filebufIcSt11char_traitsIcEE9_EndwriteEv) +STUB("JTx7xm5hkvE", _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35ErrorD2Ev) +STUB("JU-bibmc2Ss", _ZN3sce7Toolkit2NP2V212ActivityFeed11SharedVideo20USER_COMMENT_MAX_LENE) +STUB("JUAOpzalx+0", ubidi_orderParagraphsLTR_67) +STUB("JUBOIzusdEw", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku10getEndDateEv) +STUB( + "JUEuKXwrHTw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEC1EPNS2_10LibContextE) +STUB( + "JUIwyPcxMYk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEE11get_deleterEv) +STUB("JULt0eLjPT0", mono_btls_x509_print) +STUB( + "JUMmcrX5VP0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEppEi) +STUB( + "JUNTtmQQpDk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "JUNxke5HMdk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEEC2Ev) +STUB("JUSVnCpYo4M", _ZNSt9basic_iosIcSt11char_traitsIcEE4swapERS2_) +STUB( + "JUWG3AoHxKg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEC1ERS7_) +STUB( + "JUY2UF+z+XE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB( + "JUZphrP-smU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEplEm) +STUB( + "JUa2cNWhAtc", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_13WhoLikedStoryENS1_15AppSTLAllocatorIS5_EEEEC2Ev) +STUB("JUbN6tGxXnQ", _ZN7WebCore24DocumentParserYieldTokenD2Ev) +STUB("JUgeqTtnIuQ", WKPreferencesCopyFantasyFontFamily) +STUB("JUh1zhXSrWE", rgctx_fetch_trampoline_mrgctx_31) +STUB("JUimFtKe0Kc", sigaddset) +STUB("JUu0-1OqEro", umtx_lock) +STUB("JUyRlTUa8TE", _ZN3WTF13mayBeGCThreadEv) +STUB("JV-oxAdaPeo", WKBundleGetJavaScriptHeapStatistics) +STUB("JV2k5nGxZS4", _ZNK7WebCore24RotateTransformOperation10isIdentityEv) +STUB("JV9qZMoLtEo", mono_metadata_field_info_with_mempool) STUB("JVMIyR8vDec", sceUserServiceGetPbtcSundayDuration) +STUB( + "JVMoPnVHUfI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE8copyFromERKS9_) +STUB("JVPBY2ea1UE", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TSS7TssDataEE3getEv) +STUB( + "JVT+Tq-uiwg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEED2Ev) +STUB( + "JVTRAtzNkLs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE7popBackEv) +STUB("JVV9P5rGzk8", _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead9getLeaderEv) STUB("JVYt1hlHSvo", sceKernelGetDebugMenuMiniModeForRcmgr) +STUB( + "JVZAJPhCYQo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEEC2ERKSA_) +STUB("JVZt7JQpSps", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEEC1ERKS6_) +STUB( + "JVao2zeA7zA", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEiRNS2_10LibContextEPT_m) STUB("JVc71p0lpFs", scePthreadMulti) +STUB("JVgZfJt3ZqQ", blockpool_open) +STUB("JVhstJ9mJmo", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEEcvbEv) +STUB("JVmUZwK-HJU", setuid) +STUB( + "JW-mKNaMcF8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEEC2EPS6_PNS2_10LibContextE) +STUB("JW19IBALPx8", delegate_virtual_invoke_imt_m_7) +STUB("JWBWfbo61kM", _ZN3sce7Toolkit2NP2V210Tournament10TeamMemberC1ERKS4_) +STUB("JWBr5N8zyNE", isdigit) +STUB("JWPGyyGoWdU", OPENSSL_load_builtin_modules) +STUB( + "JWQ4IGXzwtk", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate11setPerGenreERKNS1_6Common12IntrusivePtrINS3_29MatchCompletionRatePropertiesEEE) +STUB("JWT7NbPA9Ds", + _ZN15AbstractStorage14StorageManager12NotifyCreateERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) +STUB("JWTacfe3XYY", _ZN7WebCore17FrameLoaderClient28notifyPageOfAppBoundBehaviorEv) +STUB( + "JWVbM34Eizw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEC1EPS8_) +STUB( + "JWWUpeq0p8g", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEptEv) +STUB("JWgOcc6QyeQ", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS19FriendsDataStatusesEE12deepCopyFromERS7_) +STUB( + "JWih++ftkDU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE5clearEv) +STUB( + "JWk0Af9WOns", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEE7get_refEv) +STUB("JWnUCOml8L8", _ZN3sce7Toolkit2NP2V28Matching17AttributeMetadata13MAX_SIZE_NAMEE) +STUB("JWplGh2O0Rs", _ZNKSt8numpunctIcE8groupingEv) +STUB("JX2OpKUAFmc", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getAllPrimaryAudioStreams) +STUB("JX3BsleH6ps", Java_java_lang_StrictMath_tanh) +STUB( + "JX7bmADbfrc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEED1Ev) +STUB( + "JXDyQLhv6RA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE8capacityEv) +STUB( + "JXHTrqMWIpg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEED2Ev) +STUB( + "JXLZSzn1+Ks", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEdeEv) +STUB("JXMHfBlczDc", _ZN7WebCore4Page30passiveTouchEventListenerRectsEv) STUB("JXRC5n0RQls", sceNgs2SystemUnlock) +STUB("JXZF3npNdeA", _ZN3sce2Np9CppWebApi6Common6VectorIjE7reserveEi) +STUB( + "JXa0UL2pvO8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEC1EPKS8_) STUB("JXlI9EZVjf4", sceNetCtlGetState2IpcInt) +STUB( + "JXlO8PSAVxw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEppEv) +STUB("JXlrCLLCLmc", _ZN3sce4Json5ValueC2ERKNS0_6ObjectE) +STUB("JXpT6IIXUqs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEdeEv) +STUB("JXzQGOtumdM", _ZNKSt8numpunctIcE16do_decimal_pointEv) +STUB("JY3szqHFsZY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEEC2Ev) +STUB("JY7ySwqlzRM", _ZN7WebCore12JSTimeRanges11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("JY8X2aiT430", _ZN7WebCore11JSDOMWindow12getPrototypeEPN3JSC8JSObjectEPNS1_9ExecStateE) +STUB( + "JY9OCgrC3MI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("JYPS3CZwkjI", il2cpp_method_get_flags) +STUB( + "JYQLXXmo2GU", + _ZN7WebCore11ImageBufferC2ERKNS_9FloatSizeEfNS_10ColorSpaceENS_13RenderingModeEPKNS_10HostWindowERb) +STUB("JYZigPvvB6c", _ZNSt14numeric_limitsIeE8digits10E) +STUB( + "JYa01KuMqhA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEneERKS9_) +STUB("JYcDoHDeq-E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEC1Ev) STUB("JYd9g9L+TmE", sceAmprMeasureCommandSizeWriteAddressFromCounter_04_00) +STUB( + "JYfKXqabwW4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE3endEv) +STUB( + "JYl4SDDkuAQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE7reserveEi) +STUB("JYnC+JfDauc", _ZNK3sce2Np9CppWebApi15ProfanityFilter2V219WebApiErrorResponse10errorIsSetEv) +STUB( + "JYoGfjITa2Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEEaSERKSA_) +STUB( + "JYp7VlqCuqQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("JYu8tujmiTc", _ZN3WTF4SHA18addBytesEPKhm) +STUB("JYuYFcPEJhw", _ZN9Inspector22HeapFrontendDispatcherC2ERNS_14FrontendRouterE) +STUB( + "JZ+KVVvkWEI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("JZ-SbEchaVI", _ZNK7WebCore11PageOverlay10controllerEv) +STUB( + "JZ3+lzus8YI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE8pushBackERKS8_) +STUB( + "JZ3WbPtPqag", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("JZ3wKDjl0yQ", _ZN15AbstractStorage7ContentD1Ev) +STUB( + "JZ4EZkY6iEw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE7popBackEv) STUB("JZ5NzN-TGIQ", sceUserServiceSetThemeBgImageDimmer) +STUB("JZ5yszZEFEY", ures_getSize) +STUB("JZ6Si-1IowA", + _ZN3sce2Np9CppWebApi7Matches2V122RequestMatchStatisticsC2EPNS1_6Common10LibContextE) +STUB("JZ7r1NnPrt4", _ZN7WebCore15JSSVGSVGElementD2Ev) +STUB("JZ8tx3cZl-4", _ZN3sce7Toolkit2NP2V28Commerce7Request11GetProducts12MAX_PRODUCTSE) +STUB("JZ9gGlJ22hg", _WStofx) +STUB("JZBAAN607gQ", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE5clearEv) STUB("JZKw5+Wrnaw", pthread_sigmask) +STUB("JZMm1O3sBAU", removeTelemetryErrorListener) STUB("JZOeaOI8rU8", sceDebugReadProcessRegisterForSDBGP) +STUB( + "JZOs3euewh0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE21intrusive_ptr_add_refEPS9_) +STUB("JZPvgm7XBtI", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_7TssDataEE3getEv) +STUB("JZQPxcMK+ZA", _ZNK7WebCore22EmptyFrameLoaderClient15canShowMIMETypeERKN3WTF6StringE) +STUB( + "JZQu-tR0cR0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE5beginEv) +STUB("JZR0UvNaDYc", ulist_next_keyword_value_67) +STUB( + "JZRhTtF6Wok", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEEC2ERKS8_) +STUB("JZRjz+vxpuM", vm_send_CreateThrowTrampoline) +STUB("JZUvGmASho0", _ZN3sce7Toolkit2NP2V29Challenge7Request21GetReceivedChallengesC2Ev) +STUB("JZWEhLSIMoQ", __atomic_is_lock_free) +STUB("JZZchPyTk2k", _ZN9Inspector30WorkerBackendDispatcherHandlerC2Ev) +STUB("JZb6dV1q-eI", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersaSERS5_) +STUB("JZeWjTYQwd4", _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead11memberIsSetEv) +STUB("JZkR7DtZvHE", mono_aot_SMDiagnosticsplt_end) +STUB( + "JZlH47-Lodk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEE7add_refEv) +STUB("JZmn6lNGFyU", _ZNK7WebCore14SecurityOrigin8toStringEv) +STUB("JZnM3AsJsRE", _ZN3NTF17URLRequestDataJobC1Ev) +STUB( + "JZpv97wqzCc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEE3getEv) +STUB("JZrd12xKQZw", _ZNK3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate11getPlatformEv) +STUB("JZtYvHA0HGI", _ZNK3JSC17DebuggerCallFrame19vmEntryGlobalObjectEv) +STUB("JZvQYbnyCRo", GCC_except_table255) +STUB( + "JZxOSQNsWCM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEEC1ERKSA_) +STUB( + "JZxSUUNDsbY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE21intrusive_ptr_sub_refEPSA_) +STUB( + "Ja+O3p4IUcM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEED1Ev) +STUB( + "Ja2C3R8FoWM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEED2Ev) +STUB("Ja4AluDjeoI", mono_aot_Sce_Vsh_Webbrowser_XdbWrapperunbox_trampolines) +STUB( + "JaE6NtYASYE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEE3getEv) +STUB("JaFNOBMM5rA", _ZN7WebCore11BitmapImage11nativeImageEPKNS_15GraphicsContextE) +STUB( + "JaJCveN-P48", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEC1EPNS2_10LibContextE) +STUB( + "JaM6E-gMI9E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE8capacityEv) +STUB("JaNjljrSqyg", _ZN9Inspector21CSSFrontendDispatchernwEm) STUB("JaRMy+QcpeU", scePthreadAttrGetdetachstate) +STUB( + "JaROWsPRaXE", + _ZN9Inspector21InjectedScriptManagerC2ERNS_20InspectorEnvironmentEON3WTF3RefINS_18InjectedScriptHostENS3_13DumbPtrTraitsIS5_EEEE) +STUB( + "JaSeUj5NrBs", + _ZN3JSC13RuntimeMethod6createEPNS_9ExecStateEPNS_14JSGlobalObjectEPNS_9StructureERKN3WTF6StringEPNS_8Bindings6MethodE) +STUB("JaWrrHX7nfc", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getInteger8Ev) STUB("Jaa16wSEA9U", sceSpPthreadCondDestroy) STUB("Jahsnh4KKkg", madvise) +STUB("JajAKT2DsiA", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEEaSERS7_) +STUB( + "JakrtOQM6k4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi10uploadDataEiRKNS4_21ParameterToUploadDataERNS1_6Common19UpStreamTransactionINS8_12IntrusivePtrINS3_22UploadDataResponseBodyEEENSA_INS4_25UploadDataResponseHeadersEEEEE) +STUB( + "JapAWCBN4Zw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEC1EPKS8_) STUB("JarMIy8kKEY", pthread_attr_setschedpolicy) +STUB( + "Jav0u8KDQ2M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEED1Ev) +STUB( + "Jaxt+apCFYY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEdeEv) +STUB( + "JazBKE4OTfA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEE7get_refEv) +STUB("Jb0DetophBI", _ZN7WebCore8SVGNames12exponentAttrE) +STUB("Jb0VJFvx0Qk", _ZNK7WebCore12TextIterator4nodeEv) +STUB("Jb1OVO08cOE", _ZN3WTF15isWordTextBreakEP14UBreakIterator) STUB("Jb2uGFMr688", pthread_getaffinity_np) +STUB("Jb8qlQnHbaI", u_isWhitespace_67) +STUB("JbEwAVpz8zE", _ZN3WTF19MetaAllocatorHandleD2Ev) +STUB( + "JbF7DMZaJeo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "JbFmZ1CosNE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE10setContextEPNS2_10LibContextE) +STUB( + "JbFvzs2lOyY", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeOnlineId2AccountIdBatchD1Ev) +STUB("JbIQkQ1snOo", _ZN7WebCore12SharedBufferC1EPKcm) +STUB("JbJ-eZFsftc", _ZGVNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE) +STUB( + "JbJaUrPl10M", + _ZN3sce7Toolkit2NP2V212ActivityFeed7getFeedERKNS3_7Request7GetFeedEPNS2_4Core8ResponseINS3_4FeedEEE) +STUB( + "JbLCJvR8NJ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEEC2Ev) +STUB("JbLS-O2Uyr0", _ZNK7WebCore26HTMLTextFormControlElement23visiblePositionForIndexEi) +STUB("JbNbs4ijvzg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEE3getEv) +STUB("JbQw6W62UwI", _Fetch_add_8) +STUB("JbTeZfIw2iY", _ZNK3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15Error10getMessageEv) +STUB("JbWUV6K+82c", _ZN9Inspector25RuntimeFrontendDispatchernwEmPv) +STUB("Jbc3ZPBpEx4", _ZNK7WebCore6Editor12selectedTextEv) +STUB( + "JbcRTMZlARM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEEC2ERKSA_) +STUB( + "JbcvUjpDc+M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("JbdllN6U9HI", _ZN3sce7Toolkit2NP2V24Core7Request16ThreadProperties16PRIORITY_HIGHESTE) +STUB( + "Jbg7IlUVhWU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEC1EPKS8_) +STUB("Jbj0ww7VCMM", mono_aot_Sce_Vsh_DiscPlayerjit_got) +STUB( + "JbkOB7BTA8I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEC1EPKS8_) +STUB("Jblm-5opDp8", mono_aot_Sce_Vsh_Messages_DbAccessLibjit_code_start) +STUB( + "JbwWcYdh1DA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120MmrPropertiesFactory6createEPNS1_6Common10LibContextEiPNS5_12IntrusivePtrINS3_13MmrPropertiesEEE) +STUB("Jc0fIQwCV5s", _ZN23sceMetadataReaderWriter7LPEntryC1EPKNS_10ParserInfoE) +STUB("Jc6E7N+dHz0", system) +STUB( + "Jc9mD5YSdII", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("JcAsZlyr3Mo", _ZNK3sce2np9JsonValue12GetItemValueEi) +STUB( + "JcAxchbfkY0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE8copyFromERKS9_) +STUB("JcCWxUGoKF8", _ZNK7WebCore19DragCaretController30caretRectInRootViewCoordinatesEv) +STUB("JcDuAIDQ3NI", mono_image_ensure_section_idx) +STUB("JcGel5E1+KU", _ZNK7WebCore19BlurFilterOperation14affectsOpacityEv) +STUB( + "JcLyHOI4xvk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEED1Ev) +STUB( + "JcP4LNPhEk0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEC1EPNS2_10LibContextE) STUB("JcPje9m3yyc", sceHidControlSetApplicationFocus) +STUB("JcUZCNbdFGA", _ZN9Inspector21DOMFrontendDispatcher7inspectEi) +STUB( + "JcX3wGDmKsI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEEC1Ev) +STUB( + "JcfxRR9PsZQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEEC1ERSA_) STUB("JcqdKidhuK0", sceNpAppInfoIntCheckServiceAvailabilityAllA) +STUB("JcquXB39yLc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEEC2EPKS5_) +STUB( + "Jcrm67-T5Es", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody21unsetJoinableUserTypeEv) +STUB("Jcu0Wl1-XbE", _Getdst) +STUB("JcwL-sCzYFo", _ZN7WebCore12PrintContext20pageNumberForElementEPNS_7ElementERKNS_9FloatSizeE) +STUB( + "Jd+1bHtodQ0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEC1Ev) +STUB( + "Jd+clkQSM50", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE5beginEv) +STUB( + "Jd2l5yvbUdY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEED2Ev) +STUB( + "Jd42E+3+trQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("Jd4wBWL0Mqs", mono_aot_Mono_Data_Sqliteunbox_trampolines_end) +STUB( + "JdBB3gTj9kQ", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeAccountId2OnlineIdBatchD2Ev) +STUB("JdKoblsgg00", _ZNK7WebCore15FocusController18focusedOrMainFrameEv) +STUB( + "JdLDykSHSxg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE7popBackEv) +STUB( + "JdRuoSNUoAw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEEC2EPS5_PFvS7_EPNS2_10LibContextE) +STUB("JdWRfEu6yEg", _ZN3JSC7Symbols17repeatPrivateNameE) +STUB( + "JdYZlDuAwzE", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "JdfDvvLqz-0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEE5resetEPS6_) STUB("JdksQu8pNdQ", sceAvPlayerGetVideoDataEx) +STUB("JdoZDRANNUE", JSObjectMakeError) +STUB( + "JdrGSxL2Ab8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEC1EPS8_) +STUB( + "JdtZWyILEkw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEppEi) +STUB( + "JdtySM76bWs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEcvbEv) +STUB("JdzKCiUspNM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth8AuthCodeEE12deepCopyFromERS7_) +STUB( + "Je0-LmoRXYM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEED1Ev) +STUB("Je1MaB+JdWE", _ZN3JSC17JSPromiseDeferred7resolveEPNS_9ExecStateENS_7JSValueE) +STUB("Je8FZg0jHdg", _ZN23sceMetadataReaderWriter8MetadataC2ERKS0_PFPvmEPFvS3_E) +STUB("Je8Tmvk2beA", _ZN7WebCore16BlobRegistryImpl15registerBlobURLERKNS_3URLES3_) STUB("JeAOV3YYkBU", sceVisionManagerRequestOpen) +STUB( + "JeAZ+9F628o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEC1Ev) +STUB("JeDWXql5S1U", _ZN12video_parser17cVideoOperatorMp4D1Ev) +STUB("JeH+i51Qf2I", _ZN3JSC6JSCell11getCallDataEPS0_) +STUB( + "JeIyfBupDi8", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEEiRNS2_10LibContextEPT_m) STUB("JeNX5F-NzQU", sceFiberFinalize) +STUB("JePhOKqxF-A", _ZN7WebCore4Path9addLineToERKNS_10FloatPointE) +STUB("JeTseBuY-YI", _ZN7WebCore20ResourceResponseBase24setExpectedContentLengthEx) +STUB( + "JeYoQKgZ7Wk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB( + "JeYwmPcTJ2c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE6resizeEj) +STUB( + "JeaDXS2IUvc", + _ZN3sce2Np9CppWebApi14SessionManager2V129GetPlayerSessionsResponseBodyC2EPNS1_6Common10LibContextE) +STUB( + "JedzMy42BE4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEC2Ev) +STUB( + "Jeejf8QnN90", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE8pushBackERKS8_) +STUB( + "JeiRJqACKm4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEppEi) STUB("JejsXQ++gvU", sceVisionManagerSetCallbackForUpdateStoreFrame) +STUB("JemQGDZpbjI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE5emptyEv) +STUB("JephqDWR6Pc", WKContextSetHTTPPipeliningEnabled) +STUB("Jf2IlBrVPJw", _ZN19JITSharedTextMemory15shared_memalignEmm) +STUB("Jf7snoK7rqU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEE3getEv) +STUB( + "Jf7uBfdDOsU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE5eraseENS2_8IteratorIS6_EERS9_) +STUB("Jf8k9CQWZLQ", _ZN7WebCore28encodeWithURLEscapeSequencesERKN3WTF6StringE) STUB("JfEPXVxhFqA", sceAudioOutInit) +STUB("JfGd39hq3Ik", WKPageRequestStorageAccessConfirmResultListenerCall) +STUB("JfKwkMqWOyg", WKPreferencesGetTelephoneNumberParsingEnabled) +STUB("JfPqay7vYvQ", mono_aot_System_Xml_Serializationmethod_addresses) +STUB( + "JfWYsPKS3FU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE21intrusive_ptr_sub_refEPS9_) +STUB("JfbWTBVoIYw", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE6resizeEj) +STUB( + "JfggELKROuI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEEcvbEv) +STUB("Jfgwu4mfP1M", + _ZN7WebCore6Editor19deleteWithDirectionENS_18SelectionDirectionENS_15TextGranularityEbb) +STUB("JfjfrvJ-C8s", unorm_compare) +STUB("JfjknJ9uWaI", mono_aot_Sce_Vsh_GameListRetrieverWrapperjit_code_start) +STUB( + "Jflb8B8JorI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEE11release_refEv) +STUB("JfpZWg77-Zw", WKUserContentURLPatternMatchesURL) +STUB("JfwJJROUZEw", _ZN3sce2Np9CppWebApi6Common6VectorIfE8copyFromERKS4_) +STUB( + "JfwbyKnTNGg", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEEiRNS2_10LibContextEPT_m) +STUB("JfwdK0bQgo4", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container12getPublisherEv) +STUB("JfyZg5U7wuw", getopt.place) +STUB( + "JfzDEFckSmE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEE7get_refEv) STUB("Jg-AgkdJHkk", sceAmprAprCommandBufferReadFileScatter) STUB("Jg2SEqpgHZ4", sceVnaSetAgentIntentSessionTelemetry) +STUB( + "Jg2kom6RqZ0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEC2Ev) +STUB("Jg3RmsY7dvw", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE5beginEv) +STUB( + "Jg4EksekBmc", + _ZN7WebCore13KeyboardEvent17initKeyboardEventERKN3WTF12AtomicStringEbbONS1_6RefPtrINS_11WindowProxyENS1_13DumbPtrTraitsIS6_EEEERKNS1_6StringEjbbbbb) +STUB( + "Jg4RYi8DAt0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "Jg5aRei4ucQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEEC2ERKSA_) +STUB( + "Jg5jKG0oBaM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEE3getEv) STUB("JgBgvkAFMwc", sceRnpsAppMgrGetAppInfo) +STUB("JgDV75od+Pg", uregex_end64_67) +STUB( + "JgEsEANSn+M", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEixEm) +STUB( + "JgGdN6IMDmU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE8copyFromERKS9_) +STUB( + "JgIfGKwA54c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEC1EPKS8_) +STUB("JgL-CqPZ0HI", _ZN3sce2Np9CppWebApi7Matches2V119RequestMatchResultsD2Ev) +STUB( + "JgLeJhw9Co8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEE3getEv) +STUB("JgM26LRE-H0", _ZL25_delete_with_size_nothrow) STUB("JgTz1+RkB9M", sceCesUtf16leToSbc) +STUB("JgUZTRNzZ8k", mono_aot_Sce_Vsh_MarlinDownloaderWrappermethod_addresses) +STUB("JgY3mEheiKw", __asan_version_mismatch_check_v6) +STUB("JgeniluEFDE", _ZN7bmalloc29StaticPerProcessStorageTraitsINS_12IsoTLSLayoutEE7Storage7s_mutexE) +STUB( + "JgfoIr1-h38", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEE11get_deleterEv) +STUB("Jgg+mJLsHHs", _ZNK9Inspector22InspectorDebuggerAgent8isPausedEv) +STUB("JgjsFbr4bmE", Java_com_sony_bdjstack_javax_media_controls_SoundManager_setGainDB) +STUB("JgnbTezEXsc", __sceAudioInVmicAttach) +STUB( + "Jgpb7k9fj1Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("JgtSc0g3G6E", FT_SqrtFixed) +STUB("JgxM-rT4P+A", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE3endEv) +STUB("JgzEoCQYWQY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE8copyFromERKS7_) +STUB("Jh+T2cXEtyA", _ZN7WebCore19ResourceRequestBase18setHTTPContentTypeERKN3WTF6StringE) +STUB("Jh-hXoqrIZI", + _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities5Error6toJsonERNS_4Json5ValueEb) +STUB("Jh5qUcwiSEk", _ZnamRKSt9nothrow_t) STUB("Jh6WbHhnI68", sceAudioInClose) STUB("JhBOQYY6iu0", scePlayReadyCdmiClose) +STUB("JhCa8+zk0oI", WKPreferencesSetDownloadAttributeEnabled) +STUB("JhDAGu9xmlw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE5clearEv) STUB("JhDPrErJnCw", sceFsUfsRecryptSyncMetadata) +STUB("JhDzrBVZ5Ro", + _ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_errorC2EPNS1_6Common10LibContextE) +STUB( + "JhJQCt6goB4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "JhKjP9Krde0", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser7setsortENS5_4SortE) +STUB( + "JhO9ts+d5OA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "JhU9DjE1VtA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEED2Ev) +STUB("JhVR7D4Ax6Y", _WStoul) STUB("Jha8yMoMzrg", sceLoginMgrServerSetLoginFlag) +STUB( + "JhaUJGHQLyo", + _ZN7WebCore22StorageEventDispatcher34dispatchLocalStorageEventsToFramesERNS_9PageGroupERKN3WTF6VectorINS3_6RefPtrINS_5FrameENS3_13DumbPtrTraitsIS6_EEEELm0ENS3_15CrashOnOverflowELm16EEERKNS3_6StringESG_SG_SG_RKNS_18SecurityOriginDataE) +STUB("JhanUiHOg-M", CERT_extractValidityTime) +STUB("Jhbrpz0YhHU", _ZN3sce2np10Cancelable6CancelEij) +STUB( + "Jhfx-U0iDHQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEEC1ERSA_) +STUB("JhgevnldCVU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEEppEv) +STUB("Jhj07sXaEnU", _ZN7Nicosia9AnimationC1ERKS0_) +STUB("JhoOxhsHbqU", _ZN15AbstractStorage18DailymotionContent6RemoveEv) +STUB("JhsJWxsvkZg", _ZN9Inspector32DebuggerBackendDispatcherHandlerC2ERKS0_) +STUB("JhsnkofpeOw", uprv_decContextDefault_67) +STUB( + "JhspgxS1Cgs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEmmEi) +STUB("JhuM8xmtn6E", _ZNK7WebCore9FrameTree4findERKN3WTF10AtomStringERNS_5FrameE) STUB("JhwByySf9FY", sceSystemGestureGetPrimitiveTouchEventsCount) +STUB("Ji4I5hUwDNY", _ZN3sce7Toolkit2NP2V26Trophy15TrophyPackGroupC1ERKS4_) +STUB("JiGH4RQ+WxU", _ZN15AbstractStorage13YoutubeFolder4OpenENS_8ItemTypeE) +STUB("JiGfrQ72ls8", u_strToUTF8_67) +STUB("JiIouCuvr2U", + _ZN3sce2Np9CppWebApi14ConnectAccount2V215AccountLinksApi28ParameterToDeleteAccountLinkD1Ev) +STUB( + "JiJLeU3Fo-8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEEC2ERSA_) +STUB( + "JiL3XnEoyKU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE8copyFromERKS7_) +STUB( + "JiLLG+1IJ9M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEC2EPKS8_) +STUB("JiMW3gity3o", mono_lock_free_free) +STUB("JiR2uO4r5Lg", _ZN3sce2Np9CppWebApi7Matches2V113RequestMemberC2EPNS1_6Common10LibContextE) +STUB( + "JiTENmT1WTk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE3endEv) +STUB( + "JiY4sfHkV34", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi18leavePlayerSessionEiRKNS4_29ParameterToLeavePlayerSessionERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB( + "JiYHJiyh-T4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE5beginEv) +STUB("JiaW5n2B77U", WKBundleReportException) +STUB( + "Jic+2+QsH8U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEEC1ERSA_) +STUB( + "JidkleaJhYY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("JifM4z9m0+c", _ZNK3sce2Np9CppWebApi13InGameCatalog2V55Error14getReferenceIdEv) STUB("JifncjTlXV8", sceUserServiceSetNpEnv) +STUB("Jii5J05XD0U", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEEC1Ev) +STUB("JinVXigW4Zo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEEC1Ev) +STUB( + "JioOs3m5GWg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEC1ERKS7_) +STUB("JipDCX9bCgk", _ZN7WebCore9ImageData6createERKNS_7IntSizeE) +STUB( + "Jiq54D12Cvc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("JiqSBKe7bQ8", _ZN4Manx8X509cinf8notAfterEv) +STUB("Jj-5u6OmdU8", _ZZSt9MakefacetISt7collateIcESt8_LocinfoERT_T0_E3buf) +STUB("Jj1TaoBlfik", ps8) STUB("Jj4mkpFO2gE", sceNpWordFilterSanitizeComment) +STUB("Jj8nBIecUuU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE4sizeEv) +STUB( + "JjBt2MjFhvA", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEEiRNS2_10LibContextEPT_m) STUB("JjEU9VLDyzM", sceVnaGetAgentAvailabilityInfo) STUB("JjIspXDbL6o", sceSystemServiceActivateMpeg2Term) +STUB( + "JjLw+2-XC7o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEEC1ERSA_) STUB("JjOFRVPdQWc", sceNpScoreGetGameDataAsync) +STUB("JjOoUWau3hA", WKPageSetPaginationMode) +STUB("JjPXy-HX5dY", vfscanf_s) +STUB("JjPx6bo9fbs", _ZNK7WebCore20ResourceResponseBase8isHTTP09Ev) +STUB("JjTc4SCuILE", _ZTSNSt6locale7_LocimpE) +STUB("JjTcEULVYUw", _ZN3sce7Toolkit2NP2V210Tournament7Request19GetRegisteredRosterD1Ev) +STUB("JjdYWHTvh2k", _ZTVN9Inspector26AnimationBackendDispatcherE) +STUB( + "JjglW9LJgE0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEixEm) +STUB( + "Jjn10ywtmAg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEC1EPS8_) +STUB( + "JjqMZ29xxh0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEptEv) +STUB( + "JjrjOgSEbu4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE3endEv) +STUB("Jjw+ZQth0as", _ZN7WebCore8SVGNames22overline_thicknessAttrE) +STUB("Jk+LgZzCsi8", _ZTIPa) +STUB("Jk1OHHPzXnA", _ZN3NTF3URLD2Ev) +STUB( + "Jk3exx0C0vY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEEcvbEv) +STUB("Jk9paxbMQsk", cairo_scaled_font_text_extents) +STUB( + "JkAGxJ6vnvI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEmmEi) +STUB("JkEYUFSjoXw", _ZNK7WebCore20ResourceResponseBase15httpHeaderFieldENS_14HTTPHeaderNameE) +STUB("JkJ8T-8ud6k", _FDint.mask) +STUB("JkMyy11Hd5s", _ZN7WebCore32ScrollingStateFrameScrollingNode18setTopContentInsetEf) +STUB( + "JkPzTewuyuA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEEC2Ev) +STUB("JkQGVHdk9iQ", _ZN7WebCore17HTMLSelectElement9namedItemERKN3WTF10AtomStringE) +STUB( + "JkQRTFYBGMM", + _ZN9Inspector25NetworkFrontendDispatcher28requestServedFromMemoryCacheERKN3WTF6StringES4_S4_S4_dNS1_6RefPtrINS_8Protocol7Network9InitiatorENS1_13DumbPtrTraitsIS8_EEEENS5_INS7_14CachedResourceENS9_ISC_EEEE) +STUB( + "JkXaHhYLbo8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi12downloadDataEiRKNS4_23ParameterToDownloadDataERNS1_6Common11TransactionINS8_12IntrusivePtrINS8_6BinaryEEENSA_INS4_27DownloadDataResponseHeadersEEEEE) +STUB("JkZwD6Lu-cg", _ZN3WTF7RunLoop13dispatchAfterENS_7SecondsEONS_8FunctionIFvvEEE) STUB("JkdNCocpu1M", sceAjmBatchJobGetResampleInfo) +STUB("JkkMVUZjeMk", uprv_fmin) +STUB("JkuiAhxDcv0", JVM_SetPrimitiveArrayElement) +STUB( + "JkwlTAYofO4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEEC2ERSA_) +STUB( + "Jkxq7cAiCOs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE7reserveEi) STUB("JkygqqJPGdw", sceLoginMgrServerDialogNotifyCloseFinished) +STUB("JkyvLa6k+OQ", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11TusVariableEEC2ERKS4_) STUB("Jkz3xxMeyIM", sceCameraSetCalibDataForEve) +STUB( + "JkzI9IQYnR0", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) STUB("Jl91AhxKc0w", sceVideoOutSysUpdatePrivilege) +STUB("JlAgqbJSMlc", _ZN3JSC7Symbols23fulfillFetchPrivateNameE) STUB("JlBLet3nzqw", sceVencCoreStopSequence) +STUB( + "JlDizHsyKwU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEppEi) STUB("JlFGR4v50Kw", sceHttp2CookieExport) +STUB( + "JlGv+KK-DFw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("JlJBrfJgt8E", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product14getDescriptionEv) +STUB("JlM1oFT1goY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEC1ERKS7_) +STUB("JlMrGMLBCAA", _ZNK3JSC18PropertyDescriptor20isAccessorDescriptorEv) +STUB("JlOsA5PEUbA", mono_aot_Sce_Vsh_Np_IdMapperunwind_info) +STUB( + "JlPVAyqqdLE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "JlRpNekxHts", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "JlSA817XwrU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEE11release_refEv) +STUB("JlVFd422fsQ", SSL_pending) +STUB( + "JlYcRGnIOps", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEE5resetEPS9_) +STUB( + "JlZBkncTDpI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEeqERKS9_) +STUB("JlZkCWxppd4", Java_java_lang_SecurityManager_classDepth) +STUB("JlbOHUm1ykY", _ZN7WebCore5Event9initEventERKN3WTF12AtomicStringEbb) STUB("JlbWOi1Webo", sceMusicPlayerServiceSetUsbStorageDeviceInfo) +STUB("JlbgPGsx3oU", WKBundlePageGetPageGroup) +STUB( + "Jld8stkXP1s", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE3endEv) +STUB( + "Jlkdu--4aTg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE5beginEv) +STUB("Jlof7tx9zAA", rgctx_fetch_trampoline_mrgctx_18) STUB("JlpJVoRWv7U", sceSigninDialogOpen) STUB("Jlv-lYxEnvM", sceShareUtilityInitialize) +STUB("Jlvj+WV78Wc", _ZN12video_parser5vpcom11_setOpenArgEPcS1_PN3paf9LocalFile7OpenArgEb) STUB("JlybWYbzKcY", sceKernelSetPackageInfo) +STUB( + "JlyhoCTrsaQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE6insertENS2_8IteratorIS9_EERKS9_RSC_) +STUB("Jm2Ds7w9DYk", _ZSt10_Wios_init) +STUB("Jm6OTatJ9GE", _ZN3sce7Toolkit2NP2V27Session7Request7GetDataC2Ev) +STUB("JmCBbsCE55Y", JNU_NewObjectByName) +STUB("JmCJwcGvR-k", _ZN3WTF11CStringHash5equalERKNS_7CStringES3_) +STUB( + "JmHqinAglbQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE5emptyEv) +STUB("JmOEMbPsk8A", _ZN7bmalloc11IsoTLSEntryD1Ev) +STUB("JmOLVFL6pEY", png_set_filler) +STUB( + "JmRER2BvMqU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEEC2Ev) +STUB( + "JmS+qID7xUg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEC1EPS6_PNS2_10LibContextE) +STUB("JmVNtNXaZh8", KillMusicCore) +STUB( + "JmWBcACKInY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "JmbsQy6WoqY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEaSERKS7_) +STUB("JmgmezqTXic", _ZNK9Inspector15RemoteInspector6clientEv) STUB("JmgwKm96Lq4", sceNpUniversalDataSystemEventPropertyArraySetFloat32) STUB("Jmi+9w9u0E4", pthread_create_name_np) STUB("Jmky7t3yAoo", sceDataTransferTargetRequestComplete) +STUB("Jml9GzgqqLA", delegate_virtual_invoke_imt_31) +STUB("JmoRo2O-vcs", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking8TempRankEE5resetEv) +STUB( + "JmymnyFNl1c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEC1Ev) +STUB( + "Jmz9LOnPfOE", + _ZN3sce7Toolkit2NP2V28Commerce25displayDownloadListDialogERKNS3_7Request25DisplayDownloadListDialogEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("Jn066JNHRQc", _ZN3sce3Xml3Sax6Parser10initializeEPKNS0_11InitializerE) +STUB("Jn3pDwHhNS0", _ZN3WTF18ParallelHelperPool13doSomeHelpingEv) +STUB( + "Jn4PaFyN-uE", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData22setxPsnAtomicOperationENS5_19XPsnAtomicOperationE) +STUB("Jn8MJzor82c", _ZN3sce7Toolkit2NP2V28Presence8PresenceaSERKS4_) +STUB( + "Jn984RKVUKY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEE7add_refEv) +STUB( + "JnA-IAvOg5E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEC2EPS8_) +STUB( + "JnB-+2BFEFE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEED1Ev) +STUB("JnDD5Njm09A", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEixEm) +STUB("JnEcJpY-AXM", _ZN4IPMI4impl10ServerImpl19doDisconnectRequestEiPvi) +STUB("JnLfuhrixi4", _ZN3WTF12AtomicString6numberEj) +STUB("JnNl8Xr-z4Y", sigismember) +STUB( + "JnP-NCINmyY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEEC1Ev) +STUB( + "JncmE+dRZAA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("Jndc5lgmPqw", _ZN3sce7Toolkit2NP16EventListRequestC2Ev) +STUB( + "JngkNz1TJ58", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionProperties42setpatchPlayerSessionsSessionIdRequestBodyENS1_6Common12IntrusivePtrINS3_39PatchPlayerSessionsSessionIdRequestBodyEEE) +STUB("JnhpgrdCugM", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi24ParameterToReportResultsD1Ev) +STUB("Jnm7yYsPwGA", _ZN7WebCore15RenderBlockFlow30findClosestTextAtAbsolutePointERKNS_10FloatPointE) +STUB( + "JnqMX0egxus", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("JnqO00pLkbQ", generic_trampoline_generic_virtual_remoting_p) +STUB( + "Jnqb71Uoans", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEE6assignEPS5_PFvS7_EPNS2_10LibContextE) +STUB("Jnqfishr8KY", Java_java_net_NetworkInterface_getByIndex) +STUB("JnzWSfYU-xg", uloc_getAvailable) +STUB("Jo-YNJY8rho", _ZN3JSC8JSCallee6s_infoE) +STUB( + "Jo1IESgmPYw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEE11get_deleterEv) +STUB("Jo3nZh3qW-E", _ZN7WebCore11DisplayList11ClearShadowC1Ev) +STUB("Jo9ON-AX9eU", _Fltrounds) +STUB( + "JoA901ehV5s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE5clearEv) STUB("JoBqSQt1yyA", sceSystemServiceLoadExec) +STUB( + "JoCSP4SVJ9k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEEC2Ev) +STUB("JoKQ635lg0A", rgctx_fetch_trampoline_rgctx_68) +STUB("JoNOmklCUf8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEdeEv) +STUB( + "JoO-Cw5Ty8c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEEC2Ev) STUB("JoPdCUXOzMU", sceImeDicGetWords) +STUB("JoRlA+wVslA", _ZN3NTF22URLRequestJobSchedulerC2Ev) +STUB( + "JoT+4yJJdcU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEptEv) +STUB( + "JoTy3DqG2HQ", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetrics8fromJsonERKNS_4Json5ValueE) +STUB("JoWQsIsLfwk", _ZN7WebCore11WindowProxy22releaseJSWindowProxiesEv) +STUB("JoeZJ15k5vU", _Tls_setup__Ctype) +STUB( + "Joju2UtVavQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEptEv) +STUB( + "Jos1DzJ1oF0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEptEv) +STUB("Jp6dZm7545A", _Skip) STUB("Jp76d0USJeM", sceKernelIsMainOnStanbyMode) +STUB("Jp97ZukVBPY", mono_btls_ssl_ctx_set_cert_verify_callback) +STUB( + "JpA4yFIPBcw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEEC1ERSA_) STUB("JpAP8BoYAmQ", sceCesUtf32StrToIso2022Str) STUB("JpAYkddCFjk", sceVideoOutColorSpaceConversionSettingsSetDefaultSdrToHdrConversion_) +STUB( + "JpBTdJNp6KM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEixEm) +STUB("JpFWqr5DIGE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEED2Ev) +STUB( + "JpKTjMp0ueU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEEaSERS9_) +STUB("JpLvQJmZ33Y", _ZN7WebCore16HTMLMediaElement14beginScrubbingEv) +STUB( + "JpNKQKbu1Q4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "JpNonrEoHEI", + _ZN3JSC4Yarr17RegularExpressionC2ERKN3WTF6StringENS0_19TextCaseSensitivityENS0_13MultilineModeENS0_11UnicodeModeE) +STUB("JpQQKNklSMw", _ZN7WebCore9Scrollbar8setStepsEiii) +STUB("JpZIa6EMAI8", _ZN3sce7Toolkit2NP15AppSTLAllocatorI13SceNpOnlineIdE7destroyEPS3_) +STUB( + "JpfRN5CXJ3U", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEptEv) +STUB( + "JphJfi9FtBY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE3endEv) STUB("JphQB95YwSo", sceAvControlIsAudioOutModeSupportedByMonitorInfo) +STUB("Jpj0ZnlR2Lw", mono_aot_Mono_Data_Tdsplt_end) +STUB("JpjardW2c8k", mono_image_ensure_section) +STUB("JpnKObUJsxQ", CERT_getCertificateIssuerSerialNumber2) +STUB("JpnivExWLXQ", _ZN3sce7Toolkit2NP2V211SharedMedia5Video16MAX_LEN_VIDEO_IDE) +STUB("Jpp5GoU1BeY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEED2Ev) +STUB( + "JpqPd0ksyxw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEptEv) +STUB("JprBdHuxaV4", _ZNSt9basic_iosIcSt11char_traitsIcEE8setstateENSt5_IosbIiE8_IostateEb) +STUB( + "Jq0nhTHgKR0", + _ZN3sce2Np9CppWebApi7Matches2V119ResponseTeamResults20setTeamMemberResultsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_24ResponseTeamMemberResultEEEEE) +STUB("Jq1tGNzdcCQ", Java_com_sony_bdjstack_core_CoreApp_threadBody) +STUB("Jq2uO7lzgjU", mono_aot_Sce_Vsh_RequestShareScreenjit_got) +STUB( + "Jq73rGkQ7qQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE17getResponseHeaderERSB_) +STUB( + "Jq7OFaxBRYQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEptEv) +STUB("JqHK9nVyTnU", ures_getUInt_67) +STUB("JqJJUFiTth4", Java_com_sony_gemstack_org_dvb_application_AppProxyImpl_n_1hasBeenStarted) +STUB("JqN5MQOaJVs", _ZN3WTF15BinarySemaphore9waitUntilERKNS_24TimeWithDynamicClockTypeE) +STUB( + "JqUW-Qm450o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEE7get_refEv) +STUB("JqYcaf0shsQ", _ZN3WTF8JSONImpl5Value6createEi) +STUB("JqabV9EtTkc", uenum_next_67) +STUB( + "JqapxDJFxhE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEED1Ev) +STUB( + "Jqe3WENf3mc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEEC1ERKSA_) +STUB("JqeGWVkKzPY", _ZNK7WebCore21ISOTrackEncryptionBox17defaultConstantIVEv) +STUB( + "JqfhE8Uee2Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEC2ERKS7_) +STUB("JqqHwIrj160", _ZN7WebCore13MIMETypeCache21canDecodeExtendedTypeERKNS_11ContentTypeE) +STUB("Jqr7HtQVG60", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEaSERKS7_) STUB("Jqu2XFr5UvA", sceUserServiceSetUserName) +STUB("JqyHYNlyKa8", _ZNK3sce7Toolkit2NP15CommunicationId7getPassEv) +STUB( + "Jr1fDYu-iGk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("Jr2Rp4aoXIU", _ZN3sce7Toolkit2NP2V23TUS19FriendsDataStatusesC1ERKS4_) +STUB( + "Jr3c0p8h9SU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("Jr8SilBIzTk", _ZN7WebCore14SQLiteDatabase14clearAllTablesEv) +STUB( + "JrDx2rBhoXA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats18setNatConnectivityERKNS1_6Common12IntrusivePtrINS3_15NatConnectivityEEE) +STUB( + "JrE8yAqmOqs", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions31setxPSNSESSIONMANAGERSESSIONIDSEPKc) STUB("JrFGcFUL0lg", sceUserServiceGetPbtcPlayTime) STUB("JrGlxeyhY4A", sceFsSmrTrimAll) +STUB("JrLLYW3cpqM", _ZNSt15basic_streambufIwSt11char_traitsIwEE9pbackfailEi) +STUB("JrUnjJ-PCTg", _ZTIv) +STUB( + "JrVaQWvoJpw", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_4Heap17GarbageCollection4TypeEEEN3WTF8OptionalIT_EERKNS6_6StringE) +STUB("JrWihxj7ZLs", u_versionFromUString_67) STUB("JrXA7baBMPQ", sceNpAsmAbort) +STUB( + "JrXJAav8fHM", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_20NpSessionInformationENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB("JrXXEoaH83c", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEdeEv) STUB("Jraxifmoet4", sceNpMatching2GetRoomDataInternal) +STUB( + "JriWrLYpnEw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE4sizeEv) +STUB("JrlR1gNboYQ", _ZN7WebCore12JSTimeRanges15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("JrrEeOSs7kk", + _ZN3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayer11setPlatformEPKc) STUB("JrtiDtKeS38", sceAgcAcbResetQueue) +STUB( + "JruBeQgsAaU", + _ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_bRSt8ios_basewRKSbIwS2_SaIwEE) +STUB( + "JrvSBhJnGTY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE5beginEv) +STUB("JrwFIMzKNr0", ldexp) +STUB("JrzMGQjfH20", _ZSt9use_facetISt5ctypeIwEERKT_RKSt6locale) +STUB( + "Js2v8QTLAcE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEC2Ev) +STUB( + "Js37kvLgUMg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("Js9fIl0cEC4", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_12PresenceInfoEED1Ev) +STUB("JsCJTp+PHMc", WKPreferencesGetModernMediaControlsEnabled) +STUB( + "JsLRFba9k1Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEppEi) +STUB( + "JsMcvQqZXNI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEEC2Ev) +STUB( + "JsOn464ko5Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEED1Ev) +STUB( + "JsPl-SFuqUI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEptEv) +STUB("JsQ4rg2-hOU", _ZN3WTF6String6appendEPKwj) STUB("JsRnDKRzvRw", sceNpTrophySystemSetDbgParamInt) +STUB("JsZjB3TnZ8A", _ZNKSt5ctypeIwE10do_toupperEw) +STUB( + "Jsby8L8c5TA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("JsiXZ27Fmcg", _ZN9Inspector26TimelineFrontendDispatchernaEm) +STUB("Jsj7i9+XGsU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEC2ERS7_) +STUB("JskzZ0yWeN8", _ZN4Manx13WorkQueueImpl5TimerC1EPNS_9WorkQueue8FunctionE) +STUB( + "JsleYqnkl6w", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB("JswcCuuTNyw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEC2Ev) +STUB( + "Jt+UXHZGCWQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEC2EPKS8_) +STUB("Jt28Sh8djf8", _ZN3JSC2VM22booleanObjectSpaceSlowEv) STUB("Jt7LPd8LVCU", scePerfTraceAmmDeleteBufferNotifyEvent) +STUB("Jt9OcmtbaSs", mono_aot_Sce_Vsh_ErrorDialogUtilWrapperunbox_trampoline_addresses) +STUB("Jt9bJVyqe7A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEC1Ev) STUB("JtBV3RSzmlo", sceAppInstUtilGetSubAppTitleId) STUB("JtD7ZG45rdw", sceCamera2GetAttribute) +STUB("JtOOo+iyBC4", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTicketsC1ERS5_) +STUB( + "JtW7Mp0oJN4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEEC1ERKSA_) +STUB( + "JtYDTT19hKE", + _ZN7WebCore23CoordinatedImageBackingC1ERNS0_6ClientEON3WTF3RefINS_5ImageENS3_13DumbPtrTraitsIS5_EEEE) +STUB( + "JtZWhWabdiM", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_28ActivityFeedSharedVideoStoryENS1_15AppSTLAllocatorIS5_EEEEC1Ev) +STUB( + "Jtdzenp9eHA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("JtiEJNQyI2o", _malloc_stats_fast) +STUB("JtmhCCzc+pM", _ZN3sce2Np9CppWebApi6Common6VectorIiE6insertENS2_8IteratorIiEERKiRS6_) +STUB("JtnoO4SwlxE", mono_btls_x509_chain_free) +STUB("JtobTVTP1BQ", _ZN3JSC7Symbols17hasInstanceSymbolE) +STUB( + "JtrdYJzR2Fo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("JtzDopmdBDo", + _ZN7bmalloc29StaticPerProcessStorageTraitsINS_12IsoTLSLayoutEE7Storage8s_objectE) +STUB("Ju8B+TAM+Bs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEE3getEv) +STUB("Ju9BYOp1zIU", WKDatabaseManagerGetOriginUsageKey) +STUB("JuA51bPRpmc", WKGeolocationPositionGetTypeID) +STUB( + "JuAx6hHGGYM", + _ZN9Inspector14InjectedScript15functionDetailsERN3WTF6StringEN3JSC7JSValueERNS1_6RefPtrINS_8Protocol8Debugger15FunctionDetailsENS1_13DumbPtrTraitsIS9_EEEE) +STUB( + "JuFTw8uG-tc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEptEv) +STUB( + "JuMFNbuThSs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEC1Ev) STUB("JuMLLmmvRgk", sceScreenShotCapture) +STUB("JuNaZ6QAPtY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEEmmEv) +STUB("JuRURKO3-F8", _ZNK7WebCore9RenderBox22verticalScrollbarWidthEv) +STUB( + "JuSWr+tEMv4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEE11get_deleterEv) +STUB("Jub+F7uGS58", WKPageIsContentEditable) +STUB( + "JugRGAWCqR0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEEdeEv) +STUB( + "JuhEFLTT9Lw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE5clearEv) +STUB( + "JuhregJdYZQ", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21deleteMultiDataBySlotEiRKNS4_32ParameterToDeleteMultiDataBySlotERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB( + "Juo0M2Re7iY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEC2EPKS8_) +STUB( + "Jupg4B-jWm0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEEC1Ev) +STUB( + "JurfTkvYIUE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEC1EPNS2_10LibContextE) +STUB("JuzrPZClLew", FTA_Support_Format_Cid) +STUB( + "Jv-0OrW1Cmk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEC2EPKS8_) +STUB("Jv1BF8DLSYY", WKPreferencesGetDOMPasteAllowed) +STUB( + "Jv3BJPpMHvA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE8copyFromERKS9_) +STUB( + "Jv3x0pAEdgY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEaSERKS9_) +STUB("Jv4JETvYzWg", _ZN3sce2Np9CppWebApi6Common6VectorImE3endEv) STUB("Jv9NQNlhK+k", sceDebugGetFileListForCoredump) +STUB( + "JvB5qu5+spY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEEcvbEv) +STUB( + "JvBKDQMyQ1U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE3endEv) +STUB("JvHRljE2ejQ", mono_aot_System_Resources_ResourceManagerplt) +STUB("JvM0ZRiMNxk", _ZN3JSC14throwTypeErrorEPNS_9ExecStateERNS_10ThrowScopeE) +STUB("JvOPWYEC8Ac", _ZNK7WebCore21WheelEventDeltaFilter17isFilteringDeltasEv) +STUB("JvQlBVLkDuU", + _ZN3JSC9StructureC1ERNS_2VMEPNS_14JSGlobalObjectENS_7JSValueERKNS_8TypeInfoEPKNS_9ClassInfoEhj) STUB("JvSjnwiki2A", sceNpTrophySystemCheckCallback) +STUB("JvTTJlj3YmE", WKWebsiteDataStoreConfigurationGetTestingSessionEnabled) STUB("JvThkOI0jjE", sceWorkspaceGetNumberOfPendingUpdates) +STUB( + "JvUl9m11CSs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEE11release_refEv) +STUB("JvbtVrbuh8k", _ZNK3WTF8JSONImpl5Value9asIntegerERy) +STUB( + "JvdsEa+3jE8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("JvhIRLSB1PU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEED2Ev) +STUB( + "Jvt60syxwCo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEeqERKS9_) +STUB("JvtcOL4IT5Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEppEv) +STUB("JvvQKXNn0HQ", sqlite3_bind_blob) +STUB("JvyLbYhVigM", + _ZN15AbstractStorage14StorageManager16RegisterListenerEPNS_20StorageEventListenerE) +STUB("Jw4wWEULUaI", _ZN3sce7Toolkit2NP2V23TUS12TusVariablesC1ERKS4_) +STUB( + "Jw6lq4w0Ibw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("Jw7xkoYct4o", uprv_floor_67) +STUB("Jw82p29mYBk", _ZN9Inspector21InspectorConsoleAgent13discardValuesEv) +STUB( + "JwBjB9Qs5iM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE21intrusive_ptr_add_refEPS9_) +STUB("JwGa8TaETwI", u_strncat) +STUB("JwHklMwLFgE", _ZN3sce7Toolkit2NP2V210Tournament10TournamentaSERKS4_) +STUB("JwPU+6+T20M", _ZNSt15_Num_float_base9is_iec559E) +STUB("JwQxC4dA5DY", cairo_has_current_point) +STUB("JwW3qkLaUTE", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V110AvatarSizeEEC2EPS6_) +STUB("JwYu-YMRkg0", _ZN12video_parser5vpcom8datetime8DateTimeD1Ev) +STUB("JwZ32l8Yxx0", InitializeMediaModule) +STUB( + "JwZhOPsyxnE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEptEv) +STUB("JwZi+9xgYGY", _ZN3sce7Toolkit2NP2V210Tournament18OneVsOneTournamentD2Ev) +STUB("JwZz92RUG7M", + _ZN3sce2Np9CppWebApi14SessionManager2V111GameSessionC2EPNS1_6Common10LibContextE) +STUB("JwbdpbQiQbQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEEaSERS7_) STUB("JwbpaAM4dfs", scePssMousePushState) +STUB("JwcpbMVdWw0", _ZN3sce7Toolkit2NP2V212NetworkUtils12Notification14NetStateChangeC1ERKS5_) +STUB( + "JwfmKQFdhfM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEppEv) +STUB( + "JwgQOBuXj8U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEED2Ev) +STUB( + "JwjyvQZK74c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEppEi) +STUB("JwpT2LYSxrg", _ZNK3sce2np4User7IsGuestEv) +STUB("JwrKmyxIJjk", _ZNK3WTF24TimeWithDynamicClockType13monotonicTimeEv) +STUB( + "Jwui-YX1Y5A", + _ZN3sce7Toolkit2NP7Ranking9Interface17displayFriendRankEPKNS1_17FriendRankRequestEPNS1_9Utilities6FutureINS1_22FriendsRankInformationEEEb) +STUB("JwxExGhg0m8", _ZN12Mp4Retriever8seekFileElb) +STUB( + "JwxUhvnthCo", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setBoolean8ERKb) STUB("Jwyzasrp8kg", sceFsDevpfsRegisterEvent) +STUB("Jx+jaw-BVuE", WKErrorGetErrorCode) +STUB( + "Jx2Z2mW5gd8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("JxBUdz+ybQA", _ZN7WebCore11MathMLNames10mscarryTagE) +STUB("JxDRSAHrVNs", _ZN3sce7Toolkit2NP2V211SocialMedia7Request7PhotoFbD1Ev) +STUB("JxERMLADGmo", _ZN3JSC8DebuggerC2ERKS0_) STUB("JxJ4tfgKlXA", sceKernelDeleteReadEvent) +STUB( + "JxLauiVBua4", + _ZN3sce2Np9CppWebApi11UserProfile2V125GetBasicPresencesResponse17setBasicPresencesERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_13BasicPresenceEEEEE) STUB("JxM80qv+BxU", sceDiscIdGet2) +STUB( + "JxUJZ1ErQCo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE7reserveEi) +STUB( + "Jxct84SbIMg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE8pushBackERKS8_) +STUB("Jxd89tRoBno", mono_aot_Sce_Vsh_UsbStorageScenejit_got) +STUB("JxdBJc8FXYI", unorm_getFCD16_67) +STUB( + "Jxg2detL4sE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "JxgPJdDkLwk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEppEv) +STUB( + "JxjP+4zxtAw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEdeEv) +STUB("JxkGFAxlPa8", _ZN3WTF15AtomStringTableD2Ev) +STUB( + "JxuaYuQJWeE", + _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody25localizedSessionNameIsSetEv) +STUB("JxzDXFEr-jg", _ZN9Inspector21InspectorConsoleAgentdlEPv) STUB("Jy1EO5GdlcM", sceNetCtlGetInfoV6) +STUB("Jy3OrZPA8XQ", _ZN3NTF15ThreadConditionD2Ev) +STUB( + "Jy4s81YaSOk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEixEm) +STUB("JyAoulEqA1c", _ZNSt12bad_weak_ptrD0Ev) +STUB( + "JyAxROrMgB8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEEC2EPS6_PNS2_10LibContextE) +STUB( + "JyCF7kWbJ9M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEC1EPNS2_10LibContextE) +STUB( + "JyFiQoo5a80", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEC1ERS7_) STUB("JyFq+FZ6ujw", sceMatAgcUnregisterOwnerAndResources) +STUB("JyOeyYkXTxg", _ZN7WebCore21convertToIntegerClampIjEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB("JyUeLMxEryE", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13WhoLikedStoryEE9constructEPS3_RKS3_) +STUB( + "JyWRZU72z-4", + _ZNK3sce2Np9CppWebApi14SessionManager2V134PostGameSessionsSearchResponseBody17gameSessionsIsSetEv) +STUB( + "JyYPAj43J9k", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB( + "JygLkSXhBnI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEEC1ERSA_) +STUB("Jyi9nG7tKAQ", _ZN3JSC7Symbols37asyncGeneratorQueueIsEmptyPrivateNameE) +STUB( + "JyloE4AVG3k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE8pushBackERKS8_) +STUB("JytUablqmBY", utf8_appendCharSafeBody_67) +STUB("Jyy0zT-00O8", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10ContainersEE19setCustomReturnCodeEi) +STUB( + "Jz0zRb2RIEw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("Jz3VZZCP7pM", _ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequest11unsetZoneIdEv) +STUB("Jz88OLceWZg", g_direct_equal) +STUB("JzBDUIC5xok", + _ZN15AbstractStorage13YoutubeFolderC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) STUB("JzCH3SCFnAU", sceFontOpenFontInstance) +STUB("JzGiDlmIxsI", _ZN7WebCore17LibWebRTCProvider29setH264HardwareEncoderAllowedEb) +STUB("JzIm9UFNzQQ", rgctx_fetch_trampoline_rgctx_52_p) STUB("JzJdh-JLtu0", sceNpTrophySystemAbortHandle) +STUB("JzKvn3GnFrc", _ZTVN12video_parser13cVideoPathMgvE) +STUB( + "JzLxHxosAio", + _ZN9Inspector14ConsoleMessageC1EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelEON3WTF6VectorINS5_12JSONLogValueELm0ENS5_15CrashOnOverflowELm16ENS5_10FastMallocEEEPNS1_14JSGlobalObjectEm) +STUB("JzMmiPuMgjM", _ZN3sce2Np9CppWebApi11Matchmaking2V113ErrorResponse8fromJsonERKNS_4Json5ValueE) +STUB("JzPZnLpzjPQ", _ZN7WebCore9HTMLNames10nolayerTagE) +STUB( + "JzSipD3oIOk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEC2ERS7_) +STUB("JzUQfQtIoQw", ures_copyResb_67) +STUB( + "JzY7YZPa-No", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEeqERKS9_) +STUB("JzZv9J6nNIk", _ZN3sce7Toolkit2NP2V24Core7Request16TerminateServiceD2Ev) +STUB("JzcllBpj1TA", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead16unsetSessionNameEv) +STUB( + "JzgTbyHd2Tk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE5beginEv) STUB("JzhYTP2fG18", sceNpWebApiAbortRequest) +STUB("Jzj9ZTh5m1I", _ZNK15AbstractStorage14TwitterContent7GetStatEPNS_4StatE) +STUB( + "JznrIP2Yf1I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEE7add_refEv) +STUB("JzqS+6C+2F4", _ZN3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsersC1Ev) +STUB( + "JzrsxjPAGHI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("JzyGiIF42zY", mono_aot_Sce_Vsh_VrEnvironmentunbox_trampolines) STUB("JzyT91ucGDc", sceFiberRename) +STUB("K+-VjJdCYVc", _ZGVNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE) +STUB("K+2TibxjzIM", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEEplEm) +STUB( + "K+3276vs5Sg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE5beginEv) +STUB( + "K+8TpYzaEHs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEneERKS9_) +STUB( + "K+962v+GiWc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "K+AkNLmYoRo", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitationsC1Ev) STUB("K+KtxhPsMZ4", sceNpMatching2SendLobbyChatMessage) +STUB("K+R0bQvP+yE", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainerC2ERS5_) +STUB("K+Rag0htwTU", mono_aot_System_Threading_Tasksmethod_addresses) +STUB( + "K+SaAMqLy90", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEE11get_deleterEv) STUB("K+WAuNzvn3g", sceLoginMgrServerGetLogoutInfo) +STUB( + "K+X3h84HYzc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEC1EPS8_) +STUB("K+XKFHF4O0w", _ZNK7WebCore16TrackPrivateBase8languageEv) +STUB("K+Zobl1IlaQ", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15ErrorC2EPNS1_6Common10LibContextE) +STUB("K+atHmf4wiE", __asan_get_alloc_stack) +STUB("K+gcnFFJKVc", strcat_s) +STUB("K+k1HlhjyuA", __atomic_fetch_sub_8) +STUB("K+opAUiTBl8", utext_clone_67) +STUB("K+pduqb8xWI", _ZN7WebCore8SVGNames10feFuncGTagE) +STUB("K+qFnV4GuaI", _ZN3sce7Toolkit2NP2V212EventsClient6EventsC2ERKS4_) STUB("K+rocojkr-I", sceJpegEncCreate) +STUB("K+v+cnmGoH4", wcsnlen_s) +STUB("K+w0ofCSsAY", _ZTSN10__cxxabiv129__pointer_to_member_type_infoE) +STUB("K+yeXWdjPa8", + _ZNK3sce2Np9CppWebApi15Personalization2V121GetAccessCodeResponse12getExpiresAtEv) +STUB("K-1Q9aFLzz8", _ZN7WebCore11RenderStyleD1Ev) +STUB("K-2wOp7OEL8", WKFramePolicyListenerUse) +STUB("K-41pszCv-w", uscript_getScriptExtensions) +STUB("K-4deNCqAZ0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEEC2EPS4_PFvS6_EPNS2_10LibContextE) +STUB("K-5mtupQZ4g", _ZNSt6locale5emptyEv) +STUB( + "K-8zIXFFdBQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEC2EPKS8_) +STUB("K-Elw9+fI68", _ZN3sce7Toolkit2NP2V23TUS7Request10DeleteData14MAX_DATA_SLOTSE) STUB("K-QFvDXYSbg", sceShellCoreUtilPreNotifyOfRemotePlay) +STUB("K-RNUIY3KM8", + _ZN3sce7Toolkit2NP2V28Commerce7Request29DisplayVoucherCodeInputDialog16VOUCHER_CODE_LENE) +STUB("K-SASOayHdY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEC1ERS7_) +STUB( + "K-TZ3EOftOg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEED2Ev) +STUB("K-UfI+QGiEU", _ZNK3WTF13MonotonicTime4dumpERNS_11PrintStreamE) +STUB( + "K-V1YXY262w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEppEi) +STUB( + "K-c74GmbbKs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEppEv) +STUB( + "K-cN-K6-820", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEE6assignEPS5_PFvS7_EPNS2_10LibContextE) +STUB("K-g87UhrYQ8", CERT_STORE_findIdentityByTypeNext) +STUB( + "K-gQgNQQ2ls", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEC1Ev) +STUB("K-hhscQm6wI", _ZN7WebCorelsERN3WTF10TextStreamENS_26GraphicsLayerPaintingPhaseE) STUB("K-jXhbt2gn4", pthread_mutex_trylock) +STUB( + "K-obUOpftec", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "K-pfc6yIJUg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEE11get_deleterEv) +STUB("K-y1p7Z9THQ", hb_buffer_destroy) STUB("K00pOnB6Fwc", sceBdSchedSetPrioritizedBackgroundCopyRequest) +STUB( + "K01ppwbznBA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEE5resetEPS9_) +STUB("K034lTxFZHc", _ZN3sce7Toolkit2NP2V27Session12Notification18InvitationReceivedD2Ev) +STUB( + "K0AM3CiY4ns", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEE5resetEPS9_) +STUB( + "K0E2qCBgDBY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEEdeEv) +STUB( + "K0Eqp+Pba6w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEmmEv) +STUB("K0FefM+JdkQ", fuse_new_common) +STUB( + "K0GoCJZo0k8", + _ZN3sce2Np9CppWebApi14SessionManager2V122SearchConditionFactory6createEPNS1_6Common10LibContextENS3_15SearchAttributeENS3_14SearchOperatorEPNS5_12IntrusivePtrINS3_15SearchConditionEEE) +STUB( + "K0KOGhX9XZU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEE3getEv) STUB("K0QxEbD7q+c", sceGameLiveStreamingPermitLiveStreaming) +STUB( + "K0WTDA3u77w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEC1EPKS9_) STUB("K0ZTCJ-wFrM", sceKernelIsDebuggerAttached) +STUB( + "K0cgQ0875D0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB("K0eYGhWDa-I", _ZStL9_Fac_head) +STUB("K0gxiS+SBho", + _ZN3sce7Toolkit2NP2V24Core22getServiceTypeAsStringENS3_11ServiceTypeERNS3_15StringifyResultE) +STUB( + "K0jtZfw1cOs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEE7add_refEv) +STUB( + "K0knta-WVjs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEdeEv) +STUB("K0sTKrYVnmk", _ZN7WebCore18PerformanceLogging22javaScriptObjectCountsEv) +STUB("K0t2UtEWMRQ", _ZN3sce7Toolkit2NP9Utilities6FutureI7SceNpIdED2Ev) +STUB( + "K0uAfDwRqMk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE7reserveEi) +STUB( + "K0utvoujMOU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEED1Ev) +STUB("K1+uzxxReX0", _ZN3sce2np13NpTitleSecretC2Ev) +STUB( + "K1+vfk2Fbmk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEneERKS9_) +STUB("K1-NvM0A0vs", _ZN3JSC2VM15canUseAssemblerEv) +STUB("K119oeArHPQ", ustr_hashCharsN_67) +STUB( + "K11WrbAoWrc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB( + "K11fuBZbb+8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE3endEv) STUB("K15VxhSJOfc", sceAgcDriverIsSuspendPointInFlight) STUB("K1A7IJp5xYc", sceKeyboardSetProcessPrivilege) +STUB("K1BfPBkl3Nw", YGNodeGetMeasureFunc) +STUB("K1GtcVRa8sk", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEEC1Ev) +STUB("K1HFWu7lqOQ", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData10getboardIdEv) +STUB("K1J9tCP66lw", _ZN3sce7Toolkit2NP15AppSTLAllocatorIiED1Ev) +STUB("K1Kr51Zjz2Y", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEEC1ERS6_) +STUB("K1S8oc61xiM", htonl) +STUB("K1Tsm0zm5YI", _ZN3sce7Toolkit2NP2V210Tournament25OneVsOneTournamentDetailsC1ERKS4_) +STUB( + "K1UVQYkPUz4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEEC2ERKSA_) +STUB("K1c9NM1WP8Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEC1Ev) STUB("K1d1LqZRQHQ", sceHttpSetResolveRetry) +STUB("K1hATO-k4d4", mono_btls_x509_verify_param_free) STUB("K1pNyl3xEzo", sceCesUtf8StrGetIso2022Len) +STUB("K1tBLr3fZIc", unumsys_openByName_59) +STUB( + "K1wnfkwGhyk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEaSERKS9_) +STUB("K20LexXxtoI", pg_size) +STUB("K26-A5vG090", _ZNK9Inspector15ScriptCallStack4sizeEv) +STUB("K26BxR4rquU", _ZN3sce2np18HttpConnectionPool13GetConnectionEPNS0_12HttpTemplateEPKcPi) +STUB( + "K27WoCfHp6k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "K28GmR+XFds", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead22setDisableSystemUiMenuERKNS1_6Common6VectorINS5_6StringEEE) +STUB( + "K2Au2-6Agmw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEED2Ev) +STUB("K2C3Nc9TW5c", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead23supportedPlatformsIsSetEv) +STUB( + "K2CXrZAc7h8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEC1EPS8_) +STUB("K2LGYZzodHY", _ZN7WebCore9HTMLNames15cellspacingAttrE) +STUB("K2SunP1fd3I", _ZN7WebCore9HTMLNames9frameAttrE) STUB("K2XscH2j2Hk", sceRegMgrBackupNeedMemForPS4) +STUB( + "K2ZHpuammpw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEaSERKS9_) +STUB( + "K2aFtp7w34I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEED1Ev) STUB("K2mciNVxUCE", sceAgcSetNop) +STUB("K2pwXRnawg0", _ZN3sce2Np9CppWebApi14SessionManager2V16Friend14unsetAccountIdEv) +STUB( + "K2tDZsWpnX4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE8pushBackERKS8_) +STUB("K2tjVlnBAV4", _ZN3WTF7Unicode18UTF8SequenceLengthEc) +STUB( + "K2yfaQp5r4M", + _ZN3sce2Np9CppWebApi13InGameCatalog2V59Publisher7setIconERKNS1_6Common12IntrusivePtrINS3_5ImageEEE) +STUB("K3+Q9AAxDx0", monoeg_try_malloc) STUB("K3+kZCE6lOo", sceApplicationIsCrashReportBeingProcessed) +STUB("K31plXSLNu0", mono_aot_Sce_Vsh_Stickerunwind_info) STUB("K33+EwitWlo", sceShellCoreUtilSetGameLiveStreamingStatus) +STUB( + "K39+emWX5UY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEEC1Ev) STUB("K3BKBBYKUSE", sceGnmSetResourceUserData) +STUB("K3HAYA0cG6w", _ZN7WebCore20ResourceHandleClientD2Ev) +STUB( + "K3IMuWAqzlE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "K3K2-7mb89E", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("K3KZDoRWz90", AnnotateRWLockAcquired) +STUB("K3Mw-yCYcck", mono_aot_Sce_Vsh_AppContentUtilWrapperunbox_trampolines_end) +STUB("K3T9QYDxAaQ", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V110Reputation17perFranchiseIsSetEv) +STUB( + "K3WO+2K00cI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEptEv) +STUB( + "K3YelMwjfxM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEaSERKSA_) +STUB( + "K3dYYv4B434", + _ZN7WebCore27PlatformMediaSessionManager17removeRestrictionENS_20PlatformMediaSession9MediaTypeEj) +STUB("K3efgJ7YQ7M", + _ZN7WebCore20LegacySchemeRegistry36registerAsCanDisplayOnlyIfCanRequestERKN3WTF6StringE) +STUB( + "K3heDxof-Wc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEE11release_refEv) +STUB("K3j9h74ECZ0", _ZNK3sce2Np9CppWebApi15Personalization2V15Error16referenceIdIsSetEv) +STUB( + "K3jkvDXyOHc", + _ZN3sce7Toolkit2NP2V26Trophy19getTrophyPackTrophyERKNS3_7Request19GetTrophyPackTrophyEPNS2_4Core8ResponseINS3_16TrophyPackTrophyEEE) +STUB("K3n-MX0qBKg", _ZNK7WebCore4Page17useDarkAppearanceEv) +STUB("K3oGakljx2w", _ZN3sce2Np9CppWebApi12Leaderboards2V15Entry8setScoreERKl) +STUB("K3qnBgQ0nC4", _ZN15AbstractStorage14StorageManagerD2Ev) +STUB( + "K3v8CFaA-cA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEEC1ERSA_) +STUB( + "K3wG+8bwrQ0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEC2EPS8_) +STUB( + "K3zmJ7H-sQE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEC2EPS8_) +STUB("K4-kVJE5+Wo", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEEC2Ev) +STUB("K42ka7NaGvY", _ZN9Inspector20InspectorTargetAgentnaEm) +STUB( + "K44Rw736vzE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEmmEv) +STUB("K461V2TIiT4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEaSERS7_) +STUB("K47f5cshudA", il2cpp_array_length) +STUB("K48oF9Lvz9c", sr08) +STUB("K49mqeyzLSk", _Atomic_fetch_or_1) +STUB( + "K4COkx9nTi4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEaSERKS9_) +STUB("K4Ch5Jqrr1g", _ZN23sceMetadataReaderWriter15ParserInfoTable20unregisterParserInfoEv) STUB("K4KnH0QkT2c", sceHmdInitialize) +STUB("K4M0IhFb88Q", __ubsan_handle_cfi_check_fail) +STUB("K4To+D8FSq8", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getAllSecondaryAudioLangs) STUB("K4W0ovmeJVw", sceUserServiceSetCaptureStatus) +STUB( + "K4cGNU0++iE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE11getResponseERS8_) +STUB("K4igogiqprA", _ZN3JSC12VMEntryScopeC2ERNS_2VMEPNS_14JSGlobalObjectE) +STUB( + "K4j+ai8R2Gc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEaSERKS9_) STUB("K4o48GTNbSc", sceNetConfigWlanAdhocLeave) STUB("K4sH-0WUfuc", sceVdecCoreGetDecodeOutput) +STUB( + "K518vI53s-4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEED2Ev) +STUB("K51HUUV9AWA", _ZN3WTF6String6appendEDs) +STUB("K53uecBukJk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEEmmEi) +STUB("K57m00RjFaQ", WKBundlePageSetTracksRepaints) +STUB("K59xDVxbCyM", _ZN3WTF20ConcurrentPtrHashSet15deleteOldTablesEv) +STUB("K5ATDSUHMHg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEE7get_refEv) +STUB("K5AXouyDb8Y", _ZN3JSC18NullSetterFunction6s_infoE) +STUB("K5DiY1KV7Co", _ZN3sce3pss4core5audio11SoundPlayer20MoveSurroundPanAngleEfbd) +STUB("K5Krt9eME4k", _ZN4Manx8Gamepads6createEv) +STUB( + "K5MHhNzfc9A", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEptEv) +STUB( + "K5N5DtHnzCQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEC1EPS6_PNS2_10LibContextE) +STUB("K5Ud8wOZI5M", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEEC1Ev) +STUB("K5V0IcHAoOE", WKFrameCanShowMIMEType) +STUB( + "K5VQEvThhCA", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetBoolean6Ev) +STUB("K5WQl+O-L7w", _ZN3sce7Toolkit2NP2V28Matching7Request15GetRoomPingTimeD1Ev) +STUB("K5b36DjkSTg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEptEv) +STUB("K5ippOq4QKo", _ZThn96_NK7WebCore22HTMLFormControlElement12willValidateEv) +STUB( + "K5jUzaoyT60", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE5emptyEv) +STUB("K5knPZnClPg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEE7add_refEv) +STUB( + "K5mBGcDUzAs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEEptEv) +STUB("K5qAEdj2hrk", _ZN3WTF4dtoaEPcdRbRiRj) +STUB("K5vygF187x0", _ZN7WebCore8SVGNames9stemvAttrE) +STUB( + "K5wCXUw5Uvo", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorI16SceNpTusVariableNS1_15AppSTLAllocatorIS5_EEEED2Ev) +STUB( + "K5wQCiQZxyg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEED1Ev) +STUB("K5xF1GKVsVw", locale_set_default_67) +STUB( + "K5xn0GLlVtQ", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("K5zin6Xh7SY", _ZN3sce7Toolkit2NP2V28Matching12Notification11RefreshRoomC2ERKS5_) +STUB( + "K61ZpEXVA8E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE5emptyEv) STUB("K62IGGSMrME", sceApplicationSetMemoryPstate) +STUB("K62jNcRGQdY", cairo_pattern_create_linear) +STUB( + "K65J+BPA6I0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEED2Ev) +STUB( + "K65xjvaD0qQ", + _ZN7WebCore13TextIndicator26createWithSelectionInFrameERNS_5FrameEtNS_35TextIndicatorPresentationTransitionENS_9FloatSizeE) +STUB("K67v9Ocojlk", _ZN7WebCore17FrameLoaderClientD2Ev) STUB("K6JphzOV+Bc", Seek) +STUB( + "K6KEIySGe+w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("K6LlQ-A81Ag", _ZN8meta_gen11MsvPromoter27retrieveParentalControlInfoEv) +STUB( + "K6NFzl0vi+M", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE3endEv) +STUB( + "K6SIfwxsfpE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "K6YSavHWo4o", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanity15getserviceLabelEv) +STUB( + "K6ZnlaOFL+0", + _ZN7WebCore12CryptoKeyAES9importRawENS_25CryptoAlgorithmIdentifierEON3WTF6VectorIhLm0ENS2_15CrashOnOverflowELm16ENS2_10FastMallocEEEbi) +STUB("K6aayzvQMlE", cairo_destroy) +STUB( + "K6jH5sv3ruA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE5beginEv) +STUB("K6mdkMbMUDk", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification16FriendlistUpdateEE5resetEv) +STUB("K6poyp1nD50", _ZN3WTF11Persistence7Decoder6decodeERl) +STUB( + "K6vTSrvQnv4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEptEv) +STUB("K6vTjK5pdQU", ptohqw) +STUB( + "K72SyKrFZEQ", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEiRNS2_10LibContextEPT_m) +STUB("K73cF+3Qe+k", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead14setCustomData1EPKvm) +STUB("K79kvESFqPQ", _ZN3WTF3URL7setUserENS_10StringViewE) +STUB("K7Ebfde-JmE", _ZN7WebCore16MIMETypeRegistry27isSupportedNonImageMIMETypeERKN3WTF6StringE) +STUB("K7FjXiy2z+A", _ZN3sce2np10CancelLockD1Ev) STUB("K7JXQQsJTS8", sceFsLvdAttach) +STUB("K7KNByP46vs", JSRemoteInspectorSetLogToSystemConsole) +STUB( + "K7Qy0yrkZX8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "K7RLfr9Oi8o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEEaSERKSA_) STUB("K7RlrTkI-mw", sceNetPoolDestroy) STUB("K7SHCEr+PkQ", sceFiosDHGetPath) +STUB( + "K7T4Apme3sU", + _ZN7WebCore13JSDOMRectList19getOwnPropertyNamesEPN3JSC8JSObjectEPNS1_9ExecStateERNS1_17PropertyNameArrayENS1_15EnumerationModeE) +STUB("K7TCNQ4DrdE", EVP_aes_192_wrap) +STUB( + "K7TMA9sw+TA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) STUB("K7Vb-7JGXVc", sceUsbStorageDialogClose) STUB("K7W7H4ZRwbc", sceCameraSetLensCorrection) +STUB( + "K7WCJ2vH2bg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("K7XzBKsFyaI", _ZN4Manx7RunLoop4pollEv) +STUB("K7YUr62EN+E", + _ZN7WebCore18TextureMapperLayer20setChildrenTransformERKNS_20TransformationMatrixE) +STUB( + "K7YtIRrK+o0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("K7eIytThnzg", _ZN7WebCore15PasteboardImageD2Ev) +STUB("K7iHdJjGbs8", _ZNSo12_Sentry_baseD2Ev) +STUB("K7iNFNfeBN4", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOfferD1Ev) +STUB("K7m4Ku1jWBw", _ZNK7WebCore13HitTestResult5imageEv) +STUB( + "K7oy4gsacns", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("K7qAbz7P3rs", _ZN3WTF19numGraphemeClustersENS_10StringViewE) +STUB( + "K7qf0lzOZFo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEEaSERKSA_) +STUB("K7sAXX2rALk", _ZN3sce7Toolkit2NP2V28Commerce13CategoryLabel22CATEGORY_LABEL_MAX_LENE) +STUB( + "K7uzXEoul1c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEC1EPKS8_) +STUB("K7xiuldOPKw", __sys_dynlib_get_info_for_libdbg) STUB("K7yhYrsIBPc", sceVrTrackerQueryMemory) +STUB( + "K7yu91jitiw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEptEv) +STUB( + "K80vI-EOXWQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEmmEv) +STUB( + "K81QQXNxZuk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEEC1Ev) +STUB("K81dDxjr7Zg", Java_com_sony_bdjstack_org_bluray_bdplus_StatusImpl_get) +STUB("K82MOIkJDwo", _ZTVN7WebCore15ActiveDOMObjectE) +STUB("K82wly5zJoc", WKPageValidateCommand) +STUB( + "K89RDAuxX6E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE8pushBackERKS9_) +STUB("K89tpB2jJ4g", _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_6StringEEneERKS5_) +STUB("K8CzKJ7h1-8", _ZTSSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE) +STUB("K8HazO1xTBk", _ZN23sceMetadataReaderWriter7Storage11getMimeTypeERKSsRSt6vectorIjSaIjEE) +STUB("K8HtRFaPjU4", _ZN7WebCore9HTMLNames22ontouchforcechangeAttrE) +STUB( + "K8NBXEhIE5Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEC1EPKS8_) STUB("K8Nh6fhmYkc", sceUserServiceGetThemeHomeShareOwner) +STUB("K8Os3bYfKsA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEED1Ev) STUB("K8SZy3MsiaY", sceUlpMgrReqClose) +STUB("K8Uoy+1us+I", _ZN3sce2Np9CppWebApi10Activities2V114UserActivities5Error14setReferenceIdEPKc) +STUB( + "K8WURfLaqLU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEE5resetEPS9_) +STUB( + "K8cpt5V89gk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "K8dnw-in+Jo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEC1ERKS7_) +STUB("K8fdL1tq70w", _ZN3NTF21URLRequestDataMessage6createEv) +STUB("K8idJu-czzY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEE7add_refEv) +STUB("K8py1aN3Kj8", _ZN3JSC2VM8whenIdleEON3WTF8FunctionIFvvEEE) +STUB( + "K8zhm2vYK+o", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB( + "K8zvsl9Zt2E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEC1EPNS2_10LibContextE) +STUB("K90PVQAEb6g", _malloc_stats) +STUB("K92bYqBG5ww", _ULx86_64_dwarf_make_proc_info) STUB("K953PF5u6Pc", pthread_cond_reltimedwait_np) +STUB( + "K9ANL80gLEs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEeqERKS9_) STUB("K9EXdD9bqzM", sceFsUfsMkfsWithFixedCylinderGroupSize) +STUB( + "K9HeQ2wzGCc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEC1EPS6_PNS2_10LibContextE) +STUB("K9Mk0uRkFII", _ZN3JSC20speculationFromValueENS_7JSValueE) +STUB("K9UQzhrp0qg", WKPreferencesGetTopNavigationToDataURLsAllowed) +STUB( + "K9YR8vLlkJ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "K9ZmkxXosig", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "K9aswEKjJvk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("K9eDvYFRGWE", _ZN8meta_gen13JpegRetriever16ProcessApp14DataEv) STUB("K9gXXlrVLNI", sceSaveDataDebugCreateSaveDataRoot) +STUB( + "K9lc7miI4y0", + _ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeaders7getETagEv) +STUB( + "K9oWUPuuLUg", + _ZN3JSC12StringObject3putEPNS_6JSCellEPNS_14JSGlobalObjectENS_12PropertyNameENS_7JSValueERNS_15PutPropertySlotE) +STUB( + "K9q2setOBr0", + _ZN9Inspector23CanvasBackendDispatcher18requestClientNodesElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "K9qkFIMG5ic", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEEcvbEv) +STUB( + "K9rkHlZORBI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEC1Ev) STUB("K9tlODTQx3c", sceNpScoreGetRankingByAccountId) +STUB("K9vktugZ2+E", udat_adoptNumberFormatForFields_67) +STUB("K9wStUZwsY8", Java_com_sony_bdjstack_core_AppCacheManager_seek) +STUB("KA-NoTpTTbU", _ZN7WebCore4Page9initGroupEv) STUB("KA2AITpVTCg", sceNpAsmClientDeleteResourceContext) STUB("KA515kD5rAY", sceVideoOutDeleteDriver) +STUB("KA56yfHRZ0M", _ZNK3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResults10scoreIsSetEv) +STUB("KAAWT2zE4fw", bemp2sys_psdecoder_readpacket) +STUB( + "KAApUzwE47w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEC1Ev) +STUB("KAB1QB70Xeg", _ZN7WebCore9JSElement11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("KAC-e9-fPB0", _ZN7WebCore30rejectPromiseWithThisTypeErrorERNS_15DeferredPromiseEPKcS3_) STUB("KADsbjNCgPo", sceSharePlaySetProhibitionModeWithAppId) +STUB("KAEzm5+zq2w", uprv_isPositiveInfinity_67) STUB("KAIGiqYrtI4", sceOpusDecCreateEx) +STUB("KAJD5gNtjzg", + _ZN15AbstractStorage14MemfileContent13writeExternalESt10shared_ptrINS_7ContentEE) +STUB( + "KAQOKCuUE3A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEC2EPS6_PNS2_10LibContextE) +STUB( + "KAUKqiXMdNA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEmmEv) +STUB( + "KAa5jgdp2gQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEE3getEv) +STUB( + "KAahrsYg7mk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE7popBackEv) +STUB( + "KAbB2mBC9MM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEE3getEv) +STUB("KAcWEAGdd+c", _ZNK7WebCore11HistoryItem20hasCachedPageExpiredEv) STUB("KAeP0+cQPVU", sceSystemGestureGetPrimitiveTouchEventByIndex) +STUB( + "KAeujYdb9yg", + _ZN3sce2Np9CppWebApi14SessionManager2V113FriendFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_6FriendEEE) +STUB( + "KAn-AAN+xss", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEE3getEv) +STUB("KAtBjvAqdeM", _ZN7WebCore11DisplayList20EndTransparencyLayerD1Ev) +STUB("KAtGZCifCMo", _ZN15AbstractStorage4Item7GetNameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB( + "KAtSAh6yrS0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEC1Ev) +STUB( + "KAvNoOamrnM", + _ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead14unsetSessionIdEv) +STUB( + "KAyGHWR3xx8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEppEv) +STUB("KB1p9ezmiqw", _ZN9Inspector8Protocol8Timeline13TimelineEvent4DataE) +STUB("KB4idIMx4Ws", + _ZNSt9_FacetptrISt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEE6_PsaveE) STUB("KB7Vc2+5S54", sceKernelNormalizePath) +STUB("KBAM9blJBus", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEC1ERS7_) +STUB("KBBVmt8Td7c", _ZTIy) +STUB("KBG7kh5cNDw", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V19JoinStateEEC1Ev) +STUB( + "KBHHqm8w5QA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) STUB("KBHxDjyk-jA", sceNpScoreGetRankingByRange) +STUB( + "KBKQEgl3Kf8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEptEv) +STUB( + "KBKfxDJHKGg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEC1EPS8_) STUB("KBP2JpAEacI", sceVisionManagerCancelRequest) +STUB( + "KBPerJT18ds", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13goToProcessedEi) +STUB("KBSJX5hK+80", rgctx_fetch_trampoline_mrgctx_25_p) +STUB("KBTWh1VVa-8", curl_share_init) +STUB("KBc0PTQmUd8", _ZN7WebCore8SVGNames10offsetAttrE) +STUB( + "KBd1HybTC00", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEC1EPKS8_) +STUB( + "KBeHgu+4za4", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToSendGameSessionMessage53setpostGameSessionsSessionIdSessionMessageRequestBodyENS1_6Common12IntrusivePtrINS3_50PostGameSessionsSessionIdSessionMessageRequestBodyEEE) STUB("KBfBmtxCdmI", sceNpTusGetMultiSlotDataStatusForCrossSaveVUser) +STUB("KBjzxYPrZHo", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification16NewInGameMessageEED2Ev) +STUB( + "KBpsaobhG00", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEdeEv) +STUB("KBqnq2n2d5U", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetBoolean3Ev) STUB("KBxgeNpoRIQ", sceNpWebApiCreateMultipartRequest) STUB("KC+GnHzrK2o", sceNpMatching2GetRoomMemberIdListLocal) +STUB( + "KC08oV2N19M", + _ZZSt9MakefacetISt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEESt8_LocinfoERT_T0_E3buf) STUB("KC23EegtMiY", sceDebugGetProcessPropertyForCoredump) STUB("KC25794vwOY", sceClHttpSendRequest) +STUB("KC2hahSBhdw", ulistfmt_openResult_67) +STUB("KCAC0IGZjfE", _ZN3sce7Toolkit2NP21InvitationDataRequestC1Ev) +STUB( + "KCAhdaV0ys4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEC1Ev) +STUB( + "KCBxgjX0P6c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("KCEJ9s5mJa0", _ZN7WebCore8SVGNames5xAttrE) STUB("KCGOxg8iX7s", sceVoiceQoSSetConnectionAttribute) +STUB( + "KCIiHzd9TYg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE21intrusive_ptr_add_refEPS9_) STUB("KCItz6QkeGs", sceNpWebApiSendMultipartRequest) +STUB("KCJmvB04zUM", _ZN7WebCore20ResourceResponseBase17setHTTPStatusCodeEi) +STUB("KCO1P9GayT4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V117InvitableUserTypeEEC2Ev) +STUB("KCRtc-+ZXQQ", mono_aot_Sce_Vsh_RequestShareScreenunbox_trampolines) +STUB("KCRxFgmw1pg", Java_java_lang_Runtime_execInternal) +STUB( + "KCYm4TZmrCo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEppEv) +STUB( + "KCZ6zVnrtWs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEneERKS9_) +STUB("KCZNgUfgD4M", _ZN3sce7Toolkit2NP2V28Commerce12ProductLabel21PRODUCT_LABEL_MAX_LENE) +STUB( + "KCdZowLuX6s", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEptEv) +STUB("KCg4XANux9c", + _ZN3sce7Toolkit2NP2V29Messaging7Request17LocalizedMetadata25MAX_SIZE_DATA_DESCRIPTIONE) STUB("KCijjig3lGo", sceVideoOutHdmiMonitorInfoIsSupportedHdcpVersion_) STUB("KCk4OGu8+sc", sceNpUtilGetNthChar) +STUB( + "KClH-saVUeQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEE7add_refEv) +STUB("KClvZ9ik-bQ", _ZN7WebCore13releaseMemoryEN3WTF8CriticalENS0_11SynchronousE) +STUB("KCnkzutqeMo", _ZN3JSC12RegExpObject6s_infoE) +STUB( + "KCpNUV-zqJ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) STUB("KCwXUKT269I", sceKernelSetCpumodeGame) +STUB( + "KD+fwDGYhxs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEC2Ev) +STUB( + "KD0NkSaIi1M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEED1Ev) +STUB( + "KD72I0gUpXs", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitationsD2Ev) +STUB( + "KDCKzEpXWes", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEC2Ev) +STUB("KDFy-aPxHVE", _Shared_ptr_flag) +STUB( + "KDGntSlaaM4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE4sizeEv) +STUB("KDHHqA2Vkt4", _ZN12video_parser7cVpUtil13vp_ff4_memcpyEPvS1_mPKvm) +STUB("KDLaJiY6Wt8", _ZNK7WebCore14DocumentLoader13urlForHistoryEv) +STUB( + "KDLg21TOtPY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEixEm) +STUB( + "KDMetFx1rO8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "KDMfjPaChGk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE4sizeEv) +STUB("KDOgz6Za1jc", uprv_deleteConditionalCE32_67) +STUB("KDPOldWSEtc", glGetActiveUniformBlockName) +STUB("KDRPZeaauUQ", _ZN3WTF13printInternalERNS_11PrintStreamERKNS_6StringE) +STUB("KDU5tG3gZRs", WKContextConfigurationPrewarmsProcessesAutomatically) +STUB( + "KDch9C5nh3U", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("KDgQWX1eDeo", _ZNSs6insertEmmc) +STUB("KDhvMdyJm2M", + _ZN3WTF7Unicode51calculateStringHashAndLengthFromUTF8MaskingTop8BitsEPKcS2_RjS3_) +STUB("KDo+JeUjEO0", _ZN3sce7Toolkit2NP2V27Session7Session5resetEv) +STUB("KDo-NFVwfAs", _ZN8meta_gen11MsvPromoter11setSortKeysEP22MsvPromoteInnerContext) +STUB( + "KDsE5udJv9o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "KDtkfeBbzD0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEC2EPS8_) +STUB("KDuUaPE3qgA", mono_config_get_cpu) +STUB( + "KE-DhhHnzhk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEED2Ev) +STUB("KE2V137Wreg", _ZN12video_parser13cVideoMetaMP410initializeEv) +STUB( + "KE3-EfciV5E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "KE6eDerQcqQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEmmEv) +STUB("KECIldu6iZ4", WKPreferencesSetPictographFontFamily) +STUB("KECbnF2igRw", _ZN3WTF6String8fromUTF8EPKhm) +STUB( + "KEDPR2fy6BU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE8capacityEv) +STUB("KEDRSc45lqQ", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEptEv) +STUB( + "KEJojcNQgqU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEcvbEv) +STUB("KEOELlzDcW4", mono_aot_System_IO_Compressionmethod_addresses) +STUB( + "KEOT4L3r76o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEC2EPS7_PNS2_10LibContextE) STUB("KEOtPPGr59w", sceDebugIpmiGetBlockTimeInfoList) +STUB("KESBYwioO8M", mono_shared_internal_hash_table_remove) +STUB("KEWuo12tZUE", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification15BlocklistUpdateEEC1Ev) +STUB("KEloYrrpNb8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEE5resetEPS6_) +STUB("KEoFEK7OMRg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEEC2ERS6_) +STUB("KErdBAt4DHk", initProtocolInfoList) +STUB( + "KEsZVDZkItk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEC1ERS7_) +STUB("KEwNCmLeQH0", WKPreferencesSetSpatialNavigationEnabled) STUB("KF25CDxFn48", sceKernelCreateEport) +STUB("KF5w76OAaNw", _ZN3JSC7Symbols17valuesPrivateNameE) +STUB( + "KF6uAx-kdss", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEneERKS9_) +STUB("KFDGyLj80MY", _connect) +STUB( + "KFFibOtih7M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE8pushBackERKS8_) +STUB( + "KFMNuHu2nu8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEC2Ev) +STUB( + "KFN1OPDd+iI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEEdeEv) +STUB( + "KFXojgE-mpQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE4sizeEv) STUB("KFZg2gzePls", sceFsDevpfsEventComplete) +STUB( + "KFaP-zqYzO4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "KFaZ2bI7cx8", + _ZN3sce2Np9CppWebApi14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBody8fromJsonERKNS_4Json5ValueE) STUB("KFez0hNxLvY", sceVnaCheckCallback) +STUB("KFfdxAYTbik", vm_send_CreateExceptionFunctions) +STUB("KFi2uS5ioog", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEEC1Ev) +STUB("KFk2i000270", ufile_getch32_67) +STUB("KFkcW-LoV+c", mono_aot_Mono_Dynamic_Interpreterunbox_trampolines) +STUB("KFlEhr8cDSM", _ZN3JSC7Symbols31allocateFloat32ArrayPrivateNameE) +STUB( + "KFqWU2DUxrw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEED1Ev) +STUB("KFrr-J87UYY", generic_trampoline_rgctx_lazy_fetch) +STUB("KFvL6pHITnQ", WKBundleSetAppCacheMaximumSize) +STUB( + "KFwOdpIqVYU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEC1Ev) +STUB("KFxpWlaQ6tI", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product14getReleaseDateEv) +STUB("KG28PSUSw60", mono_signature_get_return_type) +STUB("KG4GV1N5L5E", _ZN3sce7Toolkit2NP2V27Ranking12FriendsRanks8deepCopyERKS4_) +STUB("KGAA02fSVmk", ThreadUtils_SetSchedulePolicy) +STUB("KGDPPey77F4", jpeg_fdct_12x12) +STUB("KGFh4Rft6NY", _ZN12video_parser16cVideoContentMp46_brandEv) +STUB("KGK5vuCEt8I", _ZN7WebCore9HTMLNames11versionAttrE) STUB("KGKBeVcqJjc", scalbn) +STUB("KGLy4DI9vwQ", X509_get_serialNumber) +STUB("KGNNNccvpWA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEixEm) +STUB("KGRHybg8z0U", _ZN3sce7Toolkit2NP2V210Wordfilter16SanitizedComment16MAX_SIZE_COMMENTE) +STUB("KGX3DM3ehac", _ZN7WebCore17WebGLStateTrackerC2EON3WTF8FunctionIFvbEEE) +STUB("KGXoebAph80", glVertexAttribDivisorEXT) +STUB("KGYgf9IhC7w", _ZN9Inspector8Protocol7Network8Response8MimeTypeE) +STUB( + "KGgeVNRutGE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEEaSERSA_) +STUB("KGhYQqdb2l4", _ZNK7WebCore11HistoryItem11hasChildrenEv) +STUB("KGitZXuSY7U", _ZN3sce2npeqERKNS0_10NpOnlineIdES3_) +STUB("KGmTR4zXrAw", ureldatefmt_format_67) +STUB("KGotca3AjYw", vswscanf) +STUB("KGphfgpRs6E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEED1Ev) +STUB( + "KGs8Ur-0beM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB("KGtn3dScHNE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEaSERS7_) +STUB( + "KGtzRL0g+Fo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEdeEv) +STUB("KGvKzD5XgFE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEE3getEv) +STUB( + "KGvd2BOGGNM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("KGxAOGkXt7s", JSObjectDeleteProperty) +STUB("KGxuX3DzLME", _ZTVN15AbstractStorage18DailymotionContentE) +STUB("KH+o0h-eelo", u_forDigit_67) +STUB( + "KH-ITQjYM2U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEEptEv) STUB("KH0InA0uStg", sceShellCoreUtilIsNeededCrashReport) +STUB( + "KH1YxQ7-xUg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEdeEv) +STUB( + "KH1qzCeYakw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEC2EPS8_) +STUB("KH3nZZ9oLx0", _ZN7WebCore9PageCache14pruneToSizeNowEjNS_13PruningReasonE) +STUB("KH4302QYBDI", _ZNK9Inspector18InjectedScriptBase20injectedScriptObjectEv) +STUB("KH4ujbMUhcg", _Z23VideoPlayerVcs_GetSpeedi) +STUB( + "KH6VtKHCAZU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE10setContextEPNS2_10LibContextE) +STUB("KHA4C0EPJsU", _ZN7WebCore9HTMLNames13ondragendAttrE) +STUB("KHAvAJXNJMg", ures_hasNext_67) STUB("KHBNAkJhT64", sceVideoOutSetContentType) +STUB( + "KHBU3FrV+cU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("KHCFjwCNxoQ", _ZNK7WebCore11MediaPlayer20playerContentBoxRectEv) +STUB("KHFDfTC8ANo", Java_java_io_FileOutputStream_open0) +STUB( + "KHFQv5m2JSM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("KHIw7IVhuWE", _ZN8Gigacage4freeENS_4KindEPv) +STUB( + "KHJ9c4RfWsM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("KHJflcH9s84", _Atomic_exchange_1) +STUB( + "KHPip4Apatw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEEdeEv) +STUB("KHT8IFOs2KM", WKSizeGetTypeID) STUB("KHXHMDLkILw", sceAudiodecDecode) +STUB("KHXsXc9VSzY", + _ZN3sce2Np9CppWebApi13InGameCatalog2V515ContainerRatingC2EPNS1_6Common10LibContextE) +STUB("KHc5ePKTVZ0", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIdEC1EPd) STUB("KHfpjj9Pucg", sceVrSetupDialogUpdateStatus) +STUB("KHj92a3WDn4", FT_Stream_GetLongLE) +STUB("KHjAWhSAGbY", _ZN3sce2Np9CppWebApi6Common6Binary5clearEv) +STUB("KHkxGxK1WQY", il2cpp_class_get_flags) +STUB( + "KHmZxzCKRHg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE5clearEv) +STUB("KHnictXNEXo", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinition9hasfieldsEv) +STUB("KHohy3AM22U", mono_metadata_parse_mh_full) STUB("KHpZ9hJo1c0", sceGnmSpmInit2) STUB("KHsev0YxuXs", sceVisionManagerFinalize) +STUB( + "KHuuDb9jtV8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEC2ERS7_) STUB("KHvkPQJDMLk", sceVideoRecordingClose) +STUB( + "KHyHMSavpD0", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi36setGameSessionMemberSystemPropertiesEiRKNS4_47ParameterToSetGameSessionMemberSystemPropertiesERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB("KI-s2wtrPSw", _ZN3sce7Toolkit2NP2V29Challenge7Request13SendChallenge13MAX_SIZE_DATAE) STUB("KI4dHLlTNl0", sceNpAuthGetAuthorizationCodeV3) +STUB("KI5+WPu8Wq4", WKContextConfigurationCopyLocalStorageDirectory) +STUB("KI5jhdvg2S8", SSL_ASYNC_closeConnection) +STUB("KI5phvfN-rU", jpeg_alloc_huff_table) STUB("KI8Q41MvSKo", sceSlimglServerEndClient) STUB("KI9cl22to7E", sceAudioOutSetMainOutput) +STUB("KII6TGXXZ6E", _ZN3sce7Toolkit2NP2V27Session17SessionInfoUpdateD2Ev) +STUB("KIIYva3fxFM", _ZN7WebCore16JSXMLHttpRequestD1Ev) +STUB("KIKL0rz6o-A", FTA_Export_Module_truetype) +STUB( + "KIKe8w5fLaM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEC1Ev) +STUB("KIKlp32nDIw", _ZN3sce7Toolkit2NP2V210Tournament25OneVsOneTournamentDetailsC1Ev) +STUB("KILsdfm7-b8", _Z34sceGpuDebuggerUnregisterShaderCodePKN3sce3Gnm16CsStageRegistersE) +STUB( + "KIMbPiNtJKA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEaSERKS9_) +STUB("KIXWOBUPaHk", JSValueIsArray) +STUB("KIY3JDiHq5E", _ZN23sceMetadataReaderWriter8MetadataC1EPFPvmEPFvS1_E) +STUB("KIZvmPNLZrY", _ZN7WebCore9HTMLNames4sTagE) +STUB( + "KIaU1HHfdeo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEEC1Ev) +STUB( + "KIayNb3dL1Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEEaSERKS9_) +STUB("KIbJFQ0I1Cg", fdatasync) +STUB( + "KIfR7euI3Ow", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseC1EPNS1_6Common10LibContextE) +STUB( + "KIfy++czY1g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEE7add_refEv) +STUB("KIjEyKRwWXI", + _ZN3sce7Toolkit2NP2V29Messaging7Request37DisplayReceivedGameDataMessagesDialogC1Ev) +STUB("KIkKkYcYWd0", WKBundleClearAllDiskCaches) +STUB( + "KIoXHe-Tkxo", + _ZN9Inspector17ScriptDebugServer22dispatchDidParseSourceERKN3WTF7HashSetIPNS_19ScriptDebugListenerENS1_7PtrHashIS4_EENS1_10HashTraitsIS4_EEEEPN3JSC14SourceProviderEb) +STUB( + "KIq2+4HC5Qs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEEC2ERKSA_) +STUB( + "KIxi2BMZ2Zo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEED2Ev) +STUB( + "KJ+6sAGGsXQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEE7add_refEv) +STUB( + "KJ1PJO-QfjA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEE3getEv) +STUB( + "KJ5CwZFskhM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE7popBackEv) +STUB("KJAQlWsQKf8", _ZN3JSC18PropertyDescriptor12setUndefinedEv) +STUB( + "KJC8i59kd1I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE6resizeEj) +STUB( + "KJDWJjSDaOE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEppEi) +STUB("KJGOPKBI3YE", _ZTSPKn) +STUB( + "KJGkBqRoZXs", + _ZN3sce2Np9CppWebApi12Leaderboards2V134RecordLargeDataResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_27RecordLargeDataResponseBodyEEE) +STUB("KJLvDqmFiKk", _ZNK3sce2Np9CppWebApi11Matchmaking2V19Submitter12getAccountIdEv) STUB("KJMibJu1wr8", sceClPthreadSetprio) +STUB( + "KJPq6a72Zeg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEC2Ev) +STUB( + "KJTzMXmYY+U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEptEv) +STUB("KJcqdRyHiF0", _ZN7WebCore9HTMLNames10onplayAttrE) STUB("KJdPcOGmK58", sceNpWebApi2PushEventDeleteFilter) +STUB( + "KJgvss90XpU", + _ZN7WebCore4Icon18createIconForFilesERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("KJmeNzmA6UM", eglInitialize) +STUB("KJoz6a9hUJQ", _ZN3JSC19HeapSnapshotBuilder13buildSnapshotEv) STUB("KJtUHtp6y0U", sceHttpDbgShowConnectionStat) +STUB("KJtX25Q8qso", _ZN7WebCore8SVGNames13elevationAttrE) +STUB("KJtZG+ElX+k", uprv_free) +STUB("KJuLpwx9DRU", mono_debug_free_method_jit_info) +STUB("KJutwrVUFUo", _ZTSSt16invalid_argument) STUB("KJw6rahYNdQ", sceUserServiceSetParentalBdAge) +STUB( + "KK+VIBWxpns", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEEC2Ev) +STUB("KK03u+6DkBU", curl_getenv) STUB("KK3Bdg1RWK0", sceSaveDataDialogUpdateStatus) STUB("KK6B72YC-js", sceKernelSwitchToBaseMode) +STUB("KK8Cr0wE81M", mono_class_get_property_from_name) +STUB( + "KKAsA9YWAsM", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "KKGxpAReQx0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE21intrusive_ptr_sub_refEPS9_) +STUB("KKIYSfpLino", _ZNK7WebCore12ChromeClient22isSVGImageChromeClientEv) +STUB("KKJqKiEnn9c", mono_threads_exit_gc_unsafe_region_unbalanced) +STUB( + "KKM08texpPQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEaSERKS9_) +STUB("KKMcykTUwnI", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle13perGenreIsSetEv) +STUB("KKNE1wLaEEk", _ZNK7WebCore19ResourceRequestBase11cachePolicyEv) +STUB("KKPpOmFdA-Q", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Error9unsetCodeEv) +STUB( + "KKXwSoX8NsU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) STUB("KKaarkWGxWI", sceCustomMusicSelect) +STUB("KKdrRaSLnoA", WKPageCopyCommittedURL) +STUB("KKgFmz4V2e8", WKPreferencesGetMediaPlaybackAllowsInline) +STUB("KKgUiHSYGRE", fgetln) +STUB("KKgxphVS9Jc", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEEixEm) +STUB( + "KKhk9jvv-5E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEC2EPKS8_) +STUB("KKpKiHTKYwU", pr5) +STUB( + "KL9MTUnT5+o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEC1Ev) +STUB("KLD7tPGEuWs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEE7get_refEv) +STUB( + "KLGp17JOEaE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEC1Ev) +STUB("KLHGwPPGQEA", _ZN9Inspector14FrontendRouterD1Ev) +STUB("KLIJsrNSZ98", _ZN3sce7Toolkit2NP2V28Commerce8CategoryD2Ev) +STUB("KLO-X+9zhy0", + _ZN3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator8fromJsonERKNS_4Json5ValueE) +STUB( + "KLQs6RvG95o", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEneERKS9_) +STUB("KLURO+vCOuY", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationProperties9setLeaderERKi) +STUB( + "KLZh24-59WY", + _ZN3JSC9Structure24addNewPropertyTransitionERNS_2VMEPS0_NS_12PropertyNameEjRiNS_15PutPropertySlot7ContextEPNS_41DeferredStructureTransitionWatchpointFireE) +STUB("KLaWCpRxYWo", FTA_Add_Module_psaux) +STUB("KLfd8g4xp+c", __floatuntisf) +STUB( + "KLjBtBI8rmE", + _ZN3sce2Np9CppWebApi7Matches2V133RequestTeamMemberStatisticFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_26RequestTeamMemberStatisticEEE) +STUB("KLkNQiwk6ek", mono_method_has_marshal_info) STUB("KLm8fHOrzGs", sceIduUtilRegisterOverlayMsg) STUB("KLmYx9ij2h0", scePadSetAngularVelocityBiasCorrectionState) +STUB( + "KLoR0ugEv68", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEeqERKS9_) +STUB("KLuj0cSFCEo", u_strCompareIter_67) +STUB( + "KLuqGBYXz08", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEplEm) +STUB( + "KLv+iL3LMuw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEC2EPNS2_10LibContextE) +STUB("KLwC9-FN8yo", + _ZN7WebCore21NetworkStorageSession38setCacheMaxAgeCapForPrevalentResourcesEN3WTF7SecondsE) +STUB( + "KLybAoVjoUU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE21intrusive_ptr_sub_refEPS9_) +STUB("KM0b6O8show", _ZNKSt5ctypeIwE8do_widenEPKcS2_Pw) +STUB("KM3HTLCv0tk", _ZN7WebCore4Page27enableICECandidateFilteringEv) +STUB("KM46OgyKMOs", _ZNK7WebCore17FrameLoaderClient22shouldPaintBrokenImageERKNS_3URLE) +STUB( + "KM4zCt65v7Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE6resizeEj) +STUB("KMAvzkTpsJo", _ZN3NTF5Cache16DiskCacheManagerD1Ev) +STUB("KMGUMPfAJo4", _ZN7WebCore17LibWebRTCProvideraSERKS0_) +STUB( + "KMHTK4tgjNI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "KMLy7auCJjs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEplEm) +STUB( + "KMPyVm3OU4o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEcvbEv) +STUB("KMXKX2BT6ik", WKPreferencesGetForceFTPDirectoryListings) +STUB("KMb+7uBgLfA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ResponseCooperativeResultEEmmEi) +STUB( + "KMbJkdAP2oc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEC1EPS8_) STUB("KMcEa+rHsIo", sceAvPlayerAddSource) +STUB( + "KMh7t6XFPGc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEE11release_refEv) +STUB( + "KMkbYAn1WNo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEEC2ERSA_) STUB("KMlHj+tgfdQ", sceNpTusSetTimeout) +STUB("KMlPItNRcZ4", freeaddrinfo) +STUB("KMm+ROloldM", mono_aot_Sce_Vsh_Np_AppInfounbox_trampolines) +STUB( + "KMpXp6iZnvQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEC1ERS7_) +STUB("KMsFaZJ94s0", _ZN19JITSharedDataMemory27shared_malloc_max_footprintEv) +STUB( + "KMw4NCMp5C8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEC1Ev) +STUB("KMx1YNQUM6M", _ZNK7WebCore13HitTestResult15spellingToolTipERNS_13TextDirectionE) +STUB( + "KN3-ZOYrE9c", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEEcvbEv) +STUB("KN3KH+ZEPzM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData9setslotIdEi) +STUB("KN4cVEN1fZk", _ZNSt10_Ref_countIN15AbstractStorage14FacebookFolderEE8_DestroyEv) +STUB("KN6UJcgVrI8", _ZN7WebCore19TextResourceDecoder6createERKN3WTF6StringERKNS_12TextEncodingEb) STUB("KNBfNGQEiwE", sceHandTrackerSetDepthInfo) +STUB("KNLIYmXEthc", updatePacketSize) +STUB( + "KNN-YxZ37Yc", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToSetMultiVariablesByUser31getsetMultiVariablesRequestBodyEv) +STUB("KNNNbyRieqQ", _new_setup) +STUB("KNRiHsP-bNQ", _ZNKR3WTF6String12isolatedCopyEv) +STUB( + "KNRltrfBbD4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEEC2ERKSA_) +STUB("KNU+bdKmhWo", WKPreferencesGetTabsToLinks) +STUB("KNU8gGqixxw", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku9unsetTypeEv) +STUB("KNYVWv2B3yo", rgctx_fetch_trampoline_rgctx_59_p) +STUB( + "KNd2uCYHeZ4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEmmEi) STUB("KNfo101eszA", sceVshAvcapOpenAudioEx) +STUB("KNgcEteI72I", _ZTSe) STUB("KNggmcdqc2Q", sceNpGameIntentGetUdsNpComId) +STUB( + "KNkly-F-ZKU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEE7get_refEv) +STUB( + "KNpn5Ut32do", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE5beginEv) +STUB( + "KNpu9kVzuRU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEaSERKSA_) +STUB( + "KNvvXG6k7dE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEED2Ev) STUB("KO+11cgC7N0", sceNpSetGamePresenceOnline) +STUB( + "KO8KRCup1ig", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "KOEg0z01ToA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) STUB("KOF-oJbQVvc", sceKernelAioWaitRequest) +STUB( + "KOHpeTlHdI4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEEC1ERKSA_) +STUB("KOJ4+zzhpAg", glClear) +STUB("KOUNvhctFPk", _ZN3sce2Np9CppWebApi6Common6VectorIiE8pushBackERKi) +STUB( + "KOX3vbzLkE8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEC2EPNS2_10LibContextE) +STUB("KOgTsORWgd4", _ZN7WebCore20PasteboardCustomDataD2Ev) +STUB("KOqdw3lXEhA", rgctx_fetch_trampoline_mrgctx_86) +STUB("KOtcp+Q+70k", _ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody13objectIdIsSetEv) +STUB( + "KOvar+tTfic", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE8pushBackERKS8_) +STUB("KOxWYkiprIY", _ZN7WebCore13AXObjectCache37setEnhancedUserInterfaceAccessibilityEb) +STUB( + "KOxpFenRS3k", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE5emptyEv) +STUB("KOy7MeQ7OAU", __opendir2) STUB("KP+TBWGHlgs", sceRazorCpuJobManagerJob) +STUB("KP49fqmzEPY", _ZN3NTF17URLRequestDataJobD1Ev) +STUB( + "KP5mNSzvl9M", + _ZN9Inspector27DOMStorageBackendDispatcherC2ERNS_17BackendDispatcherEPNS_34DOMStorageBackendDispatcherHandlerE) +STUB("KP6q-p7tajM", _ZN9Inspector20InjectedScriptModuleC2ERKS0_) +STUB("KP9QZiIHxhE", unorm2_getCombiningClass_67) +STUB("KPB1Ar17BE0", _ZN3JSC20WriteBarrierCounters25usesWithoutBarrierFromCppE) +STUB("KPEyZyiVZbw", _ZN3JSC12BigIntObjectC2ERNS_2VMEPNS_9StructureE) +STUB("KPFb-NhG5Tk", _ZNK7WebCore15AffineTransform7mapQuadERKNS_9FloatQuadE) +STUB( + "KPFjufLcJYw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEC1ERS7_) +STUB("KPJLpACpg6k", _ZN7WebCore10FileHandleC1EOS0_) +STUB("KPJUghY5S6s", _ZN3JSC7Symbols27moduleEvaluationPrivateNameE) +STUB("KPKiV-WdIr8", _ZN3sce3Xml3Dom13invalidNodeIdE) +STUB("KPPJLasPz+o", WKPageGetImageForFindMatch) +STUB("KPRe4LDI+74", _ZN12video_parser16cVideoContentMp4D0Ev) STUB("KPTOmlI7BKY", sceUserServiceSetVolumeForOtherDevices) +STUB("KPUMCAf9FF4", _ZNK3sce2Np9CppWebApi14SessionManager2V15Error16referenceIdIsSetEv) +STUB( + "KPjjwGIikik", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE7popBackEv) +STUB( + "KPn8mcor6C0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEaSERKS9_) +STUB( + "KPpsG0pyyvM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE6isBusyEv) +STUB("KPsQA0pis8o", llrintf) +STUB( + "KPwBtI9dmTE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEcvbEv) +STUB("KQ1OOHi3QHk", _ZN3WTF12AtomicString4initEv) STUB("KQ34-uHDBto", _sceVideoRecordingQueryParam) STUB("KQBnRItYXM8", sceNpGriefReportTerm) +STUB("KQFqO8W4q0Y", _ZN7WebCore11JSDOMWindowD1Ev) STUB("KQFyDkgAjVs", sceSystemServiceIsShellUiFgAndGameBgCpuMode) STUB("KQIkDGf80PQ", sceNpWebApiClearAllUnusedConnection) +STUB("KQKwuumknhs", + _ZN7WebCore10JSLocation10putByIndexEPN3JSC6JSCellEPNS1_14JSGlobalObjectEjNS1_7JSValueEb) +STUB("KQQs6vyEvUA", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge13ChallengeDataEED2Ev) +STUB( + "KQRlEuZVS4g", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEeqERKS9_) +STUB("KQSSDOhD9JQ", _ZN7WebCore11DisplayList25DrawDotsForDocumentMarkerD2Ev) +STUB("KQSxXJBepQ4", _ZN3sce2np9WorkQueue7EnqueueEiPNS0_8WorkItemE) +STUB("KQTHP-ij0yo", _ZNSt14numeric_limitsIaE6digitsE) +STUB("KQWgIemlSxA", uprv_free_67) STUB("KQXyNTCycW0", sceAppInstUtilGetRestoreState) STUB("KQYLX4tVLe4", sceNpManagerIntLoginAuthenticate) +STUB("KQYkMMjpnys", mono_aot_ReactNative_PUIjit_got) +STUB( + "KQZxbR4wzy4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEEptEv) +STUB( + "KQjXWAMYhrE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE5emptyEv) +STUB( + "KQo+o5H5dkw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEixEm) +STUB("KQst4J3zVJM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEED1Ev) STUB("KQxuDpbldZs", sceSysUtilSendSystemNotificationWithAppId) +STUB("KQyCZtgkpMY", mono_property_hash_lookup) +STUB("KR+lNUwO7oo", _ZN7WebCore9endOfLineERKNS_15VisiblePositionE) +STUB("KR+z1N81beE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEdeEv) +STUB( + "KR0p1vms6uw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEppEi) +STUB( + "KR6LpO9JPtw", + _ZN3JSC8Debugger15updateCallFrameEPNS_14JSGlobalObjectEPNS_9CallFrameENS0_21CallFrameUpdateActionE) STUB("KR6QDasuKco", sceImeDialogInitInternal) +STUB("KR88aWxMABE", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku17unsetDisplayPriceEv) +STUB("KRCpEy8Rx3g", rgctx_fetch_trampoline_rgctx_121_p) +STUB( + "KRJo+VSfLTg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE10setContextEPNS2_10LibContextE) STUB("KRL-S9qBqXw", sceMbusGetDeviceInfoByCondition_) +STUB("KRN5aqJyv6g", il2cpp_class_get_assemblyname) +STUB("KRiPNCiwQLA", + _ZN7WebCore19JSDOMMatrixReadOnly15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("KRl8rZt7rts", _ZN7WebCore14JSWebAnimation9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB( + "KRn9puflxRQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEC1EPS8_) +STUB( + "KRqoOzNsceE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEC2Ev) +STUB("KRreBqZfUwY", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEED2Ev) +STUB("KRx9fvTrcAA", _ZN3sce7Toolkit2NP2V28Matching7Request23SetMembersAsRecentlyMetC2Ev) +STUB( + "KS1kM9siBZs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEE11release_refEv) +STUB("KS3seHdYUDw", _ZN7WebCore12JSTimeRanges15subspaceForImplERN3JSC2VME) +STUB( + "KSG1eCoKWVU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEC2EPKS8_) +STUB("KSJ6P7G9IbQ", _ZN3sce7Toolkit2NP2V27Session13SessionMemberD2Ev) +STUB( + "KSmoKhQexng", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEEaSERSA_) +STUB("KSp44htaaIM", _ZN3WTF24charactersToUInt64StrictEPKhmPbi) +STUB( + "KSqMunS-w1U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("KStgCIMZ4oY", _ZN7WebCore8SVGNames7textTagE) +STUB( + "KSxZKC5J7E4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEixEm) STUB("KT-hTp-Ch14", sceAgcAcbAcquireMem) STUB("KT082n6I75E", sceNpMatching2RegisterManualUdpSignalingCallback) +STUB( + "KT2joVAOOeI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEC1EPNS2_10LibContextE) +STUB("KT3+V4XYj7w", WKPageHandleKeyboardEvent) +STUB( + "KT4MocgLwKU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEC1EPKS8_) +STUB( + "KT8EMJ-V3y4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) STUB("KTCPKqvFTok", sceShellCoreUtilDeclareBeginOfExternalStorageAppMove) +STUB( + "KTKj82w52vU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEC2EPS8_) +STUB("KTLIkx65yc4", _ZN3sce7Toolkit2NP2V24Core17CustomRequestBase21setCustomFunctionTypeEi) +STUB("KTM62ug9nSg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS25AtomicAddToAndGetVariableEE3getEv) +STUB("KTNKiQiq0o8", WKUserContentExtensionStoreGetTypeID) +STUB("KTWURB53PQw", _ZN7WebCore14SchemeRegistry27shouldTreatURLSchemeAsLocalERKN3WTF6StringE) +STUB("KTXSrnDwkhU", monoeg_g_utf16_to_utf8) +STUB("KTijpWQ0zuc", _ZN7WebCore4Page27setVerticalScrollElasticityENS_16ScrollElasticityE) STUB("KTkFIXpUuCg", sceAvControlIsVideoOutModeSupportedByMonitorInfo) +STUB( + "KTmfqKSLvyU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE3endEv) +STUB("KTn-RzgJJbc", _ZN3JSC7Symbols26BuiltinDescribePrivateNameE) +STUB("KTsymf0klEc", _ZN3sce7Toolkit2NP2V210Tournament15RegisteredUsers8deepCopyERKS4_) +STUB("KTvTkiNRlxA", mono_aot_I18N_Otherjit_got) +STUB("KU2mo6lIOgQ", _ZN3sce7Toolkit2NP2V24Core8ResponseINS3_18CustomResponseDataEE3setEv) +STUB("KUG9TYTe0kU", _ZN8Gigacage9tryMallocENS_4KindEm) STUB("KUIRsku7EPk", sceNpLookupNetCreateRequest) +STUB("KUJtztDMJYY", _ZN3sce2np6HandleC1Ev) +STUB("KUMJF3eI5qg", _ZNK7WebCore18TextureMapperLayer9rootLayerEv) +STUB( + "KUPwdl27mSg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEptEv) +STUB( + "KUUD65AHP90", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("KUW22XiVxvQ", _ZTIPt) +STUB("KUYSaO1qv0Y", posix_spawnattr_getschedpolicy) +STUB( + "KUf41Uws3CI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEEC1Ev) +STUB( + "KUiiVZTERwU", + _ZN8meta_gen11MsvPromoter25setKeyValue_TBLV_EditableENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) STUB("KUjtdPZJo5I", sceAmprAmmMeasureAmmCommandSizeMapDirectWithGpuMaskId) +STUB( + "KUnNpJBtTpM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE7reserveEi) +STUB("KUoZ8Us3uP4", _ZN9Inspector20InspectorTargetAgent19sendMessageToTargetERN3WTF6StringERKS2_S5_) +STUB("KUolTh2gQ8k", curl_formget) +STUB( + "KV2IgtAPxX0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEE7get_refEv) +STUB("KV2WBZkh2wA", _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi20ParameterToJoinMatch10getmatchIdEv) +STUB("KV3zZOl84xA", _ZN3sce2Np9CppWebApi11Matchmaking2V15Error14setReferenceIdEPKc) +STUB( + "KV5UdnYcVYY", + _ZN3sce2Np9CppWebApi12Leaderboards2V130RecordScoreResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_23RecordScoreResponseBodyEEE) +STUB("KV8Q4aVSLWI", _ZN7WebCore14ProcessWarming15prewarmGloballyEv) +STUB("KV9KxWm9lOQ", _ZN3sce7Toolkit2NP2V23TUS7Request19AddToAndGetVariableC2Ev) STUB("KVDCpwJXoxw", scePs2EmuMenuDialogUpdateStatus) +STUB("KVEGkOFkk-A", mono_btls_ssl_set_cipher_list) +STUB( + "KVGDZ+RsHQQ", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeaders26unsetXPsnAtomicOperationIdEv) +STUB( + "KVGnbM2Fkgk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("KVIBeoIIX3o", _ZNK7WebCore14SecurityOrigin5equalEPKS0_) +STUB("KVJX+ztPuYI", _ZN7WebCore31CrossOriginPreflightResultCache5clearEv) +STUB("KVUeCjQZJEs", ucln_registerCleanup) +STUB("KVY7rLcxFig", _ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errorsD2Ev) STUB("KVaiKJwBWxA", sceDataTransferTargetGetRebootData) +STUB("KVakS0vdGAk", _ZN12video_parser8cPDLUtil15AnalyzeMoovAtomEPKcPjPb) +STUB("KVbmKCGGowg", FT_QRealloc) +STUB("KVc6rsgeFNw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEE7add_refEv) +STUB("KVehJeKp2gE", WKBundleInspectorShow) +STUB( + "KVgwH99-pzU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEmmEi) +STUB( + "KVsDlowUmmg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "KVsxm8Vqfro", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEeqERKS9_) +STUB("KVtXOV0OSEo", ucnv_countStandards) STUB("KVvM-cdU614", sceFiosDebugStatisticsPrint) +STUB("KVvPZx8-qI8", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEED2Ev) +STUB( + "KW3aBcv5DVc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB("KW5CiQ+4ggM", _Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm14TccPerfCounterE) +STUB("KW5JnX-5g-M", _ZN7WebCore17JSDOMRectReadOnlyC1ERKS0_) +STUB("KW5c3L4opsQ", _ZN7WebCore17JSDOMGlobalObject14finishCreationERN3JSC2VMEPNS1_8JSObjectE) +STUB("KW79RsF6cGE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEEcvbEv) +STUB("KWEMMPMT56w", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetail17setnpServiceLabelEi) +STUB("KWGLVItXyLI", _ZN12video_parser5vpcom5ChmodE) +STUB("KWHGDIIazQE", mono_aot_Sce_Vsh_Np_Snsunbox_trampolines_end) +STUB( + "KWN87aEDSd0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEC2EPS8_) +STUB( + "KWP7C+WQGUo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "KWR1lRjS0lA", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V138SetMultiVariablesRequestBody_variables9getSlotIdEv) +STUB("KWUeY5JdPC0", _ZN3JSC20AbstractModuleRecord8evaluateEPNS_14JSGlobalObjectE) +STUB("KWXH-ODiiOM", g_file_open_tmp) +STUB( + "KWYWEX8oU08", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEeqERKS9_) +STUB("KWYqIOv7gJk", _ZN9Inspector21CSSFrontendDispatcherC1ERNS_14FrontendRouterE) +STUB( + "KWZ++3nSFGE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEcvbEv) +STUB( + "KWaIysqOkZI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEEC2ERKSA_) +STUB("KWcGuZt8eNY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEE7add_refEv) +STUB("KWgiUk4hlnQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEC2ERS7_) STUB("KWkc6Q3tjXc", sceNpWebApi2PushEventSetHandleTimeout) +STUB( + "KWm4ZZNxFNA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE10setContextEPNS2_10LibContextE) +STUB("KWw5CoeIIoE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEC2ERS7_) +STUB("KWwIUfLC-7k", _ZNK3sce2Np9CppWebApi11UserProfile2V112BasicProfile17getPersonalDetailEv) +STUB( + "KWwKlT9hDkc", + _ZN3WTF28normalizeLineEndingsToNativeEONS_6VectorIhLm0ENS_15CrashOnOverflowELm16ENS_10FastMallocEEE) +STUB("KWzkWy+5ZN4", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead21unsetCreatedTimestampEv) +STUB( + "KX-uUV+jHzQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEC1Ev) +STUB("KX2YkCpfU1k", _ZN3sce7Toolkit2NP2V27Session12SessionImageC1Ev) +STUB("KX4zrnzZ+xU", uregion_contains_67) +STUB("KX7EOXJ2sU0", _ZN3sce7Toolkit2NP9Utilities10FutureImpl5resetEv) STUB("KXBnxqAeTuo", sceTextToSpeechInitImpl) +STUB("KXCpUqOBITM", __tsan_flush_memory) +STUB("KXMqfl+qPpU", _ZN7WebCore11FileChooserD1Ev) +STUB( + "KXNRl3L-ZzA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEE7add_refEv) +STUB("KXRozklP+Gc", _ZN3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMapD2Ev) +STUB( + "KXRsXZKZBf4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEED2Ev) STUB("KXUpebrFk1U", sceFontOpenFontMemory) +STUB( + "KXX1AkJEFuY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEmmEi) STUB("KXhNUtFALj4", scePktMgrPrepareUlpResPacket) +STUB( + "KXiIPJPkZ5A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEED2Ev) +STUB( + "KXj03PUzVAQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE7reserveEi) +STUB("KXj7+ueLvdo", _ZN7WebCore16DOMGuardedObjectD1Ev) +STUB("KXjpglDjSQg", usearch_openFromCollator_67) +STUB("KXllpv1tR48", _ZN3sce2Np9CppWebApi12Leaderboards2V14User7setPcIdERKi) STUB("KXltnCwEJHQ", sceGnmSetCsShader) +STUB( + "KXmWCTY32js", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13integer9IsSetEv) +STUB("KXrjdb69+ng", mono_btls_x509_store_ctx_get_current_issuer) +STUB("KXs2NHxXF+Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEEC1EPS6_) STUB("KXsx2C05JqA", sceNpEulaDialogInitialize) +STUB( + "KXwUL1ulsYw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE3endEv) +STUB( + "KXztnR5Y8LU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEEdeEv) +STUB("KY+yxjxFBSY", _ZTSSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE) +STUB("KY2CktBF-JY", _ZN18ScePssDecoderHevag19BufferedDecodeChunkEPKhjRjPsjS2_S2_) +STUB( + "KY324hFFehQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEE7get_refEv) +STUB( + "KY5GmG+ZsGA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEEdeEv) STUB("KY6RXUXi6ZQ", sceBgftServiceDownloadStopTask) STUB("KYBFFsmh0a0", sceApplicationSave) +STUB("KYCxXtE7N7w", _ZN3IPC15ArgumentDecoder6decodeERh) +STUB("KYICSuDQehA", _ZN7WebCore32useBlockedPlugInContextMenuTitleEv) +STUB("KYJPqbwNKNM", Java_java_lang_UNIXProcess_destroyProcess) +STUB("KYP4dz3-07c", udat_close_67) +STUB("KYRL0uRR90o", WKAXObjectCopyTitle) +STUB( + "KYU36JOpNzg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEEC1ERKSA_) +STUB("KYan1Hzj36c", _ZN3sce3Xml3Dom8Document11setWritableEv) +STUB("KYbFS0vO6qc", _ZN3sce2Np9CppWebApi10Activities2V114UserActivities8Activity13setActivityIdEPKc) +STUB( + "KYdbNrUtbrg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEppEi) +STUB("KYequxpcrV0", mono_config_is_server_mode) +STUB("KYfHQoyY9Uc", _ZN7bmalloc9Scavenger8scheduleEm) +STUB("KYhRsER-REQ", sce_pa_errno) +STUB( + "KYiDQVzpN5A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEmmEi) +STUB( + "KYmBAIcbj3s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEE3getEv) +STUB("KYvSdPcYv7o", _ZN7WebCore8SVGNames23color_interpolationAttrE) +STUB("KZ++filsCL4", _ZNKSt23_Generic_error_category7messageEi) +STUB( + "KZ+B6kY-quk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEC2EPKS8_) +STUB("KZ-4qlqlpmo", sigsuspend) +STUB("KZ0xIC-Ev2c", glCompressedTexImage2D) STUB("KZ1Mj9yEGYc", sceNpGetAccountLanguage) +STUB("KZ2QQCkqaiA", png_set_shift) STUB("KZ3qPyz5Opc", sceFontGraphicsSetupColorRates) +STUB( + "KZ9JMLm-7Ew", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEC1Ev) +STUB( + "KZBtepY6PKw", + _ZN9Inspector32DatabaseBackendDispatcherHandler18ExecuteSQLCallbackC2EON3WTF3RefINS_17BackendDispatcherENS2_13DumbPtrTraitsIS4_EEEEi) +STUB("KZF4xGSQH5c", _ZN7WebCore6ISOBoxC2ERKS0_) +STUB( + "KZFohfBOVEA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEaSERS7_) +STUB("KZG-hA-YYkc", _ZN3sce7Toolkit2NP11EntitlementC1Ev) +STUB("KZJ5ELP3rZo", _ZN3sce7Toolkit2NP2V29Messaging16GameDataMessagesC1Ev) +STUB("KZKA1qEWr+A", mono_profiler_install_code_chunk_new) +STUB( + "KZM7A2krDiM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEneERKS9_) +STUB( + "KZNBpKBfTzA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEC2Ev) +STUB( + "KZO0uIYCkPU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE7reserveEi) +STUB( + "KZUR2Pq+Omw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEEaSERKSA_) +STUB("KZUuOLlc4+E", _ZN3JSC11ProxyObject14finishCreationERNS_2VMEPNS_9ExecStateENS_7JSValueES5_) +STUB("KZVnrYipjII", _ZN3NTF21URLRequestFormElementD1Ev) +STUB("KZbHx6nNRQw", _m_key1) +STUB("KZbMDbQ7SB4", fuse_opt_add_opt) +STUB("KZchfealTT4", blockpool_unmap) +STUB("KZhIacsyBFY", + _ZN3sce2Np9CppWebApi13InGameCatalog2V517ContentDescriptorC1EPNS1_6Common10LibContextE) +STUB("KZm8HUIX2Rw", wcscat) +STUB( + "KZrrXByn58I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEED1Ev) +STUB("KZs6GUNKT4s", _ZN3JSC7Symbols38hostPromiseRejectionTrackerPrivateNameE) +STUB("KZtsnajJlPk", JVM_GetMethodIxByteCodeLength) +STUB("KZu4-aZ9VH4", rgctx_fetch_trampoline_mrgctx_25) +STUB("Ka-tCFE2G84", WKPreferencesSetRemotePlaybackEnabled) +STUB( + "Ka7dkog5hLQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEC1EPS8_) +STUB("KaA3zZO2-rM", WKPreferencesSetForceEnableVideo) +STUB("KaBSJa6nI+o", + _ZN7WebCore11JSDOMMatrix15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB("KaCBnJeelrE", mono_btls_ssl_set_verify_param) +STUB("KaK52lYTBIs", execv) STUB("KaOJiDrykP8", sceDebugGetUltSemaphoreInfo) STUB("KaPL3fbTLCA", sceRudpWrite) +STUB( + "KaQpqo6lqow", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("KaT6xb5qAEI", _ZN3sce7Toolkit2NP2V211SharedMedia10BroadcastsC2ERKS4_) +STUB( + "KaTORtGQQVw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEC2ERS7_) +STUB( + "KaUBHyFoSm4", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("KaUFjN7Vu+s", _ZN9Inspector27AnimationFrontendDispatchernwEmPv) +STUB("KaUqkpGhd5c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEED1Ev) +STUB("KaZ3xf5c9Vc", _ZN10__cxxabiv129__pointer_to_member_type_infoD1Ev) +STUB("KaZdCZRexB4", YGPrintOptionsToString) +STUB( + "KadPb+xSU-8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEC1Ev) +STUB( + "KaiK0p0FvmQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE21intrusive_ptr_add_refEPS9_) STUB("KakUxik9aqE", sceGicGetValue) +STUB( + "Kal9pULv7XM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEeqERKS9_) +STUB( + "KanXmz-cpzE", + _ZNK3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody21getLargeDataSizeLimitEv) +STUB( + "Kaq9RDKrYQ4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEC1EPS8_) +STUB( + "Kat2hLuF6Xs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEeqERKS9_) +STUB("KawLzB9gNHA", ucol_getAvailable_59) +STUB("KawS4Ly+geA", _ZNK3WTF10StringImpl14concurrentHashEv) +STUB( + "KawlHOGfPNw", + _ZN3sce2Np9CppWebApi13InGameCatalog2V515ContainerRating8setCountERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_20ContainerRatingCountEEEEE) +STUB("Kaxclf880Qk", _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE3endEv) +STUB( + "Kayx4yBLiJ4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("Kb+quP8eH5A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEC2Ev) +STUB( + "Kb+zDibixVs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE8copyFromERKS9_) +STUB("Kb1aK4XRj7I", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEE7get_refEv) +STUB("Kb1fMFCC-BM", _ZN3WTF15charactersToIntEPKhmPb) +STUB("KbACtwkLVlg", _ZN3sce7Toolkit2NP27ReceiveInGameMessageRequestC1Ev) +STUB("KbH6XiiluUs", _ZN7WebCore22EmptyFrameLoaderClient22provisionalLoadStartedEv) +STUB( + "KbQjJ0yVvOk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEE7add_refEv) +STUB( + "KbUTwoqQ6aM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEptEv) +STUB( + "KbUcVYkf01M", + _ZN7WebCore14SchemeRegistry57removeURLSchemeRegisteredAsBypassingContentSecurityPolicyERKN3WTF6StringE) +STUB("Kbat-vp1Y1g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEppEv) +STUB("Kbe+LHOer9o", _ZNKSt5ctypeIwE11do_scan_notEsPKwS2_) +STUB("KbeBjjWXFiU", + _ZN7WebCore19MediaQueryEvaluatorC1ERKN3WTF6StringERKNS_8DocumentEPKNS_11RenderStyleE) +STUB("Kbexb6kz+D0", _ZN10Deprecated25ScriptCallArgumentHandlerD1Ev) +STUB( + "KbkT3LkXNWc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEC1EPS8_) STUB("Kbkk1pQWhN4", sceNpTrophy2SystemRemoveAll) STUB("KblnYfZ5AGM", sceMusicPlayerServicePlay) +STUB("KbmhgE2eEEg", il2cpp_object_unbox) +STUB("KbmwmZUeE7o", _ZN7WebCore9CookieJarD1Ev) +STUB("KbpbxP8VROA", rgctx_fetch_trampoline_rgctx_83_p) +STUB("KbrWG6wNosM", _ZN7WebCore11DisplayList8FillRectD2Ev) STUB("Kc+3QK84AKM", sceNpScoreGetRankingByAccountIdForCrossSaveAsync) +STUB( + "Kc04F0D2TFI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEEC2Ev) +STUB("Kc4x2uy0FFk", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product7getSkusEv) +STUB("Kc5iNPK+E78", WKStringGetMaximumUTF8CStringSize) +STUB("Kc7h1XZWQBQ", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEE7add_refEv) STUB("Kc8KQ-sG2uA", sceSystemServiceGetSubAppTitleIdForSP) +STUB("KcAJ-JrL2+c", _ZN3WTF10StringImpl4findEPFbDsEj) +STUB( + "KcF2fYOtXew", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEEptEv) +STUB( + "KcJR4yp5yts", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE8capacityEv) +STUB("KcLvweRUpOk", _fcloseall) +STUB("KcM3hjvpqcc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEdeEv) +STUB("KcP38dakzls", _Z36sceRazorGpuThreadTraceEnableCountersPN3sce3Gnm17DrawCommandBufferE) +STUB("KcPayBFYTDc", _ZN3sce3pss4core9threading4CondC2ERNS2_5MutexEPKci) STUB("KcZzE5h0OBA", sceMbusDisableChat) +STUB("Kcb+MNSzZcc", _ZNSt12out_of_rangeD1Ev) +STUB("Kcev9l9zc3I", _ZN7WebCore21convertToIntegerClampIhEET_RN3JSC9ExecStateENS2_7JSValueE) STUB("KchFGsYSOX4", sceVnaSetVoiceOskOptInStatus) +STUB( + "KcnkcsKSCQo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEE11release_refEv) +STUB("KcnlC2XG-ZE", mono_aot_Sce_Vsh_ErrorDialogUtilWrapperjit_code_end) +STUB( + "Kcp1RfiZoec", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEEC1ERKSA_) +STUB( + "KcqxzLUCYNc", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayer35setxPSNSESSIONMANAGERNONPSNCALLERIDEPKc) +STUB("KcsG+O4IWSU", _ZN7WebCore8Settings17setPluginsEnabledEb) +STUB("KcsPAYEU960", AnnotateIgnoreWritesEnd) +STUB("Kcsi2Y+ZPEw", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V115NatConnectivityC2EPNS1_6Common10LibContextE) STUB("Kct67JaDmkY", sceSocialScreenSetIgnoreSeparateMode) +STUB( + "KcuwAtn5g7g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEED1Ev) +STUB( + "Kcv41mQHyKM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEEptEv) +STUB("KczZ-oYJWig", _ZNK7WebCore14StaticNodeList6lengthEv) +STUB("Kd+yyekmbjg", _ZN9Inspector18InjectedScriptBaseC1ERKS0_) +STUB("Kd0LYm4o0I0", _ZN7WebCore17NowPlayingManagerdlEPv) +STUB("Kd27z0vXe10", _ZN3sce7Toolkit2NP2V29Messaging24GameDataMessageThumbnailD1Ev) +STUB("Kd2o7aMyRAo", _ZN3sce7Toolkit2NP2V212EventsClient5EventC1Ev) +STUB("Kd9s4dhbip8", UI_get_string_type) +STUB("KdAc8glk2+8", _Tls_setup__Wctype) +STUB( + "KdBhqWwkICk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE3endEv) +STUB( + "KdFLaaVVY9s", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEC2Ev) +STUB("KdN6-6FV5YQ", _ZN3sce7Toolkit2NP2V26Friend15FriendsOfFriendC2ERKS4_) +STUB("KdP-nULpuGw", fgets) +STUB( + "KdQGlb1pipE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEdeEv) +STUB("KdQXdHK6YPg", _ZNK3sce3Xml3Dom4Node16getOwnerDocumentEv) +STUB("KdZvR4JTG-c", WKGrammarDetailCreate) +STUB("KddNzNAyySc", _ZN3JSC41DeferredStructureTransitionWatchpointFireC2ERNS_2VMEPNS_9StructureE) +STUB("KdhwRiCn9HE", _ZThn120_N7WebCore16HTMLMediaElement16returnToRealtimeEv) +STUB("KdkNXmhyLOM", _ZN7WebCore8Settings29setAsyncFrameScrollingEnabledEb) +STUB("KdlZsMZEy1s", jpeg_idct_6x6) +STUB( + "KdnLMGh3UXc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("KdoemZ8qogY", _ZN15AbstractStorage13YoutubeFolderD2Ev) +STUB("KdsYslQfES8", mono_type_get_type) STUB("KdvFp7l2qhA", sceMbusDumpHandleStatusInfoAll) +STUB( + "KdvbPxygPGk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEdeEv) +STUB("KdvkiSa4BXU", _ZN3sce7Toolkit2NP2V26Friend15FriendsOfFriendD2Ev) +STUB("KdxtVUZ-nyY", _ZN3WTF6ThreadD1Ev) +STUB("Kdycxbun5PA", + _ZN3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession8fromJsonERKNS_4Json5ValueE) +STUB("Ke-EQFve6sw", JSValueIsStrictEqual) +STUB("Ke-FEUbCsaU", _ZN3sce2np13JsonDocParser10initParserEv) +STUB("Ke2gIV4Q7+w", _ZN3JSC12StackVisitorC1EPNS_9CallFrameERNS_2VME) +STUB("Ke5OOCaB8d4", _ZN3sce2Np9CppWebApi14SessionManager2V127GetGameSessionsResponseBodyD2Ev) +STUB( + "Ke8NiesmBns", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEC1Ev) +STUB("KeBee2k5Re8", WKPreferencesGetSourceBufferChangeTypeEnabled) +STUB("KeC2-9FgNPM", + _ZN7WebCore14SchemeRegistry35registerURLSchemeAsCachePartitionedERKN3WTF6StringE) +STUB( + "KeGvbvzJDgU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEE5resetEPS9_) +STUB("KeJYMD2gPAE", izrule_clone_67) +STUB("KeK0jSSrBXA", mono_btls_x509_lookup_load_file) +STUB("KeOZ19X8-Ug", _Cosh) +STUB("KePwFKtrQ1E", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEEC2Ev) +STUB( + "KeQgZ7rj+bQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEE11release_refEv) +STUB("KeRehDbLCpw", _ZN3sce2np9JsonValue9GetObjectEv) +STUB( + "KeT-yfNKCbo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEixEm) +STUB("KeY5CX6MR1c", Java_java_lang_reflect_Array_getBoolean) +STUB("Kej6In9zyVk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE5clearEv) +STUB("KelUW3k13DU", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V219WebApiErrorResponse6toJsonERNS_4Json5ValueEb) +STUB( + "Kenjzm9IYBM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEEaSERKSA_) +STUB("KeqvhF68fXk", _ZN12video_parser5vpcom3rtc14TickAddMinutesEPmPKml) +STUB( + "Keudl39+No0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEmmEi) +STUB("KezpxMeDOOU", uloc_getCountry_67) STUB("Kf10sqhOoRY", sceKernelRtldControl) +STUB("Kf1zhg0rDdk", __tsan_read_range_pc) STUB("Kf7ZT3OOekI", sceNpIpcWaitRequest) +STUB( + "KfCkq5bmAe8", + _ZN7WebCore13JSDOMRectListC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_11DOMRectListENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "KfDFnoCdfLw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEC1EPKS8_) +STUB( + "KfFEtFKnPXg", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessions31setxPSNSESSIONMANAGERACCOUNTIDSEPKc) +STUB( + "KfG+LjB0+js", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEE21intrusive_ptr_add_refEPS7_) +STUB("KfGOHm3Eikw", _ZN7WebCore4Page26clearWheelEventTestMonitorEv) STUB("KfGZg2y73oM", sceNpCheckNpReachability) +STUB( + "KfIyMYjj1PY", + _ZN8meta_gen11MsvPromoter25setKeyValue_TBLAVC_HeightENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB( + "KfJmigH8dXc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEE11release_refEv) STUB("KfKBG2h2KdM", _sceLibcMspaceReallocalign) +STUB( + "KfLzRLJd85c", + _ZN7WebCore21SerializedScriptValue11deserializeERN3JSC14JSGlobalObjectEPS2_NS_22SerializationErrorModeE) +STUB( + "KfR9ncIMoSg", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScore25getrecordScoreRequestBodyEv) STUB("KfRNHvUILRQ", sceAvSettingDebugGetDetailedHdcpStatus) +STUB("KfVckn-hXxk", jpeg_idct_islow) +STUB("KfZoLeooz28", _ZThn16_N9Inspector22InspectorDebuggerAgent6resumeERN3WTF6StringE) +STUB("KfcTPbeaOqg", _ZTVSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE) +STUB("KfgXwyWcNMg", _ZN3WTF8JSONImpl5Value6createEPKc) +STUB("KfpqmLwti6U", _ZN7WebCore17SQLiteTransaction5beginEv) +STUB("Kfrnl4-MCyU", mono_aot_Sce_Vsh_Themejit_code_start) +STUB("Kfv9jPxf7qA", _ZN3sce2np14JsonDocBuilderD1Ev) +STUB("Kfz+Xg4hJiA", + _ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody15getWaitsForDataEv) +STUB("Kg+cTa1MwtM", _ZN3WTF14FileSystemImpl12fileMetadataERKNS_6StringE) +STUB("Kg1H2-GW5vw", mono_metadata_free_array) STUB("Kg1MA5j7KFk", sceNgs2FftInit) +STUB( + "Kg1U7CAbtio", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB("Kg2k4EHfqn0", AnnotateMutexIsUsedAsCondVar) +STUB( + "Kg51d2uVpro", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEC1EPS8_) +STUB("Kg5bKP3H6JY", _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody10unsetUsersEv) +STUB("KgEiWSn56Eg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE8capacityEv) +STUB("KgJToBpwViI", _ZN7WebCore9HTMLNames13aria_busyAttrE) +STUB( + "KgKDcCE4t8g", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEiRNS2_10LibContextEPT_m) +STUB("KgPtBJdBW-Q", Java_com_sun_havi_ui_FreeTypeFontFace_pIsCharAvailable) +STUB("KgQLdQ0w2r0", _ZN7WebCore18JSHTMLImageElement14finishCreationERN3JSC2VME) +STUB("KgiP4j-yQmI", _ZN3sce7Toolkit2NP2V210Tournament17OfficialBroadCastD1Ev) +STUB("Kgk1kkr5Zi0", _ZN7WebCore7Element18setAttributeNodeNSERNS_4AttrE) +STUB("KgkTT8H4vcs", + _ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody23userCenteredAroundIsSetEv) +STUB("KgnIbDX+l+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEEC1ERS9_) +STUB("KgzBbi3DUDA", _ZNK3sce3Xml4Attr7getNameEv) +STUB("Kgzdad6zFKE", YGDirectionToString) STUB("Kh-3sEIzTyM", sceApplicationRestore) +STUB("Kh-g69HFYZ8", + _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetail17hasnpServiceLabelEv) +STUB("Kh-kcKPoH4s", rgctx_fetch_trampoline_rgctx_96_p) +STUB( + "Kh-n9NSOQT4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEC2EPS6_PNS2_10LibContextE) STUB("Kh-t1fmxMnE", sceFsSetClusterCacheSize) +STUB( + "Kh1b7YMCB0Y", + _ZN3sce7Toolkit2NP11UserProfile9Interface14getCountryInfoEPNS1_9Utilities6FutureINS1_11CountryInfoEEEPKNS1_18UserProfileRequestEb) +STUB( + "Kh4OU-xB6YA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE7popBackEv) +STUB("Kh5AHixZrSo", _ZN3sce7Toolkit2NP2V212ActivityFeed13UsersWhoLikedC1ERKS4_) STUB("Kh6bS2HQKbo", sceHttpSetCookieRecvCallback) +STUB("Kh8dZZS0u0k", _ZNK3sce7Toolkit2NP15AppSTLAllocatorIcE8max_sizeEv) +STUB( + "Kh9F6Q-uutQ", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorI16SceNpTusVariableNS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv) +STUB("KhEp8eXn0SI", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_28ActivityFeedSharedVideoStoryEEC2ERKS4_) +STUB("KhG5XEHZYsM", _ZN7WebCore20PasteboardWriterDataC1Ev) +STUB( + "KhN0dL9tnTM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEdeEv) +STUB("KhNPclgFOIM", WKWebsiteDataStoreStatisticsSubmitTelemetry) +STUB( + "KhNcU-iEEbw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEppEi) +STUB( + "KhOI4fwt80Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEEC1ERSA_) STUB("KhQxhlEslo0", sceNetDhcpGetAutoipInfo) +STUB("KhR7n5Pphnw", WKWebsiteDataStoreSetResourceLoadStatisticsPrevalentResourceForDebugMode) +STUB("KhW-ubugVb8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEEC2ERKS7_) +STUB("KheIhkaSrlA", _ZNKSt7codecvtIwc9_MbstatetE16do_always_noconvEv) +STUB( + "Khf1b62Ldq0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE7popBackEv) +STUB( + "Khg0+ON0SXU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEEC2EPS8_PNS2_10LibContextE) +STUB("KhiuXZEixEo", _ZN7WebCore8Document10importNodeERNS_4NodeEb) +STUB( + "KhlqoDmvtCA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEC2EPS8_) +STUB("Khlt38metko", WKPageIsPlayingAudio) +STUB("KhoD7EapiYI", _ZN3sce2np4Time10AddMinutesEl) +STUB( + "Khrrt30Ao44", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEC1Ev) +STUB("KhsGgv1+YrE", ucol_setMaxVariable_67) +STUB("Khws8dt04Sk", _ZN7WebCore18PlatformPasteboardC1ERKN3WTF6StringE) +STUB("KhymfIzaujY", + _ZN9Inspector22InspectorDebuggerAgent19asyncCallIdentifierENS0_13AsyncCallTypeEi) +STUB("Ki0MvF8XNCk", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessionsD1Ev) +STUB( + "Ki9nbug7ysY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEE7get_refEv) +STUB("KiJEPEWRyUY", sigaction) +STUB( + "KiKhh5i9kwU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "KiM12cTEI+Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE21intrusive_ptr_sub_refEPS9_) +STUB("KiM4fXv6lcE", ubidi_setInverse_67) +STUB( + "KiRVPus6Q50", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEeqERKS9_) +STUB("KiVRUg0kPBM", u_isgraph_67) +STUB( + "KiX+UIzf3j8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEE11get_deleterEv) STUB("KiXYNfe7r9o", sceNpPush2SendPushStatisticsDataSystemTelemetry) +STUB( + "KiahCGGQryM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEC2ERS7_) +STUB( + "KiawwWkx6EA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEC1EPS6_PNS2_10LibContextE) +STUB( + "Kid72bvN5ak", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE3endEv) STUB("KidC5apWSEo", sceKernelStreamWriteActivate) +STUB("Kidh9uvn1J4", ERR_load_crypto_strings) +STUB("Kidpo7VIQZg", mono_code_manager_invalidate) +STUB( + "KiiWuEIL1fc", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountId15getasOfDateTimeEv) +STUB("Kilc1JNmtXE", _ZN3sce2Np9CppWebApi14SessionManager2V124PlayerSessionPushContextD2Ev) +STUB( + "KimurMtNHlc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEC1EPS6_PNS2_10LibContextE) STUB("KirVfZbqniw", sceNetThreadExit) +STUB( + "KitQxBdKz2M", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) STUB("Kiwv9r4IZCc", sceHttpCreateConnection) +STUB( + "Kixz3wprVbE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEEC2ERKSF_) +STUB("KiyYSAL94tA", _ZN3JSC14setNeverInlineEPNS_9ExecStateE) +STUB( + "Kj+ViKQdC0I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEED2Ev) +STUB("Kj28M63p0NI", _ZN9Inspector20CSSBackendDispatcherD1Ev) STUB("Kj4nXMpnM8Y", sceFiberStopContextSizeCheck) +STUB("KjA4JEfO6zA", ERR_error_string) STUB("KjAjcg3W7F8", sceNpPush2Term) +STUB("KjDDu4tYcyk", _ZN7WebCore29PerspectiveTransformOperationD2Ev) +STUB("KjFT+rXFyZs", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils13NetStateBasicEE3getEv) +STUB("KjJ-g2nVTa8", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS16FriendsVariablesEE3setEv) +STUB("KjKWaEacHq8", _ZN7WebCore9HTMLNames6dfnTagE) STUB("KjNeZ-29ysQ", sceNpWebApiSendRequest2) +STUB( + "KjO9tOd1MEA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEmmEv) +STUB( + "KjPIZlsp-n4", + _ZN3sce2Np9CppWebApi14SessionManager2V149PutGameSessionsSearchAttributesRequestBodyFactory7destroyEPNS3_42PutGameSessionsSearchAttributesRequestBodyE) STUB("KjPeVduz6jU", sceAgcDcbPrimeUtcl2GetSize) +STUB("KjSqwnyojRw", WKBundleSetPageVisibilityState) +STUB("KjW6KDcAnuA", _ZN3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator12setAccountIdERKm) +STUB("KjXpVcQXaYc", _ZN3sce2np8NpTicketD0Ev) +STUB("KjfjFCr-FwY", _ZN7WebCore5Frame17injectUserScriptsENS_23UserScriptInjectionTimeE) +STUB("KjhVL0bWpjM", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEEcvbEv) +STUB("Kjjh+xfQM2U", + _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody16unsetRulesetNameEv) +STUB( + "KjlHGEbsjaw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE3endEv) +STUB("KjmJPFRWxv8", _ZN3JSC8Debugger9callEventEPNS_9ExecStateE) +STUB("Kjnf0JIZhoI", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession19unsetExpirationTimeEv) +STUB("Kjq3MUK1Was", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEEptEv) +STUB("Kjue4SKgkuM", ucol_openBinary_67) STUB("Kk0eIncAb40", sceSdmaMapUserVAddress) +STUB( + "Kk1+VE2MbuQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEeqERKS9_) +STUB("Kk1mPmCyrME", _ZN3JSC2VM22debuggerScopeSpaceSlowEv) +STUB("Kk4QlGJ+xZs", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatusC1EPNS1_6Common10LibContextE) +STUB("Kk6y25QoAZY", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEEixEm) +STUB("Kk9wy--VFwo", WKContextSetPrimaryWebsiteDataStore) +STUB("KkCa8NusMEU", _ZNSbIwSt11char_traitsIwESaIwEEaSEOS2_) +STUB( + "KkJC+qYM0Bc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEEC2ERKSA_) +STUB( + "KkKlbyE7m78", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot9hasoffsetEv) +STUB( + "KkLCnmV7ehs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEmmEv) +STUB("KkQWf6HzHrQ", uhash_equals) +STUB( + "KkXw5iwhfjo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEC1ERS7_) +STUB( + "KkYadbu5k5o", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB( + "KkcYvKmy8cM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE21intrusive_ptr_add_refEPS9_) STUB("KkcyBpHeV6Q", sceCesMbcsStrGetUtf16Len) +STUB("KkdDDm70AMY", _ZN3WTF11Persistence7Encoder14encodeChecksumEv) +STUB("KkdnVtWcogE", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getBoolean5Ev) +STUB("Kkgg8mWU2WE", _WPuttxt) STUB("KkhdeVCyo6Y", sceAudiodecCpuInternalInitDecoder) +STUB( + "KklEseLms-U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEE11release_refEv) +STUB( + "KkmXepLpnRg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEC1EPS8_) +STUB("Kky+pXcoHFY", _ZN7WebCore18TextureMapperLayer16setMasksToBoundsEb) +STUB( + "Kl-SzWbQ-Sk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) STUB("Kl-TbrDU9YM", sceFiosFHWriteSync) STUB("Kl0Z3LH07QI", sceGnmLogicalTcaUnitToPhysical) +STUB("Kl4-xz27q40", _ZNK15AbstractStorage14FacebookFolder13GetCapabilityEv) +STUB( + "Kl7W-nTYdBM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE21intrusive_ptr_add_refEPS9_) STUB("Kl9aRhwtXBM", sceSysUtilSendSystemNotificationWithUserNameInfo) +STUB( + "KlBkt4lpi2Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE5emptyEv) +STUB("KlDbs94HbnA", Java_java_lang_SecurityManager_currentLoadedClass0) +STUB("KlEYv40LnDY", _ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody13locationIsSetEv) +STUB( + "KlHru9x4veY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEaSERKS9_) +STUB( + "KlHvSkqHNh8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE3endEv) +STUB("KlRDG7pC24w", _ZN7WebCore7Element9setPseudoERKN3WTF10AtomStringE) +STUB("KlantyMjg4g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEppEi) +STUB("Kldlmzst-Yc", _ZN7WebCore24decodeURLEscapeSequencesERKN3WTF6StringE) +STUB("KleASq-sCZY", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification16FriendlistUpdateEED1Ev) +STUB( + "KliDGgkKD-0", + _ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody13setSearchableERKb) +STUB("KliQ-mvV3Y0", _ZNK3WTF9MediaTimeplERKS0_) +STUB("KljhnbDl6I8", _ZN3WTF9dayInYearEdi) +STUB( + "KlnrFPwhhqI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEE11get_deleterEv) +STUB("KlpVs+cuiKk", WKWebsiteDataStoreIsStatisticsRegisteredAsSubresourceUnder) +STUB("KlqCb-hh5jo", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking10UsersRanksEE3getEv) +STUB("Km7hnD3lKM8", _ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody10getCommentEv) +STUB( + "Km9IeqR8Yv4", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getBoolean3Ev) +STUB("Km9L-W0KqIs", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE6resizeEj) +STUB("KmB93+0Mmm0", _ZN7WebCore14JSWebAnimation4infoEv) +STUB( + "KmDSMezsbGo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE21intrusive_ptr_add_refEPS9_) +STUB("KmGMb0vPPB0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE3endEv) +STUB( + "KmJiMwOy2EQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEEcvbEv) STUB("KmN62tT4U8A", sceNpUniversalDataSystemGetStorageStat) +STUB( + "KmQXzuTUKSU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEE7get_refEv) +STUB("KmUbPP3aSEQ", mono_aot_SMDiagnosticsunbox_trampoline_addresses) +STUB("KmZb7Z-WTxg", __tsan_read1) +STUB( + "KmfNK+L6WZc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("KmfpnwO2lkA", _Touptab) +STUB( + "Kmjb-2+TYDY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE21intrusive_ptr_sub_refEPS9_) STUB("KmnzivWo2xk", sceCesUtf16beToUhc) +STUB( + "KmvGLgh58bs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEaSERKS9_) +STUB("Kn0eVHQ8lFk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEE7get_refEv) +STUB("Kn5YBcFnXD8", _ZN3JSC7Symbols13speciesSymbolE) +STUB( + "KnBglB-KXTA", + _ZN3sce7Toolkit2NP7Friends9Interface12getBlockListEPNS1_9Utilities6FutureISt6vectorINS1_6NpUserENS1_15AppSTLAllocatorIS7_EEEEEPKNS1_22BlockedListInfoRequestEb) +STUB("KnCMTTJWLdg", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry20getHighestSerialRankEv) STUB("KnCfheGONas", sceNpGriefReportDeleteTicketData) +STUB("KnIv2Ehxegc", _ZN7WebCore17HTMLCanvasElement9toDataURLERKN3WTF6StringEN3JSC7JSValueE) +STUB("KnJJQjrLyWc", Java_com_sony_bdjstack_javax_media_controls_SoundManager_getPanningLR) STUB("KnNA1TEgtBI", sceNpScoreCreateNpTitleCtx) STUB("KnOXRM1i6KM", sceNpPush2OptionalCheckCallback) +STUB("KnQ5SdQ4FxU", _ZN7WebCore11DisplayList20FillRectWithGradientD2Ev) +STUB( + "KncijCmcEsk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser7setsortENS5_4SortE) STUB("KnhTdl8Arjw", sceAppInstUtilAppGetInsertedDiscTitleId) STUB("KnldROUkWJY", sceGnmGetNumTcaUnits) +STUB("Knnq2wiIFDE", _ZNK7WebCore25BackForwardItemIdentifier7isValidEv) STUB("KnsfHKmZqFA", sceShareUnregisterContentEventCallback) +STUB("KnwgxyX0dKU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEEC2ERKS7_) +STUB( + "Knz775Hm5fw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEE11release_refEv) +STUB( + "Ko3BJrVcfrk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE8pushBackERKS8_) +STUB("Ko3uVv592-0", _ZN8meta_gen14ImageRetriever13SetBaseValuesEP27FilePromoteInnerInformation) +STUB("Ko4uJg5vRxQ", mono_string_new_utf16) +STUB( + "Ko4wz2SoPP0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) STUB("Ko8fB-6YDp8", sceAvSettingNotifyProcessSuspend) +STUB( + "Ko9L-U5CNcY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEC1ERS7_) +STUB("KoEZalvDago", _ZN3sce7Toolkit2NP2V27Ranking7Request15GetFriendsRanks8MAX_PCIDE) +STUB( + "KoINSmJueAM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEE11get_deleterEv) +STUB("KoJK1n4dwBE", unorm_isNormalizedWithOptions_67) +STUB("KoLOdQb0LSs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEixEm) +STUB("KoNIyv18TCU", _ZN12video_parser5vpcom6StringC1EPKc) +STUB( + "KoPQBLvkW48", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEC2Ev) +STUB( + "KoW+Tks8LjY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEC1EPS6_PNS2_10LibContextE) +STUB( + "KoXnQhmHAYk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEEC1EPS8_PNS2_10LibContextE) +STUB("KooB8zcw25I", g_JSWebAssemblyCodeBlockPoison) +STUB("Koq-Aaiwd3w", _ZN7WebCore8SVGNames9styleAttrE) +STUB("Koq9Z-B4jcQ", _ZN15AbstractStorage10YoutubeAPIC1Ev) +STUB("Koswc4Sp+N4", WKPageCopyUserAgent) +STUB( + "KotAMcjr1-Q", + _ZN3sce2Np9CppWebApi12Leaderboards2V120ErrorResponseFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_5ErrorEEEPNS8_INS3_13ErrorResponseEEE) STUB("KovqaFbmtsM", sceAcm_FFT) +STUB("Kp3vVYSOEpg", _ZN3JSC16globalParseCountE) +STUB( + "Kp43-Nl5kYM", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer41unsetxPSNSESSIONMANAGERREQUESTEXACTORIGINEv) +STUB( + "Kp465Q-Q-FE", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeaders15setLastModifiedERKNS1_6Common6StringE) STUB("Kp6juCJUJGQ", sceHttpSetCookieMaxNumPerDomain) +STUB("Kp6s44X0apU", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container14unsetPlatformsEv) +STUB("Kp9HNIoMtOg", _ZTVN9Inspector22AuditBackendDispatcherE) STUB("KpBKoHKVKEc", sceAudioInExtInput) STUB("KpCv0rernZQ", sceKernelAddACInfo) +STUB("KpDMrPHvt3Q", module_stop) +STUB("KpFK6YNWRCY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEC2ERS7_) +STUB("KpJXyTP7N7Y", WKContextClearCachedCredentials) +STUB("KpKkyRanFJE", ucasemap_toTitle_67) +STUB( + "KpN1DSM89TA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("KpNlWURZZ2k", _ZN3JSC7Symbols17RegExpPrivateNameE) +STUB( + "KpTVnt-DHo8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEneERKS9_) +STUB("KpbPWzWAgCM", _ZN7WebCore15HitTestLocationD1Ev) STUB("Kpds+6CpTus", sceUserServiceGetPbtcTuesdayHoursEnd) +STUB("KpfPb4yrOIM", WKBundleNodeHandleSetHTMLInputElementSpellcheckEnabled) +STUB( + "Kpg0UuMU9C4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE4sizeEv) +STUB( + "Kpmgl7vUr0w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "Kpuc7WFjNkw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEC2EPS7_PNS2_10LibContextE) +STUB("Kpv2tL+xy8Y", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEixEm) STUB("Kq+ftR9LHlE", sceNpServiceChecker2IntAbortRequest) +STUB( + "Kq-ajapICp8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEC2EPKS8_) +STUB( + "Kq5fRow+gmE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEEC2EPS8_PNS2_10LibContextE) +STUB("Kq7K6lgbTZE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEdeEv) +STUB( + "Kq9B7tMlmUc", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_11EntitlementENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB( + "KqCAAxfG7VY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "KqGvgCESK-4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEED1Ev) +STUB( + "KqHbd+8eysE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEEC2ERSA_) +STUB("KqOexIPqPLw", _ZN7WebCore19JSDOMMatrixReadOnly6s_infoE) +STUB( + "KqOvPKgnVIU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("KqQuvMOe4V4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEEC2ERKS7_) +STUB( + "KqRa9KLUjy4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEC1Ev) +STUB("KqYTqtSfGos", islower) +STUB( + "KqbcYlW0Wew", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEneERKS9_) +STUB("KqdclsYd24w", _ZNSt9_Num_base12min_exponentE) STUB("KqgeUD6DFjM", sceCesUtf16leToGb) +STUB( + "KqhJ2-IKM7Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEE5resetEPS6_) +STUB( + "KqhijkoGWSU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) STUB("KqiWXLgCVe0", sceAmprAmmGetUsageStatsData) +STUB("KqkTmCmqddQ", ures_getUTF8String) +STUB("KqlUJH+uAeo", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session7SessionEE5resetEv) +STUB( + "Kqlg1zZruwQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEC1EPKS8_) +STUB( + "KqqLAd1XYvk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEC2Ev) +STUB( + "KqunwUtF+EA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEixEm) +STUB("Kqv-zZ9xSIU", WKBundlePageCreateSnapshotWithOptions) +STUB("Kqvjr+JcESw", _ZN3sce7Toolkit2NP9NpTitleIdC2Ev) +STUB( + "Kr11oQb6R30", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) STUB("Kr5t-EKudMI", _sceLibcInternal) +STUB( + "Kr6YtxnrK-M", + _ZN9Inspector24NetworkBackendDispatcher21interceptWithResponseElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("Kr6i3xjqHVM", _ZN7WebCore9HTMLNames12longdescAttrE) +STUB("Kr72BjgQy8o", g_array_free) +STUB( + "Kr7iaPEzPFc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE5emptyEv) +STUB("Kr9VnTTB6ps", _ZN9Inspector17ScriptDebugServerdlEPv) +STUB("KrAUJMghj1A", _ZNK3JSC19ControlFlowProfiler8dumpDataEv) +STUB( + "KrBV6wkL6E4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEE11get_deleterEv) +STUB( + "KrGU+MxrQV4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "KrHLbNzqRFo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEC1Ev) +STUB("KrITF2YFQH0", mono_string_chars) +STUB("KrJLG5ck2IA", _ZN7WebCore13GraphicsLayer12setZPositionEf) +STUB("KrKM-5SdQrA", _ZNK3sce4Json6String2atEm) +STUB( + "KrLsfLV53u0", + _ZN3sce7Toolkit2NP6Trophy9Interface18trophyRetrieveListEPNS1_9Utilities6FutureINS1_10TrophyInfoEEEbi) +STUB("KrP+Brx0nFA", _ZN7WebCore4Node23compareDocumentPositionERS0_) +STUB("KrQqHg5TE74", _ZN25MmsFileUpdaterFsOperation9writeFileEPKvj) +STUB("KrVSgCx9Fos", _ZNK3JSC14FullCodeOrigin4dumpERN3WTF11PrintStreamE) +STUB("KrVXrd3WyfM", WKAXObjectPage) STUB("KrVpaPTkwyE", sceNpUniversalDataSystemIntRecordObjectSetFloat64) +STUB("KrVwLqIO6RI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEEaSERKS9_) +STUB( + "KrZC9IGibdg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE7popBackEv) +STUB("KraCNmh2LzA", + _ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayerC1EPNS1_6Common10LibContextE) +STUB( + "KraT52rXGeM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("KrbQ3KYcvUY", _ZN3NTF17URLRequestJobImplD2Ev) +STUB( + "KrdOh4pGIzE", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations34hasxPSNSESSIONMANAGERINVITATIONIDSEv) +STUB( + "KrdhTDT+eQ8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V128SetMultiVariablesRequestBodyC1EPNS1_6Common10LibContextE) +STUB("KreckU5qLhw", mtx_seqno) +STUB("KrfpsXXdW-w", _ZNK9Inspector15InspectorTarget8isPausedEv) +STUB("KrftZ0w-4Ds", tt_driver_class) +STUB("Krh6kY66aQ0", _ZNK3WTF8JSONImpl5Value9asIntegerERj) +STUB( + "KrhH1Rfx548", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE10setContextEPNS2_10LibContextE) +STUB( + "KrjHRE8zeBg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE6resizeEj) STUB("Krket2SyCfk", sceSdmaFlushAllCb) +STUB( + "KrknTYpHnss", + _ZN3sce2Np9CppWebApi7Matches2V135RequestTemporaryMatchResultsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_28RequestTemporaryMatchResultsEEE) +STUB( + "KrpH9UQ2CpU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEED1Ev) +STUB("Krr2-TrnIYE", uprv_uint32Comparator) +STUB( + "KrrTgXp0Pc0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE8pushBackERKS8_) +STUB( + "KrsjCRMqGaI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEmmEv) +STUB( + "Krt-A7EnHHs", + _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8get_yearES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm) STUB("Kru1Y4HvomI", scePatchCheckerRequestCheckPatchByType) +STUB("Ks2FIQJ2eDc", _ZTISt10moneypunctIcLb1EE) +STUB( + "Ks3ryhyLfOE", + _ZN7WebCore13JSDOMRectListC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_11DOMRectListENS6_13DumbPtrTraitsIS8_EEEE) +STUB("Ks9FCieTJsk", _ZN7WebCore14DocumentLoader13attachToFrameEv) +STUB("KsCZQEPMEDg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEEaSERKS6_) +STUB("KsDG+2lezLQ", _ZN4IPMI4impl10ServerImpl16doConnectRequestEiPvi) +STUB( + "KsELFifqK5I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEEC1ERSA_) +STUB("KsMv4hOUhRo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEC2Ev) +STUB("KsMx5knzLMM", WKCookieManagerSetCookieStoragePartitioningEnabled) +STUB("KsOF6LD6ZMM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEEptEv) +STUB( + "KsRVN4nT7Mc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEneERKS9_) STUB("KsVTc04kN9k", sceFiosDeleteSync) +STUB("KsWNFdY5HWk", AnnotateFlushExpectedRaces) +STUB("KsX8socad1w", mono_aot_System_Web_Servicesjit_got) +STUB( + "KsXvYtAer5o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEC1EPS6_PNS2_10LibContextE) +STUB("KsZzSwxYS0k", _ZN3sce2np14JsonObjectImplC1EP14SceNpAllocator) +STUB("KsauFW4-GH4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEEaSERS6_) +STUB("Ksc-oasfuWI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE7reserveEi) +STUB("KsePYAic108", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEC2Ev) +STUB("KsgkYB0yUrc", _ZN3sce2Np9CppWebApi6Common6VectorIjE6insertENS2_8IteratorIjEERKjRS6_) +STUB("Ksofj08b+b8", _ZN7WebCore4Page28setPaginationLineGridEnabledEb) +STUB("KsuCiTAi+Co", mono_install_ftnptr_eh_callback) +STUB("KsvuhF--f6k", CA_MGMT_extractCertTimes) STUB("KswxLxk4c1Y", sceNpRegisterGamePresenceCallbackA) +STUB("Ksx3C3GaXWY", _ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession14getSearchIndexEv) +STUB("Kt+4DRHYz+o", _ZN7WebCore14SecurityOrigin12createUniqueEv) +STUB( + "Kt1+TZZvWHY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEC1Ev) STUB("Kt1k5aBzrcE", sceLncUtilSystemSuspend) +STUB("Kt2gl4NHSjI", _ZN3sce7Toolkit2NP2V27Session7Request4Join15MIN_INDEX_VALUEE) +STUB( + "Kt3HPlxNonE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEEaSERSA_) +STUB( + "Kt3N561dED8", + _ZN3sce2Np9CppWebApi14SessionManager2V131ResponsePlayerSessionInvitationC1EPNS1_6Common10LibContextE) +STUB( + "KtCWvuYFHp4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEE7get_refEv) +STUB( + "KtHBVEzb7Lk", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeOnlineId2AccountIdBatchC1Ev) STUB("KtIXf8La96k", sceAgcDriverRegisterGpuResetCallbacks) +STUB( + "KtLYQUbxJCA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEmmEi) +STUB("KtMM-5WGMnQ", _ZN7WebCore8Document15createElementNSERKN3WTF10AtomStringERKNS1_6StringE) +STUB("KtO3l4R5GP8", _ZN15AbstractStorage12LocalContent5CloseEv) +STUB("KtU8gRo-GLg", JSGlobalContextCopyName) +STUB( + "KtawGlA4mMU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE5clearEv) +STUB("KtflIzzo2yw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEixEm) +STUB("KtgcveZxnco", + _ZN3WTF6String28numberToStringFixedPrecisionEdjNS_29TrailingZerosTruncatingPolicyE) +STUB("KthcIQGWjVw", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge10ChallengesEE3setEv) +STUB("KtneCuN1Yc0", il2cpp_set_config_utf16) +STUB( + "KtpMT7o2zMU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEaSERKS9_) +STUB( + "Ktq2-w2QgAY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("Ktw+4DDd-60", RemotePlayGeneratePinCode) +STUB("Ku+75b5QYds", _ZN3sce2Np9CppWebApi7Matches2V120ResponseMatchResultsD1Ev) +STUB( + "Ku--sumZwbg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("Ku-NWyHoPiE", _ZN7WebCore4Node7inspectEv) STUB("Ku-fUYDmlPc", sceNpTrophySystemGetTrpTrophyIcon) +STUB("Ku0Rs703XaI", ucnv_setSubstChars) +STUB("Ku19S1-+ao4", _ZN12Mp4Retriever11mp4TimeToTmEmR2tm) +STUB( + "Ku4YDa3+9Ks", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEEdeEv) +STUB("KuApGRTlBrI", il2cpp_profiler_install_enter_leave) +STUB("KuArfZk6xEU", cairo_matrix_init) +STUB( + "KuCa8N0a42M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEppEv) +STUB( + "KuFAxlAYB18", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEC1EPS8_) +STUB( + "KuH8wFBW7DM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("KuJkc0qDvOQ", FTA_Remove_Module_pshinter) +STUB("KuOmgKoqCdY", bind) +STUB("KuOuD58hqn4", malloc_stats_fast) +STUB("KuR0yJpMwps", _ZNK7WebCore13HitTestResult21linkSuggestedFilenameEv) +STUB("KuRixPbXnOc", _ZN3sce7Toolkit2NP2V27Ranking17SetGameDataResultC1Ev) +STUB( + "KuStIg73ymE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE21intrusive_ptr_sub_refEPS9_) STUB("KuXcrMAQIMQ", sceSaveDataGetAppLaunchedUser) +STUB( + "KuYbFqNXjS8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEptEv) +STUB("KujfzRnzfD4", mono_aot_Mono_Dynamic_Interpreterjit_code_start) +STUB("KulXdwODQpc", _ZN8meta_gen13TiffRetriever12TiffTypeSizeE) +STUB("KuqaI5CqTFM", _ZThn16_N9Inspector22InspectorDebuggerAgent5pauseERN3WTF6StringE) +STUB( + "Kus0mNuEov0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEEcvbEv) +STUB( + "Kuvvcx5zd80", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE5beginEv) +STUB("KuwfGqH0wQs", _ZN3JSC19iteratorForIterableEPNS_14JSGlobalObjectEPNS_8JSObjectENS_7JSValueE) STUB("KuzCRxc5mVI", scePssAudGetSurroundPan) +STUB("Kv--uLXHSWU", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18SessionInformationEEeqERKS4_) +STUB( + "Kv6g5UfXRRo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEE11release_refEv) +STUB("Kv6hlDg-Mg0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE3endEv) +STUB("Kv8XXD7X7XQ", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11UserProfile10NpProfilesEEC1Ev) +STUB( + "KvBnliOb4B8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEC2EPKS8_) +STUB("KvDqpabvhtI", _ZN7WebCore9PageGroupC2ERKN3WTF6StringE) +STUB("KvOHPTz595Y", atanl) +STUB( + "KvPFGT-aZMg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEEaSERKSA_) +STUB("KvRrPrZJEC0", _ZN3sce7Toolkit2NP2V23TSS7TssData5resetEv) +STUB("KvSudcCuVuQ", _ZN3sce7Toolkit2NP2V28Commerce10CategoriesaSERKS4_) +STUB( + "KvY3jcB9K2M", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("Kvcr4zxrBSo", _ZNK3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator11getOnlineIdEv) +STUB("KvozVIZh-kE", _ZN7WebCore19InspectorController22disconnectAllFrontendsEv) +STUB( + "KvpqH+lsJ7g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEC1EPS8_) +STUB("Kvsd01XuBdw", Java_com_sony_bdjstack_javax_media_controls_SoundManager_getDataId) +STUB("Kvwt4LprRVo", _ZL21thread_local_handlers) +STUB("KvynR5jW0GU", mono_sha1_final) +STUB( + "Kw3N9fQDgYg", + _ZN3sce2Np9CppWebApi14SessionManager2V138ResponseGameSessionMemberPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_31ResponseGameSessionMemberPlayerEEE) +STUB( + "Kw6M5tglEi4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEEC1ERSA_) +STUB("Kw7arNPVPak", WKPageLoadURLWithShouldOpenExternalURLsPolicy) +STUB( + "Kw8-0IsK6ko", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEEC1ERKSA_) +STUB("KwF25HOuthQ", _ZN12video_parser16cVideoContentMp419getProfilerInstanceEPPNS_14iVideoProfilerE) +STUB( + "KwJ5V3D0v3A", + _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE11get_weekdayES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm) +STUB( + "KwPm9p8k0GA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE3endEv) +STUB("KwQN78iZcJU", WKPageIsPinnedToLeftSide) +STUB( + "KwRx+nvmfus", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE4sizeEv) +STUB("KwVnRtplhDU", _ZN7WebCore11DisplayList7RestoreD0Ev) +STUB("KwbKIselApA", _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead14getSearchIndexEv) +STUB("KwfoMI5b8j4", _ZNK7WebCore17ActiveDOMCallback28activeDOMObjectsAreSuspendedEv) +STUB("KwouRn304Pk", mono_aot_Sce_Vsh_DbPreparationWrapperunbox_trampolines) +STUB("Kws3rxyV2Wo", _ZN7WebCore8SVGNames8hkernTagE) +STUB("KwtehBFKMNY", _ZN3WTF11Persistence7DecoderD1Ev) +STUB( + "KwuvoIxo6lM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEC1Ev) STUB("Kx-h-nWQJ8A", sceGnmSetCsShaderWithModifier) +STUB("Kx1tARP42kI", _ZN3sce7Toolkit2NP2V28Commerce7Request11GetProducts14MAX_CATEGORIESE) +STUB( + "KxDDP5bHLB8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE5emptyEv) +STUB("KxDqhRL7C+w", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_25ChallengeBinaryDataResultEED2Ev) STUB("KxGkOrQJTqY", sceNpAuthGetAuthorizationCode) +STUB("KxJvAf9SMH4", getpwuid_r) +STUB( + "KxQYqLmoRvM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEC2EPS8_) +STUB( + "KxT0LzeguEc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE8pushBackERKS8_) +STUB("KxTVuhlCL7o", _ZN15AbstractStorage14StorageManagerC1Ev) +STUB( + "KxaA89zRDPM", + _ZN8meta_gen11MsvPromoter33setKeyValue_TBLAVC_LastUpdateTimeENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB("KxbWXf8o08c", _ZNK7WebCore18TextureMapperLayer8childrenEv) +STUB("KxchXw2Sksc", mono_aot_Sce_Vsh_ShareGuideSceneunbox_trampolines_end) +STUB( + "KxdOHwVmRso", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEEaSERSA_) +STUB("KxfKjk0Awa4", _ZN3WTF8JSONImpl10ObjectBaseD0Ev) STUB("KxitkrVcrSg", sceLoginMgrServerSetSharePlayMode) +STUB("KxkOl8nbei4", _ZN7WebCore8Document16addAudioProducerERNS_13MediaProducerE) +STUB("KxlKRHLf9AY", _ZN3sce2np3ipc17ServiceIpmiClient4ctorEv) +STUB("KxvJlq1yxeI", + _ZN7WebCore20LegacySchemeRegistry36registerURLSchemeAsAlwaysRevalidatedERKN3WTF6StringE) +STUB( + "KxwpRyQ+Hso", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE5beginEv) +STUB("KxznwwQatpA", _ZNK3sce2Np9CppWebApi13InGameCatalog2V513ContentRating6toJsonERNS_4Json5ValueEb) +STUB("Ky+C-qbKcX0", _ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1ERKSt8_Locinfom) +STUB("Ky1DgTs+jg8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE3endEv) +STUB("Ky5cMthuYF0", _ZN3sce7Toolkit2NP2V29Messaging7Request22ConsumeGameDataMessageD1Ev) +STUB( + "Ky6BAocZeo8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEmmEv) +STUB( + "Ky8QaOap-cM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEC2ERS7_) +STUB("Ky8m3qWEwjE", EVP_PKEY_type) +STUB("KyAqkJDBjnE", il2cpp_runtime_object_init) STUB("KyB1IAY2BiU", sceNpUtilNpIdToJid) +STUB( + "KyC5RGxcKeE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("KyDWNwpREH4", _ZNK3sce2np10Cancelable6IsInitEv) +STUB("KyEyVSdTW7U", _ZN7WebCore22HTMLFormControlElement13setFormActionERKN3WTF10AtomStringE) +STUB( + "KyLIkyDWklQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("KyMRVd0swPc", _ZN3sce2Np9CppWebApi12Leaderboards2V15Entry12setAccountIdERKm) +STUB("KyNlev03N2o", udata_checkCommonData_67) STUB("KyQY2KfMxKw", sceShellCoreUtilIsGameLiveStreamingOnAir) +STUB("KyYcTJPssvU", _ZN7WebCore16ResourceResponseC2Ev) +STUB( + "KyYeShmjXyo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "KyZXahlUY6E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEEC2EPS8_PNS2_10LibContextE) +STUB( + "KycsQE8LkS0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) STUB("Kyls1ChFyrc", scePthreadRwlockattrGettype) +STUB("KyqoPkNIvyc", mono_aot_Systemplt_end) +STUB( + "KyzdEsu2Iy8", + _ZN3sce2Np9CppWebApi11UserProfile2V132GetPublicProfilesResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_25GetPublicProfilesResponseEEE) +STUB("Kz-S-XwSOGA", _ZNK7WebCore18SecurityOriginData14securityOriginEv) +STUB( + "Kz0yQBD7yJU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB("Kz1szGTEils", _ZN3sce7Toolkit2NP2V24Core7Request11MemoryPools21HTTP_MEM_DEFAULT_SIZEE) +STUB( + "Kz21Q+gdpV4", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_11ProductInfoENS1_15AppSTLAllocatorIS5_EEEEC2Ev) +STUB("Kz9qqimlh48", _ZNK7WebCore8Document11windowProxyEv) +STUB( + "KzCSdPeqlt0", + _ZN7WebCore11DisplayList12PutImageDataC2ENS_22AlphaPremultiplicationERKNS_9ImageDataERKNS_7IntRectERKNS_8IntPointES2_) STUB("KzDPh7twuDg", sceNpHeapMallocImpl) +STUB( + "KzIYLuJHyIM", + _ZN7WebCore4Icon18createIconForFilesERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16EEE) +STUB( + "KzODefKMdC0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "KzPiLzJ6Dbc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "KzS5hTyR0zI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEEC1ERKS9_) +STUB("KzSFgeUXy2E", curl_mime_type) +STUB( + "KzWPUUZiU9E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEEaSERSA_) +STUB( + "KzWUGdBxrPc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE3endEv) +STUB("KzZlFVnOAUg", _ZN3WTF9MediaTime16MaximumTimeScaleE) +STUB("Kzb3S1kIF9Y", _ZNK3sce2Np9CppWebApi7Matches2V119RequestInGameRoster6toJsonERNS_4Json5ValueEb) +STUB("Kzbvd9G7ieE", glTexParameteri) +STUB("KzcrFzKpYE8", u_strCaseCompare) +STUB("Kzl3HfOgREw", mono_get_sbyte_class) +STUB("KzpFZado7Cs", _ZNK3sce2np14JsonNumberImpl3GetEPi) +STUB("KzqlFtDCjvk", _ZN3sce7Toolkit2NP21TusSetVarsInputParamsC2Ev) +STUB("Kzs+kp0cRlM", _ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error12unsetMessageEv) +STUB( + "KzsvT7y7O+I", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB("Kzy7yDwocns", xmlSwitchEncoding) +STUB("L++JXXd0Dfk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEaSERKS7_) +STUB("L+04tR03SKg", _ZN3JSC12BigIntObjectC1ERNS_2VMEPNS_9StructureE) +STUB( + "L+8vuSU7Anc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE5eraseENS2_8IteratorIS6_EERS9_) +STUB("L+BOKR5S3mg", _ZN3JSC7JSProxy12toStringNameEPKNS_8JSObjectEPNS_14JSGlobalObjectE) +STUB( + "L+D5PyAcOwY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEED2Ev) +STUB( + "L+DrallcVWc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE6resizeEj) +STUB("L+EQZi9lhrE", _ZThn16_N9Inspector18InspectorHeapAgentD1Ev) +STUB("L+HtHRV6uMs", _ZN7WebCore10Pasteboard5clearERKN3WTF6StringE) +STUB( + "L+ITrIyaM+g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEC1Ev) +STUB("L+MKiauGHXU", _ZN7WebCore11MediaPlayer8setMutedEb) +STUB( + "L+PbFjZSnXY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEE7add_refEv) +STUB( + "L+QhAdljqgo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE3endEv) +STUB("L+UxJgjvc5s", _ZN3JSC7Symbols31RegExpStringIteratorPrivateNameE) +STUB( + "L+VhGCJQ5AU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEED1Ev) STUB("L+ZvTPUDP+U", sceFsUfsGrowfs) STUB("L+cL-M-DP3w", sceRemoteplayGetApMode) +STUB("L+f444MZShU", _ZN3WTF7ramSizeEv) +STUB( + "L+s4yDnvBQ8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEC2Ev) +STUB("L+u+lfB0wHw", _ZN7WebCore9HTMLNames8colsAttrE) +STUB("L+u1xTXppug", _ZN7WebCore9HTMLNames11noscriptTagE) +STUB( + "L+vfmV2INkA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEppEv) +STUB("L+zxgIMReYY", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersC1Ev) +STUB("L-+tX3h3vgU", _ZN3JSC18GCActivityCallback6doWorkEv) STUB("L-DwVoHXLtU", sceHttpGetConnectionStat) +STUB( + "L-ENKLV9Ycc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEED2Ev) +STUB("L-FeIEkkEPc", _ZN3sce2Np9CppWebApi6Common6VectorIiE3endEv) +STUB("L-Fn-NcbXuk", _ZN9Inspector27PerGlobalObjectWrapperWorldC1ERKS0_) STUB("L-Q3LEjIbgA", sceKernelMapDirectMemory) +STUB( + "L-WcqKiYUTY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEC2EPKS9_) +STUB( + "L-anLAVYZSQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEED1Ev) +STUB("L-aoBZ7HZkg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE3endEv) +STUB( + "L-daRmYlOpk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEC2Ev) +STUB("L-ddTbHfpys", __asan_addr_is_in_fake_stack) +STUB( + "L-eKLcXifWU", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessions35setxPSNSESSIONMANAGERNONPSNCALLERIDEPKc) +STUB("L-gpZZk9Nm0", _ZNK3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE5emptyEv) +STUB("L-jLYJFP9Mc", errc) +STUB("L-kFwFmRVQc", _ZN7WebCore24MatrixTransformOperationC2Edddddd) +STUB("L-lmKvxg-qY", rgctx_fetch_trampoline_mrgctx_76) STUB("L-owl1dSKKg", sceGnmSqttGetBcInfo) +STUB("L-pI5FPDsnM", mono_aot_Mono_Cairounbox_trampoline_addresses) +STUB("L-qInx9Dldk", FTA_Add_Module_gxvalid) +STUB("L-rJ570Dd2Y", AacsModuleStartInternal) +STUB("L-s0GO8Upqo", ZIP_Open) +STUB( + "L-uPOc24oko", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "L0+1fJ+wagg", + _ZL19check_action_recordP15_Unwind_ContextP13dwarf_eh_lsdaPhPN10__cxxabiv115__cxa_exceptionEPmRPv) +STUB("L0-VdcqgwC0", _ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriendsC2Ev) +STUB("L08Nfk8HXbs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEC2ERS7_) STUB("L0CXby6mmKg", sceDebugGetThreadListAsIdent) STUB("L0EHgZZNVas", sceUsbdSubmitTransfer) +STUB("L0S1sa9xoVo", JVM_Halt) +STUB( + "L0TpMhBlhE8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE4sizeEv) +STUB( + "L0UQOdXzYIk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEeqERKS9_) +STUB( + "L0Vw3O-Frt4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEE11release_refEv) +STUB( + "L0WvH6KCUaY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEEaSERKSA_) +STUB("L0aobPyYBRw", _ZNK3sce2Np9CppWebApi7Matches2V124ResponseTeamMemberResult8getScoreEv) +STUB("L0g97XFiSG4", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia10BroadcastsEE19setCustomReturnCodeEi) +STUB("L0hTvNW1JUo", _ZNK7WebCore6Widget17convertToRootViewERKNS_7IntRectE) +STUB("L0j7WpW+Ldg", udat_setNumberFormat_67) +STUB("L0nMzhz-axs", _ZNSt14numeric_limitsIsE9is_signedE) STUB("L0v2Go5jOuM", sceKernelGetPrtAperture) +STUB("L0wssOH-zi8", _ZN7WebCore27CSSComputedStyleDeclarationC1ERNS_7ElementEbRKN3WTF6StringE) +STUB("L0xUFo9fv1Y", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEptEv) +STUB("L1-jPx63SCE", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_19ProductInfoDetailedEEC1Ev) +STUB("L11wmNWIsy0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEEC2ERS9_) +STUB("L13sQFzk+cs", _ZNK7WebCore16HTMLLabelElement7controlEv) +STUB("L18rycA9rcQ", _ZN3sce7Toolkit2NP20GetPlayedWithRequestC1Ev) +STUB("L1AkJKeiXlE", _ZN10Deprecated25ScriptCallArgumentHandlerC2EPN3JSC9ExecStateE) +STUB( + "L1D-L8XwdL0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEE7get_refEv) +STUB("L1HtA3ROv5k", WKFrameGetCertificateInfo) +STUB( + "L1ILlcpr188", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("L1KAkYWml-M", _ZNK3sce4Json6String5c_strEv) +STUB("L1NPtI57TSs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEE11get_deleterEv) +STUB( + "L1Q7FJ7fAjA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEED1Ev) +STUB("L1SBTkC+Cvw", abort) +STUB( + "L1VsapGXZy0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEppEv) +STUB("L1Xock78x8g", + _ZN3sce2Np9CppWebApi14SessionManager2V130ResponsePlayerSessionSpectator11setPlatformEPKc) STUB("L1YptcRdnA8", sceClHttpGetMemoryPoolStats) +STUB("L1Ze94yof2I", _ZNSt8_LocinfoC1EiPKc) +STUB("L1b+hssANP8", mono_profiler_install_allocation) +STUB("L1ifnzzsPQ4", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error9getStatusEv) +STUB( + "L1kuIdnEih8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE3endEv) +STUB("L1qVVG4asXw", fuse_main_real) +STUB("L1uHkWTazkI", FT_Sin) +STUB( + "L1xkmPiiDXk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEED1Ev) +STUB("L1yJ5W18WHw", _ZNK3WTF10StringView27startsWithIgnoringASCIICaseERKS0_) +STUB("L205EzJvP-Q", WKContextSetCanHandleHTTPSServerTrustEvaluation) STUB("L21PBFwqIiM", sceKernelIccGetSysEventLog) +STUB( + "L21vpP2DC5k", + _ZNK3sce2Np9CppWebApi14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayer16customData1IsSetEv) +STUB( + "L22Dw2NGELA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB("L23hPuDDclY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEptEv) STUB("L25oH9QaTaQ", sceSpNetEpollCreate) +STUB( + "L26GN35hESI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("L27HmHgN-fs", u_formatMessageWithError_67) +STUB("L29QQz-6+X8", _ZNSt14numeric_limitsIfE12max_exponentE) +STUB( + "L2BamSGBjMI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEmmEv) +STUB("L2BqedAiKTk", _ZN7WebCore16JSXMLHttpRequestD2Ev) +STUB("L2CaX8q1QU8", tz0) +STUB( + "L2GeWlSc+AI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEE7add_refEv) +STUB("L2GfNXBDsgk", mono_ptr_class_get) +STUB( + "L2Ho1CqZkjI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEppEv) +STUB( + "L2J-hH33Di8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "L2P6Bg+kwG0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEC1Ev) +STUB("L2YaHYQdmHw", significandf) +STUB("L2blzsm7Ars", jinit_c_master_control) +STUB("L2dkX9ZmiqM", _ZN7WebCore21NetworkStorageSession10getCookiesERKN3WTF3URLE) +STUB( + "L2g4HqWS6Eo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) STUB("L2gM3qptqHs", sceHttpDbgShowRequestStat) +STUB("L2jVFKnqSH8", WKPageForceRepaint) +STUB( + "L2k1iDHPzmU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE7reserveEi) +STUB("L2lPNbb5Ohw", _ZNK3sce2Np9CppWebApi7Matches2V14Task9getStatusEv) STUB("L3-IGzPiZHI", sceMbusDebugAcquireControl) +STUB("L30Qu2ENA8w", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getAllSecondaryAudioStreams) +STUB( + "L344hgfxmi4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE8copyFromERKS9_) +STUB( + "L3DTkrs7wNk", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setBoolean1ERKb) +STUB( + "L3Iuw0NY2FM", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser17getplatformFilterEv) +STUB( + "L3Jov3kwJPQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE5clearEv) +STUB("L3KZqUc-gDQ", u_uastrcpy) +STUB( + "L3Nj0biFj4w", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEEdeEv) +STUB("L3Nq23JAlvU", _ZN7WebCore14JSWebAnimationD1Ev) +STUB("L3OgkCd-Wws", _ZN7WebCore15SQLiteStatement8bindBlobEiRKN3WTF6StringE) STUB("L3PcEQaDVkA", sceDeci4hDrfpMkdir_fuse_fullpath) +STUB( + "L3Wt7F3l2Bc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("L3XZiuKqZUM", getchar) +STUB("L3ZTOrvokyQ", _ZN3sce3Xml3Dom8DocumentC2Ev) +STUB( + "L3fRjd3yONY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEC2EPKS8_) +STUB("L3hoLB41DKs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEED2Ev) +STUB("L3iGQWMeob4", monoeg_g_dir_open) +STUB("L3iWbvYZ9n8", uprv_decNumberCopyAbs_67) +STUB( + "L4+JLcx9PR4", + _ZN7WebCore12ChromeClient27contentRuleListNotificationERKNS_3URLERKN3WTF7HashSetISt4pairINS4_6StringES7_ENS4_8PairHashIS7_S7_EENS4_10HashTraitsIS8_EEEE) +STUB("L41-iuLlVCc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEcvbEv) +STUB("L49CkDZP1eY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEdeEv) +STUB( + "L4ATSVlr+O4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEaSERKS9_) +STUB("L4BRUCADoMQ", mono_allocator_strdup) +STUB("L4IDnn5i7n0", __asan_exp_store1) +STUB("L4J2kYpZ9vo", + _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest19unsetExpirationTimeEv) +STUB( + "L4KYcSgxP3w", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEdeEv) +STUB( + "L4MoUahMtjg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEC1Ev) +STUB("L4O-FBngxqs", YGNodeStyleSetHeightAuto) +STUB("L4VWy5XQ+uM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12EventsClient6EventsEEC2Ev) +STUB("L4ZP2znGFRY", _ZN3JSC6JSLock6unlockEv) +STUB("L4ZuA2XEwzw", WKBundleGetApplicationConnection) +STUB("L4au0JohrHs", ucnv_setSubstChars_67) +STUB("L4in6EGqLAg", jpeg_idct_6x3) STUB("L4j7nnv2fVU", sceIpmiMgrStartDump) +STUB( + "L4nY3V9KOuE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEC1EPS8_) +STUB( + "L4qqbw1UAbE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE7reserveEi) +STUB("L4sW6ClW8AQ", _ZN3sce7Toolkit2NP2V212EventsClient12EventDetails16MAX_SIZE_REWARDSE) +STUB( + "L4vYsFqX8aA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEE11get_deleterEv) +STUB( + "L4z0iQPUYSw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEE11get_deleterEv) +STUB( + "L5-4VTr52Xw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEE3getEv) +STUB("L50kP46uQdU", mono_lock_free_allocator_check_consistency) +STUB("L51DXmdbYNw", mono_aot_Sce_Vsh_MimeTypejit_code_start) +STUB( + "L55-zIFNiXg", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSD_) +STUB("L5BnZpuQImk", _ZN3sce2np7RingBufC1Ev) +STUB("L5Cd+mIcvb4", _ZNK3WTF3URL13isAboutSrcDocEv) +STUB("L5GTL7pDHRo", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicketC1ERS5_) +STUB( + "L5JLdfu0xuQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "L5Nd834BvFs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEC1EPNS2_10LibContextE) +STUB("L5OK6yUiNlc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEptEv) +STUB("L5U9nprsR-Q", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setInteger8ERKi) STUB("L5WZgOTw41Y", sceHmdInternalGetDebugMode) +STUB("L5XKYpXLrrE", _ZN3WTF22numberOfProcessorCoresEv) +STUB( + "L5Y1CqE-QUI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEED2Ev) STUB("L5bFyq-r86A", sceMoveIsReproductionModel) +STUB("L5d7mM0UpG0", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIjED1Ev) +STUB( + "L5fhPLk1uak", + _ZN7WebCore26TextManipulationController20completeManipulationERKN3WTF6VectorINS0_16ManipulationItemELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("L5gS6Jitewc", _ZN12video_parser17cVideoOperatorEtsD0Ev) +STUB("L5ilp-prCHE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEcvbEv) STUB("L5jHxZ-J630", sceBluetoothHidDebugGetVersion) +STUB("L5jTAtk3HKA", _ZN3sce3Job10JobManager34getUnifiedSequenceFactoryInterfaceENS1_8PriorityE) STUB("L5mESo+Iq+k", sceShellCoreUtilGetSharePlayStatus) +STUB( + "L5n4NeGyTKo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEmmEv) +STUB( + "L5oAX-+S6Xs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("L5vTThaaE2A", _ZN3sce7Toolkit2NP2V29Messaging24GameDataMessageThumbnail18MAX_SIZE_THUMBNAILE) +STUB("L6-BCfEbdi0", _ZN3sce7Toolkit2NP2V26Trophy16TrophyPackTrophyD1Ev) +STUB("L60K-UtS9fA", _ZNK7WebCore12RenderObject12enclosingBoxEv) +STUB("L69yp5hEZe4", + _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container14setContentTypeERKNS3_11ContentTypeE) +STUB( + "L6DRw06HzXs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEE7get_refEv) +STUB("L6Gloitga2E", uprv_isPositiveInfinity) +STUB("L6H3T7sBP5U", UI_destroy_method) +STUB("L6HDX5ZnQps", WKPageGetScrollPinningBehavior) +STUB("L6K9Z5jPLN0", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi28ParameterToDeleteGameSessionD1Ev) +STUB("L6QRY1pl3xc", sqlite3_close) STUB("L6R0jU7yTTQ", sceShellCoreUtilGetCrashReportUploadStatus) +STUB("L6SuXO-2rWk", monoeg_g_hash_table_iter_next) +STUB( + "L6T6i5LMOzA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEC1Ev) +STUB( + "L6WGgHXUMQc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE) STUB("L6WLBSYfL6k", sceKernelEventLogRead) +STUB("L6b2zkZRn6I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEC2Ev) +STUB("L6eNjmePQVE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEE5resetEPS6_) +STUB("L6fM17UnJ+A", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getInteger3Ev) +STUB( + "L6hUkCKIQf0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "L6lGeSgUoeY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("L6oxGekrFwg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEEC2EPS5_PNS2_10LibContextE) +STUB( + "L6ri3xkXMG0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE8pushBackERKS8_) +STUB("L6sQHvt-Ho0", _ZN3JSC8Debugger13setBreakpointERNS_10BreakpointERb) +STUB("L6t3w+5eyZ0", _Z42SystemParameters_GetSystemPadButtonMeaningRi) +STUB( + "L6yGlCrlkRQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEppEv) STUB("L70Lnrm4gz4", sceDepthGetRectificationInformation) +STUB("L71JAnoQees", _ZNSt7collateIcEC2ERKSt8_Locinfom) +STUB("L734DbL1Gi8", mono_aot_Sce_Vsh_BackupRestoreUtilunbox_trampoline_addresses) STUB("L76Gd3hKuoU", sceNpTrophy2SystemRegisterTitleUpdateCallback) +STUB( + "L77IShz1gVM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEC1ERS7_) +STUB( + "L7AqQ7yU7Ks", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEaSERKS7_) +STUB("L7B1Ezw9T+o", pr2) +STUB("L7CsCCIYqI4", JVM_Yield) +STUB( + "L7F2mr+Pw5s", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEeqERKS9_) STUB("L7FoTZp3bZs", sceUsbdGetConfiguration) +STUB("L7KtgkMSjT4", _ZN7WebCore16JSStringCallback12callbackDataEv) +STUB("L7NB4zLzBVw", mono_aot_Sce_Vsh_Orbis_Bgftjit_code_start) +STUB( + "L7OBFecGY-Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("L7POWb7aCHo", mono_aot_System_Collectionsunbox_trampolines_end) +STUB("L7RVLoraPVg", _ZN3sce2Np9CppWebApi12Leaderboards2V113ErrorResponse8fromJsonERKNS_4Json5ValueE) +STUB("L7Vnk06zC2c", _ZSt11setiosflagsNSt5_IosbIiE9_FmtflagsE) STUB("L7Xg6xdBniQ", sceSystemServiceUsbStorageGetdentsRead) STUB("L7aj7caj8+s", sceKernelInternalGetKmemStatistics) +STUB("L7f7zYwBvZA", _Thrd_detach) STUB("L7g5s0YFGc4", sceVideoCoreSetPlaybackRange) +STUB("L7naR6ftYz4", _ZN9Inspector28InspectorScriptProfilerAgent16trackingCompleteEv) +STUB( + "L7p3Ehoi0gg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEptEv) STUB("L7qBonxwhiI", scePerfPmcL3GetCounterSelf) +STUB( + "L7z65ht2Y4k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "L7zfhWZQZFA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE5beginEv) +STUB("L7zzM5S0RdQ", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V113MmrProperties6toJsonERNS_4Json5ValueEb) +STUB( + "L8-+WRRhhOU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEaSERKS9_) +STUB("L8CIoipS9j4", WKPreferencesGetShowsURLsInToolTipsEnabled) +STUB( + "L8In2qoDrog", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEEaSERKSA_) +STUB("L8K+i+0CWw8", WKPageLoadWebArchiveData) +STUB( + "L8NOUEtZ16w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "L8RB0NbNLPI", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUserD1Ev) +STUB("L8RmHugddLk", _ZN7WebCore24FrameDestructionObserver12observeFrameEPNS_5FrameE) STUB("L8YmemOeSNY", sceSystemGestureGetPrimitiveTouchEvents) +STUB( + "L8dg-EJ8M-k", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("L8kLoUs7aqU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEC1Ev) +STUB( + "L8p5ePLMMm4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V139GetMultiDataStatusesResponseBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_32GetMultiDataStatusesResponseBodyEEE) +STUB("L8rmTTPwplc", _ZN3WTF21charactersToIntStrictEPKDsmPbi) +STUB("L8sqeTL+Gco", delegate_virtual_invoke_31) +STUB("L8wKvGYzNDU", WKRunLoopInitializeMain) +STUB("L8xsBYa8Fj0", _ZN3JSC13ShadowChicken16functionsOnStackEPNS_9ExecStateE) +STUB( + "L8za6Bm30zg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEC1EPNS2_10LibContextE) +STUB("L9-CbnehLH8", _ZN3JSC8Debugger14clearBlacklistEv) +STUB( + "L921fHQ2PYQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEptEv) STUB("L97d+3OgMlE", sceFontGetCharGlyphMetrics) STUB("L97eAHI0xxs", sceNetCtlGetScanInfoForSsidScanIpcInt) +STUB( + "L9G+dO0+3Ew", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEdeEv) +STUB( + "L9GT4kR+vCk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEeqERKS9_) +STUB("L9Hmp6AYcQU", _ZNK3JSC9ClassInfo4dumpERN3WTF11PrintStreamE) STUB("L9K4mZErvfg", sceNpSnsDailymotionDialogClose) +STUB("L9K9PzqUWDA", _ZThn24_N9Inspector22InspectorDebuggerAgentD1Ev) +STUB( + "L9TS1WVOMr0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEC1EPKS8_) +STUB("L9Ty-fG1IM4", _ZN3sce2np12WorkerThreadC2EPNS0_9WorkQueueE) +STUB("L9VehvVJy80", _ZN3sce7Toolkit2NP2V26Friend12BlockedUsers5resetEv) STUB("L9ZtPS92fDE", sceNpSessionSignalingSetCustomProperty) STUB("L9bnN8gtIRA", sceDebugGetVirtualMemoryInfoForCoredump) +STUB( + "L9ctwLn4vnM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEppEv) +STUB( + "L9jrk9Mk4hM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEppEi) +STUB("L9mm5cdg40U", _ZN3sce7Toolkit2NP2V28Matching7Request23SetMembersAsRecentlyMetD2Ev) +STUB("L9n8X5qE3gI", _ZN15AbstractStorage14MemfileContent5FlushEv) +STUB( + "L9rqEY+lpPA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEEC1Ev) +STUB("LA0eli-go10", + _ZNK3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectator6toJsonERNS_4Json5ValueEb) +STUB("LA2-aiER7co", _ZN3sce3pss4core8graphics6OpenGL10SetTextureEPNS2_7TextureE) STUB("LA4RCNKnFjg", sceAcm_Panner) +STUB( + "LA4VRxNyE+s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEE11release_refEv) STUB("LADHEyFTxRQ", sceFontFtSupportCid) +STUB("LAEVU8cBSh4", _ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1Em) +STUB("LAN8PgKDV-Y", _ZN7WebCore8SVGNames18pointer_eventsAttrE) +STUB("LAORmfwWCDo", upvec_cloneArray_67) +STUB( + "LAOv7m88-f4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE5beginEv) +STUB( + "LAS-B-dizS8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEED2Ev) +STUB( + "LASm3DysS6w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEEaSERKSA_) +STUB("LASo+347Irs", _ZN7WebCore9TreeScope17elementsFromPointERKNS_10FloatPointE) +STUB("LAStmlqpjYc", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4DataEE3setEv) +STUB("LATrF+dIZYI", CMAC_Init) +STUB("LAXPlDvApHg", _ZN7WebCore12ISOWebVTTCueC2EON3WTF9MediaTimeES3_ONS1_6StringES5_S5_S5_S5_) +STUB("LAem21NWI48", uenum_nextDefault) +STUB( + "LAhQFfpVXAk", + _ZN3sce2Np9CppWebApi14SessionManager2V131ResponsePlayerSessionInvitation8fromJsonERKNS_4Json5ValueE) +STUB("LAo1IP7rte4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEC2ERS7_) +STUB( + "LAsIugGxjCc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEaSERKS7_) +STUB("LAtHDO4YPVc", _ZNK3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer11getJoinFlagEv) +STUB("LB3Zux46eQ0", Java_com_sony_bdjstack_init_Init_enableStdio) +STUB("LB3jxppxyKU", _ZN3sce4Json6Parser5parseERNS0_5ValueEPKc) +STUB("LB5R72c7qrc", _ZN12video_parser5vpcom6StringneERKS1_) +STUB( + "LB6Q+2AHmgc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEcvbEv) +STUB( + "LB9KC4mQa84", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEC1ERS7_) +STUB( + "LBC5OVrzDnM", + _ZN3sce2Np9CppWebApi14IdentityMapper2V318OnlineIdMapFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_11OnlineIdMapEEE) +STUB( + "LBCCrwm9+qk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "LBG2K0BmZ6c", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEneERKS9_) +STUB("LBHfdKvgv5Y", u_getVersion_67) +STUB("LBLKh0aF0z0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEED2Ev) +STUB("LBLeCAuPHx4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEEC2EPNS2_10LibContextE) +STUB("LBPf6m+C9co", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEplEm) +STUB("LBPuue9NRXo", _ZNK3sce7Toolkit2NP17MessageAttachment17getAttachmentDataEv) STUB("LBQPxo5oQJ8", sceAvControlSetAvOutputMode) +STUB( + "LBVijTm2JBk", + _ZN3sce2Np9CppWebApi14SessionManager2V141GetUsersAccountIdGameSessionsResponseBody15setGameSessionsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_29JoinedGameSessionWithPlatformEEEEE) +STUB( + "LBWFP5lQunM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEC2Ev) +STUB( + "LBhRDIAkEw4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE7reserveEi) STUB("LBicRa-hj3A", sceImeVshOpen) +STUB( + "LBpDu6S88+A", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetrics18setConfidenceScoreERKi) +STUB( + "LBpbf6GTX44", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayerC2ERS5_) +STUB( + "LBrZsaSZ0mg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEED1Ev) +STUB( + "LBsqgTCYX4M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("LBzty5qElcE", _ZN7WebCore15JSDOMWindowBase14updateDocumentEv) +STUB("LC0GJQteweA", _ZN3sce2Np9CppWebApi6Common6VectorImE10setContextEPNS2_10LibContextE) +STUB( + "LC1WqJOaOGw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("LC5YmBeOB+o", mono_shared_mempool_alloc0) +STUB( + "LC6cLCLpj9s", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEeqERKS9_) +STUB("LCCMOQV2Kgo", _ZN3JSC7Symbols22fromEntriesPrivateNameE) +STUB( + "LCDjo4Pc0Hc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEC1Ev) +STUB( + "LCIln7KSzeY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE7popBackEv) +STUB("LCMpOUSV6lA", _ZN7WebCore22SocketStreamHandleImplC2ERKNS_3URLERNS_24SocketStreamHandleClientE) +STUB( + "LCNRi12Dol4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEC2Ev) +STUB( + "LCO0yCkifak", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEaSERKS7_) +STUB("LCPCX6fHPQY", _ZN9Inspector25RuntimeFrontendDispatchernaEmPv) STUB("LCQzi5ILGrY", sceHmd2GazeGetCalibrationDataMaxSize) +STUB("LCVSab7kWDg", mono_sha1_get_digest_from_file) +STUB("LCZB2VTbDwM", _ZN7WebCore7JSRange15subspaceForImplERN3JSC2VME) STUB("LCZQkq-Nq-k", sceVisionManagerGetCalibrateTrackingLedNecessity) +STUB("LCeL9MtV38E", g_string_append) +STUB( + "LCfk3tJT9xw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEptEv) +STUB("LCfkPb8mN1s", + _ZN3JSC12StringObject14deletePropertyEPNS_6JSCellEPNS_9ExecStateENS_12PropertyNameE) +STUB( + "LChSziYYkIc", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEED2Ev) +STUB("LCinyLbasnU", + _ZN7WebCore12SettingsBase21setStandardFontFamilyERKN3WTF10AtomStringE11UScriptCode) +STUB( + "LCjctfrdLzs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("LCk8T5b1h+4", _ZN3sce2np16StreamReadBufferC2EP16SceNpAllocatorEx) +STUB( + "LCm7rkCANjA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("LCoNzxnbSYI", __tsan_atomic64_store) +STUB( + "LCqyaC23fv8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEC2EPNS2_10LibContextE) +STUB("LCsHiDy8pVQ", vm_send_CreateSpecificTrampoline) +STUB("LD+DH-baZzA", _ZN7CoreIPC15ArgumentEncoder6encodeEb) +STUB("LD+cqdwBSWM", _ZN7WebCore17HTMLCanvasElement9setHeightEj) +STUB( + "LD3ylqOy-eQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEmmEv) +STUB( + "LD5DWCyEJbM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("LD86dvVm22M", Java_java_lang_Runtime_traceInstructions) +STUB("LD9cXbn597Y", mono_aot_Sce_Vsh_JsExtensionunbox_trampolines) +STUB("LDKb9CdjDC4", WKBundlePageHasLocalDataForURL) +STUB("LDLvwweFoPk", _ZN7WebCore9HTMLNames6navTagE) +STUB( + "LDNmQLb99QA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEneERKS9_) +STUB("LDT0j38WE1A", _ZN7WebCore10LayoutRectC1ERKNS_9FloatRectE) STUB("LDUnJvas7aA", sceDebugResumeProcess) +STUB( + "LDVGux-4oAU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) STUB("LDZkMcW3+fg", sceCustomMusicCoreBgmStop) +STUB("LDbKkgI-TZg", _ZNKSt8numpunctIwE9falsenameEv) +STUB("LDfRUa5o3Jo", _ZN23sceMetadataReaderWriter7StorageD0Ev) +STUB("LDfSNfOIwFI", mspace_malloc_stats) +STUB("LDgc9wGxxEQ", _ZN7WebCore11DisplayList8ClipPathD2Ev) STUB("LDjk9ULlN34", sceProprietaryVoiceChatHelperInitialize) +STUB( + "LDmmmW3Uc0U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEC2Ev) +STUB( + "LDp3twdAtvE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE8pushBackERKS8_) +STUB("LDsNIDCwcLY", WKPageSetScaleFactor) STUB("LDzoVPBgzc0", sceCesUtf32beToMbc) +STUB("LEBmRVlijTw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE8capacityEv) +STUB("LEC1dK5v-Kg", _ZN10Deprecated25ScriptCallArgumentHandler14appendArgumentEm) +STUB( + "LEGXJZ20Jng", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEE7add_refEv) +STUB("LEKGLwltPt8", _ZN7bmalloc11AllIsoHeaps3addEPNS_15IsoHeapImplBaseE) STUB("LEMk5cTHKEA", sceCameraSetCalibData) +STUB( + "LEMt5E1tGmc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "LEPB0kK+l6Q", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("LEQB-MXRK-I", + _ZN7WebCore22externalRepresentationEPNS_7ElementEN3WTF9OptionSetINS_16RenderAsTextFlagEEE) +STUB( + "LES6iPui81A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE5clearEv) +STUB("LEbYWl9rBc8", wcstold) +STUB( + "LEf-VwcVIIM", + _ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead20setReceivedTimestampEPKc) STUB("LEfMMCT+SlM", pthread_spin_unlock) +STUB( + "LEjIOVNyfX4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEC2EPS6_PNS2_10LibContextE) +STUB("LEkIXo6UCwA", rgctx_fetch_trampoline_rgctx_35) STUB("LEn8FGztKWc", sceNetCtlApRpGetState) STUB("LEnn-4ARRJM", sceAgcDriverUserDataWritePopMarker) +STUB("LEoZMfSH6Ls", _ZNK7WebCore18PlatformPasteboard29typesSafeForDOMToReadAndWriteERKN3WTF6StringE) STUB("LEqH+dkMszo", sceVdecswGetVp9PictureInfo) +STUB( + "LErWiFrqiS8", + _ZN3sce2Np9CppWebApi14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayer8fromJsonERKNS_4Json5ValueE) +STUB("LEvm25Sxi7I", btowc) +STUB( + "LExasWS3ZTg", + _ZN7WebCore27PlatformMediaSessionManager21addAudioCaptureSourceERNS_20PlatformMediaSession18AudioCaptureSourceE) +STUB("LF1S4j5d23g", _ZN7bmalloc15IsoHeapImplBase18isNoLongerFreeableEPvm) +STUB("LF666okXAtE", rgctx_fetch_trampoline_mrgctx_3) +STUB("LF6lQpXL9So", ucol_setAttribute_67) +STUB( + "LF70KOoRmM4", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser9terminateEv) +STUB( + "LF9YfqGO9y8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEED2Ev) +STUB("LFCfPxGTF9w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE5beginEv) +STUB( + "LFDB+h5OUNw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEppEi) +STUB( + "LFFD4uals2I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEC2EPS8_) +STUB("LFLRtqqi4AQ", glSampleCoverage) +STUB("LFMU4pwACRQ", mono_class_get_methods) +STUB( + "LFNGiVQF9iM", + _ZN7WebCore28InspectorFrontendClientLocal18requestSetDockSideENS_23InspectorFrontendClient8DockSideE) +STUB( + "LFNbGrxObcY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEC1Ev) STUB("LFSPFmGc9Hg", sceAgcDcbSetWorkloadsActive) +STUB("LFT2oKGSn28", + _ZN7WebCore17PageConsoleClient16takeHeapSnapshotEPN3JSC9ExecStateERKN3WTF6StringE) STUB("LFYbwOGhCys", sceMbusCheckDriverCallback) +STUB( + "LFb631+BBx4", + _ZThn16_N9Inspector22InspectorDebuggerAgent14didParseSourceEmRKNS_19ScriptDebugListener6ScriptE) +STUB( + "LFbmcWn8vVE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEC2EPNS2_10LibContextE) STUB("LFbwY8r50o8", sceKernelLwfsAllocateBlock) STUB("LFo00RWzqRU", sceSystemServiceChangeMemoryClock) +STUB("LFrTJZYgkj4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE8copyFromERKS7_) +STUB("LFwPIV+K9nA", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectIdC2ERS5_) STUB("LG1YW1Uhkgo", sceHttpSetEpollId) +STUB("LG2QVcYXqqo", _ZN7WebCore15DeferredPromise6rejectENS_9ExceptionENS_15RejectAsHandledE) +STUB("LG6O0oW9bQU", posix_spawn_file_actions_adddup2) +STUB( + "LG8emJ-E0AQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEEC1Ev) +STUB("LG9JJ-j8rSE", ulocimp_toBcpType_67) STUB("LGEIdgILQek", sceNpManagerPrxStartVsh) +STUB( + "LGEmJwVec28", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEC2Ev) +STUB( + "LGPkL2JPiLQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEEaSERKSA_) STUB("LGTKL9VT2DM", sceCustomMusicCoreBgmStart) +STUB("LGch87zTS-4", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_16NetStateDetailedEE3getEv) +STUB("LGfu3uVGjDY", WKAccessibilityRootObject) +STUB("LGgxtVdxaLY", + _ZN15AbstractStorage13YoutubeFolder13RemoveContentERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("LGhpaoJcPiQ", _ZN7WebCore21DiagnosticLoggingKeys17userZoomActionKeyEv) +STUB("LGiUQAdAxTQ", glTexStorage2D) +STUB( + "LGkB+6CseZk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEC1ERS7_) STUB("LGls0LhQSGY", sceDepthEnableHeteroModeAndGenerateInformation) +STUB( + "LGmA0KO4hf8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "LGoIig-3YdA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEEaSERSA_) +STUB( + "LGqUC6ki2+w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEC2EPS8_) +STUB( + "LGqi4cI1xD0", + _ZN7WebCore22StorageEventDispatcher36dispatchSessionStorageEventsToFramesERNS_4PageERKN3WTF6VectorINS3_6RefPtrINS_5FrameENS3_13DumbPtrTraitsIS6_EEEELm0ENS3_15CrashOnOverflowELm16EEERKNS3_6StringESG_SG_SG_RKNS_18SecurityOriginDataE) +STUB( + "LGtsJ+KXt-4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEixEm) +STUB("LGyjRmwUZ-g", rgctx_fetch_trampoline_rgctx_21_p) +STUB( + "LH+9+WOtQEI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEEC1ERSA_) +STUB( + "LH39Nyw45NQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEdeEv) +STUB( + "LH53HDAZScs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEEC2ERSA_) +STUB( + "LH8jgRi01+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEC2EPS6_PFvS8_EPNS2_10LibContextE) STUB("LHDoRWVFGqk", sceFontDeleteGlyph) STUB("LHFXRrlTPD8", sceAgcDcbSetCxRegisterDirect) +STUB("LHSZA0ujcbM", + _ZN15AbstractStorage10YoutubeAPI5StartERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB( + "LHTgbAvuw+Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "LHUuxs0A6+g", + _ZN3JSC8JSObject17defineOwnPropertyEPS0_PNS_9ExecStateENS_12PropertyNameERKNS_18PropertyDescriptorEb) +STUB( + "LHWrFdp3FZ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEEC2ERKSA_) +STUB( + "LHYyVFBNwHA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEC1Ev) STUB("LHZtCT2W1Pw", sceNpCreateSema) +STUB( + "LHaubdMZbG8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEC2Ev) +STUB("LHd3WR1-QIs", ucfpos_open_67) +STUB("LHd3XdHQDo4", + _ZNK3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends8haslimitEv) +STUB( + "LHdM27Zie9c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEE11release_refEv) +STUB( + "LHdw3CvviGc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "LHj078MoLP0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEdeEv) +STUB( + "LHlkjwOflo0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEEptEv) STUB("LHqFYb+U52E", sceFiosExists) +STUB( + "LHrQ+cfApGY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) STUB("LHuSmO3SLd8", sceNpTrophyGetTrophyUnlockState) +STUB("LI228aO7fig", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountIdC1ERS5_) +STUB("LI2Jh9JT7Js", + _ZNK3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallback12geteventTypeEv) +STUB("LIB9DiyTbJk", _ZN7WebCore14SocketProviderD1Ev) STUB("LIBEeNNfeQo", sceUserServiceSetGlsBroadcastService) +STUB( + "LIF86u-Myk4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEED1Ev) +STUB("LIGEX1-8Sc8", YGEdgeToString) +STUB("LIGGPWn25+U", _ZN3JSC18ErrorHandlingScopeC2ERNS_2VME) STUB("LIH2mH9tzro", sceCesUtf16ToEucJp) +STUB("LIOmTtP4YK8", _ZTVN3WTF8JSONImpl9ArrayBaseE) +STUB( + "LIRfmy4CPbg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("LIS2n5ur2HY", _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_9ImageDataE) +STUB( + "LIUCoPc0zuU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEEC2EPS9_PNS2_10LibContextE) STUB("LIVclwLLnyM", sceMatReleasePhysicalMemory) +STUB("LIWm1FI-XWo", _ZN3sce7Toolkit2NP2V210Tournament12EventDetails5resetEv) +STUB("LIa9LkJX6hk", _ZN3JSC7Symbols29replaceUsingRegExpPrivateNameE) +STUB("LIa9qzdqcgQ", _ZN7WebCore8SVGNames8fromAttrE) +STUB( + "LIhyUta9ON4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE7popBackEv) +STUB( + "LIioexCGNq4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE5clearEv) +STUB( + "LIqAaYGQMRA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE17getResponseHeaderERSE_) +STUB( + "LIsJpy+83vI", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "LIy5bSy48IE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEE21intrusive_ptr_add_refEPS7_) +STUB( + "LJ1sm2BabMw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE8capacityEv) +STUB( + "LJ46ry8POk4", + _ZN3sce2Np9CppWebApi14SessionManager2V127ResponsePlayerSessionPlayer8fromJsonERKNS_4Json5ValueE) +STUB( + "LJ5NNpcT-v0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEEcvbEv) +STUB( + "LJ74k1s9Tnk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("LJ8XAk5LI-0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119ChildActivityStatusEEeqERKS7_) +STUB("LJ9eQ5Z7Wmo", glPolygonOffset) +STUB("LJAhfaa6+U4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session8SessionsEEC1Ev) STUB("LJDwdSNTnDg", sceKernelDeleteUserEvent) STUB("LJGdHRE3ui0", sceHmdGetDistortionWorkMemorySizeFor2d) +STUB("LJL23bfwYgQ", _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEED1Ev) +STUB("LJNqwiDWTm0", cairo_clip_extents) +STUB( + "LJPvyx-2hic", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEEC1ERKSA_) STUB("LJTtb7xKzkY", scePfsPread) STUB("LJVcP+0wRIk", sceKernelGetFlagedUpdaterForRcmgr) STUB("LJYiiIS4HB0", sceNetCtlSetErrorNotificationEnabledIpcInt) +STUB( + "LJZhUhGxMLg", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi35ParameterToSetGameSessionPropertiesD2Ev) +STUB("LJaVcBjiivQ", _ZNK7WebCore15SecurityContext14securityOriginEv) +STUB( + "LJcptjXRgAQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) STUB("LJgDPypWO8Y", sceDeci4hDrfpChstat_utimens_fuse_fullpath) +STUB("LJj90HDolFE", _ZN9Inspector25NetworkFrontendDispatchernaEm) +STUB("LJl2kInnv84", _ZN7WebCore9HTMLNames7maxAttrE) +STUB("LJn5UlaZvI8", _ZN3sce7Toolkit2NP2V210Tournament24OfficialBroadCastDetailsC2ERKS4_) +STUB("LJpQs+W-q+g", _ZN3sce7Toolkit2NP2V23TUS19FriendsDataStatuses5resetEv) +STUB( + "LJsjoVNV7Uw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEEaSERKSA_) +STUB("LJvHO3uCNm4", _ZN3sce2np10Cancelable10IsCanceledEv) +STUB("LK9pyJxDphE", init_at_thread_exit_mutex) +STUB("LKCgR3aVJwM", mono_class_get_interfaces) +STUB( + "LKD-Mgz9RDY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEEptEv) +STUB("LKEEAYE-RgY", _ZNK15AbstractStorage15FacebookContent10GetServiceEv) +STUB( + "LKGqbJuEQdM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEED1Ev) +STUB("LKH25aamnoc", __bigtens_D2A) +STUB( + "LKKXHzM-L3Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("LKLoO7GwnFE", _ZN7WebCore9HTMLNames12onunloadAttrE) +STUB( + "LKMAGkLFh8E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE3endEv) +STUB("LKMVeWFdRNk", WKBundleBackForwardListItemIsInBackForwardCache) +STUB( + "LKMyzOgl8Q0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEED2Ev) +STUB("LKNrK31L6ck", + _ZN3sce7Toolkit2NP2V210Tournament7Request18GetRegisteredTeams17DEFAULT_PAGE_SIZEE) +STUB( + "LKP+XIYf5KM", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetrics17setPercentileRankERKi) STUB("LKRatXLV85k", sceNpMatching2SignalingEnableManualUdpMode) +STUB("LKRfjglGlSA", Java_java_awt_GnmImage_nativeDrawImageScaled) STUB("LKXfw7VJYqg", scePadVirtualDeviceGetRemoteSetting) +STUB("LKZcmQ6G+v0", _ZN9Inspector24RuntimeBackendDispatcherD0Ev) +STUB("LKaCCu1QZ7Q", _ZN9Inspector8Protocol3CSS11CSSProperty8ParsedOkE) +STUB("LKmBevIUY+Q", _ZN3sce7Toolkit2NP2V212ActivityFeed6ActionD1Ev) +STUB("LKo1uAeaous", __cxx_global_var_init .26) +STUB( + "LKoXZTCxczQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "LKpjgxTTDiE", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi42ParameterWithBinaryRequestBodyToUploadDataC1Ev) +STUB("LKuWUrYf-kk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V117InvitableUserTypeEEneERKS7_) +STUB("LL+9qdwMrhs", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEEC1ERKS6_) +STUB("LL2YvYyIX-0", mono_aot_Sce_Vsh_Stickerplt_end) +STUB("LL7brbHFNd4", _LMBCSData3_67) +STUB("LL87yttK-sM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEED1Ev) +STUB("LL8N+X6DA-4", tls_config_free) +STUB("LL9z5QvmwaA", _ZN3sce2np7HttpUriC1EP16SceNpAllocatorEx) +STUB( + "LLDARC69Yjw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE3endEv) +STUB("LLImQzzVASc", _ZNK9Inspector17ScriptDebugServer30canDispatchFunctionToListenersEv) +STUB( + "LLJTma-7XXQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEeqERKS9_) +STUB("LLNqa6vgVlo", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia11ScreenshotsEE3getEv) +STUB( + "LLRbAwDQPbg", + _ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForReadC1EPNS1_6Common10LibContextE) +STUB( + "LLTMSyTmaf4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEE5resetEPS9_) +STUB("LLUjcqQdN4I", delegate_virtual_invoke_11_p) +STUB( + "LLV4uk6ZnYg", + _ZN7WebCore26MessagePortChannelRegistry27didCreateMessagePortChannelERKNS_21MessagePortIdentifierES3_) +STUB("LLXj3TaYsJY", + _ZN23sceMetadataReaderWriter20LoadedParserInfoList14registerParserEPKNS_10ParserInfoE) +STUB("LLY6TM0a9Ss", __asan_describe_address) +STUB( + "LLYbY++LJEY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEED2Ev) STUB("LLYe0XHcjJI", sceAppInstUtilAppProhibitDownloadInstall) +STUB("LLdnqVnnNBQ", _ZN3sce7Toolkit2NP2V24Core4initERKNS3_7Request10InitParamsE) +STUB( + "LLhw7xA1cv4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEdeEv) +STUB("LLn3yxuFb3A", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISbIcSt11char_traitsIcENS2_IcEEEE8allocateEmPKv) +STUB("LLpDoojuLDg", _ZN3JSC14constructArrayEPNS_9ExecStateEPNS_9StructureEPKNS_7JSValueEj) +STUB("LLpq5YDH2Rs", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession24unsetDisableSystemUiMenuEv) +STUB( + "LLqUajPlLwk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEmmEi) +STUB( + "LLrp4B0+SWw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE5beginEv) +STUB("LLssoYjMOow", _ZNSt9type_infoD1Ev) +STUB("LLyFtEN3cEA", WKPreferencesGetAuthorAndUserStylesEnabled) +STUB( + "LM3QwehNvk0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEC1EPS8_) +STUB( + "LM4CDcxonZs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEaSERS7_) +STUB( + "LM6THmgfSBs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE5beginEv) +STUB( + "LMHc1tg0hXU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEC2ERS7_) +STUB( + "LMKYvOkzyB4", + _ZN7WebCore4Page24findStringMatchingRangesERKN3WTF6StringENS1_9OptionSetINS_14FindOptionFlagEEEiRNS1_6VectorINS1_6RefPtrINS_5RangeENS1_13DumbPtrTraitsISA_EEEELm0ENS1_15CrashOnOverflowELm16EEERi) +STUB( + "LMNUFTJ+2OM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEEC1ERKSA_) +STUB("LMP8shFKvFw", _ZN3sce7Toolkit2NP2V212NetworkUtils12BandwithInfo5resetEv) STUB("LMSQUTxmGVg", sceSaveDataSyncCloudList) +STUB("LMSZTJ-N76U", p5_32) +STUB("LMXftlH0v2Y", WKIconDatabaseRemoveAllIcons) STUB("LMZ77TNeslg", sceCesUtf32ToEucKr) +STUB( + "LMbq1RLEOM0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEE11release_refEv) STUB("LMlWs+oKHTg", sceHmdInternalIsMiniAppVr2d) +STUB( + "LMm0vrqPnik", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("LMpATlCGOzA", __asan_exp_load8_noabort) +STUB( + "LMpRWV5XyrQ", + _ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody19setComparedDateTimeERK10SceRtcTick) +STUB("LMpYPVSXRiI", ucal_getGregorianChange_67) +STUB( + "LMw4d3nbYfY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEC1EPKS8_) +STUB( + "LN2PdsxVp4k", + _ZN9Inspector20CSSBackendDispatcherC1ERNS_17BackendDispatcherEPNS_27CSSBackendDispatcherHandlerE) +STUB("LN2bC6QtGQE", _ZNSt14numeric_limitsIxE6digitsE) STUB("LN3Zcb72Q0c", sceRtcGetCurrentAdNetworkTick) +STUB("LN5Y6hjwwZs", mono_aot_Sce_Vsh_Sl2_Sl2Deliverjit_code_start) +STUB( + "LN6dLCq4Cqs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEE3getEv) +STUB( + "LN8uujPz99c", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE11getResponseERS4_) +STUB( + "LN9XcsQE-9U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEcvbEv) +STUB("LNBOic2ApA4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEEC2EPS5_) +STUB("LNBomKWKUtA", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching5RoomsEED1Ev) +STUB("LNCmtRaszj8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEED1Ev) +STUB("LNIu4oY7Kho", _ZN3sce7Toolkit2NP2V29Challenge13ChallengeDataC2ERKS4_) +STUB("LNM0XBCnyKo", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119BandwidthProperties8fromJsonERKNS_4Json5ValueE) STUB("LNNcOPldstA", sceAppInstUtilGetAddcontInfoList2) +STUB( + "LNXA6xP0KoA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEC2EPS8_) +STUB("LNlDAiLcUdA", uloc_getLineOrientation) +STUB("LNuuQgbgxCE", + _ZN7WebCore18AdClickAttribution31convertAndGetEarliestTimeToSendEONS0_10ConversionE) +STUB( + "LNvKe0DsfI4", + _ZN3sce2Np9CppWebApi14SessionManager2V127GetGameSessionsResponseBody8fromJsonERKNS_4Json5ValueE) +STUB("LNwdUejY72c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEC1Ev) +STUB("LNzAovAnOd8", FcPatternAddInteger) +STUB( + "LO-YGXANCrY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE8pushBackERKS8_) +STUB("LO2TloLGBk4", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V111OfferStatusEEC1EPS6_) +STUB( + "LO37CIW1qd8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEaSERKS7_) +STUB( + "LO4-DWz6N8Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEmmEi) +STUB("LO6XXCwAPyU", _ZN3WTF10StringImpl28convertToUppercaseWithLocaleERKNS_10AtomStringE) +STUB("LO70m1BiJPM", _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead15maxPlayersIsSetEv) +STUB( + "LO92aaR5rgU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEEC1ERSA_) +STUB("LO9SEq5ZPhM", _ZN3JSC7Symbols34triggerPromiseReactionsPrivateNameE) +STUB( + "LOGmnv0VUV8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("LOKaLcKBz0E", monoeg_g_ptr_array_add) +STUB( + "LOMkZeeXWMs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE8pushBackERKS8_) +STUB("LONFoMoQIpY", _ZN7WebCore9HTMLNames17aria_valuemaxAttrE) +STUB( + "LOPoNwieUwA", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi24ParameterToReportResults10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_20ReportResultsRequestEEE) +STUB("LORVxCVAUA8", ucase_toFullFolding_67) +STUB("LORumMmKX+0", _ZN3WTF11Persistence7Encoder6encodeEm) +STUB( + "LOS+BJKayKA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEC1Ev) +STUB("LOS4KcdYH4U", _ZN15AbstractStorage11LocalFolder5CloseEv) +STUB( + "LOT9XOrWDXA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEC1Ev) +STUB("LOXtzVeGnDg", _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead13setMaxPlayersERKi) +STUB("LOdAMm2YXIs", _ZN3sce3Xml6StringC2EPKcm) +STUB("LOgEfXqoLL0", WKURLRequestCopySettingHTTPBody) +STUB( + "LOjuuNiHSj4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEptEv) +STUB("LOoCMH7rHLE", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V18Variable14prevValueIsSetEv) +STUB( + "LOr5RB9I1Wg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEaSERS7_) +STUB("LOrGILFwIlA", _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeIPcPvEEC2ERKS7_) +STUB( + "LP3-8wzeg2Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEppEi) +STUB("LP5RvgCb3AA", eglGetCurrentSurface) +STUB("LP64B-0dbUs", _ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody14getRulesetNameEv) +STUB("LP9eSYFLKEM", mono_aot_Sce_Vsh_EventAppplt_end) +STUB( + "LPDIcCKlYGA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEEdeEv) +STUB( + "LPH4FmJlvZE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEE7add_refEv) +STUB( + "LPHn8Rq9dps", + _ZN3sce2Np9CppWebApi14SessionManager2V113ErrorResponse8setErrorERKNS1_6Common12IntrusivePtrINS3_5ErrorEEE) +STUB( + "LPKBFqztg3U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE6resizeEj) +STUB( + "LPQYhnq1L5Q", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB("LPR1Xoax82w", _ZNK7WebCore12SharedBuffer7decoderEv) +STUB( + "LPRr40DzhbA", + _ZN15AbstractStorage14StorageManager17NotifySetMetadataERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("LPUK+vGlqjI", mono_metadata_decode_value) +STUB( + "LPWbhDrG2ts", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEEC2EPNS2_10LibContextE) +STUB("LPXrs0psMG8", + _ZNK7WebCore5Range20absoluteBoundingRectEN3WTF9OptionSetINS0_20BoundingRectBehaviorEEE) +STUB("LPZdtf7++jE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEC2Ev) +STUB("LPaSs5QykuE", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V115LastUpdatedUser13unsetOnlineIdEv) +STUB("LPay9JfP+HU", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_19ProductInfoDetailedEE3getEv) +STUB( + "LPdbzerv5ac", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEC1ERS7_) +STUB( + "LPfWO3fLLj0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("LPfoZwlYzkU", mono_btls_x509_lookup_by_subject) +STUB( + "LPkTtS+TFU0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEmmEi) +STUB("LPlPRM2ATjE", _ZNK7WebCore18RenderLayerBacking11contentsBoxEv) +STUB("LPnzbzcZ924", fuse_fs_getxattr) +STUB("LPpUAOnfyxg", JSValueProtect) +STUB("LPskSecgPIg", Java_sun_awt_GnmUtils_getBackgroundEngine) +STUB("LPtlB241JSg", FT_Get_Kerning) +STUB( + "LPuBzzxrqYo", + _ZN3sce2Np9CppWebApi14SessionManager2V135PostGameSessionsResponseBodyFactory7destroyEPNS3_28PostGameSessionsResponseBodyE) +STUB("LPvzznljwQo", _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V318PsnWebErrorWrapperD1Ev) STUB("LPzYZ+FR0BI", sceCesRefersUcsProfileCp1252) +STUB("LPzmQHV7qEo", WKFrameHandleGetFrameID) +STUB("LQ1mr+-wJaQ", + _ZNK7WebCore14SecurityOrigin33isMatchingRegistrableDomainSuffixERKN3WTF6StringEb) +STUB("LQ3kaw4CTPw", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus20lastUpdatedUserIsSetEv) STUB("LQ6CoHcp+ug", sceNpTusGetMultiSlotDataStatusForCrossSaveAsync) +STUB("LQ6hXmvrrqs", llvm_throw_corlib_exception_abs_trampoline) STUB("LQ9g9lYxgmc", sceVideoStreamingEngineMediaKeySystemAccessSetCdmStorageConfig) +STUB("LQDkC+LFW+0", _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead15unsetSearchableEv) +STUB("LQE3S6WxkDc", _ZN12video_parser17cVideoProfilerMp418_getFileProfileVWGEP17ff4_com_fprf_info) +STUB("LQHIxeqahlg", mono_profiler_install_code_buffer_new) +STUB( + "LQMGHYVjGAc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE3endEv) STUB("LQQN0SwQv8c", sceGnmSdmaFlush) +STUB( + "LQQfP1JPwjY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEC2Ev) +STUB( + "LQX932wHK5w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE5clearEv) +STUB("LQXc-KZXeHU", __asan_stack_malloc_10) +STUB("LQe0fmFC36Q", _ZN12video_parser17cVideoProfilerMp4D0Ev) +STUB( + "LQjtBbdKV5U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEEdeEv) +STUB("LQouFiom26k", _ZN7WebCore22EmptyFrameLoaderClientD0Ev) STUB("LQtzqghKQm4", sceGnmSqttGetGpuClocks) +STUB("LQuG7-fTAII", _ZN3sce7Toolkit2NP2V211SharedMedia11Screenshots8deepCopyERKS4_) +STUB( + "LQvamxROa-U", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB("LR06GK7Rrw0", _ZN3sce7Toolkit2NP2V27Session14InvitationDataD1Ev) STUB("LR5cwFMMCVE", sceNpCommerceDialogUpdateStatus) +STUB( + "LR71EwJ485o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("LR8PD2qqKXM", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119BandwidthProperties6toJsonERNS_4Json5ValueEb) +STUB( + "LR8emOxcN8o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEC2Ev) +STUB("LRDCp97A9HM", _ZN9Inspector25TimelineBackendDispatcherD1Ev) +STUB("LRDUvLHRY5A", _ZN7WebCore9DOMWindow5focusEb) +STUB("LRGBxMVkwow", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEEC2EPS6_) +STUB( + "LRIgm1q2Yw4", + _ZN3sce7Toolkit2NP9Utilities6FutureISt4listINS1_11TusVariableENS1_15AppSTLAllocatorIS5_EEEEC2Ev) +STUB("LRLYmsAD79E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEED2Ev) +STUB( + "LRMKjBh3vOw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE8pushBackERKS8_) +STUB( + "LRP+Y9NHGfw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEdeEv) +STUB("LRPd-7N25a8", umutablecptrie_get) +STUB( + "LRSELmSzbJI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEmmEv) +STUB( + "LRZKTRiALac", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEdeEv) +STUB("LRjPCtnBg4c", _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeDataD2Ev) +STUB("LRllj8g+OPw", _ZN9Inspector22InspectorDebuggerAgent20didClearGlobalObjectEv) +STUB("LRlzqaA4h8I", _ZN3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBody10getPlayersEv) +STUB( + "LRsTjrt93tQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("LRz04P5K1Ao", WKWebsitePoliciesSetDataStore) +STUB("LS+eIyIPVgM", _ZN7WebCore15DatabaseTracker5quotaERKNS_18SecurityOriginDataE) +STUB("LSBc3No+mfM", _ZN3JSC4Heap19isCurrentThreadBusyEv) +STUB("LSCqsMBsDt8", _ZN7WebCore12GridPosition24setMaxPositionForTestingEj) +STUB( + "LSEtVU6KxhU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEneERKS9_) +STUB( + "LSHuxNtYMxU", + _ZN7WebCore4Page8goToItemERNS_11HistoryItemENS_13FrameLoadTypeENS_27ShouldTreatAsContinuingLoadE) +STUB( + "LSJ2LxOOPns", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEaSERKS9_) +STUB( + "LSMJpza0cyY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("LSMxYKlwfW4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEC2ERKS7_) +STUB("LSN9eaPHt8g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEE3getEv) +STUB( + "LSNWu2NyGjY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEptEv) +STUB("LSO5numqOP8", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEE3getEv) STUB("LSQ3xApEoxY", sceNpServiceCheckerIntFinalize) +STUB("LSUFVBv38hw", g_slist_free_1) +STUB( + "LSVatTh5hM0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEEC2EPKS6_) STUB("LSXECOKlQN8", sceSdmaKickQueue) +STUB("LSXwKvlefUA", _ZN7WebCore9AnimationC1Ev) +STUB( + "LSeuwzA2Rqs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEC2EPS8_) +STUB( + "LSfLxGa4D64", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE21intrusive_ptr_add_refEPS9_) +STUB("LSftlcUV8-U", _ZN12video_parser18cMp4FFLHndlManager10unuseTrackEj) STUB("LSinoSQH790", sceJpegDecParseHeader) +STUB("LSp+r7-JWwc", _FDclass) STUB("LSt2Pfp9GRw", sceVnaNotify) +STUB("LSxaF7YhbHs", _ZN9Inspector25DebuggerBackendDispatcherD0Ev) +STUB("LSzyZDIMMKw", _ZN7WebCore11MathMLNames14fontfamilyAttrE) +STUB("LT+yRQKusbQ", mono_aot_Sce_Vsh_AppInstUtilWrappermethod_addresses) +STUB("LT0N1oI1jWo", mono_g_hash_table_foreach) +STUB("LT7Sl39rL8k", Java_java_awt_GnmImage_nativeSetRGB) +STUB("LT8QlHtk4+g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEEC2Ev) +STUB( + "LTB6cjKxnjg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE5clearEv) +STUB( + "LTD-XgDvhyc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEED1Ev) +STUB("LTE1dovGMro", _ZNK7WebCore16HTMLInputElement11valueAsDateEv) +STUB( + "LTErBQDUG2s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEE11release_refEv) +STUB( + "LTItwYh12H0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEeqERKS9_) +STUB( + "LTMpVHAkgdw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE3endEv) +STUB("LTN7DTYCB3c", _ZN3sce7Toolkit2NP2V28Commerce7Request21DisplayCheckoutDialogD2Ev) +STUB("LTSwPfEGg0U", mono_aot_I18N_MidEastunbox_trampolines_end) +STUB("LTVZIIDuWz8", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_22ConsumeChallengeResultEED1Ev) +STUB("LTXWL-kuxGM", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEEptEv) +STUB( + "LTfMaJRfZWU", + _ZN7WebCore17PageConsoleClient9timeStampEPN3JSC9ExecStateEON3WTF3RefIN9Inspector15ScriptArgumentsENS4_13DumbPtrTraitsIS7_EEEE) +STUB("LTg6ajV2grA", _ZNK3sce2np8JsonBool3GetEv) +STUB("LTgAhSl8UAY", mono_aot_ReactNative_Components_Vshjit_code_start) +STUB( + "LThsyIX2lmo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEE11release_refEv) +STUB( + "LTmX-Olvk8M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "LTmoz212qP4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEplEm) +STUB("LTov9gMEqCU", _ZNSt8ios_base7_AddstdEPS_) +STUB( + "LU3d6UcqDVU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("LU4M2+VIi8U", _ZN9Inspector14InspectorAgentdaEPv) +STUB("LU7XLwVj1NU", _ZN7WebCore9HTMLNames5h4TagE) +STUB( + "LUAAl3hE9k0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEptEv) +STUB("LUARjf-LuyQ", _ZN7WebCore15HTMLFormElement10setEnctypeERKN3WTF6StringE) +STUB( + "LUBXPa+sUVk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEE11release_refEv) +STUB("LUD+ubNceFU", __tsan_atomic_signal_fence) +STUB("LUD7lFC2li4", _ZN3WTF6String26fromUTF8WithLatin1FallbackEPKhm) +STUB("LUHcIB+ROt8", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEEixEm) +STUB("LUMQZWNH0e8", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeINS1_11TusVariableEPvEEeqERKS7_) +STUB( + "LUOpCaXThQc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEC1EPS8_) +STUB( + "LUPPvHWuCN0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEC1Ev) +STUB("LUWh4Vaivfk", _ZN7WebCore22SocketStreamHandleImpl13platformCloseEv) +STUB("LUa+RfJHTwQ", _ZN7WebCore8JSPath2D4infoEv) +STUB( + "LUcOf76+OxY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEEC1ERSA_) +STUB( + "LUdU7y7dFnk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) STUB("LUgpodNR61M", sceSystemServiceUsbStorageGetDeviceInfo) +STUB("LUh-6rZhniA", cairo_set_scaled_font) +STUB("LUjF0ML2Xjs", _ZN23sceMetadataReaderWriter10ParserInfoC2ERKS0_) +STUB("LUjH5cqxZqE", GCC_except_table104) +STUB( + "LUoZYlw5EnU", + _ZN9Inspector21HeapBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "LUsIlWwkaNI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "LUsNaHE91G4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEixEm) +STUB( + "LUstzT782kI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE5beginEv) +STUB( + "LUtPsNvJclE", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEED1Ev) +STUB( + "LUtUkJMLE90", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_18SessionInformationENS1_15AppSTLAllocatorIS5_EEEEC2Ev) +STUB( + "LUvjGNEPg2Y", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessionsD1Ev) STUB("LUwvy0MOSqw", sceNpTusGetFriendsDataStatusAsync) +STUB("LV0kAZ2JnWs", mono_aot_Mono_Cairounbox_trampolines_end) +STUB( + "LV20WbrZcw4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToSetMultiVariablesByUseraSERS5_) +STUB("LV2FB+f1MJE", _ZNSt14_Num_ldbl_base9is_signedE) +STUB("LV4hFZ+e7kM", il2cpp_thread_get_stack_depth) +STUB( + "LVCd5Hi6A1Q", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_8Timeline9EventTypeEEESt8optionalIT_ERKN3WTF6StringE) +STUB( + "LVGCew3mT6c", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions30unsetxPsnAcceptPlatformNamePs5Ev) +STUB("LVGgaxXVnYg", _ZTVN7WebCore24FrameDestructionObserverE) +STUB("LVLIVeh4TCc", _ZN6WebKit12ChildProcess23messageSenderConnectionEv) +STUB("LVLwSxJwwnw", glGetVertexAttribIuiv) +STUB( + "LVOYeZBLnPk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE4sizeEv) STUB("LVYGEGM0tCs", sceDeci4hDrfpRemove) +STUB("LVZiF4jS2MU", _ZN3sce2Np9CppWebApi6Common9RefObject6AddRefEv) +STUB( + "LVaeyN0gYh8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEED1Ev) +STUB("LVb-RgymeuY", WKBundlePageOverlayClear) +STUB("LVir94aOS4c", _Z37sceGpuDebuggerSetGlobalExceptionsMaskj) +STUB("LVjM0Tcnov0", _ZN9Inspector40ApplicationCacheBackendDispatcherHandlerD2Ev) +STUB("LVlahWlGJrQ", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEED1Ev) +STUB("LVlnyg0iHyM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEEC1Ev) +STUB("LVo4U7X9KhY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEED2Ev) +STUB("LVoWI6jNuKc", mono_aot_Sce_Vsh_Np_Papcunbox_trampolines_end) +STUB("LVut7lXu51g", _ZN3WTF21LineBreakIteratorPool10sharedPoolEv) +STUB("LVxecXu4l7U", _log10_impl) +STUB("LVxr4NrZtKw", _ZN7WebCore9HTMLNames10srcdocAttrE) +STUB( + "LW1z0Vxwhvg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEmmEi) +STUB("LW7Jgpp07Xs", ucnv_cbToUWriteUChars) +STUB("LWFKuGFkToI", mono_aot_Sce_Vsh_PsnUtiljit_code_end) +STUB("LWFPkCwPUTA", mono_aot_Sce_Vsh_Np_Pbtcjit_code_end) +STUB("LWGDlFquGeo", WKWebsiteDataStoreSetStatisticsCacheMaxAgeCap) +STUB("LWIrVUh8HTA", _ZN3JSC6RegExp5matchEPNS_14JSGlobalObjectERKN3WTF6StringEj) +STUB("LWIvo3PDBPo", ubrk_setUText_67) +STUB("LWJUq5ljyUY", _ZN7WebCore11JSDOMMatrix9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) STUB("LWQpWHOSUvk", sceHmdInternalIsCommonDlgVr2d) +STUB("LWRGLruTUN8", _ZN3sce2Np9CppWebApi12Leaderboards2V15Entry19setRecordedDateTimeERK10SceRtcTick) +STUB("LWTpvj9Lt1A", uspoof_open_67) +STUB( + "LWTrfDzAZP0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE6resizeEj) +STUB( + "LWYunW+Oq2o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEE5resetEPS6_) +STUB( + "LWaOOFmmDzk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEEdeEv) +STUB( + "LWb2Qy3gI7s", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEC2EPS8_) +STUB( + "LWcY2Nlkcmc", + _ZThn16_N9Inspector22InspectorDebuggerAgent21breakpointActionProbeERN3JSC9ExecStateERKNS_22ScriptBreakpointActionEjjNS1_7JSValueE) +STUB("LWi3TIIIXtE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEEixEm) +STUB( + "LWiH5I1QDB0", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("LWigPJi97Ak", mono_aot_Sce_PlayStation_Orbis_Speechmethod_addresses) +STUB("LWjH6SZSrtg", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead25getJoinableSpecifiedUsersEv) +STUB("LWpPLSOJxCs", _ZThn16_N9Inspector22InspectorDebuggerAgent7stepOutERN3WTF6StringE) +STUB( + "LWvN9tXtNFM", + _ZN9Inspector18InjectedScriptBaseC1ERKN3WTF6StringEN10Deprecated12ScriptObjectEPNS_20InspectorEnvironmentE) +STUB("LWwJRVP1mgE", jpeg_fdct_6x3) +STUB( + "LWy23kfaDBA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEED1Ev) +STUB( + "LWyhmnwDgSY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEEC2EPS9_PNS2_10LibContextE) STUB("LXADzTIzM9I", sceNetCtlApGetInfo) +STUB( + "LXBN73cyum8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("LXDS4-UXiA0", mono_metadata_user_string) STUB("LXHkrCV453o", sceNpTitleMetadataIntGetNpTitleId) +STUB("LXKj9081AuY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEEneERKS7_) +STUB( + "LXQusfj08zE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEEC2ERKSA_) +STUB("LXSxok-AfFY", _ZNK7WebCore13GraphicsLayer15layerTreeAsTextEj) STUB("LXYJ384Fq2E", sceDebugGetUltQueueDataResourcePoolInfo) +STUB( + "LXgilY5ronY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE21intrusive_ptr_sub_refEPS9_) STUB("LXlmS6PvJdU", sceSigninDialogTerminate) +STUB( + "LXn-nl8cO0k", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEdeEv) +STUB( + "LXo-OIaiUIo", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) STUB("LXo1tpFqJGs", sceKernelMemoryPoolDecommit) +STUB( + "LXppT-p0ojg", + _ZN9Inspector23TargetBackendDispatcherC1ERNS_17BackendDispatcherEPNS_30TargetBackendDispatcherHandlerE) STUB("LXqt47GvaRA", sceLibcInternalSetMallocCallback) +STUB("LXxEsOsIa5g", u_isprint) +STUB( + "LXz1dClb7fA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE8copyFromERKS9_) +STUB("LY+KCdbXz8E", ubidi_isBidiControl_67) +STUB( + "LY-D6umDD70", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEneERKS9_) +STUB( + "LY01Qon53-U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE7reserveEi) +STUB("LY5usftTFhU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEEaSERKSA_) +STUB("LY9WTNL2bZ8", GCC_except_table7) STUB("LYATPVwT1+c", sceVideoCoreSyncSendRequest) +STUB( + "LYJaIDL1NKo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE8capacityEv) +STUB("LYNNj5rNb7w", _ZNK7WebCore12SettingsBase17fantasyFontFamilyE11UScriptCode) +STUB( + "LYNXavq6WGs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEdeEv) STUB("LYVV9z8+owM", sceGameUpdateCheck) +STUB( + "LYa56sqrJ-4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("LYb3RDkT2js", _ZN3sce7Toolkit2NP2V28Commerce23ServiceEntitlementLabelC2Ev) +STUB("LYbbZxXNAns", mdbg_service) +STUB( + "LYhorXcUqHg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEE11get_deleterEv) +STUB( + "LYlrk-s-KBQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEC2Ev) +STUB("LYn6kxpm6SY", _ZNK3sce2Np9CppWebApi11UserProfile2V114PersonalDetail13getMiddleNameEv) STUB("LYo3GhIlB38", sceLibcMspaceCalloc) +STUB( + "LYt9FMI-vz0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEED0Ev) +STUB( + "LYtPuYdtjpM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEEC2ERSA_) +STUB( + "LYuaixmyEpM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEC1Ev) +STUB("LYzR6YTZDAY", + _ZN7WebCore13GraphicsLayer12replaceChildEPS0_ON3WTF3RefIS0_NS2_13DumbPtrTraitsIS0_EEEE) +STUB("LZ+z6gFSoVs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEEC2Ev) +STUB( + "LZ0jN7vHpKQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEEC1ERSA_) +STUB( + "LZ34-59n0h0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEEC2ERKSA_) +STUB( + "LZ3vIzCjVAo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEC1EPS8_) +STUB("LZ99pcmYqck", mono_runtime_exec_main) +STUB("LZAYQ1Cjs9s", __sanitizer_unaligned_store16) STUB("LZBANaFbPqM", sceRegMgrCheckError) +STUB( + "LZDipMOi3vs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEC1EPS8_) +STUB( + "LZOMFoc3PpE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE21intrusive_ptr_sub_refEPS9_) +STUB("LZOP3XfTD9s", _ZN3sce7Toolkit2NP2V27Session7Session8deepCopyERKS4_) +STUB("LZPPDIgoaGg", _ZN3sce7Toolkit2NP2V27Session20LocalizedSessionInfoC2Ev) +STUB("LZTq4tfa24A", SwCtrlManagerCheckInitialize) +STUB("LZXEup0dILE", JSContextThreadYield) +STUB("LZjggkTtpHk", _ZN12video_parser5vpcom5WriteE) +STUB( + "LZlPz3qfTug", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEC1EPS7_PFvS9_EPNS2_10LibContextE) +STUB("LZlnmcG6iO8", _ZN3sce3pss5orbis9framework14PsmDelegateObj15AllocatePointerEv) +STUB("LZmvUdPxtWA", __tsan_write1_pc) +STUB( + "LZngR75DbGo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEE11get_deleterEv) +STUB("LZqSlU-3M0s", _ZN7bmalloc11AllIsoHeapsC1ERKSt11scoped_lockIJNS_5MutexEEE) +STUB("LZqa+qZvE1s", _ZN7WebCore7JSRange11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) STUB("LZs6hfPMnso", sceLncUtilGetResultLaunchAppByTitleId) +STUB( + "LZuH0D-x0Xs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEEC2EPSA_PFvSC_EPNS2_10LibContextE) +STUB( + "LZvCj5Gc6oI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE7reserveEi) +STUB("LZwZV0R1gd8", _ZN7WebCore9MediaList12deleteMediumERKN3WTF6StringE) +STUB("LZyPi2q90gA", _ZN3WTF3URL7setPathENS_10StringViewE) +STUB("LZygPtbSwMc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE6resizeEj) +STUB("La+ITqd79fs", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEE7get_refEv) +STUB( + "La2yo1HDzfQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEE11release_refEv) +STUB( + "La3-JlVy40k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEEC1Ev) +STUB("La5vpLrhfks", _ZN7WebCore9URLParser23maybeCanonicalizeSchemeERKN3WTF6StringE) +STUB("La79ycxEQqU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE6resizeEj) +STUB("La7xW-jcZwQ", tcsetattr) +STUB("La8MogjEivk", mono_aot_Sce_Vsh_ProfileCacheunbox_trampolines) +STUB("La9EkPp593w", _ZN13MsvMetaEditor8compact4EjPh) +STUB( + "LaAIXO3zShc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEE3getEv) STUB("LaHzixM8byk", sceClPthreadMutexLock) +STUB( + "LaM8sbn75c0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEaSERKS9_) +STUB("LaPaA6mYA38", _Mtxdst) +STUB( + "LaRW03hHano", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "LaV5QJX5LK8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEaSERS7_) STUB("Laac0S4FuhE", sceSystemStateMgrEnterStandby) +STUB("LaelDFxAfXE", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container16releaseDateIsSetEv) +STUB("LalIYNE3-Fk", _ZN3sce7Toolkit2NP2V28Commerce11SubCategory13IMAGE_URL_LENE) STUB("Lap11plzUDE", sceBgftServiceIntDownloadGetApplicationDataSize) STUB("LapIb799SSE", scePthreadTestcancel) +STUB( + "Lapxh2FY8Go", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "LaqyDjSQD+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEaSERKS7_) +STUB( + "LarGcv2d+lU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE5clearEv) +STUB("LarGdGoNVn0", _ZN3sce7Toolkit2NP21TusGetDataInputParamsC1Ev) +STUB("Lawzlk-rJE4", rgctx_fetch_trampoline_rgctx_8_p) STUB("LazJT1ZrQys", sceTextToSpeech2RegisterTextConversionItem) +STUB("Lb-4TJuvwfw", _ZN3sce7Toolkit2NP29ConsumeEntitlementInputParamsC2Ev) +STUB("Lb-f4s+SVXM", + _ZN3sce2Np9CppWebApi13InGameCatalog2V513ContentRating8fromJsonERKNS_4Json5ValueE) +STUB( + "Lb1GP0ffkEs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE4termEv) +STUB("Lb2FOzAwQJU", u_locbund_init_67) +STUB( + "Lb4R-u90qM4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB("Lb7QyteBpOU", + _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest8fromJsonERKNS_4Json5ValueE) +STUB("Lb8q7WWmrlQ", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle8fromJsonERKNS_4Json5ValueE) +STUB("LbC-L0jrSlo", __sanitizer_get_current_allocated_bytes) +STUB("LbEI-Sst+vs", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEEplEm) +STUB( + "LbEfT9z4SLs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEixEm) +STUB("LbEkNArPMrw", _ZN3JSC8Debugger15setBlackboxTypeEmN3WTF8OptionalINS0_12BlackboxTypeEEE) STUB("LbHgD9w6uAE", sceMbusRemoveProxy) +STUB( + "LbK-7bz3U+8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEEdeEv) +STUB( + "LbKds73K1O4", + _ZN3sce2Np9CppWebApi7Matches2V129RequestMatchStatisticsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_22RequestMatchStatisticsEEE) +STUB("LbLiLA2biaI", _LXp_mulx) +STUB("LbPy1SVqEr4", _ZN3sce7Toolkit2NP2V27Session8Sessions5resetEv) STUB("LbQ-jU9jOsk", sceUserServiceGetGlsCameraBrightness) +STUB("LbRK+D2JBdU", mono_bitset_copyto) +STUB("LbW3QuhQMMA", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_20ChallengeRecvDetailsEE9constructEPS3_RKS3_) +STUB("LbWS4xY+szs", WKPageGetMainFrame) +STUB("LbYos1NcEMA", _ZN12video_parser13cVideoPathMgv10InitializeEv) +STUB( + "Lbafrg1l0Vg", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_34DetailedProductInfoListInputParams9ProductIdEEC1ERKS5_) +STUB("LbdWSchBrOg", mono_class_is_assignable_from) +STUB( + "LbfXIdP82pI", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions9setfieldsENS1_6Common12IntrusivePtrINS6_6VectorINS6_6StringEEEEE) +STUB( + "LbhH9NeB93I", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi27getPlayerSessionInvitationsEiRKNS4_38ParameterToGetPlayerSessionInvitationsERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_54GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("LbjWfxY1jUo", _ZN7CoreIPC15ArgumentDecoder6decodeERm) +STUB( + "LbkmivkVG+4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE3endEv) +STUB("LbmZ+exvSQQ", _ZN3sce7Toolkit2NP2V27Ranking8TempRankaSERKS4_) +STUB( + "LbpZ-huwIv4", + _ZN3WTF12base64EncodeEPKvjRNS_6VectorIcLm0ENS_15CrashOnOverflowELm16ENS_10FastMallocEEENS_18Base64EncodePolicyE) +STUB("LbpqGC7ELHs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE3endEv) +STUB("LbstfuAwMhQ", sqlite3_wal_checkpoint_v2) +STUB("Lc-l1GQi7tg", _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +STUB("Lc214aXWRgg", _ZN3JSC12addErrorInfoEPNS_9ExecStateEPNS_8JSObjectEb) +STUB("Lc4uvrrd2oE", mono_debug_print_vars) +STUB( + "LcF2h4jSoN0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEeqERKS9_) +STUB("LcHsLn97kcE", _WGetfloat) +STUB("LcMJhTa9y+c", _ZN3JSC19SourceProviderCacheD2Ev) +STUB( + "LcNBdoTaZUw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEEC1EPS8_PNS2_10LibContextE) STUB("LcOZBHGqbFk", scePthreadRwlockattrGetpshared) +STUB( + "LcUMDZz1qHc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEC1Ev) +STUB("LcVrcRM3OxU", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession22getDisableSystemUiMenuEv) +STUB("LcWGak3Mp3c", WKBackForwardListItemCopyURL) +STUB("LcWsOD7iZTw", + _ZN3sce2Np9CppWebApi14SessionManager2V115SearchConditionC1EPNS1_6Common10LibContextE) +STUB( + "LcYxGlx9ZiY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEE7get_refEv) +STUB("LchJVpQsvgk", + _ZN3sce7Toolkit2NP8Commerce9Interface19displayDownloadListERNS1_23DownloadListInputParamsEb) +STUB( + "Lck7IYcq+ss", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "LcnlZ+j1Ki4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEE7get_refEv) +STUB("LcoiDhKoj94", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEC2Ev) +STUB( + "LcpGxUvT5E0", + _ZN7WebCore11DisplayList15DrawNativeImageC1ERKN3WTF6RefPtrI14_cairo_surfaceNS2_13DumbPtrTraitsIS4_EEEERKNS_9FloatSizeERKNS_9FloatRectESF_RKNS_20ImagePaintingOptionsE) +STUB( + "LcpmRGaA+Tc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) STUB("Lcqty+QNWFc", sceFiberStartContextSizeCheck) +STUB( + "LcuNMwTHr7A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEcvbEv) +STUB( + "LcvYvbXr8PE", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBody10setPayloadEPKc) +STUB("Lcwli-n-8mE", JSObjectCopyPropertyNames) +STUB("Ld-gfQ6mQJg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEC1ERS7_) +STUB( + "Ld1l+QHINM8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEC1EPS8_) +STUB( + "Ld1xQAiZyx8", + _ZN3JSC11SlotVisitor25addParallelConstraintTaskEN3WTF6RefPtrINS1_10SharedTaskIFvRS0_EEENS1_13DumbPtrTraitsIS6_EEEE) +STUB("Ld43hIDlfoA", mono_class_min_align) +STUB("LdAhxF8siFI", _ZN3sce2Np9CppWebApi11Matchmaking2V19Submitter14unsetAccountIdEv) +STUB( + "LdMEnAYgErk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE5beginEv) +STUB("LdOGV6ohqHw", mono_aot_Sce_Vsh_Gls_NativeCallmethod_addresses) +STUB( + "LdQ4BTOvFRw", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29putPlayerSessionsNonPsnLeaderEiRKNS4_40ParameterToPutPlayerSessionsNonPsnLeaderERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB("LdSTmOZ-KDs", cairo_matrix_transform_point) +STUB( + "LdTD+uZoJ-Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB( + "LdViLKVTHnc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEE3getEv) +STUB("Ldcx6Bfgxuc", WKBundleNavigationActionGetTypeID) +STUB("LddfS0Uiwr0", WKPageSetPageContextMenuClient) +STUB( + "LdinZWHlW1E", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "LdkRYOvB25E", + _ZN9Inspector20CSSBackendDispatcher16forcePseudoStateElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("LdoClcIfyIo", _ZN3sce7Toolkit2NP2V210Tournament24OfficialBroadCastDetailsD1Ev) +STUB( + "Ldrg0A1-WWE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("LduejRgJJi0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEC2Ev) +STUB( + "Le--uzycRZs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEEC1Ev) +STUB( + "Le-UP0Bz67Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEC2EPS8_) +STUB( + "Le-ik-R+SLA", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12string2IsSetEv) +STUB("Le0QS6QTxds", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEED1Ev) +STUB("Le1v5-mCWAA", rgctx_fetch_trampoline_rgctx_54) +STUB("Le7mifAKPRU", _ZNK3WTF10StringImpl8endsWithEDs) +STUB( + "Le7zdYi1Avw", + _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicket26getsubmitTicketRequestBodyEv) +STUB( + "LeE0ALJS26c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEC2EPS8_) +STUB( + "LeIumJWZxHo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE3endEv) +STUB("LeLYa92tlHA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEcvbEv) +STUB( + "LeTZQK-napc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE3endEv) +STUB("LeU-8RZY5cA", mono_gc_set_write_barrier) +STUB("LeU1W3saPaM", _ZNK7WebCore12NamedNodeMap6lengthEv) STUB("LeXBTikMUko", sceVisionManagerSetCallbackForUpdateRecog) +STUB( + "Lef6BwtTVbY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEEcvbEv) +STUB( + "LejlAr7khm8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEeqERKS9_) +STUB( + "LejmSSkrTA8", + _ZN3JSC12profiledCallEPNS_9ExecStateENS_15ProfilingReasonENS_7JSValueENS_8CallTypeERKNS_8CallDataES3_RKNS_7ArgListERN3WTF8NakedPtrINS_9ExceptionEEE) +STUB( + "LekknwlhKXE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE3endEv) STUB("LepGrgk77sM", sceAgcDriverGetOwnerName) +STUB("LeqII4J8VMQ", + _ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody18getUpdatedDateTimeEv) +STUB("LessaRjnGM4", mono_md5_init) +STUB( + "LevP0gMvSko", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEppEv) +STUB( + "LeyIa+NkTp8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("Lf-C-Kw1nFw", __tsan_atomic128_fetch_and) +STUB( + "Lf0CLaJj+lg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEneERKS9_) STUB("Lf3DeGWC6xg", sceImeCheckFilterText) +STUB("Lf6h5krl2fA", _ZNSt8numpunctIcED0Ev) +STUB( + "Lf7cjRupKNU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEC1Ev) +STUB( + "Lf7xAk81IL0", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebErrorC1EPNS1_6Common10LibContextE) +STUB( + "Lf85Dw2g0PM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEE7get_refEv) +STUB("Lf8ne3hMj2Q", mono_assembly_fill_assembly_name) +STUB("LfJza3uFV2k", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEEC2Ev) +STUB("LfMY9H6d5mI", _ZTSSt7_MpunctIcE) STUB("LfOVpdFit+Q", sceHttpCacheSystemInit) +STUB( + "LfPJj2RfuWU", + _ZN3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform19setUsePlayerSessionERKb) +STUB( + "LfRvacYeKEI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("LfZcWFkd3xg", WKPageClearAdClickAttribution) +STUB( + "LfcmPHqLZBs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("LfdKymUNa+s", _ZN3JSC19HeapSnapshotBuilder4jsonESt8functionIFbRKNS_16HeapSnapshotNodeEEE) +STUB("LferlGyfxiw", sqlite3_busy_timeout) +STUB("Lff3w6OBJWY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEEneERKS7_) STUB("LffcWEebPwg", sceLoginMgrServerNotifyShellUIState) STUB("Lffcxao-QMM", sceHttpDbgEnableProfile) +STUB("LfjVIt9q60k", + _ZNK7WebCore9FrameView23absoluteToDocumentPointENS_10FloatPointEN3WTF8OptionalIfEE) +STUB("Lfjae+MH6xg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session7SessionEEC1Ev) +STUB("Lfpgr7swjXk", rgctx_fetch_trampoline_mrgctx_103) +STUB( + "LftoJYRMngk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEE7add_refEv) STUB("LfxJWd0yncY", sceAvControlGetPuType) +STUB("LfySO1iWq18", _ZN3sce7Toolkit2NP2V28Matching7Request10CreateRoom23LOWEST_DISPLAY_PRIORITYE) +STUB("LfyUi-LkdCk", FT_Stroker_GetBorderCounts) +STUB("LfyZztvGXnI", _ZN3sce2Np9CppWebApi6Common6VectorIlED1Ev) +STUB( + "Lg+JrtvukhE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEC2Ev) STUB("Lg+NCE6pTwQ", sceNpProfileDialogInitialize) +STUB("Lg0s8p6Unl4", GCC_except_table435) +STUB("Lg0wFD5wTE4", _ZN7WebCore8SVGNames9colorAttrE) +STUB("Lg2ahtGW9jU", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicketaSERS5_) STUB("Lg2isla2XeQ", sceGnmSdmaCopyLinear) STUB("Lg5mNqy1zdQ", sceNpPushIntRegisterNotificationPacketCallback) +STUB("Lg6bTk9qyaM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEED2Ev) +STUB("Lg9Oo7x-xUQ", _ZN3JSC7Symbols36putGeneratorInternalFieldPrivateNameE) +STUB("LgC+bA2tQUg", _ZNK7WebCore11MediaPlayer21videoDecodedByteCountEv) +STUB("LgEOl4hz0xI", _ZN3sce2Np9CppWebApi6Common6VectorImE6insertENS2_13ConstIteratorImEERKmRS6_) +STUB("LgHcuCJgiEU", delegate_virtual_invoke_imt_14) +STUB("LgPxdgZH6Gk", __tsan_unaligned_write16) +STUB( + "LgR7sYI7QEM", + _ZN3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyD2Ev) +STUB( + "LgVl-GhD6Hs", + _ZNK3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBody10getPayloadEv) +STUB( + "LgWAO+pTcjs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEED2Ev) STUB("Lge4s3h8BFA", sceUserServiceSetGlsTtsFlags) +STUB("LggxI-FSP-I", _ZN3sce7Toolkit2NP2V28Matching7Request20SetInitConfigurationD2Ev) +STUB( + "Lgi+WTpq0iQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEE11get_deleterEv) STUB("Lgi5A4fQwHc", sceUserServiceGetIsRemotePlayAllowed) +STUB("LgiJQS-6LzU", _ZN7WebCore22EmptyFrameLoaderClient23didRestoreFromPageCacheEv) +STUB("Lglf9fWKyGY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEE7add_refEv) +STUB("Lgn3VirnPms", + _ZN7WebCore13StyledElement22setInlineStylePropertyENS_13CSSPropertyIDERKN3WTF6StringEb) +STUB( + "LgpsNrWuTd4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEC2EPS8_) +STUB( + "LgsQ+ZMnuQY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "LgtB2H8xcfc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE3endEv) +STUB("LguFTXgg94k", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEEC1EPNS2_10LibContextE) +STUB( + "Lgv0Omq5YpM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEC1EPS7_PNS2_10LibContextE) +STUB("Lgv4M9z-cNI", AnnotateIgnoreSyncEnd) +STUB( + "Lgw4BO0E6ng", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEC1ERKS7_) +STUB("Lh3eg9Z0woA", _ZN9Inspector21InspectorRuntimeAgent19setSavedResultAliasERN3WTF6StringEPKS2_) +STUB( + "Lh7is9Vfyiw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("Lh91unM2gh4", ucnv_swapAliases_67) +STUB("LhA0xOsWGDo", _ZN7WebCore9HTMLNames13compositeAttrE) STUB("LhCPctIICxQ", sceNpMatching2GetServerId) +STUB( + "LhIiQe1O3Fo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEC1EPS8_) +STUB("LhIn1985uhc", __asan_get_current_fake_stack) +STUB("LhJ0aGaa4Xg", mono_aot_Sce_Vsh_Stickerunbox_trampolines) +STUB("LhLaRhmF6ro", _ZN7WebCore20TransformationMatrix6rotateEd) +STUB("LhP92xllE7o", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE6resizeEj) +STUB( + "LhSxfHwsyFA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEppEv) +STUB("LhVX0MoZqvQ", _ZN7WebCore27createLegacyEditingPositionERKNS_13BoundaryPointE) +STUB("LhXkgyXa0kI", uprv_floor) +STUB("LhZxfioBop4", rgctx_fetch_trampoline_mrgctx_69) +STUB("Lha-94wxunU", _ZN3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead13unsetPlatformEv) +STUB( + "LhdYfba2SjE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEE3getEv) STUB("LhiUdPKY2qo", sceRegMgrSetbin) +STUB("Lhm5gwStMBY", + _ZN7WebCore22EmptyFrameLoaderClient28blockedByContentBlockerErrorERKNS_15ResourceRequestE) +STUB("LhsYYYyPdgs", _ZN3sce2Np9CppWebApi13InGameCatalog2V55Image11unsetFormatEv) +STUB( + "LhszWr6Dsc4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEED2Ev) +STUB( + "LhyoZVgViNw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEE7get_refEv) +STUB( + "Li6B3sulH3g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEE3getEv) +STUB("Li6RJZ33xIs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEED2Ev) +STUB("Li7qIUy8mks", _ZN10MsvUpdaterC2Ev) +STUB( + "LiDCMw3NOXY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEcvbEv) +STUB("LiDMCDVUaVU", AnnotatePCQGet) +STUB("LiDrqUJ3C+M", Java_sun_reflect_NativeConstructorAccessorImpl_newInstance0) +STUB("LiJyR7R9j9s", _ZN3WTF21MemoryPressureHandler13releaseMemoryENS_8CriticalENS_11SynchronousE) +STUB("LiPdHhuzpC8", _UIx86_64__mempool_alloc) +STUB( + "LiY1B2qT2Vo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEppEi) +STUB("LiZK5PkEeMY", EVP_PKEY_new) +STUB("LiZvA-SjCko", JSValueIsSymbol) +STUB( + "Lil2gF-1-2E", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("LilbhN7PAuk", _ZN7WebCore16HTMLInputElement10setCheckedEb) +STUB( + "Lilyf21g94I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("LitdtRdaC1k", _ZN3sce2Np9CppWebApi14SessionManager2V112NonPsnLeader13setPlayerNameEPKc) +STUB( + "Lix8kZ2pg7c", + _ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBodyC2EPNS1_6Common10LibContextE) +STUB( + "LixAMMvVYvM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("LizLWDLOZt4", _ZN7bmalloc15IsoHeapImplBase11scavengeNowEv) +STUB("Lj0pi48ul+o", + _ZN7WebCore24CoordinatedGraphicsLayer20setChildrenTransformERKNS_20TransformationMatrixE) +STUB( + "Lj1sT6JdilQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEED1Ev) +STUB( + "Lj3kSumSBvU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEEC2ERSA_) +STUB( + "Lj4DWFRIR3I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEC2EPS6_PNS2_10LibContextE) +STUB("Lj6Y0b3r4o4", ucal_inDaylightTime_67) +STUB("Lj6szd-GsJQ", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed4FeedEE3setEv) +STUB( + "LjDZAa+Eliw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEEC1ERSA_) +STUB("LjHvU9MgEwM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed13UsersWhoLikedEEC1Ev) +STUB("LjHzi7xjvUs", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEED2Ev) +STUB( + "LjI8uSFofe4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEmmEi) +STUB("LjInm72jEuo", _ZN3WTF17TextBreakIteratorC1ENS_10StringViewENS0_4ModeERKNS_12AtomicStringE) +STUB( + "LjOFedv7oVU", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData22getxPsnAtomicOperationEv) +STUB("LjbLu40rcXM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEE5resetEPS6_) STUB("LjdLRysHU6Y", sceHmdReprojectionSetOutputMinColor) +STUB( + "Ljn4Ibi77BU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE3endEv) +STUB("LjoYwmMxdek", _ZN7WebCore11DisplayList5ScaleD0Ev) STUB("LjwbHpEeW0A", sceRudpPollDestroy) +STUB("Ljxna5SYtvg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEixEm) +STUB("Lk1yMAgOGTs", _Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm14CpfPerfCounterE) +STUB("Lk6zcChMMfw", _ZNK3WTF10StringImpl16hasInfixEndingAtERKS0_j) STUB("LkBkse9Pit0", sceHmdInternalSetPortConnection) +STUB("LkOFUiblGSk", _ZN3sce3Xml3Dom15DocumentBuilder20setSkipIgnorableTextEb) +STUB( + "LkOJXBEX9hg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEE11get_deleterEv) +STUB("LkOgJS6ES+w", + _ZN7WebCore21WheelEventTestMonitor33setTestCallbackAndStartMonitoringEbbON3WTF8FunctionIFvvEEE) STUB("LkTU+9lx+Bg", sceBdSchedGetState) +STUB( + "LkWcT6ptIw8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEC2ERKS7_) +STUB("LkZ-XYvmwqE", _ZNK3sce2Np9CppWebApi11UserProfile2V16Avatar8urlIsSetEv) +STUB("Lkdm2yqZN1c", _ZN3sce2np18MemoryStreamWriterC1EPvm) STUB("Lkf86B98qPc", sceAgcGetPacketSize) +STUB( + "LkjXaD5T8rk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEE7get_refEv) +STUB("LkjsozmDq2Q", _ZNK3sce2Np9CppWebApi13InGameCatalog2V511ErrorEntity6toJsonERNS_4Json5ValueEb) +STUB("LkkWakMW2RA", _ZN7WebCore9HTMLNames11onabortAttrE) +STUB("Lkox4DrvpWU", _ZNK7WebCore11RenderLayer35isTransparentRespectingParentFramesEv) +STUB("Lkshkij4gp8", _ZNK7WebCore18TextureMapperLayer15fixedToViewportEv) +STUB( + "LkurBzgFeJA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEE7add_refEv) +STUB( + "Lkx5W5Yh+4s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEC1ERS7_) +STUB("Ll5gO+4szVs", WKArrayGetItemAtIndex) +STUB("Ll7geN7OE0c", _ZN7Nicosia29ImageBackingTextureMapperImpl10takeUpdateEv) +STUB( + "Ll8QHgawiY8", + _ZN9Inspector24CanvasFrontendDispatcher11canvasAddedEN3WTF6RefPtrINS_8Protocol6Canvas6CanvasENS1_13DumbPtrTraitsIS5_EEEE) STUB("LlCP8+zNfPo", sceM4aacEncFlushEx) STUB("LlFmfrkpjW0", sceShellCoreUtilFormatHddForRestore) +STUB("LlKEaAPfV4Y", uhash_initSize_67) +STUB( + "LlKPqS4qhuA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("LlM3ydj7W1s", FT_Select_Size) +STUB("LlSOFV-f2JU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEED2Ev) +STUB("Llb63HwT4pE", nn_errno) +STUB( + "LlhhVcMMUkE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("LliPs3y6os0", _ZNK3sce2Np9CppWebApi6Common6VectorIiE8capacityEv) +STUB("LlmmrLyssoY", _ZN7WebCore16HTMLMediaElement15clearMediaCacheERKN3WTF6StringENS1_8WallTimeE) STUB("LlodCMDbk3o", sceRtcInit) STUB("Llv693Nx+nU", sceUserServiceSetFileSelectorSortTitle) +STUB("Llx16-4OS+0", + _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse22getMatchStartTimestampEv) +STUB("LlyS9GN1Lnk", mono_debug_set_data_table_hash) +STUB("Lm5dWz4ye20", _ZN3sce2Np9CppWebApi6Common6BinaryC2EPNS2_10LibContextE) +STUB( + "Lm9bZUHsDWs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEED2Ev) +STUB("Lm9v7UGU0RM", Java_java_awt_GnmGraphicsDevice_getScreenWidth) +STUB("LmAqwKsb97g", _ZNK7WebCore12SharedBuffer23hintMemoryNotNeededSoonEv) +STUB( + "LmDfWMywi5o", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEeqERKS9_) +STUB("LmDhtl0kAz4", _ZN23sceMetadataReaderWriter8MetadataC2EPFPvmEPFvS1_E) +STUB( + "LmJSSZ7UO48", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEE7add_refEv) +STUB( + "LmWB8sGuM1A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEEaSERSA_) +STUB("LmXBi7gEjfI", c00) +STUB("LmXIpdHppBM", __eqsf2) +STUB("LmXR95K9aqY", WKBundlePageGetTypeID) +STUB( + "LmXeeSegx2c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "LmeyLIReikw", + _ZNK3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfiles13isInitializedEv) +STUB("LmjxPORjjyo", __sanitizer_get_allocated_size) +STUB("Lmklt3OHfSU", + _ZNSt9_FacetptrISt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEE6_PsaveE) STUB("Lmtc9GljeUA", sceNpScoreGetGameDataByAccountId) +STUB("LmuZPYQ+aFc", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V15Error14getReferenceIdEv) +STUB( + "LmxhwqFmYyM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEEcvbEv) +STUB( + "Ln3S92SBuRs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEE11get_deleterEv) +STUB( + "Ln6xY9a2IpI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEixEm) +STUB("Ln9I6YfmYJU", ft_glyphslot_alloc_bitmap) STUB("LnFf5ShUn3E", sceDeci4hDrfpClose_fuse) +STUB("LnIh3mg-y3o", _ZN25MmsFileUpdaterFsOperation11seekTmpFileEmb) +STUB("LnIn2A6j-Gc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEE11release_refEv) +STUB( + "LnQqQ1LyC4E", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData37hasxPsnTcsComparedLastUpdatedDateTimeEv) +STUB( + "LnSiWhW8h3A", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitationsC1ERS5_) +STUB("Lngv2Zg6Zfc", _ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_18SessionInformationEE8max_sizeEv) +STUB("LnjjzlJ+L5c", _ZN3sce2np8NpCommId5ClearEv) +STUB( + "LnoiVYVxBaY", + _ZN7WebCore12ChromeClient20requestStorageAccessEON3WTF6StringES3_mmONS1_17CompletionHandlerIFvbEEE) +STUB( + "LntpPvg2i8M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("Lnu5VubYagc", _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse8getTasksEv) +STUB("Lnuqes9pmSk", jcopy_block_row) +STUB( + "LnwFnTqGvqo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEEaSERKSA_) +STUB( + "Lnx+6CxC9Vg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEC2Ev) +STUB( + "LnxlnlpEJ7I", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEdeEv) +STUB("Lnzqj7zDJho", WKUserContentURLPatternMatchesSubdomains) +STUB( + "Lo3N8y34Qi4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEC2EPS8_) +STUB( + "Lo8Xqc7nx30", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEE7add_refEv) +STUB( + "LoAw3zk58OM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEC1ERS7_) +STUB( + "LoCHHnSnfko", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEC2Ev) +STUB("LoCI65aPYYU", _ZN3sce7Toolkit2NP2V210Wordfilter16SanitizedComment5resetEv) +STUB( + "LoCzEb5vQMI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEC1EPS8_) +STUB("LoERcmdhZ80", _ZN3JSC7Symbols30allocateUint32ArrayPrivateNameE) +STUB( + "LoFqZDLsfEc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB("LoG5g70ctTU", _ZN4Manx8X509name13getNumOfItemsENS0_12X509NameTypeE) +STUB("LoGCzyaqki8", + _ZN3sce7Toolkit2NP2V29Messaging22GameDataMessageDetails25MAX_SIZE_DATA_DESCRIPTIONE) +STUB( + "LoO6NRT350k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEC1EPNS2_10LibContextE) STUB("LoVMVrijVOk", sceNpScoreGetBoardInfo) +STUB( + "LoWd9jqfWKE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEC1Ev) +STUB( + "LoeqqBtDf+Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEEC1Ev) +STUB( + "LogMnsodV+Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEEaSERKSA_) +STUB( + "Lohpoj0CgRU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEED2Ev) +STUB("LonHHN98tMI", FT_Add_Module) +STUB( + "LonK-ilSBbE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEEC2EPNS2_10LibContextE) +STUB("LonQb19FyF4", _ZN3sce2Np9CppWebApi6Common6VectorIdEC2EPNS2_10LibContextE) STUB("LosLlHOpNqQ", scePlayGoSetLanguageMask) +STUB("LotC9rVP3Lo", _ZN3sce2np9JsonValueD0Ev) +STUB( + "LotMMhPqWp0", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayerC1Ev) STUB("Lota-iiR+8M", sceCesUcsProfileInitBig5Cp950) STUB("LoxW4s4iDtI", sceLncUtilLaunchByName2) STUB("LozEOU8+anM", sceAudioInInput) +STUB("Lp0qUez+2Oc", mono_aot_Sce_Vsh_DataTransfermethod_addresses) +STUB("Lp9dfZ9nK9c", ucnv_setDefaultName_67) +STUB( + "LpAj7UOsLsE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEneERKS9_) +STUB("LpEDTvRF2GU", _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody11setTicketIdEPKc) +STUB("LpI1Qlzmpco", _ZN7WebCore11DisplayList11ClearShadowD2Ev) +STUB( + "LpSt7VAlkr4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEaSERKS9_) +STUB("LpYGs4wM4wY", _ZN3JSC13iteratorCloseEPNS_9ExecStateENS_15IterationRecordE) +STUB( + "LpYaRuJ8wh4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEEC2Ev) +STUB( + "LpYkrAqkhl4", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsC1EPNS1_6Common10LibContextE) +STUB("LpZwQfEgtgk", _ZN3sce7Toolkit2NP2V23TUS7Request12TusUserInputD2Ev) STUB("LpfRp+-sitI", sceNpPush2UnregisterExtendedDataFilter) +STUB( + "LphhoDrpPUg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("Lppmvb1S2gw", _ZN7WebCore11FrameLoader17HistoryController14setCurrentItemERNS_11HistoryItemE) +STUB( + "Lpunr959jRk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEneERKS9_) +STUB("LpxdSc7EQM4", _ZN2GK9PlayerPSN15requestClientIdEv) +STUB("Lq4BmOdXeks", _ZN3sce2Np9CppWebApi11Matchmaking2V110UserTicketD2Ev) +STUB("Lq7ryOJ78Sg", _ZN3sce2Np9CppWebApi14SessionManager2V114RepresentativeD2Ev) STUB("LqBKASoabtM", sceEsvmEngineMediaKeySystemAccessSetCdmStorageConfig) +STUB( + "LqCRfxFaoH0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE5clearEv) +STUB("LqCiDsdcKRw", _ZN3JSC2VM18setBucketSpaceSlowEv) +STUB("LqGXW9vld38", monoeg_g_hash_table_insert_replace) +STUB("LqMTHIRzmYc", _ZTV12Mp4Retriever) +STUB( + "LqZoyabS2lE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB( + "Lqac0drpzgU", + _ZN3sce2Np9CppWebApi14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyC1EPNS1_6Common10LibContextE) +STUB("Lqbu-g9AFZo", nn_bind) +STUB("LqcMfJHJHzk", _ZNK3JSC7JSValue4dumpERN3WTF11PrintStreamE) STUB("LqclbpVzRvM", sceFontGraphicsSetupFillMethod) +STUB("LqdDZa4McOI", + _ZN3sce2Np9CppWebApi7Matches2V119CreateMatchResponseC1EPNS1_6Common10LibContextE) +STUB( + "LqeiIwTzgN8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEED2Ev) +STUB( + "Lqli9541WIE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "LqnQu29fBdQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "Lqo2jEqgfwU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEppEv) +STUB("Lqo5NiuZSnM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEED2Ev) STUB("Lqp4EDIRXSo", sceShareUtilityOpenShareMenu) +STUB("LqsYUDHb2DY", SwReset) STUB("LqvNn+dsaI0", sceVideoCoreSetAudioMute) +STUB( + "Lqvs8GX6-J4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE7reserveEi) +STUB("LqwTsrK-NUw", _ZN7WebCore16VisibleSelectionC2ERKNS_5RangeENS_9EAffinityEb) +STUB( + "Lr2f0CT3dnQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEeqERKS7_) +STUB("Lr3a15XWIGw", _ZNK7WebCore13CSSImportRule4hrefEv) STUB("Lr8ovHH9l6A", sceMsgDialogGetResult) +STUB("Lr91kLn38uM", curl_mprintf) +STUB("LrCdNgQvy2o", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyD2Ev) +STUB("LrDN5JMSdAY", mono_event_get_parent) +STUB( + "LrE8XzvDfhw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE8copyFromERKS9_) +STUB( + "LrEHkzcKEmw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEED1Ev) +STUB("LrG5rDRT-Bk", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11InvitationsEE5resetEv) +STUB("LrHAUym-r-g", _ZN3sce7Toolkit2NP2V212ActivityFeed13UsersWhoLiked8deepCopyERKS4_) +STUB("LrKTHvwbMM0", _ZN9Inspector24TargetFrontendDispatcherdlEPv) +STUB( + "LrPszJBH+j4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEE3getEv) +STUB("LrT15KUYBvc", cairo_image_surface_get_format) +STUB("LrVLyMhdlF4", _ZN9Inspector24TargetFrontendDispatchernwEmPv) +STUB( + "LrVUzvPv9n8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("LrXu7E+GLDY", _FZero) +STUB( + "Lrc1HbTI6lA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEED1Ev) +STUB( + "LreB6YxEfKo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE3endEv) +STUB("LredT8zbSlk", WKPageRunJavaScriptAlertResultListenerGetTypeID) STUB("Lrelj2uF1Lc", sceMbusSetScratchData) +STUB("LrfNXipg+GM", + _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchStatusRequest19unsetNpServiceLabelEv) +STUB("LrhrFIcj6Zg", rgctx_fetch_trampoline_mrgctx_90_p) +STUB("Lrl-feo81C8", g_convert) STUB("Ls+C7--QDuo", sceFaceTrackerGetUserFeature) +STUB( + "Ls+G-4uO8vQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) STUB("Ls3rKzckGXQ", scePatchCheckerEnableAutoDownload) STUB("Ls4eWDrbNmg", sceNpUtilXmlGetOneChar) +STUB("Ls4tzzhimqQ", strcat) +STUB( + "LsB0evBhi54", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEC1Ev) +STUB("LsB538+IPrE", FT_Property_Set) +STUB("LsF2GYgfHWY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEdeEv) +STUB( + "LsHFX27nLkQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("LsLcH1FitXw", _ZN3sce2Np9CppWebApi7Matches2V116JoinMatchRequest10getPlayersEv) +STUB( + "LsUk2A2-nRw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("LsUk5LsyhDs", _ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody12playersIsSetEv) +STUB("LsVLIew2D-w", WKPreferencesSetVisibleDebugOverlayRegions) +STUB("LsWB0JM1C6k", _ZThn120_N7WebCore16HTMLMediaElement5pauseEv) +STUB("LsaZNLQQwUY", _ZNK7WebCore11MediaPlayer7preloadEv) +STUB( + "LscaQ4auCU8", + _ZN3JSC15encodeCodeBlockERNS_2VMERKNS_13SourceCodeKeyEPKNS_17UnlinkedCodeBlockEiRNS_18BytecodeCacheErrorE) +STUB( + "LsmptPcRLh0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEED1Ev) +STUB( + "Lsrq3Xi9TyM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEE5resetEPS9_) +STUB("Lsu4XJJ3V2o", FcLangSetAdd) STUB("Lsvo3HZpVVI", sceNpManagerUtilGetVshScopeList) +STUB("LsyswTUNTRs", FT_Matrix_Multiply_Scaled) +STUB( + "Lt-pvpkUkvQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE5beginEv) +STUB("Lt3sf9ROn9Y", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE5beginEv) +STUB("Lt4407UMs2o", _ZNSt7collateIcED0Ev) +STUB( + "Lt5MgVFYPow", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStats16setincludeFieldsEPKc) +STUB( + "Lt7W3EUaGzg", + _ZN7WebCore9FrameView13paintContentsERNS_15GraphicsContextERKNS_7IntRectENS_6Widget25SecurityOriginPaintPolicyE) +STUB("Lt7u5PXrxpc", + _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponseC2EPNS1_6Common10LibContextE) +STUB("LtA5aM-3lbw", _ZN7WebCore20GraphicsContextStateC2Ev) +STUB("LtBBDJEZXhY", u_isalpha) +STUB("LtF-jTMby10", Java_sun_awt_GnmUtils_createEqueue) STUB("LtGMfy0pCj4", sceLncUtilGetAppCategoryType) +STUB( + "LtIV8N5IYo0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEC2EPS6_PNS2_10LibContextE) +STUB( + "LtIb04-6k20", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE3endEv) +STUB( + "LtMaTuMXEWY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEE7get_refEv) +STUB("LtTA7DK81HU", utext_copy_67) +STUB("LtTLpfZx9hU", _ZNK3sce2Np9CppWebApi14SessionManager2V15Error11sourceIsSetEv) STUB("LtTouSCZjHM", sceAgcCbNop) +STUB( + "LtXxp9OpEPI", + _ZN7WebCore16HTMLTableElement8setTFootEON3WTF6RefPtrINS_23HTMLTableSectionElementENS1_13DumbPtrTraitsIS3_EEEE) STUB("LtYqw9M23hw", sceNpIntGetNpTitleIdSecret) STUB("LtaP8denrAU", sceCesSJisToUcs2) +STUB( + "Ltcpm4rzI7o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEE11release_refEv) +STUB("LtdI8pVuGvY", mono_image_load_file_for_image) +STUB( + "LtdUj1hXNVM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEC2Ev) +STUB( + "LtjRDJcVKMY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEED1Ev) STUB("LtkeQwMIEWY", sceNpRtcParseRFC3339) +STUB( + "LttHAxzE0Fc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE8pushBackERKS8_) +STUB( + "LtujYbXWVhk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEppEi) +STUB("Lty4XOWZ-eM", _ZN3JSC7Symbols20findIndexPrivateNameE) +STUB( + "Lu2BBe84jTI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEptEv) +STUB("Lu44f2ODjhg", _ZN3IPC15ArgumentDecoder6decodeERt) +STUB("LuATVidxU1M", _ZN12video_parser18cMp4FFLHndlManager20getFF4UBoxSearchHndlEyy) +STUB("LuDSC7EdhME", _ZN7WebCore12TextEncodingC2EPKc) STUB("LuLTRt0rfTw", _sceUltWaitingQueueResourcePoolOptParamInitialize) +STUB( + "LuNRk6mxxuk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEE11get_deleterEv) +STUB("LuP1plTAR7g", glOrbisTexImageResourceSCE) +STUB( + "LuRoYDoLJ-E", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEplEm) +STUB( + "LuT6vcKVrPw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEdeEv) +STUB( + "LuUFO1VXhN0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEEdeEv) +STUB( + "LuW755ohUDc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "LuXb10rWt6I", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEEiRNS2_10LibContextEPT_m) +STUB( + "LuaAu53gLeg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEED2Ev) +STUB( + "Luci1n5U3ZE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE21intrusive_ptr_sub_refEPS9_) +STUB("Ludc0ycnXxQ", _ZNK7WebCore15HTTPHeaderField5valueEv) +STUB("LudizOI9A8w", mono_get_exception_serialization) +STUB("LueZxsZ3MzI", uprv_decNumberQuantize_67) +STUB( + "Luf4zM3nH40", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("LuiHf1-7Ljo", _ZN7WebCore8SVGNames10animateTagE) +STUB( + "Luk2AHoGZco", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEEC2ERKSA_) +STUB( + "LuxmK0eYueA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEC2EPKS8_) +STUB("LuyOly5kVs4", rgctx_fetch_trampoline_rgctx_74) +STUB("Lv+HgpCH0l4", _ZNK7WebCore5Frame6pageIDEv) +STUB("Lv+ojj9G798", mono_aot_System_Web_Servicesunwind_info) +STUB("Lv1AbBshtNo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEE7add_refEv) +STUB( + "Lv4LA-Au71Y", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "Lv6RbMZX5vM", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("Lv7nelJ547U", __cxx_global_var_init .30) +STUB( + "LvGBqqNITeU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEcvbEv) +STUB("LvLMwrQ0tdc", SHA224_Update) STUB("LvLdnjxdEVQ", sceVideoCoreInterfaceDestroyCanvasContext) +STUB("LvLuiirFk8U", __atomic_fetch_or_1) +STUB( + "LvOINVROtwU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("LvS3WmcWVuI", _ZN3sce7Toolkit2NP22CreateNpSessionRequestC1Ev) +STUB("LvSzmTZ0Mss", ucnv_toUChars) +STUB("LvYa+e31sn0", _ZL19get_type_info_entryP15_Unwind_ContextP13dwarf_eh_lsdai) +STUB( + "LvdVUr6s1Qo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("Lve0jCux1P0", _ZN7WebCore20TransformationMatrix10rectToRectERKNS_9FloatRectES3_) STUB("LviQNhT7V9I", sceVideoCoreGetPlayStatus2) +STUB( + "LvrHBzGAlpQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEE5resetEPS9_) +STUB( + "Lvv0FhW0b-0", + _ZN3JSC16profiledEvaluateEPNS_14JSGlobalObjectENS_15ProfilingReasonERKNS_10SourceCodeENS_7JSValueERN3WTF8NakedPtrINS_9ExceptionEEE) +STUB("Lw1mm+b3Wpc", _ZN7WebCore11MathMLNames10mfencedTagE) +STUB( + "Lw3Lm07OBn8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEC2EPS8_) +STUB("Lw3aQwNM3Mo", _ZN7WebCore16MIMETypeRegistry29isSupportedJavaScriptMIMETypeERKN3WTF6StringE) +STUB( + "Lw3y-bVEGLA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEneERKS9_) +STUB( + "Lw4mW6vvqk0", + _ZN7WebCore11JSImageDataC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_9ImageDataENS6_13DumbPtrTraitsIS8_EEEE) +STUB("Lw6seBkJxu0", _ZN3sce2Np9CppWebApi7Matches2V119RequestInGameRoster10getPlayersEv) STUB("Lw8wfmCaxlQ", sceSrcUtilityGetDelaySamples) +STUB( + "LwCHbXPtY34", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEC1Ev) +STUB( + "LwCqsh1RVZ4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) STUB("LwG8g3niqwA", sceKernelDlsym) +STUB("LwGrNk25QbE", _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeDataD1Ev) +STUB( + "LwI-9ZUlXAY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEixEm) +STUB( + "LwJGTys4-Sk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("LwOTtPShu1A", mono_aot_Sce_Vsh_Orbis_CdlgServerNpCommercejit_code_end) +STUB( + "LwQXzyPBIrk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEE7get_refEv) +STUB("LwQztOS2lSA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEmmEv) +STUB( + "LwSiGRM82As", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEEC2ERS9_) +STUB( + "LwWrug-t35M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "Lwd4VQHnUTc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE3endEv) +STUB( + "LwdCNKfPGB0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEEC2ERKS9_) +STUB( + "LwfEy9FPDms", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEmmEv) +STUB("LwfoWagdxPw", _ZN7WebCore18ImageBufferBackendD2Ev) +STUB("LwiybUx9yTw", _ZNK7WebCore24CachedResourceHandleBasentEv) +STUB("LwjKjkJmfcQ", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_21AbortGameDataResponseEED1Ev) +STUB( + "Lwp5PMmmli0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEEaSERSA_) +STUB("LwtBQ63orO8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V114SearchOperatorEEC2EPS6_) +STUB( + "LwuoPy3q2iA", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB( + "LwvG8eybHA0", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesC1EPNS1_6Common10LibContextE) +STUB("Lx2UnhxxNjM", _ZN3WTF14FileSystemImpl18getVolumeFreeSpaceERKNS_6StringERm) +STUB("Lx7IowQuyG0", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V18PlatformEEC2Ev) +STUB("LxB5h8w0zVI", ASN1_INTEGER_get) +STUB("LxDpuRLJHw0", mono_declsec_flags_from_method) +STUB("LxEGbb7O+SA", WKContextGetProcessModel) +STUB("LxGIYYKwKYc", rint) +STUB( + "LxGwo7yFOIE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEE6assignEPS6_PFvS8_EPNS2_10LibContextE) STUB("LxIacrWiJ3w", sceKernelRdup) +STUB("LxKs-IGDsFU", _ZNSt7collateIwE5_InitERKSt8_Locinfo) +STUB( + "LxPT6xeOc3I", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEdeEv) +STUB("LxcEU+ICu8U", feof) +STUB( + "Lxd6Tqm4FBw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEED2Ev) +STUB("LxfJIY3ZpY4", u_vsnprintf_67) STUB("LxfVKLcwdtE", sceVnaSetInputDevice) +STUB("LxfdtqlGEEI", _ZN7WebCore10JSLocation13visitChildrenEPN3JSC6JSCellERNS1_11SlotVisitorE) +STUB("LxgWXY73QBc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEED1Ev) STUB("Lxgze5-E3uQ", sceFiosGetSuspendCount) +STUB("Lxk6KBx9R2Y", _ZN7WebCore17DOMImplementation18createHTMLDocumentERKN3WTF6StringE) +STUB("LxkJXQ1xY0M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEC1ERS7_) +STUB( + "Lxlc+SwCt98", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "Lxz430qYVnM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEE7get_refEv) +STUB( + "Ly-XIFcaOZg", + _ZN3sce2Np9CppWebApi13InGameCatalog2V520ContentRatingFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_13ContentRatingEEE) +STUB( + "Ly4ERnoHvAc", + _ZN3sce2Np9CppWebApi14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBody10getPlayersEv) +STUB( + "Ly6V88vbx-A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEE7get_refEv) +STUB( + "Ly9vpaDZhhw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE4sizeEv) +STUB( + "LyAhubwamUI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEEC2ERKSA_) +STUB( + "LyBQLole83Y", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE5emptyEv) +STUB( + "LyF4wnizxrk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEE3getEv) +STUB( + "LyGFPzTlrIc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEEC2ERKS9_) +STUB("LyLvydnxMpQ", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V18Variable12setPrevValueERKl) +STUB("LyOypNLMoz0", hb_font_funcs_make_immutable) +STUB( + "LyP2khlQ1Vo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEE11get_deleterEv) +STUB("LyRrwIE5yMA", _ZN7WebCore10Pasteboard20typesSafeForBindingsERKN3WTF6StringE) +STUB("LyT+ncBHMW8", _ZN3sce3pss5orbis9framework12PsmStringObj6ToUtf8Ev) STUB("LyXzCtzleAQ", sceUserServiceGetGlsLfpsSortOrder) +STUB("LyiYFmzddAU", _ZN3JSC16SymbolTableEntry16freeFatEntrySlowEv) +STUB( + "LyjJBsrgvsI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEC1EPKS8_) +STUB( + "LyjtRSXbiYc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "LynJU7REpCM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE3endEv) STUB("LyopcaFAuYE", scePlayReadyApiVersion) +STUB( + "LyqlvK9QPqE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("Lyx2DzUL7Lc", fmaxf) +STUB("Lz1QWf3VBhU", _ZN7WebCore14SocketProviderD0Ev) +STUB( + "Lz4PitW6VhE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEC1Ev) STUB("Lz5AYtGxIFI", sceMbusNotifyBtDisconnection) +STUB( + "Lz65LFhfh44", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "LzSL8QYmtU8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("LzScIve1BCQ", _ZN3JSC8Debugger21clearDebuggerRequestsEPNS_14JSGlobalObjectE) +STUB("LzcJ0RIItxI", _ZN9Inspector28HeapBackendDispatcherHandlerD1Ev) +STUB("LzgQdmYCow4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEEC2ERS9_) +STUB( + "LziGgq8eqVc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEppEv) +STUB("Lzj4ws7DlhQ", _ZNSt7_MpunctIcED0Ev) +STUB( + "LzkXvHVj5lk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEC1Ev) +STUB("LzkaFSvLI38", _ZN6WebKit12ChildProcessD1Ev) +STUB( + "LzlGiBOZQMw", + _ZN3sce2Np9CppWebApi14SessionManager2V151PatchGameSessionsSearchAttributesRequestBodyFactory7destroyEPNS3_44PatchGameSessionsSearchAttributesRequestBodyE) STUB("LzmHDnlcwfQ", sceFontGetLibrary) +STUB( + "Lzo0fUo0Ooc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEED2Ev) +STUB("LzrIP543zJ4", _ZN7WebCore11FetchLoaderD0Ev) STUB("LzrlqPj88rM", sceFsUfsMkLwfs) +STUB("LzwYYN7rruQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEE7get_refEv) +STUB( + "M+-OgZquLPY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEppEv) +STUB("M+2LiCRrhEM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEE7get_refEv) +STUB( + "M+44Afz7Meo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEEptEv) +STUB("M+8k7J+5LSk", WKPageSetDebugPaintFlags) +STUB("M+AMxjxwWlA", _ZNSt14numeric_limitsIcE9is_signedE) +STUB("M+ApfvAXtGM", _ZNK7WebCore27AuthenticationChallengeBase15protectionSpaceEv) STUB("M+BfgdgsOd0", sceShellCoreUtilIsAppLaunched) +STUB( + "M+Cb46eHecg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "M+D3Cnwwfp0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("M+EM-xG11lE", jpeg_idct_5x10) +STUB("M+ElTgUSbuc", _ZN7WebCore18TextureMapperLayer16setTextureMapperEPNS_13TextureMapperE) +STUB("M+F+0jd4+Y0", _ZNSt14_Num_ldbl_base11round_styleE) +STUB( + "M+H54Yqzq84", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEE21intrusive_ptr_sub_refEPS7_) +STUB("M+HQlnym0PY", _ZN3JSC15WeakHandleOwnerC2ERKS0_) +STUB("M+J5CR0IjHI", _ZN3JSC19HeapSnapshotBuilder10appendNodeEPNS_6JSCellE) +STUB( + "M+K0polOw5U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEaSERKS9_) +STUB("M+PHeA8BHpo", Java_java_io_ObjectInputStream_bytesToDoubles) +STUB( + "M+QKXg9CNkY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEC2EPS6_PNS2_10LibContextE) +STUB( + "M+RRVvkMnKk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEEptEv) +STUB( + "M+VBRIQVzAY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEdeEv) +STUB("M+XOGquY4SY", _ZN7WebCore22EmptyFrameLoaderClientaSERKS0_) STUB("M+ZTsbhxKpM", sceVorbisDecComment) +STUB("M+bKURAEUWQ", _ZNK7WebCore12TextIterator5rangeEv) +STUB("M+clD3pQf5E", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus11setDataSizeERKl) +STUB("M+n8OTEs3zY", _ZN3sce3pss4core8graphics16InitializeCsharpEPK19ScePsmConfiguration) +STUB( + "M+pl5vYWz-g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE7reserveEi) +STUB( + "M+zyq9sTt2g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB("M-4MjPhNKlw", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersC2ERS5_) +STUB("M-7DI8ISBpo", + _ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody17getNpServiceLabelEv) STUB("M-7b4noXQUE", sceSystemServiceAcquireBgmCpuBudget) +STUB( + "M-H35DvnOks", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEC2ERKS7_) +STUB("M-H6PyRy-Ng", _ZN7WebCore8SVGNames20yChannelSelectorAttrE) STUB("M-JkRj7X+No", sceVideoOutControlHdcpEncryption) +STUB("M-KRaPj9tQQ", _ZNSt9_Num_base8digits10E) +STUB( + "M-KlvVj8nGs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC2Ev) +STUB("M-LvbOAOGog", _ZNK3JSC17DebuggerCallFrame9thisValueEv) +STUB("M-M64qo47+Y", _ZNK3sce2Np9CppWebApi14ConnectAccount2V28PSNError6toJsonERNS_4Json5ValueEb) +STUB("M-QrHhhM3iU", _ZN3sce2Np9CppWebApi14SessionManager2V115SearchCondition10unsetValueEv) STUB("M-VFI2DJWQA", sceAmprAmmCommandBufferUnmap) +STUB( + "M-Vm6+jTXJ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("M-YU1vNflLA", _ZTVN9Inspector23CanvasBackendDispatcherE) +STUB("M-aG2xrDafY", _ZN7WebCore16HTMLMediaElement19originsInMediaCacheERKN3WTF6StringE) +STUB( + "M-aMqegFFX8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEE5resetEPS9_) +STUB("M-cv6Alcfck", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEEmmEv) +STUB("M-ebS4MrKG8", _ZN22MmsMdCommonFsOperation13destroyBufferEv) +STUB( + "M-hpuyrH3PI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEeqERKS9_) +STUB( + "M-j+UAPQzEQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEEptEv) STUB("M-mpR475+UY", sceVencSetDecodedFrame) +STUB( + "M-ognm+pj7Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEneERKS9_) +STUB( + "M-sRggxg3LY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEC1EPNS2_10LibContextE) +STUB("M-tWavI4cgg", _ZN3sce4Json5Value9setParentEPKS1_) +STUB( + "M09JT5auM+4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEmmEv) +STUB( + "M0AnTwKwHIg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEplEm) STUB("M0CpWNzV-1o", sceSystemServiceUsbStorageRegisterCallbackForMapUnavailable) +STUB("M0Jx255A3Mo", uchar_swapNames) +STUB("M0QKpW7MKJY", WKContextConfigurationProcessSwapsOnNavigation) +STUB( + "M0RsL4kliIY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSB_) +STUB("M0SL7jvjcRM", _ZN3sce7Toolkit2NP2V211SharedMedia10BroadcastsC1ERKS4_) +STUB( + "M0bUfl4no6M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEppEv) +STUB("M0m0BafMFfg", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_6TicketEEC1Ev) +STUB("M0n7l76UVyE", _ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2EPKcm) +STUB( + "M0nE52+tC1I", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEcvbEv) +STUB("M0nMIe5GRfw", _ZN7CoreIPC15ArgumentEncoder13addAttachmentERKNS_10AttachmentE) STUB("M0ttm8h7SKA", sceAgcAcbDmaDataGetSize) +STUB("M0wAVaGtgog", _ZN3JSC7Symbols18isArrayPrivateNameE) +STUB( + "M0wSBgcn8pQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEdeEv) +STUB("M0xRdNUa-ks", mono_runtime_object_init) +STUB("M0yz1LPGSaE", _ZN3WTF10StringImpl20createWithoutCopyingEPKhj) STUB("M0z6Dr6TNnM", sceKernelReportUnpatchedFunctionCall) +STUB("M1+Xfg-PGkA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V19JoinStateEEneERKS7_) +STUB( + "M1-w4U8-fuw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEC1EPS6_PNS2_10LibContextE) +STUB( + "M12XO5PRGUI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEeqERKS9_) +STUB("M156RuYoUbU", FT_Load_Glyph) STUB("M16uOyvsNr0", sceMbusAddAudioOutHandleAttribute) +STUB( + "M19yqsc5VIs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEmmEv) +STUB( + "M1CvsjqkJhs", + _ZN7WebCore31CrossOriginPreflightResultCache16canSkipPreflightERKN3WTF6StringERKNS1_3URLENS_23StoredCredentialsPolicyES4_RKNS_13HTTPHeaderMapE) STUB("M1EJrOWnLuk", scePsmReadConfigurationFile) STUB("M1Gma1ocrGE", scePlayGoOpen) +STUB( + "M1LnjRscx-w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEED2Ev) +STUB( + "M1MYO9xKmPs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEdeEv) +STUB("M1OFnlIAH-8", WKPreferencesSetTextAreasAreResizable) +STUB("M1OcbXuUDmU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEED2Ev) STUB("M1TvFst-jrM", sceRtcConvertUtcToLocalTime) +STUB( + "M1UcYxGccvg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEE3getEv) +STUB("M1bySqqCrUc", mono_aot_Sce_Vsh_AppContentUtilWrapperjit_code_start) +STUB("M1jmeNsWVK8", _ZTIPc) +STUB( + "M1n+xu5mwyo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("M1nLQ3KYhdU", _ZN3JSC24JSPropertyNameEnumerator6s_infoE) +STUB("M1oyrqKQAK8", _ZNK7WebCore21UserContentURLPattern7matchesERKN3WTF3URLE) +STUB("M1ps1PTXL0Y", uprv_getInfinity_67) +STUB("M1qebHGl8jk", _ZN7WebCore12ChromeClient28setUpPlaybackControlsManagerERNS_16HTMLMediaElementE) +STUB( + "M1rWv0Tlcak", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToSetMultiVariablesByUser13isInitializedEv) +STUB( + "M1wIWM7-p1I", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("M1xC101lsIU", _Geterrno) +STUB("M20sd1vw+K0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEEmmEi) +STUB( + "M24LjfLKrOE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE6resizeEj) +STUB("M27ezF1iANs", glBlitFramebuffer) STUB("M2BUB+DNEGE", sceNpWebApiCreateExtdPushEventFilter) +STUB("M2I-F2kRVDg", sr11) +STUB("M2LmqcXxnGA", + _ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody20unsetUpdatedDateTimeEv) +STUB( + "M2McEOHa-tk", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "M2PK7YTSDLo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "M2VtCruk-Bw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "M2YUG8B68AM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEEC1ERKSA_) STUB("M2ZF-ClLhgY", sceErrorDialogOpen) +STUB("M2bGWSqt764", vfwprintf) +STUB("M2bRppC+oQw", __tsan_mutex_destroy) +STUB("M2dlUKAGMNM", _ZN7WebCore16VisibleSelectionC1Ev) +STUB("M2eV2Ax+Wa4", WKPreferencesSetPageVisibilityBasedProcessSuppressionEnabled) +STUB("M2isEnSzn6c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEC2Ev) +STUB( + "M2rF+ma3KdE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEcvbEv) +STUB("M2tnzBxypQM", delegate_virtual_invoke_12_p) +STUB("M3-8ClQTyOc", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIiEeqERKS4_) +STUB( + "M3-zZxof05s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEaSERKS7_) +STUB( + "M33TKZDr-G8", + _ZN9Inspector14InjectedScript13getPropertiesERN3WTF6StringERKS2_biibRNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime18PropertyDescriptorEEENS1_13DumbPtrTraitsISC_EEEE) +STUB("M34a21aBdv0", + _ZNK3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer16customData1IsSetEv) STUB("M3ER4aQZimk", sceKernelStreamWriteCreate) STUB("M3OkENHcyiU", sceSigninDialogClose) +STUB("M3PbaU7mZ7M", _ZN4Manx5Mutex4lockEv) +STUB( + "M3Qe4kEI9Sc", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21deleteMultiDataByUserEiRKNS4_32ParameterToDeleteMultiDataByUserERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB("M3RIQfv8j-U", sr09) +STUB( + "M3X3PwJCpuY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "M3bFn9VTm5U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEE21intrusive_ptr_add_refEPS7_) +STUB( + "M3cLKAzBRsk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE5eraseENS2_8IteratorIS6_EERS9_) +STUB( + "M3coAqhC038", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEC1Ev) +STUB("M3d3At918CI", _ZN3JSC7Symbols33promiseRejectionHandlePrivateNameE) +STUB( + "M3dmYxVjHR8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE8capacityEv) +STUB( + "M3eBcnW81ck", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEC1EPS8_) +STUB("M3fhHHrL1Gw", ucsdet_getAllDetectableCharsets_67) +STUB( + "M3gtrXWqJyI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE4sizeEv) +STUB("M3nB2b1kxnQ", _ZN3JSC19InlineWatchpointSet7freeFatEv) +STUB( + "M3pe9BNP27o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEC1EPKS8_) +STUB("M3u0GOCnJBU", _ZN3sce7Toolkit2NP2V27Session8SessionsC2ERKS4_) STUB("M3wFXbYQtAA", sceNpUnregisterStateCallbackA) +STUB("M3wvfsvGb1s", _ZN3sce7Toolkit2NP2V212EventsClient10EventColorD1Ev) +STUB("M3zkWIxtrOQ", _ZN7WebCore21ContentSecurityPolicyD1Ev) +STUB( + "M40FpurAsbE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEEaSERSA_) +STUB("M41cWFIOyaw", mono_aot_Sce_Vsh_ShellCoreUtilWrapperjit_code_start) +STUB( + "M42LrQl+gmw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "M441QxXLDiw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("M46QgdVPQnM", umutablecptrie_close_67) +STUB("M47IaAVmeZA", + _ZN7WebCore12SharedBuffer6appendEON3WTF6VectorIcLm0ENS1_15CrashOnOverflowELm16EEE) +STUB( + "M48VnPVnPOg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE7popBackEv) +STUB("M4AQDDBAdoQ", _ZN7WebCore11HistoryItemC2ERKN3WTF6StringES4_S4_NS_25BackForwardItemIdentifierE) +STUB( + "M4Bl9g1S8eY", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126MatchCompletionRateFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_19MatchCompletionRateEEE) +STUB( + "M4CSmLdgPfI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEC2ERS7_) +STUB("M4Jima9IsvA", _ZN3JSC4Yarr11YarrPatternC2ERKN3WTF6StringENS_11RegExpFlagsERNS0_9ErrorCodeEPv) +STUB("M4K8XwzqwOs", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V18VariableD1Ev) STUB("M4LYATRhRUE", sceNgs2RackGetInfo) +STUB( + "M4UV637Bp88", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEC1EPS6_PNS2_10LibContextE) STUB("M4XlLFnzQaQ", sceNpEntitlementAccessPollUnifiedEntitlementInfo) +STUB("M4YYbSFfJ8g", setenv) +STUB( + "M4ZeFvdJlrQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "M4gVw0mlsNc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE5emptyEv) +STUB("M4pw1uAHYwU", _ZN3JSC7Symbols35typedArraySubarrayCreatePrivateNameE) +STUB( + "M4tFCcRYFhk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE6resizeEj) STUB("M4xKWUytNMo", sceVrServiceDialogTerminate) +STUB( + "M4ylZ2Misrc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEED2Ev) +STUB( + "M4zHruzjOsA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEC2EPKS8_) +STUB( + "M4zSJyT4Abg", + _ZN3sce7Toolkit2NP2V27NpUtils17checkAvailabilityERKNS3_7Request17CheckAvailabilityEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB( + "M5+vUhScXUA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEED1Ev) +STUB( + "M50fzoFfOIA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEC2Ev) +STUB( + "M53712Om+hc", + _ZN7WebCore11JSDOMWindow3putEPN3JSC6JSCellEPNS1_9ExecStateENS1_12PropertyNameENS1_7JSValueERNS1_15PutPropertySlotE) +STUB("M57SzXaZWI0", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEEC2Ev) +STUB("M57e7fPYrR8", _ZN3IPC15ArgumentDecoder6decodeERb) +STUB("M581hEXTfZo", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEEC2ERS7_) +STUB("M5DxRze+xzs", _ZN7WebCore11MathMLNames5miTagE) +STUB( + "M5FmK3NmwK0", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Runtime15PropertyPreview4TypeEEESt8optionalIT_ERKN3WTF6StringE) +STUB( + "M5JRhfoHsPM", + _ZN9Inspector20CSSBackendDispatcher22getInlineStylesForNodeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) STUB("M5Jyo9TKYPI", sceNpUtilityTerm) +STUB("M5KJmq-gKM8", jnf) +STUB( + "M5Nc+bXgpAA", + _ZN9Inspector21InspectorRuntimeAgent24getDisplayablePropertiesERN3WTF6StringERKS2_PKbRNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime18PropertyDescriptorEEENS1_13DumbPtrTraitsISE_EEEERNS8_INSA_INSC_26InternalPropertyDescriptorEEENSF_ISK_EEEE) +STUB("M5RyY1L1RDI", __tsan_switch_to_fiber) +STUB("M5UcH7dhJNw", mono_btls_x509_name_print_string) +STUB( + "M5ZibCzWrM4", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBody16unsetInvitationsEv) +STUB( + "M5Zxha3Y-dg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("M5dtVv0ln5Q", FTA_Remove_Module_smooth) +STUB( + "M5lMr-PhjMM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB("M5puyr6kdfI", _ZN3JSC16JSStrictFunction6s_infoE) +STUB( + "M5s0JTah4qM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEptEv) +STUB("M5xhwYV0fsM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEixEm) +STUB( + "M5zIAMueMQ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEaSERKS7_) +STUB( + "M623Kz2DegA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEED2Ev) +STUB("M62jLpTKqaA", _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities8Activity13getActivityIdEv) +STUB("M666JyEakIQ", WKPreferencesGetNeedsStorageAccessFromFileURLsQuirk) +STUB( + "M69tYynt1NE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEppEi) +STUB( + "M6EerIgOzW4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("M6EnOWTxshU", _ZN4Manx6CookienwEm) +STUB("M6Fzke-gRV0", _cosf_impl) +STUB( + "M6QbxqVTnxQ", + _ZN7WebCore25WebSocketChannelInspector33willSendWebSocketHandshakeRequestEPNS_8DocumentERKNS_15ResourceRequestE) +STUB( + "M6VDUk8LJcw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEC2EPS8_) +STUB( + "M6d-9stcaLk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEEC2ERSA_) +STUB("M6fCazmaYRo", delegate_virtual_invoke_3) STUB("M6ggviwXpLs", sceRudpPollWait) +STUB( + "M6h-BwqvIeA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEeqERKS9_) +STUB("M6nCy6H8Hs4", _Atqexit) +STUB( + "M6nodgmlkxg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("M6pA5g2mR0E", _Z27VideoPlayerVcs_SetLoopRangeimm) STUB("M6qiY0nhk54", sceLibcHeapSetTraceMarker) +STUB( + "M6sjaHfyc9w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEC1EPS8_) +STUB("M6vHGJbOBC4", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V219WebApiFilterRequestC1EPNS1_6Common10LibContextE) +STUB("M6w-7bUrYGE", _ZN7WebCore11DisplayList17DrawFocusRingPathC1ERKNS_4PathEffRKNS_5ColorE) STUB("M6wp6+JUSRI", sceCompositorSetIndirectCompositionCommand) +STUB("M6znLNy5P-k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEEmmEv) STUB("M7+3rTaF1Bk", sceUlpMgrVshReadEvent) +STUB( + "M7-CqYy9wAE", + _ZN3JSC8JSObject17defineOwnPropertyEPS0_PNS_14JSGlobalObjectENS_12PropertyNameERKNS_18PropertyDescriptorEb) +STUB("M704rXTcR0U", _ZN7WebCore14JSVMClientData15initNormalWorldEPN3JSC2VME) +STUB("M72CrQTjE5A", mono_aot_Sce_Vsh_WebViewDialogjit_code_end) STUB("M76dl-GnCs8", sceMusicPlayerServiceNextTrack) +STUB("M79DgA3XnF8", _ZTVN7WebCore11DisplayList20DrawTiledScaledImageE) STUB("M7A+l4pYZYE", sceDeci4hDrfpOpen) STUB("M7FIVsvMulQ", sceUpsrvUpdateGetEulaStrLen) +STUB("M7H19Nse748", _ZN7WebCore8SVGNames13clip_ruleAttrE) +STUB("M7KmRg9CERk", jrand48) +STUB( + "M7WJUg-LMck", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("M7ZzlDi-pH8", ucurr_getDefaultFractionDigitsForUsage) +STUB("M7c9P1DiVjE", _ZN9Inspector14ConsoleMessagenaEmPv) +STUB("M7eRY+R01tQ", _ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody11getLocationEv) +STUB( + "M7i4piz9Lm4", + _ZN3sce7Toolkit2NP6Events9Interface15getEventDetailsEPKNS1_23EventInformationRequestEPNS1_9Utilities6FutureINS1_16EventInformationEEEb) +STUB("M7mvWG7IyPw", _ZN7WebCore11DisplayList4ClipD0Ev) +STUB("M7nvMGJySqk", _ZN9Inspector26TimelineFrontendDispatchernwEmPv) +STUB("M7o1DcnrzY4", _ZN7WebCore16ResourceResponseC2ERKN3WTF3URLERKNS1_6StringExS7_) STUB("M7qwhVoqyko", sceAppInstUtilAppGetCustomThemeInfo) STUB("M7xXaEUT0AM", sceCesUtf8ToSJis) +STUB("M7zDhMX8ddM", _ZN7WebCore19HTMLTableColElement7setSpanEj) +STUB("M8+wbBy-2n0", _ZN7WebCore13MIMETypeCachedlEPv) +STUB("M829RJ26qMA", JSRemoteInspectorSetParentProcessInformation) +STUB( + "M85bkfDYbx8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEED2Ev) +STUB("M86y4bmx+WA", _ZTSb) +STUB( + "M8CSk3tNci8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEaSERS7_) +STUB("M8CnXs6+v6I", _ZN7WebCore14MicrotaskQueueC1Ev) +STUB("M8L0bOIkLh4", _ZN9Inspector22InspectorDebuggerAgent23setAsyncStackTraceDepthERN3WTF6StringEi) +STUB("M8LF3jjsskg", _ZN3JSC4Yarr9interpretEPNS0_15BytecodePatternERKN3WTF6StringEjPj) +STUB("M8MMEkTAmSk", + _ZN7WebCore10ScrollView36scrollOffsetChangedViaPlatformWidgetERKNS_8IntPointES3_) +STUB( + "M8NjIIjHLP4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE8copyFromERKS9_) +STUB( + "M8QNhP1in8g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEC1ERKS7_) +STUB( + "M8Qbn8mWsb4", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_13WhoLikedStoryENS1_15AppSTLAllocatorIS5_EEEEC1Ev) +STUB("M8VZ3iIlmyg", setgroups) +STUB( + "M8XfcZV0pkw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("M8XjMzOr1aY", _ZNK15AbstractStorage14TwitterService14GetServiceTypeEv) +STUB("M8Z-Nl2VMdM", _ZN3sce7Toolkit2NP2V28Commerce7Request25DisplayDownloadListDialogC1Ev) +STUB( + "M8dO9HVLaOA", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "M8g46R4q1mk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEC1EPNS2_10LibContextE) STUB("M8icY9OwkKs", sceNpEntitlementAccessRequestServiceEntitlementInfo) STUB("M8m6+Xnz9Ds", sceFiosPathNormalize) +STUB( + "M8mVT-WCfAk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEC2EPS8_) +STUB("M8mhZ0K1zNE", _ZNK7WebCore4Text9wholeTextEv) +STUB("M8nDCr49uyU", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEEC1Ev) +STUB("M8pHNPzTrBU", _ZN3sce2Np9CppWebApi7Matches2V121ResponsePlayerResultsD2Ev) +STUB( + "M8pZ7hdjAHg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEEC1ERKSA_) +STUB("M8vS+e2ktqg", mono_aot_System_Coreunwind_info) +STUB( + "M8xDbD+oYGM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE23clearOnFinishedCallbackEv) +STUB("M8ySIkxecJ4", OCSP_BASICRESP_free) +STUB("M8zfv6JPj8A", _ZN2sh8DestructEPv) +STUB( + "M9-IYHzVvTc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEC2Ev) +STUB("M94SjXo-UVA", FTA_Support_Renderer_Smooth_Lcd) +STUB("M97BIVb8Vs8", + _ZNK7WebCore6Quirks61shouldUseLegacySelectPopoverDismissalBehaviorInDataActivationEv) +STUB("M9C74OaaivY", _ZN3sce7Toolkit2NP2V29Challenge10ChallengesC2ERKS4_) +STUB("M9CtYe8dyUQ", mono_aot_Sce_Vsh_GriefReportStorageunbox_trampolines) +STUB( + "M9EDyZHL-hI", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB( + "M9F-anYY+RM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE21intrusive_ptr_sub_refEPS7_) +STUB("M9G58ZJkHUw", _ZN7WebCore21MediaRecorderProviderC1ERKS0_) +STUB( + "M9GTqNENo5U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEaSERKS9_) +STUB( + "M9H1cruqJo8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "M9OyC7kX0qU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEEptEv) STUB("M9PNUN4QjQA", sceKernelWriteWaitOnCounterCommand) +STUB( + "M9RaVTuzCI4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEEC2Ev) STUB("M9RtXpjSYtE", scePigletSetConfigurationVSH) +STUB("M9T9g4aScws", _ZN3JSC18BytecodeCacheErroraSERKNS_11ParserErrorE) STUB("M9WTdcmeIOU", sceVnaGetVoiceDataCollectionSettingsAsync) +STUB("M9XZVQjNk8E", _ZNK7WebCore6Editor17shouldDeleteRangeEPNS_5RangeE) +STUB( + "M9ZF6NkCbfs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE8capacityEv) STUB("M9Zur3ydU6g", sceSrcUtilityResample) +STUB( + "M9dJFFyqmCs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEED2Ev) +STUB( + "M9kBiG-fNUA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE21intrusive_ptr_sub_refEPS9_) +STUB("M9kQOmiczSI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEdeEv) +STUB("M9lakfS0LP4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEEC1ERKSA_) STUB("M9noOXMhlGo", sceUserServiceSetFileBrowserFilter) +STUB( + "M9oOPAKYIms", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEEptEv) +STUB("M9pQ6esgGDM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEC2Ev) +STUB("M9sasBW1kWI", _ZN7WebCore9HTMLNames25onwebkitendfullscreenAttrE) +STUB("M9wKVlQLlos", _ZN7WebCore11RenderTheme9singletonEv) +STUB("M9xBwzqxry4", ucol_open_67) STUB("M9yBzRKkjPc", sceAgcDriverGetResourceName) STUB("M9z1YhPCH98", sceNpUniversalDataSystemIntRecordObjectSetInt64) +STUB("M9zgYti+txM", + _ZN3sce2Np9CppWebApi14ConnectAccount2V214PSNError_error8fromJsonERKNS_4Json5ValueE) +STUB( + "MA+34AGJjM0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEEaSERKSA_) +STUB("MA0+9ZdsOAs", delegate_invoke_impl_target_9) +STUB( + "MA1voKbveBw", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi17updateMatchDetailEiRKNS4_28ParameterToUpdateMatchDetailERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB("MA4fsBvIXjA", + _ZN12video_parser17cVideoProfilerMp411_addElementERNS_7cVpListINS_13VpMediaInfo_tEjEERS2_) +STUB( + "MA7dkTiHa84", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEC2EPS6_PNS2_10LibContextE) STUB("MA9vSt7JImY", sceNpScoreGetRankingByRangeA) +STUB("MAAhaEVUpks", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12FriendsRanksEE12deepCopyFromERS7_) +STUB( + "MACG7krBIGg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE8copyFromERKS9_) +STUB("MAI5R6vc7Ck", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error12unsetMessageEv) +STUB("MATfP6N7eII", _Locale2) +STUB( + "MAXlctbiwMs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("MAaAR4xBNVY", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE8copyFromERKS7_) +STUB("MAalgQhejPc", _ZNSt23_Generic_error_categoryD1Ev) +STUB( + "MAc8-EId61U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("MAfh8fD31XQ", ures_getUTF8StringByKey_67) +STUB("MAmLGadodRE", WKPageReload) +STUB("MApHziT-St4", FcFontSort) +STUB("MApY6W9PMHM", _ZN3IPC15ArgumentEncoder6encodeEi) +STUB("MAqDIzmTVhQ", _ZN3sce2Np9CppWebApi6Common6VectorIiE7popBackEv) +STUB( + "MAsAAqCpVG0", + _ZN3sce7Toolkit2NP7Ranking9Interface16registerGameDataEPKNS1_23RegisterGameDataRequestEPNS1_9Utilities6FutureINS1_24RegisterGameDataResponseEEEb) +STUB("MB-MyMoHx8I", _ZN3JSC7Symbols18flatMapPrivateNameE) +STUB("MB1VCygerRU", _ZNSt13basic_ostreamIwSt11char_traitsIwEE6sentryD2Ev) +STUB("MB3EExhoaJQ", CERT_checkCertificateIssuer2) +STUB( + "MB6gwF0xegw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEE11get_deleterEv) +STUB("MBD3R5w2nho", _ZN7WebCore23CoordinatedImageBacking7addHostERNS0_4HostE) +STUB( + "MBFyEZqP-kM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEE11release_refEv) +STUB( + "MBHZ07OoGeI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE3endEv) +STUB("MBIrQeS3ILw", WKContextGarbageCollectJavaScriptObjects) +STUB("MBJYKbOvmo8", _ZN3JSC7Symbols15thenPrivateNameE) STUB("MBMa6EFu4Ko", sceGnmValidateResetState) +STUB( + "MBQlHsLb1CM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE3endEv) +STUB("MBYc6kmK11g", _ZN3sce7Toolkit2NP15AppSTLAllocatorIcE8allocateEmPKv) +STUB("MBi5D9Wuwqo", _ZN15AbstractStorage14TwitterContentD2Ev) STUB("MBjBkaF-9IE", sceCesEucKrToUtf32be) STUB("MBlv8YWoyOk", sceVideoOutAddBufferAttributeOption) +STUB( + "MBpF3vC+QVk", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi22ParameterToCreateMatch21setcreateMatchRequestENS1_6Common12IntrusivePtrINS3_18CreateMatchRequestEEE) +STUB("MBq0U407794", YGNodeStyleGetHeight) +STUB("MBqJzcMpTOQ", _ZN3JSC22DeferredWatchpointFire7fireAllEv) +STUB( + "MBrpYIAhuFg", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE5getIdEv) STUB("MBuItvba6z8", sceKernelReleaseDirectMemory) +STUB("MBvOb2GxOPg", _ZN7WebCore26MessagePortChannelRegistryD1Ev) +STUB("MBwkZncofuk", WKUserMediaPermissionCheckSetUserMediaAccessInfo) +STUB( + "MC6Cl5bvYv4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEC1Ev) +STUB("MC84ca4Rv3g", WKBatteryManagerProviderUpdateBatteryStatus) +STUB( + "MCAsOwSWmdk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEixEm) +STUB("MCC-f9Vdrok", JSSynchronousGarbageCollectForDebugging) +STUB("MCCQhElIfYo", _ZN3WTF9BitVector7setSlowERKS0_) +STUB( + "MCHQBFLC8AQ", + _ZN3sce2Np9CppWebApi11Matchmaking2V120PlayerForReadFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_13PlayerForReadEEE) +STUB("MCHUB4D8fqw", _ZN7WebCore14ScrollableArea22invalidateScrollCornerERKNS_7IntRectE) STUB("MCJ8SkzsQxY", sceVideoOutLatencyMeasureSetStartPoint) +STUB("MCL6jlaptWw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEC1ERKS7_) STUB("MCLGkfBmw4c", sceNpXmlParseInit) +STUB("MCPXVnQrz7Q", _Z19Ime_ConfigGetNativeimjRi) +STUB("MCPsmT2jOnM", _ZNK7WebCore13HitTestResult19isDownloadableMediaEv) +STUB("MCXbvH462z4", _ZN7WebCore9endOfWordERKNS_15VisiblePositionENS_9EWordSideE) +STUB( + "MCZ12c35mP4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE7reserveEi) +STUB( + "MCZjpQpxIZs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEC2Ev) STUB("MCdZ06CSUOc", sceKernelCallIndirectBuffer2) +STUB("MCfbh3JL63A", _ZNK7WebCore8Document21selectedStylesheetSetEv) +STUB("MCjFh5R9IPI", _ZN3sce7Toolkit2NP2V210Tournament5MatchC1ERKS4_) +STUB("MCjmAHDZC+w", _ZN3sce7Toolkit2NP2V28Presence12Notification14PresenceUpdateaSERKS5_) +STUB( + "MCmfghdNtKU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEED2Ev) +STUB("MCnMnMU64e0", _ZN9Inspector24ConsoleBackendDispatcherD2Ev) +STUB( + "MCofF34CUQU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEE11release_refEv) +STUB("MCrm7EZmqHU", _ZN3sce7Toolkit2NP2V211SharedMedia14CommonMetadataD1Ev) +STUB("MCt4zuyBOb4", __ubsan_handle_shift_out_of_bounds) +STUB( + "MCtJ9D7B5Cs", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERe) +STUB( + "MCyBKbftquM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "MCyFMuXepF0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEptEv) +STUB("MD0r8vzTkgo", _ZN3sce7Toolkit2NP2V27Session16FixedSessionDataC1Ev) +STUB( + "MD2ebuML5kE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEC1EPS8_) +STUB("MD4QBE77KXY", _ZNK7WebCore8Document14bodyOrFramesetEv) +STUB( + "MDChuiTPw6Y", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("MDIC0vj1JZc", Java_java_io_RandomAccessFile_readBytes) +STUB("MDKCFT4GBmI", UCNV_TO_U_CALLBACK_STOP_59) STUB("MDLD5Ly94Xk", sceAgcCbSetUcRegisterRangeDirect) +STUB("MDNtMScojMs", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V18PlatformEEptEv) +STUB("MDRmrDYppcA", _ZN7WebCore11MathMLNames12semanticsTagE) +STUB( + "MDS4M264Evk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEED1Ev) +STUB( + "MDae5mCll7Y", + _ZNK3sce2Np9CppWebApi14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBody6toJsonERNS_4Json5ValueEb) +STUB("MDapjMih-wI", mono_thread_set_max_threads) STUB("MDbg-oAj8Aw", sceNetConfigWlanBackgroundScanQuery) STUB("MDc5cd8HfCA", sceRtcTickAddHours) STUB("MDczH3SxE9Q", sceNpManagerIntGetUserIdByNpId) +STUB("MDgMnL6At94", curl_slist_append) +STUB( + "MDimvIHe1AU", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE5getIdEv) +STUB( + "MDjKwfHPgz4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB("MDm1UeNYKos", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEE5resetEPS6_) +STUB("MDo32-D9KvU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEC2Ev) +STUB("MDoERBBOQmA", res_read_67) +STUB("MDr9u8cF6sg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEC1ERS7_) +STUB( + "MDrKFjj02l0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEC1Ev) +STUB("ME+KyIgladA", _ZN9Inspector21InspectorRuntimeAgentD2Ev) STUB("ME0ImfgjmL0", sceAvSettingDebugSetDiagState) STUB("ME1eUot7+Qw", sceAgcDriverGetRegShadowInfoAgr) +STUB("ME2+4NP17WE", mono_aot_Sce_Vsh_MorpheusUpdWrapperunbox_trampolines) +STUB("ME5vQjjzBNg", JSObjectMakeArrayBufferWithBytesNoCopy) +STUB( + "ME5vkNDLprk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEdeEv) +STUB( + "ME8vMJaEq-w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEE21intrusive_ptr_add_refEPS7_) STUB("MEAmHMynQXE", sceFontGraphicsSetupLocation) +STUB("MEE4xlWGmaY", mspace_memalign) +STUB("MEHclURJzvg", rgctx_fetch_trampoline_rgctx_22) +STUB( + "MEHgsOaTrJE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEEcvbEv) +STUB("MEHh2nvwDnM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEEC1ERS9_) STUB("MEJ7tc7ThwM", sceCoredumpAttachMemoryRegionAsUserFile) +STUB( + "MEL+OXI+YCg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEC2ERKS7_) +STUB("MELi-cKqWq0", _ZSt19_Xbad_function_callv) +STUB("MEO6XKmpYRI", + _ZN7WebCore32ScrollingStateFrameScrollingNode37setFixedElementsLayoutRelativeToFrameEb) +STUB( + "MEU5nIeF5Lk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEE7get_refEv) STUB("MEW-500sD1I", sceCtrlpSetPlayData) STUB("MEWjebIzDEI", sceFontFtSetAliasPath) +STUB("MEYMyfJxWXg", _ZN3sce2np6ThreadD0Ev) +STUB( + "MEc1hQitclw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEaSERKS9_) +STUB("MEf+3X04AJg", _ZNK3sce2Np9CppWebApi6Common6String6lengthEv) +STUB( + "MEkE3UdKQ1U", + _ZN9Inspector28DOMDebuggerBackendDispatcher28setInstrumentationBreakpointElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("MEksKX3uX4o", _ZN7WebCore12JSTimeRanges7destroyEPN3JSC6JSCellE) +STUB( + "MEkvsEtBQa4", + _ZN3sce2Np9CppWebApi14SessionManager2V157PostPlayerSessionsSessionIdInvitationsResponseBodyFactory7destroyEPNS3_50PostPlayerSessionsSessionIdInvitationsResponseBodyE) +STUB( + "MEpbG4uAkLM", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("MEted8DT97Y", _ZN3JSC4Yarr17RegularExpressionC1ERKS1_) +STUB("MEuF5zm-r4o", + _ZN3sce3pss5orbis9framework12PsmFramework24RegisterPInvokeCallTableEPKNS2_15PsmLibraryEntryE) +STUB("MEw3W8PmhtQ", + _ZN3sce2Np9CppWebApi7Matches2V121ResponseTeamStatistic8fromJsonERKNS_4Json5ValueE) +STUB( + "MF2ZvC+5bmU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEED2Ev) +STUB( + "MF4XklFVDYs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEE7get_refEv) +STUB("MF5Iqk2sIv8", _ZN3sce7Toolkit2NP2V24Auth7Request11GetAuthCodeD1Ev) +STUB( + "MF6NaRwanWE", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Network9Initiator4TypeEEESt8optionalIT_ERKN3WTF6StringE) +STUB("MF8lq+JsFCc", sdb_single_step_trampoline_p) +STUB( + "MFJTz0vmS0U", + _ZN3sce7Toolkit2NP2V29Challenge16consumeChallengeERKNS3_7Request16ConsumeChallengeEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("MFNoFK5h6ZA", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEEC2ERKS7_) +STUB( + "MFNzWhydzjg", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEEiRNS2_10LibContextEPT_m) +STUB("MFPYwGYXSa0", delegate_virtual_invoke_5) +STUB("MFTmuksR2zk", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16UnlockedTrophiesEE12deepCopyFromERS7_) +STUB("MFe91s8apQk", log1pf) +STUB( + "MFhFvw5pJh8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEE11get_deleterEv) +STUB("MFk1R-JEDFw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEaSERKS7_) +STUB("MFkiGi5kd5s", __ubsan_handle_vla_bound_not_positive_abort) +STUB("MFnPTtcUaaI", _ZN7WebCore9FrameView20enterCompositingModeEv) +STUB( + "MFoysAc7xj0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("MFp9FnJC7ZU", _ZN3IPC15ArgumentDecoder29decodeVariableLengthByteArrayERNS_13DataReferenceE) +STUB( + "MFpYuGDj1z4", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEEiRNS2_10LibContextEPT_m) +STUB("MFqdrWyu9Ls", _ZNSt14numeric_limitsIfE12max_digits10E) +STUB("MFryBDONqzI", _ZN4Manx9X509chain5getAtEi) +STUB( + "MFwobPcfZLE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEED2Ev) STUB("MG+ObGDYePw", sceUserServiceGetTopMenuTutorialFlag) +STUB( + "MG+REMAN5+I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("MG4i0+m-FBI", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEE3getEv) +STUB( + "MGDBeULs4GM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEC2EPKS8_) +STUB("MGEIQsujKaY", FT_GlyphLoader_CheckSubGlyphs) +STUB("MGK72ntlRiw", mono_aot_Sce_Vsh_GriefReportStorageunbox_trampolines_end) +STUB("MGMwq9DNMyE", cairo_region_create) +STUB("MGUslo9y4pk", _ZN7WebCore9FrameView39setViewportConstrainedObjectsNeedLayoutEv) +STUB("MGVUejAWRxo", _ZN7WebCore9HTMLNames13uiactionsAttrE) +STUB("MGXBh0CTu8w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEEC2EPS6_) +STUB("MGi5VM-Lfq8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEED2Ev) +STUB("MGj6SADnkQ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEC2Ev) STUB("MGkAS4ncQ90", sceAudioOutSysOpen) +STUB( + "MGpMZZwxFWc", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditions39getsetVariableWithConditionsRequestBodyEv) +STUB("MGrj20+EK+U", __sys_opmc_enable) +STUB( + "MGsRyeabMac", + _ZN7WebCore26PresentationOrderSampleMap36findSampleContainingPresentationTimeERKN3WTF9MediaTimeE) STUB("MGvSJEHwyL8", sceNpTusTryAndSetVariableForCrossSave) +STUB("MH+31L9wv9A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEC1Ev) +STUB("MH0LyghLJEE", _ZN3sce2np14JsonDocBuilderD2Ev) STUB("MH1gKTVEziY", sceRegMgrPrivateStorageRead) +STUB("MH3ye94AkZc", JSObjectGetPrivate) +STUB("MH56CdAJmFA", _ZN3JSC8JSObject22ensureArrayStorageSlowERNS_2VME) +STUB("MHA0XR2YHoQ", _ZNSt10bad_typeidD0Ev) +STUB( + "MHHjIYX6gMs", + _ZN9Inspector21PageBackendDispatcher12deleteCookieElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "MHJ6RQMQQoY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEED2Ev) STUB("MHK8HDxQ164", sceVnaDisableAgentGui) +STUB( + "MHKgrUzZT8k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEEC2ERKSA_) +STUB( + "MHKqp9DcHxg", + _ZN7WebCore13createWrapperEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_4NodeENS5_13DumbPtrTraitsIS7_EEEE) +STUB("MHNehRu9aiA", _ZNK7WebCore12ISOWebVTTCue7cueTextEv) +STUB( + "MHPGkqGzrfI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEED1Ev) STUB("MHUY7dC9vrM", scePatchCheckerCreateHandler) +STUB("MHVO5QnXNWM", _ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody10getPlayersEv) +STUB( + "MHViGeMRIts", + _ZN7WebCore11MemoryCache26removeResourcesWithOriginsEN3PAL9SessionIDERKN3WTF7HashSetINS3_6RefPtrINS_14SecurityOriginENS3_13DumbPtrTraitsIS6_EEEENS3_11DefaultHashIS9_EENS3_10HashTraitsIS9_EEEE) +STUB("MHicrkby+nk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEEmmEv) +STUB("MHka7tKNkyM", g_PS4TitleTrial) STUB("MHp1WISR7bE", sceMbusStartAudioOutSharePlay) STUB("MHur6qCsUus", sceAjmFinalize) +STUB("MHwQiqUEBwQ", _ZNK7WebCore8Position28offsetForPositionAfterAnchorEv) +STUB("MHwSw6gob9Q", _ZN7WebCore9HTMLNames33x_apple_data_detectors_resultAttrE) +STUB( + "MHx408JKMA0", + _ZN9Inspector20CSSBackendDispatcher33getSupportedSystemFontFamilyNamesElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("MHyK+d+72V0", _LErf_small) +STUB( + "MI+cuLq-ZII", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26RecordScoreResponseHeaders21intrusive_ptr_add_refEPS5_) +STUB("MI-5xGznrRM", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData8hasrangeEv) +STUB( + "MI-VXtcjZ2I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEC2EPKS8_) STUB("MI2VmBx2RbM", sceNgs2RackRunCommands) +STUB("MI644fh8dHg", vzone_setTZURL_67) +STUB( + "MI6T8Pu-9k4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEaSERS7_) +STUB( + "MIIb-xBxouM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE3endEv) +STUB("MIKMQltVsW4", _ZN3WTF11Persistence5CoderINS_10AtomStringEE6encodeERNS0_7EncoderERKS2_) +STUB("MIKN--3fORE", _ZNSt15_Num_float_base12has_infinityE) +STUB("MILjKGAy8dw", _ZN7WebCore9URLParser15isSpecialSchemeERKN3WTF6StringE) +STUB("MIOD07xm8co", _ZN3sce7Toolkit2NP2V26Friend15FriendsOfFriend8deepCopyERKS4_) +STUB("MIODyYLdDQ8", jpeg_fdct_14x14) +STUB( + "MIPj1cd+tJU", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayerC1ERS5_) +STUB( + "MITwlOIqwxk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEE11get_deleterEv) +STUB( + "MIXCRVyjtOw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "MIY5j4PkXDc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB( + "MIc+dUJvnpY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "MIfbMiynbD4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB("MIhikBMCwfg", uprv_decContextRestoreStatus_67) +STUB( + "MIhuOJ4uewo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE3endEv) +STUB( + "MIlPJ4TJWF8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEE5resetEPS9_) +STUB("MIvGFlW3XyI", _ZN14OpaqueJSStringD1Ev) +STUB("MIwCdFQOMJM", png_get_PLTE) +STUB("MIwj46zsvb8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEED2Ev) +STUB( + "MIy-l-ng+4U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEED1Ev) +STUB("MIyMPw7YTGM", _ZN3sce4Json5ArrayD2Ev) +STUB( + "MJ+NqVQ-3z8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEE11release_refEv) +STUB( + "MJ-Rd3raUAA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE6resizeEj) +STUB("MJ0DA68CATI", sdb_breakpoint_trampoline) +STUB( + "MJ0XlTHa024", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("MJ1eomELrns", _ZNK3sce2Np9CppWebApi7Matches2V113RemovedPlayer9getReasonEv) +STUB("MJ8LvCFSlN4", mono_metadata_typedef_from_method) +STUB("MJ8jW45b-Ws", _ZN7WebCore8JSDOMURLC2ERKS0_) +STUB("MJAGcIT3D1w", _ZN4Manx19getFontWeightOffsetEPKwj) +STUB("MJDBDz89RlE", ucal_getWeekendTransition_67) STUB("MJG69Q7ti+s", sceGnmDebuggerWriteGds) +STUB("MJGq3iAg210", _ZN3sce7Toolkit2NP2V23TUS7Request19AddToAndGetVariableD1Ev) +STUB("MJHB1CRpoQ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEC1ERKS7_) +STUB( + "MJJkC57w49Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEE7get_refEv) +STUB("MJLClsQPFb4", il2cpp_gchandle_free) +STUB( + "MJNPMEhbJn8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "MJNYriZdhHk", + _ZN9Inspector14InjectedScript18getFunctionDetailsERN3WTF6StringERKS2_RNS1_6RefPtrINS_8Protocol8Debugger15FunctionDetailsENS1_13DumbPtrTraitsIS9_EEEE) +STUB("MJP2vvOKllQ", _ZN15AbstractStorage14YoutubeContent4ReadEPvlPl) +STUB("MJVrwM6aTTk", FTA_Remove_Module_t1cid) +STUB( + "MJW1A8aQV7o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEEdeEv) +STUB( + "MJXyclPlMRA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEeqERKS9_) +STUB( + "MJYvUugI8zs", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser9getoffsetEv) +STUB("MJZfriWXvpE", Java_com_sony_bdjstack_org_bluray_vfs_VFSManagerImpl_proxyRequestUpdating) +STUB( + "MJgH6qLqo-Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEptEv) +STUB( + "MJibaWRIxzs", + _ZN3sce2Np9CppWebApi14SessionManager2V137PostPlayerSessionsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_30PostPlayerSessionsResponseBodyEEE) +STUB( + "MJqB5wS5gCc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE7reserveEi) +STUB( + "MJqDoceDtd4", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsers35hasxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB( + "MJtjOIs1t+k", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE8capacityEv) +STUB("MJvSN5pMA6s", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification16NewInGameMessageEE5resetEv) +STUB("MJyvNO3YKBE", _ZN7WebCore26contextMenuItemTagOpenLinkEv) +STUB("MK1aO5cRUuM", _ZNK7WebCore20ResourceResponseBase6isHTTPEv) +STUB("MK1qulhNXpY", _ZN7WebCore9URLParser24internalValuesConsistentERKNS_3URLE) +STUB( + "MK5JFn1Vm3I", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEaSERKS9_) +STUB("MK69vvVcPWo", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEEptEv) +STUB("MK6icTZ9QCE", _ZN7WebCore8SVGNames22underline_positionAttrE) +STUB("MK7VSG9UAQs", _ZN7WebCore9HTMLNames9selectTagE) +STUB( + "MK7qJxiIl+0", + _ZN9Inspector20DOMBackendDispatcher13highlightQuadElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "MK8aFRu0E2A", + _ZN3JSC23JSModuleNamespaceObject14finishCreationEPNS_14JSGlobalObjectEPNS_20AbstractModuleRecordEON3WTF6VectorISt4pairINS_10IdentifierENS3_10ResolutionEELm0ENS5_15CrashOnOverflowELm16ENS5_10FastMallocEEE) +STUB( + "MKZc7Lrb0S8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEC2EPS8_) +STUB( + "MKcLm+tS+Hw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEEaSERKSA_) STUB("MKcYQKdqZFg", sceSdecDestroySw2) +STUB("MKhFWAdCyCw", _ZN3WTF12isMainThreadEv) +STUB( + "MKnPwAQXf4k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEE11get_deleterEv) +STUB("MKp5yvGuZNY", _ZN3sce2Np9CppWebApi6Common8IteratorIdEmmEv) +STUB( + "MKq-gHxfTXE", + _ZN7WebCore15JSDOMWindowBase38moduleLoaderCreateImportMetaPropertiesEPN3JSC14JSGlobalObjectEPNS1_9ExecStateEPNS1_14JSModuleLoaderENS1_7JSValueEPNS1_14JSModuleRecordES8_) +STUB( + "MKq57TLXSJY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE21intrusive_ptr_add_refEPS9_) +STUB("MKqFATgSrb8", _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities13ErrorResponse8getErrorEv) +STUB("MKqzHRl6vRc", _ZN7WebCore11FrameLoader6reloadEN3WTF9OptionSetINS_12ReloadOptionEEE) STUB("MKw651XOeSY", sceFsTransactionSaveDataInitMountOpt) +STUB( + "ML-0SqS8vqs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEC2ERKS7_) +STUB( + "ML2bVoSo9bk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEppEi) STUB("MLA06oNfF+4", scePadSetConnection) +STUB( + "MLANZAbEQsA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEEC1ERSA_) +STUB( + "MLC2RUeNqco", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("MLHevXfgHfw", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicketaSERS5_) +STUB("MLNoiVNdF1Q", WKPreferencesCreateWithIdentifier) +STUB("MLQEfkLoO24", _ZN7WebCore9HTMLNames11colgroupTagE) +STUB( + "MLTGlp9tCpg", + _ZN7WebCore31rejectPromiseWithExceptionIfAnyERN3JSC14JSGlobalObjectERNS_17JSDOMGlobalObjectERNS0_9JSPromiseERNS0_10CatchScopeE) +STUB( + "MLUL1EwZF8Q", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("MLWl90SFWNE", _ZdaPv) +STUB("MLd1-dYe1fM", JNU_ThrowIllegalAccessError) +STUB("MLg5omn7y8E", mono_aot_Sce_PlayStation_Jsonmethod_addresses) +STUB( + "MLhE8ZbKfUU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEplEm) +STUB("MLhr0BQ3148", _ZN12video_parser7cVpUtil22vp_ff4_fsize_by_threadEPvPm) +STUB("MLkhaMBtelc", _ZN3JSC9parseDateEPNS_9ExecStateERNS_2VMERKN3WTF6StringE) +STUB( + "MLoiXoQ+GwI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEEdeEv) +STUB( + "MLs00+ZTHn0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) STUB("MLvYI86FFAo", sceGameLiveStreamingSetStandbyScreenResource) +STUB("MLzVQcAOFYI", delegate_virtual_invoke_30_p) +STUB("MM-aVBE7p-A", inflateInit2_) +STUB("MM19R5iBEYs", _ZL19_sceLibcDeleteArrayPv) +STUB("MM4H2zXQPNk", _ZNK7WebCore11JSDOMWindow7wrappedEv) STUB("MM4IZSEYytQ", sceAgcDriverSetHsOffchipParam) +STUB("MM5K3T5KE-A", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_6NpUserEED2Ev) +STUB( + "MM5QVqPjpfc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "MM6oSu+HFsM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEED2Ev) +STUB( + "MM8VpZAWCUg", + _ZN3JSC12RegExpObject27getOwnNonIndexPropertyNamesEPNS_8JSObjectEPNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB( + "MMBhCo5VFX0", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemPropertiesC2ERS5_) +STUB("MMJCZwnytHo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEcvbEv) +STUB( + "MMPIjuMdXX8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEppEi) +STUB("MMQEeN0OgJM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament6EventsEEC2Ev) +STUB("MMSo+k+Wp0Y", sysKernelGetLowerLimitUpdVersion) +STUB( + "MMaE7LYXwGo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEC2ERS7_) +STUB("MMbG34X+eNs", _ZN7WebCore11DisplayList14DrawTiledImageD2Ev) +STUB( + "MMcuZcG0EaI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEaSERKS7_) +STUB( + "MMkVZ-AAeEU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) STUB("MMlmJAL7N5w", sceAgcDcbSetBaseDrawIndirectArgsGetSize) +STUB( + "MMovFLAzcoc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEE7get_refEv) +STUB( + "MMz3pWjeeqA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "MN52lDJFfVg", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt4listINS1_11TusVariableENS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv) +STUB( + "MN5F5ucypFc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEC1EPS8_) +STUB("MN9C7fbwHgc", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEEixEm) +STUB("MNCU93-OqtA", _Ux86_64_getcontext_trace) +STUB( + "MNEfzlZE4fE", + _ZN9Inspector24BrowserBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("MNNHLFgBTWk", _ZN3sce2Np9CppWebApi11UserProfile2V16AvatarC1EPNS1_6Common10LibContextE) +STUB("MNOd-1mcngE", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISbIcSt11char_traitsIcENS2_IcEEEE10deallocateEPS6_m) +STUB( + "MNS0nTTIHxA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEEdeEv) +STUB( + "MNY4C23M+zo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEplEm) +STUB( + "MNg1kWyEqz4", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeOnlineId2AccountIdBatchC2ERS5_) +STUB("MNgJUSsjkN4", GCC_except_table480) +STUB("MNizOHoGCjA", _ZN3sce7Toolkit2NP24InviteJoinSessionRequestC1Ev) +STUB("MNu0IMCZZ6A", _ZN3JSC6JSCell9getObjectEv) +STUB( + "MNxR8QzyirQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("MO+pcJ8qSnA", mono_aot_Sce_Vsh_RemotePlayjit_got) +STUB( + "MO0-lulAxGQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEE5resetEPS7_) +STUB( + "MO1Ri66vI5Q", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V125NatConnectivityProperties8fromJsonERKNS_4Json5ValueE) STUB("MO24vDhmS4E", sceFontCreateString) +STUB( + "MO2qZLzVsW8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEEC2ERKSA_) +STUB( + "MO3RnYG2rjQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEE11get_deleterEv) +STUB( + "MO41G7UHeI8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("MO9u2gZRZxs", coil_getpwuid) +STUB("MOBxtefPZUg", _ZNSt9exceptionD2Ev) +STUB( + "MOC0vcbOCkY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEEC1Ev) +STUB("MOI4fLJNNiM", initCommInfo) +STUB("MOISxAYBtc0", SSL_SESSION_up_ref) +STUB( + "MOOg3n8CKHk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEEC2ERKSA_) +STUB("MOQbl+Lx7OY", _ZNK15AbstractStorage17DailymotionFolder10GetServiceEv) +STUB("MORUfrvJ-Os", _ZNSo5_OsfxEv) +STUB("MOWLKgtwO-4", _Z38sceGpuDebuggerSetEnabledExceptionsMaskPN3sce3Gnm16HsStageRegistersEj) +STUB( + "MOXCjhcNJqA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "MOZPki2SBaw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEdeEv) STUB("MOa8W2eTAAw", sceAppInstUtilGetAddons) +STUB( + "MObemTtM61g", + _ZN3sce7Toolkit2NP9Interface16registerClientIdERKSbIcSt11char_traitsIcENS1_15AppSTLAllocatorIcEEE) +STUB( + "MObuWNuwKTo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE3endEv) +STUB("MOgriHboL2M", _ZN23sceMetadataReaderWriter9freeValueEPNS_5ValueEPFvPvE) +STUB( + "MOjoTJV36qE", + _ZN7WebCore24DocumentMarkerController13removeMarkersERKNS_11SimpleRangeEN3WTF9OptionSetINS_14DocumentMarker10MarkerTypeEEENS_32RemovePartiallyOverlappingMarkerE) +STUB("MOlJpHFIPgg", _ZN3JSC27UnableToDeletePropertyErrorE) +STUB("MOmcfTi41Fk", mono_event_get_add_method) +STUB("MOntr1+ZsRE", _ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamRankResult5resetEv) +STUB("MOoNN8EUkx8", + _ZNK3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayer16getJoinTimestampEv) STUB("MOp-AUhdfi8", sceHttp2WaitAsync) +STUB("MOs7fkdTq00", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging24GameDataMessageThumbnailEE3getEv) +STUB("MOs8PnGhPHU", _ZN3sce3Xml3Dom8Document10insertNodeENS1_6NodeIdES3_S3_) +STUB( + "MOsscu9f3Bo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEE3getEv) +STUB("MP-fc9gjO9g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEcvbEv) +STUB("MP2jbbcZGlg", rgctx_fetch_trampoline_rgctx_94_p) +STUB("MP5SORCUT6Q", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlotaSERS5_) +STUB("MP78udfnuS8", + _ZN7WebCore15GraphicsContext15drawLineForTextERKNS_9FloatRectEbbNS_11StrokeStyleE) +STUB("MP9Us74O-mg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEE11get_deleterEv) +STUB("MPAjibFezzE", _ZNK7CoreIPC15StringReference6encodeERNS_15ArgumentEncoderE) +STUB( + "MPEzEKS8ZMM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEC2Ev) +STUB( + "MPIqZwtAATk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEC2EPS8_) +STUB("MPKHHGbsMzI", mono_type_is_void) +STUB("MPKwsjbe3S8", _ZN7WebCore21NetworkStorageSession10getCookiesERKNS_3URLE) +STUB( + "MPLhKJ56uVM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEmmEv) +STUB("MPQDL+np6mI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData9terminateEv) +STUB("MPUvOTneByk", WKInspectorAttach) +STUB("MPYmtcrGwQw", EVP_aes_128_wrap) +STUB("MPdJ0tuv3O0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12BlockedUsersEE5resetEv) STUB("MPe0EeBGM-E", scePlayGoTerminate) STUB("MPhCP85gRP4", sceVorbisDecPcmTell) +STUB("MPlmLG4ouKU", _ZN3sce7Toolkit2NP2V210Tournament7Request19GetRegisteredRosterC1Ev) +STUB("MPlv0h7F8XU", _ZN7WebCore18JSHTMLVideoElement9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) STUB("MPq-Z-M4Xa4", sceRnpsAppMgrFinishUrlRequest) +STUB( + "MPqiXniB8Wc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE8copyFromERKS9_) +STUB("MPv4gGj4a4I", _ZN9Inspector30WorkerBackendDispatcherHandlerD0Ev) +STUB("MPzxCExHP4Q", g_queue_push_head) +STUB("MQ8yA7tOMPU", mono_aot_System_Net_Httpjit_got) +STUB( + "MQCz1XFMyMI", + _ZN7WebCore11BitmapImageC1EON3WTF6RefPtrI14_cairo_surfaceNS1_13DumbPtrTraitsIS3_EEEEPNS_13ImageObserverE) +STUB("MQDRIgsYIBY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEC2Ev) +STUB("MQFPAqQPt1s", __cxa_decrement_exception_refcount) +STUB("MQG2fUZlhWY", _ZN7WebCore9HTMLNames17indeterminateAttrE) +STUB("MQI+nL6CJkU", WKContextPreconnectToServer) +STUB("MQJQCxbLfM0", _ZNSt8numpunctIwEC2ERKSt8_Locinfomb) +STUB( + "MQJpj2hKv90", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEptEv) +STUB("MQKw1ar2Lak", _ZN7WebCore11XPathResultD1Ev) +STUB("MQSscu7l3pg", _ZN13MsvMetaEditor12getChunkInfoEjPm) +STUB("MQZ5eEw6RLk", _ZN3JSC19iteratorForIterableEPNS_14JSGlobalObjectENS_7JSValueE) +STUB("MQaz32JQzWE", _ZN7WebCore14ReadableStream11isDisturbedERN3JSC14JSGlobalObjectENS1_7JSValueE) +STUB("MQctua+I2DE", _ZN3WTFeqERKNS_7CStringEPKc) +STUB( + "MQgeow16KT8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEC2Ev) +STUB( + "MQjASpmw8NQ", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyC1EPNS1_6Common10LibContextE) STUB("MQkFqdChuic", sceCesEucCnToUtf16) +STUB("MQkHDx1VM2c", GCC_except_table334) +STUB("MQkxI-gYPbs", + _ZN7WebCore26propagateExceptionSlowPathERN3JSC9ExecStateERNS0_10ThrowScopeEONS_9ExceptionE) +STUB("MQmRcn1Mm+k", mono_aot_System_Coreplt_end) +STUB("MQpaKvkgDqE", Java_java_lang_Runtime_freeMemory) +STUB("MQq0QINXToQ", _ZN3sce7Toolkit2NP2V23TUS15TusDataStatusesD2Ev) +STUB( + "MQvGZiuNnmM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "MQw405E9za8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEC2Ev) +STUB( + "MQwLFHMHYXA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("MQxDxBzWz40", _ZN3sce4Json5Array10push_frontERKNS0_5ValueE) +STUB("MQz00+BgIaM", mono_image_is_dynamic) +STUB("MR--eBzfvkg", _ZN7WebCore21convertToIntegerClampIaEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) STUB("MR221Mwo0Pc", sceKernelJitCreateAliasOfSharedMemory) +STUB("MR6Uwy1V8+o", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError9getErrorsEv) +STUB("MR9LTCdGd4s", _ZN7WebCore4toJSEPN3JSC9ExecStateERNS_9DOMWindowE) +STUB("MRAIoJp2Qno", _ZN3sce2Np9CppWebApi6Common6String7replaceEmmRS3_) +STUB( + "MRBvnTwb-FI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEC2Ev) +STUB( + "MRCZlviJOl0", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody8fromJsonERKNS_4Json5ValueE) +STUB( + "MRE-OBqLdvo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEmmEi) +STUB("MRGoMKt8Wr0", _ZN7WebCore16SQLiteFileSystem29ensureDatabaseDirectoryExistsERKN3WTF6StringE) +STUB("MRPjPRjYHnI", _ZN7WebCore16HTMLInputElement8setWidthEj) STUB("MRVnLsn-GRI", sceShellCoreUtilActivateStart) +STUB("MRWmhIY5G1A", _ZN7WebCore11RemoteFrameC1EONS_21GlobalFrameIdentifierE) +STUB( + "MReDoY7huLU", + _ZN8meta_gen11MsvPromoter29setKeyValue_TBLI_LanguageTypeENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti) +STUB("MReN-ksLzMA", _ZN7WebCore16HTMLTitleElement7setTextERKN3WTF6StringE) +STUB( + "MReOtSpt47Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEppEi) +STUB( + "MRgXxh+UA5o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEE11get_deleterEv) +STUB( + "MRixleFeivI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEmmEi) +STUB( + "MRjgzQmOHdw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEE11get_deleterEv) +STUB( + "MRucmGaXSwQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEaSERKS9_) +STUB("MRvxXiuRnXM", il2cpp_field_get_name) +STUB( + "MRwiBFUbp1A", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V333CommunicationRestrictionStatusApi33getCommunicationRestrictionStatusEiRKNS4_44ParameterToGetCommunicationRestrictionStatusERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_38CommunicationRestrictionStatusResponseEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("MRy7yqFgcoM", mono_aot_Sce_Vsh_Sl2_Sl2Commonmethod_addresses) +STUB("MS1pIganM04", _ZN3sce7Toolkit2NP2V28Commerce7ProductD1Ev) +STUB("MSJw0mUj+lU", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchStatusC1Ev) +STUB( + "MSKmNCFdFiA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("MSMPXUL5AuM", _ZN3sce2np12StreamReader8SkipDataEPNS0_6HandleElPl) +STUB( + "MSMVhP0yuxc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB( + "MSOc6b-k-UY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEdeEv) +STUB( + "MSQ0vXQjHpU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE3endEv) +STUB("MSRPfRgj8d4", _ZN7WebCore18JSHTMLImageElementD1Ev) +STUB( + "MSSvHmcbs3g", + _ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE7_GetcatEPPKNSt6locale5facetEPKS5_) STUB("MSWZmqyr3eM", sceVideoStreamingEngineMediaKeySystemAccessCreateMediaKeys) +STUB("MSc0D-mQVtk", JVM_CompilerCommand) +STUB("MSebmTme2C0", __asan_report_exp_load2_noabort) +STUB("MSkdJuOJp4w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEppEi) +STUB("MSkk+-3JTl0", mono_aot_Sce_Vsh_KernelSysWrapperunwind_info) +STUB( + "MSo9B12pbko", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEppEi) +STUB("MSqdXQIk4no", _ZNK3sce2Np9CppWebApi6Common6VectorIlE8capacityEv) +STUB("MSr9DE8l0Sc", u_strToUTF8WithSub) +STUB("MSs83LRZpEk", _ZNK7WebCore15AffineTransform6yScaleEv) +STUB("MSsDM4u1jQw", + _ZNK7WebCore21NetworkStorageSession41resourceLoadStatisticsDebugLoggingEnabledEv) +STUB("MSsQ8vWmLNY", SSL_CTX_sess_set_new_cb) +STUB("MSviGgtBw6I", _ZN3sce7Toolkit2NP2V212ActivityFeed7StoryIdC2Ev) +STUB( + "MSwJ-kNGbVM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEptEv) +STUB( + "MSx7xuaKqpQ", + _ZN3WTF12base64EncodeEPKvjRNS_6VectorIcLm0ENS_15CrashOnOverflowELm16EEENS_18Base64EncodePolicyE) +STUB("MSxsktnjRgA", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead28getExclusiveLeaderPrivilegesEv) +STUB("MT0GwLN0a44", __asan_unregister_elf_globals) +STUB("MT2cyJG+xdo", g_hash_table_iter_next) +STUB("MT8a0F5w8sA", g_markup_parse_context_end_parse) +STUB("MT8d1WU9F+w", uprv_eastrncpy_67) +STUB("MT9twjEmWVw", _ZN3sce7Toolkit2NP2V28Commerce14ProductDetails8deepCopyERKS4_) STUB("MTEBJdi3YNQ", sceUrlConfigResolverGetAppConfig) +STUB( + "MTEF3QmKH-k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE8copyFromERKS9_) +STUB( + "MTG+IofmFUg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEeqERKS9_) STUB("MTHPbVoNR0A", sceImeBackendEnterCharacter) +STUB( + "MTNJaM6vQrs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE21intrusive_ptr_add_refEPS9_) +STUB("MTQC2bPeb6A", + _ZN3sce2Np9CppWebApi7Matches2V124RequestCompetitiveResultC2EPNS1_6Common10LibContextE) +STUB( + "MTUhCwQLT+Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEC2EPKS8_) +STUB("MTaAdeZUa8U", _ZNK7WebCore4Attr5valueEv) +STUB("MTi5uCmhFno", _ZN3WTF11Persistence7Encoder21encodeFixedLengthDataEPKhm) +STUB("MTifeU5UIeo", mono_jit_compile_method_inner) +STUB("MTj6g10WAsY", Java_java_io_UnixFileSystem_canonicalize0) STUB("MTnuKt7HiN0", sceLibcBacktraceSelf) +STUB( + "MToBie040R8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE21intrusive_ptr_add_refEPS9_) +STUB("MTsj0uviO-g", _ZN7WebCore8SVGNames15arabic_formAttrE) STUB("MTxxrOCeSig", sceVideoOutSetWindowModeMargins) STUB("MTzWc9nxOy4", sceNpManagerIntSetRequestHeader) +STUB("MU-bCa0CaEs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE4sizeEv) +STUB( + "MU19RqPz7rQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC1Ev) +STUB("MU25eqxSDTw", _Sinh) +STUB( + "MU53gSfa4sU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEC1EPS6_PNS2_10LibContextE) +STUB("MUA8037Rmu4", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119PlayStyleProperties12setOpenEndedERKi) +STUB("MUBSdqqX-JM", _ZN3sce7Toolkit2NP2V27Session21ChangeableSessionDataD1Ev) +STUB("MUBehB39EUM", _ZNK7WebCore7IntRect10intersectsERKS0_) +STUB( + "MUCLbntcHBg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEmmEi) +STUB("MUE2CMLW-74", rgctx_fetch_trampoline_rgctx_29_p) +STUB( + "MUH5PQpdKo4", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody24unsetDisableSystemUiMenuEv) +STUB("MUMPpV8t3bg", _ZN7WebCore19ResourceRequestBase6setURLERKN3WTF3URLE) +STUB( + "MUNse5ZboJ4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEC2Ev) +STUB( + "MUTsDZWOrY4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEppEv) +STUB( + "MUVmG9ooOxk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("MUVvRbWZJhM", _ZN7WebCore16JSStringCallbackC1EPN3JSC8JSObjectEPNS_17JSDOMGlobalObjectE) +STUB( + "MUboy2JW6lo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "MUfRnfkRncU", + _ZN7WebCore14SocketProvider22createWebSocketChannelERNS_8DocumentERNS_22WebSocketChannelClientE) STUB("MUj0IV6XFGs", sceNpUtilGetFakeDisplayNameMode) +STUB("MUjC4lbHrK4", fflush) +STUB("MUlXrcCBGO0", _ZNK7WebCore16HTMLInputElement11isWeekFieldEv) +STUB("MUpSmygnJSM", _ZNK3WTF10AtomString23convertToASCIILowercaseEv) +STUB( + "MUsSWc50oJM", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities14UserActivitiesC1EPNS1_6Common10LibContextE) STUB("MUsfdluf54o", sceFontGraphicsDrawVertexesGlyph) +STUB("MUyBSmwGR3w", + _ZN7WebCore11DisplayList14DrawingContextC2ERKNS_9FloatSizeEPNS0_8Recorder8ObserverE) +STUB("MUyK4dE-KB8", WKPreferencesSetAllowCrossOriginSubresourcesToAskForCredentials) +STUB("MUyT8HsKtfA", __asan_init_v5) +STUB("MUyZpNLfV3I", _ZN3sce3pss5orbis9framework23TerminatePsmEventCsharpEv) +STUB( + "MV+27ZE20sg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEE7add_refEv) +STUB("MV3oV0Vfy3g", mono_aot_Sce_Vsh_Np_Managerjit_code_end) +STUB("MV4cd4A47lA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEED2Ev) +STUB("MV8JpKlSOlI", _ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBodyD1Ev) STUB("MV8Ydp9MSdU", scePerfTraceAprNameCreate) +STUB("MVBIkqTa8MI", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate13perGenreIsSetEv) +STUB( + "MVBpO7ji0Z0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEE3getEv) +STUB( + "MVExpBYTEow", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) STUB("MVF+elex8Sw", sceLncUtilGetAppId) +STUB( + "MVKKP+iaJQ4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE5clearEv) +STUB("MVLT+C8MhRw", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session8SessionsEED2Ev) +STUB( + "MVOXNZ87e6E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEEptEv) +STUB("MVPtIf3MtL8", __floatdixf) +STUB("MVRkviV4jJw", X509_STORE_free) +STUB( + "MVRze1yeXZg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEC2EPKS8_) +STUB( + "MVT-45hpSEw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEEcvbEv) +STUB("MVY+jtY-WiQ", _ZN3sce2npneERK10SceRtcTickRKNS0_4TimeE) +STUB( + "MVYJNQ-6oIs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) STUB("MVbmLASjn5M", sceRudpPollCreate) STUB("MVfGFf5tBf4", sceCesUtf32ToSJis) +STUB("MVgF-65FS5Y", _ZN7WebCore17JSHTMLLinkElement9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("MVgJcQQadJE", Java_sun_awt_GnmUtils_setDefaultFontHandle) +STUB("MVnBE8RX6Bw", _ZN8meta_gen11MsvPromoter17retrievePhotoInfoEv) +STUB("MVoB+R58FKc", _ZN3sce7Toolkit2NP2V27Session9SessionIdD2Ev) +STUB("MVpW7W1+7cE", _ZN9Inspector20InspectorTargetAgentnwEmPv) +STUB("MVs+O5uTjkM", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEE3getEv) +STUB("MVtXW0NChdc", AnnotateIgnoreReadsBegin) STUB("MW+T6ZCK7wo", sceApplicationSignalShellCoreHeartBeat) +STUB( + "MW0-yTZ7z98", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEE3getEv) +STUB( + "MW2vsmob5Wk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEC2EPKS8_) +STUB( + "MW3kxAm1Np4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable8setOwnerERKNS1_6Common12IntrusivePtrINS3_5OwnerEEE) STUB("MW5ygoZqEBs", sceNpTrophyConfigGetTrophySetVersion) +STUB("MW9gc-4D6xw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEaSERS7_) +STUB("MWIpAB8h3ls", _ZN7WebCore23ISOSchemeInformationBoxD2Ev) +STUB( + "MWLNEunXhEs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEC2Ev) STUB("MWPOkqzYss0", sceNpAllocateKernelMemoryNoAlignment) +STUB("MWQQeS9F9Hg", _ZN9Inspector30CanvasBackendDispatcherHandlerD2Ev) +STUB( + "MWaGyeKEBjc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE3endEv) STUB("MWiElSNE8j8", sceAgcDcbWaitUntilSafeForRendering) +STUB( + "MWikEhaN1ZE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB( + "MWk8ceW4CVI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEC1Ev) +STUB( + "MWqWyltICms", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEplEm) +STUB("MX2E9j1byjA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEdeEv) +STUB( + "MX36SQGKRS8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "MX3qnIFDTtE", + _ZN3sce7Toolkit2NP2V27NpUtils19displaySigninDialogERKNS3_7Request19DisplaySigninDialogEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB( + "MX8BlYy5SII", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("MX8nuAZHx+k", mono_custom_attrs_from_method) STUB("MX9WiAJ36BU", sceSystemServiceReleaseBgmCpuBudget) +STUB("MXDmNHNZdHE", _ZN7WebCore6WidgetD0Ev) STUB("MXGGDS9QbsQ", sceVisionManagerRequestFindPadCorrespondRegion) STUB("MXKJaV1ITyw", sceNpTrophySystemRegisterTitleSyncedCallback) +STUB("MXNqbivQZxY", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13integer7IsSetEv) +STUB("MXOk+ACfs0I", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEE3getEv) +STUB( + "MXQVnX5IfWs", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("MXRNWnosNlM", sqrt) STUB("MXRQZvQVjK0", scePssPadrGetOutputPortCount) +STUB( + "MXUr27s8JDA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEC2EPS8_) +STUB( + "MXZkNADeB5M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE8pushBackERKS8_) +STUB( + "MXakKx9ktts", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB( + "MXcF5LJjxR8", + _ZN9Inspector21InjectedScriptManager20createInjectedScriptERKN3WTF6StringEPN3JSC14JSGlobalObjectEi) +STUB("MXeJfEtHSwo", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE8copyFromERKS7_) +STUB("MXgrzq0nh1Q", FT_Get_CMap_Format) +STUB("MXiB2BG3Img", mono_aot_System_Data_Services_Clientmethod_addresses) +STUB("MXnDGB12oKg", _ZTVN15AbstractStorage7ServiceE) +STUB("MXrDCSnud9Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEC2Ev) +STUB( + "MXvlX-uFt8A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEppEi) +STUB( + "MXzkRg7rbAo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEaSERKS8_) +STUB("MY0CSk24EcY", _ZN3sce2np10JsonNumber6SetNumEl) +STUB( + "MY7cbaLIO0U", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_11DOMDebugger17DOMBreakpointTypeEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB( + "MY8r0FvImQQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE5beginEv) +STUB( + "MYA99MUOv6I", + _ZN7WebCore21SerializedScriptValue11deserializeERN3JSC9ExecStateEPNS1_14JSGlobalObjectERKN3WTF6VectorINS6_6RefPtrINS_11MessagePortENS6_13DumbPtrTraitsIS9_EEEELm0ENS6_15CrashOnOverflowELm16EEENS_22SerializationErrorModeE) +STUB("MYCRRmc7cDA", _ZNSt13basic_filebufIcSt11char_traitsIcEED0Ev) STUB("MYEO5Y7ItYk", sceDtcpIpPoolAsync) +STUB( + "MYR4g-WHxC8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEeqERKS9_) +STUB( + "MYRX3ENlsTo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEEaSERKSA_) STUB("MYRtYhojKdA", sceGnmResetVgtControl) STUB("MYTk6pjtuaI", sceCustomMusicServiceInitialize) +STUB( + "MYWGcogoxsw", + _ZN9Inspector25DebuggerBackendDispatcher6createERNS_17BackendDispatcherEPNS_32DebuggerBackendDispatcherHandlerE) +STUB("MYX3UGOmPME", __asan_stack_malloc_0) +STUB( + "MYcaoiTNSqk", + _ZN9Inspector19InspectorAuditAgent3runERN3WTF6StringERKS2_PKiRNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISB_EEEERNS1_8OptionalIbEE) +STUB("MYd7F5R6ryw", _ZNK7WebCore20ResourceResponseBase14httpStatusTextEv) +STUB( + "MYhbfW1IWEM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEC1Ev) +STUB( + "MYinvd261kM", + _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile17setPersonalDetailERKNS1_6Common12IntrusivePtrINS3_14PersonalDetailEEE) +STUB("MYiveR15NCk", + _ZN3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinitionC2ERS5_) STUB("MYj6qtpieto", sceCesRefersUcsProfileCp862) +STUB("MYkYhqa6qOQ", _ZN7WebCore12JSAudioTrack14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB("MYnZJQWLNog", _ZN7WebCore9FrameView26adjustPageHeightDeprecatedEPffff) +STUB("MYonML9r0sQ", _ZN3sce3Xml13AttributeListC2Ev) +STUB("MYopeEAoQeU", _ZN9Inspector22HeapFrontendDispatcherdaEPv) +STUB( + "MYqdxohPjCU", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetrics27getCompletionRatePerReasonsEv) +STUB( + "MYrwqmH8weA", + _ZZSt9MakefacetISt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEESt8_LocinfoERT_T0_E3buf) +STUB("MYsX7Hlp408", + _ZNK3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsers8haslimitEv) +STUB( + "MYvZXDQG53k", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC2ERKSC_) +STUB("MYx2+uJh310", _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error7getPathEv) +STUB( + "MZ9kYOPD8pc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE8capacityEv) +STUB("MZBcnC4ADUQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEE7add_refEv) +STUB( + "MZJlleskobo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE8capacityEv) +STUB( + "MZKB9atW+xk", + _ZN12video_parser13cVideoMetaMP416getThumbnailInfoENS_9VP_LANG_eENS_15VP_SEARCH_OPT_eEPNS_18VpThumbnailInfo_t_E) +STUB("MZLYhTu5Zss", YGNodeStyleSetMinHeightPercent) +STUB("MZNMYmg5V8A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEC2Ev) +STUB("MZO7FXyAPU8", remove) +STUB("MZOeWhAklyk", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging24GameDataMessageThumbnailEE5resetEv) +STUB( + "MZXws4leybU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEC2ERKS7_) +STUB("MZYFiWV1mcw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEcvbEv) +STUB("MZZ0g9Y7pBc", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyD2Ev) +STUB("MZb0GKT3mo8", socketpair) STUB("MZbcWoK2x6s", sceTsCloseFile) +STUB( + "MZdPfTkA+uc", + _ZN3JSC26evaluateWithScopeExtensionEPNS_14JSGlobalObjectERKNS_10SourceCodeEPNS_8JSObjectERN3WTF8NakedPtrINS_9ExceptionEEE) +STUB("MZhulHApZ4k", _ZN3sce7Toolkit2NP2V23TUS7Request12SetVariables23MAX_VARIABLE_REAL_SLOTSE) +STUB( + "MZjLtTn5WuI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEC2EPS6_PNS2_10LibContextE) +STUB("MZlSq39lOVU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEEC2Ev) +STUB("MZoXNYeIQac", _ZN3sce7Toolkit2NP2V28Commerce12SubContainerD2Ev) +STUB( + "MZvpXwZXlco", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("MZwVUpbX+ko", GCC_except_table43) +STUB( + "MZwkZShkJkA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEED2Ev) STUB("MZxH8029+Wg", sceUserServiceIsLoggedIn) +STUB( + "Ma+EFthU1JM", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEiRNS2_10LibContextEPT_m) +STUB( + "Ma3zQSNipOQ", + _ZN9Inspector15ScriptArgumentsC1EPN3JSC14JSGlobalObjectEON3WTF6VectorINS1_6StrongINS1_7UnknownELNS1_30ShouldStrongDestructorGrabLockE0EEELm0ENS4_15CrashOnOverflowELm16ENS4_10FastMallocEEE) +STUB("Ma7+aWJsXow", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRanking9terminateEv) +STUB( + "Ma7K22UoiSU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEmmEv) +STUB("MaAqY5ufzmk", CryptographyDecryptAES128GCM) +STUB( + "MaAtc6p2osk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) STUB("MaCKSOQDtyU", sceKernelGetUtokenFakeSharefactoryForRcmgr) +STUB( + "MaH3QINokMc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEED2Ev) +STUB( + "MaSUIhvw5zk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE5beginEv) +STUB( + "MaSYk4D3OgU", + _ZN3JSC8Bindings13RuntimeObjectC2ERNS_2VMEPNS_9StructureEON3WTF6RefPtrINS0_8InstanceENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "MaUQE0uD6xc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE5beginEv) STUB("MaVrz79mT5o", sceCompanionUtilGetRemoteOskEvent) +STUB("Maa-feacM3k", _ZN7WebCore11JSDOMWindow14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB("Maevy+QFc0Q", mono_aot_Sce_Vsh_VideoPlayermethod_addresses) +STUB("MafDsPXgY6k", FcCharSetMerge) +STUB( + "Makq24q4dl0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("Mal4dASAIJc", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Error16referenceIdIsSetEv) +STUB( + "MamsTqSpkug", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEC2Ev) STUB("MapHTgeogbk", sceAudioOutPtClose) +STUB( + "MawEE+jRLiU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("MawW5O1q5+I", uprv_decNumberDivideInteger_67) +STUB("Mb17d0l5rU8", WKUserContentControllerGetTypeID) +STUB("Mb2fweNBShA", _ZN3WTF13MetaAllocator8allocateERKNS_6LockerINS_4LockEEEm) +STUB("Mb7-DoEC+nE", _ZN7WebCore15GraphicsContextD1Ev) +STUB("Mb83Py2nhOI", mono_allocator_malloc0) +STUB("Mb8544CyqRs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEC2Ev) +STUB("MbBZeS2I+14", _ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEED1Ev) +STUB("MbELgaqJ8Ow", WKConnectionGetTypeID) +STUB( + "MbEbmtpWW3s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEcvbEv) +STUB("MbG960RyHgM", _ZN12Mp4Retriever20getSizeConvertToUtf8EPtmb) +STUB( + "MbIFHXMqABo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE3endEv) +STUB( + "MbIQcnHcTl8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEED2Ev) +STUB("MbRESFjT2kM", _ZN3JSC7Symbols27promiseStateMaskPrivateNameE) +STUB( + "MbTiTppQG-Y", + _ZN3JSC10JSDataView6createEPNS_9ExecStateEPNS_9StructureEON3WTF6RefPtrINS_11ArrayBufferENS5_13DumbPtrTraitsIS7_EEEEjj) STUB("MbTt1EHYCTg", scePadSetButtonRemappingInfo) +STUB( + "MbWCMf0K0CM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEED1Ev) +STUB("MbWRVt5-GTA", _ZN7WebCore21convertToIntegerClampIaEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB( + "MbZCL33HWTQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "MbfrTiC1oNc", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsC2EPNS1_6Common10LibContextE) +STUB( + "Mbh8U-m1FAQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEC1ERS7_) +STUB("MblG6gHJMxc", _ZN3sce2np13JsonDocParser11onEndObjectEjj) +STUB("MbnDtkeauHk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEED1Ev) +STUB( + "Mbp6BENdpNc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("Mbs+zXxsuzE", ures_getAllItemsWithFallback_67) +STUB("MbtQ1L1gSik", _ZN12video_parser5vpcom3rtc12TickAddHoursEPmPKmi) +STUB("MbuvuN84TNc", _ZN7WebCore10FileHandle5closeEv) +STUB( + "MbxWoCNcbcs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEppEv) +STUB("MbxXP+N3yEs", _ZZSt9MakefacetISt8messagesIwESt8_LocinfoERT_T0_E3buf) +STUB("MbyzvFGqmGA", _ZN12video_parser26_isBetterArtworkResolutionEjjjj) +STUB("Mc-9bwQuK6o", _ZN7WebCore16HTMLInputElement12setRangeTextERKN3WTF6StringE) +STUB("Mc-kd+u8La0", _ZN3sce7Toolkit2NP2V210Tournament14RegisteredUserC2Ev) +STUB("Mc2XUrsTBqM", _ZNK3WTF10StringView21findIgnoringASCIICaseERKS0_) +STUB("McB2Heezh+4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEppEi) +STUB( + "McGJpdRFFFI", + _ZN3sce2Np9CppWebApi14SessionManager2V143GetFriendsPlayerSessionsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_6FriendEEEEEPNS9_INS3_36GetFriendsPlayerSessionsResponseBodyEEE) +STUB("McGuqAgTMRE", + _ZN3sce2Np9CppWebApi14ConnectAccount2V215AccountLinksApi28ParameterToDeleteAccountLinkC2ERS5_) +STUB("McIgA9-PB14", g_PS4InitializationFlags) +STUB("McJ3CbMD86Y", __sync_fetch_and_add_16_internal) +STUB( + "McObzqIaHKw", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearch10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_33PostGameSessionsSearchRequestBodyEEE) +STUB( + "McOzrhvTW-U", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("McPcQ+8HesY", _ZN7WebCore23CoordinatedBackingStore24adjustedTransformForRectERKNS_9FloatRectE) +STUB("McQdg5+JTcc", _ZN7WebCore14SecurityPolicy27resetOriginAccessAllowlistsEv) +STUB("McQngaQMMEY", _ZNK3sce2Np9CppWebApi7Matches2V120RequestTeamStatistic10statsIsSetEv) +STUB( + "McRvxtArlnQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE5emptyEv) +STUB("McUBYCqjLMg", _ZNSt10moneypunctIwLb0EEC1Em) STUB("McYmUpQ3-DY", sceHttp2SetCookieSendCallback) +STUB( + "McaGKOZBuHw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEC1Ev) +STUB("McaImWKXong", _Cnd_timedwait) +STUB("McgMZ1InSTQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEE11release_refEv) +STUB( + "Mcp4D4bmxak", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEEcvbEv) +STUB( + "McpzinoB31k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEE7get_refEv) +STUB("McsGnqV6yRE", _ZdlPvRKSt9nothrow_t) +STUB( + "McsZaeCG898", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEppEv) +STUB( + "Mcu5fXHikuY", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session12Notification18InvitationReceivedEE12deepCopyFromERS8_) +STUB("McuCzcsjs2I", Java_com_sony_bdjstack_org_dvb_dsmcc_FileCacheManager_unload) +STUB("McwygCOJbOg", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEdeEv) +STUB( + "McxH7KDCikA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEixEm) +STUB( + "Md+2jlNXmm0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEE7get_refEv) +STUB("Md+HYkCBZB4", CA_MGMT_extractKeyBlobEx) +STUB("Md-DJ7vagYE", _ZTVN7WebCore11DisplayList8SetStateE) +STUB("Md6zUKrFwN0", _ZN3sce7Toolkit2NP15AppSTLAllocatorItE7destroyEPt) STUB("Md7Mdkr8LBc", sceSharePlayGetEvent) +STUB("MdHkBoOP6Nc", mono_aot_Sce_Vsh_Sticker_StickerLibAccessorjit_got) +STUB("MdOJ95aS63I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEEC1EPS6_) +STUB("MdQcEXxlqLo", _ZN7WebCore16DOMGuardedObjectC1ERNS_17JSDOMGlobalObjectERN3JSC6JSCellE) STUB("MdSI82hHt0E", scePerfPmcSetCounter) +STUB( + "MdU1USf5vnk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE7popBackEv) STUB("MdV0akauNow", sceHmdReprojectionDebugGetLastInfo) +STUB("MdZjPzsvZ3Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEED2Ev) +STUB( + "MdbxQD4bMZs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE4sizeEv) +STUB("MddMup7PwZk", WKBundleScriptWorldMakeAllShadowRootsOpen) +STUB( + "Mddu8rVFOWo", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V112ErrorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5ErrorEEE) +STUB( + "Mdfvp6kSGBc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB( + "MdlS0tefrrU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEppEv) +STUB("MdnO3bWFyMk", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEEdeEv) +STUB("MdpEzweRN2E", _ZN7WebCore16ScriptController29cleanupScriptObjectsForPluginEPv) +STUB( + "MdrT-ddsl+E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEppEv) +STUB( + "MdtlbsGo7c4", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToSendGameSessionMessageaSERS5_) +STUB("MdwNDttw5ns", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE6resizeEj) +STUB( + "Me8RKyweHPI", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26RecordScoreResponseHeaders24setXPsnAtomicOperationIdERKNS1_6Common6StringE) +STUB("MeAJyg5gq58", WKPreferencesGetSimpleLineLayoutDebugBordersEnabled) +STUB("MeDV9vaNsbA", _ZN3sce7Toolkit2NP2V27Session20LocalizedSessionInfoD2Ev) +STUB( + "MeGNs851SRY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEixEm) +STUB("MeM0QvOkJUA", _ZNK7WebCore18ParsedContentRange11headerValueEv) +STUB( + "MeMbeGNF8-Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "MeNQyI3403A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEC2Ev) +STUB("MeQzsrxMF8o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEppEv) +STUB("MeT81dgytRg", _ZN7WebCore11DOMRectListD1Ev) +STUB("MeUgPv9530A", _ZN7WebCore21convertToIntegerClampIsEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB( + "MeZ35ifPro8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEE7get_refEv) +STUB("Meb-40MUkYM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEC2EPS8_) STUB("MeboioVomns", sceShellCoreUtilSetGpuLoadEmulationMode) +STUB("MecB8wAHCfE", _ZN3sce2np10CancelLockC2Ev) +STUB("MejItkj1J4c", _ZN3WTF10StringImpl7replaceEjjPS0_) +STUB("MekE+46X-+A", locale_getKeywords_67) +STUB("MeoNGqEj5JA", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session7SessionEED1Ev) +STUB("MeogIIr66Ew", + _ZN7WebCore19MediaQueryEvaluatorC2ERKN3WTF6StringERKNS_8DocumentEPKNS_11RenderStyleE) +STUB( + "MetKTdbKE4M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEC1ERKS7_) STUB("MetMOQVd8HY", sceAgcDriverAcquireRazorACQ) +STUB( + "MewJqUayY3o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEmmEi) +STUB("Mex9YQBJEAk", __tsan_atomic32_exchange) +STUB( + "Mf55cfs7eIo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE23clearOnFinishedCallbackEv) +STUB( + "MfBeztScwxA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEC1EPS8_) STUB("MfDb+4Nln64", sceNpUniversalDataSystemEventPropertyObjectSetString) +STUB("MfE6TL7FiRc", WKWebsiteDataStoreConfigurationCopyCookieStorageFile) +STUB("MfJ3R1TdXCY", _ZN7Nicosia6Buffer6createERKN7WebCore7IntSizeEj) +STUB( + "MfMexnAYKf4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "MfSihU1Hbuk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEC1EPNS2_10LibContextE) +STUB( + "Mfbn+OAItMk", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats12setPlayStyleERKNS1_6Common12IntrusivePtrINS3_9PlayStyleEEE) +STUB("MfbsiQU271E", _ZN7WebCore16VisibleSelectionC2ERKNS_15VisiblePositionEb) +STUB( + "Mff8heQagc8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEEC1ERKS9_) +STUB("MffI7wLS6TM", _ZN3WTF8WordLock10unlockSlowEv) +STUB("MfhhrFtlFV0", _ZN7WebCore8SVGNames10feBlendTagE) +STUB("Mfl7dPUz9kE", _ZN3WTF19isFastMallocEnabledEv) +STUB( + "MfmCCRkBr-Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("MfyPz2J5E0I", _ZTVSt10moneypunctIcLb1EE) +STUB("MfzvOi79SoA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V124RequestCooperativeResultEEmmEi) +STUB("Mg-IhL6SWfg", _ZN3sce2np7RingBuf4ReadEPvm) STUB("Mg3P1Z4Xavs", sceShellCoreUtilGetCloudClientStatus) +STUB("Mg3qhAB1MeE", _ZN23sceMetadataReaderWriter7Storage16extractThumbnailERKSsjRNS_9ThumbnailE) +STUB( + "Mg6f3piaihA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEdeEv) +STUB("Mg7vEHsNV9s", __asan_storeN) STUB("MgBIXUkGtpE", sceUserServiceSetForegroundUser) +STUB("MgGf6CnqHZc", _ZN3sce3pss5orbis9framework8PsmEvent8FinalizeEv) +STUB("MgIRnraUCes", _ZN3sce7Toolkit2NP2V23TUS15TusDataStatusesD1Ev) +STUB("MgWFF4t6fCs", mono_aot_System_Web_Servicesunbox_trampolines) +STUB( + "MgXSbe9fWfw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("MgY8paIXi7A", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy17TrophyPackSummaryEE3setEv) +STUB( + "MgYYGIiiFHg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEEaSERSA_) +STUB( + "MgZd744xHpo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEC2Ev) +STUB( + "MgaR2k+QA8o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEC1Ev) +STUB( + "MgaVDvlEGxU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEED2Ev) +STUB("MgkNIcmCFyI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody17setNpServiceLabelERKj) +STUB("MgoCWG84OF8", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE3endEv) STUB("MgsTa76wlEk", sceNpWebApi2AddWebTraceTag) +STUB( + "MgtYpv6S9Xo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEeqERKS9_) +STUB("Mgy7OEaxxLQ", bdjbg_unlock) +STUB("MgyEz5SwXAI", WKBundlePageCopyContextMenuAtPointInWindow) STUB("Mgzn4F-H1A0", scePlayReadyCdmiCreateMediaKeySystemAccess) +STUB( + "Mh-gBtUdMus", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEED2Ev) +STUB( + "Mh0PFqKF+tA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEEdeEv) +STUB("Mh1pgCXbRu8", _tiny) +STUB("Mh4YoQ4Y57s", hb_font_funcs_set_glyph_func) +STUB("MhC53TKmjVA", sysctlbyname) +STUB( + "MhFuXG+3MdY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEC1EPNS2_10LibContextE) +STUB("MhG9BMS7pSQ", WKContextSetFontAllowList) +STUB( + "MhMNLxT8xOU", + _ZN7WebCore11MediaPlayer17getSupportedTypesERN3WTF7HashSetINS1_6StringENS1_24ASCIICaseInsensitiveHashENS1_10HashTraitsIS3_EEEE) +STUB("MhT2ZkqglBQ", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEEC2ERKS6_) +STUB( + "MhUPqeh0ThA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEplEm) +STUB("MhXub7fXkKw", _ZN7WebCore15XPathNSResolverD0Ev) +STUB("MhZcX2IyZKM", WKArrayGetSize) +STUB("Mhbyf-QjRxk", _ZN3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBodyD1Ev) +STUB("MhdUhQtAIYk", jpeg_save_markers) +STUB("MhfikztCjT4", + _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSessionC2EPNS1_6Common10LibContextE) +STUB( + "Mhh9ltTRRWY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEeqERKS9_) +STUB( + "MhnPUqFtcdY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE3endEv) +STUB("MhoQUt4Yglc", _ZN7WebCore19JSDOMMatrixReadOnly7destroyEPN3JSC6JSCellE) +STUB("MhpB9xwh2v8", _ZN3sce2Np9CppWebApi7Matches2V118RequestMatchPlayerD2Ev) +STUB("MhwjOpS8A4I", _ZN3sce7Toolkit2NP2V212EventsClient15EventUserStatusD2Ev) +STUB("MhwxKkUqlZ0", ulocimp_getLanguage_67) +STUB("MhymOvp1NkU", curl_easy_send) +STUB( + "Mi058iyuLsg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEaSERS7_) STUB("Mi0qwCb+rvo", sceSystemServiceDisableSuspendNotification) +STUB( + "Mi1Uu4dnMog", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEmmEi) +STUB("Mi4qylfd1i4", _ZN3sce7Toolkit2NP2V23TUS7Request12GetVariablesD2Ev) +STUB("Mi4r5+lZAxg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEC1ERS7_) STUB("Mi9-CweviUo", sceShellCoreUtilNavigateToLaunchedApp) +STUB("MiBGaMikflk", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth8AuthCodeEE3setEv) +STUB("MiCHCcLzePU", _ZN3sce7Toolkit2NP2V24Core12ResponseDataD2Ev) +STUB("MiEScFB0La8", _ZN9Inspector25ConsoleFrontendDispatcher15messagesClearedEv) +STUB("MiFP5xEGdw4", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyD2Ev) +STUB("MiLqYGxS1ck", _ZNK3sce2Np9CppWebApi7Matches2V117LeaveMatchRequest19npServiceLabelIsSetEv) +STUB( + "MiNSXHzLnL0", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124NatConnectivityToMetricsC2EPNS1_6Common10LibContextE) +STUB("MiQralGSkeo", _ZN7WebCore11DisplayList18FillCompositedRectD0Ev) +STUB("MiR3rQFLTmU", _ZN7WebCore6Path2DnwEmPv) +STUB( + "MiT-Gzi-ddw", + _ZN9Inspector14ConsoleMessageC1EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelERKN3WTF6StringEONS5_3RefINS_15ScriptCallStackENS5_13DumbPtrTraitsISA_EEEEm) +STUB( + "MiTrN-LpRDE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEED2Ev) STUB("MiUxeleLYUc", sceFsMountPprPkg) +STUB( + "MiVpskAS+0o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEixEm) +STUB("MiaWyyYAoWw", _ZNK3sce2np14JsonObjectImpl5CloneEP14SceNpAllocator) +STUB( + "MibzrYlFa+w", + _ZN7WebCore25validatePreflightResponseERKNS_15ResourceRequestERKNS_16ResourceResponseENS_23StoredCredentialsPolicyERNS_14SecurityOriginERN3WTF6StringE) +STUB("Midd3txC-9g", _ZN3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer12unsetNatTypeEv) +STUB( + "Midr+lOtY8A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEE7get_refEv) STUB("Mif6IzBa0hc", sceFiosFHGetPath) STUB("MilSVS0uHvA", sceDebugGetThreadList) +STUB("MimkniqIX-U", ucnv_getAvailableName) +STUB("Mio-My1B0Ek", RemotePlayGetRemoteplayStatus) +STUB( + "Mio2oGP+aqg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE5emptyEv) +STUB( + "MivhFzZyQuY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEC2Ev) +STUB("MiwGk7+zWfY", _ZN12video_parser10cVideoPathC1EPKc) +STUB( + "MiyY62qvYU0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE8copyFromERKS9_) STUB("Mj-2b4AI7FA", sceAppInstUtilGetAppEmptySlot) +STUB("Mj3ajE5aL9w", _ZN3JSC7Symbols24ModuleSatisfyPrivateNameE) +STUB( + "Mj6rcc2YbdQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEC2EPS8_) +STUB( + "Mj74mfQ0ZNc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE8pushBackERKS8_) +STUB("MjBf1mBhxsg", _ZN23sceMetadataReaderWriter15ParserInfoTableC1Ev) +STUB("MjBs6RialfM", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110TaskStatusEEneERKS7_) +STUB("MjCtOsXb+-E", mono_debug_domain_unload) STUB("MjH7MOV6LVk", sceCompositorGetDmemOffset) +STUB( + "MjIBdbalvzY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE7reserveEi) +STUB( + "MjIP4UJEEbE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE5clearEv) +STUB("MjKAjGkB7Mk", _ZNK7WebCore4Page20renderingUpdateCountEv) STUB("MjOFdwXYRKY", sceNpServiceCheckerIntGetAvailabilityList) +STUB("MjPTQjmZdvg", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110TaskStatusEEeqERKS7_) +STUB("MjS9-ZP4CW0", _ZN7WebCore8SVGNames13interceptAttrE) +STUB("MjUP4yticC8", _ZN7WebCore11MathMLNames8msqrtTagE) +STUB( + "MjXmJsmG6QQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE6resizeEj) +STUB("MjY5-KgXnuk", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12RangeOfRanksEE3setEv) +STUB("MjYzx34cnmE", CreateWebApiLibCtx) +STUB("MjqzYLK2kJA", _ZN3JSC13RuntimeMethod14finishCreationERNS_2VMERKN3WTF6StringE) +STUB("MjxA6y7tetw", _ZN3JSC15ArrayBufferViewD0Ev) +STUB( + "Mk0WVkltKYA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) STUB("Mk8fJasEEA4", sceMbusSetThreadParam) +STUB( + "MkGDXe1qqV0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("MkGUMQt7MBE", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry12commentIsSetEv) +STUB("MkJD9O9pXvI", _ZN3WTF8JSONImpl5Value4nullEv) +STUB("MkKcrZ9pT0Q", _ZN7WebCorelsERN3WTF10TextStreamERKNS_5ColorE) +STUB("MkSYr+wZN-A", _ZN3sce7Toolkit2NP2V24Auth7Request10GetIdTokenC1Ev) +STUB( + "MkSmI8WCSvM", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi22getLargeDataByObjectIdEiRKNS4_33ParameterToGetLargeDataByObjectIdERNS1_6Common21DownStreamTransactionINS8_12IntrusivePtrINS4_37GetLargeDataByObjectIdResponseHeadersEEEEE) +STUB( + "Mkc8KzIsU84", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEE11get_deleterEv) +STUB("MkccIFpDqzM", + _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest19unsetNpServiceLabelEv) +STUB( + "MkeiQIax3Wk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEaSERS7_) +STUB("MkpOPYf0iTg", WKPreferencesSetAuthorAndUserStylesEnabled) +STUB("Mkr+ZvMqMPE", _ZNK7WebCore8Document6pageIDEv) +STUB( + "MkrGXK8Nn9k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEaSERKS7_) +STUB("MkteO+mQQlA", umsg_format_67) +STUB( + "Mku7vY09A9A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEEcvbEv) +STUB("Mkwup89ipAA", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed12SharedVideosEE3getEv) +STUB( + "Mky-Cerdck8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEppEi) +STUB("Mky-ZoEdhx0", _ZTVN7WebCore17NowPlayingManagerE) +STUB( + "Ml0nn8E9YLQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB( + "Ml1kQL4oaEQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEeqERKS9_) +STUB("Ml1z3dYEVPM", _ZTIPKa) +STUB( + "Ml1zk5bprs0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEC2Ev) +STUB("Ml2AWsoMI0E", mono_privileges_finish_init) +STUB("Ml2ev6IagrQ", _ZTVN8meta_gen12JpegPromoterE) +STUB("Ml8geH28fSo", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEEptEv) +STUB("MlD7yUCWb4k", mono_aot_Sce_Vsh_PatchCheckerClientWrapperjit_got) STUB("MlEw1feXcjg", sceAgcQueueEndOfPipeActionPatchData) +STUB( + "MlNpbHEo9ig", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEEiRNS2_10LibContextEPT_m) +STUB("MlO+RK1HoyI", _ZNK7WebCore26IdentityTransformOperation10isIdentityEv) +STUB("MlSHagwBWI4", _ZN3WTF9URLParser14allValuesEqualERKNS_3URLES3_) +STUB( + "MlSU0FGCjAc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEC2Ev) +STUB("MlUvz++Cn7s", _ZN12video_parser18cMp4FFLHndlManager16_adjustTrackInfoEjb) STUB("MlW6deWfPp0", sceUsbdCheckConnected) +STUB( + "MlaFVSz8BkU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("MljG2BSqkMY", _ZNK15AbstractStorage14TwitterContent13GetCapabilityEv) STUB("Mlo+OHFpOeY", sceSpPthreadDetach) +STUB( + "MlpBkpjZJd8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEE7get_refEv) +STUB("MlqeBoQNTJE", _ZNK7WebCore11HistoryItem3urlEv) STUB("MltFJdH0xRM", sceDbgUserChannelVPrintf) +STUB("MltQyQYOELc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEdeEv) +STUB( + "MluX520iyZU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE5emptyEv) +STUB( + "Mlva15OYe0Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEEaSERKSA_) +STUB("Mlvh5ez2wEY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEC1Ev) +STUB("MlyjmFK8nvA", _ZN3sce7Toolkit2NP2V28Matching12Notification14NewRoomMessageC1Ev) +STUB("Mm-YpRJuHks", ucsdet_enableInputFilter_59) STUB("Mm4+PSflHbM", sceUserServiceGetGlsBroadcastChannel) +STUB( + "Mm6sE-rYvk0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEC2EPKS8_) +STUB( + "Mm9t-TLusNs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEEcvbEv) +STUB("MmCFL5GXGL8", WKContextWarmInitialProcess) +STUB("MmFRBBJMUlw", WTFWillLogWithLevel) +STUB( + "MmGu1MX-riY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEEC2Ev) +STUB( + "MmJGKpfVpZo", + _ZN7WebCore26PresentationOrderSampleMap35findSamplesBetweenPresentationTimesERKN3WTF9MediaTimeES4_) STUB("MmLPD+9OwFI", sceNpSnsTwitchDeleteRequest) +STUB("MmMqAYqsu84", _ZN3JSC14throwTypeErrorEPNS_9ExecStateERNS_10ThrowScopeERKN3WTF6StringE) +STUB("MmPLNZcKMEc", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku7getNameEv) +STUB("MmSyyiaXiho", _ZN7WebCore14JSWebAnimationD2Ev) +STUB("MmTshn7gIgU", _Unwind_GetCFA) +STUB("Mmk-CnQ+MxA", _ZN3sce7Toolkit2NP2V27Ranking7Request11SetGameDataC1Ev) STUB("MmpF1XsQiHw", sceAjmBatchInitialize) +STUB("MmtcuGpE7uo", ucol_getRulesEx_67) +STUB( + "MmwenFvDNdA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEC1Ev) +STUB( + "Mn0aTy0qzco", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "Mn23SRFeR5Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEC2ERKS7_) STUB("Mn4XNDg03XY", sceNgs2RackGetUserData) +STUB( + "Mn59nmZsyB8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEE3getEv) +STUB( + "Mn5J4RS6VbQ", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeaders17unsetLastModifiedEv) +STUB("Mn8ipkjNf-E", _ZN3sce2np14JsonNumberImpl5ClearEv) STUB("MnBopnIaDzQ", scePssInternalKeyboardGetUTF8Chars) +STUB( + "MnFQRdyEFHk", + _ZNK7WebCore9CookieJar13getRawCookiesERKNS_8DocumentERKN3WTF3URLERNS4_6VectorINS_6CookieELm0ENS4_15CrashOnOverflowELm16ENS4_10FastMallocEEE) +STUB( + "MnGmZBb9LBA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEC1EPKS8_) +STUB( + "MnHAKjK-ovw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEEC2Ev) +STUB( + "MnHELoUII3o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEEC2ERSA_) +STUB("MnJYzxTchUY", _ZNK3WTF8JSONImpl10ObjectBase10memoryCostEv) +STUB( + "MnNXyyktogo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEEptEv) +STUB("MnQLt6LlgIU", _ZN7WebCore11RenderLayer21simulateFrequentPaintEv) STUB("MnUYAs2jVuU", sceFontGraphicsUpdateFillRates) +STUB( + "Mnc3Os+mgYM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEED1Ev) +STUB( + "MndBi7G8GqI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEC2Ev) +STUB("Mnf5YJkQX7s", _ZN15AbstractStorage14TwitterContent8SeekByteEliPl) +STUB("Mnf6Y9OxwXQ", YGNodeStyleSetFlex) +STUB("MnhsfZgm-GE", _ULx86_64_get_proc_info) +STUB( + "Mnihl9WP9T4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEppEi) +STUB("Mniutm2JL2M", _ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2ERKSt8_Locinfom) +STUB("Mnjk3yiKoDQ", _ZN3sce2np9JsonValue9SetStringEPKNS0_10JsonStringE) +STUB("MnlqH3VAJxU", glCopyTexSubImage2D) +STUB( + "MnnUvHCJZlo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE7popBackEv) +STUB( + "Mnoe9eeyylY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEneERKS9_) +STUB( + "Mnp3qDir4NU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB( + "Mnpd5bSEIaw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEeqERKS9_) +STUB("MnqoHt0rzQ0", _ZNK3sce2Np9CppWebApi13InGameCatalog2V55Error9codeIsSetEv) +STUB( + "MnsMFCD+aSw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE21intrusive_ptr_add_refEPS9_) +STUB("MnwP4x1EZC8", _ZN3sce2Np9CppWebApi15ProfanityFilter2V219WebApiFilterRequest7setTextEPKc) +STUB( + "Mo+M12eIEIA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "Mo2gPjvHXOU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "Mo4IQuIGa7U", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("Mo4KJwvZPxc", _ZN7WebCore17LibWebRTCProviderD1Ev) +STUB("Mo6K-pUyNhI", _ZNKSt7codecvtIDsc9_MbstatetE11do_encodingEv) +STUB("Mo6V5akY7o8", YGInteropSetLogger) +STUB( + "MoE0H8wnnK4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEC1Ev) +STUB("MoEXecwSGLk", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product11setAgeLimitERKi) +STUB( + "MoFcVpV4+js", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEEC1Ev) +STUB("MoG-8EACnb8", + _ZN3sce2Np9CppWebApi14SessionManager2V116FromNonPsnMemberC1EPNS1_6Common10LibContextE) +STUB("MoHLiE7Llw4", fuse_fs_chmod) +STUB( + "MoJvHLRLuX4", + _ZN9Inspector27DOMStorageBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) +STUB("MoUJZiDoHMk", _ZN15AbstractStorage15HttpTransactionD2Ev) +STUB("MoX2YEntKao", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEEppEv) +STUB( + "MoYwcjJwYI8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("MoaZ6-hDS-k", SSL_send) +STUB( + "MopzDd9q3sA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEE7add_refEv) +STUB( + "MosmRj5LPwY", + _ZN7WebCore11FileChooser11chooseFilesERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEES8_) +STUB("Mou7xgx4q3U", _ZN12video_parser5vpcom3rtc10IsLeapYearEPKm) +STUB( + "MoumXijG6aw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEEC2Ev) +STUB("Mp+8ZDMhKPY", __asan_stack_free_6) +STUB("Mp+8pHkZWkc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEED1Ev) +STUB("Mp0ge-sJQ+U", _ZN3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer11setPlayerIdEPKc) +STUB("Mp2Lv8FL1sM", mono_btls_x509_name_hash_old) +STUB("Mp8DPb3M4I0", _ZN3sce4Json17InitParameterRttiC2EPNS0_14AllocParamRttiEPvm) +STUB("MpD0hOKBNJE", JSContextGroupAddHeapFinalizer) +STUB("MpDe8KtUJ7s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEC2Ev) +STUB("MpI2NyWcgaQ", _ZN7WebCore11DisplayList17DrawFocusRingPathD0Ev) +STUB( + "MpJ14wtVllQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEEaSERSA_) +STUB( + "MpJc+Fb2LwQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) STUB("MpKSBaYKluo", sceFontControl) +STUB( + "MpN7UZenmPc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEixEm) +STUB( + "MpRmfpkQWEA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("MpS9siAhaVs", rgctx_fetch_trampoline_rgctx_110) +STUB( + "MpTPCYHSEmc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEE5resetEPS6_) +STUB( + "MpU656q-0+8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE5clearEv) +STUB("MpUzIfTxkOo", mono_aot_System_Transactionsunbox_trampolines_end) +STUB("MpVt9mcsYuY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE5beginEv) STUB("MpXK+QLRpwU", sceUsbStorageDialogUpdateStatus) +STUB( + "MpXakmQ1h5A", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEneERKS9_) +STUB("MpawErU2weY", _ZN7WebCore9HTMLNames18webkitdropzoneAttrE) +STUB( + "MpbveJ7yKaU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEEC1ERKSA_) +STUB("Mpd+1O6TFRI", _ZN3sce7Toolkit2NP2V211UserProfile7Request27GetVerifiedAccountsForTitleD2Ev) +STUB("MpiTv3MErEQ", _ZTIj) STUB("MpncRjHNYRE", sceGnmDriverInternalRetrieveGnmInterfaceForGpuException) +STUB( + "Mpq7uEoxZ64", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEC2EPS8_) +STUB("MpqLCvEptrg", WKPreferencesGetCoverAreaMultiplier) +STUB( + "MpuTEchXlcQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "MpvGnkGedOo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE4sizeEv) +STUB("MpxhMh8QFro", fwrite) +STUB("Mq1XMzaL-ZA", _ZN3sce2Np9CppWebApi11Matchmaking2V113ErrorResponseD2Ev) STUB("MqAdbRMdNz4", sceAgcLinkShaders) +STUB("MqCU5ZdxHrI", mono_aot_Sce_PlayStation_HighLevel_UI2Platformunbox_trampoline_addresses) +STUB( + "MqLIXYTJPR8", + _ZNK7WebCore11FontCascade5widthERKNS_7TextRunEPN3WTF7HashSetIPKNS_4FontENS4_11DefaultHashIS8_EENS4_10HashTraitsIS8_EEEEPNS_13GlyphOverflowE) +STUB("MqLM8CBC9FM", _ZN7WebCore21PlatformKeyboardEvent23getCurrentModifierStateERbS1_S1_S1_) +STUB("MqLQZfPWtnQ", rgctx_fetch_trampoline_mrgctx_39) +STUB("MqOttL-azXk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEED1Ev) +STUB("MqRDuIXWHBM", UDataMemory_init_67) +STUB("MqUN1wdWe7E", __asan_set_shadow_f3) +STUB("MqYiFgLUmnE", _ZN3JSC7Symbols24setBucketHeadPrivateNameE) +STUB("MqbKqHBdgjk", _ZN7WebCore7Element11setTabIndexEi) +STUB("MqeMaVUiyU8", wcscat_s) +STUB("Mqfjd9XhyKA", _WCostate2) +STUB("MqjgIzSKi+Q", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V15OwnerD1Ev) +STUB( + "Mql7eD2JzcQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEppEi) STUB("Mqp3lJ+sjy4", sceNpMatching2Terminate) +STUB( + "MqrcU0srmr8", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEEiRNS2_10LibContextEPT_m) +STUB( + "Mr+dWcdbZfU", + _ZN9Inspector20InjectedScriptModule14ensureInjectedEPNS_21InjectedScriptManagerEPN3JSC9ExecStateE) STUB("Mr1IgQaRff0", sceSystemServiceDisablePersonalEyeToEyeDistanceSetting) STUB("Mr3c8XddszE", sceMbusStopAudioOutSharePlay) +STUB("Mr8uY9qWSy0", mono_aot_Sce_Vsh_EventServiceWrapperunbox_trampolines) +STUB("MrD4mo080zE", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku7setTypeEPKc) +STUB( + "MrDMYdZbwz0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE8capacityEv) +STUB( + "MrETDJKQsGc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEixEm) +STUB("MrFAGlGu+Ro", _ZN7WebCore14CachedResource12removeClientERNS_20CachedResourceClientE) +STUB("MrGWnhAa+5U", _ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamTournamentD1Ev) +STUB("MrJUmRrcu5A", _ZN7WebCore22EmptyFrameLoaderClient29hasFrameSpecificStorageAccessEv) +STUB("MrJpmTBGrUc", _ZN2sh14ShaderVariableD1Ev) +STUB( + "MrPGf1uQvFY", + _ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead7setFromERKNS1_6Common12IntrusivePtrINS3_10FromMemberEEE) +STUB( + "MrPrcUoYLnU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEEaSERKSA_) STUB("MrRFrdgpsx8", sceFiosFHTell) +STUB( + "MrSDYHuc4yM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEEC1Ev) +STUB( + "MrSP24GQaWw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEC2EPNS2_10LibContextE) +STUB("MrU1N8c0NCU", _ZN12video_parser13cVideoPathMgv8FinalizeEv) STUB("MrUOZGxjKw8", sceMusicCoreServerUnregistEventCallback) +STUB("MrWB4OdN3qI", _ZN7WebCore11JSImageData7destroyEPN3JSC6JSCellE) +STUB( + "MrZ6dH4cBxA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("MraPqKgx2ao", _ZN3JSC17DebuggerCallFrame20sourceIDForCallFrameEPNS_9ExecStateE) +STUB("Mre+EXVSlk0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEC2Ev) +STUB("Mri-l8u7dGs", _ZN3JSC8JSBigInt9rightTrimEPNS_14JSGlobalObjectE) +STUB("MrlgTA1DfK0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEdeEv) +STUB("Mrp3OVQ9jI4", WKWebsiteDataStoreClearBundleIdentifierInNetworkProcess) +STUB("Ms+EFiENxwc", __sanitizer_get_number_of_counters) STUB("Ms0cLK8sTtE", sceRudpFlush) +STUB("Ms1rafqS5xc", _ZN3sce7Toolkit2NP2V27Session18AvailablePlatformsD1Ev) +STUB( + "Ms6h3Dsc790", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEC2EPKS8_) +STUB("MsCjNokrgzw", sqlite3_bind_text) +STUB( + "MsHKL9vZUQw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE5beginEv) +STUB( + "MsKCRA9QJZY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEED1Ev) +STUB("MsLvSo7kA-8", _ZN3JSC8JSObject10putByIndexEPNS_6JSCellEPNS_9ExecStateEjNS_7JSValueEb) +STUB( + "MsMEqolz1no", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE3endEv) +STUB("MsMOdxWfbwQ", _ZNK3sce4Json5Value8getValueERKNS0_6StringE) +STUB("MsQ1UIG7qsQ", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE5beginEv) +STUB( + "MsRgUy5VRr4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEEcvbEv) +STUB("MsYhMFXeYVY", mono_aot_System_Xmlmethod_addresses) +STUB( + "MsZr4Y9YsYU", + _ZN7WebCore18JSHTMLImageElement6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_16HTMLImageElementENS6_13DumbPtrTraitsIS8_EEEE) STUB("MsaFhR+lPE4", sceNpWebApi2PushEventCreateFilter) +STUB("MscERR8fj+g", _ZN3JSC17processConfigFileEPKcS1_S1_) +STUB("MsfV1B5yOIQ", SSL_CTX_get_cert_store) +STUB("Msg6ByVQ+u4", YGNodeStyleGetFlexGrow) +STUB( + "MsiO1iD7Ehs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("MslXMQq0rvE", _ZN7WebCore6DOMURLD1Ev) +STUB( + "MsvA3hQAUlU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEEC1ERSA_) +STUB( + "Msy3bJhzyjU", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEEC1ERKSC_) +STUB( + "Mt-+B1a64PA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE21intrusive_ptr_add_refEPS9_) +STUB("Mt0EF2PRj1E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEEC1EPS5_PFvS7_EPNS2_10LibContextE) +STUB( + "Mt3+Q6c3ehw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEC2EPNS2_10LibContextE) STUB("Mt4QHHkxkOc", sceVideoOutGetEventCount) STUB("Mt7JB3lOyJk", sceAudioOutSparkControlSetEqCoef) +STUB("Mt7YT3Eg06E", _ZNK7WebCore12RenderObject14enclosingLayerEv) STUB("MtBchJFDxdU", sceMbusDumpDeviceInfo) +STUB( + "MtDfk5Pmh1I", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser27unsetusePlayerSessionFilterEv) STUB("MtE3Me0UJKc", sceUserServiceSetPbtcTuesdayHoursEnd) +STUB("MtIhR5hmEPo", _ZN3sce2np13JsonArrayImplC1EP14SceNpAllocator) +STUB( + "MtJqt-m7XzY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEeqERKS9_) +STUB("MtLNiHnY2Qg", + _ZN3sce2Np9CppWebApi13InGameCatalog2V514ContainerMediaC1EPNS1_6Common10LibContextE) STUB("MtQVEn55dv8", sceUserServiceGetVoiceAgentTtsSpeed) +STUB( + "MtR8ggC--RU", + _ZN3JSC17MarkingConstraintC2EN3WTF7CStringES2_NS_20ConstraintVolatilityENS_21ConstraintConcurrencyENS_21ConstraintParallelismE) +STUB( + "MtWSBDQDGNY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEC1EPS9_) +STUB("MtcHqXAlc6w", _ZN7WebCore12ChromeClient25enterFullScreenForElementERNS_7ElementE) +STUB( + "MtdCbZTVzS0", + _ZN15AbstractStorage18DailymotionStorage7GetItemERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_4ItemEE) +STUB("Mtgxq87OiqQ", _ZN7WebCore13JSHTMLElement15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "MthsTuzbCI4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEeqERKS9_) +STUB("MtlV-fYy3gk", WKPreferencesGetProcessSwapOnNavigationEnabled) STUB("MtpIAcDR9sA", sceMbusRemoveCameraAppModuleFocus) +STUB( + "MtsqEVRv7eE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("MttRWVSxgqs", mono_aot_Sce_Vsh_Np_ServiceChecker2jit_code_end) +STUB("MtuVljq6Sq8", _ZNK7WebCore16HTMLMediaElement27webkitClosedCaptionsVisibleEv) +STUB("MtzQ2YWZoKE", _ZNK3sce2Np9CppWebApi7Matches2V118CreateMatchRequest15getInGameRosterEv) +STUB("Mu+y6pZP2nw", _ZN7WebCore26ContextDestructionObserverD1Ev) +STUB( + "Mu0QIm6IAt8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE8capacityEv) +STUB( + "Mu2CRU99C-o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEE3getEv) +STUB("Mu2upxmY2C8", FT_Bitmap_Done) +STUB( + "Mu31rBh067k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEC2Ev) +STUB("Mu6MqNsmDnI", + _ZN7WebCore10JSLocation21deletePropertyByIndexEPN3JSC6JSCellEPNS1_14JSGlobalObjectEj) +STUB("Mu7oV6kVFkM", _ZN3JSC7Symbols22starDefaultPrivateNameE) +STUB("MuACiCSA8-s", _ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED2Ev) +STUB("MuBCFAVXErM", _ZN7WebCore16HTMLInputElement24setAutoFilledAndViewableEb) +STUB( + "MuCK2dbPh+I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEEC2ERKSA_) +STUB("MuFV0RfuzyI", mono_shared_hashtable_new_gc) +STUB( + "MuJ7dnsrzOc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEC2EPS8_) +STUB("MuJbKzMKMyQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEC1Ev) STUB("MuMnDaXBTm0", sceFiosOverlayRemove) STUB("MuOn+V0DYcI", sceAppInstUtilGetAddcontInfoList3) +STUB("MuTCNpW9Tn4", _ZN7WebCore24CoordinatedGraphicsLayer15setNeedsDisplayEv) +STUB("MuTrHdEpPig", _ZN3sce7Toolkit2NP2V28Matching7Request13GetAttributesD2Ev) +STUB( + "Muc6k+PW6oU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE3endEv) +STUB("MuceKKIp+HU", _ZNK3sce2Np9CppWebApi7Matches2V113RemovedPlayer6toJsonERNS_4Json5ValueEb) +STUB( + "MueCEtH4-EA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("MuhHEQiI6hQ", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEEixEm) +STUB("MunXnAvdt8U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEaSERS7_) +STUB( + "MunvRaffJCQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE8copyFromERKS9_) +STUB("Muo7lemMhI8", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking8TempRankEED2Ev) STUB("Mv1zUObHvXI", sceKernelGetSystemSwVersion) +STUB( + "MvARkYtNR3I", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEneERKS9_) +STUB("MvKCcL1450I", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V110UpdateModeEEptEv) +STUB( + "MvKDD4VRR7Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEEdeEv) +STUB("MvKToaKANpw", _ZNK3WTF10StringImpl25endsWithIgnoringASCIICaseEPKS0_) +STUB( + "MvLIVkuYGdU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE8capacityEv) +STUB( + "MvMlC0IZECA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEptEv) STUB("MvNSFlPuexQ", sceDeci4hDrfpChstat_chmod_fuse_fullpath) +STUB( + "MvR9Ssc80wo", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("MvYSTL7GTks", ucal_getKeywordValuesForLocale_59) +STUB( + "MvYkYewNrJU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("MvbIJ1nE4dk", _ZN3JSC23SimpleMarkingConstraintD2Ev) +STUB( + "Mvcaa5i9aq0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEE3getEv) +STUB("MvdnffYU3jg", remainderl) +STUB("Mvelza69ra4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEEC1EPNS2_10LibContextE) +STUB("MvgmWLuycpI", _ZN4Manx6System21defaultThreadPriorityEv) +STUB( + "MvhZDteFo28", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEptEv) +STUB("MviIPALs6os", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEdeEv) STUB("Mw3phfO0pLI", sceFsUfsAllocateTrophyData) +STUB( + "Mw4-wMrUTL0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEEptEv) +STUB( + "Mw5z1sOf3fc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEED2Ev) +STUB("Mw7nQ6TLQAM", mono_aot_Sce_Vsh_AppDbWrapperplt_end) +STUB("Mw84qLwnIs4", _ZN3WTF14aboutSrcDocURLEv) +STUB("Mw9Tmw6Yjhg", _ZN3JSC24createStackOverflowErrorEPNS_14JSGlobalObjectE) STUB("Mw9mRQtWepY", sceAudio3dPortDestroy) +STUB("MwAYknEWfAU", _ZN3sce2np13NpAccessTokenC1ERKS1_) +STUB("MwAySqTo+-M", _ZNKSt12codecvt_base11do_encodingEv) +STUB("MwCLoXhvaZA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStats9terminateEv) +STUB( + "MwOoiq+4u20", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEppEv) +STUB("MwS6Kg7Kkk4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEEC1EPS4_PNS2_10LibContextE) +STUB("MwUsyUGVE4w", T5lo) +STUB( + "MwYmBBEvMjM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("MwZxFoHb6Gk", + _ZNK3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer17pushContextsIsSetEv) +STUB("MwbaZTaFtrM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE8copyFromERKS7_) STUB("MwcHR8xIR2w", sceNpGriefReportCdInit) +STUB("MwcIddgXCRE", _ZN3sce7Toolkit2NP2V27Session9SessionIdD1Ev) STUB("MwhHNKdBXq8", sceKernelOpenSema) +STUB("MwiKdf6QFvI", __atomic_compare_exchange_2) STUB("MwmHz8pAdAo", sceNgs2RackGetVoiceHandle) +STUB("MwnE05WFkcQ", _ZN3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer11setOnlineIdEPKc) +STUB("Mwr-lR7-oUs", WKCredentialCopyUser) +STUB( + "MwrKXFEXrEk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEneERKS9_) +STUB( + "MwzcrouCfLs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEppEi) +STUB("Mx3rNOp2EIk", _ZN3sce2Np9CppWebApi11Matchmaking2V19AttributeC2EPNS1_6Common10LibContextE) +STUB("Mx6wrcdGC2w", + _ZN3sce2np3ipc13ServiceClientC2EPNS1_17ServiceIpmiClientEPKNS1_17ServiceClientInfoE) +STUB( + "Mx7vRtClGPQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEE3getEv) +STUB("MxDsAIPWad4", _ZN7WebCore23CoordinatedBackingStoreC1Ev) +STUB("MxGDaM0UkSY", + _ZN9Inspector13AgentRegistry29willDestroyFrontendAndBackendENS_16DisconnectReasonE) +STUB("MxGclWMtl4g", _ZTSSt10moneypunctIwLb0EE) +STUB("MxL-4GUnzwE", _ZN3JSC26UnlinkedFunctionExecutable6s_infoE) +STUB( + "MxN05s+aOMA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("MxPKmADhnKg", _ZN3sce2np13JsonArrayImpl9SetParentEPNS0_9JsonValueE) +STUB("MxQL3TO6K-o", rgctx_fetch_trampoline_mrgctx_28_p) +STUB("MxUMKvlNdno", JVM_LatestUserDefinedLoader) STUB("MxXZ-poqGNs", sceLncUtilBlockingGetEventForDaemon) +STUB("MxZ4Lc35Rig", _Readloc) +STUB("MxmYa9wUIWk", _ZN7WebCore4FontD2Ev) +STUB( + "Mxq0NGzrVgI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEC2EPS9_) +STUB( + "Mxw+uAAG3kw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEptEv) +STUB( + "My-+nMOaVt0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE4sizeEv) +STUB("My8OsbYYCWw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEE7add_refEv) +STUB( + "My8PARPZ9Rw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEED2Ev) +STUB( + "My8vS83llKk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) STUB("MyBXslDE+2o", sceSystemServiceChangeMemoryClockToBaseMode) STUB("MyDvxh8+ckI", sceSystemServiceActivateHevcSoftGetStatus) +STUB( + "MyGUH7kP8aM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEC2EPS8_) +STUB( + "MyLQLMsW1oQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEE11get_deleterEv) +STUB("MyM-PBaGyn4", _ZN9Inspector21InspectorRuntimeAgent21injectedScriptManagerEv) STUB("MyQ65g12NMo", sceSlimglServerSetupSocketPairingBy) +STUB( + "MyTAgawfHoo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE8pushBackERKS8_) +STUB( + "MyVxGka74FM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE3endEv) +STUB("MyWHEcabpq0", _ZN3sce7Toolkit2NP2V27Session17SessionInfoUpdateD1Ev) +STUB("MyWOI829pJM", _ZN12video_parser17cVideoProfilerMp4D1Ev) +STUB("MyWQtdtQ0wU", _ZN3JSC16createRangeErrorEPNS_9ExecStateERKN3WTF6StringE) +STUB( + "MyWUKHtin-E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE21intrusive_ptr_sub_refEPS9_) +STUB("MyZwPRUnPDg", _ZNK7WebCore4Page23diagnosticLoggingClientEv) +STUB("MybHsH8cii0", WKHitTestResultGetElementBoundingBox) +STUB( + "MyblgOuM-M8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEC1Ev) +STUB("MycPX0koegg", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEED1Ev) +STUB("MyfwaDGFm00", mono_aot_Sce_Vsh_Np_AppInfounbox_trampolines_end) +STUB( + "Myho53DnrGM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE6resizeEj) +STUB( + "MylwUQdAZHk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEaSERKS9_) +STUB("MyoK4fioe0o", _ZNK3sce2np10JsonNumber3GetEPl) +STUB( + "MyoRuiAoVMw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEneERKS9_) +STUB("Myp3FtCMlpU", + _ZNK3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectator16getJoinTimestampEv) +STUB( + "MysTofhOAjo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEixEm) +STUB("Myvbbodp9dU", _ZN7WebCore17SQLiteTransactionD2Ev) +STUB("MyyhVXryovc", glGetUniformBlockIndex) +STUB("Mz5j0aJUhkA", + _ZN7WebCore17FrameLoaderClient38shouldForceUniversalAccessFromLocalURLERKNS_3URLE) +STUB( + "Mz7-QLroPXc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEEdeEv) +STUB( + "Mz8JVkok804", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEEC2ERKSA_) +STUB( + "Mz8p+Qnk54M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEC2Ev) +STUB("Mz9fOjWreBE", u_getPropertyName_67) STUB("MzA1YrRE6rA", sceNetConfigCleanUpAllInterfaces) +STUB("MzFBrwVAgns", _ZN3NTF18URLResponseMessageD0Ev) +STUB("MzFpCzbEvxw", mono_reflection_type_from_name) +STUB("MzL0+TU5AIU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V115SearchAttributeEEaSERKS7_) STUB("MzTa7VLjogY", sceNgs2RackLock) STUB("MzVmbq2IVCo", sceUserServiceGetIsQuickSignup) +STUB("MzZ1vXfWlaY", _ZN9Inspector26TimelineFrontendDispatcher16recordingStoppedEd) +STUB( + "MzZF67eiL-E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEEdeEv) +STUB( + "Mzbc8Wo9IXk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE5beginEv) +STUB("MzgS-gyYwgY", _ZNK7WebCore15AffineTransform8mapPointERKNS_8IntPointE) +STUB("MzkrJ8VJuP4", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V15OwnerC1EPNS1_6Common10LibContextE) +STUB("MzpjLnMjdwE", WKBundleScriptWorldClearWrappers) +STUB("MzsdXuP-TTs", _ZNK7WebCore24RotateTransformOperation5angleEv) +STUB("MzsycG6RYto", c32rtomb) +STUB("Mzy1jm11FKg", + _ZN3JSC15ArrayBufferViewC2EON3WTF6RefPtrINS_11ArrayBufferENS1_13DumbPtrTraitsIS3_EEEEjj) STUB("Mzzz2HPWM+8", sceHmdInternalSetM2LedOn) +STUB("N++s7FDbgfY", _ZN7WebCore25contextMenuItemTagOutlineEv) +STUB("N+-DuH-uzL0", mono_loader_init) +STUB( + "N+11T2ZqkXE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEEdeEv) +STUB("N+2oRHGeT0E", _ZN7WebCore17JSDOMRectReadOnly9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("N+6icO7uEd0", _ZN7WebCore4Page12setGroupNameERKN3WTF6StringE) +STUB( + "N+75PgVkP5U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEE7add_refEv) +STUB( + "N+B57mNcP7I", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer36unsetxPSNSESSIONMANAGERREQUESTORIGINEv) +STUB("N+G3Gxequt0", tls_error) +STUB("N+IGrhdl5FU", mono_mempool_alloc) +STUB("N+JkZ-EmyFQ", _ZN7WebCore17NowPlayingManagerD0Ev) +STUB("N+Lz1rGQtyg", + _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchStatusRequest9setStatusERKNS3_12UpdateStatusE) +STUB("N+UDju8zxtE", CERT_STORE_addCertAuthority) +STUB( + "N+e8X1X-EkQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "N+eOQYtXRPo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE5beginEv) +STUB("N+icA-jvTHs", WKBundleFrameCallShouldCloseOnWebView) +STUB("N+ii1KIbXtA", uprv_decNumberLog10_67) STUB("N+mr7GjTvr8", sceNpAuthCreateAsyncRequest) +STUB( + "N+on7nb0N7w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEEC1ERSA_) +STUB("N+upxnXuFPs", _ZN3WTF9MediaTimemIERKS0_) +STUB( + "N+uuxyqdvFo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEC1Ev) +STUB("N+vcSXzdOJY", _ZN7WebCore13endOfDocumentEPKNS_4NodeE) +STUB( + "N-+fJ-Zq1hw", + _ZNK3sce7Toolkit2NP9Utilities6FutureISbIcSt11char_traitsIcENS1_15AppSTLAllocatorIcEEEE17getAdditionalInfoEv) +STUB( + "N-+xRl3fSzQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE6resizeEj) +STUB("N-2TDcPqToU", JNU_GetStaticFieldByName) +STUB("N-2qBJYv6lw", _ZNK3sce3Xml3Dom8NodeList8findItemENS1_6NodeIdE) +STUB( + "N-8AL1MeRAI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE5beginEv) +STUB( + "N-8VPlM4qYc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("N-BzGK0zsVs", mono_debug_close_image) STUB("N-FSPA4S3nI", sceAmprCommandBufferSetBuffer) +STUB("N-ICz11vKk4", _ZN3sce7Toolkit2NP2V29Challenge13ChallengeDataD2Ev) +STUB( + "N-JJD0ZATp4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEneERKS9_) +STUB("N-KhZY11lPs", _ZN3sce2Np9CppWebApi7Matches2V113RemovedPlayerC1EPNS1_6Common10LibContextE) +STUB("N-KiTa5Ftg4", _ZN3sce2Np9CppWebApi6Common8IteratorIdEC2Ev) +STUB( + "N-dSB7UQMyM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEE7get_refEv) +STUB( + "N-f2aje1q4A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEaSERKS9_) STUB("N-hQe7tI61U", sceNpTrophySystemGetTrpGroupIcon) +STUB("N-lB7jHa8Hw", il2cpp_method_get_name) +STUB( + "N-nJ6wPieCk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE5beginEv) STUB("N-t6bvimom4", sceAudiodReportRegisterHandler) +STUB( + "N-v44712U9o", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE5beginEv) +STUB("N-vYBcgpQS4", WKBundleGetAppCacheUsageForOrigin) STUB("N-wvaQnlXb0", sceHeadTrackerInitialize) STUB("N-xzO5-livc", sceUserServiceSetGlsCameraBgFilter) +STUB("N-yu8uguYHk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEED2Ev) +STUB("N0+x3Spg1YQ", _ZN3sce7Toolkit2NP2V23TUS7Request18GetUsersDataStatusC2Ev) +STUB("N006EqHHvV4", _UTF16LEData_67) +STUB( + "N0085zjTsPk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("N03wZLr2RrE", _ZNSt15_Num_float_base14is_specializedE) +STUB("N09SXXRD6VI", png_write_row) +STUB("N0A1unSU8pw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEaSERKS7_) +STUB( + "N0ACqxdL4w8", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_errorC2EPNS1_6Common10LibContextE) +STUB("N0BIy-itl-A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEmmEv) +STUB("N0CijQdB1Jc", + _ZN15AbstractStorage12LocalStorage5ChModERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEt) +STUB("N0EHkukBz6Q", _ZTSSt13messages_base) +STUB("N0FoGXAXViI", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V113ErrorResponse8fromJsonERKNS_4Json5ValueE) +STUB( + "N0H2z6N6nbc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEEaSERKSA_) +STUB("N0I2MSzYs1I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEED1Ev) +STUB("N0NlOnbnMKg", _ZN7WebCore6Path2DnaEmPv) +STUB("N0RPPNRNWX4", ultag_isUnicodeLocaleKey_67) +STUB("N0U6ySGTkHI", + _ZN7WebCore11DisplayList8ReplayerC2ERNS_15GraphicsContextERKNS0_11DisplayListEPNS1_8DelegateE) +STUB("N0V2-p-0hAM", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectIdD1Ev) +STUB("N0WdFbK+yIg", delegate_virtual_invoke_imt_30_p) +STUB( + "N0Zhc7S4h-c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEE5resetEPS9_) +STUB( + "N0aJWObS44c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEE5resetEPS9_) +STUB("N0alkBnyqYQ", mono_shared_mempool_new) +STUB("N0auHhPnJyg", _ZN7WebCore9HTMLNames5ulTagE) STUB("N0b-Kky0vyc", sceVshAvcapReadUserdata) +STUB("N0b9fruhqcs", _ZN3sce7Toolkit2NP2V24Core17CustomRequestBaseaSERKS4_) +STUB( + "N0cuQxzTiDk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEC1EPNS2_10LibContextE) +STUB( + "N0dfo1RIxXg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEdeEv) +STUB( + "N0gwE8r9SEE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEaSERKS9_) +STUB( + "N0hIaQykVSI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEEC1EPS9_PNS2_10LibContextE) STUB("N0iF180VjGk", sceNpLookupNetCensorComment) +STUB("N0iXfw1xf1Q", _ZN4IPMI4impl10ClientImplC2Ev) +STUB("N0pjMzLO+gU", _ZNK7WebCore22EmptyFrameLoaderClient9sessionIDEv) +STUB("N0v1-dO37MA", YGNodeStyleGetDirection) +STUB("N0wmoVhLuFA", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEEC1Ev) +STUB("N10M2hixaiA", mono_aot_System_Runtimeunbox_trampolines_end) +STUB("N13NkeOmCiU", _ZN7WebCore25encloseRectToDevicePixelsERKNS_9FloatRectEf) +STUB( + "N13stJDRU5I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE8copyFromERKS9_) STUB("N17AK88NdD0", sceVideoOutCursorSetPosition) +STUB( + "N18Hj0DBC3w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEppEi) +STUB("N1AE5kZeN98", _ZN7WebCore15XPathExpression8evaluateERNS_4NodeEtPNS_11XPathResultE) STUB("N1EBMeGhf7E", sceFontSetScalePixel) +STUB("N1Fa3I-h3+s", _ZN7WebCore11JSImageDataC2ERKS0_) +STUB( + "N1OzvTSKGRE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEmmEv) STUB("N1PhQhZsKdE", sceHandTrackerGetDataMemorySize) +STUB("N1S26TrBLLk", FT_Get_Font_Format) +STUB("N1UoRAKiqjU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEEC1EPNS2_10LibContextE) +STUB( + "N1VZUoOe-sc", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "N1VqUWz2OEI", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERj) +STUB("N1ZDxe3M4sA", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOffer10setofferIdEPKc) STUB("N1bEoJ4SRw4", sceVideoOutConfigureOutputMode_) STUB("N1dFmppU9j0", sceRemotePlayClientTerminateStreaming) +STUB( + "N1e5cRoHksE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEaSERSA_) +STUB("N1fabnpJD1o", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_21AbortGameDataResponseEE3getEv) +STUB("N1g1IhlobJQ", + _ZN3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator12setAccountIdEPKc) +STUB("N1gnYosdK7Q", _ZN3sce2np10EventQueue4dtorEv) +STUB("N1iB3I8VXis", _ZN3sce3Xml3Dom15DocumentBuilder5parseEPKNS0_6StringEb) +STUB( + "N1rKdeTQ22s", + _ZN7WebCore23indexForVisiblePositionERKNS_15VisiblePositionERN3WTF6RefPtrINS_13ContainerNodeENS3_13DumbPtrTraitsIS5_EEEE) +STUB("N1rt2nzLpnM", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V112TicketStatusEEC2Ev) +STUB( + "N1sSXExsa90", + _ZN15AbstractStorage17DailymotionFolder10NewContentERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_7ContentEE) +STUB("N1umF0G2dII", __tsan_testonly_barrier_init) +STUB("N1zFsJSEKno", _Z28scePlayGoDevReleaseHashTablev) +STUB("N2+zBtGZIDw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEEptEv) +STUB( + "N23FocGkWvw", + _ZN7WebCore28InspectorFrontendClientLocal17setAttachedWindowENS_23InspectorFrontendClient8DockSideE) +STUB( + "N29qs9Fnhy0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEEC1Ev) +STUB( + "N2I7rJT48y0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEaSERKS7_) +STUB("N2JW1vN+M8w", mono_aot_Sce_Vsh_Accessor_Dbunwind_info) STUB("N2Jbx4tIaQ4", sceNpWebApiIntCreateRequest) STUB("N2O4kbSD1s4", sceCesSJisToUtf16) +STUB("N2OjwJJGjeQ", freeifaddrs) +STUB("N2P3D8o2N7o", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData10unsetrangeEv) +STUB("N2TrOzxQ9Ww", delegate_virtual_invoke_imt_7_p) +STUB("N2TxrmwiPxg", _ZNK7WebCore27PlatformMediaSessionManager30applicationWillEnterForegroundEb) +STUB("N2VV+vnEYlw", _ZTIN10__cxxabiv120__si_class_type_infoE) +STUB("N2Y7A+WiJhQ", u_hasBinaryProperty_67) +STUB( + "N2ZPBAvQ4P4", + _ZN7WebCore18JSHTMLVideoElementC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_16HTMLVideoElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB("N2eLYNTB2w0", _ZN3sce7Toolkit2NP2V212ActivityFeed5Story17CREATION_DATE_LENE) +STUB("N2f485TmJms", _ZNSt8ios_base7failureD1Ev) +STUB("N2gVimIzSWI", _ZN3sce7Toolkit2NP2V210Tournament15RegisteredUsersC1Ev) +STUB("N2o9rIY7NHI", _ZN7WebCore8SVGNames21contentScriptTypeAttrE) +STUB("N2xzUyENlCU", _ZNK3sce2Np9CppWebApi11UserProfile2V112BasicProfile11getOnlineIdEv) +STUB("N33hhCLUt54", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_13NetStateBasicEE3getEv) +STUB("N34j01abxh4", GCC_except_table416) +STUB("N38TrbHlwaQ", monoeg_g_get_tmp_dir) +STUB("N39BtoMLsU4", WKPreferencesGetPageCacheEnabled) +STUB( + "N39f4FDyLrE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEC2EPS6_PNS2_10LibContextE) +STUB("N39w8gCDtOM", WKPreferencesGetMockScrollbarsEnabled) STUB("N3FB4r8JoRE", sceNpUtilCanonicalizeNpIdForPsp2) +STUB("N3FMw0o2nBQ", GCC_except_table10) +STUB( + "N3GNXvHFQLY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEC2EPKS8_) +STUB("N3IOS3hGc0M", _ZN7WebCore15rangeOfContentsERNS_4NodeE) +STUB( + "N3KtZrWVnHI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "N3Lgk0-Gh94", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("N3O5khw1t6Y", _ZN7WebCore16HTMLMediaElement5pauseEv) +STUB("N3PR7oSa5hs", UseSharedSpaces) +STUB("N3Uks6kHwI0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE5beginEv) +STUB( + "N3Vpo3kNjLc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEED2Ev) +STUB("N3XmHcFEPIs", rgctx_fetch_trampoline_mrgctx_122) +STUB("N3bGYLHZl48", WKContextGetResourceCacheManager) STUB("N3dPQZbNQPI", sceCesUcsProfileInitEucJpCp51932) +STUB("N3dSIfd3-yQ", mono_aot_Sce_Vsh_VideoEdit_Wrapperplt_end) +STUB("N3h7zyMwHWU", + _ZN7WebCore21DiagnosticLoggingKeys49successfulSpeculativeWarmupWithoutRevalidationKeyEv) +STUB( + "N3hDSdJBkew", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEdeEv) +STUB( + "N3lTjrCJIFg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE5beginEv) +STUB("N3odb7HTKqE", Java_java_net_SocketOutputStream_init) +STUB( + "N3pmBZlD7ok", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) STUB("N3tAHlBnowE", sceNpUtilBuildTitleId) +STUB("N3zszBFN9bI", mono_string_equal) +STUB( + "N486eQ-hk8o", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE18getResponseHeadersERSA_) STUB("N4AToF3po08", sceSysUtilSendSystemNotificationWithAppName) +STUB( + "N4DzXTDDZw4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEEptEv) +STUB("N4KQNE+qIp8", _ZN9Inspector27PerGlobalObjectWrapperWorldD1Ev) STUB("N4NG9j8mdzo", sceVencQueryMemorySize) +STUB("N4QsuwxwiS8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE21intrusive_ptr_sub_refEPS7_) STUB("N4RkyJh7FtA", sceSystemServiceKillApp) +STUB( + "N4STTO9x1rE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEEC2Ev) +STUB("N4Tq8PMMHeM", delegate_virtual_invoke_14_p) STUB("N4UfjvWJsMw", sceHttp2CreateCookieBox) +STUB( + "N4Y+STUJmE4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEixEm) +STUB("N4YN4JxKa6U", _ZNK3JSC8JSObject8toNumberEPNS_9ExecStateE) +STUB("N4Yxi6TOLcI", _ZTVN9Inspector24RemoteControllableTargetE) +STUB( + "N4ZMPH8OXEM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEED1Ev) +STUB("N4ZsJ0isMVY", _ZN3sce2Np9CppWebApi7Matches2V14TaskD1Ev) +STUB("N4b-kiqQHyg", _ZN7WebCore9FrameView18setViewExposedRectESt8optionalINS_9FloatRectEE) +STUB("N4dVm7KpE+g", mono_aot_Sce_Vsh_Np_ServiceChecker2plt_end) +STUB( + "N4kEztafQCs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEEC2ERKS9_) +STUB("N4mBXKAqz+o", _ZN3JSC4Heap19stopIfNecessarySlowEv) +STUB( + "N4n8wCrY1mY", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi42ParameterToPutGameSessionsSearchAttributesC1ERS5_) STUB("N4qrFLcXLpY", sceUserServiceSetThemeBgImageWaveColor) +STUB( + "N4ruWYXT1jo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEE6assignEPS7_PFvS9_EPNS2_10LibContextE) +STUB("N4sg4khVh0w", u_fsetcodepage_67) +STUB( + "N4x4cRUbvl0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEEdeEv) +STUB( + "N4xgR7ON6cQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE8pushBackERKS8_) +STUB( + "N5-lkYpvKsY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEC1EPNS2_10LibContextE) STUB("N54dyckyj2Q", sceMusicCoreServerGetCoreInfo) +STUB( + "N59uGTx+ago", + _ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead8fromJsonERKNS_4Json5ValueE) +STUB("N5CYvjCZL0s", _ZN3JSC7Symbols27performIterationPrivateNameE) +STUB( + "N5K6VCK7Z6k", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEplEm) STUB("N5KDtkIjjJ4", sceVideoOutUnregisterBuffers) +STUB("N5MfKCnNl04", _ZN15AbstractStorage14FacebookFolderD1Ev) +STUB("N5NCHzbSmBA", mono_aot_Sce_Vsh_KernelSysWrapperplt_end) +STUB("N5RpW-mk9mE", __asan_report_exp_load_n) +STUB("N5SO+nV+YxU", Java_com_sony_gemstack_io_factories_ps_PSAttributes_n_1getAttributes) +STUB( + "N5Wo46EikAI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEEdeEv) +STUB( + "N5Xk+G5DDJ4", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed14PlayedWithFeedEE19setCustomReturnCodeEi) +STUB("N5nZ3wQw+Vc", _ZNSt9type_infoD0Ev) +STUB("N5xN0QU9QR0", _ZN3sce2Np9CppWebApi6Common8IteratorImEaSERKS4_) +STUB("N5yPp5dHBQE", curl_easy_reset) +STUB("N61c8+bAHYA", _ZN7WebCore11DisplayList6SetCTMD2Ev) +STUB("N64zIkwmxG0", + _ZN7WebCore15StringTruncator13rightTruncateERKN3WTF6StringEfRKNS_11FontCascadeERfbf) +STUB("N6Bb9tOzbOE", _ZN7WebCore20TransformationMatrix5blendERKS0_d) +STUB("N6C0yWHObPE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEED2Ev) +STUB( + "N6E5TEfV8yM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEixEm) +STUB( + "N6HRMBBnPG0", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V312ErrorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5ErrorEEE) STUB("N6ID0KNnzY8", sceCompositorGetSystemSize) +STUB("N6JHDaGTItI", _ZN7WebCore9CookieJarD0Ev) +STUB("N6KMnavOzzk", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_18GameCustomDataItemEE3getEv) STUB("N6Oy-EjduiY", sceAvPlayerSetAvailableBandwidth) +STUB("N6RNRFAzcI8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE6resizeEj) +STUB( + "N6RUTJkSwEg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEppEi) +STUB("N6SkkX1GkFU", _ZN3sce2np8NpCommIdC1ERKS1_) +STUB("N6T9zuarUZI", ufmt_close_67) +STUB("N6VYBFSOZxg", upvec_compact_67) +STUB("N6Y0fJoacEU", WKPreferencesGetDeferredCSSParserEnabled) +STUB("N6Zxk80Ewgs", WKPageConfigurationGetTypeID) +STUB( + "N6dcmbAdzrc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEE3getEv) +STUB("N6jdzDR6Zpk", _ZN7WebCore15DatabaseTracker28deleteDatabasesModifiedSinceEN3WTF8WallTimeE) +STUB( + "N6jyiwlBMdc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE3endEv) STUB("N6lOuDxmAiU", sceDebugIpmiGetClientKidListByServerKid) +STUB("N6pFrcdbrwc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEEdeEv) +STUB("N6qkPfyi6-g", _ZN3sce7Toolkit2NP24SendInGameMessageRequestC1Ev) +STUB( + "N73vg9P-UC4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEC2Ev) +STUB("N74RfOdH1jU", linear_search) +STUB( + "N77KqKyC8gA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEC2EPS8_) +STUB("N788WAPK-i8", _ZN3sce7Toolkit2NP29ConsumeEntitlementInputParamsC1Ev) +STUB("N78X77MbMH8", + _ZN12video_parser5vpcom10_ReadAsyncEPNS_8_vp_fileEPvjPijS3_PFNS_11VP_RESULT_eES2_S3_jS4_S3_E) +STUB("N78gkQzXRL4", _ZN3sce4Json6StringC2EPKc) +STUB("N78k-Vryooc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEED1Ev) STUB("N7M3+N-sBCw", sceAgcDcbPushMarkerSpan) STUB("N7PrM+lPMW0", sceCompositorGetCanvasHandle) +STUB( + "N7VGnpnlfKU", + _ZN3sce2Np9CppWebApi11Matchmaking2V116SubmitterFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_9SubmitterEEE) +STUB( + "N7dofZ1DpIY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEixEm) +STUB("N7gOJ1+zbhQ", _ZN7WebCorelsERN3WTF10TextStreamERKNS_15ScrollAlignmentE) +STUB("N7gzoBpy+vc", png_save_uint_32) +STUB( + "N7kThMOy1bY", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13boolean2IsSetEv) +STUB("N7kmCi5hOdc", _ZN7WebCore12PrintContext27computeAutomaticScaleFactorERKNS_9FloatSizeE) +STUB( + "N7pZuFOjf3A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEC2ERKS7_) +STUB( + "N7qO-6ocCZs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEEC1ERSA_) +STUB("N7syg-kTPJY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEED2Ev) STUB("N7tpsjWQ87s", scePadVirtualDeviceAddDevice) +STUB("N7wKmIrVYZc", _ZN3JSC7Symbols17returnPrivateNameE) +STUB("N7xnOTDMh1s", _ZN7WebCore20NetworkStateNotifier6onLineEv) +STUB("N7yf+u-Qonw", + _ZN3sce7Toolkit2NP2V29Messaging7Request37DisplayReceivedGameDataMessagesDialogD2Ev) +STUB( + "N7yubAqWTK0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("N7z+Dnk1cS0", _ZNKSt7codecvtIcc9_MbstatetE7unshiftERS0_PcS3_RS3_) +STUB("N8-Q87pRWMw", _ZNSt10_Ref_countIN15AbstractStorage15FacebookContentEED1Ev) +STUB("N84qS6rJuGI", _ZTSPe) +STUB("N88-2IGP1a4", mono_aot_Mono_Dynamic_Interpreterunbox_trampoline_addresses) +STUB("N8AI8oHmBc8", u_strpbrk_67) +STUB("N8CArZl3roY", ucal_setDefaultTimeZone_67) +STUB( + "N8ECfP3wmpM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE8pushBackERKS8_) +STUB("N8JLogCXQcQ", + _ZN3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession16unsetSessionNameEv) +STUB("N8KLCZc3Y1w", _ZTSx) +STUB( + "N8KbL-Cm1oU", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot9getslotIdEv) +STUB( + "N8LWXRFFfcg", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer17setacceptLanguageEPKc) +STUB( + "N8Mduunm45s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEE11release_refEv) +STUB("N8PebyNzMzk", _ZN7WebCore18JSHTMLVideoElement9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB( + "N8QAfvo4NzE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "N8R7SViwY6Y", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "N8RntiT0zDY", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeaders15hasCacheControlEv) +STUB("N8VXirxuU5w", _ZN3sce7Toolkit2NP2V24Core7Request16ThreadProperties14STACK_MIN_SIZEE) +STUB("N8Vkx5mZL3Q", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEEdeEv) +STUB( + "N8X38WX+rYU", + _ZN7WebCore6Editor22writeImageToPasteboardERNS_10PasteboardERNS_7ElementERKN3WTF3URLERKNS5_6StringE) +STUB( + "N8cvDK8qKSw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEC2EPS8_) +STUB( + "N8d4B4H2KRw", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetrics6toJsonERNS_4Json5ValueEb) +STUB("N8ff+sy7SEU", _ZN3sce7Toolkit2NP2V211UserProfile10NpProfilesD1Ev) +STUB( + "N8s7itVpQBM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE5beginEv) +STUB("N91V1f4JbbA", _ZN7WebCore12SharedBufferC2EONS_10FileSystem14MappedFileDataE) +STUB("N93Nb5-YJsw", WKContextPostMessageToInjectedBundle) +STUB("N97GDILF77Y", bemp2sys_packetizer_init) +STUB( + "N9AdsPcm5qc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEmmEi) +STUB( + "N9DsGv73MT4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEEC1ERKSA_) +STUB("N9IMYkCSZSk", uset_open_67) STUB("N9K6D-eO6UI", sceFaceTrackerGetDefaultConfig) +STUB("N9KKC6Q8mhg", SSL_set_session) STUB("N9LD0odT-kI", sceVdecwrapResetDecoder) +STUB( + "N9R+UD9rBhg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEEC1EPKS6_) STUB("N9SrpMINuLw", sceKernelClearBootReqNotifyCount) +STUB("N9TCWgQlV1U", _ZN3sce2Np9CppWebApi12Leaderboards2V113ErrorResponseD2Ev) +STUB("N9ThRp3A3SU", mono_debug_il_offset_from_address) +STUB( + "N9XqGSdUYYs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEC1Ev) STUB("N9YwXumgOfo", sceMatMemoryPoolDecommit) +STUB("N9aQAacxzfQ", _ZN7WebCore10FileSystem13listDirectoryERKN3WTF6StringES4_) +STUB( + "N9dw2Ui9LJc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEED1Ev) +STUB( + "N9gzGHKbtP4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEmmEv) +STUB( + "N9jUpAxISno", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi26setPlayerSessionPropertiesEiRKNS4_37ParameterToSetPlayerSessionPropertiesERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB( + "N9jV0y31xMg", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlot9getslotIdEv) +STUB( + "N9n0qgMigps", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEED2Ev) +STUB("N9roSC2MBLU", mono_aot_Sce_Vsh_Np_ServiceChecker2jit_got) +STUB( + "N9vXsUsR2WA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEE11release_refEv) +STUB( + "N9zNETnd3js", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEC1Ev) +STUB("NA-qlFKvMOU", u_versionFromString) +STUB("NA46RXga9OQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE5beginEv) +STUB("NA5D9n4TpzE", _ZN3JSC16SamplingProfiler17stackTracesAsJSONEv) +STUB("NA92tSxkAaM", _ZN7WebCore8SVGNames15stitchTilesAttrE) +STUB("NACNNE+74fo", + _ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer11setPlatformEPKc) +STUB("NADMbD5Adow", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicketD2Ev) +STUB( + "NADWq+H9kns", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEixEm) +STUB("NASakyO6sMo", _ZN7WebCore8JSDOMURL14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB( + "NAVPJmN1qoE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE8pushBackERKS8_) +STUB( + "NAZ27WCrKkk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEixEm) +STUB( + "NAakmRoBF-o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("NAbNV6OSGEc", mono_aot_Mono_Cairojit_code_start) +STUB("NAdhuyVwGqs", _ZN3sce7Toolkit2NP2V28Matching7Request10CreateRoom24MAX_SIZE_CHANGEABLE_DATAE) +STUB("NAgzpjKKDGg", _ZN7WebCore17PageConsoleClient4timeEPN3JSC9ExecStateERKN3WTF6StringE) +STUB("NAmyHeO0dvY", _ZN3sce7Toolkit2NP2V27Session7Request7GetInfoD1Ev) +STUB("NApYynEzlco", _Dnorm) +STUB( + "NAuf9W6vBEg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEixEm) +STUB( + "NAwpmWZSOtk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEC1Ev) +STUB( + "NAxB0+wLIhs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEEC1Ev) +STUB( + "NB0mXdlRc5k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEC1EPS8_) STUB("NB1Y2kA2jCY", sceHmdSetupDialogInitialize) +STUB( + "NB1gyiJJhEM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEC1EPS8_) +STUB("NB5lJxGW9Ro", WKGeolocationManagerProviderDidChangePosition) +STUB("NB6f-iHahKI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEEC2ERS7_) STUB("NB9-D-o3hN0", sceUserServiceSetGlsTtsPitch) +STUB( + "NB9kUK10Vnw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "NBAgitclf60", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE5eraseENS2_8IteratorIS9_EERSC_) +STUB( + "NBGf7IAvuT0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE5emptyEv) +STUB("NBHornhSSBk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEC1Ev) STUB("NBK1rc2pqGg", sceVideoNativeExtEssential_DestroyDecInstance) +STUB( + "NBMBahOQQB8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("NBSv1TK3DWU", _Z28sendIpmiInvokeAsyncMethodResiiiiiPKN4IPMI8DataInfoEb) +STUB( + "NBTE1k7eEys", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEED1Ev) +STUB( + "NBWG-mpnji4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEEC1ERS9_) +STUB( + "NBXUNJ09GJU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEC1Ev) +STUB("NBcu2DCofTw", _ZN3WTF17double_conversion23StringToDoubleConverter13StringToFloatEPKcmPm) +STUB("NBcz0Vr99eQ", il2cpp_set_data_dir) +STUB("NBegBgxEw08", + _ZN12video_parser18cProfileCheckerMp419_isPlayableAudioAACERKNS_13VpMediaInfo_tE) +STUB("NBgXD4SrmfY", _ZN7WebCore11DisplayList8DrawLineC2ERKNS_10FloatPointES4_) +STUB( + "NBiiqxQHtZo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEEdeEv) +STUB("NBjin8TOnnA", WKBundlePageOverlayGetTypeID) +STUB( + "NBuSCVX83ds", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "NBuilbVaR18", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEEC2Ev) +STUB("NBymTwgR3WQ", _ZN3sce2Np9CppWebApi7Matches2V118RequestTeamResults10unsetScoreEv) +STUB("NC4MSB+BRQg", strncat_s) +STUB("NC762sOoy-g", WKBundleFrameGetContentBounds) +STUB( + "NC9HWg9pfYs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEE3getEv) +STUB( + "NCAJrUYVzzs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE21intrusive_ptr_add_refEPS9_) +STUB("NCEb7FCfmwE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEED2Ev) +STUB( + "NCFn3rGtED0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEED1Ev) +STUB("NCHVBc1E3+c", _ZNK7WebCore8Location4hostEv) +STUB( + "NCIRE95krsQ", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence12Notification14PresenceUpdateEE19setCustomReturnCodeEi) +STUB("NCJjnW5g59Q", _ZN3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectatorD1Ev) STUB("NCP3bLGPt+o", sceNpMatching2GrantRoomOwner) +STUB( + "NCTn5LeS6EA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEEaSERSA_) +STUB("NCe1Kgd6Jlo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEED1Ev) +STUB("NCmJRtMzQLk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEE11release_refEv) +STUB( + "NCnDvEDsaio", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB( + "NCo55dHmPRk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEEC1ERKS9_) +STUB( + "NCsvKBnINqk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "NCui6QkdUEU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "NCzvEueb1tM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEC2ERS7_) STUB("ND+7k58SVFE", scePerfPmcMcSeqSetCounter) +STUB("ND2LqMQOzQs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE5beginEv) +STUB( + "ND4vTtL6ceA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB("NDAHXMuRQ5M", _ZNK7WebCore13GraphicsLayer26backingStoreMemoryEstimateEv) +STUB("NDExGWt1HdE", mono_threads_enter_gc_unsafe_region_unbalanced) +STUB("NDFvu6iq9PE", WKPreferencesSetTabToLinksEnabled) +STUB( + "NDJNnr29Eh8", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEiRNS2_10LibContextEPT_m) STUB("NDNujUEAyS4", sceVideoCoreAbortRequest) +STUB("NDOLSTFT1ns", __feenableexcept) +STUB( + "NDUbtN+5DjA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEC1EPS6_PNS2_10LibContextE) +STUB( + "NDWGKBrHKbM", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEED2Ev) +STUB( + "NDYFR6iSXR8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEEptEv) STUB("NDbQMSkpoXg", sceMatSetPrtAperture) +STUB("NDcSfcYZRC8", malloc_usable_size) +STUB("NDdx1EP18kM", + _ZN3sce7Toolkit2NP2V29Challenge7Request21GetReceivedChallenges21MAX_NUM_CHALLENGE_IDSE) +STUB( + "NDecA6TqMWI", + _ZN7WebCore21JSRemoteDOMWindowBaseC2ERN3JSC2VMEPNS1_9StructureEON3WTF6RefPtrINS_15RemoteDOMWindowENS6_13DumbPtrTraitsIS8_EEEEPNS_13JSWindowProxyE) +STUB("NDeifpoQvKE", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsD1Ev) +STUB( + "NDfv8voZjPU", + _ZN7WebCore14LoggedInStatus6createERKNS_17RegistrableDomainERKN3WTF6StringENS0_19CredentialTokenTypeENS0_18AuthenticationTypeE) +STUB("NDho6fEIMSk", _ZN3sce2Np9CppWebApi6Common6VectorIjE7popBackEv) +STUB("NDnuLyNDr0s", mono_aot_Sce_Vsh_UserServiceWrapperplt_end) +STUB( + "NDsGZA8ppAQ", + _ZN9Inspector33ApplicationCacheBackendDispatcherC2ERNS_17BackendDispatcherEPNS_40ApplicationCacheBackendDispatcherHandlerE) +STUB("NDsTaWhoVQI", BN_new) +STUB("NDvMOmW2dH0", _ZN3WTF10StringImpl23convertToASCIIUppercaseEv) +STUB("NE+wEY8+0nc", _ZN7WebCore10FileSystem8openFileERKN3WTF6StringENS0_12FileOpenModeE) +STUB( + "NE6MdQl8Bkc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEC1EPS8_) +STUB( + "NE7+rjDCD4o", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEixEm) +STUB( + "NECMvzMD4vY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "NEEW004kTVA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEEC2ERSA_) +STUB( + "NETV3Pkxu1U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEE11release_refEv) +STUB("NEWQfiblmOM", _ZN7WebCore8JSPath2DC1ERKS0_) +STUB( + "NEYuVqTXo4M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEED1Ev) +STUB( + "NEdhpyHgRsk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("NEemVJeMwd0", _ZNKSt8bad_cast8_DoraiseEv) +STUB( + "NEgCLV3iB+U", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils16NetStateDetailedEE19setCustomReturnCodeEi) +STUB( + "NEmJuozMA2U", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_11EntitlementENS1_15AppSTLAllocatorIS5_EEEED2Ev) +STUB( + "NEnVsoss6qA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEC2EPNS2_10LibContextE) +STUB("NEp8deTHgK4", _ZN3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate13unsetTeamNameEv) +STUB("NEpzmuIn-fQ", _ZN3sce2np9HttpTrans6IsInitEv) +STUB( + "NEqo9uFTbng", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEEdeEv) STUB("NEtnusbZyAs", sceNetCtlGetResultIpcInt) +STUB( + "NEvSfnU+AZU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEC1EPNS2_10LibContextE) +STUB( + "NEy-VXdEjO8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEED1Ev) +STUB( + "NEyCQrYs6Jw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEED2Ev) +STUB( + "NEyVgZ9GXKM", + _ZN3sce2Np9CppWebApi11Matchmaking2V125PlayerForOfferReadFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_18PlayerForOfferReadEEE) +STUB( + "NEz-KecPe68", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEC2ERS7_) +STUB("NEzrN-XLbQI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEED1Ev) +STUB("NF1s99Jgzow", _ZNK7WebCore9FrameTree10childCountEv) +STUB( + "NF1yK-bmqOg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE3endEv) +STUB("NF2Fp0E+ckg", _ZN3NTF17URLRequestDataJob6cancelEv) +STUB("NF39IMkQjhE", ucol_countAvailable_59) +STUB("NF3f0EQqjms", mono_aot_ClassLibrary1unwind_info) +STUB("NF3jGh0iO4Q", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEEixEm) +STUB( + "NF68mMMGT98", + _ZN3sce2Np9CppWebApi14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBody8fromJsonERKNS_4Json5ValueE) +STUB("NF8-2Zm83GU", + _ZN3sce7Toolkit2NP2V211SocialMedia7Request12ActionLinkFb24MAX_ACTION_LINK_NAME_LENE) +STUB("NF8XcojGF08", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEEC1EPS5_PFvS7_EPNS2_10LibContextE) +STUB("NFAhHKyMnCg", _ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE) +STUB("NFBhB2pvweA", _ZN4IPMI4impl11SessionImpl13setSessionKeyEj) +STUB( + "NFCaDW0mrFI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEppEi) +STUB( + "NFDZl-dUXVc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEC1EPS8_) +STUB( + "NFK9JY4IXgA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEE7get_refEv) +STUB("NFLZY+fVG-g", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEEptEv) +STUB("NFLs+dRJGNg", memcpy_s) +STUB("NFMPkcE9feI", _ZN7WebCore11MediaPlayer24setClosedCaptionsVisibleEb) +STUB( + "NFO4j-UV9v8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "NFOpTpQBrc8", + _ZN9Inspector23WorkerBackendDispatcherC2ERNS_17BackendDispatcherEPNS_30WorkerBackendDispatcherHandlerE) +STUB("NFStvFM+bIw", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V510AnnotationEEptEv) +STUB( + "NFVKmi4OSkQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("NFWAeJfYRwI", fuse_fs_lock) +STUB("NFbPqc4Y2gM", WKPreferencesGetScreenFontSubstitutionEnabled) +STUB( + "NFbmb9vtEuM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE8capacityEv) +STUB("NFecWyGuuMk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEEppEv) +STUB( + "NFfLTZxLqu8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEE11release_refEv) +STUB("NFftkkXV3ns", PKCS7_free) +STUB( + "NFjUN9CCnoA", + _ZN7WebCore16DeviceMotionData6createEON3WTF6RefPtrINS0_12AccelerationENS1_13DumbPtrTraitsIS3_EEEES7_ONS2_INS0_12RotationRateENS4_IS8_EEEESt8optionalIdE) +STUB( + "NFlJyoPBDmU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE21intrusive_ptr_add_refEPS9_) +STUB("NFreX0aMUyY", _ZNK3sce2Np9CppWebApi11UserProfile2V112BasicProfile12aboutMeIsSetEv) STUB("NFwh-J-BrI0", sceRazorCpuInitializeGpuMarkerContext) STUB("NFxDIuqfmgw", scalblnl) +STUB("NG+D00RsX1Y", SSL_CTX_set_min_proto_version) +STUB( + "NG-lbm2BAKU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEptEv) +STUB("NG1phipELJE", _ZSt13set_terminatePFvvE) +STUB("NG5BY8rlbLw", _ZNK7WebCore21NetworkStorageSession18cookieAcceptPolicyEv) +STUB( + "NG60X2NQyuc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEC2EPKS8_) +STUB("NG7OgYsgcF8", FT_Outline_New_Internal) +STUB( + "NG983jZ9mos", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearch13isInitializedEv) +STUB( + "NGBF3szOnt8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEC2EPS6_PNS2_10LibContextE) STUB("NGCeFUl5ckM", sceNpTusGetMultiSlotDataStatusVUser) +STUB( + "NGD5QKbcm9M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEC2EPKS8_) +STUB( + "NGNSgj5QRDE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEE11get_deleterEv) +STUB( + "NGRwo5tUt34", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("NGS0taBPEQg", __cxx_global_var_init .17) +STUB("NGTkAHTkViY", curl_easy_strerror) +STUB("NGTwQDHsPsQ", ucptrie_getRange_67) +STUB("NGYgShA2SkI", _ZN3sce7Toolkit2NP2V27Session10InvitationC1Ev) +STUB("NGaR2vt2da4", _ZNK3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer11getPlayerIdEv) +STUB("NGf0AZECwU0", mono_aot_JSC_Netunwind_info) +STUB("NGfsoXi2arU", _ZN7WebCore11DisplayList11SetLineJoinD0Ev) STUB("NGjHS-+WpA4", sceCesUtf16beToMbc) +STUB("NGmLCaIz2mA", _ZL14free_exceptionPc) +STUB("NGpv+Db5ZfQ", mono_aot_Sce_Vsh_Np_RifManagerplt_end) +STUB( + "NGxpDUTl6J8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE5beginEv) STUB("NGyEl5aT4fc", sceVideoOutDriverGetBufferLabelAddress) +STUB("NH0FHC1fkDU", g_strerror) +STUB( + "NH0Pc14g6NQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEE3getEv) +STUB( + "NH5at7ok2SQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEEC2Ev) +STUB( + "NH6l5zc5Aqw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEptEv) +STUB("NH8C4UTIAG0", _ZN7WebCore15GraphicsContext4clipERKNS_9FloatRectE) +STUB( + "NHAm6v+NDAI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "NHFooSnrS0E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEppEi) +STUB( + "NHIDoWvNhl8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("NHP5ZtmRktA", il2cpp_format_exception) +STUB( + "NHQ3gDcgVnU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEeqERKS9_) +STUB( + "NHRdkqJlG7A", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEptEv) +STUB( + "NHU99s0UG6A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "NHV4oN2sbdk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEC2Ev) +STUB("NHXXBidSb6Y", EVP_PKEY_CTX_ctrl) +STUB( + "NHXj3JBUvsc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEC2EPS8_) +STUB("NHbQrWA9ous", g_JSScriptFetchParametersPoison) +STUB("NHePel-6CXU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEEC1EPKS6_) +STUB( + "NHh+Omcj4T8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) STUB("NHjHSABXkLo", sceMatFreePoolMemory) +STUB("NHsN2nJAVmM", _ZN3sce3Xml3Dom6NodeIdneES2_) +STUB("NHvpCXsxeek", mono_g_hash_table_replace) +STUB("NHx9pxHiSbU", __init_array_start) +STUB("NHxNdZ18H+E", uregex_clone_67) +STUB("NHxpE45ygfQ", glFramebufferTextureLayer) +STUB("NI0zZ27Gxms", Java_sun_misc_Signal_raise0) STUB("NI51esCzmIs", sceValidationGpuGetVersion) +STUB( + "NID-hBPPmaY", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119NatConnectivityFromC1EPNS1_6Common10LibContextE) +STUB("NIH35yrD3TY", _ZN7WebCore19JSDOMImplementation9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB( + "NIHO2YQXJo8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEC2EPNS2_10LibContextE) +STUB("NIKqUIU67Fk", _ZN7WebCore9HTMLNames9strikeTagE) +STUB( + "NIPUv7Lx9s8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEptEv) +STUB( + "NIeBgP+6G7A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE8pushBackERKS8_) +STUB("NIfFNcyeCTo", feraiseexcept) +STUB("NIhRLDvGXME", _ZN3JSC19HeapSnapshotBuilderC1ERNS_12HeapProfilerE) +STUB( + "NImKbNF2qsU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEmmEi) +STUB("NInMZRpAc3g", + _ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends11unsetoffsetEv) +STUB("NIpv7Nj-V64", _ZNK3sce2Np9CppWebApi7Matches2V113ChildActivity17availabilityIsSetEv) +STUB("NIq7Ht4pOnw", _ZN7WebCore17FrameLoaderClient26dispatchWillChangeDocumentERKN3WTF3URLES4_) +STUB("NIqVcyjgdjA", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE8copyFromERKS7_) +STUB( + "NJBiQPzPrIE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_) STUB("NJHE0mnO0NA", sceAvControlGetPuStatus) +STUB("NJOqfXcR-gw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEcvbEv) +STUB("NJP+6AtDiU8", _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_8DocumentE) +STUB("NJPVh06vbSg", ucol_countAvailable_67) +STUB( + "NJQYeoX0Zsw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEE7add_refEv) STUB("NJYAQeP3z7c", sceLncUtilSetControllerFocusPermission) +STUB("NJZ8oouT55s", unumsys_isAlgorithmic_59) STUB("NJam1-F7lNY", sceAudioInGetHandleStatusInfo) +STUB("NJbSEeeYv9M", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V19JoinStateEEmmEi) +STUB( + "NJclZbZMRGA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEC2Ev) +STUB( + "NJfyDUcERYc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE3endEv) +STUB("NJgThNt+gmg", _ZN7WebCore9HTMLNames16aria_rowspanAttrE) +STUB("NJmb6+w9kpI", uscript_isCased_67) STUB("NJpUvo+rezg", sceUserServiceSetParentalDvdRegion) +STUB("NJsu0fy42TY", _ZN7WebCore6Path2DnwEm) +STUB("NJt4CMd3J74", _ZN9Inspector24CanvasFrontendDispatchernwEm) +STUB("NJtKruu9qOs", + _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecx) +STUB( + "NJw4sqe8Ci0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE5beginEv) +STUB( + "NK+6hN++9rA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "NK0FXcY4JBA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEE11get_deleterEv) +STUB( + "NK6CqaGTEkQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEptEv) +STUB("NK7Rzqtr2rA", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119SubtaskAvailabilityEEppEi) +STUB("NK9LrYDJwsY", _ZN3sce7Toolkit2NP2V27Ranking10UsersRanksC2ERKS4_) +STUB( + "NKBniw+yZ0I", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) STUB("NKCwS8+5Fx8", sceNpWebApi2SendMultipartRequest) +STUB("NKF4F8SQyx4", wait3) STUB("NKIzURsgV7I", sceAgcGetGsOversubscription) +STUB("NKJMUghVqMk", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request7GetFeedC1Ev) +STUB("NKNYJptJYtY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEC1Ev) +STUB("NKOyGh1jHWE", mono_aot_Sce_Vsh_Gls_NativeCallunbox_trampoline_addresses) +STUB( + "NKP6ONc0Yds", + _ZN7WebCore24passesAccessControlCheckERKNS_16ResourceResponseENS_23StoredCredentialsPolicyERKNS_14SecurityOriginEPKNS_37CrossOriginAccessControlCheckDisablerE) +STUB("NKWWyWgw5Us", _ZN7WebCore21DiagnosticLoggingKeys27canceledLessThan2SecondsKeyEv) +STUB( + "NKZfEyP3wWE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEppEv) STUB("NKbUhZWU1Fc", sceSystemServiceGetRecentLotusPushedButton) +STUB( + "NKbwQhAiAec", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE7reserveEi) +STUB("NKf0eZBkuXQ", utrans_transUChars_67) +STUB( + "NKf7DfLLoMs", + _ZN3sce2Np9CppWebApi12Leaderboards2V112EntryFactory6createEPNS1_6Common10LibContextERKmiiRK13SceNpOnlineIdiliPNS5_12IntrusivePtrINS3_5EntryEEE) +STUB("NKg-qME4uN0", _ZN7WebCore21BlobDataFileReference6createERKN3WTF6StringES4_) +STUB("NKjxHXOzeu8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEEixEm) +STUB( + "NKnNOT89Sy8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEEC1ERKSA_) +STUB("NKquI3oYzZk", _ZN3JSC18ErrorHandlingScopeC1ERNS_2VME) +STUB("NKrjlO4HBhg", FcPatternGetCharSet) +STUB( + "NL-s6Er+hFg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE7popBackEv) +STUB( + "NL1T3NfnYgM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEppEi) +STUB( + "NL52qhSDtC4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEmmEi) +STUB("NL6CCjSnAM4", _ZN7WebCore12PrintContextD1Ev) +STUB( + "NL72Tiq6XMg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("NL836gOLANs", fopen_s) +STUB( + "NL892otRu+4", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("NLA7bmDS1jc", FTA_Add_Module_smooth_lcd) +STUB("NLBSL1XaedQ", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE4sizeEv) +STUB("NLBl+ZxCYGU", _ZN3JSC19ArrayBufferContentsC1Ev) +STUB("NLFkRAoM9og", _ZNK3WTF6String6toUIntEPb) +STUB("NLHWcHpvMss", _ZNSt14numeric_limitsIeE6digitsE) +STUB("NLJ-Wr9aNww", _ZNK7WebCore11MediaPlayer8referrerEv) +STUB("NLKuHbD5Y-w", mono_aot_Sce_Vsh_Registrymethod_addresses) +STUB( + "NLO8s4jB0E4", + _ZN7WebCore27AuthenticationChallengeBaseC1ERKNS_15ProtectionSpaceERKNS_10CredentialEjRKNS_16ResourceResponseERKNS_13ResourceErrorE) +STUB( + "NLRDFm0y1xw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEEaSERSA_) +STUB("NLU07MHnIJU", + _ZN3sce2Np9CppWebApi13InGameCatalog2V521ContainerMediaFactory7destroyEPNS3_14ContainerMediaE) +STUB("NLVNKf-V5C4", izrule_getPreviousStart_67) STUB("NLW0QcvJY-E", sceCesRefersUcsProfileIso8859_15) +STUB("NLZn1CjVwOc", mono_aot_Sce_Vsh_Sl2_Sl2Clientplt_end) +STUB("NLgKJv4-oTc", _ZN3sce7Toolkit2NP2V28Presence12Notification14PresenceUpdateD2Ev) +STUB("NLiNjTWiu60", mono_aot_Mono_Data_Sqliteunbox_trampolines) +STUB("NLlg0zchmas", mono_aot_Sce_Vsh_Np_ServiceCheckerplt_end) STUB("NLq2b1jOaN0", sceKernelFutimes) +STUB("NLwJ3q+64bY", _ZSt7nothrow) +STUB( + "NLwPhYhfiro", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("NLwiYXdX5WU", FT_Get_CID_From_Glyph_Index) +STUB( + "NLzK2OkBWL4", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB( + "NM+MmoLr44E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEE3getEv) +STUB("NM2sfG425Ks", _ZN7WebCore15GraphicsContext10strokePathERKNS_4PathE) +STUB("NM3Xq8OE9nQ", _ZN3sce2Np9CppWebApi6Common6VectorIiEC2Ev) +STUB( + "NM3lPL0+Fdg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEEC2ERSA_) STUB("NMD61i-MF2g", sceVencCoreUnmapTargetMemory) +STUB( + "NMDZGmjcDD4", + _ZN3sce2Np9CppWebApi14SessionManager2V125MatchmakingForReadFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_18MatchmakingForReadEEE) +STUB("NMGQ9M3+kXM", mono_aot_Sce_Vsh_DbRecoveryUtilityWrapperjit_code_end) +STUB("NMIpue9XcQk", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_6NpUserEE10deallocateEPS3_m) +STUB( + "NMJDwRjH-Ww", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEED1Ev) +STUB( + "NMJLPhqjUVc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEaSERKS9_) +STUB("NMLyLT3wXnI", _ZN3sce2Np9CppWebApi6Common8IteratorIfEmmEi) +STUB( + "NMMIJ31zSo8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEEaSERKSA_) +STUB("NMOVEHgUThY", WKPreferencesSetCSSAnimationTriggersEnabled) +STUB("NMQahLvHDPo", _ZN7WebCore15DatabaseTracker7originsEv) +STUB("NMTIQpo3uXs", _ZN9Inspector21DOMFrontendDispatcher21characterDataModifiedEiRKN3WTF6StringE) +STUB("NMTiOd+4pxo", ucal_setTimeZone_67) +STUB("NMURBPNOLS8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEED1Ev) +STUB("NMVul0SW15I", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE21intrusive_ptr_add_refEPS7_) +STUB("NMXJOYzVUWk", _ZNK7WebCore6Editor30fontAttributesAtSelectionStartEv) +STUB( + "NMecsQvQOns", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("NMiyX4Ssiwk", _ZN2sh11GetUniformsEPv) +STUB( + "NMjJxeEzXH0", + _ZN3sce2Np9CppWebApi7Matches2V121ResponseTeamStatistic8setStatsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_19AdditionalStatisticEEEEE) +STUB("NMo4nPfv1BY", rgctx_fetch_trampoline_mrgctx_108) +STUB( + "NMpX0NkbJqQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEEC1EPSA_PFvSC_EPNS2_10LibContextE) +STUB( + "NMtDf5GMwo0", + _ZNK7WebCore21ContentSecurityPolicy27allowChildContextFromSourceERKN3WTF3URLENS0_24RedirectResponseReceivedE) +STUB( + "NMtN3jrQM74", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) STUB("NMyIQ9WgWbU", scePthreadAttrGetschedpolicy) +STUB( + "NN+tmVklAX0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEEC2ERKSA_) +STUB("NN01qLRhiqU", rename) +STUB("NN6kXDW5Y5o", _ZN3JSC19ArrayBufferContentsC2EOS0_) +STUB( + "NN6u+QH9-pA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEE5resetEPS6_) +STUB("NN9JxDCjVZA", mono_aot_Sce_Vsh_LncUtilWrapperjit_code_start) +STUB( + "NNAjMH3G-u4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEC2Ev) STUB("NNDEWeeM7yM", sceSdecCreateSw2) +STUB( + "NNEh8dBI0Wc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE5beginEv) STUB("NNIZ-FMyz3M", sceAmprMeasureCommandSizeNop) +STUB( + "NNS0CE4ZeqA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEED2Ev) +STUB( + "NNS2NhnzCRs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEixEm) STUB("NNVf18SlbT8", sceNpWebApi2PushEventCreatePushContext) +STUB( + "NNbViWnK7Ss", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser11unsetoffsetEv) STUB("NNblpSGxrY8", sceUserServiceGetImePointerMode) +STUB("NNcJnwqxmjY", png_create_write_struct_2) STUB("NNgiV4T+akU", sceHmdSetupDialogOpen) +STUB("NNjvrpPKrB8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEppEi) +STUB("NNpH54FkYk8", vzone_getOffset3_67) +STUB("NNtFaKJbPt0", _close) +STUB("NNtRrAFE6+U", _ZN7WebCore21JSCSSStyleDeclarationC2ERKS0_) +STUB( + "NO+TofS1w8k", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEeqERKS9_) +STUB("NO-Hz4JBKAM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEptEv) +STUB("NO1ls6lDS7U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEaSERKS7_) +STUB("NO1vEteQ8tQ", jinit_huff_decoder) +STUB( + "NO7MT-BTk4o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEE5resetEPS8_) +STUB("NO8LGTKyCTk", _ZN3JSC23AbstractSamplingCounter4dumpEv) +STUB( + "NO8cOlsQGH4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEEC2ERS8_) +STUB("NO9mhkI0uzY", _ZN7WebCore29PerspectiveTransformOperationD0Ev) +STUB( + "NOAI0W44R5Y", + _ZN7WebCore32ScrollingStateFrameScrollingNode33setScrollBehaviorForFixedElementsENS_30ScrollBehaviorForFixedElementsE) STUB("NOAMxY2EGS0", scePlayGoDialogGetStatus) +STUB( + "NOHASaS8bcU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE3endEv) +STUB("NOIkOvm4mfI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed4FeedEE5resetEv) +STUB("NOL3hrPcMVU", _ZN2GK9PlayerPSN14testConnectionEv) +STUB( + "NOPWPlcquxo", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEEiRNS2_10LibContextEPT_m) +STUB( + "NOQkvXHlThE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEE5resetEPS6_) +STUB("NOY+FOyu7fs", Java_java_awt_GnmImage_nativeSetDirectColorModelPixels) +STUB( + "NOZmz+4Pi7k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEC1Ev) +STUB("NOaB7a1PZl8", _ZN6Dinkum7threads21thread_resource_errorD1Ev) +STUB("NObsUCdW7IE", _ZN9Inspector21InspectorRuntimeAgentdlEPv) +STUB( + "NOfBZRER1+I", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEC1EPS8_) +STUB( + "NOkd9rOy3UY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEmmEv) +STUB("NOmLjKNQLdQ", _ZN3sce2Np9CppWebApi14SessionManager2V16Friend12setAccountIdERKm) +STUB("NOqm61upXl4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEC1ERKS7_) +STUB("NOsUmPti3g4", RSA_generate_key_ex) +STUB("NOu9itnXeX8", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18GameCustomDataItemEED1Ev) +STUB("NOukH+xMwcs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEC1ERS7_) +STUB("NOxmVOgCkpg", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getMixerPanLR) +STUB("NP1fS5Qz4iI", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEEdeEv) +STUB( + "NP3iI35cyfo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "NP3rkzV86tc", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEEC2ERKSB_) STUB("NP5gxDeYhIM", sceNetSyncWait) +STUB("NP9epR7FyMk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEE5resetEPS6_) +STUB( + "NPDV4JViIlo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEC2EPKS8_) +STUB( + "NPEDGH8cDos", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE5emptyEv) +STUB("NPIf8oAxOuM", WKPageSetAllowsRemoteInspection) +STUB("NPMt5bmtAuw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE3endEv) STUB("NPQwYFqi0bs", sceHmdGetFieldOfView) +STUB("NPR0FXwWrD8", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEED2Ev) +STUB( + "NPR8h5mMc8A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEEC2Ev) STUB("NPRRPNKDBN0", _sceUltSemaphoreOptParamInitialize) +STUB( + "NPRfjeLVxTE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE8capacityEv) +STUB("NPVjik59zT0", _ZN7WebCore9FrameView12isScrollableENS0_13ScrollabilityE) +STUB( + "NPYN89qO2Ks", + _ZN15AbstractStorage14YoutubeStorage7GetItemERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_4ItemEE) +STUB("NPZUCqnwWOc", rgctx_fetch_trampoline_rgctx_31) +STUB("NPa41C-81as", uregex_replaceAll_67) +STUB("NPbIhNzp7tY", _ZN7WebCore4IconD2Ev) STUB("NPhw0UXaNrk", sceNpSignalingTerminate) +STUB("NPm90V3xkv4", _ZN4Manx6Screen6heightEv) STUB("NPnv7qm0Bv8", sceAppInstUtilGetInstallProgress) +STUB( + "NPp-O2j8kDY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEEaSERKSA_) +STUB("NPr7arR8X0k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEED1Ev) STUB("NPrfVdMDoWI", sceIduUtilGetSettingInt) +STUB( + "NPt9IXmxXfY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEixEm) +STUB( + "NPvuvE+miI4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEE3getEv) +STUB( + "NPz48iZPmLg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEC2Ev) +STUB("NPzB4u7iNOw", sqlite3_column_decltype) +STUB( + "NQ4SAyyv9yk", + _ZN9Inspector18InspectorHeapAgent29dispatchGarbageCollectedEventENS_8Protocol4Heap17GarbageCollection4TypeEN3WTF7SecondsES6_) STUB("NQ5nJf7eKeE", sceFontGraphicsDrawRegionShape) +STUB("NQ81EZ7CL6w", _ZNKSt7codecvtIDic9_MbstatetE16do_always_noconvEv) +STUB("NQ8MHu1HB8E", _ZN12video_parser5vpcom6StringpLERKS1_) +STUB( + "NQB7JnLzVrY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE21intrusive_ptr_add_refEPS9_) STUB("NQIw7tzo0Ow", sceNpTusDeleteMultiSlotVariableAAsync) STUB("NQJ7AZW3ipk", sceNetCtlApCpStart) +STUB("NQVhUHqbPPY", il2cpp_register_log_callback) +STUB( + "NQW6QjEPUak", + _ZZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8_GetifldEPcRS3_S6_NSt5_IosbIiE9_FmtflagsERKSt6localeE4_Src) +STUB( + "NQWo-MPWqgg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEC2EPKS8_) +STUB("NQWr2E-ARbs", mono_aot_Sce_Vsh_Np_Pbtcjit_got) STUB("NQY2wMTV0ms", sceLoginMgrServerUpdateUserIdRalatedToPadUniqueId) +STUB( + "NQaixWG898Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEC2EPS6_PNS2_10LibContextE) +STUB("NQao9f52Vtc", _ZThn24_N7WebCore19MediaResourceLoaderD0Ev) +STUB( + "NQbkoX+0UJc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEEC1ERKSA_) +STUB("NQcS-Y0DyQ4", _ZN3JSC4Heap20fullActivityCallbackEv) +STUB("NQgf+kO3ZRg", _ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEE7popBackEv) +STUB("NQr8Sq8G19U", s18) +STUB("NQsVwrhhf1Q", _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEED1Ev) +STUB("NQvgMXcGmjs", _ZNK7WebCore24CoordinatedGraphicsLayer2idEv) +STUB( + "NQyzOBm1apc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) STUB("NR1J0N7L2xY", sceRtcTickAddDays) +STUB("NR6txoDIsrg", _ZN3JSC18ErrorHandlingScopeD2Ev) STUB("NRAwSG4sMSQ", sceBgftServiceDownloadRegisterTaskByStorage) +STUB("NRF4gBL1p9o", WKFormSubmissionListenerContinue) +STUB("NRFTfFBU180", udat_getCalendar_67) +STUB("NRH4YPmVa28", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEmmEv) +STUB( + "NRJf6iqrRTw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEC1Ev) +STUB("NRJt6i0oMUI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEED2Ev) +STUB("NRPEF7lw+Lk", _ZNK7WebCore17FrameLoaderClient25shouldLoadMediaElementURLERKN3WTF3URLE) +STUB("NRRDP1662D8", uregex_useAnchoringBounds_67) +STUB( + "NRUy9MCPBJI", + _ZN3WTF10ParkingLot21parkConditionallyImplEPKvRKNS_12ScopedLambdaIFbvEEERKNS3_IFvvEEERKNS_24TimeWithDynamicClockTypeE) +STUB( + "NRX8fDa7344", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB( + "NRZLFqOs-T4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEEC1ERSA_) +STUB("NRZcHxWQOsw", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V113SubtaskStatusEEC2Ev) STUB("NRe2Dtymlmk", sceFiosCacheFlushSync) +STUB("NRo0UojZnJY", __start__Zpreinit_array) +STUB("NRoSvM1VPm8", SSL_getSessionCache) +STUB("NRtszc6OYPQ", _ZN7WebCore14PluginDocument12pluginWidgetEv) +STUB("NRwbrebG1RI", _ZN7WebCore29PerspectiveTransformOperation6createERKNS_6LengthE) +STUB( + "NRz2l9gx6WI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEmmEi) +STUB( + "NS+E13bVVBY", + _ZN3sce7Toolkit2NP8Sessions9Interface4joinEPKNS1_20JoinNpSessionRequestEPNS1_9Utilities6FutureINS1_20NpSessionInformationEEEb) STUB("NS-XWAN9uoc", sceLncUtilForceKillLocalProcess) STUB("NS1sEhoj-B0", sceNpManagerIntGetParentalControlInfo) +STUB("NS2+OsvRn6c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V124RequestCooperativeResultEEC2EPS6_) +STUB("NS6vfc8F5qM", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetBoolean2Ev) +STUB( + "NS8-ZugESfE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB("NSAdITijwd0", _ZN3sce2np10JsonString3SetEPKc) STUB("NSH-C-OmoNI", sceGameUpdateTerminate) +STUB("NSHP+uUvvgQ", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEEmmEv) +STUB("NSJH9sxtgw4", mono_aot_Sce_Vsh_ProfileCachejit_got) +STUB("NSQ+9ZQvOZI", + _ZN3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform12setSessionIdEPKc) +STUB("NSSIE2FuBsA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEC1ERKS7_) +STUB("NSZr1FsBLzY", __tsan_atomic16_fetch_sub) +STUB("NSchQpAzJH8", _ZN3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer14unsetAccountIdEv) +STUB( + "NSgnzcPIWYY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEEC1ERSA_) +STUB( + "NSgp-JOgQFI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEED1Ev) +STUB( + "NSm+tycdbA4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEmmEv) +STUB("NSr2oCOPb9c", _ZN9Inspector15RemoteInspector12startEnabledE) +STUB( + "NSvsKSChyfk", + _ZN3sce2Np9CppWebApi14SessionManager2V131ResponsePlayerSessionInvitationC2EPNS1_6Common10LibContextE) STUB("NSw6bEcrtWo", sceKernelGetPagingStatsOfAllObjects) +STUB("NSyZkX1jPUw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEEC1ERS9_) +STUB("NT7QROKXFRY", _ZN7WebCore5Range11setEndAfterERNS_4NodeE) +STUB( + "NT8rjQc1zyI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEC2Ev) +STUB( + "NT949SpZaFg", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEEiRNS2_10LibContextEPT_m) +STUB("NTBsVHURcR4", _ZN3sce2Np9CppWebApi14SessionManager2V16Friend19unsetPlayerSessionsEv) +STUB( + "NTELx+nQzhw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEEdeEv) STUB("NTIbBpSH9ik", sceHmdReprojectionAddDisplayBuffer) +STUB( + "NTJ9fNerZSQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("NTK-RerXvZ4", WKWebsitePoliciesGetPopUpPolicy) +STUB( + "NTKHHUT8bT4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE8copyFromERKS9_) +STUB("NTLwhm+Wfk8", WKGeolocationManagerProviderDidFailToDeterminePositionWithErrorMessage) +STUB("NTNdYQluihk", __sys_resume_internal_hdd) +STUB( + "NTP1ywSOtmM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEC2EPKS8_) +STUB("NTPZ5GZIA6U", _ZN3sce2np3ipc17ServiceIpmiClient7ConnectEPKvm) STUB("NTPazlahrDs", sceCesRefersUcsProfileCp852) +STUB("NTUHXImziBk", _ZN3JSC16slowValidateCellEPNS_14JSGlobalObjectE) +STUB("NTV7JIcSG3s", _ZN7WebCore17JSDOMRectReadOnly14finishCreationERN3JSC2VME) +STUB("NTVC2fTE9Fc", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead21unsetCreatedTimestampEv) +STUB("NTVcGeQgj3g", _ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEE5eraseENS2_8IteratorIS4_EERS7_) +STUB("NTXEVsMy-bk", _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15Error10setMessageEPKc) +STUB("NTXrRhO8eHY", Java_com_sony_gemstack_org_dvb_application_AppProxyImpl_n_1stop) +STUB( + "NTY7MAqUV0k", + _ZN7WebCore17PageConsoleClient10screenshotEPN3JSC14JSGlobalObjectEON3WTF3RefIN9Inspector15ScriptArgumentsENS4_13DumbPtrTraitsIS7_EEEE) +STUB("NTZQvLHaS48", + _ZN8meta_gen11MsvPromoter17prepareUpdateModeEP22MsvPromoteInnerContextP19MsvStorageInterfacem) +STUB( + "NTcOTrw3OhU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEC2EPS8_) +STUB( + "NTd-bNSZ-WY", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB( + "NTd9jbKsKWQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEdeEv) +STUB("NTgfThqgbak", uset_addAllCodePoints_67) +STUB( + "NTjzmQQSCiU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEeqERKS9_) +STUB("NTk6ybedvh8", debug_init) +STUB( + "NTkKbgGqvEw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEE11release_refEv) +STUB("NTkdvODRVXA", kmq_unlink) +STUB("NTlX451IQBY", _ZN3JSC18GCActivityCallback11willCollectEv) +STUB( + "NTnZ6dEQ-xo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEmmEi) STUB("NTttBlD2Xbk", sceShellCoreUtilGetCrashReportResult) +STUB( + "NTuEbbLnmjw", + _ZN7WebCore11DisplayList23FillRectWithRoundedHoleC1ERKNS_9FloatRectERKNS_16FloatRoundedRectERKNS_5ColorE) +STUB("NTxYYqJAu5M", pR8) +STUB("NU+vqk55Ts4", monoeg_g_list_remove) +STUB("NU-T4QowTNA", _ZSt18_Xinvalid_argumentPKc) +STUB("NU1VKlqKDrA", _ZN3sce3Xml13AttributeListC1ERKS1_) STUB("NU3ckGHMFXo", sceNpCommerceDialogClose) +STUB( + "NU3hnL+BDoQ", + _ZN7WebCore22EmptyFrameLoaderClient20setMainDocumentErrorEPNS_14DocumentLoaderERKNS_13ResourceErrorE) +STUB( + "NU9kWmDTZvw", + _ZN3sce2Np9CppWebApi14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBody13setSpectatorsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_29RequestPlayerSessionSpectatorEEEEE) +STUB("NUGUbb-AhYQ", _ZNK3sce2Np9CppWebApi14SessionManager2V111GameSession6toJsonERNS_4Json5ValueEb) +STUB( + "NUKnIPTIUWs", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemProperties10initializeEPNS1_6Common10LibContextEPKcSA_NS6_12IntrusivePtrINS3_53PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEE) +STUB( + "NUNKijqVBLw", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ErrorResponseFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_5ErrorEEEPNS8_INS3_13ErrorResponseEEE) +STUB("NUNZTPajen8", ulocimp_toLanguageTag) +STUB("NUPyuyGnfpg", + _ZN7WebCore22EmptyFrameLoaderClient23cannotShowMIMETypeErrorERKNS_16ResourceResponseE) +STUB("NURZg4GSybE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEC2ERKS7_) +STUB("NUS5Kg6a7Ak", _ZN3sce7Toolkit2NP2V24Core8ResponseINS3_5EmptyEE19setCustomReturnCodeEi) +STUB( + "NUU662ZeQu4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEC2Ev) STUB("NUWqWguYcNQ", sceAudioInSetPortStatuses) +STUB("NUaLW57Xu7U", _ZN7WebCore12BlobDataItem11toEndOfFileE) +STUB("NUbq2aNGojo", curl_easy_init) +STUB( + "NUceqD7bn+U", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE11getResponseERS8_) STUB("NUeBrN7hzf0", sceImeDialogInit) STUB("NUkBGOZARi4", sceFiosTimeGetCurrent) +STUB("NUmwOMyRjl8", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_19ProductInfoDetailedEE10deallocateEPS3_m) +STUB("NUqTqq4FiBU", ucnv_cbToUWriteUChars_67) +STUB("NUqcZ7pzVuI", SSL_peek) +STUB("NUqwHobH5SY", _ZN7WebCore20TransformationMatrix7scale3dEddd) +STUB("NUrm6cC5TlU", WKPluginSiteDataManagerClearAllSiteData) +STUB("NUvrURzyxJE", _Ux86_64_strerror) +STUB( + "NUxnriYUuio", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUseraSERS5_) +STUB("NV-j5hMNhWA", mono_aot_System_Xmlunbox_trampoline_addresses) +STUB("NV1hReHpVgo", _ZN9Inspector28InspectorScriptProfilerAgentnwEmPv) +STUB( + "NV9bWnoea7A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEEaSERSB_) +STUB("NVCBWomXpcw", _ZTIPKDh) +STUB( + "NVCTjIsKKcs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE5clearEv) +STUB( + "NVCwHEK3LPQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "NVCzm04+M2Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEEaSERKS9_) STUB("NVDXiUesSbA", sceAjmBatchCancel) +STUB( + "NVEslIaQEm0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEC2Ev) STUB("NVITuK83Z7o", sceCameraSetProcessFocusByHandle) +STUB( + "NVOc2p2H2Lc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEE3getEv) +STUB( + "NVSjdgSVRwk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEmmEi) +STUB( + "NVUDGkZarEM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEEdeEv) +STUB( + "NVYOh4DGveo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEixEm) +STUB( + "NVYkAS3xcZI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEptEv) +STUB("NVadfnzQhHQ", exp) +STUB( + "NVbQxLyF5Tg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE5clearEv) +STUB( + "NViIl5EM44E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEmmEi) +STUB("NVjEy07nN2o", WKBundlePageIsSuspended) +STUB("NVkKQ0n1t8U", _ZN9Inspector24CanvasFrontendDispatcherdaEPv) +STUB("NVkvr2YnP8A", uprv_isNaN_67) +STUB("NVosi5pjeYc", _ZNK7WebCore17JSHTMLLinkElement7wrappedEv) +STUB( + "NVp775nrB1o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEC2Ev) +STUB( + "NVrBoFud5BM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEC2EPS8_) +STUB("NVsPBrf4TV8", _ZN7WebCore29DeprecatedCSSOMPrimitiveValue14setStringValueEtRKN3WTF6StringE) +STUB("NVuvsPgTXto", FT_Get_PFR_Advance) +STUB( + "NW+7OzWrPX0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEneERKS9_) STUB("NW+Hxkmylr4", scePerfPmcUmcSetCounter) +STUB("NW4U-4dzVIU", _ZN9Inspector21InjectedScriptManager22discardInjectedScriptsEv) +STUB("NW9BSFshygk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEED1Ev) STUB("NWAFbl1tF0E", sceIduUtilInitialize) +STUB("NWB-BVBCHxk", _ZN15AbstractStorage11LocalFolder13writeExternalESt10shared_ptrINS_7ContentEE) +STUB( + "NWCf+u4ODxo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE) STUB("NWCnYpBxYZw", sceVisionManagerApplyCalibrateHmdResult) +STUB( + "NWCvsASpC-A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE5clearEv) +STUB("NWIItqDdYTQ", _ZN3WTF20ConcurrentPtrHashSetD1Ev) +STUB("NWNqC6fUl9w", mono_trace_set_printerr_handler) +STUB( + "NWSZgHNylpw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEE7add_refEv) +STUB( + "NWWPFOWyK3E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEptEv) +STUB("NWYSfFwdCvI", WKContextTerminateServiceWorkerProcess) +STUB("NWZbcznrH4E", + _ZN9Inspector24TargetFrontendDispatcher26didCommitProvisionalTargetERKN3WTF6StringES4_) +STUB( + "NWbKvC-fDDw", + _ZN7WebCore26MessagePortChannelRegistry22takeAllMessagesForPortERKNS_21MessagePortIdentifierEON3WTF8FunctionIFvONS4_6VectorINS_23MessageWithMessagePortsELm0ENS4_15CrashOnOverflowELm16EEEONS5_IFvvEEEEEE) +STUB("NWdose11w3Y", _atan2f_f4) +STUB( + "NWgPn+Svnz4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEEC1Ev) +STUB("NWgz65NNNyo", _ZN3sce7Toolkit2NP2V27Session12Notification18InvitationReceivedC1Ev) +STUB("NWjpX2ZPOd4", _ZN7WebCore9HTMLNames16scrollamountAttrE) +STUB("NWkQuTKN66I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEC2ERKS7_) +STUB("NWmeobdEfhE", __sanitizer_unaligned_load64) +STUB( + "NWrJaFWaGAQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) STUB("NWtTN10cJzE", sceLibcHeapGetTraceInfo) STUB("NWtf77WCXJs", sceNpLookupNetSetTimeout) +STUB("NWwYyioNHuY", utext_next32) +STUB("NX97Y+Gvytw", ucnv_setFallback_67) +STUB("NXA-ZwQ-C-8", + _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi21ParameterToLeaveMatch13isInitializedEv) +STUB("NXKFbxr0xFI", WKContextConfigurationSetProcessSwapsOnWindowOpenWithOpener) +STUB("NXKsxT-x76M", _ZTSSt12codecvt_base) +STUB( + "NXM6+WxYzpk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEEcvbEv) +STUB( + "NXNkCLc8LRE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEplEm) STUB("NXRdaSk0GlI", sceCesRefersUcsProfileCp1258) +STUB("NXTsS4UWBbY", _ZN3WTF11Persistence7Encoder6encodeEb) +STUB( + "NXV0Xm4qQEs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEC2EPS6_PNS2_10LibContextE) +STUB("NXb7JT5Tswk", _ZThn8_N6WebKit17ChildProcessProxyD1Ev) +STUB( + "NXeaI-+8AdA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBodyC1EPNS1_6Common10LibContextE) +STUB( + "NXfzwIcsXiM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEED1Ev) +STUB( + "NXjLqAWR--M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEEcvbEv) +STUB("NXjNMHQVizI", + _ZN9Inspector22InspectorDebuggerAgent8didPauseERN3JSC9ExecStateENS1_7JSValueES4_) +STUB( + "NXpZL0G4Spw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "NXx1FRANL8g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEmmEv) +STUB( + "NY0+wFYh3DI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEaSERKS9_) +STUB("NY34yXxoq7Q", _ZN7WebCore7Element11offsetWidthEv) +STUB("NY4+MTKUyuM", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetAccountId2OnlineIdC1ERS5_) +STUB( + "NYCx2TU-+jM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("NYD1q3qp-FM", _ZNK7WebCore11CSSPageRule12selectorTextEv) +STUB( + "NYDfPNMMCXw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEEptEv) STUB("NYDsL9a0oEo", sceImeDicAddWord) +STUB( + "NYIdgQKy4fs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEED1Ev) +STUB("NYKHwjOfDj0", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEEppEi) +STUB( + "NYLgoVEDD2c", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEplEm) +STUB("NYNF8PwYuFI", _ZN3sce7Toolkit2NP2V210Tournament18OneVsOneTournamentC2ERKS4_) +STUB( + "NYOTZcvFdm8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE21intrusive_ptr_add_refEPS9_) +STUB("NYPjEbI1GIs", _ZN7WebCore9HTMLNames6imgTagE) +STUB("NYQSe+APp8U", png_set_tRNS_to_alpha) +STUB("NYS8X+sCnNI", delegate_virtual_invoke_imt_15) +STUB( + "NYXe+lldfh0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEED2Ev) +STUB( + "NYZmaDNh0jM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE5beginEv) +STUB( + "NYdAHLx0fgQ", + _ZN3sce2Np9CppWebApi7Matches2V113ErrorResponse8setErrorERKNS1_6Common12IntrusivePtrINS3_5ErrorEEE) +STUB( + "NYfV6QOpq94", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEE7add_refEv) +STUB("NYl0kNUtBJM", _ZN3sce7Toolkit2NP2V23TUS7Request12SetVariablesD2Ev) +STUB("NYsqV11YzEU", _ZN3sce7Toolkit2NP2V212EventsClient7Request9GetEventsC2Ev) +STUB("NYvWcpuMIv4", mono_aot_Sce_PlayStation_Imejit_code_start) +STUB( + "NYxVaKL2QpM", + _ZN7WebCore21SerializedScriptValueC1EON3WTF6VectorIhLm0ENS1_15CrashOnOverflowELm16EEESt10unique_ptrINS2_IN3JSC19ArrayBufferContentsELm0ES3_Lm16EEESt14default_deleteIS9_EE) +STUB( + "NZ-hqw09Xlg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE5beginEv) +STUB( + "NZ2HFbENJYM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEneERKS9_) +STUB("NZ3i39W4liI", _ZN7WebCore8SVGNames10radiusAttrE) +STUB( + "NZ6G0HKT-ac", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEEptEv) +STUB("NZMWDTSdPXM", _ZNK3sce3Xml3Dom8Document13getAttributesENS1_6NodeIdEPNS1_8NodeListE) +STUB("NZMf2UdVa-8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEC1ERKS7_) +STUB("NZNXLU+1aKY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V117InvitableUserTypeEEppEi) +STUB("NZRIo84yhgY", _ZN3WTF6Thread12getRegistersERNS_17PlatformRegistersE) +STUB( + "NZUDpJ3BReg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE5beginEv) +STUB("NZUMI66mbqg", delegate_virtual_invoke_29_p) +STUB( + "NZW5PD2-YQg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEE7add_refEv) STUB("NZWLG-imDlU", sceShellCoreUtilGetHidConfigName) +STUB("NZemRl2yal4", _ZN7WebCore13AXObjectCache11getOrCreateEPNS_4NodeE) +STUB( + "NZf1cTzVJc0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEEC2ERSA_) +STUB( + "NZiGys4j+Ew", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE8copyFromERKS9_) +STUB("NZjxIjwuSuQ", _ZNK7WebCore6Chrome4showEv) +STUB( + "NZoIm1F6Hc8", + _ZN7WebCore12EventHandler47handleKeyboardSelectionMovementForAccessibilityERNS_13KeyboardEventE) +STUB("NZpuVlNXIdI", if_nametoindex) +STUB("NZqOchN6k78", mono_method_header_get_num_clauses) STUB("NZu1Z2k14DM", sceAudioOut2LoContextSetAttributes) +STUB( + "NZwKANBDA1k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEEC2ERSA_) +STUB("NZzGCld59m4", mono_aot_System_Runtime_Extensionsunbox_trampoline_addresses) +STUB("Na+M1AcLjdw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEC1ERS7_) +STUB( + "Na-3osFAmR8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEE5resetEPS9_) +STUB("Na-iJFh1gZg", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V114ResultsVersionEEC1EPS6_) +STUB("Na07CVDc030", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V115FrequentlyMutedD1Ev) +STUB("Na1pumbat0U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEE5resetEPS6_) +STUB("Na3nVLeG-cU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEE7get_refEv) +STUB("Na9vQQ1mXXs", JVM_GetDeclaringClass) +STUB( + "NaCmgKItIgo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEED1Ev) +STUB( + "NaEifNruVcg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEppEv) +STUB("NaGc6KEsNxs", + _ZN7WebCore22throwArgumentTypeErrorERN3JSC14JSGlobalObjectERNS0_10ThrowScopeEjPKcS6_S6_S6_) +STUB( + "NaO0844ZpQE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEmmEv) +STUB( + "NaQ-e2QEBRs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("NaXbHLVlAsk", rgctx_fetch_trampoline_mrgctx_84) +STUB("NaYyo8flntU", + _ZN7WebCore20SVGPathStringBuilder6lineToERKNS_10FloatPointENS_18PathCoordinateModeE) +STUB("NaZ0m-8DO-w", _ZN3sce7Toolkit2NP2V212ActivityFeed7StoryIdC1Ev) +STUB( + "NaZRMdDqatk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE8copyFromERKS9_) +STUB("Naac4Bjq3es", _ZN7WebCore11MathMLNames11voffsetAttrE) +STUB("Nab6bIqxc84", _ZN7WebCore15FocusController9setActiveEb) +STUB( + "NabDZBC8mVc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE3endEv) +STUB( + "NalWW2AA3+o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEED1Ev) +STUB("Naoh3hA7F7g", _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequestD1Ev) +STUB( + "Navooa1v5WI", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V124BandwidthUpstreamMetrics20getStandardDeviationEv) +STUB("NawEAOCyvU0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEEppEi) +STUB("NawdcanSzD8", _ZN3JSC14JSGlobalObject4initERNS_2VME) +STUB( + "NayBflVMuEc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "NayPeKgfeXM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeaders21intrusive_ptr_add_refEPS5_) +STUB( + "Nb2cTa5osEc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE21intrusive_ptr_add_refEPS9_) +STUB("Nb51AlC1Bk8", _ZN7WebCore9HTMLNames13itemscopeAttrE) +STUB("Nb54SFRp7Mw", _ZN3sce3pss5orbis5video14VideoPlayerVcs21VideoCoreSetLoopRangeEmm) +STUB("NbA1zSCZ6dw", JVM_GetStackAccessControlContext) +STUB("NbAIGJRR+9c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEE7add_refEv) +STUB( + "NbHdHSXwuR0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE10setContextEPNS2_10LibContextE) +STUB("NbJPSHOrNEA", _ZNK7WebCore16HTMLVideoElement10videoWidthEv) +STUB("NbMwXYcno7g", WKPageIsPinnedToRightSide) +STUB( + "NbOC0kNuJj4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEC1EPS6_PNS2_10LibContextE) +STUB( + "NbYyhAPhggs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEppEi) STUB("NbafDOCadvM", scePerfTraceAmmEnable) +STUB("Nbc5iV32hr0", _ZN3sce2Np9CppWebApi6Common6VectorIlE5eraseENS2_13ConstIteratorIlEERS6_) +STUB( + "NbdAYfd1QTY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEC2EPS6_PNS2_10LibContextE) +STUB( + "NbgCL3B0kBw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEppEv) STUB("Nbn8bzYVDuk", sceBgftServiceIntDownloadDebugDeleteBgftEnvFile) +STUB("NbtiS8+eMPo", _ZN3JSC7Symbols31putByIdDirectPrivatePrivateNameE) +STUB("NbvQTSHt540", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_28ActivityFeedSharedVideoStoryEEC2Ev) STUB("NbxTfUKO184", sceHmdInternalSetIpdSettingEnableForSystemService) +STUB("Nc+fKRms9mY", utf8_nextCharSafeBody_67) +STUB( + "Nc-qAd4IyJQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEE5resetEPS9_) +STUB( + "Nc2VuqhVpXM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEEaSERSA_) +STUB("Nc4OHQvmIOM", _ZNK7WebCore20ResourceResponseBase6sourceEv) +STUB("Nc9lnu9tvfM", __asan_exp_load1) +STUB("NcAWoTAS4VY", _ZN3sce2Np9CppWebApi6Common13ConstIteratorImEC1EPm) +STUB("NcCsEd0v9bM", _ZN9Inspector26TimelineFrontendDispatchernaEmPv) +STUB( + "NcDhXVM8JI0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEC2Ev) +STUB( + "NcDm4TqmKuk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE4sizeEv) +STUB("NcKEZTQFsM4", _ZN3JSC15JSArrowFunction6s_infoE) +STUB("NcVtS5qj+Ns", _ZN3WTF31sixCharacterHashStringToIntegerEPKc) +STUB( + "NcWFbW3oAYk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEED1Ev) +STUB("NcXzutaTRe8", + _ZN9Inspector21InjectedScriptManager20createInjectedScriptERKN3WTF6StringEPN3JSC9ExecStateEi) +STUB( + "NcYTk2TjbqI", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi42ParameterToPutGameSessionsSearchAttributes12getsessionIdEv) +STUB("NcZqFTG-RBs", __fixunssfsi) +STUB("NcaU9NEf4hc", ucnvsel_open_67) STUB("NcaWUxfMNIQ", sceKernelMapNamedDirectMemory) +STUB("Ncel8t2Rrpc", _ZNK3sce4Json5Value8toStringERNS0_6StringE) +STUB( + "NckGnACZspM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEixEm) +STUB("Ncmk3NGNd5w", _ZN3NTF21ResourceRequestLogger9AdminPageD0Ev) +STUB( + "NcnC7S6s1F4", + _ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors27getValidationConstraintInfoEv) +STUB("NcnbHs2i-6U", + _ZN7WebCore24CoordinatedGraphicsLayer39tiledBackingStoreHasPendingTileCreationEv) +STUB( + "NcsV4oBwn4c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("NcuyC-lqbs4", _ZNK9Inspector15RemoteInspector6Client14browserVersionEv) +STUB("Ncv7ElzJi3A", _ZN3sce3pss4core9resources15ResourceManagerC1EPK11_MonoStringb) +STUB( + "Ncz63Ja6EEU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEC2ERKS7_) +STUB("Nd-Z62NLB0E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEEcvbEv) +STUB("Nd-u09VFSCA", sigdelset) +STUB( + "Nd20IMKj2WE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEE5resetEPS9_) +STUB("Nd2Y2X6oR18", _WCostate) STUB("Nd91WaWmG2w", sceNetResolverStartNtoa) +STUB( + "NdAMsBExv48", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "NdBqXtlmBY4", + _ZN7WebCore16ScriptController46executeUserAgentScriptInWorldIgnoringExceptionERNS_15DOMWrapperWorldERKN3WTF6StringEb) +STUB("NdGinrpcn5M", EVP_MD_CTX_destroy) +STUB( + "NdIyo16cHz4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEED1Ev) +STUB("NdKzlFl6lqs", _ZL34_sceLibcDeleteArrayWithSizeNothrowPvmRKSt9nothrow_t) +STUB("NdLMXCijWLs", _ZN12video_parser13cVideoPathMgvC2EPKc) +STUB("NdPPsuDC5ko", _ZN7WebCore11JSImageData9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("NdQZBWXlDKA", _ZN3sce7Toolkit2NP2V210Tournament12GenericEvent5resetEv) +STUB("NdSsA-n06g8", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEED2Ev) +STUB( + "NdTMO0v3JZY", + _ZN3sce7Toolkit2NP2V211UserProfile27getVerifiedAccountsForTitleERKNS3_7Request27GetVerifiedAccountsForTitleEPNS2_4Core8ResponseINS3_10NpProfilesEEE) +STUB("NdU-LyVKPZ4", _ZN7WebCore14StyleSheetList4itemEj) +STUB("NdWzfgKOb6k", _ZN12video_parser17cTsFFLHndlManager10initializeEv) +STUB( + "Ndce1d7+nl8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE21intrusive_ptr_add_refEPS7_) +STUB("Ndd5CAeDd4g", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEED1Ev) +STUB( + "NddPYa3v1P8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEC1EPS8_) +STUB("NddXgDF0hiQ", __tsan_atomic64_fetch_sub) +STUB("NdeDffcZ-30", _ZN10__cxxabiv129__pointer_to_member_type_infoD0Ev) +STUB( + "NdeXCLko2vU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "Ndiu+0av9SY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEE5resetEPS9_) +STUB("NdjHlwRuV08", il2cpp_gc_collect_a_little) +STUB( + "NdnI3VGyrdw", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC2ERKSA_) +STUB("NdsHawcRBNk", _ZNK3sce2Np9CppWebApi7Matches2V117ResponseMatchTeam13teamNameIsSetEv) +STUB("NdvAi34vV3g", freopen_s) +STUB("Ndvm8s28Gyc", cairo_fill) +STUB("NdwTujp8suw", _ZNK3sce2Np9CppWebApi6Common6VectorIfE8capacityEv) +STUB( + "NdweAY0f+E4", + _ZN3sce2Np9CppWebApi14SessionManager2V143UsersPlayerSessionsInvitationForReadFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_36UsersPlayerSessionsInvitationForReadEEE) +STUB( + "NdxBdJKKr-Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEE7add_refEv) +STUB( + "NdxgUhxWDhI", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersC1Ev) +STUB("Ndzcn-GaWbA", _ZNK3sce2Np9CppWebApi7Matches2V113ChildActivity11statusIsSetEv) +STUB("Ne1RmMt+qcY", _ZN7WebCore9HTMLNames17oncontextmenuAttrE) +STUB( + "Ne2N+4xal9I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("Ne3dsbalqmU", ucnv_resetFromUnicode_67) +STUB("Ne4O3r4CdjI", arch_test) +STUB("Ne6w9SgJp1A", mono_guid_to_string) +STUB("Ne8m91Q1Hts", _ZN7WebCore4Page25notifyToInjectUserScriptsEv) +STUB("NeBDtHVZg2Q", fuse_session_process) +STUB("NeBjCy2urKA", _ZN7WebCore12JSTimeRanges14finishCreationERN3JSC2VME) +STUB( + "NeDmLkJd-6g", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE4sizeEv) +STUB( + "NeFAPuc2Yrk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("NeFcuoEHnUo", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4RoomEED1Ev) +STUB("NeMAgSIPdzI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEC1Ev) +STUB( + "NeR-Lma9T3o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEED1Ev) +STUB("NeWnBQdUy2M", _ZN12video_parser13cVideoMetaVWG13getChapterNumERjPj) +STUB("NeYe5cZQXg8", _ZN3WTF11OSAllocator6commitEPvmbb) +STUB("NeZN3QWAx58", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging24GameDataMessageThumbnailEED1Ev) +STUB( + "NeZyJUz5fsk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEED2Ev) +STUB( + "NeeQtw8+OnU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEaSERS7_) +STUB("NegL0oldf78", _ZN7WebCore3URL24removeFragmentIdentifierEv) +STUB( + "Nehpdp3vT2Q", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging24GameDataMessageThumbnailEE19setCustomReturnCodeEi) +STUB("NeiFvKblpZM", _ZNSt13basic_filebufIwSt11char_traitsIwEE9pbackfailEi) +STUB("Nel-GFCUxPo", il2cpp_set_config_dir) +STUB("NemJZHYD8XU", mono_aot_Sce_Vsh_UserServiceWrapperjit_code_end) +STUB("NeopmYshD0U", _ZN3sce2np9WorkQueue7DestroyEv) STUB("Neqr3RjImvE", sceDevUsbTermHost) +STUB("NesIgTmfF0Q", bsearch) +STUB("NetEd5QBLRw", _ZN3WTF22FastBitVectorWordOwner10resizeSlowEm) STUB("NewD1IkVMeU", _sceLibcMspaceUnlock) +STUB("NeyR34Tm1Uk", ulist_resetList) +STUB("Nf-3KbWOjq8", mono_aot_Sce_Vsh_ShareGuideSceneunbox_trampoline_addresses) +STUB( + "Nf-OGV9Nx6I", + _ZN7WebCore14FrameSelection15revealSelectionENS_19SelectionRevealModeERKNS_15ScrollAlignmentENS_18RevealExtentOptionE) +STUB( + "Nf1GV4BEsgc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEmmEv) +STUB( + "Nf28AE79SCQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser28hasxPsnAcceptPlatformNamePs5Ev) +STUB( + "Nf3pbNXblvc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("Nf5A2l7psQU", Java_java_net_PlainSocketImpl_socketSetOption) +STUB( + "Nf9YCoNx08I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEED2Ev) +STUB("NfBil2N34BE", _ZN7WebCore9HTMLNames15onmousemoveAttrE) +STUB( + "NfCYt8JeNDw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEE21intrusive_ptr_add_refEPS7_) +STUB( + "NfCumQGInZo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEC2EPNS2_10LibContextE) +STUB("NfGO57hqUEw", ubrk_open) +STUB("NfHcA2Xq-E8", _ZN11GvMp4Parser6Common11Utf8ToUtf16ERKSsPSbIwSt11char_traitsIwESaIwEEi) +STUB("NfPblxnb4rw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEED2Ev) +STUB("NfQzhqChQqM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEC1ERKS7_) +STUB("NfSMc-E4OA0", WKImageGetSize) +STUB("NfSNgSBygmI", + _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse20getMatchEndTimestampEv) +STUB( + "NfUt4Qi5i84", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEEC2ERSA_) +STUB("NfVkg4yXRyA", __ubsan_handle_type_mismatch_v1_abort) STUB("NfZz19Zp+Xc", sceCtrlpPlayStart) +STUB("Nfev+xcWn9M", WKPreferencesSetPageCacheEnabled) +STUB( + "NfhVP6--vro", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB("NfhXX6LFmj8", _ZN3sce2np13RingBufMemory4dtorEv) +STUB( + "NfiXzLQlx7g", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_13WhoLikedStoryENS1_15AppSTLAllocatorIS5_EEEED1Ev) STUB("NfpZWHee0EA", sceUserServiceGetNotificationSettings_3) +STUB( + "NftlGiMvrgE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("NftpnkfNHrU", uspoof_check2UnicodeString_67) STUB("NfvOrNzy6sk", sceGnmInsertDingDongMarker) +STUB("Ng44JwRk03M", _ZN3sce2np10JsonNumber3SetEm) +STUB( + "Ng4qbgaZ+uY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("NgCYLj0lVYw", _ZN3WTF5sleepERKNS_24TimeWithDynamicClockTypeE) +STUB("NgRc1ZDtwUQ", _ZN7WebCore21BlobDataFileReferenceC2ERKN3WTF6StringE) +STUB( + "NgS7jQbnF2A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEC1EPNS2_10LibContextE) +STUB("NgTYaNYsSsk", _ZN9Inspector25NetworkFrontendDispatcher15webSocketClosedERKN3WTF6StringEd) +STUB("NgXAYab6u-Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEC1ERS7_) +STUB( + "NgXPyiUwwws", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEC1EPKS8_) STUB("NgbGlUcx6ug", sceDataTransferTargetRequestPrepareTransferProgress) +STUB("Ngehyt8t0PI", _ZN3sce7Toolkit2NP2V212NetworkUtils13NetStateBasicC1Ev) +STUB("Ngfl7wTF7M0", _ZN15AbstractStorage7ServiceD2Ev) +STUB( + "NghKsVhFqJw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEixEm) STUB("NghWEUXp1qM", sceAgcDriverGetResourceBaseAddressAndSizeInBytes) +STUB("Nglhvmk-fvk", + _ZNK3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBody14getRulesetNameEv) +STUB("NgmVnrLUHaI", monoeg_g_clear_error) +STUB( + "Ngp0XMpWkmA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("NgxfVG1k2Vg", _ZNK3JSC9JSPromise9isHandledERNS_2VME) +STUB( + "Nh4K5K448Q4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEEC1Ev) +STUB("Nh4PUcHge7E", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia10BroadcastsEE3setEv) +STUB( + "Nh4jAnG6-UI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEEptEv) +STUB("Nh7Selwn6nk", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku10unsetLabelEv) +STUB( + "Nh7hHt1OEzU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEEcvbEv) STUB("Nh8pdKLdMJY", sceBdSchedConfigure) +STUB("Nh9Q94rfbaI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEE11get_deleterEv) +STUB( + "NhDcICYJo24", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorI16SceNpTusVariableNS1_15AppSTLAllocatorIS5_EEEED1Ev) STUB("NhFkj3B10qM", sceVideoArbitrationAcceptEvent) STUB("NhL5qID2iho", sceKernelAddCpumodeEvent) +STUB( + "NhMBtG1EGsk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB( + "NhMPUOWSyXA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "NhN6gF6HAWc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE5emptyEv) +STUB("NhNE1t4tsVU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12RoomPingTimeEED2Ev) STUB("NhPkY3V8E+8", sceVrTrackerSetExtendedMode) +STUB("NhQT1n5Czfs", _ZN3sce2np8JsonNullC1EP14SceNpAllocator) +STUB( + "NhRJ-KoPw8A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEE11release_refEv) +STUB("NhU+N-QCz9w", WKPreferencesSetJavaScriptCanAccessClipboard) +STUB("NhaGXEDsWEc", _ZN4IPMI4impl11SessionImplD0Ev) STUB("NhaQPBB7F3k", sceDebugGetUlObjectList) +STUB( + "Nheej61w4rQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEE7get_refEv) +STUB("NhfGzIsyZ7g", Java_java_lang_ClassLoader_findBootstrapClass) +STUB( + "NhfUs-pauQU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEE11get_deleterEv) +STUB( + "NhgLpXyt8Xw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "Nhhh+DoV3Vk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "Nhn04bm2zXM", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V110Reputation10setPerGameERKNS1_6Common12IntrusivePtrINS3_20ReputationPropertiesEEE) +STUB("NhpspxdjEKU", _nanosleep) +STUB( + "NhrwmhFfe1o", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V324ValidationConstraintInfo6toJsonERNS_4Json5ValueEb) +STUB("Nhv+GGUIKPI", + _ZN9Inspector22InspectorDebuggerAgent26setPauseForInternalScriptsERN3WTF6StringEb) +STUB( + "Nhw0sVuNmAA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEC2Ev) +STUB( + "NhxFtJ18nPQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEE5resetEPS6_) STUB("Nhxy2NmQhbs", sceNpManagerIntGetUserIdByOfflineAccountId) +STUB("NhyOMK5FxAk", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS7TusDataEE3getEv) +STUB("Nhyhn2JgQ1M", _ZN9Inspector22HeapFrontendDispatchernwEm) +STUB( + "NhytvQCcnPQ", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEEiRNS2_10LibContextEPT_m) STUB("Ni6j+eh9Hlk", sceShellUIUtilLaunchByUri) +STUB("Ni79apw1wDg", + _ZN7WebCore18JSHTMLVideoElement14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB("Ni9JZIREOv4", + Java_com_sony_bdjstack_org_bluray_ui_FrameAccurateAnimationClock_getMicroSeconds) +STUB("NiE8eucIQuY", + _ZN3sce2Np9CppWebApi11Matchmaking2V127ListUserTicketsResponseBody12unsetTicketsEv) +STUB( + "NiFQZhR1sCs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEaSERS7_) +STUB( + "NiKFj9p3bx8", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("NiLTVySxE+M", _ZTVN7WebCore14SocketProviderE) STUB("NiTGNLkBc-Q", sceUserServiceGetDeletedUserInfo) +STUB( + "NiV9OwU4DeE", + _ZN7WebCore15UserInputBridge21handleMousePressEventERKNS_18PlatformMouseEventENS_11InputSourceE) +STUB("NiXh3NYq+EI", + _ZN15AbstractStorage15FacebookStorage11SetMetadataEPN23sceMetadataReaderWriter8MetadataE) +STUB( + "Nip+FRfvDHU", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi25changePlayerSessionLeaderEiRKNS4_36ParameterToChangePlayerSessionLeaderERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB( + "Nis6DXAybyA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEE3getEv) +STUB( + "Nit-8fKhoe4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEE11release_refEv) STUB("NiwMhCbg764", sceUserServiceSetImePredictiveTextEnabled) +STUB( + "Niy0vw1naTw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEppEv) +STUB("Niz5Bj08+f8", _ZNK7WebCore16HTMLLabelElement4formEv) +STUB("NizKX0O0WL4", WKPreferencesSetShowsURLsInToolTipsEnabled) +STUB("NizpTB4K3bs", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product13unsetAgeLimitEv) +STUB("Nj-+klMfmSA", WKContextConfigurationSetDiskCacheDirectory) STUB("Nj-ZUVOVAvc", sceFontGraphicsSetupScaling) +STUB("Nj40sbvN+pk", _ZN9Inspector27DOMBackendDispatcherHandlerD0Ev) +STUB( + "Nj60YOBLjGk", + _ZN7WebCore22EmptyFrameLoaderClient22dispatchWillSubmitFormERNS_9FormStateEON3WTF8FunctionIFvvEEE) +STUB("NjA4aGGrW4k", _ZN9Inspector22InspectorDebuggerAgent20setBreakpointsActiveERN3WTF6StringEb) +STUB( + "NjAN1RmAwIo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE5beginEv) +STUB( + "NjDbsTHlHRM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEdeEv) STUB("NjEMsEjXlTY", sceUserServiceGetPbtcTzOffset) +STUB( + "NjGniKKlrjM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEC1EPS8_) +STUB( + "NjHQcv0QWkY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEEC2Ev) +STUB( + "NjICQg-x7m8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("NjJfVHJL2Gg", _ZNSt12length_errorD2Ev) +STUB( + "NjL75kO9dHA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE7popBackEv) +STUB( + "NjSRsYUYphY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEaSERKS7_) +STUB( + "NjT93-KPrpc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "NjU0EXN-lVw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE8copyFromERKS9_) +STUB( + "Njas+XM6eDQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEC2Ev) +STUB("Njb9k8yeloc", _ZN9Inspector22InspectorDebuggerAgent26cancelPauseOnNextStatementEv) STUB("NjgVxHRHAQA", sceVdecwrapSyncDecode) STUB("NjhK36GfEGQ", sceUserServiceGetShareDailymotionAccessToken) +STUB("NjhW50dNxss", WKRenderLayerGetBackingStoreMemoryEstimate) STUB("NjhuM7DQT08", sceHttpCacheClear) +STUB("Njk1vr6oNSQ", _ZN3JSC24getCalculatedDisplayNameERNS_2VMEPNS_8JSObjectE) +STUB("NjxgeprW2uw", _ZN7WebCore18ParsedContentRangeC1ERKN3WTF6StringE) +STUB("NjxyTgN7dI4", rgctx_fetch_trampoline_mrgctx_12_p) +STUB("Nk-XIvILlUQ", _ZN9Inspector24WorkerFrontendDispatcher13workerCreatedERKN3WTF6StringES4_S4_) +STUB("Nk0yHh5qzes", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE4sizeEv) +STUB("Nk4Tg0Ei-ok", _ZThn120_NK7WebCore16HTMLMediaElement6volumeEv) +STUB("Nk4cSaWHON0", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V110UpdateModeEEC1EPS6_) +STUB( + "Nk5dOL7R3rs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "Nk5eLqHjvZU", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot13setaccountIdsEPKc) +STUB("NkDv+zQRTXw", WKContextSetJavaScriptConfigurationFileEnabled) +STUB( + "NkE0m7BtqUY", + _ZN3sce2Np9CppWebApi14SessionManager2V129PlayerSessionSpectatorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_22PlayerSessionSpectatorEEE) +STUB("NkEITXscsR4", WKRenderObjectGetElementClassNames) +STUB("NkFH5mAgFjE", _ZNK7WebCore11MediaPlayer25renderingCanBeAcceleratedEv) STUB("NkJwDzKmIlw", sceAvPlayerClose) +STUB( + "NkMn8SdEeJg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "NkWILw8VjSA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEmmEi) +STUB("NkX2o0d4s4g", _ZN3sce7Toolkit2NP2V211SharedMedia6VideosC1Ev) +STUB("NkYzPGeuIVI", uhash_hashUnicodeString) +STUB("NkZzz2hl0e0", CRYPTO_set_add_lock_callback) +STUB("Nka8F65ISv8", + _ZNK3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator11getPlatformEv) +STUB( + "NkdF8DH6S9Y", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesC2EPNS1_6Common10LibContextE) +STUB("Nke5i4JrRps", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE7reserveEi) +STUB( + "NkoP7GabqIg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEaSERS7_) +STUB( + "NkpJ6zsg-ag", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody19unsetNpServiceLabelEv) +STUB("NkqH32IMG2A", WKBundlePageCreateSnapshotInDocumentCoordinates) +STUB("NkrVkicZ0kg", mono_aot_System_ServiceModelunwind_info) +STUB( + "Nktl8DSlKZU", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_15CategoryInfoSubENS2_IS4_EEEE9constructEPS6_RKS6_) +STUB("NkwTho+Hhpc", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Wordfilter16SanitizedCommentEEC2Ev) +STUB("NkxjxXuggvE", mono_aot_Sce_PlayStation_HighLevel_UI2Platformunbox_trampolines) +STUB( + "Nl04JOaCw-o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB("Nl2rJlORyIc", + _ZN7WebCore14ScrollableArea24setScrollbarOverlayStyleENS_21ScrollbarOverlayStyleE) +STUB("Nl6si1CfINw", _ZNSt13basic_filebufIcSt11char_traitsIcEE9underflowEv) +STUB("NlCqp-s1Btc", + _ZN7WebCore19MediaResourceLoaderC1ERNS_8DocumentERNS_16HTMLMediaElementERKN3WTF6StringE) +STUB( + "NlGyvYDyL7Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEC1EPS8_) +STUB("NlH6gh-b+Og", pio4_hi) +STUB( + "NlHNv-gS9PQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEmmEi) +STUB( + "NlJrVWZHUZk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("NlK6x9Fl+Xw", mono_aot_Sce_Vsh_Db_Sharedjit_code_end) +STUB("NlMX-au+A9M", _ZN9Inspector35DOMDebuggerBackendDispatcherHandlerC2ERKS0_) STUB("NlNECoHFua0", sceBackupRestoreUtilGetRequiredSize) STUB("NlO5Qlhjkng", sceFontCreateGraphicsServiceWithEdition) +STUB( + "NlQkxEcVfRU", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot10initializeEPNS1_6Common10LibContextEi) +STUB("NlS2R9vXK0o", WKPreferencesGetCaptureVideoInGPUProcessEnabled) +STUB("NlT0kn6pE0I", _ZN3sce7Toolkit2NP2V24Core5EmptyD1Ev) +STUB("NlTtYet81fQ", isobmf_memmanager_set) +STUB("NlVZCg6WmYM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEC2EPS8_) +STUB( + "NlXWVHo+9lI", + _ZN7WebCore14DocumentLoader22sendCSPViolationReportEON3WTF3URLEONS1_3RefINS_8FormDataENS1_13DumbPtrTraitsIS5_EEEE) STUB("NlYNCN-SYps", sceRegMgrPrivateStorageIsNvsChange) +STUB( + "NlYQtxyE098", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEEaSERSA_) +STUB("NlZPkTwdapU", uloc_isRightToLeft) +STUB("Nlaiw-rj+WI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V511ContentTypeEEaSERKS7_) +STUB("NlcMaGX2z24", coil_wait_semaphore) +STUB( + "NldKUjNYILc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) STUB("Nlev7Lg8k3A", sceNetInit) +STUB("NlgA2fMtxl4", _ZTIe) +STUB( + "Nm-4OqGCdV8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEEC2ERKSA_) +STUB("Nm-U+BAjCkY", JSStringRelease) +STUB("Nm2BhAwYNFk", + _ZN3sce3Job10JobManager27calculateRequiredMemorySizeEPKNS1_21MemorySizeQueryParamsE) +STUB( + "Nm7eB5LxLrk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEEC1ERKSA_) +STUB( + "NmAY7pz2gac", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEC2Ev) +STUB( + "NmDmI+evBn8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEED2Ev) +STUB( + "NmIH8TbXLeQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("NmJS8seltks", __diff_D2A) +STUB("NmN7-XSVkU0", WKPreferencesSetMockCaptureDevicesEnabled) STUB("NmPRRG5HVj4", sceMusicFwSkipNext) +STUB( + "NmUGa703Uz4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE28getResponseInformationOptionEv) +STUB( + "NmVyf91ZMdI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEdeEv) +STUB("Nmezc1Lh7TQ", malloc_get_malloc_state) +STUB("NmjMsdP9qyo", il2cpp_free) +STUB("Nmmm-TDfzg4", _ZN7WebCore8SVGNames18stroke_linecapAttrE) +STUB( + "NmnFKPe6jXQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEE3getEv) +STUB("NmoY1elGnu4", _ZN7WebCore20ISOOriginalFormatBoxC2ERKS0_) +STUB( + "Nmp0wBy2+vU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEplEm) +STUB( + "NmrbKXvsq9U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEED2Ev) +STUB("Nmtr628eA3A", _ZSt14_Random_devicev) +STUB("Nmy96vm1DwM", + _ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchStatusRequest19npServiceLabelIsSetEv) +STUB("NmyFwB4EyXc", _ZN3sce7Toolkit2NP2V29Messaging7Request20GameDataMessageImageD2Ev) +STUB("NmznqxwfKLg", _ZN3JSC7Symbols37asyncGeneratorQueueDequeuePrivateNameE) +STUB( + "Nn+8Io1qLtM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEEC2ERSA_) +STUB("Nn3ckjFKSZ8", _ZN3sce7Toolkit2NP2V212EventsClient9EventDataD2Ev) +STUB("Nn5J4GREzec", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEEC2Ev) +STUB( + "Nn6WccbC6Jc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEeqERKS9_) +STUB("Nn6eNKOy98M", WKPageSetRubberBandsAtTop) +STUB("Nn6wuDLGtSQ", + _ZN3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsersaSERS5_) STUB("Nn7zKwnA5q0", scePlayGoGetToDoList) +STUB("Nn9MKwOzC8w", _ZN7WebCore14SchemeRegistry34registerURLSchemeAsDisplayIsolatedERKN3WTF6StringE) +STUB("NnBSAe-M3Dg", ustrcase_map_67) +STUB( + "NnGJX86iuT4", + _ZN3sce2Np9CppWebApi14SessionManager2V134ResponsePlayerSessionPlayerFactory7destroyEPNS3_27ResponsePlayerSessionPlayerE) +STUB("NnK6dStQJ04", Java_com_sony_bdjstack_javax_media_controls_SoundManager_getGainDB) STUB("NnKhlMJtIsI", sceAmprAmmSubmitCommandBuffer3) +STUB( + "NnN5ZrxhZCM", + _ZN7WebCore20ResourceLoadObserver42setRequestStorageAccessUnderOpenerCallbackEON3WTF8FunctionIFvRKNS1_6StringEmS5_bEEE) +STUB("NnNaWa16OvE", _ZNSt11range_errorD1Ev) +STUB("NnO3pHt2WH4", _ZN12video_parser5vpcom4ReadE) +STUB("NnQyH6b78XQ", _ZNK7WebCore12ChromeClient26createScrollingCoordinatorERNS_4PageE) STUB("NnRKjf+hxW4", sceHmdInternalSetLedOn) +STUB("NnRO7tgv4Ok", _ZN9Inspector34ApplicationCacheFrontendDispatchernwEmPv) +STUB( + "NnZsIiXgZMg", + _ZN3sce2Np9CppWebApi11Matchmaking2V116SubmitterFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_9SubmitterEEE) +STUB("Nnc7Lw5Nl9Q", rgctx_fetch_trampoline_mrgctx_91_p) +STUB("Nnfu0ZOKRkY", + _ZN3sce3pss5orbis5input12InputManager18SetAnalogStickModeENS2_15AnalogStickModeE) +STUB( + "NnlHLH6KDS0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEC2EPS6_PNS2_10LibContextE) +STUB( + "NnlbhK8J1Vo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE5beginEv) +STUB( + "NnnKX8TLhoY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEC2EPNS2_10LibContextE) +STUB( + "Nnt9MKPMIY4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("NntlsAHoYXg", _ZN12video_parser17cVideoOperatorM4vC2EPKc) +STUB( + "NnvQm+ggSAE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEEC2Ev) STUB("NnvYm9PFJiw", sceUserServiceGetPbtcMondayDuration) +STUB( + "NnxAr9XY1sw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEE7get_refEv) +STUB("NnxzMmD8XJo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEptEv) +STUB("NnyxquMLrYg", uprv_malloc) +STUB("No2407W5Jes", _ZNK7WebCore21BackForwardController18canGoBackOrForwardEi) +STUB("No7x9VUQX28", _ZN3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreateD1Ev) +STUB("NoAtTlpb3tg", WKBundleAddUserStyleSheet) +STUB("NoFT7fKF+5Y", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getBoolean2Ev) +STUB( + "NoKR+1IGa4k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEmmEi) +STUB( + "NoSMkgO7H9U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE5emptyEv) STUB("NoTstVRO3qE", sceSdecResetSwHevc) +STUB( + "NoVHMh626eM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEppEv) +STUB( + "NoY8KIHlJkE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEneERKS9_) +STUB( + "NoYECcESkGc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEE6assignEPS6_PFvS8_EPNS2_10LibContextE) STUB("NobVwD8qcQY", sceNpTrophySystemDebugLockTrophy) +STUB( + "NogZSPF5xTI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEE5resetEPS9_) +STUB( + "NoiExufv9vw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE5clearEv) +STUB("NoiQq1S05ZU", rgctx_fetch_trampoline_mrgctx_30_p) +STUB("Noj9PsJrsa8", wmemmove) +STUB("NomnFPQmVmY", _ZN15AbstractStorage10YoutubeAPI8termHttpEv) +STUB( + "NoqWHz7E0y0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEE11get_deleterEv) +STUB("NoqkpEtFXFc", _ZN3sce7Toolkit2NP2V212ActivityFeed14PlayedWithFeedD1Ev) +STUB("NorEV0Cl9IA", fuse_req_interrupted) +STUB("NorsOA02n5Q", Java_sun_awt_GnmUtils_getPrimaryEngine) STUB("NoxZswTJHP0", sceFsInitMountTrophyDataOpt) +STUB( + "NoyANF1TYmg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("Np-E0FZrqkQ", WKAXObjectCopyURL) +STUB("Np7OSJ3McmY", + _ZNK3sce7Toolkit2NP15AppSTLAllocatorISt6vectorI16SceNpTusVariableNS2_IS4_EEEE8max_sizeEv) +STUB("NpBAZ0MA8l8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEE3getEv) +STUB( + "NpEKChYyGeY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEEC1ERKSB_) STUB("NpEYVDOyjRk", sceUserServiceGetGlsBroadcastersComment) +STUB("NpEbHxYwXyk", _ZN3sce7Toolkit2NP2V27NpUtils12Notification15UserStateChangeC2Ev) +STUB("NpFXqFyIxOY", _ZN7WebCore21MediaRecorderProviderC2Ev) +STUB( + "NpFygFoRTWo", + _ZN3sce2Np9CppWebApi14SessionManager2V130PostPlayerSessionsResponseBody8fromJsonERKNS_4Json5ValueE) +STUB("NpHpKPWNh1M", WKPreferencesSetDiagnosticLoggingEnabled) +STUB("NpLBpgVV7PU", munlockall) +STUB( + "NpLGWilTpac", + _ZN3sce2Np9CppWebApi6Common23UpDownStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC1ERKS8_) +STUB( + "NpNRfx3niN4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEE7get_refEv) +STUB( + "NpQNkpOnBBQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEEC1Ev) +STUB("NpR-8-saS2E", ubidi_getReorderingOptions_67) STUB("NpTcFtaQ-0E", sceNetCtlApUnregisterCallback) +STUB("NpZgHPIJ-Kw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEC1EPS8_) STUB("NpcegFLFQpg", sceLibSecureCryptographyMessagePaddingSize) STUB("NpfpcLf5PYM", scePthreadBarrierattrSetpshared) +STUB( + "NphVpgnyN24", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE8copyFromERKS9_) STUB("NpktddOeWoM", sceDeci4hDrfpChstat) +STUB("NpoueTI6ifE", _ZN6WebKit17ChildProcessProxy14fromConnectionEPN7CoreIPC10ConnectionE) +STUB("NpqX-u41+kA", _ZN7WebCore12DataTransferD1Ev) +STUB("NpyvCyD8wCE", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationProperties12setWelcomingERKi) +STUB("Nq+JpyOhocI", mono_aot_Microsoft_CSharpjit_code_end) +STUB( + "Nq0I6oiHOUs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE3endEv) +STUB( + "Nq0gp5m4byo", + _ZN3sce2Np9CppWebApi13InGameCatalog2V532ContentInteractiveElementFactory7destroyEPNS3_25ContentInteractiveElementE) +STUB("NqAbR6zFA64", WKPageLoadURLRequest) STUB("NqCD8n5dq+Y", sceUpsrvUpdateCheckDoCheckSystemWithPupInfo) +STUB("NqFgikJQYcg", utext_openReplaceable_67) +STUB("NqMgmxSA1rc", _ZNSt17bad_function_callD2Ev) +STUB("NqPxpqLl8W0", _ZN3sce7Toolkit2NP2V28Commerce10Containers8deepCopyERKS4_) STUB("NqTjmoN0lj8", sceClAudiodecCreateDecoder) +STUB("NqUcrCZ7+f4", _ZN7WebCore36ISOProtectionSystemSpecificHeaderBoxC1ERKS0_) +STUB("NqV8ddwLaiY", JSStringGetUTF8CString) +STUB("NqV8zMoVdAs", _ZN3WTF9MediaTime11invalidTimeEv) +STUB("NqaOL3bONv0", ucnv_toUnicode_59) +STUB( + "Nqc8HjHHjIo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEC2EPS8_) +STUB("NqcXH1RdRfk", _ZN3sce7Toolkit2NP2V28Matching7Request8JoinRoom23MIN_SESSION_INDEX_VALUEE) +STUB( + "NqdYdSAguzE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE3endEv) STUB("NqkTzemliC0", sceGameLiveStreamingApplySocialFeedbackMessageFilter) +STUB("Nqla0jO15A8", _ZN7WebCore6Editor5pasteENS0_20FromMenuOrKeyBindingE) +STUB( + "NqoGDM7dSPs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE5beginEv) +STUB("Nqq1m6xzNmw", _ZN7WebCore11MathMLNames5mnTagE) +STUB( + "NquJT5wnDI8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEC2Ev) +STUB( + "Nqw71l5GxLQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEED2Ev) +STUB("Nqx7xm6ZKm0", _ZN3JSC14JSRunLoopTimer13timeUntilFireEv) STUB("NqxMleeTiLs", sceRegMgrGetBin) +STUB("Nr+GiZ0tGAk", _ZTSSt8ios_base) STUB("Nr273YqaAvo", sceDebugIpmiGetServerWaitingThreadList) +STUB("Nr2RJUhjrx4", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE7reserveEi) +STUB("Nr6Z+mAq23A", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEE3getEv) +STUB("NrDMe8zeAg0", _ZN3sce7Toolkit2NP2V27Ranking7Request15GetRangeOfRanks9MAX_RANGEE) +STUB("NrEX6bDyN58", _ZN7WebCore6Editor24advanceToNextMisspellingEb) +STUB("NrIDEB1y-e0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEC2ERS7_) +STUB("NrKtvW0gC-Q", _ZNK7WebCore8Document28characterSetWithUTF8FallbackEv) +STUB( + "NrLLQkdYaYI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEaSERKS7_) +STUB("NrLOPMOGt20", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE5beginEv) +STUB("NrOueQY3scw", + _ZN7WebCore18JSHTMLMediaElement15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "NrSeqxW-S2k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEEC2ERSA_) +STUB( + "NrSfumzZ+Og", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEC2Ev) +STUB("NrT3OAlCaEk", _ZTVN15AbstractStorage14YoutubeServiceE) +STUB("NrX7r94WRds", makeUlpNtfHdrNoFragment) +STUB("NrYgf5Tu5HU", mono_btls_x509_verify_param_set_mono_flags) +STUB( + "NrYssbbs2ZI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("NrZz0ZgQrao", SSL_recvPending) +STUB("NrrqPgLMESA", _ZN3sce7Toolkit2NP2V212EventsClient10EventColorD2Ev) +STUB( + "Nrz5TF4WIck", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeaders21intrusive_ptr_add_refEPS5_) +STUB("Ns+Q-IBcpuQ", _ZThn136_NK7WebCore16HTMLMediaElement5mutedEv) +STUB("Ns0SeI2eKaU", WKURLResponseGetTypeID) +STUB("Ns6xlJ7gKek", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEE11release_refEv) +STUB("Ns8YtHWBLyk", _ZN7WebCore19ResourceRequestBase11setPriorityENS_20ResourceLoadPriorityE) +STUB("Ns9a-LjOcDw", FTA_Support_Renderer_Smooth_Lcdv) +STUB("NsCAJ5a7zzM", _ZL14report_failure19_Unwind_Reason_CodePN10__cxxabiv115__cxa_exceptionE) +STUB("NsFZqlmmZ9E", cairo_matrix_transform_distance) +STUB( + "NsGIw0R2afs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("NsJycqh1KFs", WKProtectionSpaceGetIsProxy) +STUB( + "NsKINpvDCiw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEC1EPS6_PNS2_10LibContextE) +STUB("NsLC7fQfV5k", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEEdeEv) +STUB("NsMX6HW4wcI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEptEv) +STUB("NsNG602kFss", uloc_countAvailable_67) +STUB("NsRv+sKcZ6Y", WKViewIsFullScreen) +STUB( + "NsYEVzZjF7M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEE5resetEPS6_) +STUB( + "NsfSXK7ymJI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEED1Ev) +STUB( + "NshkLgovd8w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("Nsle20GAXvE", _ZN3WTF7CStringC1EPKcm) +STUB( + "NsrRRecrE64", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEixEm) +STUB("NsvNBGoyTLo", _ZNK7WebCore17HTMLCanvasElement17displayListAsTextEj) +STUB( + "NsznnDBw024", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEED2Ev) +STUB("Nt-NqCbSe9c", _ZN3WTF15AutomaticThreadD1Ev) STUB("Nt1runsPVJc", sceNpTusAddAndGetVariableAVUser) +STUB("Nt6eyVKm+Z4", + _ZNKSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewPK2tmcc) +STUB("Nt7Cij4dVU4", __wrap_mmap) +STUB("NtBJpphF4R0", _ZNK7WebCore22CSSAnimationController33allowsNewAnimationsWhileSuspendedEv) +STUB( + "NtCeYezgydI", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEEiRNS2_10LibContextEPT_m) +STUB("NtGKjmV+ib4", il2cpp_image_get_name) +STUB( + "NtGRV98a104", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEEcvbEv) +STUB("NtGXIiSuvCc", _ZN13MsvMetaEditor19getModificationTimeEP2tm) STUB("NtHCBzSqxgo", sceLoginMgrServerTerminate) +STUB("NtJRF4ZYnGQ", __asan_report_store4) STUB("NtOA+0RApBg", sceKernelIccGetUSBPowerState) +STUB( + "NtOgzZSfvFI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEED1Ev) STUB("NtXRa3dRzU0", sceVideodec2GetPictureInfo) +STUB( + "NtXgpKSWPFc", + _ZN3sce2Np9CppWebApi7Matches2V126RequestInGameRosterFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_19RequestInGameRosterEEE) +STUB("NtZqoErk7n4", _ZN7WebCore11JSMediaList9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("Ntg7gSs99PY", _ZNSt13_Num_int_base10is_boundedE) +STUB("NtjY-lZG4ss", ubrk_setText) +STUB("NtlWM0ZU2wY", _ZNK7WebCore11MediaPlayer27languageOfPrimaryAudioTrackEv) +STUB( + "Nto+wUVBOe8", + _ZN3sce2Np9CppWebApi14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBody16unsetCustomData1Ev) +STUB( + "NtoFiNABIqU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("NtqD4Q0vUUI", _ZN10__cxxabiv120__function_type_infoD2Ev) +STUB("NtsHoOq2ao4", _ZThn8_N3sce2np9LocalFile4ReadEPNS0_6HandleEPvmPm) +STUB("NtsiAMxyp2E", _ZN7WebCore14CredentialBaseC1ERKN3WTF6StringES4_NS_21CredentialPersistenceE) +STUB( + "NtvNmQSZpC4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEEC1Ev) +STUB( + "Ntx1WPVD5sg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEC1EPNS2_10LibContextE) +STUB("Nu3OmacPbeA", _ZN7WebCore9FetchBody12fromFormDataERNS_8FormDataE) STUB("NuEjeN8WCBA", sceHmdInternal3dAudioSendData) +STUB("NuG3IeWktro", mono_get_exception_argument) +STUB( + "NuI7pZAsi7Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEE11release_refEv) STUB("NuJT-nmTqrI", sceMusicPlayerServicePreviousTrack) STUB("NuTNdlvrugI", sceVideoStreamingEngineDestroyMediaKeySystemAccess) +STUB("NuVWQhHZ26o", udatpg_getDecimal_67) +STUB("NuWJOndFtDI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEED1Ev) +STUB( + "NuX12WFvMBA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEC2Ev) +STUB( + "NuXYSpTO+6A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEcvbEv) +STUB( + "NuZCBrkoV0s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEE5resetEPS9_) +STUB( + "Nuaa0qKXFS0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEplEm) STUB("NuanhoyflKA", sceNetApctlClearEvent) +STUB("NudbP5i-PSE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116JoinableUserTypeEEmmEv) +STUB("NugBItcC7YY", _ZN7WebCore25computeViewportAttributesENS_17ViewportArgumentsEiiifNS_7IntSizeE) STUB("Nuhv71YjC+g", sceVisionManagerGetResultOfFindUser) +STUB("Nuil-LF3EYQ", WKContextGetSharedProcessContext) +STUB("Nunf53TmlV4", JNU_ThrowByNameWithLastError) +STUB("NuydofHcR1w", feof_unlocked) +STUB("Nv-vzUQgeMU", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V116TaskAvailabilityEEmmEi) +STUB( + "Nv1OTth+FWg", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities13setaccountIdsENS1_6Common12IntrusivePtrINS7_6VectorINS7_6StringEEEEE) STUB("Nv5oO486pSE", sceBgftServiceDownloadFindTaskByContentId) +STUB( + "Nv7ql98hdqI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEEC1Ev) STUB("Nv8c-Kb+DUM", sceVideoOutIsOutputSupported) +STUB("Nv9RRgkwewY", WKWebsiteDataStoreConfigurationCopyWebSQLDatabaseDirectory) +STUB("NvAUu9pfWvA", utrie2_freeze_67) +STUB( + "NvBiUZDPnXI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEppEv) +STUB("NvD7vqlu22E", _ZN3WTF10StringImpl17utf8ForCharactersEPKDsjNS_14ConversionModeE) +STUB("NvF3fC7a568", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEE11get_deleterEv) +STUB( + "NvHP8v5kqk0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEdeEv) STUB("NvHjFkx2rnU", sceNpTusGetMultiUserDataStatus) +STUB( + "NvHkiVcRu34", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "NvMxyjVu1t8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEC1ERS7_) +STUB("NvP5JGUWBpk", ucsdet_detectAll_67) STUB("NvRYDns8Ydc", sceKernelSuspendProcess) +STUB("NvSKi+AG++g", _ZN15AbstractStorage14TwitterService13SearchStorageEv) +STUB( + "NvT2S8j5fiQ", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariable31setaddAndGetVariableRequestBodyENS1_6Common12IntrusivePtrINS3_28AddAndGetVariableRequestBodyEEE) +STUB( + "NvV--345al4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEC1Ev) +STUB("NvVqG8w2D7c", _ZN7WebCore18PrewarmInformationaSERKS0_) +STUB( + "NvkdVxxbZLs", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi42ParameterToPutGameSessionsSearchAttributesD1Ev) +STUB("NvkkaV8h5vk", ucol_strcollIter_67) +STUB("NvpjH1FzwVc", _ZNSt9basic_iosIwSt11char_traitsIwEE5clearEj) +STUB("NvqV7zrTtVA", _ZN3sce7Toolkit2NP2V29Challenge13ChallengeDataC2Ev) +STUB( + "NvtO9gwPi2I", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB("Nvu+-KKztN4", _ZN3WTF13printInternalERNS_11PrintStreamEf) +STUB( + "NvwS+4TPIqE", + _ZN7WebCore21JSCSSStyleDeclaration18getOwnPropertySlotEPN3JSC8JSObjectEPNS1_14JSGlobalObjectENS1_12PropertyNameERNS1_12PropertySlotE) +STUB( + "NvwWqxYNrJ0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEE11release_refEv) +STUB( + "NvwiiY1ep6o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEppEv) +STUB("Nvwr7UfPzfE", WKWebsiteDataStoreSetResourceLoadStatisticsToSameSiteStrictCookiesForTesting) +STUB( + "NvywrFkIkKs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE6resizeEj) STUB("Nvzn9mIoIUw", sceDeci4hDrfpClose) +STUB("Nw0ilSm8FxY", FcCharSetDestroy) +STUB("Nw0ioCQ9tbc", BN_hex2bn) +STUB( + "Nw4Fzd9xlEA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("Nw7Khobn4bY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEEptEv) +STUB("NwADCEaYt9g", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11ProductInfoEEC2ERKS4_) +STUB("NwKqfiRr+5w", u_UCharsToChars_67) +STUB("NwL-F14BzCo", _ZSt9use_facetISt10moneypunctIcLb1EEERKT_RKSt6locale) +STUB("NwMHWqfNEmg", _ZNK3WTF6String8toDoubleEPb) STUB("NwOHMRM2Ppw", sceFiosFileExistsSync) +STUB( + "NwPFgee1YpI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB( + "NwQFFoAkox0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE5clearEv) +STUB("NwRNxHDt8jE", _ZN10Deprecated11ScriptValueC1ERN3JSC2VMENS1_7JSValueE) +STUB("NwSOm8XB7h0", uspoof_setAllowedUnicodeSet_67) STUB("NwT2R5lo8P8", sceSystemServiceGetAppIdOfRunningBigApp) +STUB("NwUvd0AYGDI", _ZN3JSC6JSCell11analyzeHeapEPS0_RNS_12HeapAnalyzerE) +STUB("NwVVIm9MVzo", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13SessionMemberEEC2Ev) STUB("NwWU0vvhPTc", sceSpPthreadAttrSetschedparam) +STUB( + "Nwav2KlgNnU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("Nwcnlf2Mcz4", _ZNK7WebCore24CoordinatedGraphicsLayer15fixedToViewportEv) +STUB("Nwd5R6GbF3g", uhash_deleteHashtable) +STUB( + "NweuwADAEuk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEED1Ev) +STUB( + "NwkrtMiUM9w", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("NwnJ8AZrQ7o", ShConstructCompiler) +STUB("Nwnql7q5-Qw", t1_cmap_expert_class_rec) +STUB( + "Nwp+BkprK4A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEE11release_refEv) +STUB("NwvfHnrBpFg", _ZN3JSC7Symbols35InspectorInstrumentationPrivateNameE) STUB("NwwkHSVFYBA", sceRegMgrDrvGetUpdateCnt) +STUB("NwwwHqq66Gk", _ZN3sce7Toolkit2NP2V210Tournament18OneVsOneRankResult8deepCopyERKS4_) STUB("Nx+FM+bz0ZQ", sceNpManagerIntBindByJson) STUB("Nx-5J9GrUcE", _sceNpFreeImpl) +STUB("Nx-F5v0-qU8", asinl) +STUB( + "Nx2eWZAFiHg", + _ZN3sce2Np9CppWebApi7Matches2V134ResponseTeamMemberStatisticFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_27ResponseTeamMemberStatisticEEE) +STUB( + "Nx3lheRKr+I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE7popBackEv) +STUB("Nx4k-7yySd0", _ZN7WebCore12GCController13deleteAllCodeEN3JSC19DeleteAllCodeEffortE) +STUB( + "Nx5I0XcEDN0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEEaSERSA_) +STUB("Nx5tOvL4edo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEED1Ev) +STUB("Nx5tez4siL4", _ZN3sce4Json5Value13referUIntegerEv) +STUB("Nx8n4sut9ZI", _ZN3JSC17JSInternalPromise4thenEPNS_9ExecStateEPNS_10JSFunctionES4_) +STUB( + "Nx98J393ujE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE8copyFromERKS9_) +STUB( + "Nx9grG24Mk0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEEC1ERKSA_) STUB("NxEI1KByvCI", sceRtcParseDateTime) +STUB( + "NxFsimLnkSU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("NxGqPyUKd7U", _ZN7WebCore16MIMETypeRegistry26getSupportedMediaMIMETypesEv) +STUB("NxInt3qBDpE", mono_domain_get_friendly_name) +STUB("NxKYXPb-CHA", _ZNK7WebCore13HitTestResult16altDisplayStringEv) +STUB( + "NxOoznzWYcI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEC1ERKS7_) +STUB("NxRWB2-tnmU", _ZN3sce7Toolkit2NP2V27Session13SessionMemberD1Ev) +STUB("NxRzfIUoR1M", YGNodeStyleGetMargin) STUB("NxSdL9t-KXk", sceAvPlayerStartEx) +STUB( + "NxW6c83jofk", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeOnlineId2AccountIdBatch5getidEv) +STUB("NxYHZp+nx9Q", _ZTVN7WebCore11DisplayList4SaveE) +STUB("NxZPqCG8Qbk", fuse_fs_write) +STUB("NxcBoTOpcOM", ucal_set_67) +STUB( + "NxiiCijYj6w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE7popBackEv) +STUB("NxjPl1n6gM8", _ZN7WebCore11MathMLNames12mscarriesTagE) +STUB("NxpL9p+1VzE", _ZN3JSC7Symbols30requestImportModulePrivateNameE) +STUB( + "NxqdOjeEiZQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE6resizeEj) +STUB("Nxr4dKZoP3A", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEEcvbEv) +STUB( + "NxuI4CjyKK4", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions18hasjoinStateFilterEv) +STUB("NxuvrmHgR3Q", + _ZNK3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsers13isInitializedEv) +STUB( + "Nxy9mn1erJk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable18setLastUpdatedUserERKNS1_6Common12IntrusivePtrINS3_15LastUpdatedUserEEE) +STUB("Ny+M+-DRRwQ", mono_aot_Sce_PlayStation_Coreplt) +STUB( + "Ny4rLmDDxtg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("Ny9Bf1O0zpE", _ZTVN7WebCore11DisplayList23FillRectWithRoundedHoleE) +STUB( + "NyDQr1M2ePA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEeqERKS9_) +STUB( + "NyEljYHRpi0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "NyGNLKPz8LE", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("NyGp+zj5fio", _ZN3sce7Toolkit2NP2V26Friend12Notification15BlocklistUpdateC2ERKS5_) STUB("NyHpSM1kzEg", sceClNetPoolCreate) +STUB("NyJXNUqkQUU", + _ZN3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayer16unsetCustomData1Ev) +STUB( + "NyLDv4dPdv8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE3endEv) +STUB( + "NyLcloCieOU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEixEm) +STUB( + "NyMWW9gApq8", + _ZN7WebCore22TextureMapperAnimationC2ERKN3WTF6StringERKNS_17KeyframeValueListERKNS_9FloatSizeERKNS_9AnimationEbNS1_13MonotonicTimeENS1_7SecondsENS0_14AnimationStateE) +STUB("NyMuSAsPS6M", _ZZSt9MakefacetISt5ctypeIwESt8_LocinfoERT_T0_E3buf) +STUB( + "NyNDXNze7cY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB("NyQ1zvjWDBQ", _ZN7WebCore27TranslateTransformOperationD0Ev) +STUB("NyW8HUDoNiw", ucnv_getCanonicalName_59) +STUB("NyXPIq7y1w4", _ZN7WebCore9HTMLNames6delTagE) +STUB("NyZx5EzS4-U", _ZN7WebCore4toJSERNS_12VoidCallbackE) +STUB("NyeruO1f0vI", mono_create_jump_trampoline) +STUB( + "NykNF4E1DDI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "Nyl9Y9b1RPg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEED1Ev) +STUB( + "NylBy9V1MQk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEC1EPS6_PNS2_10LibContextE) +STUB("Nyn0ihCdeFw", mono_aot_Sce_Vsh_VideoFramework_Platformunbox_trampolines) +STUB( + "NyvGkBH0LFc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEEC2ERSA_) +STUB( + "NywRfpP34N4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE6resizeEj) +STUB("NywdIDwBgIo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V511ContentTypeEEC1EPS6_) +STUB("NywmpjNOeGI", _ZN7WebCore7Element20bindingsOffsetParentEv) +STUB( + "NyxQlyGbQU8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEaSERS7_) +STUB("NyyYy9owM7s", _ZN7WebCore9HTMLNames12onseekedAttrE) +STUB("NyyZRfv2B3M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEC1ERS7_) +STUB( + "Nz-7pqCLhMM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEC1EPNS2_10LibContextE) STUB("Nz-ZE7ur32I", sceNpMatching2DestroyContext) +STUB("Nz-fKkdoNBE", _ZN3sce7Toolkit2NP13SessionMemberC2Ev) +STUB( + "Nz0fKV5lYUY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEC1EPS8_) +STUB( + "Nz3+y0tHFMs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("Nz7J62MvgQs", ungetwc) +STUB("Nz8gFpD8DdY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V114SearchOperatorEEaSERKS7_) +STUB( + "NzB4quhU+74", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEmmEv) +STUB( + "NzD+IZ8FnMo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEED1Ev) +STUB("NzKd6vwJdpo", __ubsan_handle_mul_overflow_abort) +STUB("NzME1DayPd4", _ZN3sce7Toolkit2NP2V24Core5EmptyD2Ev) +STUB( + "NzRERO+6l48", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEmmEi) +STUB("NzUX4yf7ccQ", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEED1Ev) +STUB( + "NzWvj80M-LM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEEptEv) +STUB("NzaN0+09Q+c", Java_com_sun_havi_ui_FreeTypeFontFace_pGetFontFamily) +STUB("NzalMywlwTU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed12SharedVideosEEC2Ev) +STUB("NzfmwRJMXGg", unum_applyPattern_67) +STUB( + "Nzg0qNnXV5M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEaSERKS9_) STUB("Nzg8TGr4tpQ", sceDeci4hDrfpCreate) +STUB( + "NzhSDPQausw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "Nzjgw3Xmyss", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEppEi) +STUB("NzjyulmBj0k", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEED1Ev) +STUB( + "NznCdoOhdQk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEixEm) STUB("Nzr1l05aG2k", sceBgftServiceIntGetTaskInfoValueInt) STUB("Nzs7G5rtqmA", sceFsUnbindApplication) +STUB( + "NzwfZXrMeXg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEED1Ev) +STUB("O+-Cio3L0Uk", + _ZNK3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse6toJsonERNS_4Json5ValueEb) +STUB( + "O+0DHMjWE6I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEE7get_refEv) +STUB( + "O+0Qp6WH6Jg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEeqERKS9_) +STUB( + "O+5GCiCEOSA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEmmEi) +STUB("O+61EvEsRfM", __ubsan_handle_negate_overflow) +STUB( + "O+6xrsVf66M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "O+BhK+Q2scE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("O+Bv-zodKLw", __muldf3) +STUB("O+DBCe0EXGM", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE3endEv) +STUB("O+FeLkOM7w0", + _ZN3sce2np9HttpTrans4InitERKNS0_12HttpTemplateEPNS0_18HttpConnectionPoolEiPKcS8_tS8_m) +STUB("O+JTn8Dwan8", CA_MGMT_reorderChain) +STUB("O+JwO5JPIW4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEEC2EPNS2_10LibContextE) +STUB("O+MKIQG6G6M", _ZN7WebCore24DeprecatedGlobalSettings24setUsesOverlayScrollbarsEb) +STUB( + "O+QwbG9uci4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE10setContextEPNS2_10LibContextE) +STUB("O+Rk6bioKMY", _ZN4IPMI4impl10ServerImpl13createSessionEPPNS_7SessionEPvS5_) +STUB("O+SSFahV2nI", Java_sun_awt_GnmUtils_postKeyEvent) +STUB("O+V8aQNoq4g", mono_aot_Sce_Vsh_MyGameListunbox_trampoline_addresses) +STUB("O+VoB8m5MXA", _ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody10setCommentEPKc) +STUB("O+asNfpe7qQ", _ZN3sce7Toolkit2NP2V24Core7Request21NpToolkitCallbackInfoC1Ev) +STUB("O+bf0qU+mvc", _ZN12video_parser17cVideoProfilerMp4C2EPNS_18cMp4FFLHndlManagerE) +STUB( + "O+bftBcO7l4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEEC1ERSA_) +STUB("O+e+IS12924", _ZN7WebCore13MediaStrategyC2Ev) +STUB("O+fbNsSxg4g", mono_aot_Sce_Vsh_DbPreparationWrapperunbox_trampoline_addresses) +STUB("O+hU3FfT1Ps", _ZN24ScePssDecoderAtrac_orbis19BufferedDecodeChunkEPKhjRjPsjS2_S2_) +STUB( + "O+i3iXz225w", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEE3getEv) +STUB( + "O+jxTmjUCFw", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12setInteger10ERKi) +STUB( + "O+qi2rQEM7c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEmmEi) +STUB("O+qpxyoYh7Q", mono_string_hash) +STUB("O+sosGII4Is", mono_reflection_get_custom_attrs) +STUB( + "O+vEFUtMWok", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEmmEv) +STUB( + "O+yMRk556lw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE8capacityEv) STUB("O-2TTjhWw10", sceNpPushIntGetConnectionState) +STUB("O-3ISZkWmqY", ucnv_getStandardName) +STUB("O-3tGO0pmBM", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEED2Ev) +STUB("O-5YTdPcBXw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V124RequestCooperativeResultEEneERKS7_) STUB("O-7nHKgcNSQ", sceGnmGetCoredumpProtectionFaultTimestamp) +STUB( + "O-Dh6208rww", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEneERKS9_) +STUB("O-Ge-E8ZmKg", mono_aot_Sce_Vsh_Np_Pbtcunbox_trampolines) +STUB( + "O-LYXwZ4Mv0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEEaSERSA_) +STUB("O-LhCTj5bqM", __got_plt_start) +STUB( + "O-P35ma+ht8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE21intrusive_ptr_add_refEPS9_) STUB("O-Q3I-ZthsY", sceAppInstUtilAppUnInstallForRemote) +STUB("O-QWnOr1bH8", _ZN3JSC14JSGlobalObject7destroyEPNS_6JSCellE) +STUB("O-VDfGLU7x0", jpeg_idct_ifast) +STUB("O-XrdtYIqdY", _ZN7WebCore11JSImageData6s_infoE) +STUB("O-ZI7tPijow", utrace) +STUB( + "O-a085gJxDY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEC2Ev) +STUB("O-d+-FROcZk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE5beginEv) +STUB( + "O-fW3bUQ3Ao", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayer9terminateEv) +STUB("O-hEvSnv2o4", __sys_is_development_mode) +STUB( + "O-luFK8hQqc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEEC1ERSA_) +STUB("O-mPWWK7-Zo", _ZNSt15basic_streambufIwSt11char_traitsIwEE9underflowEv) +STUB( + "O-mrsnNqVSI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE8pushBackERKS8_) +STUB( + "O-vHrfHbWhY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEneERKS9_) +STUB( + "O-wwcbiyrvA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("O-xKH2IM6-o", _ZN25MmsFileUpdaterFsOperationD0Ev) +STUB("O-yD-vQbaEE", _ZN7WebCore12PrintContext16computedPageSizeENS_9FloatSizeENS_9RectEdgesIfEE) +STUB("O02W1w+o6SQ", _ZN7WebCore28InspectorFrontendClientLocal13showResourcesEv) +STUB( + "O06XknCI53c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEC2Ev) +STUB("O07DufTIoyo", at_thread_exit_mutex) +STUB( + "O08W795It+s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEaSERS7_) +STUB("O0Bti1rW6eM", mono_aot_System_Coreplt) +STUB("O0EG+VLus-I", _ZN3JSC2VM6createENS_8HeapTypeEPN3WTF7RunLoopE) +STUB("O0HKvHEni4A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEdeEv) +STUB("O0LfokyVHKY", mono_domain_unload) +STUB( + "O0Lhr+o6tCQ", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser9hasfieldsEv) +STUB("O0Nl4aaCceQ", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_skipToPlayListMark) +STUB( + "O0QXINt0CE0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEEC2Ev) STUB("O0S96YnD04U", sceGnmGetResourceName) +STUB( + "O0St2xPoin4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "O0WtWFyCrvk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("O0YiYsUaleQ", WKOpenPanelResultListenerCancel) +STUB( + "O0biU3IOMzQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEE11release_refEv) +STUB("O0fI61Q4Gm8", mono_aot_Sce_PlayStation_Orbisjit_got) +STUB("O0fWAnaqyX8", _ZN13MsvMetaEditor15SwapUTF16EndianEPwPKwi) +STUB( + "O0j0ClGCg3Q", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEEC1ERKSF_) +STUB("O0j9L0-HMM4", _ZN3sce7Toolkit2NP2V29Challenge7Request13SendChallengeD1Ev) STUB("O0mtfoE5Cek", sceUserServiceGetVibrationEnabled) +STUB( + "O0owSkBTI+o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEC1Ev) +STUB("O0pcTMxA38I", __tsan_atomic32_load) +STUB( + "O0rVDeAY-Qs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEC1EPKS8_) +STUB("O0tH0+3G4GU", _ZN3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer12setAccountIdEPKc) +STUB("O0u43HQhnAE", _ZN9Inspector20InjectedScriptModuleD1Ev) STUB("O1+7tMw8oIo", scePsmMountDirectory) +STUB("O12-uwOjxUY", mono_btls_ssl_ctx_set_verify_param) +STUB( + "O13xmJlJQ2s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEE11get_deleterEv) +STUB( + "O14Keym1h2U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEEC1EPS4_PFvS6_EPNS2_10LibContextE) +STUB("O172A7JvUxE", _ZN7WebCore15AffineTransformC2Ev) STUB("O19gIiIute4", sceMatUnmapMemory) +STUB("O1AvlQU33pI", _ZN3sce2np5MutexC1Ev) +STUB("O1Djg3YeTLU", sqlite3_get_autocommit) +STUB( + "O1Dtwu9R9ME", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEC2EPS8_) +STUB( + "O1E-dt6aAZI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEC1Ev) +STUB("O1N7Y2ilplo", fuse_session_exited) +STUB("O1O7B4TwnfQ", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities26GetUsersActivitiesResponseD1Ev) +STUB( + "O1TvvhgJzAI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "O1VW4WkdGr8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEC1Ev) +STUB( + "O1WpwwWWtUE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEE7get_refEv) +STUB("O1Xix43qmBs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEEeqERKS7_) +STUB( + "O1dAUcUPsOg", + _ZN3sce2Np9CppWebApi7Matches2V126ResponseMatchPlayerFactory6createEPNS1_6Common10LibContextEPKcNS3_10PlayerTypeEbPNS5_12IntrusivePtrINS3_19ResponseMatchPlayerEEE) +STUB("O1eMKYxVlTs", ucnv_toUnicode) +STUB("O1ecX4iuwO8", mono_config_parse) +STUB( + "O1f8pjeyqMs", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10getString3Ev) +STUB("O1hO8MlVK2I", _ZN3sce2np18HttpConnectionPool13GetConnectionERKNS0_12HttpTemplateEPKcS6_tPi) +STUB("O1i2y1YXwew", ENGINE_init) +STUB("O1lQ2+do5r4", _ZN4IPMI6Client6ConfigC1Ev) STUB("O1nURsxyYmk", sceUserServiceGetGlsCameraTransparency) +STUB("O1uwoqazS2A", _ZN3sce4Json12MemAllocatorD1Ev) +STUB("O2555v+m930", __tsan_write8) +STUB("O26IVm7mg78", mono_aot_Sce_Vsh_CloudClientjit_got) +STUB("O29yxu+Ryc0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17SetGameDataResultEE5resetEv) +STUB("O2BqIB6Lx44", WKViewSetPageScaleFactor) +STUB("O2CzojXKt+Y", Java_java_net_PlainSocketImpl_socketCreate) +STUB("O2FhzBmFTEk", _ZN3JSC9JSPromise15rejectAsHandledEPNS_14JSGlobalObjectEPNS_9ExceptionE) +STUB("O2MUM522wd4", _ZN7WebCore15AffineTransformC2Edddddd) +STUB("O2NMJeJjx9E", _ZN3JSC2VM19sourceCodeSpaceSlowEv) +STUB("O2W8UiBdLWk", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V18Variable24lastUpdatedDateTimeIsSetEv) +STUB("O2WCv5FPz1c", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament6EventsEE12deepCopyFromERS7_) +STUB("O2XMxxTJU8w", WKPageDidDenyPointerLock) +STUB("O2dvtjs5sWU", WKPlugInInformationReplacementObscuredKey) +STUB( + "O2feFoNGn2o", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEeqERKS9_) +STUB("O2mP3Fu1QUo", g_slist_free) +STUB("O2p7K6EmzhY", _ZNK3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap15isRecycledIsSetEv) STUB("O2rgVi8YyOg", sceUsbStorageDialogTerminate) STUB("O2t1Dm4eMig", sceNpSnsDailymotionDialogOpen) +STUB("O2wxIdbMcMQ", + _ZGVZNSt13basic_filebufIwSt11char_traitsIwEE5_InitEP7__sFILENS2_7_InitflEE7_Stinit) +STUB( + "O3-Ogg4SUWM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "O31MgcpH0q4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEdeEv) +STUB( + "O3CLygs4lPY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) STUB("O3FM2WXIJaI", sceAudioOutChangeAppModuleState) STUB("O3HjB2izk9o", sceVisionManagerGetResultOfFindFace) +STUB( + "O3KXrVEuHTU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "O3MJnKnW7Gw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEC1ERKS7_) +STUB("O3OzglNHPlU", ubidi_getMaxValue_67) +STUB( + "O3SJavDnt7M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEE5resetEPS9_) +STUB("O3YLX2pzow4", _ZNK7WebCore18AdClickAttribution13urlForTestingERKN3WTF3URLE) +STUB( + "O3c2vssz+nI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEaSERKS7_) +STUB( + "O3du3YcB2hw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE5beginEv) STUB("O3f1sLMWRvs", sceAudiodecCreateDecoder) +STUB( + "O3fO3fpNhNE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEC1ERKS7_) STUB("O3irWUQ2s-g", sceSystemServiceEnablePersonalEyeToEyeDistanceSetting) +STUB( + "O3yj0ZUpNHc", + _ZN9Inspector25DatabaseBackendDispatcher10executeSQLElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("O3zT1gO1ZNM", u_isWhitespace) +STUB("O3zsJKHPpNk", _ZN12video_parser5vpcom3rtc21GetCurrentNetworkTickEPm) +STUB( + "O40DEaVirhI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEEaSERSA_) STUB("O42ZlBvIPMM", sceNpAsmClientGetServiceBaseUrl) +STUB( + "O43meBkokSo", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEEC1ERKSC_) +STUB( + "O45f70qQ1rs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEneERKS9_) +STUB("O45k4G7xU28", _ZNK3WTF8JSONImpl5Value4typeEv) +STUB("O48cBQ3esqw", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEEcvbEv) +STUB("O4Hp2kw9q4U", mono_aot_Sce_Vsh_SessionInvitationunbox_trampolines_end) +STUB( + "O4JnrYhtn68", + _ZN7WebCore21ComplexTextController14ComplexTextRunC2ERKN3WTF6VectorINS_9FloatSizeELm0ENS2_15CrashOnOverflowELm16ENS2_10FastMallocEEERKNS3_INS_10FloatPointELm0ES5_Lm16ES6_EERKNS3_ItLm0ES5_Lm16ES6_EERKNS3_IjLm0ES5_Lm16ES6_EES4_RKNS_4FontEPKDsjjjjb) +STUB("O4L+0oCN9zA", _FSinh) STUB("O4LAoN2b7y4", ScePsmMonoStringChars) +STUB( + "O4LOr9QpGhE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEC1EPS6_PNS2_10LibContextE) +STUB("O4LYGcm5vsU", mono_get_exception_argument_null) STUB("O4Lg9Y3gYFg", ScePsmMonoRuntimeQuit) +STUB( + "O4NlYjpY16c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEEC1Ev) +STUB("O4PQrbyLS7k", _ZNK7WebCore13KeyboardEvent8charCodeEv) +STUB("O4PdREOwMNg", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V114ResultsVersionEEppEi) +STUB("O4Tp-v1p3tc", rgctx_fetch_trampoline_mrgctx_61) +STUB("O4WyTyZBkUA", _ZN12video_parser5vpcom8datetime8DateTime11time_formatE) +STUB( + "O4YGr9Vcnno", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEaSERKS7_) +STUB("O4ZJfw-mmKg", _ZN7WebCore24FrameDestructionObserver14frameDestroyedEv) +STUB( + "O4j0dTeiLf0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEE7add_refEv) +STUB("O4j79wmZzSw", mono_thread_detach_if_exiting) +STUB("O4mPool-pow", _ZNSt10filesystem7_ResizeEPKcm) +STUB( + "O4t74-yuCkY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEEcvbEv) +STUB( + "O4tMT-OwghM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE5clearEv) +STUB("O4tvCPW+ezE", YGNodeStyleGetMinWidth) +STUB("O4uuDAmh9Jk", xmlGetDocEntity) STUB("O4x1B7aXRYE", sceSystemServiceIsEyeToEyeDistanceAdjusted) +STUB("O50HlhgEXZE", _ZNK3JSC8Debugger30hasHandlerForExceptionCallbackEv) +STUB("O51Z4cnLYDk", _ZN9Inspector20InspectorTargetAgent13targetCreatedERNS_15InspectorTargetE) +STUB( + "O51iiM+JRHg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE21intrusive_ptr_add_refEPS7_) STUB("O57F5ikhGxo", sceVideoOutSysIsUserStatusSystemDefault) +STUB("O58MRjxEdoI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEEC1ERKS7_) +STUB( + "O5AKzAwTiRU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEE11get_deleterEv) +STUB( + "O5CP-bkLNKw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "O5Hxd1kB4XI", + _ZN3JSC15WeakHandleOwner26isReachableFromOpaqueRootsENS_6HandleINS_7UnknownEEEPvRNS_11SlotVisitorEPPKc) +STUB("O5IwLWfx+s4", + _ZN7WebCore6Editor10insertTextERKN3WTF6StringEPNS_5EventENS_18TextEventInputTypeE) +STUB("O5NQ1vCKL2A", ures_getByKeyWithFallback) +STUB( + "O5O5H2p3Sh8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE8capacityEv) +STUB("O5OcbI7EiiQ", _ZNK3JSC10JSFunction23isHostFunctionNonInlineEv) +STUB("O5Q8hayVFxo", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEE11release_refEv) +STUB("O5QkjyiPM4c", _ZN3sce2npneERK20SceNpCommunicationIdRKNS0_8NpCommIdE) +STUB("O5SjRjMIHuw", _ZN3sce7Toolkit2NP2V29Challenge7Request21GetChallengeThumbnailD2Ev) +STUB("O5V7vqDFYp8", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament5EventEED2Ev) +STUB( + "O5VSsdG2oVo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEED1Ev) +STUB("O5W17USgl2A", JVM_GetClassDeclaredConstructors) +STUB("O5XvFuIJg4Y", _ZN7WebCore26ISOProtectionSchemeInfoBoxC2Ev) +STUB( + "O5foHMotRp8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEC1Ev) +STUB("O5iNqqoDzCo", mono_aot_Sce_Vsh_AppInstUtilWrapperplt) +STUB( + "O5uCFe7Q1ug", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEEdeEv) STUB("O5x-G9Rqwx4", sceCamera2SetConfig) +STUB("O6+PZJivf3M", _ZN3sce7Toolkit2NP23EventInformationRequestC1Ev) +STUB("O620wuQYP-U", udat_setSymbols_67) +STUB("O6BYEzjncVc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEptEv) +STUB("O6FLa+Qpd8U", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE5clearEv) STUB("O6IW1-Dwm-w", sceUserServiceGetAccessibilityZoomFollowFocus) +STUB("O6LEoHo2qSQ", _Atomic_fetch_and_8) +STUB( + "O6MnaPdLI2Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEED2Ev) +STUB("O6Qyk6FU3Wg", _ZN7CoreIPC15ArgumentDecoder6decodeERh) +STUB("O6bomYHZ7ps", _ZN3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsTouchResponseBodyD1Ev) +STUB("O6bxDsGmlvg", _ZN9Inspector22InspectorDebuggerAgent11didContinueEv) +STUB( + "O6dBS7RIyPw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEEaSERSA_) +STUB( + "O6gGVBE6UE4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("O6gKl8uvGyE", sched_getparam) +STUB("O6lWW7BbeuM", _ZN7WebCorelsERN3WTF10TextStreamENS_22AlphaPremultiplicationE) +STUB("O6mx-Cw0M2U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEEC2Ev) +STUB("O6o0SokhfKc", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi28ParameterToDeleteGameSessionC1ERS5_) +STUB( + "O6oMX2SGXI4", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUser12getaccountIdEv) +STUB( + "O6v6D+Oi2K4", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "O6vMYaoPsGA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEED1Ev) +STUB("O6yZtj-d5tI", _ZN3sce2Np9CppWebApi14SessionManager2V12ToD2Ev) +STUB("O7+e1z85zho", WKDictionaryIsMutable) +STUB( + "O7+v7DbC3Ug", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("O743CFnjeqU", _ZN3JSC16setNeverOptimizeEPNS_9ExecStateE) +STUB("O78qUKx7NuE", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku25getDisplayPlusUpsellPriceEv) +STUB( + "O7Dr8CsGATY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE8capacityEv) +STUB( + "O7Fa6a7xajk", + _ZNK3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionNonPsnPlayer6toJsonERNS_4Json5ValueEb) STUB("O7Fdd+Oc-qQ", sceImeVshUpdateContext) +STUB("O7GtbAGB85A", __libunwind_Unwind_GetDataRelBase) +STUB( + "O7HZrYk+IOg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEEcvbEv) +STUB("O7LqfJ24JqM", _ZN9Inspector22PageFrontendDispatcher14loadEventFiredEd) +STUB("O7Qxy-AVyhY", + _ZN3sce2Np9CppWebApi11Matchmaking2V127ListUserTicketsResponseBodyC1EPNS1_6Common10LibContextE) +STUB("O7WlaO97OAs", _ZNK3WTF9MediaTime7isValidEv) STUB("O7dIZQrwVFY", sceWebBrowserDialogOpenForPredeterminedContent) +STUB("O7i9LDSwWKY", _ZN7WebCore7JSRangeaSERKS0_) STUB("O7ivIf9AIFI", sceNpManagerIntGetGameTitleTokenA) +STUB( + "O7lIAGERevo", + _ZN7WebCore24PerformanceLoggingClient35synchronousScrollingReasonsAsStringEN3WTF9OptionSetINS_26SynchronousScrollingReasonEEE) +STUB("O7mBiZ4ZHj0", mono_aot_System_Transactionsjit_code_end) +STUB( + "O7nXO7rF340", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEEaSERKSA_) +STUB("O7pLyzGq+Sk", mono_aot_Sce_Vsh_SysUtilWrapperjit_code_start) +STUB("O7svMQwjr+w", + _ZN7WebCore6LengthC1EON3WTF3RefINS_16CalculationValueENS1_13DumbPtrTraitsIS3_EEEE) +STUB( + "O7trcBs3d5g", + _ZN7WebCore21NetworkStorageSession29setAllCookiesToSameSiteStrictERKNS_17RegistrableDomainEON3WTF17CompletionHandlerIFvvEEE) +STUB("O7uYizNGoLY", _ZN3sce2Np9CppWebApi14SessionManager2V118MatchmakingForRead10setOfferIdEPKc) +STUB( + "O7wZyzcFn1Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEC1EPS8_) +STUB( + "O7wf199ua1Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEE11get_deleterEv) +STUB("O7zxyNnSDDA", _LDenorm) +STUB( + "O8-UUbni23w", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEptEv) +STUB( + "O80FKkO4ZmU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEC1Ev) STUB("O80NrhUOPGY", sceNpCheckPremium) +STUB("O81B1G4VdKw", + _ZN7WebCore24RotateTransformOperationC2EddddNS_18TransformOperation13OperationTypeE) +STUB("O81S7lsv5Jo", mono_aot_Mono_Data_Sqlitejit_code_start) STUB("O86rgZ2azfg", sceNpUtilGetFakeRateLimit) +STUB( + "O898AiUiwhQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEixEm) +STUB( + "O89hkjFXMic", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "O8C0IG2c5yo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEppEi) +STUB( + "O8FTnvJqCfE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEcvbEv) STUB("O8Fk4w5MWss", sceNetCtlGetStateV6IpcInt) +STUB( + "O8IeOsMBTeE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEptEv) +STUB("O8JQTZNhP5g", _ZN7WebCore9HTMLNames9sizesAttrE) STUB("O8ONJV3b8jg", sceUserServiceGetHmuZoom) +STUB("O8PA5Gz3ZTM", _ZN3sce7Toolkit2NP3TUS9Interface7setDataERNS1_21TusSetDataInputParamsEb) STUB("O8PXKj+4L8Y", sceNpIpcUnregisterCallback) +STUB("O8S9GxUH2Eo", _ZNK7WebCore37BasicComponentTransferFilterOperationeqERKNS_15FilterOperationE) +STUB( + "O8UjNecdd2Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEppEv) +STUB("O8VzxabzOZg", + _ZThn24_N9Inspector22InspectorDebuggerAgent8didPauseEPN3JSC14JSGlobalObjectENS1_7JSValueES4_) +STUB( + "O8b6X94q764", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEE5resetEPS9_) +STUB("O8b7eEqHEmQ", + _ZThn16_N9Inspector22InspectorDebuggerAgent8didPauseERN3JSC9ExecStateENS1_7JSValueES4_) +STUB( + "O8cYulvUo5s", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEptEv) +STUB("O8f7wT29CrE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE5clearEv) +STUB( + "O8hkujPC5Zo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEC2ERKS8_) +STUB("O8pOpFkBxF4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEEeqERKS7_) +STUB( + "O9+cbledWa4", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfiles18unsetincludeFieldsEv) STUB("O91VRI218wU", scePlayReadyCdmiGetMediaKeyCount) +STUB( + "O95ij+4uvh8", + _ZN7WebCore18JSHTMLInputElement6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_16HTMLInputElementENS6_13DumbPtrTraitsIS8_EEEE) STUB("O997laxY-Ys", sceFontStyleFrameSetScalePoint) +STUB("O9APctbRuKg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEED2Ev) +STUB( + "O9Bmj0up0Bw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEptEv) +STUB( + "O9EbgXzGG7Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEaSERS7_) +STUB("O9FEJnAiVaE", mono_aot_I18N_Westunbox_trampolines) +STUB("O9Ia6hjJA5w", _ZN3sce7Toolkit2NP2V24Core18CustomResponseDataC1ERKS4_) +STUB("O9KT9QCDr7A", _ZN3sce2Np9CppWebApi7Matches2V128RequestTemporaryMatchResultsD1Ev) +STUB( + "O9LkZ6d8ENQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("O9OAEFpktTg", _ZN7WebCore9HTMLNames5rtTagE) +STUB("O9RiaUMragE", umsg_close_67) +STUB("O9UVJLeLOos", mono_aot_Sce_Vsh_Np_AppLaunchLinkplt_end) +STUB("O9XPhYPJlcU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEE3getEv) +STUB("O9YsW44maCs", _ZN7WebCore17ResourceErrorBase7setTypeENS0_4TypeE) +STUB("O9atrqUK6DQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEE11release_refEv) +STUB("O9dQZAOtOAk", _ZN7WebCore4Path18ensurePlatformPathEv) +STUB("O9hSt82BLvI", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE3endEv) +STUB( + "O9jddgBJS3E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEC2EPS8_) +STUB("O9k0o6Iqejs", WKBundleNodeHandleGetHTMLInputElementAutoFillButtonType) +STUB("O9kQ8LYao1Q", Java_java_lang_StrictMath_IEEEremainder) +STUB("O9khDcH-4+g", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE8copyFromERKS7_) +STUB( + "O9oOxTnwe2I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE8copyFromERKS9_) +STUB("O9oxFoJ0v9M", SSL_load_error_strings) STUB("O9ync3F-JVI", sceHttp2DeleteCookieBox) +STUB( + "OA1NHZAXX4I", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEEdeEv) +STUB("OA23XrcD9DA", Java_java_net_NetworkInterface_getByIndex0) STUB("OA6FbORefbo", sceCompanionHttpdInitialize2) STUB("OA7xpGDL8sY", sceKernelGetExtLibcHandle) STUB("OA8f3KF9JsM", sceNpUtilGetNpTestPatch) +STUB("OADeCVcqoYg", ulist_addItemBeginList_67) +STUB("OADyYeWx-ec", mono_aot_ReactNative_Modules_Vsh_Gct_Telemetryjit_code_end) +STUB("OAE3YU396YQ", _FLogpoly) +STUB( + "OAEONWv8Smk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEED2Ev) +STUB("OAFgPnD3Mh0", _ZN3JSC22EdenGCActivityCallback9deathRateERNS_4HeapE) +STUB("OAFz3KoG-gA", u_strFromJavaModifiedUTF8WithSub) +STUB( + "OAIIfZsZ65E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEE7get_refEv) STUB("OALd6SmF220", sceUserServiceSetGlsBroadcastChannel) +STUB( + "OALx+JV8WL0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEEptEv) STUB("OANH5P9lV4I", sceUserServiceSetShareDailymotionRefreshToken) +STUB("OANLrQK9dXw", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEEcvbEv) +STUB("OANiyfEXH5w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119ChildActivityStatusEEC1EPS6_) +STUB( + "OAO2JTA4Sxs", + _ZN9Inspector20DOMBackendDispatcher4undoElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("OAVfIecKZM0", _ZN3sce7Toolkit2NP2V212ActivityFeed15PlayedWithStoryC2ERKS4_) STUB("OAVwxuKdkFE", scePerfTracePmCreate) +STUB("OAWKIXxSRSc", _ZN7WebCore26IdentityTransformOperationD2Ev) +STUB("OAYlRRKyyMQ", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setSubtitleDefaultLang) +STUB("OAYoSP3cLdU", mono_aot_Sce_Vsh_Np_Pbtcmethod_addresses) +STUB( + "OAa5+zN8D4Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEE3getEv) +STUB( + "OAbGS40OuLw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEE3getEv) +STUB( + "OAcjWbWs-Vo", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12unsetString5Ev) +STUB("OAcoYqdGDmQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_17TitleCloudStorage2V19ConditionEEaSERKS7_) +STUB( + "OAgxlv1RTYg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE21intrusive_ptr_add_refEPS9_) +STUB("OAjyHghTAKM", _ZN7WebCore23JSHTMLOptionsCollection9toWrappedERN3JSC2VMENS1_7JSValueE) STUB("OAmWq+OHSjw", scePthreadSetcancelstate) +STUB( + "OApuriXmD-Q", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEeqERKS9_) +STUB( + "OArDfi-caPc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEE21intrusive_ptr_add_refEPS7_) +STUB( + "OAyEQt9iVhY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEdeEv) +STUB( + "OB2teyVRfl4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "OB3MO5xc1TM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEED1Ev) +STUB("OB6sExtRBa4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredTeamsEED2Ev) +STUB( + "OB8CnjXkY08", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEE5resetEPS6_) +STUB( + "OB8QoElr-Oo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEC2Ev) +STUB("OBBXS-xziVU", mono_aot_System_IO_Compressionjit_code_start) +STUB( + "OBFGARdEiOM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEEaSERSA_) +STUB( + "OBO03ML-v58", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEEaSERKSA_) +STUB("OBPBTyAsP9I", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession6toJsonERNS_4Json5ValueEb) +STUB( + "OBSA+WqoUSU", + _ZN3sce2Np9CppWebApi14SessionManager2V133PlayerSessionMemberForReadFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_26PlayerSessionMemberForReadEEE) +STUB("OBTub+wi-xA", _ZN12video_parser18cMp4FFLHndlManager14getFF4DrefHndlEj) +STUB( + "OBZ1sSYEpww", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEE11release_refEv) +STUB("OBbhBuxmNpQ", _ZN7WebCore20LowPowerModeNotifierD1Ev) +STUB("OBe3lrnPD8A", + _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse15setGroupingTypeERKNS3_12GroupingTypeE) +STUB("OBwl-d2wkJ0", _ZN3JSC15WeakHandleOwner8finalizeENS_6HandleINS_7UnknownEEEPv) +STUB("OBxd2d6mdOA", + _ZN3JSC19reifyStaticAccessorERNS_2VMERKNS_14HashTableValueERNS_8JSObjectENS_12PropertyNameE) +STUB( + "OC-FfsdgaTw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE3endEv) +STUB("OC-U7LadwqI", _ZN7WebCore14ScrollableAreaD1Ev) +STUB("OC45k1rMqoI", rgctx_fetch_trampoline_mrgctx_54_p) +STUB( + "OC54FoBrmeo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEmmEv) +STUB( + "OC8XtioJX4A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEC2Ev) +STUB("OCBgDidMOrU", _ZN3WTF15base64URLDecodeEPKcjNS_33SignedOrUnsignedCharVectorAdapterE) +STUB( + "OCY4bj7foBU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEC2ERKS7_) +STUB("OCYLblWDOeY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEC2Ev) +STUB("OCYZhc6hRPc", _ZN10MsvUpdaterD1Ev) +STUB("OCbJ96N1utA", _Thrd_lt) +STUB( + "OCc4mHtouwU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEptEv) +STUB("OChQCtmV3uU", fuse_opt_add_opt_escaped) +STUB( + "OCkJ-6EhcuM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEC1Ev) +STUB( + "OCkMuKlsBy0", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26joinGameSessionAsSpectatorEiRKNS4_37ParameterToJoinGameSessionAsSpectatorERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_53PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) STUB("OCozl1ZtxRY", sceNpTusDeleteMultiSlotDataAsync) +STUB("OCteYQ6w5Ok", WKPageSetAddsVisitedLinks) +STUB("OCwIwUmjJDg", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE3endEv) +STUB( + "OD+3rKw9z6c", + _ZZSt9MakefacetISt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEESt8_LocinfoERT_T0_E3buf) +STUB( + "OD0hLeGfmHE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEeqERKS9_) +STUB( + "OD0u88wuP78", + _ZN7WebCore19ResourceRequestBase11setHTTPBodyEON3WTF6RefPtrINS_8FormDataENS1_13DumbPtrTraitsIS3_EEEE) +STUB("OD56nOZAtdU", _ZN3sce7Toolkit2NP9Interface4initERNS1_10ParametersEb) +STUB( + "OD5KclGpRVw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEmmEv) +STUB( + "ODA+H9x-RKc", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi44ParameterToPatchGameSessionsSearchAttributesD1Ev) STUB("ODC4-mOiwl0", sceBgftServiceIntTerm) STUB("ODEeJ1GfDtE", sceGnmDriverInternalRetrieveGnmInterface) +STUB("ODGONXcSmz4", ignore_handler_s) +STUB("ODIqV2uMnZA", mini_install_runtime_callbacks) STUB("ODJK2sn9w4A", sceAvPlayerEnableStream) +STUB("ODLJ3fSm3i4", WKOriginDataManagerDeleteEntriesForOrigin) +STUB( + "ODPFaU1ZBa4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEE7get_refEv) +STUB( + "ODRrJdEIV94", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetInteger8Ev) +STUB( + "ODZh5zCuc9E", + _ZNK7WebCore14ScrollableArea26visibleContentRectInternalENS0_36VisibleContentRectIncludesScrollbarsENS0_26VisibleContentRectBehaviorE) +STUB("ODZt6citcrg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEmmEi) +STUB( + "ODcGVJflnh4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE21intrusive_ptr_sub_refEPS9_) +STUB("ODdwfVdueoE", _ZN7WebCore11MathMLNames13mlabeledtrTagE) +STUB( + "ODfllcIdaDg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEEptEv) +STUB( + "ODiqVDnmYZA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEC1ERKS8_) +STUB("ODlm57o3SdA", _ZNK7WebCore18PlatformTimeRanges3endEj) +STUB("ODnWjm8LPFI", _ZN4Manx11MediaPlayer6updateEd) +STUB("ODo1XDHSsx0", _ZNK9Inspector17BackendDispatcher17hasProtocolErrorsEv) +STUB("ODpFsJfkuvI", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead24unsetDisableSystemUiMenuEv) +STUB("ODqPXCqOhJs", _ZN23sceMetadataReaderWriter8MetadataaSERKS0_) +STUB("ODrGh3I0-20", _ZN12Mp4Retriever14processEsdsBoxEv) +STUB( + "ODw17xlWH-Y", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeaders15hasCacheControlEv) +STUB("ODx7UiCP0gQ", _ZN7WebCore16MIMETypeRegistry29preferredExtensionForMIMETypeERKN3WTF6StringE) +STUB( + "OE0xyFSKJPs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEEC1ERSA_) +STUB("OE2yx62x5DM", _ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEEC1Ev) +STUB("OE3Lt7ek-2Y", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE5beginEv) +STUB( + "OE69ZuEIeuY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "OE6wXzZm7jc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEEC2ERSA_) +STUB("OEEp03n6yzc", YGLogLevelToString) +STUB( + "OEIMtrcxbMQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEC2Ev) +STUB( + "OENSn9GL3x8", + _ZN3sce2Np9CppWebApi14SessionManager2V150PutPlayerSessionsSessionIdLeaderRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_43PutPlayerSessionsSessionIdLeaderRequestBodyEEE) +STUB( + "OEOS7OE3Tv4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEEC2ERKSA_) +STUB("OEP1yV1d0Kw", _ZN3JSC9JSPromise6rejectEPNS_14JSGlobalObjectEPNS_9ExceptionE) +STUB( + "OEQV21Lhkug", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEE3getEv) +STUB("OEbAPUz0hiw", _ZN3sce7Toolkit2NP2V26Trophy7Request6UnlockD2Ev) +STUB( + "OEbCNr9dISs", + _ZN9Inspector20CSSBackendDispatcher12setStyleTextElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("OEdu+lsMIho", _ZN7WebCore13GraphicsLayerC2ENS0_4TypeERNS_19GraphicsLayerClientE) +STUB( + "OEeagyRviF4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE3endEv) +STUB( + "OEgB9mWw-p8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEppEv) +STUB("OEiVDwLURmI", u_memrchr32) +STUB( + "OEjgKCmWoUg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE8capacityEv) +STUB( + "OEkhSmyxNVM", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer34getxPSNSESSIONMANAGERREQUESTORIGINEv) +STUB("OElVA+B5PAg", _ZN7WebCore14ResourceHandleD2Ev) STUB("OEsO-6FT+04", sceAvSettingSet2dVrMode) +STUB("OEtF-8T3cN8", _ZN7WebCore12ISOWebVTTCueC1ERKN3WTF9MediaTimeES4_) STUB("OEvLeDCM0iw", sceNpUniversalDataSystemIntDestroyHandle) +STUB("OEzYpcVNB5Q", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_15TrophyGroupInfoEED2Ev) STUB("OEzZq+ThEio", sceTsGetSeekWindow) +STUB( + "OF2t+HeWA2c", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE4sizeEv) STUB("OF394ni0C-c", sceAudioOut2ArbitrationInitialize) +STUB("OF6uR63q+Ss", WKFrameGetWebArchive) +STUB( + "OF7ffdNe4Dg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) STUB("OF8D1S5kgMw", sceKernelUnsetDipsw) +STUB( + "OF8URE0BZxI", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEEiRNS2_10LibContextEPT_m) +STUB("OFBPEpbqUIQ", Java_com_sony_gemstack_resources_ResourceManager_hasStream) +STUB( + "OFND5KqjwZQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEppEi) +STUB( + "OFPF1oCqN-E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEE5resetEPS8_) +STUB("OFTHvLr4nRQ", _ZN3sce7Toolkit2NP11TusVariableC2Eil) +STUB( + "OFUPL4Enbf8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE4sizeEv) +STUB( + "OFUSj7Ew6Sk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEeqERKS9_) +STUB( + "OFcE+RD7s6U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEEcvbEv) STUB("OFhg9OV+--M", sceBgftServiceIntDebugPlayGoIsSetFreeZone) STUB("OFiFmfsADas", sceNpUtilGetNpLanguageCode) +STUB( + "OFj7BPMNEVU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEED1Ev) +STUB( + "OG2iBQMguW4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEppEv) +STUB("OG2w7MzRXm0", JVM_InitProperties) +STUB("OG4RsDwLguo", munlock) +STUB( + "OG8CjKNXrj0", + _ZN3sce2Np9CppWebApi12Leaderboards2V130RecordScoreResponseBodyFactory6createEPNS1_6Common10LibContextEiiPNS5_12IntrusivePtrINS3_23RecordScoreResponseBodyEEE) +STUB("OG8xRaGIpqk", tcflow) +STUB("OGAnhdA1OMk", _ZN7WebCore23CoordinatedBackingStoreD0Ev) +STUB("OGAx4xe5WUY", _ZN3sce7Toolkit2NP2V212NetworkUtils12BandwithInfoC2Ev) +STUB( + "OGHdNqpeeu4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEC1Ev) +STUB( + "OGLV0ovqMyY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEEaSERKSA_) +STUB( + "OGOpn50MobE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEC2Ev) +STUB( + "OGOyvDWmMr0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEEcvbEv) +STUB( + "OGP3P+eQBCg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("OGPOVyvRKkw", _ZN7WebCore27DocumentTimelinesController17suspendAnimationsEv) +STUB("OGQkWY0JBkg", _ZN3JSC8Debugger6attachEPNS_14JSGlobalObjectE) +STUB("OGTJBwZ6-tA", unum_parse_67) +STUB( + "OGUd7eBqb1E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEE3getEv) +STUB("OGVdXU3E-xg", wprintf) +STUB( + "OGW4AoKB7Vk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEaSERKS7_) +STUB("OGY9U9yYKkM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEEC2Ev) +STUB("OGZSxjJTIxk", _ZN3sce7Toolkit2NP2V211SharedMedia7Request14GetScreenshots13MAX_PAGE_SIZEE) +STUB("OGbIAqBmjzw", WKDatabaseManagerSetClient) +STUB("OGcDdde1fY4", usearch_preceding_67) +STUB("OGkMxA47TfQ", uhash_find_67) +STUB( + "OGnz--d7ZT0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEplEm) +STUB("OGrbPHHcWHM", _ZN9Inspector21InspectorConsoleAgent12setHeapAgentEPNS_18InspectorHeapAgentE) +STUB( + "OGxhLorBKW8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB( + "OGy0iKPHKas", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEC2EPNS2_10LibContextE) +STUB("OGybVuPAhAY", reallocalign) +STUB("OH5zZpRwHFU", WKHitTestResultCopyAbsoluteLinkURL) +STUB( + "OH8nQp9GRRA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEmmEv) +STUB("OHAXsubMk70", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats14unsetBandwidthEv) +STUB("OHB8JMPwnRI", rgctx_fetch_trampoline_mrgctx_113_p) +STUB( + "OHBck1fligc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE21intrusive_ptr_sub_refEPS9_) STUB("OHCO6MMFvdQ", sceNpAppLaunchLink2IntAbortRequest) +STUB("OHGLV7ThG1A", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament5EventEEC2Ev) +STUB("OHKoGVZ7xKA", glDeleteQueries) +STUB("OHRe9fSuJmQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V116TaskAvailabilityEEeqERKS7_) +STUB( + "OHTMLBsN61s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "OHUBd0pt2wo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEE11release_refEv) +STUB( + "OHXy6NuoXro", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("OHYf869ide4", _ZN3sce7Toolkit2NP2V23TUS16FriendsVariables8deepCopyERKS4_) +STUB("OHbreFrJVPg", _ZN3sce7Toolkit2NP2V28Commerce8CategoryC2Ev) +STUB("OHgp1uE8P2c", cairo_transform) +STUB("OHhpUrKfgj8", _ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEEixEm) STUB("OHjgoIInnmU", sceVisionManagerSetCallbackForUpdateCalibrateStereoCameraResult) STUB("OHl4kz+OCws", sceFiosFHPreadvSync) +STUB("OHmFhMNp2go", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEEneERKS7_) STUB("OHnnkrUcShM", sceVideoOutDriverTriggerEvent) +STUB( + "OHqBQHW8BbM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEC2EPS8_) +STUB("OHzTpeBWsEg", _g_sceLibcExitthread) +STUB("OI-UUz7zMzo", WKAddMockMediaDevice) +STUB("OI2GFS9ZyFQ", + _ZN3sce2Np9CppWebApi14SessionManager2V127PostGameSessionsRequestBody15getGameSessionsEv) +STUB("OI2Gl1qYpbY", WKPreferencesSetEditableLinkBehavior) +STUB( + "OI4j-lviwSM", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("OI5xij0logA", _ZN3sce2np8JsonBool3SetEb) +STUB("OI989Lb3WK0", _ZTSSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE) +STUB("OIBi9qYv-AQ", _ZN3JSC8Bindings13RuntimeObject11fieldGetterEPNS_9ExecStateElNS_12PropertyNameE) +STUB( + "OIFuIisFJuY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEC1EPKS8_) STUB("OIGbkgGOu6E", sceFiosIOFilterPsarcDearchiver) STUB("OIIm19xu+NM", sceGameLiveStreamingGetProgramInfo) STUB("OINC0X9HGBY", sceFontGetCharGlyphCode) STUB("OITH4TZEdRY", sceApplicationLocalProcessKill2) +STUB("OIWOB9zHruU", _ZN4Manx8ImeEventC2ENS0_12ImeEventTypeEPKcji) +STUB("OIXi8Pimjbc", X509_STORE_CTX_new) +STUB( + "OIY98SOu5WI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEdeEv) +STUB( + "OId0RT2ttQQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEEC1ERSA_) +STUB("OIdCMA7vGHA", _ZN3sce2np4NpIdC2Ev) +STUB( + "OIeJLiTg7p4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "OIjaPU6DAkc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEneERKS9_) +STUB("OIkxYVnWgAE", _ZN7WebCore23standardUserAgentForURLERKNS_3URLE) +STUB( + "OIodTzCXFL8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEE3getEv) +STUB("OIp5AZlyjEc", _ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetailD2Ev) +STUB( + "OIvAnAUdbQ8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("OIypNkAP7ik", _ZN7WebCore16BlobRegistryImpl23registerBlobURLForSliceERKN3WTF3URLES4_xx) +STUB("OJ+13SCOxgI", u_isULowercase) +STUB( + "OJ9AB-wj8aI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE6resizeEj) +STUB( + "OJAjt1Oome0", + _ZN3JSC23JSModuleNamespaceObject14finishCreationEPNS_9ExecStateEPNS_14JSGlobalObjectEPNS_20AbstractModuleRecordEON3WTF6VectorISt4pairINS_10IdentifierENS5_10ResolutionEELm0ENS7_15CrashOnOverflowELm16EEE) +STUB("OJDd75NGcWI", JVM_GetMethodIxModifiers) +STUB( + "OJG1uNGKaFg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEED2Ev) +STUB("OJHwwDiTNqk", mono_get_exception_reflection_type_load) +STUB( + "OJKHfmDHwvA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEEC1Ev) +STUB("OJPTonqdg0I", _ZN3sce4Json6ObjectC1Ev) +STUB("OJPn-YR1bow", _ZTIPv) +STUB("OJSHpgwtpXs", _ZN3sce2Np9CppWebApi7Matches2V119CreateMatchResponseD1Ev) +STUB( + "OJXwc54M94o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE6resizeEj) +STUB( + "OJb76NLmCsQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEaSERKS9_) +STUB( + "OJd0bIxwg0E", + _ZN7WebCore9FrameView32computeUpdatedLayoutViewportRectERKNS_10LayoutRectES3_RKNS_10LayoutSizeES3_S6_RKNS_11LayoutPointES9_NS0_24LayoutViewportConstraintE) +STUB("OJdF2YETwS0", _ZN3sce2np13JsonDocParser12onStartArrayEjj) STUB("OJf3vCckPAM", sceAmprAmmSubmitCommandBuffer2) +STUB("OJggewsMVbM", _ZN3NTF3URLD1Ev) +STUB( + "OJhADckiQw4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEEcvbEv) +STUB("OJiHNjSOguc", curl_strnequal) STUB("OJjm-QOIHlI", sceLibcMspaceMalloc) +STUB("OJnJ+0Hi9S0", + _ZN7WebCore27PlatformMediaSessionManager12restrictionsENS_20PlatformMediaSession9MediaTypeE) +STUB("OJtPQIu4A14", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12unsetString7Ev) +STUB( + "OJuFV3IDHZI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi25setVariableWithConditionsEiRKNS4_36ParameterToSetVariableWithConditionsERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_8VariableEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("OJxVHWNnMFA", JVM_ResumeThread) +STUB( + "OK+Ggpve7B0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEEdeEv) +STUB("OK4Ot0ue7J0", _ZN3sce4Json5ValueC2Eb) +STUB( + "OK5wx6DGH-Y", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("OK7SJat0qwI", _Z20WTFCrashWithInfoImpliPKcS0_imm) +STUB("OK9v6q9l8j0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEC2Ev) +STUB( + "OKGOhJOD1OM", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession9setMemberERKNS1_6Common12IntrusivePtrINS3_32RequestPlayerSessionMemberPlayerEEE) +STUB( + "OKHuNpLYtnw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEE5resetEPS6_) +STUB( + "OKI1yDfb54g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEEdeEv) +STUB("OKIt8T8O20c", ucptrie_close_67) +STUB("OKJEUM6XeNo", seed48.par0) +STUB( + "OKJttlkSxy4", + _ZN3sce2Np9CppWebApi14SessionManager2V160PostGameSessionsSessionIdMemberSpectatorsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_53PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEE) STUB("OKLpKlnQmCM", scePerfTraceGetInfo) +STUB( + "OKQ5O1eOqJI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE5beginEv) +STUB( + "OKRE+kY1obk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEptEv) +STUB("OKRKItW2uYo", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_skipToNextLinkPoint) +STUB( + "OKSHsaGDqbg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEaSERKS9_) +STUB("OKSitHINiig", _ZN7WebCore20ResourceResponseBaseC2ERKNS_3URLERKN3WTF6StringExS7_) +STUB( + "OKUO-7+ScCo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEptEv) STUB("OKX5-OHw1rE", sceCesUtf32leToSbc) +STUB("OKY9HFtnEWQ", _ZN3sce7Toolkit2NP2V29Messaging16GameDataMessages5resetEv) +STUB("OKaYwlwKZG4", _ZN7WebCore15JSFetchResponseD1Ev) +STUB("OKcQnF14KGA", _ZN11GvMp4Parser6Common11Utf8ToUtf16EPKcPSbIwSt11char_traitsIwESaIwEE) +STUB("OKgwVQ7WdH8", ulistfmt_formatStringsToResult_67) +STUB( + "OKlgScW51uQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEE7add_refEv) +STUB("OKmed1IGJkI", mono_aot_Sce_Vsh_Np_Snsplt) +STUB( + "OKmoRwuiKE4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEEC2ERSA_) +STUB("OKrc5AyAqtM", _ZNK7WebCore20ResourceResponseBase29cacheControlContainsImmutableEv) +STUB("OKuCgQvFoW0", _ZN3sce2Np9CppWebApi15Personalization2V15ErrorD1Ev) STUB("OL2CJ2idmhk", scePadVrControllerGetTriggerEffectState) +STUB("OL6P62kBuqU", EC_GROUP_get_degree) +STUB( + "OL6gFp2-hVc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEED1Ev) +STUB("OL7DU1kkm+4", _ZN3sce2np9NpTitleIdC2Ev) +STUB("OLC0QBXKywQ", _ZN3JSC8DebuggerD0Ev) +STUB( + "OLEHVEWGiag", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEEC1ERKSA_) +STUB("OLJeoMFzvEA", _ZN3JSC7JSProxy17preventExtensionsEPNS_8JSObjectEPNS_9ExecStateE) +STUB("OLMJwrBsDng", _ZN7WebCore20ResourceResponseBase11setMimeTypeERKN3WTF6StringE) +STUB("OLNWcsoTaHs", + _ZSt9use_facetISt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale) +STUB("OLgCzPhsacA", _ZNK3sce2Np9CppWebApi11UserProfile2V114PersonalDetail14getDisplayNameEv) +STUB( + "OLhOngz1axA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "OLjKj51DcVw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEplEm) +STUB("OLjWAHqXXt4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEE5resetEPS6_) +STUB("OLlUEP0Jdzs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEE7add_refEv) +STUB( + "OLlitVFUdTI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEneERKS9_) +STUB("OLmxlvBbU2I", mono_aot_Sce_Vsh_Lxjit_code_start) +STUB( + "OLrQ2pdASmA", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEEiRNS2_10LibContextEPT_m) +STUB("OLrc+SojAec", _ZNK7WebCore17CSSPrimitiveValue13getFloatValueEt) +STUB( + "OLskRHlJjUY", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB( + "OLyyC8aBMwg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEC2EPS8_) +STUB("OM0FnA7Tldk", _ZNSt10moneypunctIwLb1EED1Ev) +STUB("OM8XPyh1Dc4", _ZN3JSC22EdenGCActivityCallbackD0Ev) STUB("OM8mhVVwEzU", sceCesUtf16leToEucCn) +STUB("OMAYDli-mdA", + _ZNK7WebCore6Quirks70shouldSuppressAutocorrectionAndAutocaptializationInHiddenEditableAreasEv) STUB("OMDRKKAZ8I4", sceKernelDebugRaiseException) +STUB( + "OMHxHUH+8mU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE3endEv) +STUB( + "OMMTRQ0fOrs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEmmEv) +STUB("OMRXFxNyGBk", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_15CategoryInfoSubENS2_IS4_EEEEC1Ev) STUB("OMS9LlcrvBo", sceCameraClose) +STUB("OMSlY-esvcE", _ZNSt9basic_iosIwSt11char_traitsIwEEC1EPSt15basic_streambufIwS1_E) +STUB( + "OMUAJ2b1d-U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEC2EPKS8_) STUB("OMYRTU0uc4w", sceRudpTerminate) +STUB( + "OMZHALLYMFk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEE11get_deleterEv) STUB("OMbBieZ6emQ", sceVideoCoreGetCanvasHandle) +STUB( + "OMdlJxQzRUY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE3endEv) +STUB("OMmHcRMQOAc", _ZN7WebCore11DisplayList14ConcatenateCTMD2Ev) +STUB( + "OMoBM+P8C+o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEE7get_refEv) +STUB("OMpbbxaX92o", jpeg_open_backing_store) +STUB("OMq2WoEtX+w", + _ZN3sce2Np9CppWebApi14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyD1Ev) +STUB( + "OMqua-QAr6E", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEneERKS9_) +STUB( + "OMyLOGiOJvU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEEaSERKSA_) +STUB("ON26vhraMMU", glLinkProgram) +STUB("ON3UHfeC58A", _ZN3sce2Np9CppWebApi6Common6VectorIdE5eraseENS2_13ConstIteratorIdEERS6_) +STUB( + "ON3xVa6gu6E", + _ZN7WebCore23CoordinatedImageBacking6createERNS0_6ClientEON3WTF3RefINS_5ImageENS3_13DumbPtrTraitsIS5_EEEE) +STUB("ON5571M4250", _ZN7WebCore13JSHTMLElement6s_infoE) STUB("ON7Sf5XEMmI", sceNpInGameMessageSendData) STUB("ON9Y68DGNYo", sceClHttpReadData) +STUB("ONHCFGvD0vw", _ZN7WebCore12TextIteratorD2Ev) +STUB("ONIHa3g3Qas", _ZN7WebCore12JSAudioTrack6s_infoE) +STUB("ONIhJ+wHKWI", _ZN7WebCore21MediaRecorderProvidernaEm) +STUB("ONKRGoUeF+o", __asan_load8) +STUB( + "ONLVhUaoSKA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEE3getEv) +STUB("ONNjULAZbZo", _ZN3WTF6String8truncateEj) +STUB( + "ONOoiducsJo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEE3getEv) +STUB("ONP3yMmi1bI", + _ZN7WebCore22throwArgumentTypeErrorERN3JSC9ExecStateERNS0_10ThrowScopeEjPKcS6_S6_S6_) +STUB("ONSgZ31uw40", _ZN9Inspector22InspectorDebuggerAgent17setOverlayMessageERN3WTF6StringEPKS2_) +STUB("ONSpkBe0x1E", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119SubtaskAvailabilityEEneERKS7_) +STUB("ONSxopNmk90", _ZN15AbstractStorage14FacebookFolder6RemoveEb) +STUB("ONT8As5R1ug", _ZNK3sce4Json5Value8getArrayEv) +STUB( + "ONTpKsB5Z70", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12string7IsSetEv) +STUB("ONUP+hSzhqw", WKPreferencesGetLocalStorageEnabled) +STUB( + "ONXI13HkVkY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEC2EPS8_) +STUB("ONXrD9F8ExY", _ZN7WebCore11MediaPlayer10cancelLoadEv) +STUB( + "ONYmhf4+VGs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE5emptyEv) +STUB("ONaXqeUPwdE", _ZN4Manx11MediaPlayerC2EPNS_17MediaPlayerClientE) +STUB( + "ONfOCHSHobs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEixEm) +STUB("ONgEITYl9mA", _ZN3sce2npneERKNS0_9NpTitleIdERK12SceNpTitleId) STUB("ONmSYoJQgIE", sceNetApctlGetResult) +STUB( + "ONpnSWBv3pA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("ONqfnVimxZU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEED1Ev) +STUB( + "ONqoxFbzAHY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEC1ERKS7_) STUB("ONyH3TlLDx0", sceHidControlConnectHandle) STUB("OO3V65nvIVw", sceValidationGpuInitContext) +STUB("OO5BYpLFhps", WKContextAccessibilityEnabled) +STUB("OO5r3tJuV1I", _ZNK3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate13teamNameIsSetEv) +STUB( + "OO6K8x0dJcQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("OO6LsNticAw", _ZN3sce7Toolkit2NP2V28Matching12Notification14NewRoomMessageD2Ev) +STUB( + "OO9ChkFWJjg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("OOC9ufkAGWE", _ZN3WTF7RunLoop4mainEv) STUB("OOF0YO73GTA", sceVideoOutSysSetDimmer) STUB("OOFxrMY+mfI", sceVideoRecordingStop) +STUB("OOG8rWDHURY", u_strToLower_59) +STUB("OOGKeH9U85M", _ZNK7WebCore24RotateTransformOperation1zEv) +STUB("OOI5nqLihBw", glGetStringi) +STUB( + "OOLhkccWFKI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEC1EPS6_PNS2_10LibContextE) STUB("OONgpXDsjFI", _sceLibcFree) +STUB("OOQwdJebDxQ", _ZNK7WebCore12ChromeClient22layerTreeStateIsFrozenEv) +STUB("OOTZze9igVc", _ZN3PAL8KillRing7prependERKN3WTF6StringE) STUB("OOY9+ObfKec", sceNpWebApi2ReadData) +STUB("OOo4Dxqj8wQ", _ZN7WebCore8Document18registerCollectionERNS_14HTMLCollectionE) STUB("OOrLKB0bSDs", sceSharePlayGetCurrentConnectionInfo) STUB("OOuvHKTu4Oc", sceFiosDirectoryExistsSync) +STUB("OOyJZM20FTk", _ZN3sce7Toolkit2NP2V212ActivityFeed13ButtonCaptionC2Ev) +STUB("OP+iChnwfIE", _ZN7WebCore6ISOBoxD1Ev) +STUB("OP-5v92RXRc", _ZN3WTF6Thread31setCurrentThreadIsUserInitiatedEi) +STUB("OP-VhFdtkmo", CERT_isRootCertificate) +STUB("OP-xJR9Y+G0", WKNotificationCopyTag) +STUB("OP361Y8dT4k", mono_aot_Sce_Vsh_PsnUtilplt_end) +STUB("OP6cnN8qBtQ", _ZN3JSC2VM18ensureHeapProfilerEv) +STUB("OP9D9HFijUA", u_isalpha_67) +STUB("OPGM9euoiqg", _ZNK3sce2np13JsonArrayImpl8freeItemEPNS1_4ItemE) +STUB( + "OPHEa9e6pw4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEEC1ERKS9_) +STUB( + "OPKuqOIybQE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE5beginEv) +STUB("OPMu8xYvBSY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE5beginEv) +STUB("OPN9PVTH72w", _ZN7WebCore28convertToIntegerEnforceRangeIsEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB( + "OPTFqFpsXSI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "OPUJwJ2nvTQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEneERKS9_) +STUB("OPZlEmsrHyI", _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse10tasksIsSetEv) +STUB("OPbaECtQyog", mono_create_jit_trampoline) +STUB( + "OPk+VfpeCek", + _ZN3JSC7JSProxy25getStructurePropertyNamesEPNS_8JSObjectEPNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("OPlwVA8-vjg", _ZN3JSC7Symbols17concatPrivateNameE) +STUB( + "OPmYZBzb9dw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEC2EPS8_) +STUB( + "OPsw5wVw9Zc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEE11get_deleterEv) +STUB("OPz4fh0MpFo", rgctx_fetch_trampoline_rgctx_62) +STUB( + "OQ0tq+dXke0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEcvbEv) +STUB( + "OQ3JLfYJboE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE8pushBackERKS8_) +STUB( + "OQ4XzD5c9b8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEC2EPS8_) +STUB("OQBu00sK6sc", _ZNK3WTF6String23convertToASCIILowercaseEv) +STUB( + "OQEWvnn7t58", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEneERKS9_) +STUB( + "OQGMOWG8esI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEC2EPS6_PNS2_10LibContextE) +STUB("OQJl4-I14Mk", _ZNK7WebCore15AffineTransform10isIdentityEv) +STUB( + "OQJnJARMoss", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEC1ERKS7_) +STUB("OQK15N2qqpc", _ZN7WebCore12SharedBufferC2EPKcm) +STUB( + "OQKn4GFbKPQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEmmEv) +STUB( + "OQOP+esEiNo", + _ZN9Inspector17ScriptDebugServer29dispatchBreakpointActionProbeEPN3JSC9ExecStateERKNS_22ScriptBreakpointActionENS1_7JSValueE) STUB("OQPdKUpXO+U", sceCesRefersUcsProfileGbT1988) STUB("OQTgEXyihvA", sceAgcSetAmmSemaphoreMemory) STUB("OQTweRLgFr8", sceNpEventGetCurrentNetworkTick) +STUB("OQYQvowtC6I", WKPageAreScrollbarAnimationsSuppressed) +STUB("OQiPXR6gfj0", _ZN3sce2np4Cond6SignalEv) +STUB( + "OQl-6kqIdGo", + _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody30exclusiveLeaderPrivilegesIsSetEv) +STUB("OQorbmM+NbA", _ZNSt14numeric_limitsItE8digits10E) +STUB( + "OQqG5f0CAzM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEC2Ev) +STUB("OQqeOhtQfdI", mono_stack_walk) +STUB("OQuRjEC8eeY", _ZNK7WebCore7Element14getAttributeNSERKN3WTF12AtomicStringES4_) +STUB("OR-4zyIi2aE", + _ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_bRSt8ios_basecRKSs) +STUB("OR0yR3we3RQ", _ZN7WebCore8SVGNames15font_familyAttrE) +STUB( + "OR3KT0hF+bc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEmmEi) +STUB( + "OR5JE8-tTvM", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeaders15getCacheControlEv) +STUB("OR6-CZL+oOw", glGenTextures) +STUB( + "OR7ZHDTYqpE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEE7get_refEv) +STUB("ORAHeHtYAw4", GCC_except_table401) +STUB( + "ORBN0+ksBjI", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEEiRNS2_10LibContextEPT_m) +STUB( + "OREAuHNsB9Y", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("ORFGeoriOFQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEdeEv) +STUB( + "ORKc2IPjinw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEaSERKS9_) +STUB( + "ORM7PgDMMns", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEE7add_refEv) +STUB( + "ORPNNyE8seM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "ORPOtRG66-o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEE3getEv) +STUB( + "ORRZE9zH9bI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEppEv) +STUB("ORRr3FoycIg", _ZNK7WebCore24MatrixTransformOperation27isAffectedByTransformOriginEv) STUB("ORWsxIbk4TE", sceAgcCondExecPatchSetEnd) +STUB("ORb5KNUuMrQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEptEv) +STUB( + "OResfE1S0wE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEmmEv) STUB("ORiU0t9ZnwE", sceDepthHandCandidateTrackerGetResult) +STUB( + "ORkLU1jPhII", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEEC2ERKSA_) +STUB( + "ORnvYg3vDCI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEptEv) +STUB("ORp6k8F2PdA", __strtord) STUB("ORspsWDXPps", sceShareSetContentParamForApplicationTitle) +STUB("ORtxNAsujC8", JSObjectGetGlobalContext) +STUB("ORvMIrGbh5s", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredUsersEE5resetEv) STUB("ORxxAa6qnAA", sceVorbisDecSetDecodePriority) +STUB("ORyiaqjd0AE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEEC1Ev) +STUB( + "ORzX357TrNs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEE3getEv) +STUB( + "OS0yrUpOnSE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEaSERKSA_) +STUB("OS2EuVvqy6g", WKPageLookUpFrameFromHandle) +STUB("OS2jyRXbgfM", _ZNK3sce2Np9CppWebApi13InGameCatalog2V513ContentRating8urlIsSetEv) +STUB("OS67zhti6KQ", WKPageGroupRemoveUserContentFilter) +STUB("OS7yY7NTTok", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEixEm) +STUB( + "OS8oVrYQ2ic", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEneERKS9_) +STUB( + "OSEDFI-QW+Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEEaSERKSA_) +STUB("OSIc8B70DD8", JVM_GetClassFieldsCount) +STUB( + "OSNDPX2dzX4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("OSQfwLqtTkE", _ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriendsC1ERS5_) +STUB("OSb9z7LMyzo", __asan_report_store8) +STUB("OSe-+quaoLc", JVM_GetClassConstantPool) +STUB("OSeukUernt4", _ZN7WebCore9HTMLNames18aria_multilineAttrE) +STUB( + "OSfQVha6XpI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("OSpgVy3hgZI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence8PresenceEED2Ev) STUB("OSqOny+kPrA", sceCompositorSetCursorImageAddress) +STUB( + "OSyVhg41vCA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEEaSERSA_) +STUB("OT1pwqHrDKg", _ZN3PAL12CryptoDigestD1Ev) STUB("OTA3SrTEtog", sceDataTransferTargetRequestGetDeviceInfoApplication) +STUB("OTEIKEEfBOQ", _ZN3sce2np10JsonNumberC1EP14SceNpAllocator) +STUB( + "OTQRxO5GP0o", + _ZN3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResults20setTeamMemberResultsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_23RequestTeamMemberResultEEEEE) +STUB( + "OTSPzyE6VTQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE5startEPNS2_10LibContextE) +STUB("OTUgSuFXpNE", _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeIPcPvEE9constructEPS6_RKS6_) +STUB("OTYijt1nJSg", _ZN7WebCore13QualifiedName17QualifiedNameImplD1Ev) +STUB( + "OTazomxzCAE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEC2EPS7_PFvS9_EPNS2_10LibContextE) STUB("OTb0Mg+1i1k", sceImeCheckUpdateTextInfo) STUB("OTb0kHrf1pE", scePthreadSingle) STUB("OTilStjd9L8", sceNpSessionSignalingGetLocalNetInfo) +STUB("OTjiNjxPQDQ", _ZTVN7WebCore11DisplayList10StrokePathE) +STUB( + "OTnkAIZMwPI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE21intrusive_ptr_add_refEPSA_) +STUB("OTxzGv91HD8", _ZN3JSC10callSetterEPNS_9ExecStateENS_7JSValueES2_S2_NS_8ECMAModeE) +STUB("OU1YgSmh-5c", _ZN3JSC8JSObject4sealERNS_2VME) STUB("OU2YuBjf2i8", sceDataTransferRequestGetSavedataInfoPS4) +STUB( + "OU4yRqcxCmc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEaSERKS8_) +STUB( + "OUCa6OZ6r0o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEppEi) +STUB("OUDdcf1tv80", _ZN3sce3Xml11InitializerD1Ev) +STUB( + "OUEqufjwyZE", + _ZN3sce2Np9CppWebApi14SessionManager2V147PutPlayerSessionsNonPsnLeaderRequestBodyFactory7destroyEPNS3_40PutPlayerSessionsNonPsnLeaderRequestBodyE) +STUB("OUFEt0Tk5NU", JVM_DTraceDispose) +STUB( + "OUJrl8GTivU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB( + "OUKmWdIEgOM", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities26GetUsersActivitiesResponse8setUsersERKNS1_6Common6VectorINS6_12IntrusivePtrINS4_14UserActivitiesEEEEE) STUB("OULgIo1zAsA", sceUsbdUnrefDevice) +STUB("OUMr1+NpJU8", SwCtrlSinkCancel) +STUB("OUNAeEXjlm4", _ZN7WebCore3URL7setPathERKN3WTF6StringE) +STUB( + "OUWIVEeqrwY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("OUWXJecX9ag", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEEC2EPKS6_) +STUB("OUX-dGMRopg", mono_get_exception_divide_by_zero) STUB("OUYYl+QEzZc", sceDebugGetProcessList) +STUB( + "OUZOpzb8yY0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("OUfK6H-mZ8Y", _ZN7WebCore9HTMLNames27onwebkitwillrevealrightAttrE) +STUB( + "OUguF+rU3ww", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEppEi) STUB("OUrM7JZcRSg", sceMbusUnregisterDriver) +STUB("OUsSUrUr+ek", rgctx_fetch_trampoline_rgctx_96) +STUB( + "OUte3Yii6sU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEED2Ev) +STUB( + "OUuIQ52apko", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE5abortEv) +STUB( + "OV+MKKnbEYM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEC1ERS7_) +STUB( + "OV1allPlgHI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEaSERKS9_) +STUB("OV2vAddDaa4", _ZN7WebCore9HTMLNames8inputTagE) +STUB( + "OV9e1LI0F5o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEED2Ev) +STUB("OVAMxV7CoRE", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15CategoryInfoSubEE8allocateEmPKv) +STUB("OVD8IJm1crQ", _ZN7WebCore4Node6removeEv) +STUB( + "OVEogOT8jYU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEppEi) +STUB("OVEwfzP5CHQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEEneERKS7_) +STUB( + "OVG39sQqW8M", + _ZN3sce2Np9CppWebApi14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBody8fromJsonERKNS_4Json5ValueE) +STUB( + "OVGUYIRZI9U", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody19getLeaderPrivilegesEv) +STUB("OVH5Rc8SZ0U", _ZNK7WebCore14SecurityOrigin14isSameOriginAsERKS0_) +STUB("OVIZEj4pco4", rgctx_fetch_trampoline_mrgctx_14) +STUB( + "OVJ0zh2p+o0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE3endEv) +STUB( + "OVM1X4xwX0g", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13boolean7IsSetEv) STUB("OVNpYTRqN74", sceSocialScreenTerminate) +STUB("OVQXcjKPf8M", _ZNK9Inspector22RemoteInspectionTarget26automaticInspectionAllowedEv) +STUB("OVT027YDip0", _ZTVN9Inspector28PageBackendDispatcherHandlerE) +STUB("OVV379uPphQ", mini_free_jit_domain_info) +STUB("OVWIH7kpWNA", _ZN3WTF10TextStreamlsEx) STUB("OVaGBwQZ378", sceMusicCoreServerSetAutoPlay) STUB("OVdVBcejvmQ", sceUserServiceGetRegisteredHomeUserIdList) +STUB("OVjZSfT7QFM", _ZN9Inspector22RemoteInspectionTarget13setIndicatingEb) +STUB( + "OVjshbGbt7g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE3endEv) +STUB("OVkYHR+3l+o", _ZN7WebCore10FileHandleC2ERKN3WTF6StringENS_10FileSystem12FileOpenModeE) +STUB("OVnGRNRkT+k", tzone) +STUB("OVqW4uElSrc", _FXp_invx) +STUB( + "OVsvmF7lYPQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEC1Ev) STUB("OVths0xGfho", sceAvPlayerSetLooping) +STUB("OVuwx4R7Rxc", _ZN3PAL8KillRing16startNewSequenceEv) +STUB( + "OVzup88jB1w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEED2Ev) +STUB( + "OW0SLrs6odM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE8pushBackERKS8_) +STUB("OWAU-hYF2ZU", _ZN3JSC9CallFrame13describeFrameEv) STUB("OWCJUmrWH1g", sceContentExportFromFile) +STUB("OWJ6aemCVZE", _ZN7WebCore9HTMLNames7forAttrE) +STUB( + "OWJxZwlgEnU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE8capacityEv) +STUB("OWKvDJfD4M4", _ZNKSt9basic_iosIwSt11char_traitsIwEE6narrowEwc) +STUB( + "OWNFbcaOHIk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEEC1EPNS2_10LibContextE) +STUB( + "OWO5cpNw3NA", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERb) +STUB( + "OWQoxid8WNw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEC2ERKS7_) +STUB("OWQwWpOwPKI", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead13setMaxPlayersERKi) STUB("OWU6H65+LLk", sceCompositorSetAgcContextCommand) +STUB("OWW1BedCjHY", uprv_ebcdictolower_67) +STUB( + "OWYpiV98zto", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEneERKS9_) +STUB("OWZ3ZLkgye8", __nesf2) +STUB("OWbX4UakOPI", _ZN7WebCore11HistoryItemC2ERKN3WTF6StringES4_) +STUB("OWf8hAqC1sk", GCC_except_table169) +STUB( + "OWgBI2ZiSLg", + _ZNK7WebCore19InspectorController12getHighlightERNS_9HighlightENS_16InspectorOverlay16CoordinateSystemE) +STUB( + "OWivQHvEblw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEppEi) +STUB( + "OWjFecPjeZE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEppEv) +STUB("OWnw-Bc1+ZM", _ZN7WebCore16g_commonVMOrNullE) +STUB("OWpK2Dj6-R8", + _ZN7WebCore26MessagePortChannelRegistry25messagePortChannelCreatedERNS_18MessagePortChannelE) +STUB("OWpkJFrvEfw", rgctx_fetch_trampoline_mrgctx_6) +STUB( + "OWs1NndUOhY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEE7get_refEv) +STUB("OX-s5D0nKW8", _ZN9Inspector27InspectorFrontendDispatcherdaEPv) +STUB( + "OX0YVIAHayc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEEC1Ev) +STUB( + "OX6ahuhWTJs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE10setContextEPNS2_10LibContextE) +STUB( + "OX7q73zKlP4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEC2Ev) +STUB( + "OX8lJKYcFQo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEED2Ev) +STUB( + "OX9SKcSFJQY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) STUB("OX9wtyjVAJY", sceKernelGetBudget) +STUB("OXBVYy6NRIM", _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScoreC2Ev) +STUB( + "OXBwnfmtAfY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEC2EPS6_PFvS8_EPNS2_10LibContextE) STUB("OXDc0KCnUhs", sceAgcGetStaticBuffer) +STUB( + "OXN9DImnnTs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEC1Ev) +STUB("OXUBJTOLBeI", + _ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForRead16getNonPsnPlayersEv) STUB("OXXX4mUk3uk", sceNetConnect) +STUB( + "OXYxOamy2BI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEC1EPS6_PNS2_10LibContextE) +STUB("OXc1BksfEIg", _ZNK4IPMI6Server6Config29estimateTempWorkingMemorySizeEv) +STUB( + "OXcoFZ9XlCY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEmmEv) +STUB("OXdFEkUtslc", _ZN7WebCore21PageOverlayController26didChangeDeviceScaleFactorEv) +STUB( + "OXgCregq1hs", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Runtime13ObjectPreview7SubtypeEEESt8optionalIT_ERKN3WTF6StringE) +STUB( + "OXhOvTi+Rgc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEppEi) STUB("OXhWQp2ZA9s", scePlayReadyBufferFree) +STUB("OXkQU0s4pB8", _ZThn96_N7WebCore18HTMLMarqueeElement4stopEv) +STUB("OXkzGA9WqVw", _ZTSPm) +STUB("OXmauLdQ8kY", atan) +STUB( + "OXnJB4a2d+I", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("OXwThjrwg3Q", mono_aot_I18N_Westplt) +STUB( + "OXxr80Qn3Uc", + _ZN3WTF12base64DecodeERKNS_6VectorIcLm0ENS_15CrashOnOverflowELm16EEENS_33SignedOrUnsignedCharVectorAdapterEj) +STUB( + "OXztBgvneTc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEC1Ev) +STUB( + "OY0nekZqpkA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE5beginEv) +STUB( + "OY1qo8qaeos", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE8pushBackERKS8_) +STUB( + "OY2gkH79Tpc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("OY3FZCTqNGM", _ZN7WebCore12GCController19deleteAllLinkedCodeEN3JSC19DeleteAllCodeEffortE) +STUB("OY45Lg9RoUA", _ZN3JSC7Symbols28allocateInt8ArrayPrivateNameE) +STUB( + "OY5mqEBxP+8", + _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8get_dateES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm) STUB("OY8v8WDzn3s", sceFiosFileExists) STUB("OYBiWgeGpPo", sceAgcSdmaClose) +STUB( + "OYCZHcK+hDc", + _ZN9Inspector21HeapBackendDispatcher13startTrackingElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "OYDhup-hRsQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEC1EPS8_) +STUB( + "OYEb-9hIH+o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("OYHAbO09+pw", _ZTVN7WebCore37CrossOriginAccessControlCheckDisablerE) +STUB( + "OYIUDJnmzcE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEEcvbEv) +STUB( + "OYOeKdm6Jrg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("OYYVq9oiK2g", _ZN3JSC23SimpleMarkingConstraintD0Ev) +STUB( + "OYZZTgFJOwE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEptEv) +STUB( + "OYZfI+1rOi0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE3endEv) +STUB( + "OYdP0wTtGYA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsC1EPNS1_6Common10LibContextE) +STUB("OYfinD0QrEE", uspoof_getAllowedLocales_67) STUB("OYmnApJ9q+U", sceSaveDataGetUpdatedDataCount) +STUB( + "OYoX-8ejY9s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("OZ0w4N914Uo", WKNotificationManagerGetTypeID) +STUB("OZ1jI9aVLJM", + _ZN3sce2Np9CppWebApi11UserProfile2V121PersonalDetailFactory7destroyEPNS3_14PersonalDetailE) +STUB("OZ3E5DBD-TU", mono_aot_I18N_CJKplt) +STUB( + "OZ5tLCp229s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEEaSERKSA_) +STUB( + "OZBHhK5oA3E", + _ZN3sce2Np9CppWebApi13InGameCatalog2V522ContainerRatingFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_15ContainerRatingEEE) STUB("OZBKii+KboY", sceVorbisDecSerialNumber) +STUB( + "OZGAX6PHoWk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEED1Ev) +STUB("OZJNoj2ojXA", mono_aot_ReactNative_Vsh_Commonplt_end) +STUB("OZM2JS-25R0", _ZN3JSC13RuntimeMethod12lengthGetterEPNS_9ExecStateElNS_12PropertyNameE) +STUB( + "OZMEI+fdypc", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEEiRNS2_10LibContextEPT_m) +STUB("OZMNneOln4A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEaSERKS7_) +STUB("OZObyI1LBiA", _ZN3JSC14JSGlobalObjectD1Ev) +STUB("OZOh7OPG41I", aio_return) +STUB( + "OZP+S5U6cgM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE8pushBackERKS8_) +STUB("OZRKJ9f3xSo", + _ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE5_InitERKSt8_Locinfo) +STUB("OZRYdUqFYQs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEppEv) STUB("OZTedKNUeFU", sceNpManagerIntGetUserIdByAccountId) +STUB("OZXccaIGYLs", Java_com_sony_bdjstack_javax_media_controls_SoundManager_setPanningFR) +STUB("OZY0GVtb+Ck", _ZN7WebCore11MathMLNames11displayAttrE) +STUB( + "OZZoMxUSM+8", + _ZN3sce7Toolkit2NP2V28Presence11getPresenceERKNS3_7Request11GetPresenceEPNS2_4Core8ResponseINS3_8PresenceEEE) +STUB( + "OZaf29c7GUM", + _ZN3sce2Np9CppWebApi7Matches2V130ResponseMatchStatisticsFactory7destroyEPNS3_23ResponseMatchStatisticsE) +STUB("OZd9hHmLUgM", _ZN9Inspector20DOMBackendDispatcherD2Ev) +STUB("OZhpjfsAIS8", _ZN3JSC10Identifier3addEPNS_9ExecStateEPKc) +STUB("OZkvQEgICVc", SSL_CTX_set1_groups_list) +STUB( + "OZmyshYqcts", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEC1EPS8_) +STUB("OZpARF+Fvsw", _ZNK7WebCore5Range8toStringEv) +STUB( + "OZqbz+zNHRQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEC1EPNS2_10LibContextE) +STUB("OZsHC5I-oGM", _ZN7WebCore8SVGNames8clipAttrE) +STUB( + "OZyt6CWUuWs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEC2Ev) +STUB( + "Oa-Hglz+X00", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE5beginEv) +STUB( + "Oa1HJ6dio4I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEE11release_refEv) +STUB("Oa2bbI-pj+w", _ZN7WebCore11JSDOMMatrix11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("Oa4DkE23caQ", _ZN7WebCore14SQLiteDatabase11tableExistsERKN3WTF6StringE) +STUB("Oa8DwUsT8yg", WKOpenPanelParametersCopySelectedFileNames) +STUB("Oa8FsI1SXdg", _ZN3sce7Toolkit2NP2V211SocialMedia7Request21PostMessageToFacebookC1Ev) STUB("Oa8TdN+xZWg", sceClPthreadMutexattrSetprotocol) +STUB("OaB0qzbupVo", YGConfigCopy) +STUB("OaBNSvmGtv4", _ZN7WebCore11DisplayList10StrokeRectD1Ev) +STUB( + "OaBd4xHXB5o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEC1EPS8_) +STUB("OaGIltRoqiQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEC1Ev) +STUB( + "OaLJgYtWtco", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12setBoolean10ERKb) +STUB( + "OaP-JMgoty8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEEC2EPS9_PNS2_10LibContextE) STUB("OaQI1HqFAtk", sceDbgSetMinimumLogLevel) +STUB( + "OaRR2gNwNPw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "OaS2gtTVT1o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEC1EPS8_) +STUB("OaVel22lABE", _ZN3sce7Toolkit2NP2V28Commerce8Category13IMAGE_URL_LENE) STUB("OaWw+IVEdbI", sceCompanionHttpdRegisterRequestCallback) +STUB("Oac+zl92KDY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE5beginEv) STUB("Oad+nopFTTA", sceNpManagerIntGetMAccountId) STUB("Oad3rvY-NJQ", sceNpHasSignedUp) +STUB( + "OalobYxbi2M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEE11get_deleterEv) +STUB("Oao4xhTBIuA", addCommInfoList) +STUB("OaqGMFRrnuc", _ZN3sce7Toolkit2NP17FriendRankRequestC2Ev) +STUB( + "OavW2uQ0Uy0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEEcvbEv) +STUB("Ob-7kQFbviA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEaSERS7_) +STUB( + "Ob2bFCVwBrw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEneERKS9_) STUB("Ob34lg2OTG0", sceDseehxFlush) +STUB("Ob7nUchI0fc", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112UpdateStatusEEC1Ev) +STUB( + "Ob8wmH3I9YU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("ObBWSo94AQg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEEaSERKS7_) +STUB( + "ObFjw5Pvjx0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE6isBusyEv) +STUB( + "ObIBEIlGgPs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEED2Ev) STUB("ObIste7hqdk", sceCameraGetExposureGain) +STUB("ObL9avwXu98", u_strFromUTF32_67) +STUB( + "ObM1SFN4qm0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEppEi) +STUB("ObMQ-BnbLTw", mono_aot_System_Runtime_Extensionsmethod_addresses) +STUB("ObUpJImTS-s", _ZN7WebCore11MathMLNames17definitionURLAttrE) +STUB( + "ObWmUHnNJm8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("ObWxi4aV0Fs", + _ZN7WebCore17JSDOMRectReadOnly9serializeERN3JSC14JSGlobalObjectERS0_RNS_17JSDOMGlobalObjectE) +STUB("Obbg4JThVYQ", _ZN3sce10CanvasUtil5flushEv) +STUB("ObdBkrZylOg", _ZTSSt18bad_variant_access) +STUB("Obg5jzvJ3Po", _ZN7WebCore18JSHTMLImageElementC1ERKS0_) +STUB("ObitwxybGKk", SSL_CIPHER_get_version) +STUB( + "Obk70NrrdJI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) STUB("ObkDGDBsVtw", sceFontStringGetTerminateCode) +STUB("ObpPwWnpM8I", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEEC1ERS7_) +STUB("Obpp+5fUIEU", unorm2_getDecomposition) +STUB("Obwmfjc8qOs", _ZNK7WebCore15ContextMenuItem7checkedEv) +STUB( + "ObxiBfgwVLQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE8pushBackERKS8_) +STUB( + "Oc-wf15M4C4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEdeEv) +STUB( + "Oc0U97RJO7Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEppEi) +STUB("Oc4wsNJNskY", _ZNK3sce2Np9CppWebApi11UserProfile2V112BasicProfile13onlineIdIsSetEv) +STUB( + "Oc72WHTKrL4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEneERKS9_) +STUB("Oc76D429atM", mono_aot_Sce_Vsh_VideoFramework_Platformunwind_info) +STUB("OcA+TJ9AjOo", __ubsan_handle_nullability_return_v1) +STUB("OcAgPxcq5Vk", _ZN3sce4Json12MemAllocatorD2Ev) +STUB( + "OcDsU5hrZzc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEdeEv) +STUB( + "OcE+KlgaHo8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEixEm) +STUB("OcJv92xrnOs", vzone_equals_67) +STUB( + "OcN+3CKzJtk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE8capacityEv) +STUB("OcNMmxWmSD0", _ZN8meta_gen13TiffRetrieverD0Ev) +STUB("OcPl1XthUtg", rgctx_fetch_trampoline_rgctx_77_p) STUB("OcQybQejHEY", sceVideoOutGetBufferLabelAddress) +STUB("OcRqL+3uS20", ucol_mergeSortkeys_67) +STUB( + "OcVO-RhINUY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEEC1EPS8_PNS2_10LibContextE) +STUB("OcXqr0lwnSc", _ZNK7WebCore5Range21compareBoundaryPointsENS0_10CompareHowERKS0_) +STUB("OcYUj6hnhCo", _ZN3sce7Toolkit2NP2V27Session11InvitationsC2ERKS4_) +STUB( + "OcYj2-nIW1I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEEC1EPS6_PNS2_10LibContextE) +STUB("OcZJcxANLfw", CERT_STORE_addTrustPoint) +STUB( + "Ocaficj17j0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEC1ERS7_) +STUB( + "OcefDxTkkxQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEC1EPS6_PFvS8_EPNS2_10LibContextE) STUB("Ocf081WpBpA", sceHmd2ReprojectionBeginFrame) +STUB("OchgDaLOOUo", delegate_virtual_invoke_2_p) STUB("OcllHFFcQkI", sceNpTrophySystemGetGroupIcon) +STUB( + "OclxlhLwZfE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEeqERKS9_) STUB("OcnSddPkQns", sceNpManagerIntGetGameTitleBanInfo) +STUB("Ocr34X-hRec", + _ZN3sce7Toolkit2NP2V29Messaging7Request19SendGameDataMessage19MAX_SIZE_ATTACHMENTE) +STUB("OcwbcLWLjAQ", WKSecurityOriginCopyHost) +STUB("OczGlIC+mBw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEC1ERKS7_) +STUB("Od08tUabWSo", _ZNK3sce2Np9CppWebApi6Common8IteratorImEeqERKS4_) +STUB("Od0KHyB+f40", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEaSERKS7_) +STUB( + "Od0gzgg-A+Q", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE5abortEv) STUB("Od0uMJZoVWg", sceKernelGetTraceMemoryStats) +STUB( + "Od1fcGKeZY8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEC2EPNS2_10LibContextE) STUB("Od2NaV700Ek", sceCesSJisCodeToJisX0208) +STUB( + "Od3NXzsLAv0", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getBoolean9Ev) +STUB( + "OdAUR52nDko", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE13getLibContextEv) +STUB( + "OdAZYnlCMcw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE5eraseENS2_8IteratorIS6_EERS9_) +STUB("OdIsrLAknok", _ZNK3sce2Np9CppWebApi11UserProfile2V113BasicPresence14inContextIsSetEv) +STUB( + "OdKArYEV0I4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE17getNpWebApi2ReqIdEv) +STUB("OdLStdJy+1E", + Java_com_sony_bdjstack_javax_media_controls_VideoSystem_getScreenConfigurationId) +STUB( + "OdM2FhFYn9Q", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEptEv) +STUB( + "OdM9oG4E9Cc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEptEv) +STUB("OdPGT4016Pc", + _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToCancelTicket11getticketIdEv) +STUB("OdQjCCT0Mzo", JVM_ResolveClass) STUB("OdRcux-QXm8", sceNpPush2RegisterNotificationExCallback) STUB("OdTS2QXIVos", sceUlpMgrQueueTryPop) +STUB( + "OdVFerEd2N4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEC2EPS8_) +STUB( + "OdcR6zpBRK8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEC2EPS8_) STUB("OdiXSuoIK7c", sceUserServiceGetParentalGame) +STUB("OdjdBljvxmg", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIlEC1EPl) +STUB( + "OdnPRTkd+fY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEED2Ev) +STUB("OdnfwPg6zUo", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry9pcIdIsSetEv) +STUB( + "OdrwFx8Gn4c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE7popBackEv) +STUB("OduSHBukAnk", mono_btls_x509_verify_param_get_flags) STUB("OdutVIwsfoc", scePlayReadyLicenseAcqProcessResponse) +STUB("OdvMJCV7Oxo", __floatunsidf) +STUB( + "OdvqiJteUag", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE21intrusive_ptr_add_refEPS7_) +STUB("OdzLUcBLhb4", __floatuntixf) +STUB( + "Oe+-NWyisuA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEE11release_refEv) +STUB( + "Oe0fFlEXSbQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE6resizeEj) +STUB( + "Oe1W+jARzBQ", + _ZN3sce2Np9CppWebApi7Matches2V119RequestInGameRoster10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_18RequestMatchPlayerEEEEE) +STUB("Oe33uOtx7sI", WKBundleHitTestResultMediaHasAudio) +STUB( + "Oe5j5KSIZkM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "Oe69+uTtQhs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEE5resetEPS8_) +STUB("OeEFtpgl3Cs", mono_domain_owns_vtable_slot) +STUB("OeGeb9Njons", CERT_setKeyFromSubjectPublicKeyInfoCert) +STUB("OeHaG1J3EHQ", + _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi24ParameterToReportResults23getreportResultsRequestEv) STUB("OeJdPEmLYX4", sceUsbStorageGetdentsRead) +STUB("OeJoyBxAlEk", + _ZNK3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayer11getPlatformEv) +STUB("OeNH41MA2Vs", FT_Open_Face) +STUB("OePBlYUkbMQ", _ZN3sce2Np9CppWebApi7Matches2V14TaskC2EPNS1_6Common10LibContextE) +STUB( + "OeRyarhBM5s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE7popBackEv) +STUB("OeSHakP2sw8", _Z29PsmGraphicsGetGraphicsContextv) +STUB("OeZaNLCgxdA", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable9getSlotIdEv) STUB("OecFSm0BxdI", sceSpPthreadMutexUnlock) +STUB("OenefAIiO3o", uprv_pathIsAbsolute) +STUB("Oeo9tUbzW7s", _ZNSt7codecvtIDsc9_MbstatetED1Ev) +STUB("OeqSCnaIHyA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEE7add_refEv) +STUB("OevCZ8MRkV8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEdeEv) +STUB( + "OevmrtUEB4U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEC1Ev) +STUB( + "Of-+-eHkyVA", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeaders6createEPNS1_6Common10LibContextERNS6_12IntrusivePtrIS5_EEl) +STUB( + "Of343XopKE0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEppEv) +STUB("Of3LWhvVMbw", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo12setaccountIdEPKc) +STUB( + "Of4xukikvEk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("Of6ahH4L2Lg", _ZN9Inspector8Protocol3CSS11CSSProperty8ImplicitE) +STUB( + "Of78a+6ubss", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEEaSERSA_) +STUB( + "Of9qTRNMgbk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEE3getEv) +STUB( + "OfE+cft2qCg", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSessionIdRequestBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_37PatchGameSessionsSessionIdRequestBodyEEE) +STUB( + "OfE7ABcyLp8", + _ZN9Inspector21InspectorRuntimeAgent10saveResultERN3WTF6StringERKNS1_8JSONImpl6ObjectEPKiRSt8optionalIiE) +STUB( + "OfEhYLxS6h4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEC1EPS6_PNS2_10LibContextE) STUB("OfNANruoaxs", sceCesUcs2StrToMbcsStr) +STUB("OfP1a5uBcs4", _ZN7WebCore24CoordinatedGraphicsLayer14setPreserves3DEb) STUB("OfRb3huEPX8", sceDataTransferAbortSearchPS4) +STUB( + "OfSm8N8i+XA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE6finishEv) +STUB( + "OfTx-jdnzYk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEE11release_refEv) +STUB( + "OfYbTC-dntY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEE7add_refEv) +STUB("OfZnFLuX8+g", WKPreferencesSetCustomPasteboardDataEnabled) +STUB("OffDHonzAk4", _ZN7WebCore14FrameSelection5clearEv) +STUB("Ofhy8Ky4rEk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBodyC1EPNS1_6Common10LibContextE) +STUB( + "OfiCi4C52QI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEE11release_refEv) +STUB( + "Oflukn5jrA8", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13integer7IsSetEv) +STUB( + "OfmCcRe9vXQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEneERKSA_) +STUB("Ofn28iC8bf4", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE5clearEv) +STUB( + "OfoFMihbjPM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEEcvbEv) +STUB( + "OfpJ406dj-g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEE5resetEPS6_) STUB("OfrPlrwzl4U", sceKernelSetDirectMemoryType) +STUB( + "OfslkynqnAM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("Ofug7g2Vga8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE7reserveEi) +STUB("OfwgHjJZyGo", WKBundleFrameCopyChildFrames) +STUB("OfyYPsBqmlA", _ZN7WebCore8SVGNames15startOffsetAttrE) +STUB("Ofz1AcKLESA", png_free) +STUB("Og72vvutsLE", t1_cmap_standard_class_rec) +STUB("Og8Jxy7oFkc", vzone_getStaticClassID_67) +STUB("OgEd4N62-dg", _ZNK7WebCore9DOMWindow16getComputedStyleERNS_7ElementERKN3WTF6StringE) +STUB("OgFczHko0w8", FT_Done_Face) +STUB( + "OgGEBDAygy8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEdeEv) +STUB("OgITQ+1PtOs", _ZN7bmalloc29StaticPerProcessStorageTraitsINS_9DebugHeapEE7Storage7s_mutexE) +STUB("OgIbLp+FJ2I", _ZNK3sce2Np9CppWebApi13InGameCatalog2V520ContainerRatingCount10countIsSetEv) +STUB( + "OgXfLo73zak", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("OgbHYgjDBL4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS25AtomicAddToAndGetVariableEEC2Ev) +STUB("OgbbbsOtwlE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEEC1Ev) +STUB("Ogg09NLOW3w", qS8) +STUB( + "OgkQofp6OlE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE5beginEv) +STUB( + "OgpJx7QK-o8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE3endEv) +STUB( + "OgsU21lxIP8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEEC2ERKSA_) +STUB("Ogv4Wb987TI", ucasemap_open_67) STUB("OgzRrdWr8uA", ScePsmMonoDomainAssemblyOpen) +STUB("Oh2pbnCuyyo", mono_get_exception_synchronization_lock) +STUB("Oh7gYN7bdHE", Java_java_io_RandomAccessFile_write0) +STUB( + "Oh85nlQ7ZRw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEptEv) +STUB("OhC6hmD2VYw", _ZN7WebCore16HTMLTableElement7tBodiesEv) +STUB("OhCsIjzr63s", jinit_compress_master) +STUB("OhDth-x4CUo", _ZN7WebCore24CoordinatedGraphicsLayer23setContentsToSolidColorERKNS_5ColorE) +STUB("OhGxI60LXPo", _ZN7WebCore11DisplayList20FillRectWithGradientD1Ev) +STUB( + "OhSNme4WYSc", + _ZN15AbstractStorage18DailymotionStorage10GetContentERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_7ContentEE) +STUB("OhVJO3fn7dk", WKPreferencesGetCompositingRepaintCountersVisible) +STUB("OhYkDcFPfIU", mono_config_get_os) +STUB( + "OhbgCSnMWko", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEC2EPS8_) +STUB("OhcScS4BHoM", _ZN3sce2Np9CppWebApi7Matches2V15Error16unsetReferenceIdEv) STUB("OheijxY5RYE", sceNpTusGetFriendsDataStatusAAsync) +STUB( + "Ohf9o1fkq3Y", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEixEm) +STUB( + "Ohfnt2KnL2w", + _ZNK3WTF8JSONImpl10ObjectBase8getValueERKNS_6StringERNS_6RefPtrINS0_5ValueENS_13DumbPtrTraitsIS6_EEEE) +STUB("Ohhjm+gd9gQ", _ZN4Manx20getGenericFamilyTypeEPKwj) +STUB( + "OhixsN6Cy+A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEptEv) +STUB("OhjI6QXJreQ", mono_declsec_flags_from_assembly) +STUB( + "OhkeVbfkams", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEC2Ev) +STUB("OhmAoBvGMd4", _ZN7WebCore21UserContentController17removeUserScriptsERNS_15DOMWrapperWorldE) +STUB( + "OhnH8C16wZc", + _ZN7WebCore8JSPath2D6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_6Path2DENS6_13DumbPtrTraitsIS8_EEEE) +STUB("OhosHihGcns", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEC2ERS7_) +STUB("OhpofCxYOJc", _ZN3sce2np6HandleC2Ev) +STUB( + "OhvMpLJgpYU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEED1Ev) +STUB("Ohz9GetZorI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEdeEv) +STUB( + "OhzOcm4c4bU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE10setContextEPNS2_10LibContextE) +STUB( + "Oi2e9CZ2R4A", + _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product12setPublisherERKNS1_6Common12IntrusivePtrINS3_9PublisherEEE) +STUB("Oi5C+LYICRE", _ZN3sce7Toolkit2NP2V28Presence16PlatformPresenceC2Ev) STUB("Oi7FzRWFr0Y", scePadSwitchConnection) STUB("Oi7Mkc2qiew", sceKernelGetBuildNumber) +STUB("Oi8niAD8r1M", ublock_getCode) +STUB("Oi9NaDuGjZg", mono_aot_Sce_Vsh_Gls_NativeCalljit_code_start) +STUB("OiFojfr3MuQ", mono_aot_Sce_Vsh_Webbrowser_XdbWrappermethod_addresses) +STUB("OiJIorOeuOI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEED2Ev) +STUB( + "OiJmaYG+v2s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "OiPzasyQqVE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEED1Ev) +STUB("OiQkT8AUD5k", AacsModuleStart) +STUB( + "OiT8pniW1pA", + _ZN7WebCore14DOMCacheEngine15queryCacheMatchERKNS_15ResourceRequestES3_RKNS_16ResourceResponseERKNS_17CacheQueryOptionsE) +STUB("OiiwNT7WRG8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEE11release_refEv) +STUB( + "OijAMUWCgPQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEixEm) +STUB( + "OijgX+3zps8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEE11release_refEv) +STUB("OilqfSGtoCk", _ZNK7WebCore6ISOBox12extendedTypeEv) +STUB("Oin1rCnQQN4", Java_java_lang_ClassLoader_00024NativeLibrary_unload) +STUB( + "OiqbmBScZ24", + _ZN9Inspector25DebuggerBackendDispatcher19evaluateOnCallFrameElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("OiunYlyJUvc", sem_unlink) +STUB("OixjiRExi6g", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTicketsC2ERS5_) +STUB("Oj1ll4bR580", _ZN3JSC11ArrayBuffer6createEPKvj) +STUB( + "Oj1vw2MtlEo", + _ZN3sce2Np9CppWebApi7Matches2V123JoinMatchRequestFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_16JoinMatchRequestEEE) STUB("Oj6EZyXtQkk", sceApplicationSwitchToBaseMode) +STUB("Oj7MxlWKKjM", WKPageSetSession) +STUB("OjJcnVmKx9M", _ZN7WebCore12NamedNodeMap12setNamedItemERNS_4AttrE) +STUB( + "OjRPaXBctPQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEeqERKS9_) STUB("OjTEJo7cfRE", scePadDisableTriggerEffect) +STUB("OjWstbIRPUo", __Ux86_64_setcontext) +STUB( + "OjYDGvqp8w4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEE3getEv) +STUB("OjavHx3T3gE", utrans_countAvailableIDs_67) +STUB("OjcLbk3jcp8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEE3getEv) +STUB("OjeXFhn2-9Q", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIdEppEi) +STUB("Ojfqg2IfSu4", delegate_virtual_invoke_imt_m_17_p) +STUB("OjlHVH8jjsw", SSL_get0_param) +STUB( + "OjnQ9hxfWXw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE6resizeEj) STUB("OjoP+2xDY5c", sceNpManagerIntRevalidatePasswordOld) +STUB( + "OjpRYo6VTMw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEptEv) +STUB( + "OjqMdFvqVwo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("OjzayySo58A", _ZN7WebCore28InspectorFrontendClientLocalD2Ev) +STUB("Ok+SYcoL19Y", gets) +STUB("Ok-Mh2OnkYs", _ZN12video_parser17cVideoProfilerMp4C1EPNS_18cMp4FFLHndlManagerE) STUB("Ok2Nxka7qI4", sceAmprAmmMeasureAmmCommandSizeModifyMtypeProtect) +STUB("Ok35SiBrHA4", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead30unsetReservationTimeoutSecondsEv) +STUB("Ok3Hu4DWmpU", glGetUniformIndices) +STUB("Ok6T9b6gcl4", Java_java_net_PlainSocketImpl_socketSetOption0) +STUB("Ok8KPy3nFls", iswlower) +STUB( + "Ok8j4nv0+sQ", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC1ERKSA_) +STUB( + "OkH1-DvaFxY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("OkLAycBUJfs", _ZN3sce2np14HttpConnectionD1Ev) +STUB("OkLQk5cGcDM", _ZN7WebCore9HTMLNames10sectionTagE) +STUB("OkOaa3JP3j0", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18GameCustomDataItemEE7addressERS3_) +STUB("OkYxbdkrv64", _ZTIPDs) +STUB( + "OkZTosDEz0M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE21intrusive_ptr_sub_refEPSA_) +STUB("OkbxW1PzpCQ", rgctx_fetch_trampoline_rgctx_117_p) +STUB( + "OkcBizX+qcU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEED2Ev) +STUB( + "OkgMGQKig+g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEC1EPS8_) +STUB("Okiw6xdoX00", _ZN3JSC16SamplingProfiler18reportTopBytecodesERN3WTF11PrintStreamE) +STUB( + "OkkGKxzNJOs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEEaSERSA_) +STUB( + "OkmShGtcTj8", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("Oks6jtLY7iE", _ZN3sce7Toolkit2NP2V212ActivityFeed4FeedC1Ev) +STUB("OkvUnvdJsW8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE3endEv) +STUB( + "OkyDTpNKHoI", + _ZThn16_N9Inspector21InspectorRuntimeAgent36getRuntimeTypesForVariablesAtOffsetsERN3WTF6StringERKNS1_8JSONImpl5ArrayERNS1_6RefPtrINS4_7ArrayOfINS_8Protocol7Runtime15TypeDescriptionEEENS1_13DumbPtrTraitsISD_EEEE) +STUB("Ol0O8DvpWyk", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils16NetStateDetailedEE3setEv) +STUB( + "Ol6a4N4jJOI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB("OlEC7i75Zr4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEC2Ev) STUB("OlFgKnBsALE", sceGnmSdmaCopyWindow) +STUB( + "OlH1UyhHvgQ", + _ZN7WebCore16BlobRegistryImpl18appendStorageItemsEPNS_8BlobDataERKN3WTF6VectorINS_12BlobDataItemELm0ENS3_15CrashOnOverflowELm16ENS3_10FastMallocEEExx) +STUB("OlHCQOhz8AE", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V112TicketStatusEEmmEi) +STUB( + "OlLdKPlW4vo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEaSERKS7_) +STUB( + "OlMxxnDBfEg", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi26RecordScoreResponseHeaders24getXPsnAtomicOperationIdEv) +STUB( + "OlR31NI-DCY", + _ZN7WebCore24redirectChainAllowsReuseENS_24RedirectChainCacheStatusENS_28ReuseExpiredRedirectionOrNotE) +STUB("OlTjuwdzeSo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE5clearEv) +STUB("OlWlPHKbAh4", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_33ActivityFeedSharedScreenshotStoryEE7addressERKS3_) +STUB("Olb6L5-YCBE", JSRunLoop) +STUB( + "OlbT7mQEM3A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEC2EPNS2_10LibContextE) +STUB( + "OliHLffcLLU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEED1Ev) +STUB( + "OlkGBMNxkeI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEC1EPNS2_10LibContextE) +STUB("Oln7BoRAMx4", __cmp_D2A) +STUB( + "OlnkkXyXkgk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEED1Ev) +STUB( + "OlqsnXPRhHA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("OlscS7C2kGU", + _ZN3JSC8Bindings13RuntimeObject14deletePropertyEPNS_6JSCellEPNS_9ExecStateENS_12PropertyNameE) +STUB("Olwu-7rrX7A", _ZN7WebCore15HTMLBaseElement7setHrefERKN3WTF12AtomicStringE) +STUB( + "Olyq3AvGc-I", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEC1Ev) +STUB( + "Om+4efeKMV8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEC1EPS6_PNS2_10LibContextE) +STUB("Om2ww9GOmes", FcPatternDel) +STUB( + "Om5ISfFuvbQ", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS5_INS7_9RecordApi26RecordScoreResponseHeadersEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISE_SF_EE) +STUB("Om7GCXZ3ygM", _ZN9Inspector22InspectorDebuggerAgent6enableEv) +STUB( + "Om8O3W5nL+U", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeaders21intrusive_ptr_add_refEPS5_) +STUB("OmDPJeJXkBM", _WStoll) +STUB( + "OmEdX81dTpc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC2ERSA_) +STUB("OmG2nD41vow", Java_sun_awt_DownloadedFont_loadFromMemoryFinish) STUB("OmG3YPCBLJs", sceLibcPafMspaceMallocStatsFast) +STUB("OmJ5HIMLuNg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEED1Ev) +STUB( + "OmR6AUTosbU", + _ZN3WTF24acquireLineBreakIteratorENS_10StringViewERKNS_10AtomStringEPKDsjNS_21LineBreakIteratorModeE) +STUB( + "OmUs2elHCGE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("OmZzIsewh64", mono_btls_x509_crl_get_by_cert) +STUB("Ome5M+MTuwY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament16RegisteredRosterEEC2Ev) +STUB("OmecxEgrhCs", __asan_option_detect_stack_use_after_return) +STUB( + "OmghrWlBYUE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEC1ERKS7_) +STUB("OmpWcoPbFCc", _ZN3sce7Toolkit2NP2V24Core7Request21NpToolkitCallbackInfoD2Ev) +STUB("OmqNjUWcjoQ", uprv_getInfinity) STUB("Omr9X+YmT7I", sceKernelAprSubmitCommandBuffer_TEST) STUB("Oms065qIClY", sceSystemServiceReleaseFb0) +STUB("OmxJF0FvwWc", FTA_Remove_Module_winfonts) +STUB("On1X7TiPc9s", _ZN7WebCore17JSHTMLLinkElement6s_infoE) +STUB("On4LzFMH93c", _ZN7WebCore11MediaPlayer28setPreferredDynamicRangeModeENS_16DynamicRangeModeE) +STUB("On5Zzm0ftIc", _ZN7WebCore11DisplayList9TranslateC2Eff) +STUB( + "On6G2o3XkhY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE5beginEv) +STUB( + "On6gOmq+8y0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEppEi) +STUB( + "On9D5hGEwBI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEEC2Ev) +STUB("OnDKIoGiZqs", _ZN7WebCore9HTMLNames10detailsTagE) +STUB( + "OnDs7j3XvcY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE21intrusive_ptr_sub_refEPS9_) +STUB("OnFvmA5G+Y8", _ZN7WebCore11toDisplayP3ERKNS_15LinearDisplayP3IfEE) +STUB("OnHQSrOHTks", _PJP_C_Copyright) +STUB( + "OnKbAiejp14", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEC1EPKS8_) +STUB("OnOrY8PLUjs", + _ZN7WebCore27ContentSecurityPolicyClient26willSendCSPViolationReportERNS_7CSPInfoE) +STUB( + "OnQR2h1CwbY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEE21intrusive_ptr_sub_refEPS7_) +STUB("OnRiwSaBWME", _ZNK7WebCore17HTMLScriptElement11crossOriginEv) +STUB( + "OnYq6QdxD74", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEaSERKS9_) +STUB("OnYqOSVaU2E", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt6vectorI16SceNpTusVariableNS2_IS4_EEEEC1Ev) +STUB("OnZomlTnCwE", ucnv_cbFromUWriteSub_67) +STUB( + "Onj+Mfcmrzg", + _ZN7WebCore11MediaPlayerC1ERNS_17MediaPlayerClientENS_16MediaPlayerEnums21MediaEngineIdentifierE) +STUB( + "OnmHOS85r4U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEC2ERKS7_) +STUB("OnnrdOwyBi0", _ZN3JSC14JSGlobalObject6s_infoE) +STUB("OnoZKqFGNjA", EVP_EncryptUpdate) STUB("OnuHco+scT8", sceFontGraphicsProcessWaitSequence) +STUB( + "Ony+vkzAa3g", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("OnzGBf2v5bg", _ZN3sce2Np9CppWebApi14ConnectAccount2V212PartnerToken12setExpiresInERKl) +STUB("Oo-Thm6SQPA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEcvbEv) +STUB("Oo-hIEH2WdI", _ZN7WebCore17FrameLoaderClientnwEmPv) STUB("Oo0S5PH7FIQ", sceVoiceEnd) +STUB( + "Oo1PStCcw0Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEC2EPKS8_) +STUB("Oo1r8jKGZQ4", _ZNSt7collateIcEC1Em) +STUB( + "Oo2-qEXTDY0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("Oo6kgzJILqc", __tsan_mutex_create) +STUB( + "Oo727NKbdAA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEaSERKS7_) +STUB( + "Oo7oX7M3wnA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEC2EPS8_) +STUB("OoB1PunuaxY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEcvbEv) +STUB("OoK0Ah0l1ko", _ZN3sce2np6Thread4InitEPKNS1_5ParamE) +STUB("OoOcl7cXBC8", _ZN3WTF10TextStream8endGroupEv) +STUB( + "OoOg61nPhL8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEED2Ev) +STUB("OoPvtIr03Tc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ChildActivityAvailabilityEEptEv) +STUB( + "OoQlWcH-Kug", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "OoSsuUyGSv0", + _ZN7WebCore24DocumentMarkerController14markersInRangeERKNS_11SimpleRangeEN3WTF9OptionSetINS_14DocumentMarker10MarkerTypeEEE) STUB("OoTjfxl8-wI", sceNpSnsFacebookCreateRequest) +STUB( + "Ooav5oMG2Xg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEC2EPS8_) +STUB("OocnfcUM7Bk", _ZN3JSC11VMInspector23currentThreadOwnsJSLockEPNS_2VME) +STUB( + "OoiGOYVfwmg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEaSERKS9_) +STUB("OokInMhyhn8", _ZNK3sce2Np9CppWebApi7Matches2V119ResponseTeamResults9getTeamIdEv) +STUB("OonUxX6jVHU", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_6NpUserEED2Ev) +STUB("Oor7ukCXZOE", FcConfigDestroy) +STUB("Op4FMZd6Ej8", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession17getExpirationTimeEv) STUB("Op5E4tzSoiU", sceKernelSwitchToNativeMode) STUB("Op8TBGY5KHg", pthread_cond_wait) +STUB("OpAJ6yqzRIQ", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi27ParameterToLeaveGameSessionC2Ev) +STUB("OpC9gfPLl5g", o2i_ECPublicKey) +STUB( + "OpHW6PG0kBU", + _ZN9Inspector25DebuggerBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) +STUB( + "OpHuC8A1n8Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEC2Ev) +STUB("OpOYF-YC+OA", _ZN7WebCore8SVGNames7maskTagE) +STUB("OpP372F42eg", _ZN3sce2Np9CppWebApi7Matches2V125ResponseCompetitiveResult16unsetTeamResultsEv) +STUB( + "OpPi0P3UdRE", + _ZN3JSC12TypeProfiler36typeInformationForExpressionAtOffsetENS_28TypeProfilerSearchDescriptorEjlRNS_2VME) +STUB( + "OpZ5YasmMlk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEEcvbEv) +STUB("OpaOi6NGe9g", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament7BracketEEC1Ev) +STUB("OpcGwZFMmHs", _ZN3WTF18ParallelHelperPool13ensureThreadsEj) +STUB( + "OpeWUqciHrc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEE11release_refEv) +STUB( + "OpesJb2Aabc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("Opg4di-td2c", WKPreferencesGetAggressiveTileRetentionEnabled) +STUB( + "OpkaYcCmZJE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE7reserveEi) +STUB("Opn0dUvVw5M", _ZN9Inspector8Protocol16InspectorHelpers20getEnumConstantValueEi) +STUB("OpnuHE0j6kE", _ZN7WebCore16VisibleSelectionC1ERKNS_11SimpleRangeENS_9EAffinityEb) +STUB( + "OppFZoYkVUI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEE11release_refEv) STUB("OpuQOnIqZHw", sceVshAvcapOpenAudio) +STUB("OpxATprcZSo", jpeg_idct_7x7) STUB("OpyolX6RwS0", sceGnmSqttSwitchTraceBuffer) +STUB("Oq-KLpNjd1U", _ZN7WebCore11MediaPlayer10readyStateEv) +STUB("Oq0rbMLDllI", + _ZN3sce2Np9CppWebApi14SessionManager2V125ResponseGameSessionPlayerC2EPNS1_6Common10LibContextE) +STUB("Oq5aepLkEWg", _ZN3sce2np8WorkItem6CancelEi) +STUB( + "Oq7Ich7nnp8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEED1Ev) +STUB("OqA30GvDJP0", _ZN7WebCore11DisplayList11DrawEllipseD2Ev) STUB("OqD2LjbJsAA", sceMoveIsValidHandle) +STUB( + "OqDeBtNDIAk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEEaSERSA_) STUB("OqICoewmNZA", sceVnaStopAnalyze) +STUB("OqMHgjFp06I", _ZN3sce7Toolkit2NP2V28Commerce8CategoryD1Ev) +STUB("OqPy5+E3JrY", _ZThn16_N9Inspector19InspectorAuditAgentD0Ev) STUB("OqQKX0h5COw", sceFontTextSourceSetWritingForm) +STUB("OqaxEkRhr+8", FT_Get_PFR_Metrics) +STUB("Oqc2X663Vqc", _ZN10Deprecated25ScriptCallArgumentHandler14appendArgumentEx) +STUB( + "Oqeuo71PkrI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEE5resetEPS9_) +STUB("Oqfphi8E-Hc", _ZNK3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate12natTypeIsSetEv) +STUB( + "OqgABoZO888", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "Oql4IKlOA4w", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEE3getEv) +STUB( + "OqlqIesqYl8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("OqmzSQH+gMQ", _ZN10Deprecated11ScriptValueC1Ev) +STUB("Oqnl5eGoYbM", _ZNK3sce2Np9CppWebApi7Matches2V118RequestMatchPlayer14accountIdIsSetEv) +STUB( + "OqonQrpjRsY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEeqERKS9_) +STUB("OqpGu9soa5g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEED1Ev) +STUB("OqyS5QS9TUQ", Java_com_sony_bdjstack_org_bluray_vfs_VFSManagerImpl_proxyPrepareUpdating) +STUB( + "Oqzh8wyd-fM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEE5resetEPS9_) +STUB( + "Or+uVMoHADk", + _ZN9Inspector20DOMBackendDispatcher35setAllowEditingUserAgentShadowTreesElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("Or5lEE+bzNE", mono_aot_Sce_PlayStation_Orbis_Speechjit_got) +STUB("Or5qGUqr53A", _ZN9Inspector21InjectedScriptManagerdlEPv) +STUB("OrBToEv9m5Y", _ZN7WebCore9HTMLNames12languageAttrE) +STUB( + "OrMxRlr0aEg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEcvbEv) +STUB( + "OrNZTZb11yc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEC1EPS8_) +STUB("OrPeJ6qQgw4", _ZN7WebCore19ResourceRequestBase15clearHTTPOriginEv) +STUB( + "OrRw-EnJZ0E", + _ZN3sce2Np9CppWebApi14SessionManager2V136GetPlayerSessionsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_29GetPlayerSessionsResponseBodyEEE) +STUB("OrT87qTQ6iA", fuse_kern_chan_new) +STUB( + "OrWpmEZUJAI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEE5resetEPS9_) +STUB("OrZ9cX7aggs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEppEi) STUB("OrZuJTph3mc", sceNpRemotePlaySessionSignalingCreateJoinSession) +STUB( + "Orf2rx4UpaQ", + _ZN7WebCore22StorageEventDispatcher34dispatchLocalStorageEventsToFramesERNS_9PageGroupERKN3WTF6VectorINS3_6RefPtrINS_5FrameENS3_13DumbPtrTraitsIS6_EEEELm0ENS3_15CrashOnOverflowELm16ENS3_10FastMallocEEERKNS3_6StringESH_SH_SH_RKNS_18SecurityOriginDataE) +STUB("Ori3CK8Sx6g", cairo_set_line_join) +STUB("OriLXguAbyU", delegate_virtual_invoke_imt_11_p) +STUB( + "OrigG+IpN9E", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEdeEv) +STUB( + "Orm7c8fQw-s", + _ZN3sce7Toolkit2NP6Trophy9Interface18trophyRetrieveGameEPNS1_9Utilities6FutureINS1_14TrophyGameInfoEEEbi) +STUB("OrrXBYSyN+o", _ZN7WebCore21DiagnosticLoggingKeys18unlikelyToReuseKeyEv) +STUB("OrueJqG2sy8", ucal_setDateTime_67) +STUB("OrxTn8o9gRw", _ZN3JSC8Debugger17debuggerParseDataEmPNS_14SourceProviderE) +STUB("Os-PsgTwa7Y", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament7BracketEE12deepCopyFromERS7_) +STUB("Os0sZN9FHAc", YGNodeLayoutGetRight) +STUB("Os1rxlZYt-Y", glGetActiveUniformsiv) +STUB( + "Os22v74VJ6I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEppEi) +STUB( + "OsAmT5z22q8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUserC1Ev) +STUB("OsBH3E1PyQg", mono_install_load_aot_data_hook) +STUB("OsFExy0GoM8", _ZN12video_parser17cVideoOperatorMnvD0Ev) +STUB( + "OsFzD7RSPbw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEdeEv) +STUB("OsHOdYCHYmA", + _ZN7WebCore12ChromeClient35enterVideoFullscreenForVideoElementERNS_16HTMLVideoElementEjb) +STUB("OsHZUMpUq78", __asan_stack_free_8) +STUB("OsRRuAQRHew", Java_java_util_zip_ZipFile_open) +STUB("OsScTvpp46k", mono_aot_Sce_PlayStation_Orbisunbox_trampoline_addresses) +STUB( + "OsasXT0r-CU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("Osl3-BsmjZA", _ZN3WTF7CString11mutableDataEv) +STUB("Osmwk6YeU4Y", _ZN12video_parser5vpcom3rtc14TickAddSecondsEPmPKml) STUB("OsoVbh4-SN0", sceDataTransferTargetGetFailedUsers) +STUB( + "OsvKLrkB5ks", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "Osyaxa-SUqk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB( + "Ot0O-g+FzY4", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) STUB("Ot1DE3gif84", sceRtcGetCurrentDebugNetworkTick) +STUB("Ot1iqePgqhc", _ZNK7WebCore4Page9selectionEv) +STUB( + "Ot3NaKHgMBo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("Ot3u9DvTpq4", YGNodeStyleSetFlexGrow) +STUB("Ot6Xfs+KjC4", _ZN3JSC32JSDestructibleObjectHeapCellTypeC1Ev) +STUB("Ot7eG9q1h10", mono_aot_I18N_Otherplt_end) +STUB("Ot9s3ECMu5s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEC1ERS7_) STUB("OtDp-kpea2Q", sceFsISSchedStatCurrentThread) +STUB( + "OtEtHfMgSuk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEEcvbEv) +STUB("OtHCBIW+1UM", _ZN7WebCore11EventRegionC1Ev) +STUB("OtIFZ-p-KKU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEC1ERS7_) +STUB( + "OtMMAerdZRs", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyC1EPNS1_6Common10LibContextE) +STUB( + "OtO6ofBwYR0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEC1EPNS2_10LibContextE) +STUB( + "OtUHQHtzVQY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEE11release_refEv) STUB("OtUqYAzW0GM", sceNpAsmClientGetNpComInfo) +STUB( + "OtYYlwEnvLo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE3endEv) +STUB( + "OtdtgoutzT4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEC2EPS6_PNS2_10LibContextE) +STUB( + "Otf3a+pebX8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEC2EPS8_) +STUB( + "Otk1nUlCfoE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "OtxNengjrmU", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) STUB("Ou3iL1abvng", __stack_chk_fail) +STUB("Ou6QdDy1f7g", _Atomic_flag_test_and_set) +STUB( + "Ou6gFQPZuYA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEC2EPS8_) +STUB( + "Ou7GV51-ng4", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERx) +STUB( + "OuANLg6HL6U", + _ZN9Inspector28DOMDebuggerBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) +STUB( + "OuCUMQWZZSo", + _ZN9Inspector25NetworkFrontendDispatcher22webSocketFrameReceivedERKN3WTF6StringEdNS1_6RefPtrINS_8Protocol7Network14WebSocketFrameENS1_13DumbPtrTraitsIS8_EEEE) +STUB( + "OuGM0G9N0-A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEE11release_refEv) +STUB("OuK3RAoCf4Y", uidna_openUTS46_59) +STUB("OuKB8iuPqNE", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData10hasifMatchEv) STUB("OuKg+kRDD7U", pthread_rwlockattr_setpshared) +STUB("OuP9lNCYYxQ", Java_java_lang_SecurityManager_classLoaderDepth0) +STUB("OuRXgQzcKhQ", X509_get_ext) +STUB("OuTvXLhxQgw", _ZNK3sce2Np9CppWebApi14SessionManager2V117SearchGameSession12getSessionIdEv) +STUB("OuUrEfhYDdo", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_15CategoryInfoSubENS2_IS4_EEEEC1ERKS7_) +STUB("OuVGXFusQvs", WKBundleFrameCreateHitTestResult) +STUB("OuXDqqrOGP8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEEC1ERS9_) +STUB("OucBlCU37BI", GetUsbDeviceListArray) +STUB("Oue4aH7GqYs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEdeEv) +STUB("OufFIenC01c", WKPageUseFixedLayout) +STUB("Ouhaeks2MYo", mono_method_desc_search_in_class) +STUB( + "OujZdsvFRDU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEC1Ev) +STUB("OukNoRur97E", _ZN3sce2np9SemaphoreD2Ev) +STUB( + "OunDtJo44Uw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEEaSERKSA_) +STUB("OuoPEz9-UwA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEEaSERS9_) +STUB("OuoVW-SJiZQ", _ZNK3WTF11Persistence7Decoder28bufferIsLargeEnoughToContainEm) +STUB("OutzOzZp6-w", FTA_Remove_Module_otvalid) +STUB( + "OuwjG09ZAPg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE21intrusive_ptr_sub_refEPSA_) STUB("OuygGEWkins", sceHmdReprojectionInitialize) +STUB("Ouz5Q8+SUq4", _Stoxflt) +STUB("Ouz5ybi7b0c", _ZN7WebCore8JSPath2D9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("OuzRGuO0rv0", _ZNK3sce2Np9CppWebApi6Common6String4findERKS3_m) +STUB("OuzfLfU4tLU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEE3getEv) +STUB( + "Ov+LMc0ZMk8", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_9Recording4TypeEEESt8optionalIT_ERKN3WTF6StringE) +STUB("Ov+bca0VCio", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V124NatConnectivityToMetrics14getSuccessRateEv) +STUB( + "Ov+uJel0rQQ", + _ZN9Inspector23CanvasBackendDispatcher19requestShaderSourceElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "Ov5DzFXifY0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEE11release_refEv) STUB("Ov8hs+c1GNY", sceUserServiceSetGlsLiveQuality5) +STUB( + "Ov8nlzFinac", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEC1EPS6_PNS2_10LibContextE) +STUB( + "OvButtaVWD8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "OvC9xxjO8tc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEmmEv) +STUB( + "OvD2qRDZVEw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEppEv) +STUB("OvEWiY4r26g", _ZN7WebCore9HTMLNames10vspaceAttrE) +STUB( + "OvJWv2vcRaY", + _ZN8meta_gen11MsvPromoter24setKeyValue_TBLI_ProtectENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti) +STUB( + "OvStpPCEbbE", + _ZN3JSC8JSObject38putDirectIndexSlowOrBeyondVectorLengthEPNS_14JSGlobalObjectEjNS_7JSValueEjNS_18PutDirectIndexModeE) +STUB("OvTLUSlWifE", _ZN7WebCore36ISOProtectionSystemSpecificHeaderBox11boxTypeNameEv) +STUB( + "OvTcyflKnsQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEE11get_deleterEv) STUB("OvTzQTvO2eA", sceFsCheckFormat) +STUB("OvUHRdN8wEk", GCC_except_table110) +STUB("OvVp7GMRnMI", _ZN7WebCore17MouseRelatedEvent7offsetXEv) +STUB( + "OvWqugPoj+k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEEC1ERKSA_) +STUB( + "OvYTGpbeUyQ", + _ZN3sce2Np9CppWebApi14IdentityMapper2V319AccountIdMapFactory6createEPNS1_6Common10LibContextERKmPNS5_12IntrusivePtrINS3_12AccountIdMapEEE) +STUB( + "OvYgnGH-YPk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("Ovb2dSJOAuE", strcmp) +STUB("OvbYtSGnzFk", __cmpdi2) +STUB( + "OvgA9cAjXns", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEED1Ev) +STUB("OviE3yVSuTU", _FEps) STUB("OvsK57sLpQE", sceUlpMgrRegisterProtocol) +STUB("Ovt7AP-GfM4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEdeEv) +STUB( + "Ovuffw32ExY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEC1ERS7_) +STUB( + "OvvkxmoenUA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEED2Ev) +STUB( + "Ow+1x9B1ZHo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "Ow20oyIVorU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEixEm) +STUB("Ow27qMGiCBU", _ZN3WTF4SHA116computeHexDigestEv) STUB("Ow348nbrI1I", sceAvSettingChangeOutputMode) +STUB( + "Ow53KHkcowI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEE7add_refEv) +STUB( + "Ow53YXkhW1A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEEdeEv) +STUB("Ow5kOQXiuSI", _ZN3JSC8Bindings13RuntimeObject11getCallDataEPNS_6JSCellERNS_8CallDataE) +STUB("Ow5mMPNmDGI", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo9getslotIdEv) +STUB( + "Ow8jTghMuRg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEC2ERS7_) +STUB( + "Ow8t4mj9b8g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEC2ERKS7_) +STUB("OwBDhaEhPzM", monoeg_g_list_append) +STUB("OwEucHOFqIo", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfileC2Ev) +STUB("OwFnPIKTBSk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEC1Ev) +STUB( + "OwHMBmcSo7U", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("OwVWMhieaHs", WKWebsiteDataStoreSetStatisticsIsRunningTest) +STUB( + "OwW7MKt74nE", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V127ReputationPropertiesFactory6createEPNS1_6Common10LibContextEiiiiiPNS5_12IntrusivePtrINS3_20ReputationPropertiesEEE) +STUB("Owa0jK8oppw", monoeg_g_hash_table_destroy) +STUB("OwbUIyxkkzg", mono_aot_Sce_Vsh_PsnMessageUtiljit_code_start) +STUB("OwcpepSk5lg", _ZNSt14numeric_limitsIxE8digits10E) +STUB("OwdCvNr3VXs", _ZN7WebCore12SharedBufferC2EON3WTF14FileSystemImpl14MappedFileDataE) +STUB( + "OweGskYmpu0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEC1EPKS8_) +STUB("OwfBD-2nhJQ", _ZTVSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE) +STUB( + "OwhkRKoIMHA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEEcvbEv) STUB("OwjivtyfODU", sceKernelDeleteCpumodeEvent) +STUB("OwlBB-t-+SY", GCC_except_table101) +STUB("OwsjgCQyZUI", _ZN3sce2npneERK16SceNpTitleSecretRKNS0_13NpTitleSecretE) +STUB("OwtHG1s9WyQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEEaSERKS9_) +STUB("Oww35T-VZ34", _ZN9Inspector15RemoteInspector11setupFailedEj) +STUB("OwyHvMkCWP8", _ZN3WTF13printInternalERNS_11PrintStreamEl) +STUB("Ox-eSG-7e34", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicket9unsetviewEv) STUB("Ox9i0c7L5w0", scePthreadRwlockRdlock) +STUB("OxDS41BqXws", _ZN9Inspector21CSSFrontendDispatcher17styleSheetRemovedERKN3WTF6StringE) STUB("OxEIUqkByy4", pthread_mutex_getyieldloops_np) +STUB("OxGTTzJWSRQ", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_11CountryInfoEE3getEv) STUB("OxI6k0G6RlU", sceNpManagerIntNotifyPlusFeature) +STUB("OxIG2zZW0Kw", unorm2_append) +STUB("OxJrPp8clPA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEEppEv) +STUB("OxLHJgWGubE", _ZN3sce7Toolkit2NP2V24Core7Request16ThreadPropertiesD2Ev) +STUB( + "OxLM2TWdyoU", + _ZN3JSC7JSProxy25getStructurePropertyNamesEPNS_8JSObjectEPNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("OxO+V0ouoS4", _ZN3sce4Json6Object8iteratorC2Ev) +STUB("OxRLrX7ibvM", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_7NpUsersEEC2Ev) +STUB( + "OxS4gRy0oyY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEEC2ERSA_) +STUB("OxV2cTcE3xs", _ZN3sce2Np9CppWebApi7Matches2V120RequestPlayerResults7setRankERKi) +STUB("OxcbjdWrK-o", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12BandwithInfoEEC2Ev) +STUB( + "OxeNeflLGhc", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi42ParameterWithBinaryRequestBodyToUploadDataD1Ev) STUB("OxhIB8LB-PQ", pthread_create) +STUB("OxmRyHnBurE", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_17MessageAttachmentEE3getEv) +STUB("OxtSoOEVx64", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEE11get_deleterEv) +STUB( + "Oy4by+G78Zo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEEC1EPS8_PNS2_10LibContextE) +STUB("Oy52YlgLGxA", _ZN7WebCore10TimeRangesC2Ev) STUB("Oy6IpwgtYOk", lseek) +STUB("Oy92GWEKFIQ", + _ZN7WebCore22EmptyFrameLoaderClient50dispatchDidReceiveServerRedirectForProvisionalLoadEv) +STUB("Oy9Xuaw3bQ8", mono_assembly_setrootdir) +STUB( + "OyAGuxnrH6o", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEptEv) +STUB( + "OyAW4YqsZD0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("OyEkVRNrR7s", _ZN3sce7Toolkit2NP2V212NetworkUtils12BandwithInfoD1Ev) +STUB( + "OyG8-a6ypWk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEEC2Ev) +STUB( + "OyHjrgdqIWg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEE11release_refEv) +STUB("OyNM6zDYiTo", _ZN9Inspector15RemoteInspector14registerTargetEPNS_24RemoteControllableTargetE) +STUB("OyOAu7mqmos", fuse_get_context_compat22) STUB("OySMIASmH0Y", sceUserServiceGetNpAge) STUB("OyVqOeVNtSk", sceAudio3dPortClose) +STUB( + "OyX2lR7IxV4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEC2EPS8_) +STUB( + "Oye5gt8RyjQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEEC2Ev) +STUB( + "OylAXctXTlU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEC1EPKS8_) +STUB( + "OylO3B2fCE0", + _ZN3sce7Toolkit2NP2V212ActivityFeed14postPlayedWithERKNS3_7Request14PostPlayedWithEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("OypvNf3Uq3c", _ZNSt14overflow_errorD2Ev) +STUB( + "Oyq3F29XQ2E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE8pushBackERKS8_) +STUB( + "Oyqymks-JQI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("OyrA1qLyRbE", PubSubCreateContext) +STUB( + "OywagC3ISIc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEmmEi) STUB("OyxRC7GT4Es", sceVdecCoreSyncDecode) +STUB( + "Oyzb0r+8h7E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE10setContextEPNS2_10LibContextE) +STUB("Oyzf6kDk6Ns", cairo_pop_group_to_source) +STUB( + "Oz+XKhV+ByE", + _ZN3sce2Np9CppWebApi14SessionManager2V150GetUsersAccountIdPlayerSessionsResponseBodyFactory7destroyEPNS3_43GetUsersAccountIdPlayerSessionsResponseBodyE) +STUB( + "Oz-GVLZIs8k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEC2Ev) +STUB( + "Oz5tpCZoK+s", + _ZN7WebCore17PageConsoleClient10addMessageEN3JSC13MessageSourceENS1_12MessageLevelERKN3WTF6StringEONS4_3RefIN9Inspector15ScriptCallStackENS4_13DumbPtrTraitsISA_EEEE) +STUB("OzE-5G8NTN8", _ZNK3JSC16ScriptExecutable8lastLineEv) +STUB("OzJfg7CVeTs", _ZN7WebCore15AffineTransform5scaleERKNS_9FloatSizeE) STUB("OzKvTvg3ZYU", sceNpAbortRequest) +STUB( + "OzLn5sVseRQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEC2EPNS2_10LibContextE) +STUB("OzLx1hQ0HLg", + _ZN7WebCore11HistoryItem31setShouldOpenExternalURLsPolicyENS_28ShouldOpenExternalURLsPolicyE) +STUB("OzMC6yz6Row", _ZTSm) +STUB("OzMS0BqVUGQ", _ZNKSt12bad_weak_ptr4whatEv) +STUB("OzSgRd8xkGM", u_setTimeZoneFilesDirectory_67) +STUB("OzY7NHs2BT0", _ZN7WebCore12ChromeClient25handleAutoFillButtonClickERNS_16HTMLInputElementE) +STUB("Ozhx1sJpIqQ", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11SessionDataEE12deepCopyFromERS7_) +STUB( + "OziDOXsIdUo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEEC1ERSA_) +STUB("Ozk+Z6QnlTY", _ZSt7_MP_RemPyy) +STUB( + "OzmuObrxBrA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEC2Ev) +STUB( + "OznFy9ajEUw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE7reserveEi) +STUB( + "Ozq5zNLo6RI", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponse8fromJsonERKNS_4Json5ValueE) +STUB("OzsnvV0TdHA", _ZNK7WebCore20ISOOriginalFormatBox10dataFormatEv) +STUB( + "OzwWhst3b6U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEmmEi) STUB("P+0ePpDfUAQ", sceNetAddrConfig6Stop) +STUB("P+1ao3kggiw", _ZN12Mp4Retriever13processEsDescERPhii) +STUB( + "P+3r2zgKoqY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEC1Ev) +STUB("P+7-lg5ASRQ", _ZN3sce7Toolkit2NP2V212NetworkUtils12Notification14NetStateChangeaSERKS5_) STUB("P+9UQOe1F2g", sceMouseGetHandle) +STUB("P+9gve1oMNc", delegate_virtual_invoke_9_p) +STUB( + "P+Ac1OZcfuw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEdeEv) +STUB("P+Hm5enx01Y", cairo_mesh_pattern_set_corner_color_rgba) +STUB("P+L2EGdprKk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEED2Ev) +STUB("P+O-4XCIODs", SSL_ASYNC_initServer) +STUB( + "P+PyF7x8RZY", + _ZN3sce7Toolkit2NP8Matching9Interface31getAdditionalSessionInformationEPNS1_28AdditionalSessionInfoRequestEPNS1_9Utilities6FutureINS1_28AdditionalSessionInformationEEEb) +STUB("P+QOsZCRg1A", ulist_getNext) +STUB("P+QUhowsumc", _ZN3sce2Np9CppWebApi6Common13ParameterBase20setWebtraceTagHeaderEPKc) +STUB("P+Rav2FdFSo", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110ResultTypeEEC2Ev) STUB("P+RwmMQvqvA", sceCesRefersUcsProfileCp1257) +STUB("P+T9JtolZRw", _ZN7WebCore11FrameLoader6openerEv) +STUB( + "P+TjJLPxhUw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEC2EPKS8_) +STUB("P+YZTvx70k4", _ZTVN3JSC19HeapSnapshotBuilderE) +STUB("P+ZjKSLi5lg", + _ZN15AbstractStorage13YoutubeFolderC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) STUB("P+bTZBk3z08", scePssCameraGetCameraConnection) +STUB("P+cIOdeN6ig", X509_VERIFY_PARAM_set1_ip_asc) +STUB( + "P+dft5JePfI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEE11get_deleterEv) +STUB("P+f2tgVi++w", _ZN12video_parser5vpcom6MallocE) +STUB("P+hgu937lFs", hb_buffer_add_utf16) +STUB( + "P+hhuNQtlN8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEEaSERKSA_) +STUB("P+q1OLiErP0", _ZNKSt7codecvtIcc9_MbstatetE5do_inERS0_PKcS4_RS4_PcS6_RS6_) +STUB( + "P+r1bnoSZEw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEE11release_refEv) +STUB("P+vTxd9BM2Q", GCC_except_table198) +STUB("P+w-H1l0kaI", uprv_decNumberScaleB_67) +STUB("P+zMqXom43M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEC2ERKS8_) +STUB( + "P+zdLoOUrXo", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("P--EhS6lDxw", _ZN7WebCore12JSTimeRanges14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB( + "P-4jpaK85V4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEEaSERKSA_) +STUB( + "P-6ZeRTRR5Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEEC1Ev) STUB("P-7MVfzvpsM", sceCameraSetSharpness) +STUB("P-8awVLZpDw", _ZN7WebCore5ColoraSERKS0_) +STUB( + "P-DIfWP2WnY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEE11release_refEv) +STUB("P-DYctUODfM", _ZN7WebCore16NetworkSendQueue7enqueueEON3WTF7CStringE) +STUB( + "P-FhJEpBQEs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEC2EPKS8_) +STUB( + "P-FzsGKXYno", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEC2EPS8_) +STUB("P-HGfOZxkgU", _ZN3WTF13printInternalERNS_11PrintStreamEPKc) +STUB( + "P-HXoN945gk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEC2EPNS2_10LibContextE) +STUB("P-KCpYVj4dQ", bp) +STUB( + "P-NYYIs-cOo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE8capacityEv) +STUB( + "P-OkVK1lUUw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEE11get_deleterEv) +STUB("P-QRJAEQCSo", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V510AnnotationEEmmEv) +STUB("P-SlUALcYlM", _ZNK3sce2np10JsonObject8GetFieldEPKc) +STUB("P-T-RQ+3D1s", _ZNK7WebCore15HTMLBaseElement4hrefEv) +STUB("P-Tbv5G7L24", _ZN3JSC7Symbols26ModuleTranslatePrivateNameE) +STUB("P-Tq6lGgQUs", _ZN3sce7Toolkit2NP2V28Presence7Request19LocalizedGameStatusD1Ev) +STUB( + "P-V5KkJTbK0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEEC2ERKS9_) +STUB( + "P-WuZC+fYQU", + _ZN9Inspector33ApplicationCacheBackendDispatcher19getManifestForFrameElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("P-X-pyb+DqQ", _ZN7WebCore18JSHTMLImageElementD2Ev) +STUB("P-Zhj99ghLM", _ZNK7WebCore11MediaPlayer5endedEv) +STUB("P-ZqoL-NExI", + _ZN3sce2Np9CppWebApi14SessionManager2V116FromNonPsnMember8fromJsonERKNS_4Json5ValueE) +STUB("P-a-cc3ydug", YGNodeStyleSetPaddingPercent) STUB("P-awBIrXrTQ", sceSystemServiceActivateHevcSoftTerm) +STUB("P-emrwPsot8", mono_aot_Sce_Vsh_GameListRetrieverWrapperunwind_info) +STUB( + "P-ieYKfk9jA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEixEm) +STUB( + "P-iuw1smvw0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("P-mrAc2R7PQ", _ZN4Manx14NetworkProfile9getStringENS_14SettingOptTypeE) +STUB( + "P-t6su3FmZs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEptEv) +STUB( + "P-uEQ-BffY0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEEC1Ev) +STUB( + "P01HtOfxTtE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEE11release_refEv) +STUB("P01hbLcSwL8", _ZN9Inspector31RuntimeBackendDispatcherHandlerD0Ev) STUB("P02oAVAxens", sceVnaStartAnalyze) +STUB("P0383AW3Y9A", _ZNSt5ctypeIwED1Ev) STUB("P04LQJQZ43Y", sceHmdInternalGetDeviceInformationByHandle) STUB("P04ZezDSgk0", sceHeadTrackerUpdate) +STUB( + "P04kqB3lBko", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "P06XnxTpQrQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEED1Ev) +STUB("P08aaBrZn+c", sr03) +STUB( + "P08jjQRCj8o", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE4sizeEv) +STUB("P0DKy-qX4Ps", rgctx_fetch_trampoline_rgctx_127) +STUB( + "P0J-IzEH29I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEED2Ev) +STUB( + "P0M0YeyW+Lo", + _ZN7WebCore15JSSVGSVGElement6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_13SVGSVGElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB("P0TnSslRfw8", delegate_virtual_invoke_12) +STUB("P0V8cbW+Z-E", _ZNK9Inspector15RemoteInspector21hasActiveDebugSessionEv) +STUB( + "P0XhLb9v3Ek", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEE3getEv) +STUB("P0aGhG6WCo0", mono_aot_JSC_Netunbox_trampolines) +STUB( + "P0dHShpb0Ic", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE7reserveEi) +STUB( + "P0iS-Z3SJ7U", + _ZN7WebCore24CoordinatedGraphicsLayer21computePixelAlignmentERNS_10FloatPointERNS_9FloatSizeERNS_12FloatPoint3DES4_) +STUB("P0jjY6bxakI", __sys_dynlib_get_list2) +STUB( + "P0kWAW11ryo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEEC2Ev) +STUB("P0mseHxZBwA", _ZN7WebCore12EventHandler21handleMousePressEventERKNS_18PlatformMouseEventE) +STUB( + "P0nBeo6UF-Q", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody12setVariablesERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_18IdempotentVariableEEEEE) +STUB("P0nO6i13G+0", _ZN3NTF21ResourceRequestLogger9AdminPage4htmlEv) +STUB("P0nRNq2s9yM", _ZN15AbstractStorage11LocalFolderD0Ev) +STUB("P0pBar5X0uA", + _ZN3sce2Np9CppWebApi7Matches2V126RequestTeamMemberStatisticC2EPNS1_6Common10LibContextE) +STUB("P0uFWnN7IWs", _ZN7Nicosia5SceneD2Ev) +STUB("P0vACtrVWtw", _ZNK7WebCore14DocumentLoader12subresourcesEv) +STUB( + "P0yxZ-j4cwE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEE7get_refEv) +STUB("P11NTE-UQXM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE8copyFromERKS7_) +STUB("P12aEEi4s4E", WKHitTestResultCopyAbsoluteImageURL) STUB("P14ATpXc4J8", sceSslCreateSslConnection) +STUB("P15JPrJR0hY", unum_getSymbol_59) +STUB("P17jonIyIB8", _ZN4IPMI4impl10ServerImpl13runDispatcherEPvm) +STUB("P191XrgQkgM", g_get_user_name) STUB("P1CugZ99Uzc", sceAgcDcbEndOcclusionQueryGetSize) +STUB( + "P1De3KPWUDk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEE7add_refEv) +STUB( + "P1H6kZsQVhs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEC1Ev) +STUB( + "P1L-g98OIQY", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getBoolean3Ev) +STUB("P1MS5WSNAjY", usearch_setOffset_67) +STUB( + "P1NfjjLSBUo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEC2Ev) +STUB( + "P1SOorM5x7A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEED2Ev) +STUB("P1T4OHkwjKg", mono_aot_System_Runtime_Serializationunwind_info) +STUB( + "P1aOKThI9pk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEaSERKS7_) STUB("P1bIHoga4jE", sceVideoOutDriverGetEopHandle) +STUB( + "P1bQwZGkhRs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE5beginEv) +STUB("P1cH+hz2GyE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEEaSERS9_) +STUB( + "P1jT7bHXADg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEED1Ev) +STUB( + "P1maMW4JVEY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEC1EPNS2_10LibContextE) +STUB( + "P1qcQXocrO4", + _ZN3sce2Np9CppWebApi15Personalization2V118ErrorEntityFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_11ErrorEntityEEE) +STUB( + "P1rAe+hodFg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEE3getEv) STUB("P1su7LBMSUw", sceLoginMgrServerLoginServiceGetRequestParam) +STUB("P1xs1VUzcj0", AnnotateExpectRace) STUB("P1yolimtkbU", sceFsDevpfsDeregisterEvent) +STUB( + "P2+B5JnxVkM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEED2Ev) +STUB( + "P2+GP4bkjis", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE21intrusive_ptr_add_refEPS7_) +STUB("P21OxFwKDac", _ZN3sce7Toolkit2NP2V26Trophy7Request20GetTrophyPackSummaryD1Ev) +STUB( + "P29LXIeeNZY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE5beginEv) +STUB("P2GaYQ7Y4lg", _ZN3PAL13SleepDisablerC2EPKcNS0_4TypeE) +STUB("P2IjaGD66NE", cairo_font_options_copy) +STUB("P2M834ekYIw", _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_7DOMRectE) +STUB("P2O3gx3qsmY", rgctx_fetch_trampoline_mrgctx_102_p) +STUB("P2QIyj9sjR0", _ZN3JSC16setNeverOptimizeEPK15OpaqueJSContextPK13OpaqueJSValue) +STUB("P2QLsX2dKfw", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats18getFrequentlyMutedEv) +STUB("P2S3--pUqtw", _ZN7WebCore12JSTimeRangesD2Ev) +STUB( + "P2SgI98dnlk", + _ZN3sce2Np9CppWebApi14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBody16unsetInvitationsEv) +STUB("P2SmsaHHQRM", + _ZN7WebCore9CookieJarC1EON3WTF3RefINS_22StorageSessionProviderENS1_13DumbPtrTraitsIS3_EEEE) +STUB("P2YwyQoFkPM", _ZN8meta_gen11MsvPromoter22retrieveAudioCodecInfoEv) +STUB( + "P2aWpV01QJ4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "P2awWOJZBC0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEEaSERKSA_) +STUB( + "P2bH9wk9FzQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("P2cGbJ5nD1w", _ZNK3sce2np10JsonNumber6GetNumEPm) +STUB( + "P2dWVeUNHwY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEplEm) +STUB( + "P2g13CR6WNw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEED2Ev) +STUB( + "P2m+E-1dt20", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEC1Ev) +STUB("P2sq9TH-fEA", _ZNK7WebCore11FrameLoader10isCompleteEv) +STUB("P2vpb9aWXtI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEC2Ev) +STUB( + "P2y1IlzY9eo", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEiRNS2_10LibContextEPT_m) +STUB( + "P3+Jzvo8ie4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEC1Ev) STUB("P330P3dFF68", Need_sceLibc) +STUB("P38JvXuK-uE", fegettrapenable) STUB("P38mNmonvHs", scePlayReadyMemRealloc) +STUB("P3AeWBvPrkg", sce_net_in6addr_loopback) +STUB( + "P3BFNzWVioc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("P3BsMTTfmZU", _ZNK15AbstractStorage12LocalContent7GetStatEPNS_4StatE) +STUB("P3CKnw57rHI", _ZN8meta_gen13JpegRetriever16GetPointerToTextEPKhjPPcPj) +STUB("P3DleBvp41I", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_6NpUserEE3getEv) +STUB( + "P3E1U9d4-0M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) STUB("P3G4jIsxkZg", sceFontGraphicsTextureGetSurface) +STUB("P3J6QhgFdXQ", JNU_ThrowIOException) +STUB( + "P3LczZ7wR7E", + _ZN3sce2Np9CppWebApi14SessionManager2V131JoinedPlayerSessionWithPlatformC2EPNS1_6Common10LibContextE) +STUB("P3NGPgoeLII", _ZN3WTF17double_conversion23StringToDoubleConverter14StringToDoubleEPKcmPm) +STUB( + "P3OXRjNwtSE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEC2EPS8_) +STUB("P3anr7ige48", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBodyC2EPNS1_6Common10LibContextE) +STUB("P3dTfZ0gFvQ", _ZN7WebCore21JSRemoteDOMWindowBase25s_globalObjectMethodTableE) +STUB("P3daBLFFREw", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainerC1Ev) +STUB( + "P3gUyz0kWxw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE4sizeEv) +STUB("P3oItRLweeg", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124NatConnectivityToMetricsD2Ev) +STUB("P3tcguA8xus", __ubsan_handle_out_of_bounds) STUB("P41kTWUS3EI", scePthreadGetschedparam) +STUB( + "P43y5NESKKs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEneERKS9_) +STUB("P44iOLZzpwU", + _ZN7WebCore12SettingsBase18setFixedFontFamilyERKN3WTF12AtomicStringE11UScriptCode) +STUB( + "P46utwq+KRQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB("P48gb1E+oo0", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container14publisherIsSetEv) +STUB("P4AZdmrG9iQ", _ZN7WebCore8Settings37setScrollingPerformanceLoggingEnabledEb) +STUB("P4BojBRzdy4", GCC_except_table300) +STUB("P4HU0NvfOtk", _ZN3JSC11VMInspector22dumpCellMemoryToStreamEPNS_6JSCellERN3WTF11PrintStreamE) +STUB("P4OkrF+7hsM", _ZNK3sce2Np9CppWebApi11UserProfile2V114PersonalDetail20profilePicturesIsSetEv) +STUB( + "P4Tlb6gPNU4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEC2Ev) +STUB("P4VhCJbgaOw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEC1Ev) +STUB("P4X4vGiFtNw", _ZN4Manx9tailmatchEPKcS1_) STUB("P4YpPziLBd4", sceNpGlobalHeapGetAllocatorExPtr) +STUB("P4Z2cWdzO5o", sk_pop_free) +STUB("P4bb6JxoBdE", JSWeakObjectMapRemove) +STUB( + "P4er0pNcQBY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEmmEi) +STUB( + "P4f9nZApU7s", + _ZN3WTF20ParallelHelperClient7setTaskEONS_6RefPtrINS_10SharedTaskIFvvEEENS_13DumbPtrTraitsIS4_EEEE) +STUB( + "P4fSIJn1i48", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "P4lAd0bUyF4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEED2Ev) +STUB("P4pAkAj-+U0", mono_assembly_addref) +STUB("P4q5pGTwqw0", WKPageConfigurationSetBackgroundCPULimit) +STUB( + "P4qh57k+TXs", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEEC1ERKSC_) +STUB( + "P4sWQuI4WLQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEptEv) +STUB("P4z5uq2vHzk", + _ZN3sce7Toolkit2NP9NpTitleId14setTitleSecretERK12SceNpTitleIdRK16SceNpTitleSecret) STUB("P4zZXE7bpsA", sceNetBandwidthControlSetDefaultParam) +STUB( + "P5-A9vsDU6s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEE3getEv) +STUB("P50d7oZFzWw", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_11CountryInfoEED1Ev) +STUB( + "P54Sjj9YzP4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEneERKS9_) STUB("P563r-eGAh4", sceLncUtilRaiseException) +STUB( + "P569zeD7Qgo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEcvbEv) +STUB("P5AY0AQt8MU", _ZN12video_parser7cVpUtil14vp_ff4_strncmpEPvPKcS3_m) +STUB( + "P5EjMD5fics", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEC1Ev) +STUB("P5I4gn0zYfs", __cxx_global_var_init .4) +STUB("P5LQYLxCX44", mono_aot_I18Nunbox_trampoline_addresses) +STUB("P5MUr8Lot6U", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container14setDescriptionEPKc) +STUB("P5N5znXLNUM", _ZN3sce7Toolkit2NP2V24Core7Request10InitParamsD2Ev) +STUB("P5PrmNqXS1Y", _ZN3JSC23MacroAssemblerX86Common18s_sse4_2CheckStateE) +STUB("P5Tr3gQgcp8", Java_com_sony_bdjstack_core_CoreXletContext_n_1notifyDestroyed) +STUB( + "P5W+taaWVgw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEeqERKS9_) STUB("P5b86RAAMx4", sceApplicationGetCanvasHandleByApplicationLocalPid) +STUB("P5csbQB7tDs", WKDatabaseManagerGetDatabaseDetailsCurrentUsageKey) STUB("P5dPeiLwm-M", sceImeConfigSet) STUB("P5e53dTYzI0", sceVideoCoreAsyncSendRequest) +STUB("P5gxJLwyQFw", mono_bounded_array_class_get) +STUB("P5hjbjUCnqM", _ZN3JSC13WatchpointSet11fireAllSlowERNS_2VMEPKc) +STUB( + "P5mDlGPLSUU", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC1Ev) +STUB("P5mzaARyans", JNU_ThrowIllegalAccessException) STUB("P5pdoykPYTk", sceHttpReadData) STUB("P5slpXsXy04", sceLibSecureRemoveHash) +STUB( + "P5u0tWX34Tw", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSessionIdRequestBodyFactory7destroyEPNS3_37PatchGameSessionsSessionIdRequestBodyE) +STUB("P5vMn5NRcks", _ZN3sce7Toolkit2NP2V27Session7Request6UpdateC1Ev) +STUB("P5wdogQ-H6o", YGNodeSetPrintFunc) +STUB("P66BWCp8Ps4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEEdeEv) +STUB("P67QGjv0uSA", WKFramePolicyListenerUseInNewProcess) STUB("P6A3ytpsiYc", sceHttpDeleteConnection) +STUB("P6DuZ6UTmmk", _ZN7WebCore14JSVoidCallbackC2EPN3JSC8JSObjectEPNS_17JSDOMGlobalObjectE) +STUB("P6Fc747iUjI", _ZN7WebCore15PasteboardImageC2Ev) +STUB("P6LPhROP9zM", rgctx_fetch_trampoline_mrgctx_127) +STUB( + "P6NRugbIEOk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("P6QUZKaAh6g", _WLdtob.inf) +STUB("P6RoADVaWGM", _ZN3JSC7Symbols21loadModulePrivateNameE) +STUB( + "P6Sxd5JTvtQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEE5resetEPS6_) +STUB("P6WOAeb0lJ8", ft_corner_is_flat) +STUB( + "P6YJ-GvdVf0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) STUB("P6Yiba6u7cc", scePfsPreadDecompressBlock) +STUB( + "P6ZMLf1qIVQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEC1Ev) +STUB("P6aCGp6wCt8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE5beginEv) +STUB( + "P6bbdBhNoH4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEmmEi) STUB("P6dUEXUHXjo", sceKernelSetCallRecord) +STUB( + "P6eb93gKI9I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEEC1EPS8_PNS2_10LibContextE) +STUB( + "P6fEm9IZ3QY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEE11release_refEv) +STUB("P6fVk0LPubc", NpStateManagerRtcSetTick) STUB("P6fkTotWFEg", sceNpAsmClientGetNpComInfo2A) +STUB( + "P6gQ9HIjJpM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE5emptyEv) +STUB("P6lAFGsZE9Q", wpe_pasteboard_string_free) +STUB("P6lcDr1Z3dM", _ZN7WebCore9HTMLNames21aria_errormessageAttrE) +STUB("P6mctRuryDY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEEC1ERKS7_) +STUB("P6nwSxCF8uE", mono_image_get_table_rows) +STUB( + "P6nyDDbDYhE", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetrics8fromJsonERKNS_4Json5ValueE) +STUB( + "P6oRKW4NWSw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE7reserveEi) STUB("P6piso307SE", sceNpNotifyPremiumFeature) +STUB( + "P6uaHZjCnAQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12string7IsSetEv) +STUB( + "P6yv7XTmO84", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE5emptyEv) +STUB( + "P7-0yHtE12k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEmmEi) STUB("P71fvnHyFTQ", sceSystemServiceRequestToChangeRenderingMode) +STUB("P72uwJlJjX4", _ZN4IPMI6ServerC2Ev) +STUB( + "P77IY4z83vk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEEC1Ev) +STUB( + "P77V1jDFKvw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEEptEv) +STUB("P7CvsMqVTPo", _ZN7WebCore11MediaPlayerC2ERNS_17MediaPlayerClientE) +STUB( + "P7Gx3KmUoPA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "P7Hb12inrhQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("P7Ibge-VoSQ", _ZNK3JSC7JSValue19toWTFStringSlowCaseEPNS_14JSGlobalObjectE) +STUB( + "P7MfzTCEMJ4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEdeEv) +STUB("P7Q2NjKAl60", JVM_GetCPClassNameUTF) +STUB( + "P7UcaJAFtpw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("P7Ut3iZu-f8", uhash_puti_67) +STUB( + "P7W+eeku72Y", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEixEm) +STUB( + "P7X8PePB7ro", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEEiRNS2_10LibContextEPT_m) +STUB( + "P7XnEkvYakU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEE7add_refEv) +STUB("P7Z0FByLPRw", Java_java_awt_GnmImage_nativeSetRGBArray) +STUB( + "P7ZQ+bqg-6k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEmmEv) +STUB( + "P7atUgtye6A", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE5beginEv) +STUB("P7ffGUoQ824", _ZN7WebCore11EventTarget24dispatchEventForBindingsERNS_5EventE) +STUB("P7gLTdgFSDQ", _ZN7WebCore18ScrollingStateTreeC1EPNS_25AsyncScrollingCoordinatorE) +STUB("P7hXEsJitHc", mono_declsec_get_linkdemands) +STUB( + "P7kIjHVgHQ4", + _ZN9Inspector24BrowserBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) +STUB("P7l9+yBL5VU", _ZTSSt12bad_weak_ptr) +STUB("P7mHOXXw6b8", _ZN3sce7Toolkit2NP2V212ActivityFeed5MediaC2Ev) +STUB( + "P7r-gO79fuU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEC2Ev) +STUB( + "P7rAGeMfEZk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEEptEv) +STUB("P7s2WVUikNU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEED1Ev) +STUB( + "P7t5lGbkSZE", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM18LiveRegionRelevantEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB( + "P7tMBqiUI3E", + _ZN8meta_gen11MsvPromoter23setKeyValue_TBLI_OffsetENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti) +STUB("P7vPDE-pNrw", metadata_alloc) +STUB("P7x43vs+Yck", ulistfmt_closeResult_67) +STUB("P84DgVeO6RE", _ZN7WebCore11MathMLNames9mstyleTagE) +STUB("P87dJGbKIaE", udatpg_getFieldDisplayName_67) +STUB("P8D+n5jin08", _ZNK7WebCore5Color7cssTextEv) +STUB("P8F2oavZXtY", _ZNSt8ios_baseD2Ev) +STUB( + "P8H6CcFOPKc", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V112StatsFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_5StatsEEE) +STUB("P8QD9lY82pI", _ZN7WebCore11MediaPlayerC1ERNS_17MediaPlayerClientE) +STUB( + "P8VdZ-naNVQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB( + "P8Xh0-7Itww", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "P8cxvCg0D0I", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectator12setsessionIdEPKc) +STUB( + "P8hXFXDXj8o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEmmEi) +STUB("P8hfXGY4+2U", + _ZNK7WebCore16DocumentTimeline48numberOfAnimationTimelineInvalidationsForTestingEv) +STUB( + "P8mW9mjSCP4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEEaSERS9_) +STUB("P8pOQNMw7pQ", _ZNK3sce2Np9CppWebApi6Common6VectorImE5emptyEv) +STUB("P8x+Onl4oPA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStatsC1Ev) +STUB("P8y9OgqOGts", WKBundleFrameGetPage) STUB("P9+90HStC44", sceVisionManagerClose) +STUB("P9-3hpI-YCg", uloc_getDisplayKeyword_67) +STUB("P998ZUmJxX8", uidna_nameToASCII_UTF8_67) +STUB( + "P9BQIwO++10", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE7reserveEi) +STUB("P9Bggzmp21Q", __sanitizer_verify_contiguous_container) +STUB( + "P9Lj4GsBw5o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEC1ERS7_) STUB("P9M5RftRHFE", sceKernelDebugGetSdkLogText) +STUB( + "P9Pe6MpybxE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEEcvbEv) +STUB("P9QB1NK29Yg", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIiEC2EPKi) +STUB( + "P9SUh0BqrAY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEE11get_deleterEv) +STUB( + "P9Tm-o0KYfo", + _ZN7WebCore19StorageQuotaManager24requestSpaceOnMainThreadEmON3WTF17CompletionHandlerIFvNS0_8DecisionEEEE) +STUB("P9VdJPTTQuc", Java_org_havi_ui_HFontCapabilities_pIsCharAvailable) +STUB("P9XP5U7AfXs", _ZNSt14numeric_limitsIjE9is_signedE) +STUB("P9Yn0hz8IJs", _ZN7WebCore4Attr8setValueERKN3WTF12AtomicStringE) +STUB( + "P9Zj2mZ-Qy4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("P9ZouL3BMOs", _ZNSt15basic_streambufIcSt11char_traitsIcEE6setbufEPci) +STUB("P9ZvccrFXwM", _ZN7WebCore9HTMLNames25onwebkitwillrevealtopAttrE) +STUB("P9a-HzKGYXY", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi32ParameterToPostGameSessionsTouchC2Ev) +STUB( + "P9asU7VeJEQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEdeEv) +STUB("P9bHf+GJkCc", _ZN7WebCore11FontCascadeC2Ev) +STUB("P9c-vF6a-hc", SSL_get_shutdown) +STUB( + "P9h4bW5cUds", + _ZNK3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE11getResponseERS8_) STUB("P9iKqxAGeck", sceGnmDriverInternalRetrieveGnmInterfaceForResourceRegistration) +STUB("P9o3V+9nJT0", ulocimp_addLikelySubtags) +STUB( + "P9puV0mbhr8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEE7add_refEv) +STUB("P9spyVa2GVU", _ZN15AbstractStorage15FacebookServiceC1Ev) STUB("P9v+xD9gBQU", sceEditMp4Unite) +STUB("P9vsWZVDqJ8", _ZN9Inspector28PageBackendDispatcherHandlerD1Ev) +STUB("P9y39Inv-Dw", _ZN3WTF22charactersToUIntStrictEPKDsmPbi) +STUB("P9zf9u5VjMg", _ZN3sce7Toolkit2NP28GameCustomDataMessageRequestC1Ev) +STUB("PA+PwQax14c", + _ZN7WebCore22CSSAnimationController33animationsAreSuspendedForDocumentEPNS_8DocumentE) +STUB("PA-dsPwxOIw", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V15Error9getSourceEv) +STUB("PA2tm+3SinE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE8capacityEv) +STUB("PA3hKfVqH00", WKPreferencesGetAriaReflectionEnabled) +STUB( + "PA5AXQpseto", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) STUB("PA6ZwQM5tNQ", sceKernelIccGetPowerOperatingTime) +STUB("PA9VYFAVKIE", _ZN3sce2np8SelectorD2Ev) +STUB( + "PAFhH7aqxMk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEEcvbEv) +STUB( + "PAGzbG+nz7M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "PAP2TT7JJnM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEixEm) +STUB( + "PAPQePEBoQA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("PAZLRuN7rC8", _ZN7WebCore37CrossOriginAccessControlCheckDisablerC2ERKS0_) +STUB("PAZOYm4r4m0", _ZN3sce7Toolkit2NP2V28Matching7Request10CreateRoomC1Ev) STUB("PAa6cUL5bR4", sceHmdReprojectionStopLiveCapture) +STUB("PAb1VdKhVbc", monoeg_g_get_home_dir) +STUB("PAcXDENC3IM", _ZN7WebCore4PageC1EONS_17PageConfigurationE) +STUB("PAdGdm0C67E", _ZN3JSC7Symbols19argumentPrivateNameE) +STUB( + "PAeYhpA6q3g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEmmEv) +STUB("PAjnisXS1CY", __start__Zdynamic) +STUB("PAk68TghXqI", + _ZN12video_parser13cVideoMetaMP411getMetadataENS_12VP_META_TYPEEjjPNS_12VpMetadata_tE) +STUB("PAkQucLJN0c", _ZN15AbstractStorage10YoutubeAPIC2Ev) +STUB( + "PAmloppFNCk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEC1EPS6_PNS2_10LibContextE) +STUB("PAp-xS1m7bI", _ZN3WTF16codePointCompareENS_10StringViewES0_) +STUB( + "PApuj9umFKY", + _ZN3sce2Np9CppWebApi14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyD1Ev) +STUB("PApwEcGpdyM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12BlockedUsersEEC2Ev) +STUB( + "PAq9r9aZw+4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEppEv) STUB("PAytDtFGpqY", sceRazorCpuFiberSwitch) +STUB( + "PB+UhgHKnH0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC1Ev) +STUB( + "PB+XLIrZI2U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEEC1Ev) +STUB("PB1MYYPazW0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEppEi) +STUB( + "PB2-+pu9U7o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("PB4GG2sug-o", _ZNK3JSC8Debugger19pausingBreakpointIDEv) +STUB("PB7axpunmvY", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIiE21intrusive_ptr_add_refEPS4_) +STUB("PB9gxvI5EDE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEEppEv) +STUB("PBP4KSDTyII", + _ZN7WebCore13JSDOMRectList15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB( + "PBTWwvK9oXg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEneERKS9_) +STUB("PBY5evsCMBU", _ZNK7WebCore5Range20absoluteBoundingRectENS0_27RespectClippingForTextRectsE) +STUB("PBaIk4KJOtE", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead23unsetSupportedPlatformsEv) +STUB("PBaw6UXhTVc", jvmciHotSpotVMIntConstants) +STUB("PBbZjsL6nfc", _ZNSt4_Pad7_LaunchEPKcPP7pthread) +STUB( + "PBc4LFKaGVw", + _ZN9Inspector8Protocol13BindingTraitsINS0_8Debugger8LocationEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE) STUB("PBcrVpEqUVY", sceAudioPropagationSourceCalculateAudioPaths) +STUB( + "PBdqTnLnokM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "PBf1EzTOEHM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEC1EPS6_PNS2_10LibContextE) +STUB("PBfjo+Yme7I", _ZN3sce2np7HttpUriC1EP14SceNpAllocator) +STUB("PBkQ+zJctP8", delegate_virtual_invoke_0_p) STUB("PBmrW72wbPQ", scePlayerSelectionDialogUpdateStatus) +STUB("PBnSCvBN1zE", _ZN3WTF14RefCountedBase33areThreadingChecksEnabledGloballyE) +STUB( + "PBp-IKluEjI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEaSERKS7_) +STUB( + "PBrbdoKBGQU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEC2Ev) +STUB( + "PBrdYjoh-nU", + _ZN3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate19setPlayerAttributesERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_9AttributeEEEEE) +STUB( + "PBwwr8j9ShY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("PBx-XlfKxGA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEEC1ERKSA_) +STUB( + "PC-ixW+85EE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEixEm) +STUB("PC0gS0pL-qo", _ZN3JSC7Symbols36allocateUint8ClampedArrayPrivateNameE) STUB("PC4jq87+YQI", sceGameLiveStreamingCheckCallback) +STUB("PC5Gpw2wImU", _ZN3sce7Toolkit2NP17FriendInfoRequestC1Ev) +STUB("PC5SGAQZ0lI", mono_aot_Sce_Vsh_VoiceMsg_VoiceMsgWrapperplt_end) +STUB( + "PC8pPPSCUMA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEptEv) +STUB("PC9bwLmXqxE", mono_aot_Sce_Vsh_Orbis_BgftAccessorplt) +STUB( + "PCAfc7oIgzM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEED1Ev) STUB("PCFtlcOHfW4", sceNpTrophy2SystemAbortHandle) +STUB("PCOqpXwEzTo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEED2Ev) +STUB("PCUtZJQaf9U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEdeEv) +STUB( + "PCcpLHLdoO4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE8copyFromERKS9_) +STUB("PCe-c5KNG38", _ZN3WTF25fastMallocDumpMallocStatsEv) +STUB( + "PCfXVYf+9GU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEE7add_refEv) +STUB("PCgbanhN-MU", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V18Variable10unsetValueEv) +STUB("PCrlWY8BQ6k", fuse_fs_ioctl) +STUB("PCxVKCqLizM", _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEED2Ev) +STUB("PCzV4YAnhuo", + _ZN3JSC8JSObject26setPrototypeWithCycleCheckERNS_2VMEPNS_9ExecStateENS_7JSValueEb) +STUB( + "PD0Wgo19Smc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEED1Ev) +STUB( + "PD38Zv5qEiY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEEptEv) +STUB( + "PD3zHVs8L0A", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEeqERKS9_) +STUB("PD49UhStsJI", unorm2_spanQuickCheckYes) +STUB( + "PD4L4BPhIco", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "PD5VwSZaYH4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEED1Ev) STUB("PD5bnBTsv6Y", sceContentSearchGetContentLastUpdateId) +STUB("PD9kUBVe8JE", + _ZNK3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayer16customData1IsSetEv) +STUB("PDCAfPz5LXI", unorm2_getNFKDInstance_59) STUB("PDD7gmqbnKE", sceNpSnsIntFbGetTitleInfo) +STUB( + "PDPEnAtA1YQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE8pushBackERKS8_) +STUB("PDQbEFcV4h0", _FQuadph) +STUB("PDSIezqtTHc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEEC2ERKSA_) +STUB("PDSPK1UFA9o", mono_btls_x509_crl_get_by_serial) +STUB("PDX01ziUz+4", _ZSt13_Syserror_mapi) +STUB("PDXr1jrDajY", delegate_invoke_impl_target_5_p) +STUB( + "PDZ6SLg1r+U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEC1Ev) +STUB("PDasby6lhDo", _ZN3sce2Np9CppWebApi7Matches2V125ResponseCompetitiveResult14getTeamResultsEv) STUB("PDkapOwggRw", sceNetBandwidthControlGetPolicy) +STUB("PDkib0zyABg", _ZNK3sce4Json14InitParameter225getSpecialFloatFormatTypeEv) STUB("PDu2PNjfb1M", scePlayReadyReset) STUB("PDxS48xGQLs", sceHttpSetChunkedTransferEnabled) +STUB( + "PE26lORXmTE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEptEv) STUB("PE2zHMqLSHs", sceAudioOut2ContextAdvance) STUB("PE5l8BPZrRY", sceNpTrophySystemGetTrpTrophyConfig) +STUB( + "PE804tx+VoI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEE5resetEPS6_) +STUB("PEAZaQLLjnY", WKWebsiteDataStoreConfigurationCopyLocalStorageDirectory) +STUB("PEI-+9NQV6s", + _ZN7WebCore10Pasteboard33writeTrustworthyWebURLsPboardTypeERKNS_13PasteboardURLE) +STUB("PERc71DuaAs", _ZNK3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer11getOnlineIdEv) +STUB( + "PET-nt69-D0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("PEU-SAfo5+0", _LDtento) +STUB("PEVZ9ZJMX1U", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product16descriptionIsSetEv) +STUB("PEWusNk7cIM", WKIconDatabaseCopyIconURLForPageURL) +STUB( + "PEY9I9cM8Ik", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEC2EPS6_PFvS8_EPNS2_10LibContextE) STUB("PEYQJa+MWnk", sceFontGraphicsFillPlotSetMapping) +STUB("PEdJOnkuC-M", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEEaSERS6_) +STUB("PEdNEWhkMww", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE3endEv) STUB("PEe0R7gBHbc", sceSocialScreenDialogInitialize) +STUB("PEggcTbDlfE", hb_buffer_reset) +STUB( + "PEh4cSZnSg4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE21intrusive_ptr_sub_refEPS9_) STUB("PEjv7CVDRYs", sceFontDestroyWritingLine) +STUB("PElQ++HoFH4", + _ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer15getPushContextsEv) STUB("PEo09Dkqv0o", sceNpTrophyIntGetTrpIconByUri) +STUB( + "PEpsnLRM+s8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot19unsetnpServiceLabelEv) +STUB("PEu-h2Pqk6k", + _ZN15AbstractStorage18DailymotionContent13writeExternalESt10shared_ptrINS_7ContentEE) +STUB("PEuuRn6zhF4", _ZN15AbstractStorage7ServiceD1Ev) +STUB("PEzlVi7C+-8", ucal_openTimeZoneIDEnumeration_67) +STUB( + "PF4QcDVINbs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "PFAIrMV0t8M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEED2Ev) +STUB("PFJlDy+Jeb0", _ZN7WebCore9HTMLNames13playcountAttrE) +STUB( + "PFJqzzQX6Do", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEC2Ev) +STUB( + "PFNcaAzGJTU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "PFQnwI04Jwo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEEptEv) STUB("PFRl8SmSW+4", sceCamera2Initialize) STUB("PFT2S-tJ7Uk", sceFiberSwitch) +STUB("PFV++xTU7Sk", _ZN3JSC11VMInspector9dumpStackEPNS_9ExecStateEj) STUB("PFec14-UhEQ", scePadVirtualDeviceDeleteDevice) STUB("PFfR4JFlCAM", sceAppInstUtilGetPrimaryAppSlot) +STUB( + "PFgPpYvs72o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEEptEv) +STUB( + "PFo4pO4NKAI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEeqERKS9_) +STUB("PFto-dqmGdE", _ZN3JSC6Symbol6createERNS_2VMERN3WTF10SymbolImplE) +STUB("PFu3-HrRrkA", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V314MissingElement9unsetNameEv) +STUB("PFveWxbvS2g", mono_metadata_parse_marshal_spec) +STUB("PFxpQ6lkQP0", d2i_RSA_PUBKEY) +STUB("PG-2ZeVVWZE", _ZN6Dinkum7threads10lock_errorD0Ev) +STUB("PG4HVe4X+Oc", _LErfc) +STUB("PG6C3+Y2PG4", _ZN3sce3Xml10SimpleDataC1EPKcm) +STUB( + "PG9WHTVGC0I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEEaSERSA_) +STUB( + "PGAJrNNVbW0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEED1Ev) +STUB( + "PGEM7Lf5q+Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEC2EPKS8_) +STUB( + "PGFm-7PMSCM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEplEm) STUB("PGHjjtZxKvs", sceShellCoreUtilPreNotifyOfGameLiveStreaming) +STUB( + "PGJvwH4eOA4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE3endEv) +STUB("PGLtQ31bblg", psl_load_file) +STUB("PGRYlJHDzro", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEptEv) +STUB( + "PGUW4zAmP8Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEC2Ev) +STUB( + "PGVcTwEhYLg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEplEm) +STUB( + "PGWJkd20W3E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "PGan2BhHHRQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEE11get_deleterEv) +STUB("PGbdeeOVRRU", _ZNK3sce2Np9CppWebApi6Common6Binary4sizeEv) +STUB("PGcxtCMq4cg", _ZN7WebCore4Page25suspendScriptedAnimationsEv) +STUB("PGd27ScL108", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEC2Ev) STUB("PGhQHd-dzv8", sceKernelMmap) +STUB( + "PGhuIJpbtBE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEC1EPKS9_) +STUB("PGjg1W29DPM", delegate_virtual_invoke_32_p) +STUB("PGlO4u5duZc", ShDestruct) STUB("PGsAGnnRstY", sceShellCoreUtilIsEyeToEyeDistanceAdjusted) +STUB("PGsWNnS7CE8", SSL_get_ex_new_index) +STUB("PGtPAOHyWqk", _ZN3JSC23errorMesasgeForTransferEPNS_11ArrayBufferE) +STUB( + "PGttEJNabMo", + _ZN7WebCore27PlatformMediaSessionManager37processDidReceiveRemoteControlCommandENS_20PlatformMediaSession24RemoteControlCommandTypeEPKNS1_21RemoteCommandArgumentE) +STUB("PGvCCp4g8gg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEED1Ev) STUB("PGxMwm8uS0Y", sceAc3EncCreateEncoder) +STUB("PGyCIh2cxS0", _ZN7WebCore16HTMLStyleElement11setDisabledEb) +STUB("PH3hLA235Sk", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountIdC2ERS5_) +STUB("PH8EqfJlRE0", + _ZN3sce7Toolkit2NP8Commerce9Interface16voucherCodeInputERKNS1_18VoucherInputParamsEb) +STUB( + "PH9+5MKuuhk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "PHHg73TuHrE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEppEv) +STUB("PHRTGhoH5bQ", uregex_splitUText_67) +STUB("PHUWlwS59cM", _ZNK7WebCore17CSSPrimitiveValue13primitiveTypeEv) +STUB( + "PHUbQnQTxsw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEE5resetEPS6_) +STUB("PHVPK9wRYjI", _ZN7WebCore11HistoryItem19childItemWithTargetERKN3WTF6StringE) +STUB("PHWvRXbOnYs", _ZN3sce2np20BufferedStreamReaderD2Ev) +STUB( + "PHYTh3gyiM8", + _ZN9Inspector24ConsoleBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) STUB("PHZWPDcDRdM", sceVisionManagerGetHitCountOfRegisterUserData) +STUB( + "PHbtG-HjfM4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEED1Ev) +STUB("PHjc4hRWNiI", GCC_except_table19) +STUB("PHlBJ4I43Uc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEEplEm) STUB("PHnuI4LhuRk", sceSaveDataDirNameSearch2) STUB("PHrpHMSU8Cs", sceNpStrncpyToBuf) +STUB("PHs-EtAF2zU", _ZN7WebCore26Matrix3DTransformOperationD2Ev) +STUB("PHsU7rOQ7nw", + _ZN3JSC17DeferredWorkTimer26hasDependancyInPendingWorkEPNS_8JSObjectEPNS_6JSCellE) +STUB("PHu9FjhTURQ", WKDictionaryRemoveItem) +STUB("PI1X7RZGbYo", _ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody9getStatusEv) +STUB("PI4bieTfnks", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product23contentDescriptorsIsSetEv) +STUB( + "PI70cGkuqZc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEmmEi) +STUB("PI71BfdD3s4", cmemory_cleanup_67) +STUB("PI7Qn4yLaFs", _ZN7WebCore12ChromeClient20didRemoveMenuElementERNS_15HTMLMenuElementE) STUB("PI7jIZj4pcE", sceRandomGetRandomNumber) +STUB("PI8LNlzz5gw", mono_aot_Sce_Vsh_AutoMounterWrapperjit_got) +STUB("PI8Y5JaP98o", _ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest15getMatchResultsEv) +STUB( + "PIAT+Ri5K1E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEptEv) +STUB( + "PICeLa8CPnE", + _ZN7WebCore8Document59setHasRequestedPageSpecificStorageAccessWithUserInteractionERKNS_17RegistrableDomainE) +STUB( + "PICoGW38HWg", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_4Page16CoordinateSystemEEESt8optionalIT_ERKN3WTF6StringE) +STUB("PIK13YXRoWc", mono_metadata_decode_blob_size) +STUB( + "PILoN-UvN84", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEmmEv) +STUB("PIMBemCylmg", _ZNK3sce2Np9CppWebApi7Matches2V120ResponseInGameRoster6toJsonERNS_4Json5ValueEb) +STUB("PIQyyLSozEk", _ZN3sce7Toolkit2NP2V24Auth7IdTokenD1Ev) STUB("PIWqhn9oSxc", sceNetAccept) STUB("PIYEFT1iG0Y", _sceNpManagerReallocImpl) +STUB( + "PIa68ZxYkx4", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEEiRNS2_10LibContextEPT_m) +STUB("PIa6V635TSQ", _ZN7WebCore13MIMETypeCachenwEm) +STUB( + "PIdj+3TJ6Dg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEmmEv) +STUB("PIkJmU2Kv1U", Java_com_sony_bdjstack_org_bluray_bdplus_StatusImpl_set) +STUB("PIlpEP8Swsg", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEEC2Ev) +STUB("PIm+ViYYaFI", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIjEeqERKS4_) +STUB( + "PImnGVvsLKE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE3endEv) +STUB("PIphBsmR4Uc", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEED2Ev) +STUB( + "PIpwTTpFCnw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEE7get_refEv) +STUB("PIsq-2vzDVw", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEEdeEv) +STUB("PIt3ROlWOic", RemotePlayGetConnectionStatus) +STUB("PIt9WYaoBqU", __sys_opmc_set_hw) STUB("PIw2ZEh6JyI", sceFiosDLLInitialize) +STUB("PJ2UDX9Tvwg", _ZNKSt7codecvtIDic9_MbstatetE5do_inERS0_PKcS4_RS4_PDiS6_RS6_) +STUB("PJ3AspBM8Mo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEptEv) +STUB( + "PJ3Ueidi2AM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEE7get_refEv) +STUB( + "PJ5FRYZ1fXU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEC2Ev) +STUB("PJ69TxDrc4U", __ubsan_handle_vla_bound_not_positive) +STUB( + "PJ7BmffSGtM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "PJB+H4zM15M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "PJEWc1S-NbE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEE3getEv) +STUB("PJLM4U9Lwvw", _ZN3JSC7Symbols46typedArrayClampArgumentToStartOrEndPrivateNameE) +STUB( + "PJPIXtFqKBM", + _ZN3sce2Np9CppWebApi7Matches2V131UpdateMatchStatusRequestFactory6createEPNS1_6Common10LibContextENS3_12UpdateStatusEPNS5_12IntrusivePtrINS3_24UpdateMatchStatusRequestEEE) +STUB("PJSbVdbIOug", _ZN7WebCore8Gradient15setSpreadMethodENS_20GradientSpreadMethodE) +STUB("PJT6Jhs3y+4", _ZN7WebCore16threadGlobalDataEv) +STUB( + "PJUBtk0O0Q8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEEdeEv) +STUB( + "PJUZmxAdMag", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE21intrusive_ptr_sub_refEPS9_) +STUB("PJVB7d7YJpE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ResponseCooperativeResultEEeqERKS7_) +STUB("PJW+-O4pj6I", _thread_init) +STUB("PJWIn74HPHI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEppEi) +STUB( + "PJYDjH8b5Hg", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api12cancelTicketEiRKNS4_23ParameterToCancelTicketERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB( + "PJZkVwi78pk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEED2Ev) +STUB( + "PJa35tDYmCM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE5beginEv) +STUB("PJbEp5uOjKk", _ZN3sce7Toolkit2NP2V26Trophy16TrophyPackTrophyC1Ev) +STUB("PJbHeFfX8zI", _ZN7WebCore9HTMLNames5dtTagE) +STUB( + "PJbpTtVvul0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEEC1EPS6_PNS2_10LibContextE) +STUB( + "PJld4Z+-diA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "PJmr272zC8g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEEaSERKSA_) +STUB("PJoU4dkSJME", _ZN3sce2Np9CppWebApi7Matches2V120ResponseInGameRoster10unsetTeamsEv) +STUB( + "PJqvylWRgyc", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfile10initializeEPNS1_6Common10LibContextEPKc) +STUB( + "PJrjGWF25H8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEED2Ev) +STUB( + "PK1A1F6fvaw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEptEv) +STUB("PKFofTYGGJ8", _ZN9Inspector26TimelineFrontendDispatcher26programmaticCaptureStoppedEv) +STUB("PKGMqoQ2uCc", _ZNK7WebCore31BasicColorMatrixFilterOperation5cloneEv) STUB("PKHZK960qZE", sceUserServiceSetThemeWaveColor) +STUB("PKIFp-zoy0c", _ZN7WebCore9HTMLNames13onemptiedAttrE) STUB("PKJcFUfhKtw", sceLibcPafMspaceMemalign) +STUB("PKKQ-Ph0qDs", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament7BracketEE5resetEv) +STUB( + "PKNzIsv8V-4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEeqERKS9_) STUB("PKW7W-yst78", sceVnaNotifyStatus) +STUB( + "PKWKUQXskT0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEeqERKS9_) +STUB("PKXFvrrnY+g", Java_org_dvb_event_EventManager_postAWTEvent) +STUB( + "PKZLsgp3V0E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE3endEv) +STUB( + "PKZOKLLg6oo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB("PKaE-B7gmy8", mono_install_assembly_search_hook) +STUB("PKaqqJ0gWgM", _ZNK3sce2Np9CppWebApi7Matches2V116JoinMatchRequest19npServiceLabelIsSetEv) +STUB("PKc8ZSZA2bs", _ZN3sce7Toolkit2NP2V28Matching7Request11SetRoomInfoC1Ev) +STUB( + "PKdNGNs+z84", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEmmEi) STUB("PKg59uLpHNI", sceKernelIsAssistMode) +STUB( + "PKt85ilyXFw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE10setContextEPNS2_10LibContextE) +STUB("PKuN8-8+6As", _ZTVN8meta_gen13JpegRetrieverE) +STUB( + "PKwMg6vsQn0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE3endEv) STUB("PL10NiZ0XNA", sceNpManagerIntGetUserList) STUB("PL20kjAXZZ4", sceSaveDataGetAutoUploadRequestInfo) +STUB("PL2LcQggy9Q", _ZN9Inspector32DatabaseBackendDispatcherHandlerC2Ev) +STUB("PL3qWsgfJ-Q", _ZN7WebCore9HTMLNames11archiveAttrE) +STUB("PL4A0gKcB08", JNU_ThrowIOExceptionWithLastError) +STUB( + "PL5+d6AMyZc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "PL5gk1ieSJk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEED1Ev) +STUB("PLB43X1Abmk", _ZN3sce2Np9CppWebApi12Leaderboards2V15Entry11setObjectIdEPKc) +STUB( + "PLBx22owBxU", + _ZN9Inspector21DOMFrontendDispatcher16shadowRootPushedEiN3WTF6RefPtrINS_8Protocol3DOM4NodeENS1_13DumbPtrTraitsIS5_EEEE) +STUB( + "PLG1llJu9ZU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEE11release_refEv) +STUB("PLIkDz0bOeI", _ZNK7WebCore8Document12lastModifiedEv) +STUB( + "PLIzZkWU92M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEED1Ev) +STUB( + "PLJIym04GSs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEaSERS7_) +STUB( + "PLM3qPPdpu4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE7popBackEv) +STUB("PLN3vUYYQ3I", WKPreferencesGetPageCacheSupportsPlugins) +STUB( + "PLRFgcSUQuI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("PLSbJxLKy9I", _ZN3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayerD2Ev) +STUB( + "PLYYitbVlWs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEC2EPNS2_10LibContextE) +STUB( + "PLZUqgm2YEU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEE3getEv) +STUB( + "PLc2BbFrI-M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEEC2Ev) +STUB("PLcqkyzTIeY", _ZN7WebCore6Editor29toggleContinuousSpellCheckingEv) +STUB( + "PLglu2g1qAQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEEC2ERSA_) +STUB("PLisNcatYEU", _ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead14unsetAccountIdEv) +STUB( + "PLkqADlydxs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEC1EPS8_) +STUB("PLmtI+AEijg", _ZN3NTF21ResourceRequestLogger9AdminPageC1EPKc) +STUB("PLnBrDuEl1Y", WKPreferencesSetFetchAPIKeepAliveEnabled) +STUB("PLq-2ecJl0k", _ZN3JSC11checkSyntaxERNS_2VMERKNS_10SourceCodeERNS_11ParserErrorE) +STUB("PLrCgkwlBtA", + _ZN7WebCore12EventHandler31passMouseMovedEventToScrollbarsERKNS_18PlatformMouseEventE) +STUB("PLwobQnVlaI", _ZN3sce2Np9CppWebApi6Common6VectorImE21intrusive_ptr_sub_refEPS4_) +STUB( + "PLxRdMZRdX0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEEC2EPS8_PNS2_10LibContextE) +STUB("PM-Nw6lhP40", _ZN3sce7Toolkit2NP2V211UserProfile10NpProfilesaSERKS4_) +STUB("PM0QT9XMliE", uprv_isInvariantString) +STUB( + "PM1KOLG1hUA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("PM1fDWT9YJs", _LMBCSData18_67) +STUB("PM25zHyWlHE", dll_size) STUB("PM3IZCw-7m0", sceNpAuthSetTimeout) +STUB("PM4rwFC4HMg", _ZN3JSC7Symbols36symbolAsyncIteratorGetterPrivateNameE) +STUB("PM58j4m17Gw", nsff_FreeString) +STUB("PMAYiRpjoMY", PSNowSetAuthCodes) +STUB("PMJFe1TkKwY", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIiEC1EPKi) +STUB( + "PMM6rJXOQYQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE3endEv) +STUB("PMPlHieEI3A", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setInteger3ERKi) STUB("PMR8LWo7apw", sceNpUniversalDataSystemDestroyRecordObject) +STUB("PMSdgrdlH7o", + _ZN3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayerC1EPNS1_6Common10LibContextE) +STUB( + "PMUeO0IcRRc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("PMV5ttdLZq8", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10getString2Ev) STUB("PMVehSlfZ94", sceImeKeyboardClose) +STUB("PMX1wD5abbk", _ZN7WebCore10JSNodeList9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("PMbLhDS0I0A", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEEC1Ev) +STUB("PMcRoN6u774", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession18unsetSwapSupportedEv) +STUB("PMgwpqaW9Nc", _ZTVN7WebCore21MediaRecorderProviderE) +STUB( + "PMhjniLwZYs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE7reserveEi) +STUB( + "PMrJxrnZsEM", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("PMsge+8fcWI", _ZN7WebCore4Page36suspendActiveDOMObjectsAndAnimationsEv) STUB("PMx7N4WqNdo", sceGameLiveStreamingGetSocialFeedbackMessages) +STUB("PMyutpVD0kU", ubrk_last_67) +STUB("PMzS9WG8Thc", getSeqNumForNtfbyCommInfo) +STUB("PN+pdhvYcb0", uprv_pow) +STUB("PN1Nt4s5mc4", _ZNK3sce2Np9CppWebApi6Common8IteratorIiEdeEv) +STUB("PN3W85tGUYw", WKPreferencesSetSelectTrailingWhitespaceEnabled) STUB("PNDDxnqqtk4", sceNetConfigWlanGetDeviceConfig) +STUB("PNEjNoAufF8", _ZNK3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error12messageIsSetEv) +STUB("PNF4BV+QsUU", _ZN7WebCore15JSEventListener6createEPN3JSC8JSObjectES3_bRNS_15DOMWrapperWorldE) +STUB("PNFItGG-jRY", sos_memory) +STUB( + "PNHC0S3mEuc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "PNKMWAVX3eY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEppEv) +STUB( + "PNKVL8TflLo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEED2Ev) +STUB( + "PNN73FHGQas", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE3endEv) STUB("PNO0IUA8nwc", scePigletHeapGetInfo) STUB("PNO2xlDVdzg", sceSystemServiceActivateHevcSoftStart) +STUB("PNO3Uc5Z4do", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging16GameDataMessagesEE5resetEv) +STUB( + "PNP2+sr9tmQ", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_6Canvas11ContextTypeEEESt8optionalIT_ERKN3WTF6StringE) +STUB("PNRFNMQs7aU", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_6NpUserEE7addressERKS3_) +STUB( + "PNRmGRtTK-I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEC2Ev) +STUB("PNVchzvHmGw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEEC1EPKS6_) STUB("PNb0xz446Ns", sceSaveDataManualDelete) +STUB( + "PNcOG9Mu8L4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE7reserveEi) STUB("PNceMgBgrIQ", scePadSetFeatureReport2) STUB("PNf0G7gvFHQ", sceGnmDebuggerHaltWavefront) +STUB("PNfswygjL7s", mono_aot_I18N_MidEastplt) +STUB("PNnRwMlCVlc", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEEdeEv) +STUB("PNqEXeufWKw", _ZN12video_parser5vpcom4TermEv) +STUB("PNskqaHcyys", mono_aot_Mono_Data_Sqlitejit_got) +STUB( + "PO+LYVgtsiY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEC1EPS8_) +STUB( + "PO+QjRv9jlQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "PO3gway-zso", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEC2EPNS2_10LibContextE) +STUB( + "PO6lqjoZXbU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEptEv) STUB("PO9tOKyviYI", sceVideoDecoderArbitrationInitialize) +STUB( + "POA9V9TJ+uQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEC1ERS7_) +STUB("POBwwpS41c4", _ZN7WebCore10FileSystem14MappedFileDataC1ERKN3WTF6StringERb) +STUB("POFWDeJHrvg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEC2ERKS7_) +STUB("POGf-hXBSYE", fuse_reply_bmap) STUB("POJ0azHZX3w", sceHttpSetSocketCreationCallback) +STUB("POMFOJXVHwU", + _ZNK3JSC8JSObject11toPrimitiveEPNS_14JSGlobalObjectENS_22PreferredPrimitiveTypeE) +STUB("POMV+y+5h9I", _ZN12video_parser17cVideoProfilerMp417_getVideoCodecVWGEPNS_13VpMediaInfo_tE) +STUB( + "POUkZJl6-lE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEeqERKS9_) STUB("POVfvCDcVUw", sceUserServiceGetThemeBgImageWaveColor) +STUB( + "POZguOFpv-Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "POa8-RCbBQ0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEC1EPS8_) +STUB("POgR2HblAXE", mono_class_get_element_class) +STUB( + "POi-OXZI8c0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE8copyFromERKS9_) +STUB("POlo1MbEWbI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEcvbEv) +STUB("POlp7a5VJeE", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeaders7destroyEPS5_) +STUB( + "POoI65bGCq8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE21intrusive_ptr_add_refEPS9_) +STUB("POq8+5-inHY", glUniform1f) +STUB( + "POqtG8osNzs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE5beginEv) STUB("POrSEl8zySw", sceNetConfigSetIfaddr6WithFlags) +STUB("POuAfbIdOvc", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15PlayedWithStoryEEneERKS4_) +STUB("POwFDKnjvj8", _ZN3sce2Np9CppWebApi7Matches2V17Subtask8fromJsonERKNS_4Json5ValueE) +STUB("POwLLYzZufU", kldnext) +STUB( + "POy1EJ1Bkcw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEE5resetEPS6_) +STUB("PP-v0hVUPGw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEEptEv) +STUB("PP0D1dCZQe4", + _ZThn24_N9Inspector22InspectorDebuggerAgent26setPauseForInternalScriptsERN3WTF6StringEb) +STUB( + "PP84R0U67j0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEC1Ev) +STUB("PP8U6b5x+ys", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE8pushBackERKS6_) +STUB("PP8lun2rCEU", + _ZN3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate19getPlayerAttributesEv) STUB("PP9jx8s0574", sceNpScoreGetGameDataByAccountIdAsync) STUB("PP9nZxpSKLY", sceUltQueueDestroy) +STUB( + "PPB-UiLyR-8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEEC2ERKSA_) STUB("PPCqsD8B5uM", sceHmdInternalGetDeviceStatus) +STUB( + "PPDIeeuz2B8", + _ZN9Inspector24NetworkBackendDispatcher20interceptWithRequestElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("PPFaXycu-Ek", + _ZNK7WebCore37CrossOriginAccessControlCheckDisabler36crossOriginAccessControlCheckEnabledEv) +STUB("PPOQBfvrMIQ", sqlite3_column_int64) +STUB( + "PPQIbsfEk2Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEppEi) STUB("PPQxiE4lbyY", sceShellCoreUtilGetSupportSiteURL) STUB("PPRCIaNpJJY", sceRegMgrNonSysSetInt) +STUB( + "PPcgiMP25Mc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEixEm) +STUB("PPd5fKTn3XY", WKPreferencesSetArtificialPluginInitializationDelayEnabled) +STUB("PPdIvXwUQwA", __udivmodsi4) +STUB("PPf2yjHeEKo", + _ZSt9use_facetISt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale) +STUB( + "PPlEzb7KS6U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "PPmzzPlkR8k", + _ZN3sce2Np9CppWebApi14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyD2Ev) +STUB( + "PPqJEEStA1o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEEC2Ev) +STUB("PPxlIafpPdw", _ZN15AbstractStorage15FacebookService13SearchStorageEv) STUB("PQ+SjXAg3EM", sceSystemServiceDisableSuspendConfirmationDialog) +STUB("PQ-5ptU4mbQ", _ZN3sce2Np9CppWebApi6Common15DefaultResponseD2Ev) +STUB( + "PQ2k2UKtYcI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEppEi) +STUB("PQ3n7JgVcUw", _ZN9Inspector21CSSFrontendDispatcher23mediaQueryResultChangedEv) +STUB( + "PQ4VwNJWkWw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "PQBsEfSgKY4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEmmEv) STUB("PQDFxcnqxtw", sceNpInGameMessageSendDataA) +STUB( + "PQDahTUHtXw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEE7get_refEv) +STUB( + "PQF9oMfTEyw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEEaSERS9_) +STUB( + "PQQO6s4khAI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB( + "PQRPX5zVV4Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEppEi) +STUB("PQS29ynWmeE", _ZN7WebCore14isPublicSuffixERKN3WTF6StringE) +STUB( + "PQTBTmni0JA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEEC1ERKSA_) +STUB("PQThkNA69ik", _ZN12video_parser7cVpUtil12vp_ff4_freadEPvS1_mPm) +STUB("PQY5whlq2VE", __tsan_atomic16_compare_exchange_strong) +STUB( + "PQZ+NlJivDo", + _ZN3JSC23setUpStaticFunctionSlotERNS_2VMEPKNS_9ClassInfoEPKNS_14HashTableValueEPNS_8JSObjectENS_12PropertyNameERNS_12PropertySlotE) +STUB("PQZxWNUctI8", mono_trace_set_logdest_string) +STUB( + "PQcJeGJZ1OI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "PQcQSTeW1Ro", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEplEm) +STUB( + "PQcaUzT7p6Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE21intrusive_ptr_sub_refEPS9_) +STUB("PQdMh289T3E", _ZNK7CoreIPC15ArgumentDecoder28bufferIsLargeEnoughToContainEjm) +STUB("PQeOxm6JYws", _ZN3sce7Toolkit2NP2V23TUS7Request18GetFriendsVariableD2Ev) +STUB( + "PQg7VN-U+48", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEC2EPNS2_10LibContextE) +STUB( + "PQjGSTRLaeI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEC1EPS6_PNS2_10LibContextE) +STUB("PQjJU9esAq4", _ZNK3sce2Np9CppWebApi7Matches2V118RequestTeamResults22teamMemberResultsIsSetEv) +STUB("PQjqXIif6yM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ResponseCooperativeResultEEppEi) +STUB( + "PQkUxpwAY-I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEEC2EPS6_PNS2_10LibContextE) STUB("PQlF4cjUz9U", sceUserServiceGetIPDLeft) +STUB("PQpV7EQ5L3A", _ZN7WebCore22EmptyFrameLoaderClient21dispatchDidFinishLoadEv) +STUB("PQs7HeqsI0c", _ZN3sce7Toolkit2NP2V24Core7Request23ServerPushNotificationsD1Ev) +STUB( + "PQsS9GcFR-Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "PQtQhgROP+A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEaSERKS9_) +STUB( + "PQx5xsVI0VA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "PR56YppYSZ8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE5beginEv) +STUB("PR5k1penBLM", _ZN3sce4Json11Initializer9terminateEv) +STUB( + "PR5rGkPPgWo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE6resizeEj) +STUB("PR6R2A-+DgY", _ZN3sce7Toolkit2NP2V210Tournament13OneVsOneMatchC2ERKS4_) +STUB("PR8r-TCBz0U", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus11slotIdIsSetEv) +STUB("PR9JxM5XUHw", _ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBodyD2Ev) +STUB("PRCdgKxu5a0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEC2Ev) +STUB("PRGCDAuvO4U", _ZN3sce7Toolkit2NP2V26Friend7Request15GetBlockedUsersD1Ev) +STUB("PRHvPaEQU9Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEE5resetEPS6_) +STUB("PRP-T2UVdp8", _ZN3sce7Toolkit2NP15AppSTLAllocatorIiEC1Ev) +STUB("PRWDDCYpsDQ", _ZNK3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResults8getScoreEv) +STUB("PRWr3-ytpdg", CRYPTO_initAsymmetricKey) +STUB( + "PRe4tjeFmD0", + _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities13getaccountIdsEv) +STUB("PRfVGYzxSCI", _ZN3sce3pss5orbis9framework12PsmStringObj17NewAndStoreStringEPvPc) +STUB("PRgHC6mMgw8", rgctx_fetch_trampoline_rgctx_116_p) +STUB("PRi-5flaksc", _ZN7WebCore16convertToIntegerImEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB( + "PRlBEyL2UVM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB("PRr6iSMdkuE", _ZN3sce2Np9CppWebApi7Matches2V119RequestInGameRoster8getTeamsEv) +STUB( + "PRssn14aTLQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEC2Ev) +STUB("PRt5TR3b1NE", _ZN7WebCore26ContextDestructionObserverD2Ev) +STUB("PRutb7r2aio", + _ZN3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMapC1EPNS1_6Common10LibContextE) +STUB( + "PRv6jpF+Xek", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEC2EPS8_) +STUB("PRx4LhivrkU", _ZN3sce2Np9CppWebApi7Matches2V122RequestMatchStatistics19getPlayerStatisticsEv) +STUB("PS2fWS-1dEw", _ZN7WebCore11DisplayList13SetMiterLimitD2Ev) STUB("PS5hxxGEVB8", sceKernelResumeDirectMemoryRelease) +STUB("PS5n3xxFDXQ", WKBundlePageGetBackingScaleFactor) +STUB( + "PS8lGsEqK8Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEED2Ev) +STUB("PSAw7g1DD24", _ZNSt7collateIwEC2EPKcm) +STUB( + "PSE8doWlSX4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEC1EPKS8_) STUB("PSHaxUsfYg8", sceAvSettingWaitCallback) +STUB("PSIKYreudgY", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V18RelationEEC1EPS6_) +STUB("PSJDZKA4zFk", mono_aot_Sce_Vsh_DataTransferunbox_trampolines) STUB("PSK+Eik919Q", sceWebBrowserDialogClose) +STUB( + "PSM+drg-048", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEeqERKS9_) +STUB("PST8vMLJBmI", ucptrie_internalGetRange_67) +STUB("PSZR9gFmrHQ", _ZNK3JSC12PropertySlot14functionGetterEPNS_14JSGlobalObjectE) +STUB( + "PSa53jDhTEA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEmmEi) +STUB( + "PSjy7gaxRfo", + _ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody21setLargeDataSizeLimitERKl) +STUB( + "PSlwLMNCglI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEC1ERKS7_) +STUB("PSnjmmsNZKM", _ZN7WebCore9HTMLNames18aria_valuetextAttrE) STUB("PSptxtJVbv4", sceNpBandwidthTestShutdownInt) +STUB("PSqt1KLK7o0", eglCreateWindowSurface) STUB("PSrsDjizhM0", sceCtrlpGetMode) +STUB("PStpLp3-9Tk", rgctx_fetch_trampoline_rgctx_45_p) +STUB( + "PT0KFqyWZ4Y", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB( + "PT6DRfzbUvk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE7popBackEv) +STUB( + "PT6YbQVY2ms", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_28ActivityFeedSharedVideoStoryENS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv) +STUB( + "PTDDXmOn6uU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEEC2Ev) +STUB( + "PTLlPYHuvh0", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfiles16setincludeFieldsEPKc) +STUB( + "PTMRrtSnXV8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEixEm) +STUB("PTQNVqrk8Wo", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12Notification14NetStateChangeEEC2Ev) +STUB( + "PTVl3ngyXnE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE5emptyEv) +STUB( + "PTdhkxtDUYg", + _ZN7WebCore11DisplayList20DrawTiledScaledImageC2ERNS_5ImageERKNS_9FloatRectES6_RKNS_9FloatSizeENS2_8TileRuleESA_RKNS_20ImagePaintingOptionsE) +STUB("PTf-FJo+ApE", _ZN3WTF10StringImpl8endsWithEPS0_) STUB("PTiFIUxCpJc", sceHttpSetRequestContentLength) +STUB( + "PTnAc4g3ICE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEC2EPS6_PNS2_10LibContextE) +STUB( + "PTqd4UFMS9w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEEC2ERSA_) +STUB("PTrYtP4u8fg", _ZN7WebCore15FontDescriptionC2Ev) +STUB( + "PTuPYlnQVRg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE21intrusive_ptr_add_refEPS7_) +STUB("PTvMKfzjWQo", __ubsan_handle_divrem_overflow_abort) +STUB( + "PTzDHJEpjQk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEED1Ev) +STUB("PU63bc-sDf8", s01) +STUB("PUB57IIPJ9w", cmp_era_date) +STUB( + "PUDXsBxtSSY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEC1Ev) +STUB( + "PUE-yUIPKe8", + _ZN3sce7Toolkit2NP2V211SharedMedia13getBroadcastsERKNS3_7Request13GetBroadcastsEPNS2_4Core8ResponseINS3_10BroadcastsEEE) +STUB("PUEZ-nkeRic", _ZN3WTF8JSONImpl9ArrayBase9pushArrayEONS_6RefPtrIS1_NS_13DumbPtrTraitsIS1_EEEE) +STUB("PUJjqZtwfLM", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge10ChallengesEE12deepCopyFromERS7_) +STUB("PUOdclQdsA8", JVM_Listen) +STUB( + "PUQsEPL6V3Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEE11release_refEv) +STUB( + "PUTnX4bZjqs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEED2Ev) +STUB("PUV6qvRaqCE", _ZNK15AbstractStorage14TwitterStorage10GetServiceEv) +STUB("PUWsSB3HNEE", ulocdata_getCLDRVersion_67) +STUB( + "PUZeJjQMZKw", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead19setSearchAttributesERKNS1_6Common12IntrusivePtrINS3_16SearchAttributesEEE) +STUB("PUhHuHSWTnU", mono_aot_Sce_PlayStation_BclExtensionsunbox_trampoline_addresses) +STUB( + "PUhVA8yn4Hw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("PUkoDl8QRKo", _ZN7WebCore9HTMLNames10oncopyAttrE) +STUB("PUnaOnE5qv4", ErrorDialogClose) +STUB( + "PUove9IxQjA", + _ZN9Inspector26LayerTreeBackendDispatcher26reasonsForCompositingLayerElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("PUp9TlmpDys", _ZN7WebCore35isEndOfEditableOrNonEditableContentERKNS_15VisiblePositionE) +STUB("PUqCtFwnNvA", _ZThn8_N3sce2np9HttpTransD1Ev) +STUB( + "PUs0x75WeJM", + _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container11setChildrenERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_7ProductEEEEE) +STUB("PUsOFHI1iBo", _ZN7WebCore16HTMLOListElement19setStartForBindingsEi) +STUB("PUsttHs+PRw", _LMBCSData2_67) +STUB("PUwe0bHr1pU", uset_addRange_59) +STUB("PUyCL2afOCU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEC2EPS6_) +STUB( + "PUzRm1isMPs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("PV4sdhRAjA4", _ZN3WTF10StringImpl22createStaticStringImplEPKcj) +STUB("PV6kXcSMqRs", ztrans_adoptFrom_67) +STUB("PVBHZjcjzo0", _ZN7WebCore15SQLiteStatement10bindDoubleEid) +STUB("PVEHz-12z7w", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_24RegisterGameDataResponseEE17getAdditionalInfoEv) +STUB("PVGkLk5i0Lc", _ZN7WebCore7Element18boundingClientRectEv) +STUB("PVIoDan63h0", _ZN7WebCore15HTMLFormElement9setActionERKN3WTF6StringE) +STUB("PVQaWsZozNw", uset_isEmpty_67) +STUB( + "PVSgjJeZzQ4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE7reserveEi) STUB("PVT+fuoS9gU", sceGnmDeleteEqEvent) +STUB("PVV6vSXtXwE", _ZN14OpaqueJSString9tryCreateERKN3WTF6StringE) STUB("PVVsRmMkO1g", sceNpGetSystemClockUsec) +STUB("PVX51Pp3iFo", _ZN9Inspector15RemoteInspector12updateTargetEPNS_24RemoteControllableTargetE) +STUB( + "PVbmOgtglig", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE7popBackEv) +STUB("PVl7TKdKzBU", _ZN12video_parser5vpcom6StringeqERKS1_) +STUB("PVun5K6ohaI", _ZN23sceMetadataReaderWriter11gvMp4Parser19gvMp4ParserFinalizeEv) +STUB("PVyQjWwltLM", _ZN3sce7Toolkit2NP16LikeStoryRequestC1Ev) +STUB( + "PVyvJB4PcHg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEE3getEv) +STUB("PVzly3pzYG8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEEdeEv) +STUB( + "PW2IbQ27op8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEEC2EPS9_PNS2_10LibContextE) STUB("PW2MMvr+fKM", sceVideoCoreSyncAddStream) +STUB("PW3pfHwnzDA", rgctx_fetch_trampoline_rgctx_63) +STUB( + "PW9qqMwfCUE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEeqERKS9_) +STUB( + "PWB73gM3+pw", + _ZN7WebCore15JSDOMWindowBase17moduleLoaderFetchEPN3JSC14JSGlobalObjectEPNS1_9ExecStateEPNS1_14JSModuleLoaderENS1_7JSValueES8_S8_) +STUB( + "PWBfEpSHJHo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "PWCn1sHHua8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "PWDgQnNKGaA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("PWEUl-4tXqg", glPigletGetShaderBinarySCE) +STUB("PWFePkVdv9w", _ZNKSt7_MpunctIwE16do_positive_signEv) +STUB( + "PWH2q-S1mFw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEC2Ev) +STUB("PWIkEe+Sfuo", AnnotateBenignRaceSized) +STUB("PWK6yVIGNuY", uscript_hasScript) STUB("PWV8x6XJZjk", ScePsmMonoAssemblyOpenFull) +STUB("PWXBTy10y+w", g_queue_is_empty) +STUB("PWaO8OLOqvE", _ZNK7WebCore6Widget23convertToContainingViewERKNS_8IntPointE) +STUB("PWaaV5FWHFw", ucnv_openCCSID_67) +STUB( + "PWavCc6YwUI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "PWc9leqAQf4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEC1EPS8_) +STUB("PWm9MyJJVqU", _ZN3sce4Json5ValueC2ENS0_9ValueTypeE) +STUB("PWmDp8ZTS9k", _Getint) +STUB( + "PWnPsaIbiNY", + _ZN3sce2Np9CppWebApi7Matches2V112ErrorFactory6createEPNS1_6Common10LibContextEiPKcPNS5_12IntrusivePtrINS3_5ErrorEEE) STUB("PWokFqab5q4", sceVoiceQoSReadPacket) +STUB( + "PWthJlynYho", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEC1EPNS2_10LibContextE) +STUB("PWzIeSR0K-Q", _ZNK7WebCore12DOMTokenList5valueEv) +STUB( + "PX+IThZZ2Zk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEptEv) +STUB("PX2JkQE8Fx8", _ZN7WebCore11DisplayList10StrokeRectD2Ev) +STUB("PX8-UX+Mmq4", _ZN3sce7Toolkit2NP2V26Friend12BlockedUsersD2Ev) +STUB( + "PX8DKY9A5+g", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB( + "PX9ZL1spQoY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEEaSERSA_) +STUB("PXIHOuLUN40", _ZNK3sce4Json6String7compareERKS1_) +STUB( + "PXJsM5nAj+U", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEiRNS2_10LibContextEPT_m) +STUB( + "PXRHeT0uo4Y", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V124BandwidthUpstreamMetrics6toJsonERNS_4Json5ValueEb) +STUB("PXVZ3lnjoWE", _ZN3JSC7Symbols16isMapPrivateNameE) +STUB("PXVsMHK5Blk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEEC1EPS5_PNS2_10LibContextE) +STUB("PXYRoOPOyTc", _ZN12Mp4Retriever14processMdhdBoxEv) STUB("PXbVNuUqELQ", sceDepthHasCalibrationData) +STUB( + "PXegMkySLao", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("PXhJgp-x89w", + _ZN3JSC17DeferredWorkTimer16scheduleWorkSoonEPNS_8JSObjectEON3WTF8FunctionIFvvEEE) STUB("PXlA0M8ax40", sceFontGlyphGetGlyphForm) +STUB("PXmLYh0zF14", _ZNK3sce3Xml3Dom8Document13getFirstChildENS1_6NodeIdE) +STUB("PXoD+IoA-uQ", + _ZN3JSC8JSObject23putDirectCustomAccessorERNS_2VMENS_12PropertyNameENS_7JSValueEj) STUB("PXtTCOohxj0", sceMatMspaceDestroy) +STUB( + "PXw9k9HgmSg", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE11hasResponseEv) +STUB("PY+lfybvVfU", _ZN3sce7Toolkit2NP2V24Core13CallbackEventC1ERKS4_) +STUB("PY+mmDxGOAg", WKTextCheckerContinuousSpellCheckingEnabledStateChanged) +STUB("PYBehFWVd60", _ZN3sce2np14JsonDocBuilder12BuildBufSizeEv) +STUB("PYC1MqlPgbc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEC2ERKS7_) +STUB( + "PYCOxvGki5Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE7popBackEv) +STUB( + "PYF8N0OS8XQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEeqERKS9_) STUB("PYFS1H70bDs", sceNpWordFilterDeleteRequest) +STUB("PYGOcZf93e8", il2cpp_string_is_interned) +STUB("PYJ+DaIvLlA", + _ZN7WebCore8JSPath2D15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB( + "PYKWL6Itrj0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEC1EPS8_) +STUB( + "PYLBmmTsxuk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEC2Ev) +STUB( + "PYaLhZlTiCI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEEC2ERKS9_) +STUB( + "PYbW23ovF8Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEE5resetEPS9_) +STUB( + "PYcM1HCgAxY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEC2EPKS8_) +STUB( + "PYcXxp47suE", + _ZN7WebCore21JSCSSStyleDeclaration25getOwnPropertySlotByIndexEPN3JSC8JSObjectEPNS1_14JSGlobalObjectEjRNS1_12PropertySlotE) STUB("PYcZNLAIBnU", sceVideoOutSysGetDeviceCapabilityInfoByBusSpecifier_) +STUB("PYdkdhtQ+bw", ubrk_current_59) +STUB( + "PYfJY05L3CQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE21intrusive_ptr_sub_refEPS9_) +STUB("PYfXsUMOaic", _ZN9Inspector33LayerTreeBackendDispatcherHandlerD2Ev) +STUB( + "PYfl0pJbe38", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEE11get_deleterEv) +STUB("PYfpZR9hxdQ", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed14PlayedWithFeedEEC2Ev) +STUB( + "PYjhrZEAG4U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEmmEv) +STUB( + "PYpaNaFzJYg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEC2EPNS2_10LibContextE) +STUB("PYpjB0tyAZg", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorImEptEv) +STUB("PYqhIaBQ4T4", _ZN9JITBridge16initializeFromVMEPKcPPcPKNS_11RestartDataE) +STUB( + "PYuC58kHa3M", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEeqERKS9_) +STUB("PYwVp6yeFp0", X509_STORE_CTX_init) +STUB( + "PZ-8CMktLUM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE17getNpWebApi2ReqIdEv) +STUB( + "PZ-pSFT+DkY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEEC2Ev) +STUB( + "PZ1qZzRSmAE", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB( + "PZ3gdKr-lpo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE6resizeEj) +STUB( + "PZDLEQscRaE", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("PZEeC9wi0qo", _ZNK7WebCore16HTMLInputElement6heightEv) +STUB("PZKgT9x9Pqg", _ZN3sce7Toolkit2NP2V23TUS7Request19AddToAndGetVariableC1Ev) +STUB( + "PZQafG8P7oI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE21intrusive_ptr_add_refEPS9_) +STUB("PZQidcQkPQA", _ZNK3WTF7SecondsmiERKNS_24TimeWithDynamicClockTypeE) +STUB("PZReJzJ09L4", _ZN3sce7Toolkit2NP2V24Core7Request11MemoryPools20NET_MEM_DEFAULT_SIZEE) STUB("PZSoY8j0Pko", scePadGetFeatureReport) +STUB("PZSrBx2jITw", EC_KEY_get0_private_key) +STUB( + "PZWRkvQYGvs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "PZYIJF6OKB4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEC1EPNS2_10LibContextE) +STUB("PZZ887t9Ia4", _ZN3JSC7Options9setOptionEPKc) STUB("PZhz+vjp2CM", sceNpManagerIntSetTimeout) +STUB("PZiaHyBor4Y", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyleD2Ev) +STUB("PZigqoOxRjc", _ZN3sce7Toolkit2NP2V210Tournament18OneVsOneRankResultC1Ev) STUB("PZku4ZrXJqg", sceKernelCancelEventFlag) +STUB("PZl4PCwi7eA", _ZN13MsvMetaEditor17updateChunkOffsetEi) +STUB("PZlpwRuzFII", WKBundlePageOverlayCreate) +STUB("PZnzfneCpcI", _ZN9Inspector34ApplicationCacheFrontendDispatcherC2ERNS_14FrontendRouterE) +STUB("PZoM-Yn6g2Q", __atomic_fetch_xor_2) +STUB( + "PZosZck9eQU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEC1ERKS7_) +STUB("PZrdbMOqv-E", WKPreferencesSetDoNotTrack) +STUB("PZtD8PmirVs", _ZN7bmalloc3api14enableMiniModeEv) +STUB( + "PZx4S+Xmbf8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEC1EPS6_PNS2_10LibContextE) +STUB("PZyF8v8vWmo", WKInspectorShow) +STUB("PZzcUP8YYkg", WKContextGetApplicationCacheManager) +STUB( + "PZzx6EaKZLY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSC_) +STUB("Pa+yxIZow48", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEaSERKS7_) +STUB( + "Pa1YPzymIAo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEppEv) +STUB( + "Pa8aSaa01To", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("PaCJ0O1vzb4", + _ZNK3sce2Np9CppWebApi14SessionManager2V123MemberWithMultiPlatform12getAccountIdEv) +STUB("PaCJ9nCgYE0", _ZN3JSC11createErrorEPNS_9ExecStateERKN3WTF6StringE) +STUB("PaClLJdOLbk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEE5resetEPS6_) +STUB("PaDk9bdmdhU", FT_Request_Size) +STUB( + "PaFLeSp62Dc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE5beginEv) STUB("PaFw9w6f808", sceGnmDebuggerWriteSqIndirectRegister) +STUB("PaG1xovlZvk", _ZN3JSC14ProtoCallFrame17setPaddedArgCountEj) STUB("PaHMZnyoHwg", sceVisionManagerRequestHeadDetection) +STUB( + "PaKtQhFVv7M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEC2Ev) +STUB("PaSEtyxiC0o", cairo_identity_matrix) +STUB( + "PaSt8KCYZqM", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB("PaWM1Sx9K9w", _ZN4Manx11MediaPlayer8bufferedERfS1_) +STUB("PaX1Sk7j+bk", mono_aot_Sce_Vsh_UsbStorageSceneplt) STUB("Paa9dgHnHpQ", sceDepthInitialize) +STUB( + "Pace4fcdw2U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEC2Ev) +STUB("PacfzIbFdNg", usearch_search_67) STUB("PafRf+sxnwA", sceNpManagerIntRemovePlusMemberTypeCallback) STUB("PagHtqiYnQg", sceAvSettingGetCurrentOutputMode) +STUB( + "PapIxJYyhbU", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V136ConnectionQualityWiredMetricsFactory7destroyEPNS3_29ConnectionQualityWiredMetricsE) +STUB( + "Pay966az26k", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEE3getEv) +STUB("Pays4s+a5y8", _ZN7WebCore8Settings29setAuthorAndUserStylesEnabledEb) +STUB( + "Pb-LQRTKDHg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("Pb0RYpBlYXc", _ZTVN7WebCore11DisplayList16DrawLinesForTextE) STUB("Pb1d+j-bBSc", sceHmd2ReprojectionGetMirroringWorkMemorySizeAlign) +STUB( + "Pb2XGGW9h1M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("Pb37sbtje74", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE5beginEv) +STUB("Pb4ZbPFaVQ8", _ZN7WebCore15DatabaseManager10initializeERKN3WTF6StringE) +STUB( + "Pb4fhyHGoyo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEaSERS7_) +STUB("Pb8eru9c+lw", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi27ParameterToLeaveGameSessionD1Ev) +STUB("PbAUNzvCsCU", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification11RefreshRoomEE3setEv) +STUB("PbCV7juCZVo", _ZNSt10filesystem10_Copy_fileEPKcS1_) +STUB( + "PbFu2lguZ0Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEC2EPKS6_) +STUB("PbJcgQdU4CY", _ZN9Inspector14FrontendRouter22disconnectAllFrontendsEv) +STUB("PbYhP6Fz+us", mono_aot_Sce_Vsh_Passcodeunbox_trampolines) STUB("Pbdz8KYEvzk", sceFontGraphicsUndefineIndexedVertexesGlyphs) +STUB("PbgnspbyMZA", _ZN3sce7Toolkit2NP2V29Messaging12Notification16NewInGameMessageC2ERKS5_) +STUB("PbiFMWQuGuI", _ZNK7WebCore9TreeScope26ancestorElementInThisScopeEPNS_7ElementE) +STUB("PbjqN0JPi5M", u_vfprintf_67) +STUB( + "PbjxTY8FhmY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEEC1EPNS2_10LibContextE) +STUB( + "Pbmd+84lZL4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEE3getEv) +STUB("Pbp5FkR35mI", _ZN3PAL19fileSizeDescriptionEm) +STUB( + "Pbps2hA1fFQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEC1ERS7_) +STUB( + "PbuUz1MJEXY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEEC2ERS9_) STUB("PbxGVfOvUQY", sceFiosFHPwrite) +STUB( + "PbyN2ILmHlY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE7popBackEv) +STUB( + "Pc1YZeWoUN0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "Pc1d6ug+ZVQ", + _ZN3JSC11createErrorEPNS_9ExecStateENS_7JSValueERKN3WTF6StringEPFS4_S6_S6_NS_11RuntimeTypeENS_13ErrorInstance28SourceTextWhereErrorOccurredEE) +STUB("Pc45jNZ5K98", _ZN12video_parser5vpcom8datetime8DateTime9DayOfWeekEttt) STUB("Pc4z1QjForU", sceVoiceGetMuteFlag) STUB("Pc92TjYbXpc", sceHidControlGetSparkState) +STUB( + "PcCYsNX+7Do", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEED1Ev) +STUB( + "PcGkS2zg1-k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEmmEi) +STUB( + "PcH2Q-teFNc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEEC2Ev) STUB("PcJ5DLzZXSs", sceSystemStateMgrStartRebootTimer) +STUB("PcKApW9kVoQ", _recvmsg) +STUB("PcNVQFAuqbk", delegate_virtual_invoke_imt_7) +STUB("PcNaMEuQPh0", _ZN3sce7Toolkit2NP2V26Trophy7Request13SetScreenshotD2Ev) +STUB("PcOXjZjsab4", _ZN7WebCore6Widget12setFrameRectERKNS_7IntRectE) STUB("PcP1nxOoL+4", sceVideoCoreGetPlayStatus) +STUB("PcT-A0bz7N8", _ZN7WebCore18PlatformTimeRangesD2Ev) +STUB("PcVhh7YEil4", mono_aot_appunbox_trampolines_end) +STUB("Pca2ZXDVYew", _ZN4Manx3Ssl10SslContextD0Ev) +STUB("Pcb8d33eJhM", Java_java_lang_reflect_Array_setLong) +STUB("PccynQ5NdVQ", _ZN3sce2np10JsonNumber6SetNumEj) STUB("PcdLABhYga4", sceNetAllocateAllRouteInfo) +STUB("Pcg6xQUhq9E", _ZNK3sce4Json14InitParameter217getFileBufferSizeEv) +STUB("PcgRdxUZ03o", _ZN3sce2Np9CppWebApi14SessionManager2V15ErrorC2EPNS1_6Common10LibContextE) +STUB( + "PcgZWXF7hMg", + _ZN3sce2Np9CppWebApi14SessionManager2V159PostPlayerSessionsSessionIdSessionMessageRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_52PostPlayerSessionsSessionIdSessionMessageRequestBodyEEE) STUB("Pcq7UoYAcFE", sceLibcPafMspaceCheckMemoryBounds) +STUB("PcudeTUiShQ", _ZNK3WTF10StringImpl18tryGetUtf8ForRangeEjjNS_14ConversionModeE) +STUB( + "PcvX5X0q9wI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEC2Ev) +STUB("Pd18Dkr4qoo", mono_aot_Sce_Vsh_MimeTypeplt) +STUB("Pd2AvWnip5Y", recvtbl) +STUB( + "Pd3pVezj150", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEdeEv) +STUB("Pd5A5doC5rA", _ZNK3sce2Np9CppWebApi7Matches2V119RequestInGameRoster12playersIsSetEv) +STUB("Pd7KtJ1gybk", link) +STUB( + "PdDpbnyAxr4", + _ZN7WebCore11JSDOMWindow3putEPN3JSC6JSCellEPNS1_14JSGlobalObjectENS1_12PropertyNameENS1_7JSValueERNS1_15PutPropertySlotE) +STUB( + "PdEryvW+7WY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEE7add_refEv) +STUB( + "PdFvHywfLMo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEE7add_refEv) +STUB( + "PdI7xcMEoPk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEED1Ev) +STUB( + "PdJLZunlqK4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEC1Ev) +STUB( + "PdJw2ia8i2g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEED2Ev) +STUB("PdTLkNrBgvg", _ZN3NTF17URLRequestFileJobC1Ev) +STUB( + "PdVE9xHBcwY", + _ZN3sce2Np9CppWebApi7Matches2V128ResponseTeamStatisticFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_21ResponseTeamStatisticEEE) +STUB("PdWicphhWgg", glFenceSync) STUB("PdYx470F6B8", sceNpAppLaunchLink2IntGetCompatibleTitleIdList) +STUB("PdcdDVD-1VQ", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V13Mmr13unsetPerGenreEv) +STUB("Pdgml4rbxYk", cpuset_getaffinity) +STUB( + "Pdh9-NGvL4k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE6resizeEj) +STUB( + "PdiPOkTx27s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEED2Ev) STUB("Pdj54NJ5P+4", sceDebugGetSystemStatusBlob) +STUB( + "PdjZbR+F6II", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEED2Ev) +STUB( + "PdlXdHLdinQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEED2Ev) +STUB("PdnFCFqKGqA", _FCosh) +STUB("PduV0fym+xE", _ZN3WTF14FileSystemImpl8hardLinkERKNS_6StringES3_) STUB("PdwTVolubW4", sceVorbisDecPcmSeekPage) +STUB("PdzHTafDY3E", _ZN7WebCore8SVGNames17vert_origin_yAttrE) +STUB("Pe-Hr78sPkQ", _ZN3sce7Toolkit2NP17PlayedWithRequestC2Ev) +STUB( + "Pe2ayJf1BoE", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_15PlayedWithStoryENS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv) +STUB("Pe9fHKX7krE", _ZN3sce2np9HttpTransD0Ev) STUB("PeAyBjC5kp8", sceNpTrophyIntGetRunningTitles) +STUB( + "PeK2iTZ4wXA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE8copyFromERKS9_) +STUB("PeO5DtuCnv4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEppEv) +STUB("PeTaOgXASCo", _ZNK7WebCore18PlatformTimeRanges4dumpERN3WTF11PrintStreamE) STUB("PeUUCAS9Kso", sceVideoOutConfigureLayout) +STUB("PeVBz3ApziU", + _ZN3sce2Np9CppWebApi14IdentityMapper2V342PsnWebError_error_validationConstraintInfo6setKeyEPKc) +STUB("PeVxngwyZI8", unum_setContext_67) +STUB( + "PeiuVQ7NA3k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEE11get_deleterEv) +STUB("PekkQqYyI68", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEE11release_refEv) +STUB( + "Penz+56LOYs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "Peo1zFXdRzY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEC1EPS6_PNS2_10LibContextE) +STUB("PexfHz4VoJM", _ZN7WebCore22RuntimeEnabledFeatures14sharedFeaturesEv) +STUB("Pf-StbYH98s", _ZN15AbstractStorage10YoutubeAPID2Ev) +STUB("Pf0ke26Zigo", WKRectGetValue) +STUB("Pf4LG6AfvPc", Java_java_lang_reflect_Array_setBoolean) +STUB("Pf6JfPjQq-w", + _ZN7WebCore15StringTruncator20rightClipToCharacterERKN3WTF6StringEfRKNS_11FontCascadeERfbf) +STUB( + "Pf7ql1xBLmU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE4termEv) +STUB( + "Pf9RPjNNlQ4", + _ZN9Inspector21InspectorRuntimeAgent5parseERN3WTF6StringERKS2_PNS_8Protocol7Runtime15SyntaxErrorTypeERNS1_8OptionalIS2_EERNS1_6RefPtrINS7_10ErrorRangeENS1_13DumbPtrTraitsISE_EEEE) +STUB("PfBVKm1Magc", _ZNK3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead12getAccountIdEv) +STUB( + "PfDPd2AzdX4", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetrics18getConfidenceScoreEv) STUB("PfJQBFuXEBs", sceCesEucKrToUtf16) +STUB( + "PfN-ltCCZaU", + _ZN7WebCore39cleanHTTPRequestHeadersForAccessControlERNS_15ResourceRequestEN3WTF9OptionSetINS_29HTTPHeadersToKeepFromCleaningEEE) +STUB( + "PfOW9QWxsxc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEaSERKS9_) STUB("PfQ+f6ws764", sceNpWebApiDeleteServicePushEventFilter) +STUB("PfRJjBbTwOw", rgctx_fetch_trampoline_rgctx_82) +STUB( + "PfRQfQdc7G8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEplEm) STUB("PfSTDCgNMgc", sceNpWebApiRegisterPushEventCallback) STUB("Pfb83SkQ0gQ", sceRnpsAppMgrRegisterShellUI) +STUB("PfccT7qURYE", ioctl) +STUB( + "Pff9L29Cce4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEmmEv) +STUB("PfjnSfKLFMU", _ZN3sce7Toolkit2NP2V24Auth8AuthCode8deepCopyERKS4_) +STUB("PfoEKUy-xIM", mono_aot_I18N_Rareplt_end) STUB("PfoKAY2M0QE", sceVideoCoreInterfaceWaitCanvasFlip) +STUB("PfoqqnKHFho", _ZN3sce2Np9CppWebApi14SessionManager2V112JoinableUser12setAccountIdERKm) +STUB("PfrOKhBNw2Q", _ZN3sce2Np9CppWebApi7Matches2V117LeaveMatchRequest8fromJsonERKNS_4Json5ValueE) +STUB( + "Pfs2odTfJ-0", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Runtime13ObjectPreview4TypeEEEN3WTF8OptionalIT_EERKNS6_6StringE) +STUB("Pft+NpFz9z4", _ZNK7WebCore10ScrollView42documentScrollPositionRelativeToViewOriginEv) +STUB( + "PfwtefDLVfw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEEC2ERKSA_) +STUB( + "PfzhaLrZ1O8", + _ZN7WebCore17FrameLoaderClient23getLoadDecisionForIconsERKN3WTF6VectorISt4pairIRNS_8LinkIconEmELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB( + "Pg4Bpti8tqA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE5emptyEv) STUB("PgAf0Wwv4ZQ", sceSlimglClientMonitorServerEnd) +STUB( + "PgGlOD1xUxE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEptEv) STUB("PgGve9EvhPE", sceKernelGetHwSerialNumber) +STUB( + "PgIRjGYJi6Q", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEplEm) +STUB( + "PgKIj7-idEU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "PgKOghaUzuE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "PgMA4Vpxvlo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("PgNI+j4zxzM", sce_net_in6addr_nodelocal_allnodes) +STUB( + "PgSY6kr4vxk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE7reserveEi) +STUB( + "PgSaA43nlDw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "PggA7FIAXDY", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("PgiCaoqRKKc", _ZN3sce2np4Time10AddSecondsEl) +STUB("PgiTG7nVxXE", _ZNSt10moneypunctIcLb1EE2idE) STUB("PgjXRsgiZRU", sceMusicFwGetMuted) +STUB("PglLaOawgMs", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer10getuseFreeEv) STUB("Pglk7zFj0DI", sceNpGetSdkVersion) +STUB("PgluMrqMCsI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEEixEm) +STUB( + "PgsU-b86bWc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEC1EPS8_) +STUB("PgsapqTNwkg", _ZN12video_parser7cVpUtil14vp_ff4_memmoveEPvS1_mPKvm) +STUB("Pgt0gg14ewU", CA_MGMT_allocCertDistinguishedName) +STUB("PgyNd-jLu7Q", _ZTVN7WebCore28BackingStoreBackendCairoImplE) +STUB("Ph2MVCGrKnE", _ZN3sce7Toolkit2NP2V26Trophy7Request18GetTrophyPackGroup13INVALID_GROUPE) +STUB("Ph3msbMf67E", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEEcvbEv) +STUB( + "Ph5JMKiX0JA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE21setOnFinishedCallbackEPFvliS6_PvEPFvliSD_ESD_) +STUB( + "PhF8OCvqF70", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEEaSERSA_) +STUB( + "PhH0JtC3wyI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEEC2ERSA_) +STUB("PhIREokl5jw", _ZN7WebCore9HTMLNames7nobrTagE) +STUB("PhM-93-E9p8", _ZN7WebCore19toAutofillFieldNameERKN3WTF10AtomStringE) +STUB( + "PhPCK-Hf2Sg", + _ZN3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBody11setLocationERKNS1_6Common12IntrusivePtrINS3_8LocationEEE) +STUB( + "PhSP8JkxzgQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEE5resetEPS9_) +STUB( + "PhTR98wtFCg", + _ZN7WebCore28getDefaultWebCryptoMasterKeyERN3WTF6VectorIhLm0ENS0_15CrashOnOverflowELm16ENS0_10FastMallocEEE) STUB("PhXZbj4wVhE", sceUserServiceGetAppSortOrder) +STUB("PhaB8j60MX0", + _ZNK3JSC8Debugger36handleExceptionInBreakpointConditionEPNS_14JSGlobalObjectEPNS_9ExceptionE) +STUB("PhaCI6xuby4", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_6NpUserEED1Ev) +STUB("Phf1BeT85t0", _ZN3sce2Np9CppWebApi14ConnectAccount2V212PartnerToken12setTokenTypeEPKc) +STUB( + "PhkmqQQ2gBI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEE7get_refEv) STUB("PhnNN0UEV6Y", sceAudioOutExGetMonitorInfo) +STUB( + "PhsQLxwcDaI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariable9terminateEv) +STUB( + "PhyeW+9ijRE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEEC2Ev) STUB("Pi3K47Xw0ss", sceSystemServiceRegisterDaemon) +STUB("Pi6AW0gO3bI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEEC2Ev) +STUB("PiBUc0A-h7M", mono_aot_platformunbox_trampolines) +STUB("PiJDZsxlKTc", _ISCIIData_67) +STUB( + "PiKz+neakeE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("PiMLXWchQjY", mono_disable_jit_time_log) +STUB("PiR0tiTnNbM", _ZN3sce4Json6String6resizeEm) +STUB( + "PiTXx78dkbo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEED2Ev) +STUB("PiTp8yJA66w", __tsan_atomic8_exchange) +STUB("PiVXIX6zE6g", _ZN7WebCore20TransformationMatrix11translate3dEddd) +STUB("PiYbgSiNYTU", _ZN3sce7Toolkit2NP2V24Auth7IdTokenC1Ev) +STUB( + "PiZeyClurI4", + _ZN7WebCore16MIMETypeRegistry16allowedMIMETypesERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEES8_) +STUB("Piaf9uSYkTw", _ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_13SessionMemberEE8max_sizeEv) +STUB("PiajzJbyAUU", _ZN7WebCore16MIMETypeRegistry24isSupportedImageMIMETypeERKN3WTF6StringE) +STUB( + "PibUYJZCKsY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("PibmKHRQ6o4", _ZN3sce2np13JsonArrayImpl7AddItemEPKNS0_9JsonValueE) +STUB( + "PilXF3qeZGY", + _ZN3sce2Np9CppWebApi14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyD1Ev) +STUB( + "PinRPBASNQc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEEC2ERS8_) STUB("Pip4E4FFnl4", sceAppInstUtilGetMainAppTitleIdForSP) +STUB("PiqUFSb3lME", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V125NatConnectivityPropertiesD1Ev) +STUB( + "Pius-5zMeJI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE8copyFromERKS9_) +STUB("PivWP53ZNpg", + _ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody6toJsonERNS_4Json5ValueEb) +STUB( + "Pizp19rhNKs", + _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody21joinableUserTypeIsSetEv) +STUB( + "Pj4M-cTZQ1U", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) STUB("Pj8CwRqcOIk", sceRegMgrCntlStopHdd) +STUB("Pj8asGd55jA", cairo_save) +STUB( + "PjBvrx1BrXE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEppEv) +STUB("PjCUXhgjQWU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEaSERS7_) +STUB("PjH5dZGfQHQ", _ZNSt13basic_filebufIwSt11char_traitsIwEE8overflowEi) +STUB("PjJl7n8fBOw", _ZN3sce7Toolkit2NP2V24Core15MemoryPoolStatsD2Ev) +STUB("PjPjBpqrCsk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEdeEv) +STUB( + "PjR1789j8-0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEC1ERKS7_) STUB("PjS5uASwcV8", sceVideoOutSetBufferAttribute2) +STUB( + "PjSNbpy6b+4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "PjSpYoWjk-8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEeqERKS9_) +STUB( + "PjWA+oX7lQM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEE11get_deleterEv) +STUB( + "PjWWA4MpFFM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEED1Ev) +STUB("PjZH0eJrV2o", Java_com_sony_bdjstack_javax_media_controls_SoundManager_start) +STUB("PjaLsEBLxZM", rgctx_fetch_trampoline_mrgctx_2_p) +STUB( + "PjbKiBhuYDs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("Pjc+g20VjsI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEEmmEv) +STUB("PjcqP0lC4U8", _ZNK7WebCore13GraphicsLayer18getDebugBorderInfoERNS_5ColorERf) +STUB("PjgFQh4K4ic", RSA_verify_PKCS1_PSS) +STUB( + "Pji3V23E1vY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("Pjjg+htjN1Q", _ZN7WebCore21JSCSSStyleDeclaration9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("PjlYLdMXkbY", + _ZNK3sce2np14JsonObjectImpl16fieldSetAddFieldEPNS1_8FieldSetEPKcPKNS0_9JsonValueE) +STUB("Pjm5rPUOZcg", _ZN3sce7Toolkit2NP2V212NetworkUtils16NetStateDetailedD1Ev) +STUB("PjtNjwtAm4A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEED1Ev) +STUB( + "PjutmGKTYYk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEptEv) +STUB("PjvLIYbR0dQ", + _ZN3sce7Toolkit2NP2V29Messaging7Request27GetReceivedGameDataMessages13MAX_PAGE_SIZEE) +STUB( + "PjvyEeCW1iY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEC2EPKS8_) +STUB( + "PjwW7BRPNNI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEC1ERKS7_) +STUB("PjwbqtUehPU", _ZSt19_Throw_future_errorRKSt10error_code) STUB("Pjwx-8rnLT8", sceAvSettingIsVrSupportedByHdmiMonitorInfo2) +STUB( + "Pk6qU699jek", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE5emptyEv) +STUB( + "Pk8hfvqWG-0", + _ZN9Inspector23CanvasBackendDispatcher27requestCSSCanvasClientNodesElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("PkCPXmop-Eo", SSL_check_private_key) +STUB("PkGZZi1G2Gw", cairo_clip) +STUB("PkHNx0qXm-M", jpeg_fdct_5x5) +STUB( + "PkJTic9Y9z4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("PkKivtUQ5Mc", _ZN7WebCore36ISOProtectionSystemSpecificHeaderBox5parseERN3JSC8DataViewERj) +STUB( + "PkOxC--b9aM", + _ZN15AbstractStorage14TwitterStorage10GetContentERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_7ContentEE) +STUB("PkPhUiq-uJ4", mono_aot_Sce_Vsh_ShareGuideScenejit_code_start) STUB("PkRTWNBI4IQ", sceSystemServiceActivateMpeg2Init) STUB("PkS44IGrDkM", pthread_timedjoin_np) STUB("PkdLsRA4ON0", sceGameCustomDataDialogUpdateStatus) +STUB("Pkhe5Qcq++0", glClearColor) +STUB( + "PkiChLLkO3g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEED1Ev) +STUB("PkjUsxE3cIU", _ZN3sce2Np9CppWebApi12Leaderboards2V112ErrorFactory7destroyEPNS3_5ErrorE) +STUB( + "Pkmgb7aHYfY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEE7add_refEv) +STUB( + "PkogzrOOpfU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEppEi) STUB("Pkx0lwWVzmQ", sceNetConfigWlanInfraGetRssiInfo) +STUB("Pl+MvjZGQZ0", _ZN3sce7Toolkit2NP2V210Tournament14RegisteredTeamC1ERKS4_) +STUB("Pl0MvaNRpQM", nsnp_SetLicense) +STUB("Pl1+a02ZdbY", fuse_read_cmd) +STUB( + "Pl2rC3odlUQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEppEv) +STUB( + "Pl9eUn2ogjA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE7reserveEi) +STUB( + "Pl9estppCus", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "PlA5F5t-T5A", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_28ActivityFeedSharedVideoStoryENS1_15AppSTLAllocatorIS5_EEEED1Ev) +STUB( + "PlBqyQG8tWo", + _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody16getMaxSpectatorsEv) +STUB("PlDgAP2AS7M", _Wctype) +STUB("PlEm4beEuzU", mono_aot_Sce_Vsh_FileSelectorjit_code_end) +STUB("PlJvKz-RQMU", _ZN4Manx4Pipe5closeEi) +STUB( + "PlM8QvuGgq8", + _ZN9Inspector20DOMBackendDispatcherC2ERNS_17BackendDispatcherEPNS_27DOMBackendDispatcherHandlerE) +STUB("PlVbL+8eODs", u_versionFromString_67) +STUB("PlYC5e5SHlE", _ZN7WebCore11MathMLNames17linethicknessAttrE) +STUB("PlbtsaqomCQ", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEED2Ev) +STUB("Plf-L-WEaok", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge18ChallengeThumbnailEE12deepCopyFromERS7_) +STUB("Plg0ULGTHrY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEEC1ERS6_) +STUB( + "Plggp-cNg+w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE7popBackEv) +STUB("Plgh0aSAqgE", AnnotateNoOp) +STUB( + "PljvwIWp+6E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEED1Ev) +STUB("Plm0DSilV0U", _ZN3sce7Toolkit2NP2V28Matching7Request7GetDataC1Ev) +STUB("PlmVIwQdarI", uuidgen) +STUB( + "PlmysXlZLXQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE6resizeEj) +STUB( + "PlpUlUVPvKs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEC2ERS7_) +STUB( + "Plqd66h4PH0", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi44ParameterToPatchGameSessionsSearchAttributes47getpatchGameSessionsSearchAttributesRequestBodyEv) +STUB("Plt0pAFPLEA", uloc_getLocaleForLCID_67) +STUB("PltJvsE1R5U", + _ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody18getStartSerialRankEv) STUB("Pm1Yrupb4UI", sceCesSJisPutCode) +STUB("Pm62TDoZhmw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEC2Ev) +STUB( + "PmCmHvVvky4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEC2EPS8_) +STUB("PmDQ3uGuWUI", waitid) +STUB("PmI7ucuTG-U", + _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody20unsetUpdatedDateTimeEv) STUB("PmL-TwKUzXI", pthread_mutexattr_getpshared) +STUB( + "PmLxlbiX2Gk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEC2Ev) +STUB("PmMi+EcpbpM", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry13getSerialRankEv) +STUB("PmNFmqCvcBo", _ZN3sce2np18HttpConnectionPool13FindRemovableEv) +STUB("PmO0p3Yh6-0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEixEm) +STUB( + "PmQt+EUQlmA", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("PmW8tQ5KXZU", + _ZN7WebCore28convertToIntegerEnforceRangeImEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB("PmYkO9PkI48", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEEneERKS7_) +STUB("PmZfv0lup1c", lutimes) +STUB( + "Pme9AKbb-aI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEEcvbEv) +STUB( + "PmiZ2KHvbEY", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeaders21intrusive_ptr_sub_refEPS5_) +STUB( + "Pmnnk3GmlBI", + _ZN9Inspector8Protocol13BindingTraitsINS0_8Debugger15FunctionDetailsEE11runtimeCastEON3WTF6RefPtrINS5_8JSONImpl5ValueENS5_13DumbPtrTraitsIS8_EEEE) +STUB( + "PmoDYbfb0As", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEED2Ev) +STUB("Pms894z0DiA", ucnv_fromUnicode_67) +STUB("PmsH4f3z8Yk", _ZN3sce2np3ipc17ServiceIpmiClientD0Ev) +STUB("Pmww3qbPTXI", am_pm) STUB("PmyrbbJSFz0", sceNpWebApi2PushEventUnregisterPushContextCallback) +STUB( + "Pmzfl-YOkdU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEED1Ev) +STUB("Pn+RLbJ8UxY", mono_install_assembly_preload_hook) +STUB("Pn2dnvUmbRA", _Atomic_fetch_and_4) +STUB("Pn2yl7Yi2e4", WKPageConfigurationGetPageGroup) +STUB("Pn55KHIISzQ", mono_aot_Microsoft_CSharpplt_end) +STUB("Pn5ejKkYino", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_17TitleCloudStorage2V19ConditionEEC1EPS6_) +STUB( + "Pn77BeNF79U", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody23unsetTotalVariableCountEv) +STUB("PnEf59WpcxE", jinit_memory_mgr) +STUB("PnF5lM3QO5o", _ZN3sce7Toolkit2NP2V28Commerce10DescriptorD2Ev) +STUB( + "PnKT6R6JJfY", + _ZN7WebCore10StorageMap11importItemsERKN3WTF7HashMapINS1_6StringES3_NS1_10StringHashENS1_10HashTraitsIS3_EES6_EE) +STUB("PnLJibQS9wc", _ZN24scePssCAudioSourcePlayer9SetVolumeEfjj) +STUB("PnM1RtWwuQQ", _ZN7WebCore10FileSystem11getFileSizeERKN3WTF6StringERx) +STUB( + "PnRxpmg91oE", + _ZN3sce7Toolkit2NP2V28Matching11searchRoomsERKNS3_7Request11SearchRoomsEPNS2_4Core8ResponseINS3_5RoomsEEE) +STUB( + "PnS3OVKcuCg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB("PnTVY89MIWQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEEC2EPS5_PNS2_10LibContextE) +STUB( + "PnWl6769fkU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEmmEv) +STUB("PnbfogQQRus", _ZN9Inspector15RemoteInspector19sendMessageToRemoteEjRKN3WTF6StringE) +STUB("Pnc6YCGGCLs", __asan_store1) +STUB( + "PnfXpJT6WMQ", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyC2EPNS1_6Common10LibContextE) +STUB("PnfhEsZ-5uk", _Atomic_fetch_and_2) +STUB( + "Png2PqauR34", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEEC2ERSA_) +STUB("PnopWZwal4g", mono_aot_Sce_Vsh_AppDbWrapperjit_code_end) +STUB("PnslheyT+CQ", _ZN3JSC14JSGlobalObject13clearRareDataEPNS_6JSCellE) +STUB( + "PntCHBbMMvk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEC1EPS8_) +STUB( + "PnxKtL3GAWs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEEC2ERSA_) +STUB("PnyncWpDho8", _ZN3sce2Np9CppWebApi6Common6VectorIdED1Ev) +STUB( + "Po+yMubJvcU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB("Po-3sCgpU9c", _ZN9Inspector22InspectorDebuggerAgent20setSuppressAllPausesEb) +STUB("Po2PGyK-DwM", _ZN3JSC20waitForVMDestructionEv) +STUB("Po4ZjIgKP3Y", mono_monitor_exit) +STUB("Po8kyd3DlIw", FT_Stroker_Rewind) +STUB("PoGof-Lb4mw", _Z38sceGpuDebuggerSetEnabledExceptionsMaskPN3sce3Gnm16CsStageRegistersEj) +STUB( + "PoHvMs4v0oM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEC1EPS6_PNS2_10LibContextE) +STUB( + "PoMkBfuweq4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEE5resetEPS9_) +STUB("PoNpBtcE2WM", _ZNK3sce7Toolkit2NP9Utilities6FutureI7SceNpIdE17getAdditionalInfoEv) +STUB("PoPlzSr6JaQ", _ZN7WebCore21SQLiteDatabaseTracker35decrementTransactionInProgressCountEv) +STUB( + "PoQTm3DJn+E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE5beginEv) +STUB("PoT9ByTU4ws", curl_mime_data_cb) +STUB("PoT9sdk4N18", _ZN3WTF10StringImpl7replaceEDsPS0_) +STUB("PoUnroC+e4c", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBodyD2Ev) +STUB( + "PoWNhZLzMJM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "Poe6uclc82E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEC2Ev) STUB("PoeH5eI+ozw", sceAvSettingCallbackFuncsInit) +STUB("PofiC1Z9Z+M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEaSERKS7_) STUB("Pogmt0dlTkU", sceShareFactoryUtilBackToGameFromShareFactory) +STUB("PonjVrfsY5g", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEEplEm) +STUB("PooCGWbZmrg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEE7add_refEv) +STUB("Poroalj+js4", mono_lookup_pinvoke_call) +STUB("PosUi-wH830", _Z34sceGpuDebuggerUnregisterShaderCodePKN3sce3Gnm16VsStageRegistersE) +STUB( + "PosWMc9A4-M", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEptEv) +STUB("PosyHI1Qm2A", png_set_palette_to_rgb) +STUB("PoyC2Xihreo", mono_aot_I18N_MidEastunbox_trampoline_addresses) +STUB("Pp-vZnBIOY4", mono_mempool_new_size) +STUB( + "Pp1Bi76tQE4", + _ZN7WebCore21WheelEventTestTrigger40setTestCallbackAndStartNotificationTimerEON3WTF8FunctionIFvvEEE) +STUB("Pp2US+ss9Sw", mono_aot_Sce_Vsh_Sl2_Sl2Clientunbox_trampolines_end) +STUB("Pp9o-vFsZxc", RemotePlayGetConnectHistory) +STUB("PpEwl0ilHfA", GCC_except_table125) +STUB("PpGCVL9tJVg", uregex_find_67) +STUB( + "PpONiIGBllY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEEptEv) +STUB("PpR7I7RCsY0", _ZN3sce4Json6Parser11parseNumberERNS0_5ValueERNS0_11InputStreamEPS2_) STUB("PpVBSdRazkc", sceAppInstUtilAppCancelGetAllAppSize) +STUB("PpVPmeyqKTU", uhash_compareLong_67) +STUB("PpXQBPUd1t4", _ZN3sce7Toolkit2NP2V27Ranking8TempRankC1ERKS4_) +STUB( + "PpXl-9OTjBQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEC2Ev) +STUB( + "PpYiE4tpcJw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEEaSERKSA_) STUB("PpbaIOEJ-Qw", sceDataTransferTargetRequestGetUsers) +STUB("Pph0Anbgy3w", _ZN7WebCore17JSHTMLLinkElementD1Ev) +STUB("PphZdSYxF0A", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEEdeEv) +STUB( + "PpmsWwfTXaQ", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser13isInitializedEv) +STUB("Ppoo4x3g3o0", + _ZN3sce2Np9CppWebApi14SessionManager2V124PlayerSessionPushContextC2EPNS1_6Common10LibContextE) +STUB("PpwmhWPNmq4", mono_class_get_nested_types) +STUB("PpzhX1tTFJ8", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18GameCustomDataItemEE9constructEPS3_RKS3_) +STUB("Pq2t9rer-eU", jpeg_write_scanlines) +STUB( + "Pq3IW5WuNno", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEptEv) +STUB("Pq3eUDHuJeA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEE11release_refEv) +STUB( + "Pq4PkG0x1fk", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERm) +STUB( + "Pq4ZFyg3TbE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEEcvbEv) +STUB("Pq89GcAEVlY", uhash_count_67) +STUB("Pq8d3VGRQsE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEC2Ev) STUB("PqCY25FMzPs", sceNpWebApiUnregisterExtdPushEventCallback) +STUB( + "PqCagVc4p7c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEE11release_refEv) +STUB("PqF+kHW-2WQ", tolower) +STUB("PqF42XCkG2M", _ZTVN7WebCore21ISOTrackEncryptionBoxE) +STUB("PqGi4bJ8EVU", _ZN3sce7Toolkit2NP2V27Ranking12FriendsRanks8MAX_PCIDE) +STUB("PqItRlA8jh8", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_22FriendsRankInformationEE3getEv) +STUB("PqJuCpzlGlo", uregex_openUText_67) +STUB("PqNJHQetrCU", _ZN3sce7Toolkit2NP2V28Matching7Request11SetRoomInfo24MAX_SIZE_CHANGEABLE_DATAE) +STUB("PqRL6RZQt2w", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEEC2EPNS2_10LibContextE) +STUB( + "PqRaRV11Bow", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEEcvbEv) +STUB( + "PqRoVXyPIWA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEptEv) +STUB( + "PqSY4P0AdQk", + _ZN3sce2Np9CppWebApi14SessionManager2V160PatchGameSessionsSessionIdMembersAccountIdRequestBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_53PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEE) +STUB("PqTXHcj8G7U", WKBundlePageIsControlledByAutomation) +STUB( + "PqU57Nb3I44", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "PqUyPPY9QEE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) STUB("PqYIuqUdMMU", scePlayReadyLicenseGetExpirationTime) +STUB("PqZUVw-1dv0", _ZN3WTF7Unicode43convertUTF8ToUTF16ReplacingInvalidSequencesEPKcS2_PPDsS3_Pb) +STUB("Pqaa4LmXt2U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEEC2Ev) +STUB("Pqc4zU17hDA", mono_aot_Sce_PlayStation_PUIPlatformjit_code_start) +STUB("PqcqrLmWuXI", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setAutoplayPlayList) +STUB( + "Pqi36WuD7gg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEE7add_refEv) STUB("PqlxOq+k02o", scePadTrackerReadState) +STUB( + "Pqo+CMWu3a4", + _ZN3sce2Np9CppWebApi14SessionManager2V133PlayerSessionMemberForReadFactory7destroyEPNS3_26PlayerSessionMemberForReadE) +STUB("Pqt3YpFSHgI", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_6NpUserEE3getEv) +STUB( + "PqtGZPrM+h8", + _ZN7WebCore19JSDOMMatrixReadOnly15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB( + "Pqttckyxsqk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("Pqwjp163cEk", mono_aot_Sce_PlayStation_PUIjit_code_start) +STUB( + "Pqx7PQBdDiU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEED2Ev) STUB("Pqxglq1oKec", sceAgcDriverGetPaDebugInterfaceVersion) +STUB( + "PqyQyW0wqk0", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("Pr+3cKCW-Vk", + _ZN7WebCore21ContentSecurityPolicyC2EON3WTF3URLEPNS_27ContentSecurityPolicyClientE) +STUB("Pr1yLzUe230", _ZNSt7_MpunctIwEC2Emb) +STUB("Pr3eI2uGgvU", FT_Get_CID_Registry_Ordering_Supplement) +STUB( + "Pr8MLz5h7PU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEC1EPS8_) +STUB("Pr98fHFIZlQ", _ZN3WTF14FileSystemImpl8moveFileERKNS_6StringES3_) +STUB( + "PrBoXsdv3a0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEE11get_deleterEv) +STUB("PrCMWi4BcYk", _ZNK7WebCore12ChromeClient21plugInStartLabelTitleERKN3WTF6StringE) +STUB("PrJHmpsK7vo", _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse10unsetTasksEv) +STUB("PrJYoqk6pNw", fuse_reply_ioctl) +STUB( + "PrPI0hbm8E4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEE7add_refEv) STUB("PrRtLDapA08", sceBgftServiceIntDownloadRestartTask) +STUB( + "PrXTLGjNrwM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEC2EPKS8_) +STUB("PrYIk5NQ50E", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia11ScreenshotsEE12deepCopyFromERS7_) +STUB("PrZtZyFwM6c", FT_Vector_Transform_Scaled) +STUB("PrbcDXkEA6k", uset_freeze_67) STUB("PrdHuuDekhY", scePthreadKeyDelete) +STUB( + "PrgqcTMIvgw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE8pushBackERKS8_) +STUB("PrjTtnup+U8", _ZN7WebCore9JSDOMRect15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "Prlw2-iJncI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEneERKS9_) +STUB("PrsNSEVDb4Q", mono_aot_Sce_Vsh_Np_Tmdbunbox_trampoline_addresses) +STUB("PrsRaaSO-X0", sched_rr_get_interval) +STUB( + "PrzTcx8qYY4", + _ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRanking24getgetRankingRequestBodyEv) +STUB("Ps-LDe8FIUo", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError9setSourceEPKc) +STUB( + "Ps0acy3fX5A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEC1EPS8_) +STUB("Ps0mzMxBXNI", _ZN7WebCore12SettingsBase35defaultContentChangeObserverEnabledEv) +STUB("Ps1TTqYNGoI", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStatsC1ERS5_) +STUB("Ps27x3RJ0DI", _ZN8meta_gen11MsvPromoter27convMediaTypeAudioFromCodecEN9db_schema9CodecTypeE) +STUB( + "Ps5Kohiaz90", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "Ps6SSNfoIkM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "PsA6vyppS58", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEE7add_refEv) +STUB("PsAoq8wsPM4", _ZN3sce2Np9CppWebApi14SessionManager2V115SearchCondition8setValueEPKc) +STUB("PsCl19Fe6qg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia6VideosEED2Ev) +STUB( + "PsDs+nTjxtk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEC2EPNS2_10LibContextE) +STUB("PsLi2cH8zn4", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11TusVariableEE8allocateEmPKv) +STUB("PsNHxNh4l8I", _ZN12video_parser5vpcom9WaitAsyncE) +STUB("PsOYc1N06NI", mono_aot_Sce_PlayStation_HighLevel_UI2jit_got) +STUB("PsP6LYRZ7Dc", _ZN3sce2np9LocalFile4ReadEPNS0_6HandleEPvmPm) +STUB("PsPv-KHIYzw", u_strtok_r_67) +STUB("PsS7k7Wqyew", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V511ContentTypeEEmmEi) +STUB("PsSJSHGdNOg", __trailz_D2A) +STUB( + "PsTkaDmW+fk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE5eraseENS2_8IteratorIS6_EERS9_) +STUB( + "PsWpdvirejU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEEC1Ev) +STUB("PsX657reZeo", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus11getDataSizeEv) +STUB("Psa+mnQ+wRg", audiodeccpuinternal_core_ops_lpcm_dvd2) +STUB("PsbQqQVbXh0", uloc_getScript_67) +STUB("PscCiEFSU-8", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_15CategoryInfoSubENS2_IS4_EEEEneERKS7_) +STUB("PsjIb1R2yXg", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead18swapSupportedIsSetEv) +STUB( + "PsjyxtJXbRw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEeqERKS9_) STUB("Psl9mfs3duM", sceUserServiceInitializeForShellCore) +STUB( + "PsoVfMQJUF8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEneERKS9_) +STUB( + "PspcvfMocB4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEptEv) +STUB("PsrRUg671K0", __cxa_increment_exception_refcount) +STUB( + "Pstaa-3RPTA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEEaSERSA_) +STUB( + "Pt-BuKAeNxo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEEcvbEv) +STUB("Pt3b-KLxaQU", _ZTVN9Inspector31RuntimeBackendDispatcherHandlerE) +STUB("Pt3o1t+hh1g", CERT_getCertSignAlgoType) +STUB( + "Pt4Sc1USKFE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEED1Ev) +STUB( + "Pt8Tc4OH58I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEEC2Ev) +STUB("PtEWqXYD3ZQ", ucol_strcoll_67) STUB("PtFg1zs3XQA", sceShareUtilityAdvanceWakeUpShareMenuForShareContent) +STUB("PtI6Z08-raU", _ZN7WebCore11SimpleRangeC2ERKNS_13BoundaryPointES3_) +STUB( + "PtIOCO0KarE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEneERKS9_) +STUB( + "PtJWPWsDPCY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB( + "PtJiYJWjBcc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEC2EPS8_) +STUB("PtLL62KSqNE", _ZN7WebCore18PerformanceLogging17physicalFootprintEv) +STUB("PtMd00-9AuM", _ZN7WebCore9URLParser14allValuesEqualERKNS_3URLES3_) +STUB("PtN+ACVD+CE", utrie2_serialize_67) +STUB( + "PtTM2UxOgp4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEE7get_refEv) +STUB("PtWVzynOB3I", Java_com_sony_bdjstack_org_bluray_vfs_VFSManagerImpl_proxyIsEnabledClip) +STUB("Pta-SdNQn2g", _ZN3sce7Toolkit2NP2V23TSS7Request7GetDataD2Ev) +STUB( + "Ptcr-bB56oI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEC1EPNS2_10LibContextE) STUB("Ptlts326pds", sceAudioOutGetLastOutputTime) STUB("Ptmkf9UnWBg", sceVoiceChatRegisterHandlers) +STUB( + "PtoGPUb80Q4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB("PtsB1Q9wsFA", setlocale) +STUB( + "Ptu4uR0H1uI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEE7get_refEv) +STUB("Pu-M8H+21Ko", _ZN7WebCore10FileSystem17encodeForFileNameERKN3WTF6StringE) +STUB("Pu16MviGh5o", WKAuthenticationDecisionListenerCancel) +STUB("Pu24S09J+MQ", cairo_surface_flush) +STUB("Pu5Yd9+FY9Y", eglGetError) +STUB( + "Pu6Jy9kBoEo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEC1Ev) +STUB( + "Pu96NKzdQVM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE8capacityEv) +STUB("PuDAgZ9hPeA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEE5resetEPS6_) +STUB("PuDSuZC0-7M", _Z21scePlayGoDevTerminatev) STUB("PuDr2i2SilM", sceS3dConversionOpen) +STUB( + "PuF6eeHnVa0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEE7get_refEv) +STUB("PuHSEX2BUes", + _ZN23sceMetadataReaderWriter18registerParserInfoERKSt6vectorINS_10ParserInfoESaIS1_EE) +STUB("PuLoqDSNPPw", u_terminateChars) +STUB( + "PuQVBIh7Djw", + _ZNK7WebCore21NetworkStorageSession10hasCookiesERKNS_17RegistrableDomainEON3WTF17CompletionHandlerIFvbEEE) +STUB("PucPVglZM04", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils13NetStateBasicEE5resetEv) +STUB("PujNSvz9X1o", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE8pushBackERKS6_) +STUB("PumHNIPjJZg", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE5clearEv) +STUB( + "Pup776bkZzI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEEC2Ev) +STUB("PupARq13wKE", _ZNK3sce2Np9CppWebApi13InGameCatalog2V525ContentInteractiveElement7getNameEv) +STUB( + "PuvUg4ryuVE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("Puyh-qwnMdI", _ZNK3WTF8JSONImpl10ObjectBase10getBooleanERKNS_6StringERb) +STUB("Pv7+GRZsYzk", _ZN3sce7Toolkit2NP9Utilities6FutureI13SceNpOnlineIdEC1Ev) +STUB("Pv800bxWr5I", __asan_report_exp_store8_noabort) +STUB("PvA6Ayn4Kjk", WKBundleFrameHasHorizontalScrollbar) +STUB( + "PvC7z2pqqQI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEE7add_refEv) +STUB("PvCNusrp9xQ", FT_GlyphLoader_New) +STUB("PvDT3ZGpEeo", _ZN3sce2Np9CppWebApi6Common8IteratorINS2_6StringEEC2Ev) +STUB( + "PvEnnkxZI98", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEppEi) +STUB("PvGTq9AGFfk", _ZN3sce2np12WorkerThreadD1Ev) STUB("PvIP303tQx4", sceDbgGetModuleList) STUB("PvJ9H9YgUME", sceCustomMusicCoreBgmOutput) +STUB( + "PvMMNXrou90", + _ZN3WTF20ParallelHelperClient17runTaskInParallelEONS_6RefPtrINS_10SharedTaskIFvvEEENS_13DumbPtrTraitsIS4_EEEE) +STUB("PvP3AczVrzY", _ZNK7WebCore11MediaPlayer8hasVideoEv) +STUB("PvR1kzb7Nrg", _ZN3JSC31numberOfStaticOSRExitFuzzChecksEv) +STUB("PvXIwJfJvnU", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V18VariableC1EPNS1_6Common10LibContextE) +STUB("PvdIpHXplvI", mono_aot_Sce_Vsh_SyscallWrappermethod_addresses) +STUB("Pvdmf9PX-2M", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEC1Ev) +STUB("Pvec+0gRArw", _ZN3sce7Toolkit2NP2V26Trophy16TrophyPackTrophyC2Ev) +STUB( + "Pvh67seesy8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEC1Ev) +STUB( + "PvizYcVs3Zc", + _ZN9Inspector17BackendDispatcher27registerDispatcherForDomainERKN3WTF6StringEPNS_29SupplementalBackendDispatcherE) +STUB("Pvj0yOEI-7k", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersC1ERS5_) +STUB( + "Pvl268VFtsI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEE7get_refEv) +STUB("Pvol6lyrgk0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEED2Ev) +STUB("PvpwQ0vg3Cg", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session8SessionsEE19setCustomReturnCodeEi) +STUB("PvrwL+UcYEk", u_strToUpper_67) +STUB("PvsVckzC6Sg", _ZN4Manx8X509cinfD2Ev) +STUB( + "Pvt4DTArgxI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("PvyFzyJLLgQ", _ZN9Inspector33ApplicationCacheBackendDispatcherD2Ev) +STUB( + "Pw+Ub7lnzc8", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13integer3IsSetEv) +STUB( + "Pw-lLCT5sPk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEE11release_refEv) STUB("Pw6DvB9u7vA", scePerfPmcReset) +STUB( + "PwB1c7pgIlc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("PwCZ85kBsRw", _ZN3JSC7Symbols23mapBucketKeyPrivateNameE) +STUB( + "PwLGdbGa+U8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("PwORPTB4P9M", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V16StatusEEC2Ev) +STUB( + "PwQCqvOVDAg", + _ZNK3sce2Np9CppWebApi14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBody14getCustomData1Ev) +STUB( + "PwQni5t6JLE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("PwWeQF-n0W0", infoLock) +STUB( + "PwZ4YK9rkv8", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeaders21intrusive_ptr_add_refEPS5_) STUB("PwZEP8ZBK2Y", sceFontGraphicsAgcDrawupFillTextureImage) +STUB( + "PwZd8HUxm2s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEE5resetEPS9_) STUB("PwdjZ112xLU", sceDeci4hDrfpGetOption) STUB("PwmjM-dGut4", sceRegMgrSrvCnvRegionStr) +STUB( + "PwnFDv2gBdY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEE5resetEPS6_) +STUB( + "PwrfP9qiRys", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE8copyFromERKSA_) +STUB("Pws2kuMDk4I", + _ZNK3sce2Np9CppWebApi14SessionManager2V117SearchGameSession6toJsonERNS_4Json5ValueEb) STUB("PwsHbErG+e8", sceSslDisableVerifyOption) +STUB("Px0hid2-QVI", mono_aot_ClassLibrary1method_addresses) STUB("Px0miD2LuW0", sceRudpGetNumberOfPacketsToRead) +STUB("Px0wgRdxxYI", mono_aot_System_IO_Compressionunbox_trampolines) +STUB("Px3PC4lV3pc", _ZN15AbstractStorage12LocalContentD1Ev) +STUB("Px7+XlVanjA", _ZN7WebCore6Editor18confirmCompositionEv) STUB("PxEFhy0d5v8", sceAgcDcbClearState) STUB("PxKWV2fVAps", sceAgcAcbDispatchIndirectGetSize) +STUB( + "PxOLwoKuvQk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEppEv) +STUB("PxOT2VtTt7k", g_hash_table_insert_replace) +STUB("PxP1PFdu9OQ", __udivsi3) STUB("PxSR9UfJ+SQ", sceFontSetScriptLanguage) +STUB( + "PxUq3rI6YGk", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V331ValidationConstraintInfoFactory7destroyEPNS3_24ValidationConstraintInfoE) +STUB( + "PxYOprqAwI4", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeAccountId2OnlineIdBatch10initializeEPNS1_6Common10LibContextENS6_12IntrusivePtrINS6_6VectorINS6_6StringEEEEE) +STUB("PxaOio84EGs", _ZN8meta_gen11MsvPromoter22retrieveVideoCodecInfoEv) +STUB( + "Pxe-GbIzIKQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEdeEv) +STUB( + "PxgyC-oamxQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEC1EPKS8_) +STUB( + "PxhHYdEzz5A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("PxmFpF49OLg", mono_aot_Sce_Vshjit_got) +STUB( + "PxnOAZEbyAo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEmmEi) +STUB("PxpHnt2AM8k", _ZN3JSC11VMInspector9dumpStackEPNS_2VMEPNS_9CallFrameEj) STUB("Pxx1uH51g-E", sceAvSettingOpenLoopbackBuffers) +STUB("Py+Dast40bs", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V19JoinStateEEppEi) +STUB( + "Py-PldqZEwk", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "Py0W-n41Pe4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEdeEv) STUB("Py0XtCoi5IU", sceMusicPlayerServiceReceiveEvent) +STUB( + "Py1LYfTlc98", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEmmEv) +STUB( + "Py7OkV07HKU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("Py8HlsNrKVc", CmdfullpathThread) +STUB("Py8hBfDOUB8", FTC_Node_Unref) +STUB( + "Py9j9prt0c0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE5beginEv) +STUB("PyAkLlm5O98", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUserD2Ev) STUB("PyB-b1aYveg", sceFontGetCharVariationGlyphCode) +STUB("PyBQnBEiOmE", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE5clearEv) STUB("PyDpx1eHD8Y", sceHmdGetEyeStatus) +STUB("PyFQ+tpKjuc", _ZN7bmalloc15IsoHeapImplBaseC2ERNS_5MutexE) +STUB("PyGadhn+UW4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed12SharedVideosEEC1Ev) +STUB("PyJwedJxbv0", Java_com_sony_bdjstack_security_aacs_AACSOnline_checkPermission) +STUB("PyMbL9F2oBY", _ZN3sce4Json5Value9serializeEPFiRNS0_6StringEPvES4_) STUB("PyNH7p4LVw8", sceLncUtilIsActiveCdlg) +STUB("PyO5rPUsqi4", _ZN7WebCore24CoordinatedGraphicsLayer38updateContentBuffersIncludingSubLayersEv) +STUB("PyUIXiudO3U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEC1Ev) +STUB( + "PyYsidxhGcY", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEiRNS2_10LibContextEPT_m) +STUB( + "PyfDtfwYobk", + _ZN3sce2Np9CppWebApi14SessionManager2V145RequestCreatePlayerSessionNonPsnPlayerFactory6createEPNS1_6Common10LibContextEPKcS9_PNS5_12IntrusivePtrINS3_38RequestCreatePlayerSessionNonPsnPlayerEEE) +STUB("PysF6pUcK-o", CA_MGMT_freeCertificate) +STUB( + "PysqRdG2nnQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB("Pyu7Zyt6XUE", _ZN3WTF25activateSignalHandlersForENS_6SignalE) +STUB("PyySvnK-JGM", WKContextMenuCopySubmenuItems) +STUB("Pyz55DYmOrI", curl_mvaprintf) +STUB( + "PyzmKd8rqIE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE21intrusive_ptr_sub_refEPS9_) +STUB("Pz262plj20w", FT_Outline_GetInsideBorder) +STUB( + "Pz6hb6j0PLg", + _ZN7WebCore14SecurityPolicy32removeOriginAccessWhitelistEntryERKNS_14SecurityOriginERKN3WTF6StringES7_b) STUB("PzDtD6eBXIM", sceSaveDataGetBoundPsnAccountCount) STUB("PzF+L5zXoyg", sceVdecswGetHevcPictureInfo) +STUB( + "PzKTioj6LP8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEEC1ERKSA_) +STUB( + "PzLUwQXc7VM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEptEv) +STUB("PzOv16iXyDg", WKBundlePageResetApplicationCacheOriginQuota) +STUB("PzQvrSllhrE", _ZN7WebCore22EmptyFrameLoaderClient25dispatchDidBecomeFramesetEb) +STUB("PzSuY2qbyK0", _ZN3JSC10JSDollarVM6s_infoE) +STUB("PzTaeImZ7Qc", _ZN3JSC9JSPromise15resolvedPromiseEPNS_14JSGlobalObjectENS_7JSValueE) +STUB("PzWdgYWu5jY", ubidi_getRuns_67) +STUB("PzWiGzGFE+s", _Tolotab2) +STUB("PznfSvchYJ8", _ZN3sce2np18HttpConnectionPoolC1EP16SceNpAllocatorEx) +STUB("Q+0gwJDXOoc", _ZN3sce7Toolkit2NP2V28Presence12Notification14PresenceUpdate5resetEv) +STUB( + "Q+0k1gMAsWg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEEaSERKS9_) +STUB( + "Q+6s+TQjKD0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("Q+85zvk4FB8", _ZN7WebCore20DeprecatedCSSOMValue7destroyEv) +STUB("Q+B+nBqzer4", RAND_file_name) +STUB("Q+C68R80ZtA", _ZN7WebCore9HTMLNames12onselectAttrE) STUB("Q+CMOdoSuf0", sceMusicCoreServerTryLoadCore) +STUB("Q+IdDa+f7P4", _ZN3WTF9MediaTimenwEm) +STUB( + "Q+N53ON8YeI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEEC2ERSA_) STUB("Q+SDBl-5rmk", sceKernelIsDisableRazor) +STUB("Q+Wny7kcQkk", _ZNK7WebCore9DOMWindow8locationEv) +STUB("Q+XYJJN+O4g", u_fclose_67) +STUB("Q+ZnPMGI4M0", _ZN6Dinkum7threads21thread_resource_errorD0Ev) +STUB( + "Q+an+p-4TaY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEC2EPKS8_) +STUB( + "Q+bu+FUpCqI", + _ZN9Inspector20DOMBackendDispatcher17highlightNodeListElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "Q+gB3-eGEsU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEC2EPS6_PNS2_10LibContextE) +STUB( + "Q+ibG3L3mRM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEE3getEv) +STUB("Q+kAEiiSDi0", jpeg_set_quality) STUB("Q+mSQ2U6wWY", sceNpSnsIntYtRefreshMasterToken) +STUB( + "Q+mysfonf+A", + _ZN3sce2Np9CppWebApi14SessionManager2V119JoinableUserFactory6createEPNS1_6Common10LibContextERKmPNS5_12IntrusivePtrINS3_12JoinableUserEEE) +STUB("Q+r59ulWFF0", mono_aot_Sce_Vsh_BackupRestoreUtilplt_end) +STUB("Q+sieaGCYKk", _ZN3sce7Toolkit2NP18SessionInformationC2Ev) +STUB("Q+uw1RI+-0A", mono_aot_ReactNative_Modules_Vshjit_code_end) +STUB( + "Q+vWF9PKFkg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEED1Ev) +STUB("Q+xU11-h0xQ", sqrtf) +STUB("Q+ysHCIzphI", FT_MulDiv) +STUB( + "Q-+ToH0d7dw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEptEv) +STUB( + "Q-3Y4xy4y4c", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEdeEv) +STUB("Q-3oVPDGaSg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEEC1EPS6_) +STUB("Q-5qZKzhqeQ", _ZNK3sce2Np9CppWebApi6Common6VectorIlE4sizeEv) +STUB("Q-8duzyUNn0", sysKernelGetIntdevModeForInternalLibc) +STUB("Q-8lQCGMj4g", _ZNKSt7collateIcE7compareEPKcS2_S2_S2_) +STUB("Q-AesC937KM", swapon) +STUB("Q-DnYHz-WO8", _ZN12video_parser14cVideoOperator22getRelativeFileExtListEv) +STUB( + "Q-EqLnxcZMo", + _ZN7WebCore16FrameLoadRequestC2ERNS_8DocumentERNS_14SecurityOriginEONS_15ResourceRequestERKN3WTF6StringENS_20InitiatedByMainFrameERKNS7_10AtomStringERKNS_17SystemPreviewInfoE) +STUB( + "Q-Fk6F9Ca1s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEE11get_deleterEv) +STUB("Q-GfRQNi66I", posix_spawnattr_getpgroup) +STUB( + "Q-GukwstEAI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEEC2EPS9_PNS2_10LibContextE) STUB("Q-JroQdKRfM", scePrecompiledShaderEntries) +STUB( + "Q-L0trYF9ZU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEE11release_refEv) +STUB( + "Q-LLB987Fxs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEC1Ev) +STUB( + "Q-OalOkopvs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEE11release_refEv) +STUB("Q-T1Bl8F0NU", _ZNK3JSC6JSCell12toObjectSlowEPNS_9ExecStateEPNS_14JSGlobalObjectE) +STUB("Q-UPpTk+jlQ", uprops_getSource_67) +STUB("Q-bLp+b-RVY", fesetenv) +STUB("Q-dpWphd3xE", __asan_handle_no_return) +STUB( + "Q-hGoq4b928", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEC2Ev) +STUB("Q-inJAofRsY", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEEdeEv) +STUB( + "Q-jJkEplAP4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEE6assignEPS6_PFvS8_EPNS2_10LibContextE) STUB("Q-m9mL4Yznw", sceDbgClearHardwareBreakPoint) STUB("Q-nfTbHkYNQ", sceVshAvcapGetStaticInfo) +STUB("Q-ryXoj4ez0", _ZNK3sce3Xml3Dom8NodeList4itemEj) +STUB("Q-tHyIAe8sA", rgctx_fetch_trampoline_rgctx_81_p) +STUB( + "Q-tT44UeOGI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEC2Ev) +STUB("Q-u6dljYZ9o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEC1Ev) +STUB( + "Q-v9YJNtCBo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEEcvbEv) +STUB("Q01bWyOPayI", _ZN3JSC19HeapSnapshotBuilderD1Ev) STUB("Q07J7XpvhrU", sceAmprAmmGiveDirectMemory) STUB("Q0Avi9kebsY", sceNpScoreGetBoardInfoAsync) +STUB( + "Q0Bjn2jHN4M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("Q0C9YHqdzNc", _ZN9Inspector25ConsoleFrontendDispatcher25messageRepeatCountUpdatedEi) +STUB("Q0DOEo6XxTI", _ZN7WebCore12SharedBufferC2EPKhm) +STUB("Q0ERc7GP3fc", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product16contentTypeIsSetEv) +STUB("Q0EsssH7tiw", _ZN7WebCore11JSDOMWindow13visitChildrenEPN3JSC6JSCellERNS1_11SlotVisitorE) +STUB( + "Q0F0HHKJKa8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEmmEi) +STUB("Q0GMhmZTn6A", _ZN6WebKit17ChildProcessProxy7connectEv) +STUB("Q0GjAmlMAzE", _ZN7WebCore15SQLiteStatement13getColumnTextEi) +STUB("Q0Ockqsjzp0", + _ZN7WebCore18isStartOfParagraphERKNS_15VisiblePositionENS_27EditingBoundaryCrossingRuleE) +STUB("Q0Q4w5um2vY", g_shell_quote) +STUB("Q0VsWTapQ4M", _ZNKSt22_Future_error_category4nameEv) +STUB( + "Q0W3ScpoJN8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEmmEv) +STUB("Q0Wxk8nDIew", _ZN7WebCore17PageConsoleClientnaEm) +STUB( + "Q0fKqfQeXnI", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScore22setxPsnAtomicOperationENS5_19XPsnAtomicOperationE) +STUB("Q0kH-Vmn50Y", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetInteger7Ev) +STUB( + "Q0nDgIXoimw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEEdeEv) +STUB("Q0ng4sWj2E8", _ZN3sce4Json6Object4PairD1Ev) STUB("Q0qr9AyqJSk", sceKernelGetEventFflags) +STUB("Q0rWMr9ONVw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEED1Ev) +STUB("Q0v3WNMvbvk", _ZN7WebCore22SkewTransformOperationD2Ev) +STUB( + "Q0zfolaJis8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEcvbEv) +STUB("Q10zljdilhw", _ZN9Inspector22AuditBackendDispatcherD0Ev) +STUB("Q13L4R2-JYU", WKBundleNodeHandleGetHTMLInputElementAutofilled) +STUB( + "Q14AG3byKvU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE5beginEv) +STUB( + "Q15q3jMTauY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEC2EPS8_) +STUB("Q17eavfOw2Y", _ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE) STUB("Q182x0rT75I", sceNpTrophySystemBuildTitleIconUri) +STUB("Q19pQ5raShA", _ZL33__orbis_default_terminate_handlerv) +STUB("Q1BL70XVV0o", _ZSt18uncaught_exceptionv) +STUB("Q1GII-96g0E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEcvbEv) +STUB( + "Q1JcaXOVUZM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "Q1NlnOFVnSY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE4sizeEv) +STUB("Q1PLuSTqHHU", _ZN3sce3Xml3Sax6Parser26setSkipIgnorableWhiteSpaceEb) +STUB( + "Q1WNakfGV08", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitationsC1Ev) +STUB("Q1WgqFdYEjI", _ZN7WebCore11MathMLNames10msubsupTagE) +STUB( + "Q1Yzs5b+ZkQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEC2EPNS2_10LibContextE) +STUB( + "Q1biUohzrHE", + _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession21setSupportedPlatformsERKNS1_6Common6VectorINS5_6StringEEE) +STUB("Q1cAujaJc48", ucol_setText_67) +STUB("Q1qTdcc0SIU", g_strfreev) +STUB("Q1xklO-HjOQ", _ZN7WebCore17PageConsoleClientnaEmPv) +STUB( + "Q200Pn7aHfM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEED1Ev) +STUB("Q20e8xqJqc8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEdeEv) +STUB( + "Q27EYq6CELQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "Q27K98jb8jU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEC2EPKS8_) STUB("Q29NWnvK6OI", sceDebugDestroyScratchDataArea) +STUB("Q29SbHgHtLg", + _ZN6WebKit12ChildProcess18addMessageReceiverEN3IPC15StringReferenceEmRNS1_15MessageReceiverE) +STUB("Q29tvAZCO+Q", _ZN3sce2Np9CppWebApi7Matches2V113RequestMemberD1Ev) +STUB("Q2CwxSiU3hI", _ZN3sce7Toolkit2NP2V210Tournament15RegisteredUsersC2ERKS4_) +STUB( + "Q2CxkpPNqDI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("Q2RLQTGtprY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEC1Ev) STUB("Q2S-VY3-ppo", scePlayReadyCdmiDestroyMediaKeys) STUB("Q2UmHdK04c8", sceNpTusAddAndGetVariableAsync) +STUB("Q2V+iqvjgC0", vsnprintf) +STUB( + "Q2XM6JS7ExU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE21intrusive_ptr_sub_refEPS9_) +STUB("Q2Z+6uNGCEo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEED2Ev) +STUB("Q2aiC5km68I", + _ZN15AbstractStorage15FacebookStorageC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("Q2alI2Oi1wE", MASSMCTerminate) +STUB( + "Q2bZbHH-xRs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEEptEv) +STUB( + "Q2eINeB+hUI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEE7get_refEv) +STUB("Q2fjKDMTJ+Q", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE3endEv) +STUB( + "Q2jbv3GGkR0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEED1Ev) +STUB("Q2lC2jg+CZk", _ZN3JSC8FreeList14initializeListEPNS_8FreeCellEmj) +STUB( + "Q2mC5l6I5lY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEC2Ev) +STUB( + "Q2mhzhitWSw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE7reserveEi) +STUB("Q2p7ULYnJZo", _ZNK7WebCore16VisibleSelection17isContentEditableEv) +STUB("Q2r4AKLMrac", _ZN7WebCore11MediaPlayer24firstVideoFrameAvailableEv) +STUB("Q2sTPN-hnYw", _ZN15AbstractStorage14TwitterContentD1Ev) +STUB( + "Q2ut2hKGH2o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "Q2wCJ66cp8s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEED1Ev) STUB("Q2y5IqSDZGs", pthread_attr_setcreatesuspend_np) +STUB("Q3+A6eRgQzM", uprv_decNumberSameQuantum_67) +STUB("Q3+xtcTxlkg", mono_field_get_data) +STUB("Q3-0HGD3Y48", __atomic_fetch_and_1) +STUB("Q30SZqLk4Lw", Java_com_sun_havi_ui_FreeTypeFontFace_pReleaseFontFace) STUB("Q30w46WtYQw", sceKernelGetResidentCount) +STUB("Q320Fsv7OvQ", _ZN3sce7Toolkit2NP2V211SharedMedia7Request13GetBroadcasts17DEFAULT_PAGE_SIZEE) +STUB( + "Q34Cm7qjZSY", + _ZN3sce2Np9CppWebApi11UserProfile2V131GetBlockingUsersResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_24GetBlockingUsersResponseEEE) +STUB("Q37js-as5KQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEED2Ev) +STUB( + "Q3BgPZV76ok", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB( + "Q3GZzEIP6jI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEC1ERKS7_) +STUB( + "Q3S5Htl16xc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEppEi) +STUB("Q3UTw+t9xfg", _ZTv0_n48_N25MmsFileUpdaterFsOperation8openFileEPKc) STUB("Q3VBxCXhUHs", memcpy) +STUB("Q3YIaCcEeOM", _ZTSSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE) +STUB("Q3ZDbJ3QzkY", _ZN7WebCore11FrameLoader21clearTestingOverridesEv) +STUB( + "Q3a+Cfl8gaM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEED2Ev) STUB("Q3dyFuwGn64", sceAjmModuleRegister) +STUB( + "Q3fXsC5MnVM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEED2Ev) +STUB( + "Q3lOEpxSe1Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE8copyFromERKS9_) +STUB("Q3lUkATgLwE", u_charDigitValue_67) +STUB("Q3nwDzPdcL0", rgctx_fetch_trampoline_mrgctx_76_p) +STUB("Q3q-Iqk-Sqg", _ZNK7WebCore30InvertLightnessFilterOperationeqERKNS_15FilterOperationE) +STUB("Q3qL-o84l30", _ZN3JSC8Debugger12atExpressionEPNS_9CallFrameE) +STUB( + "Q3sTQqCfVSg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE4sizeEv) STUB("Q3utJvma4Mo", sceSystemServiceSetNoticeScreenSkipFlag) +STUB("Q43Qwcd7W-Q", WKContextSetWebSecurityFilter) +STUB( + "Q49E8rXwtWM", + _ZN3JSC14StructureCache32emptyObjectStructureForPrototypeEPNS_14JSGlobalObjectEPNS_8JSObjectEjbPNS_18FunctionExecutableE) +STUB( + "Q4Bld0u+zJs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "Q4EVYT9NgzM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEptEv) +STUB("Q4GAFaW6NbQ", _ZNK7WebCore18JSHTMLImageElement7wrappedEv) +STUB("Q4PE3rWPS6Y", isobmf_box_getnextbox) +STUB("Q4PK8px9cto", JVM_SendTo) +STUB("Q4TyaIExNks", mono_get_exception_missing_field) +STUB("Q4Tyqr9IOGY", _ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_6DOMURLE) +STUB( + "Q4XCUj8029k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEC2Ev) +STUB("Q4f93lSW0lk", _ZN9Inspector14FrontendRouter15connectFrontendERNS_15FrontendChannelE) +STUB("Q4gZDtJ8CHI", _ZN7WebCore9HTMLNames17aria_valuenowAttrE) +STUB("Q4idRxWlzjM", _ZNK3WTF6String5toIntEPb) +STUB("Q4lonvz8bSg", WKWebsitePoliciesSetCustomHeaderFields) +STUB( + "Q4o5RELMEPs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEE6assignEPS6_PFvS8_EPNS2_10LibContextE) STUB("Q4qBuN-c0ZM", sceNetSocket) +STUB( + "Q4rHQZK-qJY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE8copyFromERKS9_) +STUB("Q4rRL34CEeE", sinf) +STUB( + "Q4ufTc0B2TE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEE11release_refEv) +STUB("Q4xbTVz7CQ4", _ZN3NTF3URL7setPortEt) +STUB("Q5+nvLyoPAc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEE7get_refEv) +STUB( + "Q50PAzd1-Q4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEixEm) +STUB("Q52EZcRwx2w", _ZN3sce7Toolkit2NP2V27NpUtils7Request22GetOnlineIdByAccountIdC2Ev) +STUB("Q52xwSU9Xd0", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEEC2Ev) +STUB( + "Q5I3eObhEcU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEppEi) +STUB("Q5IWykchiD8", _ZN3WTF14FileSystemImpl34stringFromFileSystemRepresentationEPKc) +STUB("Q5NwWWuerbQ", _ZNK7WebCore11HistoryItem14alternateTitleEv) +STUB( + "Q5SiTvVQKKY", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V145MatchCompletionRateDisconnectedMetricsFactory6createEPNS1_6Common10LibContextEiPNS5_12IntrusivePtrINS3_38MatchCompletionRateDisconnectedMetricsEEE) +STUB( + "Q5Tk9RRrQdo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEEcvbEv) STUB("Q5Um9Yri-VA", sceUserServiceGetPbtcMode) +STUB("Q5WUaCRP4gY", __stop__Ztext) +STUB("Q5anwCDbf5E", mono_aot_Newtonsoft_Json_PlayStationjit_got) +STUB("Q5b2Rs4keVk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEE5resetEPS6_) +STUB( + "Q5d29JbhmrU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEE11release_refEv) +STUB( + "Q5ecKT+rXI0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE21intrusive_ptr_add_refEPS9_) +STUB("Q5iApPgFAXQ", mono_aot_System_Reactive_Coreunwind_info) +STUB("Q5kgx9+xeQU", _ZN7WebCore14ProcessWarming22prewarmWithInformationERKNS_18PrewarmInformationE) +STUB( + "Q5mx-jF5FiI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEaSERKS9_) +STUB( + "Q5n0OuUtbEM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEEaSERKSA_) STUB("Q5py3m4I8SA", sceTsGetAvailableBW) +STUB("Q5uMGTK4u7E", mono_get_exception_execution_engine) STUB("Q5uQeScvTPE", sceNpTusGetMultiUserVariableForCrossSave) +STUB( + "Q60io-UQSu8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("Q61lq0fExLE", mono_aot_Sce_Vsh_VideoEdit_Wrapperunbox_trampolines_end) +STUB("Q64RmYv-DJM", _ZNK3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer11getOnlineIdEv) +STUB( + "Q64dMvbFxBM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE3endEv) STUB("Q66U8FdrMaw", scePadGetBluetoothAddress) +STUB("Q67JnR8E4ws", ures_getKey_67) +STUB( + "Q6BNVCkZKrE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEC2ERS7_) +STUB("Q6GhEnkh2+c", _ZN3JSC8JSObject28allocateMoreOutOfLineStorageERNS_2VMEmm) +STUB( + "Q6J7DAtr0Fk", + _ZN7WebCore6Editor14setCompositionERKN3WTF6StringERKNS1_6VectorINS_20CompositionUnderlineELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEERKNS5_INS_20CompositionHighlightELm0ES7_Lm16ES8_EEjj) +STUB("Q6JU2lTQS1U", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V111OfferStatusEEneERKS7_) +STUB("Q6OKS0BRf0A", eglWaitClient) +STUB( + "Q6PRMt1IpLg", + _ZN7WebCore20UserGestureIndicatorC1EN3WTF6RefPtrINS_16UserGestureTokenENS1_13DumbPtrTraitsIS3_EEEE) STUB("Q6T-zIblNqk", sceNetDhcpdStart) +STUB("Q6ZMGESvwVY", _ZN7WebCore8SVGNames6inAttrE) +STUB( + "Q6bs2-rX9Ms", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB("Q6e57L2Vat8", WKIconDatabaseCheckIntegrityBeforeOpening) +STUB( + "Q6f-t2dL0HQ", + _ZN9Inspector24NetworkBackendDispatcher22setInterceptionEnabledElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "Q6fFKJyMxro", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13boolean5IsSetEv) +STUB( + "Q6h92dWE62g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEEC2Ev) +STUB("Q6hZkYPaikk", ulist_getListFromEnum_67) +STUB("Q6oqEnefZQ8", __atomic_load_n) STUB("Q6rtQMOR-UA", scePerfTracePmStart) +STUB( + "Q6uZr7WwiQw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "Q6vUUPnen-M", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi11createMatchEiRKNS4_22ParameterToCreateMatchERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_19CreateMatchResponseEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("Q6xyruheFCE", cairo_pattern_create_for_surface) +STUB( + "Q6yp8d4GZx4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("Q71VA70Qzk4", + _ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForReadD1Ev) +STUB("Q72V+IYh3yY", _ZN12video_parser17cVideoProfilerMp418_createMediaCommonEjPNS_13VpMediaInfo_tE) +STUB( + "Q72lGf1Ckis", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEED1Ev) +STUB( + "Q7BPAJC0pFw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEppEi) +STUB( + "Q7Dxw43VhSo", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeaders15setLastModifiedERKNS1_6Common6StringE) +STUB("Q7Il+H6Ujl4", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE3endEv) +STUB( + "Q7JVHmD8xAo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB( + "Q7K-Wmcak1c", + _ZN10Deprecated18ScriptFunctionCallC1ERKNS_12ScriptObjectERKN3WTF6StringEPFN3JSC7JSValueEPNS8_9ExecStateES9_NS8_8CallTypeERKNS8_8CallDataES9_RKNS8_7ArgListERNS4_8NakedPtrINS8_9ExceptionEEEE) +STUB( + "Q7LUAsM577s", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE21intrusive_ptr_sub_refEPS7_) +STUB("Q7NYkIALAEs", _ZN3sce7Toolkit2NP2V29Challenge7Request13SendChallenge18MAX_SIZE_DATA_NAMEE) +STUB("Q7Os4HE9wgg", _ZN3sce7Toolkit2NP2V28Matching7Request11SetRoomInfo24HIGHEST_DISPLAY_PRIORITYE) +STUB("Q7QU8cdMbzM", _ZN3JSC12BigIntObject14finishCreationERNS_2VMENS_7JSValueE) +STUB( + "Q7ZYtMZVOxI", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ImageFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_5ImageEEE) +STUB("Q7b6ZKyFsL0", _ZN3sce2Np9CppWebApi7Matches2V113RequestMember8fromJsonERKNS_4Json5ValueE) +STUB( + "Q7bNVN892Uw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEEC1EPS6_PNS2_10LibContextE) +STUB( + "Q7cUiHfdgMM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEneERKS9_) STUB("Q7ee2Uav5f8", sceNetConfigWlanAdhocSetExtInfoElement) STUB("Q7fnpdkjBp0", sceNpAsmClientGetCacheControlMaxAge) +STUB("Q7kSVKlMJmA", _ZN3JSC11VMInspector13dumpRegistersEPNS_9CallFrameE) +STUB( + "Q7nHpTv+iiI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEC1ERS7_) +STUB("Q7obvY7jbqQ", WKPageConfigurationGetWebsiteDataStore) +STUB("Q7qMw7QHnjQ", mono_aot_Sce_Vsh_Np_Pbtcunbox_trampolines_end) +STUB( + "Q7qX-Soe3QA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEptEv) STUB("Q7qj97IDGtU", sceBgftServiceDownloadStartTaskAll) +STUB( + "Q7sOg-BweiU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEC1EPNS2_10LibContextE) STUB("Q7t4VEYLafI", sceGnmValidationRegisterMemoryCheckCallback) +STUB("Q7xhl0uQYgE", mono_aot_ReactNative_Modules_Vshunbox_trampolines_end) +STUB("Q7y-M7olJkc", WKBundleBackForwardListItemIsSame) +STUB("Q7zIiq3mf+M", fuse_session_loop_mt) +STUB("Q7zyGfEmODE", sr06) +STUB("Q8-xUM+RO48", _ZNK7WebCore24CoordinatedGraphicsLayer13platformLayerEv) +STUB("Q838nnG0kxQ", WKPreferencesGetPeerConnectionEnabled) +STUB( + "Q85xmGnRnd4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEppEi) +STUB( + "Q87YmK+AnO8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEEC2Ev) +STUB("Q88wDUoIWYg", u_strcmp_67) +STUB( + "Q8A4cdIzgVw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE6resizeEj) +STUB("Q8C2Oyeh+yA", _ZN3sce2Np9CppWebApi7Matches2V124RequestCompetitiveResultD1Ev) +STUB("Q8CtPGQDhhI", _ZN7WebCore13AXObjectCache18rootObjectForFrameEPNS_5FrameE) STUB("Q8DZkKQ-SYc", sceAudioOut2LoContextGetQueueLevel) +STUB("Q8Ic-dIQ1S0", _ZN3sce2Np9CppWebApi14SessionManager2V16Friend8fromJsonERKNS_4Json5ValueE) +STUB("Q8O7uuSCN8w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEE5resetEPS6_) +STUB("Q8P3U9F8p-Y", u_charFromName) +STUB( + "Q8PbGtLOqaE", + _ZN7WebCore13GraphicsLayer11setChildrenEON3WTF6VectorINS1_3RefIS0_NS1_13DumbPtrTraitsIS0_EEEELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("Q8Y0ntVp-GY", u_getBinaryPropertySet) +STUB("Q8Zqv9vJYjA", _ZNK3sce2Np9CppWebApi14SessionManager2V12To12getAccountIdEv) +STUB("Q8aMwRPUcEg", zrule_isEquivalentTo_67) +STUB( + "Q8aqv9Q4eVw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEC1EPS6_PNS2_10LibContextE) +STUB( + "Q8evp6qZjBI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEC2EPS8_) +STUB( + "Q8jkqxtSRvg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEE11release_refEv) +STUB("Q8ooECPD-lo", _ZNK3sce2Np9CppWebApi11UserProfile2V112BasicProfile11getRelationEv) +STUB( + "Q8pcxu+cZ4A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE5beginEv) +STUB( + "Q8ppY2hvvIw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEC1EPS6_PNS2_10LibContextE) +STUB("Q8pvJimUWis", __isfinitef) +STUB( + "Q8qj5WtPfos", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEEC1ERKS9_) +STUB("Q8sFHUENyP8", _ZN3sce2np10NpOnlineId13GetNpOnlineIdEiP13SceNpOnlineId) STUB("Q8skQqEwn5c", sceVrTrackerUnregisterDevice) +STUB( + "Q8wuJXvxrkw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEED1Ev) +STUB( + "Q93tp+nF9HE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEEC1ERKSA_) +STUB("Q95JDAMcB6I", _ZN7WebCore15createLiveRangeERKNS_11SimpleRangeE) +STUB( + "Q99wm1uFrds", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData23unsetxPsnNpServiceLabelEv) STUB("Q9DhUQxNCwI", pthread_switch_add_np) +STUB( + "Q9J6OIjoD3w", + _ZN3sce2Np9CppWebApi11Matchmaking2V113ErrorResponse8setErrorERKNS1_6Common12IntrusivePtrINS3_5ErrorEEE) +STUB( + "Q9JGBAFVRME", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEE7add_refEv) +STUB("Q9JlHD9irBw", + _ZNK3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_11TusVariableENS2_IS4_EEEE8max_sizeEv) +STUB( + "Q9OAOCizNPU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEE5resetEPS9_) +STUB("Q9OqSnIH-P8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEEC2EPS6_) STUB("Q9PafwAucU0", scePlayReadyMemFree) +STUB("Q9UQ4bhpbL8", udat_getNumberFormat_67) +STUB( + "Q9Y26Z2Pigo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEC2EPS6_PNS2_10LibContextE) +STUB("Q9fMszRCKdM", udatpg_setDateTimeFormat_67) +STUB("Q9hX1-Upy2c", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEEC2ERS5_) +STUB("Q9iWC5cyPPU", ucptrie_getValueWidth) +STUB( + "Q9mM8D1M3zM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEC2EPS8_) +STUB("Q9pxkxUSS7s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEcvbEv) +STUB( + "Q9tU00tOwKw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEC1ERKS7_) +STUB( + "Q9uuM5YBkIk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEaSERKS8_) +STUB("Q9v0SoVlNwA", _ZNK9Inspector15ScriptCallFrame10lineNumberEv) +STUB( + "Q9ziXaC7VnI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEC2EPS6_PNS2_10LibContextE) +STUB( + "QA+f1SSA+ww", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEptEv) +STUB( + "QA17HSEdKfg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE5clearEv) +STUB( + "QA47I7yFKbo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEmmEi) +STUB("QA4QDsY+cQA", delegate_virtual_invoke_imt_m_5) +STUB( + "QA5-6GEOcz4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEdeEv) STUB("QA5h6Gh3r60", sceGnmSqttSelectTarget) +STUB( + "QA6By+bQDGg", + _ZNK7WebCore21ContentSecurityPolicy30upgradeInsecureRequestIfNeededERNS_3URLENS0_19InsecureRequestTypeE) +STUB("QA6wRe52nLI", _ZNK7WebCore14DocumentLoader18mainResourceLoaderEv) STUB("QA9Qupz3Zjw", sceMouseGetDeviceInfo) +STUB( + "QAA3KJyXHXw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEC2EPS8_) +STUB( + "QAAUvoPv2tY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEEaSERSA_) +STUB("QABMTc77l10", _ZN9Inspector21CSSFrontendDispatchernaEmPv) STUB("QAH1ofI97vU", sceUltSemaphoreAcquire) +STUB( + "QAHjz9jk4DI", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("QAMQmwHoWDA", mono_debug_symfile_is_loaded) +STUB( + "QAOa9ocinns", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEC2EPS8_) +STUB("QASwMoD8UFw", _ZN12video_parser5vpcom8_GetstatEPcPNS0_12VP_FILE_STATE) +STUB( + "QAXlroxEPKk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot9setoffsetEi) +STUB("QAYY-MXynHM", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIlEC1EPKl) +STUB( + "QAYzA8woUY0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEED2Ev) +STUB("QAZtKuy2wIg", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody8getLimitEv) +STUB("QAd+04l6lYY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE8pushBackERKS6_) +STUB( + "QAi5M2UbDog", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEEC1ERSA_) +STUB( + "QAl7ecPnB7c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "QAq7KXD3NOs", + _ZN3sce2Np9CppWebApi14SessionManager2V140PostGameSessionsSearchRequestBodyFactory7destroyEPNS3_33PostGameSessionsSearchRequestBodyE) +STUB("QAqrH2Vp99k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEEaSERSA_) +STUB("QAtIMIg9bXk", _ZN7WebCore13JSHTMLElement4infoEv) +STUB("QB0CUuGxDR8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V115LastUpdatedUserC2EPNS1_6Common10LibContextE) +STUB("QB6DeJpqMbg", uprv_compareInvAscii_67) STUB("QB7c2b7odds", sceNpPush2PollUserPresenceOfflineEvent) +STUB("QBA+njDpP7A", _ZN7WebCore4Page19setFullscreenInsetsERKNS_9RectEdgesIfEE) +STUB( + "QBFIs-qSn00", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEEaSERKSA_) STUB("QBFoAIjJoXQ", sceVoiceSetVolume) STUB("QBLzc0izFLc", sceUserServiceGetParentalContentControl) +STUB( + "QBVKsLcveBU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEC2EPKS8_) +STUB("QBW1-h74Tfk", + _ZNK3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayer16customData1IsSetEv) +STUB( + "QBX+C3GBqFw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEaSERKS9_) +STUB("QBbo2kzANmQ", g_VideoOutInitialWidth) +STUB("QBcAfwrr094", glClearStencil) STUB("QBi7HCK03hw", sceKernelClockGettime) +STUB("QBlJ4XEOzlI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEdeEv) +STUB("QBp4IOFhbaA", _ZN7WebCore11HistoryItemC1ERKN3WTF6StringES4_S4_) +STUB( + "QBqp2RtWmmM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB("QBuuTInbLwU", _ZN7WebCore9HTMLNames14cellborderAttrE) +STUB("QBxEKuvS1Tk", rgctx_fetch_trampoline_mrgctx_75_p) +STUB("QByiQ+otd5o", _ZN7WebCore21ISOTrackEncryptionBox11boxTypeNameEv) +STUB("QBzq0D46oqg", _ZNK3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectator11getOnlineIdEv) +STUB("QC1CTAazPeI", ucnv_getCanonicalName_67) +STUB("QC4PkCVGPxE", + _ZN3sce2Np9CppWebApi13InGameCatalog2V513ContentRatingC2EPNS1_6Common10LibContextE) +STUB("QC5YZf-yNlA", g_string_append_vprintf) +STUB( + "QC81kxMghf4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEC1EPS8_) +STUB("QC82iL3WjnE", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12FriendsRanksEE19setCustomReturnCodeEi) +STUB("QC8pCaMv8bQ", Java_java_lang_StrictMath_pow) +STUB("QCEx-zcrjKQ", SSL_CTX_set_msg_callback) +STUB("QCHORyo4-Aw", cff_driver_class) +STUB( + "QCHc-hmLYBg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEE11release_refEv) +STUB("QCO1zjUwhyE", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_23NpIdListRankInformationEEC2Ev) +STUB( + "QCPK3TGd9EY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE10setContextEPNS2_10LibContextE) +STUB("QCPpnv99SMo", nn_strerror) +STUB( + "QCWsnSbDg5A", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) STUB("QCaXux9w7vo", sceDataTransferTargetAbortDeactivate) STUB("QCbvCx9HL30", sceNetDuplicateIpStop) +STUB( + "QCdmSBwrAC8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE5clearEv) +STUB("QCfjI087HUI", utext_replace) +STUB("QClLWeqI1F4", + _ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionMemberPlayer12unsetPlayersEv) +STUB( + "QClf0BXRqP0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEE5resetEPS7_) +STUB("QCoJWgm3irY", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorImEneERKS4_) +STUB("QCqEjslTj40", _ZNK3JSC12StackVisitor5Frame9sourceURLEv) +STUB("QCqMm6zIRvI", _ZNK10__cxxabiv117__class_type_info11can_cast_toEPKS0_) +STUB( + "QCrbX2QApDM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEC2ERKS7_) +STUB( + "QCtub50RL+0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "QCug0OdrZ5E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEE11release_refEv) +STUB("QCzOmgxL95I", _ZN3sce7Toolkit2NP15AppSTLAllocatorI16SceNpTusVariableEC2ERKS4_) +STUB("QCzTGdphrgY", strtod.fpi) +STUB( + "QD199eLQhhc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEE11get_deleterEv) +STUB("QD1pgB8owo8", _ZN9Inspector21InjectedScriptManager19clearExceptionValueEv) +STUB( + "QD7BgJajBY0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEC1ERKS7_) +STUB( + "QD8G-bVvaco", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEmmEv) +STUB( + "QDIB6xSqx7A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("QDIV2FMX+E0", _ZN7WebCore8SVGNames7relAttrE) +STUB( + "QDKI6U6a4Tc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEC1EPS8_) STUB("QDMpdglDPoo", sceGpuTraceParametersSetMemorySize) +STUB( + "QDOiioH6jLU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEmmEv) +STUB( + "QDRl1HtV8W0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEED1Ev) +STUB("QDTcvCqSzsw", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_6NpUserEEC1Ev) +STUB( + "QDU+3WESZ4A", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB( + "QDU5Oac+PEU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE5clearEv) +STUB( + "QDXtj-dHjG8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("QDcMlwB5zx4", mono_aot_Newtonsoft_Json_PlayStationunbox_trampoline_addresses) +STUB("QDd+ZCqkO2w", mono_metadata_parse_method_signature) +STUB( + "QDecfPnPA3M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE5beginEv) +STUB( + "QDjbU71hTJg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEmmEi) +STUB("QDlnJL6stA0", _ZN3sce2np13NpTitleSecretD2Ev) +STUB( + "QDumC55Jk7Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEED1Ev) +STUB("QDzm7SL-4So", utrie2_close) STUB("QE94oD7E9b4", sceVnaSetLanguageSettings) +STUB("QEE5Rka89jA", _ZN3sce2Np9CppWebApi7Matches2V123ResponseMatchStatisticsD1Ev) +STUB( + "QEH+5M+EJEA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEC2EPS7_PFvS9_EPNS2_10LibContextE) +STUB("QEHeEZGfFs4", _ZN3JSC2VM14throwExceptionEPNS_14JSGlobalObjectEPNS_8JSObjectE) STUB("QEIJRZErmxQ", sceMusicPlayerServiceRemoveTrackEntry) +STUB("QEJb02PKBYY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament5EventEED1Ev) +STUB("QEJbtimMBkk", AnnotateTraceMemory) +STUB("QENc8TerxpA", __remainderf) +STUB( + "QERO-LCkcAQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("QETncndH+xI", monoeg_g_string_append_printf) +STUB( + "QEaa9sASciU", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12string3IsSetEv) STUB("QEiuHxjungc", sceVideoOutSysModeIsVr) +STUB("QEmN+9a1big", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEEixEm) +STUB("QEppJQAXTjk", _ZN7WebCore19MediaResourceLoaderD1Ev) +STUB("QEr-PxGUoic", _LXp_addh) STUB("QEsMC+M3yjE", sceGnmSpmSetDelay) +STUB( + "QExEnnMAekM", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitations52getpostPlayerSessionsSessionIdInvitationsRequestBodyEv) +STUB("QF0MnNtuTzc", uhash_close) +STUB( + "QF8bsq9QSx0", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26RecordScoreResponseHeaders21intrusive_ptr_sub_refEPS5_) +STUB("QF8lLtGddXM", GCC_except_table63) +STUB("QFCvRLoLMfY", WKWebsiteDataStoreSetStatisticsCrossSiteLoadWithLinkDecoration) +STUB( + "QFDeCjTLT4w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEppEv) +STUB( + "QFE3c-4xZNU", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemProperties9terminateEv) +STUB("QFIQ6QvLjIk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEC2Ev) +STUB( + "QFIXtobcZ9g", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEEiRNS2_10LibContextEPT_m) STUB("QFJCN+emlOs", scePlayReadyDomainCertEnumFini) +STUB("QFJF0ID5uZ0", _ZN12video_parser17cVideoOperatorEtsC1EPKc) +STUB( + "QFLOz5JS7JY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE5clearEv) +STUB( + "QFMKzRQq4Gk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEC2Ev) STUB("QFPjG6rqeZg", sceNetResolverConnectDestroy) +STUB("QFQlVeu1W60", _ZN3JSC9Structure25nonPropertyTransitionSlowERNS_2VMEPS0_NS_14TransitionKindE) +STUB( + "QFXnfQu5AwU", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSessionIdRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_37PatchGameSessionsSessionIdRequestBodyEEE) +STUB("QFYVZvAJNC8", _ZN3sce2np8JsonFileD2Ev) +STUB( + "QFYi8Lgobn4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("QFaV4ocOB+Y", Java_com_sony_gemstack_org_dvb_application_AppsDatabaseImpl_n_1isAvailable) +STUB( + "QFbXjGZTmcU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEE5resetEPS9_) +STUB("QFeogJb6mOQ", _ZN12video_parser13cVideoPathMsvD1Ev) +STUB( + "QFgLchPjGP0", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyD2Ev) +STUB("QFj6QQ4cxXU", _ZN9Inspector18InjectedScriptHostC1Ev) +STUB("QFoFJWkAyGs", _ZNK7WebCore8Document27areFullscreenControlsHiddenEv) +STUB("QFpoqRAZMo0", ucnv_io_countKnownConverters) +STUB("QFuju2AaGMs", mono_sha1_get_digest) +STUB("QFx5cPYgu3U", JSObjectMakeDeferredPromise) STUB("QFx6geRbV5Q", sceVnaUtilGetSupportedLanguageList) +STUB( + "QGJq7UvW018", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE5clearEv) +STUB("QGKNBmGRZZE", _ZN7bmalloc15availableMemoryEv) +STUB("QGKXBRNQtXw", WKBundlePageSetFooterBanner) STUB("QGL+VQEX8lo", sceAvSettingSetHdcpMode) STUB("QGN2n4c8na4", sceNpPush2CreateUserContext) STUB("QGN8eGq6hbs", sceVnaGetSupportedLanguageInfo) STUB("QGOqGPnk5a4", sceNetPppoeStart) +STUB("QGS8s73UyZ4", _ZN3sce2np10JsonNumber3SetEj) +STUB("QGSIlqfIU2c", _ZNKSt8numpunctIcE13thousands_sepEv) +STUB( + "QGV9f-4v4-s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEEC2Ev) +STUB("QGapMFsXa8c", mono_aot_Sce_Vsh_Np_IdMapperjit_code_end) +STUB("QGapaf1-Pp0", _ZNK9Inspector22RemoteInspectionTarget20remoteControlAllowedEv) +STUB("QGc21vGbU+c", ucnv_toUCountPending) +STUB("QGkJzBs3WmU", _ZTVNSt6locale7_LocimpE) +STUB("QGlyLx75ZyU", _ZN7Nicosia16SceneIntegration13requestUpdateEv) +STUB("QGmBfK8pd1o", _ZN3WTF9MediaTimeD1Ev) STUB("QGovXLECroc", sceSaveDataDeleteBackupData) +STUB( + "QGqn18wIhT4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEmmEv) +STUB( + "QGxBoGah9yU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEppEv) +STUB("QGz9SzO3qoI", + _ZN3JSC8Debugger16toggleBreakpointEPNS_9CodeBlockERNS_10BreakpointENS0_15BreakpointStateE) +STUB("QH2emcgeFck", FT_Outline_New) +STUB( + "QH2kQyiArCs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEmmEi) +STUB( + "QH3fZkXZk48", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEppEv) +STUB("QH664gYg5n8", + _ZN7WebCore10Pasteboard14writePlainTextERKN3WTF6StringENS0_18SmartReplaceOptionE) +STUB( + "QHB7y0-xBsA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEC2Ev) +STUB("QHCu2HZdZOk", _ZN3JSC7Symbols35asyncGeneratorResumeNextPrivateNameE) +STUB("QHEUodxiGA8", utrie2_set32ForLeadSurrogateCodeUnit_67) STUB("QHFJB2F0p3k", sceGameCustomDataDialogOpenA) +STUB( + "QHH-xWK6jKw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEppEv) +STUB("QHJjFbPJmzc", mono_aot_Sce_Vsh_VideoRecordingWrapperjit_code_start) +STUB( + "QHLFAVF0SoY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE5beginEv) +STUB("QHMWAbrORlI", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIiEppEv) +STUB("QHOhqicPZ1s", _ZN3JSC8JSObject17preventExtensionsEPS0_PNS_9ExecStateE) +STUB("QHSbn+zesvk", _ULx86_64_dwarf_search_unwind_table) +STUB("QHTLo69uRWI", _ZN9Inspector22PageFrontendDispatcherdlEPv) +STUB("QHVNTB8hjCc", _ZN3sce7Toolkit2NP2V23TUS7TusDataC1Ev) +STUB("QHaMM3hoxqk", _ZN3WTF14AtomStringImpl3addEPKDsj) +STUB("QHbjiu2vkZo", jpeg_fdct_6x12) +STUB("QHeHiJ-KQx4", _ZN10MonoDomain3GetEv) +STUB( + "QHfo5oY2-yI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "QHjRw72-XyU", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V124NatConnectivityToMetrics18getConfidenceScoreEv) +STUB( + "QHl5g00GrTQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEED2Ev) +STUB("QHo8UyNlC1o", _ZZSt9MakefacetISt7codecvtIcc9_MbstatetESt8_LocinfoERT_T0_E3buf) STUB("QHq2ylFOZ0k", sceAudioOutSetConnectionsForUser) +STUB( + "QI+7dBjO9Ac", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEC2ERKS7_) +STUB( + "QI+dVXRggbs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE8pushBackERKS8_) +STUB( + "QI-WRibBSwc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEplEm) +STUB("QI-x0SL8jhw", acosf) +STUB("QI10G7iFT6s", + _ZN3sce2Np9CppWebApi13InGameCatalog2V520ContainerRatingCountC1EPNS1_6Common10LibContextE) STUB("QI6ArERn7Tk", sceVnaGetFeedbackStatus) +STUB("QI71uEZ8eUQ", rgctx_fetch_trampoline_rgctx_26) STUB("QI72hdEHB90", sceFsBindPackages) STUB("QI8GVJUy2ZY", sceCameraSetHue) STUB("QIBJY7pQ-Yw", sceDevUsbInitHost) +STUB( + "QIF0IGbJmp8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEdeEv) +STUB( + "QILgXEZAVZQ", + _ZN7WebCore20ExtensionStyleSheets17addUserStyleSheetEON3WTF3RefINS_18StyleSheetContentsENS1_13DumbPtrTraitsIS3_EEEE) +STUB("QIM5rKGsIxo", ucnv_getNextUChar) +STUB( + "QIPjjJURlDI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) STUB("QIXCsbipds0", sceAgcDcbRewindGetSize) +STUB("QIY-792x6og", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEC1Ev) +STUB("QIaL3L6nQc4", ucol_equal_67) STUB("QIcDUVSdXw0", sceCesUcsProfileInitEucJpX0208Ss2) +STUB("QIdqG9iFqwI", _ZN3WTF6Thread13mayBeGCThreadEv) +STUB( + "QIhqADWeSAU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEE5resetEPS6_) +STUB("QIkZhXvpyO4", WKUserScriptGetInjectionTime) +STUB( + "QIlxTlIxPTg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("QIokjkyGwck", ucnv_getStarters_67) +STUB( + "QIs7mnMHjW8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEEaSERKSA_) +STUB( + "QIsioRAS2k4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEE11release_refEv) +STUB("QIwTFdEssJw", _ZN7WebCore9HTMLNames5h5TagE) +STUB( + "QIyHhGijyH4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) STUB("QIz+d0g1wUg", sceBgftServiceIntPatchGoGetState) +STUB( + "QJ+67fstRpI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEE11get_deleterEv) +STUB("QJ5xVfKkni0", wmemcmp) +STUB("QJ6mF2xRR5w", SSL_CTX_set_session_id_context) +STUB( + "QJ8qFX7GqgQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("QJCcZ0vgv54", _ZN7WebCore14SQLiteDatabase16runVacuumCommandEv) +STUB("QJFPNrgcuCo", _ZThn120_NK7WebCore16HTMLMediaElement8durationEv) +STUB( + "QJGhyVKzcdc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE7reserveEi) +STUB( + "QJHPG83Q9xY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("QJJ-4Dgm8YQ", _ZTv0_n24_NSoD0Ev) +STUB( + "QJNoYvY2DdQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEC2EPS8_) +STUB("QJWQZHC0y4Q", + _ZN3sce7Toolkit2NP2V26Trophy6unlockERKNS3_7Request6UnlockEPNS2_4Core8ResponseINS8_5EmptyEEE) STUB("QJbV3vfBQ8Q", sceNetConfigSetIfaddr6) +STUB( + "QJc86gUk0i8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("QJg5k0068AE", _ZN3sce7Toolkit2NP9Utilities6FutureI24SceNpBandwidthTestResultE3getEv) STUB("QJjPjlmPAL0", sceGnmGetOwnerName) +STUB("QJn-vuGxuho", Java_java_lang_reflect_Array_set) +STUB("QJoy9fsuHnk", _ZN3sce7Toolkit2NP2V23TUS16FriendsVariablesC1Ev) +STUB("QJqqNEtZ8fc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEC2ERKS7_) +STUB("QJxnRATldPc", WKBundleNodeHandleCreate) STUB("QJy6V9QAXXE", sceProprietaryVoiceChatHelperSetVoiceChatState) +STUB("QK-dmxAhbJ8", _ZN3WTF6Thread20numberOfThreadGroupsEv) +STUB("QK8VQzBcRG4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils13NetStateBasicEED1Ev) +STUB( + "QK9X7oZ8-Xc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("QKDW6sURZ9Q", mono_aot_Sce_Vsh_PartyCommonunbox_trampolines) +STUB( + "QKGaCjsem48", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEC2EPNS2_10LibContextE) +STUB("QKJB8Io+XPU", Java_java_io_FileInputStream_read0) +STUB("QKN0Iu6Ujgg", _ZN3WTF9MediaTime8zeroTimeEv) +STUB("QKXk1l0g0fY", _ZN7WebCore20ResourceResponseBase17setHTTPStatusTextERKN3WTF6StringE) +STUB( + "QKZ5-z-Halk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEE5resetEPS9_) STUB("QKd0qM58Qes", sceKernelStopUnloadModule) +STUB( + "QKmO0Oe+Zl8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE5beginEv) +STUB( + "QKrNgVo170o", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) STUB("QKsI9N7K1zE", sceFiosStat) +STUB( + "QKsXUcA3Xqs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEC1EPS6_PNS2_10LibContextE) +STUB("QL+3q43NfEA", tanl) +STUB( + "QL6AesIr6Eo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("QLDcLR7Pzbg", _ZN4IPMI6ClientD2Ev) +STUB("QLHb6Lpy4kE", WKSizeCreate) +STUB( + "QLJyK+nRNXg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEppEv) +STUB( + "QLRGegTGpSE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEeqERKS9_) +STUB( + "QLRWZb3UZdw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEeqERKS7_) +STUB( + "QLSN+fvZWd0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEED1Ev) +STUB( + "QLSjfsGVbg0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEdeEv) +STUB("QLTAClsl5oM", rgctx_fetch_trampoline_rgctx_3) +STUB( + "QLahbQxBWjg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEC1EPS7_PFvS9_EPNS2_10LibContextE) +STUB("QLcy5UgKqxU", WKPreferencesGetIsNSURLSessionWebSocketEnabled) STUB("QLdG7G-PBZo", sceGnmGpuPaDebugEnter) +STUB( + "QLeIK5tpVUU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEC1EPNS2_10LibContextE) +STUB( + "QLfDPMMO6WU", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS2_6VectorINS5_INS1_13InGameCatalog2V59ContainerEEEEEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISG_SH_EE) +STUB( + "QLg7rHULmi8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE10setContextEPNS2_10LibContextE) +STUB( + "QLkStITh7Uw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEptEv) +STUB( + "QLkr0qkx+ZY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEED1Ev) +STUB( + "QLneOexu3-w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEC1Ev) +STUB("QLqM1r9nPow", _ZTISt22_System_error_category) +STUB("QLsj+YmMqu0", _ZN3JSC19HeapSnapshotBuildernwEm) +STUB( + "QLt4wwgs9Nw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE8capacityEv) +STUB("QLufrpMhxjM", psl_str_to_utf8lower) +STUB("QLvvlBPqRLs", mono_btls_x509_lookup_peek_lookup) +STUB( + "QLwadMOEPvE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE21intrusive_ptr_sub_refEPS9_) +STUB("QLzJT6sH5nI", + _ZN15AbstractStorage14TwitterStorageC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) STUB("QLzOwOF0t+A", sceGnmSqttWaitForEvent) +STUB( + "QM+qJFKM17c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEE7get_refEv) +STUB( + "QM2MCef2ffM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEED1Ev) +STUB("QMBmWhDFKvA", _ZN12video_parser13cVideoMetaVWG13_changeEndianENS_12VP_META_TYPEEPvj) +STUB("QMFyLoqNxIg", setvbuf) +STUB("QMHNcV-DHGE", TerminateLib) +STUB("QMKiWatcAFI", _ZNK3WTF24TimeWithDynamicClockTypemiERKS0_) +STUB("QMLPrsdMwMQ", + _ZN7WebCore21DiagnosticLoggingKeys45wastedSpeculativeWarmupWithoutRevalidationKeyEv) +STUB("QMOBaF2YyFU", _ZN3sce7Toolkit2NP2V29Messaging24GameDataMessageThumbnailC2Ev) +STUB( + "QMOpDx9k6aw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE4termEv) +STUB( + "QMbYTNSoNts", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEC2EPS8_) +STUB("QMef9Z23VHQ", jpeg_copy_critical_parameters) STUB("QMfpxQG9Tto", sceCesRefersUcsProfileCp861) +STUB( + "QMk5U13Jdus", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEptEv) +STUB("QMmcxCtvFYo", _ZNK3sce2Np9CppWebApi14SessionManager2V15Error10getMessageEv) +STUB("QMp7-W19WDs", rgctx_fetch_trampoline_mrgctx_104) +STUB( + "QMtVCPSH+qA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEE7get_refEv) +STUB( + "QMwAYzlvMy8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "QMz8PQVuxa0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) STUB("QN-BpZYsomU", sceDebugIpmiGetClientKidList) STUB("QN0bWxhaUFk", sceMbusIsBgmProhibited) STUB("QN1i7GqlP7g", scePlayReadyBufferInitWithData) +STUB("QN7bxzzZsYs", _ZNK7WebCore19ProtectionSpaceBase5realmEv) +STUB("QN88Myk77SI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEC2EPS8_) +STUB( + "QN9fR+3n7AA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEE3getEv) +STUB("QNAIWEkBocY", _ZTISt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE) +STUB( + "QNF9ERM8L9I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEC1Ev) STUB("QNO1olxrfBU", sceVencSetReferenceFrameInvalidationConfig) +STUB( + "QNV+AY7VtrU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEEC1ERKSA_) +STUB("QNVdial10HI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEC2ERKS7_) +STUB("QNfeQkXbKk8", JSStringCreateWithCharactersNoCopy) STUB("QNg8KGixrzg", sceVideoRecordingCopyBGRAtoNV12) +STUB( + "QNgg1huXSW8", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi16leaveGameSessionEiRKNS4_27ParameterToLeaveGameSessionERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) STUB("QNjGUdj1HPM", sceKernelIsDevKit) STUB("QNk7qD4dlD4", sceUserServiceGetLoginFlag) +STUB( + "QNn31HXaA-c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEED2Ev) +STUB( + "QNod6TYBSkk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE7popBackEv) STUB("QNop2YAtIDE", sceShareGetCurrentStatus) +STUB( + "QNpeGOb3qzY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEEdeEv) +STUB( + "QNrLUg4Y710", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEC1EPS8_) +STUB( + "QNvxsN1KWxY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEC2Ev) +STUB("QNwdOK7HfJU", vwscanf) +STUB("QNyUWGXmXNc", strtoumax) +STUB("QO-8jWvosGs", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE5clearEv) +STUB("QO5iuHMTu2o", res_countArrayItems) +STUB("QO6Q+6WPgy0", _ZNSt14numeric_limitsIsE6digitsE) STUB("QO7+2E3cD-U", sceNetConfigDelRoute) +STUB( + "QOBzvdl8nqw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEEC2ERKSA_) +STUB("QOF5Ykr30DI", _ZN3JSC8Debugger15didRunMicrotaskEv) +STUB("QOHvB2B1V1A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEmmEv) +STUB( + "QOL+JRZ6xFo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "QON86ljW3wg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("QOQ5LTPxvK4", _ZN9Inspector27LayerTreeFrontendDispatchernaEmPv) STUB("QOQtbeDqsT4", sceAudioOutOutput) +STUB("QOSkS+V5Me8", _ZN7WebCore9FrameView13setNodeToDrawEPNS_4NodeE) +STUB("QOYZRDPTq94", _ZN9Inspector33LayerTreeBackendDispatcherHandlerD1Ev) +STUB( + "QOZVcEDl9mg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB( + "QOh-PlkFEUw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEE7add_refEv) +STUB("QOhW9oRkdLE", _Z21VideoPlayerVcs_CreatePiP11_MonoStringiiiiii) +STUB("QOk++aq2490", __i2b_D2A) +STUB("QOmIaoXFNig", _ZNK3sce3Xml4Attr8getValueEv) +STUB("QOnw13KJCyA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V124RequestCooperativeResultEEC1Ev) +STUB( + "QOq4jO4LH58", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEE5resetEPS6_) +STUB("QOwNdOdlkw0", WKBundleSetAllowFileAccessFromFileURLs) +STUB( + "QOytP-lid+I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEEC1Ev) +STUB( + "QOzWBuxaP60", + _ZN9Inspector26AnimationBackendDispatcher13startTrackingElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) STUB("QP4WA9hEAtM", sceFsExfatMkfsExternalHdd) +STUB("QP99f0+e+B4", _ZN7WebCore8Settings38setShowRepaintCounterInspectorOverrideEN3WTF8OptionalIbEE) +STUB( + "QPCaN-A2KpY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEC2EPS8_) +STUB("QPDDhGO4EB8", g_dir_read_name) +STUB( + "QPFQ+uhOYSo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("QPNELEk9zkI", _ZN15AbstractStorage4ItemD1Ev) +STUB("QPNJqnKTh9Y", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce8ProductsEE19setCustomReturnCodeEi) +STUB( + "QPOSLdyVThw", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("QPOc37Cy-oU", _ZNK7WebCore6Widget25convertFromContainingViewERKNS_9FloatRectE) +STUB("QPSy+6jSLA8", _ZTT13MsvMetaEditor) +STUB( + "QPULTU4vOcQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEED1Ev) +STUB("QPX9GSUEt-k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEC2ERS7_) +STUB( + "QPYfXzIdwtc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEEneERKS7_) +STUB("QPh+yb2Y8AQ", FTA_Export_Module_type1) +STUB("QPhmpCzlKME", _ZN4Manx3Ssl10initializeEv) +STUB( + "QPm05rlPelU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("QPpLWgXyIu0", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEEC1Ev) +STUB("QPrUtwNPGhI", uscript_getUsage) +STUB( + "QPrwYQBwbdY", + _ZN3sce2Np9CppWebApi14SessionManager2V127PostGameSessionsRequestBody15setGameSessionsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_18RequestGameSessionEEEEE) +STUB("QPydzIZAUdU", WKWebsiteDataStoreConfigurationSetLocalStorageDirectory) +STUB("QQ+2HEyYLt8", _ZN7WebCore20TransformationMatrix8rotate3dEddd) +STUB("QQ+5GjIApTM", _ZN7WebCore20UserGestureIndicator21processingUserGestureEv) +STUB("QQ-PJT-vaGA", monoeg_g_log_set_fatal_mask) +STUB("QQ-Uvefa1Hg", _ZN3sce7Toolkit2NP2V210Tournament14RegisteredTeamD1Ev) +STUB( + "QQ3+qIN9s94", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEC1EPS8_) +STUB( + "QQ9-G4XbORo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("QQCqBHk79sI", _ZN3sce2npneERKNS0_8NpCommIdES3_) +STUB( + "QQGEgR7vMtg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEE7add_refEv) +STUB("QQQRY+xPqdk", _ZN7WebCore9HTMLNames12sortableAttrE) +STUB("QQastm3gp-U", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE5emptyEv) +STUB("QQdPV66dHBg", + _ZN3sce2Np9CppWebApi14SessionManager2V131ResponseGameSessionMemberPlayer10getPlayersEv) +STUB("QQhOQ9TdYtk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEmmEv) +STUB("QQitgMbzdBg", _ZN3JSC2VM27intlDateTimeFormatSpaceSlowEv) +STUB("QQjw8V1NjqM", _ZN9Inspector21InspectorConsoleAgent7disableERN3WTF6StringE) +STUB("QQl7yDhS98g", _ZN3sce7Toolkit2NP2V23TUS7Request18GetUsersDataStatusC1Ev) +STUB("QQlTIb72qjo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEE7add_refEv) +STUB("QQlaRvQNenY", _ZN7WebCore17JSDOMRectReadOnlyD1Ev) +STUB( + "QQnEV70dXKQ", + _ZN9Inspector17ScriptDebugServer12sourceParsedEPN3JSC9ExecStateEPNS1_14SourceProviderEiRKN3WTF6StringE) +STUB( + "QQp6Vz2tptU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEC1EPKS8_) +STUB("QQsnQ2bWkdM", _ZTISt4_Pad) +STUB( + "QQweaZWLPFM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEptEv) +STUB("QQwtijo98qI", WKRenderObjectGetTextLength) STUB("QQzfcRrIGFw", sceDataTransferTargetRequestEndTransfer) +STUB("QR-okPoaCEk", __start__Zplt) +STUB( + "QR0ljR3cI6w", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE4sizeEv) +STUB( + "QR1lSKmQ044", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEaSERS7_) +STUB("QR7J7eYZOkI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEED1Ev) +STUB( + "QR7bvHMOdvA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "QR9sKbkzEs4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE5beginEv) +STUB("QRBvP7MZPgU", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEEC2Ev) +STUB("QREvgSOUoXg", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStatsaSERS5_) +STUB("QRJ087uRRSc", ucol_closeElements_67) +STUB("QRO9p-E0uPg", pa_set_functions) +STUB( + "QRQTQw1VxDI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEC2EPKS8_) +STUB("QRUnq01DRc0", + _ZN15AbstractStorage12LocalStorage15RemoveRecursiveERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("QRVGV6+ykOU", _ZN9Inspector19InspectorAuditAgentD0Ev) +STUB("QRcEFas2wuI", _ZN3sce7Toolkit2NP2V28Matching7Request10CreateRoomC2Ev) +STUB("QRd10kzHzxA", SSL_CTX_set_client_cert_cb) STUB("QRdE7dBfNks", pthread_resume_user_context_np) +STUB( + "QRiHW5neFfI", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEiRNS2_10LibContextEPT_m) +STUB("QRj4pcepQAk", _ZN7WebCore4Page22nonFastScrollableRectsEv) +STUB("QRklMF4pJnU", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE5beginEv) +STUB("QRlEy2O0YUg", _ZN3sce7Toolkit2NP2V211SharedMedia10ScreenshotD2Ev) +STUB("QRlvaphJOUs", utrie_swap_67) +STUB("QRnz-VjPrkY", _ZN15AbstractStorage12SerializableC2Ev) +STUB( + "QRoCGttRG28", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEC2Ev) +STUB("QRrOdPTOqq4", + _ZN3sce7Toolkit2NP2V210Tournament7Request18GetRegisteredUsers17DEFAULT_PAGE_SIZEE) +STUB( + "QRwJH5xf11c", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE8capacityEv) +STUB("QRyzd3Sx+AI", _ZN3JSC9CodeBlockD2Ev) +STUB( + "QS2KqPg9z5Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB("QS7CASjt4FU", _ZNSt12length_errorD0Ev) +STUB( + "QS7XBK-BDHk", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("QSDUcGAdbXU", _ZN3JSC12StackVisitorC2EPNS_9ExecStateEPNS_2VME) +STUB("QSDh0XIfPuo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEC2Ev) +STUB("QSE-2TsMW0M", _ZNK7WebCore19UIEventWithKeyState16getModifierStateERKN3WTF6StringE) +STUB( + "QSHlXSXixws", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEC2EPS8_) +STUB("QSN--J1G8kw", delegate_virtual_invoke_imt_22_p) +STUB("QSQ5LUbIA2Q", _ZN7WebCore5RangeD2Ev) +STUB("QSRjO+sqoFU", _ZN3WTF12CountingLock8lockSlowEv) +STUB("QSTBbjtT6h4", rgctx_fetch_trampoline_mrgctx_33_p) +STUB("QSW3mB08bkc", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V115CompetitionTypeEEmmEi) +STUB("QSWpsSZDHig", _ZN7WebCore12PrintContextD0Ev) +STUB("QSZyNI5Q2rI", WKOriginDataManagerDeleteEntriesModifiedBetweenDates) +STUB("QSda71kFpIM", _Z28sceMatAgcRegisterGdsResourcemmjmPKcjm) +STUB("QSfaClY45dM", _Xbig) +STUB( + "QSkidpGd5RE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEEaSERKSA_) STUB("QSmT3attiVg", sceVideoOutSysCursorRelease) +STUB("QSmVPEK+1rk", _ZN7WebCore12TextIterator11rangeLengthEPKNS_5RangeEb) +STUB("QSpui5WFQBU", _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody10setOfferIdEPKc) +STUB( + "QSr-tbtpjnU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "QStRe0kkaJ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "QStfFFoEd+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEE5resetEPS6_) +STUB( + "QSyVGX2GyXQ", + _ZN9Inspector24BrowserBackendDispatcher6createERNS_17BackendDispatcherEPNS_31BrowserBackendDispatcherHandlerE) +STUB( + "QSz4uPiC-oo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEED1Ev) +STUB("QSzdUqTrd-s", _ZNK7WebCore24MatrixTransformOperation5cloneEv) +STUB("QT1h9iol+Bk", _ZNK7WebCore18HTMLMarqueeElement11scrollDelayEv) +STUB("QT3HL3shrsk", _ZN7WebCore11DisplayList11DisplayList5clearEv) +STUB("QT3ve5whb04", _ZN7WebCore25previousParagraphPositionERKNS_15VisiblePositionEi) +STUB("QT43BD-IWqY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE6resizeEj) +STUB("QT4GdEZTkao", _ZNK7WebCore9FrameTree11scopedChildERKN3WTF12AtomicStringE) +STUB("QT4ZkyYJd2k", prout) +STUB("QT5VMCd+e-s", _ZN7WebCore3URL23fakeURLWithRelativePartERKN3WTF6StringE) +STUB("QTAkqg5qRL8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE5beginEv) +STUB( + "QTCPj6M-Xmo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEC1Ev) +STUB( + "QTDIn+GsO30", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEmmEi) +STUB( + "QTDcKNXs17I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE4sizeEv) +STUB( + "QTHdSYNSo8k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEppEv) +STUB( + "QTIRvZbrnX4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEplEm) +STUB("QTIefScNLhk", _ZN3sce2Np9CppWebApi14SessionManager2V12To8fromJsonERKNS_4Json5ValueE) +STUB("QTPBZrsYy5M", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEED2Ev) +STUB("QTY0nfQdmSs", sec_hand) +STUB("QTY9qczIcA8", __start__Zfini_array) +STUB("QTYL0dOEpvY", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container11unsetRatingEv) +STUB("QTd2HZrtE-0", __asan_stack_malloc_always_2) +STUB("QTg20GyF27Y", _ZN3JSC8JSObject33prototypeChainMayInterceptStoreToERNS_2VMENS_12PropertyNameE) +STUB("QTgRx1NTp6o", _ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED1Ev) +STUB("QTlT1P84RL8", _ZN7WebCore14StaticNodeListdlEPv) +STUB("QTov2+OHqgk", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanityC2Ev) STUB("QTpgnwUVRWw", sceDebugWriteProcessMemory) +STUB("QTqSm4Y9PlM", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V13Mmr17unsetPerFranchiseEv) +STUB("QTtY6lB7P40", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V117InvitableUserTypeEEC2EPS6_) +STUB("QTygOIlgkjY", _ZN3JSC17DeferredWorkTimerD1Ev) +STUB("QU+H7JmTZ+o", _ZN7bmalloc29StaticPerProcessStorageTraitsINS_11EnvironmentEE7Storage7s_mutexE) +STUB("QU15xIMvIcY", _ZNK7WebCore12ChromeClient21plugInExtraStyleSheetEv) STUB("QU2M1pPNbaY", sceHmd2Terminate) +STUB("QU2RS5gXYEU", _ZN7WebCore24CoordinatedGraphicsLayer18setContentsToImageEPNS_5ImageE) +STUB("QU47ftPwyZ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEEC2Ev) +STUB( + "QU4gBqAEVtM", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) STUB("QU57kCwF81U", sceKernelSetAppState) +STUB("QU5Yp2tSKLA", + _ZN3sce2Np9CppWebApi12Leaderboards2V127RecordLargeDataResponseBody8fromJsonERKNS_4Json5ValueE) +STUB( + "QUJD3ow+ARM", + _ZN9Inspector21PageBackendDispatcher6createERNS_17BackendDispatcherEPNS_28PageBackendDispatcherHandlerE) +STUB("QUMw9Z2Ia1I", WKPageGetInspector) +STUB( + "QUOUspKo4wk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEE11get_deleterEv) +STUB( + "QUPJaMt+IJQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE3endEv) +STUB("QUQ4Y29UuLg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEED1Ev) +STUB("QUQc1y0KW+8", Java_org_blurayx_s3d_ui_DirectDrawS3D_initIDs) +STUB( + "QUT3wXrb3ZE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "QUU5V-o-NTI", + _ZN3sce7Toolkit2NP2V28Matching23setMembersAsRecentlyMetERKNS3_7Request23SetMembersAsRecentlyMetEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB( + "QUcjlO7FiAc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEE11get_deleterEv) +STUB("QUcoh-eLixA", Java_java_io_ObjectStreamClass_hasStaticInitializer) +STUB("QUeUgxy7PTA", _ZNSt20_Future_error_objectIiE14_Future_objectE) +STUB( + "QUmM9IbywAs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEmmEi) +STUB( + "QUmitowNUQ8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEppEv) +STUB("QUnwy1gcfNA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEEC1EPNS2_10LibContextE) +STUB( + "QUq6nWy8tiw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("QUz09q1WeTA", _ZN3JSC7Symbols17padEndPrivateNameE) +STUB("QV2vL3tTVCk", fuse_fs_releasedir) +STUB("QV8aHn1TRXQ", _ZN12video_parser7cVpUtil10SwapEndianEPhS1_i) +STUB( + "QV9JfmXsW8E", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "QV9ipyXjeG4", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM23AccessibilityProperties7InvalidEEESt8optionalIT_ERKN3WTF6StringE) +STUB("QVEHPhY6UHo", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEED1Ev) +STUB( + "QVNPfGFLWpI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE8pushBackERKS8_) +STUB("QVWsX01n08M", uprv_tzname) +STUB( + "QVZAQnXGDds", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEED2Ev) +STUB( + "QVdStfu1ZzQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEC2EPKS8_) +STUB("QVi49cXcHNc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEEneERKS7_) +STUB( + "QVkTKOLN00w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEED2Ev) +STUB( + "QVm5Dwvyn4k", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEneERKS9_) +STUB( + "QVn2F1vCNLE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE10setContextEPNS2_10LibContextE) +STUB( + "QVr+kByGj8U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE5beginEv) +STUB("QVsYsUEgbHo", _ZN3sce2Np9CppWebApi7Matches2V117LeaveMatchRequestC2EPNS1_6Common10LibContextE) +STUB("QVsk3fWNbp0", _Atomic_fetch_add_8) +STUB( + "QVyn7MCAeJI", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot11hassortModeEv) +STUB("QVysh-6PW30", mono_aot_Sce_Vsh_DbRecoveryUtilityWrapperunbox_trampoline_addresses) +STUB("QW+eAUlZtBk", _ZN7WebCore19TextResourceDecoderD2Ev) +STUB("QW-f9vYgI7g", __negvti2) +STUB( + "QW1J1xp9Xrw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEixEm) +STUB("QW22kVUoBIg", _ZN7WebCore9HTMLNames8audioTagE) +STUB("QW2jL1J5rwY", _ZNSt6locale5facet9_RegisterEv) +STUB( + "QW3JQiLvMsc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE8pushBackERKS8_) +STUB("QW4yYJ7mHmc", udat_getAvailable_59) STUB("QW7NonbfeFk", sceNpSnsIntLinkedStatus) +STUB("QWAd+Vrr4mY", _ZN7WebCore11MediaPlayer21characteristicChangedEv) +STUB("QWCTbYI14dA", _FInf) STUB("QWGdqfZlfhU", sceCesIso2022UcsContextInitCopy) +STUB("QWHryB0DYao", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V324ValidationConstraintInfo8setValueEPKc) +STUB( + "QWK3AvlDP9U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEED1Ev) +STUB( + "QWKL5+i4EOU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("QWNExBJEeqQ", _ZN3sce7Toolkit2NP2V24Core11RequestBaseC1ERKS4_) +STUB( + "QWOGSxl3ypU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE8copyFromERKS9_) +STUB("QWOYdF57X1A", _ZN7WebCore9HTMLNames19webkitimagemenuAttrE) +STUB( + "QWRYQMQSpIc", + _ZN3sce2Np9CppWebApi6Common18ResponseHeaderBase14getHeaderValueEPKcRNS2_12IntrusivePtrINS2_6StringEEE) +STUB( + "QWSiZJDtguI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE3endEv) STUB("QWSxBzf6lAg", sceSslSetMinSslVersion) STUB("QWV5S0xkefw", sceCesUtf32ToSbc) STUB("QWVJAvJhcoE", sceMbusDebugAcquireControlWithStateFlag) +STUB("QWVrYTt602Y", goby_GetDUIDParameters) +STUB( + "QWXijQ2rd+k", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "QWal9MoUPrI", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextEm) +STUB( + "QWflddymuoo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEEC1ERSA_) +STUB("QWjCa7nkT-g", YGNodeLayoutGetHadOverflow) +STUB("QWjMJgXT2OU", _ZN3sce7Toolkit2NP2V28Commerce10CategoriesC2Ev) +STUB( + "QWk4nlxhOvw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEppEv) +STUB( + "QWkzZh39rFg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEplEm) +STUB("QWlZu1JZOww", _ZN3sce2np9LocalFileC1Ev) +STUB( + "QWpIaYhNQEI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEEcvbEv) +STUB( + "QWqlw8dhEgk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("QWsI1yrvI-0", _ZN3sce7Toolkit2NP2V23TUS7Request12SetVariables18MAX_VARIABLE_SLOTSE) +STUB("QWuf0CHcDMM", _ZN3JSC7JSProxy12toStringNameEPKNS_8JSObjectEPNS_9ExecStateE) +STUB("QWyrJcVFiOc", _ZN3JSC17checkModuleSyntaxEPNS_9ExecStateERKNS_10SourceCodeERNS_11ParserErrorE) +STUB( + "QWzRMGiS5Qc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE8pushBackERKS8_) +STUB("QX2T-A54XgA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEC2Ev) +STUB( + "QX4q2qJnoQ8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEptEv) +STUB("QX6b+NQ1NE8", _ZN7WebCore17CharacterIteratorC2ERKNS_11SimpleRangeEt) +STUB( + "QXBvsq-Drq8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEC2EPNS2_10LibContextE) +STUB("QXJCcrXoqpU", _ZNSt8ios_base5clearENSt5_IosbIiE8_IostateEb) +STUB("QXKhAYE8iuA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEEC2EPS5_PNS2_10LibContextE) +STUB("QXLG4UDWLEI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEC1Ev) +STUB( + "QXM89CO5yc8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("QXUHGgXn4JA", + _ZN3sce4Json6Parser11parseStringERSbIcSt11char_traitsIcENS0_8StlAllocIcEEERNS0_11InputStreamE) +STUB("QXUqB4DXp+g", _ZN3sce7Toolkit2NP2V24Core7Request21BehaviorModificationsD1Ev) +STUB("QXXRejGXJrc", WKPageReloadFromOrigin) +STUB("QXXnHWBzqOI", delegate_virtual_invoke_imt_32) +STUB("QXah3pw5xfc", _ZN3sce2Np9CppWebApi7Matches2V120ResponseInGameRoster8getTeamsEv) STUB("QXd85nHKgTc", sceDtcpIpByteSeekAsync) +STUB("QXdPjIdqfxQ", _ZN3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferReadD1Ev) +STUB("QXfo5aARpSM", _ZN7WebCore9HTMLNames13oncanplayAttrE) +STUB("QXmqerVwWZM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEptEv) +STUB( + "QXnPEosiCkQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEeqERKS9_) +STUB( + "QXoN8WJ6Elc", + _ZN9Inspector26AnimationBackendDispatcherC2ERNS_17BackendDispatcherEPNS_33AnimationBackendDispatcherHandlerE) +STUB("QXotoJX1SW0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE21intrusive_ptr_sub_refEPS7_) +STUB("QXs-iB-q5Vs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEaSERKS7_) +STUB( + "QXxvpwWnXXg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEC2Ev) +STUB( + "QY01WTzGJiE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "QY0qEBObEx4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB( + "QY6qdRRdOTA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEneERKS9_) +STUB( + "QYArT1KuLXI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB( + "QYGnzpe1q-s", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("QYIZ6DSdSbU", _ZTv0_n32_N12Mp4Retriever8readFileEjPv) +STUB("QYK82jUjOMI", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V113RatingFactory7destroyEPNS3_6RatingE) +STUB("QYSES3tXUHM", uloc_getKeywordValue) +STUB( + "QYlL9rgasGs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEEC2ERKSA_) +STUB("QYla1Q8NXmk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEEmmEv) +STUB("QYmN7jpRtDY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEaSERKS7_) +STUB( + "QYoIjOKEl8I", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("QYrbXmYNKtc", Java_sun_awt_GnmUtils_bdjbgFree) +STUB( + "QYtwnl6f1Do", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEppEv) +STUB("QYu1OUlAGD0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEmmEi) +STUB("QYuJju6ucf8", _ZNK3WTF6String18simplifyWhiteSpaceEv) +STUB( + "QYwFL46iKSA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEED1Ev) +STUB("QYz4VP6wsuQ", WKWebsiteDataStoreDoesStatisticsDomainIDExistInDatabase) STUB("QZ3WWIhtNbE", sceKernelGetQafExpirationTimeNotbeforeForRcmgr) +STUB("QZAlNwncxQQ", udat_countAvailable_59) +STUB("QZCeqsF+qok", _ZN7WebCore8SVGNames13mask_typeAttrE) +STUB( + "QZDn+OxdrLc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "QZEB81IoyRo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE8copyFromERKS9_) +STUB( + "QZGyC3oDZJs", + _ZN3sce2Np9CppWebApi14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayer14setCustomData1EPKvm) +STUB( + "QZH1uS8cmpY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEEC1ERKSA_) +STUB( + "QZH9MeqkKHI", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEEiRNS2_10LibContextEPT_m) +STUB( + "QZJ4kR2fyqs", + _ZN3sce7Toolkit2NP7Ranking9Interface11getGameDataEPKNS1_18GetGameDataRequestEPNS1_9Utilities6FutureINS1_19GetGameDataResponseEEEb) +STUB("QZMGBB9-+20", + _ZN3sce2Np9CppWebApi7Matches2V133RequestTemporaryCompetitiveResult18unsetPlayerResultsEv) +STUB("QZP6I9ZZxpE", clock) +STUB( + "QZSH+MC7NMc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEEaSERKSA_) +STUB( + "QZU3FuAZN8A", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE5eraseENS2_8IteratorIS6_EERS9_) STUB("QZaLNZ58fUE", sceDebugDestroyPerfScratchDataArea) +STUB("QZb07KKwTU0", _ZNSt8ios_base4Init9_Init_cntE) +STUB("QZbGw27ZKRw", ucnv_getStarters) +STUB("QZdY0rHz0n0", _ZNK7WebCore10ScrollView15fixedLayoutSizeEv) +STUB("QZdZ5Su9d48", + _ZN7WebCore13StyledElement22setInlineStylePropertyENS_13CSSPropertyIDEdNS_11CSSUnitTypeEb) +STUB("QZeAwJfax5A", __tsan_testonly_shadow_stack_current_size) +STUB( + "QZf7F7rSt8A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEEC1ERKS9_) +STUB("QZg17ZNOwtc", _ZN7WebCore14SQLiteDatabase12lastErrorMsgEv) +STUB( + "QZgpk214ZzM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEC2EPNS2_10LibContextE) +STUB("QZiWQ5Iaqjc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEmmEv) +STUB("QZmUmyKx21g", rgctx_fetch_trampoline_mrgctx_46) +STUB("QZmZBPjOsSI", _ZN3sce7Toolkit2NP2V27Ranking10UsersRanks14MAX_NUM_BOARDSE) +STUB("QZmZZcAyXHI", + _ZN7CoreIPC10Connection22processIncomingMessageEN3WTF10PassOwnPtrINS_14MessageDecoderEEE) STUB("QZpXoz9wjbE", sceNpManagerIntClearUsedFlag) +STUB("QZrHxVWrlbQ", _ZN7WebCore12JSStyleSheet9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("QZtLzqKvmi8", _ZNK7WebCore21NetworkStorageSession29resourceLoadStatisticsEnabledEv) +STUB("QZuEIDVT42s", FcPatternReference) +STUB( + "QZuJ6+zFO34", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEEC2ERKSA_) +STUB( + "QZx9bh0Ih3Q", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) STUB("QZy+KmyqKPU", sceSharePlaySetMode) +STUB( + "Qa08I0D+wj4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEEC1EPS5_PFvS7_EPNS2_10LibContextE) +STUB("Qa3+Z8ANo+M", uspoof_clone_67) +STUB("Qa6HUR3h1k4", __fixunssfdi) +STUB( + "QaEsQUw0ZYM", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot9getoffsetEv) +STUB("QaGs1ek6hCE", YGNodeStyleSetHeight) +STUB("QaLXUjWq5uw", _ZN3sce4Json5ValueC2ERKSbIcSt11char_traitsIcENS0_8StlAllocIcEEE) +STUB("QaNOFgHQPko", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEptEv) +STUB("QaTrhMKUT18", nexttowardf) STUB("QaTuZTNPygQ", sceNpGriefReportReadReportItem) +STUB( + "QaTvlOUkQ1I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("QaauH67Wek4", ucnv_getFromUCallBack) +STUB( + "QabTWh5HGCo", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi44ParameterToPatchGameSessionsSearchAttributes12getsessionIdEv) STUB("QafxeZM3WK4", sceNpWebApi2PushEventDeletePushContext) +STUB( + "QaiAY7iEYYw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE21intrusive_ptr_sub_refEPS7_) +STUB("QalEczzSNqc", _Makewct) +STUB( + "QalGueWdr5s", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE8capacityEv) STUB("QasPTUPWVZE", sceHmdInternalAnotherScreenClose) +STUB( + "Qatok-HAxNs", + _ZN12video_parser13cVideoMetaVWG12_getMetadataENS_12VP_META_TYPEENS_9VP_LANG_eENS_15VP_SEARCH_OPT_eEPPNS_12VpMetadata_tE) +STUB( + "QaxFIkW6VX8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "QayUI5RkvbA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB( + "QaynXlxYhQ8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot11setsortModeENS5_8SortModeE) +STUB("Qazy8LmXTvw", ftell) +STUB("Qb7A-rE0Afc", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredUsersEED2Ev) +STUB( + "Qb7QAqTq9VQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("Qb86Y5QldaE", __atomic_fetch_add_1) +STUB( + "Qb8iKcAILXY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEEcvbEv) +STUB("Qb9iiPz6Y24", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEED1Ev) +STUB("QbCEPDhR9WU", _ZN3sce2Np9CppWebApi6Common13ParameterBaseC1Ev) +STUB("QbCzhZP8GRo", _ZN7WebCore9HTMLNames6bdoTagE) STUB("QbD+eENEwo8", scePngDecDelete) +STUB( + "QbH2-zM7fWI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEplEm) +STUB("QbKmf+2+cR0", _ZN15AbstractStorage14StorageManager11GetInstanceEv) +STUB( + "QbLJ+fHJONg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEC2Ev) +STUB( + "QbP+Qr9wdno", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody16setComparedValueERKl) +STUB("QbPQRS6SdrY", mono_g_hash_table_find) +STUB( + "QbRTbpTYaeQ", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V127ReputationPropertiesFactory7destroyEPNS3_20ReputationPropertiesE) +STUB("QbVEZKbFkYY", _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody14unsetSubmitterEv) +STUB( + "Qbb23DYos1c", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEneERKSA_) STUB("QbdkmhQQfIM", sceKernelGetCpuUsageProc2) +STUB("QbegXjA71IY", _ZN7WebCore4Page15updateRenderingEv) +STUB( + "QbmESu9kcQE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEED1Ev) +STUB( + "QbmqQULn7XE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEED1Ev) STUB("QbrU0cUghEM", sceJpegEncEncode) +STUB( + "Qbs43w-mbUo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC2ERSA_) +STUB("QbsJwXsd+YA", _ZN7WebCore15StringTruncator5widthERKN3WTF6StringERKNS_11FontCascadeE) +STUB( + "Qc0sD62e+V8", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEiRNS2_10LibContextEPT_m) +STUB( + "Qc1CIznhHKY", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "Qc4j2D7P2pM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE5emptyEv) +STUB( + "Qc5xBXQxxcI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEE7get_refEv) +STUB("Qc7JdXm7QLA", WKPageLoadAlternateHTMLStringWithUserData) STUB("Qc8kyzCZj+M", sceVisionManagerGetResultOfFindPad) +STUB( + "QcDhmaSpxAk", + _ZN3sce2Np9CppWebApi7Matches2V133RequestTeamMemberStatisticFactory7destroyEPNS3_26RequestTeamMemberStatisticE) +STUB( + "QcHBTWQf1Fo", + _ZN9Inspector14ConsoleMessageC2EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelEON3WTF6VectorINS5_12JSONLogValueELm0ENS5_15CrashOnOverflowELm16ENS5_10FastMallocEEEPNS1_14JSGlobalObjectEm) +STUB( + "QcIPtGbfIDg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEE11get_deleterEv) +STUB( + "QcImFaI26pw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEED1Ev) STUB("QcJ5pqrC-Q8", sceShellCoreUtilFormatHdd) +STUB("QcLrpGJk8Og", mono_aot_Sce_Vsh_SysfileUtilWrapperplt_end) +STUB("QcMC4x9rNsA", SSL_CTX_set_default_passwd_cb) +STUB("QcSwp3zeAWg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEE5resetEPS6_) +STUB("QcXiIoJS63M", _WPrintf.fbit) +STUB("QccCtGbkw34", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEEC2Ev) +STUB("QcdVbBxIJnk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEED2Ev) +STUB( + "QcdZFgNSs7U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("Qce-fO+SEwk", _ZN7WebCore8Document24createElementForBindingsERKN3WTF10AtomStringE) +STUB( + "QcijamyjTjU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE6resizeEj) +STUB( + "QcioeGqFEKM", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("Qcl-EK7z6OI", _ZN7WebCore9HTMLNames10nohrefAttrE) +STUB("QclxYY9R7Us", _ZN7WebCore17valueToByteStringERN3JSC9ExecStateENS0_7JSValueE) STUB("QcmHLO2n7mk", sceAgcDriverSuspendPointSubmit) +STUB( + "Qcq69vPNZ3U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE5beginEv) +STUB("QctMzHHZSfc", + _ZN3sce2Np9CppWebApi7Matches2V121ResponsePlayerResultsC1EPNS1_6Common10LibContextE) +STUB("QcteRwbsnV0", usleep) +STUB("QcyxKYyh9Ag", + _ZThn16_N9Inspector22InspectorDebuggerAgent16removeBreakpointERN3WTF6StringERKS2_) +STUB( + "QczaT3pGqI4", + _ZN3JSC8JSObject23putDirectNativeFunctionERNS_2VMEPNS_14JSGlobalObjectERKNS_12PropertyNameEjNS_14NativeFunctionENS_9IntrinsicEj) +STUB("Qd2AxiAf9TU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12BandwithInfoEED1Ev) +STUB( + "Qd5IO1Fh4mo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEEC2ERKSA_) +STUB("Qd6zUdRhrhs", _ZTIt) +STUB("Qd82hf7axI8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEED2Ev) +STUB( + "Qd8u-XqDpZw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEEC1ERSA_) +STUB( + "Qd9zGKgGd-A", + _ZN3sce2Np9CppWebApi7Matches2V135RequestTemporaryMatchResultsFactory7destroyEPNS3_28RequestTemporaryMatchResultsE) +STUB( + "QdCgzmcIP3U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEED1Ev) +STUB( + "QdDlfPJDeCM", + _ZN3sce2Np9CppWebApi14SessionManager2V130PostPlayerSessionsResponseBodyC2EPNS1_6Common10LibContextE) +STUB("QdE7Arjzxos", jn) +STUB("QdGSeOEgazg", uhash_iget_67) +STUB("QdJuRykblXA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEC1ERKS7_) +STUB("QdPT7uDTlo0", + _ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE5_InitERKSt8_Locinfo) +STUB("QdPk9cbJrOY", _ZTSPKl) +STUB("QdQANJENCeA", mono_aot_Sce_Vsh_MarlinDownloaderWrapperplt_end) +STUB("QdQSnR1KReU", _ZN3sce2Np9CppWebApi14ConnectAccount2V214PSNError_error16unsetReferenceIdEv) +STUB("QdRNoSm4iTc", mono_trampolines_init) +STUB( + "QdSnOK4Am1M", + _ZN7WebCore11DisplayList23FillRectWithRoundedHoleC2ERKNS_9FloatRectERKNS_16FloatRoundedRectERKNS_5ColorE) +STUB( + "QdU3cirVIdE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEED1Ev) +STUB( + "QdVF2oXHoN8", + _ZN3sce2Np9CppWebApi14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyC2EPNS1_6Common10LibContextE) +STUB("QdVNaMjGJXQ", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18SessionInformationEE10deallocateEPS3_m) +STUB("QdYNXcesqSo", _ZN7bmalloc15IsoHeapImplBase13isNowFreeableEPvm) +STUB("Qdc6BFn-x4I", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS7TusDataEED2Ev) +STUB( + "Qdf+mWEH8go", + _ZN3sce2Np9CppWebApi11UserProfile2V125GetPublicProfilesResponse11setProfilesERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_12BasicProfileEEEEE) +STUB("Qdi2LEjc9kc", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V115CompetitionTypeEEC2Ev) +STUB( + "QdjltHtjuQo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE3endEv) +STUB("Qdp1-2HijVI", _ZN7WebCore6JSNode15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "Qds+93clia4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEptEv) +STUB( + "QdvzOt02bTw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEC2EPS8_) +STUB("Qdysz7zezzU", _ZN3sce7Toolkit2NP2V28Commerce7Request25ConsumeServiceEntitlementD2Ev) +STUB( + "Qdz2RF08nGo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEC1Ev) +STUB( + "Qe25DRn6Au4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEC2EPNS2_10LibContextE) +STUB("Qe6j+GKxHPM", _ZN9Inspector21createScriptArgumentsEPN3JSC9ExecStateEj) +STUB( + "Qe7EfP5-JmY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEneERKS9_) +STUB("Qe7QZh1+Euc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEaSERS7_) +STUB("Qe9h7649MnQ", uloc_getDisplayKeywordValue_67) +STUB("QeB+bflf6s0", _ZN7WebCore4PathC2Ev) +STUB( + "QeB93J67B1E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "QeCJ5IHPzXA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("QeIO6lHJSX0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament7BracketEE3getEv) +STUB("QeNz-3rS7-A", _ZN7WebCore9HTMLNames19aria_dropeffectAttrE) +STUB( + "QeO7GQrfXnU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEppEv) +STUB("QePTj8Bkvts", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEmmEi) +STUB("QeQibJLMEhw", JVM_MonitorNotify) +STUB("QeWbPeL8+MY", _ZNSt9basic_iosIwSt11char_traitsIwEE4moveEOS2_) +STUB("QeY+b9kqhIc", mono_aot_Sce_Vsh_Accessor_Db_Notifyplt_end) STUB("QeaZORfh9GA", sceAjmInstanceGetSize) +STUB("Qec8236BDfI", rgctx_fetch_trampoline_mrgctx_119_p) +STUB( + "QeeZ7AZJlgQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13boolean8IsSetEv) +STUB( + "Qej6ODgcGxs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("QepwD4qOdkc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEC1ERS7_) +STUB("Qes3yAv5YkY", uset_spanUTF8_67) +STUB("Qet2dO4FNbM", uloc_getISO3Language) +STUB( + "QevXP+WyiPU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("QevnT7bvzm0", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11UserProfile10NpProfilesEE19setCustomReturnCodeEi) +STUB("QeywqWaV4EU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEmmEi) +STUB("Qf7JVe4YMQ8", _ZN7WebCore13GraphicsLayerD1Ev) +STUB("Qf91WH8Hta0", WKContextConfigurationCopyCookieStoragePath) +STUB("QfB2HoxkyXw", _ZN3sce3Xml3Dom8Document14createTextNodeEPKNS0_6StringE) +STUB("QfBKuqPXKZo", + _ZN7WebCore28InspectorFrontendClientLocal8Settings14deletePropertyERKN3WTF6StringE) +STUB("QfBibggI2M0", _ZN3PAL13SleepDisablerD0Ev) STUB("QfNXBrKZeI0", sceAudio3dReportRegisterHandler) +STUB( + "QfOirXd-myw", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEiRNS2_10LibContextEPT_m) +STUB("QfPuSqhub7o", _ZSt7_MP_AddPyy) +STUB( + "QfRPwnow68E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEE7add_refEv) +STUB("QfRYjyv9Ews", _ZN7WebCore15JSSVGSVGElement9toWrappedERN3JSC2VMENS1_7JSValueE) STUB("QfYasZZPvoQ", sceUserServiceSetUserGroupName) +STUB( + "Qfaa7GQwhE8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("QfbB4i5JCvk", _ZN4IPMI7SessionD1Ev) +STUB("QfcDJbA0V0E", _ZN7WebCore12SharedBufferD1Ev) +STUB( + "QfdBrsux0QQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE5beginEv) +STUB("QfgcM9i1GVI", _ZN7WebCore20ResourceHandleClientD1Ev) +STUB("QflGzVw8KlA", WKBundleNodeHandleSetHTMLInputElementAutoFilledAndViewable) +STUB( + "QflaKsu3Nes", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEE7add_refEv) +STUB( + "QfmjwkcKMHc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("Qfsmqs-bHeY", _ZN3sce2np9HttpTrans16AddRequestHeaderEPKcS3_) +STUB("QfwVO8iUY1I", _ZNK3sce2Np9CppWebApi14SessionManager2V112NonPsnLeader6toJsonERNS_4Json5ValueEb) +STUB( + "QfwvoJHnByE", + _ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_19PlayerSessionPlayerEEE) +STUB("QfxPI-N1Kd4", UCNV_FROM_U_CALLBACK_ESCAPE_67) +STUB( + "Qg-EgRtf2as", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("Qg-a0Y9KfXY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V115SearchAttributeEEppEv) +STUB( + "Qg-b-j8dTZY", + _ZN7WebCore7JSRangeC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_5RangeENS6_13DumbPtrTraitsIS8_EEEE) +STUB("Qg0OTWsKChk", delegate_virtual_invoke_18) +STUB( + "Qg1LpTw6C-o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "Qg4DeZLBqJw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("Qg50ik598bk", _ZN7bmalloc5Cache27reallocateSlowCaseNullCacheENS_8HeapKindEPvm) +STUB( + "Qg8lkP+v+e8", + _ZN3sce2Np9CppWebApi7Matches2V131UpdateMatchDetailRequestFactory7destroyEPNS3_24UpdateMatchDetailRequestE) +STUB( + "QgAx+JeCt30", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("QgBCeJN0fsA", _Z32SoundPlayer_MoveSurroundPanAngleifhd) +STUB( + "QgDQIKwkgh8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEC1Ev) +STUB( + "QgFpbd1z13k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEED2Ev) +STUB( + "QgJKv4YDwZM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEaSERKS7_) +STUB( + "QgNyrC5sOsM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEE3getEv) +STUB("QgYNuXSeipk", _ZN3sce7Toolkit2NP2V24Core18CustomResponseDataD1Ev) +STUB("QgdmkoZr7k4", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfoC2Ev) +STUB("QgiQ3iIV4Qs", _ZNK3JSC7JSValue16toObjectSlowCaseEPNS_9ExecStateEPNS_14JSGlobalObjectE) +STUB("QgmOCqm-cDA", _ZN12video_parser12cVpFileCache10initializeEPKcbi) +STUB( + "Qgn0Uhg+EJQ", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot9hasoffsetEv) +STUB("QgnaYvwDlPs", FT_List_Up) +STUB( + "QgsGTSdkgwQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE8capacityEv) STUB("QgsKEUfkqMA", sceKernelGetModuleInfo2) +STUB( + "QgyYllrnIDE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE8copyFromERKS9_) +STUB( + "QgzBW8g-JTw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEmmEi) +STUB("Qh1UAOFX6e8", __asan_report_load2) +STUB( + "Qh2LaYrhVck", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE6resizeEj) +STUB( + "Qh6WdMvbAKU", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSessionC1ERS5_) +STUB("QhA0vdyK3yU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEE3getEv) +STUB("QhCSvU20ErI", mono_reflection_get_custom_attrs_info) STUB("QhCbS4X9Rl8", sceAgcDcbSetMarker) +STUB("QhE5QNIuCrM", mono_aot_Sce_Vsh_SystemLoggerWrapperjit_code_end) +STUB( + "QhG5KUt3Bs4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEE7get_refEv) +STUB("QhORYaNkS+U", _Atomic_is_lock_free_2) +STUB( + "QhP+ynlYaeo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEEC1ERSA_) STUB("QhPDD513V0w", sceAgcDcbSetShRegisterDirectGetSize) +STUB("QhPk-dUzZ+E", mono_aot_System_Reactive_Interfacesjit_code_start) +STUB( + "QhUH-rDgIVg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEC2EPS8_) +STUB("QhUriMGHhGY", uprv_decContextStatusToString_67) +STUB("QhaSXpKs6zk", _ZN3sce2np13JsonDocParser10onEndArrayEjj) +STUB( + "QheHm+DWOJU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEC1EPNS2_10LibContextE) +STUB( + "Qhf6kz9mE-0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE3endEv) +STUB( + "Qhihnfy5GpY", + _ZN7WebCore16HTMLMediaElement25clearMediaCacheForOriginsERKN3WTF6StringERKNS1_7HashSetINS1_6RefPtrINS_14SecurityOriginENS1_13DumbPtrTraitsIS7_EEEENS1_11DefaultHashISA_EENS1_10HashTraitsISA_EEEE) STUB("QhjrPkRPUZQ", sceCameraAccGetData) +STUB( + "QhnJlvhxNgs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE8copyFromERKS9_) STUB("QhnyReteJ1M", sceGnmDrawInitDefaultHardwareState175) +STUB( + "Qhqfvwgs3GE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEC1Ev) +STUB("Qhuz6yCN910", _ZN7WebCore8JSDOMURL6s_infoE) STUB("Qhv5ARAoOEc", sceKernelRemoveExceptionHandler) +STUB( + "Qhx9Wmm8HHk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEEC2ERKSA_) +STUB( + "Qhyv2iXvYzs", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V318PsnWebErrorFactory6createEPNS1_6Common10LibContextEiPNS5_12IntrusivePtrINS3_11PsnWebErrorEEE) +STUB( + "Qi1FyMAE7MY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE8pushBackERKS8_) +STUB("Qi5fpNt5+T0", _ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1Em) +STUB( + "QiAgTlMJB1E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEEC1ERSA_) +STUB( + "QiD1JwMHWok", + _ZN3sce7Toolkit2NP2V26Trophy23displayTrophyListDialogERKNS3_7Request23DisplayTrophyListDialogEPNS2_4Core8ResponseINS8_5EmptyEEE) STUB("QiHftM+R3s8", sceNpSnsDailymotionDialogUpdateStatus) STUB("QiJFZRyM1dE", scePfsGetUncompressedSize) +STUB( + "QiMwrjLTm7A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEdeEv) +STUB("QiR-MMGpwEo", unum_format_67) +STUB( + "QiRIYSIb-tE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEE11get_deleterEv) +STUB( + "QiXXLo24qv0", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB( + "QieXHbgd05c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEC1EPNS2_10LibContextE) STUB("Qignjmfgha0", sceRudpGetRemoteInfo) +STUB("QinR1G1+uq8", _ZN7WebCore9HTMLNames11progressTagE) STUB("QipjH+VV2CU", sceKernelDebugGetPrivateLogText) +STUB( + "QiwbShmPQYc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEED2Ev) +STUB("QixixIG6YuQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEdeEv) +STUB("QiyMxujuZ5s", ucol_getFunctionalEquivalent_67) +STUB("QiyjwGiIndQ", _ZN7WebCore4Page16setDefersLoadingEb) +STUB( + "Qj0qBqsc3Gw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("Qj2wX5hFDq8", isobmf_decoder_query) +STUB("Qj3L4FECHVA", _ZN3sce7Toolkit2NP15NpIdListRequestC1Ev) +STUB("Qj6jvG7elwY", _ZNK3WTF13StringBuilder9canShrinkEv) +STUB( + "QjAVWeN-QSw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEED1Ev) +STUB("QjBI31SRm6g", _ZN3sce7Toolkit2NP2V24Core7Request16ThreadProperties16AFFINITY_DEFAULTE) STUB("QjGCaJbRib4", sceConvertKeycodeGetCharacter) +STUB( + "QjGfyW53SRc", + _ZN9Inspector21PageBackendDispatcher15overrideSettingElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("QjIzWh5Dckc", _ZNK7WebCore3URL11isLocalFileEv) +STUB("QjLVJ3K2620", _ZNK3sce2Np9CppWebApi13InGameCatalog2V55Error11reasonIsSetEv) STUB("QjNUYQbGoHA", sceNpUInt64ToStr) +STUB( + "QjRw3kreoME", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE4sizeEv) +STUB("QjSsikawHMQ", _ZN3sce7Toolkit2NP2V211SharedMedia6Videos8deepCopyERKS4_) +STUB( + "QjTd1D0vGg4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEC2EPNS2_10LibContextE) +STUB("QjWIY17d1wo", uloc_getName_67) +STUB( + "QjWzumLPKDo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEEaSERKSA_) +STUB("QjZ686Rwkkw", _ZN3sce7Toolkit2NP2V28Commerce19ServiceEntitlementsC1ERKS4_) +STUB("QjdENNJMdWg", _ZNK3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBody13locationIsSetEv) +STUB("Qjdcu2gi4YM", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEEdeEv) +STUB( + "Qjoa0UkeHyU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE5emptyEv) +STUB("QjqsTDTTSis", _ZN7WebCore24DeprecatedGlobalSettings32setResourceLoadStatisticsEnabledEb) +STUB("QjtYrbd1f2s", mono_aot_Sce_Vsh_Webbrowser_XutilWrapperunbox_trampolines_end) +STUB("QjuRBOGeWLA", uprv_getDefaultLocaleID) STUB("QjwkT2Ycmew", scePadReadExt) +STUB("Qjwn1h+e6hw", WKPreferencesGetPunchOutWhiteBackgroundsInDarkMode) STUB("Qk18Owuq1Yg", sceMbusDumpProcMediaInfo) +STUB("Qk34WD+gFes", _ZN12video_parser16cVideoContentMp415getMetaInstanceEPPNS_10iVideoMetaE) +STUB( + "Qk51htTAtDc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE21intrusive_ptr_add_refEPS9_) STUB("Qk5ehOXWs4g", sceNpManagerIntParseJsonUserInfo) STUB("Qk6kEJ0RJlM", sceCamera2SetAttribute) +STUB( + "QkKeZCHCFBg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEC1EPNS2_10LibContextE) +STUB( + "QkRggJfHvog", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEC1EPS8_) STUB("QkRl7pART9M", sceVrTrackerInit) +STUB( + "QkWQPSR7dN4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("QkbX76awxwI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEEC1Ev) +STUB("QkhJo69RvO0", umsg_clone_67) +STUB("Qkl8-jYh4wo", g_ProGarlicHeapSize) +STUB("QklPP5q5JUY", backtrace) +STUB("Qkr5eAKn9zU", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12unsetString8Ev) +STUB( + "QkvJCCuVzYA", + _ZN3sce2Np9CppWebApi14IdentityMapper2V340PsnWebError_error_missingElementsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_33PsnWebError_error_missingElementsEEE) +STUB( + "QkyZhNF3W+o", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEneERKS9_) +STUB( + "QkymcocNbng", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB( + "Ql2SpziJmpI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("Ql2khPCjMMw", _ZN14OpaqueJSString6createEON3WTF6StringE) +STUB( + "Ql42Qs-344M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "Ql6l0oZX448", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEEC1ERKSA_) +STUB( + "Ql9zg89z+vg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE13getLibContextEv) +STUB( + "QlBTRLUZJXI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEC2ERKS7_) +STUB( + "QlBiiX5EWd8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEE11get_deleterEv) +STUB("QlBsNs+u6MU", _ZN3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator12unsetNatTypeEv) +STUB("QlFo-lidi-Q", _ZN7WebCore22EmptyFrameLoaderClient25setMainFrameDocumentReadyEb) +STUB( + "QlG4qvLqd1M", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119PlayStylePropertiesC2EPNS1_6Common10LibContextE) +STUB("QlJFn5By93U", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEEplEm) +STUB("QlJYE5aXxp0", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEEppEi) +STUB("QlLykQkbc0M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEdeEv) +STUB("QlM4v5qaKxc", mono_btls_x509_chain_new) +STUB("QlNn09fMG7w", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15CategoryInfoSubEEC1Ev) +STUB("QlP4t2SGZ4I", _ZN3sce2np10EventQueue10TryDequeueEPvm) STUB("QlRJWya+dtE", sceNetConfigWlanApStart) +STUB( + "QlZtE7oirAw", + _ZN7WebCore20UserGestureIndicatorC2EN3WTF6RefPtrINS_16UserGestureTokenENS1_13DumbPtrTraitsIS3_EEEE) +STUB("QlaBcxSFPZI", _ZN3sce2np9EventFlag7DestroyEv) +STUB("QlcJbyd6jxM", _Stodx) +STUB("Qlcy3AKepzU", _ZNK3WTF3URL38stringWithoutQueryOrFragmentIdentifierEv) +STUB( + "Qlg-hW0JytY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEE7add_refEv) +STUB( + "QljxbCpMk6M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "QloyfdtFwRA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEC1Ev) +STUB( + "QlsctR9vjHs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE10setContextEPNS2_10LibContextE) STUB("QltDK6wWqF0", sceNetConfigEtherSetLinkMode) +STUB( + "QltmQm8o97U", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEiRNS2_10LibContextEPT_m) +STUB("Qltt2qSBU1I", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEptEv) +STUB("QlulDC0wf-Y", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEEptEv) +STUB("Qly1iycov-E", JSWeakCreate) +STUB( + "Qm+ZRA94F1o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEaSERKS9_) +STUB( + "Qm33epZnFIk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "Qm4XlaQEkQk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEE3getEv) +STUB( + "Qm9xIIMZOnc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEEcvbEv) +STUB( + "QmCIHYzVk9o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEC2EPS6_PNS2_10LibContextE) STUB("QmDEFikd3VA", sceNpGetNavSdkVersion) +STUB("QmDUpqqIXAU", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEEC2Ev) +STUB("QmGv7hQbpfo", _ZN7WebCore28InspectorFrontendClientLocalD1Ev) +STUB("QmHTw0yTTwE", _ZNK7WebCore11HistoryItem6targetEv) +STUB( + "QmJtGtZ2Z+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEE11get_deleterEv) +STUB("QmKVnjK0Svk", YGNodeStyleSetJustifyContent) +STUB("QmPQDONMHdo", _ZN3sce7Toolkit2NP2V210Tournament18OneVsOneRankResultaSERKS4_) STUB("QmQYwQ7OTJI", sceGameLiveStreamingSetInvitationSessionId) +STUB( + "QmRT5Qtbh7E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEC2EPS8_) +STUB("QmSKE-bAvvs", unw_backtrace) STUB("QmfvaYpsOcI", sceAgcBranchPatchSetElseTarget) +STUB("Qmgc0XACzRg", FT_Stream_ExitFrame) +STUB("QmpZNJfjuNE", _ZNK7WebCore8FileList4itemEj) +STUB("QmppvsMTOPw", _ZN3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator11setPlatformEPKc) +STUB( + "QmseSlPw+tg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEdeEv) +STUB("QmzJX74yf3g", _ZN3sce7Toolkit2NP2V28Commerce10CategoriesC1Ev) +STUB("Qn1pHJsQ-8Y", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead16unsetCustomData1Ev) +STUB("Qn2uocvTkqU", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V117ResponseMatchTypeEEmmEv) STUB("Qn5JIRI6ZNU", sceLncUtilRegisterCdlgSharedMemoryName) +STUB("Qn83xIhFHK8", _ZN3sce2Np9CppWebApi7Matches2V111AddedPlayer9setTeamIdEPKc) +STUB( + "QnBTr3NlNRo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEE7get_refEv) +STUB("QnBZjF9n3Zw", uprv_fmax_67) +STUB("QnEIB82bFK0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEcvbEv) +STUB( + "QnG7AKNnigk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEdeEv) +STUB("QnHV-MinFak", mono_aot_Sce_Vsh_Messages_DbAccessLibplt_end) +STUB( + "QnHXfPQ5ABw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEneERKS9_) STUB("QnO8zMmKcGE", sceNpManagerIntGetOnlineIdByAccountId) STUB("QnVUfOkyRDw", sceFsCheckSingleUser) +STUB( + "QnXMK8xOqYg", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "QnXc4uUK9f4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEppEi) +STUB( + "QnZH0fmU0PQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("Qnekxl2yDpg", _ZN3sce2Np9CppWebApi6Common6VectorImED2Ev) +STUB("QnfSjWrFiVQ", _ZN7WebCore11ContentType15codecsParameterEv) +STUB("QngFswyN40A", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEEaSERKS7_) +STUB("Qni0CoOBDkU", _ZN3PAL12CryptoDigestD2Ev) +STUB("QnocxaQBZOM", _ZN7WebCore13GraphicsLayer16resumeAnimationsEv) +STUB("Qnrl8KUtVGs", _ZNK7WebCore15AffineTransform6xScaleEv) STUB("Qnu2x6d29lo", sceFsInitUmountDownloadDataOpt) +STUB( + "Qnx3M8fc8nk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEC1EPS6_PNS2_10LibContextE) +STUB("QnzT-RV-x4U", bdjbg_display) +STUB( + "QnzmsWuLA8w", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicket26setsubmitTicketRequestBodyENS1_6Common12IntrusivePtrINS3_23SubmitTicketRequestBodyEEE) +STUB("Qo5w7diEjPM", _ZN3JSC7Symbols14matchAllSymbolE) +STUB("Qo61yIzZCes", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V113SubtaskStatusEEppEi) +STUB("Qo9NUXpDUs8", mono_stringify_assembly_name) STUB("Qo9qR7v5zO4", sceNpUniversalDataSystemEventPropertyArraySetUInt64) +STUB("QoBYcBsP0gs", _ZN7WebCore11DisplayList23FillRectWithRoundedHoleD2Ev) +STUB("QoCqlmluEX0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEEptEv) +STUB( + "QoHiXTAnJgQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("QoItjQ1VB1E", WKPageSetMediaCaptureEnabled) +STUB( + "QoKCzAlihtw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) STUB("QoMN8tdi8K0", sceDebugReadProcessMemory) +STUB("QoPxBovZVdU", mono_aot_Sce_Vsh_Gls_GlsSharedMediaViewmethod_addresses) +STUB("QoZ-IQbyN3Q", WKPreferencesGetHighlightAPIEnabled) +STUB("Qoo175Ig+-k", _ZSt21_sceLibcClassicLocale) +STUB("QopdnxJ22Y0", rgctx_fetch_trampoline_rgctx_115_p) +STUB("QosagZvWvRk", utf8_back1SafeBody) +STUB( + "QossXdwWltI", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERl) +STUB( + "QozXCF+pLWU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEEptEv) +STUB("QozaBxKmsl8", _ZN3sce2Np9CppWebApi7Matches2V120RequestTeamStatistic10unsetStatsEv) +STUB( + "Qp8gehFlIWo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEptEv) +STUB("QpFhGrmIqhE", _ZN9Inspector26DatabaseFrontendDispatcherC2ERNS_14FrontendRouterE) +STUB( + "QpH0R-AxsmI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB( + "QpHZj6UDWAo", + _ZN3sce2Np9CppWebApi14SessionManager2V123FromNonPsnMemberFactory6createEPNS1_6Common10LibContextEPKcS9_PNS5_12IntrusivePtrINS3_16FromNonPsnMemberEEE) +STUB( + "QpIn4C0PsW0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEED1Ev) +STUB("QpLg0Rw236s", rgctx_fetch_trampoline_rgctx_69_p) +STUB("QpLyVEq8xcU", _ZN3sce7Toolkit2NP2V23TUS15TusDataStatusesC1ERKS4_) +STUB( + "QpMHXheAO+I", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEC2EPS8_) +STUB( + "QpPQi6zmpTc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("QpQN5xlV+7w", _ZN3WTF14FileSystemImpl18unlockAndCloseFileEi) +STUB( + "QpTSkLfXao4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEEdeEv) +STUB("QpUt5nA1qW8", g_list_sort) +STUB( + "QpXLPv7kbwE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEC2EPNS2_10LibContextE) +STUB( + "QpXrlLWSrO0", + _ZN3sce2Np9CppWebApi14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyC1EPNS1_6Common10LibContextE) +STUB("QpaYYDZ84Gk", _ZN7WebCore10StorageMap10removeItemERKN3WTF6StringERS2_) +STUB("Qpai5OJqAcw", + _ZN3JSC7JSValue14putToPrimitiveEPNS_9ExecStateENS_12PropertyNameES0_RNS_15PutPropertySlotE) +STUB("QpboSQGoQEQ", mono_bitset_clone) +STUB( + "Qpbp-NfAyDg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEC2EPS8_) +STUB("QpeSMH-lx+s", _ZN7WebCore11DisplayList8FillPathD1Ev) +STUB("QpeaElnNU7k", _ZNK7WebCore18TextureMapperLayer18contentsAreVisibleEv) +STUB( + "QpmMVMiXBwg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEC1EPS6_PNS2_10LibContextE) +STUB( + "Qpuv8MTmuaE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "Qpy625t07sE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEEC2ERKSA_) +STUB( + "Qq0PttvPJfM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB("Qq0o-+hobOI", SSL_ASYNC_sendMessagePending) +STUB( + "Qq1jf8PVzJ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE7reserveEi) +STUB("Qq1lpVgGOuU", _ZN7CoreIPC14MessageEncoder16setIsSyncMessageEb) +STUB("Qq2IvpqyXG0", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V18RelationEEppEv) +STUB("Qq52iAV5GtU", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetInteger8Ev) STUB("Qq7QVI4+x7I", sceValidationGpuDisableDiagnostics) STUB("Qq8SfuJJJqE", sceHttpParseStatusLine) +STUB("QqBWUNEfIAo", _ZNSs6appendEmc) +STUB("QqWHJKwnsoE", _Atfuns) STUB("QqZ1A3vukFM", sceUserServiceGetGlsAnonymousUserId) +STUB( + "QqbIoOzBkoc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEC1ERKS7_) +STUB( + "QqdNJOwI2ro", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEEaSERKSA_) +STUB("QqeaLJnRTGc", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEEppEv) STUB("QqgTQQdzEMY", sceAudio3dPortGetBufferLevel) +STUB("Qqj4q9TpYfA", GCC_except_table273) +STUB("QqmhNIwiNJg", __asan_current_error_report) +STUB( + "Qqmr256II1Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEC1EPNS2_10LibContextE) STUB("QqoW686wrAM", sceNpManagerStartVsh) +STUB("QqpfWlTG5ZQ", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error23setValidationConstraintEPKc) +STUB("QqsjNQBvgq0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia6VideosEE5resetEv) +STUB("Qqvr9AsaYhk", mono_aot_System_ServiceModeljit_code_start) STUB("QqxBetgJH+g", sceKernelReadv) +STUB("Qr-oWwgS12k", _ZN3JSC14setNeverInlineEPK15OpaqueJSContextPK13OpaqueJSValue) +STUB("Qr1QQ5k4S-M", uloc_addLikelySubtags_67) +STUB("Qr1agrvN7Qw", _ZNK7WebCore8Document42shouldBypassMainWorldContentSecurityPolicyEv) +STUB("Qr4mig14Vig", _ULx86_64_local_addr_space_init) +STUB( + "QrCZ-rZOl1g", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEeqERKS9_) +STUB( + "QrDEj4KO7kk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEE5resetEPS9_) +STUB( + "QrHS8a7KF6g", + _ZN3sce2Np9CppWebApi14IdentityMapper2V318PsnWebErrorFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_17PsnWebError_errorEEEPNS8_INS3_11PsnWebErrorEEE) +STUB( + "QrLh3iWyUYw", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsersC1ERS5_) +STUB("QrRGh27dwGo", _ZN3JSC8JSObject19calculatedClassNameEPS0_) +STUB( + "QrSLJXuDEqc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB("QrX8HQgwS84", _ZNK7WebCore9DOMWindow5frameEv) +STUB("QrZZdJ8XsX0", fputs) STUB("QrgCXx1MY1w", sceNpUniversalDataSystemIntRecordArraySetInt64) STUB("Qrj4c+61z4A", sceAgcSetShRegIndirectPatchSetAddress) +STUB("QrkSDLq+AtM", mono_aot_System_ComponentModel_DataAnnotationsmethod_addresses) +STUB("QrnsxgT0v0A", _ZNSt9_Auto_cndD1Ev) +STUB("Qrt9Cn1bpvA", _ZN3sce7Toolkit2NP2V29Messaging25GameDataMessageAttachmentD1Ev) +STUB( + "QruVgkKV1zo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEC2EPS8_) +STUB("QrulaA1mWGk", mono_domain_set_internal) STUB("QrzsrnqGy9g", sceMatAlloc) STUB("Qs0wWulgl7U", sceMouseInit) +STUB( + "Qs0zpdYuUpA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("Qs1P8UBKBK4", + _ZN7WebCore27startObservingCookieChangesERKNS_21NetworkStorageSessionEON3WTF8FunctionIFvvEEE) STUB("Qs1xtplKo0U", sceAmprAprCommandBufferDestructor) +STUB( + "Qs4uK3cVbQI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("QsAqlMibERc", rgctx_fetch_trampoline_rgctx_28) +STUB( + "QsCKC86-mx0", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V129UploadDataResponseBodyFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_22UploadDataResponseBodyEEE) +STUB( + "QsJHf+DKsgc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEED2Ev) STUB("QsLhZ+8WvSM", sceLncUtilReleaseCpuBudgetOfInGameStore) +STUB( + "QsM5kB08sFg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEC2EPS6_PNS2_10LibContextE) +STUB("QsMOCBGAXkw", + _ZN3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectatorC1EPNS1_6Common10LibContextE) +STUB("QsQXic2xPs4", _ZN7WebCore10JSDocument14finishCreationERN3JSC2VME) +STUB("QsSS-qvdZYA", _ZN7WebCore14MicrotaskQueue26performMicrotaskCheckpointEv) +STUB( + "QsU8dz9UQ-I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEE5resetEPS6_) +STUB("QsZt9gE5UxI", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead20unsetNonPsnSupportedEv) +STUB("QseaYxKYBdo", _ZN9Inspector8Protocol8Timeline13TimelineEvent8ChildrenE) +STUB( + "QshJ44LIxAk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEED2Ev) +STUB("QslA6pR7Dzg", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_18SessionInformationEEC2Ev) +STUB("QslKfV15MYY", _ZN7WebCore16convertToIntegerItEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB( + "Qsm4lc7Z-OU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEEaSERSA_) +STUB( + "Qsw5iOv5DiE", + _ZN7WebCore26propagateExceptionSlowPathERN3JSC14JSGlobalObjectERNS0_10ThrowScopeEONS_9ExceptionE) +STUB( + "QswoQp51Emc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEC1EPS8_) +STUB("Qsxbb+aty0U", __getcwd) +STUB( + "Qt1CHouS2HI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "Qt1VnMWSvlc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEEC2ERSA_) +STUB("Qt258HCMr6Y", mono_aot_Sce_Vsh_SQLiteAuxjit_code_start) +STUB("Qt5dRC9AsTY", uhash_put_67) +STUB( + "Qt7M8YLojMo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEE7add_refEv) +STUB("Qt9boXdmgvY", _ZNK3JSC8Debugger14reasonForPauseEv) +STUB("QtCPGohNzqI", _ZN3WTF22CrossThreadTaskHandlerC2EPKcNS0_25AutodrainedPoolForRunLoopE) +STUB( + "QtCskFNGcsA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEEC2ERSA_) +STUB("QtDocSK4On4", _ZN7WebCore9HTMLNames13precisionAttrE) +STUB("QtEl0Z5ogAE", _ZN3JSC22optimizeNextInvocationENS_7JSValueE) +STUB("QtHQhOyFNU4", mono_exception_from_name_domain) +STUB( + "QtKvWFVcKcI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEC1EPS8_) STUB("QtLhuYZf9jg", sceKernelGetBackupRestoreMode) +STUB( + "QtPWv+VhvUk", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountId9terminateEv) +STUB( + "QtSlVGV5DTo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("QtZuDpfJXlU", _ZN3sce7Toolkit2NP2V28Presence8Presence8deepCopyERKS4_) STUB("QtfJhsE1x-M", sceSystemServiceGetAppCategoryType) +STUB("QtfzmrF+Gpc", xmlFreeParserCtxt) +STUB( + "QtkAzdiUeKA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEC2EPS9_) +STUB("Qto35wAZm9M", uprv_decNumberFMA_67) +STUB("QtpKcwqAQgo", _ZN3sce7Toolkit2NP2V212ActivityFeed15PlayedWithStory19DESCRIPTION_MAX_LENE) +STUB("Qtqsbmgt1zc", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIlED1Ev) +STUB( + "QtraxrVaJyA", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUserC1ERS5_) +STUB( + "QtrdO4IOYGw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "QtwazfnTAhU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("Qu0IHkUM-ek", _ZN3JSC8SubspaceD1Ev) +STUB("Qu17+-JjbwI", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15PlayedWithStoryEEC1ERKS4_) +STUB( + "Qu48aS2ky8U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEC2ERS7_) +STUB("Qu4OtBMIDpU", _ZNK7WebCore7Element12hasAttributeERKN3WTF10AtomStringE) +STUB( + "Qu4cjEyfp6s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEE6assignEPS6_PFvS8_EPNS2_10LibContextE) STUB("QuAWXdMHi88", sceAudioOut2LoTerminate) STUB("QuApZnMo9MM", sceAppContentSmallSharedDataMount) +STUB( + "QuB+5FMB-Xs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEC1EPKS8_) +STUB( + "QuBkvMhWM4s", + _ZN9Inspector14InjectedScript8evaluateERN3WTF6StringERKS2_S5_bbbbRNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsIS9_EEEERNS1_8OptionalIbEERNSE_IiEE) +STUB("QuF2rZGE-v8", vwprintf) +STUB( + "QuFo42+F9+o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEE11release_refEv) +STUB("QuI09j4a8-k", SSL_get_ex_data) +STUB("QuJYZ2KVGGQ", shm_open) +STUB( + "QuOTkwGLd7g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEED2Ev) STUB("QuOaoOcSOw0", scePadGetVersionInfo) +STUB( + "QuTVAYkdq0M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEC1EPNS2_10LibContextE) +STUB("QuZkgn3rjsg", _ZN3JSC16throwSyntaxErrorEPNS_14JSGlobalObjectERNS_10ThrowScopeERKN3WTF6StringE) STUB("QuZzFJD5Hrw", sceLibcPafMspaceMalloc) +STUB( + "QuclJT9Iapg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEE3getEv) +STUB("QufGZLVNl4U", _ZN3WTF20fastMallocStatisticsEv) +STUB( + "QugSjQtpkMY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEC2EPKS8_) +STUB("QuhXPuuafi0", _ZN3sce3Xml10SimpleDataC2Ev) +STUB("QunKyBzEeEg", mono_aot_Sce_PlayStation_HighLevel_UI2plt) +STUB("Qure-Bsk2fc", + _ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody18unsetMaxScoreLimitEv) +STUB("Qv+UvXhcDjE", _ZN7WebCore16convertToIntegerIaEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB( + "Qv+hFaUBkYI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE10setContextEPNS2_10LibContextE) +STUB("Qv2ZEBCYPaA", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEED2Ev) +STUB("Qv917g7goow", WKViewWillEnterFullScreen) +STUB( + "QvBShdnVG7k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEaSERKS9_) +STUB("QvDKJCLm2T0", _ZN3sce7Toolkit2NP2V23TUS16FriendsVariablesC2Ev) +STUB( + "QvEHUL-6Ock", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("QvEnQe-DZ5U", mono_aot_Sce_Vsh_Orbis_CdlgServerNpCommercejit_code_start) +STUB( + "QvGLVKaHnGQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE5emptyEv) +STUB( + "QvI00uUPQqE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEE7add_refEv) +STUB( + "QvMxcXXWjN4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEED2Ev) +STUB( + "QvTH-3qbgks", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEE11release_refEv) STUB("QvUYLdPhylQ", sceLncUtilReleaseCpuBudgetOfExtraAudioDevices) +STUB("QvWOlLyuQ2o", _ZTIPDn) STUB("QvXbiLqpn6c", sceSlimglClientStartIPC) +STUB( + "QvdMLAFijq8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEEdeEv) +STUB("QvfnqBjT-9w", _ZN3JSC12JSLockHolderC1EPNS_9ExecStateE) +STUB("QviDmlafc6I", _ZN9Inspector32ScriptProfilerFrontendDispatchernwEm) +STUB("QvmZaII5dNk", uset_openPattern_67) +STUB( + "QvogJmtKCXk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE8copyFromERKS9_) +STUB("QvqOkNK5ThU", _ZN3sce2np12NpHttpClientC1EP16SceNpAllocatorEx) +STUB("QvqxroOsOIo", __ubsan_handle_add_overflow) STUB("QvsZxomvUHs", sceKernelNanosleep) +STUB( + "QvshHO8TPdw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEppEv) +STUB( + "Qw+JmWJP6Uo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEptEv) +STUB( + "Qw4axO4PpxE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEED2Ev) +STUB("Qw5CVIRhDyE", _ZN7WebCore12JSAudioTrack9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "Qw7WOLZLO1E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("Qw7q+AoxXZ4", GCC_except_table406) +STUB("Qw8tnUT83Mc", ucnv_getDefaultName_67) +STUB( + "QwCkdZ5gzLs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEEC2EPS6_PFvS8_EPNS2_10LibContextE) STUB("QwGtVR91vl8", sceRegMgrPrivateStorageStart) +STUB("QwH-vJN8U7E", _ZN3sce2Np9CppWebApi6Common6String21intrusive_ptr_add_refEPS3_) +STUB( + "QwL73y7++C8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEaSERKS9_) +STUB("QwO4sr6XzSY", _ZThn16_N3sce2np10MemoryFile5WriteEPNS0_6HandleEPKvmPm) STUB("QwOO7vegnV8", sceSaveDataGetSaveDataMemory2) +STUB( + "QwU-90EKHlQ", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser8haslimitEv) +STUB( + "QwUQ24+UAG0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE5beginEv) +STUB("QwaoDNOrBJ8", _ZN3sce7Toolkit2NP2V26Friend12Notification15BlocklistUpdateD1Ev) +STUB("QwbCXdumE84", curl_url) +STUB( + "Qwe1b+xjZMY", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("Qwf3hUUwZic", + _ZNK3sce2Np9CppWebApi14SessionManager2V116FromNonPsnMember6toJsonERNS_4Json5ValueEb) +STUB( + "Qwh66abKHJM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEED2Ev) +STUB( + "QwkSXslvXOs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEC1EPS8_) +STUB( + "Qwkk3ewAdnY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "QwtlSiJCuuQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEdeEv) +STUB( + "QwwfhtPOTWA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V135AddAndGetVariableRequestBodyFactory6createEPNS1_6Common10LibContextElPNS5_12IntrusivePtrINS3_28AddAndGetVariableRequestBodyEEE) +STUB( + "Qx1+MOcjfxg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEC1EPS6_PFvS8_EPNS2_10LibContextE) STUB("Qx7SkcgAzok", sceHmd2ReprojectionEnableMirroring) +STUB("Qx9IEu2LWGw", mono_aot_I18N_Westunbox_trampoline_addresses) +STUB( + "QxB6IX2hOYg", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE18getResponseHeadersERSB_) STUB("QxBJF-G2v5k", sceHmd2ReprojectionSetParamWithBuffer) +STUB("QxC5oRcbXss", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEC2Ev) +STUB( + "QxDr12r-rOE", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetrics16getNumberOfTimesEv) +STUB("QxEcjnqPYyM", + _ZN12video_parser18cProfileCheckerMp424isPlayableVideoHMMPMpeg4ERKNS_13VpMediaInfo_tE) +STUB( + "QxJ+4QqUT1s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("QxOnOsL+H5M", jpeg_abort_decompress) +STUB( + "QxQ7j5N3quE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEaSERKS7_) +STUB("QxVVYhP-mvg", _ZN3sce4Json5Value3setEl) +STUB( + "Qxa9SH9no1s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEEC1Ev) +STUB("QxaNoUYvdls", _ZN7WebCore16VisibleSelectionC2ERKNS_11SimpleRangeENS_9EAffinityEb) +STUB("QxatxkNYNls", + _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest17setExpirationTimeERKi) +STUB("Qxf9w6r2Lkg", _ZNK7WebCore10RenderText16firstRunLocationEv) STUB("QxhJs6zHUmU", sceHmdInternalCrashReportReadData) +STUB( + "QxiP6-UdmP4", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi44ParameterToPatchGameSessionsSearchAttributes13isInitializedEv) +STUB("QxjfcfBhEdc", _ZN3sce4Json5Value12referBooleanEv) +STUB("QxlDh1U5AI8", searchProtocolInfoListByProtocolNumber) +STUB("QxmSHBCuKTk", strtoul) +STUB( + "QxnFVuOuYqw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("QxqK-IdpumU", _Getpmbstate) +STUB( + "QxqaJXGqd7o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEC1EPS6_PNS2_10LibContextE) +STUB("QxtL3miUkVQ", _ZNK3sce2Np9CppWebApi11UserProfile2V16Avatar7getSizeEv) +STUB( + "QxyQJFjPo5A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEED2Ev) +STUB("QxzBHDWu-WM", + _ZN7WebCore12SettingsBase20setFantasyFontFamilyERKN3WTF12AtomicStringE11UScriptCode) +STUB("Qy-45Cj2ZOI", _Stoxflt.digits) +STUB( + "Qy11AE+x8jI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE4sizeEv) +STUB( + "Qy6ETWncdOg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEED2Ev) +STUB("QyAWkI0ffLQ", WKPageGetPaginationBehavesLikeColumns) +STUB("QyLuN1Mhk6Q", _ZN3JSC2VM17addImpurePropertyEPN3WTF17UniquedStringImplE) +STUB( + "QyQff1IhKe0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEE5resetEPS6_) +STUB( + "QyRXGfOIsCI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEE11release_refEv) +STUB("QyVMAhBAwrw", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku16isPlusPriceIsSetEv) +STUB("QyWWLY71cpQ", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEEixEm) +STUB( + "Qycd6F5QIL0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEneERKS9_) STUB("Qyek420uZmM", sceNpTusGetMultiSlotDataStatusAsync) STUB("QygCNNmbGss", sceHttp2ReadData) +STUB("QyhRhNGBQU4", _ZN3sce7Toolkit2NP9Utilities6FutureI19SceNpTrophyGameDataED1Ev) +STUB( + "QynGbjQ5mNY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE21intrusive_ptr_add_refEPS9_) +STUB("QyqgEUE95ns", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_33ActivityFeedSharedScreenshotStoryEEC2ERKS4_) STUB("QyrxcdBrb0M", sceKernelGetKqueueFromEqueue) +STUB("QyuHptNshis", WKIconDatabaseGetTypeID) +STUB( + "QyvFZyEEJh0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEC1ERKS7_) +STUB("QyvqJWoYgL0", _ZN7WebCore9GLContextnwEm10NotNullTagPv) +STUB("QyxBxdNtkl8", mono_class_describe_statics) +STUB( + "Qyz6dc5SW8E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE5beginEv) STUB("Qyz8VbxnaII", sceAmprAmmCommandBufferMultiMapWithGpuMaskId) +STUB("Qz6OvvsSneE", ures_getLocaleInternal) +STUB("Qz8l-upNOXM", _Z16WTFCrashWithInfoiPKcS0_im) STUB("QzB4O+bJQyA", sceKernelAprResolveFilepathsToIdsAndFileSizesForEach) +STUB("QzBmSA8CV-c", _ZNK3sce2Np9CppWebApi7Matches2V113ErrorResponse8getErrorEv) +STUB( + "QzCQ6iakdm0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEC2Ev) +STUB( + "QzKntnYEOXc", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi41deletePlayerSessionJoinableSpecifiedUsersEiRKNS4_52ParameterToDeletePlayerSessionJoinableSpecifiedUsersERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB("QzMl0BNrkBo", mono_property_get_flags) +STUB( + "QzUsSpNap4g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE10setContextEPNS2_10LibContextE) +STUB("QzYuh6Ftszk", _ZNK7WebCore9FrameView27clientToLayoutViewportPointENS_10FloatPointE) +STUB("QzaA1qde-1c", WKBundlePageExtendIncrementalRenderingSuppression) +STUB( + "QzaDg6FyTQU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEptEv) +STUB("QzaREAE84mw", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V111OfferStatusEEmmEi) +STUB( + "QzcIVCPv9RM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE5emptyEv) +STUB( + "Qzd2filwkvs", + _ZN3sce7Toolkit2NP10Challenges9Interface11consumeItemEPKNS1_23ChallengeConsumeRequestEPNS1_9Utilities6FutureINS1_22ConsumeChallengeResultEEEb) STUB("QzeIQXyavtU", sceUserServiceSetGlsTtsVolume) +STUB( + "QzfWMCqFE8w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEppEv) +STUB( + "QzhmPXGsNc8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEEptEv) +STUB( + "QznUYS2MBQ4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEmmEv) +STUB("QzoLmttapDA", bdjbg_destroy) +STUB( + "QzpKJkYagcQ", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB("QzrVu6VdC38", _log2f_impl) +STUB( + "QzwJqxVHduQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("QzySiql0nAE", _ZNK7WebCore18AdClickAttribution21hasHigherPriorityThanERKS0_) +STUB( + "R++wwewVT30", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEdeEv) +STUB("R+2FUI+qUB4", WKBundleNodeHandleGetHTMLTextAreaElementLastChangeWasUserEdit) +STUB( + "R+3Ccnpjj74", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("R+3WfaGkLTE", uset_openPatternOptions_67) +STUB("R+7Z45nY8A0", _ZN6WebKit12ChildProcess9terminateEv) +STUB("R+AMdZg0mkU", ucnv_enableCleanup_67) +STUB("R+G5do47KVg", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEEptEv) +STUB("R+Hmngc2cW0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE8copyFromERKS7_) +STUB( + "R+IJy1KVaj0", + _ZN7WebCore12SharedBuffer6createEON3WTF6VectorIhLm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("R+JSrG8sb5s", WKWebsiteDataStoreSetStatisticsTopFrameUniqueRedirectTo) +STUB( + "R+OHOmwsCwk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("R+ZL6IcGlXc", _ZN3sce2np14JsonObjectImpl8SetFieldEPKcPKNS0_9JsonValueE) +STUB("R+aBKlxV69c", _ZN7WebCore20LegacySchemeRegistry24registerURLSchemeAsLocalERKN3WTF6StringE) +STUB( + "R+bmUj3E3uA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEaSERKS7_) +STUB("R+jNNCjpVBc", _ZN3sce7Toolkit2NP2V210Tournament14RegisteredTeamaSERKS4_) +STUB("R+lZMziFVTQ", glGenQueriesEXT) +STUB( + "R+sNVF20lWg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEC2EPNS2_10LibContextE) STUB("R+sqyC483ns", sceImeBackendModeCaretPrevious) +STUB( + "R+wJN-mHLi4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "R+xd5UurwbI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEptEv) +STUB( + "R+z3Go-sW9Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEEC2Ev) +STUB( + "R+zsiZEhM4c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEED2Ev) +STUB("R-26wEAR0KE", utext_moveIndex32) STUB("R-4a9Yh4tG8", sceNetCtlApAppInitWpaKey) +STUB( + "R-7web+pc0o", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEplEm) +STUB("R-8BjN9slkA", uspoof_setAllowedChars_67) +STUB("R-8OgKvAmLA", tr_range_tab) +STUB( + "R-9BCfq6t80", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEeqERKS9_) +STUB( + "R-Dlyt7NDHg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE7popBackEv) +STUB("R-K4UH1DFAI", mono_aot_Sce_Vsh_Np_Commonunbox_trampolines_end) +STUB("R-PJ8yvNY-0", _ZN3sce7Toolkit2NP2V28Commerce10ContainersaSERKS4_) +STUB("R-Ps2uN7EFw", mono_aot_Sce_PlayStation_HighLevel_UI2unwind_info) +STUB( + "R-QDdYMgNys", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEaSERKS9_) +STUB("R-QjPBoo7fk", _ZN3sce13CanvasTexture12createRGB565Eii) +STUB("R-Uj-EZ9NZE", WKPreferencesGetJavaScriptCanOpenWindowsAutomatically) +STUB("R-dM6OKYLMQ", mono_get_corlib) +STUB( + "R-f-3UQq0uw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE5clearEv) +STUB( + "R-hRgcJqN5k", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE5emptyEv) STUB("R-oVDMusYbc", sceFontGraphicsUpdateGlyphFill) STUB("R-tyYMpYaxY", sceKernelAddWriteEvent) +STUB( + "R-vsMzjXXnI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEE5resetEPS9_) +STUB( + "R-xsvYA01AA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEED1Ev) +STUB( + "R-zA9AUrQek", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEE11release_refEv) +STUB("R0-hvihVoy0", nextafterl) +STUB( + "R00U+nHUD8w", + _ZN3sce2Np9CppWebApi14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyC1EPNS1_6Common10LibContextE) STUB("R00q9P3BKAc", sceCompositorWaitEndOfRendering) STUB("R013D1VIETQ", sceShellCoreUtilSignalUserInput) +STUB( + "R02QiWYvp74", + _ZN9Inspector20CSSBackendDispatcher25getSupportedCSSPropertiesElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "R061AvVklEc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC1ERSA_) +STUB( + "R09+AuLhOJg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEC2ERS8_) +STUB("R09g4LWY3To", ucol_tertiaryOrder_67) +STUB("R0C5rkcLyxg", _ZStL10_Call_funcPv) +STUB("R0HNwv8ngXY", WKErrorCopyWKErrorDomain) +STUB( + "R0JhbW+4vYU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE6resizeEj) +STUB("R0KW845D-BE", _ZNK3sce2Np9CppWebApi14SessionManager2V112JoinableUser12getAccountIdEv) +STUB( + "R0Q4Gb2MOpI", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeaderD1Ev) +STUB("R0TePTSHd2k", cairo_arc) STUB("R0TfhbZMHm4", sceRemotePlayClientInitialize) +STUB("R0V-fx++5Cg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE7reserveEi) +STUB( + "R0W4nQ8Jiis", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEE11release_refEv) +STUB("R0XOxqrJoyU", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V114ResultsVersionEEneERKS7_) +STUB("R0ac5QOdlpo", _ZN3sce4Json5Value12referIntegerEv) +STUB( + "R0gzSGWTSNs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEneERKS9_) STUB("R0lsCgrINWo", sceFaceAgeRangeEstimate) +STUB( + "R0lxeAPKCyo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEED2Ev) +STUB("R0omFuya2+Q", _ZN3NTF21ResourceRequestLogger5startEPv) +STUB("R0uK2q38QTo", _ZN3sce16CommonDialogUtil6Server9setResultEi) +STUB( + "R10PryV-lHc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEeqERKS9_) +STUB("R15hN8-oipQ", _ZNK7WebCore13GraphicsLayer18accumulatedOpacityEv) +STUB( + "R16zUjg8Mao", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "R18wqfTg-uw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEEC1EPS8_PNS2_10LibContextE) +STUB( + "R1BLpIZUPwc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("R1DxY7rNYKA", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEEaSERKS6_) +STUB("R1HCq1d3SEI", _ZN3sce2Np9CppWebApi7Matches2V119RequestInGameRoster12unsetPlayersEv) +STUB( + "R1ITHuTUMEI", + _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE16do_get_monthnameES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm) STUB("R1Jvn8bSCW8", sceKernelDeleteSema) +STUB("R1NpaLgE9yU", rgctx_fetch_trampoline_mrgctx_70_p) +STUB( + "R1PJ6fhpmL0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) STUB("R1QjB5b1l-4", sceCesRefersUcsProfileIso8859_14) +STUB( + "R1Rn9rMBsBA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEEC1ERSA_) STUB("R1SLegxzCGU", sceMusicPlayerServiceInsertTrackEntry) STUB("R1T4i+DOhNY", sceFontGlyphRefersOutline) +STUB("R1UArToVtOY", _ZN9Inspector22RemoteAutomationTargetC2Ev) +STUB("R1UEueu9uyI", _ZN8meta_gen11MsvPromoter10InitializeEP22MsvPromoteInnerContext) STUB("R1ePzopYPYM", sceSslGetNameEntryCount) +STUB("R1eprLUz9I8", _ZNK7WebCore13KeyboardEvent16getModifierStateERKN3WTF6StringE) +STUB("R1lHJegLAe8", _ZN3JSC11RegisterSet21macroScratchRegistersEv) +STUB("R1mZutnlTiM", FT_Stream_Seek) +STUB("R1nj8SOcBTI", _ZN7WebCore10TimeRanges6createEdd) +STUB("R1ovagwVSI4", _ZN4Manx7Network7reallocEPvm) +STUB( + "R1qZeu60XJU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEED1Ev) STUB("R1s4ue5cubY", sceSdmaCopyWindowT2TNonBlocking) +STUB("R2+u4Jd0WSM", uprv_sortArray) +STUB( + "R23orAcz0pA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEixEm) +STUB( + "R27pt5KYpng", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEmmEi) +STUB("R2APVUi9BoQ", Java_java_awt_GnmGraphics_nativeFillRect) +STUB("R2Dd-vNhzFE", mono_signature_get_param_count) +STUB( + "R2GrM2WY5pE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("R2NQ5MbjVBQ", mono_aot_Sce_PlayStation_Coreunbox_trampolines) +STUB("R2OL8xlFSXo", WKMediaCacheManagerClearCacheForHostname) +STUB("R2QKo3hBLkw", _rtld_atfork_post) +STUB("R2QhMJAHmro", _ZN3sce7Toolkit2NP2V28Matching5RoomsC1ERKS4_) +STUB("R2RHWqvhRqQ", _ZN12Mp4Retriever11byte2bitNumEhhh) +STUB("R2VrnwV5rpk", _ZN7WebCore11FrameLoader14stopAllLoadersENS_26ClearProvisionalItemPolicyE) +STUB( + "R2WQfFm5jbo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("R2XV0ewj3dI", _ZN3sce3Xml3Dom15DocumentBuilder9terminateEv) +STUB("R2ZQAobL0VM", _ZN7WebCore17HTMLSelectElement11setMultipleEb) +STUB( + "R2azr1mmVu4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEaSERKS9_) +STUB("R2cSMyL69Bk", utf8_appendCharSafeBody) +STUB("R2dhCyaDT48", _ZN3sce3Xml11Initializer9terminateEv) +STUB( + "R2g5pu7Dwe0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE21intrusive_ptr_add_refEPS9_) +STUB("R2noUGyITvk", + _ZNSt9_FacetptrISt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEE6_PsaveE) +STUB("R2yDBfjSkHA", mono_aot_ReactNative_Debug_DevSupportunwind_info) +STUB("R302ljOk7tQ", _ZN3sce7Toolkit2NP2V211SharedMedia11ScreenshotsD1Ev) +STUB("R32KWyukT6U", uprv_decNumberAdd_67) +STUB( + "R344NhexpiM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE7releaseEv) +STUB( + "R34rX6mXKD0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEC1Ev) +STUB( + "R36adnRXFWg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE3endEv) +STUB( + "R3971zQT7us", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE7reserveEi) +STUB("R3A6XQIwzEg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEC1Ev) +STUB( + "R3L+JBooxmQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE8capacityEv) +STUB("R3LE7Aiw2io", TLS_client_method) +STUB("R3QGYKdeeYI", _ZN9Inspector20InspectorTargetAgent15targetDestroyedERNS_15InspectorTargetE) +STUB("R3T9kAASCKM", + _ZN3sce2Np9CppWebApi14ConnectAccount2V215AccountLinksApi28ParameterToDeleteAccountLinkC1Ev) +STUB("R3e71gr1u3E", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku23getDisplayOriginalPriceEv) +STUB("R3grMrGyJho", glGetInteger64i_v) +STUB( + "R3hJL1oxFXg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEixEm) +STUB( + "R3iI6GZXoyM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEppEv) +STUB("R3nFNsfiGUQ", + _ZN7WebCore4Page22removeLayoutMilestonesEN3WTF9OptionSetINS_15LayoutMilestoneEEE) +STUB( + "R3qOQNDu0fI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE7reserveEi) +STUB("R3vgMxMBgd0", mono_type_size) +STUB("R3zKVT9XEGU", mono_get_exception_not_implemented) +STUB("R44U7HWTcYs", _ZNK3sce2Np9CppWebApi14SessionManager2V115SearchCondition10valueIsSetEv) +STUB( + "R45OuqCl6l8", + _ZN7WebCore20ApplicationCacheHost25maybeLoadFallbackForErrorEPNS_14ResourceLoaderERKNS_13ResourceErrorE) +STUB( + "R4A1kPOxoNo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEEC2Ev) +STUB( + "R4DzZGxLRa8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEC2EPS8_) +STUB( + "R4Gm1SVxvyY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE5clearEv) +STUB( + "R4X6EoE+FuA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEmmEv) +STUB( + "R4XQS4JXM-4", + _ZThn16_N9Inspector22InspectorDebuggerAgent18continueToLocationERN3WTF6StringERKNS1_8JSONImpl6ObjectE) STUB("R4YQI0YpbB0", sceFiosCacheFlushFileSync) +STUB("R4cvOCertOM", _ZN3JSC14ProtoCallFrame14needArityCheckEv) +STUB("R4nImuzOydg", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetailaSERS5_) +STUB( + "R4sodwLphl0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEmmEi) +STUB("R4uZL+lBhJQ", _ZTSPDh) +STUB("R4v+x9GJ4WA", + _ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForRead18unsetNonPsnPlayersEv) +STUB("R4xnWArcO14", mono_aot_Sce_Vsh_Sl2_Sl2Commonjit_code_end) +STUB("R4xzXGj2y74", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_28AdditionalSessionInformationEE3getEv) +STUB("R5+WvSLQgec", _ZN4Manx6Screen5widthEv) +STUB("R50rXm8Dd1k", mono_aot_Sce_Vsh_VrEnvironmentplt) +STUB("R58wTYuBl4A", mono_aot_Sce_Vsh_Np_AppInfojit_code_end) +STUB("R5CZ6wtr13w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEC2Ev) +STUB("R5OkM+JXNGU", mono_aot_Sce_Vsh_VoiceMsg_VoiceMsgWrapperjit_got) +STUB("R5QhFOlpzjo", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScore9terminateEv) +STUB( + "R5RLZuTS3m8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEmmEv) +STUB( + "R5RRY5ZCQSU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEeqERKS9_) +STUB("R5SS2IqIwQQ", GCC_except_table61) +STUB( + "R5UMy7LMszo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEC1Ev) +STUB("R5X1i1zcapI", _Atomic_fetch_or_4) +STUB( + "R5aG7DHXm5k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEED2Ev) +STUB( + "R5bEiV63whk", + _ZN3JSC23createBuiltinExecutableERNS_2VMERKNS_10SourceCodeERKNS_10IdentifierENS_16ConstructAbilityE) +STUB("R5cAR+yT+dw", _ZN12video_parser12cVpFileCache3RunEv) +STUB( + "R5eq9YUw-Zk", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEEiRNS2_10LibContextEPT_m) STUB("R5hemoKKID8", sceAudioOutGetSystemState) +STUB("R5kWFrmHVCQ", _ZN3WTF5equalEPKNS_10StringImplEPKhj) +STUB( + "R5lmA0Rc3Fk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEaSERKSC_) +STUB("R5nRbLQT3oI", _ZN10__cxxabiv117__array_type_infoD0Ev) +STUB("R5rWHiU8BF4", _ZNK3WTF13StringBuilder10isAllASCIIEv) +STUB("R5yZepvlMy0", _ZN3JSC8Debugger16willRunMicrotaskEv) +STUB( + "R60dRZADj00", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEneERKS9_) +STUB("R625FTX73kc", + _ZN3sce2Np9CppWebApi14SessionManager2V119JoinableUserFactory7destroyEPNS3_12JoinableUserE) +STUB( + "R68O7ARj9Ek", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi24ParameterToReportResults23setreportResultsRequestENS1_6Common12IntrusivePtrINS3_20ReportResultsRequestEEE) +STUB("R6BLYam0rcE", _ZN3JSC7Symbols59defineEnumerableWritableConfigurableDataPropertyPrivateNameE) +STUB("R6IBc47qWnM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEEC2ERS6_) +STUB("R6MsE03xutI", _ZN3JSC4Heap7sweeperEv) +STUB("R6OYAmxPe-g", _ZN3sce7Toolkit2NP2V28Matching7Request8JoinRoom23LOWEST_DISPLAY_PRIORITYE) +STUB("R6RIy5e80SU", _ZN3JSC9Structure16allocateRareDataERNS_2VME) STUB("R6Z7jRxaoxo", sceFontGraphicsSetupSlantShift) +STUB("R6ZajxSYd8E", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfoD1Ev) +STUB( + "R6angRZS0iE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE10setContextEPNS2_10LibContextE) +STUB( + "R6k5J0DE4Uo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE7popBackEv) STUB("R6ldE-2ON1w", sceUserServiceGetPbtcPlayTimeLastUpdated) +STUB("R6mphKHvP7c", mono_aot_Sce_Vsh_Webbrowser_XutilWrappermethod_addresses) +STUB( + "R6o3I-+JnSI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE21intrusive_ptr_add_refEPS9_) +STUB("R6qlqXwfhZg", JVM_ConstantPoolGetStringAt) +STUB( + "R6wRnnl5fVg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEC2EPKS8_) +STUB( + "R6x4+uXxSJQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEE5resetEPS9_) +STUB( + "R6yDTWCJ12g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("R6yTbCLOMSI", _ZN3WTF10WorkerPoolC2ENS_12ASCIILiteralEjNS_7SecondsE) STUB("R6z1xM3pW-w", sceGnmDriverTraceInProgress) +STUB( + "R71QzjbpjmY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE5beginEv) +STUB("R72NCZqMX58", _ZTSSt13basic_ostreamIwSt11char_traitsIwEE) STUB("R74tt43xP6k", sceKernelAddHRTimerEvent) +STUB("R78-0PPJcBk", _ZNK7WebCore10StorageMap6lengthEv) STUB("R78nGE2Drzw", sceNpUniversalDataSystemIntCreateRecordData) +STUB( + "R79nFgXnycM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB( + "R7DbysW1g98", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEC1ERS7_) +STUB("R7FDWtcN6f8", _ZN3sce4Json5Value9serializeERNS0_6StringE) +STUB( + "R7KC57md3TI", + _ZN7WebCore11EventTarget30removeEventListenerForBindingsERKN3WTF12AtomicStringEONS1_6RefPtrINS_13EventListenerENS1_13DumbPtrTraitsIS6_EEEEONS1_7VariantIJNS0_15ListenerOptionsEbEEE) +STUB("R7KrLur9byM", WKInspectorToggleJavaScriptDebugging) +STUB("R7LtNXr0LWo", _ZN3sce7Toolkit2NP2V29Messaging7Request22ConsumeGameDataMessageC2Ev) +STUB( + "R7MjjRSD8k0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEED1Ev) +STUB("R7NBRVO5ZCU", mono_aot_Sce_Facebook_CSSLayoutunwind_info) +STUB( + "R7P75aa1rXQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEppEv) +STUB( + "R7TJchcwA+M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "R7TKRuc6veM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEppEv) STUB("R7Vl+eA3OiY", sceCesRefersUcsProfileCp869) +STUB("R7XLWikJQtg", _ZNK10Deprecated11ScriptValue7jsValueEv) STUB("R7Xj-th93gs", sceKernelSetVmContainer) +STUB( + "R7Yzzco62Wc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEEptEv) +STUB("R7a+afuvYTU", _ZN3sce7Toolkit2NP2V27Session7Request17GetInvitationDataD2Ev) STUB("R7d0F1g2qsU", sceAudioOut2ContextGetQueueLevel) +STUB( + "R7dKZgyTe6o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEEC2Ev) +STUB("R7ej2g+EmIk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEppEv) +STUB("R7qRZ88gZ70", uprv_decContextClearStatus_67) +STUB("R7sNS8fgJQU", _ZNK3JSC14JSGlobalObject22remoteDebuggingEnabledEv) +STUB("R7sOH7lIe8M", rgctx_fetch_trampoline_rgctx_20_p) +STUB("R7sTQjrakqE", _ZN7WebCore8Document19caretRangeFromPointEii) +STUB("R7uetrIM2yY", _ZN7WebCore8SVGNames11clipPathTagE) +STUB( + "R7vF64vMs84", + _ZN3sce7Toolkit2NP12ActivityFeed9Interface10postInGameEPKNS1_17PostInGameRequestEPNS1_9Utilities6FutureINS1_15ActivityStoryIdEEEb) +STUB( + "R7woYOzL7is", + _ZN7WebCore11DisplayList12PutImageDataC1ENS_22AlphaPremultiplicationERKNS_9ImageDataERKNS_7IntRectERKNS_8IntPointES2_) +STUB( + "R7za+GbmuiU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEmmEv) +STUB( + "R819-P60750", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEC1ERKS7_) +STUB( + "R850wZKLoQE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEC1ERKS7_) +STUB("R86sXhW699g", BIO_s_mem) +STUB("R8ARAGDCXwM", _ZNK3JSC8Debugger8isPausedEv) +STUB( + "R8DDvpkIsus", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEEeqERKS7_) +STUB( + "R8E-qnvESKc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEE5resetEPS6_) +STUB("R8EbyWx7TUs", _ZN3sce7Toolkit2NP2V212ActivityFeed7CaptionD1Ev) STUB("R8LZytuJe2Y", sceDeci4hDrfpRemove_fuse) +STUB( + "R8POAtUD1kk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE21intrusive_ptr_sub_refEPS9_) STUB("R8RZC1ZIkzU", sceRemoteplayIsRemoteOskReady) +STUB("R8Rbwi6zED4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEEC2EPS4_PNS2_10LibContextE) +STUB( + "R8TBc2bC7oo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEE5resetEPS9_) +STUB("R8XVsCy8pIE", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_isPipSubtitleMode) +STUB( + "R8hYM9xCcJ4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEdeEv) +STUB("R8pxYSQQqcY", WKFrameStopLoading) STUB("R8v5kdZ55mY", sceAudiodecCpuInternalQueryMemSize) +STUB("R8xUpEJwAA8", _ZNSt14numeric_limitsIfE14max_exponent10E) +STUB("R996H0YIhiQ", _ZN3sce4Json11Initializer24setAllocatorInfoCallBackEPFviNS0_9ValueTypeEPvES3_) +STUB("R9AdrFOK9Ng", _ZNK3sce2Np9CppWebApi7Matches2V119AdditionalStatistic6toJsonERNS_4Json5ValueEb) +STUB("R9CB6TmSpeU", _ZN4IPMI4impl10ClientImpl7destroyEv) +STUB( + "R9CWDJoum2Y", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEdeEv) +STUB("R9HHtazgMJY", _ZN7WebCore15DatabaseManager14setIsAvailableEb) +STUB( + "R9HRw-1Iv8k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEC1Ev) +STUB("R9I10DrUd0A", udat_formatForFields_67) +STUB("R9KfptVxClc", udata_getRawMemory) +STUB( + "R9OL37910l8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEE11get_deleterEv) STUB("R9VdZjbxQi8", sceHttpCacheSystemClearAll) +STUB("R9X0jHsH64E", WKBundlePageCopyGroupIdentifier) +STUB("R9Xrr0Fvh14", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEC2Ev) +STUB("R9a1RL4FEBU", mono_aot_Sce_Vsh_Np_Tmdbjit_code_end) +STUB("R9aQ2Yw0Ylw", monoeg_g_ascii_strdown) +STUB("R9hKW5gfa9M", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119PlayStyleProperties12setChallengeERKi) STUB("R9lA82OraNs", sceAppContentInitialize) +STUB( + "R9pvYPhgFaM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("R9uJB8bxFPM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEED1Ev) +STUB("R9udCL0w2aU", _ZTVN7WebCore11DisplayList11SetLineDashE) STUB("R9vnyf-B1pU", sceUserServiceSetPbtcThursdayDuration) STUB("RA2D9rFH-Uw", sceUsbdUnlockEvents) +STUB("RA8MVPl4va8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEC2Ev) +STUB("RAAMO4Iubm0", GCC_except_table286) +STUB("RAAuT3bFUqs", ucptrie_toBinary_67) +STUB("RADrqCDh-8s", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEEcvbEv) +STUB("RAFjId49lqw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEptEv) STUB("RANPtoAYeAA", sceIduGetEnv) +STUB("RARARMv04ws", _ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBodyD1Ev) +STUB("RAcOLwTQyxc", _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_4FileE) +STUB( + "RAkEhLw9Hsw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "RAth-vQiVLo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "RAx-HMPCEWU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEC1EPNS2_10LibContextE) +STUB("RAyoefHN9Is", _ZN4Manx11StoragePath11sqlDatabaseEv) +STUB("RB0rwAfQF-o", mono_aot_Sce_Vsh_Np_ServiceCheckerjit_got) +STUB("RB3ratfpZDc", _ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED0Ev) +STUB("RB4oAA25qYk", _ZN7WebCore8SVGNames17feGaussianBlurTagE) +STUB( + "RB5LlxlbLPI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot10initializeEPNS1_6Common10LibContextEi) +STUB("RB6PPvd0ZBU", _ZN7WebCore11MathMLNames14maligngroupTagE) +STUB( + "RB7voJMuUZs", + _ZN7WebCore11DisplayList16DrawLinesForTextC2ERKNS_10FloatPointERKNS_9FloatSizeEfRKN3WTF6VectorIdLm0ENS8_15CrashOnOverflowELm16ENS8_10FastMallocEEEbb) +STUB("RBHW6ZontG4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEED2Ev) +STUB( + "RBJvYglKJXg", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("RBPhCcRhyGI", _Atomic_is_lock_free_1) +STUB("RBUWUb2gfXI", + _ZNK3sce2Np9CppWebApi7Matches2V125ResponseCompetitiveResult6toJsonERNS_4Json5ValueEb) STUB("RBX1d-+nzpE", sceCesEucJpToUtf32le) +STUB("RBcs3uut1TA", strerror_r) +STUB("RBe47dO22EQ", utrie2_get32_67) STUB("RBlEzB--JeA", sceLncUtilKillAppWithReason) +STUB( + "RBldcSTyedY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEC2Ev) +STUB( + "RBmqHCfHDbQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEED1Ev) +STUB("RBw+4NukeGQ", _ZNK3sce4Json5Value5countEv) +STUB("RC-fRnmp+Ms", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error20unsetMissingElementsEv) +STUB("RC3VBr2l94o", __floatunsisf) +STUB( + "RC67VafRUwg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEC2Ev) +STUB("RC8cRZRvHWI", mask) +STUB( + "RCAHSKnAgBE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEmmEv) +STUB("RCBpk+BtTRE", rgctx_fetch_trampoline_rgctx_61_p) STUB("RCCY01Xd+58", sceNetResolverStartNtoaMultipleRecords) +STUB( + "RCDd8brzYLg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEED1Ev) +STUB("RCHAU-BQzVo", _ZN6WebKit12ChildProcess21terminationTimerFiredEv) +STUB( + "RCKl0mx5RQE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEC1Ev) +STUB("RCLmP0P4oHI", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V223FilterProfanityResponseC1EPNS1_6Common10LibContextE) +STUB( + "RCOCeiQyRL0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("RCQAffkEh9A", coshf) +STUB( + "RCQMEgIc9KM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "RCUMezg-me4", + _ZN7WebCore11JSDOMWindow25getOwnPropertySlotByIndexEPN3JSC8JSObjectEPNS1_14JSGlobalObjectEjRNS1_12PropertySlotE) +STUB("RCWKbkEaDAU", _ZNSt9_Num_base14is_specializedE) +STUB( + "RCWsuMQ46LM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("RCXObcgBLKs", _ZN3sce16CommonDialogUtil6Server13setFinishDataEPvm) +STUB("RCYAhgu7fG4", rgctx_fetch_trampoline_rgctx_18) +STUB( + "RCYtPOrOGqA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "RCbDQXFan6U", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayer28getxPsnAcceptPlatformNamePs5Ev) +STUB( + "RCfDdG08qgA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEC1EPS8_) +STUB( + "RCj32AqTDZc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEppEi) +STUB( + "RCoQR1zhe3g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "RCosUey3GEA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEED1Ev) +STUB("RCrjO1lzNRU", MvpHttpGet) +STUB("RCtcimZJgYs", _ZN7WebCore9HTMLNames17webkitairplayAttrE) STUB("RCtiLzPYAgA", sceCtrlpGetAvailPlayBufferNum) +STUB("RCuGI7b3AF4", _ZNK3sce2np9JsonArray10GetItemNumEv) +STUB( + "RD1fG8whZgA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) STUB("RD3shWR4Vok", sceDebugGetApplicationInfo) +STUB( + "RD3xa7YGr7Y", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayer12getsessionIdEv) +STUB( + "RD4oAFw+Y3Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEmmEv) +STUB("RD6eyxmgANc", _ZZSt9MakefacetISt5ctypeIcESt8_LocinfoERT_T0_E3buf) +STUB("RD8uvBGzQDs", Java_java_io_FileOutputStream_openAppend) +STUB("RD9L4eg0m-c", EVP_aes_192_ctr) +STUB( + "RDB0VDGpsho", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEmmEi) +STUB("RDGYqqmyHWc", _ZNK7WebCore17SubresourceLoader15originalHeadersEv) +STUB("RDK-0B1uIJo", _ZN7WebCore18ScrollingStateTree23setHasChangedPropertiesEb) +STUB("RDLohIsn+xE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEED2Ev) +STUB("RDPTNEkwy7c", + _ZN7WebCore12SettingsBase22setSansSerifFontFamilyERKN3WTF10AtomStringE11UScriptCode) +STUB("RDRcOADhta8", _ZN3JSC8Bindings8Instance19createRuntimeObjectEPNS_9ExecStateE) +STUB("RDTVY96sNao", _ZN4Manx13WorkQueueImplD1Ev) +STUB("RDYHybvxuMs", mono_btls_x509_crl_get_issuer) +STUB( + "RDb3KnxFvXA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("RDc+qpc3rnE", mono_btls_x509_store_ctx_get_by_subject) +STUB( + "RDdlIEKB7lk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEE11get_deleterEv) +STUB("RDeUB6JGi1U", __paritydi2) +STUB("RDfERQQNKjA", mono_error_init) +STUB("RDjaBFHSfEc", _ZN9Inspector17ScriptDebugServernwEm10NotNullTagPv) +STUB( + "RDkxjU08zos", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEaSERKS9_) +STUB( + "RDmmId3pih0", + _ZN3sce2Np9CppWebApi14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBody8fromJsonERKNS_4Json5ValueE) +STUB("RDp5dfLonmA", _ZN7CoreIPC14MessageDecoder6createERKNS_13DataReferenceE) +STUB( + "RDvrWNdlWtA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEEaSERKSA_) +STUB( + "RDy6cEX4JPE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEC1EPNS2_10LibContextE) +STUB("RE2FpJnJOGw", _ZN7WebCore16MIMETypeRegistry28isSupportedTextTrackMIMETypeERKN3WTF6StringE) +STUB("RE3OPDj0GVk", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer8getlimitEv) +STUB("RE6e9Qvb9lc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEdeEv) +STUB( + "RE8sXyf4CsQ", + _ZN3WTF24acquireLineBreakIteratorENS_10StringViewERKNS_12AtomicStringEPKDsjNS_21LineBreakIteratorModeE) +STUB("RE9ECIrD-9U", _ZN9Inspector27PerGlobalObjectWrapperWorldaSERKS0_) +STUB("REFpZXGP3OQ", _ZN3sce7Toolkit2NP2V27Ranking12RangeOfRanksC2Ev) +STUB("REGQ4Jki6Ic", _ZN3sce2Np9CppWebApi6Common6VectorIlE6insertENS2_13ConstIteratorIlEERKlRS6_) STUB("REIRIXzv-H0", sceLoginMgrServerDestroyUser) +STUB("REOBGOfo4WE", _ZN9Inspector33InspectorBackendDispatcherHandlerD0Ev) +STUB( + "REQPD8A184U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEmmEv) +STUB("RERXvPDMdhg", _ZN7WebCore12SharedBuffer5clearEv) +STUB( + "RESeX0gJ5oM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEC1EPKS8_) +STUB( + "RESfV72pjWM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEE5resetEPS6_) +STUB("RESi4lF3YfA", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToCancelTicketC1ERS5_) +STUB("REYJWfCzirY", uprv_tzname_67) +STUB("REZbDZa4btY", WKContextAddSupportedPlugin) +STUB("REcO7rLo0fA", _ZNK3sce3Xml3Dom8Document11getAttrNameENS1_6NodeIdE) STUB("REfUTmTchMw", sceUsbdReleaseInterface) +STUB("REgXQWzINZI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEED2Ev) +STUB( + "REl3kkOgTkY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEdeEv) +STUB("REnav+kGq40", + _ZN15AbstractStorage18DailymotionStorage13GetRootFolderEPSt10shared_ptrINS_6FolderEE) +STUB( + "REoqsKCAmBg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB( + "REqg4OKOitw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEED1Ev) +STUB("REt+k0TeaKo", _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfileD1Ev) +STUB( + "REvI0UeN1Ck", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations34setxPSNSESSIONMANAGERINVITATIONIDSEPKc) +STUB( + "REy-v0NuqJM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEED1Ev) STUB("RF1wYlwx+e8", sceVencCoreCreateEncoder) +STUB("RF74pnu5f-c", uloc_getDisplayName) +STUB("RF7J2VaHOfI", _ZN3sce7Toolkit2NP2V27Session7Request6CreateD2Ev) +STUB( + "RFDI5+hh-oE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEC1Ev) +STUB("RFIZF5hdFRs", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE7popBackEv) +STUB("RFIZToM9FcU", WKBundleBackForwardListGetTypeID) STUB("RFIi20Wp9j0", sceHmdInternalGetDeviceInformation) +STUB("RFKbaZAsHKs", _ZN3WTF13printInternalERNS_11PrintStreamEPN3JSC9CodeBlockE) +STUB( + "RFLULxrz2C8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEED2Ev) +STUB("RFPtOY4ll4g", _ZN7WebCore10FileSystem23getFileModificationTimeERKN3WTF6StringE) +STUB("RFR-MQiu5AA", _ZN3sce2Np9CppWebApi6Common9RefObjectD2Ev) +STUB("RFa7xfC8-d4", _ZN7WebCore9HTMLNames18ongesturestartAttrE) STUB("RFaqh8vAtb8", sceAvSettingSetHdmiGamutMetadata_) +STUB("RFdh1hdJPCk", + _ZNK3sce2Np9CppWebApi7Matches2V133RequestTemporaryCompetitiveResult6toJsonERNS_4Json5ValueEb) +STUB("RFlsu7nfopM", _wait4) +STUB("RFnKlYsiIb0", UCNV_TO_U_CALLBACK_ESCAPE) +STUB("RFnMq7-6lq8", + _ZN7WebCore37BasicComponentTransferFilterOperation5blendEPKNS_15FilterOperationEdb) +STUB( + "RFwwJNsOm60", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE3endEv) +STUB( + "RG1jzRp3Xkc", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12string8IsSetEv) +STUB( + "RG2humih50I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("RG4bcvS0caE", _ZNK7WebCore14CredentialBase11hasPasswordEv) +STUB("RG8VRsQoTls", SSL_write) +STUB("RGA+5Ya-Qv8", _ZN3sce7Toolkit2NP15AppSTLAllocatorIcE10deallocateEPcm) +STUB("RGA2eZZz3V4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE3endEv) +STUB( + "RGQo4G4q4tw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEC2ERKS7_) +STUB("RGUWI6ToaQM", + _ZN3sce7Toolkit2NP8Commerce9Interface13productBrowseERKNS1_19ProductBrowseParamsEb) +STUB("RGVOIIycuyA", T_CString_stringToInteger) +STUB("RGc3P3UScjY", _Wcsftime) +STUB("RGei0wl9pho", WKContextSetNetworkProxySettings) +STUB("RGhcbdr8c+I", _ZN3sce7Toolkit2NP2V28Matching7Request8JoinRoomC2Ev) +STUB("RGj3rAgPgf8", _ZN4Manx11MediaPlayer7seekingEv) +STUB( + "RGmaXWENyeA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "RGt1xx9gGr0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEppEi) +STUB("RGu7jejTEW4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEED2Ev) STUB("RGuaevtZkjc", sceCesGbUcsProfileSetUdaMapping) +STUB( + "RGubjN6I4Qs", + _ZN9Inspector20DOMBackendDispatcher24pushNodeByPathToFrontendElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("RGyb4+EFqIA", _ZN3JSC12JSLockHolderD1Ev) +STUB( + "RH+1iwPzz9k", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScore22getxPsnAtomicOperationEv) +STUB( + "RH-vpY2uz88", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "RH08Afgpods", + _ZN9Inspector28DOMDebuggerBackendDispatcher19removeDOMBreakpointElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "RH0A+q5bmlw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEppEv) +STUB("RH1WScofYjE", _ZN3JSC8JSString6s_infoE) +STUB( + "RH3+35+M94Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEEC1ERSA_) +STUB( + "RH4Jf9UhIWQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEdeEv) +STUB( + "RH4idQq5G6A", + _ZN9Inspector8Protocol13BindingTraitsINS0_8Timeline13TimelineEventEE11runtimeCastEON3WTF6RefPtrINS5_8JSONImpl5ValueENS5_13DumbPtrTraitsIS8_EEEE) +STUB("RH6b8pg-P70", _ZThn16_N9Inspector22InspectorDebuggerAgent7disableERN3WTF6StringE) +STUB( + "RH7moZmtzWI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEE11release_refEv) +STUB("RHC5lPmkMNc", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Error8fromJsonERKNS_4Json5ValueE) +STUB("RHMsljiMafE", _ZN7CoreIPC13MessageSenderD2Ev) +STUB( + "RHOKkINmJiY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEEptEv) +STUB("RHPacseeIFg", __asan_report_exp_load2) +STUB("RHSENTKiysk", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEC2ERS7_) +STUB("RHT0OFNP1JA", _ZN3sce7Toolkit2NP2V29Messaging12Notification18NewGameDataMessageaSERKS5_) +STUB("RHV1W6LLOZQ", WKApplicationCacheManagerDeleteAllEntries) STUB("RHXYK0iDICM", scePlayGoRequestNextChunk) STUB("RHYJ7GKOSMg", sceCameraGetCalibrationData) +STUB("RHcv98ep3dg", uhash_hashCaselessUnicodeString_67) +STUB("RHemLB0DMKg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEEC2Ev) +STUB( + "RHk-nXA8TXs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEixEm) +STUB("RHk8mRlqPyY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEED2Ev) +STUB("RHngy4Yp0jI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEEC2ERKS6_) +STUB("RHpq9hQfTj8", BIO_ctrl) +STUB( + "RHqxMZyf44M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE3endEv) +STUB("RHsvSEeUd8s", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession22unsetInvitableUserTypeEv) +STUB("RI-PrwnYFdI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEEC2EPNS2_10LibContextE) +STUB( + "RIDT5VSAIfg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE10setContextEPNS2_10LibContextE) +STUB( + "RIEFJdEvTrs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEEC2Ev) +STUB( + "RILskcl6udw", + _ZN9Inspector21InspectorRuntimeAgent14callFunctionOnERN3WTF6StringERKS2_S5_PKNS1_8JSONImpl5ArrayEPKbSB_SB_RNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISF_EEEERSt8optionalIbE) +STUB("RIPYdMx8wZw", _ZNK3sce2np10JsonString6GetStrEv) +STUB("RIRv-1FA-yU", tt_cmap8_class_rec) +STUB("RIUBPb+3rEg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEE11get_deleterEv) +STUB("RIVWLt7NdUQ", _ZN7WebCore20HTMLFrameElementBase5widthEv) +STUB("RIX1IKndFDA", WKPreferencesSetDoNotTrackEnabled) +STUB("RIXLOUDwuUg", _ZNK7WebCore17ResourceErrorBase12isolatedCopyEv) +STUB( + "RIYWbHvV6qs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE21intrusive_ptr_add_refEPS9_) +STUB("RIa6GnWp+iU", strerror) +STUB("RIcNJWDYKhM", u_strToJavaModifiedUTF8) +STUB( + "RIgrrt15gNs", + _ZN3sce7Toolkit2NP2V26Friend22displayBlockUserDialogERKNS3_7Request22DisplayBlockUserDialogEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("RIkUZRadZgc", sqrtl) +STUB( + "RImJaEh77VU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEC1Ev) +STUB("RIthBDSYo4s", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_19ProductInfoDetailedEE7destroyEPS3_) +STUB( + "RIwIyIpahhI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEE7add_refEv) +STUB("RJ+khi-q6YY", _ZN7WebCore8PositionC2EPNS_4NodeEjNS0_10AnchorTypeE) +STUB( + "RJ7hBcp947E", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("RJ9NntjPcEs", DestroyWebApiLibCtx) +STUB( + "RJDtkBy35zk", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE11getResponseERSB_) +STUB( + "RJE+uhL7cnQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEE3getEv) +STUB( + "RJG+uzUY5qA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEppEv) +STUB( + "RJIL2VmCIjY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEC2Ev) +STUB("RJJ11crQyns", mono_object_get_virtual_method) +STUB("RJNjt4sw25w", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEED1Ev) +STUB("RJOlguLEy-E", _ZN3sce2np9HttpTrans21SetRequestContentTypeEPKc) +STUB("RJUKTuFlRt0", _ZN7WebCore16convertToIntegerIhEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB("RJVxGyv9mJU", _ZN23sceMetadataReaderWriter14StorageManagerC2Ev) +STUB("RJW3AojPP1A", JSContextGetGlobalObject) STUB("RJX7T4sjNgI", sceUserServiceGetUserStatus) +STUB("RJYEfE+NO18", uprv_log_67) +STUB( + "RJdnF5MuSys", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE3endEv) +STUB("RJeOUN5ZbyI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEC2Ev) +STUB("RJivdUma7v8", + _ZN6WebKit17ChildProcessProxy21removeMessageReceiverEN7CoreIPC15StringReferenceEm) +STUB( + "RJkytIVWcpo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEC1EPS8_) +STUB("RJoV65JV8Do", _ZN3sce7Toolkit2NP2V23TSS7Request7GetDataC2Ev) +STUB("RJpgwkpDpW8", ucnv_toAlgorithmic_67) +STUB("RJq6QwvRFRY", mono_aot_Sce_Vsh_DataTransferunbox_trampolines_end) +STUB("RJtXkpCVfmA", glDetachShader) +STUB("RJvKATpMGRw", _ZN3sce7Toolkit2NP2V210Tournament18OneVsOneTournamentC2Ev) +STUB("RJz0iQpTa8M", png_set_background) +STUB("RKBVe9htEYY", mono_trace_set_log_handler) +STUB( + "RKFw97bU2cM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEE7add_refEv) +STUB( + "RKM1almchTo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEC2EPS8_) +STUB( + "RKPWVG-7u08", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("RKT0ePJg8Mg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEED2Ev) +STUB( + "RKW7eewWEJA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("RKar8juAzLM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE5beginEv) +STUB( + "RKcockUv5S0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEplEm) +STUB( + "RKivP6t+GfE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE5beginEv) +STUB("RKlOnSYZlt4", + _ZN7WebCore14FileIconLoader10iconLoadedEON3WTF6RefPtrINS_4IconENS1_13DumbPtrTraitsIS3_EEEE) +STUB( + "RKlnO4eFcjg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE8copyFromERKS9_) +STUB( + "RKp6WlbftnM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEptEv) +STUB("RKsafVZYCzQ", _ZN7WebCore8Document24createElementForBindingsERKN3WTF12AtomicStringE) +STUB("RKvygdQzGaY", _ZTIPKh) +STUB( + "RKzJJrLxGjE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEeqERKS9_) STUB("RL2cAQgyXR8", sceFontGraphicsBeginFrame) +STUB("RL3x4gc1iT0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEE7get_refEv) +STUB( + "RL6kTr3RQ1E", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Runtime12RemoteObject4TypeEEESt8optionalIT_ERKN3WTF6StringE) STUB("RLN3gRlXJLE", sceAcmBatchWait) +STUB("RLSQ14JhNhQ", JSGlobalObjectInspectorControllerDispatchMessageFromFrontend) +STUB("RLX+9a49tZU", WKBundlePageStopLoading) +STUB("RLX3bxGjrCQ", _ZN7bmalloc16isActiveHeapKindENS_8HeapKindE) +STUB("RLXAhRHJT04", GetCapabilities) +STUB("RLdcWoBjmT4", _Getpwctrtab) STUB("RLf56F-WjKQ", sceUsbdKernelDriverActive) +STUB( + "RLfWNTdNIeY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEppEi) STUB("RLhKBOoNyXY", sceWebBrowserDialogSetZoom) +STUB( + "RLkJv5xvMqk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEptEv) +STUB("RLrOsXrQe58", _ZN7WebCore18PlatformTimeRangesdlEPv) +STUB( + "RLyFL+6zRY8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) STUB("RM1Xb5Hcq4w", sceShellCoreUtilGetHidConfigNum) +STUB("RM21Fgm0ZvQ", FTA_Remove_Module_type42) +STUB("RM2ubi9qmu8", _ZN4Manx13WorkQueueImpl4initEv) +STUB( + "RM30eVp5IL8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEdeEv) +STUB( + "RM35a8uFre4", + _ZN3sce2Np9CppWebApi12Leaderboards2V129RecordScoreRequestBodyFactory6createEPNS1_6Common10LibContextElPNS5_12IntrusivePtrINS3_22RecordScoreRequestBodyEEE) +STUB("RM8EBKBbOFo", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13SessionMemberEE7addressERS3_) +STUB("RMDMvfUBN9I", _ZN3JSC22getUint8ArrayClassInfoEv) +STUB("RME+hkDnfiE", days) +STUB( + "RMJ9Bxq7Zvo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEED1Ev) +STUB( + "RMJOIcNoxrY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "RMQBiYYmoDg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "RMUFi56zx5s", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEneERKS9_) +STUB( + "RMaBJ-VDB2w", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEdeEv) +STUB( + "RMcwsFqcuXU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEC1Ev) +STUB( + "RMg2pbJekpg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEEptEv) +STUB("RMo7j0iTPfA", bcopy) +STUB( + "RMp1u7MXPgg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEEC2Ev) +STUB( + "RMq9q6ndxt0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEC1ERKS7_) +STUB("RMsqWTCmC7Y", + _ZN3JSC16InternalFunction14finishCreationERNS_2VMERKN3WTF6StringENS0_16NameAdditionModeE) +STUB( + "RMtQC0TMcIo", + _ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead20setInvitationInvalidERKb) +STUB("RMtznKnDOE0", mono_aot_Sce_Vsh_Lxunbox_trampolines) +STUB("RMv7LG+0dtU", _ZN7WebCore13AXObjectCache23canUseSecondaryAXThreadEv) STUB("RN02UVCL9kU", sceUsbStorageClearFakeWriteProtection) +STUB( + "RN5WefhnX2I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("RN73hQUeNAc", _ZN3sce7Toolkit2NP2V28Commerce13CategoryLabelC1Ev) +STUB("RNAdd6DpntM", _ZN7WebCore16MIMETypeRegistry24isSupportedMediaMIMETypeERKN3WTF6StringE) +STUB( + "RNCvDyDOkkU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE3endEv) +STUB("RNFFmk6vm9o", _ZN7WebCore11JSDOMObjectC2EPN3JSC9StructureERNS1_14JSGlobalObjectE) +STUB("RNJz9ZaG11s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEaSERKS7_) +STUB( + "RNNkz44odFg", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12string2IsSetEv) +STUB( + "RNP2+PAVaZY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEmmEi) STUB("RNPAItiMLIg", sceGnmDebugReset) +STUB( + "RNRWt4dBN4Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEplEm) +STUB("RNSsrxbVLSw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEmmEi) +STUB("RNT4niRc3wM", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicketC2ERS5_) +STUB( + "RNXyv5L46NM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEE11get_deleterEv) +STUB( + "RNfGmXKjliE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEppEv) +STUB("RNmYVYlZvv8", _ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2Em) +STUB("RNocx9CTnZY", __start__Zdynsym) +STUB("RNqLyINmGek", WKApplicationCacheManagerDeleteEntriesForOrigin) +STUB("RNr2kL13DVc", _ZN7WebCore13JSCSSRuleList9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("RNvD-cLT-y4", _ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession9getMemberEv) +STUB("RNvwFCVxg9U", mono_aot_Sce_Vsh_Passcodeplt) +STUB("RNzbF3jJ5jQ", ucnv_MBCSGetFilteredUnicodeSetForUnicode_67) STUB("RO-MRURI76g", sceCesMbcsStrToUtf16Str) +STUB("RO-dsNEt4wk", _ZN7WebCore12ChromeClient26adjustLayerFlushThrottlingEj) +STUB("RO4bVWqJOcs", + _ZN7WebCore13GraphicsLayer16unparentAndClearERN3WTF6RefPtrIS0_NS1_13DumbPtrTraitsIS0_EEEE) +STUB("RO4gZEeNHgw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEC2ERS7_) +STUB("RO5WLOgWmkI", __asan_stack_malloc_5) +STUB( + "RODAb3WMxLY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEED2Ev) +STUB( + "ROIFnyBftG8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEEC1ERSA_) +STUB("ROILLZdYZPc", setregid) +STUB("ROIWYG+wkvg", s14) +STUB("RONWit6P118", _ZN3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead14unsetAccountIdEv) +STUB("ROOoy-+hydE", _ZN3sce7Toolkit2NP7RequestC2Ev) +STUB("RORo385pDeI", + _ZN7WebCore22EmptyFrameLoaderClient31interruptedForPolicyChangeErrorERKNS_15ResourceRequestE) +STUB("ROZ19SGsu0g", WKContextGetMemoryCacheDisabled) +STUB( + "RObzDeh5U2s", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "ROdn9Xj-wzM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEED2Ev) +STUB("ROhUj9dFD6Q", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12RoomPingTimeEE12deepCopyFromERS7_) +STUB("ROmH4NlodXE", _ZN3JSC22EdenGCActivityCallback12lastGCLengthERNS_4HeapE) +STUB("ROw6faazl58", uncompress) +STUB( + "ROxsZk+7ijA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEppEi) +STUB("ROzT8qmQcZU", JVM_LoadClass0) +STUB("RP-uCQo2rpo", + _ZN3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreateC2EPNS1_6Common10LibContextE) +STUB("RP1jn3FMAsU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEE7add_refEv) STUB("RP5cXUjm48U", sceSlimglCompositorCreateIndirectRenderTarget) +STUB("RP7ijkGGx50", _ZNSt13basic_istreamIwSt11char_traitsIwEED1Ev) STUB("RP8Vs1FD1w4", sceVnaSetVoiceDataCollectionSettingsAsync) STUB("RP9ImTNDfP8", sceKernelIccSetCpuInfoBit) +STUB("RP9i-bN+790", _ZN9Inspector31BrowserBackendDispatcherHandlerD2Ev) STUB("RPAHEYSOt1s", sceKernelWriteRemapIntoPrtCommand) +STUB("RPBPgmMvPZw", _ZN12video_parser17cVideoOperatorM4vD2Ev) STUB("RPCAhx-aabE", sceAmprCommandBufferGetBufferBaseAddress) +STUB("RPCuYciZiwQ", + _ZNK7WebCore6Chrome12createWindowERNS_5FrameERKNS_14WindowFeaturesERKNS_16NavigationActionE) +STUB("RPK9c7LWhWA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEEC1ERS7_) +STUB("RPLKRR7vgYE", _ZN3WTF13MetaAllocator17addFreshFreeSpaceEPvm) +STUB("RPSIah8Ojvc", delegate_virtual_invoke_imt_28_p) +STUB("RPVTcq8iqTg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed14PlayedWithFeedEEC1Ev) +STUB( + "RPWgOEcmTX4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEEptEv) +STUB( + "RPXqGAn4VM0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEEcvbEv) +STUB( + "RPkuwSW44SI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("RPlLK+yvEAI", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification15BlocklistUpdateEE3setEv) +STUB( + "RPpsQf9bm8g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEC2EPS8_) +STUB( + "RPqHgpKp2BQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemProperties13isInitializedEv) +STUB( + "RPtuuEd2sAE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEED2Ev) +STUB( + "RPuoEzaK+B8", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer17unsetcontainerIdsEv) +STUB( + "RPuvN0hHu+o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEE11release_refEv) +STUB("RPv5L-o5qRQ", _ZN3sce2np13RingBufMemory4ctorEv) STUB("RPydv-Jr1bc", sceImeOpen) +STUB("RQ0CG53TYao", _ZNK3JSC11ArrayBuffer5sliceEdd) +STUB("RQ3j4p7RBcw", WKBundlePageCreateScaledSnapshotInDocumentCoordinates) +STUB("RQ4bTUpHI9I", mono_profiler_install_jit_end) +STUB( + "RQ5qowgAQQo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE5beginEv) STUB("RQ9gZWKQwH0", sceSaveDataDeleteTitle) +STUB( + "RQD5VVIt0Bw", + _ZN4IPMI6Server12EventHandler20onSyncMethodDispatchEPNS_7SessionEjPKNS_8DataInfoEjPNS_10BufferInfoEj) +STUB("RQEDMyxvLrI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEEC1EPS6_PNS2_10LibContextE) STUB("RQFEW7ZfQJc", sceOpusDecCancel) +STUB("RQGUZHWVCLY", _ZN3WTF22CrossThreadTaskHandlerD1Ev) +STUB("RQMwF11AZKk", _ZN3JSC17JSInternalPromise6s_infoE) STUB("RQOqDbk3bSU", sceSaveDataCheckBackupData) +STUB("RQQFg+c3lAg", + _ZNK3sce2Np9CppWebApi14SessionManager2V113ErrorResponse6toJsonERNS_4Json5ValueEb) +STUB("RQXDaYt-mDc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE4sizeEv) +STUB("RQXLbdT2lc4", logf) +STUB( + "RQYjkphShfo", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB( + "RQe4QtARX94", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "RQfqM1BZuoc", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "RQfy2Vvlyyw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEED1Ev) +STUB("RQgG57FfUJ4", _ZN7WebCore24FrameDestructionObserverC1EPNS_5FrameE) +STUB("RQpBshscViM", _ZNK3sce4Json5Value8toStringERSbIcSt11char_traitsIcENS0_8StlAllocIcEEE) +STUB("RQqcnQJszJI", WKPreferencesSetUniversalAccessFromFileURLsAllowed) +STUB("RQqqsn+NX-Q", mono_arch_enable_ssp) +STUB("RQrwzkCWZmE", _ZN7WebCore33createEmptyFrameNetworkingContextEv) +STUB("RQsI3W-p47I", _ZN3sce7Toolkit2NP2V210Tournament12MatchDetailsD1Ev) +STUB("RQtEqN965OU", _ZN12video_parser10cVideoPath14IsValidContentEv) +STUB("RQy7YuNRZaU", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersaSERS5_) +STUB( + "RQykBnvDDp4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEEaSERKSA_) +STUB("RR1fhpBoZ7w", u_strncpy) +STUB( + "RR4GzQnE2XU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEC1EPNS2_10LibContextE) STUB("RR4novUEENY", scePadSetLightBar) +STUB("RRGLE10-qZM", _ZThn24_N7WebCore14XMLHttpRequestD0Ev) +STUB( + "RRJH3Fu-5qY", + _ZN7WebCore31forwardFunctionCallToBackingMapERN3JSC14JSGlobalObjectERNS0_9CallFrameERNS0_8JSObjectERKNS0_10IdentifierE) STUB("RRKFcKQ1Ka4", sceUsbdControlTransfer) +STUB( + "RRKIllthm9c", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsersC2ERS5_) +STUB( + "RRNbLcgFBiA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEE7get_refEv) +STUB("RRQ6g5xn9MM", _ZN3sce7Toolkit2NP2V24Core18CustomResponseDataaSERKS4_) +STUB( + "RRSFBsBN3uU", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi44ParameterToPatchGameSessionsSearchAttributes12setsessionIdEPKc) +STUB("RRTxkkZOR88", _ZN7WebCore18TextureMapperLayernwEm10NotNullTagPv) +STUB("RRYOPpBTMmg", WKBundlePageAddUserStyleSheet) +STUB("RRcu0f3LC0c", _ZN3NTF17URLRequestMessageD1Ev) +STUB( + "RRiKyCwbbFA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE21intrusive_ptr_sub_refEPS9_) STUB("RRnSj8h8VR4", pthread_rwlock_reltimedwrlock_np) +STUB("RRv+D+Yx84M", utrans_setFilter_67) +STUB( + "RRzBVSiYMlk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE3endEv) +STUB( + "RS+PvzV148E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEmmEi) +STUB("RS2NoxeEr38", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEEC1ERS7_) +STUB("RS4EviLDC8E", ucol_close_59) +STUB( + "RS4OaWn3Yaw", + _ZN7WebCore6JSNodeC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_4NodeENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "RS7LNx7nFL8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEEaSERSA_) +STUB( + "RS9pGAFLnto", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEE11get_deleterEv) +STUB("RSAX7ffj4kM", _ZN7WebCore17HTMLSelectElement8setValueERKN3WTF6StringE) +STUB( + "RSBBWtNzWeQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEE11get_deleterEv) +STUB( + "RSDkS3yxTAE", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V135FrequentlyMutedInGameMetricsFactory6createEPNS1_6Common10LibContextEiiiPNS5_12IntrusivePtrINS3_28FrequentlyMutedInGameMetricsEEE) +STUB("RSEWnJoasFU", _ZN7WebCore15HTTPHeaderFieldC1EON3WTF6StringES3_) STUB("RSEX1eS1tCI", sceCompositorIsReady4K) +STUB("RSF02bBRXF4", delegate_virtual_invoke_imt_29) +STUB( + "RSFz80zdo2E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("RSK9MnAipBM", + _ZN3JSC15ArrayBufferViewC2EON3WTF6RefPtrINS_11ArrayBufferENS1_13DumbPtrTraitsIS3_EEEEj) +STUB( + "RSL5u2AlwVA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("RSa71yEfRqU", _ZN9Inspector33InspectorBackendDispatcherHandlerC2ERKS0_) +STUB("RSaXQ+J0c5s", TEEC_CloseSession) +STUB( + "RSfA85clWX4", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification11RefreshRoomEE19setCustomReturnCodeEi) +STUB( + "RSjv5oN3vL8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("RSmDOudNJyI", _ZNK3sce2Np9CppWebApi15Personalization2V111ErrorEntity10errorIsSetEv) +STUB( + "RSmlV84iNZI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "RSnvUYh+4ao", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEC1EPS8_) STUB("RSnzCRbqwDU", sceNpPushIntUnregisterNotificationPacketCallback) +STUB("RSqDY6nRRjE", _ZN3sce2Np9CppWebApi7Matches2V122RequestPlayerStatisticD1Ev) +STUB( + "RSy-GlGQTqM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE8pushBackERKS8_) +STUB("RSyVVS5IdsM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEEC2EPNS2_10LibContextE) +STUB("RSypjIODiB4", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15PlayedWithStoryEEeqERKS4_) +STUB("RSysh8xErdY", unorm2_getNFCInstance_59) +STUB( + "RT+HTl2ebBk", + _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody16getSwapSupportedEv) +STUB("RT1YgWGxz-M", delegate_invoke_impl_target_5) STUB("RT1smDIu+qo", ScePsmMonoThreadSuspendAllOtherThreads) +STUB("RT2It1wxQxg", _ZNSt9_FacetptrISt7codecvtIcc9_MbstatetEE6_PsaveE) +STUB( + "RT5vfGR8DMc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEC2Ev) +STUB( + "RTD8XIAFqdc", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody18unsetSwapSupportedEv) STUB("RTDOsWWqdME", sceCameraGetSaturation) +STUB("RTGFH1Kf+h8", mono_get_exception_cannot_unload_appdomain) +STUB("RTGqPMrA3kY", _ZN3sce7Toolkit2NP2V26Friend7Friends5resetEv) +STUB("RTIIzthIpKE", _ZN12video_parser17cTsFFLHndlManager8finalizeEv) +STUB("RTJWnG6CHcE", udigs) STUB("RTRzcT0eBrY", sceOpusSilkEncCreateEx) +STUB( + "RTUqVtf7w7w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEED1Ev) +STUB( + "RTZ6lwUCIjU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE4sizeEv) +STUB("RTZW4GbFgYU", _ZN7WebCore16JSStringCallbackC2EPN3JSC8JSObjectEPNS_17JSDOMGlobalObjectE) STUB("RTrsbjUnFNo", sceUserServiceSetPbtcSaturdayDuration) +STUB("RTxFQhlbF+U", hb_ft_face_create_cached) +STUB( + "RTzesATSziM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEC1Ev) +STUB("RU-DTe1m7eY", _ZN3sce7Toolkit2NP2V212ActivityFeed4FeedC2Ev) +STUB( + "RU1SBkCjxQE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("RU1SaHyqexQ", _ZNK7WebCore9FrameView29minStableLayoutViewportOriginEv) +STUB( + "RU4ecqampHg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEmmEv) STUB("RU6hHrrzpfc", sceNpEntitlementAccessRequestConsumableEntitlementInfo) STUB("RU74kek-N0c", sceGnmLogicalCuMaskToPhysicalCuMask) +STUB("RUB6zNhQUJQ", + _ZNK7WebCore24CoordinatedGraphicsLayer28shouldDirectlyCompositeImageEPNS_5ImageE) +STUB("RUDZveSfFCA", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEEaSERS7_) +STUB( + "RUOU4r8NWRU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEppEv) +STUB("RUPepd6YjLU", _ZN9Inspector24ConsoleBackendDispatcherD1Ev) +STUB( + "RUQkLQHBnr8", + _ZN7WebCore27TranslateTransformOperationC2ERKNS_6LengthES3_S3_NS_18TransformOperation13OperationTypeE) +STUB("RUSt7cNzUR8", + _ZN8meta_gen11MsvPromoter23setKeyValue_TBLAVC_SizeENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB( + "RUTwONlE0H4", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEiRNS2_10LibContextEPT_m) +STUB( + "RUW9YM1mGaE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEixEm) +STUB( + "RUZA5-5hfvg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEEptEv) +STUB( + "RUaNV3oeXyQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("RUbJ1HDWEHs", glUniform3uiv) +STUB("RUcNFPANzTQ", mono_counters_enable) +STUB("RUeQqjr2P5s", + _ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody8fromJsonERKNS_4Json5ValueE) +STUB( + "RUenQ1WZQoA", + _ZN7WebCore19JSHTMLSelectElementC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_17HTMLSelectElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB("RUfFggMqyOE", uset_closeOver_67) STUB("RUrWdwTWZy8", scePngEncDelete) STUB("RUrfnne6Dds", sceUserServiceSetPbtcFridayDuration) STUB("RUtAryHv2fI", sceDepth2SaveInternalBuffers) +STUB("RUu0-UmUmhs", _ZN3JSC22EdenGCActivityCallback9deathRateEv) +STUB("RV1C775PZV4", mono_g_hash_table_size) +STUB("RV6sGVpYa-o", _ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1ERKSt8_Locinfom) +STUB("RV7X3FrWfTI", wscanf_s) +STUB( + "RVApw0Y3MCA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("RVDooP5gZ4s", _ZTSNSt6locale5facetE) +STUB("RVFeL4V1-pM", + _ZN7WebCore4Page21markAllMatchesForTextERKN3WTF6StringENS1_9OptionSetINS_14FindOptionFlagEEEbj) +STUB( + "RVG4LQkb+5c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEC2Ev) +STUB( + "RVMgObGpiPA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("RVPyiv9G6nk", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEEaSERS7_) +STUB( + "RVQd+8U+kAU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEaSERKS9_) +STUB( + "RVS7O-kwzJg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEC2ERS7_) STUB("RVSq2tsm2yw", sceUltQueuePop) +STUB("RVTSv7erUVw", _ZN9Inspector27PerGlobalObjectWrapperWorld10getWrapperEPN3JSC14JSGlobalObjectE) STUB("RVWtUgoif5o", sceAudioOutMasteringTerm) +STUB( + "RVamJD-3nUU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE4sizeEv) +STUB("RVcpywSWsBc", _ZN3sce7Toolkit2NP2V27Session18AvailablePlatformsC1Ev) +STUB("RVgc5xyHc8E", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEEC2ERKS7_) +STUB( + "RVj9R+ryuQE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEE11get_deleterEv) +STUB( + "RVjM2p7+9WI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEED2Ev) STUB("RVmEia0vXMI", _sceUltConditionVariableOptParamInitialize) +STUB( + "RVrbikjPXG8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEE7add_refEv) +STUB("RVucA2K22Vw", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V18RelationEEmmEi) STUB("RVxb0Ssa5t0", pthread_cleanup_pop) +STUB("RW-GEfpnsqg", kevent) +STUB("RW1h2gf6vfI", _ZN9Inspector22InspectorDebuggerAgent24willStepAndMayBecomeIdleEv) +STUB("RW7oeSOy2H8", _ZN3JSC2VM19deleteAllLinkedCodeENS_19DeleteAllCodeEffortE) +STUB("RW96fIbhPBA", _ZNK7WebCore27TranslateTransformOperation1xEv) +STUB( + "RWF3XanVLTg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEppEv) +STUB("RWIkTdc5wzM", _ZN7WebCore27setPresentingApplicationPIDEi) +STUB("RWIuvdevaVs", _ZNK3sce2Np9CppWebApi7Matches2V118RequestMatchPlayer12getAccountIdEv) STUB("RWNATmy2cug", sceMatReallocBegin) +STUB("RWWT2HmVAGQ", _ZN9Inspector22PageFrontendDispatcher19frameStartedLoadingERKN3WTF6StringE) +STUB( + "RWYT78-pi+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEEC2Ev) STUB("RWaFrTQryGs", sceVencCoreSetPicParams) +STUB("RWc9kPMyEYU", glQueryCounterEXT) +STUB( + "RWdCmFtYRTk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEC1EPS8_) +STUB("RWepqJseSKI", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities5ErrorC1EPNS1_6Common10LibContextE) +STUB("RWfjXBukpYU", _ZN3WTF6Thread6detachEv) +STUB("RWgF9AZP7ng", _ZN8meta_gen11MsvPromoter23initializeVideoProfilerEPKc) +STUB( + "RWi9HwWWZ7A", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEeqERKS9_) +STUB("RWqyr1OKuw4", logbf) +STUB("RWskKQJRN+Q", mono_aot_Sce_Vsh_Np_Pbtcunbox_trampoline_addresses) +STUB("RWvkd9im294", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS3_18CustomResponseDataEE12deepCopyFromERS6_) +STUB( + "RX+7yCES5Bk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEED2Ev) +STUB("RX-ceAYoWpc", g_DisableAutoHideStartupImage) +STUB( + "RX3ADzW1hTA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEEC1ERSA_) STUB("RX7XCNSaL6I", sceGnmValidateGetDiagnosticInfo) +STUB( + "RX8rZOfV1JY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEC1Ev) +STUB("RXAR0qKCmwY", + _Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm13CbPerfCounterE20SceRazorGpuBroadcast) +STUB("RXJlDu0LwKc", uprv_fabs) +STUB( + "RXJmqz2Bn-g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE7popBackEv) +STUB( + "RXLZEMp1F5k", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) STUB("RXNCDw2GDEg", sceNpPartyJoin) +STUB( + "RXR9m4AAYzk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEaSERS7_) +STUB("RXRWD6iVzvI", RemotePlayIsRemotePlaying) +STUB("RXVRxJBMUP8", _ZNK7WebCore14SecurityOrigin11toRawStringEv) +STUB("RXVv5h4UZRo", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEEptEv) STUB("RXXBl6-iimo", sceVideoRecordingInit) STUB("RXXqi4CtF8w", pthread_cond_destroy) +STUB( + "RXahLDItHas", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEC2EPS6_PNS2_10LibContextE) +STUB("RXdPqxVnrvo", _ZN3sce2np8HttpFileC2EP16SceNpAllocatorEx) +STUB( + "RXf0lXGc8mU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEC1EPS8_) +STUB("RXfZeZ+h06Y", OCSP_response_status_str) +STUB("RXfyT5sJE2I", Java_com_sony_gemstack_io_FilePath_n_1closedir) +STUB("RXqDO8n1lJI", _ZN3IPC13ArgumentCoderIN3WTF6StringEE6decodeERNS_15ArgumentDecoderERS2_) +STUB("RXqt13UAFeY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEC1ERS7_) +STUB("RXrpV6fdQ-Q", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE4sizeEv) STUB("RY+HIZ+rrdo", sceProfileCacheGetAvatar) STUB("RY0c7tYVBiw", sceVoiceQoSInitHQ) +STUB( + "RY8N2FqKkMc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEdeEv) +STUB( + "RY8W7MSfWt4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEptEv) +STUB("RY8mQlhg7mI", __cxa_current_primary_exception) +STUB("RYBw8PFGsuo", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V18SortModeEEC2EPS6_) +STUB("RYDvQkQCgJc", _ZN7WebCore9JSElement9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("RYFSl3aT2Pk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEE7add_refEv) +STUB( + "RYJpr9VvmXM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEC2EPKS8_) +STUB( + "RYSeg640sQM", + _ZN3sce2Np9CppWebApi14ConnectAccount2V216PartnerTokensApi26ParameterToGetPartnerToken24setdeepTokenVerificationEb) +STUB("RYTHR81Y-Mc", _ZNKSt7codecvtIDsc9_MbstatetE10do_unshiftERS0_PcS3_RS3_) +STUB( + "RYVcz85lDBA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE5clearEv) +STUB( + "RYcvHzKntE4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB("RYkJxZhFgZc", Java_java_util_zip_Adler32_updateBytes) +STUB("RYklApR9Iy4", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationProperties12setGoodSportERKi) +STUB("RYlvfQvnOzo", _ZTISt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE) +STUB("RYoCjxaRB-4", rgctx_fetch_trampoline_mrgctx_100) +STUB("RYoluOn04RM", _ZNK3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap12getAccountIdEv) +STUB( + "RYvUxdsaTKs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEC1EPKS8_) +STUB("RYwqCx0hU5c", _Tls_setup__Wctrans) +STUB("RYyp08kanVk", _ZN18MmsFileUpdaterBaseC2Ev) +STUB("RZ-5yg0821M", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEE11release_refEv) +STUB( + "RZ-JbGr1bXU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEED2Ev) +STUB( + "RZ-Mfs82FkI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEE11release_refEv) +STUB("RZ2K0KA6TvM", _ZN3sce7Toolkit2NP2V28Matching5RoomsD2Ev) +STUB( + "RZ4IP2Dlm8M", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEeqERKS9_) +STUB("RZ5glqNEI6g", _ZN9Inspector27AnimationFrontendDispatcherC2ERNS_14FrontendRouterE) STUB("RZ8ra69Qkxw", sceCesUtf8StrToMbcsStr) +STUB("RZA5RZawY04", telldir) +STUB("RZG1q+gKmjY", _ZN3sce2Np9CppWebApi12Leaderboards2V123RecordScoreResponseBodyD1Ev) +STUB("RZHQT5QnVPQ", _ZN9Inspector27AnimationFrontendDispatcher16trackingCompleteEd) +STUB("RZHqKvX5z+E", _ZNK3WTF3URL11hostAndPortEv) +STUB( + "RZNvthVHWis", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEE11get_deleterEv) +STUB( + "RZP+Z-QJoFU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEED2Ev) +STUB("RZQ3FqvWEnM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEEppEi) +STUB("RZQAxhch46s", _ZN7WebCore14ResourceLoader6cancelERKNS_13ResourceErrorE) +STUB("RZQxMzPVW-E", _ZN3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead12setAccountIdERKm) STUB("RZWbY4WHAwA", sceKernelStreamWriteRead) +STUB( + "RZYvTMuqmhw", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData22setxPsnAtomicOperationENS5_19XPsnAtomicOperationE) +STUB("RZZPzU921OY", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_19GetGameDataResponseEE3getEv) +STUB( + "RZcseJ3THfY", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer10initializeEPNS1_6Common10LibContextE) +STUB("RZdBACKeudU", jpeg_CreateDecompress) +STUB( + "RZgHPcZHQzg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEppEv) +STUB("RZjC-lS3nDA", mono_aot_Sce_Vsh_RequestShareScreenjit_code_end) +STUB("RZo2LO26+L0", _ZN3sce7Toolkit2NP2V28Presence7Request19LocalizedGameStatusC2Ev) +STUB("RZriUuCXgVM", _Z26Camera_GetConfigTypeNativeiPi) +STUB("RZsx7hJC89c", + _ZN9Inspector25NetworkFrontendDispatcher19webSocketFrameErrorERKN3WTF6StringEdS4_) +STUB("Ra0B8LgO4Pc", getSendEventQueueByProtocolNumber) +STUB("Ra0aX-0qGUI", ucol_getVersion_67) +STUB("Ra1fBgM+2Tk", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE3endEv) +STUB( + "Ra8zuotWvjE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE5beginEv) +STUB( + "RaNKprkS9EM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("RaS1Ihg3COs", _ZN3sce7Toolkit2NP2V27Session7Request4Join16HIGHEST_PRIORITYE) +STUB( + "RaSNM8Z5lW0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE5abortEv) +STUB("Raa-kQ7942Q", _ZNK7WebCore7Element14hasAttributeNSERKN3WTF10AtomStringES4_) +STUB( + "Rac1b+0vkR8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "RaeEIg9Sdww", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEE3getEv) +STUB("Raf7ROy36d8", _ZNK7WebCore9MediaList4itemEj) +STUB("Ragv7gx+39w", _ZN12video_parser18cMp4FFLHndlManager14getFF4MtsmHndlEv) +STUB( + "RalOJcOXJJo", + _ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8_GetmfldERS3_S5_bRSt8ios_basePw) +STUB("RalQF53QfXQ", + _ZN7WebCore8toStringERKN3WTF6VectorINS_11ProxyServerELm0ENS0_15CrashOnOverflowELm16EEE) +STUB( + "RamA7MHC9Ac", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEC1EPS7_PNS2_10LibContextE) +STUB("RaoIsjLEbgQ", _ZN7WebCore10FileSystem12fileMetadataERKN3WTF6StringE) +STUB("RapLtFkmE5I", mono_profiler_install_method_invoke) STUB("RaqOVaWNQJc", scePerfPmcSelectEventProc) +STUB( + "RaqgmIhWALA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEppEv) STUB("RaqxZIf6DvE", sceMouseOpen) +STUB( + "RatFQeKvheU", + _ZN7WebCore9JSElementC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_7ElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "RateiOgPhCY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE8copyFromERKS7_) STUB("Rau9rXhtDUg", sceBgftServiceIntDebugPlayGoSnapshotByTitleId) +STUB("RawxplHcKrQ", udata_readInt32) +STUB( + "Razh14V35LM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEED2Ev) +STUB( + "Rb0+LGpUObM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEED2Ev) +STUB("Rb4Sk62o+1Q", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEEptEv) +STUB( + "Rb4oPfdBAFo", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V18Variable18setLastUpdatedUserERKNS1_6Common12IntrusivePtrINS3_15LastUpdatedUserEEE) +STUB("Rb6ziJKvCCQ", umask) +STUB( + "RbGsR3uLRKg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEC1ERS7_) STUB("RbLbuKv8zho", sceAjmInstanceDestroy) +STUB( + "RbTF3pjYST4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEE7get_refEv) +STUB("RbUAP7aYvHE", WKPreferencesGetFontSmoothingLevel) +STUB( + "Rbdmek7BV5M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEEC1Ev) +STUB("Rbf6dJaQtbc", _ZNK12video_parser5vpcom8datetime8DateTime6FormatEPwmPKwb) +STUB( + "RbgsyV0rq3w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEC1EPKS8_) +STUB("Rbh94W0TnlI", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_28AdditionalSessionInformationEED2Ev) +STUB("RbkdMpk6elY", _Atdata) +STUB( + "Rbknq+kemEg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE8capacityEv) +STUB("RbrWM+2IhGY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEE11get_deleterEv) +STUB("RbuBuPUm5-0", _ZN7WebCore18pluginScriptObjectEPN3JSC14JSGlobalObjectEPNS_13JSHTMLElementE) STUB("Rbvt+5Y2iEw", sceNetNtohs) +STUB("RbvteD35X-8", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product8getLabelEv) +STUB( + "RbxUhqWCoo0", + _ZN9Inspector31ScriptProfilerBackendDispatcher12stopTrackingElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("RbzWN8X21hY", _ZTVSt11range_error) STUB("Rc0uh3lIoXQ", sceNpSnsFacebookDialogGetStatus) +STUB( + "Rc5xbDtZY90", + _ZN12video_parser13cVideoMetaVWG11getMetadataENS_12VP_META_TYPEENS_9VP_LANG_eENS_15VP_SEARCH_OPT_eEjPNS_12VpMetadata_tE) +STUB( + "Rc8hTBHbNmY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEEC2Ev) +STUB( + "RcAbi1u-Ato", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "RcBTKqKPrEM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "RcDwwXajsLE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEEptEv) +STUB("RcFwKLSom0s", uidna_toUnicode_67) STUB("RcGZnakPiOk", sceNpSessionSignalingGetConnectionFromNetAddress) +STUB( + "RcJNizR0K-U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEaSERS7_) +STUB( + "RcX61OAYOKs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE7reserveEi) +STUB("RcYqTvQUDOc", _ZN12Mp4Retriever9ExtractI2EPh) +STUB("Rcdjc4l2uzc", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110PlayerTypeEEmmEi) +STUB( + "RchI2GKhhHI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEC1ERKS7_) +STUB("RcjGUqvRXZI", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi20ParameterToJoinMatch10setmatchIdEPKc) +STUB( + "Rclp1+7C+rQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEC1Ev) +STUB( + "RcqFX7l2A34", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEED1Ev) +STUB( + "RcqNI2+QvQM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEC2ERS7_) +STUB("Rcqpep1AOTM", _ZN9Inspector30CanvasBackendDispatcherHandlerD0Ev) +STUB( + "RcqsPn2xXI4", + _ZN3sce2Np9CppWebApi14SessionManager2V135RequestJoinGameSessionPlayerFactory6createEPNS1_6Common10LibContextEPKcS9_PNS5_12IntrusivePtrINS3_28RequestJoinGameSessionPlayerEEE) +STUB( + "RcsrDaGKrw8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEEC2Ev) +STUB( + "Rcudvqvuayg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEptEv) +STUB( + "Rcx2TMA68QU", + _ZN3sce2Np9CppWebApi14ConnectAccount2V215PSNErrorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_8PSNErrorEEE) +STUB("Rcz4V01xRBo", WKErrorCopyFailingURL) +STUB("Rd+aSW49Ajs", _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetail7hasviewEv) +STUB( + "Rd1qi4KqWgc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEcvbEv) STUB("Rd27dqUFZV8", sceNpScoreGetRankingByNpIdAsync) STUB("Rd2FBOQE094", sceNpTrophySystemBuildNetTrophyIconUri) +STUB( + "Rd8r1CYRUMU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEC2EPNS2_10LibContextE) STUB("RdAvEmks-ZE", sceUserServiceSetGlsBroadcastUiLayout) +STUB("RdGRa17Q91g", _ZN7WebCore26ISOProtectionSchemeInfoBoxD0Ev) +STUB("RdHTTOCg41s", _ZNK15AbstractStorage12LocalContent13GetCapabilityEv) STUB("RdHocm64Qfs", scePlayReadyReaderCommit) +STUB("RdOIqyIcMdY", _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody13unsetLocationEv) +STUB("RdP7GBs5Bhc", _ZN3JSC20TypedArrayControllerD1Ev) +STUB("RdRtBInu8gw", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi24ParameterToReportResultsC1Ev) +STUB( + "RdRtnAQVrqA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEE7get_refEv) +STUB( + "RdXIFxzNXAg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEE7add_refEv) +STUB( + "RdYWhLssfrc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEE5resetEPS9_) +STUB("RdYwz1mA4vw", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getBoolean1Ev) +STUB("RdZ+vytFX2c", __asan_on_error) +STUB( + "RdZcQytO3rI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("Rdbu24h2d0U", GCC_except_table530) +STUB("RdoI5GFNv5I", ucurr_register) STUB("RdpmnHZ3Q9M", sceUserServiceGetDiscPlayerFlag) +STUB( + "RdpnvwEuFbA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEC1EPS8_) +STUB("RdrrejUMiJ0", FT_Done_Glyph) STUB("RdsFVsgSpZY", sceNpAuthGetIdTokenV3) +STUB( + "RdyL2-f-S84", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEC1EPS8_) +STUB( + "Re+2vu1rsWQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEE7get_refEv) +STUB( + "Re0EOopQq2M", + _ZN9Inspector24RuntimeBackendDispatcher36getRuntimeTypesForVariablesAtOffsetsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("Re3Lpk8mwEo", _ZN10__cxxabiv129__pointer_to_member_type_infoD2Ev) +STUB( + "Re4+t35Osjw", + _ZN3sce2Np9CppWebApi14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyC2EPNS1_6Common10LibContextE) +STUB("Re5FGTBVpq8", __libunwind_Unwind_SetGR) +STUB( + "Re5Yrr1l3MQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEC1EPS8_) +STUB("Re8bzYza4+o", _ZN3sce2np9HttpTransC1EP14SceNpAllocator) +STUB("ReAKpCiSdJg", _ZN7WebCore10TreeWalker10firstChildEv) +STUB( + "ReB56ZBCrlI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEED1Ev) +STUB( + "ReDz5Ug3eAU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("ReG33TVjkmg", ubidi_openSized_67) +STUB( + "ReHaWgTSwrg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE21intrusive_ptr_sub_refEPS7_) +STUB( + "ReJOJwhpsLU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEED1Ev) +STUB("ReK9U6EUWuU", _ZNSt8_LocinfoC2ERKSs) +STUB( + "ReOTBNjACr0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE4sizeEv) +STUB("RePA3bDBJqo", erff) +STUB("ReQKurupflQ", hb_font_funcs_set_glyph_extents_func) +STUB( + "ReVMj0UAyfQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEEC1Ev) +STUB( + "ReWqrajsuK0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE3endEv) +STUB("ReavgQg6KU8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEEaSERS6_) +STUB( + "RelZbr0g0t0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEEdeEv) +STUB("RenI1lL1WFk", getsockname) +STUB("RenWwlxG9Tw", _ZN15AbstractStorage7ContentD0Ev) +STUB( + "RerM6RNv3WQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE3endEv) +STUB("RevDxuwYd4o", _ZN3WTF10StringImpl6createEPKhj) STUB("Rf0XMVR7xPw", sceRemoteplaySetProhibition) +STUB( + "Rf16J+Gba5c", + _ZN7WebCore16NavigationActionC2ERNS_8DocumentERKNS_15ResourceRequestENS_20InitiatedByMainFrameENS_14NavigationTypeENS_28ShouldOpenExternalURLsPolicyEPNS_5EventERKN3WTF12AtomicStringE) +STUB("Rf1XDVI64Ck", + _ZN7WebCore20ScrollingCoordinator45setForceSynchronousScrollLayerPositionUpdatesEb) +STUB("Rf7JlmeY7AQ", mono_aot_Sce_Vsh_CloudClientunbox_trampolines_end) +STUB("RfCbjpui-2w", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getString10Ev) +STUB("RfDI9yBTxRM", _ZN7WebCore23ISOSchemeInformationBoxC2Ev) +STUB("RfEoZpq-3rU", _ZNK7WebCore17FrameLoaderClient11hasHTMLViewEv) +STUB("RfYAH7aupGY", _ZN7WebCore15AffineTransform15scaleNonUniformEdd) +STUB("RfZG5ulSg4g", _ZN23sceMetadataReaderWriter10jpegParser20jpegParserInitializeEv) +STUB("RfZauzDnpDk", _ZN12video_parser13cVideoMetaMP415setVideoContentEPNS_13iVideoContentE) +STUB( + "Rfe2Q530fd8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEC2EPS8_) STUB("RfiA17kV+xs", sceNpUtilGetNpLanguageCodeStr) +STUB("RfjBlXjaZeo", JVM_RawMonitorCreate) +STUB( + "Rfm9T4Fhns0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE4sizeEv) STUB("RfokKHMuOsE", sceNpAsmDeleteRequest) +STUB("RfpPDUaxVJM", _ZTVSt10moneypunctIwLb0EE) +STUB( + "RfxWyFo0HiU", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V138SetMultiVariablesRequestBody_variables11slotIdIsSetEv) +STUB("RfxdYHL5ZFM", _ZN3sce7Toolkit2NP15AppSTLAllocatorI13SceNpOnlineIdED2Ev) +STUB( + "Rfy85cjW584", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEC2Ev) +STUB( + "Rg+8JrVftJg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEEC2ERSA_) +STUB("Rg4-YsNA4kc", unumf_resultNextFieldPosition_67) +STUB("Rg6U0jZ1qqg", _ZNK7WebCore15VisiblePosition45lineDirectionPointForBlockDirectionNavigationEv) +STUB("Rg7MLXyCmtU", _ZNK7WebCore9SampleMap5emptyEv) +STUB( + "Rg8S0LEDYiY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE5beginEv) +STUB("Rg9KCjkElx4", _ZNK3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse17getPreviousOffsetEv) +STUB("RgBULe405TE", _ZN3sce7Toolkit2NP2V29Challenge9ChallengeC1Ev) +STUB("RgGW4f0ox1g", _ZN3sce2np5Mutex7DestroyEv) +STUB("RgJjmluR+QA", _ZTSSo) STUB("RgKmNey20Ns", sceUltReaderWriterLockLockWrite) +STUB("RgMwHBEqK0o", _ZN7WebCore7JSRangeD1Ev) +STUB("RgOf8lbDWjE", JVM_GetStackTraceDepth) +STUB( + "RgOloU5fT14", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEC2EPKS8_) +STUB("RgPLWdJJGBM", _ZN7WebCore11DisplayList8ClipPathD1Ev) +STUB( + "RgU+E9bx-1w", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEdeEv) +STUB( + "RgUM03vf9zI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEE5resetEPS9_) +STUB( + "RgZweYMvEJY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEC1Ev) STUB("RgfCYkjW7As", sceNpJsonParseBuf) +STUB("RghnEC6-6KE", _ZN15AbstractStorage14TwitterServiceD0Ev) STUB("Rgi0wr6wpDI", scePsmKitFontConfigGetFontPath) +STUB("RgknKSTfDwg", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_6TicketEE3getEv) STUB("RgminlbfK8E", sceEsvmEngineMediaKeySessionSetEventHandler) +STUB("RguMBf+bBTc", psl_suffix_count) +STUB( + "Rgxq+qmoFR4", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEED2Ev) +STUB( + "RgzoX0sv32Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEC2EPS6_PNS2_10LibContextE) +STUB("Rh1fNhr7hwk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEEC2ERSA_) +STUB( + "RhEPsjBlQ74", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("RhG8+YJU75Q", _ZN7WebCore15XPathExpressionD2Ev) +STUB( + "RhKON2shjYg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEEC2ERS9_) +STUB("RhL2wBT9qSA", delegate_virtual_invoke_8) +STUB("RhbZL2-rIZg", _ZN3NTF6ThreadC2Ev) STUB("RhjnQ70obPw", sceNpManagerIntGetGameTicket) +STUB("RhnILZh8cXw", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessionsC1ERS5_) +STUB("Rhp7q0HZhqw", mono_aot_Sce_PlayStation_PUIPlatformunwind_info) +STUB("RhseoLtPKqw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEEmmEi) +STUB( + "RhyIzHcU0gg", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfile16setincludeFieldsEPKc) +STUB( + "Ri6YWJclZXE", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEiRNS2_10LibContextEPT_m) +STUB( + "Ri77akUPMvw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEE11release_refEv) +STUB( + "RiA-QbWEAbo", + _ZN3sce2Np9CppWebApi11Matchmaking2V128PlayerForTicketCreateFactory6createEPNS1_6Common10LibContextERKmNS3_8PlatformEPNS5_12IntrusivePtrINS3_21PlayerForTicketCreateEEE) +STUB("RiGtVtTErVk", _ZN3sce7Toolkit2NP2V210Tournament16RegisteredRosterC2ERKS4_) +STUB("RiLSQiJPWls", ucasemap_utf8ToLower_67) +STUB("RiM5eDPbnXE", WKContextConfigurationSetIndexedDBDatabaseDirectory) +STUB("RiMz3Wlmt8Q", + _ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody16rulesetNameIsSetEv) +STUB("RiR59NzRUDE", _ZTVN7WebCore11DisplayList22ApplyDeviceScaleFactorE) +STUB("RiVjquXrI-E", mono_aot_System_Xml_Serializationunbox_trampoline_addresses) +STUB("Ria88uULvfA", rgctx_fetch_trampoline_mrgctx_106) +STUB( + "Ribx14NdYW8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEaSERS7_) +STUB("RidOPwWxJes", _ZN7WebCore9DOMWindow4openERS0_S1_RKN3WTF6StringERKNS2_10AtomStringES5_) +STUB( + "Rif74LWfcXI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("Rih7HnIM3JQ", _ZN4IPMI6Client6Config24estimateClientMemorySizeEv) +STUB( + "RiiOt3DGjyU", + _ZN9Inspector15ScriptArguments6createERN3JSC9ExecStateEON3WTF6VectorINS1_6StrongINS1_7UnknownEEELm0ENS4_15CrashOnOverflowELm16EEE) +STUB( + "RiroA2KiNys", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("Rix4c1-MsHE", mono_aot_System_Netunbox_trampoline_addresses) +STUB( + "Rj1cdK6XqPY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE8pushBackERKS8_) +STUB( + "Rj3C1c2YSpo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEE5resetEPS9_) +STUB( + "Rj4ZReyQUd4", + _ZN3sce2Np9CppWebApi14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBody10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_26RequestPlayerSessionPlayerEEEEE) +STUB("Rj4qy44yYUw", __negdi2) +STUB( + "Rj5+FLclwHQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEC2Ev) +STUB("RjBsrMJgrjk", u_islower_67) +STUB("RjCz7r4tq1o", _ZN7WebCorelsERN3WTF10TextStreamERKNS_15AffineTransformE) +STUB("RjG7Uj67c8w", _ZN3sce7Toolkit2NP2V27Session7Request6Update15LOWEST_PRIORITYE) +STUB("RjGUg+dHHXM", _ZN3JSC2VM33unlinkedProgramCodeBlockSpaceSlowEv) +STUB("RjGdYjKDVA4", _ZN7WebCore9HTMLNames27onwebkitfullscreenerrorAttrE) +STUB("RjJanSh8LHo", _ZN25MmsFileUpdaterFsOperation12writeTmpFileEPKvm) +STUB( + "RjJopNcMfFc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEptEv) +STUB( + "RjLhZsKMoWg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE6resizeEj) STUB("RjMlsR8EXrw", sceSaveDataTransferringMountPs4) +STUB( + "RjP6EdmFhuM", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectatorC1Ev) +STUB( + "RjPhhAMXXqU", + _ZN3JSC7JSProxy16getPropertyNamesEPNS_8JSObjectEPNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("RjRflLHq+zA", _ZNK7WebCore14FrameSelection21shouldChangeSelectionERKNS_16VisibleSelectionE) +STUB( + "RjStYGPGQcs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "RjVFqiZk0to", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEptEv) +STUB("RjWhdj0ztTs", _ZTISt9basic_iosIwSt11char_traitsIwEE) +STUB( + "RjbmUrQcU28", + _ZNK7WebCore33StickyPositionViewportConstraints32layerPositionForConstrainingRectERKNS_9FloatRectE) +STUB("Rjf8NliPAj8", _ZN7WebCore21NetworkStorageSession13getAllCookiesEv) +STUB("RjfcV4Putto", _ZTVN15AbstractStorage4ItemE) +STUB("RjgDFRWEuD8", _ZTVN9Inspector14InjectedScriptE) +STUB("RjhfMtr+HRI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEED2Ev) +STUB("Rji2OxXRDkU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEED1Ev) +STUB("RjmV+cXDxkI", _ZN7WebCore29PerspectiveTransformOperationC2ERKNS_6LengthE) +STUB( + "RjtW8OY7ZjE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE3endEv) +STUB("RjvIyaLoDHU", _ZN25MmsFileUpdaterFsOperation10AllocLargeEm) +STUB("Rjze+87fw+Q", u_catgets_67) +STUB( + "Rk-LaLv8rzI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody17setNpServiceLabelERKj) +STUB( + "Rk0rxWMwces", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEptEv) +STUB("Rk2dfLnFK5s", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEED1Ev) +STUB("Rk2hZO6aoNQ", _ZN7WebCore23CoordinatedImageBackingD2Ev) +STUB( + "RkMCBV-2U7M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEaSERKS9_) +STUB("RkNnZG+nFO0", mono_aot_Sce_Vsh_MarlinDownloaderWrapperunbox_trampolines) STUB("RkNs5WxpMzg", sceDebugAttachProcess) +STUB( + "RkP8DPZXAdU", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V122LastUpdatedUserFactory7destroyEPNS3_15LastUpdatedUserE) +STUB("RkPddKR+4zY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEmmEv) +STUB("RkPmqEI8Vv0", mono_aot_System_Xml_Linqjit_code_start) +STUB("RkSFw3znsvI", mono_aot_file_info) +STUB("RkVBJ5-M1bo", _ZN23sceMetadataReaderWriter20LoadedParserInfoList13releaseParserEj) +STUB( + "RkWBvJZZ4xw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEED2Ev) +STUB( + "RkY8-Cq7t0w", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE5emptyEv) +STUB( + "RkaqMMDQJp4", + _ZN15AbstractStorage14YoutubeService23create_storage_instanceERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("RkdBEmqeOcw", WKPreferencesSetDataTransferItemsEnabled) +STUB("RkfkkJJ+QJg", mono_aot_platformjit_got) +STUB( + "RkiFQ64Mb8Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE8copyFromERKS9_) +STUB( + "RkjJTE0aF4I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE6resizeEj) STUB("Rkt0bVyaa4Y", sceNpTrophySystemGetTrophyIcon) +STUB( + "RkwFKEYpBWU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE5beginEv) +STUB( + "Rl0N6IaKaHo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEEcvbEv) +STUB( + "Rl1lXrA8jiU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEC2Ev) +STUB( + "Rl357jbvh1A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEC2Ev) +STUB("Rl77jfResVg", _ZN3sce7Toolkit2NP2V210Tournament10TeamMemberD1Ev) +STUB("Rl7DmeuWZ08", _ZN7WebCore14ScrollableAreaD2Ev) +STUB("RlB3+37KJaE", _ZNSt12placeholders2_9E) +STUB( + "RlE2mhkZ72U", + _ZN7WebCore20ResourceHandleClient16didReceiveBufferEPNS_14ResourceHandleEON3WTF3RefINS_12SharedBufferENS3_13DumbPtrTraitsIS5_EEEEi) +STUB("RlGUiqyKf9I", lgammaf_r) +STUB( + "RlQz5S5A3xk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEmmEi) +STUB( + "RlRpmOAjzTk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE8capacityEv) +STUB( + "RlSeLrJl57Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEE3getEv) +STUB("RlZD6Qw4LMo", _Read) +STUB( + "RlZeP5kjzk0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEC2EPS6_PNS2_10LibContextE) +STUB("RlZwfEuRDx8", res_read) +STUB("RlewTNtWEcg", _WStodx) STUB("RlhJVAYLSqU", sceLibcHeapUnsetTraceMarker) +STUB("RlnmEoT+BEA", _ZN7WebCore21DisplayRefreshMonitorC2Ej) +STUB("Rlr3YSixzLk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEcvbEv) STUB("Rlx+bykm0r0", sceAgcDcbDrawIndexMultiInstanced) STUB("Rm+hiwvSnxw", sceFiosDateToComponents) +STUB("Rm023prXGDw", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11InvitationsEED1Ev) +STUB( + "Rm2ugbiAr5g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEEC2EPS8_PNS2_10LibContextE) +STUB("Rm4ISbilvNY", _ZN7WebCore11MathMLNames8formAttrE) +STUB("Rm6Y9lnzm3c", WKBundlePageSetDefersLoading) +STUB( + "Rm7deMqNmmg", + _ZN3sce7Toolkit2NP2V28Commerce21displayJoinPlusDialogERKNS3_7Request21DisplayJoinPlusDialogEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("Rm8YmyDu82k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEEC1ERKS7_) +STUB( + "Rm9RKVc6bgI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEC1EPS8_) +STUB( + "RmDGFREFO-w", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("RmE3aE8WHuY", j0f) +STUB("RmH4XNEy58M", rgctx_fetch_trampoline_mrgctx_98) STUB("RmJKkzZFNFA", scePlayerReviewDialogTerminate) +STUB("RmNxmcXzi0k", uidna_nameToUnicode_67) STUB("RmRtBJpoHlA", sceVrServiceDialogUpdateStatus) +STUB("RmVwZgoPrJQ", mono_aot_System_Runtime_Extensionsjit_got) STUB("RmaJwLtc8rY", sceAgcDcbSetBaseIndirectArgs) +STUB("RmbbHWTxhgM", _ZN7WebCore5Frame17setPageZoomFactorEf) STUB("RmkXfBcZnrM", sceFontGlyphRenderImage) +STUB( + "RmmdswVWm1c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEmmEi) +STUB("RmnVV1kkssM", _ZN7WebCore9HTMLNames27onaccessiblecontextmenuAttrE) +STUB("Rmo9SeaFHJs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEEeqERKS7_) +STUB( + "RmqaDE7ZCBM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEE3getEv) +STUB( + "RmsVbOAI8Xg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEE7add_refEv) +STUB( + "RmvjkhQol34", + _ZN7WebCore24DocumentMarkerController38updateRectsForInvalidatedMarkersOfTypeENS_14DocumentMarker10MarkerTypeE) +STUB("Rn+JdhbkiEk", mono_aot_I18N_CJKjit_got) +STUB("Rn07lkgjN44", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody6toJsonERNS_4Json5ValueEb) STUB("Rn32O5PDlmo", sceSystemServiceEnableSuspendConfirmationDialog) +STUB("RnAMRwEK40U", _ZN7WebCore11FrameLoader25detachFromAllOpenedFramesEv) +STUB("RnBhW7nM92c", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13WhoLikedStoryEE7addressERS3_) STUB("RnDibcGCPKw", sceVideodec2QueryComputeMemoryInfo) +STUB( + "RnF0SafSl1A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEaSERS7_) +STUB("RnMFohgWKNo", bemp2sys_psdecoder_destroy) +STUB( + "RnOQ74LnhTM", + _ZN3sce2Np9CppWebApi14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyC1EPNS1_6Common10LibContextE) +STUB("RnOtQ1-DQSs", png_set_strip_16) STUB("RnQP8brvnJc", sceDataTransferRequestRebootAuthPS4) +STUB("RnSBEHJuqXA", _ZN3NTF17URLRequestFileJobD0Ev) +STUB( + "RnV51MT9OU0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("RnVb156HcOw", _ZN3sce7Toolkit2NP2V211SharedMedia10ScreenshotD1Ev) +STUB("RnWfuqSPs2Y", ucnv_createConverterFromSharedData_67) STUB("RnY2HTwqz3A", sceShellCoreUtilClearPsnAccountInfo) +STUB( + "RndEg1EDcg4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEaSERKSA_) +STUB( + "RnetrIdbHpQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("Rnf7NEqkmv0", _ZN3sce2np10JsonParserC2Ev) +STUB("RngO8QrVgsM", _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeIPcPvEEeqERKS7_) +STUB("RniTdMj3K24", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12setBoolean10ERKb) +STUB( + "RnkjCdM8eIk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEC1Ev) +STUB( + "RnofkgQIlrE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB("RnqlvEmvkdw", _malloc_finalize_lv2) +STUB( + "Ro--jSMhtX0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE6resizeEj) +STUB("Ro0z2gDLiGE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE7reserveEi) +STUB("Ro2ieAw9m3g", _ZN7WebCore26UserTypingGestureIndicatorC2ERNS_5FrameE) STUB("Ro4sI9xgYl4", sceNpTrophySystemGetTrophyConfig) +STUB("RoG6zFjMczI", _ZN3WTF3URL7setHostENS_10StringViewE) +STUB("RoGYFndJkAU", _ZN7WebCore7RunLoop4mainEv) +STUB("RoHCyY7B6z0", _ZN3sce7Toolkit2NP2V24Core12ResponseBaseD2Ev) +STUB("RoIWhEt0jTg", _ZNK7WebCore11MediaPlayer13isVideoPlayerEv) +STUB( + "RoNvYGJ6MMg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE7popBackEv) +STUB( + "RoOulmakF2U", + _ZN3WTF33indexOfBestMatchingLanguageInListERKNS_6StringERKNS_6VectorIS0_Lm0ENS_15CrashOnOverflowELm16ENS_10FastMallocEEERb) +STUB( + "RoWEyP04vGM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB( + "RohovwYkYO8", + _ZNK7WebCore12RenderObject21localToContainerPointERKNS_10FloatPointEPKNS_22RenderLayerModelObjectEjPb) +STUB( + "RoiTvhwOekc", + _ZN3JSC41constructObjectFromPropertyDescriptorSlowEPNS_14JSGlobalObjectERKNS_18PropertyDescriptorE) +STUB( + "RolXukwAUco", + _ZN3sce2Np9CppWebApi7Matches2V125RequestMatchPlayerFactory6createEPNS1_6Common10LibContextEPKcNS3_10PlayerTypeEPNS5_12IntrusivePtrINS3_18RequestMatchPlayerEEE) +STUB( + "Ror82sJOqNo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEixEm) +STUB( + "RovQYAXDwGg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEEptEv) STUB("RoxM-Cpzm9s", sceNpGriefReportWriteReportItem2) +STUB( + "RoxVwYopCmY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEEC2ERKSA_) +STUB("RoyFXHDuJm8", _ZN9Inspector14ConsoleMessage20autogenerateMetadataEPN3JSC9ExecStateE) +STUB("Rp0tk2oTsyo", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEEC2Ev) +STUB("Rp4f0JT5fv8", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSessionC1EPNS1_6Common10LibContextE) +STUB("Rp7ohevt4UA", monoeg_g_slist_concat) +STUB("Rp9iL14V1GI", _ZN3JSC20createReferenceErrorEPNS_9ExecStateERKN3WTF6StringE) +STUB("RpDhBSG4igY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10ContainersEE5resetEv) +STUB("RpEyMBxVQ6c", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request15GetSharedVideosD2Ev) +STUB( + "RpGJGA+cZPc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("RpHyuxGYUak", _ZN3sce2Np9CppWebApi6Common6VectorIlE7reserveEi) STUB("RpQJJVKTiFM", sceKernelGetModuleInfoForUnwind) +STUB("RpRObgLAv5I", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching5RoomsEE12deepCopyFromERS7_) +STUB("RpT0YFb-mTs", _ZN23sceMetadataReaderWriter13KeyValueArray6expandEPFPvmEPFvS1_E) +STUB("RpTR+VY15ss", fmaf) +STUB( + "RpVPoZjwa6o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEppEv) +STUB("RpWWfCEs9xA", _ZN3sce2np9EventFlagD2Ev) +STUB( + "RpZ0fNjMKjA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEC1Ev) +STUB("RpawlmTpuT0", _ZNK3sce2Np9CppWebApi7Matches2V117LeaveMatchRequest6toJsonERNS_4Json5ValueEb) +STUB( + "Rpb4rNaPXXk", + _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody11setLocationERKNS1_6Common12IntrusivePtrINS3_8LocationEEE) +STUB( + "Rpegwa-NBss", + _ZN7WebCore16HTMLMediaElement25clearMediaCacheForOriginsERKN3WTF6StringERKNS1_7HashSetINS1_6RefPtrINS_14SecurityOriginENS1_13DumbPtrTraitsIS7_EEEENS_18SecurityOriginHashENS1_10HashTraitsISA_EEEE) +STUB("RphXg4BeVqQ", _ZN3sce7Toolkit2NP2V24Core11RequestBaseD1Ev) +STUB("RphzLPLLB24", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfileD1Ev) +STUB( + "RpjBDcbVUJE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE5beginEv) +STUB( + "RpmNuh1pVHc", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeaders6createEPNS1_6Common10LibContextERNS6_12IntrusivePtrIS5_EEl) +STUB("RpoSU2ZTsd4", _ZNK7WebCore16HTMLMediaElement8controlsEv) +STUB("RppFSTaZQuU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEC1ERKS7_) +STUB( + "Rpsf6Jr-Ws8", + _ZN3sce2Np9CppWebApi14ConnectAccount2V215PSNErrorFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_14PSNError_errorEEEPNS8_INS3_8PSNErrorEEE) +STUB( + "RpyCOV9Xclg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEC2Ev) +STUB("RpyEppnI3OI", _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead15searchableIsSetEv) +STUB("RpzLa-jjWnA", AES_set_encrypt_key) +STUB("Rq-mcimfzv8", mono_aot_Sce_Vsh_AppDbWrapperunbox_trampoline_addresses) +STUB( + "RqAteJF3ucM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEdeEv) +STUB("RqBXw-IeUdY", _ZN3WTF3MD5C2Ev) STUB("RqBl+ySY4vo", sceTextToSpeechGetAudioDataImpl) +STUB("RqGNK8FGY6w", _ZNK7WebCore3URL8protocolEv) +STUB("RqGy2jv+mi4", jinit_forward_dct) +STUB( + "RqH-wRv3Eak", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB("RqKeKg76Z-E", mono_btls_x509_crl_ref) +STUB( + "RqNp99iunD8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) STUB("RqXSv8zF1A0", sceNpIsDevelopmentMode) +STUB("RqYz+BBCzSA", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18SessionInformationEEC2Ev) +STUB("RqcWVDCXZcY", eglCreatePbufferFromClientBuffer) +STUB("RqeErO3cFHU", _ZSt15set_new_handlerPFvvE) +STUB( + "RqecvRikR2A", + _ZN3sce7Toolkit2NP8Sessions9Interface18postInvitationDataEPKNS1_25PostInvitationDataRequestEPNS1_9Utilities6FutureIiEEb) STUB("Rqm2OnZMCz0", sceNetCtlUnregisterCallback) STUB("RqmKxBqB8B4", sceAudioOutGetInfoOpenNum) +STUB( + "Rqn6yA1A4zY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE5beginEv) +STUB( + "RqnomNr+HmM", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_8Timeline10InstrumentEEESt8optionalIT_ERKN3WTF6StringE) +STUB("RqoJBNCaLyo", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead21createdTimestampIsSetEv) +STUB( + "Rqr+gpN0EDw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEdeEv) +STUB("Rqr11daK9Y8", _ZN7WebCore21ISOTrackEncryptionBoxD1Ev) +STUB("RqrxNswlH8E", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets12setaccountIdEPKc) +STUB("Rqu9OmkKY+M", _ZNKSt7_MpunctIcE16do_negative_signEv) +STUB( + "Rqv1nNvg4ps", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEED2Ev) +STUB("RqvDF94RWtM", mono_aot_System_Reactive_Linqunbox_trampolines) +STUB("Rqx3LOJrTkU", uprv_decContextGetRounding_67) +STUB("Rr+boVQrSJ0", mono_object_new_from_token) +STUB( + "Rr-phKduf2I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEaSERKS7_) +STUB("Rr-uWbN4m3k", __wrap_fchown) +STUB( + "Rr-yrB6DDDk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEC2EPS8_) +STUB( + "Rr1p24Dyq+w", + _ZN3sce2Np9CppWebApi11UserProfile2V111PresenceApi17getBasicPresencesEiRKNS4_28ParameterToGetBasicPresencesERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_25GetBasicPresencesResponseEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB( + "Rr5ZbDFqTrs", + _ZN7WebCore20LegacySchemeRegistry57removeURLSchemeRegisteredAsBypassingContentSecurityPolicyERKN3WTF6StringE) +STUB("RrAO7vD8LOk", _ZN3sce7Toolkit2NP18GetUserNewsRequestC2Ev) +STUB("RrKEs-aY2dU", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEEixEm) +STUB("RrTAXQpHW-4", WKPreferencesGetInvisibleMediaAutoplayPermitted) +STUB("RrTMGyPhYU4", _ZNSt8messagesIwEC1ERKSt8_Locinfom) +STUB("RrcozTK0fHM", _ZN7WebCore11DisplayList15FillRoundedRectD1Ev) +STUB( + "RrfREJ703yU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("RrrkSeBmV6U", _ZN7WebCore11DisplayList13ClipOutToPathC2ERKNS_4PathE) STUB("RrvyU1pjb9A", sceHmdReprojectionStartCapture) STUB("Rrweo0oucwA", sceVnaGetVoiceOskOptInStatus) +STUB( + "Rs+371WBAGk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE6resizeEj) +STUB("Rs4sSDmju0M", + _ZN3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsersC1ERS5_) +STUB( + "RsBFJ7Pz06E", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("RsE1XZv-zxk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEED2Ev) STUB("RsKVKhSWt28", sceMbusGetDeviceInfo_) +STUB("RsQ6zCBsa74", Java_java_io_FileDescriptor_sync0) +STUB( + "RsWQg-ioOLY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEE5resetEPS9_) +STUB("RsXKouwncL8", + _ZN8meta_gen11MsvPromoter12initKeyValueENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB("RsYAxp0AdKM", _ZN3sce7Toolkit2NP10IdDatabaseC1ERKNS1_15CommunicationIdERKNS1_9NpTitleIdEPKc) +STUB( + "RsYd99APlyQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "Rsbj2OmLu6s", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEptEv) +STUB("RscnkGyTvMg", uiter_previous32_67) +STUB( + "RsdW3XKwrSQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEE3getEv) +STUB("RseMy5PTCOo", _ZN3JSC11VMInspector8isInHeapEPNS_4HeapEPv) STUB("RsiCFJMIGHw", sceLibSecureCryptographyDeleteContext) STUB("RsiyvBXx3Bs", sceKernelStreamWriteWrite) +STUB( + "RsmfIkiavxs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEC1Ev) STUB("RspeWYDJCJs", sceIduUtilSystemVersion) +STUB("RsqYVnhRk+w", _ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_23NpSessionInvitationInfoEE8max_sizeEv) +STUB("Rsrf1HN3218", _ZNK7WebCore6Editor9canDeleteEv) +STUB( + "RsxPAenI3VI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("Rt-mDWXgcEM", Java_java_lang_Throwable_getStackTraceDepth) +STUB( + "Rt1dwHwagns", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEEC1Ev) +STUB( + "Rt3Mnr67g7s", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeader12getsessionIdEv) +STUB("Rt3lL1byIzc", _ZN3WTF14AtomStringImpl3addEPNS_10StringImplEjj) +STUB("RtALSqAxYHw", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIfEppEi) +STUB( + "RtB+prGj9HU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEmmEi) +STUB("RtDRKO8oxg4", mono_aot_Sce_Vsh_Stickerunbox_trampolines_end) +STUB("RtIzL0k5tgA", _ZN3sce7Toolkit2NP2V28Commerce7Request21DisplayJoinPlusDialogC1Ev) STUB("RtJ7a7UemgQ", sceCesMbcsStrGetUtf32Len) STUB("RtLRV-pBTTY", pthread_attr_getschedpolicy) +STUB("RtYrWZBWJhU", _ZN7WebCore12JSAudioTrack15subspaceForImplERN3JSC2VME) +STUB("RtZTpGeo+2U", _ZN7WebCore21isBackForwardLoadTypeENS_13FrameLoadTypeE) +STUB( + "RteR2KNcdlY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEeqERKS9_) +STUB( + "RtgexpEgYHg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEdeEv) +STUB("Rthw9zEAbIM", _Z34sceGpuDebuggerUnregisterShaderCodePKN3sce3Gnm16GsStageRegistersE) +STUB("RtkYxZiFXw8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEC1Ev) +STUB( + "Rtn2Xw7gr0g", + _ZN7WebCore16NativeNodeFilterC2EPNS_22ScriptExecutionContextEON3WTF3RefINS_19NodeFilterConditionENS3_13DumbPtrTraitsIS5_EEEE) +STUB("RtnIyxc1rNQ", rgctx_fetch_trampoline_mrgctx_88) +STUB( + "RtqWbChL-AQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "RtsPZjAD4hU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEEC2ERKSA_) +STUB("Rttr2uVv9xA", ucnv_fromUCountPending) STUB("RtwM77LoIrc", sceAvSettingNotifyProcessPostResume) +STUB("RtxH9zkZBJc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE7popBackEv) STUB("Ru36fiTtJzA", scePthreadAttrGetstackaddr) +STUB("Ru5P+vR-vao", _ZNK7WebCore14DocumentLoader11subresourceERKN3WTF3URLE) +STUB( + "RuCs3IkoeiY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "RuJCLVlRJbk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEixEm) +STUB("RuMrq4gwRhQ", mono_aot_ReactNative_Vsh_Commonunbox_trampolines_end) +STUB("RuOU9dUyjLw", udata_setAppData) +STUB("RuRXBh3D8E0", _ZN9Inspector26AnimationBackendDispatcherD1Ev) STUB("RuSca8rS6yA", sceImeVshSetSelectGeometry) +STUB( + "RuSjbeoChqY", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("RuTO+J0fvss", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEE11get_deleterEv) STUB("RuVwHEW6dM4", sceNetConfigDelDefaultRoute) +STUB("RuX7cf41QQ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEED2Ev) +STUB("RujUxbr3haM", _ZN3sce4Json11InitializerD1Ev) +STUB( + "RunrlzwBOz0", + _ZN3sce7Toolkit2NP7Friends9Interface14getFriendslistEPNS1_9Utilities6FutureISt6vectorINS1_6NpUserENS1_15AppSTLAllocatorIS7_EEEEEb) +STUB( + "RuuALGxtN+U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE8pushBackERKS8_) +STUB( + "RuuASUQgnsE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEptEv) +STUB("Ruv+9ATolpg", Java_java_awt_GnmGraphics_disposePSD) +STUB( + "RuwWysCw8FA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEEaSERKSA_) +STUB("Rv4UH0cDulY", _ZN7WebCore24CoordinatedGraphicsLayer30deviceOrPageScaleFactorChangedEv) +STUB("Rv4kfpXDJok", g_string_printf) +STUB( + "Rv5nQWWU200", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB("Rv88hJSMFR4", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku7unsetIdEv) +STUB("RvFx7dv9ThU", FT_Stroker_ParseOutline) +STUB( + "RvH9AZ5rCkQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE5beginEv) +STUB( + "RvHMomqrfo8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "RvI41-inhYU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEC1Ev) +STUB( + "RvNzHNFyog8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEEaSERKSA_) +STUB( + "RvOx9BGP8xo", + _ZN7WebCore15SQLiteStatement21getColumnBlobAsVectorEiRN3WTF6VectorIhLm0ENS1_15CrashOnOverflowELm16EEE) +STUB("RvSjdfZQRMQ", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanityC1Ev) +STUB( + "RvTeyG3XiWQ", + _ZN9Inspector14InjectedScript8evaluateERN3WTF6StringERKS2_S5_bbbbRNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsIS9_EEEERbRSt8optionalIiE) +STUB( + "RvXewin0NPI", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getInteger9Ev) STUB("RvXyHMUiLhE", sceFontOpenFontFile) +STUB("RvaVAKD9xD4", _ZN3JSC7JSProxy10putByIndexEPNS_6JSCellEPNS_14JSGlobalObjectEjNS_7JSValueEb) +STUB("RvdTub6h5Yc", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContaineraSERS5_) +STUB( + "Rvel0hbGLkc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE21intrusive_ptr_sub_refEPS9_) +STUB("RvepgCjo-VE", _ZN7WebCore13GraphicsLayer12replaceChildEPS0_S1_) +STUB("RvnbP6R6-Oc", _ZN3sce2Np9CppWebApi14SessionManager2V118LeaderWithOnlineIdD2Ev) +STUB("RvsFE8j3C38", y0) +STUB( + "RvtxTc-V0sE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEneERKS9_) +STUB("RvvvsJ-ilks", sqlite3_next_stmt) +STUB( + "Rvz-B1fXFEI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEEC2Ev) +STUB( + "Rw+7h8qK9K4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE5beginEv) +STUB( + "Rw-sJO4mrjI", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getBoolean6Ev) +STUB("Rw0L25eAWzQ", + _ZN3JSC21throwOutOfMemoryErrorEPNS_14JSGlobalObjectERNS_10ThrowScopeERKN3WTF6StringE) +STUB( + "Rw0lGSb+teE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEixEm) +STUB( + "Rw31DhaKoHI", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets28setxPsnAcceptPlatformNamePs5ENS5_25XPsnAcceptPlatformNamePs5E) +STUB("Rw4J-22tu1U", __signbit) +STUB( + "Rw4qpIaeTiM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEED2Ev) +STUB("RwFGJfFTjm4", _ZN22MmsMdCommonFsOperation8seekFileElb) +STUB( + "RwHme3uw13Y", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE3endEv) STUB("RwTMau4aDsc", sceVshAvcapCreateSyncer) +STUB("RwUXr5EN1tQ", mono_aot_Sce_Vsh_FileSelectorAdvancejit_got) STUB("RwXD8grHZHM", sceSslFreeSslCertName) +STUB("RwZPsC62+S8", udata_readInt32_67) +STUB("Rwe3Y6SOUGU", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt6vectorI16SceNpTusVariableNS2_IS4_EEEEeqERKS7_) +STUB("Rwe8bHavOL0", curl_msnprintf) +STUB( + "Rwgxs7tgagk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE7reserveEi) +STUB("RwiDAkmZDdk", _ZN3JSC17JSArrayBufferView6s_infoE) +STUB( + "RwiPV1nH+5k", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEdeEv) +STUB( + "RwiUrDYeifs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEEdeEv) +STUB( + "RwppYiXKTHg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEE11get_deleterEv) +STUB( + "RwqaVSgB-DE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("Rwt38wvN3Fw", _ZN7WebCore6Path2DdlEPv) +STUB("RwtKDS3Y0r8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE21intrusive_ptr_sub_refEPS7_) +STUB("RwumIOnuNgg", monoeg_g_strjoin) +STUB("RwxEnlbCkug", _ZN7WebCore22HTMLPlugInImageElement29setIsPrimarySnapshottedPlugInEb) +STUB( + "Rx098xv36AM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEdeEv) +STUB( + "Rx0G9HXgK5c", + _ZN7WebCore17FrameLoaderClient23getLoadDecisionForIconsERKN3WTF6VectorISt4pairIRNS_8LinkIconEmELm0ENS1_15CrashOnOverflowELm16EEE) +STUB("Rx4pkLP87t4", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE4sizeEv) +STUB( + "Rx654ztYkXg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "RxA6F3KGM+s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEE11get_deleterEv) +STUB("RxAe1wo8Xgs", _ZN3sce7Toolkit2NP2V23TUS7Request17TryAndSetVariableC2Ev) +STUB("RxDsxb4GOQU", NET_SetSockOpt) +STUB( + "RxESdmR+oEo", + _ZN9Inspector25DebuggerBackendDispatcher24continueUntilNextRunLoopElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "RxJn+UQFRd8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEE11get_deleterEv) +STUB("RxJnJ-HoySc", _ZNSt10moneypunctIcLb1EEC2EPKcm) +STUB("RxLYLPYPMBU", mono_class_interface_offset) +STUB("RxLscALFA00", _ZN7WebCore17HTMLCanvasElement26setTracksDisplayListReplayEb) +STUB( + "RxM-tHC8eP4", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions9getfieldsEv) +STUB("RxOid2QDjOY", _ZN7WebCore10FileSystem23getFileModificationTimeERKN3WTF6StringERl) +STUB( + "RxRHL0zOKdY", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayer12getsessionIdEv) +STUB("RxRtEFonL5U", _ZN3WTF23openLatin1UTextProviderEPNS_15UTextWithBufferEPKhjP10UErrorCode) +STUB( + "RxW3ewUY1X4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEE7get_refEv) +STUB( + "RxZpWhfKTr8", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersaSERS5_) +STUB("RxbpvVvQ20Q", _ZN7WebCore8Document10setFgColorERKN3WTF6StringE) +STUB("Rxedyw6GM4s", mono_print_jit_stats) +STUB( + "Rxmb6bKI+Js", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEplEm) +STUB("Rxo692-q6Ew", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session14InvitationDataEEC2Ev) +STUB( + "Rxym2sUJ3GI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEC1Ev) +STUB("Ry-7AGNI3Ek", _ZN3sce7Toolkit2NP2V28Commerce11SubCategoryC1Ev) +STUB("Ry2Bjw-gItY", _ZN7WebCore17JSDOMGlobalObject4infoEv) +STUB( + "Ry4AbP3VMVY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEC2EPKS8_) STUB("Ry4u8KxkVY4", sceLncUtilIsShellUiFgAndGameBgCpuMode) +STUB( + "RyEzq+tAc+M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEE11release_refEv) +STUB( + "RyGqPlc0KLI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) STUB("RyH9AbKq4z8", sceUserServiceSetNotificationSettings_2) +STUB( + "RyJX9jv4BSE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEE11release_refEv) +STUB( + "RyQqk+nHYNA", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead9setMemberERKNS1_6Common12IntrusivePtrINS3_24GameSessionMemberForReadEEE) +STUB( + "RyWKwyrNWrA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "RyWO+DLG9cU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE5clearEv) +STUB( + "RyXj8wS5JSU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEixEm) +STUB( + "RyZtrdxap9g", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEeqERKS9_) +STUB("RyaN3XDQgE0", mono_aot_Sce_Vsh_SystemLoggerUtilWrapperplt_end) STUB("Ryaa0CMieNs", sceMbusResolveByHandle) +STUB( + "RybKgkW3mVc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEE3getEv) +STUB( + "RykmGFW6zYY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEE5resetEPS6_) +STUB("Ryxg825BH5c", AnnotateUnpublishMemoryRange) +STUB("RyzZwc+IlKY", jpeg_default_qtables) +STUB("Rz+V6LHWtVY", g_ptr_array_add) STUB("Rz00FuIBcIk", sceMbusDebugAcquireControlWithState) +STUB("Rz00kiTKypo", _ZN3sce4Json6String6appendERKS1_) +STUB("Rz1FOwuPhM8", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEEC2Ev) STUB("Rz3BPMKO8aw", sceCesRefersUcsProfileGbT1988Tilde0x7e) +STUB("Rz4bj0OFlSc", + _ZN3sce2Np9CppWebApi7Matches2V120RequestTeamStatisticC2EPNS1_6Common10LibContextE) +STUB( + "Rz5M5L+9X9g", + _ZNK7WebCore9FrameView35convertFromContainingViewToRendererEPKNS_13RenderElementERKNS_7IntRectE) STUB("Rz5fOEsYd7A", sceMusicCoreServerTriggerEventSync) +STUB("RzAvXcBNNiQ", _ZN3JSC4Heap31collectNowFullIfNotDoneRecentlyENS_15SynchronousnessE) +STUB( + "RzCHr5TmwcQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE5clearEv) +STUB("RzGLHpwR2+k", _ZN7WebCore17LibWebRTCProviderdaEPv) +STUB("RzIp2F6E1sE", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEdeEv) +STUB( + "RzJr+LF13gI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE8pushBackERKS8_) STUB("RzLv+HR5E2A", _sceNpHeapStrndup) +STUB("RzM4ZhlKzPg", cairo_stroke_preserve) +STUB("RzP3g0KLcU0", mono_aot_Sce_Vsh_Np_Snsjit_code_start) +STUB( + "RzP6DS58dhA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEED2Ev) +STUB( + "RzPLcZu1yLY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEC1EPNS2_10LibContextE) +STUB( + "RzRsLY0gRWM", + _ZN7WebCore27AuthenticationChallengeBaseC2ERKNS_15ProtectionSpaceERKNS_10CredentialEjRKNS_16ResourceResponseERKNS_13ResourceErrorE) +STUB("RzbrOfSypGY", _ZNSt13basic_ostreamIwSt11char_traitsIwEE5_OsfxEv) +STUB( + "RzcF0C6HgcM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE3endEv) +STUB("RzgDJTjQst4", FT_Stream_GetULongLE) +STUB("RzkJnWJ9iOs", _ZN7WebCore20ResourceResponseBaseC2Ev) +STUB( + "RzkzW7iyGFI", + _ZNK7WebCore21NetworkStorageSession33hasHadUserInteractionAsFirstPartyERKNS_17RegistrableDomainE) +STUB( + "Rzlo3dK7LZA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEneERKS9_) +STUB( + "RznmmDjwqag", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "Rzo0Igx8swk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE5beginEv) +STUB( + "RzoMpIbidqg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEC2Ev) +STUB("RzpC7lMtWpc", _ZTVN9Inspector31ScriptProfilerBackendDispatcherE) STUB("Rztm+4l7XEM", scePerfTraceAprNameStart) +STUB( + "RzvPDgtaG28", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEixEm) +STUB("Rzx5aXYaArw", GCC_except_table468) +STUB( + "Rzy+5A3NsXc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEeqERKS9_) +STUB( + "S+-pKKRhaqw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "S+1CxQje3PM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE6resizeEj) +STUB( + "S+AZUoBeZsg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB("S+AaqlJfcYs", uspoof_internalInitStatics_67) +STUB("S+BoWKxc3Ck", mono_assembly_load_full) +STUB( + "S+BuzuRAS0c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE8pushBackERKS8_) +STUB("S+DS7qbKNOo", _ZN7WebCore18throwThisTypeErrorERN3JSC9ExecStateERNS0_10ThrowScopeEPKcS6_) +STUB("S+EGYMBGJq8", _ZN15AbstractStorage12LocalService4StopEv) +STUB( + "S+HfZFjskXc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE3endEv) STUB("S+NgTvWVJLA", sceImeBackendGetCandidateListSize) +STUB("S+OTMjuF3sk", _ZN7WebCore18PrewarmInformationD1Ev) +STUB( + "S+QjLuzIGbs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEC2EPS8_) +STUB("S+SW4ma583w", _ZN7WebCore27CSSComputedStyleDeclarationC2ERNS_7ElementEbRKN3WTF6StringE) +STUB("S+VELC8NeKY", ucsdet_setText_59) +STUB("S+Y25kH5Rn4", _ZN7WebCore16HTMLTableElement11createTBodyEv) +STUB( + "S+YQZNz+Tx8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEEC1ERKSA_) +STUB("S+ZcHjyG+RM", mono_string_intern) +STUB("S+a+rgnGX8A", _ZN3sce2np14CalloutContextD1Ev) +STUB("S+fnL7WPZq4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEED2Ev) +STUB( + "S+m99-MF3ws", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEC1EPS8_) STUB("S+mOdmysfhw", sceVoiceChatRequestLeaveGameSessionVoiceChatChannel) +STUB("S+n0Md8Rjfw", FT_Stream_ReadUOffset) +STUB( + "S+n6NC5YfmY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("S+plqe4pVgs", png_read_update_info) +STUB("S+y2VGeuoGk", _ZNSt15basic_streambufIcSt11char_traitsIcEE5imbueERKSt6locale) +STUB( + "S+zkz9zJ168", + _ZThn16_N9Inspector18InspectorHeapAgent10getPreviewERN3WTF6StringEiRSt8optionalIS2_ERNS1_6RefPtrINS_8Protocol8Debugger15FunctionDetailsENS1_13DumbPtrTraitsISA_EEEERNS7_INS8_7Runtime13ObjectPreviewENSB_ISG_EEEE) +STUB("S-1GFNVykSk", _ZN7WebCore12PrintContext18computedPageMarginENS_9RectEdgesIfEE) +STUB("S-3U05lXJhk", WKPreferencesGetInteractiveFormValidationEnabled) +STUB( + "S-7kLToSY6U", + _ZN3sce2Np9CppWebApi14SessionManager2V161PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyFactory7destroyEPNS3_54PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyE) +STUB( + "S-ADy5+oaAs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEdeEv) STUB("S-AQZoElaRM", sceKernelDebugSpawn) +STUB("S-CHuTQDMRo", mono_aot_Sce_Vsh_ProfileCacheunbox_trampoline_addresses) +STUB( + "S-CZNoYuSCI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEED2Ev) +STUB("S-E9i1KZSns", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi22ParameterToCreateMatchC2Ev) +STUB("S-Gdd1eIiKU", _ZN3sce2Np9CppWebApi7Matches2V121ResponseTeamStatistic8getStatsEv) STUB("S-Gni2KIJRY", sceConvertKeycodeGetCharacterFromKeyboardData) +STUB("S-H0LH+F95I", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEE11get_deleterEv) +STUB( + "S-JBod0h2e0", + _ZN7WebCore20findClosestPlainTextERKNS_11SimpleRangeERKN3WTF6StringENS3_9OptionSetINS_14FindOptionFlagEEEm) +STUB( + "S-L0-v0OHQ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEED1Ev) +STUB("S-Qbep3ivy8", mono_aot_I18N_Otherplt) +STUB( + "S-VG3EVh0js", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEED1Ev) +STUB( + "S-YSwet345Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEE7get_refEv) +STUB( + "S-Z2oL+rzS4", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119BandwidthPropertiesC2EPNS1_6Common10LibContextE) +STUB("S-dDdz8yGM4", + _ZN3sce2Np9CppWebApi14SessionManager2V122GameSessionPushContext8fromJsonERKNS_4Json5ValueE) +STUB("S-j08-JqNfs", _ZN3sce7Toolkit2NP2V27Session13SessionMember16INVALID_PRIORITYE) +STUB( + "S-j7PUnhQmA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEplEm) +STUB( + "S-lvqno+GUk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEeqERKS9_) STUB("S-rDUfQk9sg", sceAudioInGetGain) +STUB( + "S-sWPvzjRCo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEC1EPNS2_10LibContextE) +STUB( + "S-tuNnMKjfQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("S-xPXI+4q9E", WKNavigationDataCopyOriginalRequest) +STUB("S-yCfUunccY", vzone_openID_67) +STUB("S0-xo2nSQuA", _ZN3sce2np9JsonValue9SetParentEPS1_) +STUB("S08oVMvT-8c", _ZN3WTF22CrossThreadTaskHandler8postTaskEONS_15CrossThreadTaskE) +STUB("S0DCFBqmhQY", CA_MGMT_enumAltName) STUB("S0ITgPRkfUg", sceHmdInternalGetDefaultLedData) STUB("S0JwP2AFTTE", sceAudioPropagationRoomDestroy) +STUB( + "S0KDCMfCaNE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEED2Ev) +STUB( + "S0KuxRDiw2A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEppEv) +STUB( + "S0Qe+Hcbd8w", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V13Mmr11setPerGenreERKNS1_6Common12IntrusivePtrINS3_13MmrPropertiesEEE) +STUB( + "S0Suhy0BYmw", + _ZN3sce7Toolkit2NP8Commerce9Interface18getEntitlementListEPNS1_9Utilities6FutureISt6vectorINS1_11EntitlementENS1_15AppSTLAllocatorIS7_EEEEERKNS1_26GetEntitlementsInputParamsEb) +STUB("S0VqLNkW1D0", uspoof_getCheckResultChecks_67) +STUB("S0WDjcZLdqI", u_isupper) +STUB("S0Zc1NbQFJw", mono_btls_bio_write) +STUB( + "S0aSZBy6z-Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC2ERKSA_) +STUB( + "S0eOBYTuo4U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "S0eezyWBXHE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE8capacityEv) STUB("S0mnCPikRiA", sceM4aacEncGetContext) +STUB( + "S0nGlgFXmuA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEneERKS9_) +STUB("S0r+ndWprDg", rgctx_fetch_trampoline_rgctx_77) +STUB( + "S0vNX6cVG0w", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEeqERKS9_) +STUB("S0vx8aP1vqI", WKPreferencesGetDisplayContentsEnabled) STUB("S0wLwmc9bc8", sceMbusSetDuckingSetting) +STUB("S0xHRXabnnA", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_13NetStateBasicEEC1Ev) +STUB( + "S0ydZNZOPjs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE10setContextEPNS2_10LibContextE) +STUB( + "S1+WjLkg98M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE21intrusive_ptr_sub_refEPS9_) STUB("S1GkePI17zQ", sceSaveDataDelete) +STUB("S1PBRKjSstQ", + _ZN7WebCore21PageOverlayController20uninstallPageOverlayERNS_11PageOverlayENS1_8FadeModeE) +STUB("S1RHanLRpFQ", mono_aot_System_ComponentModel_Compositionjit_code_end) STUB("S1Uxf-lgJ-c", sceLoginServiceRequestDevices) +STUB("S1W4s+gnkwg", _ZN3sce2Np9CppWebApi6Common6String21intrusive_ptr_sub_refEPS3_) +STUB("S1X5IJ1chWw", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V110AvatarSizeEEppEv) +STUB( + "S1YwPDLG0TQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE8capacityEv) +STUB( + "S1Za8j-wNbE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEED2Ev) +STUB("S1aT011dBEk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE3endEv) +STUB( + "S1aV9pT3s1g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEC2EPKS8_) +STUB( + "S1bISWVMfd0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEmmEi) +STUB( + "S1e3nAbl4uY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEE7get_refEv) +STUB("S1fRUcLSvvk", delegate_virtual_invoke_imt_27_p) +STUB( + "S1jbwaPyNSc", + _ZN3sce2Np9CppWebApi14SessionManager2V149PutGameSessionsSearchAttributesRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_42PutGameSessionsSearchAttributesRequestBodyEEE) +STUB( + "S1mIZtMRZN0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE5clearEv) STUB("S1o1C6yOt5g", sceUsbdGetActiveConfigDescriptor) +STUB("S1o6Tx6MVuk", _ZTVN15AbstractStorage14MemfileContentE) +STUB("S1pbGEIdW9E", _ZN3sce2Np9CppWebApi6Common6BinaryD1Ev) +STUB( + "S1pfy2btsPU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("S1rFjUrl7UQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE7reserveEi) STUB("S2-4Sh3qnm8", sceKernelGetResourceLimit) +STUB("S21eZXZnFoU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEED1Ev) +STUB("S21xDIubeTQ", mono_aot_Sce_PlayStation_Orbisjit_code_end) +STUB( + "S25iUhIbjBg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE8capacityEv) +STUB( + "S28B0A43DoM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEptEv) +STUB( + "S2Bw3p6qK8E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEEaSERKSA_) +STUB("S2ESgvbzvXI", _ZN7WebCore11DisplayList7ClipOutD1Ev) +STUB("S2G9jJwRMqs", _ZN3WTF9MediaTimepLERKS0_) +STUB( + "S2LUIKNGlgg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEEC1ERSA_) +STUB( + "S2M91aqjyf0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEC1Ev) +STUB( + "S2NvRAYXtRY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "S2RXN6-XCUw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("S2Sb-NajDeo", WKBundleHitTestResultCopyURLElementHandle) +STUB("S2WZhTpkjW0", mono_aot_appplt) +STUB( + "S2XSWpYKU-g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEC1Ev) +STUB("S2XXSC1X2l8", _ZN3WTF6Thread6signalEi) +STUB("S2eiZ6gZnkI", _ZN7WebCore8SVGNames7lineTagE) +STUB("S2gJq55GuKE", _ZN7WebCore6Editor14simplifyMarkupEPNS_4NodeES2_) +STUB("S2gQI2nZ8FE", SHA512_Init) +STUB( + "S2ltgySzrmQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) STUB("S2mw3sYplAI", sceFontFtSupportPfr) +STUB( + "S2oTsS1StKw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEppEi) STUB("S2pJMf00-sk", sceSdmaFlushAll) STUB("S2yTg8ZqUtw", sceOpusSilkEncCancel) +STUB("S30QdAH56QA", _ZNK3sce2Np9CppWebApi7Matches2V15Error6toJsonERNS_4Json5ValueEb) +STUB("S32Y0XOGdA8", uregex_getUText_67) +STUB("S33W6I2T8x8", _ZN7WebCore4Node14removedLastRefEv) +STUB( + "S34UfmRsJtk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEED2Ev) +STUB( + "S35PM+JX140", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEmmEv) +STUB( + "S36EAZpNnPk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEC2EPS6_PNS2_10LibContextE) +STUB( + "S3CBJM5lTSg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEEcvbEv) +STUB("S3Et4iyZ0K0", _ZN3sce7Toolkit2NP9Utilities10FutureImpl6isBusyEv) +STUB("S3G7+rtcvUQ", WKContextConfigurationSetShouldConfigureJSCForTesting) +STUB( + "S3JxD633sV4", + _ZN3sce2Np9CppWebApi14SessionManager2V156PostPlayerSessionsSessionIdInvitationsRequestBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_49PostPlayerSessionsSessionIdInvitationsRequestBodyEEE) +STUB("S3K8VDKvQwY", mono_metadata_parse_signature) +STUB("S3TFbWf1qCs", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session14InvitationDataEED2Ev) +STUB( + "S3X83+NMcNU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEED1Ev) +STUB("S3ggPj1HPVw", _ZN3sce2Np9CppWebApi14SessionManager2V117SearchGameSessionD1Ev) +STUB("S3k+JisKvds", SwCtrlManagerFinalize) +STUB("S3kDP5UD+4M", _ZN3sce7Toolkit2NP2V210Wordfilter16SanitizedCommentC1Ev) +STUB("S3nFV6TR1Dw", __isnormall) STUB("S3qFxKMTgKQ", sceSpPthreadMutexInit) +STUB("S3qv3zV6PHo", _ZN3sce7Toolkit2NP2V29Messaging7Request27GetGameDataMessageThumbnailC1Ev) +STUB("S3trkSjQj1I", _ZN3sce7Toolkit2NP21RegisterTrophyRequestC1Ev) +STUB("S3uUevXWEi8", + _ZNK3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_15CategoryInfoSubENS2_IS4_EEEE8max_sizeEv) +STUB("S3wUi9IrFAI", WKBundleSetGarbageCollectClient) STUB("S3xZj35v8Z8", sceNpScoreSetTimeout) +STUB("S3yDQivx8Iw", _ZN7WebCore21DiagnosticLoggingKeys26entryRightlyNotWarmedUpKeyEv) +STUB( + "S4+Tha6KFm8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE4sizeEv) +STUB("S43+S0GsqLo", _ZN3sce7Toolkit2NP2V29Messaging25GameDataMessageAttachmentaSERKS4_) STUB("S48+njg9p-o", sceFontGraphicsRegionInitCircular) STUB("S49B+I96kpk", sceSaveDataCheckSaveDataVersionLatest) +STUB( + "S4AIXe73toY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("S4AjKz4bd3c", _ZN3sce7Toolkit2NP2V26Trophy7Request19GetTrophyPackTrophyD2Ev) +STUB("S4BqBfr+cb0", mono_aot_Sce_Vsh_AutoMounterWrapperunwind_info) +STUB("S4Gb7LzOGsQ", GCC_except_table553) +STUB("S4HGAVSpItw", usearch_handlePreviousExact_67) +STUB("S4MaguYG1IQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEaSERKS7_) +STUB( + "S4RnTCNxwak", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEC1Ev) +STUB( + "S4ULNBUnMfk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEC1Ev) +STUB("S4VSUxuFEbE", mono_aot_Sce_Vsh_Orbis_AbstractStoragemethod_addresses) +STUB("S4WTBF8WJQA", + _ZNK3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession14sessionIdIsSetEv) STUB("S4XWKGFp+bc", sceKernelIsGenuineTestKit) +STUB("S4ZusEoBg28", _ZN3NTF17URLRequestFileJob3urlEv) +STUB("S4e0nGw74Lk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEC1Ev) +STUB( + "S4nF2BAjI7o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEmmEv) +STUB( + "S4ouYB1EXyM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) STUB("S4per83VASY", sceAudiodecDecode2WithPriority) +STUB("S4qCVFS2p1Y", WKContextSetConnectionClient) +STUB("S4ssksOaXdo", _ZN7WebCore22protocolIsInHTTPFamilyERKN3WTF6StringE) +STUB( + "S4txuoFSiu8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE5beginEv) +STUB("S5-tk4jGzoc", _ZN3sce2Np9CppWebApi6Common6String4nposE) STUB("S5272bFXxR8", _sceNpHeapStrdupImpl) +STUB("S54-qulDV-c", _ZN3JSC13JSSetIterator6s_infoE) STUB("S56ra1+Tymg", sceLoginDialogOpen) +STUB( + "S5ALl2AHMGI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEED2Ev) +STUB("S5Et5SFHGdU", _ZL11_sceLibcNewm) +STUB( + "S5ItFc+7Cec", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB("S5JxQnoGF3E", _ZN3sce4Json6Parser5parseERNS0_5ValueEPKcm) +STUB("S5SRaPdeowU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEE7add_refEv) +STUB( + "S5T-VarsnYk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEEaSERS9_) +STUB("S5TOIvYsqtg", _ZN3sce7Toolkit2NP15AppSTLAllocatorIiED2Ev) +STUB("S5UioapzXKQ", _ZNK3sce2Np9CppWebApi13InGameCatalog2V55Image7getTypeEv) +STUB( + "S5WbPO54nD0", + _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tmPKcSE_) +STUB("S5Wg-7LnSeA", jpeg_idct_10x5) +STUB("S5XL3ThcqpQ", _ZN3NTF17URLRequestMessage8destructEPS0_) +STUB("S5akQDIp6sg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEC2ERKS7_) +STUB( + "S5cVeHziBhw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEEaSERSA_) +STUB("S5deBYqi9vc", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku18unsetOriginalPriceEv) STUB("S5eMvWnbbXg", sceAppContentDownload0Shrink) +STUB( + "S5iFimbVhB0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEmmEi) +STUB("S5oYc-EzQnk", _ZNK3WTF6String4utf8ENS0_14ConversionModeE) STUB("S5pL+zLvJPI", sceApplicationSetApplicationFocus) +STUB( + "S5sSmvxaLio", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEE7get_refEv) +STUB( + "S5wKaUyFzFI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEED2Ev) +STUB("S5wUrkE+I-E", ures_getLocaleByType) +STUB( + "S61+r56orEw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEC1EPS8_) +STUB( + "S643rg-YxlA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEC1ERKS7_) +STUB("S64uHO5fVL8", jpeg_free_small) +STUB( + "S69a7x8g7jM", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody30getComparedLastUpdatedDateTimeEv) +STUB("S6FZEnyltoU", _ZN3JSC8JSObject10putByIndexEPNS_6JSCellEPNS_14JSGlobalObjectEjNS_7JSValueEb) STUB("S6G1p1bQBQo", sceCesBig5ToUtf8) STUB("S6LHwvK4h8c", scalblnf) +STUB("S6MEVvJMtuk", mono_md5_update) +STUB("S6NzIicbleU", _ZN3WTF17PrivateSymbolImpl6createERNS_10StringImplE) +STUB("S6Sf-zsPTgc", _ZN7WebCore14StaticNodeListD2Ev) +STUB( + "S6UWQo+tDNM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEC2Ev) +STUB( + "S6V7XsyXHDI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEixEm) +STUB("S6VmHrSuXfc", _ZN3sce7Toolkit2NP2V212ActivityFeed9StoryUserC2Ev) +STUB("S6W8OlMcTz8", + _ZN3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallbackC2ERS5_) +STUB("S6Z573DNSJE", _ZN3JSC8Debugger16applyBreakpointsEPNS_9CodeBlockE) +STUB( + "S6ZRGCYDkvo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "S6a6qzBu2ss", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE8pushBackERKS8_) +STUB( + "S6iPL2AvARk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEEC2ERSA_) +STUB("S6ieIssLpCA", cairo_path_extents) +STUB("S6luQz76AQ4", _ZN3sce2np9SemaphoreD0Ev) +STUB("S6tMey2sRNM", _ZN3sce2Np9CppWebApi13InGameCatalog2V55Error9setSourceEPKc) +STUB( + "S6wE3h-0v4w", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEiRNS2_10LibContextEPT_m) +STUB("S6wlKLdicxQ", _ZN7WebCore16HTMLTableElement11createTFootEv) +STUB("S6ycXc7hCMQ", GCC_except_table64) +STUB( + "S7-2CKX8OZo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE10setContextEPNS2_10LibContextE) +STUB( + "S70jf1fQT00", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEptEv) +STUB( + "S74a8dYy6Og", + _ZN3sce2Np9CppWebApi14SessionManager2V19ToFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_2ToEEE) +STUB("S76vfDNu6eI", tcsetsid) +STUB("S7Afe0llsL8", _ZN3sce2np4UserC1Ev) +STUB("S7FMltXS0QM", _ZN3sce2np14JsonDocBuilderC2EPKNS0_9JsonValueE) +STUB("S7ILo+YCsOA", _ZN7WebCore17FrameLoaderClient37dispatchDidReachVisuallyNonEmptyStateEv) +STUB("S7J725TkK6E", WKContextConfigurationShouldCaptureAudioInUIProcess) +STUB("S7JSTuqsMMU", ustr_hashICharsN) +STUB("S7L4OYSnC0Q", EVP_PKEY_free) +STUB("S7Loz68r3RI", _ZNK7WebCore18PlatformTimeRanges13totalDurationEv) +STUB( + "S7MUipcyDp0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEEaSERSA_) STUB("S7OVJvESBGc", sceDataTransferTargetRequestAbortSearch) +STUB( + "S7Oxlgv+21w", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBody8fromJsonERKNS_4Json5ValueE) +STUB( + "S7P1KX+ZjMI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE21intrusive_ptr_sub_refEPS9_) STUB("S7QTn72PrDw", sceNpDeleteRequest) +STUB("S7VZWmI1u04", glIsFramebuffer) +STUB( + "S7WuGm8RY44", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer28getxPsnAcceptPlatformNamePs5Ev) +STUB( + "S7brPMfji4M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "S7d5-c7ZtAM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("S7g5563zuFU", _ZN19ScePssCMediaDecoder6DecodeEPKvjRjPvjS2_S2_) STUB("S7h1031-wWw", sceMoveSetLightSphereForTracker) +STUB("S7kkgAPGxLQ", _ZNSt15_Num_float_base9is_signedE) +STUB("S7kvkV6SznU", _ZN7WebCore13getBackingSetERN3JSC14JSGlobalObjectERNS0_8JSObjectE) +STUB( + "S7lZsY4cSGs", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_11EntitlementENS1_15AppSTLAllocatorIS5_EEEEC2Ev) +STUB("S7oEA8nBDNI", uidna_IDNToASCII_67) +STUB( + "S7puumSmSho", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEEC1ERSA_) +STUB("S7qOCsWaBPY", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanityaSERS5_) +STUB("S7r7-hGiFO8", + _ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForRead13getSpectatorsEv) +STUB("S8-l0fcdnq4", _ZN12video_parser13cVideoMetaVWG18_createChapterInfoERj) +STUB( + "S83l3oBWCkk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEC1EPNS2_10LibContextE) +STUB("S83yx-vretc", _ZN3sce7Toolkit2NP2V24Core12ResponseBase9setLockedEb) +STUB( + "S84qRQ0bFpI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE8copyFromERKS9_) STUB("S8667Ll-PjE", sceCesRefersUcsProfileIso8859_5) +STUB("S89vdgAwtIE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEC1Ev) +STUB("S8GFjCqPuUs", _ZN7WebCore9HTMLNames11dirnameAttrE) +STUB( + "S8HrNj7LJHI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEE5resetEPS6_) +STUB("S8KDfwsVl+A", _ZN7WebCore18DOMWindowExtensionD2Ev) +STUB( + "S8NC57PFC7U", + _ZN7WebCore24CoordinatedGraphicsLayer12replaceChildEPNS_13GraphicsLayerEON3WTF3RefIS1_NS3_13DumbPtrTraitsIS1_EEEE) +STUB( + "S8PJ2BgKgy8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEneERKS9_) +STUB("S8TLtKfZCfc", _ZTVN3sce2np9JsonValueE) +STUB("S8UkJo5W--s", _ZN3sce7Toolkit2NP2V27Session18AvailablePlatformsC2Ev) +STUB("S8aGuRbsV0A", Java_java_io_UnixFileSystem_checkAccess) +STUB( + "S8dHwZnK0g0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("S8e6HVhtyn0", _ZN7WebCore15AffineTransform9translateERKNS_10FloatPointE) +STUB("S8kp05fMCqU", _ZTSSt16nested_exception) +STUB("S8rXFsBP23Q", + _ZNK7WebCore6JSNode21pushEventHandlerScopeEPN3JSC14JSGlobalObjectEPNS1_7JSScopeE) +STUB( + "S8u6-fpUhE0", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayerD2Ev) +STUB( + "S8ujF8m7tbE", + _ZN3sce7Toolkit2NP2V26Trophy13setScreenshotERKNS3_7Request13SetScreenshotEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB( + "S8wQqlloFTo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEC1Ev) +STUB("S9+48-4+2wo", ucnv_getSubstChars) +STUB("S90Lr2Zf58E", T7hi) +STUB("S911A3deFpc", _ZNO3WTF6String12isolatedCopyEv) +STUB("S92YIyCCUhs", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIdEC1Ev) +STUB( + "S9B1yTBxlig", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEEC2ERSA_) STUB("S9D8JSYIrjE", sceNpMatching2SetRoomDataInternal) +STUB("S9GxnkRjq7E", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_20ChallengeRecvDetailsEE10deallocateEPS3_m) STUB("S9IH+kvDNU8", scePerfPmcSdfSetCounter) +STUB( + "S9LUM-obi7g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE7popBackEv) +STUB( + "S9M5HZAQeFM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEEC1ERSA_) +STUB("S9NQxKXLYMw", _ZNK9Inspector14ConsoleMessage6columnEv) +STUB( + "S9OFLX93530", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEC1Ev) +STUB( + "S9SfgHqlWcU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEED1Ev) +STUB( + "S9WtwOIjO5w", + _ZN9Inspector21DOMFrontendDispatcher13setChildNodesEiN3WTF6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol3DOM4NodeEEENS1_13DumbPtrTraitsIS8_EEEE) +STUB( + "S9dG+qdl+Ws", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB( + "S9dhMFUw7lA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEE3getEv) +STUB( + "S9f4oarMMV4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "S9iA0GU8Lv4", + _ZN9Inspector21InspectorConsoleAgent10stopTimingERKN3WTF6StringEONS1_3RefINS_15ScriptCallStackENS1_13DumbPtrTraitsIS6_EEEE) +STUB("S9lElfq7kSQ", _ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_11EntitlementEE8max_sizeEv) +STUB("S9pzhyNVdFE", WKURLIsEqual) STUB("S9xDus0Cums", sceNpManagerIntAddSigninStateCallback) +STUB( + "S9xIdPfPV0o", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE5startEPNS2_10LibContextE) +STUB("S9xQe4IDLbY", _ZN7WebCore22EmptyFrameLoaderClient9userAgentERKNS_3URLE) +STUB( + "S9yqBoiuQlM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEE11get_deleterEv) +STUB("SA-aNM8Q2yA", __asan_stack_malloc_always_0) +STUB( + "SA4MeKESrgA", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer14haskeepHtmlTagEv) +STUB("SAB+QaBUXA8", WKViewPaint) +STUB("SAJaef7EP6A", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEED1Ev) +STUB( + "SAODcZ25Z3s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEppEv) +STUB("SAPt0LOoWnM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEC1Ev) +STUB("SARzA6SwKDE", mono_aot_Microsoft_CSharpjit_code_start) +STUB("SASG57dtO9s", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEEptEv) +STUB( + "SAay-pLdLLo", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEEiRNS2_10LibContextEPT_m) +STUB("SAd0Z3wKwLA", tanhf) +STUB( + "SAd9efR7cLk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEED2Ev) +STUB("SAeuSzwbUgY", JVM_CompileClass) +STUB( + "SAf1izaRAZs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEED2Ev) STUB("SAfhzJPcjuk", sceAgcDriverRequestCaptureStart) +STUB( + "SAgiggg6sCQ", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("SAhNzX-dYF4", uregex_hasAnchoringBounds_67) +STUB("SAygzgTLuLg", unorm_normalize_67) +STUB("SB138NuKbpQ", _ZNK7WebCore8Position26trailingWhitespacePositionENS_9EAffinityEb) +STUB("SB2LzHAzJus", FTC_ImageCache_New) +STUB( + "SB3zg+5PZFM", + _ZN3sce2Np9CppWebApi14SessionManager2V159PostGameSessionsSessionIdMemberSpectatorsRequestBodyFactory7destroyEPNS3_52PostGameSessionsSessionIdMemberSpectatorsRequestBodyE) STUB("SB7YXgR8WSE", sceUltGetReaderWriterLockInfo) +STUB( + "SB7Z6EVxtWk", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEEiRNS2_10LibContextEPT_m) +STUB("SBBEKHqvmNk", Java_java_lang_reflect_Array_getLong) +STUB( + "SBBILMusZlc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEEdeEv) +STUB( + "SBBTV3H8OdQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE5beginEv) +STUB("SBIme60FhnY", + _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead17joinDisabledIsSetEv) +STUB("SBJnmDKcWPw", _ZN3JSC7Symbols29allocateInt32ArrayPrivateNameE) +STUB("SBKru8dr72E", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEE7add_refEv) +STUB("SBOI-vjWAPY", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession18setNonPsnSupportedERKb) +STUB( + "SBQ0uFoUymc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEEptEv) +STUB("SBRpIeHuTtI", u_fputs_67) +STUB( + "SBVdlD8S7Gw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "SBcyc3suN+s", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUser10getslotIdsEv) +STUB("SBg0AtKqs5k", uhash_hashLong_67) +STUB("SBn5gEySZK4", _ZN7WebCore19ResourceRequestBase22clearHTTPAuthorizationEv) +STUB("SBs-VLsAl4E", ubrk_previous_59) +STUB("SBuVOyegEnA", _ZN7WebCore16HTMLTableElement11deleteTFootEv) STUB("SBurFYk7M74", sceUserServiceGetGlsTtsVolume) +STUB("SBy9Yq-YiKc", mono_aot_System_Reactive_Linqunbox_trampolines_end) +STUB("SC0YIeezXfI", _ZNK7WebCore19MediaElementSession20behaviorRestrictionsEv) +STUB("SC58p5kvRVg", _ZN3WTF24isDefaultPortForProtocolEtNS_10StringViewE) +STUB( + "SC9OQAJiYzI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE7popBackEv) +STUB( + "SC9cGUg+Ph4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEneERKS9_) +STUB( + "SCC1DdJZ13k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEC1ERS7_) +STUB("SCC7QevtelE", GCC_except_table103) +STUB("SCCKYU88+9Y", + _ZN3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectator8fromJsonERKNS_4Json5ValueE) +STUB( + "SCJnJDnr+eg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEC1EPS8_) +STUB("SCKdCW7oVGs", _ZN3sce7Toolkit2NP28NpSessionDetailedInformationD1Ev) +STUB( + "SCNtiASCKBw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEmmEv) +STUB("SCSNVsQRpSw", _ZN3sce2Np9CppWebApi7Matches2V120ResponseInGameRoster10getPlayersEv) +STUB( + "SCVZeKb1ElY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEneERKS9_) +STUB("SCZi6aRgMA4", _ZN15AbstractStorage14FacebookFolder12create_albumEv) +STUB("SCdKl+0EnuQ", glHint) +STUB("SCh+k8yHj6k", usearch_setOffset_59) +STUB( + "SClFu9ZUgP8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE4termEv) STUB("SCoAN5fYlUM", sceAgcDriverUnregisterAllResourcesForOwner) +STUB("SCoaMrvikBA", _ZN7WebCore13HitTestResult12setInnerNodeEPNS_4NodeE) STUB("SCph4ZbkqzU", sceVrTracker2GetPlayAreaBoundaryGeometry) +STUB( + "SCuwi6RTbvE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE7reserveEi) +STUB("SCw7-qws4dU", WKWebsiteDataStoreConfigurationCopyResourceLoadStatisticsDirectory) +STUB("SD2U5LdC6vw", _ZStL5swfunRSt8ios_basei) +STUB("SD403oMc1pQ", _ZNSt8messagesIcEC1ERKSt8_Locinfom) +STUB("SD7oNCIQWvE", sched_getscheduler) +STUB("SD7sPC9B3-Q", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeINS1_11TusVariableEPvEEneERKS7_) +STUB( + "SDCKr+PlzXs", + _ZN3sce7Toolkit2NP3TUS9Interface12getVariablesEPNS1_9Utilities6FutureISt6vectorI16SceNpTusVariableNS1_15AppSTLAllocatorIS7_EEEEERNS1_21TusGetVarsInputParamsEb) +STUB( + "SDEQvKemFi8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEdeEv) +STUB( + "SDF5wwIVjPY", + _ZN7WebCore13createWrapperEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_4NodeENS5_13DumbPtrTraitsIS7_EEEE) +STUB( + "SDFCzwf+6WM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEEC2ERSA_) +STUB( + "SDFSGwuNt-Q", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemProperties12getaccountIdEv) +STUB( + "SDG8lgx16PQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEmmEi) +STUB( + "SDKuL-uVerY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEdeEv) +STUB("SDPzjFN7y4E", FTA_Support_Hinter_AutoFitter) +STUB("SDQnMUGaRsg", monoeg_g_ptr_array_foreach) STUB("SDSatFdf8ug", sceCesGbToUcs2) +STUB("SDZExf6TW4I", _Z23VideoPlayerVcs_SetSpeedii) +STUB("SDZK3XYrvkk", WKWebsiteDataStoreSetAppBoundDomainsForTesting) +STUB( + "SDbXYy7HCdY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEE11release_refEv) +STUB( + "SDe9ruIEQLc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "SDfd0iWoMOE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE13goToProcessedEi) +STUB( + "SDgNKHkLtZ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "SDhtP5ONbhg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE3endEv) STUB("SDkV9xhINKI", scePthreadBarrierattrInit) STUB("SDoPm73tOyI", sceVideoOutGetPortStatusInfo_) +STUB("SDsiUijzXvE", mono_aot_Sce_Vsh_VideoPlayerplt_end) +STUB("SE+sQrvs7vQ", _ZN7WebCore16findIntersectionERKNS_10FloatPointES2_S2_S2_RS0_) +STUB( + "SE0NR3M79eQ", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi42ParameterWithBinaryRequestBodyToUploadData10initializeEPNS1_6Common10LibContextEPKci) +STUB("SE8Yc9sew5I", _ZN3sce2Np9CppWebApi14SessionManager2V15Error8fromJsonERKNS_4Json5ValueE) +STUB("SE8wOZcQFuc", _ZN3WTF6StringC2EPKDs) +STUB("SE9l3S6-4PI", _ZN12Mp4Retriever18m_mpegSearchStatusE) +STUB("SEJOlyfPEXQ", mono_aot_System_ComponentModel_Compositionjit_code_start) +STUB( + "SEKyW3js8VY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEED2Ev) +STUB( + "SEMcTcnMxHs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEEC2ERSA_) +STUB( + "SEOG3laA+rs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEEaSERSA_) +STUB( + "SEOMy2QvDjQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEE11release_refEv) STUB("SEU9eYrQFsA", sceVideoCoreInterfaceSetCanvasId) +STUB("SEWTF76zSjk", _ZN3WTF11Persistence7Encoder6encodeEh) +STUB( + "SEWhIAC92mM", + _ZN7WebCore25deleteCookiesForHostnamesERKNS_21NetworkStorageSessionERKN3WTF6VectorINS3_6StringELm0ENS3_15CrashOnOverflowELm16EEE) +STUB( + "SEb8E3BUzj8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEC1EPKS8_) +STUB("SEdDsPBIjm4", _ZN4Manx14NetworkProfile3setENS_14SettingOptTypeEPKc) STUB("SEdQo8CFmus", sceUsbdControlTransferGetSetup) +STUB("SEdzXWGyzjo", __sanitizer_contiguous_container_find_bad_address) +STUB("SEfLPEEpYyY", _ZN7WebCore16DOMGuardedObject7isEmptyEv) +STUB("SEgecjvVvtM", _ZN3sce3Xml3Dom15DocumentBuilderC1Ev) STUB("SEggctIeTcI", sceAudio3dPortGetList) +STUB("SEjlISobHZQ", JVM_GetClassCPEntriesCount) +STUB( + "SElAuXJFIww", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEE21intrusive_ptr_add_refEPS7_) +STUB( + "SEnzcxgEr64", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEEC2ERKSA_) +STUB( + "SEv2cTLsQjI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("SF01Oj2K53g", _ZN15AbstractStorage18DailymotionContent4ReadEPvlPl) +STUB("SF1QQ6-x304", _ZNK7WebCore9FloatQuad13isRectilinearEv) +STUB("SF1VkTIGHoA", _ZN3sce3pss5orbis5video14VideoPlayerVcs21GetReadyStateForDebugEv) STUB("SF47kB2MNTo", sceNetEpollCreate) +STUB("SF6wNPoF-y0", _ZN3sce7Toolkit2NP2V27Session7Request6Create10STATUS_LENE) +STUB( + "SFJffBphfsY", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEEC2Ev) +STUB("SFLp7Zjq3n8", WKAccessibilityEnableEnhancedAccessibility) +STUB("SFMU423YB0o", ucnv_resetToUnicode) +STUB("SFUXLmi3y7U", _ZN3JSC7Symbols25requestSatisfyPrivateNameE) +STUB("SFZYbH7eOnk", _ZN3sce2np13NpAccessTokenD0Ev) +STUB( + "SFgfcUnKz78", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEC1EPS8_) +STUB("SFjw4+HOVOQ", ktimer_create) +STUB( + "SFk8mfMEzS0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEEdeEv) +STUB("SFkKVDcl0ww", _ZNK3sce2Np9CppWebApi13InGameCatalog2V55Error7getCodeEv) +STUB("SFlW4kqPgU8", posix_spawnattr_setschedparam) +STUB( + "SFphE4esOYY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("SFuY4EfwLwE", cpp_demangle_read_number) STUB("SFut4SyB1cY", sceUlpMgrGetNetmpListenSock) +STUB( + "SFvgRmDy9QM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE4initEv) STUB("SFxTMOfuCkE", pthread_rwlock_tryrdlock) +STUB( + "SFxitbA2wnM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE21intrusive_ptr_sub_refEPS9_) STUB("SFz5prdeR54", sceFsSetAttribute) +STUB("SFzDnsUdC4Y", FTC_ImageCache_Lookup) +STUB( + "SFzo39L-Hgo", + _ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime13ObjectPreview7SubtypeEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE) STUB("SG4rhheZSpw", sceMusicFwGetLoop) +STUB("SGAQzmDIoqQ", _ZN7WebCore17CredentialStorage16clearCredentialsEv) +STUB( + "SGEb3trrZSM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEC2Ev) +STUB("SGKI9O+5F+g", ucurr_getDefaultFractionDigits_67) +STUB( + "SGRe5bJ+H6k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEEC1Ev) STUB("SGSNz6luI2s", sceSpKernelGettimeofday) +STUB( + "SGW4XqdUSSM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEC1ERS7_) STUB("SGdtwfblKXg", sceApplicationSpawnCommonDialog) +STUB( + "SGgysgV8M5A", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("SGhDIARE2aU", _ZN3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap14unsetAccountIdEv) +STUB("SGvlvQNtSpM", _ZThn16_N9Inspector21InspectorRuntimeAgent7disableERN3WTF6StringE) +STUB( + "SH1GYvUPTXI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEplEm) STUB("SHAUfEIWSOM", sceDataTransferTargetRequestGetTitles) +STUB( + "SHELaeUUY3A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEED1Ev) +STUB("SHInb+l58Bs", SSL_releaseTables) +STUB("SHJjgTjicng", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_12CategoryInfoEE3getEv) +STUB( + "SHKjGz+o14c", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEeqERKS9_) +STUB( + "SHKtkCDxH6c", + _ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime12EntryPreviewEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE) +STUB("SHNlI0DFs6s", mono_aot_Sce_Vsh_Sl2_NativeQueueClientunbox_trampolines) +STUB("SHTQpizk+f8", mono_object_isinst) +STUB( + "SHV3DrkcDBw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "SHXfvciUwx4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEE11get_deleterEv) +STUB( + "SHhTTHLE4A8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEE7add_refEv) +STUB("SHlt7EhOtqA", fgetpos) +STUB("SHmLauSB1MU", _ZNK7WebCore15JSDOMWindowBase22scriptExecutionContextEv) +STUB("SHsgexv+WaE", rgctx_fetch_trampoline_rgctx_42_p) +STUB("SHtAad20YYM", _ZNK3sce4Json5Value7getTypeEv) +STUB("SHtstVxKix4", WKPreferencesSetForceFTPDirectoryListings) STUB("SI++DtNK+-M", sceSysCoreGetEventCount) +STUB("SI3V3I2C+JY", umutablecptrie_fromUCPMap) +STUB("SI515zp9SEE", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V18PlatformEEppEi) +STUB("SIMyZiidVJI", _ZN3sce7Toolkit2NP2V28Matching7Request9LeaveRoomD1Ev) +STUB("SIR4MODbE-8", _ZNSt15basic_streambufIwSt11char_traitsIwEE7_UnlockEv) STUB("SIRdgEH3wA4", sceKernelWriteWriteCounterCommand) +STUB("SIT3HlFU45o", mono_aot_Sce_Vsh_VideoPlayerplt) +STUB( + "SITgjK3EUFU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEneERKSA_) +STUB("SIUk+wWJO0w", UI_method_set_closer) +STUB("SIV74lgzM60", _ZN9JITBridge12ringDoorbellEiNS_8DoorbellE) +STUB("SIZrguvplN4", uloc_getCountry) +STUB("SIb1ZrHqPNI", _ZN3JSC11VMInspector17codeBlockForFrameEPNS_2VMEPNS_9CallFrameEj) +STUB("SIe1ZmW7e7s", _ZN3sce4Json5Value3setEm) +STUB( + "SIfz9dWu9Ks", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEE7get_refEv) +STUB("SIgZme0VK34", mono_debugger_run_finally) +STUB("SIibyT2wPaU", _ZNK7WebCore11MediaPlayer24supportsPictureInPictureEv) +STUB( + "SIlo3lZqAtc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("SIpg1p5GAT8", utrie_unserializeDummy_67) +STUB("SIqT0iWoeck", _ZN7bmalloc11EnvironmentC2ERKSt11scoped_lockIJNS_5MutexEEE) +STUB("SIs881ae+Us", _ZN7WebCore5Image6createERNS_13ImageObserverE) +STUB( + "SIwOQBw5MC8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEE11release_refEv) +STUB("SIyekYGjGW8", _ZN7WebCore10Pasteboard5clearEv) +STUB( + "SJ2-zvyZnrs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEneERKS9_) STUB("SJ3i0DXP8vg", sceAjmBatchJobDecodeSplit) +STUB("SJ4QncjRIbY", _ZN7WebCore24CoordinatedGraphicsLayerD1Ev) +STUB( + "SJ5Gzy7LIG4", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivitiesD1Ev) +STUB( + "SJAwXCzP4oY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEppEv) +STUB( + "SJBKLQrHqFw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEppEv) +STUB("SJEuv7TxS5U", scin) +STUB("SJFDssaPktc", _ZN3sce2Np9CppWebApi11Matchmaking2V112ErrorFactory7destroyEPNS3_5ErrorE) +STUB("SJJia2hm2ig", _ZN3JSC14ProtoCallFrameC2Ev) +STUB("SJMLSxaYvWU", cairo_ft_scaled_font_unlock_face) +STUB("SJQ3wqgpjjc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEppEi) +STUB( + "SJQt-GoMKME", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEC1Ev) +STUB("SJWwfPd52Ug", _ZN6WebKit18NetworkProcessMainEiPPc) +STUB("SJZPlWOFp24", _ZN9Inspector25NetworkFrontendDispatchernaEmPv) +STUB("SJeYXrQ5qs8", _ZN7WebCore9HTMLNames23ongotpointercaptureAttrE) +STUB( + "SJfXz7BXqbw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEED2Ev) +STUB("SJr+OLPnyS4", u_charDirection_67) +STUB("SJs1SQziTrs", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEEC1ERKS6_) +STUB("SJux-9UF6Qo", _ZN3WTF15AutomaticThread4joinEv) STUB("SK-S7daqJSE", sceNpAuthWaitAsync) +STUB( + "SK-rxk8oEIU", + _ZN9Inspector28InspectorScriptProfilerAgent27didCreateFrontendAndBackendEPNS_14FrontendRouterEPNS_17BackendDispatcherE) +STUB("SK0Syya+scs", _ZTIDn) +STUB( + "SK2UF3FYqM4", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("SKA58Ri8JUs", _ZN7WebCore8SVGNames16color_profileTagE) +STUB( + "SKGLjhnWLuQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEdeEv) +STUB( + "SKJKSdXakhc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE21intrusive_ptr_add_refEPS9_) STUB("SKJQwgudGFg", sceNetCtlApDialogOpen) +STUB("SKJvjnm8gf8", delegate_virtual_invoke_0) +STUB("SKKTo1ngcis", _ZN3sce2np9JsonValueC2EP14SceNpAllocatorNS1_9ValueTypeE) +STUB("SKMDsFP5-Cs", NetCtlTermNative) +STUB( + "SKNVlM5RloY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE3endEv) +STUB( + "SKOodVygmws", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessions9terminateEv) +STUB( + "SKPoyFVAEug", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE5eraseENS2_8IteratorIS6_EERS9_) +STUB("SKUldaN3e2A", FTA_Remove_Module_raster5) +STUB("SKZ7PFisSuc", WKBundleHitTestResultCopyImage) +STUB("SKZfQMP+fgw", uscript_getSampleString_67) +STUB("SKdAMYXIPZU", mono_aot_Sce_Vsh_UpdateServiceWrapperplt) +STUB( + "SKipQ-+617c", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEEptEv) +STUB( + "SKjm5eEDXFQ", + _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody18setCreatedDateTimeERK10SceRtcTick) +STUB("SKlr+nCivO4", EVP_EncryptInit_ex) +STUB( + "SKpIW6rHuWI", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeaders21intrusive_ptr_add_refEPS5_) STUB("SKq7NiL8fA8", sceAvSettingSimulateProcessOutputModeArbitration_) +STUB( + "SKs0M5V5YSI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEmmEv) +STUB( + "SKt5R8Fc84Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEppEv) +STUB( + "SKtA2pPXY6U", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEplEm) +STUB( + "SKtyjKhxcNg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEcvbEv) +STUB("SKvobx84-2Y", _ZN3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectatorD2Ev) +STUB("SKvxLm9t0OM", + _ZN7WebCore18TextureMapperLayer24paintUsingOverlapRegionsERKNS_25TextureMapperPaintOptionsE) +STUB( + "SKyAHkts6UE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEE11get_deleterEv) +STUB( + "SL0NjkUHiTE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEC2EPS8_) STUB("SL6AQAnM5WU", scePigletSetConfiguration) +STUB( + "SL7lCZecuvA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEE11release_refEv) +STUB("SL98pRGwFko", + _ZNK3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate21playerAttributesIsSetEv) +STUB( + "SLALmISjAGE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "SLE6aoS-GtM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEC2EPNS2_10LibContextE) +STUB("SLJzHqnOERE", _ZN7WebCore32ScrollingStateFrameScrollingNode15setFooterHeightEi) +STUB("SLK65JLYrUE", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence8PresenceEEC1Ev) +STUB( + "SLKHfJOr4sw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE21intrusive_ptr_add_refEPS9_) +STUB("SLM4FXY2+D8", jpeg_idct_11x11) +STUB("SLPuaDLbeD4", _ZN3sce2np4Cond4WaitEj) +STUB("SLSp+Z+-W9Y", _ZNK7WebCore6Quirks25needsYouTubeMouseOutQuirkEv) +STUB( + "SLWp86zt+Co", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "SLY+OehEJJ0", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_20NpSessionInformationENS1_15AppSTLAllocatorIS5_EEEED1Ev) +STUB("SLZQS8nBQe4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEEaSERS9_) +STUB("SLmN+1BEUig", WKPageClearUserMediaState) STUB("SLvuzd81niM", sceHmdGetDistortionWorkMemoryAlignFor2d) +STUB("SLwy1Gp0i08", rgctx_fetch_trampoline_rgctx_93_p) +STUB("SLxNhwWCSJE", _ZN3sce7Toolkit2NP15AppSTLAllocatorIcEC1Ev) +STUB("SM0Cf+K17Yw", _ZN3WTF21RefCountedLeakCounter24cancelMessageSuppressionEPKc) +STUB("SM7OEf11LCA", _ZN3sce2npneERKNS0_8NpCommIdERK20SceNpCommunicationId) +STUB( + "SM7e1RC1ueI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEaSERS7_) +STUB( + "SM8A-rZWths", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEED1Ev) +STUB("SM8dikCNcJg", _ZN7WebCore9HTMLNames25disableremoteplaybackAttrE) +STUB("SMAutLRmC5U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEE7get_refEv) +STUB("SMBeFW-E0gQ", _ZN7WebCore16HTMLTableElement13deleteCaptionEv) +STUB("SME4JBCrR2Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEC2Ev) +STUB( + "SMJ3ZI+lcnU", + _ZN7WebCore17JSDOMGlobalObjectC1ERN3JSC2VMEPNS1_9StructureEON3WTF3RefINS_15DOMWrapperWorldENS6_13DumbPtrTraitsIS8_EEEEPKNS1_23GlobalObjectMethodTableE) +STUB("SMN1c2XZjOg", _ZN3IPC15ArgumentDecoder6decodeERj) +STUB( + "SMRtoIblN54", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "SMUUdLaCh7E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEixEm) +STUB( + "SMVV9-tftEs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEaSERS7_) +STUB("SMWjd1XIZvc", mono_aot_System_Runtimemethod_addresses) STUB("SMXKRrPDjFQ", scePlayReadyLicenseCount) +STUB("SMXx+EUireA", _ZN7WebCore21DiagnosticLoggingKeys24uncacheableStatusCodeKeyEv) +STUB( + "SMa6JH+-Kb8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEppEi) +STUB( + "SMa8dIHVJVE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEC2ERKS7_) +STUB( + "SMadOsCXLtQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB("SMbKDfT2xKA", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku9unsetNameEv) +STUB("SMevfKx0uXk", _ZN7WebCore26HTMLTextFormControlElement12setMaxLengthEi) +STUB("SMk2lpzuDmU", _ZNK7WebCore13HitTestResult12mediaIsVideoEv) +STUB("SMn1nTaD7kI", _ZN3sce7Toolkit2NP2V210Tournament7Request12SearchEventsD1Ev) +STUB( + "SMoTb+ejU6A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEC1Ev) +STUB( + "SMovo3JtVwM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEptEv) +STUB("SMr0Ma-uQt0", _ZNK7WebCore24MatrixTransformOperationeqERKNS_18TransformOperationE) +STUB("SMrFX4jl7qo", _ZN15AbstractStorage18DailymotionContent8SeekTimeElPl) +STUB("SMuOUDRFSw0", _ZN3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_errorD2Ev) +STUB( + "SN+LHhE0p6g", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE8capacityEv) +STUB("SN+Q1uBSOyI", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V116TaskAvailabilityEEC2EPS6_) +STUB("SN1NT+G1uTQ", monoeg_g_list_nth) +STUB("SN1RNalaWy8", rgctx_fetch_trampoline_mrgctx_36_p) +STUB("SN1ftgooArU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE8capacityEv) +STUB("SN4IgvT26To", _ZN3sce2np10JsonString6SetStrEPKc) +STUB( + "SN5ENfcrLUU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEED2Ev) +STUB("SN5oTjTdwlE", _ZN7WebCore6RegionC2EOS0_) STUB("SN7rTPHS+Cg", sceSaveDataGetSaveDataCount) +STUB( + "SNIRgL67Tic", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEC1EPNS2_10LibContextE) +STUB("SNJKvTnMM8o", _ZN3sce7Toolkit2NP22UpdateAttributeRequestC1Ev) +STUB( + "SNPbJVG95ck", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEEC2Ev) +STUB( + "SNQKcoMZwaU", + _ZN3sce7Toolkit2NP6Trophy9Interface18trophyRetrieveListEPKNS1_25RetrieveTrophyListRequestEPNS1_9Utilities6FutureINS1_10TrophyInfoEEEb) +STUB("SNSLa0ggfpw", cairo_font_options_get_antialias) +STUB("SNT3Zpc+RwQ", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product14getDisplayNameEv) +STUB("SNXg0FqiboA", _ZN7WebCore6Editor7copyURLERKNS_3URLERKN3WTF6StringE) +STUB("SNdBm+sNfM4", __divxc3) +STUB("SNdZ+yGT2Tg", _ZN3JSC19disableSuperSamplerEv) +STUB("SNfmYlaoICc", mono_aot_System_Net_Http_WebRequestunbox_trampoline_addresses) +STUB("SNi0C-1dNr4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEdeEv) +STUB("SNwqnx6r3c8", _ZNK3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead10getNatTypeEv) +STUB("SNxP9g4ifrE", _ZN9Inspector22PageFrontendDispatcher19frameStoppedLoadingERKN3WTF6StringE) +STUB("SO-q9wKyVig", _ZN3sce7Toolkit2NP2V27Session7Request14SendInvitationC2Ev) +STUB( + "SO14q2XqPTU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEC2ERS7_) +STUB( + "SO92AhilxYs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEED1Ev) STUB("SOAMmdlyaIc", sceAgcDriverCwsrSuspendAcq) +STUB("SOCxwiW2uqw", + _ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody15getNeedsTmpRankEv) +STUB("SOJbxOfhHuw", vzone_getNextTransition_67) +STUB("SOKQacNlDTw", _ZN7WebCore21DiagnosticLoggingKeys25failedLessThan2SecondsKeyEv) +STUB("SOMZ080N0wA", glIsSampler) +STUB( + "SOMj5TNznOc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEppEi) +STUB( + "SONfh19xWGI", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetBoolean4Ev) +STUB("SOVvUDCjLak", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus22setLastUpdatedDateTimeERK10SceRtcTick) +STUB("SOZzgxqVHIY", glVertexAttrib3f) +STUB("SOa1TPmDQJA", _ZN7WebCore12ISOWebVTTCue5parseERN3JSC8DataViewERj) +STUB( + "SOdOU-tce58", + _ZN3sce7Toolkit2NP11UserProfile9Interface27getPersonalDetailsAvailableEPNS1_9Utilities6FutureIbEEPKNS1_18UserProfileRequestEb) +STUB("SOgQGB2EsJs", _ZN7WebCore9HTMLNames9titleAttrE) +STUB( + "SOhViRaKYcM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE7reserveEi) STUB("SOmyRqRpKIM", sceShellCoreUtilExecuteCrashReport) STUB("SOo3Lwyglfo", sceAgcDriverHp3dLockStart) +STUB("SOsd9BOvA44", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEptEv) STUB("SOx9LJtZNWw", sceIduUtilTerminate) STUB("SP-7qOzwl7U", sceDebugInitForTest) +STUB("SP2010+gtqw", _ZN3sce2np12StreamWriter15WriteFilledDataEPNS0_6HandleEPNS0_9StreamCtxEcl) +STUB( + "SP2F5oh1mYw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEppEi) +STUB("SP2gwm36tlk", _ZN12video_parser22VpMpegvideoAvcParsePPSEPhiPNS_21VpMpegvideoAvcPPSCtrlE) +STUB( + "SP3JPOLT6b4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "SP93LYlWc9U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE6resizeEj) +STUB("SPFz9bHH5Kg", _ZN7WebCore9FontCache19fontForPlatformDataERKNS_16FontPlatformDataE) +STUB( + "SPIJ1E8ud1w", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("SPIYRBzCjIk", g_PS4TitleNPAgeRating) +STUB( + "SPIuLWBHlPQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEC1ERS7_) +STUB( + "SPPYTszg6LQ", + _ZN15AbstractStorage14MemfileContent14CreateInstanceESbIcSt11char_traitsIcENS_8StlAllocIcEEEPvm) +STUB("SPVkdqBsosQ", InitializeLib) +STUB("SPWCS7YkH5s", _ZN7WebCore24CoordinatedGraphicsLayer19setContentsTileSizeERKNS_9FloatSizeE) +STUB("SPfoDEd+Z-g", _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V113ErrorResponseD1Ev) +STUB("SPiW3NTO8I0", _ZTIPm) +STUB("SPiX3M2jYQU", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE7reserveEi) +STUB("SPjuCQXaTpU", _ZNK3sce2Np9CppWebApi6Common6VectorIdE5emptyEv) +STUB("SPlcBQ4pIZ0", _ZNSt14numeric_limitsIfE12min_exponentE) +STUB( + "SPpkFDZ5wsY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "SPsMWCLq9ZY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEplEm) STUB("SPvSFDZ2WV4", sceSaveDataManualDownload) +STUB("SQ02ZA5E-UE", _ZNSt10filesystem10_File_sizeEPKc) +STUB( + "SQ09kiXiPdo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEC2Ev) +STUB("SQ4D6BHXn-E", _ZThn16_N9Inspector14InspectorAgent11initializedERN3WTF6StringE) +STUB( + "SQ5yd-Q3gnM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEptEv) +STUB("SQ7+L4f3Llc", mono_btls_x509_add_trust_object) +STUB("SQ9HlRcwJac", _ZN7WebCore4Page29startTrackingRenderingUpdatesEv) +STUB("SQG5BIoGODg", _ZNKSt9basic_iosIcSt11char_traitsIcEE6narrowEcc) +STUB("SQGetEuSblg", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product16getContentRatingEv) +STUB("SQGxZCv3aYk", signalcontext) +STUB("SQHmRTl7z3U", _ZN3JSC7Symbols15fillPrivateNameE) +STUB( + "SQJTHf1vDjI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "SQMjAiGtsiI", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession19setJoinableUserTypeERKNS3_16JoinableUserTypeE) +STUB("SQQ-6+Y+098", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend16FriendsOfFriendsEEC1Ev) +STUB("SQR1u6Zuzk0", _ZN7WebCore11DisplayList13ClipOutToPathD2Ev) +STUB("SQRcDBsMDZU", + _ZN3WTF14FileSystemImpl8openFileERKNS_6StringENS0_12FileOpenModeENS0_20FileAccessPermissionEb) +STUB("SQS9ybMNpAA", Java_java_util_zip_ZipFile_getTotal) +STUB("SQW8red2Ny4", _ZN7WebCore15JSFetchResponseD2Ev) +STUB( + "SQWTx-U8+mE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEC1EPS8_) STUB("SQWusLoK8Pw", sceSaveDataDelete5) +STUB( + "SQY6UPHjGmo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEeqERKS9_) +STUB( + "SQeU+j+8NtQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("SQftAFjB69E", WKPreferencesSetForceSoftwareWebGLRendering) +STUB("SQgWFUmTTew", _ZN12video_parser5vpcom15_DirectoryCloseEPNS_8_vp_fileE) +STUB("SQiTQ1lBg8Y", mono_get_exception_security) +STUB( + "SQnPgvyxYM4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEeqERKS9_) +STUB("SQnU46IF77s", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE7popBackEv) +STUB("SQpEx4qQcpo", jpeg_idct_1x2) +STUB( + "SQukX2jYRXE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEppEi) +STUB( + "SR3BKonD8yk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEppEv) +STUB("SR402tUojfI", _ZN7WebCore8SVGNames6setTagE) +STUB( + "SR4p7f7RZak", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEED2Ev) +STUB( + "SR6WO5s0a+w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "SR76Quk0L9Y", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("SR9U4-+eibc", eglQuerySurface) +STUB("SRDI8vYT+54", vm_send_JitCompileMethod) +STUB( + "SRHskNsGqAk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEneERKS9_) +STUB("SRI6S9B+-a4", atof) +STUB("SRIMbZv6BZ8", + _ZN3sce2Np9CppWebApi7Matches2V122RequestPlayerStatisticC1EPNS1_6Common10LibContextE) +STUB( + "SROi03jXHGI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEED2Ev) STUB("SRQSpP4QK5U", sceVideoOutUnregisterBufferAttribute) +STUB("SRSf+DNA1lA", dayPeriodRulesCleanup_67) +STUB( + "SRXwx--32Qs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("SRcYM5+KOLI", _ZN12video_parser18cMp4FFLHndlManager10initializeEv) +STUB("SRiMOSEjqN4", _ZN23sceMetadataReaderWriter13KeyValueArray7releaseEPFvPvE) +STUB( + "SRkrHNdA7Ac", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEppEi) +STUB( + "SRnRaBWJI1c", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEEcvbEv) +STUB("SRsYKZ4hi8k", Java_com_sun_bluray_ui_FAABaseComponent_waitVblank) +STUB( + "SRvh5hjMs2g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB("SRy12fPx14Q", _ZN3sce7Toolkit2NP2V24Auth7IdToken5resetEv) +STUB("SS8MBSmaC2c", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V223FilterProfanityResponse11unsetStatusEv) +STUB( + "SSATkjhduQM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEE5resetEPS8_) STUB("SSCaczu2aMQ", sceFontDestroyString) +STUB("SSDCISi-VdI", _ZN3sce2Np9CppWebApi13InGameCatalog2V55Image7setTypeERKNS4_4TypeE) STUB("SSDEc8k0zOs", scePsmGetConfiguration) +STUB("SSHyhY079SI", _ZN7WebCore9HTMLNames6bdiTagE) +STUB("SSI2xRfgKJo", png_set_interlace_handling) +STUB("SSLZ34cGwJ4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEixEm) +STUB("SSTsbTCkjEI", uspoof_getRecommendedSet_67) +STUB( + "SSWCFYDchLA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEC1ERS7_) +STUB("SSXeWFPsrNQ", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEEcvbEv) +STUB( + "SSkLcB7Qg10", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("SSlCLGevxB8", WKPreferencesGetApplePayCapabilityDisclosureAllowed) +STUB( + "SSnIGq5Gso0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEEptEv) +STUB( + "SSq9k4+mUxQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEppEv) +STUB( + "SSu0D7ESxRo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE21intrusive_ptr_add_refEPS9_) +STUB("SSvY6pTRAgk", _FDscale) +STUB("SSzqc35PoKY", _ZN3NTF5Mutex4lockEv) +STUB( + "ST6WlWKnIFg", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities14UserActivitiesC2EPNS1_6Common10LibContextE) +STUB( + "ST8ICT2xZcg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEE11release_refEv) +STUB("ST9AlDHhLlk", uloc_toUnicodeLocaleKey) +STUB("STB9dDI2Zic", ubidi_getLength_67) +STUB( + "STEXif0nA38", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE7popBackEv) +STUB( + "STHwmfsz468", + _ZN3sce2Np9CppWebApi14SessionManager2V111GameSession9setMemberERKNS1_6Common12IntrusivePtrINS3_31ResponseGameSessionMemberPlayerEEE) +STUB( + "STKRH5JMagA", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions35getxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB("STNAj1oxtpk", _ZTISt13basic_filebufIcSt11char_traitsIcEE) +STUB("STQ6R5heVjs", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE8pushBackERKS6_) +STUB("STRP8nL+j9w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEC1ERS7_) +STUB( + "STSh215IhuM", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitationsD1Ev) +STUB( + "STVNGdZmv0o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEEcvbEv) +STUB("STXna4FyqWw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEE7get_refEv) +STUB("STodwRyyjgc", mono_shared_mempool_destroy) +STUB("STrp1nbSFLw", _ZN7WebCore23computeSharedStringHashERKN3WTF6StringE) +STUB("STv6BjbPi+o", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIfEC1EPf) +STUB("SU0KTBJyQHA", mono_module_get_object) +STUB("SU7Tu7C4TYs", _ZNK7WebCore6Region8containsERKNS_8IntPointE) +STUB( + "SU7u8MkQ2tE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEmmEi) STUB("SUEVes8gvmw", sceRudpSetEventHandler) +STUB( + "SULLM4YOY6E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("SUOUmSmPy5E", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry11getOnlineIdEv) +STUB("SUW6E2hG6Pc", _ZN3sce2Np9CppWebApi7Matches2V116RequestMatchTeam12unsetMembersEv) +STUB( + "SUXY-EW2uFo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEC1Ev) +STUB( + "SUYTMld04W4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEC1EPS6_PNS2_10LibContextE) +STUB( + "SUa2UG11Fos", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC1ERSA_) +STUB("SUbGVeFQQns", _ZN3JSC11FuzzerAgentD0Ev) +STUB("SUe+-Pqn50Q", _ZN7WebCore7IntSizeC2ERKNS_9FloatSizeE) +STUB("SUkHQFhWq0c", _ZN3JSC8JSObject12toStringNameEPKS0_PNS_9ExecStateE) +STUB( + "SUn-QAAV1Xw", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12unsetString3Ev) +STUB("SUrDM-br4Tw", _ZN3JSC6JSLock12DropAllLocksC2EPNS_2VME) +STUB("SUrUYDXudzg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS16FriendsVariablesEED1Ev) +STUB("SUrt1mgUxNI", _ZN7WebCore16VisibleSelectionC1ERKNS_15VisiblePositionES3_b) +STUB("SUuc7HQehIA", _ZNK7WebCore16HTMLMediaElement12isFullscreenEv) +STUB("SV1FfXSYquk", + _ZN7bmalloc29StaticPerProcessStorageTraitsINS_13HeapConstantsEE7Storage8s_objectE) +STUB("SV1G6Vt3Qk0", _ZN7WebCore12DataTransferD2Ev) +STUB("SVDoa5VNl94", _ZN23sceMetadataReaderWriter13KeyValueArray3getEiRSsRNS_5ValueERb) +STUB( + "SVDwJ5PzzWs", + _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse15setMatchResultsERKNS1_6Common12IntrusivePtrINS3_20ResponseMatchResultsEEE) STUB("SVEG+1D7qHA", sceHmd2ReprojectionGetPredictedDisplayTime) +STUB( + "SVH9yiuYfaU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEC2Ev) +STUB( + "SVHeBgu8KLc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEE11release_refEv) +STUB("SVIcrS84xVo", WKPageHasMediaSessionWithActiveMediaElements) +STUB("SVIiJg5eppY", _Atomic_fetch_or_2) +STUB("SVJZcnz9QIc", Java_java_io_FileOutputStream_initIDs) +STUB("SVKhRhkc6dE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V117InvitableUserTypeEEC1Ev) +STUB("SVNngUR1ukY", _ZN3sce2np10JsonObjectD2Ev) +STUB( + "SVQ3q7TZ2NA", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchStatus27setupdateMatchStatusRequestENS1_6Common12IntrusivePtrINS3_24UpdateMatchStatusRequestEEE) +STUB("SVQtfFl6UZo", mono_debug_domain_create) +STUB( + "SVR5BKu6U0I", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEeqERKS9_) +STUB("SVRgZE-EAFs", _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead16unsetCustomData1Ev) +STUB("SVSxof5YKAc", _ZN7WebCore8Document24addMediaCanStartListenerERNS_21MediaCanStartListenerE) +STUB("SVVn5eaP+b4", Java_com_sony_bdjstack_init_Init_cleanup) +STUB("SVYZa9hbTh8", _ZN3WTF5MutexD1Ev) +STUB( + "SVdpZ5eDbpY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEC1Ev) +STUB( + "SVhnyDz7Bw0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEE11release_refEv) +STUB("SVi-taLrQAU", _ZN3JSC8JSObject21deletePropertyByIndexEPNS_6JSCellEPNS_14JSGlobalObjectEj) +STUB( + "SVkQKbvZoCY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEED2Ev) +STUB("SVsQArztR4E", _ZN3JSC8JSBigInt19tryCreateWithLengthERNS_2VMEj) +STUB("SVtmUw-TJR4", + _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_13FetchResponseE) +STUB("SVzX42lihr8", monoeg_g_markup_parse_context_end_parse) +STUB("SVzqxdTgx-k", _ZN7WebCore21JSCSSStyleDeclaration14finishCreationERN3JSC2VME) +STUB("SW0Iu2UQTgE", mono_class_get_events) +STUB("SW1qbFASHjQ", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_6NpUserEEC1ERKS4_) +STUB("SW1xFycyC90", _ZNK3JSC18BasicBlockLocation8dumpDataEv) +STUB("SW2O4nIcFmE", __asan_report_exp_load1_noabort) +STUB( + "SW4-wCKRHts", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEE3getEv) +STUB( + "SW5JMj1e9DY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE8copyFromERKS7_) +STUB("SW7SgFwOmu4", _ZN7WebCore28BackingStoreBackendCairoImplC2ERKNS_7IntSizeEf) +STUB("SW9I9IJqDw8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V113AttributeTypeEEC1EPS6_) +STUB("SWCsZrlJzas", _ZN4Manx3Ssl19loadRootServerCertsEPv) +STUB("SWEDAhIHkMI", _ZN7WebCore21DiagnosticLoggingKeys20needsRevalidationKeyEv) +STUB( + "SWJ0ppw6U-I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEEaSERKSA_) STUB("SWK-+lhUK7s", sceFsWsFsck) STUB("SWRH9B4oil8", sceG2PDialogInitialize) +STUB( + "SWTmyHIWqxU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEEptEv) +STUB("SWUBqIUFFjM", _ZN4Manx27monotonicallyIncreasingTimeEv) +STUB( + "SWVVMpjAvcQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEE5resetEPS8_) +STUB( + "SWVe+Akobhk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEED1Ev) +STUB("SWXJnhM8yqE", _ZN12video_parser5vpcom10CloseAsyncE) +STUB("SWYTZH9cZMo", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariableC2ERS5_) +STUB("SWeFX-VVGGY", Java_java_awt_GnmGraphicsDevice_openScreen) +STUB("SWejTyuxZXQ", _ZN7WebCore14JSWebAnimationC1ERKS0_) +STUB( + "SWnAQZ1-wTI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEcvbEv) +STUB("SWttaRw68f0", _ZTVN7WebCore11DisplayList8DrawLineE) +STUB( + "SWvK14fNyvo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "SWvayCZNs9c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEC2ERKS7_) +STUB("SX01ExQha2A", uhash_openSize_67) +STUB( + "SX1nLa9p2rg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE5beginEv) +STUB("SX2VlKarfpU", EVP_DigestInit_ex) +STUB("SX4ghJcVKuw", _ZN7WebCore24CoordinatedGraphicsLayer7setSizeERKNS_9FloatSizeE) +STUB("SX5I+XzH8HI", FT_Stream_ReadFields) +STUB("SX7d3xjTzIE", mono_aot_Sce_Vsh_RequestShareStorageWrapperjit_code_end) +STUB( + "SX7zx8Snn1E", + _ZN3sce2Np9CppWebApi11Matchmaking2V131SubmitTicketResponseBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_24SubmitTicketResponseBodyEEE) +STUB("SX8g3H2KeCw", + _ZN3sce2Np9CppWebApi14ConnectAccount2V214PSNError_errorC1EPNS1_6Common10LibContextE) +STUB( + "SX9IOde7tLo", + _ZN3sce7Toolkit2NP2V27Session6createERKNS3_7Request6CreateEPNS2_4Core8ResponseINS3_9SessionIdEEE) +STUB("SXBXJjJ5cq8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEE3getEv) +STUB("SXFEOiqnaXI", _ZN7WebCore17HistoryController18replaceCurrentItemEPNS_11HistoryItemE) +STUB( + "SXJ-X-sa3Mo", + _ZN3JSC8JSObject9getMethodEPNS_14JSGlobalObjectERNS_8CallDataERKNS_10IdentifierERKN3WTF6StringE) +STUB( + "SXJs6nkuxXM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEE11release_refEv) +STUB( + "SXT6RSC543w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) STUB("SXUNKr9Zkv0", sceNpUtilGetSystemLanguage) +STUB( + "SXUwU4aFRoI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEC1Ev) +STUB("SXXP5tKEDiE", + _ZNK3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V16Rating15getRatingNumberEv) +STUB("SXY74vB6xYk", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V16Rating15setRatingNumberERKi) +STUB( + "SXhRoowX7Qg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE13getLibContextEv) +STUB( + "SXrFAy2QWaM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEEC2ERSA_) +STUB( + "SXuPwswMs0I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEppEi) STUB("SXw4dZEkgpA", sceGnmValidateDisableDiagnostics) +STUB( + "SY+ctdf-emY", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "SY8nDGLe8qc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEaSERKS9_) +STUB( + "SY8qeEnIQPA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEE11release_refEv) +STUB("SYAxuJLMTFM", WKPreferencesGetRequestAnimationFrameEnabled) +STUB( + "SYCwZXKZQ08", + _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE11do_get_dateES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm) +STUB( + "SYDoKt1eHWs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEEaSERKSA_) +STUB("SYFNsz9K2rs", _ZNSt13basic_filebufIcSt11char_traitsIcEE6setbufEPci) +STUB( + "SYP6lwfK7Wk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) STUB("SYSL4KtzcAU", sceShellCoreUtilCrashReportRequestCancel) +STUB( + "SYSmiTbdq9A", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEdeEv) +STUB("SYU6Z4blPB8", WKPreferencesGetAVFoundationNSURLSessionEnabled) +STUB( + "SYWFRuhKXOs", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi47ParameterWithBinaryRequestBodyToRecordLargeDataD1Ev) +STUB("SYYav-paXDc", _ZN7WebCore9HTMLNames16aria_grabbedAttrE) +STUB( + "SYYjcxTI6j4", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Network8Response6SourceEEEN3WTF8OptionalIT_EERKNS6_6StringE) +STUB("SYb4Kmj0u88", + _ZN15AbstractStorage4Item13ParseMetadataEPN23sceMetadataReaderWriter8MetadataES3_) +STUB("SYc9wxeZia8", CryptographyEncryptAES128GCM) +STUB( + "SYo0cly-xio", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEppEv) +STUB("SYoL1PVQ7bY", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error11statusIsSetEv) STUB("SYqaqLuQU6w", sceSystemServiceIsBgmPlaying) STUB("SYrtUA+ICMA", sceClPthreadMutexUnlock) +STUB( + "SYsKxeQHMDI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEE21intrusive_ptr_add_refEPS7_) +STUB("SYuiZEPIJOg", _ZN7WebCore22EmptyFrameLoaderClient17setCopiesOnScrollEv) +STUB("SYwCthkkxxU", _ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors9unsetPathEv) STUB("SZ2uH5Abws8", sceLncUtilKillApp) +STUB( + "SZ3agftg7ew", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEE21intrusive_ptr_add_refEPS7_) +STUB("SZ7PeSKXe5k", _ZN3sce7Toolkit2NP2V212EventsClient12EventDetails8deepCopyERKS4_) +STUB( + "SZ9eCTzoowc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEEC1ERSA_) +STUB("SZA6z3kocjA", _ZN3WTF13StringBuilder12appendNumberEdjNS_29TrailingZerosTruncatingPolicyE) +STUB("SZByX9tGiQw", _ZN7WebCore9HTMLNames17onbeforeinputAttrE) +STUB( + "SZCZ-rIB1aA", + _ZN15AbstractStorage15FacebookStorage7GetItemERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_4ItemEE) +STUB( + "SZNN+J78THE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEaSERKS9_) +STUB( + "SZPtqsxK4h0", + _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse18setMatchStatisticsERKNS1_6Common12IntrusivePtrINS3_23ResponseMatchStatisticsEEE) +STUB( + "SZRkultYj4o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEED1Ev) +STUB("SZRzgfkPiGA", _ZN9Inspector29AuditBackendDispatcherHandlerC2ERKS0_) STUB("SZSvjyBqJ3A", sceDtcpIpReadAsync) +STUB("SZSzzh0RQDU", uregex_lookingAt_67) +STUB( + "SZetXzS97ng", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEE3getEv) +STUB( + "SZh5EM+riOY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEEcvbEv) +STUB("SZk+FxWXdAs", __ucmpdi2) STUB("SZoXIVonWXE", sceDataTransferTargetAbortSendSsoNew2Old) +STUB("SZpEJeI60T0", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEEptEv) +STUB("SZrEVfvcHuA", _Atomic_compare_exchange_strong_8) +STUB( + "SZsqvxaAao0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEC1EPNS2_10LibContextE) +STUB("SZxMhu3wpuk", _ZN3JSC7Symbols19subarrayPrivateNameE) +STUB( + "Sa+LWbzSNBA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEED2Ev) +STUB( + "Sa+uEIX2sL4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEppEi) +STUB("Sa3GpytgDho", _ZN3sce7Toolkit2NP2V29Messaging15GameDataMessageC2Ev) +STUB("Sa6+Js1giNA", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_17ActivityFeedStoryEEC1Ev) +STUB( + "Sa8gEQuXm1w", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEneERKS9_) +STUB( + "SaAI+pDT2kk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "SaDSLK-ezkM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEE5resetEPS9_) +STUB( + "SaF6TCQFh1Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "SaGrvkYanZ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEEC2ERKSA_) +STUB("SaH2W2GXp+U", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V115LastUpdatedUser6toJsonERNS_4Json5ValueEb) +STUB("SaIxbkJbS+I", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V514ContainerMedia6toJsonERNS_4Json5ValueEb) +STUB("SaJj4xMf2Sc", FT_Matrix_Multiply) STUB("SaKib2Ug0yI", sceAppContentTemporaryDataGetAvailableSpaceKb) +STUB( + "SaOK6gI1Tf8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEC2EPNS2_10LibContextE) STUB("SaRlqtqaCew", sceFontCharacterLooksWhiteSpace) +STUB( + "SaTAwo0Zmhc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB( + "SaTzLuXTWOU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEE5resetEPS6_) +STUB("SaUeq6ZA4Qc", uhash_hashUChars_67) +STUB("SaUr0yRMKrk", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V112OnlineStatusEEC2Ev) +STUB("SaZrQyvV5eA", _ZN3sce7Toolkit2NP21InvitationInfoRequestC2Ev) +STUB("SabBgh05rVc", _ZNK3sce2Np9CppWebApi7Matches2V116RequestMatchTeam11getTeamNameEv) STUB("SapHB+u0OPE", _sceLibcRealloc) +STUB("SasO+gHvy1o", _ZTVN7WebCore12ISOWebVTTCueE) +STUB("SaxYL9qFVQA", _ZN7WebCore11MemoryCache20removeImageFromCacheERKNS_3URLERKN3WTF6StringE) +STUB("SaxilheI6kk", usearch_getCollator_59) +STUB( + "Sb1GVqtqgyQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEED1Ev) +STUB("Sb1wz6ZHr2A", _ULx86_64_lock) +STUB("Sb26PiOiFtE", _Isdst) +STUB( + "Sb4oWhcQdYA", + _ZN3sce2Np9CppWebApi14SessionManager2V162PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_55PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEE) STUB("Sb5bAXyUt5c", sceGameLiveStreamingSetLinkCommentPreset) +STUB("SbAv6GgaToU", _ULx86_64_dwarf_find_save_locs) +STUB( + "SbI3OfMg5LY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE5beginEv) +STUB( + "SbJbxd7RaIk", + _ZN10Deprecated18ScriptFunctionCallC2ERKNS_12ScriptObjectERKN3WTF6StringEPFN3JSC7JSValueEPNS8_9ExecStateES9_NS8_8CallTypeERKNS8_8CallDataES9_RKNS8_7ArgListERNS4_8NakedPtrINS8_9ExceptionEEEE) +STUB( + "SbNxpkEL5Vw", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeaders21intrusive_ptr_sub_refEPS5_) +STUB( + "SbOHkCRAiXs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEC1EPNS2_10LibContextE) STUB("SbU3dwp80lQ", sceVideoOutGetFlipStatus) +STUB("SbUkE4iXYM4", _ZN7WebCore17DOMImplementation18createDocumentTypeERKN3WTF6StringES4_S4_) +STUB("SbVE2B1+mzw", u_ispunct_59) +STUB( + "SbXrsdQ9bMc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE3endEv) +STUB( + "SbY0OC1pCy8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEE7get_refEv) +STUB( + "SbZWL1tns5o", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEneERKS9_) +STUB( + "SbatJyCeVJQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "Sbcvi-oXleA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "SbhDvR-Qpig", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEE11release_refEv) +STUB( + "SblVcdW5o2Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEC2Ev) STUB("SbleT0oxFw0", sceCesUhcToUtf8) +STUB("Sblg9E+pDP4", _ZN3sce7Toolkit2NP2V27Ranking8TempRankC2ERKS4_) +STUB( + "SbnOw1CgoRY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEEC1ERKSA_) +STUB( + "SbrpFpaUQ+4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEED2Ev) STUB("SbuY2jN+axQ", sceAgcUpdateInterpolantMapping) +STUB("Sbuip3CQ-+E", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE7popBackEv) +STUB("Sc0aAuyf+O0", _ZN3sce7Toolkit2NP2V29Messaging15GameDataMessageD1Ev) +STUB("Sc0lXhQG5Ko", + _ZNKSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewPK2tmPKwSB_) +STUB( + "Sc5KGaqt3bg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEmmEi) STUB("ScEhE4Irdo8", scePerfPmcNbStart) +STUB( + "ScF5Evoq1Z4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEC1Ev) +STUB("ScILQ+zz87Y", _ZN3WTF8JSONImpl5Value6createEd) +STUB("ScRf1tFPLdI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEaSERKS7_) +STUB( + "ScUeb92zr9k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEE7get_refEv) +STUB("Scedp5ayLsM", _ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayerD2Ev) +STUB("ScfDTOqLOMw", _execvpe) STUB("ScfnaxnQXn4", sceKernelReadDipswData) +STUB("ScomKec6UlE", _ZN3sce3pss5orbis5input12InputManager29GetControllerHandleByDeviceIdElPi) +STUB( + "ScpUX8KQSF0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("ScrpwXQHE9M", _ZThn24_N9Inspector22InspectorDebuggerAgent5pauseERN3WTF6StringE) +STUB( + "ScsaHi4PJ4E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEC2Ev) +STUB("SctIbAruiow", _ZN3sce7Toolkit2NP2V210Tournament16RegisteredRosterC1ERKS4_) +STUB( + "SczHqPT8awk", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V318PsnWebErrorFactory7destroyEPNS3_11PsnWebErrorE) +STUB( + "SczreOYtEx0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEeqERKS9_) +STUB( + "Sd3KVnqJLP0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEED1Ev) +STUB( + "Sd6L7byKV9g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE5clearEv) +STUB("Sd9lCybeKgM", _ZN7WebCore22HTMLFormControlElement14setFormEnctypeERKN3WTF6StringE) +STUB( + "SdDlbsFSkp0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEEC2ERKSA_) +STUB( + "SdFCJ83qiJQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("SdKk439pgjg", _ZNSt10filesystem8_StatvfsEPKcRNS_10space_infoE) STUB("SdNiYQWjU6E", sceNpIntGetGamePresenceStatus) +STUB("SdXFaufpLIs", _ZNSt8numpunctIwE7_GetcatEPPKNSt6locale5facetEPKS1_) +STUB( + "SdXJaMAU8GI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEED1Ev) +STUB( + "SdZ9dpNQ5lA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEEptEv) +STUB( + "Sdb-IIQqyyM", + _ZN7WebCore21NetworkStorageSession45setPrevalentDomainsToBlockAndDeleteCookiesForERKN3WTF6VectorINS_17RegistrableDomainELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB( + "Sdfm7eE3q80", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEptEv) +STUB( + "SdlNIH5eZgQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEEcvbEv) +STUB("Sdm1lxP+5yA", _ZN7WebCore21InspectorFrontendHostC2EPNS_23InspectorFrontendClientEPNS_4PageE) +STUB("SdsTCHDTzyA", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13integer9IsSetEv) +STUB( + "Sdu30wzxJnY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE5beginEv) +STUB( + "SdyA25xqyko", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEmmEi) +STUB( + "Se-CDJ04I68", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEE11release_refEv) STUB("Se-Zs6koGzk", sceVideoOutCursorSet2xMagnify) +STUB("Se3TVBPK02E", _ZN7WebCore18TextureMapperLayer12setMaskLayerEPS0_) +STUB( + "Se5EmIFFeko", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEED2Ev) STUB("Se5eY7Xs5nk", sceNpIpcClientTerm) +STUB("Se6npBfGRw4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEED1Ev) +STUB("SeAHrRHOnxA", Java_java_awt_GnmGraphics_nativeDrawRect) +STUB("SeDXcAT9TEI", mono_aot_Sce_Vsh_Orbis_AbstractStorageunbox_trampolines) +STUB( + "SeKbE9w0lX0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEEC1ERSA_) +STUB( + "SeLFVNYlBOY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "SeNG0XY+tzo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEC1Ev) +STUB( + "SeTzXrN6-Qo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEE11release_refEv) +STUB( + "SeWu1wADnhw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEEC2ERKS9_) +STUB("SeX1Odru6ow", Java_java_lang_reflect_Array_setInt) +STUB( + "SeXcwHDNN2s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEED1Ev) +STUB("SeZ-dljlXn0", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getMaskedUOTable) +STUB("SeZxztzqUh8", _ZN3JSC14constructArrayEPNS_14JSGlobalObjectEPNS_9StructureEPKNS_7JSValueEj) +STUB("Seapstv46Oo", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session9SessionIdEE19setCustomReturnCodeEi) +STUB( + "SearduN6EiQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEE3getEv) +STUB("SebNCYsUpS4", mono_aot_Sce_Vsh_AutoMounterWrapperunbox_trampolines_end) +STUB( + "SeccwfyNaAQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEneERKS9_) +STUB("SeciUClG0ls", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEE6assignEPS4_PFvS6_EPNS2_10LibContextE) +STUB( + "SeeA1dRUym4", + _ZN3sce2Np9CppWebApi7Matches2V120ChildActivityFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_13ChildActivityEEE) +STUB("Sek97xtkj1g", il2cpp_stats_get_value) +STUB( + "SekJyq3e108", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEE11release_refEv) +STUB( + "SekOunkQmqo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEEC1ERSA_) +STUB( + "SelzY5pn-2g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEED2Ev) +STUB("Seo1AEkPCcU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12BandwithInfoEEC1Ev) STUB("SeoDV-N8yBY", sceRnpsAppMgrCreateUrlRequest) +STUB("SeqaBjkh-Ao", mono_declsec_get_inheritdemands_method) +STUB("Sev444QPGAU", + _ZN7WebCore9FrameView27updateBackgroundRecursivelyERKN3WTF8OptionalINS_5ColorEEE) +STUB("SevrucGsarQ", rgctx_fetch_trampoline_mrgctx_59) +STUB("SexflgihwlY", png_set_packswap) +STUB( + "SeycQTUcyBM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEptEv) STUB("Sf-l+WFQRTo", sceSlimglStartServer) +STUB("Sf1bfgS6Q7E", _ZN3sce7Toolkit2NP2V28Matching7Request11SearchRooms13MAX_PAGE_SIZEE) +STUB("Sf2hgm8aZfo", izrule_getFinalStart_67) +STUB("Sf6u84e0Qw4", _ZN3WTF9MediaTimeC1Eljh) STUB("SfGVfyEN8iw", sceUserServiceSetAccessibilityKeyremapData) +STUB( + "SfGujvEh7HI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEEC2ERKSA_) +STUB( + "SfI7Zp3xyu0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEdeEv) +STUB("SfLr5McD14w", _ZN3JSC19HeapSnapshotBuilder4jsonEv) +STUB("SfMLraLeAvo", WKSecurityOriginCreateFromString) +STUB( + "SfODEW2zTXE", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemPropertiesC2Ev) STUB("SfPuQO4vW9M", sceApplicationFinalize) +STUB("SfQIZcqvvms", strlcpy) STUB("SfRTRZ1Sh+U", sceRazorCpuDisableFiberUserMarkers) STUB("SfVLUyA1FAY", sceFsTransactionSaveDataMount) +STUB( + "SfXOhyl4xxU", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody18unsetMaxSpectatorsEv) +STUB("SfZOWiQmIuY", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product8getMediaEv) +STUB("SflEHNq6HG8", mono_aot_Sce_Vsh_SystemLoggerUtilWrapperunwind_info) +STUB("SfmbF51JL1Y", hb_font_funcs_set_glyph_h_advance_func) +STUB( + "SfnoiZDcDtw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEppEi) +STUB("SfpzC9zlYHE", _ZN3sce2Np9CppWebApi7Matches2V123RequestTeamMemberResult11setPlayerIdEPKc) STUB("Sfr8N-9Sdhw", sceDseehxInit) +STUB( + "SfunN9-W7sQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE8capacityEv) +STUB("Sg68hTyo9Co", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEEmmEv) STUB("SgIY-XYA2Xg", sceSaveDataRebuildDatabase) +STUB("SgQ4VrAnXOg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE8pushBackERKS6_) +STUB("SgSjKKwFmN8", FTC_SBit_Cache_Lookup) +STUB( + "SgVIoCpXzIY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEED1Ev) +STUB( + "SgZ12ETPzHU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEC1EPS8_) +STUB( + "Sgdt7nCNQ08", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemPropertiesaSERS5_) +STUB("Sggzq+yDkN4", + _ZN15AbstractStorage11LocalFolder12RemoveFolderERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) STUB("Sgi+fOhrWUQ", sceVideoCoreInterfaceGetCanvasVideoBufferSize) STUB("SgjMpyH9Z9I", scePthreadMutexattrGetprioceiling) +STUB("Sgkdh9L-kOI", _ZN3JSC7Symbols22Uint16ArrayPrivateNameE) +STUB("Sgo7wy9okFI", _ZN3sce2np9LocalFile8TruncateEl) +STUB("SgoBOhBOMzs", _ZN7WebCore9HTMLNames10targetAttrE) +STUB("Sgoz1K4G3xY", SSL_get0_alpn_selected) +STUB("Sh2l-tqTK68", RemotePlayConfirmDeviceRegist) +STUB("Sh4t0bGCdEg", _ZN7WebCore18SocketStreamHandleC2ERKNS_3URLERNS_24SocketStreamHandleClientE) +STUB( + "Sh62oBK9J8I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE7reserveEi) STUB("Sh6Ue8RM0BY", sceCesEucJpUcsProfileSetSbcs) STUB("Sh8SrJn6PkU", sceAppInstUtilJson) +STUB("Sh9CJq8BqGc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEEC2ERKS6_) STUB("ShChva57wIM", sceCoredumpGetThreadContextInfo) +STUB("ShEeVbMHDK0", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku25unsetDisplayOriginalPriceEv) STUB("ShFvx9095CY", sceSdmaEndQueueMode) STUB("ShGBFuoSSsQ", sceNpEntitlementAccessPollServiceEntitlementInfo) +STUB( + "ShRM7C2T5SE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEC2EPS8_) +STUB("ShWGA1OTMoI", _ZNK7WebCore29PerspectiveTransformOperation27isAffectedByTransformOriginEv) +STUB("ShY882A3KL4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable24unsetLastUpdatedDateTimeEv) +STUB("ShYAICmwARw", _ZN4Manx14NetworkProfile3getENS_14SettingOptTypeE) +STUB( + "ShYRPeMdUtQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE5clearEv) +STUB("ShYWkgtHuA8", _ZN7WebCore5Event6createERKN3WTF12AtomicStringEbb) +STUB("ShYbbZFPrdU", _ZNK3JSC8JSString13equalSlowCaseEPNS_14JSGlobalObjectEPS0_) +STUB("ShZDGe2pqmk", _ZN9Inspector22RemoteInspectionTargetC2ERKS0_) +STUB("ShanbBWU3AA", _Thrd_start_with_name_attr) +STUB("ShbGcHuwSMk", _ZN3JSC4Heap16objectTypeCountsEv) +STUB("ShfFUIrkUkk", WKPreferencesGetRestrictedHTTPResponseAccess) +STUB( + "ShfrMJL3-6s", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEeqERKS9_) +STUB( + "Shg1KV-q4WA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEmmEv) +STUB( + "Shl1yWD1LfE", + _ZN3sce2Np9CppWebApi7Matches2V140RequestTemporaryCompetitiveResultFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_33RequestTemporaryCompetitiveResultEEE) +STUB("ShlQcYrzRF8", _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE10date_orderEv) STUB("ShnEkrw8E8Y", sceBgftServiceDownloadQueryTask) +STUB( + "ShnfzcFoG+w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEmmEv) +STUB("ShnorGeiNfs", _ZN3sce7Toolkit2NP2V26Trophy15TrophyPackGroupC2ERKS4_) STUB("Shr7bZq8QHY", sceNpSignalingGetPeerNetInfoA) +STUB("ShufOYuzN10", _ZN22MmsMdCommonFsOperation19readFileWithNoCacheEjPv) +STUB( + "Shwm8cRP3SA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEE11get_deleterEv) +STUB("ShwpckpQBkA", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product12unsetVersionEv) +STUB( + "ShxP0e23xbY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEixEm) +STUB( + "ShxtZk5Q1lU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEC2EPNS2_10LibContextE) +STUB( + "Shz+PoKB9Uw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEmmEi) +STUB("Si-V2tXCEKw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEC1Ev) +STUB("Si3-TJVqvlY", g_PS4TitleNPServiceId) +STUB("Si4sBM36Umc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEEplEm) +STUB( + "Si7yKXNvQ2s", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE4sizeEv) +STUB( + "SiD5x46bu20", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEE7get_refEv) +STUB("SiI9GcQUt5s", utrie_get32_67) +STUB("SiJJ2ssCwYY", + _ZN7WebCore19UserContentProvider54invalidateInjectedStyleSheetCacheInAllFramesInAllPagesEv) +STUB("SiOYqeFx8kU", uldn_open_67) +STUB( + "SidpYIN1fjw", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot8haslimitEv) +STUB("SioAjsFjL-Y", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEEixEm) +STUB("SirJwzKHMmQ", WKWebsiteDataStoreSetCacheModelSynchronouslyForTesting) +STUB("SitMQaXQ4+I", _ZN3JSC7Symbols30generatorResumeModePrivateNameE) +STUB("SiulcrStQPI", _ZN3sce2Np9CppWebApi15Personalization2V121GetAccessCodeResponse7setSaidEPKc) STUB("Sj3fKG7MwMk", sceLibcHeapGetAddressRanges) STUB("Sj5lbc4Y0mI", sceFiosDebugDumpFH) +STUB("Sj6AfkpQctM", mono_thread_hazardous_queue_free) +STUB("Sj7y+JO5PcM", posix_spawn_file_actions_addopen) +STUB( + "SjBh0klmHV4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEC2Ev) +STUB("SjBzzYgsPlM", _ZN3sce2Np9CppWebApi6Common18ResponseHeaderBaseD1Ev) +STUB("SjNoAv1glVM", _ZN7WebCore6Editor7CommandC2Ev) +STUB( + "SjRa0ubVKCo", + _ZThn16_N9Inspector21InspectorRuntimeAgent5parseERN3WTF6StringERKS2_PNS_8Protocol7Runtime15SyntaxErrorTypeERNS1_8OptionalIS2_EERNS1_6RefPtrINS7_10ErrorRangeENS1_13DumbPtrTraitsISE_EEEE) +STUB( + "SjTFLUmtpQY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEEaSERSA_) +STUB("SjUQXWH4oQc", _ZN9Inspector19InspectorAuditAgentnwEmPv) +STUB("SjUR30z0mo4", + _ZN7WebCore17JSHTMLLinkElement14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB("SjZwsoDk9zA", udata_openChoice) +STUB( + "Sjct2DaybkQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC1Ev) +STUB( + "SjfToK28huM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEC2EPNS2_10LibContextE) +STUB("Sjgoq0wcpm4", _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities5Error10getMessageEv) +STUB("SjhNfgXFUJs", _ZN3WTF11Persistence7EncoderlsEf) +STUB("Sjii1ZmA+cw", eglib_alloc) +STUB("Sjj0m6ZEy74", + _ZNK3sce2Np9CppWebApi7Matches2V122RequestPlayerStatistic6toJsonERNS_4Json5ValueEb) +STUB( + "SjqLYQYstV4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEmmEi) +STUB( + "SjquUVkMeiI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEC1EPS8_) +STUB( + "Sjsnk4uRAXI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEE11get_deleterEv) +STUB( + "SjvzCAwyoB0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE4sizeEv) +STUB( + "Sk0x5+1ED0Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEppEv) +STUB( + "Sk5Sb0lAu08", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE7reserveEi) +STUB("Sk8AdNQUDm8", _ZNK3sce2np10JsonNumber6GetNumEPi) +STUB( + "SkBjUodJ9y8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEED1Ev) STUB("SkE5SnCFjQk", sceUserServiceSetNpAccountUpgradeFlag) STUB("SkEwpiu3tZg", sceAjmBatchJobSetGaplessDecode) STUB("SkGKtXQoaCI", sceNetApctlStart) +STUB("SkGtNek9SeI", _ZN3JSC4Yarr17RegularExpressionnaEmPv) +STUB( + "SkHlAFbcb1A", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE4sizeEv) +STUB("SkKczWHdklc", _ZN3sce4Json6ObjectC2Ev) +STUB("SkPHOwndKis", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEEdeEv) +STUB("SkQAFojjxQ4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEcvbEv) +STUB("SkRR6WxCTcE", _Thrd_create) +STUB( + "SkZvcnNUxhc", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer14setkeepHtmlTagEb) +STUB( + "SkdJ1Y-1cYY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEppEi) +STUB( + "SkjsVs2mLkc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEC1Ev) +STUB( + "Skk5yRkE4a8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEEaSERKSA_) STUB("SknJO3Bt+-o", sceFaceTrackerInitialize) +STUB("SkpBP-sV1+c", _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEEixEm) STUB("SkutDtgqJ9g", scePthreadBarrierattrGetpshared) +STUB( + "Skxr8Yx3Y9w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEC2ERKS7_) +STUB("Sl9pOAWrAV8", mono_debug_lookup_locals) +STUB( + "SlBqBwGiBSE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEED1Ev) +STUB("SlG1FN-y0N0", malloc_get_footer_value) +STUB("SlJmRKntSo8", rgctx_fetch_trampoline_rgctx_12) +STUB( + "SlMLGXNLtOM", + _ZN3sce2Np9CppWebApi14SessionManager2V147PutPlayerSessionsNonPsnLeaderRequestBodyFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_40PutPlayerSessionsNonPsnLeaderRequestBodyEEE) STUB("SlVIGK1Kl38", sceAjmBatchJobEncode) +STUB("SlWnOIycbhU", ucnv_resetToUnicode_67) +STUB("Slh4bod3jBg", WKPreferencesGetEnableInheritURIQueryComponent) +STUB( + "Sll91vSiCXs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEE3getEv) +STUB("Slmz4HMpNGs", wcsncpy_s) +STUB( + "SlnsPzVyE3M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE7popBackEv) +STUB( + "SloQKMSA8Ic", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEC2EPS8_) +STUB( + "SlvlKAdTaqQ", + _ZN9Inspector25DebuggerBackendDispatcher23setAsyncStackTraceDepthElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("Slwr397kqnE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEC2ERKS7_) +STUB("SlxGzFV6+04", _ZNSt5ctypeIcE7_GetcatEPPKNSt6locale5facetEPKS1_) +STUB( + "Sm+nJstaUGU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("Sm3oDIlxp0o", _ZN7WebCore11DisplayList17FillRectWithColorC1ERKNS_9FloatRectERKNS_5ColorE) +STUB("Sm6dzXfc50Y", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIiEC2Ev) +STUB("Sm6n-8gnA5A", _ZNK7WebCore11HTMLElement15contentEditableEv) +STUB("Sm7qx9Bmbs8", delegate_virtual_invoke_imt_4) +STUB("Sm99ZdiUNuE", _ZN12video_parser14cVideoOperatorC2Ev) +STUB( + "SmFpN1hXpxI", + _ZN3JSC8Bindings13RuntimeObject18getOwnPropertySlotEPNS_8JSObjectEPNS_14JSGlobalObjectENS_12PropertyNameERNS_12PropertySlotE) +STUB( + "SmKBvc7Oo1U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEC2Ev) +STUB("SmLdzF-mHyM", mono_native_thread_create) +STUB( + "SmM0Qkj9nSg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEE11get_deleterEv) +STUB( + "SmRuMuhT3Zo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE7reserveEi) +STUB("SmSvNi1baX0", _ZN7WebCore4Page22removeLayoutMilestonesEj) +STUB("SmYrO79NzeI", abort_handler_s) +STUB("Smc0Zfi9srM", _ZN7WebCore9JSDOMRect6s_infoE) +STUB( + "SmefxL+Gp10", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEEC2ERSA_) +STUB("SmeximNcHHA", _ZN7WebCore22EmptyFrameLoaderClient24isEmptyFrameLoaderClientEv) +STUB("SmfaKdqI7YY", udata_getInfo_67) +STUB( + "SmgJ3S-AXTI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEC2EPS8_) +STUB("SmiBDj4lpKM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed4FeedEED1Ev) +STUB( + "Smio2NZdrp4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("SmkNomOOTio", _ZN7WebCore8SVGNames17color_profileAttrE) +STUB( + "SmtBNDda5qU", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERb) +STUB( + "SmwfXieeBw0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEE11release_refEv) +STUB("SmxDJwLGQzc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEdeEv) +STUB("Smy8175FjUE", _ZNK3sce2Np9CppWebApi7Matches2V119ResponseTeamResults22teamMemberResultsIsSetEv) STUB("Sn-MpfGTN9w", sceOpusCeltDecDestroy) +STUB( + "Sn0a3uZBMS8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEeqERKS9_) +STUB("Sn1xBvMhSSs", _ZN12video_parser7cVpUtil13vp_ff4_mallocEPvm) +STUB("Sn3TCBWJ5wo", _ZTIo) +STUB("Sn3WBciBmSE", _ZN3WTF40registerDefaultPortForProtocolForTestingEtRKNS_6StringE) +STUB("SnAItvPSZM4", qR5) STUB("SnAdybtBK3o", sceNpJsonParseBufInit) +STUB("SnBiExt9JLs", _ZN15AbstractStorage12LocalStorage12readExternalESt10shared_ptrINS_7ContentEE) +STUB( + "SnTL8hDEF84", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEED2Ev) +STUB("SnTlqvWCnP8", mono_btls_x509_lookup_up_ref) +STUB( + "SnXIYPIydfI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "SncvDP8g-PQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEdeEv) +STUB("SnhnFeqNSlk", _ZN3WTF8JSONImpl9ArrayBase10pushDoubleEd) +STUB("SnlaglxT1-4", WKPageGetPageCount) STUB("SnncAgC-UTY", sceKernelDeleteAIO) STUB("SnoQQWnGK9I", sceFiosOpWait) +STUB("Snq9yuqDfvY", _ZN7WebCore20RenderEmbeddedObject37setUnavailablePluginIndicatorIsHiddenEb) +STUB("SnsJfGiP3Bg", + _ZN3sce2Np9CppWebApi15Personalization2V121GetAccessCodeResponse12setExpiresAtERKl) STUB("SnsZua35ngs", sceFontSetTypographicDesign) +STUB("SnvC4bHqy5w", Java_com_sun_bluray_ui_FAABaseComponent_createHandle) +STUB("Snyf4vc4Grg", _ZNK7WebCore15HTMLFormElement6lengthEv) +STUB("SnygE7NsqN8", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request11GetWhoLiked17DEFAULT_PAGE_SIZEE) +STUB( + "So0jzJiWB+I", + _ZN7WebCore22EmptyFrameLoaderClient27dispatchWillSendSubmitEventEON3WTF3RefINS_9FormStateENS1_13DumbPtrTraitsIS3_EEEE) +STUB( + "So3itcY7ASI", + _ZN12video_parser5vpcom10_OpenAsyncEPcS1_yPPNS_8_vp_fileEPNS0_23VP_FILE_RESOURCE_STATUSEPvPFNS_11VP_RESULT_eES3_S7_E) +STUB("So6gSmJMYDs", _ZNSt6locale7_LocimpD2Ev) +STUB("SoG+DGkodLE", _ZN3sce2Np9CppWebApi6Common8IteratorIiEC2Ev) +STUB("SoL29cX4NkA", __ubsan_handle_mul_overflow) +STUB("SoNnx4Ejxw8", _FDtento) +STUB("SoP0PapyyOc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEcvbEv) STUB("SoQULIDd9V4", sceLncUtilGetAppIdOfRunningBigApp) +STUB("SoR-sSb9NXs", _ZN12video_parser17cVideoOperatorM4vD0Ev) +STUB("SoSlRguEq74", delegate_virtual_invoke_20_p) +STUB( + "SoTP6FrrBaA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEmmEi) +STUB("SoTv-6x935g", _ZTVN12video_parser17cVideoOperatorMp4E) +STUB("SoVXp6Al6wA", fuse_reply_poll) STUB("SoWHuVW0gpU", sceTextToSpeech2Terminate) +STUB( + "SoWI0mxczxY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) STUB("SoZkxZkCHaw", sceKernelFcntl) +STUB("SobU2mRBRgE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE7reserveEi) STUB("Socc-lFocbc", sceFiosFHReadv) +STUB("SoegtsYDreI", _ZNK3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap12getIsCurrentEv) +STUB( + "SofDiBXexNA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEEC2ERSA_) +STUB( + "Sol-IbjuEs8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE21intrusive_ptr_sub_refEPS9_) +STUB("Sol9Dxan-7I", _ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody12offerIdIsSetEv) +STUB("SolJKJMZ6O0", _ZN3sce7Toolkit2NP2V28Matching12Notification11RefreshRoom5resetEv) +STUB("SonsEmp2Hxo", uprv_compareInvEbcdicAsAscii) +STUB("Sopthb9ztZI", _malloc_thread_cleanup) +STUB("Soqya+3OJz0", pS3) +STUB("SowrYASQw5I", ucase_toFullLower) STUB("SoxZWGb3l0U", sceUserServiceSetPbtcMondayDuration) +STUB( + "Soyk98t8ztw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEC2ERKS7_) +STUB("Soz18UPWo04", _ZN18MmsFileUpdaterBaseD2Ev) +STUB( + "Soz2CwTHt14", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEC2ERKS7_) +STUB( + "Sp-9Gdec8Ig", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEEC2Ev) +STUB("SpYe+0rfftE", _ZN3sce7Toolkit2NP2V28Commerce14ProductDetailsaSERKS4_) +STUB( + "SpadD3XYSts", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "Spb+NsnITs8", + _ZN3sce2Np9CppWebApi14SessionManager2V129PostPlayerSessionsRequestBody8fromJsonERKNS_4Json5ValueE) +STUB( + "SphBH0AU-c0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE17getResponseHeaderERSA_) +STUB( + "SphP5ZiLgfU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEC2Ev) +STUB( + "Sptv-eSQYCY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEE3getEv) +STUB("SpuLBXsLhn0", _ZNK7WebCore20ResourceResponseBase3ageEv) +STUB( + "SpuW4bfsqhk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEptEv) +STUB("Spw3-DvOJ8Y", _ZNK9Inspector18InjectedScriptBase20inspectorEnvironmentEv) STUB("SpxLratrO1Q", sceVoiceQoSWritePacket) +STUB( + "SpyJv3+qKfY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEED2Ev) STUB("Sq1DqijPveA", sceMbusSetScratchDataUpdatedEventMask) +STUB("Sq7E7Dwlq0w", WKResourceCacheManagerClearCacheForOrigin) +STUB("Sq7RXXjeA3U", JVM_FindClassFromCaller) +STUB( + "Sq940kXf4Mg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEC2Ev) +STUB("SqCGJaZoMJQ", _ZN7WebCore4File6createEPNS_22ScriptExecutionContextERKN3WTF6StringES6_S6_) +STUB("SqE7qal4kn8", mono_aot_Sce_Vsh_VrEnvironmentmethod_addresses) +STUB( + "SqGzcOi487A", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEeqERKS9_) +STUB( + "SqK2d6a1SJA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEdeEv) STUB("SqPs2qGVqcQ", sceDebugGetSyncWaiterListForEQueueFd) +STUB( + "SqQ+kvs1pJM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEE11release_refEv) +STUB("SqVY7f9hfTg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12RangeOfRanksEED1Ev) +STUB( + "SqVZ+-eIAdU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEEC2ERKSA_) +STUB("SqcnaljoFBw", __atomic_fetch_add_8) +STUB( + "SqdDC7XnYl0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEptEv) STUB("SqfL0YjlBiA", sceSulphaGetDefaultConfig) STUB("SqfaljiIMTM", scePerfTraceAprNameAddBufferNotifyEvent) +STUB("SqjWWI7gk6Y", mono_property_get_name) +STUB( + "SqmqtVqcSoc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEC2EPS8_) +STUB( + "SqslwsP-Jnw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEeqERKS9_) +STUB( + "SqyFulslP-Q", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V116BandwidthFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_9BandwidthEEE) +STUB("Sr+YQoaMQds", _ZN9Inspector21CSSFrontendDispatcherC2ERNS_14FrontendRouterE) +STUB( + "Sr2qO7aMJvk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEC2EPNS2_10LibContextE) +STUB( + "Sr51T4lw-lM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEeqERKS9_) +STUB("Sr5agtY6Cto", mono_shared_hashtable_remove) +STUB("Sr7B6AB4ro0", _ZN7WebCore9HTMLNames13autofocusAttrE) +STUB("SrBEQHrcVyI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce19ServiceEntitlementsEEC2Ev) +STUB( + "SrEm1ZPRxIE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEmmEv) STUB("SrHBQhBty6Y", sceImeBackendGetCandidateList) +STUB( + "SrIPL4JHPIM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEC1Ev) +STUB("SrMFw9O0PtM", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_20ChallengeRecvDetailsEEC2ERKS4_) +STUB("SrZqj8GEkmM", _ZN7WebCore28InspectorFrontendClientLocal8SettingsC2Ev) +STUB("SreZybSRWpU", _Cnd_init) +STUB( + "SrfAPIzcVFs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEC1Ev) +STUB( + "SrhH98pUtfI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEC1EPS8_) +STUB("Srhc9BV4BTk", + _ZN3sce2Np9CppWebApi7Matches2V124ResponseTeamMemberResultC1EPNS1_6Common10LibContextE) +STUB( + "SrnrNnsB7lA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB("SroeR0alBFk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEE7add_refEv) +STUB("SrscAtq6wpw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEED1Ev) +STUB("SrvkW9SlLuk", + _ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody20updatedDateTimeIsSetEv) +STUB( + "Ss0ZG97HsM4", + _ZN7WebCore13getRawCookiesERKNS_8DocumentERKNS_3URLERN3WTF6VectorINS_6CookieELm0ENS6_15CrashOnOverflowELm16EEE) +STUB("Ss3108pBuZY", _Nnl) +STUB( + "Ss75oMrhPgw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEC2EPNS2_10LibContextE) +STUB("Ss7pQku6zPY", _ZN7WebCore4PathD2Ev) +STUB("Ss7x--ugOPw", mono_btls_x509_store_ctx_new) +STUB( + "Ss8ugsU105M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE7reserveEi) +STUB( + "SsB0uHiY3RY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE5beginEv) STUB("SsC-m-S9JTA", sceSystemServiceParamGetString) STUB("SsGLKTfWfm0", sceNpTrophySystemGetUserFileInfo) +STUB( + "SsLlJ8zibxo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEEaSERSB_) +STUB("SsMBIYv9GNg", _ZN7WebCore7Element12setAttributeERKNS_13QualifiedNameERKN3WTF10AtomStringE) STUB("SsRbbCiWoGw", sceFontSupportSystemFonts) STUB("SsTZ4to2D2A", sceMusicCoreServerSetRepeatMode) +STUB("SsWMlIDPtqs", _ZN4Manx11MediaPlayer6pausedEv) +STUB("SsbDxo-RZfo", _ZN3WTF10StringView16GraphemeClusters8IteratorD1Ev) +STUB("SsdtIRQ5sIM", Java_java_io_RandomAccessFile_initIDs) +STUB( + "SskYsgTc5aY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEneERKS9_) +STUB("SsuAWVkQHvE", _ZN3sce7Toolkit2NP2V210Tournament15RegisteredUsersaSERKS4_) +STUB("SswtmBxwCo4", uldn_localeDisplayName_67) +STUB( + "Ssz15-evSMg", + _ZNK3sce2Np9CppWebApi14ConnectAccount2V216PartnerTokensApi26ParameterToGetPartnerToken12getpartnerIdEv) +STUB( + "St+wuNbUWhg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("St4apgcBNfo", _ZTIi) +STUB("St5sflz09Vs", rgctx_fetch_trampoline_rgctx_51) +STUB( + "St7EFyXfGJE", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions13isInitializedEv) +STUB("St9crw2jQg4", _ZNK7WebCore4Node18isDefaultNamespaceERKN3WTF12AtomicStringE) +STUB("St9nbxSoezk", clearerr) +STUB("StCY5gaFH-g", WKWebsiteDataStoreSetStatisticsLastSeen) +STUB("StIsvRLuhwQ", + _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes8fromJsonERKNS_4Json5ValueE) +STUB("StJaKYTRdUE", _ZNSt13basic_istreamIwSt11char_traitsIwEED0Ev) +STUB( + "StNNipfeIBQ", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "StOZq85Z1CE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "StPNl2qegag", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEC1EPNS2_10LibContextE) +STUB( + "StTvjqZwwhI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEixEm) +STUB( + "StUWvbTfpNE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEE5resetEPS6_) +STUB("StUsdXpZIa8", _ZN3WTF3URL32removeQueryAndFragmentIdentifierEv) +STUB("StXnL46JBH8", _ZNK7WebCore8Document20linkColorForBindingsEv) +STUB("Stf2igW2C9c", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIlEC2Ev) +STUB("Stn8WH8AdjM", _ZNK3WTF3URL14isHierarchicalEv) +STUB("Sto7R5fuKIE", _ZN3sce2Np9CppWebApi6Common6BinaryC1EPNS2_10LibContextE) +STUB( + "Stu0U8ANHvc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEptEv) +STUB("Stuq0Kimqek", _ZN15AbstractStorage14FacebookFolder5CloseEv) STUB("SuBDgQswXgo", sceNpManagerIntRemoveActiveSigninStateCallback) +STUB("SuCCD+AZwCc", _ZN3sce2np4NpIdC1ERKS1_) STUB("SuE90Qscg0s", sceHmdInternalDfuClose) +STUB("SuICKR3aa+Q", _ZN3JSC7Symbols23callFunctionPrivateNameE) +STUB( + "SuL5xDfljvY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("SuPA7yU+Nl0", _ZN7WebCore28convertToIntegerEnforceRangeIaEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB("SuUi5+0aDCI", mono_shared_hashtable_new_full) +STUB("SuY8jMvW97U", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13FriendsOfUserEEneERKS4_) +STUB( + "SubXC8tq7Dg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE8capacityEv) STUB("SubkMx98zRY", sceNpManagerIntInitInternal) +STUB("Suc8W0QPxjw", _ZdaPvS_) +STUB( + "SuiY95xhNBc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEdeEv) +STUB( + "Sukor27TWD8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi42ParameterWithBinaryRequestBodyToUploadData14setRequestBodyEPKhm) +STUB( + "SuoJOUTw34A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE6resizeEj) +STUB( + "Suur-MUQ6rA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEC1EPS8_) +STUB("SuxRoXrFFq8", rgctx_fetch_trampoline_rgctx_112) +STUB( + "SuzEsCofxjw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEeqERKS9_) +STUB("SuzVGzgtJq4", Java_com_sony_gemstack_io_FilePath_n_1mkdir) +STUB("Sv2VdmEEAhA", JNU_SetStaticFieldByName) +STUB("Sv328nOfyDo", _ZN7WebCore24CoordinatedGraphicsLayer20didUpdateTileBuffersEv) +STUB("Sv6Ikb2tojM", _ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequest19setCancellationTimeERKi) +STUB("Sv7TbVAEqeQ", u_isbase) +STUB("Sv9cvPIyhDA", udata_closeSwapper_67) +STUB( + "SvAJtE1CPUM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEED2Ev) +STUB("SvD58x4BHnY", _ZN3sce2Np9CppWebApi13InGameCatalog2V513ContentRating9unsetNameEv) +STUB( + "SvE3+mF7OBI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "SvFdxFg-ddM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEE11get_deleterEv) +STUB("SvLBzVNYg24", _ZN7WebCore7Element15removeAttributeERKN3WTF12AtomicStringE) +STUB( + "SvO1B-yog4U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEED2Ev) +STUB("SvOponJOO4M", Java_com_sony_bdjstack_javax_media_controls_SoundManager_init) +STUB( + "SvPKTwK55DY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEE7add_refEv) +STUB( + "SvQyto9ZpvU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB("SvWJ6+35As8", fuse_fs_read) +STUB("SvYDbbSUsyM", _ZN3JSC7Symbols41copyDataPropertiesNoExclusionsPrivateNameE) STUB("SvdXHHt2LLE", sceSocialScreenOpenSeparateMode) +STUB( + "Svjr4ITh8Gc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEC2EPS8_) +STUB( + "SvkCnFdkw64", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE4sizeEv) +STUB( + "Svp3Y7Wq7a8", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemPropertiesD2Ev) +STUB( + "SvpSNOkL5mA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "SvrzrZdC7fs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEED1Ev) +STUB("Svs9bAHtjxs", _ZN3sce7Toolkit2NP2V28Commerce7Request18DownloadListTargetD1Ev) +STUB("SvurnbAr6-g", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching5RoomsEE3getEv) +STUB( + "SvvPFNmLQUg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEED2Ev) +STUB("SvyFVfJ7rUY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEE11get_deleterEv) +STUB("Sw003+Uo9GY", _ZN3WTF15firstDayOfMonthE) +STUB( + "Sw2ssQZ5Bmo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) STUB("Sw5F9MFh-WA", sceCtrlpRecStart) +STUB("Sw6PgY-FsnY", _ZN15AbstractStorage14DailymotionAPID2Ev) +STUB("Sw6hs2iJZkU", EC_POINT_mul) +STUB( + "SwAw3X0PKuE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("SwB8EH71bIU", otv_module_class) +STUB("SwCCeuHoB+8", _ZN3WTF9dataLogFVEPKcP13__va_list_tag) +STUB("SwD2P2Z02k8", + _ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_19CSSStyleDeclarationE) +STUB( + "SwISXzy0SPI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEC2EPKS8_) +STUB("SwJ-E2FImAo", _Atomic_compare_exchange_strong_1) +STUB( + "SwNTIE7lkj4", + _ZN7WebCore22EmptyFrameLoaderClient31dispatchDidReachLayoutMilestoneEN3WTF9OptionSetINS_15LayoutMilestoneEEE) +STUB("SwVRb5Q7GCQ", _ZN7WebCore16HTMLVideoElement26webkitDisplayingFullscreenEv) +STUB("SwaiCKyvMn4", _ZN3sce7Toolkit2NP2V212ActivityFeed4Feed5resetEv) +STUB("SwclUBFijyg", rgctx_fetch_trampoline_rgctx_10_p) +STUB( + "SwerCQRQad0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEEaSERSA_) +STUB("SwhP2CM5UxU", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEEdeEv) +STUB( + "Swo2gLmbLc8", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("SworfA4Mkgs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEEC2EPS5_PNS2_10LibContextE) +STUB( + "Swqqhz0PLl4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEE7add_refEv) +STUB( + "SwqzBRVjURs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEEC2ERSB_) +STUB("Swr0nR99Vtk", _GLOBAL__sub_I_orbis_thread.cpp) +STUB("SwvK2+qAD64", _ZN3sce7Toolkit2NP2V29Challenge7Request16ConsumeChallengeC2Ev) +STUB("Sx3QJf26Y2o", _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26RecordScoreResponseHeadersD2Ev) STUB("Sx4TTyrQccE", sceAppInstUtilAppUnInstall) +STUB( + "Sx7oH65VTR8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEixEm) +STUB("Sx8gcptQG8w", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error27getValidationConstraintInfoEv) +STUB( + "Sx9l7I5SN3I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("SxAScmvLxSM", _ZNK3sce2Np9CppWebApi11Matchmaking2V15Cause7getCodeEv) +STUB( + "SxH2xrgGrU0", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEiRNS2_10LibContextEPT_m) +STUB("SxI1qeVtadg", _Z23sceMatMapFlexibleMemoryPKvmii) +STUB( + "SxPExrUXNPI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("SxPu8PZuHuU", curl_multi_socket) STUB("SxQprgjttKE", sceAudioInInit) STUB("SxSEAtl-vow", sceDbgAddExternalTriggerEvent) +STUB("SxWVkTIB01Y", WKURLRequestCopyHTTPMethod) STUB("SxYUo6o6mjo", sceSysUtilSendSystemNotificationWithDeviceId) +STUB( + "SxaP1hKzlic", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEneERKS9_) +STUB( + "SxbBlpmAx1I", + _ZN3JSC14JSGlobalObject3putEPNS_6JSCellEPS0_NS_12PropertyNameENS_7JSValueERNS_15PutPropertySlotE) +STUB( + "SxepPWtu51E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("Sxjbwl5-9+U", WKCertificateInfoCopyCertificateAtIndex) +STUB( + "Sxpj+4sHFOs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEED2Ev) +STUB("SxrNZhowomw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEE3getEv) +STUB("Sxs0gMc4giY", _ZNK7WebCore13HitTestResult34isOverTextInsideFormControlElementEv) +STUB("Sy08Admb8ks", _ZN3sce7Toolkit2NP19CheckoutInputParamsC2Ev) +STUB( + "Sy0Gq4XY4y0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEED2Ev) +STUB("Sy6xsvd7hhA", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession21leaderPrivilegesIsSetEv) +STUB("SyEPt6ALkw8", WKBundleShutdownProcess) +STUB( + "SyFKjlDgCt0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("SyIALURy2hA", mono_shared_mempool_invalidate) +STUB( + "SyKoOAROdBo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEEaSERKSA_) +STUB("SyLtMxQlS6M", curl_multi_fdset) +STUB("SyNGim8sCDQ", coil_set_keepsocket) +STUB("SyNP2iUHpYQ", UnLockCommInfoList) +STUB("SyPivvfm1ac", _ZN3JSC8JSObject19getEnumerableLengthEPNS_14JSGlobalObjectEPS0_) +STUB("SyQOI661UwU", _ZN9Inspector32ScriptProfilerFrontendDispatchernaEm) +STUB("SyRUCvwvszA", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus9unsetInfoEv) +STUB("SyaPNlB3Lvg", _ZNK3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error7getCodeEv) STUB("Sygnk9dr5WQ", sceShareRegisterContentEventCallback) +STUB("SyilEZ5n3wU", + _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession16setMaxSpectatorsERKi) +STUB( + "SyjkxcAbV7k", + _ZN3JSC23JSModuleNamespaceObject18getOwnPropertySlotEPNS_8JSObjectEPNS_9ExecStateENS_12PropertyNameERNS_12PropertySlotE) STUB("SykFcJEGvz4", sceUserServiceGetTopMenuNotificationFlag) +STUB("Symql6+eiQk", + _ZN7WebCore22EmptyFrameLoaderClient17objectContentTypeERKN3WTF3URLERKNS1_6StringE) +STUB( + "SypkWM3gLp4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEEaSERSA_) +STUB( + "SysX2RP7zsE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE5beginEv) +STUB("Syux0CUu4+M", Java_java_awt_GnmRobotHelper_createScreenCapture) +STUB("SyxdUakD7HU", _ZN3sce2np12NpTitleTokenD0Ev) +STUB( + "SyzF-QDqp30", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEE7add_refEv) +STUB( + "Sz3YQM6OXVo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("SzCcVbz1Mrs", _ZN3WTF14numberToStringEdRSt5arrayIcLm123EE) +STUB("SzGuqAJY2z8", rgctx_fetch_trampoline_mrgctx_89_p) +STUB( + "SzGz9Zko6BY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEeqERKS9_) +STUB("SzH17QYNUNE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEEC2EPNS2_10LibContextE) +STUB("SzHwla--cKk", + _ZN3sce7Toolkit2NP2V24Core7Request20DefaultRequestParams21SERVICE_LABEL_DEFAULTE) +STUB("SzMYaEpEi2U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEE5resetEPS6_) +STUB( + "SzP8gMcsZ1Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEixEm) +STUB( + "SzVlcXTG31E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEdeEv) +STUB("SzVtzX43TiY", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V113SubtaskStatusEEneERKS7_) +STUB("SzZIqDlPu0w", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11TusVariableEEeqERKS4_) +STUB("SzbDr5bOLN4", _ZN3JSC7Symbols25regExpTestFastPrivateNameE) +STUB("SzcVE36hmeQ", _ZN7WebCore8SVGNames21enable_backgroundAttrE) +STUB("SziEFoFj2ys", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEEC2EPNS2_10LibContextE) +STUB( + "SzjIF95rxDY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEppEi) +STUB("SzoBfmhKhKc", utrans_register_67) +STUB("Szp04yaBKyM", _ZN7WebCore18TextureMapperLayer10setFiltersERKNS_16FilterOperationsE) +STUB("SzqDdByXmm0", _ZN3sce2Np9CppWebApi10Activities2V114UserActivities5Error9setReasonEPKc) +STUB("SzqrFMDOe8U", il2cpp_class_get_properties) +STUB( + "SzuHbyaVog0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "T+2d4ONf4PM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEEdeEv) +STUB("T+7Dhd2xuAU", __asan_unregister_image_globals) +STUB( + "T+Ai8-dACss", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V136FrequentlyMutedInPartyMetricsFactory7destroyEPNS3_29FrequentlyMutedInPartyMetricsE) +STUB( + "T+B9qAqbrw4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V128SetMultiVariablesRequestBody12setVariablesERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_38SetMultiVariablesRequestBody_variablesEEEEE) STUB("T+F4GKuY3oE", sceNpSnsIntCreateRequest) +STUB( + "T+IkbeASUqk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "T+NFqLoQ81o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "T+PggmKmFog", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB("T+SNEYc7XrI", + _ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody18setUpdatedDateTimeERK10SceRtcTick) +STUB("T+WD-TEHZhU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia11ScreenshotsEED1Ev) +STUB( + "T+cDvPEWupQ", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseD1Ev) +STUB( + "T+cSPvuoV2U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEE11get_deleterEv) +STUB( + "T+e5NOOpznw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEppEv) +STUB( + "T+h7igOPK-s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE8copyFromERKS9_) +STUB("T+j7sCWP7xk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEaSERS7_) +STUB("T+oUw8GT3Ys", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEC2EPS6_) +STUB( + "T+obHAT+ZuU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("T+zVxpVaaTo", _ZSt14_Cl_wcharnames) STUB("T-+xooU3VvQ", scePigletReleaseSystemMemoryEx) +STUB("T-3TDydbyOI", unum_getContext_67) +STUB("T-4dkG2zCKQ", _ZN7WebCore8SVGNames8imageTagE) +STUB( + "T-6g7F31oKk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("T-GOS0yg738", WKPageRunBeforeUnloadConfirmPanelResultListenerCall) +STUB("T-KZ5XJers8", _ZN7WebCore8SVGNames15flood_colorAttrE) +STUB("T-Nl1Cy+TeU", WKPageGroupCopyIdentifier) +STUB( + "T-OS5XPOFIk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEneERKS9_) STUB("T-Sd0h4xGxw", sceFontGraphicsAdjustFillRadialGradient) +STUB("T-V1czueebk", _ZN3sce7Toolkit2NP2V28Presence16PlatformPresenceC1Ev) +STUB("T-Z6jKt7uQY", uscript_getShortName_59) +STUB( + "T-bqIFFkFCM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE8capacityEv) +STUB( + "T-fNO6tJn0Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("T-iLbWI4WfU", WKViewSetViewPopupMenuClient) +STUB("T-jUc4FKpVU", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15PlayedWithStoryEED1Ev) STUB("T-mGo9f3Pu4", sceHttpSetAutoRedirect) +STUB( + "T-rbI-3a+Zw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("T-rbL3qmaiM", il2cpp_gc_collect) +STUB("T-swaTyeKTo", uregex_regionStart_67) +STUB("T-tXk+GsUww", _ZN3sce7Toolkit2NP2V28Commerce7Request13GetContainersC1Ev) +STUB("T-uddfL1AmI", _ZNK3WTF10StringView10tryGetUtf8ENS_14ConversionModeE) +STUB( + "T-upLZuhfMw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("T-xpaIGNLXU", WKBundlePageDumpHistoryForTesting) +STUB( + "T-zLeFMlzGk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEplEm) +STUB( + "T0-fTF59kM4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "T01RUAs5OKo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE5beginEv) +STUB("T07KcAOlIeU", + _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE5_FfmtEPccNSt5_IosbIiE9_FmtflagsE) +STUB("T0AEgFJcnzc", _ZN7WebCore18TextureMapperLayernaEm) +STUB("T0BBBtOc7Y8", mono_aot_Sce_Vsh_Messages_DbAccessLibmethod_addresses) +STUB( + "T0CzqR5tLXE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEneERKS9_) +STUB( + "T0HAjdVhIKE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEEaSERS9_) +STUB("T0JOV6EajrA", cairo_mesh_pattern_move_to) +STUB( + "T0NcO72zaK0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE5beginEv) +STUB( + "T0OLnBLbU0Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE5clearEv) +STUB("T0R5EFfwaTg", _ZN3JSC12StackVisitor5Frame8sourceIDEv) +STUB("T0RtzSCY4FE", _ZNK7WebCore12WebAnimation14timeToNextTickEv) +STUB( + "T0UBbmuD6rk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEE11get_deleterEv) +STUB("T0VGBVk1sP0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS15TusDataStatusesEED2Ev) +STUB( + "T0YUDWDwH3o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE10setContextEPNS2_10LibContextE) +STUB("T0aVLlco4D8", WKPreferencesGetEncodingDetectorEnabled) +STUB( + "T0dUUmAgu9g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "T0gbtrGEEHk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEED1Ev) +STUB("T0jEvxnQE10", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEEcvbEv) +STUB("T0oW10Z-9Fw", _ZN7WebCore16JSXMLHttpRequest23visitAdditionalChildrenERN3JSC11SlotVisitorE) +STUB( + "T0sH7VHdDYo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEptEv) STUB("T0ynQY3mH-0", sceVideoOutClearFlipMaster) +STUB( + "T1+P0MEg0Xk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEixEm) +STUB("T1-MFiUMm5I", GCC_except_table408) +STUB("T1-Z1I8I17o", _ZNK7WebCore11RenderStyle26colorByApplyingColorFilterERKNS_5ColorE) +STUB( + "T10WEq5MCLA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEC2Ev) +STUB("T10xlsNDjFU", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersD2Ev) +STUB( + "T167ZzpIqKw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE5abortEv) +STUB( + "T18+ZlmT8uQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEC1EPS6_PNS2_10LibContextE) +STUB( + "T1D+mYPLmMo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEE7get_refEv) +STUB( + "T1N-hVBvEGE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("T1PPlAh5vfw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEE5resetEPS6_) +STUB("T1YYqsPgrn0", _ZNSt14numeric_limitsIhE6digitsE) +STUB( + "T1cmtfSbv5A", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE13getLibContextEv) +STUB("T1eNlDYf7p0", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification11RefreshRoomEEC1Ev) +STUB( + "T1gHGMduF80", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEneERKS9_) +STUB("T1iBRWloVjg", MD4_Update) +STUB("T1kuF0NLUaw", _ZN3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectatorD1Ev) +STUB("T1lN-HZtmcs", ucln_cleanupOne) +STUB( + "T1sKGarkLag", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) STUB("T1t68JwPqME", sceKernelGetUtokenWeakenedPortRestrictionForRcmgr) +STUB("T1vTG8NicGQ", Java_java_lang_reflect_Array_setByte) +STUB("T1wLnMJV2KE", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119PlayStyleProperties12getOpenEndedEv) STUB("T204st1S50Q", scePlayReadyCdmiGenerateRequest) +STUB("T23YLQIlyFY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEED1Ev) +STUB( + "T27EfT9ODaE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEC2EPS6_PNS2_10LibContextE) +STUB("T2GDgYUO-GM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE7popBackEv) +STUB("T2GU7yBLQNA", WKPageGoForward) +STUB("T2IDImQGXhI", _ZN3sce7Toolkit2NP2V29Challenge10ChallengesaSERKS4_) +STUB( + "T2LbCOQdrlY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEE5resetEPS9_) +STUB( + "T2RMTQRTuYY", + _ZN7WebCore18setViewportFeatureERNS_17ViewportArgumentsEN3WTF10StringViewES3_bRKNS2_8FunctionIFvNS_17ViewportErrorCodeERKNS2_6StringEEEE) +STUB("T2S52YA15BU", _ZN3sce7Toolkit2NP17KickMemberRequestC2Ev) +STUB("T2T9cksAopA", _ZN3sce2Np9CppWebApi6Common6VectorIdE6insertENS2_13ConstIteratorIdEERKdRS6_) STUB("T2UOKf00ZN0", sceNpPartyGetMembers) +STUB( + "T2gPtmknpmc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEEaSERKS9_) +STUB( + "T2kvH7KFOOE", + _ZN3sce2Np9CppWebApi14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyC1EPNS1_6Common10LibContextE) +STUB( + "T2o7POm-rGo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEC2EPKS8_) +STUB( + "T2uir2IRDXg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEEC1ERKSA_) +STUB("T2w3ndcG-+Q", _ZN3sce2np8HttpFileD0Ev) +STUB( + "T2xoPkWLbfo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEE5resetEPS6_) +STUB("T2zg0WBB5so", mono_aot_Mono_Data_Sqliteplt) +STUB( + "T3-aJQbPL6U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE8copyFromERKS9_) +STUB("T327+NdBshc", + _ZN7WebCore21JSCSSStyleDeclaration15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "T35FBGsLB5k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEC1Ev) +STUB("T3A0YY9cXws", ucol_openElements_67) +STUB("T3DDKCffyLU", mono_aot_System_Net_Http_WebRequestunbox_trampolines) +STUB("T3Go5GjqGNk", _ZN7WebCore24DeprecatedGlobalSettings24setMockScrollbarsEnabledEb) +STUB("T3ItUkVoAJI", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_19WordFilterSanitizedEED2Ev) +STUB( + "T3RrNjGWjAA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEED1Ev) +STUB("T3URYCmLEvc", + _ZNK3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectator16customData1IsSetEv) +STUB("T3W9Y-smgpk", mono_btls_ssl_ctx_is_debug_enabled) +STUB("T3WReElX4BY", _ZN3sce4Json5Array8iteratoraSERKS2_) +STUB("T3YKOiki1yk", _ZN3sce7Toolkit2NP2V26Friend16FriendsOfFriends5resetEv) +STUB( + "T3YdLl0U2wI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("T3aMt+-A-0Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V114SearchOperatorEEC1Ev) +STUB("T3cTLVtkJec", ulist_createEmptyList_67) +STUB( + "T3cngap1dWE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEC1EPS8_) +STUB("T3dnU8gEyFA", _ZNK3sce2Np9CppWebApi14IdentityMapper2V312AccountIdMap12getAccountIdEv) +STUB("T3eF0TQ84Ts", uset_removeString_67) +STUB("T3gLp2xSZis", WKRenderLayerGetCompositingLayerType) +STUB("T3n-PPwiKko", VerifyClass) +STUB( + "T3pOgpPYBCs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "T3rWof-ea9o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEppEi) +STUB("T40ztl-1Xdw", il2cpp_class_from_name) +STUB("T42BJPYedzA", _ZN3sce7Toolkit2NP2V29Challenge18ChallengeThumbnailD1Ev) +STUB("T42boWJRm-Q", _ZN3JSC12BigIntObject6s_infoE) +STUB("T48ikVhJ2eM", _ZN7WebCore18ParsedContentRangeC1Elll) STUB("T4BHUjH773k", sceMouseExtensionSetConfig) STUB("T4BiNWsLHtQ", sceVnaUtilInitialize) +STUB( + "T4D-IrtC2uc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEC2Ev) +STUB("T4J7pya-x4c", ucnv_setSubstString) +STUB( + "T4JQHQc79D0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEED2Ev) +STUB("T4KqGQgbNPA", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE5beginEv) STUB("T4L2vVa0zuA", sceUserServiceGetVoiceRecognitionLastUsedOsk) +STUB("T4LQfIvEvl8", mono_aot_Sce_Cdlg_Platformplt_end) +STUB( + "T4Qvh94yAPM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE8copyFromERKS9_) +STUB("T4RZ2R4QNj8", _ZN7bmalloc15IsoHeapImplBasenaEmPv) STUB("T4Rd8lv7SaU", sceCompositorSetFlipCommand2) +STUB( + "T4S6GbHkXUI", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_errorC1EPNS1_6Common10LibContextE) STUB("T4UQhpiNn4E", sceRnpsAppMgrRecoverUfsImage) +STUB("T4UaFjUdbCo", _ZN7WebCore13AXObjectCache19enableAccessibilityEv) +STUB( + "T4VBdfYmBvE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEE3getEv) STUB("T4WqXTOe+A4", sceUlpMgrVshFinalize) +STUB( + "T4YS-bEio5I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE3endEv) +STUB( + "T4aO3n+d7ic", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("T4gCsx-jtOI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEE7get_refEv) +STUB("T4jFoVqCZmA", NET_SockaddrEqualsInetAddress) STUB("T4osaR3EDkI", sceKernelLwfsSetAttribute) +STUB("T4pnqZWxHco", __asan_load16) +STUB("T4t7EbNRa-Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEaSERKS7_) STUB("T4ucGB8CsnM", sceVideoOutVrrUnpegFromFixedRate) +STUB("T4vOLGegdvQ", WKBundlePageConfirmComposition) +STUB("T4w31LJSLNo", _ZN7WebCore11DisplayList11DrawPatternD0Ev) STUB("T589M5rT9iw", sceRemotePlayClientShowHomeScreen) +STUB("T59dz+-nR38", _ZN7WebCore6Editor7commandERKN3WTF6StringE) +STUB( + "T5NfXDZudTY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE7reserveEi) +STUB( + "T5OFqfz31ls", + _ZN7WebCore20UserGestureIndicatorC2EN3WTF8OptionalINS_26ProcessingUserGestureStateEEEPNS_8DocumentENS_15UserGestureTypeENS0_23ProcessInteractionStyleE) +STUB("T5OWyJevfHY", _ZN23sceMetadataReaderWriter8finalizeEv) +STUB( + "T5PBFSZkajA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEC2Ev) +STUB( + "T5TIxj8bH2w", + _ZN3sce2Np9CppWebApi14SessionManager2V131JoinedPlayerSessionWithPlatformC1EPNS1_6Common10LibContextE) STUB("T5Vs1D2PClU", scePthreadMutexattrSetgen) +STUB( + "T5XPSPGD3ME", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEEC1ERSA_) +STUB("T5Y5L0Em2xw", _ZN7WebCore9TimerBaseC2Ev) +STUB( + "T5cEQg6YTJs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEE5resetEPS9_) +STUB( + "T5i4e9kL6LI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEEaSERKSA_) +STUB("T5khZWssY4A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEED1Ev) +STUB( + "T5mF4EXKHaU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE10setContextEPNS2_10LibContextE) +STUB("T5o+X-wW0AE", WKPreferencesSetDOMPasteAllowed) +STUB( + "T5s3L5oVv6U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEEC1ERSA_) +STUB( + "T5tp+VWDoHs", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB( + "T5x8nG7btEQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEC1EPS8_) STUB("T61vWaA+d9Q", sceNpJsonParse2) +STUB( + "T64n2bzRmZQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE5beginEv) STUB("T64o-315wbg", sceShareSetScreenshotOverlayImage) +STUB( + "T68mQdfIoY0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEC1Ev) STUB("T6CVkdCDO7o", sceCompositorGetSystemAddress) +STUB( + "T6DR7R7k5yY", + _ZN8meta_gen11MsvPromoter24setKeyValue_TBLAVC_WidthENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB("T6DkmU7eTlg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEptEv) STUB("T6FYjZXG93o", sceImeGetPanelPositionAndForm) +STUB( + "T6Hq2VWFIzo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) STUB("T6LrBljciS0", sceAvSettingNotifyProcessResume) +STUB("T6PgrfSegHY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEaSERKS7_) +STUB("T6a3cXf9a+s", _ZN9Inspector18InspectorHeapAgent12stopTrackingERN3WTF6StringE) +STUB("T6aBLn9qAKw", upvec_close_67) +STUB( + "T6ao+IlfzFY", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEiRNS2_10LibContextEPT_m) +STUB( + "T6bhSSTLzeU", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS5_INS7_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("T6cIWTdtu9w", _ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE3endEv) +STUB("T6dq8X4MjWk", mono_image_get_strong_name) +STUB("T6eEJ0yDotY", _ZN3sce2Np9CppWebApi7Matches2V123RequestTeamMemberResultD2Ev) +STUB( + "T6iopR5v16k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEC1EPS9_) +STUB("T6jaOV62tbI", _ZN9Inspector21RemoteInspectorServer9singletonEv) +STUB( + "T6oP7qjlMnY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE7reserveEi) STUB("T6tnM1Uti4g", sceNpLookupNpId) STUB("T6xuVw0KUJo", sceAgcDebugRaiseException) +STUB( + "T700EPcLMQc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEED1Ev) +STUB( + "T705Y+e3XZs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEixEm) STUB("T70Qyzo51uw", sceUserServiceGetPbtcThursdayHoursStart) +STUB( + "T71vszAdLHI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE8copyFromERKS9_) STUB("T72hz6ffq08", scePthreadYield) +STUB("T75otfFvxGA", u_fgetcx_67) +STUB("T7EoauKK+cM", _ZNK3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayer12getAccountIdEv) +STUB("T7I1KBLPAs4", + _ZN3sce2np13JsonDocParser11createValueEPNS0_9JsonValueENS0_10JsonParser9ValueTypeEPKc) +STUB( + "T7QLImGInhs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEE7get_refEv) +STUB( + "T7ZDKOb2640", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("T7jc4xaLMKo", ucurr_getName) +STUB("T7jpSs90834", _ZN7WebCore9HTMLNames6idAttrE) +STUB("T7nplsVsL2E", _ZN3JSC7Symbols34stringSubstringInternalPrivateNameE) +STUB("T7uvjt1f0HM", il2cpp_class_is_inflated) +STUB("T7uyNqP7vQA", tan) +STUB( + "T7vKrppbcig", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEdeEv) +STUB( + "T7wMUkA8NbI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("T7zncgvFweM", _ZNK7WebCore16HTMLImageElement8completeEv) +STUB( + "T85u2sPrKOo", + _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE11do_get_dateES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm) +STUB("T87yshnXkMU", mono_jit_set_aot_only) STUB("T8A8MZcrjS4", scePlayReadyProfilePause) +STUB("T8BlFd-lMik", mono_aot_Sce_PlayStation_HighLevel_UI2jit_code_start) +STUB( + "T8Ck1sVF4u4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "T8DFlhGXUuM", + _ZN9Inspector21InspectorConsoleAgent18getLoggingChannelsERN3WTF6StringERNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Console7ChannelEEENS1_13DumbPtrTraitsISA_EEEE) +STUB("T8K2tZMk0O4", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15CategoryInfoSubEED1Ev) STUB("T8KYHPs1JE8", sceMoveSetLightSphere) +STUB( + "T8KgSoXBsCI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEC1Ev) +STUB( + "T8QYmsnx2JY", + _ZN3sce2Np9CppWebApi14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBody8fromJsonERKNS_4Json5ValueE) +STUB("T8VkAKBOWl8", WKBundleSetJavaScriptCanAccessClipboard) +STUB( + "T8ZNwA0DtvA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE5emptyEv) STUB("T8ZlojCdON0", sceKernelGetParentApp) +STUB("T8b+oe2DcgE", _ZNK7WebCore15VisiblePosition4nextENS_27EditingBoundaryCrossingRuleEPb) +STUB("T8epoPh-reg", _ZN12Mp4Retriever7loadBoxEv) +STUB("T8fER+tIGgk", select) +STUB("T8fOjmwNgOI", _ZNK3WTF8JSONImpl9ArrayBase9writeJSONERNS_13StringBuilderE) +STUB( + "T8gMdESDuNg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEEC2ERKSA_) +STUB("T8gUq8nzVrg", _ZN3sce7Toolkit2NP18UserProfileRequestC1Ev) +STUB("T8jV1atvgZY", _ZN3sce7Toolkit2NP2V210Tournament22TeamVsTeamMatchDetailsC2Ev) STUB("T8jy0JWa210", sceCamera2GetHue) +STUB("T8lH8xXEwIw", _Atomic_fetch_sub_8) +STUB("T8mmyXkQxRE", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V111OfferStatusEEC2EPS6_) +STUB( + "T8mw3Nr9i+8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEC2Ev) +STUB( + "T8qsDTXBrOM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEC2EPNS2_10LibContextE) +STUB("T8r-IQC4Ir8", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE3endEv) +STUB( + "T8ukb53jIwc", + _ZN7WebCore6Editor15pasteAsFragmentEON3WTF3RefINS_16DocumentFragmentENS1_13DumbPtrTraitsIS3_EEEEbbNS_22MailBlockquoteHandlingE) STUB("T8upMyvUPz0", sceFiosCachePrefetchFile) +STUB("T8vnV8tm9f0", + _ZNSt15basic_streambufIcSt11char_traitsIcEE7seekposESt4fposI9_MbstatetENSt5_IosbIiE9_OpenmodeE) STUB("T8xEHO2Y+XU", sceAgcDriverAllocateToolMemoryForGpuReset) STUB("T9-NuSHAvcQ", sceLoginServiceInitialize) +STUB("T94JbyFDzgY", _Write) +STUB( + "T996G7kIz7s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE7popBackEv) +STUB( + "T9A61bHHBP4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEEC1Ev) +STUB("T9LZVgaendA", _ZN3JSC2VM34unlinkedFunctionCodeBlockSpaceSlowEv) +STUB("T9OGLog7agk", mono_disasm_code) +STUB( + "T9OhZwk3U8o", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEneERKS9_) +STUB("T9QNcoIsEqs", _ZN7WebCore21ISOTrackEncryptionBoxC2Ev) +STUB( + "T9QP6K5Z+WM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("T9Y7kdTM9V4", _ZN7WebCore12SharedBufferC1Ev) +STUB("T9f0vjBcCjI", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_16NetStateDetailedEED1Ev) +STUB( + "T9fQOSVyChY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEEptEv) STUB("T9fjQIINoeE", sceAgcQueueEndOfPipeActionPatchType) +STUB( + "T9kEEoh7W-4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB("T9n7NsRzQZQ", _ZN3sce2Np9CppWebApi6Common6VectorIiEC1EPNS2_10LibContextE) +STUB( + "T9uiElmaoFo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB( + "T9wNcRYsAOk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEE5resetEPS9_) STUB("T9xeifEUF3w", sceShellCoreUtilUnmountAppRight) STUB("T9yCBYaGDew", sceVdecCoreTrySyncDecodeWptr) +STUB("T9zZMfuHeN0", _ZN3JSC7Symbols21regExpExecPrivateNameE) +STUB("TA33hG8chaM", _ZNK3JSC12JSRopeString31resolveRopeToExistingAtomStringEPNS_14JSGlobalObjectE) STUB("TA4NTYpt0uU", sceVnaGetWakeupPhraseInfoCount) +STUB("TA4rU9ZXgFM", _ZN4IPMI6Client6Config27AsyncMethodInvocationConfigC1Ev) +STUB("TA5PTLnmxas", _ZN3sce2Np9CppWebApi14SessionManager2V131ResponseGameSessionMemberPlayerD1Ev) STUB("TABucyiW6AQ", scePadVrControllerReadCombinedState) +STUB("TAIH+ypi0Zg", _ZN7WebCore8SVGNames12additiveAttrE) +STUB("TAIhaLjmAlg", cairo_paint_with_alpha) +STUB("TAJqZTApovE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEEppEv) +STUB("TALvt3S7UpQ", _ZN7WebCore5Color11transparentE) +STUB("TAM4tVJxMNs", _ZN3sce7Toolkit2NP2V28Commerce16RatingDescriptorD1Ev) +STUB("TAPTWYaYf8Q", _ZN3sce4Json5Array8iteratorC1Ev) +STUB("TAUezVfCrKc", _ZN3sce2np13JsonDocParser12onObjectNameEjjPKc) +STUB( + "TAZ6piWMCr8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEC2ERS7_) STUB("TAcqIuI0JjY", scePlayReadyCdmiGetConfiguration) +STUB( + "TAhERcIUOsI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEEC2ERSA_) +STUB("TAtHxpv9wEM", mono_aot_System_IO_Compression_FileSystemplt_end) +STUB("TB+cYQ89RiM", _ZN7WebCore15HTTPHeaderFieldC2EON3WTF6StringES3_) +STUB( + "TB2EH8AB25c", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEEptEv) +STUB( + "TB5KnZwOfGM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEppEi) +STUB("TB6bA40pAig", _ZN8meta_gen14ImageRetriever23CreateThumbnailFromFileEPcRf) +STUB("TB7J71se2I0", _ZN3sce7Toolkit2NP22BlockedListInfoRequestC1Ev) +STUB( + "TB9zuAEH1YI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB("TBAQFb1Gjzs", _ZN23sceMetadataReaderWriter11_storageHddE) +STUB("TBGBVDzPzh0", WKBundleNodeHandleGetRenderRect) +STUB( + "TBKvvBrgcPE", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer17unsetserviceLabelEv) +STUB( + "TBRqkBlKG5w", + _ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionMemberPlayer10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_27ResponsePlayerSessionPlayerEEEEE) +STUB( + "TBTSH1NR8hs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEC2ERS8_) +STUB( + "TBV6q98yypA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEEC2ERKSA_) STUB("TBWW4aPfWcA", sceAjmBatchJobGetInfo) +STUB("TBeZQ0ZN6dg", WKNavigationResponseGetTypeID) +STUB("TBjFH+qUxVM", MD5) +STUB( + "TBn5VxXEaLU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("TBoSLF0Ro9g", WKPreferencesSetInspectorAdditionsEnabled) +STUB( + "TBpJutnkFkk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB("TC4eCNLv+ZI", _ZNK3sce2Np9CppWebApi7Matches2V15Error9getSourceEv) +STUB("TC9965WYLHM", WKURLRequestCreateWithWKURL) +STUB( + "TCFCMmT-OyE", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot8hasgroupEv) +STUB("TCGaocenYbg", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEEC1Ev) +STUB( + "TCJpUloY2bw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEEC1ERSA_) +STUB("TCL2XqRT68g", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging25GameDataMessageAttachmentEE3getEv) +STUB("TCLYB70X9OA", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V128SetMultiVariablesRequestBody14variablesIsSetEv) +STUB( + "TCMtYMfpCv0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEmmEv) +STUB("TCQOHlVGX+U", rgctx_fetch_trampoline_rgctx_98) +STUB("TCRmigbq7lc", FT_Render_Glyph) +STUB( + "TCRug7A0Iso", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEmmEi) +STUB( + "TCVEM3USLEc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEE11release_refEv) STUB("TCZyE2YI1uM", sceNetShowRoute6WithMemory) +STUB( + "TCj7EKvTvhA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE7reserveEi) STUB("TCkRD0DWNLg", sceNetGetpeername) +STUB("TCoxhC7dHcs", _ZN3sce7Toolkit2NP2V27Session20LocalizedSessionInfo10STATUS_LENE) +STUB( + "TCpMi+hGAhY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE21intrusive_ptr_sub_refEPS9_) STUB("TCqT7kPuGx0", sceAppContentGetDownloadedStoreCountry) +STUB("TCsNanKP+U4", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE3endEv) +STUB("TCxkyZtQmF0", _ZN3IPC18MessageReceiverMap21removeMessageReceiverENS_15StringReferenceE) +STUB( + "TD-7tEowBHg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEixEm) +STUB( + "TD0wAuIQqqM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEplEm) +STUB("TD4yuUlRdTE", utext_close_67) +STUB("TDGzlNos7eM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEEC1EPNS2_10LibContextE) +STUB( + "TDHb1zxNzPc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "TDLjxlFwVgE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "TDMpxGpIMfg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEeqERKS9_) +STUB("TDRCoFObHro", _ZN7WebCore10StorageMap3keyEj) +STUB("TDRsCp3GG+g", mono_aot_Sce_Vsh_VideoRecordingWrapperjit_got) +STUB("TDXEkfbB7o8", _ZN3sce7Toolkit2NP2V27NpUtils7Request22GetAccountIdByOnlineIdD1Ev) +STUB( + "TDXGaTNdDbg", + _ZN3sce2Np9CppWebApi14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyC1EPNS1_6Common10LibContextE) +STUB("TDZC+Ww30ys", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus22getLastUpdatedDateTimeEv) +STUB("TDcSAy5LzTc", _ZN6WebKit17ChildProcessProxy26abortProcessLaunchIfNeededEv) STUB("TDfQqO-gMbY", sceSslGetCaCerts) +STUB( + "TDfhatKH6bA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("TDhjx3nyaoU", _ZNSt7_MpunctIwEC2EPKcmbb) +STUB("TDly960ALRg", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats8mmrIsSetEv) +STUB("TDn0PWg7Jnk", mono_aot_System_Threading_Tasksunbox_trampoline_addresses) STUB("TDoqRD+CE+M", sceNpTusGetFriendsDataStatusForCrossSave) +STUB("TDrGYoSkxMo", __sanitizer_cov_dump) +STUB("TDtCTYwcHIs", WKPreferencesGetUniversalAccessFromFileURLsAllowed) +STUB("TDuC6To9HJ8", _ZN3sce2np7Callout5StartEjPNS1_7HandlerE) +STUB( + "TDuxTuyLPIY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEE7add_refEv) +STUB("TDw66YLBpg0", _ZN3JSC11VMInspector13dumpCallFrameEPNS_9ExecStateEj) +STUB( + "TE+2sWIXI9M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEED1Ev) +STUB( + "TEABnd+G9tQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEC1EPS8_) +STUB("TEAq8iMH9O4", _ZN3JSC7Symbols23provideFetchPrivateNameE) +STUB( + "TECRh7NmqIA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB("TEFYZUChnps", u_fgetConverter_67) +STUB( + "TEIQaRsz7Nw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEED2Ev) +STUB("TEMThaOLu+c", _ZNSt14numeric_limitsIDiE9is_signedE) STUB("TESmX5D-i54", sceDbgKeyboardOpen) +STUB("TEVrkWV4tsA", _ZN7WebCore16BlobRegistryImplD0Ev) STUB("TEW3IKxYfXc", sceContentSearchSearchContent) +STUB("TEXK2RQkhx0", uenum_openFromStringEnumeration_67) +STUB("TEd4egxRmdE", mbrtoc32) +STUB("TEhXNTfZWlY", _ZN12video_parser17cVideoProfilerMp417_createAudioCodecEjPNS_13VpMediaInfo_tE) +STUB( + "TEj-be6rlEM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEC1EPS6_PNS2_10LibContextE) +STUB("TEmmurC3zow", _ZN3sce2np9JsonArrayC1EP14SceNpAllocator) +STUB("TEmyq2mz3QU", _ZN7WebCore16HTMLInputElement5filesEv) STUB("TEsQ0HWJ8R4", sceUserServiceGetVolumeForGenericUSB) +STUB("TEtyeXjcZ0w", _ZNSt8numpunctIcEC1Em) +STUB("TEwqtzAmezo", ksem_init) +STUB("TExBVnSsbKQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEC2Ev) +STUB("TExVA41Gyh4", _ZNSt6vectorIN15AbstractStorage19FacebookFolderEntryESaIS1_EE9push_backEOS1_) +STUB( + "TEyAaT5mjKQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEED2Ev) +STUB("TF+uJ5OgjRE", mono_code_manager_new_dynamic) +STUB("TF1H5w8DeSo", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_19ProductInfoDetailedEE7addressERS3_) +STUB("TF7T1ARtN+4", _ZN3sce2Np9CppWebApi6Common8IteratorIjEppEv) +STUB( + "TFBq3+rs8Ek", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEeqERKS9_) STUB("TFHm6-N6vks", _sceUltQueueDataResourcePoolCreate) +STUB( + "TFIH1gqO-RI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("TFJPWkwQ62Y", rgctx_fetch_trampoline_mrgctx_85) +STUB("TFMg6xiaT10", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEaSERS7_) +STUB("TFQd2WVF5tU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEaSERS7_) +STUB("TFTfPLH+Ue8", _ZN4IPMI4impl10ServerImpl14registerKeventEi) +STUB("TFaZLdYPbls", _ZNK7WebCore4Node18isDefaultNamespaceERKN3WTF10AtomStringE) +STUB("TFclhiSEXqI", WKNotificationCopyTitle) +STUB( + "TFoaFXf0vEQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE5beginEv) +STUB("TFomi8j7Tas", u_isISOControl_67) +STUB( + "TFsGPEgcYYw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("TFu1HTQqTsM", _ZNK7WebCore12RenderObject17useDarkAppearanceEv) STUB("TFyU+KFBv54", sceNpEntitlementAccessGetAddcontEntitlementInfoList) +STUB("TFyVtXqnZrA", _ZN15AbstractStorage14YoutubeContentD1Ev) +STUB("TFyk1CYu0mo", + _ZN3sce7Toolkit2NP2V29Messaging7Request19SendGameDataMessage18MAX_SIZE_DATA_NAMEE) +STUB( + "TG0rdm+BHyw", + _ZN7WebCore14FrameSelection12setSelectionERKNS_16VisibleSelectionEN3WTF9OptionSetINS0_18SetSelectionOptionEEENS_23AXTextStateChangeIntentENS0_19CursorAlignOnScrollENS_15TextGranularityE) +STUB("TG3iqA3SgLs", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEE5resetEPS4_) +STUB("TG3r8b3sqqM", g_hash_table_size) +STUB("TGBn8YLhSro", _ZN3WTF13printInternalERNS_11PrintStreamEs) STUB("TGEZzUWLbrc", sceAgcCbSetUcRegistersDirectGetSize) +STUB( + "TGIj8WnYMeY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE6resizeEj) +STUB("TGJ5bE+Fb1s", _ZN3sce2np9NpTitleIdD1Ev) +STUB( + "TGJ60786Vzs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEmmEv) +STUB( + "TGK5IJ35lzI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "TGMFdUSS3Uk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE5clearEv) +STUB( + "TGOtuGphLw0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE6resizeEj) STUB("TGRaXM8tHdo", sceDeci4hDrfpReleaseBuffer) +STUB("TGSWFyxiuf8", _ZN3JSC2VM20setIteratorSpaceSlowEv) +STUB( + "TGTHFnXjdAU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEC1EPS6_PNS2_10LibContextE) +STUB("TGU99OcdkEw", WKPreferencesGetOfflineWebApplicationCacheEnabled) +STUB("TGYjQWpJ2Z8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEC1ERS7_) +STUB("TGaR23-2C1s", WKDatabaseManagerGetDatabaseDetailsModificationTimeKey) +STUB("TGf8Vh+xeHo", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEED1Ev) +STUB( + "TGfkgf2cxcc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEEC1Ev) +STUB( + "TGkFyuSBTEg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEEC2Ev) +STUB("TGqfADbxy1s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEED1Ev) +STUB("TGsos8ZCV8c", _ZN3sce3pss5orbis9framework24InitializePsmEventCsharpEv) +STUB("TGuMd7Mc+Bc", _ZN7WebCore13JSHTMLElement9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB( + "TGwWCLrzVYI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEC1EPS8_) +STUB("TGwl4fiL2JI", _ZN3sce7Toolkit2NP2V26Friend12BlockedUsersC1ERKS4_) +STUB("TGyF9uiUGQY", _ZN7WebCore18JSHTMLVideoElementC2ERKS0_) +STUB("TH+yGaroNWg", _ZN3sce7Toolkit2NP2V27Session14InvitationDataaSERKS4_) +STUB( + "TH0fU7SdDcg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEmmEv) +STUB("TH9idd-IFfM", _ZN3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator14unsetJoinStateEv) +STUB( + "THB-wvY+nNg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEE11get_deleterEv) +STUB( + "THFniQXBq9E", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi9joinMatchEiRKNS4_20ParameterToJoinMatchERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB( + "THH2KcDTK9Y", + _ZN8meta_gen11MsvPromoter30setKeyValue_TBLAVC_CreatedTimeENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB("THNzGIjuTFw", + _ZN3sce2Np9CppWebApi11UserProfile2V120BasicPresenceFactory7destroyEPNS3_13BasicPresenceE) +STUB("THO0RsxD6hY", png_get_color_type) +STUB( + "THOmjDDtWSM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEEC2EPSA_PNS2_10LibContextE) +STUB("THP8MYBpfG4", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEEptEv) +STUB("THUXn8n+dOE", _ZN3JSC48UnconfigurablePropertyChangeConfigurabilityErrorE) +STUB("THWDguS4dME", _ZNK7WebCore17HTMLOptionElement18ownerSelectElementEv) +STUB("THXrHBwZILE", _ZN7WebCore8SVGNames10orientAttrE) +STUB( + "THZ8PmUlCSo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEmmEi) +STUB( + "THavz+wPp8c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEC1EPNS2_10LibContextE) +STUB("THcHgZElshs", cairo_set_fill_rule) +STUB( + "THdc7lCzGOw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEE7add_refEv) +STUB("THf+FNX0FaA", + _ZN3sce2Np9CppWebApi15Personalization2V121GetAccessCodeResponse8fromJsonERKNS_4Json5ValueE) +STUB("THh1aXQLUk4", _ZN7WebCore10JSDocument4infoEv) +STUB("THhPk-FTXPk", _ZThn176_N7WebCore8Document8postTaskEONS_22ScriptExecutionContext4TaskE) +STUB( + "THiU2Zr+Efk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEmmEv) +STUB( + "THkDfcyZVfE", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEEiRNS2_10LibContextEPT_m) +STUB( + "THmPLO9ixAE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEEC1ERSA_) +STUB("THoqw25Bm4Y", vzone_writeSimple_67) +STUB( + "THybu+0Xr0E", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB( + "THykYEt8NQ0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("THz5e4CJP-Y", _ZN10MsvUpdater11getFilenameEmPc) +STUB("TI+djeSDh5s", _ZN15AbstractStorage14MemfileContent8SeekByteEliPl) +STUB("TI5ES3rnuTI", _ZN9Inspector32DebuggerBackendDispatcherHandlerD0Ev) +STUB("TI5Vxsw0xME", WKBundlePageGroupGetTypeID) +STUB( + "TI5eKFsWHfs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE5clearEv) +STUB("TI6pnb4Ova4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEEaSERKS6_) +STUB("TIC0-2sQ8ZY", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEEptEv) +STUB( + "TIE4VNpcdtE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEmmEv) +STUB("TIIXA2JOiOw", _ZTVN9Inspector21InspectorRuntimeAgentE) +STUB( + "TIW0+xA6C24", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEC2EPNS2_10LibContextE) +STUB("TIWikmyjjYo", WKBundleSetDatabaseQuota) +STUB("TIXhfLgeJHo", _ZN3sce7Toolkit2NP2V212EventsClient6EventsC1Ev) +STUB("TIcuE5Y+ViQ", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setTextSTStyle) +STUB( + "TIdDZeVUTJ4", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V333CommunicationRestrictionStatusApi44ParameterToGetCommunicationRestrictionStatusC1Ev) +STUB("TIdn+yGbJlo", glEnable) STUB("TIhyl0S4i7g", sceNpUniversalDataSystemIntRecordObjectSetUInt32) +STUB("TIkDupljJqY", _ZNK7WebCore8Document7bgColorEv) +STUB( + "TImf0LCHuzY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEppEv) STUB("TIr3rnF-1RA", sceUpsrvGetSystemExUpdateTaskState) +STUB( + "TIw+XqK-Gpc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEEaSERKSA_) STUB("TIytAjYeaik", sceRazorCpuStartCaptureInternal) +STUB("TJ2NUsHORlU", _ZN4Manx11MediaPlayer7setSizeEii) +STUB( + "TJ3mnYXAZDk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) STUB("TJCAxto9SEU", sceNpTrophyRegisterContext) +STUB("TJFQFm+W3wg", finite) +STUB("TJG6tf+yJlY", sigqueue) +STUB( + "TJHyPe54bog", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEED2Ev) +STUB( + "TJIV4zGjz8o", + _ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends10initializeEPNS1_6Common10LibContextEPKc) +STUB( + "TJJq4xIwp8E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE8capacityEv) +STUB("TJNrs69haak", _ZN3sce2np5Mutex7TryLockEv) +STUB("TJPfcVnZnUk", _ZN7WebCore16TrackPrivateBasedaEPv) +STUB( + "TJR4JqECxTc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEE3getEv) +STUB( + "TJTD2180kNY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEC2Ev) +STUB("TJVkpK-C6G0", WKWebsiteDataStoreConfigurationSetMediaKeysStorageDirectory) +STUB( + "TJWgLu3k8xQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "TJXtHw5mkKY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEC1ERS7_) +STUB( + "TJZ2bDcI8Vo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEixEm) +STUB("TJbM4gtL7mU", + _ZN7WebCore22HistoricalVelocityData18velocityForNewDataENS_10FloatPointEdN3WTF13MonotonicTimeE) +STUB("TJdN+l3A1+U", _ZN7WebCore22HTMLFormControlElement13setFormActionERKN3WTF12AtomicStringE) +STUB( + "TJj-3+PiTW4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEmmEv) +STUB("TJkl66wcxuo", _ZN7WebCore8Settings18setFrameFlatteningENS_15FrameFlatteningE) +STUB("TJmXkFe3Cbo", WKWebsiteDataStoreConfigurationSetServiceWorkerRegistrationDirectory) +STUB("TJmeruk9Dh4", _ZN9Inspector21InspectorRuntimeAgentD1Ev) +STUB("TJoynmWee5U", mono_marshal_set_cached_stelemref_methods) STUB("TJp3kdSGsIw", sceShellCoreUtilSetImposeStatusFlag) +STUB("TJpNIabD5xo", utext_openUTF8_67) +STUB( + "TJpytHEcGJU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEE5resetEPS9_) STUB("TJqSgUEzexM", sceNpSetNpTitleIdVsh) +STUB( + "TJv+tIgDIMY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE7reserveEi) +STUB( + "TJz8sDUa6n4", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE5startEPNS2_10LibContextE) +STUB( + "TK-C+fGnZik", + _ZN3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinition17setnpServiceLabelEj) +STUB( + "TK0zq4F3y7c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEaSERS7_) +STUB("TK1i-05lxPA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE5beginEv) +STUB("TK6fX5Lm-6A", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy17TrophyPackSummaryEEC1Ev) +STUB("TK8KB0Wy-ug", _ZNK7WebCore12RenderInline16linesBoundingBoxEv) +STUB("TKAug7ne4Fg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEE7get_refEv) +STUB( + "TKD5e66jkBk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("TKEVthp9TPs", mono_aot_System_Runtime_Serializationplt) +STUB( + "TKIy5sWhKHQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEE5resetEPS9_) +STUB( + "TKJtLKKtNfs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB("TKLkmhUa4iQ", ucnv_toUChars_67) +STUB("TKMUic9rap4", uchar_addPropertyStarts_67) +STUB( + "TKPOlr6ECNg", + _ZN3sce2Np9CppWebApi7Matches2V124ResponseMatchTeamFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_17ResponseMatchTeamEEE) +STUB( + "TKSZiwV-U3U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE5clearEv) +STUB("TKU973CSMWc", _ZN3JSC2VM24apiValueWrapperSpaceSlowEv) +STUB("TKVlOCelO64", mono_aot_I18N_CJKunwind_info) +STUB("TKW+Hu5wGkA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEED1Ev) +STUB("TKYXtGzdYLw", _ZNK7WebCore9FrameTree20traverseNextRenderedEPKNS_5FrameE) +STUB("TKYsv0jdvRw", _ZNSt3pmr20set_default_resourceEPNS_15memory_resourceE) +STUB( + "TKanS4YSTRA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEppEi) STUB("TKiWvcaXe-g", sceOpusCeltEncInitialize) +STUB("TKibH4lSX8s", _ZN7WebCore16BlobRegistryImpl17unregisterBlobURLERKNS_3URLE) +STUB("TKlRU+iE1Ic", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V15GroupEEmmEv) +STUB("TKpESwz2ZAc", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_33ActivityFeedSharedScreenshotStoryEEC1ERKS4_) +STUB( + "TKsaqbkb7FM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEEC2ERKSA_) STUB("TL-B6uOba1A", sceFsISSchedUnmapStat) +STUB("TL1XjYe1xLo", _ZN7WebCore24notifyHistoryItemChangedE) +STUB("TL4WvNLVUW4", _ZN3WTF28setMainThreadCallbacksPausedEb) STUB("TL86glUrmUw", sceSslSetAlpn) +STUB("TLBRRuix8Mc", ucnv_setFallback_59) +STUB("TLIFhMZosmw", CRYPTO_malloc) +STUB("TLJjJYmivbA", _ZN7WebCore18PrewarmInformationdlEPv) +STUB("TLK1GcvZ8Bk", _ZN7WebCore11DisplayList5ScaleC2ERKNS_9FloatSizeE) +STUB("TLV1JoLPNd8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEEppEv) STUB("TLV4mswiZ4A", sceGnmDriverCaptureInProgress) +STUB( + "TLV53uwTPco", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEEC1ERKSA_) +STUB("TLWK+2sKnf8", WKBundlePageSetEditorClient) +STUB("TLWo+mfROq0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEaSERKS7_) +STUB("TLXASbZ8f9I", WKErrorGetSslVerificationResult) STUB("TLar1HULv1Q", sceZlibInflate) +STUB("TLb+BQycN58", udatpg_getPatternForSkeleton_67) +STUB("TLbAlNRDi0k", _ZN3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap13setIsRecycledERKb) +STUB( + "TLgfUbY0sn8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("TLmzpgpiC5U", WKPreferencesGetJavaScriptCanAccessClipboard) STUB("TLrDgrPYTDo", sceUserServiceIsUserStorageAccountBound) +STUB( + "TLtcnoX0u5E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("TLtpfRPpdi0", _Clearlocks) +STUB("TLvAYmLtdVw", _FRint) +STUB("TLx0qRyPmU8", _ZN7WebCore8SVGNames9circleTagE) +STUB("TLyH8l10x3Y", Java_java_util_zip_Inflater_setDictionary) +STUB("TM0Sj+Ebins", _ZN3sce4Json6Object4PairD2Ev) +STUB("TM0fFahw4Ls", uprv_decContextSetStatusFromString_67) +STUB( + "TM4SJG9CR1Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEEC2ERKSA_) +STUB("TM6aDNP6DoI", Java_java_io_UnixFileSystem_getLastModifiedTime) +STUB("TMD7qWwlvVU", Java_java_awt_GnmRobotHelper_doKeyActionNative) STUB("TMEevWRaXyw", sceClPthreadJoin) +STUB("TMJMa-7HiyE", il2cpp_gc_enable) +STUB("TMK1MOeUsO0", _ZN3sce2Np9CppWebApi7Matches2V117LeaveMatchRequestD1Ev) +STUB( + "TMSHnf7QfvI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEEC2ERKSA_) +STUB("TMTliCpeSVI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEEmmEi) STUB("TMXA-Mek+oc", sceDebugGetWaitingListOfUltCondvar) +STUB("TMhLRjcQMw8", _PathLocale) +STUB( + "TMjUF5vs1eY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "TMk08DeHjZA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE8copyFromERKS9_) +STUB("TMkXGsxzbNY", uhash_removei) +STUB( + "TMmNK3mjdF8", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEEiRNS2_10LibContextEPT_m) +STUB( + "TMoyEMoPfdk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEC1EPNS2_10LibContextE) +STUB("TMplM5ji62w", udat_toPatternRelativeTime_67) +STUB("TMrt-i4Gomg", _ZN7WebCore16CSSParserContextC2ERNS_8DocumentERKNS_3URLERKN3WTF6StringE) +STUB("TMssJ2CYX6o", mono_class_get_parent) STUB("TMtqoFQjjbA", sceFontSetEffectSlant) +STUB("TMwYGNk+z3w", WKPreferencesGetAcceleratedCompositingEnabled) +STUB("TN2s4sryg+Q", Java_java_awt_GnmGraphics_nativeDrawArc) +STUB( + "TN5Z3GKsVJ8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE21intrusive_ptr_sub_refEPS9_) +STUB("TNBAZhJ1yKc", GCC_except_table52) +STUB( + "TNFvCbFICBM", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody18comparedValueIsSetEv) +STUB( + "TNGuKdtlrNg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("TNIVUy2LiBo", _ZNK3sce2Np9CppWebApi7Matches2V116JoinMatchRequest17getNpServiceLabelEv) +STUB("TNSE0nmNAYw", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEEdeEv) +STUB("TNSVDoXI0AM", mono_aot_mscorlibmethod_addresses) +STUB("TNZrG2iXikw", u_strCompareIter) +STUB("TNbQMd1lZxU", WKBundlePageCopyRenderTreeExternalRepresentation) +STUB("TNee-Ts08Ck", _ZN3JSC7Symbols18promisePrivateNameE) +STUB("TNexGlwiVEQ", _ZNKSt7codecvtIcc9_MbstatetE2inERS0_PKcS4_RS4_PcS6_RS6_) +STUB("TNo4xzYkEW0", _ZN7WebCore11DisplayList8RecorderD0Ev) +STUB("TNpVhxCBHCA", _ZN7WebCore13MIMETypeCache21supportsContainerTypeERKN3WTF6StringE) +STUB( + "TNtABxYBSaw", + _ZN9Inspector27DOMStorageBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("TNtArf4E2JA", mono_aot_Sce_Vsh_Np_Udsunwind_info) +STUB( + "TNv6Zn-BGqg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "TO0M-DADl-M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEE3getEv) +STUB("TO6C8Mw-kjo", _ZNK3JSC18PropertyDescriptor16isDataDescriptorEv) +STUB("TO8m+qmr3KM", _ZN3sce2Np9CppWebApi7Matches2V114ResponseMemberC1EPNS1_6Common10LibContextE) +STUB( + "TOKPx8XJuLo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEE11release_refEv) +STUB( + "TOQYTjCx2sA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("TOR8qssJ0Bw", monoeg_g_array_insert_vals) +STUB("TOSs7RMM3ls", mono_metadata_load_generic_params) +STUB("TOXlvmHeQO4", __remquol) +STUB("TOYFo8wa2h8", _ZN7WebCore13getBackingMapERN3JSC14JSGlobalObjectERNS0_8JSObjectE) +STUB("TObeC0zFAd0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth7IdTokenEE3setEv) STUB("TOhg7P6kTH4", sceUsbdInit) +STUB("TOq04zeT-40", umsg_toPattern_67) +STUB( + "TOr6QUB6g6s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEED2Ev) +STUB( + "TOxm2dj0cww", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEplEm) +STUB("TOy1EeQB544", JVM_RegisterUnsafeMethods) +STUB( + "TOyWijguPVA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE10setContextEPNS2_10LibContextE) +STUB( + "TOz8+i2GAG8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEED2Ev) +STUB("TP3h6oFdmQ8", _ZN3sce7Toolkit2NP2V26Friend12BlockedUsersaSERKS4_) +STUB( + "TP4ZnVj9KsU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB( + "TP6ELN6H2Qc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEEC2Ev) +STUB("TP6INgQ6N4o", __swbuf) +STUB( + "TP6Nvf9+aWU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEC1Ev) +STUB( + "TP7n-FKBUwY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("TPGcdyuNVJM", _ZN7WebCore9HTMLNames10posterAttrE) STUB("TPKIWtZkFU0", sceHttpCacheRetrieveWithMemoryPool) +STUB("TPKhRt1QIeE", FT_Stroker_ConicTo) STUB("TPMbgIxvog0", sceNpGetAccountLanguageA) +STUB("TPSSbm1lXrU", + _ZN7WebCore15DeferredPromise6rejectENS_13ExceptionCodeERKN3WTF6StringENS_15RejectAsHandledE) STUB("TPVebHEFB2s", sceMusicCoreServerSetTrackList) +STUB("TPYlzWierqc", _ZN3JSC18PropertyDescriptor11setWritableEb) +STUB("TPZwl6AOixY", mono_aot_Sce_Vsh_Np_RifManagerjit_code_start) +STUB( + "TPba+xuUogA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("TPg4nvciRvo", + _ZN3sce2Np9CppWebApi11Matchmaking2V127ListUserTicketsResponseBody8fromJsonERKNS_4Json5ValueE) +STUB("TPldTG849XM", _ZN7WebCore12WebAnimation9instancesEv) +STUB("TPmLbbXsRfs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEC1ERS7_) +STUB( + "TPnJ9WtiXrg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("TPplvBxaj8w", jpeg_calc_output_dimensions) +STUB("TPq0HfoACeI", _ZNKSt8messagesIwE4openERKSsRKSt6locale) +STUB( + "TQ+Oydd4w4A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("TQ-chrI6zwk", _ZN3sce7Toolkit2NP2V28Matching7Request10CreateRoomD1Ev) +STUB("TQ0twAGFKlQ", GCC_except_table446) +STUB( + "TQ12UwL0USE", + _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody19setTicketAttributesERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_9AttributeEEEEE) +STUB( + "TQ2rhs6m01g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEC2Ev) +STUB( + "TQ506qHhB94", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeaders15getCacheControlEv) +STUB("TQ6TGeYEz+g", p05) +STUB("TQAPGJNeD6E", mono_aot_Sce_Vsh_SyscallWrapperjit_got) +STUB("TQAgyCMIdV0", _ZN3JSC7Symbols34getPromiseInternalFieldPrivateNameE) STUB("TQBi7LVgAgM", _sceNpHeapFreeImpl) +STUB("TQCA0u-vO2U", SwCtrlSinkStreamInitialize) +STUB("TQMEOWUAgsY", X509_STORE_up_ref) +STUB("TQMy+M3j0Fs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEED1Ev) +STUB( + "TQO7Teo2oxg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEEC2ERKSA_) +STUB("TQPr-IeNIS0", _Quad) +STUB( + "TQQ+Ue4CmPc", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEEiRNS2_10LibContextEPT_m) +STUB( + "TQYSkcc1skw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEEC1ERKSA_) STUB("TQaogSaqkEk", sceImeSetCandidateIndex) +STUB("TQlnNfMQVQY", zrule_getDSTSavings_67) +STUB("TQqkCrMahCk", mono_aot_ReactNative_Modules_Vsh_Gct_Telemetryunbox_trampoline_addresses) +STUB("TQref3Gi6qM", + _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBodyC2EPNS1_6Common10LibContextE) +STUB( + "TQsroCMX8W4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE6resizeEj) STUB("TQxbrxPdIxU", sceKernelGetResourceOne) +STUB("TQzUIRBLPqc", _ZN3sce7Toolkit2NP2V28Commerce10ContainersC1Ev) +STUB("TR5RhPFlDf0", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11UserProfile10NpProfilesEE12deepCopyFromERS7_) +STUB( + "TRAR41aQAcg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "TRDJgltsilA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEEC1ERSA_) +STUB( + "TRGMPa7M0nM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE5beginEv) +STUB("TRGSS0M-C5U", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V19Bandwidth9getGlobalEv) +STUB( + "TRGjNX5BJAU", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "TRIkTplzrsM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEC2EPS6_PNS2_10LibContextE) +STUB("TRKKq-jyzsg", _ZN3sce7Toolkit2NP2V212ActivityFeed7StoryIdD2Ev) +STUB( + "TRLQ5tq8+qk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEEC2ERSA_) STUB("TRO721eVt4g", sceAgcDcbResetQueue) +STUB( + "TRWsS5bPI04", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) STUB("TRbUbU6biKg", sceAudioOutExGetLastOutputTime) +STUB( + "TRd7S9n3juU", + _ZN7WebCore8JSDOMURLC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_6DOMURLENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "TRdj37hYB5U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEC1EPKS8_) +STUB("TRgFHuli5Ns", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEED2Ev) +STUB( + "TRgLZjJpZw0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("TRiJ8YQTrwQ", JVM_DefineClassWithSourceCond) +STUB("TRjT6D-Pt2o", _ZN7WebCore17HTMLCanvasElement25setUsesDisplayListDrawingEb) +STUB("TRn3cMU4mjY", _ZNSt10moneypunctIcLb1EEC1ERKSt8_Locinfomb) +STUB( + "TRnNxoUlj70", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE8pushBackERKS8_) +STUB("TRzy0ckrqIg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEE5resetEPS6_) +STUB( + "TS3lzRCIUR8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEC2EPS8_) +STUB("TSBXwo1yQ1M", _ZN7WebCore12WorkerThread5startEON3WTF8FunctionIFvRKNS1_6StringEEEE) +STUB( + "TSFAMo9De0o", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEneERKS9_) +STUB("TSHraww6xQs", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE8pushBackERKS6_) +STUB( + "TSIzuYWxIDA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSC_) +STUB( + "TSJuFjH4H9g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE7reserveEi) STUB("TSKvgSz5ChU", sceSystemGestureGetTouchEventByIndex) +STUB("TSL6wfivFms", _ZN3sce2Np9CppWebApi14SessionManager2V127ResponsePlayerSessionPlayerD2Ev) STUB("TSM6whtekok", sceNetShutdown) +STUB("TSMc8vgtvHI", _ZTSPDi) +STUB("TSNILC5+3rE", mono_metadata_parse_array) +STUB( + "TSVDXTCydc8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "TSVRAZnl6To", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEC2EPS8_) +STUB( + "TSVnkXvlU3Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEE7add_refEv) +STUB( + "TSXoIqBlB-s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEC1EPS6_PNS2_10LibContextE) STUB("TSZzWjvbJGE", sceSdecGetVersionSw) +STUB( + "TSiiysUwGac", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEE5resetEPS9_) +STUB( + "TSoQhYKyq5g", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE4sizeEv) +STUB("TSrREisrFnA", + _ZN3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayer14setCustomData1EPKvm) +STUB("TSsaPZ85eJo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEaSERS7_) +STUB( + "TSsbWhHsFTc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEdeEv) +STUB( + "TSwdnSfYyS4", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEEiRNS2_10LibContextEPT_m) +STUB( + "TSyjOdwWyxY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEEcvbEv) +STUB("TSzt0VlBA7o", _ZThn8_N3sce2np13JsonDocParser11onEndObjectEjj) +STUB("TT-E3Wna3O4", utext_isLengthExpensive) +STUB( + "TT0pJ7KN2qM", + _ZN3sce2Np9CppWebApi12Leaderboards2V129RecordScoreRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_22RecordScoreRequestBodyEEE) +STUB("TT4K6hxGZSY", _ZN7WebCore16CSSParserContextC1ERKNS_8DocumentERKN3WTF3URLERKNS4_6StringE) +STUB( + "TTBmKTpmWJY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEC1Ev) +STUB("TTG+LBz6KHk", _ZTVN4IPMI4impl11SessionImplE) +STUB( + "TTGRO2Ny0uc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("TTHhexfjJ1E", WKRenderLayerIsClipping) +STUB( + "TTKBdxWB-7E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEE11get_deleterEv) +STUB( + "TTKIeCaahYU", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer13isInitializedEv) STUB("TTMT4FFg3zI", sceUpsrvUpdateDoUpdateWithHandler) +STUB( + "TTQ01dKglBo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEC1EPS8_) +STUB("TTUMmINnVCg", _Z22scePlayGoDevInitializeP21ScePlayGoDevInitParam) +STUB("TTVT7IBxsrM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody8setLimitERKi) +STUB( + "TTVisLtBunE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEeqERKS9_) STUB("TTi1wXli58Q", sceEsvmEngineMediaKeySessionGenerateRequest) +STUB( + "TTiqvlKaNbM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "TTjkYSxhlyM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEplEm) +STUB( + "TTk6Lit3MgU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE10setContextEPNS2_10LibContextE) +STUB("TTlQMk6YTRM", _ZNK3WTF6String29charactersWithNullTerminationEv) +STUB( + "TTpw9I0Ab4I", + _ZN3sce2Np9CppWebApi14SessionManager2V136GetFriendsPlayerSessionsResponseBody8fromJsonERKNS_4Json5ValueE) +STUB( + "TTvCsxt9+54", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEptEv) +STUB( + "TTvl1L4YcS4", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot8hasgroupEv) +STUB("TTxUpyc0DI8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEE5resetEPS6_) +STUB( + "TTxjToMrxVg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEmmEi) +STUB( + "TU+xXRFMM2g", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB( + "TU-1V5ipEBo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("TU-d9PfIHPM", socket) +STUB( + "TU0eCP6FcB0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEplEm) +STUB("TU1vyo33xrs", ucnv_enableCleanup) +STUB("TU3Di8EftsU", mono_get_exception_thread_abort) +STUB( + "TU3y7ZaOK+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEE5resetEPS6_) +STUB("TU6Yl8+mT3c", u_setMemoryFunctions) +STUB("TU8QndXbCBg", _ZN7WebCore21UserContentURLPattern5parseERKN3WTF6StringE) +STUB("TUC9xC1YQjs", setpriority) +STUB( + "TUMsOIa3Ce0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("TUOY67as3-Y", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEEC1Ev) +STUB( + "TUPWiv-gZXM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE17getResponseHeaderERSB_) +STUB( + "TUUx66QRLO0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEC1EPS8_) +STUB( + "TUWEINiz31Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEixEm) +STUB("TUYoEUSlXss", SSL_get_certificate) +STUB("TUas95IjiX8", _ZN9Inspector22InspectorDebuggerAgent28clearDebuggerBreakpointStateEv) +STUB( + "TUbg5w1QQUk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEdeEv) +STUB("TUeiEyT6u9Y", mono_aot_Sce_Vsh_EventServiceWrapperunbox_trampolines_end) +STUB("TUf9SbYk2cs", _ZN9Inspector28DOMStorageFrontendDispatcherC1ERNS_14FrontendRouterE) +STUB( + "TUhLsIrDSiM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEC1EPS8_) +STUB( + "TUiY9iBaxXI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEneERKS9_) +STUB( + "TUkf77KWiEo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEE5resetEPS9_) STUB("TUmlsjCjEQA", sceUpsrvUpdateCheckDoCheckSystemBeta) +STUB("TUnAHZhIAO4", _ZN7WebCore17JSDOMRectReadOnly15subspaceForImplERN3JSC2VME) +STUB( + "TUnX49erAaA", + _ZN7WebCore25validatePreflightResponseERKNS_15ResourceRequestERKNS_16ResourceResponseENS_23StoredCredentialsPolicyERKNS_14SecurityOriginEPKNS_37CrossOriginAccessControlCheckDisablerE) STUB("TUpiRsYKtCo", sceFsDevpfsCreateForVSH) STUB("TUuFEPFuHzk", sceMbusDebugEncodeApplicationStartupInfo) +STUB( + "TUucAlMhark", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE3endEv) +STUB("TUuiYS2kE8s", shutdown) +STUB( + "TUvss8-cofA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEE11get_deleterEv) +STUB("TV0vBdSa6OU", _ZN7WebCore8Document27createProcessingInstructionERKN3WTF6StringES4_) STUB("TV3KKXZLUj4", sceNpIdMapperAccountIdToOnlineId) +STUB( + "TV6gD+CeBHE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEED2Ev) +STUB("TVCrpn1qdxM", _ZNK3sce2Np9CppWebApi13InGameCatalog2V517ContentDescriptor8urlIsSetEv) +STUB( + "TVIsUr5UFxc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEE5resetEPS8_) STUB("TVM-aYIsG9k", sceAppContentAddcontEnqueueDownloadSp) +STUB( + "TVQ6UhW83ps", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("TVVlqC4KOco", _ZNK7WebCore19HTMLTextAreaElement12defaultValueEv) +STUB( + "TVWiuT874aw", + _ZN3sce2Np9CppWebApi14SessionManager2V137RequestPlayerSessionInvitationFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_30RequestPlayerSessionInvitationEEE) +STUB("TVYZIv-b2rc", _ZN3WTF28numberToFixedPrecisionStringEdjPcb) +STUB("TVZVCsGNj84", _ZN7WebCore8SVGNames4gTagE) +STUB("TVapRR2giTo", cff_cmap_encoding_class_rec) +STUB("TVd1j9BUoBs", _ZN4Manx8X509cinfC1EPKS0_) STUB("TVe6T-UKcoc", sceMusicPlayerServiceGetPlayStatusExtension) STUB("TVegDMLaBB8", sceVrTrackerGpuSubmit) +STUB("TVfbf1sXt0A", _ZSt4cerr) +STUB( + "TVfeSMIkEqc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEEdeEv) +STUB("TVfmD9Abq-w", __sce_debug_fingerprint_start) +STUB( + "TVgX6ZH+Ruc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEC1Ev) STUB("TViD1EZXkNI", sceAudioOut2Set3DLatency) +STUB("TVn6aXbaNZE", _ZN7WebCore9HTMLNames5hrTagE) +STUB("TVpB5j70A6E", _ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody12commentIsSetEv) +STUB( + "TVqXHk2yDJM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEE5resetEPS6_) +STUB( + "TVrJGc5HGw8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEE11release_refEv) +STUB("TVz54sxiDF8", _Z32sceRazorGpuThreadTracePushMarkerPN3sce3Gnm17DrawCommandBufferEPKcj) +STUB( + "TW1pi3vYCmY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "TW2v7C2AWTc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE8pushBackERKS8_) +STUB("TW5cClea8P8", JVM_GetClassDeclaredFields) +STUB("TWBpd2oJ5Po", _ZN23sceMetadataReaderWriter13writeMetadataERKSsRKNS_8MetadataEjPS2_) +STUB("TWEfZQh62V8", _ZN7WebCore11DisplayList8ClipPathC2ERKNS_4PathENS_8WindRuleE) +STUB( + "TWK37p54V+g", + _ZN9Inspector21PageBackendDispatcher16searchInResourceElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("TWMdmWZVXVo", _ZN7WebCore18PrewarmInformationC1ERKS0_) +STUB("TWPUIv6uW-g", _ZNK7WebCore18TextureMapperLayer25isAncestorFixedToViewportEv) STUB("TWPY1x1Atys", sceNpIntToHex) +STUB( + "TWPu9IvUGjw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "TWR+F00992s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEE3getEv) +STUB( + "TWS2G8F9zIA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB("TWUXKVxmn2E", _ZN7WebCore16HTMLInputElement21setShowAutoFillButtonENS_18AutoFillButtonTypeE) +STUB( + "TWWZGZravx0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("TWXUBxNYVN8", mini_get_debug_options) +STUB( + "TWYxUQkCCn0", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessions13isInitializedEv) +STUB( + "TWbJaV00hsI", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEiRNS2_10LibContextEPT_m) +STUB("TWe9e+Jmwz4", _ZNK7WebCore16HTMLMediaElement12playbackRateEv) STUB("TWi-wZVp5Pc", sceGameCustomDataDialogGetResultA) +STUB("TWkaN5bipEA", _ZNK3JSC6JSCell9getStringEPNS_9ExecStateERN3WTF6StringE) +STUB("TWnxOQaUhBI", _ZNK3JSC4Yarr17RegularExpression13matchedLengthEv) STUB("TWstzqFWGyo", sceCesUtf32beToSbc) +STUB("TWsueeM6bWo", _ZNK7WebCore8Document16styleRecalcCountEv) +STUB("TWtGBP-grBM", cairo_get_miter_limit) +STUB("TWvK7KRSnxw", mono_thread_cleanup) STUB("TWvPsc6MkmA", sceDebugGetJobManagerInfo) +STUB("TWzf5iykiGw", ft_mem_strcpyn) +STUB( + "TX194V5gmu8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEEptEv) +STUB( + "TX2G2hAoWBw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEmmEv) +STUB("TXA24cfaqVQ", uregex_appendReplacementUText_67) STUB("TXABsmiiqto", sceFiosOverlayAdd) +STUB("TXB+6dO21HM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ChildActivityAvailabilityEEC2EPS6_) +STUB("TXBMplXYS-8", mono_loader_unlock) +STUB("TXEHKpCJ-aE", u_getCombiningClass) +STUB("TXFFFiNldU8", getpeername) +STUB("TXJnPiKuTf8", _ZN3sce2np18MemoryStreamWriterD0Ev) +STUB("TXKpuJNdojc", + _ZN3sce2Np9CppWebApi14SessionManager2V124GameSessionMemberForRead15unsetSpectatorsEv) +STUB("TXL878caq4c", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_21AbortGameDataResponseEEC1Ev) +STUB("TXLb1h6iUz4", + _ZNK3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBody6toJsonERNS_4Json5ValueEb) +STUB("TXSNtR-LjE4", _ZN7WebCore18JSHTMLMediaElementC1ERKS0_) +STUB( + "TXVjLNUr7eI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB("TXVqxrKxbjw", _ZN3sce2np10JsonParser5ParseEPNS0_6HandleEPNS0_12StreamReaderE) STUB("TXYHFRuL8UY", sceImeSetTextGeometry) +STUB("TXaOMYg-7Zg", _ZN3JSC7Symbols19includesPrivateNameE) +STUB( + "TXgm1sV2SkA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEmmEi) +STUB("TXhrTaaJM1Y", _ZN7WebCorelsERN3WTF10TextStreamENS_10ColorSpaceE) +STUB("TXiSnhNv9ng", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainerC2Ev) +STUB( + "TXlScxVUrSs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEEC1ERKSA_) +STUB("TXmUfk23SAk", _ZN7WebCore20ResourceLoadObserver9setSharedERS0_) +STUB( + "TXnfrn0t+vQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEEdeEv) +STUB("TXxiiiJLw6o", mono_aot_System_Corejit_code_end) +STUB("TXz-VD-fk2Y", _ZN7WebCore8SVGNames6rxAttrE) STUB("TXzpCgPmXEQ", sceNpManagerIntGetClientCredentialAccessToken) +STUB( + "TY4I5LMyTZo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEC2EPKS8_) +STUB("TY5vzD-y6EA", _ZNK4IPMI4impl11SessionImpl16isPeerPrivilegedEv) +STUB( + "TY757QX+es4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE6resizeEj) +STUB("TY8-YB6+N2U", _ZN3JSC7Symbols17reducePrivateNameE) +STUB("TY9dzLeTPYU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEE11get_deleterEv) +STUB("TYAZ2ei0J18", _ZSt9use_facetISt7codecvtIDsc9_MbstatetEERKT_RKSt6locale) +STUB("TYE4irxSmko", toupper) +STUB("TYEr3zjqOxo", + _ZN7WebCore21JSTextTrackCueGeneric15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("TYMPK-S1pDk", mono_image_loaded) +STUB("TYN4NyoBiEs", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEEC2Ev) +STUB("TYP+vYIYVpg", _ZN7WebCore24DeprecatedGlobalSettings25setUsesMockScrollAnimatorEb) +STUB("TYVKHQWMtS4", _ZNK7WebCore11MediaPlayer4sizeEv) +STUB("TYWcrOKVg8E", _ZN3sce7Toolkit2NP2V27Session7Request32DisplayReceivedInvitationsDialogC2Ev) +STUB( + "TYXxQdZurSw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEC1EPS6_PNS2_10LibContextE) +STUB("TYefQL0fJXQ", rgctx_fetch_trampoline_mrgctx_95) +STUB("TYekc+AjR60", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEE5resetEPS6_) +STUB( + "TYj+odohMFg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEE3getEv) +STUB("TYlQxeGWIk4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEEC1EPS5_PNS2_10LibContextE) +STUB( + "TYo3VYhvktI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEEC1ERKSA_) +STUB( + "TZ+zJZaSA-o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("TZ59EniJlz0", + _ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest18getMatchStatisticsEv) +STUB( + "TZ59qzZYXtY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("TZ5K24vde6w", _ZN7WebCore9DOMWindow16registerObserverERNS0_8ObserverE) +STUB("TZBK+iB67G0", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfilesD2Ev) +STUB( + "TZOB8v0UTbk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE6isBusyEv) +STUB("TZORpCIbSpA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEE3getEv) +STUB("TZQbvfBrVgQ", _ZN12video_parser13cVideoPathMgv20GetMaclistEKBVersionEv) STUB("TZSep4xB4EY", sceNpWebApiIntCreateServicePushEventFilter) +STUB( + "TZW6U9K8cYc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEED2Ev) STUB("TZWR3p6XxXk", sceCamera2Stop) +STUB("TZYDxIdgRtg", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V324ValidationConstraintInfo6getKeyEv) +STUB("TZjF5DsZmAM", _ZN3sce7Toolkit2NP2V212NetworkUtils12Notification14NetStateChangeC1Ev) STUB("TZnDVkP91Rg", sceWebBrowserDialogSetCookie) +STUB( + "TZo5s01wetw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEmmEi) STUB("TZqb8E-j3dY", sceNgs2RackQueryInfo) +STUB("TZyuFeGuw9Y", _ZN3sce4Json5ValueC2ERKS1_) +STUB("Ta+JC0maV8o", WTFReportArgumentAssertionFailure) +STUB("Ta2tL2y1+u4", _ZN7WebCore28InspectorFrontendClientLocal21isProfilingJavaScriptEv) +STUB("Ta4QqYGkXZg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE7popBackEv) STUB("Ta52bXx5Tek", sceUserServiceGetKeyboardType) +STUB("Ta8UauHm2Xo", _ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession13getSearchableEv) +STUB("Ta8V+gmIGrU", _ZNK3sce7Toolkit2NP9Utilities6FutureI24SceNpBandwidthTestResultE3getEv) +STUB("TaAWi4hX79Y", _ZN7WebCore9HTMLNames11checkedAttrE) +STUB("TaBfmPSAaTE", _ZN7WebCore14JSVoidCallback12callbackDataEv) +STUB("TaCxSAxB9U8", _ZN7WebCore20PasteboardCustomData5EntryC2EOS1_) +STUB("TaDmxqsJSnU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEEcvbEv) +STUB("TaFoNNX1N2k", _ZTVN7WebCore11DisplayList11SetLineJoinE) +STUB("TaGaLJiNIWI", utrans_getSourceSet_67) +STUB( + "TaJe0-tU4sU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEE11release_refEv) +STUB("TaLjWC7VaF8", _ZN4Manx8X509nameC2EPKS0_) +STUB( + "TaMLd-p1mnk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE5emptyEv) STUB("TaNw7W25QJw", sceNpPartyGetMembersA) +STUB("TaQ5c-vBzNs", mono_aot_Sce_Vsh_SessionInvitationunbox_trampolines) +STUB( + "TaR534D7g6M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEEC2EPS9_PNS2_10LibContextE) STUB("TaXlTcqvxNI", sceHeadTrackerStop) +STUB( + "TaeE9kq1MPY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "TafssQgncMs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEEaSERS8_) +STUB("Taj2Bejna6U", fuse_fs_fsyncdir) +STUB( + "TajC46MS6+0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEEC2Ev) STUB("TaoNtmMKkXQ", sceNgs2ModuleEnumConfigs) +STUB("TasWJCEWUlI", _ZNK7WebCore17ResourceErrorBase8lazyInitEv) +STUB("TaswYPAvtOQ", WKPreferencesGetAccessibilityObjectModelEnabled) +STUB("Tb-2eo3kue0", _ZN3sce7Toolkit2NP2V211SocialMedia7Request12ActionLinkFb11MAX_URL_LENE) STUB("Tb-iOd+G2Zs", sceFaceTrackerStopTracking) +STUB("Tb2NxhCO51o", _ZN3JSC12isFromJSCodeEPv) +STUB("Tb8EQj-Yhq8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEE3getEv) +STUB( + "TbASWdIKZEo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEaSERKS7_) +STUB( + "TbAruCjHKhI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEneERKS9_) +STUB("TbBRZ2J+pxw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEC2Ev) +STUB( + "TbCRaUdbgDM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE5beginEv) +STUB( + "TbEm6j-m4Aw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEEC1Ev) +STUB("TbO9XCCGKCI", ucnv_flushCache) +STUB( + "TbOubgmlNf8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "TbVBnrz6Q+A", + _ZN3sce2Np9CppWebApi14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyC1EPNS1_6Common10LibContextE) +STUB("TbY1oq4RTOs", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS3_18CustomResponseDataEE19setCustomReturnCodeEi) +STUB( + "TbZhQodHqx4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE3endEv) +STUB("TbiFApiUGOE", rgctx_fetch_trampoline_mrgctx_82) +STUB( + "TbjGZNdD-A4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("TblUC9Y7yP0", _ZNSt12system_errorC1ERKS_) +STUB( + "TbmB9kr8uCo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEC1EPS8_) +STUB("TboE83AF4GM", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEEdeEv) +STUB("TbtJAJGjSyc", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsD1Ev) +STUB( + "Tbtt60lEMAc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEEC2Ev) +STUB("TbuLWpWuJmc", _Atomic_exchange_2) STUB("Tc-hAYDKtQc", sceHttpSetResolveTimeOut) +STUB( + "TcFvS5cS5a0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEEC1Ev) +STUB( + "TcFyuZOe7DM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEC1EPS8_) +STUB( + "TcHdV+XPkTQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE3endEv) +STUB( + "TcMiFjRilZk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEE5resetEPS9_) +STUB( + "TcTmGoWQfbU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE5clearEv) +STUB( + "TcU8jBsD4GY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE5beginEv) +STUB( + "TcXPbsRsn1g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE8pushBackERKS9_) STUB("TcXVGc-LPbQ", sceUsbdTryLockEvents) +STUB("TcazRMchOFs", _ZNK3JSC8JSObject11hasPropertyEPNS_14JSGlobalObjectENS_12PropertyNameE) +STUB( + "TcbSCinKOZo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE7popBackEv) +STUB("TcdJEJdDwpQ", + _ZN12video_parser17cVideoProfilerMp420_createSubtitleCodecEjPNS_13VpMediaInfo_tE) +STUB( + "TcfUXi6KpZs", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10getString4Ev) +STUB("TcpQ1Vf3-+M", _ZN3sce7Toolkit2NP2V23TUS7Request7GetDataD2Ev) +STUB("Tcrb96Nl0jc", ucsdet_getConfidence_67) STUB("TcwEFnakiSc", sceNpCmpNpIdInOrder) +STUB( + "TcyMEZsEKGA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEmmEi) +STUB("Td-PJUT3DYQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEEeqERKS7_) +STUB( + "Td5qC5ZyMIs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEEC1ERSA_) +STUB( + "Td7IovZnmh8", + _ZN3sce2Np9CppWebApi14IdentityMapper2V311PsnWebError8setErrorERKNS1_6Common12IntrusivePtrINS3_17PsnWebError_errorEEE) +STUB("Td8wQ0FqTqg", _ZN7WebCore11MediaPlayer23beginSimulatedHDCPErrorEv) +STUB( + "Td9n7QnEAeU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "TdEXRg6HMhQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "TdFiy39uryU", + _ZN3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsTouchResponseBody8fromJsonERKNS_4Json5ValueE) +STUB("TdL8quj5nBc", mono_btls_x509_get_not_before) +STUB( + "TdLJN9I9Tyc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEEC2ERSA_) +STUB("TdLam7xSzmY", curl_multi_wakeup) +STUB("TdO4ul+fgFI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE3endEv) +STUB( + "TdRn-s0SaO4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE21intrusive_ptr_sub_refEPS9_) +STUB("TdTpGqx4cXY", WKDictionaryGetItemForKey) +STUB("TdYHiOLzctI", jpeg_idct_8x16) +STUB( + "Tdeqyz8zWnw", + _ZNK3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform21usePlayerSessionIsSetEv) +STUB("Tdg135n6cNQ", _ZN7WebCore9JSDOMRectD2Ev) +STUB( + "TdjJfEutwUI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEEC1ERKSA_) +STUB( + "TdjUv1NVR2I", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEneERKS9_) +STUB("Tdm0NGzRxxo", YGNodeGetChild) +STUB("TdntSxjU4sk", _ZNK3sce3Xml3Dom8Document10getSiblingENS1_6NodeIdE) +STUB("Tdx7WPaQCVA", _ZN3JSC2VM20uint32ArraySpaceSlowEv) +STUB("Te-IM+0JM9A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEE7add_refEv) +STUB("Te-OfFFSnBQ", _ZN7WebCore13JSDOMRectList9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB( + "Te38qJjmies", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE8capacityEv) +STUB("Te5DnUayCF0", _ZN23sceMetadataReaderWriter23registerParserInterfaceEjRKNS_15ParserInterfaceE) +STUB("Te7DHp8Gy2Y", + _ZN7WebCore16HTMLInputElement8setValueERKN3WTF6StringENS_22TextFieldEventBehaviorE) +STUB("TeE+ktl+Cw8", _ZNK7WebCore16HTMLInputElement11isTextFieldEv) +STUB("TeEgc2M+77E", _ZN3JSC2VM14throwExceptionEPNS_14JSGlobalObjectEPNS_9ExceptionE) +STUB( + "TeKSQ5dbR34", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEE5resetEPS6_) +STUB("TeKuYOUHoKU", _ZNK7WebCore23ScaleTransformOperation19isRepresentableIn2DEv) +STUB( + "TeOShgYK+sg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEE11get_deleterEv) +STUB("TeRbjukFE-c", _ZStL8s_pfacet) +STUB("TeYoK0Kka-M", _ZNK7WebCore18RenderLayerBacking23replayDisplayListAsTextEj) STUB("Ted2YU9lv94", sceNpStrToUInt64) +STUB("TedsxQnLDb0", _ZN3sce7Toolkit2NP2V210Tournament12EventDetails8deepCopyERKS4_) +STUB( + "TegkuKHADqc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEptEv) STUB("TehfTHUiaag", sceGpuTraceParametersSetGroup) +STUB( + "Teoa93VVs8o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEE11get_deleterEv) STUB("TerdSx+FXrc", sceUserServiceSetGlsAnonymousUserId) +STUB( + "TetgGwMhdZw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21receiveResponseHeaderEv) +STUB("Tetq4yJ0ZO0", _ZN10Deprecated18ScriptFunctionCall4callEv) +STUB( + "TewV7EyzSS0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEixEm) STUB("TexwmOHQsDg", sceVoiceSetBitRate) +STUB( + "TezykofhaXA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEC1EPS6_PNS2_10LibContextE) +STUB( + "Tf+ItzEhNdg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEE7add_refEv) STUB("Tf9-yOJwF-A", sceAudioOutSysGetHdmiMonitorInfo) +STUB("TfAJKTnSU9s", fuse_fs_mknod) +STUB("TfB3QTQN-Ek", FT_Matrix_Invert) +STUB( + "TfK6NTSyTO8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEixEm) +STUB("TfKn1baD3IM", _ZNK3sce2Np9CppWebApi15ProfanityFilter2V219WebApiFilterRequest7getTextEv) +STUB( + "TfLDMQS3JKk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE7reserveEi) +STUB("TfOr8achxT4", coil_mspace_realloc) +STUB( + "TfQ+XrqfW6s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEC2ERS7_) +STUB( + "TfUzDZn8AkI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEaSERS7_) STUB("TfVHoRVX2HM", sceShellCoreUtilAcquireRemotePlayCpuBudget) +STUB("TfZKex4laPM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEE11get_deleterEv) +STUB("TfbkNorL4C4", _ZN7WebCore21MediaRecorderProviderdlEPv) +STUB("Tfcc11eFKpQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V123MemberWithMultiPlatform11getPlatformEv) +STUB( + "Tfcgd8S3qRE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEE5resetEPS6_) +STUB( + "TffOsjfNe+U", + _ZN3JSC7JSArray17defineOwnPropertyEPNS_8JSObjectEPNS_14JSGlobalObjectENS_12PropertyNameERKNS_18PropertyDescriptorEb) +STUB( + "TflsWvkp-bo", + _ZN12video_parser13cVideoMetaVWG18_createArtworkInfoENS_9VP_LANG_eENS_15VP_SEARCH_OPT_eEPNS_13cVideoMetaMP418VpThumbnailInfoMP4E) +STUB("Tfn2AeqI08w", + _ZN15AbstractStorage15FacebookContent11SetMetadataEPN23sceMetadataReaderWriter8MetadataE) +STUB( + "Tg0eqcyRKpU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEneERKS7_) +STUB("Tg0xDBpwAJI", _ZN7WebCore18PrewarmInformationC2ERKS0_) +STUB( + "Tg625QrhDiM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEdeEv) STUB("Tg8wM8zlz3I", scePerfPmcSdfStop) +STUB("TgAM--25Rbk", _ZN3sce2np9JsonValue8GetArrayEv) +STUB("TgBSz3-CPGI", _ZN12video_parser13cVideoPathMsv10InitializeEv) +STUB("TgEb5a+nOnk", _ZNSbIwSt11char_traitsIwESaIwEE5eraseEmm) +STUB("TgEm3F784RY", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_18SessionInformationEE3getEv) +STUB( + "TgJZ8SC+DnQ", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_8Timeline9EventTypeEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB( + "TgPD8M90wd4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEC2EPNS2_10LibContextE) +STUB( + "TgS0zMeBGcE", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_4Page12ResourceTypeEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB("TgZAdVnd03U", g_usleep) +STUB("TgalTeRthxU", mono_aot_Sce_PlayStation_Orbisjit_code_start) +STUB( + "TgbAtnPEwK8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE5clearEv) +STUB( + "TgbDcXibu+Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEE11get_deleterEv) +STUB( + "TgbQMi-3WEw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("TgiuZRy76qA", _ZN3sce7Toolkit2NP2V28Matching7Request17KickOutRoomMemberC1Ev) +STUB( + "Tgn-9hZ9QTU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB("TgoJkaoZ0IM", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product14platformsIsSetEv) +STUB("Tgr66MThOxA", _ZN3sce2np20BufferedStreamReaderD1Ev) STUB("Tgs5zOUfQSc", sceShellCoreUtilPfAuthClientConsoleTokenClearCache) +STUB("TgsJjQqp+2k", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEptEv) +STUB("TgsQCnjycFE", _ZN3JSC7Symbols44stringIteratorFieldIteratedStringPrivateNameE) +STUB("TgsW7eXEdpA", glGetBufferParameteriv) +STUB( + "TgtDkGCIr3o", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB( + "Tgu9iZziZFw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB("TgyMj2hXBZ4", _ZN7WebCore18StyleSheetContentsD1Ev) +STUB("Tgzygvwza-4", uregex_pattern_67) +STUB( + "Th3iuNq5gQ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE21intrusive_ptr_sub_refEPS9_) +STUB("Th7C+5G0ycQ", _ZNK3JSC14ProtoCallFrame9thisValueEv) +STUB( + "Th7K+t01FZU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("ThCtZGX1l6c", rgctx_fetch_trampoline_mrgctx_39_p) +STUB("ThEu3ArmCaE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEED2Ev) +STUB("ThNb0pZMjQ8", _ZN7WebCore24RotateTransformOperationD1Ev) +STUB( + "ThPkgyV6NLA", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEiRNS2_10LibContextEPT_m) +STUB( + "ThWdf06C588", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEEptEv) +STUB( + "ThYjLXSEIak", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEmmEv) +STUB( + "ThcvoGmCYkE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEEC2EPSA_PFvSC_EPNS2_10LibContextE) +STUB("ThdmM0eqQn4", uldn_keyDisplayName_67) +STUB("ThedDEOFVNU", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13FriendsOfUserEEC2Ev) +STUB( + "Thhao-ChCdk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("ThiAGsBO+MQ", mono_aot_Sce_Vsh_Sl2_Sl2Commonjit_got) +STUB( + "ThkHU07+iQk", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setInteger8ERKi) +STUB( + "ThkzDejWYNE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEC2ERKS7_) +STUB("ThmeWvQXFUs", _ZN3sce7Toolkit2NP2V28Commerce19ServiceEntitlementsC2ERKS4_) +STUB( + "Thor6dD34rY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEcvbEv) +STUB( + "ThsPyaClskc", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeaderC2ERS5_) +STUB( + "Thynf3vNeCQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEEC1Ev) +STUB( + "ThzIULFaRsk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE3endEv) +STUB( + "Ti-BMFxAOTc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("Ti1E8o9ZswE", _ZN3JSC9Structure24materializePropertyTableERNS_2VMEb) +STUB("Ti1sqV+qCrw", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEEmmEi) +STUB("Ti67furXZ9o", WKContextSetAllowsAnySSLCertificateForServiceWorkerTesting) +STUB("Ti86LmOKvr0", _ZNSbIwSt11char_traitsIwESaIwEE5_CopyEmm) +STUB("TiAPv02ITxs", _ZN7WebCore24CachedResourceHandleBaseD2Ev) +STUB("TiAi8IPuJCE", mono_sha1_init) STUB("TiC81-OKjpg", sceNpAsmClientGetServiceIdInfo) +STUB("TiCtkQ4z0IA", + _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities8Activity6toJsonERNS_4Json5ValueEb) +STUB("TiDaUZArrIc", _ZN15AbstractStorage14TwitterService5StartEv) +STUB( + "TiFVBTWnrSk", + _ZN3sce2Np9CppWebApi14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBody25setJoinableSpecifiedUsersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_12JoinableUserEEEEE) +STUB("TiGQD+9xXq4", _ZN3JSC6JSCell16getConstructDataEPS0_RNS_13ConstructDataE) +STUB( + "TiIPfPPyXQ8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEmmEv) +STUB("TiRnQB6S6dE", _ZN7WebCore6ISOBoxC1Ev) +STUB("TiTaYOe80UY", _ZN7WebCore19MediaResourceLoaderD2Ev) STUB("Tib8zgDd+V0", sceUserServiceSetTopMenuNotificationFlag) +STUB("TihYh6wuMnk", _ZN3sce2Np9CppWebApi6Common8IteratorImEmmEv) +STUB( + "Tiit+5wJQRc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEppEi) +STUB( + "Tika+2u5A8k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE10setContextEPNS2_10LibContextE) +STUB( + "Tio4kwlTyZU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE8copyFromERKS9_) +STUB( + "TioTJl+hUes", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEEC2Ev) +STUB( + "TirjARYZwrw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEmmEv) +STUB("Tiv+2Y-jX1I", mono_aot_Sce_Vsh_Np_Webapiplt) +STUB( + "Tj+6XslnGeA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEptEv) +STUB("Tj09N7FCeV8", _ZNK7WebCore22CSSAnimationController24numberOfActiveAnimationsEPNS_8DocumentE) +STUB("Tj0zckWY-MU", _ZN3sce7Toolkit2NP2V210Tournament6EventsC2ERKS4_) +STUB( + "Tj7XegvwU0c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEED1Ev) +STUB( + "Tj9U3ZBd3LM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEC2EPKS8_) STUB("TjAutbrkr60", sceNpWebApi2SetRequestTimeout) +STUB("TjC2KFGjKrU", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_21NotifyChallengeResultEE3getEv) STUB("TjFMhY-LSnQ", sceNpRemotePlaySessionSignalingLeaveSession) +STUB("TjFa18GZZmE", uspoof_openCheckResult_67) +STUB("TjSJmL+4ZCU", _ZN7WebCore13OverflowEvent17initOverflowEventEtbb) STUB("TjURD46vx-k", sceRegMgrBackupPullDataForPS4) +STUB( + "TjXWnt+JXqE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEaSERKS9_) +STUB("TjbZMMEp7Ws", searchCommInfoListByProtocolNumber) +STUB("Tjizhcx+zp0", + _ZNK3sce2Np9CppWebApi15Personalization2V121GetAccessCodeResponse6toJsonERNS_4Json5ValueEb) +STUB("TjknnMIGmxA", send_descriptor) +STUB("TjlVOBhft0M", _ZNK3sce2Np9CppWebApi7Matches2V111AddedPlayer11getPlayerIdEv) +STUB( + "Tjor0gBfhMI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE8copyFromERKS9_) +STUB( + "TjqtkjaD-j8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("Tjr5ksLUG1o", RemotePlayDisconnect) +STUB( + "TjzMEayKenc", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToSendPlayerSessionMessageD2Ev) +STUB("Tk010QnCaVQ", _ZN3sce3pss4core8graphics15DirectTexture2DC1EiiNS2_11PixelFormatEPv) +STUB("Tk0n2SC1sRs", mono_aot_JSC_Netplt) +STUB("Tk1ECWD4Lso", _ZNK7WebCore11MemoryCache16originsWithCacheEN3PAL9SessionIDE) +STUB( + "Tk3uc0W9nAw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEC2Ev) +STUB("Tk77UvH0Tak", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEEppEi) +STUB("Tk7jcSTwl7E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEEC1ERS9_) STUB("TkASc9I-xX0", _sceUltQueueOptParamInitialize) +STUB( + "TkJLUpl5fSU", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsC1EPNS1_6Common10LibContextE) +STUB("TkMiHCQVW58", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEEC2EPS6_) +STUB( + "TkNcKBe5-Jw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEC2Ev) +STUB("TkP0HBaDqW8", delegate_virtual_invoke_imt_1) +STUB("TkScCUuSRfw", _ZThn64_NK7WebCore9FrameView21maximumScrollPositionEv) +STUB("TkTwUQTXIMA", _ZN7WebCore16MIMETypeRegistry26supportedNonImageMIMETypesEv) +STUB("TkV6Eb8ej6c", WKPreferencesSetMinimumFontSize) +STUB("TkXgKc9TOno", _ZN7WebCore10FileSystem15pathGetFileNameERKN3WTF6StringE) +STUB( + "Tka1-5YGfO0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE6insertENS2_8IteratorIS9_EERKS9_RSC_) +STUB( + "TkbsS3FAIDU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEC1EPS6_PNS2_10LibContextE) STUB("TkcANcGM0s8", sceHmdReprojectionQueryGarlicBuffAlign) +STUB("Tkcw9IDz4EQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116InitialJoinStateEEC2Ev) +STUB("Tkla3v2SbEs", dll_start) +STUB("TkmNJ8Chtow", mono_gc_wbarrier_set_arrayref) +STUB( + "TkohL+r6QEY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE3endEv) +STUB( + "Tks4mL++H5I", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE23clearOnFinishedCallbackEv) +STUB( + "TkwiGfFt39g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEED2Ev) +STUB("Tkycvx6Qgm0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEEC1ERS9_) +STUB( + "Tl0TJyjKANg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEE7add_refEv) +STUB("Tl6JPSIR7WE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEEaSERKS9_) +STUB( + "Tl6wjX6sgUs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEC1EPS8_) +STUB("Tl9boUt5VY8", _ZN3sce3pss4core7imaging4impl5Image6UnloadEv) +STUB("TlFXVNMm+7Y", _ZN6WebKit12ChildProcess20initializeConnectionEPN7CoreIPC10ConnectionE) +STUB( + "TlHydHjsJNg", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE11getResponseERS8_) +STUB( + "TlJy4fPq3nw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEptEv) +STUB("TlQge4CTO5k", Java_java_io_ObjectOutputStream_doublesToBytes) +STUB( + "TlSrnN-pYUY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEneERKS9_) +STUB("TlTgbo1pq8g", _ZN3JSC6RegExp5matchERNS_2VMERKN3WTF6StringEj) +STUB("TlX0LQPNYFs", _ZN7WebCore8Settings23setUsesBackForwardCacheEb) STUB("TlbTYydth54", scePatchCheckerRequestCheckPatch) +STUB( + "TldoClSl8Ek", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE3endEv) +STUB("Tlfgn9TIWkA", _ZNSt14numeric_limitsIwE6digitsE) +STUB("TlnQUAAP9ys", WKDatabaseManagerDeleteAllDatabases) +STUB( + "TlrPjLBySds", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE7reserveEi) +STUB("Tlt9FSK3hfs", mono_aot_Sce_Vsh_FileSelectormethod_addresses) +STUB("TluZ7l2WnEU", mono_dl_fallback_unregister) +STUB( + "TlwvWM3X4tc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("TlyKGeybOro", + _ZNK3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer11getPlatformEv) +STUB( + "Tm67AEJ-Mco", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEmmEi) +STUB( + "Tm7ICrhEacA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEC2Ev) +STUB( + "Tm7nJ-5vX5E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEE11release_refEv) +STUB("Tm7ymvoC580", mono_btls_pkcs12_has_private_key) +STUB( + "Tm8Dm32OeC4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEC2EPS7_PNS2_10LibContextE) +STUB("Tm9bXhmwlMA", JSObjectMakeFunctionWithCallback) +STUB("TmClB7PqlYU", mono_aot_Sce_Vsh_Friendplt_end) +STUB( + "TmEi7VhIrx0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE5clearEv) +STUB("TmJ4gXZtvQ4", u_unescapeAt_67) +STUB( + "TmJpVfEDPo4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEED1Ev) +STUB( + "TmL8e1zj6cI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEEaSERKSB_) +STUB( + "TmO98uqZoE8", + _ZN9Inspector24NetworkBackendDispatcher15getResponseBodyElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("TmP+TElwgJw", _ZN12Mp4Retriever14processUdtaBoxEv) +STUB("TmPBJ3yc31U", _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities8Activity9getHiddenEv) +STUB( + "TmR01dpxjo0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEmmEv) +STUB( + "TmUswH80UkI", + _ZN9Inspector26DebuggerFrontendDispatcher6pausedEN3WTF6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol8Debugger9CallFrameEEENS1_13DumbPtrTraitsIS8_EEEENS0_6ReasonENS2_INS3_6ObjectENS9_ISD_EEEENS2_INS5_7Console10StackTraceENS9_ISH_EEEE) STUB("TmVP8LzcFcY", sceImeClose) STUB("TmbPSQNxdW0", sceAppInstUtilAppUnInstall2) +STUB( + "TmjQ0yfQa7M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE7popBackEv) STUB("TmkVz5YgHg8", sceKernelEventLogWrite) +STUB("TmnhYAJKyHk", _ZNK3sce2Np9CppWebApi15Personalization2V15Error7getCodeEv) +STUB( + "TmtoPp3qC3I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEED1Ev) +STUB( + "Tmy-5RVHVQY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEC1Ev) STUB("TmzFll8mofs", sceDebugGetProcessTimeCounter) +STUB("Tn-I7zTWVXs", _ZN7WebCore12SettingsBase37defaultDownloadableBinaryFontsEnabledEv) +STUB( + "Tn-ikOrIa1o", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE4sizeEv) +STUB( + "Tn1Ie1t2VRY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEeqERKS9_) +STUB( + "Tn3enK0KXAw", + _ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequest15setInGameRosterERKNS1_6Common12IntrusivePtrINS3_19RequestInGameRosterEEE) +STUB("Tn7VN5olSLE", delegate_virtual_invoke_10) +STUB("Tn8l+qMDk0c", _ZN7WebCore11DisplayList14DrawTiledImageD1Ev) +STUB( + "TnC+MS5Fmtg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE8pushBackERKS8_) +STUB("TnCgJO3CzGw", _ZN9Inspector20InjectedScriptModuleD0Ev) +STUB("TnEmXni08qk", + _ZNK3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponse17getTotalItemCountEv) +STUB( + "TnFMBYHrq1A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEC1EPS8_) STUB("TnQqJsyek5o", sceNpAppLaunchLinkIntFinalize) +STUB( + "TnSbcuYGDP4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEC1EPKS8_) +STUB( + "TnTAxiRWceI", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("Tna53bt2UBo", jpeg_mem_src) +STUB( + "TnfrSDMjGSs", + _ZN3sce2Np9CppWebApi15Personalization2V110ContentApi12sendCallbackEiRKNS4_23ParameterToSendCallbackERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB( + "TnlB6zD1T8w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEC2Ev) +STUB( + "TnqhMyvzjHk", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi35ParameterToSetGameSessionPropertiesD1Ev) +STUB( + "TntyZaH44PU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEE7add_refEv) +STUB("TnublTBYXTI", _LXp_getw) STUB("TnvxGzkFmbo", sceSysUtilSendAddressingSystemNotification) +STUB( + "TnxIADuWQI0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEE11release_refEv) +STUB("To+aKg1H1Bw", _ZN6WebKit17ChildProcessProxy9terminateEv) +STUB("To0+90ONW9w", _ZN9Inspector26DebuggerFrontendDispatcher19globalObjectClearedEv) +STUB("To1XvNOzjo0", _ZN3sce2np8NpCommIdC1ERK20SceNpCommunicationId) +STUB("To1xSj7RwM0", _ZN3sce2Np9CppWebApi14SessionManager2V130PostPlayerSessionsResponseBodyD2Ev) +STUB("To2P9hE6vWo", __tsan_atomic128_compare_exchange_val) +STUB("To9SoA7RsGQ", rgctx_fetch_trampoline_mrgctx_0_p) STUB("To9mmGL+3G8", sceDbgLoggingHandler) +STUB( + "To9wxuscIFQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEC2ERS7_) +STUB( + "ToEZ74CG17Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEC2EPS6_PFvS8_EPNS2_10LibContextE) STUB("ToISj0q68Qg", sceKernelGetCpuUsageAll) STUB("ToKKfC8tKIk", sceKernelGetUtokenDataExecutionForRcmgr) +STUB("ToOnyvbmDus", _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V318PsnWebErrorWrapperD2Ev) +STUB("ToTgULkheEM", _ZN7WebCore17JSDOMGlobalObject14finishCreationERN3JSC2VME) +STUB( + "ToWfh0MFOmk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE7popBackEv) +STUB( + "ToXbsBEVHqA", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEEiRNS2_10LibContextEPT_m) +STUB( + "ToYSB2QVtmw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEC1Ev) +STUB( + "TogiXj6KjI0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE8capacityEv) +STUB( + "TohbnSafrTY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEE7get_refEv) +STUB("ToofD1zfjMg", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicketC2Ev) +STUB( + "Toq6lVgjYvE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE10setContextEPNS2_10LibContextE) +STUB( + "TorbrvEMTd4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE21intrusive_ptr_add_refEPS9_) +STUB("TouVZjySf0A", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_15CategoryInfoSubENS2_IS4_EEEE7destroyEPS6_) STUB("Tow5SoK0MRg", sceBgftServiceIntUploadQueryTask) +STUB("Tp+Q2ZxmFn4", _ZN9Inspector17BackendDispatcher12CallbackBaseD1Ev) STUB("Tp+ZEy69mLk", sceAudiodecDeleteDecoder) +STUB("Tp-6H4FW01o", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V110ReputationD2Ev) STUB("Tp13AgaoLcw", sceAppInstUtilAppUnInstallForMultiInstall) +STUB("Tp34V5MfLI4", _ZN7WebCore13MediaStrategyD2Ev) +STUB( + "Tp4fubFhrHU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE8copyFromERKS9_) +STUB( + "Tp7ptaLjJBE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEC1ERS7_) +STUB("TpASYcKz4l0", bdjbg_free) +STUB( + "TpE10yS6saQ", + _ZN3sce2Np9CppWebApi14SessionManager2V117FromMemberFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_10FromMemberEEE) +STUB( + "TpG4UGSHBDY", + _ZN3sce7Toolkit2NP2V212NetworkUtils19getBasicNetworkInfoERKNS3_7Request19GetBasicNetworkInfoEPNS2_4Core8ResponseINS3_13NetStateBasicEEE) +STUB( + "TpOlhTEMFAY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEppEi) +STUB("TpOrDHQ6jUo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEC2ERS7_) +STUB("TpQxwP5ZEOE", _ZN7WebCore5Frame14frameForWidgetERKNS_6WidgetE) +STUB("TpTiBtDPfm0", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEEixEm) +STUB("TpUvRkiNsxM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEC1Ev) +STUB("TpVvty4CQ+c", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110PlayerTypeEEmmEv) +STUB("TpeZWm8upgg", + _ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends8setorderENS5_5OrderE) +STUB( + "TpfQXprz5zE", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetrics18getConfidenceScoreEv) +STUB( + "TpfvhSnQbAg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB("TpifVffeesM", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEE3getEv) +STUB( + "TplG3ZskIsU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEC2Ev) +STUB( + "Tps0us229nI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEC1Ev) +STUB( + "Tq0FT8HmkJg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB("Tq1eanQWprg", _ZN3sce7Toolkit2NP2V28Commerce11SubCategory17CATEGORY_NAME_LENE) +STUB( + "Tq1oTpCqZq4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot9setslotIdEi) +STUB( + "Tq32TgIKrRI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB( + "Tq6A3jWrLjE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEC2Ev) +STUB( + "TqBrdVaJQ4w", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE5emptyEv) +STUB("TqF1tZVTXFM", WKPreferencesGetShouldDisplayTextDescriptions) +STUB("TqM6r76nfso", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE5clearEv) +STUB( + "TqaWsXjtPcw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "TqogWppHqAE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEC1Ev) +STUB("TqsXWuXHEdY", mono_string_empty) +STUB("TqvziWHetnw", _ZNSt12out_of_rangeD0Ev) +STUB("Tr-khnFGJqA", _ZN7WebCore27DeviceOrientationClientMockC1Ev) STUB("Tr0u0p-T+x8", sceNpGlobalHeapInit) +STUB("Tr3E0umtcys", _ZN3sce2Np9CppWebApi6Common6VectorIfEC1Ev) +STUB("TrAA6DeB6I0", _cosl_impl) +STUB("TrH1VHsVvzM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEEC1EPKS6_) +STUB("TrIn0pwP01Y", _ZN15AbstractStorage11LocalFolder8NextItemEPSt10shared_ptrINS_4ItemEE) +STUB( + "TrKpGgE8XjY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEppEv) +STUB("TrR0p56n98w", _ZNK3sce2Np9CppWebApi7Matches2V111AddedPlayer15playerNameIsSetEv) +STUB("TrROKpRreHE", _ZNK7WebCore12ChromeClient26allowedCompositingTriggersEv) +STUB("TrRrJp+BxS4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEED1Ev) +STUB( + "TrTo9uVSNNY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "TrUMs38HaQQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB("TrXaiM5H9hE", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119PlayStyleProperties14setCompetitiveERKi) +STUB( + "TrZ6fkcQqIo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "TrbabvEFXvs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("TrdyIAAxZHw", WKContextSetPlugInAutoStartOriginHashes) +STUB("TreTCxjQBGE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEEC2ERKS5_) +STUB( + "TrjwMrfM0fM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("TrkhD4229FA", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session8SessionsEE12deepCopyFromERS7_) +STUB("TrobtFJRMl0", _ZN3sce2Np9CppWebApi11Matchmaking2V15Error7setCodeERKl) STUB("Trpt2QBZHCI", sceVoiceQoSGetStatus) +STUB( + "TrrEtkIrqag", + _ZN3sce2Np9CppWebApi14IdentityMapper2V333PsnWebError_error_missingElementsC1EPNS1_6Common10LibContextE) +STUB("TrwAHMfEpsw", _ZN3WTF17StringPrintStream11tryToStringEv) +STUB("Ts-m2fpJCi8", u_getPropertyEnum_67) +STUB( + "Ts-nQ4c4kTg", + _ZN7WebCore22EmptyFrameLoaderClient33convertMainResourceLoadToDownloadEPNS_14DocumentLoaderERKNS_15ResourceRequestERKNS_16ResourceResponseE) +STUB("Ts1rKbGPoN4", CRYPTO_set_mem_functions) +STUB( + "Ts3Arew4ZXU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "Ts3rqJCZP0Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEE11get_deleterEv) +STUB("Ts9xjcY5wlQ", _ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error16unsetReferenceIdEv) +STUB("TsCf6iWDcSo", _ZN9Inspector25RuntimeFrontendDispatchernaEm) +STUB("TsE1-YELrQI", mono_aot_Sce_PlayStation_Orbis_Speechunbox_trampolines) +STUB( + "TsE8e7Fm2Y8", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetrics6toJsonERNS_4Json5ValueEb) +STUB("TsEaW5EA6iQ", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session9SessionIdEE5resetEv) +STUB("TsFjKDXSAEI", _ZN7WebCore18JSHTMLMediaElement4infoEv) +STUB( + "TsGF0E6TXSM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEC2EPNS2_10LibContextE) +STUB("TsGewdW9Rto", _ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE) +STUB("TsODPcApwGo", mono_digest_get_public_token) +STUB( + "TsOE88wHihI", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitations13isInitializedEv) +STUB("TsSEjJcBwNc", + _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetail10getmatchIdEv) +STUB("TsZjCztQNNs", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13FriendsOfUserEE7addressERS3_) +STUB( + "TsakQBwWFE8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB("Tsb8XW0A8bk", JNU_ClassThrowable) +STUB("TscmnlQLIAs", _ZN12video_parser7dump_brEPNS_21VpMpegvideoAvcBitreadE) +STUB( + "TshvASj-KFY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEC2Ev) +STUB( + "Tsm-Lx6GAw0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "TsnGxbh95Uk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "Tspg30CNITQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEE11get_deleterEv) +STUB("TsrS8nGDQok", siginterrupt) +STUB("TsrgvI3BfxY", jpeg_idct_15x15) +STUB("Tsxlf2iL0QI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEE5resetEPS6_) +STUB("Tt3ZSp9XD4E", _ZTSSt7codecvtIDic9_MbstatetE) +STUB("Tt4j3Agw6Tk", metadata_area) +STUB("Tt83gH4H0jc", _ZN3JSC7Symbols11splitSymbolE) STUB("TtHBV0mH8kY", sceNpAsmClientGetRelatedGameNpTitleIdsResult) STUB("TtItikWwBgs", sceSystemServiceGetAppId) +STUB("TtJ8lOeiQyU", _ZN7WebCore18TextureMapperLayernwEmPv) STUB("TtV6Hg4hWo4", sceLibSecureCryptographyGetBlockSize) +STUB( + "TtX7D3DExU8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEptEv) +STUB( + "TtYifKtVkYA", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERy) +STUB( + "TtanwxkuhtI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEdeEv) +STUB( + "Ttbp7QK3sQ8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEneERKS9_) +STUB( + "TtetnFHAIRk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEC1ERKS7_) +STUB("Tth2lBBV2Cc", uprv_decNumberCopySign_67) +STUB( + "TtiUM8CuSLs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEE3getEv) +STUB("TtpAsho2z5E", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEE7add_refEv) +STUB("TtrU8O7z5eY", c19) STUB("Tu-288s8YYg", sceMusicCoreServerGetPlayStatus_vsh) +STUB("Tu3AXeMFW04", _ZN3sce7Toolkit2NP13AttachmentURLC2Ev) +STUB("Tu9C+UslPp4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEC2ERKS7_) +STUB( + "Tu9OLh2qhJg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEE11get_deleterEv) +STUB("TuAOjJM7csM", _ZN7WebCore13JSHTMLElementC2ERKS0_) +STUB("TuCEXF-C5n0", delegate_virtual_invoke_imt_4_p) +STUB( + "TuD2kGkdkCo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE5beginEv) +STUB( + "TuD9dHiKjh8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEEaSERSA_) +STUB("TuExC-Sja8o", u_terminateUChar32s) +STUB("TuIEPzIwWcI", _ZGVNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE) +STUB("TuKJRIKcceA", _ZTSSt9basic_iosIcSt11char_traitsIcEE) +STUB("TuNDnlmOxTw", _ZN9Inspector25BrowserFrontendDispatcherC1ERNS_14FrontendRouterE) +STUB( + "TuUWbg8IqfU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("TuYK6TAg+UY", WKBundleNavigationActionGetEventMouseButton) +STUB("TuhGCIxgLvA", _ZNSt7codecvtIDic9_MbstatetED1Ev) +STUB( + "Tui-d98UM7o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEC1Ev) +STUB("TumAKF0QLX0", _ZN9Inspector21CSSFrontendDispatcherdlEPv) +STUB("Tuth2BRl4x0", _ZN3sce2np9SemaphoreC1Ev) +STUB("TuxbujwAe1M", Java_com_sony_bdjstack_init_Init_startCore) +STUB("Tuygbxm9F-A", _ZN3WTF10StringView16GraphemeClusters8IteratorC2EOS2_) +STUB("Tv0Ib4NgnH4", _Stoxflt.vals) +STUB("Tv0drkccu+8", _ZN3JSC17DeferredWorkTimer6createERNS_2VME) +STUB("Tv4PMhvwfW0", _ZN7WebCore18TextureMapperLayer9applyMaskERKNS_25TextureMapperPaintOptionsE) +STUB("Tv53+aRRcwY", _ZN7bmalloc15IsoHeapImplBaseD2Ev) +STUB( + "TvDHuSTr+mk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEeqERKS9_) +STUB( + "TvDx8mruo18", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEEaSERKSA_) +STUB( + "TvENoMeKy4Q", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEplEm) +STUB( + "TvHkrpffG+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEEC1Ev) +STUB("TvIFTanTJu0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEaSERKS7_) STUB("TvLOxBx5J-Q", sceUpsrvGetCompletedTaskId) +STUB( + "TvTj+wvaKxU", + _ZN7WebCore20DecodeOrderSampleMap30reverseFindSampleWithDecodeKeyERKSt4pairIN3WTF9MediaTimeES3_E) +STUB("TvULx-g4ZK0", _ZN7WebCore9HTMLNames12onsubmitAttrE) +STUB( + "TvWVsg-2uvA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("TvXo6CimTsk", _ZN7WebCore17LibWebRTCProvidernwEm) +STUB( + "TvYxcLLiSxI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEptEv) +STUB( + "TvpCfaZLFBw", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi28ParameterToDeleteGameSession10initializeEPNS1_6Common10LibContextEPKc) +STUB( + "TvsDY6iM7WY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("TvyH3f84Fa0", ucnv_getStandardName_67) +STUB("Tvzz4P+TshA", _ZN3sce7Toolkit2NP2V24Auth8AuthCodeC1ERKS4_) +STUB( + "Tw2d5AeGs6w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("Tw5-nhpWs5I", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110TaskStatusEEppEi) +STUB("Tw6wqwLrpL8", rgctx_fetch_trampoline_rgctx_72) +STUB("Tw7N9P22h28", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V110ReputationD1Ev) +STUB("Tw8Hf+j+mTA", _ZN7WebCore22SkewTransformOperation5blendEPKNS_18TransformOperationEdb) +STUB( + "Tw9+RKkhz98", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("TwA2gtUXK7k", _ZN7WebCore13GraphicsLayer5clearERN3WTF6RefPtrIS0_NS1_13DumbPtrTraitsIS0_EEEE) +STUB( + "TwCWvZZpAcs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEmmEv) +STUB("TwCcJcd5-Q4", _ZN3JSC18NullGetterFunction6s_infoE) STUB("TwELPoqW8tA", sceUserServiceGetEventFilterTeamEvent) +STUB("TwJivtnB3y8", delegate_invoke_impl_target_3) +STUB("TwLxp0uv5lM", WKWebsitePoliciesSetAutoplayPolicy) +STUB( + "TwNp57ufLks", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE3endEv) +STUB( + "TwNxwWHQviM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEEC1ERKSA_) +STUB( + "TwTwM9cuTGU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEE11get_deleterEv) +STUB("TwZTFfLJy9Q", mono_field_full_name) +STUB("Twb4U0IdSHQ", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getBoolean4Ev) +STUB( + "TwfH5MVvD8Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEE7get_refEv) +STUB("Twh1FF-iaUo", mono_aot_Sce_Vsh_ErrorDialogUtilWrapperjit_code_start) STUB("TwjJAp-K-ts", _sceLibcMallocUsableSize) STUB("TwjkDIPdZ1Q", sceNetDuplicateIpStart) +STUB("TwlpNb2TjhM", isobmf_decoder_decode) +STUB( + "Twmy+o4YoiA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE8copyFromERKS9_) STUB("TwqZnaIjWv4", sceVrTracker2QueryMemory) +STUB("TwqdN6hlLyA", _ZN7WebCore11MediaPlayer12supportsTypeERKNS_28MediaEngineSupportParametersE) +STUB("TwtovUjOaxQ", + _ZN3sce3pss5orbis5input37InputManager_SetAnalogStickModeNativeENS2_15AnalogStickModeE) STUB("TwuUzTKKeek", sceGameLiveStreamingSetDefaultServiceProviderPermission) +STUB( + "Twv2J+xbqTg", + _ZN7WebCore18PerformanceLogging21memoryUsageStatisticsENS_34ShouldIncludeExpensiveComputationsE) +STUB( + "Tx1SiRdkOmE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEEC2Ev) +STUB("Tx397pg8Has", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V114SearchOperatorEEC1EPS6_) +STUB( + "Tx40L0uI7xk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEeqERKS9_) +STUB("Tx5Y+BQJrzs", _ZTVSt13basic_filebufIwSt11char_traitsIwEE) +STUB( + "Tx6bZpRwNhQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEEC2ERKS9_) +STUB("Tx7TIiaynFE", _ZN7WebCore15AffineTransform12makeIdentityEv) +STUB("TxBSWS65aos", _ZN7WebCore22EmptyFrameLoaderClient19detachedFromParent3Ev) +STUB("TxDI56HeuOQ", _ZN7WebCore14DocumentLoaderD0Ev) +STUB("TxNwku-Iv8c", _ZN12video_parser7cVpUtil13vp_ff4_memsetEPvS1_im) +STUB( + "TxPpnR9tF2g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEEaSERSA_) +STUB("TxRlILZBGq8", _ZNSt9basic_iosIwSt11char_traitsIwEE4moveERS2_) +STUB( + "TxUl0ckmyVs", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Console13ChannelSourceEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB( + "TxUz1OzMVjs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEppEv) +STUB( + "TxV4M5Gy2Y8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE5emptyEv) +STUB("TxVzovyEODc", _ZThn16_N9Inspector21InspectorRuntimeAgentD1Ev) +STUB( + "TxYwOqG4v7A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEED2Ev) +STUB( + "TxeYu1ftSjs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEE7get_refEv) +STUB("TxgvG-hA-1s", _ZNK7WebCore9TreeScope16getElementByNameERKN3WTF12AtomicStringE) +STUB( + "TxqY3x-QPMA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEmmEv) +STUB( + "TxvosJH-YPY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "Txwucy76fGs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEdeEv) +STUB( + "Txylh3i0hYo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "Ty30i9F1qZg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEneERKS9_) +STUB( + "Ty35ywQe4kE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEEdeEv) +STUB( + "Ty4P3jK7jJE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEC1EPS6_PNS2_10LibContextE) STUB("Ty9wanVDC9k", sceUserServiceSetEventUiFlag) +STUB("Ty9yDMxyJnE", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets18unsetrulesetFilterEv) STUB("TyACAxDH3Uw", _sceNpIpcReallocImpl) +STUB("TyArPzU-zOw", _ZN3sce2Np9CppWebApi11Matchmaking2V15CauseD2Ev) +STUB("TyDhYWHXXvw", mono_string_empty_wrapper) +STUB("TyMorwJka5E", Java_com_sony_gemstack_core_CoreAppContext_n_1isInterrupted) +STUB("TyTI4dfrUpk", _ZN15AbstractStorage12LocalContent4OpenEit) +STUB( + "TyV9wlDEsIw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEptEv) +STUB( + "Tyknq8BhfpA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE5beginEv) +STUB("TyofLD4M0s4", _ZTVN7WebCore11DisplayList13SetMiterLimitE) +STUB("Typ5Xg0UqKY", EVP_PKEY_get0_DSA) +STUB( + "TyqXDvY5soQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEC1EPS7_PFvS9_EPNS2_10LibContextE) +STUB( + "TysWBtKauhM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEppEv) +STUB("TyudkY7CrGY", mono_aot_Sce_Vsh_SessionInvitationunbox_trampoline_addresses) STUB("TywrFKCoLGY", sceSaveDataInitialize3) +STUB("TyxSlYIQimM", stat_set_DeciFuse) +STUB("TyyaYni97vQ", JSClassRelease) STUB("Tyzq3UGlllM", sceVorbisDecPcmSeekPageLap) STUB("TyzsoH-vx8o", sceKernelWriteUnmapCommand) +STUB( + "Tz0HMqQs2KY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEEC1Ev) +STUB("Tz3OEt87piQ", _ZN15AbstractStorage14YoutubeContent5FlushEv) STUB("Tz4RNUCBbGI", _sceKernelRtldThreadAtexitIncrement) +STUB("Tz8--ueETvg", + _ZN3WTF14FileSystemImpl15fileIsDirectoryERKNS_6StringENS0_25ShouldFollowSymbolicLinksE) +STUB("TzArK917C68", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEEC1ERKS7_) +STUB("TzInlmRQcHw", WKWebsiteDataStoreIsStatisticsEphemeral) +STUB( + "TzKkbTRn0Os", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEED2Ev) +STUB("TzRXIsWDZ6A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEEmmEi) STUB("TzRmKAkOwBw", scePrintDeciHeader) +STUB( + "TzUibJYKtcg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("TzUz6mzMq+o", _ZN9Inspector22InspectorDebuggerAgent8stepNextERN3WTF6StringE) +STUB("TzXiE0YCpTc", _ZN7WebCore15DOMWrapperWorldD1Ev) +STUB( + "TzY4piPD+L0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE7reserveEi) +STUB( + "TzYq4tWDY-E", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB( + "Tzce5YxoFWc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEC2ERKS8_) +STUB("TzeWlr2tLSg", _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26RecordScoreResponseHeadersC2Ev) STUB("TzkL-nUWfaQ", sceCamera2SetSaturation) +STUB("Tzm-z36UYKg", FTA_Support_Renderer_Raster5) +STUB("Tzm0QegE0yE", _ZN3sce7Toolkit2NP2V29Messaging12Notification16NewInGameMessageaSERKS5_) +STUB("Tzmvl2b3kLA", openintr) STUB("TzoWJFBjBW8", sceEditMp4Initialize) +STUB("Tzqjz3FdWKA", _ZNK7WebCore27PlatformMediaSessionManager26applicationDidBecomeActiveEv) +STUB("Tzr36Rs5Fj4", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_19ProductInfoDetailedEED1Ev) +STUB("Tzwul5AkAwE", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session9SessionIdEEC2Ev) +STUB("TzxDRcns9e4", _Rint) STUB("Tzz6VPST4kY", sceMusicFwIsPlaying) +STUB("U+0WKVAePww", FT_Stream_Read) +STUB( + "U+4Av0W39W0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEixEm) +STUB( + "U+9gOvJWtL0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE3endEv) +STUB("U+EIpe2CXNo", _ZN3sce2Np9CppWebApi12Leaderboards2V14User8fromJsonERKNS_4Json5ValueE) +STUB( + "U+FoXrXyDXk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEE6assignEPS4_PFvS6_EPNS2_10LibContextE) +STUB( + "U+GANdEuZCg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEEptEv) +STUB("U+KkjgYPmDw", mono_btls_bio_flush) STUB("U+LLXdr2DxM", sceFontGraphicsUpdatePositioning) +STUB( + "U+Vm01xvPMs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEixEm) +STUB( + "U+XWgXdZvSU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB( + "U+Xqr8wXQpY", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer39getxPSNSESSIONMANAGERREQUESTEXACTORIGINEv) +STUB( + "U+h+LTp3UDg", + _ZN9Inspector19InspectorAuditAgent27didCreateFrontendAndBackendEPNS_14FrontendRouterEPNS_17BackendDispatcherE) +STUB( + "U+lRqfia78U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEEaSERKSA_) +STUB("U+o+bGvUe24", + _ZN7WebCore14LoaderStrategy53intermediateLoadInformationFromResourceLoadIdentifierEm) +STUB("U+szDw1WBdE", mono_bitset_invert) +STUB("U+ztaGWf924", ulist_createEmptyList) STUB("U-+7HsswcIs", sceNgs2SystemEnumRackHandles) +STUB( + "U-+RiRpytVo", + _ZN3sce2Np9CppWebApi6Common18ResponseHeaderBase6createEPNS2_10LibContextERNS2_12IntrusivePtrIS3_EEl) +STUB("U-3pvGonwTA", WKPageConfigurationSetRelatedPage) +STUB("U-8hReYn5+w", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend16FriendsOfFriendsEED1Ev) STUB("U-CnbmeyYaA", sceHmd2ReprojectionQueryBufferSizeAlign) +STUB( + "U-EUJwY2AYk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE5beginEv) +STUB("U-GpMkWK3lY", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE6resizeEj) +STUB("U-IC2jmNJLg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12RoomPingTimeEE3getEv) +STUB( + "U-IFsK6ipPA", + _ZN7WebCore19JSHTMLSelectElementC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_17HTMLSelectElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "U-J5g5HlYgs", + _ZN7WebCore16NativeNodeFilterC1EPNS_22ScriptExecutionContextEON3WTF3RefINS_19NodeFilterConditionENS3_13DumbPtrTraitsIS5_EEEE) +STUB("U-Mgu8Pn9y0", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEED1Ev) +STUB("U-NH73HXl1A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEED2Ev) +STUB("U-RUnmJ4zL8", _ZN3WTF14FileSystemImpl13directoryNameERKNS_6StringE) +STUB( + "U-SQoj+Q9o0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "U-SoFdrzQA4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEC1Ev) +STUB("U-UjANPLJlM", _ZN7WebCore20SVGPathStringBuilderD1Ev) +STUB("U-VthU479-4", _ZN12video_parser5vpcom4TellE) +STUB("U-VxawApsG4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEC1ERKS7_) +STUB( + "U-ctjDMFcpc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEED0Ev) +STUB("U-dRlT0TFu4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEEaSERS7_) +STUB( + "U-fHHRsHzN8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody32unsetComparedLastUpdatedDateTimeEv) +STUB("U-fmGeHGul8", WKBundleFrameEnableMemoryInfo) +STUB("U-h8S+7q4f4", _ZN3WTF33canAccessThreadLocalDataForThreadERNS_6ThreadE) +STUB("U-iRov9SLpg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEptEv) +STUB( + "U-jNJPZp9FE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE3endEv) +STUB("U-mBkINoyOI", _ZN3sce2Np9CppWebApi6Common6VectorIjE8copyFromERKS4_) +STUB( + "U-nRQUUw2kQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEEC2ERSA_) +STUB("U-pDROUPL40", _ZN7WebCore21NetworkStorageSession16deleteAllCookiesEv) +STUB("U-t+RQEGPMI", il2cpp_shutdown) +STUB( + "U-uAPDRuLzY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEC2Ev) +STUB( + "U-x5Q3Y7oSs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "U03yxzm-SPc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE21intrusive_ptr_add_refEPS9_) STUB("U07X36vgbA0", sceUserServiceSetSystemLoggerHashedAccountIdParam) +STUB("U089pStD8Bw", u_isUWhiteSpace) +STUB("U0EOfsJ6Euw", _ZN4Manx21DisplayRefreshMonitor4stopEv) +STUB("U0FdtOUjUPg", _ZNSt9_Num_base15tinyness_beforeE) +STUB( + "U0GOo9F9Pzw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEC2EPS8_) +STUB("U0MQEKFNX0o", GCC_except_table227) STUB("U0NKl-rjhYA", sceKernelIccGetCountTime) STUB("U0TOSinfuvw", sceNpTrophySystemDestroyContext) +STUB( + "U0UZgsGu4gQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB( + "U0XNqbQUhJI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEC2EPKS8_) +STUB("U0YoWwgg8aI", _ZN3sce2np9WorkQueue4InitEPKNS0_6Thread5ParamE) +STUB( + "U0gdp3U2KBg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE4sizeEv) +STUB("U0i8CT7bRsg", _ZN3WTF3URL17removeCredentialsEv) +STUB( + "U0iAaRXf5vI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE7reserveEi) STUB("U0ivfdKFZbA", sceAudioInSetSparkParam) STUB("U0kpGF1cl90", sceVideodecDeleteDecoder) +STUB("U0l5R1vC1do", WKPreferencesGetDirectoryUploadEnabled) +STUB( + "U0q-VS5jUy4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEC1Ev) +STUB("U0vKYEnGQWk", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Wordfilter16SanitizedCommentEED1Ev) +STUB("U0xPrr5rnH4", WKProtectionSpaceCopyHost) +STUB("U0xhASDMK4Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEE5resetEPS6_) +STUB( + "U0zTJkIZG4U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEC1EPS8_) +STUB( + "U12MnXZXR4w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE21intrusive_ptr_sub_refEPS9_) +STUB("U12ian2FKBo", mono_profiler_install_gc) +STUB( + "U13OoNwG4H4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEED2Ev) STUB("U15Y7wzfgOA", sceNpTcsIntDownloadData) +STUB("U1CBVMD42HA", _ZTISi) +STUB("U1M1KcuS+Bw", _ZN3JSC19HeapSnapshotBuilder16analyzeIndexEdgeEPNS_6JSCellES2_j) +STUB("U1OtsLR+8fQ", _ZNK7WebCore8Document22preferredStylesheetSetEv) +STUB( + "U1PRb713KN4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEC2Ev) +STUB( + "U1ZqNhRcAGU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE5eraseENS2_8IteratorIS9_EERSC_) +STUB("U1cMemn79TQ", _ZN3JSC7Symbols19isFinitePrivateNameE) +STUB( + "U1cmpQeL3Jo", + _ZN8meta_gen11MsvPromoter27setKeyValue_TBLAVC_IconSizeENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) STUB("U1dZXAjkBVo", sceSystemStateMgrVshAutoUpdate) +STUB("U1dyXoMJpOU", _ZN3sce2Np9CppWebApi15Personalization2V121GetAccessCodeResponseD2Ev) +STUB( + "U1e6TIfxazY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEEC1EPS5_PFvS7_EPNS2_10LibContextE) +STUB( + "U1iO0hDvioE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "U1isJv-EwjM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEC2Ev) STUB("U1kpHo3s3po", sceIduUtilGetAppVersion) STUB("U1q6DrPbY6k", sceNetConfigWlanSetDeviceConfig) STUB("U1t1SoJvV-A", sceUsbdRefDevice) +STUB("U1uukdMUipQ", _ZN7WebCore15SQLiteStatement14getColumnInt64Ei) +STUB("U1v1QqJ3hqk", _ZN3sce7Toolkit2NP2V28Presence12Notification14PresenceUpdateC2Ev) +STUB( + "U1vowYRBbvU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEppEi) +STUB("U2+GrgQDpOg", _ZN3sce7Toolkit2NP2V29Messaging22GameDataMessageDetailsC2Ev) +STUB("U2-E1yYvnxw", _ZN9Inspector13AgentRegistryC2Ev) +STUB( + "U20PDLCRx0A", + _ZN3sce7Toolkit2NP10Challenges9Interface16getChallengeDataEPKNS1_23ChallengeGetDataRequestEPNS1_9Utilities6FutureINS1_25ChallengeBinaryDataResultEEEb) +STUB("U20fbGbtjXg", _ZL27_sceLibcDeleteArrayWithSizePvm) +STUB( + "U26duBq8TsY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "U280LWXRI8Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEneERKS9_) STUB("U28jAuLHj6c", sceSharePlayServerLock) +STUB( + "U2EQ3ESN8cU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE21intrusive_ptr_add_refEPS9_) +STUB("U2Ewy7tmla0", _ZN9Inspector27AnimationFrontendDispatchernwEm) STUB("U2JJtSqNKZI", sceVideoOutGetEventId) +STUB("U2LcSWAxv6I", WKBundlePageGetRenderTreeSize) +STUB("U2RYH8aEjmk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEEC2Ev) +STUB( + "U2Rta9OJUNk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("U2aZV5ZkjyI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEED1Ev) STUB("U2iepfgrDMg", sceM4aacEncCreateEncoder) +STUB("U2kjiIEZalE", MASSMASendMessage) +STUB("U2t+WvMQj8A", _ZNKSt8messagesIcE4openERKSsRKSt6locale) +STUB("U2tir7V8tzw", curl_multi_assign) +STUB("U2yI-GjuK2A", _ZNK7WebCore26Matrix3DTransformOperation6matrixEv) +STUB("U3-Cp8hLNg0", _ZN12video_parser14cVideoOperatorD2Ev) STUB("U30AU92fWdU", sceNpManagerIntCheckNpStateA) +STUB( + "U391sOXnLVI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE21intrusive_ptr_add_refEPS9_) STUB("U3BVwQl2R5Q", sceCameraIsValidFrameData) +STUB("U3EQ4p0-HhY", WKStringGetTypeID) +STUB( + "U3Ii9DlmTdM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("U3LQpWjTAw8", + _ZN3JSC29constructArrayNegativeIndexedEPNS_9ExecStateEPNS_9StructureEPKNS_7JSValueEj) +STUB("U3MmjwQX0tU", _ZN9Inspector22InspectorDebuggerAgent19handleConsoleAssertERKN3WTF6StringE) +STUB("U3NHH12yORo", MOCANA_initMocana) +STUB("U3OO4tKsESc", _ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_errorD1Ev) +STUB("U3RyNP5dEpg", _ZN3sce7Toolkit2NP26GetEntitlementsInputParamsC1Ev) +STUB("U3Tnd2vCYRM", _ZNK7WebCore18RenderLayerBacking20compositingLayerTypeEv) +STUB("U3VOONgMD4k", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToCancelTicketaSERS5_) +STUB("U3VqZR0FZTE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEED2Ev) +STUB( + "U3Zd2HJHVQ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEE11get_deleterEv) +STUB("U3b5A2LEiTc", _ZNSt18bad_variant_accessD1Ev) +STUB("U3h6DTMoskc", _ZN3JSC25JSInternalPromiseDeferred6createEPNS_9ExecStateEPNS_14JSGlobalObjectE) +STUB( + "U3i5noAQ6Qs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB( + "U3jfIaK+yZk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEEC1ERSA_) +STUB("U3oQt6jgCX8", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOfferC1ERS5_) +STUB( + "U3uXudxUsZ0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE5emptyEv) +STUB("U3ua0NGm+jE", WKNotificationManagerProviderDidClickNotification) +STUB("U3vr-E1nYEc", _ZN3JSC7Symbols19fontsizePrivateNameE) +STUB("U3xnMqYSrnA", _ZNK3sce2Np9CppWebApi7Matches2V119ResponseTeamResults7getRankEv) +STUB("U4-jv3EFgUE", mono_aot_System_Windowsunbox_trampoline_addresses) +STUB( + "U406i97V834", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEE6assignEPS5_PFvS7_EPNS2_10LibContextE) +STUB("U41P7N8ZrsI", _ZN3JSC17DeferredWorkTimerD2Ev) STUB("U44GbnRZ0NA", sceFiosOpGetAttr) +STUB("U44Hp7Y9Oz8", _ZN3sce2Np9CppWebApi6Common6VectorIlE3endEv) +STUB("U44f4Cpb0xg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEEppEv) +STUB( + "U44gQ-hBZ48", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE8pushBackERKS8_) +STUB("U467+mirSkM", d2i_ASN1_INTEGER) STUB("U46NwOiJpys", sceVideoOutSubmitFlip) +STUB("U4Ajvh3L57k", cairo_get_antialias) +STUB("U4DB3Pubfr4", rgctx_fetch_trampoline_rgctx_42) +STUB("U4DkIVrpUq0", rgctx_fetch_trampoline_rgctx_66) +STUB( + "U4ERH3U6KoE", + _ZN3sce7Toolkit2NP2V27Session7getInfoERKNS3_7Request7GetInfoEPNS2_4Core8ResponseINS3_7SessionEEE) +STUB( + "U4FBT38oMxg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "U4GBBFKc8pM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEC1ERS7_) +STUB( + "U4J9hC7k-iE", + _ZNK7WebCore21NetworkStorageSession16hasStorageAccessERKNS_17RegistrableDomainES3_N3WTF8OptionalINS4_16ObjectIdentifierINS_19FrameIdentifierTypeEEEEENS6_INS_18PageIdentifierTypeEEE) +STUB("U4JP-R+-70c", _ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED2Ev) +STUB( + "U4Np8wLjGEE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEppEv) +STUB("U4XJUmHlBk8", EC_POINT_oct2point) +STUB( + "U4ZZBVsl6+E", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessions28setxPsnAcceptPlatformNamePs5ENS5_25XPsnAcceptPlatformNamePs5E) +STUB( + "U4ae3Y2ymvY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEE5resetEPS6_) +STUB("U4bW29e3GTI", upvec_getRow_67) +STUB("U4erA1GQP98", YGSetLogger) +STUB( + "U4fbcPQwKoE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEC1EPNS2_10LibContextE) +STUB("U4g7RC9mWd8", WKFrameCopyUnreachableURL) +STUB( + "U4teKCuG070", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEEC2ERSA_) STUB("U4xTZLttCHM", sceNpPush2RegisterNotificationCallback) +STUB("U52BlHBvYvE", _Getmbcurmax) STUB("U546k6orxQo", sceNgs2RackCreateWithAllocator) +STUB("U54NBtdj6UY", _ZNSt6_Mutex5_LockEv) +STUB( + "U58iutJ-1aI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEC2ERS7_) +STUB("U5BI7sfbbP8", usearch_setBreakIterator_67) STUB("U5ExQGyyx9s", sceHttpsSetSslVersion) +STUB("U5Ga4rwjlD8", _ZN4Manx11MediaPlayer11naturalSizeERiS1_) STUB("U5HG6wD4smU", sceKernelSetProcessPropertyString) +STUB("U5JdnyRtuWc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEptEv) +STUB( + "U5JqckYhAvk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEE21intrusive_ptr_add_refEPS7_) +STUB("U5L4v+VUyxQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEE11get_deleterEv) +STUB( + "U5LscP6crxU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEEC2Ev) +STUB("U5MA-3ocfxk", mono_aot_System_Windowsjit_got) +STUB("U5Mg10Dz2ec", + _ZN7WebCore18JSHTMLInputElement15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB("U5PbkU5XLhk", _ZN7WebCore16HTMLInputElement8stepDownEi) +STUB("U5TMDm715qE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEED2Ev) +STUB("U5b4rCFPOXg", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData12setaccountIdEPKc) +STUB("U5fQLmRdldA", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEEcvbEv) +STUB("U5i72PwSh3Y", YGUnitToString) +STUB("U5jINkeR58U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEptEv) +STUB("U5q+5THwQJY", WKPreferencesGetFullScreenEnabled) +STUB( + "U5zbMe-5x+4", + _ZN7WebCore17JSDOMRectReadOnlyC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_15DOMRectReadOnlyENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "U6+BDFWeM4g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEppEi) +STUB("U6+U2AYUe7Y", glEndQueryEXT) +STUB("U60DbIhuJvY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE5eraseENS2_8IteratorIS6_EERS9_) +STUB("U63E88xqBnQ", rgctx_fetch_trampoline_mrgctx_72_p) +STUB( + "U67bPBQmn1E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEC2Ev) +STUB( + "U6AKoIa5Byc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEC2EPS8_) +STUB( + "U6BMQj2eywg", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersC2ERS5_) +STUB( + "U6CFvC9iwUI", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicket28setxPsnAcceptPlatformNamePs5ENS5_25XPsnAcceptPlatformNamePs5E) +STUB( + "U6DKmilX0ng", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEdeEv) +STUB("U6GJnrlhoWA", GCC_except_table89) +STUB( + "U6InmoNyC0g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEppEi) +STUB( + "U6Kgaqpu9jo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEptEv) +STUB("U6NZO7+BIvg", _ZN7WebCore21ScriptDisallowedScope7s_countE) STUB("U6PxwrRchl4", sceAmprAmmMeasureAmmCommandSizeMultiMap) STUB("U6Qhv-QWXTc", sceFiosDirectoryCreateWithModeSync) STUB("U6SNV+RnyLQ", pthread_mutexattr_getkind_np) +STUB("U6TtqBmL14A", _ZThn24_N9Inspector22InspectorDebuggerAgentD0Ev) +STUB("U6U8Yenax+Q", _ZN7WebCore7toSRGBAERKNS_4HSLAIfEE) STUB("U6VdUe-PNAY", sceNpPartySendBinaryMessage) +STUB( + "U6YOWYqt+xM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEED2Ev) +STUB("U6enwdB7S-M", _ZN3JSC2VM20uint16ArraySpaceSlowEv) STUB("U6h4e5JRPaQ", scePngDecParseHeader) +STUB( + "U6iVPZmfsbY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("U6kDY4BL1L4", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku16getOriginalPriceEv) +STUB("U6lrpHJgqYM", _ZN7WebCore8Document6embedsEv) +STUB("U6nmZcDpmW4", _ZN3sce7Toolkit2NP2V28Matching4Data8deepCopyERKS4_) +STUB( + "U6oPBhr7EQI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE5startEPNS2_10LibContextE) +STUB( + "U6uDbWcplZE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEneERKS9_) +STUB("U6zCblLII4w", glUniform2fv) +STUB("U6zG9zIIUPI", u_finit_67) +STUB("U727+5CA9nc", mono_custom_attrs_from_field) +STUB("U73QiDRpK9k", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeaders7getETagEv) +STUB( + "U73ooLZw7Cs", + _ZN3JSC23JSModuleNamespaceObject19getOwnPropertyNamesEPNS_8JSObjectEPNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB( + "U74T-1icv9Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE7popBackEv) +STUB( + "U76KaYSmGDs", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities10initializeEPNS1_6Common10LibContextENS7_12IntrusivePtrINS7_6VectorINS7_6StringEEEEE) +STUB("U79P-srDil8", _ZN3sce3Xml3Dom8Document10importNodeENS1_6NodeIdES3_PKS2_S3_) +STUB("U7CFssPZoT8", _ZN3sce2Np9CppWebApi6Common8IteratorIjEC2EPj) +STUB("U7GHMyvbSv0", _ZN7WebCore6JSFile11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("U7HgCKaRu4s", _ZN13OpaqueJSClassD1Ev) +STUB("U7IhU4VEB-0", iswprint) +STUB( + "U7K0TV500-Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEC1EPS8_) +STUB("U7NqWR0tCXk", + _ZN7WebCore28convertToIntegerEnforceRangeIjEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB( + "U7Q1hq-Fv9o", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEEC2ERKSB_) +STUB("U7QZzL5OgXM", _ZN7WebCore11DisplayList22BeginTransparencyLayerC2Ef) +STUB("U7UY7XgW1z4", _ZN7WebCore16JSStyleSheetList9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("U7XbaR+TNak", _ZN7WebCore23CoordinatedBackingStore10createTileEjf) +STUB( + "U7ZR8uItFZI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEE11release_refEv) +STUB( + "U7b47oANnsc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEdeEv) +STUB( + "U7d3dFDTfFg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEED2Ev) +STUB("U7i58uXSNy8", _ZN3sce7Toolkit2NP2V212ActivityFeed4FeedaSERKS4_) +STUB("U7jlRfLk4NI", g_memdup) +STUB("U7n0UvpCFFw", _ZNK3WTF15AutomaticThread19hasUnderlyingThreadERKNS_14AbstractLockerE) +STUB( + "U7nS2A5o1lA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("U7o+A03Tkr4", _ZNK7WebCore9FrameView12tiledBackingEv) +STUB("U883DGbsPFg", _ZNK3sce2Np9CppWebApi7Matches2V118CreateMatchRequest21cancellationTimeIsSetEv) STUB("U8AQMlOFBc8", sceNpSignalingGetLocalNetInfo) +STUB("U8AYA5AU7Bk", mono_threads_exit_gc_safe_region) +STUB( + "U8ETnFW72v8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEdeEv) STUB("U8IfNl6-Css", sceVoiceQoSInit) +STUB("U8JgzNHPmi0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEaSERS7_) +STUB("U8LOoQe7z3k", SSL_CTX_set_default_passwd_cb_userdata) +STUB( + "U8LnliM4fB0", + _ZN3sce7Toolkit2NP2V23TUS19addToAndGetVariableERKNS3_7Request19AddToAndGetVariableEPNS2_4Core8ResponseINS3_25AtomicAddToAndGetVariableEEE) +STUB("U8MQdPXpXyQ", qR2) +STUB( + "U8SxvajExOg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEppEv) +STUB( + "U8Y8mUG10kg", + _ZN3sce2Np9CppWebApi14SessionManager2V140ResponsePlayerSessionNonPsnPlayerFactory7destroyEPNS3_33ResponsePlayerSessionNonPsnPlayerE) +STUB("U8fG0vNLdHc", + _ZN3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayer16setJoinTimestampEPKc) +STUB( + "U8faoKjwEwY", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUser17setnpServiceLabelEj) +STUB( + "U8gcXgU2hns", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("U8mSNjJvgxk", _ZN4Manx11BundleOrbisC2Ev) STUB("U8oNsRef+jI", sceCamera2GetAutoWhiteBalance) +STUB("U8pDVMfBDUY", __atomic_fetch_add_4) +STUB("U8plp-F3TwM", _Z24VideoPlayerVcs_SetVolumeii) +STUB( + "U8xuXpu43n4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB( + "U91nVo0lLWo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEE7add_refEv) +STUB( + "U927x2QTUtA", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody28getExclusiveLeaderPrivilegesEv) +STUB( + "U995Zr1LElQ", + _ZN3sce2Np9CppWebApi14SessionManager2V156PostGameSessionsSessionIdMemberPlayersRequestBodyFactory7destroyEPNS3_49PostGameSessionsSessionIdMemberPlayersRequestBodyE) +STUB( + "U9BlprTeCSY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE6insertENS2_8IteratorIS9_EERKS9_RSC_) +STUB( + "U9EWv5bWtlQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE3endEv) +STUB("U9Hu4RQD9Tk", _ZN3sce2Np9CppWebApi6Common8IteratorIfEaSERKS4_) +STUB("U9JcaWbbuAs", WKPreferencesSetMediaSourceEnabled) +STUB( + "U9QiJMy8SFA", + _ZN3sce2Np9CppWebApi7Matches2V123JoinMatchRequestFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_11AddedPlayerEEEEEPNS9_INS3_16JoinMatchRequestEEE) STUB("U9Wy5uJh0RA", sceCompositorPrivacyMaskPushArea) +STUB("U9YhBfp05rc", _ZTSPo) +STUB("U9Zx4zmjR20", mono_string_new_size) STUB("U9hX5ssnYZ4", sceNpPushRegisterExtendedDataFilter) +STUB("U9jTpf6wNco", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session7SessionEE12deepCopyFromERS7_) STUB("U9kPT4g1mFE", sceHmdInternalSetHmuPowerControl) +STUB( + "U9nFW---jQ0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEC1Ev) STUB("U9t5kJAWPnA", pthread_atfork) STUB("U9ueyEhSkF4", sceAgcDriverRegisterDefaultOwner) +STUB("U9v5wQRT5mw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEEppEv) +STUB("UA1vg0fkE8U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEEC2EPKS6_) STUB("UAA2-ZTmgJc", sceNpManagerIntGetActiveSigninState) +STUB( + "UAAvrt8x3m8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE5beginEv) +STUB( + "UADRrS1Q0NY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEC1EPS8_) STUB("UAGrjSrAF1Y", sceAppInstUtilGetInstallProgressInfoForMultiDisc) +STUB("UAH9GuC-H8w", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead23getLocalizedSessionNameEv) +STUB( + "UAHitqBL4KE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE8capacityEv) +STUB("UANaR984E9s", u_isxdigit_67) +STUB("UANoAYAWFSQ", _ZNK3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error10getMessageEv) +STUB("UAOlVYEHLvI", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_26ActivityFeedCondensedStoryEE9constructEPS3_RKS3_) +STUB( + "UASHaM8DSoI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEEaSERKSA_) +STUB( + "UAXp7EEhacE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEE11release_refEv) +STUB("UAbDJUsS9GU", _ZN7WebCore9HTMLNames25aria_activedescendantAttrE) +STUB("UAgDqGJpiXI", _ZN7WebCore9HTMLNames24onwebkitspeechchangeAttrE) +STUB("UAjUnJZRjxA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEEC1Ev) +STUB("UAjZYIjP-aI", _ZNK7WebCore16HTMLImageElement3altEv) +STUB( + "UAo9o7N4Akc", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "UAp7-fePjkE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE5clearEv) +STUB("UApk0SArJjc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEED2Ev) +STUB("UAwAfORouyI", _ZN3WTF6StringC1EPKDsj) +STUB( + "UAyw8DSXiWw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB("UB2YPQtgz08", uregex_setRegion64_67) +STUB( + "UB3EJXOv90c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("UB3xm2ZyJl8", _ZN7WebCore16VisibleSelectionC1ERKNS_15VisiblePositionEb) +STUB("UBAEZ53oqzQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEE11get_deleterEv) +STUB("UBEiRuWypeA", isobmf_decoder_clear) +STUB("UBHaPGMhw4g", _ZN7WebCore8SVGNames7rectTagE) +STUB("UBJl1sGRmkg", JVM_AllocateNewObject) +STUB( + "UBMWEVzR54k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEC2EPKS8_) STUB("UBO+tFHvcyE", sceMouseExtensionGetCursor) STUB("UBOvPwgs85s", sceMbusReenableBgmForShellUi) +STUB( + "UBP7l1ykSLE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEptEv) +STUB( + "UBQgfJsCrfk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE7popBackEv) +STUB("UBR0MFdPxT0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEEC2EPKS6_) +STUB( + "UBVa4a1qkdU", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB( + "UBVzgY1dDXI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "UBWLqLqj2d4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEEC1ERKSA_) +STUB( + "UBgE7C9yEpE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEE7get_refEv) +STUB("UBkUa6+shnc", _ZN7WebCore9HTMLNames13translateAttrE) +STUB("UBtYSUByi3M", NetCtlGetStateNative) +STUB("UBuNTluTWOM", _ZN3sce2Np9CppWebApi11UserProfile2V16AvatarD1Ev) STUB("UBv7FkVfzcQ", sceGnmGetResourceShaderGuid) +STUB( + "UBw3qphImXY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE7popBackEv) +STUB( + "UBwhx2KVKWY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE5beginEv) +STUB( + "UBxHaBNb71E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEEdeEv) +STUB("UC2vD95tn0k", + _ZN7WebCore15UserInputBridge20handleMouseMoveEventERKNS_18PlatformMouseEventENS_11InputSourceE) +STUB( + "UC4QfSOO530", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("UC703hx3DrM", WKPageSetMediaVolume) +STUB("UCCVQy0bw5A", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_17TitleCloudStorage2V19ConditionEEmmEi) +STUB("UCIWIg3MH7M", _ZN12video_parser10cVideoPath11GetFileNameEv) +STUB( + "UCP2iLoJU0w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEppEi) +STUB( + "UCQGoT5lcRw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE8copyFromERKS9_) +STUB("UCRtdzDT64U", _ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_19ProductInfoDetailedEE8max_sizeEv) +STUB( + "UCS3oE74tnE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEC1EPKS8_) +STUB( + "UCYbUgm38S8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEmmEi) +STUB( + "UCZnDlC+joI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE5clearEv) +STUB("UCbLOE6G4f4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEED2Ev) +STUB("UCjpTas5O3E", _FSnan) +STUB("UCkJEiS8Qb8", _ZN7WebCorelsERN3WTF10TextStreamENS_7LineCapE) +STUB( + "UCkMj9plCec", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE3endEv) +STUB( + "UCsP4SR3SLo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEED2Ev) +STUB( + "UCx2GlbLZN8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE5emptyEv) +STUB("UCy+pHHfiqY", WKOriginDataManagerGetOrigins) +STUB("UD-pIuhEuY0", _ZN7WebCore8SVGNames9switchTagE) +STUB("UD3voE5uO3k", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets9terminateEv) +STUB("UD6kA-ifx9c", ures_getLocaleByType_67) +STUB("UD7IFu7ML2U", FT_GlyphLoader_Add) +STUB("UDCI-WazohQ", _sigaction) +STUB("UDL-vqTXLdk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEC1ERS7_) +STUB( + "UDLYUwmanB0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEEaSERKS9_) +STUB("UDLzu3kE9Uk", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead15setJoinDisabledERKb) +STUB("UDQUp4iBK2A", _ZN9Inspector25DatabaseBackendDispatcherD0Ev) +STUB("UDYkHFjCgi0", + _ZNK7WebCore9CookieJar29cookieRequestHeaderFieldValueERNS_8DocumentERKN3WTF3URLE) +STUB("UDdJrxm79yU", _ZN7WebCore8SVGNames16fill_opacityAttrE) +STUB( + "UDhyoWgI8Uw", + _ZN7WebCore26HTMLTextFormControlElement17setSelectionRangeEiiNS_27TextFieldSelectionDirectionENS_19SelectionRevealModeERKNS_23AXTextStateChangeIntentE) +STUB("UDjh4MpTibc", WKTextCheckerChangeSpellingToWord) +STUB("UDjtBPqU1og", WKContextConfigurationSetFullySynchronousModeIsAllowedForTesting) +STUB("UDkcuEvZbRQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEcvbEv) +STUB("UDkeOtF5o-k", gp_set_functions) +STUB("UDqz+xeAyyg", mono_aot_Sce_PlayStation_Orbis_Speechplt) +STUB( + "UDrvvmPh4W8", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEiRNS2_10LibContextEPT_m) +STUB("UDsn+mGEUFM", mono_shared_hashtable_foreach) +STUB("UDt2fvipahE", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE5clearEv) STUB("UDx67PTzB20", sceUserServiceGetIPDRight) +STUB("UE0xLHFNUYQ", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors20missingElementsIsSetEv) +STUB("UE3TL2jArKg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEC1ERKS7_) +STUB("UE3oF6rx8nk", _ZN7WebCore14LoaderStrategyD2Ev) STUB("UE7jmEIbuzY", sceValidationGetVersion) +STUB("UE8HvkH-z1c", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEEC2ERS6_) +STUB("UE9FnlHY2ts", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119BandwidthPropertiesD2Ev) +STUB("UEBk9iGqhPo", WKPreferencesSetAccelerated2DCanvasEnabled) STUB("UEJmRQ6PkSo", sceNpSessionSignalingCreateJoinActivate) +STUB("UEUyIWuf7t0", YGOverflowToString) +STUB( + "UEWbjFFpj1o", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData42hasxPsnTcsComparedLastUpdatedUserAccountIdEv) +STUB("UEaa-LdFZmw", _ZN6icu_678TimeZone14getCanonicalIDERKNS_13UnicodeStringERS1_RaR10UErrorCode) +STUB("UEbw3BTkqsc", _ZN3JSC4Yarr11YarrPatternC1ERKN3WTF6StringENS_11RegExpFlagsERNS0_9ErrorCodeEPv) +STUB("UEc2r2t5mEU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEE3getEv) +STUB("UEiVB1s+wBw", eglReleaseTexImage) +STUB( + "UEjqXMucYPI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEixEm) +STUB("UEkNI4VG8t0", getCommInfoListHead) +STUB("UEku+YMbPR0", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V13Mmr17perFranchiseIsSetEv) STUB("UEnAHwUevzs", _sceLibcPosixMemalign) +STUB("UEnSKAL48eA", SSL_use_certificate_ASN1) +STUB( + "UEpdxzuPeCc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEED2Ev) +STUB("UEvmspb0Kvs", twom100) +STUB( + "UF-vqLRncWM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEC1EPS8_) +STUB( + "UF4ll1HEJbs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEE5resetEPS8_) STUB("UF6H6+kjyQs", sceNetCtlCheckCallbackForLibIpcInt) +STUB( + "UFDCCOCTH-Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE8copyFromERKS9_) STUB("UFDoqv4XXC0", sceVideoOutSysUpdateDisplayParameter) +STUB("UFFM-EaN9DY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEEC1ERKS7_) +STUB("UFKbZ7T8IB4", _ZNK9Inspector15ScriptArguments12globalObjectEv) +STUB("UFKprwxNhT8", wait4) +STUB("UFKtijmAhkM", _ZN3WTF11OSAllocator18releaseDecommittedEPvm) STUB("UFLN-KNhzX0", sceSrcUtilityGetPriority) +STUB("UFNA9KplGvA", throw_exception_p) +STUB("UFO5kzp58nQ", _ZN3sce7Toolkit2NP2V26Friend7Request22DisplayBlockUserDialogD2Ev) +STUB( + "UFPHNHpKpbM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "UFQCvwDnbZs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEE3getEv) +STUB( + "UFSD78JiC9Y", + _ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForRead13setSpectatorsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_22PlayerSessionSpectatorEEEEE) +STUB("UFW1p-twkz0", mono_metadata_string_heap) +STUB("UFWP11H6EXk", ucnv_getToUCallBack) +STUB("UFb4eVjw-Sw", glBindBufferBase) STUB("UFcyYDf+e88", sceImeDialogForTestFunction) +STUB("UFeYGCJ5zs8", _ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse10setAboutMeEPKc) +STUB("UFiQk867m7o", _ZNK7WebCore11MediaPlayer6clientEv) +STUB( + "UFjpJ7RmoeI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEEdeEv) +STUB( + "UFmXGXsTGpE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE5beginEv) +STUB( + "UFmiyW8-aLw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEdeEv) STUB("UFonL7xopFM", sceCameraAudioClose) +STUB("UFpIkohgGKI", + _ZN7WebCore20DecodeOrderSampleMap37findSyncSamplePriorToPresentationTimeERKN3WTF9MediaTimeES4_) +STUB( + "UFrPUCW5rOQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEE11release_refEv) +STUB("UFsKD1fd1-w", _ZTISt8messagesIcE) +STUB("UFwDzfdUExo", _ZNK7WebCore19BlurFilterOperation5cloneEv) +STUB("UFxnk35JEsk", _ZN3sce7Toolkit2NP18UserProfileRequestC2Ev) +STUB("UFzKxNIuPO8", _ZN7WebCore15HTTPHeaderFieldaSERKS0_) +STUB( + "UG+bmbgSkxQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEE11get_deleterEv) +STUB("UG-C19utRbQ", _ZTVN9Inspector31ConsoleBackendDispatcherHandlerE) +STUB( + "UG1pDqHD2oI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEED1Ev) +STUB( + "UG4F+fkQfAA", + _ZN3JSC26evaluateWithScopeExtensionEPNS_9ExecStateERKNS_10SourceCodeEPNS_8JSObjectERN3WTF8NakedPtrINS_9ExceptionEEE) +STUB("UG6HJeH5GNI", _ZTSSt11regex_error) STUB("UG9I-iHI-ME", sceShellCoreUtilFormatExternalHdd) +STUB( + "UGDIRlW+uuI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEE3getEv) +STUB( + "UGEyMKm8N3A", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB( + "UGNndNKnsUo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEEC1Ev) STUB("UGTldPVEdB4", sceSaveDataDebugRemoveSaveDataRoot) +STUB( + "UGVD4wGVnQs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE8pushBackERKS8_) +STUB( + "UGYh+3N0mYo", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) STUB("UGcXquhVYrY", sceNpSessionSignalingGetGroupFromSessionId) +STUB("UGdSsj17Fm8", _ZN3JSC18PropertyDescriptor13setEnumerableEb) +STUB("UGittJii7dI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEED1Ev) +STUB( + "UGjBIPq+nXk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEC2Ev) +STUB("UGktEjxw9fI", mono_aot_System_Windowsunwind_info) +STUB("UGqx8TsyDAk", mono_path_canonicalize) +STUB("UGt10xOFSuk", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE8capacityEv) +STUB( + "UGth-fg3L9w", + _ZNK7WebCore10PluginData32supportsWebVisibleMimeTypeForURLERKN3WTF6StringENS0_18AllowedPluginTypesERKNS_3URLE) +STUB( + "UGwdeZ4WVlI", + _ZN3sce2Np9CppWebApi14SessionManager2V125RequestGameSessionFactory7destroyEPNS3_18RequestGameSessionE) +STUB( + "UH+GBgg2-IU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE8copyFromERKS9_) +STUB("UH0Vv05G2ac", _ZN3sce2Np9CppWebApi7Matches2V116RequestMatchTeamC1EPNS1_6Common10LibContextE) +STUB("UH3MitUBp-Q", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEEplEm) +STUB( + "UH5a6lcN4yI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE5clearEv) +STUB("UHABadEpXc0", _ZNK7WebCore3URL14fileSystemPathEv) STUB("UHDiSFDxNao", sceGnmSqttFini) STUB("UHFOgVNz0kk", sceAudio3dPortCreate) +STUB("UHKWuoeyuGw", Java_sun_awt_GnmUtils_waitEqueue) +STUB("UHNtAOU4gKA", _ZTVN12video_parser14cVideoOperatorE) +STUB("UHPYA2oZS2A", _ZN7WebCore13HitTestResultC2ERKS0_) +STUB( + "UHQvm4vrpgo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE5eraseENS2_8IteratorIS9_EERSC_) +STUB("UHQxE3HhTXA", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEEptEv) +STUB("UHRckAFcVCo", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEEC1EPKS4_) +STUB( + "UHSRukqITgA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEmmEi) +STUB("UHWSVvrtR7I", bemp2sys_memmanager_set) +STUB( + "UHZKOTg5MWQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEixEm) +STUB("UHbf2fZIrxk", _ZN3WTF22isMainThreadOrGCThreadEv) +STUB("UHfYYBDCtWA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEE3getEv) +STUB("UHj0GDTA2CU", _ZN3sce2np18MemoryStreamReaderC1EPKvm) +STUB( + "UHmxsDFtIQw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEC1EPS8_) +STUB("UHpjOFBvVvo", rgctx_fetch_trampoline_rgctx_17) +STUB("UHtck31QwGc", mono_aot_System_Coreunbox_trampolines_end) +STUB( + "UHuVwL2JW+4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEEdeEv) +STUB( + "UHvjptl5Zcs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE7popBackEv) +STUB("UHw5Wc6MsXE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEEaSERS7_) +STUB("UHyy-91bj-g", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification16NewInGameMessageEEC1Ev) STUB("UI5t6Rx6s5I", sceNpLookupNetConvertJidToNpId) +STUB("UI66TMKWOpQ", _ZN4IPMI4impl10ServerImpl18searchSessionByPidEjPPNS0_11SessionImplE) +STUB( + "UI7XmkgiSj0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEEC2Ev) +STUB("UIAqKbVG7ek", _ZN7WebCore21DiagnosticLoggingKeys27networkCacheReuseFailureKeyEv) +STUB( + "UIFhNpPP-nI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE3endEv) +STUB( + "UIHtWMjvCDY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEaSERKS9_) +STUB("UILM6wa-UK8", ures_getVersionNumberInternal_67) +STUB( + "UIPQfmmjdl0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE5emptyEv) +STUB( + "UIPTgJxCeEs", + _ZN7WebCore14SocketProvider24createSocketStreamHandleERKN3WTF3URLERNS_24SocketStreamHandleClientEN3PAL9SessionIDERKNS1_6StringEPKNS_22StorageSessionProviderE) +STUB("UISQ-dQzw28", arc4random) +STUB("UIThXvXuJPA", _ZN7WebCore9IPAddress10getSinAddrEv) +STUB("UIU5m-5O68c", ucnv_setToUCallBack) +STUB( + "UIWKlcc9Uxo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEEC2ERKSA_) +STUB( + "UIhQQhg7rrE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEEC1ERSA_) +STUB( + "UIoJi+a04hI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE5clearEv) +STUB( + "UIoePjBWZWA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE6resizeEj) +STUB("UIrMxV07mL0", _ZN3sce2npleERK10SceRtcTickRKNS0_4TimeE) +STUB( + "UIuxelot96Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEEC1Ev) +STUB("UIyaYRFejv0", _ZN2sh14ShaderVariableC1ERKS0_) STUB("UJ+Z7Q+4ck0", sceNetCtlRegisterCallback) STUB("UJ8H+7kVQUE", sceNpWebApiGetConnectionStats) +STUB( + "UJBq-jnPr2Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEixEm) STUB("UJCnhvq5YBs", sceKernelGetACInfoAllForCoredump) +STUB( + "UJD-5bQF6MQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "UJDDhjnVaN4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEptEv) +STUB("UJGUxEnLIMg", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_isSecondaryVideoAsyncStream) +STUB("UJLz0SzmXS8", _ZN3sce7Toolkit2NP2V28Commerce7Request13GetContainers17DEFAULT_PAGE_SIZEE) +STUB( + "UJMty5dIMBM", + _ZN3sce2Np9CppWebApi11Matchmaking2V112CauseFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_5CauseEEE) +STUB("UJQisAyEvSU", AES_ecb_encrypt) +STUB( + "UJQn1E2hOzI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("UJVOusdtHuU", WKBundleRemoveUserScript) +STUB("UJXHm7AkPK8", WKKeyboardEventMake) +STUB("UJY5koADQxk", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForReadC1EPNS1_6Common10LibContextE) +STUB( + "UJag4BLzCRo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEC2EPNS2_10LibContextE) +STUB("UJi6cABlLww", _Lseek) +STUB( + "UJj5YqPqKqI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE8copyFromERKS9_) +STUB("UJmtOZ+Msg0", _ZN3sce7Toolkit2NP2V28Presence16PlatformPresence18MAX_SIZE_GAME_DATAE) +STUB("UJnaiUeCe9Q", _ZN3WTF8JSONImpl5ValueC1Eb) +STUB("UJpKSy8JPuQ", mono_free_verify_list) +STUB( + "UJpX6FbM834", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE3endEv) +STUB("UJrQCyYpyic", fchflags) STUB("UJvFjRAnQ2k", sceVorbisDecClear) STUB("UJwNuMBcUAk", sceGnmSetGsShader) +STUB( + "UJwWj81EOzs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEE5resetEPS9_) +STUB( + "UK1fGCYDjQc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE7popBackEv) STUB("UK2Tl2DWUns", sceKernelClose) +STUB( + "UK3vHMLAEU4", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB( + "UKGZ0rXzeEg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEED1Ev) +STUB("UKIFSGByp1Y", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15PlayedWithStoryEE10deallocateEPS3_m) +STUB("UKKtpWz--YA", _ZN3WTF10AtomString6numberEi) +STUB( + "UKNNIjqW-1I", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEE3getEv) +STUB("UKSkPc4YLt8", glClientWaitSync) +STUB( + "UKYE8NLmN2o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEC2EPKS8_) +STUB( + "UKbGLvkdiQM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEC1Ev) +STUB("UKcMPS5+rbs", _ZN7WebCore9HTMLNames7slotTagE) +STUB("UKeNl8mVbsc", cairo_surface_get_device_scale) +STUB( + "UKf6nfhYKV4", + _ZN3sce2Np9CppWebApi12Leaderboards2V122GetRankingResponseBody10setEntriesERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_5EntryEEEEE) +STUB( + "UKiZ94l-k7k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEE5resetEPS6_) +STUB("UKiyOkgxtWk", _ZN3sce7Toolkit2NP15AppSTLAllocatorI16SceNpTusVariableE7destroyEPS3_) +STUB( + "UKlRPNs9CcY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEEaSERKSA_) +STUB( + "UKok2P7OARY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEEcvbEv) +STUB( + "UKrb5xBvlZo", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V116PlayStyleFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_9PlayStyleEEE) +STUB( + "UKrpcCx+Bms", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEC1Ev) +STUB( + "UL+mT+gvjxQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEaSERKS8_) +STUB( + "UL2jvO4BW9s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE5clearEv) +STUB("UL2t5B-y5ck", _ZN7WebCore9HTMLNames9widthAttrE) STUB("UL4Fviw+IAM", sceHttp2SetPreSendCallback) +STUB("UL5OW9HbCwA", _ZN3sce7Toolkit2NP2V26Friend12Notification16FriendlistUpdateaSERKS5_) +STUB("UL6Z5aGtmBw", _ZTVN9Inspector22RemoteInspectionTargetE) +STUB("UL7nmmoYEsU", _ZN7WebCore5Cairo11ShadowStateC2ERKNS_20GraphicsContextStateE) +STUB("UL7w-kUR+IA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEaSERKS9_) +STUB("UL9tFZJ4ajg", uprv_decNumberOr_67) +STUB("ULFfhAwkrUE", mono_aot_Sce_Vsh_Np_Snsplt_end) +STUB( + "ULGP4zu6khE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEC2Ev) +STUB( + "ULHkmOxQ0ss", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("ULNHQXciJ3s", hb_face_destroy) +STUB("ULOVCAVPJE4", CERT_STORE_findIdentityCertChainFirst) +STUB("ULXYAELxNqw", EVP_PKEY_decrypt_init) +STUB("ULdUj9IpWDs", _ZN3sce2Np9CppWebApi6Common8IteratorIlEppEi) +STUB( + "ULgYI+r7jS8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEE11get_deleterEv) +STUB("ULloaIOrzP4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEEdeEv) +STUB("ULmQDELpYyA", ubidi_getClass) +STUB( + "ULoGWxU3SaI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEEC1Ev) +STUB( + "ULs3neyks+c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE10setContextEPNS2_10LibContextE) +STUB( + "ULsa9kjcs+w", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE6isBusyEv) +STUB( + "ULu2QmTi1Xo", + _ZN3sce7Toolkit2NP3TSS9Interface15getDataFromSlotEPNS1_9Utilities6FutureINS1_7TssDataEEERKNS1_14TssInputParamsEb) STUB("ULvXMDz56po", sceAmprCommandBufferClearBuffer) +STUB("ULvYg8y1Gfc", + _ZN9Inspector17BackendDispatcher12CallbackBaseC1EON3WTF3RefIS0_NS2_13DumbPtrTraitsIS0_EEEEl) +STUB( + "ULwF+cwQEfk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) STUB("ULxbwqiYYuU", sceCameraGetProductInfo) +STUB("UM57yzsO5MY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEEC1Ev) +STUB("UM5gRvPXUM8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEEdeEv) +STUB( + "UM5sJwwMUuI", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitations9terminateEv) +STUB("UM6KCdqJmqs", tt_cmap14_class_rec) +STUB("UM6rGQxnEMg", _ZNKSt8messagesIwE6do_getEiiiRKSbIwSt11char_traitsIwESaIwEE) STUB("UM8rn9hRWrY", sceAgcDriverTmpInitIdhs) STUB("UM9b9NunSrE", sceAgcDriverSetWorkloadsActive) +STUB("UMHYlgjFLUw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE4sizeEv) STUB("UMIlrOlGNQU", sceSystemServiceGetParentSocket) +STUB("UMYP2dqDD2o", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEEdeEv) +STUB( + "UMaaFHW+an4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEplEm) +STUB( + "UMe3A33bsjA", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer14getserviceNameEv) +STUB("UMeDmpCpF40", glGetUniformLocation) +STUB("UMkUmoECbCc", _ZN7WebCore37CrossOriginAccessControlCheckDisablerD0Ev) STUB("UMlVCy7RX1s", sceNetConfigDelDefaultRoute6) STUB("UMm6gapfQN4", sceFsWsFetchFileMetadata) +STUB("UMp9i3cIZw0", _ZTv0_n24_N25MmsFileUpdaterFsOperationD1Ev) STUB("UMpxor4AlKQ", sceSaveDataGetFormat) +STUB( + "UMq9bnHon+k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEmmEv) +STUB("UMqlHiqPQl0", mono_image_open_full) +STUB("UMskCYMRcXg", mspace_check_memory_bounds) +STUB("UMsvUfCKcrk", _ZN3WTF12AtomicString6numberEy) +STUB( + "UMvj1nNOqZc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEED1Ev) +STUB( + "UMwQCbIM1Nc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEEC1Ev) STUB("UMwpmVfcJpU", _sceLibcInitialize) +STUB("UN1A7FriZLY", mono_btls_x509_lookup_get_type) +STUB( + "UNCSO3DTP2g", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser12setaccountIdEPKc) +STUB( + "UNKRtjBCvUE", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser10initializeEPNS1_6Common10LibContextEPKcSA_) STUB("UNMEa+5lrUA", sceDeviceServiceQueryDeviceInfo_) +STUB("UNOrI4X5kz0", + _ZN7WebCore21PageOverlayController18installPageOverlayERNS_11PageOverlayENS1_8FadeModeE) STUB("UNREoPNQFas", sceAppInstUtilAppUnInstallAddcont) +STUB("UNS2V4S097M", syslog) +STUB( + "UNVwl6m0+zE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEptEv) +STUB("UNWRtMKvBp4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEEC2ERKS9_) +STUB("UNYN4opWosk", _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse9setZoneIdEPKc) +STUB("UNaYJVOJwoY", _ZN3WTF24charactersToUInt64StrictEPKDsmPbi) +STUB("UNaphEVAupM", _ZN7WebCore21JSRemoteDOMWindowBase4infoEv) +STUB("UNmP8qXsa6s", FTC_Manager_Done) +STUB("UNnBsfjaOqY", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request14PostPlayedWithD2Ev) +STUB( + "UNpGWBoG-UQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEED1Ev) +STUB( + "UNtuE7dbCVU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEC1EPS8_) +STUB( + "UNw3OwLpAc8", + _ZN3sce2Np9CppWebApi14SessionManager2V135RequestJoinGameSessionPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_28RequestJoinGameSessionPlayerEEE) +STUB( + "UO+RkMf8hyM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEmmEi) +STUB("UO2a3+5CCCs", CERT_VerifyValidityTimeWithConf) +STUB( + "UO2y-LHMnhM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE5beginEv) +STUB( + "UO45-pyhR0k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEC2EPKS8_) +STUB("UOAJwlM34N4", _ZN7WebCore4Page23invalidateStylesForLinkEj) STUB("UODyg3r3Uf8", sceCesRefersUcsProfileIso8859_16) +STUB( + "UOFL1r9wKRw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("UOJeGCvcnKc", mono_jit_set_aot_mode) +STUB("UOL9uOF61w8", umutablecptrie_open_67) +STUB("UOMssWsF9UU", WKGeolocationPositionCreate_b) +STUB("UOS1WFArdqY", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE3endEv) +STUB("UOSoUZBYVB0", Java_java_util_zip_Deflater_deflateBytes) +STUB("UOU5c7dyzPM", _ZN3sce7Toolkit2NP15AppSTLAllocatorI16SceNpTusVariableED2Ev) +STUB("UOVPAHM8ZHw", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12BlockedUsersEEC1Ev) +STUB( + "UOVfFCVMOKQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE8capacityEv) +STUB("UOeQZuXhzCQ", _ZN3sce2Np9CppWebApi13InGameCatalog2V55Error11unsetReasonEv) +STUB( + "UOhqdN6P1uE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEEaSERSA_) +STUB( + "UOjbrvBraWg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEC1ERS7_) STUB("UOjiprYwVNw", sceTextToSpeech2Initialize) +STUB("UOnc-ErReHc", ucsdet_getDetectableCharsets_67) +STUB("UOpVe4rNPuI", _ZN7WebCore13QualifiedNameC1ERKN3WTF12AtomicStringES4_S4_) +STUB("UOqTPAObjdU", _ZNK3sce2Np9CppWebApi7Matches2V120ReportResultsRequest18getMatchStatisticsEv) +STUB( + "UOr2EUz8NOA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE21intrusive_ptr_add_refEPS9_) +STUB("UOz27kgch8k", __atomic_exchange_8) +STUB( + "UP+uj7-Eimo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE8capacityEv) +STUB("UP2vYQTFjzk", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils12Notification15UserStateChangeEED2Ev) +STUB( + "UPBOgEcUnvA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE8copyFromERKS9_) STUB("UPDgXiV1Zp0", sceUserServiceGetPbtcTuesdayDuration) +STUB( + "UPGxqX8fHUg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEdeEv) +STUB( + "UPHoxq5jfbE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE5beginEv) +STUB("UPIGgqFNcgw", _ZN3sce2Np9CppWebApi11UserProfile2V15Error14setReferenceIdEPKc) +STUB( + "UPJZ+lj6lpU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEplEm) STUB("UPPh+Ge66IY", sceNpUniversalDataSystemIntRecordArraySetArray) +STUB( + "UPQvIabu1HM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "UPUF7sHc60k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "UPVIV02XBtc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEC1EPNS2_10LibContextE) +STUB("UPVUFxCy6sY", ucnv_fromUnicode_59) STUB("UPZWCH8qTM4", sceVideoOutCursorEnable) +STUB( + "UPZgNcxZGIs", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13integer2IsSetEv) +STUB("UPgSvUW-ymc", _ZN7WebCore9HTMLNames12multipleAttrE) +STUB("UPhOPaK4LF0", _ZN3sce2Np9CppWebApi6Common6VectorIlEixEm) +STUB( + "UPhP7g1EWsI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE6finishEv) +STUB("UPiqgAaHdtU", JSValueIsInstanceOfConstructor) +STUB("UPjyTBi78ow", + _ZNK7WebCore4Node18computeEditabilityENS0_22UserSelectAllTreatmentENS0_17ShouldUpdateStyleE) +STUB( + "UPqq2IAhhzc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE10setContextEPNS2_10LibContextE) +STUB("UPr0g-dqMUw", uloc_getDisplayLanguage) +STUB( + "UPtKaa2JMec", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEmmEi) STUB("UQ+3Qu7v3cA", sceSslUnloadCert) +STUB("UQ5xmSJIDds", _ZNK3WTF8JSONImpl5Value8asDoubleERd) +STUB("UQ989EpPn8A", _ZN7WebCore12SettingsBase48defaultMediaContentTypesRequiringHardwareSupportEv) +STUB("UQEh72v4LI0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEC1ERKS7_) STUB("UQGTw4xRlcM", sceAgcDcbSetUcRegistersIndirectGetSize) +STUB( + "UQLOia3yTW0", + _ZN9Inspector24RuntimeBackendDispatcherC2ERNS_17BackendDispatcherEPNS_31RuntimeBackendDispatcherHandlerE) +STUB("UQLpZuNkOj8", _ZN3sce7Toolkit2NP2V27Session14InvitationData13MAX_DATA_SIZEE) +STUB("UQPicLg8Sx8", _ZNSt9basic_iosIcSt11char_traitsIcEE4initEPSt15basic_streambufIcS1_Eb) +STUB("UQSdfLL7qxs", _ZNK3sce3Xml3Dom4Node13getFirstChildEv) +STUB("UQSpLQBdW-g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEED1Ev) STUB("UQTSykySQ40", sceFsUmountGamePkg) +STUB("UQTlJjhosWw", __asan_get_report_pc) +STUB("UQUNLQP0SSU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEEppEi) +STUB("UQXwSt1e+Fw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEED1Ev) +STUB("UQZhMdb2bOQ", WKPreferencesGetFetchAPIKeepAliveEnabled) +STUB( + "UQe3A6KnmVs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEEC2EPS5_PFvS7_EPNS2_10LibContextE) +STUB( + "UQf6aqQ2m9E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("UQivQ0-tX1w", JVM_PrintStackTrace) +STUB( + "UQkO5ZdQHZY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEED2Ev) +STUB("UQm8o0lXdpk", _ZN3sce7Toolkit2NP21ReceiveMessageRequestC1Ev) +STUB( + "UQme-KNMMB4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEC2EPS8_) +STUB("UQnItjOX5D0", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_19ProductInfoDetailedEEC2Ev) +STUB("UQnpvrVrnBw", mono_trace_set_level_string) STUB("UQpexYwe6as", sceUserServiceCreateUser) +STUB( + "UQshJCDUFg8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("UQvAI+-XHVs", mono_conc_hashtable_new) +STUB("UQzEKNbOEzI", _ZThn16_N9Inspector14InspectorAgentD0Ev) +STUB( + "UQzg1PX27Q8", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeaders24hasXPsnAtomicOperationIdEv) STUB("UR0ttTtAHX8", ScePsmMonoGcSetHeapSizeLimit) +STUB( + "UR1fvBzmIbU", + _ZN7WebCore4Page13rangeOfStringERKN3WTF6StringERKNS1_8OptionalINS_11SimpleRangeEEENS1_9OptionSetINS_14FindOptionFlagEEE) +STUB( + "UR2jculFawU", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditions9setslotIdEi) +STUB("UR30bUSo1dc", _ZN3WTF8JSONImpl5ValueC2Ev) +STUB("UR3CUxyxH48", mono_aot_ClassLibrary1plt_end) +STUB( + "UR3jVRY-QkE", + _ZN3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsSearchRequestBody8fromJsonERKNS_4Json5ValueE) +STUB( + "UR3vlyUT2kY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "UR6RHkQv3Zw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEED2Ev) STUB("URDgJcXhQOs", sceGnmInsertThreadTraceMarker) +STUB("URHY4Lp4CXU", _ZN3JSC2VM16weakMapSpaceSlowEv) +STUB("URNifsiKAk0", _ZN7WebCore10ScrollView18setFixedLayoutSizeERKNS_7IntSizeE) +STUB( + "URSfNwhz7o4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE5clearEv) +STUB("URUBvWtDFRU", WKBundleFrameCreateFrameHandle) +STUB("URX9azN77dU", _ZN3WTF24calculateLocalTimeOffsetEdNS_8TimeTypeE) +STUB("URX9kwFwkis", _ZN3WTF6StringC1ENS_12ASCIILiteralE) +STUB( + "URZ6Sn+EOD0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEmmEv) +STUB( + "URZOfbC4fzU", + _ZN3sce2Np9CppWebApi11UserProfile2V111PresenceApi28ParameterToGetBasicPresences10initializeEPNS1_6Common10LibContextEPKc) +STUB( + "URd2H7tRw8U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEED2Ev) +STUB("UReOIxlkMjo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEED1Ev) +STUB( + "URfYa6RYbBc", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("URfp+VPX-dY", _ZN8meta_gen13TiffRetriever20ProcessIfdOffsetDataEPhmPm) +STUB("URps7Oe7uZs", mono_aot_Sce_Vsh_Np_Tmdbplt) +STUB( + "URv4xkhHd2s", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEC2EPS8_) +STUB( + "URxENN44a6k", + _ZN7WebCore8Document56hasRequestedPageSpecificStorageAccessWithUserInteractionERKNS_17RegistrableDomainE) +STUB( + "US0idG1kCx0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEED1Ev) +STUB("US66MHNrjvs", fuse_fs_link) +STUB("US6tSm6hLtc", mono_class_get_property_token) +STUB("USAYguDxoTk", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119ChildActivityStatusEEppEv) +STUB( + "USAt1AFsnuM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEEC2ERKSA_) +STUB( + "USBUK82xUF0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE5beginEv) +STUB("USHNwEi-H9g", _ZN7WebCore11DisplayList8RecorderD2Ev) +STUB("USLhWp7sZoU", + _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewl) +STUB("USSPza+s5-I", _ZN7WebCore11JSDOMWindow15showModalDialogERN3JSC9ExecStateE) +STUB("USUuOd-dcYQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead16getMaxSpectatorsEv) +STUB("USVpRGc0dlA", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIfED2Ev) +STUB( + "USaUBdkrmOw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEeqERKS9_) +STUB( + "USbNAXIxjdg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEE11get_deleterEv) +STUB("UScMQLt-6I0", _ZN3sce2Np9CppWebApi7Matches2V121ResponsePlayerResults7setRankERKi) +STUB( + "USdahjl+U2w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "USeTpe5Y-Us", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEC2EPS8_) +STUB("USh443unLZ0", _ZN7WebCore19BlurFilterOperation5blendEPKNS_15FilterOperationEdb) +STUB("USiOybPUJ3c", mono_aot_Sce_Vsh_ShareServerPostWrapperjit_code_end) +STUB("USjT9W-Xdt0", mono_aot_Sce_Vsh_ShellUIUtilWrapperunbox_trampolines_end) +STUB("USu1bXHyG30", ubidi_reorderLogical_67) +STUB( + "USw7YPN27gE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEeqERKS9_) +STUB("USxp2eW0eLE", + _ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetailC1EPNS1_6Common10LibContextE) +STUB( + "USxx9zJQSOk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE21intrusive_ptr_add_refEPS9_) +STUB("UT1TIW2OXj8", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V15Error10getMessageEv) +STUB( + "UT2CzVFEw3s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "UT3CPxVppOo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEmmEv) +STUB("UT66OVmwC9s", _ZN3sce7Toolkit2NP2V211SharedMedia9BroadcastC1Ev) STUB("UT8+lb5fypc", sceUserServiceSetParentalDvd) +STUB( + "UT8S9fPtNXk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEC1EPS6_PNS2_10LibContextE) +STUB("UT8x3GgcrzQ", WKBundlePageIsEditingCommandEnabled) +STUB( + "UTFyrqsfwsk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEEcvbEv) +STUB("UTR6wAkajxk", __sys_netabort) +STUB( + "UTWGpsRdUNk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE7reserveEi) +STUB("UTXH2LMXej8", _ZN7WebCore27PlatformMediaSessionManager13sharedManagerEv) STUB("UTXzJbWhhTE", scePthreadAttrSetstacksize) +STUB( + "UTcubXpGZzc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEneERKS9_) +STUB("UTgM78YcROM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEC2Ev) +STUB( + "UTgqzannDso", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE17getNpWebApi2ReqIdEv) +STUB( + "UTpko62ZiLk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEE11release_refEv) STUB("UTqrWB+1+SU", sceHmdInternalBindDeviceWithUserId) +STUB( + "UTrGi4UecsI", + _ZN3sce7Toolkit2NP8Matching9Interface11joinSessionEPKNS1_18JoinSessionRequestEPNS1_9Utilities6FutureINS1_18SessionInformationEEEb) +STUB("UTrpOVLcoOA", vsscanf) +STUB("UTrzzCUsH0w", + _ZNK7WebCore18ImageBufferBackend12getImageDataENS_22AlphaPremultiplicationERKNS_7IntRectEPv) +STUB("UTs3cCoXRz8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE7popBackEv) +STUB("UTsKij05zBY", _ZNK15AbstractStorage14YoutubeService14GetServiceTypeEv) +STUB( + "UTubvPzv1ac", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEC2EPNS2_10LibContextE) +STUB("UTumVjeIQtg", FT_Done_Memory) +STUB( + "UTwSIxgeLaQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEC2EPS8_) STUB("UU-WJhJQWxQ", sceHttpCacheTerm) +STUB("UU0LS4-qsH4", _ZN3WTF16AtomicStringImpl3addEPNS_10StringImplEjj) +STUB("UU1v09JlHS0", rgctx_fetch_trampoline_rgctx_16) +STUB("UU20U-U-Nmk", _ZN7WebCore20UserGestureIndicator29processingUserGestureForMediaEv) +STUB("UU8OQd42DFk", _ZN3JSC18logTotalPhaseTimesEv) +STUB( + "UUEm4C-mxwc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEEC1Ev) +STUB("UUFTds0D4f8", ucln_lib_cleanup_67) +STUB("UUGJ8eCwfNo", _ZNK7WebCore11JSDOMWindow6windowERN3JSC14JSGlobalObjectE) STUB("UUQSk5-w9gU", sceDepth2Submit) STUB("UUXDikzOtWg", sceCesUcsProfileInitGb18030_2005) +STUB( + "UUYa92vdk50", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEED2Ev) +STUB( + "UUZqtUBNnXw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE8pushBackERKS8_) +STUB("UUdW7rv54G0", mono_aot_Sce_Vsh_DbPreparationWrappermethod_addresses) STUB("UUhI+IUMrcE", sceNpAppInfoIntCheckAvailability) +STUB("UUikhajvVqo", psaux_module_class) +STUB("UUjwkH78wDI", + _ZN7WebCore11DOMRectListC1ERKN3WTF6VectorINS_9FloatRectELm0ENS1_15CrashOnOverflowELm16EEE) STUB("UUriaXy7G90", sceFiosArchiveGetMountBufferSizeSync) +STUB("UUv-IJ5J3QY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEEC2Ev) STUB("UUwnVHwsEzc", sceVnaCancelDownloadTts) +STUB("UUydNdNg5Aw", _ZN3sce3Xml6StringC2Ev) +STUB("UUzJQbV8i9k", _ZN7WebCore11JSDOMMatrix6s_infoE) +STUB( + "UV-N6y2GYp0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEC1EPS8_) +STUB("UV4m0bznVtU", posix_spawnattr_setflags) +STUB("UV79SQ4WYuQ", AnnotateRWLockDestroy) +STUB( + "UV9BshxzdAM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEE11get_deleterEv) +STUB("UV9J1wFYxE8", _ZN7WebCore12ChromeClientD1Ev) +STUB( + "UVApqtIiB3g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("UVBkipSD2sw", _ZNK3sce4Json6String4sizeEv) STUB("UVCMLmS-Eas", sceVrTracker2SetCoordinateSystem) +STUB("UVDWssRNEPM", _Atomic_fetch_and_1) +STUB( + "UVE1ptJAj-c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEaSERKS9_) +STUB("UVEJfYtxiME", _ZNK7WebCore9ImageData4dataEv) +STUB("UVHQ5QOlN1s", _ZN3sce7Toolkit2NP15AppSTLAllocatorIcEeqERKS3_) +STUB("UVLmT9lzRYA", _ZN3sce2npeqERKNS0_4TimeES3_) +STUB( + "UVSTiiJfLjk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEC2EPS8_) +STUB("UVTzFxQLxRE", _ZN3sce7Toolkit2NP15AppSTLAllocatorI16SceNpTusVariableEeqERKS4_) +STUB("UVXRxttVOOw", _ZN7WebCore8Document15createElementNSERKN3WTF12AtomicStringERKNS1_6StringE) +STUB( + "UVYoDD+tCKY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE7reserveEi) +STUB("UVbUxKZBdk4", _ZN3sce7Toolkit2NP2V210Tournament14RegisteredUseraSERKS4_) +STUB("UVft3+rc06o", _ZTSN10__cxxabiv119__pointer_type_infoE) +STUB( + "UVfxIEi3teY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEaSERKS9_) +STUB("UVg1afOZLqs", _ZN7WebCore9HTMLNames11onerrorAttrE) STUB("UVj7kM-SZzY", sceFiosStatisticsGet) +STUB("UVmXjh+wnUo", _ZN12video_parser5vpcom12UTF8stoSJISsEPKhjPhPj) +STUB("UVo9HdqYP2c", WKPreferencesSetAVFoundationEnabled) +STUB("UVsQe9e0Wo0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEixEm) +STUB("UVtHtHLSDN8", il2cpp_class_is_assignable_from) +STUB( + "UVu6w+J1FEY", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("UW1Gl2sOmjM", _ZN3sce7Toolkit2NP2V28Matching6WorldsC1Ev) +STUB( + "UW6gU8plsUQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE3endEv) +STUB("UWAbPAGUbT4", _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse13getResultTypeEv) STUB("UWCrWQtUc5w", sceOpusCeltEncEncodeFloatWithPriority) +STUB( + "UWEuGmaqcuA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEE7get_refEv) +STUB( + "UWFs8yllzHk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "UWHfHWdqxzc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEppEv) +STUB( + "UWIQyDcz1hs", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions10initializeEPNS1_6Common10LibContextEPKc) +STUB("UWJ4sNYFRFc", ucol_swap_67) +STUB( + "UWKvazjhLN0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEE7add_refEv) +STUB("UWKzMNYXxKs", _ZNK3WTF9MediaTime9timeFlagsEv) +STUB( + "UWOPTMTnx1I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEEC2ERSA_) STUB("UWQ3JZbb5bM", sceApplicationIsPrimaryProcess) +STUB("UWQJ3LjYU0o", WKPreferencesGetLinkPreloadEnabled) +STUB( + "UWQwOo1drgk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE5beginEv) +STUB( + "UWV6TvnX0wY", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("UWX7khvY9iw", OBJ_nid2sn) +STUB( + "UWYO83OtNuI", + _ZThn16_N9Inspector22InspectorDebuggerAgent18setBreakpointByUrlERN3WTF6StringEiPKS2_S5_PKiPKNS1_8JSONImpl6ObjectEPS2_RNS1_6RefPtrINS8_7ArrayOfINS_8Protocol8Debugger8LocationEEENS1_13DumbPtrTraitsISI_EEEE) +STUB( + "UWYpGAaonMU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE10setContextEPNS2_10LibContextE) STUB("UWZbVSFze24", scePthreadMutexattrSetkind) STUB("UWh5t-hCbzQ", sceMbusGetDeviceInfoByConditionForDeviceService) +STUB("UWhMu9onqGE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE5emptyEv) +STUB("UWiSJOFkezY", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEEC2Ev) +STUB("UWnY-csxdhk", png_set_invalid) +STUB("UWq4kiFcwuY", unorm2_hasBoundaryBefore_67) +STUB("UWtAGzsF4dY", _ZN3sce7Toolkit2NP2V210Tournament27TeamVsTeamTournamentDetailsD1Ev) +STUB("UWyL6KoR96U", _ZSt13_Xregex_errorNSt15regex_constants10error_typeE) +STUB("UX-UpLUZmic", _ZN3sce3pss4core8graphics14NativeGraphics20AllocateSystemMemoryEmm) +STUB( + "UX-aM5jCHCQ", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditions9getslotIdEv) +STUB("UX0nfjo7ACw", _ZNK7WebCore4Node19rootEditableElementEv) +STUB("UX5VJ-OZdTg", _ZN3WTF4Lock13safepointSlowEv) +STUB( + "UXBzQ2yZMJQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEEC2ERKSA_) +STUB("UXRgSH83N9Y", _ZNK3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse12getAccountIdEv) +STUB("UXS8VgAnIP4", _ZTSw) +STUB( + "UXVAdizVji8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEneERKS9_) +STUB( + "UXWUz4jph8c", + _ZN3sce2Np9CppWebApi14SessionManager2V151PatchGameSessionsSearchAttributesRequestBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_44PatchGameSessionsSearchAttributesRequestBodyEEE) +STUB("UXXBx+CzJe0", + _ZN3sce7Toolkit2NP2V211UserProfile9NpProfile38MAX_SIZE_VERIFIED_ACCOUNT_DISPLAY_NAMEE) +STUB( + "UXZhDlHMhQo", + _ZN3sce2Np9CppWebApi7Matches2V119RequestMatchResults20setCompetitiveResultERKNS1_6Common12IntrusivePtrINS3_24RequestCompetitiveResultEEE) +STUB("UXb6DTEPDkQ", _ZN3sce7Toolkit2NP15AppSTLAllocatorItE7addressERt) +STUB( + "UXfh0YNyQII", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEC2EPS6_PNS2_10LibContextE) +STUB( + "UXg+IiUG7aY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEE7add_refEv) +STUB( + "UXhxNXix1+Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEEC1ERKSA_) STUB("UXiyfabxFNQ", sceNpTrophyIntNetSyncTitles) +STUB("UXl99AyR0Z4", _ZN3sce7Toolkit2NP6TicketC2Ev) +STUB( + "UXmxEhhSaYs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "UXoIiimES8c", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12unsetString6Ev) STUB("UXpJplwPqd4", sceKernelCancelAIO) +STUB( + "UXprFYaZWnY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("UY0ocTXFieI", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification11RefreshRoomEEC2Ev) +STUB("UY123Q3mRZI", _ZN3WTF37canCurrentThreadAccessThreadLocalDataERNS_6ThreadE) +STUB("UYAD7sUQcYU", _ZN3sce2np9WorkQueue16WorkItemFinishedEPNS0_8WorkItemEi) +STUB("UYD2jkWiCr0", WKOpenPanelParametersGetMediaCaptureType) +STUB( + "UYF93hHX8eI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEED2Ev) +STUB("UYFiPan-LTA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEE11release_refEv) +STUB( + "UYM1zY-H-mc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEaSERKS9_) +STUB( + "UYMS+oJKWXM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB("UYN0J2Pg468", _ZN7WebCore7makeRGBEiii) +STUB("UYPxv8MIzGo", _ZN3sce2Np9CppWebApi6Common10initializeERKNS2_10InitParamsERNS2_10LibContextE) +STUB("UYQPI1KtTvo", _ZN3JSC26createIteratorResultObjectEPNS_9ExecStateENS_7JSValueEb) +STUB("UYQaSVs2HPc", _ZN7WebCore22EmptyFrameLoaderClient12didDetectXSSERKN3WTF3URLEb) +STUB("UYQtmAUXmCc", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku25setDisplayPlusUpsellPriceEPKc) STUB("UYR9fcPXDUE", sceUserServiceGetFileBrowserSortTitle) STUB("UYWBwps1yD4", sceUpsrvUpdateCheckDoCheckSystemExpBeta) +STUB("UYYxpQ7Yy2I", _ZN3sce7Toolkit2NP2V23TUS7TusData5resetEv) +STUB("UYgxVHhvMxw", _ZNK3WTF3URL12isAboutBlankEv) +STUB("UYh1S31dB8M", _ZN4Manx18getDefaultFontPathEv) +STUB("UYjiUSe9wPw", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V113ErrorResponseD1Ev) +STUB( + "UYk7FWbNhWw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEppEv) +STUB("UYlpfXiijCM", _ZNK7WebCore8Settings23webRTCEncryptionEnabledEv) +STUB("UYox8vUVm+8", _ZN7WebCore9HTMLNames10summaryTagE) STUB("UYw6RlK7bcQ", scePlayerReviewDialogGetStatus) +STUB("UYwLsCYOWIA", _ZN3JSC7Symbols28regExpBuiltinExecPrivateNameE) +STUB( + "UYyF+OLDIG4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "UZ0k7T8XoEg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "UZ3oyHPJiss", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V117ConnectionQuality9setGlobalERKNS1_6Common12IntrusivePtrINS3_27ConnectionQualityPropertiesEEE) +STUB( + "UZ6U-r98iuE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEEaSERKSA_) +STUB( + "UZ8Q7e1BRYQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEC1EPNS2_10LibContextE) +STUB( + "UZA5N2FfJ9E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEC2EPS6_PNS2_10LibContextE) +STUB("UZF1v5n0o60", _ZN12video_parser13cVideoMetaVWG17getTimeZoneOffsetEPs) +STUB("UZJ68N9vpf4", mono_btls_x509_lookup_mono_init) +STUB("UZJnC81pUCw", putwc) +STUB( + "UZL8iR013xE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "UZMrXjJBv3Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEEC1ERSA_) +STUB( + "UZTIFVarFvo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEEaSERS9_) +STUB( + "UZVnbsgkQEk", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUser12getaccountIdEv) STUB("UZbQjYAwwXM", sceAgcCbSetShRegistersDirect) +STUB("UZbuoykGKzE", _ZN15AbstractStorage7ContentC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("UZdBo5KLYoE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEED2Ev) +STUB( + "UZfOMRymaZM", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("UZjGAmHq1rY", mono_aot_Sce_Vsh_UserServiceWrapperplt) +STUB( + "UZnZhpALzFU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEppEi) STUB("UZoHTWgeI9I", sceBgftServiceIntDownloadGetPatchProgress) +STUB("UZrHnfnijms", _ZN7WebCore11DisplayList11DrawingItemC2ENS0_8ItemTypeE) +STUB("UZu3hH7NfRc", _Mbcurmax2) +STUB( + "UZz7Noins2Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEaSERKS7_) +STUB("Ua0Ucb+dcNg", YGNodeStyleSetPadding) +STUB("Ua7uCi7wdeE", umutablecptrie_fromUCPTrie_67) +STUB("Ua86vx5IaDU", _ZN7WebCore13MIMETypeCache26isUnsupportedContainerTypeERKN3WTF6StringE) +STUB( + "UaDn7sumomc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEplEm) STUB("UaLjloJinow", sceSharePlayTerminate) +STUB("UaRW96-F3t0", _ZN7WebCore8Document18createCDATASectionERKN3WTF6StringE) +STUB( + "UaZUQIvVC3A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEC2EPNS2_10LibContextE) +STUB("UaZZzXWsnic", generic_trampoline_generic_virtual_remoting) +STUB( + "Uam5n+4yqP0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEEC2Ev) +STUB("UaswxdHvEI8", _ZN25MmsFileUpdaterFsOperation11moveTmpFileEPKc) +STUB("UauwQL1Y4uE", _ZNK3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15Error14getReferenceIdEv) +STUB( + "UawvTgYWslY", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData22hasxPsnAtomicOperationEv) STUB("UazrNFzZPRU", sceVideoOutGetVideoOutModeByBusSpecifier_) +STUB("Ub05p6lScXw", WKPreferencesGetAttachmentElementEnabled) +STUB("Ub1E3ls9MSU", _ZN3JSC8Bindings13RuntimeObject14finishCreationERNS_2VME) +STUB("Ub36be4JR2o", _ZStL9_New_hand) +STUB("Ub4JvxZ0KE4", _ZNK3WTF3URL16isMatchingDomainENS_10StringViewE) +STUB( + "Ub933ALe1HA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEEC1ERSA_) +STUB( + "UbFE3PyKjd8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEE7add_refEv) +STUB("UbHmZPp2tCU", _ZNK7WebCore9JSElement7wrappedEv) +STUB("UbM7HWXXV-A", jpeg_idct_2x1) +STUB("UbNLIB-+Daw", _ZN3sce2Np9CppWebApi11Matchmaking2V18LocationD2Ev) STUB("UbQoYawOsfY", sceAvPlayerIsActive) +STUB( + "UbSsXroY5pQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE3endEv) STUB("UbStlMKTBeU", sceNpServerErrorJsonParseInit) +STUB("UbTRJs48B30", mono_aot_Sce_Vsh_PartyCommonplt) +STUB( + "UbV0dzRBRKE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEE11get_deleterEv) +STUB("UbV8FoKdkbI", fuse_reply_entry) +STUB( + "UbXotK0wOII", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsers13isInitializedEv) +STUB( + "UbaVvbxn234", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEE3getEv) +STUB( + "UbfjpybOy3A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEED2Ev) +STUB( + "Ubh+zs+UR-Q", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEEiRNS2_10LibContextEPT_m) +STUB("UbhwnyRH7WQ", fuse_invalidate) +STUB( + "Ubi9vJesDQ4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE6resizeEj) +STUB( + "UbjNnuuOgCc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEptEv) +STUB( + "UblGY0beR58", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetBoolean2Ev) +STUB( + "UblPmAcKqqQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("UbnVmck+o10", mbsinit) +STUB("UbpJoR3X8JM", _ZN3sce7Toolkit2NP10Parameters12initStlAllocEPNS1_19AllocImplementationE) +STUB("UbpaHV1cB94", pfr_cmap_class_rec) +STUB( + "UbsLM8E0PDI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEixEm) +STUB("UbuTnKIXyCk", _ZNSt10moneypunctIcLb0EE4intlE) STUB("Ubv+fP58W1U", sceNpInGameMessageGetMemoryPoolStatistics) +STUB("Uc+-Sx0UZ3U", _ZNKSt7codecvtIcc9_MbstatetE6do_outERS0_PKcS4_RS4_PcS6_RS6_) +STUB( + "Uc0W-S56sjk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEEC1ERKSA_) +STUB("Uc0s1YgeTo8", ulist_containsString) +STUB("Uc18WD18zKI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ChildActivityAvailabilityEEC1Ev) +STUB( + "Uc1NS6duGK4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE8copyFromERKS9_) +STUB("Uc5eSnk3dvE", _ZNK3sce2Np9CppWebApi11UserProfile2V113BasicPresence12getAccountIdEv) +STUB( + "Uc69iWEYH3k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEC2ERS7_) +STUB("Uc9uGPlZzTM", + _ZN3sce2Np9CppWebApi7Matches2V121ResponseTeamStatistic25unsetTeamMemberStatisticsEv) +STUB( + "UcKxpZmLd8A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "UcN8B+XBRT4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEE7get_refEv) +STUB("UcNlxVHe8-s", g_string_new_len) +STUB( + "UcPHrXzDnOM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEED1Ev) +STUB("UcPsMbfa-5Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEEcvbEv) +STUB("UcR6yz4F8Iw", _ZN3sce2Np9CppWebApi7Matches2V122RequestMatchStatistics19unsetTeamStatisticsEv) +STUB("UcV3V1tuOkw", _ZN3sce7Toolkit2NP2V211SharedMedia11ScreenshotsC1ERKS4_) +STUB( + "UcXAx1OJ5pc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEaSERS7_) STUB("UcYuZkNhHI8", sceNpMatching2SignalingEstablishConnection) +STUB( + "UcYzhfKuUeU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEixEm) +STUB("UcdWvwMNS7A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEEC2Ev) +STUB("UcgUlPQHpz4", il2cpp_method_get_declaring_type) +STUB("UcgrPwX7k68", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V115FrequentlyMutedD2Ev) +STUB("UcjqpEduxGg", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo13isInitializedEv) +STUB( + "UcnHjdgXq9U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEED1Ev) STUB("Uco1I0dlDi8", scePlayGoClose) +STUB("UcoanY+JWew", __asan_stack_malloc_always_9) STUB("Ucsu-OK+els", pthread_attr_get_np) +STUB("UcuB0KUnMZc", _ZN25MmsFileUpdaterFsOperationC2Ev) +STUB("Ucwii+Cj3KA", _ZNK3sce2Np9CppWebApi11Matchmaking2V19Attribute6toJsonERNS_4Json5ValueEb) +STUB( + "UcxjnysoqHo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEE7get_refEv) +STUB("UcyA+RDgXHg", png_read_info) +STUB( + "Ucyzf+u-rg4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEEcvbEv) +STUB("Ud+1jEz8LWc", WKWebsiteDataStoreIsStatisticsGrandfathered) +STUB( + "Ud0C2lLJgA0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEeqERKS9_) +STUB( + "Ud3GrBcwsQg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEaSERS7_) +STUB( + "Ud4gDZJIY5w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEC1EPS8_) STUB("Ud7j3+RDIBg", sceHmdSetupDialogUpdateStatus) +STUB("Ud8CbISKRGM", posix_spawn_file_actions_destroy) +STUB( + "UdAZNJb9uPU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEdeEv) +STUB( + "UdAqNrelvpo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "UdCTV6sbreA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEC2EPS8_) +STUB( + "UdFZBntDUNY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEEC2Ev) +STUB( + "UdImTy07hI0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEE3getEv) +STUB("UdKXYoeVDLc", + _ZN7WebCore21NetworkStorageSession29deleteAllCookiesModifiedSinceEN3WTF8WallTimeE) +STUB("UdP5qTZTQzw", SHA512_Update) +STUB( + "UdSy3DPSw2w", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEEiRNS2_10LibContextEPT_m) +STUB("UdUr+4Y1YJM", _ZNSt7_MpunctIcE8_GetvalsIcEEvT_PK5lconv) STUB("UdZhN1nVYfw", sceUserServiceSetGlsBcTags) +STUB( + "Udc1pW1FC2U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEE3getEv) +STUB("UdfNGip9c-Q", mono_register_trampoline_funcs) STUB("UdhQmx64-uM", _sceNpIpcCreateMemoryFromPool) STUB("UdknvgT-snI", sceBackupRestoreUtilCancelGetRequiredSize) STUB("UdkvoRZbg4M", scePerfPmcL3Start) +STUB( + "UdyEMWZ974Y", + _ZN3JSC23JSModuleNamespaceObject17defineOwnPropertyEPNS_8JSObjectEPNS_9ExecStateENS_12PropertyNameERKNS_18PropertyDescriptorEb) +STUB("UdyhGckrgr8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEE5resetEPS6_) +STUB( + "Udynf4VvUAk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEEcvbEv) +STUB("UdzGt24l9Jk", _ZN3sce7Toolkit2NP2V29Messaging7Request27GetReceivedGameDataMessagesC1Ev) +STUB("Ue+9QQsd6IU", _ZN9Inspector21InjectedScriptManager17injectedScriptForEPN3JSC14JSGlobalObjectE) +STUB( + "Ue2zGHdHi34", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEneERKS9_) +STUB( + "Ue697xQOzuc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEC1ERKS7_) +STUB("Ue8e7OGlvFA", _ZN3sce7Toolkit2NP2V212NetworkUtils12BandwithInfoC1ERKS4_) +STUB( + "Ue9DKZ4aF00", + _ZN3sce2Np9CppWebApi14SessionManager2V123FromNonPsnMemberFactory7destroyEPNS3_16FromNonPsnMemberE) STUB("UeIv6aNXlOw", sceUserServiceGetPartyMuteList) +STUB("UeMkkibxFw4", _ZN7WebCore9HTMLNames16bgpropertiesAttrE) +STUB("UeOJlAxhp98", _ZN7WebCore15makeSimpleRangeERKNS_5RangeE) +STUB("UeSrsYzgEBA", ucol_openRules_67) +STUB( + "UeTMSaFyWwo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEC1Ev) +STUB("UeYdo-L+tuA", _ZN7WebCore18StyleSheetContents11parseStringERKN3WTF6StringE) +STUB("UeYiDCqHWuM", _ZNK7WebCore12RenderObject15localToAbsoluteERKNS_10FloatPointEjPb) +STUB("Uea1kfRJ7Oc", _ZTSSt15underflow_error) +STUB( + "UecmOMU6eQ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEC2EPS6_PNS2_10LibContextE) +STUB("UeeYJN-SzZ8", ASN1_STRING_length) +STUB("UefpI5bJ6ZE", mono_aot_Sce_Vsh_GriefReportStoragemethod_addresses) +STUB("UeihRnD6hks", _ZN3JSC4Yarr7replaceERN3WTF6StringERKNS0_17RegularExpressionERKS2_) +STUB("Ueld-PpRXEI", + _ZN15AbstractStorage14FacebookFolder13writeExternalESt10shared_ptrINS_7ContentEE) +STUB("UemBZJ0lp68", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V115CompetitionTypeEEmmEv) +STUB("UeuWT+yNdCQ", _ZN3sce4Json5ValueC1Eb) +STUB( + "Uev3aN41Qmo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "UewDz-LvLl8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE7popBackEv) +STUB( + "UewG8XTerAc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEptEv) +STUB( + "UewXZFD4sJs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEmmEi) +STUB("UexxLj2wLic", _ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEE21intrusive_ptr_add_refEPS5_) STUB("UezlBvGQZUI", sceVisionManagerGetWorkingMemorySize) +STUB( + "Uf0-6G0YaLg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("Uf0TGTnxVXw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEEaSERKS7_) STUB("Uf3h6DPcBvg", scePerfTraceSpmStart) +STUB( + "Uf52fsWc7CI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB("Uf6y9t5GHeQ", GetSrcIdList) STUB("UfWqjplpGC8", sceCesUcs2ToBig5) +STUB( + "UfZ74Y8XxoI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEppEv) +STUB( + "UfcCP61hbgc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEEC1Ev) +STUB( + "UfehJmAGP7o", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE4sizeEv) +STUB("UffSEIbUYZQ", _ZN3sce7Toolkit2NP2V28Commerce8SkuLabelC1Ev) +STUB( + "Ufloc9Tc+iM", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinition13isInitializedEv) +STUB( + "UfnL9ZaxWd4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB("UfqFhYGfglI", _ZN12video_parser13cVideoPathMgv17GetMaclistEKBNameEPc) +STUB( + "UfsRXWY4AMU", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectator57setpostPlayerSessionsSessionIdMemberSpectatorsRequestBodyENS1_6Common12IntrusivePtrINS3_54PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEE) +STUB("UfuKEUkb3Ds", _ZN7WebCore15AffineTransform5flipYEv) +STUB( + "UfwE9BqfR5M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "Ufwc3crkabs", + _ZN3sce7Toolkit2NP8Commerce9Interface15getCategoryInfoEPNS1_9Utilities6FutureINS1_12CategoryInfoEEERKNS1_23CategoryInfoInputParamsEb) +STUB( + "UfyuijjgmHk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEdeEv) +STUB("Ug+PNtND8gI", _ZN7WebCore7Element9setPseudoERKN3WTF12AtomicStringE) +STUB("Ug-13mhenfY", _ZN7WebCore11DisplayList6RotateC2Ef) +STUB("Ug-4pREiQoY", _ZN3WTF31NonSharedCharacterBreakIteratorC1ENS_10StringViewE) +STUB("Ug-xd4ry1hg", _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead13setSearchableERKb) +STUB( + "Ug3C2uoowXw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE10setContextEPNS2_10LibContextE) +STUB( + "Ug3ZVoo8n9A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC1ERKSA_) +STUB("Ug6uMIR1xcs", _ZN7WebCore30InvertLightnessFilterOperationC2Ev) STUB("Ug8pCwQvh0c", sceRtcIsLeapYear) +STUB("UgBZnAVCxpA", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging25GameDataMessageAttachmentEE3setEv) +STUB("UgHUbG2r7J8", _ZN3JSC7Symbols32linkAndEvaluateModulePrivateNameE) STUB("UgHqkAUw1Ac", sceAvControlSetColorEffect) +STUB("UgIITEJeYRo", _ZN3WTFlsERNS_10TextStreamENS_7SecondsE) +STUB( + "UgOURVZjz7I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEC1Ev) +STUB("UgZ7Rhk60cQ", imaxabs) +STUB("UgdEMk7qL1w", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersC2Ev) +STUB( + "UgdgCvPhcgk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "Uge85FlZtFE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("UgeApjKttsM", WKPreferencesSetHyperlinkAuditingEnabled) +STUB("UgfS6HQA+H4", get_random) +STUB("UggFJR-Q6ZM", ucnv_MBCSGetType_67) STUB("UglJIZjGssM", sceAgcDriverSubmitDcb) +STUB("UgmqDr1BCLw", _ZN3sce2np10JsonNumber6SetNumEi) +STUB("UgnGlHwXnYs", ucnv_countAvailable_67) +STUB( + "UgoycQguVwo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEC2Ev) +STUB( + "UgtM0Y+MdtY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEE3getEv) +STUB("Uh3L-l186q8", _ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody11setObjectIdEPKc) +STUB("Uh5MMgeF5OA", _ZN3JSC23JSModuleNamespaceObject6s_infoE) +STUB( + "Uh7Fq-87WkI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEC2Ev) +STUB("Uh9P9wZfvao", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE3endEv) STUB("UhFPniZvm8U", sceHmdInternalGetHmuSerialNumber) +STUB( + "UhIwbJadfp4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEppEi) +STUB("UhKI6z9WWuo", _err) +STUB( + "UhL9Tf1Sl9A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEEC2ERSA_) +STUB( + "UhLEVaMa9lE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE3endEv) +STUB("UhLT15FEvI8", _ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchStatusRequest9getStatusEv) +STUB( + "UhMMOYr4stY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEC2Ev) +STUB("UhPDjkajj0I", _ZN7WebCore12JSAudioTrack15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "UhRXgyW25T8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEEC2ERKSA_) +STUB("UhTHf-qYOu4", ures_getVersionNumber) +STUB( + "UhUqaY+Sxxs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEeqERKS9_) +STUB("UhWPLgBLu4k", udata_openChoice_67) +STUB( + "UhZ0v17o8KI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE4sizeEv) +STUB( + "Uhevmvnsxi8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEE3getEv) +STUB("Uhf+rcxTY-k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEED1Ev) +STUB("UhiVFUeYzb8", _ZN3sce2Np9CppWebApi7Matches2V113ChildActivity13setActivityIdEPKc) +STUB("Uhlr4ATPsWQ", _ZN9Inspector14ConsoleMessagenwEm) +STUB("Ui+vqRGXVMs", _ZN3sce7Toolkit2NP2V29Challenge13ChallengeData8deepCopyERKS4_) +STUB("Ui-89z4-7t8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEdeEv) +STUB( + "Ui0XP2Bo6mo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE7reserveEi) +STUB("Ui7YFnSTCBw", _ZN3sce4Json6StringD2Ev) +STUB( + "UiCf8+o7wDk", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V314MissingElement8fromJsonERKNS_4Json5ValueE) +STUB( + "UiEH4ni4xis", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEC1EPKS8_) +STUB( + "UiETaU9jSdQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEC1Ev) +STUB("UiFgvjyircY", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_15CategoryInfoSubENS2_IS4_EEEEC2Ev) +STUB("UiHG+YgIFno", _ZN7WebCore9HTMLNames12controlsAttrE) +STUB("UiIGhwPoY88", WKBundleRemoveUserScripts) +STUB( + "UiJkFEkRgX4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEneERKS9_) +STUB("UiLRUGMj+CA", _ZN3sce7Toolkit2NP2V28Commerce12ProductLabelC2Ev) +STUB( + "UiMlxkG4-M4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE6resizeEj) +STUB("UiNRDVZcF5A", _ZN3sce7Toolkit2NP2V27Session7SessionD1Ev) +STUB("UiYyNSsGSA0", _ZNK7WebCore16HTMLMediaElement11crossOriginEv) +STUB( + "UijvjAVzWR8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE5emptyEv) +STUB("UikZHjy-nBw", _ZN7WebCore11MathMLNames13symmetricAttrE) +STUB( + "UinvUsdASJs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEED1Ev) +STUB( + "UitebwoKVQs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEC1EPS6_PNS2_10LibContextE) +STUB("UiuOtk07joA", _ZNK7WebCore12GridPosition15integerPositionEv) +STUB("Uiyy-woHSDA", WKPreferencesGetMainContentUserGestureOverrideEnabled) +STUB( + "Uj00XRrDz3c", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V136ConnectionQualityWiredMetricsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_29ConnectionQualityWiredMetricsEEE) +STUB("Uj4E1Axicy4", _ZN9Inspector31BrowserBackendDispatcherHandlerC2ERKS0_) +STUB( + "UjBlTjxTfsA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEeqERKS9_) +STUB("UjF55vAFTVs", qS2) +STUB( + "UjG4yNgtrhU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("UjRJjyvPT2A", _ZN12video_parser18cProfileCheckerMp421isPlayableVideoLengthEy) +STUB( + "UjRnyLVtJrQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEppEi) +STUB("UjTDE3AQCRg", _ZN3WTF7Unicode18convertUTF8ToUTF16EPKcS2_PPDsS3_Pb) +STUB( + "UjUPSlx8Hzc", + _ZN7WebCore14SecurityPolicy29addOriginAccessAllowlistEntryERKNS_14SecurityOriginERKN3WTF6StringES7_b) +STUB( + "UjcARt5DwXo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "UjeNF9tN8z0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEED1Ev) +STUB("UjemQJKxpr4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEC1Ev) +STUB("Ujf3KzMvRmI", memalign) +STUB("Ujg4fSVn+DA", delegate_invoke_impl_target_6) +STUB( + "UjjRIUSPNe8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEE7get_refEv) STUB("UjkVLnP+n0M", sceNetGetInterfaceStats) +STUB( + "UjlnolnTtCE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEppEv) +STUB("UjnLeaBF3PM", _ZN3sce7Toolkit2NP2V27Session14SessionDetailsD2Ev) +STUB("UjpFU8Kcllw", _ZN7WebCore13QualifiedNameC2ERKN3WTF12AtomicStringES4_S4_) +STUB("UjxjrK3jn3k", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11EntitlementEE7addressERS3_) +STUB("Ujxz7ftKY44", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy15TrophyPackGroupEE3setEv) STUB("Ujz25JX-jPM", sceShellCoreUtilSetSystemBGWaveColor) +STUB( + "UjzfTJDOUDs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE8pushBackERKS8_) +STUB("Uk2CVPYZDBI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersC1Ev) +STUB( + "Uk5LZyI6uuA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEneERKS9_) +STUB( + "Uk6QE1rjv+8", + _ZN3sce2Np9CppWebApi13InGameCatalog2V518ErrorEntityFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_11ErrorEntityEEE) +STUB( + "Uk7rSgi+l6c", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE4sizeEv) +STUB("UkEV4hvMo1E", sysctlnametomib) +STUB("UkKO8esUAM4", __tsan_create_fiber) +STUB("UkKfS3Bi7iY", _ZN25MmsFileUpdaterFsOperationD1Ev) +STUB( + "UkL4Bw+CMEw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEC1EPS8_) STUB("UkMUIoj-e9s", sceFontGraphicsFillMethodInit) +STUB( + "UkPlkr-EIVs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEeqERKS9_) +STUB( + "UkRNTL1ntaQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE21intrusive_ptr_add_refEPS9_) +STUB("UkSUouA-9nk", _ZN7WebCore22SkewTransformOperationC2EddNS_18TransformOperation13OperationTypeE) +STUB( + "UkYaxgm977Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("UkchSX+i+tc", + _ZN7WebCore11FrameLoader22findFrameForNavigationERKN3WTF10AtomStringEPNS_8DocumentE) +STUB("Ukgz243vz6M", mono_aot_Sce_Vsh_FileSelectorunbox_trampolines_end) +STUB("UkhNxEGudWI", _ZN7WebCore7JSRangeC1ERKS0_) +STUB("Ukkysrh0wns", _ZN7WebCore17HistoryController26saveDocumentAndScrollStateEv) +STUB( + "UkshxYa8m7E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE21intrusive_ptr_add_refEPS9_) STUB("Uku2JpZmoqc", sceShellCoreUtilAccessibilityZoomUnlock) +STUB("Uku9X4466Kw", _ZN7WebCore9HTMLNames15onloadstartAttrE) +STUB("UkuLm7EGTDc", mono_aot_Sce_Vsh_SystemLoggerUtilWrapperunbox_trampoline_addresses) +STUB("UkvXd2jt++I", glBeginQueryEXT) +STUB( + "Ul1mtpPXkBk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEED2Ev) +STUB("Ul2GZtxXdTk", _ZNK15AbstractStorage11LocalFolder13GetCapabilityEv) +STUB( + "Ul3SoxZtZdk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEcvbEv) +STUB( + "Ul83qzgORj0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEneERKS9_) +STUB( + "UlDEea7JFSQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEC1EPNS2_10LibContextE) +STUB( + "UlH3YhuFO4o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEaSERKS8_) +STUB("UlJSnyS473g", _Tls_setup__Touptab) +STUB( + "UlKZ2xte9vg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEEC2Ev) +STUB( + "UlKgJfwGhmg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEC1EPS8_) +STUB( + "UlOeMnwYliI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("UlOv+A8qapg", jinit_c_coef_controller) +STUB( + "UlQSBk8DDBg", + _ZN9Inspector22ContentSearchUtilities38createRegularExpressionForSearchStringERKN3WTF6StringEbNS0_16SearchStringTypeE) +STUB("UlRGaUoA+04", _ZN7WebCore9HTMLNames14onpopstateAttrE) +STUB("UlRWdRwKURU", _ZN3sce7Toolkit2NP2V26Trophy17TrophyPackSummaryD2Ev) +STUB( + "UlYo8okxza4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEaSERS7_) +STUB( + "UlcZ4sTqzeE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEC2EPNS2_10LibContextE) +STUB( + "Ulcb8xSyTyg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("UlecUmQ3wcE", _ZN3sce3pss5orbis5video15VideoPlayerBase8SetSpeedEi) +STUB("Ulfh6EsndAA", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats22getMatchCompletionRateEv) +STUB("UlhmuaaTM9g", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_15TrophyGroupInfoEEC1Ev) +STUB( + "Uli+2fFXrTo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "UliVOwPuhts", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("UljHcoEA7HA", _ZN3sce7Toolkit2NP2V23TUS13TusDataBufferC2Ev) +STUB( + "Ulmks+wYHqo", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("Uln8FXVcVCY", + _ZN3sce2Np9CppWebApi14ConnectAccount2V216PartnerTokensApi26ParameterToGetPartnerTokenC1ERS5_) +STUB("UlqFuHxBk8o", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEptEv) +STUB( + "UlqS-0wcIa4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEED2Ev) +STUB( + "UlrFGydwCGc", + _ZN7WebCore12RenderObject19scrollRectToVisibleERKNS_10LayoutRectEbRKNS_26ScrollRectToVisibleOptionsE) +STUB("Ulu9vNs5vn8", goby_Fin) +STUB( + "UlucuHCm57w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEC2EPS8_) +STUB("UlzzM1VENZM", WKPreferencesSetDatabasesEnabled) +STUB( + "Um-0HDPaim0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEC2EPKS8_) +STUB("Um-RcJhrQYw", WKPreferencesSetUserInterfaceDirectionPolicy) STUB("Um-jkyDy9rI", sceAgcDriverGetReservedDmemForAgc) +STUB( + "Um0PoSy6Nv0", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot13unsetsortModeEv) +STUB("Um1VUK4rrac", _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_6DOMURLE) +STUB( + "Um3GQParB2E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEED2Ev) +STUB("Um8wfeu9KeI", _ZNK7WebCore11MediaPlayer11currentTimeEv) STUB("UmCvjSmuZIw", sceAudio3dInitialize) +STUB("UmG60jlTpUY", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEED2Ev) STUB("UmKHZkpJOYE", sceFontGraphicsDrawupFillFlatColor) +STUB("UmNOWVCFFCM", _ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead10setNatTypeERKi) +STUB("UmNS0P0-ovs", u_getDataDirectory) +STUB("UmWgEp87BfA", Java_java_awt_GnmGraphicsEnvironment_cleanup) STUB("UmXngHKB6is", sceKernelDeleteFileEvent) +STUB("UmfVPAXbsR0", _ZN3sce3Xml6StringC1EPKcm) +STUB("Umjbr4j7ORE", Java_java_awt_GnmImage_nativeDrawImage) +STUB( + "UmjgarC6Uk0", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead9setLeaderERKNS1_6Common12IntrusivePtrINS3_18LeaderWithOnlineIdEEE) +STUB("UmocAU9a2o0", uiter_setCharacterIterator_67) +STUB("UmonHP+s+AI", _ZN3JSC7Symbols36GeneratorResumeModeReturnPrivateNameE) +STUB("UmotadC824Y", mono_jit_info_get_code_start) +STUB("Umpn9l1IgMc", _ZN3sce7Toolkit2NP2V23TUS7Request16TusVariableInputD1Ev) +STUB("UmvsYsKYp8g", _ZN3sce7Toolkit2NP9Utilities6FutureI7SceNpIdED1Ev) +STUB( + "UmyzQqMgkEE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEC1Ev) STUB("UmzxltBpiiY", _sceNpRealloc) +STUB("Un-Nm66asII", + _ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody16rulesetNameIsSetEv) +STUB("Un28DpZj4ec", _ZN3JSC12HeapAnalyzerD0Ev) +STUB( + "Un47YWdBJ+o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEC1EPS6_PNS2_10LibContextE) +STUB( + "UnCak1Ocjoc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEEC1ERKSA_) +STUB("UnGek4cGPCE", _ZN3JSC2VM24apiGlobalObjectSpaceSlowEv) +STUB( + "UnKW0ziFuiw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("UnNbTSm-mpI", mono_field_get_name) +STUB( + "UnOsjRN4HB8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEmmEi) +STUB("UnQDn+U-tC8", ucal_getDefaultTimeZone_59) +STUB( + "UnW5l1rwcco", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEC1EPNS2_10LibContextE) +STUB("UnXfEW-fb9A", _ZNKSt9basic_iosIwSt11char_traitsIwEE5rdbufEv) +STUB("UnYEP5JEDbE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEmmEv) +STUB("UnblfDLd7ic", g_direct_hash) +STUB( + "UncuJ-jwZmY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEneERKS9_) +STUB("UnoclCJsleA", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE3endEv) +STUB("Untg89NcROM", glClearBufferiv) +STUB( + "UnwAXWfmlZI", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody19dataStatusListIsSetEv) +STUB("UnwGZpezOmQ", mono_aot_Sce_Vsh_Sl2_Sl2Deliverunbox_trampolines) +STUB("Unwa3qG+jk0", Java_java_util_zip_ZipFile_getZipMessage) +STUB( + "UnyP91oLEw8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE3endEv) +STUB("UnydC8GhZ1Q", _ZNK7WebCore18JSHTMLInputElement7wrappedEv) +STUB("Uo9zGFMj74U", _ZN3sce7Toolkit2NP2V210Wordfilter7Request13FilterCommentD2Ev) +STUB("UoADU8-OPsg", uset_openPattern_59) +STUB( + "UoAT9geqY+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) STUB("UoBuWAhKk7U", sceGnmGetResourceUserData) +STUB( + "UoIYvRaEwBc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEE3getEv) +STUB( + "UoM9hRb+nWg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEplEm) +STUB("UoMZIQx7JiI", _ZN7WebCore11MediaPlayer24remoteEngineFailedToLoadEv) +STUB("UoQIKpCBUeY", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE6resizeEj) +STUB( + "UoTQUpXWHmc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEppEv) +STUB( + "UoUi-hbheoE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE7reserveEi) STUB("UoYY0DWMC0U", sceGnmGetEqEventType) +STUB("UoaDfV72Frw", _ZN7WebCore27ContentSecurityPolicyClientD0Ev) +STUB( + "UoizUqs7dQQ", + Java_java_security_AccessController_doPrivileged__Ljava_security_PrivilegedAction_2Ljava_security_AccessControlContext_2) +STUB( + "UopIFBTpyJw", + _ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForRead10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_19PlayerSessionPlayerEEEEE) +STUB("Uoqdqe0Fgp8", mono_aot_System_Runtimeunwind_info) +STUB( + "Uot+0QBQsxg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEEdeEv) +STUB( + "Uot3Coha56k", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "UotNU4W0738", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("UoyxMN47fmw", _ZN7WebCore13MediaStrategyC1ERKS0_) +STUB("Up0zYyxuRLQ", _ZN3WTF17TextBreakIteratorC2ENS_10StringViewENS0_4ModeERKNS_10AtomStringE) STUB("Up36PTk687E", sceVideoOutOpen) +STUB( + "Up96-qqjQPw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("UpER4IpzKH0", _ZN7WebCore10FileHandle5writeEPKvi) +STUB( + "UpJE4QToJKg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEaSERKS9_) +STUB( + "UpW3ydgCr5w", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_8Debugger5Scope4TypeEEEN3WTF8OptionalIT_EERKNS6_6StringE) +STUB("UpYEu5ZEqF4", _ZN7WebCore6JSNode6s_infoE) STUB("UpYNlATxBKk", sceLncUtilIsHostBoot) +STUB( + "UpaGfnI6PEI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEptEv) +STUB( + "Updmo8DfFRs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEdeEv) +STUB("UpfMQXD5L4M", _ZN9Inspector32DatabaseBackendDispatcherHandler18ExecuteSQLCallbackD2Ev) +STUB("UpgqMv8GfOw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEC2Ev) +STUB( + "UpjoplvNixY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEED2Ev) +STUB("UpjyUovbfqA", mono_aot_Sce_Vsh_Stickerjit_code_end) STUB("UpkfE2SNofE", sceNpIpcEndRequest) +STUB("UpnQ9-C9AKc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEEC1Ev) +STUB("UpnyuFw6xnY", _ZN3JSC8JSObject13estimatedSizeEPNS_6JSCellERNS_2VME) +STUB( + "UpqgbdW+br8", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEEiRNS2_10LibContextEPT_m) +STUB( + "Ups0O6xHeWc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("Upt4yMKJOZ0", + _ZN7WebCore16MIMETypeRegistry30appendFileExtensionIfNecessaryERKN3WTF6StringES4_) +STUB( + "UptYwni0qYE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEEdeEv) +STUB( + "Uq3rn7Tb0BA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEE11get_deleterEv) +STUB( + "Uq4mU+UCfmQ", + _ZN3sce2Np9CppWebApi14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBody8fromJsonERKNS_4Json5ValueE) +STUB("Uq5BGthgbl4", sigwaitinfo) +STUB("Uq5K8tl8I9U", _ZNSt6locale7classicEv) STUB("Uq6LgTJEmQs", scePadGetDataInternal) STUB("Uq8uW74rVpU", sceDeviceServiceTerminate) STUB("UqDGjXA5yUM", munmap) +STUB("UqQul-BxITQ", _ZN3sce7Toolkit2NP2V27Session21ChangeableSessionDataC1Ev) +STUB("UqRUDBf7LmQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEE7get_refEv) +STUB("UqS6j-J-Y2c", WTFAnnotateHappensBefore) +STUB("UqSO97fYNAs", _ZN15AbstractStorage14MemfileContent5WriteEPKvlPl) +STUB("UqTrIWQfm7w", _ZN3sce7Toolkit2NP18JoinSessionRequestC1Ev) +STUB( + "UqbbaKxqxd4", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("UqhA2SigBj8", _ZN9Inspector21DOMFrontendDispatcherC1ERNS_14FrontendRouterE) +STUB( + "UqkwyMV24hI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEdeEv) +STUB("Uqkz9Cn89xo", Java_com_sony_bdjstack_ti_Database_getDiscId) +STUB("Uqn5KvU5tTQ", _ZNK3WTF24TimeWithDynamicClockType24approximateMonotonicTimeEv) +STUB("UqpuHPllTdE", _ZNK7WebCore9RenderBox25horizontalScrollbarHeightEv) +STUB( + "UqpwnpiKCSk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE6resizeEj) STUB("Uqq9dvyF6nE", sceCesRefersUcsProfileIso8859_8) +STUB("Ur1V4uZ7vMY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEC1Ev) +STUB( + "Ur3X5IS6jeo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEdeEv) +STUB("Ur7AVsjdYyU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17SetGameDataResultEED2Ev) +STUB("Ur8R26QkYfs", _ZN3sce2Np9CppWebApi7Matches2V113ChildActivity17unsetAvailabilityEv) +STUB("UrBqrl7jqdk", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request13GetPlayedWithC1Ev) +STUB( + "UrCh38TFMqI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEC2EPS8_) +STUB("UrDhHj0xBLs", _ZN3sce3Xml13AttributeList10initializeEPKNS0_11InitializerE) +STUB("UrGQ+Gt1JRY", _ZN7WebCore4Page11forEachPageERKN3WTF8FunctionIFvRS0_EEE) +STUB("UrIl1bIUtak", _ZN3JSC14ProtoCallFrame29setArgumentCountIncludingThisEi) +STUB("UrJocI5M8GY", _ZN3sce2np8NpCommId5ParseEPS1_PKcm) +STUB( + "UrJtel5Gtks", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) STUB("UrN6mFAbgbA", sceUpsrvUpdateGetUpdateTaskMgrInfo) +STUB("UrRAqrfyFU0", _ZNK7WebCore9FrameView12footerHeightEv) +STUB( + "UrS8v3CJJs0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "UrTJC7lX0oI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("UrafQRzOxd4", WKPreferencesGetAcceleratedDrawingEnabled) +STUB( + "UrdPLFFG-rE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEEcvbEv) +STUB("UrhKY32NztY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEE7add_refEv) +STUB( + "UrhVlx658Zc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEC2Ev) +STUB( + "UriZs0lJ1Hc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEE11get_deleterEv) +STUB( + "UrpM2W+Mkx8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE5clearEv) +STUB("Urt2PjJmB-o", _ZN3WTF11OSAllocator16reserveAndCommitEmNS0_5UsageEbbb) +STUB( + "Us0F-sAARi8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEptEv) +STUB("Us6vIm-5258", + _ZN7WebCore17JSDOMRectReadOnly14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB( + "UsADtSZCXnM", + _ZN7WebCore17PageConfigurationC2EON3WTF9UniqueRefINS_12EditorClientEEEONS1_3RefINS_14SocketProviderENS1_13DumbPtrTraitsIS7_EEEEONS2_INS_17LibWebRTCProviderEEEONS6_INS_20CacheStorageProviderENS8_ISF_EEEE) +STUB( + "UsJ+12poR9I", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setBoolean1ERKb) +STUB( + "UsNBoBg8buw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEC2ERS7_) +STUB("UsTkXzNyTKk", mstate_table) +STUB( + "UsfSxM76VHs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEE5resetEPS8_) +STUB("UsiIDUBwAto", mono_log_open_syslog) STUB("UskWpVWxSvg", sceNpArchTerm) +STUB("UsoNZ5gxEuo", _ZNK3sce2Np9CppWebApi14SessionManager2V114Representative12getAccountIdEv) +STUB("Usq0KAVki8I", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEptEv) +STUB( + "Ut3+LjzNeiU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEC2EPKS8_) +STUB("Ut7Ri-h-0l0", _ZN7WebCore17HTMLOptionElement8setLabelERKN3WTF6StringE) +STUB("Ut7U9CTBGxs", _ZN3JSC8Debugger17registerCodeBlockEPNS_9CodeBlockE) +STUB( + "Ut98rojLZ2Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "UtAOq4rwYQ8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEC1EPS8_) +STUB("UtDLjo9rPmw", _ZN7WebCore19UserContentProviderC2Ev) +STUB( + "UtEHtq4mc6U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEmmEv) +STUB("UtEV+oLbAe0", YGNodeStyleSetFlexDirection) +STUB( + "UtJeCMhzInM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEE11release_refEv) STUB("UtO0OHMCgmI", sceKernelIsDevelopmentMode) +STUB( + "UtO4xbnLT44", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) STUB("UtObDRQiGbs", sceGnmDestroyWorkloadStream) +STUB( + "UtTetxvQ8Zg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEC1Ev) +STUB( + "UtWXkMUCBeA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE5beginEv) STUB("UtXl-tmi7iw", scePlayerReviewDialogInitialize) +STUB( + "UtYZ6V54EpQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEppEi) STUB("Utd-6hXTsFQ", sceNpEulaDialogCheckVersionAbort) +STUB("UteVS6B1ZrU", dlopen) +STUB("Uti3IOnyYgI", _ZTVN7WebCore16JSStringCallbackE) +STUB("Utj8Sh5L0jE", _ZNKSt8numpunctIwE16do_thousands_sepEv) STUB("Utlzbdf+g9o", sceFontFtSupportTrueTypeGx) STUB("UtpVXG+RzTc", sceRazorCpuEndArchiveFileAccess) STUB("UtszJWHrDcA", sceKernelFchmod) +STUB("UtvF5urnmHc", _ZNK3sce2Np9CppWebApi11Matchmaking2V110UserTicket13ticketIdIsSetEv) +STUB("UtwP654XpTw", _ZN3JSC12GlobalJSLockD2Ev) +STUB("UtzbMjf4-iY", _ZNK3WTF6String7toInt64EPb) +STUB( + "Uu-OLqsHlL0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE8copyFromERKS9_) STUB("Uu-iDFC9aUc", sceKernelGetEventError) STUB("Uu4VU1bY2Eo", sceHmdGetDistortionMap) +STUB("Uu5RvjltDI4", uset_contains_67) +STUB("Uu7T82HN7wg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEE3getEv) +STUB( + "UuBFaViDmzA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEE3getEv) +STUB( + "UuE7s18UWCA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEEC1EPNS2_10LibContextE) +STUB("UuHE5QHmCgs", _ZN7WebCore24PointerCaptureController13cancelPointerEiRKNS_8IntPointE) +STUB( + "UuP68mjOTcg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE10setContextEPNS2_10LibContextE) +STUB( + "UuQPXCn-3LA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEC1Ev) +STUB( + "UuRXnW98nyk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEC1ERS8_) +STUB("UuSK1dFjjuQ", _ZN3sce7Toolkit2NP2V23TUS13TusDataBufferD2Ev) +STUB("UuVHsmfVOHU", _ZTVSt23_Generic_error_category) +STUB("UuVtnHmsJ6E", + _ZNK7WebCore23TextureMapperAnimations25hasActiveAnimationsOfTypeENS_18AnimatedPropertyIDE) +STUB( + "UuXKAFczFlo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEmmEv) STUB("UuY-OJF+f0k", sceFontDettachDeviceCacheBuffer) +STUB("UuafD-kxYBs", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE21intrusive_ptr_add_refEPS7_) +STUB( + "UukG1sRgu7o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEC1EPS8_) STUB("UukL0EXLQls", sceLncUtilFinishSpecialResume) +STUB("UukOy6kz+VM", RSA_size) +STUB( + "UuostthC0sU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEE7add_refEv) +STUB("UuqKDcmMtAs", YGNodeLayoutGetBottom) +STUB("UuxN+dMXUc8", monoeg_g_ascii_tolower) +STUB( + "UuzzlUxBdZU", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) STUB("Uv+1RNg62iU", sceSpNetErrnoLoc) +STUB("Uv1IQpTWecw", _ZN3sce2np9EventFlagC2Ev) +STUB("Uv5i4e38ito", mono_aot_Sce_Vsh_DbPreparationWrapperjit_code_start) +STUB( + "Uv6KhYrdopE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) STUB("UvBKtxGZG2M", sceVencCoreMapTargetMemoryByPid) +STUB("UvDQq9+QMuI", _ZN3sce2np3ipc14service_client11TermServiceEi) +STUB("UvH0srCBqEI", mono_win32_compat_MoveMemory) +STUB("UvHn-Oa-dfw", _ZN3WTF6Thread5s_keyE) +STUB( + "UvJ5qthUUWs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEppEv) +STUB("UvL4tfruRO4", _ZN7WebCore12EditingStyleD2Ev) +STUB("UvLGkjrZlss", g_utf8_strdown) STUB("UvMSpJJz80s", sceCesUtf32beToSJis) +STUB("UvT1SCfBOiU", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setString10EPKc) +STUB("UvTehqnqtyY", _ZN3sce7Toolkit2NP2V24Core7Request10TermParamsD2Ev) +STUB("UvU6Uh2YH-s", + _ZN7WebCore11CryptoKeyEC12generatePairENS_25CryptoAlgorithmIdentifierERKN3WTF6StringEbi) +STUB( + "UvcsBBq890s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE7reserveEi) STUB("UvcvKaFvupA", sceGameUpdateCreateRequest) +STUB( + "Uvk4n2QfySY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) STUB("UvtA3FAiF4Y", sceVideodec2ReleaseComputeQueue) +STUB( + "UvuJlJvmc9k", + _ZN3sce2Np9CppWebApi14SessionManager2V119NonPsnLeaderFactory6createEPNS1_6Common10LibContextEPKcS9_PNS5_12IntrusivePtrINS3_12NonPsnLeaderEEE) +STUB( + "UvuLZAsA2R0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEEC2EPS8_PNS2_10LibContextE) +STUB("UvxHBngd1H8", _ZN9Inspector21DOMFrontendDispatcherdlEPv) +STUB("Uw+BZJpflxk", FT_Alloc) +STUB("Uw+N2MbMav8", _ZN7WebCore6Path2D7addPathERS0_ONS_15DOMMatrix2DInitE) +STUB("Uw3OTZFPNt4", _ZNSt6_WinitD1Ev) +STUB( + "Uw7I9b25sZ4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEED1Ev) +STUB( + "UwDX6LdfsEs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEEaSERKSA_) +STUB("UwFfyhgQ4vM", _ZN3JSC37parseDateFromNullTerminatedCharactersERNS_2VMEPKc) +STUB("UwMYQFss8oM", WKFrameCopyMIMEType) +STUB( + "UwRBI4mzATA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEmmEv) STUB("UwVBVVYBr38", _sceNpIpcDefaultReallocImpl) +STUB("UwW9XcZWH0c", uspoof_closeCheckResult_67) +STUB("UwdgT7v98sA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE8pushBackERKS6_) +STUB( + "Uwg01C9-q38", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEEdeEv) +STUB("UwgBRss72dY", _ZNK3sce3Xml3Dom4Node13getParentNodeEv) +STUB( + "UwhPJx5CI78", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEeqERKS9_) +STUB("Uwkiwe8UVz8", _ZN3WTF8JSONImpl5ValueD0Ev) +STUB("UwsLZn4ICsk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEptEv) STUB("Uwxgnsi3xeM", pthread_rwlock_setname_np) +STUB("Uwy5H0xJugI", _ZN7WebCore11BidiContext6createEh14UCharDirectionbNS_19BidiEmbeddingSourceEPS0_) +STUB("Uwz2YQcEGgI", _ZN8meta_gen14ImageRetrieverD2Ev) +STUB( + "Ux0pBwcDQMs", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEEC1EPNS2_10LibContextE) +STUB("Ux3CF2+f4-0", u_printf_u_67) +STUB("Ux6XxakVN+8", cairo_mesh_pattern_begin_patch) +STUB("Ux9FW2n+EfE", + _ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse19unsetPersonalDetailEv) +STUB("UxAXjXypYBY", uenum_next_59) +STUB("UxDr1iQixuQ", JSStringIsEqual) +STUB("UxEqityd8NQ", _ZN3sce2Np9CppWebApi7Matches2V111AddedPlayerD2Ev) STUB("UxOJvGmy3mA", sceNpAsmDeleteConnection) +STUB("UxRFBHALbSI", _ZNK7WebCore14ScrollableArea18scrollbarIntrusionEv) STUB("UxV5adxfBFg", sceVdecCoreQueryFrameBufferInfo) +STUB("UxVK4voIpTw", _ZN3NTF18URLResponseMessageD2Ev) +STUB( + "UxXktFvqJ6M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEED1Ev) +STUB("UxZIBFip8Eg", mono_aot_Sce_Vsh_SyscallWrapperjit_code_end) +STUB( + "UxdvJ7rLoSg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE6resizeEj) +STUB( + "UxiCkgYvaDY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE5beginEv) +STUB( + "UxiF1uDl7FU", + _ZN7WebCore18JSHTMLMediaElementC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_16HTMLMediaElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB("UxjPI7oB6BU", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsD1Ev) +STUB( + "UxkPOtAUc0g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) STUB("Uxqkdta7wEg", sceCoredumpSetUserDataType) STUB("UxrSdH6jA3E", sceUserServiceGetSaveDataAutoUpload) +STUB( + "UxvTHnxnbXI", + _ZN8meta_gen11MsvPromoter27setKeyValue_TBLAVC_IconPathENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB( + "Uy+spyud5AY", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUser17setnpServiceLabelEj) +STUB("Uy8CCbsMGlA", _ZN7WebCore9HTMLNames12tabindexAttrE) +STUB( + "UyLQtowh2M0", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13string10IsSetEv) +STUB("UyUHeYA21sg", _ZN3sce2np10NpOnlineIdD1Ev) +STUB("UyVVO5GxZl4", _ZN15AbstractStorage14YoutubeServiceC1Ev) +STUB("UyVXfHe1CxY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEEC2ERKS6_) +STUB("Uybzrh+1nJE", WKSessionStateCopyData) +STUB("Uyfpss5cZDE", __mulvdi3) +STUB("UymfdiDxYdE", + _ZNK3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession6toJsonERNS_4Json5ValueEb) +STUB( + "UyorlOyF-K8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEC2ERS7_) +STUB( + "UyqM3rCItCQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEEC2Ev) +STUB("Uyss1eAFtWo", ktimer_delete) +STUB( + "Uyt4YvVLyTE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "Uz5JhHH5z5o", + _ZN3JSC8JSObject25getStructurePropertyNamesEPS0_PNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("Uz6Z0Xm9uTU", _ZTVN9Inspector18InjectedScriptBaseE) +STUB( + "Uz7VN9rThJ4", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V342PsnWebError_error_validationConstraintInfo8getValueEv) STUB("UzBy6NOpz74", sceVnaSetKeyPhraseCategoryEnable) STUB("UzEiHUpYCHM", sceVencCoreDeleteEncoder) +STUB("UzHiA8D2Pt8", __tsan_atomic8_fetch_add) +STUB("UzOOayOyogU", _ZN7WebCore23AuthenticationChallengeaSERKS0_) +STUB("UzT-6N3lHz8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEEC1Ev) +STUB( + "UzTDM25lxHg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEC2Ev) +STUB( + "UzU2Exfq1M8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEED1Ev) +STUB("UzUC8jH1fGs", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16TrophyPackTrophyEED2Ev) +STUB("UzUQwo6GPQQ", + _ZN7WebCore15StringTruncator12leftTruncateERKN3WTF6StringEfRKNS_11FontCascadeERfbf) +STUB( + "UzUvmg26fG8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEmmEv) +STUB( + "UzX0wfNRycs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE17getResponseHeaderERSB_) +STUB( + "UzcHWkCZCWI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEC1Ev) +STUB( + "UzgaOFxzQ+M", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEdeEv) +STUB("UzicyYogKeg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEEaSERKS7_) +STUB( + "UzjlzhV+NdY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEeqERKS9_) +STUB("Uzl9KIIajHs", JNU_ClassClass) +STUB("UzmR8lOfyqU", _ZNKSt7_MpunctIwE13do_neg_formatEv) +STUB("Uzn+AyzB+bk", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError14getReferenceIdEv) +STUB( + "UzovCXRh+Rg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEE5resetEPS9_) +STUB( + "UzqasxfFoKY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEED2Ev) +STUB("Uzr3-wYLS4Q", Java_com_sun_havi_ui_FreeTypeFontFace_pLoadFontFace) +STUB("UzxpjXk1rBk", _ZN7WebCore12HTMLDocument5widthEv) +STUB("Uzy4bEG4Zdo", _ZN3WTF3MD58checksumERSt5arrayIhLm16EE) +STUB("UzyfSZmeZHE", _ZN9Inspector17ScriptDebugServernaEmPv) STUB("V++vjESqpWU", sceAudioLatencyEstimationInitialize) +STUB("V+3xSdbGAn4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEC1ERS7_) +STUB( + "V+6e20ykpwk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "V+6tlp3OF0g", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearchC2Ev) +STUB( + "V+9cHSHFmLw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEEcvbEv) +STUB("V+CdBngDepo", _ZN7WebCore15JSFetchResponse14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB("V+Cf6NO17IM", _ZN12video_parser16cVideoContentMp410initializeEv) +STUB( + "V+Cixw4RXOw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE8capacityEv) +STUB( + "V+F2j7pxUPw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEppEv) +STUB("V+JoAK-i-7I", _ZTVN3JSC11FuzzerAgentE) +STUB( + "V+K2yNJJ6jo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEED2Ev) +STUB("V+L4ywAV7xU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEEmmEv) STUB("V+P9rsOiLmM", sceCesUtf16leToMbc) STUB("V+TVN7J5JbA", sceSysUtilSendWebDebugNotificationRequest) +STUB( + "V+UC6m5GDMQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEEC1Ev) +STUB("V+c0E+Uqcww", _ZNKSt5ctypeIwE9do_narrowEwc) +STUB("V+e91nhyVdw", rgctx_fetch_trampoline_mrgctx_16_p) +STUB("V+eA4em3HNg", mono_btls_pkcs12_get_private_key) +STUB( + "V+fI59KLLTk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEEC2ERKSA_) +STUB("V+gyrfRGzm4", _ZN7WebCore17CredentialStorage3getERKN3WTF6StringERKNS1_3URLE) +STUB("V+nPRqUu3gE", _ZN3JSC14constructArrayEPNS_14JSGlobalObjectEPNS_9StructureERKNS_7ArgListE) +STUB("V+rtj0bEy9o", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session14InvitationDataEEC1Ev) +STUB("V+xww3j9tfI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEE7get_refEv) +STUB( + "V--3g9o1NtM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEED1Ev) +STUB("V--R8X+-0Ns", generic_trampoline_vcall) +STUB("V-2CJD45Y5o", _ZN3sce7Toolkit2NP2V210Tournament15RegisteredTeamsC1Ev) STUB("V-5cjs+9kI0", sceShellCoreUtilNotificationCancelForIDU) +STUB("V-8pZsp4-C8", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEEC1EPS6_) +STUB( + "V-9HFNRPW8w", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEptEv) +STUB( + "V-AiGJjk7iM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEEC1ERSA_) +STUB( + "V-B2GLMvw0c", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE17getNpWebApi2ReqIdEv) +STUB("V-BU6eoSsKo", WKURLResponseCopyMimeType) STUB("V-DUYmkNleQ", sceKernelMapperSetPageTablePoolOccupancyNotificationThreshold) +STUB( + "V-FGBJP5jIw", + _ZN3JSC8Bindings13RuntimeObject14deletePropertyEPNS_6JSCellEPNS_14JSGlobalObjectENS_12PropertyNameERNS_18DeletePropertySlotE) +STUB("V-MVdsP0qyU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE8capacityEv) +STUB("V-PeYfVNu98", _ZN7WebCore11FrameLoader17stopForUserCancelEb) +STUB("V-U46KZnn+I", _ZNK3sce2Np9CppWebApi13InGameCatalog2V511ErrorEntity10errorIsSetEv) +STUB("V-V1DWGaPr4", jinit_huff_encoder) +STUB( + "V-Ye4cFjiRM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEC2Ev) +STUB("V-YoqTufxnY", WKBundleBackForwardListItemIsInPageCache) +STUB( + "V-Zi-zOpL6k", + _ZN3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectator8fromJsonERKNS_4Json5ValueE) STUB("V-dofRUSIAs", scePerfPmcSdfSelectEvent) +STUB("V-fPa0Bhh0w", _ZN3WTF20ConcurrentPtrHashSet7addSlowEPNS0_5TableEjjjPv) +STUB("V-hRAYX7T4w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEixEm) +STUB( + "V-if5aVCwR0", + _ZN7WebCore26MessagePortChannelRegistry22takeAllMessagesForPortERKNS_21MessagePortIdentifierEON3WTF17CompletionHandlerIFvONS4_6VectorINS_23MessageWithMessagePortsELm0ENS4_15CrashOnOverflowELm16ENS4_10FastMallocEEEONS4_8FunctionIFvvEEEEEE) +STUB("V-krvBJ56UY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEEmmEi) +STUB( + "V-mK6N04LRU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEppEv) +STUB("V-mtHgKabwI", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessionsC2Ev) STUB("V-noPEjSB8c", sceHttpTryGetNonblock) +STUB("V-qTPLotsIk", _ZN7WebCore22EmptyFrameLoaderClient14recreatePluginEPNS_6WidgetE) STUB("V-uEeFKARJU", sceSaveDataDialogProgressBarInc) +STUB( + "V-xLDlIaeMA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEEC2ERKSA_) +STUB("V-zyId3-sG0", _ZN7WebCore17DebugPageOverlays15settingsChangedERNS_4PageE) +STUB("V0+T-rQTbe0", _ZN7WebCore27screenSupportsExtendedColorEPNS_6WidgetE) +STUB("V02oFv+-JzA", __isinf) +STUB( + "V04eKhHbCBc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE10setContextEPNS2_10LibContextE) +STUB( + "V0AQrF60SVA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE3endEv) +STUB("V0EEd3DZsj8", _ZNK7WebCore27ScriptedAnimationController17throttlingReasonsEv) +STUB("V0N1qq7ikUc", sqlite3_errmsg) +STUB( + "V0O+xIpb6YM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEmmEi) +STUB( + "V0PcSYDY9ZA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEED2Ev) +STUB("V0X-mrfdM9E", imaxdiv) +STUB("V0a2VncsRVg", _ZN23sceMetadataReaderWriter13ParserManager11_loadParserEPKNS_10ParserInfoEj) +STUB( + "V0d2dz526rQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEmmEv) +STUB("V0dY21JIhV0", NET_Bind) +STUB( + "V0eXznmeG7I", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Runtime13ObjectPreview7SubtypeEEEN3WTF8OptionalIT_EERKNS6_6StringE) STUB("V0ey5Vz5F7k", sceKernelSetBaseModeClock) +STUB( + "V0kTwI7Edvw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE5beginEv) +STUB( + "V0mB3kD5rJ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEC1Ev) +STUB( + "V0q-qmuAZkE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "V0rY+DfuHcc", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessions10initializeEPNS1_6Common10LibContextENS6_12IntrusivePtrINS3_27PostGameSessionsRequestBodyEEE) +STUB( + "V0u4BGGmovs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE7reserveEi) +STUB("V0wO52M81nE", _malloc_init_replaced) +STUB( + "V0yNtlTPvVg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEE3getEv) +STUB( + "V1+y6My2DTE", + _ZN7WebCore17PageConsoleClient7timeLogEPN3JSC14JSGlobalObjectERKN3WTF6StringEONS4_3RefIN9Inspector15ScriptArgumentsENS4_13DumbPtrTraitsISA_EEEE) +STUB("V11X+ydDfNE", udata_getLength_67) +STUB( + "V11i2ftSnDI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEC1EPS8_) +STUB("V12DdBWf8Xk", _ZN3JSC12BigIntObject6createERNS_2VMEPNS_14JSGlobalObjectENS_7JSValueE) +STUB( + "V1BWJUCUZls", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB( + "V1FTmJ2T3Aw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEE11get_deleterEv) +STUB("V1NPZeXfJaw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEEC2ERKS6_) +STUB("V1THGaJc23o", AacsPermissionGetNonce) +STUB( + "V1WL64rVy+8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEC2Ev) +STUB("V1XNGDVRh9M", + _ZNK3sce2Np9CppWebApi14SessionManager2V125ResponseGameSessionPlayer11getPlatformEv) +STUB( + "V1Y+BqtpSHM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEaSERKS7_) +STUB( + "V1cbmejC3So", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEptEv) STUB("V1f-bRIanh4", sceFaceAllParts) +STUB( + "V1f0VVqzHgU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEC2EPNS2_10LibContextE) +STUB("V1fDKoGEXc4", + _ZN7WebCorelsERN3WTF10TextStreamERKNS0_6VectorImLm0ENS0_15CrashOnOverflowELm16EEE) +STUB("V1hVgILKsPk", __tsan_atomic8_compare_exchange_weak) +STUB("V1hf3XuxJXE", _ZN7WebCore9Scrollbar22maxOverlapBetweenPagesEv) +STUB("V1iadzLicyM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEC1Ev) +STUB( + "V1jgl1b2Qog", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEED1Ev) +STUB("V1qaf8ngY58", WKContextGetDatabaseProcessIdentifier) +STUB( + "V2+oz7iugck", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEEdeEv) +STUB( + "V2-g2n3TgnU", + _ZN3sce7Toolkit2NP3TUS9Interface7getDataEPNS1_9Utilities6FutureINS1_13TusDataOutputEEERNS1_21TusGetDataInputParamsEb) +STUB("V23RslccaX0", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_17ActivityFeedStoryEE7addressERS3_) +STUB("V23qt24VPVs", _ZSt17iostream_categoryv) +STUB( + "V245Pw9++FE", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayerC2ERS5_) STUB("V25-9U+YauY", sceLncUtilRegisterDaemon) +STUB( + "V26BJMCkdzY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEE5resetEPS9_) +STUB( + "V27QHoEy6MY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEC1Ev) +STUB("V2FADWSgkTs", _ZN3JSC7Symbols49hasObservableSideEffectsForRegExpSplitPrivateNameE) +STUB( + "V2FGmMLPi4U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEEaSERKSA_) +STUB("V2FICbvPa+s", + _ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE5_InitERKSt8_Locinfo) +STUB( + "V2FUzaRw9rM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEE3getEv) +STUB( + "V2H58cIm5Io", + _ZN3sce2Np9CppWebApi14SessionManager2V138ResponseGameSessionMemberPlayerFactory7destroyEPNS3_31ResponseGameSessionMemberPlayerE) +STUB("V2JbrOdI4B0", _ZN7WebCore8PositionC2EPNS_4NodeENS0_10AnchorTypeE) +STUB( + "V2K2VlJk-t8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEE11release_refEv) +STUB( + "V2NelZNoJwI", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE5startEPNS2_10LibContextE) +STUB( + "V2QNrRHA6xE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEplEm) +STUB( + "V2W3tE2r9pY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE3endEv) +STUB("V2bpSABaYUU", Java_java_util_zip_ZipFile_close) +STUB("V2ccriI8lGw", _ZTVN7WebCore16ISOSchemeTypeBoxE) +STUB("V2gYfWoTUck", delegate_virtual_invoke_imt_m_17) +STUB("V2k1Ff-ujM8", _ZNK7WebCore13HitTestResult5titleERNS_13TextDirectionE) +STUB("V2kuweV0Cr8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEEmmEi) +STUB( + "V2oz6dB1Ja4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEC1EPKS8_) +STUB("V2tEGjKjcys", _ZN12video_parser5vpcom11Utf8ToUtf16ERKSsPSbIwSt11char_traitsIwESaIwEE) STUB("V2u3WLrwh64", _sceUltUlthreadRuntimeOptParamInitialize) +STUB("V2uSL8jTxuk", Java_java_awt_GnmImage_disposePSD) +STUB( + "V2v-DcOhK4E", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEdeEv) +STUB("V2vIY+DgXA4", _ZN7WebCore9HTMLNames17aria_requiredAttrE) +STUB( + "V2xsWdRAQ3M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("V3+Mhdoz5B0", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEEaSERKS5_) STUB("V31V01UiScY", sceGnmUpdateVsShader) +STUB("V33OnT9rA9c", _ZN3sce7Toolkit2NP2V24Core7Request11MemoryPoolsD2Ev) STUB("V350H0h35IU", sceLncUtilAcquireCpuBudgetOfExtraAudioDevices) STUB("V38nfJwXYhg", _sceNpIpcGetNpMemAllocator) +STUB("V3JPunq-L+M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEE3getEv) +STUB("V3Ky6zD8Slc", _ZN7WebCore21DiagnosticLoggingKeys14streamingMediaEv) +STUB("V3LWuS3ydP0", ucol_restoreVariableTop_67) +STUB("V3MTOWGL8tA", _ZN15AbstractStorage18DailymotionStorageD0Ev) +STUB( + "V3P+mjC9hH4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEED2Ev) +STUB( + "V3RntEukCjg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEEC1Ev) +STUB("V3VXTMCB7tw", _ZN3JSC2VM23jsModuleRecordSpaceSlowEv) +STUB("V3WoypYTUXA", __asan_report_exp_load8_noabort) +STUB( + "V3a8vMVmz+4", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEiRNS2_10LibContextEPT_m) +STUB( + "V3bHGawg7iQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEE11get_deleterEv) +STUB( + "V3cmr-NIoVY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEptEv) +STUB("V3fRK9330D4", _ZN3sce2Np9CppWebApi14SessionManager2V111GameSessionD1Ev) +STUB("V3iH4x0aEfA", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEEC2ERS7_) +STUB("V3nNG5UeEc8", mono_aot_Sce_Vsh_VoiceAndAgentjit_code_start) +STUB("V3tQFBTBqz0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEED2Ev) +STUB("V3u5+R-AuOM", + _ZN3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallback9terminateEv) STUB("V3x+8S9k1vc", sceHidControlDisconnectDevice) +STUB( + "V3zR4Z6K2z8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEEaSERKSA_) +STUB( + "V4-BbeCZl04", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEC1ERS7_) +STUB("V4-iHxwpOM0", _ZN3sce2Np9CppWebApi13InGameCatalog2V55ErrorD1Ev) +STUB("V40EB7BewjU", _ZN7WebCore9HTMLNames13mayscriptAttrE) +STUB( + "V40LvJpopjE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEEC1ERKSA_) +STUB("V43l3qXnB+U", _ZN7WebCore11FrameLoader4loadEONS_16FrameLoadRequestE) +STUB("V48dWp8abf4", uprv_round) +STUB( + "V493u5WfvMQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEC1EPNS2_10LibContextE) STUB("V4EVrruHuy8", sceNpLookupPollAsync) +STUB("V4NACG6kcrM", mono_aot_ReactNative_Vsh_Commonjit_code_start) +STUB("V4SWGM57RXc", + _ZN7WebCore12SettingsBase18setSerifFontFamilyERKN3WTF12AtomicStringE11UScriptCode) +STUB("V4T4zWxST6E", _ZN7WebCore27parseHTMLNonNegativeIntegerEN3WTF10StringViewE) STUB("V4c2fjAX9fQ", sceS3dConversionClose) +STUB("V4cCe7khGVc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEdeEv) +STUB("V4dzNqR49bc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEEppEi) +STUB( + "V4gavuSGsKE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEppEv) +STUB( + "V4gr0hqsUTs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("V4mP3W6KOqI", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V110AvatarSizeEEmmEi) +STUB( + "V4nVFOt1EXU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEC2Ev) +STUB( + "V4uwVObZi1s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEED1Ev) +STUB("V5+PiQVi82U", _ZNK7WebCore16VisibleSelection19rootEditableElementEv) +STUB("V58G-aX6JoM", _ZN7WebCore6Editor4copyEv) +STUB("V5AfEkvBsY0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEptEv) +STUB("V5BN4+l-Pjw", _atanf_f4) +STUB( + "V5DKnNCi8fU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "V5GheyBg3lk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEC1ERS7_) +STUB( + "V5IseHPaYr4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("V5JnIYWTZR4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEEC2EPKS6_) +STUB("V5LOdBy2xyo", + _ZN3sce7Toolkit2NP2V29Messaging7Request19SendGameDataMessage18MAX_NUM_RECIPIENTSE) +STUB("V5NGN4l-iUY", _ZN9Inspector22InspectorDebuggerAgent13didBecomeIdleEv) +STUB("V5NNlbE52Zc", _ZN7WebCore11MediaPlayernaEm) STUB("V5NUMrn5cEQ", sceContentBinderInitialize) +STUB("V5Owzs7E5Oo", _ZN3sce7Toolkit2NP2V211SocialMedia7Request21PostMessageToFacebookC2Ev) +STUB( + "V5TFFyMXpmQ", + _ZN7WebCore18TextureMapperLayer11setChildrenERKN3WTF6VectorIPS0_Lm0ENS1_15CrashOnOverflowELm16EEE) +STUB( + "V5WF65FHXfw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("V5XMPrrztCo", WKContextSetHTTPProxy) +STUB("V5aLJtdfYI4", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEEmmEv) +STUB( + "V5dsUz5aDhw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE21intrusive_ptr_add_refEPS9_) +STUB("V5hnzEc+ewM", _ZN3JSC8JSObject21deletePropertyByIndexEPNS_6JSCellEPNS_9ExecStateEj) +STUB( + "V5lcQuSCrk4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEE5resetEPS9_) +STUB( + "V5ogfzlMbvg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEC2EPS8_) +STUB("V5ojK9mvCJI", png_save_uint_16) STUB("V5q6gvEJpw4", sceNetResolverConnectCreate) +STUB("V5s5sDu-kDM", bemp2sys_packetizer_destroy) +STUB( + "V5unnIPd8ro", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("V5xX2eroaWY", _ZN3sce2np14JsonDocBuilder23EscapeJsonStringBufSizeEPKc) +STUB("V5xjNBpCr6Q", mono_object_get_size) +STUB("V6+qPLSEH1M", mono_aot_Sce_PlayStation_HighLevel_UI2Platformmethod_addresses) +STUB("V6-nqm2437U", _ZN7WebCore16valueToUSVStringERN3JSC9ExecStateENS0_7JSValueE) +STUB( + "V61kzVkznGY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEC1EPS8_) +STUB("V62E2Q8bJVY", _ZSt9_LStrxfrmIcEmPT_S1_PKS0_S3_PKSt8_Collvec) +STUB( + "V62Q44Ozbog", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("V66G+Qvakco", u_getVersion_59) +STUB( + "V6CqmA8yB5U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE8capacityEv) +STUB( + "V6DJYSlYkA4", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEEiRNS2_10LibContextEPT_m) +STUB( + "V6IrBr-IGTA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEEC1ERKSA_) STUB("V6KSpKv9XJE", sceNpMatching2CreateJoinRoomA) +STUB( + "V6KkMDjkZzg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEEC1ERSA_) +STUB( + "V6P50SOgnB4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "V6TaKLOpPUs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEED2Ev) +STUB( + "V6Y14rvV5ts", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE5clearEv) +STUB("V6bbJxUut8A", u_terminateWChars_67) +STUB( + "V6eGymPvkEE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("V6fVkEahkLM", glMapBufferRange) +STUB( + "V6fk7QAwSQo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("V6frA+LevAI", _ZN7WebCore9DOMWindowD0Ev) +STUB("V6iaCNU2KGo", GCC_except_table232) STUB("V6jvzQi5EQc", sceNpManagerIntRemoveUserStateCallback) +STUB("V6tH9Unpqyw", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Publisher6toJsonERNS_4Json5ValueEb) +STUB( + "V6vyj3KdRXg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEEC2ERSA_) +STUB( + "V6w9vuGK8os", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEC2Ev) +STUB( + "V7+FCYe-tCQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE8copyFromERKS9_) +STUB( + "V72waql0ttI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEaSERKS9_) +STUB("V74wGlzI6K4", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13FriendsOfUserEE7destroyEPS3_) +STUB("V75N47uYdQc", _ZN3sce2np6ObjectnaEmR14SceNpAllocator) +STUB( + "V78OWGRvNZI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE10setContextEPNS2_10LibContextE) +STUB("V799utsuUVg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEC1Ev) STUB("V7BQGxc2Ll0", scePfsGetWorkBufferSize) +STUB( + "V7C75frO4WE", + _ZN3IPC18MessageReceiverMap19dispatchSyncMessageERNS_10ConnectionERNS_14MessageDecoderERSt10unique_ptrINS_14MessageEncoderESt14default_deleteIS6_EE) STUB("V7GQTEeUfhw", sceAmprCommandBufferWaitOnAddress) +STUB("V7R+CUqEAZw", _ZN7WebCore12SettingsBase18setFixedFontFamilyERKN3WTF10AtomStringE11UScriptCode) +STUB("V7YMgrTQERg", utext_isWritable) +STUB( + "V7YhUQ+eU3Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEED1Ev) STUB("V7ZG7V+dd08", sceUserServiceGetGlsAccessTokenUstream) +STUB("V7Zs0n4FEKs", WKAuthenticationChallengeGetProtectionSpace) +STUB("V7aIsVIsIIA", + _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewd) +STUB( + "V7cQ4LeFM1w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEmmEv) +STUB( + "V7dvXyHKq64", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEE5resetEPS9_) +STUB( + "V7jkbn7Fq9s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE10setContextEPNS2_10LibContextE) STUB("V7mv23wwswQ", sceBgftServiceDownloadRegisterTask) +STUB("V7pB9s2vJY8", WKPageLoadHTMLStringWithUserData) +STUB("V7q2nQQj-Ow", d2i_PKCS12_bio) +STUB( + "V7skHFW2Gsw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEdeEv) +STUB( + "V7wftIS4d5o", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayerC2Ev) +STUB( + "V7z+5whQmS0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEC2EPS6_PNS2_10LibContextE) +STUB("V8+1ou-xTMI", _ZN12video_parser13cVideoPathMgv10GetEKBNameEPci) +STUB( + "V86XwpBrzzk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEEptEv) +STUB("V885Latyg4I", _ZN3JSC6JSLock4lockEv) +STUB( + "V89XesW82mc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "V8DPX84DHZ4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE21intrusive_ptr_add_refEPS9_) +STUB("V8Gp3017EiY", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate6toJsonERNS_4Json5ValueEb) +STUB( + "V8L71ZOmFaU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEdeEv) +STUB("V8OpV9dNHLg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEptEv) +STUB( + "V8Shfpd9MAM", + _ZN3sce2Np9CppWebApi14SessionManager2V140ResponsePlayerSessionMemberPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_33ResponsePlayerSessionMemberPlayerEEE) +STUB( + "V8XjfqDM1SM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE5eraseENS2_8IteratorIS8_EERSB_) STUB("V8ZA3hHrAbw", sceNpTusGetMultiUserVariableAVUserAsync) +STUB("V8bSjLQH174", + _ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody15unsetUpdateModeEv) +STUB("V8bfkfmBVxo", JSGarbageCollect) +STUB( + "V8fi8R72O2k", + _ZN3JSC14JSGlobalObject18getOwnPropertySlotEPNS_8JSObjectEPS0_NS_12PropertyNameERNS_12PropertySlotE) +STUB("V8i2vIgKigI", _ZN7WebCore14SecurityPolicy18shouldHideReferrerERKN3WTF3URLERKNS1_6StringE) +STUB("V8nobDgo4X0", _ZN7WebCore26MessagePortChannelRegistryC2ERNS_26MessagePortChannelProviderE) +STUB("V8pA5bIDNO0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE5clearEv) +STUB("V8sTDUESRVE", WKURLResponseHTTPStatusCode) +STUB("V8zJYd4ehmw", cpp_demangle_read_type) +STUB( + "V8zLQVo5sxE", + _ZN7WebCore15GraphicsContext9drawImageERNS_5ImageERKNS_10FloatPointERKNS_20ImagePaintingOptionsE) +STUB("V9-Tsgb8r3E", _ZN7WebCore11WindowProxy12setDOMWindowEPNS_17AbstractDOMWindowE) +STUB("V94pLruduLg", _malloc_postfork) +STUB("V95p6e6FXys", _ZN7WebCore13MIMETypeCache23staticContainerTypeListEv) +STUB( + "V9Aa7HQdnww", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEC2EPS8_) +STUB( + "V9AqfNjFYUA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEEC1EPS8_PNS2_10LibContextE) +STUB( + "V9F5jkmZVHo", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB( + "V9LTPFbQX9o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE) STUB("V9LadIvu5Ko", sceShellCoreUtilGetCrashReportInfoForBootStart) +STUB( + "V9Sd1FLPp24", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEE11release_refEv) +STUB("V9ThtCzV4Zc", _ZN3JSC10Identifier4fromERNS_2VMEj) +STUB("V9XykMPn9zg", _ZN10Deprecated12ScriptObjectC2EPN3JSC9ExecStateEPNS1_8JSObjectE) STUB("V9b3HfN19vM", sceShellCoreUtilGetAppEnterButtonAssign) +STUB( + "V9dhS3U7Du8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEED1Ev) +STUB( + "V9fZNUDE2LE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEeqERKS7_) +STUB( + "V9gsJUeSNfA", + _ZN3WTF12base64DecodeERKNS_6VectorIcLm0ENS_15CrashOnOverflowELm16ENS_10FastMallocEEENS_33SignedOrUnsignedCharVectorAdapterEj) +STUB("V9ilTuioj3o", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_22FriendsRankInformationEEC1Ev) +STUB( + "V9nCQUxVVDg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEppEv) +STUB( + "V9oW1Yu3pg8", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectator12getsessionIdEv) +STUB( + "V9qPdMFiPQQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("V9rB2CzLQbE", _ZN3JSC41DeferredStructureTransitionWatchpointFireD1Ev) +STUB( + "V9rJ9DUYhxI", + _ZN3sce2Np9CppWebApi13InGameCatalog2V532ContentInteractiveElementFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_25ContentInteractiveElementEEE) +STUB( + "V9tcgup4L2Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE21intrusive_ptr_add_refEPS9_) +STUB("V9up2Gy6Z28", umutablecptrie_set) +STUB( + "V9yO0FsYFno", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot7setsortENS5_4SortE) +STUB( + "V9ytFlEPzsE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEdeEv) +STUB("VA+7ajPhop8", _ZN7WebCore16ScriptController11createWorldEv) +STUB( + "VA4wWDVI8Rg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEEaSERKSA_) +STUB("VADc3MNQ3cM", signal) +STUB("VADzOXy1fBM", mono_pagesize) +STUB("VALOmUGH78g", _ZN7WebCore16comparePositionsERKNS_8PositionES2_) +STUB("VANh7N2knZg", _ZN7WebCore12KeyedDecoder7decoderEPKhm) STUB("VANhIWcqYak", sceAppContentAddcontMount) +STUB( + "VAPRywt-LB0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEppEi) +STUB( + "VARxATXkh2A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("VASPkNGtNOk", _ZN7WebCore11ContentTypeC1EON3WTF6StringE) +STUB("VASyM6CAIZA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEcvbEv) +STUB( + "VAXodyI8L5Y", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEptEv) +STUB( + "VAbFNmSXXkk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSC_) +STUB( + "VAcjQnO8+Q8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEEaSERSA_) +STUB( + "VAi47jXFSSg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEC2EPKS8_) STUB("VAlir52gpQI", sceVideoOutAddBufferHdrPrivilege) +STUB("VAp1Vvr430g", uset_getItemCount_67) +STUB("VAu-pJqyjnQ", _ZN7WebCore8SVGNames17attributeNameAttrE) +STUB("VAy2wlopYGE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEE11release_refEv) STUB("VAyyCip8dVk", sceAudioInVmicSetMute) STUB("VAzfxqDwbQ0", sceAudioInSetMode) +STUB("VAzreXRP06E", unorm2_getNFKCCasefoldInstance_67) +STUB("VAzswvTOCzI", unlink) STUB("VB-BtuIW8Xc", sceKernelAprResolveFilepathsWithPrefixToIdsForEach) +STUB( + "VB0wOm7TJ5s", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("VB1MYFFuaL4", _ZN7WebCore6Path2D6createERKN3WTF6StringE) STUB("VB4SH73Kf5E", scePlayReadyNewDecryptContext) +STUB("VB75ZVdylrU", _ZN7WebCore21DiagnosticLoggingKeys34resourceLoadStatisticsTelemetryKeyEv) +STUB("VB7RdVVGl7A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEC1Ev) +STUB( + "VB7bBqmdr08", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEC1EPS6_PNS2_10LibContextE) +STUB("VB9tc0vbAVA", + _ZN15AbstractStorage15FacebookContent6RenameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("VBA3H7mYG70", cairo_mesh_pattern_end_patch) +STUB( + "VBK3NKVdWiM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "VBNIeRIzQbg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE21intrusive_ptr_add_refEPS9_) +STUB("VBNYE1MPf4I", glIsTransformFeedback) +STUB( + "VBQ0WmTScTc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEE11release_refEv) +STUB("VBQ1AC5ho9g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEC1Ev) +STUB( + "VBTrSjIx7PM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEeqERKS9_) STUB("VBYw7bb1gEk", sceCustomMusicCoreGetBgmAuthorityStatus) STUB("VBZtcFn7+aY", _sceNpIpcMallocImpl) +STUB("VBi3vzGVTyI", _ZN7WebCore15ActiveDOMObjectD2Ev) +STUB("VBj2uvLGI9g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEEC2EPS5_PNS2_10LibContextE) +STUB("VBpaH-iDg48", WKNavigationDataCopyNavigationDestinationURL) +STUB( + "VBrX7Clwy90", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("VC0W4xnS3Jk", udtitvfmt_open_67) +STUB("VC6kNhdcrYk", _Z16WTFCrashWithInfoiPKcS0_immm) +STUB("VC8PCwSx3g0", CheckSystemEvents) +STUB("VC8mAF2GtbE", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Publisher7getNameEv) +STUB("VC9Kk+u2Xzc", _ZN3sce3pss4core9threading4CondD2Ev) +STUB("VCGPeZaDhfM", _ZN3sce7Toolkit2NP2V24Core18CustomResponseDataD2Ev) +STUB("VCGQTBzMqGU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEC1ERS7_) +STUB("VCGqQRWZISg", fuse_session_next_chan) +STUB("VCIAd+nrADw", deflateBound) +STUB( + "VCJgJD1PVsA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE5beginEv) +STUB( + "VCK7wX1Nw-s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEEC1ERKSA_) +STUB( + "VCLc0Ov9JNI", + _ZN7WebCore26ActiveDOMCallbackMicrotaskC1ERNS_14MicrotaskQueueERNS_22ScriptExecutionContextEON3WTF8FunctionIFvvEEE) +STUB("VCOpGe0nihg", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEEC1Ev) +STUB( + "VCP9MNAjpxg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "VCRRs6Lox3g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "VCTNOMlPXEM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEEC1ERKSA_) +STUB( + "VCYzzd9wKQQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEaSERS7_) +STUB( + "VCfcpWUN8M4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEE7get_refEv) +STUB("VCgcocFdS5w", mono_image_init_name_cache) +STUB("VClCrMDyydE", _ZNSt7collateIcEC2EPKcm) +STUB( + "VCqicVHWufs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEC2Ev) +STUB( + "VCvM4g4L0es", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "VCvxULirLZg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) STUB("VCwNSNy3NR0", sceLncUtilIsSpeculativeLaunch) +STUB( + "VCyWVrk5Mb0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEE5resetEPS6_) +STUB( + "VCzLcpc9JPw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEmmEv) +STUB("VD68PSPegTI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TSS7TssDataEE3setEv) +STUB("VD7TJRp5dt8", + _ZN9Inspector21InspectorConsoleAgent5countEPN3JSC14JSGlobalObjectERKN3WTF6StringE) +STUB( + "VD7fxSE99c4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEmmEi) +STUB("VDBGAec4akw", __asan_report_error) +STUB("VDCjbx5VPwI", uhash_compareChars_67) +STUB( + "VDEh6DG5rJU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEC2Ev) +STUB("VDHk4HzzbhQ", _ZNK7WebCore26Matrix3DTransformOperation19isRepresentableIn2DEv) +STUB("VDQuCfsvi9s", mono_aot_Sce_PlayStation_HighLevel_UI2method_addresses) +STUB("VDUrN8ZSqBk", + _ZNK3sce2Np9CppWebApi7Matches2V122RequestMatchStatistics21playerStatisticsIsSetEv) STUB("VDVES0T5iHI", sceDeci4hDrfpWaitRes) +STUB( + "VDVvPcDvmtA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "VDan9Rs1buo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEC1Ev) STUB("VDaygNXQnho", sceDebugGetProcessResourceStatData) +STUB("VDci3kAJZ08", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEEC1EPS6_) +STUB("VDf83PLBqk0", WKPreferencesGetJavaEnabledForLocalFiles) +STUB("VDp9PU43d60", _ZN12video_parser16cVideoContentMp48finalizeEv) +STUB("VDrKsDIR2ow", _ZN3JSC7Symbols16ArrayPrivateNameE) +STUB( + "VDv4UrXnxF4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE3endEv) +STUB( + "VE0t9-z8Vyo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEEC2ERKSA_) +STUB("VE5H1R2ltas", _ZNK3sce2Np9CppWebApi11UserProfile2V15Error6toJsonERNS_4Json5ValueEb) +STUB("VE93qPBHiso", _ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamRankResultD2Ev) +STUB( + "VEBbZlrjwY4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEED1Ev) +STUB("VECfwlY2DUM", mono_aot_Sce_Vsh_BackupRestoreUtilunwind_info) +STUB( + "VECrpcxwgj8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE21intrusive_ptr_sub_refEPS9_) STUB("VEDMaQmJZng", sceAmprCommandBufferGetType) STUB("VEGu4dixjUg", sceAgcDcbJumpGetSize) +STUB("VEHP-JHIfR4", _ZN7WebCore11FrameLoader26reloadWithOverrideEncodingERKN3WTF6StringE) +STUB("VET8UnnaQKo", _ZNSt13_Num_int_base8is_exactE) +STUB("VETRexG+5Q0", usearch_setText_67) STUB("VEUKQumI5B8", sceUserServiceSetGlsAccessTokenNiconicoLive) STUB("VEVhZ9qd4ZY", sceAudio3dPortPush) +STUB("VEVxAte4uHU", _ZN3sce2Np9CppWebApi6Common6VectorIfE7reserveEi) +STUB("VEaaAp9bSO4", + _ZNK3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator12natTypeIsSetEv) +STUB( + "VEcHKl63C4I", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEE3getEv) STUB("VEiOkNOlgew", scePssKeyboardGetUTF8Chars) +STUB( + "VEsntLRvHQY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEptEv) +STUB("VEt5sT+gYB8", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_19GetGameDataResponseEEC2Ev) +STUB( + "VF2-8-+gl+E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEED1Ev) +STUB( + "VF2AmkYy2ho", + _ZN3JSC19HeapSnapshotBuilder23analyzePropertyNameEdgeEPNS_6JSCellES2_PN3WTF17UniquedStringImplE) +STUB("VF5HDDm3ZMk", _ZN9Inspector35DOMDebuggerBackendDispatcherHandlerD0Ev) +STUB( + "VF5biNDP4Fw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEC1EPS6_PNS2_10LibContextE) +STUB( + "VFH2ZgnFD+o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEC2EPS8_) +STUB( + "VFIb1XVcheg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEC2EPNS2_10LibContextE) +STUB("VFM4TzMTUPI", _ZN3sce7Toolkit2NP2V28Commerce7Request11GetProductsD1Ev) +STUB( + "VFPhg6tlzd0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEmmEi) +STUB( + "VFbgrz0ynL4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEEaSERS9_) STUB("VFfDN9+bjC4", scePerfTraceAmmAddBufferNotifyEvent) +STUB( + "VFhXAsVgNlE", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUserC2Ev) +STUB( + "VFhm5SL5SI8", + _ZN7WebCore17setCookiesFromDOMERKNS_21NetworkStorageSessionERKNS_3URLERKNS_12SameSiteInfoES5_St8optionalImESA_RKN3WTF6StringE) +STUB("VFmr-b1b1aI", _ZN3sce7Toolkit2NP2V26Friend7Request26DisplayFriendRequestDialogD2Ev) +STUB("VFpWjpp5dmA", u_strFromUTF8Lenient_67) +STUB( + "VFqIGErEfFk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEC1EPS6_PNS2_10LibContextE) +STUB("VFqinamj94I", mono_shared_ptr_array_get_allocator) +STUB("VFr1+v+P8+c", _ZNK3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead13ticketIdIsSetEv) +STUB( + "VFuG8dhlnUk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEppEi) +STUB("VFvo8Ldr2iw", _ZN7WebCore16enclosingIntRectERKNS_9FloatRectE) +STUB("VFvyuEBlp+A", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session9SessionIdEE3getEv) +STUB("VG3Rtl3ocb8", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend16FriendsOfFriendsEE3getEv) STUB("VG7lK9I4bJw", sceAppInstUtilRegisterDownload) +STUB("VGIGa3MoPyM", _ZNSt9basic_iosIcSt11char_traitsIcEE5rdbufEPSt15basic_streambufIcS1_E) +STUB("VGKLPKlIqIU", _ZN3sce7Toolkit2NP2V210Tournament6EventsaSERKS4_) +STUB( + "VGKPkYm7q-M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("VGKwVCuBK3A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEC2Ev) +STUB("VGM-tqObL7A", _ZN3sce7Toolkit2NP2V28Presence7Request11SetPresenceD2Ev) +STUB( + "VGQb6ore6XI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEixEm) +STUB( + "VGWsri8JD9o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEC2EPKS8_) +STUB("VGX61DLo18s", _ZN7WebCore11DisplayList8DrawPathD1Ev) +STUB("VGcTl36kCDs", _ZN7Nicosia16SceneIntegration6ClientC2Ev) +STUB("VGeMQyJfTuU", delegate_virtual_invoke_16) +STUB("VGhcd0QwhhY", _Divide) +STUB( + "VGiaSqCcVvY", + _ZN9Inspector25BrowserFrontendDispatcher17extensionsEnabledEN3WTF6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Browser9ExtensionEEENS1_13DumbPtrTraitsIS8_EEEE) STUB("VGkEj4d6-Kg", sceAmprMeasureCommandSizeSetMarker) +STUB("VGo1QvqCjtI", _ZN3sce7Toolkit2NP2V210Tournament7BracketaSERKS4_) +STUB("VGoT9JozCrc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEcvbEv) +STUB("VGpnGK+DopE", _ZN3sce2Np9CppWebApi6Common8IteratorINS2_17ParameterBaseImpl6KeySetEEmmEv) +STUB("VGqUzjttelw", g_get_tmp_dir) +STUB("VGsLj5rElVo", _ZNK7WebCore9InlineBox14caretMinOffsetEv) +STUB("VGxzgRUu1vk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119SubtaskAvailabilityEEdeEv) +STUB("VH5El5MNmc8", _ZN3sce2Np9CppWebApi6Common6VectorIdEC1EPNS2_10LibContextE) +STUB("VH9dsKpQTmk", _ZN3sce4Json5ValueC2ERKNS0_5ArrayE) +STUB( + "VHAFmqBeZmg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE8capacityEv) +STUB("VHBH+p1IqKU", _ZN7WebCore21NetworkStorageSession12deleteCookieERKNS_6CookieE) +STUB("VHBnRBxBg5E", _ZNSt8numpunctIwED0Ev) STUB("VHCS3rCd0PM", sceKernelAddReadEvent) +STUB("VHDy7H4aYSg", mono_code_manager_size) STUB("VHGBWkTe0Jg", sceSysUtilSendAddressingSystemNotificationWithUserName) +STUB( + "VHLSt60bfn0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEE5resetEPS8_) +STUB( + "VHOR2UeeIWw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEC1Ev) +STUB("VHPdajEPdLY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEixEm) +STUB( + "VHgJJXdbXT8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEEC2Ev) +STUB( + "VHiddOcTf-U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEEptEv) +STUB( + "VHsSNIvLwIU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEC1EPNS2_10LibContextE) +STUB("VHxoAYeD2q4", WKPageSetMockCameraOrientation) +STUB( + "VHzmbh-q4w4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEmmEi) +STUB( + "VI0E8b9xShA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE5clearEv) +STUB("VI3gttku1zA", qR8) +STUB("VI6J2nGI3uk", _ZN3sce7Toolkit2NP2V28Commerce8Products8deepCopyERKS4_) +STUB("VI8AHrfLdqY", _ZNK3sce2np10EventQueue6IsInitEv) +STUB("VI8kZGN3A2A", WKPreferencesSetApplePayCapabilityDisclosureAllowed) +STUB("VICcBVaQSiE", u_isgraphPOSIX_67) +STUB("VIJcKtk4O+0", _ZN3sce2Np9CppWebApi11Matchmaking2V18LocationC2EPNS1_6Common10LibContextE) +STUB( + "VIMt+nswLzc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEE11get_deleterEv) +STUB("VISJGrCmQw8", _ZN7WebCore21DiagnosticLoggingKeys21simulatedPageCrashKeyEv) +STUB("VIVM+dMLyGE", __cxx_global_var_init .10) +STUB("VIXJDyUZt1I", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyleC1EPNS1_6Common10LibContextE) +STUB( + "VIeDgKdcSb8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("VIhs00kBVUc", uhash_close_67) +STUB( + "VIk8LuJJOU0", + _ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime15PropertyPreview4TypeEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE) STUB("VItTwN8DmS8", sceVrTrackerNotifyEndOfCpuProcess) +STUB("VIyx10sLh3A", _ZN13MsvMetaEditor13updateMoovBoxEi) +STUB("VJ+j5jNdvfM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEED1Ev) +STUB( + "VJ2mnvJJswk", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead30unsetExclusiveLeaderPrivilegesEv) +STUB( + "VJ4IVPxf7Ko", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEppEi) +STUB( + "VJ6F0D55chE", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) STUB("VJ6oMq-Di2U", sceUsbdOpen) +STUB( + "VJ85ICCJgww", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEcvbEv) +STUB("VJ9ZkgzX2yw", Java_java_lang_Class_isInstance) +STUB("VJB8YwoCPSA", _ZN3sce7Toolkit2NP2V24Core7Request16ThreadPropertiesD1Ev) +STUB( + "VJBfBhk2DYE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("VJFsO+gjT+c", _ZN7WebCore11MediaPlayer20cachedResourceLoaderEv) +STUB( + "VJH6I637I+U", + _ZN9Inspector23WorkerBackendDispatcher11initializedElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "VJHjavWxw6Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("VJJBmnvGCeY", rgctx_fetch_trampoline_rgctx_0_p) +STUB( + "VJJOMpeBHrw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEED2Ev) +STUB("VJL9W+nOv1U", _ZTSPy) +STUB("VJLeeum0i2c", _ZN3sce7Toolkit2NP2V29Challenge10ChallengesD1Ev) STUB("VJNjFtqiF5w", sceGnmSetHsShader) +STUB( + "VJPXKThEfV8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEC2EPNS2_10LibContextE) +STUB( + "VJQm2SgfHzc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE8pushBackERKS8_) +STUB( + "VJSnTc3sCJU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEC1Ev) +STUB( + "VJXRbhMStkA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEC1EPKS8_) +STUB( + "VJZTFe794zM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEE11release_refEv) +STUB( + "VJe76PIeNJE", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt6vectorI16SceNpTusVariableNS2_IS4_EEEE9constructEPS6_RKS6_) +STUB( + "VJgQcGUc-B8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEC2EPNS2_10LibContextE) +STUB("VJllTLLEkDg", JVM_GetMethodIxSignatureUTF) +STUB("VJnNFXSl2m0", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getBoolean3Ev) +STUB("VJr3CZDDqrY", _ZNK3sce2np9JsonValue9GetObjectEv) +STUB("VJrJhU5mNtU", _ZNSt10_Ref_countIN15AbstractStorage15FacebookContentEE8_DestroyEv) +STUB("VJrjzip5g3Y", _ZTVN9Inspector29AuditBackendDispatcherHandlerE) +STUB("VJskAYzgnS8", _ZN3sce2Np9CppWebApi6Common8IteratorINS2_17ParameterBaseImpl6KeySetEEC2EPS5_) +STUB("VJuJyZgaHbo", _ZN7WebCore8PositionC2EPNS_4NodeEiNS0_10AnchorTypeE) +STUB( + "VJz64FrlA1c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEE6assignEPSA_PFvSC_EPNS2_10LibContextE) +STUB("VK+BaGSZH+c", _ZNK7WebCore9FrameView29maxStableLayoutViewportOriginEv) +STUB( + "VK3rxu0Vp8I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEE7get_refEv) +STUB( + "VK9IblBX6O0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEC2Ev) +STUB("VK9NVpaWIeM", aval) +STUB("VKC6PT6jWc4", _ZN3JSC2VM26nativeStdFunctionSpaceSlowEv) +STUB( + "VKCEKeDl77E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEE11get_deleterEv) +STUB( + "VKCw+sKJhag", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEptEv) +STUB("VKDK5JI5otg", u_versionToString_67) +STUB( + "VKEtFC3W-TI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEED2Ev) +STUB("VKGrvdAjGQI", translateErrorCode) +STUB("VKJiHsvURZA", _ZN7WebCore15AsyncFileStream11openForReadERKN3WTF6StringExx) +STUB("VKK37znkCcs", _ZN7WebCore9HTMLNames26onwebkitmouseforcedownAttrE) +STUB( + "VKLYvpUMdqw", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB( + "VKLeTjh5YMw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("VKM8BmTTGd0", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEEcvbEv) +STUB("VKOM+R2KVYk", _ZN7Nicosia6BufferD1Ev) +STUB( + "VKOqNtKhKBI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEixEm) STUB("VKQ8pi4466g", sceFiosArchiveMountWithOrder) +STUB( + "VKU4S6KyWmo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("VKUbEvFj-Uk", rgctx_fetch_trampoline_mrgctx_26) STUB("VKZKhUg0vyU", sceMbusUserLogout) +STUB( + "VKaRucCPRyU", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("VKcCVjFAh9Q", JVM_TraceInstructions) +STUB( + "VKdXFE7ualw", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERPv) +STUB("VKfmXO7iB74", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEC2Ev) +STUB("VKkzGCNQtE4", _ZN3sce7Toolkit2NP2V24Core24NpToolkitMemoryPoolStatsC1Ev) +STUB( + "VKlPBv7jN6A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEEdeEv) +STUB("VKxq9vTrR2w", WKPreferencesGetLogsPageMessagesToSystemConsoleEnabled) +STUB( + "VKy4NqX3tFQ", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToSetMultiVariablesByUser12getaccountIdEv) +STUB("VL-y0DwK+LE", rgctx_fetch_trampoline_rgctx_69) +STUB("VL6s6xtBiGQ", _ZN7WebCore9FrameView17willEndLiveResizeEv) +STUB("VL88wo7PUb0", _ZN7WebCore14FrameSelectionC1EPNS_5FrameE) +STUB( + "VLArumrPZFU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEC2EPNS2_10LibContextE) STUB("VLB2F2owln0", sceLoginMgrServerConvertToUserId) +STUB("VLD5cTfiN0o", _ZNK7WebCore18TextureMapperLayer10hasFiltersEv) STUB("VLDUPKmw5L8", sceRtcSetCurrentDebugNetworkTick) +STUB("VLDXB+ZuNNc", uset_spanBack_67) +STUB( + "VLFwjua2N34", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEC2Ev) +STUB( + "VLPn9tLjUQo", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V129MatchCompletionRateProperties18getConfidenceScoreEv) STUB("VLcfvEQBrj4", sceVencCoreSetInputFrameByPid) +STUB("VLdVf0HVlO0", _ZN3sce7Toolkit2NP2V29Messaging7Request17LocalizedMetadataD2Ev) +STUB( + "VLdWbosdsyM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEppEi) +STUB("VLesLWTy9xI", umsg_autoQuoteApostrophe_67) +STUB("VLexNaeTp84", _ZTVN9Inspector30TargetBackendDispatcherHandlerE) +STUB("VLfkshqDYcI", mono_aot_Sce_Vsh_PatchCheckerClientWrapperjit_code_start) +STUB("VLgDXl6KoyA", _ZN12video_parser13cVideoMetaMP411_initializeEv) +STUB( + "VLkuixnVdho", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEEC1ERKSA_) +STUB( + "VLlzWPMspOA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEED1Ev) +STUB("VLnKXl6P18o", mono_aot_Sce_Vsh_Messagesunwind_info) +STUB( + "VLoxoJeUryo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEmmEi) +STUB("VLvKI1JQntk", SSL_set_fd) +STUB("VM+CXTW4F-s", _ZN3sce2np5Mutex4LockEv) STUB("VM3ElRGJqT0", sceVnaWaitReady) +STUB( + "VM84CVXjQwM", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEEiRNS2_10LibContextEPT_m) +STUB( + "VMBhTho7tao", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE5beginEv) +STUB("VMEZoRPLZU0", _ZN12video_parser7cVpUtil14vp_ff4_strncpyEPvPcmPKcm) +STUB("VMJRsVYg4sg", _ZThn120_NK7WebCore16HTMLMediaElement12isFullscreenEv) STUB("VMM7wQBZoBk", sceSocialScreenInitializeSeparateModeParameter) STUB("VMOyIG83Jtg", sceOpusCeltDecInitialize) +STUB("VMU-PzOLWqk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEEdeEv) +STUB( + "VMUfnpd74nk", + _ZN3sce7Toolkit2NP2V29Messaging17sendInGameMessageERKNS3_7Request17SendInGameMessageEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("VMW3ENMqIHc", ucol_looksLikeCollationBinary_67) +STUB( + "VMcP8FKDTuk", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129MatchCompletionRateProperties15setDisconnectedERKNS1_6Common12IntrusivePtrINS3_38MatchCompletionRateDisconnectedMetricsEEE) +STUB("VMfdd6k7stI", _ZThn64_NK7WebCore9FrameView12footerHeightEv) +STUB( + "VMhoSK6ucfc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEEdeEv) STUB("VMjIo2Z-aW0", sceNpRtcConvertToPosixTime) +STUB("VMrJHWuCy3Q", _ZN7WebCore16ISOSchemeTypeBoxC2Ev) +STUB( + "VMt29Q2YlSA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEixEm) +STUB("VMv85Hi8Jfc", JVM_RaiseSignal) +STUB( + "VN+Vjou8QrE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "VN-Kq-MIE08", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEEC2ERKSA_) +STUB("VN-p-GssHww", _ZN3sce7Toolkit2NP15AppSTLAllocatorIiEC2ERKS3_) +STUB( + "VN0nMVqluzo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEaSERKS7_) +STUB("VN1M7jo-ArE", _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody12unsetPlayersEv) +STUB("VN2NCGEWVuk", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V18SortModeEEmmEv) +STUB("VN4sywtV7RE", _ZN7WebCore6ISOBoxnaEm) +STUB("VN5TX+cUFf4", WKBundleDOMWindowExtensionGetFrame) +STUB("VN8pklcPswo", _ZN7WebCore8SVGNames9markerTagE) +STUB( + "VNAZIR9VAC8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "VNDfZz6okKc", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("VNHXByo1yuY", _ZTSSt11logic_error) +STUB("VNKdE2Dgp0Y", _ZN3sce2np6Thread5StartEv) +STUB("VNKtrqYAKFo", mono_aot_Sce_PlayStation_Imeunwind_info) +STUB( + "VNOKCCoFfB8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEmmEv) +STUB( + "VNPrzyruvHk", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsC2EPNS1_6Common10LibContextE) +STUB( + "VNQJ+5BWkJM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEEC2ERKSA_) +STUB("VNSppWn6oFo", ucol_primaryOrder_67) +STUB("VNaqectsZNs", _ZNSt13basic_filebufIcSt11char_traitsIcEE4syncEv) +STUB( + "VNcuLftLBT8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEdeEv) +STUB( + "VNpQEyV26pw", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("VNxQDribm3k", Java_com_sony_bdjstack_org_dvb_event_Init_registerKeyEventCallback) +STUB("VO3ohg4M0Dc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEC1Ev) +STUB( + "VO9oSNn7uJU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE5emptyEv) +STUB( + "VOA4ks08heM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE3endEv) +STUB("VOAn4bVuN6I", il2cpp_field_get_offset) +STUB("VOBg+iNwB-4", strtoll) +STUB("VOHLzdv2qls", _ZN3WTF8JSONImpl9ArrayBase3endEv) +STUB( + "VOI-2uhETB0", + _ZN9Inspector28InspectorScriptProfilerAgent29willDestroyFrontendAndBackendENS_16DisconnectReasonE) +STUB("VOKOgR7L-2Y", lrint) STUB("VOMSpd9+vxU", sceAgcDriverSetResourceUserData) +STUB("VONoNYdWFEM", mono_utf8_from_external) +STUB("VOOKKun85lw", kldfind) +STUB("VOOdPJPzXow", _ZN3sce2Np9CppWebApi7Matches2V121ResponseTeamStatistic10unsetStatsEv) +STUB("VOSeH8BIUkE", WKPreferencesGetDeveloperExtrasEnabled) +STUB( + "VOUsL11hUvI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE4initEv) +STUB("VOXyk0mNna4", udat_format_59) STUB("VOclFUxMNQ0", sceUserServiceSetParentalContentControl) +STUB("VOd07RpvZVg", _ZN7WebCore9HTMLNames17aria_colindexAttrE) +STUB("VOfYwMMH8B0", ures_getUTF8String_67) +STUB("VOffDjveSnE", _ZN7WebCore26HTMLTextFormControlElement17setSelectionStartEi) +STUB( + "VOfxYECIBRI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEppEi) STUB("VOqOyDAi098", sceNpGriefReportDeleteClient) STUB("VOx8NGmHXTs", sceKernelGetCpumode) +STUB("VOzeHL04Ws0", mono_profiler_install_runtime_initialized) +STUB("VP9vMj-bZ6U", _ZN3sce7Toolkit2NP2V211SocialMedia7Request12ActionLinkFbC1Ev) +STUB( + "VP9z80OCf7c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEEC2ERS9_) +STUB( + "VPKQIlZX9IA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEmmEv) +STUB("VPS+8B9h3Jw", _ZN7WebCore8SVGNames13maskUnitsAttrE) +STUB( + "VPSllOtn7+Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE7reserveEi) +STUB("VPVYBR6zPag", WTFReportAssertionFailureWithMessage) +STUB( + "VPZ7N9P4O58", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEC1Ev) +STUB("VPbJwTCgME0", srand) +STUB("VPcTGA-LwSo", + _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basece) +STUB("VPfybmOmpzs", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEEptEv) +STUB("VPgPm-9j054", glFlush) +STUB( + "VPlo5l1bSjk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEneERKS9_) +STUB( + "VPo33sOgkMw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEeqERKS9_) +STUB( + "VPoPXV5riog", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEeqERKS9_) +STUB("VPoyhwkr0To", _ZN3sce7Toolkit2NP2V210Tournament14RegisteredTeamC2ERKS4_) +STUB( + "VPvEVK1TC+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("VPvnC1oedsk", _ZN3sce7Toolkit2NP2V29Messaging16GameDataMessages8deepCopyERKS4_) +STUB("VPwB1qXbdYU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEE3getEv) +STUB( + "VPwtVaI2jbg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEEaSERKSA_) STUB("VQ+5kAqsE2Q", sceCameraSetConfig) +STUB( + "VQ+XGCLH4PY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEC2Ev) +STUB("VQ+YCG+lc6o", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V114ResultsVersionEEC1Ev) +STUB( + "VQ20X-dyK5c", + _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities8getlimitEv) +STUB( + "VQ6g5RZWZqc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEE5resetEPS9_) +STUB("VQ7n0xu+p2Y", _ZN3sce2Np9CppWebApi6Common8IteratorIiEmmEi) STUB("VQ8e5t8vtYg", sceFiosFileDelete) +STUB( + "VQKfg6VE5sE", + _ZN7WebCore21SerializedScriptValueC1EON3WTF6VectorIhLm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEESt10unique_ptrINS2_IN3JSC19ArrayBufferContentsELm0ES3_Lm16ES4_EESt14default_deleteISA_EE) STUB("VQRWOxYGays", sceShellCoreUtilNotificationRequestedForIDU) +STUB("VQV1bLZ7Zbc", _ZN7WebCore6Editor18confirmCompositionERKN3WTF6StringEj) +STUB( + "VQVtxZnpH7A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "VQXPeqGIj+4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEC1Ev) +STUB("VQXe0oQZ2f0", _ZNK3sce2Np9CppWebApi6Common8IteratorIlEeqERKS4_) +STUB( + "VQZUcy22syg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEixEm) +STUB("VQaxSGkf7p0", _ZN3sce7Toolkit2NP2V27Ranking7Request15GetFriendsRanks8MIN_PCIDE) +STUB("VQazhIc2Byo", _ZN3sce7Toolkit2NP15AppSTLAllocatorIiEC1ERKS3_) +STUB( + "VQbTflr1Tac", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("VQdgp9DOFXs", + _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets12getaccountIdEv) +STUB("VQi978CDW4E", monoeg_g_printerr) STUB("VQl16Q+qXeY", sceNetCtlApRpGetInfo) +STUB("VQl9IElnuxc", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE7reserveEi) +STUB("VQmMXLJJlDI", il2cpp_gc_get_heap_size) +STUB("VQuPtxb4AFM", _ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead13unsetTeamNameEv) +STUB( + "VQwkq5MzCio", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEeqERKS7_) +STUB( + "VR0xcl9Avqg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEEC1ERKSA_) +STUB( + "VR1BFCdyMQ4", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "VR7Ojk8pwq0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE3endEv) +STUB("VR8wRiEUO7M", _ZN3JSC7Symbols16isNaNPrivateNameE) +STUB("VR9vkpt+2Iw", _ZN7WebCore9JSDOMRect14finishCreationERN3JSC2VME) +STUB( + "VR9y1PSUcAw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEEC2ERKSA_) +STUB( + "VRBb7oHj0yQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEmmEv) +STUB( + "VRC5+UdUWLY", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getString10Ev) STUB("VRFd3diReec", sceFontTextSourceRewind) +STUB( + "VRFph6TUBu0", + _ZN9Inspector24ConsoleBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) +STUB("VRTWT-QyMvA", __ubsan_handle_load_invalid_value_abort) +STUB( + "VRUsWA5abHw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEC1EPNS2_10LibContextE) +STUB("VRWvCz180Rk", _ZN7WebCore8Document15createAttributeERKN3WTF6StringE) +STUB("VRX+Ul1oSgE", _Atomic_store_1) +STUB("VRXZ3vcKuuk", _ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody11getObjectIdEv) +STUB( + "VRc1RDxvN0M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEE5resetEPS9_) +STUB("VRcFONlisaQ", _ZN3JSC7Symbols29newPromiseReactionPrivateNameE) +STUB("VRiw2H0fEj4", _ZN3sce7Toolkit2NP2V27Session7Request14SendInvitation21MAX_SIZE_USER_MESSAGEE) +STUB("VRjYxJUaGag", _ZN7WebCore15GraphicsContext12setFillColorERKNS_5ColorE) +STUB( + "VRjczjp9+d4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEE5resetEPS9_) +STUB( + "VRuf47oE9Q8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("VRw1k+qjkyI", il2cpp_class_is_generic) +STUB("VS19Pt55rWk", _ZN3JSC9Structure25attributeChangeTransitionERNS_2VMEPS0_NS_12PropertyNameEj) STUB("VS45LnNqyCo", sceKernelGetCpuUsageProc) +STUB("VS6SZC9OpwA", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119ChildActivityStatusEEC1Ev) +STUB("VSK+iJBUfK8", _ZN3NTF15DNSPrefetchImplD2Ev) STUB("VSQR9qYpaCM", sceUserServiceGetPsnPasswordForDebug) +STUB("VSVkGnZxXZU", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi24ParameterToReportResultsC2Ev) +STUB( + "VSg-ttBX8xk", + _ZN9Inspector31RuntimeBackendDispatcherHandler20AwaitPromiseCallback11sendSuccessEON3WTF6RefPtrINS_8Protocol7Runtime12RemoteObjectENS2_13DumbPtrTraitsIS6_EEEERNS2_8OptionalIbEERNSB_IiEE) +STUB("VSk+sij2mwg", _ZNSt10filesystem20_Set_last_write_timeEPKcl) +STUB("VSnEgdb7HZw", mono_aot_Sce_Vsh_Db_Sharedjit_code_start) +STUB("VSpD4krAZGg", _ZN3sce2np13JsonArrayImplD2Ev) +STUB( + "VSv1lvuk7oE", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setInteger8ERKi) STUB("VSw18Aqzl0U", sceFontStyleFrameGetResolutionDpi) +STUB( + "VT6MyHEcjq8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEaSERKS9_) +STUB( + "VTBTfM8gRR4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEC2EPNS2_10LibContextE) +STUB("VTGe0J2-TLs", g_hash_table_destroy) +STUB("VTGtCdRCNLI", _ZN3WTF10StringImpl5toIntEPb) +STUB("VTKezfYu-v4", _ZN3sce3Job10JobManager24setPersistentThreadCountEj) +STUB("VTLnwPu6bU8", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_20ChallengeRecvDetailsEEC2Ev) +STUB("VTMSXJ7D0dA", mono_aot_Mono_Securityjit_got) +STUB("VTOy5uQvK7E", _ZNK3WTF8JSONImpl10ObjectBase5beginEv) +STUB( + "VTP-lgGl8VQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE8pushBackERKS8_) +STUB( + "VTRvD3XKw+w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("VTZ+4rVcoJM", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEEptEv) +STUB( + "VTlC-LgRLDQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEeqERKS9_) +STUB( + "VTqsCT2TrPQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE6resizeEj) +STUB( + "VTuC1cqA9oU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEE11get_deleterEv) +STUB("VTw9dgPJup4", _ZN3JSC6JSLockD1Ev) +STUB( + "VTx-kE3gE3M", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEixEm) +STUB( + "VTyGWD5K3lI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "VU4kpdBtsfI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) STUB("VU7sCzkG5po", sceVideoCoreAsyncAddStream) STUB("VU9AJf1AaH4", sceDebugIpmiGetServerDispatchInfo) +STUB( + "VUGnguknIFk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEEdeEv) STUB("VUHUasztbUY", sceNpGlobalHeapGetAllocatorEx) +STUB("VUHgtZo50Xo", _ZN7WebCore20ResourceHandleClientC2Ev) +STUB( + "VUJP4L6jeeA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEC2EPS8_) +STUB("VUK2MHOGkR8", _Strxfrmx.initial) +STUB( + "VUKTRbe7XG4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEppEi) +STUB("VULFTpwEXW0", WKContextSetInjectedBundleClient) STUB("VUMO2kAbo7w", sceAudiodecDecodeWithPriority) +STUB("VUOgrSpFbh8", _ZN3sce2Np9CppWebApi14SessionManager2V16FriendD1Ev) +STUB( + "VUQFPZrikBA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) STUB("VUT1ZSrHT0I", pthread_attr_getdetachstate) +STUB( + "VUTJgiKf8kk", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEiRNS2_10LibContextEPT_m) +STUB("VUUXtGDlUyU", _ZN7WebCore9FloatRect6extendERKNS_10FloatPointE) STUB("VUW2V9cUTP4", sceSharePlayNotifyForceCloseForCdlg) +STUB( + "VUnflGyMrTY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "VUo5W7QJXpE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEEcvbEv) +STUB( + "VUp4wxc-a8k", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("VUt75MJDQeE", _ZN3WTF10StringImpl19createUninitializedEjRPh) +STUB("VUtibKJCt1o", getopt) +STUB( + "VUvKCO2F5v8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEEdeEv) +STUB( + "VUzcrAe3zkk", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("VUzjXknPPBs", mbstowcs) +STUB( + "VV-EjyxJkWM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEdeEv) +STUB( + "VV-RgL2vPnc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEEC1Ev) +STUB("VV416qAP6GE", uregex_flags_67) +STUB("VV5P3L0DrP0", _ZNK7WebCore16HTMLInputElement13isNumberFieldEv) +STUB( + "VVA8Nn1CWw8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "VVALeUnRsrI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEC1Ev) +STUB("VVDUxERNatk", ft_smooth_lcd_renderer_class) +STUB( + "VVFTXqsAQuM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEE7add_refEv) STUB("VVFyO8944DI", sceBgftServiceIntDownloadRegisterTask) +STUB("VVJTdpEEI+g", WKPreferencesGetPlugInSnapshottingEnabled) +STUB("VVK0w0uxDLE", _ZNSt14numeric_limitsIcE8digits10E) +STUB( + "VVKQCCyv0Hc", + _ZN7WebCore20RenderEmbeddedObject44setPluginUnavailabilityReasonWithDescriptionENS0_26PluginUnavailabilityReasonERKN3WTF6StringE) +STUB( + "VVNqKCMGKTs", + _ZN9Inspector24RuntimeBackendDispatcherC1ERNS_17BackendDispatcherEPNS_31RuntimeBackendDispatcherHandlerE) +STUB("VVR2dI1029A", _ZN7WebCore19MediaResourceLoaderD0Ev) +STUB( + "VVRVGwdMtoM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "VVUyjRjhdso", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEEC2ERKSA_) +STUB( + "VVW2pTvn2K4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEE7get_refEv) +STUB("VVWPUyolcGQ", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend7FriendsEED1Ev) +STUB( + "VVccj0le43s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEEC2ERKSA_) +STUB("VVfVZtON9ZU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEC1ERS7_) +STUB("VVfxa65sWF0", FTA_Export_Module_smooth) +STUB("VVgqI3B2bfk", _FNan) +STUB( + "VVi2+kwIbCc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEC1ERS7_) +STUB("VVjBwWLDO1E", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12BandwithInfoEE3setEv) +STUB( + "VVru0YJvvCM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "VVsQrTOSer8", + _ZN3sce2Np9CppWebApi7Matches2V127ResponseInGameRosterFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_20ResponseInGameRosterEEE) STUB("VVvFh51o20s", sceHmd2ReprojectionEnableVrMode) +STUB("VVzGt0RzJZc", _ZNK7WebCore22EmptyFrameLoaderClient24isEmptyFrameLoaderClientEv) +STUB( + "VW+Fo-JVvOk", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOffer10initializeEPNS1_6Common10LibContextEPKc) STUB("VW3TVZiM4-E", sceKernelFtruncate) +STUB("VW4GD-TaIUc", FT_Library_SetLcdFilter) +STUB("VW8s48m0Ieo", _ZN7WebCore10Pasteboard15canSmartReplaceEv) +STUB("VW9va3uKErc", _ZN3sce7Toolkit2NP20ChallengeRecvDetailsC2Ev) +STUB("VWDTsxY0WmY", JVM_GetEnclosingMethodInfo) +STUB("VWJtvXhQaUY", _ZN7WebCore6ISOBoxD2Ev) STUB("VWOc5KnleQ0", sceNpFreeImpl) +STUB("VWW3af5-a08", _ZNK7WebCore10TimeRanges6lengthEv) +STUB("VWYE8A-vFGI", _ZN7WebCore15ContextMenuItemD1Ev) +STUB( + "VWaaBekWBQw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE8copyFromERKS9_) +STUB("VWbjB+zNNKg", _ZN7WebCore10TimeRangesC1Ev) STUB("VWcTu8wKwlQ", _sceNpAllocatorRealloc) +STUB("VWeJdsrkbc4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEC1Ev) +STUB("VWgph+g1ktA", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session9SessionIdEE3setEv) +STUB("VWkMiSoXKSM", uregex_find64_67) +STUB( + "VWnJ86EVDBk", + _ZNK3sce2Np9CppWebApi14ConnectAccount2V215AccountLinksApi28ParameterToDeleteAccountLink12getpartnerIdEv) +STUB("VWq4YfFcCz0", glVertexAttribI4iv) +STUB("VWsNqcHO-qw", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V15Error11unsetReasonEv) +STUB( + "VWxM+SA3qUM", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEEiRNS2_10LibContextEPT_m) +STUB("VWz+QkA9f70", _ZNK7WebCore17HTMLCanvasElement23replayDisplayListAsTextEj) +STUB( + "VX-hO8IBML8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE8copyFromERKS9_) +STUB( + "VX2le5UmW8w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("VX6e2rw20rI", _ZN4Manx5MutexD2Ev) STUB("VXA8STT529w", sceSystemServiceActivateHevcAbort) +STUB("VXCKaIC4e9g", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEED1Ev) +STUB("VXCrWaKkrh4", + _ZN9Inspector17ScriptDebugServer19dispatchDidContinueEPNS_19ScriptDebugListenerE) +STUB( + "VXF8QorC1tg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEE7get_refEv) +STUB("VXMgwb1wsPU", _ZN3WTF6String19formatWithArgumentsEPKcP13__va_list_tag) +STUB("VXNM++PRHMs", _ZN3sce7Toolkit2NP2V28Commerce7Request14CheckoutTargetD2Ev) +STUB( + "VXNgxHqQJXQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("VXRQVSn69Ow", jpeg_destroy_decompress) +STUB("VXTw7s-HmtU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEC2ERS7_) +STUB( + "VXYATsiu1BY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEE7get_refEv) +STUB( + "VXZI-vY3Y5U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE21intrusive_ptr_sub_refEPS9_) STUB("VXdkxm-AaIg", sceUserServiceSetPbtcPlayTimeLastUpdated) +STUB( + "VXdmGoViR0k", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE21intrusive_ptr_add_refEPS7_) +STUB("VXeWgKgP2Fo", _ZN3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap8fromJsonERKNS_4Json5ValueE) +STUB( + "VXhZ30kVvAE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEppEv) +STUB("VXkJ-hHNGAw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEC1ERS7_) +STUB( + "VXm5RXt+uJ0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB("VXngsm4dulg", WKMediaSessionMetadataGetTypeID) STUB("VXphZwa1OVc", scePktMgrSetUlpNtfPayloadCommonNotification) +STUB( + "VXuBnqrXhS4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("VXxFEH7Ks-M", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError14setReferenceIdEPKc) +STUB("VXxylRE34KU", glPauseTransformFeedback) +STUB("VXzAXY+RUM4", _ZN9Inspector21CSSFrontendDispatchernwEmPv) +STUB( + "VY3od28ivUE", + _ZN3JSC12StringObject25getOwnPropertySlotByIndexEPNS_8JSObjectEPNS_9ExecStateEjRNS_12PropertySlotE) +STUB("VY50gOO5WV0", _ZN3sce7Toolkit2NP19RangeOfRanksRequestC2Ev) +STUB( + "VY6hVtJrJIs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) STUB("VY8Xji9cAFA", _sceNpIpcFreeImpl) +STUB("VYD7kpjz6i4", ustrcase_internalFold_67) +STUB( + "VYGp+Vfseg0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("VYMBNhVLG9Q", ucnv_getToUCallBack_67) +STUB( + "VYMKjkReJkY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEC1EPS8_) STUB("VYMxTcBqSE0", sceHttp2SetTimeOut) +STUB( + "VYOCpZSj2Qw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEEptEv) +STUB( + "VYOc0MmQXFI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEC1EPKS8_) +STUB("VYQqKZrhPn4", _ZN3WTF8JSONImpl9ArrayBaseC2Ev) +STUB("VYQwFs4CC4Y", _Mtx_current_owns) +STUB( + "VYSUbMqPltw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE6insertENS2_8IteratorIS9_EERKS9_RSC_) +STUB("VYVoDE4fzAM", _ZN3sce7Toolkit2NP15AppSTLAllocatorISbIcSt11char_traitsIcENS2_IcEEEEC2Ev) +STUB( + "VYbHr8Xemoc", + _ZN7WebCore19ProtectionSpaceBaseC1ERKN3WTF6StringEiNS_25ProtectionSpaceServerTypeES4_NS_35ProtectionSpaceAuthenticationSchemeE) +STUB( + "VYbbgPbReGU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE3endEv) +STUB( + "VYd-tVxHd8o", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE4sizeEv) +STUB("VYm07VXDEoc", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V113AttributeTypeEEptEv) +STUB( + "VYnEAuI89l0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEE7get_refEv) +STUB( + "VYqdZLg7j1E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEC2Ev) +STUB("VYr9MulZEz0", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorImEeqERKS4_) +STUB("VYregTxIdLU", g_filename_to_uri) +STUB("VYua99Iuhg0", umutablecptrie_clone_67) +STUB("VYw7Gi8ikzE", WKViewHandleMouseEvent) +STUB( + "VYz4Rw2KU6E", + _ZN7WebCore18TextureMapperLayer21computeOverlapRegionsERNS_6RegionES2_NS0_22ResolveSelfOverlapModeE) STUB("VZ+GFPa1Zyw", sceBackupRestoreUtilDeleteBackupData) +STUB("VZ13+XP9H0Y", Java_com_sony_gemstack_resources_ResourceManager_releaseStream) +STUB( + "VZ62smr0wCk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEdeEv) STUB("VZ8lAeAnaDQ", sceNpUniversalDataSystemPostRecordData) +STUB("VZEQleBEe-A", _ZN12video_parser13cVideoPathMsv8FinalizeEv) +STUB("VZF7dCw7zNo", _ZN3WTF20ConcurrentPtrHashSetD2Ev) +STUB("VZFGsR6ptpg", __asan_report_load2_noabort) +STUB("VZFw+xSe6Mo", UCNV_FROM_U_CALLBACK_ESCAPE) +STUB("VZGUBDl2k0c", + _ZN3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession13unsetPlatformEv) +STUB("VZJ8IF37uuw", _ZN7WebCore15reportExceptionEPN3JSC9ExecStateENS0_7JSValueEPNS_12CachedScriptE) STUB("VZJhL9rau08", sceDepthSetPreFilterParameter) +STUB( + "VZLFgbfdXHU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEC1EPKS8_) +STUB( + "VZMFn2s0rGA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE4sizeEv) STUB("VZPXaaxp9xc", sceKernelWriteRemapCommand) +STUB("VZRT4LgG4w8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEaSERKS7_) +STUB("VZRzMxjltTE", _ZN7WebCore18PrewarmInformationnwEm) +STUB( + "VZffhV2432Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEED1Ev) +STUB("VZgoeBxPXUQ", sce_net_dummy) STUB("VZidxi2cYh0", sceAudioOut2MasteringGetState) +STUB("VZkUzpN-EW8", _ZN3WTF3ICU12majorVersionEv) +STUB("VZm+8Z6WbEM", ucnv_canCreateConverter_67) +STUB("VZnhn2pTg2k", _ZTVN3JSC37JSSegmentedVariableObjectHeapCellTypeE) +STUB("VZq+BJtqlkk", _ZN9Inspector24WorkerFrontendDispatcher13workerCreatedERKN3WTF6StringES4_) +STUB("VZq4vb1hktQ", mono_get_int32_class) +STUB( + "VZr2fEqYT1Y", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEEC1ERKSC_) STUB("VZroxfK-OjE", sceAudiodecDeleteDecoderEx) +STUB("VZt2FyTRUig", _ZN12video_parser7cVpUtil23vp_ff4_fclose_by_threadEPv) STUB("VZwjC-5cUKg", sceCesUtf32leToUhc) +STUB( + "VZxBaIMaCBQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEC1ERS7_) +STUB("VZz0wPuDwuk", mono_runtime_class_init) +STUB("Va+bdYe+K1c", uprv_decNumberCompareTotalMag_67) +STUB("Va5FJ6TmNCw", _ZN3sce4Json6String6appendEPKc) +STUB( + "Va6YTQR7IVQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("Va9rLemqS1c", _ZN7WebCore18AdClickAttribution20markConversionAsSentEv) +STUB("VaFeRSf0WHs", _ZN3sce2np16StreamReadBufferixEi) +STUB( + "VaH9rkmQHYo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEdeEv) +STUB("VaaDMrsOTJQ", _ZTVN15AbstractStorage12SerializableE) +STUB( + "VaaXb7Lg9Jg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEC2EPKS8_) +STUB("VabrcAOJIkM", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setStopPosition) +STUB("VacOt-VWmg0", mono_aot_Sce_Vsh_Themeunbox_trampoline_addresses) +STUB( + "VajWvgZOf4c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEE5resetEPS6_) +STUB("ValV+RKC9yw", JSWeakRetain) +STUB("Valx7LM0atw", _ZN3sce7Toolkit2NP2V28Commerce7Request26SetPsStoreIconDisplayStateD2Ev) +STUB("Var4TxJ5V6M", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessionsC2Ev) +STUB( + "Vas2eInFOZM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEppEv) +STUB( + "Vb3Xkb4A1mw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEED1Ev) +STUB( + "Vb45XvEZQVE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB("Vb6WnvCC7Jg", _ZN7WebCore8SVGNames19font_face_formatTagE) +STUB( + "VbA8W+rMrXw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) STUB("VbEHW7RrJ+w", sceShellCoreUtilGetVersionNumberOfCameraCalibrationData) +STUB("VbEKRLldQiM", _ZN7WebCore18JSHTMLVideoElement15subspaceForImplERN3JSC2VME) +STUB("VbEt9RG6jqA", _ZN7WebCore9HTMLNames14onpageshowAttrE) +STUB("VbFjEs--uiA", _ZNK3sce4Json6StringeqEPKc) +STUB( + "VbGgC5XQiVY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEC2Ev) +STUB( + "VbIk4Ifv8i8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEEptEv) +STUB("VbIkV4JS3PE", _ZN7WebCore6ISOBoxnwEmPv) +STUB( + "VbJZLXgrBLs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEEptEv) +STUB( + "VbKb1mIcE5k", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemPropertiesC2Ev) +STUB("VbLgxsvib+g", rgctx_fetch_trampoline_mrgctx_40_p) +STUB("VbNV-OKwSoo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEEC2ERS9_) +STUB("VbQ6miDAeP0", il2cpp_monitor_enter) +STUB( + "VbTarbK3mOE", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Wordfilter16SanitizedCommentEE19setCustomReturnCodeEi) +STUB("VbTwUkpvqCo", Java_java_io_FileInputStream_open0) +STUB("VbWtH3zLRIs", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEE3getEv) +STUB( + "VbXedEdYBds", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEC2Ev) +STUB( + "VbZ1QQAYHqY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE5emptyEv) +STUB( + "Vbb2mdkk7YI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEEaSERSA_) +STUB("VbczgfwgScA", _WFrprep) +STUB( + "VbdE7DQUugY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEE11release_refEv) +STUB("Vbeoft607aI", + _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecy) +STUB( + "VbgKQV7uteM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE7popBackEv) +STUB( + "VbjKIEHDEh0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEC1EPS8_) +STUB("VbqVvelTDGI", _ZN7WebCore4Page23dispatchAfterPrintEventEv) STUB("VbrTamW6dJs", sceKernelGetUtokenSaveDataRepairForRcmgr) +STUB("Vbs1JenCbRg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEEC1ERS7_) +STUB( + "VbuMfjgZqNY", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlot10initializeEPNS1_6Common10LibContextEPKci) +STUB( + "VbvohmbUy+c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEmmEi) +STUB("Vbx1HlmSMf0", _ZN7WebCore9GLContext20createSharingContextERNS_15PlatformDisplayE) +STUB("Vbx62ND4j4Y", _ZN7WebCore10XLinkNames11actuateAttrE) +STUB( + "VbyQr1LXfi8", + _ZN3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsSearchRequestBodyC1EPNS1_6Common10LibContextE) +STUB( + "Vc0MP8yAE-0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEppEv) +STUB("Vc2tb-mWu78", CA_MGMT_convertKeyBlobToPKCS8Key) +STUB( + "Vc7Ak9nKgqY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE21intrusive_ptr_sub_refEPS9_) STUB("Vc8lIZRBjHw", sceFsUfsMkfsForSystem) +STUB("VcDzy9LLnYg", _ZN9Inspector14InjectedScriptC2ERKS0_) STUB("VcE+gXSwFXI", sceAudioOutExConfigureOutput) +STUB( + "VcFAc17MkFM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("VcKj43HAQDk", RSA_public_encrypt) +STUB( + "VcMKlUPuqYw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEEptEv) +STUB( + "VcNsDlVXOHc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEptEv) +STUB( + "VcOl2IEBRwc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEEC2Ev) +STUB("VcRUlHEZAaE", _ZN3sce7Toolkit2NP2V27Session7Request6Search9MAX_USERSE) +STUB("VcS+9NxwzBM", + _ZN3sce2Np9CppWebApi7Matches2V124RequestCompetitiveResultC1EPNS1_6Common10LibContextE) +STUB("VcTDaz1OaSQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEE5resetEPS6_) +STUB("VcY8ZwqPRVE", udat_formatCalendar_67) STUB("Vcc3cGhXO2U", sceVnaRequestDialogTts) +STUB("VccvcyIQuLM", _ZNK3sce2Np9CppWebApi14SessionManager2V113ErrorResponse8getErrorEv) +STUB( + "VcdA7UkL3fo", + _ZThn176_N7WebCore8Document17addConsoleMessageEOSt10unique_ptrIN9Inspector14ConsoleMessageESt14default_deleteIS3_EE) +STUB("VcdDw5-pPIw", _ZN3sce2Np9CppWebApi7Matches2V113RequestMemberC1EPNS1_6Common10LibContextE) +STUB("VciNhyNZkTs", _ZNK3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error6getTidEv) STUB("VcpxjbyEpuk", sceFontGraphicsDrawupFillLinearGradient) +STUB( + "VcrudLOut18", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE5emptyEv) +STUB( + "Vcu1gB19CxA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("VcymGy+2WW4", _ZN18ScePssDecoderHevag9TerminateEv) +STUB( + "Vd1qAFfOBuQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("Vd4gElytvJs", WKStringCopyJSString) +STUB("Vd51PyZZxu8", VerifyClassForMajorVersion) +STUB( + "Vd9ZiwV4v9o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "VdCfZjw8V14", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEE11get_deleterEv) +STUB( + "VdDtp0wNGJ8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEmmEi) +STUB("VdJ+N1xU5jg", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE8capacityEv) +STUB( + "VdJM9nQNn8U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEC1EPNS2_10LibContextE) +STUB("VdJaqaYRrL0", mono_custom_attrs_from_event) +STUB( + "VdK0+zNEH5E", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getInteger1Ev) STUB("VdN2hNRay+E", sceFiosGetAllOps) +STUB("VdXIDAbJ3tQ", settimeofday) +STUB("VdYoc9kGeyA", _ZNK3sce3Xml3Dom8NodeListixEj) +STUB( + "VdjJFagyPDA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE4sizeEv) +STUB("Vdl7Az+HVBs", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE8copyFromERKS7_) +STUB("Vdm5qt3ga9U", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEEC1Ev) +STUB("VdpqcDG0YtU", _ZNK7WebCore11FrameLoader17networkingContextEv) +STUB("VdsaiAF6j8Q", _ZN3sce7Toolkit2NP2V29Messaging25GameDataMessageAttachmentD2Ev) +STUB( + "Ve+GSbTFyKQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEmmEi) +STUB("Ve-npIABD0g", _ZN7WebCore18JSHTMLMediaElementC2ERKS0_) +STUB( + "Ve4vCA++9j0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEED2Ev) +STUB("Ve56cuYxhvk", + _ZN7WebCore11JSDOMWindow22visitOutputConstraintsEPN3JSC6JSCellERNS1_11SlotVisitorE) +STUB( + "VeAJ1TGp0i4", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionProperties42getpatchPlayerSessionsSessionIdRequestBodyEv) +STUB("VeCmF-zmmy0", mono_aot_System_ServiceModel_Webjit_got) +STUB( + "VeColKe+8wU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEixEm) +STUB( + "VeDGPahHe1c", + _ZNK3sce2Np9CppWebApi14SessionManager2V131JoinedPlayerSessionWithPlatform6toJsonERNS_4Json5ValueEb) +STUB("VeF6Z+WeJ84", WKPreferencesSetMenuItemElementEnabled) +STUB("VeFczL9MmuU", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V312ErrorFactory7destroyEPNS3_5ErrorE) +STUB("VeHY6z24kSw", _ZN8meta_gen12JpegPromoter8FinalizeEP19PromoteInnerContext) +STUB( + "VeJKlGBtEPo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE7popBackEv) +STUB( + "VeLtIbQ1NWA", + _ZN7WebCore14StaticNodeListC2EON3WTF6VectorINS1_3RefINS_4NodeENS1_13DumbPtrTraitsIS4_EEEELm0ENS1_15CrashOnOverflowELm16EEE) +STUB("VeSd8Ra6b6Y", _ZN7WebCore8Document22createDocumentFragmentEv) +STUB( + "VeVRWpuvRDw", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEEiRNS2_10LibContextEPT_m) +STUB("VeZ+P1zAIA0", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container6toJsonERNS_4Json5ValueEb) +STUB("VeZxBVHd8bc", mono_counters_on_register) +STUB("Vea9SZDM3Ao", ucnv_io_stripASCIIForCompare_67) +STUB("VecRKuKdXdo", _Quadph) +STUB( + "VedrxNLnZE8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEmmEi) +STUB("VehaKjlHG2c", WKPreferencesSetThreadedScrollingEnabled) STUB("VeiZKFxdh8k", sceAudioLatencyEstimationAddData) +STUB( + "VekcO4txY-Q", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE18getResponseHeadersERSB_) +STUB("VenLJSDuDXY", _ZTSs) STUB("Veo1PbQZzG4", sceUserServiceGetNpAccountUpgradeFlag) +STUB( + "Veogpdda2yA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE4sizeEv) +STUB("VeokaFZi7KY", _ZN3sce7Toolkit2NP2V28Matching7Request12SearchClauseC2Ev) +STUB( + "VepYkYmt+i8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEC1EPS6_PNS2_10LibContextE) +STUB("VetLqj2MlaA", _ZNK7CoreIPC13DataReference6encodeERNS_15ArgumentEncoderE) +STUB("VetwGOzhUI4", + _ZN3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsSearchRequestBody13getConditionsEv) +STUB("Vf1Aprnl3pY", il2cpp_gc_disable) +STUB("Vf2f-RztCOQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE8capacityEv) +STUB("Vf3hiuRoQs0", recvtbl_init) +STUB("Vf68JAD5rbM", _ZNKSt5ctypeIwE9do_narrowEPKwS2_cPc) +STUB( + "Vf97dyOY8cQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEED2Ev) +STUB( + "VfAcPFmPQkc", + _ZNK3sce2Np9CppWebApi14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBody6toJsonERNS_4Json5ValueEb) +STUB( + "VfBBDcKdt9E", + _ZN9Inspector25DebuggerBackendDispatcher20setBreakpointsActiveElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "VfKvVH2f9tU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEeqERKS9_) +STUB( + "VfLxmnHZ+pQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEE7get_refEv) +STUB("VfNA5ggBpZU", _ZN8meta_gen12JpegPromoter12SetAllValuesEv) STUB("VfRSmPmj8Q8", sceNpRegisterStateCallback) +STUB( + "Vfbc0-x9wj0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEED1Ev) +STUB( + "VfcIFooE394", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEC2EPS8_) +STUB( + "Vfdwc704qLE", + _ZN3sce2Np9CppWebApi14SessionManager2V132PlayerSessionNonPsnPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_25PlayerSessionNonPsnPlayerEEE) +STUB("VfeN+Qhr3iY", mono_aot_Sce_Vsh_MarlinDownloaderWrapperplt) +STUB("Vffv7VcV358", _ZNK7WebCore22ResourceLoadStatistics8toStringEv) +STUB("VfgpUJUPTHQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEEcvbEv) +STUB("VfhkR2KTrV8", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_20ChallengeRecvDetailsEED2Ev) +STUB("VfrLixb1FUQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEE3getEv) +STUB("VfrdBRicGBA", _ZNK9Inspector14InjectedScript14wrapCallFramesEN3JSC7JSValueE) +STUB("VfsML+n9cDM", log1p) STUB("Vft6N0EvQsw", sceHeadTrackerStart) +STUB("VftQ8boh33k", __tsan_atomic128_load) +STUB("Vg0Brc6Vh44", _ZStL6stdstr) +STUB( + "Vg8j3K23G7A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEppEv) +STUB("VgBVzWtJRA4", uregex_groupNumberFromName_67) +STUB("VgF2dcT-nd0", uloc_setKeywordValue_67) +STUB("VgGZ6GA6bQU", mono_aot_Sce_Vsh_AppContentUtilWrappermethod_addresses) +STUB( + "VgM5ftwIlec", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE4sizeEv) +STUB("VgMNL1wWxug", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEEptEv) +STUB( + "VgOSx4kc4to", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEED2Ev) +STUB( + "VgOz+bXEZUo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE5beginEv) +STUB("VgQFrQYIkZ8", _ZN12video_parser13cVideoPathEtsC2EPKc) +STUB("VgTgCOGMoeE", _ZN12video_parser5vpcom3rtc21ConvertUtcToLocalTimeEPKmPm) +STUB( + "VgX8gvTIisQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEC2ERS7_) STUB("VgYczPGB5ss", sceNpGetUserIdByAccountId) +STUB( + "Vgbv7Nv6Q5U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEE7get_refEv) +STUB("VghGSTR7j2U", _ZN7WebCore21DiagnosticLoggingKeys15isAttachmentKeyEv) +STUB( + "Vgi7p-BWC7Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEC1Ev) +STUB("Vgoc68RH3ZE", _ZN3sce7Toolkit2NP2V28Commerce8Category8deepCopyERKS4_) STUB("VgsWDKLc6v4", scePerfTraceDeleteBufferNotifyEvent) +STUB( + "VgwQsPduEoQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("VgxOLtCz-6s", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116JoinableUserTypeEEptEv) +STUB( + "Vh-bGes7WKU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEaSERKS9_) STUB("Vh1bhUG6mSs", sceNpInGameMessagePrepare) +STUB( + "Vh9+Ac6muX8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE21intrusive_ptr_sub_refEPS7_) +STUB("Vh9YqkzXdzE", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119BandwidthPropertiesD1Ev) +STUB( + "VhFkbp4l2d0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE5eraseENS2_8IteratorIS6_EERS9_) +STUB("VhKnWhtDDEg", _ZNK3sce2Np9CppWebApi11Matchmaking2V110UserTicket9getStatusEv) STUB("VhLnEiTuuWo", sceAgcDriverUserDataGetPacketSize) +STUB( + "VhN-f6s-C3g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEppEi) +STUB("VhPqx7G+T2M", _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead16unsetMatchmakingEv) +STUB("VhWBqIWDSj4", mono_debug_init) +STUB("VhWD7ylSQu8", + _ZNK3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody16getMaxScoreLimitEv) +STUB("VhXAk2UQP5s", _ZN7WebCore9FrameView31setVisualUpdatesAllowedByClientEb) +STUB("VhZgpZ6v1nI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEE5resetEPS6_) +STUB( + "VhcO5ZV4APE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEixEm) +STUB( + "VhdkLB9NWXM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEeqERKS9_) +STUB("VheCZrwJ7hg", _ZN9Inspector15RemoteInspector24updateClientCapabilitiesEv) +STUB("VhfrUFgM6bM", + _ZNK7WebCore9FrameView27windowClipRectForFrameOwnerEPKNS_21HTMLFrameOwnerElementEb) +STUB( + "Vhk3AIgeB5g", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "Vhov-cAztFE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE8pushBackERKS8_) +STUB( + "VhvyRUZ2nXk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEixEm) +STUB("VhwtC33fcrw", _ZN7WebCore9JSDOMRectC1ERKS0_) +STUB("VhyjwJugIe8", _ZNKSt7_MpunctIcE14do_curr_symbolEv) +STUB("Vi0Wp2wu-Mo", coil_get_http_proxy) +STUB("Vi2kKC0CNtc", _ZN3sce7Toolkit2NP2V28Matching7Request14SendInvitationC2Ev) +STUB( + "Vi48XDpvR-M", + _ZN7WebCore4Page24setCORSDisablingPatternsEON3WTF6VectorINS_21UserContentURLPatternELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("Vi7znQEB6AM", _ZN3sce7Toolkit2NP2V24Core7Request10TermParamsC2Ev) +STUB( + "Vi8gq0BCa4I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEE5resetEPS9_) +STUB( + "Vi9BXA-h52A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEC2Ev) +STUB("ViAnQdttzLY", _ZTVN7WebCore19MediaResourceLoaderE) +STUB( + "ViBgI3N-3Rs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB("ViCKQcpZnRc", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_8TempRankEEC2Ev) +STUB("ViFBLRl0424", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_19ProductInfoDetailedEE7addressERKS3_) STUB("ViGl7v+BjKc", sceS3daSendData) +STUB("ViHXU52nAU4", _ZNK7WebCore9TreeScope23ancestorNodeInThisScopeEPNS_4NodeE) +STUB( + "ViJ57i-5oHY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEC1Ev) +STUB( + "ViLjZJ6F-NA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEEaSERSA_) +STUB( + "ViMTtUPK60s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEC1EPS8_) +STUB("ViQtP2aCANc", mono_aot_Sce_Vsh_Np_Asmunbox_trampoline_addresses) +STUB( + "ViUSY3W1tC0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEdeEv) +STUB( + "ViV0J9p4gU4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE5emptyEv) +STUB("ViY5K4a-9ec", _ZN3sce7Toolkit2NP21InvitationListRequestC1Ev) STUB("VinlCA8Vkg8", sceKernelTerminateProcess) +STUB( + "ViobeO-fDLs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEneERKS9_) +STUB("ViqMLDD7f5A", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V18PlatformEEmmEi) +STUB("Viv12czuiVY", _ZN7WebCore11JSDOMWindow15subspaceForImplERN3JSC2VME) +STUB( + "VizQotMiGrI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB("Vj+KUu5khTE", _ZNSt12placeholders2_7E) STUB("Vj-F8HBqi00", sceFontSetGraphicsErrorCallback) +STUB( + "Vj0jhZiy9p4", + _ZN3sce7Toolkit2NP9Utilities6FutureISt4listINS1_11TusVariableENS1_15AppSTLAllocatorIS5_EEEED1Ev) +STUB( + "Vj0zD1Po36U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEE7add_refEv) +STUB( + "Vj2uSYd5S0M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE8pushBackERKS8_) +STUB("Vj3x-1To4sQ", JSGlobalContextGetIncludesNativeCallStackWhenReportingExceptions) +STUB( + "Vj4D93g7OwU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEEC2EPS6_PNS2_10LibContextE) +STUB("Vj7HiXK-tTg", _ZN3sce2np12HttpTemplateC1Ev) +STUB("Vj9yHRW-BTE", _ZN7WebCore17PageConsoleClientnwEm) STUB("VjBtg5Btl94", sceKernelSetFsstParam) +STUB("VjCxH+jj2aY", _ZN7WebCore9HTMLNames11noshadeAttrE) +STUB( + "VjEF+wSPjsc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) STUB("VjLkKY0CQew", sceUserServiceGetHoldAudioOutDevice) +STUB("VjU+hFkdHyg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119SubtaskAvailabilityEEptEv) +STUB( + "VjU9XzKj5H0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEdeEv) STUB("VjVukb2EWPc", sceNpWebApiIntRegisterServicePushEventCallback) STUB("VjWR6g9qL2k", sceKernelReserve2mbPage) +STUB( + "VjY7puUvVAY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("VjbT-tj7BHk", + _ZNK3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V113ErrorResponse8getErrorEv) +STUB("VjdHOW8p4Q4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEdeEv) +STUB( + "Vje+IjAPQ6c", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEdeEv) STUB("VjhsmxpcezI", sceAudiodecInitLibrary) +STUB("Vjmqapc9BCM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE3endEv) +STUB("VjthMfexIg0", _ZN7WebCore6Editor9copyImageERKNS_13HitTestResultE) +STUB( + "Vjv+I-aNWFU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE5beginEv) +STUB( + "VjzJ3QhfOh8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE5beginEv) +STUB( + "Vk-9HMEErLw", + _ZN3sce2Np9CppWebApi14SessionManager2V131RequestGameSessionPlayerFactory6createEPNS1_6Common10LibContextEPKcS9_PNS5_12IntrusivePtrINS3_24RequestGameSessionPlayerEEE) +STUB("Vk00y0+BWJY", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_checkRate) +STUB("VkBn3M7Hemw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE5emptyEv) +STUB("VkBp9YPOcOw", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats24unsetMatchCompletionRateEv) +STUB("VkLNWDUZmcs", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia10BroadcastsEE12deepCopyFromERS7_) +STUB("VkP5m3TmVTw", il2cpp_class_is_interface) +STUB("VkTAsrZDcJ0", sigfillset) +STUB( + "VkWHJatVtvE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEmmEi) +STUB( + "Vkhewx6tULs", + _ZN7WebCore26PresentationOrderSampleMap43reverseFindSampleContainingPresentationTimeERKN3WTF9MediaTimeE) +STUB( + "Vkj4ig9TdTM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEED1Ev) +STUB( + "VkkeAVEbxzE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEED1Ev) STUB("Vkkhy8RFIuk", sceHmdDistortionGetWideNearCorrectionCommand) +STUB( + "Vkp71L9UOC8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEED0Ev) STUB("VkqLPArfFdc", sceImeKeyboardGetInfo) +STUB( + "VkqilTtSq7U", + _ZNK3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead14sessionIdIsSetEv) +STUB( + "Vks81ja8VBI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEC2Ev) STUB("VktOEpV48Zg", sceIduUtilSetSettingBin) STUB("Vku4big+IYM", sceCompanionHttpdGetEvent) +STUB("VkuqrdPi5Gc", _ZN3WTF8JSONImpl5ValueD2Ev) +STUB("VkzubmxnY7s", _ZN15AbstractStorage14YoutubeStorageD0Ev) +STUB( + "Vl1FusNnfvc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEppEi) +STUB( + "Vl5wjPHTsHw", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle10setPerGameERKNS1_6Common12IntrusivePtrINS3_19PlayStylePropertiesEEE) STUB("VlAQIgXa2R0", sceScreenShotGetDrcParam) STUB("VlBT16890mA", sceAudioPropagationSystemSetRays) +STUB("VlDpPYOXL58", __floattisf) +STUB( + "VlEoW+iiU2o", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("VlKw6-tujEM", _ZN3sce2Np9CppWebApi7Matches2V116JoinMatchRequest8fromJsonERKNS_4Json5ValueE) +STUB("VlL7D8EyZ1M", _ZN9Inspector14ConsoleMessagenaEm) +STUB("VlLUrQooQaw", g_get_prgname) +STUB("VlNJHzNQNFU", _ZNK7WebCore11EventRegioneqERKS0_) +STUB( + "VlXZQKWNX1k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEC2Ev) +STUB("VlZAxyVKJfs", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE5beginEv) STUB("Vla-Z+eXlxo", sceLibcMspaceFree) STUB("Vlaj1gwmIFA", sceAgcDriverSetupAsyncGraphics) +STUB( + "VlcNpqm2iyQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("VljXeIAPJoA", _ZNK7WebCore20ResourceResponseBase3urlEv) +STUB("VllPYdyh54A", _ZN3sce7Toolkit2NP2V27Ranking17GetGameDataResultC2ERKS4_) +STUB("VlnUVT4Q3rI", CurlSendRequest) +STUB( + "Vlqk1O38DN4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEED2Ev) +STUB( + "Vlz-+xklsHM", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanity22setwebApiFilterRequestENS1_6Common12IntrusivePtrINS3_19WebApiFilterRequestEEE) +STUB("Vm2-mAf4-AQ", _ZN9MmsMp4BoxD2Ev) +STUB( + "Vm3EFD+Monk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEC2Ev) +STUB( + "VmA3nUW-24Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEmmEv) +STUB( + "VmD4gGWce3M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEC1Ev) +STUB( + "VmEFxiVLkoM", + _ZN3sce2Np9CppWebApi7Matches2V131ResponseTeamMemberResultFactory7destroyEPNS3_24ResponseTeamMemberResultE) +STUB("VmIq47V4LYg", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110PlayerTypeEEC1Ev) +STUB("VmOyIzWFNKs", _ZNSt14numeric_limitsIdE14max_exponent10E) STUB("VmQkpRjBp3s", sceRegMgrToolDataCheckGet) +STUB( + "VmVagdnSNdY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEED2Ev) STUB("VmW0Tdpy420", sceAgcDcbWaitRegMem) +STUB( + "VmWnzbBqhuQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE5emptyEv) +STUB("VmXnBWaMlfs", _ZN3sce7Toolkit2NP2V212ActivityFeed6ActionD2Ev) +STUB("VmZ+5e2vHUo", _ZN3sce7Toolkit2NP2V210Tournament15RegisteredTeams8deepCopyERKS4_) +STUB("VmZ5-w-K2Zc", u_terminateUChar32s_67) +STUB("Vmec-LIL5G4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE5beginEv) +STUB( + "Vmf+BjC5PSs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE3endEv) +STUB("VmmhD8S48rM", _ZN3sce7Toolkit2NP2V212ActivityFeed6Action19MAX_BUTTON_CAPTIONSE) +STUB("VmoWTH9Nc+s", Java_java_util_TimeZone_getSystemGMTOffsetID) STUB("Vmog0fe2m+E", sceMoveTrackerPlayGetImages) STUB("VmqSnjZ5mE4", sceHttpDbgSetPrintf) +STUB("VmqsS6auJzo", _ZNSt5ctypeIwE2idE) +STUB( + "VmsCt8QcNxU", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("VmtJUV5zT+M", mono_aot_System_IO_Compressionunwind_info) +STUB( + "VmvaI+RZTlI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEE11release_refEv) +STUB("VmyZaBLnw0Y", utext_openConstUnicodeString_67) +STUB( + "Vn-LzzTB+xY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEED2Ev) +STUB("Vn2oEf52pKI", mono_aot_Sce_Vsh_Sl2_Sl2Clientmethod_addresses) +STUB("Vn3Vg9eIOzk", + _ZNK3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead6toJsonERNS_4Json5ValueEb) +STUB( + "Vn4-DjtH6XY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE8pushBackERKS8_) +STUB( + "Vn5V6nYUKQg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEppEv) +STUB("Vn5YcS44TwY", ztrans_openEmpty_67) +STUB( + "Vn6ks6XTMtQ", + _ZN9Inspector19InspectorAuditAgent19populateAuditObjectEPN3JSC14JSGlobalObjectERNS1_6StrongINS1_8JSObjectELNS1_30ShouldStrongDestructorGrabLockE0EEE) +STUB("Vn6oqwo6r2A", _ZN3sce7Toolkit2NP2V212ActivityFeed5MediaD1Ev) +STUB( + "Vn8i8biyz2o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEEC2Ev) +STUB("VnBhrXIJFNc", uregex_end_67) +STUB("VnBpPEefyl0", udata_openSwapper) +STUB( + "VnCeoJhWujA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEcvbEv) +STUB( + "VnFb4Lfgd1Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEC2EPS8_) +STUB("VnLOgQrMkco", _ZNK3JSC8JSObject11hasPropertyEPNS_9ExecStateEj) +STUB("VnQolo6vTr4", _ZN3sce2np9WorkQueue5StartEv) +STUB( + "VnUZBkL5ihs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("VnapSGACOBU", __wrap_link) +STUB( + "VnglUKTbq2g", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE3endEv) +STUB("Vni+f8M46JY", rgctx_fetch_trampoline_mrgctx_119) +STUB( + "Vnj-Bkh+Bg0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEC1ERS7_) +STUB("Vnj7Ahtg1Zc", _ZNK7WebCore17ActiveDOMCallback17canInvokeCallbackEv) +STUB( + "VnjjB78RfuI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "VnjtpVVD63Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE3endEv) +STUB( + "VnngGyk0Wew", + _ZN3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatformC1EPNS1_6Common10LibContextE) +STUB("VnqBArPbLB4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEE5resetEPS6_) +STUB("VnvLMnyTWKM", + _ZN3sce2Np9CppWebApi14ConnectAccount2V215AccountLinksApi28ParameterToDeleteAccountLinkaSERS5_) +STUB("Vo-n3W7egKM", _ZN3sce7Toolkit2NP2V212ActivityFeed9StoryUserD2Ev) +STUB("Vo1FHbLwrgw", _ZN7WebCore9HTMLNames9vlinkAttrE) STUB("Vo1qeT4JY6I", sceKernelGetUtokenUseSoftwagnerForRcmgr) +STUB( + "Vo3OWY+Pr9Q", + _ZN9Inspector21InspectorConsoleAgent27didCreateFrontendAndBackendEPNS_14FrontendRouterEPNS_17BackendDispatcherE) STUB("Vo5V8KAwCmk", sceSystemServiceHideSplashScreen) +STUB("Vo8rvWtZw3g", truncf) +STUB( + "Vo9TEAjPDzQ", + _ZN12video_parser17cVideoProfilerMp417_getVideoCodecAVCER33ff4_play_visual_sample_entry_infoPvPNS_17VpVideoCodecAVC_tE) +STUB( + "VoBUnnKmtZ4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE7reserveEi) +STUB( + "VoCHezBUtTM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("VoE7oXGwqBc", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEEcvbEv) +STUB("VoUwme28y4w", _ZSt18_String_cpp_unused) STUB("VoX9InuwwTg", sceAudioInDeviceOpen) STUB("VoXRcLMOH7w", sceFiosPathcmp) +STUB("VobCxKYaPNk", _ZN12video_parser14cVideoOperatorC2EPKc) +STUB( + "Vod+Xb13yb4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEC1Ev) +STUB("Vog+2+jBSoQ", mono_btls_x509_free) +STUB( + "VogoRxRpcO4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEppEv) +STUB( + "VohNK6-hfsk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "VohgZ9+XrVg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEE7get_refEv) +STUB( + "VokcGDcduZs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEE7get_refEv) +STUB("Voo7LR5dQVs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEE7get_refEv) +STUB("Vov9fE6FD1c", glGetTexParameteriv) +STUB("Vovji77EPlo", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE7reserveEi) +STUB( + "VowIE5quxTU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEC1Ev) +STUB("Voy9h9jZKi0", + _ZNK3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse19personalDetailIsSetEv) +STUB("VoyTsrKlfdg", _ZN3JSC18GCActivityCallbackD1Ev) +STUB("VozymYWJbtU", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request13GetPlayedWithD1Ev) +STUB( + "Vp48X1IAGLI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE3endEv) STUB("Vp4uzTQpD0U", sceFontGraphicsSetVertexesGlyphScale) +STUB("Vp9BxZZZykQ", __asan_exp_loadN_noabort) +STUB("VpBDJNUL7Gw", _ZNK3JSC23VariableWriteFireDetail4dumpERN3WTF11PrintStreamE) +STUB( + "VpCqPhNq3s8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "VpF8UswxdLw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEixEm) +STUB("VpMTrmtXHPE", WKPreferencesSetDOMTimersThrottlingEnabled) +STUB("VpQBXbaHXOo", _ZNK3sce4Json6String5rfindEPKcm) STUB("VpRmC6zo1wQ", sceSaveDataDeleteProspero) +STUB("VpTB5N6G-0o", _ZN7WebCore23AuthenticationChallengeC2ERKS0_) +STUB( + "VpTd1NkurnA", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12string1IsSetEv) +STUB("VpVK5yiU1UE", _ZN15AbstractStorage12LocalContentD0Ev) +STUB("VpW3ZH9ZKxY", BN_num_bits) +STUB("VpYF1vk9rbc", _ZN3sce7Toolkit2NP15AppSTLAllocatorIcE7addressERc) +STUB("Vpb7K6EYJJk", WKBundlePageSimulateMouseUp) +STUB("VpiyRGGF0Og", _Z32sceGpuDebuggerRegisterShaderCodePKN3sce3Gnm16HsStageRegistersEjPKc) +STUB("VpnRVAozBCQ", WKPreferencesSetSnapshotAllPlugIns) +STUB("VpslPflOWdM", WKContextMenuItemCreateAsSubmenu) +STUB( + "VpteAyGpRCg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE7reserveEi) +STUB("VpwLNOF8xpM", uspoof_openFromSource_67) +STUB("VpwhOe58wsM", + _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewl) +STUB("VpwymQiS4ck", _ZNSt15basic_streambufIcSt11char_traitsIcEE6xsgetnEPci) +STUB("Vpybd+KKqpU", _ZNK3sce2Np9CppWebApi15Personalization2V15Error9getSourceEv) +STUB("Vq-u6CrL6wY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEEaSERKS6_) STUB("Vq8Y0nLGy74", sceOpusSilkEncDestroy) +STUB("Vq9LKkPXkIQ", _ZN3sce2np10CancelLockC1Ev) +STUB("Vq9e5f1ITkU", _ZN3sce7Toolkit2NP2V211SharedMedia9Broadcast18MAX_LEN_CHANNEL_IDE) +STUB("VqA-t-2aCMY", JVM_GetDeclaredClasses) +STUB("VqAPI9ZTizI", _ZN3sce2Np9CppWebApi11Matchmaking2V15ErrorD2Ev) +STUB("VqC3rnfDul0", _ZN7WebCore9IPAddressC1ERK11sockaddr_in) +STUB("VqCI8pEH8e8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEEC2ERS6_) STUB("VqEMuCv-qHY", pthread_rwlockattr_getpshared) +STUB( + "VqJnRoVDdVs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEC2EPKS8_) +STUB( + "VqPNxs5kJR4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE8pushBackERKS8_) +STUB("VqQZt-E914s", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEEC2EPS4_) +STUB( + "VqWI9SyutcE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEaSERKS7_) STUB("VqZX7POg2Mk", sceNpMatching2SearchRoom) +STUB("VqavhbVCsuU", __kernel_tanl) +STUB("VqcOL-f+Pu8", udat_countSymbols_67) +STUB("VqhvM-d3wCI", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIlEC1Ev) +STUB("VqjRqQgFDZk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEcvbEv) +STUB("Vqk2JMa6AP4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEED2Ev) +STUB("Vqr5qjh+JsY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEE3getEv) +STUB("Vqs5txv04ew", _ZN3sce7Toolkit2NP2V23TUS12TusVariables8deepCopyERKS4_) +STUB("VquwU0HwVP4", Java_java_lang_System_setIn0) +STUB("VqxSQUpGnkY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEC1ERKS7_) +STUB( + "Vr5TZ8krd30", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEE3getEv) +STUB( + "Vr5rk9Sc6eI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEmmEi) +STUB("VrHckxAPXfU", _ZThn16_N9Inspector21InspectorRuntimeAgent19disableTypeProfilerERN3WTF6StringE) +STUB("VrIbNi47c+o", + _ZN7WebCore18TextureMapperLayer23setContentsClippingRectERKNS_16FloatRoundedRectE) +STUB("VrJb1YjehwI", WKApplicationCacheManagerGetTypeID) +STUB("VrN20sLNYT8", _ZN7WebCore14ResourceLoader31didBlockAuthenticationChallengeEv) +STUB("VrNHY6-8IQM", _ZN3JSC8Debugger18didReachBreakpointEPNS_9ExecStateE) +STUB( + "VrNbyJE2gDo", + _ZN3sce7Toolkit2NP14GameCustomData9Interface12getThumbnailEPKNS1_30GameCustomDataThumbnailRequestEPNS1_9Utilities6FutureINS1_17MessageAttachmentEEEb) +STUB("VrO8+pzlpTU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth7IdTokenEE5resetEv) +STUB("VrOadwAC89o", _ZN7WebCore28InspectorFrontendClientLocal15canAttachWindowEv) +STUB("VrPWNYIghHM", mono_aot_Sce_Vsh_GameCustomDataunwind_info) +STUB("VrSRU7-K3D8", _ZNK3sce2Np9CppWebApi6Common8IteratorIjEeqERKS4_) STUB("VrWK7GksARg", scePlayReadyFreeDecryptContext) +STUB("VrWUXy1gqn8", _ZSt10_Rng_abortPKc) +STUB("VrXGNMTgNdE", _ZNSt13basic_filebufIwSt11char_traitsIwEE5uflowEv) STUB("VrYn7rkjRYU", sceDeci4hDrfpOpendir) +STUB("Vrab2WK1mgk", FT_Face_GetCharVariantIsDefault) +STUB("VrbMpjHagTs", _ZN7WebCore30InspectorInstrumentationPublic17s_frontendCounterE) +STUB("VrbjBw4B52U", freeSystemMemory) +STUB("Vrdrxhj+Ijg", WKPageCopyCustomTextEncodingName) +STUB("Vrhtx3xfdK8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE6resizeEj) +STUB( + "VrkeQc84og8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEED1Ev) +STUB( + "VrmP11iLJ-E", + _ZN7WebCore14FormController19referencedFilePathsERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) STUB("VrvpoJEoSSU", sceSystemServiceGetTitleWorkaroundInfo) +STUB( + "VrwA3SHuIvA", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEEC2ERKSC_) +STUB( + "Vs1HI2Egl+c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEC2EPKS8_) +STUB("Vs5YhCzlKpw", _ZN4Manx13WorkQueueImpl26registerSocketEventHandlerEiPNS_9WorkQueue8FunctionE) +STUB("VsJCpXqMPJU", _ZNKSt8numpunctIwE8groupingEv) +STUB( + "VsLULvxpYcc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEC2ERS7_) +STUB("VsNuCz1kMS8", _ZN7WebCore9HTMLNames15playsinlineAttrE) +STUB("VsP3daJgmVA", _Cnd_broadcast) +STUB( + "VsPYqFxZpzo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEED2Ev) +STUB( + "VsPqCxfe8y0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEEaSERSA_) +STUB("VsQFi9sWc88", _ZN3WTF5equalEPKNS_10StringImplEPKh) +STUB("VsRcCqasvZM", mono_metadata_blob_heap) +STUB( + "VsUc9+EjVcw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE8copyFromERKS9_) STUB("VsVD7+SYlNc", sceFaceTrackerRegisterUser) +STUB("VsVz0tFoLmg", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE3endEv) +STUB( + "VsXorUNiEuc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("VsdqnfsmpNc", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_23NpSessionInvitationInfoEED2Ev) +STUB("Vsj50ZwNUFM", _ZN3sce2npeqERKNS0_13NpTitleSecretERK16SceNpTitleSecret) +STUB("VsjLgu8EHe8", _ZN7WebCore8Settings32setShouldAllowUserInstalledFontsEb) +STUB( + "VsoTCMo9gFk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEptEv) +STUB("Vss-cCTPQyE", _ZN3sce7Toolkit2NP2V28Commerce7Request14CheckoutTargetC2Ev) +STUB( + "VsuVxnckM4Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEEC1ERSA_) +STUB("VsvqCSrlioE", _ZN3sce7Toolkit2NP2V28Matching5RoomsD1Ev) +STUB( + "VsvtWWtygzE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEEC2ERKSA_) +STUB( + "VszTcTM8sKs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE7popBackEv) +STUB( + "Vt1Mu7NKX1s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEED1Ev) +STUB("Vt1kIfFn28M", _ZN9Inspector33InspectorBackendDispatcherHandlerD2Ev) +STUB("Vt77FkhdQZQ", _ZN3sce7Toolkit2NP2V27Ranking8TempRankD1Ev) +STUB("Vt7cY54eO1s", _ZN23sceMetadataReaderWriter20LoadedParserInfoList6getNumEv) +STUB("VtFCouWs9cA", _ZN7bmalloc11AllIsoHeapsC2ERKSt11scoped_lockIJNS_5MutexEEE) +STUB( + "VtFdDduqUo0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEneERKS9_) +STUB("VtFxCq4qw3c", _ZN12video_parser10cVideoPath13GetDeviceNameEv) +STUB("VtIALaaibVM", mono_aot_Sce_Vsh_Messagesplt_end) +STUB( + "VtKX120KVgU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEmmEv) +STUB("VtLCmCa4-IQ", SSL_CTX_set_quiet_shutdown) +STUB( + "VtLWVzMeVac", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_6NpUserENS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv) +STUB("VtRkfsD292M", fegetexcept) +STUB("VtRzSXM66qs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE4sizeEv) +STUB("VtbT4mcP-10", + _ZN8meta_gen11MsvPromoter20setKeyValueTBLTTitleENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti) +STUB("VteK1e0o0fY", nsnp_ActionCheck) +STUB( + "VtfSUQ9Z2B8", + _ZN3sce2Np9CppWebApi12Leaderboards2V128GetRankingRequestBodyFactory7destroyEPNS3_21GetRankingRequestBodyE) +STUB( + "VthkhTUaI4w", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE8capacityEv) +STUB( + "Vtl5U83F8Ak", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEEdeEv) +STUB( + "VtmJ55ZvVKk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "VtoD9YBLmR4", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody6toJsonERNS_4Json5ValueEb) +STUB("VtuocElDPtM", _ZN13MsvMetaEditor9tellFileXEv) +STUB( + "VtxOzdCI3CU", + _ZN3sce2Np9CppWebApi7Matches2V125ResponseCompetitiveResult14setTeamResultsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_19ResponseTeamResultsEEEEE) STUB("VtyS8XLBqNE", sceNpSnsFacebookGetAccessToken) +STUB( + "VuAZPAfWAQM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEdeEv) +STUB("VuC0CBsgzIU", _ZN7WebCore12SharedBufferC1EON3WTF14FileSystemImpl14MappedFileDataE) +STUB("VuFdyUE9Vgo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEEC1EPS6_) STUB("VuKbx6zlEG4", scePlayerReviewDialogGetResult) +STUB( + "VuKgUh0YEPg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "VuM0Gq3lx5U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("VuMMb5CfpEw", wcsxfrm) +STUB("VuNAygCVMS0", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V114ResultsVersionEEmmEv) +STUB("VuUZiw6lcDM", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V113ErrorResponseC2EPNS1_6Common10LibContextE) +STUB( + "VuVBj17ypgU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEneERKS9_) +STUB("VuW2xk1On78", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEE11release_refEv) +STUB("VuWLZlrJGAI", + _ZN3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsersC2ERS5_) +STUB("VuXwi7W32Y4", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEEptEv) +STUB( + "VuYXwqxmDqs", + _ZN3sce2Np9CppWebApi13InGameCatalog2V520ContentRatingFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_13ContentRatingEEE) +STUB("Vub52619U9Q", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEE7add_refEv) +STUB("Vubr42yhipE", _ZNK7WebCore8Document4bodyEv) +STUB("VuddC0lOQ9s", _ZN7WebCore15DatabaseTracker13isInitializedEv) +STUB("VupGFa09Gh8", _ZN7WebCore9HTMLNames31onwebkitmouseforcewillbeginAttrE) +STUB("Vurct5c9rO8", _ZN3sce2Np9CppWebApi7Matches2V118AddedPlayerFactory7destroyEPNS3_11AddedPlayerE) +STUB( + "VusCW4L5M0A", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB( + "VutI7mNZw8k", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEEptEv) +STUB( + "Vv+XEVmzZF4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEE7get_refEv) +STUB("Vv+jb7KJM9s", mono_mempool_alloc0) +STUB( + "Vv+r6l8KTNs", + _ZN7WebCore24DocumentMarkerController23renderedRectsForMarkersENS_14DocumentMarker10MarkerTypeE) +STUB("Vv6rsGkhZzU", _ZN3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatformD2Ev) STUB("VvAMtxBHcZc", ScePsmMonoStringToUtf8) +STUB("VvDiRHz3WQk", OBJ_create) +STUB("VvJf84s5lHM", _ZNSt9basic_iosIcSt11char_traitsIcEEC1EPSt15basic_streambufIcS1_E) STUB("VvNl5Yy0A6U", pthread_mutexattr_getgen_np) +STUB("VvTx2Tv+SY0", _ZN3sce7Toolkit2NP2V211UserProfile9NpProfile28MAX_SIZE_PROFILE_PICTURE_URLE) +STUB("VvaRHKvH0cU", _ZN7WebCore21DiagnosticLoggingKeys26failedMoreThan20SecondsKeyEv) +STUB("Vvdo5nXj3oU", _ZN3WTF22charactersToUIntStrictEPKhmPbi) +STUB("VvkbP1qGadM", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112GroupingTypeEEC1EPS6_) +STUB( + "VvnoG5NoLp0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEdeEv) +STUB( + "VvqMbi-ocVY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "VvqamXBneSE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEED2Ev) +STUB( + "Vvz1QRGjbu8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("Vw+gFlE70Rc", ucnv_fromUWriteBytes_67) +STUB( + "Vw03kdKZUN0", + _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tmcc) +STUB("Vw1eCDkdnCA", + _ZN3WTF13StringBuilder25extendBufferForAppending8ENS_7CheckedIiNS_14RecordOverflowEEE) +STUB( + "Vw5M5bg7a9k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "Vw7Gn9YKJb8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE7popBackEv) STUB("Vw8Hg1CN028", sceUsbdEventHandlerActive) +STUB("VwAYij35rOo", il2cpp_field_static_set_value) STUB("VwF4r--aouQ", sceUserServiceGetPbtcWednesdayDuration) +STUB( + "VwGAxuunru0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEplEm) +STUB( + "VwH4W14dB4w", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEdeEv) STUB("VwJ5L0Higg0", sceNpWebApiGetHttpResponseHeaderValue) +STUB("VwMs8W4zc7k", mono_gc_toggleref_register_callback) +STUB( + "VwXQ32JheaU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("VwaGH4DPYxg", + _ZN9Inspector22ContentSearchUtilities26findStylesheetSourceMapURLERKN3WTF6StringE) STUB("VwadwBBBJ80", sceSaveDataUmountWithBackup) STUB("Vwc+L05e6oE", scePthreadSemDestroy) +STUB( + "Vwd87M1893E", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEiRNS2_10LibContextEPT_m) +STUB("VwdSDjyPJ6s", _ZN9Inspector15RemoteInspector6ClientC2Ev) +STUB( + "Vwe4xUPqBrU", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("VwkgbfMINsc", _ZN3sce3Xml13AttributeListD2Ev) +STUB("Vwkje933MBg", _ItL_pS5) +STUB("Vwp2xkMeMKA", localtime_r) +STUB( + "Vwq-jdC+1T4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEC2EPS8_) +STUB( + "Vwq5rECesT0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE5emptyEv) +STUB("VwqoXNdHHNA", _ZN7WebCore11MediaPlayer11muteChangedEb) +STUB( + "VwtsvzMN7Jk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEEdeEv) +STUB( + "VwzOXrkEN8Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEaSERKS9_) +STUB( + "Vx+8N9cB+q8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "Vx3dOMIoWm4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEEC1ERKSA_) +STUB("Vx97KCUtnBo", _ZNK7WebCore6Editor7Command5stateEPNS_5EventE) +STUB( + "VxBIRxeYwPk", + _ZN3sce2Np9CppWebApi14SessionManager2V148GetUsersAccountIdGameSessionsResponseBodyFactory7destroyEPNS3_41GetUsersAccountIdGameSessionsResponseBodyE) +STUB( + "VxF0+-C8jrg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("VxG0990tP3E", wcsncat_s) +STUB("VxJZcA4mtbU", mono_gc_get_used_size) +STUB("VxJj5rJX3iA", monoeg_g_strdup_printf) +STUB("VxKQGrudnzk", _ZN3sce2np18MemoryStreamWriter5WriteEPNS0_6HandleEPKvmPm) +STUB( + "VxKeSwoeJz0", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi42ParameterWithBinaryRequestBodyToUploadDataC2Ev) +STUB("VxLqzOIfKeY", __lo0bits_D2A) +STUB("VxM2SglJnR0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10ContainersEED2Ev) +STUB("VxObo0uiafo", _ZTSSt10money_base) STUB("VxRZE4CZQw8", sceShellCoreUtilTriggerPapcRecalculation) +STUB( + "VxUhy2LCohA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEE7get_refEv) STUB("VxWJ7DUrEIQ", sceShellCoreUtilGetProgressOfFormatExternalHdd) +STUB("VxXBo11wZ68", _ZN15AbstractStorage12LocalStorage14GetStorageSizeEPlS1_S1_) +STUB("VxYFhw1rdN0", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEEC1ERKS6_) +STUB("Vxa9q26hgS4", ubidi_getCustomizedClass_67) +STUB("Vxaun6aQclg", _ZN22MmsMdCommonFsOperation11readToCacheEmj) +STUB( + "Vxf41Q97oI8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE21intrusive_ptr_add_refEPS9_) STUB("VxjXt8G-9Ns", sceNpPushUnregisterExtendedDataFilter) +STUB( + "VxmUwUiTxQ4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEmmEi) +STUB("VxoMWVH-lxg", _ZNK7WebCore8Document31displayStringModifiedByEncodingERKN3WTF6StringE) +STUB("VxyKwZkPqu4", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getGPR) +STUB("Vy-qRLNKtFU", _ZN3sce2Np9CppWebApi11UserProfile2V16Avatar6setUrlEPKc) +STUB( + "Vy5GVRt9OJY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEC2Ev) +STUB( + "Vy5SAP-Zxfc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEE3getEv) +STUB("Vy6tew6SeVU", psl_suffix_wildcard_count) +STUB( + "Vy84kBX7cbc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEptEv) +STUB("VyCn9EVJGlU", _ZN3sce2np10JsonNumber6SetNumEPKc) +STUB( + "VyCoVdVOx6E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEEC2EPS6_PNS2_10LibContextE) +STUB( + "VyEC6MZ8Gn8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEEC2ERKSA_) +STUB( + "VyGssizEm54", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEeqERKS9_) +STUB( + "VyIX0d9yKGQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEED2Ev) +STUB("VyKZGaC+ugc", _ZN7WebCore17toLinearDisplayP3ERKNS_9DisplayP3IfEE) +STUB( + "VyLFv-rmsOA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEEC1Ev) +STUB( + "VyOHMLNkbNs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("VyRD9BRegrw", utext_previous32From_67) +STUB( + "VyVuDQ4n61E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEC1EPNS2_10LibContextE) +STUB( + "VyZ-kJ6O5eo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEED2Ev) +STUB("VyZfeEo8tqc", mono_thread_suspend_all_other_threads) +STUB("Vya8j6NTYkA", _ZN3sce2Np9CppWebApi14SessionManager2V115SearchCondition9getValuesEv) +STUB( + "VybBKtTniZo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEcvbEv) +STUB("VyeMG5If2f8", _ZN9Inspector22RemoteAutomationTarget11setIsPairedEb) +STUB( + "VyheceWrlmI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEE3getEv) +STUB( + "VykEXsDjCnE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEC1ERKS7_) +STUB( + "VylFE4PVOCU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEE5resetEPS6_) STUB("VyxKS1qRxDk", sceUlpMgrVshUninstallCmd) +STUB("VyyGOGGVouY", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEED2Ev) +STUB( + "VyzQ5T1KH-E", + _ZN7WebCore21WheelEventTestTrigger27removeTestDeferralForReasonEPKvNS0_22DeferTestTriggerReasonE) +STUB("Vz+qoK9rdyA", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getAlignedSubtitle) +STUB("Vz0SRbyhwxA", uprv_ebcdicToLowercaseAscii_67) +STUB("Vz64pb7ffJk", mono_aot_Sce_Vsh_VideoFramework_Platformmethod_addresses) +STUB( + "Vz7ZPoEyb7A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEptEv) +STUB( + "Vz8lvMb5Juw", + _ZN9Inspector20DOMBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) +STUB("VzBZRNTbSe8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEEneERKS7_) +STUB("VzFMGaWrlAI", _ZNK3JSC8JSObject11hasPropertyEPNS_9ExecStateENS_12PropertyNameE) +STUB("VzJ+wuTOprM", _ZN3WTF10StringImpl11reverseFindEDsj) +STUB( + "VzPJITGA850", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "VzQycdgaLpw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE8pushBackERKS8_) +STUB("VzSHT3URAAY", YGConfigSetPointScaleFactor) +STUB("VzSg0xUeDtw", __tsan_atomic32_fetch_sub) +STUB( + "VzZIOWx4fRY", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBodyC2EPNS1_6Common10LibContextE) +STUB("VzaJYPlzMMc", _ZTVN3WTF8JSONImpl10ObjectBaseE) +STUB( + "Vzi7QNKqQa8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEmmEv) STUB("Vzl66WmfLvk", sceKernelMemoryPoolCommit) +STUB("Vzob5RCgfnY", _ZN3sce2np18HttpConnectionPool4InitEi) +STUB("Vzp+LwIEg3o", + _ZN15AbstractStorage10YoutubeAPI6ResumeERSbIcSt11char_traitsIcENS_8StlAllocIcEEERlm) STUB("VzxN3tOouj8", sceNpTusSetDataA) STUB("W+-F1p6av2g", sceUpsrvUpdateStartUpdateTask) +STUB( + "W+-RA2Vn-cc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEC1Ev) +STUB("W+2HQAGdPuU", __asan_register_elf_globals) +STUB( + "W+349XAmB8o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEC2Ev) +STUB( + "W+88Pbe6zYQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEE7get_refEv) +STUB( + "W+ACV7LDgeI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEED1Ev) +STUB("W+FQt2MUK+4", WKURLCreateWithBaseURL) +STUB( + "W+Iu03kWy+4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEeqERKS9_) +STUB( + "W+J7ciyOKIU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEppEv) +STUB("W+JmcR22LQo", _ZN3sce7Toolkit2NP2V28Matching6Member18getMemberAttributeEPKc) +STUB("W+KOtirSb7U", _ZNK7WebCore16TrackPrivateBase5labelEv) +STUB( + "W+MqOXimmpE", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEiRNS2_10LibContextEPT_m) +STUB( + "W+OVJl-IxEk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEC2Ev) +STUB( + "W+P4aMC9Pao", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE5beginEv) STUB("W+QrDTbhLkg", sceCesUtf32leToMbc) STUB("W+TGgcnH-Kk", sceVdecswGetDecodeOutput) +STUB( + "W+UxCtLO0AI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEED2Ev) +STUB( + "W+VEHreLGRg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEEC2ERSA_) STUB("W+VrzBY+LBA", sceApplicationNotifyCoredumpRequestEnd) +STUB("W+W0GfCiB8Q", GCC_except_table223) +STUB("W+XKQCLr724", _ZN7WebCore17CredentialStorage3getERKN3WTF6StringERKNS_3URLE) +STUB( + "W+aj8nyPyJE", + _ZN7WebCore11DisplayList8RecorderC1ERNS_15GraphicsContextERNS0_11DisplayListERKNS_20GraphicsContextStateERKNS_9FloatRectERKNS_15AffineTransformEPNS1_8ObserverE) +STUB( + "W+eaXpQ1YMU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEEC1EPS8_PNS2_10LibContextE) +STUB( + "W+es4Dlgpyc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEEaSERKSA_) +STUB("W+h5wzGN-IA", mono_aot_Sce_Vsh_ShareServerPostWrapperunbox_trampoline_addresses) +STUB("W+insDsEG98", _ZN7WebCore8SVGNames21overline_positionAttrE) +STUB( + "W+jZWL68ARc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEE7get_refEv) +STUB("W+jyDVS+594", curl_share_strerror) +STUB("W+ldaqlZSFs", _ZN3sce7Toolkit2NP2V210Wordfilter7Request13FilterCommentC1Ev) +STUB("W+lrIwAQVUk", _FXp_mulh) +STUB( + "W+nizAXipFA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "W+uipM8JBWk", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29getJoinedPlayerSessionsByUserEiRKNS4_40ParameterToGetJoinedPlayerSessionsByUserERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_43GetUsersAccountIdPlayerSessionsResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("W+vyB7dzKsQ", Java_com_sony_bdjstack_core_AppCacheManager_close) +STUB( + "W-+VFOyreJE", + _ZN3sce2Np9CppWebApi14SessionManager2V162PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyFactory7destroyEPNS3_55PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyE) STUB("W-0xwY0ZMjw", sceNpUniversalDataSystemDestroyEventPropertyArray) +STUB("W-1-yJl+8K8", _ZN7Nicosia5Scene5StateC1ERKS1_) +STUB( + "W-1Je2xTXzM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("W-26Z41tH7I", ucfpos_constrainField_67) STUB("W-2WOXEHGck", sceFontWritingRefersRenderStep) +STUB("W-2Z-MZ8kh0", _ZN3sce7Toolkit2NP2V29Challenge18ChallengeThumbnail18MAX_SIZE_THUMBNAILE) +STUB( + "W-5oG6MPG6M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEmmEi) +STUB( + "W-9Og-RToOs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("W-ACkskGXtw", _ZNK3JSC8Profiler8Database4saveEPKc) +STUB("W-N1uRtrfzk", _ZNSt15basic_streambufIwSt11char_traitsIwEE6setbufEPwi) +STUB("W-NaDFVq+kE", _ZN13MsvMetaEditor13updateMfraBoxEi) +STUB( + "W-T+N6vdiUI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEEC1ERKSA_) +STUB("W-T-amhWrkA", _LPlsw) STUB("W-U8F5o2SHg", sceSystemServiceActivateMpeg2GetStatus) +STUB( + "W-XnVGowqKA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEED2Ev) STUB("W-Z8wWMBnhk", sceNgs2VoiceGetOwner) +STUB( + "W-ZEZnw7VTw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEEC1ERSA_) +STUB("W-cGzhINllg", _ZN7WebCore15JSDOMWindowBase14finishCreationERN3JSC2VMEPNS_13JSWindowProxyE) +STUB("W-gBIML-KZU", dllockinit) +STUB("W-oLY1TOyv4", _ZN7WebCore12JSTimeRanges9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "W-sTjS+-thA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE8capacityEv) +STUB("W-tsWtMCboE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEEptEv) +STUB( + "W-y4Qc546js", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("W-yXgQmaozU", _ZN3sce3Job10JobManager27getSequenceFactoryInterfaceENS1_8PriorityE) +STUB("W0+iOqC0lEo", _ZN15AbstractStorage18DailymotionContent4OpenEit) +STUB( + "W018siPGg-A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "W019UJqDM7A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEEC1Ev) +STUB( + "W04zeKu27w8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEdeEv) +STUB("W0Aa+HAwN6U", syscall) +STUB("W0Bncz4CUaQ", + _ZNK3sce2Np9CppWebApi7Matches2V121ResponseTeamStatistic6toJsonERNS_4Json5ValueEb) +STUB( + "W0DPrlLJPUA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEC1EPNS2_10LibContextE) +STUB( + "W0EW+IVYv+w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEC1EPS9_) +STUB( + "W0GOa7LUavI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEC2Ev) +STUB("W0HLn3b9hYw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEEneERKS7_) STUB("W0Hpm2X0uPE", scePthreadSetprio) +STUB("W0LDpQC9veI", + _ZN23sceMetadataReaderWriter17getParserInfoListERSt6vectorINS_10ParserInfoESaIS1_EE) STUB("W0NXxBnfZpA", sceDiscMapBitmapInfoServerStop) +STUB( + "W0OflGg278I", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEE3getEv) +STUB("W0RPTmyiPXs", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V115LastUpdatedUserD2Ev) STUB("W0SsxHQUhGs", sceS3daClose) +STUB( + "W0T7AnU15EM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEEC1ERKSA_) +STUB( + "W0UUdXVXGJU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) STUB("W0VIYdCm9lY", sceFsISSchedConfigCurrentThread) +STUB("W0VwyqKSJy4", + _ZN7WebCore14ScrollableArea15didAddScrollbarEPNS_9ScrollbarENS_20ScrollbarOrientationE) STUB("W0WEyog0f74", sceAgcAcquireMemSetEngine) +STUB( + "W0WNrK6rzeg", + _ZN7WebCore18JSHTMLImageElementC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_16HTMLImageElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "W0WeAGltmhs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEEC1ERSA_) +STUB("W0YEmumsrqo", mono_aot_Sce_PlayStation_Jsonjit_code_start) STUB("W0YWLVDndx0", sceNpRtcFormatRFC3339) +STUB("W0c2iL1rKmI", _ZN7WebCore24CoordinatedGraphicsLayer29setNeedsVisibleRectAdjustmentEv) +STUB( + "W0hBEM3stRg", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEEC2Ev) STUB("W0iQAbGaTBg", sceVideoOutGetCurrentOutputMode_) +STUB("W0j6vCxh9Pc", _ZSt16_Throw_Cpp_errori) +STUB( + "W0kWelqcTzU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE7popBackEv) +STUB("W0owwPgCHfg", _ZN3JSC4Yarr17RegularExpressionC2ERKS1_) +STUB("W0pMeMwIMMI", _ZN7WebCore9HTMLNames8kindAttrE) +STUB( + "W0q1zJvEOFQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEcvbEv) +STUB( + "W0vG9A4eqxU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEC2EPNS2_10LibContextE) +STUB("W0w8TGzAu0Q", _ZNSt8messagesIcEC1EPKcm) +STUB( + "W0xjic27Y6w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("W0xkN0+ZkCE", kill) +STUB("W0yjXro3i4E", png_set_crc_action) +STUB( + "W11s684ywaM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEE11get_deleterEv) +STUB("W12G2P+s074", _ZN3sce2Np9CppWebApi12Leaderboards2V122GetRankingResponseBody10getEntriesEv) +STUB("W17CX8bEsI4", GetAccountIdA) +STUB("W1C0BHjZuDA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEEC2EPNS2_10LibContextE) STUB("W1Etj-jlW7Y", sceGnmInsertPushMarker) +STUB("W1FTmdB9jPE", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_15CategoryInfoSubENS2_IS4_EEEE7addressERS6_) +STUB("W1JiCEsLYvo", _ZN12video_parser13cVideoMetaMP418getMetadataBufSizeENS_12VP_META_TYPEEjPj) +STUB("W1NHvs8NlF0", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12unsetString4Ev) +STUB( + "W1QKyOKm+Co", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEptEv) +STUB("W1SOwxlIT-c", mono_aot_Sce_Vsh_RemotePlayjit_code_start) +STUB("W1TMB89OLb4", _ZN3sce7Toolkit2NP2V212NetworkUtils7Request22GetDetailedNetworkInfoC1Ev) +STUB("W1Y0eBHhb1w", _ZNK7WebCore18TextureMapperLayer9isVisibleEv) +STUB( + "W1atfZNg76M", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlot17hasnpServiceLabelEv) +STUB( + "W1il3rOjVmo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE21intrusive_ptr_sub_refEPS9_) +STUB("W1k-LFOLK0w", JVM_RawMonitorEnter) +STUB( + "W1yZfFdwDJk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEC2ERKS7_) +STUB( + "W1zF0Tniuw0", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData42getxPsnTcsComparedLastUpdatedUserAccountIdEv) +STUB( + "W2+NxxjVm2I", + _ZN7WebCore20ExtensionStyleSheets29addAuthorStyleSheetForTestingEON3WTF3RefINS_18StyleSheetContentsENS1_13DumbPtrTraitsIS3_EEEE) +STUB("W23xoqC6shA", _ZN7CoreIPC10AttachmentC1Ei) +STUB( + "W24rQK9P9gE", + _ZN3sce7Toolkit2NP14GameCustomData9Interface10getMessageEPKNS1_28GameCustomDataMessageRequestEPNS1_9Utilities6FutureINS1_21GameCustomDataMessageEEEb) +STUB( + "W25Z-xPztzs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEE11get_deleterEv) +STUB( + "W26qyhTB72s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEC2EPNS2_10LibContextE) +STUB("W29W3Xd82aI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEED1Ev) +STUB("W2D0GnkDQoY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16UnlockedTrophiesEEC1Ev) STUB("W2G-yoyMF5U", scePadSetVibrationMode) +STUB("W2IBa2bS4-0", uhash_hashUnicodeString_67) +STUB( + "W2JIah-nUWY", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemPropertiesC2ERS5_) +STUB("W2LcBaEy2qc", fuse_reply_err) +STUB("W2MzrWix2mM", _ZTVN3sce16CommonDialogUtil6ClientE) +STUB("W2NBQBKWjJk", decode_fp_to_double) STUB("W2WHDUt6O9A", sceLncUtilGetCdlgStatus) +STUB("W2hEXaTJSb4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging16GameDataMessagesEE3setEv) +STUB("W2jeMfa3etw", WKWebsiteDataStoreGetFetchCacheOrigins) +STUB("W2qE6sLTyWQ", _ZN7WebCore21DiagnosticLoggingKeys24unsupportedHTTPMethodKeyEv) STUB("W2u-cvNkvOY", sceKernelInitializeDipsw) +STUB( + "W2ub4nFPKng", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEED2Ev) +STUB("W2xTZFf+RzE", _ZN3JSC19ArrayBufferContents5clearEv) STUB("W31HMY23RKg", sceDataTransferTargetAbortTransferSpeed) +STUB( + "W36QpKCa4+k", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEEaSERKSF_) STUB("W39EKJrf790", sceHeadTrackerUpdateDebug) +STUB("W39o5yn84VA", _ZN3sce2np9JsonValue7SetBoolEPKNS0_8JsonBoolE) +STUB("W39wYLkcbbk", _ZN7WebCore21DiagnosticLoggingKeys25failedLessThan5SecondsKeyEv) +STUB("W3GNBOiLha8", _ZN3sce7Toolkit2NP2V28Matching26MemberSignalingInformationC2Ev) +STUB( + "W3IelcJFbFo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("W3OAYWACf6w", _ZN3JSC19g_superSamplerCountE) +STUB("W3QNjZJAKKA", _ZNK3sce2Np9CppWebApi14SessionManager2V112NonPsnLeader13getPlayerNameEv) +STUB("W3VXXbPyZoA", _ZN7WebCore21DiagnosticLoggingKeys18nonVisibleStateKeyEv) +STUB( + "W3gdQ8MkwKA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEE7get_refEv) STUB("W3neFYAvZss", sceUserServiceGetGlsIsMuteEnabled) +STUB( + "W3oIORFARoU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE8copyFromERKS9_) STUB("W3oNrewI7bc", sceUserServiceSetPbtcThursdayHoursEnd) +STUB("W3rwsG+URiA", _ZNK3sce2Np9CppWebApi14SessionManager2V116FromNonPsnMember13getPlayerNameEv) +STUB( + "W3vvKmaYPGs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE8pushBackERKS8_) +STUB("W4+9PcY8CCI", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyleD1Ev) +STUB( + "W4+AmT75iOA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEC1EPNS2_10LibContextE) +STUB("W41pz-jsAq8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V114SearchOperatorEEppEi) +STUB( + "W48gC1kr8Vg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEC1ERKS7_) +STUB( + "W4A-OV3xKto", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEdeEv) +STUB( + "W4AmxhgJJbQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEE3getEv) +STUB( + "W4AuaAJnpeg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE7reserveEi) +STUB( + "W4C+6-AR6C0", + _ZN3sce2Np9CppWebApi11UserProfile2V132GetPublicProfilesResponseFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_12BasicProfileEEEEEPNS9_INS3_25GetPublicProfilesResponseEEE) +STUB( + "W4R+gJEcgkY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEEC1EPSA_PFvSC_EPNS2_10LibContextE) +STUB( + "W4UQhu7BMTE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB("W4VgbZxcD4U", _ZN7WebCore9HTMLNames7timeTagE) +STUB( + "W4aHInrAM9c", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEixEm) +STUB("W4aQq8xZ-vg", _ZSt9_Ios_init) +STUB("W4dWT4cy+ek", _ZTv0_n24_N12Mp4RetrieverD0Ev) STUB("W4e8obm+w6o", sceFontGraphicsUpdateColorRates) +STUB( + "W4hwggXmTfY", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations12getaccountIdEv) STUB("W4kZjfF08xU", sceContentBinderIsUpdated) +STUB( + "W4lYghWo6AM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEptEv) +STUB("W4pF20x4FSQ", _ZN3WTF13StringBuilder12appendNumberEy) +STUB( + "W4tcWjchOzI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEED2Ev) +STUB("W4vhaG7GsbI", _ZN7WebCore29SQLiteStatementAutoResetScopeD2Ev) +STUB("W4wDYvCxkcY", mono_aot_Sce_Vsh_GriefReportStorageplt) +STUB("W4wZBtT4Ta0", _ZN3sce2Np9CppWebApi7Matches2V121ResponseTeamStatisticD1Ev) +STUB( + "W4x1QDGjSLw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEE7get_refEv) +STUB( + "W4xAZU6nKyg", + _ZN7WebCore22EmptyFrameLoaderClient39dispatchDecidePolicyForNavigationActionERKNS_16NavigationActionERKNS_15ResourceRequestERKNS_16ResourceResponseEPNS_9FormStateENS_18PolicyDecisionModeENS_21PolicyCheckIdentifierEON3WTF8FunctionIFvNS_12PolicyActionESD_EEE) +STUB( + "W4xZF-Prz1U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEE11release_refEv) +STUB( + "W5Bh4KXmDAk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEppEv) STUB("W5HtGRCZ1iE", sceShellCoreUtilGetSystemBGWaveColor) +STUB( + "W5Jn4jOO0dI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE21intrusive_ptr_add_refEPS6_) +STUB("W5Ol-hqEj0c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEC1ERKS7_) +STUB("W5OtP+WC800", _ZNKSt5ctypeIcE8do_widenEPKcS2_Pc) +STUB("W5Q4F98y+go", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEEC1ERKS7_) STUB("W5RgPUuv35Y", sceUserServiceGetNpLoginId) +STUB("W5TkSWFRywY", + _ZN3sce2Np9CppWebApi7Matches2V127ResponseTeamMemberStatisticC1EPNS1_6Common10LibContextE) +STUB("W5VYncHdreo", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8_GetffldEPcRS3_S6_RSt8ios_basePi) +STUB( + "W5W9PUPPHkk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEC1Ev) +STUB("W5YAK5pO9eY", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEEptEv) +STUB( + "W5beQA1NaXU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEE11release_refEv) STUB("W5iJUafU8r4", sceEditMp4GetStatus) +STUB( + "W5isESLwQvQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEaSERKS9_) +STUB("W5k0jlyBpgM", _ZN10__cxxabiv121__vmi_class_type_infoD0Ev) +STUB( + "W5kOjAQSvAw", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeaders21intrusive_ptr_add_refEPS5_) +STUB("W5odh9Zt7bM", _ZN23sceMetadataReaderWriter16g_storageManagerE) +STUB("W5pdIiQSrmY", SpeechTerminate) +STUB("W5srRHY7pAE", _ZN3sce7Toolkit2NP19FriendOfUserRequestC1Ev) +STUB( + "W5syaKVaFBM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEixEm) STUB("W5tL-FE60Sw", scePlayReadyDomainLeaveProcessResponse) +STUB( + "W5tu7zepz28", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEeqERKS9_) STUB("W5z4eZrjEas", sceAgcDriverRegisterResource) +STUB("W5zgLuJ-xXU", _ZThn24_NK9Inspector28InspectorScriptProfilerAgent18isAlreadyProfilingEv) +STUB("W6+fHPVq9Sc", WKBundleHitTestResultMediaIsInFullscreen) +STUB( + "W65MyuwKXSc", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) STUB("W66Kqtt0xU0", sceFontGraphicsFillRatesSetMapping) +STUB("W677AU+YzFg", mono_aot_System_IO_Compression_FileSystemplt) +STUB("W68i7pE-eUw", _ZN3sce7Toolkit2NP2V26Friend7Request19GetFriendsOfFriends15MAX_ACCOUNT_IDSE) +STUB("W6EkvwOudr0", _Printf.fchar) STUB("W6OrTBO95UY", scePthreadMutexIsowned) STUB("W6SiVSiCDtI", sceLibcMspaceDestroy) +STUB( + "W6Xr07s5Ufs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEED1Ev) +STUB("W6aAXGX+Q8g", mono_aot_Mono_Cairoplt) +STUB( + "W6fWXx3pex8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEptEv) +STUB( + "W6hTRYkPt6U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEE11get_deleterEv) STUB("W6iWw8aUQtA", sceNpUtilityInit) +STUB( + "W6kaUkemy7w", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE8capacityEv) +STUB("W6mJpSIWRcw", _ZN3sce7Toolkit2NP2V23TUS7TusDataC1ERKS4_) +STUB( + "W6puTyqxvT8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEC2Ev) +STUB("W6qgdoww-3k", _ZNSt14numeric_limitsIfE6digitsE) +STUB("W6uqyYgfehY", + _ZNK7WebCore14ScrollableArea18visibleContentRectENS0_26VisibleContentRectBehaviorE) +STUB( + "W6wgr-OJv5Q", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody14unsetBoolean10Ev) +STUB("W6xikDYGnmQ", rgctx_fetch_trampoline_rgctx_2_p) +STUB("W7-g4MzIBm4", _ZN3sce2Np9CppWebApi13InGameCatalog2V515ContainerRating10unsetCountEv) +STUB("W72B9ylU2JA", _ZN3sce4Json18InitParameterRtti216setAllocatorRttiEPNS0_14AllocParamRttiEPv) +STUB("W76h1+y9Fcc", _ZN7WebCore7Element12setAttributeERKNS_13QualifiedNameERKN3WTF12AtomicStringE) +STUB("W7AEl27VD+o", ucase_tolower) +STUB("W7EnziA8B5Y", _ZN3sce2Np9CppWebApi11Matchmaking2V19SubmitterC2EPNS1_6Common10LibContextE) +STUB("W7F1oU5ivq0", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V15Error9setReasonEPKc) +STUB("W7JEXgyp5xY", _ZN3sce7Toolkit2NP2V28Commerce9ContainerD2Ev) +STUB("W7JUaEGA9Bc", unumsys_close_67) +STUB("W7Ld-MBN2zE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEEC2Ev) +STUB("W7OzMpRm4Aw", _ZN3sce7Toolkit2NP19AllocImplementationD1Ev) +STUB( + "W7QiJ1XbGQI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEC2EPKS8_) +STUB( + "W7QmaAaLP6E", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEdeEv) +STUB("W7SNhSZ-YdI", u_strcat) +STUB( + "W7UJfqV7Bok", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "W7UhjTS6fDI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE7popBackEv) +STUB( + "W7V0pqBz0b4", + _ZN9Inspector14ConsoleMessageC2EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelERKN3WTF6StringES8_jjPNS1_14JSGlobalObjectEm) +STUB( + "W7VW--M5Zes", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEEC2EPSA_PNS2_10LibContextE) +STUB( + "W7bQ8Y9fHOk", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Console13ChannelSourceEEESt8optionalIT_ERKN3WTF6StringE) +STUB( + "W7bWGfO8x-Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE10setContextEPNS2_10LibContextE) +STUB("W7cY9F4nr-g", mono_btls_ssl_ctx_set_ciphers) +STUB( + "W7e7AX6000k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE7reserveEi) STUB("W7hjXKsdJ4I", sceNpUniversalDataSystemIntRecordObjectSetInt32) STUB("W7jH8oC9B1c", sceAppInstUtilGetAppMoveProgressInfo) +STUB("W7jWOTfJPos", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEC2Ev) +STUB("W7lVXLeq74I", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE21intrusive_ptr_add_refEPS7_) +STUB( + "W7qh8MIYAWM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEplEm) +STUB("W7xPVJvLBJo", mono_aot_Sce_Vsh_GriefReportunbox_trampolines) +STUB("W7xZ3RWOiKI", _ZN3sce7Toolkit2NP2V27Session17SessionInfoUpdateC2Ev) STUB("W80hs0g5d+E", sceFontGraphicsRegionInit) +STUB("W80mmhRKtH8", CA_MGMT_extractBasicConstraint) +STUB("W80wtyya6DE", mono_aot_Sce_Vsh_Np_Pbtcplt) +STUB("W82U1g0Smzs", _ZN7WebCore9FrameTree9clearNameEv) STUB("W849NdAuFHQ", sceDebugIpmiGetTidListByDump) +STUB("W86jdG0c7xo", rgctx_fetch_trampoline_rgctx_91_p) +STUB( + "W8A90wMF+HQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE10setContextEPNS2_10LibContextE) +STUB("W8G9XqqbbT8", rgctx_fetch_trampoline_rgctx_114) +STUB( + "W8LNtgtsUJA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEE3getEv) +STUB( + "W8Z+Cy5gtb0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEEC2EPS8_PNS2_10LibContextE) +STUB("W8ZnpoQJayk", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification16FriendlistUpdateEEC1Ev) +STUB("W8f1adVl+48", _dup2) +STUB("W8lCEPAaisw", ucasemap_getOptions_67) +STUB("W8peIGAlB+M", _ZN3JSC8JSBigInt10createZeroEPNS_14JSGlobalObjectE) +STUB( + "W8qAqA-NDI4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEplEm) +STUB("W8sT06mz6bg", _ZN12video_parser17cVideoProfilerMp417_getAudioCodecVWGEPNS_13VpMediaInfo_tE) +STUB("W8t37A5J90M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116InitialJoinStateEEppEi) +STUB("W8tdMlttt3o", _Rteps) +STUB( + "W8xBSoxfiRU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB("W8zbyPhnRTc", _ZN3JSC7Symbols18finallyPrivateNameE) +STUB("W9-a7neoGvU", _ZN3sce2Np9CppWebApi11UserProfile2V16Avatar9unsetSizeEv) +STUB( + "W98Pf-UI4S4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEEptEv) +STUB( + "W99IHj03a20", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEEC1ERKSA_) +STUB("W9Dv01kgG+U", Java_java_util_zip_ZipFile_freeEntry) +STUB("W9Mm61ahvSA", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredTeamsEE19setCustomReturnCodeEi) +STUB("W9NPrRY-TQE", _ZTVN9Inspector31NetworkBackendDispatcherHandlerE) +STUB( + "W9PIRAMm9-Q", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126PlayStylePropertiesFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_19PlayStylePropertiesEEE) +STUB("W9Pq5q+bFC0", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_23NpSessionInvitationInfoEE3getEv) +STUB("W9VSuYfuzAI", _ZNK7WebCore18SecurityOriginData8toStringEv) +STUB( + "W9ibgZyeBKU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("W9lYgVU32Ro", _ZN7WebCore21NetworkStorageSession16flushCookieStoreEv) +STUB("W9oHsE8wkhE", + _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse21unsetCancellationTimeEv) +STUB( + "W9qJdIRd5rY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("W9rgXyvfzxI", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V117ConnectionQuality11globalIsSetEv) +STUB("WA+BL66sfO8", _ZN7CoreIPC14MessageEncoder6createENS_15StringReferenceES1_m) +STUB("WA+hOuCXEwA", ucal_openCountryTimeZones_67) +STUB( + "WA-Rz+Fbwqg", + _ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody18unsetMaxSpectatorsEv) +STUB( + "WA1YuBVbr8U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEED1Ev) +STUB( + "WA3pfR3aQWU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEC2Ev) +STUB("WA5aABD-JnA", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge18ChallengeThumbnailEE5resetEv) +STUB("WA65n4qVly0", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession22invitableUserTypeIsSetEv) +STUB("WA99GF74vT4", mono_image_get_entry_point) STUB("WAIqT36MwJU", sceCesMbcsStrGetUcs2Len) +STUB("WAKEa6sKXJM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEED1Ev) +STUB("WANdfnEf9aw", uidna_labelToASCII_67) +STUB( + "WAOAQjKD6nA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("WAPkmrXx2o8", _ZNKSt7codecvtIwc9_MbstatetE5do_inERS0_PKcS4_RS4_PwS6_RS6_) +STUB("WARiQbzH7G4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEE3getEv) +STUB("WAat5MtCKpc", _ZN3sce2np8HttpFileD2Ev) +STUB( + "WAc59ifj6cw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE5clearEv) +STUB("WAkJKSa7fVU", mono_parse_options_from) STUB("WAqrNQdt5qM", sceVnaStartKeyPhraseDetection) +STUB("WAzDJLd9Obo", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEEC2EPNS2_10LibContextE) STUB("WAzWTZm1H+I", sceSaveDataTransferringMount) STUB("WB0zfyMfYjk", sceKernelDebugPackageCorrupted) +STUB("WB2EKA1AdmM", cpp_demangle_read_uqname) +STUB("WB44+aPr3H4", _ZN3sce2Np9CppWebApi6Common6StringC2Ev) STUB("WB66evu8bsU", sceKernelGetCompiledSdkVersion) STUB("WBAO6-n0-4M", sceAudioOutAttachToApplicationByPid) +STUB("WBAnuHWNTP4", __kernel_cosl) +STUB("WBDbmI91FYs", _ZN3sce7Toolkit2NP2V27Session7Request17GetInvitationDataD1Ev) STUB("WBNBaj9XiJU", sceFontCreateGraphicsDevice) STUB("WBPErtBvp0M", scePlayReadyDomainLeaveGenerateChallenge) STUB("WBQJDbBxH3E", sceDbgEnableExtraHeapDebugInfo) +STUB("WBQej5HVEvw", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEEppEv) +STUB( + "WBTY70wPH-s", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEppEv) +STUB("WBVzoUI6EiQ", _ZNSt9basic_iosIwSt11char_traitsIwEED2Ev) +STUB("WBWzsRifCEA", sem_trywait) STUB("WBZrUaQY+EU", sceVideoOutHdmiMonitorInfoIsSupportedVideoOutMode_) +STUB("WBb17KuYpi0", + _ZN7WebCore15GraphicsContext15drawLineForTextERKNS_10FloatPointEfbbNS_11StrokeStyleE) +STUB("WBd4dKmJwJ0", _ZN12video_parser23VpMpegvideoMp4aParseDSIEPhiPNS_23VpMpegvideoMp4aDSIParamE) +STUB("WBdfglqfJBw", _ZN3sce7Toolkit2NP2V28Commerce7Request25ConsumeServiceEntitlementD1Ev) +STUB("WBeIG8BMvvQ", delProtocolInfoList) STUB("WBgTbIYvODM", sceAt9EncEncode) STUB("WBh3zfrjS38", sceNpTusGetMultiUserDataStatusAVUserAsync) +STUB( + "WBkH-ZvwBZw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEC1EPKS8_) +STUB("WBl4xQV+Nnk", kldunload) +STUB( + "WBoFapp-Io0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEC2Ev) +STUB("WBpqRt2gths", _ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_14XMLHttpRequestE) +STUB("WBxQfbet+nY", _ZN3WTF5MutexD2Ev) +STUB("WBxSQQ87efk", _ZN3sce7Toolkit2NP2V27Ranking12FriendsRanksC2ERKS4_) +STUB("WBzT8xAJYuo", mono_runtime_resource_limit) +STUB( + "WBzrDNqEOK4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE28getResponseInformationOptionEv) +STUB("WC1M6Pb+YEg", _ZN3JSC9Integrity14auditCellFullyERNS_2VMEPNS_6JSCellE) STUB("WC216DD3El4", scePngDecDecode) +STUB("WC45U1JPW94", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE5beginEv) STUB("WC7s95TccVo", sceFontGraphicsSetupGlyphFill) +STUB("WCGKU7ZOFU4", _ZNK3sce2Np9CppWebApi11UserProfile2V112BasicProfile23getIsOfficiallyVerifiedEv) +STUB("WCMjIvYqQl8", + _ZN7WebCore17PageConsoleClient10profileEndEPN3JSC14JSGlobalObjectERKN3WTF6StringE) +STUB( + "WCNy8ITBxZg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEC1Ev) +STUB("WCPKQC-I3ko", _ZN3sce7Toolkit2NP2V210Tournament20OneVsOneMatchDetails5resetEv) +STUB( + "WCPgXdpXXgY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEE7get_refEv) +STUB("WCRkgSz3mwA", GCC_except_table48) +STUB( + "WCT3D-HlAlM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("WCTsqoUEsTc", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed14PlayedWithFeedEED1Ev) +STUB("WCV0pmdA2pI", _ZN9Inspector14InjectedScript13inspectObjectEN3JSC7JSValueE) +STUB("WCYxrEsEjRI", _ZN7WebCore19JSHTMLSelectElement9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) STUB("WCayTgob7-o", sceNgs2VoiceGetPortInfo) +STUB("WCdM2x3oSxY", _ZNK3sce2Np9CppWebApi7Matches2V111AddedPlayer14accountIdIsSetEv) STUB("WCfhxDeLGEs", sceCesRefersUcsProfileIso8859_11) +STUB("WCiQJB99pNg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEC1Ev) +STUB("WCrQ7baRnjE", _ZN3WTF10TextStreamlsEl) +STUB("WCsCHu0CyKY", _ZN3sce7Toolkit2NP2V210Tournament7BracketC2ERKS4_) STUB("WCvMD6FtxcY", sceDeci4hDrfpRmdir) STUB("WCzd3cxhubo", sceNpTusDeleteMultiSlotVariableVUserAsync) STUB("WCzf02AY1FY", sceAppInstUtilAppUnInstallByUser) +STUB( + "WD-ColoRz7U", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "WD-kJ50N4aE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE7popBackEv) +STUB( + "WD4aqU0ocLA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V128SetMultiVariablesRequestBody19unsetNpServiceLabelEv) +STUB( + "WD6QZZBYhFg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEC2Ev) +STUB( + "WD8D2oq3huc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEixEm) +STUB( + "WDAxex-ETAs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "WDBHiwSX+bw", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_9Recording9InitiatorEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB("WDC9gVPN5Dw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEEC2EPS5_PFvS7_EPNS2_10LibContextE) +STUB( + "WDCF51UKivs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEptEv) +STUB("WDF7Xbc3hqA", _ZN3JSC8Debugger16removeBreakpointEm) +STUB("WDG0ZqpjoPY", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Error10getMessageEv) +STUB( + "WDJNmBGIuL8", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_11ProductInfoENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB( + "WDJnFzKT9ik", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEppEi) +STUB("WDKiJXAErgs", _ZN3JSC7Symbols32fulfillWithoutPromisePrivateNameE) +STUB("WDKzMM-uuLE", _ZNSt22_Future_error_categoryD0Ev) +STUB( + "WDPCEYrYJTE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEC1EPNS2_10LibContextE) +STUB("WDXCvc2O4hU", _ZNK7WebCore26HTMLTextFormControlElement21lastChangeWasUserEditEv) +STUB( + "WDXPNP2syeA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToSetMultiVariablesByUserC1Ev) +STUB("WDZ4PiF5f+E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEEC2EPKS6_) +STUB("WDZBKpiZOIo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEEC1Ev) +STUB("WDZgjwCSKFs", _ZN7WebCore16VisibleSelection22expandUsingGranularityENS_15TextGranularityE) +STUB("WDbZ1WsOBxc", _ZN7WebCore20LegacySchemeRegistry15isBuiltinSchemeERKN3WTF6StringE) +STUB("WDgrsyO-050", _ZN7WebCore22EmptyFrameLoaderClient31dispatchDidReachLayoutMilestoneEj) +STUB( + "WDh4uSOylno", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEC1EPS8_) +STUB( + "WDhdRDt5Cqc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEE5resetEPS6_) +STUB("WDjBY4VN+Pk", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEEptEv) +STUB( + "WDk+oSOpydY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "WDoR30qJAug", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEC1EPS8_) +STUB("WDpobjImAb4", wcsstr) STUB("WDszmSbWuDk", sceKernelAddUserEventEdge) +STUB("WDvmrf+Kn3Y", _ZN3JSC7Symbols24generatorThisPrivateNameE) +STUB("WE0-4xvquLU", + _ZN3sce2Np9CppWebApi7Matches2V121ResponsePlayerResultsC2EPNS1_6Common10LibContextE) +STUB("WE03NFCufbs", WKContextGetOriginDataManager) +STUB( + "WECWCayQVcQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "WEEilwQPEtQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEED1Ev) +STUB("WEFfPZlSIJs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEcvbEv) +STUB( + "WEG4kxCoWDA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEaSERKS9_) +STUB( + "WEJncztFf04", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEC2ERKS7_) +STUB( + "WEKtamcbO64", + _ZN7WebCore26PresentationOrderSampleMap39findSampleStartingAfterPresentationTimeERKN3WTF9MediaTimeE) +STUB("WEOesaZ5EP4", _ZTVN9Inspector23TargetBackendDispatcherE) +STUB("WEVBe0m-ZBo", _ZN3WTF15AutomaticThreadD0Ev) +STUB("WEVIlPFp9Rk", _ZN7WebCore10FileHandle6printfEPKcz) +STUB( + "WEVlFv6cxgI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEC1Ev) +STUB( + "WEZJd8dOm-g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("WEaj30cTtgk", _ZNK7WebCore11HistoryItem27shouldRestoreScrollPositionEv) +STUB("WEd+Yfs8auY", _ZN7WebCore15UserInputBridge12tryClosePageENS_11InputSourceE) +STUB("WEd2137pGp8", _ZN7WebCorelsERN3WTF10TextStreamERKNS_10LayoutUnitE) +STUB( + "WEhtKpiM33w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEEC2ERSA_) +STUB("WEjkgLN1UKo", _logf_impl) +STUB("WEmazaGjnlc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEC2Ev) +STUB( + "WEn+SF5N1JM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEE3getEv) +STUB("WEnpMBnXS7w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEE11release_refEv) +STUB( + "WEqWXhQFP7Y", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions7hasviewEv) +STUB( + "WEyrkrnR2KI", + _ZN3sce2Np9CppWebApi14SessionManager2V134PostGameSessionsSearchResponseBody8fromJsonERKNS_4Json5ValueE) +STUB("WF+3cg6PnfU", _ZN3sce7Toolkit2NP18SessionInformation5resetEv) +STUB( + "WF4JKfQVHqg", + _ZN7WebCore32ScrollingStateFrameScrollingNode23setEventTrackingRegionsERKNS_20EventTrackingRegionsE) +STUB("WF4fBmip+38", vfwscanf) +STUB( + "WF6q2ea6sjY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEED1Ev) +STUB( + "WF7CmdQTCwc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEED2Ev) +STUB( + "WF897AyurMQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("WFC4RUl+bm0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEEC1EPNS2_10LibContextE) STUB("WFIiSfXGUq8", scePadOpenExt) +STUB("WFLFSRXPRn0", WKNotificationCopyIconURL) +STUB("WFQ5IKTMQs0", _ZNK3WTF24TimeWithDynamicClockType19approximateWallTimeEv) +STUB( + "WFSZqolWiHw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEneERKS9_) +STUB("WFTApdf-HJE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEdeEv) +STUB("WFTOZxDfpbQ", _ZNSt13_Num_int_base14is_specializedE) +STUB("WFampmsesU4", _ZN3sce7Toolkit2NP2V28Commerce11SubCategoryD1Ev) STUB("WFcfL2lzido", sceKernelQueryMemoryProtection) +STUB("WFp9BrIB-H4", _ZN7WebCore9FloatRect11fitToPointsERKNS_10FloatPointES3_S3_S3_) +STUB("WFq71Jyf+ww", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEaSERKS9_) +STUB("WFrVvA9uHU0", _ZN3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsersD2Ev) +STUB( + "WFsAdy74PB4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEE11release_refEv) +STUB( + "WFu+VAJ-NOs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB( + "WFu8BgTppXM", + _ZN3sce2Np9CppWebApi14SessionManager2V132PlayerSessionNonPsnPlayerFactory6createEPNS1_6Common10LibContextEPKcS9_S9_PNS5_12IntrusivePtrINS3_25PlayerSessionNonPsnPlayerEEE) +STUB( + "WFvjv9dwLD8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEE7add_refEv) +STUB( + "WFxD6xIzoSo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEaSERKS9_) +STUB("WG+m1SapaEk", _ext_cleanup) +STUB("WG0FogBKXRU", mono_aot_Sce_Vsh_Np_Udsunbox_trampolines_end) +STUB( + "WG1BVDzWrQg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEixEm) +STUB( + "WG4+JsRPa3k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEE7get_refEv) +STUB("WG75PDz2IPY", Java_java_util_zip_Deflater_getAdler) +STUB("WG7lrmFxyKY", _ZTSSt9type_info) +STUB( + "WGBJW-dErKY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEdeEv) +STUB( + "WGBV9zDbxHE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEE5resetEPS9_) +STUB("WGD6fCc9rzM", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_26ActivityFeedCondensedStoryEEC2Ev) +STUB("WGDthafHGRA", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container14unsetPublisherEv) +STUB("WGF5RauN6o8", _ZN3sce7Toolkit2NP2V210Tournament22TeamVsTeamMatchDetailsC2ERKS4_) +STUB("WGKQ359T744", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEppEv) +STUB("WGMIvi5pBKg", _ZN3sce2Np9CppWebApi7Matches2V119ResponseTeamResults22unsetTeamMemberResultsEv) +STUB("WGQ1H+AetkE", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable22getLastUpdatedDateTimeEv) +STUB( + "WGRFwbx44y4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE5beginEv) +STUB("WGRwdawKWFg", mono_image_get_guid) +STUB( + "WGU+pJ2JIrc", + _ZN7WebCore24TemporarySelectionChangeC1ERNS_8DocumentEN3WTF8OptionalINS_16VisibleSelectionEEENS3_9OptionSetINS_24TemporarySelectionOptionEEE) STUB("WGXOvoUwrOs", sceUserServiceGetCreatedVersion) +STUB( + "WGZBhTG3AUM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE3endEv) +STUB( + "WGZiyfpqtqI", + _ZN7WebCore7UIEvent11initUIEventERKN3WTF12AtomicStringEbbONS1_6RefPtrINS_11WindowProxyENS1_13DumbPtrTraitsIS6_EEEEi) +STUB("WGa5Oh8Kd8E", _ZN15AbstractStorage18DailymotionStorageD2Ev) +STUB("WGibJM7B4k4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEEC2ERS6_) +STUB("WGpHmUU-UoU", _ZN7WebCore21DiagnosticLoggingKeys28isReloadIgnoringCacheDataKeyEv) +STUB( + "WGq5at5n7TQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEC2EPKS8_) +STUB("WGzXiFzpXQQ", _ZN3sce2Np9CppWebApi13InGameCatalog2V520ContainerRatingCount10unsetCountEv) +STUB("WH0fAB8IaaA", _ZNK3WTF10StringImpl10startsWithEPKcj) +STUB( + "WH12l2QGXqI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEaSERKS7_) +STUB("WH4lL5q58HY", il2cpp_string_new_utf16) STUB("WH6O4hriE-0", sceShellCoreUtilGetSplashScreenState) +STUB( + "WH6fUUj9cAQ", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUserD1Ev) +STUB("WH6phgWx6TI", hb_font_set_funcs) +STUB( + "WH7XEZ+J0eA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEC1EPS8_) +STUB("WHFODBOGoB4", _ZN3JSC2VM21symbolObjectSpaceSlowEv) +STUB( + "WHKEG4yjZRY", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersaSERS5_) STUB("WHLVam6hZZ4", sceNpSnsTwitchGetAccessToken) +STUB( + "WHNNeWu9Y+0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE5beginEv) +STUB("WHXv+GaKSXc", delegate_virtual_invoke_imt_m_19_p) +STUB( + "WHat-RigiCY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEC2EPS8_) +STUB("WHbCMRxlzCk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEEaSERS7_) +STUB( + "WHeoeqBBtlY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEC1EPS8_) STUB("WHfJAqAkTK4", sceDeci4hDrfpReserveBuffer) +STUB( + "WHijXHd-mJg", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi47ParameterWithBinaryRequestBodyToRecordLargeData10initializeEPNS1_6Common10LibContextEiNS4_26ParameterToRecordLargeData19XPsnAtomicOperationEPKcPKhm) +STUB("WHqXGsSe+1w", _Z16WTFCrashWithInfoiPKcS0_imm) +STUB("WHqhzve17Eg", _ZNK7WebCore16HTMLInputElement11isDateFieldEv) +STUB( + "WHyVXNNOQCY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEcvbEv) +STUB( + "WI0pT1qPXvI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE3endEv) +STUB( + "WI6e-CMmlOI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE8pushBackERKS8_) STUB("WIEUJ61AwvU", sceShellCoreUtilIsScreenSaverOn) +STUB("WIGwUmVdp+Y", glGetQueryObjectui64vEXT) +STUB("WILUF-jNJkA", s) +STUB( + "WIMIOtyeVnI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB( + "WIMKbdeB318", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEmmEv) +STUB("WIO3e7dTaik", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEED2Ev) STUB("WISL-JH-6Ic", sceShellCoreUtilGetAppData) +STUB( + "WIUQ2tO7aJE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "WIV01QS+xsc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEE3getEv) STUB("WIWV1Qd7PFU", sceUltWaitingQueueResourcePoolGetWorkAreaSize) +STUB("WIfhTh-Bn4Q", _ZN3sce7Toolkit2NP2V28Matching12Notification11RefreshRoomaSERKS5_) +STUB("WIg11rA+MRY", drand48) +STUB("WIg6SqKzm+I", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_8TempRankEE17getAdditionalInfoEv) +STUB( + "WIjAIu9I0I4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEE3getEv) +STUB("WIjYGtKMXEY", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Error10setMessageEPKc) +STUB( + "WIjtuszLN0A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEC2EPS8_) STUB("WIkuITeINl8", sceDebugCreatePerfScratchExecutableArea) STUB("WIlLwVKWows", sceDepth2SetRoi) +STUB( + "WIohpBgDjuE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEE7get_refEv) +STUB("WIvTHYs7ZQQ", FT_New_GlyphSlot) +STUB( + "WIxiNVXHf2s", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEC2Ev) +STUB("WIy-IYyHXE4", Java_com_sony_bdjstack_core_CoreApp_getClasspathExtension) +STUB( + "WIyqlT34+mI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC1ERSA_) +STUB("WJ3jVfDhetY", _Z30Camera_IsCameraConnectedNativeiPb) STUB("WJ3rqFwymew", sceRtcFormatRFC3339) +STUB("WJ4Wk+Gmx7Q", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEEptEv) +STUB("WJ4ngusnbac", _ZN3JSC7Symbols42AsyncGeneratorSuspendReasonNonePrivateNameE) +STUB( + "WJ81qFR8Kw8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("WJ9t6p4+b7Y", _ZN3sce7Toolkit2NP2V210Tournament14RegisteredUserC1Ev) +STUB("WJGLmpR8pYs", mono_aot_Sce_Vsh_Np_Asmjit_got) +STUB( + "WJIjmhsQgNY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE5abortEv) +STUB( + "WJKDBZxiTjU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEEptEv) +STUB("WJKHII-Mjrk", _ZN7WebCore8SVGNames14alphabeticAttrE) +STUB("WJLWjZr-X+E", YGNodeStyleGetDisplay) +STUB( + "WJRdNpAmQ2o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEEaSERSA_) +STUB("WJSMAYu7bIc", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V110Reputation8fromJsonERKNS_4Json5ValueE) +STUB("WJSeWoz-Ew0", _ZNK7WebCore18TextureMapperLayer16adjustedPositionEv) +STUB("WJTGKfpoa1Q", _ZN3sce3pss4core14IntHandleTable13NextIntHandleEv) +STUB("WJU5VlsbNAc", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOfferC2Ev) +STUB("WJU9B1OjRbA", _ZTVN6Dinkum7threads10lock_errorE) STUB("WJV0RYOEc-E", sceNpManagerIntPsnCoreInternalTest) +STUB("WJXuUnREXZ4", _ZN3JSC18enableSuperSamplerEv) +STUB( + "WJZ8vQtZvGs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEdeEv) +STUB("WJkpnZkmw9Q", + _ZN7WebCore17cacheDOMStructureERNS_17JSDOMGlobalObjectEPN3JSC9StructureEPKNS2_9ClassInfoE) +STUB("WJm3lpREZjA", monoeg_g_ptr_array_remove_index) +STUB("WJvZT3w0hJU", _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeIPcPvEE8allocateEmPKv) +STUB("WJwr++p078o", _ZN3sce7Toolkit2NP2V26Trophy16UnlockedTrophies19MAX_NUMBER_TROPHIESE) +STUB( + "WK0W9fbBKCY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEC2ERKS7_) +STUB("WK24j1F3rCU", _ZNSt8numpunctIcEC1EPKcmb) STUB("WKAIMotTzDs", sceCompositorSetScalingLayoutInfo) STUB("WKAXJ4XBPQ4", scePthreadCondWait) +STUB( + "WKEwM4kuIns", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("WKFZri7s-Wo", pio4_lo) STUB("WKFvkCZNYOo", sceSdecDestroySwHevc) +STUB("WKL2HBZDsgw", _ZN3sce2Np9CppWebApi6Common6VectorIiE10setContextEPNS2_10LibContextE) +STUB("WKL8fvTTX2I", _ZThn16_N9Inspector21InspectorRuntimeAgent13releaseObjectERN3WTF6StringERKS2_) +STUB("WKLgUAHhFxs", _ZN9Inspector31NetworkBackendDispatcherHandlerD2Ev) +STUB("WKOxC3orqKk", _ZN3WTF10StringView16GraphemeClusters8IteratorC1EOS2_) +STUB("WKSbBGEdSCs", JVM_Lseek) +STUB("WKUanh-oVyc", WKPluginInformationPluginspageAttributeURLKey) +STUB("WKYgMnUvhdA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEC1ERKS7_) +STUB( + "WKZ9SpD03ug", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEC1Ev) STUB("WKcm4PeyJww", sceNpWebApiAbortHandle) +STUB( + "WKd4AEZV2-8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("WKpL8I4AQns", _ZN3sce2Np9CppWebApi6Common6VectorIjED2Ev) +STUB("WKqHz0DYzN0", rgctx_fetch_trampoline_mrgctx_27_p) +STUB("WKwHWrPWJE0", _ZN3JSC18sanitizeStackForVMEPNS_2VME) +STUB("WKwiPRJSaZc", AnnotateBenignRace) STUB("WKxOVIkISxA", sceShellCoreUtilGetSystemBGState) +STUB("WL+wN+apItI", monoeg_g_hash_table_remove) STUB("WL2PIOhJfQs", sceCesUtf32ToUhc) +STUB("WL3-5Uysf2s", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEEaSERKS6_) +STUB( + "WL5nOpm4gkQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEED2Ev) +STUB("WLEmFxnh71I", WKPreferencesGetSimpleLineLayoutEnabled) +STUB("WLErcZgv+K4", rgctx_fetch_trampoline_mrgctx_120_p) +STUB( + "WLGE9j6rSMs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEEC1ERKSA_) +STUB("WLHs+P4YVIc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEEC1ERS6_) STUB("WLQGuoVmdMQ", sceBgftServiceIntDebugPlayGoRevertToSnapshot) +STUB("WLSXZDoXJIk", _ZN7WebCore12JSTimeRanges6s_infoE) +STUB("WLUZ8bqG5kU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEptEv) +STUB( + "WLWoiRRFFYw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEC1EPS8_) +STUB( + "WLY-vZRhYN8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEixEm) +STUB("WLaUXcixYPw", _ZNK3sce3Xml13AttributeList12getAttributeEj) +STUB("WLc7oPjEIoo", mono_btls_x509_verify_param_can_modify) +STUB( + "WLdDxIWd3GE", + _ZNK7WebCore21NetworkStorageSession18shouldBlockCookiesERKNS_15ResourceRequestEN3WTF8OptionalINS4_16ObjectIdentifierINS_19FrameIdentifierTypeEEEEENS5_INS6_INS_18PageIdentifierTypeEEEEENS_35ShouldRelaxThirdPartyCookieBlockingE) +STUB( + "WLhAoA3oLfE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEE6assignEPS7_PFvS9_EPNS2_10LibContextE) +STUB( + "WLhbWeUEW9o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEppEv) +STUB( + "WLhhjC7-z2s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEC1EPS6_PNS2_10LibContextE) STUB("WLi0ClUXIVk", sceFsUmountLwfs) +STUB("WLmpwqWbSnI", g_ascii_strncasecmp) +STUB( + "WLoO-knTlR4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE4sizeEv) +STUB("WLoOrEfsob4", UCNV_TO_U_CALLBACK_STOP) +STUB( + "WLsxpNK0wZw", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser12setaccountIdEPKc) +STUB("WLtt3cCKTB8", __remquof) +STUB("WLvcNvgAd-o", _ZN3sce7Toolkit2NP2V210Tournament14RegisteredTeam8deepCopyERKS4_) STUB("WLwUxYj3jAc", sceNpSnsDailymotionDialogInitialize) STUB("WLxUN2WMim8", sceImeSetCaret) +STUB( + "WLyQ2GBZ6iU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEEC1Ev) +STUB( + "WLzX4-Q4Wrg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("WM+2GjrydWU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEEC2EPS6_) +STUB("WM280zkYArQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEdeEv) +STUB("WM4KfSxNA3I", CryptographyEncryptAES128CBC) +STUB("WM5DPO-LryU", _ZN3sce2npeqERKNS0_13NpTitleSecretES3_) +STUB("WM9zQ4pPzXU", _ZNK3sce2Np9CppWebApi11Matchmaking2V110UserTicket6toJsonERNS_4Json5ValueEb) +STUB( + "WMARH5lpmlw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEeqERKS9_) +STUB("WMBup7YfG1I", _ZThn136_N7WebCore16HTMLMediaElement14beginScrubbingEv) +STUB( + "WMCj8rPWa4U", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V333CommunicationRestrictionStatusApi44ParameterToGetCommunicationRestrictionStatusC1ERS5_) +STUB("WMCwnOQzHs4", mono_aot_Sce_Vsh_AutoMounterWrapperplt) +STUB("WME1vtuIAzc", _ZNK3WTF9MediaTime7toFloatEv) +STUB( + "WMESc0VWYg8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEED1Ev) +STUB( + "WMGKmhyaYEA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEEC2EPS8_PNS2_10LibContextE) +STUB("WMKbU8yw9co", mono_aot_Sce_Vsh_Sl2_Sl2Delivermethod_addresses) +STUB( + "WMShatqan74", + _ZN3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsTouchResponseBodyC2EPNS1_6Common10LibContextE) +STUB( + "WMTLDy7d4xQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEEC1ERSA_) +STUB("WMUF6eteYNA", _ZN7WebCore17HTMLSelectElement4itemEj) +STUB("WMV2-2v7vDQ", _ZN3PAL9SessionID27generatePersistentSessionIDEv) +STUB("WMbGhVwMBrQ", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils13NetStateBasicEEC1Ev) +STUB( + "WMhTQ5eQQpw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) STUB("WMhw0IVNNC8", sceVdecCoreTrySyncDecodeOutputSw) +STUB("WMiHOVv7EKo", _ZNK7WebCore24RotateTransformOperation19isRepresentableIn2DEv) STUB("WMm7geoOfRo", sceCesRefersUcsProfileCp1256) +STUB("WMmW8ChmYdE", _ZN7WebCore16HTMLInputElement11selectColorEN3WTF10StringViewE) +STUB( + "WMnSX+C+qwk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("WMpTxKngZOg", xmlCreatePushParserCtxt) +STUB("WMw8eIs0kjM", _ZNKSt10bad_typeid8_DoraiseEv) +STUB( + "WMxCdey-GsU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE5clearEv) STUB("WN1v3xYoGDw", sceShellCoreUtilDownloadHidConfigFileFromServer) +STUB( + "WN26C5qp7ZY", + _ZN3JSC4Heap20addMarkingConstraintESt10unique_ptrINS_17MarkingConstraintESt14default_deleteIS2_EE) +STUB("WN5y0dZmRH4", monoeg_g_dir_read_name) +STUB("WN6O1SjvVRo", _ZN9Inspector27PerGlobalObjectWrapperWorldC2ERKS0_) +STUB("WN7-38hHiLk", + _ZNK3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectator14getCustomData1Ev) +STUB( + "WN70-HsdL4I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEixEm) +STUB( + "WN8MUUVljFU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEE3getEv) +STUB( + "WNF-ku3GFgQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB("WNFkVo3VqCo", mono_assembly_load_module) +STUB("WNFlHZuJ8iU", _ZN3sce7Toolkit2NP2V210Tournament17OfficialBroadCastC2ERKS4_) STUB("WNHbacTXPrw", sceDataTransferTargetGetTransferProgress) STUB("WNIV7+VKQaA", sceVideoCoreInterfaceInitializeInterface) +STUB("WNK0UpGK8Ws", _ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriendsC1Ev) +STUB( + "WNMSNT4IONM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEneERKS9_) +STUB( + "WNPYDTZMbCw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE7popBackEv) +STUB( + "WNTvpooyj-s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEppEi) +STUB("WNXNRq0O8PY", _ZN3WTF14FileSystemImpl9closeFileERi) +STUB("WNbGogbL2TY", JNI_OnLoad) +STUB( + "WNfKSQqw4sk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "WNixNYSa540", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE5clearEv) STUB("WNmE+qXnYtg", sceNpManagerIntGetWebAppToken) +STUB("WNrURc2cQKE", __asan_stack_free_1) +STUB( + "WNsX8jbshEU", + _ZN3sce2Np9CppWebApi14SessionManager2V130RequestPlayerSessionInvitationC2EPNS1_6Common10LibContextE) +STUB("WNtLIzIZfoU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEppEi) +STUB( + "WNuUCppVYj0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEE6assignEPS7_PFvS9_EPNS2_10LibContextE) STUB("WNxCIjZdcTo", sceMbusDisconnectDevice) +STUB("WNy4x8pRMSg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEED2Ev) STUB("WNyjOWq8-Vk", sceAgcDriverGetSetWorkloadCompletePacketSize) +STUB( + "WNyoHCf5-zg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEppEi) +STUB("WO0EaJJT4Dk", _ZN15AbstractStorage18DailymotionContent5CloseEv) +STUB( + "WOL3DSY+JUE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEEC1ERS8_) +STUB("WOQwRd6ifs8", _ZN3sce7Toolkit2NP2V210Tournament25BracketInformationOfMatchC1ERKS4_) +STUB( + "WOURlEkgPj0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEED1Ev) +STUB("WOWhhNf1a7A", _ZN3NTF21URLRequestFormElement4typeEv) +STUB("WOaDAsiURis", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEEplEm) +STUB("WOacvEO6fhk", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanityD1Ev) +STUB("WOjpm4i--Y4", sqlite3_errstr) +STUB("WOnjgn0fFpQ", _ZN3sce3web16InitializeCsharpEm) +STUB("WOpgqv-wJEY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEC1ERS7_) +STUB("WOtHs6-3ft8", _ZN7WebCore20TransformationMatrix6blend2ERKS0_d) +STUB( + "WOvfGyHnKJc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEneERKS9_) +STUB( + "WOy0raHpzxs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEneERKS9_) +STUB( + "WP3ieb1BkXc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEppEi) STUB("WPBiUIzH4z4", sceWorkspaceApplyUpdate) +STUB("WPBkj5Km-fU", mono_aot_Sce_Vsh_MimeTypeunwind_info) +STUB("WPC2olPWOtE", _ZN3sce7Toolkit2NP2V210Tournament10TournamentD2Ev) STUB("WPIB7zBWxVE", scePadGetMotionSensorPosition) +STUB("WPMGBc4K03Y", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence12Notification14PresenceUpdateEE5resetEv) +STUB("WPMkuXW1O7o", mono_aot_Sce_Vsh_WebViewDialogplt) +STUB("WPQDATc5Ozs", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119ChildActivityStatusEEppEi) +STUB("WPSr7BikUnE", + _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody24setNeedsRecordedDateTimeERKb) +STUB( + "WPUOwFZu7UQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE4sizeEv) +STUB( + "WPUPF-anHIQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEE5resetEPS6_) +STUB("WPXxdWF+FgQ", WKPreferencesGetUseGiantTiles) +STUB( + "WPZAiIP+hoI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("WPZPyKB1qYY", _ZN7WebCore6Editor7CommandC1Ev) +STUB("WPfUw-edN-s", __ubsan_handle_nonnull_return_v1_abort) +STUB( + "WPmql8csrEc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEE5resetEPS9_) +STUB( + "WPrALw-f8v4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEixEm) +STUB("WPrktCwd+iw", res_getPublicType) +STUB( + "WPsHeJ4zpmI", + _ZN9Inspector25NetworkFrontendDispatcher18webSocketFrameSentERKN3WTF6StringEdNS1_6RefPtrINS_8Protocol7Network14WebSocketFrameENS1_13DumbPtrTraitsIS8_EEEE) +STUB("WPv7o3ukQSI", _ZNK3sce2Np9CppWebApi13InGameCatalog2V55Error12messageIsSetEv) +STUB("WPvQCdvn+6U", + _ZN9Inspector20InspectorTargetAgentC1ERNS_14FrontendRouterERNS_17BackendDispatcherE) +STUB("WPvvEKLEX2c", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicketC1Ev) +STUB("WPyTFrUZMxQ", + _ZN15AbstractStorage12LocalStorage9SerializeESt10shared_ptrINS_7ContentEES1_INS_4ItemEE) +STUB("WPyn5rEy2DE", _ZNK3sce3Xml3Dom8Document9getStatusEv) +STUB( + "WQ-M-6pEo3A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEEC1ERSA_) STUB("WQ-l-i2gJko", sceUserServiceSetVolumeForSidetone) +STUB( + "WQ0nGarhFOE", + _ZN9Inspector20CSSBackendDispatcher17setStyleSheetTextElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "WQ1zSfz7AJM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEEdeEv) +STUB("WQ6AFryD-OM", _ZNK7WebCore21PageOverlayController24documentOverlayRootLayerEv) +STUB( + "WQ7tWY9mhiI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE21intrusive_ptr_sub_refEPS9_) +STUB("WQHqbbvC9O4", _ZNK3WTF9MediaTimemlEi) +STUB( + "WQK8hN6ZRh4", + _ZNK7WebCore18ImageBufferBackend15copyImagePixelsENS_22AlphaPremultiplicationENS_11ColorFormatEjPhS1_S2_jS3_RKNS_7IntSizeE) +STUB("WQQlL0n2SpU", _ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED0Ev) +STUB( + "WQSvl8cO-6o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEEC2ERKSA_) +STUB("WQTNdq5mPFM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEdeEv) STUB("WQVNCJkcmXc", sceAvSettingIsSupportedHdcpVersionByHdmiMonitorInfo) +STUB("WQXG5v4x1Gc", uspoof_setChecks_67) +STUB("WQYKEfGNsZA", __tsan_testonly_barrier_wait) +STUB( + "WQYWXu392Ro", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE6isBusyEv) +STUB( + "WQZrU3IZwm0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) STUB("WQbIW7cm-Bc", sceBgftServiceInit) +STUB("WQbjb+C736Q", _ZN3JSC11ArrayBuffer9tryCreateERS0_) +STUB("WQgbF+HzrPE", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationProperties18setNumberOfMatchesERKi) STUB("WQhzwyaq4i8", sceAudiodReportLoudness) +STUB( + "WQjhOVnmErI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEE7add_refEv) +STUB("WQlN7uMwr+o", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V224TestForProfanityResponse8fromJsonERKNS_4Json5ValueE) +STUB( + "WQoKwfZOSG4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEC2EPS8_) +STUB( + "WQpWuCWWLqU", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi15recordLargeDataEiRKNS4_47ParameterWithBinaryRequestBodyToRecordLargeDataERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_27RecordLargeDataResponseBodyEEENSA_INS4_30RecordLargeDataResponseHeadersEEEEE) +STUB("WQrEeR00GGo", _ZN7WebCore18JSHTMLImageElement6s_infoE) +STUB("WQszar0JVgQ", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge13ChallengeDataEEC1Ev) +STUB("WQtNbhFvxio", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE7popBackEv) +STUB("WQuiyk8ZL6M", uprv_copyEbcdic_67) +STUB("WQyodZEzeoM", Java_com_sony_gemstack_io_FilePath_n_1opendir) +STUB("WR19W1gFzTc", xmlInitParser) +STUB( + "WR2p+F-Xf3g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEC1EPS8_) +STUB("WR4mjQeqz6s", _ZN3sce2np14CalloutContextD0Ev) +STUB("WR6Qai2xB+A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE3endEv) +STUB("WR6ho9coRQ4", _ZNK7WebCore17HTMLAnchorElement6originEv) STUB("WR7XsLdjcqQ", sceHmdInternalCheckS3dPassModeAvailable) +STUB( + "WR8Z3LU+dMQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE3endEv) +STUB("WRBCEhbuHHQ", _ZNK7WebCore10TimeRanges3endEj) +STUB("WRI6UbE+nNE", _Z34VideoPlayerVcs_GetBufferedPositioniPmS_) +STUB( + "WRM2faTaBTo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEEaSERKSA_) +STUB( + "WRVOXjyNeNM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("WRVY82uPSvU", _ZNK3sce2Np9CppWebApi14SessionManager2V111GameSession9getMemberEv) +STUB( + "WRVrkkOm2xE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("WRfSxgIk43M", _ZN9Inspector32TimelineBackendDispatcherHandlerD2Ev) +STUB( + "WRiVOEl8rIQ", + _ZN7WebCore11MediaPlayer25clearMediaCacheForOriginsERKN3WTF6StringERKNS1_7HashSetINS1_6RefPtrINS_14SecurityOriginENS1_13DumbPtrTraitsIS7_EEEENS1_11DefaultHashISA_EENS1_10HashTraitsISA_EEEE) +STUB( + "WRnJyziDLxk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEC2EPKS8_) +STUB("WRneJseWY0A", fuse_fs_utimens) +STUB( + "WRo8-qJatdA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEC2Ev) +STUB( + "WRrSjdirJTI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEED1Ev) STUB("WRvDk2syatE", sceNetCtlRegisterCallbackForLibIpcInt) +STUB("WRw+RVYo7jA", mono_aot_Sce_Vsh_Np_ServiceCheckerunbox_trampoline_addresses) +STUB("WS+7Pxb5gNg", glUniform4iv) +STUB( + "WS3XkDdBnXY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE8copyFromERKS9_) +STUB( + "WS4gB6ndjLA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEE3getEv) +STUB( + "WS5mdU3+Iy8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE6resizeEj) +STUB( + "WS6b8Op6n-E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEC2EPS8_) STUB("WS7uPTZ0WCs", sceKernelSetBesteffort) +STUB( + "WSAUGNqRyfU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "WSCaPL9Cbeo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEC2EPS8_) +STUB( + "WSHfqGShWpw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEdeEv) +STUB( + "WSJ+AsYOeNk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("WSOAkqohyZ4", EVP_DigestSignInit) +STUB("WSOqB5LYtPc", mono_aot_Sce_Vsh_Np_AuCheckunwind_info) +STUB("WSOuge5IsCg", _ZN3sce4Json14InitParameter2C1Ev) STUB("WSQxnAVLKgw", sceNpServerErrorJsonParse) +STUB("WSR3IB4T2Es", mono_g_hash_table_insert) +STUB("WSSLio6zQ9I", _ZN12Mp4Retriever15processMetaYearEv) +STUB( + "WSVEq326md0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEeqERKS9_) +STUB("WSYdDVzo0mY", mono_aot_Sce_Vsh_ErrorDialogUtilWrapperunwind_info) +STUB("WSaroeRDE5Q", _LXbig) +STUB("WScz3+NnifQ", u_strcpy) +STUB("WSdjcfSKkSI", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V113SubtaskStatusEEC2EPS6_) +STUB("WSiZNjSOyqM", + _ZN7WebCore22EmptyFrameLoaderClient23dispatchDidReceiveTitleERKNS_19StringWithDirectionE) +STUB("WSjbYbR2LJ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEEC2Ev) +STUB( + "WSjv5a82BRo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEC1EPKS8_) +STUB( + "WSm2C3szBls", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEC2EPS6_PNS2_10LibContextE) +STUB("WSqWRn8oiXA", delegate_virtual_invoke_26) STUB("WT-5NKy42fw", sceKernelAprResolveFilepathsToIds) +STUB("WT4k6XEZ8Eo", + _ZNK3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer10getNatTypeEv) STUB("WT5hOLhCPUg", sceNpUniversalDataSystemIntDeleteAllData) +STUB( + "WT6YUgogPQ4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEC2Ev) +STUB( + "WT77mtL6tmE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEEC2Ev) +STUB( + "WT8JIIvNtx0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB("WTDVVUMuZo0", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V125NatConnectivityProperties11getFromNat2Ev) +STUB("WTJCJgIaCqw", Java_sun_awt_image_PNGImageDecoder_decodeColor83) +STUB( + "WTLNVcgSwCI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEC2ERKS7_) +STUB("WTOiJ2zqWjk", sqlite3_create_function) +STUB("WTXZNEeVd0M", llvm_throw_corlib_exception_abs_trampoline_p) +STUB( + "WTZ8yHze-iE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "WTlehjhlytk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "WTnDTMDPZ8o", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivitiesC2Ev) +STUB( + "WTrVHndLM3I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE5emptyEv) +STUB( + "WTt9y7MJxsU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEED1Ev) +STUB("WTtYf+cNnXI", _ZN3sce4Json5ValueD1Ev) +STUB("WTtl0nhAMNU", _ZN3sce7Toolkit2NP2V27Session7Request14SendInvitationD2Ev) +STUB("WTz-MXsYDy4", _ZN3sce7Toolkit2NP2V27Session7Request6Create17MAX_LOCALIZATIONSE) +STUB( + "WU-IsZ1th88", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE7reserveEi) +STUB( + "WU4eHoqbTKg", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) STUB("WU5s+cPzO8Y", sceUserServiceSetHmuBrightness) +STUB("WU9IUHm2Kgs", _ZN7WebCore6ISOBoxC2Ev) +STUB("WUASruwvl+E", _ZN7WebCore7IntSizeC1ERKNS_9FloatSizeE) +STUB( + "WUAj5Dx39Jk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE21intrusive_ptr_add_refEPS9_) +STUB("WUCtKFZt6a0", _ZN3sce7Toolkit2NP2V210Tournament7Request19GetRegisteredRosterD2Ev) +STUB( + "WUKRhjNO8vE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEC1EPS8_) STUB("WUKXnNDqQrM", ScePsmMonoArrayLength) +STUB("WULWTEqDWFE", _ZN3JSC16SamplingProfiler18reportTopBytecodesEv) STUB("WUXkX70ly+8", sceAppInstUtilAppUnInstallTheme) +STUB("WUZiQnZvttc", i2a_ASN1_OBJECT) +STUB("WUa0o9AnJFg", _ZN7WebCore12TextEncodingC1ERKN3WTF6StringE) +STUB("WUan2x6u318", _ZN7WebCore19ProtectionSpaceBaseC2Ev) +STUB("WUjJDLwXn2g", _ZN3sce2Np9CppWebApi7Matches2V113ErrorResponseD2Ev) +STUB("WUnKWYhxIvQ", _ZN9Inspector17ScriptDebugServerD0Ev) +STUB( + "WUnYtNpXkdk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE3endEv) +STUB("WUnaxQ1WUBc", _ZNK3sce2Np9CppWebApi6Common6VectorIiE3endEv) +STUB("WUofQBeNwlo", _ZTVN7WebCore26ContextDestructionObserverE) +STUB( + "WUowt9SHwdo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEC1Ev) +STUB( + "WUqVrto4TxI", + _ZN7WebCore27verifyVaryingRequestHeadersEPNS_21NetworkStorageSessionERKN3WTF6VectorISt4pairINS2_6StringES5_ELm0ENS2_15CrashOnOverflowELm16ENS2_10FastMallocEEERKNS_15ResourceRequestE) +STUB("WUuB5pmqW1Y", _ZN7WebCore11FrameLoader4initEv) +STUB("WUvblia5rz0", unum_setAttribute_59) +STUB("WUxUtR32MK8", mono_free_bstr) STUB("WV1GwM32NgY", sceNpWebApi2PushEventCreateHandle) +STUB("WV94zKqwgxY", _ZTIPKb) +STUB( + "WV9y653hEmc", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody23totalVariableCountIsSetEv) +STUB("WVB9rXLAUFs", _ZNSt12placeholders3_18E) STUB("WVBXdDlF1TE", sceEditMp4InitializeParam) +STUB( + "WVDUiyblJXA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEE11release_refEv) +STUB("WVDyhysv8q4", EC_KEY_generate_key) +STUB( + "WVF0t59elu0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEeqERKS9_) +STUB("WVGf2ERH8OU", _ZZSt9MakefacetISt10moneypunctIcLb0EESt8_LocinfoERT_T0_E3buf) +STUB("WVJ0DkjalaY", _ZN3sce7Toolkit2NP2V27Ranking17SetGameDataResultD1Ev) +STUB("WVMixvMa1+U", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEdeEv) +STUB("WVOATYV-3LU", _ZN3sce7Toolkit2NP9Utilities10FutureImplC2Ev) +STUB("WVX-Js2vLRI", _ZN3sce7Toolkit2NP2V29Challenge7Request21GetReceivedChallengesD1Ev) +STUB("WVZBP4IyM+E", + _ZN3sce4Json14InitParameter225setSpecialFloatFormatTypeENS0_22SpecialFloatFormatTypeE) +STUB("WVa-nh2q9BA", _ZN3JSC7Symbols31setIteratorFieldKindPrivateNameE) +STUB( + "WVg1z8-3Lus", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "WVgFWsKCf5w", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEEcvbEv) +STUB("WViwxtEKxHk", _ZNSt6locale7_LocimpC1ERKS0_) +STUB( + "WVkUSdv9eEk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEE11get_deleterEv) +STUB( + "WVlhjgG+ffY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEE6assignEPS6_PFvS8_EPNS2_10LibContextE) STUB("WVox2rwGuSc", sceCameraGetGamma) +STUB( + "WVqL8iJyUYs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEaSERS7_) +STUB("WVvP4zYXIaM", mono_aot_Sce_Vsh_DbRecoveryUtilityWrapperunbox_trampolines) +STUB("WW0Ng3GyPZk", Java_com_sony_gemstack_io_FilePath_n_1delete) +STUB("WW0jvCgA3f8", YGFloatIsUndefined) +STUB("WW0x+WVuT58", _ZNK3JSC11RegisterSet4dumpERN3WTF11PrintStreamE) STUB("WW1TS2iz5yc", sceAudio3dTerminate) STUB("WW1zKfNo6HI", sceMbusAddHandleByDeviceId) +STUB("WWBe8NYcfrs", _ZNK7WebCore9FrameView15topContentInsetENS_10ScrollView19TopContentInsetTypeE) +STUB("WWD2urqNMXs", __atexit) +STUB( + "WWEkTivc9E4", + _ZN9Inspector33ApplicationCacheBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("WWFehMyUrbs", mono_valloc_aligned) +STUB("WWL+CtFOBsU", g_list_append) +STUB("WWL13g00ZV8", _ZN12video_parser18cProfileCheckerMp410initializeEPNS_18cMp4FFLHndlManagerE) +STUB( + "WWMFe6wo4VU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "WWObrB1h1NU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEE11release_refEv) +STUB( + "WWPBSO93DCc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE7reserveEi) +STUB( + "WWQ53Tb+heo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEC1Ev) +STUB("WWUMGjCrqyo", mono_bitset_equal) +STUB("WWW4bvT-rSw", _ZN3sce2np9EventFlagD1Ev) +STUB("WWYEGiXtmTk", mono_gc_wbarrier_arrayref_copy) +STUB("WWhgn+U8fLI", mono_aot_Mono_Cairounbox_trampolines) STUB("WWiGuh9XfgQ", sceErrorDialogUpdateStatus) +STUB("WWpgP5pqtZ0", _ZN4IPMI4impl11SessionImplC1Ev) STUB("WWtCL5lzi7Y", sceInvitationDialogClose) +STUB("WWuvY2Ct4qM", _ZN3JSC7JSProxy12getPrototypeEPNS_8JSObjectEPNS_9ExecStateE) +STUB("WWz2luXDNjg", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_25ReceivedInGameDataMessageEE17getAdditionalInfoEv) +STUB( + "WX0zzRD99Y4", + _ZN3sce2Np9CppWebApi7Matches2V120ReportResultsRequest18setMatchStatisticsERKNS1_6Common12IntrusivePtrINS3_22RequestMatchStatisticsEEE) +STUB("WX1jdkhfmw8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEaSERS8_) +STUB( + "WX326jLN2zU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEEC2Ev) +STUB( + "WX3XLDlbOjY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("WX4JipKAHr4", _ZN3JSC7Symbols27MAX_SAFE_INTEGERPrivateNameE) +STUB("WXAgJe8+pqA", _ZN3sce2Np9CppWebApi6Common6VectorIiEC2EPNS2_10LibContextE) +STUB("WXF2ihRF+B8", _ZNK3sce4Json5Array3endEv) +STUB( + "WXJLDnZpfXU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEC1ERS7_) +STUB("WXKRNJq2jbY", _ZN7WebCore17JSDOMRectReadOnly9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) STUB("WXMhENV2NcA", sceAudioPropagationPortalSetAttributes) +STUB("WXOcRM0qa1g", _ZN3sce2Np9CppWebApi6Common6VectorIlE10setContextEPNS2_10LibContextE) +STUB("WXOoCK+kqwY", _ZNKSt5ctypeIcE10do_tolowerEc) +STUB("WXRruhGp9dI", _ZN3sce2np18MemoryStreamReaderC2EPKvm) +STUB("WXXV-yTO+QQ", u_sprintf_u_67) STUB("WXXsPHkag14", sceDepthSetRectificationInformation) +STUB("WXg9MX8BXPg", SSL_set_SSL_CTX) +STUB( + "WXh6RjDuW4A", + _ZN3sce7Toolkit2NP8Sessions9Interface6createEPKNS1_22CreateNpSessionRequestEPNS1_9Utilities6FutureINS1_20NpSessionInformationEEEb) +STUB("WXligU9ULbc", ndigs) +STUB( + "WXmmUfrcMvQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE8copyFromERKS9_) +STUB( + "WXrYgpKuld0", + _ZN3JSC8JSObject24getOwnPropertyDescriptorEPNS_9ExecStateENS_12PropertyNameERNS_18PropertyDescriptorE) +STUB( + "WXwBOxNor8s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) STUB("WXxadnoOV08", scePsmInitialize) +STUB( + "WXzZAJmEGjU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEC2EPS6_PNS2_10LibContextE) +STUB("WY4LqfgjsJY", GCC_except_table333) +STUB( + "WY4yxguhVNY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE3endEv) +STUB( + "WY6vfS60s7E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE7reserveEi) +STUB("WY7615THqKM", _ZTIPKt) +STUB("WY8bn42LPDw", _ZN3sce2Np9CppWebApi7Matches2V119ResponseTeamResultsD2Ev) STUB("WYCNbP+Q9kc", sceKernelGetAppState) +STUB( + "WYCVXfso7JQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEppEv) STUB("WYIG6fhLh0E", sceAppInstUtilAppSetRemasterInstallType) +STUB( + "WYLQSGGOdmw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE8copyFromERKS9_) +STUB("WYTloIxmAjs", _ZN7WebCore8Document12lastModifiedEv) +STUB("WYWJIM3mt+M", _ZN9Inspector21InspectorConsoleAgentnwEm) +STUB("WYWf+rJuDVU", _ZTSSt13basic_filebufIcSt11char_traitsIcEE) +STUB( + "WYZEbYtF1u4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE8copyFromERKS9_) +STUB( + "WYdsQyln9-g", + _ZN3sce2Np9CppWebApi14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBody13getSpectatorsEv) +STUB( + "WYmbWguMnBU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEixEm) +STUB("WYqdpOzCkgk", _ZN3JSC7Symbols34regExpProtoGlobalGetterPrivateNameE) STUB("WYszaHaIkWs", sceHttp2WebSocketSendTextMessageAsync) +STUB( + "WYtB8SmzDWY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE8copyFromERKS9_) +STUB("WYtEjQIlrDY", _ZN9Inspector15ScriptCallStackD2Ev) STUB("WYwgHnzZDzc", sceOpusCeltEncGetSize) +STUB("WYxBg4jHNWY", _ZN3JSC16InternalFunction16getConstructDataEPNS_6JSCellERNS_13ConstructDataE) +STUB( + "WZ0Mep6qYvA", + _ZN3sce2Np9CppWebApi14SessionManager2V157PostPlayerSessionsSessionIdInvitationsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_50PostPlayerSessionsSessionIdInvitationsResponseBodyEEE) STUB("WZ3eQ1DV7l0", sceAppInstUtilGetAddcontInstalledStatus) +STUB( + "WZ5BAySy784", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEppEi) +STUB( + "WZ8VOPZxA7U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEE5resetEPS9_) +STUB("WZ9vkyIyxLI", uprv_compareASCIIPropertyNames) +STUB("WZCBPnvf0fw", CERT_decryptRSASignatureBuffer) +STUB("WZPEDVLBj1Q", __fini_array_start) +STUB( + "WZPJRL1ipLE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE7reserveEi) +STUB( + "WZPlwfX8XGc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEE7add_refEv) +STUB( + "WZR9+QO+YUs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB("WZS2R8tyaOg", rgctx_fetch_trampoline_rgctx_0) +STUB("WZZvv8wv7uc", + _ZN3sce2Np9CppWebApi14ConnectAccount2V212PartnerToken8fromJsonERKNS_4Json5ValueE) +STUB( + "WZg4ZeyEsUQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEC1Ev) +STUB("WZhVtxHy5Hk", WKPreferencesSetEnableInheritURIQueryComponent) +STUB( + "WZjTvWW8Dk4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEE11release_refEv) +STUB( + "WZkrYDsiPSM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE4sizeEv) +STUB( + "WZlJKTC2P9E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEE3getEv) STUB("WZpxnSAM-ds", sceCameraGetDeviceInfo) +STUB("WZqwoPoMzFA", _ZN3sce2np4Time15GetNetworkClockEPS1_) +STUB( + "WZsN31syuzI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE21intrusive_ptr_add_refEPS9_) +STUB("WZuPFqNHaW4", + _ZN7WebCore22EmptyFrameLoaderClient26updateCachedDocumentLoaderERNS_14DocumentLoaderE) +STUB( + "WZv9wksgCMQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEED1Ev) +STUB("WZwMXG5Zxus", _ZN3sce2Np9CppWebApi7Matches2V119AdditionalStatistic11setStatsKeyEPKc) +STUB("WZxOUvtYcKY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEE5resetEPS6_) +STUB( + "WZxsNG7Rh94", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEED2Ev) +STUB("Wa+taop41-Q", _ZThn24_N7WebCore19MediaResourceLoaderD1Ev) +STUB( + "Wa1yYl75VwY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE5beginEv) +STUB( + "Wa3BerY29og", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditionsaSERS5_) +STUB("Wa7dSfVTJLM", _ZN3sce2Np9CppWebApi14SessionManager2V114RepresentativeD1Ev) +STUB("Wa9BXL+N09Q", + _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetail17getnpServiceLabelEv) +STUB("WaA+akXnqK4", _ZN7WebCore15HitTestLocationC1ERKS0_) STUB("WaHZGp0Vn2k", sceUserServiceGetThemeWaveColor) +STUB("WaNQzws1ATU", _ZN3sce2npeqERKNS0_8NpCommIdERK20SceNpCommunicationId) +STUB( + "WaRZXj-Zhro", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEC1ERKS7_) +STUB( + "WaRk1Z1z41U", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE4initEv) STUB("WaSFJoRWXaI", sceFontCreateRendererWithEdition) +STUB("WaThXSvAQNc", is_in_sandbox) +STUB( + "WaUtx-lXxfY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEC2Ev) +STUB( + "WaWUUX5apvU", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_19ProductInfoDetailedENS1_15AppSTLAllocatorIS5_EEEED2Ev) +STUB("WaWlT5q22s0", + _ZN23sceMetadataReaderWriter15ParserInfoTable13getParserInfoEjPPNS_10ParserInfoE) +STUB("WaXhumPFhkw", uset_addRange_67) +STUB("WaZe-luePI0", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEEC2Ev) +STUB( + "Wac3JGa9YA4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEEC1Ev) +STUB("WafE0kWDpzM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils5IdMapEE5resetEv) +STUB("WagIB6qtn6Q", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEE3getEv) +STUB("WagrudZDspY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEEmmEv) +STUB( + "WahSwJI1CYY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("WaiXnGo3CkU", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_20ChallengeRecvDetailsEEeqERKS4_) STUB("WaixXFWUcAY", sceCesUtf8ToBig5) +STUB( + "WalrpOg7gxc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEE7get_refEv) +STUB("Warhyt8CpOY", il2cpp_class_get_parent) +STUB( + "WavxGOi7t+0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "Wax7O8UPmqA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE8copyFromERKS9_) +STUB( + "WaxdYMXc4fk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEneERKS9_) +STUB("WazjLwlcuE8", _ZN9Inspector21InspectorRuntimeAgent7disableERN3WTF6StringE) +STUB("Wb+sAKJQnGc", _ZN3NTF26URLRequestUndefinedMessage6createEv) +STUB( + "Wb+u6DlluwM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEEC2ERKSA_) +STUB("Wb5DMLak0yg", WKContextAllowSpecificHTTPSCertificateForHost) +STUB("Wb664WLzebs", _ZNK7WebCore12EventHandler27capsLockStateMayHaveChangedEv) +STUB("WbBz4Oam3wM", _ZTISt13messages_base) +STUB( + "WbCQ1ST3-wg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEEC2Ev) +STUB( + "WbIr4Spv0wA", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody19npServiceLabelIsSetEv) +STUB("WbJ-j+ZAspY", unorm_next_67) STUB("WbJQXfpx-TY", SceDrfpIncrFragNo) +STUB( + "WbNEhjiaWXk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEppEi) +STUB("WbOJP2JWG+o", _ZN7WebCore24MatrixTransformOperationC1ERKNS_20TransformationMatrixE) +STUB("WbZyW96-ibM", _ZN7WebCore4Page23invalidateStylesForLinkEm) +STUB("Wbc2rRVtpYE", _ZN7WebCore10FileHandle4openERKN3WTF6StringENS_10FileSystem12FileOpenModeE) +STUB( + "WbedouXEV78", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE7popBackEv) +STUB("WbiP5Ed-hIo", _ZN7WebCore8Document20queryCommandIndetermERKN3WTF6StringE) +STUB("Wbrv09Q1jhE", _ZN3sce7Toolkit2NP2V29Messaging7Request20GameDataMessageImage14IMAGE_MAX_SIZEE) +STUB("Wbu33Mefwoo", uset_isFrozen_67) +STUB( + "WbyIzhn0jvE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE4sizeEv) STUB("Wc3aCwYB5Go", sceNpManagerIntClearVshToken) STUB("Wc3c-XGj0cg", sceUpsrvGetNextUpdateCheckDateTime) +STUB( + "Wc4Qv3R01WE", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB( + "Wc7XElcQcPg", + _ZNK3sce2Np9CppWebApi14SessionManager2V132RequestPlayerSessionMemberPlayer6toJsonERNS_4Json5ValueEb) +STUB( + "WcBwuTNPY4A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEC2Ev) +STUB("WcLP8wPB9X4", _ZN3sce2np8NpCommId5BuildERKS1_Pcm) +STUB("WcS0UlLIynU", mono_aot_Sce_PlayStation_Imeplt_end) +STUB( + "WcWjicYmxeI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "WcYBDXc+ptE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEdeEv) +STUB("WcfJXQ2NFP4", _ZN3sce2np4NpIdD1Ev) +STUB( + "WchUUfy1Dcc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEC2Ev) +STUB( + "WcjkD1iprCU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEdeEv) +STUB("WcmZSfOjKrc", _ZNK7WebCore15JSSVGSVGElement7wrappedEv) +STUB("Wcxf0oXSVzQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEEC2ERS7_) +STUB( + "WcyYuKw7ZSY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEED2Ev) +STUB( + "Wd-NLf18xWQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEppEi) +STUB( + "Wd-pB5LIO+k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEC1Ev) +STUB( + "WdAab1qKde8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE8copyFromERKS9_) +STUB("WdBxzIdie+w", WKBundleNodeHandleSetHTMLInputElementAutofilled) STUB("WdCUUJLQodM", sceNpTrophySystemGetDbgParam) +STUB("WdCwmDiTuFE", ucnv_getPlatform) +STUB( + "WdG0bfPQ7Zo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB("WdHzHT7Oa-s", _ZN3sce7Toolkit2NP2V212ActivityFeed6Action11URL_MAX_LENE) +STUB("WdK-Teg0wGs", _ZNK3sce2Np9CppWebApi7Matches2V120RequestPlayerResults8getScoreEv) +STUB("WdQsV86yC8M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEixEm) +STUB( + "WdTBMxIUtoM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("WdWD5q2LfyA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEC2ERS7_) +STUB( + "WdcQQVlNxcs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE8pushBackERKS8_) +STUB("Wdcyv8XRLIs", _ZN7WebCore24CoordinatedGraphicsLayer18setFixedToViewportEb) +STUB("WdgNKFD3V+c", _ZNK7WebCore9DOMWindow12nowTimestampEv) +STUB("WdgU1YXvwUY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEEeqERKS7_) +STUB("Wdjktr3c55c", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku16setOriginalPriceERKi) +STUB( + "Wdk3GULN2nk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEppEi) +STUB( + "Wdk9Huv89tQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEC2EPNS2_10LibContextE) STUB("Wdlx0ZFTV9s", sceNgs2SystemSetLoudThreshold) +STUB("Wdnzvr-K5ow", searchCommInfoListBySock) +STUB("WdvqDYmBK3g", _ZNK3JSC6JSCell9getStringEPNS_9ExecStateE) +STUB("WdyC1bhGOAc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEEC1Ev) +STUB("WdzlW3CX4uk", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEEC2Ev) +STUB( + "We01BOPaiBk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB( + "We1UBhvK274", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "We2AoCHlZo0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE5clearEv) +STUB( + "We2H9no4Mxk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser9unsetsortEv) +STUB( + "We5zMb3WBJQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEEcvbEv) +STUB( + "We6Za4siYpg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("We7gQkqiVwY", _ZN4Manx5MutexC2Ev) +STUB("We80-1Wp+Ek", _ZN3JSC17JSInternalPromise4thenEPNS_14JSGlobalObjectEPNS_10JSFunctionES4_) +STUB("WeNDiZnkqwc", + _ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer11setPlatformEPKc) +STUB( + "WeQpWb13-vk", + _ZN9Inspector20DOMBackendDispatcher16setInspectedNodeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("WeZCXuG60OQ", ErrorDialogInit) +STUB("WebhFUlKfx4", _ZTVN3WTF22CrossThreadTaskHandlerE) +STUB("Wefycfipvcc", rgctx_fetch_trampoline_mrgctx_108_p) +STUB("WehD1u87rlM", _ZN3JSC9ExecState13describeFrameEv) +STUB("Wel+vG0jCt0", Java_java_io_RandomAccessFile_read0) +STUB("WemdQZJ8Ets", _ZN4IPMI6Server12EventHandler15onSessionKilledEPNS_7SessionE) +STUB("WepVJVZ8cpA", _ZN3sce7Toolkit2NP2V27Session9SessionIdC1Ev) STUB("WerRlm8NBuE", sceDebugIpmiGetKidInfoListForCoredump) +STUB("WerviCFtn04", _ZN9Inspector20InspectorTargetAgentD0Ev) STUB("WeuDjj5m4YU", sceHttp2AuthCacheFlush) STUB("Wf+VUrny3Fk", scePlayReadyLicenseDelete) +STUB("Wf2HY1HK1m0", _ZN4Manx8X509nameC1EPKS0_) STUB("Wf6-PNCyY20", scePadVrControllerSetVibrationMode) +STUB("Wf805BVRegg", _ZN3sce2Np9CppWebApi12Leaderboards2V15Error8fromJsonERKNS_4Json5ValueE) +STUB("Wf8AS4IEmVw", _ZN7WebCore15AffineTransform5shearEdd) +STUB( + "Wf8UPh4tq1g", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo10initializeEPNS1_6Common10LibContextEPKciNS6_12IntrusivePtrINS3_22SetDataInfoRequestBodyEEE) STUB("WfAiBW8Wcek", sceAjmBatchErrorDump) +STUB( + "WfLD8fGAQhc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("WfOpebGvDrk", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend7FriendsEE12deepCopyFromERS7_) +STUB("WfQSx6ym2D4", _ZN3sce2Np9CppWebApi6Common8IteratorIiEmmEv) +STUB("WfVbbAc4Mtw", _ZN3sce7Toolkit2NP20RegisterScoreRequestC2Ev) +STUB("WfXvBs9lIQ0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEaSERKS9_) +STUB("WfbtnyN65i0", _ZN3JSC14ProtoCallFrameaSERKS0_) +STUB( + "WfehSCu7pzE", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessions31hasxPSNSESSIONMANAGERACCOUNTIDSEv) +STUB( + "Wfi9fUeFdWE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEED1Ev) +STUB( + "Wfiq93CqG9A", + _ZN7WebCore18WorkerScriptLoader22validateWorkerResponseERKNS_16ResourceResponseENS_12FetchOptions11DestinationE) STUB("Wfr3Ss7wSPg", sceUlpMgrVshNextChunkCmd) +STUB("WfsErGF2NGY", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setPrimaryAudioLang) +STUB( + "Wfu6MeokEPs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEptEv) +STUB( + "WfwZnCzkzBE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEneERKS9_) STUB("WfyPFjoj30k", sceFsDevpfsA53IocGetBuildMetadataStatus) +STUB( + "WfyltGHHJHg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEmmEv) +STUB("Wfzh10yFbVM", + _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody19unsetNpServiceLabelEv) +STUB("Wg-SBhw2nm8", _ZN3WTF7RunLoop4stopEv) STUB("Wg-w8xjMZA4", sceRemoteplayNotifyPinCodeError) +STUB("Wg5+Z8scBLg", _ItL_atanlo) +STUB( + "WgA3lqGRqZ4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEC2EPNS2_10LibContextE) +STUB("WgCZ0HyfQ3I", _ZN3WTF15AutomaticThread14threadDidStartEv) +STUB( + "WgD89Uxautc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEC1EPS8_) +STUB( + "WgGbm19BGAk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEC1Ev) +STUB("WgKbCCA4IHY", SSL_CTX_set_verify) STUB("WgR3W2vkdoU", sceFontGlyphGetOutlineVertexes) +STUB("WgVSxcwhSgs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEC2Ev) +STUB( + "WgZM6M5WzzU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEixEm) +STUB( + "WgZOdtPlJW0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEC2EPS7_PNS2_10LibContextE) +STUB( + "WgdzVQJ47Ts", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEdeEv) +STUB("Wgeoc8Zk6dk", _ZNSt15basic_streambufIcSt11char_traitsIcEE9pbackfailEi) +STUB( + "WglSpXP2XEs", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessionsC2ERS5_) +STUB("WglfPILk1u0", mono_aot_Sce_Vsh_RnpsAppMgrWrapperjit_got) +STUB("WgmTo8l6bAM", _ZN7WebCore4PathC2ERKS0_) +STUB("WgnhUx36Hdg", mono_aot_Sce_PlayStation_PUIplt_end) +STUB("WgodWdqVKo0", mono_aot_Sce_Vsh_Sl2_Sl2Commonunwind_info) STUB("Wgptd+IJcp0", scePlayReadyReaderRetrieveOpaqueContent) +STUB("Wgw2LeWBk4A", _ZNK3sce2Np9CppWebApi7Matches2V120ResponseMatchResults20getCompetitiveResultEv) +STUB( + "Wh2-BPMYsmE", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi35ParameterToSetGameSessionProperties9terminateEv) +STUB("Wh7HbV7JFqc", getrlimit) +STUB( + "Wh9VS3-gejo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEneERKS9_) +STUB("WhAKu441AFs", JVM_GetCPMethodSignatureUTF) STUB("WhCc1w3EhSI", _sceKernelSetThreadAtexitReport) +STUB("WhESSNwlm08", ulist_getListSize) +STUB("WhHAwtSeEVY", + _ZN7WebCore16FontCascadeFonts23realizeFallbackRangesAtERKNS_22FontCascadeDescriptionEj) STUB("WhIdEVFHHSo", sceSystemModalDialogClose) +STUB( + "WhOYEoEEuho", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEC1ERS7_) STUB("WhQDXYtcw18", sceUserServiceGetVoiceAgentEnable) +STUB( + "WheFSRlZ9JA", + _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE5_IfmtEPcPKcNSt5_IosbIiE9_FmtflagsE) +STUB("WheHjM1+teg", + _ZN3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBody14setRulesetNameEPKc) +STUB("WhgyN04dHCk", _ZNK7WebCore6Editor7Command7executeERKN3WTF6StringEPNS_5EventE) STUB("WhilT63upyA", sceUpsrvUpdateGetBetaAgreementUrl) +STUB("Whtzzq5wrwQ", _ZN3sce2Np9CppWebApi15Personalization2V111ErrorEntityD1Ev) +STUB("WhzDsWhWcoU", _ZN3sce7Toolkit2NP2V23TUS13TusDataStatusC1Ev) +STUB( + "Wi+-R48keDc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "Wi-6yovMTE8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V135AddAndGetVariableRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_28AddAndGetVariableRequestBodyEEE) +STUB("Wi006FBIy8s", Java_java_lang_StrictMath_log) +STUB("Wi4Jjwa3NJA", uhash_hashChars_67) +STUB( + "Wi5rozag-to", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEaSERS7_) STUB("Wi6pRLPS8cc", sceG2PDialogGetStatus) STUB("Wi7DtlLV+KI", sceAjmModuleUnregister) +STUB( + "Wi7m09iBixI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEC2EPS6_PNS2_10LibContextE) STUB("Wi82ArQtAwg", sceAgcGetRegisterDefaults) +STUB( + "Wi8WTlleNlk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEEcvbEv) +STUB("Wi9eDU54UCU", SSL_init) +STUB("Wi9efrgaHw4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE4sizeEv) +STUB( + "WiCcGqp6Qzk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEE7add_refEv) +STUB("WiDOyYEC1I8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEaSERKS7_) STUB("WiGKINCZWkc", sceMouseDeviceOpen) +STUB("WiH8rbVv5s4", _ZNSt9bad_allocD2Ev) +STUB("WiHMx2bAvlI", WKBundlePageStartMonitoringScrollOperations) +STUB("WiLSvVuUcpE", _ZNK3sce2Np9CppWebApi14SessionManager2V110FromMember11getPlatformEv) +STUB("WiLcZIhhlio", _ZNK3sce2Np9CppWebApi7Matches2V119AdditionalStatistic13getStatsValueEv) STUB("WiMuuKGRuaw", s_useStdThreadStackSize) +STUB( + "WiRgqOHDkGg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEixEm) +STUB( + "WiUfInbfjxI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEED2Ev) +STUB("WiUy3dEtCOQ", _ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED1Ev) +STUB( + "WiVkiHPAU8k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEC1EPS8_) +STUB("WibKAz3q11k", + _ZNK3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer12getJoinStateEv) +STUB("Wick8AYnkiI", _ZN3sce2np18HttpConnectionPoolC2EP14SceNpAllocator) +STUB("Wie1csFXZEo", + _ZNK3sce2Np9CppWebApi14SessionManager2V124PlayerSessionPushContext16getPushContextIdEv) +STUB("WihB9X5JacM", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V15Error14setReferenceIdEPKc) +STUB( + "WilVuwdJbtw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEE7get_refEv) +STUB("WirWWwULaRQ", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets19unsetplatformFilterEv) +STUB("WisAKbUAQO0", WKBundleNodeHandleCopyVisibleRange) STUB("Wit4LjeoeX4", sceWebBrowserDialogGetEvent) +STUB( + "WitXeVIevoI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEEdeEv) +STUB( + "Wiw4wVD+Wxw", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS5_INS7_7DataApi25UploadDataResponseHeadersEEEEEiRNS2_19UpStreamTransactionIT_T0_EE) +STUB("Wixm7ST0Syw", _ZNK3sce2np10JsonString9GetLengthEv) +STUB( + "Wj3gmy+KK98", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEppEv) STUB("Wj4zVVejNOE", sceHmdGetFieldOfView2d) +STUB( + "Wj7is0Zkxsk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "Wj90gsyFXBg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEixEm) +STUB( + "WjBac8UGVUI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEC2Ev) +STUB("WjChQ3sh+qQ", Java_com_sony_bdjstack_javax_media_controls_SoundManager_getGainMute) +STUB("WjCzYA2xydA", _ZN3JSC27objectPrivateFuncInstanceOfEPNS_9ExecStateE) +STUB("WjDaZHB1cS8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE7reserveEi) +STUB( + "WjDbY5hLcdc", + _ZN3sce2Np9CppWebApi14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyD1Ev) +STUB("WjESEDn5AEk", WKPageGetTypeID) STUB("WjHT5TmV0TQ", sceSocialScreenDialogGetResult) STUB("WjKbVlARycE", sceDebugGetProcessCoredumpHandlerEventBlob) +STUB( + "WjNLArA3W-M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("WjS1oe87jNk", _ZN3sce7Toolkit2NP2V26Trophy17TrophyPackSummaryD1Ev) +STUB("WjTI2Z1q3FA", + _ZNK7WebCore17FrameLoaderClient47allowsContentJavaScriptFromMostRecentNavigationEv) +STUB("WjWEBD4uZnU", mono_inst_name) +STUB( + "WjaRIYMNvvo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEmmEv) +STUB( + "Wjbj4ha5NS4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "WjejDpHFDqk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE5startEPNS2_10LibContextE) +STUB( + "Wjhr-vyWIJo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "WjiQn1LNaCY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE3endEv) +STUB("WjjY3Mi2y2g", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE5beginEv) +STUB("WjmpkQZMzQY", _ZN3sce2Np9CppWebApi13InGameCatalog2V517ContentDescriptor6setUrlEPKc) +STUB("WjruZhCEgss", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEC2Ev) +STUB("WjvvtaniDhE", _ZN3JSC8Debugger15clearParsedDataEv) +STUB( + "WjxPWumvo9Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEC2EPS8_) +STUB("Wk00PLpcA8M", _ZNK7WebCore14ScrollableArea12scrollOffsetEv) +STUB( + "Wk2pQM-Zs8U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEC2Ev) +STUB( + "Wk6WBuhZ1iw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB( + "Wk6ZboBDDXY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEC2Ev) +STUB( + "Wk80eUxL7to", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEE5resetEPS6_) +STUB("Wk9ZHUfZ-Lk", ubrk_isBoundary_67) +STUB("WkAsdy5CUAo", _ZNSt8_Locinfo8_AddcatsEiPKc) +STUB("WkC8Kl9iybw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEC2Ev) +STUB( + "WkCb92DWBNQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "WkGWeItozyc", + _ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody15unsetSearchableEv) +STUB( + "WkKMqqrOp6k", + _ZN9Inspector33ApplicationCacheBackendDispatcher22getFramesWithManifestsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "WkUYVr-HCmo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEeqERKS9_) STUB("WkUlp2cRBGg", sceNpIpcClientTermInternal) +STUB("WkUqYTkTzeI", _ZNK7WebCore15VisiblePosition8previousENS_27EditingBoundaryCrossingRuleEPb) +STUB("WkVj23rFUR8", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13FriendsOfUserEE9constructEPS3_RKS3_) +STUB("WkVyoM7fyO4", WKContextConfigurationCopyWebSQLDatabaseDirectory) +STUB("WkYnBHFsmW4", __isnormalf) STUB("WkYtyOg30do", sceVideoOutSetFlipMaster) +STUB("WkZpN6r-c+A", _ZN3WTF31equalIgnoringFragmentIdentifierERKNS_3URLES2_) STUB("WkdkfQun1gc", sceCompositorSystemConfig) +STUB("Wker5d+4eTc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEE11get_deleterEv) +STUB("WkjdgojiCdQ", audiodeccpuinternal_core_ops_flac2) +STUB("WkkeywLJcgU", wcslen) +STUB("WkmRWGmkwyY", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIfED1Ev) +STUB("WkoNcCX2OV4", _ZN7WebCore10JSDocument9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB( + "WksDLUgLxyM", + _ZN3JSC8Bindings13RuntimeObject3putEPNS_6JSCellEPNS_9ExecStateENS_12PropertyNameENS_7JSValueERNS_15PutPropertySlotE) +STUB( + "WktfrhSU8bM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE5emptyEv) STUB("WkvclTMjNdI", sceNpMatching2SignalingGetPort) STUB("WkwEd3N7w0Y", sceKernelInstallExceptionHandler) +STUB("Wl0OUqhLPnk", WKPageClearSelection) +STUB( + "Wl1PmfOst2o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEmmEi) +STUB( + "Wl2gGA34Iq0", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemProperties12getaccountIdEv) STUB("Wl2o5hOVZdw", sceKernelPrintBacktraceWithModuleInfo) STUB("Wl3sypoj-fA", sceDeci4hDrfpFchstat) STUB("Wl4FiI4qKY0", sceFontGraphicsSetupFillRates) +STUB( + "Wl8182R3qYU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEneERKS9_) +STUB( + "WlBBtkMRe9s", + _ZN7WebCore20SVGPathStringBuilder12curveToCubicERKNS_10FloatPointES3_S3_NS_18PathCoordinateModeE) +STUB("WlFOMTjIwrc", WKPageLoadURLRequestWithUserData) +STUB("WlFt-qUORdo", JVM_GetInterfaceVersion) +STUB( + "WlFtJDxjSiU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("WlG9NNIrcok", _ZN7WebCore12RenderObject17absoluteTextRectsERKNS_11SimpleRangeEb) +STUB("WlGbGwnNLkY", _ZN7bmalloc29StaticPerProcessStorageTraitsINS_11AllIsoHeapsEE7Storage8s_memoryE) +STUB("WlNzzgO5pbc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEE7add_refEv) +STUB( + "WlOAVxoNa6A", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V318PsnWebErrorWrapper8setErrorERKNS1_6Common12IntrusivePtrINS3_11PsnWebErrorEEE) +STUB("WlOahdw8-Yk", _ZN23sceMetadataReaderWriter13ParserManagerC2Ev) +STUB("WlRy47jghy8", WKBundleNodeHandleGetTypeID) +STUB( + "WlW6Nk-ua5E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEE5resetEPS8_) +STUB("WlWaIO0q+1I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEC1ERS7_) +STUB( + "WlWrPbrF-gc", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V127ConnectionQualityPropertiesC2EPNS1_6Common10LibContextE) +STUB( + "Wle1PeE+SCs", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("WleW1S5dwN0", rgctx_fetch_trampoline_mrgctx_1_p) +STUB( + "WlfNdEmOh40", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "WlfyBqgFeQs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEED1Ev) +STUB( + "WljbBxL-zbs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("Wlq938dAKkE", rgctx_fetch_trampoline_mrgctx_73_p) +STUB("Wlrs7NEHJgE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEE3getEv) +STUB( + "WlwxPyZwm-Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE3endEv) +STUB( + "Wlx2G02kEtQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) STUB("WlyEA-sLDf0", sceKernelTruncate) +STUB( + "WlybyPQtrXw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEED2Ev) +STUB( + "WlzRxc3pgjk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEE3getEv) +STUB("Wm0y-9IRE8I", u_setMutexFunctions) +STUB( + "Wm4jbQyYZOE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEmmEv) +STUB( + "Wm96NnEepxc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEC1ERS7_) +STUB("WmAKU9P4PkE", _ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetail13setMiddleNameEPKc) +STUB( + "WmARSMLIsII", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setInteger9ERKi) STUB("WmAc2MEj6Io", sceAgcDcbDmaData) +STUB("WmJOCQ0NwOw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEE3getEv) +STUB( + "WmSB2Ma+WK4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEmmEi) +STUB( + "WmWLkS27FxE", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "WmWgsK0B954", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEplEm) STUB("WmYDzdC4EHI", sceImeParamInit) +STUB("WmYrwvOzOuM", _ZN7WebCore6ISOBoxnwEm) +STUB( + "WmZe8YeM5G0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("WmdfFp6+niw", mono_aot_Sce_PlayStation_BclExtensionsmethod_addresses) +STUB("WmknbtEBGi8", _ZN3JSC7Options10initializeEv) +STUB( + "Wmn1n5XA8DE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE10setContextEPNS2_10LibContextE) +STUB("WmpYOowrcIE", _ZN9Inspector29SupplementalBackendDispatcherD0Ev) +STUB("WmpzhNeeee4", _ZN12Mp4Retriever20processUuidId3v23BoxEv) +STUB( + "WmsxlwbABS4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEeqERKS9_) +STUB("WmtG1QJQitU", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEEptEv) STUB("WmzLsYNgA9E", sceDeci4hDrfpRecv) +STUB( + "Wn+4u3sZIKM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE21intrusive_ptr_sub_refEPS9_) STUB("Wn-+887Lt2s", sceNetCtlGetScanInfoBssidIpcInt) +STUB( + "Wn1MS3LKjPs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEE11release_refEv) +STUB( + "Wn1WPosz5lU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE21intrusive_ptr_add_refEPS9_) +STUB("Wn4m8z8Usnc", Java_java_awt_GnmGraphicsEnvironment_nativeSetWindow) +STUB("Wn6I3wVATUE", daemon) +STUB("WnA+PWS1G+c", _ZN7WebCore12ChromeClient30supportsVideoFullscreenStandbyEv) +STUB("WnAwkFdHB7o", u_unescape_67) +STUB("WnB0zujGTmE", _ZN3sce7Toolkit2NP9Utilities6FutureI16SceNpTusVariableEC1Ev) +STUB("WnBX1Y9Tdi0", fuse_notify_poll) +STUB( + "WnDNXOqq1FE", + _ZN7WebCore15UserInputBridge17scrollRecursivelyENS_15ScrollDirectionENS_17ScrollGranularityENS_11InputSourceE) +STUB("WnE13Ud-i1s", __ubsan_current_error_report) +STUB("WnE1cxQELbY", _ZN15AbstractStorage4ItemD2Ev) +STUB("WnFucAobvQo", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312AccountIdMap8fromJsonERKNS_4Json5ValueE) +STUB("WnKkAvrrmFM", _ZN7WebCore10ScrollView8addChildERNS_6WidgetE) +STUB( + "WnMssl-k6vA", + _ZN3JSC6RegExp5matchEPNS_14JSGlobalObjectERKN3WTF6StringEjRNS3_6VectorIiLm0ENS3_15CrashOnOverflowELm16ENS3_10FastMallocEEE) +STUB("WnNwZLFh9Io", _ZN3JSC7Symbols17toStringTagSymbolE) +STUB( + "WnO5ZKN7EJk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEC2EPKS8_) +STUB( + "WnOO+2F+y3c", + _ZN7WebCore37BasicComponentTransferFilterOperation6createEdNS_15FilterOperation13OperationTypeE) +STUB( + "WnWKxDgyztg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("WnazLmcrKBo", _ZN12video_parser7cVpUtil12vp_ff4_fseekEPvli) +STUB("WnbSXH4ysd4", _ZN7WebCore9HTMLNames13blockquoteTagE) +STUB("WnbVnvSPKXE", uprv_calloc) +STUB( + "Wne7WT-eWhw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEED2Ev) +STUB( + "Wnfzger3HKM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE7popBackEv) +STUB("WnoWbDsLL6A", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEEC1Ev) STUB("Wnp1OVcrZgk", sceAvPlayerGetAudioData) +STUB( + "WnrLuCs8pOo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("WntRKhYTmZw", _ZN3sce4Json19InternalInitializerC1Ev) +STUB( + "Wnu-RsvLYlw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE3endEv) +STUB( + "WnxnWecMsGo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEppEi) +STUB("Wo-8R8c0Zoo", + _ZNK3sce2Np9CppWebApi14SessionManager2V127ResponsePlayerSessionPlayer6toJsonERNS_4Json5ValueEb) +STUB("Wo1Sfjy-hKk", _ZN3JSC23getUint32ArrayClassInfoEv) +STUB( + "Wo4X+JtIO4w", + _ZN3sce7Toolkit2NP8Sessions9Interface5leaveEPKNS1_16NpSessionRequestEPNS1_9Utilities6FutureIiEEb) +STUB( + "WoASn1-8MUg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEEcvbEv) +STUB( + "WoAnjCCYkwI", + _ZN9Inspector32ScriptProfilerFrontendDispatcher16trackingCompleteEN3WTF6RefPtrINS_8Protocol14ScriptProfiler7SamplesENS1_13DumbPtrTraitsIS5_EEEE) +STUB( + "WoB4ricG2A8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEdeEv) +STUB("WoBSIp8w+R8", ures_getNextResource_67) +STUB("WoCt9o2SYHw", _ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED1Ev) +STUB("WoFUqVndTak", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEE7get_refEv) +STUB("WoFp77mNyw0", _ZN3sce2np9HttpTrans21GetResponseStatusCodeEPNS0_6HandleEPi) +STUB("WoL8Z8L9FRM", _ZNK3sce2Np9CppWebApi7Matches2V119RequestMatchResults20getCooperativeResultEv) +STUB( + "WoM5M38rDuA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEmmEv) +STUB("WoRHf6Ze3sw", utext_moveIndex32_67) +STUB( + "WoTOluC5rV8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEED1Ev) +STUB( + "WoTweSyuqao", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE7reserveEi) +STUB("WoaqjY1ccEo", _ZN3sce2np11NpHttpTrans21SetRequestAccessTokenEPNS0_6HandleE) +STUB( + "WohYT57mACk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEC1Ev) +STUB("WokVIWzuBos", _ZN7WebCore12JSAudioTrack23visitAdditionalChildrenERN3JSC11SlotVisitorE) +STUB("WonrTtRP77U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEEaSERS7_) +STUB( + "WoqkxOFUFNo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEptEv) +STUB( + "WorVwDY-ME4", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V113ErrorResponse8setErrorERKNS1_6Common12IntrusivePtrINS3_5ErrorEEE) STUB("WotfHuA97u4", sceIduUtilGetDiskSpaceStats) +STUB( + "Wovh+WTRa+s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEC2Ev) STUB("Wp+C91igTkE", sceNpSnsIntTwGetSystemAccessToken) +STUB( + "Wp+bgq-m+CM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE10setContextEPNS2_10LibContextE) STUB("Wp1GIhLA9uA", sceFsNsfsUmount) +STUB( + "Wp2Gh5NE71E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEE7get_refEv) +STUB("Wp7dyH-WjjM", _ZNK23sceMetadataReaderWriter8Metadata9dumpValueEv) +STUB( + "Wp87nsNxGiA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "Wp89y6zGg2s", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEC1Ev) STUB("Wp8zHTocS5E", sceUsbStorageTerm) +STUB( + "WpAliLBlSKU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEC1Ev) +STUB("WpCAYAehgsk", _ZN3sce7Toolkit2NP2V212ActivityFeed14PlayedWithFeedC1ERKS4_) +STUB("WpKEiNcP9fk", + _ZN3sce2Np9CppWebApi14SessionManager2V115LocalizedString18setDefaultLanguageEPKc) STUB("WpNcYUoJe74", sceGpuTraceStart) +STUB("WpOA+METUbw", _ZN7WebCore28InspectorFrontendClientLocal8SettingsD2Ev) +STUB("WpOVRhZTKJw", _ZN12Mp4Retriever14processMdiaBoxEv) +STUB("WpSu15AKAh4", ulocdata_getLocaleDisplayPattern_67) +STUB( + "WpTMMnPIdMw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE5eraseENS2_13ConstIteratorIS9_EERSC_) +STUB( + "WpeYwGPqIRk", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124NatConnectivityToMetrics8fromJsonERKNS_4Json5ValueE) +STUB("WpfgqL8ubzU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEC1ERS7_) STUB("WpgesOm4xX8", sceDepth2Initialize) +STUB( + "WpoQBxVRdvc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEEC1ERSA_) +STUB("Wpot2z3KPyU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEC2Ev) STUB("WprqEZQd8e0", sceAudioOutAssignHRTF) +STUB( + "WpyHhX-J-k4", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeaders6createEPNS1_6Common10LibContextERNS6_12IntrusivePtrIS5_EEl) STUB("Wq2qTfZyJpo", sceFsSysStorageGetStatus) STUB("Wq4RNB3snSQ", sceHttpGetNonblock) +STUB("Wq9Klhhem4E", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge18ChallengeThumbnailEED1Ev) +STUB( + "Wq9YlYvcNbQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("WqAN91S1zE4", + _ZN3sce2Np9CppWebApi14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyD1Ev) STUB("WqAayyok5p0", sceImeVshUpdate) +STUB( + "WqB4FBI3mtQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("WqDGv5ILjDI", _ZN7WebCore13HitTestResultC2Ev) +STUB("WqDYv9bWc1E", png_destroy_read_struct) +STUB("WqHfqjSXV0k", mono_set_dirs) +STUB( + "WqOdJl5Ozks", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEC2EPS8_) +STUB("WqSxu7Had0Q", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16UnlockedTrophiesEE5resetEv) STUB("WqV-TtAY0Fc", sceVideoCoreChangeDisplaySize) +STUB("WqXCb6la+Gs", _ZN7WebCore11JSTextTrack9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB( + "WqaO8-zdo+I", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEptEv) +STUB("Wqbmub94nLE", WKPreferencesGetWebAudioEnabled) +STUB("Wqd2YPTEZOQ", _ZN3sce7Toolkit2NP2V212EventsClient13EventDurationC1Ev) +STUB("Wqdwk217NiM", _ZN3sce2Np9CppWebApi13InGameCatalog2V514ContainerMediaD1Ev) +STUB("WqfoS9r2UU4", _ZN9Inspector21PageBackendDispatcherD2Ev) STUB("WqhrteSfDVI", sceFsLvdAttachPartiallyCryptedDownloadData) +STUB( + "WqiOCaxRWfo", + _ZN3JSC7JSProxy23getGenericPropertyNamesEPNS_8JSObjectEPNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("WqjalTU4ao8", _ZN7CoreIPC10Attachment6decodeERNS_15ArgumentDecoderERS0_) +STUB("WqnB6ITORdg", WKAccessibilityFocusedObject) +STUB("WqqA2zraxGw", _ZN7WebCore8JSPath2D14finishCreationERN3JSC2VME) +STUB("WqtJrLRSJ38", _ZN9Inspector18InspectorHeapAgent27nodeForHeapObjectIdentifierERN3WTF6StringEj) +STUB( + "WqurSaJqeMM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEaSERKSA_) +STUB("WqzBma32q5c", _ZN9Inspector21DOMFrontendDispatcher23willRemoveEventListenerEi) +STUB("Wr19x-stzkg", _ZNK3sce2np14JsonObjectImpl8GetFieldEPKc) +STUB("Wr3nsor1aNc", cairo_get_target) STUB("Wr5KVtyVDG0", sceHmdInternalAnotherScreenGetAudioStatus) +STUB("WrJ90gehEag", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE5clearEv) +STUB( + "WrJIoUcoGgs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("WrJvcq8OhGc", _ZN6Dinkum7threads10lock_errorC1Ev) STUB("WrOLvHU0yQM", pthread_setspecific) +STUB( + "WrQw1Oqo2L4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEdeEv) +STUB("WrVbuRtQ9CM", _ZNK7WebCore14SecurityOrigin10canDisplayERKN3WTF3URLE) STUB("WrdP9Zxx3lQ", sceAgcDcbDrawIndexAutoGetSize) +STUB("Wrec90FZeUo", _ZN3sce2Np9CppWebApi12Leaderboards2V15Entry13unsetObjectIdEv) +STUB( + "Wri5KLp6Q9Y", + _ZNK3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody17joinDisabledIsSetEv) +STUB("WrqBnG7nbZ4", _ZN3sce7Toolkit2NP2V26Friend15FriendsOfFriend5resetEv) +STUB( + "WrrSCdDxok0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("Wrw1Z7leplo", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15StatsD2Ev) +STUB("WrxDYHYZaLg", __asan_current_error_report_size) +STUB("WrxTlVukzt8", _ZN3sce7Toolkit2NP2V27Session8SessionsC1ERKS4_) +STUB("WrxoRMexqRU", fuse_fs_open) +STUB("Ws0Qz5xJyVk", mono_aot_Sce_Vsh_Np_Commonplt_end) +STUB( + "Ws0pRF+kvkk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("Ws4FsomU1OQ", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15PlayedWithStoryEE8allocateEmPKv) +STUB( + "Ws5SFjH9sYA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEC2EPNS2_10LibContextE) +STUB( + "Ws9Mr1MtNKo", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE21intrusive_ptr_sub_refEPS7_) +STUB("WsAtWvLkO7Q", lchown) +STUB("WsBJZWjWhmc", _ZN7WebCorelsERN3WTF10TextStreamERKNS_16VisibleSelectionE) +STUB("WsEitd57LfE", _ZNK7WebCore27ScriptedAnimationController8intervalEv) STUB("WsGR1gzifpE", sceAvControlSetDefaultVideoOutMode) +STUB( + "WsGUjPVtqas", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB( + "WsO1sVRk2rE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "WsP8Q8ofNLs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEC2EPKS8_) +STUB( + "WsSC5V8scvE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEppEv) +STUB("WsWNyw1KycE", _ZNK3WTF3URL39fragmentIdentifierWithLeadingNumberSignEv) +STUB( + "WsY15EjW9tY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("WsZsB6iT9nY", + _ZN7WebCore21WheelEventTestTrigger19deferTestsForReasonEPKvNS0_22DeferTestTriggerReasonE) +STUB( + "WsemN8R9tRk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEEC1ERKSA_) +STUB("WsjhHYwSTkc", _ZThn8_N7WebCore26ActiveDOMCallbackMicrotaskD1Ev) STUB("WslcK1FQcGI", sceKernelIsNeoMode) +STUB( + "WsoHrQqq1Ag", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_15PlayedWithStoryENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB( + "WssXZNMBHRI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB("WsxsmOSPno4", _ZNK3sce7Toolkit2NP9Utilities6FutureI18SceNpTssDataStatusE17getAdditionalInfoEv) +STUB("WszCjTAdGLg", YGNodeLayoutGetPadding) +STUB("Wt+5HR0R1Qw", WKBundlePageSetFormClient) +STUB( + "Wt-EeW4Giqw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEE11get_deleterEv) +STUB("Wt4UzkFSXI8", _ZN7WebCore36ISOProtectionSystemSpecificHeaderBoxC1Ev) +STUB( + "Wt7ZGpKT5dg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEmmEi) +STUB("Wt81UxzbmG8", _ZN9Inspector18InspectorHeapAgent6enableERN3WTF6StringE) +STUB("WtGT3EXh+7c", + _ZN3IPC18MessageReceiverMap15dispatchMessageERNS_10ConnectionERNS_14MessageDecoderE) +STUB("WtLVPoqLGdI", mono_metadata_translate_token_index) +STUB("WtLXuyKk4sc", _ZN3WTF8JSONImpl10ObjectBaseC2Ev) +STUB("WtNGl+am6WU", mono_aot_Sce_Vsh_Np_Managerunwind_info) +STUB("WtOeSfg+H2Y", _ZN3sce2Np9CppWebApi14SessionManager2V15Error9setSourceEPKc) STUB("WtOs6cUbrx8", sceNpSessionSignalingGetGroupInfo) +STUB("WtR7OVvUgSo", get_page_table_stats) +STUB("WtTZKbENx4o", FcObjectSetDestroy) +STUB("WtUhKq4y6xE", mono_aot_Sce_PlayStation_HighLevel_UI2Platformplt) +STUB( + "WtVuiQxiS4E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB("WtWSMp-rhOU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEEaSERKS7_) +STUB( + "WtYJRC0ndgk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "Wtl8SO65aAw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEE11release_refEv) +STUB("Wto-jaSqqdY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEE7add_refEv) STUB("WtsuDMvVw-I", sceNpManagerIntCheckGameNpAvailabilityWithPid) +STUB("WtwJKh+NPQU", WKPageSuspendActiveDOMObjectsAndAnimations) +STUB("WtzOC5HWba0", mono_gc_collect) STUB("Wu+zDz8VIFk", sceLncUtilGetAppIdOfBigApp) +STUB("Wu-urs6MMpQ", _ZN3sce4Json6Object4PairC2Ev) +STUB( + "Wu2f5I+EwOQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "Wu6uY3z5PzY", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V125NatConnectivityProperties6toJsonERNS_4Json5ValueEb) +STUB("Wu7C73GjWwk", _ZNK7WebCore7Element14hasAttributeNSERKN3WTF12AtomicStringES4_) +STUB("WuAPUwIvKIo", ucptrie_close) +STUB( + "WuBlSCYKEvE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEEC1Ev) +STUB( + "WuDMDdhQgRQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEE7add_refEv) +STUB("WuFNFYQX3NA", curl_multi_wait) +STUB( + "WuFkhfzmkXs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEeqERKS9_) +STUB("WuGbplp8Gtg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEppEi) +STUB( + "WuHl28C+7k0", + _ZN9Inspector34ApplicationCacheFrontendDispatcher29applicationCacheStatusUpdatedERKN3WTF6StringES4_i) +STUB("WuMO8w+KGqI", mono_btls_error_get_error) +STUB("WuMbPBKN1TU", log10) +STUB("WuPogMzMEBg", mono_aot_Sce_Vsh_RequestShareStorageWrapperunbox_trampolines) +STUB( + "WuQAWT8kYek", + _ZNK3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead17invitationIdIsSetEv) +STUB( + "WuV14FzDwFY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEC2EPS8_) STUB("Wudg3Xe3heE", sceAppInstUtilAppInstallTitleDir) +STUB("WudmiYuePRQ", _ZN3JSC19HeapSnapshotBuilder15setLabelForCellEPNS_6JSCellERKN3WTF6StringE) +STUB("Wufu-c6ksJc", mono_dl_fallback_register) STUB("WunW7G5bHYo", sceUserServiceGetPbtcMondayHoursStart) +STUB("Wut42WAe7Rw", _ZNSt10filesystem18_Xfilesystem_errorEPKcRKNS_4pathES4_St10error_code) STUB("WuuUhuKOxwQ", sceInvitationDialogGetResultA) STUB("WuwbH5nNVmA", sceVshAvcapOpenUserdata) +STUB( + "Wv+o3CNaVQI", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUser10getslotIdsEv) +STUB( + "Wv1Rz8Hw1Iw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEEptEv) +STUB( + "Wv4DNpMM1dA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEE7get_refEv) +STUB( + "Wv6JQ-QHlx0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEE5resetEPS9_) +STUB( + "WvBhg2huycc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEEaSERSA_) STUB("WvEu7yl3Ivg", sceKernelAprGetFileSize) +STUB("WvK154bGMfQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEED1Ev) +STUB("WvLsYBhq6RQ", _ZN7WebCore11iBeamCursorEv) STUB("WvM21J1SI0U", sceUserServiceGetGlsBroadcastersCommentColor) +STUB("WvMdHc2BUjc", _ZN3WTF21MemoryPressureHandler12ReliefLogger16s_loggingEnabledE) +STUB("WvNZUdSvf6E", _ZN7WebCore28InspectorFrontendClientLocal8SettingsC1Ev) +STUB("WvR75y91dkA", ShGetActiveAttrib) +STUB("WvSPUfNQ1js", fuse_fs_init) +STUB( + "WvSqbot1O0I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB("WvVGWsycG8M", mono_threads_assert_gc_safe_region) +STUB( + "WvWLtGwWe08", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("WvZ0TKnp0mI", Java_java_lang_Package_getSystemPackage0) +STUB("WvZllaEpQmU", WKPreferencesSetWebRTCLegacyAPIEnabled) +STUB("WvbSe0rJDbI", _ZN3sce2np13JsonArrayImpl5ClearEv) +STUB("WvdR33NV7tA", EC_KEY_get0_public_key) +STUB("WvfpvB7jUig", _ZN7WebCore10handCursorEv) +STUB( + "WvldZq5kMuI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEE5resetEPS9_) +STUB("Wvm90I-TGl0", vfwscanf_s) +STUB( + "Wvqi1+xYY84", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEC1EPS8_) +STUB("WvrKKVTYKUk", WKPageConfigurationGetPreferences) +STUB("WvrkJR4lSmU", + _ZNK7WebCore22EmptyFrameLoaderClient32representationExistsForURLSchemeERKN3WTF6StringE) STUB("WvuRaahcTfA", sceSlimglCompositorSetPostEventCommand) +STUB("WvuVzV2y5Ps", _ZN3JSC7Symbols16blinkPrivateNameE) +STUB("WvwzlUxb+es", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V113MmrPropertiesD2Ev) +STUB( + "WvzIMvjCp0g", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "Ww+JDt-JBn8", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearchD2Ev) +STUB( + "Ww+RDdxCaeQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEaSERKS7_) +STUB( + "Ww1ET45SBrE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE5beginEv) STUB("Ww2Gpga45Zc", sceKernelGetIoreq) +STUB( + "Ww8Bx8q2CLo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("WwCE+zCxsaA", _ZN3JSC8Bindings10RootObjectD1Ev) +STUB("WwF0GlnjRpE", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEE3getEv) +STUB( + "WwH0v4cSDPg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEED2Ev) +STUB( + "WwIceVwiS1s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEmmEv) +STUB( + "WwOyktUfsbE", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V345CommunicationRestrictionStatusResponseFactory6createEPNS1_6Common10LibContextEbPNS5_12IntrusivePtrINS3_38CommunicationRestrictionStatusResponseEEE) +STUB( + "WwRNf9TN1jU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEC1EPKS8_) STUB("WwRRAkhjARM", pthread_barrier_setname_np) +STUB("WwU55zoaAME", X509_VERIFY_PARAM_set_hostflags) +STUB( + "WwUFnozdU8w", + _ZN3sce2Np9CppWebApi14SessionManager2V130RequestPlayerSessionInvitation5setToERKNS1_6Common12IntrusivePtrINS3_2ToEEE) +STUB("WwV9Mv0aV2A", linkat) +STUB( + "WwVmSB2PBEY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEC2ERS7_) +STUB( + "WwbYqRfhE6g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEC2Ev) +STUB( + "WwfdfllsjiE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEED1Ev) +STUB("Wwg0QH+oUSs", _ZN7WebCore9JSElement15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("WwgAg+bIoUY", mono_aot_Sce_Vsh_SQLiteplt) +STUB("WwioUeN2nGM", _ZN7WebCore9HTMLNames9objectTagE) STUB("Wwj6HbB2mOo", sceHttp2SetAuthInfoCallback) +STUB("WwmQfJYWI4M", _ZNK3sce2Np9CppWebApi6Common8IteratorIfEneERKS4_) +STUB("Wwon-hr4q14", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setInteger9ERKi) STUB("WwtboQmJ37U", sceSpNetResolverStartNtoa) +STUB( + "WwujilB7umQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE5emptyEv) +STUB( + "WwvwwyUaAEE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEC2Ev) +STUB("WwwFtuQcJaE", _ZN7WebCore17FrameLoaderClientnwEm) +STUB( + "Wwy75k2NaEQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB( + "WwyTYtPw5vQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEptEv) STUB("WwzNbMVtOJA", sceSpPthreadAttrInit) +STUB("Wx-OoV3PsFY", S1lo) +STUB("Wx2+2t1mX1E", __sys_netgetsockinfo) +STUB( + "Wx28bpar4pI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEmmEi) +STUB( + "WxCtx0stz04", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEE11get_deleterEv) +STUB( + "WxE7-ODf-0Q", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEEC2Ev) +STUB("WxG8d887NM8", _ZN7WebCore18CustomHeaderFieldsC1Ev) +STUB( + "WxHQYAAF7RA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE8copyFromERKS9_) +STUB( + "WxLwWxd53kE", + _ZN7WebCore11DisplayList8RecorderC2ERNS_15GraphicsContextERNS0_11DisplayListERKNS_20GraphicsContextStateERKNS_9FloatRectERKNS_15AffineTransformEPNS1_8ObserverE) +STUB("WxQ-nbumKpM", _ZN4IPMI6Client6Config26SyncMethodInvocationConfigC2Ev) +STUB( + "WxQdWvfffuY", + _ZN9Inspector22InspectorDebuggerAgent15searchInContentERN3WTF6StringERKS2_S5_PKbS7_RNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol12GenericTypes11SearchMatchEEENS1_13DumbPtrTraitsISE_EEEE) +STUB( + "WxR6XZokf1M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "WxRVxme7cp4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEmmEv) STUB("WxRwwM9qdHo", sceNetApctlCheckCallback) +STUB("WxU7ZQWahK0", _ZN3sce7Toolkit2NP9Utilities6FutureI13SceNpOnlineIdE3getEv) +STUB("WxVd11+n+HQ", _ZN7WebCore8Settings24setTextAreasAreResizableEb) +STUB("WxXXVDHBAt4", _ZNK7WebCore24RotateTransformOperationeqERKNS_18TransformOperationE) STUB("Wxbg5x3pTXA", sceNpUniversalDataSystemEventPropertyObjectSetArray) +STUB("Wxg1CAla8sM", __asan_stack_malloc_always_4) +STUB("WxgH0vvD708", WKContextSetDomainRelaxationForbiddenForURLScheme) STUB("WxislcDAW5I", sceNetShowNetstat) STUB("WxsnAsjPF7Q", sceHmdInternalSeparateModeGetAudioStatus) +STUB("Wxxagqnh8Cg", _ZN3sce7Toolkit2NP2V212ActivityFeed4FeedD1Ev) +STUB("Wxxk5GbijWc", _ZN7WebCore8Settings24setVisualViewportEnabledEb) +STUB("Wy6h5x4u-jE", _ZN3JSC7Symbols36mapIteratorFieldMapBucketPrivateNameE) +STUB("WyBfxlL4J5E", + _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest20unsetMatchStatisticsEv) +STUB( + "WyBumX3C4BI", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyD1Ev) +STUB("WyGkGjCMbhc", _ZN3sce3Xml12MemAllocatorD1Ev) +STUB("WyM9gQyPCvk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEC2ERS7_) STUB("WyPdBHkHO7o", sceHmdGetDistortionCorrectionCommandApprox) +STUB( + "WyQ9r2r9S4w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE5beginEv) +STUB( + "WyTik9Fe8tg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEED2Ev) +STUB( + "WyUGMSJ+iaY", + _ZNK7WebCore14FrameSelection31getClippedVisibleTextRectanglesERN3WTF6VectorINS_9FloatRectELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEENS0_19TextRectangleHeightE) +STUB("WycWSIPGe0A", mono_aot_Sce_Vsh_Sl2_Sl2Deliverplt) +STUB("Wyh34qiSCN0", _ZN9Inspector24RemoteControllableTargetD1Ev) +STUB( + "WyhSghJXP-0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEE5resetEPS9_) +STUB("WyjerIFpJ6A", ucnv_swap) +STUB("WymRosuh07Y", ubrk_openBinaryRules) STUB("WypjBw-l+pE", sceMusicPlayerServiceInitialize) +STUB( + "Wypx4KnXlPc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEEC1ERSA_) +STUB("Wyq5vdibU8Q", _ZL10parse_lsdaP15_Unwind_ContextPh) +STUB( + "WywAFglkLug", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody19unsetNpServiceLabelEv) +STUB("WywlusFissg", _ZN3sce2np8NpCommIdC2ERK20SceNpCommunicationId) STUB("Wz-4JZfeO9g", sceSaveDataClearProgress) +STUB("Wz1HOtORjDs", _ZNK7WebCore12ChromeClient13underlayColorEv) +STUB("Wz2LIel-2WU", ibuf) STUB("Wz4c0yBD-tA", sceClHttpDeleteConnection) +STUB("Wz5ygglZSsc", Java_java_lang_reflect_Proxy_defineClass0) +STUB( + "Wz7FeYPE0UQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEED1Ev) +STUB("Wz8T1vbjO54", mono_btls_x509_lookup_by_fingerprint) +STUB("Wz8sl6Q2sQA", mono_aot_System_Transactionsjit_code_start) +STUB("Wz9CvcF5jn4", _Getzone) +STUB("WzB-xu4+A4c", _ZN3sce2Np9CppWebApi6Common8IteratorIfEC1EPf) +STUB( + "WzDVT8sa05Q", + _ZN3sce2Np9CppWebApi14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBody11setPlatformEPKc) +STUB( + "WzHJdgmVfi4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEC1Ev) +STUB("WzKEl0hf1yM", mono_thread_init) +STUB( + "WzM2QIMJhO8", + _ZN7WebCore19unitedBoundingBoxesERKN3WTF6VectorINS_9FloatQuadELm0ENS0_15CrashOnOverflowELm16ENS0_10FastMallocEEE) STUB("WzOBQR6MNWA", sceFacePartsResultCheck) +STUB( + "WzOu1buFlxg", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("WzYkM53NpFM", _ZN7WebCore11MemoryCache13setCapacitiesEjjj) +STUB("WzdF5qicf-Y", mono_method_header_get_locals) +STUB( + "WzfuOeS-UFs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) STUB("Wzjq+VE4JoE", sceClKernelSetEventFlag) +STUB( + "Wzp3oVo+EJA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "Wzqt1To8ZQU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEED1Ev) +STUB( + "WzsH8qAYBbI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEC1Ev) +STUB("Wztwg+APnsg", _ZN3JSC13WatchpointSetD2Ev) STUB("Wzv6dngR-DQ", sceNetDhcpStart) +STUB( + "Wzz-DG-PdAc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEaSERKS9_) +STUB( + "X+0dEC9bbrY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEC1Ev) +STUB( + "X+42FzDbwNo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE5beginEv) STUB("X+7rIfY97Ps", sceFiosOpGetError) +STUB("X+BrzKqtupE", JSValueIsNull) +STUB( + "X+D5rYHxZIU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEED1Ev) +STUB("X+GUHRxWSq4", _ZN3WTF20ParallelHelperClient6finishEv) STUB("X+IEfDyFu2Y", ScePsmMonoClassGetMethodFromName) +STUB( + "X+IUqzM7zIs", + _ZN3sce2Np9CppWebApi14SessionManager2V130ResponsePlayerSessionSpectator8fromJsonERKNS_4Json5ValueE) +STUB( + "X+KuKKzrPsQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEC2EPS8_) +STUB("X+M4zlx7qZQ", _ZN3JSC8JSObject19getEnumerableLengthEPNS_9ExecStateEPS0_) +STUB( + "X+RhHzkWfeE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEC1EPS6_PNS2_10LibContextE) +STUB("X+SW70wqg7g", + _ZNK3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponse6toJsonERNS_4Json5ValueEb) +STUB( + "X+VW5fzlaFw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEC2EPS8_) +STUB( + "X+YIUvjKUDk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEeqERKS9_) +STUB( + "X+rOIiKkyZU", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessions30unsetxPsnAcceptPlatformNamePs5Ev) +STUB("X+wFuU7z+jM", _ZN3sce2Np9CppWebApi14SessionManager2V130PostPlayerSessionsResponseBodyD1Ev) +STUB( + "X-0+-JhF+kE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEC1EPS8_) +STUB("X-2V3EejMes", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEEplEm) +STUB( + "X-34BewWRf0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("X-7JJLOUmds", mono_arch_set_nullified_class_init_trampoline) +STUB("X-8c6o3bp9c", GCC_except_table330) +STUB( + "X-8kQaMwNiI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "X-90MoIkxWY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEC1Ev) STUB("X-AQLtdxQOo", sceAudioInDeviceIdOpen) +STUB("X-FJ6SWdwv0", _ZN7WebCore8SVGNames15orientationAttrE) +STUB( + "X-MTiypCxNU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE21intrusive_ptr_sub_refEPS9_) +STUB("X-NZ7FdbOOk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEED2Ev) STUB("X-Nm5KLREeg", sceAgcDriverRegisterOwner) +STUB( + "X-P5H13p44g", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEED1Ev) +STUB("X-PsPrn-cCM", mono_aot_Sce_Vsh_VideoPlayerunbox_trampolines_end) STUB("X-WHexCbxcI", sceNpManagerIntLoginSetSsoToken) +STUB("X-e+klYtSvs", WKBundleFrameEnableThrottlingByTileCount) +STUB("X-htNRhXKIo", _ZN7WebCore24CoordinatedGraphicsLayer14syncAnimationsEv) +STUB("X-ncAvI14sg", RSA_public_decrypt) +STUB( + "X-ntg2WOYHE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "X-q0fwqBGjc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEixEm) +STUB( + "X-q19KfqaBs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEptEv) +STUB("X-rqVhPnKJI", CERT_getCertificateSubject2) +STUB( + "X-s53lS1dhA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "X-t4ju5-qFI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEC1Ev) +STUB("X-ug74xN4-g", mono_aot_platformplt_end) +STUB( + "X-wMVYlgGdg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE6resizeEj) +STUB("X-zcz5I02rs", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13SessionMemberEEC2ERKS4_) +STUB( + "X011FLAcsPM", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V112ErrorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5ErrorEEE) +STUB("X01Lt6CUddw", _ZN15AbstractStorage15FacebookContentD1Ev) +STUB("X04i3BhDv0I", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getBoolean8Ev) +STUB("X07iZGiYyuI", _ZN3sce7Toolkit2NP2V24Core7Request16TerminateServiceC2Ev) +STUB("X0GioSb2T2c", + _ZN7WebCore37BasicComponentTransferFilterOperationC1EdNS_15FilterOperation13OperationTypeE) STUB("X0HZNbSiqyg", sceTextToSpeech2Open) +STUB( + "X0Kte3FXLlE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEC2EPNS2_10LibContextE) +STUB("X0LA0nb5WIc", uloc_getLanguage_67) +STUB("X0MVSZ4VM2Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEdeEv) STUB("X0R99DXhScw", sceShareFactoryUtilInitialize) +STUB( + "X0TFVdDd0PQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEixEm) +STUB( + "X0ZoFmgVr44", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEEaSERSA_) +STUB( + "X0bIesECj5A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEEdeEv) +STUB( + "X0crI6LKpcs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEED2Ev) +STUB( + "X0fcDNllzJQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEEC1Ev) +STUB("X0k5NNO6f-g", _ZN7WebCore11DisplayList8ClipPathC1ERKNS_4PathENS_8WindRuleE) +STUB("X0nkrNWnqmk", rgctx_fetch_trampoline_mrgctx_112) +STUB( + "X0o1emCA-P8", + _ZN3sce2Np9CppWebApi14SessionManager2V160PatchGameSessionsSessionIdMembersAccountIdRequestBodyFactory7destroyEPNS3_53PatchGameSessionsSessionIdMembersAccountIdRequestBodyE) +STUB("X0qihLAlOBs", _ZTVN12video_parser17cVideoOperatorMnvE) +STUB("X0qq2MNZiVk", _ZNK3sce2Np9CppWebApi14SessionManager2V112NonPsnLeader11getPlayerIdEv) +STUB( + "X0r2hrj9Zq8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEC2ERS7_) +STUB("X0vEo7cZamA", _ZN3sce2np13NpTitleSecret5ClearEv) +STUB( + "X0y7x0Zosso", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEdeEv) +STUB( + "X13gIVTTXFM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEED1Ev) +STUB("X152zTK+hgM", _ZN7WebCore12GCController18garbageCollectSoonEv) +STUB("X15BbHVE+80", _ZN7WebCore16HTMLTableElement9insertRowEi) STUB("X169CE6G3Y4", sceAmprAprCommandBufferMapEnd) +STUB( + "X16F2WQkIEI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEE6assignEPS5_PFvS7_EPNS2_10LibContextE) STUB("X16Vec2WnqI", sceSlimglClientPulse) +STUB("X17DF4uF7Co", _ZN3sce7Toolkit2NP2V27Session7Request6CreateC1Ev) +STUB( + "X18C9TW2fic", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE21intrusive_ptr_sub_refEPS9_) +STUB("X1C-YhubpGY", _ZNSt12placeholders2_3E) +STUB("X1DNtCe22Ks", _ZSt9_LStrcollIcEiPKT_S2_S2_S2_PKSt8_Collvec) +STUB( + "X1DWFsIOSak", + _ZN7WebCore16BlobRegistryImpl26writeBlobsToTemporaryFilesERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16EEEONS1_8FunctionIFvS7_EEE) STUB("X1G4kkN2R-8", sceNpSignalingCancelPeerNetInfo) +STUB( + "X1JE3HkJST8", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi17getPublicProfilesEiRKNS4_28ParameterToGetPublicProfilesERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_25GetPublicProfilesResponseEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("X1NXjHDq918", _ZN7WebCore12NamedNodeMap5derefEv) +STUB("X1OqjWAM7NM", _ZN7WebCore15DatabaseTracker29deleteAllDatabasesImmediatelyEv) +STUB("X1Pb5mr7kgk", AnnotateRWLockReleased) STUB("X1PsAOE5YU8", sceCesUtf16leToBig5) +STUB("X1QtBligH2Y", _ZN3JSC12JSLockHolderC1EPNS_14JSGlobalObjectE) +STUB("X1SYe8TIGOc", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry11getObjectIdEv) +STUB( + "X1XWeoH5190", + _ZN3sce7Toolkit2NP2V29Challenge16getChallengeDataERKNS3_7Request16GetChallengeDataEPNS2_4Core8ResponseINS3_13ChallengeDataEEE) +STUB("X1bFhjwBxXU", _ZNK7WebCore22EmptyFrameLoaderClient12blockedErrorERKNS_15ResourceRequestE) +STUB( + "X1c350l8Jao", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEC1EPKS8_) +STUB( + "X1i+h1jZxBE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEC2EPKS8_) +STUB( + "X1k2NvkAMGc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEC1EPS8_) +STUB( + "X1kzrBxekD0", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "X1l6OBe7+qE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEixEm) +STUB( + "X1pRJOIKshw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEaSERKS7_) +STUB("X1q9jPv+MMM", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18SessionInformationEE7addressERKS3_) +STUB("X1vBIfxrUjs", _ZN7WebCore25JSDeprecatedCSSOMRGBColor9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB( + "X2-PcwW-fLs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEEaSERKSA_) +STUB( + "X200i7q7bms", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEED2Ev) +STUB("X20cr8FFQkI", WKPageGetAllowsRemoteInspection) +STUB("X23-bMY6HME", _ZN7WebCore21BackForwardController11currentItemEv) +STUB("X26HnO3yPb8", _ZN9Inspector28InspectorScriptProfilerAgentnwEm10NotNullTagPv) +STUB( + "X26ZFxDMwz4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEC1Ev) +STUB("X27Xi-oUxkQ", mono_metadata_token_from_dor) +STUB( + "X28FxhZbl3E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "X2CqtBFnW98", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEE11get_deleterEv) +STUB( + "X2FR7e8Pv4A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEEC1Ev) +STUB("X2K34ExGOBY", _ZN7WebCore8Document19updateStyleIfNeededEv) +STUB( + "X2KF1CXThp8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEC2Ev) +STUB("X2LhSaEfd-U", jpeg_natural_order3) +STUB("X2UKYjIeWY8", ucase_isCaseSensitive) STUB("X2Vl3yU19Zw", sceFontGraphicsDrawingFinish) +STUB("X2YwmzkrrcQ", _ZN7WebCore15JSFetchResponseC2ERKS0_) +STUB("X2aGBDIpZDE", _ZNK7WebCore20DeprecatedCSSOMValue7cssTextEv) +STUB( + "X2avi-WGNVY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEC1EPS6_PNS2_10LibContextE) +STUB("X2gTVDity6o", mono_aot_Sce_Vsh_JsExtensionmethod_addresses) +STUB("X2kEvJBix2Q", unorm2_isInert) +STUB( + "X2lVKLlddME", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEEdeEv) +STUB("X2rlBpsGwf8", + _ZN3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap11setOnlineIdERK13SceNpOnlineId) +STUB( + "X2vnepwubjo", + _ZN7WebCore15ContextMenuItemC1ENS_19ContextMenuItemTypeENS_17ContextMenuActionERKN3WTF6StringEPNS_11ContextMenuE) +STUB("X2wfcFYusTk", _ZNSt11regex_errorD2Ev) +STUB("X2xRfr1XBMY", _ZN3sce7Toolkit2NP2V210Tournament7Request10TeamFilterC1Ev) +STUB("X3-FoxLd4a8", __sync_fetch_and_xor_16_internal) +STUB("X33tJyO5k+E", _ZN9Inspector27CSSBackendDispatcherHandlerD2Ev) +STUB( + "X368bBrCPpk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEmmEi) STUB("X37PZSA8a34", sceCesUhcToUtf32) +STUB("X38zwtm0yzw", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead24disableSystemUiMenuIsSetEv) +STUB( + "X3AzeTy2Z8E", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEptEv) STUB("X3BWlTuErbk", sceVoiceChatRequestJoinPlayerSessionVoiceChatChannel) +STUB("X3DrtC2AZCI", _ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1Em) +STUB("X3L4jbWOtkc", JSStringRetain) +STUB( + "X3N28iSmuAg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEppEi) +STUB( + "X3UeHS0PaTA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEED2Ev) +STUB( + "X3bUoME-FlM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEEC1Ev) +STUB("X3fVqGRmaSk", + _ZNK3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer12getAccountIdEv) +STUB( + "X3fntOdeSuo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("X3gCQDtFUGo", _ZTVN7WebCore20ResourceHandleClientE) +STUB("X3glbGOmnRI", _ZN3sce7Toolkit2NP23ChallengeGetItemRequestC2Ev) +STUB("X3ir9Mseh44", _ZThn136_N7WebCore16HTMLMediaElement12endScrubbingEv) +STUB( + "X3j5t81k17Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEC1ERKS8_) +STUB("X3jpcPC7V48", _ZN15AbstractStorage15FacebookContent4OpenEit) +STUB("X3xFNY5k+MQ", _ZN9Inspector24WorkerFrontendDispatchernwEmPv) +STUB( + "X3y-e5wSBms", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEEC1ERKSA_) +STUB( + "X3yY-V3KVs4", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayer30unsetxPsnAcceptPlatformNamePs5Ev) +STUB("X4-OCWkADJg", i2t_ASN1_OBJECT) +STUB("X409nw2B+A0", _ZNK3sce7Toolkit2NP2V24Core12ResponseData14getInitializedEv) STUB("X41cYKFlQv8", sceAppInstUtilAppGetSize) STUB("X47s4AamPGg", sceNpTrophySystemGetTitleFileStatus) STUB("X4MYzukPc3g", sceSaveDataDirNameSearchPs4) +STUB( + "X4Ner4pHzig", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE3endEv) +STUB("X4NiektK72E", _ZN3sce3Xml13AttributeListD1Ev) +STUB( + "X4RQPc2tnJ0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "X4YEoz22XJI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEmmEi) STUB("X4elOoiAtB4", sceNpAppLaunchLinkIntGetCompatibleTitleIdNum) +STUB("X4gWWP1iYGc", mono_aot_Sce_Vsh_Orbis_BgftAccessormethod_addresses) +STUB("X4iLAV+x2NE", _ZN3JSC2VM33templateObjectDescriptorSpaceSlowEv) +STUB("X4oTxmv5Zxo", Java_com_sony_bdjstack_org_bluray_vfs_VFSManagerImpl_proxyDisableClip) +STUB("X4pGci2dAvc", _ZNK3JSC14CellAttributes4dumpERN3WTF11PrintStreamE) +STUB( + "X4y+CsWPeoE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEEC1ERSA_) +STUB("X5-JFMmDOKQ", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_11CountryInfoEEC2Ev) +STUB( + "X510jAtyfhk", + _ZN7WebCore34forwardAttributeGetterToBackingMapERN3JSC14JSGlobalObjectERNS0_8JSObjectERKNS0_10IdentifierE) +STUB( + "X519EQ-lb14", + _ZN3sce2Np9CppWebApi7Matches2V132ResponseCompetitiveResultFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_25ResponseCompetitiveResultEEE) STUB("X52vXnVvtpE", sceNpManagerIntGetParentalControlInfoNB) +STUB( + "X53JMUphRow", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEEC2Ev) +STUB("X53w3lTzX-w", _ZN7WebCore4Page27applicationWillResignActiveEv) +STUB( + "X56YA96T+ok", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("X5ABBrXF9UI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEED2Ev) STUB("X5F-dSXoUUw", _sceDepthSetHeteroMode) STUB("X5FCp6scKms", sceMusicCoreServerInitialize) STUB("X5On-7hVCs0", sceUserServiceGetGlsLiveQuality3) +STUB( + "X5PU1q+-dB4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEppEi) +STUB("X5QdYSDZjik", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11EntitlementEE7destroyEPS3_) +STUB("X5S-iJhhOBg", _ZN3sce7Toolkit2NP2V24Core7Request16ThreadProperties15PRIORITY_LOWESTE) +STUB( + "X5UziZEssdE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "X5VxIeToqwU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE4sizeEv) +STUB("X5aORxorEl8", mono_counter_get_variance) +STUB( + "X5cW0ovz3qg", + _ZN9Inspector24ConsoleBackendDispatcher18getLoggingChannelsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "X5e9GK4yISU", + _ZN3sce2Np9CppWebApi14SessionManager2V135PostGameSessionsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_28PostGameSessionsResponseBodyEEE) +STUB( + "X5eFDUWCVS4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEC2EPS6_PNS2_10LibContextE) +STUB("X5klQOiJmiA", mono_aot_Sce_Vsh_SQLiteAuxunwind_info) +STUB("X5krCatftqo", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110ResultTypeEEaSERKS7_) +STUB( + "X5n7HJbdzRg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEC2EPKS8_) STUB("X5rJZNDZ2Ss", sceUserServiceGetPasscode) +STUB( + "X6-6lTICZOQ", + _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product8setMediaERKNS1_6Common12IntrusivePtrINS3_14ContainerMediaEEE) +STUB("X60kEhH2czY", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session12Notification18InvitationReceivedEEC2Ev) +STUB("X62s7-3mQYs", _ZN7WebCore16UserGestureTokenD1Ev) +STUB( + "X639EzdoLmk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "X64NXXnmFJY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEC2ERS7_) +STUB("X64Wjxgh1L4", cairo_surface_mark_dirty_rectangle) +STUB("X65a9+MTd9U", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container10mediaIsSetEv) +STUB("X67RLMWgJC0", + _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequestC2EPNS1_6Common10LibContextE) +STUB("X69UlAXF-Oc", _ZNSt10moneypunctIwLb1EEC1Em) +STUB("X6AKrGoJOU0", _ZN3sce3pss4core14IntHandleTable5mutexE) +STUB( + "X6LX5Y64yRQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEE5resetEPS6_) +STUB("X6NVkdpRnog", _ZN3sce2np9WorkQueueC1Ev) +STUB( + "X6U1h1tC+1k", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("X6UDGvey0sQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEEneERKS7_) +STUB( + "X6UvwRxTuII", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEC1Ev) +STUB("X6VaElvCf3E", _ZNK7WebCore3URL11hostAndPortEv) +STUB( + "X6aGcPw0m3M", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("X6bNI-ZFA9A", _ZN8meta_gen13JpegRetriever18apexValue2apertureEd) +STUB( + "X6dbLi3y+jQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEptEv) +STUB( + "X6eGDHQuHNQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE21intrusive_ptr_add_refEPS9_) STUB("X6emt+LbSEI", sceNpIntSetPlatformType) +STUB("X6rA6rHVjTU", SSL_CTX_clear_chain_certs) +STUB( + "X6tnt8BaI70", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEmmEv) +STUB( + "X6y9uriwu+s", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEdeEv) STUB("X6yCBYPP7HA", sceGnmSqttInit) +STUB( + "X7294x828J0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEED2Ev) +STUB("X74NRPVnffM", SetCurrentSrcId) +STUB( + "X75yNJpVbQE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEC2EPS6_PNS2_10LibContextE) +STUB("X76Nuvruiqk", uloc_forLanguageTag_67) STUB("X79uU+sZkdQ", sceKernelSflashSetWritePrio) +STUB("X7A21ChFXPQ", __floatsidf) STUB("X7Cfsiujm8Y", sceAudioOutSetUsbVolume) +STUB("X7CjrEGDW6U", _ZN7WebCore17LibWebRTCProvider19unregisterMDNSNamesEm) STUB("X7DvbKq4Mds", sceBgftServiceIntPlayGoIsPaused) +STUB("X7Jm8TyDTXk", + _ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer12setAccountIdEPKc) +STUB("X7KiyNvneoQ", _ZN3JSC7Symbols24setBucketNextPrivateNameE) +STUB("X7OfX+xKjbQ", + _ZN3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBodyC1EPNS1_6Common10LibContextE) +STUB( + "X7TTlhEry-I", + _ZN7WebCore19JSHTMLSelectElement3putEPN3JSC6JSCellEPNS1_14JSGlobalObjectENS1_12PropertyNameENS1_7JSValueERNS1_15PutPropertySlotE) +STUB("X7VrykTwwkw", _ZN3sce2Np9CppWebApi6Common6VectorIlE21intrusive_ptr_add_refEPS4_) +STUB("X7X+SbzvN3U", _ZN3sce2Np9CppWebApi6Common6VectorIjE10setContextEPNS2_10LibContextE) +STUB("X7ZMMq6Amf0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEcvbEv) +STUB("X7drz43PfRM", mono_print_method_from_ip) +STUB( + "X7ej99-J2p0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEED1Ev) +STUB("X7gTF-zHNOI", _ZN9Inspector25DatabaseBackendDispatcherD2Ev) +STUB("X7gbPHVoNEw", u_strToUTF32WithSub) +STUB( + "X7ioNtnvkS4", + _ZN3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform8fromJsonERKNS_4Json5ValueE) +STUB( + "X7iwxOfrb28", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE18getResponseHeadersERSB_) +STUB("X7iya0Mw+To", _ZN4IPMI4impl11SessionImplD2Ev) +STUB( + "X7niXMpXE2I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("X7pDV+6BR6Y", _ZN3JSC6JSLock12DropAllLocksD2Ev) STUB("X7tWmHNtoKg", sceVideoOutSysSetDimmer2) +STUB( + "X7zCAF1yREE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEmmEi) +STUB( + "X8+zkVtT8fI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE8pushBackERKS8_) +STUB("X80KSZQwiMk", delegate_virtual_invoke_28_p) +STUB("X81IlwML0HU", uset_removeAllStrings_67) +STUB("X82UupFuwYw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEEC1ERS7_) +STUB("X82kR0K5yI0", _ZNK3sce2Np9CppWebApi7Matches2V116RequestMatchTeam13teamNameIsSetEv) +STUB("X86Q0qQJ1m0", __sys_netgetiflist) +STUB("X89dXBu6bfY", uprv_add32_overflow_67) STUB("X8FN-5Nk-yE", sceVideoOutSysAddSetModeEvent) +STUB( + "X8FTlX35kgw", + _ZN3sce2Np9CppWebApi14SessionManager2V131PlayerSessionPushContextFactory7destroyEPNS3_24PlayerSessionPushContextE) +STUB("X8HJTL5AfLU", uprv_strdup_67) +STUB( + "X8K+c22k7Is", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "X8MCQUvweDs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEaSERS7_) +STUB("X8OUaccS0g8", _ZN7WebCore8SVGNames20patternTransformAttrE) +STUB("X8P98KCZr+Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEEC2EPS6_) STUB("X8PFsyb2UTk", sceVoiceChatUnregisterMicEventHandler) +STUB("X8TDSJIPZUA", _ZNK3WTF3URL12isolatedCopyEv) +STUB("X8WERsB8c6o", _ZNK3sce2Np9CppWebApi15ProfanityFilter2V223FilterProfanityResponse9getStatusEv) +STUB( + "X8Y2V9waHrk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEdeEv) +STUB("X8YZWdgpCTs", _ZN7WebCore4Node10renderRectEPb) +STUB("X8bM2L-G59E", _ZN4IPMI4impl10ClientImpl11getUserDataEv) +STUB("X8cyHuqlfSI", searchCommInfoListById) +STUB( + "X8ffU+nSVVo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEeqERKS9_) STUB("X8gYbyLG1wk", sceLncUtilSetControllerFocus) +STUB( + "X8glqa-XRGI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE10setContextEPNS2_10LibContextE) +STUB( + "X8rPkxLXS6M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEE7get_refEv) +STUB("X8swyKBlbVk", _ZN7WebCore9PageCache10setMaxSizeEj) +STUB( + "X8uNKyVpR1I", + _ZN3sce7Toolkit2NP2V27Session7getDataERKNS3_7Request7GetDataEPNS2_4Core8ResponseINS3_11SessionDataEEE) +STUB("X8vDO398aQY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend16FriendsOfFriendsEE5resetEv) STUB("X9+pzrGtBus", sceFontFtSupportType42) +STUB("X96HSaEKPYI", _ZN4Manx8X509cinf7subjectEv) +STUB( + "X97F1bSQGRo", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V136ConnectionQualityWiredMetricsFactory6createEPNS1_6Common10LibContextEidiPNS5_12IntrusivePtrINS3_29ConnectionQualityWiredMetricsEEE) STUB("X9CqyP164Hc", sceNpUtilGetNpLanguageCode2) +STUB("X9D8WWSG3As", _ZNSt8ios_baseD1Ev) +STUB( + "X9Ftp0u4TTc", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetBoolean1Ev) +STUB("X9GXg6Y4eFU", JSObjectGetTypedArrayByteOffset) STUB("X9Jgur0QtLE", sceUserServiceSetNotificationSettings) +STUB( + "X9K0T1eBP3A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEixEm) +STUB("X9LFUjOdf+8", + _ZN7WebCore22EmptyFrameLoaderClient30dispatchDidFailProvisionalLoadERKNS_13ResourceErrorE) STUB("X9Omw9dwv5M", sceGnmSetEmbeddedPsShader) +STUB("X9OuYB-jm2A", _ZN9Inspector25NetworkFrontendDispatcher16webSocketCreatedERKN3WTF6StringES4_) STUB("X9W9plO1GdQ", sceAvControlIsSuspendedProcessOutputModeAvailable) +STUB( + "X9WJgHHeGzM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE21intrusive_ptr_add_refEPS9_) +STUB("X9Zxl4QVLqM", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13FriendsOfUserEE10deallocateEPS3_m) +STUB("X9elh51SOlo", + _ZN7WebCore31BasicColorMatrixFilterOperationC2EdNS_15FilterOperation13OperationTypeE) +STUB("X9fJ5v+b+p0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredTeamsEED1Ev) +STUB("X9g+mUuwvu4", mono_field_from_token) +STUB( + "X9hfd0RTsfc", + _ZN7WebCore12JSTimeRangesC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_10TimeRangesENS6_13DumbPtrTraitsIS8_EEEE) STUB("X9k7yrb3l1A", sceFontGraphicsDrawupFillRadialGradient) +STUB( + "X9p5+08scgY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEC2EPNS2_10LibContextE) +STUB("X9pIz-invoc", mono_aot_Sce_Vsh_Np_Commonjit_got) +STUB("X9sELSrqkw8", mono_aot_ReactNative_Debug_DevSupportjit_code_end) +STUB("X9tXcvo8Mnw", WKViewSetFocused) +STUB( + "X9upOsYZ6ds", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEC1ERKS7_) +STUB("X9wbEGzDPr8", _ZN3JSC8JSBigInt16createWithLengthEPNS_14JSGlobalObjectEj) +STUB("X9xDL5vo1Ng", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEE5resetEPS6_) +STUB( + "X9xmX6UCHnM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEeqERKS9_) +STUB("XA+MKRXav1U", _ZN3JSC16InternalFunctionC2ERNS_2VMEPNS_9StructureENS_14NativeFunctionES5_) +STUB("XA+llCabg8g", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_33ActivityFeedSharedScreenshotStoryEEC1Ev) +STUB("XA09tbCsAyk", fuse_chan_fd) +STUB("XA8u58D+lbk", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product16unsetReleaseDateEv) +STUB("XABg0vypnik", _ZN3JSC6JSLockD2Ev) +STUB("XAF7SiZDFto", _ZN7WebCore18JSHTMLVideoElementC1ERKS0_) +STUB("XAJVvSm-llo", WKPreferencesGetDialogElementEnabled) +STUB("XAKDgxcra6k", arch_init_gc) +STUB("XAXEc1-6iHk", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V16Rating8fromJsonERKNS_4Json5ValueE) +STUB("XAchpNCJkCQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEaSERS7_) +STUB("XAgzGK6X68A", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_7TssDataEE17getAdditionalInfoEv) +STUB("XAk7W3NcpTY", _ZN10__cxxabiv117__class_type_infoD0Ev) STUB("XAmDowAQhFs", sceNpAppInfoIntCheckServiceAvailabilityA) +STUB("XAnWljFnlRo", mono_counter_get_unit) +STUB("XAqAE803zMg", _Atomic_load_1) +STUB("XAqBKPLfJnQ", _ZN9Inspector28InspectorScriptProfilerAgentD1Ev) +STUB("XAr8Ye8x-5k", + _ZN3WTF20ParallelHelperClientC2EONS_6RefPtrINS_18ParallelHelperPoolENS_13DumbPtrTraitsIS2_EEEE) +STUB("XArRxgQY+cg", + _ZN15AbstractStorage12LocalContent13ParseMetadataEPN23sceMetadataReaderWriter8MetadataES3_) +STUB("XAsktbrwtRY", _ZSt9use_facetISt8numpunctIwEERKT_RKSt6locale) +STUB( + "XAvYbSBn06Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEmmEi) STUB("XAzZo12sbN8", scePthreadMutexSetprioceiling) +STUB( + "XB-5OVDwh6Y", + _ZN7WebCore16BlobRegistryImpl19writeBlobToFilePathERKNS_3URLERKN3WTF6StringEONS4_8FunctionIFvbEEE) +STUB("XB-EN3hFrS4", _ZN15AbstractStorage10YoutubeAPI8initHttpEv) +STUB("XB4m+USaFdg", ucnv_resetFromUnicode) +STUB( + "XB96-o9ohxA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEE11get_deleterEv) +STUB("XBBAzFHUxSk", _rand) +STUB("XBFr1zrK8W0", _ZN7WebCore11DisplayList17FillRectWithColorC2ERKNS_9FloatRectERKNS_5ColorE) +STUB("XBGBrCF5WWU", mono_object_describe) +STUB("XBGl9HsG7rs", _ZN3JSC17DebuggerCallFrame20sourceIDForCallFrameEPNS_9CallFrameE) +STUB( + "XBH7I63Ckgw", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10setString5EPKc) +STUB("XBOleUDAjgQ", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIjEmmEi) +STUB("XBPTNNG3M6o", _ZN12video_parser17cVideoProfilerMp419_releaseMediaCommonEPNS_13VpMediaInfo_tE) +STUB( + "XBPVyA0odOI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEED2Ev) +STUB("XBSnYcicz0w", GCC_except_table402) +STUB( + "XBTbWCMVcCY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE7releaseEv) +STUB("XBUZwzWAHa4", _ZN3sce7Toolkit2NP2V23TUS7Request18GetFriendsVariableC1Ev) +STUB("XBUjLdh8acQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEE7get_refEv) +STUB( + "XBbcS3dfNUI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEE3getEv) +STUB("XBeeGMsUfMY", _ZN3JSC4Yarr17RegularExpressiondlEPv) +STUB("XBlKK5ijWI8", _ZNK15AbstractStorage14MemfileContent10GetServiceEv) +STUB( + "XBm7Zff7toY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEED1Ev) +STUB("XBmd6G-HoYI", _ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2EPKcm) +STUB( + "XBpkbesjGAU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE21intrusive_ptr_add_refEPS9_) STUB("XBppavaJGS0", sceFsNsfsMountWithFlags) +STUB("XBtM8+wHGFg", _ZN3NTF5Cache16DiskCacheManagerC2Ev) +STUB("XBttJJYTgJg", _ZN3sce7Toolkit2NP2V28Commerce9ContainerD1Ev) +STUB("XBzzdzT3qyg", _ZN3sce2np13NpTitleSecretD1Ev) +STUB("XC1yQikEvCg", _ZN3sce7Toolkit2NP2V27Ranking7Request11GetGameData8MAX_PCIDE) STUB("XC2CuQMB9js", sceMatReallocEnd) +STUB("XC8AObh99VY", u_charMirror_67) STUB("XC9wM+xULz8", sceAvPlayerJumpToTime) STUB("XCD6zBOkiIM", sceVnaInitialize) +STUB("XCPofynD064", _ZN3sce7Toolkit2NP2V212EventsClient6EventsD2Ev) +STUB( + "XCRhaQXlVnA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE7popBackEv) +STUB( + "XCTFthigrUg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "XCVIIKoUvBs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEED1Ev) +STUB("XCaHXZDgzVk", _ZN3PAL12CryptoDigest11computeHashEv) +STUB("XCae-VCLyPs", _ZN3WTF14FileSystemImpl23getFileModificationTimeERKNS_6StringE) +STUB("XCevsdlvMmE", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend7FriendsEEC2Ev) +STUB("XCfx5iUbPN0", mono_btls_x509_store_from_ctx) +STUB( + "XCgALtRtzLs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("XCtZ7a2WqSc", _ZN3NTF15DNSPrefetchImplD0Ev) +STUB("XCtf+23QT0k", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus9getSlotIdEv) +STUB("XCuA-GqjA-k", in6addr_loopback) STUB("XCuZoBSVFG8", sceRazorCpuNamedSync) +STUB( + "XCuqn4H45pg", + _ZN3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsSearchRequestBody13setConditionsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_15SearchConditionEEEEE) +STUB("XCv0qOUtAu8", sk_pop) +STUB( + "XD+Ti8mup58", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEC2Ev) +STUB("XD+gBXTYnbI", ufmt_getDate_67) +STUB("XD0q0X8rQ20", mono_btls_x509_store_from_ssl_ctx) STUB("XD3mDeybCnk", scePthreadRwlockTryrdlock) +STUB( + "XD6e9lI0okE", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V115VariableFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_8VariableEEE) +STUB("XD9FmX1mavU", _ZNSt10filesystem11_EquivalentEPKcS1_) +STUB( + "XDCDAVLw-no", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEeqERKS9_) +STUB( + "XDCWVd5XBh4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEmmEi) +STUB("XDGOJE-m834", WKBundleFrameSuspendAnimations) +STUB( + "XDHuuECqGg8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEmmEi) STUB("XDLVe8Wq47E", sceCloudClientSetAuthCodes) +STUB("XDO3Vper8w8", + _ZN9Inspector24CanvasFrontendDispatcher27cssCanvasClientNodesChangedERKN3WTF6StringE) +STUB( + "XDPPumKA+g4", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "XDSBXKyp4GM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEC2EPS6_PNS2_10LibContextE) +STUB("XDV0Tog0T84", _ZN3JSC20MarkedArgumentBuffer10slowAppendENS_7JSValueE) +STUB("XDWGYMk3eYY", mono_aot_Sce_Vsh_MorpheusUpdWrappermethod_addresses) +STUB( + "XDZ2G8gtxnE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEmmEi) +STUB("XDai-Nru7f8", uprv_ceil) +STUB("XDdMkcoXOGE", _ZN7WebCore37WidgetHierarchyUpdatesSuspensionScope11moveWidgetsEv) +STUB( + "XDdeeZ4-IzE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEixEm) +STUB( + "XDimBw0+yLc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEaSERS8_) +STUB("XDm4jTtoEbo", _ZNSt8numpunctIwED2Ev) STUB("XDncXQIJUSk", sceNpGetOnlineId) +STUB("XDokHc-av+U", _ZN15AbstractStorage15FacebookContent5CloseEv) +STUB( + "XDvS4kDZW-c", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB("XE0pNXwREeY", WKPreferencesGetWebSQLDisabled) +STUB("XE18t1sfj-s", _ZNK7WebCore17HTMLSelectElement6lengthEv) +STUB("XE2bw4kaIi8", _ZN7WebCore7JSRange6s_infoE) +STUB( + "XE9AoGsKLU8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEEC1ERKSA_) +STUB("XEAXELFbtK8", _ZN3sce7Toolkit2NP2V212NetworkUtils13NetStateBasicaSERKS4_) STUB("XECwgo2nbek", sceKernelDebugGetAppStatus) STUB("XEGAcOsiVfQ", sceAvSettingDriverUpdateStatus) +STUB("XELByF7MVUg", _ZN12video_parser5vpcom3rtc22FormatRFC3339LocalTimeEPcPKm) +STUB( + "XELFeJUaitM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEC2Ev) +STUB("XEM1xOAHA3k", _ZTVN9Inspector33InspectorBackendDispatcherHandlerE) +STUB("XEP8UAJb604", _ZN3sce7Toolkit2NP2V27Session7Request6Create15LOWEST_PRIORITYE) STUB("XEPf4yyKUyk", sceNpManagerIntOnlineId2NpId) STUB("XEQnUXQ6MOw", sceNpIpcIsInit) +STUB( + "XESg4FIGqTY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE3endEv) STUB("XEUrIeCJiVs", sceVideoDecoderArbitrationAcceptEvent) +STUB("XEXFdmQj5oI", _ZN3sce2np7CalloutC1EPNS0_14CalloutContextE) +STUB( + "XEXyBagBEO4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEE11get_deleterEv) +STUB("XEZfusUy83U", _ZN3sce7Toolkit2NP24CheckAvailabilityRequestC1Ev) +STUB( + "XEc+e2vA9FY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE10setContextEPNS2_10LibContextE) +STUB("XEcXPJP9+70", _ZN3sce2np10Cancelable18SetCancelErrorCodeEi) +STUB("XEd85nz+-5g", uhash_compareCaselessUnicodeString) +STUB("XEfIP+rRCsM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEE7add_refEv) STUB("XEgdhGfqRpI", sceUserServiceSetEventSortTitle) +STUB("XEhe6ysUIws", UDatamemory_assign_67) +STUB( + "XEia7eEBnbU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEE11release_refEv) +STUB( + "XEkzKOWJW4g", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V135AddAndGetVariableRequestBodyFactory7destroyEPNS3_28AddAndGetVariableRequestBodyE) +STUB("XEncuQcKGeQ", WKAXObjectCopyHelpText) +STUB("XEzAnNpXVaw", _ZN9Inspector14InspectorAgentD0Ev) +STUB( + "XEzRfZdYBjQ", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions11unsetfieldsEv) +STUB("XFGcl9DVEH4", rgctx_fetch_trampoline_rgctx_34) +STUB("XFKztg2ppsE", _ZN7WebCore22TextureMapperAnimationC1ERKS0_) +STUB( + "XFMxCYLAQI0", + _ZN7WebCore14DocumentLoader17addConsoleMessageEN3JSC13MessageSourceENS1_12MessageLevelERKN3WTF6StringEm) +STUB( + "XFOITbbxiP8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE3endEv) +STUB( + "XFQNeE+EwJU", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V226WebApiFilterRequestFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_19WebApiFilterRequestEEE) +STUB( + "XFSXQUpWNZk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "XFX81Dwc4Ks", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEE5resetEPS9_) STUB("XFYItOxS6r0", sceApplicationInitialize) +STUB("XFcKXHzbOGw", delegate_virtual_invoke_imt_6) +STUB( + "XFdPk9JCWkc", + _ZN9Inspector21InspectorRuntimeAgent12awaitPromiseERKN3WTF6StringEPKbS6_S6_ONS1_3RefINS_31RuntimeBackendDispatcherHandler20AwaitPromiseCallbackENS1_13DumbPtrTraitsIS9_EEEE) +STUB("XFh0C66aEms", _ZNSt12future_errorD2Ev) +STUB("XFhz65JSkXw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEEeqERKS7_) +STUB("XFkeGc4PmZo", + _ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBodyC1EPNS1_6Common10LibContextE) +STUB("XFo3ZOD4wKo", _ZN9Inspector25NetworkFrontendDispatcherC2ERNS_14FrontendRouterE) +STUB( + "XFtb1SiTE6M", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB( + "XFvgdMzzhZM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEC1EPS6_PNS2_10LibContextE) +STUB( + "XFvukJ8BG8o", + _ZN9Inspector18InspectorHeapAgent10getPreviewERN3WTF6StringEiRNS1_8OptionalIS2_EERNS1_6RefPtrINS_8Protocol8Debugger15FunctionDetailsENS1_13DumbPtrTraitsISA_EEEERNS7_INS8_7Runtime13ObjectPreviewENSB_ISG_EEEE) +STUB("XFzE+ADPW-8", __strtodg) +STUB("XFzOqbUuFRs", mono_aot_Sce_Vsh_Np_Trophyplt_end) +STUB( + "XFzf4GhJqa0", + _ZN9Inspector24ConsoleBackendDispatcherC1ERNS_17BackendDispatcherEPNS_31ConsoleBackendDispatcherHandlerE) +STUB( + "XG4YFRN8H0o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE10setContextEPNS2_10LibContextE) +STUB("XGAUPqQqbK8", _ZTSPKDh) +STUB("XGEHHETh5UE", mono_aot_Sce_Vsh_Messagesplt) +STUB( + "XGFCZ8cHQ-g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEED2Ev) +STUB("XGFUYNNqFOQ", __fini_array_end) +STUB("XGKzkI4ljaI", _ZN3sce7Toolkit2NP2V211SharedMedia10ScreenshotC2Ev) +STUB("XGNIEdRyYPo", __cleanup) +STUB("XGOSij8+p18", _ZN18MmsFileUpdaterBase18RegenerateMetadataEP4xMMSPKc) +STUB("XGP2MNQH0o8", _ZN7WebCore21BlobDataFileReferenceD0Ev) +STUB("XGQXIktEVGU", udat_toCalendarDateField_67) +STUB("XGUaUPjBukI", Java_java_awt_GnmFontMetrics_loadFont) +STUB("XGVABnpNksQ", ft_corner_orientation) +STUB( + "XGYC8bMAArE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEED2Ev) +STUB("XGadXf2ePDo", mono_object_get_class) +STUB("XGbtZD7umgM", Java_java_lang_StrictMath_acos) STUB("XGcNn1LamZk", scePlayReadyCdmiGetSessionId) +STUB("XGggY5Z8CUk", _ZN3sce2Np9CppWebApi6Common8IteratorIjEmmEi) +STUB( + "XGkENIezCB0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEdeEv) +STUB( + "XGl0T3rWh28", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanity9setlocaleEPKc) +STUB("XGnuIBmEmyk", strndup) +STUB("XGrX-JLFi6Y", _ZNK7WebCore8Document21isAnimatingFullScreenEv) +STUB( + "XGtCMJ-e8V4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEC1Ev) +STUB( + "XGtRCKdZ55U", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB( + "XGw98Tnm9CQ", + _ZN7WebCore17PageConsoleClient23messageWithTypeAndLevelEN3JSC11MessageTypeENS1_12MessageLevelEPNS1_9ExecStateEON3WTF3RefIN9Inspector15ScriptArgumentsENS6_13DumbPtrTraitsIS9_EEEE) STUB("XGxXS135WR8", sceShellCoreUtilGetAppEnableTTS) +STUB( + "XGzSMI+hLVs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("XH-rVgQk7oE", mono_get_exception_thread_state) +STUB("XH07lCyBXBU", mono_aot_System_Reactive_Interfacesjit_got) +STUB("XH0t5lTW1HY", _ZTVN7WebCore9DOMWindowE) +STUB("XH0yo062xuk", mono_btls_ssl_get_cipher) +STUB("XH2M0C5vXwE", + _ZN7WebCore11JSImageData15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB("XHFOaK4Bnt0", _ZN12video_parser5vpcom9ReadAsyncE) +STUB( + "XHGiMiKTeQE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEptEv) +STUB( + "XHKvKmQfOKA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("XHPiBhqR0zc", JNU_MonitorWait) +STUB("XHTZO06td-o", ulocdata_getMeasurementSystem_67) +STUB( + "XHVQ4a+1Y1A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEC2EPKS8_) +STUB( + "XHY0WLXVpcs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "XHZGQOkZe98", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEC2EPS6_PNS2_10LibContextE) +STUB( + "XHZqSbkxRJU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE21intrusive_ptr_sub_refEPS7_) +STUB( + "XHbH8NAO4gY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE21intrusive_ptr_add_refEPS9_) +STUB("XHd2MpdKP2I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE3endEv) STUB("XHl38ZNknbs", sceAudioOut2MasteringInit) +STUB( + "XHlp+1cI0kw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE5clearEv) +STUB( + "XHmtsAqpi4I", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("XHnm54FAso4", _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead14getCustomData1Ev) +STUB( + "XHt7aWIr-KA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "XHvZ1H1mkUQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEED2Ev) +STUB("XHzAsOyfJcI", _ZN7WebCore12JSAudioTrack9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB( + "XI+NLpHECcY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE3endEv) +STUB("XI0YDgH8x1c", remquo) +STUB("XI2J3o+cnl8", _ZNK7WebCore16HTMLMediaElement7preloadEv) +STUB( + "XI2i9ZxfmZk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "XI4cU7yJLUg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEC2Ev) +STUB("XIAOofO0nN4", JSRunLoopIterateCurrentRunLoop) +STUB("XICCkbXViRo", _ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetail20unsetProfilePicturesEv) +STUB( + "XICiW-A2fDA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "XID9r3z-brk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEC1EPNS2_10LibContextE) +STUB( + "XIEUr4zR7ng", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE8copyFromERKS9_) STUB("XIGorvLusDQ", sceFontSetupRenderEffectWeight) +STUB( + "XIIR+3nfQ70", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEE11release_refEv) +STUB( + "XIJzWyUz9I0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEC2Ev) +STUB("XIKVdH7HuBg", _ZN9Inspector22InspectorDebuggerAgentdlEPv) +STUB( + "XIKgiYCKhYM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB( + "XIMYzGyu+pc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) STUB("XIPPPwj5i9A", scePssCAudIsStopped) +STUB( + "XIR0QSOmg3E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEppEi) +STUB( + "XIRhFvAgafQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEEaSERKS9_) +STUB("XITKbTGdwMo", _ZN7WebCore11DisplayList6SetCTMD0Ev) +STUB("XIU-YfHVjk8", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V15Error7setCodeERKi) STUB("XIZ0O84wH-Y", sceNpRemotePlaySessionSignalingInitialize) +STUB( + "XIbPgvWjPMU", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setBoolean5ERKb) +STUB( + "XIbXIDTEUpo", + _ZN3sce7Toolkit2NP2V24Auth11getAuthCodeERKNS3_7Request11GetAuthCodeEPNS2_4Core8ResponseINS3_8AuthCodeEEE) +STUB( + "XIcE3gM7rrc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("XIcaq-UKoo4", _ZN3JSC15typedArrayModesE) +STUB("XIckVUXyJsE", WKContextClearSupportedPlugins) +STUB("XIeFii2fjE0", mono_aot_Sce_Vsh_LncUtilWrapperunbox_trampolines) +STUB("XIkYgmejQxc", _ZN4Manx10FontStream5closeEPv) +STUB( + "XIpXk+8CxoM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEC2EPS8_) +STUB( + "XIqYnndhZ-g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEC2ERKS7_) +STUB("XIrhMUhXUVA", mono_aot_ClassLibrary1unbox_trampolines_end) +STUB( + "XIuhm4bZmlc", + _ZN9Inspector21InspectorRuntimeAgent13getPropertiesERN3WTF6StringERKS2_PKbS7_RNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime18PropertyDescriptorEEENS1_13DumbPtrTraitsISE_EEEERNS8_INSA_INSC_26InternalPropertyDescriptorEEENSF_ISK_EEEE) +STUB( + "XIwauoj0gDo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "XJ2VnPzEkfA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE5clearEv) +STUB("XJ4KxOknPSU", _ZN7WebCore18TextureMapperLayerD2Ev) +STUB("XJ4LnPh2Uj8", ucnv_getAlias_67) +STUB("XJ4QyhkAklc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEE5resetEPS6_) +STUB( + "XJCjJI1HnjQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEmmEv) +STUB("XJDj2H8Wdpo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEC2Ev) +STUB( + "XJEC8EXuR7k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEC1EPKS8_) +STUB("XJFu7wsA10k", _ZNK3JSC12JSRopeString25resolveRopeToAtomicStringEPNS_9ExecStateE) +STUB("XJLGUoS-3wI", WKPageClearWheelEventTestMonitor) +STUB("XJT39Czi22Q", _ZN7WebCore15JSFetchResponseC1ERKS0_) +STUB( + "XJUyZwVe+ps", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEC1Ev) +STUB( + "XJWSy+HoWws", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("XJXCsYEnXx4", _ZN3JSC7Symbols27newRegistryEntryPrivateNameE) +STUB( + "XJgNAy-wuSw", + _ZN3sce2Np9CppWebApi14IdentityMapper2V342PsnWebError_error_validationConstraintInfoC1EPNS1_6Common10LibContextE) +STUB( + "XJgnK79512c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEE7get_refEv) +STUB("XJkMmfVMHQk", _ZN3JSC7JSArray6s_infoE) +STUB("XJkTT4Wu2MU", JVM_OnExit) +STUB("XJp2C-b0tRU", acoshf) +STUB( + "XJslViD9nuM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE5beginEv) +STUB( + "XJu5sH2arbY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEppEv) +STUB("XJwRXHlO7h0", mono_aot_Sce_Vsh_GriefReportjit_code_start) +STUB("XJz9g72ot8k", mono_aot_System_Runtimeunbox_trampoline_addresses) +STUB("XK+J28qoso8", _ZN9Inspector15RemoteInspectorC1Ev) +STUB("XK0QhOV4vig", mono_aot_Systemplt) +STUB("XK2J+8QMYXw", _ZL18_sceLibcNewNothrowmRKSt9nothrow_t) +STUB("XK2R46yx0jc", coshl) +STUB( + "XK4biE83FCY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEC1EPS6_PNS2_10LibContextE) +STUB("XK6HqfROnqs", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_18SessionInformationEED2Ev) STUB("XKCN4gpeYsM", sceAudioPropagationSystemUnregisterMaterial) STUB("XKDzFiGAvhU", sceLibSecureCryptographyMessagePadding) +STUB("XKEPEc+EDA8", ucol_next_67) +STUB( + "XKFtO1TPH8M", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBody8fromJsonERKNS_4Json5ValueE) STUB("XKKuA6VkSRc", sceAgcAcbAtomicMem) +STUB( + "XKNMQAOcN4k", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEplEm) STUB("XKRegsFpEpk", catchReturnFromMain) +STUB( + "XKV0tr6VWPc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("XKVRBLdw+7I", _ZN3sce2np9NpTitleIdD2Ev) +STUB("XKZPrb4Pfqg", _ZNK7WebCore14HTMLCollection13namedItemSlowERKN3WTF10AtomStringE) +STUB("XKbeIT1wH7A", _ZNK3WTF10StringImpl10startsWithEDs) +STUB("XKdprgRLQy4", curl_url_set) +STUB("XKe-AxbD9No", + _ZN3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponseC2EPNS1_6Common10LibContextE) +STUB("XKenFBsoh1c", _Atomic_fetch_xor_8) +STUB( + "XKfOtdx0ILE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE3endEv) +STUB( + "XKfQSrsePwU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEC2ERKS7_) STUB("XKfh4naaANE", sceFontSelectGraphicsAgc) +STUB("XKmnVF+sQpw", + _ZN8meta_gen11MsvPromoter21setKeyValue_TBLI_SizeENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti) +STUB("XKx1FrqszfM", _ZN4IPMI4impl10ServerImpl29notifyKeventForServerShutdownEv) +STUB( + "XL-0I0BYLT0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) STUB("XL0WwUJoQPg", sceSharePlayNotifyOpenQuickMenu) +STUB("XL8+BUqjB1w", _ZN3sce4Json5Value3setERKS1_) +STUB( + "XL8CPWerGpI", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_19ProductInfoDetailedENS1_15AppSTLAllocatorIS5_EEEEC2Ev) +STUB( + "XLDdP3+ELyM", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId17setnpServiceLabelEj) +STUB( + "XLHQaUHEaiA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEED2Ev) +STUB( + "XLHQlalTBX8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V143SetVariableWithConditionsRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_36SetVariableWithConditionsRequestBodyEEE) +STUB("XLIYwMUXO4Y", _ZN7WebCore9FontCache10invalidateEv) +STUB("XLKvbi51E3g", mono_aot_Sce_Vsh_MarlinDownloaderWrapperjit_got) +STUB("XLOJqO86FZU", _ZN13MsvMetaEditor10writeFileXEjPv) +STUB( + "XLWbneL1V1o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("XLe2Z6Pjruo", __asan_poison_memory_region) +STUB("XLjHc156KzU", _ZN7WebCore17FrameLoaderClient26dispatchWillChangeDocumentERKNS_3URLES3_) +STUB("XLlxJWGgUcc", _ZN7WebCore6Editor7outdentEv) +STUB("XLnyLKPZfRM", _ZN3sce2Np9CppWebApi7Matches2V17Subtask13setActivityIdEPKc) +STUB("XLpPRMl5jro", _ZN3sce2npeqERK10SceRtcTickRKNS0_4TimeE) +STUB( + "XLpvq7TVf94", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEppEi) +STUB( + "XLq0SPbMa8A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEC2Ev) +STUB("XLvJTbeeirw", WKPreferencesSetInspectorUsesWebKitUserInterface) +STUB("XLyXJqFsd5M", JVM_DefineModule) +STUB( + "XM5XvH6y8hE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEE11get_deleterEv) +STUB("XM6DYkaGBcM", _Z27SoundPlayer_MoveSurroundPanifhfd) +STUB("XMFJE+2zZIc", + _ZN3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsers11unsetoffsetEv) +STUB( + "XMGEUp0unH8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEE3getEv) +STUB("XMIv42L5bEA", _ZN3sce2np9WorkQueue4ctorEv) +STUB("XMIzTLufzgA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE21intrusive_ptr_sub_refEPS7_) +STUB("XMJPvWiQWd4", _ZN9Inspector22InspectorDebuggerAgentD0Ev) +STUB( + "XMKJ1u4muc8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEC1ERS7_) +STUB( + "XMKqoYSG1ZE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "XMPmjIgxBPc", + _ZN7WebCore19ResourceRequestBase50setResponseContentDispositionEncodingFallbackArrayERKN3WTF6StringES4_S4_) +STUB("XMR5p-AA5AQ", _ZN4IPMI4impl11SessionImpl9tryGetMsgEjPvPmm) +STUB("XMRuseUohrU", _ZN3sce7Toolkit2NP2V210Tournament17TournamentEventIdC1Ev) +STUB("XMTGMU8kQFc", _ZN7WebCore11FileChooser10chooseFileERKN3WTF6StringE) +STUB("XMTsIKI3OKs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEE5resetEPS6_) +STUB( + "XMbQyFr5Tbw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEC2EPS8_) +STUB( + "XMc1qvI9AWA", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB("XMcnrYJ8wjs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119SubtaskAvailabilityEEeqERKS7_) +STUB("XMcwBJDzS48", + _ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer16unsetCustomData1Ev) +STUB("XMh3kJRY714", mono_shared_hashtable_iter_init) +STUB("XMhF0ukO7m4", _Z23Ime_DicDeleteWordNativeimP11_MonoStringS0_) +STUB("XMm2f1aJWNg", UCNV_FROM_U_CALLBACK_STOP_67) +STUB("XMpTONJWZr0", _ZN3sce2Np9CppWebApi7Matches2V111AddedPlayerC2EPNS1_6Common10LibContextE) +STUB( + "XMqN2K-9s0Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEE21intrusive_ptr_sub_refEPS7_) +STUB("XMtO-VQEsUg", delegate_virtual_invoke_imt_m_16) +STUB( + "XMthHH-sne4", + _ZN3sce2Np9CppWebApi14SessionManager2V168PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_61PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEE) +STUB( + "XMwJrAGMTig", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEaSERKS9_) +STUB("XMyaaMt9knk", _ZN7WebCore19InspectorController13setIndicatingEb) STUB("XN+Iuu7XsM8", sceAgcDcbSetZPassPredicationEnableGetSize) +STUB("XN-ohv4INIA", bemp2sys_tsdecoder_release) +STUB( + "XN2v+nFqQLk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEEdeEv) +STUB( + "XN76aT1V6Yw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEC2Ev) +STUB( + "XN7sNlfq7as", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEC2EPNS2_10LibContextE) STUB("XNArvUsT18s", sceKeyboardGetConnection) +STUB("XNI05qkxZBs", _ZN10MsvUpdater10InitializeEv) +STUB("XNIDoe5nRnU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE8capacityEv) +STUB( + "XNIxKC04FKY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEEC2ERKSA_) +STUB("XNKKeDz98eo", _ZN3sce7Toolkit2NP2V210Tournament18OneVsOneTournamentC1Ev) +STUB("XNPIPZ4gWVk", _ZNSt9basic_iosIwSt11char_traitsIwEEC2Ev) STUB("XNUoD2B9a6A", sceHttpSetCookieEnabled) +STUB("XNX-qhGAerk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEaSERS7_) +STUB("XNZA9DDHP1o", _ZN9Inspector14InspectorAgentnaEmPv) +STUB( + "XNZhWpsYy7s", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEixEm) STUB("XNbrdwCsZ9A", sceAgcDriverDestroyQueue) STUB("XNtZ16LIhf0", sceVideoOutHdmiMonitorInfoIsSupportedHdcpVersion) +STUB("XNux2a0QhQ8", _ZN7bmalloc6IsoTLS13ensureEntriesEj) +STUB( + "XNzcp7vs4TE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEixEm) +STUB("XO38UomdSZk", Java_java_lang_Object_getClass) +STUB("XO3N4SBvCy0", _ZNSt20bad_array_new_lengthD1Ev) +STUB("XO4N7T+SAwc", _ZN3JSC12StackVisitorC1EPNS_9ExecStateEPNS_2VME) +STUB( + "XO6hIhC1rw4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEaSERKS7_) +STUB("XO9ihAZCBcY", _ZTIa) +STUB( + "XO9uv1nTUXo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEneERKS9_) +STUB("XOEdRCackI4", _ZNSt12placeholders3_16E) +STUB("XOHmQ9KpwxA", _ZNK7WebCore21WheelEventDeltaFilter13filteredDeltaEv) +STUB("XOHuxymbtck", _ZN9Inspector14InjectedScript10saveResultERN3WTF6StringERKS2_RSt8optionalIiE) +STUB("XONMf5+FMp0", _ZN7WebCore8SVGNames16v_alphabeticAttrE) +STUB( + "XOYbnvXdb0I", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEC1EPS8_) +STUB("XOdM8G4JgYY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE7reserveEi) +STUB("XOgjMgZ3fjo", _ZNSt8numpunctIwEC1Em) +STUB( + "XOjuwMVSGas", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("XOkMDt26lm4", _ZN7WebCore24DeprecatedGlobalSettings19gManageAudioSessionE) +STUB( + "XOnCGH9g-vo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEC1Ev) +STUB( + "XOpVUYvx4Rs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "XOut1+BOh90", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE8copyFromERKS9_) +STUB( + "XOyKvBlrieg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEED2Ev) STUB("XOzszO4ONWU", sceNpTusGetData) +STUB("XP-0pFAwkLI", _ZN7WebCore8JSDOMURL13visitChildrenEPN3JSC6JSCellERNS1_11SlotVisitorE) +STUB("XP0-oV-XvpY", _ZNK3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error16referenceIdIsSetEv) STUB("XP7S05gKWoM", sceSystemLogger2SetLog) +STUB("XP9P8ExXwVY", _ZN7WebCore16HTMLInputElement15setValueForUserERKN3WTF6StringE) +STUB("XPAX+91ERb0", + _ZSt9use_facetISt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale) +STUB( + "XPBlmp57gYg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE21intrusive_ptr_sub_refEPS7_) STUB("XPC8EyEuvyk", sceVoiceQoSGetLocalEndpoint) +STUB( + "XPEJ138Sf0Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEC2EPS8_) STUB("XPIiw58C+GM", sceRtcTickAddMicroseconds) +STUB( + "XPKxa7UoRQ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("XPOKrkECPJg", _ZTVN9Inspector22RemoteAutomationTargetE) +STUB("XPONfo+3mzg", _ZN3JSC8Bindings13RuntimeObject11getCallDataEPNS_6JSCellE) +STUB( + "XPPwGrOKAwI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEC2EPS8_) +STUB("XPRyDKbZgSg", _ZN7WebCore9FrameView31enableSizeToContentAutoSizeModeEbRKNS_7IntSizeE) +STUB("XPVOBiZkA4g", _ZN3sce7Toolkit2NP2V28Commerce7Request29DisplayVoucherCodeInputDialogC2Ev) +STUB("XPfbbAPo7QQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEEmmEv) +STUB( + "XPjLUNYy0bA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEC2Ev) +STUB( + "XPkpjN985E0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEED1Ev) +STUB("XPlTYt2TOg0", sysc_s00) +STUB( + "XPno0+yGinM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEED2Ev) +STUB("XPnpT9nRfAs", mono_btls_pkcs12_new) +STUB("XPpjBuVLPVA", _ZNK7WebCore13MIMETypeCache11isAvailableEv) +STUB("XPrliF5n-ww", vwprintf_s) +STUB("XPrn0-EWJu4", g_snprintf) STUB("XPtW45xiLHk", sceHttp2SetSendTimeOut) +STUB("XPtc6krrgeE", _ZN7WebCore24CoordinatedGraphicsLayer37flushCompositingStateForThisLayerOnlyEv) +STUB( + "XPtvxL-B8pM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEEaSERSA_) +STUB( + "XPvppBerRas", + _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicket28getxPsnAcceptPlatformNamePs5Ev) +STUB( + "XPw8qCUNvPY", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB( + "XPxNYsOPUkc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEEdeEv) +STUB("XPxm3cJ1It4", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V15Error10setMessageEPKc) +STUB("XQ+cgNIT8Z0", WKContextConfigurationCopyWebProcessPath) STUB("XQ1A9VPIigU", sceKernelSflashGetWritePrio) +STUB("XQ3WZvZDGGM", _ZN7WebCore11MathMLNames10accentAttrE) +STUB( + "XQ6xAb-Xo3g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE8pushBackERKS8_) +STUB("XQ79w+11C78", _ZN7WebCore13MIMETypeCacheC1Ev) STUB("XQ8C8y+de+E", sceKernelAioSubmitWriteCommands) +STUB("XQCyh-jRkak", mono_aot_Sce_Vsh_Np_Tmdbmethod_addresses) +STUB("XQFE8Y58WZM", _warn) +STUB("XQKghntbq6E", _ZN3WTF22CrossThreadTaskHandler4killEv) +STUB("XQMhx9+Xc1M", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetBoolean5Ev) +STUB("XQP7zQTiRgY", _ZN3sce2Np9CppWebApi14SessionManager2V131ResponsePlayerSessionInvitationD2Ev) +STUB("XQQ6p4SAdOw", _ZN7WebCore24FrameDestructionObserverD1Ev) +STUB("XQRCgqivVxY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEC2Ev) STUB("XQSUbbnpPBA", sceNpPartyCreateA) +STUB("XQTth-+arz8", + _ZN3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponse17setPreviousOffsetERKi) +STUB("XQZkyJMxI18", glColorMask) +STUB("XQbd3lyks0c", pcf_driver_class) +STUB("XQg8Mv1VjjM", _ZN9Inspector15RemoteInspector19updateTargetListingEj) +STUB("XQi4nioAE48", mono_aot_Sce_Vsh_ShareServerPostWrapperplt) +STUB("XQiKLlg7HSo", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeDataC2ERS5_) +STUB( + "XQjOIvdVVVE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEcvbEv) +STUB( + "XQmRVW9K60s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEEC2ERKSA_) +STUB( + "XQskj3NtW-8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEE7add_refEv) +STUB( + "XR6-+FpxpIA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "XR7UHMrZ1xE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEE7add_refEv) STUB("XRFchqddEVU", sceNpManagerIntGetPlusMemberTypeNB) STUB("XRHBB0qMkvs", sceVideoCoreMediaSourceGetPlaybackQuality) +STUB("XRHQnXGV0lk", _ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error7setCodeERKi) +STUB("XRKYMC7xXU8", _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEEC2Ev) +STUB("XRO4Hwv58jw", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10CategoriesEE19setCustomReturnCodeEi) +STUB("XRSJGYwX4fg", _ZN7WebCore4Page52updateStyleForAllPagesAfterGlobalChangeInEnvironmentEv) +STUB( + "XRSMj7oRck0", + _ZN3sce7Toolkit2NP2V29Challenge21getReceivedChallengesERKNS3_7Request21GetReceivedChallengesEPNS2_4Core8ResponseINS3_10ChallengesEEE) STUB("XRUOmQhnYO4", sceFontGraphicsSetupPositioning) +STUB("XRWDGSuaBfs", _ZN3sce2Np9CppWebApi11Matchmaking2V127ListUserTicketsResponseBody10getTicketsEv) +STUB( + "XRX0x8ScSiQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB("XRZROxNRboc", _ZN3sce7Toolkit2NP10IdDatabaseC1ERKNS1_15CommunicationIdE) +STUB( + "XRf5KB2J3NM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("XRh9f8Lkt+E", GCC_except_table483) +STUB("XRmIkQ5gbwA", _ZN9Inspector24RemoteControllableTargetC2ERKS0_) +STUB("XRpCWUw66Y0", _ZN7WebCore10JSLocation9toWrappedERN3JSC2VMENS1_7JSValueE) STUB("XRpM9tQecCU", sceNpManagerIntLoginCheckSignin) +STUB("XRxuwvN++2w", _ZTSSt12system_error) +STUB( + "XRytZS9MY1A", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody32comparedLastUpdatedDateTimeIsSetEv) +STUB("XS+NkypC0zY", ucal_isWeekend_67) STUB("XS-eY7KRqjQ", sceNpManagerIntGetAccountId) +STUB("XS1XH14cemc", glDrawArraysInstanced) +STUB( + "XS1lnwj3Xg0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE21intrusive_ptr_add_refEPS9_) STUB("XS3kGVt4q+4", pthread_mutex_setprioceiling) +STUB( + "XS41sjkpwyU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEC2EPS6_PNS2_10LibContextE) +STUB("XS46YdXa2r0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEEC2EPKS6_) +STUB( + "XS6NSdC15QA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEptEv) +STUB( + "XS6uYOTwkv0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEppEv) +STUB("XS8CSiOlDVI", _ZNK9Inspector15AsyncStackTrace20buildInspectorObjectEv) +STUB("XSCuIaz-uDc", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container17setTotalItemCountERKi) STUB("XSHcHCXC1iE", sceVshAvcapUpdateSyncer) +STUB("XSIviLEaElw", rgctx_fetch_trampoline_rgctx_87) +STUB("XSJjxUXOlrU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE3endEv) +STUB("XSK4jllLpbM", WKBackForwardListGetItemAtIndex) +STUB( + "XSL7F7YUPg0", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetrics17setPercentileRankERKi) +STUB( + "XSNXVgFDwD8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEC2EPKS8_) +STUB("XSORdD3uW6w", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE5emptyEv) +STUB( + "XST1B4VIXsY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEeqERKS9_) +STUB( + "XSXbxk--nm4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEEC2ERSA_) +STUB("XSXteKISekw", _ZN3JSC11SlotVisitor10appendSlowEPNS_6JSCellEN3WTF10DependencyE) +STUB("XSYZ7Ac3HBQ", _ZN15AbstractStorage14YoutubeContent6RemoveEv) +STUB( + "XSeRSYoExMM", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot8getlimitEv) +STUB( + "XSiZViqm1zo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) STUB("XSjr+FjsU4s", sceUltGetWaitingQueueResourcePoolInfo) +STUB("XSklDEOgVfA", uhash_setValueComparator_67) +STUB("XSmzzytKSNM", WKMediaCacheManagerGetTypeID) +STUB("XSo+Uz2N2Ko", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEEppEv) +STUB("XSqDLKpP88U", YGNodeStyleSetAlignContent) +STUB("XStmVdN3R7Y", _ZNK3WTF6String57convertToLowercaseWithoutLocaleStartingAtFailingIndex8BitEj) +STUB( + "XSwsDVx1qRI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEC2ERS7_) +STUB( + "XT-pvasOXEA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE7reserveEi) +STUB("XT3Bl1yLMQY", ubidi_getProcessedLength_67) +STUB( + "XT77oBBFAzU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEC1Ev) +STUB( + "XTA7yQ7CM8g", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEptEv) +STUB("XTAfJodT1aY", u_totitle_59) +STUB( + "XTLg3yMIZPM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEEaSERSA_) +STUB("XTRBMujlKzo", _ZN7WebCore36registerMemoryReleaseNotifyCallbacksEv) +STUB("XTT1Nti7nks", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEEC1EPS6_) STUB("XTV1xv3H4qw", sceSystemServiceUsbStorageRequestMap) +STUB( + "XTVujcX2uI8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEE7add_refEv) STUB("XTWR0UXvcgs", sceAppContentGetEntitlementKey) +STUB("XTXSfTQSTZg", delegate_virtual_invoke_imt_21_p) STUB("XTi+x-uTX9o", sceNpJsonParse2Init) +STUB( + "XTtbURTu+bY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEeqERKS9_) +STUB("XTte3f-lcqc", + _ZN12video_parser13cVideoMetaVWG18_createArtworkInfoEjPNS_13cVideoMetaMP418VpThumbnailInfoMP4E) +STUB( + "XTvZlhkRXJM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEC2EPS8_) +STUB( + "XTx5pikRF3M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEE5resetEPS6_) +STUB( + "XU-gAZbXLh8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEED1Ev) +STUB("XU09rxYociQ", locale_get_default_67) +STUB("XU0jjbaFz2c", __ubsan_default_options) +STUB( + "XU4cJFmw-CU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE21intrusive_ptr_add_refEPS9_) +STUB("XU4yLKvcDh0", __divti3) +STUB("XUBgIGb3ae0", WKPageSetMuted) +STUB("XUCjhejJvPc", _ZN3sce2np8WorkItem10SetRunningEv) +STUB("XUIRDnty7Ik", _Open) STUB("XUIWT5yKPuc", sceDebugGetDLLoadFlag) +STUB("XURNRY1n3kg", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13string10IsSetEv) +STUB("XUT0dUajUrA", ures_getType) STUB("XUT7ad-BUMc", sceUserServiceGetKeyRepeatSpeed) +STUB( + "XUU5cXIFS48", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEE5resetEPS9_) STUB("XUWtxI31YEY", sceUsbdControlTransferGetData) +STUB( + "XUYWiEl3174", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE6resizeEj) +STUB( + "XUdYQEQxaQg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEaSERKS7_) +STUB( + "XUeWyaje50Q", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) STUB("XUfSWpLhrUw", sceFontGlyphGetMetricsForm) +STUB( + "XUfprNsvyec", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_17ActivityFeedStoryENS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv) STUB("XUjdsSTTZ3U", sceNpWebApiDeleteContext) +STUB("XUn40t5nGcs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEEC1EPS5_PNS2_10LibContextE) +STUB( + "XUobWasMG4E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE7popBackEv) +STUB("XUotbPaIblI", _ZN3sce7Toolkit2NP2V212NetworkUtils13NetStateBasicD2Ev) +STUB( + "XUqmCkwJZLI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEeqERKS9_) +STUB( + "XUrLgXejeuk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEE7get_refEv) +STUB("XUs40umcJLQ", _ZNSt10moneypunctIwLb1EE2idE) +STUB("XUuBQcsWRlA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsD1Ev) +STUB("XUxhGAFCMvU", _ZN7WebCore21SerializedScriptValueD2Ev) +STUB("XV+i9UTTxVs", + _ZN7WebCore23ScaleTransformOperation6createEddNS_18TransformOperation13OperationTypeE) +STUB( + "XV-VUeVQkiE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "XV5-EccXFPQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEC1EPNS2_10LibContextE) +STUB("XV5VxoDMkcU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16UnlockedTrophiesEE3setEv) +STUB( + "XV5kDzUO6GM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEppEi) +STUB( + "XV8EIwVXQBs", + _ZN3sce2Np9CppWebApi14SessionManager2V136PostPlayerSessionsRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_29PostPlayerSessionsRequestBodyEEE) +STUB("XV8vv-Gfbbs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEdeEv) +STUB( + "XVAUAC4GFpI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEC1ERKS7_) +STUB( + "XVDbzsuGL-k", + _ZN3sce2Np9CppWebApi14SessionManager2V136RequestPlayerSessionSpectatorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_29RequestPlayerSessionSpectatorEEE) +STUB("XVEJEHjT5SM", _ZN3sce2Np9CppWebApi13InGameCatalog2V525ContentInteractiveElementD1Ev) +STUB( + "XVGsAHQSgCo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEC1Ev) +STUB("XVIG0ICGRpM", WKUserContentURLPatternGetTypeID) +STUB("XVJz3NiDM90", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEEC2EPS5_PNS2_10LibContextE) +STUB("XVL8So3QJUk", connect) +STUB("XVMW7SSyhiI", WKStringIsEqual) +STUB("XVQ3cf0BdQ0", u_isdigit) +STUB( + "XVTcqsvR0z8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEED1Ev) +STUB("XVTxLOIKaQg", mono_thread_hazardous_try_free_all) +STUB( + "XVXcCQA7Dqs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEC2EPS8_) +STUB("XVb+0NN54gc", _ZN3WTF10StringImpl20createWithoutCopyingEPKDsj) +STUB( + "XVeAYgXeGvE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE8copyFromERKS9_) +STUB( + "XVfl-HDND1k", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC2Ev) +STUB("XVi1ujRbz4o", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEEC2Ev) +STUB( + "XVsf1QQSqko", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEEC1ERKSA_) +STUB( + "XVtB8TokG1A", + _ZN3sce2Np9CppWebApi14IdentityMapper2V331PsnWebError_error_errorsFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_24PsnWebError_error_errorsEEE) +STUB("XVu4--EWzcM", _ZNKSt17bad_function_call4whatEv) +STUB("XVx6JyC0Mv4", inflateEnd) +STUB( + "XW0eqVFxo7k", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersC2ERS5_) STUB("XW1+EtPFPAM", sceOpusCeltEncCtl) +STUB("XW5vEWWMoro", u_sprintf_67) +STUB("XW73Ink4DfA", _ZNK7WebCore13HitTestResult11textContentEv) +STUB("XW9ZZ62FpMk", cpp_demangle_read_expr_primary) +STUB("XW9bCLxgW10", WKContextConfigurationGetUserId) +STUB( + "XWJVa8nXAqA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEC2Ev) +STUB( + "XWJpJef97fM", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEED1Ev) +STUB("XWT5DdiEUMc", Java_java_io_ObjectOutputStream_getObjectFieldValue) +STUB( + "XWUsJlAzkGo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEneERKS9_) +STUB( + "XWeiBb0SvkU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEEaSERSA_) +STUB( + "XWiSTqYqP9M", + _ZN3sce2Np9CppWebApi7Matches2V126ResponseMatchPlayerFactory7destroyEPNS3_19ResponseMatchPlayerE) +STUB("XWreHmEfxDo", _ZN7WebCore36ISOProtectionSystemSpecificHeaderBoxC2ERKS0_) +STUB("XWxoDpinZso", _ZNSt9basic_iosIcSt11char_traitsIcEEC2Ev) +STUB( + "XWyKAz4u0EU", + _ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime12RemoteObject7SubtypeEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE) +STUB( + "XWzX9b+mlA4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEptEv) +STUB("XX+xiPXAN8I", _ZNKSt7_MpunctIwE16do_thousands_sepEv) +STUB( + "XX1XQbzi4dc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE4sizeEv) +STUB("XX2pm0bprEc", tt_cmap10_class_rec) STUB("XX6wlxpHyeo", sceMoveClose) +STUB("XX9KWzJvRf0", vfwprintf_s) +STUB("XX9tocaUX+g", cairo_append_path) +STUB("XXBFc-HPUFw", _ZN3sce2Np9CppWebApi6Common6VectorImE5eraseENS2_8IteratorImEERS6_) +STUB("XXBlgWd3W6k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEED2Ev) +STUB( + "XXI+iyX8r2M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEE7add_refEv) +STUB("XXLEcrf3wAA", WKOriginDataManagerDeleteAllEntries) +STUB( + "XXQLcJXZpuE", + _ZN7WebCore21JSCSSStyleDeclaration3putEPN3JSC6JSCellEPNS1_9ExecStateENS1_12PropertyNameENS1_7JSValueERNS1_15PutPropertySlotE) +STUB("XXRzqV3pzoE", Java_java_lang_reflect_Array_getInt) +STUB( + "XXULbuRiql4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("XXW8Dyuomwk", il2cpp_current_thread_walk_frame_stack) +STUB("XXf35+bs6iw", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer10setuseFreeEb) +STUB("XXiGcYa5wtg", _ZNSt9_Num_base11round_styleE) +STUB("XXiJQqFMwl8", _ZN3WTF6StringC2EPKh) +STUB("XXir7OS9S7M", + Java_com_sony_gemstack_org_dvb_application_AppsDatabaseImpl_n_1getAvailableAppIds) +STUB("XXsm0L-gVsY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEE11release_refEv) +STUB( + "XXsoVBMJgPE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEmmEv) +STUB( + "XXtd9tn++mg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) STUB("XY14n3jNIpE", sceNpUniversalDataSystemEventPropertyArraySetObject) +STUB("XY21x3P2TtM", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_17MessageAttachmentEEC1Ev) +STUB( + "XY3TRr3LOSQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "XYBYXuOscBM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEEC1ERKSA_) +STUB("XYE4FQ4C4lI", _ZN3JSC2VM8whenIdleESt8functionIFvvEE) +STUB( + "XYPqsYRgoaY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEED2Ev) +STUB( + "XYTyApmCiO4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEC1Ev) STUB("XYZ3JHRb7iU", sceBackupRestoreUtilPrepareBackup) +STUB( + "XYgjhOtbhW4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("XYihcfyT3II", monoeg_g_get_current_dir) STUB("XYm1wQQEDc0", sceContentBinderTerminate) +STUB( + "XYoZ5WZnf-A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("XYqrcE4cVMM", _ZTSSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE) +STUB("XYqzGj07i5U", + _ZN9Inspector22InspectorDebuggerAgent19failedToParseSourceERKN3WTF6StringES4_iiS4_) +STUB( + "XYsrkusoZFk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "XZ+s9Jc9ic8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEEC1Ev) STUB("XZ5QUzb4ae0", sceHmdReprojectionStartLiveCapture) +STUB( + "XZ96rdst+OA", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeaders17unsetLastModifiedEv) +STUB("XZB2-9dSghM", glCompressedTexSubImage2D) +STUB("XZDAjSe6MZs", mono_aot_ClassLibrary1jit_code_start) +STUB("XZGjSjFPdtw", _ZN7WebCore16MIMETypeRegistry27getUnsupportedTextMIMETypesEv) +STUB("XZMZpyxRIQA", jpeg_fdct_16x16) +STUB("XZNi3XtbWQ4", _ZNSt8numpunctIwE2idE) +STUB( + "XZOrI+YRIE4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEE7add_refEv) +STUB("XZTZqqSVGlY", _ZNK3sce2np9NpTitleId7IsEmptyEv) +STUB( + "XZXy1UwLnmI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEE7get_refEv) STUB("XZc+RQCv5ik", sceCompositorSetVrMode) +STUB( + "XZc2xnl3-78", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEdeEv) +STUB( + "XZcZphcWK2Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("XZfBNdoXajQ", uregex_open_67) +STUB("XZlysiYiszY", _ZN3JSC16CompleteSubspaceD1Ev) STUB("XZmo+u-eLBg", scePerfTraceIoControllerDelete) +STUB("XZqv4gIsqTU", _ZN7WebCore16HTMLInputElement16setIndeterminateEb) +STUB( + "XZvR4GJ4x74", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB("XZwIW0grKdM", ucnv_io_getConverterName_67) +STUB( + "XZxWQmFnnC0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("XZzWt0ygWdw", _ZTISt16invalid_argument) STUB("Xa1igyHioag", sceNpPushStopNotificationA) +STUB("Xa2lDjDv3L4", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus18getLastUpdatedUserEv) STUB("Xa3DExzD5do", sceNpIpcStopReceiveEvent) +STUB("Xa4Kt1r84HM", _ZN7bmalloc8FreeListC1Ev) STUB("XaC9s-Nr2u4", sceLncUtilResumeLocalProcess) +STUB( + "XaD+otDoXvA", + _ZN3sce2Np9CppWebApi15Personalization2V110ContentApi13getAccessCodeEiRNS1_6Common11TransactionINS5_12IntrusivePtrINS3_21GetAccessCodeResponseEEENS7_INS5_18ResponseHeaderBaseEEEEE) +STUB( + "XaDfZsDDCg0", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi35ParameterToSetGameSessionPropertiesC2ERS5_) +STUB("XaH5R+xZzOE", umutablecptrie_setRange_67) +STUB( + "XaIri-0ZNyA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEC1Ev) +STUB("XaKJqdhjD88", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS7TusDataEED1Ev) +STUB("XaPGfoqZcT8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEC1Ev) +STUB("XaPHWw1bZDE", _ZN7WebCore9HTMLNames19webkitdirectoryAttrE) +STUB("XaSxLBnqcWE", _ZNKSt7collateIcE9transformEPKcS2_) +STUB("XadSeFx0sW4", _ZN3WTF11Persistence7EncoderD2Ev) +STUB("Xadpbt8wQXo", WKPageGetSessionBackForwardListItemValueType) +STUB("XagGonXg1p0", _ZNK7WebCore12ChromeClient19isEmptyChromeClientEv) +STUB( + "Xak9xDnbzrM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEixEm) +STUB( + "Xap6+lMvhjo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE5beginEv) +STUB("XaqWcRBnceI", WKPageRunJavaScriptPromptResultListenerGetTypeID) +STUB( + "XarIgT72mQQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("XarSmMr1Rf0", _ZN3sce3Xml13AttributeList5clearEv) +STUB("XatOH5GIHrk", _ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionMemberPlayerD2Ev) +STUB( + "XayT1ffpWOQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE8pushBackERKS8_) +STUB( + "Xb+6t+80cjc", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("Xb+pS36gbDM", _Z28checkAttributeNameDuplicatesmPN3sce7Toolkit2NP2V28Matching9AttributeE) +STUB("Xb1jumQeo0g", _ZN7WebCore13ContainerNode13querySelectorERKN3WTF6StringE) STUB("Xb2Y38dkh10", ScePsmMonoGetExceptionOutOfMemory) STUB("Xb2ez5SqR38", sceAvSettingTerm) +STUB("Xb3pBz5vl9E", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13WhoLikedStoryEE7addressERKS3_) +STUB("Xb4BaqIusJk", _ZN7WebCore13HitTestResultC1ERKS0_) +STUB("Xb8wCHkcTNE", _ZN7WebCore12TextIteratorC1ERKNS_11SimpleRangeEt) +STUB("Xb9FhMysEHo", _ZNSt9_Num_base5radixE) +STUB("XbBoGslgGRA", _ZN7WebCore11DisplayList8DrawLineC1ERKNS_10FloatPointES4_) +STUB("XbD-A2MEsS4", _ZNSt15_Num_float_base10is_boundedE) +STUB("XbEM58kMYFc", _ZNK10__cxxabiv117__class_type_info7cast_toEPvPKS0_) +STUB("XbFyGCk3G2s", _ZTVSt10moneypunctIcLb0EE) +STUB("XbIM-AEDVXs", _ZN3sce7Toolkit2NP2V212EventsClient5EventaSERKS4_) +STUB( + "XbIVO9ZhbGI", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_4Heap17GarbageCollection4TypeEEESt8optionalIT_ERKN3WTF6StringE) +STUB( + "XbJQevMot3c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEC1Ev) +STUB( + "XbNgcd50ntY", + _ZN3sce2Np9CppWebApi14SessionManager2V120ErrorResponseFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_5ErrorEEEPNS8_INS3_13ErrorResponseEEE) +STUB("XbR6JVGM+0U", _ZN3WTF14isVersion4UUIDENS_10StringViewE) +STUB("XbVXpf5WF28", wcsftime) +STUB("XbY-F+-JJ4c", _ZN7WebCore6FourCCC2Ej) STUB("XbbJC3E+L5M", sceSystemServicePowerTick) +STUB("XbhG61+Xw7Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEEaSERS7_) STUB("XbkjbobZlCY", sceNpTrophyCreateContext) +STUB("Xbl-LYVFNEE", _ZN3sce4Json5Value21setNullAccessCallBackEPFRKS1_NS0_9ValueTypeEPS2_PvES6_) +STUB( + "XboVnyLBlk4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE4sizeEv) +STUB("XbqseEumf+g", mono_aot_System_Data_Services_Clientunbox_trampolines) +STUB( + "XbrKOiSkILQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "XbrWYXJr0Xo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEED2Ev) +STUB("XbrwyYgsPSY", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEED1Ev) +STUB("XbtmAGrMGZM", WKPreferencesSetMetaRefreshEnabled) +STUB("Xbwk6lRTyrw", + _ZN7WebCore19ResourceRequestBase18addHTTPHeaderFieldENS_14HTTPHeaderNameERKN3WTF6StringE) +STUB( + "Xby7CfYHtvw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE6insertENS2_8IteratorIS9_EERKS9_RSC_) STUB("Xc+bwbBPK00", sceSdmaInitialize) +STUB("Xc-SooizcFA", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead18maxSpectatorsIsSetEv) +STUB("Xc4DdOzT7M4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEC1Ev) +STUB( + "Xc6X733oSTw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEaSERKS9_) +STUB("Xc9UIzbBZr8", _ZNK3sce2Np9CppWebApi7Matches2V113ChildActivity13getActivityIdEv) +STUB("XcBiw4sFIS4", + _ZNK3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends8hasorderEv) +STUB("XcEf7b3gYfM", _ZN7WebCore5Style5Scope8resolverEv) +STUB( + "XcEiBmjQ7Tw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEixEm) +STUB( + "XcG+z0SSsmY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("XcJKS+rDcdw", __any_on_D2A) +STUB( + "XcLVqeVgCoE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEEC2Ev) +STUB( + "XcNd6zNG8sA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEE11get_deleterEv) +STUB("XcPWMTDSSwY", _ZN7WebCore8SVGNames16animateMotionTagE) +STUB( + "XcWGfy2kTdI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE21intrusive_ptr_sub_refEPS9_) +STUB("XcZcIM5Jyqs", _ZN7WebCore11FontCascadeaSERKS0_) +STUB( + "XcdA8K7ohbQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEppEi) STUB("Xcj8VTtnZw0", sceAudioOutExSystemInfoIsSupportedAudioOutExMode) +STUB( + "XcjNNPkqIfs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEixEm) +STUB("Xcm2HcRmQ2Y", _ZN3sce7Toolkit2NP2V27Session7SessionaSERKS4_) +STUB( + "XcrjrVFiZ5Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEC1EPKS8_) +STUB("Xct67SexTbk", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification16NewInGameMessageEE3setEv) +STUB("XcuCO1YXaRs", _ZNSt13basic_filebufIwSt11char_traitsIwEED1Ev) +STUB( + "XcukkXeBhA0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEmmEi) +STUB("XcxCinpG2E8", Java_java_awt_GnmImage_nativeGetRGBArray) +STUB("XcyG4XGUaTo", _ZN3sce2Np9CppWebApi7Matches2V117ResponseMatchTeam8fromJsonERKNS_4Json5ValueE) +STUB( + "Xd2X7yQhTKk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "Xd6iEm8Qc84", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "Xd9PznNp36g", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEptEv) +STUB( + "Xd9wjes-HxU", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToSendGameSessionMessage9terminateEv) +STUB("XdC7Z3tLhxs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEE11get_deleterEv) +STUB("XdSgv+tiDm8", _ZN3WTF6String6appendEw) +STUB("XdVip7yM6e0", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEE11get_deleterEv) +STUB( + "XdaOvXc7jwY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEC1Ev) +STUB("XdbxA93DS90", _ZNK3sce2Np9CppWebApi7Matches2V117ResponseMatchTeam12membersIsSetEv) +STUB("Xdei8rhnnt4", _ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error11unsetReasonEv) +STUB("Xdf1v-qy1gg", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEED1Ev) +STUB("XdnNymUKO+g", + _ZN7WebCore21NetworkStorageSession44setResourceLoadStatisticsDebugLoggingEnabledEb) +STUB("Xdnlno2cAEA", AMDTEE_DLM_FetchDebugStrings) +STUB("XdoL3vp1b+M", GCC_except_table532) +STUB("XdqOC4boOsU", mono_gc_register_finalizer_callbacks) +STUB("XdqiE4oZJ9U", _ZNK3WTF6String14toIntPtrStrictEPbi) +STUB("XdvNKwJ7h50", _ZNK7WebCore4Node11textContentEb) +STUB("Xdx3AqXUSPw", + _ZN15AbstractStorage18DailymotionStorage7IsExistERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("Xe-GK0b2Ahc", _ZN12video_parser18cMp4FFLHndlManagerC2EPKc) +STUB("Xe-vzCJeV3Y", glDrawElements) +STUB( + "Xe1MFN+YRoM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEC1Ev) +STUB("XeCZTzqIk2k", _ZN3sce2np8NpCommIdD0Ev) +STUB( + "XeCgTZeNnIA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE5eraseENS2_13ConstIteratorIS6_EERS9_) STUB("XeDDK0xJWQA", sceAudio3dPortOpen) +STUB("XeF87aUWCGM", mono_aot_System_Numericsunbox_trampolines) +STUB("XeGcNdNELYY", GCC_except_table65) +STUB("XeIRR713LsI", sqlite3_bind_text16) +STUB( + "XeJcYFZy9ec", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEC1Ev) +STUB( + "XeLSWV6VZDc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE6resizeEj) +STUB("XeOfe7xlbuY", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getMixerMute) +STUB( + "XeSPStC4p-c", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEeqERKS9_) STUB("XeTqw+0Zl10", scePthreadSetName) +STUB("XeWcqOI9ivc", _ZNK3sce2Np9CppWebApi15Personalization2V15Error10getMessageEv) +STUB("XebrHgPOUj0", Java_java_util_zip_Deflater_reset) +STUB( + "XecBS55ap2A", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEneERKS9_) +STUB("XecZ0RjDNQs", _Z34sceGpuDebuggerUnregisterShaderCodePKN3sce3Gnm16HsStageRegistersE) +STUB("XehY2ByHIy4", udat_set2DigitYearStart_67) +STUB( + "XekdYSEFSx4", + _ZN7WebCore19JSHTMLSelectElement19getOwnPropertyNamesEPN3JSC8JSObjectEPNS1_9ExecStateERNS1_17PropertyNameArrayENS1_15EnumerationModeE) +STUB("Xelhwqhd5Wo", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V18Variable9setSlotIdERKi) +STUB("XepdqehVYe4", closedir) STUB("XesihwAcYKE", sceAppInstUtilGetInsertedDiscTotal) +STUB( + "Xexr4T7Q6Kg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE10setContextEPNS2_10LibContextE) +STUB( + "Xf-ThibHWwk", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser18getjoinStateFilterEv) STUB("Xf2JqV9Xj2w", sceRegMgrRecoverRegNvs) +STUB( + "Xf2K3tHCIe0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEEdeEv) +STUB("Xf97gAOO6q4", _ZN7WebCore8SVGNames8refYAttrE) +STUB( + "Xf9SA7rm2Ew", + _ZN7WebCore10JSDocumentC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_8DocumentENS6_13DumbPtrTraitsIS8_EEEE) +STUB("XfA7awKPOpA", mono_aot_ReactNative_Components_Vshplt) +STUB("XfDIbreshOw", _ZThn664_N7WebCore24CoordinatedGraphicsLayerD0Ev) +STUB( + "XfDs+y7q6Iw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEC2Ev) +STUB("XfKcSLbdHkU", _ZN3NTF21ResourceRequestLogger9AdminPage4sizeEv) +STUB("XfU-mgSY7Zo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEEC1EPS6_) STUB("XfV-XBCuhDo", sceNetInfoDumpStop) +STUB("XfWV-hmpFbA", + _ZN3sce2Np9CppWebApi14SessionManager2V124GameSessionMemberForRead8fromJsonERKNS_4Json5ValueE) +STUB("XfXLXrlAKWE", + _ZN3JSC23JSModuleNamespaceObject10putByIndexEPNS_6JSCellEPNS_9ExecStateEjNS_7JSValueEb) +STUB( + "XfZiz1g-NnY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE4sizeEv) +STUB("XfcgJB6V2a0", ft_mem_realloc) +STUB("XfdgmVGydYU", _ZN3sce7Toolkit2NP2V24Core14removeCallbackERKNS3_7Request14RemoveCallbackE) +STUB("XfjRijeQEDo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEED1Ev) +STUB("XfkRdXaOgWQ", _ZN3JSC2VM12isInMiniModeEv) +STUB( + "XfmiwuQ9zsg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEC2EPNS2_10LibContextE) +STUB("XfqOSandGfA", _ZN3PAL8KillRing6appendERKN3WTF6StringE) STUB("XfuJkCbToVA", sceBgftServiceIntGetTaskInfoValueStringIndex) +STUB( + "XfzRS3gSO9U", + _ZN7WebCore19JSDOMMatrixReadOnlyC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_17DOMMatrixReadOnlyENS6_13DumbPtrTraitsIS8_EEEE) +STUB("Xg1oN7sylko", uprv_decContextSetRounding_67) +STUB( + "Xg77FjOHAnw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEEaSERKSA_) STUB("Xg7dJekKeHM", sceNpManagerIntCheckGameNpAvailability) STUB("Xg9M+lx4LcY", sceValidationGpuInit) +STUB( + "XgAT3KhHv2o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEE7add_refEv) +STUB("XgGAt7u+y3I", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setInteger4ERKi) +STUB("XgNi+47zG0M", rgctx_fetch_trampoline_rgctx_102_p) +STUB("XgSP7YfpXs4", _ZN3sce2Np9CppWebApi13InGameCatalog2V55ErrorC1EPNS1_6Common10LibContextE) +STUB( + "XgTZbDTvQio", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEdeEv) +STUB("XgW5an9l9X8", delegate_virtual_invoke_imt_19) +STUB("Xgc4BXQGhqA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEED2Ev) STUB("Xgd7m6JY3jU", ScePsmMonoJitInitVersion) +STUB("XgebXd4f46A", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce8ProductsEE3setEv) +STUB("XgehYXFKMDs", WKContextCreateWithConfiguration) +STUB("Xgh9r7Su1oI", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15ErrorC1EPNS1_6Common10LibContextE) +STUB("XghI4vmw8mU", _ZNSt8messagesIwE7_GetcatEPPKNSt6locale5facetEPKS1_) +STUB( + "XghyDM29XPU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE17getResponseHeaderERSB_) +STUB( + "XglZNSTDi+M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE8copyFromERKS9_) +STUB("XgmUR6WSeXg", _ZNSt11range_errorD2Ev) STUB("Xgsi0nAQvNU", sceVnaInitializeForParty) +STUB("XguLcfcFtU4", g_log_set_fatal_mask) STUB("XgvSuIdnMlw", sceSaveDataGetParam) +STUB("XgzSvOi2mv4", _ZN15AbstractStorage15FacebookContent5WriteEPKvlPl) +STUB("Xh-MGL8UMuw", _ZN3sce7Toolkit2NP2V28Commerce12ProductLabelD1Ev) +STUB("Xh5o-FMSmeU", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead16getSwapSupportedEv) +STUB( + "Xh5oMZsw3o8", + _ZN7WebCore24createFragmentFromMarkupERNS_8DocumentERKN3WTF6StringES5_NS_19ParserContentPolicyE) +STUB("Xh9mQftH0uk", _ZN3NTF3Ssl10initializeEv) +STUB("XhAvwL0MbWs", uspoof_areConfusable_67) +STUB( + "XhCe6wdkqbE", + _ZN3JSC7JSProxy18getOwnPropertySlotEPNS_8JSObjectEPNS_14JSGlobalObjectENS_12PropertyNameERNS_12PropertySlotE) +STUB("XhG6meNDLuI", _ZTVN7WebCore14LoaderStrategyE) +STUB( + "XhIcun3hgAo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE5beginEv) +STUB("XhKLZGy+Ymk", mono_object_unbox) +STUB("XhLRFm-1jKY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth8AuthCodeEE19setCustomReturnCodeEi) +STUB( + "XhLlMoXIAOI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE5clearEv) +STUB( + "XhO5o9NelSA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("XhQ9AFaiQ4c", _ZNK7WebCore9FrameView24effectiveFrameFlatteningEv) +STUB( + "XhRkFo14kgM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) STUB("XhWHn6P5R7U", pthread_rwlock_trywrlock) +STUB("XhdnPX5bosc", _ZNSt10moneypunctIcLb1EE4intlE) +STUB( + "Xhf0AQBCbMs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE7reserveEi) +STUB("XhhOOhZwyNI", mono_aot_Sce_Vsh_AppContentUtilWrapperjit_got) +STUB("XhhpFRHeOTU", + _ZN3sce2Np9CppWebApi7Matches2V127ResponseTeamMemberStatisticC2EPNS1_6Common10LibContextE) STUB("Xhib3X98rNE", sceIduUtilRegisterFlag) STUB("XhoOjXnv+QQ", sceBluetoothHidGetReportDescriptor) +STUB( + "XhqeBV5Q0Lw", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("XhrUc+9K1xQ", _ZN3WTF11OSAllocator23hintMemoryNotNeededSoonEPvm) +STUB("XhtA7xfRco0", GCC_except_table458) +STUB("XhwSbwsBdx0", _ZNSt7codecvtIcc9_MbstatetEC1Em) +STUB( + "XhwUV2JKeQY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEC1EPKS8_) +STUB( + "Xhx7FSEG0W4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEC1EPS8_) +STUB( + "XhzJJ9BVlUI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEmmEv) +STUB("XiBOHSoKM40", _ZN3JSC13JSONStringifyEPNS_9ExecStateENS_7JSValueEj) +STUB( + "XiENKvn-F5A", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12string8IsSetEv) +STUB("XiIG6UoL0v8", _ZN3sce7Toolkit2NP2V24Core18CustomResponseDataC1Ev) +STUB("XiMJ2PVc9UU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEC2ERKS7_) +STUB("XiMnw9g4tsI", _ZN9Inspector15InspectorTarget6resumeEv) +STUB( + "XiMw9WSc0Jk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE8pushBackERKS8_) +STUB("XiNGBFEOnDs", WKRenderObjectGetTypeID) +STUB( + "XiOC8IS5yDU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB( + "XiQPKd-8Now", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEppEi) +STUB( + "XiVPF-nBAKk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEC1EPS8_) +STUB("XiVlol7yD+k", WKViewSetBackgroundColor) +STUB("XiW+HeIE8i0", _ZN3sce7Toolkit2NP2V212EventsClient7Request9GetEventsD1Ev) +STUB( + "XicCtrb6GOU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEEptEv) +STUB( + "Xijw749qZ0o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEED2Ev) +STUB( + "Xik1P9ap5xk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE5beginEv) +STUB("XilOsTdCZuM", _ZNSt14overflow_errorD1Ev) +STUB("XioV6Fg-zL0", _ZTVN12video_parser17cVideoOperatorEtsE) +STUB( + "Xiwqspqv6K8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEEptEv) STUB("XiyzNZ9J4nQ", sceGnmSetWaveLimitMultipliers) +STUB("XizLtTVul4o", ubrk_setText_67) +STUB("Xj8kHYwCcFQ", _ZN3JSC7Symbols33hasOwnPropertyFunctionPrivateNameE) +STUB( + "Xj9CGv9JJko", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE5beginEv) +STUB("XjCrATC+irM", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEEptEv) +STUB("XjE+IbsJrxE", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_21NotifyChallengeResultEEC2Ev) +STUB("XjFJmnulHr4", g_DateInstancePoison) STUB("XjGem6+kn7U", sceLncUtilGetCdlgType) +STUB("XjJ0Sbja0aE", _ZN19ScePssCMediaDecoder14BufferedDecodeEPKvjRjPvjS2_S2_) +STUB("XjPKRVHsRdg", _UTF16v2Data_67) +STUB( + "XjWkWxkgEEo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEC1EPS6_PNS2_10LibContextE) +STUB("XjXZHOr9xQA", mono_domain_try_unload) +STUB("XjXfxzLkfds", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEEneERKS7_) +STUB("XjYBS3oMy4U", _ZN15AbstractStorage18DailymotionStorage14GetStorageSizeEPlS1_S1_) +STUB("XjaoS4PSpkg", rgctx_fetch_trampoline_rgctx_126_p) +STUB( + "XjcaV4WJej8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE3endEv) +STUB("XjdUq9LgZcU", EVP_aes_192_cfb8) +STUB( + "XjfaMghuxdk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEEC1ERKSA_) +STUB( + "Xjm04fAF6Kw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEptEv) +STUB("XjmU-UvchPg", _ZN9Inspector25ConsoleFrontendDispatchernaEmPv) STUB("Xjoosiw+XPI", sceKernelUuidCreate) +STUB("Xjp5vdWBYSM", + _ZN3JSC13RuntimeMethodC2EPNS_14JSGlobalObjectEPNS_9StructureEPNS_8Bindings6MethodE) STUB("XjqmNLGyLOg", sceVideoOutSysUpdateScalerParameters) +STUB("Xjsr0jpqOlg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament6EventsEED2Ev) +STUB("XjyTX8zTuEY", _ZN7WebCore9HTMLNames13aria_liveAttrE) +STUB("Xk+Fm+YTF2c", _ZNK7WebCore4Path5applyERKN3WTF8FunctionIFvRKNS_11PathElementEEEE) +STUB("Xk11NQCzAkA", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorImEplEm) STUB("Xk2hz9HAdYQ", sceBdSchedStartGame) +STUB("Xk7IZcfHDD8", _ZNKSt7codecvtIcc9_MbstatetE9do_lengthERS0_PKcS4_m) +STUB("Xk7pXSVYt5Q", _ZN3JSC8Bindings10RootObjectD0Ev) +STUB( + "XkC+TwRutXo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("XkD6O-jcO24", d2i_X509_bio) STUB("XkEs5rH1bSk", sceKernelGetCpuUsageThread) +STUB( + "XkEuIlnuEN8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEEaSERS9_) +STUB( + "XkHViVmoDHY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEppEv) +STUB("XkT6YSShQcE", _WLitob) +STUB( + "XkUD1rRG1kg", + _ZN3sce2Np9CppWebApi14SessionManager2V132ResponseGameSessionPlayerFactory6createEPNS1_6Common10LibContextERKmPKcPNS5_12IntrusivePtrINS3_25ResponseGameSessionPlayerEEE) +STUB("XkZ2V6beUDs", + _ZN3JSC22generateModuleBytecodeERNS_2VMERKNS_10SourceCodeEiRNS_18BytecodeCacheErrorE) +STUB("XkZ7aJ4mICw", glUniform1ui) +STUB("Xkafe+CTK28", _ZN3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayerD1Ev) +STUB( + "XkdGinZ2HtA", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessionsC1Ev) +STUB("XkgQotEtIhI", _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequestD2Ev) STUB("Xkn6VoN-wuQ", sceNpLwCondSignal) +STUB( + "XknjXlHkZvk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEC2EPNS2_10LibContextE) +STUB("XknvW3U931c", + _ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_errorC1EPNS1_6Common10LibContextE) +STUB( + "Xkpd+CwD9mA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEEptEv) +STUB("Xkq8nvo4tKg", _ZN3sce4Json9RootParamC1Ev) +STUB("Xksn+zj4x60", _ZN7WebCore20PasteboardCustomData5EntryaSERKS1_) +STUB( + "XkuEWzTOHLo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEED2Ev) +STUB("XkvjXpuyzLs", _ZNK7WebCore6Editor31contextRangeForCandidateRequestEv) +STUB("XkwgiO1jgGw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V117InvitableUserTypeEEaSERKS7_) +STUB("Xl0KWvN7TJI", mono_btls_pkcs12_up_ref) +STUB("Xl3RItA-Euc", _ZN7WebCore8Document5formsEv) +STUB( + "XlElXM6Ycvo", + _ZN7WebCore17LibWebRTCProvider16registerMDNSNameEN3WTF16ObjectIdentifierINS_22DocumentIdentifierTypeEEERKNS1_6StringEONS1_17CompletionHandlerIFvONSt12experimental15fundamentals_v38expectedIS5_NS_17MDNSRegisterErrorEEEEEE) +STUB("XlGEzCqlHpI", _ZN3sce2npneERKNS0_4UserERKi) +STUB("XlGLCLRDNMc", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIdEC1EPKd) +STUB( + "XlGMZGdTcP0", + _ZN9Inspector25DebuggerBackendDispatcher6resumeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("XlIysvPfuNQ", _ZN7WebCore22EmptyFrameLoaderClient29dispatchDidFinishDocumentLoadEv) +STUB("XlMZuT6JLcY", _ZNK7WebCore12NamedNodeMap12getNamedItemERKN3WTF12AtomicStringE) STUB("XlNp7jzGiPo", sceAgcDriverSetTFRing) +STUB( + "XlS+WFhaxeI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEppEv) +STUB( + "XlSp3y+wubo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEC2Ev) +STUB("XlTZ9VGHvn8", _ZTVN7WebCore22SkewTransformOperationE) +STUB("XlTwFUI6oSI", WKContextGetKeyValueStorageManager) +STUB("XlWbvieLj2M", _ZNK3sce4Json5ValueixEm) +STUB("XlXEfagRJQo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEC2Ev) STUB("XlcBqhyaJyI", sceShellCoreUtilDeleteDiscInstalledTitleWorkaroundFile) +STUB("XlhzNO7Ngfk", _ZN7WebCore8SVGNames7fontTagE) +STUB("XlilL8pvETQ", _ZN7WebCore8SVGNames5yAttrE) +STUB( + "XllZq+g-S6U", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE23clearOnFinishedCallbackEv) +STUB( + "Xlm3CSuwSdY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE4termEv) +STUB( + "Xlq+0ln3o1M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEE7add_refEv) +STUB("XlzFT8nnAMU", _ZNK3sce3Xml3Dom8Document14getSkippedTextENS1_6NodeIdE) +STUB( + "Xm8Et75Z5y8", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("XmAquprnaGM", __sync_fetch_and_and_16) +STUB( + "XmGN9B+MniY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("XmJwv9OLio8", _ZN7WebCore7Element7closestERKN3WTF6StringE) +STUB( + "XmLaKtWbk90", + _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody18swapSupportedIsSetEv) +STUB("XmUO6H1GyR4", ucnv_openPackage_67) +STUB( + "XmVDTFDVu+Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEEaSERKSA_) +STUB( + "XmWKYOtgHOw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE21intrusive_ptr_add_refEPS9_) +STUB("XmZD0up1Q8Q", _ZN15AbstractStorage12LocalServiceD1Ev) STUB("Xma8yHmV+TQ", sceNetConfigWlanAdhocJoin) +STUB("XmdBAiAQqK8", _ZNK7WebCore5Range14intersectsNodeERNS_4NodeE) +STUB("XmjZke1qGYI", _ZN3JSC7Symbols32asyncGeneratorEnqueuePrivateNameE) +STUB( + "XmoAcaRfB-M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE7popBackEv) +STUB("XmrJmyhEWA0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEaSERS7_) +STUB("Xmsz9ffM-9g", FcPatternGet) STUB("XmvdN3atbXY", sceVoiceQoSGetConnectionAttribute) +STUB( + "XmyK8eUAop4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEC2ERS7_) +STUB( + "Xn+Qo3NTLws", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) STUB("Xn-eH9-Fu60", sceSystemServiceSetOutOfVrPlayAreaFlag) STUB("Xn2TA2QhxHc", sceNetInetPtonEx) +STUB( + "Xn8idrPoq0o", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10getString3Ev) +STUB("XnCul31fdJ0", _ZNK7WebCore12SharedBuffer4copyEv) +STUB( + "XnGmEQMiEKQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEmmEi) +STUB( + "XnIk4zTAC+Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEC1Ev) +STUB( + "XnMdwsE72gs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEED1Ev) STUB("XnVFbq-Qc9I", sceLibSecureCryptographyGetKeySize) +STUB("XnVpABVrzQs", u_getPropertyValueName_67) STUB("XneHuxdjRAk", sceClPthreadCondWait) +STUB( + "XngvxdFvUeI", + _ZN3sce2Np9CppWebApi14SessionManager2V112ErrorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5ErrorEEE) +STUB( + "XnkWQnGkVy8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEixEm) +STUB("Xnrfb2-WhVw", strnstr) +STUB("Xntd0cTWi0o", wpe_pasteboard_string_vector_free) +STUB( + "XnykBuve46o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("Xo3ypKAGtNk", _ZN7WebCore10ScrollView11removeChildERNS_6WidgetE) +STUB( + "Xo4pzg0PptM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEixEm) STUB("Xo9MQFVHpAQ", sceLoginMgrServerInitializeSharePlayAllowPadOperation) +STUB( + "XoAWq79BCPM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE7reserveEi) +STUB("XoC1V7O78uQ", _ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead12unsetNatTypeEv) +STUB("XoE2OavjV18", _ZN7WebCore8SVGNames19feConvolveMatrixTagE) +STUB("XoE3RH-Y4hI", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V113SubtaskStatusEEaSERKS7_) +STUB("XoFtVU00iXs", _ZN7WebCore7Element23offsetParentForBindingsEv) +STUB("XoG-kSg91Dw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE3endEv) +STUB( + "XoGbuJcPDsE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEplEm) +STUB("XoHSovEBWgI", u_fstropen_67) +STUB("XoRHMuRz18I", _ZN7WebCore9HTMLNames11noframesTagE) +STUB("XoZQsuMBkOw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEC1Ev) +STUB("XoZqM9IBP+M", JSContextGroupAddMarkingConstraint) +STUB( + "XodFJ7w7yoo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEmmEi) +STUB( + "XodHEv36tFs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEEC2Ev) +STUB("XodZGaBbsQY", __libc_free_tls) STUB("XoeWzXlrnMw", sceVrTrackerGetTime) +STUB("XohCilNL5EA", _ZN3sce7Toolkit2NP2V23TUS7Request18GetUsersDataStatusD1Ev) +STUB("XoqhvWYzuvU", _ZN7WebCore18isEditablePositionERKNS_8PositionENS_12EditableTypeE) +STUB("Xorc5+tFQm8", _ZN7WebCore30InvertLightnessFilterOperationC1Ev) +STUB( + "XoslVo1OIEU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE5clearEv) +STUB("XowhukYxBhY", _ZN7WebCore18JSHTMLVideoElement4infoEv) +STUB( + "Xp2kMqtxYT8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEE11get_deleterEv) +STUB("Xp4D7IRIHE0", _ZN7WebCore19AccessibilityObject21ariaRoleToWebCoreRoleERKN3WTF6StringE) +STUB( + "Xp55TleH9Zo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEEptEv) +STUB( + "Xp7EaIKtmFM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEEptEv) +STUB( + "Xp7e6nvOstg", + _ZN3sce7Toolkit2NP2V29Challenge21getChallengeThumbnailERKNS3_7Request21GetChallengeThumbnailEPNS2_4Core8ResponseINS3_18ChallengeThumbnailEEE) STUB("Xp85BP3+BBI", sceAmprMeasureCommandSizeNopWithData) +STUB("Xp92SsA5atA", _ZN3sce2np7HttpUri5ParseEPS1_PKc) STUB("Xp9Px0V0tas", sceUserServiceGetGlsIsTwitterEnabled) +STUB("XpA3dnvjl8w", FTA_Add_Module_smooth) +STUB("XpAJ1Ckg-q4", CMAC_Update) +STUB("XpBGDtzmgXU", _ZN3sce7Toolkit2NP2V24Auth7Request11GetAuthCodeC2Ev) +STUB( + "XpRdfHeSPzI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEC2Ev) +STUB("XpTLX6bkH5Y", rgctx_fetch_trampoline_rgctx_2) +STUB( + "Xpbybm7WfoA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEneERKS9_) +STUB( + "XpfXC1mF8Ho", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEdeEv) +STUB( + "XpgnOmaZj4I", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEptEv) +STUB("XphPcB0md7w", __hexdig_init_D2A) STUB("XpuZT1pS47A", sceLoginMgrServerGetMorpheusRequiredUserId) +STUB("Xpw6n1YlWu8", jpeg_start_compress) +STUB("XpzE8aLKBfQ", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V18Variable20unsetLastUpdatedUserEv) +STUB("Xq-82jMGxFM", + _ZN3sce2Np9CppWebApi11UserProfile2V111PresenceApi28ParameterToGetBasicPresencesD2Ev) +STUB( + "Xq-kDNoE6tQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) STUB("Xq5WmbwPTnQ", sceAgcDriverTriggerCapture) +STUB("XqCDWDUJ7pI", + _ZNK3sce2Np9CppWebApi7Matches2V133RequestTemporaryCompetitiveResult16teamResultsIsSetEv) +STUB( + "XqETSIt6E8s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEE7get_refEv) +STUB("XqGqV5D9GmQ", _ZN3JSC7Symbols15execPrivateNameE) STUB("XqLLsvl48kA", sceNpTrophySystemGetUserFileStatus) +STUB( + "XqLRjTothgA", + _ZN7WebCore26MessagePortChannelRegistryC2EON3WTF8FunctionIFvRKNS_21MessagePortIdentifierENS1_16ObjectIdentifierINS_21ProcessIdentifierTypeEEEONS1_17CompletionHandlerIFvNS_26MessagePortChannelProvider11HasActivityEEEEEEE) +STUB("XqLvpNjc4Wc", _ZN3JSC19HeapSnapshotBuilder23getNextObjectIdentifierEv) +STUB( + "XqMM9TjEzlo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "XqRjXI8iMyA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("XqSdt4En0Vs", _ZN3sce7Toolkit2NP2V27NpUtils5IdMapD2Ev) STUB("XqVrFxjoXKo", sceFsExtUSBSchedInsertForHDD) STUB("XqYRHc4aw3w", sceCameraGetLensCorrection) +STUB( + "XqZWRFQy48k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEmmEi) +STUB("XqbpfYmAZB4", _ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2Em) +STUB( + "Xqe9YUgRktc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE10setContextEPNS2_10LibContextE) +STUB("XqglluaECqM", _ZN3JSC7Symbols29advanceStringIndexPrivateNameE) +STUB("XqiAwG3iE0c", _ZN3JSC8Debugger23recompileAllJSFunctionsEv) +STUB("XqiuPR7CeJU", EVP_sha1) +STUB("Xqkm-gipJ3c", _Z17receiveIpmiPacketiPvmPiS0_) +STUB("XqlDErOlc3g", vm_send_MonoGlobals) +STUB( + "XqnVoHZmOew", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEEC1ERKSA_) +STUB( + "Xqp3KzXQib8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEC1ERKS7_) +STUB( + "XqpV2WaDqhQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("XqrQ3ZGNRaY", udatpg_setDecimal_67) +STUB( + "Xqyb1wynnTI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE7popBackEv) +STUB("Xqztbdc69c4", _ZN7WebCore8Document17createAttributeNSERKN3WTF12AtomicStringERKNS1_6StringEb) +STUB("Xr-8XNv8wr4", _ZNK10__cxxabiv121__vmi_class_type_info11can_cast_toEPKNS_17__class_type_infoE) +STUB("Xr4pio56GGQ", _Unwind_SetGR) +STUB("Xr8AbhKuU30", _ZN12video_parser5vpcom13DirectoryOpenE) +STUB( + "XrI+Gx0UUDw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEED1Ev) +STUB( + "XrJeObBR+l8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEED1Ev) +STUB( + "XrMI2-B3zHo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEED2Ev) +STUB("XrTJtDbKnHg", _ZN9Inspector24CanvasFrontendDispatcher19canvasMemoryChangedERKN3WTF6StringEd) +STUB("XrUzZidh3K4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEC1Ev) +STUB("XrXDALeK73M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEEppEi) +STUB("XrXTtRA7U08", _LRecip) +STUB( + "XrgR5ZI+Pjg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEE3getEv) +STUB( + "XrhR7XG64iY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEC2Ev) +STUB("XrmqhAFeRW4", + _ZN7WebCore24StorageNamespaceProvider22setSessionIDForTestingERKN3PAL9SessionIDE) +STUB("Xrp3WNFryrE", u_strToUTF32_59) +STUB( + "Xrq4PZqsmQw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEEdeEv) +STUB( + "XrsOok2uZBk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEEptEv) STUB("Xru92wHJRmg", sceVideoOutAddVblankEvent) +STUB( + "XrxgsyNCBfI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEdeEv) +STUB( + "XryYKxv4zTE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("Xrze4QPhgo4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEppEv) +STUB("Xs1WTmS4fjk", _ZN12video_parser17cTsFFLHndlManagerC2EPKc) +STUB( + "Xs5IRISYp7E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEED1Ev) STUB("Xs9hdiD7sAA", pthread_setschedparam) +STUB("XsD3FlWj15A", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE3endEv) +STUB("XsDPaQ2pLiY", WKBundlePageSetUIClient) +STUB( + "XsDpfOePHVY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEC2EPS8_) +STUB( + "XsHY2k1X8a8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEEcvbEv) +STUB("XsO2CUN9oyQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE5clearEv) +STUB( + "XsXKmOCbguY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE8pushBackERKS8_) +STUB( + "XsY6EDC-8uM", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeAccountId2OnlineIdBatchD1Ev) +STUB("Xsc9aCcooDU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEC2Ev) +STUB( + "XscET2Ei61I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEE5resetEPS6_) +STUB( + "XscoWc8J+zY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE21intrusive_ptr_add_refEPS9_) +STUB("XsfCncK1ixk", WKWebsiteDataStoreIsStatisticsRegisteredAsSubFrameUnder) +STUB( + "XshHSl+A4p8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEEdeEv) +STUB( + "XsnOLeXSjjk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEE7get_refEv) +STUB("Xsre+404K7A", _ZN7WebCore8SVGNames21gradientTransformAttrE) +STUB("XsyWE4CSjRY", _ZN3WTF11Persistence7Encoder21updateChecksumForDataERNS_4SHA1EPKhm) +STUB("Xt+SprLPiVQ", CA_MGMT_enumCrl) +STUB( + "Xt+md5RfoA0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEC2Ev) +STUB("Xt0Jraw1eu4", _ZN7WebCore24CoordinatedGraphicsLayer12setMaskLayerEPNS_13GraphicsLayerE) +STUB("Xt2cS8a6Xj4", _ZN7WebCore18PlatformTimeRangesC2ERKN3WTF9MediaTimeES4_) +STUB( + "Xt4NG8FiUSs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE6resizeEj) +STUB( + "Xt7NxbnOrlE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("XtAANmF2Ulc", _ZN3sce7Toolkit2NP2V28Presence12Notification14PresenceUpdateC1ERKS5_) +STUB("XtCBdZx6Mpo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEdeEv) STUB("XtClSOC1xcU", sceNetBweCheckCallbackIpcInt) +STUB("XtFyTKi22Sc", _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRankingD1Ev) +STUB("XtJFhdWtv7A", mono_aot_Sce_Vsh_DiscPlayerunbox_trampoline_addresses) +STUB( + "XtKvu-c5ZcE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEC2EPS8_) +STUB( + "XtOl9KAhjh0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE5beginEv) +STUB("XtP9KKwyK9Q", _ZTISt12bad_weak_ptr) +STUB( + "XtSw528ZdJg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEEC2ERKSA_) +STUB( + "XtZrvw-ObB0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "XtaxBCCwMwc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEE11get_deleterEv) +STUB("Xte9Io0K-yQ", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4RoomEE3setEv) +STUB("XtqRfeG-eRE", _ZNK3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15Error12messageIsSetEv) +STUB("Xu6bdKSXf5w", _ZN3sce7Toolkit2NP2V210Tournament12MatchDetails8deepCopyERKS4_) +STUB("Xu80SX8RNxw", _ZN8meta_gen13JpegRetriever20JPEGPROM_HOUR_OFFSETE) +STUB( + "XuAy0vYmKx8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE21intrusive_ptr_add_refEPS9_) STUB("XuJAJecAwbM", sceDebugIpmiGetChannelWaitingThreadList) +STUB("XuN6ckgISpo", _ZN13MsvMetaEditor8compact8EmPh) +STUB("XuNOIRPz7Os", CurlMultiQueueRequest) +STUB( + "XuOPnyNewyM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEEC2Ev) +STUB("XuSGBkZXvkY", _ZN7WebCore22EmptyFrameLoaderClient14cancelledErrorERKNS_15ResourceRequestE) +STUB( + "XuVY56j7GM0", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_51PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEE) +STUB("XuXDVIamUmU", _ZN3JSC2VM24intlPluralRulesSpaceSlowEv) +STUB( + "XuZjVE6824A", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("XuZn1qUezkE", WKBackForwardListGetTypeID) +STUB("XuiSa0e8NQs", WKWebsiteDataStoreRemoveITPDataForDomain) +STUB("XujojypwYYc", __sys_dl_get_list) +STUB("XukP1j-OjCQ", sr04) +STUB( + "Xukc0fYdfHo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) STUB("XulaVOa6IwA", sceVideoRecordingGetVideoOutMode) +STUB("Xulxz8sifac", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEE5resetEPS5_) +STUB("XunKPED2zLE", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18SessionInformationEEC1Ev) STUB("XuqmYJfdEzI", sceFaceTrackerAddUserFeature) +STUB("Xusa19jU2dE", _ZN3JSC8JSObject30convertToUncacheableDictionaryERNS_2VME) +STUB( + "Xuser1dx7UM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEEaSERKS9_) +STUB("XuwLcdlmrS4", __asan_poison_stack_memory) +STUB( + "XuzIfKtDe6I", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEEiRNS2_10LibContextEPT_m) +STUB("XuziIaZ0ieg", _ZN7CoreIPC15ArgumentDecoder6decodeERb) +STUB("Xv+0BhQZN9g", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEEppEv) +STUB("Xv7gsbvyLsM", _ZN7WebCore8FormData16prepareForUploadEv) STUB("XvA5KS56wcs", sceInvitationDialogInitialize) +STUB( + "XvGHXWpY4r4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE10setContextEPNS2_10LibContextE) +STUB("XvLbJb5jTh4", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product31contentInteractiveElementsIsSetEv) +STUB( + "XvMCVMlukNM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEC1Ev) +STUB("XvMSyv0qVBc", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13FriendsOfUserEEC1Ev) +STUB( + "XvPFm2tF0wI", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEEiRNS2_10LibContextEPT_m) +STUB("XvPtgoXrjnM", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE8pushBackERKS6_) +STUB("XvSvS6FCnVI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE4sizeEv) +STUB("XvVca2CQ6vQ", _ZN7WebCore8SVGNames20feDisplacementMapTagE) +STUB( + "XvYmGRV2O38", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEmmEi) STUB("Xva83fZZ7D4", sceImeBackendGetCaretIndex) +STUB("XvfHZol5M80", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable8getValueEv) +STUB("XvfPzcP3Aq8", _ZN3JSC8DebuggernwEm) +STUB( + "XvguxuYcpng", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) STUB("XvhwS43SKN8", sceNpSnsYouTubeDialogGetResult) +STUB( + "XvjGsM6WBy8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody37unsetComparedLastUpdatedUserAccountIdEv) +STUB("XvpvmtjZr6s", mono_aot_Sce_Vsh_RnpsAppMgrWrapperunwind_info) +STUB("XvuKaNDHIWA", _ZN7WebCore17FrameLoaderClient30updateGlobalHistoryItemForPageEv) +STUB("XvwBxPGMX9A", __asan_store16_noabort) +STUB("Xvwa-06MMT8", _ZN3sce2Np9CppWebApi6Common6VectorIfE8pushBackERKf) +STUB( + "Xvxj6qTdeJs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEdeEv) +STUB("Xvz2YKjejK8", monoeg_g_strndup) +STUB("Xw2GRLZZITY", ucptrie_getType_67) +STUB("Xw6MRw0otvY", _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForReadD1Ev) +STUB( + "Xw8NIUn3Mmo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE3endEv) +STUB("XwCQlCYd7Zs", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth7IdTokenEE19setCustomReturnCodeEi) +STUB("XwDl05sLITI", mono_aot_Sce_Vsh_Themeunwind_info) +STUB("XwLA5cTHjt4", __gxx_personality_v0) +STUB("XwQprd-SN94", _ZNK7WebCore11MediaPlayer35platformVolumeConfigurationRequiredEv) +STUB("XwRd4IpNEss", _FRteps) +STUB("Xwe5zUiM0Yg", Java_java_util_zip_ZipFile_startsWithLOC) STUB("Xweb+naPZ8Y", sceNpWebApi2GetMemoryPoolStats) +STUB("XwguU8D076E", uprv_decNumberZero_67) +STUB( + "XwkqckJcVL8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEeqERKS9_) +STUB("Xwt6c0oYcOE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE5beginEv) +STUB( + "XwueuOfD+Q8", + _ZN7WebCore8Document17addConsoleMessageEN3JSC13MessageSourceENS1_12MessageLevelERKN3WTF6StringEm) +STUB("XwyKrGzWNag", _ZN7WebCore9AnimationD2Ev) STUB("Xx+NgwGbYk4", sceGpuExceptionRemoveRazorHandler) +STUB("Xx0dItTuoRM", WKPreferencesGetMediaSourceEnabled) STUB("Xx974EW-QFY", sceFontSelectRendererFt) +STUB("XxMEGHeTJ6A", _ZN7WebCore8SVGNames20feDiffuseLightingTagE) +STUB("XxX+8OB3pRA", Java_com_sony_gemstack_org_dvb_application_AppProxyImpl_n_1load) STUB("XxehMXhiJoQ", sceVencCoreSetPictureType) +STUB("XxfxrsCBl5o", WKPageSetScrollPinningBehavior) +STUB( + "XxnIqHUeDks", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("XxoF7-Yj5Pg", _ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayerD1Ev) +STUB("XxpHVIw5W9Q", _ZN7WebCore8SVGNames16feColorMatrixTagE) +STUB("XxsPrrWJ52I", _ZNKSt8messagesIcE3getEiiiRKSs) +STUB( + "Xxt-WqqlrJ0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE10setContextEPNS2_10LibContextE) +STUB( + "XxyP0VpcB0M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEEC2Ev) +STUB("Xy24q3qh8eQ", _ZNK7WebCore18DOMWindowExtension5frameEv) +STUB("Xy4cdu44Xr0", CERT_enumerateCRLAux) STUB("Xy4rq8gpYHU", sceUserServiceSetFileBrowserSortContent) +STUB("Xy5YsYFZYIo", fuse_main_real_compat25) +STUB("XyAHGBvo1R8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEmmEi) +STUB("XyDgzkScDVQ", _ZNK3WTF10StringView21findIgnoringASCIICaseERKS0_j) +STUB( + "XyI4tyR51yI", + _ZN8meta_gen11MsvPromoter25setKeyValue_TBLV_MarlinIdENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB("XyJPhPqpzMw", _ZNSt4_PadD1Ev) +STUB("XyKw6Hs1P9Y", _ZNSt10filesystem6_ChmodEPKcNS_5permsE) +STUB("XyLpGP1eO2k", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils16NetStateDetailedEEC2Ev) +STUB("XyVSidTteHI", jvmciHotSpotVMTypes) +STUB("XyX1104ACcU", __tsan_acquire) +STUB( + "XyYtMcULDno", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEC1ERS7_) +STUB("XydkUpianuM", _ZN7WebCore9HTMLNames9centerTagE) +STUB( + "XykCBfkGuxc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEC2EPS8_) +STUB("XymOM0uQO8o", udtitvfmt_formatCalendarToResult_67) +STUB( + "Xyn985t5098", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "XyoOMsRe3GI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("XypLQD+W1HM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEptEv) +STUB("XypQPgXg0KE", _ZNK7WebCore16HTMLInputElement10isURLFieldEv) STUB("XyvQv2qjUng", sceNpPushIntEndInactive) +STUB( + "Xyx0Zc0gs28", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEEptEv) +STUB( + "XyxFBd0B+UQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEeqERKS9_) +STUB("XyzcK+7svlc", GCC_except_table367) +STUB("Xz1rPddzDVg", _ZN7WebCore11JSDOMWindow14finishCreationERN3JSC2VMEPNS_13JSWindowProxyE) +STUB( + "Xz6dYA6DPiA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEC1EPS8_) +STUB( + "Xz7eSxsUubY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE7popBackEv) +STUB("Xz8I-jW1h-8", mono_aot_Sce_Vsh_Themeplt_end) +STUB("XzBpmNFa5uc", _ZN7WebCore11MediaPlayerD1Ev) +STUB( + "XzHv889WHkA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEE11release_refEv) +STUB("XzMossODjv8", _ZN7WebCore16BlobRegistryImpl23registerBlobURLForSliceERKNS_3URLES3_xx) +STUB("XzX7xkCot04", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEC1Ev) +STUB("XzaB+3b5LII", _ZN7WebCore9HTMLNames7fontTagE) +STUB("XzcH41rrOC0", UDataMemory_normalizeDataPointer_67) +STUB( + "XzdVu68uciM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEEC1ERS9_) +STUB( + "Xzez-K4wpcw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEmmEv) +STUB( + "XzlKjlRP8c4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEED1Ev) +STUB("XzmyKMq+H-I", _Z24Ime_GetDicWordListNativeimPP11_MonoStringS1_) +STUB( + "Xzo2Nq9GflA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEptEv) +STUB("Xzpfd5uJNNk", WKBundlePageStopExtendingIncrementalRenderingSuppression) +STUB("XzsY92t2shU", _ZN3JSC8Debugger11atStatementEPNS_9ExecStateE) +STUB( + "Xztq5XmEJeA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEptEv) +STUB("Xzy0onDzSAc", _ZN3sce4Json6MallocEm) STUB("Y+-YGNm6Gas", scePlayReadyReaderDecrypt) +STUB( + "Y+04igRCce4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE8capacityEv) +STUB("Y+75-LnHTVo", _ZN3sce3Xml4AttrC2Ev) STUB("Y+Cj0GwkL8w", sceCesIso2022StrGetUtf32Len) +STUB("Y+E+Xo5zmWs", + _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchStatusRequest8fromJsonERKNS_4Json5ValueE) +STUB("Y+F8BWbx21Q", mono_aot_Sce_Vsh_UsbStorageScenemethod_addresses) +STUB("Y+FKKeZmpyo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE4sizeEv) +STUB( + "Y+FUKN+oyc8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEE7get_refEv) +STUB( + "Y+PX6zqK244", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEC1EPS8_) +STUB( + "Y+SHtHghkpo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("Y+SivKEB3AE", _ZN3JSC7Symbols30promiseStatePendingPrivateNameE) +STUB("Y+T21D+imWk", _ZN3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsSearchRequestBodyD1Ev) +STUB( + "Y+YeKHUrM7w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEED1Ev) +STUB( + "Y+au3IcrQVA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEE7get_refEv) +STUB( + "Y+dmXhjo+PY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEC1EPNS2_10LibContextE) STUB("Y+hLqeLseRk", sceNpManagerIntLoginGetAuthorizationCode) +STUB("Y+jqwX0puOE", udat_getAvailable_67) +STUB( + "Y+pTVRiUcHo", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE6finishEv) +STUB( + "Y+pw3tjTcfw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "Y+s5oX1F3wY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEC1EPS7_PNS2_10LibContextE) +STUB( + "Y+u-l+LxGIs", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi11recordScoreEiRKNS4_22ParameterToRecordScoreERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_23RecordScoreResponseBodyEEENSA_INS4_26RecordScoreResponseHeadersEEEEE) +STUB("Y--EgEoE8C4", + _ZN7CoreIPC10Connection22createClientConnectionEiPNS0_6ClientEPN7WebCore7RunLoopE) STUB("Y-3JCiU9bbU", sceVrTracker2GetCoordinateSystem) +STUB( + "Y-4YRER1mnM", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC2ERKS8_) +STUB("Y-5-0OwCYck", JVM_GetSockName) +STUB("Y-5sBnpVclY", CA_MGMT_convertKeyPEM) STUB("Y-5vneiBtzk", sceAgcAcbEventWriteGetSize) +STUB("Y-6GjsGTrGw", _ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead13unsetPlatformEv) +STUB("Y-7rDsm23yk", + _ZN7WebCore35CrossOriginPreflightResultCacheItem5parseERKNS_16ResourceResponseERN3WTF6StringE) +STUB( + "Y-AYv4pF9dk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEEC2Ev) +STUB( + "Y-BeRt6hfUg", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser15setmemberFilterEPKc) +STUB("Y-BsNTR9JUE", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V111OfferStatusEEmmEv) +STUB("Y-DWQGqNj40", _ZN3JSC8Debugger17didExecuteProgramEPNS_9ExecStateE) +STUB("Y-FLW6YaELs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEE7get_refEv) +STUB("Y-I66cSNp+A", _ZN3sce2np8WorkItemD0Ev) +STUB("Y-Lqz4pNya4", rgctx_fetch_trampoline_mrgctx_11_p) +STUB("Y-Ph7Ug2WgI", monoeg_g_strchomp) +STUB( + "Y-RYuhf8H1c", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEdeEv) +STUB( + "Y-YDvEIUIf4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB("Y-enDzU8ibc", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy17TrophyPackSummaryEE19setCustomReturnCodeEi) +STUB( + "Y-f6EnCx3Ts", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE8pushBackERKS8_) +STUB("Y-f8NxVe1Ws", _ZNK3sce2Np9CppWebApi12Leaderboards2V14User9pcIdIsSetEv) +STUB( + "Y-mBQc+B5rQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEEptEv) +STUB("Y-o-b7OCixI", _ZThn24_N9Inspector22InspectorDebuggerAgent8stepOverERN3WTF6StringE) +STUB( + "Y-q+lEitEts", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "Y-q7CIuwGdA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEED1Ev) +STUB( + "Y-qSBjZDr+4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE5emptyEv) +STUB( + "Y-w7hdvXftk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEE21intrusive_ptr_sub_refEPS7_) +STUB( + "Y-wVwcpJjDQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "Y-wh9GQRNww", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEplEm) +STUB( + "Y-x8XcHfiRA", + _ZN3sce2Np9CppWebApi7Matches2V126CreateMatchResponseFactory7destroyEPNS3_19CreateMatchResponseE) +STUB( + "Y-xPeNY3RM4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("Y-yfJk9tEjs", _ZN3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSessionD1Ev) +STUB("Y0-IeBPnpXk", _ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE7popBackEv) STUB("Y00mcdiTiOA", sceUrlConfigResolverGetDeviceId) +STUB( + "Y054LOaMkWs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEEC1ERSA_) +STUB("Y05Qp6MjtQ4", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_15TrophyGroupInfoEED1Ev) +STUB( + "Y07JJmjs8HA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEED2Ev) +STUB("Y08Qm-TztMw", _ZN3sce7Toolkit2NP2V212EventsClient12EventDetails20MAX_SIZE_DESCRIPTIONE) +STUB("Y09cEVpgZ0I", sendMessage) +STUB("Y09pEga+1vQ", _log_impl) STUB("Y0Jl+IRTPCE", sceCesEucKrToUtf8) +STUB( + "Y0Koxq4KEkg", + _ZN7WebCore11FrameLoader16loadFrameRequestEONS_16FrameLoadRequestEPNS_5EventEON3WTF6RefPtrINS_9FormStateENS5_13DumbPtrTraitsIS7_EEEEONS5_8OptionalINS_18AdClickAttributionEEE) +STUB("Y0LQ0UrxiEs", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetailD1Ev) STUB("Y0LiSp+hb38", sceSrcUtilityInitialize) STUB("Y0LmeEc0f7E", sceVideoCoreGenerateThumbnail2) +STUB("Y0R876TZju4", _ZN7WebCore15HTMLFormElement15setAutocompleteERKN3WTF10AtomStringE) +STUB( + "Y0SK1FVHnYU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEC2EPKS8_) +STUB( + "Y0T+QeM2fbE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE21intrusive_ptr_add_refEPS7_) +STUB("Y0aSX0IFJCg", _ZN3WTF6Thread17waitForCompletionEv) +STUB("Y0cKXXu1FV0", _ZTV22MmsMdCommonFsOperation) +STUB( + "Y0eGPZuXJkY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEneERKS9_) +STUB("Y0eI-b+mHIw", + _ZN7WebCore12EventHandler21handleMousePressEventERKNS_28MouseEventWithHitTestResultsE) +STUB("Y0ihanSfskw", qs5) STUB("Y0pCDajzkVQ", sceCameraChangeAppModuleState) +STUB("Y0pD1+-SO2k", Java_java_lang_Runtime_maxMemory) +STUB( + "Y0xDk1-eT+A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEED2Ev) +STUB( + "Y0zuU-hUj1o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEE5resetEPS9_) +STUB("Y11CsKBV32g", _ZN3JSC8Debugger23updateCallFrameInternalEPNS_9CallFrameE) +STUB("Y16fu+FC+3Q", sys_signame) +STUB( + "Y1AaB-7f6q0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "Y1CP8zONIDg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEC2ERKS7_) STUB("Y1DCjN-s2BA", sceHttpAuthCacheExport) STUB("Y1EmilNpj3Y", sceNpPush2SetNpCommunicationId) +STUB("Y1HQopZzyOg", + _ZNK3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayer14getCustomData1Ev) +STUB("Y1JygxqZatI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEE7add_refEv) +STUB( + "Y1K9dD5bnVE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEC1EPNS2_10LibContextE) +STUB("Y1LY77EZoRg", + _ZN3sce2Np9CppWebApi7Matches2V119AdditionalStatisticC2EPNS1_6Common10LibContextE) +STUB( + "Y1Mt633x+6Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEE11release_refEv) +STUB("Y1NFFZmeFVw", mono_threads_get_default_stacksize) +STUB( + "Y1NV2AQplNk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEE11get_deleterEv) +STUB("Y1Os0IoOlcw", JVM_StartThread) +STUB("Y1Qvs8BdZio", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEC2ERS7_) +STUB("Y1RR+IQy6Pg", _ZdaPvmSt11align_val_t) STUB("Y1WkAv+vINM", sceHidControlInit) STUB("Y1WxX7dPMCw", sceGameLiveStreamingStartSocialFeedbackMessageFiltering) +STUB("Y1jcc0M5190", mono_aot_Sce_Vsh_Sl2_Sl2Clientplt) STUB("Y1kxYyW+dIk", sceRemoteplayNotifySubmitCode) STUB("Y1nEpkCieOY", sceKernelLoadStartModuleInternalForMono) STUB("Y1upNpVk2bU", scePlayReadyApiInitializeInitParams) +STUB( + "Y2-mtcyXjFA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEEeqERKS7_) +STUB("Y21PJ8XjrzQ", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging24GameDataMessageThumbnailEE3setEv) +STUB( + "Y23mapaL+H4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEC2EPKS8_) +STUB("Y248zKEoozw", _ZN7WebCore27PlatformMediaSessionManager28shouldDeactivateAudioSessionEv) +STUB("Y295ygEccqk", _ZN3sce2Np9CppWebApi6Common10LibContextC1Ev) +STUB( + "Y2AJknsUg1g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEC1Ev) +STUB( + "Y2D2TWa1-ys", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "Y2Jm+RcExHE", + _ZN7WebCore15ActiveDOMObject32queueTaskToDispatchEventInternalERNS_11EventTargetENS_10TaskSourceEON3WTF3RefINS_5EventENS4_13DumbPtrTraitsIS6_EEEE) +STUB( + "Y2JnZ1FS15M", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEneERKS9_) +STUB("Y2MJ-3r8EUg", + _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse21cancellationTimeIsSetEv) +STUB( + "Y2MdBA-Aslg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEED1Ev) +STUB("Y2OqwJQ3lr8", sync) +STUB( + "Y2Qs4tdKYmQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEC2EPS8_) +STUB("Y2RudaWFT7I", _ZN7WebCore15HTMLFormElement5resetEv) +STUB( + "Y2U5L8x7Cig", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEC2Ev) +STUB( + "Y2W62LZvRHA", + _ZN3JSC12profiledCallEPNS_14JSGlobalObjectENS_15ProfilingReasonENS_7JSValueERKNS_8CallDataES3_RKNS_7ArgListERN3WTF8NakedPtrINS_9ExceptionEEE) +STUB("Y2WxV8PjcjU", mono_aot_System_ComponentModel_Compositionunwind_info) +STUB("Y2aGkJqk3zI", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V16StatusEEC2EPS6_) +STUB("Y2jrKUVfyfI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEED1Ev) +STUB("Y2onZmaIziI", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi22ParameterToCreateMatchC1Ev) +STUB("Y2qIwrc5PnQ", _ZN7WebCore18ImageBufferBackend19sinkIntoNativeImageEv) +STUB( + "Y2rd4ClTeag", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEE11release_refEv) +STUB("Y2ymCmjoiMc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEEC1Ev) +STUB("Y3+SYo6BeGg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEED1Ev) +STUB( + "Y3+w4cV-pw8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE10setContextEPNS2_10LibContextE) +STUB( + "Y3-C6Yjn-Mk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEeqERKS9_) +STUB("Y30nckElO64", _ZN12video_parser17cVideoOperatorMp4C1EPKc) +STUB("Y35OA3dFPhk", + _ZN3sce2Np9CppWebApi14SessionManager2V118LeaderWithOnlineIdC2EPNS1_6Common10LibContextE) +STUB("Y3CFlALyKU8", _ZNK3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer12getAccountIdEv) +STUB( + "Y3EHXCmjgAE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEptEv) +STUB("Y3GaShDncwM", _ZNK3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead13onlineIdIsSetEv) +STUB( + "Y3HxfjHnow0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEE11release_refEv) +STUB( + "Y3MnOEGZrs0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEC1EPS8_) STUB("Y3T-sxogDg0", sceDeci4hDrfpFstat) +STUB("Y3Ws-mK8eOc", _ZN3sce7Toolkit2NP2V28Matching12RoomPingTimeC2ERKS4_) +STUB("Y3Z2695WJ8E", WKContextSetAlwaysUsesComplexTextCodePath) +STUB( + "Y3h4cEv4RRc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEmmEv) +STUB( + "Y3hBU5FYmhM", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERj) +STUB("Y3hsRCZODFs", nsnp_Fin) STUB("Y3lXfCFEWFY", sceAudioOutGetHandleStatusInfo) +STUB( + "Y3llxCk00VA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEneERKS9_) +STUB( + "Y3lmlc6qmfA", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionFactory6createEPNS1_6Common10LibContextEPKcNS5_12IntrusivePtrINS3_33ResponsePlayerSessionMemberPlayerEEEPNSA_INS3_13PlayerSessionEEE) +STUB("Y3loWkCBFRg", _ZN7WebCore11JSDOMMatrixD2Ev) +STUB("Y3ovKe32X2U", _ZN7WebCore10Pasteboard5writeERKNS_5ColorE) +STUB( + "Y3qunRQD+so", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEC1EPS8_) +STUB("Y3rMu7aArzA", WKDatabaseManagerGetOriginKey) STUB("Y3ymLfZ1384", sceAgcUpdatePrimState) +STUB("Y4+NqOIedOk", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend7FriendsEEC1Ev) STUB("Y4+czTsKo-g", sceBackupRestoreUtilGetRestoreProgress) +STUB( + "Y45T5YqAIhU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB( + "Y46ohFfmvR4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEmmEi) +STUB( + "Y48FE3cjnA4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEC2EPS6_PNS2_10LibContextE) +STUB("Y49Oiub8OWU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16TrophyPackTrophyEE3setEv) +STUB( + "Y4D9ia0D+T4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEC2EPKS8_) +STUB("Y4DduTtrY60", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V18Variable20lastUpdatedUserIsSetEv) +STUB( + "Y4IEbrhuJlI", + _ZNK3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectator6toJsonERNS_4Json5ValueEb) +STUB("Y4IO9qaYTeI", __ubsan_handle_float_cast_overflow) +STUB( + "Y4JGovShwJY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("Y4NRPm9miAc", OCSP_resp_count) +STUB( + "Y4QdZJNnGAg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("Y4SgSg-COm4", ucsdet_setDeclaredEncoding_67) STUB("Y4UKK0ylUPY", ScePsmMonoSecuritySetCoreClrPlatformCallback) +STUB("Y4WQlvU72XY", JVM_CompileClasses) +STUB("Y4WT1dmgDUM", _ZN9Inspector22InspectorDebuggerAgent17scriptDebugServerEv) +STUB("Y4XVjnscbgw", + _ZN23sceMetadataReaderWriter20LoadedParserInfoList13acquireParserEjjPPKNS_10ParserInfoE) +STUB( + "Y4alEw-ubBo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "Y4eLfPsfv2w", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEptEv) +STUB("Y4fJS3W1guo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEC2Ev) +STUB( + "Y4fimtkhk4Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEE6assignEPS7_PFvS9_EPNS2_10LibContextE) +STUB("Y4p7dZLQgDQ", _ZNK3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayer11getPlatformEv) +STUB("Y4pGsTIQ3cI", jpeg_natural_order7) +STUB("Y4vWmmTKoLM", _ZN7WebCore21UserContentController20removeAllUserContentEv) +STUB( + "Y4x52Sh09IE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEE7add_refEv) STUB("Y4y2+Wmu5xk", sceVisionManagerGetCalibrateTrackingLedInfo) +STUB( + "Y5+ET6w8iVg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEED2Ev) +STUB( + "Y5+YfSDL5j0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEC1EPS8_) +STUB("Y5AwJLqRtOE", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE8capacityEv) +STUB("Y5ChdsxEESU", EVP_DigestVerifyInit) +STUB("Y5DhuDKGlnQ", log2) +STUB( + "Y5FwDcdBCdk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEC2Ev) +STUB("Y5H1OebYTbU", _ZN3sce7Toolkit2NP2V210Tournament25BracketInformationOfMatchC2Ev) +STUB( + "Y5Jhq5zHzvQ", + _ZN3sce2Np9CppWebApi6Common23UpDownStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("Y5LV8ogfFr4", mono_aot_ReactNative_Components_Vshplt_end) +STUB("Y5Nq2oQY5O4", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEED2Ev) STUB("Y5R5Ogfbk68", sceNpTrophySystemWrapDebugUnlockTrophy) +STUB( + "Y5S9ubVYJiQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEmmEv) STUB("Y5U66nk0bUc", sceUserServiceGetGlsCameraBgFilter) +STUB("Y5YAhR330PU", _ZN3sce2Np9CppWebApi13InGameCatalog2V515ContainerRating10unsetScoreEv) +STUB("Y5eglu1FrsE", _ZN3sce2np13NpAccessToken5ClearEv) +STUB("Y5gf6j83DE8", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V113ErrorResponse8getErrorEv) STUB("Y5go+ha6eDs", sceUsbdDetachKernelDriver) +STUB("Y5jkiqu3QL0", _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15ErrorD2Ev) +STUB( + "Y5miljnycaI", + _ZN9Inspector22AuditBackendDispatcherC2ERNS_17BackendDispatcherEPNS_29AuditBackendDispatcherHandlerE) +STUB("Y5mraOUblZE", + _ZN3sce2Np9CppWebApi11UserProfile2V111PresenceApi28ParameterToGetBasicPresencesC2ERS5_) +STUB("Y5pqmZuI9KA", _ZNK7WebCore11MediaPlayer8hasAudioEv) +STUB("Y5sbsRjqa70", ubiditransform_close_67) +STUB( + "Y5tfyXoHWNs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEE11get_deleterEv) +STUB("Y5uSKFr3-zw", _ZN7WebCore11MathMLNames11maxsizeAttrE) STUB("Y5zgw69ndoE", sceUserServiceGetMousePointerSpeed) +STUB("Y60Bo0XmM1M", _ZN3sce2Np9CppWebApi6Common6VectorIdE8pushBackERKd) +STUB("Y638D7al2DQ", _ZThn88_N7WebCore14XMLHttpRequestD0Ev) +STUB( + "Y68k+3DM4l0", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEiRNS2_10LibContextEPT_m) +STUB("Y6ASJpCgb90", mono_threads_exit_gc_safe_region_unbalanced) +STUB("Y6HgZMlmutM", _ZN7WebCore4Page35resumeActiveDOMObjectsAndAnimationsEv) +STUB("Y6L+KP-hG5c", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed12SharedVideosEE5resetEv) +STUB( + "Y6N6wuI8uV8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEED2Ev) +STUB("Y6OT8SQVLeg", g_string_append_printf) +STUB("Y6PHykAxGfg", WKContextClearLegacyPrivateBrowsingLocalStorage) +STUB("Y6Sl4Xw7gfA", __cxa_get_exception_ptr) +STUB( + "Y6T18J3t6Bk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEC2ERS7_) +STUB( + "Y6Vb+3i2NWQ", + _ZN7WebCore15ContextMenuItemC1ENS_19ContextMenuItemTypeENS_17ContextMenuActionERKN3WTF6StringEbb) +STUB("Y6X+JzzRLAE", JNU_ThrowStringIndexOutOfBoundsException) +STUB("Y6ZY-QEwOwg", g_malloc) +STUB( + "Y6dYLX5WRJU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEC1Ev) +STUB("Y6fbwfOY3P0", _ZN15AbstractStorage18DailymotionServiceD2Ev) +STUB("Y6k6Srv8y+g", mono_aot_Sce_Vsh_RequestShareStorageWrapperunbox_trampolines_end) +STUB("Y6ky5K9t+fo", _ZN3sce3Xml3Dom8NodeListC2Ev) +STUB( + "Y6leGQ9X0Z4", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC2Ev) +STUB( + "Y6ngMkV9Me4", + _ZNK3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsTouchResponseBody6toJsonERNS_4Json5ValueEb) +STUB("Y6p0OVE1LWQ", vzone_getOffset_67) +STUB( + "Y6wuGuv3cOA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEEC1Ev) STUB("Y797Sw9-jqY", sceNpAppInfoIntAbortRequest) +STUB("Y7B0vc8885c", _ZN2GK9PlayerPSND0Ev) STUB("Y7L7nUSz4+A", sceNpGriefReportReadJsonFile) +STUB("Y7QXcOWtIB4", _ZN3sce2Np9CppWebApi14SessionManager2V112JoinableUserD2Ev) +STUB("Y7U1yt1DVFY", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetail7setviewENS5_4ViewE) +STUB("Y7YAkiFozCE", mono_btls_x509_chain_get_certs) +STUB( + "Y7Zga2qP59Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE21intrusive_ptr_sub_refEPS9_) +STUB("Y7aJ1uydPMo", realloc) +STUB( + "Y7b8xrkZUNo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEE7get_refEv) +STUB("Y7cMrHHJWiY", _ZN7bmalloc5Cache28tryAllocateSlowCaseNullCacheENS_8HeapKindEmm) STUB("Y7doyvjejkw", sceClPthreadCreate) +STUB("Y7f+qBjKxdo", _ZN3sce2np10Cancelable4InitEv) +STUB("Y7kPU5plvt4", _ZN9Inspector25NetworkFrontendDispatcherC1ERNS_14FrontendRouterE) +STUB( + "Y7n93fo38b8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEED2Ev) +STUB("Y7novemfu4A", _ZN3sce7Toolkit2NP15AppSTLAllocatorItEC1Ev) +STUB("Y7pdbchLoHc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEppEv) +STUB( + "Y7rXffS0kh4", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119PlayStylePropertiesC1EPNS1_6Common10LibContextE) +STUB("Y7wh0NNE1e4", u_getUnicodeVersion_67) +STUB("Y7ybAoS4n64", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEEaSERS6_) STUB("Y83n-gwogPo", sceCustomMusicCoreSetSystemAudioVolume) +STUB("Y879TXVjjbE", _ZNK3sce2Np9CppWebApi6Common6VectorIjE5emptyEv) +STUB("Y8I-XdZMnUw", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku12unsetEndDateEv) +STUB( + "Y8NEzdjmYNw", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody22getDisableSystemUiMenuEv) +STUB("Y8PKTmTiPiY", + _ZN12video_parser17cVideoProfilerMp420_createThumbnailInfoEjPNS_13VpMediaInfo_tE) +STUB( + "Y8SwlOdZ50c", + _ZN3JSC8JSObject30putDirectNativeIntrinsicGetterERNS_2VMEPNS_14JSGlobalObjectENS_10IdentifierENS_14NativeFunctionENS_9IntrinsicEj) +STUB("Y8YJJFju5jw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEE7get_refEv) +STUB( + "Y8e2rpqZ3iI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEeqERKS9_) +STUB("Y8fLhUHCOI8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEE11release_refEv) +STUB("Y8fTz1oPOf0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEE3getEv) +STUB("Y8jBCCshu+0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEC1ERKS7_) +STUB( + "Y8mWqQfBG3U", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseC2EPNS1_6Common10LibContextE) STUB("Y8onQYjuvOU", sceLncUtilSuspendApp) +STUB("Y8p7gavyxWc", _ZN8meta_gen11MsvPromoter25determineDefaultTitleInfoEv) +STUB( + "Y8ww+newDeU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "Y8xJ2hpqveA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEEcvbEv) +STUB("Y92VhkON2E4", Java_java_lang_ClassLoader_registerNatives) +STUB( + "Y93FzyPFqu0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEEC1EPS6_PNS2_10LibContextE) +STUB( + "Y97V89hUbtg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEC1ERS7_) +STUB( + "Y98X5zbZ1ms", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129MatchCompletionRateProperties18setConfidenceScoreERKi) +STUB("Y9C9GeKyZ3A", _ZTVSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE) +STUB( + "Y9M7y4ezPM8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEED2Ev) +STUB("Y9OWNvuSVJg", WKBundlePageClose) +STUB( + "Y9PAb00KlJA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEppEi) +STUB("Y9RKc-A3HCc", _ZNKSt9basic_iosIcSt11char_traitsIcEE3tieEv) +STUB("Y9SIVGvL-80", _ZN9Inspector15ScriptArgumentsD2Ev) +STUB( + "Y9VhUVobweo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEaSERKS7_) +STUB( + "Y9aRAORMNak", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE5beginEv) +STUB( + "Y9c-Vyz2t1A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEEC2ERSA_) +STUB( + "Y9kHHGtrmB4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEaSERKS9_) +STUB( + "Y9rZvthj3LM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEmmEv) +STUB( + "Y9sIfz+9Q4c", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEeqERKS9_) STUB("Y9soJc90skA", scePerfPmcGetCounterSelf) +STUB("Y9vSvWOd6x4", _ZN3sce2Np9CppWebApi7Matches2V120ResponseInGameRoster12unsetPlayersEv) +STUB("YA0r4LCkfeY", sendfile) +STUB( + "YA1-8tpwIiA", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10setString2EPKc) +STUB("YA3vrCwlD54", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Wordfilter16SanitizedCommentEE12deepCopyFromERS7_) +STUB("YAEZT2sGPBo", ufmt_getArrayLength_67) +STUB( + "YAFOYoXYoZk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "YAH3LlgFRkM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEEaSERKSA_) STUB("YALqoY4aeY0", sceNetBweClearEventIpcInt) +STUB( + "YAMQfYfqwAQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE8capacityEv) +STUB( + "YAN5HBw288c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "YAQD6z+pMds", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("YAgyq1ct9LE", + _ZN7bmalloc29StaticPerProcessStorageTraitsINS_13HeapConstantsEE7Storage7s_mutexE) +STUB( + "YAkwp-0MODI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEEdeEv) +STUB("YAmB48F6my0", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V18RelationEEeqERKS7_) +STUB("YAoMMSxEIkE", _ZNK7WebCore23FrameLoaderStateMachine15firstLayoutDoneEv) +STUB("YAr5INcJluc", _ZNK3WTF10StringView25endsWithIgnoringASCIICaseERKS0_) +STUB("YAriP-FIVoc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE8copyFromERKS7_) +STUB("YAtVGPtThx8", + _ZNK3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody13getUpdateModeEv) +STUB( + "YAwkwlZa8ow", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEE11release_refEv) +STUB("YB3XBmlN7VY", WKHitTestResultCopyAbsoluteMediaURL) +STUB( + "YBGAMvRfRHM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE5beginEv) +STUB("YBLQHkY3ZLo", _ZN7WebCore8SVGNames12calcModeAttrE) +STUB("YBPm9rUjtYA", _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfileC2EPNS1_6Common10LibContextE) +STUB("YBRHNH4+dDo", __isnanl) +STUB("YBSuJmexDRc", il2cpp_get_exception_argument_null) STUB("YBaw2Yyfd5E", sceFontGraphicsRelease) +STUB("YBdB17og2MY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEC1Ev) STUB("YBiIdcDPrxs", sceShareFeaturePermit) +STUB("YBkEmv18woc", _ZN7WebCore23ScaleTransformOperationD2Ev) +STUB( + "YBrHlqAp9Co", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEEaSERSA_) +STUB("YBrp9BlADaA", _ZNSt23_Generic_error_categoryD0Ev) +STUB( + "YBvcWpFmb-Q", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi42ParameterToPutGameSessionsSearchAttributes13isInitializedEv) +STUB("YBx9uA2TdEs", Java_java_lang_Throwable_fillInStackTrace) +STUB("YBxUrFjgcQs", _ZN3sce2Np9CppWebApi11UserProfile2V15ErrorD2Ev) +STUB( + "YC0LYQ61WFo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEE7add_refEv) STUB("YC3k6Hcy9+E", sceNpManagerIntLoginSetUserId) STUB("YC595317HbM", sceVdecwrapQueryDecoderMemoryInfo) +STUB("YC65YX-S2Zg", mono_aot_Sce_Vsh_Np_Managerunbox_trampoline_addresses) +STUB( + "YCCFV3KWJao", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEEC1EPS8_PNS2_10LibContextE) +STUB( + "YCD3G4aUR-4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEEC1ERSA_) +STUB("YCG+e9qLpdo", ucnv_fromAlgorithmic_67) +STUB("YCH6ueezfBQ", put_unwind_info) +STUB("YCN0QrUqO04", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEmmEv) +STUB("YCOZ80HgcTQ", JSValueMakeBoolean) +STUB("YCR6TK+r5C0", _ZN7WebCore8IntPointC2ERKNS_7IntSizeE) +STUB("YCSHm7zyma4", mono_array_element_size) +STUB("YCSRE4f3Ezs", _ZN7WebCore11HTMLElement13setSpellcheckEb) +STUB("YCV5dGGBcCo", sem_wait) +STUB("YCVxOE0lHOI", _LXp_subx) +STUB( + "YCW9Oj9WTDU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE6resizeEj) +STUB( + "YCaw2P6gL0w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEE11get_deleterEv) +STUB( + "YCcrhV-qWJ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEEaSERSA_) +STUB("YChO9-jTzns", _ULx86_64_Iextract_dynamic_proc_info) +STUB("YCk8PjGgg3Y", _ZNK3sce7Toolkit2NP9Utilities6FutureIiE3getEv) +STUB("YCouauONvKI", JVM_GetSystemPackage) +STUB( + "YCqCEJH6EDI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEdeEv) +STUB("YCqM6M4hxG4", _ZN7WebCore17PageConsoleClientdaEPv) +STUB("YCvg6beVFLA", udtitvfmt_resultAsValue_67) +STUB("YD4g7+Vftmk", JVM_GetCPFieldModifiers) +STUB("YD6Scnc17a8", + _ZThn16_N9Inspector22InspectorDebuggerAgent28setPauseOnDebuggerStatementsERN3WTF6StringEb) +STUB("YD77iANnIzg", _ZN3WTF10StringView16GraphemeClusters8IteratorppEv) +STUB("YD8Fn1nmBEI", mono_aot_Sce_Vsh_FileSelectorplt) +STUB("YD9sqo0Q620", aio_error) STUB("YDDHD6RP4HQ", sceNpAsmCreateConnection) STUB("YDFR0dDVGAg", sceAjmInstanceExtend) STUB("YDGzScNx5qc", sceUserServiceSetGlsOverlayPosition) +STUB("YDNFh8ey+n4", _ZN9Inspector19InspectorAuditAgent21injectedScriptManagerEv) +STUB( + "YDOi4ILCAh8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("YDQxE4cIwa4", _ZNSt10filesystem11_Remove_dirEPKc) +STUB("YDRhyNW6N-w", uprv_realloc_67) +STUB("YDUKJ-yIjaE", _ZN3sce3Xml3Dom15DocumentBuilder16setResolveEntityEb) +STUB( + "YDXqhErkNDc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEE5resetEPS9_) +STUB( + "YDZAajA5oc0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEE5resetEPS9_) +STUB( + "YDd7n3c95Os", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEC2EPS6_PNS2_10LibContextE) +STUB( + "YDdKx0MQmdU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEaSERKS7_) STUB("YDg-SQj66AQ", sceKernelFlock) +STUB("YDhItZFEgvY", uloc_acceptLanguageFromHTTP_67) +STUB("YDnLaav6W6Q", _Stoulx) +STUB("YDpM-vQ8XDI", + _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead16matchmakingIsSetEv) +STUB("YDtrVohLYdQ", Java_com_sony_gemstack_org_havi_ui_HBackgroundImageDecoder_displaySurfaceStereo) +STUB("YDxLejOTKHs", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getMixerLevel) +STUB( + "YDxtGHWTiC4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEED1Ev) +STUB("YDzt8ouKxT0", monoeg_g_slist_delete_link) +STUB( + "YE+vuFpIFXo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE3endEv) +STUB( + "YE2Xlvad4ng", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEEC2ERSA_) +STUB("YE3MRmCjo0Y", WKPageGoToBackForwardListItem) STUB("YE4dbtbz6OE", sceNpUniversalDataSystemEventPropertyObjectSetInt32) +STUB("YE5ube8wC4w", WKSecurityOriginCopyDatabaseIdentifier) +STUB("YE9F6cbO39A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEdeEv) +STUB( + "YEC6Pcgh-9Q", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEdeEv) +STUB( + "YECODxhJAVM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("YEDrb1pSx2Y", _ZNSt17bad_function_callD1Ev) +STUB("YEGbElW0Bos", WKPreferencesSetLargeImageAsyncDecodingEnabled) +STUB("YEIxDXDA-w0", __tsan_vptr_read) +STUB("YEJuAOKlI28", _ZN3sce7Toolkit2NP21InvitationInfoRequestC1Ev) +STUB("YEKnFa2DgpI", mono_context_get_id) +STUB("YEKoSHIvP70", _ZN9Inspector14InjectedScriptD2Ev) +STUB("YEL7H7n4jtg", + _ZN7WebCore6JSNode15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB("YEdPdZJNx2g", _ZN6WebKit17ChildProcessProxyD2Ev) STUB("YEfU5l4UYtQ", sceCesRefersUcsProfileJisX0201) +STUB( + "YEgwftsmJVI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEC1ERKS7_) +STUB("YEhJTd5XSyo", _ZN7bmalloc29StaticPerProcessStorageTraitsINS_9ScavengerEE7Storage8s_memoryE) +STUB("YEmNmQ-73DI", VerifyClassCodes) +STUB( + "YEomiEV1E7g", + _ZN9Inspector24RuntimeBackendDispatcher14getBasicBlocksElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("YEpgJCN9fAw", ubiditransform_open_67) +STUB("YEsPTntsTkk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE5clearEv) +STUB( + "YEx7EJdmj3U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "YEygZrZ7aVo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE21intrusive_ptr_sub_refEPS9_) +STUB("YEz6hdsCeWQ", _ZN3sce2Np9CppWebApi11Matchmaking2V110UserTicket8fromJsonERKNS_4Json5ValueE) +STUB("YEzx97WEAfs", _Z26sceRazorGpuThreadTraceInitP28SceRazorGpuThreadTraceParams) +STUB("YF8fb6sZvh4", _ZN3sce7Toolkit2NP2V28Matching4RoomC1Ev) +STUB("YF8yTf-L0vc", rgctx_fetch_trampoline_rgctx_26_p) +STUB("YFEYZzHHzi8", WKContextConfigurationCopyDiskCacheDirectory) +STUB( + "YFGBPgYjPGg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEEC1EPS8_PNS2_10LibContextE) +STUB( + "YFHymhuJ1M4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEmmEi) +STUB( + "YFLRlT2AncU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEixEm) +STUB( + "YFOY4nlHfyI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE21intrusive_ptr_add_refEPS9_) +STUB("YFT08Zm3+64", _ZThn16_N9Inspector22InspectorDebuggerAgent6enableERN3WTF6StringE) +STUB("YFXvTiInxk8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEED2Ev) STUB("YFYWOwYI6DY", sceNpTusGetFriendsVariableAsync) +STUB("YFYopWa9Pco", _ZTVN3PAL13SleepDisablerE) +STUB( + "YFYowQqa+bM", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB( + "YFaWKV7q8Y4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEneERKS9_) +STUB( + "YFdc-bfZDiU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEEC1ERKSA_) +STUB("YFk0XUFXDX4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEaSERKS7_) +STUB("YFlXC+lRh0A", wpe_key_code_to_unicode) +STUB("YFmdb-fLGDE", _ZN7WebCore4Page19addLayoutMilestonesEj) +STUB("YFnbd+CZrxg", _ZN3JSC19JSNativeStdFunction6s_infoE) +STUB("YFoOw5GkkK0", hypot) +STUB( + "YFpO8WTwgEA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEC1EPS7_PNS2_10LibContextE) +STUB("YFqTNZQwPwM", _ZNK7WebCore6Quirks49isTouchBarUpdateSupressedForHiddenContentEditableEv) +STUB( + "YFsZLfhrWKA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEaSERKS9_) +STUB("YG0gjZUTjJk", _ZN3NTF17URLRequestHttpJob3urlEv) +STUB( + "YG0y+39Wa5c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEEC1ERSA_) +STUB("YG3DR7BiShg", _ZN3WTF13StringBuilder12appendNumberEi) STUB("YG5OENZ6-Do", sceBgftServiceIntDownloadDebugDownloadBgftEnvFile) +STUB("YG5a2oc5yds", _ZN10MsvUpdaterD2Ev) +STUB("YG5xSqzt8tQ", + _ZNK7WebCore30InvertLightnessFilterOperation21inverseTransformColorERNS_15FloatComponentsE) +STUB("YG8LIyZq7hg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEE11release_refEv) +STUB("YGF3QRMwOME", _ZN7WebCore4PathC1ERKS0_) +STUB( + "YGJD12v+iQ4", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("YGPQ2f427zQ", _ZN9Inspector18IdentifiersFactory9requestIdEm) +STUB("YGPopdkhujM", _ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1Em) +STUB( + "YGQ5opdiqDE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEC1EPS8_) STUB("YGRDoLmH2tk", sceVideoRecordingGetInfoByHandle) +STUB("YGVFue2806s", JVM_GetFieldAnnotations) +STUB( + "YGYrU8TmNxc", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer54getpostPlayerSessionsSessionIdMemberPlayersRequestBodyEv) +STUB( + "YGa6LSC9mr0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEmmEi) STUB("YGdliBvwjzo", sceCesUhcToUtf32le) +STUB( + "YGhoDqLhTaY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEplEm) +STUB("YGm7Vn3fkbk", getnameinfo) +STUB( + "YGqaWP8tl2M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE8pushBackERKS8_) +STUB( + "YGroIngFHuI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEptEv) +STUB( + "YGsIVSdCfI4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "YGsuAPHTNAI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEE5resetEPS6_) +STUB("YGvhmOrMKVk", _ZN7WebCore17JSDOMGlobalObject13visitChildrenEPN3JSC6JSCellERNS1_11SlotVisitorE) STUB("YGvqDPyza18", sceLibSecureHashGetDigestSize) +STUB("YGz2aihwuUk", _ZN3sce2Np9CppWebApi6Common6Binary21intrusive_ptr_sub_refEPS3_) +STUB("YH-MFaHAyyg", _ZN7WebCore11MediaSampleD2Ev) +STUB( + "YH3wpSWAiuc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEppEv) +STUB("YHDfqIv37Wo", _ZN3sce7Toolkit2NP2V210Tournament12MatchDetailsC2ERKS4_) +STUB("YHG4TtOxLmw", WKAXObjectCopyDescription) +STUB("YHNEgBCSL2o", _ZN3sce2np10JsonNumber5ClearEv) +STUB( + "YHQGHsZskMo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEE7get_refEv) +STUB("YHRZx51rXYg", + _ZN3sce2Np9CppWebApi13InGameCatalog2V520ContentRatingFactory7destroyEPNS3_13ContentRatingE) +STUB( + "YHWO7KQ3mvU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "YHYfyQXdOLc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEptEv) +STUB("YHfG3-K23CY", _ZTVSt22_Future_error_category) +STUB("YHhQADlUvVM", _ZN3sce7Toolkit2NP2V212ActivityFeed11SharedVideo12VIDEO_ID_LENE) +STUB("YHhpH40bMpQ", il2cpp_raise_exception) +STUB( + "YHhrnLe4FMg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEE7add_refEv) +STUB( + "YHiHnSKFNCI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEE11release_refEv) +STUB("YHjoCx7QaOs", _ZN3WTF15AtomStringTableD1Ev) +STUB("YHlLk3A2wec", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEmmEv) +STUB("YHoUqFRap2A", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Publisher9nameIsSetEv) +STUB("YHshPHlRYjg", _ZNK7WebCore8Position24parentAnchoredEquivalentEv) +STUB( + "YHtGwhJ9-UU", + _ZN12video_parser13cVideoMetaVWG19_setArtworkSizeInfoEPNS_12VpMetadata_tEPNS_13cVideoMetaMP418VpThumbnailInfoMP4E) +STUB("YI0KKylYwYs", mono_gc_wbarrier_set_field) +STUB("YI6BMOI-raE", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy15TrophyPackGroupEED2Ev) +STUB("YI6OasFsCCs", mono_aot_Sce_Vsh_UpdateServiceWrapperunwind_info) STUB("YIFDiAInu7Y", sceMatAgcRegisterResource) +STUB( + "YIJRLPaLv7g", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody32comparedLastUpdatedDateTimeIsSetEv) +STUB("YIdHB5ZqqbA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEEC2EPNS2_10LibContextE) +STUB("YIhn+OJcAXY", _ZN7WebCore11DisplayList8SetStateD2Ev) +STUB( + "YIoaVBTsw8c", + _ZN7WebCore4FontC1ERKNS_16FontPlatformDataENS0_6OriginENS0_12InterstitialENS0_10VisibilityENS0_19OrientationFallbackE) +STUB("YIq6hXTO42E", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_20ChallengeRecvDetailsEEC2Ev) STUB("YIvqqvJyjEc", sceNpUnregisterStateCallbackForToolkit) +STUB("YIzAGWKFBvs", _ZN3JSC11checkSyntaxEPNS_9ExecStateERKNS_10SourceCodeEPNS_7JSValueE) +STUB("YJ+0cvknYu8", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12getInteger10Ev) +STUB("YJ+fb7ImoBo", + _ZNK3sce2Np9CppWebApi14SessionManager2V118LeaderWithOnlineId6toJsonERNS_4Json5ValueEb) STUB("YJ0cMAlLuxQ", sceUsbdGetMaxPacketSize) +STUB("YJ1jvDZ7x2E", _ZN7WebCore14CredentialBaseC1Ev) +STUB( + "YJ4ZuNFxIIA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEmmEv) STUB("YJ7JscWubcU", sceKernelAddGpuExceptionEvent) +STUB("YJ7r9QVu+Us", _ZN7WebCore19HTMLTextAreaElement8setValueERKN3WTF6StringE) +STUB( + "YJ8Hfpzb7Us", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE4sizeEv) +STUB("YJEa-ShxPyM", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi24ParameterToReportResultsaSERS5_) +STUB("YJGFD+KZ-LQ", mono_aot_Sce_PlayStation_PUIPlatformmethod_addresses) +STUB("YJIA4RMKwUc", unorm_previous_67) +STUB( + "YJPwiLBhne0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEneERKS9_) +STUB( + "YJRTrcDGoME", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "YJRyQdVSEAY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEaSERKS7_) +STUB("YJS1irf2+lY", _ZN3sce7Toolkit2NP2V210Tournament18OneVsOneRankResultD2Ev) +STUB("YJY1OZgqRuY", _ZN12video_parser13cVideoMetaVWG12_getPriorityENS_9VP_LANG_eES1_) STUB("YJYjBoMFRXY", sceMoveTrackerCalibrateYaw) +STUB("YJdV7kZrHCo", _ZNSt15basic_streambufIwSt11char_traitsIwEE8overflowEi) +STUB("YJp-6AZoYfM", mono_assembly_load_from_full) +STUB( + "YJq6m-Qm1xg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEC2EPNS2_10LibContextE) +STUB( + "YJr-1hlE4jY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE6resizeEj) +STUB( + "YJsazr3AdMs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEC2EPS6_PNS2_10LibContextE) +STUB( + "YJslzBmjiIw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEEaSERKSA_) STUB("YJtKLttI9fM", sceGameUpdateInitialize) +STUB("YJw-wgMFs9U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEEC1Ev) +STUB("YJxbbli-KAM", _ZNK7WebCore16BlobRegistryImpl11filesInBlobERKN3WTF3URLE) +STUB("YK+c8n2US1E", WKBundlePageWillEnterFullScreen) +STUB("YK03gBzYdg8", rgctx_fetch_trampoline_rgctx_67) +STUB( + "YK3FRU7zBZo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEptEv) +STUB("YK76WadcCQI", _ZN7WebCore9TimerBaseD0Ev) +STUB("YKAN9NXOUy4", rgctx_fetch_trampoline_rgctx_109_p) +STUB( + "YKCrXCBHk58", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEC1Ev) +STUB("YKFJg1QgF4Y", + _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi24ParameterToReportResults10getmatchIdEv) +STUB( + "YKLLU7aElnk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEEC1Ev) +STUB("YKRSHNeOYF4", _ZN3sce7Toolkit2NP2V29Challenge7Request13SendChallenge18MAX_NUM_RECIPIENTSE) +STUB("YKRSVD5BhhU", _ZN7WebCore16valueToUSVStringERN3JSC14JSGlobalObjectENS0_7JSValueE) STUB("YKT49TOLQWs", sceKernelJitMapSharedMemory) +STUB("YKUfGIuT6hg", _ZN7WebCore9HTMLNames10addressTagE) +STUB("YKVixVJQoXU", + _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody18setStartSerialRankERKi) +STUB("YKXWNeVKbS8", + _ZN3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayer16setJoinTimestampEPKc) +STUB("YKbL5KR6RDI", fma) +STUB("YKbhUwwhktE", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEEC2Ev) +STUB("YKcmvOW6APA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEEdeEv) +STUB("YKfRyWrKGP0", mono_get_exception_method_access) +STUB("YKhRySE3Zxc", _ZNSt10filesystem16_Last_write_timeEPKcPlS2_) +STUB("YKkJF7Z7A34", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10CategoriesEE3getEv) +STUB("YKkXqeBiw3s", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V125FrequentlyMutedProperties10getInPartyEv) +STUB("YKlfHEDsaSs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEptEv) STUB("YKu2Eub+j94", scePssSoundPlayerUserCreate) +STUB("YKwPUXLyid0", _ZN7WebCore25getOutOfLineCachedWrapperEPNS_17JSDOMGlobalObjectERNS_4NodeE) +STUB( + "YKxKmmrhEQU", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEEiRNS2_10LibContextEPT_m) +STUB("YKz2oBW3ZkM", _ZN3sce2np12WorkerThreadC1EPNS0_9WorkQueueE) +STUB( + "YL1aAhIwqIw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "YL3sp2YIGfs", + _ZNK3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionMemberPlayer18nonPsnPlayersIsSetEv) +STUB("YL67CqoAxos", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku12endDateIsSetEv) +STUB("YL7i9hQ-9Hw", _ZN3sce7Toolkit2NP17MessageAttachmentC1Ev) +STUB("YL8YwG5Lsms", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEED1Ev) +STUB("YL917dn7tuI", + _ZNK3sce2Np9CppWebApi14SessionManager2V131ResponsePlayerSessionInvitation15getInvitationIdEv) +STUB("YL9jNFfwm5Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEaSERS7_) +STUB("YLEc5sPn1Rg", _Recip) +STUB( + "YLMeJotgOqo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "YLNlWd8qjc8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEplEm) +STUB( + "YLPVEL7KKcI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB("YLR+A614eOU", SSL_CTX_add0_chain_cert) +STUB("YLSTCl2QgrM", _ZNK7WebCore11MediaSample16getRGBAImageDataEv) +STUB("YLTGftleg3Y", _ZN7WebCore17isStartOfDocumentERKNS_15VisiblePositionE) STUB("YLXt-vGw4Kg", sceNpServiceCheckerIntCreateRequest) STUB("YLbhAXS20C0", sceSystemServiceGetAppType) +STUB( + "YLbmnxLLoSY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE5clearEv) +STUB( + "YLi1yJSpM0c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) STUB("YLinP6egkAw", sceCesRefersUcsProfileCp855) +STUB("YLnc4QnhtVI", _ZN7WebCore11MathMLNames9mstackTagE) +STUB( + "YLu+D4kXlvo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEdeEv) +STUB("YLz+Wqt+NIc", Java_java_lang_reflect_Array_getDouble) +STUB( + "YM1BcywNO6U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEcvbEv) +STUB( + "YM2wBZZsZ2o", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi20ParameterToJoinMatch19setjoinMatchRequestENS1_6Common12IntrusivePtrINS3_16JoinMatchRequestEEE) +STUB( + "YM9VwbY1-cY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEixEm) +STUB("YMAWUz8HtJ0", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error25unsetValidationConstraintEv) +STUB("YMAmjPlj8u8", _ZNK3sce2Np9CppWebApi12Leaderboards2V14User14accountIdIsSetEv) +STUB( + "YMBxN5ikX2w", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE5emptyEv) +STUB("YMCpUDCbSwM", il2cpp_class_has_references) +STUB( + "YMKwZlPiTKY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEC1Ev) +STUB("YMMD+HcxbOQ", u_memcmp_67) +STUB( + "YMNOVOOSPxU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEEptEv) +STUB("YMRlc1RzOQI", u_ispunct_67) +STUB("YMXMDRZhMl8", _ZN3JSC12GlobalJSLockC2Ev) +STUB("YMY6TV27CZs", il2cpp_method_get_return_type) +STUB( + "YMYQ6bLDcEU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "YMYZ-NoyDe8", + _ZN7WebCore9FrameView29setLayoutViewportOverrideRectEN3WTF8OptionalINS_10LayoutRectEEENS0_18TriggerLayoutOrNotE) +STUB("YMZO9ChZb0E", reallocf) +STUB("YMaBqMfLkEU", mono_aot_Mono_Data_Sqliteunbox_trampoline_addresses) +STUB("YMbRl6PNq5U", CA_MGMT_rawVerifyOID) +STUB("YMdfx4CK+Jo", _ZN7WebCore13NodeTraversal13deepLastChildERNS_4NodeE) +STUB( + "YMfvOz7pfZU", + _ZNK7WebCore9FrameView35convertFromContainingViewToRendererEPKNS_13RenderElementERKNS_9FloatRectE) +STUB("YMmEUO-ntpU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEEC1Ev) STUB("YMncbReoIU4", sceDebugIpmiGetServerKidListByDump) +STUB( + "YMoOvfzwafw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("YMuesZTyTl4", tcsetpgrp) STUB("YMxfNRx4DR4", sceLoginMgrServerDialogSetResult) +STUB("YMyEsDrQ7yY", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku23setDisplayOriginalPriceEPKc) +STUB("YMzdVVBE+oU", _ZN8meta_gen13JpegRetriever15ProcessJpegDataEii) +STUB("YN+iG-LhqWU", mono_aot_Sce_Vsh_VideoPlayerunwind_info) STUB("YN878uKRBbE", sceKernelMemoryPoolBatch) +STUB("YNE7yepUciw", WKPreferencesSetScrollingPerformanceLoggingEnabled) +STUB( + "YNSUj4ALKTc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEppEv) +STUB("YNT8fNzZ2Dw", coil_dlopen_native) +STUB("YNW0wFK31f0", _ZN3sce7Toolkit2NP15AppSTLAllocatorI16SceNpTusVariableE7addressERS3_) +STUB("YNcz43EFLg8", GCC_except_table49) +STUB("YNjmVsr47so", _ZNK3sce2Np9CppWebApi11Matchmaking2V18Location18gameSessionIdIsSetEv) +STUB("YNmg-z6cX5c", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEEC1Ev) STUB("YNoDjc1BPJI", sceSystemServiceLaunchUdsApp) +STUB("YNoMmLu3t7k", _ZNK7WebCore9FloatRect10intersectsERKS0_) +STUB("YNoOopkgmhw", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_20ChallengeRecvDetailsEE3getEv) +STUB("YNx4S96mF64", __asan_unpoison_stack_memory) +STUB( + "YNxyItKksbA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE4sizeEv) +STUB("YNyhPrsrVS4", _Z36VideoPlayerVcs_GetReadyStateForDebugi) +STUB("YNzNkJzYqEg", strncpy_s) +STUB("YO-+8p3GGzo", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11ProductInfoEED1Ev) +STUB("YO8ZpaSFoM0", _ZN3WTF11Persistence5CoderINS_12AtomicStringEE6encodeERNS0_7EncoderERKS2_) +STUB("YOCg+nfg0Sk", udat_getCalendar_59) +STUB("YODjvvt-jqs", JNU_IsInstanceOfByName) +STUB("YOGEsCbfQT8", _ZN8meta_gen13TiffRetriever8FinalizeEv) +STUB( + "YOHpSiXAS50", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "YOQ9ewdkOWQ", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "YOR1DNkYTUI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEEC1ERSA_) +STUB("YOUVPle0yqk", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend7FriendsEE19setCustomReturnCodeEi) +STUB("YOWh2dVgWV8", + _ZN15AbstractStorage18DailymotionContent6RenameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB( + "YOXt-ip-Sq4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEC2Ev) +STUB("YOhSigGtau4", uprv_isInfinite_67) +STUB("YOwMzBq2Gqg", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead18getNonPsnSupportedEv) +STUB( + "YP0zuh70f08", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEppEv) +STUB( + "YP7S9x-Ba50", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetInteger7Ev) +STUB("YPCoUIVSnPI", _ZN3JSC7Symbols15fromPrivateNameE) +STUB("YPE0HOq1C4c", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_21AbortGameDataResponseEEC2Ev) +STUB("YPE1upd3gRs", _ZNK7WebCore17HTMLSelectElement9listItemsEv) +STUB( + "YPGwUQu5P9g", + _ZN7WebCore19JSHTMLSelectElement15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB("YPIAioZJ3lc", era) +STUB("YPNqhQCRUS0", WKBundlePageFindString) +STUB("YPSbsFsVzUs", _ZNK3WTF9MediaTime12isIndefiniteEv) +STUB("YPY6kX1Vq2Y", _ZN3sce7Toolkit2NP2V27Ranking10UsersRanksC1Ev) +STUB( + "YPY7RJe9Emg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEC1Ev) +STUB("YPZRhrnAUH0", _ZNK3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResults7getRankEv) +STUB("YPZSbDa6nMU", _ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_10TimeRangesE) +STUB("YPmPj0yiv-Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE7popBackEv) +STUB("YPnEw0kxArM", _ZThn112_N7WebCore9DOMWindowD1Ev) +STUB("YPpeP+CFZUI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEdeEv) STUB("YPqj8Ky3WDY", sceFaceTrackerRegisterStopTrackingCallback) +STUB( + "YPrSorxuWJk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE10setContextEPNS2_10LibContextE) STUB("YPxkUDhgoNI", sceAmprAprCommandBufferResetGatherScatterState) +STUB("YPyYVEu-17g", _ZNK9Inspector15AsyncStackTrace9isPendingEv) +STUB("YPz6ArouTjc", _ZN23sceMetadataReaderWriter15ParserInterfaceC2ERKS0_) +STUB("YQ+Umguo+lw", fuse_fs_destroy) +STUB("YQ0navp+YIc", puts) +STUB( + "YQ2HvLLZGX8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEE5resetEPS6_) +STUB( + "YQ2krT9FYEI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE8pushBackERKS8_) +STUB("YQ3ZHtUvdAk", _ZNK3sce3Xml3Dom8Document10getDocRootEv) STUB("YQ7-z4zFWok", sceNpAsmClientGetGameNpTitleToken) +STUB("YQC5ZjGfd+A", nsnp_DecryptWithIV) +STUB("YQEg-76vfzE", WKContextGetIconDatabase) +STUB( + "YQH0lX41G8M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEppEi) +STUB( + "YQLQ2SA9bfw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE8capacityEv) +STUB( + "YQMAykYdbEE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEppEv) +STUB("YQNBKboJx64", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE3endEv) +STUB("YQOfxL4QfeU", mprotect) +STUB("YQRWoaNNiWM", WKPreferencesSetWebSecurityEnabled) +STUB("YQRhphz9tIQ", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17SetGameDataResultEE19setCustomReturnCodeEi) +STUB("YQTUOMqlO+I", + _ZN7WebCore17FrameLoaderClient29dispatchGlobalObjectAvailableERNS_15DOMWrapperWorldE) +STUB("YQZ9c5jMwJc", _ZN7WebCore22EmptyFrameLoaderClientC2ERKS0_) +STUB( + "YQZa-NlBwjg", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12Notification14NetStateChangeEE19setCustomReturnCodeEi) STUB("YQdBMeXFvso", sceMbusDumpModuleStateInfoAll) +STUB("YQvowss1aMI", jinit_arith_encoder) +STUB("YQxZc-vyRxQ", uprv_decNumberExp_67) +STUB("YR+3Yawi6rY", uregex_replaceAllUText_67) +STUB( + "YR8KcmDV4CM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEplEm) +STUB("YREfLD1wwT0", WKContextGetAccessibilityEnabled) +STUB( + "YRHdJNXXtQs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) STUB("YRPHqS8TcnI", sceRegMgrSetInitLevel) +STUB( + "YRPLZ4h9Jls", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEED1Ev) +STUB( + "YRPa70gEJ9Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEaSERKS9_) +STUB( + "YRSS7uE1W-4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEE21intrusive_ptr_sub_refEPS7_) +STUB("YRT+iMeJA94", _ZN3JSC12importModuleEPNS_9ExecStateERKNS_10IdentifierENS_7JSValueES5_) +STUB("YRXcfVupGJQ", _ZN3JSC7Symbols24isSetIteratorPrivateNameE) +STUB("YRaXiCamdsU", jpeg_write_coefficients) +STUB( + "YRdUVqsfnPE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE5clearEv) +STUB( + "YRdnLdRUBbY", + _ZN3sce2Np9CppWebApi7Matches2V126RequestMatchResultsFactory6createEPNS1_6Common10LibContextENS3_14ResultsVersionEPNS5_12IntrusivePtrINS3_19RequestMatchResultsEEE) STUB("YReND3Ewgj0", sceAutoMounterClientGetUsbDeviceList) +STUB("YRfnGuAB5gw", _ZNK7WebCore6Widget25convertFromContainingViewERKNS_7IntRectE) STUB("YRje5yEXS0U", sceNpTusGetMultiUserVariableAsync) +STUB( + "YRjolXPT2OM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE5beginEv) +STUB("YRlm9YSeOYE", WKConnectionSetConnectionClient) +STUB("YRo2l6rSWgE", Java_com_sony_bdjstack_javax_media_content_dripfeed_Player_playFrame) +STUB( + "YRq1DD-yhwY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEC1ERS7_) +STUB( + "YRua2F6-89U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEE7get_refEv) +STUB( + "YRwPz-6W2bk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE28getResponseInformationOptionEv) +STUB("YRwx+GrTPWA", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRateD1Ev) +STUB("YRzM++Z1MTw", _ZN7WebCore9HTMLNames11fieldsetTagE) +STUB("YS045R-CDdU", _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse17inGameRosterIsSetEv) +STUB( + "YS1z-wVhtT4", + _ZN3sce7Toolkit2NP8Matching9Interface27registerRoomMessageCallbackEPFvtNS1_23SessionMessageEventTypeEtPKvE) +STUB("YS6CTarAjOY", _ZN3WTF20equalIgnoringNullityEPNS_10StringImplES1_) +STUB("YS70c-3wL18", readIS) +STUB("YS9z7STX13s", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11TusVariableEEC1ERKS4_) +STUB( + "YSHMkBy7Mhg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEC2EPNS2_10LibContextE) +STUB("YSHRBRLn2pI", _writev) +STUB("YSI9gL8yfjo", vector_str_push) +STUB("YSJx5IKTaGI", _ZNK7WebCore15AffineTransform7inverseEv) STUB("YSNcXEI3HrQ", sceRnpsAppMgrSetUpdateUrl) +STUB( + "YSPHTQEV5Ns", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEEptEv) STUB("YSSecs7t4N0", ScePsmMonoRuntimeInvoke) +STUB("YSTUNjs1X-Q", _ZN7WebCore6toHSLAERKNS_5SRGBAIfEE) STUB("YSUOhyK9Jd4", sceNpSnsFacebookDialogClose) STUB("YSa0McV-ZIU", sceVisionManagerSetCallbackForUpdateCtrlCore) +STUB( + "YSal1fgS5ao", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEneERKS9_) +STUB( + "YSdiVB419bU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEC1EPKS8_) +STUB("YSgZ1GYkZVk", mono_aot_Sce_Vsh_Np_IdMapperunbox_trampolines_end) +STUB("YShMyaANbf8", _ZN7WebCore9CSSParserC2ERKNS_16CSSParserContextE) +STUB("YSi2PMczWE8", curl_easy_option_next) +STUB("YSoOCmkzSWE", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setSecondaryVideoFullScreen) +STUB("YSxSzqjijXw", _ZN3sce7Toolkit2NP2V24Core7Request16ThreadPropertiesC2Ev) +STUB( + "YT+31cL3Uss", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi44ParameterToPatchGameSessionsSearchAttributesC2ERS5_) +STUB( + "YT2CiZ6hInU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB("YT6i1runMgI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116JoinableUserTypeEEmmEi) +STUB( + "YT6qVREhBDk", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeader12getsessionIdEv) +STUB("YT9Frwuo2GA", il2cpp_property_get_flags) +STUB( + "YTEVn7ZvKSE", + _ZN7WebCore19JSHTMLSelectElement25getOwnPropertySlotByIndexEPN3JSC8JSObjectEPNS1_14JSGlobalObjectEjRNS1_12PropertySlotE) +STUB("YTEaxv48L9M", Java_com_sun_dvb_event_UserEventRegistry_keyCodeRegistered) +STUB("YTFDbpU4iO4", _ZN3sce2Np9CppWebApi13InGameCatalog2V59PublisherD2Ev) +STUB("YTJJtsvWfv4", WKPreferencesGetPluginSandboxProfilesEnabledForAllPlugins) +STUB("YTM5eyFGh2c", _ZNKSt11logic_error8_DoraiseEv) +STUB( + "YTP9fM-7U54", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEEcvbEv) STUB("YTQMY0RdykU", sceBgftServiceIntGetNotificationParam) +STUB("YTSk4TlH8ZA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEC1Ev) +STUB("YTSpNCfCpGU", _ZN7WebCore4Page32setMemoryCacheClientCallsEnabledEb) +STUB("YTXbepPCE0g", _ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody8getScoreEv) +STUB( + "YTZoHh2YCCk", + _ZN7WebCore21ComplexTextController14ComplexTextRunC1ERKN3WTF6VectorINS_9FloatSizeELm0ENS2_15CrashOnOverflowELm16EEERKNS3_INS_10FloatPointELm0ES5_Lm16EEERKNS3_ItLm0ES5_Lm16EEERKNS3_IjLm0ES5_Lm16EEES4_RKNS_4FontEPKDsjjjjb) +STUB("YTaCSIVc9DQ", _ZN7WebCore13GraphicsLayer11clearClientEv) +STUB("YTbneybUicI", _ZN7WebCore18ScrollingStateTreeD2Ev) +STUB("YTd6m0h6IYA", mono_aot_System_Data_Services_Clientjit_code_end) +STUB( + "YThcCQOnf-A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEE7add_refEv) +STUB("YTm-xrEm0Qo", _ZN7WebCore8SVGNames6dxAttrE) +STUB("YTokEsOM1x8", Java_sun_awt_DownloadedFont_getAvailableFontFaces) +STUB( + "YTp+WgX1XnA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEC1EPKS8_) +STUB("YTpcOp47W4Q", _ZNSt10_Ref_countIN15AbstractStorage14FacebookFolderEED0Ev) +STUB("YTulodi3g7o", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11EntitlementEEC1Ev) +STUB("YTx9NPfSmGo", _ZN3sce7Toolkit2NP2V27NpUtils7Request17CheckAvailabilityD2Ev) +STUB( + "YTxKunXM+Kg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEmmEi) +STUB( + "YU+aSBnwCQ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE3endEv) +STUB("YU-PxwZq21U", _ZN3sce2np4NpIdC1Ev) +STUB( + "YU17hrl0p-s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE10setContextEPNS2_10LibContextE) +STUB( + "YU2BYoASzSM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEED1Ev) +STUB( + "YU2JD3guiSc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEEcvbEv) +STUB( + "YU8H0r6TjhA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEED1Ev) +STUB("YU8fMg3NPIc", JVM_GetMethodIxExceptionTableEntry) +STUB("YUFXgWDC3cg", _ZN7bmalloc15IsoHeapImplBase14freeableMemoryEv) +STUB( + "YUGY28rxQIY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEppEi) +STUB( + "YUH2FjHcYto", + _ZN3sce2Np9CppWebApi14SessionManager2V131ResponseGameSessionMemberPlayerC1EPNS1_6Common10LibContextE) +STUB( + "YUHNxmt7LyE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE21intrusive_ptr_sub_refEPS9_) +STUB("YUJKD-uHj2U", mono_aot_Sce_Vsh_AppDbWrapperunbox_trampolines_end) +STUB("YUKO57czb+0", _CTinfo) +STUB("YUMHWSf3tbo", ShGetObjectCode) STUB("YUMJ3Foe2ds", sceDtcpIpGetHttpStatusCode) +STUB("YUO-mjqC1x4", rgctx_fetch_trampoline_mrgctx_118) +STUB("YUQU9VAxNNg", mono_aot_Mono_Dynamic_Interpreterplt_end) +STUB("YURQsTDPtWY", il2cpp_object_get_virtual_method) +STUB("YUS5v7ggIpw", _ZTVN9Inspector27DOMStorageBackendDispatcherE) +STUB("YUU0Q9XyjqE", _ZN9Inspector40ApplicationCacheBackendDispatcherHandlerC2Ev) +STUB( + "YUVfWCGfztY", + _ZN8meta_gen11MsvPromoter29setKeyValue_TBLV_VideoProfileENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB("YUVk+nsVGtE", _ZN7WebCore11PageOverlay20stopFadeOutAnimationEv) +STUB( + "YUalcAEHy2Y", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEdeEv) +STUB("YUdPel2w8as", _Tls_setup__WCostate) STUB("YUeqkyT7mEQ", sceAgcDcbSetFlip) +STUB( + "YUg4yRWUtTM", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V139ConnectionQualityWirelessMetricsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_32ConnectionQualityWirelessMetricsEEE) STUB("YUhBM-ASEcA", sceUserServiceGetImePredictiveTextEnabled) +STUB( + "YUptu24rxDE", + _ZNK7WebCore5Range17absoluteTextQuadsERN3WTF6VectorINS_9FloatQuadELm0ENS1_15CrashOnOverflowELm16EEEbPNS0_20RangeInFixedPositionE) +STUB("YUs-8GaT24U", _ZThn8_N6WebKit12ChildProcessD0Ev) STUB("YV+bnMvMfYg", sceAudioOutSysHdmiMonitorInfoIsSupportedAudioOutMode) +STUB( + "YV28oyc2QvE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEeqERKS9_) STUB("YV2CtE7qX8M", sceMoveTrackerGetState) +STUB("YV3JmyWF2dw", + _ZN3sce7Toolkit2NP11UserProfile9Interface7getNpIdEPNS1_9Utilities6FutureI7SceNpIdEEb) +STUB("YV6P+TiDj4E", mono_object_describe_fields) +STUB( + "YV6nOnBIdKw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEE3getEv) +STUB( + "YVDKFx9k+wY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEEC2ERKSA_) +STUB("YVFWOqJOCaw", rgctx_fetch_trampoline_mrgctx_121) +STUB( + "YVJh-zBxjtw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "YVKfOokJnaI", + _ZN3sce7Toolkit2NP8Sessions9Interface24getChangeableSessionDataEPKNS1_16NpSessionRequestEPNS1_9Utilities6FutureINS1_17MessageAttachmentEEEb) +STUB("YVKkO8PZ2DM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE4sizeEv) +STUB("YVN06vtBj+E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEE3getEv) +STUB( + "YVWAf8lqa+c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEC1EPS8_) +STUB("YVacrIa4L0c", _ZNSt14numeric_limitsIwE9is_signedE) +STUB("YVatZWy9sWA", _ZN3JSC7Symbols25putByValDirectPrivateNameE) +STUB("YVdIbH2PPsg", + _ZN7WebCore21NetworkStorageSession13ensureSessionEN3PAL9SessionIDERKN3WTF6StringE) +STUB("YVecTCYH9EA", _ZNK3WTF10StringView23convertToASCIIUppercaseEv) +STUB("YVerJp-GbDc", _ZN15AbstractStorage14TwitterServiceC1Ev) +STUB( + "YVtI7M-biWs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEppEi) +STUB( + "YVwt5GdnYhc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("YVz2o-q1RYE", _ZN3sce2Np9CppWebApi14ConnectAccount2V28PSNErrorD1Ev) +STUB("YVzLYJHwtC8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEC1ERS7_) +STUB("YVzY62z2uJ8", GCC_except_table492) STUB("YVzw4T1fnS4", sceUserServiceGetHmuBrightness) +STUB("YW09CP0Vrtw", _ZN3sce2np9HttpTrans24GetResponseContentLengthEPNS0_6HandleEPbPm) +STUB("YW0nCl9fJK0", psl_unregistrable_domain) +STUB( + "YW0pOliWGqQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("YW1tv-1DCUw", _ZN7WebCore12CSSStyleRule5styleEv) STUB("YW74P8vB69g", sceDevUsbWriteHostRaw) +STUB( + "YW8acc+Jm9w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEE11get_deleterEv) +STUB("YWAonY+kUEQ", _ZN3WTF10AtomString6numberEy) +STUB("YWD+zZlCA8k", _ZN7WebCore8Settings32setAsyncOverflowScrollingEnabledEb) +STUB( + "YWDn3qtbREY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("YWDtWnCl8YM", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product12getPlatformsEv) +STUB("YWItHEulIAI", glUniform4i) +STUB("YWOjuEzZ3Ic", _ZN4IPMI4impl11SessionImpl7destroyEv) STUB("YWQFUyXIVdU", sceKernelDeleteTimerEvent) STUB("YWT1GrcWuQs", sceBluetoothHidGetDeviceInfo) STUB("YWTKOju587o", sceAgcCondExecPatchSetCommandAddress) STUB("YWTpt45PxbI", sceNetDumpRead) +STUB("YWV8SDvPLos", _ZN3sce7Toolkit2NP2V23TSS7TssDataD1Ev) +STUB( + "YWW0eSOAgm4", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) STUB("YWftBq50hcA", sceSystemStateMgrStartVshAutoUpdateTimer) +STUB("YWgb7P-7GgA", _ZN3sce2Np9CppWebApi13InGameCatalog2V517ContentDescriptorD1Ev) +STUB("YWho700MbF0", ubrk_getRuleStatusVec_67) +STUB("YWi5nsiD7Gc", + _ZN15AbstractStorage10YoutubeAPI14SetAccessTokenERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) STUB("YWmKJ8pWEkw", sceUserServiceSetPbtcFridayHoursEnd) +STUB("YWmekLrvS8c", mono_aot_ReactNative_Components_Vshunbox_trampolines) +STUB("YWt5S4-cg9c", _ZN3sce2np6HandleD1Ev) +STUB( + "YWwhS2tMOw4", + _ZN3sce2Np9CppWebApi14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayer16unsetCustomData1Ev) +STUB("YWzr2rYk7YE", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadDataC2ERS5_) STUB("YX-64Vjk5oM", sceUserServiceSetPbtcTuesdayDuration) +STUB("YX4eHKXZFzM", _ZN7WebCore12PrintContext16isPageBoxVisibleEPNS_5FrameEi) +STUB("YX704TuXH+I", rgctx_fetch_trampoline_mrgctx_87) +STUB("YX79PZVH36g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEC2Ev) STUB("YX9dAus6baE", sceNpLookupWaitAsync) +STUB("YXBTe9981qE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE5emptyEv) +STUB("YXCKQKvsVqQ", + _ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody17getNpServiceLabelEv) +STUB( + "YXE-i11CJqQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB("YXGOaruQCpg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE5clearEv) +STUB("YXN2MQWUcQE", _ZN7WebCore13GraphicsLayerD2Ev) +STUB("YXNltAyO8wU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEE5resetEPS6_) +STUB("YXQ4gXamCrY", feupdateenv) +STUB("YXS0dwS00zo", _ZN3JSC7Symbols21copyWithinPrivateNameE) +STUB("YXTIbI-WYtE", WKURLRequestSetDefaultTimeoutInterval) +STUB("YXVCU6PdgZk", _ZNSt8_LocinfoD2Ev) +STUB( + "YXW8yUPU9E8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEmmEv) +STUB("YXXMdeJmxJw", _ZN15AbstractStorage14StorageManagerC2Ev) +STUB("YXaQLoEbvfk", _ZN3sce2Np9CppWebApi14SessionManager2V124GameSessionMemberForReadD2Ev) +STUB("YXafcK+Ys+I", + _ZNK3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallback8getimpIdEv) +STUB( + "YXcNoxF0DcA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEED1Ev) +STUB( + "YXnOmZXHEaI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE5beginEv) +STUB( + "YXr8RdMdQEM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEC1EPNS2_10LibContextE) +STUB("YXsRQTyGZeA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEixEm) +STUB("YXtF7mSQUvs", goby_DescribeActionPlay) +STUB("YXurEFgMlyY", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead15getNonPsnLeaderEv) +STUB( + "YXwmHDvFkPI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEptEv) +STUB( + "YXzEGnEHoB8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEC1Ev) +STUB( + "YY1XOfVJUpU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("YY6Y+gccbSM", _ZN7WebCore12PrintContextC1EPNS_5FrameE) +STUB("YY95eGL0OBc", mono_context_get_desc) +STUB("YYChFBGp01Q", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEEC2Ev) +STUB("YYG-8VURgXA", _Tls_setup__Mbstate) +STUB( + "YYGVvLJNTqQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("YYOptrfFtso", _ZN7WebCore16FloatRoundedRectC1ERKNS_9FloatRectERKNS0_5RadiiE) STUB("YYP3f2W09og", sceNpTrophyGetGameInfo) +STUB( + "YYQPmoWZJS4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "YYTUD7k6cR8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "YYbk128Ocus", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEaSERKS9_) +STUB("YYbrGICsiyQ", WKBundlePageGetTextZoomFactor) +STUB( + "YYc4mq6eG8M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE8copyFromERKS9_) +STUB( + "YYdz+m6KfiA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE3endEv) +STUB("YYfLHMi0+2M", _ZN3sce2np10NpOnlineIdC1Ev) +STUB("YYnyJWUoCsE", _ZN3sce2Np9CppWebApi6Common6VectorIfE5eraseENS2_13ConstIteratorIfEERS6_) +STUB("YYs7Nb1n3rM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce8ProductsEED1Ev) +STUB( + "YYsPP60pyh0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEdeEv) +STUB("YYtDE+fbjWo", _ZN3sce7Toolkit2NP2V27Ranking10UsersRanks8MAX_PCIDE) +STUB("YYtb1cztSt4", _ZN7Nicosia16SceneIntegrationD2Ev) +STUB( + "YYzw5f8b7VA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEmmEi) STUB("YZ+3seW7CyY", sceAudioInExtOpen) +STUB( + "YZ-6im6M-qw", + _ZN3sce2Np9CppWebApi7Matches2V124RequestCompetitiveResult14setTeamResultsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_18RequestTeamResultsEEEEE) +STUB( + "YZ30k81Psa0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEppEi) +STUB("YZ38Y8PfFK0", Java_java_util_TimeZone_getSystemTimeZoneID) +STUB( + "YZ7dU3Lbp-M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE21intrusive_ptr_add_refEPS9_) +STUB("YZGHgMV9co0", _Ux86_64_dwarf_init) +STUB("YZGJTe8Qm2U", __set_ones_D2A) +STUB( + "YZJV36gTwWM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEC2EPNS2_10LibContextE) +STUB( + "YZMQUreLwSY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEaSERS7_) +STUB( + "YZNaSz-BzA4", + _ZN9Inspector14ConsoleMessageC2EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelERKN3WTF6StringEONS5_3RefINS_15ScriptCallStackENS5_13DumbPtrTraitsISA_EEEEm) +STUB( + "YZO5SYmjyjk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEED2Ev) +STUB("YZOvqxPndC0", _ZN7WebCore9HTMLNames19onpointercancelAttrE) +STUB("YZP9-KrWVgc", WKImeEventGetInputLanguage) +STUB( + "YZSRi9CKVSQ", + _ZN12video_parser44VpMpegvideoAvcParsePPS_get_run_length_minus1EPNS_21VpMpegvideoAvcPPSCtrlEiPj) +STUB( + "YZT4GkUaFu8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEEC2Ev) +STUB("YZTeX1zQrEA", _ZN3sce7Toolkit2NP2V210Tournament15RegisteredTeamsaSERKS4_) +STUB("YZVs-p3dOQ0", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112UpdateStatusEEdeEv) +STUB( + "YZY01xg5NdU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE5eraseENS2_8IteratorIS8_EERSB_) STUB("YZaq+UKbriQ", sceAudioOutPtGetLastOutputTime) +STUB("YZc2eqvJi5w", _ZN3sce2Np9CppWebApi14SessionManager2V130ResponsePlayerSessionSpectatorD1Ev) +STUB("YZgmt5Ud5uM", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead18unsetMaxSpectatorsEv) +STUB("YZiKmarJZL8", do_check_inuse_chunk) +STUB("YZieL0-AIZw", mono_path_resolve_symlinks) +STUB( + "YZj7JDV-VQ4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE21intrusive_ptr_sub_refEPS9_) +STUB("YZk9sHO0yNg", frexpl) +STUB( + "YZlVMCFs-Dw", + _ZNK3sce2Np9CppWebApi14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBody16invitationsIsSetEv) +STUB("YZopotHD7tA", FTC_SBitCache_LookupScaler) +STUB( + "YZrN3GjjfGM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEE11release_refEv) +STUB("YZtEu0qz4UA", _ZN7WebCore6Editor26changeBackToReplacedStringERKN3WTF6StringE) +STUB( + "YZuVD2xCT5w", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS2_6VectorINS5_INS1_13InGameCatalog2V59ContainerEEEEEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "YZvR74FCx9M", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer14hasserviceNameEv) +STUB("YZxFWO2whsE", _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest11unsetZoneIdEv) +STUB("YZzt0nsSrOo", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIiEmmEv) +STUB("Ya+vgrJjBQE", cairo_region_union_rectangle) +STUB( + "Ya12CZYoXbk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEmmEi) +STUB( + "Ya1k0bX+mqI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEE11get_deleterEv) +STUB("Ya2sPNPiw+o", _ZN7WebCore18TextureMapperLayerdlEPv) +STUB("YaCU1jtWSeI", _ZN3sce7Toolkit2NP2V28Matching7Request9GetWorldsC1Ev) +STUB("YaE3CclqDOw", _ZN7WebCore4Page26applicationDidBecomeActiveEv) +STUB("YaGMXGYIWJ0", WKBundleHitTestResultGetMediaType) +STUB("YaHc3GS7y7g", _Mtx_init) +STUB("YaKa7R4mGfI", _ZN7WebCore9HTMLNames10borderAttrE) +STUB("YaLo61BT4Do", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18SessionInformationEEneERKS4_) +STUB( + "YaUVqdGo9bI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEC2EPKS8_) +STUB( + "YaUiVPR70zI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEcvbEv) +STUB("YaV2W8l2FO0", _ZN3JSC13JSSetIterator10createPairEPNS_9ExecStateENS_7JSValueES3_) +STUB("YaXDgjdUvnA", _ZTVN4IPMI6ClientE) STUB("YaaDbDwKpFM", sceAudio3dPortGetQueueLevel) +STUB("YacE5rS1b3k", WKOpenPanelParametersCopyAllowedMIMETypes) +STUB( + "YacGTDPuDZ4", + _ZN7WebCore10PingLoader19sendViolationReportERNS_5FrameERKNS_3URLEON3WTF3RefINS_8FormDataENS6_13DumbPtrTraitsIS8_EEEENS_19ViolationReportTypeE) +STUB( + "YacvHG2ev-A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEC1Ev) +STUB( + "YagGehbdS+k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEED1Ev) +STUB("YagmyQZqWmQ", _ZN3sce7Toolkit2NP2V210Tournament12MatchDetailsaSERKS4_) +STUB("Yai3o0wsM2I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEE6insertENS2_13ConstIteratorIS4_EERKS4_RS7_) +STUB( + "Yan1mQfy8LI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE21intrusive_ptr_add_refEPS9_) +STUB("Yaru8F4P0Uc", _ZN7WebCore8SVGNames13fill_ruleAttrE) +STUB("Yarxt1LHaf0", cairo_region_reference) +STUB("Yau1o4fyQYE", WKPreferencesSetCaptureVideoInUIProcessEnabled) +STUB("Yav2yCjCam8", _ZN7WebCore18JSHTMLImageElement9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) STUB("Yb60K7BST48", scePlayGoDialogUpdateStatus) +STUB("YbA1lxdbmeo", mono_aot_Sce_Vsh_DiscPlayerunwind_info) STUB("YbAWzqWWsRo", sceUserServiceGetVoiceAgentEnableByButton) STUB("YbAfwT8fO7Q", sceSysUtilSendSystemNotificationWithUserId) +STUB("YbAunrti+54", __sys_dl_get_info) +STUB( + "YbC4rs5X6wY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE6insertENS2_8IteratorIS6_EERKS6_RS9_) STUB("YbCO38BOOl4", sceSaveDataCopy5) +STUB("YbCsT3t70Qw", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanityD2Ev) +STUB("YbDoF9zexZU", _ZN3sce3pss5orbis9framework11PsmCallListC2Ev) +STUB("YbG9PpCoMm8", WKPageExecuteCommand) +STUB( + "YbGonTMtVZ4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEmmEi) +STUB("YbMzKrEB2mA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEppEv) +STUB( + "YbNgVcWS-VI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE7popBackEv) +STUB("YbTz0Bzaw64", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_20ChallengeRecvDetailsEE7addressERS3_) +STUB("YbVlQLd0iss", _ZN7WebCore8Document9adoptNodeERNS_4NodeE) +STUB( + "YbYzVhukbf8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEppEi) +STUB( + "YbbiIcPZv0Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE10setContextEPNS2_10LibContextE) +STUB("YbcOra6CSBU", YGNodeStyleSetMinWidthPercent) +STUB("YbjmTV+ax8o", _ZN7WebCore8Document13setVlinkColorERKN3WTF6StringE) +STUB( + "Ybm-stChuCI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEeqERKS9_) +STUB("YbpYrmLGLeA", mono_method_get_marshal_info) +STUB("Ybqebr7v8-Y", mono_profiler_install_module) +STUB("YbrBOnqF1Og", _ZN3sce7Toolkit2NP2V28Matching7Request20SetInitConfigurationC1Ev) STUB("Ybu6AxV6S0o", sceNpIsPlusMember) +STUB("Ybuid-3-Kbs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEEneERKS7_) +STUB( + "YbvDL+g8qUA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationPropertiesC2EPNS1_6Common10LibContextE) +STUB("YbwxxrfPW10", _ZN9Inspector29SupplementalBackendDispatcherD2Ev) +STUB( + "YbzB+2Ttkks", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEEC2ERSA_) +STUB( + "Ybzq9H9MkTU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEC2Ev) +STUB("Yc+qj4TIEY0", _ZNK3sce2np5Mutex6IsInitEv) +STUB("Yc2gZRtDeNQ", _ZNSt13basic_filebufIcSt11char_traitsIcEED1Ev) +STUB("Yc3uVa39hZg", _Z38sceGpuDebuggerGetEnabledExceptionsMaskPKN3sce3Gnm16VsStageRegistersEPj) +STUB( + "Yc7MS15t82U", + _ZN7WebCore14SecurityPolicy22generateReferrerHeaderENS_14ReferrerPolicyERKN3WTF3URLERKNS2_6StringE) +STUB("Yc7QgK7fWws", _ZThn664_N7WebCore24CoordinatedGraphicsLayer10removeTileEj) +STUB( + "Yc96yUZp-sU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEneERKS9_) +STUB("Yc9WoO8O2TI", _ZN7WebCore18TextureMapperLayer5paintEv) +STUB("YcA1SgtiPb4", _ZN7WebCore18PluginInfoProvider10removePageERNS_4PageE) +STUB("YcBWqBAB1-w", _ZN3JSC17JSAPIGlobalObject6s_infoE) +STUB("YcF7lrUfoFM", _ZN3JSC9JSPromise7resolveERNS_14JSGlobalObjectENS_7JSValueE) +STUB("YcFInIJiqng", _ZN3sce7Toolkit2NP2V212ActivityFeed14PlayedWithFeed8deepCopyERKS4_) +STUB( + "YcGXsxQuXSY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEEaSERKSA_) +STUB("YcHmxsv-3cM", utrie_close_67) +STUB("YcJlolMfV0k", ASN1_STRING_data) +STUB("YcMKsqoMBtg", _ZN3sce2np10NpOnlineIdD2Ev) +STUB("YcPE86KxxOg", __asan_report_store1_noabort) +STUB("YcPHbV+6v3U", mono_aot_Sce_Vsh_MimeTypeunbox_trampoline_addresses) +STUB( + "YcRa5MhiS4E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEEC2EPS8_PNS2_10LibContextE) +STUB( + "YcUMjzAZ0x0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEED1Ev) +STUB("YceLk3aN+vs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEEC2EPS6_) +STUB( + "YcfBQO2JJKY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEixEm) +STUB( + "Yckqq4Kfdqc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEEcvbEv) +STUB("YclEY7vN9-k", WKPreferencesSetCrossOriginWindowPolicyEnabled) +STUB("YcqsT1LrHKc", _ZN3sce7Toolkit2NP2V211SharedMedia6VideosC1ERKS4_) +STUB("YcsTWpdaG28", _ZNK9Inspector14FrontendRouter13frontendCountEv) +STUB("YcsyHbZQBKY", _ZN7WebCore14JSNamedNodeMap9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB( + "YcuIUdituxo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE3endEv) STUB("Ycun7TYB2+Q", sceUpsrvUpdateSetEulaAccept) +STUB("Yd+0HvbK+nc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEEC1EPS6_) +STUB( + "Yd+FzGZ5llY", + _ZN7WebCore9unionRectERKN3WTF6VectorINS_9FloatRectELm0ENS0_15CrashOnOverflowELm16ENS0_10FastMallocEEE) +STUB( + "Yd-Ntv9rrYM", + _ZN3sce2Np9CppWebApi12Leaderboards2V122GetRankingResponseBody22setLastUpdatedDateTimeERK10SceRtcTick) +STUB("Yd1Rm-5Quo0", _ZNK7WebCore11MediaPlayer20renderingModeChangedEv) +STUB( + "Yd1XLjJWKeg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEEptEv) +STUB("Yd1vQ0mSqXk", _ZN3JSC7Symbols43promiseReactionJobWithoutPromisePrivateNameE) +STUB("Yd2+uKrebJk", _ZTVN7WebCore11DisplayList4ClipE) +STUB( + "Yd2a19nxaS4", + _ZN3sce2Np9CppWebApi14SessionManager2V143UsersPlayerSessionsInvitationForReadFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_36UsersPlayerSessionsInvitationForReadEEE) +STUB("Yd2qctOAlqs", _ZN3sce7Toolkit2NP2V24Auth7Request11GetAuthCode14MAX_SIZE_SCOPEE) +STUB("Yd7+kmxOY2I", _ZN3sce7Toolkit2NP2V27Session12Notification18InvitationReceivedC1ERKS5_) +STUB("Yd7Iz7EAL6c", _ZN7WebCore21DiagnosticLoggingKeys24visibleAndActiveStateKeyEv) +STUB("Yd7V7lM4bSA", _ZN3sce2np11NpHttpTransD0Ev) +STUB("Yd7vowOw4fc", _ZN7WebCore8FormData6createEv) +STUB("YdAW3oCHB1M", _ZN9Inspector21createScriptArgumentsEPN3JSC14JSGlobalObjectEPNS0_9CallFrameEj) +STUB("YdCpVgspHzg", mono_aot_System_Runtime_Serializationunbox_trampolines_end) +STUB("YdCuQ3hqmB4", _ZN3sce7Toolkit2NP9Interface21registerEventCallbackEPFvRKNS1_5EventEPvES6_) +STUB("YdGQOl6bp50", glInsertEventMarkerColorSCE) +STUB("YdHDp5fhB+c", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku8fromJsonERKNS_4Json5ValueE) +STUB("YdJfGJ4kryk", WTFInitializeLogChannelStatesFromString) +STUB( + "YdOv0ED76ik", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE3endEv) +STUB("YdVdG4cbaF8", uldn_scriptDisplayName_67) +STUB("YdW+3r2WgQg", uregion_getContainingRegionOfType_67) STUB("YdWuo5eSCXo", scePlayReadyCdmiSetServerCertificate) STUB("YdZfEZfRnPk", scePthreadAttrSetscope) +STUB( + "YdcttGdKRUY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE7reserveEi) STUB("YdgAk0w9rGY", sceAvSettingSetDispclk) +STUB( + "YdiaUBMykNQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("Ydj2Za40atI", _ZN15AbstractStorage17DailymotionFolder4OpenENS_8ItemTypeE) +STUB( + "YdjVTOPbdhE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEeqERKS9_) +STUB( + "Ydk0DEVA8qU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEC1EPKS8_) +STUB("YdnEIPIgM98", WKPageGetAddsVisitedLinks) +STUB( + "YdumqbZ7Ku8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEC2ERS7_) +STUB("Ye20uNnlglA", abs) +STUB("Ye8GdYv6eQg", _ZNK7WebCore17CSSPrimitiveValue14getStringValueEv) +STUB("YeBP0Rja7vc", _ZTSSt12future_error) STUB("YeBSNVAELe4", sceAudioInSetConnections) +STUB( + "YeDBQJ9XxA8", + _ZN7WebCore11DisplayList10DrawGlyphsC2ERKNS_4FontEON3WTF6VectorItLm128ENS5_15CrashOnOverflowELm16ENS5_10FastMallocEEEONS6_INS_9FloatSizeELm128ES7_Lm16ES8_EERKNS_10FloatPointERKSB_NS_17FontSmoothingModeE) +STUB("YeHLL34DV+w", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110TaskStatusEEppEv) STUB("YeJl6yDlhW0", sceVoiceWriteToIPort) STUB("YeJzOqHApiU", sceNpManagerUtilConvertOldAuthServerError) +STUB( + "YeKsA0A07Pw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEE3getEv) +STUB( + "YeKwhbQLifk", + _ZN7WebCore22EmptyFrameLoaderClient33convertMainResourceLoadToDownloadEPNS_14DocumentLoaderEN3PAL9SessionIDERKNS_15ResourceRequestERKNS_16ResourceResponseE) +STUB( + "YeL8EqOZCjY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEC2Ev) +STUB( + "YeLBVNphENo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "YeP2FeJRNAk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEC2ERKS7_) +STUB( + "YePSKVfPwzo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEaSERS7_) +STUB( + "YePwk0cK2Ts", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEE3getEv) +STUB("YeQtFtidPNw", _ZN3sce7Toolkit2NP2V212ActivityFeed15PlayedWithStoryC1ERKS4_) +STUB("YeRQAi2qrzg", mono_domain_create) +STUB("YeT4PnXu+qQ", _ZN3sce7Toolkit2NP2V212ActivityFeed15PlayedWithStory12DATE_MAX_LENE) STUB("YeU23Szo3BM", sceKernelGetAllowedSdkVersionOnSystem) +STUB("YebCuo-gjZg", _ZTVN7WebCore11DisplayList18DrawFocusRingRectsE) +STUB("YebyCbJ7X7k", _ZN3WTF14setCloseOnExecEi) +STUB("Yep4Dx-41IE", WKContextConfigurationCopyNetworkProcessPath) +STUB( + "YeqJNGlCqao", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Console14ConsoleMessage4TypeEEESt8optionalIT_ERKN3WTF6StringE) +STUB( + "YesXcUSEDwc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEC1Ev) +STUB("YeskHF2qK4I", _ZNK3WTF3URL15protocolIsAboutEv) +STUB("YevpfNvVB5M", _ZN3NTF17URLRequestHttpJob10initializeEb) +STUB( + "Yf-AOCxSZOw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("Yf-qgO6lh90", _ZN9Inspector21InspectorRuntimeAgent18releaseObjectGroupERN3WTF6StringERKS2_) +STUB("Yf3CvohSksE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEED1Ev) +STUB( + "Yf4EyoxJaPM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEE11get_deleterEv) +STUB("YfAbM5dIAQY", _ZN7WebCore8Document26pageSizeAndMarginsInPixelsEiRNS_7IntSizeERiS3_S3_S3_) STUB("YfDgKz5SolU", sceUserServiceGetMicLevel) +STUB("YfJUGNPkbK4", vprintf_s) +STUB("YfMvfuNG2oc", _ZN3sce2Np9CppWebApi13InGameCatalog2V525ContentInteractiveElementD2Ev) +STUB("YfPgu2Oc0K0", _ZN7WebCore9HTMLNames18referrerpolicyAttrE) +STUB( + "YfQCorXoGHk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEC1EPKS8_) +STUB("YfQfjW5T1Pk", mono_btls_x509_verify_param_peek_param) STUB("YfTBBU5nONQ", sceFiosArchiveUnmount) +STUB("YfUi1bomEh0", _ZN3WTF10TextStreamlsEm) +STUB("YfaTfjLOpSk", _ZN7WebCore28DisplayRefreshMonitorManager17displayWasUpdatedEj) STUB("YfaXPnc8PJE", sceHttp2WebSocketSetPingInterval) +STUB("YfbPTJlWnYg", _ZN3sce7Toolkit2NP2V212ActivityFeed13ButtonCaptionD1Ev) +STUB("YfcbvdB7hdc", mono_counters_sample) +STUB( + "YfdrJI-gpEY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEmmEi) +STUB("Yfg+pPAfcdU", _ZNSt12out_of_rangeC1EPKc) +STUB("YfglnZg08ys", _ZN15AbstractStorage14FacebookFolderD2Ev) +STUB( + "Yfm4pcMyKYs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEmmEi) +STUB( + "YfmMObh+vxM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEC2Ev) STUB("YfmpW719rMo", sceNpMatching2CreateContext) +STUB("Yfmq1uZM1ao", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEEdeEv) +STUB("Yfw63FVJgtU", _ZNK3sce4Json6String7compareEPKc) +STUB("YfxhYzF8LvU", Java_com_sony_bdjstack_core_AppCacheManager_isCached) +STUB( + "Yfxs6HpCaTE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEE5resetEPS9_) +STUB("Yfyvk-GSa1w", + _ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse11setRelationERKNS3_8RelationE) STUB("Yg0OOTI0oPM", sceAudioOut2Terminate) +STUB( + "Yg8Fjc2MpRM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot9unsetsortEv) +STUB("YgE0K2soT1I", _ZNK7WebCore23ScaleTransformOperation5cloneEv) +STUB("YgJ-5D5sx+Y", Java_sun_misc_Signal_handle0) +STUB("YgSqWYwH5as", mono_aot_Sce_Vsh_EventAppjit_code_start) +STUB("YgXgKcVpo44", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEC1Ev) +STUB("YgZ6qvFH3QI", vwscanf_s) +STUB("YgaMfJaW8YM", + _ZN9Inspector22InspectorDebuggerAgent29willDestroyFrontendAndBackendENS_16DisconnectReasonE) +STUB("Ygf+YrOfu+k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEEmmEv) +STUB("YgfU8FqE-38", X509_free) +STUB("YgiPlFkysS0", ucnv_extSimpleMatchFromU_67) +STUB( + "Ygik9PIetuQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEEaSERSA_) +STUB("YglrcQaNfds", _ZTIN10__cxxabiv119__pointer_type_infoE) +STUB( + "YgpDIRn1DV0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEC2Ev) +STUB( + "YgpK9o9Hf-w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "Ygt8XFainaQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEC1Ev) +STUB("YgtiUVDaL9Q", il2cpp_class_from_il2cpp_type) +STUB( + "Yh-w4nQauRc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEeqERKS9_) +STUB( + "Yh0UdLIlDv4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEEC2ERSA_) +STUB( + "Yh1z7ZydHu0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEdeEv) +STUB("Yh3Q1rMIGXo", _ZN7WebCore11SimpleRangeC1EONS_13BoundaryPointES2_) +STUB("Yh5cbgGxiC4", _ZN3sce2Np9CppWebApi13InGameCatalog2V513ContentRatingD1Ev) STUB("Yh74PZYZi9o", sceFsWsMount) +STUB("Yh7VOBot0BE", _ZN3sce2Np9CppWebApi14IdentityMapper2V333PsnWebError_error_missingElementsD1Ev) STUB("YhDksFtpQso", sceMbusAttachToApplicationByPid) +STUB( + "YhQFJ+LsvM4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEEaSERKSA_) +STUB("YhTMAf3GhyA", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEEmmEv) +STUB("YhaOeniKcoA", _Fetch_xor_8) +STUB( + "YhcVF+VIFjo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEE11get_deleterEv) +STUB("Yhij947AtOU", + _ZN3sce2Np9CppWebApi7Matches2V119ResponseTeamResultsC1EPNS1_6Common10LibContextE) +STUB( + "YhjaFh3BiUA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEEptEv) +STUB("Yhk3KkximpQ", rgctx_fetch_trampoline_mrgctx_111_p) +STUB("Yhkow5Kjyis", _ZN12video_parser13cVideoMetaVWG16getEpisodeNumberEPi) +STUB("YhoWU6ouoCw", mono_get_jit_info_from_method) +STUB("Yhosbd4E8gg", + _ZN7WebCore28convertToIntegerEnforceRangeIiEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB("Yhsl2skEVls", _ZN7WebCore5ColorC1EffffNS_10ColorSpaceE) +STUB( + "YhtiquNFc9o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEEcvbEv) +STUB( + "YhuhpGJ1YiM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "YhvMUL1LmUk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEixEm) +STUB( + "Yi-YrYuxGRc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEppEi) +STUB("Yi0iEMTmIyw", _ZN3WTF15BinarySemaphore4waitENS_24TimeWithDynamicClockTypeE) +STUB( + "Yi1y+fLwmNk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEC1EPS8_) +STUB("Yi94JVFNrho", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10ContainersEE3getEv) +STUB( + "Yi9pxhGrUXM", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setInteger1ERKi) STUB("YiBUtz-pGkc", sceHttp2Term) +STUB("YiE2nozhi8w", mono_lls_get_hazardous_pointer_with_mask) STUB("YiHujOG9vXY", _sceUltWaitingQueueResourcePoolCreate) STUB("YiIVBPLxmfE", sceHmdInternalIsGameVr2d) +STUB("YiMsfjNOUAQ", zrule_close_67) +STUB("YiOQCZ7IGLM", rgctx_fetch_trampoline_rgctx_85) +STUB( + "YiRdkk5H-1A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("YiUqZpp24Qg", _ZThn24_N7WebCore14XMLHttpRequestD1Ev) +STUB( + "YiVRIOQCEOw", + _ZN3JSC7JSProxy18getOwnPropertySlotEPNS_8JSObjectEPNS_9ExecStateENS_12PropertyNameERNS_12PropertySlotE) +STUB("YiYimCgDSPI", monoeg_g_string_new) +STUB("YibE-6u4Qrw", _ZThn64_N7WebCore9FrameView19willStartLiveResizeEv) +STUB("YicYaTlSOdo", _ZTVN9Inspector34DOMStorageBackendDispatcherHandlerE) +STUB("YidCQL9G1y4", monoeg_g_ptr_array_free) +STUB( + "Yie6QxCbUgU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEC1ERKS7_) +STUB( + "YifL0k2RPHE", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEEiRNS2_10LibContextEPT_m) +STUB("Yig0tJzlpwk", _ZN3JSC10Identifier3addERNS_2VMEPKc) STUB("YikqzdTOmxY", sceKernelAllocateDirectMemory2) +STUB("YipeIUTbh6I", _ZN3sce2Np9CppWebApi6Common6VectorIjE5eraseENS2_8IteratorIjEERS6_) +STUB("Yit9ugSr8Bc", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11ProductInfoEEeqERKS4_) +STUB("YitddoVuGZk", _Z38sceGpuDebuggerGetEnabledExceptionsMaskPKN3sce3Gnm16CsStageRegistersEPj) +STUB("YitkgAxTaAg", mono_threads_detach_coop) +STUB("Yj4BFxzHSoE", _ZN3JSC14constructArrayEPNS_9ExecStateEPNS_9StructureERKNS_7ArgListE) +STUB( + "Yj9jH8Yegio", + _ZN8meta_gen11MsvPromoter32setKeyValue_TBLAVC_ParentalLevelENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB( + "YjBtX1M-6R4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEC1EPKS8_) +STUB("YjElYV8fhZI", _ZN3sce7Toolkit2NP2V29Challenge9ChallengeD2Ev) +STUB( + "YjIiV1pYtcs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEE11release_refEv) +STUB("YjNx9Hiq5Tw", _ZN7WebCore8JSPath2D15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("YjO9NQNEiIc", + _ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBodyC2EPNS1_6Common10LibContextE) +STUB( + "YjQOzsrrBa0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEC1Ev) +STUB("YjT8GrH5bsM", glFramebufferRenderbuffer) +STUB("YjbpxXpi6Zk", atanh) +STUB( + "YjfwWXnKCBU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEmmEv) +STUB( + "YjiCAunLHjI", + _ZN3JSC9Structure31toCacheableDictionaryTransitionERNS_2VMEPS0_PNS_41DeferredStructureTransitionWatchpointFireE) +STUB("YjiJBmuPTRk", _ZN3sce7Toolkit2NP2V28Commerce7Request22GetServiceEntitlementsD2Ev) +STUB( + "YjioD1vSiNQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEC2EPS8_) +STUB("YjitVZx1Dkg", _ZN3WTF22protocolIsInHTTPFamilyENS_10StringViewE) STUB("Yjkpnrnkgpw", sceVnaGetWakeupPhraseInfo) +STUB( + "YjppAuWjbWU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEppEi) +STUB("Yjsz4dSvLyY", getEventHandlerByProtocolNumber) +STUB("YjvIvhoM3fI", uhash_iputi_67) +STUB("Yk+amLyVb9M", _ZN3sce7Toolkit2NP2V27Session12Notification18InvitationReceivedD1Ev) +STUB("Yk-phCiCkBI", _ZTVSt15basic_streambufIwSt11char_traitsIwEE) +STUB( + "Yk0XZtys6xw", + _ZN7WebCore17HTMLPlugInElement14setReplacementENS_20RenderEmbeddedObject26PluginUnavailabilityReasonERKN3WTF6StringE) +STUB("Yk0ofesYP1U", glVertexAttribPointer) +STUB("Yk2qJg3VRBY", WKContextClearCurrentModifierStateForTesting) +STUB( + "Yk6gnzKBfOk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEmmEi) +STUB("Yk8gb8RbaL8", _ZN3sce7Toolkit2NP2V211UserProfile7Request13GetNpProfiles16SIZE_ACCOUNT_IDSE) +STUB( + "YkFUQ5ae4TU", + _ZN7WebCore25MediaPlayerFactorySupport23callRegisterMediaEngineEPFvPFvOSt10unique_ptrINS_18MediaPlayerFactoryESt14default_deleteIS2_EEEE) STUB("YkGOXpJEtO8", pthread_get_user_context_np) +STUB("YkNgCzs53bI", _ZN3WTF17AtomicStringTableD2Ev) +STUB("YkOQtmWZtBI", _ZN12video_parser18cMp4FFLHndlManager12lockPlayHndlEv) +STUB("YkQRuDa7tfo", + _ZN7WebCore8Document28setOverrideViewportArgumentsERKSt8optionalINS_17ViewportArgumentsEE) +STUB("YkTPIi0jZ6E", _ZNK3sce2Np9CppWebApi15Personalization2V15Error9codeIsSetEv) +STUB( + "YkXInh+sJ80", + _ZN7WebCore15GraphicsContext15drawImageBufferERNS_11ImageBufferERKNS_10FloatPointERKNS_20ImagePaintingOptionsE) STUB("YkayyuR6HvI", sceFiosIsIdle) +STUB("YkdhyjfsYA8", _ZN7WebCore9DOMWindow9navigatorEv) +STUB("YkdlRu0VagU", _ZN3JSC11ProxyObject18structureForTargetEPNS_14JSGlobalObjectENS_7JSValueE) +STUB( + "YkfzMya7MHc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEC2EPNS2_10LibContextE) +STUB("YkgkKjq1zjk", WKBundleRemoveOriginAccessAllowListEntry) +STUB( + "YkgnvsXMUxk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEEC2Ev) +STUB( + "YkteMJWChnI", + _ZN9Inspector24NetworkBackendDispatcher25interceptRequestWithErrorElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) STUB("YkwlupG-S4E", sceKernelAvailableToolMemorySize) +STUB("YkyOTEcu7vA", curl_global_cleanup) +STUB("Ykz6x0VjQ8A", _ZN7WebCore9HTMLNames17aria_rowindexAttrE) +STUB("Yl10kSufa5k", _ZNSt10filesystem12_Current_setEPKc) +STUB("Yl4RW+LKQLM", rgctx_fetch_trampoline_rgctx_124_p) +STUB("Yl50SAiVOW8", _ZN3sce7Toolkit2NP2V26Friend12BlockedUsersC2ERKS4_) +STUB( + "Yl5aaPAWF3g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "Yl6rjY-jL7Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEE7add_refEv) +STUB("Yl6wPutGcJ8", _ZN3sce7Toolkit2NP2V28Matching7Request15SendRoomMessageD2Ev) +STUB( + "YlCLavw9FhQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEE3getEv) STUB("YlFCMjbyzh8", sceCamera2GetFrameData) +STUB( + "YlIqCUNeTbE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEED2Ev) +STUB( + "YlJBsXs-sj0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE3endEv) STUB("YlKCkfJL+Y8", sceFiosFileRead) +STUB( + "YlM3cUmaP-0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("YlNpMDg4Y6M", _ZTVN7WebCore10ISOFullBoxE) +STUB("YlQ3gfC7fqM", WKPageGroupGetUserContentController) +STUB( + "YlUJhqoo2lQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEppEi) +STUB( + "YlVfTAH7S9E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEC1Ev) +STUB( + "YlVzbem6Sjs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE7popBackEv) STUB("YlWUOR7xruE", scePssPadrGetOutputIsRunning) +STUB("YlXvV94CYBU", _ZN3JSC7Symbols15callPrivateNameE) +STUB("YlYjqWNEo1Y", mono_aot_Sce_Vsh_DbRecoveryUtilityWrapperjit_code_start) +STUB("Yli5jvV4dDM", utrie2_enum_67) +STUB( + "YliBZeIV+R0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEppEi) +STUB( + "YloUmwLndaU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEC1Ev) +STUB( + "YlpnKm99h3Q", + _ZN3sce7Toolkit2NP2V211UserProfile13getNpProfilesERKNS3_7Request13GetNpProfilesEPNS2_4Core8ResponseINS3_10NpProfilesEEE) +STUB( + "Ylq5CmRIHuY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEC2Ev) +STUB( + "YlszQc229DM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEED2Ev) +STUB( + "YltcJp1lcTY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEEcvbEv) +STUB( + "YlwDCeSU5yY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "YlxHxqm3fsM", + _ZN9Inspector18InjectedScriptBase12makeEvalCallERN3WTF6StringERN10Deprecated18ScriptFunctionCallERNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISA_EEEERNS1_8OptionalIbEERNSF_IiEE) +STUB( + "YlznD+oghZo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEED2Ev) +STUB( + "Ym1Okbygex0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE3endEv) +STUB( + "Ym2svBXQmQk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE5beginEv) +STUB( + "Ym2wGMBtYkU", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayeraSERS5_) +STUB( + "YmCtbWb5s+o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("YmGU-+-hmIs", _ZNK7WebCore16HTMLInputElement12defaultValueEv) +STUB("YmH4q3lpJG8", + _ZN3sce2Np9CppWebApi12Leaderboards2V127RecordLargeDataResponseBodyC1EPNS1_6Common10LibContextE) +STUB( + "YmJC4Kok7pU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEE11get_deleterEv) +STUB("YmJdjzkRWN8", _ZN3sce7Toolkit2NP15AppSTLAllocatorI13SceNpOnlineIdEC1Ev) +STUB("YmOVGwSJmzk", _ZN3sce2np18MemoryStreamWriterD2Ev) +STUB("YmPOoqEN3yU", _ZN3JSC13iteratorCloseEPNS_14JSGlobalObjectENS_15IterationRecordE) +STUB("YmQ4ESG3ato", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_15ActivityStoryIdEE3getEv) +STUB( + "YmQlwyjGphM", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB( + "YmWC49EL9PE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEC2Ev) +STUB("YmXPFhglcqk", _ZN7WebCore8SVGNames9beginAttrE) +STUB( + "Ymfyb1lk1Dk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEEC1Ev) STUB("YmmFiEoegko", sceUserServiceGetGlsCamCrop) +STUB("Ymx-XHIzU7o", _ZN7WebCore9HTMLNames6supTagE) STUB("Ymyy1HSSJLQ", sceMouseConnectPort) +STUB( + "Yn-RLKSQLKQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB( + "Yn4XBrVXlB8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("Yn4fNeuLEHQ", _ZN3WTF10TextStreamlsEPKc) +STUB("Yn5766bs1xw", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V19JoinStateEEC2Ev) +STUB( + "Yn7u-Rh-m-c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEEC1ERSA_) STUB("Yn8KT+VTZaE", sceVideoOutColorSpaceConversionSettingsSetSdrToHdrConversion_) STUB("YnBnZpr3UJg", sceUserServiceSetGlsCameraEliminationLevel) +STUB( + "YnFlCzFqmJ0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEEC2Ev) +STUB("YnFogi5vqFs", _ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead12setAccountIdERKm) +STUB("YnFtfNT7s4U", ShowNotification) +STUB( + "YnTzpQk3qP8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEC2Ev) +STUB( + "YnWHtpLYMYI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEplEm) STUB("YnXM2saZkl4", sceUserServiceGetShareStatus) +STUB("YnZOHtC8PgY", _ZN3JSC21MarkedJSValueRefArrayC2EP15OpaqueJSContextj) +STUB("YnaGu1jVz3o", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEEeqERKS5_) STUB("YndgXqQVV7c", scePadReadState) +STUB( + "Yng46Hqtp8Y", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsC2EPNS1_6Common10LibContextE) +STUB("Ynhcvkely0A", mono_aot_Sce_Vsh_Np_Managerjit_code_start) +STUB("Ynq1hrw2xlg", WKPreferencesUseLegacyTextAlignPositionedElementBehavior) +STUB("YnsWU+BLTjw", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadDataaSERS5_) +STUB("YntB2JRPuNo", mono_btls_ssl_accept) +STUB("YnvnsdpXc4g", FTC_Manager_LookupFace) +STUB( + "Yo+nWl2oaHw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE3endEv) +STUB("Yo4iw4JYCTI", glGetShaderInfoLog) +STUB( + "Yo6Jg3xXYSU", + _ZN3sce2Np9CppWebApi11UserProfile2V113AvatarFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_6AvatarEEE) +STUB("YoFT-gqc8t4", Java_java_awt_GnmGraphics_nativeDrawPolygon) +STUB("YoHk3+LJ0PY", _ZTSPg) +STUB( + "YoJQmHFinrw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "YoJgcD5h0MU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE8capacityEv) +STUB("YoKfppru+LU", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEEC2Ev) +STUB( + "YoOEVrUsceA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi42ParameterWithBinaryRequestBodyToUploadData9terminateEv) +STUB( + "YoY5c+p-tfU", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions18unsetincludeFieldsEv) +STUB( + "YodYZ9ZTVwM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEED1Ev) STUB("Yohe0MMDfj0", sceNpAtomicDec32) +STUB( + "YohmO2CVeP8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEED2Ev) +STUB( + "Yok32eiH+mM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEE11release_refEv) +STUB("Yokr+lD47Uw", mono_aot_Sce_Vsh_MorpheusUpdWrapperplt) +STUB("YomEss3aDfo", _ZN3sce7Toolkit2NP2V27Session10InvitationD2Ev) +STUB("YomKnVV064k", _ZN7WebCore8SVGNames10formatAttrE) +STUB("YosBu4gRl9M", _ZN3sce2Np9CppWebApi14SessionManager2V113ErrorResponseD2Ev) +STUB("YotXTJXOYeM", ubidi_getMirror_67) +STUB("YozFcQLcUS4", WKDownloadGetResumeData) +STUB("Yp+IAftgVe4", u_strToLower_67) STUB("Yp2yK5YXb78", sceNpServiceChecker2IntGetServiceAvailabilityA) +STUB("Yp5C5f1R8Dc", _ZN3sce7Toolkit2NP2V211SharedMedia7Request13GetBroadcastsC2Ev) +STUB( + "Yp6I-jrfUTA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEmmEv) +STUB( + "Yp6OYh8yc70", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB("Yp89fv3xmKU", _ZN9Inspector28PageBackendDispatcherHandlerD2Ev) +STUB( + "YpCIf1gJMgc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE7popBackEv) STUB("YpDwgqoKMaE", sceNpManagerIntDeclareSystemProcess) +STUB("YpKoMGWeVWM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEEmmEi) +STUB("YpQGFhuHHBA", _ZNK7WebCore11ImageBuffer7contextEv) +STUB( + "YpT+8LOTYi4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEptEv) +STUB( + "YpWmBkAKKVs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEE7add_refEv) +STUB("YpYKjVZxJ+w", u_memcpy_67) +STUB( + "Ypa9PHHceSA", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "Ypb7H3QAeoY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("YpdA8Y8Dvas", mono_aot_Sce_Vsh_SQLiteAuxplt_end) +STUB("YpeJJ7DL1Zo", CommerceDialogBrowseProduct) STUB("YpkGsMXP3ew", sceRazorCpuPopMarker) +STUB("YpkcWVeUHN0", _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError7getCodeEv) +STUB("YpoLyQV6oAw", _ZN4IPMI4impl10ServerImpl15getEventHandlerEv) +STUB( + "YpragSBxfxc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEEptEv) +STUB("YpxR8CqGMIM", FTA_Support_Format_TrueType) +STUB( + "Ypzc2uMZO+8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEE11release_refEv) STUB("Yq0zOH7YNOM", scePadSetVibrationTriggerEffectWeakWhileEmbeddedMicInUse) +STUB( + "Yq3pln8SWBU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEmmEv) +STUB( + "Yq4Lj0my3NY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEEdeEv) STUB("Yq9bfUQ0uJg", sceAudio3dPortSetAttribute) +STUB("YqBJVG-Jr1Q", mono_image_open_from_data) +STUB("YqDiZtP2g-U", _ZN3sce7Toolkit2NP11MessageDataC1Ev) +STUB("YqGRE0nOcNI", _ZN7WebCore19InspectorController25evaluateForTestInFrontendERKN3WTF6StringE) +STUB( + "YqIWm2oUfsE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEED1Ev) +STUB("YqMS-iAjFY8", _ZThn8_N3sce2np6HandleD0Ev) STUB("YqNKLjnR1sI", sceCesRefersUcsProfileIso8859_10) +STUB( + "YqVsQuf9FOs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEdeEv) +STUB("YqXggHD3mF0", _ZN7WebCore18ScrollingStateTree10attachNodeENS_17ScrollingNodeTypeEmm) +STUB("YqdmXu8EOdA", __tinytens_D2A) +STUB( + "YqgKP-kkZPg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEE5resetEPS9_) +STUB("YqiQrQV1Wbk", WKDownloadGetWasUserInitiated) +STUB("YqpTtQZqe8w", _ZN3JSC7Symbols21charCodeAtPrivateNameE) +STUB("YqsEmmV8em0", _ZN6WebKit12ChildProcessC2Ev) +STUB("Yqu2USTatMc", _ZStL4wfin) +STUB( + "YqvULaLUSH8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "YqzKm1Mcf2A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEppEv) +STUB( + "Yr-pGq4c8S0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) STUB("Yr3UeApLWTY", sceNetConfigWlanAdhocGetWakeOnWlanInfo) +STUB("Yr4nbNs9Zn8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEEC2Ev) +STUB( + "Yr63r+2r3HM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("YrDCRdbOfOQ", _ZN9pathscale29set_use_thread_local_handlersEb) +STUB("YrDZBurK+Fc", _ZN7WebCore27ContentSecurityPolicyClientaSERKS0_) +STUB("YrEOsOmcveQ", WKPreferencesGetFileAccessFromFileURLsAllowed) STUB("YrL-1y6vfyo", sceLibcInternalMemoryGetWakeAddr) +STUB("YrP3Jeic2nk", _ZN3sce7Toolkit2NP2V28Commerce7Request26SetPsStoreIconDisplayStateC1Ev) STUB("YrU5j4ZL07Q", sceFontGraphicsAdjustGradientSpread) STUB("YrWX+DhPHQY", sceHttp2SetSslCallback) +STUB("YrYO5bTIPqI", _ZTSSt7codecvtIwc9_MbstatetE) +STUB("YrYaxLTSTO8", WKPreferencesCopyDefaultTextEncodingName) +STUB( + "YrYxqAHznlc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEdeEv) STUB("Yrht530r9FI", sceRnpsAppMgrRemoveApp) +STUB("YrkT4ZY7oIQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEED2Ev) +STUB("YrnA0yqCBqM", _ZN7WebCore14SecurityOrigin6createERKNS_3URLE) +STUB("YroDb0zHorQ", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEED1Ev) +STUB( + "Yrp0HpBpXqE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE5beginEv) STUB("Yrwoq3bti3c", sceKernelIsPs4Process) +STUB( + "Ys+0U+wAthM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEEC1ERKSA_) +STUB("Ys6EwBR4gzY", GCC_except_table312) +STUB("Ys9wh-pfoNA", _ZN7WebCore21DiagnosticLoggingKeys15networkCacheKeyEv) +STUB("YsAvKc3I-cA", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_26EventInformationListDetailEED1Ev) +STUB( + "YsCHQFvn3Vs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEC1EPS8_) +STUB( + "YsDe30Lq1t4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE8pushBackERKS8_) +STUB( + "YsJoje1pipY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEppEv) STUB("YsLBZ7qPu20", sceSpSelect) +STUB("YsNLENNlNao", __libunwind_Unwind_FindEnclosingFunction) +STUB("YsPb3QeiCw4", il2cpp_monitor_try_wait) +STUB( + "YsQLb30wp9A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "YsQfnAJ7xqk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEE11get_deleterEv) +STUB("YsRNfwMQmtQ", _ZN3WTF18FunctionDispatcherC2Ev) +STUB("YsTrACl0H9I", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE21intrusive_ptr_add_refEPS7_) +STUB("YsZuwZrJZlU", _ZN10__cxxabiv123__fundamental_type_infoD0Ev) +STUB( + "Ysbwg1uQTs4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEmmEi) +STUB("Ysd8hbJbqUs", Java_java_awt_GnmRobotHelper_doMouseActionNative) +STUB( + "YsdjXAq+X0g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEC1EPS8_) +STUB( + "YsfU7NeZ9sk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE4sizeEv) +STUB("YsgU0c71un0", + _ZN3sce2Np9CppWebApi7Matches2V120ResponseInGameRosterC2EPNS1_6Common10LibContextE) +STUB("YsiVd2KRHzg", _ZN3JSC11VMInspector14dumpCellMemoryEPNS_6JSCellE) +STUB("Ysk7EOQI9CA", _ZN3sce7Toolkit2NP2V27Session12SessionImageC2Ev) +STUB( + "Yskg+JQd7F4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE10setContextEPNS2_10LibContextE) +STUB("YssF41MWxCU", JSEvaluateScript) +STUB("YstNVTOl+Fw", + _ZN15AbstractStorage15FacebookStorageC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("YstfcFbhwvQ", _ZTIPi) +STUB( + "YsvZ1vPQfUU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("Yt01YIntxQY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEptEv) +STUB("Yt3xP1UTR1w", _ZN3JSC9JSPromise15rejectAsHandledEPNS_14JSGlobalObjectENS_7JSValueE) +STUB( + "Yt4cXjRKLTQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE5beginEv) +STUB( + "Yt4xd81WTJI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE5beginEv) STUB("Yt7c7g1U7Go", sceNpPush2DeletePushContext) STUB("YtAnCkTR0K4", sceNetCtlIsBandwidthManagementEnabledIpcInt) +STUB( + "YtCaCbuBg0w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEE11release_refEv) STUB("YtDk7X3FF08", sceSystemServiceShowImposeMenuForPs2Emu) +STUB( + "YtH9tbUqTeQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBody6toJsonERNS_4Json5ValueEb) +STUB( + "YtRxHfNMW2U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "YtTOH99+FYU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEppEi) STUB("YtTwZ3pa4aQ", sceNetCtlApAppStartWithRetry) +STUB("YtVUmLaXWJ4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE5clearEv) +STUB("YtWOayMJzMs", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus7setInfoEPKvm) +STUB( + "YtcO08OUMoM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEED1Ev) +STUB( + "Ytfg+pSUtwg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEixEm) +STUB("Ytgwwm4urNU", __ubsan_handle_divrem_overflow) +STUB( + "YthtFwVTv24", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEC1ERS7_) +STUB("YtmpBEu64nM", _ZN3sce7Toolkit2NP2V27Session7SessionC1Ev) +STUB("YtvLEI7uZRI", _ZN3sce2np9LocalFile4SyncEv) +STUB( + "YtwFIOTaJHE", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V333CommunicationRestrictionStatusApi44ParameterToGetCommunicationRestrictionStatusC2Ev) +STUB( + "YtxQAsS0+4s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEC2Ev) +STUB("Ytxk0PHZaWE", + _ZN3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponse15unsetNextOffsetEv) +STUB("YtzL-Rso9bk", _ZN3sce2np7HttpUri5BuildEPKS1_PcmPmj) +STUB("Yu+C0ogpzjI", _ZN3sce7Toolkit2NP2V28Matching7Request10CreateRoom24HIGHEST_DISPLAY_PRIORITYE) +STUB("Yu1gqhL0PRo", udata_getLength) STUB("Yu1iUgPHM+w", sceHidControlGetJediState) +STUB("Yu2sKsYckH8", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_15ActivityStoryIdEEC2Ev) +STUB( + "Yu7L8JfU7Z4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("Yu7mmGCjSYM", FTA_Support_Format_WinFonts) +STUB("Yu9oXRVmTTo", FT_Set_Renderer) STUB("YuH2FA7azqQ", sceSaveDataDialogTerminate) +STUB("YuIkCPN-ir8", _ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE5clearEv) +STUB( + "YuJpmFue0WQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("YuNQnIT-9LQ", GCC_except_table210) STUB("YuOW3dDAKYc", sceHttpUriEscape) +STUB( + "YuOhuU+aX7I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("YuUcRhTYWMg", X509_NAME_oneline) +STUB("YuVzBCD92FY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEED1Ev) +STUB("YuZ2wCa1yNg", rgctx_fetch_trampoline_mrgctx_93_p) +STUB( + "YuZ5jR1s0lg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEE11release_refEv) +STUB("YudP-O6lyxM", + _Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm15PaSuPerfCounterE20SceRazorGpuBroadcast) +STUB("YudSGKQqqnI", _ZThn8_N3sce2np11NpHttpTransD0Ev) +STUB("Yudl4ZoriIQ", _GLOBAL__I_000102) +STUB( + "YufRufZDuZI", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeaders7setETagERKNS1_6Common6StringE) +STUB("YugYdFIYA+Q", mono_aot_Sce_Vsh_Webbrowser_XdbWrapperplt) +STUB("Yugsi8YLl28", __ubsan_handle_nonnull_return_v1) +STUB("YujMtLJPOok", WKWebsiteDataStoreClearAppBoundSession) +STUB("YuqlnFyrGgk", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_28AdditionalSessionInformationEE3getEv) STUB("Yv0IsOYIZiA", sceBgftServiceIntDownloadStopTaskAll) +STUB( + "Yv34kAO9nuQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEE11get_deleterEv) +STUB( + "Yv4JMvXIaMA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEdeEv) STUB("YvCj4cb1-jU", sceShellCoreUtilUnmountHddForBackup) +STUB("YvCyeD8n2S0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ChildActivityAvailabilityEEppEv) +STUB("YvDJEab8HVo", _UTF16Data_67) +STUB("YvL0D8Vg6VM", _ZN3sce2np4UserC2ERKS1_) STUB("YvMUP69I69E", sceAppInstUtilGetContentSize) +STUB("YvQseGQNpDs", + _ZN15AbstractStorage15FacebookContentC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEbb) +STUB("YvSNAO82y2U", _ZN8meta_gen13JpegRetriever17GetDefaultDateUTCEv) +STUB("YvYkjti16tk", mono_aot_Sce_Vsh_Messages_DbAccessLibplt) +STUB( + "Yvbm9A1hKWA", + _ZN7WebCore9DOMWindow45overrideTransientActivationDurationForTestingEON3WTF8OptionalINS1_7SecondsEEE) +STUB("Yvgbj5WSi1M", EVP_aes_128_cfb8) +STUB( + "YvjJkIse6Bw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("Yvm2tpjkKPs", il2cpp_set_config) +STUB("YvmY5Jf0VYU", _Thrd_join) +STUB( + "YvoZAemz6Tg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE7popBackEv) +STUB("Yvq0DXgBFX4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEEC1ERKS6_) +STUB( + "YvrrB4cy5Y8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEEC2Ev) +STUB( + "YvteNKIkQOU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEE11release_refEv) +STUB("YvwAxfqATTA", _ZN7WebCore17FrameLoaderClientD1Ev) +STUB( + "Yvwa2GOhoOA", + _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody14getCustomData1Ev) STUB("Yw0jKSqop+E", sceAgcDcbDrawIndexAuto) +STUB("Yw0n2hlwQ38", _ZN4Manx13WorkQueueImpl5startEv) +STUB("Yw3hitvH3DM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEEaSERKS5_) +STUB("Yw65RxUpwqg", _ZN7WebCore8Document19queryCommandEnabledERKN3WTF6StringE) +STUB("YwDnkwA7Xkc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEEC1EPS6_) STUB("YwFH1M34TWM", sceBgftServiceIntUploadUnregisterTaskAll) +STUB("YwKX5vTTepQ", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEED2Ev) STUB("YwRKlxs6pjA", sceMusicCoreServerGetLastLaunchUser) +STUB("YwUwy+GbUhM", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15NpSessionMemberEE8allocateEmPKv) +STUB("YwaEw2NZNVw", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils16NetStateDetailedEED2Ev) +STUB("YwcgIakl0P0", _ZN7WebCore8SVGNames12x_heightAttrE) +STUB("Ywcswv8GDaw", mono_aot_Sce_Vsh_RnpsAppMgrWrappermethod_addresses) +STUB("Ywmo0iM7VQM", __ubsan_handle_nullability_return_v1_abort) STUB("YwrLa0Mekjw", sceSystemServiceChangeCpuPstate) +STUB("Yx+06D2JjOE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEE11release_refEv) STUB("Yx+CuF11D3Q", sceHmdGetAssyError) +STUB( + "Yx29s0ft1aA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEaSERKS9_) +STUB("Yx5ivqeSRXg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEE11get_deleterEv) +STUB("Yx60Kv8HsgM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEE3getEv) +STUB("YxDQKiFZy2k", _ZN7WebCore12GCController9singletonEv) +STUB( + "YxKwfFj3270", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEEC1ERKSA_) +STUB( + "YxVie1HEnFk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE7reserveEi) +STUB( + "YxXtzU1OKlQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEC2Ev) +STUB( + "YxbsnXwLeDA", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeaders21intrusive_ptr_sub_refEPS5_) +STUB("YxdY94Fw670", _ZN3JSC32JSDestructibleObjectHeapCellTypeD0Ev) +STUB( + "Yxpj8k12+PA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE5clearEv) +STUB("YxrV7x7lwfU", g_ExplicitDivideByZeroChecks) +STUB("YxwfcCH5Q0I", _ZSt16generic_categoryv) +STUB( + "YxyIoXzvrdw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEED1Ev) +STUB( + "Yy1DjBDzCrc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEE3getEv) +STUB("Yy46PZvoQHc", rgctx_fetch_trampoline_mrgctx_53) +STUB( + "Yy4ovlWcXkw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEED1Ev) +STUB("Yy5gwHIhKh8", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_skipToPrevEntryMark) +STUB("Yy5yMiZHBIc", rintl) +STUB( + "Yy6rsbLELYw", + _ZN3sce2Np9CppWebApi7Matches2V127RequestPlayerResultsFactory6createEPNS1_6Common10LibContextEPKciPNS5_12IntrusivePtrINS3_20RequestPlayerResultsEEE) +STUB("Yy7p8z0z7Nk", _ZN9Inspector24WorkerFrontendDispatchernwEm) +STUB( + "YyA45qjZUQ0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEE3getEv) STUB("YyC7QCLoSxY", sceUserServiceGetNpDateOfBirth) +STUB("YyCzoJifhqg", _ZN3WTF8CollatorD1Ev) +STUB("YyEZYQquw+g", _ZN3JSC4Heap12collectAsyncENS_9GCRequestE) +STUB( + "YyJYUiS+dQk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("YyLUhjo8VdI", + _ZN9Inspector20InspectorTargetAgent31sendMessageFromTargetToFrontendERKN3WTF6StringES4_) STUB("YyWt34TCzw4", scePfsValidate) +STUB("YyYONsjsraE", _ZN3sce7Toolkit2NP2V27Ranking12RangeOfRanks9MIN_RANGEE) +STUB( + "YyfkVCa-ORo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEmmEv) +STUB( + "YygNVJ1v08g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEEcvbEv) +STUB("YylKwUHOZS4", _ZN9Inspector20CSSBackendDispatcherD0Ev) +STUB("Yym5FhbPeHU", mono_threads_enter_gc_safe_region_unbalanced) +STUB("Yymje0BT12Y", glValidateProgram) +STUB( + "Yyn4LYF7xgQ", + _ZN6WebKit17ChildProcessProxy19dispatchSyncMessageEPN7CoreIPC10ConnectionERNS1_14MessageDecoderERN3WTF6OwnPtrINS1_14MessageEncoderEEE) +STUB("Yynzyic5YHA", WKPreferencesSetNeedsStorageAccessFromFileURLsQuirk) +STUB("YyqJeBKtkaE", _ZN7WebCore8SVGNames16spreadMethodAttrE) +STUB( + "Yyt-TfShV+g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEEC2ERSA_) STUB("Yytq7NE38R8", sceRemoteplayNotifyNpPushWakeup) +STUB( + "Yz+nw3dcnjo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEE7get_refEv) +STUB( + "Yz4W7Wq4EWw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEEaSERSA_) +STUB("YzB8-Aa5UV4", InitializeNetLib) STUB("YzEwgtVeW7o", sceNpUniversalDataSystemIntRecordArraySetString) +STUB( + "YzGfO0x6DMg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEEaSERKS9_) STUB("YzI2BOoDw+I", sceCompositorSetPatchCommand) STUB("YzIPMpnHJzU", sceVorbisDecInfo) STUB("YzJnVHf+Jwo", sceImeBackendModeCaretNext) +STUB("YzM19lL-JGU", _ZN3WTF13printInternalERNS_11PrintStreamEi) +STUB("YzMVqTigiyc", _ZNK3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead14accountIdIsSetEv) +STUB("YzNkW8mlLgY", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable8getOwnerEv) +STUB("YzPFrmjFMOs", _ZN8meta_gen13JpegRetriever20ProcessThumbnailDataEv) +STUB("YzRcVXMKvB8", jpeg_idct_16x16) +STUB( + "YzW+0eFtStA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEC1Ev) +STUB("YzW0cpKb7eA", _ZN12video_parser13cVideoMetaVWG8finalizeEv) +STUB( + "YzW2EfaXD4s", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEEC2EPNS2_10LibContextE) +STUB("YzkiMEg7hvE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEEC2EPS5_PFvS7_EPNS2_10LibContextE) +STUB("YzkqcknjpkE", uprv_ebcdicToAscii) +STUB( + "Yzm4Nwd8Wpw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEaSERKS9_) +STUB( + "YzuBH+wKR8g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE6resizeEj) +STUB("YzyhwhvERzg", _ZN7WebCore6Region9translateERKNS_7IntSizeE) +STUB("Z+-FesiIsPQ", _ZN7bmalloc5Cache8scavengeENS_8HeapKindE) +STUB("Z+1yF3nUzb0", _ZN7WebCore15makeSimpleRangeERNS_4NodeERKNS_14DocumentMarkerE) +STUB( + "Z+3nvTy9goI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "Z+87zq+oO+Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEED2Ev) +STUB( + "Z+9VHJoCmX0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE4sizeEv) +STUB( + "Z+DnnPodwio", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEC1EPNS2_10LibContextE) +STUB( + "Z+IYIl5RcWc", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13boolean4IsSetEv) +STUB( + "Z+NbhiqGPbc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEC1EPS8_) +STUB("Z+UpNZsFb7c", rgctx_fetch_trampoline_rgctx_13_p) +STUB( + "Z+Vy+A8-Opw", + _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest18setMatchStatisticsERKNS1_6Common12IntrusivePtrINS3_22RequestMatchStatisticsEEE) +STUB( + "Z+XjFElnU7U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "Z+bObKJpAx4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEmmEv) +STUB("Z+bUVHmzGQw", mono_domain_try_type_resolve) STUB("Z+dzNaClq7w", sceUserServiceGetGlsLiveQuality2) +STUB("Z+eH7p+THdo", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110ResultTypeEEptEv) +STUB( + "Z+esAd6m9iU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEEC1ERSA_) +STUB( + "Z+gdAYQM5S0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEE5resetEPS9_) +STUB("Z+vRPbgrIrw", + _ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer12setAccountIdEPKc) +STUB("Z+vcX3rnECg", _ZTVSt20bad_array_new_length) +STUB("Z+zAL-Z6eQk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEC1Ev) +STUB("Z--iFci25hA", _ZN7WebCore16MIMETypeRegistry13isXMLMIMETypeERKN3WTF6StringE) +STUB("Z-0HwSuO7Rg", + _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody8fromJsonERKNS_4Json5ValueE) +STUB("Z-6Uqn78290", _ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchStatusRequest17getNpServiceLabelEv) STUB("Z-8Jda650Vk", sceNetSyncSignal) +STUB("Z-CmJGI1uRA", vm_send_CreateStaticRgctxTrampoline) +STUB("Z-CzgOu+sSs", + _ZNK3sce2Np9CppWebApi12Leaderboards2V127RecordLargeDataResponseBody6toJsonERNS_4Json5ValueEb) +STUB("Z-DSxlDEn5U", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4DataEED2Ev) +STUB( + "Z-DgvZqP12A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEEC1Ev) +STUB( + "Z-Di9dCke08", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEED2Ev) +STUB( + "Z-H26XtrDsY", + _ZN9Inspector25TimelineBackendDispatcher21setAutoCaptureEnabledElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "Z-IQIsCmGnQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEC1Ev) +STUB( + "Z-K-CEgQWCk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "Z-LSyoosLoc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEE11release_refEv) +STUB( + "Z-Q6jr1DluM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEneERKS9_) +STUB( + "Z-Te3N1k5vc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE3endEv) +STUB( + "Z-U0lHUNZVo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEplEm) +STUB( + "Z-X0AH9G4eM", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeaders15setCacheControlERKNS1_6Common6StringE) +STUB("Z-htDQqdLsI", _Close) +STUB("Z-lOfS++8s8", _ZN3sce7Toolkit2NP2V210Tournament25OneVsOneTournamentDetailsaSERKS4_) +STUB("Z-lkbHvLSr4", _ZN3WTF7CStringC2EPKc) +STUB( + "Z-mb7n+5T3I", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB("Z-n9eCkcABY", _ZNK7WebCore6Path2D4pathEv) +STUB( + "Z-qUYn2sjQQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEC2EPKS8_) +STUB("Z-uZAphJ0B0", g_filename_from_uri) +STUB( + "Z-wpGtgyfUQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEED2Ev) +STUB("Z-xJlQ0haYg", uprv_uint16Comparator_67) +STUB("Z0EJCwZwEAA", _ZN3sce7Toolkit2NP2V211SharedMedia7Request9GetVideosC2Ev) +STUB("Z0JK-WjWPi0", mono_aot_Sce_PlayStation_BclExtensionsjit_got) +STUB("Z0Om0daCDpI", _ZN7WebCore4Page28removeInjectedUserStyleSheetERNS_14UserStyleSheetE) +STUB("Z0PSFQQkvdo", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V18SortModeEEdeEv) +STUB( + "Z0PTyljc3ko", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEeqERKS9_) +STUB( + "Z0UTeUgi4AQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEdeEv) +STUB("Z0VNyGEdSKk", _ZN3sce2Np9CppWebApi13InGameCatalog2V55ErrorD2Ev) +STUB("Z0ZARk6BEH8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEcvbEv) STUB("Z0a+sohjGTQ", scePerfTraceAddBufferNotifyEvent) +STUB("Z0aqE9Zvp6w", ucnv_extInitialMatchFromU_67) +STUB("Z0bnBaoXk7w", _ZNK7WebCore8Document20isRunningUserScriptsEv) STUB("Z0eQj8m7XA8", sceNpEntitlementAccessDeleteRequest) +STUB("Z0eb0mzQMfE", WTFGetBacktrace) +STUB("Z0gKGPMcJN8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEED2Ev) +STUB("Z0i8mwHJcf8", WKPreferencesSetExperimentalFeatureForKey) +STUB( + "Z0iAq7hGVpE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEC2EPS8_) +STUB( + "Z0j2ByctDRg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEEC1ERS9_) +STUB("Z0j7Ivu5rwk", umsg_parse_67) +STUB("Z0m2zV3O1T0", _ZN3sce7Toolkit2NP15CommunicationIdC1Ev) +STUB("Z0pL-Tae6N4", deflateEnd) +STUB("Z0rxzUY3XM0", MvpHttpGetLastError) +STUB( + "Z0uJ88A8Dmw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEmmEi) +STUB( + "Z12IknZbYHk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("Z13-Ph0esTA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEEdeEv) +STUB( + "Z13fprLjF7U", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEptEv) +STUB("Z1FUn-ESBDw", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request11GetWhoLikedD2Ev) +STUB("Z1JrXKiEuKM", _ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamTournamentC2ERKS4_) +STUB("Z1MRG-L+V0o", _ZN3sce2np12StreamWriter5WriteEPNS0_6HandleEPNS0_9StreamCtxEPKvmPm) +STUB("Z1Zxnlf4DSk", _ZN3JSC17DebuggerCallFrame20positionForCallFrameERNS_2VMEPNS_9ExecStateE) +STUB( + "Z1e7DsJtNLc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEE7add_refEv) +STUB( + "Z1j8YvHFQU4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEmmEv) +STUB("Z1lPgmkVBm8", _ZN15AbstractStorage18DailymotionService13SearchStorageEv) +STUB("Z1nwr6VmklE", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16TrophyPackTrophyEE12deepCopyFromERS7_) +STUB("Z1rdZifXjPo", _ZN12video_parser16cVideoContentMp4D1Ev) STUB("Z1w28FnOa9o", sceAudioLatencyEstimationGetDelayTime) +STUB( + "Z1zo5v0ErDI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEC2EPNS2_10LibContextE) +STUB( + "Z20sQYInGGU", + _ZN3sce7Toolkit2NP7Ranking9Interface13registerScoreEPKNS1_20RegisterScoreRequestEPNS1_9Utilities6FutureINS1_8TempRankEEEb) +STUB( + "Z22etD8Nzo0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEptEv) +STUB("Z26N8VJJRzc", unbox_trampoline_p) +STUB( + "Z2F3wF-NMUo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB( + "Z2H7hfRgwcY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEE7add_refEv) +STUB("Z2I0BWPANGY", __sync_fetch_and_sub_16) STUB("Z2O+ajwrumo", sceLibSecureHashGetContextSize) +STUB( + "Z2OpePvMB+I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEEaSERKS9_) +STUB( + "Z2Q7VWAEWW4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEC1EPS8_) STUB("Z2S47QoVtYg", sceImeBackendForTestFunction) +STUB("Z2XH+aAdu3s", _ZN7WebCore19ResourceRequestBase24s_defaultTimeoutIntervalE) +STUB("Z2aKdxzS4KE", writev) +STUB("Z2biRT+fmpc", rgctx_fetch_trampoline_mrgctx_57) STUB("Z2cdsqJH+5k", sceFontRebindRenderer) +STUB( + "Z2iaW6XNVDg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEEptEv) +STUB("Z2lo4dtGrQw", _ZN7WebCore11MathMLNames9merrorTagE) +STUB( + "Z2qRNSXVsBQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEEcvbEv) STUB("Z2rDN0N0pYc", sceFsUfsEstimateZoneCapacityForUser) STUB("Z2s5dgbCIgg", sceCesEucCnToUtf32le) +STUB( + "Z3-aiHtZkHg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEE11get_deleterEv) +STUB( + "Z37+aYml2kI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "Z3876VEgZgI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEdeEv) +STUB("Z3BQ+paj9QI", _ZN12video_parser5vpcom3rtc12ParseRFC3339EPmPKc) +STUB("Z3E9QMuMFHM", _ZN7WebCore9FrameView14setNeedsLayoutEv) +STUB("Z3EV6NMWjWo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEC1EPS8_) +STUB( + "Z3HQxQkERSI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEC1EPKS8_) +STUB("Z3Nn2FvDbYM", _ZN7WebCore9HTMLNames7linkTagE) +STUB( + "Z3R2Nd-On4k", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEdeEv) +STUB("Z3SA8W6SxzA", _ZN3sce7Toolkit2NP2V26Friend15FriendsOfFriendD1Ev) +STUB("Z3T-jAmhptU", YGNodeStyleSetMarginPercent) +STUB("Z3YUkUV65F8", _ZN7WebCore10XLinkNames9titleAttrE) +STUB("Z3YhIxkXvF0", + _ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody14getRulesetNameEv) +STUB( + "Z3e-bDOHwDY", + _ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody23unsetLargeDataSizeLimitEv) +STUB("Z3gQsF6mZZg", _ZN7WebCore11DisplayList13SetMiterLimitD1Ev) +STUB("Z3iET4TRgDg", uset_complement_67) +STUB("Z3lp3M5uyjo", _ZN3NTF21ResourceRequestLogger11isLoggerUrlEPKc) STUB("Z3mnqcGmf8E", sceNpGetProcessId) +STUB("Z3mrBp7y1Lc", _ZN3sce4Json5Value10referValueERKSbIcSt11char_traitsIcENS0_8StlAllocIcEEE) +STUB( + "Z3nptHuye70", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEaSERS8_) +STUB("Z3oSx90jbiY", u_caseInsensitivePrefixMatch_67) +STUB("Z3oZ7Ul+FRo", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils12Notification15UserStateChangeEE3setEv) +STUB("Z41j9T9B5IU", _ZN7WebCore8SVGNames8bboxAttrE) +STUB( + "Z42+oRWm-gg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "Z43YQiX5ICE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEmmEi) STUB("Z43vKp5k7r0", sceGnmDispatchIndirect) +STUB("Z47Dt9I7MJM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEED2Ev) STUB("Z49nv-Xs1A0", sceEsvmEngineMediaKeySessionRemove) +STUB( + "Z4ACExSNxW8", + _ZN3sce2Np9CppWebApi14SessionManager2V158PostPlayerSessionsSessionIdMemberPlayersRequestBodyFactory7destroyEPNS3_51PostPlayerSessionsSessionIdMemberPlayersRequestBodyE) +STUB("Z4GqBWxwfAM", _ZN3sce7Toolkit2NP2V24Auth7IdTokenaSERKS4_) STUB("Z4JJhXCnIvY", sceNpFriendListDialogGetResult) STUB("Z4QosVuAsA0", pthread_once) +STUB( + "Z4UHDMpXOco", + _ZN9Inspector18InjectedScriptBase20checkAsyncCallResultEN3WTF6RefPtrINS1_8JSONImpl5ValueENS1_13DumbPtrTraitsIS4_EEEERKNS1_8FunctionIFvRNS1_6StringEONS2_INS_8Protocol7Runtime12RemoteObjectENS5_ISD_EEEERNS1_8OptionalIbEERNSH_IiEEEEE) +STUB( + "Z4UO54mmSZI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEneERKS9_) +STUB( + "Z4V93-863KY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEC2ERS7_) +STUB("Z4Xc1x3gxgg", _ZN3JSC13RuntimeMethodC1ERNS_2VMEPNS_9StructureEPNS_8Bindings6MethodE) +STUB( + "Z4gDY+PEvoc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEC2Ev) +STUB( + "Z4hmU+87amg", + _ZN3sce2Np9CppWebApi14SessionManager2V138ResponsePlayerSessionInvitationFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_31ResponsePlayerSessionInvitationEEE) +STUB( + "Z4kdN4OkoRU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("Z4nTIsAp+QM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEptEv) +STUB( + "Z4pLRNpuRe0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("Z4pycDeFfr4", mono_aot_Sce_Vsh_MyGameListmethod_addresses) +STUB("Z4wnPrd9jIE", _ZN3sce2np4UserC1Ei) STUB("Z4wwCFiBELQ", sceNetCtlTerm) +STUB( + "Z4y7T447rmo", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V342PsnWebError_error_validationConstraintInfo6toJsonERNS_4Json5ValueEb) +STUB("Z5+W18jAIH4", u_ispunct) STUB("Z5-0uTMnWnE", sceMatWriteBookmark) +STUB( + "Z52h6z6+Nhg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "Z53o3HOxU00", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEED2Ev) +STUB("Z54J7vkxbeY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEE11release_refEv) STUB("Z55AwNbGHB0", sceRnpsAppMgrGetAppInfoList) +STUB("Z55J-I6291o", AES_cbc_encrypt) +STUB( + "Z55c6Qy0EAU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEEC1ERSA_) STUB("Z55u+4MdEI0", ScePsmMonoJitExec) +STUB( + "Z563ebCR-o0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "Z56RZrRkgG4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE8pushBackERKS8_) +STUB("Z56irUtiXt0", _ZN3sce3Xml13AttributeListC2ERKS1_) +STUB("Z57lo0FHij4", WKBundleNumberOfPages) +STUB( + "Z5Bbt2slZZM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEE11release_refEv) +STUB("Z5HNtKvubuo", WebBrowserGetEnvelopeData) +STUB("Z5NW0XEH1hQ", _ZN3sce2Np9CppWebApi11Matchmaking2V15Cause7setCodeERKl) STUB("Z5RgV4Chwxg", sceSystemServiceChangeGpuClock) +STUB("Z5UwZfm7vUY", _ZN3sce7Toolkit2NP2V28Presence8PresenceC1Ev) +STUB("Z5YoPnCOHA8", _ZN7WebCore21SQLiteDatabaseTracker9setClientEPNS_27SQLiteDatabaseTrackerClientE) +STUB( + "Z5d+m2Gn1Xw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("Z5g63XSwO5I", _ZN7WebCore9HTMLNames8charAttrE) +STUB("Z5i0--Vqfwg", _ZN4IPMI6Server12EventHandlerD2Ev) +STUB("Z5ljxAg3thw", u_strFoldCase) +STUB("Z5lmsU8hL4A", _ZN3JSC9CodeBlockD1Ev) +STUB("Z5nvVZTbyjQ", ucol_strcollIter_59) STUB("Z5t2LiajkAQ", sceUserServiceSetNpCountryCode) +STUB( + "Z5uBAB+Ozyw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEC2EPNS2_10LibContextE) +STUB( + "Z5vm1Niq9YI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE5beginEv) +STUB("Z5vq8iEx3e0", mono_btls_x509_store_set_default_paths) +STUB("Z5y4QZQXuWk", FTC_CMapCache_New) +STUB( + "Z63X5shdLN0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEC2EPS8_) +STUB("Z63XYgLjqhI", rgctx_fetch_trampoline_mrgctx_7) +STUB( + "Z63oACJMO1U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEE7add_refEv) +STUB("Z68UCklzmHs", _ZNK3sce2np6Handle6IsInitEv) +STUB("Z6CCOW8TZVo", _WGetfld) +STUB( + "Z6GDF3pVIuY", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V120ErrorResponseFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_5ErrorEEEPNS8_INS3_13ErrorResponseEEE) +STUB( + "Z6Me97x3vA4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "Z6MerYr-XvM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEED1Ev) STUB("Z6PXTf8fyxI", sceBgftServiceIntDebugPlayGoSuspend) STUB("Z6QV6j7igvE", sceVoiceGetResourceInfo) +STUB( + "Z6RCz0jcE4I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEEC1ERSA_) +STUB( + "Z6UHt8qQkZw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("Z6UhDq6bbDo", _ZN12video_parser13cVideoPathMp4C1EPKc) +STUB("Z6XSWmmTkSM", __sanitizer_cov_trace_pc_guard_init) +STUB( + "Z6Y-UleGVz0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEppEv) +STUB( + "Z6YHluf0Gk8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEmmEv) +STUB( + "Z6cYhFDue3A", + _ZN7WebCore24CoordinatedGraphicsLayer21setNeedsDisplayInRectERKNS_9FloatRectENS_13GraphicsLayer17ShouldClipToLayerE) +STUB("Z6ibdQrVdRQ", _ZN7WebCore17JSDOMGlobalObjectD2Ev) +STUB( + "Z6qNEdlDVgI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEE3getEv) +STUB( + "Z6wjbXI2618", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "Z6yGYvBYt-8", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12string9IsSetEv) +STUB("Z7+siBC690w", _ZTSDs) +STUB("Z7-cPFrH4hM", _ZN7WebCore24CoordinatedGraphicsLayer24didChangeBackdropFiltersEv) +STUB("Z70nLhrFrvE", WKBundleGetWebNotificationID) +STUB( + "Z74lSYEUS08", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEaSERKS7_) +STUB( + "Z75H51E5XWA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEC1Ev) +STUB( + "Z78lpOqBJ28", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEC2EPS8_) +STUB( + "Z79yPfVibjc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE5beginEv) +STUB("Z7DnbWQd02Q", _ZN7WebCore15AsyncFileStream7getSizeERKN3WTF6StringEd) +STUB("Z7NWh8jD+Nw", _ZTISt13bad_exception) STUB("Z7NoR9m5SVo", sceKernelIccGetCpuInfoBit) +STUB("Z7Ur2ttk458", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE5beginEv) +STUB( + "Z7X7OGIvMqc", + _ZN7WebCore30InspectorInstrumentationWebKit30shouldInterceptRequestInternalERKNS_5FrameERKNS_15ResourceRequestE) +STUB( + "Z7Xt45PjrGE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEC2EPS6_PNS2_10LibContextE) +STUB("Z7XuHpqmUlA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEaSERKS7_) +STUB( + "Z7dLFktrCCE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEE5resetEPS9_) +STUB( + "Z7eDHiqLBlI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEplEm) +STUB("Z7pNCsK2dAs", eglGetDisplay) +STUB( + "Z7qUYQRUWcg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEED2Ev) +STUB( + "Z7qxGWOBhhA", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivitiesC1ERS6_) +STUB("Z7rHg2REEzw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEE11release_refEv) +STUB( + "Z7svZeTUxpg", + _ZN7WebCore16NetworkSendQueueC1ERNS_8DocumentEON3WTF8FunctionIFvRKNS3_7CStringEEEEONS4_IFvPKcmEEEONS4_IFNS0_8ContinueENS_13ExceptionCodeEEEE) +STUB("Z7tv-rPsB1A", _ZNK7WebCore8Document11contentTypeEv) +STUB("Z7xo6ggqx04", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils5IdMapEEC1Ev) +STUB("Z7yrECAuwAg", _ZN7WebCore9HTMLNames15onmousedownAttrE) STUB("Z7z6HXWORJY", sceSaveDataSaveIconByPath) +STUB("Z8-FLtQzrRA", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V112OnlineStatusEEptEv) +STUB("Z80B946ukvg", _ZN3sce2Np9CppWebApi6Common6VectorIfE6resizeEj) +STUB("Z81sDp43YNM", mono_aot_Sce_Vsh_BackupRestoreUtilmethod_addresses) +STUB( + "Z86w7M74Kb0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("Z8Afdc4FdPo", WKPreferencesGetBackspaceKeyNavigationEnabled) +STUB( + "Z8JUeeNZs38", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEC2EPKS9_) +STUB("Z8KG6700sw4", FT_Select_Metrics) +STUB("Z8N5v6H4418", jpeg_fdct_3x3) +STUB("Z8PBipYLO8k", _ZN3JSC7Symbols27newArrayWithSizePrivateNameE) +STUB("Z8Qt-kRlKwA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEED2Ev) +STUB( + "Z8U3xKI4Kms", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("Z8ZrDDxJDjY", WKBundlePageSetPaintedObjectsCounterThreshold) +STUB("Z8elFTwJSUE", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsD2Ev) +STUB( + "Z8gBvNoZXpE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEmmEi) +STUB( + "Z8ja4HnYP2s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEEaSERSA_) +STUB("Z8lWB0MSKXo", _ZStL4fout) +STUB( + "Z8lpVi9IjoU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEC2Ev) +STUB( + "Z8mFCHF6Ulo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEE7get_refEv) STUB("Z8nyVQCGCVo", sceNpIdMapperDeleteRequest) +STUB("Z8oFPzCyHZE", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging16GameDataMessagesEE19setCustomReturnCodeEi) +STUB("Z8piI2VQd64", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEC2ERS7_) +STUB( + "Z8veV8f1p9E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB("Z9-kpqvmMUg", _ZN7WebCore15GraphicsContext4saveEv) +STUB( + "Z9-orau1IzU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEED1Ev) +STUB( + "Z923r+FVNp8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEC1Ev) STUB("Z9E-FekUJ2w", sceCtrlpInit) +STUB( + "Z9Jg1dzb5zE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEE7get_refEv) +STUB("Z9K7dRCjlg0", _ZN3sce7Toolkit2NP2V212EventsClient10EventColorC2Ev) +STUB("Z9LBjAIJYIQ", delegate_virtual_invoke_15) +STUB( + "Z9MNlHiHN-I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEC2Ev) STUB("Z9NVCesiP0Q", sceAjmBatchJobRunSplit) +STUB( + "Z9P5NG8O5b4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEE3getEv) STUB("Z9Q9LzQDXf0", sceNpSessionSignalingDestroyContext) +STUB("Z9Vu001vu3U", _ZN3JSC13JSMapIterator14finishCreationERNS_2VMEPNS_5JSMapE) +STUB("Z9WsstrGsZc", _ZN4Manx10FontStream6createEv) +STUB( + "Z9bT5nRfQMk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEC2EPNS2_10LibContextE) +STUB( + "Z9eQXA0kets", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEaSERKS9_) +STUB("Z9gWrdXRLO8", + _ZN3JSC15ordinarySetSlowEPNS_9ExecStateEPNS_8JSObjectENS_12PropertyNameENS_7JSValueES5_b) +STUB("Z9gbzf7fkMU", _Atomic_fetch_xor_1) +STUB("Z9hFW4zMgaU", _ZN3sce7Toolkit2NP2V212NetworkUtils16NetStateDetailedC2Ev) +STUB("Z9hYU0+vqeg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEEC1ERKS7_) +STUB("Z9jxlNOYFbE", __internal_handle_open) +STUB("Z9kvulfEIVU", _ZN3sce3Xml6StringC1Ev) +STUB("Z9m12hOCc+0", _ZNK7WebCore11HistoryItem8referrerEv) +STUB( + "Z9oXE1jp2n4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEneERKS9_) +STUB( + "Z9pTT2dgmUo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEC2EPNS2_10LibContextE) +STUB("Z9tyi1-LrQg", _ZN3sce4Json6String7reserveEm) +STUB("Z9zhgHSctqM", _ZN7WebCore6Widget9setParentEPNS_10ScrollViewE) +STUB("ZA-45SyHoL4", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container7setTypeEPKc) +STUB( + "ZA4fXiDdSzU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("ZABJgtNFuUo", _ZN3sce7Toolkit2NP2V212EventsClient13EventDuration13MAX_SIZE_DATEE) STUB("ZAFfvaw5eNA", sceDtsEncWaitEncode) +STUB( + "ZAKuNhMr6jc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEC2EPS6_PNS2_10LibContextE) +STUB( + "ZANU+5rTaIs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEEC1Ev) +STUB("ZARJnyVO9iM", __tsan_write1) +STUB("ZAURFIgPZk8", _ZN9Inspector28InspectorScriptProfilerAgentdlEPv) +STUB("ZAWn29mGSe8", _ZN9Inspector24WorkerFrontendDispatcherdlEPv) +STUB( + "ZAh70W1BZeQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEaSERKS9_) +STUB("ZAkBpVsoKSs", mono_aot_I18Nplt_end) +STUB( + "ZAlYuHcURnE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEEaSERKSA_) +STUB("ZAm1DqkPhpY", ulist_containsString_67) +STUB( + "ZAn37wd6nOs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "ZAnCRHLGXyI", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi23joinGameSessionAsPlayerEiRKNS4_34ParameterToJoinGameSessionAsPlayerERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_50PostGameSessionsSessionIdMemberPlayersResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("ZApWOKVm7-g", _ZN7WebCore9MediaList12setMediaTextERKN3WTF6StringE) +STUB("ZAywbC2T+Nw", WKBundlePostMessage) +STUB("ZB-Q7RvnIAA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEED1Ev) +STUB( + "ZB5qzyhDhgY", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V122NatConnectivityFactory7destroyEPNS3_15NatConnectivityE) STUB("ZB8xRemRRG8", sceFontGetFontGlyphsCount) STUB("ZB9HZnouJrc", sceKernelDirectMemoryQueryForId) +STUB( + "ZBQajqW4Kz8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "ZBQeIzPi43s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEE3getEv) +STUB( + "ZBTyFVOGbeg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEneERKS9_) +STUB( + "ZBYpsRWLr0I", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEEptEv) +STUB("ZBbwvge1ZI8", _ZNK7WebCore19HTMLTableRowElement8rowIndexEv) +STUB("ZBcWFXdWC5I", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS19FriendsDataStatusesEEC2Ev) +STUB("ZBfDhowpztE", + _ZN3sce2Np9CppWebApi14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyD1Ev) +STUB("ZBfFoUi0RTM", _ZN3sce7Toolkit2NP2V27Session7Request6Search19DEFAULT_INDEX_VALUEE) +STUB( + "ZBgA3obnE98", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB( + "ZBgCNsO6GDc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEED1Ev) +STUB("ZBgLUech09s", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_23NpSessionInvitationInfoEEC1Ev) +STUB("ZBjobwy9TNo", uregex_start_67) +STUB("ZBkm0cyqmsU", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessionsC1Ev) STUB("ZBlJme+Kcgg", sceImeBackendGetCandidateSelect) +STUB("ZBm2yaA6JPk", + _ZN7WebCore32ScrollingStateFrameScrollingNode17setInsetClipLayerERKNS_19LayerRepresentationE) +STUB( + "ZBn4NOv2R+w", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE5eraseENS2_8IteratorIS6_EERS9_) +STUB( + "ZBpDZJwNdNs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEE3getEv) +STUB("ZBs-hqllVMc", Java_java_lang_Shutdown_halt0) +STUB("ZBt8N19HV94", _ZN3sce7Toolkit2NP2V23TUS15TusDataStatusesaSERKS4_) +STUB( + "ZBywHw0+Rdw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("ZC-e-sTbZ0g", u_isJavaSpaceChar_67) STUB("ZC17w3vB5Lo", sceAvPlayerStop) +STUB("ZC2rFWNrtMk", delegate_virtual_invoke_21_p) +STUB( + "ZC6G4IeFjkg", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V142MatchCompletionRateCompletedMetricsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_35MatchCompletionRateCompletedMetricsEEE) +STUB( + "ZC6NqUwPObA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEEC2ERKSA_) STUB("ZC6fht48-Qc", sceBgftServiceIntDebugPlayGoSetFreeZone) +STUB( + "ZCE4lVoTxYQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "ZCKw-nB86EE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEE7get_refEv) +STUB( + "ZCNKIh6nxXA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEEneERKS7_) +STUB("ZCNViahRWjg", cuse_lowlevel_main) +STUB("ZCOTF-9SJDA", _ZN3WTF13StringBuilder22appendECMAScriptNumberEd) +STUB("ZCPC7HL+puk", _ZN3sce2Np9CppWebApi7Matches2V118RequestTeamResults22unsetTeamMemberResultsEv) +STUB( + "ZCTu2rLEJeU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC1Ev) +STUB("ZCaq-0g5qJQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectator12getAccountIdEv) +STUB("ZCd6IYoD3Bc", _ZNK3sce4Json6Object8iteratordeEv) +STUB("ZCdpzDyqAtE", WKBundleSetAsyncFrameScrollingEnabled) +STUB("ZCfAfJDzal4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEEaSERS6_) +STUB( + "ZCo+g12rHAw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEneERKS9_) +STUB("ZCqeHLtz780", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence12Notification14PresenceUpdateEED1Ev) +STUB( + "ZCqtcK1KAsQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE5beginEv) +STUB("ZCr7sSQkzGw", ubrk_preceding_67) +STUB("ZCrqHPiB4ro", SSL_get_privatekey) +STUB("ZCuLr+bcc-E", sdb_single_step_trampoline) +STUB( + "ZCwkEumVk2Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEC1EPS8_) +STUB("ZCxdJPvigpE", _ZN3JSC18GCActivityCallbackC2ERNS_2VME) +STUB( + "ZCyfwLPXjZI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEdeEv) +STUB("ZD+Dp+-LsGg", sys_nsig) +STUB( + "ZD+HQmiSbW0", + _ZN3sce2Np9CppWebApi12Leaderboards2V137GetBoardDefinitionResponseBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_30GetBoardDefinitionResponseBodyEEE) +STUB( + "ZD+kPxvs3no", + _ZN9Inspector22InspectorDebuggerAgent25buildExceptionPauseReasonEN3JSC7JSValueERKNS_14InjectedScriptE) +STUB("ZD-0e3b7Leo", WKWebsiteDataStoreConfigurationGetPerOriginStorageQuota) +STUB("ZD2MP6Vzxu4", WKBundleFrameCopyInnerText) +STUB("ZD46Jw2jyyg", UI_get_input_flags) +STUB("ZD81lGai5tQ", mono_metadata_field_info) +STUB( + "ZDAT84kIwmc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEEptEv) +STUB( + "ZDCt-cpxHZk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEEC2ERKSA_) +STUB("ZDKe0O0ynIs", _m_key2) +STUB( + "ZDO-1I0y3Ek", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE5beginEv) +STUB( + "ZDR6hVFqGqs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEC2Ev) +STUB("ZDXASnyDcho", mono_aot_System_Xml_Serializationjit_got) STUB("ZDaoItgoNF0", sceMbusEventCallbackFuncsInit) +STUB("ZDe8SRHwk-U", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE5clearEv) +STUB("ZDeMB3pJ+Q8", JVM_GetClassInterfaces) +STUB( + "ZDeYu9x3Shw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEmmEi) +STUB( + "ZDmR517X2sY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "ZDnl9WIUQ3U", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("ZDocIq+2jbI", _ZN3sce2np3ipc14service_client13PollEventFlagEijmjPm) +STUB( + "ZDq-wYbzxbE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEmmEi) +STUB( + "ZDtFsp6HpTE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "ZDu-WJlHYYs", + _ZN3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession26setSpectatorJoinableStatusERKNS3_23SpectatorJoinableStatusE) +STUB("ZDvHK6T-sh4", tt_cmap2_class_rec) +STUB("ZDwRLyU1-2Y", _ZNK3sce2Np9CppWebApi14SessionManager2V12To6toJsonERNS_4Json5ValueEb) +STUB("ZDwprZa5o10", _ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEE3endEv) +STUB("ZDzBH+rCbT4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEcvbEv) +STUB("ZE+kvBSZtjw", _ZN3WTF13StringBuilder15reserveCapacityEj) +STUB("ZE6RNL+eLbk", tanf) STUB("ZE8DFcSverk", sceAt9EncClearContext) +STUB( + "ZEEFVf9UUt0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE5clearEv) +STUB("ZEF2Njwr8Kk", SetCurrentTime) +STUB("ZEH+UsL9PFQ", audiodeccpuinternal_core_ops_alac2) +STUB("ZEQH4lcf1xY", _ZN3sce7Toolkit2NP2V210Tournament7Request18GetRegisteredUsersD1Ev) +STUB("ZERYoMH2fX8", _ZN3JSC2VM21sentinelSetBucketSlowEv) STUB("ZEZYgGsc4q0", scePlayReadyContentSetProperty) +STUB( + "ZEeawB5rs48", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEplEm) +STUB("ZEf2L6Gsj3Y", mono_aot_Sce_Vsh_Orbis_BgftAccessorplt_end) +STUB("ZEgja1SGUP8", _ZN3WTF10TextStreamlsEy) +STUB("ZEioiFNuqis", SwCtrlSinkAuthenticate) +STUB("ZEjCED21XYU", _ZTVN9Inspector19InspectorAuditAgentE) +STUB("ZEt-qWYOrmQ", _ZN3sce7Toolkit2NP2V29Messaging7Request22ConsumeGameDataMessageC1Ev) +STUB("ZEwoZ4r51tI", __asan_store8_noabort) +STUB( + "ZEww9kCydjU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEED1Ev) +STUB( + "ZF+vvm66HTU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEED1Ev) +STUB( + "ZF-kqnx4Hnw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE5beginEv) +STUB("ZF6hpsTZ2m8", __atomic_store_1) +STUB("ZF9k6RbNZoY", _ZNK7WebCore11BitmapImage21decodeCountForTestingEv) STUB("ZFDZoN9IbVU", sceAmprAmmMeasureAmmCommandSizeMapDirect) +STUB( + "ZFJRds6jZtk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("ZFJmsiUqcBI", u_UCharsToChars) +STUB( + "ZFLn+v8GlA8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEcvbEv) +STUB("ZFPwpIZbyIc", mono_image_open_from_data_with_name) +STUB( + "ZFXZvUJJ5CI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE21intrusive_ptr_sub_refEPS9_) +STUB("ZFeVn7+X36Y", _ZThn64_NK7WebCore9FrameView21minimumScrollPositionEv) +STUB("ZFmp0VLrfi8", _ZN7WebCore10FileSystem18getVolumeFreeSpaceERKN3WTF6StringERm) +STUB("ZFmp0rD1F14", cairo_matrix_init_identity) +STUB( + "ZFqFZV6cABI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE8copyFromERKS9_) STUB("ZFqKFl23aMc", sceGnmRegisterOwner) +STUB("ZFs14dPrmzk", ucurr_getDefaultFractionDigits) +STUB( + "ZG+vPK7jySA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEdeEv) +STUB("ZG0YDhgy13Y", uprv_decNumberLn_67) +STUB( + "ZG1xp7U3G9g", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEptEv) +STUB("ZG4JqHOOczk", _ZN12video_parser23VpMpegvideoMp4vParseDSIEPhiPNS_23VpMpegvideoMp4vDSIParamE) +STUB( + "ZG8iFiffjfw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEC2EPNS2_10LibContextE) +STUB("ZGC0zvMWXJ8", _ZN7WebCore9HTMLNames17aria_haspopupAttrE) +STUB( + "ZGCngQcBQas", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEED1Ev) +STUB("ZGEEHCN2FvE", WKContextGetNotificationManager) +STUB("ZGH6RGAA+r4", _ZN3sce7Toolkit2NP2V26Trophy17TrophyPackSummaryC1ERKS4_) +STUB( + "ZGKGfu51Ye0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEC1Ev) +STUB("ZGNbbBAeVyo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE5beginEv) +STUB( + "ZGRODZohpUU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEE7get_refEv) +STUB("ZGSQC5a3cFE", _ZN3sce7Toolkit2NP2V212EventsClient15EventUserStatusC2Ev) +STUB("ZGSo5Tu5i+Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEE5resetEPS6_) +STUB("ZGTN0zmuExs", mono_aot_Sce_Vsh_VoiceAndAgentjit_got) +STUB("ZGURGK061ts", _ZN7WebCore7Element12offsetHeightEv) +STUB( + "ZGWFU44wy-Q", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEptEv) +STUB( + "ZGXEG-pD+ek", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEaSERS7_) STUB("ZGbkd2hWhJU", sceShellCoreUtilGetTitleWorkaroundFileInfoString) +STUB("ZGc3yyMGbS0", _ZN7WebCore12SettingsBase18setSerifFontFamilyERKN3WTF10AtomStringE11UScriptCode) +STUB( + "ZGdzxegQ3f0", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE5getIdEv) +STUB("ZGlRwKpruPQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEE5resetEPS6_) +STUB( + "ZGnYZD8aI+w", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEneERKS9_) +STUB( + "ZGpJF8bYz8A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "ZGrtHRS9sQ8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE3endEv) +STUB("ZGvwbuPkU0A", uregion_getAvailable_67) STUB("ZGx1vjA0Jwc", sceBgftServiceIntUploadGetAvailableTaskCount) +STUB("ZGxmGA0J8jk", + _ZN3sce2Np9CppWebApi7Matches2V119RequestMatchResultsC1EPNS1_6Common10LibContextE) +STUB( + "ZGyS7rVVrR0", + _ZN7WebCore18TextureMapperLayer28paintWithIntermediateSurfaceERKNS_25TextureMapperPaintOptionsERKNS_7IntRectE) +STUB( + "ZH+RQNI-eu4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE21intrusive_ptr_sub_refEPS7_) +STUB( + "ZH0cvoOCQFY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("ZH232ViZnko", _ZN3WTF11setNonBlockEi) +STUB("ZH6IIT7suc4", _ZN7WebCore27TranslateTransformOperationD2Ev) +STUB( + "ZH9LeExOVf8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE21intrusive_ptr_add_refEPS7_) +STUB("ZHAqg71nFWw", _ZN4IPMI6Client6Config26SyncMethodInvocationConfigC1Ev) +STUB( + "ZHCu4+2e1TE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("ZHDH2AeJ7eE", c14) +STUB("ZHJ0lhsdQTY", mono_metadata_locate_token) +STUB("ZHO4XBnj7Eo", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE6resizeEj) +STUB( + "ZHSHxvocyS4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEaSERS7_) +STUB("ZHUzIIIwj1c", _ZN3WTF9MediaTimeC2Eljh) STUB("ZHWeGLW4X34", sceFaceTrackerUpdate) +STUB( + "ZHY-t9+17Cw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEEptEv) +STUB("ZHZ6QZ8xHLE", _ZN3sce2np4NpIdC2ERK7SceNpId) +STUB("ZHgtxjIcuSM", mono_create_delegate_trampoline) +STUB( + "ZHkU8CmmW4E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("ZHsmiChQLTk", FTA_Export_Module_winfonts) +STUB( + "ZHtG2A2fRJg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEE7get_refEv) +STUB("ZHtXh2C74sE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEEaSERKS7_) +STUB("ZHvMrBTIkfU", _ZN3sce2Np9CppWebApi7Matches2V116JoinMatchRequestC1EPNS1_6Common10LibContextE) +STUB( + "ZHxt8oScPx0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEE3getEv) +STUB("ZHyPFSIRgKQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEEdeEv) +STUB("ZHzwjehXPR4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia6VideosEE3setEv) +STUB( + "ZI1X0DZdgxU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEC2EPS9_) +STUB("ZI2IUkQLm0w", _ZN7WebCore20ISOOriginalFormatBox11boxTypeNameEv) +STUB("ZI4mwckKD1s", _ZN9Inspector27LayerTreeFrontendDispatcherC1ERNS_14FrontendRouterE) +STUB( + "ZI7vwI+OxZM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEE11get_deleterEv) +STUB( + "ZIBEeJekiL4", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS5_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISE_SF_EE) +STUB("ZIE9TMazHLY", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setSecondaryAudioDefaultLang) +STUB("ZIFUDmJiS7M", EVP_aes_128_gcm) +STUB( + "ZIFkf7zh3Bs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) STUB("ZIKGk+35UDU", sceShellCoreUtilGetAppLaunchTypeInfo) +STUB("ZIM7XSHmna4", + _ZN15AbstractStorage14TwitterContentC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) +STUB( + "ZIVW0zZUB4E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEmmEi) +STUB( + "ZIX+0+SODKM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE21intrusive_ptr_sub_refEPS9_) STUB("ZIXln2K3XMk", sceAcmContextCreate) STUB("ZIao0n0x1-w", sceSaveDataDebugProspero) +STUB("ZIcknjuQst4", mtx_write) +STUB("ZIu01xdX14E", delegate_virtual_invoke_27) +STUB("ZIuFpA7mgYY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEEC2EPS5_PNS2_10LibContextE) +STUB("ZIyKMovAI5c", _ZN7WebCore16ResourceResponseD2Ev) STUB("ZJCgt+aPHAU", sceAmprAmmCommandBufferMapAsPrt) +STUB( + "ZJDcgEt1S1I", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEptEv) +STUB( + "ZJDqN5lEWRk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE10setContextEPNS2_10LibContextE) +STUB( + "ZJFbtKdGPW0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE5emptyEv) +STUB( + "ZJGxlXWWtrw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("ZJJCpaewujw", mono_aot_Sce_Vsh_PsnMessageUtilmethod_addresses) +STUB( + "ZJJbrOG1VzI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEC1Ev) +STUB("ZJPqg9OExng", _ZN4Manx21getPlatformFamilyListEPKwj) +STUB( + "ZJSITmcqRH4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEptEv) +STUB("ZJYGaq4z9Pc", _ZN7WebCore31CrossOriginPreflightResultCache9singletonEv) +STUB( + "ZJZO3hhBHr0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("ZJbPQt+FTnY", _ZN3sce2np10JsonParserC2EP16SceNpAllocatorEx) +STUB( + "ZJenaMlOAAU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEE11release_refEv) +STUB( + "ZJfDMbHe5g4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEED2Ev) +STUB("ZJgKN+own3w", _ZN3sce3Xml11InitializerC1Ev) +STUB( + "ZJnJ3aFV7Ik", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE21intrusive_ptr_sub_refEPS9_) +STUB("ZJoH31B-NCA", mono_assembly_name_free) +STUB( + "ZJoYuLX2zu0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEppEi) +STUB( + "ZJp7oHmYPuI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEEcvbEv) +STUB("ZJsmiAGWwZQ", _ZN7WebCore8XMLNames9spaceAttrE) +STUB("ZJvtsevwowQ", BN_print) +STUB("ZJvxn6JiCB4", ucnv_createConverterFromPackage_67) +STUB( + "ZJztl7BiE+s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEC2Ev) +STUB("ZK++kZngbwY", _ZN3JSC14JSModuleRecord6s_infoE) +STUB( + "ZK2hLd1oD5A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEE3getEv) +STUB( + "ZK4Hg1dHMlw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEC1Ev) +STUB( + "ZKHI3YW1alk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEED1Ev) STUB("ZKJtxdgvzwg", sceUserServiceGetAccessibilityPressAndHoldDelay) +STUB("ZKKEsuemxEU", EVP_PKEY_get0_RSA) +STUB( + "ZKb0voJG6EE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEEdeEv) +STUB( + "ZKeA8GWE7xM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("ZKelftVx9w0", _ZN7WebCore16HTMLImageElement6heightEb) +STUB( + "ZKfhUXs3eWw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEE21intrusive_ptr_sub_refEPS7_) STUB("ZKhzRGuFjeM", sceCesUtf32ToEucJp) +STUB( + "ZKic+2qdrj0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEC2ERS7_) +STUB("ZKk9-AHMjCU", _ZNK3sce2Np9CppWebApi7Matches2V111AddedPlayer6toJsonERNS_4Json5ValueEb) +STUB("ZKmuiiXowKo", GCC_except_table94) +STUB("ZKoQ93jJHto", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEEppEi) +STUB( + "ZKqQ9LWQlEQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEEC2ERSA_) +STUB("ZKtM61uk9qQ", uhash_setResizePolicy) +STUB("ZKw-MchK+zQ", _ZN3JSC7Symbols26repeatCharacterPrivateNameE) +STUB("ZKyMbKOSWgU", ustrcase_internalToLower_67) +STUB( + "ZL1djzM1-F0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("ZL5Azk2U+XI", _ZNK3sce2Np9CppWebApi11Matchmaking2V19Submitter14accountIdIsSetEv) +STUB( + "ZL5Znq6YsMY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEixEm) +STUB("ZL6+aTbbWQ0", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V15OwnerC2EPNS1_6Common10LibContextE) +STUB("ZL9FV4mJXxo", __cxa_rethrow) +STUB("ZLB1hEaND1Q", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12string7IsSetEv) +STUB( + "ZLEuFwyQvsM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEC2Ev) +STUB("ZLHIMOYVWWE", + _ZN3sce2Np9CppWebApi11UserProfile2V125GetBasicPresencesResponseC2EPNS1_6Common10LibContextE) +STUB("ZLINx2XbQQ8", CommerceDialogRedeemPromotionCode) +STUB("ZLJ+jUcA3Yg", _ZSt9use_facetISt8messagesIwEERKT_RKSt6locale) +STUB( + "ZLJ1vTuz6sA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEC1Ev) STUB("ZLJk9r2+2Aw", sceAgcDriverUnregisterOwnerAndResources) STUB("ZLWtNUP6R5E", sceAmprCommandBufferWriteAddressFromCounterPairOnCompletion) STUB("ZLdJyQJUMkM", sceNetConfigWlanAdhocCreate) +STUB("ZLiZOtVgfFE", _ZN3sce7Toolkit2NP2V210Tournament15TeamVsTeamMatchD2Ev) +STUB("ZLjAhq-2lvE", _ZN7WebCore8Document15allDocumentsMapEv) +STUB("ZLr-Jodgtfg", rgctx_fetch_trampoline_rgctx_71) +STUB( + "ZLvRUArLS1w", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEixEm) STUB("ZLvf6lVAc4M", pthread_mutexattr_setprioceiling) +STUB( + "ZLxtWNATKFQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEED1Ev) +STUB("ZMBqEEys59o", __mult_D2A) +STUB("ZMCU-QzKIeU", ufmt_getDouble_67) +STUB("ZME71iqnOSo", _ZN2GK9PlayerPSN11setSettingsEPKcb) +STUB("ZMGIX9bvfck", + _ZN3sce2Np9CppWebApi14SessionManager2V128ResponseGameSessionSpectator11setPlatformEPKc) +STUB("ZMKa3uRT4JA", + _ZN7WebCore21JSCSSStyleDeclaration13visitChildrenEPN3JSC6JSCellERNS1_11SlotVisitorE) +STUB("ZMQWX9LYLi0", intro_sort) +STUB( + "ZMT80joXiBQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("ZMUW7hOUCOw", mono_aot_Sce_Vsh_Np_IdMapperplt_end) +STUB("ZMWkuB0Pr5g", _ZN3IPC15ArgumentDecoder6decodeERd) +STUB( + "ZMa0dfrNRQw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE3endEv) +STUB("ZMgs2ABMLj0", rgctx_fetch_trampoline_rgctx_122_p) +STUB("ZMjPSdkhEqw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEED2Ev) STUB("ZMn3clnAGBA", pthread_spin_init) +STUB( + "ZMqYyXC-RXg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "ZMrZcZwdERA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEE7get_refEv) STUB("ZMskokGFzRk", sceMbusDumpProcMediaInfoAll) +STUB("ZMt1qFgeRyM", WKStringGetCharacters) +STUB( + "ZN-glpk0Rug", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEneERKS9_) +STUB("ZN29SJwEFIQ", mono_shared_mutex_get) +STUB("ZN4Udtplcb8", _ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody9pcIdIsSetEv) +STUB("ZN4fyOtHNl4", _ZN3JSC7WeakSet13findAllocatorEv) +STUB("ZN4kQNLpw6Q", _ZN12video_parser5vpcom13UTF16stoUTF8sEPKtjPhPj) +STUB("ZN53fEYaMhE", mono_runtime_set_has_tls_get) +STUB("ZN7g2t6NxQQ", unumsys_getDescription_67) +STUB("ZNFyGf1tkF0", _ZN3WTF10TextStreamlsEb) STUB("ZNIuJjqdtgI", sceSystemServiceGetLocalProcessStatusList) +STUB("ZNMUPGLACI0", _ZNK7WebCore12DOMTokenList8containsERKN3WTF10AtomStringE) +STUB( + "ZNOWZfBLwSY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEeqERKS9_) +STUB( + "ZNOa9DxnTUY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEC2Ev) +STUB("ZNVtJh6plmE", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge13ChallengeDataEE3setEv) +STUB("ZNcVedSjvxA", _ZN3sce7Toolkit2NP2V28Matching4DataC2ERKS4_) +STUB( + "ZNdqR4juqr0", + _ZN9Inspector24NetworkBackendDispatcher26setResourceCachingDisabledElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("ZNhIVqNPAzk", uscript_getCode_67) +STUB("ZNkZqExWyhg", umsg_open_67) +STUB("ZNoAobfQK2o", Java_java_awt_GnmGraphicsDevice_disposePSD) +STUB("ZNoISOWfS+w", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V129MatchCompletionRateProperties12getCompletedEv) +STUB("ZNrBmVElSLk", JVM_AllocateNewArray) STUB("ZNrq7K50qKI", sceDebugGetEventSubscriptionList) +STUB( + "ZNuJlvivvBQ", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISE_SF_EE) +STUB("ZNxQqUV7cq4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEEplEm) +STUB("ZNxejqPUqoY", MvpHttpDeInit) +STUB("ZO1VvlH3BNo", + _ZN3sce2Np9CppWebApi11UserProfile2V111PresenceApi28ParameterToGetBasicPresencesaSERS5_) +STUB( + "ZO26cBMex2w", + _ZN3sce2Np9CppWebApi14SessionManager2V162PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyFactory7destroyEPNS3_55PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyE) +STUB("ZO2eHs5Xilc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE8capacityEv) +STUB("ZO2nWoTAv60", pselect) +STUB("ZO39wK-KwXE", _ZN7WebCore15SQLiteStatement4stepEv) +STUB("ZO3a6HfALTQ", _ZNSt7collateIwED1Ev) +STUB( + "ZO75Z-NRE1Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEEptEv) STUB("ZO8MOyrVom4", sceDebugGetProcessResourceStatCount) +STUB( + "ZO9nDRXVNe8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEixEm) STUB("ZOCrQPsxrj4", sceUpsrvUpdateGetObfuscatedString) STUB("ZOGrxWLgQzE", sceAudio3dPortFlush) +STUB("ZOHgNNSZq4Q", _ZN3sce2np6HandleD0Ev) +STUB("ZOITb9TRwus", Java_java_io_FileOutputStream_close0) +STUB( + "ZOIvhnZ+v8g", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V136GetMultiVariablesResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_29GetMultiVariablesResponseBodyEEE) +STUB( + "ZOPi91lm3Qs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEE11release_refEv) +STUB( + "ZOWvFlbCVk4", + _ZN7WebCore12ChromeClient29postAccessibilityNotificationERNS_19AccessibilityObjectENS_13AXObjectCache14AXNotificationE) +STUB( + "ZOhXOen3KRs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEE11release_refEv) +STUB("ZOkUts9SDYo", _ZN3sce7Toolkit2NP2V28Matching5Rooms8deepCopyERKS4_) +STUB("ZOlsvpZ-rUs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEC2Ev) +STUB("ZOqdUg9P4SM", uprv_pow10_67) +STUB( + "ZOr8kBtna3s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEC2EPNS2_10LibContextE) +STUB( + "ZOrgT2Z6BKw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEixEm) +STUB("ZOt9NGpVYrE", _ZN7WebCore12ChromeClient25shouldNotifyOnFormChangesEv) +STUB("ZOtyIAiYyjs", WKBundleActivateMacFontAscentHack) STUB("ZP0ti1CRxNA", sceUserServiceSetAccessibilityKeyremapEnable) +STUB( + "ZP202GgegSg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEC1Ev) STUB("ZP4e7rlzOUk", sceSaveDataMount3) +STUB("ZP6QSaYxEQw", mspace_is_heap_empty) +STUB("ZP7HoT1xB1M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEE11release_refEv) +STUB( + "ZP8Gb9LF1cI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEEaSERKSA_) +STUB("ZP9P7ODuiwc", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE3endEv) STUB("ZPD1YOKI+Kw", sceRtcGetCurrentClockLocalTime) +STUB("ZPE2BLWUvaE", _ZNK7WebCore7Element12getAttributeERKN3WTF12AtomicStringE) STUB("ZPLavCKqAB0", sceNpSignalingActivateConnectionA) +STUB( + "ZPUDWmgk5Jo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEEaSERKSA_) +STUB("ZPWTRiiu6N0", _ZN3JSC8Profiler8DatabaseD2Ev) +STUB( + "ZPYUrthiYpw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEneERKSA_) +STUB("ZPZn0hrzgPY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEeqERKS9_) +STUB( + "ZPa0k61jrjs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEEC2ERSA_) +STUB("ZPhCI3jKe5g", _ZN7WebCore19JSHTMLSelectElement15subspaceForImplERN3JSC2VME) +STUB("ZPhz6tYV1ZU", _ZN3JSC21objectConstructorSealEPNS_14JSGlobalObjectEPNS_8JSObjectE) +STUB("ZPi0MY2uifk", WKBundlePageSetCompositingPolicyOverride) +STUB("ZPlZo-3S8XM", _ZN7WebCore4Page28disableICECandidateFilteringEv) STUB("ZPm4ROwjxi4", sceFiosShutdownAndCancelOps) +STUB( + "ZPttrtPHxGc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("ZPuAH1rVJ7k", _ZNK7WebCore11RenderStyle15fontDescriptionEv) +STUB("ZQ2RIeJ8PhA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEEC1EPS6_) +STUB( + "ZQ6v9SwIr5o", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB( + "ZQ9YspE7fkg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEmmEi) +STUB("ZQAK8OGpDO4", _ZN3JSC8JSObject9classNameEPKS0_RNS_2VME) +STUB("ZQAgWkmRzGs", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V110AvatarSizeEEppEi) +STUB( + "ZQID6ioa3dA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE7popBackEv) +STUB( + "ZQOeiyv9Rfs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEneERKS9_) +STUB("ZQR5D3DAAb8", ulocimp_forLanguageTag) +STUB("ZQT4-5fhf7A", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging16GameDataMessagesEE3getEv) +STUB("ZQVMLgFrQcU", _ZN7WebCore9HTMLNames7headTagE) STUB("ZQXE-xS6MTE", sceAudioPropagationPortalDestroy) +STUB("ZQajS19Ixzw", _ZN3sce7Toolkit2NP2V211SharedMedia6VideosC2ERKS4_) +STUB( + "ZQf0aXzgPLU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEaSERKS9_) +STUB( + "ZQfpnqfnX8g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEC1ERS8_) +STUB( + "ZQvty95h+6w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "ZQy0HY9qRhM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEEcvbEv) +STUB("ZQzCTmA7FJo", + _ZN3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead11setOnlineIdERK13SceNpOnlineId) +STUB("ZQzXwokCnUE", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container11getChildrenEv) +STUB("ZR3bI0WBEBo", mono_aot_Sce_Vsh_DataTransferplt) +STUB("ZRAJo-A-ukc", in6addr_any) +STUB("ZRAcn3dPVmA", fwprintf) +STUB( + "ZREWcIENsvI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE8capacityEv) +STUB( + "ZRHezFHr+r0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE5beginEv) +STUB("ZRHyhWkJpD8", WKContextGetTypeID) +STUB( + "ZRNFvvkf6E0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEC1Ev) +STUB("ZRRBeuLmHjc", _ZNKSbIwSt11char_traitsIwESaIwEE5_XlenEv) +STUB( + "ZRUEQJFfBjg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEmmEv) +STUB("ZRWRAA2Sygg", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE4sizeEv) +STUB("ZRXu8ZHZCaw", _ZN7WebCore24CoordinatedGraphicsLayer17syncPlatformLayerEv) +STUB("ZRYGj8fm6dg", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_18GameCustomDataItemEE3getEv) +STUB("ZRYIgiJ9pn0", _SCSUData_67) +STUB( + "ZRZViZyNqSA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEC1Ev) +STUB( + "ZRd2Dsggric", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Network12NetworkStageEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB("ZRfyTwW-Xx8", _ZNK7WebCore6Widget6parentEv) +STUB("ZRga3V8LApU", _ZN9Inspector28DOMStorageFrontendDispatchernwEmPv) +STUB("ZRidQhxpVdw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEEC1Ev) +STUB("ZRkjOjpLlMw", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126BandwidthDownstreamMetrics10setAverageERKi) +STUB( + "ZRpWp5TmrBo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEED2Ev) +STUB("ZRqvUUd8pjA", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V114ResultsVersionEEppEv) +STUB("ZRqxGlHZaAM", mono_profiler_install_statistical) +STUB( + "ZRuCIjF9+tg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEC2Ev) STUB("ZRxKp9vjcNc", sceNpUtilGetWebApi2FakeRateLimitTarget) +STUB("ZRz09DedKw0", uenum_close_59) +STUB( + "ZS2Xj2ULcvM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEEptEv) STUB("ZS5AoprCTt0", sceClPthreadCondattrInit) +STUB( + "ZSA7o2XXe0Y", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEdeEv) +STUB( + "ZSCgCdXKpcA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE21intrusive_ptr_add_refEPS9_) +STUB("ZSDPm9Qz01g", _ZNSs6assignEOSs) +STUB( + "ZSFaeXP4Ep4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEC2Ev) +STUB("ZSHf8kyWYD4", JSValueMakeNull) STUB("ZSHiUfYK+QI", sceCompanionHttpdUnregisterRequestBodyReceptionCallback) +STUB( + "ZSLuh1mulHw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEC1EPS6_PNS2_10LibContextE) +STUB( + "ZSYqGEMww18", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEEC1Ev) +STUB("ZSaCXB5AHYg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEdeEv) +STUB("ZSbwGCuv2Qs", mono_aot_Sce_Facebook_CSSLayoutjit_got) +STUB("ZScuSU2kBf0", _ZN3JSC11ArrayBuffer9shareWithERNS_19ArrayBufferContentsE) +STUB( + "ZSgNZRdV1fM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEC2Ev) +STUB( + "ZSi7Ar-PFnk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEC1Ev) +STUB( + "ZSlkh6FWYGo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEC2EPS6_PNS2_10LibContextE) +STUB("ZSnFMP-dZxc", + _ZNK7WebCore35CrossOriginPreflightResultCacheItem23allowsCrossOriginMethodERKN3WTF6StringERS2_) +STUB("ZSnX-xZBGCg", stpcpy) +STUB("ZSogkXtiB+0", _ZN7WebCore21SQLiteDatabaseTracker35incrementTransactionInProgressCountEv) +STUB( + "ZSpByyRDWsM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE4sizeEv) +STUB("ZSqQPh-uNFg", _ZN3JSC15IsoHeapCellType7destroyERNS_2VMEPNS_6JSCellE) STUB("ZSsFitZ4Kpk", sceFiosOpWaitUntil) +STUB("ZSw+Urcp-9k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEC2EPS8_) +STUB( + "ZSyu7e+vNWo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEdeEv) +STUB("ZSzqRHRb3T0", JVM_ConstantPoolGetIntAt) +STUB("ZT27dJZloqk", _ZN7WebCore9ImageDataC2ERKNS_7IntSizeE) +STUB("ZT4ODD2Ts9o", Need_sceLibcInternal) +STUB("ZT8D4+2N9C4", _ZN4Manx3Ssl10SslContextC2Ev) +STUB( + "ZTD-3MVA-ko", + _ZNK7WebCore12RenderObject20localToContainerQuadERKNS_9FloatQuadEPKNS_22RenderLayerModelObjectEjPb) STUB("ZTJiZPZvNk4", sceKernelGetHwFeatureInfoForDecid) +STUB( + "ZTQLToG7q2g", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE5beginEv) +STUB( + "ZTRQrcIUiqw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("ZTXJzqD72E8", mono_reflection_get_token) +STUB( + "ZTcvy6ei9jA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEptEv) +STUB( + "ZTdBBf4q7ck", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEmmEv) +STUB("ZThM23+9DUQ", _ZNK7WebCore8Settings18webSecurityEnabledEv) +STUB("ZTvtpu2RusU", mono_get_exception_argument_out_of_range) +STUB( + "ZTwXyiKhMYE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEppEi) +STUB("ZTyXRafozvY", __sanitizer_get_unmapped_bytes) +STUB("ZTzz2r6zLoc", _ZN7WebCore26Matrix3DTransformOperation5blendEPKNS_18TransformOperationEdb) +STUB("ZU+VVx9VY6A", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE7popBackEv) +STUB("ZU0aQNKeTng", + _ZN12video_parser13cVideoMetaVWG8getTitleENS_9VP_LANG_eEjNS_15VP_SEARCH_OPT_eEPS1_Pv) +STUB( + "ZU28vnJ-00I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEC1EPS6_PNS2_10LibContextE) +STUB("ZU4MapJqM0U", _Z20WTFCrashWithInfoImpliPKcS0_immmm) +STUB( + "ZU8NdWWWIF8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEC2EPS7_PFvS9_EPNS2_10LibContextE) +STUB( + "ZUBIWczBrj8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEEC1ERSA_) +STUB("ZUCCeNoWQ8o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEE7add_refEv) +STUB("ZUE7L2XTaRc", _Z21sendIpmiDisconnectResii) +STUB( + "ZUESIxcE610", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "ZUG-DhjZGQA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEeqERKS9_) +STUB( + "ZUGdA30Pf8I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEED2Ev) +STUB("ZUJb7X6rU+I", WKBundlePageSetUnderlayPage) +STUB("ZUMUxvly5Iw", WKPageRunBeforeUnloadConfirmPanelResultListenerGetTypeID) +STUB( + "ZUMm3T5rXKM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "ZURKamtpfxo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB("ZUSGrA0mt2E", WKPageGetVibration) +STUB( + "ZUUBK5doDkU", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB( + "ZUUueIh0er4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEptEv) STUB("ZUXxKPpGQ1s", sceNpTcsIntUploadDataToNewSlotBegin) +STUB("ZUcBjUH-Agc", fchownat) +STUB("ZUf92uPkRuA", _ZN3sce2np10MemoryFileD1Ev) +STUB("ZUieLDbr8zU", JVM_GetFieldIxModifiers) +STUB( + "ZUkZoMkvm6Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEmmEi) +STUB("ZUm8heKi4SY", _ZNK7WebCore13HitTestResult12selectedTextEv) +STUB("ZUn0ZQBDyVQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEptEv) STUB("ZUo8cAh5uyc", sceAudioOut2UserCreateEx) +STUB("ZUoKWZ2dJVo", SHA256) +STUB( + "ZUpcoUzgNGg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE23clearOnFinishedCallbackEv) +STUB( + "ZUqFmg2-bc0", + _ZN9Inspector22InspectorDebuggerAgent18setBreakpointByUrlERN3WTF6StringEiPKS2_S5_PKiPKNS1_8JSONImpl6ObjectEPS2_RNS1_6RefPtrINS8_7ArrayOfINS_8Protocol8Debugger8LocationEEENS1_13DumbPtrTraitsISI_EEEE) +STUB("ZUvemFIkkhQ", nanl) +STUB( + "ZUwVjfy2JIc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "ZV-07hvdJf4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEC2Ev) +STUB( + "ZV-vaVr5Cxo", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEEC2ERKSC_) STUB("ZV04pRl7cWU", sceAgcDriverSuspendPointSubmitDirect) +STUB( + "ZV0jtWgJomk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEC2EPS8_) +STUB("ZV7ocqHAbpc", _ZN7WebCore14SchemeRegistry32registerURLSchemeAsEmptyDocumentERKN3WTF6StringE) +STUB( + "ZVGyImrjQmk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEneERKS9_) +STUB("ZVIQnc+YW8k", _ZN7WebCore11MathMLNames11mphantomTagE) +STUB("ZVJYLNEOkSM", _ZN3sce7Toolkit2NP2V212ActivityFeed13ButtonCaptionD2Ev) +STUB("ZVKFNX73ZFA", _ZTVN3JSC32JSDestructibleObjectHeapCellTypeE) +STUB("ZVMhnReGqSA", _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectERNS_9DOMWindowE) +STUB( + "ZVP30qKoz2g", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13integer7IsSetEv) STUB("ZVPYiIh8mkQ", sceLibcGetFH) STUB("ZVRXXqj1n80", sceAppMessagingTryReceiveMsg) +STUB( + "ZVVbWZAXcoM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEED1Ev) +STUB( + "ZVW8vpA-LO4", + _ZN3JSC7JSProxy17defineOwnPropertyEPNS_8JSObjectEPNS_9ExecStateENS_12PropertyNameERKNS_18PropertyDescriptorEb) +STUB( + "ZVcDknEmqgk", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_13WhoLikedStoryENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB( + "ZVmnhTdsIz4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEmmEi) +STUB( + "ZVoZm66RCz8", + _ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime18PropertyDescriptorEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE) +STUB( + "ZVoxbZlKv7M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEED2Ev) +STUB( + "ZVpEkHLDZbI", + _ZN7WebCore15AsyncFileStream7performEON3WTF8FunctionIFNS2_IFvRNS_16FileStreamClientEEEERNS_10FileStreamEEEE) STUB("ZVw46bsasAk", sceNetEpollControl) +STUB("ZVwY7ywc-0U", _ZN9Inspector31RuntimeBackendDispatcherHandlerC2ERKS0_) +STUB( + "ZVxECtt7xFI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEmmEi) +STUB("ZVyMTXVUQN0", _ZN3WTF20ConcurrentPtrHashSetC2Ev) +STUB("ZW-JeYbrPUs", _ZN7WebCore5Color5whiteE) +STUB("ZW3BdLBLfJk", ucase_addCaseClosure_67) +STUB( + "ZW5b+XvHdtc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEEC1ERKS9_) +STUB("ZW5gWeh6BKQ", _ZN3WTF11Persistence5CoderINS_6StringEE6decodeERNS0_7DecoderE) +STUB("ZW67WS+Nw+U", bemp2sys_tsdecoder_readpacket) +STUB( + "ZW99w7vkhd4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEE5resetEPS6_) +STUB( + "ZW9B+IZLv6k", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEcvbEv) STUB("ZWAUCzgSQ2Q", sceUserServiceSetGlsLiveQuality3) +STUB("ZWByLSRPaWI", _ZN12video_parser10cVideoPathD0Ev) +STUB("ZWEcg5Lqdfk", _ZNK3sce7Toolkit2NP2V24Core12ResponseBase8getStateEv) +STUB("ZWG33zgbyzU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEED2Ev) +STUB("ZWH0i9XDup8", _Z17Ime_KbdOpenNativeRN3sce11playstation4core3Ime24ImeKeyboardParamInternalERm) +STUB("ZWHHJjopNwQ", uprv_strnicmp_67) +STUB("ZWHpG+3pbDg", _ZN3WTF13StringBuilder16appendCharactersEPKDsj) +STUB( + "ZWIbysO6daU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE21intrusive_ptr_sub_refEPS9_) +STUB("ZWJCSrdfz0s", _ZN7Nicosia5Scene5StateC2Ev) +STUB( + "ZWKbsVxqpNg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "ZWKhVWzl2Sc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "ZWLkuC5zaqE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB("ZWNK+VuChkg", _ZN3sce7Toolkit2NP2V24Core12ResponseBase14setServerErrorEPNS3_11ServerErrorE) +STUB("ZWNwgNgglzA", ktimer_settime) +STUB("ZWZ9KqoIvQY", _ZN3sce2npeqERK20SceNpCommunicationIdRKNS0_8NpCommIdE) +STUB("ZWaIXu1kBfM", _ZTVN7WebCore11DisplayList14DrawTiledImageE) +STUB( + "ZWg2npbCphY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEptEv) +STUB( + "ZWmiee3f15w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEE5resetEPS8_) +STUB("ZWr8smW+8PM", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V125FrequentlyMutedProperties9getInGameEv) +STUB("ZWy6IcBqs1c", _LSinh) +STUB("ZX4HdM17Q9U", _ZN12Mp4Retriever18releaseFileMetaValEv) +STUB("ZX6m4a48iEw", _ZN3sce7Toolkit2NP2V28Matching4DataD2Ev) STUB("ZX7C79uOujU", sceVideoOutRazorAddCallback) +STUB("ZXAZZ7QZyv8", rgctx_fetch_trampoline_rgctx_103_p) +STUB( + "ZXBP4-+u7gc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEC1Ev) +STUB( + "ZXE6sklM--Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEC1ERKS7_) +STUB( + "ZXEqSBP0CZY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEEcvbEv) +STUB( + "ZXFWZCuOlwg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEC2ERS7_) +STUB("ZXKMi2AM4t8", _ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead19getPlayerAttributesEv) +STUB( + "ZXOaZ7WuRUk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEEC1ERKSA_) +STUB("ZXTUvqK3vIs", WKPageCopyPendingAPIRequestURL) +STUB("ZXVwElkkATY", sqlite3_column_name) +STUB( + "ZXZ2BpHclI8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("ZXas4c1380Y", _ZN3sce2Np9CppWebApi6Common10InitParamsC2Ev) +STUB("ZXdUAtz5eLc", rgctx_fetch_trampoline_mrgctx_8) +STUB("ZXeBY+jrHTw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE5beginEv) +STUB( + "ZXg1jfli+30", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEE7add_refEv) +STUB("ZXiewmkaUY4", _ZN3sce7Toolkit2NP2V24Core13CallbackEventC1Ev) STUB("ZXlTj9RRCFo", sceNpLookupNetIsInit) +STUB( + "ZXoMdrENaw0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEE11get_deleterEv) +STUB( + "ZXpyWgv73tc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEED2Ev) +STUB( + "ZXqAKG76ZDk", + _ZN3JSC14SourceProviderC2ERKNS_12SourceOriginERKN3WTF6StringERKNS4_12TextPositionENS_24SourceProviderSourceTypeE) +STUB( + "ZXsB96JmvE4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEED1Ev) +STUB( + "ZXsM05qxOic", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "ZXtRMSo4wzE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("ZXx+m54cNzU", _ZN3sce7Toolkit2NP2V24Core7Request11MemoryPools29MATCHING_SSL_MEM_DEFAULT_SIZEE) +STUB("ZXz01hGaKEc", WKMediaSessionMetadataCopyAlbum) +STUB("ZY6efASWaMo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEptEv) +STUB( + "ZYCsgBtR+SU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE8pushBackERKS8_) +STUB( + "ZYKQ1cnf4ao", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V113RatingFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_6RatingEEE) +STUB("ZYTeS6sMzYY", _ZN3sce2np9JsonValue7GetBoolEv) +STUB( + "ZYTehDq4VkA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEptEv) STUB("ZYUsJtcAnqA", sceRemoteplayClearAllRegistData) +STUB( + "ZYVBgygjc2s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) STUB("ZYW6lkVPGBM", sceIduInstallPkg) +STUB("ZYdl3SzwX6U", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE5beginEv) +STUB( + "ZYeqvCwkx7M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEppEv) +STUB("ZYf8J3iAOqA", _ZN7WebCore19ProtectionSpaceBaseC1Ev) +STUB("ZYg+xsX7SO4", _ZN3sce7Toolkit2NP2V210Wordfilter7Request13FilterCommentD1Ev) STUB("ZYg4MopBVCM", sceSdmaCopyLinear) +STUB( + "ZYloQE9UsrE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEE11release_refEv) +STUB("ZYpIYZg3Jf4", FTA_Add_Module_type42) +STUB( + "ZYpuc8benBo", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot9setoffsetEi) +STUB("ZYvVSBndbac", mono_aot_Sce_Vsh_PatchCheckerClientWrapperunwind_info) +STUB("ZYxFeQKHURA", _ZN3sce7Toolkit2NP2V27NpUtils12Notification15UserStateChange5resetEv) +STUB( + "ZZ0GOVnbkr8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE5emptyEv) +STUB("ZZ2l9nX-CoM", _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectERNS_11WindowProxyE) +STUB( + "ZZ2lh9PK4S8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB( + "ZZAKLFgj514", + _ZN3JSC17JSArrayBufferView19ConstructionContextC2ERNS_2VMEPNS_9StructureEjjNS1_18InitializationModeE) +STUB("ZZF6cY5Riuo", _ZN25MmsFileUpdaterFsOperation19seekAndWriteTmpFileEmPKvmb) +STUB("ZZNUVGd-+NU", JVM_GetMethodIxExceptionsCount) +STUB("ZZVbcioBE+8", pR3) STUB("ZZYNA4dAAIE", sceVisionManagerRequestFindFace) +STUB( + "ZZatQfN13so", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("ZZiJXuN2QAg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEEaSERS6_) +STUB("ZZiPqOZ9Huc", u_tolower_67) +STUB( + "ZZlZIxdUq-M", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12unsetString8Ev) +STUB( + "ZZlk8D83dCs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEEdeEv) STUB("ZZnvlKc8nfg", sceVdecCoreCreateDecoderBid) +STUB( + "ZZpDSZob2Bs", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSession10initializeEPNS1_6Common10LibContextEPKcSA_) +STUB( + "ZZrb2FEDC+U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEC1Ev) +STUB( + "ZZup5BKXjPs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEEC2EPS5_PFvS7_EPNS2_10LibContextE) +STUB( + "ZZxQfRQu3vY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEcvbEv) +STUB("ZZyQC5ZdhCc", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container7getTypeEv) +STUB("Za00SEoNA2A", _ZN3sce2np13RingBufMemory7DestroyEv) +STUB("Za1R5SRCnkU", _ZN7WebCore19TextResourceDecoder14decodeAndFlushEPKcm) +STUB("Za36l2vh+b4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEE5resetEPS6_) STUB("ZaEVF6WqBP8", sceNetCtlApDialogGetResult) +STUB("ZaGEsEbmOuU", _ZN4Manx6CookiedlEPv) STUB("ZaKa5x61hGA", sceNpDbgDumpText) +STUB("ZaMKAXv7fAA", _ZN7WebCore24CachedResourceHandleBaseC1ERKS0_) +STUB( + "ZaMkUEk2Cwk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("ZaOkYNQyQ6g", _ZNSt14numeric_limitsIDsE9is_signedE) +STUB( + "ZaQJzJSw-YE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEppEv) +STUB("ZaRzaapAZwM", preadv) +STUB( + "ZaaLkKqlCEw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEC1Ev) +STUB( + "ZaitN1imkFY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEED2Ev) +STUB("Zaq5vA9JWl0", _ZN7WebCore8SVGNames12glyphRefAttrE) STUB("ZaqmGEtYuL0", sceCameraGetConfig) +STUB("Zar6r4gb+Hg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE7reserveEi) +STUB("ZaruuGScLRc", ucnv_getDisplayName_67) +STUB( + "ZauniffNPXU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEC1EPS8_) +STUB("ZawVzy-gSAM", GCC_except_table321) +STUB( + "ZayQjYR0lMk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("ZazflmmNNO8", g_markup_parse_context_new) +STUB("Zb+hMspRR-o", _ZSt13get_terminatev) +STUB( + "Zb2e8DyghlI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEC1EPKS8_) +STUB("Zb70g9IUs98", _Xp_getw) +STUB("Zb8BCzTmk2A", _ZN3JSC25JSInternalPromiseDeferred6rejectEPNS_9ExecStateENS_7JSValueE) +STUB("ZbAJcQ5-nPg", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_20NpSessionInformationEEC1Ev) +STUB( + "ZbGcFW4UHbs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEE21intrusive_ptr_add_refEPS7_) +STUB( + "ZbKvYWb6t64", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersD1Ev) +STUB("ZbMnsXy+ktY", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Publisher7setNameEPKc) +STUB("ZbNaHhHxrAA", GCC_except_table386) +STUB( + "ZbNxhFV1RZ8", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessionsD2Ev) +STUB("ZbQUmtQrKl8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEE5resetEPS6_) +STUB("ZbRq4rFyAVQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEE3getEv) STUB("ZbY5LxmH6uA", sceShellCoreUtilGetFreeSizeOfUserPartition) +STUB("Zbaaq-d70ms", _ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED1Ev) STUB("ZbdPHUm7jOY", sceNpWaitEventFlag) +STUB( + "ZbgewgdB8HE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEdeEv) +STUB("ZbhuiY0ENSk", mono_aot_ReactNative_Modules_Vsh_Gct_Telemetryjit_code_start) +STUB( + "ZbiEb3Kfs7Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEC1Ev) STUB("ZbitD262GhY", sceNpTusTryAndSetVariableVUser) +STUB("Zbly+omPcrw", X509_get0_notBefore) +STUB( + "ZbmGVXT0FRo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEE5resetEPS6_) +STUB( + "ZbmkbAmyAW0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEED1Ev) +STUB("ZboDItLlMbg", mspace_atomic_id_mask) +STUB( + "Zbr2RFNUcUI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEptEv) +STUB( + "Zbr2ZBysIQ0", + _ZNK7WebCore12EventHandler20hitTestResultAtPointERKNS_11LayoutPointEN3WTF9OptionSetINS_14HitTestRequest11RequestTypeEEERKNS_10LayoutSizeE) +STUB("ZbuRdLX43qM", + _ZSt9use_facetISt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale) STUB("ZbyfYeyVajk", sceVideoRecordingInitialize) +STUB("ZbywEL0q2VU", _ZN7WebCore8SVGNames14viewTargetAttrE) +STUB("Zc+a6k6i7gY", _ZN3sce2np4Time8AddHoursEl) +STUB("Zc-CpKphsys", _ZN3sce7Toolkit2NP9Utilities10FutureImplD2Ev) +STUB("Zc0mKRRn5hk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEE7get_refEv) +STUB("Zc34winWfMA", _ZN3sce7Toolkit2NP2V28Presence7Request11GetPresenceC1Ev) +STUB("Zc51WImhVbk", ubidi_getPairedBracket_67) +STUB( + "Zc6EZEmNnl8", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V125FrequentlyMutedProperties10setInPartyERKNS1_6Common12IntrusivePtrINS3_29FrequentlyMutedInPartyMetricsEEE) +STUB("Zc9R8DoDXAc", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112UpdateStatusEEmmEv) +STUB("ZcAMuUwcTsE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEE7add_refEv) +STUB("ZcAPE4ibtbk", _ZN3sce7Toolkit2NP2V29Challenge7Request16ConsumeChallengeD2Ev) +STUB( + "ZcAthjKT1i8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEdeEv) +STUB("ZcLLCGKGbjY", _ZN7bmalloc12IsoTLSLayoutC2ERKSt11scoped_lockIJNS_5MutexEEE) +STUB( + "ZcLxizdjM6Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEED1Ev) STUB("ZcQL0iSjvFw", sceFontFtSupportBdf) +STUB("ZcQzzUTFsJU", _ZNK9Inspector15InspectorTarget13isProvisionalEv) +STUB( + "ZcTxh0fCvWc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEppEv) +STUB( + "ZcV+XOm44P4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEED1Ev) +STUB( + "ZcWlwEgvFpI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEC2ERS8_) +STUB("ZcXGHz0Se7k", _ZN7WebCore18ImageBufferBackend22convertToLuminanceMaskEv) +STUB("Zccx8q149WE", _ZNK3sce2Np9CppWebApi6Common6VectorIdE4sizeEv) +STUB( + "Zcf6UQqIjuo", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB( + "ZcfWrWUwphk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("ZchkY2NZMOM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V117InvitableUserTypeEEeqERKS7_) +STUB( + "Zcj1FEgahCs", + _ZN3sce2Np9CppWebApi14SessionManager2V134GetGameSessionsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_18GameSessionForReadEEEEEPNS9_INS3_27GetGameSessionsResponseBodyEEE) +STUB( + "ZclLRgBNEP8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("ZcrAI6S4NBU", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V18Variable22setLastUpdatedDateTimeERK10SceRtcTick) +STUB("ZcwgROJJWSo", WKProtectionSpaceGetServerType) +STUB("Zd+tvQgPYho", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEcvbEv) +STUB("Zd0RKAHM-Cs", uprv_round_67) +STUB( + "Zd4G5Xj2Wk0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEppEv) +STUB("Zd5Z6TPdFMY", _ZN7WebCore9CSSParserC1ERKNS_16CSSParserContextE) +STUB( + "Zd7AtnhogIw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "ZdAdjOqnUAM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "ZdDISLu3EO4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEC1Ev) +STUB("ZdH8r1BhaMM", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry6toJsonERNS_4Json5ValueEb) +STUB( + "ZdITAa9LW+M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEE11release_refEv) +STUB("ZdJI2nFw5Sk", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable10unsetOwnerEv) +STUB( + "ZdL2vZF1iwY", + _ZN3sce7Toolkit2NP2V210Tournament8getEventERKNS3_7Request8GetEventEPNS2_4Core8ResponseINS3_5EventEEE) +STUB( + "ZdO+TpGGeAM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE8copyFromERKS9_) +STUB("ZdQkzR4i3ps", Java_java_io_ObjectInputStream_bytesToFloats) +STUB("ZdVlyQI3f-c", _ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriendsD1Ev) +STUB( + "ZdbZ31GUph4", + _ZN8meta_gen15ImageController18ParseThumbnailFileENS0_19_ParseThumbnailInfoERNS0_20_ResultThumbnailInfoE) +STUB("ZdbuCtCbYGE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEaSERKS7_) +STUB("Zdcq951Fgg0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEC1ERS7_) STUB("Zdd5gybtsi0", sceUserServiceSetLoginFlag) +STUB("ZddzeRZf6x8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEEC1EPS6_) +STUB( + "Zde1+uvL7Tw", + _ZNK7WebCore9FrameView35convertFromRendererToContainingViewEPKNS_13RenderElementERKNS_8IntPointE) +STUB( + "ZdrgG2yINlI", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions16hasincludeFieldsEv) +STUB( + "ZdtoDY-b+1k", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEeqERKS9_) +STUB("Zdtwqk-44gU", WKWebsiteDataStoreSetResourceLoadStatisticsDebugMode) +STUB("ZdzEii0dolA", WKBundlePageSimulateMouseMotion) +STUB( + "Zdzw6-H7UZ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEEC1ERSA_) +STUB("Ze4ewrG3utA", _ZThn8_N3sce2np13JsonDocParser13onStartObjectEjj) +STUB("Ze6Y5wZ9qD0", _ZN3sce7Toolkit2NP2V27Session7SessionC2ERKS4_) +STUB("Ze87WZbuWvY", fuse_fs_bmap) +STUB("Ze8F41xEep0", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed4FeedEE12deepCopyFromERS7_) +STUB("Ze8sorOr1+g", _ZN7WebCore9HTMLNames16onbeforecopyAttrE) +STUB("Ze9jymEeFaw", _ZN3sce7Toolkit2NP2V28Commerce8SkuLabel17SKU_LABEL_MAX_LENE) +STUB("ZeCkk-5Q0gE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE3endEv) +STUB( + "ZeCnhtrXJYU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "ZeCwldgxMOQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEEaSERKSA_) +STUB("ZeCy-q3PKoY", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V219WebApiFilterRequest8fromJsonERKNS_4Json5ValueE) +STUB("ZeJH5yn7Ye4", _ZNK7WebCore14ResourceLoader11frameLoaderEv) +STUB("ZeMBTDU48+g", _ZThn40_N7WebCore8DOMTimerD1Ev) +STUB("ZeMeznRWk0w", _ZNK7WebCore8Document4viewEv) +STUB( + "ZeN4vIuyVjM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE5beginEv) +STUB( + "ZePCwN5Z1rU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("ZePDOvkI13A", _ZNK3WTF9MediaTime8toDoubleEv) +STUB( + "ZeRNEIALqAA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB( + "ZeRU9vx66ko", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEC2EPNS2_10LibContextE) STUB("ZeYpKhsLfG0", sceVrSetupDialogClose) +STUB("Zea3LdT46PY", _ZN7WebCore8SVGNames6cyAttrE) +STUB("ZeaMd3cYs48", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEEaSERS6_) +STUB( + "ZedNZsz57ac", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEEC2Ev) +STUB( + "ZefN6d6xbRo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEC2EPNS2_10LibContextE) +STUB( + "ZehX736dZtA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEEC2ERKSA_) +STUB("Zek8mP3UFuM", uloc_openKeywords_67) +STUB("Zeqe6awrWVM", _ZN7WebCore27PlatformMediaSessionManager20processSystemDidWakeEv) +STUB( + "Zethxor6iQI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEC2ERKS7_) STUB("ZeubLhPDitw", sceSystemServiceNavigateToGoBackWithValue) +STUB("ZewVaBb1pVQ", _ZN7WebCore21ISOTrackEncryptionBoxaSERKS0_) +STUB("Zex3reFRPzc", _ZN7WebCore26HTMLTextFormControlElement15setSelectionEndEi) +STUB( + "Zf4h0UlAzXs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEaSERS7_) +STUB( + "Zf59eCCIiY0", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsers10initializeEPNS1_6Common10LibContextEPKcSA_) +STUB("Zf5ZxLNVTEw", _ZN3sce7Toolkit2NP2V26Trophy7Request18GetTrophyPackGroupC1Ev) +STUB( + "ZfBCAZm1nm0", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124BandwidthUpstreamMetrics18setConfidenceScoreERKi) +STUB( + "ZfFHoo3Xfrc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEplEm) STUB("ZfMHgVDYzzY", sceAvSettingChangeOutputMode3) +STUB( + "ZfQISuB9HKE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE21intrusive_ptr_add_refEPS9_) +STUB("ZfQVzLJrgNY", _ZN7WebCore9FrameView17addScrollableAreaEPNS_14ScrollableAreaE) +STUB( + "ZfS2tecUEzk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEC1Ev) STUB("ZfUouUx2h8w", sceUserServiceSetTraditionalChineseInputType) +STUB( + "ZfWhpKDjLvE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEmmEi) +STUB("ZfaEltcBW3c", utrie_swapAnyVersion) +STUB("ZfcfUuFClfk", _ZN7WebCore32contextMenuItemTagInspectElementEv) +STUB( + "Zfchy2vhGrM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEplEm) +STUB( + "ZfgdnNyfk8E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEE11release_refEv) +STUB( + "ZflIWYmzRuk", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "Zflg9j9fK8o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEE5resetEPS9_) +STUB( + "ZfpC0TJWbBE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEEaSERS9_) +STUB("Zfs3q3gWymA", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku10setEndDateEPKc) +STUB("Zfwffjakq4s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEdeEv) +STUB( + "ZfxNVbp7+08", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUserC2Ev) +STUB("ZfzPxR1H80s", rgctx_fetch_trampoline_rgctx_70_p) +STUB( + "Zg5ph4mngyY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB("Zg8rke998vs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEEC1EPKS6_) +STUB( + "ZgC7osoFuAs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEaSERKS9_) +STUB("ZgHB0Qlh+l0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEEdeEv) +STUB( + "ZgJU-C+mgy4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("ZgJhmu25z0w", _ZN7WebCore10Pasteboard11writeMarkupERKN3WTF6StringE) +STUB("ZgKTOshxDEw", _ZNK7WebCore7Element19beforePseudoElementEv) +STUB( + "ZgNTInJ5Q1k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEmmEv) STUB("ZgOgSWy1ba4", sceVideoCoreMediaSourceRemoveSourceBuffer) +STUB( + "ZgVbanUw+GA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE8copyFromERKS9_) +STUB("Zgaa3xo5b7g", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V511ContentTypeEEppEv) +STUB( + "Zgb6f40UG2U", + _ZN7WebCore21ComplexTextControllerC1ERKNS_11FontCascadeERKNS_7TextRunERN3WTF6VectorINS7_3RefINS0_14ComplexTextRunENS7_13DumbPtrTraitsISA_EEEELm0ENS7_15CrashOnOverflowELm16EEE) +STUB("ZgbOkbpXeqI", mspace_posix_memalign) +STUB("ZggLwqNsGIk", glGenRenderbuffers) +STUB("ZggTco4I9TI", + _ZNK3sce2Np9CppWebApi14SessionManager2V113PlayerSession6toJsonERNS_4Json5ValueEb) +STUB( + "Zgjv5SDSRuY", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getBoolean5Ev) +STUB("ZgkSGlEl1hk", WTFReportError) +STUB( + "ZgoRH0Y33NI", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsers12getsessionIdEv) STUB("Zgq19lM+u2U", sceUserServiceSetNpLoginId) +STUB( + "ZgsOB1tM9KI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "ZgwHR6UKzus", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEE7add_refEv) +STUB( + "ZgyR9ujOFFU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEaSERKS9_) +STUB( + "Zh-wop3fWGE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("Zh0SgNokjz4", _ZN3JSC7Symbols49hasObservableSideEffectsForRegExpMatchPrivateNameE) +STUB("Zh1KEFFP74E", _ZN7WebCore20SharedBufferDataViewD2Ev) STUB("Zh23aSLeeZo", _sceNpAllocatorExFree) +STUB("Zh2uYzsRxA0", ulist_getListFromEnum) +STUB( + "Zh6B8U6jwGg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "ZhEkvCPqM9E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEEC2ERKSA_) +STUB( + "ZhJ3mKK62HA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEC2Ev) +STUB("ZhOwNq3lcpk", curl_easy_getinfo) +STUB("ZhVdSRyrpUI", FTA_Export_Module_bdf) +STUB( + "ZhWxz6kGKwM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEC2EPKS8_) +STUB("ZhiF7wWa-rc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEE7get_refEv) +STUB("ZhqLr0Tldms", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEE11release_refEv) +STUB("ZhtAXOoLNyo", FT_GlyphLoader_Rewind) +STUB("Zhtj6WalERg", _ZNSt14numeric_limitsIDiE6digitsE) STUB("Zi+rAm6czUg", sceDebugGetProcessEventCntlFlag) +STUB("Zi0UuVhaR7k", mono_field_static_set_value) STUB("Zi3dBUjgyXI", sceAmprMeasureCommandSizeWriteKernelEventQueueOnCompletion) +STUB("Zi4XKSpB7ss", HttpCacheWrapperRevalidate) +STUB("Zi4zo-U3iDc", JNU_ClassString) +STUB( + "Zi5BJHrzUy0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("Zi6EFA5C2W8", _ZN7WebCore9HTMLNames18onautocompleteAttrE) +STUB("Zi8G4d9xcDg", _ZNK3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer13getPlayerNameEv) +STUB("Zi9OboKYTiw", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS16FriendsVariablesEEC2Ev) STUB("ZiATpP9gEkA", sceAppContentAddcontDelete) STUB("ZiBFdjUIV3A", sceMbusAddHandle) +STUB( + "ZiBtVj35O60", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEeqERKS9_) STUB("ZiDCxUUGbec", sceCesUcsProfileInitSJis1997Cp932) STUB("ZiDrp+vWE2I", sceAppInstUtilAppStoreCompilationDiscInfo) +STUB( + "ZiJVzYFJjiw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEEC2ERKSA_) +STUB("ZiJqTZVDuPM", _ZNK3sce2Np9CppWebApi6Common8IteratorImEneERKS4_) +STUB( + "ZiXQZUpsBi0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEdeEv) +STUB( + "Zibms4eW+yg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEC1EPS7_PFvS9_EPNS2_10LibContextE) +STUB("ZidcC4PdPik", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEdeEv) +STUB("Zie58FLFGDY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEC1ERKS7_) +STUB("ZinPhQCE6QY", _ZN9Inspector21InspectorRuntimeAgent19disableTypeProfilerERN3WTF6StringE) +STUB("ZinevlqLbHs", _ZN7WebCore9HTMLNames9asyncAttrE) +STUB("Zip9hFEWwiQ", u_writeIdenticalLevelRun_67) +STUB("ZisZod+tWcI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEEmmEv) +STUB( + "ZizoxsK8Z4A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB("Zj-yNSTs8bE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEED1Ev) +STUB("Zj01+0qsrHc", mspace_report_memory_blocks) +STUB("Zj1BNXnzQcg", _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile25unsetIsOfficiallyVerifiedEv) +STUB("Zj3ZV8jWWO8", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchStatusC2Ev) STUB("Zj5FGJQPFxs", sceSystemServiceLaunchStore) +STUB("Zj5zWtk10e8", ubidi_getResultLength_67) +STUB( + "Zj8lRvC9DlE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEC2EPKS8_) +STUB("ZjAh2OVi9bE", + _ZN3JSC8JSObject24getOwnStaticPropertySlotERNS_2VMENS_12PropertyNameERNS_12PropertySlotE) +STUB("ZjGWQIfLDE4", _ZN7WebCore19ResourceRequestBase17clearHTTPReferrerEv) +STUB("ZjHuYO7ZkyA", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEEC1ERS7_) +STUB( + "ZjI3tgUsxcI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "ZjOrEv0froU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEEdeEv) +STUB("ZjPWlTi4iXM", + _ZN7WebCore13GraphicsLayer54noteDeviceOrPageScaleFactorChangedIncludingDescendantsEv) +STUB("ZjUxRZKxfEI", _ZN3JSC13BooleanObject6s_infoE) +STUB("ZjYeUXVjF0s", _ZN3NTF3URL7setPathERKSs) +STUB("Zje1uXnfnaE", WKPreferencesSetLazyImageLoadingEnabled) +STUB("Zjj4PnzLArs", __asan_register_image_globals) +STUB( + "ZjnLBeGX1U0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEEC2ERKSA_) +STUB("ZjoSrNK-n+o", _ZN7Nicosia5Scene5StateD1Ev) +STUB( + "ZjpIhx+3uFA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEEC2Ev) +STUB("ZjqmOuIUgNw", WKAXObjectTitle) +STUB("ZjtRqSMJwdw", sinh) +STUB( + "ZjxnQRlTD68", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEC2EPNS2_10LibContextE) +STUB("Zk0NeF-GSmw", _ZN7WebCore16HTMLTableElement11deleteTHeadEv) +STUB("Zk8idfXrCP0", _ZNK7WebCore11FontCascadeeqERKS0_) +STUB( + "Zk8rKDA7v4E", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V333PsnWebError_error_missingElements6toJsonERNS_4Json5ValueEb) +STUB("ZkBLOP3Jj9E", _ZN7WebCore9FrameView20setWasScrolledByUserEb) +STUB( + "ZkKibkWcJr4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE3endEv) +STUB( + "ZkKyXilUZ2M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEC2ERKS7_) +STUB("ZkP0sDpHLLg", _ZGVNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE) +STUB("ZkSM1nh5zM8", + _ZN3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinitionC1Ev) +STUB("ZkUaFtyRXqY", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V110AvatarSizeEEC1EPS6_) STUB("ZkZhskCPXFw", sceSaveDataInitialize) +STUB("ZkflclGaeKk", _ZN7WebCore14SchemeRegistry30registerURLSchemeAsCORSEnabledERKN3WTF6StringE) +STUB("ZkgA0umW6MQ", _ZN7WebCore9HTMLNames7areaTagE) +STUB("ZkiaQSNeYz8", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4RoomEED2Ev) +STUB("Zkl+J182WlE", _ZN7bmalloc15IsoHeapImplBase9didCommitEPvm) +STUB("Zkmt7pm3d5M", _ZNK7WebCore13HTTPHeaderMap3getENS_14HTTPHeaderNameE) +STUB( + "ZkqfHfOXmOA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEplEm) +STUB( + "ZksNpqtqQfg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEED1Ev) +STUB("ZktOtycH3Q4", ucln_io_registerCleanup_67) +STUB("Zkuj3yHaXQQ", u_strcmpCodePointOrder) +STUB( + "ZkutYlz-sDM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEEC1Ev) +STUB("Zkxpy0zdodA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEED1Ev) +STUB("Zl-f3ACIclw", rgctx_fetch_trampoline_mrgctx_97_p) +STUB( + "Zl2BMetdZQE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEneERKS9_) +STUB( + "Zl3NYfpOkzY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEED1Ev) +STUB( + "ZlA+NPrlkLc", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRanking26unsetgetRankingRequestBodyEv) +STUB( + "ZlCkpiN0Zdg", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api12submitTicketEiRKNS4_23ParameterToSubmitTicketERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_24SubmitTicketResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("ZlDEtQkRJQo", + _ZN3sce2Np9CppWebApi14SessionManager2V113ErrorResponse8fromJsonERKNS_4Json5ValueE) +STUB( + "ZlFXdJsL9g4", + _ZN3sce2Np9CppWebApi15Personalization2V111ErrorEntity8setErrorERKNS1_6Common12IntrusivePtrINS3_5ErrorEEE) STUB("ZlLJEi8RMBs", sceBgftServiceIntUploadRestartTask) +STUB("ZlMxLSd7iz8", _ZN7WebCore9HTMLNames9mediaAttrE) +STUB("ZlOyN7zNWJE", mono_aot_Sce_Vsh_Sl2_Sl2Clientjit_code_start) +STUB("ZlTzqRRuq7o", _ZN7WebCore27PlatformMediaSessionManager29applicationDidEnterBackgroundEb) +STUB( + "ZlVEa0w5Y7s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEC1ERS7_) +STUB("ZlWjjldjArE", mono_aot_System_Xml_Linqunbox_trampolines) +STUB("ZlZ4TA0eSiQ", _ZN7WebCore8Document14setDocumentURIERKN3WTF6StringE) +STUB( + "ZlZSmGrvM6A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE5beginEv) +STUB("ZlkMImbpzN0", __asan_stack_free_5) +STUB("ZllU8nKLJho", mono_aot_Sce_Vsh_Np_AppLaunchLinkunwind_info) +STUB( + "Zlptt-Q3JYI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEEC2EPS8_PNS2_10LibContextE) +STUB("ZlrqWz3NRA8", _ZNK7WebCore9RenderBox33canBeScrolledAndHasScrollableAreaEv) +STUB("ZlrsQnApiXI", _ZNK3JSC9ExecState11callerFrameERPNS_10EntryFrameE) +STUB("ZlsoRa7pcuI", _Daysto) +STUB("ZluPeIuDWbo", _ZN3sce7Toolkit2NP2V26Friend6FriendD1Ev) +STUB("Zm+3BN1raUM", _ZN3sce3Xml3Dom4NodeaSERKS2_) +STUB("Zm2LLWgxWu8", _Xp_movx) +STUB( + "Zm7aexQfJVM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE5emptyEv) +STUB("ZmBHJxoLzQQ", _ZN3sce2Np9CppWebApi7Matches2V127ResponseTeamMemberStatistic8getStatsEv) +STUB( + "ZmGaD+bzchU", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13boolean4IsSetEv) STUB("ZmIeGweZvDU", sceBgftServiceIntUploadHideTask) STUB("ZmPBwBD2tIY", sceAvSettingGetCurrentOutputMode_) +STUB( + "ZmPp4YmJYwc", + _ZN7WebCore10resolveDNSERKN3WTF6StringEmONS0_17CompletionHandlerIFvONSt12experimental15fundamentals_v38expectedINS0_6VectorINS_9IPAddressELm0ENS0_15CrashOnOverflowELm16EEENS_8DNSErrorEEEEEE) +STUB("ZmScQeYnhGc", _ZN3sce7Toolkit2NP2V26Friend12Notification15BlocklistUpdate8deepCopyERKS5_) +STUB("ZmbGnRlFl18", _ZN3JSC19ArrayBufferContentsD2Ev) +STUB("ZmbMDphkqqM", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeINS1_11TusVariableEPvEE10deallocateEPS6_m) +STUB("ZmbqTokIwTQ", _ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_4FileE) +STUB("Zmeuhg40yNI", _ZSt10adopt_lock) +STUB( + "ZmjMfODLOJE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEC2EPKS8_) +STUB("Zmk8Mb9qNQ0", _ZNK3sce3Xml3Dom8NodeList8findItemEPKNS0_6StringE) STUB("ZmmV6iukhyo", sceImeVshInformConfirmdString) +STUB( + "ZmnRX8BE6VQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEE7get_refEv) +STUB( + "Zn-UsjWDI1E", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB( + "Zn3Wd1rnyy4", + _ZN7WebCore9FontCache13fontForFamilyERKNS_15FontDescriptionERKN3WTF12AtomicStringEPKNS_18FontTaggedSettingsIiEEPKNS_19FontVariantSettingsENS_34FontSelectionSpecifiedCapabilitiesEb) +STUB("Zn44KZgJtWY", _ZSt14_Debug_messagePKcS0_j) +STUB("ZnBk6V17qIo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEmmEi) +STUB( + "ZnG3o5eoP0s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEC2EPKS8_) +STUB("ZnIHWmxw0yg", monoeg_g_strsplit) +STUB("ZnO2Qp4WkFU", _ZN7WebCore14DocumentLoaderD1Ev) +STUB("ZnOk1jHEYbs", _ZN7WebCore21JSCSSStyleDeclaration4infoEv) +STUB( + "ZnPsGpM94Os", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEEC2Ev) +STUB("ZnRCitQs2wY", mono_aot_Sce_PlayStation_Imejit_code_end) +STUB("ZnUL8BYDOdU", _ZZNSt6locale5_InitEvE14classic_locimp) +STUB("ZnWGUTH6hZ4", Java_java_net_InetAddress_init) +STUB("ZnX-pfQnudw", _ZN3sce3Xml13AttributeList12addAttributeEPKNS0_6StringES4_) +STUB("ZnaA9b+pI+U", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching6WorldsEED2Ev) +STUB("ZnbAkVo5G6g", _ZN3sce7Toolkit2NP19FriendOfUserRequestC2Ev) +STUB("ZndtujKYAvw", WKBundleInspectorSetJavaScriptProfilingEnabled) +STUB("Znf8tqzNQ-A", Java_java_io_UnixFileSystem_getLength) +STUB("ZnhNmHCwuu4", + _ZN7WebCore27CSSComputedStyleDeclaration6createERNS_7ElementEbN3WTF10StringViewE) +STUB( + "ZniW4u4TLBg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEC1Ev) +STUB("ZnucTodXqc0", JSValueUnprotect) +STUB( + "Znvwme6Kjtc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEneERKS9_) +STUB("Zo-iipctpP0", _ZN7WebCore11MediaPlayer20resourceNotSupportedEv) +STUB("Zo-nsFXHE08", t1_cmap_custom_class_rec) +STUB("Zo1yv7m+mY0", WKStringCreateWithJSString) +STUB("Zo2z2L4ZdqI", _ZN7WebCore9HTMLNames11onclickAttrE) +STUB( + "Zo4Sde1QrT4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEE11release_refEv) STUB("Zo52g0A1XDw", scePlayerInvitationDialogClose) +STUB("Zo6ks32VHL4", _ZNK7WebCore16HTMLMediaElement15bufferingPolicyEv) +STUB( + "Zo7+HO2S9P0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEED2Ev) +STUB("ZoAOplteYUM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEC2ERKS7_) +STUB("ZoG0YQhm6bQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEEC2EPS5_PFvS7_EPNS2_10LibContextE) +STUB( + "ZoHzqN2xEzs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE5clearEv) +STUB("ZoJ7iWsx7RM", _ZN7WebCore8SVGNames13pointsAtXAttrE) +STUB( + "ZoMnT1dp8Tw", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEEiRNS2_10LibContextEPT_m) +STUB( + "ZoOelD9NMEU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB("ZoQmYHd7LJc", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEE3getEv) +STUB("ZoQwCxPBy8Y", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE5beginEv) +STUB( + "ZoTbPKeaRMo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE5emptyEv) +STUB( + "ZoU0CsRn4ac", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_) STUB("ZoXUrTiwKNw", sceNpPanic) +STUB( + "ZoYyNofNNtw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEC1Ev) +STUB("ZoaX1MdsPsI", _ZN3sce7Toolkit2NP2V210Tournament4TeamD1Ev) +STUB("ZobcV3lLWUw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEC2Ev) +STUB("Zofiv1PMmR4", __negti2) +STUB( + "ZohXRQJcv2s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEEcvbEv) +STUB("ZoklLw3zf-A", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_33ActivityFeedSharedScreenshotStoryEED1Ev) +STUB("ZolDcuDSD0Q", + _ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE5_InitERKSt8_Locinfo) +STUB( + "ZomYHcRMgOo", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData21setxPsnNpServiceLabelEj) +STUB("ZopRN-OA-qs", _ZN3WTF8pageSizeEv) STUB("ZopdvNlYFHc", sceUserServiceSetGlsBroadcastersComment) STUB("ZotSeVujZaU", sceKernelGetPsnAccessTraceLogForRcmgr) +STUB("ZowKjlE1t0Q", Java_java_net_Inet6AddressImpl_getLocalHostName) +STUB("ZoySTm84A3k", _ZN3sce7Toolkit2NP2V212EventsClient9EventData12MAX_SIZE_URLE) +STUB( + "Zp0CMnAK+jc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEdeEv) +STUB("Zp3r3o0hG5M", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_19ProductInfoDetailedEED2Ev) +STUB("Zp8kdKB7kKE", _ZNK7WebCore21ISOTrackEncryptionBox21defaultCryptByteBlockEv) +STUB( + "ZpBTL6TX0Ho", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEppEi) +STUB("ZpHojlj2tAw", Java_java_awt_GnmGraphicsEnvironment_run) STUB("ZpO7G7+nd2E", sceVoiceChatRequestDeleteVoiceChatGroup) +STUB("ZpVRh3D86UY", + _ZN15AbstractStorage14YoutubeStorageC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB( + "ZpWlCuQ-A+Q", + _ZN9Inspector20CSSBackendDispatcher7addRuleElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("ZpXWiHivAtw", _ZN13MsvMetaEditor8compact2EtPh) +STUB( + "ZpdOdEblrXc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEED1Ev) +STUB( + "Zpiek75F-Fs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEEdeEv) +STUB( + "ZpjhtgsGtvs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEEC1ERKSA_) +STUB( + "ZpmffbrCBFM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEixEm) +STUB( + "Zpmfg7VS8eI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEptEv) +STUB("ZpnfqdjlwS0", _ZN3sce7Toolkit2NP2V27Session9SessionIdC2Ev) +STUB("Zpt2xfyeRMU", + _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession14setCustomData1EPKvm) +STUB("ZpxyKMEHINg", WKBundleFrameResumeAnimations) +STUB( + "Zpz-K7XnSOo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEneERKS9_) +STUB("ZpzDxqY5Zcw", + _ZN3sce7Toolkit2NP2V23TUS7setDataERKNS3_7Request7SetDataEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("ZpzvHcqgTSw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEEplEm) +STUB( + "Zq52g81sukw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("Zq6OSdS6zf4", JVM_InvokeMethod) +STUB( + "Zq8OOMWu7s8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEdeEv) +STUB("Zq8b5NIAykg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEEC2EPNS2_10LibContextE) +STUB( + "ZqBpGiSeHrI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "ZqEKaaP3Juc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEEC2Ev) +STUB("ZqI3djCpmjQ", _ZNK6icu_6713UnicodeString9getBufferEv) +STUB("ZqKPLKSRnfg", _ZN3WTF8JSONImpl5ValueC2Ed) +STUB( + "ZqPTkXAVYCo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEaSERKS7_) +STUB("ZqSaxTkbXVc", _ZNK3sce2Np9CppWebApi7Matches2V119RequestMatchResults22cooperativeResultIsSetEv) +STUB("ZqVhdZ64zpo", _ZN3WTF8Internal25parseDoubleFromLongStringEPKDsmRm) +STUB("Zqa5tqMhOrI", FcPatternAddMatrix) +STUB("Zqc++JB04Qs", _ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED2Ev) +STUB("Zqf-+DEj2Zc", _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead16unsetCustomData2Ev) STUB("ZqhZFuzKT6U", _sceFiberAttachContextAndSwitch) +STUB("ZqluuMZgcfA", mono_object_new_specific) +STUB("Zqp-j+acPK0", HMAC_CTX_cleanup) +STUB("ZquDaA7NrQ4", _ZNK3sce2np10JsonString6GetStrEPcm) +STUB("ZqvTX8u1bEc", FT_Attach_Stream) +STUB("Zqw1wabU3UM", _ZN3JSC19JSSymbolTableObject6s_infoE) STUB("ZqxPUMisNkY", sceKernelIccControlUSBPowerState) STUB("Zr4h+Bbx0do", sceUserServiceGetSystemLoggerHashedAccountIdParam) +STUB( + "Zr8Zs7nijzQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEEaSERKSA_) +STUB( + "Zr9vHbwPJbM", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification16FriendlistUpdateEE19setCustomReturnCodeEi) +STUB("ZrCNEgNghCU", _ZN3JSC2VM10ClientDataD2Ev) +STUB("ZrE4rk8ZRBE", + _ZN12video_parser13cVideoMetaMP428_createExternalThumbnailInfoEPNS0_18VpThumbnailInfoMP4E) +STUB("ZrFcJ-Ab0vw", _ZTVSt15underflow_error) +STUB("ZrJ6tX4Rkxs", __asan_report_exp_load8) +STUB( + "ZrQtn1WT0GY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEC1EPKS8_) +STUB("ZrUUA39Xu+Q", _ZN7WebCore22throwSequenceTypeErrorERN3JSC14JSGlobalObjectERNS0_10ThrowScopeE) STUB("ZrV5YIqD09I", sceHmdReprojectionFinalize) +STUB( + "ZrXICqpFcLA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEptEv) +STUB( + "ZrXYtiRKZzY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE7popBackEv) +STUB( + "ZrYEjfdytIo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEplEm) +STUB( + "ZrYw52XlTPI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEEcvbEv) +STUB( + "ZrbPLZR4RVs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "ZregFlN9Ykw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEC2Ev) STUB("ZrhgX9VzkFQ", sceHandTrackerSetFaceInfo) +STUB("Zrj9i1EsrGs", _ZN3sce7Toolkit2NP2V27Session7SessionC1ERKS4_) +STUB( + "ZrlAs6zJNEk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("Zrn7xxt5jlI", _ZN3sce7Toolkit2NP2V23TUS7Request10DeleteData22MAX_DATA_VIRTUAL_SLOTSE) +STUB("Zrqo923UvSk", udata_openSwapperForInputData_67) +STUB("ZrroNl9Kk-o", mono_btls_x509_store_ctx_get_foo) +STUB( + "Zrt41rYZCfE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEED2Ev) +STUB( + "ZrurLRmBfYo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "Zrx1uGIz6mU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEEdeEv) +STUB("Zs4p6RemDxM", fdim) +STUB( + "Zs5+6fSn9Ls", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEppEv) +STUB("Zs6c0wBAPzg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed13UsersWhoLikedEEC2Ev) +STUB("Zs7X4Zvuz6c", ucol_getAvailable_67) +STUB("Zs8Xq-ce3rY", _Xtime_to_ts) +STUB( + "ZsChmA81aaU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEED1Ev) +STUB("ZsFGwx6nDws", _ZN3sce7Toolkit2NP2V211SharedMedia11Screenshots5resetEv) +STUB( + "ZsLAzLW-r2c", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("ZsUOENm0Vc8", _ZN3JSC15WeakHandleOwnerC2Ev) STUB("ZsXLFtd2jqQ", pthread_barrier_init) +STUB( + "ZsZRfo3Ky8k", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEdeEv) +STUB( + "ZsbSGsp6Svc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEC1Ev) +STUB( + "ZscgK2PYG4g", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE5beginEv) +STUB( + "Zsda7YYZmiQ", + _ZN3sce2Np9CppWebApi14IdentityMapper2V331PsnWebError_error_errorsFactory7destroyEPNS3_24PsnWebError_error_errorsE) STUB("Zsh1K8YTD1E", sceVdecCoreQueryInstanceSize) +STUB("Zsj3Ji83Pks", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEE11release_refEv) +STUB("ZsrAAP9d0cA", _ZN7WebCore11DisplayList11DrawEllipseD0Ev) +STUB( + "Zsu6KaJjrhA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEixEm) +STUB( + "ZsvNcxD8I5g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEC2Ev) STUB("ZsyQjvVFHnk", sceUserServiceSetPartyMuteList) +STUB("ZsyoHY8zmGw", _ZN9Inspector26LayerTreeBackendDispatcherD1Ev) +STUB( + "Zt06aeFC4ZY", + _ZN7WebCore17LibWebRTCProvider15resolveMDNSNameEN3PAL9SessionIDERKN3WTF6StringEONS3_17CompletionHandlerIFvONSt12experimental15fundamentals_v38expectedIS4_NS_17MDNSRegisterErrorEEEEEE) +STUB("Zt2jWHJQ3OA", _ZN9Inspector15RemoteInspector6ClientD1Ev) +STUB("Zt34+v-wFKQ", GCC_except_table22) +STUB("ZtAz+DEYrCY", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEED2Ev) +STUB( + "ZtBIDcUd2as", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEEC1ERSA_) +STUB( + "ZtILP81pa7Y", + _ZN3sce7Toolkit2NP9Utilities6FutureISt4listINS1_11TusVariableENS1_15AppSTLAllocatorIS5_EEEEC1Ev) +STUB( + "ZtLak4XUNss", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEppEi) +STUB("ZtQi1QZANgc", ptrace) +STUB( + "ZtSRlasGAiA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEE7add_refEv) +STUB("ZtSdpA9a9sU", JVM_Write) +STUB("ZtY98xBvJOc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEE7add_refEv) +STUB("ZtZ3TBrmWUo", WKViewSetViewContextMenuClient) STUB("ZtaxGGmtQ80", sceGnmSysSubmitFlipHandleProxy) +STUB( + "Zth9hUW1CQU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEED1Ev) +STUB("ZtiV7HeGp7M", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13boolean7IsSetEv) +STUB( + "ZtjAhr8NR+Y", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEdeEv) +STUB("ZtjspkJQ+vw", _FSin) +STUB("ZtlTJK5TrZE", mono_aot_Sce_Vsh_FileSelectorAdvanceplt) +STUB("Ztpsft847JY", mono_aot_Sce_Vsh_Sl2_Sl2Commonunbox_trampolines) +STUB( + "ZttIjRBl3Rc", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemPropertiesC1Ev) STUB("Ztx4b2LhRDk", sceVideoOutDriverIncrementBufferLabel) +STUB( + "ZtzrnggEFBg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEmmEi) +STUB( + "Zu-hDJEPy+I", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot9hasfieldsEv) +STUB("Zu81FtazEBI", ureldatefmt_combineDateAndTime_67) +STUB( + "ZuCHPDq-dPw", + _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE16do_get_monthnameES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm) +STUB("ZuIxZ6j0Ftk", _ZN4Manx6Locale11getLanguageEv) +STUB("ZuKpnq8Wfqs", _ZN7bmalloc12sentinelBitsE) +STUB( + "ZuLnnVpLq-Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "ZuRinzzVx1M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEED1Ev) +STUB( + "ZuShX2hswug", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEED2Ev) +STUB( + "ZuT1KV1VR5o", + _ZN7WebCore11DisplayList11SetLineDashC1ERKN3WTF6VectorIdLm0ENS2_15CrashOnOverflowELm16ENS2_10FastMallocEEEf) +STUB( + "ZuW25WGdKlw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEC1EPS8_) STUB("ZuX+zzz2DkA", sceGameLiveStreamingSetSpoilerTag) +STUB("ZuYkeoBhJ1Y", FT_List_Add) +STUB( + "ZuZ6RzJP3t8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE7reserveEi) +STUB("Zuc39RxgKlE", WKBundleReleaseMemory) STUB("ZucoOmNsb7w", sceLncUtilGetEventForShellUI) +STUB("ZufKqNXItD0", _ZN3sce2np16StreamReadBufferD1Ev) +STUB( + "ZuhiJRFvBo0", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanity22getwebApiFilterRequestEv) +STUB( + "ZuifgM6X4hU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE7releaseEv) +STUB( + "ZuoibJwEWBY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE8capacityEv) +STUB("Zv1IpqckCRg", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110ResultTypeEEC1EPS6_) +STUB( + "Zv4C86g2s80", + _ZN3sce2Np9CppWebApi6Common18ResponseHeaderBase5parseEPNS2_10LibContextElPNS2_12IntrusivePtrIS3_EE) STUB("Zv4xfb90Q14", _sceNpHeapMallocImpl) +STUB("Zv6eFW-f-Ak", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEmmEi) +STUB( + "Zv84zqc6MPg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEEC2ERKS9_) +STUB("Zv8ise-DsA8", _ZN3sce7Toolkit2NP2V29Challenge10ChallengesC2Ev) +STUB("ZvA0kNRCWWc", _ZN7WebCore9HTMLNames18aria_labeledbyAttrE) +STUB("ZvBq0HNOwzQ", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEEC1ERKS6_) +STUB("ZvCSTapahr4", _ZN7WebCore15GraphicsContext11clearShadowEv) +STUB("ZvFNdVIxCAU", mono_thread_get_max_threads) +STUB( + "ZvFSMUAG5NM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEE11get_deleterEv) +STUB( + "ZvINAqhJTCM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEEC2Ev) STUB("ZvKgNrrLCCQ", sceNetConfigWlanAdhocPspEmuClearWakeOnWlan) STUB("ZvPKqTJPzd4", scePerfTraceAmmStart) +STUB( + "ZvQH6BsQbYo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEE5resetEPS6_) STUB("ZvSXUtAtj2M", sceDebugGetFiberInfo) STUB("ZvTqRnxTV9c", sceCesSbcToUtf16be) +STUB("ZvUXjKc83Uo", _ZN12video_parser17cVideoProfilerMp412getMediaInfoEjPPNS_13VpMediaInfo_tE) STUB("ZvWzS2wTIMc", sceVideoRecordingQueryMemSize) +STUB("ZvahxWPLKm0", _ZNSt14numeric_limitsIiE6digitsE) +STUB( + "Zvd634LDm94", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEEC2ERSA_) +STUB( + "ZveMhsX4h5s", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("ZvkPpL9mH8Y", _ZN3NTF17URLRequestHttpJobD1Ev) +STUB("Zvkx4SSSeN8", _ZN3JSC7Symbols28symbolHasInstancePrivateNameE) +STUB("ZvmJz4fcT1o", WKWebsitePoliciesCreate) +STUB( + "Zvn3HVeoLIk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEneERKS9_) +STUB("Zvq-pxMW-m8", il2cpp_method_get_param_count) +STUB( + "ZvqIG1feJyw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEE11get_deleterEv) +STUB( + "ZvtuCq-Iks0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) STUB("ZvwO9euwYzc", sceAgcDcbSetCxRegistersIndirect) +STUB("Zvy5f58QddA", _Z25scePlayGoEmuFsEnableChunktPt) +STUB("Zw3QlKu49eM", _ZN3sce2np7Callout11CalloutFuncEPv) +STUB("Zw4nFW49NNc", _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBodyD2Ev) +STUB( + "Zw6jnKOipCo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) STUB("Zw7uUVPulbw", sceAgcDriverGetEqContextId) +STUB( + "ZwDY8c+GieY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEC1EPKS8_) +STUB( + "ZwEwNOMiNCE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEED2Ev) +STUB( + "ZwJu5wzsdHw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEEC2Ev) +STUB("ZwVgwFzKS-0", sorry) STUB("ZwXxYEUQQX0", sceAppInstUtilAppInstallSharePlayLinkByUser) +STUB("ZwapHUAcijE", __atomic_compare_exchange_1) +STUB("ZwbWkee2EK8", _ZN7WebCore14ProcessWarming15initializeNamesEv) +STUB("ZwdC-AAa1ng", _ZNK7WebCore3URL12baseAsStringEv) +STUB("ZwgYQZcuYzM", mono_btls_ssl_set_server_name) STUB("ZwhQSHTqGpE", sceSystemStateMgrStartStadbyTimer) +STUB("ZwisqhZr8is", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEC1Ev) STUB("Zwj3yUNv-O4", sceHandDetectionLocalGetDefaultParam) +STUB("ZwjVCyUXxHo", _ZN4Manx11BundleOrbisD1Ev) +STUB("ZwjmbSr4Cxc", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus11getObjectIdEv) +STUB("ZwkYXHwQ7Mc", + _ZN15AbstractStorage14YoutubeContent13writeExternalESt10shared_ptrINS_7ContentEE) +STUB("Zwn1Rlbirio", _ZNSt14_Num_ldbl_base10is_integerE) +STUB( + "ZwpzxJUv6xE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEeqERKS9_) +STUB("Zwq3UE1tJpk", _ZN3sce2np9JsonValueC1EP14SceNpAllocatorNS1_9ValueTypeE) STUB("ZwsBB3s8qMk", sceCompositorReleaseIndex) +STUB("Zwz6pQRbIaI", _ZNK7WebCore25DropShadowFilterOperation12stdDeviationEv) +STUB("ZxAOrkVdUbM", _ZN3WTF8JSONImpl5ValueC1Ev) +STUB( + "ZxGGKQyhO7Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEEC2EPS7_PFvS9_EPNS2_10LibContextE) +STUB("ZxK-xo0N1xI", _ZN15AbstractStorage14DailymotionAPI7SuspendEv) +STUB( + "ZxK632vf74A", + _ZN9Inspector22AuditBackendDispatcher5setupElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "ZxTh9vMWkWc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEaSERKS7_) +STUB("ZxV-F7CiZa8", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product9unsetSkusEv) +STUB("ZxXJId9uOoU", _ZN3sce2np14JsonObjectImplC2EP14SceNpAllocator) STUB("Zxa0VhQVTsk", sceKernelWaitSema) +STUB("Zxe-nQMgxHM", _ZNKSt7collateIwE12do_transformEPKwS2_) +STUB( + "ZxfJetBemQY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEE11release_refEv) +STUB( + "ZxjFQX+b-3g", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "ZxlXd3HdjiY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEE3getEv) +STUB("ZxnyBy8reV4", u_strToUTF32) +STUB( + "Zxqmp+TbssI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEED2Ev) +STUB("Zxwv65E2iCs", _ZN9Inspector24RemoteControllableTargetD2Ev) +STUB( + "ZxylD0E37lc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEED2Ev) +STUB("ZxzDnuurwYI", rgctx_fetch_trampoline_mrgctx_27) STUB("ZyBRuMgQYvM", ScePsmMonoFree) STUB("ZyC0HzaV6VU", sceFaceDetectionGetDefaultParam) +STUB("ZyClRtTBv5w", _ZN3JSC8JSBigInt12tryRightTrimERNS_2VME) +STUB( + "ZyEMxB-INZw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEED1Ev) +STUB( + "ZyFj+5luzQY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE7reserveEi) +STUB("ZyJDe-wJj4g", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEE7get_refEv) +STUB("ZyJmYl9X0qI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEED2Ev) +STUB( + "ZyMBcGCVHDA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("ZyO6xMl47rI", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V115FrequentlyMuted8fromJsonERKNS_4Json5ValueE) +STUB("ZyYwUlWg2vE", + _ZN3JSC16InternalFunction14finishCreationERNS_2VMERKN3WTF6StringENS0_14NameVisibilityE) +STUB( + "Zyapl5+ZiOI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE10setContextEPNS2_10LibContextE) +STUB("ZyhzuBlX3LA", _ZN3sce2Np9CppWebApi6Common8IteratorIjEC2Ev) +STUB("Zylp1RmlarU", _ZN3sce2Np9CppWebApi7Matches2V15Error7setCodeERKi) +STUB("ZyoSVlUs3iM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEE7get_refEv) +STUB("Zys2AhUVVN4", _ZN3PAL8KillRing16setToYankedStateEv) +STUB( + "Zys5VtB3C3U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "ZytZEA1TqKM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEmmEi) +STUB("ZytfFk4mKnU", _ItL_qS3) +STUB("Zz-RfDtowlo", _ZNSt8messagesIwE5_InitERKSt8_Locinfo) +STUB("Zz1GdSKUpI8", mono_aot_Newtonsoft_Json_PlayStationmethod_addresses) STUB("Zz5jZ8qvJ78", sceSdecQueryMemorySwHevc) +STUB( + "Zz6aQngkyHs", + _ZN3sce2Np9CppWebApi14SessionManager2V131GameSessionMemberForReadFactory7destroyEPNS3_24GameSessionMemberForReadE) STUB("ZzE6WN+QBbE", sceFiosCachePrefetchFileRangeSync) +STUB( + "ZzF4rVUUmtk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEE11get_deleterEv) +STUB( + "ZzIOxiHWWYw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEE11release_refEv) +STUB("ZzSK4rLHRS4", uloc_getDefault_59) +STUB("ZzUcUmE7TF4", WKPageGetAcceleratedCompositingBackgroundColor) +STUB("ZzX1jJqNVwg", _ZN7WebCorelsERN3WTF10TextStreamENS_21ViewportRectStabilityE) +STUB( + "ZzXjgRi6Qrc", + _ZN6WebKit17ChildProcessProxy11sendMessageESt10unique_ptrIN3IPC14MessageEncoderESt14default_deleteIS3_EEj) +STUB( + "ZzYH6JCBLJY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEC2Ev) +STUB("ZzaGM24XNFI", dvdAuthFinalize) +STUB( + "ZzbC4c9kWDc", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE5getIdEv) +STUB("ZzdmuFPpBq0", JVM_GetHostName) +STUB( + "ZzdpHKGB3Fg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEE5resetEPS6_) +STUB( + "ZzgO83gp0O4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEC1EPNS2_10LibContextE) +STUB( + "ZzjVqNtjUdY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEEC2Ev) +STUB("ZzkCpCDDeIE", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking8TempRankEE3getEv) +STUB("ZzkpRWtyNFc", WKPreferencesEnableAllExperimentalFeatures) +STUB("Zzl5LrYHPYI", _ZN7WebCore19HTMLTableRowElement5cellsEv) +STUB( + "Zzm+hSY8FQY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEE7add_refEv) +STUB( + "ZznhEh3D-+A", + _ZN3sce2Np9CppWebApi14ConnectAccount2V221PSNError_errorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_14PSNError_errorEEE) +STUB( + "Zzo2qwKnwAs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEE5resetEPS9_) +STUB( + "ZzuuS5Bn6QE", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEEiRNS2_10LibContextEPT_m) STUB("Zzxstsom9-w", sceKernelGetPhysPageSize) +STUB("ZzynKUErenQ", Java_com_sony_gemstack_io_factories_jar_JarEntryInputStream_setProxy) STUB("ZzzC3ZGVAkc", sceKernelGetModuleList2) +STUB( + "a+3Dl6aSSn4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEEC2Ev) +STUB("a+3rOl9sjsA", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEEaSERKS6_) +STUB( + "a+7TLTZziN8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEC1EPS6_PNS2_10LibContextE) +STUB("a+8yAm1ZfCE", uloc_forLanguageTag) +STUB("a+AvVDCX+mw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE5beginEv) +STUB( + "a+BuNNnR2XU", + _ZN3JSC16InternalFunction23createSubclassStructureEPNS_14JSGlobalObjectEPNS_8JSObjectEPNS_9StructureE) +STUB("a+KK7PmpVso", _ZN3NTF5MutexC1Ev) +STUB("a+MfnphqlHQ", rgctx_fetch_trampoline_rgctx_43_p) +STUB("a+Ns-FwjHwM", png_set_keep_unknown_chunks) +STUB("a+Ow009IiRE", _ZN3JSC9parseDateEPNS_14JSGlobalObjectERNS_2VMERKN3WTF6StringE) +STUB("a+V9xheActI", _ZN3sce7Toolkit2NP2V212EventsClient11EventInGame5resetEv) STUB("a+VaiTJSKDI", sceNpDbgStrHex) +STUB("a+W7HHlwpBs", _ZN3sce4Json6ObjectC1ERKS1_) +STUB( + "a+aDBmjjFR8", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEEiRNS2_10LibContextEPT_m) +STUB( + "a+gvtKlz3nk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEE7add_refEv) +STUB( + "a+iwGRjuYwo", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEEiRNS2_10LibContextEPT_m) +STUB( + "a+jsSSNHet4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB("a+km6hI3XmM", _ZN7WebCore17HTMLOptionElement8setValueERKN3WTF6StringE) +STUB( + "a+r3LNJH4tw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("a-+SeZezvQs", _ZN3WTF8JSONImpl10ObjectBase3endEv) +STUB( + "a-1bf8VqyHk", + _ZN9Inspector28DOMDebuggerBackendDispatcherC2ERNS_17BackendDispatcherEPNS_35DOMDebuggerBackendDispatcherHandlerE) +STUB( + "a-8d1cZU1Ho", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEppEv) +STUB( + "a-DLKQIJzr4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEED2Ev) STUB("a-DukhK9o9Q", sceCesIso2022StrGetUcs2Len) +STUB( + "a-GoNZf5hUE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEC2EPS8_) +STUB( + "a-HFbro5bMg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEEC2ERKSA_) +STUB("a-IN6rnSL1I", _ZN3sce2Np9CppWebApi11UserProfile2V15Error7setCodeERKl) +STUB( + "a-J1dtp26Nw", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUser17hasnpServiceLabelEv) +STUB( + "a-KocFkIJiA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE8capacityEv) +STUB( + "a-LHP9X0jDw", + _ZN10Deprecated18ScriptFunctionCallC1ERKNS_12ScriptObjectERKN3WTF6StringEPFN3JSC7JSValueEPNS8_14JSGlobalObjectES9_RKNS8_8CallDataES9_RKNS8_7ArgListERNS4_8NakedPtrINS8_9ExceptionEEEE) +STUB("a-SRL8gpW5A", _ZN3sce7Toolkit2NP2V24Auth7Request10GetIdTokenD2Ev) +STUB("a-VPEgYCWSs", _ZN3JSC13ErrorInstance6s_infoE) +STUB("a-WwvfRMWaY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V117ResponseMatchTypeEEaSERKS7_) +STUB("a-YNP4O13AU", + _ZN9Inspector26DebuggerFrontendDispatcher19scriptFailedToParseERKN3WTF6StringES4_iiS4_) +STUB("a-aMMUXqrN0", _ZNK3sce4Json5ValuecvbEv) +STUB( + "a-hR4VbQsMM", + _ZN7WebCore15reportExceptionEPN3JSC14JSGlobalObjectEPNS0_9ExceptionEPNS_12CachedScriptEPNS_16ExceptionDetailsE) STUB("a-hXdI7w8Dg", sceMbusSetCameraAppModuleFocus) +STUB("a-oA44WAFhU", _ZTVN9Inspector28InspectorScriptProfilerAgentE) +STUB( + "a-ufHND-ccQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEEC1ERKSA_) +STUB("a-wqrc3Rryk", _ZN3sce2Np9CppWebApi7Matches2V14TaskD2Ev) +STUB("a-xgqpSqYX8", _ZN3sce3Xml3Sax6Parser16setResolveEntityEb) +STUB("a-z7wxuYO2E", _ZNSt4_Pad8_ReleaseEv) +STUB("a0+h8BwDUUA", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce8ProductsEE3getEv) +STUB( + "a006M1SOeoc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("a00pDwzyNZ4", rgctx_fetch_trampoline_rgctx_85_p) STUB("a05rlp573ow", sceSystemTtsUnregisterCallback) +STUB("a08n9C9z+2A", _ZN7WebCore15DatabaseTracker17closeAllDatabasesENS_20CurrentQueryBehaviorE) +STUB("a0GRkQA7TTg", mono_aot_Sce_Vsh_FileSelectorAdvanceplt_end) +STUB( + "a0H00DzRxc8", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeaderD2Ev) +STUB("a0JDNtaTcYI", + _ZN3sce7Toolkit2NP2V29Messaging7Request20GameDataMessageImage18IMAGE_PATH_MAX_LENE) +STUB( + "a0JbVCpzVZc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE7popBackEv) STUB("a0LLrZWac0M", sceFiberRun) +STUB( + "a0OEKj78NEs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("a0OSNFVEwKg", _ZN12video_parser17cVideoProfilerMp415getSubtitleInfoEjPPNS_13VpMediaInfo_tE) +STUB( + "a0PtMaRPkZw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEED2Ev) +STUB("a0SVtiDOBgM", WKPageGetFocusedFrame) +STUB("a0TKeqf7GDQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEED2Ev) +STUB("a0UEJAPsYSo", _ZNK7WebCore27PlatformMediaSessionManager29applicationWillBecomeInactiveEv) +STUB("a0W-aTAtW0o", mono_thread_get_main) +STUB( + "a0Y-FGkqKJs", + _ZNK7WebCore5Range17absoluteTextRectsERN3WTF6VectorINS_7IntRectELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEEbNS1_9OptionSetINS0_20BoundingRectBehaviorEEE) +STUB("a0Zj1cVYuHQ", + _ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponseC2EPNS1_6Common10LibContextE) +STUB("a0bNzCMRqT0", _ZN3sce7Toolkit2NP2V29Challenge7Request21GetReceivedChallengesD2Ev) +STUB("a0bksb5xlc8", _ZNK7WebCore14SecurityOrigin10canRequestERKN3WTF3URLE) +STUB("a0c030qfllk", _ZNK3sce2Np9CppWebApi11UserProfile2V15Error10getMessageEv) +STUB("a0crzpewbKY", _ZN3JSC16CompleteSubspaceD2Ev) +STUB("a0gHBdxZC2k", _ZN3sce7Toolkit2NP2V29Messaging7Request20GameDataMessageImageC2Ev) +STUB( + "a0krZPwAuKw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEC2EPNS2_10LibContextE) +STUB( + "a0lxdT9PxmA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEE7get_refEv) +STUB( + "a0mqumwRDWA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEC2EPS8_) +STUB( + "a0rZC9dDdM8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE6resizeEj) +STUB( + "a0zs2ITV-lo", + _ZN7WebCore15UserInputBridge24logicalScrollRecursivelyENS_22ScrollLogicalDirectionENS_17ScrollGranularityENS_11InputSourceE) +STUB("a11ljS6eEFQ", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_7NpUsersEEC1Ev) +STUB("a14+Sqrvr+8", + _ZN3JSC8JSObject12defaultValueEPKS0_PNS_14JSGlobalObjectENS_22PreferredPrimitiveTypeE) +STUB( + "a14-ajpauUE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("a1GlhuNPcNc", _ZTVN4IPMI6Server12EventHandlerE) +STUB( + "a1LHdBJmdbc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEEC2ERSA_) STUB("a1LMFZtK9b0", sceHmdInternalSocialScreenSetFadeAndSwitch) STUB("a1LmvXhZ6TM", sceHmdInternalDfuStart) +STUB("a1PKmbbPbpk", _ZNK3sce7Toolkit2NP15AppSTLAllocatorItE8max_sizeEv) +STUB("a1S5ypgxOOI", _ZN9Inspector21DOMFrontendDispatcherdaEPv) +STUB("a1UTZkIReDs", _ZN7WebCore16HTMLMediaElement4playEv) +STUB("a1WXiNClrZU", Java_java_lang_reflect_Array_get) +STUB( + "a1YEARVJKd8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEE3getEv) +STUB( + "a1bmk2TqtPw", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot11hassortModeEv) +STUB( + "a1gkTuSmHno", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEaSERKS9_) +STUB( + "a1jK7VqreZA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "a1wn2EnEF8U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEppEv) +STUB( + "a2-GqQxqsyc", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsers31getxPSNSESSIONMANAGERACCOUNTIDSEv) +STUB( + "a25n7DS8GUA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE5beginEv) +STUB("a25spvWYEOA", u_digit) +STUB("a281GnGa7qo", usearch_setText_59) +STUB("a2GBMUKloNk", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredUsersEEC1Ev) +STUB("a2IIKj-VkoU", utrace_format) +STUB("a2Jp2rCo5q0", mono_image_strong_name_position) +STUB("a2MOZf++Wjg", srandomdev) +STUB("a2OFKemWbTc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEC1ERKS7_) STUB("a2P9wYGeZvc", pthread_setprio) +STUB( + "a2STeAqE4Yk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE5beginEv) +STUB( + "a2T+7obN844", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "a2UTg5RV3oc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("a2VWRSroXlY", _ZN7WebCore21HTMLOptionsCollection16setSelectedIndexEi) +STUB( + "a2W8ZLS6eHc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE5clearEv) +STUB("a2Zv3idT0sU", _ZN3sce4Json6Object8iteratorC1Ev) +STUB( + "a2edulJrA1A", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE4sizeEv) STUB("a2iXMbcH7Xc", sceUpsrvUpdateGetDownloadProgress) +STUB( + "a2ikxQmD+E8", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V333CommunicationRestrictionStatusApi44ParameterToGetCommunicationRestrictionStatus13isInitializedEv) +STUB("a2kjl5ALgIw", _ZNK3JSC12DateInstance26calculateGregorianDateTimeERNS_2VM9DateCacheE) +STUB( + "a2lLjGn-6Mo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("a2nS6F4hBDI", WKPreferencesSetUserTimingEnabled) +STUB("a2pNAyvprgE", atexit_register) STUB("a2qdVU8RWb4", _sceNpAllocatorExMalloc) +STUB( + "a2r4QWPQoO0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEC2ERKS7_) +STUB("a2tMsw6tczo", _ZNK3sce2Np9CppWebApi13InGameCatalog2V513ContentRating9nameIsSetEv) +STUB("a2u5N2elGKs", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE3endEv) +STUB("a2xNcwL7WaI", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead21unsetUsePlayerSessionEv) +STUB("a2xaqg4pYVg", _ZN7WebCore11HistoryItem18setPageScaleFactorEf) +STUB( + "a2zH08GtIn0", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEiRNS2_10LibContextEPT_m) +STUB( + "a30njnvq+S8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEmmEi) +STUB("a36cmst-zBY", _ZN7WebCore25DropShadowFilterOperationC2ERKNS_8IntPointEiRKNS_5ColorE) +STUB("a39DFeFUxK0", _ZN9Inspector25NetworkFrontendDispatchernwEmPv) +STUB("a3BNqojL4LM", atanhl) +STUB("a3GTqTQrSRI", _ZN7WebCore8Document6cookieEv) +STUB( + "a3QTjTcpIlg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEC1Ev) +STUB("a3T5ylvPLd8", _ZN15AbstractStorage10YoutubeAPI7SuspendEv) +STUB( + "a3a9odmrbM4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEEptEv) +STUB("a3bwcwi+BGw", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed12SharedVideosEE3setEv) +STUB("a3dbw1f68PQ", _ZN3JSC15WeakHandleOwnerD2Ev) +STUB("a3ilwAlHOEA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEC1ERS7_) +STUB( + "a3qdBYrSvDg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("a3rhW-q8XQs", _ZNK7WebCore12ISOWebVTTCue17originalStartTimeEv) STUB("a3tLC56vwug", sceGnmSqttFinishTrace) +STUB("a3thfBcgdFc", _ZN7WebCore4Page20injectUserStyleSheetERNS_14UserStyleSheetE) +STUB( + "a3xJqjT9UuE", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionPropertiesC2Ev) +STUB( + "a4-VaU2pI6w", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEdeEv) STUB("a41mGTpWvY4", sceUserServiceSetThemeBgImageZoom) +STUB("a46OYTbrKS8", _ZN3JSC7Symbols38putMapIteratorInternalFieldPrivateNameE) +STUB("a46gWR+-Sj8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEC1Ev) +STUB( + "a473OMzUcj8", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE8sendDataEPKvm) +STUB("a4DFYgQfWNI", + _ZN3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferReadC1EPNS1_6Common10LibContextE) +STUB("a4KKvF-ME4M", _setsockopt) +STUB("a4P5tSNq9yE", _ZN7WebCore22EmptyFrameLoaderClient13committedLoadEPNS_14DocumentLoaderEPKci) +STUB( + "a4PmXY3-JgQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEE11get_deleterEv) +STUB( + "a4U9NzFg-tg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEC1EPS6_PFvS8_EPNS2_10LibContextE) STUB("a4VsZ4oqn68", sceHttpSetResponseHeaderMaxSize) +STUB("a4WaF-he1Rk", _ZN3sce2Np9CppWebApi7Matches2V114ResponseMember8fromJsonERKNS_4Json5ValueE) +STUB( + "a4ZYe97qODk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEE21intrusive_ptr_sub_refEPS7_) +STUB("a4ZgINI42y0", _ZN12video_parser14cVideoOperatorC1EPKc) +STUB("a4gLGspPEDM", trunc) +STUB("a4iChJsJKf8", _ZN12video_parser5vpcom3rtc19GetCurrentLocalTickEPm) +STUB( + "a4jAb+Nzbms", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEE3getEv) +STUB("a4lfjmCaMyY", Java_com_sony_bdjstack_system_BDJModule_startTitle) +STUB("a4n42cRWZdQ", _ZTVN7WebCore11DisplayList5ScaleE) +STUB("a4nA96ohus4", _ZN3sce2Np9CppWebApi7Matches2V117LeaveMatchRequest17setNpServiceLabelERKi) +STUB("a4q15LI1a4E", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUserD1Ev) STUB("a4sYJjuBVbg", sceAvSettingSetVideoOutputColorEffect) +STUB( + "a5-XkPDoY0U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("a51bkE3Vyb8", WKContextSetPrivilegedNetworkBandwidth) +STUB( + "a535fjgAlGA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEeqERKS9_) +STUB("a54t8+k7KpY", _ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE) +STUB( + "a57wjRBe0Ao", + _ZN3sce7Toolkit2NP2V27Session17getInvitationDataERKNS3_7Request17GetInvitationDataEPNS2_4Core8ResponseINS3_14InvitationDataEEE) +STUB("a58eK0llmJI", mono_aot_ReactNative_PUIunbox_trampolines_end) +STUB( + "a58v7b1bGpg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEE3getEv) +STUB("a596UTjU-o0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEEC2ERKS7_) +STUB( + "a59Ta7shU4E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE8capacityEv) +STUB("a5ESb9DEKkQ", _ZN7WebCore21DiagnosticLoggingKeys22domainCausingJetsamKeyEv) STUB("a5IfPlpchXI", sceNpBase64GetDecodeSize) STUB("a5JZMyjFV68", pthread_barrierattr_getpshared) +STUB("a5KN09oDEVc", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_19WordFilterSanitizedEE3getEv) STUB("a5Kjjq6HgcU", sceSystemServiceEnableSuspendNotification) +STUB("a5MOGqrrtqo", WKBundleSetGeolocationPermission) +STUB("a5MdWrdFyC4", mono_aot_Sce_Vsh_Lxunbox_trampolines_end) STUB("a5N7lAG0y2Q", sceAppContentTemporaryDataFormat) +STUB("a5NUHC2I-Hg", _ZN3JSC7Symbols23Float32ArrayPrivateNameE) +STUB("a5SMUgT6pmI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEaSERKS7_) +STUB( + "a5V7QT0UTM8", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V324ValidationConstraintInfoC1EPNS1_6Common10LibContextE) +STUB("a5VXmjBxx38", _ZN3sce7Toolkit2NP2V27Session7Request7GetInfoC2Ev) +STUB("a5WSMLIWDd8", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence8PresenceEE19setCustomReturnCodeEi) +STUB("a5WkqZXnG2w", cairo_scaled_font_status) +STUB( + "a5XPrnre1XA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("a5YUV7XyfJ4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEEptEv) +STUB("a5bJadD0JQs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEC2Ev) +STUB( + "a5clMAAfscw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEmmEv) +STUB("a5ee7veMD9k", WKWebsiteDataStoreSetResourceLoadStatisticsFirstPartyHostCNAMEDomainForTesting) +STUB( + "a5gi8T88pzI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE4sizeEv) +STUB( + "a5oWCMdsnAw", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEEiRNS2_10LibContextEPT_m) +STUB("a5w7siUfL6w", uchar_swapNames_67) STUB("a5xFueMZIMs", sceCameraGetContrast) STUB("a5zvjYkJu0s", sceOpusDecCreate) +STUB( + "a65zPtBDq-g", + _ZN3sce2Np9CppWebApi14ConnectAccount2V212PartnerToken9setScopesERKNS1_6Common6VectorINS5_6StringEEE) +STUB("a68MMvOebD0", WKContextSetFilterHTTPProxy) +STUB( + "a68WjjWJG-4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEE11get_deleterEv) +STUB( + "a6AQm9wE6-4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE8pushBackERKS8_) +STUB("a6CYO8YOzfw", fwscanf) STUB("a6HOJ0hpGiY", sceFsISSchedConfigDescriptor) +STUB( + "a6JnXiBwQFY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEE7get_refEv) +STUB( + "a6PHfz-nE9U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEEC2Ev) +STUB("a6Teg5qGR1g", _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead14unsetSessionIdEv) +STUB( + "a6UwjneIUlU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEE11get_deleterEv) +STUB("a6VjjclUCfk", _ZN7WebCore14JSWebAnimation11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("a6X9xlobc84", _ZN7WebCore11PageOverlay5clearEv) +STUB( + "a6ZuMyWqOIE", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "a6cnpKWpPZc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEmmEi) +STUB("a6fyF42wxy4", ucurr_register_67) +STUB( + "a6hsM0qzUNg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEC1ERKS7_) +STUB("a6kJtySHBpw", _ZN7WebCore9HTMLNames13draggableAttrE) +STUB( + "a6nEBUDyt0Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEmmEi) STUB("a6sS6iSE0IA", sceNetConfigRoutingShowtCtlVar) +STUB("a6tQ3jHKEO8", Java_java_awt_GnmDefaultGraphicsConfiguration_createColorModel) +STUB("a6vKrMw6Sog", _ZN15AbstractStorage18DailymotionContentD2Ev) +STUB( + "a6y2c5wBfLY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) STUB("a6yeQI2uXGk", sceSpPthreadMutexattrInit) +STUB("a6yvHMSqsV0", _ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED1Ev) +STUB( + "a7-CIglwsqQ", + _ZN3sce2Np9CppWebApi14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyC2EPNS1_6Common10LibContextE) +STUB("a70Z0d+EVGs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE6resizeEj) +STUB( + "a70oiTgG2Po", + _ZN3sce2Np9CppWebApi14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerC2EPNS1_6Common10LibContextE) +STUB("a75tEEsbbrs", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119SubtaskAvailabilityEEC1Ev) +STUB("a76a3D9Adts", _ZN3sce2np9NpTitleId5ClearEv) STUB("a7DM+5cDkAg", sceKernelGetResidentFmemCount) +STUB("a7FwU7ien1s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEEC2EPS6_) +STUB( + "a7LValOsXfU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE6resizeEj) +STUB("a7MJrCW6DS8", _ZN3JSC8Debugger24currentDebuggerCallFrameEv) STUB("a7MagzVs4cI", sceDebugGetFileList) +STUB("a7RlARfexoo", FT_Stream_OpenMemory) +STUB("a7ToDPsIQrc", __inet_aton) +STUB( + "a7U1B9TtErA", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetrics6toJsonERNS_4Json5ValueEb) +STUB("a7VcgGjS5GQ", _ZN12video_parser16cVideoContentMp4D2Ev) +STUB( + "a7bT7JcJTZQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("a7fTFoY9UJw", _ZThn16_N9Inspector22InspectorDebuggerAgentD1Ev) +STUB("a7g2st0fBKY", _ZN7WebCore28InspectorFrontendClientLocal25changeAttachedWindowWidthEj) +STUB( + "a7gJuX-UhiA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEC2ERS7_) STUB("a7ipJQTfQwo", sceNpPushStartNotification) +STUB("a7k0prJJpKA", _ZN9Inspector32DatabaseBackendDispatcherHandlerD2Ev) +STUB("a7kqcDA-p0A", _ZN3JSC7Symbols31iterationKindEntriesPrivateNameE) +STUB("a7n1pzQOyj4", ucal_getTimeZoneTransitionDate_67) +STUB( + "a7nw+OiciFg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE8capacityEv) +STUB("a7qE6UIxzwA", _ZN7WebCore9HTMLNames16onmouseenterAttrE) +STUB("a7r4LkzI1T4", _ZN3sce7Toolkit2NP11EntitlementC2Ev) +STUB( + "a7sI39vUIu0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE5beginEv) +STUB("a7v+N4YyAFk", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersC1Ev) +STUB("a7yz7vOyBxk", WKCookieManagerSetHTTPCookieAcceptPolicy) +STUB("a7zwN73E-n8", WKBundleFrameCopyCertificateInfo) +STUB("a810PhXQ1Ms", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_17ActivityFeedStoryEEC2Ev) +STUB("a818eKH9uBE", _ZN3sce2np14JsonNumberImplC1EP14SceNpAllocator) +STUB("a81mBvClIkA", EVP_MD_CTX_create) +STUB("a849B27ELfU", _ZN7WebCore13JSDOMRectList9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("a85LmVraJGs", mono_aot_Sce_Vsh_SQLiteunwind_info) +STUB( + "a89Ti5-AegI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEC2EPS8_) +STUB( + "a8LFhTGWse4", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetrics6toJsonERNS_4Json5ValueEb) STUB("a8R9-75u4iM", sceNpGetAccountId) +STUB( + "a8SBP+NDiys", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEED1Ev) +STUB("a8ehg1rHeS4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEED2Ev) +STUB("a8kZLSx4ZTM", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfile9terminateEv) STUB("a8lad-APGOY", sceVnaGetVadState) +STUB("a8lqpn258Mc", _ZN7WebCore11JSImageData14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB("a8oad1ei+k0", _ZN7WebCore14SecurityOrigin6createERKN3WTF3URLE) +STUB("a8oot1yfAcI", _ZN4Manx16Curl_cookie_listEP13SessionHandle) +STUB("a8rk9qLBEXc", _ZNK7WebCore7Element12getAttributeERKN3WTF10AtomStringE) STUB("a8uLzYY--tM", sceAmprAprCommandBufferConstructor) +STUB("a8xEkquQhQk", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEED2Ev) STUB("a8xfs-qh9WA", sceDebugCreateScratchDataArea) +STUB( + "a92hs5JO54g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEC2EPKS8_) +STUB( + "a92hyaWneqY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEED1Ev) +STUB( + "a935xB4YDHM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB("a94VDfhG9dw", + _ZNK3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayer11getPlayerIdEv) +STUB("a9KMkfXXUsE", _ZTIPy) +STUB( + "a9Mb4IIBIds", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEdeEv) +STUB("a9NTPM3fgrs", _ZNK7WebCore10FontRanges16fontForCharacterEi) +STUB( + "a9kWqF2bvTI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEmmEv) +STUB( + "a9qZlljwrwg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEC1Ev) +STUB( + "a9quSKletss", + _ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime12RemoteObjectEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE) +STUB("a9t9q62yj3M", _ZN3sce7Toolkit2NP2V212ActivityFeed4FeedC2ERKS4_) +STUB("a9vndhR-lEc", _ZN8meta_gen12JpegPromoterC1EN9db_schema9CodecTypeE) +STUB("a9vvl--u22c", mono_type_is_reference) +STUB( + "aA+XV2Okok4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEeqERKS9_) +STUB("aA4nOeRve9M", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEED1Ev) +STUB("aA6Blf1LIF4", WKPreferencesSetColorFilterEnabled) +STUB( + "aA79J-frx2I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEEC2ERKSA_) +STUB("aA83TCJI9Kw", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence8PresenceEE3getEv) +STUB( + "aA8pjb5NEg8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEC1EPS8_) +STUB("aACs-RRS3AI", JVM_GetCallerClass) +STUB("aALm7vEN8Yc", _ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errorsD1Ev) +STUB("aANpLAaZfkE", __sanitizer_get_free_bytes) +STUB("aAYMDr5fcLQ", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEEC1Ev) +STUB("aAeeZaTLfT0", + _ZNK7WebCore19MediaQueryEvaluator8evaluateERKNS_13MediaQuerySetEPNS_13StyleResolverE) +STUB( + "aAhEBX7gDUE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEdeEv) +STUB( + "aAo9S9A7gnU", + _ZN3sce2Np9CppWebApi7Matches2V126RequestMatchResultsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_19RequestMatchResultsEEE) +STUB( + "aAumBHgxG2E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEC2Ev) +STUB("aAzs2C1dS9U", _ZN7WebCore8SVGNames10rotateAttrE) +STUB("aB2HhDuPawo", _ZN7WebCore4Page27enableLegacyPrivateBrowsingEb) +STUB("aB5Rvp8BfAA", _ZThn16_N9Inspector18InspectorHeapAgent6enableERN3WTF6StringE) +STUB("aB8FRbUv4mo", WKPreferencesSetApplicationChromeModeEnabled) +STUB("aB8xZIIIuJg", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIdEneERKS4_) +STUB("aBAA0XNULZ8", _ZN3sce2Np9CppWebApi6Common8IteratorIiEC2EPi) +STUB("aBB7i+IvpNs", _ZN10MsvUpdater9getIsMSNVEmPb) +STUB("aBHZUwexAls", rgctx_fetch_trampoline_mrgctx_60) +STUB( + "aBLlonEWs5o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE7reserveEi) +STUB("aBOzlIVp16k", _ZN9JITBridge22initializeFromCompilerEPKcPPcPKNS_11RestartDataE) +STUB( + "aBQtcS9jEBo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "aBW8acQBpws", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("aBZj8-G0bjc", _ZN3sce7Toolkit2NP2V27Session14SessionDetailsD1Ev) +STUB( + "aBbNyDptFdg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEEaSERKSA_) STUB("aBcwP392v0E", sceNpManagerIntParseIdToken) +STUB( + "aBdb+BxBiQU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEEC1Ev) +STUB( + "aBlGwmP9-QQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE8capacityEv) STUB("aBn53jPCbCE", sceMusicCoreServerCheckCoreStatus) +STUB( + "aBrqVzCUV+k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEE11get_deleterEv) +STUB( + "aBtAgMlfbQQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE7reserveEi) +STUB("aBtTShgeIHc", + _ZN3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator14setCustomData1EPKvm) +STUB( + "aBuTHpvnFzk", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_20ChallengeRecvDetailsENS1_15AppSTLAllocatorIS5_EEEE3getEv) STUB("aBuX0PX-T7I", sceNpSessionSignalingCreateContext2) +STUB("aBzpRORkIo0", fuse_lowlevel_is_lib_option) +STUB("aC-VDttHd5g", _ZL16_sceLibcNewArraym) +STUB("aC257sSzems", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEE3getEv) +STUB( + "aC31rEz+qHY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("aC57OEpGO+Q", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEEaSERS7_) +STUB("aC5wMWmt04M", arch_DbgBacktraceSelf) +STUB("aC9OWBGjvxA", _ZNSt13basic_filebufIwSt11char_traitsIwEED2Ev) +STUB("aCHPtLW-iRI", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsD1Ev) STUB("aCIECfxBuBY", sceVnaRequestDownloadTts) +STUB("aCIOh7TUpOY", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Error14setReferenceIdEPKc) +STUB("aCJB0y-oxpQ", EVP_DigestSignFinal) +STUB("aCL6nBMhegs", _ZN13MsvMetaEditorD1Ev) +STUB( + "aCQAXUtIf60", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEEdeEv) +STUB( + "aCRacupPFjI", + _ZN3sce2Np9CppWebApi14SessionManager2V127PostGameSessionsRequestBodyC1EPNS1_6Common10LibContextE) +STUB("aCYD+6sbyqw", _ZN3sce2np11NpHttpTransC1ERNS0_12NpHttpClientERKNS0_10NpOnlineIdE) STUB("aCYPMSUIaP8", sceHttpGetAllResponseHeaders) +STUB("aCZIVWzdiFk", mono_utf8_validate_and_len) +STUB("aCZjveAsynw", _ZN3sce2np9JsonValue12GetItemValueEi) +STUB( + "aCf3RONrm5E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEC1Ev) STUB("aCfbPzyjU90", sceAgcDriverPassInfoDownward) +STUB( + "aCiw-MpqB8A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEEC2Ev) STUB("aCkM+OaGv3g", sceShellCoreUtilMountAppRight) +STUB( + "aCnMyOYpT1U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEC1Ev) +STUB("aCtpeXWclTE", _ZNK3WTF3URL8passwordEv) +STUB( + "aCxer9Pnsxw", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsers63getpostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEv) +STUB("aD-iqbVlHmQ", _ZNSt6locale7_LocimpD1Ev) +STUB("aD4Yxcy46DI", + _ZThn16_N9Inspector22InspectorDebuggerAgent20setPauseOnMicrotasksERN3WTF6StringEb) +STUB( + "aDAlkgdKQAE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEEaSERSA_) +STUB("aDJi8Z9KeAs", _ZThn136_N7WebCore9DOMWindowD1Ev) +STUB("aDLORuQr8yc", _ZN7WebCore9HTMLNames9dialogTagE) +STUB("aDPTwpOnl1I", _ZN3IPC15ArgumentEncoder6encodeEf) +STUB( + "aDUUqy3I+Yg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEdeEv) +STUB("aDYs9XYn2PY", module_start_2) +STUB( + "aDaLthZJvZk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEEaSERKSA_) +STUB( + "aDjD3M14lt8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEEaSERKS9_) +STUB("aDjVtqT65pM", _ZN7WebCore42contextMenuItemTagCheckGrammarWithSpellingEv) STUB("aDloR-BDH7k", sceApplicationSendResultOfDebuggerSuspendRequest) +STUB("aDmly36AAgI", hypot3l) +STUB( + "aDn7dDgbuX0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEeqERKS9_) +STUB("aDocnzTS+uU", OCSP_single_get0_status) +STUB( + "aDssYDN6u5E", + _ZNK7WebCore21ContentSecurityPolicy19allowFrameAncestorsERKN3WTF6VectorINS1_6RefPtrINS_14SecurityOriginENS1_13DumbPtrTraitsIS4_EEEELm0ENS1_15CrashOnOverflowELm16EEERKNS_3URLEb) +STUB("aDuKbMKyILo", _ZN3sce7Toolkit2NP2V212EventsClient7EventId17MAX_SIZE_EVENT_IDE) +STUB("aDuOpFiRXiE", rgctx_fetch_trampoline_mrgctx_29_p) +STUB("aDvYz1htwOU", Java_com_sony_gemstack_io_FilePath_n_1rename) +STUB( + "aDwBFJxwqLc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "aDxW+LFjuYE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEED2Ev) +STUB("aE2NUYV4Hjg", _ZN3JSC14ProtoCallFrame4initEPNS_9CodeBlockEPNS_8JSObjectENS_7JSValueEiPS5_) STUB("aE4wRKDjrgw", sceVisionManagerSetCallbackForUpdateCameraFrame) +STUB( + "aE7uH38JMvc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEeqERKS9_) +STUB("aE9O7NDdIrk", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEEmmEi) +STUB( + "aEFJJ3OJbpA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEEC2ERSA_) +STUB( + "aEHNg2P7nyQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEC2EPNS2_10LibContextE) STUB("aEIBFI8Dy9E", scePlayReadyCdmiLoad) +STUB( + "aENmncN7xwo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEE11get_deleterEv) +STUB("aER-LBHbVbw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEED1Ev) +STUB( + "aEa2y9AZUW8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "aEdk8vxoGZg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEEdeEv) +STUB("aEmkGkyLVRQ", _ZN7WebCore11ImageSource10frameCountEv) +STUB("aEnkYyUwc9g", _ZN3sce7Toolkit2NP2V27Session11SessionData5resetEv) +STUB( + "aEntFDvja-I", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEED2Ev) +STUB( + "aEobsWqQWNw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEmmEi) STUB("aEoi0u2FOiQ", sceLibSecureCryptographyEncrypt) +STUB("aEpSSlROuFo", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead18unsetSwapSupportedEv) +STUB("aEqTHxmgCwo", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEEaSERKS6_) +STUB("aEsD6hNB94w", _ZNK3sce2Np9CppWebApi14ConnectAccount2V212PartnerToken12getExpiresInEv) +STUB( + "aEt4aNpeLwQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEED1Ev) +STUB("aEtXdyCZ0y4", Java_com_sony_bdjstack_javax_media_controls_SoundManager_setGainMute) +STUB("aEvXG3i5oY0", _ZN3NTF5MutexC2Ev) STUB("aEzKdJzATZ0", sceNpPartyGetState) +STUB("aF+oEFPzEsY", u_charAge) +STUB("aF1OmU3HiZ0", WKProtectionSpaceGetTypeID) +STUB("aF3wlbLTmwI", + _ZN7WebCore15UserInputBridge16handleWheelEventERKNS_18PlatformWheelEventENS_11InputSourceE) +STUB( + "aF4Wm0vK7oY", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser17hasplatformFilterEv) STUB("aF5D30uVRVk", sceNpGriefReportCdDeleteRequest) +STUB( + "aF5V6hFlzgU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEEC1ERKSA_) +STUB( + "aF5pQngC0Qc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEC2EPNS2_10LibContextE) +STUB( + "aFDt3mV7K4o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEE11get_deleterEv) +STUB("aFEMYVqa7hE", mono_aot_Sce_Vsh_ShellUIUtilWrappermethod_addresses) +STUB( + "aFFAnuaVYQc", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification14NewRoomMessageEE12deepCopyFromERS8_) +STUB("aFFwS9mbHZE", _ZNK3WTF24TimeWithDynamicClockType16nowWithSameClockEv) +STUB( + "aFGEEIJS63Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEmmEi) +STUB("aFJnQE4CaWw", _ZN7WebCorelsERN3WTF10TextStreamERKNS_9ImageDataE) +STUB("aFKnTGQvQGw", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_14TrophyGameInfoEED2Ev) +STUB("aFMVMBzO5jk", _ZTSf) +STUB("aFXG-4hvVBk", _ZN3JSC12StringObjectC2ERNS_2VMEPNS_9StructureE) +STUB("aFfRvVWI9jc", _ZN3sce7Toolkit2NP2V26Trophy16UnlockedTrophiesC2ERKS4_) +STUB( + "aFlWseJb9sw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE4sizeEv) STUB("aFmh3B6C5Fs", sceDeci4hDrfpMountDone) +STUB("aFpR2VzmSqA", _ZN3sce2np3ipc14service_client13DeleteRequestEii) +STUB( + "aFrDafbUsFU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE8capacityEv) +STUB("aFurHdEPXqc", WKPreferencesSetIsSecureContextAttributeEnabled) STUB("aFv8qms6XTM", sceNpEntitlementAccessPollServiceEntitlementInfoList) +STUB("aFyUf1Ga3yM", u_sscanf_67) +STUB("aFyyDTaj9Rk", usprep_close_67) +STUB("aG2sIZcmvy4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEEC1Ev) +STUB( + "aG6RE+bSUac", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEC2Ev) +STUB("aG9B1dfdD9M", X509_check_issued) +STUB("aG9kb2QA8CE", mono_type_stack_size) +STUB( + "aGAfTXXu66o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEEC1ERKSA_) +STUB( + "aGDeb25qTis", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "aGEg3AWRX+k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEE7add_refEv) +STUB( + "aGG1-xbPYE4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEEptEv) +STUB("aGHYciYdwog", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEEC1EPS6_) +STUB( + "aGIZYIO0oRE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEE6assignEPS5_PFvS7_EPNS2_10LibContextE) +STUB( + "aGKOPjiSApA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEC1EPS6_PNS2_10LibContextE) +STUB("aGPKqsOpQaI", _ZN7WebCore9HTMLNames17addestinationAttrE) +STUB("aGTNhHZfOvY", _ZN7WebCore15HTTPHeaderFieldC1ERKS0_) +STUB("aGUNrrEvs4Q", _ZN12video_parser13cVideoMetaMP4D1Ev) +STUB( + "aGa5-2Yzto8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE6resizeEj) +STUB("aGazvjt6caA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEaSERKS7_) STUB("aGlema+JxUU", sceSharePlayStopStreaming) +STUB("aGmHbcAj42g", + _ZN7WebCore15GraphicsContext9drawImageERNS_5ImageERKNS_9FloatRectERKNS_20ImagePaintingOptionsE) +STUB( + "aGp1PKjuyew", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("aGqjAIomJdE", _ZN3JSC18PropertyDescriptor17defaultAttributesE) +STUB( + "aGvg2wjchxo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEC1EPS8_) +STUB( + "aGyGqQ4rrhQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("aGziYMudPJs", _ZN7WebCore12GCController34garbageCollectNowIfNotDoneRecentlyEv) +STUB("aH04YKs+RU4", _ZN25MmsFileUpdaterFsOperation8openFileEPKc) +STUB("aH1av6lNxbU", _ZN3sce7Toolkit2NP15UserRankRequestC1Ev) STUB("aH2nrQ3Xh5Q", sceDevUsbAcceptHostStream) +STUB("aH6Kf-byUp0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17SetGameDataResultEED1Ev) STUB("aHDYXbIWey4", sceBgftServiceIntDownloadRegisterTaskStore) +STUB("aHDdLa7jA1U", _ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED0Ev) +STUB("aHG7WPzIkss", + _ZNK3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends9getoffsetEv) +STUB("aHGQHutZdSA", _ZN3sce2Np9CppWebApi14SessionManager2V114Representative11setPlatformEPKc) +STUB("aHGrH3yqKGU", _ZN3sce3pss4core8graphics7TextureD2Ev) +STUB( + "aHIzSV8MIAo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEplEm) +STUB("aHJNMYiJ7Ig", + _ZN3sce2Np9CppWebApi7Matches2V119RequestInGameRosterC1EPNS1_6Common10LibContextE) +STUB("aHLj5kCVuIQ", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container10setVersionERKi) +STUB( + "aHLllsgKarg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEC1Ev) +STUB( + "aHNYE4-vpwI", + _ZN3sce2Np9CppWebApi7Matches2V127RequestPlayerResultsFactory7destroyEPNS3_20RequestPlayerResultsE) +STUB( + "aHP5OyUPuvM", + _ZN3sce2Np9CppWebApi14SessionManager2V134PostGameSessionsRequestBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_18RequestGameSessionEEEEEPNS9_INS3_27PostGameSessionsRequestBodyEEE) +STUB("aHUFijEWlxQ", _Unlock_spin_lock) +STUB("aHUVAX-1UOA", WKBundleNodeHandleCopyHTMLFrameElementContentFrame) +STUB( + "aHYAv0WWils", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEE7add_refEv) +STUB("aHYjGt9WsbA", Java_java_awt_GnmFontMetrics_loadFontFromCache) +STUB( + "aHdhrBQ1hbM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "aHeB76zbDVc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE21intrusive_ptr_sub_refEPS9_) +STUB("aHhmxFX45Sc", mono_create_helper_signatures) +STUB("aHts38XzC8w", JVM_Bind) STUB("aHuBE2C3JC4", sceCompositorSetVirtualCanvasAgcContextCommand) +STUB( + "aHvyIwb3wR4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEixEm) STUB("aI+OeCz8xrQ", scePthreadSelf) +STUB( + "aI5pSjg5k1I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEE7get_refEv) +STUB( + "aI9K7U9JGwM", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEEiRNS2_10LibContextEPT_m) STUB("aI9opH6+2L4", sceRazorCpuShutdown) +STUB("aICwGBkCo74", _ZN12video_parser13cVideoMetaMP48finalizeEv) +STUB( + "aIG8+K3GvYk", + _ZN3sce7Toolkit2NP8Matching9Interface33joinInvitedSessionFromNpSessionIdEPKNS1_24InviteJoinSessionRequestEPNS1_9Utilities6FutureINS1_18SessionInformationEEE) STUB("aII9h5nli9U", sceAudioOut2ContextPush) +STUB( + "aIKH8jdOCuE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE8copyFromERKS9_) +STUB( + "aIKm0Rgs+8U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEixEm) +STUB( + "aIKuLWliVVc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEED2Ev) +STUB("aINUE2xbhZ4", _Poly) +STUB("aIQStCM2iFM", _ZN3sce2Np9CppWebApi13InGameCatalog2V55Error16unsetReferenceIdEv) +STUB("aIV+HI6llz4", _ZN3sce2np9JsonValue13GetFieldValueEiPPKc) +STUB( + "aIblFboufHI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE5clearEv) +STUB("aIcNbDiF+yE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEC2Ev) +STUB( + "aIlDbII7+q4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEC2Ev) +STUB("aIw5PiSpmxk", usearch_getMatchedLength_59) +STUB( + "aIytxRv+JtU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE3endEv) +STUB( + "aJ1FcAJOC14", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("aJ9yLqakAPo", mono_btls_x509_crl_free) +STUB("aJBITL4I2lY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEE7get_refEv) +STUB("aJJYouPTprc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEC2ERKS7_) +STUB("aJJy9D41U-4", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi22ParameterToCreateMatch9terminateEv) +STUB("aJKn6X+40Z8", ceill) +STUB( + "aJNN3CVE0vs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEmmEv) +STUB("aJUbKnyVUyU", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15PlayedWithStoryEE7destroyEPS3_) STUB("aJZyCcHxzu4", sceNpUnregisterGamePresenceCallbackA) +STUB("aJcMH5FdDh8", monoeg_g_locale_from_utf8) STUB("aJf+j5yntiU", sceAgcDcbEventWrite) +STUB( + "aJj-utYx1Cc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("aJk4dDybPXQ", ucol_setOffset_67) STUB("aJmqgwgzjLs", sceKernelDebugGetSchedLockMode) +STUB("aJtnM5oDLD8", _ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession14getCustomData2Ev) +STUB("aJvNNIwiaMg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ResponseCooperativeResultEEaSERKS7_) +STUB( + "aJyeLOiYKLk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("aK1Ymf-NhAs", _ZTVSt7codecvtIcc9_MbstatetE) +STUB( + "aK2FhQzagnI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEC2EPKS8_) +STUB("aK5A5pUgbhU", mono_aot_Sce_Vsh_Np_ServiceChecker2unbox_trampolines_end) +STUB("aKBqHZKouts", _ZN15AbstractStorage7StorageD1Ev) +STUB("aKDkxJobGsk", _ZN7WebCore26UserTypingGestureIndicatorD1Ev) STUB("aKJZx7wCma8", sceAudioPropagationSourceGetRays) +STUB("aKJk1caqFc8", _ZN3JSC11createErrorEPNS_14JSGlobalObjectERKN3WTF6StringE) +STUB("aKM0i7J3lwQ", rgctx_fetch_trampoline_rgctx_7) +STUB("aKN5oEaiXJA", _ZN7WebCore11HTMLElement6setDirERKN3WTF12AtomicStringE) +STUB( + "aKQVMOUT7VU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE7reserveEi) +STUB( + "aKSj5ZN5glI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V125IdempotentVariableFactory7destroyEPNS3_18IdempotentVariableE) STUB("aKWnlLIobGA", sceFiosIsInitialized) +STUB( + "aKXjbBnqunY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEC2EPS8_) STUB("aKa6YfBKZs4", sceSysmoduleUnloadModuleInternalWithArg) +STUB("aKaMcVLBKfM", _ZN7WebCore15XPathExpressionD1Ev) +STUB( + "aKcp0TPx43s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEED1Ev) +STUB("aKdPQLVLP3M", uprv_asciitolower) +STUB( + "aKevYwm5wek", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEEC2ERKSA_) +STUB( + "aKlx0b4pHHU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE3endEv) +STUB("aKsAzrGF+mI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEE11get_deleterEv) STUB("aKw9uBmZjpw", sceAvSettingCheckCallback) STUB("aKxpgAMSJ04", sceFiosCloseAllFiles) +STUB("aKzReC07ziw", WKCertificateInfoGetTypeID) +STUB("aL0ECHyeRb0", _ZN7WebCore16MIMETypeRegistry15mimeTypeForPathERKN3WTF6StringE) +STUB( + "aL0GptnvAqw", + _ZN9Inspector32DatabaseBackendDispatcherHandler18ExecuteSQLCallback11sendSuccessEON3WTF6RefPtrINS2_8JSONImpl7ArrayOfINS2_6StringEEENS2_13DumbPtrTraitsIS7_EEEEONS3_INS5_INS4_5ValueEEENS8_ISD_EEEEONS3_INS_8Protocol8Database5ErrorENS8_ISJ_EEEE) +STUB( + "aL2U1O1BEzU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEaSERKS7_) +STUB("aL2ZBXT0HM4", _ZN3sce7Toolkit2NP2V210Tournament7BracketD1Ev) +STUB("aL5cBoo7qhs", WKBundlePageFindStringMatches) +STUB("aL6nI2orYZk", _ZN3WTF10WorkerPoolD2Ev) +STUB("aLA7thd1TcQ", WKPreferencesGetCSSRegionsEnabled) +STUB( + "aLAgZe1B2vk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEC2ERS7_) +STUB("aLGD1kOLQXE", _ZTVN3sce2np10JsonObjectE) +STUB( + "aLOP2jwylds", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEneERKS9_) +STUB( + "aLRr5R8py8Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEED2Ev) +STUB( + "aLSk-RluYtc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEmmEv) +STUB( + "aLUokOu1GF0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEdeEv) +STUB("aLX3IaojWsg", JSWeakObjectMapGet) +STUB("aLXYh7gNgXw", _ZN3sce7Toolkit2NP2V28Matching7Request23SetMembersAsRecentlyMetC1Ev) +STUB("aLYyS4Kx6rQ", _malloc_prefork) +STUB("aLZ14qMNdc4", _ZN3sce7Toolkit2NP2V210Wordfilter16SanitizedCommentC2ERKS4_) STUB("aLifbmFk4tg", sceVideoCoreMediaSourceSetDuration) +STUB("aLjHBA9fGMc", mono_install_assembly_postload_search_hook) +STUB("aLm2pk2iekU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEaSERS7_) +STUB( + "aLreRUt36CA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "aLrwB9zSIP0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEC1EPNS2_10LibContextE) +STUB("aLsbm2KRQgE", WKContextConfigurationCreateWithLegacyOptions) +STUB( + "aLtk6y5ryVQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEC1EPNS2_10LibContextE) +STUB("aLuuVRsDSf0", _ZN4Manx13WorkQueueImpl6createEPKc) +STUB("aLwV8MHp2t4", _Z20WebViewBaseCanGoBackii) +STUB("aM1Eu3AwKpQ", utrie_getData_67) +STUB("aM1tPxdmVsM", _ZNK3sce2Np9CppWebApi7Matches2V122RequestMatchStatistics19teamStatisticsIsSetEv) +STUB( + "aM22QSRarZY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("aM7Y3jjgoDQ", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V224TestForProfanityResponse11statusIsSetEv) +STUB( + "aMDsSkTc+kQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEC1EPS8_) +STUB("aMFoY7To2V0", _ZN3JSC11JSWithScope6s_infoE) +STUB("aMH6eRoQoDA", _ZN7WebCore18PlatformPasteboard5writeERKNS_20PasteboardWebContentE) +STUB( + "aMHo4NBsS+c", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEptEv) +STUB( + "aMKL1dJN3lQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) STUB("aML18Z0J0t0", sceKernelGetProsperoSystemSwVersion) +STUB("aMOHnm9mOIc", _ZN12video_parser5vpcom5_SeekEPNS_8_vp_fileExNS0_12VP_SEEK_TYPEEPx) +STUB("aMP5ggnLs-c", _ZN4Manx13WorkQueueImplC2EPKc) +STUB("aMQhMoYipk4", _ZTVN10__cxxabiv117__array_type_infoE) +STUB( + "aMT6GcazQtw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEE7add_refEv) +STUB("aMU+i7TAab0", _ZZSt9MakefacetISt8numpunctIcESt8_LocinfoERT_T0_E3buf) +STUB( + "aMURLYE3cVY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "aMUSRlp7KS8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEC1ERKS7_) +STUB("aMUu9AcDv2s", _ZN3JSC7Symbols38replaceAllUsingStringSearchPrivateNameE) +STUB( + "aMWVlpXja7U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "aMaH66zHgO0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEixEm) +STUB( + "aMhqQdD0-Ho", + _ZN9Inspector25TimelineBackendDispatcherC2ERNS_17BackendDispatcherEPNS_32TimelineBackendDispatcherHandlerE) +STUB("aMoldKkBQHQ", mono_aot_Sce_PlayStation_Orbisunbox_trampolines) +STUB( + "aMp-I2oKoe0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE6resizeEj) +STUB( + "aMu9uihcJ3w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEppEv) +STUB("aMucxariNg8", _Btowc) +STUB( + "aMurPhX5fKQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE3endEv) +STUB("aMwGXRZ6024", _ZN3WTF22CrossThreadTaskHandlerD0Ev) +STUB("aMwu+dVAt9s", _ZN3JSC37JSSegmentedVariableObjectHeapCellTypeC1Ev) +STUB("aMy+8iBUMjQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEE7add_refEv) +STUB("aMzOSjDa+zw", mono_aot_Sce_Vsh_WebBrowserplt) +STUB("aN1B2MP3kLU", glDepthMask) +STUB("aN4lYzi+NME", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEptEv) +STUB("aN4xuJLVnKc", _ZN7WebCore19UserContentProviderD0Ev) +STUB( + "aNAExEdyCZA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEC2Ev) STUB("aNEqtSHdUSo", sceAudioPropagationSystemCreate) +STUB( + "aNGoUvBHF4Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEEdeEv) +STUB("aNJaYyn0Ujo", warnx) +STUB("aNRXvzaSKs0", _ZN3JSC14iteratorMethodERNS_9ExecStateEPNS_8JSObjectE) +STUB("aNWT5XqX95o", mono_aot_Sce_Vsh_RequestShareStorageWrapperjit_code_start) +STUB("aNZOcfGHsDI", _ZN3JSC2VM10ClientDataD0Ev) +STUB( + "aNe24GXfiyg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEeqERKS9_) +STUB("aNeavPDNKzA", sendmsg) +STUB("aNfpdhcsMWI", _ZNSt10moneypunctIcLb0EEC2EPKcm) +STUB("aNg0BriFqKg", _ZN7WebCore11DisplayList23FillRectWithRoundedHoleD1Ev) +STUB("aNgesXnRJj8", _ZN3JSC8DebuggernwEmPv) +STUB("aNjpNjyL4No", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEEC1EPNS2_10LibContextE) +STUB("aNkfdBX+wu8", _ZN19JITSharedDataMemory11shared_freeEPv) STUB("aNlHqxTvPTE", sceVencQueryPreset) +STUB("aNleMBZjZDU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEEC1ERKS6_) +STUB( + "aNnD9+Xjr9U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEC1EPS8_) +STUB( + "aNvo9qBX+hU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEC1Ev) STUB("aNz11fnnzi4", sceKernelAvailableFlexibleMemorySize) STUB("aO+WS2xWuo4", pthread_getprio) +STUB( + "aO0QKCPEW-8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("aO1clLvwumw", WKProtectionSpaceGetAuthenticationScheme) +STUB( + "aO7Jkj4xmro", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEplEm) +STUB("aODgraUE0tg", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119NatConnectivityFromD1Ev) +STUB( + "aODslKODtDE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEppEi) STUB("aODvnvMj8vs", sceSpPthreadCondSignal) +STUB( + "aOILh1hTnVU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEED1Ev) +STUB("aOIU56glwyE", u_setAtomicIncDecFunctions_67) +STUB("aOJG7zjrpS0", _ZN9Inspector22InspectorDebuggerAgent11setListenerEPNS0_8ListenerE) +STUB("aOK5ucXO-5g", _ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED0Ev) +STUB("aOKKRhOYzyU", glUniform4ui) +STUB( + "aOQpSffAYls", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE21intrusive_ptr_add_refEPS9_) +STUB("aOcRDrvLZwM", _ZN6WebKit12ChildProcessC1Ev) +STUB("aOhBTLLM280", uloc_getCurrentCountryID_67) +STUB( + "aOhPv9pgThY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEptEv) +STUB("aOjcWjB2HoM", _ZN3JSC7JSProxy12setPrototypeEPNS_8JSObjectEPNS_9ExecStateENS_7JSValueEb) +STUB("aOk5iMFXq2M", _ZN3WTF9WorkQueue6createEPKcNS0_4TypeENS0_3QOSE) +STUB( + "aOl6lck2DDc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEE11get_deleterEv) +STUB("aOlIKPpNzyk", mono_aot_System_Xml_Serializationunbox_trampolines) +STUB("aOtpC3onyJo", _Xp_mulh) +STUB( + "aP-opohuFG8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("aP0X-4W9Lgg", _ZN7WebCore11DisplayList13StrokeEllipseC2ERKNS_9FloatRectE) STUB("aP1Ki9G3++4", sceAgcDcbSetUcRegisterDirectGetSize) +STUB("aP3uFUu-myc", monoeg_g_slist_append) +STUB("aP4j+8ah3p4", _ZN3sce7Toolkit2NP2V212EventsClient11EventInGame8deepCopyERKS4_) +STUB( + "aP4pKf1sa+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEEC1ERKSA_) STUB("aP6KEe871Ow", sceAvSettingCallbackFuncsInitForLnc_) +STUB("aP7Vf01mqKo", _ZNK3sce2Np9CppWebApi14SessionManager2V15Error7getCodeEv) +STUB("aP9pvilFrX0", _ZN3JSC22FullGCActivityCallbackC2EPNS_4HeapE) +STUB( + "aPBIEmMfMAY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEED2Ev) +STUB("aPBWxAv3clA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEC1EPS8_) +STUB("aPDKI3J8PqI", posix_spawnattr_setpgroup) +STUB("aPI3JqrIPEw", _ZNK3WTF9BitVector11isEmptySlowEv) STUB("aPIZJTXC+cU", sceGnmInsertPushColorMarker) +STUB("aPNVLuIZaEk", utrie2_internalU8PrevIndex_67) +STUB( + "aPSuL7N8rDs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEppEv) +STUB( + "aPYJADOA9Mw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEaSERS7_) +STUB("aPcyptbOiZs", sigprocmask) STUB("aPpic8K75YA", sceNetCtlConnectWithRetryIpcInt) +STUB( + "aPs6eFHwXYs", + _ZN9Inspector27AnimationFrontendDispatcher14trackingUpdateEdN3WTF6RefPtrINS_8Protocol9Animation14TrackingUpdateENS1_13DumbPtrTraitsIS5_EEEE) +STUB("aPx+WVlNxDs", _ZN3sce7Toolkit2NP9Utilities6FutureI18SceNpTssDataStatusED1Ev) +STUB( + "aPxsYbRLTuA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEC2ERS7_) +STUB("aQ6B25Uq2hg", + _ZN8meta_gen11MsvPromoter23setKeyValue_TBLV_BaseIdENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB("aQ6MOLz0Svc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE7popBackEv) +STUB("aQ6ZliiYENQ", _ZN3sce7Toolkit2NP2V26Trophy17TrophyPackSummaryC2Ev) +STUB("aQ8Xoiz0yMQ", SwCtrlSinkStreamGetWritePointer) +STUB("aQ9aDA+U8Dc", _ZN3sce7Toolkit2NP2V211SharedMedia14CommonMetadataC2Ev) STUB("aQDrTFzGkg8", sceHmdInternalGetSensorCalibrationData) +STUB("aQHUuJt0YS8", _ZN3WTF6Logger9observersEv) +STUB("aQJnG7oMhNU", _ZNK3JSC18PropertyDescriptor6getterEv) +STUB( + "aQKBnWRO6xU", + _ZN9Inspector14ConsoleMessageC2EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelERKN3WTF6StringEm) +STUB("aQNK+DZuME4", rgctx_fetch_trampoline_mrgctx_80) +STUB( + "aQQmmMzkK8Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE8pushBackERKS8_) STUB("aQSyyT89490", sceCesUtf8ToGb) +STUB("aQURHgjHo-w", _Erfc) +STUB("aQZ5t3cjtbw", mono_class_get_properties) +STUB("aQZDiK6H7U8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V117DataStatusFactory7destroyEPNS3_10DataStatusE) +STUB( + "aQZDyn+mtqA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEC1EPS6_PFvS8_EPNS2_10LibContextE) STUB("aQZPV4OQRGo", sceNpEulaDialogClose) +STUB( + "aQZkTZSB9Q4", + _ZN7WebCore22EmptyFrameLoaderClient10sendH2PingERKN3WTF3URLEONS1_17CompletionHandlerIFvONSt12experimental15fundamentals_v38expectedINS1_7SecondsENS_13ResourceErrorEEEEEE) +STUB("aQaD09v7LVo", JVM_ConstantPoolGetUTF8At) +STUB("aQewC+FffFY", mono_btls_ssl_add_chain_certificate) +STUB( + "aQhOZvy29uQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEE11get_deleterEv) +STUB( + "aQhlwYy6PD8", + _ZN9Inspector25DebuggerBackendDispatcher20setPauseOnMicrotasksElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "aQhq0IddhpM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("aQjlTguvFMw", _ZNSt14numeric_limitsIiE8digits10E) +STUB( + "aQkS92A0rmQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "aQl-nu1x5DA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE7popBackEv) +STUB("aQm0LWy7qEA", _ZN3JSC16callCustomSetterEPNS_9ExecStateENS_7JSValueEbPNS_8JSObjectES2_S2_) +STUB( + "aQmTpXp5Fgs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEC1EPS8_) +STUB( + "aQt10fly8Ws", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "aQtAmesEqnM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEmmEi) +STUB("aQvy2Y0XTIA", mono_aot_Systemjit_code_start) STUB("aQwNhI19JpE", sceTsStartFileStreaming) +STUB( + "aQwz8DvBMl4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEC1Ev) +STUB("aQzxfON3l2Y", + _ZN3sce2np3ipc13ServiceClientC1EPNS1_17ServiceIpmiClientEPKNS1_17ServiceClientInfoE) +STUB("aR+AZH4ElcE", mono_aot_Sce_Vsh_Friendunbox_trampoline_addresses) +STUB("aR6cmUTI9ZQ", _ZN7WebCore12SharedBufferC1EON3WTF6VectorIcLm0ENS1_15CrashOnOverflowELm16EEE) STUB("aR6uq1j7M7I", sceGnmSysResetOttvLibrary) STUB("aR8+Hvghm0E", sceLoginServiceTerminate) +STUB("aRBAciXgfug", _ZNK7WebCore15StyleProperties17propertyAsValueIDENS_13CSSPropertyIDE) +STUB( + "aRClSMR3tMs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE21intrusive_ptr_add_refEPS9_) +STUB("aRK0LhE+B5A", __asan_report_exp_store1_noabort) +STUB("aRKF3rRoH2o", _ZN7WebCore8Settings38setSimpleLineLayoutDebugBordersEnabledEb) +STUB("aRMFdrFpco4", il2cpp_monitor_exit) +STUB("aRNR1W6I7AA", _ZN7WebCore8SVGNames29externalResourcesRequiredAttrE) +STUB("aRQRfcI-v9I", _ZN7WebCore15HTMLLinkElement14setCrossOriginERKN3WTF12AtomicStringE) STUB("aRSQNqbats4", sceGameLiveStreamingGetCurrentBroadcastScreenLayout) +STUB("aRUIqC7jeWE", _ZN3sce7Toolkit2NP2V27Ranking7Request13GetUsersRanksD1Ev) +STUB("aRVhBrrwh8A", _ZN12video_parser5vpcom10RtcSetTickEPNS_12_VP_DATETIMEEPK10SceRtcTick) +STUB( + "aRYF3h5rQCE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEEC2EPS8_PNS2_10LibContextE) +STUB( + "aRaYbinBa+8", + _ZN9Inspector14ConsoleMessageC2EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelERKN3WTF6StringES8_jjPNS1_9ExecStateEm) +STUB("aRdBxxGMvyI", _ZN3sce7Toolkit2NP2V28Matching7Request9LeaveRoomC2Ev) +STUB( + "aRe4HfMOslA", + _ZN3WTF24normalizeLineEndingsToLFEONS_6VectorIhLm0ENS_15CrashOnOverflowELm16ENS_10FastMallocEEE) +STUB("aRfMrO1iq7o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEED1Ev) +STUB("aRfavhxkoIc", _ZNK7WebCore29PerspectiveTransformOperation10isIdentityEv) +STUB("aRhwYh6tFWQ", uhash_init) +STUB("aRjNtzjjqD8", WKURLCopyString) +STUB("aRjUyycVs7A", mono_aot_ReactNative_PUImethod_addresses) +STUB( + "aRjr2VRv2tM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE5beginEv) +STUB("aRo9AhFUXcM", sigsetjmp) +STUB( + "aRoPQmJa7+Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEixEm) +STUB("aRpErCNFrjg", + _ZN7WebCore20LegacySchemeRegistry30registerURLSchemeAsCORSEnabledERKN3WTF6StringE) STUB("aRqvgeH+oe0", sceSlimglCompositorGetError) +STUB("aRrC568eEhU", Java_java_awt_Window_pShow) +STUB("aRwBsP0ib1E", + _ZN7WebCore22EmptyFrameLoaderClient24revertToProvisionalStateEPNS_14DocumentLoaderE) +STUB( + "aRymTAWfo4U", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("aS+j93AoSdI", + _ZN3sce2Np9CppWebApi7Matches2V121ResponsePlayerResults8fromJsonERKNS_4Json5ValueE) +STUB( + "aS-6mRf77SU", + _ZN3sce2Np9CppWebApi11UserProfile2V119BasicProfileFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_12BasicProfileEEE) +STUB( + "aS5J3uoI9Ao", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEC1EPS8_) STUB("aS66RI0gGgo", sceAvPlayerInit) +STUB( + "aS8l-gPBo0E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEE11get_deleterEv) +STUB("aS8lb9rbDUA", mono_delegate_free_ftnptr) +STUB("aSAE6abqxA8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEC2Ev) +STUB("aSGd6TpnZMY", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10getString7Ev) +STUB("aSIAa7wZkCs", monoeg_g_find_program_in_path) +STUB( + "aSIHiBCzY9g", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) STUB("aSJafUjZCqc", sceHandTrackerUpdate) +STUB( + "aSMbDO3MyLA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("aSNAf0kxC+Y", __atomic_fetch_or_2) +STUB( + "aSNvNtno1FU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEC1EPKS8_) +STUB("aSoqFLwZUDk", + _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities14UserActivities6toJsonERNS_4Json5ValueEb) +STUB( + "aSuHhdfStX0", + _ZN9Inspector26InspectorBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) +STUB( + "aSykTxAstEA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "aT1wFL8-Lrs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEEaSERKSA_) +STUB( + "aT2bhmTshnI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEED1Ev) +STUB("aT65o37SqqE", _ZNK3sce2Np9CppWebApi7Matches2V14Task13getActivityIdEv) STUB("aT9KhNAu0RY", sceVoiceChatRequestJoinVoiceChatGroup) +STUB("aTDYpBci-Ks", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE3endEv) +STUB( + "aTGaTk6DHfw", + _ZN7WebCore6JSFile6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_4FileENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "aTI29eH4NSM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEC2EPS8_) +STUB("aTLvyNkK6mA", _ZNK3JSC8JSObject8toNumberEPNS_14JSGlobalObjectE) +STUB("aTNOl9EB4V4", _ZN3sce2np5Mutex4InitEPKcj) +STUB( + "aTNSx9nV-9s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEC2ERKS7_) +STUB("aTRth+22E8I", _ZN9Inspector27PerGlobalObjectWrapperWorld16clearAllWrappersEv) STUB("aTRyTzcMwbA", sceSdmaBeginQueueMode) +STUB("aTSGWfAX47k", _ZNK3WTF6String9substringEjj) +STUB( + "aTZrSelcj04", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEE7get_refEv) +STUB("aTamWRbZ1Y8", _ZN7WebCore9CookieJar17clearCacheForHostERKN3WTF6StringE) +STUB("aTdxY7THLVU", WKContextConfigurationCopyApplicationCacheDirectory) +STUB("aTjYlKCxPGo", _ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2ERKSt8_Locinfom) STUB("aTnHs7W-9Uk", sceNpTrophyAbortHandle) STUB("aTtay82qJM8", sceSystemModalDialogOpen) +STUB("aTyXVKJo4J0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session8SessionsEE5resetEv) +STUB("aU-Pon77jAs", BN_CTX_new) +STUB("aU2G9Mup16U", _Dint.sub) +STUB("aU5B+oCEp2I", _ZN3sce2Np9CppWebApi14SessionManager2V116FromNonPsnMember11setPlayerIdEPKc) STUB("aU5QaUCW-Ik", sceNpManagerIntLoginAddJsonInfo) +STUB("aU5zCAKUc5A", mono_aot_Sce_Vsh_SQLitejit_code_end) +STUB( + "aU8y1MNugus", + _ZN3sce7Toolkit2NP3TUS9Interface17addAndGetVariableEPNS1_9Utilities6FutureI16SceNpTusVariableEERNS1_26TusAddAndGetVarInputParamsEb) +STUB("aUAT0Gn4THw", _ZN3sce7Toolkit2NP9Utilities6FutureI24SceNpBandwidthTestResultED2Ev) +STUB( + "aUBTisyooTQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEEC1ERKSA_) +STUB( + "aUDQA5H0DKk", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3CSS17CSSPropertyStatusEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB( + "aUDbquIl-XQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEplEm) +STUB("aUEGxixvrdA", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEEC2Ev) +STUB( + "aUFDHQyPYOY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "aULIPNMVmkA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEE11get_deleterEv) +STUB("aUNISsPboqE", _ZNKSt7_MpunctIcE11do_groupingEv) +STUB( + "aUO41fc5FgQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE21intrusive_ptr_add_refEPS9_) +STUB("aUOA6ALnNt8", mono_aot_Sce_Vsh_Sl2_NativeQueueClientplt) +STUB("aUP+lt6zNN8", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament16RegisteredRosterEEC1Ev) +STUB( + "aUcejy38s0c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEC2EPS8_) STUB("aUgLCb3pSOo", sceNpServiceChecker2IntGetServiceAvailability) +STUB("aUjXTLTLVBQ", + _ZN3sce2Np9CppWebApi14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyD1Ev) +STUB("aUkLStmNBCw", _ZThn88_N7WebCore14XMLHttpRequestD1Ev) +STUB( + "aUlaMGIyIjg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEEC2ERSA_) +STUB("aUs5QuHNzmY", _ZN12video_parser17cVideoProfilerMp412getMovieInfoEPPNS_13VpMovieInfo_tE) +STUB( + "aUycl8xHP2w", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEE3getEv) +STUB("aV-0CdVoSCc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEEC2ERKS7_) STUB("aV5WzZ1JxbY", sceApplicationBlockingKill) +STUB("aV60p-F-jhg", mono_aot_ReactNative_Modules_Vsh_Gct_Telemetry2plt_end) +STUB("aV76TR9MsMk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V122UploadDataResponseBody11setObjectIdEPKc) +STUB("aVDQZGAqOo8", _ZN3sce4Json6StringpLEPKc) +STUB( + "aVDbuegzg04", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEC1Ev) +STUB( + "aVFtvnyEAd4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE21intrusive_ptr_add_refEPS9_) +STUB("aVR80xoiZ1k", utrace_functionName) STUB("aVRNp1nOOKY", sceLncUtilUnregisterCdlgSharedMemoryName) +STUB("aVTInRBzsG0", _ZN3sce3Xml3Dom6NodeIdeqES2_) +STUB("aVXIjwnJ32U", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEEC2ERKS7_) STUB("aVZb961bWBU", sceSystemServiceActivateMpeg2IsActivated) +STUB("aVb9u-6yS4c", _ZN3sce2Np9CppWebApi6Common8IteratorINS2_6StringEEmmEi) +STUB("aVdYj+lcSXw", _ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequest19unsetExpirationTimeEv) +STUB("aVip2k6-D1Y", Java_java_lang_reflect_Array_getLength) +STUB( + "aVipNETOKoU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEC1Ev) +STUB("aVj0E2JNKS8", _ZN3sce2Np9CppWebApi7Matches2V111AddedPlayer11setPlayerIdEPKc) +STUB( + "aVq0wNYTlus", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("aVt320GW3sY", SHA384_Final) +STUB("aVtHmPYrANg", WKBundlePageClearApplicationCache) STUB("aVvm-afVQlo", sceHidControlConnectPort) +STUB("aVxqedJqfFA", _ZN7WebCore9CookieJarD2Ev) +STUB( + "aVyHnoWSYHk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "aW1FwgpH0Ms", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEmmEi) +STUB("aW2fsc4MIFg", _ZN3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayer11setPlatformEPKc) +STUB( + "aW6LWfoqKe4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEED1Ev) +STUB("aW9KhGC4cOo", putwchar) +STUB("aWCk+BNfOLc", _ZN7WebCore24isDefaultPortForProtocolEtN3WTF10StringViewE) +STUB( + "aWLNTDtVUxY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEneERKS9_) +STUB("aWMUKhiwUbk", FT_Get_X11_Font_Format) +STUB("aWZ6qr7SrtU", _ZN3sce7Toolkit2NP2V28Commerce12SubContainerD1Ev) +STUB( + "aWbm8NugtMc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEC1EPNS2_10LibContextE) +STUB("aWc+LyHD1vk", __atomic_fetch_xor_1) +STUB( + "aWdHudDAY2I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE8capacityEv) +STUB("aWgEw2xL5zI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEED1Ev) +STUB("aWhoRwq2jFk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEED1Ev) +STUB( + "aWki-uzWxiM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEEC2Ev) +STUB("aWmkW6Qm++U", _ZN7WebCore8Settings42setCoreImageAcceleratedFilterRenderEnabledEb) +STUB("aWo+7jvpllY", _ZN3sce2np9HttpTrans4ReadEPNS0_6HandleEPvmPm) +STUB("aWo7BkA1YEc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEEC2EPKS6_) +STUB("aWov7LDvNh8", _ZN7bmalloc6IsoTLS8s_tlsKeyE) +STUB( + "aWqBlYPxBL0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEmmEi) +STUB("aWy9HMu1WK4", jpeg_fdct_7x14) +STUB("aX0HNPbwx7Q", _ZN3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap12setIsCurrentERKb) +STUB( + "aX11C8QgfhQ", + _ZN3sce2Np9CppWebApi7Matches2V129RequestMatchStatisticsFactory7destroyEPNS3_22RequestMatchStatisticsE) STUB("aX1JKpdidtI", sceNpUniversalDataSystemIntAbortHandle) STUB("aX1RlxvYl4A", sceAppInstUtilAppConvertAppDiscToDownload) +STUB( + "aX4TP0iQG7A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "aX4h3gFv8Q0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEmmEi) +STUB("aX5mvTtvo1M", uldn_close_67) +STUB("aX8H2+BBlWE", ldexpl) +STUB("aX8PI-h3+dE", FTA_Export_Module_t1cid) +STUB( + "aX8eP2PXg2Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEEC1ERKSA_) +STUB("aXH0HuAGF5A", _ZN3sce7Toolkit2NP24CheckAvailabilityRequestC2Ev) +STUB( + "aXIIQButpTY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEE7add_refEv) +STUB("aXJu6WWsrk0", _ZN7WebCore9HTMLNames4iTagE) +STUB("aXKRmANFUT4", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V219WebApiFilterRequest6toJsonERNS_4Json5ValueEb) +STUB("aXKwiUA25Qg", u_fgetNumberFormat_67) +STUB( + "aXL8JZTEwIw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEixEm) +STUB("aXLBs7DFqSA", ts) +STUB("aXPkwTBtroU", uloc_getLineOrientation_67) +STUB( + "aXRJqHmynS8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE6resizeEj) +STUB( + "aXSITGo5zP8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEC2EPNS2_10LibContextE) +STUB("aXTsXx87-8M", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13FriendsOfUserEEC2ERKS4_) +STUB( + "aXUUl21Pk-0", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_13FriendsOfUserENS1_15AppSTLAllocatorIS5_EEEEC2Ev) +STUB("aXUj3BT58vY", u_strToUpper) +STUB("aXXozCRvaGY", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEEixEm) +STUB("aXZ8mMlzpxs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119ChildActivityStatusEEC2EPS6_) +STUB( + "aXaewZzSxyk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "aXfI3LJ0Bug", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEC2Ev) +STUB( + "aXfcgVe-muQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEdeEv) STUB("aXhvf2OmbiE", sceNpTrophySystemGetTrophyGroupData) +STUB( + "aXikgAopsA0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEED2Ev) +STUB( + "aXjuXRfk6BU", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessions35hasxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB( + "aXkHQHosau0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEmmEi) +STUB( + "aXlJaJ61Ui4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEE11get_deleterEv) STUB("aXujNR3MorI", sceBdSchedSetBackgroundCopyRequest) +STUB( + "aXw+CSRHSNs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB("aY-404pbEfg", udat_formatForFields_59) STUB("aY-lm9NK8zU", scePerfTraceAmmGetInfo) +STUB( + "aY0vdvRszQM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEC1Ev) +STUB( + "aY2-NdiJ7es", + _ZN9Inspector25TimelineBackendDispatcher6createERNS_17BackendDispatcherEPNS_32TimelineBackendDispatcherHandlerE) +STUB( + "aY6jR4rVLow", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "aY6qVjKO7ro", + _ZN3JSC15WeakHandleOwner26isReachableFromOpaqueRootsENS_6HandleINS_7UnknownEEEPvRNS_11SlotVisitorE) +STUB("aY6qhHKBJp8", _ZN7WebCore36largestRectWithAspectRatioInsideRectEfRKNS_9FloatRectE) +STUB( + "aY7NNSxPM0Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEppEv) +STUB( + "aY81ScCpzrY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) STUB("aYBAAH7Gfws", sceUpsrvUpdateDestroyUpdateTask) +STUB( + "aYDzPTLngsk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEEaSERSA_) +STUB("aYGEkPYgtFU", + _ZNK3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayer12getAccountIdEv) +STUB("aYMtA-E3hDw", mono_btls_bio_mono_new) +STUB("aYOUSGHbeF8", _ZN3sce3pss4core7runtime21InitializeDiagnosticsEv) STUB("aYPCd1cChyg", sceRtcSetDosTime) +STUB("aYQRbQ8qN+A", _ZN7WebCore8SVGNames12operatorAttrE) +STUB("aYVETR3B8wk", _Atomic_load_2) +STUB( + "aYYyZLi405E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("aYhJ9FWn0I0", JSWeakRelease) STUB("aYkLspDSybs", sceSulphaGetClientInfo) +STUB( + "aYmk8T3aOlo", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119BandwidthProperties11setUpstreamERKNS1_6Common12IntrusivePtrINS3_24BandwidthUpstreamMetricsEEE) +STUB( + "aYp2n7ndY1c", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEdeEv) +STUB( + "aYpWWsup7to", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "aYr9UFReZQQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEEC2ERSA_) +STUB("aYrWOzj4DYw", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi24ParameterToReportResultsD2Ev) +STUB( + "aYxkOFB1dmc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEmmEv) STUB("aYySApdZmtE", sceAgcSdmaOpen) +STUB("aZ1gCm7lYhU", _ZN7WebCore16enclosingIntRectERKNS_10LayoutRectE) STUB("aZ5n2rbrF3M", sceCesUcs2StrToIso2022Str) +STUB("aZ7KyJ3gncM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEC2ERS7_) +STUB("aZ84p5aBkrc", WKPreferencesGetBeaconAPIEnabled) +STUB("aZ8QhrvO7-M", __asan_report_load16) +STUB("aZ9GDQ0F6cM", _ZN3JSC12HeapAnalyzerC2ERKS0_) STUB("aZD2KLJ80D0", sceDeci4hDrfpRename_fuse) +STUB( + "aZDf8iQPKdk", + _ZN9Inspector26LayerTreeBackendDispatcherC2ERNS_17BackendDispatcherEPNS_33LayerTreeBackendDispatcherHandlerE) +STUB("aZE-yjtVZp8", _ZN9Inspector21InspectorRuntimeAgent25enableControlFlowProfilerERN3WTF6StringE) +STUB("aZH+29bSsEk", _ZNK3sce3Xml3Dom8Document9getEntityENS1_6NodeIdE) +STUB( + "aZIvax0pEdg", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("aZK8lNei-Qw", fputc) +STUB("aZNI9FsqVdk", _ZN7WebCore17HTMLButtonElement7setTypeERKN3WTF12AtomicStringE) +STUB( + "aZO2yw9QR0Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE5beginEv) +STUB( + "aZSPlds3oh8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEEC2Ev) +STUB( + "aZSk83JBOo0", + _ZN3sce2Np9CppWebApi11UserProfile2V121PersonalDetailFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_14PersonalDetailEEE) +STUB("aZYhAxvffg4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEC2Ev) +STUB("aZaT3Nyab30", _ZN15AbstractStorage11LocalFolder4OpenENS_8ItemTypeE) +STUB( + "aZbnYi7I8Cg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEEaSERKSA_) +STUB( + "aZdDpGkWSHk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "aZdhm6JOFos", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEED1Ev) +STUB("aZdwjS+c3MA", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_28NpSessionDetailedInformationEEC1Ev) +STUB("aZiMQpRb7jk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEdeEv) +STUB( + "aZiUl74YnMk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEEC2EPS8_PNS2_10LibContextE) +STUB("aZnB3MqZQL4", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE3endEv) +STUB("aZnCcidQDDY", mono_aot_System_Net_Http_WebRequestunwind_info) +STUB( + "aZobEagYar8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEE11get_deleterEv) +STUB("aZwRizFSaYs", monoeg_g_slist_insert_sorted) +STUB( + "aa-kCJwD1Yk", + _ZN9Inspector21DOMFrontendDispatcher18pseudoElementAddedEiN3WTF6RefPtrINS_8Protocol3DOM4NodeENS1_13DumbPtrTraitsIS5_EEEE) STUB("aa2y9JoZwDc", sceAudioOut2LoContextAdvance) +STUB( + "aa8W09yOIi4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEaSERKS7_) STUB("aaC3005VtY4", sceUserServiceGetEventSortTitle) +STUB("aaDMGGkXFxo", frexpf) +STUB("aaE9dLay8Fs", _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession16unsetCustomData2Ev) +STUB("aaJrlb+ecao", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12unsetString2Ev) +STUB( + "aaNG4JrqDh8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEmmEi) +STUB("aaNRqkhVQyc", ucurr_forLocaleAndDate_67) +STUB("aaPDegynKuY", _ZN7WebCore19floatValueForLengthERKNS_6LengthEf) +STUB("aaPIv+KmJvg", mono_signature_param_is_out) +STUB("aaPmcVbflek", _ZN7WebCore8SVGNames15paint_orderAttrE) +STUB( + "aaYdOndDEIc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE3endEv) +STUB("aacYSnQC1To", monoeg_g_list_sort) +STUB( + "aaecCs8uOx4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEE11get_deleterEv) +STUB("aanMqRmIwds", _ZN9Inspector15RemoteInspector27clientCapabilitiesDidChangeEv) STUB("aaqUkzGjvM4", sceNpIpcClientTest2) +STUB("aaupu9HJGbE", _ZN3JSC2VM31intlRelativeTimeFormatSpaceSlowEv) +STUB("aawjck44ulE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V19JoinStateEEaSERKS7_) +STUB("ab+5Dimx0Kw", + _ZNK7WebCore22EmptyFrameLoaderClient23cannotShowMIMETypeErrorERKNS_16ResourceResponseE) +STUB("ab+Lelj7HXw", rgctx_fetch_trampoline_rgctx_127_p) +STUB( + "ab2wud16iYo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEE21intrusive_ptr_add_refEPS7_) +STUB( + "abBKDu80Xok", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEE5resetEPS6_) +STUB("abCQEKstw7g", _ULx86_64_get_save_loc) +STUB( + "abItqG3Bmb8", + _ZN3sce2Np9CppWebApi14SessionManager2V123FromNonPsnMemberFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_16FromNonPsnMemberEEE) +STUB( + "abLQYRQnc-s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("abQ7xd3yVXM", _ZN3sce2np18MemoryStreamWriterC2EPvm) +STUB("abaL6meqytw", _ZN3sce2Np9CppWebApi11Matchmaking2V116SubmitterFactory7destroyEPNS3_9SubmitterE) +STUB( + "abboquTOLoQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "abi3xMBV4Pc", + _ZN9Inspector25DebuggerBackendDispatcher20setPauseOnAssertionsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "abngJhUiYJ4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE4sizeEv) +STUB( + "abrAXZYxGGg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEEptEv) +STUB("abrgc4eCbm0", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17GetGameDataResultEE12deepCopyFromERS7_) +STUB("absEfxEm34g", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getGraphicsOffsetSequenceId) +STUB( + "abzO9WPS-Ys", + _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container7setSkusERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_3SkuEEEEE) +STUB("ac102y6Rjjc", _Hugeval) +STUB("ac2e4jbtGAQ", mono_bitset_size) +STUB("ac5f9+ILTJ8", monoeg_g_string_new_len) +STUB( + "ac8-pB3r2Jc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEixEm) +STUB("acA57vV3j1Q", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getSecondaryAudioStream) +STUB( + "acCynFvwD70", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEC1ERS7_) +STUB("acFHODnUrnM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEEC1EPS5_PNS2_10LibContextE) +STUB("acIXxXfqttk", _ZN7WebCore20serializationForHTMLERKNS_5ColorE) +STUB( + "acPd4kbrm6E", + _ZN3sce7Toolkit2NP15CommunicationIdC1ERK20SceNpCommunicationIdRK28SceNpCommunicationPassphraseRK27SceNpCommunicationSignature) +STUB("acU6Qzd8y8w", u_catopen_67) +STUB("acViQ0bTo7g", ubrk_open_59) +STUB("accA-Gi9aik", _ZNK3sce2Np9CppWebApi7Matches2V118RequestTeamResults6toJsonERNS_4Json5ValueEb) +STUB( + "aceF452f38o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE7reserveEi) +STUB( + "achZqoXR-q4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEEC2EPS5_PFvS7_EPNS2_10LibContextE) +STUB( + "acpx1BoX70g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEC2EPKS8_) +STUB("acr9PzoVsIw", mono_code_manager_destroy) +STUB("acxeAsX7154", _ZNK7WebCore15VisiblePosition19absoluteCaretBoundsEPb) +STUB("ad+qe0QhAxw", mono_code_manager_new) +STUB("ad1-t6xKVtA", WKContextRegisterURLSchemeAsEmptyDocument) +STUB( + "ad2br1lJ71A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "ad4zxPBlcGI", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10setString2EPKc) +STUB("ad547RBnW-A", GCC_except_table527) +STUB("ad80l3NdwB0", WKPageCopyRelatedPages) +STUB( + "adAU9LOL5lM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE7reserveEi) +STUB("adCAikkTibw", _ZN7WebCore18PlatformTimeRanges3addERKN3WTF9MediaTimeES4_) +STUB("adCOiUc2758", kmq_setattr) +STUB( + "adCRJ2N6W5w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEppEi) +STUB( + "adDrvPir7B8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEC2Ev) +STUB("adHqmwiJwXU", _ZNK7WebCore19InspectorController17shouldShowOverlayEv) +STUB( + "adKPku8Yhic", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEC2Ev) +STUB( + "adLS1DbXC9A", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("adMZUdkLHqE", _ZN7WebCore11DisplayList17DrawFocusRingPathC2ERKNS_4PathEffRKNS_5ColorE) +STUB("adQGcgttQZA", _ZN3JSC2VM29finalizationRegistrySpaceSlowEv) +STUB("adUN2UEsOQ4", pr8) +STUB( + "adY--moNJyY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEEcvbEv) +STUB("adb9FOgE2Cw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE5clearEv) +STUB( + "adcN0g0uOiM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEptEv) +STUB( + "addlbP1Nxpw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEptEv) STUB("adh--6nIqTk", scePthreadRwlockTimedwrlock) +STUB("adjFB0jX3n8", _ZN7WebCore16HTMLImageElement14setCrossOriginERKN3WTF10AtomStringE) +STUB( + "adkIhIybMOU", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi15getGameSessionsEiRKNS4_26ParameterToGetGameSessionsERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_27GetGameSessionsResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("adqX2nHKi8k", _ZN8meta_gen13JpegRetriever19JPEGPROM_MIN_OFFSETE) +STUB("advGOicx-jc", + _ZN3sce2Np9CppWebApi11Matchmaking2V117UserTicketFactory7destroyEPNS3_10UserTicketE) +STUB("adyB3AgeVqc", _ZN12video_parser5vpcom6StringD1Ev) STUB("ae-IVPMSWjU", sceAudioOutSetRecMode) +STUB("aeHxLWwq0gQ", _ZTVN10__cxxabiv119__pointer_type_infoE) +STUB( + "aeKwRy5SK6w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEmmEi) +STUB( + "aeN9YOvaIcI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "aeOSvgR7Pa8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEptEv) +STUB("aePIC2GrVwI", _ZNK7WebCore11MediaPlayer15contentMIMETypeEv) +STUB("aeQscmuBVBc", + _ZNK3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession13platformIsSetEv) +STUB("aeWbSLSVXMw", _ZN3sce7Toolkit2NP23TssGetStatusInputParamsC1Ev) +STUB("aeeMZ0XrNsY", err) +STUB( + "aeee7nTH-0U", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBody10getPlayersEv) +STUB( + "aejCEhqI3Tc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEC1EPNS2_10LibContextE) +STUB( + "aen7SaHWVcQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "aeoeNp7Ujl8", + _ZN7WebCore21ComplexTextControllerC1ERKNS_11FontCascadeERKNS_7TextRunERN3WTF6VectorINS7_3RefINS0_14ComplexTextRunENS7_13DumbPtrTraitsISA_EEEELm0ENS7_15CrashOnOverflowELm16ENS7_10FastMallocEEE) +STUB( + "aepVqAcfZFg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE5emptyEv) +STUB("aes3SNe3rgQ", mono_btls_error_get_error_line) +STUB("aesyjrHVWy4", strncmp) +STUB( + "aeu6WFR+fG4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEppEi) +STUB("aevWXt+rgMA", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V111LeaveReasonEEmmEi) +STUB("aezUahhkO0A", + _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead16getMaxSpectatorsEv) +STUB("af1dBuHUIhg", + _ZNK3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsers8getlimitEv) STUB("af74HUu4EWk", sceNpUniversalDataSystemIntRecordObjectSetString) +STUB("afBzbtb04ZQ", + _ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponseC1EPNS1_6Common10LibContextE) +STUB( + "afCvdAYpf7Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEEptEv) +STUB("afE3+nWWFUY", mono_btls_key_free) +STUB("afFm5k0o1bg", WKPreferencesSetPageCacheSupportsPlugins) +STUB( + "afLdYzYe828", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE11getResponseERS8_) +STUB("afQxjMPpL4E", GCC_except_table235) +STUB( + "afVTLlesCjk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE6resizeEj) +STUB( + "afVYI7S16cY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEaSERS7_) +STUB( + "afYvGYm3iDs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEdeEv) +STUB( + "afgbnDwoY9s", + _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile10setAvatarsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_6AvatarEEEEE) STUB("afhK5KcJOJY", sceHmdInternalSetVirtualDisplayHeight) +STUB( + "afpvA3VAHLM", + _ZN7WebCore16NavigationActionC1ERNS_8DocumentERKNS_15ResourceRequestENS_20InitiatedByMainFrameENS_14NavigationTypeENS_28ShouldOpenExternalURLsPolicyEPNS_5EventERKN3WTF12AtomicStringE) +STUB( + "afr3OKw9Rj8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEE7get_refEv) +STUB( + "afv3Zs6rHD4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEE11get_deleterEv) +STUB( + "afxVDUAXC1o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEmmEi) +STUB("agAYSUes238", _ZGVNSt7codecvtIcc9_MbstatetE2idE) +STUB( + "agAw838AT6I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "agF7XA3CIBM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE7reserveEi) +STUB( + "agHJ6BbQF2I", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEdeEv) +STUB("agMRiMzK4S8", mono_aot_Sce_Vsh_ProfileCacheplt_end) +STUB("agNCTw395Jg", _ZN7WebCore26ContextDestructionObserverC1EPNS_22ScriptExecutionContextE) +STUB( + "agQadFtRk5o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEE11get_deleterEv) +STUB("agQoH0seOCg", _ZN3JSC8Debugger6detachEPNS_14JSGlobalObjectENS0_15ReasonForDetachE) STUB("agTSp935qVQ", sceVnaPlaySound) +STUB("agYDXAyL-K8", _ZN3sce2np3ipc17ServiceIpmiClientD2Ev) +STUB( + "agZ1hyulzac", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEaSERS7_) +STUB( + "agZ7AhDtUOw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "agf32YGSf5A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEED1Ev) STUB("agig-iDRrTE", sceAvPlayerPrintf) +STUB("agt5grfXwMw", _ZN7WebCore4BlobC2Ev) +STUB("agvAH9mngCc", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container21getContentDescriptorsEv) +STUB( + "agyV+U3R-9Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE10setContextEPNS2_10LibContextE) +STUB( + "agztwj6WAig", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE4sizeEv) +STUB("ah2pzOxV1FI", unumf_closeResult_67) +STUB( + "ah6SYEO-LjA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEC1EPKS8_) +STUB("ah7gMVFXK8I", _ZN7WebCore13MIMETypeCachenaEmPv) +STUB( + "ahAMvg6mcGk", + _ZN3JSC11createErrorEPNS_14JSGlobalObjectENS_7JSValueERKN3WTF6StringEPFS4_S6_S6_NS_11RuntimeTypeENS_13ErrorInstance28SourceTextWhereErrorOccurredEE) +STUB("ahAkwbH9gio", _ZN7WebCore11HistoryItemD1Ev) +STUB("ahGKKIJ8ZTg", _ZN7bmalloc11IsoPageBase18allocatePageMemoryEv) STUB("ahHhOf+QNkQ", sceScreenShotSetOverlayImage) STUB("ahIXyuwF0-o", sceFiosIOFilterRemove) +STUB("ahM6BkEfFig", rgctx_fetch_trampoline_mrgctx_84_p) +STUB( + "ahNtRKgQhpg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE3endEv) +STUB("ahPLfy5k4M0", mono_aot_Sce_Facebook_CSSLayoutunbox_trampolines_end) +STUB("ahQi-9i4dqQ", X509_STORE_CTX_get_chain) +STUB("ahT82AdFW1M", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35ErrorC2EPNS1_6Common10LibContextE) +STUB( + "ahUT-PUy75w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEE11release_refEv) +STUB("ahWERUaLK5I", _ZN3sce2np9HttpTrans4InitEPNS0_12HttpTemplateEiPKcm) STUB("ahbRpQs2q1Q", sceOpusSilkEncEncodeCancelForTimeout) +STUB( + "ahd4FiDSt9g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "ahdNk7Bh1a8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("ahhmHImMlbs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEED1Ev) STUB("ahiOMqoYYMc", sceNetGetIfListOnce) +STUB("ahrF-7fmUY8", _ZN3sce3Xml3Dom15DocumentBuilderC2Ev) +STUB("ahs8y-klIBI", _ZN3sce2Np9CppWebApi7Matches2V120ResponseMatchResultsD2Ev) +STUB( + "ahwNep5XcBU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) STUB("ahy8NSXrSbs", sceKernelCallIndirectBuffer) +STUB("ai-1r5S6AvU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEdeEv) +STUB( + "ai107an6OLw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEEptEv) STUB("ai2UFvUWMs0", scePerfPmcL3Stop) STUB("ai3eCxzTopg", sceVoiceChatGetMicState) STUB("ai6AfGrBs4o", sceFontRendererResetOutlineBuffer) STUB("ai7LcBcf6Rs", sceShellCoreUtilGetRemotePlayStatus) +STUB("aiMVZL2esLE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEEC2Ev) +STUB( + "aiMrw3MShgI", + _ZN9Inspector21HeapBackendDispatcher2gcElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "aiMwcc4RAK4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEE3getEv) +STUB( + "aiPjJRNK2+0", + _ZN9Inspector28DOMDebuggerBackendDispatcher26setEventListenerBreakpointElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "aiQw7OtvfHU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEEaSERKSA_) +STUB( + "aiWe6moEmq0", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEEC1ERKSC_) +STUB( + "aiWhz6KL4g8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEmmEi) STUB("aiaG4xXjMCM", sceAppInstUtilAppGetAddcontList) +STUB( + "aigfG-dOxCQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEppEi) +STUB("aimJlnIKg+k", _ZN3sce2Np9CppWebApi7Matches2V113ErrorResponseC1EPNS1_6Common10LibContextE) +STUB( + "aipl1lkJDaI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB("aiqrTcn+HOw", JVM_SetProtectionDomain) STUB("aishVAiFaYM", scePthreadSemPost) STUB("aivUIZ6BMvI", sceNpUniversalDataSystemIntDestroyRecordArray) +STUB("aixppP6tkFs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEC1Ev) STUB("aj3L-iaFmyk", sceGnmInsertSetColorMarker) +STUB( + "aj9Khv0ASEE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "ajA8yr7j+Xo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE5clearEv) +STUB("ajOpWARYZps", ubidi_addPropertyStarts_67) +STUB("ajRmfIsy4KI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEdeEv) +STUB( + "ajSa9xyBduM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("ajU5bvfbODk", _ZN3JSC7Symbols15linkPrivateNameE) STUB("ajVj3QG2um4", sceVoiceDisconnectIPortFromOPort) +STUB( + "ajXHaO0i4M0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEmmEv) STUB("ajXKK3BOVc8", sceVoiceChatRegisterMicEventHandler) +STUB( + "ajfupy8jQjQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEppEv) STUB("ajoqGz0D9Dw", sceNpUtilHttpUrlEncode) STUB("ajvzc8e2upo", sceNpMatching2CreateContextA) +STUB( + "ajxMs7QcBm8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("ajyl7RSiYH4", WKRenderObjectGetChildren) +STUB("ak09Q+mYM0k", _ZN3sce3Xml18SerializeParameterC2Ev) +STUB( + "ak704w2QbC0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("akCszAlMQQY", JSObjectGetProxyTarget) +STUB("akCy74E4vyk", mono_aot_Sce_Vsh_Lxmethod_addresses) STUB("akGUA-sxyYk", sceSpNetSetsockopt) +STUB("akLQmE5Wyz8", rgctx_fetch_trampoline_rgctx_70) +STUB( + "akLsgnrhivM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE5beginEv) +STUB("akQ5ZpNSu4Q", mono_aot_System_ComponentModel_Compositionplt) +STUB("akQptX8gLJE", _ZN3WTF11Persistence7DecoderC1EPKhm) +STUB("akU0JKo9--s", _ZN7WebCore17FullscreenManager19willEnterFullscreenERNS_7ElementE) +STUB( + "akcMQawu5q4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEmmEv) +STUB( + "akcx-FhXJrM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEC2ERKS7_) +STUB("akimK5gpdho", cairo_in_fill) +STUB("akjIhi9hoC4", _ZN9Inspector15RemoteInspectorD0Ev) STUB("akmC1nXbrLE", sceHidControlGetBatteryState) +STUB("akok+Vqkfk0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth8AuthCodeEE5resetEv) +STUB("akpGErA1zdg", iscntrl) +STUB("akrXQ+t4Tx0", _ZN9Inspector17ScriptDebugServernwEmPv) +STUB( + "aktX5hPkV2k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE7popBackEv) +STUB("akvKAVg-uyk", _ZN4Manx21DisplayRefreshMonitorC1Ev) +STUB( + "akyt+WNCOK0", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) STUB("al3JzFI9MQ0", sceLibcInternalHeapErrorReportForGame) +STUB( + "alDhD2lkUZU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "alLClFA-720", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEE7add_refEv) STUB("alNLle2vACg", sceNpIdMapperAccountIdToNpId) +STUB("alNWe8glQH4", _LDint) +STUB( + "alNm03ULP+8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEC2EPKS8_) +STUB( + "alTlXracq1k", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeader12setsessionIdEPKc) STUB("alZfRdr2RP8", sceAppMessagingClearEventFlag) +STUB( + "alaoKBIlea8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "alcxoEVoMpw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEC2EPS6_PNS2_10LibContextE) +STUB("ale+MG3sPCU", _ZN10Deprecated11ScriptValueD1Ev) +STUB("alezLEkB40M", _ZN12video_parser5vpcom14LwMutexDestroyEPNS0_11sys_lwmutexE) +STUB("alkDBoyYoQM", _ZN7WebCore22identifierToByteStringERN3JSC14JSGlobalObjectERKNS0_10IdentifierE) STUB("almKa6+CwG8", sceVrTrackerSetHookFunction) +STUB( + "aluABqfaMzo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE3endEv) +STUB("alwAE11gcPY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEcvbEv) +STUB( + "alz5DbGb-G4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEEaSERKSA_) +STUB("am077cKfnUA", _ZN3NTF17URLRequestDataJobD0Ev) +STUB("am3KQF95AEY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEptEv) +STUB( + "am8XV0nsMT4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEEaSERSA_) +STUB("amFi-Av19hU", _ZN3sce2np9EventFlag6CreateEPKcj) +STUB("amHyU7v8f-A", _Tss_create) STUB("amMmIL1kj-k", sceFaceTrackerRegisterStartTrackingCallback) +STUB("amNASK6thPE", + _ZN7WebCore12EventHandler23handleMouseReleaseEventERKNS_28MouseEventWithHitTestResultsE) STUB("amNUtF1PF-w", sceTsSetStartingBW) +STUB("amUx1Imsa9E", png_get_tRNS) +STUB( + "amXExmx7hUU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEixEm) +STUB("amZVchWtTcg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEppEi) +STUB("amZi2FCVjEw", _ZN7WebCore16BlobRegistryImplD2Ev) +STUB( + "amaMBWVvgmU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEED2Ev) STUB("amcmrY62BD4", sceFontRendererGetOutlineBufferSize) STUB("amghnA-Ev5s", sceVideoOutUnlockBuffer) +STUB( + "amp38QFPGEw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE6resizeEj) STUB("amqSGH8l--s", sceNetCtlApRestart) +STUB( + "amsGjs8-OJM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEC1Ev) +STUB( + "amsnIIIW18A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEED2Ev) STUB("amuBfI-AQc4", sceRudpInit) +STUB( + "an757JG6pYo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEppEv) +STUB( + "anKX4TLNtC4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE5beginEv) +STUB("anOM+-Ryi+o", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEEC1ERS7_) +STUB( + "anSJcjPKG6M", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V135SetMultiVariablesRequestBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_28SetMultiVariablesRequestBodyEEE) +STUB("anYqvqkEkK4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE5emptyEv) +STUB("ankx4EhG+KA", il2cpp_field_static_get_value) +STUB("annD2qoQx6Y", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_21GameCustomDataMessageEEC2Ev) +STUB("annvefz57+c", _ZN3sce7Toolkit2NP2V27Session16FixedSessionData21SESSION_DATA_MAX_SIZEE) +STUB( + "anoZfmgEbmo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEED2Ev) +STUB( + "ao+19oHLY9w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE8copyFromERKS9_) +STUB( + "ao0dxc0dk6g", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEixEm) +STUB("ao48TURXxrE", _ZTVN12video_parser13cVideoMetaVWGE) +STUB("ao7yNPcfEBc", mono_class_enum_basetype) STUB("ao8NZ+FRYJE", sceHmdDistortionInitialize) +STUB( + "ao9LmnnbyOI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEEC2Ev) +STUB("aoAgc7+-6Kc", _ZN7WebCore17PageConsoleClientC1ERKS0_) +STUB( + "aoCu0UXh1Ec", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEppEi) STUB("aoJ4QZs+ge8", ScePsmMonoThreadpoolSetMaxThreads) +STUB( + "aoMjRMXGOVo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEE5resetEPS9_) +STUB( + "aoR9iEcZ60k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEaSERS7_) +STUB( + "aoSMW27UJsI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEE7add_refEv) +STUB("aoSuoqM2sL4", uregex_refreshUText_67) +STUB("aoTkxU86Mr4", verr) STUB("aoZKKNjlq3Y", sceSaveDataRestoreLoadSaveDataMemory) +STUB("aoas3bJANfY", _ZN3sce2np10EventQueue10ClearAbortEt) +STUB("aoccPBCZAMk", _ZN7WebCore16JSXMLHttpRequest13estimatedSizeEPN3JSC6JSCellERNS1_2VME) +STUB( + "aof6Mapp6MA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEE3getEv) +STUB("aohCT6DvBRc", Java_com_sony_bdjstack_system_BDJModule_destroy) +STUB("aoimHrG+XDk", _ZN7WebCore9HTMLNames6preTagE) +STUB("aoo05C2wwa4", + _ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer15getPushContextsEv) STUB("aosLBGaeOtw", sceUpsrvUpdateCheckDoCheckSystem) +STUB("aotaAaQK6yc", _ZSt15system_categoryv) +STUB( + "aovcMZ4fgVQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEppEi) +STUB( + "ap0kc8Dknco", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10getString1Ev) +STUB( + "ap1ZMM7MaGI", + _ZN3sce2Np9CppWebApi14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBody8fromJsonERKNS_4Json5ValueE) +STUB( + "ap3T3JpHKRg", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB( + "apBIlDsa1Lc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEE11release_refEv) +STUB( + "apEcSKD4Vv0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE7reserveEi) +STUB("apHKv46QaCw", _ZTVSt12bad_weak_ptr) +STUB( + "apM-mjjHC4I", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V314MissingElement6toJsonERNS_4Json5ValueEb) +STUB("apPZ6HKZWaQ", _ZNKSt9exception4whatEv) +STUB( + "apQOPF2ho7w", + _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody16customData2IsSetEv) +STUB("apWO3tteYGs", _ZNK7WebCore11HistoryItem15pageScaleFactorEv) +STUB("apWSdRJ0u+U", _ZN7WebCore10FileSystem14setMetadataURLERKN3WTF6StringES4_S4_) +STUB( + "apbF-sJ9cJs", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersD1Ev) +STUB("apdxz6cLMh8", truncl) +STUB("aphzmNmDaZM", _ZN7WebCore21JSMainThreadExecState17s_mainThreadStateE) +STUB( + "apiPkDw5Oog", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEmmEv) +STUB( + "apjEBKUh-CQ", + _ZN7WebCore16DeviceMotionData6createEON3WTF6RefPtrINS0_12AccelerationENS1_13DumbPtrTraitsIS3_EEEES7_ONS2_INS0_12RotationRateENS4_IS8_EEEENS1_8OptionalIdEE) +STUB("apl6KD3oTLg", _ZN9Inspector24WorkerFrontendDispatcher16workerTerminatedERKN3WTF6StringE) +STUB("aplBb1IcJJc", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountIdaSERS5_) +STUB( + "apokb4GcLyI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE5emptyEv) +STUB("apqUImJIJ7k", + _ZNK3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator6toJsonERNS_4Json5ValueEb) +STUB( + "apsoC002ppE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE8capacityEv) +STUB("apt8-c9wFxQ", ures_getStringByKey) +STUB( + "apt98EnGuzE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB( + "apyVwAqENlk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEmmEv) +STUB( + "aq0MY9uUz-o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEE7get_refEv) STUB("aq1jwlgyOV4", sceUserServiceGetPartyMuteListA) +STUB( + "aq2LCrKsmI8", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEEiRNS2_10LibContextEPT_m) STUB("aq2yxF3xO1c", sceMbusRemoveAudioOutHandleAttribute) +STUB( + "aq315CEPq-A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEED2Ev) STUB("aq9XWp-0Cvg", sceCesRefersUcsProfileJisX0201Katakana) +STUB("aqE76rIqzBw", _ZN3WTF7Unicode18convertUTF8ToUTF16EPPKcS2_PPDsS4_Pbb) +STUB( + "aqMXEOuTFNI", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSessionC2ERS5_) STUB("aqMiF0AgUYI", sceVdecswSetDecodeInput) +STUB("aqNOK8X8jP4", _ZN3JSC12CachePayloadaSEOS0_) +STUB("aqNWK5C-Q4E", u_vformatMessageWithError_67) +STUB( + "aqbJR-kNM6I", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicket30unsetxPsnAcceptPlatformNamePs5Ev) +STUB("aqclofcsAlg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEC1EPS8_) +STUB("aqft612D2VY", uspoof_checkUnicodeString_67) +STUB("aqgXbzdfS7A", _ZN3sce7Toolkit2NP2V211SocialMedia7Request7PhotoFbC2Ev) STUB("aqhuK2Mj4X4", sceGnmSpmInit) +STUB("aqi2iC+vn4Q", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError10setMessageEPKc) +STUB( + "aqiN1B0F5Os", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEEC1ERKSA_) STUB("aqjnE9fG-OM", sceCesMbcToUtf8) STUB("aqpZ3UxXfcw", scePerfPmcMperfGetCounter) STUB("aqqpmI7-1j0", sceLibcDebugOut) +STUB("aqyjhIx7jaY", _ZSt7_FiopenPKwNSt5_IosbIiE9_OpenmodeEi) +STUB("ar-S0C0QUvc", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12Notification14NetStateChangeEEC1Ev) STUB("arAQRFlwqaA", sceNetCtlGetInfoV6IpcInt) +STUB("arB3rFJIChI", _ZN3sce7Toolkit2NP21TusGetVarsInputParamsC1Ev) +STUB( + "arCJ+ODrpbU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("arCP3jQ+Jbo", _ZN3WTF14derefIfNotNullI6_cairoEEvPT_) +STUB("arIKLlen2sg", erfc) +STUB("arITZPTK+0U", mono_aot_System_ComponentModel_Compositionmethod_addresses) STUB("arJp991xk5k", sceAudioInSetUserMute) +STUB("arLNDKd9JDs", _ZN3NTF17URLRequestJobImplC2Ev) +STUB( + "arNoQ2LLhV0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEEaSERKS9_) +STUB( + "arPrgJLwDO4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEC1ERKS7_) +STUB("arhBKRy2grc", WKBundleScriptWorldDisableOverrideBuiltinsBehavior) +STUB( + "arkXHB48y6M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEE11release_refEv) STUB("aroIog+umzo", sceCompositorSetZoomCommand) +STUB( + "arpVr0N2Iog", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEeqERKSA_) +STUB("arsYbUa4c7A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEE21intrusive_ptr_add_refEPS5_) +STUB("aruzyh1cSNQ", mono_aot_I18N_Otherunbox_trampolines_end) +STUB("arwhrDNeQwU", uloc_getDisplayScriptInContext_67) +STUB( + "as7GCfRIzhQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE8pushBackERKS8_) +STUB( + "as7VlqG7Vik", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEE7add_refEv) +STUB("as8Od-tH1BI", __stderrp) +STUB( + "asCBie4rWOQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEED2Ev) +STUB( + "asFHzKFbTTQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEED2Ev) +STUB("asGB8UpyDfY", ures_getUTF8StringByIndex) +STUB("asKUwUaBVUM", _ZN3sce2Np9CppWebApi7Matches2V14Task15setAvailabilityERKNS3_16TaskAvailabilityE) STUB("asLBe0esmIY", sceSystemStateMgrIsShellUIShutdownInProgress) +STUB( + "asMHWDLonkc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("asMfHgdk+QA", _ZN7WebCore9HTMLNames17aria_colcountAttrE) +STUB( + "asQUnfmwick", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEC1EPS8_) +STUB( + "asS8oQA8ZrY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEC2ERKS7_) +STUB("asSKL30+heA", ksem_destroy) +STUB( + "asSa1lvhVzs", + _ZN7WebCore19JSDOMMatrixReadOnly6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_17DOMMatrixReadOnlyENS6_13DumbPtrTraitsIS8_EEEE) +STUB("asTNiYAAD9Q", u_strcspn_67) +STUB("asUHs4suKzU", _ZN7WebCore12EditingStyleC1EPKNS_19CSSStyleDeclarationE) +STUB( + "asXMdmhaxQU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEEC2ERSA_) +STUB( + "asZHW6y80xo", + _ZN3JSC8JSObject40putDirectNativeFunctionWithoutTransitionERNS_2VMEPNS_14JSGlobalObjectERKNS_12PropertyNameEjNS_14NativeFunctionENS_9IntrinsicEj) +STUB( + "asZNsK-7K3c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE7popBackEv) +STUB("asZdig1mPlA", _ZN3sce2np8SelectorD1Ev) +STUB("asc8FQ54ULg", getRecvEventQueueByProtocolNumber) STUB("asilo8VNGvg", sceHmd2ReprojectionDisableMirroring) STUB("asjUJJ+aa8s", sceFiberOptParamInitialize) +STUB("asn9lqLLsqE", + _ZNK3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer12getJoinStateEv) +STUB("asorX7SqInU", _ZN15AbstractStorage15FacebookContent8SeekByteEliPl) +STUB("asrJEMEOD4c", mono_metadata_cleanup) +STUB("asuNB7pBKRA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEixEm) +STUB("asubj27c4Vg", + _ZNK7WebCore37BasicComponentTransferFilterOperation14transformColorERNS_5SRGBAIfEE) STUB("aswH9c+RN0E", sceSlimglCompositorSetMemoryCommand) +STUB("asyymNe9-xA", _ZN4Manx15textFromKeyCodeEib) STUB("asz3TtIqGF8", sceNpWebApiTerminate) +STUB("aszOBy5Fl+0", mono_method_full_name) +STUB("at-9g8ayvfA", _ZN7WebCorelsERN3WTF10TextStreamERKNS_15VisiblePositionE) +STUB("at2ZxXvQUlE", _ZN3JSC7Symbols20toIntegerPrivateNameE) STUB("atGfzCaXMak", sceNetSyncDestroy) +STUB("atK8tRkYvFI", WKResetMockMediaDevices) +STUB( + "atKcj5lEK6M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "atRhehc0lZE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEptEv) STUB("atWcfgasESY", _sceNpHeapStrdup) +STUB("atWsdzCXk6E", _ZN3JSC2VM21sentinelMapBucketSlowEv) +STUB("atYpibBZTDI", _ZNSt12future_errorC1ERKS_) +STUB( + "atb6tzrnrvQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "ateVTS4wifI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEE7add_refEv) +STUB( + "atgD3il9nE0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEED2Ev) STUB("atgHp5dQi5k", sceNpManagerIntIsTemporarySignout) STUB("atiUTsTFJ3k", sceShellCoreUtilSetUIStatus) +STUB("atp5E8KwLWU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEED2Ev) STUB("atsO3WGZqZA", scePssCAudGetSurroundPan) +STUB("atu-QRHqvgo", _ZN7WebCore12EventHandler8keyEventERKNS_21PlatformKeyboardEventE) +STUB("atu1X5r1lok", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi24ParameterToReportResults9terminateEv) +STUB("au+YxKwehQM", _ZTSN10__cxxabiv116__enum_type_infoE) +STUB( + "au7up1F0kiU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("auH+4s4zhjI", _ZN3sce7Toolkit2NP2V24Core12ResponseDataC1Ev) +STUB("auHmCoRz6d8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEC1ERS7_) +STUB( + "auIBRebRSls", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEE7add_refEv) +STUB("auKLpZXdSfw", _ZN7WebCore19UserContentProviderD1Ev) +STUB( + "auKOJUT8mxY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEmmEv) +STUB( + "auKzG4tIgx0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("auUp-ji6a5w", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEE11release_refEv) +STUB("auWuyA-JeSQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEptEv) +STUB("auXbCImj7Qg", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes14unsetBoolean10Ev) STUB("auc64RJAcus", sceUserServiceGetNpOfflineAccountAdult) +STUB( + "aucQMIstr0c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("aucQMrQoXck", _ZNSt9_FacetptrISt7collateIcEE6_PsaveE) +STUB("aue91NktFx4", _ZNK7WebCore11MediaSample6isSyncEv) STUB("aukH7OdPsjo", sceVdecwrapMapDirectMemory) +STUB("aunaEfND9nY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEE7get_refEv) +STUB("aus1pUvQ7ts", WKBundleGarbageCollectJavaScriptObjectsOnAlternateThreadForDebugging) +STUB( + "aut5heCd4I0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEE7add_refEv) +STUB( + "auxW+OVdLA0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEC2Ev) +STUB( + "av-FCO70Ci8", + _ZN7WebCore11DisplayList18FillCompositedRectC1ERKNS_9FloatRectERKNS_5ColorENS_17CompositeOperatorENS_9BlendModeE) +STUB( + "av-gUOC3xzo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEED2Ev) +STUB("av0w04NTFNM", WKPreferencesCopySerifFontFamily) +STUB("av4SyPPLKYs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEE5resetEPS6_) +STUB("av5Qir5iq4s", mono_runtime_cleanup) +STUB("av7HJthoxuM", _ZN3JSC21loadAndEvaluateModuleEPNS_9ExecStateERKN3WTF6StringENS_7JSValueES6_) +STUB("av8J5NBkbRE", ubrk_getRuleStatus) STUB("av8Z++94rs0", sceAvPlayerSetTrickSpeed) +STUB( + "avAwLgN3BVk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE5emptyEv) +STUB("avBV-pprLUo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEC1ERS7_) +STUB( + "avE-n5TEQdw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEneERKS9_) +STUB("avF0et-KJQ8", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEEcvbEv) +STUB("avLzN0tTxLI", FT_Glyph_Get_CBox) +STUB("avN3Kx5sy9Y", _ZN8meta_gen11MsvPromoter18isDrmFileExtentionEv) +STUB("avNGvstpJLs", _ZNK3JSC17DebuggerCallFrame9thisValueERNS_2VME) +STUB("avRNeA6IOWg", _ZN3sce2Np9CppWebApi6Common6VectorIiE21intrusive_ptr_sub_refEPS4_) +STUB( + "avS3-G1sz+A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE5clearEv) +STUB("avUJ35W2eSs", _ZN7WebCore31SimplifiedBackwardsTextIterator7advanceEv) +STUB("avUvU+GO3u4", _ZN7WebCore8SVGNames8seedAttrE) +STUB( + "avW+EVfuTRQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEEC1Ev) +STUB( + "avWHkrQSU0E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("avXro2Peyc4", _ZN9MmsMp4Box7ReleaseEv) +STUB("avdA3zrzrxQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116InitialJoinStateEEptEv) +STUB("aveafNCCxgI", _ZN7WebCore14CachedResource9addClientERNS_20CachedResourceClientE) +STUB( + "avf5qyoos0c", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi32ParameterToPostGameSessionsTouch10initializeEPNS1_6Common10LibContextEPKc) STUB("avfGJ94g36Q", _sceFiberAttachContextAndRun) +STUB("avfJcMV8UJM", _ZN7WebCore16JSXMLHttpRequest4infoEv) +STUB( + "avfqNeStSiQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEC2EPS8_) +STUB("aviqLKPUO5k", __FRAME_END__) +STUB( + "avlRUYsiXOM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("avm1fE1zqH4", _ZN7WebCore21DiagnosticLoggingKeys20telemetryPageLoadKeyEv) +STUB("avmBjCFiFw0", mono_aot_appunwind_info) +STUB( + "avpyQQEKr2E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "avsgLCaJz0w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEC1EPNS2_10LibContextE) +STUB( + "avsoSLkfaQY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEC1EPS8_) +STUB("avv2T+lDx3E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEE6assignEPS4_PFvS6_EPNS2_10LibContextE) STUB("avvJ3J0H0EY", sceKernelJitCreateSharedMemory) +STUB("aw3O4wXGYX4", _ZN3sce7Toolkit2NP2V29Messaging12Notification18NewGameDataMessage5resetEv) +STUB( + "aw5Hx2PySrk", + _ZN7WebCore15UserInputBridge20handleAccessKeyEventERKNS_21PlatformKeyboardEventENS_11InputSourceE) +STUB( + "aw9fJaCjyj8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) STUB("awBTm0vNaos", sceShellCoreUtilNotifyFsReadError) +STUB( + "awPn4Q0rGhk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEptEv) +STUB( + "awQ-eaINpls", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEdeEv) STUB("awS+eYVuXJA", sceLncUtilRegisterShellUI) +STUB( + "awTPhlC4368", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEdeEv) +STUB("awW5TSuyZrM", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession16customData1IsSetEv) +STUB( + "awWNvbk6lcA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE5beginEv) +STUB("awXq05OrlHg", mono_field_set_value) +STUB( + "awgfHrO75d4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("awhEw-iEmcc", WKPreferencesSetLegacyEncryptedMediaAPIEnabled) +STUB("awhUaPNTjCE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEEC1EPNS2_10LibContextE) +STUB( + "awiCShVEL+E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE3endEv) +STUB("awiefLtMn-A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEC1EPS8_) +STUB("awkeNR6Ukp8", _ZNK3sce4Json6String4findERKS1_m) +STUB( + "awooSI0Ff-Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEmmEi) +STUB( + "awpGUPscU1U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEdeEv) +STUB("awr1A2VAVZQ", _ZSt5wclog) +STUB("awu1Roprl3w", _ZN7WebCore5ColorC2ERKN3WTF6StringE) +STUB("awzYI5eU6u0", _ZN9Inspector8Protocol3CSS11CSSProperty5RangeE) +STUB( + "ax-kbtrk88Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEE21intrusive_ptr_sub_refEPS7_) +STUB( + "ax0+mhYUSvQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEED2Ev) +STUB("ax6MAHig4vY", _ZN7WebCore15JSFetchResponseaSERKS0_) +STUB("axHgLfPgQoA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEEC2EPS5_PNS2_10LibContextE) +STUB( + "axJg74D-HEQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEC2EPS6_PNS2_10LibContextE) +STUB( + "axMCEHLq8tA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEC1Ev) +STUB("axMM6sX57vM", mono_aot_Sce_Vsh_Orbis_AbstractStorageunbox_trampoline_addresses) +STUB("axMiO3a4pJ4", mono_method_print_code) +STUB("axN4ia12Iyo", + _ZN7WebCore11DisplayList15FillRoundedRectC2ERKNS_16FloatRoundedRectERKNS_5ColorENS_9BlendModeE) +STUB( + "axQem2OiJSk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEEC1ERKSA_) +STUB("axRdn+LFHf8", ures_getUTF8StringByKey) +STUB("axSE8LNdZeQ", mono_aot_Sce_Vsh_AutoMounterWrapperjit_code_end) +STUB( + "axTLVd-C36Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEC2Ev) STUB("axVqO-tslwo", sceFiosDateFromComponents) +STUB("axcsU3c9oMo", mono_aot_Sce_Vsh_Friendplt) +STUB( + "axe8sVy7Hbw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEEC1Ev) +STUB( + "axitYpOhwos", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10getString4Ev) +STUB( + "axjBTaPKhLg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEEaSERKS8_) +STUB( + "axnRx5sJ1rw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE4sizeEv) +STUB( + "axpSV5GTEdg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE21intrusive_ptr_add_refEPS7_) +STUB( + "axwZGxiWbUI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEEcvbEv) +STUB("ay+atchy2FA", uldn_getLocale_67) +STUB("ay0k5Z39kmA", _ZNK7WebCore17HTMLSelectElement13selectedIndexEv) +STUB("ay3uROQAc5A", opendir) +STUB("ay86oU9E3EI", _ZN7WebCore9FrameView23updateCanHaveScrollbarsEv) +STUB( + "ayAwPcfD6Iw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEeqERKS9_) +STUB( + "ayBRcR8vbd8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB("ayNf-O-HxkQ", _ZN3sce7Toolkit2NP15AppSTLAllocatorItE7addressERKt) +STUB("ayOXlM8gt8c", pio2_1tlo) +STUB( + "ayPQmSjl8bQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEED2Ev) +STUB("ayTeobcoGj8", statvfs) +STUB( + "ayb741oLbaE", + _ZN9Inspector24NetworkBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) +STUB("aye1wKxnJ08", _ZN3JSC14JSGlobalObject10globalExecEv) +STUB("ayfha83NZQA", _ZN3JSC8JSObject12defaultValueEPKS0_PNS_9ExecStateENS_22PreferredPrimitiveTypeE) STUB("ayhAQXdGNqU", sceCompositorGetAnotherProcessSystemAddress) +STUB( + "ayjb8wK9b0Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEppEi) STUB("ayluYmzbAGc", sceFsWsGetStatus) +STUB("ayoDeN-D0MM", + _ZN9Inspector17BackendDispatcher19reportProtocolErrorENS0_15CommonErrorCodeERKN3WTF6StringE) +STUB("aypyyjMWtEw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEEC1ERS6_) +STUB("ayrtszI7GBg", truncate) +STUB( + "aysVMoqqfHI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE5emptyEv) +STUB( + "aysuBXhnyT4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEC1Ev) +STUB("ayuZfXD8X6I", Java_java_lang_StrictMath_ceil) STUB("az-0R6eviZ0", sceUserServiceInitialize2) +STUB( + "az0VWGf3Tl4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE8capacityEv) +STUB( + "az4KrrK+PmY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) STUB("az7fl9snOqw", sceNpServiceCheckerIntIsCached) +STUB("azBc7orKcF8", _ZN3sce2np9JsonArray7AddItemEPKNS0_9JsonValueEPPS2_) STUB("azCh0Ibz8ls", sceUserServiceGetPbtcTuesdayHoursStart) STUB("azCmQEmb1-I", _sceDepthHeadCandidateTrackerSetInformation) STUB("azEmYv5NqWo", sceNpManagerIntGetNpId) +STUB("azKBsU2fk1s", _ZN3JSC15JSAsyncFunction6s_infoE) +STUB("azNGOQLubLc", cairo_get_line_join) +STUB("azPw6nZ1JW8", _ZN3sce7Toolkit2NP2V29Challenge18ChallengeThumbnailC1Ev) +STUB( + "azZUREEfiQ0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "azcqyTaRvVs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEneERKS9_) +STUB("azgxiIR2VVc", _ZN7WebCore15JSDOMWindowBase6s_infoE) +STUB("aziunCFexfg", + _ZThn24_N9Inspector22InspectorDebuggerAgent15getScriptSourceERN3WTF6StringERKS2_PS2_) +STUB( + "azlqosL6FGA", + _ZN7WebCore20ApplicationCacheHost17maybeLoadResourceERNS_14ResourceLoaderERKNS_15ResourceRequestERKNS_3URLE) +STUB( + "azmdGIS2rOQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEC2EPS6_PNS2_10LibContextE) STUB("azmjx3jBAZA", sceNpTusGetMultiSlotDataStatusAVUser) +STUB("azmtmG5J-Kc", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112UpdateStatusEEptEv) STUB("azsWRjrskRA", scePlayReadyEnvelopeGetSize) +STUB( + "azxnZZyzS48", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE7popBackEv) +STUB( + "azzA1O5xVF8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE5beginEv) +STUB( + "b++-mVnT6bI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEC1Ev) +STUB("b+-zb6vnBYo", _ZN7WebCore11DisplayList14ConcatenateCTMC1ERKNS_15AffineTransformE) +STUB( + "b+15vUo8lPQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEC2EPKS8_) +STUB("b+Bla9TTD04", JSGlobalContextRelease) +STUB( + "b+HpG+ndGwI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEC1Ev) +STUB("b+HtVbr-hnI", mono_aot_Sce_Vsh_Webbrowser_XutilWrapperjit_code_end) +STUB("b+IhAUXP-Ho", uhash_setKeyDeleter_67) STUB("b+LixqREH6A", sceNetInetPtonWithScopeId) +STUB("b+TRJtxVLkI", _ZN3sce7Toolkit2NP2V24Core12ResponseDataC2Ev) +STUB( + "b+W6foWsyPo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEplEm) +STUB("b+WHqV0x1gM", mono_aot_Sce_Vsh_AutoMounterWrapperjit_code_start) +STUB( + "b+WPcF9JkLY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEE3getEv) +STUB( + "b+ZvE3i4fOE", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser11hassortModeEv) +STUB( + "b+anTWp3ca0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEC2EPS6_PNS2_10LibContextE) STUB("b+fis+WZ3Ig", sceAgcSuspendPointAndCheckStatus) +STUB("b+h9maAAa7s", _ZN3JSC8JSBigInt13equalsToInt32Ei) +STUB("b+jjo7eIy6E", s21) +STUB( + "b+rY1pFepTc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEEaSERKSA_) +STUB("b+sVOsiqQR8", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_23NpSessionInvitationInfoEEC2Ev) +STUB( + "b+tiOXhE0-Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEE7add_refEv) STUB("b+uAV89IlxE", sceAudioOutSetVolume) +STUB( + "b+v7BB12y5I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEC1ERS7_) +STUB("b-1gcTobTsQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116JoinableUserTypeEEneERKS7_) +STUB("b-2EMSEYLNM", JNU_ThrowOutOfMemoryError) +STUB( + "b-6RfjbR+UA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEE21intrusive_ptr_sub_refEPS7_) +STUB( + "b-7R-ygkBQs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEE7get_refEv) +STUB( + "b-99732oCMU", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemProperties58getpatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEv) STUB("b-BtawOVCmQ", sceMatBatchMap) +STUB("b-FP2Br9oeE", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead14sessionIdIsSetEv) +STUB( + "b-HfWu6s7Q4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("b-Lzkicisdg", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEEppEv) STUB("b-PXKlXtMyU", sceSystemServiceLaunchByName2) STUB("b-Qiqugeo5U", sce_libc_tls_heap) STUB("b-UJqPgkCLU", sceClKernelUsleep) +STUB("b-WaN75K5iE", uprv_getDefaultLocaleID_67) +STUB( + "b-WfhwjHgos", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayerD2Ev) +STUB("b-YdE60Z8tw", glUniformMatrix3x4fv) STUB("b-bFZvNV59I", sceNetEtherStrton) +STUB("b-cE+wTP5gY", _ZN7WebCore10FileHandleC1ERKN3WTF6StringENS_10FileSystem12FileOpenModeE) STUB("b-dYXrjSNZU", sceAudioPropagationPortalCreate) +STUB("b-eohnstyik", _ZN7WebCore11FrameLoader17arePluginsEnabledEv) +STUB("b-fw6riBfAM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE6resizeEj) +STUB("b-i3JSeZ12E", il2cpp_set_commandline_arguments_utf16) STUB("b-oySn+G2tE", sceAgcAcbJumpGetSize) +STUB( + "b-q41ZQfGSw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE5beginEv) +STUB( + "b-qZMsZo9GA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEC2EPS6_PNS2_10LibContextE) +STUB("b-u-ouZE3rY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEEC2Ev) STUB("b-w9zKxBi7E", sceUpsrvUpdateGetUpdateTaskInfo) +STUB("b-xSXxV3kdI", mono_aot_System_ServiceModel_Internalsjit_got) +STUB("b-xTWRgI1qw", _Dtest) +STUB("b0+W39D6M9A", _ZN10Deprecated25ScriptCallArgumentHandler14appendArgumentEN3JSC7JSValueE) +STUB( + "b00A06nRfHk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEED2Ev) +STUB("b03WEWtpXZw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEEdeEv) +STUB("b04jAtvk82E", _ZN3sce7Toolkit2NP2V211SharedMedia6VideosaSERKS4_) STUB("b06Hh0DPEaE", sceMsgDialogOpen) STUB("b08AgtPlHPg", sceGnmAreSubmitsAllowed) +STUB("b0BFwBeoVpA", _ZN13MsvMetaEditor9seekFileXElj) +STUB( + "b0Ihy-SsE7E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("b0Mj-9dxn1k", _ZN7WebCore16MIMETypeRegistry20mimeTypeForExtensionERKN3WTF6StringE) +STUB("b0Px++ce2cQ", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats14playStyleIsSetEv) +STUB("b0Su+8FFfkU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEE5resetEPS6_) +STUB("b0TvwShFDFs", _ZNK7WebCore9FrameView20isSoftwareRenderableEv) +STUB( + "b0UnsLpMxB0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEE11release_refEv) +STUB("b0bdK3JIFZU", u_isJavaIDStart_67) STUB("b0cryxaTM4k", sceKernelGetUtokenUseSoftwagnerForAcmgr) +STUB( + "b0fsTtr-xPg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEEC2ERKSA_) +STUB( + "b0lWWfiZduw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEmmEv) +STUB("b0o51X8BVw4", _ZNK3sce2Np9CppWebApi11Matchmaking2V110UserTicket13platformIsSetEv) +STUB( + "b0p7biv+U9E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEC1EPS8_) +STUB("b0sySzeuW1g", _ZN7WebCore12TextEncodingC2ERKN3WTF6StringE) +STUB( + "b0vnusmS2cc", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils12Notification15UserStateChangeEE12deepCopyFromERS8_) STUB("b0xbD0x+02M", sceVdecCoreFlushDecodeOutput) STUB("b0xyllnVY-I", sceGnmAddEqEvent) +STUB("b1FZ4fSZQ8c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEED1Ev) +STUB("b1H9Iem3+q4", _ZN3WTF3MD58addBytesEPKhm) STUB("b1HWDUC8zaE", sceAudioOut2SetSystemDebugState) +STUB("b1KEvruaxHY", + _ZN3WTF20ParallelHelperClientC1ENS_6RefPtrINS_18ParallelHelperPoolENS_13DumbPtrTraitsIS2_EEEE) +STUB("b1LciG4lUUk", _ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2ERKSt8_Locinfom) +STUB("b1MSFaAfkYs", _ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody11statusIsSetEv) +STUB("b1O65Mw3xoM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS19FriendsDataStatusesEEC1Ev) +STUB( + "b1VggQ0OQhM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEEdeEv) +STUB("b1XcARamCY4", usearch_handlePreviousCanonical_67) +STUB("b1Xi5gOUvJA", SSL_CTX_set_ex_data) STUB("b1e8oPrUnY4", sceDepthGetSrParameter) +STUB("b1hZVzYWL6E", nsnp_FreeESB) +STUB( + "b1jicuhrahY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEEdeEv) +STUB("b1ncCcsgKww", ucnv_convert_67) +STUB( + "b1roFnrBGc4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEC2EPS8_) +STUB("b1uPq-AWNaY", _ZN7WebCore9HTMLNames15autocorrectAttrE) +STUB("b1zEognGrPw", _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE5beginEv) +STUB("b20+W0qKak8", _ZN7WebCore18proxyServersForURLERKNS_3URLE) +STUB("b20e017Ei94", _ZN3sce2np10EventQueue4InitEPKcmm) +STUB( + "b22GxZ-GYdQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("b24EsQw4Ge8", _ZNK7WebCore27TranslateTransformOperation4dumpERN3WTF10TextStreamE) +STUB("b28S1-fSTZQ", _ZN7WebCore21NetworkStorageSession20resetAppBoundDomainsEv) STUB("b28tsShnGuQ", sceMbusGetSimulatedHandleStatusInfo) +STUB( + "b29vS8UDucc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEppEi) +STUB("b2EvZKZA2fQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEC2Ev) +STUB("b2FAINuffyQ", _ZNK7WebCore10ScrollView16contentsToScreenERKNS_7IntRectE) +STUB( + "b2IJoBZY+RY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEEaSERSA_) STUB("b2OFdqV0AeA", sceNpIpcCancelCallback) +STUB( + "b2Oyp2lI70U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEC2EPNS2_10LibContextE) +STUB( + "b2XWjOyNn0w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "b2dD-1PdYts", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEptEv) +STUB("b2dRtCt+CF0", ucsdet_isInputFilterEnabled_67) +STUB("b2na0Dzd5j8", _ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC2ERKSt8_Locinfom) +STUB("b2rU8HrfcwY", YGConfigNew) +STUB( + "b2rk5MZVuY0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("b2uHsVqZ9UU", _ZTVN7WebCore11DisplayList6RotateE) +STUB( + "b2vs7heVyHk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("b2wlgUJtRMk", + _ZN7WebCore22EmptyFrameLoaderClient8setTitleERKNS_19StringWithDirectionERKNS_3URLE) +STUB("b2xdRCXjUlk", _ZN9Inspector40ApplicationCacheBackendDispatcherHandlerD1Ev) +STUB( + "b2y8wcSTraU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEC1EPKS8_) +STUB("b2zLOpz7nQg", _ZN3sce2Np9CppWebApi14ConnectAccount2V212PartnerTokenD2Ev) +STUB("b32cboJlKBM", WKPreferencesGetVisibleDebugOverlayRegions) +STUB("b355f1hsAGw", _ZNK3WTF10StringImpl27startsWithIgnoringASCIICaseEPKS0_) +STUB( + "b37CGtvxAtA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE5clearEv) +STUB("b39GKNYoPFs", _ZN7WebCore10Pasteboard15writeCustomDataERKNS_20PasteboardCustomDataE) +STUB( + "b39vZrOPGK4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEE21intrusive_ptr_sub_refEPS7_) +STUB( + "b3BPO7KUGwo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEneERKSA_) +STUB("b3DGdzmYGzE", png_read_image) +STUB("b3DexgH-nwg", GCC_except_table476) +STUB("b3LcL-LNpus", _ZN9Inspector24TargetFrontendDispatcherdaEPv) +STUB("b3SWcncY+A0", curl_share_setopt) STUB("b3SquMkPlQc", sceBgftServiceIntGetTaskInfoValueString) +STUB("b3WQPziWZJs", _ZN7WebCore9JSElement6s_infoE) +STUB("b3Wl0s4kmY4", + _ZN3sce7Toolkit2NP2V28Matching7Request23SetMembersAsRecentlyMet24NUM_RECENTLY_MET_MAX_LENE) +STUB( + "b3dWR+CnTZU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEC1EPS8_) +STUB("b3e4Apv2eI0", _ZN3JSC2VM14throwExceptionEPNS_9ExecStateENS_7JSValueE) +STUB("b3fkkcGti7E", uidna_compare_67) +STUB("b3i4-QBYzWQ", DH_get0_key) +STUB("b3lT6dTQnb0", _ZN7WebCore9HTMLNames11profileAttrE) +STUB( + "b3rDPNhttSI", + _ZN7WebCore27DeviceOrientationClientMock14setOrientationEON3WTF6RefPtrINS_21DeviceOrientationDataENS1_13DumbPtrTraitsIS3_EEEE) +STUB("b3tgrAXeCYw", _ZN7WebCore9HTMLNames6rtcTagE) +STUB("b3xXLyo06sQ", _ZN3JSC19HeapSnapshotBuilderD0Ev) +STUB("b4+e4w5A5Lo", _ZN7WebCore10FloatPoint15narrowPrecisionEdd) +STUB( + "b4-zEaiN0dQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEED2Ev) STUB("b40XbKKKDhQ", sceAvSettingGetNativeHdmiMonitorInfo) +STUB( + "b43sImEMxy4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEC1EPS8_) STUB("b44anV2D7K0", sceFiosFHOpenSync) +STUB("b4BU62VsgYA", _ZN7WebCore9FloatRect11fitToPointsERKNS_10FloatPointES3_S3_) +STUB( + "b4FcFjbVg34", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEED1Ev) +STUB("b4GN5d8gx00", il2cpp_class_is_enum) +STUB("b4O+SIoLvhM", delegate_virtual_invoke_imt_32_p) +STUB( + "b4VokVXPygU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEC1Ev) +STUB("b4VomvIAJcg", _ZN7WebCore31BasicColorMatrixFilterOperationD0Ev) +STUB("b4YWNwRJ4qk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEC2ERKS7_) +STUB("b4ZL901zbxs", mono_aot_System_Net_Http_WebRequestmethod_addresses) +STUB("b4aGU8znnCo", _ULx86_64_resume) +STUB("b4bvSzAJv+o", _ZN3sce2Np9CppWebApi7Matches2V123ResponsePlayerStatistic8getStatsEv) +STUB( + "b4dnnL1auJg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEplEm) +STUB("b4eojk3e5gk", _ZNK3sce2Np9CppWebApi6Common8IteratorIlEdeEv) STUB("b4fpgH5ZXxQ", sceAgcDriverSubmitCommandBuffer) +STUB( + "b4gIrrRpEoY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEED1Ev) STUB("b4qaXPzMJxo", sceNpSignalingTerminateConnection) +STUB( + "b4rosnD6+o4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE5clearEv) STUB("b4t2jOPTxts", scePatchCheckerDisableAutoDownload) +STUB("b4yOflzaaaY", mono_aot_Sce_Vsh_Np_ServiceCheckerjit_code_start) STUB("b5-tnLcyUQE", sceUserServiceSetAppSortOrder) STUB("b50TWwRmzu8", sceAmprAmmMeasureAmmCommandSizeRemapWithGpuMaskId) +STUB( + "b50eoewGGlQ", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V142MatchCompletionRateCompletedMetricsFactory7destroyEPNS3_35MatchCompletionRateCompletedMetricsE) +STUB("b50vZZleJDI", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData13isInitializedEv) +STUB("b529w-v1R4w", _ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error11unsetSourceEv) +STUB("b54DvYZEHj4", __ffsti2) +STUB( + "b56mD1yuGg4", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB( + "b58M42ULhHU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEixEm) +STUB("b58kPOP0cJ0", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS25AtomicAddToAndGetVariableEE5resetEv) +STUB( + "b58rB7ajuJ0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEE3getEv) STUB("b5AQKU2CI2c", sceFontGraphicsCanvasSetSurfaceFillWithLayout) +STUB("b5Dao9vXCpE", monoeg_g_convert) +STUB("b5ETsuf4VH4", FT_Get_Var_Blend_Coordinates) +STUB( + "b5FfCLIpOwQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("b5FjZYVE1n8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEdeEv) +STUB("b5GpFMr+AeE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEEC1ERS7_) +STUB("b5JSEuAHuDo", _ZTIl) +STUB("b5KdXXbihxE", u_memcmpCodePointOrder) +STUB( + "b5LQWECb2TE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEptEv) +STUB( + "b5QbEbtix1U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEC2Ev) +STUB( + "b5R9e1XMKW8", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getBoolean6Ev) STUB("b5RaMD2J0So", sceGameLiveStreamingScreenCloseSeparateMode) +STUB( + "b5W46G4zu0s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE7reserveEi) +STUB("b5Xa+k0dlQs", bemp2sys_pesparser_sendmessage) +STUB("b5bQfU9tUKo", WKAccessibilityEnhancedAccessibilityEnabled) +STUB("b5gZp-r3WWI", FT_Stream_ReadULongLE) +STUB( + "b5iCcey3TYw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEEC2Ev) +STUB("b5isPN7H058", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEmmEi) +STUB("b5kj+VbcJOI", WKBackForwardListGetForwardListCount) +STUB("b5lXulHidws", _ZN12video_parser17cVideoProfilerMp412getVideoInfoEjPPNS_13VpMediaInfo_tE) +STUB("b5mBtzhnC7A", + _ZNSt9_FacetptrISt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEE6_PsaveE) +STUB( + "b5mRMWoeg80", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE21intrusive_ptr_add_refEPS9_) STUB("b5u0Jzm8TF8", sceAgcDcbCopyDataGetSize) +STUB("b5y5e6Xh1Mc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V113AttributeTypeEEneERKS7_) +STUB("b5yYFj7O3kk", WKBundleFrameGetJavaScriptWrapperForRangeForWorld) STUB("b6+TytWccPE", sceUserServiceSetTeamShowAboutTeam) +STUB("b6+hAoAkJl8", WKBundleInspectorEvaluateScriptForTest) +STUB( + "b6+uo1hemLA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("b604iIfa1Lc", _ZNK3sce2Np9CppWebApi11Matchmaking2V18Location16getGameSessionIdEv) +STUB( + "b66kEvu2fuM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEE11release_refEv) +STUB("b68J2DRfOU0", YGNodeStyleGetMinHeight) +STUB( + "b68m-li9kpo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEmmEi) +STUB( + "b6EtXvTDX38", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "b6Guq9VTOtM", + _ZN9Inspector22InspectorDebuggerAgent21sourceMapURLForScriptERKNS_19ScriptDebugListener6ScriptE) STUB("b6KysZfpTwE", sceApplicationExitSpawn) +STUB("b6L73ocbpS4", _ZN3sce3pss4core7runtime6serial15TerminateCsharpEv) +STUB( + "b6M7IR+inGY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEEC2ERKSA_) +STUB( + "b6TarBmj7A0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEmmEv) +STUB("b6ZkHYT1KaU", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEE3getEv) +STUB( + "b6csEsVG+qk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE3endEv) +STUB("b6nYaiZQ9wo", JNU_Notify) +STUB( + "b6sbhD1zEBM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE3endEv) +STUB("b6wVU+UwrQs", _ZN3JSC7Symbols37asyncGeneratorQueueEnqueuePrivateNameE) STUB("b70pscdNZiE", sceCesUtf16ToSbc) +STUB("b72m71eLRDQ", unorm2_close) +STUB("b76KJQuXM5s", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEED2Ev) +STUB( + "b7B435c9744", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_18SessionInformationENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB("b7DvlOFBWYg", rgctx_fetch_trampoline_rgctx_50_p) +STUB( + "b7IHLl83Opk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEE7add_refEv) +STUB("b7J3q7-UABY", tgamma) +STUB( + "b7LBqruI01U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("b7S96aD8dkE", FTA_Support_Renderer_Smooth) +STUB( + "b7Saunh0D-g", + _ZN3sce7Toolkit2NP2V210Wordfilter13filterCommentERKNS3_7Request13FilterCommentEPNS2_4Core8ResponseINS3_16SanitizedCommentEEE) +STUB("b7TND-La7t4", utext_previous32) +STUB( + "b7VmHF47C0I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE5emptyEv) +STUB("b7etkLzDnt4", WKCertificateInfoGetCertificateChain) +STUB("b7fR5ZUglgM", _ZN7WebCore6Path2D6createERKS0_) +STUB("b7ji2YLeitQ", GCC_except_table171) STUB("b7kJI+nx2hg", sceVoiceDeletePort) +STUB("b7klmKCsFQk", _ZN15AbstractStorage14TwitterStorage14GetStorageSizeEPlS1_S1_) +STUB("b7leY-LNVnI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE3endEv) +STUB("b7p2qTtZPno", res_getTableItemByKey) +STUB( + "b7qez8Ub9iQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEdeEv) +STUB("b7qnGORh+H4", _ZN3sce2np9Semaphore6SignalEv) +STUB("b7qxKvBXofs", mono_image_add_to_name_cache) +STUB("b7uXQmnfB2s", sysarch) +STUB("b7vhDA9Csn0", + _ZN3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectator15getPushContextsEv) +STUB("b7zw2CSlnV8", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE6resizeEj) +STUB( + "b83W87I5uzU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("b89Y6mVMg+Q", _ZNK7WebCore16HTMLInputElement3altEv) +STUB("b8HJyPHX26I", _ZN7Nicosia5SceneD1Ev) +STUB( + "b8HiPovLStY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEE5resetEPS6_) +STUB("b8I2aPga1ss", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEptEv) +STUB( + "b8Pg-f1gQkU", + _ZN3sce2Np9CppWebApi14SessionManager2V161GetUsersAccountIdPlayerSessionsInvitationsResponseBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_54GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEE) +STUB("b8Vrz3y8Zec", delegate_virtual_invoke_imt_m_6_p) +STUB( + "b8X4w1Du9EY", + _ZN3sce2Np9CppWebApi14SessionManager2V135RequestJoinGameSessionPlayerFactory7destroyEPNS3_28RequestJoinGameSessionPlayerE) +STUB( + "b8XF6S+NYyE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE3endEv) +STUB( + "b8Y5XoDrDoo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEC2EPS8_) STUB("b8YwdPYpAq4", sceEsvmEngineMediaKeySessionGetExpiration) +STUB( + "b8bKcvqd1IA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEE3getEv) +STUB("b8gHH7LwJcw", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEEmmEv) +STUB( + "b8rqY1ulciE", + _ZNK3sce2Np9CppWebApi14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBody6toJsonERNS_4Json5ValueEb) STUB("b8vNEwV8cX0", sceNpUniversalDataSystemDestroyRecordData) +STUB("b8ySy0pHgSQ", _ZNSt12placeholders3_10E) +STUB("b96weRo-A24", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEE11get_deleterEv) STUB("b9AvoIaOuHI", sceHttp2SetAutoRedirect) +STUB( + "b9FDLXPXpZ0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE8capacityEv) +STUB("b9FUk-VCqmY", _ZN7WebCore13QualifiedName17QualifiedNameImplD2Ev) STUB("b9Ft65tqvLk", sceNetBandwidthControlGetIfParam) +STUB("b9IYAN2rhlo", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11SessionDataEEC1Ev) +STUB( + "b9LTVmQ35Bk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("b9MO8r778XE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEEC2Ev) +STUB("b9QSruV4nnc", _ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED0Ev) STUB("b9R+HQuHSMI", sceFontGraphicsUpdateGlyphFillPlot) +STUB("b9TWJpHkUlw", _ZN3sce7Toolkit2NP2V212NetworkUtils13NetStateBasicD1Ev) +STUB("b9TiSloCiTs", WKContextSetIconDatabasePath) +STUB("b9V6fmppLXY", _ZN3sce4Json5ValueC1EPKc) +STUB( + "b9ZyLbipNgY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE5beginEv) +STUB("b9b6PA5TKc0", _ZNK3sce3Xml3Dom8Document11getNextAttrENS1_6NodeIdE) +STUB( + "b9bNwUpMY5w", + _ZN7WebCore17JSHTMLLinkElementC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_15HTMLLinkElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "b9eG7LrpdU0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("b9enc4+Xz6s", _ZNK3sce2Np9CppWebApi11UserProfile2V112BasicProfile12getAccountIdEv) +STUB( + "b9f4JTuKQb8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "b9h2hUZC5+E", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEneERKS7_) +STUB("b9o31N6Nz3M", _ZN3sce2Np9CppWebApi7Matches2V128RequestTemporaryMatchResultsD2Ev) +STUB("b9oxVnUlBi8", ucptrie_swap) +STUB("b9pVidwn2zU", isobmf_box_getmember_type) +STUB("b9rDyUx5Ln8", _ZN3JSC18CustomGetterSetter6s_infoE) +STUB("b9uQHgCPuB8", + _ZN3WTF17sendMessageScopedERNS_6ThreadERKNS_12ScopedLambdaIFvRNS_17PlatformRegistersEEEE) +STUB("b9wMNkQ+uoU", rgctx_fetch_trampoline_mrgctx_96_p) +STUB("b9wqZKzgejI", WKNotificationPermissionRequestDeny) +STUB("b9xXx9oB6TY", _ZNK3JSC4Heap18isHeapSnapshottingEv) +STUB( + "b9zaEnUJa3w", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) STUB("bA31MLNLtWQ", sceFsInitUmountTrophyDataOpt) +STUB( + "bA4992wjlQs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEixEm) +STUB("bA8F4A5hXDE", _ZN3sce7Toolkit2NP2V23TSS7TssDataD2Ev) +STUB("bACWNWv6zt4", _ZN7WebCore11MathMLNames7mrowTagE) +STUB( + "bAD82oNrCWk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEaSERKS9_) STUB("bAHIOyNnx5Y", sceNpCondSignalTo) STUB("bAKsVCOJMu8", sceFaceTrackerStartTracking) +STUB("bALdEpK+vWk", _ZN3WTF24numberToFixedWidthStringEfjRSt5arrayIcLm123EE) +STUB("bAM9Qwofus0", _ZNK3sce4Json5Array4backEv) +STUB("bAN1O3eaO5c", _ZNK3WTF3URL4hostEv) +STUB( + "bAPPhehnDG0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEED2Ev) +STUB("bAQtfz1zmu0", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEEptEv) STUB("bASEQctTGhI", sceVorbisDecGetLastDecodeError) +STUB( + "bAXQJ9oAPwc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("bAa-5ftidqk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE5clearEv) +STUB("bAbUJvsiVdI", FTA_Add_Module_pcf) +STUB("bAc0bWqJiE0", _ZN9Inspector31BrowserBackendDispatcherHandlerC2Ev) +STUB("bAdgFVFcb84", Java_com_sony_bdjstack_javax_media_controls_SoundManager_stop) +STUB("bAho0zsG+C0", + _ZN3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectatorC2EPNS1_6Common10LibContextE) +STUB( + "bAjTIXtsWIY", + _ZN9Inspector8Protocol13BindingTraitsINS0_8Debugger5Scope4TypeEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE) +STUB( + "bApW3WxTPXc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEaSERKS9_) +STUB( + "bB7u5BREukM", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V138SetMultiVariablesRequestBody_variables6toJsonERNS_4Json5ValueEb) +STUB( + "bB88kdAVteE", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEEC1ERKSF_) +STUB("bBAsdwQLvIs", _ZN9Inspector21InspectorRuntimeAgentnwEm10NotNullTagPv) +STUB( + "bBEtUmqhZVk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEdeEv) +STUB("bBGvmspg3Xs", _ZNSt10moneypunctIwLb0EEC2Em) +STUB( + "bBK2+PW8H7o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("bBLapYYwyr0", _ZN3sce2np10Cancelable13SetCancelableEb) +STUB("bBMsIo7cM4Y", _ZN3JSC23objectProtoFuncToStringEPNS_9ExecStateE) +STUB("bBTc4FvXNiY", rgctx_fetch_trampoline_mrgctx_110) +STUB( + "bBf5JkRRgTo", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V143SetVariableWithConditionsRequestBodyFactory7destroyEPNS3_36SetVariableWithConditionsRequestBodyE) STUB("bBfz7kMF2Ho", sceKernelAddAmprEvent) +STUB("bBga5PMTA7c", _ZN3sce7Toolkit2NP2V212ActivityFeed13UsersWhoLikedaSERKS4_) +STUB( + "bBh-C4Hvlfk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEEC2EPNS2_10LibContextE) +STUB("bBoJh5CN0IA", _ZN3sce7Toolkit2NP2V26Trophy7Request18GetTrophyPackGroupC2Ev) +STUB("bBx0-Gv97kI", _ZN7WebCore8SVGNames10feFloodTagE) +STUB( + "bBx9CIoUSds", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEC1EPS6_PFvS8_EPNS2_10LibContextE) STUB("bC0WTypscWg", sceFiosCachePrefetchFileSync) +STUB("bC28c7J9ZuE", _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeIPcPvEED1Ev) +STUB( + "bC2te-Q6Fdo", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getBoolean7Ev) +STUB("bC3O0thcHS8", _ZN3sce3Xml4Util9strResultEi) +STUB("bC4+qi0mqJE", _ZN3sce2np13NpTitleSecretC1ERK16SceNpTitleSecret) STUB("bC8vo608P2E", sceShellCoreUtilSetGameLiveStreamingOnAirFlag) +STUB("bC9PhWZwvAw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE21intrusive_ptr_sub_refEPS7_) +STUB( + "bCCKHTeKetw", + _ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody16setMaxSpectatorsERKi) +STUB( + "bCCbTP8eGIQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEEC2EPS9_PNS2_10LibContextE) STUB("bCD2orE1y84", sceBgftServiceIntDebugDownloadCorruptPkg) +STUB("bCLsz0u1Bo8", mono_aot_Sce_Vsh_SystemLoggerWrapperplt) +STUB( + "bCPoW6SC9XU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEEC2ERKSA_) +STUB( + "bCSmk1gh4JU", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeaders5parseEPNS1_6Common10LibContextElPNS6_12IntrusivePtrIS5_EE) +STUB("bCdXMUQSoSo", _ZN7WebCore9HTMLNames13valuetypeAttrE) +STUB( + "bCfL0qXf9+A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEC2EPS8_) +STUB( + "bCfgxIyp8Rg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEED1Ev) +STUB("bClfm6asSEQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE7popBackEv) +STUB("bCmrP96etlo", delegate_virtual_invoke_imt_27) +STUB("bCp6+QAqRgE", _ZN3sce7Toolkit2NP2V28Commerce8Category24CATEGORY_DESCRIPTION_LENE) +STUB( + "bCubNGmjpZ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) STUB("bD-JizUb3JM", sceNpSignalingGetConnectionStatus) +STUB("bD25s85vCLc", _ZN3WTF13StringBuilder22appendFixedWidthNumberEdj) +STUB( + "bD2AR1MNTao", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEC2EPS8_) +STUB("bD3nxh6Om44", _ZN3WTF26getAndResetAccumulatedLogsEv) +STUB("bD4c5eDrf7c", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V18PlatformEEC1Ev) +STUB("bD5RtTjevng", _ZN9Inspector25DebuggerBackendDispatcherD1Ev) +STUB("bD7-wJV52QU", ufmt_getInt64_67) +STUB( + "bD7g0Fn+sPQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE10setContextEPNS2_10LibContextE) +STUB( + "bDAi0HffboA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEEC1EPS9_PNS2_10LibContextE) STUB("bDBa3CzyDko", scePlayReadyDomainCertEnumNext) STUB("bDEVVP4bTjQ", sceRtcSetTime_t) +STUB( + "bDFo3RsZK+k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE21intrusive_ptr_sub_refEPS9_) STUB("bDGZVTwwZ1A", sceVrTrackerSaveInternalBuffers) +STUB("bDHNxnmvy4w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEEC1ERKS7_) +STUB( + "bDHXbcVV8Yk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEEaSERSA_) +STUB("bDP4+0Hr2zM", ucasemap_utf8ToTitle_67) +STUB("bDRABO67C24", WKPageMoveFocusInTabOrder) +STUB( + "bDcXYpqpaKQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEC1Ev) +STUB("bDhsp1osQJw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEE7add_refEv) STUB("bDqj8t808Uo", scePrintUlpCmdHdr) +STUB( + "bDu8cOyyYFg", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemProperties12setaccountIdEPKc) STUB("bDupEgbQ6Fk", sceFiosFileDeleteSync) +STUB("bDvtV5DLmmQ", _ZN3sce7Toolkit2NP2V28Commerce16RatingDescriptorD2Ev) +STUB("bDxp2MUE484", _ZN8Gigacage14tryMallocArrayENS_4KindEmm) +STUB("bDz2q0rUCB8", mono_aot_Sce_Vsh_DataTransferplt_end) +STUB( + "bDzs8G+8W9o", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getInteger7Ev) STUB("bE03GJF7Bfc", sceLoginMgrServerLoginServiceNotifyRequestFinished) +STUB( + "bE2ac8LPmF0", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot8haslimitEv) +STUB( + "bE4qliYEhes", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEEC1EPS7_PFvS9_EPNS2_10LibContextE) +STUB( + "bEKDWw2ULkw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE8copyFromERKS9_) +STUB( + "bEMhihcRp-k", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser25getusePlayerSessionFilterEv) +STUB( + "bEOdEpgXaoo", + _ZN9Inspector14ConsoleMessageC1EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelERKN3WTF6StringEm) +STUB( + "bEP-ZNNfVD4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("bEQToAEGGxQ", psl_builtin_filename) +STUB( + "bEV+xhpeS20", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEEC1ERSA_) +STUB( + "bEVdldc+7wo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEED2Ev) +STUB("bEXUKe-l3WM", _ZN3JSC6Config25disableFreezingForTestingEv) +STUB( + "bEYHGOtNkfs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "bEb9lZLLnJE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEED2Ev) +STUB("bEbjy6yceWo", _ZTSPj) +STUB("bEc8Ixq0Tnk", _ZN7WebCore14FrameSelection16updateAppearanceEv) +STUB("bEd1IOCblmo", _ZN7WebCorelsERN3WTF10TextStreamENS_28ScrollingLayerPositionActionE) +STUB("bEeGSoRz+DI", _ZN3sce2Np9CppWebApi7Matches2V116JoinMatchRequestD2Ev) STUB("bEegosRhgM0", sceHttp2SetRequestNoContentLength) +STUB( + "bEhpFggyQxQ", + _ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId13isInitializedEv) +STUB("bEk+WGOU90I", _Setgloballocale) +STUB("bElrc3VqGXk", _ZNK7WebCore13KeyboardEvent7keyCodeEv) STUB("bErx49PgxyY", sceNetBind) +STUB("bEsfnrJhxSQ", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIjE21intrusive_ptr_add_refEPS4_) STUB("bEvXpcEk200", sceNpWebApi2Terminate) +STUB("bEvdC7ChNYY", rgctx_fetch_trampoline_rgctx_119) +STUB( + "bEwJsewIngA", + _ZN3sce2Np9CppWebApi12Leaderboards2V128GetRankingRequestBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_21GetRankingRequestBodyEEE) +STUB("bEyPZm9p+kk", _ZN7WebCore5Range16surroundContentsERNS_4NodeE) +STUB( + "bF2bAqWa4lI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "bF2uVCqVhBY", + _ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE7_GetcatEPPKNSt6locale5facetEPKS5_) +STUB("bF4eWOM5ouo", _Getpcostate) +STUB( + "bF4gnXmtsIA", + _ZThn16_N9Inspector21InspectorRuntimeAgent8evaluateERN3WTF6StringERKS2_PS4_PKbS8_PKiS8_S8_S8_RNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISE_EEEERSt8optionalIbERSJ_IiE) +STUB("bF8-X1KRT+s", png_destroy_write_struct) +STUB("bF8mYHUwKSk", _ZTV18MmsFileUpdaterBase) +STUB("bFDUu1ddOjs", _ZN3JSC23MacroAssemblerX86Common18collectCPUFeaturesEv) +STUB( + "bFEFS7q3MlQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEE7get_refEv) STUB("bFEs0Gs6D2A", sceAmprAprCommandBufferMapDirectBegin) +STUB( + "bFI-oDOkEjs", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUserC2ERS5_) +STUB( + "bFKPAvTzaIo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEC2ERS8_) +STUB("bFKdnY84oQo", JVM_GetLastErrorString) +STUB("bFLwUoQqNHM", _ZN3WTF14FileSystemImpl30appendFileContentsToFileHandleERKNS_6StringERi) STUB("bFN5mIvW-mA", sceDeci4hDrfpMkdir) +STUB( + "bFN5puPj+QE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEppEi) +STUB( + "bFPmKYgHzFs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("bFRJxvYd+fI", _ZN3sce7Toolkit2NP2V27NpUtils7Request24SetTitleIdForDevelopmentD2Ev) +STUB("bFVTuIx0P5o", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEEC2EPNS2_10LibContextE) STUB("bFVjDgxFapc", sceNpScoreGetRankingByAccountIdPcIdAsync) +STUB( + "bFVvlb12HRo", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi35ParameterToSetGameSessionProperties10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_37PatchGameSessionsSessionIdRequestBodyEEE) +STUB("bFYpAw85oPI", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setAngle) +STUB( + "bFdNZNcaysI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE8copyFromERKS9_) +STUB( + "bFeYxFjKHvo", + _ZN3sce2Np9CppWebApi14SessionManager2V133RequestPlayerSessionPlayerFactory7destroyEPNS3_26RequestPlayerSessionPlayerE) STUB("bFh3fZapfPY", sceMbusDebugTerminateProcess) +STUB("bFhYDNofRSE", _ZNK7WebCore20ResourceResponseBase14httpStatusCodeEv) +STUB("bFlL2ObQBP8", g_slist_insert_sorted) +STUB("bFmgCQYlHAw", WKPreferencesSetWebGLEnabled) +STUB("bFmpgAvA65g", _ZN3sce7Toolkit2NP2V26Trophy7Request13SetScreenshotC2Ev) +STUB( + "bFsQQh4pkSs", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsC1EPNS1_6Common10LibContextE) STUB("bFzA3t6muvU", sceUserServiceSetShareButtonAssign) +STUB("bFzmBgAHSww", _ZN9Inspector22InspectorDebuggerAgentdaEPv) +STUB("bG1ielaxsxo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEC1ERKS7_) +STUB( + "bG2hcZ0Jg5w", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEdeEv) +STUB("bG62+hOwII0", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Publisher8fromJsonERKNS_4Json5ValueE) +STUB("bGKK41RreRI", YGNodeStyleSetBorder) +STUB( + "bGLXnxr9jSE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEE11release_refEv) STUB("bGN-6zbo7ms", sceHttp2ReadDataAsync) STUB("bGTjTkHPHTE", sceNpTusTryAndSetVariableAAsync) +STUB("bGUWlZWqFmE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEEC1EPKS6_) +STUB("bGVEgWXy6dg", _openat) +STUB( + "bGWZpwU2aWs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEC1Ev) +STUB( + "bGY41uf2SfI", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetInteger7Ev) STUB("bGYkY6q3bIw", sceVideoRecordingQueryMemSize2) +STUB("bGZ-+d2ao5A", + _ZN7CoreIPC10Connection19sendOutgoingMessageEN3WTF10PassOwnPtrINS_14MessageEncoderEEE) +STUB("bGcXUCLd0TA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE5beginEv) +STUB("bGci6WF1Xmw", _ZTVN7WebCore14StaticNodeListE) +STUB("bGdhin6EqQc", mono_method_get_param_names) +STUB( + "bGemPeNZ5A8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEeqERKS9_) +STUB("bGesT5zjSHk", _ZNK7WebCore12ChromeClient28allowsAcceleratedCompositingEv) +STUB("bGg+st-C35M", mono_aot_System_Coreunbox_trampolines) +STUB("bGgKa9+ND7o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEED1Ev) +STUB( + "bGhbWiLpRjo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE3endEv) +STUB( + "bGpyI4so-TA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE7reserveEi) STUB("bGtl04R9oiY", sceAutoMounterClientRegisterCallback) +STUB("bGu3GtPz-l0", mono_custom_attrs_construct) STUB("bGwp1S4bcIY", sceFiosCacheContainsFile) +STUB( + "bGxGerh3UfY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("bH08FzR5rFU", _ZN3sce2np3ipc17ServiceIpmiClient15CancelEventFlagEijm) +STUB("bH12z-W8uIM", FT_Outline_Reverse) +STUB("bH7ljyLOsBw", _ZN3sce2np16StreamReadBufferD2Ev) +STUB("bH9A-ZnO-7s", _ZN3sce2Np9CppWebApi7Matches2V116RequestMatchTeam9setTeamIdEPKc) +STUB( + "bH9s4SjScS4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEdeEv) +STUB("bHEycqHxG2I", _ZN3JSC13JSSetIterator14finishCreationERNS_2VMEPNS_5JSSetE) STUB("bHFaiUhZCrQ", sceFiosOpSetBuffer) +STUB("bHLyyXx0Hu0", mono_aot_Sce_Vsh_Orbis_ContentManagerunbox_trampoline_addresses) STUB("bHWFSg6jvXc", sceNpTusGetMultiSlotDataStatusVUserAsync) +STUB("bHZ8CuBElEU", WKGraphicsContextGetTypeID) +STUB( + "bHcmbWYchAk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEED1Ev) +STUB("bHcvUKBaOYY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEE3getEv) +STUB( + "bHdp+iGq96s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEE3getEv) +STUB( + "bHgidkQnUyE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEE11get_deleterEv) STUB("bHhivemWybw", sceDataTransferTargetAbortSendSsoOld2New) +STUB( + "bHiDqbuVeeM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE7popBackEv) +STUB( + "bHwOUel2lRs", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS5_INS7_7DataApi25UploadDataResponseHeadersEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISE_SF_EE) +STUB("bI0R631jRPA", _ZN7WebCore16BackForwardCache14addIfCacheableERNS_11HistoryItemEPNS_4PageE) +STUB( + "bI3Kr9AxQ4Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEE3getEv) +STUB("bI5AGFMydrA", _ZN3sce4Json5ArrayC1ERKS1_) +STUB( + "bI5R7khFVZU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEptEv) +STUB( + "bI6YNZJVEKM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEneERKS9_) +STUB("bIAlhZGTsh0", _ZN7WebCore9InlineBox14dirtyLineBoxesEv) STUB("bIDov3wBu5Q", sceNpTrophy2RegisterContext) STUB("bIHoZCTomsI", scePthreadRwlockTrywrlock) +STUB("bIK8nH+qW0k", uset_indexOf_67) +STUB("bIPHtmS8z24", _ZN3NTF6Cookie11CookieJarDB11getInstanceEv) +STUB( + "bIQqxKROXbU", + _ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId11getobjectIdEv) +STUB( + "bISUyGezrfM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEE5resetEPS9_) +STUB("bIU19RyXVUg", WKContextResumeDownload) +STUB( + "bIUFURL+sy0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE21intrusive_ptr_add_refEPS9_) +STUB("bIW3nWvi3q8", mono_aot_Sce_Vsh_Np_IdMapperplt) +STUB("bIXoqhXxdfM", + _ZNK3sce2Np9CppWebApi14SessionManager2V115SearchCondition6toJsonERNS_4Json5ValueEb) +STUB( + "bIZKG5ZqNiQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEC1Ev) +STUB( + "bIZvNAz+sZ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("bIdRTPcRP7w", WKContextMenuItemGetType) +STUB("bIfFaqUwy3I", _Xp_setw) +STUB( + "bIgO5XD4RxA", + _ZN7WebCore12JSAudioTrackC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_10AudioTrackENS6_13DumbPtrTraitsIS8_EEEE) STUB("bIi4YUfSRys", sceHmd2GetDeviceInformation) +STUB( + "bIi5LWKsvHc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEC2Ev) STUB("bIij1fNCQOg", sceNpUniversalDataSystemIntRecordObjectSetUInt64) +STUB("bIiliSmuGnM", _ZN2sh10InitializeEv) +STUB("bIjisuca0z8", nsnp_ActionDescribe) +STUB("bIlNLrCoCxc", _ZN4Manx20Curl_cookie_freelistEP6Cookieb) +STUB( + "bImgR9hCXIk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEeqERKS9_) +STUB("bItEABINEm0", _Getfld) +STUB("bIu+46LMa+Y", _ZN3sce2Np9CppWebApi7Matches2V113RemovedPlayerD2Ev) +STUB("bJ25--plJO4", _ZN3JSC7Symbols35createResolvingFunctionsPrivateNameE) +STUB( + "bJ40fDm+HWs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "bJ5e-c2yvEg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEC2EPS7_PNS2_10LibContextE) +STUB("bJ6HTP9OLhc", _ZN7WebCore4PathC2EOS0_) +STUB( + "bJ7o54npen0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEppEi) +STUB("bJ8hpx4xk-w", _ZNK7WebCore8FormData12isolatedCopyEv) +STUB("bJ9NDrBlzSk", _ZN9Inspector25TimelineBackendDispatcherD2Ev) +STUB( + "bJ9TcHCITIo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEEC2Ev) +STUB( + "bJCkdvhRTdw", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("bJU1GJkpdpI", _ZNK3sce7Toolkit2NP9Utilities6FutureIiE17getAdditionalInfoEv) +STUB("bJWBpvGCIJU", + _ZN3sce4Json5Value22setSpecialFloatHandlerEPFKS1_NS0_12FunctionTypeEdPS2_PvPbES5_) +STUB("bJWYETNhP-w", _ZN3JSC14ExecutableBase6s_infoE) +STUB( + "bJXznl6ZDjw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEixEm) +STUB("bJZ4igT+7x4", ucnv_cbToUWriteSub) +STUB("bJc2nX0Gx2M", _ZN3sce2np13JsonDocParserC1EP14SceNpAllocator) +STUB( + "bJelix7Zidg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEEC2ERSA_) +STUB("bJhmjmsPRTM", _ZNK10__cxxabiv120__si_class_type_info11can_cast_toEPKNS_17__class_type_infoE) +STUB( + "bJoiocQXS7U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEC1Ev) +STUB("bJt4U6-vG6w", _ZN3JSC7Symbols15keysPrivateNameE) +STUB( + "bJzR04DCZis", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEC2EPS8_) +STUB("bJzXMuvYq0M", + _ZNK3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer6toJsonERNS_4Json5ValueEb) +STUB( + "bK0nszUAV2k", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_15PlayedWithStoryENS1_15AppSTLAllocatorIS5_EEEED2Ev) +STUB("bK1L5xuKeq8", _ZN3JSC8JSCalleeC1ERNS_2VMEPNS_14JSGlobalObjectEPNS_9StructureE) +STUB("bK8JYvbNrsQ", _ZNK3sce2Np9CppWebApi14ConnectAccount2V214PSNError_error16referenceIdIsSetEv) +STUB("bK8zzGxzeFE", monoeg_g_log_set_always_fatal) +STUB("bKCBjuO0ktM", _ZN7WebCore20SharedBufferDataViewC1ERKS0_) +STUB("bKI5-XfYOyk", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEEixEm) +STUB("bKMVqRcCQ1U", _ZN3sce2np6ObjectnaEmR16SceNpAllocatorEx) STUB("bKPwK6nfqdA", sceGpuExceptionGetStatus) +STUB( + "bKRktvau0JI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("bKSKjuolj7o", _ZN7WebCore15DatabaseTracker9singletonEv) +STUB( + "bKVX6kjbJo8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "bKWbQfLpisA", + _ZN3JSC12StringObject17defineOwnPropertyEPNS_8JSObjectEPNS_14JSGlobalObjectENS_12PropertyNameERKNS_18PropertyDescriptorEb) STUB("bKaEtQnoUuQ", sceSslSetSslVersion) +STUB("bKbea4Od2NY", __sum_D2A) +STUB("bKkcnVKfATo", mono_g_hash_table_lookup) +STUB("bKolEm5dHJs", HMAC_Update) +STUB("bKwd3Fzl3RM", izrule_getFirstStart_67) +STUB("bKx+TASkJs4", WKContextSetCookieMode) +STUB("bKy-tUm-df0", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfilesC2Ev) +STUB("bKzqp+Lj3YQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead16customData2IsSetEv) +STUB("bL+h0VZvQTc", rgctx_fetch_trampoline_rgctx_94) +STUB("bL1R7711ZNA", + _ZN7WebCore12SharedBufferC1EON3WTF6VectorIcLm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB( + "bL2eVhPSmM8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE10setContextEPNS2_10LibContextE) +STUB( + "bL3wlPNyiwU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEED2Ev) +STUB("bL7-3R8nSuU", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_24RegisterGameDataResponseEED2Ev) +STUB( + "bLBIUiymf3c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) STUB("bLGofENX+6M", sceCesUtf16ToEucCn) +STUB("bLI8cSePcoA", _ZNK3sce2Np9CppWebApi6Common8IteratorIfEeqERKS4_) +STUB("bLK-QjCTRiM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEaSERS7_) +STUB( + "bLK1FEABaM8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEED1Ev) +STUB("bLP9mqWhb1E", ucol_looksLikeCollationBinary) +STUB("bLPn1gfqSW8", _ZTISt13runtime_error) STUB("bLfjqFmN4s4", sceUserServiceSetPbtcTuesdayHoursStart) +STUB( + "bLiiGezq8wo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB("bLm9B8rJJK0", _ZN7WebCore22ScriptExecutionContext9execStateEv) +STUB("bLnqHspR4Lc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEC1Ev) +STUB("bLqZd5zFR0s", _ZN7WebCore17FrameLoaderClientnaEm) +STUB( + "bLubdvCKpAU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEEC1ERKSA_) +STUB("bLuyjdtbY40", + _ZN7WebCore14JSWebAnimation15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB("bM0op1RdMx0", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_26ActivityFeedCondensedStoryEEC1Ev) STUB("bM2FsV3L4sI", sceVencCoreQueryPresetEx) +STUB("bM5szLq16Ds", _ZN9Inspector26DebuggerFrontendDispatchernaEmPv) +STUB("bM7wAsKt4lA", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEEC1ERS7_) +STUB( + "bM97fcTmj+s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEmmEv) STUB("bMDbofWFNfQ", sceSystemServiceIsScreenSaverOn) STUB("bMG3cVmUmuk", sceNpInGameMessageTerminate) +STUB( + "bMH1rw20+e8", + _ZN9Inspector21PageBackendDispatcherC2ERNS_17BackendDispatcherEPNS_28PageBackendDispatcherHandlerE) +STUB("bMI5JoaOk8A", fuse_opt_insert_arg_compat) +STUB( + "bMIHV0urhxY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEEptEv) +STUB("bMMuCq5drU4", _ZN7WebCore13GraphicsLayer8addChildEPS0_) +STUB( + "bMS918krHH8", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10getString8Ev) +STUB( + "bMSWimwFcww", + _ZN7WebCore27TranslateTransformOperation6createERKNS_6LengthES3_S3_NS_18TransformOperation13OperationTypeE) +STUB( + "bMT3eg1MVBw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "bMXJencBAbs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEC2EPS8_) +STUB("bMdtr7DBgng", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEEC1ERSA_) +STUB("bMfwlXUgN-o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEaSERKS7_) +STUB("bMik+RFCP8g", _ZN3sce2Np9CppWebApi11Matchmaking2V113ErrorResponseD1Ev) +STUB("bMkPJfb5G9k", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationProperties6toJsonERNS_4Json5ValueEb) +STUB("bMlLM2uzdB8", _ZN9Inspector27AnimationFrontendDispatcher18animationDestroyedERKN3WTF6StringE) STUB("bMmid3pfyjo", sceKernelDeleteAmprEvent) +STUB("bMoSMXPXM4c", ucal_openTimeZones_67) +STUB( + "bMt7R2-8dgQ", + _ZThn16_N9Inspector18InspectorHeapAgent10getPreviewERN3WTF6StringEiRNS1_8OptionalIS2_EERNS1_6RefPtrINS_8Protocol8Debugger15FunctionDetailsENS1_13DumbPtrTraitsISA_EEEERNS7_INS8_7Runtime13ObjectPreviewENSB_ISG_EEEE) +STUB("bMzSvkfgMEU", _ZN7WebCore9FrameView26expandedLayoutViewportSizeERKNS_10LayoutSizeES3_d) +STUB( + "bMzulj1k0io", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEC2Ev) +STUB("bN+tzQQXlw4", _ZNSt9basic_iosIwSt11char_traitsIwEED1Ev) +STUB( + "bN7nTHBPrhw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEEC1ERKSA_) +STUB( + "bN8J81DSvZE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEE5resetEPS9_) +STUB("bNAnspllfsc", _ZN4IPMI4impl11SessionImpl11getUserDataEv) +STUB( + "bNBS7Lu6Scg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEC2EPKS8_) +STUB( + "bND5qXiO8zY", + _ZN3sce7Toolkit2NP2V28Matching9getWorldsERKNS3_7Request9GetWorldsEPNS2_4Core8ResponseINS3_6WorldsEEE) +STUB("bNEkbk6OnaM", _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15Error7setCodeERKi) +STUB("bNFLV9DJxdc", _Atomic_compare_exchange_weak_8) +STUB( + "bNFO4edLiKE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "bNIMdBi2810", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEE11get_deleterEv) +STUB( + "bNQpG-eKogg", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERd) +STUB("bNSV94fJLcQ", mono_exception_from_token) +STUB( + "bNUYTkumhcw", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody6toJsonERNS_4Json5ValueEb) +STUB( + "bNXHUxWfIck", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToSendGameSessionMessage13isInitializedEv) +STUB("bNeY0cKkjBM", _ZNK7WebCore20ResourceResponseBase22includeCertificateInfoEv) +STUB("bNfAipaWlCo", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredTeamsEEC2Ev) +STUB("bNfhkICjfEk", WKBundlePageGetPageZoomFactor) +STUB("bNjegmItHuk", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy15TrophyPackGroupEEC1Ev) +STUB( + "bNlhAOwQqRM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEaSERKS9_) +STUB("bNoqBCwrN+Q", _ZN3WTF8fastFreeEPv) +STUB("bNpTASpIGNY", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product11unsetRatingEv) +STUB("bNyElkySWAM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEaSERKS7_) +STUB( + "bNyTO-ACdB4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEmmEi) +STUB("bO2C3hCiKe8", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed12SharedVideosEED2Ev) +STUB("bO6mxOcSLbs", mono_aot_System_IO_Compression_FileSystemunwind_info) +STUB( + "bO8u66JxRhY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEEaSERSA_) +STUB( + "bOAkUsbjmJA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEC1Ev) +STUB( + "bODVKRsZ0x4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEC2ERS7_) +STUB("bOJq2oGERXI", g_list_free) +STUB( + "bOKBoLueWFk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEptEv) +STUB("bORoxqBlkmc", _ZN3JSC11SymbolTableC1ERNS_2VME) +STUB("bOmumJHued8", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetailC1ERS5_) +STUB("bOrGTnL22O4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEC1Ev) +STUB("bOutoP6GO6M", _ZNK7WebCore12ChromeClient18overrideScreenSizeEv) +STUB("bOwxkVkQ5uA", _ZN7WebCore22GraphicsLayerTransformC2Ev) STUB("bP+cqFmBW+A", scePthreadMutexSetyieldloops) +STUB("bP1QOJouxCM", _ZN7WebCorelsERN3WTF10TextStreamERKNS_15FilterOperationE) +STUB("bP4KYq-TUpo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEEC1ERS9_) +STUB("bP7tkWG4O-U", _ZN12video_parser5vpcom6StringC1Ev) +STUB( + "bP8GfkHY72A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEE5resetEPS6_) +STUB( + "bPDQJgOLJgc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "bPIbKXARdJY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEED1Ev) +STUB("bPNEURWq-1w", _ZN12video_parser18cMp4FFLHndlManagerC1EPKc) +STUB("bPNJIPCmGqI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEEC1Ev) +STUB( + "bPQ7r7kww0c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEC1EPNS2_10LibContextE) +STUB("bPQqCte+e9g", _ZN7WebCorelsERN3WTF10TextStreamENS_17ScrollingNodeTypeE) +STUB("bPTRIm6PRDU", JVM_GetCPMethodModifiers) +STUB("bPUMNZBqRqQ", _ZTSN10__cxxabiv117__pbase_type_infoE) +STUB("bPb84uVYRL4", + _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetail13isInitializedEv) +STUB( + "bPnfLmm+1UA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEE11get_deleterEv) +STUB("bPrfkBHXJFk", _ZN3sce3pss4core8graphics14NativeGraphics26AddPostSwapBuffersCallbackEPFvPvES4_) +STUB("bPslYp82hks", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEED1Ev) +STUB( + "bPtMdnjinVM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE6finishEv) +STUB("bPtdppw1+7I", _Zero) +STUB("bPu4g9cnHTE", _ZN3JSC11FuzzerAgent13getPredictionEPNS_9CodeBlockERKNS_10CodeOriginEm) +STUB( + "bPvFFzX2N7g", + _ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_errorFactory7destroyEPNS3_17PsnWebError_errorE) +STUB("bPvFWN2jotk", __sanitizer_maybe_open_cov_file) +STUB("bQ3WsJ35VHI", _ZN25MmsFileUpdaterFsOperation8copyFileEmj) +STUB("bQ6p+FqArAg", _ZN3JSC8SubspaceD0Ev) +STUB( + "bQBwFgCDrzs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEEC1Ev) +STUB( + "bQHx4FLLfqs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEEcvbEv) +STUB("bQOlflF2R5I", _ZN4IPMI6ServerD1Ev) +STUB( + "bQR7rDuUtk4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEppEv) +STUB("bQTCv6mnCzA", mono_signbit_double) STUB("bQVd5YzCal0", sceGnmSetPsShader) +STUB( + "bQZjwvA8l3Q", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEeqERKS9_) +STUB("bQdate8ybz8", _ZNK7WebCore26IdentityTransformOperation5cloneEv) +STUB("bQe7UHSllUg", _ZN3sce7Toolkit2NP2V27Session7Request32DisplayReceivedInvitationsDialogD2Ev) +STUB( + "bQh0h2PF49M", + _ZN9Inspector25DatabaseBackendDispatcherC2ERNS_17BackendDispatcherEPNS_32DatabaseBackendDispatcherHandlerE) +STUB( + "bQkJ5GevWl4", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead23setLocalizedSessionNameERKNS1_6Common12IntrusivePtrINS3_15LocalizedStringEEE) +STUB( + "bQkU0tCHVOI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEC2EPKS8_) +STUB( + "bQm6LtH-Dfg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "bQvSyDp1Igo", + _ZN7WebCore13MIMETypeCache15initializeCacheERN3WTF7HashSetINS1_6StringENS1_24ASCIICaseInsensitiveHashENS1_10HashTraitsIS3_EEEE) +STUB( + "bQz9TQKE5Mc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEED2Ev) +STUB("bR0UooC+SX8", RSA_private_encrypt) +STUB("bR3lFCbl2ow", goby_FreeLinkList) +STUB( + "bR5RpSOBC24", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEC2Ev) +STUB("bR79QC25WUs", + _ZN15AbstractStorage15FacebookStorage13GetRootFolderEPSt10shared_ptrINS_6FolderEE) +STUB( + "bR7wZYQhmZo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEixEm) STUB("bRCLw49N4hE", sceShellCoreUtilMountHddForRestore) +STUB( + "bRCdtixujIU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEED1Ev) +STUB("bRD04jjEhv0", SHA384_Update) +STUB( + "bREp0oAXLsc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE5eraseENS2_8IteratorIS9_EERSC_) +STUB("bREqDgXlqDU", _ZN3sce4Json6String6appendEPKcm) +STUB("bRIMZa1yg-U", + _ZN7WebCore21SerializedScriptValueC1EON3WTF6VectorIhLm0ENS1_15CrashOnOverflowELm16EEE) +STUB( + "bRIx4pwUzJ4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEppEv) +STUB("bRMpa4zkung", _ZN7WebCore11DisplayList9TranslateD1Ev) +STUB("bRN9BzEkm4o", _Gentime) +STUB("bRY94fBVQ3Y", ucln_registerCleanup_67) +STUB("bRYVEmQhrGs", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEEdeEv) +STUB("bRagxWRXORw", _ZN3sce7Toolkit2NP2V29Messaging7Request19SendGameDataMessageC2Ev) +STUB( + "bRf59fYT1nI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE5beginEv) STUB("bRfRiFTZ-ls", sceVdecwrapCreateDecoder) +STUB( + "bRsXEGWWBn4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEptEv) +STUB("bRuD-8BJ4nI", _ZN7WebCore16TrackPrivateBase13willBeRemovedEv) STUB("bRuUeIPXFDM", sceDbgKeyboardInit) +STUB("bRujIheWlB0", _ZSt14_Throw_C_errori) +STUB( + "bS+ZjhYyo3Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEaSERKS7_) +STUB( + "bS-6RdIixeg", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "bS9OlZuApNM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("bSCFvdnfr8w", _ZN12video_parser5vpcom8datetime8DateTimeC2Ettttttj) STUB("bSCbtBzQnEA", sceBgftServiceIntDebugDownloadRegisterPkg) +STUB("bSDxEpGzmUE", rfork_thread) STUB("bSJFzejYrJI", sceGnmGetDbgGcHandle) STUB("bSKEi2PzzXI", sceCameraSetSaturation) +STUB( + "bSN53yLaaaY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEED1Ev) +STUB("bSNRor7CGkA", uprv_parseCurrency) +STUB("bSO8IdVg4Bo", JVM_ConstantPoolGetMemberRefInfoAt) +STUB( + "bSOzeEWZzoI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEE7get_refEv) +STUB( + "bSRcF+8d6dk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEC1Ev) STUB("bSWMLIlnQrg", sceRazorGpuInit) +STUB( + "bSWQN2V00Lk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE8pushBackERKS8_) +STUB( + "bSWcaeKo1+U", + _ZN3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBody10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_21PlayerForTicketCreateEEEEE) +STUB( + "bSXMOk4vi+g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "bSZ05-LejOs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEE3getEv) +STUB( + "bSeEzw+OvgU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEE3getEv) +STUB("bSej+c5+NB4", + _ZNK3sce2Np9CppWebApi11Matchmaking2V127ListUserTicketsResponseBody12ticketsIsSetEv) +STUB("bSgY14j4Ov4", _Wctomb) +STUB("bSi+38LQtM0", _ZN3sce7Toolkit2NP2V28Matching7Request10CreateRoom24DEFAULT_DISPLAY_PRIORITYE) +STUB( + "bSmorxADyWY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEdeEv) +STUB( + "bSr3cRnwLfM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "bSsE1hCh2l8", + _ZN3JSC12RegExpObject17defineOwnPropertyEPNS_8JSObjectEPNS_14JSGlobalObjectENS_12PropertyNameERKNS_18PropertyDescriptorEb) +STUB("bT+++4a05Yw", _ZN7WebCore21NetworkStorageSession14destroySessionEN3PAL9SessionIDE) +STUB("bT-h0Odk4PY", uhash_puti) +STUB("bTAC2dZcnqM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEED2Ev) +STUB("bTAVnj+KOlA", _Z32sceGpuDebuggerRegisterShaderCodePKN3sce3Gnm16LsStageRegistersEjPKc) +STUB("bTCOUzAv6FQ", _ZN3sce2Np9CppWebApi6Common6VectorIiE5eraseENS2_8IteratorIiEERS6_) STUB("bTE6q+IwNKU", sceAvControlChangeOutputMode) +STUB("bTEm3XhQmzk", _ZN3sce2Np9CppWebApi7Matches2V121ResponsePlayerResults8setScoreERKd) +STUB("bTKeeOGemO8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEC1Ev) +STUB("bTMmuXgrk-4", _ZNK7WebCore20ResourceResponseBase27cacheControlContainsNoCacheEv) +STUB("bTQcNwRc8hE", _ZNSt8ios_base4InitC2Ev) +STUB("bTRy+CEQNX8", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE8capacityEv) +STUB( + "bTWY1XtdZkc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEC1Ev) STUB("bTXRAZZgkQk", sceBgftServiceIntDownloadGetPlayGoProgress) +STUB("bTZjr816ME4", + _ZN3sce2Np9CppWebApi11UserProfile2V111PresenceApi28ParameterToGetBasicPresencesC1Ev) +STUB( + "bTaEyd6uzzE", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations9setfieldsENS1_6Common12IntrusivePtrINS6_6VectorINS6_6StringEEEEE) +STUB( + "bTad7++SvxM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("bTanQAIEKH4", _ZN22MmsMdCommonFsOperation12createBufferEj) +STUB( + "bTeMP7vQP-Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEED2Ev) +STUB( + "bTfBGizj3kU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEE3getEv) +STUB("bTiqHU4KAaw", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TSS7TssDataEED2Ev) STUB("bTmtBchzFps", sceShellCoreUtilGetPbtcUserInfoList) +STUB("bTqbGNsvALM", _ZN7WebCore4Node9normalizeEv) +STUB("bTve3ZTFj1U", _ZN3JSC14createURIErrorEPNS_9ExecStateERKN3WTF6StringE) +STUB("bTyn7a6o66g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEEptEv) +STUB("bU-AmZzzm3g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEC2Ev) +STUB("bU0QXekwNes", cairo_set_source) +STUB( + "bU0llzXLpXo", + _ZN7WebCore5Frame24searchForLabelsAboveCellERKN3JSC4Yarr17RegularExpressionEPNS_20HTMLTableCellElementEPm) +STUB("bU1sC+WNEhE", JNU_ThrowNullPointerException) +STUB("bU30lh8YpkE", FcPatternAddString) +STUB("bU3S1OS1sc0", _ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2ERKSt8_Locinfom) +STUB("bU5zGRMoeKM", _ZN3sce2Np9CppWebApi14SessionManager2V127GetGameSessionsResponseBodyD1Ev) STUB("bU89EJ+j9f0", sceContentExportFromFileWithContentIdList) +STUB( + "bU8kj+qSq8E", + _ZN9Inspector28DOMDebuggerBackendDispatcher21removeEventBreakpointElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "bUCljXvL7tM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEEptEv) +STUB("bUCul5MjZcQ", _ZN7WebCore11DisplayList4SaveC1Ev) +STUB("bUCx72-9f0g", _ZNK3sce16CommonDialogUtil6Client10isCloseReqEv) +STUB( + "bUKDC6pac24", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEC2EPKS8_) STUB("bUNHcd7Ia0U", sceCesSJisGetCode) +STUB("bUNIGb3Qom4", _ZNK3JSC12StackVisitor5Frame8toStringEv) +STUB("bUOMWDa2igw", _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBodyD1Ev) +STUB( + "bUQ2qX5HpGQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("bUQLE6uEu10", _ZNSt9_Num_base8is_exactE) +STUB( + "bUTjOPwzOeQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEC2EPNS2_10LibContextE) +STUB( + "bUabUBu-bIs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEE11get_deleterEv) +STUB("bUd2puZ74kI", _ZL27dependent_exception_cleanup19_Unwind_Reason_CodeP17_Unwind_Exception) +STUB("bUeJF8YoKIg", + _ZN7WebCore12SettingsBase23setPictographFontFamilyERKN3WTF12AtomicStringE11UScriptCode) +STUB( + "bUgHY9MrJw4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEED1Ev) +STUB("bUgSNBjKk0E", mono_win32_compat_CopyMemory) +STUB("bUihN9veggg", _ZN3sce7Toolkit2NP2V27Session8Sessions8deepCopyERKS4_) +STUB("bUkfb442U2A", _ZN3sce7Toolkit2NP2V26Friend16FriendsOfFriendsC1ERKS4_) +STUB("bUmDv1Bd52I", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE5clearEv) +STUB( + "bUncbZoTit0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEppEv) +STUB("bUw2Go-rxtE", _ZN3sce4Json5Value10s_nullboolE) +STUB("bUwn05J4BZc", _ZN7WebCore16HTMLTableElement13createCaptionEv) +STUB("bUxXBzkgul0", glCullFace) +STUB( + "bV+0Y+-iuqc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEEC2EPS8_PNS2_10LibContextE) +STUB("bV+MAY-cz5I", _ZN3WTF17charactersToFloatEPKhmPb) +STUB("bV+fwNnfGg8", _ZNK3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error7getCodeEv) +STUB( + "bV3tGH6TG7w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEEC1ERSA_) +STUB("bVIEJr0rwsw", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfileD2Ev) +STUB("bVJ-1ExjYco", + _ZNK3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody13sortModeIsSetEv) +STUB("bVTMB9kADRA", __sanitizer_cov_init) +STUB( + "bVXsgm2pAaI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "bVZo98abRQE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEC1Ev) +STUB("bVaeSdTLaD8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEEptEv) +STUB("bVdAHZeXw2Q", _ZNK3sce2np13JsonArrayImpl7GetItemEi) +STUB( + "bVgSuxcYZKg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEdeEv) STUB("bVtF7v2uqT0", sceAppContentRequestPatchInstall) +STUB("bW+iY4EnrNY", JSValueToBoolean) +STUB( + "bW1blArePxs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEneERKS9_) +STUB( + "bW3WshEIgsA", + _ZN9Inspector20DOMBackendDispatcher6createERNS_17BackendDispatcherEPNS_27DOMBackendDispatcherHandlerE) +STUB("bW7aTUNT5sQ", _ZN3sce7Toolkit2NP20CreateSessionRequestC1Ev) +STUB("bWHwovVFfqc", _ZN10__cxxabiv120__si_class_type_infoD2Ev) +STUB("bWJrDRxsfaQ", + _ZN7WebCore21DiagnosticLoggingKeys42wastedSpeculativeWarmupWithRevalidationKeyEv) +STUB("bWMZA7rT5-c", + _ZN3sce2Np9CppWebApi14SessionManager2V113PlayerSessionC1EPNS1_6Common10LibContextE) +STUB("bWPSP8A71Rk", _ZN3WTF13MetaAllocatorD0Ev) STUB("bWPuW6TnMjk", sceVdecCoreAnalyzeStream) +STUB( + "bWRGPoXxm4M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEC2Ev) +STUB("bWVxyOJYjZw", _ZN7WebCore20SharedBufferDataViewC2ERKS0_) +STUB("bWYhKmtyu1M", _ZN7WebCore8Settings44setClientCoordinatesRelativeToLayoutViewportEb) +STUB( + "bWeDH1BuZwk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEdeEv) +STUB( + "bWeozuwthEc", + _ZN9Inspector21InspectorRuntimeAgent14getBasicBlocksERN3WTF6StringERKS2_RNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime10BasicBlockEEENS1_13DumbPtrTraitsISC_EEEE) +STUB("bWg-a8croPo", _ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEEC2Ev) +STUB("bWgrBvwgod0", mono_g_hash_table_new_type) +STUB( + "bWilsNMwgf4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB( + "bWl5Rv5fO0I", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEaSERKS9_) +STUB("bWq0yN2dxGA", _ZN3JSC19SourceProviderCacheD1Ev) +STUB( + "bWqJhhcQX8U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEEdeEv) +STUB("bWzx-teZAOo", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession17joinDisabledIsSetEv) +STUB( + "bX02IwVAKVw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEC2Ev) +STUB( + "bX0K9aD604Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEppEi) STUB("bX4H+sxPI-o", sceImeDialogForceClose) STUB("bX5IbRvECXk", sceGnmDingDong) +STUB("bXBLPMTtCUA", _ZN3sce2Np9CppWebApi13InGameCatalog2V512ImageFactory7destroyEPNS3_5ImageE) +STUB("bXKJvpaEKpk", WKHTTPCookieStoreSetCookieForHostname) +STUB( + "bXM0CGQXkMg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "bXNny69-cEw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEC2EPNS2_10LibContextE) +STUB( + "bXOd7-gcfQ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEC1EPNS2_10LibContextE) +STUB("bXOfQbHVxLI", _ZN7WebCore24CoordinatedGraphicsLayer13addChildAboveEPNS_13GraphicsLayerES2_) +STUB( + "bXPCpI+NrlA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEptEv) +STUB( + "bXVfWnAMXl0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEED2Ev) +STUB("bXW4ce-oHPA", + _ZN15AbstractStorage13TwitterFolder12RemoveFolderERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) +STUB("bXWk2plwD-I", _ZN3sce6Canvas6handleEh) +STUB("bXXX9D+hY+I", + _ZN3sce2Np9CppWebApi14ConnectAccount2V221PSNError_errorFactory7destroyEPNS3_14PSNError_errorE) +STUB("bXZ6r1qeASU", _ZN7WebCore6JSFile9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("bXdcBn6G0jg", _ZN7WebCore21DiagnosticLoggingKeys27synchronousMessageFailedKeyEv) +STUB("bXg93X9uhro", wcstof.fpi0) +STUB("bXh5fNTQcJ4", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead22getDisableSystemUiMenuEv) +STUB("bXhOOnwplgg", _ZN7WebCore19ResourceRequestBase17setAsIsolatedCopyERKNS_15ResourceRequestE) +STUB( + "bXjWSQyarLM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "bXo47we0qeU", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions11unsetfieldsEv) +STUB("bXsH+sG6jfg", delegate_virtual_invoke_19_p) +STUB("bXupa3+NYIs", cairo_font_face_get_user_data) +STUB( + "bXv70fjKs8g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEED1Ev) +STUB("bXxCiqp6RrI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEaSERS7_) STUB("bXxVDD3VuWc", sceKernelReboot) +STUB("bXyHGhBXv-0", _ZN3sce7Toolkit2NP23ModifySessionAttributesC2Ev) +STUB( + "bXzCNfXBxDQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEptEv) +STUB("bY-05Dydbog", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE7popBackEv) +STUB("bY-PO6JhzhQ", close) STUB("bY8uAdN04as", sceClKernelCreateEventFlag) +STUB("bY9Y0J3GGbA", _ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1Em) +STUB("bY9ee3Gxr+4", _ZN4Manx13WorkQueueImpl5Timer4fireEv) STUB("bYCnxLexU7M", sceSaveDataDebugCleanMount) +STUB("bYGUHA9NzMM", _ZN3NTF15DNSPrefetchImplD1Ev) +STUB("bYI-b31XduA", _ZN7WebCore18PrewarmInformationC2Ev) +STUB("bYKYwPaS8Hw", _ZNK7WebCore4Node16computeNodeIndexEv) +STUB( + "bYKqDYYoxzk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEC2ERKS7_) +STUB( + "bYMqz-GdCqw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE5beginEv) +STUB("bYOprenBXjE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEcvbEv) +STUB( + "bYX6xW6HyGs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEEC1Ev) +STUB("bYZVoiBJvwE", mono_domain_free) +STUB("bYZZeyDKrJA", ucptrie_openFromBinary_67) +STUB("bYb3AO5a-J4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEE7add_refEv) +STUB("bYiXu772uUo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V114SearchOperatorEEppEv) +STUB("bYmGOdgqDKc", WTFCrash) +STUB( + "bYmdtFn-IHE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEEdeEv) +STUB("bYmi7DbWsvY", _ZN12video_parser5vpcom3rtc12TickAddYearsEPmPKmi) +STUB( + "bYmn6-zt5dQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEED0Ev) +STUB( + "bYnRjyPVRIg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEC2EPS6_PNS2_10LibContextE) +STUB( + "bYosR58n3B4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "bYs8IsRNDw4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "bYt5imaynN4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEptEv) STUB("bYuGUBuIsaY", sceGameLiveStreamingStopSocialFeedbackMessageFiltering) +STUB("bYwPc+KsfSw", _ZN3sce2Np9CppWebApi6Common6StringeqEPKc) +STUB( + "bYylJEfJSNw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEC1Ev) +STUB( + "bZ+lKHGvOr8", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERt) +STUB( + "bZ+v8HsIEi8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("bZ0PVaXm2iw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEEC2EPNS2_10LibContextE) +STUB( + "bZ0oEGQUKO8", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE9_GetffldxEPcRS3_S6_RSt8ios_basePi) STUB("bZ2mBvP79d8", sceNpIntRegisterGamePresenceCallback) +STUB( + "bZ7jsE6bEfs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEC2Ev) STUB("bZC-mkEEBmI", sceCesMbcToUtf16le) +STUB( + "bZGh0ikos7A", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession19setLeaderPrivilegesERKNS1_6Common6VectorINS5_6StringEEE) +STUB( + "bZPddwZ9N1I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEEaSERKSA_) +STUB("bZQtd0o41fU", mono_btls_pkcs12_get_cert) +STUB("bZT8JIrrg3I", ubrk_countAvailable) +STUB("bZVYOH83P8g", _ZN7bmalloc3api23decommitAlignedPhysicalEPvmNS_8HeapKindE) +STUB( + "bZVohbbA+ks", + _ZN3JSC8JSObject24putDirectBuiltinFunctionERNS_2VMEPNS_14JSGlobalObjectERKNS_12PropertyNameEPNS_18FunctionExecutableEj) +STUB( + "bZWbiCK-KJY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEED1Ev) +STUB("bZYKXT+p6Rw", _ZN3WTF12refIfNotNullI14_cairo_surfaceEEvPT_) +STUB("bZYqFlUVPCY", FTA_Export_Module_autofitter) +STUB("bZd1LyyDb6E", _ZN3JSC7Symbols25deletePropertyPrivateNameE) +STUB( + "bZdwXVCY4R8", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeader35setxPSNSESSIONMANAGERNONPSNCALLERIDEPKc) +STUB( + "bZenfR50V8s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("bZh-s2ICyus", rgctx_fetch_trampoline_rgctx_45) +STUB("bZiDwa0M3iQ", _ZN3WTF11Persistence7Encoder6encodeEi) +STUB( + "bZkGgiVUPm0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "bZmCZqy2ulE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEppEi) STUB("bZqlswX9xv4", scePlayReadyDebugPrintf) +STUB("bZtTcC6OQ1M", GCC_except_table272) +STUB( + "bZwmrPfViMk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE5emptyEv) +STUB("bZx+FFSlkUM", _ZdlPvSt11align_val_t) +STUB("ba-1NKWEdjU", WKPreferencesGetAllowMediaContentTypesRequiringHardwareSupportAsFallback) +STUB( + "ba0If1Ku3jw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEC1EPS6_PNS2_10LibContextE) +STUB( + "ba2H959VLNg", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13integer3IsSetEv) +STUB( + "ba2h-X3-szM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("ba78kVluok4", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate11getPerGenreEv) +STUB( + "ba7dP9kp7kg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEptEv) +STUB("baBvKjivwxQ", _ZN4Manx7RunLoop4initEv) +STUB("baCQrYqj+MA", Java_com_sony_bdjstack_org_bluray_vfs_VFSManagerImpl_proxyEnableClip) +STUB( + "baD+O944dgk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEED1Ev) +STUB( + "baDcxL3GLBo", + _ZN3JSC13ConsoleClient19printConsoleMessageENS_13MessageSourceENS_11MessageTypeENS_12MessageLevelERKN3WTF6StringES7_jj) +STUB( + "baEjAPdzz0g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEppEv) +STUB("baFF-vYJE1w", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE5eraseENS2_8IteratorIS6_EERS9_) +STUB("baFf7PJFNTw", JVM_SetLength) +STUB("baKWVDuKUYY", _ZN3sce7Toolkit2NP2V28Commerce7Request13GetContainersD1Ev) +STUB("baMJxqWo4mw", mono_aot_Sce_Vshmethod_addresses) +STUB( + "baMTsDLOwyw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEC1EPNS2_10LibContextE) +STUB("baMm9gQx3lA", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE4sizeEv) STUB("baQO9ez2gL4", sceAmprCommandBufferReset) +STUB( + "baTQyLBybyI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE15receiveResponseEv) +STUB( + "baVZ+lmzU2E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEppEi) +STUB("baW6JRK9qhU", _ZN12Mp4RetrieverD2Ev) +STUB("baWyExNVtvs", _ZN3WTF21MemoryPressureHandler26triggerMemoryPressureEventEb) +STUB("baYgb8Y5pic", mono_gchandle_new) +STUB( + "baZCtl0nZX8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("baaK7ef7Ec4", mono_btls_ssl_get_peer_certificate) +STUB("bab+Dmm7bEc", _ZNK3sce2Np9CppWebApi7Matches2V111AddedPlayer11teamIdIsSetEv) +STUB( + "bahysGIj4SI", + _ZN9Inspector26DatabaseFrontendDispatcher11addDatabaseEN3WTF6RefPtrINS_8Protocol8Database8DatabaseENS1_13DumbPtrTraitsIS5_EEEE) +STUB( + "ban-zz2BbNk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEppEv) +STUB( + "banNSumaAZ0", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERy) +STUB( + "bapwU9toJgI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEppEi) +STUB("bau1H4TgtSU", mono_aot_System_Coremethod_addresses) +STUB("bavutYJwIzY", jpeg_fdct_4x4) +STUB( + "bayfdTWenXc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEmmEv) +STUB( + "bb-T5NMDPck", + _ZN15AbstractStorage14StorageManager16get_storage_nameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB( + "bb-y8JFW2Do", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) STUB("bb-zDo8J0Fo", sceAppInstUtilAppInstallCloudGame) +STUB( + "bb09CrIV7eM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEE7get_refEv) +STUB("bb0PBdvX0e8", _ZN3sce7Toolkit2NP2V212NetworkUtils16NetStateDetailedD2Ev) +STUB("bb0cXm58Xl0", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities15ActivityFactory7destroyEPNS4_8ActivityE) +STUB( + "bb1ykMvgBw8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE8capacityEv) +STUB("bb57M7j3oks", mono_aot_System_Transactionsunbox_trampoline_addresses) +STUB("bb5o-YHu8vM", _ZN9Inspector27AnimationFrontendDispatcher13trackingStartEd) STUB("bb5sduKHOTQ", sceFsMountDownloadData) +STUB( + "bbC4CVfLVzc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE8capacityEv) +STUB("bbCj+yciZEg", WKGrammarDetailCopyGuesses) STUB("bbFueFP+J4k", sceAgcDcbSetPredication) +STUB("bbHSby-JO6w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE3endEv) +STUB("bbIGbc1EULI", + _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest20unsetChildActivitiesEv) +STUB( + "bbKHP40ks+k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE7popBackEv) +STUB( + "bbLD8+9Tt58", + _ZN3JSC9Structure18willStoreValueSlowERNS_2VMENS_12PropertyNameENS_7JSValueEbNS_17InferredTypeTable17StoredPropertyAgeE) +STUB("bbLfbPy-xzw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE5emptyEv) +STUB( + "bbOxz1pHDQI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("bbTPWQlnwwA", _ZN3sce7Toolkit2NP2V28Matching6WorldsD1Ev) +STUB("bbUQuMWY2QI", WKViewSetACMemoryInfo) +STUB("bbZ0uWzshUA", + _ZN3sce2Np9CppWebApi7Matches2V123RequestTeamMemberResultC1EPNS1_6Common10LibContextE) +STUB( + "bbaPPDA7kOM", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersC2Ev) +STUB( + "bbc9x3jc5OM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot8setgroupENS5_5GroupE) +STUB("bbcJa87UkyM", WKPointGetTypeID) +STUB("bbcgBO5kv5k", uspoof_checkUTF8_67) +STUB("bbepJzDv2h8", _ZN11GvMp4Parser6Common11Utf8ToUtf16ERKSsPSbIwSt11char_traitsIwESaIwEE) +STUB("bbkcYO2xEa8", + _ZN7WebCore37computeFreshnessLifetimeForHTTPFamilyERKNS_16ResourceResponseEN3WTF8WallTimeE) +STUB("bbqzRrAl3Oo", _ZN3JSC7Symbols24flatIntoArrayPrivateNameE) +STUB( + "bbtIn3qVrGQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEeqERKS9_) +STUB( + "bbu98oUkpnM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("bbuFLemjwRA", goby_FreeNodeList) +STUB( + "bbwDkAe64-w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEE5resetEPS9_) +STUB( + "bc1X8QxgHbM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEC2ERS7_) STUB("bcCyjHN5sn0", sceGameUpdateDeleteRequest) +STUB("bcDv9YUIolw", _ZN4Manx11MediaPlayer10copyBufferEPvPKvj) +STUB( + "bcGNHkqa-HA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("bcH5EnFE2xY", _ZNK3sce4Json5Array5beginEv) +STUB( + "bcHZuYtUX1M", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE8capacityEv) +STUB("bcIyPgrgvtw", rgctx_fetch_trampoline_mrgctx_38_p) +STUB("bcM5xfX2SeA", FT_Set_Transform) +STUB( + "bcONo7LipOM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE21intrusive_ptr_sub_refEPS7_) STUB("bcPB2rnhQqo", sceNpTusGetMultiSlotVariableAsync) +STUB("bcQ6Ua1Ngvs", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEED1Ev) +STUB("bcU-5Fszdus", Java_java_util_zip_ZipEntry_initFields) +STUB("bcUyn0Hx3jk", Java_sun_awt_DownloadedFont_loadFromMemoryInit) +STUB( + "bcVmN10Lr-k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEE7get_refEv) +STUB( + "bcXnhhFyVAA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEE5resetEPS9_) +STUB( + "bcYsKVU6Gxo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEEneERKS7_) +STUB("bcZghN7izf0", _ZN3JSC33throwTerminatedExecutionExceptionEPNS_9ExecStateERNS_10ThrowScopeE) STUB("bcoVwcBjQ9E", sceNpScoreRecordGameData) STUB("bcolXMmp6qQ", sceAppContentTemporaryDataUnmount) +STUB( + "bcp-fYHlHik", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("bcplMKh-3pw", mono_aot_Sce_Vsh_Db_Sharedmethod_addresses) +STUB( + "bcqsPolZQaY", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities26GetUsersActivitiesResponseC1EPNS1_6Common10LibContextE) +STUB("bd-3fcfIMCk", _ZN7WebCore17JSHTMLLinkElementC2ERKS0_) +STUB("bd0k19pL-YM", _ZN3JSC17MarkingConstraintD2Ev) +STUB( + "bd890AWW+lE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEE7add_refEv) +STUB("bdE4ZOXsBks", _ZN7WebCore11MediaPlayer19nextBestMediaEngineEPKNS_18MediaPlayerFactoryE) +STUB("bdEXa0zZaIY", mono_bitset_set_all) +STUB("bdIbC3cUOhc", mono_aot_System_Resources_ResourceManagerplt_end) +STUB( + "bdJWWpNR9eM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE10setContextEPNS2_10LibContextE) STUB("bdJdX2bKo2E", sceUserServiceSetGlsHintFlag) +STUB("bdLj8YKhyTw", + _ZN7WebCore14FrameSelection6moveToERKNS_15VisiblePositionES3_NS_14EUserTriggeredE) +STUB("bdUs9RrNA2Y", mono_aot_Mono_Securityjit_code_start) +STUB("bdVrqz-l+pU", _ZN3JSC17CommonIdentifiers18appendExternalNameERKNS_10IdentifierES3_) +STUB( + "bdixUgp0e+w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEEC2Ev) +STUB("bdlhvSyoS3s", uprv_strnicmp) STUB("bdqdvIkLPIU", sceGnmGetResourceType) +STUB("bdqo3+YFtOQ", WKContextGetPluginSiteDataManager) +STUB("be2Rk5NH1v0", _ZN15AbstractStorage15FacebookStorageD1Ev) +STUB("be71gob1ILs", _ZN3sce7Toolkit2NP2V26Friend6FriendD2Ev) +STUB("be71qBQEvVQ", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12FriendsRanksEE3setEv) STUB("beAsSTVWVPQ", sceRudpSetMaxSegmentSize) +STUB( + "beCjYrW7qYQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEC2EPS6_PNS2_10LibContextE) +STUB( + "beDnU2QSUQA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEptEv) +STUB("beHxaK7HT5s", _ZN7WebCore13AXObjectCache10rootObjectEv) +STUB( + "beI6iLGELZA", + _ZN3JSC7JSArray18getOwnPropertySlotEPNS_8JSObjectEPNS_14JSGlobalObjectENS_12PropertyNameERNS_12PropertySlotE) +STUB( + "beI73bkAA7E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEE7get_refEv) +STUB("beOmuqj8CNI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEC2ERS7_) STUB("bePC0L0vQWY", sceFontStyleFrameUnsetScale) +STUB("bePQcTb6YSY", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIdEeqERKS4_) STUB("beQ90Sx6c8g", sceShellCoreUtilGetGpuLoadEmulationMode) +STUB( + "beQPovWSJW0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE7reserveEi) STUB("beRjXBn-z+o", sceNetSend) +STUB("beY9ZJv5-dU", glGetAttribLocation) +STUB("beiig8VZwso", __sancov_default_options) +STUB( + "benkAKsODV0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEeqERKS9_) +STUB("besRQwOMIz0", _ZN3sce7Toolkit2NP2V23TUS16FriendsVariablesC1ERKS4_) +STUB("bevVB2XSREQ", delegate_virtual_invoke_imt_29_p) +STUB("beyeyxXerNM", _ZN3sce7Toolkit2NP2V28Matching12Notification14NewRoomMessage8deepCopyERKS5_) +STUB( + "bf1J1ElQV1A", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12string6IsSetEv) +STUB("bf54N7AEBTc", + _ZN7WebCore21DiagnosticLoggingKeys46successfulSpeculativeWarmupWithRevalidationKeyEv) +STUB( + "bf8VCb77jns", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE21intrusive_ptr_sub_refEPS9_) +STUB("bfBDausTRoY", mono_aot_Sce_Vsh_Friendunwind_info) STUB("bfDcj2PJL6g", sceSystemLogger2Terminate) +STUB("bfEQm8gos5s", _ZN7WebCore6Path2D6createERKNS_4PathE) +STUB( + "bfLrxgL9GAg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEmmEi) +STUB( + "bfS0GqebQxM", + _ZN3sce2Np9CppWebApi14SessionManager2V125RequestGameSessionFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_18RequestGameSessionEEE) +STUB( + "bfUkvEBxvE8", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayer28setxPsnAcceptPlatformNamePs5ENS5_25XPsnAcceptPlatformNamePs5E) +STUB("bfdumhvAP08", mono_btls_x509_store_ctx_get_chain) +STUB("bfepB0SUvFk", mono_btls_error_peek_error) STUB("bfgo2Otmqz0", sceFiosOpIsDone) +STUB("bfgzXZxYkpw", _ZN7WebCorelsERN3WTF10TextStreamENS0_9OptionSetINS_13ActivityState4FlagEEE) STUB("bfoMXnTRtwE", sceNgs2StreamDestroy) +STUB( + "bfoy24Mj6Qw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE7reserveEi) +STUB("bfpnrlIKGlM", il2cpp_method_get_param_name) +STUB("bfunI2KsEys", _ZN7WebCore4Page16stopMediaCaptureEv) +STUB("bfv-Jn4GeDI", ASN1_STRING_get0_data) +STUB( + "bfwL6vkfFng", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "bfy9jvUvjAY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEEC2EPS6_PNS2_10LibContextE) +STUB( + "bfymaKi5Su8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE4sizeEv) +STUB("bg+X3d1K+mU", WKWebsiteDataStoreUpdateBundleIdentifierInNetworkProcess) +STUB("bgAcsbcEznc", __stdinp) +STUB("bgBTWnq6bRU", mono_get_int16_class) +STUB("bgDMMW7d9ow", res_getBinaryNoTrace_67) +STUB("bgEnw75ikh0", rgctx_fetch_trampoline_mrgctx_42_p) +STUB( + "bgR+hS3aaX4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEC2Ev) +STUB("bgVQlvfISLo", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEEC1Ev) +STUB("bgd3ki6qpxU", _ZN9Inspector27PerGlobalObjectWrapperWorldC1Ev) STUB("bghgkeLKq1Q", sceNetDumpCreate) +STUB("bgj6mxwGOSg", mono_aot_Sce_Vsh_Np_Snsunwind_info) +STUB("bglw6PJL4nw", _ZN3sce4Json6Parser11parseStringERNS0_5ValueERNS0_11InputStreamEPS2_) +STUB( + "bgmNNNwIeJQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("bgn3buIihQA", _ZN12video_parser5vpcom6String18SetFormattedStringEPKwz) +STUB( + "bgnFw5Doyc8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEEC2ERS9_) +STUB("bgnHFMqxYag", u_islower) +STUB("bgpgVem38ao", closeallreg) +STUB( + "bgquF0K7vP8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEC1EPS8_) +STUB("bgrxJM-HmMM", _ZN3WTF13normalizedNFCENS_10StringViewE) +STUB("bgsQE8Nen8c", _ZN3sce2Np9CppWebApi6Common6Binary12appendBinaryEPKvm) +STUB("bgsvxsIp9so", il2cpp_string_chars) +STUB("bgw1d8UPxfQ", _ZN3sce7Toolkit2NP2V212ActivityFeed5StoryC2Ev) +STUB("bgyA6kNaJzk", _ZN3sce7Toolkit2NP2V28Commerce7Request18DownloadListTargetD2Ev) +STUB("bh-UF9BF4zo", _ZN4Manx6CookieD2Ev) +STUB( + "bh4PUC+PSRU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEppEi) +STUB("bh4bKfeivgQ", _ZNK7WebCore22EmptyFrameLoaderClient17overrideMediaTypeEv) STUB("bh6ZKnM6V+E", sceIduUtilIsAppInstalled) +STUB( + "bh9EOkww6f0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEmmEi) +STUB("bhAoOTDH4Fs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEEC1EPS6_) +STUB("bhAs4QggKkM", _ZN7WebCore20ResourceResponseBase14setHTTPVersionERKN3WTF6StringE) +STUB( + "bhFxMnXk8mg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "bhGNLXaaXxI", + _ZN3sce2Np9CppWebApi11Matchmaking2V120PlayerForReadFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_13PlayerForReadEEE) +STUB( + "bhGvbKWSzAY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE5clearEv) +STUB( + "bhH59jzKP30", + _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container9setRatingERKNS1_6Common12IntrusivePtrINS3_15ContainerRatingEEE) +STUB("bhJIfJ88riw", X509_NAME_get_entry) +STUB("bhNTXZsyzkE", _ZN3WTF31integerToSixCharacterHashStringEj) +STUB("bhWps1nBqiI", + _ZN3sce2Np9CppWebApi14SessionManager2V125ResponseGameSessionPlayer12setAccountIdERKm) +STUB( + "bhZsGUneDX4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEEcvbEv) +STUB("bhbcVkPa6RI", _ZN7WebCore21wordRangeFromPositionERKNS_15VisiblePositionE) +STUB("bhfgrK+MZdk", _ZN10__cxxabiv119__pointer_type_infoD1Ev) +STUB("bhmXbVjzzAU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEEcvbEv) STUB("bhmZlml6NBs", sceFontGraphicsStructureSurfaceTexture) +STUB( + "bhmm8dHGhs4", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging25GameDataMessageAttachmentEE19setCustomReturnCodeEi) STUB("bhomgbiQgeo", sceUsbdGetDeviceDescriptor) +STUB("bhz5NSDEBqU", _ZN7WebCore8Settings35setBackgroundShouldExtendBeyondPageEb) +STUB( + "bi+hxCSs7ns", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser15hasmemberFilterEv) +STUB("bi-IagR+u0Y", ures_getString_67) STUB("bi0WNvZ1nug", scePadIsBlasterConnected) +STUB("bi6QENDuFZk", mono_aot_Sce_Vsh_DiscPlayermethod_addresses) +STUB("bi7s+MGJqII", isobmf_box_getmember_ptr) +STUB("biFFZqN9oGU", _ZN3sce2Np9CppWebApi7Matches2V117LeaveMatchRequestC1EPNS1_6Common10LibContextE) +STUB( + "biHDn8MaFf0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEEC1Ev) +STUB( + "biJ+6XHfE0U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC1Ev) +STUB("biQzMorP6PE", WKPreferencesSetServerTimingEnabled) +STUB( + "biVLfNfcZ4A", + _ZN9Inspector24RuntimeBackendDispatcher18releaseObjectGroupElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "biWNVs-42is", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("biXy-4Tb6iI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEC1ERS7_) +STUB("biY+kcVB5D4", dlsym) +STUB( + "biZCCyH6Iro", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEneERKS9_) +STUB("bicplwTUvSo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE6resizeEj) +STUB( + "bil-UpwEpD0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEdeEv) +STUB("bim4ILT718Q", _ZN7WebCore14SecurityOrigin16createFromStringERKN3WTF6StringE) STUB("bioGsp74SLM", sceGnmSpmSetMuxRam2) STUB("biwS5HG-DBY", sceG2PDialogOpen) +STUB( + "bixhkj4r7e8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEEaSERSA_) +STUB( + "bj-QmU5rsDA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEppEi) +STUB( + "bj-YKjHV5IE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEC2Ev) +STUB("bj0oCNjElOE", _ZN3WTF18constantTimeMemcmpEPKvS1_m) +STUB( + "bj4+R2sH1k4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEED1Ev) STUB("bjAlYWwRTJA", sceContentSearchOpenMetadataByContentId) +STUB("bjAnP-ce-oc", _ZN3sce2Np9CppWebApi11Matchmaking2V19Submitter8fromJsonERKNS_4Json5ValueE) +STUB("bjJTJ2G5VIA", + _ZN3sce2Np9CppWebApi11UserProfile2V125GetPublicProfilesResponseC2EPNS1_6Common10LibContextE) +STUB("bjLQJi9PLbo", u_terminateChars_67) +STUB("bjN6x0j7+bc", ulocimp_getRegionForSupplementalData_67) +STUB( + "bjOKEZBs5Gk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEE11release_refEv) +STUB("bjOWNTqtNCQ", il2cpp_array_element_size) +STUB("bjSu8ElqeWY", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE5beginEv) +STUB("bjVowlg5+Ww", Java_java_lang_StrictMath_expm1) +STUB( + "bjWQrcaLzFE", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS5_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISE_SF_EE) STUB("bjYjvRCluuw", sceHmdFillDistortionBuffer) +STUB( + "bjZe6XgLws0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEppEv) +STUB("bjbrUuq+lso", _ZN9Inspector26DebuggerFrontendDispatcherdaEPv) +STUB("bjdJEldgxQk", _ZN3sce2Np9CppWebApi6Common6VectorImEixEm) +STUB( + "bjfEp8UbVIs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEE3getEv) +STUB("bjhyOQe0tW4", _ZN7WebCore9HTMLNames8tableTagE) +STUB("bjihETnIlDg", _ZN7WebCore8SVGNames11displayAttrE) +STUB( + "bjmq8dUHIyc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE8copyFromERKS9_) +STUB( + "bjnWD9XgJlg", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE11getResponseERS8_) +STUB( + "bjqFF8irxnY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEEC2ERKSA_) STUB("bjrzRLFali0", sceNetUsleep) +STUB("bjsL0GMcHMI", _ZN3sce3Xml10SimpleDataC2EPKcm) +STUB( + "bjssxclgE70", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEppEi) +STUB("bjsuxAus3b8", ubrk_preceding_59) +STUB( + "bju4RJheLw0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEEC2Ev) +STUB("bjzYzmNRc60", _ZN3sce7Toolkit2NP2V26Friend12Notification15BlocklistUpdateC1Ev) +STUB( + "bk+OOq0V31E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEED1Ev) +STUB( + "bk1FSqDfkKc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEC1EPS8_) +STUB( + "bk1XvWVITTc", + _ZN7WebCore9FrameView27availableContentSizeChangedENS_14ScrollableArea25AvailableSizeChangeReasonE) +STUB( + "bk9AVAO2XD4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE8pushBackERKS8_) STUB("bkBN+CMLwRc", sceAudioOut2GetSystemState) +STUB("bkHiYGjRMu0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEE11release_refEv) +STUB( + "bkNlr-4LG9I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("bkOe-P9Mds8", _ZN3JSC25JSInternalPromiseDeferred7resolveEPNS_9ExecStateENS_7JSValueE) +STUB("bkPLMG14uW8", WKPreferencesSetLongMousePressEnabled) STUB("bkQ7aNx62Qg", sceUserServiceSetVolumeForGenericUSB) STUB("bkRHEYG6lEM", sceAjmMemoryRegister) +STUB( + "bkVU5tiSAeY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEC2Ev) +STUB( + "bkVdWPESKhQ", + _ZN3sce4Json5Value18serialize_internalERSbIcSt11char_traitsIcENS0_8StlAllocIcEEEPFiS7_PvES8_PS1_) +STUB( + "bkVkQbgcGjA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "bkbgaTcsNNQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEED2Ev) +STUB( + "bkgjuiebsgg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEaSERKS9_) +STUB("bkhiljYMzWA", mtx_rahead) +STUB("bklqvBMjt-s", Java_java_awt_GnmGraphicsEnvironment_initIDs) +STUB("bkpUvmRS6Yc", _ZN3sce7Toolkit2NP2V28Matching7Request10CreateRoomD2Ev) +STUB("bksmE6fo+6E", _ZN7WebCore36ISOProtectionSystemSpecificHeaderBoxD2Ev) +STUB("bktaRXQqHKQ", _ZN7WebCore9HTMLNames17onbeforepasteAttrE) +STUB("bkxYTi4OaGE", mono_debug_free_locals) STUB("bkz3jG-RlGA", sceSblRcMgrIsIntdevForPSM) +STUB("bl0DPP6kFBk", _ZSt8_XLgammae) STUB("bl4MkWNLxKs", sceHmdInternalDfuSetMode) +STUB("bl5399SXCSc", _ZN7WebCore13CharacterData10deleteDataEjj) +STUB("blA2U7gPSx4", _ZN3JSC9ExecState18callerSourceOriginEv) +STUB("blD-5Y31+do", ucol_swap) +STUB( + "blDbdGs-EGg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEdeEv) +STUB("blFLyhAG0ig", mono_btls_x509_get_serial_number) +STUB( + "blPTVb8vZaY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEEC2ERKSA_) +STUB( + "blTXJGzV55c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE5clearEv) +STUB( + "blW-a8cVxQ4", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEiRNS2_10LibContextEPT_m) +STUB("bleKr8lOLr8", _ZNSt6locale7_LocimpD0Ev) +STUB( + "blewLPEBcMk", + _ZN3sce7Toolkit2NP2V212ActivityFeed15postInGameStoryERKNS3_7Request15PostInGameStoryEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("blg9dHgagp4", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi22ParameterToCreateMatchD2Ev) +STUB("blgK3ktWIdw", _ZN7WebCore27TranslateTransformOperation5blendEPKNS_18TransformOperationEdb) +STUB( + "blmY1Hm3-CU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEED2Ev) +STUB( + "blmpMLMb2WM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEC2Ev) +STUB("blnnnlWrGMs", + _ZN7WebCore13GraphicsLayer11setChildrenERKN3WTF6VectorIPS0_Lm0ENS1_15CrashOnOverflowELm16EEE) +STUB("blp2CNYeQU4", fuse_chan_receive) STUB("bltDCAskmfE", sceNpWebApi2SetMultipartContentType) +STUB("blx3VqDu8LY", _ZN7WebCore9FrameView11forceLayoutEb) +STUB("blx6kdu-ilQ", _ZNK7WebCore17CSSPrimitiveValue11stringValueEv) +STUB("blzNt8wkPH8", _ZN7WebCore22EmptyFrameLoaderClient14shouldFallBackERKNS_13ResourceErrorE) STUB("bm4L4sT8wsU", sceOpusCeltEncCreateEx) +STUB( + "bm6UWSoMpco", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEC1Ev) +STUB("bm81W6BNQbs", _ZThn136_N7WebCore16HTMLMediaElement9setVolumeEd) +STUB("bmDCAVeZmjo", _ZN3JSC7Options21dumpAllOptionsInALineERN3WTF13StringBuilderE) +STUB("bmHcSnipTKw", _ZN7WebCore9HTMLNames5ddTagE) STUB("bmQaivctXo4", sceKernelGetSafemode) STUB("bmUeCG2cyMc", sceDeci4hDrfpWaitMountDone) +STUB("bmYoW--WCkc", + _ZNK3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform11getPlatformEv) +STUB( + "bmaxU2oOHeg", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemProperties9terminateEv) +STUB( + "bmgZ1zOS85I", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEEdeEv) +STUB( + "bmgxBG9HJQY", + _ZN12video_parser13cVideoMetaVWG18getMetadataBufSizeENS_12VP_META_TYPEENS_9VP_LANG_eENS_15VP_SEARCH_OPT_eEPj) +STUB("bmn8kprCF+U", _ZN3WTF14FileSystemImpl20deleteEmptyDirectoryERKNS_6StringE) +STUB("bmrwFovmYBE", + _ZN7WebCore11DOMRectListC2ERKN3WTF6VectorINS_9FloatQuadELm0ENS1_15CrashOnOverflowELm16EEE) +STUB( + "bmuLt-SVNm4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE8pushBackERKS8_) +STUB("bmxxDMMpp0U", fuse_process_cmd) +STUB("bmzRityxR44", GetPs4AppCategoryForTitleId) +STUB("bn+QzEH+yGU", _ZN3sce3Xml3Dom8DocumentaSERKS2_) +STUB("bn0hFyn7jXk", mono_aot_Mono_CSharpjit_got) +STUB("bn3sb2SwGk8", _ZTSSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE) STUB("bn3xT3DX1o8", sceApplicationSetControllerFocus) +STUB("bn4ZGjqiy+E", rgctx_fetch_trampoline_mrgctx_83_p) +STUB( + "bnDnA0cH97o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEptEv) +STUB("bnE1rABdiKU", _ZN7WebCore15FocusController24previousFocusableElementERNS_4NodeE) +STUB("bnFKtRT5qmo", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_17ActivityFeedStoryEEC1ERKS4_) +STUB( + "bnI6mhm8YlI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEEdeEv) +STUB( + "bnQHPn4fW0w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "bnUMbCNfS4A", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEEiRNS2_10LibContextEPT_m) +STUB( + "bnZ5C+DVV5U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEEC2ERKSA_) STUB("bnZxYgAFeA0", sceKernelGetSanitizerNewReplaceExternal) +STUB( + "bnaXuaLfX+Y", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable22setLastUpdatedDateTimeERK10SceRtcTick) +STUB( + "bnbIzj3RZ+A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEC2ERKS7_) +STUB("bngZpXX8UY0", _ZN7WebCore15JSFetchResponse6s_infoE) +STUB( + "bnhLenwXOqM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEeqERKS9_) +STUB( + "bnjcA85Tx8c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEC2Ev) +STUB("bnk+edDbqMk", _ZN3sce4Json4FreeEPv) +STUB( + "bnmS1aoUfaM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEC2EPS8_) +STUB( + "bnoSfKAw0q0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEppEi) +STUB( + "bnu37h+Cw5I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE8capacityEv) +STUB("bnvFqPkCGLQ", _ZN3JSC15encodeCodeBlockERNS_2VMERKNS_13SourceCodeKeyEPKNS_17UnlinkedCodeBlockE) +STUB("bnxLhuuXgKc", _ZN25MmsFileUpdaterFsOperation12closeTmpFileEv) +STUB( + "bo+5QvHyO+o", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEneERKS9_) +STUB("bo3bZsFcCok", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEC2ERS7_) +STUB( + "bo4IuCeX+8g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEaSERKS9_) +STUB( + "boGB5ytbfrw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEmmEv) +STUB( + "boIxHzm5qlc", + _ZN7WebCore11MemoryCache15addImageToCacheEON3WTF6RefPtrI14_cairo_surfaceNS1_13DumbPtrTraitsIS3_EEEERKNS_3URLERKNS1_6StringE) +STUB("boJpV9blHHo", + _ZN3sce7Toolkit2NP10ParametersC1EPFvRKNS1_5EventEPvES6_S6_mPNS1_19AllocImplementationE) +STUB("boNDB-GB1Jg", _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_17ParameterBaseImpl6KeySetEEneERKS6_) +STUB( + "boO7DKyXql4", + _ZN3sce2Np9CppWebApi7Matches2V119RequestInGameRoster8setTeamsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_16RequestMatchTeamEEEEE) +STUB( + "boOdHGSKQrY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEppEi) +STUB( + "boTEAMFP1L0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEEeqERKS7_) +STUB("boWydF6kfCg", _ZN15AbstractStorage11LocalFolderC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("bobGynGpRjk", + _ZN3sce2Np9CppWebApi7Matches2V121ResponseTeamStatistic23getTeamMemberStatisticsEv) +STUB("bod7t+wWn5M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEE11get_deleterEv) +STUB( + "bodDJebGne8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEED2Ev) +STUB("boeWX5nPlmA", jpeg_fdct_10x5) +STUB("bohNz-tz6oM", _ZN7WebCore5Range15extractContentsEv) STUB("bonnMiDoOZg", sceNetResolverConnectAbort) +STUB("booDoZAZEjc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEE7add_refEv) STUB("boohEhnXnIs", _sceNpHeapStrndupImpl) +STUB("boxNDjCoMA4", + _ZN15AbstractStorage18DailymotionStorage9SerializeESt10shared_ptrINS_7ContentEES1_INS_4ItemEE) +STUB("bp6Am2-0-4g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V116TaskAvailabilityEEaSERKS7_) +STUB("bp7AIamCzwo", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEEC2Ev) +STUB( + "bp7mumNJElc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEED2Ev) +STUB("bpD6xUk4QVI", ures_open) +STUB("bpDOoC0WwFg", _ZN9Inspector22InspectorDebuggerAgent17clearBreakDetailsEv) STUB("bpF7OjR81T4", sceNpManagerIntClearPlusMemberType) +STUB( + "bpFlvDrrf9Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEE7get_refEv) +STUB( + "bpGvSH6ss2M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEE7get_refEv) +STUB("bpHOgDvr8D0", _ZN3JSC8DebuggerD1Ev) +STUB("bpIIQq9cWgM", _ZL21_sceLibcDeleteNothrowPvRKSt9nothrow_t) +STUB( + "bpL8t2UcNj8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEEptEv) STUB("bpLyMf0oVwQ", sceAppInstUtilAppInstallPkg) +STUB( + "bpQobJi-H-M", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEiRNS2_10LibContextEPT_m) +STUB( + "bpSlpqwdT3o", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE11hasResponseEv) +STUB("bpXMsrvbIho", _ZNK3sce2Np9CppWebApi7Matches2V125ResponseCompetitiveResult16teamResultsIsSetEv) +STUB("bpYGc+mTIXI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfoC2ERS5_) +STUB( + "bpcct3spjK8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB("bpeco9REB3U", + _ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_26ActivityFeedCondensedStoryEE8max_sizeEv) +STUB("bpl5XVbRbOE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEE5resetEPS6_) STUB("bq6if4HJaow", sceAppInstUtilAppCancelableUnInstallByUser) +STUB("bqE8jDzPHrU", _ZN3sce2Np9CppWebApi15Personalization2V111ErrorEntity10unsetErrorEv) +STUB("bqO+QMNSTD8", _ZNK3sce2Np9CppWebApi13InGameCatalog2V515ContainerRating8getScoreEv) +STUB( + "bqR174x4uaE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("bqSfVVT2INY", _ZN7WebCore6Path2DC2Ev) +STUB("bqSwL-ZJId0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils16NetStateDetailedEED1Ev) +STUB("bqXMZaVnwk8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEC1ERS7_) +STUB("bqbkCHsef6o", WKPageConfigurationSetInitialCapitalizationEnabled) +STUB("bqcStLRGIXw", _Logpoly) +STUB("bqeYTznqCq0", _ZN7WebCore17CredentialStorage23clearSessionCredentialsEv) +STUB("bqfbyf-YJ3c", ShInitBuiltInResources) +STUB("bqsBFk7RoNA", mono_aot_Sce_Vsh_VoiceMsg_VoiceMsgWrappermethod_addresses) +STUB( + "bqupv5w1u0w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEED1Ev) +STUB("bqy8rwxYxns", _ZN15AbstractStorage15FacebookContent4ReadEPvlPl) +STUB("br1m2bKu-gs", _ZN7WebCore21DiagnosticLoggingKeys19invalidSessionIDKeyEv) +STUB("br2jlJMs1lQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEC1Ev) +STUB("br4b4PYn7bo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEEC2Ev) +STUB("br6GL-f3CQg", _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody8setLimitERKi) +STUB( + "brA5Lq1b1ac", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEEC2EPS6_PNS2_10LibContextE) +STUB("brGGJWsZauw", tcdrain) STUB("brHQxy45WoE", sceVisionManagerGetResultOfCalibrateTrackingLed) +STUB("brKZKO4XPxE", _ZN3sce2Np9CppWebApi6Common13ConstIteratorImEC2Ev) STUB("brRtwGBu4A8", sceSslGetFingerprint) +STUB("brUrttJp6MM", _ZN3sce2np9RefObjectC1Ev) STUB("brbRxzr7qyI", sceNpEntitlementAccessRequestServiceEntitlementInfoList) +STUB( + "brbwMzmgqkw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEC1Ev) +STUB( + "bre0fGrcaDA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEE3getEv) +STUB( + "brfbmsOFfkg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("brlwibLBP8w", _ZN7WebCore11MathMLNames10mactionTagE) +STUB( + "brm4ejSTRJA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEEC2Ev) +STUB( + "bryhX55GFOw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEppEv) +STUB( + "bsB9nsbzgy8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEppEv) +STUB("bsEEWyZyr0c", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils12Notification15UserStateChangeEEC2Ev) +STUB( + "bsIUK6AQYmM", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V331ValidationConstraintInfoFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_24ValidationConstraintInfoEEE) +STUB("bsOoC9Rh3JI", mono_set_crash_chaining) +STUB( + "bsRusEPj3YM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEE11get_deleterEv) +STUB("bsUsSiuZ18I", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10CategoriesEE5resetEv) +STUB( + "bsZqMTWvL34", + _ZN3sce2Np9CppWebApi14SessionManager2V141PostGameSessionsSearchResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_34PostGameSessionsSearchResponseBodyEEE) +STUB( + "bsaZkOY-VKo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEEC1ERKSA_) STUB("bsbHFI0bl5s", scePadSetExtensionReport) +STUB( + "bse-VqbYZLk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEC1Ev) +STUB( + "bseniDPMYpM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEppEi) +STUB( + "bsimZhQa+vY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEC2Ev) STUB("bsjWg59A7aE", sceNpCondSignalAll) +STUB("bsohl1ZrRXE", _ZSt10_GetloctxtIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEiRT0_S5_mPKT_) +STUB("bsrZzHMp-+Q", + _ZN3JSC19JSSymbolTableObject14deletePropertyEPNS_6JSCellEPNS_9ExecStateENS_12PropertyNameE) +STUB( + "bssumO89ItU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEC1EPS8_) +STUB( + "bsswf4W6mSQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE10setContextEPNS2_10LibContextE) +STUB( + "bsu0Pu+TSZ0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "bsubEEungN0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE5eraseENS2_8IteratorIS8_EERSB_) STUB("bsvV-oFZSiM", sceGnmSysClose) STUB("bswRLErFzy4", sceCesSJisUcsProfileSetSbcs) +STUB("bsxd9YWqXzE", _ZN7WebCore4Path6moveToERKNS_10FloatPointE) STUB("bt0POEUZddE", sceKernelGetSanitizerMallocReplace) STUB("bt3CTBKmGyI", scePthreadSetaffinity) STUB("bt3LHR9xjK4", sceAmprCommandBufferWriteAddressFromTimeCounter_04_00) +STUB("btDYsAHwpiE", _ZN3sce7Toolkit2NP7RequestC1Ev) +STUB("btE3Su9m0w4", + _ZNK3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse6toJsonERNS_4Json5ValueEb) +STUB( + "btI46XT1W7Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEC2ERS7_) STUB("btKQfNe1jBY", sceNpManagerIntGetGameTitleToken) +STUB( + "btTvZ2HpjWs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEaSERKS7_) +STUB("btUB+BUEOQQ", rgctx_fetch_trampoline_rgctx_51_p) +STUB( + "btUWeQlQQvA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "btWlFjxiAFw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEC1Ev) +STUB("btdsviuXUYw", + _ZN7WebCore9JSElement15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB("btebm1+QcnE", umutablecptrie_buildImmutable) +STUB("btecxUhKaBA", _ZN7WebCore11DisplayList11ClearShadowD0Ev) +STUB("btgimHAqS2Y", _ZN7WebCore23ApplicationCacheStorage14setMaximumSizeEl) +STUB( + "btj6+XVP8PQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "btkpZccT7dk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE3endEv) +STUB("btnAmZpBk+g", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEEaSERKS6_) +STUB( + "btnRkcsWhEo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE5beginEv) +STUB("btnj0ElIQBU", + _ZN7bmalloc29StaticPerProcessStorageTraitsINS_12IsoTLSLayoutEE7Storage8s_memoryE) +STUB( + "btsQ0FrblkY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEppEi) +STUB("btueF8F0fQE", _ZNSt14numeric_limitsIaE8digits10E) +STUB( + "btwLiTyd+Sg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "bu+FCNyD6mM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEC2Ev) +STUB("bu-Wdczcf3o", mono_btls_x509_store_ctx_get_error) +STUB("bu4dl8I0Now", AES_ctr128_encrypt) +STUB("bu9+ZoEt6qw", fuse_fs_unlink) STUB("buBHKGLpYr4", sceTsStopFileStreaming) +STUB( + "buCiCjadZLo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("buEw45ruyII", _ZN7WebCore9HTMLNames7mainTagE) +STUB( + "buFBRNzUaBw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE21intrusive_ptr_add_refEPS9_) +STUB("buJca5-CtuI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEED2Ev) +STUB("buKYcPiDeLc", Java_java_net_PlainDatagramSocketImpl_receive) +STUB( + "buM4xvyI--Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE7reserveEi) STUB("buMCiJftcfw", sceAvPlayerChangeStream) +STUB( + "buMmdpEwRuM", + _ZN3sce7Toolkit2NP2V26Trophy18registerTrophyPackERKNS3_7Request18RegisterTrophyPackEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB( + "buPDKiKeNY8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEC2Ev) +STUB("buPicZ6bG0s", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils16NetStateDetailedEE5resetEv) +STUB( + "buPj64INYz0", + _ZN3sce2Np9CppWebApi7Matches2V117LeaveMatchRequest10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_13RemovedPlayerEEEEE) +STUB("buQ+ohUwkso", mono_aot_Sce_Vsh_RemotePlayunwind_info) +STUB("buTAjf8FCb4", _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse19getCancellationTimeEv) STUB("buYbeLOGWmA", sceAppContentTemporaryDataMount2) +STUB("bub7IttNbmw", _ZNK7WebCore18RenderLayerBacking17displayListAsTextEj) +STUB("bublINOKkpY", _ZNK3sce2np7RingBuf11GetDataSizeEv) +STUB("budJurAYNHc", SSL_assignCertificateStore) +STUB( + "buqDQyl0lp8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEmmEi) +STUB("buqzMN7g-kk", _ZN3JSC7Symbols35replaceUsingStringSearchPrivateNameE) +STUB("buzJgnnOSMg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEEC1Ev) +STUB( + "bv6Ha8SexG4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEC2EPS8_) STUB("bvD+95Q6asU", sceKernelMemoryPoolGetBlockStats) +STUB( + "bvHFVK+JiX0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEEC2Ev) +STUB("bvJ207-8qBQ", _ZNK3sce2np7RingBuf6IsFullEv) +STUB( + "bvKujK-6Jjk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEEC1ERSA_) +STUB( + "bvQTztKqrzM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEEC1ERSA_) +STUB( + "bvRfebo45x4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("bvScWm0CpeM", _ULx86_64_local_resume) +STUB("bvdTDveVARg", _ZTVN3JSC8DebuggerE) +STUB( + "bvfjdByaA6Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE4sizeEv) +STUB("bvlh3xeKgr0", _ZN3sce7Toolkit2NP2V28Commerce7ProductC2Ev) +STUB( + "bvm9YWoJyok", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEmmEv) +STUB("bvrWxnkc-tI", _ZN3NTF13URLRequestJob6createEPNS_17URLRequestMessageEPNS_18URLRequestListenerE) +STUB( + "bvutfMriRiI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEEC2ERSA_) +STUB("bw7ZenlDEIE", mono_mlist_remove_item) +STUB("bw8U5nD0PlI", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEEmmEi) +STUB("bwD91LR4GWs", _ZN7WebCore4Page27invalidateStylesForAllLinksEv) +STUB( + "bwDCKZ3+6oY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSE_) STUB("bwFjS+bX9mA", sceUserServiceTerminate) +STUB( + "bwH-4j9Qg40", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEED2Ev) +STUB( + "bwJf-HgQss8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEC1Ev) +STUB( + "bwMITd80-Ss", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB( + "bwMQN98m+3E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEEC1EPS6_PNS2_10LibContextE) +STUB("bwThPa6WtDc", _ZN3WTF13printInternalERNS_11PrintStreamENS_10RawPointerE) +STUB("bwVJf3kat9c", _ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEED2Ev) +STUB("bwYSgo0Bkro", ForbidCopyrightProtectedContents) STUB("bwcOfqZLksI", sceVisionManagerRequestPadTracking) +STUB("bwd0PkfdVqg", _ZN7WebCore16LabelableElement6labelsEv) +STUB("bwdGfejef5g", _ZTVN7WebCore21BlobDataFileReferenceE) STUB("bwdom8N0GSM", sceAppInstUtilCheckAppSystemVer) +STUB("bwmJUMFdeno", _ZN3sce2Np9CppWebApi6Common6VectorImE7reserveEi) +STUB( + "bwnVr+oaio8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEdeEv) +STUB("bwtSD+AaHgU", _ZN7WebCore8SVGNames13v_hangingAttrE) +STUB("bwtbfShgkS4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEaSERS7_) +STUB( + "bwwIrD3OgBA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEC2Ev) +STUB("bwwspVgS4hQ", _ZN3sce2np4User7GetUserEiPS1_) +STUB( + "bx1M5FKm+AU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEC1EPS8_) +STUB( + "bx3xVMfabx4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEaSERKS9_) +STUB( + "bx4uoyjFhNU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE5clearEv) +STUB("bx6NyCGjkJI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEppEi) +STUB("bx6ZMTh-J-A", mono_method_get_object) +STUB("bxAfmsH5wS4", png_get_user_chunk_ptr) +STUB("bxE-8ZYDKy4", _ZN7WebCore11MathMLNames13selectionAttrE) +STUB("bxF3cc023-k", utext_clone) STUB("bxGoVxpdSPQ", sceAgcCbSetShRegisterRangeDirectGetSize) +STUB( + "bxJYfRjLQlc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE5beginEv) +STUB("bxKrHPbjaKc", jpeg_idct_16x8) +STUB("bxLH5WHgMBY", _ZNSt8ios_base4InitD2Ev) +STUB("bxLuTQ2Uv28", _ZN7WebCore5Image12supportsTypeERKN3WTF6StringE) +STUB("bxPXoA5kMAo", _ZN3sce7Toolkit2NP2V28Commerce7Request26SetPsStoreIconDisplayStateC2Ev) +STUB( + "bxTh6avmSbM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE21intrusive_ptr_sub_refEPS9_) +STUB("bxYl1EKp3Gk", _Z32sceGpuDebuggerRegisterShaderCodePKN3sce3Gnm16VsStageRegistersEjPKc) +STUB( + "bxcik8+c2h8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEppEv) +STUB( + "bxgeIYN4xow", + _ZNK3sce2Np9CppWebApi14SessionManager2V131ResponsePlayerSessionInvitation6toJsonERNS_4Json5ValueEb) +STUB("bxgy-tUd8YA", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed14PlayedWithFeedEE3getEv) +STUB( + "bxlFFyo0KI4", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) STUB("bxmwxo3mcBw", scePlayReadyReaderFreeOpaqueContent) +STUB( + "bxoXoXTmivs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEppEi) STUB("bxt+muwit0w", sceCompositorGetVideoAddress) +STUB("bxy6D6cHO9k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEEppEi) +STUB( + "bxypsGRCgIU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEED2Ev) +STUB("by7vCLgfftE", _ZN3JSC4Heap15extraMemorySizeEv) +STUB( + "by7veFCi-hs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEplEm) STUB("by9cbB7JGJE", sceNetCtlUnregisterCallbackIpcInt) +STUB("byAEaMm+GJg", _ZN3sce7Toolkit2NP2V210Tournament4Team5resetEv) +STUB( + "byEh5QWM52c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEE6assignEPSA_PFvSC_EPNS2_10LibContextE) +STUB("byKyda0vGCM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce8ProductsEED2Ev) +STUB("byPai8g0cxM", WKURLResponseCopyMIMEType) STUB("byUP0khjgLA", sceBgftServiceIntDownloadPauseTask) +STUB("byV+FWlAnB4", _ZTVN10__cxxabiv117__class_type_infoE) STUB("byXlqupd8cE", sceGnmDingDongForWorkload) +STUB("byXtgoPTLFI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEC1ERS7_) STUB("bygbKdHmjn4", sceNpScoreSetPlayerCharacterId) +STUB("byhTgIbVz8o", _ZN3sce7Toolkit2NP2V28Matching4DataaSERKS4_) STUB("byiceqcMvV0", sceUltConditionVariableSignalAll) +STUB( + "byktQMRYD9Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEC2ERS7_) +STUB( + "bypxNzB2CRM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEED1Ev) +STUB( + "bytZ-GaGYTQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEdeEv) +STUB("bythU72Nu8w", _ZN3sce2np12NpHttpClient7DestroyEv) +STUB("byxz6SR93HA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEED1Ev) +STUB("bz5MfOeWZw4", cairo_pattern_create_mesh) +STUB("bzEEfsZZIug", _ZNK3JSC17DebuggerCallFrame8sourceIDEv) +STUB("bzGg3d-Bwgg", _ZN7WebCore13JSXPathResult9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("bzH4e1XUDQ8", _ZN3sce7Toolkit2NP15AppSTLAllocatorIiEneERKS3_) +STUB( + "bzMe0GSBeV8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE3endEv) +STUB( + "bzO5j8pTXEw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEEC2Ev) STUB("bzQExy189ZI", _init_env) +STUB("bzQSQiUzfVY", _ZN3sce2Np9CppWebApi7Matches2V116JoinMatchRequestD1Ev) +STUB("bzUzzYotlwo", _ZN7WebCore9FrameTree7setNameERKN3WTF12AtomicStringE) +STUB("bzbQ5zQ2Y3g", fgetwc) +STUB( + "bzc0ibPkliE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEC1EPS6_PNS2_10LibContextE) STUB("bzf8a7LxtCQ", sceNpManagerIntLoginBind) +STUB("bzfSG690KP4", _ZN3sce7Toolkit2NP2V212EventsClient12EventDetailsaSERKS4_) +STUB( + "bzgWSS98IRE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE21intrusive_ptr_add_refEPS9_) +STUB("bzmM0dI80jM", _ZNSt14numeric_limitsIeE12max_exponentE) +STUB("bznVjTfYf9U", OCSP_RESPONSE_free) +STUB("bzqnq4lHafY", _ZN3sce2Np9CppWebApi10Activities2V114UserActivities14UserActivitiesD2Ev) +STUB("bzrMB2nZOOk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE3endEv) +STUB("bzxTZSnnB38", mono_class_from_name) +STUB("c++J1vy4dGc", _ZN8meta_gen14ImageRetriever19FinalizeFsOperationEv) +STUB("c+4r-T-tEIc", nearbyintf) +STUB( + "c+90X-eNCGM", + _ZN23sceMetadataReaderWriter13ParserManager17getParserInfoListERSt6vectorINS_10ParserInfoESaIS2_EE) +STUB("c+9g-vYGACo", _ZN7WebCore12EventHandler23handleMouseReleaseEventERKNS_18PlatformMouseEventE) +STUB("c+CkIXe0xf4", Java_java_io_ObjectInputStream_latestUserDefinedLoader) +STUB("c+EBCU1pN40", + _ZN3sce2Np9CppWebApi7Matches2V120ChildActivityFactory7destroyEPNS3_13ChildActivityE) +STUB("c+MBrlNW+0M", ures_getName_67) +STUB( + "c+MaUMtsoTU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEeqERKS9_) +STUB( + "c+OcEaZg2p0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE8copyFromERKS9_) +STUB( + "c+OqbZVzHTI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "c+PJkolqVgE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEE5resetEPS6_) +STUB("c+RbLGD2gE4", monoeg_g_get_user_name) +STUB( + "c+WtFNxrx-I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEC1Ev) +STUB("c+Y5l4iz+lE", _ZN7WebCore29PerspectiveTransformOperation5blendEPKNS_18TransformOperationEdb) +STUB("c+YCXKe0E34", _ZN9Inspector18InjectedScriptHost16clearAllWrappersEv) +STUB( + "c+Z9ej4Rb-c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEEC2Ev) STUB("c+aYh130SV0", sceNetBweStartInternetConnectionTestIpcInt) +STUB("c+iQ+GiUuC0", _ZNK7WebCore27TranslateTransformOperation1yERKNS_9FloatSizeE) +STUB( + "c+iTA4Yt+8Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEC1Ev) +STUB( + "c+ixZemlxM0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("c+psqZtgRgA", UI_OpenSSL) +STUB("c+s97m03y1s", delegate_invoke_impl_target_8_p) STUB("c+ssxRf1Si0", sceNpUtilNumChars) +STUB( + "c+wH3+WmRIA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("c-+2EXSCk2E", WKPreferencesGetWebAuthenticationEnabled) +STUB( + "c--TlXxAYpA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEEC2ERKS9_) +STUB( + "c-15NbgCdc4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEC1EPKS8_) +STUB("c-7GgGDc1dQ", _ZN12Mp4Retriever11loadFullBoxEv) +STUB( + "c-98xis7L+M", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi44ParameterToPatchGameSessionsSearchAttributes47setpatchGameSessionsSearchAttributesRequestBodyENS1_6Common12IntrusivePtrINS3_44PatchGameSessionsSearchAttributesRequestBodyEEE) +STUB("c-EfVOIbo8M", _ZTVSt11regex_error) +STUB("c-G7yBrXF34", mono_aot_System_ComponentModel_DataAnnotationsplt_end) +STUB( + "c-HyX3dVmmI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEED2Ev) +STUB("c-KeX46JxEw", _ZN3JSC22createOutOfMemoryErrorEPNS_9ExecStateE) +STUB( + "c-YYywTOx1c", + _ZN3sce2Np9CppWebApi14IdentityMapper2V349PsnWebError_error_validationConstraintInfoFactory7destroyEPNS3_42PsnWebError_error_validationConstraintInfoE) +STUB( + "c-a+EQMdXpo", + _ZN7WebCore21NetworkStorageSession46clearPageSpecificDataForResourceLoadStatisticsEN3WTF16ObjectIdentifierINS_18PageIdentifierTypeEEE) STUB("c-aFKhn74h0", sceSystemServiceReenableVoiceRecognition) STUB("c-bxj027czs", scePthreadCondattrSetclock) +STUB("c-dDdbRZbU8", _ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody9getOffsetEv) +STUB("c-ery-xf23E", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE8pushBackERKS6_) +STUB( + "c-fpDDDBjv4", + _ZN3sce2Np9CppWebApi11UserProfile2V132GetBasicPresencesResponseFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_13BasicPresenceEEEEEPNS9_INS3_25GetBasicPresencesResponseEEE) +STUB("c-gPnt4LSyg", _ZNK7WebCore11HTMLElement18canonicalInputModeEv) +STUB("c-iom5ingNk", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V115CompetitionTypeEEaSERKS7_) +STUB("c-jBFhrvm2g", _ZN7WebCore11MediaPlayer11rateChangedEv) +STUB( + "c-lHWCnJjrM", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUserC1Ev) +STUB("c-p4Wm6bD1Y", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_26ActivityFeedCondensedStoryEED1Ev) +STUB( + "c-s8chTSZoc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEC1Ev) +STUB("c-yCyS3Ya8I", _ZN3sce2np8JsonNullD1Ev) +STUB("c002A4zTOgA", FT_Stream_ReadShortLE) +STUB("c00bHjdQxuc", _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeDataC1Ev) STUB("c08SEHicDNU", sceMbusEventCreate_) +STUB( + "c0BfWXdpoo4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("c0DOxHbUSQU", _ZN7WebCore24CoordinatedGraphicsLayer19updatePlatformLayerEv) +STUB( + "c0JnIUbIaXk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEixEm) +STUB( + "c0NI7SV1DQQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("c0NsShFD7Nw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEE5resetEPS6_) +STUB("c0RHuW2CT-U", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEEC1Ev) +STUB("c0RJXr5hCkw", _ZN3JSC2VM28javaScriptCallFrameSpaceSlowEv) +STUB( + "c0V+1kq++XA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEneERKS9_) +STUB("c0XU6unk8mM", GCC_except_table166) +STUB("c0XaWDe2hr4", mono_aot_Sce_Vsh_CloudClientunbox_trampoline_addresses) +STUB("c0evlt+VfN0", _ZN12video_parser13cVideoMetaMP4D2Ev) +STUB( + "c0jHkXhmV04", + _ZN3sce2Np9CppWebApi14SessionManager2V140PostGameSessionsTouchResponseBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_33PostGameSessionsTouchResponseBodyEEE) +STUB("c0qKSZ1zflA", _ZN7WebCore17FrameLoaderClient31dispatchDidReachLayoutMilestoneEj) +STUB("c0tjMmXmTWQ", _ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_13WhoLikedStoryEE8max_sizeEv) +STUB( + "c0vj13tC5b0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEED2Ev) +STUB( + "c0x4NJGGToE", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEEiRNS2_21DownStreamTransactionIT_EE) +STUB("c0zaE4U6JL0", __cxx_global_var_init .34) STUB("c10oqsj0YKM", sceSlimglServerRegisterShaderFile) +STUB("c11C-fn9vZg", _ZNK7WebCore17HTMLOptionElement8selectedEv) +STUB("c19a+hl-ZME", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEC2ERKS7_) +STUB("c1ApXgsGFoM", mono_aot_Sce_Vsh_Lxunwind_info) +STUB( + "c1DGpxnVYVo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEaSERKS9_) +STUB( + "c1Nx8NhCE5U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEaSERS7_) STUB("c1SCTsycK7k", sceCesUtf16beToBig5) +STUB("c1T+xl90CI8", _ZN3sce3Xml3Sax6Parser9terminateEv) +STUB("c1Ti4gpyQTE", monoeg_g_hash_table_foreach) +STUB( + "c1TnmDp3g9Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEmmEv) +STUB("c1XbH-OQgLg", _ZN12video_parser13cVideoMetaVWG10initializeEv) +STUB("c1YwVfY2O-4", _ZN3sce2np13JsonDocParser5ParseEPNS0_6HandleEPNS0_12StreamReaderE) +STUB( + "c1ZsQFGBWTE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "c1Zvb85axa4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEE7add_refEv) +STUB("c1heh50bF3Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEEC1EPS6_) +STUB( + "c1iDSzYTYJI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEneERKS9_) +STUB("c1nbr8oSWlg", FT_Glyph_To_Bitmap) STUB("c1pKoztonB8", sceNpWebApiIntCreateCtxIndExtdPushEventFilter) +STUB("c1q27JaWyHc", ucnv_getMinCharSize) +STUB("c2-jXzNCn5M", _ZThn64_NK7WebCore9FrameView17useDarkAppearanceEv) +STUB("c22-2daf7Go", _ZN8meta_gen11MsvPromoter15convertLangTypeE6Locale) +STUB("c27lOSHxPA4", _ZNSt14_Num_ldbl_base9is_moduloE) +STUB("c29hhxlHcfk", _ZN7WebCore16MIMETypeRegistry23supportedImageMIMETypesEv) +STUB("c29rFjyGgMY", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities13ErrorResponse8fromJsonERKNS_4Json5ValueE) +STUB("c2EWJMoHXWQ", ucnv_getMaxCharSize_67) +STUB("c2EZZ1IdQAE", _ZN7WebCore10FileHandleC2EOS0_) +STUB("c2I+DjJfw4g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE6resizeEj) +STUB( + "c2IIF5EjCIk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("c2a0K7RJLGc", _ZN3sce7Toolkit2NP2V27NpUtils7Request22GetOnlineIdByAccountIdD1Ev) +STUB("c2bA4ND3o0U", _ZN3sce2np9JsonValue9SetObjectEPKNS0_10JsonObjectE) +STUB( + "c2k4ibLGvt4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEEC1Ev) +STUB( + "c2vLvl+1-Xk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEppEi) +STUB( + "c2ykLKjLxGA", + _ZN9Inspector26InspectorBackendDispatcher11initializedElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "c2zZd-Ger6k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEC1EPKS8_) +STUB("c33GAGjd7Is", _ZTISt17bad_function_call) STUB("c34CuwRZZz8", ScePsmWapiCryptoPolicyCallback) +STUB( + "c36uAYYmMPQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEC2ERKS7_) +STUB("c3C+enSh+BI", mono_profiler_set_current_time_func) +STUB("c3CYInfoXNY", mono_aot_Sce_Vsh_Np_Commonjit_code_end) +STUB("c3GNV3aOkgQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE7reserveEi) +STUB( + "c3GtMIue0b4", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData10initializeEPNS1_6Common10LibContextEi) +STUB("c3HIMhGMNwE", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification11RefreshRoomEED1Ev) +STUB( + "c3J9K9XbQqE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEED2Ev) +STUB("c3KjgSd2mDw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEdeEv) +STUB("c3Li69VnhPM", _ZN7WebCore8SVGNames20specularExponentAttrE) +STUB("c3NQY-oh4Fw", _ZL21_delete_array_nothrow) STUB("c3T1XEYr9MI", sceNpPush2WaitCallback) +STUB("c3ZR7N+8dxI", u_strncat_67) +STUB( + "c3baOHhP8vY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEmmEi) +STUB( + "c3k9tL+T2a8", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionFactory6createEPNS1_6Common10LibContextEPKcNS5_12IntrusivePtrINS3_31ResponseGameSessionMemberPlayerEEEPNSA_INS3_11GameSessionEEE) +STUB("c3rtINcNDaw", + _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession14setCustomData2EPKvm) +STUB( + "c3rzTgdQWqg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEmmEi) +STUB("c3uq1x7S3n0", _ZNK3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse11getOnlineIdEv) +STUB( + "c4-DNgm621c", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE5emptyEv) +STUB("c41UEHVtiEA", _Stod) +STUB("c46rAWSziWE", _ZN3sce7Toolkit2NP2V26Trophy16UnlockedTrophies8deepCopyERKS4_) +STUB( + "c47B4MLRrxs", + _ZN3sce7Toolkit2NP2V26Friend26displayFriendRequestDialogERKNS3_7Request26DisplayFriendRequestDialogEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("c4CrIGb7sfA", JVM_GetInheritedAccessControlContext) +STUB( + "c4IMUMWci6s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEE11release_refEv) +STUB( + "c4MN+5iqzDc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEC1EPS6_PNS2_10LibContextE) +STUB("c4Qh37a9A7o", _ZN6WebKit12ChildProcessD2Ev) +STUB( + "c4Y-gfC80cw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEED2Ev) +STUB("c4Z7w8v60ag", + _ZN15AbstractStorage15FacebookContentC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) +STUB("c4ctz7qKB-g", _ZN7WebCore14HTMLMapElement5areasEv) +STUB( + "c4de5CBVtFg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEC1ERS7_) +STUB("c4e-vuKRjn0", WKPreferencesSetWebAuthenticationEnabled) STUB("c4mSi64bXUw", sceHmdInternalSetForcedCrash) +STUB("c4n8cDBXLZ0", + _ZN9Inspector20InspectorTargetAgent29willDestroyFrontendAndBackendENS_16DisconnectReasonE) +STUB("c4qOBt1+nO8", WKPageGetMediaCaptureEnabled) +STUB( + "c4qgCc7rKFk", + _ZNK3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayer6toJsonERNS_4Json5ValueEb) +STUB("c4x6o+swlXk", _ZN3sce7Toolkit2NP2V28Matching12RoomPingTimeD1Ev) +STUB("c4xBw-3NUKA", mono_aot_Sce_Vsh_MorpheusUpdWrapperunbox_trampolines_end) +STUB( + "c5+gUU6eCfw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEE11get_deleterEv) +STUB("c5-Jw-LTekM", _ZTIf) +STUB("c53FpjaR+Lo", _ZN3sce2Np9CppWebApi7Matches2V121ResponsePlayerResults10unsetScoreEv) +STUB("c54cpAkUsgA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEEneERKS7_) +STUB("c59ADTvHxOg", _ZNK3sce7Toolkit2NP15AppSTLAllocatorI16SceNpTusVariableE8max_sizeEv) +STUB("c5B2XSDTekA", _ZN9Inspector8Protocol3CSS11CSSProperty5ValueE) STUB("c5D63Y35GjI", sceAmprAmmMeasureAmmCommandSizeModifyMtypeProtectWithGpuMaskId) +STUB( + "c5M7RroW70g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEC1EPKS8_) +STUB( + "c5OI5G1zW+Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEC1Ev) +STUB( + "c5PWhiY69vc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE4sizeEv) +STUB("c5VgNEP3fIw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEED1Ev) +STUB("c5ZDCRqQ0UM", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_16EventInformationEED1Ev) +STUB("c5racR7LqJo", _LMBCSData4_67) +STUB("c5suuJOfAEI", _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error10setMessageEPKc) +STUB("c5xBxHitULA", _ZN3JSC23SimpleMarkingConstraintD1Ev) +STUB( + "c5xh8oCFvVg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB("c5xyR+kt8mo", AacsSelectKeyFrom) +STUB( + "c5y1du6YZcw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEED1Ev) +STUB("c5zBiTJEZH8", _ZN3WTF7RunLoop3runEv) +STUB("c6+gAL4LoV0", _ZN3sce7Toolkit2NP2V27Session11InvitationsC1ERKS4_) +STUB( + "c61W3gCtk9o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE6resizeEj) +STUB("c6583I4pNzc", _ZN3JSC23MacroAssemblerX86Common15s_avxCheckStateE) +STUB("c68qOKD40KY", mono_aot_System_Web_Servicesjit_code_start) STUB("c6Fp9M1EXXc", sceCameraGetSharpness) +STUB("c6G6WNs71mw", uprv_decNumberInvert_67) +STUB( + "c6GFcpwNUuc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEptEv) +STUB( + "c6GqebkuqYs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "c6JUKqhjXHI", + _ZN3sce7Toolkit2NP2V28Commerce27displayCategoryBrowseDialogERKNS3_7Request27DisplayCategoryBrowseDialogEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB( + "c6K0pwo3+40", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB( + "c6KcYA2AEd0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEC1Ev) +STUB("c6Lyc6xOp4o", _ZNKSt7codecvtIDic9_MbstatetE10do_unshiftERS0_PcS3_RS3_) +STUB( + "c6M1IXibAGI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEE11release_refEv) +STUB("c6OcNEPqsOE", sqlite3_column_value) +STUB("c6Qa0P3XKYQ", _LPoly) STUB("c6U0zoB6FxM", scePktMgrSendDeciPacket) +STUB("c6VuuMBfEGQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEE7get_refEv) STUB("c6aYoa47YgI", sceNpTusSetMultiSlotVariable) +STUB("c6cFvx1M-iE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEC2ERKS7_) +STUB("c6d0lcEF-j4", _ZN7WebCore17HTMLAnchorElement4textEv) +STUB("c6eD2eDESGk", res_getStringNoTrace) +STUB("c6in41qhmJ0", _ZN15AbstractStorage15FacebookStorage14GetStorageSizeEPlS1_S1_) STUB("c6kw+A6XbvY", sceVideoCoreGenerateThumbnail) +STUB("c6qJR2WBk3Q", Java_java_util_zip_Inflater_reset) +STUB( + "c6uI2R5WqD8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE8sendDataEPKvm) +STUB("c6uPCbW4+lQ", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence8PresenceEED1Ev) +STUB( + "c6x8lD0qwdw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEE7get_refEv) +STUB( + "c6yxvCZedLI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEEC2Ev) +STUB( + "c6zV4CepPoo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEEaSERSA_) +STUB("c7+gaUTePD8", _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_17ParameterBaseImpl6KeySetEEeqERKS6_) +STUB( + "c7-mJUbi-DE", + _ZN3sce2Np9CppWebApi11Matchmaking2V117UserTicketFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_10UserTicketEEE) +STUB("c70Dvb+wW+Y", _ZN7WebCore19HTMLTextAreaElement7setRowsEj) +STUB("c72L8ORqV60", _ZNK15AbstractStorage12LocalStorage13GetCapabilityEv) +STUB( + "c76+iggRoW0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEmmEi) +STUB( + "c78-JwL4Qzc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEE11get_deleterEv) +STUB( + "c79klPvwO3E", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEeqERKS9_) STUB("c7A0diG7AIU", sceNetConfigDelDefaultRouteDev) +STUB( + "c7ALUnFzxlY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEED2Ev) +STUB("c7BUSLeGXCQ", rgctx_fetch_trampoline_mrgctx_56_p) +STUB( + "c7FlPXOg8UA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEE7add_refEv) +STUB( + "c7Hq-8Eed9c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEED2Ev) +STUB( + "c7Vyu6dQOdU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEE3getEv) +STUB( + "c7Y8eOvv4eY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEC2EPS6_PFvS8_EPNS2_10LibContextE) STUB("c7YjLnWxw-4", sceFsMountSaveData) +STUB("c7ZnT7V1B98", rmdir) +STUB("c7b+WzTY6Co", WKPreferencesSetShouldSuppressKeyboardInputDuringProvisionalNavigation) +STUB( + "c7d-skrN1R0", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectatorC2ERS5_) +STUB( + "c7d3HGB2-5M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE7reserveEi) +STUB("c7flAeOUOrI", _ZN3sce7Toolkit2NP2V28Matching7Request12SearchClauseD2Ev) +STUB( + "c7fvY8tI3zM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE21intrusive_ptr_add_refEPS9_) +STUB("c7gIc2aHtZ8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariableD2Ev) +STUB("c7huastYi-8", _ZN3sce7Toolkit2NP2V210Tournament7Request15EventTypeFilterD1Ev) +STUB( + "c7j7R9MNJiI", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) STUB("c7mVozxJkPU", sceAudioOutGetSimulatedBusUsableStatusByBusType) STUB("c7noapHDHWU", sceKernelEventLogInit) +STUB( + "c7oTb9csuVg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("c7qsIZyhC9I", SwCtrlSinkStreamGetReadPointer) +STUB("c7w7pgkXH4Q", _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchStatusRequestD2Ev) +STUB( + "c7yEI8DGlnM", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_23NpSessionInvitationInfoENS1_15AppSTLAllocatorIS5_EEEED2Ev) +STUB("c7yVPcGcnHg", s00) +STUB("c7zvB-5VVLM", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer7hassortEv) STUB("c8-4aC9opYE", _sceNpAllocatorStrdup) +STUB( + "c8-ASwJWoME", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEC2Ev) STUB("c812oYs7Vsc", sceHmd2Initialize) +STUB( + "c81UDDEfGuw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("c81tKzMsBd4", rgctx_fetch_trampoline_rgctx_24_p) +STUB("c83NQQnFTjc", + Java_java_security_AccessController_doPrivileged__Ljava_security_PrivilegedAction_2) +STUB("c83tLI+C9lg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEE11release_refEv) +STUB("c869dTyTgeY", _ZN7WebCore6JSNode4infoEv) STUB("c88Yy54Mx0w", sceSaveDataSaveIcon) +STUB( + "c8Agk5tncfc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEmmEi) +STUB( + "c8CsJXo9F00", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi21getOnlineId2AccountIdEiRKNS4_32ParameterToGetOnlineId2AccountIdERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_11OnlineIdMapEEENSA_INS4_36GetOnlineId2AccountIdResponseHeadersEEEEE) STUB("c8D9qIjo8EY", sceHttp2DeleteRequest) +STUB( + "c8HHiyfzils", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEEC2EPS9_PNS2_10LibContextE) STUB("c8IRpl4L74I", sceNetBandwidthControlGetDefaultParam) STUB("c8J3uxxQTl4", sceKernelSetBootReqNotify) +STUB("c8NfvVhfcR0", _ZN7WebCore28DisplayRefreshMonitorManager17displayWasUpdatedEv) +STUB("c8QrOAdar0E", _ZN7WebCore11DisplayList11FillEllipseD0Ev) +STUB("c8RVn1N-Agc", _ZN15AbstractStorage12LocalServiceC1Ev) +STUB("c8aRMVPxLyc", t1cid_driver_class) +STUB("c8kZeFIQaMU", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10getString1Ev) +STUB("c8n7HQCsv3E", _ZNK7WebCore16HTMLInputElement18shouldAutocompleteEv) +STUB( + "c8oj6zDkff4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEmmEi) STUB("c8pxB0Z4QNY", sceHttpCacheDeleteRequest) +STUB( + "c8qFbYmM4W8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEE11release_refEv) +STUB("c8soZKB7iqg", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE4sizeEv) +STUB( + "c8ynhuZiYP4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("c9+gGRj5iE0", delegate_virtual_invoke_22) +STUB("c95MlCnBsWU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEC1ERKS7_) +STUB("c97UzO1yS5w", mono_aot_System_Runtime_Extensionsplt) +STUB("c9C9AQ6BuYI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEC2Ev) +STUB( + "c9IDKpp5t1E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEixEm) +STUB("c9QmaJcIvVk", udata_getHeaderSize_67) +STUB("c9S0tXDhMBQ", _Xp_ldexpx) STUB("c9U2pk4Ao9w", sceUserServiceSetMicLevel) +STUB( + "c9VNr6l5SvU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEEaSERS9_) +STUB("c9WG9V8JpPg", _ZN3sce16CommonDialogUtil6Server9setFinishEv) +STUB( + "c9Wbcte973w", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEcvbEv) STUB("c9XZGDF1OcM", sceCamera2GetExposureGain) +STUB("c9XbEhLwkjw", _ZNK7WebCore16VisibleSelection17toNormalizedRangeEv) +STUB("c9XutMEn+58", il2cpp_free_captured_memory_snapshot) +STUB("c9d+u6qY1Vw", + _ZN3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponse19unsetPreviousOffsetEv) +STUB("c9gkeiGoRPU", _ZN7WebCore20endOfEditableContentERKNS_15VisiblePositionE) +STUB("c9kMGltLpaQ", _ZN3sce7Toolkit2NP2V24Core7Request14RemoveCallbackD1Ev) +STUB("c9kgWEAwHVQ", fuse_session_loop) +STUB("c9qDSphuzgY", u_init_67) +STUB( + "c9teAQ2+63I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("c9v8NHVu0NU", _ZN7WebCore10FileHandleC2ERKN3WTF6StringENS1_14FileSystemImpl12FileOpenModeE) +STUB( + "c9vmPtpMBlI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEC1EPKS8_) +STUB( + "c9xuUzQwqzo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEE7get_refEv) +STUB("c9z4V4hatn4", GCC_except_table32) +STUB("cA0C1DZFNu0", GCC_except_table8) +STUB( + "cA0TuSL8wTA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEEaSERSA_) +STUB("cADXiYWCzwk", Java_java_awt_GnmImage_nativeGetHeight) +STUB("cALfJh14EPs", _ZN9Inspector15ScriptArgumentsD1Ev) +STUB( + "cASXLdlGNXg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE5beginEv) +STUB("cAXa6u8hZHI", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112GroupingTypeEEC2Ev) +STUB( + "cAZjEQj9-SU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("cAaLgTefBKE", _ZN7WebCore37CrossOriginAccessControlCheckDisablerD2Ev) +STUB("cAckbuvTh9s", + _ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionMemberPlayer10getPlayersEv) +STUB("cAeFZE72SXU", _ZN3sce2npleERKNS0_4TimeERK10SceRtcTick) +STUB("cAiFlMfSYv4", _ZN3sce2Np9CppWebApi6Common6VectorIlE6resizeEj) +STUB( + "cAjIOBtChMY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEE3getEv) +STUB( + "cAkiNBzHts8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEEaSERSA_) +STUB( + "cAl8B8rvVoY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEmmEv) STUB("cAnT0Rw-IwU", sceMouseClose) +STUB( + "cAvgnBYD5ik", + _ZN7WebCore6Editor22writeImageToPasteboardERNS_10PasteboardERNS_7ElementERKNS_3URLERKN3WTF6StringE) +STUB("cAxbLiUQcu0", + _ZN7WebCore21DisplayRefreshMonitor46handleDisplayRefreshedNotificationOnMainThreadEPv) +STUB( + "cB4ipbeFvEg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEE5resetEPS9_) STUB("cB4rMoKU4UI", pthread_setname_np) +STUB("cB96xbSIETQ", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersC2ERS5_) STUB("cBGTk8S92XM", sceKernelDeleteWriteEvent) +STUB("cBNGAG1DkXc", CMAC_CTX_free) +STUB( + "cBP0ZiyLovQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEneERKS9_) +STUB("cBSM-YB7JVY", fcloseall) +STUB("cBSNCT7dkps", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEC2Ev) +STUB("cBVmkkm+HiU", __asan_exp_load16) +STUB("cBY2GBAKlkY", _ZN7WebCore22EmptyFrameLoaderClient20frameLoaderDestroyedEv) +STUB("cBbNHiLQ1DE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEixEm) +STUB("cBcSEJyBSng", _ZN3sce7Toolkit2NP2V28Matching7Request15GetRoomPingTimeC1Ev) +STUB("cBckE9-Thps", _ZN3JSC9Structure21addPropertyTransitionERNS_2VMEPS0_NS_12PropertyNameEjRi) +STUB("cBfQR89EqS8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEaSERS7_) STUB("cBgv9pnmunI", sceUserServiceSetUserStatus) STUB("cBl8O2bQwos", sceVideoCoreInterfaceFlushVideoOutBuffer) +STUB( + "cBni+xogxl8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEEC1ERSA_) STUB("cBp0Ad-24LA", sceKernelProtectDirectMemoryForPID) +STUB( + "cBq5nCCpARc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE13getLibContextEv) +STUB("cBrINQKezM8", ucal_openTimeZones_59) +STUB("cBsqBZU3Ls4", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOfferaSERS5_) +STUB( + "cBzNNtt2-GU", + _ZN3sce7Toolkit2NP2V23TUS10deleteDataERKNS3_7Request10DeleteDataEPNS2_4Core8ResponseINS8_5EmptyEEE) STUB("cBzXEdzVzvs", sceNpTrophySystemCreateHandle) +STUB( + "cC+hPltOYnk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEC1EPS8_) +STUB( + "cC15lQACT2I", + _ZN7WebCore9JSElementC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_7ElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB("cC1Dnsl7yvQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V115SearchAttributeEEppEi) +STUB( + "cC6fxv-XLEM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEEC1Ev) +STUB("cC8Or4zySu0", _ZN3sce2np9JsonValue9GetNumberEv) +STUB("cC9KrTAFBuk", _ZNK7WebCore9FrameView26clientToLayoutViewportRectENS_9FloatRectE) +STUB( + "cCDdFAbZR5k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEmmEi) +STUB("cCJNCoH0AOY", _ZN3JSC12HeapAnalyzerC2Ev) +STUB("cCJaN12U2xc", + _ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession16searchIndexIsSetEv) +STUB("cCMDYO9tVWc", GetLibHttpCtxId) +STUB("cCOiMkTq3Wg", + _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets17hasplatformFilterEv) +STUB( + "cCVeZele9Ok", + _ZN3sce2Np9CppWebApi7Matches2V114SubtaskFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_7SubtaskEEE) +STUB("cCX7-SQY5KY", _ZN3JSC13JSMapIterator6s_infoE) +STUB( + "cCXFCra3Ea8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEC2Ev) +STUB("cCXMypoz4Vs", _ZNSt12out_of_rangeD2Ev) +STUB("cCXjU72Z0Ow", _Sin) +STUB("cCYw6bK4Hzk", uregex_regionStart64_67) +STUB( + "cCeKXqjYnN0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE5beginEv) +STUB( + "cCeyZwrD4yY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEEC1ERKSA_) +STUB( + "cCgxAW9aHYs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEEC1ERKS9_) STUB("cCheyCbF7qw", sceRemoteplayClearConnectHistory) +STUB("cCkJGMhMw5c", _ZN4Manx3Ssl10SslContextC1Ev) STUB("cCobQFZjwP0", sceFiosStatisticsReset) STUB("cCod+B3EdhI", sceLncUtilTerminate) STUB("cCuAnD2NrwU", sceCesRefersUcsProfileIso8859_2) +STUB("cCuvfGlUzqg", _ZN3sce2np14JsonNumberImpl3SetEj) +STUB( + "cCxEdsMyJU4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB("cD6y6-gGmv4", _ZN3JSC27finalizeStatsAtEndOfTestingEv) +STUB("cD8Sp--nfos", mono_aot_Sce_Vsh_AppDbWrapperjit_got) +STUB("cDA-SGUYdVI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEEC1EPNS2_10LibContextE) +STUB( + "cDEMFfAMui8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC1ERSA_) +STUB( + "cDEUK94Pz-c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEE7get_refEv) +STUB("cDGcDtqvrKM", + _ZN3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectator12setAccountIdEPKc) +STUB("cDHRgSXYdqA", _ZNSt9_Num_base10has_denormE) +STUB( + "cDPANlTEE50", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) STUB("cDPbXydvmc8", sceBgftServiceDownloadFindActivePatchTask) +STUB("cDW233RAwWo", sem_destroy) +STUB("cDXFX8KLcZQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEED2Ev) +STUB("cDYZJxwmuaA", rgctx_fetch_trampoline_rgctx_13) +STUB( + "cDZOp6qyvqQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEE7add_refEv) +STUB( + "cDiyAbdCzuQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "cDkYkwDN-Mg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "cDkrRzrl6vI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "cDlYAxb4rAE", + _ZN3JSC23decodeFunctionCodeBlockERNS_7DecoderEiRNS_12WriteBarrierINS_25UnlinkedFunctionCodeBlockEN3WTF13DumbPtrTraitsIS3_EEEEPKNS_6JSCellE) +STUB("cDm890W5EK8", _ZN9Inspector15RemoteInspector29nextAvailableTargetIdentifierEv) +STUB("cDmWRPRAsJg", monoeg_g_direct_hash) +STUB( + "cDmxmQB5JI8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEmmEv) +STUB("cDpoSmpISFo", _ZN7WebCore8Document11createEventERKN3WTF6StringE) +STUB( + "cDvOWZaIt4Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEdeEv) +STUB("cDwG3kieQ6s", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE5beginEv) +STUB( + "cE+XSqC6Sz4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEEC1ERSA_) +STUB("cE1NVPNw8Yc", unorm2_openFiltered) +STUB("cE1wkQgdb78", _ZN3JSC7Symbols14getPrivateNameE) +STUB("cE4qKBwg0fo", s13) STUB("cE5Msy11WhU", sceCompanionUtilGetEvent) STUB("cE7wIsqXdZ8", sceNpAuthAbortRequest) STUB("cE99PJR6b8w", sceHmdInternalDfuCheckPartialUpdateAvailable) +STUB("cE9a43GA25U", _ZN3sce7Toolkit2NP2V27NpUtils12Notification15UserStateChangeaSERKS5_) +STUB("cE9rGwgKhic", _ZN3WTF17StringPrintStream26toStringWithLatin1FallbackEv) +STUB("cEDXATPf1ZE", + _ZN7WebCore15GraphicsContext28setImageInterpolationQualityENS_20InterpolationQualityE) +STUB("cEGwE8ZjJlw", _ZNK3WTF10StringView4utf8ENS_14ConversionModeE) +STUB("cEHS9z3rILI", _ZN3sce7Toolkit2NP2V24Core19JsonMemoryPoolStatsD2Ev) +STUB( + "cEJDJkmnW0I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEC2EPNS2_10LibContextE) STUB("cEMX1VcPpQ8", sceNetShowRoute) +STUB( + "cEOPb0tXNrk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEppEv) +STUB( + "cERaRlbHAqw", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser12setaccountIdEPKc) +STUB("cEXl2g+fHBA", _ZN3sce7Toolkit2NP2V212EventsClient7Request9GetEventsD2Ev) +STUB( + "cEa7R2wJqgk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "cEa9lw44esk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEdeEv) +STUB("cEcdsDQcKXU", _ZN9Inspector31ConsoleBackendDispatcherHandlerD0Ev) +STUB( + "cEil8GoSNPk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "cEjkMKIfsZg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEE5resetEPS6_) +STUB( + "cEx8AI3KRjE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("cEyJk+5DR7g", _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse18getMatchStatisticsEv) +STUB( + "cF1wIGmWNjI", + _ZN3sce2Np9CppWebApi11Matchmaking2V128GetTicketResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_21GetTicketResponseBodyEEE) +STUB( + "cF7F0VceNVY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEcvbEv) STUB("cF88qFhsp-Y", sceNpIpcCreateRequest) STUB("cFCp0NX8wf0", sceGnmSetVgtControl) +STUB( + "cFE-bw5AV2s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEC1EPS6_PNS2_10LibContextE) +STUB("cFLyLAk-SmM", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15PlayedWithStoryEEC2ERKS4_) +STUB( + "cFMfAx574rg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEE11release_refEv) +STUB("cFOaAP9V4YE", _ZNK9Inspector14InjectedScript14findObjectByIdERKN3WTF6StringE) +STUB("cFPSQe7KGBo", _ZN7WebCore20LegacySchemeRegistry27shouldTreatURLSchemeAsLocalERKN3WTF6StringE) +STUB( + "cFQIBrLyTNw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE21intrusive_ptr_add_refEPS9_) +STUB("cFSvGpQqRNs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEE5resetEPS6_) STUB("cFUQRjzKDvI", sceM4aacEncInitialize) +STUB("cFWPsSkrbYc", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request11GetWhoLiked13MAX_PAGE_SIZEE) STUB("cFazmnXpJOE", sceAgcAcbEventWrite) +STUB( + "cFe2efwi9HE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "cFfDfSNwBTY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE5emptyEv) +STUB( + "cFi45DeAMFQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE8pushBackERKS8_) +STUB( + "cFi5bW1xv5A", + _ZN7WebCore15GraphicsContextC1ERKN3WTF8FunctionIFSt10unique_ptrINS_19GraphicsContextImplESt14default_deleteIS4_EERS0_EEE) +STUB("cFonhkV3dB4", _ZN7WebCore11DisplayList8RecorderD1Ev) +STUB("cFp6N5IkNHA", _ZN3JSC2VM21float32ArraySpaceSlowEv) STUB("cFrUvCaU5KE", sceSystemServiceUsbStorageGetdentsOpen) +STUB("cFsD9R4iY50", _Thrd_exit) +STUB( + "cFsWvjIGSME", + _ZN7WebCore18TextureMapperLayer31paintSelfAndChildrenWithReplicaERKNS_25TextureMapperPaintOptionsE) +STUB( + "cG1IrGY+b9A", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB( + "cG1KiWbsc5w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEEC1Ev) +STUB("cG1VE2HMl6c", _ZN3sce4Json6StringD1Ev) +STUB("cG2OXrkSQMQ", _ZNK3sce2Np9CppWebApi11UserProfile2V16Avatar9sizeIsSetEv) STUB("cG3t15OK4Ow", sceKernelAddFileEvent) +STUB( + "cG5hQhjFGog", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERx) +STUB("cG7spfNJ9o0", _ZN7WebCore17JSDOMGlobalObject12constructorsERKN3WTF14AbstractLockerE) +STUB( + "cGA5YiyttmA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEneERKS9_) +STUB( + "cGDhAcXyqP0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "cGLPwkXw47Y", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions9hasfieldsEv) +STUB("cGNyPw9-8h8", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody19npServiceLabelIsSetEv) +STUB( + "cGPDQtb6okE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEppEi) +STUB("cGSqbmobdJA", _ZN3JSC19HeapSnapshotBuilder10appendEdgeEPNS_6JSCellES2_) +STUB( + "cGUFMYxFjHE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEEdeEv) +STUB("cGZgcrq-L9A", _ZN3sce3Xml3Dom15DocumentBuilder10initializeEPKNS0_11InitializerE) +STUB("cGa7C2V0mG8", _ZN7WebCore8Document17createAttributeNSERKN3WTF10AtomStringERKNS1_6StringEb) +STUB("cGd91oqPS9U", mono_shared_ptr_array_free) STUB("cGjO3wM3V28", sceSaveDataLoadIcon) +STUB( + "cGkV5cprP60", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEED1Ev) +STUB("cGlcT4rj5I8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEE11get_deleterEv) +STUB("cGqWgi2Q5DE", + _ZNK3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V16Rating6toJsonERNS_4Json5ValueEb) +STUB( + "cGt0ibdrCLE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEEaSERSA_) +STUB( + "cGvew2KwBS0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEED1Ev) STUB("cGvpAO63abg", sceUserServiceSetNpDateOfBirth) +STUB("cGwSgyNnx+w", Java_java_io_ObjectInputStream_setPrimitiveFieldValues) +STUB("cGzgsNULjbg", _ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody12playersIsSetEv) +STUB("cH2+t98qn1g", _ZN7WebCore9FontCache17inactiveFontCountEv) +STUB("cH5xlMptXIA", utrie2_setRange32_67) +STUB("cH8iF18qplw", _ZNK3sce3Xml3Dom4Node12getLastChildEv) +STUB( + "cH9HKANp8+s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEppEv) +STUB( + "cHA+ohLQrhs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE6resizeEj) +STUB("cHIPTTSrNzo", _ZN12video_parser5vpcom6StringC2EPKc) +STUB( + "cHOqUAK7QXs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEC1Ev) +STUB( + "cHSe4k4US88", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE6resizeEj) +STUB( + "cHVZAu6YMsI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE8capacityEv) +STUB("cHdPIMRT8M0", jpeg_add_quant_table) +STUB( + "cHhSlmSA+lc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEE11get_deleterEv) +STUB("cHjAzIvKpMU", _ZN3JSC19HeapSnapshotBuilder29nextAvailableObjectIdentifierE) +STUB("cHk-bAGOD1g", _ZN3JSC16InternalFunction4nameEv) +STUB( + "cHkA51rMhsQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE21intrusive_ptr_add_refEPS9_) +STUB("cHpMVMzCW8s", _ZN12Mp4Retriever14processStblBoxEv) +STUB( + "cHsqqviwIOg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEppEi) STUB("cHss3kYujzc", sceVencSetRateControlConfig) +STUB( + "cHve3NlljQQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEC1Ev) +STUB("cI2evWjFmTc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEEC1ERKS6_) +STUB( + "cI3FQXdNaw4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEEC2ERKS9_) +STUB( + "cI9gk+BZc08", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("cIA-+pV07Us", __libunwind_Unwind_ForcedUnwind) +STUB("cIEUZ-pzXZo", WKPopupMenuItemIsSeparator) +STUB("cIGZSzXyQSA", _ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody11statusIsSetEv) +STUB("cILFJB+EKeM", + _ZN23sceMetadataReaderWriter13ParserManager23registerParserInterfaceEjRKNS_15ParserInterfaceE) STUB("cILPU-wLYWk", _sceNpManagerDefaultFreeImpl) +STUB("cIQ+IMvLlnM", mono_aot_System_Threading_Tasksunbox_trampolines) STUB("cIR3BZ1uUQc", sceFsDevpfsMountForFSMP) +STUB( + "cIToQCBYpZM", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "cIU1u37vwjE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEE7get_refEv) +STUB("cIUTGl1g+n4", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationProperties9getLeaderEv) +STUB("cIYAby4aWvw", _ZN3sce7Toolkit2NP6Trophy9Interface12trophyUnlockEPKNS1_19UnlockTrophyRequestEb) +STUB( + "cIbuQo2-hIc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE8capacityEv) +STUB("cIcJ41juvWI", _ZN7WebCore22EmptyFrameLoaderClient27willReplaceMultipartContentEv) +STUB("cIhoIkS4McU", _ZNK3JSC17DebuggerCallFrame8positionEv) +STUB("cIjKVz1TiLU", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_12PresenceInfoEED2Ev) +STUB( + "cIjh6GR+gFA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE8copyFromERKS9_) +STUB("cIkPwfMQwWo", _ZN3sce3pss4core8graphics14NativeGraphics16UnmapDepthBufferEv) +STUB("cImJk9NoIRA", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119BandwidthProperties11getUpstreamEv) +STUB( + "cIpEFuT8Fi8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEC1EPS8_) +STUB( + "cIqyyRpj9KU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEEC1Ev) +STUB( + "cIrbhndgQ3M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEEC1ERSA_) STUB("cIvB0ao1MVA", sceCustomMusicAudioOutSetAllMusicVolume) +STUB( + "cIwCNAYlKAU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEEaSERKSA_) +STUB("cIwTzTA3lhg", _ZN3sce2Np9CppWebApi13InGameCatalog2V517ContentDescriptorD2Ev) +STUB("cIwvWSXy5tk", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS15TusDataStatusesEE3setEv) STUB("cJ--1xAbj-I", scePngDecDecodeWithInputControl) +STUB("cJ08oWAxit4", u_terminateWChars) +STUB("cJ1aLzpbyow", SpeechStatus) +STUB("cJ2Y4E-t258", il2cpp_api_register_symbols) +STUB( + "cJ4luw0AFt8", + _ZN3sce2Np9CppWebApi13InGameCatalog2V518ErrorEntityFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_11ErrorEntityEEE) +STUB( + "cJ8md8EbvrI", + _ZNK3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody23largeDataSizeLimitIsSetEv) +STUB("cJCUqFvaTvI", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE5emptyEv) +STUB("cJDX0wlcsV4", monoeg_g_unichar_type) +STUB("cJH9bcWJgME", _ZN7WebCore16BlobRegistryImpldlEPv) +STUB("cJHXjgNLesg", u_getDataVersion_67) +STUB( + "cJK-4j7yrQI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEEdeEv) +STUB("cJLTwtKGXJk", nearbyint) STUB("cJLufzou6bc", sceVoiceGetBitRate) +STUB("cJOvwTknjnE", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersD1Ev) +STUB("cJR8BP83cZk", _ZNK3WTF9MediaTimengEv) +STUB("cJS+hJyCtwk", WKBundleClearDiskCachesByPattern) +STUB("cJWGxiQPmDQ", strsep) +STUB("cJWkEWBSVv0", _ZN3JSC7Symbols17ObjectPrivateNameE) +STUB( + "cJcJhRLo86k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "cJf21tlmSQM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEED1Ev) +STUB("cJgFKARD73M", _ZNK7WebCore17HTMLPlugInElement20isBelowSizeThresholdEv) +STUB("cJgPwghWnJg", mono_aot_Sce_Vsh_SyscallWrapperunbox_trampolines_end) +STUB("cJha2OgVEw0", _ZN4Manx11getFontNameEPKwjPKcRNS_17FontSynthesisHintE) +STUB("cJkb9aUGrzA", _ZN9Inspector31NetworkBackendDispatcherHandlerD1Ev) +STUB("cJl4lpQr+TA", sqlite3_clear_bindings) +STUB("cJnd8bs-Pws", _ZN7WebCore14StyleSheetListD2Ev) +STUB("cJokY6wAIvA", _ZN7WebCore19ResourceRequestBase19setHTTPHeaderFieldsENS_13HTTPHeaderMapE) +STUB("cJpD7EFNuak", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10setString6EPKc) STUB("cJrYXu-MqFk", sceAudioOutArbitrationInitialize) +STUB("cJtZxPlTqcE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEcvbEv) +STUB("cJvOg1KV8uc", sigsetmask) +STUB("cJzob157j0Q", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIiEC2EPi) +STUB( + "cK-ZirMa+W4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEEC2ERKSA_) +STUB( + "cK0YMn0CLAM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("cK1UhCTySO0", GCC_except_table35) +STUB("cK6bYHf-Q5E", _ZN3sce4Json11InitializerC1Ev) +STUB("cKA5ZS4XiLQ", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities8ActivityC1EPNS1_6Common10LibContextE) +STUB("cKC1R+vxc3Q", _ZN3sce7Toolkit2NP2V210Tournament18OneVsOneTournamentD1Ev) +STUB("cKCf8d1mCwE", _ZN7WebCore8SVGNames18baseline_shiftAttrE) +STUB("cKFf+P20Ehc", uhash_removeElement) +STUB( + "cKQO8IOzTrY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "cKTBVcJJqyw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEaSERKS7_) +STUB("cKU3ncLO+vg", _ZN3JSC7Symbols39regExpPrototypeSymbolReplacePrivateNameE) +STUB( + "cKX2ouHSu7E", + _ZN3sce2Np9CppWebApi14SessionManager2V130RequestGameSessionMemberPlayer8fromJsonERKNS_4Json5ValueE) STUB("cKYtVmeSTcw", sceFontOpenFontSet) +STUB( + "cKaSx30F-Cw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEE5resetEPS9_) +STUB("cKaXv3V+n+k", _ZN3WTF13ReadWriteLock9writeLockEv) +STUB("cKjWecemsZ4", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12Notification14NetStateChangeEE3setEv) +STUB("cKkWbPdGt5c", _ZN3JSC7Symbols24idWithProfilePrivateNameE) STUB("cKl+d8u8mbk", sceRazorCpuUserSignalPostEx) +STUB("cKmuDdV8H6Q", monoeg_g_utf8_to_utf16) +STUB("cKndiZnt0EA", FT_Stroker_LineTo) +STUB("cKqnSGpeRUE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEE3getEv) +STUB( + "cKr0SeMT2e0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "cKv4c4JYSkg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEEptEv) STUB("cKvcNpw4q7o", sceNetConfigSetDefaultRouteDev) STUB("cKyUWdEKBME", sceKeyboardConnectPort) +STUB("cL2QUlo9Vnk", _getsockopt) +STUB("cL2mamO1FO8", + _ZN7WebCore28convertToIntegerEnforceRangeIaEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB("cL3dlqTcRqk", ubrk_first) +STUB( + "cL4-WO89SPQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEE7add_refEv) +STUB("cL58Z6yRYDk", _ZN7WebCore18PlatformTimeRangesC1Ev) +STUB("cL5ASE2-dwg", _ZN7WebCore14SQLiteDatabase5closeEv) +STUB("cLEfGWxS0OU", _ZNK7WebCore9FrameTree11scopedChildEj) +STUB( + "cLKnLXSRWy4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEppEi) +STUB("cLN+-CVotuU", WKContextGetGlobalStatistics) +STUB( + "cLO-c7tsuHk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEC1EPS7_PNS2_10LibContextE) +STUB("cLOhQkEQdLk", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V16StatusEEmmEi) +STUB( + "cLOo17NMbDk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEixEm) +STUB("cLOxfrqZoBM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEEaSERKS7_) +STUB("cLQZVqooubE", jpeg_mem_init) STUB("cLV4aiT9JpA", sceNgs2RackCreate) +STUB("cLVQtfiOm+4", _ZN7WebCore8Document16isPageBoxVisibleEi) +STUB( + "cLYG1zgSmr0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEC1EPNS2_10LibContextE) +STUB( + "cLYKyfgVaEY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEmmEi) +STUB("cLaeFN6lcM0", _Touptab2) +STUB( + "cLao7qMaKWo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("cLdg9UqH2bM", _ZNK7WebCore16DocumentTimeline31acceleratedAnimationsForElementERNS_7ElementE) +STUB("cLdoHqi5Ezg", _ZN3sce2np14JsonDocBuilder16EscapeJsonStringEPKcPcmPm) +STUB( + "cLg4JAsWZjs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEEC2ERSA_) +STUB("cLh5kHxozkw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE7reserveEi) +STUB( + "cLi6g00Kcps", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEplEm) +STUB("cLk4VDINin0", WKDatabaseManagerDeleteDatabasesForOrigin) +STUB( + "cLluh3rmXdw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEEaSERKSA_) +STUB( + "cLn1tFTtp38", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEED1Ev) +STUB( + "cLnumTSb4HA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEC1EPKS8_) +STUB("cLubjojTkNM", __asan_set_shadow_00) +STUB("cLwJi62oO5E", + _ZN9Inspector15RemoteInspector16unregisterTargetEPNS_24RemoteControllableTargetE) +STUB("cLwb9r8x0+8", + _ZN3sce3pss5orbis9framework8PsmEvent10UnregisterEiPFvRKNS2_12PsmEventDataEPvES7_) STUB("cLxF1QtHch0", sceCameraStartByHandle) +STUB("cLxbznPcsSI", wapi_set_crypto_policy_callback) +STUB( + "cM+QWS10gQI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE5emptyEv) +STUB("cM1AOABqE-Y", _ZN7WebCore17SQLiteTransaction8rollbackEv) +STUB( + "cM352pkEBSA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEmmEv) +STUB("cM3G2BsJ4Lo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEE11release_refEv) STUB("cMA8f6jI6s0", sceNetConfigWlanBackgroundScanStart) +STUB( + "cMAs6l6sVOE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("cMEdJ1S+9Pk", _ZN7WebCore27ContentSecurityPolicyClientD1Ev) +STUB( + "cMKG8roTBYA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("cMOgkE2M2e8", _ZN3sce2np9EventFlagC1Ev) +STUB( + "cMQ2MJrBRKw", + _ZN9Inspector18InspectorHeapAgent15getRemoteObjectERN3WTF6StringEiPKS2_RNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsIS9_EEEE) +STUB("cMT3zkT2orY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEC2ERKS7_) +STUB( + "cMW0FrvHPhY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEE7add_refEv) STUB("cMWWYeqQQlM", sceGnmSpmSetSelectCounter) +STUB("cMb+185-F8w", uspoof_swap_67) +STUB("cMj7li0eXgw", _ZN3sce2np3ipc17ServiceIpmiClient13DeleteRequestEii) +STUB( + "cMjxvOwHHno", + _ZN3JSC20PromiseDeferredTimer29hasDependancyInPendingPromiseEPNS_17JSPromiseDeferredEPNS_6JSCellE) STUB("cMk57DZXe6c", sceRemoteplayImeGetEvent) +STUB( + "cMtWfMUFIY8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB("cMtsMmic4fQ", _ZNK3JSC14ProtoCallFrame26argumentCountIncludingThisEv) +STUB("cMwblzTBmTs", mono_get_exception_file_not_found) +STUB("cMwgSSmpE5o", _Mtxunlock) +STUB("cMwl-FMCjQk", _ZN7WebCore12ChromeClient34requiresFullscreenForVideoPlaybackEv) +STUB( + "cN-hurG55rs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEEdeEv) +STUB("cN0npxfbbWE", _ZN7WebCore31CrossOriginPreflightResultCache5emptyEv) +STUB("cN2zfHMPS5A", _ZN3WTF10StringImpl31convertToUppercaseWithoutLocaleEv) +STUB("cN71mMO1Bwo", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V15Error6toJsonERNS_4Json5ValueEb) +STUB("cN8iJ612c0k", WKBundlePageCopyOriginsWithApplicationCache) +STUB("cNAFUVtbSbs", _ZN7WebCore27ScrollingStateScrollingNode20setTotalContentsSizeERKNS_9FloatSizeE) +STUB("cNBi4vhbN9Q", g_CodeBlockPoison) +STUB( + "cNFJK92pVfA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE10setContextEPNS2_10LibContextE) +STUB("cNGg-Y7JQQw", _FGamma_big) +STUB("cNJLCdCvpRs", WKWebsiteDataStoreIsStatisticsVeryPrevalentResource) +STUB( + "cNVMjpp+T9c", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB( + "cNViX0gmpfY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE21intrusive_ptr_sub_refEPS9_) STUB("cNY-Qkk1CfA", sceCesSJisToUtf32le) +STUB( + "cNc3Y9xSeH4", + _ZN3sce2Np9CppWebApi7Matches2V127ResponseMatchResultsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_20ResponseMatchResultsEEE) +STUB("cNhCnbb72ow", g_strndup) +STUB( + "cNiyPhhvirk", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessions19unsetacceptLanguageEv) +STUB("cNrLnyzLDqg", _ZN7WebCore21NetworkStorageSession32setResourceLoadStatisticsEnabledEb) +STUB("cNsCV2uFsF8", _ZN3sce2Np9CppWebApi11Matchmaking2V15Cause9setSourceEPKc) +STUB( + "cNxCY8HYRVU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEdeEv) +STUB("cO+5GDZdVq8", _ZN7WebCore21MediaRecorderProvidernwEmPv) +STUB("cO+RepsRxmU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEE7add_refEv) +STUB("cO0-FwblLtY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEED1Ev) +STUB("cO0ldEk3Uko", _Atomic_fetch_add_1) +STUB("cO7+x8Nh8L4", + _ZN3sce2Np9CppWebApi14SessionManager2V118MatchmakingForRead8fromJsonERKNS_4Json5ValueE) +STUB("cO7RaIjn428", _ZN7WebCore18TextureMapperLayer8addChildEPS0_) +STUB("cO8rAm3Bthg", _ZN7WebCore20ISOOriginalFormatBoxC2Ev) +STUB("cOAgEurxqiM", mono_aot_Sce_Vshplt) +STUB("cOEmyDiWGOM", _ZN9Inspector22PageFrontendDispatcher13frameDetachedERKN3WTF6StringE) +STUB( + "cOJr0lI0SJ0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEmmEi) +STUB("cOK1qstZsMQ", _ZNK7WebCore3URL10protocolIsEPKc) STUB("cOKT8SyGb2g", sceNpManagerIntUpdateBcAccessToken) +STUB("cOLPjEfQl7Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE5emptyEv) STUB("cOLn5A3ZoqU", sceNpAsmClientGetNpComInfo2) +STUB("cOSEIVqQreM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEppEi) +STUB("cOVqfTsm6i4", _ZN7WebCore18JSHTMLVideoElement14finishCreationERN3JSC2VME) +STUB("cOYia2dE0Ik", asprintf) +STUB("cOZigTiADBk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEE6insertENS2_8IteratorIS4_EERKS4_RS7_) +STUB( + "cOdoV65wTIo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEEcvbEv) +STUB("cOfVCGYZqy0", jpeg_idct_5x5) +STUB("cOg-mDw8IyE", _ZN9Inspector22InspectorDebuggerAgent13setBreakpointERN3JSC10BreakpointERb) +STUB( + "cOgzpo3qO90", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEmmEv) +STUB("cOhy2UFiEiQ", jpeg_fdct_13x13) +STUB("cOkxYTuZQyU", cairo_path_destroy) +STUB("cOli1uePSwY", _ZN4IPMI4impl10ClientImpl19terminateConnectionEv) +STUB("cOn-hwc-a9Y", EVP_PKCS82PKEY) +STUB("cOnk31bagNI", _ZN3JSC9CodeCache5writeERNS_2VME) +STUB( + "cOrphSkgcGo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEE7add_refEv) +STUB( + "cOuYjDEePWU", + _ZN7WebCore20UserGestureIndicatorC2ESt8optionalINS_26ProcessingUserGestureStateEEPNS_8DocumentENS_15UserGestureTypeENS0_23ProcessInteractionStyleE) +STUB( + "cOvwBJyX1ps", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEEcvbEv) +STUB("cOzBIm8MGf4", + _ZN12video_parser5vpcom11string_util7mappingERSt3mapISsSsSt4lessISsESaISt4pairIKSsSsEEERS6_mcc) +STUB( + "cP7gcYKamNQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEppEi) +STUB("cPB4kSdgPxg", _ZN7WebCore23standardUserAgentForURLERKN3WTF3URLE) +STUB("cPEfST3B3C0", _ZN12video_parser13cVideoPathMgv20SetLicenseEKBVersionEi) +STUB("cPGyc5FGjy0", atanhf) +STUB("cPL+SGdCj24", _ZN7WebCore9HTMLNames14onkeypressAttrE) +STUB("cPNeOAYgB0A", _ZSt22_Get_future_error_whati) +STUB( + "cPU6Udt+l+0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEppEi) +STUB("cPWUbU0BLr0", monoeg_g_list_prepend) +STUB( + "cPZ2C8ZNEYI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEC2Ev) +STUB( + "cPcej3xetd0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE3endEv) +STUB("cPczGnSGDoI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEEneERKS7_) +STUB( + "cPfbd3fxHHU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEcvbEv) +STUB( + "cPgQbrqvywI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEeqERKS9_) +STUB("cPguhb1+Hhw", _ZN7WebCore11MathMLNames15accentunderAttrE) +STUB( + "cPiJB-CcxeE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEEaSERKSA_) STUB("cPn3fXO-J5M", sceVdecCoreSetDecodeInputSvp) +STUB( + "cPnmuOUfQhw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE21intrusive_ptr_add_refEPS9_) +STUB("cPrEirB4ku8", _ZN7WebCore8SVGNames6byAttrE) +STUB("cPsMwFBQkYw", WKWebsiteDataStoreStatisticsResetToConsistentState) STUB("cPtUwd8Dtgk", sceDebugGetUltRuntimeInfo) +STUB("cPtt38dvZK8", WKBundleFrameGetVisibleContentBoundsExcludingScrollbars) +STUB("cPwFNe4+Sgk", _ZN3sce7Toolkit2NP2V29Challenge10ChallengesC1Ev) +STUB("cPwyly8OBnU", fuse_lowlevel_notify_inval_entry) +STUB("cQ+WzQ-i7a4", u_fflush_67) +STUB( + "cQ4W2QDlSbk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEEC2Ev) +STUB("cQ5MQgAU-mY", _ZTVN9Inspector20InjectedScriptModuleE) STUB("cQ6DGsQEjV4", sceVoiceReadFromOPort) +STUB("cQC6gpOuHZY", _ZNK7WebCore14DocumentLoader11subresourceERKNS_3URLE) +STUB( + "cQIIX3G2+iI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEppEv) +STUB( + "cQROEYoBgac", + _ZN3sce2Np9CppWebApi7Matches2V126ResponseTeamResultsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_19ResponseTeamResultsEEE) STUB("cQRxdwTPJU8", sceDataTransferTargetAbortGetDeviceInfoApplication) +STUB( + "cQTNZ3eqvKM", + _ZN3sce2Np9CppWebApi14SessionManager2V134RequestGameSessionSpectatorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_27RequestGameSessionSpectatorEEE) +STUB( + "cQZoTKuHhsM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "cQaY7Qre6CA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEC1Ev) STUB("cQb8Zr8Q0Y0", sceAmprCommandBufferWaitOnCounter_04_00) +STUB("cQehulx2PLk", _ZN3JSC6JSLock12DropAllLocksC2EPNS_9ExecStateE) STUB("cQkBH-pXhF0", sceNpSessionSignalingDeactivate) STUB("cQke9UuBQOk", sceKernelMunmap) +STUB( + "cQr+XKv1YGQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEEC2ERSA_) +STUB("cQtHZEmXSC8", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors10getMessageEv) +STUB("cQvetBe+n6M", _ZN3JSC2VMD1Ev) +STUB("cR-LBKUNmT8", __asan_set_death_callback) +STUB("cR-yQldyXvs", FT_Bitmap_Convert) +STUB("cR3mfcJtiDU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEC1Ev) +STUB("cR4ywoNCJ0M", _ZN3sce3Xml3Sax6Parser5resetEv) +STUB( + "cR5mwEgzOrY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "cR7rH+ffwiQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEdeEv) +STUB("cR8fjcArC+s", _ZN7WebCore9HTMLNames12manifestAttrE) +STUB("cR8sDtBCHvA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEC1ERS7_) +STUB("cRCjGx+U+og", _ZN7WebCorelsERN3WTF10TextStreamENS_8WindRuleE) +STUB("cREm6CP8oyc", ulocimp_toLegacyType_67) STUB("cRGdsEkmjTU", sceApplicationGetMode) STUB("cRILAEvn+9M", sceNpUnregisterNpReachabilityStateCallback) +STUB("cRMHBi70QRE", _ZN3JSC22FullGCActivityCallback12lastGCLengthERNS_4HeapE) +STUB("cRN88TB6Gi8", _ZN3sce2Np9CppWebApi14SessionManager2V130ResponsePlayerSessionSpectatorD2Ev) +STUB( + "cROiC617+wI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE) STUB("cRQApILFOrQ", sceNpGriefReportCdCreateRequest) +STUB( + "cRSJysDpVl4", + _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE11do_get_yearES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm) STUB("cRVmNrJDbG8", sceNpTusAddAndGetVariable) +STUB("cRYyxdZo1YQ", _Atomic_is_lock_free_4) STUB("cRabutqUG7c", sceNpServerErrorJsonMultiGetErrorCode) +STUB( + "cRgWVeaAhrg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEptEv) +STUB( + "cRj1SwlTCYI", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("cRl-GP5GGx8", WKWebsiteDataStoreSetStatisticsTopFrameUniqueRedirectFrom) +STUB("cS-3VbB-Ceo", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia11ScreenshotsEEC2Ev) +STUB( + "cS0kfHYeoVA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("cS0p1-NFAsw", jinit_input_controller) +STUB("cS2oTfspyrU", _ZN7WebCore24CoordinatedGraphicsLayer27releaseImageBackingIfNeededEv) +STUB( + "cS3bHxhPv1c", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEEcvbEv) +STUB("cSC1n6rXQik", WKPreferencesGetSubpixelCSSOMElementMetricsEnabled) +STUB( + "cSE8b+8lToM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEC1Ev) +STUB("cSHyMR8vSNo", WKAuthenticationChallengeIsForMainResource) +STUB("cSKCkTOQ6rg", mono_aot_Mono_CSharpjit_code_end) +STUB("cSLbQUQO2Ns", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer9terminateEv) +STUB( + "cSORhbzwlFw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE8capacityEv) +STUB("cSUfCJp7YEw", _ZN7WebCore20PasteboardCustomDataC1Ev) +STUB( + "cSagL5V+O58", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE5clearEv) +STUB("cSdTN0FvT5A", ucol_strcollUTF8_67) +STUB("cSiAnTMGwuI", _ZN7WebCore9HTMLNames15cellpaddingAttrE) +STUB("cSik-vlfY2k", X509_get0_signature) +STUB("cSk5YDsIu30", _ZN3sce2Np9CppWebApi12Leaderboards2V15Error10setMessageEPKc) +STUB("cSkKJIJGV6k", _ZNK7WebCore11JSDOMWindow12openDatabaseERN3JSC14JSGlobalObjectE) +STUB( + "cSpGAX0-IdU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE23clearOnFinishedCallbackEv) +STUB("cSsNeg1iICY", + _ZN3JSC29constructArrayNegativeIndexedEPNS_14JSGlobalObjectEPNS_9StructureEPKNS_7JSValueEj) +STUB("cStwmF0rgi8", _ZNK3JSC18PropertyDescriptor8writableEv) +STUB("cT4KF3cnNwI", g_strjoinv) +STUB( + "cT5Rvt2ejRM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEdeEv) +STUB("cT71x7KleG0", JSValueMakeNumber) STUB("cTDYxTUNPhM", pthread_condattr_getclock) +STUB( + "cTFdw8hfEjE", + _ZN3sce2Np9CppWebApi15Personalization2V128GetAccessCodeResponseFactory7destroyEPNS3_21GetAccessCodeResponseE) STUB("cTGkc6-TBlI", sceNetTerm) +STUB( + "cTHSqC-tS0M", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) STUB("cTI4cXxkZxs", sceDataTransferHostNotifyEasySignInReady) +STUB( + "cTIIas6-D-A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEE11get_deleterEv) +STUB("cTLUQmCfWNQ", _ZN3sce2Np9CppWebApi6Common15DefaultResponseD1Ev) +STUB( + "cTN3wI4-ILM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE8pushBackERKS8_) +STUB( + "cTPgztVf4Hs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEE11release_refEv) +STUB( + "cTTHfdLycYw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEE11release_refEv) +STUB("cTTUl7wV18s", _ZN12video_parser13cVideoPathM4vC2EPKc) +STUB("cTWdQpoKaBY", _Z20WTFCrashWithInfoImpliPKcS0_immmmmmm) +STUB("cTXmoO++UNM", _ZN7WebCore22externalRepresentationEPNS_5FrameEj) +STUB( + "cTaSqnpAkyg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEEaSERSA_) +STUB( + "cTcD-t5Enl4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEcvbEv) +STUB("cTe4HH0ztac", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEED1Ev) +STUB("cTg4b27d7RE", uloc_getISOLanguages_67) +STUB("cThV6oddDd8", + _ZN3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayer16unsetCustomData1Ev) +STUB( + "cThj1YopQIA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEED2Ev) +STUB("cTiPQSA8Nkk", ures_getVersionByKey_67) +STUB( + "cTkn-a6G4iY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("cTkrwldaa1w", _ZN7WebCore10OriginLockD2Ev) STUB("cTpHiHGMWpk", sceUserServiceSetPbtcSundayHoursStart) +STUB("cTq2UrFRl-s", _ZN3sce3Xml3Dom8Document12importParentEPKS2_NS1_6NodeIdE) +STUB("cTu3lvym8us", _ZThn136_NK7WebCore16HTMLMediaElement6volumeEv) +STUB( + "cTzJsoIzccY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE5beginEv) +STUB("cU-HOGpi5TQ", _ZN7WebCore15AsyncFileStreamD2Ev) +STUB( + "cU-ak14Qg4Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEC2EPS8_) +STUB( + "cU613sYCMDc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEmmEi) +STUB("cU6KWvsfe9s", _ZN3sce7Toolkit2NP2V26Trophy16UnlockedTrophiesC2Ev) STUB("cUCo8OvArrw", sceGnmDrawIndirectCountMulti) +STUB("cUDs1oT5mqM", PKCS12_parse) +STUB("cUKI3HHyPbA", _ZN7WebCore18TextureMapperLayerC1Ev) +STUB( + "cUMuzzBVL3Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEE11get_deleterEv) +STUB("cUPgTQd5amY", Java_sun_reflect_NativeMethodAccessorImpl_invoke0) +STUB( + "cURWASlQ3CY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEEcvbEv) +STUB("cUU3-6ewPWM", _ZN3WTF14AtomStringImpl11addSlowCaseERNS_15AtomStringTableERNS_10StringImplE) +STUB( + "cUgSGb5e4a4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB( + "cUhAnvjfMMw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEE7add_refEv) +STUB("cUpjOm76d80", _ZN15AbstractStorage15FacebookContentD0Ev) +STUB( + "cUtmUrayzeA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEED2Ev) +STUB( + "cUu0sJaw9ac", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEEC2ERSA_) +STUB( + "cUw-+DZEy+U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEC1ERS7_) +STUB("cV-9aAuHxnA", _ZN3sce7Toolkit2NP2V28Matching4RoomC2Ev) +STUB( + "cV17fxzUSCY", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("cV32x-ln3Rg", _ZN12video_parser5vpcom14_DirectoryOpenEPcPPNS_8_vp_fileE) +STUB("cV6KpJiF0Ck", _ZNSt13basic_filebufIwSt11char_traitsIwEE9_EndwriteEv) +STUB("cV8oVafV7Fw", _ZNK3WTF10StringImpl8endsWithEPKcj) STUB("cVC4JXxpb-s", sceKernelGetFakeFinalizeMenuForRcmgr) +STUB( + "cVCnEt05jaw", + _ZN3sce2Np9CppWebApi14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyD2Ev) +STUB( + "cVF4rr2hP3g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEEaSERSA_) STUB("cVI2hzWXFZU", sceKernelDeleteSavedApp) +STUB( + "cVLILiHuTKM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB("cVQVNFBCvds", _ZNK3sce3Xml3Dom4Node13getAttributesEPNS1_8NodeListE) +STUB("cVQjGboQO4o", mono_class_get_event_token) +STUB("cVRV8StiMBY", WKPreferencesSetJavaScriptMarkupEnabled) STUB("cVRZlC-iNk4", sceUlpMgrVshMountCmd) +STUB( + "cVSUblwHP90", + _ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer15setPushContextsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_22GameSessionPushContextEEEEE) +STUB("cVSk9y8URbc", posix_memalign) +STUB("cVUkEio3kmE", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V124BandwidthUpstreamMetrics10getAverageEv) +STUB( + "cVXqwl+yjmg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE7popBackEv) +STUB( + "cVYQJbd56Cc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEeqERKS9_) +STUB( + "cVdwqhIyIPM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) STUB("cVeBif6zdZ4", sceNpTusGetMultiUserDataStatusForCrossSave) +STUB( + "cVkTSqPiLuA", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "cVl8W0+enXM", + _ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetail18setProfilePicturesERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_6AvatarEEEEE) +STUB("cVln6YGk2JI", + Java_com_sony_bdjstack_javax_media_controls_VideoSystem_getGraphicsPlaneOffsetValue) +STUB( + "cVmuYl+GttU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEixEm) +STUB("cVoHoEWBOjs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEEaSERS9_) +STUB("cVtg8HvOtHc", _ZN3sce2Np9CppWebApi6Common8IteratorINS2_6StringEEppEi) +STUB( + "cVvVevDbbd8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEmmEv) +STUB( + "cVyb37UpDKU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEeqERKS9_) +STUB( + "cW-s-XmLgjM", + _ZN3JSC7JSValue14putToPrimitiveEPNS_14JSGlobalObjectENS_12PropertyNameES0_RNS_15PutPropertySlotE) +STUB( + "cW0PjZMgIZU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "cW0ZXA+WO5Y", + _ZN3sce2Np9CppWebApi14IdentityMapper2V349PsnWebError_error_validationConstraintInfoFactory6createEPNS1_6Common10LibContextEPKcS9_PNS5_12IntrusivePtrINS3_42PsnWebError_error_validationConstraintInfoEEE) +STUB("cW7VCIMCh9A", CRYPTO_uninitAsymmetricKey) +STUB("cW8v1TkwC4E", + _ZN3sce2Np9CppWebApi7Matches2V133RequestTemporaryCompetitiveResult8fromJsonERKNS_4Json5ValueE) STUB("cWGGXoeZUzA", sceNetEventCallbackCreate) +STUB("cWGxJZeouRg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEC1ERKS7_) +STUB("cWHdm8MyA08", WKPageSetPageFormClient) +STUB( + "cWPZG8GcbEU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEC2EPS6_PNS2_10LibContextE) +STUB( + "cWVp93HF2Nc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEdeEv) +STUB("cWaCDW+Dc9U", _ZNKSt7collateIwE7do_hashEPKwS2_) +STUB("cWbjni1-hO0", _ZN7WebCore11MathMLNames7srcAttrE) +STUB("cWdToDzrbwo", _ZN7WebCore8SVGNames18primitiveUnitsAttrE) +STUB("cWeHJGT4So4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEaSERKS7_) +STUB( + "cWfaYoFU7Es", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEEC2ERKSA_) +STUB("cWgvLiSJSOQ", __atomic_load_1) +STUB("cWhUEvN1sPM", WKPreferencesSetModernMediaControlsEnabled) +STUB("cWkAVHLzoMk", WKBundleSetAllowStorageAccessFromFileURLS) +STUB( + "cWlY8dDUlhI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("cWqvLZtFrOw", _ZN7WebCore16HTMLMediaElement8setMutedEb) +STUB("cWsZ0K-ZAJU", _ZN9Inspector26DebuggerFrontendDispatcherC1ERNS_14FrontendRouterE) +STUB("cWsZswBMjqg", _ZN3sce2np9JsonArray5ClearEv) +STUB( + "cWtSpnDEqI4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEE7add_refEv) +STUB("cWuK-XzvNLg", _ZN3sce7Toolkit2NP10IdDatabase17getNpServiceLabelENS1_11ServiceTypeE) +STUB( + "cWvO+1DRsqU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEEptEv) +STUB("cX6o7inCqxA", _ZN3JSC21throwOutOfMemoryErrorEPNS_9ExecStateERNS_10ThrowScopeE) STUB("cX8tQHDkvH0", sceVnaSendAgentEvent) +STUB("cXBATQIf6Yc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEE3getEv) +STUB( + "cXDpY4DoRco", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEC1EPNS2_10LibContextE) +STUB("cXL+LN0lSwc", + _ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE5_InitERKSt8_Locinfo) +STUB("cXNcgMR-QPc", __asan_exp_store8) +STUB("cXQ1mGsUUso", _ZN3sce3Xml12MemAllocatorC2Ev) +STUB( + "cXTR0XIioL8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEE11release_refEv) +STUB("cXUbCLbi6mw", _ZNK3WTF10StringImpl10startsWithERKS0_) +STUB("cXUs-LP0TGE", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE5beginEv) +STUB("cXWnhYkh4iA", _ZN7WebCore10Pasteboard5writeERKNS_15PasteboardImageE) +STUB("cXYOwTVAuMs", _ZN3sce2np12HttpTemplateD0Ev) +STUB("cXZ9KJTKG0U", il2cpp_runtime_class_init) +STUB("cXaNyPwDaB8", WKContextConfigurationUsesWebProcessCache) +STUB( + "cXlwkmwV7fo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEppEi) +STUB("cXnAc2y3AAM", _ZN15AbstractStorage15FacebookContent5FlushEv) STUB("cXpyESo49ko", sceNpAppInfoIntCreateRequest) +STUB( + "cXraSsr1Sv4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE4sizeEv) +STUB("cXvo8vER868", + _ZNK3sce2Np9CppWebApi11UserProfile2V125GetBasicPresencesResponse6toJsonERNS_4Json5ValueEb) +STUB("cXxWzbWi9dE", _ZN7WebCore9GLContextdaEPv) +STUB( + "cXyniL+SZBM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEaSERS7_) +STUB("cY0yOS6Kzhw", _ZN7WebCore18JSHTMLImageElement11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB( + "cY19oNtFOEQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEED2Ev) +STUB("cY3lUQytj6U", mono_btls_x509_get_subject_name_string) +STUB("cY4yCWdcTXE", __fixdfti) STUB("cY6ZpCec3Oo", sceMatTagPool) +STUB("cY8dSl6Rqr4", u_errorName) +STUB( + "cYAo+k7ZU+g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEC2Ev) +STUB("cYDA0oEX5Y4", _ZN3sce4Json6Parser10parseArrayERNS0_5ValueERNS0_11InputStreamEPS2_) +STUB( + "cYEcUf6pAZM", + _ZN3sce2Np9CppWebApi14SessionManager2V136GetFriendsPlayerSessionsResponseBodyC1EPNS1_6Common10LibContextE) +STUB( + "cYN9+rsnnpA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE4sizeEv) +STUB("cYNk9M+7YkY", clearerr_unlocked) STUB("cYNmzCqlzIA", scePerfTraceAprNameUpdate) +STUB( + "cYOa8jKe4Iw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEixEm) +STUB("cYPhGSahQpo", _ZN3sce2Np9CppWebApi6Common8IteratorIdEppEi) STUB("cYSjErZW5gE", scePigletGetShaderCacheConfiguration) +STUB("cYUS1snGtYU", _ZN3JSC6JSLock12DropAllLocksC1EPNS_14JSGlobalObjectE) STUB("cYW1ISGlOmo", sceNetInfoDumpStart) +STUB("cYaHtBekfXw", _ZN7WebCore7RunLoop21initializeMainRunLoopEv) +STUB( + "cYdqE-4jp7o", + _ZN7WebCore5Frame6createEPNS_4PageEPNS_21HTMLFrameOwnerElementEON3WTF9UniqueRefINS_17FrameLoaderClientEEE) +STUB("cYgoSiAl3V0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEEC2ERS7_) +STUB( + "cYhnRR03jXU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEixEm) +STUB("cYlYsDQY500", __sanitizer_finish_switch_fiber) +STUB("cYlgRPtIF8g", rgctx_fetch_trampoline_rgctx_15) STUB("cYnBkgm8I0c", sceVrServiceDialogGetResult) +STUB( + "cYp1Ec2gddo", + _ZN3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyC2EPNS1_6Common10LibContextE) +STUB("cYpmD0Uq19I", utrace_format_67) +STUB("cYr5gmGlS+s", _ZN3JSC4Yarr25unicodeMatchPropertyValueEN3WTF6StringES2_) STUB("cYrMGk1wrMA", sceFontCreateWords) +STUB("cYwm3B+Hsc8", + _ZN3JSC8JSObject26setPrototypeWithCycleCheckERNS_2VMEPNS_14JSGlobalObjectENS_7JSValueEb) +STUB( + "cYx40o4b82U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEE7get_refEv) +STUB( + "cYy9aivrId4", + _ZN3sce2Np9CppWebApi14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBody11setPlayerIdEPKc) +STUB( + "cZ4Q47ZT+GY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEC1EPS8_) +STUB( + "cZ4lfRtWgl8", + _ZN9Inspector14ConsoleMessageC1EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelERKN3WTF6StringEONS5_3RefINS_15ScriptArgumentsENS5_13DumbPtrTraitsISA_EEEEPNS1_9ExecStateEm) +STUB("cZACKbUbGv8", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container23contentDescriptorsIsSetEv) STUB("cZCJTMamDOE", sceShellCoreUtilPostPsmEventToShellUI) +STUB("cZEsrDKa9Dg", delegate_virtual_invoke_imt_2) +STUB("cZGh0gGEgJo", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsD2Ev) +STUB( + "cZJFK2VPA+s", + _ZN7WebCore24CoordinatedGraphicsLayer8addChildEON3WTF3RefINS_13GraphicsLayerENS1_13DumbPtrTraitsIS3_EEEE) +STUB( + "cZQqo1+HyFQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEC1Ev) +STUB("cZRh8gnSxNc", sr05) +STUB( + "cZS6Jw7+cqM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE5clearEv) +STUB( + "cZWtpniPVMQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE5beginEv) +STUB( + "cZZx+ejZWeY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB("cZeKveV6SNg", _ZN3sce7Toolkit2NP2V28Commerce7SkuInfo13SKU_PRICE_LENE) +STUB( + "cZeOc5UpucM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEEC1Ev) +STUB( + "cZfsvErAAbE", + _ZN9Inspector20InjectedScriptModule14ensureInjectedEPNS_21InjectedScriptManagerEPN3JSC14JSGlobalObjectE) +STUB("cZgMAuJri1w", _ZN8meta_gen13JpegRetriever15ProcessApp2DataEv) STUB("cZhAWU7WEVw", sceCesUhcToUtf16le) +STUB( + "cZj8L5oGDHw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEdeEv) STUB("cZp79Bc6ovs", sceHttpCacheInit) +STUB("cZq1zIzFN7s", _fpathconf) +STUB("cZrLCe6EKEA", WKBundlePageCreateSnapshotInViewCoordinates) +STUB("cZt-5yh5uzw", GCC_except_table20) +STUB( + "ca+RVf6RKIg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEptEv) +STUB("ca+ZZJ4g1tY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEixEm) +STUB("ca112aPs2Rc", + _ZNK7WebCore4Node9textRectsERN3WTF6VectorINS_7IntRectELm0ENS1_15CrashOnOverflowELm16EEE) STUB("ca4KPvp0qLQ", sceAgcDcbSetIndexSizeGetSize) +STUB("ca5SM553bXY", uset_compact_67) STUB("ca7v6Cxulzs", sceKernelSetGPO) +STUB("ca9NTixtg94", _ZNK7WebCore6Editor17selectionHasStyleENS_13CSSPropertyIDERKN3WTF6StringE) +STUB("caEGQsORaZM", + Java_com_sony_gemstack_org_dvb_application_AppsDatabaseImpl_n_1acceptCurrService) +STUB("caF3ritf1d4", _ZN9Inspector15RemoteInspector19sendMessageToTargetEjPKc) +STUB("caGu16SLet0", mono_class_is_valid_enum) STUB("caJfXlnEM4M", sceValidationGpuGetDiagnosticInfo) +STUB("caM6qseCSfI", _ZN7WebCore21SQLiteDatabaseTracker24hasTransactionInProgressEv) +STUB("caP-y4fH-zQ", _ZN3sce4Json19InternalInitializerD2Ev) +STUB( + "caTOccfH7C0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE6resizeEj) +STUB("caY3n4745ro", mono_aot_System_Xmljit_code_end) +STUB("caYGtoC0gW0", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEEmmEv) +STUB("caYaUIzCYvM", _ZNK7WebCore18TextureMapperLayer38descendantsOrSelfHaveRunningAnimationsEv) +STUB("caZqJUbMXKc", WKPageRubberBandsAtLeft) +STUB("cadVHKe0G4Q", utf8_back1SafeBody_67) +STUB( + "caf4K8JEpIg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE8pushBackERKS8_) +STUB( + "cahotuEYsKo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEC1ERS7_) +STUB("cakV3vAIHjs", _ZN7WebCore14DocumentLoader8setTitleERKNS_19StringWithDirectionE) +STUB("camy5cvmZII", glDrawRangeElements) +STUB( + "canImVOEDFc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEC2EPS8_) STUB("caqgDl+V9qA", sceGameLiveStreamingStartDebugBroadcast) +STUB( + "catgUgGN3oU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEEC1EPS7_PNS2_10LibContextE) +STUB( + "cauxSaYKHWc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEplEm) +STUB( + "cb8q78aWY0c", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEeqERKS9_) +STUB( + "cbCPqtLoSNE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEE7add_refEv) +STUB( + "cbDC22bci+o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEC2Ev) +STUB("cbHNTv7wJAY", _ZN3sce7Toolkit2NP2V211SharedMedia11ScreenshotsC1Ev) +STUB("cbHOM72If3c", _ZN3sce2Np9CppWebApi13InGameCatalog2V57ProductD2Ev) +STUB("cbJSAoeH-mo", _ZN3sce7Toolkit2NP2V27NpUtils7Request24SetTitleIdForDevelopmentD1Ev) +STUB( + "cbMKWC77kiE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEEptEv) STUB("cbShhWbs07A", scePerfTraceSpmCreate) +STUB("cbSw7XoHt-k", + _ZN7WebCore15JSEventListener6createEN3JSC7JSValueERNS1_8JSObjectEbRNS_15DOMWrapperWorldE) +STUB( + "cbTVoSJEDik", + _ZN7WebCore16BlobRegistryImpl35registerBlobURLOptionallyFileBackedERKNS_3URLES3_ON3WTF6RefPtrINS_21BlobDataFileReferenceENS4_13DumbPtrTraitsIS6_EEEERKNS4_6StringE) STUB("cbTjX08xkIE", sceCesEucJpToUtf32) +STUB("cbav3fQYrjw", _ZN7WebCore28InspectorFrontendClientLocal27restoreAttachedWindowHeightEv) +STUB( + "cbglulYCVUk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE7popBackEv) +STUB( + "cblfm+0UXTM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE5beginEv) STUB("cbn9Di01j0k", sceKernelIsAuthenticNeo) +STUB("cbnC1jsRLzI", _ZN7WebCore11DisplayList22BeginTransparencyLayerD2Ev) +STUB("cbpbhWr1RmU", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_13TusDataOutputEED1Ev) +STUB("cbtiPJByQn0", _WStoxflt.digits) +STUB( + "cbvINV8V2Hg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEED2Ev) +STUB("cbvW20xPgyc", _ZTISt14error_category) +STUB( + "cbxONcEcUiA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("cbxQvl0FscU", _ZN9Inspector18InspectorHeapAgentD0Ev) +STUB("cbyLM5qrvHs", __subvti3) +STUB( + "cc-UPa3cZrU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "cc6CQupF0YA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEC1EPS8_) +STUB( + "ccBhqWaV9eY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB( + "ccCW-a-yz9Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE3endEv) STUB("ccL8qtt32N0", scePerfTraceAprNameDeleteBufferNotifyEvent) +STUB( + "ccLCbXAem00", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "ccNAL1SEDQc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEC2Ev) +STUB( + "ccNaXIJlZ3M", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEdeEv) STUB("ccVvHF4wZME", sceFsInitCreatePfsSaveDataOpt) +STUB( + "ccYvva3j2J8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEC1Ev) +STUB( + "ccZl2BBB0NY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEEaSERKSA_) +STUB("cccaKMKJHdI", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEEixEm) STUB("cckSZEW4+oQ", sceCesUtf16StrToMbcsStr) +STUB( + "ccvvykDLCeg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "cczOyRZVWXE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEED2Ev) STUB("cd+Rtw+D1x8", sceAudioOut2PortDestroy) +STUB( + "cd+lTYsnGKA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB( + "cd0jkW0JpCA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEptEv) +STUB( + "cd5IYd-+RLA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEneERKS9_) +STUB( + "cdA+xk2ipgk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEE7get_refEv) STUB("cdDRpqcFGbU", sceAgcDmaDataPatchSetSrcAddressOrOffsetOrImmediate) +STUB("cdEBlKoN8tw", _ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors7setPathEPKc) +STUB( + "cdEdQvskd6I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE8copyFromERKS9_) +STUB( + "cdFvqxOEXnI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEEC1Ev) +STUB( + "cdHARC0u0OQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEC2Ev) +STUB( + "cdHzAIQOlZY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEC1ERS8_) +STUB( + "cdNTOggQvE8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEEC1ERKSA_) +STUB("cdNXHhTFhxI", + _ZN7WebCore19LayerRepresentation19retainPlatformLayerEPNS_26TextureMapperPlatformLayerE) +STUB( + "cdNm5d0Wsfs", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE10setContextEPNS2_10LibContextE) +STUB( + "cdUKR2In-kk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEE5resetEPS9_) +STUB( + "cdYeNWNAdYE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEeqERKS9_) +STUB("cdYzqB96vXg", WKPageSetPageDiagnosticLoggingClient) +STUB("cdcADXfgGRw", _ZN23sceMetadataReaderWriter13ParserManagerC1Ev) +STUB("cddM72CYeNQ", _ZN3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayerD2Ev) +STUB("cdgE-1IlsWI", _ZN3JSC24JSAsyncGeneratorFunction6s_infoE) +STUB( + "cdktYmuxhrw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEaSERKS7_) +STUB( + "cdmgUSsOVmw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEED2Ev) +STUB("cdo-5lVs1Zk", _ZN3sce3Xml3Dom4NodeC2ERKS2_) +STUB( + "cdoQnz0+04U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEixEm) STUB("cdqOFyupRS4", sceNpSnsFacebookDialogTerminate) +STUB("cdr2T4SoIyU", cairo_stroke) STUB("cduV1f0dcGQ", sceAgcAcbAtomicGds) STUB("cduy9v4YmT4", sceSaveDataSetSaveDataMemory2) +STUB("cdvamfNQhXs", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12BandwithInfoEE19setCustomReturnCodeEi) STUB("cdxE2NbkV9g", sceIduInit) +STUB( + "cdzE1XxWUqQ", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC1ERKSA_) +STUB("ce+00gaZAN0", + _ZN7WebCore27AuthenticationChallengeBase7compareERKNS_23AuthenticationChallengeES3_) +STUB("ce8U+GDyrbs", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18SessionInformationEE8allocateEmPKv) +STUB( + "ceDKhjJTraM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEEC2ERSA_) +STUB( + "ceDN6U6NHcw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEC1EPS8_) +STUB("ceIT7njviKk", WKInspectorIsConnected) +STUB( + "ceJ973STOT8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEC2EPKS8_) +STUB( + "ceJDeSzwK6Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEEC2EPS6_PNS2_10LibContextE) +STUB( + "ceKRZFO85u4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEE7get_refEv) +STUB( + "ceMA3z+8G1M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEC2Ev) +STUB("ceQ-P-FXwXY", + _ZN3sce7Toolkit2NP6Trophy9Interface17trophyRegisterSetEPKNS1_21RegisterTrophyRequestEb) +STUB( + "ceQmKlVYT6Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEEptEv) +STUB("ceY2f+JsYKk", + _ZNSt15basic_streambufIwSt11char_traitsIwEE7seekoffElNSt5_IosbIiE8_SeekdirENS4_9_OpenmodeE) STUB("cejlyvC7+N8", sceAvSettingEnterAudioMuteForShutdown) +STUB("cevflsEJ55g", rgctx_fetch_trampoline_rgctx_57) STUB("cf-WMA0jYCc", sceNpTusSetMultiSlotVariableA) +STUB( + "cf5FxVdy8ZU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEEC1Ev) +STUB("cf5vhxt1QW4", utrans_trans_67) STUB("cf9BIMy4muY", sceUserServiceGetSystemLoggerHashedAccountIdTtl) +STUB( + "cf9cJJCXbGU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE7popBackEv) +STUB( + "cf9whLhWXTM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE8pushBackERKS8_) +STUB("cfAXurvfl5o", __cxa_allocate_exception) +STUB("cfCmCJkdUng", mono_get_delegate_begin_invoke) +STUB("cfJLSVhprjE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEEeqERKS7_) STUB("cfJZThTSxQ0", sceShellCoreUtilReleaseRemotePlayCpuBudget) +STUB("cfJhLH8uj4k", JSObjectMakeDate) +STUB("cfL8uDvjGwU", _ZN3sce2Np9CppWebApi6Common6VectorIlE7popBackEv) +STUB("cfUat6IQe2U", _ZN3sce7Toolkit2NP2V212NetworkUtils16NetStateDetailed5resetEv) +STUB("cfV9+PXtZts", umutablecptrie_setRange) +STUB("cfhPuDjAfxg", _ZN3sce7Toolkit2NP21AccessCodeInputParamsC2Ev) STUB("cfjAjVTFG6A", pthread_suspend_user_context_np) +STUB("cfkHamyAyEk", Java_java_net_PlainDatagramSocketImpl_disconnect0) +STUB("cfnEnkthkGo", WKBundlePageSetTopOverhangImage) +STUB("cfpRP3h9F6o", _FPlsw) +STUB("cfsLfZLMLVw", _ZN3WTF9MediaTime16createWithDoubleEdj) +STUB( + "cftb9VLbLZY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEE5resetEPS9_) +STUB( + "cfu8UjoKktY", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "cfx+uHdLJzo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("cfz2mYyhxcQ", _ZN3JSC5JSMap6s_infoE) +STUB( + "cfzsbj7T4Ek", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEEdeEv) +STUB("cfzzb3gH4zk", mono_lookup_internal_call) STUB("cg-VoPqZYss", sceFiosFHRead) +STUB("cg0EcOhb4mI", _ZN12Mp4Retriever11processMainEv) +STUB( + "cg5SkPjc6fw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEC2EPNS2_10LibContextE) +STUB("cg5bcS+k9P8", _ZN7bmalloc11IsoTLSEntrynwEm) +STUB( + "cg6k3+zkMtA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEaSERKS7_) +STUB( + "cgAq0WiuB3g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE21intrusive_ptr_sub_refEPS9_) +STUB("cgBUkjbg-Jg", Java_java_lang_reflect_Array_setFloat) +STUB( + "cgE6amxVlsk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE5clearEv) +STUB("cgFcdsvqrmM", _ZN12video_parser18cProfileCheckerMp4C1Ev) STUB("cgGFEUYjEQ0", sceNpPush2UnregisterNotificationCallback) +STUB( + "cgN+oc86U30", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEC1Ev) +STUB( + "cgOAhNICrsw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEE11release_refEv) STUB("cgQhq3E0eGo", sceNpMatching2GetSignalingOptParamLocal) +STUB("cgRqSo50CSg", il2cpp_field_has_attribute) +STUB("cgTvG0jp+MY", _ZNK7WebCore26Matrix3DTransformOperation10isIdentityEv) +STUB( + "cgU+AD+qO9Q", + _ZN7WebCore31CrossOriginPreflightResultCache11appendEntryERKN3WTF6StringERKNS_3URLESt10unique_ptrINS_35CrossOriginPreflightResultCacheItemESt14default_deleteIS9_EE) +STUB("cgYcQIHDtlU", _ZN7WebCore6ISOBoxnaEmPv) +STUB( + "cgZx7fw3-KQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE5beginEv) +STUB("cgh1uZmGHAU", _ZN3WTF11Persistence7DecoderrsERNS_8OptionalIfEE) +STUB("cgnbMjESf18", _ZN3sce7Toolkit2NP2V29Messaging7Request19SendGameDataMessage12MAX_URL_SIZEE) +STUB( + "cgyQMcN2gj0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE7popBackEv) +STUB( + "cgzz-y-nwpU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEED1Ev) +STUB( + "ch-tDZCG1+k", + _ZNK3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead20getInvitationInvalidEv) +STUB( + "ch1gPt3APgk", + _ZN3sce7Toolkit2NP14GameCustomData9Interface17setMessageUseFlagEPKNS1_28GameCustomDataUseFlagRequestEPNS1_9Utilities6FutureIiEEb) +STUB( + "ch5L4k-emFw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "ch9JyXCHDaM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEE11release_refEv) +STUB("chDsW8oAcc8", mono_shared_mempool_new_size) +STUB("chFrHZ6pJm0", SHA512_Final) +STUB("chI1vWFrmOY", ucurr_getNumericCode) +STUB( + "chKTREhBfqw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE5abortEv) +STUB( + "chKzEpHJFmA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEEcvbEv) +STUB( + "chNIf2J6-P0", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSession35setxPSNSESSIONMANAGERNONPSNCALLERIDEPKc) +STUB("chXuVQrRI94", _ZN7WebCore11DisplayList8DrawRectD2Ev) STUB("chZFHnGa9x4", sceShellCoreUtilShowErrorDialogWithFormatArgs) +STUB("chaxQmV0rVg", + _ZN3sce2Np9CppWebApi7Matches2V120ResponseMatchResultsC2EPNS1_6Common10LibContextE) +STUB("chdPn50-ZPc", + _ZN7WebCore6Editor21applyStyleToSelectionEPNS_15StylePropertiesENS_10EditActionE) +STUB( + "chfQ-3uVpqo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("chi2eH8ZMWw", _ZN19JITSharedDataMemory15shared_memalignEmm) +STUB("chjYqtvMgBE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEEaSERS7_) +STUB("chlN6g6UbGo", _CurrentRuneLocale) +STUB("chnudRDm7Hw", _ZN15AbstractStorage18DailymotionStorageD1Ev) +STUB( + "chp32etkvlk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE5beginEv) +STUB("cht8l0E1hys", __decrement_D2A) +STUB("chxnvsxxfBY", _ZN3sce3Job10JobManager8shutdownEv) +STUB("chzmnjxxVtk", _Fac_tidy) +STUB( + "ci-AORZCeIw", + _ZN7WebCore16NavigationActionC1ERNS_8DocumentERKNS_15ResourceRequestENS_20InitiatedByMainFrameENS_14NavigationTypeENS_28ShouldOpenExternalURLsPolicyEPNS_5EventERKN3WTF10AtomStringE) +STUB("ci1uFdEYZcs", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIdED2Ev) STUB("ci5qfgD5F58", sceLoginMgrServerDialogNotifyOpenFinished) +STUB( + "ci7j9YWIWNo", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api8getOfferEiRKNS4_19ParameterToGetOfferERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_20GetOfferResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("ciKq9PFu4qI", + _Z31Ime_SetSelectRectGeometryNativemN3sce11playstation4core3Ime15ImeTextGeometryE) +STUB("ciLH4cFx9yc", delegate_virtual_invoke_24_p) +STUB("ciNnTRLgVBY", _ZN3sce2Np9CppWebApi7Matches2V119ResponseTeamResults8fromJsonERKNS_4Json5ValueE) +STUB("ciRLwXjkyB0", _ZTVN12video_parser12cVpFileCacheE) +STUB( + "ciROdwvOQUk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEEptEv) +STUB( + "ciSnu4UNrus", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("ciW7Jyw2XKc", ubrk_first_59) +STUB("ciXM3j2URKk", _ZN3WTF19ParallelEnvironmentC2EPFvPvEmi) +STUB( + "cictToOkWd8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "cid3BrStOA4", + _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse18setCompetitionTypeERKNS3_15CompetitionTypeE) +STUB("cijiMJ14LBI", _ZN7WebCore16convertToIntegerIlEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB("cimQgPJPmD0", __sanitizer_cov_trace_func_enter) +STUB( + "cinWMOGSC48", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("cit+fdavZkk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEC1ERKS7_) +STUB( + "ciwBlZ2yVQ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("cizBjY-vSlQ", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_28ActivityFeedSharedVideoStoryEEC1Ev) +STUB("cj+ge8YLU7s", _ZTSPDn) +STUB("cj7hx7O-vF4", _ZN9Inspector27AnimationFrontendDispatchernaEmPv) +STUB( + "cjCbXj8kHTM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEEaSERSA_) +STUB( + "cjEaCmKxvV4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEED2Ev) +STUB( + "cjFq0GAnN20", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEppEi) +STUB("cjGExj87wWA", ucurr_getRoundingIncrement) +STUB( + "cjGdE-x8Q54", + _ZN7WebCore10MouseEvent14initMouseEventERKN3WTF12AtomicStringEbbONS1_6RefPtrINS_11WindowProxyENS1_13DumbPtrTraitsIS6_EEEEiiiiibbbbtPNS_11EventTargetE) +STUB("cjHInVaM4JI", rgctx_fetch_trampoline_rgctx_67_p) +STUB("cjZEuzHkgng", _Atomic_load_4) +STUB( + "cjZZwab1860", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE5beginEv) +STUB("cjdQIEnzP-I", _ZN7WebCore8SVGNames14textLengthAttrE) +STUB("cjk-Cdurz2c", JSGetMemoryUsageStatistics) +STUB("cjmJLdYnT5A", _ZN6Dinkum7threads21_Throw_resource_errorEv) +STUB("cjmSjRlnMAs", iswxdigit) +STUB("cjt-4ySmYTs", fork) +STUB("cjxVyjmiO7Q", + _ZN3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayerC2EPNS1_6Common10LibContextE) +STUB("cjxgAplW6-A", g_WebAssemblyWrapperFunctionPoison) +STUB("ckBRFeGNWnY", rgctx_fetch_trampoline_mrgctx_83) +STUB( + "ckCjlNVYwa4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE6resizeEj) +STUB("ckD5sIxo+Co", _ZNKSt7_MpunctIwE11do_groupingEv) +STUB("ckFrsyD2830", _ZN10__cxxabiv117__array_type_infoD2Ev) +STUB( + "ckOTDuyuKO0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEE11release_refEv) +STUB("ckUeKrhTgLQ", mono_param_get_objects) +STUB("ckcuWdb1US4", png_get_sRGB) +STUB("ckm37QV1V8c", _ZN7WebCore11DOMRectListD2Ev) +STUB( + "ckpI53I9ZWw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEC1EPNS2_10LibContextE) +STUB( + "ckpKnfc73Z8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEdeEv) +STUB( + "ckrXX21nVhg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE8copyFromERKS9_) +STUB( + "cktbTmca48I", + _ZN15AbstractStorage14YoutubeStorage10GetContentERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_7ContentEE) +STUB("ckyaqk5dfP4", _ZN7WebCore9FontCache9fontCountEv) +STUB("cl+f5DIiOUk", _ZN3sce2Np9CppWebApi7Matches2V121ResponsePlayerResultsD1Ev) +STUB( + "cl88Gkc+tx8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEEC1ERKS9_) +STUB("clF7J7N9xXE", _ZNK3sce4Json5ValueixERKNS0_6StringE) +STUB( + "clHk9fmxaZg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEaSERKS7_) +STUB( + "clJ+IWf4iR4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("clJBJ4a16WA", mono_aot_Mono_Securityplt_end) +STUB("clQC+AAy6pw", _ZN7WebCore13pointerCursorEv) STUB("clRcvYOUFC8", sceVnaSetLocation) +STUB( + "clRxlQgPsr0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEEC2ERSA_) +STUB( + "clSat9wQzG0", + _ZNK7WebCore5Range17absoluteTextRectsERN3WTF6VectorINS_7IntRectELm0ENS1_15CrashOnOverflowELm16EEEbPNS0_20RangeInFixedPositionENS0_27RespectClippingForTextRectsE) +STUB( + "clVLi4MlzSY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEixEm) STUB("clVvL4ZDntw", scePadSetMotionSensorState) +STUB("clWd3SVNyCo", _ZN3sce7Toolkit2NP23TssGetStatusInputParamsC2Ev) +STUB("cldkMWWxNxo", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE21intrusive_ptr_sub_refEPS7_) +STUB("clfMHpjH0R8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEEC2Ev) +STUB( + "cljuBBd9KMw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEppEv) +STUB( + "cll0AaYH2pk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEC1EPNS2_10LibContextE) +STUB("cllyCd6SGLY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEEC1ERS7_) +STUB("clmZOokkqHA", _ZNK7WebCore6ISOBox4sizeEv) +STUB( + "clo5bXbnNQU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("clr3IhTz4SM", _ZNK7WebCore16HTMLVideoElement11videoHeightEv) +STUB( + "clsZ4W6juZQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEeqERKS9_) STUB("cltshBrDLC0", sceSystemServiceAddLocalProcessForPsmKit) +STUB("cltvY2tDiVM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEC1ERS7_) +STUB("clu6c2+Zqxo", _ZN7WebCore6JSNode11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) STUB("clyKUyi3RYU", sceVoiceSetThreadsParams) +STUB( + "clzcgFiC6v4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE5beginEv) +STUB("cm+vzQWYx3s", _ZN3sce7Toolkit2NP2V24Auth7Request10GetIdTokenC2Ev) +STUB( + "cm-Cz0M9w5I", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE15receiveResponseEv) +STUB("cm-iX2uBwkw", _ZN7WebCore16HTMLMediaElement26didBecomeFullscreenElementEv) +STUB( + "cm3nZWKzfyU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEEaSERS9_) +STUB( + "cm5cyBeakvQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEE11get_deleterEv) +STUB( + "cm5jxClTFA0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEmmEv) +STUB("cm6Mk3WsW0c", + _ZNK3sce2Np9CppWebApi7Matches2V123RequestTeamMemberResult6toJsonERNS_4Json5ValueEb) +STUB("cmFnNND+sAo", _ZN7WebCore11MediaPlayer4seekERKN3WTF9MediaTimeE) +STUB( + "cmHo+SAb-To", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEEC1EPKS6_) +STUB("cmIyU0BNYeo", _Wcsxfrmx) +STUB( + "cmQPHajtH4Y", + _ZNK3sce2Np9CppWebApi14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBody6toJsonERNS_4Json5ValueEb) +STUB("cmSxsBCpzS0", _ZNK7WebCore13HitTestResult16absoluteMediaURLEv) +STUB("cmT0DEnAAHE", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeINS1_11TusVariableEPvEE8allocateEmPKv) +STUB("cmVpl3RY18M", _ZNK3sce2Np9CppWebApi7Matches2V114ResponseMember11getJoinFlagEv) +STUB( + "cmXU9W5ss4M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEC1EPKS8_) +STUB( + "cmZjKqTpxXQ", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("cmb3wIXQ-Js", _ZN3WTF15ThreadCondition9broadcastEv) +STUB("cmd41395g7Y", FT_Stream_ReadChar) +STUB( + "cmhG7wkwBcg", + _ZN9Inspector28DOMDebuggerBackendDispatcher19removeURLBreakpointElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) STUB("cmjuYpVujQs", sceSystemStateMgrIsBdDriveReady) +STUB( + "cmkmxgD76ow", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEED2Ev) +STUB( + "cmm82LO7poA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE7popBackEv) STUB("cmo1RIYva9o", scePthreadMutexInit) +STUB("cmpvwI3RSHY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17GetGameDataResultEE5resetEv) +STUB("cmq+zA94JZA", _Z26sceRazorGpuThreadTraceStopPN3sce3Gnm21DispatchCommandBufferE) +STUB("cmqXyg5E8FE", _ZN3NTF15ThreadCondition4waitERNS_5MutexE) +STUB("cmrgtvnmzN4", mono_aot_Mono_Cairoplt_end) +STUB( + "cmuy9fIAtk4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEeqERKS9_) +STUB( + "cmvr0mOCX2Q", + _ZN3sce7Toolkit2NP2V27Session14sendInvitationERKNS3_7Request14SendInvitationEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB( + "cmyBSI1j9Is", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE5beginEv) +STUB( + "cn3DMExIAYg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEE7add_refEv) +STUB( + "cn5TwS9iwVI", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "cn7WkyM-W9Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEE7add_refEv) +STUB("cn9svYGWKDQ", _ZN3sce4Json6StringaSERKS1_) +STUB("cnA6v-RP4no", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEE3getEv) +STUB( + "cnNRdDNz6qA", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectator57getpostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEv) +STUB("cnNz2ftNwEU", _ZNKSt8numpunctIcE11do_groupingEv) +STUB( + "cnPQkaJf8A4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "cnSO3Q7DHAk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEneERKS9_) +STUB("cnSYLx0Nen4", _ZNK3sce2Np9CppWebApi6Common6VectorIjEixEm) +STUB("cnV-ki0yIhw", ulist_reset_keyword_values_iterator) +STUB("cnWEojGLoFg", _ZN7WebCore16BlobRegistryImplnwEm10NotNullTagPv) +STUB("cnXE+5t5qIc", + _ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody17needsTmpRankIsSetEv) +STUB( + "cndUX47iPQE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEixEm) +STUB("cndgjKAtLOY", mono_aot_System_Windowsunbox_trampolines) +STUB("cnfT++E3fSg", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE6resizeEj) STUB("cnnOMW6dyPI", sceDepthWaitAndExecutePostProcess) +STUB( + "cnnT6J8cH58", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("cnoM7EjlLe4", _ZN3sce2npneERKNS0_4TimeES3_) +STUB( + "cnu5ZjkIzXw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEED1Ev) +STUB("cnvgclldqr8", uscript_getName_67) +STUB("co-nbnjVKN8", __wrap_getcwd) +STUB("co1TwYJ2ybU", _ZN3sce3pss5orbis9framework12PsmFramework3RunEv) STUB("co2NCj--pnc", sceSharePlaySetProhibition) +STUB("co49DQAPha0", mono_aot_System_Numericsunbox_trampoline_addresses) +STUB( + "co4PMp0hiDY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEptEv) +STUB( + "co52JIYgl7M", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEdeEv) STUB("co7QF5zVjnY", sceImeBackendGetConvertString) +STUB("co9D6Qfv8S4", monoeg_g_unichar_tolower) +STUB("co9bgdRbS7s", unum_getLocaleByType_67) +STUB("coAAAFW6Wqw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEaSERKS7_) +STUB("coBZbBcwg8c", _ZN9Inspector14InspectorAgent11initializedERN3WTF6StringE) +STUB( + "coC2+rmYjqI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE5emptyEv) STUB("coCrV6IWplE", sceFontCharacterGetSyllableStringState) +STUB( + "coJQvarpxTg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEmmEv) STUB("coT6qsU5t9M", sceNpAsmClientClearNpTitleToken) +STUB( + "coTYKPYrWKQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("coVkgLzNtaw", _ZTSSt13basic_filebufIwSt11char_traitsIwEE) +STUB( + "coXb1ivvcAs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEC2EPS6_PNS2_10LibContextE) +STUB( + "coZhdIbiFP0", + _ZN3JSC21createUint8TypedArrayEPNS_14JSGlobalObjectEPNS_9StructureEON3WTF6RefPtrINS_11ArrayBufferENS4_13DumbPtrTraitsIS6_EEEEjj) +STUB( + "coaAGA3C6dc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEplEm) +STUB("cobwXThbDhg", JSDebuggerInitialize) +STUB("cocNRQpq+NA", _ZN3sce2np9HttpTrans5WriteEPNS0_6HandleEPKvmPm) +STUB("coeYWTjevFM", _ZNK7WebCore19ResourceRequestBase15timeoutIntervalEv) +STUB("coemIHqKrrI", _ZNK7WebCore16VisibleSelection23isContentRichlyEditableEv) STUB("coiMIPkR+Ro", scePs2EmuMenuDialogOpen) +STUB("coixGjBgMTc", _ZThn24_N9Inspector22InspectorDebuggerAgent7stepOutERN3WTF6StringE) +STUB( + "cokIsGCANB0", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("cots5mYtZpo", _ZNK7WebCore20ResourceResponseBase16httpHeaderFieldsEv) +STUB( + "cozcHuRGyM0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEdeEv) +STUB( + "cp-yGb3HMF0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEE11get_deleterEv) +STUB( + "cp3qVyDzWp8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEaSERS7_) +STUB("cp82JRS8smw", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi21ParameterToLeaveMatch9terminateEv) STUB("cpC-zyHoMik", sceVoiceQoSSetRemoteEndpointAttribute) STUB("cpCILPya5Zk", sceAgcAcbPushMarker) +STUB("cpCOXWMgha0", rand) +STUB("cpFOZj25G0g", uscript_getShortName_67) +STUB( + "cpOti5nhz2w", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEEiRNS2_10LibContextEPT_m) +STUB( + "cpPlbP5c+bg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEC1EPS8_) +STUB("cpQ-7Kir-gI", delegate_virtual_invoke_7_p) +STUB( + "cpQ3qRtdjAo", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V127ConnectionQualityProperties8setWiredERKNS1_6Common12IntrusivePtrINS3_29ConnectionQualityWiredMetricsEEE) +STUB( + "cpTaGnCIEPg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("cpXq7o0+kMs", unum_formatDoubleForFields_59) +STUB("cpZlnNQc3IY", WKPreferencesSetDirectoryUploadEnabled) +STUB( + "cpcYtb4mSiY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEmmEv) +STUB("cpe0upeEhcI", SwCtrlManagerCancelInitialize) STUB("cpjgdlMYdOM", sceFontGraphicsStructureCanvasSequence) +STUB("cpm7kF5vpC8", _ZThn120_N7WebCore16HTMLMediaElement8setMutedEb) STUB("cpnwZeVIq8E", sceNpLookupNetInitWithMemoryPool) STUB("cpshdfkAJIs", scePktMgrGetPacketSize) +STUB( + "cpz2Lf8YBZ4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "cq3--9QGIH4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEaSERKS9_) +STUB( + "cq3Q0Q0Qaf4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("cq4ADrhWgG8", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V110UpdateModeEEC2Ev) +STUB("cq65J5rCEwE", + _ZNK3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody20getLargeDataNumLimitEv) +STUB( + "cqB6QQt+iHw", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("cqC1tmhsSC8", utrie_swapAnyVersion_67) STUB("cqGkYAN-gRw", sceNpTrophyCaptureScreenshot) +STUB( + "cqJmuIgZxko", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE8copyFromERKS9_) +STUB("cqKEeNI93EM", delegate_virtual_invoke_15_p) +STUB("cqNT3RuXd1U", ucnv_isFixedWidth) +STUB( + "cqOxjL0ZfFA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEdeEv) +STUB("cqPaD+l3Z9E", _ZN3sce2Np9CppWebApi6Common8IteratorINS2_17ParameterBaseImpl6KeySetEEC1Ev) +STUB("cqZoI-1PC2E", _ZN3sce2np10JsonObject8SetFieldEPKcS3_PPNS0_10JsonStringE) +STUB( + "cqbKpp8cQzw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEE11release_refEv) +STUB("cqbMRVG1FmQ", + _ZN3JSC16IsoSubspacePerVMC2EN3WTF8FunctionIFNS0_18SubspaceParametersERNS_2VMEEEE) +STUB("cqbqklSaZ+U", mono_jit_set_trace_options) +STUB( + "cqc-201SxY0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEE11release_refEv) +STUB("cqcY17uV3dI", _Fetch_xor_seq_cst_4) +STUB( + "cqgZUTkdcQ0", + _ZN3sce7Toolkit2NP12ActivityFeed9Interface15getSharedVideosEPKNS1_22GetSharedVideosRequestEPNS1_9Utilities6FutureISt6vectorINS1_28ActivityFeedSharedVideoStoryENS1_15AppSTLAllocatorISA_EEEEEb) +STUB("cqoRyqFKVts", _Z20WTFCrashWithInfoImpliPKcS0_im) +STUB("cqt8emEH3kQ", feclearexcept) +STUB("cqtb-UiK1Lg", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_7NpUsersEE3getEv) +STUB("cqucBPSeVDA", _ZN3sce4Json5ValueC2Em) STUB("cqui4JUJtbY", sceLncUtilUnregisterShellUI) +STUB("cqvea9uWpvQ", _ZTVSt12length_error) +STUB("cqvznGO1Zsg", _ZN3sce7Toolkit2NP6Trophy9Interface17trophyRegisterSetEbbiiij) +STUB("cqyQcHkWLko", _ZN7WebCore14CachedResource16unregisterHandleEPNS_24CachedResourceHandleBaseE) +STUB( + "cqypOQ4Ojnc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEC2EPKS8_) +STUB("crB4it4xRjk", _ZN9Inspector17ScriptDebugServer15didRunMicrotaskEv) +STUB("crFg3k+BM2A", WKWebsiteDataStoreIsStatisticsPrevalentResource) STUB("crFxyW3HdK0", sceShareGetRunningStatus) +STUB( + "crH5qODR-Xg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEEaSERSA_) +STUB( + "crHdTq+Io5g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("crITWrdhqQY", _ZN3sce2Np9CppWebApi6Common6VectorIfE21intrusive_ptr_add_refEPS4_) +STUB( + "crSULleTLyo", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_23NpSessionInvitationInfoENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB("crUhCyhBS3k", _ZN9Inspector26DatabaseFrontendDispatchernaEmPv) +STUB( + "crVEAGLhLFY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEC2EPS8_) +STUB("crYcq1HKdq8", _ZNK3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead12getAccountIdEv) +STUB( + "crZ66tvCbo8", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi22sendGameSessionMessageEiRKNS4_33ParameterToSendGameSessionMessageERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB("crb5j7mkk1c", _is_signal_return) +STUB("crcnG7WFw8w", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_15RankInformationEED1Ev) +STUB("crhK52B0ep8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEED2Ev) STUB("cri6g3qvCtc", scePadTrackerUpdate) +STUB("crjmvXxJiv4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS16FriendsVariablesEED2Ev) STUB("crkFfp-cmFo", sceMouseSetHandType) +STUB("cruxCoR-osY", _ZN7WebCore19ResourceRequestBase17makeUnconditionalEv) +STUB( + "crvLJhn6wyA", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanity22getwebApiFilterRequestEv) +STUB( + "crxwsMy9Qtw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE3endEv) +STUB("cs-Rrf9Xsds", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getSubtitleStream) +STUB( + "cs4GNr45Ong", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEppEv) +STUB( + "csBWQX8SAxc", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("csF6ZHxA+a0", _ZN12video_parser13cVideoPathMgvD1Ev) +STUB( + "csI7RzcFXRE", + _ZN7WebCore5Frame10createViewERKNS_7IntSizeERKN3WTF8OptionalINS_5ColorEEES3_RKNS_7IntRectEbNS_13ScrollbarModeEbSD_b) +STUB( + "csJpQ0ddsJE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEED1Ev) +STUB( + "csKXHCgWa54", + _ZN7WebCore9FrameView29setLayoutViewportOverrideRectESt8optionalINS_10LayoutRectEENS0_18TriggerLayoutOrNotE) +STUB("csNIBfF6cyI", _ZNSt14numeric_limitsIjE8digits10E) +STUB( + "csP46Y7098Q", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB( + "csPdRUhoPUI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEeqERKS9_) +STUB("csSgNcQb5ww", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament7BracketEE19setCustomReturnCodeEi) +STUB("csTghWKaS9s", mono_verifier_set_mode) +STUB( + "csTsfrPavLE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEplEm) STUB("csVTpsP0RLk", sceFiosOpRescheduleWithPriority) +STUB("csW7BKwFn60", _ZNK7WebCore8Document22wheelEventHandlerCountEv) +STUB( + "csfEHOEAlzA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE8pushBackERKS8_) +STUB("cskh7pJGuAY", uprv_tzset) +STUB("cstv0FHyceo", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed4FeedEE19setCustomReturnCodeEi) +STUB( + "csviO576Riw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEC1EPS6_PNS2_10LibContextE) +STUB( + "csvzfoVbVrY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEED1Ev) +STUB( + "ct0HdlUHtxk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE21intrusive_ptr_add_refEPSA_) +STUB("ct2G7t-xyic", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13WhoLikedStoryEED1Ev) +STUB("ct32qasNtNY", _ZN7WebCore20HTMLFrameElementBase11setLocationERKN3WTF6StringE) +STUB( + "ct3mMkcLuok", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_20ChallengeRecvDetailsENS1_15AppSTLAllocatorIS5_EEEED2Ev) +STUB("ct52Sdkz-Ds", _FDint.sub) +STUB( + "ct6EDkqu+pE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEdeEv) STUB("ctTAcF5DiKQ", sceAvPlayerGetStreamInfoEx) +STUB("ctTDJfKZfd0", Java_com_sony_bdjstack_system_BDJModule_getState) STUB("ctTYL9lomv8", sceShellCoreUtilDeleteDownloadedTitleWorkaroundFile) +STUB("ctXTADLKFyY", mono_btls_ssl_ctx_is_cipher_supported) +STUB( + "ctYj3Vb0-pI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEC1Ev) +STUB( + "ctef8Nhanfc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEE11get_deleterEv) STUB("ctfO7dQ7geg", sceSysmoduleIsCalledFromSysModule) +STUB( + "ctghP7Sf6+c", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi10getRankingEiRKNS4_21ParameterToGetRankingERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_22GetRankingResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("ctlbAnrfOgw", uregex_findNext_67) +STUB("ctoQMlFaZ-M", mspace_calloc) +STUB( + "ctplrU06qYk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "ctqR9KKqsGA", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error29validationConstraintInfoIsSetEv) +STUB("ctqkAfkma-k", FT_Stream_OpenLZW) +STUB("ctsXSiaG96w", _ZN7WebCore28InspectorFrontendClientLocal18isDebuggingEnabledEv) +STUB("ctsXgVoVfcI", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_26EventInformationListDetailEEC2Ev) +STUB("ctto9lYZYhA", _ZN7WebCore10FileHandleC2Ev) +STUB("ctxX+CrwjhU", _ZTVN7WebCore11MediaPlayerE) +STUB( + "ctzuDktPuaI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEptEv) +STUB("cu+EanI-Q7g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEEC2Ev) +STUB("cu+gVDIlA4w", _ZN7WebCore8JSPath2DC2ERKS0_) STUB("cu1LlJo+5EY", sceNpAsmClientTerminate) +STUB("cu1Ynyg7cTM", mono_jit_free_method) +STUB( + "cu1aC9t-M8o", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody12setConditionERKNS3_9ConditionE) +STUB( + "cu2RXNF1SXY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEC1EPNS2_10LibContextE) +STUB("cu4IZKXvXZI", fuse_fs_removexattr) STUB("cu5DLZM7-k8", sceVorbisDecRawSeekLap) +STUB( + "cu8eCL1IEYU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEC2ERS7_) +STUB( + "cuBxplhGaJg", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUseraSERS5_) +STUB("cuD+alzzNJc", _ZNK7WebCore7Element12hasAttributeERKN3WTF12AtomicStringE) +STUB( + "cuERp2MfGcI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "cuExXSD0HNk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("cuHQGoXxmnA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEaSERKS7_) +STUB( + "cuMnZ71nSYI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("cuaVJaHU9MQ", _ZN12video_parser5vpcom7GetstatE) STUB("cugDQBHux8k", sceNpAsmClientGetNpTitleTokenA) STUB("cukQjzNcSFw", sceSpPthreadMutexLock) +STUB("culi-G6AG7s", + _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_17DOMMatrixReadOnlyE) +STUB( + "cupSADVs-m4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB("cutaOJTmBWY", mono_get_enum_class) +STUB( + "cuzGSMbjbhI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) STUB("cv5Y2efOTeg", sceNetCtlApTerm) +STUB( + "cv63gcB8cik", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeaders26unsetXPsnAtomicOperationIdEv) +STUB("cv6jdgXhsYc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEEmmEi) +STUB( + "cv7DVZtHFio", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEE7get_refEv) +STUB("cv8-Cxsrz1Y", _ZNK3JSC4Yarr17RegularExpression5matchERKN3WTF6StringEiPi) +STUB("cv93NuzC7VM", + _ZN3sce2Np9CppWebApi14ConnectAccount2V216PartnerTokensApi26ParameterToGetPartnerTokenD1Ev) +STUB("cvLyQx0JVy0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEC2ERS7_) +STUB("cvMvbwgBuQQ", _ZN3WTF15AutomaticThread6notifyERKNS_14AbstractLockerE) +STUB("cvR0Quqhxmg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEC2Ev) STUB("cvRCb7DTAig", sceGameLiveStreamingLaunchLiveViewerA) +STUB( + "cvRjESxp7QM", + _ZN7WebCore24CoordinatedGraphicsLayer15addChildAtIndexEON3WTF3RefINS_13GraphicsLayerENS1_13DumbPtrTraitsIS3_EEEEi) +STUB("cvTAzjURYC0", mono_aot_System_Numericsmethod_addresses) +STUB("cvTYAEyd+cs", _ZNK7WebCore23ScaleTransformOperation27isAffectedByTransformOriginEv) STUB("cvTnVQBmRZA", sceSystemServiceUsbStorageUnregisterCallback) +STUB( + "cvWUrDC6Ioo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("cvYA2d542YY", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt6vectorI16SceNpTusVariableNS2_IS4_EEEE7addressERKS6_) STUB("cvZrmlSlwn8", sceNpServiceChecker2IntFinalize) +STUB("cva5af3sLgc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEC2ERKS7_) +STUB("cvavjeAM5eg", uhash_hashIChars_67) +STUB("cvb59D5nkvk", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13integer1IsSetEv) +STUB("cvfT6ImYn30", + _ZN7WebCore15addToBackingSetERN3JSC14JSGlobalObjectERNS0_8JSObjectENS0_7JSValueE) +STUB("cvjKScpxLJc", _ZN7WebCore11RenderLayer14scrollToOffsetERKNS_8IntPointENS_14ScrollClampingE) +STUB( + "cvk8DLF2YB0", + _ZN3sce2Np9CppWebApi14SessionManager2V156PostPlayerSessionsSessionIdInvitationsRequestBodyFactory7destroyEPNS3_49PostPlayerSessionsSessionIdInvitationsRequestBodyE) +STUB("cvku8KqTa9E", _ZNK12Mp4Retriever14hasVideoStreamEv) +STUB( + "cvtwDQo4g5I", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE10setContextEPNS2_10LibContextE) +STUB( + "cvueiZpERcw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "cvuhx2eHjjs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEE5resetEPS6_) +STUB( + "cvv2fSwmMXU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "cw14AfiCDDw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE13getLibContextEv) +STUB( + "cw5ZLxtMbGk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEneERKS9_) +STUB( + "cw7pqrVWURs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE8pushBackERKS8_) +STUB("cw8Y9PS+isM", rgctx_fetch_trampoline_rgctx_27) +STUB("cwCFIDoQBf0", _ZNK3WTF10StringView26getCharactersWithASCIICaseENS0_15CaseConvertTypeEPh) +STUB("cwJN60QR1HM", ufieldpositer_open_59) STUB("cwLEmQa8OFg", sceSystemLogger2GetTimestamp) +STUB("cwMzzdesLlY", _ZN3sce3Job10JobManagerC1Ev) +STUB("cwPLYlAqpGY", mono_profiler_install_enter_leave) +STUB("cwPp8LcpzKg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce8ProductsEE12deepCopyFromERS7_) +STUB("cwVCIuoLc6Y", mono_arch_get_throw_exception) +STUB("cwY1+gcB9OY", _ZN3sce7Toolkit2NP2V28Matching7Request10CreateRoom18MAX_SIZE_ROOM_NAMEE) +STUB( + "cwZ4fMTxDcQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEEaSERKSA_) +STUB("cwZ7ase5YbE", _ZN3sce7Toolkit2NP2V24Core8ResponseINS3_5EmptyEE12deepCopyFromERS6_) STUB("cwbxjPSJ7WQ", sceAgcDriverSetFlip) +STUB( + "cwdgGYOocQE", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectator28hasxPsnAcceptPlatformNamePs5Ev) +STUB( + "cwj+Px7cp0g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEED2Ev) +STUB("cwkw5I8tZOM", _ZN3JSC7Symbols27typedArrayLengthPrivateNameE) +STUB("cwrSsATI4IE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEEplEm) +STUB( + "cwtC967ypSg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE21intrusive_ptr_sub_refEPS7_) +STUB("cwtdZPMOggg", WKBundleFrameSetTextDirection) +STUB("cwwHYWRmsgA", _ZN3sce7Toolkit2NP2V24Core13CallbackEventC2Ev) +STUB( + "cwybt-m5A1A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "cx+lLolmsco", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEEC2Ev) +STUB( + "cx-1THpef1A", + _ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_bRSt8ios_baseRNSt5_IosbIiE8_IostateERe) +STUB( + "cx2Stx1-yuU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEEaSERKSA_) STUB("cx2dYFbzIAg", sceAudioOutDeviceIdOpen) +STUB( + "cx9AYhh1-Jo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEC1Ev) +STUB("cxBr+IpAwSA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEC1Ev) +STUB("cxLLV4gCb1I", mono_aot_mscorlibjit_code_end) STUB("cxPZ4Wgvdj8", sceAgcDcbDrawIndirectGetSize) +STUB("cxRN3ES1Hmk", LoginMgrSetUserStatus) STUB("cxU4JdRt7So", sceVnaSetSessionInfo) +STUB( + "cxUFsFdbVdQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "cxaFAuLyJcU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEC1Ev) +STUB("cxaH7f6tnX8", uloc_getDisplayVariant) +STUB( + "cxcBOqGbcU0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEED2Ev) +STUB( + "cxdO4LYM5DY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEdeEv) STUB("cxdklXtQcqA", sceKernelSetTimezoneInfo) +STUB( + "cxh9Tu8zj+0", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo24setxPsnAtomicOperationIdEPKc) +STUB( + "cxkUS0SoswI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEED1Ev) +STUB("cxkheJoPLXw", Java_sun_awt_image_PNGImageDecoder_composeRowByte) +STUB("cxp4MLZSorA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE5emptyEv) +STUB("cxqmCloMMRw", _ZN3WTF9URLParser15isSpecialSchemeERKNS_6StringE) +STUB("cxqzgvGm1GI", _ZTISt12length_error) +STUB( + "cxwMI4Q8vpo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEdeEv) +STUB("cxyAtDRWyvQ", _ZN7WebCore12SharedBufferC1EPKhm) STUB("cy+pAALkHp8", sceNpTusGetFriendsVariable) +STUB( + "cy1Lz51JJ6Q", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEneERKS9_) +STUB("cy2kWghrw-I", _ZN3sce2Np9CppWebApi7Matches2V117ResponseMatchTeam10getMembersEv) +STUB( + "cyHK3XKJMq8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) STUB("cyO5ShJxdnE", sceLncUtilGetAppStatusListForShellUIReboot) +STUB("cyOetqtQZ84", + _ZN3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate8fromJsonERKNS_4Json5ValueE) +STUB("cyRJs-mg5h0", Java_java_io_FileDescriptor_sync) +STUB("cyTN4IIukQU", _ZN7WebCore4Page23clearUndoRedoOperationsEv) +STUB("cyTkDCxgk6Y", Java_java_lang_UNIXProcess_initIDs) +STUB( + "cyWEjTH6na8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEED1Ev) +STUB( + "cyZ1T4e+okE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("cyZff9dyxEQ", _ZN9Inspector21PageBackendDispatcherD1Ev) +STUB("cyheZerH-jM", _ZNK15AbstractStorage13YoutubeFolder10GetServiceEv) +STUB( + "cymD7o6JjdU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "cymSGr+lAPI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEdeEv) +STUB( + "cytpXAmRUBU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEC2Ev) +STUB( + "cyv3E2aPb4A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEptEv) +STUB( + "cyv7dThJTjc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEC1EPKS8_) +STUB("cyy-9ntjWT8", _ZNSt12system_errorD0Ev) +STUB("cyzuDZNcuAo", mono_aot_Microsoft_CSharpunbox_trampolines) +STUB("cz01Hn935-U", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge10ChallengesEE19setCustomReturnCodeEi) +STUB("cz4mGxGqZIQ", _ZN7WebCore8SVGNames15text_anchorAttrE) +STUB("cz5x0BcGOZ8", _ZNK3WTF10StringImpl10tryGetUtf8ENS_14ConversionModeE) +STUB( + "cz9-7OXjxqY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEED1Ev) +STUB("czDQBpK7Fyo", JVM_ConstantPoolGetMethodAt) +STUB("czMa+cNtY5E", _ZN7WebCore16HTMLMediaElement14exitFullscreenEv) +STUB("czPHgWBiTS4", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEE3getEv) +STUB("czReUjajRN4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData8setrangeEPKc) +STUB("czWVTPt8ROo", + _ZN7WebCore19InspectorController15connectFrontendEPN9Inspector15FrontendChannelEbb) +STUB("czYtDOJxbwc", _ZNK7WebCore5Frame25trackedRepaintRectsAsTextEv) +STUB("czYxY9SqkA8", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEEC2Ev) +STUB("czcFqaa4PUU", __libunwind_Unwind_GetGR) +STUB( + "czekpXGQh4c", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEE3getEv) +STUB( + "czfcU2dLFdE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "cziF5JgsqAM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot13unsetsortModeEv) +STUB( + "cziLsQ2mp9k", + _ZN7WebCore25WebSocketChannelInspector24didReceiveWebSocketFrameEPNS_8DocumentERKNS_14WebSocketFrameE) STUB("czjZfpELYZs", sceSdecCreateSw) +STUB( + "czp+GSNgfew", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("czpfcIjopH0", _ZN7WebCore8SVGNames6dyAttrE) +STUB("czqFOWF2cQw", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10setString4EPKc) +STUB("czswpVj+PeQ", _ZN3JSC11ProxyObject6s_infoE) +STUB( + "czt-pRMbxtE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEppEi) +STUB("czv64NNwlvA", u_unescapeAt) +STUB("czzWPU8zXD0", _ZN3JSC7Symbols25definePropertyPrivateNameE) +STUB("d++4nnx2Qr0", _ZN7WebCore11MediaPlayer13tracksChangedEv) +STUB( + "d++UB1UuVQE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEC1EPKS8_) +STUB( + "d+2LUoWLqhA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEixEm) +STUB("d+2nOPKQeT8", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_13TusDataOutputEED2Ev) +STUB( + "d+3k6Nwap2A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEED1Ev) +STUB( + "d+D1U+oJP4U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEED2Ev) +STUB("d+FuSvGsliA", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEEC1EPS6_) +STUB("d+G-F27Z0RI", _ZN3WTF14FileSystemImpl14MappedFileDataC1EiNS0_14MappedFileModeERb) +STUB( + "d+J+43PhnGE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEC2ERKS7_) +STUB("d+JXnLYDYk4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEED2Ev) +STUB("d+MxL9XXIRM", _ZNK10__cxxabiv120__si_class_type_info7cast_toEPvPKNS_17__class_type_infoE) +STUB("d+WRN-Uj4qU", _ZN7WebCore15AffineTransform8multiplyERKS0_) +STUB( + "d+XOcxkTtTs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEC2EPKS8_) +STUB("d+c5fq1tjZk", _ZN7WebCore14characterCountERKNS_11SimpleRangeEt) +STUB("d+iaS-646Uk", Java_java_util_zip_Deflater_end) STUB("d+lmTLvsaRs", sceNpManagerIntCheckNpAvailabilityByPid) +STUB("d+pFrmN-aV4", _ZN7WebCore21JSRemoteDOMWindowBase6s_infoE) +STUB( + "d+pH9+L7JYY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEED1Ev) +STUB("d+qljVI5Zyg", _ZN3JSC21loadAndEvaluateModuleEPNS_14JSGlobalObjectEPNS_6SymbolENS_7JSValueES4_) +STUB( + "d+qs5c8KdIU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEaSERS7_) +STUB("d+tYPDhnw0s", il2cpp_type_get_type) +STUB( + "d+vk7yIzUsc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEeqERKSA_) +STUB("d+xJZ63-wrc", _ZN3sce2np8HttpFile4ReadEPNS0_6HandleEPvmPm) STUB("d-15YTCUMVU", sceSystemServiceIsAppSuspended) +STUB("d-43Pgpxqs0", Java_java_awt_GnmGraphics_nativeDrawString) STUB("d-6uF9sZDIU", sceAgcSetCxRegIndirectPatchAddRegisters) +STUB( + "d-9a3eAXC7w", + _ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForReadC2EPNS1_6Common10LibContextE) STUB("d-BBSEq1nfc", sceRemoteplayNotifyMbusDeviceRegistComplete) +STUB("d-Bkd4X28NE", __ubsan_handle_implicit_conversion) +STUB("d-GQB0t83+s", WKContextSetPlugInAutoStartOrigins) +STUB("d-MOtyu8GAk", _ZNSt7collateIwEC1Em) +STUB("d-N2jbK38jQ", JVM_MaxObjectInspectionAge) +STUB("d-SCZVeo+Hs", _ZN3JSC18GCActivityCallback15createEdenTimerEPNS_4HeapE) STUB("d-YDTQrxDJA", sceNpGameIntentLaunchApp2) +STUB("d-YRIvO0jXI", _ZSt5wcout) STUB("d-YcZX7SIQA", sceGnmSqttSetUserdataTimer) +STUB( + "d-chdeX3Qmc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEcvbEv) +STUB( + "d-jFwqA7N0w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEE7add_refEv) STUB("d-kSG2fLrvI", sceUltFinalize) +STUB("d-nYiix1Y68", _ZNK3sce2Np9CppWebApi6Common6String4sizeEv) +STUB("d-nucrQRJZg", _ZN3sce2npneERKNS0_10NpOnlineIdERK13SceNpOnlineId) +STUB("d-tpkqffj6I", _ZN7WebCore36ISOProtectionSystemSpecificHeaderBoxD0Ev) +STUB("d-xOFygC42c", WKGrammarDetailGetLength) +STUB("d-zvst0wHqY", _ZN3sce7Toolkit2NP2V211SharedMedia14CommonMetadata20MAX_LEN_SERVICE_TYPEE) +STUB( + "d063Za+gTWA", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "d07-jGfEYUU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEEC1ERSA_) +STUB( + "d09rgWx8EYw", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ErrorResponseFactory7destroyEPNS3_13ErrorResponseE) +STUB("d0DP2t5FZmY", _ZN7WebCore17execStateFromPageERNS_15DOMWrapperWorldEPNS_4PageE) +STUB("d0DUtS4NbvM", _ZN7WebCore12PrintContextC2EPNS_5FrameE) +STUB( + "d0Dclzb-DnI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE8pushBackERKS8_) +STUB("d0FY5xvaA28", png_create_write_struct) STUB("d0IkWV+u25g", sceNpManagerIntPfAuth) +STUB("d0L--Yd9fQc", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku11getUseLimitEv) +STUB( + "d0PgQ-qzaug", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE6resizeEj) +STUB("d0TgXzscRKc", _ZN3JSC7Symbols40asyncGeneratorFieldQueueFirstPrivateNameE) +STUB("d0WQMCDU+ag", _ZN3sce7Toolkit2NP7TusDataC1Ev) +STUB("d0bS5rA7fCk", _ZNK7WebCore12SharedBuffer20tryCreateArrayBufferEv) +STUB("d0bTChkf6mI", izrule_equals_67) +STUB( + "d0buB1UgZ8U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE8capacityEv) +STUB("d0faxoQEkig", Java_java_net_PlainDatagramSocketImpl_join) +STUB( + "d0jnPVLIzEw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEE7get_refEv) +STUB( + "d0oZbX7yd+4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE21intrusive_ptr_add_refEPS9_) STUB("d0r1sw3mTqM", sceCesUtf32leToGb) +STUB("d0rbTAAL7xc", + _ZN6WebKit17ChildProcessProxy11sendMessageEN3WTF10PassOwnPtrIN7CoreIPC14MessageEncoderEEEj) +STUB("d0uhG40ExAM", mono_aot_Sce_Vsh_Passcodeplt_end) STUB("d0vezuPZxtg", sceKernelMapToolMemory) +STUB( + "d0vyd35Wew4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("d0yLGKq7juM", _ZN3sce7Toolkit2NP2V26Trophy7Request13SetScreenshotC1Ev) +STUB("d0zSLZMER34", _ZN3sce2npltERKNS0_4TimeES3_) +STUB("d1+yj3kOWKQ", ulistfmt_open_67) +STUB("d10HqWDkWV4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEptEv) +STUB( + "d142rQ9Ks4c", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB( + "d145lXy9+34", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEdeEv) +STUB("d18D8z+7GC0", mono_jit_cleanup) STUB("d1AjT2uZJn0", sceVideoOutSysGetVblankStatus) STUB("d1CNGEOaK28", sceGameUpdateAbortRequest) +STUB("d1E75ZBT8dQ", + _ZN3sce2Np9CppWebApi7Matches2V124RequestCompetitiveResult8fromJsonERKNS_4Json5ValueE) +STUB("d1FrWWdLdvA", _ZN3sce7Toolkit2NP15CategoryInfoSubC1Ev) +STUB("d1IXlZ0caEU", WKGeolocationPermissionRequestAllow) +STUB( + "d1JNRlPdbpE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("d1L-vfZ3KfU", _ZN3WTF11Persistence7DecoderrsERNS_8OptionalIjEE) +STUB( + "d1L90-vL8TE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEC2Ev) +STUB("d1MOhanI0Hw", _ZNK3sce2Np9CppWebApi13InGameCatalog2V514ContainerMedia11imagesIsSetEv) +STUB("d1QLBV+0Mf4", _ZN3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectatorD2Ev) +STUB("d1QgUf4mz7k", mono_aot_System_IO_Compression_FileSystemunbox_trampolines) +STUB( + "d1SmxjQT8Qg", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors25validationConstraintIsSetEv) +STUB( + "d1TV4QMsSwY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "d1XP52svCNo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("d1YfPgzKdUQ", llvm_resume_unwind_trampoline) +STUB("d1bcQFkjzUE", WKBundlePageSetApplicationCacheOriginQuota) STUB("d1dupKoGH1Q", sceUpsrvUpdateGetFeatureListUrl) +STUB( + "d1eEjWR60wk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEED1Ev) STUB("d1fpR0I6emc", sceFontGraphicsCanvasGetPreprocess) +STUB( + "d1i5SRSNNwo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("d1ixA0HkW5s", coil_gethostbyname) +STUB( + "d1lM8ZXXLpk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("d1vb5I3kFz4", _ZN19HardwareConcurrencyC2Ev) +STUB("d1wSZF1WYp4", YGNodeStyleSetFlexBasisPercent) +STUB("d205iUFMyyE", _ZN3sce3Job10JobManager10initializeEPvmjjPKNS1_12ConfigParamsE) +STUB("d20WUyyiSr8", _ZNK7WebCore28InspectorFrontendClientLocal28userInterfaceLayoutDirectionEv) +STUB( + "d21IMPjuu6Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE5emptyEv) +STUB( + "d28sm3S-XMk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEE7add_refEv) +STUB("d29IopDYFrI", _ZN7WebCore16VisibleSelection27selectionFromContentsOfNodeEPNS_4NodeE) +STUB("d29LTGHLzbs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEC2Ev) +STUB( + "d2DWvAYLu3w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEEC2ERSA_) +STUB( + "d2EYmGJVQNY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("d2IOtQGjd-M", _ZN7WebCore25directionOfEnclosingBlockERKNS_8PositionE) +STUB( + "d2JuGu+UcU8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("d2K+sIYMoh4", mono_aot_Sce_PlayStation_PUIPlatformjit_code_end) +STUB("d2Lfn5fLxH8", Java_java_io_FileOutputStream_write0) +STUB("d2LjpmVBqEA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEEC2EPNS2_10LibContextE) STUB("d2Qk-i8wGak", scePadIsLightBarBaseBrightnessControllable) +STUB( + "d2RBPDfdKXk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEED2Ev) +STUB( + "d2Rkd0lsdl0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("d2Rtb9uK6ac", _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_6StringEEeqERKS5_) +STUB( + "d2S2W4HK984", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEC2Ev) STUB("d2TeoKeqM5U", sceHmdInternalSeparateModeClose) +STUB("d2UmeNMcWZI", MASSValueSizeMax) +STUB("d2aez8ELvSU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE3endEv) STUB("d2g5Ij7EUzo", sceHmdOpen) +STUB( + "d2jM49DjE2I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEED2Ev) +STUB("d2kMlNVjxC8", _ZN15AbstractStorage14TwitterContent6RemoveEv) +STUB("d2mPxeXsfhA", mono_aot_Sce_Vsh_Np_Webapiunwind_info) +STUB( + "d2qLPFL90dc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEppEi) +STUB("d2u38zs4Pe8", _ZNSt3pmr20get_default_resourceEv) +STUB("d2v0M31RiLg", _ZN3sce2Np9CppWebApi15ProfanityFilter2V223FilterProfanityResponseD1Ev) +STUB("d2yn9y60yEU", _ZN3sce7Toolkit2NP2V27Session7Request5LeaveC1Ev) +STUB("d2ywI8LGgW0", _ZN7WebCore15HTMLFormElement15setAutocompleteERKN3WTF12AtomicStringE) +STUB("d34n7ihxDwc", utmscale_fromInt64_67) +STUB("d38462nDjJg", _ZN7WebCore21BlobDataFileReference26startTrackingModificationsEv) +STUB("d38bTmxILUQ", glDeleteQueriesEXT) +STUB( + "d3AR6bht5y0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "d3BbxfGmStE", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "d3DH-QgjgR8", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE5startEPNS2_10LibContextEm) +STUB( + "d3Ex8uUip0s", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("d3IeatK6Jpw", WKBundleGetFastMallocStatistics) STUB("d3OnoKtNjGg", sceSystemServiceDisableVoiceRecognition) +STUB( + "d3PJkPbqUkQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEE7get_refEv) +STUB("d3Te73gW0P8", + _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse8fromJsonERKNS_4Json5ValueE) STUB("d3WL2uPE1eE", sceAudioOutSetSparkParam) STUB("d3aALUluqfs", sceVnaStopKeywordDetection) +STUB("d3dMyWORw8A", wcstol) +STUB("d3jT67cXUEE", mono_aot_Sce_Vsh_GameListRetrieverWrapperjit_code_end) STUB("d3lKWPM6odc", sceAmprAmmCommandBufferAllocatePaForPrt) +STUB( + "d3skciIZ9VM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEE11release_refEv) +STUB("d3w05e8R5B0", mono_aot_Sce_Vsh_AppContentUtilWrapperplt) +STUB( + "d3xg7k-K3wA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEC2Ev) +STUB( + "d3yM-rgE0V0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEppEv) +STUB("d4+uz7pRCbY", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product14getContentTypeEv) +STUB("d4-KuFcRlSY", _ZN3JSC7Symbols14setPrivateNameE) +STUB( + "d41nZ7Xx0oI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE7popBackEv) +STUB( + "d45qUlrta88", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEE3getEv) +STUB("d46wLHA3oa4", mono_aot_Sce_CloudClient_App_Platformplt_end) +STUB( + "d47nja3UCp0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "d4DamsOE83I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEixEm) STUB("d4EwWAQgJlk", sceBgftServiceIntUploadSetHighPriority) +STUB( + "d4LnIv0K8-o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE7popBackEv) +STUB("d4MQSGB8NqI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session14InvitationDataEED1Ev) +STUB("d4NRVtQBHTg", _ZN3sce7Toolkit2NP2V28Matching5RoomsaSERKS4_) +STUB( + "d4RMAuwoeyo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEE11release_refEv) STUB("d4SQL+QQLTY", sceAjmInstanceAvailable) +STUB( + "d4Vuny13skY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEC2EPS8_) +STUB("d4ZCwLK2+ZI", mono_metadata_parse_type) +STUB("d4cSor+VcGg", _ULx86_64_dwarf_find_proc_info) STUB("d4fHLCGmY80", sceRtcSetCurrentTick) STUB("d4imyunHryo", sceSystemServiceRequestPowerOff) +STUB( + "d4ipgygPvKs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEplEm) +STUB("d4jTDqgfDDQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE7popBackEv) +STUB("d4kYK4Z+ay8", _ZN3JSC17JSArrayBufferView18possiblySharedImplEv) +STUB( + "d4m8LjLctA4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEE11release_refEv) +STUB("d4mB8nRN2tU", _ZN3WTF13printInternalERNS_11PrintStreamEm) +STUB( + "d4oLaZ3v0UU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEED2Ev) +STUB( + "d4u5czqFuSk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEEC2Ev) +STUB( + "d5-DBt5Ys90", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEED1Ev) +STUB( + "d50RRoYfim0", + _ZN3sce2Np9CppWebApi14SessionManager2V139RequestCreatePlayerSessionPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_32RequestCreatePlayerSessionPlayerEEE) +STUB("d57FDzON1h0", + _ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE8_PutmfldES3_bRSt8ios_basecbSsc) +STUB("d57J4SZ15tM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEEC2EPKS6_) +STUB("d57NUp5Sn34", u_austrcpy_67) +STUB("d57WcqMvoWg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEC1ERKS7_) +STUB( + "d57xaXYhMYs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEED1Ev) +STUB("d5FPRTy4-i8", _ZN3sce2np10EventQueueC1EP14SceNpAllocator) +STUB("d5Fv6HbZ5NQ", _ZN7WebCore9HTMLNames12ontoggleAttrE) +STUB("d5LwAYdjVqk", _ZN15AbstractStorage14YoutubeContent8SeekByteEliPl) +STUB("d5NA5pVIKOk", _ZN7WebCore8SVGNames6g1AttrE) +STUB("d5Q-h2wF+-E", __sync_fetch_and_xor_16) +STUB( + "d5RPvOdnug4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEC1ERKS7_) +STUB( + "d5VwKCllMSU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEEaSERKSA_) +STUB( + "d5eZ5TcO5ZA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEmmEv) +STUB("d5exEUOOXgE", _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error12unsetMessageEv) +STUB("d5owEaB791c", _ZN3sce7Toolkit2NP2V24Core7Request20DefaultRequestParamsD1Ev) +STUB("d5rhOaMjg0E", WKContextConfigurationCopyIndexedDBDatabaseDirectory) +STUB("d5sXY2Kxn9I", _ZN3sce2Np9CppWebApi12Leaderboards2V15Error16unsetReferenceIdEv) +STUB( + "d5u8DWX+hQw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEaSERKS9_) +STUB("d5vSl0NN8vg", _ZN7WebCore13MIMETypeCacheC1ERKS0_) +STUB( + "d5wKX4BqjiM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("d5wt20GITGs", Java_java_lang_StrictMath_sqrt) +STUB("d5xkh7fa3mU", + _ZNK3sce2Np9CppWebApi7Matches2V125ResponseCompetitiveResult18playerResultsIsSetEv) +STUB( + "d5yVA3A-LjM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEEC2ERKS9_) +STUB("d5zAkrYGC2w", _ZN3WTF3URL23fakeURLWithRelativePartENS_10StringViewE) STUB("d62tjPSg5AU", sceClHttpCreateRequestWithURL) +STUB( + "d63B3QV-YQ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEE7add_refEv) STUB("d695X978Bgw", sceNpPushStopNotification) +STUB( + "d6EPRGFv7LE", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE8sendDataEPKvm) +STUB( + "d6Ej1sOnGrM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEC1Ev) +STUB("d6GwJ-nKqy0", _ZTVN15AbstractStorage18DailymotionServiceE) +STUB( + "d6Hd-euWyv8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEEC2ERKSA_) +STUB("d6Jk39Pps14", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13WhoLikedStoryEE8allocateEmPKv) +STUB( + "d6R0MPN4KEA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEC1EPNS2_10LibContextE) +STUB("d6TEAkbrkO4", nn_send) +STUB("d6VhXgryz7s", _ZN9Inspector28InspectorScriptProfilerAgent13startTrackingERN3WTF6StringEPKb) +STUB( + "d6X6gaMdp-Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEC2Ev) +STUB( + "d6XWvviraos", + _ZN6WebKit12ChildProcess18addMessageReceiverEN7CoreIPC15StringReferenceEPNS1_15MessageReceiverE) +STUB("d6ZIY03VGsw", _ZN7WebCore16NavigationActionC1ERKS0_) +STUB("d6bTyjqauww", mono_mlist_length) +STUB("d6eou47U+3o", mono_assembly_name_get_pubkeytoken) +STUB("d6f-p5k5KmI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEixEm) +STUB("d6pRzr7hbZk", _ZN7WebCore19TextResourceDecoder6decodeEPKcm) +STUB("d6qU-Mb3RmA", WKContextGetMediaCacheManager) +STUB( + "d6tI-slVQ+w", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEeqERKS9_) +STUB( + "d6y7mcKBkgM", + _ZN9Inspector21HeapBackendDispatcher8snapshotElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "d7+SmmV5ILU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEneERKS9_) +STUB( + "d736MEFkr6Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "d73vLUbUgwc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE21intrusive_ptr_sub_refEPS7_) +STUB( + "d73y909B7M8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("d77poKB+no4", SwCtrlManagerActivate) +STUB("d794fo942JM", _ZNK7WebCore5Color7getRGBAERdS1_S1_S1_) +STUB("d7AAqdK2IDo", CA_MGMT_freeCertDistinguishedNameOnStack) +STUB("d7EJbW9-y6A", _ZN7WebCore12ChromeClient23supportsVideoFullscreenEj) +STUB( + "d7EKPA1ZgI8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEptEv) +STUB( + "d7M-jz5OqbI", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_13FriendsOfUserENS1_15AppSTLAllocatorIS5_EEEED1Ev) +STUB("d7NHFLL-ybY", ratfun_gam) +STUB( + "d7OudoEk+ks", + _ZN3sce2Np9CppWebApi14SessionManager2V127GameSessionSpectatorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_20GameSessionSpectatorEEE) +STUB("d7TCmjy+C-4", _ZN7WebCore9JSDOMRect9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "d7VybD5NYP8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEC1EPKS8_) +STUB("d7YcMYGNv0M", _ZN7WebCore13ContainerNode11removeChildERNS_4NodeE) +STUB("d7ZaooUTFKY", makeUlpNtfHdr) STUB("d7bXuEBycDI", scePadDeviceOpen) +STUB( + "d7cla40ORx0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) STUB("d7dDgRY+Bzw", sceFontGetEffectWeight) +STUB( + "d7gNktJM2hs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEEC1ERKSC_) +STUB("d7nUj1LOdDU", clock_settime) +STUB("d7nXqiztOaU", _ZNK7WebCore15JSDOMWindowBase17printErrorMessageERKN3WTF6StringE) +STUB( + "d7r5l4-3+rw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE7reserveEi) +STUB("d7rrVZ4bYZg", _ZN3sce2Np9CppWebApi10Activities2V114UserActivities8Activity9setHiddenERKb) +STUB( + "d7rwJzNC6MY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEEC2Ev) +STUB("d7uolLDTXMs", delegate_virtual_invoke_25_p) +STUB("d7zM-weN8tg", _ZN7WebCore9HTMLNames16aria_pressedAttrE) +STUB("d8-j5KHO55s", _ZN7bmalloc12IsoTLSLayoutC1ERKSt11scoped_lockIJNS_5MutexEEE) +STUB("d8009G+6bRw", _ZN3sce7Toolkit2NP2V212NetworkUtils7Request19GetBasicNetworkInfoC1Ev) STUB("d84otraxt2s", sceAudioPropagationSourceCreate) +STUB( + "d8711bF8sBg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEdeEv) STUB("d88anrgNoKY", sceGnmDriverTriggerCapture) +STUB( + "d88b2LEdd2Q", + _ZN7WebCore10Pasteboard4readERNS_26PasteboardWebContentReaderENS_23WebContentReadingPolicyEN3WTF8OptionalImEE) +STUB("d8BlA0ixNNw", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container11ratingIsSetEv) +STUB( + "d8FFlD9rEoM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEneERKS9_) STUB("d8FcbzfAdQw", sceAvPlayerGetStreamInfo) +STUB("d8KjVBI0lWI", il2cpp_init_utf16) +STUB("d8N1njJwrGE", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS25AtomicAddToAndGetVariableEED1Ev) +STUB("d8NGGmSEFfU", _ZN3sce2np7RingBuf15CheckoutForReadEPm) +STUB("d8NSxo9Uzjs", _ZN3sce7Toolkit2NP2V27Session14SessionDetails10STATUS_LENE) +STUB("d8OlbJ+fuX4", WKPreferencesSetVideoPlaybackRequiresUserGesture) STUB("d8P11CI40KE", sceNpTrophy2DestroyHandle) +STUB( + "d8SlSaOD8ZE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEC1EPNS2_10LibContextE) +STUB("d8VHKqobEDE", __tsan_write2_pc) +STUB( + "d8VHp8bMxIc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEeqERKS9_) STUB("d8VkdhIzhoI", sceDebugGetThreadInfoByIdent) +STUB("d8WDuLpn2oE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEC2ERS7_) +STUB( + "d8XIOOlvxiM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEE11get_deleterEv) STUB("d8ZF6RxS4gg", sceNpManagerIntMAccountId2UserId) +STUB("d8iqr1DmuQ0", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEE11get_deleterEv) +STUB( + "d8pBmqWizgs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEmmEv) STUB("d8roQ6sbk8E", sceDeci4hDrfpRead_fuse) +STUB( + "d8ssD8F4WM4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("d8w1B81RImI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEEC2ERKS6_) +STUB("d9-3aRCmg3o", Java_java_lang_System_setErr0) +STUB("d9-l0C7GhTM", _ZN4Manx11MediaSourceD2Ev) +STUB( + "d92Hdw59kB0", + _ZN3sce7Toolkit2NP2V27Ranking13getUsersRanksERKNS3_7Request13GetUsersRanksEPNS2_4Core8ResponseINS3_10UsersRanksEEE) +STUB( + "d93Q-dCF4bQ", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead17setRepresentativeERKNS1_6Common12IntrusivePtrINS3_14RepresentativeEEE) +STUB( + "d946UCxQu+4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEE11release_refEv) +STUB("d95AS8gZm4w", EVP_Digest) +STUB( + "d95lOONRMH4", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUserC2ERS5_) +STUB( + "d98lbfSgFFI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEC1EPS6_PNS2_10LibContextE) +STUB( + "d9B9T9mFBCw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE7reserveEi) STUB("d9DOmIk9-y4", sceUserServiceGetParentalDvdRegion) +STUB( + "d9L-+Tlp4Js", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("d9LecOXWVDM", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_7TssDataEED1Ev) +STUB("d9MkJ08kHAw", _ZN4Manx9X509chainC2EPv) +STUB( + "d9N3khVxERQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE5beginEv) +STUB( + "d9RbIuI9eDI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEC2EPS8_) +STUB( + "d9WsEkoM47w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEE7get_refEv) STUB("d9XUi2-zgWw", sceWorkspaceGetName) +STUB("d9dUuvHbpSc", uhash_geti_67) +STUB("d9hR+6plJeM", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13WhoLikedStoryEEC1ERKS4_) +STUB( + "d9hgjnxG-R8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE10setContextEPNS2_10LibContextE) +STUB( + "d9iqPfxQO9Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEC1EPKS8_) STUB("d9jpdPz5f-8", sceNpTrophyShowTrophyList) +STUB("d9lLqtojQDw", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE8pushBackERKS6_) +STUB( + "d9ps4iv7mY4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEED1Ev) +STUB("d9tCx7OTo00", WKCookieManagerGetHTTPCookieAcceptPolicy) +STUB( + "d9thDxDo9xo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEE7add_refEv) +STUB("d9wUgP2BgoI", rgctx_fetch_trampoline_rgctx_88_p) +STUB( + "dA0BfgUC88k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE5beginEv) +STUB("dA1umJ9EuOQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE5beginEv) +STUB("dA1xL5O784A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEE3getEv) +STUB("dA7DMksqQNo", _ZN9Inspector28DOMDebuggerBackendDispatcherD1Ev) +STUB( + "dA7OypaLjBk", + _ZN3sce2Np9CppWebApi7Matches2V127ReportResultsRequestFactory7destroyEPNS3_20ReportResultsRequestE) +STUB("dAAPcYM0qz0", _ZN4Manx8X509cinfC2EPKS0_) +STUB("dAB1OO6k75Y", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V113ErrorResponse8getErrorEv) +STUB("dAEJ2lrVl+w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEaSERS7_) +STUB("dAFlE1oJe0I", + _ZN3sce7Toolkit2NP2V210Tournament7Request19SendTeamMatchReport20MAX_LENGTH_FREE_TEXTE) +STUB("dAGTHaOuY20", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOfferC1Ev) +STUB("dAKWNwkRfZw", WKFrameCopyProvisionalURL) STUB("dAKboxlYfH8", sceClPthreadAttrSetschedparam) +STUB( + "dAMJUWYlY+A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEE7get_refEv) +STUB("dASQMnaMR1E", + _ZNK3sce2Np9CppWebApi7Matches2V123ResponseMatchStatistics21playerStatisticsIsSetEv) +STUB( + "dAVKgy1FNQY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEEaSERSA_) +STUB( + "dAXqmHZfdQw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEEC1Ev) +STUB("dAYfKRKR2QQ", _ZN7WebCore23HTMLTableSectionElement9deleteRowEi) +STUB("dAZCqCmGpDc", _ZN3sce7Toolkit2NP2V212ActivityFeed12SharedVideosD1Ev) +STUB("dAZNLw22-cY", _ZN3sce2Np9CppWebApi7Matches2V116JoinMatchRequest19unsetNpServiceLabelEv) +STUB( + "dAb+smglduU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE5beginEv) +STUB("dAfV5bXQvkw", _ZN12video_parser17cVideoProfilerMp417getMediaInfoCountENS_11MediaType_eEPj) +STUB("dAh1WPfn6OU", _ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriendsC2ERS5_) +STUB("dAkYQ-Y2O88", WKPreferencesSetLocalFileContentSniffingEnabled) +STUB( + "dAnCuYS5Aro", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEdeEv) +STUB("dAwoEOHTuM0", _ZN3sce7Toolkit2NP15AppSTLAllocatorI16SceNpTusVariableEC1Ev) STUB("dB4-3Wdwls8", sceFontStyleFrameSetResolutionDpi) +STUB( + "dB4I8wLeExE", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE11hasResponseEv) +STUB("dB6TtjT0NvY", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15NpSessionMemberEEC1Ev) +STUB("dB9nauAWtgg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS3_5EmptyEE5resetEv) +STUB( + "dBBHYPWGSBg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEC2EPKS8_) STUB("dBDFTSSa7gI", sceCesUtf32StrGetIso2022Len) +STUB("dBL+E3Irt4c", _ZN3JSC10loadModuleEPNS_9ExecStateERKNS_10SourceCodeENS_7JSValueE) +STUB("dBLuB8tIN5c", _ZN3sce7Toolkit2NP19AllocImplementation13externalAllocE) +STUB( + "dBPsKUismjA", + _ZN3sce7Toolkit2NP15CommunicationIdC2ERK20SceNpCommunicationIdRK28SceNpCommunicationPassphraseRK27SceNpCommunicationSignature) +STUB("dBR94+JFRc0", _ZNK7WebCore10TimeRanges4copyEv) +STUB( + "dBZuUCAD8gU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE10setContextEPNS2_10LibContextE) +STUB("dBa+LyR7Nic", GCC_except_table411) +STUB("dBbFlmweYqQ", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V115LastUpdatedUserD1Ev) +STUB("dBdRVaph9NE", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12FriendsRanksEE5resetEv) +STUB("dBe3-Uhv8UQ", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_34DetailedProductInfoListInputParams9ProductIdEEC2Ev) +STUB("dBh7Cg7VhHk", ucal_setMillis_67) +STUB( + "dBqndDRZSo4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEE11get_deleterEv) +STUB( + "dBrUQE3Pcuw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEC2EPNS2_10LibContextE) +STUB("dBvEcISh9mM", mono_security_set_mode) +STUB("dC+0Pz5afr0", ubrk_following) +STUB( + "dC1JuufJrvs", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessions13isInitializedEv) +STUB( + "dC4lDyy7Yzk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEC2EPKS8_) +STUB("dC6Jyei3tIE", _ZN7WebCore14SecurityPolicy27resetOriginAccessWhitelistsEv) +STUB( + "dC7jALjok28", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEE7add_refEv) +STUB( + "dC7v2BolpQQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEE11get_deleterEv) +STUB( + "dC9lut-BufE", + _ZN3JSC7JSProxy3putEPNS_6JSCellEPNS_14JSGlobalObjectENS_12PropertyNameENS_7JSValueERNS_15PutPropertySlotE) +STUB( + "dCFnHleej7w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("dCRcdgdoIEI", SSL_ASYNC_acceptConnection) +STUB("dCSZSJpRB-E", _ZNK3sce2Np9CppWebApi7Matches2V15Error10getMessageEv) +STUB("dCSzobrRaAc", _ZN3sce7Toolkit2NP2V27Ranking7Request13GetUsersRanks13MAX_NUM_USERSE) +STUB("dCVd7TqyhYA", WKBundlePageCopyRenderLayerTree) STUB("dCdhOJIOtR4", sceUserServiceSetKeyboardType) +STUB("dCeihPtadCM", mono_domain_assembly_open) +STUB( + "dClx8S7MimI", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeaders17unsetCacheControlEv) STUB("dCmNvuQjLIY", sceVideoCoreMediaSourceEndOfStream) +STUB("dCqMd9Se+4Y", mono_assembly_invoke_load_hook) STUB("dCvPEYm3gHk", sceNpManagerIntGetUserState) +STUB("dCzeFfg9WWI", _ZTVSt9exception) +STUB( + "dD2gQ7Ow+cQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEC2Ev) +STUB( + "dD5X7Q1I97U", + _ZN7WebCore23ScrollingStateFixedNode17updateConstraintsERKNS_32FixedPositionViewportConstraintsE) +STUB( + "dD7qGSK4Cik", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEppEi) +STUB("dDE-YNkxwCU", _ZNK7WebCore10RenderView20unscaledDocumentRectEv) +STUB("dDF6X5LGqCc", _ZN3sce7Toolkit2NP9Interface15printAllocStatsEv) +STUB("dDIjj8NBxNA", _ZTISt12codecvt_base) STUB("dDLNFdY8dws", sceNpSignalingCreateContextA) +STUB("dDQxPSs27CU", udat_registerOpener_67) +STUB( + "dDSQpWQiCq0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB( + "dDUZ-S228O0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEaSERS7_) +STUB( + "dDaNTjxdIPw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEE3getEv) STUB("dDaO7svUM8w", sceUserServiceSetPbtcWednesdayHoursStart) +STUB("dDc6-iayAyg", WKContextGetWebsiteDataStore) +STUB( + "dDlzy6GTsa0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEmmEv) +STUB( + "dDrbn+b0PyY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEED1Ev) +STUB( + "dDsO93XPYHo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEppEi) +STUB("dDthhs1K+LQ", _ZN7WebCore21UserContentController6createEv) +STUB( + "dDvd1empaxc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("dE2FrtAAyls", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEEC2Ev) +STUB("dE2PoJBF6Bg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEC1Ev) +STUB("dE6EbLNjC3A", X509_VERIFY_PARAM_set1_host) +STUB("dE6PSpWXRYY", unorm_getQuickCheck_67) +STUB( + "dEFkGzx+GW8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEC2Ev) +STUB( + "dEPny9BBzuo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("dET8gZDCX+I", _ZN3sce7Toolkit2NP2V210Tournament15RegisteredUsersD2Ev) +STUB("dEVX4p56-Hs", _ZN7CoreIPC13ArgumentCoderIN3WTF6StringEE6encodeERNS_15ArgumentEncoderERKS2_) +STUB("dEVr74VmImA", _ZN7WebCore15AsyncFileStream5closeEv) STUB("dEW3xn7DNFs", sceVisionManagerRequestCalibrateHmd) +STUB( + "dEYtK+6xJWU", + _ZN3sce7Toolkit2NP2V23TUS17tryAndSetVariableERKNS3_7Request17TryAndSetVariableEPNS2_4Core8ResponseINS3_12TusVariablesEEE) +STUB("dEdd7MSM2Mc", _ZNK3sce2Np9CppWebApi7Matches2V119CreateMatchResponse10getMatchIdEv) +STUB("dEh2A-saN9U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEEaSERKS7_) +STUB("dEhwVd9TAi8", _ZN3JSC15constructStringERNS_2VMEPNS_14JSGlobalObjectENS_7JSValueE) +STUB("dElf+13M5sM", ubrk_close_67) STUB("dEmGYmXkQv0", sceNetApctlTerm) +STUB( + "dEoWeYyP6FY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEEC2EPS8_PNS2_10LibContextE) +STUB("dEpGQRMxIQg", _ZNK7WebCore16HTMLTableElement5tFootEv) +STUB( + "dEqMhcUHC+0", + _ZNK3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V19RatingApi21ParameterToPostRating9getratingEv) +STUB("dEs0xf0KbqM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging16GameDataMessagesEEC2Ev) STUB("dEvJ2GWePUs", sceBgftServiceIntUploadGetTaskInfo) +STUB( + "dEvkstRBgQ0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEE3getEv) +STUB("dEydpmJiJ+0", _ZNK7WebCore17TiledBackingStore13mapToContentsERKNS_7IntRectE) +STUB( + "dF2hZtJ-u8A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEEC1ERSA_) +STUB("dF7iJZvkBkU", mono_aot_Sce_Vsh_Accessor_Db_Notifyjit_got) +STUB( + "dF8NOahA30k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEC2EPKS8_) +STUB( + "dFC4p8EhCWc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB("dFCphqnd+a4", _ZN3sce4Json5Value3setERKNS0_6ObjectE) +STUB("dFK6qxILum0", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V111LeaveReasonEEC1EPS6_) +STUB( + "dFMHRcV7j2Y", + _ZN7WebCore26PresentationOrderSampleMap39reverseFindSampleBeforePresentationTimeERKN3WTF9MediaTimeE) +STUB( + "dFQpcwCAhDw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEE11get_deleterEv) +STUB( + "dFWwhGOC4cQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEC2ERKS7_) +STUB( + "dFZTklj4f8U", + _ZN7WebCore4Page22setUserContentProviderEON3WTF3RefINS_19UserContentProviderENS1_13DumbPtrTraitsIS3_EEEE) +STUB( + "dFayviC8al0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("dFhgrqyzqhI", _ZNSt12placeholders3_20E) +STUB( + "dFjPcpI5oxo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEEptEv) +STUB("dFk+LbrIpxg", _ZN3sce2Np9CppWebApi15Personalization2V15Error10setMessageEPKc) +STUB( + "dFnWy8NeFeE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEE3getEv) STUB("dFuIkGWGshc", sceBufferDup) +STUB( + "dG-XAy1D+9w", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEneERKS9_) +STUB("dG345t3CDwI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEaSERKS9_) STUB("dG4XPW4juU4", sceHmdInternalSetDebugTextMode) +STUB("dG6FGUzIYGA", RnpsGetTicks) +STUB("dGAcIVHLm8o", _ZN7WebCore11MediaPlayer11naturalSizeEv) +STUB( + "dGDPeSjk5wM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEED1Ev) +STUB("dGEq3NZSXW8", _ItL_qS1) +STUB("dGOvpr26R2w", _ZN7WebCore9HTMLNames14formtargetAttrE) +STUB("dGP8tbtq8ws", il2cpp_field_get_parent) STUB("dGQfEXqep7Q", sceCesRefersUcsProfileCp865) +STUB("dGRODPp39yQ", _ZN3JSC37JSSegmentedVariableObjectHeapCellTypeC2Ev) +STUB("dGRdrO011dA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEC2Ev) +STUB( + "dGXklwxIzjc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEEcvbEv) +STUB("dGYo9mE8K2A", _ZNSt4_PadC2Ev) +STUB("dGa4MR9ijfg", mono_metadata_implmap_from_method) +STUB("dGgPG3NxLOY", _ZN7WebCore24MatrixTransformOperation5blendEPKNS_18TransformOperationEdb) +STUB( + "dGmqrQWGFqA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEE7get_refEv) +STUB( + "dGosD5di3C0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEmmEi) +STUB("dGrmvw2Y1qA", ft_stub_set_char_sizes) +STUB("dGstEBMWQ48", WKCertificateInfoCreateWithClientCertificate) +STUB("dGuEML7cY1k", _ZNK3sce2np9HttpTrans6IsInitEv) +STUB( + "dGvumr3kbZM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("dGyFEtp4kLk", _ZNK3sce2Np9CppWebApi14ConnectAccount2V214PSNError_error7getCodeEv) +STUB("dGzde7V8MjE", __wrap_statvfs) +STUB("dH+zYApecXc", _ZTVN15AbstractStorage13TwitterFolderE) +STUB("dH02CpEEcYk", FT_Done_FreeType) +STUB( + "dH0SPSJGJ8Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEcvbEv) +STUB("dH0bav-xGCc", _ZNSt16invalid_argumentC1EPKc) +STUB("dH0hodPYWMk", _ZNK3sce2Np9CppWebApi15Personalization2V15Error14getReferenceIdEv) +STUB( + "dH2SKb2vusw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE6resizeEj) +STUB( + "dH38cRrj1BA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEE5resetEPS6_) +STUB("dH3ucvQhfSY", _ZdaPvSt11align_val_tRKSt9nothrow_t) +STUB( + "dH5F3sRAFIE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("dH8G9YeAqJk", _ZNK7WebCore10Credential7isEmptyEv) +STUB( + "dHEUIM99LTw", + _ZN7WebCore9ImageData6createEON3WTF3RefIN3JSC21GenericTypedArrayViewINS3_19Uint8ClampedAdaptorEEENS1_13DumbPtrTraitsIS6_EEEEjNS1_8OptionalIjEE) +STUB("dHEkx2dEjo8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEEneERKS7_) +STUB( + "dHJ-wTCnMXc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEE5resetEPS9_) +STUB( + "dHJAAoUphPc", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V126BandwidthDownstreamMetrics18getConfidenceScoreEv) +STUB( + "dHJseF8Nqxs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEdeEv) STUB("dHK+qu5D2HM", sceCompositorSetDebugPositionCommand) +STUB("dHP0omwFe1E", __sanitizer_cov_trace_basic_block) +STUB( + "dHPn4nHdI0Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEEC1ERSA_) +STUB( + "dHQc1ykHX7Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEED2Ev) +STUB("dHdyG1xiejY", uenum_reset) +STUB( + "dHfl6ebMGis", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("dHosoPLXaMw", SSL_getSessionFlags) +STUB("dHs7ndrQBiI", _ZNSt10moneypunctIwLb0EEC1ERKSt8_Locinfomb) +STUB("dHvEj9tGtQ8", rgctx_fetch_trampoline_rgctx_47) +STUB("dHw0YAjyIV4", _ZTIN10__cxxabiv123__fundamental_type_infoE) +STUB("dHzNJaY7dnk", JNU_GetEnv) +STUB("dI1Y-XIAEqU", glDeleteSamplers) STUB("dI3StPLQlMM", sceHmdInternalCrashReportClose) +STUB("dI4YybA2qQs", _ZN3sce7Toolkit2NP2V23TUS7Request16GetUsersVariableC1Ev) +STUB("dI5TERV3hHU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEptEv) +STUB("dI6XUcHpPBc", _ZN3sce2Np9CppWebApi7Matches2V119CreateMatchResponse10setMatchIdEPKc) +STUB( + "dI7plgkx74c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEE7add_refEv) +STUB( + "dI9o0nvjjRA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEEC1Ev) STUB("dIA+v-Lh1+o", sceCompositorSetKeepDisplayBufferCommand) +STUB("dIA3Bf1HqjM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEEmmEv) +STUB("dIFd5OXQYtU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEED1Ev) +STUB( + "dIGwrELHGpk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEEaSERKSA_) +STUB( + "dII9sCeovJ0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEneERKS9_) +STUB("dIICGiPPmYI", X509_getm_notAfter) +STUB( + "dIN+FTuLQ6Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE5beginEv) +STUB( + "dIN-+Z6erlY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEC1EPS6_PNS2_10LibContextE) +STUB( + "dIOi4-jJcdA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("dIOkBqvECr4", + _ZNK3sce2Np9CppWebApi14SessionManager2V114Representative6toJsonERNS_4Json5ValueEb) +STUB( + "dIQ0OADmtPk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEE6assignEPS7_PFvS9_EPNS2_10LibContextE) +STUB( + "dIVMJ+4sxQM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEppEi) +STUB("dIVxrrdpS9M", _ZN3sce4Json6Object8iteratorppEi) +STUB( + "dIYxHj-gmLY", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearch9terminateEv) +STUB( + "dIZrIpol8Tg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("dIb+pDBvpkM", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEEppEv) STUB("dIb9LsrpkQM", sceVideoOutSysClose) +STUB( + "dIbc3aoXqDA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEC2Ev) +STUB("dIbolfOd0ls", _ZL17exception_cleanup19_Unwind_Reason_CodeP17_Unwind_Exception) +STUB("dIcP0UWgR0Y", JVM_GetMethodParameterAnnotations) +STUB("dIiGieE+kFY", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE4sizeEv) +STUB( + "dIjYYLfWrB0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE6resizeEj) +STUB( + "dIkzAPOI2nk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE6resizeEj) +STUB( + "dIp9pWmS-wc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE7popBackEv) +STUB( + "dIwPFbBNPU0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE7reserveEi) +STUB("dIwj75rcnHc", _ZN3JSC16IsoSubspacePerVMD2Ev) +STUB("dIxG0L1esAI", _ZTSPd) +STUB("dJ-gAyxuEZo", _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchStatusRequestD1Ev) +STUB( + "dJ2+BWqwL5o", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEeqERKS9_) +STUB( + "dJ46OIIsuHw", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariable9setslotIdEi) +STUB( + "dJAToEBTdtM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEneERKS9_) +STUB("dJGMa+okDOg", _ZN7WebCore21WheelEventDeltaFilter6createEv) STUB("dJJ0UPrrsok", sceNpSessionSignalingGetConnectionFromPeerAddress) +STUB( + "dJJP9Tydwfg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEE11get_deleterEv) +STUB( + "dJPSQW7l+Xk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEC2EPS8_) +STUB("dJQV4HTNzuQ", _ZN7WebCore11DisplayList22ApplyDeviceScaleFactorD0Ev) +STUB( + "dJR-onKGan8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEE7add_refEv) +STUB("dJRIc7d5iqU", _ZN3sce2np13NpTitleSecretD0Ev) +STUB("dJSADN0mj2w", _ZNSt9basic_iosIcSt11char_traitsIcEE5imbueERKSt6locale) +STUB("dJSD90mnj1w", _ZN3sce4Json5Value13s_nullintegerE) +STUB( + "dJZQIzmgGFw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEC1ERKS7_) +STUB("dJay5BWLVNU", _ZN3sce7Toolkit2NP2V212ActivityFeed12SharedVideosC2ERKS4_) STUB("dJcuQVn6-Iw", pthread_condattr_destroy) +STUB( + "dJg4XBxpG5w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEC1EPS8_) +STUB("dJin0-weqjc", mono_class_get_rank) STUB("dJo43e1jVoM", sceVideoOutSysSubmitSubWindowLayout) +STUB( + "dJpo+wslbYE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE5emptyEv) +STUB("dJrX1kyg7e0", mono_aot_Sce_Vsh_Sl2_Sl2Clientunwind_info) +STUB( + "dJsCKmgb-vQ", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V131BandwidthUpstreamMetricsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_24BandwidthUpstreamMetricsEEE) +STUB("dJvClIzSO9s", _ZTIg) +STUB("dJvEN3jbZuM", _ZTVN3WTF17StringPrintStreamE) +STUB("dJvVWc2jOP4", __floattixf) STUB("dJxro8Nzcjk", sceUsbdSetIsoPacketLengths) +STUB("dJz5g1oTF7c", _ZN7WebCore14MicrotaskQueue6removeERKNS_9MicrotaskE) STUB("dJzkNeDFeAM", sceCustomMusicCoreBgmOpen) +STUB("dK7Won-E3EQ", mono_thread_pool_cleanup) STUB("dK8-SgYf6r4", sceNpScoreDeleteRequest) +STUB("dKDHQDVme7A", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEEptEv) +STUB("dKDPfD6KvQc", Java_java_io_UnixFileSystem_list) +STUB("dKG2qYSn0Sc", X509_verify_cert_error_string) +STUB("dKIIZYGCGhQ", WKPageGetFrameSetLargestFrame) +STUB("dKQHpV5HDIQ", + _Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm14VgtPerfCounterE20SceRazorGpuBroadcast) +STUB("dKTVadRxXDs", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUserC2Ev) +STUB("dKU6o9uunCI", ubrk_getBinaryRules) +STUB( + "dKUBHYQlhMw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEED1Ev) +STUB( + "dKWTlMEXM9k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEC1ERKS7_) STUB("dKadqZFgKKQ", sceImeKeyboardGetResourceId) STUB("dKeshzt29G4", sceRegMgrNonSysGetInt) +STUB("dKjhNUf9FBc", _ZTISt12out_of_range) STUB("dKp8nyVReZI", scePssKeyboardTerminate) +STUB( + "dKq-cEFHpvI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEC2ERS7_) +STUB("dKq3cqnQFx0", _ZN3sce2Np9CppWebApi7Matches2V118RequestTeamResults8fromJsonERKNS_4Json5ValueE) +STUB( + "dKqzlkVwl6A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEppEi) +STUB( + "dKrE-sYA3r8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "dKtRZW9hjj4", + _ZN3sce2Np9CppWebApi7Matches2V120ResponseInGameRoster10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_19ResponseMatchPlayerEEEEE) +STUB( + "dKu10FXNBC0", + _ZN7WebCore9JSDOMRect6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_7DOMRectENS6_13DumbPtrTraitsIS8_EEEE) +STUB("dKxRSfasnKc", _ZN3sce7Toolkit2NP2V24Core19JsonMemoryPoolStatsC1Ev) +STUB("dKzR0C0qpTM", WKBundleHitTestResultCopyLinkLabel) +STUB( + "dL2CRNzDFwU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEeqERKS9_) +STUB("dL7+b8hSxmk", _ZN7WebCore19JSDOMMatrixReadOnlyD2Ev) +STUB("dL7wkqcugzw", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13integer4IsSetEv) +STUB( + "dLFwEEGoatU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("dLKXqZMhgwY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEEC2ERS7_) +STUB( + "dLLa4acmLeg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEmmEv) +STUB("dLNhHwYyt4c", _ZN3sce2np4Time15AddMicroSecondsEl) +STUB( + "dLQiwYDslDE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEC1Ev) +STUB("dLRVhzwk4h4", _ZN7WebCore11DisplayList9DrawImageD2Ev) +STUB( + "dLTBg3IxYBs", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("dLUPZJFaN64", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Error6toJsonERNS_4Json5ValueEb) +STUB( + "dLWImpiSKmE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE8pushBackERKS8_) +STUB( + "dLb38yhalsE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEaSERKS7_) +STUB( + "dLeDnSMicEw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEC1Ev) +STUB("dLeadZpmT8U", unum_parseDouble_67) +STUB("dLg68qG0SSE", + _ZN3sce7Toolkit2NP2V29Messaging25GameDataMessageAttachment19MAX_SIZE_ATTACHMENTE) +STUB( + "dLkr9evJ9Gg", + _ZN7WebCore11MemoryCache26removeResourcesWithOriginsEN3PAL9SessionIDERKN3WTF7HashSetINS3_6RefPtrINS_14SecurityOriginENS3_13DumbPtrTraitsIS6_EEEENS_18SecurityOriginHashENS3_10HashTraitsIS9_EEEE) +STUB( + "dLmDIHo-nSs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEeqERKS9_) +STUB("dLmvQfG8am4", __ucmpti2) +STUB("dLn4O8zBYOU", uset_resemblesPattern_67) +STUB( + "dLnS86HoNag", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEptEv) STUB("dLsPzF5r6WA", sceIduUtilGetMasterVersion) +STUB( + "dLvGjoQMQkM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEEcvbEv) +STUB("dLvYqphQ+l8", _ZN7WebCore30rejectPromiseWithThisTypeErrorERN3JSC14JSGlobalObjectEPKcS4_) +STUB( + "dLwMxBPXE0E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEEC2Ev) +STUB("dLwUVYV1jA0", _ZNK7WebCore11MediaPlayer17droppedFrameCountEv) +STUB("dM3hP4y99rM", hb_shape) +STUB( + "dMAA2OQp7LE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEC2ERS7_) STUB("dMDksJtEt1E", scePsmResourceCallback) +STUB( + "dMH7BeD6MUI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEE3getEv) +STUB("dMK1BHzvaNs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEEmmEv) +STUB("dMKbGZFdVLI", WKPreferencesSetJavaEnabled) +STUB("dMM77VaIqi8", Java_java_io_FileInputStream_skip) +STUB("dMPNR0z0WgQ", _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession9getMemberEv) STUB("dMQ+xGvTdqM", sceNpMatching2GetRoomMemberDataExternalList) +STUB("dMSDtQsYuJM", FT_Get_Advance) +STUB( + "dMXhL+eS4DM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEmmEi) STUB("dMaMqNmzAeg", sceCesUtf8ToEucKr) +STUB("dMbPuG5+zI4", ENGINE_finish) +STUB("dMfOOnkRNko", _ZN3sce7Toolkit2NP2V24Core5EmptyC2ERKS4_) +STUB("dMnCUhZnWJs", + _ZN3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead11setPlatformERKNS3_8PlatformE) +STUB("dMntbscdpEQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEE7get_refEv) +STUB("dN0JJUCsu94", __dummy__) +STUB("dN3++s2PlgY", uscript_getScriptExtensions_67) +STUB("dN33S5g2EZ0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE3endEv) STUB("dN3ooEQkn90", sceCompositorSetSystemConfigWithMask) +STUB("dN5g1l0usVo", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request7GetFeedD2Ev) STUB("dN5iXR8igXM", sceNetApctlGetState) +STUB( + "dN6XQ5pmeu4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE21intrusive_ptr_sub_refEPS9_) +STUB("dNGzROhnvKE", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed14PlayedWithFeedEE3setEv) +STUB("dNJPo8lBp+E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEE3getEv) +STUB("dNMNRaIQn1Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE8capacityEv) +STUB("dNMdheP8oUQ", WKContextGetStatistics) +STUB("dNOmrmW65Vs", ureldatefmt_formatNumeric_67) +STUB("dNP8LFGMzAg", rgctx_fetch_trampoline_mrgctx_55_p) +STUB("dNRpE5fIJro", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEEptEv) +STUB( + "dNUVi6ZQYCk", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_4Page12ResourceTypeEEESt8optionalIT_ERKN3WTF6StringE) +STUB("dNcXHd9lTbU", _ZN3JSC8Debugger18willExecuteProgramEPNS_9ExecStateE) +STUB("dNd3wwKJFbE", mono_aot_Sce_PlayStation_Corejit_code_start) +STUB("dNdtjq0c3K0", mono_string_new_wrapper) +STUB( + "dNl6qQCkG-4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE6resizeEj) +STUB( + "dNlP6QPiG8s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEEC2ERKSA_) +STUB( + "dNqvuwo3EJQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEEC1Ev) +STUB("dNtSIr75Zws", _ZNK7WebCore16HTMLMediaElement7canPlayEv) +STUB( + "dNuDh5fvVLU", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB( + "dNwStw+Nmgk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEC1EPS8_) +STUB("dNwZb3b5vc0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEE7add_refEv) +STUB( + "dNxsnBI+A+A", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions18getjoinStateFilterEv) +STUB( + "dNy3fRrwGno", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEC1EPS8_) STUB("dNyuci0PUD0", sceGnmInitialize) +STUB( + "dO07CzC4XhI", + _ZN9Inspector20CSSBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) +STUB( + "dO5Kj8zvNR4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEC1ERKS7_) +STUB("dO7-MxIPfsw", _ZTISt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE) +STUB("dO8sEmzD75U", _ZN7WebCore9CSSParserD2Ev) +STUB("dO9RGCbBqLE", ucnv_cbFromUWriteUChars) +STUB( + "dOAsThpqW94", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEEC2ERSB_) +STUB("dOB63+1z+QE", _ZN4Manx21DisplayRefreshMonitor5startEv) +STUB( + "dOCFwS-lv70", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("dOCQwaSQ0XY", _U_dyn_info_list) +STUB("dOKh96qQFd0", _ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED2Ev) +STUB( + "dOP40JcZrlc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEmmEv) +STUB("dOXJqnWa9DM", ures_getBinary_67) +STUB("dOXrKo7eB1o", il2cpp_array_new_full) +STUB( + "dOdVvoVfyHE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("dOiTueCS7U4", _ZN3JSC7Symbols30getOwnPropertyNamesPrivateNameE) +STUB("dOkZKbWKlh8", _ZN8meta_gen14ImageRetriever18IsUseThumbnailFileEv) +STUB( + "dOleXT7qzcA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEeqERKS9_) +STUB("dOn+IaKJAXk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEC1Ev) +STUB("dOnP-PRiTp0", _ZN3sce3pss5orbis5input12InputManager31GetInvalidOperationByOtherUsersEPb) +STUB( + "dOqTSHuknlY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEC2ERKS7_) +STUB( + "dOti2Fe0FEE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("dOy7pCh+keI", WKPageGroupAddUserStyleSheet) +STUB("dP+1suucXso", _ZNK7WebCore12SharedBuffer4dataEv) +STUB("dP+3UFf8BBw", _ZNK15AbstractStorage14TwitterStorage7GetStatEPNS_4StatE) +STUB("dP14OHWe4nI", _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE13do_date_orderEv) +STUB("dP1EbNocaYk", Java_java_lang_StrictMath_tan) +STUB( + "dP4yok0rwJA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("dP5zwQ2Yc8g", _ZNSt7collateIcED2Ev) +STUB("dP72lLgdpIQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V19JoinStateEEeqERKS7_) +STUB( + "dP786K4h6VA", + _ZN8meta_gen11MsvPromoter33setKeyValue_TBLV_AudioChannelTypeENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB("dPEaNlENkE0", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V15Error9setSourceEPKc) +STUB( + "dPEbpRo7VMs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE5emptyEv) +STUB("dPGqAl2SRpw", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_19UserRankInformationEED2Ev) +STUB("dPN4cmA3Tok", _ZN3sce7Toolkit2NP2V24Core8ResponseINS3_5EmptyEE3getEv) +STUB("dPOHeORqhbw", _ZN4IPMI4impl10ServerImpl7destroyEv) +STUB( + "dPOTiqMyU7g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("dPPUVVzPPhQ", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEEptEv) +STUB("dPRTZh5BsuU", _ZN7WebCore11DisplayList11DrawingItemD0Ev) +STUB("dPRhBZ5groQ", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V224TestForProfanityResponse12messageIsSetEv) +STUB("dPUWSr5KAu0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEC1ERKS7_) +STUB("dPVnSD10XwU", _ZN7WebCore30contextMenuItemTagSpellingMenuEv) +STUB( + "dPaptXGNduE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEmmEv) +STUB("dPaxhfPgTc8", uiter_setUTF8_59) +STUB("dPb9gJXIip0", Java_com_sony_gemstack_org_dvb_application_AppsDatabaseImpl_n_1getAppKeyFromId) +STUB("dPcZ76eZb64", FT_Face_GetCharVariantIndex) +STUB( + "dPcjiam1wOg", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V113ErrorResponseC2EPNS1_6Common10LibContextE) +STUB( + "dPdi6E-j9mE", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody28setExclusiveLeaderPrivilegesERKNS1_6Common6VectorINS5_6StringEEE) +STUB("dPgPd4ajtio", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE8pushBackERKS6_) +STUB( + "dPhOPEqjSi4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "dPiAHdQWU0I", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEeqERKS9_) STUB("dPj4ZtRcIWk", sceContentSearchInit) +STUB("dPutz-5ICIM", delegate_virtual_invoke_25) +STUB("dPvALr3HtDE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEC2ERS7_) +STUB( + "dPwXGDPvKL4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEptEv) +STUB( + "dPxehxeWTtE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("dPyXJbfCReM", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead8fromJsonERKNS_4Json5ValueE) +STUB( + "dQ23Qrxf5mE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) STUB("dQ2GohUHXzk", sceSaveDataAbort) +STUB("dQ3p09wGMvQ", _ZN7WebCore27ContentSecurityPolicyClientC2Ev) +STUB("dQ7dRZpK+UI", mono_assembly_loaded) +STUB( + "dQEbNvivdG8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEC2EPS6_PNS2_10LibContextE) +STUB("dQF1zad2Nvw", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V111LeaveReasonEEptEv) +STUB( + "dQFPWRSreYc", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToSendGameSessionMessageC1Ev) STUB("dQHWEsJtoE4", pthread_mutexattr_init) +STUB("dQHwxvVATh8", _ZN3JSC7Symbols14addPrivateNameE) +STUB("dQJAe3CGHPo", png_process_data_pause) +STUB( + "dQKJrG9QLeg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEixEm) +STUB("dQLzXYmfyoo", il2cpp_runtime_object_init_exception) +STUB("dQMOaLknhuE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEC1ERS7_) +STUB( + "dQOxdi38pfA", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13boolean9IsSetEv) +STUB( + "dQP7ie+tAEg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) STUB("dQReuBX9sD8", sceSslGetSubjectName) +STUB("dQUNWrAatwM", _ZNK3sce2Np9CppWebApi6Common8IteratorIfEptEv) +STUB( + "dQfF33d1QAo", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEiRNS2_10LibContextEPT_m) +STUB("dQhl7bw-umE", coil_mspace_free) +STUB( + "dQiTOmt2SOA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEEC1ERS9_) STUB("dQnI6o2OEC8", sceFiosFHSync) +STUB("dQqUGx+R-jg", + _ZN7WebCore28throwRequiredMemberTypeErrorERN3JSC9ExecStateERNS0_10ThrowScopeEPKcS6_S6_) +STUB("dQumQIBx1Iw", _memalign) +STUB( + "dQwOtGLBEIo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("dQx5K0yBi7U", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_21NotifyChallengeResultEE3getEv) +STUB( + "dR0bPceL7hY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEED1Ev) +STUB("dR3zIvK+YUg", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersC1ERS5_) +STUB( + "dR92UOMJ9yM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEEC1Ev) STUB("dRDquzClL+M", sceCesSJisToUtf16be) +STUB("dREVnZkAKRE", _Foprep) +STUB( + "dRJPDrPwIgg", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions31getxPSNSESSIONMANAGERSESSIONIDSEv) +STUB( + "dRK3c7VzoFU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("dRKF4Pjs64s", _ZN7WebCore8SVGNames10patternTagE) +STUB("dRNCLyDeAM8", _ZN7WebCore9GLContextnaEm) +STUB("dRby+MAZnUs", GCC_except_table478) +STUB( + "dRc4v8QqLGI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEdeEv) +STUB( + "dRgfPO4W5TE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("dRmKsRxRCj4", _ZN7WebCore22createFragmentFromTextERKNS_11SimpleRangeERKN3WTF6StringE) +STUB("dRsps4-NVDM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119SubtaskAvailabilityEEC1EPS6_) STUB("dRszNNyGWkw", sceNpScoreGetRankingByAccountIdAsync) +STUB( + "dRu2RLn4SKM", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERt) +STUB( + "dRyRUmxd3qY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE4sizeEv) STUB("dS1+1D1LRHs", sceShellCoreUtilSetBgmProhibition) +STUB( + "dS7GnoYyEYw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEEaSERSA_) +STUB("dSBshTZ8JcA", _ZTIN10__cxxabiv117__pbase_type_infoE) +STUB( + "dSDHQO7xspM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEED2Ev) +STUB( + "dSDthI+7uuA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEED1Ev) +STUB("dSJ+nytbkVo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEEmmEv) +STUB( + "dSJzcrjk9JE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEE7add_refEv) +STUB("dSLgNPRZVxw", _ZN3sce2Np9CppWebApi7Matches2V119AdditionalStatistic13setStatsValueEPKc) +STUB("dSMsNrFVXTI", rgctx_fetch_trampoline_mrgctx_127_p) +STUB("dSOhgCHXQ-w", Java_sun_awt_DownloadedFont_loadFromMemoryWrite) +STUB("dSP1n53RtVw", SSL_setServerCert) +STUB("dST+OsSWbno", _FErf_one) +STUB("dSXGljvWG7Q", _ZNK7WebCore25DropShadowFilterOperation1yEv) +STUB("dSZ7mcs3MNk", AacsModuleTerm) +STUB("dSa7o1AMySA", g_ptr_array_remove_index_fast) +STUB("dSbNeGQsi+k", _ZN7WebCore11DisplayList12PutImageDataD2Ev) +STUB( + "dSd02OdfX3I", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEdeEv) +STUB( + "dSfKN47p6ac", + _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE11do_get_yearES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm) +STUB( + "dSgRe4p4a2M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE8copyFromERKS9_) +STUB( + "dShIJozKCuc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEC2ERS7_) +STUB("dSifrMdPVQ4", _ZTSPKa) STUB("dSlkmPVTcvk", sceNpAsmGetNpCommInfo) +STUB("dSlrvp54kDg", _ZN7WebCore14DocumentLoaderC1ERKNS_15ResourceRequestERKNS_14SubstituteDataE) +STUB( + "dSpLS87AaCQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEC2EPS6_) +STUB("dSs0x+rJyoI", _ZNK9Inspector17BackendDispatcher8isActiveEv) +STUB( + "dSsgl-Q4XJc", + _ZN3sce2Np9CppWebApi14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBody8fromJsonERKNS_4Json5ValueE) +STUB( + "dSu4mUXCGMs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEeqERKS9_) +STUB( + "dSuEKNKO6Tg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEEC1ERKSA_) +STUB("dT4j12Uj-74", YGNodeStyleGetMaxHeight) +STUB( + "dT9tWRzM0xU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEE7get_refEv) +STUB("dTAdz3mG+F4", mono_aot_Sce_Vsh_VideoPlayerunbox_trampolines) +STUB("dTAf52wCeIE", _ZN3sce7Toolkit2NP2V212EventsClient5Event8deepCopyERKS4_) +STUB("dTAgv0z7Fc8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEC1ERKS7_) +STUB("dTBsmG4oDL8", _ZTVN3JSC15WeakHandleOwnerE) +STUB("dTC0LleFH1g", nsnp_Init) +STUB( + "dTExJybP9r0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEeqERKS9_) +STUB( + "dTFLjxnNuF4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEC1EPS6_PNS2_10LibContextE) +STUB("dTICfhH40l4", __hi0bits_D2A) +STUB("dTTuHyeorCc", + _ZN12video_parser5vpcom3rtc21ConvertTickToDateTimeEPKmPNS1_8DateTimeEPNS1_10DateTimeExE) +STUB( + "dTU1x24dsIc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE21intrusive_ptr_add_refEPS9_) STUB("dTXC+YcePtM", sceNpScoreChangeModeForOtherSaveDataOwners) +STUB( + "dTay0VzPn38", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEEC1Ev) +STUB("dTfEVk7nhMQ", + _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi22ParameterToCreateMatch21getcreateMatchRequestEv) +STUB("dThAItB-vuQ", _ZN3sce2Np9CppWebApi6Common6String6appendERKS3_) +STUB("dThMLuDxuM0", _ZN7WebCore12PrintContext12pagePropertyEPNS_5FrameEPKci) +STUB("dTnYqqLIQ6c", waitpid) +STUB( + "dTprSonTtws", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE7popBackEv) +STUB( + "dTqfZNrV0+0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEEaSERS9_) +STUB( + "dTs4ndVC5vE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE3endEv) STUB("dTvQe2clcNw", sceNpManagerIntUpdateVshAccessToken) +STUB( + "dTvjrV5GaxU", + _ZN7WebCore15reportExceptionEPN3JSC9ExecStateEPNS0_9ExceptionEPNS_12CachedScriptEPNS_16ExceptionDetailsE) +STUB("dU+6TbijWus", _ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody10getOfferIdEv) +STUB("dU-omZFCg+w", _ZN3JSC17JSInternalPromise6createERNS_2VMEPNS_9StructureE) +STUB("dU0CbOsMgbA", _ZN8meta_gen17CommonFsOperationD2Ev) +STUB("dU1AKIT+RAU", Java_java_util_zip_Inflater_inflateBytes) +STUB( + "dU5z1jB-kK8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE8capacityEv) +STUB( + "dU6JVsLrZDE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEE7get_refEv) +STUB("dU8Q2yzFNQg", _ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2Em) +STUB( + "dU8RwfGWk6I", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEptEv) +STUB("dUG7ac09DOI", Java_sun_net_PortConfig_getLower0) +STUB( + "dUGror8jSFE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE7popBackEv) STUB("dUHO5qR+hkw", sceDtcpIpTermAuthAsync) +STUB("dUN4oAm5lRc", _ZN3sce7Toolkit2NP2V28Commerce11SubCategoryD2Ev) +STUB( + "dUPpU3bqy88", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEC1EPS6_PNS2_10LibContextE) +STUB( + "dUQ5kklE-qU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEEC2ERSA_) +STUB( + "dUSn2b04vxQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEixEm) +STUB( + "dUUpNwClABw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("dUa8Jm9QRbk", _ZNSt9basic_iosIcSt11char_traitsIcEEC2EPSt15basic_streambufIcS1_E) +STUB("dUgSyWdA5J0", __tsan_unaligned_write8) +STUB( + "dUi73hymQMc", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("dUj4FuHaw4o", _ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEEixEm) STUB("dUmABkAnVgk", sceFontStyleFrameUnsetEffectSlant) STUB("dUmIK6QjT7E", sceFontGraphicsDrawingCancel) +STUB( + "dUnhYb4eJaA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE5clearEv) +STUB( + "dUp9wYKFji8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEmmEi) STUB("dUwpX3e5NDE", sceUltQueuePush) +STUB("dV+zK-Ce-2E", _ZN3sce2np14CalloutContextC1Ev) +STUB( + "dV4cJEzlK6U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("dVCh5JiPsSY", _ZNK3sce2Np9CppWebApi6Common6String5c_strEv) +STUB( + "dVXl9H+eYws", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEEptEv) STUB("dVY7nLRddBM", sceSpPthreadAttrDestroy) +STUB("dVZwn9ImE9c", _ZN3sce7Toolkit2NP28NpSessionDetailedInformationC1Ev) +STUB("dVaPJOPUTjM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEEC2Ev) +STUB( + "dVcdck+KMiM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEE3getEv) +STUB("dVckoHWTFrY", mono_aot_ReactNative_Modules_Vsh_Gct_Telemetry2unbox_trampolines_end) STUB("dVd8O+Ol-GE", sceCesEucCnToUtf32) +STUB("dVqorQqy55Y", udat_parseCalendar_67) +STUB( + "dVuBTbI88oY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("dVupugCwF2M", _ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error10setMessageEPKc) STUB("dVvFefd-TiI", _sceNpHeapShowMemoryStat) +STUB("dVw2spCtjmg", _ZNK7WebCore15HTMLFormElement24unsafeAssociatedElementsEv) +STUB("dW0RTlUeeMI", _ZN7WebCore9JSElementC2ERKS0_) +STUB( + "dW3jgtlMU-Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEEC2ERKSA_) +STUB("dW3xsu3EgFI", rand_r) +STUB( + "dW5-zvhbSLM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEptEv) +STUB("dW64DP3badk", + _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBodyC1EPNS1_6Common10LibContextE) +STUB("dW6FDk7b4KY", _ZNK3WTF9MediaTimeltERKS0_) +STUB("dWBmL+TFmjo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEdeEv) +STUB( + "dWITdp6t+wM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEEC2ERSA_) +STUB("dWJFxzC2J4o", _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_11TusVariableENS2_IS4_EEEEC1Ev) STUB("dWM80AX39o4", sceGameLiveStreamingEnableLiveStreaming) +STUB("dWSZKX9yF6E", _ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEE7reserveEi) +STUB( + "dWU1iHUxQ3Y", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE3endEv) +STUB( + "dWZyQGJwGU4", + _ZN3sce2Np9CppWebApi7Matches2V130ResponseMatchStatisticsFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_23ResponseMatchStatisticsEEE) +STUB("dWb7tCDzI3M", _ZN3NTF22URLRequestJobSchedulerD0Ev) +STUB("dWbZ-HBojqU", _ZN7WebCore12SharedBuffer6createEv) +STUB("dWgY+1WxBgU", _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForReadD1Ev) +STUB("dWih9qPFB38", _ZNK7WebCore19ResourceRequestBase15httpHeaderFieldERKN3WTF6StringE) +STUB( + "dWoz0YUCxLE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE8capacityEv) +STUB("dWtzkMtOQgs", _ZN7WebCore21DiagnosticLoggingKeys28canceledLessThan20SecondsKeyEv) +STUB("dWuO75ebY2U", _ZN7WebCore8Document16createNSResolverEPNS_4NodeE) +STUB("dWunftoF+rk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEaSERKS7_) +STUB( + "dWunuJt3F-E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEEC1ERSA_) +STUB("dWvzwNICM7Y", _ZL16terminateHandler) +STUB("dWz3HtMMpPg", _WGetint) +STUB("dX+4xk5WkJ0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEC2Ev) +STUB( + "dX+D8A2dKXE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEE11release_refEv) STUB("dX-MVpXIPwQ", sceHmdInternalSetHmuPowerControlForDebug) +STUB("dX4tPgLH7Mw", vzone_setLastModified_67) +STUB( + "dX4vUjIwJBA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEC1ERKS7_) +STUB("dX7q33X6fsY", rgctx_fetch_trampoline_rgctx_55) +STUB( + "dX9RbODS7r4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("dXJK59vXRxs", FT_Stream_GetShort) +STUB( + "dXM9ekcXZH0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE6resizeEj) +STUB("dXMGKAzykH0", mono_load_remote_field) +STUB( + "dXMNxe5rX5w", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "dXNqSHrh1T8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEC2EPS8_) STUB("dXPaz65HNmk", sceAmprCommandBufferPushMarker) +STUB( + "dXWFoSH5ztc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEaSERKS7_) +STUB("dXWcryo7pHM", _ZN3sce7Toolkit2NP2V211SharedMedia10Screenshot16MAX_LEN_PHOTO_IDE) +STUB("dXXTzDja-L0", mono_aot_System_Threading_Tasksplt) +STUB("dXZ0EkIPFMI", jinit_arith_decoder) +STUB( + "dXatJBtJfys", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEC1EPS6_PNS2_10LibContextE) +STUB("dXdRdbl9xtU", _ZN7WebCore5Frame13rangeForPointERKNS_8IntPointE) +STUB( + "dXeDTYYLd6U", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEptEv) +STUB( + "dXfbev-6fYs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB("dXm043aEyEs", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi32ParameterToPostGameSessionsTouchC1Ev) +STUB("dXm2FJEv86k", _ZNK3WTF6String8foldCaseEv) +STUB( + "dXmWrzeBxFI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("dXy+lFOiaQA", _ZNKSt22_System_error_category4nameEv) +STUB("dY5HI1HhX8Q", _ZN3WTF13printInternalERNS_11PrintStreamERKNS_7CStringE) +STUB("dY6vQe8+YfA", _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse17getExpirationTimeEv) +STUB("dY7kESx35ZY", _ZN7WebCore14MicrotaskQueueC2Ev) +STUB("dY9982DP+HM", _ZN3sce7Toolkit2NP2V212EventsClient7Request9GetEvents14MAX_NUM_EVENTSE) STUB("dYDAfB+cJEU", sceVideoOutAdjustColorSpaceConversion_) +STUB( + "dYFVWVEUWWA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB("dYIsxjHBQig", + _ZN3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer11setOnlineIdERK13SceNpOnlineId) +STUB("dYJJbxnyb74", _Fgpos) +STUB("dYLaCFvC8Nk", _ZN7WebCore14SQLiteDatabaseC1Ev) +STUB( + "dYNG-sMhNGI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE5beginEv) +STUB("dYQGzdpSBdY", __tsan_init) +STUB( + "dYZbnR7ROJA", + _ZN7WebCore16ScriptController29executeUserAgentScriptInWorldERNS_15DOMWrapperWorldERKN3WTF6StringEb) +STUB( + "dYe1Xbboa9w", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEplEm) +STUB( + "dYe3GdRlqWg", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData37getxPsnTcsComparedLastUpdatedDateTimeEv) +STUB( + "dYfIfkrJRD0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEmmEv) +STUB("dYgjSFHArb4", mono_aot_Sce_Vsh_Np_RifManagerjit_code_end) +STUB("dYh6MqCHi0w", + _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead21createdTimestampIsSetEv) +STUB( + "dYo8UGSaXo4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEEC2ERKSA_) +STUB( + "dYqXC8YUJfc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEEC2Ev) +STUB("dYstOfF8XVk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEppEi) STUB("dYtbUAmNLBc", sceCesUtf16beToGb) STUB("dYv-+If2GPk", pthread_rwlock_reltimedrdlock_np) STUB("dZ-zZ+N9aAo", sceSystemLogger2SetAsyncPeripheralConnectionLog) STUB("dZ3RfDzgmCY", sceShellCoreUtilGetAppLaunchedParamStringByBudgetType) +STUB("dZ40swGINYY", _ZN3sce2Np9CppWebApi13InGameCatalog2V514ContainerMedia11unsetImagesEv) +STUB("dZ5XL3B+n0Q", _LMBCSData11_67) +STUB("dZ7FLitHdjs", _ZN7WebCore10JSDocumentC2ERKS0_) +STUB("dZAozwzECsU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEEaSERS6_) +STUB( + "dZE2wRQ69Mk", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB( + "dZLnpdDRofU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("dZUSSMQ9SwI", _ZN2GK9PlayerPSNC1ERKS0_) +STUB( + "dZZjLinFgAo", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate10setPerGameERKNS1_6Common12IntrusivePtrINS3_29MatchCompletionRatePropertiesEEE) STUB("dZgVsuPetJY", sceSaveDataDebugFile) +STUB( + "dZlZaYlzCrw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEC1EPS8_) +STUB("dZoaEU-i8jw", _ZN3JSC8DebuggerdaEPv) STUB("dZqlWxQ1p+U", sceVisionManagerGetResultOfFindPadCorrespondRegion) +STUB( + "da0XFGB7AZY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE21intrusive_ptr_add_refEPS9_) STUB("da1Sm8-QDoU", sceAgcAcbAtomicMemGetSize) STUB("da4rQ4-+p-4", sceFontStyleFrameSetScalePixel) +STUB( + "da5SbLAjGUY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE21intrusive_ptr_add_refEPS7_) STUB("da6-yq0GbLg", sceKernelNotifySystemSuspendStart) +STUB( + "da78gbjqrXU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "daHCjVTV85o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEE11get_deleterEv) +STUB("daHqmCyux18", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEED1Ev) +STUB( + "daL8oRzMAx4", + _ZN3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayerC2EPNS1_6Common10LibContextE) +STUB("daP+XLNmktw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEEC2ERS6_) +STUB("daYJeqtKNh8", _ZN7WebCore17JSDOMGlobalObjectD1Ev) +STUB("dacK3EAK3-0", _ZN3WTF9MediaTimeC2Ev) +STUB("daeq2j6k3Bc", EVP_CIPHER_CTX_cleanup) +STUB("daiiTlAWzTc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEEC2Ev) +STUB("dairlPhr80o", _ZN9Inspector21InspectorRuntimeAgentnaEmPv) +STUB( + "dalzLw400T4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("dar03AOn+nM", getcontext) +STUB("dazLPF8xpo4", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE4sizeEv) +STUB("db397aKWSfw", mono_aot_Sce_PlayStation_PUIPlatformplt) +STUB("db4-SF3n8lE", _ZN7WebCore29SQLiteStatementAutoResetScopeC2EPNS_15SQLiteStatementE) +STUB( + "db7BSI3qZQc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE21intrusive_ptr_add_refEPS9_) +STUB("db7qZKvMOAo", _ZNK7WebCore16HTMLMediaElement12getStartDateEv) +STUB("dbBrM17J6c8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEC1ERS7_) +STUB("dbDvWQUel6A", inflate) +STUB( + "dbFB0+jZjYc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEE7get_refEv) STUB("dbHh2xxKlEs", sceCesUcs2ToSJis) +STUB("dbNWHmhP13k", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEEmmEv) +STUB( + "dbQRu5HZJRE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEED1Ev) +STUB("dbR9oqRLeH8", psl_check_version_number) +STUB("dbRwv1xfbuA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEC2ERS7_) +STUB("dbSDLYu3gzY", _ZNK7WebCore11MediaPlayer26shouldCheckHardwareSupportEv) +STUB("dbVB9N6AQc4", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEEneERKS5_) +STUB( + "dbdP0rOpf74", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEppEv) +STUB( + "dbkOvHWwCtE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEC2EPS6_PNS2_10LibContextE) +STUB( + "dbqLVcU84WI", + _ZN9Inspector21InspectorRuntimeAgent8evaluateERN3WTF6StringERKS2_PS4_PKbS8_PKiS8_S8_S8_S8_RNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISE_EEEERNS1_8OptionalIbEERNSJ_IiEE) STUB("dbrSNEuZfXI", sceNetShowPolicyWithMemory) +STUB( + "dbtwGwUgOHE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEEC1ERSA_) +STUB("dbty069DxEI", _ZN3WTF21RefCountedLeakCounterD2Ev) +STUB( + "dbwE6K7pmAA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEEC2EPS9_PNS2_10LibContextE) STUB("dbwyzALlKOQ", sceShellCoreUtilTestBusTransferSpeed) +STUB("dbycEreQEcg", _ZN3WTF14FileSystemImpl18createSymbolicLinkERKNS_6StringES3_) +STUB( + "dbzI-W2txtY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEneERKS9_) +STUB("dbzPEmNY4C0", _ZThn16_N9Inspector28InspectorScriptProfilerAgentD0Ev) +STUB( + "dc-GGIqAqtE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE7popBackEv) +STUB("dc1zY9su5S8", _ZN7WebCore9HTMLNames24aria_roledescriptionAttrE) +STUB("dc29NN1u8hs", _ZN7WebCore22EmptyFrameLoaderClient21forceLayoutForNonHTMLEv) +STUB("dc2YCey0wDI", WKPreferencesSetSerifFontFamily) +STUB( + "dc4O1LgR2+4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEC2EPNS2_10LibContextE) +STUB("dc4bb-f5YEE", cairo_set_operator) +STUB( + "dc5tQehn17o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEE7get_refEv) +STUB("dc7NozegWtA", _ZN3sce2Np9CppWebApi14SessionManager2V110FromMemberD1Ev) +STUB("dcBdIsplQ9A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEEC1ERS7_) +STUB("dcDNSplc0kE", _ZN3JSC10loadModuleEPNS_14JSGlobalObjectERKNS_10SourceCodeENS_7JSValueE) +STUB("dcICa24y1Wk", _ZN3sce2Np9CppWebApi6Common8IteratorIjEC1Ev) +STUB( + "dcLCLUI838s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEC1ERS7_) STUB("dcQeaDr8UJc", sceFontFtSupportOpenTypeOtf) +STUB("dcRpnwhqCwc", _ZN7WebCore10FileHandleD1Ev) +STUB( + "dcWiJ1r+BAo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEC2Ev) +STUB("dcXa30bFtXE", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsD2Ev) +STUB("dcYDmPuMrvs", _ZN7WebCore9SampleMap12removeSampleEPNS_11MediaSampleE) +STUB("dcYyto60A7Q", _ZN7WebCore10JSLocationaSERKS0_) +STUB("dcaiFCKtoDg", __divsc3) +STUB("dcaza9VpqgE", mono_get_config_dir) +STUB("dcbbhKIZCDA", _ZNK3sce2Np9CppWebApi12Leaderboards2V123RecordScoreResponseBody10getTmpRankEv) +STUB( + "dcbt0aHD1mM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE5beginEv) +STUB("dccS4-gCIUw", _ZN3sce16CommonDialogUtil6ClientC2EPKcjmii) +STUB("dcdqMikPEKg", + _ZN7WebCore6Editor24computeAndSetTypingStyleERNS_15StylePropertiesENS_10EditActionE) +STUB( + "dclWhna3Zmk", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Runtime12RemoteObject7SubtypeEEEN3WTF8OptionalIT_EERKNS6_6StringE) +STUB( + "dclZYoKxbWQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEC1EPNS2_10LibContextE) +STUB( + "dd+TOu+F9vg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "dd-7TjE7Ogc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEixEm) STUB("dd8jmd0it24", sceSdmaCopyWindowT2T) +STUB( + "dd9Dm9I3WwU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEC2Ev) +STUB( + "ddC6rVr90ZQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("ddF019Ndi1M", _ZN3JSC20AbstractModuleRecord6s_infoE) +STUB("ddLNBT9ks2I", _ZTISt8numpunctIcE) +STUB( + "ddQExZQn5-0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEC1EPKS8_) +STUB( + "ddSEFa-4pIM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEC1Ev) +STUB("ddXifqT9T3g", _ZN7WebCore10FileSystem19getFileCreationTimeERKN3WTF6StringERl) STUB("ddYgzamMD2U", sceDbgAmprAprGetErrors) +STUB( + "ddkGCuaaoHQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEplEm) +STUB( + "ddl5QuwKFSo", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitations37unsetxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB("ddqtFoMOpKc", + _ZN3sce2Np9CppWebApi7Matches2V125RequestMatchPlayerFactory7destroyEPNS3_18RequestMatchPlayerE) +STUB("ddr7Ie4u5Nw", _ZNSt16invalid_argumentD2Ev) +STUB( + "dduC-QqwiSs", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setBoolean8ERKb) +STUB("ddykn-Mgr9g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEEptEv) +STUB("de4CGd-b1hg", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle11getPerGenreEv) +STUB("de4R3JIvhu8", mono_aot_I18N_Westunwind_info) +STUB( + "deCQcTumWcA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEED1Ev) STUB("deCYc7iaC5Q", sceLncUtilGetDbgExecutablePath) +STUB("deFQEVRcKuQ", _ZN7WebCore8Document4openEPS0_) +STUB("deHBNJOPqkQ", _ZNK7WebCore4Path16fastBoundingRectEv) +STUB( + "deHdp5vLZZA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE5eraseENS2_8IteratorIS6_EERS9_) +STUB("deJgtP9hduc", + _ZNK3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform12getSessionIdEv) +STUB("deKZXB9S3YU", _ZN7WebCore15JSDOMWindowBaseD2Ev) STUB("deKovf3qViA", sceCompositorWaitPostEvent) +STUB( + "deONKADDeNQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEmmEv) +STUB( + "deOd9UqWU2w", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEneERKS9_) +STUB( + "dePZKNCGvJ4", + _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicket28getxPsnAcceptPlatformNamePs5Ev) +STUB("deY8cQlIt9U", + _ZNK7WebCore24CoordinatedGraphicsLayer22filtersCanBeCompositedERKNS_16FilterOperationsE) +STUB( + "deZcCqoA+XA", + _ZN3WTF8JSONImpl10ObjectBase8setValueERKNS_6StringEONS_6RefPtrINS0_5ValueENS_13DumbPtrTraitsIS6_EEEE) +STUB("dec-84dKmRE", _ZN3sce7Toolkit2NP2V28Commerce8ProductsaSERKS4_) STUB("dei8oUx6DbU", sceCoredumpDebugTextOut) +STUB( + "dep1WYPFX2U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEC2ERKS7_) +STUB("dep6W2Ix35s", + _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecy) +STUB( + "depsxzkj-Dc", + _ZN7WebCore15UserInputBridge11reloadFrameEPNS_5FrameEN3WTF9OptionSetINS_12ReloadOptionEEENS_11InputSourceE) STUB("dewXw5roLs0", sceGnmGetPhysicalCounterFromVirtualized) +STUB("dewyjTlk+u8", cairo_fill_preserve) STUB("df+b0FQnnVQ", sceHmdInternalGetVirtualDisplayHeight) +STUB("df+caEQAh2M", __ubsan_handle_invalid_builtin) +STUB("df-ZMVVP6YM", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEEixEm) +STUB("df-uTT8UBPk", unorm2_getNFKCCasefoldInstance) +STUB("df0Yx8UkJl4", _ZN3sce7Toolkit2NP17PostInGameRequestC1Ev) +STUB("df1wsFFZS04", _ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody10groupIsSetEv) +STUB("df8bbmIdNIM", _ZN7WebCore10ISOFullBoxD2Ev) +STUB( + "dfBxNlgdEVc", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData24hasxPsnAtomicOperationIdEv) +STUB("dfJGsuZUOoI", _ZN7WebCore8SVGNames14vert_adv_yAttrE) +STUB("dfPbLJxPIPc", _ZNK3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error11errorsIsSetEv) +STUB("dfRy73zK7WU", _ZN3JSC20TypedArrayControllerD0Ev) +STUB("dfVcdJL0PrU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V115SearchAttributeEEC1EPS6_) STUB("dfVvFVZgr68", sceUltGetUlthreadRuntimeInfo) +STUB("dfXESAI+wLw", delegate_virtual_invoke_19) STUB("dfXSH2Tsjkw", sceNpMemoryHeapDestroy) +STUB( + "dfcXC-oq-qo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEE3getEv) +STUB("dfghrxoUtJY", fuse_loop_mt) +STUB("dfjYwok17XE", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfileC1ERS5_) +STUB( + "dflFvHLDCJk", + _ZN8meta_gen11MsvPromoter24setKeyValueTBLTContentIdENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti) +STUB("dflHshVtztk", _ZN7WebCore8Document24setSelectedStylesheetSetERKN3WTF6StringE) +STUB("dfpVPyCdTMk", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15CategoryInfoSubEE7addressERKS3_) +STUB("dfppFf3sc4o", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession21getSupportedPlatformsEv) +STUB("dfqRsTgs+mA", WKPreferencesGetPDFPluginEnabled) +STUB( + "dfvJK+wbflE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE5beginEv) +STUB("dfwOjXqhQug", _ZN12video_parser17cVideoProfilerMp4D2Ev) +STUB( + "dfzIDPhK7S4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEED1Ev) +STUB( + "dg-6+A8kAgA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEC1Ev) +STUB( + "dgCw0U+07cQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB( + "dgI+vzyonf8", + _ZNK3sce2Np9CppWebApi14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayer13getPlayerNameEv) STUB("dgJBaeJnGpo", sceNetPoolCreate) +STUB("dgJlOVnotOQ", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product8fromJsonERKNS_4Json5ValueE) +STUB("dgLPhYb+SDc", + _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead30reservationTimeoutSecondsIsSetEv) +STUB( + "dgMBOOpaabg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEE5resetEPS6_) +STUB( + "dgNbQrqIIgs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEEcvbEv) +STUB("dgQidT1on4k", _ZNK7WebCore12RenderWidget14windowClipRectEv) +STUB("dgSWiLGbjuY", _ZN3sce2np10NpOnlineIdC1ERKS1_) +STUB( + "dgVF64-449E", + _ZN3JSC14JSGlobalObject18getOwnPropertySlotEPNS_8JSObjectEPNS_9ExecStateENS_12PropertyNameERNS_12PropertySlotE) +STUB("dgY+IAMNNNU", _ZN7WebCore11DisplayList4ItemD1Ev) +STUB( + "dgYzIZTAbpA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEppEv) +STUB( + "dgeI-8mPRdQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEE3getEv) +STUB( + "dgf3FcU1KUU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEneERKS9_) +STUB( + "dgiSgFDUYps", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE6resizeEj) +STUB( + "dglmwU05gl0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEptEv) +STUB("dgloVN+pMyA", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS12TusVariablesEEC2Ev) +STUB( + "dgp9-L4z2j8", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setBoolean7ERKb) +STUB( + "dgpR5Y9TK-c", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("dgrP+xq8KeI", WKPreferencesGetCSSAnimationTriggersEnabled) +STUB( + "dgrYzAhleJc", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessionsC2Ev) +STUB("dguPFwFpGzU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEE3getEv) +STUB("dgy+itLNWbM", _ZN9Inspector21InjectedScriptManagerD1Ev) STUB("dh11uAUWNyM", sceUltQueueDataResourcePoolDestroy) +STUB( + "dhEpG5tPDHg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE10setContextEPNS2_10LibContextE) +STUB("dhG-bxjCkOg", ucsdet_getName_59) +STUB("dhJGQPKLmn0", _ZN3sce2np14JsonDocBuilderC2ERKNS0_9JsonValueE) +STUB("dhK16CKwhQg", __isfinite) +STUB( + "dhOv7EMNP-E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEED2Ev) +STUB("dhQRJ10Z-fc", _ZN3JSC7Symbols19matchAllPrivateNameE) STUB("dhQXEvmrVNQ", scePadSetLightBarBaseBrightness) STUB("dhUdyTVC3Zw", sceIduUtilGetSettingStr) +STUB( + "dhUfKu5AOUw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEC2EPKS8_) +STUB("dhVCSuqXp44", _ZN4Manx8X509cinf15convertTime64_tEPNS_4DateE) +STUB("dhWQF5yRpr8", _ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody14getRulesetNameEv) +STUB( + "dhWT0QOEWRI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEaSERS7_) +STUB("dhXJhCjAQHU", il2cpp_method_has_attribute) +STUB( + "dhY8-lRCgPw", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getInteger8Ev) +STUB("dhZM4hmC--A", _ZNSt11logic_errorC1ERKS_) +STUB("dhdCTGu0nAM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEE7get_refEv) +STUB("dhgZVtpnSPE", WKBackForwardListGetBackListCount) +STUB( + "dhgkL56EcCM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEC1EPS8_) +STUB("dhjAyKgWIFg", _ZN7WebCore15DatabaseTracker13databaseNamesERKNS_18SecurityOriginDataE) +STUB( + "dhjn7Y+jzfk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("dhk0U1yIuJo", _ZN15AbstractStorage14YoutubeServiceD2Ev) +STUB("dhstXlOnMVc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEEppEi) STUB("dhuH8HjNhUY", sceRegMgrGetBinInitVal) +STUB( + "dhylAHlhjkQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEED2Ev) +STUB("di-B+VBuTeQ", ubrk_setText_59) +STUB("di0FZJujA+M", utext_replace_67) +STUB("di1MIW1kJ1w", mono_aot_mscorlibunbox_trampoline_addresses) +STUB("di7ibLJX-w4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEEplEm) +STUB( + "diD0LhcR0YY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "diDO0jsa508", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "diG2rM18Szw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "diG6XTXNthw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEC1EPS8_) +STUB("diHA2bZJ9sY", _ZN7WebCore9HTMLNames13minlengthAttrE) +STUB("diHLdB8SnSg", _ZN3sce7Toolkit2NP2V23TUS7Request17TryAndSetVariableC1Ev) +STUB( + "diHMDzs2fqE", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId11setobjectIdEPKc) +STUB( + "diNH3hiczYQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12string1IsSetEv) +STUB( + "diPlageaYXk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEEC2ERKS9_) STUB("diQSBvLG+1w", sceHandTrackerGetDefaultParam) +STUB("diS+sFRaYqw", _ZNK3sce7Toolkit2NP9Utilities6FutureI7SceNpIdE3getEv) +STUB("diSRws0Ppxg", _ZNSt13_Regex_traitsIcE6_NamesE) +STUB( + "diTx9FOW4Q0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEC2Ev) +STUB("diU1x2QioOE", _ZN4Manx6Screen14availableWidthEv) +STUB("diUa3X2tYRM", _ZN3sce2Np9CppWebApi6Common6VectorIdE5eraseENS2_8IteratorIdEERS6_) +STUB( + "diXiDTBvpjE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE4sizeEv) STUB("diXjQNiMu-s", sceAjmInstanceCodecType) +STUB("diaPIiaKzs0", rgctx_fetch_trampoline_mrgctx_72) +STUB( + "dihjdz4fiPk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEC1Ev) +STUB("dihk6nhPzOs", _ZN7WebCore24CoordinatedGraphicsLayer8addChildEPNS_13GraphicsLayerE) +STUB("dim5NDlc7Vs", SSL_ASYNC_sendMessage) +STUB("dioJZ1zC+BY", _ZN7WebCore5Range13cloneContentsEv) +STUB( + "dioquoDaNp4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEneERKS9_) +STUB("ditDH8nKW84", rgctx_fetch_trampoline_mrgctx_81) STUB("dj+O5aD2a0Q", sceNpCmpOnlineId) +STUB( + "dj3ExVut2Eo", + _ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime26InternalPropertyDescriptorEE11runtimeCastEON3WTF6RefPtrINS5_8JSONImpl5ValueENS5_13DumbPtrTraitsIS8_EEEE) +STUB("dj3Gl1YYvJ8", + _ZN7WebCore11DisplayList14DrawingContextC1ERKNS_9FloatSizeEPNS0_8Recorder8ObserverE) +STUB( + "dj8j93xFtxE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE21intrusive_ptr_add_refEPS9_) +STUB("djAcDDnppKs", _ZN7WebCore9HTMLNames31x_apple_data_detectors_typeAttrE) +STUB("djDvnpnog-E", _ZN7WebCore28InspectorFrontendClientLocal10resetStateEv) +STUB( + "djEDRiNtIrs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEE11get_deleterEv) +STUB( + "djEJ3o01bgM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "djER5sNxmLs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEED2Ev) STUB("djHSzoTfixE", sceRegMgrEvtGetRegId) +STUB("djHbPE+TFIo", _ZNSt6_MutexD1Ev) +STUB("djNJb4glilI", _ZNK7WebCore21JSRemoteDOMWindowBase7wrappedEv) +STUB("djNkrJKTb6Q", _ZNSt7codecvtIcc9_MbstatetED1Ev) +STUB("djSqL8eVr2s", WKIconDatabaseSetIconDataForIconURL) +STUB("djTJERVZQOM", _ZN3IPC15ArgumentDecoder6decodeERf) STUB("djUtq62Eadc", sceLibSecureRandom) STUB("djVe06YjzkI", sceSystemServiceActivateHevcSoftIsActivated) STUB("djaTaDYB-wQ", sceNpSnsTwitchDialogOpen) +STUB( + "djbNspswbKc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE3endEv) STUB("djc8fOzOXxk", sceVideoOutSysResetAtGpuReset) +STUB("djdfuFWlVPI", _ZN3WTF10StringImpl7replaceEPS0_S1_) +STUB("djfNyVDLFz4", _ZNK7WebCore16URLDecomposition4hashEv) +STUB("djm5QUVG74A", png_set_write_fn) +STUB("djrzcnG8F+Q", utext_getPreviousNativeIndex_67) +STUB("djt40NyfD-U", _ZN3sce3Job10JobManagerD2Ev) +STUB( + "djtV+5Ryx80", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("djxxOmW6-aw", __progname) +STUB( + "djy+aq7MFTE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEmmEv) STUB("dk-PIxWMp8k", sceShellCoreUtilNotifyPsnAccountInfoReceived) STUB("dk27olS4CEE", sceNpTrophySystemCreateContext) +STUB("dk4OUU51SBQ", mono_aot_Sce_PlayStation_Orbisunbox_trampolines_end) +STUB("dkCPPTsZyu4", _ZNK7WebCore13HitTestResult10isSelectedEv) +STUB("dkFXm4GKOCc", usearch_setCollator_67) +STUB( + "dkG+Sl5Et34", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("dkGt-3HC0n4", _ZN7WebCore8SVGNames10resultAttrE) +STUB( + "dkJpkx+PLm4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEE11get_deleterEv) +STUB("dkLFWGBh2-w", _ZNK7CoreIPC14MessageDecoder44shouldDispatchMessageWhenWaitingForSyncReplyEv) STUB("dkOLeMUuEwA", sceUsbStorageSetFakeMapLockForDebug) +STUB("dkU553Qf+F0", _ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession15getJoinDisabledEv) STUB("dkUqvOiUfxY", sceNpPushRegisterNotificationCallback) +STUB( + "dkeFoySmMvQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEppEi) +STUB("dkeFq1ux3B0", _ZN3sce7Toolkit2NP2V26Trophy16TrophyPackTrophyC2ERKS4_) +STUB("dkfkaoxjfcM", il2cpp_method_is_generic) +STUB( + "dkkIbknXj18", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("dkoQNd4kBlQ", cairo_fill_extents) +STUB( + "dkouR5cE5MY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "dkt6cW2O0jE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE5clearEv) +STUB( + "dkuPiGnOyoI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("dkuuqvL4ELw", _ZNK3WTF8JSONImpl5Value9asIntegerERl) STUB("dl+4eHSzUu4", sceAjmInitialize) +STUB( + "dl-0UV05omU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEE11get_deleterEv) +STUB( + "dl0io3o95+0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEC2EPS6_PNS2_10LibContextE) STUB("dl0qd+E20ng", sceFrontPanelDisplayInitialize) STUB("dl1xO-QP3C8", sceMatAgcRegisterOwner) +STUB("dl450m1Yht4", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEEixEm) STUB("dl5u5eGBgNk", sceGnmSqttSwitchTraceBuffer2) +STUB("dl6+SFHLke0", _ZN3sce2np10MemoryFile5CloseEv) +STUB( + "dl6FI9nVVg4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE7reserveEi) STUB("dlBQfiDOklQ", sceUserServiceSetLightBarBaseBrightness) STUB("dlG8cpQGq64", sceVideoCoreReleaseDecoderResourceForBeWrapper) +STUB( + "dlGt4grsvqI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("dlHdYlhua0w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEixEm) +STUB("dlHiWDvZ-8g", + _ZN3sce2Np9CppWebApi13InGameCatalog2V515ContainerRating8fromJsonERKNS_4Json5ValueE) +STUB( + "dlIxZCADfG0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEE11release_refEv) +STUB("dlL+slp6H+I", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIiE21intrusive_ptr_sub_refEPS4_) +STUB("dlM4ASZdcjk", FT_GlyphLoader_Prepare) +STUB("dlR6Z857IFs", _ZN3WTF14FileSystemImpl18decodeFromFilenameERKNS_6StringE) +STUB( + "dlSu3hzTVBA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("dlW0eAXIG8g", mono_aot_Sce_Vsh_RemotePlaymethod_addresses) +STUB("dlYTd6khqPk", mono_metadata_free_method_signature) +STUB("dlbnv6Wass8", FT_Stream_ReadAt) +STUB( + "dlcKtFMJNJQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEptEv) +STUB( + "dleuvGtk3ZM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE10setContextEPNS2_10LibContextE) +STUB( + "dlf8ZByw3+g", + _ZN3sce7Toolkit2NP2V27Ranking11getGameDataERKNS3_7Request11GetGameDataEPNS2_4Core8ResponseINS3_17GetGameDataResultEEE) +STUB( + "dlfBm5pHBLo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEeqERKS9_) +STUB("dlfK08H+ZqA", _ZN3sce7Toolkit2NP2V24Core17CustomRequestBaseD2Ev) +STUB( + "dliiz9PrbBo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("dlnCxzP9v24", _ZN7Nicosia5Scene5StateD2Ev) +STUB( + "dlqaZZms+yE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEE5resetEPS6_) +STUB( + "dlvIUhThS3g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEE11release_refEv) +STUB("dlwpoPPUit0", + _ZN3sce2Np9CppWebApi14SessionManager2V114Representative11setOnlineIdERK13SceNpOnlineId) +STUB("dm-S5UpiGNc", _ZN3sce2Np9CppWebApi6Common6VectorIfEC1EPNS2_10LibContextE) STUB("dm0L3LVgQ+M", sceAvSettingDriverChangeConnectionStatus) +STUB("dmCVOjcaQq0", _ZN7WebCore17PageConsoleClientdlEPv) STUB("dmDybN--Fn8", sceAjmBatchJobControlBufferRa) +STUB("dmG8bir5tEw", Java_java_net_SocketInputStream_socketRead0) +STUB("dmGx+TxFJw0", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEEC1Ev) +STUB("dmHEVUqDYGw", _rtld_error) +STUB("dmKJ8cSfefo", _ZNK3sce2np9JsonValue7GetTypeEv) STUB("dmLUJh3bVTc", sceCamera2Open) +STUB( + "dmMheD7+OCg", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer15hasserviceLabelEv) +STUB("dmPL5pRccX4", _ZN3WTF20setProcessPrivilegesENS_9OptionSetINS_16ProcessPrivilegeEEE) +STUB("dmRRBt+qPcs", WKBundleFrameGetJavaScriptContextForWorld) +STUB("dmUgzUX3nXU", _thread_autoinit_dummy_decl_stub) +STUB("dmWiJ+jep3Y", _ZN3WTF6Thread6createEPKcONS_8FunctionIFvvEEENS_10ThreadTypeE) +STUB("dmYY7R30gsQ", _ZN3sce2Np9CppWebApi12Leaderboards2V15EntryD2Ev) +STUB("dmZEyiKPT24", _ZN4IPMI4impl10ServerImpl14getServiceNameEv) +STUB("dmZRH6zRZjI", + _ZN3sce2Np9CppWebApi7Matches2V113ChildActivity9setStatusERKNS3_19ChildActivityStatusE) +STUB("dmfMGDoshB4", mount) +STUB("dmhhuOB7Evg", _ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest11zoneIdIsSetEv) +STUB( + "dmlPfVVsPOk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("dmnPdozD-48", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEC2ERKS7_) +STUB("dmoiig6apug", mono_get_int64_class) +STUB( + "dmpK45lMwLM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "dmyTqp-+OFs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEEptEv) +STUB( + "dn-627nFNZs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEC2Ev) +STUB( + "dn2znkPgyrk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEE5resetEPS6_) STUB("dnEdyY4+klQ", sceRazorCpuJobManagerDispatch) +STUB( + "dnFQPxnAHtA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "dnJ8iFoO69s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE5clearEv) +STUB( + "dnJhJtLciVI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) STUB("dnM9JfgxHbk", sceAvSettingRemoveCallbacks) +STUB( + "dnOgL7YdSGU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEaSERKS9_) +STUB( + "dnR1GTbED4c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEC1EPS8_) +STUB("dnT7qj7GmS0", generic_trampoline_vcall_p) +STUB("dnUboNrN3M8", vm_send_CreateJumpTrampoline) +STUB( + "dnUdAddt3MM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEC2EPS8_) +STUB("dnXP-Ctcfyo", WKOpenPanelParametersGetTypeID) +STUB("dnXraQV6Oic", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession18unsetMaxSpectatorsEv) +STUB("dnZM2KrZii0", _ZN3WTF3URL11setProtocolENS_10StringViewE) +STUB("dnaeGXbjP6E", exp2) +STUB( + "dngR4KeB6Fg", + _ZN9Inspector23WorkerBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) +STUB( + "dnjYSVXYdaI", + _ZN9Inspector23TargetBackendDispatcher19sendMessageToTargetElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "dnn+s7bg-HE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEC2Ev) +STUB("dns9419SfZY", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11ProductInfoEED2Ev) STUB("dntZTJ7meIU", sceHmdReprojectionStart) +STUB( + "dnvpRyqCZtA", + _ZN7WebCore22EmptyFrameLoaderClient32assignIdentifierToInitialRequestEmPNS_14DocumentLoaderERKNS_15ResourceRequestE) +STUB("dnwItoXLoy4", _ZN3sce2np8WorkItemD1Ev) STUB("dnyvPTam4Gc", sceNpManagerIntGetAccountDateOfBirth) STUB("do-JDWX+zRs", scePadGetSphereRadius) +STUB( + "do-hq5vhfzI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEEC2Ev) +STUB("do0t--lEKMM", _ZN3sce2np13RingBufMemory6ExpandEm) +STUB( + "do4dXCtvew0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEC1EPS8_) +STUB("do6R-c248fo", _ZN7WebCore6RegionC2ERKS0_) +STUB("do8mXcIf7SA", _ZN7WebCore4PathC1EOS0_) +STUB("doBOzDy5T70", _ZNK7WebCore20HTMLTableCellElement5scopeEv) +STUB("doBeY5yIYTo", t1_cmap_unicode_class_rec) +STUB("doDZGEQWlD0", mono_aot_System_Net_Http_WebRequestplt) +STUB( + "doEt9sRz0O0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("doG6oClg-Fc", + _ZN3sce2Np9CppWebApi7Matches2V125ResponseCompetitiveResultC1EPNS1_6Common10LibContextE) +STUB( + "doLBAxgZXb8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEED2Ev) STUB("doPlf33ab-U", sceCameraSetAttribute) +STUB("doQvkzdiYPE", _ZN7WebCore8JSDOMURL7destroyEPN3JSC6JSCellE) STUB("doRbAW89lZE", sceMouseExtensionRead) +STUB("doUYMsJZHQA", ucnv_setToUCallBack_59) +STUB("doUixxZZcR4", _ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead13unsetOnlineIdEv) +STUB( + "doWPafjZt5c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEmmEi) +STUB("doZ3+EOd4Fk", _ZN3sce7Toolkit2NP22CreateNpSessionRequestC2Ev) +STUB("docwoXAMK24", SSL_CTX_set_alpn_protos) STUB("doewKyDAsB4", pthread_setschedparam_np) +STUB("dog+nuTN9D8", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15CategoryInfoSubEEneERKS4_) +STUB( + "dogBq-c4bUo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) STUB("doh35AZf7Zk", sceMbusDebugDisableBgmForShellUi) +STUB( + "doi98SgdAqA", + _ZN7WebCore22EmptyFrameLoaderClient22dispatchWillSubmitFormERNS_9FormStateEON3WTF17CompletionHandlerIFvvEEE) +STUB("doiwQkbnd8s", _ZN3sce7Toolkit2NP2V27Ranking10UsersRanksD1Ev) +STUB( + "doj2qojZhd0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE6resizeEj) +STUB("dojyaLKzKN0", FT_Tan) +STUB( + "donCZFQzU1I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEE7add_refEv) +STUB("doqtTIEAdHY", _ZNK3sce2Np9CppWebApi7Matches2V116RequestMatchTeam6toJsonERNS_4Json5ValueEb) +STUB("dotFlb4IlYo", uprv_decNumberLogB_67) STUB("dowMWFgowXY", sceNpWebApi2InitializeForPresence) +STUB("dp1-zpR8Tmc", _ZN3JSC4Yarr17RegularExpressionD1Ev) STUB("dp1wu22jSGc", sceHmdInternalResetLedForVsh) +STUB( + "dp8KOYU469c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEEC2EPS6_PNS2_10LibContextE) +STUB("dpBLF9M80EY", WKPreferencesSetHixie76WebSocketProtocolEnabled) +STUB("dpBftaVxSb4", _ZN3sce7Toolkit2NP15UserRankRequestC2Ev) +STUB( + "dpCrav8zdLk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEE7add_refEv) +STUB("dpM1nUC8Tbk", mono_replace_ins) STUB("dpMK+i43hbU", sceLibSecureRemoveCipher) +STUB( + "dpN-e0L2tSg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("dpPikaYGTPg", _ZN3sce2Np9CppWebApi7Matches2V111AddedPlayer12setAccountIdEPKc) +STUB( + "dpRsQ+cxugM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEEC1Ev) +STUB( + "dpTM67L8PSc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB( + "dpTTbWIwduk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEptEv) +STUB("dpU1o6GkHLM", _ZN3JSC8SubspaceC2EN3WTF7CStringERNS_4HeapE) +STUB("dpUV43EnmDM", _ZN7WebCore8SVGNames8modeAttrE) +STUB("dpUsMNUxonA", _ZN7WebCore21convertToIntegerClampIiEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB( + "dpVh9Q2CYQs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEE7get_refEv) +STUB("dpXLpwK0gCA", _ZN3sce7Toolkit2NP2V28Commerce10Containers5resetEv) +STUB( + "dpXr4bORvLU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEC1EPS6_PNS2_10LibContextE) STUB("dpayEeZ4WG0", sceVnaSetTtsDuckingLevel) +STUB("dpc8zPR4rU4", _ZNK3sce2Np9CppWebApi13InGameCatalog2V55Image6getUrlEv) +STUB("dpcMJMWSBkg", _ZNK7WebCore6Editor7canEditEv) +STUB("dpcl4XdvZdw", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEE3getEv) +STUB( + "dpg1JyOfCE8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "dpiLwrwBJKk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE8copyFromERKS9_) +STUB("dpin7BP4OVk", jinit_d_main_controller) +STUB("dplyQ6+xatg", _ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE2idE) +STUB("dpnSZ6bCdKs", _ZN7WebCore26ISOProtectionSchemeInfoBox5parseERN3JSC8DataViewERj) +STUB( + "dpnhXhKvQIw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEE7add_refEv) +STUB("dpxsbJcA-Nw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEEppEi) +STUB("dq+OesyeELs", mono_aot_Sce_Vsh_Sl2_Sl2Deliverjit_code_end) +STUB("dq+jnbD0N2A", _ZN8Gigacage29tryAllocateZeroedVirtualPagesENS_4KindEm) +STUB( + "dq633KF34d4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB( + "dq7MAUTNUmA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEEC1ERSA_) +STUB("dqB3Ccg43qI", YGNodeFree) +STUB("dqEF7A1NFSw", _ZN3sce3Xml3Dom8Document15removeAttributeENS1_6NodeIdEPKNS0_6StringE) +STUB("dqEhIWRTjuo", cairo_ft_font_face_create_for_ft_face) +STUB( + "dqGIvYiZAso", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEC1EPNS2_10LibContextE) +STUB("dqIP0RA9gtg", _ZN7WebCore33pageConfigurationWithEmptyClientsEN3PAL9SessionIDE) +STUB( + "dqLbI7XYdCI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEED2Ev) STUB("dqPBvjFVpTA", sceGnmDebugModuleReset) +STUB("dqQ1wINDyxA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEEC1ERKS7_) +STUB( + "dqRTNb2HPwU", + _ZN3sce2Np9CppWebApi11UserProfile2V125GetFriendsResponseFactory6createEPNS1_6Common10LibContextERKNS5_6VectorImEEPNS5_12IntrusivePtrINS3_18GetFriendsResponseEEE) +STUB("dqTyHmzAAAA", _ZN3sce2Np9CppWebApi7Matches2V120ReportResultsRequestD2Ev) +STUB("dqfaUQnWRtg", Java_java_awt_GnmGraphics_nativeDrawLine) +STUB("dqi3juWKDBk", mono_counters_foreach) +STUB("dqjlsaUX0sc", _ZN3sce2np3ipc10IpmiClientC2Ev) +STUB("dqpZ10KTssY", _m_ch_key1) +STUB("dqsvARv0Bvc", _ZN3sce3Xml3Dom15DocumentBuilderD2Ev) +STUB( + "dqszmhphRhY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEEC1ERSA_) +STUB( + "dqvRsSAinx0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEC1EPS6_PNS2_10LibContextE) STUB("dqwCM7RWifY", sceApplicationNotifyVshReady) +STUB("dqxQeperDHk", _ZN7WebCore27CSSComputedStyleDeclaration5derefEv) +STUB( + "dqzf12JNHcA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEaSERKS7_) +STUB( + "dr4MXIOOoLk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE8copyFromERKS9_) +STUB("drEIiWkpBsQ", _ZN3JSC7Symbols24rejectPromisePrivateNameE) +STUB("drJQ-vRTe2I", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEEC2EPNS2_10LibContextE) +STUB( + "drLib1qV4G4", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeader13isInitializedEv) +STUB("drR4t+cPE-o", _ZN3sce7Toolkit2NP10IdDatabase12getNpTitleIdEv) +STUB( + "drUQKHBSYmU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("drVpPCSYvJs", uset_complementAll_67) STUB("drZUF0XKTEI", sceFontGraphicsSetupHandleDefault) +STUB( + "drcjT0HPMuY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "drhkdJd7Fr0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEC2EPS6_PNS2_10LibContextE) +STUB("drijYCj6+ZM", + _ZN3JSC11ProxyObject14finishCreationERNS_2VMEPNS_14JSGlobalObjectENS_7JSValueES5_) STUB("drjIbDbA7UQ", sceNetEpollWait) +STUB( + "drmIxQ5o1wI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE8pushBackERKS8_) +STUB( + "drqhhl-Fs+s", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEC2EPS8_) +STUB( + "drrRpKTWpb0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEE11get_deleterEv) +STUB( + "drtqN5dH7Wg", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData37setxPsnTcsComparedLastUpdatedDateTimeEPKc) +STUB( + "drv43CccobI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE7popBackEv) +STUB("drwewe8Kjr4", _ZN7WebCore23CoordinatedImageBackingD0Ev) +STUB( + "dryCH9Vyxu8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEcvbEv) +STUB( + "ds39BY862Q8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEC1Ev) +STUB("ds5oXoQw2HY", _ZN7WebCore19JSDOMMatrixReadOnlyD1Ev) +STUB("ds7SHOA7uZM", _ZNK3sce2Np9CppWebApi11UserProfile2V114PersonalDetail6toJsonERNS_4Json5ValueEb) STUB("ds8nxxKNdk0", scePigletReleaseSystemMemory) +STUB("ds9BJbeJ0ZQ", ErrorDialogOpen) STUB("dsC4xos42zM", sceUpsrvUpdateDoCheckBootUpdate) +STUB("dsJKehuajH4", _ZNSt6locale7_LocimpC2ERKS0_) +STUB("dsKVK6wUloE", _ZNK7WebCore16HTMLInputElement21autoFillButtonElementEv) +STUB( + "dsLT-nsRRqg", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData24unsetxPsnAtomicOperationEv) +STUB( + "dsPoF768jYQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("dsQ5Xwhl9no", _ZN10__cxxabiv120__function_type_infoD1Ev) +STUB( + "dsR28J-JqdQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "dsRTEeIy0xA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE8pushBackERKS8_) +STUB("dsRfWHNwq8U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEptEv) +STUB("dsT81Raq3h4", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationProperties10setHelpfulERKi) +STUB("dsXnVxORFdc", wcstok_s) +STUB("dsY0Mmpb+Mk", WKViewPaintToCurrentGLContext) +STUB("dsaKJzgMT+o", _ZN7WebCore29cookieRequestHeaderFieldValueERNS_8DocumentERKNS_3URLE) +STUB("dsgJ2cWHLOc", _ZNK7WebCore8Document19useSystemAppearanceEv) +STUB("dshFTGH2COc", _ZNK7WebCore11FrameLoader14cancelledErrorERKNS_15ResourceRequestE) +STUB("dsjz212qqQU", UCNV_TO_U_CALLBACK_STOP_67) +STUB("dsoC4tqHj6Y", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_20ChallengeRecvDetailsEED1Ev) +STUB("dsomX1PvEyw", _ZN19JITSharedDataMemory13shared_callocEmm) STUB("dsqCVsNM0Zg", sceNpCommerceHidePsStoreIcon) +STUB( + "dsqosSOEJHI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE8copyFromERKS9_) +STUB("dsqwMNebbSw", _ZN3sce2Np9CppWebApi11Matchmaking2V15ErrorC2EPNS1_6Common10LibContextE) +STUB( + "dssMr6pzLDI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE21intrusive_ptr_add_refEPS9_) +STUB("dsw+atGc8aw", ubidi_open_67) +STUB("dsxMZLBYKOU", _ZN3WTF25addLanguageChangeObserverEPvPFvS0_E) +STUB("dt+BLV+A45A", nn_getsockopt) +STUB("dt0A2cWjwLs", _ZN3sce2np6HandleD2Ev) +STUB( + "dt5wuOEwH0g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE5beginEv) +STUB("dt6JgtCqHVk", YGLog) +STUB( + "dt84tCp3Dv8", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124ConnectionQualityFactory7destroyEPNS3_17ConnectionQualityE) +STUB("dt8ermYp-Wc", gethostbyname_r) +STUB("dtAAvzNtLAw", ___longjmp) +STUB("dtMu9zCDn3s", __fixunsxfsi) +STUB("dtNkfThj-uk", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead21getSupportedPlatformsEv) +STUB("dtSL0gYve3k", g_playerPrefsSupport) +STUB( + "dtUnW-VxWN4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEC2EPS6_PNS2_10LibContextE) STUB("dtV1Zqx4jU0", sceUpsrvUpdateDoUpdateWithPupPath2) +STUB( + "dtWB+-AeKS4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("dtYRVCJF4LY", _U_dyn_cancel) +STUB( + "dtm+NSBm-ts", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE5beginEv) STUB("dtmPxxVErK0", sceVideoOutSysUpdateDisplayParameter_) +STUB( + "dtnKsC6nivE", + _ZNK7WebCore21ContentSecurityPolicy21allowScriptFromSourceERKN3WTF3URLENS0_24RedirectResponseReceivedE) +STUB("dtqKHyWdN08", _ZN3sce7Toolkit2NP2V27NpUtils12Notification15UserStateChangeC1Ev) STUB("dtx5tcGFVII", sceShellCoreUtilExitMiniAppWithValue) +STUB("dtxKTpzWCG4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE8capacityEv) +STUB("dtz0WTyfG6g", bemp2sys_tsfilter_destroy) +STUB("du0fBDWBZEo", mono_aot_Sce_Vsh_JsExtensionplt_end) +STUB("du0sJLoB+Ok", _ZN3JSC8Debugger11handlePauseEPNS_14JSGlobalObjectENS0_14ReasonForPauseE) STUB("du4P08Wq144", sceOpusSilkEncCreate) +STUB( + "du6QAD7G1Uc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEED2Ev) +STUB("du6k+jO8Pno", _ZN7WebCore37CrossOriginAccessControlCheckDisablerD1Ev) +STUB("duD2GBO18oE", mono_aot_Sce_Vsh_Orbis_Bgftunbox_trampolines_end) +STUB( + "duFESwMfj0Q", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_34DetailedProductInfoListInputParams9ProductIdEE7addressERS4_) +STUB("duFdoQi9Ylc", mono_aot_Sce_Vsh_RemotePlayjit_code_end) +STUB("duHy7aP++d4", _ZN4Manx11BundleOrbis7resolveEPKc) +STUB( + "duJfiox9YWI", + _ZN7WebCore34forwardAttributeGetterToBackingSetERN3JSC14JSGlobalObjectERNS0_8JSObjectERKNS0_10IdentifierE) +STUB( + "duMO7DJsyJA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEC2EPS8_) +STUB( + "duQAIPDE4ro", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEixEm) +STUB( + "duVW3oEkOo4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEE5resetEPS6_) +STUB("duXH3bhyztI", _ZNK7WebCore12SharedBuffer11DataSegment4dataEv) +STUB("duXXgbaaoEU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEEC1Ev) +STUB( + "dubvGs+jvAo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEED2Ev) +STUB("dufE6ag61NA", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEEcvbEv) +STUB( + "dufgC61zB9U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE7reserveEi) STUB("dukLb11bY9c", sceUserServiceSetPbtcAdditionalTime) +STUB("dumKNmHpdOQ", fuse_get_session) +STUB("dun+iZN6ZTI", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container10unsetMediaEv) +STUB("dunlkt7vwL0", _ZN3sce7Toolkit2NP2V29Challenge9Challenge13MAX_SIZE_DATEE) +STUB("duxNFZJFnJU", _ZN3WTF10StringImpl19characterStartingAtEj) STUB("dv2RqD7ZBd4", sceHmdInternalDfuOpen) +STUB( + "dv2fKZjDM3M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEED1Ev) +STUB( + "dv5wnYa2eLU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB("dv6wj6rjOCM", uregex_getStackLimit_67) +STUB("dv8KUvfjc8c", _ZN3sce2Np9CppWebApi11UserProfile2V125GetPublicProfilesResponse11getProfilesEv) +STUB("dvA2w+pPH8g", WKViewReplyJavaScriptAlert) +STUB( + "dvAsHRgRANA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEED1Ev) +STUB( + "dvEeaDp0PfE", + _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody23getLocalizedSessionNameEv) +STUB("dvHVC+OIP3c", _ZN3JSC7Symbols35hasInstanceBoundFunctionPrivateNameE) +STUB( + "dvJiHB16Opg", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("dvRQufzoL2E", _ZN3sce2np13JsonDocParser12onArrayValueEjjiNS0_10JsonParser9ValueTypeEPKc) +STUB( + "dvS+obe67K0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE7reserveEi) +STUB("dvWRC0Ol2jA", _ZN4Manx11MediaPlayer12supportsTypeEPKcS2_b) STUB("dvkqP9KUMfk", sceNpManagerIntLoginGetAccountId) +STUB("dvlkBfwgbR4", mono_reflection_free_type_info) STUB("dvp-mPrfQfk", sceDebugGetMonoVMList) +STUB("dvp2zGSQzMs", _ZN3sce4Json19InternalInitializer19terminate_staticlibEv) +STUB( + "dvw0wtlJIhU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEE7add_refEv) +STUB("dw-MgMs36Q8", mono_aot_Sce_Vsh_CloudClientplt) +STUB("dw64kVqtuKM", _ZN7WebCore11XPathResult11iterateNextEv) +STUB("dwASDRq1150", _ZNK15AbstractStorage13TwitterFolder13GetCapabilityEv) +STUB( + "dwB+LLnxcAQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEE5resetEPS9_) +STUB( + "dwDRylngo4Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE21intrusive_ptr_sub_refEPS9_) +STUB("dwFvwQKcbgs", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEED2Ev) +STUB( + "dwLmAW8XnUo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEmmEi) +STUB( + "dwQuMZPBjK0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE3endEv) +STUB("dwVsjGWQMdU", u_strHasMoreChar32Than_67) +STUB("dwW65etqqMg", WKPreferencesSetWebAnimationsCSSIntegrationEnabled) +STUB( + "dwanSgmJGuA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEneERKS9_) +STUB("dwjYscuo6Tg", _ZN7WebCore13IdentifierRep3getEi) +STUB( + "dwjjtVJ4lVs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEppEi) +STUB( + "dwlMzEWqDcs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEED2Ev) +STUB("dwm6guDkJWw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEptEv) +STUB( + "dwmbq-vXE-0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEC1Ev) +STUB("dwxWF0tZw3k", monoeg_g_string_append_c) +STUB("dx0+nVIH3ek", mono_aot_I18N_CJKplt_end) +STUB("dx0km181P6o", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V117ResponseMatchTypeEEneERKS7_) +STUB( + "dxGMonV0pkM", + _ZN9Inspector28DOMDebuggerBackendDispatcher16setDOMBreakpointElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("dxHvXvfXua4", _ZN7WebCore10inSameLineERKNS_15VisiblePositionES2_) +STUB("dxWpZsBRNh4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V112OnlineStatusEEC1EPS6_) +STUB( + "dxdqQytc7n8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "dxepjpgL2VQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEmmEv) +STUB( + "dxfCN-CW70M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEC1EPKS8_) +STUB("dxh79i+5Cyk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEE11get_deleterEv) +STUB( + "dxj7FdW8XtY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("dxn63S1rZus", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEED2Ev) STUB("dxpQVn+xVYE", sceLoginMgrServerNotifyEasySignInFinished) STUB("dxpUx7z9StY", sceNpLookupNetDeleteTitleCtx) +STUB("dxphfFDV-4Y", _ZN7WebCore16ScriptController30executeScriptIgnoringExceptionERKN3WTF6StringEb) +STUB( + "dxrN2OaEUEs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEE11release_refEv) STUB("dxulc33msHM", sceNgs2StreamQueryBufferSize) +STUB("dxwLuIoVZ6E", _ZN7WebCore13MIMETypeCachenaEm) +STUB("dxyWDe5AwgY", uloc_getLanguage) +STUB( + "dy5OlCrZit8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEEC1ERSA_) +STUB("dy5gXrUocbc", WKNavigationActionShouldPerformDownload) +STUB("dy6mTFUOPLM", _ZN3JSC7Symbols33throwTypeErrorFunctionPrivateNameE) +STUB("dy8ygGy0k1M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V113AttributeTypeEEaSERKS7_) STUB("dyIhnXq-0SM", sceSaveDataDirNameSearch) +STUB("dyJxN8ZyJCw", _ZN9Inspector25NetworkFrontendDispatcher13loadingFailedERKN3WTF6StringEdS4_PKb) +STUB( + "dyLUcwMUDuc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "dyMxZI2ItFQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEmmEv) +STUB( + "dyOLZhnUzjY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEED2Ev) +STUB( + "dyhCcyA7ZE8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB( + "dyhZ0guZXO8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEC2EPKS8_) +STUB( + "dylpAwPogxU", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V125FrequentlyMutedProperties6toJsonERNS_4Json5ValueEb) +STUB("dyp2qrY2k58", _ZN9Inspector22InspectorDebuggerAgentnwEm10NotNullTagPv) +STUB("dyqLbVYkq3o", WKPreferencesGetTypeID) +STUB( + "dyy+kAZTBkA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEneERKS9_) STUB("dz-OCLvhVMs", sceLncUtilGetAppIdListOfBigApp) +STUB("dz0+6+b1oVM", _ZN7WebCore16JSXMLHttpRequest14finishCreationERN3JSC2VME) +STUB( + "dz2WKi8w05g", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEdeEv) +STUB( + "dz3dAWaOP8Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("dz4VEj7Pd18", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE8copyFromERKS7_) +STUB("dz6LsbBCwDM", Java_java_io_RandomAccessFile_getFilePointer) +STUB("dz7bRYo61uY", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_11CountryInfoEED2Ev) +STUB( + "dzUQXYOS7Xk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("dzaQFLT9EK8", WKPageGetResourceCachingDisabled) +STUB("dzbKmf3Ycog", u_isISOControl) +STUB("dzcpFouKD28", il2cpp_class_is_abstract) +STUB( + "dzeDrwrqsu4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE10setContextEPNS2_10LibContextE) +STUB("dzgrvhCjExA", _ZN4IPMI4impl11SessionImpl9getServerEv) +STUB("dzlfWs2+nVo", _ZN7WebCore11HistoryItem17setScrollPositionERKNS_8IntPointE) +STUB( + "dzlkneBWrco", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEC2EPS8_) +STUB("dznEkH18LRA", alt_digits) +STUB("dzrr2-LTKnA", WKBundlePageSetHeaderBanner) +STUB("dzuyxeM1aXU", ucnv_swapAliases) +STUB( + "dzzNfdTpyYo", + _ZN3sce2Np9CppWebApi14SessionManager2V131ResponseGameSessionMemberPlayer8fromJsonERKNS_4Json5ValueE) +STUB( + "e+0Vn9Rlgcs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEE3getEv) +STUB( + "e+2E4FVjuP4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEE5resetEPS6_) +STUB( + "e+480Aw9JEM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEppEv) +STUB("e+4zri4csBI", _ZN7WebCore26MessagePortChannelRegistryC1ERNS_26MessagePortChannelProviderE) +STUB( + "e+FjMEzKnmw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEC2EPS6_PNS2_10LibContextE) +STUB("e+Fq1ZZzkyE", WKPageRunJavaScriptPromptResultListenerCall) +STUB("e+HW6SLzJZI", mono_aot_Sce_Vsh_GriefReportunbox_trampolines_end) +STUB("e+I95lSa9ZQ", _ZN7WebCore8SVGNames17attributeTypeAttrE) +STUB( + "e+IHFmrjaig", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("e+J178oTm+Y", _ZN7WebCore6Path2DD1Ev) +STUB("e+LXeATh76w", _ZN3sce7Toolkit2NP2V28Matching4Room8deepCopyERKS4_) STUB("e+OCXNBQRAA", sceKernelGetPs4SystemSwVersion) +STUB("e+QF5nu4X9c", _ZN3sce7Toolkit2NP2V27Session7Request22GetReceivedInvitationsD2Ev) +STUB("e+RithAtqEw", _ZN3sce2Np9CppWebApi6Common6StringC2EPNS2_10LibContextE) +STUB("e+SXNRX93HI", _ZN3JSC7Symbols32throwOutOfMemoryErrorPrivateNameE) +STUB( + "e+TOqVLheSs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEE11release_refEv) +STUB("e+Udsq-3S+I", unorm2_composePair) +STUB( + "e+VH2R3+wFA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "e+WxwLfNU8M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEC1Ev) +STUB("e+XnAvtC6jc", _ZN12video_parser13cVideoPathMgvC1EPKc) +STUB( + "e+ZfBQaCCB0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEmmEi) +STUB("e+at5kyBBxg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11UserProfile10NpProfilesEE3setEv) +STUB("e+eaUAKgF3Q", _ZN7WebCore13JSHTMLElement13visitChildrenEPN3JSC6JSCellERNS1_11SlotVisitorE) +STUB( + "e+gmnuQYVag", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEEC1Ev) +STUB("e+gwJWjXptI", mono_gc_wbarrier_value_copy) +STUB("e+hi-tOrDZU", _Dbl) +STUB( + "e+olCC3K7xQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEE11release_refEv) +STUB("e+sSKboL3VY", _ZN9Inspector22PageFrontendDispatchernaEm) +STUB( + "e+t+6xHgsH8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEC1Ev) +STUB( + "e+u2G4cr+qo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEdeEv) +STUB("e+y-cD8sOqw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEED1Ev) +STUB( + "e+z05LKVOt0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEdeEv) +STUB( + "e+z4fFS9Qu8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEED2Ev) +STUB("e--lxZ2OQJ4", _ZN3sce7Toolkit2NP2V210Tournament7Request10GetBracketC2Ev) +STUB( + "e-7EBszFTMA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE7reserveEi) +STUB( + "e-CHFJPFq5o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEEaSERSA_) +STUB("e-CPW30NFxU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEE5resetEPS6_) +STUB("e-EZr2An3B4", ubidi_getParagraph_67) +STUB("e-HzZLSmFrc", _ZNK3sce2np14JsonObjectImpl11GetFieldNumEv) +STUB( + "e-IQ5ExOTM0", + _ZN3sce7Toolkit2NP7Ranking9Interface15displayUserRankEPKNS1_15UserRankRequestEPNS1_9Utilities6FutureINS1_19UserRankInformationEEEb) +STUB( + "e-ItyyaDUdo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEC2Ev) +STUB("e-NAOmLN7U8", __asan_load16_noabort) STUB("e-ODUaoHXiY", _sceApplicationGetAppId) +STUB("e-OIoNop-Z8", _ZN3sce7Toolkit2NP2V210Tournament14RegisteredTeamC2Ev) +STUB("e-OnyPe42tI", _ZN4IPMI4impl10ServerImpl18shutdownDispatcherEv) +STUB("e-PP5irT2us", Java_java_lang_reflect_Array_setShort) +STUB("e-QultjK7Q0", _ULx86_64_get_fpreg) +STUB("e-S6iuDl2xk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUserD2Ev) STUB("e-TjHAkKilQ", sceSystemLogger2SetLogAsync) STUB("e-YMQ+2tj9M", sceAgcDriverGetTFRing) STUB("e-ZuhGEoeC4", sceNpGetNpReachabilityState) +STUB( + "e-hl4-fxmK8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEptEv) +STUB("e-jov6VIC44", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_20ChallengeRecvDetailsEE7addressERKS3_) +STUB( + "e-k60B14HBw", + _ZN9Inspector28DOMDebuggerBackendDispatcher16setURLBreakpointElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "e-mG5kgUUIM", + _ZN7WebCore10FileHandleC1ERKN3WTF6StringENS1_14FileSystemImpl12FileOpenModeENS1_9OptionSetINS5_12FileLockModeEEE) +STUB("e-or7vyZ5nI", _ZN3sce7Toolkit2NP2V210Tournament12GenericEventC1Ev) +STUB("e-wvZ7Y3G-M", _ZN7WebCore9HTMLNames12onscrollAttrE) +STUB("e-x3VstFAjg", _ZN3JSC14JSModuleRecord8evaluateEPNS_14JSGlobalObjectE) +STUB( + "e0+Hrtty8AM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "e03XgBlsst0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE7reserveEi) +STUB("e06Qn0g80js", Java_java_io_ObjectOutputStream_floatsToBytes) +STUB( + "e07dIFTHMOc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEEcvbEv) +STUB("e07sBiAw4EY", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersC1ERS5_) +STUB( + "e09k9ZZoIpg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("e0EgOxLrqqE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE5beginEv) +STUB( + "e0LN2EvjLbU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "e0Qmm4Dm2VU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE5emptyEv) STUB("e0T1d7YylFA", sceAvControlChangeOutputModeForDiag) +STUB( + "e0Tf2yRCQjI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEC1EPNS2_10LibContextE) +STUB("e0WHEdfrWjE", uprv_decNumberMaxMag_67) +STUB("e0jjfsQdveM", WKPageGetBackingScaleFactor) +STUB( + "e0n+XvGVWjY", + _ZN3sce2Np9CppWebApi14SessionManager2V133RequestPlayerSessionPlayerFactory6createEPNS1_6Common10LibContextEPKcS9_PNS5_12IntrusivePtrINS3_26RequestPlayerSessionPlayerEEE) +STUB( + "e0oVUnvqg38", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB( + "e0r8A9WVGTI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEneERKS9_) +STUB( + "e0wyVgGiMcQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEppEv) +STUB("e1-41W6j0pA", _ZN7Nicosia16SceneIntegration10invalidateEv) +STUB( + "e1-MfiYFn-Y", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "e15Agw-m3hU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEmmEv) +STUB( + "e1COEbWSsAo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEixEm) STUB("e1DFTg+Sd8U", sceAgcAcbJump) STUB("e1GIcX4AlY4", sceKernelMemoryPoolMove) +STUB("e1I-WZknBEk", _ZN7WebCore14ScrollableArea16handleWheelEventERKNS_18PlatformWheelEventE) +STUB("e1IQ+N9hSKw", _ZN3sce2Np9CppWebApi12Leaderboards2V15EntryD1Ev) +STUB( + "e1MlS5wcmi0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEEdeEv) +STUB( + "e1Om+khNSnk", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi32ParameterToPostGameSessionsTouchC1ERS5_) +STUB("e1S3Yp+fWeQ", _ZN3sce7Toolkit2NP22SearchNpSessionRequestC1Ev) +STUB( + "e1TYrVxFZN4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEppEv) STUB("e1UWb8cWPJM", sceUsbdGetDeviceSpeed) +STUB("e1YbVg6154g", pr3) +STUB( + "e1hgdHACVnU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE3endEv) +STUB("e1kruvXYH6s", WKPreferencesGetResourceUsageOverlayVisible) +STUB( + "e1nyajoiA5Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEplEm) +STUB( + "e1sHW9D-z9Y", + _ZNK7WebCore21ContentSecurityPolicy27allowChildContextFromSourceERKNS_3URLENS0_24RedirectResponseReceivedE) +STUB( + "e1tXN24L0UM", + _ZN8meta_gen11MsvPromoter27setKeyValue_TBLV_EpisodeNumENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB("e1y7KVAySrY", _FXp_getw) +STUB("e1zBpxIqit4", + _ZN3sce7Toolkit2NP10ParametersC2EPFvRKNS1_5EventEEPvmPNS1_19AllocImplementationE) +STUB( + "e1zOzfgYjzM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEC2EPNS2_10LibContextE) +STUB("e2A4lpikaa4", _ZN3sce7Toolkit2NP2V27NpUtils5IdMapC2Ev) +STUB("e2FFaTvxUkI", WKBundlePageSetEventThrottlingBehaviorOverride) STUB("e2G+cdEkOmU", pthread_attr_getscope) +STUB("e2GFx4DmimI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEC2ERKS7_) +STUB("e2HCfvSeqdU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEC2ERS7_) +STUB( + "e2KKTSIARyA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE6resizeEj) +STUB("e2KoMPOAdZg", FT_Get_Track_Kerning) +STUB( + "e2LALpvdNvE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEppEi) +STUB( + "e2RCVL75dEU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEED1Ev) +STUB("e2VSkMBqCfY", + _ZNK7WebCore5Range19absoluteBoundingBoxEN3WTF9OptionSetINS0_20BoundingRectBehaviorEEE) +STUB( + "e2WCcbVtfbM", + _ZN23sceMetadataReaderWriter15ParserInfoTable14getParserInfosEjPSt6vectorIPNS_10ParserInfoESaIS3_EE) +STUB("e2a1ZA+lJC4", _ZN3sce2np7RingBufC2Ev) +STUB("e2jQsb44n7g", _ZN9Inspector27CSSBackendDispatcherHandlerD1Ev) +STUB( + "e2mELBEinhg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEED2Ev) +STUB( + "e2mJSKWmtVY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEmmEv) +STUB( + "e2p7e93EDgs", + _ZN7WebCore13releaseMemoryEN3WTF8CriticalENS0_11SynchronousENS_24MaintainBackForwardCacheENS_19MaintainMemoryCacheE) +STUB("e2w1koiR0RU", _ZN3sce7Toolkit2NP2V23TSS7Request7GetDataD1Ev) +STUB( + "e2xC5648KPg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEEC1Ev) +STUB("e2xgmBUhbxY", _ZN3sce2Np9CppWebApi14SessionManager2V117SearchGameSession14unsetSessionIdEv) +STUB("e2xiHQd1MUY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE7reserveEi) +STUB( + "e3+nRPmr5LA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEEC1ERKSA_) +STUB( + "e35UjC00ucA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEE5resetEPS6_) +STUB("e371vKyHvfE", _ZN7WebCore15GraphicsContext14setStrokeColorERKNS_5ColorE) +STUB("e39S+saPElI", WKContextSetServiceWorkerFetchTimeoutForTesting) +STUB( + "e3AhZfSJxOI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEEC1Ev) STUB("e3BGBzl-Xx0", sceRnpsAppMgrRequestUpdateCheck) +STUB( + "e3CiGWT8S7Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB("e3EKOJWdFmY", monoeg_g_ascii_strncasecmp) +STUB( + "e3FGwDiDPNo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEC2ERKS7_) +STUB("e3FyRAFajSA", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEEC2Ev) +STUB("e3G2dB0myhM", _ZN7WebCore24MatrixTransformOperation6createEdddddd) +STUB("e3GpQB1rfKg", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi20ParameterToJoinMatchD2Ev) +STUB("e3HfkECgcUE", _ZN7WebCore25WebSocketChannelInspectorC1ERNS_8DocumentE) +STUB("e3JkoIC41H4", _ZN3sce7Toolkit2NP2V27Ranking7Request8SetScore14MAX_NUM_BOARDSE) +STUB( + "e3OAf7PvXC8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "e3PeSN6AwVQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("e3ddtMwUTOs", mono_aot_System_Reactive_Coremethod_addresses) +STUB( + "e3gaRGXQVpA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE10setContextEPNS2_10LibContextE) +STUB( + "e3jhqT6kyCA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE6resizeEj) +STUB("e3qtybCaqRw", uprv_getMaxCharNameLength_67) +STUB("e3shgCIZxRc", _ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2ERKSt8_Locinfom) +STUB("e3w7ndMVBE8", _ZN4Manx13WorkQueueImpl18dispatchAfterDelayEPNS_9WorkQueue8FunctionEd) +STUB("e3w9jPaFy3U", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEED2Ev) +STUB("e3wIdaiVEEM", _ZN3WTF10AtomString16fromUTF8InternalEPKcS2_) +STUB( + "e3ycJTYsW3I", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB( + "e40IY5jrzGM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("e40STfI8bFk", mono_arch_create_rgctx_lazy_fetch_trampoline) +STUB( + "e4AbiIWjOfo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("e4AjMGiD7U0", genName) +STUB( + "e4C7H5SYkyI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEC2EPKS8_) STUB("e4E3MIEAS2A", sceSystemServiceNavigateToGoBack) +STUB("e4I+fGvwugs", _ZN3WTF4Lock10unlockSlowEv) +STUB( + "e4JBjLh0W+I", + _ZN9Inspector21HeapBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) +STUB("e4KUB+JyA5I", _ZNK7WebCore16DocumentFragment14getElementByIdERKN3WTF12AtomicStringE) +STUB( + "e4O-JqjVbB8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEppEi) +STUB("e4PLF1Y5cOA", ures_getNextString_67) +STUB( + "e4Q+AqqL2SY", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions28setxPsnAcceptPlatformNamePs5ENS5_25XPsnAcceptPlatformNamePs5E) +STUB("e4RW2QuvDIU", mono_aot_System_Xml_Linqjit_code_end) +STUB("e4VYysnUjGU", mono_aot_Sce_Vsh_UpdateServiceWrappermethod_addresses) +STUB( + "e4WdWdbzxl8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEE11release_refEv) +STUB("e4Y5rUzc+AM", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V115LastUpdatedUser14unsetAccountIdEv) +STUB( + "e4bH-AN-Ao8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEE7get_refEv) +STUB("e4j-rkRbvNw", png_calloc) +STUB( + "e4mTOmZdUcw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEC1EPS7_PFvS9_EPNS2_10LibContextE) +STUB( + "e4rDzInUi3Q", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEdeEv) +STUB( + "e4tVMGNfUHE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "e50MWSA7e2I", + _ZN7WebCore13FetchResponse6createERNS_22ScriptExecutionContextEOSt8optionalINS_9FetchBodyEENS_12FetchHeaders5GuardEONS_16ResourceResponseE) +STUB("e50w9CgqAVM", + _ZN9Inspector22PageFrontendDispatcher24frameScheduledNavigationERKN3WTF6StringEd) +STUB( + "e51Mmd+oSTs", + _ZN3sce2Np9CppWebApi14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyC1EPNS1_6Common10LibContextE) +STUB("e52cFlZ1trI", + _ZNK7WebCore24RotateTransformOperation5applyERNS_20TransformationMatrixERKNS_9FloatSizeE) +STUB( + "e58BrWy+F5E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEC1EPKS8_) +STUB( + "e5FdtI5Kltw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("e5HOpV5feq8", glUniform2f) +STUB("e5Hrdhv9B+A", mono_aot_Sce_Vsh_GameCustomDatajit_got) +STUB("e5Hwcntvd8c", _ZNSt7codecvtIcc9_MbstatetEC2Em) +STUB("e5NP1ESukx8", _ZN7WebCore18TextureMapperLayer13setAnimationsERKNS_23TextureMapperAnimationsE) +STUB( + "e5PMxv9JEY0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE3endEv) +STUB("e5UfP5N62yQ", _ZN7WebCore13enclosingListEPNS_4NodeE) +STUB("e5VHdpvade4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEE3getEv) +STUB( + "e5Vg-QbuXVw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEEC2ERS9_) +STUB( + "e5bM9Qe1jCM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEED1Ev) +STUB( + "e5eDRq3soTg", + _ZN3sce2Np9CppWebApi11Matchmaking2V127GetOfferResponseBodyFactory7destroyEPNS3_20GetOfferResponseBodyE) +STUB( + "e5jQyuEE+9U", + _ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE7_GetcatEPPKNSt6locale5facetEPKS5_) +STUB( + "e5m+HjC-yF8", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_11EntitlementENS1_15AppSTLAllocatorIS5_EEEEC1Ev) +STUB( + "e5mrzOBwaaY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE10setContextEPNS2_10LibContextE) STUB("e5wi2n-IgTk", sceNpReallocImpl) STUB("e60aorDdpB8", sceFontFtInitAliases) +STUB("e65fXqnAlg4", _ZNK15AbstractStorage12LocalContent10GetServiceEv) +STUB( + "e66lllTq9cA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "e6AIRwZwV4U", + _ZN3sce7Toolkit2NP12ActivityFeed9Interface12getTitleNewsEPKNS1_19GetTitleNewsRequestEPNS1_9Utilities6FutureISt6vectorINS1_17ActivityFeedStoryENS1_15AppSTLAllocatorISA_EEEEEb) STUB("e6K3LE8qXsc", sceNpSnsIntFbGetSystemAccessToken) +STUB( + "e6KIEkEbfuU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEC2EPKS8_) +STUB( + "e6TI5e89KdE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEC1Ev) +STUB( + "e6Uik8lNzHU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEEC1ERKSC_) +STUB("e6V0Xi1IhzY", ucnv_setDefaultName) +STUB( + "e6YLmDqRcEY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "e6YZltYWlKs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEaSERKS9_) +STUB("e6cCjttumPM", _ZN7bmalloc9Scavenger29scheduleIfUnderMemoryPressureEm) +STUB("e6ge5-OvLv4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEdeEv) +STUB("e6iz-AepLUA", _ZN3sce7Toolkit2NP2V212EventsClient6EventsaSERKS4_) +STUB( + "e6mrPYECz3g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEE11get_deleterEv) +STUB( + "e6n06oOMwF4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEED1Ev) +STUB( + "e6nZYG5iPb8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEE7get_refEv) +STUB("e6ovBo9ZvJc", getppid) STUB("e6rTjFmcQjY", sceNpManagerIntGetAccountLanguageA) +STUB( + "e6rpDhWq1vo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE5clearEv) +STUB( + "e6sN4OuwmjM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEEptEv) +STUB( + "e6unKPBd-p4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEC1ERKS7_) +STUB( + "e6x1E5Mj9fE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEEptEv) STUB("e6y3WMBYbiM", sceSaveDataCancel) +STUB("e7-p8DQaR1Y", _ZN3sce2Np9CppWebApi7Matches2V120ResponseMatchResults22unsetCooperativeResultEv) +STUB("e70IJ6o4pR0", _ZNK7WebCore18TextureMapperLayer13textureMapperEv) +STUB("e70ZpotBU5Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE5clearEv) STUB("e71SZnZyD8Y", sceFsInitWorkspaceFileMetadataParam) +STUB("e75Y8KVaX1g", fuse_pollhandle_destroy) +STUB("e75mpVYq4VY", _ZN3sce7Toolkit2NP2V212EventsClient22EventOfficialBroadCastC2Ev) +STUB("e77LVbG8pjU", uprv_fmin_67) +STUB( + "e7CbETQO+bo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEED2Ev) +STUB("e7HJm+Q2D9Q", _ZN7WebCore6DOMURL6createERKN3WTF6StringE) +STUB( + "e7K2Mask8tQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEED1Ev) +STUB( + "e7OtekMIIeA", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V325PsnWebErrorWrapperFactory7destroyEPNS3_18PsnWebErrorWrapperE) +STUB("e7Q5PplS23s", _ZN3sce7Toolkit2NP2V27Session11InvitationsC2Ev) STUB("e7RAPAr4QpU", scePerfPmcGetCounter) +STUB( + "e7cZqNr9d18", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEC1EPS8_) STUB("e7gp1xhu6RI", sceUsbdEventHandlingOk) +STUB("e7kDPzD5e8g", _ZNK3JSC6JSCell8toNumberEPNS_14JSGlobalObjectE) +STUB( + "e7l+UjT4hZ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEE7get_refEv) STUB("e7laRxRGCHc", sceHmdInternalSetDebugMode) +STUB( + "e7nftKUx3No", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEC2Ev) STUB("e7nwve2CgyQ", scePlayReadyCdmiCreateMediaKeySession) STUB("e7pSAhCNrro", sceVideoOutSysSetRedirectFlip) +STUB("e7pzuaSj6AQ", WKNotificationPermissionRequestGetTypeID) +STUB("e7qtydH3uzA", _ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEEC2EPNS2_10LibContextE) +STUB("e89yNGKV4og", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku25displayOriginalPriceIsSetEv) +STUB("e8EKVXpCpL0", rgctx_fetch_trampoline_rgctx_111) +STUB( + "e8EZwXXdvzY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEED2Ev) +STUB("e8IRlHIOFog", mono_aot_Sce_Vsh_Orbis_AbstractStorageplt) +STUB("e8P9xcYmFp4", _ZN7WebCore22EmptyFrameLoaderClient17dispatchWillCloseEv) +STUB("e8Swq6+iac4", + _ZN7WebCore12SettingsBase23setPictographFontFamilyERKN3WTF10AtomStringE11UScriptCode) +STUB("e8XBRy9WFOk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEEeqERKS7_) +STUB( + "e8aIdJyzMK0", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB("e8j4t6KOXlQ", + _ZN7WebCore11JSDOMWindow17preventExtensionsEPN3JSC8JSObjectEPNS1_14JSGlobalObjectE) +STUB( + "e8k1GEBWGZY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEEaSERKSA_) +STUB( + "e8mefJ8gIMg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEED2Ev) +STUB( + "e8x71aUZBe4", + _ZN9Inspector24NetworkBackendDispatcherC1ERNS_17BackendDispatcherEPNS_31NetworkBackendDispatcherHandlerE) +STUB("e8zlvz3c3c4", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE7reserveEi) +STUB( + "e9+rq4cPo5Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEC1EPNS2_10LibContextE) +STUB("e90ZQRXzAXE", _ZN9Inspector15RemoteInspector6ClientD2Ev) +STUB( + "e91DcPt1j74", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("e95lhhjlHXg", WKDatabaseManagerGetDatabasesByOrigin) +STUB( + "e97kJZjhG8w", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE21intrusive_ptr_sub_refEPS7_) +STUB("e9Aq3cMPkcg", _ZN7WebCore17AnimationTimeline11descriptionEv) +STUB("e9BRou3cN4A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEE11get_deleterEv) +STUB("e9C2bhDfVvs", _ZN3sce7Toolkit2NP2V212ActivityFeed15PlayedWithStory5resetEv) +STUB( + "e9EUdzspkmk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEixEm) +STUB( + "e9Fm5+eh3i8", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V226WebApiErrorResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_19WebApiErrorResponseEEE) +STUB( + "e9IBZaGD+mA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE8copyFromERKS9_) +STUB( + "e9KEtcl6IRM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEEaSERSA_) +STUB( + "e9N5-ddj-Oc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEEC1Ev) +STUB("e9NdD5ijfyA", _ZNK7WebCore6JSNode8nodeTypeERN3JSC14JSGlobalObjectE) +STUB("e9Oxvyle79Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEaSERS7_) +STUB( + "e9R037Q+QHI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("e9TNH6eNEnA", _ZN3sce3Xml6StringC1ERKS1_) +STUB("e9TbTZXq-w8", sqlite3_column_bytes16) +STUB( + "e9VQote9ck4", + _ZN9Inspector24CanvasFrontendDispatcher17recordingFinishedERKN3WTF6StringENS1_6RefPtrINS_8Protocol9Recording9RecordingENS1_13DumbPtrTraitsIS8_EEEE) +STUB("e9WZ3MUFHBY", _ZN3sce7Toolkit2NP2V26Trophy15TrophyPackGroupaSERKS4_) +STUB( + "e9ZLQs9eieE", + _ZN7WebCore4Page19setVisitedLinkStoreEON3WTF3RefINS_16VisitedLinkStoreENS1_13DumbPtrTraitsIS3_EEEE) +STUB("e9bP8zdMofE", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_6TicketEE3getEv) STUB("e9esEJLGY0o", sceUsbStorageSetFakeWriteProtection) +STUB( + "e9gg8c-oO1c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEC2Ev) +STUB("e9ghYzJd1L0", _ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody14setRulesetNameEPKc) +STUB("e9kq80v5TTI", _ZNK7WebCore11HistoryItem9urlStringEv) +STUB("e9myLMjjXhc", _ZN3sce2np11NpHttpTransC2ERNS0_12NpHttpClientERKNS0_10NpOnlineIdE) +STUB("e9ocGh0zOGM", _ZN3NTF5MutexD2Ev) +STUB("e9sWOes5VlY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE21intrusive_ptr_sub_refEPS7_) +STUB( + "e9w1QH3vMDw", + _ZN9Inspector21InspectorRuntimeAgent27didCreateFrontendAndBackendEPNS_14FrontendRouterEPNS_17BackendDispatcherE) +STUB( + "e9zCSA8mXOk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "eA5gO7QCWGA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE8copyFromERKS9_) +STUB( + "eACRFLHx4FI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEdeEv) +STUB("eADQnu7cp90", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchStatusC2ERS5_) +STUB("eADv5sPWzgY", + _ZN7WebCore17CredentialStorage27removeCredentialsWithOriginERKNS_18SecurityOriginDataE) +STUB( + "eAFtOSUCm2k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEaSERS7_) +STUB( + "eAGQJ4nuHiM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEED2Ev) +STUB( + "eARplY-I3B8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE5beginEv) STUB("eAU7XCnlXMk", sceApplicationKill) +STUB("eAYdIYmrQjU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEcvbEv) +STUB( + "eAfKVHsiZNU", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi44ParameterToPatchGameSessionsSearchAttributesC2Ev) +STUB( + "eAfe3DZduRs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("eAg1RVhw5wA", _ZNK3sce2Np9CppWebApi14SessionManager2V111GameSession12getSessionIdEv) +STUB("eAiZS424Oq8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEEaSERKS7_) +STUB("eAjATlyzi+c", _ZN12video_parser5vpcom15_convErrPafToVpEi) +STUB("eB7IqobKhD4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEEC1ERKS7_) +STUB("eB89+hNzc6Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEppEv) +STUB( + "eBBWpsQ2+lw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEEC2ERKS9_) STUB("eBFzDYThras", sceSystemStateMgrCancelShutdownTimer) +STUB("eBGi2WEmrAk", _ZN3sce7Toolkit2NP2V28Matching4DataC1ERKS4_) STUB("eBL+l6HG9xk", sceNpTrophyGetTrophyIcon) +STUB( + "eBSKvnte-4w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEC1Ev) STUB("eBSSNIG6hMk", sceSaveDataGetEventInfo) +STUB( + "eBTrDugDfUM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE5emptyEv) STUB("eBTreZ84JFY", sceAvPlayerSetLogCallback) STUB("eBWS-HorSWY", sceNetCtlApDialogGetStatus) STUB("eBWlMuS-0MA", scePerfPmcL3GetCounter) +STUB( + "eBXs6uG0HZE", + _ZN9Inspector21PageBackendDispatcher18setBootstrapScriptElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "eBjJyJWlfy4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEplEm) +STUB("eBmVcCoq0dI", _ZN7WebCore4BlobC2EPNS_22ScriptExecutionContextE) +STUB( + "eBmloENxHyo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE10setContextEPNS2_10LibContextE) +STUB("eBoW3491Qw8", _ZN7WebCore9ImageDataD2Ev) STUB("eBrt8TPOlUI", sceNetApctlStop) +STUB("eBuNgAm7zgY", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEEptEv) STUB("eBvoaLwfBBQ", sceVideoOutSysReadCrc64) +STUB("eBxo9PWIE48", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors23getValidationConstraintEv) +STUB("eC3AUNM952g", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119NatConnectivityFrom8fromJsonERKNS_4Json5ValueE) +STUB( + "eC6Eo2UPPiw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) STUB("eC88db1i-f8", sceUserServiceGetSharePlayFramerateHost) +STUB("eCB7aNN7Ghs", _ZN3sce7Toolkit2NP2V28Matching7Request14SendInvitation18MAX_NUM_RECIPIENTSE) +STUB("eCDNriYq81Y", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEEdeEv) +STUB("eCDnVSSrKwo", + _ZNK3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse13relationIsSetEv) +STUB("eCFso1qrdNY", + _ZNK7WebCore13JSHTMLElement21pushEventHandlerScopeEPN3JSC9ExecStateEPNS1_7JSScopeE) +STUB("eCHybPTntZc", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10getString4Ev) +STUB( + "eCJx+a3mQ6w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEE7add_refEv) +STUB("eCLWlA78Faw", _ZN7WebCore19InspectorController15ensurePageAgentEv) +STUB( + "eCLj+GunGFY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEeqERKS9_) +STUB( + "eCLsKEjoqUs", + _ZN9Inspector33ApplicationCacheBackendDispatcher27getApplicationCacheForFrameElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "eCPQpDFUCQ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) STUB("eCQoGkpAfA0", sceCesUtf16leToEucKr) STUB("eCRMCSk96NU", sceFontTextSourceSetDefaultFont) +STUB("eCTBrehmQfI", g_list_length) STUB("eCUIlA2t5CE", sceNetCtlGetBandwidthInfoIpcInt) +STUB("eCbNVDFzGCs", JSContextGroupCreate) +STUB( + "eCcP4R3yhqE", + _ZN7WebCore16HTMLTableElement8setTHeadEON3WTF6RefPtrINS_23HTMLTableSectionElementENS1_13DumbPtrTraitsIS3_EEEE) +STUB("eChRZu789Pk", ucnv_cbFromUWriteBytes_67) STUB("eCjKaqeeQ5s", sceAgcAcbPrimeUtcl2GetSize) +STUB("eCjonvf5rso", _ZN7WebCore21ISOTrackEncryptionBox5parseERN3JSC8DataViewERj) +STUB( + "eCln8H8dhqU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEE11get_deleterEv) +STUB( + "eCsfKCuVJTI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEC2Ev) +STUB("eCt77qfDBf8", _ZN7bmalloc9ScavengerC2ERKSt11scoped_lockIJNS_5MutexEEE) +STUB( + "eCyIOiBCnBU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE3endEv) STUB("eD+X2SmxUt4", sceVideodec2AllocateComputeQueue) +STUB("eD+mC6biMFI", _ZTIN10__cxxabiv117__array_type_infoE) +STUB("eD-fRmwbvu8", OCSP_cert_to_id) +STUB("eD0Heap9FkI", _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead14sessionIdIsSetEv) +STUB( + "eD6030SzgjM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEED1Ev) +STUB("eD76mHY99fM", u_getIntPropertyValue) +STUB( + "eDATBQWX+lY", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ImageFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5ImageEEE) +STUB("eDBXAIMIaKk", mono_image_loaded_by_guid) +STUB("eDDkfNXuvr8", _ZN3sce7Toolkit2NP18SessionInformationC1Ev) STUB("eDFeTyi+G3Y", sceAjmDecMp3ParseFrame) +STUB( + "eDIy61Vo-vU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "eDNxhgdz6zE", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearch8getlimitEv) +STUB( + "eDQEnpGCuWo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEE7get_refEv) STUB("eDQTFHbgeTU", sceMouseDisconnectDevice) +STUB( + "eDRQQrpUTlY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEED2Ev) +STUB( + "eDTgkEgXMkQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE5beginEv) +STUB( + "eDcJOhydHRw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEmmEv) +STUB("eDciML+moZs", _ZTISt12system_error) +STUB("eDdGDt86MX0", __ubsan_get_current_report_data) +STUB("eDeAbQ8q28w", _ZN7WebCore16JSXMLHttpRequestC1ERKS0_) +STUB("eDglomsck7M", mono_profiler_install_context) +STUB( + "eDkik1SrQns", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEixEm) +STUB("eDmbt0P120g", strcasestr) +STUB("eDoW9KCT0Ag", _ZNSbIwSt11char_traitsIwESaIwEE7replaceEmmRKS2_mm) +STUB( + "eDtbZYNo33k", + _ZN3sce2Np9CppWebApi14SessionManager2V130MemberWithMultiPlatformFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_23MemberWithMultiPlatformEEE) STUB("eDxEHb9f7B8", sceNpMatching2SignalingAbortConnection) STUB("eDxmMoxE5xU", sceFontGraphicsUpdateScaling) STUB("eE4Szl8sil8", sceKernelAprSubmitCommandBuffer) +STUB("eE5Xq+xNb8I", mono_btls_x509_verify_param_set_name) +STUB( + "eE6Sb+rUt0U", + _ZNK3sce2Np9CppWebApi14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBody16customData1IsSetEv) +STUB("eE7CU0gGnOc", _ZTVN7WebCore22DefaultFilterOperationE) +STUB("eEH9h2oW1B4", utrie2_swap) +STUB("eEKCqqaPSmc", mono_aot_Sce_Vsh_JsExtensionjit_code_start) STUB("eEMpsX1fGHU", sceVoiceChatDeleteRequest) +STUB("eEPzJzs+aZE", + _ZNSt9_FacetptrISt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEE6_PsaveE) +STUB("eERxWAQ30PE", mono_aot_Sce_Vsh_Np_Udsunbox_trampoline_addresses) +STUB("eES4xlyf8R4", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE3endEv) STUB("eESTogkCMPE", sceKernelTraceMemoryTypeProtect) +STUB( + "eEcQ+dzmzZA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEC1Ev) STUB("eEeKqFeNI3o", sceAudioPropagationSourceGetAudioPath) +STUB( + "eEqfYh-E0cw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE8copyFromERKS9_) +STUB("eEr7LIMuChY", _ZN15AbstractStorage14TwitterServiceC2Ev) +STUB("eF+3zZrCVTo", g_ptr_array_free) +STUB("eF0qz6DwDVg", mono_aot_I18N_Westjit_code_end) +STUB("eF26YAKQWKA", _ZNSt10moneypunctIcLb0EE2idE) +STUB( + "eF2V2JW0pEQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEC1Ev) STUB("eF8yRCC6W64", sceNgs2GeomApply) STUB("eFANmS4bwPE", sceDeci4hDrfpChkGetConf) +STUB( + "eFEGeSrXMjE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEppEv) +STUB( + "eFIpxKk3pzM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEEC2Ev) +STUB( + "eFKTc4NG64Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEE11release_refEv) +STUB("eFLAn+7PDGM", mono_aot_System_Xmljit_got) +STUB( + "eFOTTfSFHhM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEE5resetEPS8_) +STUB("eFOrN+nZ1kg", _ZN3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponseD1Ev) +STUB("eFOwwrcE3ks", _ZNK7WebCore22EmptyFrameLoaderClient6pageIDEv) +STUB( + "eFQHtGrUkMw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEEaSERKSA_) +STUB( + "eFRuUGMh3qE", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS2_6VectorINS5_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS5_INS8_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("eFSItJGsqkE", _ZN12video_parser5vpcom11Utf8ToUtf16EPKcPSbIwSt11char_traitsIwESaIwEE) +STUB("eFThXSRZtyo", _ZN3WTF6String8fromUTF8EPKh) +STUB("eFUHSufvmnw", mono_value_box) +STUB( + "eFWvelij4Jc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("eFXWrZU1Fa8", _ZNK3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse11getRelationEv) +STUB("eFYG4FoFDq0", _ZTV10MsvUpdater) +STUB( + "eFavrPYuPhg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEdeEv) +STUB("eFb8g7ecEaA", MvpHttpPost) +STUB("eFcVE9DzSA0", rgctx_fetch_trampoline_mrgctx_78) +STUB("eFdKrq4iEBA", _ZN3JSC23throwStackOverflowErrorEPNS_9ExecStateERNS_10ThrowScopeE) +STUB("eFge2lVHxN4", _ZN7WebCore17FrameLoaderClient30completePageTransitionIfNeededEv) STUB("eFhsGSf+Hbw", sceOpusDecDecodeWithPriorityAndTimeout) +STUB("eFnT5B4zPLY", WKBatteryManagerProviderDidChangeBatteryStatus) +STUB("eFq6TwjRd9M", g_slist_foreach) +STUB("eFrm70bYHn0", _ZNK7WebCore22ResourceLoadStatistics6encodeERNS_12KeyedEncoderE) +STUB("eFvnDNc-2Fc", JSStartProfiling) +STUB("eG0qIomiwK0", _ZN3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate12setAccountIdERKm) +STUB( + "eG4g-5wqX04", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEED2Ev) +STUB("eG5EI3x6twg", hb_font_set_scale) +STUB("eG8KMjqrESQ", _ZN7WebCore11HTMLElement18setContentEditableERKN3WTF6StringE) +STUB("eG9E9M6XvTM", _ZN3sce4Json6StringC2Ev) +STUB("eGD4a3VZbyA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEE7add_refEv) +STUB( + "eGDzQ8Vo9P0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE5clearEv) +STUB( + "eGEQ9Hmtbr8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEED1Ev) +STUB("eGF9Mp0Cqds", _ZTVN7WebCore11PageOverlayE) +STUB( + "eGHISqhaA24", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEC1Ev) +STUB("eGJ2gaW6Mvc", Java_java_lang_Shutdown_halt) STUB("eGKUkd0H3wY", sceDeci4hDrfpCreate_fuse) +STUB("eGOwLjuQyms", _ZN3sce7Toolkit2NP2V27Ranking12FriendsRanksC1ERKS4_) +STUB("eGRZTvsrK1Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEED1Ev) +STUB( + "eGRtjgbhbDg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEE7add_refEv) STUB("eGVPAJ+M5A8", sceBluetoothHidGetDeviceName) +STUB( + "eGWXr0QFMhQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEED1Ev) +STUB( + "eGXgb9kTpWc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE3endEv) +STUB("eGbbvD8o7go", hb_buffer_set_script) +STUB( + "eGecQq04UtY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("eGfS467fWg8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEixEm) +STUB("eGhtPtVLqPA", _ZN3sce2Np9CppWebApi11UserProfile2V113BasicPresence17unsetOnlineStatusEv) +STUB("eGkOpTojJl4", isprint) STUB("eGkcUia48ts", sceCamera2Start) +STUB( + "eGsVxVTiUvk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEE3getEv) +STUB("eGtZan3bzYA", OCSP_response_status) STUB("eGunerNP9n0", sceNpTusGetMultiUserVariableAAsync) +STUB( + "eGzpqU00IpE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEEC1Ev) +STUB( + "eH-0izzhkVY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEC1Ev) +STUB( + "eH3oEhPQkMM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB("eH5PsCOLeAE", _ZN4Manx8X509cinfC2EPv) +STUB( + "eH87l-cdtBQ", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi47ParameterWithBinaryRequestBodyToRecordLargeDataC1Ev) STUB("eH8bMmzO02w", sceCesIso2022StrToUcs2Str) +STUB("eHTtf8P+lpo", _ZN12Mp4Retriever7ProcessEPKc) +STUB("eHX3u-C8wEk", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_playPlayList) +STUB( + "eHXWPhdPJbs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEC2EPNS2_10LibContextE) STUB("eHZ5DsEGZPg", scePsmUtilGetSystemAssetManagerSize) STUB("eHa3vhGu2rQ", sceCameraSetLensCorrectionInternal) +STUB( + "eHckgiQ4UwY", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayer10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_49PostGameSessionsSessionIdMemberPlayersRequestBodyEEE) +STUB("eHe1OKr7mIY", mono_method_body_get_object) +STUB("eHjmc+fw1jc", _ZNK7WebCore17ParsedContentType9serializeEv) +STUB("eHl4Ys8b2tE", _ZNK3sce2Np9CppWebApi7Matches2V111AddedPlayer12getAccountIdEv) +STUB( + "eHmoYV2DbS8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("eHptLuvGPS8", monoeg_realloc) +STUB("eHq6nJv2LkY", _ZN7WebCore8SVGNames6frAttrE) STUB("eI1SOK89t7I", sceDeci4hDrfpReaddir) +STUB("eI2iByoOtYU", WKBundleFrameGetJavaScriptContext) +STUB("eIFXPHNYV2M", zrule_getRawOffset_67) +STUB("eIG1Kv8pUFw", _ZN3sce2Np9CppWebApi6Common6VectorImE6resizeEj) +STUB( + "eII5vVV+5zI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEE11get_deleterEv) +STUB("eIJPGQuDPbg", _ZN7WebCore9HTMLNames10articleTagE) +STUB("eIKGVbpwFZM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEEC2EPS6_) STUB("eINK6ismSX0", sceMbusAcquireControl) +STUB("eIREyQGh+gs", mono_gc_toggleref_add) +STUB("eIRIcsSyhro", _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile12setAccountIdERKm) +STUB( + "eIRPLeQ3f+s", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEC2Ev) +STUB("eIUsJO-UCH8", _ZN7bmalloc3api8scavengeEv) +STUB("eIWOmJNeKUs", _ZN9Inspector32ScriptProfilerFrontendDispatchernaEmPv) +STUB( + "eIc1Winv+RA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEeqERKSA_) +STUB("eIfqo4s541w", WTFIsDebuggerAttached) +STUB("eIhEhorvGeI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEEC1ERS6_) +STUB( + "eIioGs+ndeo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEC1EPNS2_10LibContextE) +STUB( + "eIkDmPgfTMg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEEC1Ev) +STUB( + "eIlqRowEivw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("eIn0RJ2Qn0A", _ZN7WebCore10XLinkNames8typeAttrE) +STUB("eIoITAoWDjk", __sanitizer_unaligned_load32) +STUB("eIphLYOgAWM", png_process_data) +STUB( + "eIuuGWo3exE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEcvbEv) +STUB("eIvOQqvtBuQ", _ZN7WebCore20LegacySchemeRegistry25registerURLSchemeAsSecureERKN3WTF6StringE) +STUB( + "eJ+s49iFqKo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "eJ0X84tTQ1s", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEdeEv) STUB("eJ5tz2XwLk0", ScePsmMonoPrivilegesFinishInit) +STUB( + "eJ9k8D8tkn4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEC1EPS8_) STUB("eJDUHQBBwZM", sceNpManagerIntBindGetWebAppToken) +STUB( + "eJKZP39gn8g", + _ZN3sce2Np9CppWebApi14SessionManager2V156PostGameSessionsSessionIdMemberPlayersRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_49PostGameSessionsSessionIdMemberPlayersRequestBodyEEE) +STUB( + "eJP81RvIvPk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEC1ERKS7_) +STUB("eJRKJUHQw8Y", Java_com_sony_gemstack_core_CoreAppAttributes_n_1getPriority) +STUB( + "eJTWHfrwCXM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("eJUrqdzmRdk", _ZN3sce2Np9CppWebApi15ProfanityFilter2V219WebApiErrorResponseD2Ev) +STUB( + "eJicdDiETIE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEC2EPNS2_10LibContextE) +STUB("eJjhIOPW3jk", delegate_virtual_invoke_imt_20) +STUB( + "eJoZn+UlueY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE6resizeEj) +STUB( + "eJpF5+BqD8U", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEptEv) +STUB( + "eJylibpXIYg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEneERKS9_) +STUB("eKCokbgB3CY", _ZN15AbstractStorage15FacebookServiceD2Ev) +STUB( + "eKE8RDVIUyU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEE5resetEPS6_) +STUB("eKLcwhZXz7w", JVM_SocketClose) +STUB( + "eKQ5-Dfmgdc", + _ZN7WebCore13createWrapperERNS_17JSDOMGlobalObjectEON3WTF3RefINS_8NodeListENS2_13DumbPtrTraitsIS4_EEEE) STUB("eKQjzNBZIyU", sceBgftServiceIntExtUsbCheckActiveDownloadTasks) +STUB("eKQk89XMt3g", _ZNK3sce2Np9CppWebApi13InGameCatalog2V520ContainerRatingCount10scoreIsSetEv) +STUB( + "eKTMIFMDgo8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEppEi) +STUB("eKVQMRwCKr8", _ZN7WebCore8makeRGBAEiiii) +STUB("eKVpaYTMQtM", mono_aot_System_Xmlunbox_trampolines_end) +STUB( + "eKY+F739yDw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEE7add_refEv) +STUB("eKctv3gCsW0", JVM_Clone) +STUB( + "eKhBXGt2ku0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "eKn7zwucu60", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEEC1ERKSA_) +STUB("eKrV0OvtcFg", _ZN12video_parser5vpcom25_DirectoryDeleteRecursiveEPcj) +STUB( + "eKrg3e36Bc0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE21intrusive_ptr_add_refEPS7_) +STUB("eKuGGkmzC4o", _ZN7WebCore19BlurFilterOperationC2ENS_6LengthE) +STUB("eKuRIaJZ1EY", WKPreferencesSetAudioPlaybackRequiresUserGesture) +STUB( + "eKx0i22+tAI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE21intrusive_ptr_add_refEPS9_) STUB("eKxoV8TKYy4", sceTsGetLiveStatus) STUB("eKy0c9bg0VU", sceAvControlGetHdcpStatus) +STUB("eL0q9MZQ-2E", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEEC2Ev) +STUB( + "eL2bF9E1SNg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEC1EPS8_) STUB("eL54zY-B+-Y", sceSocialScreenDialogOpen) +STUB("eL5Hn1IaGrw", _ZN3JSC7Symbols15thisPrivateNameE) +STUB("eL7PAmyp2fs", WKURLCopyHostName) STUB("eL7sMZaIdac", sceRegMgrResetVal) +STUB("eL92XS8ko9M", obuf) +STUB("eLB2+1+mVvg", _ZNSt8messagesIcE5_InitERKSt8_Locinfo) +STUB( + "eLHK-mFID9k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEC2Ev) +STUB("eLHkTK2CtH8", WKPageDumpAdClickAttribution) +STUB("eLIgh5SjGGo", _ZN7WebCore9HTMLNames5h1TagE) STUB("eLQbNsKeTkU", sceGnmGetResourceRegistrationBuffers) +STUB("eLT-CpJrMnI", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats14unsetPlayStyleEv) STUB("eLU8pDi9KN0", sceCompositorSetResolutionCommand) STUB("eLWnPuja+Y8", sceSystemServiceSetGpuLoadEmulationMode) +STUB("eLWsAgk6rg4", _ZN3sce2np16StreamReadBuffer7IsEmptyEv) +STUB("eLasd29xQfY", mono_array_class_get) +STUB("eLdDw6l0-bU", snprintf) +STUB("eLdo-JoTlrc", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TSS7TssDataEED1Ev) +STUB( + "eLlSL37PiJU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "eLozAV+BgBk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEC2EPS8_) +STUB("eLqCz3qQ-wA", _ZN7WebCore4Node20cloneNodeForBindingsEb) +STUB("eLzKp9R89G4", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanityC2Ev) +STUB("eM-+5+lpfqA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEEC1Ev) +STUB( + "eM-1W1C9c78", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEaSERKS7_) +STUB("eM4K8RO2--M", _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities5Error14getReferenceIdEv) +STUB("eM7A1wI+mpU", + _ZThn16_N9Inspector22InspectorDebuggerAgent23setAsyncStackTraceDepthERN3WTF6StringEi) +STUB("eM7sd4AClXs", ucptrie_swap_67) +STUB( + "eMAfsivgvhk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("eMAri9grVD8", _Z13insertOnArrayPPjmj) STUB("eMGF77hKF6U", sceUserServiceGetFriendCustomListLastFocus) STUB("eMI1Hq+NEwY", sceHmdInternalCrashReportCancel) +STUB("eMJMNjD3zSU", _ZN7WebCore14SocketProvider6createEv) +STUB("eMKHL+Cj50k", FT_Get_Glyph) +STUB( + "eML3727nGwc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEC1EPS8_) +STUB("eMM8e4yA3AU", unorm2_normalize) +STUB("eMP4AN0xwho", WKContextEnableAccessibility) +STUB( + "eMQ0TocLxuk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "eMSSskg6vqM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEEptEv) +STUB("eMWhZ2iljvg", WKPreferencesSetEncodingDetectorEnabled) +STUB("eMYdk0sOUQI", fuse_kern_mount) +STUB( + "eMZBfYwe7I4", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("eMeNeT5j6D8", stat_set_FuseDeci) STUB("eMerT8QXYeM", sceVnaRegisterCallback) +STUB("eMg6XrCpbEc", _ZN7WebCore11JSImageData15subspaceForImplERN3JSC2VME) STUB("eMim-baluxU", sceRegMgrSyncHdd) +STUB( + "eMkQ4MIAccE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEC1Ev) +STUB("eMma2ftKEZ4", _ZNK7WebCore8Document6loaderEv) +STUB( + "eMnBe5mZFLw", + _ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE7_GetcatEPPKNSt6locale5facetEPKS5_) +STUB( + "eMnEB9jAD0Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEE7get_refEv) +STUB("eMq0iQNxRlU", _ZN3sce7Toolkit2NP2V28Presence8Presence25MAX_NUM_PLATFORM_PRESENCEE) +STUB("eMu4Uer8TZk", mono_aot_Sce_Vsh_EventServiceWrapperunbox_trampoline_addresses) +STUB("eMu9G7-Gub4", _ZN9Inspector15ScriptCallFrameC1ERKS0_) +STUB("eMux4QNYdv0", monoeg_g_slist_nth) +STUB("eMwJuJMfSmM", _ZN3sce2Np9CppWebApi6Common6VectorIjE3endEv) +STUB("eMxfI0Jx2E0", rgctx_fetch_trampoline_rgctx_107) STUB("eMzIhkNXXnE", sceVencCoreSetBitRate) +STUB("eN81KmJlGOE", + _ZNK3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator14joinStateIsSetEv) +STUB("eNDYbSvB334", _ZN4IPMI6Client6Config27AsyncMethodInvocationConfigC2Ev) +STUB("eNFR5wiR41Y", + _ZN7WebCore32isSimpleCrossOriginAccessRequestERKN3WTF6StringERKNS_13HTTPHeaderMapE) +STUB( + "eNKxxlVJNCQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE5emptyEv) +STUB("eNLB1x1rwMk", _ZN9Inspector30CanvasBackendDispatcherHandlerC2Ev) +STUB("eNQ0FStvU1c", NpWebAbortRequest) +STUB( + "eNRAEKt74YA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEE5resetEPS6_) +STUB("eNVPhzEj5Go", _ZNK3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors7getPathEv) +STUB("eNW5jsFxS6k", _ZTSSt12out_of_range) +STUB("eNYQWKGjUpc", __asan_exp_store4_noabort) STUB("eNb53LQJmIM", sceUserServiceGetForegroundUser) +STUB( + "eNcBnaMysEs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEC1EPKS8_) +STUB("eNjbJhrJ+Gg", _ZN7WebCore11DisplayList11SetLineJoinD2Ev) +STUB("eNlDM--QehI", WKBundleBackForwardListItemCopyTarget) +STUB("eNp9ZnG0MEI", + _ZN7WebCore20ResourceResponseBase18setHTTPHeaderFieldENS_14HTTPHeaderNameERKN3WTF6StringE) +STUB("eNqAMgozs58", udatpg_getSkeleton_67) +STUB( + "eNrhBCPUvLo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE5emptyEv) +STUB("eNxbfBk88VI", _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody10getPlayersEv) +STUB("eO02culIF5o", _ZN7WebCore8SVGNames20font_size_adjustAttrE) +STUB( + "eO190P-QKl8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEC1Ev) +STUB("eO5dme84mzs", __sanitizer_malloc_hook) +STUB("eOE7+ld8CTc", c01) +STUB( + "eOGB4QroFBQ", + _ZN3sce2Np9CppWebApi7Matches2V124ResponseMatchTeamFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_17ResponseMatchTeamEEE) +STUB( + "eOJJyTT4ujY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEptEv) +STUB("eOLZypgZUNw", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError16referenceIdIsSetEv) STUB("eOOeG9SpEuc", sceHmdInternalSeparateModeGetVideoStatus) +STUB("eOS91iojS2s", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEED1Ev) +STUB("eOUFs28RJtg", Java_java_lang_System_registerNatives) +STUB( + "eOUf3wmVZRI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEC1Ev) +STUB("eOVCR-oZ8MM", _ZN7WebCore11HistoryItem15setIsTargetItemEb) +STUB("eOVYP0yQoBE", llvm_throw_corlib_exception_trampoline) +STUB( + "eOXBvVAx954", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEEC1ERKSA_) +STUB( + "eOXF64KEk6c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEC2EPNS2_10LibContextE) +STUB("eOe0dOSgbjE", _ZN3JSC20AbstractModuleRecord8evaluateEPNS_9ExecStateE) +STUB( + "eOkbvQ+Or+Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEEC1ERKSA_) +STUB( + "eOo-+Zg6i1g", + _ZN9Inspector21PageBackendDispatcher9setCookieElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) STUB("eOxGbG3sPb0", sceNpEntitlementAccessRequestConsumeUnifiedEntitlement) +STUB("eP-XvTjowrw", _ZN9Inspector18InjectedScriptBase8makeCallERN10Deprecated18ScriptFunctionCallE) +STUB("eP76KjYIEJo", _ZN9Inspector22InspectorDebuggerAgentnaEmPv) +STUB("eP8K5VOwIh0", _ZN3sce7Toolkit2NP9Utilities6FutureI7SceNpIdE3getEv) +STUB( + "eP94F5QTsD0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "eP9fgCAPRwc", + _ZN7WebCore11JSDOMWindow18getOwnPropertySlotEPN3JSC8JSObjectEPNS1_14JSGlobalObjectENS1_12PropertyNameERNS1_12PropertySlotE) +STUB("ePJnhLB2eu4", mono_metadata_signature_equal) +STUB("ePPa+o4H4ck", cpp_demangle_read_subst) STUB("ePQRjogCEOk", sceBgftServiceIntUploadStopTaskAll) STUB("ePRSOZsroIQ", sceKernelGetIpcPath) +STUB( + "ePSWhlZcS+8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEixEm) +STUB( + "ePTW4IrxduA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) STUB("ePTrUSMxnmg", sceVencGetConfig) +STUB( + "ePaLhWuJZTY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEED1Ev) +STUB("ePb65E4Nj08", _ZN3sce7Toolkit2NP2V26Friend7FriendsD2Ev) +STUB("ePb7SaW90CA", WKPreferencesSetLoadsSiteIconsIgnoringImageLoadingPreference) +STUB( + "ePere6aCgdo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEneERKS9_) +STUB("ePfrY3-cnX4", mini_create_jit_domain_info) +STUB("ePgPaHobEOc", _ZN3JSC10LinkBuffer31finalizeCodeWithDisassemblyImplEbPKcz) +STUB( + "ePlNXD5ZnjM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE7popBackEv) +STUB("ePo0zF7lI5o", + _ZN7WebCore15JSFetchResponse15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("ePuh5Ay33RY", il2cpp_domain_assembly_open) STUB("ePw-kqZmelo", sceMsgDialogTerminate) +STUB("ePwlNh81Abk", _ZN3WTF21MemoryPressureHandler28beginSimulatedMemoryPressureEv) +STUB("ePxEheUEX7o", _ZN9Inspector18InspectorHeapAgent2gcERN3WTF6StringE) +STUB( + "ePxgtVeEKhY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE7reserveEi) +STUB("eQ-q3E2Jtxs", YGNodeStyleGetOverflow) +STUB("eQ130OUsqLM", _ZN12video_parser13cVideoPathMgv11sExtentListE) +STUB( + "eQ5sn6-7JrY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE13goToProcessedEi) +STUB( + "eQ62MC5zX0w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE21intrusive_ptr_sub_refEPS9_) +STUB("eQCNHjia30c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEED1Ev) +STUB( + "eQD-r4EOxNg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEdeEv) STUB("eQH7nWPcAgc", sceNpGetState) +STUB("eQHs53BtanY", mono_thread_hazardous_try_free) +STUB( + "eQJigtmWFXg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEEC1ERKSA_) +STUB( + "eQJqc5H-asA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEED1Ev) +STUB("eQKVlU3XN9A", u_isdigit_67) STUB("eQPL0pfnPdw", scePerfPmcMcSeqGetCounter) +STUB("eQU2erJpK2M", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE21intrusive_ptr_sub_refEPS7_) +STUB( + "eQUESt2Hkno", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("eQVtby4qLMg", u_strFoldCase_59) STUB("eQac6ftmBQQ", sceFontGraphicsFillPlotSetLayout) +STUB("eQhBFnTOp40", llroundf) +STUB( + "eQlniMtu9UQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEC2EPNS2_10LibContextE) +STUB( + "eQluipZ7nec", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEC2Ev) STUB("eQrBbMmZ1Ss", sceUserServiceGetGlsTtsPitch) +STUB( + "eQujBdqWaPM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEdeEv) +STUB("eQxdyxfGnzk", _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeIPcPvEEC1ERKS7_) +STUB("eQyyR4yPFKQ", WKBundleNodeHandleGetElementBounds) +STUB("eQzd4S7d95Q", ucnvsel_close_67) +STUB("eR0BDTjb54c", _ZN7WebCore9HTMLNames17aria_rowcountAttrE) STUB("eR2bZFAAU0Q", sceSysmoduleUnloadModule) +STUB("eR9SnNo7avY", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersaSERS5_) STUB("eRJv4xU7pGU", sceContentExportGetProgress) +STUB("eRNAyCK6Guc", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEE3getEv) +STUB( + "eRNcs8KNK1o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEmmEi) +STUB( + "eROqonEyq6Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEE11get_deleterEv) +STUB( + "eRQT4ehKaZI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEC2EPKS8_) +STUB("eRR4OZxAkQM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17GetGameDataResultEE3getEv) +STUB( + "eRTjNxAsr8k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("eRcRVO3hNTM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEC1ERKS7_) +STUB("eRd+WZ6MHqY", _ZN10Deprecated11ScriptValueD2Ev) +STUB("eRlqlofFKYg", _ZThn16_N3sce2np9HttpTrans5WriteEPNS0_6HandleEPKvmPm) STUB("eRn6vlfK6ac", sceRazorCpuWorkloadRunBegin) +STUB( + "eRom3JWxb68", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEE7get_refEv) +STUB( + "eRs4ih+ACfI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEC2Ev) +STUB("eRy1rt7wGSw", uplrules_openForType_67) +STUB( + "eRzc8kp59WA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEED2Ev) +STUB("eS+4GhL28gs", FTA_Add_Module_sfnt) +STUB("eS+MVq+Lltw", remainderf) +STUB("eS-78uVynTY", Java_java_awt_GnmRobotHelper_doKeyActionOnWidget) +STUB("eS3+LMYAClE", g_strsplit) +STUB( + "eS63deXs-5w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("eS6QfGn5eCY", _ZN9Inspector27LayerTreeFrontendDispatcher18layerTreeDidChangeEv) +STUB("eSFTUAm1wf8", FT_Get_TrueType_Engine_Type) +STUB("eSL9ExpUfks", _ZN3sce7Toolkit2NP2V210Tournament14RegisteredTeamC1Ev) +STUB("eSLUeyNDLEs", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEE3getEv) +STUB("eSQG2sdo6oY", _ZN7WebCore7RunLoop4stopEv) +STUB( + "eSTldGsyi2A", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEplEm) +STUB("eSYkT4sGWmY", mono_aot_Sce_Vsh_Db_Sharedunbox_trampolines_end) STUB("eScteZ9-xUc", sceCesEucKrToUcs2) +STUB("eSdAHApUsso", _ZN3WTF17StringPrintStreamD0Ev) +STUB( + "eSeStToLefk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("eSfNCiZOs5Q", mono_aot_Sce_Vsh_GameCustomDataunbox_trampolines) +STUB("eSiHCxqbKas", _ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequest17setExpirationTimeERKi) +STUB("eSjOInieCgE", __asan_exp_storeN_noabort) +STUB( + "eSk0oIINf84", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEC1EPKS8_) +STUB( + "eSl0F3IuFyg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "eSlSqJUUNA0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("eSmlvBGD3QM", _ZN7WebCore9JSDOMRectC2ERKS0_) +STUB( + "eStL3MFyAY8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE5beginEv) +STUB("eSu9lMTfbz4", _ZN12video_parser13cVideoPathMgvD2Ev) STUB("eSuD0DPJpvE", sceAudioOut2LoContextDestroy) +STUB( + "eSuXNaGaAwo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("eSvhG4rsH6M", _ZN7WebCore11MediaPlayerdlEPv) +STUB("eSwGXlKHIas", cairo_get_dash_count) +STUB( + "eSxTk9SMPGQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEplEm) +STUB( + "eSyTamgpMfY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEE11get_deleterEv) +STUB( + "eSzFPe6Ny-w", + _ZNK3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfiles13getaccountIdsEv) +STUB( + "eT+knIE0Egc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEmmEv) +STUB("eT2UsmTewbU", _ZSt11_Xbad_allocv) +STUB( + "eT4TQB7OsLA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26getMultiDataStatusesByUserEiRKNS4_37ParameterToGetMultiDataStatusesByUserERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_32GetMultiDataStatusesResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("eT7n5lcEYCc", SSL_getCookie) +STUB("eT7zquMYI-w", _ZNK9Inspector21InspectorRuntimeAgent7enabledEv) +STUB("eT8uRhbly2I", WKContextConfigurationSetShouldCaptureAudioInUIProcess) +STUB("eT9p2UY7c04", JVM_SupportsCX8) +STUB("eT9vBUywDRw", WKPreferencesSetSyntheticEditingCommandsEnabled) +STUB("eTBpRtv0fUE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEED1Ev) +STUB("eTByIaLEFhw", mono_aot_Sce_Vsh_MimeTypejit_got) +STUB( + "eTDvO7isU2g", + _ZN3sce2Np9CppWebApi14SessionManager2V122SearchConditionFactory7destroyEPNS3_15SearchConditionE) +STUB("eTEiwRA86F8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEED2Ev) +STUB( + "eTGd5zsE12s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "eTHpY8FLx88", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE6resizeEj) +STUB("eTNXUYUX5jE", mono_set_break_policy) +STUB( + "eTODFipwyAY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEEcvbEv) +STUB("eTOO4IHDkyE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEaSERS7_) +STUB("eTP9Mz4KkY4", __divdc3) +STUB("eTRup0VPnn8", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE4sizeEv) +STUB("eTULeMuXIZQ", mono_aot_Sce_Vsh_Orbis_AbstractStoragejit_code_start) +STUB( + "eTWIZXExCd0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEC2Ev) STUB("eTYHVlWb7Gs", sceSlimglServerWaitRenderThread) +STUB("eTbv8MolbHc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEC1Ev) +STUB("eTk+2NucJ8k", _ZN7WebCore11DisplayList4ItemD2Ev) +STUB( + "eTklrV3f+JM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEC2Ev) STUB("eTpWp430DA4", sceMbusAcquireControlWithState2) +STUB( + "eTpwGX4fEEg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "eTr8H5cLUvw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEC2ERS7_) +STUB("eTtdKzNrbjc", _ZN15AbstractStorage12LocalService5StartEv) +STUB( + "eTtdb2Ojc-c", + _ZN3sce2Np9CppWebApi12Leaderboards2V134RecordLargeDataResponseBodyFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_27RecordLargeDataResponseBodyEEE) +STUB( + "eTu9USgFFR4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("eTuON5kcT8U", coil_h_errno) +STUB("eTxvbbELdLk", _ZN3sce7Toolkit2NP2V23TUS12TusVariablesD2Ev) +STUB("eTy3L1azX4E", _ZN3sce2np9WorkQueue9IsRunningEv) STUB("eTywOSWsEiI", sceCameraOpenByModuleId) STUB("eU-ln60CLMs", sceUpsrvUpdateGetImageWritingProgress) +STUB( + "eU0DzhcCkrM", + _ZN7WebCore23CoordinatedBackingStore18drawRepaintCounterERNS_13TextureMapperEiRKNS_5ColorERKNS_9FloatRectERKNS_20TransformationMatrixE) +STUB( + "eU2HFD33vTg", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfile14setlanguageSetEPKc) +STUB("eU2IN3zRtOA", mono_aot_Sce_CloudClient_App_Platformunbox_trampoline_addresses) +STUB( + "eU3EhLG574k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "eU5blApGT7Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEED2Ev) +STUB( + "eU77yWR5yVQ", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB( + "eU8d9isP7Jc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEixEm) +STUB( + "eUBo4kS1Bvk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB( + "eUDMksk4MSs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEED2Ev) +STUB("eUFtsxmi2p0", _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSessionD2Ev) +STUB( + "eUHpOFVQd5M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEmmEv) +STUB( + "eUMvnM--N6c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEED1Ev) +STUB("eUaXBqzdC0Y", _ZN7WebCorelsERN3WTF10TextStreamERKNS_11EventRegionE) +STUB("eUkH37MVjEI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed12SharedVideosEED1Ev) +STUB( + "eUp0ePhurDY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEE11get_deleterEv) +STUB( + "eUtVlbdcoXg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEED1Ev) +STUB("eUw-w9kwIhg", _ZN3JSC23objectProtoFuncToStringEPNS_14JSGlobalObjectEPNS_9CallFrameE) STUB("eV1rtLr+eys", sceNpTrophySystemGetTrophyTitleIds) +STUB( + "eV37monbng4", + _ZN3sce2Np9CppWebApi14SessionManager2V136JoinedGameSessionWithPlatformFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_29JoinedGameSessionWithPlatformEEE) +STUB("eV5igYrwsy0", _ZN9Inspector35DOMDebuggerBackendDispatcherHandlerD1Ev) +STUB( + "eV6zMa4tzTE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEixEm) +STUB("eV7xLK3ZsTQ", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V113MmrPropertiesC1EPNS1_6Common10LibContextE) STUB("eV9wAD2riIA", sceKernelStat) +STUB("eVFYZnYNDo0", _ZNSt7codecvtIcc9_MbstatetE2idE) +STUB("eVLe9440T7g", T_CString_int64ToString_67) +STUB( + "eVMV4cDOBx0", + _ZN7WebCore12JSTimeRangesC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_10TimeRangesENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "eVU3cXIJz0w", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi20createPlayerSessionsEiRKNS4_31ParameterToCreatePlayerSessionsERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_30PostPlayerSessionsResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("eVUG1wzRuAA", _ZN9Inspector24TargetFrontendDispatcher15targetDestroyedERKN3WTF6StringE) +STUB("eVXPgVCt32g", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26RecordScoreResponseHeaders7destroyEPS5_) +STUB("eVXr2Uj+TA0", _ZN15AbstractStorage14TwitterContent12readExternalESt10shared_ptrINS_7ContentEE) +STUB("eVbkm+WTfh0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEED1Ev) +STUB("eVcWmVlimPA", BIO_puts) +STUB( + "eVefrbdqw0I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "eVjEKL4YwzI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB( + "eVkYQ83qoxg", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser7getsortEv) STUB("eVkl4XZTS6M", scePs2EmuMenuDialogGetResult) +STUB( + "eVn-NW1p7N8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEdeEv) +STUB("eVn6vS9O8EI", _ZN4IPMI4impl10ClientImpl13waitEventFlagEjmjPmPj) +STUB("eVnCOMC5iO4", WKWebsiteDataStoreStatisticsUpdateCookieBlocking) +STUB( + "eVoUCwnW9P0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEneERKS9_) STUB("eVpETZzMRn0", sceSystemServiceUsbStorageGetdentsClose) +STUB("eVqH4H3UwCg", _ZN7WebCore7toSRGBAERKNS_9DisplayP3IfEE) +STUB("eVxwyigpkZI", + _ZN3JSC10JSFunctionC2ERNS_2VMEPNS_16NativeExecutableEPNS_14JSGlobalObjectEPNS_9StructureE) +STUB("eW2LN4E7Zh8", _ZNK7WebCore24CoordinatedGraphicsLayer16compositionLayerEv) +STUB( + "eW3NTRl3XSM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEptEv) +STUB("eW7NO7wPwt4", mono_profiler_install_assembly) +STUB("eW8DnRSDucM", _ZN3WTF24AutomaticThreadConditionD1Ev) +STUB("eW9-Wfe9Aqo", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredTeamsEEC1Ev) +STUB("eWErqZiQKv8", dp_l) +STUB( + "eWFB7Eg20qY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB("eWLH5SbvL4M", _ZN7WebCore5Range8collapseEb) +STUB("eWMGI7B7Lyc", _ZNSt3pmr20null_memory_resourceEv) +STUB("eWS30Mvg5xM", + _ZNK3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer6toJsonERNS_4Json5ValueEb) +STUB("eWSt5lscApo", yn) +STUB("eWWZEruU6eQ", _ZN9Inspector25BrowserFrontendDispatcherdlEPv) +STUB("eWX6iliPDKw", YGNodeStyleSetMaxWidthPercent) +STUB("eWYj-OrOBC4", _ZN7WebCore24CoordinatedGraphicsLayer14pauseAnimationERKN3WTF6StringEd) STUB("eWaWyFegzgQ", sceAgcAsyncRewindPatchSetRewindState) +STUB("eWciKOHADPY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEC2Ev) +STUB( + "eWfFl7QWkvs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEE5resetEPS6_) +STUB( + "eWoc8jpFHMo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEED2Ev) +STUB( + "eX-nxp0fgV4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEEcvbEv) +STUB("eX0m5bz4rZc", _ZN7WebCore21identifierToUSVStringERN3JSC14JSGlobalObjectERKNS0_10IdentifierE) +STUB("eXEfdCMtZdA", + _ZN3JSC14CachedBytecode15addGlobalUpdateEN3WTF3RefIS0_NS1_13DumbPtrTraitsIS0_EEEE) +STUB( + "eXKq-wyLMJ8", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody8fromJsonERKNS_4Json5ValueE) +STUB("eXL2pNf3JSA", NpStateManagerStart) +STUB("eXN5yYD-l7Q", _ZNSt15basic_streambufIcSt11char_traitsIcEED2Ev) +STUB( + "eXNprLmcXyo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEE11get_deleterEv) +STUB("eXU5nNCm60U", mono_btls_x509_name_get_entry_oid_data) +STUB("eXYzyWOANqE", WKPreferencesGetHixie76WebSocketProtocolEnabled) +STUB( + "eXbBN73nUgo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEdeEv) STUB("eXbUSpEaTsA", scePthreadAttrSetinheritsched) +STUB( + "eXcpqM7R8Xs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEED1Ev) +STUB("eXejVzOD4FI", _ZN3sce7Toolkit2NP2V27NpUtils7Request24SetTitleIdForDevelopmentC2Ev) +STUB( + "eXou+jv8Dmk", + _ZN3JSC19JSSymbolTableObject27getOwnNonIndexPropertyNamesEPNS_8JSObjectEPNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB( + "eXrj6oTXvcA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEC1EPS6_PNS2_10LibContextE) STUB("eXxrXkrLXa4", sceRegMgrSetBin) +STUB( + "eY4IATMHYRs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEeqERKS9_) STUB("eYAh2vlCY-U", sceKernelAprResolveFilepathsToIdsForEach) +STUB( + "eYBP06qnEDE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEE7get_refEv) +STUB("eYCzCuWMibg", _ZN7WebCore18CustomHeaderFieldsaSERKS0_) +STUB( + "eYDpU2-Tl1U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "eYJrQ9zXRcA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUser10setslotIdsEPKc) +STUB("eYKLQVuYiqs", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_15ActivityStoryIdEED2Ev) +STUB("eYL+aHEWbXQ", _ZN7WebCore8JSDOMURL4infoEv) +STUB( + "eYPEfPBBxpA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB( + "eYT314tpyis", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEE11release_refEv) +STUB( + "eYYb2FLaAjo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "eYZ6m0nQEcI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEptEv) +STUB("eYcl-oTV7Ng", WKViewSetFocus) +STUB("eYgHIWx0Hco", _ZN3sce2np5Mutex6UnlockEv) +STUB("eYib7znGCTY", _ZN7WebCore31BasicColorMatrixFilterOperationD2Ev) +STUB( + "eYk1hxY-5aM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEneERKS9_) +STUB("eYok3rEMQlk", mono_aot_Sce_Vsh_Orbis_CdlgServerNpCommerceunbox_trampolines_end) +STUB("eYrsJoLSmno", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE5emptyEv) +STUB( + "eYtsK9Ia+ps", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEE7get_refEv) +STUB("eYuGx+R+zEg", JVM_SetClassSigners) +STUB( + "eYuZQW5qCXo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEC1EPS8_) STUB("eYz4v5Uek9U", sceNpLookupAbortRequest) +STUB("eZ-v4iZt8lg", _ZN15AbstractStorage18DailymotionContent8SeekByteEliPl) +STUB( + "eZ2ROCZGKX8", + _ZN3JSC8JSObject27getOwnNonIndexPropertyNamesEPS0_PNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("eZ3wZrAzxCw", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEEcvbEv) STUB("eZ4+17OQz4Q", sceAgcAcbWriteData) +STUB( + "eZBdXCHv1Tk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "eZDyqjuLfhk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEaSERKS7_) +STUB( + "eZJwmQHoy6Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEEdeEv) +STUB("eZNd0zk6ds0", WKCertificateInfoCopyPrivateKey) +STUB("eZOp81X98M0", mono_custom_attrs_from_index) +STUB("eZQga6mLjWA", _ZN7WebCore10JSDocument9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "eZfFLyWCkvg", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERy) +STUB( + "eZhhX2D0bNg", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) STUB("eZlNO3YnlNE", sceBgftServiceIntDebugPlayGoResume) +STUB("eZpt6dzI9oo", cairo_pattern_destroy) STUB("eZqcAgGe1ng", sceAudioOut2GetSystemStateEx) +STUB("eZr+VgX7DgM", _ZTVN15AbstractStorage15FacebookStorageE) STUB("eZu2RP0Ma3w", sceVoiceQoSGetLocalEndpointAttribute) +STUB("ea-aQUt8eaE", _ZN3sce2Np9CppWebApi7Matches2V119ResponseTeamResultsD1Ev) +STUB("ea-rVHyM3es", _Atomic_load_8) +STUB("ea3VaqQ6MAQ", mono_mempool_contains_addr) +STUB("ea8LaHOKFDA", curl_multi_info_read) +STUB("eaC8arDNhF0", __asan_report_store2_noabort) +STUB( + "eaCE2hB0xcU", + _ZN7WebCore14FormController19referencedFilePathsERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16EEE) STUB("eaFXjfJv3xs", sceImeKeyboardOpen) +STUB("eaFzPrQHCOI", GCC_except_table520) +STUB( + "eaGBoVgAsvI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEneERKS9_) +STUB( + "eaHaEzvYknA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE10setContextEPNS2_10LibContextE) +STUB("eaSD4VTr548", _ZN9Inspector17BackendDispatcher12CallbackBaseD2Ev) +STUB("eaSfA39dQjs", _ZN3JSC22DeferredWatchpointFire21takeWatchpointsToFireEPNS_13WatchpointSetE) +STUB("eaUO-kQF49o", _ZN9Inspector34ApplicationCacheFrontendDispatchernaEmPv) +STUB("eaa94aUrq1I", _ZN7WebCore8SVGNames16markerHeightAttrE) +STUB("eaamV8uP+uo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEEplEm) +STUB( + "eac27nuKYNQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEEC1ERKSA_) +STUB("eaf+MTmpda0", _ZN3sce7Toolkit2NP18JoinSessionRequestC2Ev) +STUB("eaiyhIBmf34", sysc_e00) +STUB( + "eaqoqiFLhg4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEE7get_refEv) +STUB( + "eaqvq4l8kLI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE7popBackEv) +STUB("ear6D9vt1xs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEE7add_refEv) +STUB( + "easTIsfBJh0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEixEm) +STUB("eauQRx0OLok", _ZN3sce2np9JsonValue9GetStringEv) +STUB("eauWvmHc5mI", YGNodeStyleSetDisplay) +STUB("eavBwou4xKI", _ZN3JSC22FullGCActivityCallbackD2Ev) STUB("eb-gvTYQcoY", sceVideoOutLatencyControlWaitBeforeInput) +STUB("eb-kegzZCNI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12BlockedUsersEED2Ev) +STUB( + "eb4ojyMomV8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("eb9Ae0+MCmk", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEEC1ERKS7_) STUB("eb9S3zNlV5o", sceFontGetFontMetrics) +STUB("ebDUonz7muc", Java_java_util_zip_ZipFile_read) +STUB("ebFlwESqZcY", bemp2sys_tsfilter_release) +STUB( + "ebGeWmglI3w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("ebIt5wB486o", WKContextGetMediaSessionFocusManager) +STUB("ebKCkHqPRIk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEED2Ev) +STUB("ebKIxTjYwOU", rgctx_fetch_trampoline_rgctx_118_p) +STUB("ebLNKK0+NTY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session7SessionEE3getEv) +STUB("ebNKQitYI5w", rgctx_fetch_trampoline_mrgctx_30) +STUB( + "ebNh4Wy6+Dw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEE3getEv) +STUB("ebPeu+4eyj8", WKCookieManagerStopObservingCookieChanges) +STUB("ebUc7pZI1Cg", _ZN7WebCore27TranslateTransformOperationD1Ev) +STUB( + "ebX6cG2VuyI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEC2EPS6_PNS2_10LibContextE) +STUB("ebYz12wDUNI", _ZN9Inspector21InspectorRuntimeAgentnaEm) +STUB( + "eberoPzE3kw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEaSERKS9_) +STUB("ebhjMWkxs44", _ZNK3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBody11getLocationEv) STUB("ebixW91gpPw", sceAgcAcbSetFlip) +STUB("ebk64bDQfL0", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12unsetString6Ev) +STUB("ebkdM5S-nNc", + _ZN3sce7Toolkit2NP2V27NpUtils7Request24SetTitleIdForDevelopment28TITLE_SECRET_STRING_MAX_SIZEE) +STUB("ebmFXXx04K4", u_strrchr32) STUB("ebnG6EV5OcI", sceMbusSetSocialScreenAudioMode) +STUB("ebomQLbpptw", _ZN3sce2np7CalloutD2Ev) +STUB("ebr2574KXS0", delegate_virtual_invoke_17) +STUB("ebroZoKK-LA", _ZN7WebCore8Settings16setScriptEnabledEb) +STUB( + "ebut8n31GxI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("ebvI2g6M6HE", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS7TusDataEE5resetEv) +STUB("ebxz367IKR8", WKPreferencesSetBeaconAPIEnabled) +STUB( + "ec0YLGHS8cw", + _ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE7_GetcatEPPKNSt6locale5facetEPKS5_) +STUB( + "ec46hZwJups", + _ZN7WebCore20PasteboardCustomDataC1EON3WTF6StringEONS1_6VectorINS0_5EntryELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) STUB("ec72vt3WEQo", sceSystemServiceChangeCpuClock) +STUB("ec8jeC2LMOc", _ZNSt14_Num_ldbl_base17has_signaling_NaNE) +STUB("ec8z7gJfLVI", unum_parseInt64_67) STUB("ecALPUFrVv0", sceSaveDataDebugEditDB) +STUB("ecAaFyB65QI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEC1ERS7_) +STUB("ecBAxO8pvf4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session14InvitationDataEE3setEv) +STUB( + "ecIwfPKV7pE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEcvbEv) +STUB("ecIx9RjtU7Q", u_charName_67) +STUB( + "ecJyZ3n+atQ", + _ZN3sce2Np9CppWebApi7Matches2V130ResponseMatchStatisticsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_23ResponseMatchStatisticsEEE) +STUB( + "ecNDhTO31Ag", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUserC1ERS5_) +STUB("ecRGQkmG9V8", Java_com_oracle_bluray_ui_FAAComponentHelper_createHandle) STUB("ecUtPX+dBYk", sceVdecswDeleteDecoder) +STUB( + "ecWeSMrXmxs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB( + "ecYSaQD4xY8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEEC2ERKSA_) +STUB( + "ecnXENeg1XY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE5eraseENS2_8IteratorIS6_EERS9_) +STUB( + "ecq8OIRbRzA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEneERKS9_) +STUB("ecqBNmgHaDg", __cxx_global_var_init .9) +STUB("ecqOUdMuexk", _ZN7WebCore11DisplayList20DrawTiledScaledImageD1Ev) +STUB("ecs-9oOZarM", il2cpp_class_get_methods) +STUB("ectVJczq1H4", _ZN3sce7Toolkit2NP2V26Friend12Notification15BlocklistUpdateaSERKS5_) +STUB( + "ecvWT4rxg7c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "eczFq-ZaTmc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEEdeEv) +STUB("eczWvr10Ir8", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEEdeEv) +STUB( + "ed-46UZds6c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE8pushBackERKS8_) +STUB("ed0BkTf42Tc", _ZN9Inspector26LayerTreeBackendDispatcherD2Ev) +STUB( + "ed1MD9hgqo0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEdeEv) +STUB( + "ed2dGU7juJY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEEC1ERSA_) +STUB( + "ed9uJ0olp5c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEE11get_deleterEv) +STUB( + "edAi27vgHoY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEE7add_refEv) +STUB("edI9tsxepAI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEEcvbEv) +STUB("edJoqV2FIWs", setsid) +STUB( + "edOjjRsxL1o", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEdeEv) STUB("edPIOFpEAvU", sceNpTrophyIntCreateHandle) STUB("edT5HwLDgTI", sceVencStopEncode) +STUB( + "edTfuEv+KL0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "edZTNtnTPxk", + _ZN7WebCore24CoordinatedGraphicsLayer13addChildAboveEON3WTF3RefINS_13GraphicsLayerENS1_13DumbPtrTraitsIS3_EEEEPS3_) +STUB( + "edfhXry+2zQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEC1EPS8_) +STUB("edmDMsPE7Zg", FT_Get_Charmap_Index) STUB("edmMguP-f2g", sceFsUfsCheckFixedCylinderGroupSize) +STUB( + "edmjG1onTQg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEC1Ev) +STUB( + "edn77-VMt9c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE8copyFromERKS9_) +STUB( + "ednwL-QZXRA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEEC1ERSA_) +STUB( + "edofp7jr2mc", + _ZN3sce7Toolkit2NP2V211SharedMedia9getVideosERKNS3_7Request9GetVideosEPNS2_4Core8ResponseINS3_6VideosEEE) +STUB("edq-Wyu8rws", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification14NewRoomMessageEE3setEv) +STUB( + "edsWZy7TXO0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("ee2ww7pIttw", _ZN7WebCore6Widget4showEv) +STUB("ee77oOlRDYU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEED1Ev) +STUB( + "eeHrf55WFo8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEC1Ev) +STUB("eeIKCtF9zBg", _ZN7WebCore6JSNode13visitChildrenEPN3JSC6JSCellERNS1_11SlotVisitorE) +STUB( + "eeNP3-hfofY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE17getResponseHeaderERSE_) STUB("eeRsbeGYe20", sceAudioOutSetMorpheusParam) +STUB( + "eeTB8LMHMQU", + _ZN9Inspector14InjectedScript7executeERN3WTF6StringERKS2_ONS0_14ExecuteOptionsERNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISB_EEEERNS1_8OptionalIbEERNSG_IiEE) +STUB("eeTRtHU3YQc", _ZNK3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error14getReferenceIdEv) +STUB("eeYuaLSgz0I", _ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody10setOfferIdEPKc) +STUB( + "eeaRHtqK8iQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEEaSERKSA_) STUB("eeaW8UsTXwA", sceAppInstUtilAppRequestMoveApps) +STUB("eeeT3NKKQZ0", _ZNSt12placeholders3_13E) +STUB("eeknfm5OR1k", fuse_fs_symlink) +STUB("eelTXuDFOLA", rgctx_fetch_trampoline_rgctx_40) +STUB("eelf17HNGa4", glDeleteSync) +STUB( + "eeosgDXNcEQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("eerf+rbuOvs", _ZTVN7WebCore12ChromeClientE) +STUB( + "eeunw1RiauY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEE11release_refEv) +STUB( + "eexrvjA+KDk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEEcvbEv) +STUB( + "ef+34yiUFuE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("ef+R+qe3fog", Java_java_awt_GnmGraphics_nativeSetXORMode) +STUB("ef1dtBvZOK0", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V15GroupEEC1EPS6_) +STUB("ef6LHi9kFVA", DTLSv1_client_method) +STUB( + "efCMh9TjaQQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEEptEv) +STUB("efCS1Ewnspo", u_snprintf_67) +STUB("efD5N1zaabU", WKContextJavaScriptConfigurationFileEnabled) +STUB( + "efIxxU6DjXo", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities17setnpServiceLabelEi) +STUB("efK6A3Y1O-Q", makeUlpCmdHdrNoFragment) +STUB( + "efO0h-JFBKQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEE7add_refEv) +STUB("efPahl2FufA", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error8fromJsonERKNS_4Json5ValueE) STUB("efX3lrPwdKA", sceAppContentAddcontMountByEntitlemetId) +STUB("efXnxYFN5oE", _ZNSt11range_errorD0Ev) +STUB("efcwuDLsAM0", _ZThn120_NK7WebCore16HTMLMediaElement5mutedEv) +STUB("efhGArzWdxE", _ZN7bmalloc6IsoTLS15s_didInitializeE) +STUB("efhK-YSUYYQ", localtime) +STUB("efhTWQgDcfs", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanityD2Ev) +STUB("efj96KuOIzY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEC2ERS7_) +STUB( + "efnzHn5aa3Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEC1ERKS7_) +STUB( + "efoAwvn76yk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE10setContextEPNS2_10LibContextE) STUB("efqHe7wPRbs", sceContentExportCancel) +STUB( + "efqoRyRVdHk", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersaSERS5_) +STUB( + "efuDUhVPPtk", + _ZN3JSC13ConsoleClient32printConsoleMessageWithArgumentsENS_13MessageSourceENS_11MessageTypeENS_12MessageLevelEPNS_9ExecStateEON3WTF3RefIN9Inspector15ScriptArgumentsENS6_13DumbPtrTraitsIS9_EEEE) +STUB("efuMHaAx5-M", _ZN7WebCore32serializationForRenderTreeAsTextERKNS_5ColorE) +STUB( + "efvmUWrwPJA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEEC2ERSA_) +STUB( + "efvyAgm6Slc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEEaSERSA_) +STUB( + "eg-ut95Dm0I", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V122NatConnectivityFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_15NatConnectivityEEE) +STUB("eg2lXvjFIPQ", _ZN7WebCore14StaticNodeListD1Ev) +STUB( + "eg3+Mi9NckY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEaSERKS7_) +STUB( + "eg7C8DiU5uA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("eg8q0n4ZVyw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEC2Ev) +STUB( + "eg91Q-FlCNk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEneERKS9_) +STUB("egAWDZ1myJ4", + _ZSt9use_facetISt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale) +STUB( + "egGzqKKSyFY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEaSERKS8_) STUB("egOOvrnF6mI", sceNpWebApi2AddHttpRequestHeader) +STUB("egPbre4QGBI", FT_Get_Next_Char) +STUB("egR6OW+1Z0U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEEcvbEv) +STUB("eggC-ROINpQ", + _ZN7WebCore21ContentSecurityPolicyC1EON3WTF3URLEPNS_27ContentSecurityPolicyClientE) +STUB("eghdYRTI3-o", _ItL_qS5) +STUB("egi+cPsL7jc", WKRenderLayerGetElementClassNames) +STUB( + "egm8uuznnW4", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V333CommunicationRestrictionStatusApi44ParameterToGetCommunicationRestrictionStatusD1Ev) STUB("ego1YdqNGpI", sceHmdInternalCheckDeviceModelMk3) +STUB( + "egtTwhwEPns", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEE21intrusive_ptr_add_refEPS7_) +STUB( + "eh+GwD5nrO8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEED1Ev) +STUB("eh1qV7hTFHc", _ZN7WebCore15SQLiteStatement8bindBlobEiPKvi) STUB("eh2hLMp3zDU", sceVencMapMemory) +STUB( + "eh3QhCh-4wc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE10setContextEPNS2_10LibContextE) +STUB("eh6iiCWPIeQ", _ZN7WebCore9HTMLNames15aria_hiddenAttrE) +STUB("ehE5hAoBJAI", _Z16attachIpcChanneliPKciiPi) +STUB( + "ehHKy3pra1c", + _ZN3sce2Np9CppWebApi14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyD2Ev) +STUB("ehHTSpqwKBk", _ZN7WebCore21DiagnosticLoggingKeys33memoryUsageToDiagnosticLoggingKeyEm) +STUB( + "ehLaiqtqZhI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEE7get_refEv) +STUB( + "ehMuSPAqlVQ", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUser10initializeEPNS1_6Common10LibContextEPKcSA_) +STUB("ehN1Biw3tw8", _ZNK3sce4Json6Object4findERKNS0_6StringE) +STUB( + "ehNQ8iKQY9I", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEEC2ERKSC_) +STUB( + "ehQ1wJmmGW0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEEcvbEv) +STUB( + "ehSkX9YVTIA", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB( + "ehVvfidp-y8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEeqERKS9_) +STUB( + "ehWIR8BCGuU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEE11get_deleterEv) +STUB("ehXUKUtch8M", glTexParameterfv) +STUB("ehbtGbhH+q4", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEEcvbEv) +STUB( + "ehhooxUKFJ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEC1Ev) +STUB("ehj5HixBT3k", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V110Reputation11unsetGlobalEv) +STUB("ehmCBZYH-cM", WKBundlePagePostSynchronousMessageForTesting) +STUB( + "ehrGJlHbRDA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEEC1EPS8_PNS2_10LibContextE) +STUB("ehurrv5zJzI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEEC1Ev) +STUB("ehy3YMvxYew", __b2d_D2A) +STUB( + "ehz+2Hv8M0M", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEixEm) +STUB("ei3EzpSOWSE", mono_aot_System_Runtimejit_code_end) +STUB("ei7p-kKZI4s", _ZNK7WebCore24MatrixTransformOperation10isIdentityEv) +STUB("ei92h4vDiPU", _ZThn24_N9Inspector28InspectorScriptProfilerAgentD0Ev) +STUB("eiCvT8FHB4U", _Z27sceMatReleaseFlexibleMemoryPKvm) +STUB("eiGYmizCpkk", + _ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBodyD1Ev) +STUB( + "eiITnL8lW8s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEED2Ev) +STUB( + "eiIbSQUlC0A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEEptEv) +STUB("eiKRfR4eDnE", _ZN3JSC7Symbols25isRegExpObjectPrivateNameE) +STUB("eiR-c3WYWAE", _ZN3WTF10StringImpl17createFromLiteralEPKcj) +STUB( + "eiSTXgIgPbQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("eiSnft8ZgzI", mono_aot_System_Web_Servicesplt) +STUB( + "eiWoUXnutss", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEED1Ev) +STUB("eiXyTZVcD0s", _ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse12getLanguagesEv) +STUB("eiY-Hguw1Nc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEE7get_refEv) +STUB( + "eidJpWrBCQM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEmmEi) +STUB("eie0LcC7DL8", _ZN3JSC7Symbols21isCallablePrivateNameE) STUB("eij7UzkUqK8", sceHttp2GetCookieStats) +STUB( + "eijrl7Hn8K4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEaSERKS9_) +STUB("eioBaGW46xA", _ZN7WebCore21PageOverlayController32copyAccessibilityAttributesNamesEb) STUB("eiqMCt9UshI", sceNpCreateAsyncRequest) STUB("eiuobaF-hK4", sceRtcFormatRFC2822) +STUB("eix5X+imyS0", + _ZN3sce2Np9CppWebApi14IdentityMapper2V333PsnWebError_error_missingElements7setNameEPKc) +STUB( + "eiz7R0ON9aQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEED1Ev) +STUB("ej+3-9tMj9U", _ZN3JSC7Symbols14hasPrivateNameE) +STUB("ej+44l1PjjY", _ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1ERKSt8_Locinfom) +STUB( + "ej+SeuT8TIE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEptEv) +STUB("ej0xGPHrclM", _ZNK7WebCore15StyleProperties11mutableCopyEv) +STUB("ej15SuQM8yQ", + _ZN7WebCore17HistoryController36saveScrollPositionAndViewStateToItemEPNS_11HistoryItemE) +STUB("ej69qwrs0So", _ZN4Manx8X509nameD2Ev) STUB("ej7DGZDhuAk", sceKernelSetGameDirectMemoryLimit) +STUB("ej7wlPeKlro", _ZN7WebCore27PlatformMediaSessionManager31setShouldDeactivateAudioSessionEb) +STUB("ej9lV7VhqBw", WKWebsiteDataStoreConfigurationSetPerOriginStorageQuota) +STUB("ejBz8a8TCWU", _ZNSt9_Num_base6digitsE) +STUB("ejCIaFbLe70", mono_aot_Sce_PlayStation_Jsonunbox_trampoline_addresses) +STUB("ejHFfD6i3Is", _ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamRankResultD1Ev) +STUB( + "ejJpRC+dM+o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE21intrusive_ptr_sub_refEPS9_) +STUB("ejLjAkmwuMc", _ZN3WTF13printInternalERNS_11PrintStreamEa) +STUB("ejR+ID5CF7I", _ZN12video_parser5vpcom3rtc21ConvertDateTimeToTickEPKNS1_8DateTimeEPm) +STUB( + "ejW-CtLe+sA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEED1Ev) +STUB("ejW3kZyq550", _ZNK7WebCore20SharedBufferDataView4dataEv) +STUB( + "ejWHu5VB9tg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "ejXTxbnRqzc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEixEm) +STUB("ejal1Vu2Fwk", _ZN3sce7Toolkit2NP15AppSTLAllocatorItE10deallocateEPtm) STUB("ejekcaNQNq0", sceKernelGettimeofday) +STUB("ejn3-bugjjM", _ZN3sce2Np9CppWebApi6Common8IteratorINS2_17ParameterBaseImpl6KeySetEEppEv) +STUB("ejnQI-coDXA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEdeEv) +STUB( + "ejr9S9osRKw", + _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container16setContentRatingERKNS1_6Common12IntrusivePtrINS3_13ContentRatingEEE) STUB("ejwa0hWWhDs", sceNetConfigGetIfaddr) +STUB( + "ejyZg6hEE3U", + _ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId17getnpServiceLabelEv) STUB("ejzUyLHgMug", sceVnaSetEnableAssistantSettings) +STUB( + "ek-4ZTCKfqE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "ek0mxrOcro4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEEaSERKS9_) +STUB("ek3kHDpFMdg", _ZNK7WebCore20TransformationMatrix8mapPointERKNS_10FloatPointE) +STUB( + "ek8Wge6Yhx0", + _ZN3sce2Np9CppWebApi14SessionManager2V139RequestPlayerSessionMemberPlayerFactory7destroyEPNS3_32RequestPlayerSessionMemberPlayerE) +STUB("ek8kMgN0wuI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariableC1ERS5_) +STUB("ekA8yRYwFk8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE7popBackEv) +STUB("ekAnE9DyM7Y", _ZN3WTF13StringBuilder12appendNumberEl) STUB("ekGJmmoc8j4", sceNgs2GetWaveformFrameInfo) +STUB("ekH4iiEHxXs", ucol_getStrength_59) +STUB( + "ekIn5OHYIUY", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V133BandwidthDownstreamMetricsFactory6createEPNS1_6Common10LibContextEiiiPNS5_12IntrusivePtrINS3_26BandwidthDownstreamMetricsEEE) +STUB( + "ekN6tmiGpR8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE8copyFromERKS9_) STUB("ekNvsT22rsY", sceAudioOutOpen) STUB("ekXHb1kDBl0", sceErrorDialogClose) +STUB( + "ekZEev-Gpwg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEeqERKS9_) +STUB( + "ekZGtAsTvtg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE3endEv) +STUB( + "ekaV2Ykre7o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEED2Ev) +STUB( + "ekaryoT6h3g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "ekcM6hrKTro", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEneERKS9_) STUB("ekdhK-W0tHo", sceBgftServiceIntDownloadResumeTaskAll) +STUB( + "ekgP4WN5JQA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEEC1ERSA_) +STUB( + "ekjm3eTvlNQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEEptEv) +STUB( + "eknnMFCW4-8", + _ZN3sce2Np9CppWebApi14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBody13setSpectatorsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_27RequestGameSessionSpectatorEEEEE) +STUB( + "ekovUOjOFcw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEEptEv) +STUB("ekprvLYhneo", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEEC2EPNS2_10LibContextE) +STUB( + "ekues8vVeXU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEED1Ev) STUB("ekwMB-Ftq18", sceVideoOutSysCursorIsUpdatePending) +STUB("ekxUEjhuk3Q", u_strncasecmp) +STUB( + "ekyxLBd2mOE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEeqERKS9_) +STUB("el+79GyoLVo", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V15GroupEEC2Ev) +STUB("el+Ibm-ZeSM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEE3getEv) +STUB( + "el+bRrNSo+Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEC2Ev) +STUB("el-GlhDBtNc", _ZNK3sce2Np9CppWebApi14SessionManager2V118LeaderWithOnlineId11getOnlineIdEv) +STUB( + "el0b6i3zWnU", + _ZN3sce2Np9CppWebApi14SessionManager2V132PlayerSessionNonPsnPlayerFactory7destroyEPNS3_25PlayerSessionNonPsnPlayerE) +STUB( + "el1VjMzYmdk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEEC2ERKSA_) +STUB( + "el2VQZjPsB4", + _ZNK7WebCore21NetworkStorageSession18shouldBlockCookiesERKN3WTF3URLES4_NS1_8OptionalINS1_16ObjectIdentifierINS_19FrameIdentifierTypeEEEEENS5_INS6_INS_18PageIdentifierTypeEEEEENS_35ShouldRelaxThirdPartyCookieBlockingE) +STUB( + "el6lTE8cpc0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEE11release_refEv) +STUB( + "el7-LPgNQW8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "el7o-13Ufos", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEC2Ev) STUB("el9stmu6290", pthread_set_user_context_np) +STUB( + "elC4MJekIfY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEE7add_refEv) +STUB("elHSje-7b9o", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE5beginEv) +STUB( + "elJRfWkDV7I", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEmmEv) +STUB( + "elNntRAbNQc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB( + "elO1nS+0Gno", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEEaSERKSA_) +STUB("elW8cmDqX+w", _ZNK7WebCore11HistoryItem14scrollPositionEv) STUB("elWQ9vERF-Q", sceVideoOutDeletePreVblankStartEvent) +STUB( + "elY1QSYx2eU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEEaSERKS9_) STUB("elcxZTEfHZM", sceVoiceGetPortAttr) +STUB( + "elf70QxsuY0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEEneERKS7_) +STUB( + "eliZ6mMy6zs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "eljk5YvEqHo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE21intrusive_ptr_add_refEPS9_) +STUB("ellQsBGbd7w", processUlpNtfCommonNotification) +STUB( + "elnmIv+ot2w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE5clearEv) +STUB( + "elqEZDbomN8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("elqbBHwC2uw", _ZN3sce7Toolkit2NP2V28Commerce7Request22GetServiceEntitlementsC2Ev) +STUB("elwwrEhJTrI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEE11release_refEv) +STUB( + "em+OiNKBmXM", + _ZN7WebCore18JSHTMLInputElementC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_16HTMLInputElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "em-bg+dEIGw", + _ZNK7WebCore11FontCascade8drawTextERNS_15GraphicsContextERKNS_7TextRunERKNS_10FloatPointEjN3WTF8OptionalIjEENS0_24CustomFontNotReadyActionE) +STUB("em09hN8SLWc", _ZN7WebCore8SVGNames14feMergeNodeTagE) +STUB( + "em1+GzMqhek", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_34DetailedProductInfoListInputParams9ProductIdEE7addressERKS4_) +STUB("em1os75YZXQ", _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponseD2Ev) +STUB("em7auKyZp8s", _ZN9Inspector26TimelineFrontendDispatcher26programmaticCaptureStartedEv) +STUB( + "em9jtCZAcjU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("emBVW+1scJE", d2i_RSAPublicKey_bio) +STUB("emD8FbF5skg", _ZNK7WebCore18TextureMapperLayer4sizeEv) +STUB("emGrjWcFUpg", _ZN3WTF10TextStreamlsERKNS_6StringE) +STUB("emH+QDRmhwY", _ZN3sce7Toolkit2NP2V210Tournament12GenericEventC2Ev) +STUB( + "emHUyjGtCvQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEED2Ev) +STUB("emI-mvU1vNs", _ZN7WebCore21DiagnosticLoggingKeys40foregroundCPUUsageToDiagnosticLoggingKeyEd) +STUB("emK8tReVZe0", _ZNK7WebCore14FrameSelection15selectionBoundsEb) +STUB("emNFM7uLdKI", mono_aot_System_ServiceModel_Internalsunbox_trampolines) +STUB( + "emNO-U3Kq1I", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeaders24setXPsnAtomicOperationIdERKNS1_6Common6StringE) STUB("emNQgrM1-M8", sceOpusSilkEncEncodeFloatWithPriorityAndTimeout) STUB("emP3ckeS2uo", sceAgcDriverRegisterGdsResource) +STUB("emSpWE2Ps5k", _ZN3WTF9MediaTimenwEm10NotNullTagPv) +STUB( + "emWr1xxiyYs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEC1Ev) STUB("emZBXv7cuAI", sceCamera2GetCalibrationData) +STUB( + "emZWc1YOyHU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEmmEv) STUB("emayD9LHYsc", sceVideoOutSetGamutMetadata_) +STUB("emcHF9855Uw", _ZN7WebCore8Document24scheduleFullStyleRebuildEv) +STUB( + "emffL3+vN-A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEC2Ev) +STUB("emfrItA6E3w", _ZNK7WebCore11XPathResult11numberValueEv) +STUB("emkk2SAITGI", _ZN3sce7Toolkit2NP2V210Tournament7Request12SearchEvents17MAX_NUM_EVENT_IDSE) STUB("emklx7RK-LY", sceRazorCpuShutdownDataTags) +STUB("emnRy3TNxFk", _ZTSPKf) +STUB("emsigErZ-S8", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_20NpSessionInformationEE3getEv) +STUB( + "emu8qyUoRic", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEdeEv) +STUB( + "emyIpo5GebM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEC2ERKS7_) +STUB("emySnZSCXWs", _ZN7WebCore9GLContextD2Ev) +STUB("emynctYBeqM", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEEmmEi) +STUB("en-bO+Rpvnw", mono_aot_ReactNative_Modules_Vshunwind_info) +STUB( + "en-fNOcBIUM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEC1EPNS2_10LibContextE) +STUB("en4CbuiM7nc", _ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEEC2Ev) +STUB( + "en4Pwm60tKQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEC1EPS8_) +STUB( + "en5OPAbvUvM", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB( + "en7e3-9dMQw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEE3getEv) STUB("en7gNVnh878", sceSaveDataDialogIsReadyToDisplay) +STUB("en9n+Rp+VVI", _ZN7WebCore10RenderView7hitTestERKNS_14HitTestRequestERNS_13HitTestResultE) +STUB( + "enCkQCpHeFg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEEC1ERKS9_) +STUB( + "enFkR1Lg8EY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEC2ERKS7_) +STUB("enJGqCsUsBg", WKPreferencesSetLoadsImagesAutomatically) +STUB("enKUAms1L14", _ZN7WebCore4Page20stopAllMediaPlaybackEv) +STUB( + "enMVUlgODBY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE6resizeEj) +STUB("enNqaTyfMEc", mono_class_vtable) +STUB( + "enT6eIoxHms", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE4sizeEv) +STUB( + "enVaS3BI3yo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEC2ERS7_) +STUB( + "enWXzJo9BlY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE3endEv) +STUB("enYThyH5FVA", _ZN3sce7Toolkit2NP2V29Messaging7Request17SendInGameMessageD1Ev) STUB("enZm-6GjWqw", sceAmprCommandBufferWriteAddressFromCounterPair_04_00) +STUB( + "enbKBIg5Tsc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEC1Ev) +STUB("endsrNzL+l0", ucnv_io_stripASCIIForCompare) +STUB("ene22AlqeVE", JVM_ConstantPoolGetDoubleAt) +STUB( + "enfz55x5WDQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "enhwyMja3eg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEdeEv) +STUB("enk2-X2re5s", _ZN7WebCore23TextureMapperFPSCounterC2Ev) +STUB( + "enlFir8GGIc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("enlrll0ySJI", ztrans_getDynamicClassID_67) +STUB("enme4qUd30c", flush_lock) +STUB("enqPGLfmVNU", strtok_r) +STUB("entYnoIu+fc", _ZNKSt7collateIwE4hashEPKwS2_) +STUB( + "enuMll33T24", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEptEv) +STUB("eo-us51pXos", il2cpp_field_set_value) +STUB( + "eoGf9zf0G+4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEC1EPS8_) +STUB("eoNH37bA5Hw", _ZN3NTF17URLRequestDataJobC2Ev) +STUB("eoUJa9cJC-g", _ZN4Manx8ImeEventC2ENS0_12ImeEventTypeEPKci) +STUB("eoUoCaaDpCA", _ZNK7WebCore15HTMLLinkElement11crossOriginEv) +STUB("eoW60zcLT8Q", _ZNKSt7codecvtIDic9_MbstatetE6do_outERS0_PKDiS4_RS4_PcS6_RS6_) +STUB( + "eoXvN1JcZ+M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEED2Ev) +STUB("eobeQczTTFA", g_realloc) STUB("eoht7mQOCmo", scePthreadGetspecific) +STUB("eokEwsWT7zI", _ZN7WebCore16HTMLMediaElement22setMediaCacheDirectoryERKN3WTF6StringE) +STUB("eooVhsKvHZ0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEE7add_refEv) +STUB("eoq2l4goJKs", _ZN8meta_gen12JpegPromoter16ProcessImageDataEv) +STUB( + "eoxV2FM47L0", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB( + "ep2RUcWfpFc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEED1Ev) +STUB( + "ep3azgZK3pU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB( + "ep4jllwrg-Q", + _ZN7WebCore9FrameView13paintContentsERNS_15GraphicsContextERKNS_7IntRectENS_6Widget25SecurityOriginPaintPolicyEPNS_18EventRegionContextE) +STUB("ep62GVUAPso", _ZN9Inspector26InspectorBackendDispatcherD2Ev) +STUB( + "ep6YR58UDKw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEmmEi) +STUB( + "ep7mIgh2JW8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEED2Ev) +STUB("epArcyQZejU", _ZNK3sce2Np9CppWebApi7Matches2V113RemovedPlayer11getPlayerIdEv) +STUB( + "epFWfSQXpuU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("epHXFSnMhgo", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIlEppEi) +STUB("epJ6x2LV0kU", _ZNK3sce4Json5Value9getStringEv) +STUB( + "epL4v7C3x2E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEED2Ev) +STUB("epLzR2+diVQ", WKBackForwardListItemCopyTitle) +STUB("epOoacB68yE", WKWebsitePoliciesGetTypeID) STUB("epS6UX1mzZg", sceBackupRestoreUtilGetBackupParam) +STUB( + "epX5wXEpA7Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEEcvbEv) +STUB( + "epakBDLE7VU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("epbO46Swoq8", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku18getPlusUpsellPriceEv) +STUB( + "epev98K73XI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("epg9ezKePIg", _ZN3sce2Np9CppWebApi6Common13ParameterBase18unSetRequestHeaderEPKc) +STUB( + "ephSUsGFQx8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEmmEv) +STUB( + "eplqt6mH-9o", + _ZN9Inspector20CSSBackendDispatcher13getStyleSheetElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("epudbF-GqdU", getSocketByProtocolNumber) +STUB( + "epwr+cBCIFs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEdeEv) +STUB("epzp7wxd+yE", _ZN3JSC12JSLockHolderC1EPNS_2VME) +STUB( + "eq-GN7aatnM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEneERKS9_) +STUB("eq269bJ0m+I", _ZN3sce7Toolkit2NP2V28Matching12Notification14NewRoomMessageC2Ev) +STUB("eq5f5hq4ksg", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE3endEv) +STUB("eqGCaeizvWM", FT_Stroker_New) +STUB( + "eqKOWgUtvKc", + _ZN3sce2Np9CppWebApi14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBody8fromJsonERKNS_4Json5ValueE) +STUB( + "eqLb5Epxh-0", + _ZZSt9MakefacetISt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEESt8_LocinfoERT_T0_E3buf) +STUB("eqPirDXKjCM", _ZN6WebKit12ChildProcess21removeMessageReceiverEN3IPC15StringReferenceEm) +STUB("eqQAqiTqJSk", _ZN7WebCore17WebGLStateTrackerC1EON3WTF8FunctionIFvbEEE) +STUB("eqV5UNS09NM", _ZN3JSC26setCannotUseOSRExitFuzzingEPNS_9ExecStateE) +STUB( + "eqdfw4pvpPc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "eqiCitt-ybk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEptEv) +STUB("eqkWxQ6MHEI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12RangeOfRanksEE5resetEv) +STUB( + "eqltPx098Os", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEaSERKS7_) +STUB("eqpr6i37N7Q", + _ZN7WebCore21JSCSSStyleDeclaration14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB("eqqTGKb9ge4", _ZNK7WebCore22SkewTransformOperationeqERKNS_18TransformOperationE) +STUB("eqzL08DLEU8", _ZN12video_parser10cVideoPath11GetDirLevelEv) +STUB( + "er-oSjz4h-c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEE21intrusive_ptr_sub_refEPS7_) +STUB("er5N7ff289E", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V511ContentTypeEEdeEv) +STUB("er6KKExFGgc", _ZN9Inspector25BrowserFrontendDispatcherdaEPv) STUB("er6TkQFUvp0", sceFiosFHOpen) +STUB( + "erApMSlKiBM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEEC2EPS8_PNS2_10LibContextE) STUB("erCWQR5eKiQ", sceAudioOut2SpeakerArrayDestroy) +STUB("erFojjTDA8Q", + _ZN3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate11setPlatformERKNS3_8PlatformE) +STUB( + "erGPCF25QJI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEC2ERKS7_) +STUB("erGq9S6Kf9g", mono_aot_Sce_Vsh_PsnMessageUtilplt) +STUB( + "erN6gRcZaTQ", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemPropertiesD2Ev) +STUB("erOKEa+5bh8", uset_addAll_59) +STUB("erRN7JcQKRU", mono_shared_internal_hash_table_destroy) +STUB( + "eriWeAfd-f8", + _ZN7WebCore19JSHTMLSelectElement6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_17HTMLSelectElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "ermYF4u5JgE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "eruduJ0KrT0", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer13isInitializedEv) +STUB("ervJKFBtvfQ", + Java_com_sony_bdjstack_org_bluray_storage_BindingunitDataAreaInfo_getTotalBuSize) +STUB( + "erwgspl4qRY", + _ZN3sce2Np9CppWebApi14SessionManager2V130ResponsePlayerSessionSpectatorC2EPNS1_6Common10LibContextE) +STUB("erxK6j2uncY", _ZN7WebCore16VisibleSelectionC2Ev) +STUB("eryhfloELYU", Java_java_lang_Runtime_availableProcessors) +STUB("es-hzEqlzr0", WKBundleInitialize) +STUB("es22a5w83e4", _ZN3JSC10initializeEv) +STUB( + "es3F1MJA4tY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEE7get_refEv) STUB("es6OiIxGiL0", sceNpManagerIntGetIssuerId) +STUB( + "es8iL1TsP-4", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("es9m4K9TZK0", _ZN3sce2Np9CppWebApi12Leaderboards2V15Entry8fromJsonERKNS_4Json5ValueE) +STUB( + "esDwTFqGdfA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEEdeEv) +STUB("esFduqt5XdM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEEdeEv) +STUB( + "esGXOkggIpI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEixEm) +STUB( + "esLdo+7Ayo4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE21intrusive_ptr_add_refEPS7_) +STUB( + "esXC9QOEknM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEppEi) +STUB( + "esYabucdqaI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE8pushBackERKS8_) +STUB("esiElBSUOl8", GCC_except_table531) +STUB("esiO4He2WTU", _ZN3sce2np10EventQueueC2EP16SceNpAllocatorEx) +STUB( + "esvGaHARFnw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEEC2ERKS9_) STUB("eszLdtIMfQE", sceNetConfigRoutingStart) +STUB( + "et+Ko+hi6O4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEaSERKS7_) +STUB("et05S+nkWG8", _ZN3sce2np18HttpConnectionPool13InvalidateAllEv) +STUB( + "et6HW337J+M", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeaders9unsetETagEv) +STUB( + "et9jyaOWxH8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE8copyFromERKSA_) +STUB("etB2ZIZN7zQ", mono_btls_x509_get_public_key) +STUB("etBYEprfg+c", _ZNK7WebCore11MediaPlayer27sourceApplicationIdentifierEv) +STUB("etCoOZocw4c", _ZN3sce7Toolkit2NP2V27Session14InvitationData5resetEv) +STUB("etGMXWQ5J2s", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V115CompetitionTypeEEppEv) +STUB("etHgBXWnWn8", sqlite3_bind_double) +STUB("etK79qkWJCc", WKPreferencesGetShouldConvertPositionStyleOnCopy) +STUB("etMUeqIhN+w", _ZN3sce2np12StreamWriter15WriteFilledDataEPNS0_6HandleEcl) +STUB("etUyb461vrA", mono_aot_Sce_Vsh_GameListRetrieverWrapperplt) STUB("etZ84Rf3Urw", sceNpManagerIntGetUserNum) +STUB("etZLnoayRdo", _ZNK7WebCore14ScrollableArea21mouseEnteredScrollbarEPNS_9ScrollbarE) +STUB( + "etZfUJRJqW0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEEcvbEv) STUB("etaQhgPHDRY", scePadSetLightBarBlinking) +STUB("etccDVR9oQc", + _ZN7WebCore26provideDeviceOrientationToERNS_4PageERNS_23DeviceOrientationClientE) +STUB( + "etjmoY-8JJk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("etlasL21ePw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEC1Ev) +STUB("etoxn3scbN0", _Z38sceGpuDebuggerSetEnabledExceptionsMaskPN3sce3Gnm16LsStageRegistersEj) +STUB("ets6WuJA59Q", mono_aot_System_IO_Compressionjit_code_end) +STUB( + "etxz6pcQQ+A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEC1Ev) +STUB( + "eu0j+42u4XI", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearch8setlimitEi) +STUB("eu1y5qb4tHo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEppEv) +STUB( + "eu3WBBxzdp0", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot13setaccountIdsEPKc) +STUB("euE6Yo5hkrY", _ZN3sce2np9NpTitleId5BuildERKS1_Pcm) +STUB("euE6r665FlA", _ZN7CoreIPC10Connection4openEv) +STUB("euF7D2ixCBA", _ZN3sce7Toolkit2NP2V210Tournament7Request19SendTeamMatchReportC1Ev) STUB("euJ98YIIE8w", scePthreadMutexattrGetgen) STUB("euKRgm0Vn2M", pthread_attr_setschedparam) +STUB( + "euLmHvrjwDk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE8capacityEv) +STUB("euMge4JnntM", _ZN3sce7Toolkit2NP2V24Core5EmptyC2Ev) +STUB( + "euODZGYmdEE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("euQ2PLd-LNQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead19getJoinableUserTypeEv) +STUB( + "euUqqUisUM8", + _ZN3sce2Np9CppWebApi11UserProfile2V132GetBasicPresencesResponseFactory7destroyEPNS3_25GetBasicPresencesResponseE) +STUB("eubni8DxPwI", _ZN4Manx14NetworkProfile13initProxyInfoEv) +STUB("euiDHLModvU", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE8capacityEv) +STUB("eul2MC3gaYs", _Ctype) +STUB( + "eutEaXDRG5Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEC1EPS8_) +STUB("ev03MjDlbBI", _ZN7WebCore9HTMLNames11summaryAttrE) +STUB("ev5VTgiRycU", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEED1Ev) +STUB( + "ev6WTQFsFJM", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_8Timeline10InstrumentEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB( + "ev6gs1qj0QU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEaSERKS7_) +STUB("ev77AviWYu8", _ZN3sce2np10MemoryFileC2EP16SceNpAllocatorEx) +STUB("evMBBmDb9Kg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEEC1EPNS2_10LibContextE) +STUB("evOComLiuD4", _ZN9Inspector14InspectorAgentD2Ev) +STUB("evQPB2JiOTo", _ZN3sce7Toolkit2NP2V23TUS7Request12GetVariablesC1Ev) +STUB( + "evQZslLk9SE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEC1Ev) +STUB( + "evQpOl8Ovx0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE5clearEv) STUB("evj9YPkS8s4", sceUltQueueDataResourcePoolGetWorkAreaSize) STUB("evjOsE18yuI", sceImeFilterText) +STUB("evjs3fJSaWw", _ZN3sce2Np9CppWebApi13InGameCatalog2V55Error8fromJsonERKNS_4Json5ValueE) STUB("evqHA+pYo+c", sceDebugGetUltRwlockInfo) STUB("evz0-93ucJc", sceNpHeapShowStat) +STUB( + "evzQ4cA3lFU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEEaSERSA_) +STUB( + "ew2XIxqOUrU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEaSERKS7_) STUB("ew647HuKi2Y", scePadSetAutoPowerOffCount) +STUB("ew8ebxoQMLo", _ZNK9Inspector22RemoteAutomationTarget8isPairedEv) +STUB("ewA+kAOTOAI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking10UsersRanksEE3setEv) STUB("ewBC-T131kk", sceDevUsbTerm) +STUB( + "ewC19GiKi3I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEmmEv) +STUB( + "ewCp2CSNRDo", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities12ErrorFactory6createEPNS1_6Common10LibContextEiPKcPNS6_12IntrusivePtrINS4_5ErrorEEE) +STUB("ewE3P6Jh1n4", _ZN7WebCore18isValidContentTypeERKN3WTF6StringENS_4ModeE) +STUB("ewFsW9+nJ1A", mono_aot_Sce_Vsh_UsbStorageSceneunbox_trampoline_addresses) +STUB("ewHOLkb0gAo", _ZN12Mp4Retriever8FinalizeEv) +STUB("ewJgJea-W5Y", _ZN3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayerD2Ev) +STUB( + "ewLD6Ew4Blc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) STUB("ewN9DUWH07g", sceFsUfsMkfsForExternalHDD) +STUB("ewOZn58W2uk", rgctx_fetch_trampoline_mrgctx_104_p) +STUB( + "ewQSp8Ujr5g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEE11release_refEv) +STUB( + "ewVjK5wumrI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("ewVs8vi6g-M", mono_aot_System_Net_Httpunwind_info) +STUB("ewYXDWlaPVc", mono_aot_ReactNative_Modules_Vsh_Gct_Telemetryplt) +STUB("ewYyfU0X-QM", _ZN3sce2Np9CppWebApi7Matches2V119ResponseTeamResults10unsetScoreEv) +STUB("ewZNP1Jwrx8", _ZN3WTF8JSONImpl5Value12escapeStringERNS_13StringBuilderENS_10StringViewE) +STUB( + "ewaox0fh9DA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUser19unsetnpServiceLabelEv) +STUB( + "ewdspwX6B68", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEC2Ev) +STUB("eweskBljBqI", unorm2_normalizeSecondAndAppend) +STUB("ewoQz18c+5I", _ZN3sce7Toolkit2NP2V23TUS14DataContentionD2Ev) STUB("ewobAQeMo5k", sceAgcAcbAcquireMemGetSize) +STUB("ewpJla+Xdkk", _ZN9Inspector22RemoteAutomationTargetD0Ev) +STUB( + "ewqkMbnczi4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEE7add_refEv) +STUB( + "ews3u8G9CBo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEEptEv) +STUB( + "ewvr9jUslyA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEC1Ev) +STUB( + "ewwTafBGvfA", + _ZNK3sce2Np9CppWebApi14SessionManager2V136GetFriendsPlayerSessionsResponseBody6toJsonERNS_4Json5ValueEb) +STUB("ewz64ZwYx3g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEC1Ev) +STUB("ex-8kA3X5ZQ", _ZN7WebCore17LibWebRTCProviderD2Ev) +STUB( + "ex7AXTCxdL4", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditions12getaccountIdEv) STUB("exAxkyVLt0s", sceFontDestroyRenderer) +STUB("exBBzCP5+xk", _ZN3sce7Toolkit2NP2V27Session7Request6Create16HIGHEST_PRIORITYE) +STUB("exDiYq9Q1GM", FT_ClassicKern_Free) +STUB("exHtP0yFfCI", _ZNK7WebCore13HTTPHeaderMap3getERKN3WTF6StringE) +STUB("exNzzCAQuWM", _Thrd_yield) +STUB( + "exZ9OnNNC6Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEixEm) +STUB("exZt85cnx08", _ZN4IPMI4impl10ClientImpl12tryGetResultEjjPiPNS_10BufferInfoEj) +STUB("exbTfwbxzuU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEmmEi) +STUB("exe4x3tB-Qk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersaSERS5_) +STUB("exfFuBnmNzE", Java_com_sony_bdjstack_system_BDJModule_postKeyEvent) +STUB( + "exiM58he34M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "exkGQSIrF+U", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayerC1Ev) +STUB("exkh5YVuwLo", _ZN9Inspector18InjectedScriptHostD1Ev) +STUB("exxKr58F43o", + _ZN15AbstractStorage14TwitterContent6RenameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB( + "exz389L1u38", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEEaSERKSA_) +STUB( + "ey0Myfg1ZnQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE6isBusyEv) +STUB( + "ey1VNRLyboY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEE5resetEPS9_) +STUB("ey4ejaqVqfA", _ZNK7WebCore14StyleSheetList6lengthEv) +STUB("ey5hOr8ltt4", _ZNK10Deprecated11ScriptValue10hasNoValueEv) +STUB("ey7m-hHRtu4", mono_thread_exit) +STUB( + "ey95aA+b9EM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB("ey9N5U-C0hw", glBlendColor) STUB("eyB4oc96HwI", scePlayReadyCdmiDestroyMediaKeySession) +STUB("eyBB0eDGq5Y", _ZN3WTF24AutomaticThreadConditionC1Ev) +STUB( + "eyBlgGSy8zg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE5abortEv) +STUB("eyHghziTDcw", _ZN7WebCore23createDragImageForRangeERNS_5FrameERNS_5RangeEb) +STUB("eyLJTFGp1aA", mono_aot_Sce_Vsh_SessionInvitationjit_code_start) +STUB("eyLe8nTZRNU", _ZN3JSC7Symbols29allocateUint8ArrayPrivateNameE) STUB("eyLyLJrdEOU", sceNetClearDnsCache) +STUB( + "eyNsJ1+XPoI", + _ZN3sce7Toolkit2NP2V212ActivityFeed11getWhoLikedERKNS3_7Request11GetWhoLikedEPNS2_4Core8ResponseINS3_13UsersWhoLikedEEE) STUB("eyPajExpoOc", sceFsLvdWaitResumed) +STUB("eyRVkq9IjDc", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_22ConsumeChallengeResultEEC2Ev) +STUB("eyX8rcJ6wu8", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_26EventInformationListDetailEED2Ev) +STUB("eyZRktPjUaQ", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIfEmmEv) +STUB("eycvhCMgpfk", JVM_GetStackTraceElement) +STUB("eyczRhn1VpI", _ZN7WebCore23ScaleTransformOperationD1Ev) +STUB( + "eyemBGWFDPQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEED2Ev) +STUB( + "eyfOloblly0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEcvbEv) +STUB( + "eygUELKT0Cc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("eyiQGHPBIKI", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectIdC1Ev) +STUB( + "eym-lc8pzUI", + _ZN3sce2Np9CppWebApi14SessionManager2V125GameSessionForReadFactory7destroyEPNS3_18GameSessionForReadE) +STUB( + "eyoEHpGBSdY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEEC1ERSA_) +STUB("eyu21jyPEx4", _ZN7WebCore30plainTextReplacingNoBreakSpaceEPKNS_5RangeEtb) +STUB( + "ez-CPOTv4q8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEC2ERS7_) +STUB("ez2aUegdWWY", EC_KEY_set_public_key) +STUB("ez41Pm9N0QM", mono_get_method_constrained) +STUB( + "ez8KLVoGZx0", + _ZN7WebCore13StyledElement22setInlineStylePropertyENS_13CSSPropertyIDEdNS_17CSSPrimitiveValue8UnitTypeEb) +STUB("ezAh2UH+pyE", _ZN7bmalloc15IsoHeapImplBase16addToAllIsoHeapsEv) +STUB("ezBb0MkkscE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEEeqERKS7_) +STUB( + "ezD9nNgzuAg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEC2EPKS8_) +STUB("ezFSbCdCU9o", + _ZN7WebCore28convertToIntegerEnforceRangeIhEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB("ezJnmv7hkAg", + _ZN3sce2np12HttpTemplate19SetAuthInfoCallbackEPFii15SceHttpAuthTypePKcPcS5_iPPhPmPiPvESA_) STUB("ezM2OhNxzck", sceAjmBatchJobInitialize) +STUB("ezTggyZ6StQ", _ZN7WebCore21SerializedScriptValue6createEN3WTF10StringViewE) +STUB("ezUp1zHpnkc", _ZN3JSC7JSScope6toThisEPNS_6JSCellEPNS_9ExecStateENS_8ECMAModeE) +STUB("ezWkRVywo7Y", Java_java_net_PlainSocketImpl_socketShutdown) +STUB("eza1GwGMALY", + _ZN3sce7Toolkit2NP2V212EventsClient11EventInGame31MAX_EVENT_IN_GAME_BOOT_ARGUMENTE) +STUB("ezaYencgnIE", _ZN7WebCore5Range12setEndBeforeERNS_4NodeE) +STUB("ezeFkHDV4K8", SHA256_Update) +STUB( + "ezhng9-mZtY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEppEv) +STUB( + "ezidRyf+hwU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEEC2ERKS9_) +STUB("ezuSd2pLtno", uloc_getISO3Country) +STUB("ezuirSOFGDo", + _ZN9Inspector19InspectorAuditAgent29willDestroyFrontendAndBackendENS_16DisconnectReasonE) +STUB("ezv-RSBNKqI", pread) +STUB("ezzkCWLzmI0", _ZN3sce3Xml13AttributeList9terminateEv) +STUB( + "f+00KPkkmWE", + _ZN7WebCore21JSCSSStyleDeclaration15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB("f+1ANVWFAfY", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_16SessionAttributeEEC1ERKS4_) +STUB("f+1EaDVL5C4", _ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2Em) +STUB( + "f+1oxdO7xqU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEE3getEv) +STUB("f+79V4V+sLE", _ZN3WTF12randomNumberEv) +STUB( + "f+9jm3IuuhU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEEC2ERKS9_) +STUB( + "f+FFTy64sWI", + _ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error9setErrorsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_24PsnWebError_error_errorsEEEEE) +STUB("f+Fcf3sML94", u_strFromWCS_67) STUB("f+HdRtISAvw", sceApplicationGetCoredumpDirAndFileName) +STUB( + "f+J50jd6woI", + _ZNK7WebCore21ContentSecurityPolicy30upgradeInsecureRequestIfNeededERNS_15ResourceRequestENS0_19InsecureRequestTypeE) +STUB("f+OTc4UWuGU", + _ZN7WebCore9CSSParser16parseDeclarationERNS_22MutableStylePropertiesERKN3WTF6StringE) +STUB("f+PdlGreIA0", mono_install_assembly_refonly_preload_hook) +STUB( + "f+S4BReS66Y", + _ZN7CoreIPC18MessageReceiverMap19dispatchSyncMessageEPNS_10ConnectionERNS_14MessageDecoderERN3WTF6OwnPtrINS_14MessageEncoderEEE) +STUB("f+SLvBCIGJM", _ZNK7WebCore20ResourceResponseBase4dateEv) +STUB( + "f+TyFCKjTh0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEED1Ev) +STUB("f+WgWFQQlAk", _ZNK7WebCore9FrameView21maximumScrollPositionEv) +STUB( + "f+XHDdSaXJQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEdeEv) +STUB( + "f+ho5TltViE", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEEiRNS2_10LibContextEPT_m) +STUB( + "f+p-lAQaFDo", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC1ERKS8_) +STUB( + "f+qCH0dYja4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEC2EPS8_) +STUB("f+r1NszlolE", WKPreferencesGetJavaScriptEnabled) +STUB("f-+LZA1oeSw", initcloc) +STUB( + "f--Wf3Qf-u0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEmmEi) +STUB("f-3GxXeQ5c0", uidna_labelToUnicodeUTF8_67) +STUB( + "f-9w7Sa1LzQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEE3getEv) +STUB("f-FTAb5fwbg", _ZN12video_parser10VpCeilLog2Ej) +STUB("f-ISKcgtZuw", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V115NatConnectivity8fromJsonERKNS_4Json5ValueE) +STUB("f-L+s6uxNAA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEC1Ev) +STUB("f-N1rbHDqqM", _ZN3sce2Np9CppWebApi12Leaderboards2V122GetRankingResponseBody12unsetEntriesEv) STUB("f-Q8Nd33FBc", sceLncUtilInitialize) STUB("f-WtMqIKo20", sceSystemServiceActivateHevcSoft) +STUB("f-ch6EGylTI", _ZN9Inspector14InjectedScript15clearEventValueEv) +STUB( + "f-g8r+2A0RM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE8capacityEv) +STUB( + "f-oj+Yb47R8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) STUB("f-pgaNSd1zc", sceNpWebApiClearUnusedConnection) +STUB("f-pkkoFA9cE", + _ZN3sce2Np9CppWebApi14SessionManager2V112NonPsnLeaderC2EPNS1_6Common10LibContextE) STUB("f-qy0soAkfA", sceRegMgrBackupPullData) +STUB( + "f-ssShWqQnM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEppEv) +STUB("f-uv8XXYYkY", _ZN3JSC7JSArray11fillArgListEPNS_9ExecStateERNS_20MarkedArgumentBufferE) +STUB( + "f-ux4VMX7Jk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEEC2ERKSA_) +STUB("f-vSeWHQsW4", WKPageSetTextZoomFactor) +STUB("f011LrwMk8E", _ZN3sce7Toolkit2NP2V210Tournament15RegisteredTeamsD1Ev) +STUB("f06wGEmo5Pk", _ZNSt14_Num_ldbl_base12has_infinityE) +STUB("f09KvIPy-QY", getdirentries) STUB("f0BUVmHz2CE", sceClNetTerm) +STUB("f0DqjWri+Rs", _ZNK7WebCore22EmptyFrameLoaderClient7frameIDEv) +STUB( + "f0F9ft8Qk+0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEC1Ev) +STUB( + "f0FnQ0fqdO4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE5beginEv) +STUB( + "f0GV9zbaSgc", + _ZN7WebCore12EventHandler14scrollOverflowENS_15ScrollDirectionENS_17ScrollGranularityEPNS_4NodeE) +STUB("f0K+bPzvmVo", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V110UpdateModeEEC1Ev) +STUB( + "f0KKMH538dw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEeqERKS9_) STUB("f0LIQinm+9E", sceDataTransferTargetEventIsIPv6Ready) +STUB("f0MBRCQeOEg", SSL_retrieveServerNameList) +STUB( + "f0OwRZxEV2Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEC1EPS8_) +STUB( + "f0S9XWW4j8w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEC1EPKS6_) +STUB("f0X68Ail+co", _ZN7WebCore16TrackPrivateBasenwEm) +STUB( + "f0a751gkuJ4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEC1Ev) +STUB("f0boz4mowL0", _ZN7WebCore11DisplayList9ClearRectC1ERKNS_9FloatRectE) +STUB("f0dCms2EnqU", unum_setDoubleAttribute_67) +STUB( + "f0dnSqUNGpY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEC2EPKS6_) +STUB("f0fyxdSxcP4", _ZN3sce7Toolkit2NP2V27Session12Notification18InvitationReceived8deepCopyERKS5_) +STUB("f0jfSTRFcwM", _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponseD1Ev) +STUB("f0jwVLVSTy0", _ZN3WTF11Persistence7Decoder6decodeERf) +STUB( + "f0k3bwSfuJ0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEC1Ev) +STUB("f0uoqUwlUG4", + _ZN7WebCore21InspectorFrontendHost28addSelfToGlobalObjectInWorldERNS_15DOMWrapperWorldE) +STUB("f0wOzpfsKwU", udat_open_67) +STUB( + "f10cMfXPReQ", + _ZN3sce2Np9CppWebApi14SessionManager2V148GetUsersAccountIdGameSessionsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_29JoinedGameSessionWithPlatformEEEEEPNS9_INS3_41GetUsersAccountIdGameSessionsResponseBodyEEE) STUB("f12ObAMEi9A", sceAmprCommandBufferPushMarkerWithColor) STUB("f1CLT4QGcSU", sceVshAvcapClose) +STUB("f1HAS+flwvE", _ZNK7WebCore11MediaPlayer18minFastReverseRateEv) +STUB("f1I6Y18jKbk", _ZN7WebCore11DisplayList8DrawRectC1ERKNS_9FloatRectEf) +STUB( + "f1N6fiSvgus", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("f1Oa4y5IVIo", utext_openCharacterIterator_67) STUB("f1OwQ7jdqn0", sceNpAppInfoIntCheckAvailabilityAllA) +STUB( + "f1Pcyzqz18Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEEC1ERKSA_) +STUB("f1ZGLUnQGgo", _ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2Em) +STUB("f1n0xTYdfGQ", _LMBCSData17_67) +STUB("f1ncwa-JXlA", _ZN3sce2np12StreamReader7ReadAllEPNS0_6HandleEPvmPm) +STUB("f1saCd4HzCU", WKPreferencesGetIncrementalRenderingSuppressionTimeout) +STUB("f1v-VmWS5ys", _ZN3WTF11Persistence7DecoderrsERNS_8OptionalIhEE) +STUB("f1yvZF1sH6U", _ZN3sce2Np9CppWebApi14SessionManager2V113PlayerSessionD2Ev) +STUB("f1zwJ3jAI2k", _Unwind_Resume) +STUB( + "f2+eS7D7IQ8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEeqERKS9_) +STUB( + "f2-eLN5HTa0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEE11release_refEv) +STUB( + "f20GPlUxNpc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEC2Ev) STUB("f21DEbadT98", sceSysUtilSendSystemNotification2) STUB("f22czPppTCQ", sceImeBackendAllDeleteConvertString) +STUB( + "f23ucbon5zU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEneERKS9_) +STUB( + "f2Cxgs6bVbg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEC2ERKS8_) +STUB( + "f2DLe7CDV+U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE8capacityEv) +STUB("f2K8i7KU20k", _ZNK3sce2np4User12GetAccountIdEPm) +STUB( + "f2OmNBGuemI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEE3getEv) STUB("f2Pe4LGS2II", sceNpTssGetSmallStorageAsync) +STUB( + "f2V-tZFl5-0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEC1Ev) +STUB("f2Y6L6Kcn8g", ucase_fold_67) +STUB("f2YbMj0gBf8", erfcl) STUB("f2bcpK6kJfg", sceMoveReadStateRecent) +STUB("f2hz+NhGpbw", WKBundleScriptWorldCreateWorld) STUB("f2jyE0mDY5k", sceNpSessionServiceSendPlayerSessionInvitations) +STUB("f2llHFJjqhI", uidna_labelToASCII_UTF8_67) +STUB("f2pwgWSKi+Y", _ZN3sce7Toolkit2NP2V210Tournament15RegisteredUsersD1Ev) +STUB( + "f3-OA+PR31E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEEC1EPS9_PNS2_10LibContextE) STUB("f33OrruQYbM", sceRazorIsLoaded) +STUB("f343ouevuf8", Java_com_sony_gemstack_io_factories_ps_PSAttributes_n_1setAttributes) +STUB("f34UkEjoHeA", _ZNSt15basic_streambufIcSt11char_traitsIcEE9underflowEv) +STUB( + "f34WqS4x+t0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEEdeEv) STUB("f34qn7XA3QE", sceSystemServiceLaunchWebApp) +STUB("f3BT6YR9vY0", _ZNK3sce2np14JsonObjectImpl15fieldSetDestroyEPNS1_8FieldSetE) +STUB("f3CTWnYQYwY", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V16StatusEEdeEv) +STUB("f3CpiiwbKas", _ZNK7WebCore29DeprecatedCSSOMPrimitiveValue13primitiveTypeEv) +STUB("f3ES4GDx5-Q", + _ZN3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator15getPushContextsEv) +STUB("f3Ie-HOytV8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEE5resetEPS6_) +STUB("f3NfGChYjEs", _ZN9Inspector22ContentSearchUtilities19searchInTextByLinesERKN3WTF6StringES4_bb) STUB("f3S7UzMOqpc", sceMbusDebugCheckProcessResume) +STUB( + "f3U0T5UN+xk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "f3Y5zOufPtI", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayer11getplayerIdEv) +STUB( + "f3b4sCdevp0", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) STUB("f3dg2CSgRKY", sceAgcCreateShader) +STUB("f3f3wNgbQjI", rgctx_fetch_trampoline_mrgctx_98_p) +STUB("f3gWGaFeX0Y", JVM_GetClassLoader) +STUB( + "f3gm16TpP+8", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeaders7destroyEPS5_) +STUB("f3k1FP3GhrM", EVP_DigestInit) STUB("f3kPeoTZnIE", sceHmd2Open) +STUB( + "f3lToD6tvcI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEC1EPS7_PFvS9_EPNS2_10LibContextE) +STUB("f3n1RDSWbjE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEC2ERS7_) +STUB( + "f3nGNa20Z+w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEppEv) +STUB( + "f3osweYtXYY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEplEm) +STUB("f3rFzo5wykg", WKPreferencesGetMediaControlsScaleWithPageZoom) +STUB( + "f3uAvTjs55U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEC2ERKS7_) STUB("f3w+k7lAQKg", sceDseehxExtInit) +STUB( + "f3xk393PdjU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEneERKS9_) +STUB( + "f3xlB-dwTms", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE3endEv) +STUB( + "f4+NSTGTZTQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("f41T4clGlzY", _Xp_invx) STUB("f42K37mm5RM", sceHttpsEnableOption) +STUB("f43sZaou0Ts", _ZN7WebCore9HTMLNames12itemtypeAttrE) +STUB("f44zEW6IiNU", + _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container29getContentInteractiveElementsEv) +STUB( + "f492Zxg0008", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToSendGameSessionMessageD1Ev) +STUB("f4A+i2Tlrmk", _ZN3WTF15FilePrintStreamD1Ev) +STUB( + "f4FjQRPmXV8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEE7add_refEv) STUB("f4Onl7efPEY", sceFontWritingRefersRenderStepCharacter) +STUB("f4P0h1xfWaM", _ZN3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayerD1Ev) +STUB( + "f4QGZfHcNvc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEEC2Ev) +STUB( + "f4USxEcwDDY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("f4VeCjTa2hA", WKPreferencesSetXSSAuditorEnabled) +STUB("f4Y+BVScAcc", _ZN3WTF4SHA1C1Ev) +STUB("f4YaEMy1xoQ", g_hash_table_foreach) +STUB( + "f4aBvgQQrnk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEC1Ev) STUB("f4aTpX9UhD0", sceAgcSdmaCopyWindowGen2) +STUB("f4aVFKmjrfo", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors6toJsonERNS_4Json5ValueEb) +STUB( + "f4bEtpUVimc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEED2Ev) +STUB("f4eEnzXZCuk", _ZN7WebCore10TreeWalker14setCurrentNodeERNS_4NodeE) +STUB( + "f4gEI1xHQvE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE3endEv) +STUB("f4kwHYoEfww", _ZNK3sce2Np9CppWebApi6Common6VectorIdE8capacityEv) STUB("f4oDTxAJCHE", sceSystemServiceGetAppIdOfBigApp) +STUB("f4x1+G7t6eY", u_totitle) +STUB("f4xQcsvggtA", _ZN7WebCore7IntRect5uniteERKS0_) +STUB("f55+g6jqf4k", uprv_decNumberPlus_67) +STUB( + "f57sCfw1Bbg", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC1ERKS7_) +STUB("f5AwQMSkutQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE5eraseENS2_8IteratorIS6_EERS9_) +STUB("f5B2kxRIerw", _ZNK7WebCore5Range12comparePointERNS_4NodeEj) +STUB("f5BjEtSShgw", _ZN7WebCore12NodeIteratorD2Ev) STUB("f5DDIXCTxww", sceUserServiceSetGlsBroadcastersCommentColor) +STUB( + "f5Dl1OQppW0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEEdeEv) +STUB( + "f5FzXiCBpps", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEaSERS7_) +STUB("f5I6kXMasiA", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container12versionIsSetEv) +STUB("f5L6ax7EWHk", _ZN3sce2np12WorkerThreadD0Ev) STUB("f5QQLp9rzGk", sceGnmDrawIndirectMulti) +STUB( + "f5S9qU7qlDk", + _ZN3sce7Toolkit2NP2V210Tournament19getRegisteredRosterERKNS3_7Request19GetRegisteredRosterEPNS2_4Core8ResponseINS3_16RegisteredRosterEEE) +STUB("f5VGINGUjjY", DbRecoveryRecoverDb) +STUB("f5YCzbrygis", _ZN3sce7Toolkit2NP2V210Tournament20OneVsOneMatchDetailsC1ERKS4_) STUB("f5Z7FIeoHdw", sceShellCoreUtilGetAppLaunchedParamString) +STUB("f5ZmuEVbDpo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEEC2Ev) +STUB("f5Zum3vudFM", NpStateManagerUnregisterCallback) STUB("f5lAVp0sFNo", sceUserServiceGetGlsIsFacebookEnabled) +STUB("f5n4XaIUVNw", JVM_GetClassSignature) +STUB("f5ne6F-Tx3k", udatpg_replaceFieldTypesWithOptions_67) +STUB( + "f5o1PGAAP3k", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "f5pQSqafhy0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEEC1Ev) +STUB("f5rZenZ8GT0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE8copyFromERKS7_) +STUB( + "f5skfynCmbQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEdeEv) +STUB("f5unyVgtmMo", _ZN7WebCore11DisplayList22BeginTransparencyLayerD1Ev) +STUB( + "f5vuYrI9M6c", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("f5vyv9+9ddc", ucol_getEquivalentReorderCodes_67) +STUB( + "f5wo5BHv-l4", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody35getComparedLastUpdatedUserAccountIdEv) +STUB("f5y9sv5r5hs", WKNotificationGetSecurityOrigin) +STUB("f5zmgYKSpIY", _ZTSt) +STUB("f66Sc+7YIUg", _ZN3sce2np8JsonNullC2EP14SceNpAllocator) +STUB( + "f680lmtdC2k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEEC2ERSA_) +STUB("f68vfrl33DU", _ZN3sce3pss4core9PsmObjectC1Ev) +STUB( + "f69FYKsbeMI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEC1Ev) +STUB( + "f6B-ZXBijlA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE21intrusive_ptr_sub_refEPS9_) STUB("f6EQsnV4i8E", sceMusicCoreServerSetTrack) +STUB( + "f6H5kFXuoks", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEppEv) STUB("f6IUA95JW20", sceDataTransferTargetEventIsPwrReqReady) +STUB("f6Lr-fvn0Ww", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable11unsetSlotIdEv) +STUB( + "f6OEVCQGMOk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEE7add_refEv) +STUB( + "f6TkGVUR71o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEC2EPNS2_10LibContextE) +STUB("f6UEsqGDGYg", _ZN3sce2Np9CppWebApi15Personalization2V15Error7setCodeERKi) +STUB("f6V-yFcoW9s", _ZN7WebCore17CredentialStorage3setERKN3WTF6StringERKNS_10CredentialERKNS_3URLE) +STUB("f6Vepu1P3gQ", __tsan_external_assign_tag) +STUB( + "f6WA87NGWbw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEC1Ev) +STUB( + "f6X9yx8+znQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEEptEv) +STUB( + "f6XNm8360cI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "f6aESaaZAVs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEC1EPKS8_) STUB("f6hCBlMb-6Q", sceNpManagerIntBind) +STUB( + "f6hEve91g4w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEED1Ev) +STUB("f6nvFYiK3pA", coil_set_homedir) +STUB("f6pcc3Oq-aA", mono_shared_hashtable_destroy) +STUB("f6rmYAKtsMk", + _ZNK3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer14getCustomData1Ev) +STUB("f6t+ogcvwYQ", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEEC2ERS6_) +STUB( + "f6yE4ZpMXNY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEC2EPS8_) +STUB("f6zTPEsjY5I", mono_debug_set_debug_format) STUB("f6zbafRlX3s", sceApplicationNotifyVshMainOnStandby) +STUB("f7-5WlpEqp8", sqlite3_reset) STUB("f77qlxIbqu0", sceKernelVirtualQueryAll) +STUB("f79Y3ZlfBQk", psl_is_cookie_domain_acceptable) +STUB( + "f79oNlligMk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEC1EPKS8_) STUB("f7G97dWnEis", sceVrTracker2LocateCoordinateSystem) STUB("f7KBOafysXo", sceKernelGetModuleInfoFromAddr) +STUB("f7TGF1E-ZVE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEE7get_refEv) STUB("f7VSHQHB6Ys", sceUserServiceSetTopMenuLimitItem) +STUB( + "f7Vfp2Le1sQ", + _ZN3sce2Np9CppWebApi14SessionManager2V125LeaderWithOnlineIdFactory6createEPNS1_6Common10LibContextERKmRK13SceNpOnlineIdPKcPNS5_12IntrusivePtrINS3_18LeaderWithOnlineIdEEE) +STUB("f7aBx5Yh-XA", + _ZN3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferReadC2EPNS1_6Common10LibContextE) +STUB("f7bEpmyxkiA", _ZNK7WebCore16HTMLMediaElement20webkitPreservesPitchEv) +STUB("f7bWbfWnclc", _ZNK7WebCore6Cursor14platformCursorEv) +STUB("f7ezG6DbaIM", + _ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer17unsetPushContextsEv) +STUB("f7gicCxz8mw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEE5resetEPS5_) +STUB("f7jU3m0Nfbc", OCSP_CERTID_free) +STUB("f7kWxmEFWB4", ucol_setStrength_67) +STUB("f7lbTTaMDlI", mono_btls_ssl_use_certificate) +STUB("f7mQZbOSSjY", _ZN8meta_gen11MsvPromoter10isViewableEv) STUB("f7uOxY9mM1U", __stack_chk_guard) +STUB("f8+4s7hHlCo", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTicketsC1Ev) STUB("f85orjx7qts", sceGnmRequestMipStatsReportAndReset) STUB("f8AgDv-1X8A", sceVideodecReset) +STUB( + "f8HhJCMtC8Q", + _ZN9Inspector23CanvasBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("f8JR4X5iRQM", _ZN7WebCore9HTMLNames9eventAttrE) +STUB( + "f8KDsN6i+H4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEptEv) +STUB("f8L-LqsJwhw", + _ZN3JSC8JSObject22fillGetterPropertySlotERNS_2VMERNS_12PropertySlotEPNS_6JSCellEji) STUB("f8NjlGw6TgQ", sceNpEulaDialogTerminate) +STUB("f8Nys8MLF8w", _ZN7WebCore25errorDomainWebKitInternalE) +STUB("f8Qt7rzeBxQ", Java_com_sony_bdjstack_javax_media_controls_SoundManager_setGainLevel) +STUB( + "f8Xt8UXzs0A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "f8bWjU5wnI4", + _ZN7WebCore19JSDOMMatrixReadOnly9serializeERN3JSC9ExecStateERS0_RNS_17JSDOMGlobalObjectERNS1_10ThrowScopeE) +STUB( + "f8bjkadBqIs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEeqERKS9_) STUB("f8eZvJ8hV6o", sceSystemServiceShowEyeToEyeDistanceSetting) +STUB("f8f0+hYyOb0", glBindVertexArray) +STUB("f8fShBflha0", YGDimensionToString) +STUB( + "f8gsd-op0Ko", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE21intrusive_ptr_add_refEPS9_) +STUB("f8hMxb0OffE", mono_btls_ssl_ctx_get_ctx) +STUB("f8xkLb7ZJ+E", Java_java_awt_GnmGraphicsDevice_updateScreenDimensions) +STUB( + "f9-6V5i7rSU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("f9CJLAWQg+A", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEEC2EPNS2_10LibContextE) +STUB( + "f9Dq6t0xaps", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEEcvbEv) +STUB("f9EyCidFUEo", Java_com_sony_gemstack_org_dvb_application_AppProxyImpl_n_1pause) +STUB( + "f9IGaUVU-2I", + _ZN3sce2Np9CppWebApi14SessionManager2V141PostGameSessionsSearchResponseBodyFactory7destroyEPNS3_34PostGameSessionsSearchResponseBodyE) +STUB("f9M1CeP8R58", + _ZN15AbstractStorage18DailymotionContent11SetMetadataEPN23sceMetadataReaderWriter8MetadataE) +STUB( + "f9NA9qUfo7w", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEcvbEv) +STUB("f9PtPGCVxAk", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEEC2Ev) +STUB( + "f9R4Pv58xrA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "f9TBxenxh28", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEEcvbEv) STUB("f9Ti5qv46fo", ScePsmMonoThreadSetMaxThreads) STUB("f9X0imA90fI", sceCompositorHandleProcessEvents) +STUB("f9apGLdzpLU", _ZN2sh14ShaderVariableaSERKS0_) +STUB( + "f9iZE1NA6VQ", + _ZN3sce2Np9CppWebApi14SessionManager2V131GameSessionMemberForReadFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_24GameSessionMemberForReadEEE) +STUB( + "f9jTmCiIUVA", + _ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi10getFriendsEiRKNS4_21ParameterToGetFriendsERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_18GetFriendsResponseEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB( + "f9nS7qgcVcQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEppEi) +STUB("f9xif4l1ZhU", JSObjectCallAsConstructor) +STUB( + "f9yKvvilry4", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUserD1Ev) +STUB( + "f9yOqKwVEwI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEEptEv) +STUB("f9zESdURKNw", ucsdet_enableInputFilter_67) +STUB( + "fA+hPV9rkHo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEixEm) +STUB( + "fA+wCRvUA5Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEEcvbEv) +STUB( + "fA6p0-YsDhw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEC2EPS8_) +STUB("fABWnQjbdHg", mono_custom_attrs_from_assembly) +STUB( + "fADVevEi+us", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEE7add_refEv) STUB("fAG-kjDm-io", sceAppInstUtilGetTitleIdFromPkg) +STUB("fAGY6E0eqBo", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku10unsetPriceEv) +STUB("fAIbZgFxkAw", _ZN7WebCore12ISOWebVTTCue11boxTypeNameEv) STUB("fANJTSP-ncA", sceDeci4hDrfpReaddir_fuse_fullpath) +STUB("fAR256xs6hM", GCC_except_table118) +STUB( + "fATRZfmOTo4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEppEv) +STUB("fAUVEGJFEBk", _ZNSt15basic_streambufIcSt11char_traitsIcEE5_LockEv) +STUB("fAWof4n+aJk", _ZN3sce3Xml3Dom8NodeListC1ERKS2_) +STUB( + "fAZnsPU5WDE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEEC1Ev) +STUB( + "fAbLhwQt0bU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEE5resetEPS9_) +STUB( + "fAccoqDjJ14", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEaSERKS7_) STUB("fAfi5-11dKg", scePerfPmcStart) +STUB("fAlyOhCNriY", + _ZN7WebCore10JSLocation17preventExtensionsEPN3JSC8JSObjectEPNS1_14JSGlobalObjectE) +STUB( + "fAmfsOhcxnc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEptEv) STUB("fAnox5k5Jfs", sceDevUsbResume) +STUB("fAnukVXma0I", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V18SortModeEEC1Ev) +STUB( + "fArxktkhjBw", + _ZN3sce2Np9CppWebApi11Matchmaking2V125PlayerForOfferReadFactory7destroyEPNS3_18PlayerForOfferReadE) +STUB( + "fAx9X8mBkYI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEC2Ev) +STUB( + "fAxCjJi-8fE", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersC1Ev) +STUB( + "fAyPewBLLSQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEC2EPS6_PNS2_10LibContextE) +STUB("fB-vHMDjApc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEmmEi) +STUB("fB20kfX+6s0", _ZNK7WebCore11FrameLoader7frameIDEv) +STUB("fB4+YDTIlsQ", _ZN7WebCore4Page13setPaginationERKNS_10PaginationE) +STUB("fB5QNRZlpQo", _ZN3sce7Toolkit2NP2V24Core8ResponseINS3_5EmptyEE3setEv) +STUB( + "fB5a8bWhFxM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEppEi) STUB("fB5hE65pzbU", sceNpUtilGetShareTitleCheck) +STUB( + "fB9XLM1KACE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEED2Ev) +STUB("fBAOyg5CjPk", _ZN7WebCore11DisplayList16DrawLinesForTextD1Ev) +STUB("fBB5AsqdLM0", _ZN3sce13CanvasTexture14createRGBA8888Eii) +STUB("fBBK-B4APJs", _ZN7WebCore7Element28setUnsignedIntegralAttributeERKNS_13QualifiedNameEj) STUB("fBG1gHx1RlI", pthread_setconcurrency) +STUB( + "fBLhxslVp+Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE10setContextEPNS2_10LibContextE) +STUB( + "fBO8FXsst2E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEED1Ev) +STUB( + "fBQO2SdqISc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEaSERKS9_) +STUB( + "fBQPa2xn3IE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB("fBU1WjLvJKA", ubrk_current_67) +STUB("fBVtigUQ-qk", _ZNK7WebCore20ResourceResponseBase17suggestedFilenameEv) +STUB( + "fBdbTsF9Av4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEptEv) +STUB( + "fBgZOvUGQQQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEEC2ERKS9_) +STUB("fBhl01ZwcGc", + _ZN7WebCore22EmptyFrameLoaderClient13startDownloadERKNS_15ResourceRequestERKN3WTF6StringE) +STUB("fBi3BwL5LgY", _ZN3sce7Toolkit2NP2V28Matching7Request14SendInvitationD2Ev) STUB("fBjY1lY7sbs", sceShellCoreUtilIsIDUState) +STUB("fBne7gcou0s", posix_spawnattr_setschedpolicy) +STUB("fBpDwBKAO3s", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStatsD1Ev) +STUB( + "fBs1G5R7FdE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE6resizeEj) +STUB("fBsE3fBWXco", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEdeEv) STUB("fBuukeGZ2FE", sceShellCoreUtilAcquireSharePlayCpuBudget) +STUB("fBvKumTzlPU", _ZN3sce7Toolkit2NP19GetTitleFeedRequestC1Ev) +STUB("fBwOJESErMA", mono_init_from_assembly) +STUB( + "fBzaSTcQdug", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEixEm) +STUB( + "fC+H78P4yqI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "fC4CQe2IoRg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE5emptyEv) +STUB("fC4DuKNXJJM", mono_threadpool_set_max_threads) +STUB( + "fC4S6q0535Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEC1EPKS8_) +STUB( + "fC57kTcgkXY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEEC1Ev) +STUB("fC6nIsQxEak", mono_aot_Sce_PlayStation_Orbis_Speechjit_code_end) STUB("fCBpPJbELDk", sceUserServiceGetFileBrowserSortContent) +STUB("fCKmg2fp1G4", ubidi_isInverse_67) +STUB( + "fCRxMsn6aEQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEE7get_refEv) +STUB( + "fCTlLNZyo-U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEED2Ev) STUB("fCYZ8Ta2DJc", sceDeci4hDrfpGetMsgBuf) STUB("fCa7-ihdRdc", sceNetShowRoute6) +STUB("fCdaM2pKOpo", _ZN3sce2np18HttpConnectionPool13GetConnectionERKNS0_12HttpTemplateEPKcPi) STUB("fCeSFo0IM-w", sceShellCoreUtilPostLaunchConfirmResult) +STUB( + "fCeao2bjIvg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEEaSERS8_) +STUB("fCgYVQ0kKZE", _ZN3sce7Toolkit2NP9Utilities6FutureI13SceNpOnlineIdED1Ev) STUB("fClnlkZmA6k", sceNpCalloutStartOnCtx) +STUB( + "fCm8jvMmt24", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors29validationConstraintInfoIsSetEv) +STUB( + "fCvpkN4xd2Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_) STUB("fD1RuR3+DdE", sceAppInstUtilAppRecoverApp) +STUB( + "fD4VMQJT2U8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("fD55Cu2eyrc", mono_aot_Sce_Vsh_FileSelectorAdvanceunbox_trampolines) STUB("fD5rqhEXKYQ", sceFontWritingInit) STUB("fDEn1hyPYjc", sceDeci4hDrfpRead) +STUB( + "fDGBctAeU24", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) STUB("fDGYYXcby1w", sceUlpMgrSendData) +STUB("fDGygWr4um8", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getSecondaryVideoDisplay) +STUB( + "fDHUZODb0oE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE3endEv) +STUB("fDL61vS8k7E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE5beginEv) +STUB("fDLJPnPkjh0", _ZN3JSC16ScriptExecutable6s_infoE) +STUB( + "fDNUDwk8g6o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEC1Ev) +STUB("fDNhBmmwSNs", cairo_pattern_set_matrix) +STUB("fDP+C0zOptM", __sceAudioInVmicDetach) STUB("fDPDfnw6Z1g", sceCesRefersUcsProfileCp874) +STUB("fDQgAVpUfGI", mono_btls_x509_store_get_count) +STUB("fDSQzivDRQs", _ZN7WebCore15SQLiteStatement8bindTextEiRKN3WTF6StringE) +STUB("fDVhIjUAXWU", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15CategoryInfoSubEED2Ev) +STUB( + "fDXnjvuq340", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10setString7EPKc) +STUB( + "fDa7BHFplSI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEEcvbEv) +STUB( + "fDal-8hvCEE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEEptEv) +STUB("fDex2lyDL+I", + _ZNK3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead9fromIsSetEv) STUB("fDkwGrQqqYY", scePlayReadyCdmiDecryptOpaque) +STUB("fDloUZ5AEJ4", _ZNK3sce2Np9CppWebApi11Matchmaking2V19Submitter6toJsonERNS_4Json5ValueEb) +STUB("fDn9wEUj7Jw", _ZNK3sce2Np9CppWebApi6Common6VectorIfE5beginEv) +STUB("fDoniu1dSEU", _ZN3sce7Toolkit2NP2V24Core7Request11MemoryPools20NET_MEM_MINIMUM_SIZEE) +STUB( + "fDtpzAlJM2U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEmmEi) +STUB("fDvTiWJhcGs", _ZN3sce7Toolkit2NP2V27Session14InvitationData8deepCopyERKS4_) +STUB( + "fDwgkJU-dtM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEppEv) +STUB("fDwiCA2DWSk", _ZN23sceMetadataReaderWriter10initializeEv) +STUB( + "fDxWomDYOCY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEE21intrusive_ptr_add_refEPS7_) +STUB("fDyOfruBW6I", __asan_address_is_poisoned) +STUB("fE-UQfy62Jk", WKBundlePageSetPageLoaderClient) STUB("fE0f-EOIImg", sceCesRefersUcsProfileCp850) +STUB( + "fE7qzLJ5EUY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEEptEv) +STUB( + "fE7t0Cfb8BM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEEdeEv) +STUB("fEA+m+o7Msk", _ZN7WebCore8SVGNames11metadataTagE) +STUB("fEC20q42qRw", _ZN7WebCore10Pasteboard28typesForLegacyUnsafeBindingsEv) STUB("fECamTJKpsM", scePlayGoDialogInitialize) +STUB( + "fEDaduFg5DQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEEaSERKSA_) +STUB( + "fEEnS+VdsLI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEC1Ev) +STUB("fEIG2SWc6gU", _ZN3WTF6StringC2EPKcj) +STUB("fEJSNmRXkvg", + _ZN7bmalloc29StaticPerProcessStorageTraitsINS_13HeapConstantsEE7Storage8s_memoryE) +STUB( + "fEKqRLdUN6I", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeaders6createEPNS1_6Common10LibContextERNS6_12IntrusivePtrIS5_EEl) +STUB( + "fEMvQNmKGIg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEdeEv) +STUB("fEONtft4z0Q", _ZN7WebCore9HTMLNames13attachmentTagE) STUB("fEPEwROdCwM", sceVideoOutCursorDisable) +STUB("fEQNUy2Y0-Y", _ZN3NTF15DNSPrefetchImplC2Ev) STUB("fEQcEYs1yuU", sceCompositorSetRepeatCommand) +STUB( + "fETRIap5Lx4", + _ZN3sce2Np9CppWebApi7Matches2V112ErrorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5ErrorEEE) +STUB( + "fEWprrJAobI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEeqERKS9_) +STUB( + "fEaz9y9dnOg", + _ZN3sce2Np9CppWebApi7Matches2V122RequestPlayerStatistic8setStatsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_19AdditionalStatisticEEEEE) +STUB( + "fEcRCweGP8g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) STUB("fEcrs9UPPyo", sceNpXmlParse) +STUB( + "fEepRJYzKPM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEEC1Ev) +STUB("fEf8gfAEuHo", mono_signature_explicit_this) +STUB("fEl7vm4p-tI", _ZN7WebCore26UserTypingGestureIndicator28focusedElementAtGestureStartEv) STUB("fElyBSn-l24", sceNpStrToInt32) STUB("fEoW6BJsPt4", sceLibcMspaceMallocUsableSize) +STUB( + "fEolm-6DTVw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEEcvbEv) +STUB("fErljUC2tDQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEixEm) +STUB("fEvjAmW+Ius", _ZN3sce3Xml10SimpleDataC1Ev) +STUB( + "fEwvpBbd4Hw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEE7get_refEv) +STUB( + "fEx7+E0w-cA", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_18GameCustomDataItemENS1_15AppSTLAllocatorIS5_EEEEC1Ev) +STUB( + "fExrVbh+OSM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEEC1EPS6_PFvS8_EPNS2_10LibContextE) STUB("fEy0EW0AR18", sceUserServiceGetNpOfflineAccountId) +STUB("fF-B+-kmzuU", _ZN3JSC14ProtoCallFrame12setThisValueENS_7JSValueE) +STUB("fF-TfBVa9tQ", mono_assembly_get_main) +STUB( + "fF5AgnaFEvM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE3endEv) +STUB( + "fF5wp90SpUA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEmmEi) +STUB("fF6UuzMinKo", _ZN7WebCore22JSDeprecatedCSSOMValue9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("fF75EQr-Yh0", mono_field_get_type) +STUB( + "fFBTftE5Yso", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB("fFD0QoqKajY", _ZN3sce3pss5orbis9framework28InitializePsmFrameworkCsharpEv) STUB("fFFkk0xfGWs", sceAjmBatchStartBuffer) +STUB("fFGPlE0oNhw", _ZN3sce2np3ipc17ServiceIpmiClient10EndRequestEii) +STUB("fFIgneq4xtY", mono_gc_register_root) +STUB("fFLYYJiOIx0", WKPreferencesSetJavaScriptCanOpenWindowsAutomatically) STUB("fFLgmNUpChg", sceRtcSetConf) STUB("fFMg-cBHBBY", sceKernelGetSystemLevelDebuggerModeForRcmgr) +STUB( + "fFN2NuCh9QI", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi31listEdgeAccountId2OnlineIdBatchEiRKNS4_42ParameterToListEdgeAccountId2OnlineIdBatchERNS1_6Common11TransactionINS8_12IntrusivePtrINS8_6VectorINSA_INS3_12AccountIdMapEEEEEEENSA_INS4_46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEEE) +STUB("fFN6oSV8lSM", _ZN3sce7Toolkit2NP2V27Session20LocalizedSessionInfoD1Ev) +STUB( + "fFNfZMG0BYw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE10setContextEPNS2_10LibContextE) +STUB( + "fFR2n-b0x5M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEED2Ev) +STUB( + "fFTzH1X3u7Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "fFXuUU2O95A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEE11release_refEv) +STUB("fFZmV5BzYC0", _ZN3WTF5Mutex7tryLockEv) +STUB("fFay4QefWEg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ChildActivityAvailabilityEEC2Ev) +STUB( + "fFgQN3-ZyrE", + _ZN3sce2Np9CppWebApi14SessionManager2V162PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_55PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEE) STUB("fFkhOgztiCA", sceCoredumpUnregisterCoredumpHandler) +STUB( + "fFm8OfSLzz4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE3endEv) +STUB("fFnht9SPed8", _ZNSt8numpunctIcE5_TidyEv) STUB("fFoSsp6H+LA", sceSdecCreateSwHevc) +STUB("fFoWwCW2rDA", cairo_surface_set_user_data) +STUB("fFqB59Bbma8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEED1Ev) +STUB("fFxGkxF2bVo", setsockopt) +STUB( + "fFzBvC01ipE", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEiRNS2_10LibContextEPT_m) +STUB("fG06a38iao8", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus8getOwnerEv) STUB("fG0IjY5r484", sceMbusDisableBgmForShellUi) +STUB("fG4KMTOHr8Q", _ZN3WTF13StringBuilder12appendNumberEd) +STUB("fG4sqYZb+KA", _ZN3sce7Toolkit2NP2V27Session11SessionDataC1Ev) +STUB( + "fG85bz+MrlE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEED2Ev) +STUB( + "fG9S-Atu+pA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEEC1ERKSF_) +STUB("fGAFtfv0vIg", _ZN3sce2Np9CppWebApi15Personalization2V15Error12unsetMessageEv) +STUB("fGBOwP15r5M", _ZN3sce2Np9CppWebApi6Common13ConstIteratorImEC1Ev) +STUB("fGDYHA+uG4g", _ZNK7WebCore13ContainerNode16lastElementChildEv) +STUB( + "fGGRkflR7l8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEEaSERSA_) +STUB( + "fGIuuKfL1rg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEmmEv) +STUB( + "fGJPYAhu7Tw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("fGPRa6T+Cu8", __isnormal) +STUB("fGYLBr2COwA", __mb_sb_limit) +STUB("fGZkGHlpjeI", + _ZN3sce2Np9CppWebApi14SessionManager2V127GetGameSessionsResponseBody15getGameSessionsEv) +STUB( + "fGZsy0FlAXM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "fGfFhkhjY5k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEE6assignEPS5_PFvS7_EPNS2_10LibContextE) +STUB( + "fGil6g4bmDk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEC2ERKS7_) STUB("fGnw2K4fNlQ", sceFsUfsRecryptGetState) +STUB("fGoDnKx0jSI", _ZN3sce7Toolkit2NP2V24Auth8AuthCodeC1Ev) +STUB("fGsvNcaYcPM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Wordfilter16SanitizedCommentEE3setEv) +STUB("fH14C4V1yOM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEptEv) STUB("fH2IStnGK4M", sceCompositorCommandGpuPerfEnd) +STUB( + "fH31Rp+-8zw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEEC1ERKSA_) STUB("fH46Lag88XY", sceSaveDataDialogClose) +STUB("fHC-y547QY0", ures_getStringByKey_67) +STUB( + "fHEQsI4V4QU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE5beginEv) +STUB( + "fHEi6RnksHM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "fHFancMWks4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEC2EPS6_PNS2_10LibContextE) STUB("fHGhS3uP52k", _sceNpManagerCreateMemoryFromKernel) +STUB( + "fHHn4l+l7so", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEC1EPS8_) +STUB("fHLNdq8-3pM", _ZN3sce2Np9CppWebApi12Leaderboards2V127RecordLargeDataResponseBodyD1Ev) +STUB("fHMsRluEMfI", FT_Free) +STUB("fHNOcRXS2xk", mono_get_runtime_build_info) STUB("fHNmij7kAUM", sceCompanionHttpdRegisterRequestBodyReceptionCallback) +STUB( + "fHQ-8WdghwU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEC1Ev) +STUB( + "fHTzASbAWL4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEEC2ERSA_) +STUB( + "fHY5QUwg4Xk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEeqERKS9_) +STUB( + "fHaQpJzrH80", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE8copyFromERKS9_) +STUB("fHiit8PUwOo", _ZN3sce7Toolkit2NP2V26Trophy7Request19GetTrophyPackTrophy17INVALID_TROPHY_IDE) +STUB("fHncbidxngE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEC2Ev) +STUB( + "fHpjcJefVjw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEEC2ERSA_) +STUB( + "fHq0IwrdHr0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEptEv) STUB("fHr45B97n0U", sceNetConfigWlanDiagSetTxFixedRate) STUB("fI-5QkiZRAQ", sceNpGriefReportPost) +STUB( + "fI-bJo6WlXU", + _ZN3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayer15setPushContextsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_24PlayerSessionPushContextEEEEE) +STUB("fI0vZiEOpcU", _ZN3WTF8JSONImpl10ObjectBase5beginEv) +STUB("fI5-EhJqxeA", WKBundleDOMWindowExtensionCreate) +STUB("fI6tT2-+1Qk", WKPreferencesSetShouldUseServiceWorkerShortTimeout) +STUB( + "fI8iVHVHwuE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("fI9jB0EtPZU", _ZN7WebCore11MathMLNames8mtextTagE) STUB("fIATVMo4Y1w", sceNpWebApi2PushEventDeleteHandle) +STUB("fICzDRPk178", udata_getMemory_67) +STUB( + "fID1oEUA0ks", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE21intrusive_ptr_add_refEPS9_) +STUB("fIHG9jRHuFw", _ZN7WebCore22EmptyFrameLoaderClient12didDetectXSSERKNS_3URLEb) +STUB("fIIDtZIR6t4", mono_aot_Sce_Vsh_Sl2_Sl2Clientunbox_trampolines) +STUB("fIS2CA0Qj4Y", _ZN3sce7Toolkit2NP2V212EventsClient12EventDetailsD1Ev) +STUB( + "fITpHUN+pHQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEmmEv) +STUB("fIUD1xhY8TM", WKPreferencesGetDefaultFontSize) STUB("fIUVbmM-DDE", sceCesRefersUcsProfileCp863) +STUB("fIVxKQHldfk", tt_cmap6_class_rec) +STUB("fIWHyK5ncmg", _ZN3JSC19SourceProviderCache5clearEv) +STUB( + "fIX8beKOiBw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEE3getEv) +STUB("fIbIvuHIq2w", WKPreferencesGetAcceleratedCompositingForOverflowScrollEnabled) +STUB( + "fIbPEGv7mCk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE5beginEv) +STUB( + "fIfhXJPBywQ", + _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicket28hasxPsnAcceptPlatformNamePs5Ev) STUB("fIii6-0Adxc", sceMusicPlayerServicePause) +STUB( + "fIn2vpHhMXw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEE11get_deleterEv) +STUB( + "fInUR0BJhqI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEE11release_refEv) +STUB( + "fIo8eUELYmk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEC2EPS8_) STUB("fIqNvkKIUPQ", sceLibSecureInit) +STUB("fIs015Hhmkk", ures_getVersionNumber_67) +STUB("fIskTFX9p68", __srefill) +STUB( + "fIuHeFCSAMc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEneERKS9_) STUB("fIxLs+X4zBo", sceCesUcsProfileInitSJis2004X0213) +STUB("fIyiLNGNPC4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEE5resetEPS5_) +STUB( + "fIzsqjyD5oY", + _ZN3sce2Np9CppWebApi14SessionManager2V127RequestPlayerSessionFactory6createEPNS1_6Common10LibContextEiNS5_12IntrusivePtrINS3_32RequestPlayerSessionMemberPlayerEEERKNS5_6VectorINS5_6StringEEENS8_INS3_15LocalizedStringEEEPNS8_INS3_20RequestPlayerSessionEEE) +STUB("fJ0X7gqv28M", _ZN23sceMetadataReaderWriter8Metadata9SerializeERS0_RN3sce4Json5ValueE) +STUB("fJ3lp5T2HxA", X509_STORE_set_flags) STUB("fJ51weR1WAI", sceRudpEnableInternalIOThread2) +STUB("fJ9329XKPPA", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry14smallDataIsSetEv) STUB("fJALl2F0A3I", sceNKWebTerminate) +STUB("fJB07vDf7no", _ZN3sce2np12StreamReader8SkipDataEPNS0_6HandleEPNS0_9StreamCtxElPl) +STUB("fJDljVbG4e4", _ZN7WebCore8PositionC1EPNS_4NodeENS0_10AnchorTypeE) +STUB("fJHjtwYvOIs", uregex_setRegion_67) +STUB("fJL1Jbevd7E", _ZN7WebCore23DeferredStylePropertiesD1Ev) STUB("fJL2LwqLK4c", sceFontGraphicsReportError) +STUB("fJQ2S9PqkhE", _ZN3JSC23throwStackOverflowErrorEPNS_14JSGlobalObjectERNS_10ThrowScopeE) +STUB("fJTYs+hx40Y", _ZN4Manx11BundleOrbisC1Ev) STUB("fJTrPsXNsBY", sceFiosDebugDumpDate) STUB("fJU2TZId210", sceNpTusGetMultiUserDataStatusAVUser) +STUB( + "fJVHUq5QcCw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "fJXIJJ+vwM8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE21intrusive_ptr_sub_refEPS9_) STUB("fJXozPJvPeA", sceAppInstUtilRestoreDataSource) +STUB("fJZmTsWuZd4", + _ZN3sce2Np9CppWebApi14SessionManager2V113PlayerSession8fromJsonERKNS_4Json5ValueE) +STUB("fJa2nymyghM", rgctx_fetch_trampoline_mrgctx_10_p) +STUB( + "fJf-od2MwFk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEeqERKS9_) +STUB("fJfx9D9g9W4", FcFontSetCreate) +STUB("fJgRj2mZGpw", _ZN3JSC7JSProxy19getEnumerableLengthEPNS_14JSGlobalObjectEPNS_8JSObjectE) +STUB( + "fJiHuo-nvsM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEmmEi) +STUB( + "fJj-ZQmvSbI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE5clearEv) +STUB("fJmOr59K8QY", _LRint) +STUB("fJnpuVVBbKk", _Znwm) +STUB( + "fJqyYX9+1B4", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("fJsbxmLl7Ww", _ZN7WebCore8SVGNames9stemhAttrE) STUB("fJuQuipzW10", sceNpIdMapperAbortRequest) +STUB( + "fJuX5gEyZwU", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "fJvDAt38JXI", + _ZN3sce2Np9CppWebApi14SessionManager2V133PlayerSessionMemberForReadFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_26PlayerSessionMemberForReadEEE) +STUB("fJvsHIssANA", Java_sun_reflect_Reflection_getClassAccessFlags) +STUB("fJx8uZqDD1A", mono_aot_System_IO_Compressionunbox_trampoline_addresses) +STUB("fK+DFgxPnbY", _ZN9Inspector31RuntimeBackendDispatcherHandlerC2Ev) +STUB( + "fK3ZDloDPYo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEE7add_refEv) STUB("fK4AIM0knFQ", sceUserServiceSetFriendCustomListLastFocus) +STUB("fK5e+K6kSBg", _ZNK3sce2np6Thread6IsInitEv) STUB("fK5zqN0v5Qg", sceNpManagerIntCheckPlus) +STUB("fKMBLdIP74k", + _ZN7WebCore18JSHTMLImageElement14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB("fKNNuZ9IFEg", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead14setCustomData2EPKvm) +STUB( + "fKNWiWkTSt4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEC2EPS7_PFvS9_EPNS2_10LibContextE) +STUB( + "fKNy11+kNvA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEppEv) STUB("fKP7yxb6BHA", sceClPthreadAttrSetstacksize) STUB("fKPRO-TRxhA", sceNpUniversalDataSystemIntRecordDataEstimateSize) +STUB( + "fKRrj+PLZjo", + _ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionNonPsnPlayer8fromJsonERKNS_4Json5ValueE) +STUB("fKU8-BslRjI", fuse_lowlevel_new_compat25) +STUB( + "fKV1t4kHabE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEaSERS7_) +STUB("fKZYpNfkFNE", _ZNK7WebCore16HTMLMediaElement5errorEv) +STUB("fKZilMU6m3s", _ZN7WebCore9HTMLNames50onwebkitcurrentplaybacktargetiswirelesschangedAttrE) +STUB("fKZmvGDkhjU", + _ZN3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinitionC1ERS5_) +STUB("fKaloYAyEOM", _ZN3WTF7RunLoop38suspendFunctionDispatchForCurrentCycleEv) +STUB("fKbgtgnAkl0", ucurr_forLocale_67) +STUB("fKcCVDMgDl4", _ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_6NpUserEE8max_sizeEv) +STUB( + "fKdcQ6aYmtI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE5emptyEv) +STUB("fKewW7GoCyM", _ZN7WebCore8Document8setTitleERKN3WTF6StringE) +STUB("fKji+6kYsqQ", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification16NewInGameMessageEED1Ev) +STUB("fKk7unahoVM", deflateInit2_) +STUB("fKlkxthWjdE", _ZN7bmalloc3api9isEnabledENS_8HeapKindE) +STUB("fKpwgkVX7bQ", _ZN3sce7Toolkit2NP2V29Messaging24GameDataMessageThumbnailC2ERKS4_) STUB("fKqJTnoZ8C8", sceSystemServiceKillLocalProcessForPs2Emu) +STUB( + "fKuNp7osKHY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEC1EPKS8_) +STUB( + "fKufASZdZRs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEED1Ev) +STUB("fKyJdxYdvJI", _ZNK7WebCore18StyleSheetContents21isLoadingSubresourcesEv) +STUB( + "fL2+Ro0LtgA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEppEv) +STUB("fL3O02ypZFE", wmemcpy) +STUB("fL3uDzJ1M6g", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE3endEv) +STUB("fLALYinPNQ0", udatpg_getBestPatternWithOptions_67) +STUB("fLBZMOQh-3Y", _ZNSt4_Pad7_LaunchEPP12pthread_attrPP7pthread) +STUB("fLKABiavCrI", _ZN7WebCore9HTMLNames8faceAttrE) +STUB("fLMW2qzfD8g", mono_aot_Sce_Vsh_DiscPlayerjit_code_start) +STUB("fLPyJy7fwFU", _ZNK3sce2np9JsonValue8GetArrayEv) +STUB("fLR5Z8gn3GA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEcvbEv) +STUB( + "fLSoR7HCVCs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEE11release_refEv) STUB("fLTseA7XiWY", sceSystemGestureGetTouchEvents) +STUB( + "fLaM31W2MSY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEEdeEv) +STUB("fLcU5G6Qrjs", atoll) +STUB("fLfh+wZ12vQ", WKPageGetContext) +STUB( + "fLm1gqmaHgU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEC2ERKS7_) +STUB( + "fLv5cnaJ3os", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE3endEv) +STUB("fLyK0swjmdY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEC1ERKS7_) +STUB( + "fM7PqdbIMvA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEC1EPKS8_) +STUB("fMKRZudn+mk", _Wcstate2) STUB("fMP5NHUOaMk", sceSysmoduleIsLoaded) +STUB( + "fMTffrYnlaA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "fMTto3xHOWg", + _ZN7WebCore14SchemeRegistry58registerURLSchemeAsAllowingDatabaseAccessInPrivateBrowsingERKN3WTF6StringE) STUB("fMWCG0Tqofg", sceNpManagerIntAuthGetIdToken) +STUB( + "fMdK-y2rjiU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEE7add_refEv) +STUB("fMfCVl0JvfE", _ZNSt14_Error_objectsIiE15_Generic_objectE) +STUB("fMj0fij3J3k", ucal_getTimeZoneDisplayName_67) +STUB("fMjKOZN0HJM", _ZN3sce7Toolkit2NP15AppSTLAllocatorISbIcSt11char_traitsIcENS2_IcEEEED1Ev) +STUB( + "fMnm+7u2HYM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE5beginEv) +STUB("fMom89mqW3c", __tsan_ignore_thread_begin) +STUB("fMqP2DWsoSE", _ZN7WebCore24CoordinatedGraphicsLayer12replaceChildEPNS_13GraphicsLayerES2_) +STUB("fMqpeDX8Oao", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEC1EPS8_) +STUB( + "fN5-YhxTnxI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEdeEv) +STUB("fN7BnrWdcd0", _ZN7WebCore21InspectorFrontendHostD1Ev) +STUB("fNAsEJUeDYQ", _ZN7WebCore10StorageMap7setItemERKN3WTF6StringES4_RS2_Rb) +STUB("fNDGASdW1DM", _ZN12Mp4Retriever21m_dbFieldInfoInitFlagE) +STUB("fNFOaNVengw", _ZNSt10_Ref_countIN15AbstractStorage14FacebookFolderEE12_Delete_thisEv) +STUB("fNH4tsl7rB8", erfl) +STUB("fNJI5gOrPdc", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle15getPerFranchiseEv) +STUB("fNJKGtX5ncc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V114SearchOperatorEEmmEi) +STUB( + "fNOjZw6Nha8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE5beginEv) +STUB( + "fNS0LF0mC50", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEC2EPS8_) STUB("fNSqFBHAETU", sceOpusCeltEncDestroy) STUB("fNaZ4DbzHAE", sceRtcCompareTick) STUB("fNhrkYpXz0o", scePerfTraceAprNameStop) +STUB( + "fNmvaUJoC68", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB( + "fNobncWZIg4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEE11release_refEv) STUB("fNoviuIwykc", sceKernelAllocateDirectMemoryForApp) +STUB( + "fNr+foUTP9c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEE7add_refEv) STUB("fNssIo-DTx4", sceNetApctlRegisterCallback) +STUB("fNwRTeg8Xvo", delegate_virtual_invoke_13_p) +STUB( + "fO+W2fhxPd4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEEC1ERSA_) +STUB("fO-Rk+-qGjM", _ZN7WebCore10XLinkNames8roleAttrE) +STUB("fO2b1mAdv+w", _ZN9Inspector25RuntimeFrontendDispatcherdaEPv) +STUB( + "fO5hK7HwUzg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEED2Ev) +STUB( + "fO7jct5kiwQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB( + "fO7oP1e3SMA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEED2Ev) +STUB( + "fOBj8FI3CDI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEC1Ev) +STUB( + "fOF0iY80xVs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "fOFvvs6jBmY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEplEm) +STUB("fOKgsyjmsPc", p) +STUB( + "fOM7u4zNWxs", + _ZN3sce2Np9CppWebApi7Matches2V128RequestTemporaryMatchResults20setCompetitiveResultERKNS1_6Common12IntrusivePtrINS3_33RequestTemporaryCompetitiveResultEEE) +STUB( + "fORYPNQFBMM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) STUB("fORZmlh1TQo", sceShellCoreUtilGetUIStatus) +STUB("fOTckLvlMp8", _ZN7WebCore11MathMLNames9colorAttrE) +STUB("fOUbugIEVtw", _ZN7WebCore15GraphicsContext8fillRectERKNS_9FloatRectE) +STUB("fOYZMvOOV1k", _ZN7WebCore17JSDOMGlobalObject15setCurrentEventEPNS_5EventE) +STUB("fObUxigZwzk", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_18GameCustomDataItemEED2Ev) +STUB( + "fOcZ7gO6PUY", + _ZN3sce7Toolkit2NP11UserProfile9Interface11getPlatformEPNS1_9Utilities6FutureIiEEPKNS1_18UserProfileRequestEb) +STUB("fOgBSyLd95A", + _ZN3sce2Np9CppWebApi7Matches2V119RequestInGameRosterC2EPNS1_6Common10LibContextE) +STUB("fOiH3XmYUI0", _ZNK3JSC7ArgList8getSliceEiRS0_) +STUB( + "fOj0fY9WbFE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE3endEv) +STUB("fOloQm44pCA", _ZN7WebCore8SVGNames17feDistantLightTagE) +STUB( + "fOmjFugIfmc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEC1Ev) +STUB("fOnE++USWAA", _ZN7WebCore9ImageData6createEjj) +STUB("fOqDU02-CDk", _ZN7WebCore10JSLocationD1Ev) STUB("fOsE5pTieqY", sceSystemServiceChangeMemoryClockToMultiMediaMode) +STUB("fOuw8FMZwGE", mono_aot_Sce_Vsh_Accessorunwind_info) +STUB("fOvdJJE+ciY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEEC1EPS5_PNS2_10LibContextE) +STUB("fP3rUkRGQRs", _ZNK7WebCore26Matrix3DTransformOperation27isAffectedByTransformOriginEv) +STUB("fP4pXcggBN0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEC2ERKS7_) +STUB( + "fP9MOEqodhU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("fP9jd-9CRGY", _ZN3sce7Toolkit2NP2V28Commerce10Categories8deepCopyERKS4_) +STUB("fPCpOAFfgpQ", il2cpp_class_get_image) +STUB("fPJ3h4AHMkU", WKPageGetPageZoomFactor) +STUB("fPMs0Or6+2w", + _ZN3sce2Np9CppWebApi14SessionManager2V115LocalizedString8fromJsonERKNS_4Json5ValueE) +STUB( + "fPRNtOWUfGc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEC1Ev) +STUB( + "fPbTobTTj0E", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) STUB("fPhymKNvK-A", sceUserServiceGetLoginUserIdList) +STUB( + "fPqHpzI5B90", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEED1Ev) +STUB("fPrLu1YGOaw", ft_mem_alloc) +STUB("fPsDLyeMDWw", _Z27sendIpmiInvokeSyncMethodResiiiiPKN4IPMI10BufferInfoEb) +STUB("fPxypibz2MY", atoi) +STUB("fPzQAKF4Tuc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEED2Ev) +STUB( + "fPzjk6wMNhQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("fQ+SWrQUQBg", _FSincos) +STUB("fQ0g-EwxN54", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V112TicketStatusEEppEi) +STUB( + "fQ3GZb5-iWY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEED1Ev) +STUB( + "fQ7hwPceFzo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEC2Ev) +STUB( + "fQEMqyTsvEw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("fQPYZEYNzLs", _ZN3sce7Toolkit2NP2V211SocialMedia7Request7PhotoFb19MAX_PHOTO_TITLE_LENE) +STUB("fQQTOYSprCA", _ZN25MmsFileUpdaterFsOperationD2Ev) STUB("fQQfP87I7hs", sceNpMatching2RegisterContextCallback) +STUB( + "fQUZzBEZoLs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "fQVnnYFQtqc", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V324ValidationConstraintInfo8fromJsonERKNS_4Json5ValueE) +STUB("fQYpcUzy3zo", vscanf_s) STUB("fQZV+2VLPWI", sceApplicationRaiseExceptionToPid) +STUB("fQb+Xa+xLGM", uprv_strCompare_67) +STUB("fQc6hA552K8", _ZNK3JSC7JSValue14toThisSlowCaseEPNS_9ExecStateENS_8ECMAModeE) +STUB( + "fQh5MaD3OUg", + _ZN9Inspector25TimelineBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "fQiyjpG4Ja4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("fQjii2zz1Vk", _ZN7WebCore4Page12whenUnnestedEON3WTF8FunctionIFvvEEE) +STUB("fQkOy7pA9rs", _ZN3sce7Toolkit2NP19AllocImplementation8allocateEi) +STUB("fQrC-XTAL+I", ucal_open_67) +STUB("fQuzHAHmBXI", mono_aot_register_module) +STUB("fR1b6Fe21KQ", ENGINE_load_builtin_engines) STUB("fR521KIGgb8", sceKernelAioCancelRequest) +STUB("fR7EjbzyBiI", WKBundlePageClearApplicationCacheForOrigin) +STUB( + "fR8gSj9xmeQ", + _ZN9Inspector20DOMBackendDispatcher17requestChildNodesElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "fRBNJ0emf8s", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearchD1Ev) +STUB("fRCDWK73I38", _ZN7WebCore13JSWindowProxy9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("fRFU58H6YbQ", ucache_deleteKey_67) STUB("fRG-JOH5+sI", sceAgcSetUcRegIndirectPatchSetNumRegisters) +STUB("fRKXak5jpuM", utext_hasMetaData_67) +STUB( + "fRLb1x+RsbA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE4sizeEv) +STUB("fRWufXAccuI", _Lock_shared_ptr_spin_lock) +STUB( + "fRZVX9Gpz9A", + _ZN12video_parser13cVideoMetaMP418getMetadataBufSizeENS_12VP_META_TYPEENS_9VP_LANG_eENS_15VP_SEARCH_OPT_eEPj) STUB("fRc1ahQppR4", sceRudpGetSizeWritable) +STUB("fRcAtZp5MOQ", _ZN3JSC23JSModuleNamespaceObjectC1ERNS_2VMEPNS_9StructureE) +STUB( + "fRe+yMILthc", + _ZN9Inspector28DOMDebuggerBackendDispatcher19removeXHRBreakpointElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "fRfI2ZCtdYE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEEC1ERS9_) +STUB( + "fRiM9Hno+H0", + _ZN9Inspector14InjectedScript15arrayFromVectorEON3WTF6VectorIN3JSC7JSValueELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB( + "fRjX6rG1y4k", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC1ERKSC_) +STUB( + "fRjxuR7Ytpw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEEC1Ev) +STUB("fRnqy7U--7c", _ZNK7WebCore16EventListenerMap4findERKN3WTF10AtomStringE) +STUB( + "fRouqUvw4-4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEC1EPS8_) +STUB("fRpvLQylHb0", _ZN9Inspector15RemoteInspectorD2Ev) +STUB("fRrLg3loTI0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEixEm) +STUB("fRufoLtTtQI", _ZN3JSC7Symbols16catchPrivateNameE) STUB("fRurGDbUulc", sceShellCoreUtilGetSmrHddInfoString) +STUB("fS+hymeCOdc", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEEppEi) +STUB("fS2V3AJIwt8", _ZN7WebCore9JSDOMRect14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB( + "fS518v6hXn4", + _ZNK3sce2Np9CppWebApi14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBody10getNatTypeEv) +STUB( + "fS8OHdC4iSo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEmmEi) +STUB("fSAL03+EhtA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V511ContentTypeEEC2EPS6_) +STUB( + "fSENkjnt6sk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("fSFuf3CCfr0", _ZN7WebCore8Settings38setSubpixelAntialiasedLayerTextEnabledEb) +STUB("fSGHm9RjN5U", _ZNK3sce4Json6Object4sizeEv) +STUB("fSHQFh1yyzw", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicketD1Ev) +STUB( + "fSJY0qZksXA", + _ZN7WebCore13JSHTMLElementC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_11HTMLElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "fSLz4zGCpWs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE8capacityEv) +STUB("fSM0IB8qF60", _ZN3JSC8Debugger19handleBreakpointHitEPNS_14JSGlobalObjectERKNS_10BreakpointE) +STUB( + "fSOYn3qfZRM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "fSRXTvQBu1U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE5beginEv) +STUB("fSSA5Ay0wSo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEC1Ev) +STUB("fSZ+gbf8Ekc", __ashrdi3) +STUB("fSb2oQTNrgA", _ZN3sce4Json5ValueC1ERKS1_) +STUB( + "fScL1HLIxl4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEE11release_refEv) +STUB("fSdpGoYfYs8", _ZNSt9_Num_base17has_signaling_NaNE) +STUB( + "fSf3hDqaBc8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("fSkyAVj+C74", _ZN7WebCore11PageOverlayD2Ev) +STUB( + "fSomKm7Hty8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE7reserveEi) +STUB("fSozDPRL9ss", p5_64) +STUB("fSpH8vtVixc", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V111OfferStatusEEppEv) +STUB("fSr+GYBcEk0", mono_aot_Sce_Vsh_ShellUIUtilWrapperjit_code_start) +STUB("fSzgZbD41h0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEptEv) +STUB( + "fT-mWghiwkA", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("fT2haGTnwWE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEED1Ev) +STUB("fTA0Q7hEZv4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEED2Ev) +STUB("fTCzMLWb9eg", _ZN7WebCore15isDraggableLinkERKNS_7ElementE) +STUB("fTFFKjW+rFg", mono_btls_x509_verify_param_set_purpose) STUB("fTKdKh-J61s", sceKernelOpenInternal) +STUB("fTM1ueCvsf8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEC2ERKS7_) +STUB( + "fTR1Ax1g5gQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE6resizeEj) +STUB("fTWrVJcXr44", WKGetTypeID) STUB("fTe3RHtIVWM", ScePsmMonoAssemblyGetImage) +STUB( + "fTf9bOm94Ig", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEC1Ev) +STUB("fTfAEGjfLoQ", _ZNK15AbstractStorage13TwitterFolder10GetServiceEv) +STUB("fThSexKbz7o", GCC_except_table178) +STUB("fTmhvzraShY", _ZNK3sce2Np9CppWebApi14SessionManager2V118MatchmakingForRead10getOfferIdEv) STUB("fTx66l5iWIA", sceKernelFsync) +STUB( + "fTxXvCVeTZU", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi27getJoinedGameSessionsByUserEiRKNS4_38ParameterToGetJoinedGameSessionsByUserERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_41GetUsersAccountIdGameSessionsResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB( + "fTzo3ejCh4o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "fU1IC0MWhkU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEE5resetEPS9_) +STUB( + "fU3lCWem2qM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEppEi) STUB("fU43mJUgKcM", sceSaveDataDeleteCloudData) STUB("fU5fcZt5QEg", sceFsCreatePfsTrophyDataImage) STUB("fUDokJvA7l0", sceVideoCoreInterfaceSubmitCanvases) +STUB("fUE8kIgA9xg", mono_aot_Sce_PlayStation_Imemethod_addresses) +STUB("fUEoU29MwzA", jpeg_has_multiple_scans) +STUB( + "fUHIL9XJ5SQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE5beginEv) STUB("fUJC7P8E1fM", sceCesMbcToUtf32le) STUB("fUJRLEbJOuQ", sceKernelGetProcessName) +STUB("fUK1voqbPWU", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEEptEv) +STUB("fUKL6ZhILWM", DES_ecb_encrypt) STUB("fUKhVPe60cg", sceUpsrvUpdateDoUpdateAsync) +STUB( + "fUKy7vvnhNE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEED2Ev) +STUB("fURNsl9Mw40", WKViewSyncCoordinatedGraphicsState) +STUB("fUXj4GBxyHs", + _ZN15AbstractStorage14YoutubeStorage13GetRootFolderEPSt10shared_ptrINS_6FolderEE) +STUB( + "fUY7MWKuizQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEC2EPKS8_) +STUB("fUbgKfn9cPw", _ZN3sce7Toolkit2NP2V210Tournament7Request12SearchEventsC2Ev) +STUB( + "fUfMvDbRWPo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE10setContextEPNS2_10LibContextE) +STUB( + "fUiaUHE7YFM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "fUiy+3JCZLI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEED1Ev) +STUB("fUkD2T+tUSo", _ZNK3JSC8Debugger23needsExceptionCallbacksEv) +STUB( + "fUs6e4DCwfA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("fUyemPZk2o8", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE5beginEv) +STUB("fV+Q5a6p+zQ", _ZN3sce2np9HttpTrans12SkipResponseEPNS0_6HandleE) +STUB("fV2xHER+bKE", wcscoll) +STUB("fVA8PPlB+R4", mono_aot_Sce_Vsh_Sl2_Sl2Commonunbox_trampoline_addresses) +STUB("fVEfrPXlwRc", _ZN7WebCore33signedPublicKeyAndChallengeStringEjRKN3WTF6StringERKNS_3URLE) +STUB("fVGDgMU9zbw", _ZN7WebCore15clearBackingMapERN3JSC14JSGlobalObjectERNS0_8JSObjectE) +STUB("fVJ6N3RQw9k", utrie2_openDummy_67) +STUB("fVKklM9oYE4", mono_aot_System_Dataunbox_trampoline_addresses) +STUB( + "fVOXA0TpbwU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE5beginEv) +STUB("fVOcX2+6qiI", _ZN3WTF9BitVector11excludeSlowERKS0_) +STUB( + "fVP83IMtV2Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEC2EPS7_PFvS9_EPNS2_10LibContextE) +STUB("fVSFIM1pmsk", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13FriendsOfUserEE8allocateEmPKv) +STUB("fVUuJBP8CTs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEEptEv) +STUB( + "fVWwbn2iCWE", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot13isInitializedEv) +STUB( + "fVZsAwEnV5I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("fVbCGCyFf-c", _ZN7WebCore10FileSystem14MappedFileDataC2ERKN3WTF6StringERb) +STUB("fVdGkixLb0U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEE3getEv) +STUB( + "fVdrzQCPUEs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEEC2Ev) +STUB( + "fVlbExmz5j4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("fVldzE4u75c", _ZN3JSC7Symbols35GeneratorResumeModeThrowPrivateNameE) +STUB( + "fVmatjxZs38", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEC1EPKS8_) +STUB("fVpuh+UJ4Qo", glIsRenderbuffer) +STUB( + "fVqJ0BnCTiU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE10setContextEPNS2_10LibContextE) STUB("fVvocpq4mG4", sceNpTusGetMultiUserVariableAVUser) +STUB("fVxIf2t2b1w", ugender_getListGender_67) +STUB("fVxvzVdJxVc", _ZNK3sce2Np9CppWebApi14SessionManager2V16Friend13onlineIdIsSetEv) +STUB( + "fVzpbuZtDyw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEE7get_refEv) +STUB("fW-TpZ6MeWQ", _ZN3JSC7Symbols21Int16ArrayPrivateNameE) +STUB( + "fW1zaY7-bqc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEC1EPNS2_10LibContextE) +STUB( + "fW23BiUu42E", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEC1EPNS2_10LibContextE) +STUB("fW4iwMaAUV0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12BandwithInfoEE3getEv) +STUB("fWAyLTr1x1g", mono_aot_System_Collectionsunbox_trampolines) +STUB( + "fWI-oKz39G0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEixEm) +STUB("fWOPGmY5Kis", + _ZN3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectator12setAccountIdERKm) +STUB("fWRDnGvNHEc", mono_aot_System_Netplt_end) +STUB("fWS+J774W-8", + _ZN7WebCore26PresentationOrderSampleMap30findSampleWithPresentationTimeERKN3WTF9MediaTimeE) +STUB("fWTWKjVk-xg", _ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEE5clearEv) +STUB("fWUVXfZuU48", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEC1ERKS7_) +STUB( + "fWVEeZdbHDw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE3endEv) +STUB("fWhRm5PSGKM", _ZNK3sce2np13JsonArrayImpl13itemArrayInitEPNS1_9ItemArrayE) +STUB("fWjmxGC8oyk", rgctx_fetch_trampoline_mrgctx_86_p) +STUB( + "fWkzlAammLk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEEC1Ev) +STUB("fWlLNa2Mxuw", _ZN7WebCore24CoordinatedGraphicsLayer17didChangeGeometryEv) +STUB( + "fWreRmmfrt4", + _ZN3sce2Np9CppWebApi14SessionManager2V129GetPlayerSessionsResponseBodyC1EPNS1_6Common10LibContextE) +STUB("fWsMBQSxmSM", WKPreferencesGetCompositingBordersVisible) +STUB("fWuQSVGOivA", _ZNSt10moneypunctIwLb1EED0Ev) +STUB( + "fWukkMZC4WI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE21intrusive_ptr_sub_refEPS9_) STUB("fX+iM4sZIl0", sceNpAsmClientGetNpComInfo2WithHmac) +STUB( + "fX-l7XuYf3U", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEEC2Ev) STUB("fX-zOOefbbs", sceVdecswReleaseComputeQueue) +STUB("fX0+oza0hpA", + _ZN7WebCore15JSSVGSVGElement15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB("fX0IBD-7oNQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEE7get_refEv) +STUB("fX19V6gypro", monoeg_g_list_free) +STUB( + "fX58WX7qSbY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("fX5use90CTk", ucnv_getPlatform_67) +STUB("fX6MVpfiSTo", _ZN7bmalloc9Scavenger15didStartGrowingEv) STUB("fX9k++TzuQk", sceVideoOutSysSetZoomBuffers) +STUB("fXCPTDS0tD0", _LQuad) STUB("fXCSkDTpJFg", sceVideoOutDeleteSetModeEvent) +STUB( + "fXEa97SfYL4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEE11get_deleterEv) +STUB("fXHoEfDzLz0", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchStatusD2Ev) +STUB("fXLIjIURup4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEEdeEv) +STUB("fXMdZjI5v60", Java_com_sony_gemstack_io_factories_jar_JarEntryInputStream_getProxy) STUB("fXODRwVnRe4", sceEditMp4Edit) +STUB("fXUuZEw7C24", _ZNKSt8numpunctIcE8truenameEv) +STUB("fXWK5vOFkeI", _ZN7WebCore6Path2DC1Ev) +STUB("fXY2I1W0WwI", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessionsC1Ev) +STUB( + "fXaHFTpjpMQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEC1Ev) +STUB( + "fXdxKu2Bb4A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE6resizeEj) +STUB("fXfwtDBVY1s", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament16RegisteredRosterEE12deepCopyFromERS7_) +STUB("fXiQLqGhgls", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110ResultTypeEEppEv) +STUB("fXmilqjYipI", _ZN9Inspector14InspectorAgentdlEPv) +STUB("fXqYZkFlUeo", WKDatabaseManagerGetDatabaseDetailsKey) +STUB( + "fY0JtvGVPLA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEeqERKS9_) +STUB( + "fY1Iz9keSiM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEmmEi) +STUB("fY219R6NYxw", _ZN3sce7Toolkit2NP2V26Trophy16UnlockedTrophiesaSERKS4_) STUB("fY3QqeNkF8k", sceNpWebApi2PushEventRegisterCallback) STUB("fY4XQoA20i8", sceNpIntIsOnlineIdString) +STUB( + "fY9tfNDIdS0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "fYAx46KBNKM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE6resizeEj) +STUB("fYGnjIapT9g", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE8pushBackERKS6_) +STUB("fYKLmqhQCks", mono_aot_I18N_Otherunbox_trampoline_addresses) +STUB( + "fYMJntXk7ZU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "fYNANDSmiRA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "fYPW6rJM4Lw", + _ZN9Inspector22AuditBackendDispatcher6createERNS_17BackendDispatcherEPNS_29AuditBackendDispatcherHandlerE) +STUB( + "fYWEBIioSiE", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE11getResponseERS8_) STUB("fYWVVDKZOCk", sceVideoOutSysAddSetModeEvent2) STUB("fYaW4Ynxyzs", sceNpTrophy2SystemCreateContext) +STUB("fYalC7zPwNE", rgctx_fetch_trampoline_rgctx_37) STUB("fYapWA9xVmA", sceNpTrophy2AbortHandle) +STUB( + "fYkGOK3TToE", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser7getsortEv) +STUB( + "fYpCSXroWqs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEC2ERS7_) +STUB( + "fYqakKX3Bkc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEC1Ev) +STUB("fYr7Ahl-vNA", _ZN3sce2np13NpTitleSecretC1ERKS1_) +STUB("fYuIsaHHXfY", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12unsetString9Ev) +STUB( + "fYvtJh-wpms", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE7popBackEv) STUB("fZ3rCadtmXo", sceMbusDumpHandleStatusInfo) +STUB( + "fZ46IM6E6jo", + _ZN8meta_gen11MsvPromoter28setKeyValue_TBLV_LicenseTypeENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB("fZ5o5ZBaz4U", _ZNK7WebCore14ScrollableArea14scrollAnimatorEv) +STUB("fZ7Bujs5NSg", __tsan_func_exit) +STUB("fZASv0EgXdI", _ZN7WebCore8PositionC2EPNS_4NodeEjNS0_25LegacyEditingPositionFlagE) +STUB("fZErMMgXHH4", _ZN7WebCore9GLContext18makeContextCurrentEv) STUB("fZFnCKpGxv0", sceFsISSchedResultToSlot) +STUB("fZH2EftoX3w", tbuf) STUB("fZJQzFK4Gv4", sceVideoRecordingGetStatus) +STUB("fZJr2OF+KGw", tls_write) +STUB("fZNzu8gmDDg", mono_aot_Mono_Cairojit_got) +STUB("fZOeZIOEmLw", send) +STUB("fZP8WImnYPk", + _ZNK7WebCore23ScaleTransformOperation5applyERNS_20TransformationMatrixERKNS_9FloatSizeE) STUB("fZPHZX6PirY", sceClHttpCreateConnectionWithURL) +STUB("fZPmoavbyp4", _ZNK7WebCore9TreeScope16getElementByNameERKN3WTF10AtomStringE) STUB("fZShld2PQ7w", sceNpCondWait) +STUB("fZbmrDb2Wl4", _ZN7WebCore15SQLiteStatement5resetEv) +STUB("fZeo0Mk6YP0", _ZN3WTF6String6numberEx) STUB("fZgBeiGqE+c", sceVideoOutSysCursorSetPosition) STUB("fZjp7AUc+DY", sceFiosGetThreadDefaultOpAttr) STUB("fZo48un7LK4", sceSystemServiceParamGetInt) +STUB("fZpa8UpFGjo", mono_debug_symfile_lookup_location) +STUB("fZtIw2Exp58", _ZN7WebCore22EmptyFrameLoaderClient31dispatchDidDispatchOnloadEventsEv) +STUB( + "fZx39X6Y+Qs", + _ZN3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyC1EPNS1_6Common10LibContextE) +STUB( + "fZyTbnNkkDQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEE3getEv) STUB("fZzDm3bsMDo", sceDataTransferRequestSearchPS4) +STUB( + "fa1iZkRD8lw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE5emptyEv) +STUB("fa4XXO3Q7B8", WKPreferencesSetPrivateBrowsingEnabled) +STUB( + "fa7-J5llFa8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE7popBackEv) +STUB("fa7lp6AgDpg", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110PlayerTypeEEdeEv) +STUB( + "fa7w0z2blOo", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12getInteger10Ev) +STUB( + "fa8XwJmDQ-0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEcvbEv) +STUB( + "fa99zPMSk-A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEmmEv) +STUB( + "faB6pA0b7Gg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE5emptyEv) +STUB( + "faFn1OdjAEU", + _ZN7WebCore9TextEvent13initTextEventERKN3WTF10AtomStringEbbONS1_6RefPtrINS_11WindowProxyENS1_13DumbPtrTraitsIS6_EEEERKNS1_6StringE) +STUB( + "faJW1r3Q-Ts", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEppEi) +STUB("faLX3UugvMA", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfoC1Ev) +STUB( + "faRQmY82CHA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEED2Ev) +STUB( + "faTxR3AfiOQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEEaSERSA_) +STUB( + "faUnoCbtJGE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEE7add_refEv) +STUB("faa9PrpwmYU", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setBoolean1ERKb) +STUB("fac6+FPZ3Fs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEC2ERKS7_) +STUB("faebaI-v3ys", _ZN3sce2np14JsonObjectImplD0Ev) +STUB("fajGVxixYQg", + _ZNK7WebCore22EmptyFrameLoaderClient21fileDoesNotExistErrorERKNS_16ResourceResponseE) +STUB( + "famnZ1NdM5k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE6resizeEj) +STUB("fanowl2-O0k", _ZN12video_parser5vpcom8datetime8DateTime19ParseSQLiteDateTimeEPKc) +STUB("faoz6RM7V1A", _ZN3JSC8JSObject12heapSnapshotEPNS_6JSCellERNS_19HeapSnapshotBuilderE) +STUB( + "fas5czbYm3A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEEC2ERKSA_) +STUB( + "faw31LB91O4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEmmEi) STUB("faw77-pEBmU", sceFontStyleFrameSetEffectWeight) +STUB("faxKS9gtHr0", waitDecidBootEvf) +STUB("fb4sFIKvrIQ", __wrap_clock_gettime) +STUB( + "fb6gHjXHMRI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE5beginEv) +STUB( + "fbA4gQCv0IA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE4sizeEv) +STUB( + "fbAyec-WFdE", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeaderC1ERS5_) +STUB("fbBVwJuoZPI", _ZNK7WebCore12ChromeClient20graphicsLayerFactoryEv) STUB("fbCC0yo2pVQ", sceUserServiceGetFaceRecognitionRegisterCount) STUB("fbEVqbjliY4", sceNpSnsTwitchDialogGetStatus) +STUB("fbM-jZJ1h+c", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEEdeEv) +STUB( + "fbPEnJvrySw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE8capacityEv) +STUB("fbQ464WagZM", _ZN3sce7Toolkit2NP2V212EventsClient11EventInGameaSERKS4_) +STUB("fbRv4M+XzL8", FT_Get_Sfnt_Name_Count) +STUB( + "fbU+3lGWAj8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEE3getEv) +STUB("fbWXK9CB2As", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_28ActivityFeedSharedVideoStoryEE10deallocateEPS3_m) +STUB( + "fbcAA+xkavE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEneERKS9_) +STUB("fbcChE1Aoj0", _ZN7WebCore11DisplayList15DrawNativeImageD0Ev) STUB("fbgiBYu6Q44", sceVideoNativeExtEssential_Finalize) +STUB( + "fbhtFyQgJGk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB( + "fbiKeCL8OCE", + _ZN9Inspector21InspectorRuntimeAgent36getRuntimeTypesForVariablesAtOffsetsERN3WTF6StringERKNS1_8JSONImpl5ArrayERNS1_6RefPtrINS4_7ArrayOfINS_8Protocol7Runtime15TypeDescriptionEEENS1_13DumbPtrTraitsISD_EEEE) +STUB("fbiTO9gjGSE", glSamplerParameterf) STUB("fbigNQiZpm0", scePlayGoDialogClose) +STUB("fblfzylXZPo", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody12getVariablesEv) +STUB("fbnc-mCtBTE", _ZN7WebCore8SVGNames19text_decorationAttrE) +STUB( + "fbvhAaRux+0", + _ZN9Inspector24RuntimeBackendDispatcher10getPreviewElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "fbvqlpwUqCk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEC2Ev) +STUB("fc+ZCcOOA9U", _ZN3sce7Toolkit2NP15AppSTLAllocatorI16SceNpTusVariableE9constructEPS3_RKS3_) +STUB( + "fc1H0su27hk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEppEi) +STUB( + "fc4PI+u4its", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEC2Ev) +STUB( + "fc4lOMtjooI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEixEm) +STUB("fc5A-BGnNV4", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEEptEv) +STUB("fc8iiT9GzxY", __tsan_atomic8_fetch_and) +STUB("fcAQd5t1nwA", mono_aot_Sce_Vsh_AutoMounterWrapperunbox_trampoline_addresses) +STUB( + "fcAub+Gijg8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE10setContextEPNS2_10LibContextE) STUB("fcCwKpi4CbU", sceNpTusTryAndSetVariableForCrossSaveVUser) +STUB("fcDGYTk-5Aw", + _ZNSt15basic_streambufIcSt11char_traitsIcEE7seekoffElNSt5_IosbIiE8_SeekdirENS4_9_OpenmodeE) STUB("fcDt18r-ibY", sceCompositorGetDummyAddress) +STUB( + "fcHaPBlG4rI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE10setContextEPNS2_10LibContextE) +STUB("fcJEXHwyJIs", Java_com_sony_bdjstack_org_bluray_ti_DiscManagerImpl_init) +STUB("fcR81+dZhRE", ucnv_cbFromUWriteUChars_67) +STUB("fcSlD2VtHxY", _ZN7WebCore13QualifiedNameC1ERKN3WTF10AtomStringES4_S4_) +STUB( + "fcYE0RtHPDc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "fcZJrw0OnMI", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsersC2ERS5_) +STUB( + "fcc6CrhYVW4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEE11get_deleterEv) +STUB( + "fccfR5i-Dx4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE8copyFromERKS9_) +STUB( + "fcgKkJ5CRZ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEEC1Ev) +STUB("fckG3H1m2To", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110PlayerTypeEEC2EPS6_) +STUB( + "fcnM7N9hbY8", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser10initializeEPNS1_6Common10LibContextEPKc) +STUB( + "fcqFKnxc3yI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEE7add_refEv) +STUB("fcs3yRIkEVM", _ZN23sceMetadataReaderWriter20unregisterParserInfoEv) +STUB("fcv2sicJFfs", mono_aot_Sce_Vsh_SQLitejit_code_start) +STUB("fczC6fqKCAo", _ZN7WebCore10JSLocationC1ERKS0_) +STUB("fd+grYAEph0", _ZN3sce2np10Cancelable10LockCancelEPKciS3_) +STUB("fd0deLslWTs", _ZN7WebCore15StringTruncator13rightTruncateERKN3WTF6StringEfRKNS_11FontCascadeE) +STUB( + "fd2W0V42U78", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession22setDisableSystemUiMenuERKNS1_6Common6VectorINS5_6StringEEE) +STUB( + "fdA6jvkaI04", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE7popBackEv) +STUB("fdDaJ9MjJtU", _ZN7WebCore8Document14implementationEv) +STUB("fdFUsLHjp2M", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariableD2Ev) +STUB("fdH810n2Y-I", _ZNK7WebCore10ScrollView23rootViewToTotalContentsERKNS_8IntPointE) +STUB("fdIBRwT9gYA", _Z18trySendIpmiMessageiPKvm) +STUB("fdIl7SI4lkU", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersD2Ev) +STUB("fdK56Fz7xGQ", _ZN7WebCore3URL21setFragmentIdentifierEN3WTF10StringViewE) +STUB( + "fdLw-aLzNlA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE3endEv) +STUB( + "fdar25Qj5hE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEC1ERS7_) +STUB( + "fdd4D5SSjWc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEneERKS9_) +STUB("fdeEvX4X2W8", + _ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse8fromJsonERKNS_4Json5ValueE) +STUB("fdm6mwInm0E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEptEv) +STUB("fdwMUgaSJ7A", _ZN3sce2Np9CppWebApi7Matches2V118RequestTeamResults8setScoreERKd) +STUB("fe-BQU7Mx7Q", _ZN7WebCore22EmptyFrameLoaderClient26didReplaceMultipartContentEv) +STUB( + "fe0ATU2oDiE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEmmEi) +STUB("fe0vzc9LwjA", _ZN3JSC7Symbols50webAssemblyInstantiateStreamingInternalPrivateNameE) +STUB( + "fe58fhUMBdg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEneERKS9_) +STUB( + "fe9Ay-jc8TU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("fe9W3bGa57g", rgctx_fetch_trampoline_rgctx_38_p) +STUB( + "feDm3UWdGHg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE6resizeEj) +STUB("feHzFwdx0oU", _ZN3sce2np13JsonDocParser4InitEPK7JsonDef) +STUB( + "feIyVDw9yF4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) STUB("feMFMNgm+o0", sceKeyboardPadEmulateClose) +STUB("feRK21LbWio", _ZNK7WebCore19ResourceRequestBase6isNullEv) +STUB("feSywBTpZHk", _ZNK7WebCore20ResourceResponseBase32cacheControlStaleWhileRevalidateEv) +STUB( + "feUn5ozugZ4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE3endEv) +STUB( + "feWxaYJIyno", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEixEm) +STUB("feXYOdrWbuM", utext_openUnicodeString_67) +STUB( + "feXyCyytvrE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEEC2ERKSA_) +STUB( + "feYbY9JEvh4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEeqERKS9_) +STUB("feYjEYCSKRU", _ZN3sce7Toolkit2NP2V210Tournament5Event5resetEv) +STUB("feaB+bz3g60", _ZNK7WebCore27AuthenticationChallengeBase5errorEv) +STUB( + "febyjEQSfn8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE8copyFromERKS9_) +STUB( + "feck3i1FOo0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEcvbEv) +STUB("feeXsX5a05U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEED2Ev) +STUB("fef-SprJ7Fk", _ZN7WebCore9CookieJar12setRawCookieERKNS_8DocumentERKNS_6CookieE) +STUB( + "fef0ftqQSs4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEC1Ev) +STUB("fefNFGkTzzs", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEED2Ev) +STUB("fejyIlCPzIA", _ZN9Inspector25ConsoleFrontendDispatchernwEm) STUB("feqktbQD1eo", sceUserServiceSetCreatedVersion) +STUB("fesoNJCZpSA", eglChooseConfig) +STUB("fevBhlFwazQ", mono_gc_wbarrier_generic_store_atomic) +STUB( + "fez4qkTZ0YU", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi27ParameterToLeaveGameSession12getsessionIdEv) +STUB( + "ff2u4mro4Zg", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "ffCBrykU1ks", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE6resizeEj) +STUB("ffF8iM76-6k", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_18GameCustomDataItemEEC2Ev) +STUB( + "ffGrcUTXZIA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) STUB("ffInidSqRss", sceRegMgrSetStr) +STUB( + "ffJhSYp+bmM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V115VariableFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_8VariableEEE) +STUB("ffK8skU7O+8", _ZN3JSC2VM27injectedScriptHostSpaceSlowEv) +STUB("ffNVq81OG9I", WKPageEndPrinting) +STUB( + "ffPgSJenjX8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE7popBackEv) +STUB( + "ffTKbhhiORE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEaSERSA_) +STUB("ffX2Foj3IJE", mono_aot_ReactNative_Modules_Vsh_Gct_Telemetry2unbox_trampoline_addresses) +STUB("ffXfMMfBRK4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEE7add_refEv) +STUB( + "ffYtkk40ARs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEixEm) +STUB( + "ffaZvhe-jG8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("fffwELXNVFA", fprintf) +STUB( + "ffhPlW+s5B8", + _ZN8meta_gen11MsvPromoter28setKeyValue_TBLI_AspectRatioENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti) +STUB("ffnhh0HcxJ4", + _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecl) STUB("ffrNQOshows", sceGnmComputeWaitOnAddress) +STUB("ffrks25vLYU", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_23NpIdListRankInformationEE3getEv) +STUB("ffv1pAwqjMs", _ZN23sceMetadataReaderWriter13isCorrectTypeEPNS_5ValueE) +STUB("ffv6I7TFVP4", glGetVertexAttribPointerv) +STUB( + "ffy2JLKV+Cg", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUserC2Ev) +STUB("ffyA0M5dj6g", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament7BracketEEC2Ev) +STUB( + "ffyKwLWlJ6Q", + _ZN3sce7Toolkit2NP2V28Matching15sendRoomMessageERKNS3_7Request15SendRoomMessageEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("fg0HFN49oxg", _ZNK7WebCore11MediaPlayer16canSaveMediaDataEv) STUB("fgHOZo7gPyA", sceAvSettingGetHdmiRawEdid) STUB("fgIsQ10xYVA", sceKernelChmod) STUB("fgMwgvfURDA", sceValidationGpuClearState) +STUB("fgXJvOSrqfg", _Fetch_xor_seq_cst_2) +STUB("fgZdoXXPJ-g", monoeg_g_list_remove_link) STUB("fga6Ugd-VPo", sceFontGraphicsDrawRectangleShape) +STUB( + "fge0Yvch1hU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEEC2EPS8_PNS2_10LibContextE) +STUB( + "fgenLdM8VTY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEC2Ev) +STUB( + "fggIaNzXFg4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("fgil7LhXCF0", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_26ActivityFeedCondensedStoryEEC2ERKS4_) +STUB("fgkjRJ-x844", JVM_Connect) +STUB( + "fgljYwrNc0s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE21intrusive_ptr_add_refEPS9_) +STUB("fgqfPqcWPM0", _ZNK7WebCore12NamedNodeMap12getNamedItemERKN3WTF10AtomStringE) +STUB( + "fgr2Svatz2s", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEdeEv) STUB("fgtXCeaburA", sceNpTrophy2SystemRegisterTitleSyncedCallback) +STUB("fgtlLHWAf2M", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEEdeEv) +STUB("fgvUpKBEQGw", + _ZNK3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayer13getPlayerNameEv) STUB("fgxnMeTNUtY", sceKernelGetProcessTimeCounter) +STUB("fgyegiclUWQ", _ZN7WebCore11MathMLNames12encodingAttrE) +STUB("fh+OX5Gf-BA", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth8AuthCodeEE3getEv) +STUB("fh+dQl4cXoU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEC2ERS7_) STUB("fh09rY0ltb8", sceUpsrvUpdateCheckDoCheckSystemForSettings) +STUB( + "fh2pWVkPsc0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEC2ERKS7_) +STUB("fh54IRxGBUQ", __negvdi2) +STUB("fh8+UVDsvgc", _ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEEixEm) +STUB("fhHAF+7kH08", _ZN7WebCore24CoordinatedGraphicsLayer29computePositionRelativeToBaseEv) STUB("fhJ5uKzcn0w", sceNpCreateThread) STUB("fhKwCVVj9nk", sceGnmUnregisterOwnerAndResources) +STUB("fhRcPQVoEqM", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId9terminateEv) +STUB( + "fhT6Ff0uR-w", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEdeEv) +STUB("fhY0yEj2+uo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEEC2Ev) +STUB("fhYkRrmrL54", + _ZN3JSC19HeapSnapshotBuilder22appendVariableNameEdgeEPNS_6JSCellES2_PN3WTF17UniquedStringImplE) +STUB("fhdcvOGA4L0", RecvDeciHeader) +STUB( + "fhdkOS-fOAw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("fheAuuObwDc", ucol_getMaxVariable_67) +STUB("fheQ1wULXEs", JVM_IsSilentCompiler) +STUB( + "fhjrNyOR10Y", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE5emptyEv) +STUB( + "fhpt7NI+6bc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEdeEv) +STUB("fhw2WyZ7Rlw", mono_aot_platformmethod_addresses) +STUB("fhwMvdjy0+U", _ZN7WebCore8SVGNames8glyphTagE) +STUB("fi+JX2wq2XU", get_sdk_compiled_version) +STUB( + "fi-Nyigvu4g", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE5emptyEv) +STUB("fi0TIYERtsY", + _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequestC1EPNS1_6Common10LibContextE) +STUB("fi11ETDjPOw", _ZN3sce2Np9CppWebApi14SessionManager2V118LeaderWithOnlineIdD1Ev) +STUB("fi17Swuc348", WKPreferencesGetAsynchronousPluginInitializationEnabledForAllPlugins) +STUB("fi2jsXhrBTI", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container10unsetLabelEv) +STUB("fi7yiXwXPJ4", _ZNK3sce7Toolkit2NP9NpTitleIdltERKS2_) +STUB( + "fiDIU+pVQ9A", + _ZN12video_parser13cVideoMetaVWG28_createInternalThumbnailInfoEPNS_13cVideoMetaMP418VpThumbnailInfoMP4E) STUB("fiDNFolmOCs", sceClHttpSetRedirectCallback) +STUB("fiEa0s6Bbn4", _ZN7WebCore9HTMLNames12onresizeAttrE) +STUB( + "fiIpjn38uJ0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEEC1ERKS8_) +STUB( + "fiM-PGnzZ7Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEC2EPS6_PNS2_10LibContextE) +STUB("fiMjzmik0WQ", c12) +STUB("fiOgmWkP+Xc", fmax) +STUB( + "fiPX7X+ytH4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEEC1Ev) +STUB( + "fiSF8YNAg-8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEppEv) +STUB( + "fiTujmSJqIY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE6resizeEj) +STUB("fiUS-mQ9Ue4", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE7popBackEv) STUB("fiVAYOf2PZE", sceDebugStopOnDLLoad) +STUB("fiVzPKkPWZU", _ZNK7WebCore22HTMLFormControlElement12autofillDataEv) +STUB("fiX2RRLQhak", uscript_getScript) +STUB( + "fiiAydJ4YYY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEneERKS9_) +STUB("fiiNDnNBKVY", localtime_s) +STUB( + "fij0bZm-4YA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEmmEi) +STUB("fijRj5P5u5k", _ZN7WebCore9HTMLNames26x_apple_pdf_annotationAttrE) +STUB("fikio+oFpEs", WKPageClearLoadedSubresourceDomains) +STUB("fimORKx4RDg", _ZN3sce2np4Time20GetDebugNetworkClockEPS1_) +STUB("fimf0rLYE0c", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEdeEv) +STUB( + "fiot+A7i3tQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEEC1ERKSB_) +STUB("fipyDzrYIRw", _ZN3sce7Toolkit2NP2V24Core24NpToolkitMemoryPoolStatsD2Ev) +STUB( + "fiqFh10EJJg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEC2Ev) +STUB("fj9jSr9TUDk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEC1ERKS7_) +STUB("fjExfciM3XA", _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_9DOMMatrixE) +STUB("fjG5plxblj8", _ZNSt8ios_base7failureD2Ev) +STUB("fjHAU8OSaW8", _ZNSt7collateIwEC1EPKcm) +STUB("fjHun3NwbF4", il2cpp_property_get_set_method) +STUB("fjI2ddUGZZs", _ZNSt14numeric_limitsIdE12max_exponentE) STUB("fjJ4xXM+3Tw", sceNpManagerIntGetAccountCountryA) +STUB("fjJhvPeQStA", delegate_virtual_invoke_imt_9_p) +STUB( + "fjN2ubr20YI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEE11release_refEv) STUB("fjN6NQHhK8k", scePthreadSemTimedwait) +STUB("fjPZRvqbRj8", _ZL12_new_nothrow) STUB("fjV7C8H0Y8k", sceNpSnsFacebookDialogUpdateStatus) +STUB("fjbBk89tXmQ", _free) +STUB("fje5RYUa+2g", SSL_isSessionSSL) +STUB( + "fje9cpnZHdk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEEC2Ev) +STUB( + "fjgJo-PAXnI", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEEiRNS2_10LibContextEPT_m) +STUB( + "fjjIDRQ42qE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE5beginEv) +STUB("fjni7nkqJ4M", _ZTVN10__cxxabiv116__enum_type_infoE) +STUB("fjnxuk9ucsE", _ZNSt12placeholders2_4E) +STUB( + "fjqRvNF8jw8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody8fromJsonERKNS_4Json5ValueE) +STUB( + "fjqp+YYepIc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEC1EPS6_PNS2_10LibContextE) +STUB( + "fjt+f0XkiVE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEE11get_deleterEv) +STUB("fjt0EbXejro", _ZN3sce2np12NpHttpClient4InitEi) +STUB( + "fjx8TWGUrQM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "fk2ENoxLyks", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEEaSERSA_) +STUB("fk8HYv0zqns", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEEC1ERKS7_) +STUB("fk9ASrlQKDM", Java_java_net_PlainSocketImpl_socketSendUrgentData) +STUB("fk9IJZ-BpN8", _ZN7WebCore14JSWebAnimation9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "fkAF5QJPXEU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEmmEi) +STUB( + "fkCdUTpWNFU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEE11get_deleterEv) +STUB("fkDoZlt3FN4", _ZN12video_parser14cVideoOperator18getRelatedFileNameEiPPc) STUB("fkE41yBXT58", sceCesUtf16StrToIso2022Str) +STUB("fkFGlPdquqI", _ZNSt6locale7_Locimp9_MakexlocERKSt8_LocinfoiPS0_PKS_) +STUB( + "fkJJ5zCYrgc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEC1Ev) +STUB("fkKkBR8BrAM", _ZNK7WebCore15VisiblePosition14localCaretRectERPNS_12RenderObjectE) +STUB("fkN7M+xbnhU", _ZN7WebCore15JSSVGSVGElement6s_infoE) +STUB("fkNJrxbUFCw", _ZN3WTF8JSONImpl5ValueD1Ev) +STUB("fkPacJYzO6g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEixEm) +STUB("fkPuq-1U404", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead18setNonPsnSupportedERKb) STUB("fkUIszBPm4g", sceNpIntRegisterCheckCallback) +STUB( + "fkUKKs-QrJ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEC1EPNS2_10LibContextE) +STUB( + "fkW202pJSak", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEaSERS7_) +STUB("fkZ3x8POhm4", JVM_CurrentThread) STUB("fkZE7Hup2ro", sceCameraAudioGetData) +STUB("fkaBx1FOo+g", _ZN3JSC16clearArrayMemsetEPdj) +STUB( + "fkbMjEdMrg4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEC2EPKS8_) STUB("fkcM5YcqjV8", sceShellCoreUtilActivateGetStatus) +STUB("fkhyGY5dnLo", + _ZN3sce2np9HttpTrans4InitEPNS0_12HttpTemplateEPNS0_18HttpConnectionPoolEiPKcS7_tS7_m) +STUB( + "fkkfKkXCwLA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEaSERKS9_) +STUB( + "fkonbUWvxxc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEdeEv) +STUB("fksEUwl6bJ8", _ZN9Inspector33AnimationBackendDispatcherHandlerD1Ev) +STUB( + "fkswEcBS4bk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEaSERKS9_) +STUB( + "fkygF9T3pDg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEaSERS7_) +STUB("fl+SfiowG5M", WKBundlePageUninstallPageOverlayWithAnimation) +STUB("fl0Ob2AccBI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEaSERS7_) STUB("fl1eoDnwQ4s", sceDiscMapGetPackageSize) STUB("fl3roYs7F9U", sceUsbStorageRequestUnmap) +STUB( + "fl7L3aMGYwg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEC1EPS6_PNS2_10LibContextE) +STUB("flDHtOpBzqw", uset_serialize_67) +STUB( + "flDplEX+hwY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE21intrusive_ptr_sub_refEPS9_) +STUB("flK5tWZaYPg", unum_parseToUFormattable_67) +STUB("flLt+xWYloc", WKBundleIsProcessingUserGesture) +STUB("flMkyOcNc+k", _ZN7WebCore15FocusController23relinquishFocusToChromeENS_14FocusDirectionE) STUB("flPcUaXVXcw", sceAudio3dPortGetParameters) STUB("flPxnowtvWY", sceHttp2AddCookie) +STUB( + "flUrYgvC8LA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("flVPqQL4j04", _ZN23sceMetadataReaderWriter22StorageParserInfoTableC1EjPi) STUB("flYYxek1wy8", scePadSetProcessFocus) +STUB("flc5CKNnVxY", _ZN3sce7Toolkit2NP2V28Matching12Notification11RefreshRoom8deepCopyERKS5_) +STUB("fldPLpBktGU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEaSERS7_) +STUB( + "flfAQCop-mo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEC1EPS7_PNS2_10LibContextE) +STUB( + "flieq2CdtYA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) STUB("fljdejMcG1c", sceFontWritingGetRenderMetrics) +STUB("flmSEtbkSbQ", il2cpp_monitor_wait) +STUB( + "flnoCDprwHk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEE3getEv) +STUB("flqaM9wf884", fuse_chan_send) +STUB("flwICNzXML8", uprv_decNumberGetBCD_67) STUB("fm1r2vv5+OU", scePadReadBlasterForTracker) +STUB("fm5iMf1GSvg", _ZN9Inspector15RemoteInspector6ClientC2ERKS1_) STUB("fm7XpsO++lk", sceUserServiceSetGlsMessageFilterLevel) +STUB( + "fm84QSpiaaw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEEC2EPS6_) +STUB("fmAFXQ-jMo4", uprv_mul32_overflow) +STUB("fmD6lvba-e0", _ZN3WTF17wordBreakIteratorENS_10StringViewE) +STUB("fmDMZjA+Eg4", _ZN3JSC11MarkedBlock6Handle13areMarksStaleEv) STUB("fmEzJ4OY5nM", sceFsWsUmount) +STUB("fmGGZId9izI", mono_aot_Sce_Vsh_Db_Sharedunbox_trampolines) +STUB("fmHLr9P3dOk", _Snan) STUB("fmOs6MzCRqk", sceHttpTrySetNonblock) +STUB("fmQBPC8AIx0", _ZN7WebCore9HTMLNames23onwebkitsourcecloseAttrE) +STUB("fmRTuijh1NM", _ZN3WTF11Persistence7DecoderrsERNS_8OptionalIsEE) +STUB("fmT2cjPoWBs", fabsf) +STUB( + "fmU-0elgU1E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE6resizeEj) +STUB( + "fmdBUfMKWAY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEC1Ev) +STUB( + "fmeCdfg9xR0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEeqERKS9_) +STUB( + "fmga1AEeR9I", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE6finishEv) +STUB( + "fmh9v2nPKEo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEEdeEv) +STUB( + "fmiA8J8+f5Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEppEi) +STUB( + "fmq+5EljqP4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEaSERKS9_) +STUB( + "fmsC+wXWWlY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE8capacityEv) +STUB("fmtiiQmMB7k", _ZNK3sce2Np9CppWebApi14SessionManager2V113PlayerSession9getMemberEv) +STUB("fn1Co0wfCME", _ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEEC1Ev) +STUB("fn1i72X18Gs", _ZNSt11logic_errorD0Ev) +STUB("fn2e1KifVKM", _ZNK7WebCore17HTMLScriptElement5asyncEv) +STUB( + "fn4J5uQh3BQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEC2ERKS7_) +STUB("fn8PTxlIFMw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEEC2ERKS7_) +STUB( + "fn8Qfas4qbk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEE5resetEPS9_) +STUB("fnAldf0Q96M", Java_java_awt_GnmImage_nativeSetColorModelBytePixels) +STUB("fnBzqX6l+58", _ZN12video_parser5vpcom11Utf16ToUtf8ERKSbIwSt11char_traitsIwESaIwEEPSsi) +STUB("fnDNld-FfGE", rgctx_fetch_trampoline_rgctx_44) +STUB( + "fnDeSM06+rk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEEC1Ev) +STUB("fnHpN5xfdJ8", mono_aot_Sce_PlayStation_Jsonunbox_trampolines_end) +STUB("fnIzuuFz-vY", __s2b_D2A) +STUB("fnRb3vpQmN4", _ZNK7WebCore4Node12lookupPrefixERKN3WTF12AtomicStringE) +STUB("fnTLa75XU54", WKPreferencesSetMinimumZoomFontSize) +STUB("fnUEjBCNRVU", wmemchr) +STUB("fnZxodNwzSw", + _ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errorsC1EPNS1_6Common10LibContextE) +STUB( + "fnavKi4Ph50", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEdeEv) +STUB( + "fnc+s0bN5NI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEixEm) +STUB( + "fndVbjjvFtc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE7reserveEi) STUB("fnqFpsRrsg4", sceAvControlIsDeepColorSupportedByMonitorInfo) +STUB("fnrW9BaMPAA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEEaSERKS9_) +STUB("fnxQfHHlzpE", png_create_read_struct_2) +STUB("fo-EJUaMzMk", _ZN7WebCore29equalIgnoringQueryAndFragmentERKNS_3URLES2_) +STUB("fo3MaNfUAUE", WKFrameIsMainFrame) STUB("fo5B8RUaBxQ", sceGameLiveStreamingScreenInitializeSeparateModeParameter) +STUB("fo7GYqkkHBA", glPushGroupMarkerEXT) +STUB("foCDx2--mVw", _ZN3NTF17URLRequestFileJob10initializeEb) +STUB( + "foGveQnZdv8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEixEm) +STUB( + "foRxDkhZxEQ", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot9setslotIdEi) +STUB("foV96AsJh6k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V111OfferStatusEEaSERKS7_) +STUB("foXSHrLw+6M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEC1ERKS7_) +STUB( + "foYX6dcljKI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEE7add_refEv) +STUB("fof7HKGTVWc", mono_aot_Sce_Vsh_CloudClientunbox_trampolines) +STUB( + "fog+NDK5KJI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEEC1Ev) +STUB("fojEVaEP+2g", _ZN3WTF6Thread10allThreadsERKNS_6LockerINS_4LockEEE) +STUB("fokEcElZYas", mono_aot_System_Net_Httpjit_code_end) +STUB("fokQWxS--Hs", _ZN12video_parser5vpcom11Utf8ToUtf16ERKSsPSbIwSt11char_traitsIwESaIwEEi) +STUB( + "foodLlD3P0k", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEeqERKS9_) +STUB("forQVyt9ycQ", _ZNK7WebCore17HTMLOptionElement5valueEv) +STUB( + "fotNXwnZkYE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEdeEv) +STUB( + "fotZ9kUWwaY", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeaders15getLastModifiedEv) STUB("fotb7DzeHYw", sceUsbdBulkTransfer) +STUB("fp-jO+c8Rfk", FT_DivFix) +STUB("fp2EhGiMaJs", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku5getIdEv) +STUB("fp6Yo2-JRtI", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V116BandwidthFactory7destroyEPNS3_9BandwidthE) +STUB("fp7-kBD4YVo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_17TitleCloudStorage2V19ConditionEEeqERKS7_) +STUB("fp9jJns8XKk", _ZN7WebCore11DisplayList8FillRectD1Ev) STUB("fpFCQLbTB1w", sceSulphaInit) +STUB("fpFa0fYJ6JM", _ZThn24_N7WebCore14DocumentLoaderD1Ev) +STUB("fpHXcFU4T1c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEE11release_refEv) STUB("fpI46m0Nc9o", scePlayReadyCloneDecryptContext) +STUB( + "fpLTp3Z+UnI", + _ZN7WebCore24CoordinatedGraphicsLayer37setVisibleContentRectTrajectoryVectorERKNS_10FloatPointE) STUB("fpMtgjbfR28", sceDtcpIpCheckActivationAsync) +STUB("fpORxPPk4+Q", _ZN7WebCore19ResourceRequestBase6setURLERKNS_3URLE) +STUB("fpXxlVhsEco", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging25GameDataMessageAttachmentEEC2Ev) +STUB( + "fpvLU+uhm0E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEmmEv) +STUB("fpz1nROvElc", + _ZN3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayerC2EPNS1_6Common10LibContextE) +STUB( + "fq3CZ3TBgFQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE7releaseEv) +STUB( + "fq3fks8N8NE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("fq6Be3UkmTU", _ZN3sce7Toolkit2NP2V29Messaging25GameDataMessageAttachmentC2Ev) +STUB("fq6PWnRgTgI", _ZNK7WebCore16HTMLImageElement11crossOriginEv) +STUB("fq9Nc2mYDwA", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData13isInitializedEv) +STUB("fqAS9GQTmOU", _ZN3sce2np3ipc17ServiceIpmiClient16RegisterServicesEPKNS1_17ServiceClientInfoE) +STUB("fqBbFOBcJHU", psl_is_public_suffix2) +STUB( + "fqClP3SC1oA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEC1ERS7_) +STUB("fqERqkvThgQ", OpenClosedCaptionAdvancedSettings) +STUB( + "fqF2T3M8uxk", + _ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer12setJoinStateERKNS3_16InitialJoinStateE) +STUB("fqHL2fhC7Lw", _ZN7WebCore27DocumentTimelinesController16resumeAnimationsEv) +STUB("fqLrWSWcGHw", devname) +STUB("fqaBR5S0rkA", JVM_DisableCompiler) +STUB( + "fqcTzZKXAhU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEED2Ev) STUB("fqdGZ7GImpo", sceCtrlpPlayStop) +STUB( + "fqdJpCJ4KmM", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB( + "fqe1LCPIPoU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE10setContextEPNS2_10LibContextE) +STUB( + "fqeHHFgIkgE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEC1Ev) +STUB( + "fqexA4TLjKk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEaSERKS7_) +STUB( + "fqg2LN1m0c8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEEaSERSA_) +STUB( + "fqi8tw3o3aI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEE5resetEPS8_) +STUB("fqiICdanKlI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEC1Ev) STUB("fqk8SC63p1U", sceNpScoreWaitAsync) +STUB( + "fqn03jyGwtc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEptEv) +STUB("fqsYz9A6rOA", _ZNK7WebCore15JSDOMWindowBase5proxyEv) +STUB("fquAdjX4Sws", rand_s) +STUB("fquLkyv1zr4", WKApplicationCacheManagerGetApplicationCacheOrigins) +STUB("fr-jP7r1PQk", _ZN7WebCore16CSSParserContextC2ERKNS_8DocumentERKN3WTF3URLERKNS4_6StringE) +STUB( + "fr09QA55Bxo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEC2Ev) +STUB("fr8FfPAyZk0", mono_field_get_parent) +STUB( + "frEIv6UvLto", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEptEv) STUB("frFuGprJmPc", pthread_mutex_setyieldloops_np) +STUB("frIfNzwvN44", _ZN3sce7Toolkit2NP2V28Matching7Request8JoinRoomC1Ev) +STUB( + "frKMyo4uIo8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEC2ERS7_) +STUB("frL0X70yzJo", _ZN7WebCore19InspectorController27dispatchMessageFromFrontendERKN3WTF6StringE) +STUB( + "frLRXoheUMM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("frOwI7G9SR4", JVM_Accept) +STUB( + "frPG36tgHv0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEC1Ev) +STUB("frTcewvk9ao", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy17TrophyPackSummaryEE12deepCopyFromERS7_) STUB("frUCbxuuRpE", sceDevUsbSuspend) +STUB( + "frVLx0KTLio", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEeqERKS9_) +STUB("frboxGjLbzE", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_22FriendsRankInformationEEC2Ev) +STUB( + "frcV6OZRBOo", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeaders7destroyEPS5_) +STUB("frfFUdBqGP4", + _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse24unsetMatchStartTimestampEv) +STUB("frglKD2Zk24", mono_aot_Mono_CSharpjit_code_start) +STUB( + "frhtQPIOEJs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEEaSERKSA_) +STUB( + "frj8MjS0J6Q", + _ZN8meta_gen11MsvPromoter28setKeyValue_TBLI_LanguageExtENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti) +STUB( + "frkS9P4wLL4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEaSERSA_) +STUB("frkxOcdxRY0", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead16setMaxSpectatorsERKi) +STUB( + "frmCGHaS7Nc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEdeEv) +STUB( + "frmKb4GI618", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEC2EPNS2_10LibContextE) +STUB("frnJSnjKjuM", utrie2_serialize) +STUB( + "frp5fAREDQg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE5clearEv) STUB("frqq5Tky-zI", scePlayReadyEnvelopeInitializeRead) +STUB( + "frri8fKPED0", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser13unsetsortModeEv) +STUB("frsYgQQOiCE", uset_close_59) +STUB( + "frtHGA9fOm4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEneERKS9_) STUB("frwz3eyuA6w", sceNpFriendListDialogUpdateStatus) +STUB("frx6Ge5+Uco", _Atomic_copy) +STUB( + "fryecGqawns", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEneERKS9_) +STUB( + "fryzKMB0xFg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEED1Ev) +STUB("fs1TCWwTYCA", _ZNK3sce2np8NpTicket13GetTicketSizeEv) +STUB("fs2BaxmsAZg", _ZN3sce2np3ipc14service_client14PollEventQueueEiPvm) STUB("fs3u2NwzKL4", sceFsDrfsResumeSocket) +STUB("fs7IsFryZFc", SwCtrlSinkStreamSetWritePointer) +STUB( + "fsAxhc4e6Nc", + _ZN7WebCore5Cairo11drawSurfaceERNS_20PlatformContextCairoEP14_cairo_surfaceRKNS_9FloatRectES7_NS_20InterpolationQualityEfRKNS0_11ShadowStateE) +STUB("fsDniSr6+E0", mono_aot_Sce_Vsh_Np_Tmdbjit_code_start) +STUB("fsE8iRLJzFo", mono_aot_Sce_Vsh_Np_Asmunwind_info) +STUB("fsEJfN9fJF0", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_12CategoryInfoEE3getEv) +STUB("fsF-tGtGsD4", + _ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_bRSt8ios_basewe) +STUB("fsF26NaZNPA", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEEaSERS6_) +STUB("fsFnY2dn6g8", TEEC_RequestCancellation) STUB("fsGY64WLzOQ", sceClPthreadDetach) +STUB("fsMou-R4zfM", _ZN7WebCore26MessagePortChannelRegistryD2Ev) +STUB("fsNnLDGt63o", _ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_11DOMRectListE) +STUB( + "fsOotdSwIuA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEC1EPS8_) +STUB("fsTc6ANOby8", _ZN7WebCore6JSFileC1ERKS0_) +STUB("fsYY3KlQfeQ", WKTextCheckerSetClient) +STUB("fsZdiho79Qs", WKURLResponseCopyURL) +STUB("fsarcblWWVY", ucol_getMaxExpansion_67) STUB("fscoS+Gh3Sw", sceAvSettingSetAvOutputMode) +STUB("fsdDK9+jXuI", WKWebsiteDataStoreConfigurationGetStaleWhileRevalidateEnabled) +STUB( + "fsdh0JMoYYk", + _ZN3sce2Np9CppWebApi14SessionManager2V19ToFactory6createEPNS1_6Common10LibContextERKmPNS5_12IntrusivePtrINS3_2ToEEE) +STUB( + "fseE9ebg510", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("fsf54xvCbtM", _ZNK7WebCore14ScrollableArea24scrollOffsetFromPositionENS_8IntPointE) +STUB("fsgqunLD2b8", ubrk_current) +STUB("fsmobsLPvNA", _ZN3JSC7Symbols19asyncIteratorSymbolE) +STUB( + "fspJn9LTScw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEE5resetEPS6_) +STUB("fspq+Emvdvw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEmmEi) +STUB( + "fsqUXfpC-6U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEC1EPS8_) +STUB( + "fsvOBG-Ufug", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEptEv) +STUB("ft59B8V488U", _ZN3sce7Toolkit2NP2V28Matching12Notification14NewRoomMessageC1ERKS5_) +STUB("ft5HxbN0c1o", _ZNSt14error_categoryD1Ev) +STUB("ftCDzUULPbQ", uregex_setRegionAndStart_67) +STUB("ftCFzJjCE8o", + _ZNK3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer14joinStateIsSetEv) +STUB("ftEuf8cHTa0", + _ZNK3sce2Np9CppWebApi11UserProfile2V125GetPublicProfilesResponse6toJsonERNS_4Json5ValueEb) +STUB("ftFSZp41TOs", __tsan_mutex_pre_signal) +STUB( + "ftGi0u56hyk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEmmEv) +STUB( + "ftL6mjDmAVE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEEaSERKSA_) +STUB( + "ftM0njEZeqY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE7popBackEv) +STUB( + "ftO2hz+fd3k", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "ftQj57jsrnw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE7popBackEv) +STUB( + "ftV9apdT9AY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) STUB("ftaF5aJl7k0", sceNpTrophySystemWrapGetTrophyDetailsArray) +STUB( + "fteoAe2RlUA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEEaSERKSA_) STUB("ftf-xlfBQpo", sceAgcDriverSysIsGameClosed) +STUB( + "ftkMzWtcrQk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEeqERKS9_) +STUB( + "ftkr4Z65rD4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEED2Ev) +STUB("ftpF6alPIhk", + _ZN7WebCore27ScrollingStateScrollingNode24setScrolledContentsLayerERKNS_19LayerRepresentationE) +STUB("fttiF7rDdak", _Call_once) +STUB( + "ftyETt7h3kk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE21intrusive_ptr_add_refEPS9_) STUB("ftzOPSVbDqE", sceBgftServiceIntDownloadQueryTaskSection) +STUB( + "fu-pn4GY2L0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEE7get_refEv) +STUB( + "fu0IP5QP5Vk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEEcvbEv) +STUB( + "fu4AcEsKG2s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEE3getEv) +STUB("fu7wrVM5Hfc", _ZN3JSC28JSCustomGetterSetterFunction6s_infoE) +STUB("fuCQ5xUzG2U", X509_STORE_CTX_get1_chain) +STUB( + "fuElF14fJek", + _ZN3sce2Np9CppWebApi7Matches2V123ResponsePlayerStatistic8setStatsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_19AdditionalStatisticEEEEE) +STUB("fuG9EdgnTdQ", _ZNK3sce2Np9CppWebApi7Matches2V15Error11sourceIsSetEv) +STUB( + "fuJLO-7oZm4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "fuRTgRTDuS0", + _ZN3sce2Np9CppWebApi14IdentityMapper2V331PsnWebError_error_errorsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_24PsnWebError_error_errorsEEE) +STUB( + "fuSJhqMQzR8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEaSERKS7_) +STUB( + "fua7NoQ2Ycs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE5clearEv) +STUB("fucQSpZaJPw", _ZTVN15AbstractStorage14FacebookFolderE) +STUB("fuj1phHSHoM", uprv_decNumberTrim_67) +STUB("fuq9tGcbZic", rgctx_fetch_trampoline_mrgctx_21) +STUB("fuscqGblzaM", jpeg_idct_12x12) +STUB("fuu7Y7Yhsu4", + _ZN9Inspector17ScriptDebugServer20setBreakpointActionsEmRKNS_16ScriptBreakpointE) +STUB("fuwxa+XM0rQ", _ZNK3JSC22FullGCActivityCallback13didGCRecentlyEv) +STUB("fuyXHeERajE", _ZNSt12future_errorD1Ev) +STUB("fuzzBVdpRG0", _FDivide) +STUB("fv+YyDMYQs4", uprv_decNumberAbs_67) +STUB( + "fv+t0z4FQPY", + _ZN7WebCore6Editor28replaceSelectionWithFragmentERNS_16DocumentFragmentEbbbNS_10EditActionENS_22MailBlockquoteHandlingE) +STUB( + "fv3QiHOdtqA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEC1EPS6_PNS2_10LibContextE) +STUB("fvNywLhJFMg", mono_aot_Sce_Vsh_SysUtilWrapperunbox_trampolines) +STUB("fvT8j8fAkJE", _ZN3sce7Toolkit2NP2V28Commerce16RatingDescriptor8NAME_LENE) +STUB("fvTVv74NyuE", _ZN3sce2np16StreamReadBuffer8AllocBufEm) +STUB( + "fvbcClsjf5I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEC1EPNS2_10LibContextE) +STUB( + "fvcyYVPdmdI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEppEi) +STUB( + "fvekd6om1F0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEEaSERSA_) +STUB("fvgYbBEhXnc", _ZTISt7collateIcE) +STUB("fvpjTvRYrOs", png_set_expand_16) +STUB("fvrcm1+2LSY", + _ZN3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectator14setCustomData1EPKvm) +STUB( + "fvzhAtX7xbY", + _ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayerC2EPNS1_6Common10LibContextE) +STUB("fw+Z69DzrpQ", _ZN3sce2Np9CppWebApi15Personalization2V15ErrorC2EPNS1_6Common10LibContextE) +STUB( + "fw-Isy1qYC4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEdeEv) +STUB( + "fw-W9qbwSFQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEC2EPKS8_) +STUB("fw4+tIZ-4t8", _ZNK3sce3Xml3Dom8Document12getAttrValueENS1_6NodeIdE) +STUB("fw4riMtVRRY", _ZN7WebCore5ColorC1EOS0_) +STUB("fw9Gt6H7yCk", + _ZN3sce2Np9CppWebApi7Matches2V123ResponseMatchStatistics8fromJsonERKNS_4Json5ValueE) +STUB("fw9Uy25y8zE", uplrules_close_59) +STUB( + "fwAGC345k2I", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEC1Ev) +STUB("fwDXV58hgs4", vzone_getOffset2_67) +STUB("fwHTfTDLEJY", coil_load_module_internal) +STUB("fwRtYVa9Sr8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlotC1Ev) +STUB( + "fwYdaeuRgrM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEC1EPNS2_10LibContextE) +STUB( + "fwYmmGhhgKQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) STUB("fwcPR7+7Rks", sceImeVshUpdateContext2) +STUB("fwex8RRz9A4", _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE5beginEv) +STUB("fwjMm2JbksE", unumsys_isAlgorithmic_67) +STUB("fwklVZgzY9c", ures_findResource_67) +STUB("fwrLfExxKr8", _ZN4Manx15ProcessLauncher9terminateEi) +STUB( + "fwrW9nSfX1w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "fwtyRFXniFg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEEC2ERKSA_) +STUB( + "fwu535c9Us4", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_20ChallengeRecvDetailsENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB( + "fwvPXSVC6gw", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData24hasxPsnAtomicOperationIdEv) +STUB("fwzIUG9jAJE", _ZN3sce2np10JsonObject8SetFieldEPKcPKS1_PPS1_) +STUB("fx-H-TjSi0Y", _ZN7WebCore10Pasteboard16fileContentStateEv) +STUB("fx-xc8sC9bU", mono_aot_Sce_PlayStation_BclExtensionsjit_code_start) +STUB( + "fx3GuS1gdRE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEC2EPS7_PFvS9_EPNS2_10LibContextE) +STUB( + "fx3qreZ92Vc", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeader43setputPlayerSessionsNonPsnLeaderRequestBodyENS1_6Common12IntrusivePtrINS3_40PutPlayerSessionsNonPsnLeaderRequestBodyEEE) +STUB( + "fx51tm1FsWw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEC1EPS8_) +STUB("fx5nS1yOp-I", cairo_set_dash) +STUB( + "fxCkUm6EOho", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEED1Ev) +STUB("fxOxqM-wibk", _ZN3sce7Toolkit2NP2V29Messaging7Request17LocalizedMetadata18MAX_SIZE_DATA_NAMEE) +STUB( + "fxSSn1Jlrj0", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("fxVR6GHRQAk", _ZN6WebKit12ChildProcess18platformInitializeEv) +STUB( + "fxYJPOox79I", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEeqERKS9_) +STUB( + "fxdBSLlbCLg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEEcvbEv) +STUB("fxkG2Qd5kmE", _ZN3JSC13JSSetIterator10createPairEPNS_14JSGlobalObjectENS_7JSValueES3_) +STUB( + "fxlzW3SSdGc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEEptEv) +STUB("fxsKnwXGxTU", _ZNK7WebCore12TextEncoding6encodeEN3WTF10StringViewENS_19UnencodableHandlingE) +STUB("fxtTHmD8BUM", rgctx_fetch_trampoline_mrgctx_53_p) +STUB( + "fxux+QxqJ+Y", + _ZN3sce2Np9CppWebApi14ConnectAccount2V216PartnerTokensApi26ParameterToGetPartnerToken12setpartnerIdEPKc) +STUB("fxvToTE-vgs", uloc_canonicalize_67) +STUB("fxvx7w3VdJg", ucal_getCanonicalTimeZoneID_67) +STUB( + "fy5NLGgRfPc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEmmEi) STUB("fy6ntM25pEc", sceImeDialogGetCurrentStarState) +STUB( + "fyASTcXBYvI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEC2EPS7_PFvS9_EPNS2_10LibContextE) +STUB("fyBcK2uVX9E", _ZN3WTF10StackTrace17captureStackTraceEii) +STUB( + "fyDYmFrlAXw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEEC1Ev) +STUB("fyEt+b7Vf2k", _ZN9Inspector18InspectorHeapAgentdaEPv) +STUB( + "fyJW9g8EACw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEED2Ev) +STUB("fyPeCKJ94Hg", __inet_pton) +STUB("fyRmqtkIKXo", _ZN3sce7Toolkit2NP2V27Session11Invitations5resetEv) +STUB("fyVS948qXVg", Java_sun_awt_GnmUtils_bdjbgClear) +STUB( + "fyVjlz82H+g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEE7add_refEv) +STUB("fydJOJjDxX4", _ZN15AbstractStorage7StorageD2Ev) +STUB( + "fyh9+NUIDwU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEeqERKS9_) +STUB( + "fyqxmPtgsp0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE6resizeEj) +STUB( + "fytThHKE+7w", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("fyuJfb31TyU", _ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetail12setFirstNameEPKc) +STUB("fyxyDtfex64", _ZN3JSC6JSCell11getCallDataEPS0_RNS_8CallDataE) STUB("fz-00XG-VNU", sceNpSnsIntUnlink) +STUB( + "fz-F1v0MaWU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEEcvbEv) STUB("fz18fmDwFBM", sceFsUfsCheckCleanFlag) +STUB("fz2LehpxqIc", C1hi) STUB("fz3oxzTvcvI", sceVisionManagerSetCallbackForUpdateRunningStatus) +STUB( + "fz4626beKRY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEneERKS9_) STUB("fz9IVnkE9u8", sceCesMbcToUtf16be) +STUB("fzCJnTUBLeM", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEE3getEv) +STUB("fzF1TaOynq0", _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities5Error9getReasonEv) +STUB("fzFqkORHYR0", _ZN3sce7Toolkit2NP15PresenceRequestC2Ev) +STUB( + "fzI4ut8ePfk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEEC2ERSA_) STUB("fzJdEihTFV4", sceGnmGetProtectionFaultTimeStamp) STUB("fzRDRAPXuWc", sceNpGriefReportIsInit) +STUB( + "fzScgXxfrJo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEE7get_refEv) +STUB("fzT90m90bBk", Java_java_awt_GnmGraphics_nativeClearRect) +STUB("fzYRZqywpBk", _ZN7WebCore18TextureMapperLayernwEm) +STUB( + "fzcZXpkXZ3M", + _ZN3sce2Np9CppWebApi14SessionManager2V141PostGameSessionsSearchResponseBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_34PostGameSessionsSearchResponseBodyEEE) STUB("fzgTb4rmF8o", sceFsLvdAttach2) +STUB("fzgkSILqRHE", _WScanf) STUB("fzguXBQzNvI", sceSystemServiceChangeVceClock) +STUB("fzklomHrPGI", _ZN3sce7Toolkit2NP2V27Ranking12FriendsRanksaSERKS4_) +STUB("fzp8a-tnBGw", _ZN3sce2Np9CppWebApi14SessionManager2V110FromMemberC2EPNS1_6Common10LibContextE) +STUB("fztivxfEtZo", _ZN7WebCore9HTMLNames12dropzoneAttrE) STUB("fzyMKs9kim0", sceKernelWaitEqueue) STUB("fzzBpJjm9Kw", sceHttpDbgGetRequestStat) +STUB( + "g+3kcIiSAWs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "g+8DrKzhVMs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEE5resetEPS8_) +STUB( + "g+LK7H0YUVw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE5beginEv) +STUB("g+MtnvgmCMk", _ZN7WebCore11FontCascadeC1Ev) +STUB("g+Neom2EHO8", __asan_memcpy) +STUB( + "g+Ogdo48j3k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEE11release_refEv) +STUB("g+OksXT5W6g", mono_aot_Sce_Vsh_Sl2_Sl2Commonunbox_trampolines_end) STUB("g+PZd2hiacg", scePthreadCondDestroy) +STUB( + "g+ZmPEUfu8I", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi26deleteMultiVariablesByUserEiRKNS4_37ParameterToDeleteMultiVariablesByUserERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB("g+f7a63flt0", _ZNK3sce2Np9CppWebApi7Matches2V17Subtask13getActivityIdEv) +STUB("g+fS-cgAa4w", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_11TusVariableENS2_IS4_EEEE7addressERKS6_) +STUB("g+p8+N9n-vc", + _ZN3sce2Np9CppWebApi7Matches2V119CreateMatchResponseC2EPNS1_6Common10LibContextE) +STUB("g+wQ5ZXT7i8", _ZN7WebCore19MediaElementSession25updateMediaUsageIfChangedEv) +STUB("g+wkbeAPQ-M", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEEcvbEv) +STUB( + "g+xfTpDePYw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEED2Ev) +STUB("g+zYpLVI-Ss", monoeg_g_get_prgname) +STUB( + "g-59S5im7uQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEeqERKS9_) +STUB( + "g-6TdR0m2kg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEE3getEv) +STUB( + "g-BNRIJLIew", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEC1ERKS7_) +STUB("g-C5shOvH1Y", glClearBufferfv) +STUB("g-F7qvAfhAo", _ZN3sce2np8JsonNullD0Ev) +STUB("g-FuaSuOjuE", Java_java_net_NetworkInterface_getByName0) +STUB( + "g-HOy1EJEcw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEC2Ev) +STUB("g-HRQcdZBaw", _ZNK3sce2Np9CppWebApi7Matches2V118RequestMatchPlayer6toJsonERNS_4Json5ValueEb) +STUB("g-HYF9KbZBI", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10setString8EPKc) +STUB("g-McpZfseZo", strtouq) +STUB("g-OlewZCuU8", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIjEC1EPj) +STUB( + "g-Qh6M6zjXM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEmmEi) +STUB("g-SjvruXQtc", WKResourceCacheManagerClearCacheForAllOrigins) +STUB( + "g-UyJmJdNX0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "g-Wn9hTpVf0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEaSERKS7_) +STUB("g-XVEn-57y8", glIsShader) +STUB( + "g-Y4FCdTZ-E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEmmEv) +STUB( + "g-YGvjkxxxI", + _ZN7WebCore8Document35enqueueSecurityPolicyViolationEventEONS_28SecurityPolicyViolationEvent4InitE) +STUB("g-a806j7Kd8", _ZN3sce7Toolkit2NP17PlayedWithRequestC1Ev) +STUB("g-bu34j3VmE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V112OnlineStatusEEC2EPS6_) +STUB("g-dj9wSpmVw", AnnotateMutexIsNotPHB) +STUB("g-fUPD4HznU", _ZTIh) STUB("g-o1zr0I7NU", sceSdmaUnmapUserVAddress) +STUB("g-qkr5NChcY", _ZNK7WebCore11JSDOMMatrix7wrappedEv) STUB("g-rkXpulHMc", sceApplicationBeginSclkChange) +STUB("g-uiNhXFvKM", X509_get0_extensions) +STUB( + "g-vCahvyprQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEdeEv) STUB("g-zCwUKstEQ", sceSslEnableOptionInternal) +STUB("g0-aiGCmPi4", __dso_handle) +STUB("g00+ZT9fKA0", + _ZN3sce2Np9CppWebApi14IdentityMapper2V311PsnWebErrorC2EPNS1_6Common10LibContextE) +STUB("g02zKAl7tFI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEEC1EPS6_) +STUB("g065oXBaL9o", _Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm14GdsPerfCounterE) +STUB("g0AEr857uzM", g_string_append_c) +STUB("g0BjJvv2vsw", p5s) +STUB( + "g0GJlFChT1A", + _ZNK7WebCore21ContentSecurityPolicy19allowFrameAncestorsERKN3WTF6VectorINS1_6RefPtrINS_14SecurityOriginENS1_13DumbPtrTraitsIS4_EEEELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEERKNS1_3URLEb) +STUB( + "g0GT32eFVgM", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions7setviewEPKc) +STUB( + "g0JcTUQu5yc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE3endEv) +STUB("g0MFs2FZPrk", _ZN3JSC7Symbols17filterPrivateNameE) +STUB("g0McDMiyiN8", _ZNK7WebCore21ContentSecurityPolicy15responseHeadersEv) STUB("g0N8k8D9J44", sceRemoteplayGiveApproval) +STUB( + "g0RwjReZ790", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge18ChallengeThumbnailEE19setCustomReturnCodeEi) +STUB("g0THuujzWnQ", mono_aot_Sce_Vsh_PsnMessageUtiljit_code_end) STUB("g0VTBxfJyu0", sceKernelGetCurrentCpu) +STUB("g0cCJmozmnQ", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku8getLabelEv) STUB("g0dTAJEvNs0", _sceNpMallocImpl) +STUB("g0dZ4d0AWws", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V18SortModeEEppEi) STUB("g0dxBNTspC0", sceNpTrophySystemGetNextTitleFileEntryStatus) +STUB("g0eZJtTxWrg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEcvbEv) +STUB("g0iXiEN8XLk", uiter_setString_67) +STUB("g0jMGsjjNbY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament5EventEE12deepCopyFromERS7_) +STUB( + "g0pnI+mT3kE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE3endEv) +STUB( + "g0pu7tqo1Jk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "g0umf1qe6aE", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEEiRNS2_10LibContextEPT_m) +STUB("g0vmm9VmCFY", _ZN3WTF15FilePrintStream4openEPKcS2_) STUB("g0wTG9KImzI", sceLncUtilGetAppTitleId) +STUB( + "g0y2SH8etWI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEC2ERKS7_) +STUB( + "g14PuHuysuM", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsers63setpostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyENS1_6Common12IntrusivePtrINS3_60PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEE) +STUB( + "g1BAuEQJiRQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEC1Ev) +STUB("g1E3WhunWTM", _ZN7WebCore31BasicColorMatrixFilterOperation5blendEPKNS_15FilterOperationEdb) +STUB( + "g1HaqEmB85Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE8copyFromERKS9_) +STUB( + "g1LOJx60nfg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE3endEv) +STUB("g1N0rb2bGCs", _ZN3NTF22URLRequestJobSchedulerD1Ev) +STUB("g1Rc0MQddG0", FT_Vector_Transform) STUB("g1SU88IfEO4", sceMusicCoreServerKillCurrentCore) +STUB( + "g1SlMqubc5E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEC2EPS8_) +STUB( + "g1TW16dSzEQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEC2EPNS2_10LibContextE) +STUB("g1aT0-9vSfo", _ZN3NTF6ThreadC1Ev) STUB("g1f+Gd4iWBw", scePerfPmcMcSeqStart) +STUB( + "g1fcAXOF9tY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "g1jV-957MiI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEdeEv) +STUB( + "g1jjsc0k+M4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEC2Ev) +STUB( + "g1kR7lKL1iM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEppEi) +STUB("g1pN7teDZsI", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15Error16unsetReferenceIdEv) +STUB( + "g1r21vw8oEE", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC2ERKS7_) +STUB( + "g1u7F2D6u8w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEC2EPS8_) +STUB("g1uaNydmRiE", _ZN7WebCore14DocumentLoader12dataReceivedERNS_14CachedResourceEPKci) +STUB( + "g1wnjq7kgwE", + _ZN3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectatorC2EPNS1_6Common10LibContextE) +STUB( + "g1x+jaNL6s0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE6resizeEj) +STUB("g1ysxao8QwQ", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIdEmmEi) +STUB("g26fUx+ekD4", _ZN3sce7Toolkit2NP2V26Trophy7Request6UnlockC2Ev) +STUB("g2Dgo0zmHL8", ERR_error_string_n) +STUB( + "g2E1-92pDbg", + _ZN7WebCore22ScriptExecutionContext10postTaskToEN3WTF16ObjectIdentifierINS_36ScriptExecutionContextIdentifierTypeEEEONS0_4TaskE) +STUB("g2GrmwWKLHA", rgctx_fetch_trampoline_mrgctx_120) +STUB( + "g2IR1LTWUik", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEEaSERKSA_) +STUB( + "g2OpSxhd2uM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE8capacityEv) +STUB( + "g2TdtAB73Io", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("g2VqokawlPo", _ZTVN7WebCore27TranslateTransformOperationE) +STUB( + "g2dEqFnhFuw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB( + "g2fKKIBdOTg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEED1Ev) +STUB("g2fw8kXx2IU", _ZN7WebCore9DragImageD2Ev) STUB("g2oYm1DitDg", sceUsbdGetStringDescriptor) +STUB("g2p7fkJpuC0", FTA_Support_Format_Type1) STUB("g2tViFIohHE", sceAudioOut2Initialize) +STUB("g3+dZ3pqExs", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfoC1ERS5_) STUB("g32w6rnsV-0", sceIduUtilUpdateSelf) +STUB( + "g32xE3m8X1o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEC1Ev) +STUB( + "g35Ac2lWbUc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE3endEv) +STUB( + "g36Hhi+JjLA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE8pushBackERKS6_) +STUB( + "g3Cfw1Na5RE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEEaSERKSA_) +STUB( + "g3Cwy3TjA6I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) STUB("g3CyiTf6nMY", sceVoiceChatGetChatGroupMemberInfoList) +STUB("g3DGo0ZHsBk", mono_code_manager_init) STUB("g3DKNOy1tYw", sceHmdInternalSetSidetone) +STUB( + "g3Dr-rOS+ZY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEEptEv) +STUB("g3MBU80Wc68", + _ZN3WTF26normalizeLineEndingsToCRLFEONS_6VectorIhLm0ENS_15CrashOnOverflowELm16EEE) +STUB("g3MDJABPLh0", _ZN4Manx11BundleOrbisD2Ev) +STUB("g3O1JgTFs-A", _ZNK3WTF3URL8protocolEv) STUB("g3PNjYKWqnQ", sceRemoteplayGetConnectionStatus) +STUB("g3Qdjto8V0g", WKStringGetUTF8CStringNonStrict) +STUB( + "g3SfitrXm70", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEE11release_refEv) +STUB("g3ShSirD50I", wcsrchr) +STUB( + "g3VLuC2uJLE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEC2ERS7_) +STUB( + "g3ZZzJaUMIA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V110Reputation9setGlobalERKNS1_6Common12IntrusivePtrINS3_20ReputationPropertiesEEE) +STUB("g3bB4owz4Zs", _ZN3JSC7Symbols35instanceFieldInitializerPrivateNameE) +STUB("g3ckT950PYU", mono_aot_appunbox_trampolines) +STUB("g3dK2qlzwnM", _LSincos) +STUB("g3dT-4i0rS0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEcvbEv) +STUB( + "g3ladeyxtWk", + _ZN9Inspector31NetworkBackendDispatcherHandler20LoadResourceCallback11sendSuccessERKN3WTF6StringES5_i) +STUB( + "g3mL84ud7Kg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEE11get_deleterEv) +STUB( + "g3oM1DZ5K9E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEC2Ev) +STUB("g3p-JR0-PiY", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Error14getReferenceIdEv) +STUB( + "g3wf8FevbBs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEEC2Ev) +STUB( + "g3y6iiZOh84", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEC2EPKS8_) +STUB( + "g40I-aFpKVo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEC1Ev) +STUB( + "g40f-OpQzwU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEC1EPS8_) STUB("g42bgpVPZXw", sceHmdGetFieldOfViewApprox) +STUB("g46lcz7ehyY", _ZNK3WTF8Collator7collateENS_10StringViewES1_) STUB("g4AZyxpSAlA", scePlayGoGetOptionalChunk) +STUB("g4BlY6ulxpY", _ZN7WebCore11MathMLNames14denomalignAttrE) STUB("g4DKkzV2qC4", sceNetBandwidthControlSetIfParam) +STUB("g4GeZuGDulw", _ZNK3sce2Np9CppWebApi6Common6VectorImE3endEv) STUB("g4K51cY+PEw", sceRemoteplayGetConnectHistory) +STUB( + "g4KyBYdXVRM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEED2Ev) +STUB( + "g4M-ukrMtic", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEC2Ev) +STUB("g4OMF45UKY8", _ZNK3sce2Np9CppWebApi12Leaderboards2V14User7getPcIdEv) +STUB("g4P89vRML3M", ucnv_fromUnicode_UTF8_67) STUB("g4Qh85u8pE8", sceMusicCoreServerRegistEventCallback) +STUB("g4bGaStd0ow", _ZN3sce7Toolkit2NP2V24Core24NpToolkitMemoryPoolStatsD1Ev) +STUB("g4glOvOSSrY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEC1ERS7_) +STUB("g4l-4OpdUKc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEEC2Ev) +STUB("g4qukwf+CiM", JVM_GetArrayLength) +STUB( + "g4x6BwI89SM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEC1EPS8_) +STUB("g4xKiNSDPMY", mono_bitset_clear) +STUB("g4zOkblr5LI", _ZNK12video_parser5vpcom6String10GetWStringEv) +STUB("g51oLuW555o", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V115CompetitionTypeEEC1EPS6_) +STUB( + "g58APdyJ-5Y", + _ZN15AbstractStorage14YoutubeStorage9GetForderERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_6FolderEE) +STUB( + "g58gPub0t60", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEC1EPKS8_) +STUB("g5Ar33g4Pa8", mono_aot_Sce_Vsh_CloudClientunwind_info) +STUB("g5AycyyOc98", udatpg_clone_67) +STUB( + "g5FHrMiBYz0", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("g5IlPCOAT2s", mono_get_method) +STUB( + "g5LRlpc627M", + _ZN7WebCore6Editor18insertDictatedTextERKN3WTF6StringERKNS1_6VectorINS_20DictationAlternativeELm0ENS1_15CrashOnOverflowELm16EEEPNS_5EventE) +STUB("g5OUObarCN0", _ZN3WTF27releaseFastMallocFreeMemoryEv) +STUB("g5PY9P+hHoI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEdeEv) +STUB("g5RyQiPhMXY", __log__D) +STUB("g5S0kerYDgw", _ZN7WebCore13HitTestResultC1ERKNS_15HitTestLocationE) +STUB( + "g5SYIr3zScM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEC1Ev) +STUB("g5SpzI8k9O0", mono_aot_Sce_Vsh_VideoEdit_Wrappermethod_addresses) +STUB("g5TJbw7fqRI", _ZN7WebCore22EmptyFrameLoaderClient12blockedErrorERKNS_15ResourceRequestE) +STUB("g5VNTUbhBBw", mono_aot_Sce_Vsh_UsbStorageScenejit_code_start) +STUB( + "g5WAiGxqlTg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEC2Ev) STUB("g5XaIbYcJw0", sceFsISSchedConfigThread) +STUB("g5cG7QtKLTA", _Tss_delete) +STUB("g5jawjIIlM4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS12TusVariablesEED2Ev) +STUB("g5kOvz6Qjg8", mono_aot_System_Runtimeunbox_trampolines) +STUB("g5n1MMQCGVA", _ZN7WebCore24FrameDestructionObserverC2EPNS_5FrameE) STUB("g5qmS3CoA3I", sceNpUniversalDataSystemIntCreateRecordObject) +STUB("g5wtyJJZY4I", jpeg_idct_float) +STUB("g6-f2xOHwvU", _ZNK7WebCore11XPathResult14snapshotLengthEv) +STUB( + "g60TNkyDcLw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEdeEv) +STUB( + "g61TB8GTII0", + _ZN3sce2Np9CppWebApi14SessionManager2V125LeaderWithOnlineIdFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_18LeaderWithOnlineIdEEE) STUB("g68eYcZS7PY", sceAgcDriverGetGpuRefClks) +STUB( + "g6Fi1iVk3Kc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEED1Ev) +STUB( + "g6eQUSiSB8A", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEptEv) STUB("g6fhW-+NuuU", sceKernelAllocateTraceDirectMemory) +STUB( + "g6fmv8eQr7E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE8capacityEv) +STUB("g6gKfjgJEGU", _ZN3WTF18ExternalStringImpl6createEPKhjONS_8FunctionIFvPS0_PvjEEE) +STUB( + "g6iAqmSbmqE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEneERKS9_) +STUB("g6lZuLAb28Q", _ZN3sce7Toolkit2NP2V28Matching5WorldD1Ev) +STUB( + "g6niuU9w1ZY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEE5resetEPS9_) +STUB("g6oPi2XqTnQ", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody17getNpServiceLabelEv) STUB("g6ojqW3c8Z4", sceUserServiceGetAccessibilityKeyremapData) +STUB( + "g6p87+DmhTw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEE7add_refEv) +STUB( + "g6pEcIn4G5k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEC2Ev) +STUB("g7+SzrMDF9M", _ZN3sce3pss5orbis5video15VideoPlayerBase9GetVolumeEv) +STUB( + "g7-xKz-PBfU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEEaSERKSA_) +STUB( + "g75JmKjLKAc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE21intrusive_ptr_sub_refEPS9_) STUB("g787tMBA1TE", sceShellCoreUtilSetPsStoreIconState) +STUB( + "g7DPg9i2DwE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "g7E78Ukt9HU", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE11hasResponseEv) +STUB( + "g7Hvx-ehBFQ", + _ZN7WebCore28collectVaryingRequestHeadersEPKNS_9CookieJarERKNS_15ResourceRequestERKNS_16ResourceResponseE) +STUB("g7Id6p6fdis", + _ZN3JSC4Yarr11YarrPatternC1ERKN3WTF6StringENS2_9OptionSetINS0_5FlagsEEERNS0_9ErrorCodeE) +STUB("g7LNyphAmDQ", uprv_convertToLCID_67) +STUB("g7RbI+2fjTc", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12RangeOfRanksEE3getEv) +STUB("g7U6yKITcyw", _ZN3JSC6JSCell13estimatedSizeEPS0_RNS_2VME) +STUB("g7UKPyNoS6s", _ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEEC1Ev) +STUB("g7UMnKA4Bus", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V111OfferStatusEEdeEv) +STUB( + "g7V1UPJgsKs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEE5resetEPS6_) +STUB("g7VJwWXQAP0", _ZNK7WebCore18RenderLayerBacking12tiledBackingEv) +STUB( + "g7YUSrJNrMU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEED1Ev) +STUB("g7Z+0gHNvc4", _ZN3sce7Toolkit2NP2V27Ranking7Request13GetUsersRanksC2Ev) +STUB("g7eeHDMZC-A", + _ZN3sce7Toolkit2NP2V212ActivityFeed7Request15PostInGameStory20USER_COMMENT_MAX_LENE) +STUB( + "g7f6wniZ7pg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("g7g1+cBiEKo", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V122UploadDataResponseBodyC1EPNS1_6Common10LibContextE) +STUB("g7gjCDEedJA", + _ZNSt13basic_filebufIwSt11char_traitsIwEE7seekoffElNSt5_IosbIiE8_SeekdirENS4_9_OpenmodeE) +STUB("g7j2c8PezjA", _ZN3sce7Toolkit2NP2V27Ranking12RangeOfRanks8MAX_PCIDE) STUB("g7kM+dtQB0o", sceDeci4hCreateHostProcess) +STUB( + "g7lTsFTaY7c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEEC1Ev) +STUB("g7m3aVpkWeA", _ZN7WebCore9HTMLNames9outputTagE) +STUB( + "g7nHXikoTnY", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("g7u47QRLEOU", + _ZN3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSessionC1EPNS1_6Common10LibContextE) +STUB("g7zzzLDYGw0", strdup) +STUB("g8-wnopz0jE", JSValueGetType) +STUB( + "g80BkkFS6zY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE5beginEv) +STUB( + "g81Al3pzkOI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE4sizeEv) +STUB("g8Euucf0v3s", _ZN7WebCore8FormData6createEPKvm) +STUB("g8Ijr2P+ShQ", + _ZN7WebCore12JSAudioTrack15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB("g8Jw7V6mn8k", _ZNSt14error_categoryD2Ev) +STUB( + "g8Pfks3Qpn4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEixEm) STUB("g8T4x0GD9Wo", sceShellCoreUtilGetGnmCompositorOnScreenProfilerFlag) +STUB( + "g8VFzqnRHX8", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("g8YNrKJSCJ0", _ZNK7WebCore16EventListenerMap4findERKN3WTF12AtomicStringE) STUB("g8cM39EUZ6o", sceSysmoduleLoadModule) +STUB("g8eLxL9VAhU", FT_OpenType_Validate) +STUB("g8iiJ8JhJmY", _ZN7WebCore11HistoryItem12setURLStringERKN3WTF6StringE) +STUB( + "g8oXLbDsyfA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE5clearEv) +STUB("g8oyxbexJpI", + _ZNK7WebCore12EventHandler20hitTestResultAtPointERKNS_11LayoutPointEjRKNS_10LayoutSizeE) +STUB("g8ozp2Zrsj8", _Gettime) +STUB("g8phA3duRm8", _ZTSPi) +STUB("g8rdTOS2ezI", monoeg_g_markup_parse_context_new) STUB("g8rs9gM3qAQ", sceApplicationSystemSuspend) +STUB("g8sFOa+vaUU", _ZN7WebCore8Settings38setLayoutViewportHeightExpansionFactorEd) +STUB("g8tvQzCCM3o", rgctx_fetch_trampoline_rgctx_34_p) STUB("g8urym+l4UU", sceEditMp4QueryMemSize) +STUB( + "g8wF9EPmsD0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEeqERKS9_) +STUB( + "g8wjBi0iAus", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE5emptyEv) +STUB( + "g8zVs-2CoWc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEC1EPS6_PNS2_10LibContextE) +STUB("g96Sq2k+-zE", _ZN3JSC12JSLockHolderC2ERNS_2VME) +STUB( + "g96i5kYXrKk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEED1Ev) +STUB( + "g9C3tFFASgE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEE11get_deleterEv) +STUB( + "g9CKWO0xjLY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEE7add_refEv) +STUB("g9E2ShyXqJU", BgsStorageFreeKeyValueResult) +STUB("g9FmpQw2M-U", _ZNK3sce2Np9CppWebApi6Common6Binary9getBinaryEv) STUB("g9FncxNrnmw", sceUltGetQueueInfo) STUB("g9QtTkNAjjQ", sceDataTransferTargetRequestActivate) +STUB( + "g9Sy9iA6jBw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEED1Ev) +STUB( + "g9TBL-P5Lw8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEEdeEv) +STUB( + "g9WQ-Sncl9U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEE11get_deleterEv) STUB("g9YCEM72+bc", sceUserServiceSetNotificationSettings_1) +STUB("g9YJnS7j2Bk", _ZNK7WebCore16DocumentTimeline34numberOfActiveAnimationsForTestingEv) +STUB( + "g9eXPSWRPKI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEEC2Ev) +STUB("g9gbWvfyPvA", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEEC1ERKS6_) +STUB( + "g9iUuYWeYoM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE5clearEv) +STUB( + "g9mcFz2-luE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEE11get_deleterEv) +STUB("g9pMjY6sjDw", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_15CategoryInfoSubENS2_IS4_EEEE8allocateEmPKv) STUB("g9uwUI3BlQ8", sceSaveDataInitializeForCdlg) +STUB( + "gA+HrjxyMQI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEED1Ev) +STUB("gA0CaCjJpg0", _ZN3sce2np18MemoryStreamReaderD0Ev) STUB("gA4Xnn+NSGk", sceHmdInternalSeparateModeOpen) +STUB( + "gA6EuTWmhbo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEEptEv) +STUB("gA6XVfF-oqU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEE3getEv) +STUB( + "gA7w1SJ59I8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEdeEv) +STUB("gA7zC2wtgxo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEppEv) +STUB("gA9rEBMDK58", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110ResultTypeEEppEi) +STUB("gAAcmQhQ2TU", YGNodeReset) +STUB("gAHkf68L6+0", CERT_STORE_traversePskListHead) STUB("gAHvg6JPIic", scePadStopRecording) +STUB( + "gAI+qwObUcM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("gAJtY5O9w+o", unorm2_hasBoundaryAfter_67) +STUB( + "gAK2TKr9ETs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEdeEv) +STUB("gALFgNfF+9I", _ZN3sce4Json6StringC2ERKS1_) +STUB( + "gAMFk69tC7k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("gAS7CdR7tBc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEED2Ev) +STUB("gASbJqd+gTk", _ZNSt9basic_iosIwSt11char_traitsIwEE7copyfmtERKS2_) +STUB("gAT2BtxphDM", glSamplerParameterfv) +STUB("gAZOY6lVqS0", mono_aot_System_Resources_ResourceManagerunbox_trampolines_end) +STUB( + "gAaHJ9b4U90", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE4sizeEv) +STUB("gAcOgd1WcZ4", _ZN3sce7Toolkit2NP2V28Matching17AttributeMetadataD1Ev) +STUB("gAeX4lrarjk", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEED1Ev) +STUB( + "gAfQ+fhs6fE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE10setContextEPNS2_10LibContextE) STUB("gAgN+HkiEzY", sceVoiceResumePort) STUB("gAhCn6UiU4Y", sceGnmSetVsShader) +STUB("gAjvCUHeAbE", _init) +STUB("gAmDIf0rNzw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEC1EPS8_) +STUB( + "gAq4Hp78WAY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEE3getEv) +STUB("gAsOAG-t-7s", SHA1_Update) STUB("gAtc79UTt5E", sceAmprMeasureCommandSizeWriteAddressFromTimeCounter_04_00) +STUB("gAvF0fPDITg", + _ZNK3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse14accountIdIsSetEv) STUB("gAyT42nwElM", sceShellCoreUtilGetCheckerStringEx) STUB("gB+OkFvkSXE", sceCamera2SetHue) +STUB("gB-Yi9qahc4", _ZN8meta_gen13JpegRetriever15ProcessIPTCDataEv) +STUB( + "gB65og2BYlU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB( + "gBJl7oZMIJA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) STUB("gBLMGhB6B9E", sceUserServiceSetAgeVerified) +STUB("gBLonhzYD8c", mono_aot_Sce_Vsh_DbPreparationWrapperjit_got) +STUB("gBMsh-Qa5rM", g_JSAPIWrapperObjectPoison) +STUB( + "gBY73XS9QN0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEEaSERKSA_) +STUB("gBZnTFMk6N0", _ZTISt10moneypunctIwLb1EE) +STUB("gBcHNw5c3Ng", _ZN7WebCore21ISOTrackEncryptionBoxC1ERKS0_) +STUB("gBeifc27nO4", _ZN3sce2np10NpOnlineIdC2Ev) +STUB("gBjrBKCIUVA", _ZN3sce7Toolkit2NP2V29Challenge13ChallengeDataD1Ev) +STUB( + "gBnrzm5RFYo", + _ZN7WebCore21SerializedScriptValueC2EON3WTF6VectorIhLm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) STUB("gByWl2lZ3Eg", sceMoveGetCalibrationInfo) +STUB("gC0DGo+7PVc", _ZGVNSt7collateIcE2idE) +STUB( + "gC2eIfPyp64", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("gC2k54oPeFY", png_malloc_default) +STUB( + "gC5wHOdCtQE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEE11release_refEv) +STUB( + "gC65rwYXfPY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEEC2ERSA_) +STUB( + "gC7Xz3pKngI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "gC8BoQoW8Eo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE4sizeEv) +STUB( + "gC8yVxSCTFY", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13integer4IsSetEv) STUB("gCA-D2wiiD0", sceUltReaderWriterLockDestroy) +STUB( + "gCDJz25CjkY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEE5resetEPS9_) +STUB("gCFmZWNDeMU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE7reserveEi) +STUB( + "gCGmKUN78kk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE10setContextEPNS2_10LibContextE) +STUB("gCGvxqrkDU4", mono_class_num_properties) +STUB( + "gCRgHjzzWw4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEppEv) +STUB("gCWqjdrnC9g", _ZNK7WebCore11MediaPlayer28requiresImmediateCompositingEv) +STUB( + "gCblOhBOMtY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEC2Ev) STUB("gCeAI57LGgI", sceUltUlthreadJoin) +STUB("gCf7+aGEhnU", __clzdi2) +STUB( + "gCjNhsB8JK4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) STUB("gCjTEtEsOOw", sceHmdInternalMmapGetModeId) +STUB( + "gCjpmcU1ATs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) STUB("gCmQm6dvMxw", sceAudioPropagationReportApi) +STUB("gCtwryMWXrE", __tsan_atomic64_fetch_and) +STUB("gCx93FeUqcg", WKBundleDOMWindowExtensionGetTypeID) +STUB("gD+Q++3YwBQ", _ZN7WebCore9HTMLNames24autopictureinpictureAttrE) +STUB("gD1m+NqX994", _ZN3WTF31NonSharedCharacterBreakIteratorD1Ev) +STUB("gD21JXx6j-U", _ZN7WebCore4PageC2EONS_17PageConfigurationE) +STUB( + "gD2JbtjjRVg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEC2EPNS2_10LibContextE) +STUB("gD32LzUw9AQ", _ZNK9Inspector14ConsoleMessage5levelEv) STUB("gD4wh2+nuuU", sceSystemServiceInitializeForShellCore) +STUB("gD8Fx0ZN25Q", rgctx_fetch_trampoline_rgctx_61) +STUB("gDCWqaQENaw", _ZN3JSC4callEPNS_14JSGlobalObjectENS_7JSValueERKNS_7ArgListEPKc) +STUB( + "gDKnDynF+1k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEmmEv) STUB("gDSvt78H3Oo", sceGameLiveStreamingScreenSetMode) +STUB( + "gDXBkAwOrWM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEEaSERKSA_) +STUB( + "gDXCuQeK0fU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "gDd+XfaxvvI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEED1Ev) STUB("gDm5a6GSE94", scePlayerInvitationDialogTerminate) +STUB("gDo9Uhm1M3Q", uprv_realloc) +STUB("gDsvnPIkLIE", _ZNSt11regex_errorD1Ev) +STUB( + "gDufdmAiUKQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "gDyj9EfqXyg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEptEv) +STUB("gE+M+U9p4Mo", _ZN3WTF6Thread20initializeCurrentTLSEv) +STUB("gE+nHqJuNlU", _ZN7WebCore37BasicComponentTransferFilterOperationD1Ev) +STUB( + "gE2Ztsrw2NI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEEC2ERKSA_) +STUB("gE2z3yI+8Fw", _ZN9Inspector24BrowserBackendDispatcherD1Ev) STUB("gE40jgJgPsk", sceAvSettingChangeOutputModeForDiag) +STUB( + "gE8QnSUqITA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEppEi) +STUB("gE9uA4PkGX8", + _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOffer28getxPsnAcceptPlatformNamePs5Ev) STUB("gEBIkRrqDBA", sceMatUnregisterAllResourcesForOwner) +STUB("gEFCIO5VsW0", _ZN3JSC7Symbols29copyDataPropertiesPrivateNameE) +STUB( + "gEHUoaqG4lw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) STUB("gELp9ue2ccQ", sceSystemServiceOpenTournamentOccurrence) +STUB("gEOuU7a3mw4", _ZTVN9Inspector30WorkerBackendDispatcherHandlerE) +STUB( + "gERQO7gDxhs", + _ZN15AbstractStorage14TwitterStorage7GetItemERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_4ItemEE) +STUB("gEV0JIqdYdg", WKContextMenuItemGetEnabled) +STUB( + "gEVAC2PJwGg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEaSERKS9_) +STUB("gEYDrUZ4RH0", _ZN3WTF10TextStreamlsEd) +STUB("gEe-fgf+6ao", _ZN7WebCore21DiagnosticLoggingKeys27networkCacheUnusedReasonKeyEv) +STUB( + "gEeQwVJxpJs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE5beginEv) +STUB("gEf4yYNjoi0", generic_trampoline_delegate_p) +STUB("gElXE+OeQvA", WKContextConfigurationCreate) +STUB( + "gEn3CP-VaeU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("gEn4o7mSMnY", png_get_sBIT) +STUB( + "gEnkHPK-D7I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("gEoCCr0gCjQ", _ZN3sce7Toolkit2NP2V26Friend7Request10GetFriendsD1Ev) STUB("gEokC+OGI8g", sceHmdDistortionGet2dVrCommand) STUB("gEpBkcwxUjw", sceKernelAprResolveFilepathsToIdsAndFileSizes) +STUB("gEs0lindnCY", YGNodeFreeRecursive) +STUB("gEvnF0rDgnA", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification16NewInGameMessageEE3getEv) +STUB( + "gExZRwB3RMc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("gF2IDft5Erk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEdeEv) +STUB("gF5aGNmzWSg", _ZNSt9_Num_base13has_quiet_NaNE) STUB("gF8+lvc7GuQ", sceHmd2GetFieldOfViewWithoutHandle) +STUB( + "gF8E-xnYiF8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEE11release_refEv) +STUB("gFA59beSQSE", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11EntitlementEED2Ev) STUB("gFB0RmKjyaI", sceNpManagerIntGetNpIdByOnlineId) +STUB( + "gFDXaF09IxM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEE5resetEPS6_) +STUB( + "gFEZ+WDc2GY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB( + "gFMESADiArc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEneERKS9_) +STUB( + "gFRlgMrW4eM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEEC2ERKSA_) STUB("gFSmD8eAI-4", sceNpManagerUtilGetVshEapScopeList) +STUB("gFXm4KsdCOg", sqlite3_set_authorizer) +STUB( + "gFlvNmUaVYI", + _ZN9Inspector21PageBackendDispatcher12snapshotNodeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("gFmBMJIYwdo", _ZNK7WebCore3URL4pathEv) +STUB( + "gFmXfDVmnCY", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("gFwrGZX2VHg", JSPropertyNameArrayGetCount) +STUB( + "gG-CBvVtK5I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE8pushBackERKS8_) +STUB("gG37mGRJlBQ", ulist_resetList_67) +STUB( + "gG8x2+EFqRE", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setInteger4ERKi) +STUB("gG8yHEM0d-4", _ZN9Inspector22AuditBackendDispatcherD2Ev) +STUB( + "gGKkcyVrYCY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("gGNk4Be0XjU", _ZN7WebCore24StorageNamespaceProvider21localStorageNamespaceEN3PAL9SessionIDE) +STUB("gGRP10YAMnU", _ZN7WebCore20PasteboardCustomData16fromSharedBufferERKNS_12SharedBufferE) +STUB("gGVdICktIww", _ZNK7WebCore11FrameLoader14frameHasLoadedEv) +STUB( + "gGVpS8dCY5Y", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("gGbAjhGYyEs", _ZN3sce7Toolkit2NP2V210Tournament27TeamVsTeamTournamentDetailsC2ERKS4_) STUB("gGbu3TZiXeU", sceUserServiceSetGlsCameraContrast) +STUB("gGgB5EMTtvE", _ZN3JSC7Symbols36dependencyKeysIfEvaluatedPrivateNameE) +STUB("gGi7ubiUqlg", JVM_DefineClass) +STUB("gGiLveZRgf8", Java_java_lang_System_initProperties) +STUB("gGkAhbLKpaU", _ZN3JSC17MarkingConstraintD0Ev) +STUB("gGkwvDqAk2Q", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEEC1ERKS7_) +STUB("gGliPEompsM", _ZNK3sce16CommonDialogUtil6Server9getUserIdEv) +STUB("gGllCm28ym8", _ZN12video_parser13cVideoMetaVWG15convMetaEncTypeEt) +STUB( + "gGriEB2FPRc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEdeEv) +STUB( + "gGw4Py0WUYQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEdeEv) +STUB( + "gGwoDP5aznY", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionProperties35getxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB( + "gGyrnOc6Fhk", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126BandwidthDownstreamMetrics18setConfidenceScoreERKi) +STUB( + "gH-YJj6Gp-I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEEaSERKSA_) +STUB( + "gHBkvbvk2a8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB("gHM5GM7hV1k", mono_aot_System_IO_Compressionjit_got) +STUB( + "gHP25DOX9Co", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEEptEv) +STUB("gHR0F7fclX8", mono_aot_Sce_Vsh_VideoPlayerjit_got) +STUB("gHTNRZborWs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEED2Ev) +STUB("gHUT16QSm5Y", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTicketsC2Ev) +STUB("gHW1YCnRe9s", _ZN9Inspector25ConsoleFrontendDispatcherC1ERNS_14FrontendRouterE) +STUB("gHYFOTGitg4", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V16RatingC1EPNS1_6Common10LibContextE) +STUB( + "gHZXFd07n2w", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEE3getEv) +STUB("gHfTq706guE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEED2Ev) +STUB("gHgMyDffneo", + _ZN3WTF16AtomicStringImpl11addSlowCaseERNS_17AtomicStringTableERNS_10StringImplE) +STUB("gHjoitPITwU", _ZNK15AbstractStorage18DailymotionContent13GetCapabilityEv) +STUB( + "gHkQHXwZsHg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEEC2Ev) +STUB( + "gHl5aBA1Iqs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEE7add_refEv) +STUB( + "gHnVCd5LIDQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEE11get_deleterEv) +STUB("gHptTIMBmnI", _ZN3JSC7Symbols20matchSlowPrivateNameE) +STUB( + "gHqDh6c5ASM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "gHslrT+T8LY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEmmEi) +STUB( + "gHw3XOKKEA8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEEC2ERSA_) +STUB("gHx2NAU7W4I", mono_aot_Sce_Vsh_ShellUIUtilWrapperunbox_trampoline_addresses) STUB("gHxxOQxKW3E", sceFiosIOFilterGetInfo) STUB("gI+XEd5mWPU", sceSlimglCompositorReleaseIndex) +STUB("gI1n3sN+DpM", _ZN9Inspector8Protocol3CSS11CSSProperty8PriorityE) STUB("gI4t194c2W8", sceRtcTickAddWeeks) +STUB( + "gI6vNnGwR6c", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser17unsetmemberFilterEv) STUB("gI9jbGyrJZo", sceDbgVideoOutRemoveProcessAttribute) +STUB("gI9un1H-fZk", _Fetch_or_seq_cst_4) +STUB("gID4V0+Uk+k", _ZN15AbstractStorage14YoutubeContent4OpenEit) +STUB("gIFT51r3Epw", _ZN3sce7Toolkit2NP2V212ActivityFeed14PlayedWithFeedaSERKS4_) +STUB("gINcKTbrqk4", _ZN15AbstractStorage12Serializable13writeExternalESt10shared_ptrINS_7ContentEE) +STUB( + "gIOpQTUyorI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEE7add_refEv) +STUB( + "gIPY12L-P4Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEEaSERKSA_) +STUB("gIXmwyqK5wI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEED2Ev) +STUB( + "gIbQOmmIzww", + _ZN7WebCore13KeyboardEvent17initKeyboardEventERKN3WTF10AtomStringEbbONS1_6RefPtrINS_11WindowProxyENS1_13DumbPtrTraitsIS6_EEEERKNS1_6StringEjbbbbb) +STUB("gIbqMFTRUS0", mono_aot_Sce_Vsh_PsnUtilunbox_trampolines_end) +STUB("gIc9KgCsbRg", _ZN19JITSharedTextMemory9sbrk_infoE) +STUB("gIcX26xWiUw", AnnotateEnableRaceDetection) +STUB( + "gIdhsi+XljE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEE5resetEPS6_) +STUB( + "gIgwIeS8hWg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEEC2ERKSA_) +STUB("gIj3GJuZXb0", + _ZN3WTF13StringBuilder26extendBufferForAppending16ENS_7CheckedIiNS_14RecordOverflowEEE) +STUB( + "gIweVx3DNBw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEED1Ev) +STUB("gJ2f47h5YLM", mono_aot_Sce_Vsh_Np_Papcunwind_info) +STUB( + "gJ4GmjeywLI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE4sizeEv) +STUB("gJ7xP2fcHUI", utrie2_close_67) +STUB( + "gJ84-5twqRo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEixEm) +STUB("gJCqCiXkwDU", WKWebsiteDataStoreCreateWithConfiguration) STUB("gJD0VSnMfW0", sceNpTrophySystemWrapGetPlayedTrophyTitles) STUB("gJGHdW0bQmw", sceShellUIUtilGetDefaultQueryParameter) +STUB("gJILT2od6Vo", _ZN3sce7Toolkit2NP2V28Commerce7Request26DisplayProductBrowseDialogC1Ev) +STUB("gJLQdsHXbro", _ZStL3fin) +STUB( + "gJMaIxO4XRc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEEC1ERKSA_) +STUB("gJPfjNZKp3k", mono_aot_Sce_Vsh_Orbis_AbstractStorageunbox_trampolines_end) +STUB( + "gJUdk9pb5VQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEeqERKS9_) +STUB("gJUxthIhq+g", ures_findResource) +STUB( + "gJZ72Uzim6c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEC2Ev) +STUB("gJZRi5WuXZI", reboot) +STUB( + "gJqTkliOc-Y", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEeqERKS9_) STUB("gJqqsinextg", sceCamera2GetGamma) +STUB("gJs8iDzrY+4", _ZN3sce2Np9CppWebApi7Matches2V127ResponseTeamMemberStatisticD2Ev) +STUB( + "gJsiQlxIbqg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("gJvjZql+M48", _ZN7WebCore8SVGNames18stroke_opacityAttrE) +STUB("gK-n3kGdauA", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15StatsD1Ev) STUB("gK3EX6ZKtKc", sceSystemStateMgrTurnOff) +STUB( + "gKBI3aLqOD8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE21intrusive_ptr_add_refEPS9_) +STUB("gKCPof1ltoY", _ZN3sce7Toolkit2NP2V28Commerce10ContainersC2ERKS4_) +STUB( + "gKFZ6OSf3OM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "gKHDRY50uDs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEneERKS9_) +STUB("gKJBwatoYPk", _ZL31_delete_array_with_size_nothrow) +STUB("gKLFstTZNvw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEE11get_deleterEv) +STUB( + "gKROYX6VzG0", + _ZN7WebCore22CacheStorageConnection21openOrRemoveCompletedEmRKNSt12experimental15fundamentals_v38expectedINS_14DOMCacheEngine30CacheIdentifierOperationResultENS4_5ErrorEEE) +STUB("gKSUt1SXvDs", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEEdeEv) +STUB("gKb7Ad0Hr04", _ZN3sce2np10JsonObjectD0Ev) +STUB("gKgIih+obU0", _ZN7WebCore8SVGNames8biasAttrE) +STUB("gKhYub8Qchk", mono_aot_Mono_Securityunwind_info) +STUB( + "gKjxkEzQAfo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("gKl3XyAKxeU", YGNodeStyleGetPositionType) +STUB("gKpVsuLluB4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE8copyFromERKS7_) STUB("gKqzW-zWhvY", pthread_mutex_isowned_np) +STUB( + "gKrZATTst9o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEC1EPS8_) +STUB("gKruhA35EXQ", _ZN3sce2npgeERK10SceRtcTickRKNS0_4TimeE) +STUB("gKrz25sSuAI", uprv_compareEBCDICPropertyNames) +STUB( + "gKuP4Loclt4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEEC1Ev) +STUB( + "gKxaoBlncss", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEeqERKS9_) +STUB( + "gL-U7FCmBXs", + _ZN23sceMetadataReaderWriter15ParserInfoTable17getParserInfoListERSt6vectorINS_10ParserInfoESaIS2_EE) +STUB( + "gL06dJCuJTM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "gL0e2pY7Q9Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE7reserveEi) +STUB( + "gL1nIDcfblY", + _ZN3sce2Np9CppWebApi14SessionManager2V139RequestPlayerSessionMemberPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_32RequestPlayerSessionMemberPlayerEEE) +STUB("gL3GtAnpxis", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V114ResultsVersionEEC2EPS6_) +STUB( + "gL4A3thfpkQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "gL4J2k2+o8A", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetInteger4Ev) +STUB( + "gL4Z3v2HBeM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEEaSERSA_) +STUB( + "gLDMFFNgGdE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEED1Ev) +STUB("gLGmR9aan4c", __isinfl) +STUB("gLM4PHewJwA", _ZNK7WebCore27DocumentTimelinesController22animationsAreSuspendedEv) +STUB("gLOG8uj3iDA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEEC2EPKS6_) +STUB( + "gLSvwJSkSjI", + _ZN9Inspector14InjectedScript10getPreviewERN3WTF6StringERKS2_RNS1_6RefPtrINS_8Protocol7Runtime13ObjectPreviewENS1_13DumbPtrTraitsIS9_EEEE) +STUB("gLTNH0EWMic", _ZN3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResultsD2Ev) +STUB("gLU-NsaNP3k", _ZN7WebCore12JSTimeRangesD1Ev) +STUB( + "gLVhFQf2vtk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("gLWISFABeAY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEC1Ev) +STUB( + "gLX0YjDvfI0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE4sizeEv) +STUB( + "gLatw3jRdgU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("gLb38-yOLMw", _ZN7WebCore16UserGestureTokenD2Ev) +STUB( + "gLdUA1GALMQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEE7get_refEv) STUB("gLeVhOUfwKc", sceAppInstUtilAppInstallContentPush) +STUB( + "gLijHlQrSJ0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEptEv) STUB("gLjLCP6tKuw", sceSulphaShutdown) +STUB("gLpbopYIBrw", _ZN8meta_gen17CommonFsOperationC1EPKc) +STUB( + "gLyB5bJMrGc", + _ZN9Inspector28DOMStorageFrontendDispatcher21domStorageItemRemovedEN3WTF6RefPtrINS_8Protocol10DOMStorage9StorageIdENS1_13DumbPtrTraitsIS5_EEEERKNS1_6StringE) +STUB("gLzCc67aTbw", _ZN3sce4Json5Value10referValueEm) +STUB( + "gM49QpmexdQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEneERKS9_) +STUB("gMJ7Iq1SFTE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE7reserveEi) +STUB( + "gMW7Sc89LXo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "gMYqbiDrcnA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEC2Ev) STUB("gMbOn+-6eXA", sceNpScoreGetFriendsRankingA) STUB("gMcfOtHW6zk", sceFiosFHPwriteSync) +STUB("gMjlX7ga2Ps", _ZN7WebCore9HTMLNames16onbeforeloadAttrE) +STUB("gMkB0Cg1emY", _ZN3IPC15ArgumentEncoder6encodeEj) +STUB( + "gMkqQ10IsHc", + _ZN3sce2Np9CppWebApi7Matches2V128RequestTemporaryMatchResults10setVersionERKNS3_14ResultsVersionE) STUB("gMlHVhsO9lk", sceSpPthreadMutexDestroy) STUB("gMlY6eewr-c", sceNpAllocateKernelMemoryWithAlignment) +STUB( + "gMrrYGeVPHw", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi32ParameterToPostGameSessionsTouch13isInitializedEv) +STUB("gMwCt1k6PLI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEE5resetEPS6_) +STUB("gMwkpZNI9Us", _ZNSt8messagesIwED0Ev) +STUB("gMxgHWueHYc", _ZN7WebCore13CSSStyleSheet5rulesEv) +STUB("gN3BSum8Y0c", il2cpp_image_get_entry_point) +STUB( + "gN4g3E-eSRw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEE11release_refEv) +STUB( + "gN7dmLssqhI", + _ZN8meta_gen11MsvPromoter26setKeyValue_TBLI_CodecTypeENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti) +STUB( + "gN8hDlb5nCE", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEEC2Ev) +STUB("gNM1XISuMUQ", WKWebsitePoliciesGetAllowedAutoplayQuirks) +STUB("gNMFB5DnllQ", Java_com_sony_gemstack_io_FilePath_n_1readdir) +STUB("gNQ1V2vfXDE", setjmp) +STUB("gNQcjhVwM+U", _ZNK9Inspector18InjectedScriptBase31hasAccessToInspectedScriptStateEv) +STUB("gNR-zYwY01A", GCC_except_table98) +STUB("gNZfsxXLqOA", unum_getAvailable_59) +STUB( + "gNi9kPAY6mY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE21intrusive_ptr_sub_refEPS9_) +STUB("gNmmEE20P-w", + _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets13isInitializedEv) STUB("gNn+EZtm1i0", sceLncUtilKickCoredumpOnlyProcMem) +STUB("gNrgpeKseC8", _ZNSt15basic_streambufIwSt11char_traitsIwEED2Ev) +STUB( + "gNvGTbhOC88", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Network8Response6SourceEEESt8optionalIT_ERKN3WTF6StringE) STUB("gO98NioN5FM", sceKernelReleaseToolMemory) +STUB( + "gO9TQ1-HJdo", + _ZN3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayerC2EPNS1_6Common10LibContextE) +STUB("gOGGCaj+TLE", _ZN4Manx10FontStream4seekEjPv) +STUB("gOGhJBRxnS8", WKPageCountStringMatches) +STUB( + "gOHlEWorSCs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("gOLcBxGakMw", _ZN22MmsMdCommonFsOperation12readToBufferEmjPvj) +STUB( + "gOLoorwvJcw", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("gOMMTICNZ5w", WKPreferencesGetWebAuthenticationLocalAuthenticatorEnabled) +STUB("gOMVClnL0Mg", _ZN7WebCore21NetworkStorageSessionD1Ev) +STUB( + "gON7IFUGUF8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEE5resetEPS9_) STUB("gOQx5OZhArI", sceClPthreadMutexDestroy) +STUB( + "gOTdLRKqvVE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEEC2ERKSA_) +STUB("gOZqKFg4dTQ", _ZN3WTF17TextBreakIteratorC2ENS_10StringViewENS0_4ModeERKNS_12AtomicStringE) STUB("gObODli-OH8", sceGnmRequestFlipAndSubmitDone) +STUB("gOfB92L-2uE", WKBundlePageInsertNewlineInQuotedContent) +STUB("gOiTCLJFNxA", _ZNK3sce2Np9CppWebApi7Matches2V128RequestTemporaryMatchResults10getVersionEv) +STUB("gOjURFF2pJk", + _ZN7WebCore21SerializedScriptValue6createEPK15OpaqueJSContextPK13OpaqueJSValuePS6_) +STUB("gOkOm9Vnf9s", SSL_CTX_use_PrivateKey) +STUB("gOmQbOkqJBE", SSL_free) +STUB("gOqID2v1crc", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToCancelTicketC2ERS5_) +STUB("gOqThDYWBBU", _ZNK7WebCore5Frame31displayStringModifiedByEncodingERKN3WTF6StringE) +STUB("gOxGOQmSVU0", _ZNSt13basic_filebufIcSt11char_traitsIcEED2Ev) +STUB( + "gOxnNkDY0wo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE21intrusive_ptr_sub_refEPS9_) +STUB("gOzIhGUAkME", _ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1EPKcm) +STUB( + "gP2ZeYANWZI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEEptEv) +STUB("gP4kC4C6u0s", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEEixEm) +STUB( + "gPLxmOVmBeM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEmmEv) +STUB("gPMCefxHpIA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEcvbEv) +STUB("gPYiacKjOTw", _ZN3JSC8Bindings8InstanceD0Ev) +STUB( + "gPbErJdI7go", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEEaSERS9_) +STUB( + "gPbWlholO8Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEEaSERSA_) +STUB("gPcQ3OrFBUA", _recvfrom) +STUB( + "gPe3KXjSgig", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEC1EPNS2_10LibContextE) +STUB( + "gPeDHnznr-o", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEptEv) +STUB("gPekw0GjuUA", _ZThn8_N6WebKit12ChildProcess23messageSenderConnectionEv) +STUB( + "gPgaHxmdgio", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEEdeEv) +STUB( + "gPif5q7bYPI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("gPlivtgaQkE", _ZN7WebCore11MessagePort22notifyMessageAvailableERKNS_21MessagePortIdentifierE) +STUB( + "gPnR+1xsnLQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEE3getEv) +STUB("gPqA+Yu+K7Q", uloc_minimizeSubtags_67) +STUB("gPueTGt98vU", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_15ActivityStoryIdEEC1Ev) +STUB("gPux+0B5N9I", _ZN3sce2np10NpOnlineIdC2ERKS1_) +STUB("gPvW0GsxzyY", _ZN3sce7Toolkit2NP2V28Matching9AttributeD1Ev) +STUB("gPwcbxBETE8", __tsan_atomic32_compare_exchange_strong) STUB("gPx1b36zyMY", sceSystemStateMgrSendCecOneTouchPlayCommand) STUB("gPxYzPp2wlo", sceGnmSqttSetUserData) +STUB("gQ0v9iNBI44", _ZNK3WTF6String15stripWhiteSpaceEv) +STUB("gQ3aL+5g6t8", _ZN3sce7Toolkit2NP17MessageAttachment17setAttachmentDataEPcm) STUB("gQ6cUriNpgs", sceNpMatching2JoinRoomA) +STUB("gQA5zRTZocw", ucptrie_internalSmallIndex_67) +STUB( + "gQCt8pKgIlU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEmmEi) +STUB("gQFVRFgFi48", __moddi3) +STUB("gQFyT9aIsOk", _ZN3sce2np4UserD1Ev) +STUB( + "gQGmUfdcKxw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEC2EPS8_) +STUB("gQHDXC6a7I8", mono_aot_Sce_Vsh_Np_Commonmethod_addresses) +STUB("gQIbmvD1F7o", _ULx86_64_access_reg) +STUB( + "gQJuYJDE8Z8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEED1Ev) +STUB("gQMAThHRwM4", mono_metadata_locate) +STUB( + "gQR6etM2ZpE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("gQX+4GDQjpM", malloc) STUB("gQXxz1IoL5U", sceKernelIccIndicatorShutdown) +STUB("gQaVw6164iE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEE7get_refEv) +STUB("gQbEaSb7FMY", _ZN3sce7Toolkit2NP2V211SharedMedia11ScreenshotsaSERKS4_) +STUB("gQce1dRFLic", WKSecurityOriginCopyProtocol) +STUB("gQe-+kFX0j8", _ZNK7WebCore6Editor37baseWritingDirectionForSelectionStartEv) +STUB( + "gQfqwbwDCJc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEppEi) STUB("gQh8NaCbRqo", sceUserServiceSetHmuZoom) +STUB( + "gQk+T1MmuHs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEaSERKS7_) +STUB("gQn3pCPXk4U", _ZThn664_N7WebCore24CoordinatedGraphicsLayerD1Ev) +STUB("gQrovTJq2Pk", ufieldpositer_open_67) +STUB( + "gQxW7z7bTDg", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V127ConnectionQualityProperties6toJsonERNS_4Json5ValueEb) +STUB( + "gQzR0P0bF4Y", + _ZN7WebCore15GraphicsContext15drawNativeImageERKN3WTF6RefPtrI14_cairo_surfaceNS1_13DumbPtrTraitsIS3_EEEERKNS_9FloatSizeERKNS_9FloatRectESE_RKNS_20ImagePaintingOptionsE) +STUB("gR04+LbypIY", _ZN3JSC23objectConstructorFreezeEPNS_9ExecStateEPNS_8JSObjectE) +STUB( + "gR1SliE2d6A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEaSERKS7_) +STUB("gR4S4V+xat8", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking10UsersRanksEEC2Ev) +STUB("gR8P+QJ3YlQ", _ZN3WTF9MediaTimeaSERKS0_) +STUB( + "gR8zxmpsFdM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEixEm) STUB("gRA2pp3a1-k", sceFiosFileTruncateSync) +STUB( + "gRGCRBt1o0Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEE3getEv) STUB("gRI+BnPA6UI", sceUserServiceSetParentalGame) +STUB("gRIwdpuqnvA", mono_shared_hashtable_set_assertions) +STUB( + "gRKSN5-1rcA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEE7get_refEv) +STUB( + "gRKjMTZ35F8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEED1Ev) +STUB( + "gRLZGhzq47g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE6resizeEj) +STUB( + "gRLui9SjMPA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEEaSERKSA_) +STUB( + "gRNVIinlv2E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEEC2ERKSA_) +STUB("gRNjVAmq-9U", _ZN12video_parser13cVideoPathMgv14GetLicenseNameEPc) +STUB("gRNu4fkK4tw", _ZN7WebCore13getLogChannelERKN3WTF6StringE) +STUB("gRSheDNw7l4", _ZN3sce7Toolkit2NP2V27Session11SessionDataaSERKS4_) +STUB( + "gRV9y5UZ7eE", + _ZN7WebCore15GraphicsContext15setFillGradientEON3WTF3RefINS_8GradientENS1_13DumbPtrTraitsIS3_EEEE) +STUB( + "gRVCb6uU+CI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEC2Ev) +STUB("gRVX2CeO2WA", MASSMCDeleteMessage) +STUB( + "gRVj4VyeDBc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE6resizeEj) +STUB("gRc3QyYYgXg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEEneERKS7_) STUB("gRiilVCvfAI", sceNpWebApiSetMaxConnection) +STUB( + "gRmPxANZTWU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEED2Ev) +STUB( + "gRnxV4GAtjg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEC1ERS7_) +STUB("gRtM-VlS-pI", _ZTVN7WebCore16BlobRegistryImplE) +STUB( + "gRvS2husZrM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEeqERKS9_) +STUB("gRw4XrztJ4Q", _rtld_thread_init) +STUB("gRyLWstYGXM", _ZNK7WebCore13JSHTMLElement7wrappedEv) +STUB("gS-2djRfZZ8", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE7reserveEi) +STUB( + "gS2XvTF8wIk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEC2ERS7_) +STUB( + "gSF144aZB1Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) STUB("gSF5OsXdfIg", sceAmprCommandBufferWriteAddressFromCounterOnCompletion) +STUB("gSJ7ylJWzo0", _ZN7WebCore6RegionaSEOS0_) STUB("gSRnr79F8tQ", sceAgcDriverSubmitAcb) +STUB( + "gSX-u1rB4LI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEeqERKS9_) +STUB("gSXqwBgfqH4", _ZN3sce7Toolkit2NP2V211SharedMedia6VideosC2Ev) +STUB("gSaatiDEGSs", unum_formatDouble_67) +STUB("gSe1f2ITi7E", _ZN15AbstractStorage12LocalStorageD1Ev) +STUB( + "gSex3sUDto8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("gSjDXUEB5Uk", _ZN9Inspector26TimelineFrontendDispatcher18autoCaptureStartedEv) +STUB( + "gSm6usMtuG0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "gSqylOU027I", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetAccountId2OnlineId10initializeEPNS1_6Common10LibContextEm) +STUB( + "gSrGFKvrzek", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "gSsk3YTsSuw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEplEm) +STUB("gStShPRXKPk", _ZNK3WTF10StringView16GraphemeClusters8IteratordeEv) +STUB("gSveh4yZbi0", __libunwind_Unwind_GetCFA) +STUB("gT3MrMvOoGY", _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody16unsetRulesetNameEv) +STUB( + "gT4VokBML0k", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEixEm) +STUB("gT6fmEJqgZc", _ZNK7WebCore12ISOWebVTTCue8sourceIDEv) +STUB("gT8rVA6JUZ4", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_16NetStateDetailedEEC1Ev) +STUB( + "gT90znimMdU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE5beginEv) STUB("gT9LZ+qEG-M", sceNpManagerUtilDebugDumpByte) +STUB("gTD5beqJ81U", glGetIntegeri_v) +STUB("gTDwXA62D5Y", _ZNK7WebCore8Document10vlinkColorEv) +STUB( + "gTMoOsMadQg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEE7add_refEv) +STUB("gTNjfocKYHU", _ZN7WebCore5ColorC2ERKS0_) +STUB("gTO7zb4lVNI", _ZN7WebCore11MemoryCache25removeResourcesWithOriginERNS_14SecurityOriginE) +STUB("gTPsW+WeIYQ", _ZN7WebCore8SVGNames20stroke_dasharrayAttrE) +STUB("gTSiXz3DUjs", _ZN7WebCore18ScrollingStateTreeD1Ev) +STUB( + "gTUsqYGksNg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEE3getEv) +STUB("gTWWXt1vhaU", CRYPTO_memcmp) +STUB( + "gTWz90bYZMs", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setBoolean4ERKb) +STUB( + "gTZNfDt50p8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEE11get_deleterEv) +STUB("gTbEEYZNlbI", _ZN3sce3pss4core8graphics14NativeGraphics14MapDepthBufferEv) +STUB( + "gTgI8FTlpMI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEE11get_deleterEv) STUB("gThJrbt1Ojw", sceBdSchedDeconfigure) STUB("gThZqM5PYlQ", sceNgs2SystemLock) +STUB( + "gTiHp+M4wFM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEEC1Ev) +STUB( + "gTlfdq2niiQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEdeEv) +STUB( + "gTm7d4zWWQI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE5abortEv) +STUB("gTuXQwP9rrs", _Mtx_unlock) +STUB("gTwr4SgkrH8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEC2ERKS7_) +STUB( + "gTzaUQ+Vam8", + _ZN9Inspector21PageBackendDispatcher7archiveElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("gU19IpVh5DQ", _ZN3JSC10ConfigFile14setProcessNameEPKc) +STUB("gUAJQaumS+A", _ZN7WebCore16DatabaseProviderC1Ev) +STUB("gUGtCftPWjg", mono_profiler_install_exception) STUB("gUNabrUkZNg", sceAudioInDeviceIdHqOpen) STUB("gUPGiOQ1tmQ", scePlayGoSetToDoList) STUB("gUSHu1AoCgk", sceVnaRequestDownloadCahcedTts) +STUB( + "gUSI9Sn4Ymo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEeqERKS9_) +STUB("gUTY0cOaf3E", _ZN7WebCore9HTMLNames14spellcheckAttrE) +STUB( + "gUfDTTbc+Rw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE3endEv) +STUB("gUgoiHAV0rM", + _ZN3JSC23generateProgramBytecodeERNS_2VMERKNS_10SourceCodeEiRNS_18BytecodeCacheErrorE) +STUB( + "gUhw8ZMenq4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("gUpBPGFwI30", + _ZN3sce2Np9CppWebApi14SessionManager2V111GameSessionC1EPNS1_6Common10LibContextE) +STUB( + "gUyJP3HRzHQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE5clearEv) +STUB( + "gV-O6Lv6jRU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB("gV-s05bBN9U", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_7TssDataEEC1Ev) +STUB("gV0zqETp5zY", res_countArrayItems_67) +STUB( + "gV7rHqCEpiI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEE5resetEPS6_) STUB("gV9-8cJPM3I", sceRemoteplayImeFilterResult) +STUB( + "gVFzRDt1Ek8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE3endEv) STUB("gVNNyxf-1Sg", sceNpWebApiCheckTimeout) STUB("gVQpMBuB7fE", sceFontGetGlyphExpandBufferState) +STUB("gVTWlvyBSIc", _ZNSo6sentryC2ERSo) +STUB( + "gVTsL96fNB0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEE3getEv) +STUB( + "gVU-EI8voN4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE5emptyEv) +STUB( + "gVUm72fN85E", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEeqERKSA_) STUB("gVW1ZB-uUj4", sceNpManagerIntNpId2UserId) +STUB("gVaofuRvLdU", ksem_trywait) +STUB("gVbkspALW1k", _ZN9Inspector14InjectedScriptC1Ev) +STUB("gVf7xRLdWm8", FT_Stream_Close) +STUB( + "gVfZ1j2bhPM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEED1Ev) +STUB("gVhOIkr1KCU", mono_aot_Sce_Vsh_Webbrowser_XutilWrapperplt_end) STUB("gVioM9cbiDs", sceRazorCpuEndLogicalFileAccess) +STUB( + "gVlZ-fWiiy4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEppEi) +STUB( + "gVnqpMI6IGI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEC2EPKS8_) STUB("gVoOE32ATg0", sceCompositorSetCompositeCanvasCommandInC) +STUB( + "gVqKOfIB3po", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEmmEv) STUB("gVuGo1nBnG8", sceGnmSqttStopTrace) +STUB( + "gVw7NBBUQwc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEE11get_deleterEv) +STUB( + "gVy9wwlP3Bk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB("gVyCSJTFRbY", _ZN9Inspector22InspectorDebuggerAgent11addListenerERNS0_8ListenerE) +STUB("gW+And3d2E4", EC_POINT_new) +STUB( + "gW+fvO3r++U", + _ZN9Inspector21PageBackendDispatcher28getCompositingBordersVisibleElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "gW-YI2u1JOw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEEC2ERSA_) +STUB( + "gW5JJszGRLc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEixEm) STUB("gW6G4HxBBXA", sceSaveDataDebug) STUB("gW8qyjYrUbk", sceNpScoreCreateRequest) +STUB( + "gW94CPYFZyg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEEC2EPS9_PNS2_10LibContextE) STUB("gW9NKRTJrvE", sceUpsrvUpdateGetEulaStr) +STUB( + "gWDRvP6iSe0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEC2Ev) +STUB( + "gWE-butugqw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEC2EPS8_) +STUB( + "gWHsbgBBeRo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEneERKS9_) +STUB("gWINqHp3aq0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEE5resetEPS6_) +STUB("gWIdEEJaWoc", mono_aot_Microsoft_CSharpunbox_trampolines_end) +STUB( + "gWJ23xrA1XY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE10setContextEPNS2_10LibContextE) +STUB("gWLXqFf+5uI", _ZN3WTF13MonotonicTime3nowEv) STUB("gWMlFq4N9Lw", sceShellCoreUtilIsSharePlayCpuBudgetAcquired) +STUB("gWNKviFrCKg", CONF_modules_free) +STUB("gWR4Ab-qBsQ", _ZN3sce3pss4core9PsmObjectD2Ev) +STUB( + "gWUzVZ3Jbcg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEmmEv) +STUB( + "gWVbO68G4AI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE21intrusive_ptr_sub_refEPS9_) STUB("gWZikoR+g9g", sceVideoRecordingTerm) +STUB("gWeuA3QZ4tY", _ZTVN15AbstractStorage12LocalStorageE) +STUB("gWevp6rEByo", _ZNK7WebCore6Editor16fontForSelectionERb) +STUB( + "gWiIdl3BCD8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "gWjl1yW0edA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEC1Ev) +STUB("gWoKIDZQyQI", _ZN3sce7Toolkit2NP2V212NetworkUtils7Request19GetBasicNetworkInfoD1Ev) +STUB( + "gWzI108buYg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE4sizeEv) +STUB("gX-iCZHsM1w", ucln_common_registerCleanup_67) +STUB("gX27TghWOvI", delegate_virtual_invoke_imt_12) +STUB( + "gX2k4MSeD88", + _ZN3sce2Np9CppWebApi11Matchmaking2V125PlayerForOfferReadFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_18PlayerForOfferReadEEE) +STUB( + "gX3IZ4LMt+Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "gX5N6Fjj29Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEEC2Ev) +STUB( + "gX8-5TZCiUI", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB( + "gXCsE2pd-9Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "gXFK+CHQl3k", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEcvbEv) +STUB( + "gXKveFqjttY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEE5resetEPS6_) +STUB("gXUgaT+IxrY", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V128SetMultiVariablesRequestBodyD1Ev) +STUB("gXUoxM2WN8Q", WKPreferencesSetAccessibilityObjectModelEnabled) +STUB("gXWaf+PJLEI", fuse_dirent_size) +STUB("gXbSjAwRIhM", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error12messageIsSetEv) +STUB("gXd5YDlR36k", coil_pclose) +STUB( + "gXi8Y60fdco", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEED1Ev) +STUB("gXij3LJRnFA", WKMediaSessionMetadataCopyArtist) STUB("gXiormHoZZ4", sceNgs2SystemRunCommands) +STUB( + "gXoUhbWXUxA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEEcvbEv) +STUB( + "gXokItpLb0I", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEED1Ev) +STUB("gXqXVZedqcU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10ContainersEEC1Ev) +STUB( + "gXrGIfpK+Rw", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_18GameCustomDataItemENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB( + "gXrKK8lllyI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEC1EPS8_) +STUB("gXuYfkkAi4A", _ZNK7WebCore11MediaPlayer16wouldTaintOriginERKNS_14SecurityOriginE) +STUB( + "gXwdouZ1sF0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "gXxBmrE4A4o", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEixEm) +STUB("gY1GiSuGTtU", _ZN9Inspector15RemoteInspector14setupCompletedEj) +STUB("gY1gQXkAUS8", _ZN3sce2np14HttpConnectionC2EP16SceNpAllocatorEx) +STUB("gY2jWNd2xEs", _ZNK7WebCore15GraphicsContext15platformContextEv) +STUB("gY2judYG38M", _ZNK7WebCore11MediaPlayer41mediaContentTypesRequiringHardwareSupportEv) +STUB( + "gY9seix0dm4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEC2EPKS8_) +STUB( + "gYCVTgKszRw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEEC1ERKSA_) +STUB("gYFKAMoNEfo", tzset) +STUB("gYIlPJ+2sm0", __lshift_D2A) +STUB("gYJFBIIydKQ", _ZN7WebCore5Frame17setTextZoomFactorEf) +STUB( + "gYMJ5-j-YJ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "gYVZLxcyuB4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE5beginEv) STUB("gYXxtLzFU8Y", sceShellCoreUtilDeleteSmrHddDummyData) +STUB("gYaaT-4LEtE", rgctx_fetch_trampoline_rgctx_108_p) +STUB( + "gYbC3+pf0fA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEdeEv) +STUB( + "gYdXkglsXMU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE10setContextEPNS2_10LibContextE) STUB("gYg5m+zII9w", sceDeci5Close) +STUB("gYlF567r3-A", _ZNKSt7collateIcE12do_transformEPKcS2_) +STUB( + "gYqkfSt+r4o", + _ZN3sce2Np9CppWebApi11UserProfile2V125GetFriendsResponseFactory7destroyEPNS3_18GetFriendsResponseE) STUB("gYr9dLq8Y10", sceContentBinderSearchDifference) +STUB( + "gYrAyft6lUg", + _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_21PlayerForTicketCreateEEEEE) +STUB( + "gYvT9bFH+BE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE5beginEv) +STUB( + "gYxDgAeV5Lc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("gYxLxFK-CBs", _ZN3sce2Np9CppWebApi7Matches2V124RequestCompetitiveResult14getTeamResultsEv) +STUB("gZ1FWDRrZSk", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V15GroupEEneERKS7_) +STUB("gZ8DUl5rrvs", mono_bitset_alloc_size) STUB("gZ9TpeFQ7Gk", sceHttpSetPolicyOption) +STUB("gZCuj7o3iRc", _ZNK3sce2Np9CppWebApi6Common6VectorIfE4sizeEv) +STUB( + "gZNF8TcG0Vo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEC2EPKS8_) +STUB("gZQXZKUNsvQ", _ZN4IPMI4impl10ServerImpl24doAsyncCallLegacyRequestEiPvi) +STUB( + "gZTFql+wDcg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEE7get_refEv) STUB("gZTQm1FBFSw", sceIduUtilIsStaffMode) +STUB("gZWsDrmeBsg", __mulxc3) +STUB("gZaI4GP1aVo", Java_java_awt_GnmGraphics_nativeChangeClipRect) +STUB("gZf5hz17i9w", + _ZN3WTF8JSONImpl5Value7asArrayERNS_6RefPtrINS0_5ArrayENS_13DumbPtrTraitsIS3_EEEE) +STUB( + "gZmImv89cqQ", + _ZN7WebCore24CoordinatedGraphicsLayer26setContentsToPlatformLayerEPN7Nicosia13PlatformLayerENS_13GraphicsLayer20ContentsLayerPurposeE) STUB("gZpb1ztmYdY", sceNpGriefReportWriteActivityAttachFile) +STUB("gZvNGjQsmf8", _ZTISt5ctypeIcE) +STUB("gZx-0IkOsEI", searchCommInfoListByNotKeyButProtocolNumber) +STUB( + "ga1WS-ze6go", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEE11release_refEv) STUB("ga2z3AAn8XI", sceUserServiceGetUserGroupNameList) +STUB("ga3epfbYdYw", _ZN3WTF7RunLoop9TimerBase4stopEv) +STUB("ga4OW9MGahU", _ZN3sce2np8WorkItemD2Ev) STUB("ga5GOgThbjo", sceImeVshSetPreeditGeometry) +STUB("ga5Okg-do-c", _ZTVN7WebCore30InvertLightnessFilterOperationE) +STUB( + "ga6E-bSmqUk", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS5_INS7_7DataApi25UploadDataResponseHeadersEEEEEiRNS2_19UpStreamTransactionIT_T0_EE) +STUB( + "ga7Z49ZtvSA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEC2EPS7_PNS2_10LibContextE) +STUB( + "gaBkE02hs8Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEC2EPNS2_10LibContextE) +STUB("gaFx7Axnsuo", glGetVertexAttribiv) +STUB( + "gaG4fFmXhBA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEmmEv) +STUB("gaNvfJEnzNo", _ZNK3sce2Np9CppWebApi6Common6VectorIlE3endEv) +STUB("gaQDIwAsA3Y", YGNodeCopyStyle) +STUB( + "gaU2vwi0Ohg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEaSERKS9_) +STUB( + "gaU41tDnIdo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEE5resetEPS8_) +STUB("gaVlLImlOmY", __tsan_read16) +STUB("gacfOmO8hNs", ceil) +STUB( + "gahPm4BDCh4", + _ZN9Inspector20DOMBackendDispatcher20discardSearchResultsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("gal08O8mPU4", _ZThn16_N9Inspector21InspectorConsoleAgentD1Ev) +STUB( + "gaoBc6o3cXs", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot9terminateEv) +STUB("gasG1CJGmzk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEED2Ev) +STUB("gasV0Qq-FZ0", _ZN7WebCore8SVGNames13amplitudeAttrE) STUB("gatEUKG+Ea4", sceAudioOut2PortGetState) +STUB("gatlBXi2YjQ", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed4FeedEEC1Ev) +STUB("gaw3UFgtJOU", mono_value_copy_array) +STUB("gaxkMFwAeDg", JSReportExtraMemoryCost) +STUB("gayqtDapH2w", _ZN9Inspector31BrowserBackendDispatcherHandlerD1Ev) +STUB( + "gb00+Q8rpJU", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi47ParameterWithBinaryRequestBodyToRecordLargeData10initializeEPNS1_6Common10LibContextEiPKhm) +STUB("gb6RAEU5pgY", WKPreferencesGetDatabasesEnabled) +STUB("gbA86mSJ9i0", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEE7add_refEv) +STUB( + "gbFclIvRSx0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEptEv) STUB("gbJ8QxXOR6g", sceVideoOutDeleteDisplayPositionEvent) +STUB("gbKbd-lu2Is", _ZNK3sce2Np9CppWebApi14IdentityMapper2V312AccountIdMap6toJsonERNS_4Json5ValueEb) STUB("gbMKV+8Enuo", sceNgs2PanGetVolumeMatrix) +STUB("gbOLwEcEhD8", _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities5Error11sourceIsSetEv) +STUB( + "gbOtZahVDgc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEE21intrusive_ptr_add_refEPS7_) STUB("gbUBqHCEgAI", sceSystemServiceGetPSButtonEvent) +STUB("gbVU4nPMXNk", _ZN3sce7Toolkit2NP2V24Core18CustomResponseDataC2Ev) +STUB("gbWz7Xpp7kw", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEED1Ev) +STUB( + "gbZFnZtqkWc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEC1EPS8_) +STUB("gbZY27lvTq4", _ZN7WebCore21JSRemoteDOMWindowBaseD2Ev) +STUB("gbbdoYygOOY", _ZN3sce3Xml3Dom8Document13recurseDeleteENS1_6NodeIdE) +STUB("gbcpFiojSAk", + _ZN7WebCore16startOfParagraphERKNS_15VisiblePositionENS_27EditingBoundaryCrossingRuleE) STUB("gbjddWAc6-o", sceCompositorGetAnotherProcessVideoSize) +STUB("gbldVkydia0", + _ZNK3sce2Np9CppWebApi14SessionManager2V124GameSessionMemberForRead6toJsonERNS_4Json5ValueEb) +STUB( + "gbmNtW2A65o", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot17getnpServiceLabelEv) +STUB("gbnL+GWRLow", __tsan_get_report_loc_object_type) +STUB( + "gbpC4NGb3z8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEC1ERKS8_) +STUB( + "gbpFrV-NLa8", + _ZN7WebCore16NavigationActionC2ERNS_8DocumentERKNS_15ResourceRequestENS_20InitiatedByMainFrameENS_14NavigationTypeENS_28ShouldOpenExternalURLsPolicyEPNS_5EventERKN3WTF10AtomStringE) +STUB("gbs-RD7lOWg", mono_get_exception_array_type_mismatch) +STUB("gbtAblHLpQg", FcLangSetHasLang) +STUB( + "gc2-RkAF3UU", + _ZN3sce7Toolkit2NP11UserProfile9Interface11getOnlineIdEPNS1_9Utilities6FutureI13SceNpOnlineIdEEb) +STUB("gc7K6VPeFdE", rgctx_fetch_trampoline_mrgctx_116_p) +STUB("gcAceaofM10", _Z21Ime_KbdGetEventNativemRN3sce11playstation4core3Ime14ImeEventNativeE) +STUB( + "gcC3vWMEvWM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEEaSERKSA_) +STUB("gcEeBiArh+o", _ZN3sce7Toolkit2NP2V27Ranking7Request8SetScoreC2Ev) STUB("gcFCn5J5DXY", sceUltReaderWriterLockUnlockWrite) +STUB("gcNHzT84HIw", _ZN3sce7Toolkit2NP2V26Friend16FriendsOfFriendsaSERKS4_) +STUB( + "gcOJcKRccYs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "gcOXPKB0CaQ", + _ZN3sce2Np9CppWebApi11Matchmaking2V112CauseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5CauseEEE) +STUB( + "gcP-kxBsHm0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEneERKS9_) +STUB( + "gcRXuSzVXbo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEEaSERKSA_) +STUB("gcU8xigyavI", _ZN7WebCore17HTMLScriptElement14setCrossOriginERKN3WTF10AtomStringE) STUB("gcUjwU3fa0M", sceHttpsGetCaList) +STUB( + "gcVX9b9ujgU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEE11release_refEv) +STUB( + "gcYn+BHkSCA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEC1EPS8_) +STUB("gck7rmEd-i0", _ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_8DocumentE) +STUB("gcrDBXfKdS8", _ZN3sce7Toolkit2NP2V27Session12SessionImage18IMAGE_PATH_MAX_LENE) +STUB("gcreMGwhTaY", jpeg_abort) +STUB("gcsP-2FEZIk", JSObjectIsFunction) +STUB("gd0iXYblPZI", udata_setFileAccess_67) STUB("gd1AB3xDVgQ", sceCesUtf16ToUhc) +STUB( + "gd876VO9dkk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEppEv) +STUB("gd8ppQpyMrw", _ZN12video_parser7cVpUtil18vp_ff4_remove_fileEPc) +STUB("gdAW0ETVhxk", ERR_free_strings) +STUB( + "gdEpzJoaHm8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "gdI9JmsCljo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEE21intrusive_ptr_add_refEPS7_) +STUB( + "gdKY4Rag5KI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEED1Ev) +STUB("gdNVJr1jElQ", _ZN8meta_gen12JpegPromoterC2EN9db_schema9CodecTypeE) +STUB( + "gdQoNPgYQYY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEC1EPS8_) STUB("gdSoJ6dvztU", sceAmprAmmMeasureAmmCommandSizeModifyProtectWithGpuMaskId) STUB("gdUCnU0gHdI", sceFontRenderSurfaceInit) +STUB( + "gdV0a+Ocjsg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE6insertENS2_8IteratorIS6_EERKS6_RS9_) STUB("gdVNTX4s0XE", sceLoginMgrServerCheckSafetyNoticeShown) +STUB("gdVoksa+OAc", _ZN7WebCore9Scrollbar13setProportionEii) +STUB("gdWmmelQC1k", CERT_CompSubjectCommonName) +STUB("gdWx1H0BU3k", _ZNK7WebCore4Node26containsIncludingShadowDOMEPKS0_) +STUB("gda7MdbVPJQ", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError6toJsonERNS_4Json5ValueEb) +STUB("gdduqOWJpMo", _ZN7WebCore4Page22setUseSystemAppearanceEb) +STUB( + "gdiZH0PaleU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEE11get_deleterEv) +STUB("gdknbtIC0QU", uloc_getISO3Country_67) STUB("gdnv6wF6hwI", scePthreadSetconcurrency) +STUB("gdt4-uEIgMw", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle10getPerGameEv) +STUB( + "ge+DCroYQz4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEE7add_refEv) +STUB( + "ge-V6rfxYHw", + _ZN3sce2Np9CppWebApi11UserProfile2V131GetPublicProfileResponseFactory6createEPNS1_6Common10LibContextERK13SceNpOnlineIdPKcRKNS5_6VectorINS5_12IntrusivePtrINS3_6AvatarEEEEERKNSD_INS5_6StringEEEbPNSE_INS3_24GetPublicProfileResponseEEE) +STUB("ge4hjd0OiFM", _ZN7WebCore7JSRange4infoEv) +STUB("ge6-1ef4a7g", mono_method_get_param_token) +STUB( + "ge6xTrDDgOs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEED1Ev) +STUB( + "ge78pzvkiB4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEC2EPS8_) STUB("ge7g15Sqhks", sceNetConfigAddIfaddr) +STUB( + "geCbQF9cGH0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEixEm) STUB("geDaqgH9lTg", scePthreadKeyCreate) +STUB("geED7ro58q8", unum_parseDecimal_67) +STUB("geOTzu8Y3YU", _ZN3sce7Toolkit2NP6Trophy9Interface10trophyTermEv) STUB("gePTTfK5iP8", sceVdecswFlushDecodeOutput) +STUB( + "geU8K6eJ7nc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE6finishEv) +STUB("geZonYeFLhA", _ZN9Inspector20CSSBackendDispatcherD2Ev) +STUB( + "geae-6xMaag", + _ZN3sce2Np9CppWebApi7Matches2V125CreateMatchRequestFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_18CreateMatchRequestEEE) +STUB( + "gefK97NOSRw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEC1EPS8_) STUB("geg26leOsvw", sceSystemStateMgrWaitVshAutoUpdateVerifyDone) +STUB( + "genKWUx8bsk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEEC2ERSA_) +STUB("genVLqBehSk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V115SearchAttributeEEC2Ev) STUB("geoQ77m8Trc", sceAvSettingSetVideoOutModeAny) +STUB( + "gepIe5CpETk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE5beginEv) +STUB("geskGcdamVE", _ZN3sce4Json5ValueC1ERKSbIcSt11char_traitsIcENS0_8StlAllocIcEEE) +STUB("gev25uQduyQ", _ZN7WebCore37CrossOriginAccessControlCheckDisablerC2Ev) STUB("gezFjY7iHbk", sceRemotePlayClientAddEventListener) +STUB("gf3h8ObDkuI", _ZN15AbstractStorage10TwitterAPID1Ev) +STUB( + "gf6ASyeUqR8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEC2Ev) +STUB("gf6dJv9Imh8", mode_set_alluser) STUB("gf9WnZyyHwE", sceSrcUtilityInitializeEx) +STUB("gfA0BLJiywk", _ZN7WebCore16JSXMLHttpRequestC2ERKS0_) +STUB( + "gfDRF-i-FJc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE8capacityEv) +STUB("gfE8yZ4FdW4", _ZN4IPMI4impl10ServerImpl18removeSessionByPidEjPPNS0_11SessionImplE) +STUB("gfO1KPpXs7k", _ZN3WTF11Persistence7DecoderrsERNS_8OptionalIlEE) +STUB("gfP0im5Z3g0", ldiv) +STUB("gfTs2aPeHoM", _ZNK3WTF10StackTrace4dumpERNS_11PrintStreamEPKc) +STUB("gfUSJsJEmbE", _ZN4Manx11BundleOrbisD0Ev) +STUB( + "gfZWDhwYR-c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEE11get_deleterEv) +STUB( + "gfdGWWACH5Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEC1EPKS8_) +STUB( + "gffKwir400k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEppEv) +STUB("gftOFNpk4Cg", _ZN9Inspector27InspectorFrontendDispatchernaEm) +STUB( + "gfxH1hL4sxk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEED1Ev) +STUB( + "gfz5Lw2PiZ8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEmmEi) +STUB( + "gg084bPTDaw", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33patchGameSessionsSearchAttributesEiRKNS4_44ParameterToPatchGameSessionsSearchAttributesERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB( + "gg0JdBHM+2s", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEmmEv) +STUB( + "gg0dtklKfzE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEC2EPS8_) +STUB("gg1UtlYIk8I", + _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchStatus10getmatchIdEv) +STUB( + "gg1a9cfw0nc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEEC2ERSA_) STUB("gg1d4KsyVVs", sceMoveTrackerGetWorkingMemorySize) +STUB("gg2cJQtaEns", X509_get_version) +STUB( + "ggE92AVN8Rk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB("ggH7tBY5y5c", _ZN7WebCore8Document16createNSResolverERNS_4NodeE) +STUB( + "ggKAA3ILHa4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB( + "ggWMDqQlKFo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("ggXUXM0q+U0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEE7add_refEv) STUB("ggj9Qm4XDrU", sceNpManagerIntGetParentalControlInfoA) +STUB( + "gglP1tmvrS4", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectator13isInitializedEv) +STUB( + "gglj0cQ9K1E", + _ZN3sce2Np9CppWebApi14SessionManager2V131PlayerSessionPushContextFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_24PlayerSessionPushContextEEE) STUB("ggnCfalLU-8", sceSharePlayCrashDaemon) +STUB( + "ggnfS4eC5eM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEE7get_refEv) +STUB( + "ggpb+yRyvB4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEaSERKS7_) +STUB("ggqhArYcjNs", WKPageGroupRemoveAllUserContentFilters) +STUB("gguxDbgbG74", _Costate) +STUB("gh+UQ65QBEI", ucol_getAttribute_67) +STUB("gh3DFlg0Dkc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEmmEi) +STUB( + "gh7cu84CDV0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEptEv) +STUB( + "gh7fYU27FRI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "gh8mAkBRcLo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("ghAUCiW5i0s", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats22connectionQualityIsSetEv) +STUB( + "ghB63C2G4kw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEED2Ev) +STUB( + "ghBGHzJKrgg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEptEv) +STUB("ghFPg6X7be0", _ZN3NTF3URL7setHostEPKc) STUB("ghLUU2Z5Lcg", sceMouseSetPointerSpeed) +STUB( + "ghP53NijCWg", + _ZNK3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody15maxPlayersIsSetEv) +STUB("ghRoNNPe-ts", sr07) +STUB("ghT4-XqfRCE", dlfunc) +STUB( + "ghU7MdEg5tE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEC1ERKS8_) +STUB( + "ghVD9IVPoks", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEED1Ev) +STUB("ghZq8PRQfVs", _ZN12video_parser8cPDLUtil17getMp4StateForPDLEPKcyyPNS_8Mp4StateE) +STUB("ghayPR9Wf4Q", g_array_insert_vals) +STUB("ghe8+EzQy9s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEEC2EPS5_PNS2_10LibContextE) +STUB("gheMsedUIlo", _ZN7WebCorelsERN3WTF10TextStreamENS_25ScrollPositioningBehaviorE) +STUB("ghhdyDuHLZw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEE7add_refEv) STUB("ghjrbwjC0VE", sceUserServiceSetGlsCameraEffect) +STUB( + "ghpWMovT4bY", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeaders21intrusive_ptr_sub_refEPS5_) STUB("ghqRRVQxqKo", sceNetIoctl) +STUB("ght-XVhooa8", mono_btls_x509_get_subject_key_identifier) +STUB( + "ghv1Z5n845E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEE21intrusive_ptr_sub_refEPS7_) +STUB( + "ghyX2n9XSvw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEneERKS9_) +STUB( + "gi+JJWOCwlk", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats6setMmrERKNS1_6Common12IntrusivePtrINS3_3MmrEEE) +STUB("gi+qSo+QATM", _ZN3sce7Toolkit2NP2V28Matching12RoomPingTimeC1ERKS4_) STUB("gi3sjE2HpSQ", sceNpUniversalDataSystemIntDestroyRecordData) +STUB("gi5ZAaggjqI", Java_java_net_PlainDatagramSocketImpl_receive0) +STUB("gi6KQ7z29Io", __start__Zdynstr) +STUB("giBcsZZvL80", _ZN7WebCore22TextureMapperAnimationC2ERKS0_) +STUB("giCiLJI7LfA", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_skipToNextEntryMark) +STUB( + "giETw31RNI8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE3endEv) +STUB("giFZrbpb0lc", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11EntitlementEED1Ev) +STUB("giFcnXCf2YA", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEEC2Ev) STUB("giLljWP5pPk", sceIduUtilGetSchedule) +STUB("giM2xC8AOlg", mono_aot_Sce_Vsh_Np_Webapiunbox_trampoline_addresses) +STUB( + "giNj2z8z928", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEC1EPS8_) +STUB( + "giUATEGYtTg", + _ZN3JSC7JSArray27getOwnNonIndexPropertyNamesEPNS_8JSObjectEPNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("giXN3L5I+7c", _ZN3sce7Toolkit2NP2V211SocialMedia7Request12ActionLinkFbD2Ev) +STUB("gid+GlhKgJM", _ZN15AbstractStorage4ItemnwEm) +STUB("gidiaOjZZuQ", SSL_want) STUB("gigoVHZvVPE", sceLibcMspaceRealloc) +STUB( + "gijCqBFE3p0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEEptEv) +STUB( + "gik6iI+v1oU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE4sizeEv) +STUB("gimH2zdBANg", _ZN3sce2np12WorkerThread10ThreadMainEv) +STUB("giqKNgVN4+w", _ZN3JSC18IncrementalSweeper13startSweepingERNS_4HeapE) +STUB( + "gisu+HIdFWU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEptEv) +STUB( + "gitOCmtiowc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEED1Ev) STUB("giw4lfOQJk0", sceCesRefersUcsProfileAscii) +STUB("giwq9r6vIvE", _ZN4Manx14NetworkProfile3getENS_14SettingOptTypeEPPvPi) +STUB("gizuZ8SJqCg", GCC_except_table97) +STUB("gj02Pc41dZk", _ZNK7WebCore18TextureMapperLayer9transformEv) +STUB("gj2jB3SM41g", mono_jit_compile_method) +STUB( + "gj5R4XcgBlQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEE11get_deleterEv) +STUB( + "gj64q6tHxi8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("gj8o80Vhuco", WKViewReplyCertificateVerification) +STUB("gjIRPiBLogA", WKNotificationManagerProviderDidRemoveNotificationPolicies) +STUB("gjLIRxeJ830", u_strFromPunycode_67) +STUB("gjLRFhKCMNE", _ZTIN10__cxxabiv121__vmi_class_type_infoE) +STUB("gjLRZgfb3i0", _ZNSt4_PadD2Ev) STUB("gjP9-KQzoUk", scePadGetControllerInformation) +STUB( + "gjQkBn2XyS4", + _ZN3sce7Toolkit2NP2V28Matching10createRoomERKNS3_7Request10CreateRoomEPNS2_4Core8ResponseINS3_4RoomEEE) STUB("gjRZNnw0JPE", sceSaveDataCreateTransactionResource) STUB("gjSyfzSsDcE", sceNpAuthPollAsync) +STUB( + "gjaaEWEQG6g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEEC1ERKSA_) +STUB("gjbmYpP-XJQ", strcoll) +STUB( + "gje8BQooWR8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEC2EPKS8_) +STUB("gjeeM3mHOCI", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_19GetGameDataResponseEED2Ev) +STUB( + "gjgdQKk6hMk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEEC1ERSA_) +STUB("gjtdykMP3E0", _ZNK7WebCore15StyleProperties15propertyAsColorENS_13CSSPropertyIDE) +STUB( + "gjw0zKVfm9s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("gjyKh8gH4UE", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer9setoffsetEi) STUB("gjyqnphjGZE", sceHmdInternalDfuSendSize) STUB("gk3onhMfgXY", sceNpUniversalDataSystemIntRecordArraySetObject) +STUB("gk4MupTIKoo", mono_aot_Sce_Vsh_EventAppunbox_trampoline_addresses) +STUB("gk6CgjO8jOo", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setMixerLevel) +STUB( + "gkCtLbTf+Wo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEE3getEv) +STUB("gkDIoxZtOuk", WKPreferencesGetAllowCrossOriginSubresourcesToAskForCredentials) +STUB( + "gkEgH4rW2C4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEppEv) STUB("gkGuO9dd57M", sceVrTrackerGpuWait) +STUB("gkV3OnYw92M", Java_java_awt_GnmGraphics_nativeSetColor) +STUB("gkWgn0p1AfU", freopen) +STUB("gkYgrCQKKrk", WKBundleFrameCopyWebArchiveFilteringSubframes) +STUB( + "gkYs-1R8aWM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEC1EPKS8_) +STUB("gkZaHxo11uY", ustrcase_getCaseLocale_67) +STUB( + "gkZps+Grwkg", + _ZN3sce2Np9CppWebApi7Matches2V140RequestTemporaryCompetitiveResultFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_33RequestTemporaryCompetitiveResultEEE) +STUB( + "gkaZE8vEdaw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEppEv) +STUB("gkbNmZpMD6s", + _ZN3sce2Np9CppWebApi14SessionManager2V128ResponseGameSessionSpectator12setAccountIdERKm) +STUB( + "gkfDypGxrIY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEE11get_deleterEv) +STUB( + "gkgz7u1U-bs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEED2Ev) +STUB("gklG+J87Pq4", y1f) +STUB("gkmWrF3Hi1Q", _ZTVN9Inspector35DOMDebuggerBackendDispatcherHandlerE) +STUB("gkrDbcAYMyA", _ZN7WebCorelsERN3WTF10TextStreamERKNS_32FixedPositionViewportConstraintsE) +STUB("gkrh-4jY4bA", _ZN9Inspector15ScriptCallFrameC2ERKN3WTF6StringES4_mjj) STUB("gksKAYUf0CM", sceVideoCoreUnregistEventCallback) +STUB("gkugmNmgDEc", _ZN9Inspector23WorkerBackendDispatcherD2Ev) +STUB( + "gkvD2J9R5hA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEE11release_refEv) STUB("gky0+oaNM4k", sceNetCtlInit) +STUB("gl0pi-MyS0o", _ZN7WebCore8Document15openForBindingsEPS0_RKN3WTF6StringES5_) +STUB("gl101UGGH1w", _ZN7WebCore9HTMLNames13challengeAttrE) +STUB("gl4W0PoYmcA", _ZN3JSC8JSObject18setPrototypeDirectERNS_2VMENS_7JSValueE) +STUB("gl4dVeAZSww", _ZN7WebCore8SVGNames16font_variantAttrE) +STUB("gl5VQnIf1yc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE7reserveEi) +STUB( + "gl74+XOpdjc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEC2Ev) +STUB("glBkV8-mprA", GetServiceType) +STUB("glDpAbxwC5A", EVP_EncryptInit) +STUB("glDvfH1bKSA", _ZN7WebCore9HTMLNames15formenctypeAttrE) +STUB("glEe46x-ZPQ", WKPageConfigurationSetUserContentController) +STUB("glGlFymp0xA", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredUsersEEC2Ev) +STUB( + "glGoFyQBeEU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("glJ7NuUrNhc", _ZN3JSC24DOMAttributeGetterSetter6s_infoE) +STUB( + "glKqDQtSbB0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEE6assignEPS5_PFvS7_EPNS2_10LibContextE) +STUB("glKx1Zdz50w", _ZNK7WebCore22EmptyFrameLoaderClient16canHandleRequestERKNS_15ResourceRequestE) +STUB("glOjchjSBHQ", _ZN7WebCore21MediaRecorderProvidernaEmPv) +STUB("glSyPA10pxA", _ZN3JSC7Symbols38getSetIteratorInternalFieldPrivateNameE) +STUB( + "glTzO4Y9wpM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE8capacityEv) +STUB("glUobtANxAo", _ZN3sce2Np9CppWebApi10Activities2V114UserActivities5Error7setCodeERKi) STUB("glVu-RQwkic", sceApplicationSpawnAndSetAllFocus) +STUB("glWpwxPw8yo", _ZN3sce2Np9CppWebApi13InGameCatalog2V55Image9unsetTypeEv) STUB("glX67PWaF-g", sceUpsrvUpdateCreateUpdateTask) +STUB( + "glXUz3KcliA", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetAccountId2OnlineId12setaccountIdEm) +STUB("glb-pUpSbqQ", mono_aot_I18Nmethod_addresses) +STUB( + "glgtqUSk8ho", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEneERKS9_) STUB("glkVxMoEu-E", sceFaceTrackerRegisterFixUserIdCallback) +STUB("glngYbGPYR0", _ZN3sce7Toolkit2NP2V210Tournament7Bracket8deepCopyERKS4_) +STUB("glnnwKzcvR0", _ZNK7WebCore9TreeScope14getElementByIdERKN3WTF12AtomicStringE) +STUB("glsQJ5HCC-U", WKBundlePageIsUsingEphemeralSession) +STUB("glsZ6bq5BKo", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_19UserRankInformationEE3getEv) +STUB( + "gluDrexUWQs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE4sizeEv) +STUB("gluWIogLbAM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEEdeEv) +STUB("gm2mcS8itac", PSNowReset) +STUB("gm3NmEkM6Uo", WKPreferencesGetPageVisibilityBasedProcessSuppressionEnabled) +STUB( + "gm3dqx0Blfk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("gm5sk37FHEk", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getAllSubtitleStreams) +STUB( + "gm7SLP0kNnE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEEdeEv) +STUB( + "gm9OSANwTyg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEeqERKS9_) +STUB("gm9wWQ83CiA", _ZNK7WebCore24RotateTransformOperation1yEv) +STUB( + "gmIBlxjFqMc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEplEm) +STUB( + "gmKF5G8j4iw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE8capacityEv) +STUB( + "gmLlTQlANaI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEdeEv) +STUB("gmMcOzXLK2w", _ZN12video_parser17cVideoProfilerMp418hasProtectedStreamEv) +STUB("gmXNGOczYVw", WKPreferencesGetCSSCustomFilterEnabled) +STUB( + "gmdVEuibef4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEptEv) +STUB( + "gmegBIj0pOQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEixEm) +STUB("gmh9dPLZ8rE", WKPageHasVerticalScrollbar) +STUB("gmjmwKyfb2A", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_25ChallengeBinaryDataResultEE3getEv) +STUB( + "gmnqr4ncWM8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) STUB("gmoxsDewVKI", sceLoginMgrServerNotifyTutorialShown) +STUB("gmr-M3dWfR0", + _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead17getRepresentativeEv) +STUB("gmwGr9VmRvM", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_23NpIdListRankInformationEE17getAdditionalInfoEv) +STUB( + "gmzOnGNtgk4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE7reserveEi) +STUB( + "gn8wc7k5SEE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEE11get_deleterEv) +STUB("gn9owvTklTg", _ZNK7WebCore9FrameView29absoluteToLayoutViewportPointENS_10FloatPointE) +STUB( + "gnFHLQllH-Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEC1ERS8_) +STUB( + "gnHWiuXnTMg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEC1EPS8_) +STUB("gnT05fSpgKI", rgctx_fetch_trampoline_rgctx_71_p) STUB("gnViUj0ab8U", sceUserServiceGetImeInitFlag) +STUB("gnWUEMlAxZY", deflate) +STUB( + "gnauI+-FUlA", + _ZN3sce2Np9CppWebApi7Matches2V130RequestTeamMemberResultFactory7destroyEPNS3_23RequestTeamMemberResultE) +STUB("gng8a8u0VYM", _ZNK3sce7Toolkit2NP9Utilities6FutureI16SceNpTusVariableE3getEv) +STUB("gnh2cpEgSS8", _ZN3sce2np8WorkItem9BindQueueEPNS0_9WorkQueueEi) +STUB("gnjkR0o4FJo", _ZN3JSC7Symbols25generatorValuePrivateNameE) +STUB( + "gnogTae5pM4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE8capacityEv) +STUB("gnq6abPyiYc", __tsan_atomic8_fetch_nand) +STUB("gnsIZjIH-Mw", _ZNK7WebCore16URLDecomposition4portEv) +STUB("gnwCmkY-V70", _ZN3sce2np6Thread9GetResultEv) +STUB("gnyVA6Tj-ak", fchdir) +STUB( + "gnzrPLA1oZU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEC2EPS8_) +STUB("go+HgP5TV2M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE5beginEv) +STUB("go0QBZdmPKk", glGetQueryObjectuivEXT) +STUB("go1LaO7f15k", _Unwind_FindEnclosingFunction) +STUB( + "go2r0gIzAJs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "go51S3uh4oI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE5emptyEv) +STUB("go8pfVYxUDw", _ZNK7WebCore11MediaPlayer21audioDecodedByteCountEv) +STUB("go9a+g2FFlY", jpeg_fdct_1x1) +STUB( + "goBfL-BQzu8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE6resizeEj) +STUB("goBvrlOAARA", Java_com_sony_bdjstack_ti_Database_getPlayListTable) +STUB("goD1gol2oYs", il2cpp_thread_attach) +STUB("goI+a-FRZ+g", _ZN7WebCore8SVGNames19stroke_linejoinAttrE) +STUB( + "goIakVgIBVk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEC2Ev) +STUB("goLVqD-eiIY", _ZN10__cxxabiv117__class_type_infoD1Ev) +STUB( + "goQBbdds9EY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEEC1Ev) +STUB( + "goQzKScXJ44", + _ZN3sce7Toolkit2NP2V211UserProfile24displayUserProfileDialogERKNS3_7Request24DisplayUserProfileDialogEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("goTeWCvONpI", uregex_groupCount_67) +STUB( + "goTuYr8Q21Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEC1EPKS8_) +STUB("goURkCMz2mY", + _ZNK7WebCore14LoaderStrategy27havePerformedSecurityChecksERKNS_16ResourceResponseE) +STUB("goUTenum5Qg", _ZN3sce3Xml3Dom8DocumentD2Ev) +STUB("goUd71Bv0lk", CERT_enumerateAltName2) +STUB("goYSSGx1Bfo", uenum_nextDefault_67) +STUB( + "goYuwj4jUGs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEC1EPS8_) +STUB( + "goZIrxs-ze8", + _ZN3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyD1Ev) +STUB("goaz6kl9pc0", rgctx_fetch_trampoline_rgctx_58_p) +STUB("gobJundphD0", _LRteps) +STUB( + "gobdRlE9Dyg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("goc0qasY9Rw", _ZN3JSC7Symbols53promiseFlagsIsFirstResolvingFunctionCalledPrivateNameE) +STUB("goc1-kTtr18", mono_debug_cleanup) +STUB( + "godW5ardy3k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEC1ERKS7_) +STUB( + "goeKcSQlVew", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "gogAWhGn91k", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEptEv) STUB("goi5ASvH-V8", sceHmdGetWideNearDistortionCorrectionCommand) +STUB("goiLnDJ4lCI", _ZN4Manx15ProcessLauncher10invalidateEi) +STUB("gokWod7GAH4", getsid) +STUB("gonN1KzF8wA", _ZN3JSC38numberOfExecutableAllocationFuzzChecksEv) +STUB("gonUZZF6--M", WKPreferencesGetAudioPlaybackRequiresUserGesture) +STUB( + "gonwkk3tjKI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEC2ERKS7_) +STUB("gouncuRyDn0", _ZN3sce7Toolkit2NP2V24Core7Request21BehaviorModificationsC1Ev) +STUB("govcxXDyzbw", curl_easy_upkeep) +STUB( + "gozsp4urvq8", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERt) STUB("gp+tZXUbH9Y", sceNpAsmClientCreateRequest) +STUB("gp+zbpLQ8WU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEE7get_refEv) +STUB("gp0cBnSgPmo", _ZN3sce3pss4core5audio11SoundPlayer15MoveSurroundPanEfbfd) +STUB( + "gp3soLZ1nu0", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("gp7zN7yGuqk", mono_aot_Sce_Vsh_ShellCoreUtilWrapperunbox_trampoline_addresses) +STUB("gp9RuTftqFo", _ZN7WebCore8Document27removeMediaCanStartListenerERNS_21MediaCanStartListenerE) STUB("gpGZDB4ZlrI", sceAppContentDownload0Expand) +STUB("gpRW3yUQPWg", _ZN9Inspector25DatabaseBackendDispatcherD1Ev) STUB("gpSAvdheZ0Q", sceNpMatching2GetMemoryInfo) +STUB("gpSEllb2338", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS12TusVariablesEEC1Ev) +STUB("gpSyxuszTec", _ZN3JSC7Symbols26getCatchFinallyPrivateNameE) +STUB( + "gpVU35Ogdn4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE6resizeEj) +STUB( + "gpYVB7rVV-A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("gpc4YXZffkQ", _Unwind_GetLanguageSpecificData) STUB("gpdlKz0w448", sceOpusSilkEncGetSize) +STUB( + "gpeqvpBQEkM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "gpn8epKfzB4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEED1Ev) +STUB( + "gpwu0oxp3rM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE8capacityEv) +STUB("gpx0CvZmfeI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEEmmEv) +STUB("gpxSVDz9j+w", _ZN3sce7Toolkit2NP2V24Core15MemoryPoolStatsC2Ev) +STUB("gq5T-bvtQMQ", _ZNK3WTF9MediaTimegeERKS0_) +STUB("gq9j9rEwI9Q", _ZN3sce2Np9CppWebApi7Matches2V133RequestTemporaryCompetitiveResultD2Ev) STUB("gqAG7JYeE7A", sceHmdReprojectionStartMultilayer2) +STUB( + "gqAtZPFST6c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "gqH4mJEaimM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEptEv) +STUB("gqKfOiJaCOo", expm1) +STUB( + "gqLmvnhb0Gc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEEC1Ev) +STUB( + "gqP9gNGHm4o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) STUB("gqPjTzsu9vU", sceRegMgrBackupPushData) +STUB("gqSOH9r-I5Q", __tsan_write_range) +STUB("gqSkr6L7OPY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEaSERKS7_) +STUB( + "gqVPOdGVqNY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE10setContextEPNS2_10LibContextE) +STUB( + "gqW3bm6Gr9U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEEC1Ev) +STUB("gqbhMNYl9+4", _ZN7WebCore32ScrollingStateFrameScrollingNode19setFrameScaleFactorEf) +STUB( + "gqdqmOzG5K8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("gqeuQVcksps", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsD2Ev) +STUB("gqkmh6zYT9U", WKPageHasHorizontalScrollbar) +STUB("gqoJtxjVGHY", _ZN7WebCore11MathMLNames8hrefAttrE) +STUB("gqr-pq0E8kY", WKPreferencesGetLegacyEncryptedMediaAPIEnabled) STUB("gquEhBrS2iw", scePthreadMutexattrGettype) +STUB( + "gqvdTC2Zmpc", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("gqwPsSmdh+U", _ZTSSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE) +STUB( + "gqzK3JDVSck", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEcvbEv) +STUB( + "gr0DX65Gg84", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("gr6uhTJb3e0", _ZTSo) +STUB("gr79yO9dFco", UnLockProtocolInfoList) +STUB("grBdHp6fVP8", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification14NewRoomMessageEE3getEv) STUB("grCFSFvMxgU", sceRegMgrEvtGetCnt) STUB("grCYks4m8Jw", sceHmdGetDistortionCorrectionCommand) +STUB("grDD8PABX2g", + _ZN15AbstractStorage12LocalStorage11DeserializeESt10shared_ptrINS_7ContentEEPS1_INS_4ItemEE) +STUB("grHGGz9PXME", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEE7get_refEv) +STUB("grQAUTj5+Kg", _ZN3JSC19SparseArrayValueMap6s_infoE) +STUB("grWXn3ZlkYM", _ZN7WebCorelsERN3WTF10TextStreamERKNS_33StickyPositionViewportConstraintsE) +STUB("grWi+vB2srs", _ZN7WebCore13ContainerNode11appendChildERNS_4NodeE) +STUB( + "grZMQ38YvTw", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB( + "grbaq9Auquc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB( + "grcZfBTlYX4", + _ZN3sce2Np9CppWebApi7Matches2V120ErrorResponseFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_5ErrorEEEPNS8_INS3_13ErrorResponseEEE) +STUB( + "gre1Lr13x-0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEE5resetEPS9_) +STUB("greBgRA3vlM", Java_sun_awt_image_GnmImageDecoder_initIDs) +STUB("greCmDhV9k4", _ZN12video_parser14cVideoOperatorD1Ev) +STUB("gri-rp0Ne+Y", WKPreferencesSetJavaScriptEnabled) +STUB("grjE9ARPIwM", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE4sizeEv) +STUB("grr+gIjFYs4", EVP_sha224) +STUB("grr9rNSVCXM", ucol_getKeywordValues_67) STUB("grs2pbc2awM", sceUltUlthreadRuntimeGetWorkAreaSize) +STUB("gs+4Aq-eevE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEaSERKS7_) +STUB( + "gs0dTsudFuQ", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser11getsortModeEv) +STUB("gs25olHBv4A", delegate_virtual_invoke_17_p) +STUB( + "gs2Phb-WirE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEC2Ev) +STUB("gs3p5+dB4C0", monoeg_g_filename_from_utf8) +STUB( + "gs9o0MyBTc8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "gsA7k0mHW+U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEC2Ev) +STUB( + "gsAVunFeDT4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEEdeEv) +STUB( + "gsDmpCzAYOk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEC1Ev) +STUB("gsF75bCkzAI", _ZN3WTF19hasProcessPrivilegeENS_16ProcessPrivilegeE) +STUB("gsFoqQ-R5js", _ZN3WTF5sleepENS_7SecondsE) +STUB("gsJUoIpMdME", WKPreferencesSetAllowsAirPlayForMediaPlayback) +STUB("gsN6ZXS+2EY", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V19Bandwidth11globalIsSetEv) +STUB("gsOIY8iGysE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEEC1EPKS6_) +STUB( + "gsOtgo7IKvA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "gsOvguT1j+4", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM23AccessibilityProperties7CurrentEEESt8optionalIT_ERKN3WTF6StringE) +STUB("gsOx0pvAwDQ", _ZNK7WebCore13CSSImportRule5mediaEv) +STUB("gsPs+KxIk34", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEEcvbEv) +STUB( + "gsQ-BzAEgbg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEED1Ev) +STUB( + "gsU+cMJEcWw", + _ZN7WebCore30InspectorInstrumentationWebKit16interceptRequestERNS_14ResourceLoaderEON3WTF8FunctionIFvRKNS_15ResourceRequestEEEE) +STUB( + "gsVce-9cTxE", + _ZN3sce7Toolkit2NP12ActivityFeed9Interface11getWhoLikedEPKNS1_18GetWhoLikedRequestEPNS1_9Utilities6FutureISt6vectorINS1_13WhoLikedStoryENS1_15AppSTLAllocatorISA_EEEEEb) +STUB("gsXnnvYX6KI", _ZN3WTF18charactersToUInt64EPKDsmPb) +STUB("gsZfTYKMm7o", _ZN3WTF19MetaAllocatorHandle6shrinkEm) +STUB("gsbXgOxtivY", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_17MessageAttachmentEE17getAdditionalInfoEv) +STUB("gsePliSjHEE", _Z18createIpcChannelExiPKciiimPi) +STUB( + "gseWkh66L0U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEppEi) +STUB("gsk7fVctu5U", _ZN7WebCore24CoordinatedGraphicsLayer11setPositionERKNS_10FloatPointE) +STUB("gsljWk-gMtE", _ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody10getOfferIdEv) +STUB("gsnLR9VxDdc", _ZN10Deprecated25ScriptCallArgumentHandlernaEm) +STUB("gsnW-FWQqZo", __addvsi3) +STUB("gso5X06CFkI", _LPmsw) +STUB("gsqESe70WD0", cairo_pattern_set_filter) +STUB("gsqXCd6skKs", _Thrd_start_with_attr) +STUB("gt0iNtXwf-E", WKDownloadCopyRedirectChain) +STUB("gt1TtU4Q2yk", GCC_except_table172) +STUB("gt1iXQ4Er+w", _ZN7WebCore6ISOBoxC1ERKS0_) +STUB("gt1tknc-HfA", _ZL12alloc_or_diem) +STUB("gt2Iq3+H18M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEEC1Ev) +STUB( + "gtBWvR2cUAk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEmmEi) +STUB("gtDRViT2p1I", mono_aot_Sce_Vsh_Db_Sharedplt) +STUB("gtIpEDDn76I", _ZNK7WebCore24MatrixTransformOperation4dumpERN3WTF10TextStreamE) +STUB( + "gtKG5bav9aQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEEC2Ev) +STUB( + "gtMT2-wXTgQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEptEv) +STUB( + "gtQWCWxkbr4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEC1EPKS8_) +STUB("gtRD8r2e+uk", ERR_print_errors_cb) STUB("gtWxylhD504", sceIduUtilShowOverlay) +STUB("gtYJOTEcCrc", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession16getMaxSpectatorsEv) +STUB( + "gtbop9L1yBo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEEptEv) +STUB( + "gtcovFeGs7o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("gtdtzx6Ps3g", _ZN7WebCore16HTMLMediaElement6rewindEd) +STUB( + "gtj2+bf7S1Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEE11get_deleterEv) +STUB("gtkTcnWCrkU", curl_unescape) +STUB("gtkUYJIaCbI", _ZNSt9_FacetptrISt8numpunctIcEE6_PsaveE) STUB("gtoTsGM9vEY", sceImeVshClose) +STUB( + "gtsc5Wj9bno", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB( + "gttj6TJVMIE", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setInteger2ERKi) +STUB("gtuZVehSwuo", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi32ParameterToPostGameSessionsTouchD2Ev) +STUB( + "gtx6fAhoMiU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB("gu-Fvyghmic", _ZNK3sce2np9JsonValue7GetBoolEv) +STUB("gu0eRZMqTu8", CERT_STORE_createStore) +STUB("gu8T1JTKtYo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V112TicketStatusEEC2EPS6_) +STUB( + "guGakcA4vDk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEcvbEv) +STUB("guJxsLkYX9Q", WKBundlePagePostMessage) +STUB( + "guKWXs+6YtM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "guS5ZT-EbDc", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "guYzMaiH-74", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEE6assignEPS7_PFvS9_EPNS2_10LibContextE) +STUB("guaqRqZCe2g", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus11unsetSlotIdEv) +STUB("gueTVibW43U", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEEixEm) STUB("guf+xcMoCas", sceShellCoreUtilGetFreeSizeOfAvContentsTmp) +STUB("gui41xif0Xw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEED1Ev) STUB("gujP4afE9dQ", sceAt9EncCreateEncoder) +STUB( + "guuxt07TxTY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "guwivZCRO2o", + _ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody8setCauseERKNS1_6Common12IntrusivePtrINS3_5CauseEEE) +STUB("guwl-qH06sY", _ZN3WTF21MemoryPressureHandler7installEv) +STUB( + "guy3X-PEbqk", + _ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody13setMaxPlayersERKi) +STUB("gv+Gly1fMT8", _ZN7WebCore11MediaPlayer20createResourceLoaderEv) +STUB( + "gv6AJ9Wc0NE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEEdeEv) +STUB("gv8bC38U34E", _ZNK7WebCore22EmptyFrameLoaderClient10hasWebViewEv) +STUB("gvAxvGQwxCg", JSContextGroupRemoveHeapFinalizer) STUB("gvD1greCu0A", sceNetSendto) +STUB( + "gvEkk+amfOw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE8pushBackERKS8_) +STUB( + "gvLImffR1cg", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "gvNHAmbfx+I", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEdeEv) +STUB("gvRi1Ol6RqA", mono_aot_Sce_Vsh_VideoEdit_Wrapperplt) +STUB("gvabWDnAOOU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEED2Ev) +STUB( + "gve68fVQYAo", + _ZN9Inspector20DOMBackendDispatcher4redoElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("gve8e5wHgEw", _ZNK7WebCore14FrameSelection15copyTypingStyleEv) +STUB( + "gvevoeXFS2g", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE8capacityEv) +STUB( + "gvgGzzHtAKo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE6resizeEj) +STUB( + "gvgNraTAhPg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEE11get_deleterEv) +STUB( + "gvm3h8hTNKA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEED1Ev) +STUB("gvmkc+Z2ZHU", _ZThn16_N26ScePssInputControllerOrbisD1Ev) STUB("gvnJPMkSoAY", sceNetCtlGetStateIpcInt) +STUB("gvqHrw6-Q5o", SSL_CTX_get_verify_mode) STUB("gvqHvbjlHzA", sceLibcMspaceGetFooterValue) +STUB("gvsxodQXsxE", g_strconcat) +STUB("gvtJf919yVI", uprv_maxMantissa_67) +STUB("gvtcfyOvCTg", _ZSt9use_facetISt7codecvtIcc9_MbstatetEERKT_RKSt6locale) +STUB( + "gvuQ6hDw9NM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEEC2ERSA_) +STUB( + "gvvoigDpacQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("gw6eHbjfARY", _ZN9Inspector22RemoteInspectionTargetD1Ev) +STUB( + "gw7fieR8fC4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEED1Ev) +STUB( + "gwA7Ma28vsE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "gwAj3Hwyx1A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEC1Ev) +STUB( + "gwF55cdJDlo", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V128SetMultiVariablesRequestBody19npServiceLabelIsSetEv) +STUB("gwIt6VK-SdA", _ZN7WebCore11MediaPlayer11invalidTimeEv) STUB("gwUynkEgNFY", sceVoiceSetMuteFlag) +STUB("gwVFNCkuOQk", _ZN7WebCore19ResourceRequestBase12clearPurposeEv) +STUB( + "gwX+CdEvTjw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEdeEv) +STUB( + "gwYvPQz4x7g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEE3getEv) +STUB( + "gwcKs-Ogy+4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("gwe+SM90LaU", _ZN12video_parser7cVpUtil15convLangIsoToVpEtPNS_9VP_LANG_eE) +STUB( + "gwgCU0UQMks", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEEaSERSA_) +STUB( + "gwityL1ji1Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE21intrusive_ptr_add_refEPS9_) +STUB("gwm7yV+Wd0c", + _ZN3sce2Np9CppWebApi14SessionManager2V132RequestPlayerSessionMemberPlayer10getPlayersEv) +STUB("gwrgHmNV4DU", _ZTIPg) +STUB("gwsWEALPum4", _ZN9Inspector23CanvasBackendDispatcherD2Ev) STUB("gwtkXCmgiUk", sceFiosDebugStatisticsReset) +STUB( + "gwv7RjktCdY", + _ZN9Inspector14ConsoleMessageC1EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelERKN3WTF6StringEONS5_3RefINS_15ScriptArgumentsENS5_13DumbPtrTraitsISA_EEEEPNS1_14JSGlobalObjectEm) +STUB( + "gwwT3cBOa1Y", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE3endEv) +STUB( + "gwzTYWUh0mM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEC2EPNS2_10LibContextE) +STUB( + "gwzf1GsbQOE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE8capacityEv) +STUB( + "gwzmsR1x4kE", + _ZNK3sce2Np9CppWebApi14SessionManager2V131ResponseGameSessionMemberPlayer6toJsonERNS_4Json5ValueEb) +STUB( + "gx+jAEx+04w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEEC2ERSA_) +STUB("gx130ttraj0", WKPluginInformationDefaultLoadPolicyKey) +STUB( + "gx8DWooEXu4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEE7get_refEv) +STUB("gxDPRukAYIM", fuse_fs_getattr) +STUB( + "gxESsY-aBNg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB("gxMKV3eJiZM", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_16EventInformationEEC2Ev) +STUB( + "gxR-PeNGopc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEE7get_refEv) +STUB("gxSJJNSQDGE", mono_metadata_free_mh) +STUB( + "gxVIXCU5aHQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEneERKS9_) +STUB("gxWsVYddTXk", _ZN7WebCore21NetworkStorageSession25switchToNewTestingSessionEv) +STUB("gxYbTH4+t6E", _ZN3sce7Toolkit2NP2V29Challenge7Request21GetReceivedChallenges13MAX_PAGE_SIZEE) +STUB("gxb7ii-L7Cs", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification14NewRoomMessageEED1Ev) +STUB( + "gxdBUXqv5-4", + _ZN7WebCore19JSAnimationTimeline15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB("gxekxWcqD1Y", _ZN3JSC7Symbols25resolvePromisePrivateNameE) +STUB("gxi3Yh43Aps", _ZN7WebCore9HTMLNames11loadingAttrE) +STUB("gxkBbZ5cUNY", _ZN3JSC11VMInspector11isValidCellEPNS_4HeapEPNS_6JSCellE) +STUB( + "gxkGMvILSqg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEED1Ev) +STUB("gxkJdAhHpGc", u_strToUTF32WithSub_67) +STUB( + "gxkrCw+1Cmw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEE21intrusive_ptr_sub_refEPS7_) +STUB("gxlF59yPwws", + _ZN12video_parser16cVideoContentMp423releaseOperatorInstanceEPNS_14iVideoOperatorE) +STUB("gxlgckSr7z4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEED1Ev) +STUB( + "gxrzI1ynwA0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "gxsswYWjEX0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE10setContextEPNS2_10LibContextE) +STUB( + "gxtywMzjJho", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) STUB("gxvn6JGDhBw", sceFsExternalStorageDeconfigure) +STUB( + "gxxhQ1LriRw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE21receiveResponseHeaderEv) +STUB( + "gxxhUv+jNMI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "gy1G9GS4Ens", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE8pushBackERKS8_) +STUB( + "gy3T3WBPLAU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEED2Ev) +STUB( + "gy5Zv0ObZJI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEED1Ev) +STUB( + "gyAieABDoHU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("gyCjQn2+l6Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEEC2Ev) +STUB( + "gyFPpyXvcCQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE8copyFromERKS9_) +STUB( + "gyN2KZV162U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE3endEv) +STUB("gyQhS+RNCSQ", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112GroupingTypeEEdeEv) STUB("gyTyVn+bXMw", sceImeDialogTerm) STUB("gyVTZWyySpM", sceAgcDriverGetSetWorkloadsActivePacketSize) +STUB( + "gyVr5gnHCMk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEC1ERKS7_) +STUB("gyYQt9t4voY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE8capacityEv) +STUB( + "gyaQXGnk5xA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEC1Ev) +STUB("gyaouzu4-w8", usearch_open_59) +STUB("gygzdpUOeyI", _ZN7WebCore10Pasteboard22readStringInCustomDataERKN3WTF6StringE) +STUB( + "gyiJ4qtorWw", + _ZN7WebCore20ResourceLoadObserver23setNotificationCallbackEON3WTF8FunctionIFvONS1_6VectorINS_22ResourceLoadStatisticsELm0ENS1_15CrashOnOverflowELm16EEEEEE) STUB("gylHiQ56F10", sceVideoCoreMediaSourceAppendData) +STUB( + "gyn1PLTsamI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEE5resetEPS8_) +STUB("gyqW9rM5vIs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE3endEv) +STUB("gyqpM5tRXtA", _ZN7WebCore9FloatRect5scaleEff) +STUB("gyuVdpJihv0", _ZN3sce3Xml3Sax6ParserD1Ev) +STUB("gyx7Amyd94M", __tsan_atomic128_compare_exchange_strong) +STUB( + "gyxd-epfbgI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEEaSERKSA_) +STUB("gyz287utQ6c", _ZN3sce4Json9RootParamD2Ev) +STUB( + "gz3s69xSvAI", + _ZNK3sce2Np9CppWebApi14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBody6toJsonERNS_4Json5ValueEb) +STUB("gz63bzYxL9E", mono_shared_hashtable_foreach_steal) +STUB( + "gz8ms-RcWBM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEC2EPS8_) +STUB( + "gzF2sqsXebA", + _ZN7WebCore17HTMLSelectElement3addERKN3WTF7VariantIJNS1_6RefPtrINS_17HTMLOptionElementENS1_13DumbPtrTraitsIS4_EEEENS3_INS_19HTMLOptGroupElementENS5_IS8_EEEEEEERKNS1_8OptionalINS2_IJNS3_INS_11HTMLElementENS5_ISF_EEEEiEEEEE) +STUB( + "gzKUPLePiEM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE5beginEv) STUB("gzLt9Qrauk0", sceCoredumpConfigDumpMode) +STUB("gzP2lq5uSXo", udat_formatCalendarForFields_67) +STUB("gzUyAMoXgzg", _ZN7WebCore15GraphicsContextD2Ev) +STUB( + "gzYpPv6oigs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEEaSERSA_) +STUB("gzcHpAWMGig", _ZN7WebCore17PageConsoleClient7timeEndEPN3JSC9ExecStateERKN3WTF6StringE) +STUB( + "gzeUeOoBiZU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEaSERKS9_) STUB("gzjhKWIF5Gs", sceVorbisDecCrossLap) +STUB( + "gzm4qiq0BCI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEEC1ERKS9_) +STUB("gznNreVeRLc", + _ZN3sce2Np9CppWebApi7Matches2V133RequestTemporaryCompetitiveResult16getPlayerResultsEv) STUB("gzndltBEzWc", sceAmprCommandBufferGetNumCommands) +STUB("gzqGuvpnhNs", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE7popBackEv) +STUB("h+15N46TlB8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEEC2ERKS9_) +STUB("h+4DJpAXs4I", __sys_opmc_get_ctr) +STUB( + "h+7nGokgu94", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEptEv) +STUB("h+E3nihI2mM", WKPluginInformationHasSandboxProfileKey) +STUB( + "h+GeWflmQp4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "h+HBx-cfb38", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEE5resetEPS6_) +STUB( + "h+IggV4FUgM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE7reserveEi) +STUB("h+J60RRlfnk", nextafter) +STUB("h+OfxlwNP6s", _ZN7WebCore15ActiveDOMObjectC2EPNS_22ScriptExecutionContextE) +STUB( + "h+RtLuceyaI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE7popBackEv) +STUB("h+TdWvCbo-Q", HttpCacheWrapperRetrieve) +STUB("h+WekCTkEg8", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchDetailC1ERS5_) +STUB( + "h+XDfbphmr8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE5beginEv) +STUB( + "h+Zv9K8wras", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEdeEv) +STUB("h+c9OSfCAEg", _ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED1Ev) +STUB("h+eB2OwsihQ", ucnv_getSubstChars_67) +STUB("h+iBEkE50Zs", _ZTSSt10moneypunctIcLb0EE) +STUB( + "h+q4KqbsuR0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEED1Ev) +STUB("h+rFGpZ-9GY", mono_threads_request_thread_dump) +STUB( + "h+tFhwoYpyc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEE7get_refEv) +STUB("h+v1uJNkdY4", _ZN7WebCore14ResourceHandleD0Ev) +STUB("h+wtQ0Jvjh4", psl_get_version) +STUB("h+xQETZ+6Yo", _ZTSPKy) +STUB( + "h+y3L2Zg0wg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE8copyFromERKS9_) +STUB("h-+VxV8GFlE", + _ZN7WebCore12deleteCookieERKNS_21NetworkStorageSessionERKNS_3URLERKN3WTF6StringE) +STUB( + "h-1N2L3CcLE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEC2Ev) +STUB("h-DPGYy59zw", Java_com_sony_bdjstack_org_bluray_storage_PersistentDataAreaInfo_getTotalPsSize) +STUB("h-HCQG2lRQo", _ZN7WebCore21DiagnosticLoggingKeys29exceededBackgroundCPULimitKeyEv) +STUB("h-I2QP+0Z7s", JVM_HoldsLock) +STUB( + "h-IjHfG7Nyg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEC2Ev) +STUB("h-JNdoOhUY8", WKPageConfigurationSetPreferences) STUB("h-JkOgS7Ljg", sceDebugGetVirtualMemoryInfo) +STUB( + "h-M8O7Bw9Pg", + _ZN7WebCore24passesAccessControlCheckERKNS_16ResourceResponseENS_23StoredCredentialsPolicyERNS_14SecurityOriginERN3WTF6StringE) STUB("h-OifiouBd8", scePthreadRwlockattrSettype) +STUB( + "h-R-Q3ethio", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEED1Ev) +STUB("h-RB8SdvX6U", OCSP_basic_add1_cert) +STUB( + "h-RoW9DvTW8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEmmEi) +STUB("h-V8r4EF7bo", _ZN3sce4Json6Object8iterator7advanceEm) +STUB("h-XTTR5OU20", mono_class_num_events) +STUB( + "h-ZkmO1es2Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEppEi) +STUB("h-a7+0UuK7Q", _ZN10__cxxabiv121__vmi_class_type_infoD1Ev) +STUB("h-aVsrxIcRs", mono_aot_Sce_Vsh_ShellCoreUtilWrapperjit_code_end) +STUB( + "h-d1qG93iZg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEEC2Ev) +STUB( + "h-gKAUUU6r4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEEcvbEv) +STUB( + "h-gnciqEcUg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEmmEi) +STUB( + "h-nLbUs8oj4", + _ZN9Inspector31RuntimeBackendDispatcherHandler20AwaitPromiseCallbackC1EON3WTF3RefINS_17BackendDispatcherENS2_13DumbPtrTraitsIS4_EEEEi) +STUB("h-pwnoSE-tk", _ZN3sce7Toolkit2NP2V29Messaging7Request17SendInGameMessageC1Ev) +STUB( + "h-yqEkrJ1v8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEppEv) +STUB("h0-W7NdY+OE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEE7add_refEv) +STUB("h00j6unQuG8", _Z23Ime_UpdateContextNativemP11_MonoStringj) +STUB( + "h00mGQukrWQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEaSERKS7_) +STUB("h01Tx0bEji0", _ZN3sce2Np9CppWebApi7Matches2V113RemovedPlayerC2EPNS1_6Common10LibContextE) +STUB("h033Ypm8Gnw", _ZN7WebCore11DisplayList6SetCTMC1ERKNS_15AffineTransformE) +STUB("h03451xDaKs", utrie2_isFrozen_67) +STUB("h05OHOMZNMw", ftrylockfile) +STUB("h0AD0dCrvSc", _ZN7WebCore4Page22revealCurrentSelectionEv) +STUB("h0EenX2eWyA", _ZN3sce2np13NpAccessTokenC2ERK16SceNpAccessToken) +STUB("h0FBkPyOZ3w", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_19UserRankInformationEEC2Ev) +STUB( + "h0Gei5o3fiA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEE5resetEPS9_) +STUB( + "h0JPrx-+Ghk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE7popBackEv) +STUB("h0O4HmfKZK4", _ZN7WebCore11BitmapImageC2EPNS_13ImageObserverE) +STUB("h0S6kPRAhMA", mono_domain_create_appdomain) +STUB("h0V9NJIvs3s", _ZN12video_parser13cVideoPathMgv14GetMaclistNameEPcc) +STUB( + "h0VikfcrKao", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEEC1ERSA_) STUB("h0XebKiMBtk", sceUltMutexUnlock) +STUB("h0ZwshNTp0o", + _ZNK3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForRead6toJsonERNS_4Json5ValueEb) +STUB("h0dJ3kt7cdc", _ZN3sce7Toolkit2NP15NpIdListRequestC2Ev) +STUB( + "h0dYE6rGWOQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE4sizeEv) +STUB( + "h0esO-BJz6U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEE11get_deleterEv) +STUB("h0k3YHRmuQc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEC2Ev) +STUB("h0k8FLhotoM", _ZN7WebCore21BackForwardController9goForwardEv) +STUB("h0n4Fb9j2R8", FT_CMap_Done) STUB("h0o+D4YYr1k", sceAudioOutSetJediSpkVolume) STUB("h0qUZQn20ww", scePlayReadyEnvelopeOpen) STUB("h0qUqSuOmC8", pthread_condattr_getpshared) +STUB("h0slGrL6pBs", glGenQueries) +STUB("h0tRdxavoc0", _ZN3JSC11FuzzerAgentD2Ev) +STUB( + "h0wijviD6BY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEppEv) +STUB( + "h0wp+UtjGGI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "h10I+yAIowQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEmmEv) +STUB( + "h11w5dhNEzU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE3endEv) +STUB("h1205-UYfiQ", + _ZN7WebCore14DocumentLoader14notifyFinishedERNS_14CachedResourceERKNS_18NetworkLoadMetricsE) +STUB("h12wGOOoO5s", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_12CategoryInfoEE17getAdditionalInfoEv) +STUB("h16q7HjVyTE", u_getBidiPairedBracket) +STUB("h1AGMerP6FY", _ZNK7WebCore6Editor17shouldDeleteRangeERKN3WTF8OptionalINS_11SimpleRangeEEE) +STUB("h1Eewgzowes", _ZTIN10__cxxabiv116__enum_type_infoE) +STUB("h1F+KHUaE2o", _ZN3JSC13PropertyTable6s_infoE) +STUB("h1Ft1kj6f0g", _ZN7WebCore22EmptyFrameLoaderClient19saveViewStateToItemERNS_11HistoryItemE) +STUB("h1FyPZnNElI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEptEv) +STUB( + "h1H0lfkv+r8", + _ZN7WebCore11DisplayList9DrawImageC2ERNS_5ImageERKNS_9FloatRectES6_RKNS_20ImagePaintingOptionsE) +STUB( + "h1NPWZfxUow", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEC2Ev) +STUB("h1OOkl9e0NI", _ZN3sce7Toolkit2NP2V212ActivityFeed6Action19START_GAME_ARGS_MAXE) STUB("h1SWCcBdImo", sceNpStrnParseHex) +STUB("h1Tw74jYHiM", ubidi_getJoiningGroup_67) +STUB( + "h1WKAUKtwaw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("h1XVvyg8tGA", _ZN3sce7Toolkit2NP2V28Matching12Notification11RefreshRoomC1ERKS5_) +STUB("h1Y6+W0pbEU", _ZN7WebCore21nextParagraphPositionERKNS_15VisiblePositionEi) +STUB("h1Z1bwr5Aas", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product10setVersionERKi) +STUB( + "h1ZSMzi+cIM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEC2EPS8_) +STUB("h1cbNccaRLQ", _ZN12Mp4Retriever10InitializeEv) STUB("h1dR-t5ISgg", sceWebBrowserDialogUpdateStatus) STUB("h1nP9EYv3uc", sceSaveDataDownload) +STUB("h1oT-Ke-wl0", _ZNK7WebCore11MediaPlayer25preferredDynamicRangeModeEv) +STUB( + "h1uz83Ld5gw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEneERKS9_) +STUB("h1v6F8shCaM", _ZN3WTF9MediaTimeC1Ev) +STUB("h1xWU1RxIG4", EVP_md5) +STUB( + "h2+KJh26azM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("h22pPL+zT-0", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEEaSERS7_) +STUB( + "h2IRwEHmsRY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEixEm) +STUB("h2MkTxBmZQA", UnregisterPrivateMessage) +STUB( + "h2P4cwGBMyM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEC2Ev) +STUB( + "h2PZMxrmK2g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEE11get_deleterEv) +STUB("h2QZRkRHO10", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfileC2ERS5_) +STUB("h2R6ZvEXZ-E", _ZN7WebCore10setCookiesERNS_8DocumentERKNS_3URLERKN3WTF6StringE) +STUB("h2TsFJ6Wn6c", cpp_demangle_read_offset_number) +STUB("h2UufXwtrBw", _ZN7WebCore8Document25scheduleForcedStyleRecalcEv) +STUB("h2XIfDIji6Y", _ZN3sce7Toolkit2NP2V28Matching6MemberC2ERKS4_) +STUB( + "h2XvFtbZKSY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("h2cIHUQsu9w", WKPageClose) +STUB("h2l92tnR88Y", _ZN7WebCore22EmptyFrameLoaderClient33dispatchDidReplaceStateWithinPageEv) +STUB("h2qo9YC5nuI", mono_gc_reference_queue_free) +STUB( + "h2uG0pPMn-o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEC2Ev) +STUB( + "h2wwSt-3z4g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEE11release_refEv) +STUB("h31b8b1xbS4", _ZN12Mp4Retriever14processMdatBoxEv) +STUB("h32Nw3vc8UE", FT_List_Iterate) +STUB( + "h35e5c00Cpg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEEC1ERSA_) +STUB("h38RqwwwQlM", _ZNK3WTF10StringView4findES0_j) +STUB("h3Kif+d2hP4", _ZN7WebCore22EmptyFrameLoaderClient30updateGlobalHistoryItemForPageEv) +STUB("h3LTsRjXiRM", _ZN12video_parser13cVideoPathMnv11sExtentListE) +STUB( + "h3NFeNkgUD8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEEC1ERSA_) +STUB("h3NZavyUBAI", WKUInt64Create) STUB("h3OvVxzX4qM", sceCompanionHttpdSetBody) +STUB("h3PbnNnZ-gI", _ZNKSt5ctypeIwE8do_widenEc) +STUB( + "h3YFFs8OG6o", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEptEv) +STUB("h3YHVToAF5A", unum_countAvailable_67) +STUB("h3YSGBnk73w", __sanitizer_ptr_sub) STUB("h3YURzXGSVQ", sceSaveDataSetSaveDataMemory) +STUB("h3Z6H5VoZQs", _ZN3sce3pss4core9PsmObjectC2Ev) +STUB("h3c0znldOaU", uprv_itou) +STUB("h3fgd28Fqfc", _ZN3sce7Toolkit2NP2V211UserProfile7Request27GetVerifiedAccountsForTitleC2Ev) STUB("h3jCAr5wSM4", sceUpsrvUpdateRequestDownloadPup) +STUB("h3ncyrZLUWc", _ZN7WebCore17FrameLoaderClient27forcePageTransitionIfNeededEv) +STUB( + "h3nhqkHdzgQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEeqERKS9_) +STUB("h3p-IDytuAk", _ZN3WTF14FileSystemImpl24pathByAppendingComponentERKNS_6StringES3_) +STUB( + "h3t4lTtHdkQ", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitations12setsessionIdEPKc) +STUB("h3up3fILBXA", _ZN7WebCore28BackingStoreBackendCairoImplC1ERKNS_7IntSizeEf) +STUB("h3x0PM5nxXo", mono_aot_Sce_Vsh_Registryunbox_trampoline_addresses) +STUB( + "h3xfshhGwc4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE8copyFromERKS9_) +STUB( + "h3y302VSPhE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEED2Ev) +STUB( + "h3yfSUvylCI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEmmEv) +STUB( + "h404NOe8d8w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEC1EPS8_) +STUB( + "h41tk98lVOM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEED1Ev) +STUB( + "h48JF4lcIs4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEC2EPS8_) +STUB("h4EDPDzHiX0", _ZN3sce3Xml4AttrC1ERKS1_) +STUB( + "h4OFHF-WWwM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("h4OJbwjtbYc", _ZN7WebCore14CredentialBaseC2Ev) +STUB( + "h4ZNOvZy12Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEEdeEv) STUB("h4dd7oKiTQc", sceMusicCoreServerGetEvent) +STUB("h4e6eJrCMVk", _ZN13MsvMetaEditor14initializeMetaEPKc) +STUB( + "h4g599w+aHE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE5eraseENS2_8IteratorIS8_EERSB_) STUB("h4i3gkTA9EU", sceFsExternalStorageInitialize) +STUB("h4k9Cm7BxxI", + _ZN9Inspector17BackendDispatcherC2EON3WTF3RefINS_14FrontendRouterENS1_13DumbPtrTraitsIS3_EEEE) +STUB( + "h4loJcLv19M", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("h4mj1Rjl6eQ", _ZN3sce7Toolkit2NP2V23TUS25AtomicAddToAndGetVariableC2Ev) +STUB( + "h4oshX6L5ZQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEEaSERSA_) +STUB( + "h4qFUCNvQsU", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V113ErrorResponse8setErrorERKNS1_6Common12IntrusivePtrINS3_5ErrorEEE) +STUB("h4rZXdIdwFU", _ZNK3WTF24TimeWithDynamicClockTypeleERKS0_) +STUB("h4ts5qmCpFk", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEEC2Ev) +STUB("h5+CTMLoVgk", rgctx_fetch_trampoline_mrgctx_99) +STUB( + "h57eCAaeBuc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEED1Ev) +STUB( + "h59RctVWpsM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("h59vNoDoZUU", monoeg_g_queue_is_empty) +STUB("h5EiQluIXlU", + _ZNK3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse17getPersonalDetailEv) +STUB("h5HTjHj9wLM", rgctx_fetch_trampoline_mrgctx_17) +STUB( + "h5M3OkP1iLg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "h5M4gb2vU6k", + _ZN3sce7Toolkit2NP2V26Trophy18getTrophyPackGroupERKNS3_7Request18GetTrophyPackGroupEPNS2_4Core8ResponseINS3_15TrophyPackGroupEEE) +STUB("h5QVPYofp2k", _ZN3sce7Toolkit2NP2V212ActivityFeed11SharedVideo11SN_TYPE_LENE) STUB("h5QlIYj+Ro8", _sceUltSemaphoreCreate) +STUB("h5UTp+nTqPw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE8capacityEv) +STUB("h5X9wHxHGOY", _ZN7WebCore21JSTextTrackCueGenericD2Ev) +STUB("h5eLTrmb9g0", _ZN7WebCore15SQLiteStatementC2ERNS_14SQLiteDatabaseERKN3WTF6StringE) STUB("h5jSB2QIDV0", sceAudiodecTermLibrary) +STUB( + "h5mdK2ctFzA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("h64Ojqk4fbE", _ZN15AbstractStorage14MemfileContent5CloseEv) +STUB("h64u7Gu3-TM", _ZTSPKw) +STUB( + "h66ZAR4B4xI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEaSERKS9_) +STUB( + "h69-bR0LkRU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE5beginEv) +STUB( + "h6AIajIzZL0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEC1Ev) +STUB("h6B95w83c+Y", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEEcvbEv) +STUB("h6HHFebCPUY", udata_openSwapperForInputData) +STUB("h6Hcy36YwbE", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_15CategoryInfoSubENS2_IS4_EEEE7addressERKS6_) +STUB("h6IaUPX+Sfc", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead17unsetJoinDisabledEv) +STUB("h6RBYXFY+dw", g_JITCodePoison) STUB("h6RcAAgqqT8", sceVideoCoreCancelThumbnail) +STUB("h6T-jO2nhTc", _ZNK9Inspector18InjectedScriptBase4nameEv) +STUB("h6UWRLMpiho", _ZNSt5ctypeIwE7_GetcatEPPKNSt6locale5facetEPKS1_) +STUB("h6XL2wyRFpM", _ZNK7WebCore11HistoryItem17originalURLStringEv) +STUB("h6XPsGpHAtc", _ZN3sce2np12HttpTemplateD2Ev) +STUB("h6c4kjAGzss", T3hi) +STUB( + "h6f71oNupp8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEEC2ERSA_) +STUB("h6fqSoAmmFQ", jpeg_finish_output) +STUB( + "h6giNSFf2bs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE17setNpWebApi2ReqIdEl) STUB("h6hIgxXEiEc", sceFontMemoryTerm) +STUB("h6hnzl2edzA", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V18Variable10ownerIsSetEv) +STUB("h6m1odwqwVg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking8TempRankEEC2Ev) +STUB( + "h6m4vBRUSFM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEppEi) STUB("h6oJjSrmwdk", sceMusicFwSetVolume) +STUB("h6pVBKjcLiU", ilogb) +STUB( + "h6txl+QaLvA", + _ZN15AbstractStorage12LocalStorage7GetItemERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_4ItemEE) +STUB("h6uKXxrcmbc", _ZN7WebCore11MathMLNames7mathTagE) +STUB("h6uieQEZS2A", mono_btls_ssl_set_max_version) +STUB( + "h6vZB6jYdqY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEeqERKS9_) +STUB("h6x3elHjTko", _ZN7WebCore9HTMLNames10commandTagE) +STUB("h74WDkmnaDY", _ZN7WebCore17CredentialStorage6removeERKN3WTF6StringERKNS_15ProtectionSpaceE) STUB("h7C1w1jlG6c", sceShellCoreUtilIsEyeDistanceAdjusted) +STUB( + "h7DRakd4HKw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "h7EjMSy0UEQ", + _ZN9Inspector25NetworkFrontendDispatcher33webSocketWillSendHandshakeRequestERKN3WTF6StringEddNS1_6RefPtrINS_8Protocol7Network16WebSocketRequestENS1_13DumbPtrTraitsIS8_EEEE) +STUB("h7JE0iSewi4", + _ZN7WebCore4Page16countFindMatchesERKN3WTF6StringENS1_9OptionSetINS_14FindOptionFlagEEEj) STUB("h7KKNBlZJYs", sceDeci4hDrfpFstat_fuse_fullpath) +STUB( + "h7QrAkpAoPA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "h7SgNtgGeDA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V139ConnectionQualityWirelessMetricsFactory7destroyEPNS3_32ConnectionQualityWirelessMetricsE) +STUB("h7TjPntTtHM", utrace_setFunctions) +STUB("h7UWAc6+MEE", _ZN3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResults10unsetScoreEv) +STUB( + "h7Yided9dH0", + _ZN9Inspector27AnimationFrontendDispatcher13effectChangedERKN3WTF6StringENS1_6RefPtrINS_8Protocol9Animation6EffectENS1_13DumbPtrTraitsIS8_EEEE) +STUB( + "h7YlYjMYu2k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEppEv) +STUB("h7bhuHcIVx0", il2cpp_class_get_nested_types) +STUB( + "h7dkw9DDVd0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE5emptyEv) +STUB("h7gewiEXIhs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEmmEi) +STUB( + "h7j-V++4V88", + _ZN3JSC7JSProxy25getOwnPropertySlotByIndexEPNS_8JSObjectEPNS_14JSGlobalObjectEjRNS_12PropertySlotE) +STUB("h7jRLurwZoI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEC1ERS7_) +STUB("h7k8ivlcKW4", _ZN7WebCore19JSHTMLSelectElement4infoEv) +STUB("h7ll5x+qtGg", _ZN3JSC7Symbols31allocateFloat64ArrayPrivateNameE) +STUB("h7mDS1CrXXg", WKPreferencesGetViewGestureDebuggingEnabled) +STUB("h7sU7HPh5QU", WKBundlePageReplaceStringMatches) +STUB( + "h7vuTd37JqE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEC2Ev) +STUB("h7y9Qh01Sjw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEEC1ERS6_) +STUB( + "h81Nbn0STtA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE7reserveEi) +STUB("h81VAUG7-0c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEEC2ERS7_) +STUB( + "h824u3B8Kwc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEE11get_deleterEv) +STUB("h84MIvQPyVA", uloc_setDefault) +STUB("h84nIzPihdM", _ZN9Inspector31ScriptProfilerBackendDispatcherD1Ev) +STUB( + "h87hI7Uw7bk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB( + "h8CnuzUjNP8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEE21intrusive_ptr_add_refEPS7_) +STUB("h8D4E0COHcs", _ZN3JSC8Profiler8DatabaseC2ERNS_2VME) +STUB("h8DBXRCbEIk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEEneERKS7_) +STUB("h8GwqPFbu6I", memset_s) +STUB( + "h8H1GQnH34A", + _ZN3sce2Np9CppWebApi14SessionManager2V133RequestPlayerSessionPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_26RequestPlayerSessionPlayerEEE) +STUB("h8J6TWF2K6E", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_10TrophyInfoEE3getEv) +STUB("h8JIx+QzkOk", JVM_GetClassDeclaredMethods) +STUB("h8K-pa8owbg", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry13objectIdIsSetEv) +STUB( + "h8NYVX2Pc2M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "h8OuLOQyADM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEEC2ERSA_) +STUB( + "h8RNgLHX8xs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEC1EPKS8_) +STUB( + "h8XnfEjYOFw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEED2Ev) +STUB("h8d3tfMiyhc", _ZN3sce2np13NpAccessTokenC1Ev) +STUB("h8dKaJbfhLs", _ZN7WebCore17CSSPrimitiveValue13setFloatValueEtd) +STUB("h8dR9pcJiP8", + _ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody24getNeedsRecordedDateTimeEv) STUB("h8jq9ee4h5c", sceLibcInternalMemoryMutexEnable) +STUB("h8mwPFwhEPQ", ucnv_convert) +STUB("h8nbSvw0s+M", __fixunsdfdi) +STUB("h8tjiebjfMU", ucurr_getPluralName_67) +STUB("h8uVvFuafww", _ZN3sce7Toolkit2NP9NpTitleId10getTitleIdEv) STUB("h8uongcBNVs", sceSystemGestureGetTouchEventsCount) +STUB("h8yISFR3si4", SwCtrlManagerInitialize) +STUB( + "h94Qiqx4xQA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEC2Ev) +STUB("h9Ak0tSAc0A", _ZN3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectatorD1Ev) +STUB( + "h9AppiQ9JRA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE21intrusive_ptr_add_refEPS9_) +STUB("h9C+J68WriE", _ZTISt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE) STUB("h9CcP3J0oVM", pthread_join) +STUB("h9CpAVBkQJM", _ZN9Inspector19InspectorAuditAgentnaEm) +STUB("h9EBg6zvEys", _ZN3JSC2VM17addImpurePropertyERKN3WTF6StringE) +STUB("h9HZ2XREq3Y", _ZN3sce7Toolkit2NP2V23TUS13TusDataBufferC1Ev) +STUB("h9Ln90tq9Ng", _ZN9Inspector14InjectedScript10saveResultERN3WTF6StringERKS2_RNS1_8OptionalIiEE) +STUB("h9RyP3R30HI", _ZNSt14numeric_limitsImE8digits10E) +STUB("h9XMNUVnLVo", _ZN3JSC7Symbols17rejectPrivateNameE) +STUB("h9cGGfHyMHU", + _ZN3sce2Np9CppWebApi12Leaderboards2V122GetRankingResponseBody8fromJsonERKNS_4Json5ValueE) +STUB( + "h9gGXWJeD+Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEED1Ev) STUB("h9i7V2WpMUw", s_fixed_count) +STUB( + "h9l7SilfpF0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEdeEv) +STUB( + "h9lNk13UU3I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("h9m948tUfKI", usearch_getText_67) +STUB( + "h9oSLQ5PkvM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEneERKS9_) +STUB("h9pp-X5+tpU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4RoomEE3getEv) +STUB("h9qfBI793FM", mono_class_get_field) +STUB("h9v3R3VV5mM", _ZN9Inspector23TargetBackendDispatcherD0Ev) +STUB("h9vgyUGjyIQ", _ZN7WebCore12NamedNodeMap17removeNamedItemNSERKN3WTF12AtomicStringES4_) STUB("h9wmFZX4i-4", sceHttpSetRedirectCallback) +STUB("h9yvj9KP3Eg", mono_aot_Sce_Vsh_BackupRestoreUtiljit_code_end) STUB("h9z6+0hEydk", sceAgcSuspendPoint) +STUB("h9zmuIOwSgc", mono_aot_System_Xml_Linqunbox_trampolines_end) +STUB("hA3dqTpa-lI", mono_type_to_unmanaged) +STUB("hA5cY8jRKVE", X509_NAME_print_ex) +STUB("hA8TWZkwPRU", glOrbisTexImageCanvas2DSCE) STUB("hA9LshbSkzw", sceHmd2ReprojectionSetRenderConfig) +STUB( + "hABp7x-CXR8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "hAFkSZQ2OLY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEC2Ev) +STUB( + "hAGSzlV-wAc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEED1Ev) +STUB("hAH4eertqiA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEED1Ev) +STUB( + "hAI6J4SHK+M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEC1EPKS8_) +STUB("hAJZ7-FBpEQ", fesetround) STUB("hAS5WH6hxrE", sceAudiodecCpuClearContext) +STUB( + "hATk-YlNy2g", + _ZN9Inspector25TimelineBackendDispatcher5startElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("hAWKAppwSGs", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEED2Ev) +STUB("hAX3ep8GWEM", _ZN3WTF11msToMinutesEd) +STUB("hAa6OKyx++A", mono_aot_Sce_Vsh_Sticker_StickerLibAccessorunbox_trampolines_end) +STUB("hAbvCx9ZJUQ", mono_metadata_parse_field_type) +STUB("hAf3nmZXulk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEC1Ev) STUB("hAgb6kz3UcU", sceBluetoothHidGetInputReport) +STUB( + "hAidOXApVRE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "hAk+nc7sow8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("hAk87X95F3s", _ZN3sce2np9JsonArrayD2Ev) +STUB( + "hAo4WaqPtvI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "hApP5JVlFuM", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeOnlineId2AccountIdBatchC2Ev) STUB("hApQ4NmZ0IU", sceRegMgrPrintInfo) +STUB("hAqOst0xOgU", + _ZSt9use_facetISt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale) +STUB("hAsOTuvPiq4", Java_com_sony_bdjstack_system_BDJModule_prepareTitle__Ljava_lang_String_2) +STUB( + "hAxPImAm2zY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE8capacityEv) +STUB("hAyuWehGj+o", _ZN3sce7Toolkit2NP2V210Tournament13OneVsOneMatchD2Ev) +STUB( + "hB-Hcz0IorA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEmmEi) +STUB( + "hB0JJWwLMGY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEC2ERKS7_) +STUB("hB1Sqhh8Ws4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116JoinableUserTypeEEC1EPS6_) +STUB("hB89uwRrkmI", uregion_getContainedRegionsOfType_67) +STUB("hBB+MzZKUWc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEC2ERS7_) +STUB("hBBRr8UkWd8", _ZN7WebCore20ResourceResponseBase7setTypeENS0_4TypeE) +STUB("hBE8ZGAqlks", _ZN7WebCore9HTMLNames16aria_colspanAttrE) +STUB( + "hBEavO7pf50", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEneERKS9_) +STUB("hBFPj7vpX6c", mono_aot_Sce_Vsh_VoiceAndAgentunbox_trampolines) STUB("hBH2ABP7IeY", sceVrServiceDialogClose) +STUB("hBIX7N5sgfM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE7popBackEv) +STUB( + "hBNjaMsQPA4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEEC2ERSA_) +STUB("hBP-nfU9sbo", _ZN3JSC23MacroAssemblerX86Common18s_popcntCheckStateE) +STUB("hBRu2zzP+hA", uprv_compareASCIIPropertyNames_67) +STUB( + "hBSfEUU0Ffo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "hBUItx6UDQU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEE5resetEPS9_) +STUB( + "hBUZm3mPL1w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("hBZlxsLI3zI", _ZN7WebCore9HTMLNames13onfocusinAttrE) STUB("hBdd8n6kuvE", sceGameLiveStreamingScreenConfigureSeparateMode) +STUB("hBeW7FhedsY", _ZTISt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE) +STUB("hBhzSRNLEYc", JSGlobalContextGetRemoteInspectionEnabled) +STUB("hBmtR+Sp9Bc", _ZN3sce2Np9CppWebApi7Matches2V124RequestCompetitiveResult16unsetTeamResultsEv) STUB("hBsBswrAiGM", sceNpServiceChecker2IntDestroyRequest) STUB("hBsEOmOR3qQ", sceAgcSdmaCopyTiledGen2) +STUB("hBuLbn3mGBw", _ZN3sce2np9JsonValueD1Ev) +STUB("hBvqSQD5yNk", _ZTSSt20bad_array_new_length) +STUB("hBw3k9ipLow", goby_FreeActionResults) +STUB("hBxqAP6GieI", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container16unsetReleaseDateEv) +STUB( + "hByyAzhROf8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEixEm) +STUB("hC1QrRVamZ8", _ZN7WebCore11MemoryCache9singletonEv) +STUB( + "hC7WXIpIWEo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEC2EPS8_) +STUB( + "hCBRDe1wcDQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB( + "hCC4L+6yXhg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEppEv) +STUB("hCF6Jgsd5a8", _ZN7WebCore16HTMLMediaElement10setPreloadERKN3WTF6StringE) +STUB( + "hCFjB8u0cAc", + _ZN3sce2Np9CppWebApi14SessionManager2V157PostGameSessionsSessionIdSessionMessageRequestBodyFactory7destroyEPNS3_50PostGameSessionsSessionIdSessionMessageRequestBodyE) +STUB("hCHWK0HC+Ew", _ZNK7WebCore27ScriptedAnimationController11isThrottledEv) +STUB( + "hCHqII6oy0c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEmmEi) +STUB( + "hCJMrhOvHWc", + _ZN3sce2Np9CppWebApi14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyD2Ev) +STUB( + "hCLmkViDUwQ", + _ZN7WebCore15SQLiteStatement21getColumnBlobAsVectorEiRN3WTF6VectorIhLm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("hCNssVZANCU", _ZN7WebCore18CustomHeaderFieldsD1Ev) +STUB( + "hCQ-fILgMUY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEC2EPS6_PNS2_10LibContextE) +STUB("hCX+LVtXlU4", rgctx_fetch_trampoline_rgctx_84) +STUB( + "hCoR7iMAnok", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEED1Ev) STUB("hCpDkNf8I7s", sceSlimglServerRegisterShaderBinary) +STUB( + "hCyWeiQj1cU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEaSERSA_) +STUB("hCyY74swF4U", _ZN7WebCore7JSRangeD2Ev) +STUB("hCzmxMj+3rU", _ZN3WTF10StringImpl20create8BitIfPossibleEPKDsj) STUB("hD-H81EN9Vg", sceUserServiceGetAccessibilityZoomEnabled) +STUB("hD-k4xzjAjQ", mono_type_is_byref) +STUB("hD0bzglvU4c", _ZN3sce7Toolkit2NP2V210Tournament5MatchaSERKS4_) +STUB("hD4vgaOsEEI", moduleSegAddrKernelEnd) +STUB("hD6J2owGMkY", _ZN3sce2Np9CppWebApi6Common6VectorIfE6insertENS2_13ConstIteratorIfEERKfRS6_) +STUB( + "hD766T1QyG4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "hD8S2h6tYKI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("hD9+vC5k308", _ZN3sce7Toolkit2NP13InviteMessageC1Ev) +STUB( + "hDHrBtIBU5w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "hDMPfd0b2rQ", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_34DetailedProductInfoListInputParams9ProductIdEE7destroyEPS4_) +STUB( + "hDSO9empR3Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEE11release_refEv) +STUB("hDVv83S-DDQ", mono_aot_System_IO_Compressionunbox_trampolines_end) +STUB("hDaVBwDJLQI", + _ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest6toJsonERNS_4Json5ValueEb) +STUB("hDbRaNbEfTg", _ZN12video_parser13cVideoMetaVWG20_changeEndianArtworkEPvj) STUB("hDgisSGkOgw", scePadGetDeviceId) +STUB("hDiY8h7tAlg", _ZN7WebCore6JSFile9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("hDnOqJLmqZs", _ZN3sce2Np9CppWebApi6Common6VectorImE8copyFromERKS4_) +STUB("hDncsiAwE+I", comm_init) +STUB( + "hDrijm7g0F0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("hDtqxjhnerU", _ZN3sce7Toolkit2NP2V27Ranking12FriendsRanks15MAX_NUM_FRIENDSE) +STUB("hDuyUWUBrDU", _WFwprep) +STUB("hDvrSBnyglU", _ZN3sce7Toolkit2NP15AppSTLAllocatorIcE9constructEPcRKc) +STUB( + "hDyTjs1fZXc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEEaSERKSA_) +STUB("hE4Ufn9mDPU", _ZNK7WebCore9FrameView17wasScrolledByUserEv) +STUB( + "hEA4jRhQHeE", + _ZN9Inspector20CSSBackendDispatcher6createERNS_17BackendDispatcherEPNS_27CSSBackendDispatcherHandlerE) +STUB("hEDqhjFKN3U", _ZN3JSC7Symbols18replacePrivateNameE) +STUB("hEE6Xp2tkME", _ZN3sce2np9HttpTrans4InitERKNS0_12HttpTemplateEiPKcS6_tS6_m) +STUB("hEEKjmDJy74", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyD1Ev) +STUB( + "hEHCvmUEnJU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) STUB("hEK26Wdny6s", sceAgcDcbSetWorkloadComplete) +STUB("hEKLrC3h-q4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEEppEi) +STUB("hEKaMzB3bH0", uprv_strdup) +STUB("hEOoSvvbgxk", c16) +STUB("hEQ2Yi4PJXA", _ZNSt6locale16_GetgloballocaleEv) +STUB( + "hER3ergdvJk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE8pushBackERKS8_) +STUB( + "hEV0ivIlw9k", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE5beginEv) +STUB( + "hEemSMOoQtE", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("hEgn+gFiCpg", _ZN7WebCore32rejectPromiseWithGetterTypeErrorERN3JSC9ExecStateEPKcS4_) +STUB("hEm8er7rP3U", _ZN3JSC9Structure16freezeTransitionERNS_2VMEPS0_) +STUB( + "hEo9hqE0890", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("hExkzfpmDKw", _ZN9Inspector30CanvasBackendDispatcherHandlerD1Ev) +STUB("hF3stKUWbWg", FT_Raccess_Get_DataOffsets) +STUB( + "hF7WuFSIW50", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEE11release_refEv) STUB("hF8Pz0rtPLU", sceVdecCoreSetDecodeOutputSw) +STUB( + "hFGLeIc5swI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEppEi) +STUB("hFJOAsmfvQk", mono_aot_Sce_Vsh_UpdateServiceWrapperunbox_trampolines_end) +STUB( + "hFLKs8+RHbQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEE21intrusive_ptr_sub_refEPS7_) +STUB( + "hFMioJwhC64", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("hFOQQbKvSes", _ZN7WebCore24CachedResourceHandleBaseD1Ev) STUB("hFQ9pUxoLQ4", sceAgcGetSemaphoreLabel) STUB("hFTzgblpaSg", sceOpusSilkEncEncodeFloatWithPriority) +STUB("hFUr0D8SIKo", uregex_replaceFirstUText_67) +STUB("hFVxpy3JUR4", _ZN7WebCore21DiagnosticLoggingKeys30exceededInactiveMemoryLimitKeyEv) +STUB( + "hFWS9DesbOs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEEC2EPS7_PFvS9_EPNS2_10LibContextE) +STUB( + "hFXNaOFpD80", + _ZN3sce7Toolkit2NP6Trophy9Interface20trophyRetrieveGroupsEPNS1_9Utilities6FutureINS1_15TrophyGroupInfoEEEibi) +STUB( + "hFYr5SNk0+M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEC2Ev) +STUB( + "hFci+lxjvig", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEixEm) +STUB("hFdr5J7fi5c", + _ZN15AbstractStorage18DailymotionContentC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) +STUB("hFgKqEt+WLY", _ZN3sce7Toolkit2NP2V27Ranking8TempRankC2Ev) +STUB("hFhxhBQDzGA", _ZN3sce7Toolkit2NP2V28Commerce10ContainersD1Ev) +STUB("hFk9FKLENG8", _ZN7WebCore10FileHandle4openERKN3WTF6StringENS1_14FileSystemImpl12FileOpenModeE) +STUB("hFktHM4E9TQ", ucase_toupper) +STUB( + "hFodZFGCGD0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE5clearEv) +STUB("hFqu5w4zIiA", _ZN3sce3Xml3Dom6NodeIdcvPvEv) +STUB("hFs36WbcqKs", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIfEdeEv) +STUB("hFu8m-CNbN0", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request15PostInGameStoryD1Ev) +STUB("hFuz8z2bnAc", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session9SessionIdEE12deepCopyFromERS7_) +STUB( + "hFwyo0wzUG0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEC2EPKS8_) +STUB( + "hFzRGJpMkcw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEC2EPS6_PNS2_10LibContextE) +STUB("hG-a7b2byv4", rgctx_fetch_trampoline_mrgctx_49_p) +STUB("hG1ofgv8Bn4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEED2Ev) +STUB("hGHcnf8w9og", _ZN7WebCore11DisplayList6SetCTMC2ERKNS_15AffineTransformE) +STUB("hGJ2JfVCXI0", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus9infoIsSetEv) +STUB( + "hGKOkR4FLww", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEEC1ERKSA_) +STUB("hGKVouD1cSI", _ZN7WebCore16VisibleSelection20adjustPositionForEndERKNS_8PositionEPNS_4NodeE) +STUB("hGRuUBOv+Fw", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession17unsetJoinDisabledEv) +STUB("hGThy3P3lt4", png_get_uint_16) +STUB( + "hGTutGzAhs8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEE7add_refEv) +STUB("hGZqcObvSD4", _ZN12video_parser17cVideoOperatorEtsD1Ev) STUB("hGbf2QTBmqc", scePadGetExtControllerInformation) STUB("hGcTks-qqIU", sceVideoOutRazorRecallCallbacks) +STUB( + "hGfEVeMS6Ls", + _ZN7WebCore11BitmapImageC2EON3WTF6RefPtrI14_cairo_surfaceNS1_13DumbPtrTraitsIS3_EEEEPNS_13ImageObserverE) +STUB("hGiyDq-l4AE", OPENSSL_init_ssl) +STUB( + "hGjILLO6IhE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEC2ERS7_) +STUB( + "hGlVpbpi4Lo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("hGljHZEfF0U", flockfile) +STUB( + "hGlkh5YpcKw", + _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE14do_get_weekdayES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm) +STUB( + "hGmi6j55kkw", + _ZN3JSC16profiledEvaluateEPNS_9ExecStateENS_15ProfilingReasonERKNS_10SourceCodeENS_7JSValueERN3WTF8NakedPtrINS_9ExceptionEEE) +STUB("hGmiwXj3cKU", eglWaitNative) STUB("hGnwgvLREHM", sceUserServiceSetPbtcSundayDuration) +STUB( + "hGpV0eiM9Mg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("hGpsqO58uHQ", _ZN3JSC22FullGCActivityCallback9deathRateERNS_4HeapE) +STUB("hGs7zWx9OUk", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product16unsetDescriptionEv) +STUB( + "hGsdLT7p-t4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEE11get_deleterEv) +STUB( + "hGtGP66PFyE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEED0Ev) +STUB("hGv08dyfsNQ", curl_multi_setopt) +STUB( + "hGvPw81Pgcw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEplEm) +STUB("hGwz-8X0XO8", SSL_alert_desc_string_long) +STUB( + "hGxSaTJJ8Vk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEEaSERSA_) +STUB( + "hH6e1Q99IKY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEppEv) +STUB( + "hH7KHku1lqs", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData10initializeEPNS1_6Common10LibContextEPKci) +STUB("hH9TSsVNT74", _ZN3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate10setNatTypeERKi) +STUB("hH9XuseRgoI", + _ZN3sce2Np9CppWebApi13InGameCatalog2V517ContentDescriptorC2EPNS1_6Common10LibContextE) +STUB( + "hH9yA-ZoxRQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEixEm) +STUB("hHA1K7CgTWU", _ZN3sce2Np9CppWebApi10Activities2V114UserActivities13ErrorResponseD2Ev) STUB("hHA1frlMxYE", sceCameraGetCalibData) +STUB("hHC0M67TG-U", + _ZN3sce3pss5orbis5input12InputManager27GetControllerHandleByUserIdEiNS2_12HardwareTypeEPi) STUB("hHFrV5mugnU", sceRegMgrPrivateStorageDirCount) STUB("hHHCPRqA3+g", sceSaveDataBindPsnAccountForSystemBackup) +STUB("hHLR+tB3U7Y", _ZN3WTF9MediaTimeC2ERKS0_) +STUB( + "hHMdfRLiYo4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "hHNROkaWYNo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEE3getEv) +STUB("hHNwAJKKgYo", _ZN3WTF11OSAllocator18reserveUncommittedEmNS0_5UsageEbbb) +STUB( + "hHP6EKc7WnI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEptEv) +STUB("hHQ9kdZrHYc", + _ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse14unsetAccountIdEv) +STUB("hHRrtFDTVeI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia6VideosEED1Ev) +STUB("hHV7qVIxQLQ", WKWebsiteDataStoreSetStatisticsSubresourceUnderTopFrameOrigin) +STUB("hHVSySlulKs", _ZN3JSC2VM14throwExceptionEPNS_9ExecStateEPNS_9ExceptionE) +STUB("hHW4K+H+NTY", _ZNK7WebCore16HTMLTableElement5tHeadEv) +STUB( + "hHXKtYhX6Yc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEC2Ev) +STUB( + "hHaBhIQeymc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEEC2EPS6_PNS2_10LibContextE) +STUB("hHbHdXvH5NI", + _ZN3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponse17setTotalItemCountERKi) +STUB("hHeX1Fo0vLI", _ZN7WebCore12DOMTokenList6toggleERKN3WTF12AtomicStringESt8optionalIbE) +STUB("hHfC5MyvDqU", mono_locks_dump) +STUB("hHjw9-aLJk4", JNU_GetStringPlatformChars) +STUB("hHkNFU67uNM", _ZNK7WebCore14JSVoidCallback22scriptExecutionContextEv) +STUB("hHlZQUnlxSM", getrusage) STUB("hHrGoGoNf+s", sceSysmoduleLoadModuleInternalWithArg) +STUB( + "hHrerDFHKj0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB( + "hHto72dyDhk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEC2Ev) STUB("hHzO8LLVE44", sceClPthreadMutexattrDestroy) +STUB( + "hI4GR2Ix4WA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEC2EPS8_) +STUB("hI4Yr8ohiI0", + _ZN3sce2Np9CppWebApi7Matches2V124ResponseTeamMemberResult8fromJsonERKNS_4Json5ValueE) +STUB( + "hI6an+8lLlM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEC1EPS8_) +STUB("hI7oVeOluPM", recvmsg) +STUB("hI8JVrcGWhc", u_forDigit) +STUB( + "hIAe20V+aJE", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsersaSERS5_) STUB("hIAyLXI4V8g", sceMbusGetSparkState) STUB("hIFFMeoLhcY", sceNpAsmCreateRequest) +STUB( + "hIG+VQtkGu8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEE7get_refEv) STUB("hIGX-h1cgvA", sceNpManagerUtilConvertNpIdToJid) STUB("hIIZXUsMeI8", sceVideodec2MapDirectMemory) +STUB("hIKwcwEhcuY", WKPreferencesSetPrimaryPlugInSnapshotDetectionEnabled) +STUB("hIOzfLdWPKA", WKPreferencesGetAsynchronousSpellCheckingEnabled) +STUB("hITAyDrEnMc", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEptEv) STUB("hIUVeUNxAwc", sceNetCtlUnregisterCallbackV6) +STUB( + "hIYIYbVSA5g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("hIb43mo9ubQ", SSL_SESSION_free) +STUB("hIeJougHkoo", _ZN3sce2np10JsonStringC1EP14SceNpAllocator) STUB("hIgrg5h4V6s", sceVdecswAllocateComputeQueue) +STUB("hIhXV8DgVnI", _ZN3JSC13WatchpointSetC1ENS_15WatchpointStateE) +STUB("hIiXx+2+RUY", Java_com_sony_gemstack_org_havi_ui_HBackgroundImageDecoder_init) STUB("hIix-HlsHmU", sceMbusGetSimulatedBusUsableStatusByBusType) +STUB("hIkjBZVk8Ro", _ZN3sce2np9JsonValue3SetEPKS1_) STUB("hIkkDt5bctc", _sceLibcCalloc) +STUB( + "hIr26pvu3tA", + _ZN9Inspector24RuntimeBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("hIw-HVb2-2g", _ZN7WebCore22WorkerScriptController10initScriptEv) +STUB("hJ-c7jmW4WA", _ZNK3WTF6String5splitEDsRKNS_8FunctionIFvRKNS_10StringViewEEEE) STUB("hJ5gj+Pv3-M", sceUserServiceSetGlsBcTitle) +STUB( + "hJ77op0OJ3g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEC1EPKS8_) +STUB( + "hJ8X6QI2PUU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE8copyFromERKS9_) +STUB("hJBLmVie3mg", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_13NetStateBasicEED2Ev) +STUB("hJCR02OuhWk", _ZNK7WebCore9FrameView27positionForRootContentLayerEv) +STUB( + "hJDHxLpbL8U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEaSERKS9_) +STUB( + "hJDKgFoTKIc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEED2Ev) STUB("hJLHJLp47qc", sceEsvmEngineRequestMediaKeySystemAccess) +STUB( + "hJNnJLgNrWc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEC2EPKS8_) +STUB("hJNuW1yB+TY", _ZN7WebCore9HTMLNames16ontouchstartAttrE) +STUB( + "hJOm397XdMw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEEaSERSA_) +STUB( + "hJOpvRNHrvU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("hJPso38OymU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEixEm) +STUB("hJQ0B3t2B7M", _ZN7WebCore4Page33touchEventRectsForEventForTestingERKN3WTF6StringE) +STUB( + "hJQXtQEwP6U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEmmEi) +STUB("hJRPzfJPa34", _ZN7WebCore11MediaPlayer16removeAudioTrackERNS_17AudioTrackPrivateE) +STUB("hJTfD6ay7rE", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead22invitableUserTypeIsSetEv) +STUB("hJU7LZ-qtPU", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V129ConnectionQualityWiredMetrics9getJitterEv) +STUB("hJXxiO31NyQ", _ZN3sce2np18HttpConnectionPool12FindByConnIdEi) +STUB("hJYQb6B5fyE", _ZN7WebCore4Page40setLowPowerModeEnabledOverrideForTestingEN3WTF8OptionalIbEE) +STUB( + "hJZ9kZF0xs8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEEcvbEv) +STUB( + "hJd-+mVwMHc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE8capacityEv) +STUB( + "hJdJvJJO8Hw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE21intrusive_ptr_add_refEPS7_) +STUB( + "hJgvh42XIRc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEaSERKS9_) STUB("hJifaKzQUxE", sceAppInstUtilAppGetInsertedDiscTitleIdList) STUB("hJku67PUGS0", sceNpGriefReportWriteJsonFile) +STUB("hJwDGgzFpPI", _ZN7WebCore11DisplayList17DrawFocusRingPathD2Ev) +STUB("hJwfjY8qv1s", _ZN3sce2Np9CppWebApi7Matches2V124RequestCompetitiveResult18unsetPlayerResultsEv) STUB("hK0CCljzJmY", sceNpFriendListDialogGetResultA) STUB("hK2Bd39pBDs", sceAppInstUtilAppCancelGetAppOtherSize) +STUB( + "hK3StxVq5aY", + _ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime15CollectionEntryEE11runtimeCastEON3WTF6RefPtrINS5_8JSONImpl5ValueENS5_13DumbPtrTraitsIS8_EEEE) +STUB("hKA9ddEAo04", Java_java_io_UnixFileSystem_setReadOnly) +STUB("hKIBf2+zj-4", _ZN7WebCore4Page18setViewScaleFactorEf) +STUB( + "hKLPrxgo7s4", + _ZN3sce2Np9CppWebApi14SessionManager2V140ResponsePlayerSessionNonPsnPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_33ResponsePlayerSessionNonPsnPlayerEEE) +STUB( + "hKMbcIRFxZY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEptEv) +STUB("hKN5OJIT5ko", glBufferData) +STUB( + "hKS-pNtZnMk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEixEm) +STUB("hKTdrR1+dN0", _ZN3sce2np3ipc14service_client13GetIpmiClientEv) +STUB("hKc+WLAD2-o", _ZN7WebCore21DiagnosticLoggingKeys24visibleNonActiveStateKeyEv) +STUB( + "hKcKURM3tZA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE8pushBackERKS8_) +STUB("hKfChNLtQaw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEEC2ERKS7_) +STUB("hKfWocPbLzM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEdeEv) STUB("hKiCcL4h8SQ", sceFsLvdAttachSingleDefaultImage) +STUB("hKjU-olRa1o", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia10BroadcastsEED1Ev) +STUB("hKnT95UYMiQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE6resizeEj) +STUB("hKpymBfyxyM", _ZN7WebCore9HTMLNames10usemapAttrE) +STUB( + "hKtFIZ2ZGBc", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "hKvn-qJAyXc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEEC1ERKSA_) +STUB("hKwJdBxEWPY", _ZN7WebCore9FrameView14setTransparentEb) +STUB("hKzBW7sIClo", Java_java_net_SocketOutputStream_socketWrite0) +STUB("hL+TQCVUCKM", WKPreferencesSetSelectionPaintingWithoutSelectionGapsEnabled) +STUB("hL06BXMcvJA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEC1Ev) +STUB("hL4K4Ug0tHE", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getAngle) +STUB( + "hL6YmoLoMd0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEED1Ev) STUB("hL7C0IRpWZI", sceAgcCbQueueEndOfPipeActionGetSize) +STUB("hLAtb7x8d3g", mono_btls_x509_store_load_locations) +STUB( + "hLBcO7kCAbI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "hLCJhB3eplQ", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToSendPlayerSessionMessageC2ERS5_) +STUB("hLDc5G37EG4", WKTextCheckerGrammarCheckingEnabledStateChanged) +STUB("hLEQlRxP61c", _ZN7WebCore11DisplayList8ReplayerD2Ev) +STUB( + "hLHLFkWe7G0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEEC1ERKSA_) +STUB( + "hLQdlIbcFlU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEC1EPS8_) STUB("hLSyGuNQ0yo", sceDebugGetDebugRegisterStatusMap) +STUB( + "hLWWYoCxjsw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEC2Ev) +STUB( + "hLXIpcmSuKY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEC2EPS8_) +STUB( + "hLbhfyBasms", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "hLjm5Rkrfpo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEC1EPNS2_10LibContextE) +STUB("hLlKGUra-JA", usearch_following_67) +STUB( + "hLlbvWpQkFc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEppEi) +STUB( + "hLmW5croDGk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEC2EPS6_PNS2_10LibContextE) STUB("hLoEhSBhi84", pthread_mutex_init_for_mono) STUB("hLuXdjHnhiI", sceNetGetSockInfo) +STUB("hLuw-otq9WI", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead16sessionNameIsSetEv) STUB("hLz3SP0zVF4", sceVencSetConfig) +STUB("hM7qvmxBTx8", _Tls_setup__Tolotab) +STUB( + "hM8xFznoDs4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEED2Ev) +STUB("hMAe+TWS9mQ", __dynamic_cast) +STUB("hMCy3h9Z-ME", _ZN7WebCore15GraphicsContext22beginTransparencyLayerEf) +STUB( + "hMJYBElgK6k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC2Ev) +STUB( + "hMKVZlxXIhw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEE11get_deleterEv) +STUB("hMO1lc6DG4o", WKHitTestResultCopyLinkLabel) +STUB("hMPKFAI5xAo", mono_aot_Sce_Vsh_RequestShareScreenplt) +STUB("hMPqBxgdqd4", sqlite3_open_v2) +STUB( + "hMRhqlKy7nA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V125IdempotentVariableFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_18IdempotentVariableEEE) +STUB( + "hMTAjAMGhIY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEppEi) +STUB("hMTXyw2fCXI", res_getAlias_67) +STUB( + "hMUY9eRlZ-0", + _ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeaders15hasLastModifiedEv) +STUB("hMV6sxdqoCE", EC_GROUP_free) +STUB("hMWLNCM6Vmc", ucfpos_getCategory_67) STUB("hMYgMP-Vuno", sceLibSecureCryptographyDecrypt) +STUB("hMc3kC4C480", _ZN3sce7Toolkit2NP2V210Tournament16RegisteredRosterC1Ev) +STUB( + "hMdUORxcXkE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEEC1Ev) +STUB("hMjn6z51jLI", _ZN7WebCore24StorageNamespaceProviderC2Ev) +STUB("hMmahzTAYpo", _ZN9Inspector34ApplicationCacheFrontendDispatcher19networkStateUpdatedEb) +STUB( + "hMn0D-oxjLA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEE7add_refEv) +STUB("hMr0EtMYJbQ", g_SocialScreenEnabled) +STUB( + "hMtSwKS31Qs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("hMtxGg9diMQ", _ZN11GvMp4Parser6Common11Utf8ToUtf16EPKcPSbIwSt11char_traitsIwESaIwEEi) +STUB("hMwB4k7Cdwk", _ZN3JSC4Heap12addFinalizerEPNS_6JSCellEPFvS2_E) +STUB("hMwGlafyzGs", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetailC1Ev) +STUB("hMwbnNJ-Z08", il2cpp_class_get_field_from_name) +STUB( + "hMwitOulU4Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE21intrusive_ptr_sub_refEPS9_) +STUB("hMwnRRzjaIU", _ZN3sce3pss4core9threading4Cond6NotifyEv) +STUB( + "hMxydTJQ670", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE3endEv) +STUB( + "hN1fUO7rRqo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("hN20Q01A0zA", _ZN7WebCore11DisplayList5ScaleD1Ev) +STUB("hN6PS5MQn0U", _ZN7WebCore6ISOBox7peekBoxERN3JSC8DataViewEj) +STUB("hN9JhD71QI4", _ZN7WebCore24MatrixTransformOperationC2ERKNS_20TransformationMatrixE) +STUB("hNAh1l09UpA", + _ZNSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE7_GetcatEPPKNSt6locale5facetEPKS5_) +STUB("hNDMuB-dgfE", WKPageGetPageGroup) +STUB("hNLImrNoczc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEC2Ev) +STUB( + "hNNj33eRNrA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("hNPHDKzl1Gc", _ZN7WebCore9HTMLNames9labelAttrE) +STUB("hNXleW4ztQI", sr01) +STUB("hNYwXB5Y3sI", _ZN3sce7Toolkit2NP10IdDatabaseC2ERKNS1_15CommunicationIdE) +STUB( + "hNaJFQBR4Nw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEC1EPKS8_) +STUB( + "hNcKBNhfJUU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEEC2Ev) +STUB("hNdX4VRX3aQ", _ZN3sce2Np9CppWebApi11Matchmaking2V19Attribute7setNameEPKc) +STUB("hNe91PKQcOc", _ZN7WebCore21convertToIntegerClampIjEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB("hNenJjJBBXI", _ZN3WTF15AutomaticThreadD2Ev) +STUB("hNgejAg4Ir8", vzone_getRawOffset_67) +STUB( + "hNhV+SuNygw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "hNmFktt-ysM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEC1ERKS7_) STUB("hNmK4SdhPT0", sceScreenShotGetAppInfo) +STUB("hNssNIwvkeQ", _ZN3JSC2VM26uint8ClampedArraySpaceSlowEv) +STUB( + "hNt-l9fEQ5k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEppEi) +STUB("hNta0e1I2Ss", mono_aot_Mono_Data_Tdsunbox_trampolines) +STUB( + "hNuEJMvfCtA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE6resizeEj) +STUB("hNyN1seFzWY", FcCharSetCreate) STUB("hNyqm2JeBP0", sceNpRemotePlaySessionSignalingGetCustomProperty) +STUB("hNyspV0t-xk", rgctx_fetch_trampoline_mrgctx_19_p) STUB("hO0sxQP5n0Q", sceDepthSetSrParameter) +STUB( + "hO3ZLm3ncCo", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE5eraseENS2_8IteratorIS6_EERS9_) +STUB("hOABTkhp6NM", CERT_getSubjectCommonName) STUB("hOFQ6y6Lu1k", _sceNpIpcDefaultFreeImpl) +STUB("hOHLNfago9M", ECDH_compute_key) +STUB("hOM-emPwQEY", WKBundleRangeHandleGetTypeID) +STUB("hORz4VZuloc", Java_com_sony_bdjstack_ti_Database_getCurrentPlayItem) +STUB("hOXOdd6Lp5g", WKWebsiteDataStoreGetHTTPCookieStore) +STUB( + "hOYWBd9njbo", + _ZN3sce7Toolkit2NP11UserProfile9Interface21getNpUsersInformationEPNS1_9Utilities6FutureINS1_7NpUsersEEEPKNS1_18UserProfileRequestEb) +STUB( + "hOlKiihOeFA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE8pushBackERKS8_) STUB("hOnIlcGrO6g", sceNpWebApi2PushEventUnregisterCallback) +STUB("hOr9NwMv+6c", ufmtval_getString_67) +STUB("hOsPPK9Gu-8", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4DataEEC2Ev) +STUB("hOtA0pa1AXA", + _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead16searchIndexIsSetEv) +STUB("hOtV66n79oQ", il2cpp_string_new_wrapper) +STUB("hOvueEllLDA", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError11errorsIsSetEv) +STUB( + "hOxjIROEYE8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEC1EPKS8_) +STUB("hOxrrGTtiGA", _ZN9Inspector24BrowserBackendDispatcherD2Ev) +STUB( + "hP-IUKgfmR0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEC1EPKS8_) +STUB("hP0LBvbf3IY", _ZN7WebCore18TextureMapperLayer15setDrawsContentEb) +STUB("hP18CDS6eBU", _ZN3sce2np8NpCommIdD2Ev) STUB("hP2q9Eb5hf0", sceUserServiceSetFileSelectorFilter) +STUB( + "hP4SCYtpJ+Q", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEptEv) +STUB( + "hP6Bj-mOJOY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEmmEi) +STUB("hP81Fkk27pg", DecryptRnpsBundle) +STUB( + "hPD5vhhwaJA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEC2Ev) +STUB("hPORKyleBPM", _ZN7WebCore9FrameView15setFooterHeightEi) +STUB( + "hPSipWSJzQg", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) STUB("hPTXo3bICzI", sceHttpParseResponseHeader) STUB("hPVradh5wpo", sceCameraWaitForEveReady) +STUB("hPWDGx8ioXQ", setitimer) +STUB("hPWXRjDacBk", __strtord.fpi0) +STUB( + "hPYHI3aA1U8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("hPZqFseD4ro", _ZNK7WebCore29DeprecatedCSSOMPrimitiveValue15getCounterValueEv) +STUB("hPcieo2nNdk", _ZN3sce7Toolkit2NP2V210Tournament10TeamMemberC2Ev) +STUB( + "hPhIVE+GDFI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEED1Ev) +STUB("hPhQSegOZhg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V124RequestCooperativeResultEEaSERKS7_) +STUB("hPxmMN2Ef0s", _ZThn8_N6WebKit12ChildProcess26messageSenderDestinationIDEv) +STUB( + "hPy97p-OMzo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "hPycqq8T4Us", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEplEm) +STUB("hPzYSd5Nasc", _Mtx_timedlock) +STUB( + "hQ-Ajym9gBE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEE11release_refEv) +STUB( + "hQ1-v5+dWME", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEC1EPS8_) +STUB( + "hQ4390g+gDg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE8capacityEv) +STUB( + "hQ62BxoHvz0", + _ZN9Inspector24TargetFrontendDispatcher13targetCreatedEN3WTF6RefPtrINS_8Protocol6Target10TargetInfoENS1_13DumbPtrTraitsIS5_EEEE) +STUB( + "hQ6ALoiR7cI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE8capacityEv) STUB("hQ72M-YRb8g", sceUserServiceSetGlsLiveQuality2) +STUB("hQ8Mt43cvrc", _ZN3WTF6StringC1EPKcj) STUB("hQAhxWNHwvM", sceUserServiceSetParentalGameWhiteList) STUB("hQClZK9mdkk", sceShellCoreUtilGetShellUIVMStats) +STUB("hQDsPsyIWwE", _ZN3JSC7Symbols34GeneratorStateExecutingPrivateNameE) +STUB("hQEbLTGMhSU", mono_classes_set_global_interface_bitset_location) +STUB("hQLw6eE4O44", _ZN3sce2np9Semaphore4WaitEj) STUB("hQMZAaNGHAs", ScePsmMonoDomainGet) +STUB( + "hQONbpwlBIs", + _ZN7WebCore17CredentialStorage3setERKN3WTF6StringERKNS_10CredentialERKNS_15ProtectionSpaceERKNS_3URLE) +STUB("hQPWgynFHtg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEC1EPS6_) +STUB("hQRJgtxvbQc", _ZN3sce2Np9CppWebApi13InGameCatalog2V511ErrorEntityD2Ev) +STUB( + "hQVLhYPbzwE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEppEi) +STUB("hQX7J7XfqSs", JNU_ThrowNumberFormatException) +STUB("hQYPX1Qsq6Y", uloc_getISOCountries_67) +STUB( + "hQdNOFlDedY", + _ZNK3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody22largeDataNumLimitIsSetEv) STUB("hQeUMTVgPHU", sceCesJisGetLevel) +STUB("hQiPEotip7M", + _ZN15AbstractStorage7Content12GetExtensionERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("hQjpMYS-tEM", u_getIntPropertyValue_67) +STUB("hQkeuEc0BMs", _ZN4IPMI6ClientD1Ev) +STUB("hQmpPQKCKQw", mono_aot_Sce_Vsh_Np_AppInfomethod_addresses) +STUB( + "hQn1AWEdr3o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE8pushBackERKS8_) STUB("hQpmBwrgD4w", sceFsLvdEnableLayer) +STUB( + "hQqfZBsN+FU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEED2Ev) +STUB( + "hQqlW9OWR9o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEED2Ev) +STUB("hQwwcEg9JrE", _ZN3sce7Toolkit2NP2V27NpUtils7Request22GetAccountIdByOnlineIdC1Ev) +STUB("hQxOExuMeQQ", _ZNK3WTF8JSONImpl9ArrayBase3getEm) +STUB( + "hQzIHcIHVhI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEC1EPS8_) +STUB("hR4Q4+3Kw10", JSPropertyNameArrayRelease) +STUB("hR59aDWzHPw", glUniform1i) STUB("hR8-CKMl2JQ", sceVoiceChatCreateRequest) +STUB("hRB5plfMBLQ", JNU_CallMethodByNameV) +STUB("hRBnfwBJIq4", _ZNK3JSC13JSArrayBuffer8isSharedEv) +STUB("hRHigMDwArQ", mono_lock_free_queue_node_unpoison) +STUB( + "hRO1Esih9KY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEdeEv) +STUB( + "hRP0cSjg-jw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEEC1ERKSA_) +STUB( + "hRQuZpfsW+8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE3endEv) +STUB( + "hRUAhQizYdI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("hRVJOIGfek0", _ZN3JSC19InlineWatchpointSet11inflateSlowEv) +STUB( + "hRVzVQCpJ68", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEED2Ev) +STUB("hRY7BbAOaAI", _ZNK7WebCore9PageCache10frameCountEv) +STUB( + "hRYHikTzkHA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEC1EPNS2_10LibContextE) +STUB("hRZnZoEXbfQ", uhash_compareUChars) +STUB( + "hRa9hrre-Y8", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData22hasxPsnAtomicOperationEv) +STUB( + "hRatqlbrQnU", + _ZN3sce2Np9CppWebApi7Matches2V134RequestTemporaryTeamResultsFactory7destroyEPNS3_27RequestTemporaryTeamResultsE) +STUB("hRba2mQ9fss", + _ZN15AbstractStorage14TwitterContent13ParseMetadataEPN23sceMetadataReaderWriter8MetadataES3_) +STUB("hRh5HG-czGg", _ZN3JSC19numberOfDFGCompilesENS_7JSValueE) +STUB( + "hRhKMfPjCNg", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer16unsetkeepHtmlTagEv) +STUB( + "hRiJ8r7O1zA", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi24getFriendsPlayerSessionsEiRKNS4_35ParameterToGetFriendsPlayerSessionsERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_36GetFriendsPlayerSessionsResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB( + "hRqonUQmt74", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEED1Ev) +STUB("hRr40z081Ww", _ZN3JSC7Symbols28ModuleInstantiatePrivateNameE) +STUB("hRsCi8FQjqA", mono_aot_Sce_Vsh_SystemLoggerUtilWrapperunbox_trampolines) +STUB("hRu-fPO-VMo", _ZN3sce2Np9CppWebApi14SessionManager2V130RequestPlayerSessionInvitationD2Ev) +STUB( + "hS-7tcpEDJ8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEdeEv) +STUB("hS-e-Vfw-Cg", _ZN3sce7Toolkit2NP15AppSTLAllocatorItEneERKS3_) STUB("hS0MKPRdNr0", sceGnmSdmaClose) STUB("hS1-bPYxKC4", sceHidControlSetJediAudioOutPath) +STUB( + "hSK32cEpsXo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE8pushBackERKS8_) +STUB("hSLv6J+zxhg", _ZNK7WebCore17CSSPrimitiveValue16getRGBColorValueEv) +STUB("hSNXnh4fS6w", _ZN7WebCore18PluginInfoProvider20clearPagesPluginDataEv) +STUB("hSOO2FvvGBI", uhash_setValueDeleter) +STUB("hSOfRr6cRDU", mono_get_exception_runtime_wrapped) +STUB("hSUcSStZEHM", _ZNSbIwSt11char_traitsIwESaIwEE6appendERKS2_mm) +STUB("hSWo2pXpj6A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEEC1EPS5_PNS2_10LibContextE) +STUB("hSnLhjGefsU", _ZThn16_N3sce2np9LocalFileD0Ev) +STUB( + "hSrgcbIsIH0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "hSy4ZYS6muo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB( + "hT-LLDyDCt8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE21intrusive_ptr_add_refEPS9_) +STUB("hT-cRs38orU", + _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse24unsetLastPausedTimestampEv) STUB("hT0IAEvN+M0", sceNpUniversalDataSystemCreateHandle) +STUB( + "hT1D73Sekuw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEE21intrusive_ptr_add_refEPS7_) +STUB("hT3IF0-rq68", _ZN7WebCore9PageGroup18captionPreferencesEv) +STUB( + "hT4uShlBwAc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEEC2ERSA_) +STUB("hT9TbqN3AcI", _ZN3sce7Toolkit2NP2V29Messaging15GameDataMessage12MAX_URL_SIZEE) +STUB("hTDV4VSasT4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119ChildActivityStatusEEaSERKS7_) +STUB("hTFWUJcyKBw", WKBundleAddOriginAccessWhitelistEntry) +STUB( + "hTRCotMWT7s", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlotaSERS5_) +STUB("hTRom9dDhq0", _ZN9Inspector22InspectorDebuggerAgent6enableERN3WTF6StringE) +STUB("hTVD59G1JgI", mono_aot_Sce_Cdlg_Platformunbox_trampolines_end) +STUB("hTW3lKG0koI", _ZN3JSC14JSGlobalObject14exposeDollarVMERNS_2VME) +STUB("hTcT0WLgtCw", _ZN3sce2Np9CppWebApi7Matches2V127ResponseTeamMemberStatisticD1Ev) STUB("hTdcWcUUcrk", sceUserServiceIsLoggedInWithoutLock) +STUB( + "hTfvsmvfn+I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE3endEv) +STUB( + "hTgqIzRa-Is", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEE7get_refEv) +STUB( + "hTnT5-fxEdI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEEC1ERSA_) +STUB("hTsSi8mmeBE", _ZN3sce2Np9CppWebApi7Matches2V15ErrorD1Ev) STUB("hU3bSlF2OKs", sceSystemServiceReenablePartyVoice) STUB("hUAjs1MUwGY", sceMbusResolveByUserId) +STUB("hUGhxsl8h+s", _ZN3sce2Np9CppWebApi12Leaderboards2V15Entry12unsetCommentEv) STUB("hUN72ocX6gM", sceKernelTerminateSysCore) +STUB("hUT-p6ZFttg", _ZN3JSC7Symbols35newPromiseCapabilitySlowPrivateNameE) +STUB( + "hUUc7P6RA9g", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities33GetUsersActivitiesResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS6_12IntrusivePtrINS4_26GetUsersActivitiesResponseEEE) +STUB( + "hUWeKADo4wA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEEC1EPS9_PNS2_10LibContextE) STUB("hUY-mSOyGL0", sceGameLiveStreamingSetMetadata) +STUB("hUZC4D9B+M8", delegate_virtual_invoke_31_p) +STUB("hUZIRxBcMGU", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container7getSkusEv) +STUB( + "hUn+eoxb8C0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEixEm) +STUB("hUnWf+Gzpik", _LDint.sub) +STUB("hUrC-aKSSHw", _ZN3WTF10AtomString6numberEf) +STUB("hUvVTVIoCOc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEdeEv) STUB("hUza-a0hX2c", sceVdecCoreMapMemory) +STUB("hV4yTCUcogU", _ZNK7WebCore11MediaPlayer17engineDescriptionEv) +STUB("hV5rqxAn+pE", _ZN8meta_gen13TiffRetrieverD1Ev) +STUB("hV6ojr5IGMQ", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_23NpSessionInvitationInfoEEC1Ev) +STUB( + "hV8HcpuJODo", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities15ActivityFactory6createEPNS1_6Common10LibContextEPKcSA_bPNS6_12IntrusivePtrINS4_8ActivityEEE) +STUB( + "hVAz-2nit9o", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE8capacityEv) +STUB("hVBTaS+kl6Q", _ZN7WebCore8Document7anchorsEv) STUB("hVDiK6tofnQ", sceSlimglClientLiveTimeout) STUB("hVDqYB8+jkk", sceSaveDataDebugCompiledSdkVersion) +STUB("hVE9DT4yd18", + _ZNK3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectator12getAccountIdEv) +STUB("hVFySNQXB2w", mono_btls_x509_from_data) +STUB("hVHy4d-eWEU", __sanitizer_get_module_and_offset_for_pc) +STUB("hVQgfGhJz3U", _ZNSt22_System_error_categoryD1Ev) +STUB( + "hVTtDs68szw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEE7add_refEv) +STUB( + "hVXnej5x24M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEaSERKS9_) STUB("hVYD7Ou2pCQ", _sceFiberInitializeImpl) +STUB("hVYr51WGXZo", uregex_matches64_67) +STUB( + "hVfwr0gAUKs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEppEi) +STUB("hVgep7t+Dbk", _ZStL5sbfunRSt8ios_basei) +STUB( + "hVnUYstqoCo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEE5resetEPS6_) +STUB("hVrCgL26Z0Y", _ZN12video_parser5vpcom8datetime8DateTime15datetime_formatE) STUB("hVvUitUwrFs", sceMatMtypeprotect) +STUB("hVyEK49hOlA", + _ZN3sce2Np9CppWebApi14IdentityMapper2V319AccountIdMapFactory7destroyEPNS3_12AccountIdMapE) +STUB( + "hW+eALejtlM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE10setContextEPNS2_10LibContextE) +STUB("hW-9++DsvQ4", WKUserContentControllerCopyUserScripts) +STUB( + "hW2+n4C8HT0", + _ZN3sce2Np9CppWebApi14SessionManager2V150GetUsersAccountIdPlayerSessionsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_43GetUsersAccountIdPlayerSessionsResponseBodyEEE) +STUB( + "hW6fOMklgY8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "hW86tUemJmo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEneERKS9_) +STUB("hW8j5lynicI", rgctx_fetch_trampoline_mrgctx_78_p) +STUB( + "hWBdjJJdB3k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEC1EPKS8_) +STUB("hWDF4BfON5c", WKBundleSetPluginsEnabled) +STUB("hWDmsVtUmtw", p5_4096) STUB("hWE4AwNixqY", sceFontDestroyWords) +STUB("hWEgd6jgQdQ", _ZN7WebCore9HTMLNames27onwebkitbeginfullscreenAttrE) +STUB("hWEp+COe4W4", u_strchr32_67) +STUB( + "hWHLAzzRKf4", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEEiRNS2_10LibContextEPT_m) STUB("hWMCAPpqzDo", sceAudioInSetSparkSideTone) +STUB("hWMLhvK9D2g", WKPreferencesSetDeveloperExtrasEnabled) STUB("hWNh5HhvkO0", sceCesEucKrToUtf16le) +STUB( + "hWPhQ-tUO6U", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEdeEv) +STUB( + "hWPwMIrUodE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE5eraseENS2_8IteratorIS6_EERS9_) +STUB( + "hWUPEBCEMt4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEeqERKS9_) +STUB("hWWIDS76wrc", mono_aot_System_Collectionsjit_code_start) +STUB( + "hWZTw0o2ED8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEmmEv) +STUB( + "hWcU0yO47yQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE5emptyEv) +STUB("hWeXf7yjMDI", ucnv_openStandardNames_67) +STUB("hWjHkAIandU", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_20ChallengeRecvDetailsEED1Ev) +STUB("hWjKpVnPaCE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEdeEv) +STUB("hWlTkG2jVmE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEC1Ev) +STUB( + "hWnj6fG31oQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "hWnv9lPEVi8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "hWtTMIOy3Xc", + _ZN9Inspector26AnimationBackendDispatcher6createERNS_17BackendDispatcherEPNS_33AnimationBackendDispatcherHandlerE) +STUB( + "hWvIfuDJITw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEE11get_deleterEv) +STUB( + "hWvVDC7QBCg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEC2EPS6_PNS2_10LibContextE) +STUB("hWwXVu5VR2U", _Z18sendIpmiConnectResiiiii) +STUB("hWwis8FUZVQ", d2i_ECParameters) +STUB("hX+9PCsymIU", _ZN3JSC8Bindings8Instance16newRuntimeObjectEPNS_9ExecStateE) STUB("hX5OlI45fC4", sceSystemLogger2SetEventAsync) +STUB("hX8j9yVCL4Y", _ZN3sce3Xml3Dom15DocumentBuilder11getDocumentEv) +STUB("hXA24GbAPBk", __gedf2) +STUB("hXAigp8X1mg", uloc_getDefault_67) STUB("hXAnLgDHCoI", sceAgcWaitRegMemPatchMask) +STUB( + "hXBe+Ty1lOQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEED1Ev) +STUB("hXCDbIiDY20", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V520ContainerRatingCount6toJsonERNS_4Json5ValueEb) +STUB("hXCJIJZZ5MY", + _ZN15AbstractStorage14YoutubeContent6RenameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("hXCr94yw154", _ZN7WebCore7Element19setBooleanAttributeERKNS_13QualifiedNameEb) +STUB("hXDH86Z4EHA", WKContextConfigurationSetMediaKeysStorageDirectory) +STUB("hXDjBDX38jk", _ZNK6icu_6713UnicodeString6lengthEv) +STUB("hXGCNM+slic", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS16FriendsVariablesEE5resetEv) +STUB( + "hXJka1cOrxY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE10setContextEPNS2_10LibContextE) +STUB("hXXC4BDL1gY", curl_mime_addpart) +STUB("hXeWPOdu+-4", mono_aot_Sce_Vsh_Np_IdMapperjit_code_start) +STUB("hXfKdbbHgRQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEEC2EPS5_PNS2_10LibContextE) +STUB( + "hXfbIQKz2mA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEeqERKS9_) +STUB("hXkNZdCO+qU", _ZN3sce3Xml3Dom8DocumentC1ERKS2_) +STUB( + "hXp5W9IyyCc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEC1Ev) +STUB( + "hXpbG6ohjf0", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB("hXsRW1De54I", utrace_entry) +STUB("hXsvfky362s", _ZNSt13basic_filebufIwSt11char_traitsIwEE9underflowEv) +STUB("hXtby+xy4lA", _ZN3WTF6String13fromCodePointEi) +STUB( + "hXtk-zbNCiE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB("hXu4ow0ml4M", WKPopupMenuItemGetTypeID) +STUB( + "hXxH1qjZ9gI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEdeEv) +STUB("hXxIjSJmsLs", _ZN12video_parser18cMp4FFLHndlManager17FF4ErrorToVPErrorE11ff4_retcode) +STUB("hXxP1rF7yOE", ucnv_io_stripEBCDICForCompare) +STUB("hXyBi5L7vb4", WKPreferencesSetNotificationsEnabled) +STUB( + "hY+PffD8oPU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEixEm) +STUB("hY0vHypnMdg", mono_load_remote_field_new) +STUB("hY2tr-X7ytM", _ZN3WTF18ParallelHelperPoolC2EONS_7CStringE) +STUB( + "hY4TJRjg5OQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEptEv) +STUB( + "hY58IJO80d4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("hY5mlmk0DY4", jpeg_default_colorspace) +STUB("hYAhYYYeVZA", WKBundleFrameGetScrollOffset) STUB("hYFXG8FWThI", sceVrServiceDialogInitialize) +STUB("hYG4WSk82-g", _ZN3sce7Toolkit2NP34DetailedProductInfoListInputParamsC1Ev) +STUB( + "hYJs+FXXmno", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemProperties12setsessionIdEPKc) +STUB( + "hYNw8n6jMjc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEC1EPNS2_10LibContextE) STUB("hYPJFWzFPjA", sceNpTusWaitAsync) +STUB( + "hYQ0hePbr5I", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEplEm) +STUB("hYQzNpYaClY", _ZNK3sce2np8JsonNull5CloneEP16SceNpAllocatorEx) +STUB( + "hYS-N9XEdTI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEeqERKS7_) +STUB("hYU2Riiaj08", _ZNK7WebCore9JSDOMRect7wrappedEv) +STUB( + "hYVDZ7ZAzLE", + _ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody11setLocationERKNS1_6Common12IntrusivePtrINS3_8LocationEEE) +STUB("hYdX42jEzTg", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEEppEv) +STUB("hYmRpDiOE6Y", _ZN3NTF5Cache16DiskCacheUtility9deleteAllEv) +STUB("hYnXqynsu7M", _ZN7WebCore20ResourceResponseBase18addHTTPHeaderFieldERKN3WTF6StringES4_) +STUB( + "hYoWA8zezio", + _ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionMemberPlayerC1EPNS1_6Common10LibContextE) +STUB("hYpuY0UpXU8", _ZN7WebCore8Document6setDirERKN3WTF10AtomStringE) STUB("hYqnvZqn6XA", sceDseehxConvert) +STUB( + "hYsS9Y6-EWY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEaSERKS9_) +STUB("hYtj26FQXjo", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getSubtitleDisp) +STUB( + "hYzVKmd6yQw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEE5resetEPS6_) +STUB("hZ+GCRR5xVU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEEC1ERS7_) +STUB("hZ0uqhMCeBs", _ZN3sce7Toolkit2NP2V28Matching7Request14SendInvitationD1Ev) +STUB( + "hZ2PlR-yCIA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEmmEv) +STUB("hZ9kXOm-Kes", _ZN7WebCore21JSTextTrackCueGeneric9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "hZC5sjyp1k0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEE7get_refEv) +STUB( + "hZGj1whUmmc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEptEv) STUB("hZIg1EWGsHM", sceUltInitialize) +STUB( + "hZJdCFABHfk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEdeEv) +STUB("hZLPmfkBtAc", _ZN3sce7Toolkit2NP2V26Trophy16TrophyPackTrophyC1ERKS4_) +STUB( + "hZLVpDOZn-E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEE5resetEPS6_) +STUB( + "hZOa7All1mg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("hZRpuLDxEgw", _ZN7WebCore15makeSimpleRangeERKN3WTF3RefINS_5RangeENS0_13DumbPtrTraitsIS2_EEEE) +STUB("hZS58BxCAV8", WKWebsiteDataStoreGetFetchCacheSizeForOrigin) +STUB( + "hZTfKpftpsU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB("hZarPUiZevM", glStencilFunc) STUB("hZfdAMk7bQw", sceValidationGpuRegisterInitContext) +STUB( + "hZjFZijgn6M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEE11get_deleterEv) +STUB( + "hZmo0M4PLQk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE6isBusyEv) +STUB("hZoiFX37j1A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEED2Ev) STUB("hZvzQy2VLKY", sceVideoOutGetHdmiKsvList_) +STUB( + "ha--9DAYPKE", + _ZN7WebCore11DisplayList10DrawGlyphsC1ERKNS_4FontEON3WTF6VectorItLm128ENS5_15CrashOnOverflowELm16ENS5_10FastMallocEEEONS6_INS_9FloatSizeELm128ES7_Lm16ES8_EERKNS_10FloatPointERKSB_NS_17FontSmoothingModeE) +STUB( + "ha3O+yUH7K8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEE11release_refEv) +STUB("ha45gMAxPSM", _ZN3JSC17StructureRareData6s_infoE) +STUB("ha4uo6Dx0z0", _ZN2sh7CompileEPvPKPKcmm) +STUB( + "haAiTqZeL-s", + _ZN3sce2Np9CppWebApi14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyC1EPNS1_6Common10LibContextE) +STUB("haDbtVOmaao", _ZN3sce2np9LocalFile6RemoveEPKc) +STUB("haGmz-LT5P0", _ZN3sce7Toolkit2NP2V27Session7SessionD2Ev) +STUB( + "haJMLw45UPU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEppEi) STUB("haMpc7TFx0A", sceRudpPollControl) +STUB( + "haQnGktNR4M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "haVLqvDvxjg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEEC1EPS6_PNS2_10LibContextE) STUB("haVZE9FgKqE", sceNpProfileDialogUpdateStatus) +STUB( + "haYoXv7dWw4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEE7get_refEv) +STUB( + "haYv35X+WEM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEixEm) +STUB("hafX2exMIg8", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V114ResultsVersionEEmmEi) +STUB( + "hah7Owc9Wh4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEE7add_refEv) +STUB("haq75G5K5LY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEC2Ev) +STUB("har5YNdSVho", ubidi_setPara_67) +STUB("hau18mqZWEc", ucase_getType_67) STUB("hawKak+Auw4", sceCameraGetRegistryInfo) STUB("hay1CfTmLyA", sceSaveDataDialogProgressBarSetValue) +STUB( + "hayVmTdMOEE", + _ZNK7WebCore6Chrome12createWindowERNS_5FrameERKNS_16FrameLoadRequestERKNS_14WindowFeaturesERKNS_16NavigationActionE) +STUB( + "hazq95ykDGQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEE7add_refEv) +STUB("hb+0MXp9Cgc", _ZN9Inspector20InspectorTargetAgent21disconnectFromTargetsEv) +STUB( + "hb+H9g8Rfb8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEEaSERSA_) STUB("hb-v3fgkXTo", sbuf) +STUB("hb289atcuLE", + _ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse23setIsOfficiallyVerifiedERKb) +STUB( + "hb39d9SG7yo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("hb77EGA39U4", _ULx86_64_get_proc_name) +STUB("hbD28nqQKoc", _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead13getMaxPlayersEv) +STUB( + "hbKzNgipH70", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) STUB("hbNcE4fnBDs", sceNpSessionSignalingGetConnectionFromNetAddress2) +STUB("hbT3Z0Hd3rg", _ZNK7WebCore7Element24computeInheritedLanguageEv) +STUB("hbTTJkE-emA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEEC2EPS5_PFvS7_EPNS2_10LibContextE) +STUB("hbU5HOTy1HM", _ZTISt7codecvtIwc9_MbstatetE) +STUB( + "hbXWLa-z-Fs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEneERKS9_) +STUB("hbY3mFi8XY0", _Tls_setup__Costate) STUB("hbe+DdooIi4", sceNpServerErrorJsonParseMultiInit) +STUB( + "hbfeBUexLew", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "hbg9-bYvgbY", + _ZN9Inspector24RuntimeBackendDispatcher24getDisplayablePropertiesElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("hbiV9vHqTgo", __lesf2) +STUB("hbkrCD9hIOE", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia6VideosEE12deepCopyFromERS7_) +STUB( + "hbt40CPhmEY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEE5resetEPS9_) +STUB( + "hbxVtJ0+Vbc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEC2EPKS8_) +STUB( + "hc+m2tz17Wk", + _ZN7WebCore14DocumentLoader58stopLoadingAfterXFrameOptionsOrContentSecurityPolicyDeniedEmRKNS_16ResourceResponseE) +STUB( + "hc-dvoHgY54", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE8capacityEv) STUB("hc0GFWwSrR4", sceKernelIccSetCPMode) +STUB("hc0ksLGHWXI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEED1Ev) +STUB("hc1XYdtAhCE", mono_threads_init) STUB("hc3Z8MsiIz4", _sceLibcStdThreadStackSizeInit) +STUB( + "hc4DUTf7PLU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEptEv) +STUB("hc4u0z2Qs6o", _ZN3JSC30isTerminatedExecutionExceptionERNS_2VMEPNS_9ExceptionE) +STUB("hc6rJqmTZ0o", _ZN7WebCore11FrameLoader9setOpenerEPNS_5FrameE) +STUB( + "hcAhTwN4o2k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB("hcAyWL6bQa8", mono_aot_Sce_Vsh_MorpheusUpdWrapperunwind_info) STUB("hcB56mjq-i4", sceVoiceChatRequestUpdateGameSessionVoiceChatChannelName) +STUB( + "hcFZUFb80BM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEC1Ev) +STUB("hcHoeAZr9YA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEEC2ERKS7_) +STUB("hcI-VlFn00Y", _ZN3sce3Xml3Dom8NodeListD1Ev) STUB("hcIxS8pmXF4", sceAgcAcbAtomicGdsGetSize) +STUB( + "hcL5GitcyDg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE5emptyEv) +STUB("hcM1XxQHIgk", mono_method_desc_free) STUB("hcNLW1OyfTc", sceCesUtf32ToEucCn) +STUB( + "hcTmSm0GA9E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEC1EPS8_) +STUB( + "hcdqYe34IxA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEppEv) +STUB("hceMMReSAEk", delegate_virtual_invoke_30) +STUB( + "hcgMStahntg", + _ZN3sce2Np9CppWebApi7Matches2V113ChildActivity15setAvailabilityERKNS3_25ChildActivityAvailabilityE) +STUB( + "hcn7reGoPd0", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsersD1Ev) +STUB("hcnesFhpr7s", cpp_demangle_read_subst_stdtmpl) +STUB( + "hcr91gUh9Mw", + _ZN3JSC32throwDOMAttributeGetterTypeErrorEPNS_14JSGlobalObjectERNS_10ThrowScopeEPKNS_9ClassInfoENS_12PropertyNameE) +STUB("hcuQgD53UxM", printf) STUB("hd+2cp4M7X4", sceRegMgrPrivateStorageInject) +STUB("hd-pm9EjS6g", ubrk_getBinaryRules_67) +STUB( + "hd1MpPAO+Eo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) STUB("hd4Ta6XIFCE", sceCesUtf32StrToMbcsStr) +STUB("hd6sv2E7Mkc", uprv_parseCurrency_67) +STUB( + "hd9SQkTJLSU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE21intrusive_ptr_add_refEPS9_) +STUB("hd9m4Ozb-zU", _ZN9Inspector27AnimationFrontendDispatcher13targetChangedERKN3WTF6StringE) +STUB( + "hdETc-uz4yI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE4sizeEv) +STUB( + "hdFE8uHRNQ4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEC2EPS8_) STUB("hdFsxo3MFu8", sceAudiodecCpuInitDecoder) STUB("hdISXjL-bwY", sceAvSettingNotifyAudioOutMode) +STUB( + "hdKJL30nKj0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEEcvbEv) +STUB( + "hdLhPhpc6Lk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEaSERKS7_) +STUB( + "hdM-MBguFoI", + _ZN7WebCore16FrameLoadRequestC1ERNS_8DocumentERNS_14SecurityOriginEONS_15ResourceRequestERKN3WTF6StringENS_20InitiatedByMainFrameERKNS7_10AtomStringERKNS_17SystemPreviewInfoE) +STUB("hdMwoQC8RM8", _ZN7WebCore9HTMLNames8frameTagE) +STUB( + "hdNdJ4oBKds", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEEaSERS9_) +STUB( + "hdOz+meTEAk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEE11release_refEv) +STUB( + "hdPOEbkpyfk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEixEm) +STUB( + "hdQg3nTqxA8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("hdQk6MHRazY", _ZN3sce2Np9CppWebApi13InGameCatalog2V513ContentRating7setNameEPKc) +STUB("hdR0QN9SiK4", mono_aot_System_Data_Services_Clientjit_code_start) STUB("hdTyRzCXQeQ", sceAvPlayerStreamCount) +STUB("hdUVjiuPqlk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEED1Ev) +STUB("hdUa2rL3n2k", rgctx_fetch_trampoline_rgctx_89) +STUB( + "hdZeK8F-hbw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("hdZwdtQb1HM", _ZN3JSC22FullGCActivityCallbackD1Ev) +STUB("hdaJCex67Tg", curl_easy_option_by_name) +STUB("hdcGjNpcr4w", _LDclass) +STUB("hdh8bDK4-PA", _ZNK3WTF8JSONImpl5Value9asIntegerERm) +STUB("hdkkR+M8CDc", _ZN9Inspector21DOMFrontendDispatchernaEm) +STUB("hdm0YfMa7TQ", _Znam) STUB("hdoMbMFIDdE", sceAppMessagingSetEventFlag) STUB("hdpVEUDFW3s", sceSslInit) +STUB("hdsKBBYSgxs", _ZN3sce7Toolkit2NP2V23TUS7Request7SetDataD2Ev) +STUB( + "hdyPTvEeOGk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEppEi) +STUB( + "hdyvwLmQosI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEptEv) +STUB("he0D4ikNJao", + _ZNK3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResults6toJsonERNS_4Json5ValueEb) +STUB("he6CvWiX3iM", CA_MGMT_returnCertificatePrints) +STUB("heE-L0BwlwM", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead16unsetCustomData2Ev) +STUB("heE1q+RNUiQ", _ItL_pS3) +STUB("heHjQDs5QJk", g_unichar_type) +STUB( + "heL-qVeBGOA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEE5resetEPS9_) +STUB("heO6fLodsG8", _ZN7WebCore16HTMLMediaElement16allMediaElementsEv) +STUB("hePE7F2R70k", fuse_session_reset) +STUB("heWj3DTMl34", _ZN7WebCore9HTMLNames14formmethodAttrE) +STUB("heYOwyaHKLI", _ZN3sce7Toolkit2NP2V29Messaging7Request22ConsumeGameDataMessageD2Ev) +STUB("heYSq-tyQKE", mono_aot_Sce_PlayStation_Orbis_Speechplt_end) +STUB( + "hecKGbURn-w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEmmEi) +STUB("hedUKkqxVb4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEC1Ev) STUB("heiOpxS1Zio", sceKernelGetVrCaptureSize) +STUB( + "heijy6QrlQ4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeaders6createEPNS1_6Common10LibContextERNS6_12IntrusivePtrIS5_EEl) STUB("hemgFpeEQFA", sceAc3EncWaitEncode) +STUB("henpJH+XpjE", _ULx86_64_get_proc_info_by_ip) +STUB("hep5VUibI2A", _ZNK9Inspector22RemoteInspectionTarget4nameEv) +STUB( + "heqXvpK9hqY", + _ZN3sce2Np9CppWebApi14SessionManager2V117FromMemberFactory6createEPNS1_6Common10LibContextERKmRK13SceNpOnlineIdPKcPNS5_12IntrusivePtrINS3_10FromMemberEEE) +STUB("heuaiZIWVUI", _ZN7WebCore15FontDescription18setSpecifiedLocaleERKN3WTF10AtomStringE) +STUB("hew0fReI2H0", mblen) +STUB("hewd75Uffqg", _malloc_corruption_error_count) +STUB( + "hexb83pCkl8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE3endEv) +STUB( + "hey9XNydYUI", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "heyejEVIzaA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("heyzb1EgSYg", WKFrameGetResourceData) +STUB( + "hez6RPkEBTI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEC1Ev) +STUB("hf-aGjkHYZA", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE6resizeEj) +STUB("hf2Ljaf19Fs", _ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE) +STUB( + "hf6+s5SQUXI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEC2Ev) +STUB("hf79TEH1is0", delegate_virtual_invoke_imt_0_p) +STUB("hf7qvdCA8Pc", _ZN3sce7Toolkit2NP2V212NetworkUtils7Request22GetDetailedNetworkInfoC2Ev) +STUB("hf8YZKYAYNo", _ZN3sce7Toolkit2NP2V26Trophy7Request18GetTrophyPackGroupD1Ev) +STUB("hfG05rRUDak", _ZN7WebCore24decodeURLEscapeSequencesEN3WTF10StringViewERKNS_12TextEncodingE) +STUB("hfJ1gGLgvq8", _ZN3sce2np7RingBufD0Ev) +STUB("hfKjHJWHnF0", _ZN7WebCore16HTMLTableElement4rowsEv) +STUB("hfQQVK3sYeg", X509_STORE_add_lookup) +STUB( + "hfT+T52C43Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEC2ERKS8_) +STUB("hfW8MZYAdUs", _ZN3sce7Toolkit2NP2V23TUS15TusDataStatusesC2Ev) STUB("hfYwLMweFS4", sceDebugGetCrashInfoDetailForCoredump) +STUB("hfbKTyZXa5A", ubrk_next_59) +STUB("hfcgWIfgkEc", GCC_except_table222) +STUB("hfeXnNJn1cE", _ZN7WebCore8SVGNames9filterTagE) +STUB("hfifwAJDCvU", _ZN15AbstractStorage14YoutubeStorageD2Ev) +STUB( + "hfjd6aAdUpM", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi35ParameterToSetGameSessionPropertiesC1ERS5_) STUB("hfkLVdXmfnU", sceNetCtlApGetConnectInfo) +STUB("hfoBPdMDBhg", _ZNK3JSC10JSFunction10sourceCodeEv) +STUB( + "hfqteKwqVfk", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V132NatConnectivityPropertiesFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_19NatConnectivityFromEEESA_SA_PNS8_INS3_25NatConnectivityPropertiesEEE) STUB("hftC5A1C8OQ", sceCameraAudioGetData2) STUB("hg9T73LlRiU", sceVoiceVADAdjustment) +STUB("hgDgIQcrOEQ", _ZN3sce7Toolkit2NP23ChallengeConsumeRequestC1Ev) STUB("hgEbCUX22UM", sceVshAvcapTerm) +STUB( + "hgEjLX9CstY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEmmEi) +STUB( + "hgGKe3rAOck", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEEiRNS2_10LibContextEPT_m) +STUB("hgIcaty5I74", JVM_GetMethodIxLocalsCount) +STUB( + "hgMpbQtBWmU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEEaSERKSA_) STUB("hgOVdozquU0", sceUserServiceGetShareStatus3) +STUB("hgR8jBjP9Vc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V120PlayerJoinableStatusEEppEv) +STUB( + "hgV5jhfw5Hs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEC1EPS8_) +STUB("hgVN98tTLP8", _ZN7WebCore9HTMLNames7rubyTagE) +STUB("hgbEy0LBEgc", _ZN7WebCore11DisplayList20FillRectWithGradientC1ERKNS_9FloatRectERNS_8GradientE) +STUB("hgbtIqjf5jo", _ZN9Inspector28InspectorScriptProfilerAgent18willEvaluateScriptEv) +STUB( + "hge9Ll5ao2Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE3endEv) STUB("hggKhPySVgI", sceGameLiveStreamingPostSocialMessage) +STUB( + "hghqmlFwfPE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("hgiOqOfVpRk", + _ZN7WebCore22EmptyFrameLoaderClient21fileDoesNotExistErrorERKNS_16ResourceResponseE) +STUB( + "hgjCWHPuHAQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEE11release_refEv) +STUB("hgkuZ0vjJ7c", mono_error_get_message) +STUB("hgoJZrkQJMI", _ZN7WebCore13ContainerNode22getElementsByClassNameERKN3WTF12AtomicStringE) +STUB("hgqOCt3pShE", + _ZN3sce2Np9CppWebApi7Matches2V133RequestTemporaryCompetitiveResultC1EPNS1_6Common10LibContextE) +STUB( + "hgyiFlIb2L4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEED1Ev) +STUB("hh-pEXPhMck", Java_java_net_PlainDatagramSocketImpl_init) +STUB( + "hh1ll+aJYFE", + _ZN3sce2Np9CppWebApi14SessionManager2V132RequestPlayerSessionMemberPlayerC2EPNS1_6Common10LibContextE) +STUB( + "hh44dU1IqK0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEC2EPS8_) +STUB( + "hh5TBWDe4-0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEixEm) +STUB("hhF-BMjB2+0", _ZN7WebCore13JSDOMRectListaSERKS0_) +STUB("hhHqiyjZV08", _ZN3JSC18GCActivityCallback11didAllocateERNS_4HeapEm) +STUB( + "hhI0L5nIXck", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "hhJYnIvuz9A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEEC2ERKSA_) STUB("hhPQ7S35zT4", sceFontGraphicsProcessSetSyncPolicy) +STUB( + "hhSO6R4La8g", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountId10initializeEPNS1_6Common10LibContextERK13SceNpOnlineId) STUB("hhTsdv99azU", sceNetCtlGetNetEvConfigInfoIpcInt) +STUB( + "hhV5JvPU594", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEptEv) +STUB("hhWh0GdO-Io", mono_gchandle_get_target) +STUB( + "hhZsZP1u1KI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB( + "hhc04JLMJTE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEptEv) +STUB( + "hhg-xQm5Hu8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEE7add_refEv) +STUB("hhlWfHpfPx0", goby_GetLinkPeriod) +STUB( + "hhtIPV1vGHc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEC1Ev) +STUB("hhuvB3JXuMM", cairo_new_path) STUB("hhy8+oecGac", sceNpTusCreateTitleCtx) STUB("hhz9pITnC8k", sceAudioPropagationSourceRender) +STUB("hhzN6xfPIRs", recvData) +STUB("hi0BiPpGPV8", uhash_setKeyComparator) STUB("hi0veU3L2pU", sceSslRecv) STUB("hi75DVfII3Y", sceCesUcs2ToMbc) +STUB( + "hi9ih4kbV+c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEppEi) +STUB("hiCNPc7sOAo", _ZN3sce7Toolkit2NP19CheckoutInputParamsC1Ev) +STUB("hiO1N3-vggQ", + _ZN9Inspector22InspectorDebuggerAgent20setShouldBlackboxURLERN3WTF6StringERKS2_bPKbS7_) +STUB( + "hiTjkPeY5f8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE6resizeEj) +STUB( + "hiVGNHKitUE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEC1EPS8_) +STUB( + "hicbr51m4P4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEneERKS9_) +STUB("hijfwtuVJT4", jpeg_input_complete) +STUB( + "hiuJhV00jCA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("hiw1rWeleTA", _ZN3JSC20JSStringHeapCellTypeD1Ev) +STUB( + "hiwv695r+KU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEppEi) +STUB("hj0o6xgmoZU", fuse_req_getgroups) +STUB( + "hj0s0KAuCdY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEneERKS9_) +STUB("hj1KIIN5D54", hb_blob_create) +STUB("hj3V2BvsyNM", _ZNK7WebCore8Document8referrerEv) +STUB("hj40eDtISJY", _ZN3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsersD1Ev) +STUB("hjDFaEWCV20", _ZN3sce4Json6Parser12parseQuadHexERNS0_11InputStreamE) +STUB("hjDoZ6qbkmQ", _LXp_setn) STUB("hjErHT1CwJM", sceKernelNotifySystemSuspendResumeProgress) +STUB( + "hjFk1BckE3A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("hjHWPtJ4p4E", _ZN9Inspector14InspectorAgentnwEm) +STUB( + "hjImAqbOR50", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEEC1ERSA_) +STUB("hjJwVskIVxg", _ZN3JSC11ArrayBuffer6createERS0_) +STUB( + "hjOkN0Mhdb0", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "hjQ+Z+CbidM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEEC2ERKSA_) +STUB("hjULUs7uHiA", _ZNK7WebCore11MediaPlayer5mutedEv) +STUB("hjVbjuBme4Y", mono_aot_Sce_Vsh_UserServiceWrapperunwind_info) +STUB("hjahA2PhW78", _ZN7WebCore8SVGNames10ascentAttrE) +STUB("hjd40+AkUAE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEEdeEv) +STUB("hjhEsh7g05Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEC1ERS7_) +STUB( + "hjjAzld4lLg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "hjjGOI3G3Ao", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEE11release_refEv) +STUB( + "hjklpCueESo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEdeEv) +STUB("hjkso14yMh4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEEeqERKS7_) +STUB( + "hjl5qYLFnek", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEE7get_refEv) STUB("hjlUn9UCgXg", sceUserServiceSetImeLastUnit) +STUB( + "hjmv5i8fIkA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEE5resetEPS9_) +STUB( + "hjmztSG0tY4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEC2EPS8_) STUB("hjoVB02yu0U", sceVideodec2CreateDecoderBid) +STUB("hjqbmNiebiQ", _ZN7WebCore8SVGNames10feFuncRTagE) +STUB("hjsm6ZT-Qq8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEptEv) +STUB("hjt6ZGKuEfo", WKBundleNodeHandleGetHTMLInputElementAutoFillButtonBounds) +STUB( + "hjxVKDDCrZc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "hjzv6lEAIuI", + _ZN3sce2Np9CppWebApi12Leaderboards2V19BoardsApi18getBoardDefinitionEiRKNS4_29ParameterToGetBoardDefinitionERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_30GetBoardDefinitionResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("hk+NcQTQlqI", SSL_ASYNC_connect) +STUB("hk2Vi4aJODY", _ZN9Inspector22PageFrontendDispatcher20domContentEventFiredEd) +STUB( + "hk5VokCUF7Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEE3getEv) +STUB("hkBGH3N-oi8", _ZN7WebCore11DisplayList11DrawPatternD2Ev) +STUB("hkDKEOQqTr8", _ZN7WebCore17LibWebRTCProvider15webRTCAvailableEv) +STUB( + "hkHjRfW1XlE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "hkNF6S-CoXg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE10setContextEPNS2_10LibContextE) +STUB("hkP+sGvpPns", _ZN7WebCore8XMLNames4initEv) +STUB("hkPmgORSI5Y", + _ZNK3sce2Np9CppWebApi14SessionManager2V130RequestPlayerSessionInvitation5getToEv) +STUB("hkRNE6KCRME", + _ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer8fromJsonERKNS_4Json5ValueE) +STUB( + "hkSpRcbRljY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEC2Ev) +STUB("hkStGkCsKck", + _ZN7WebCore7JSRange15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB( + "hkaXGo9JCVs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) STUB("hkcfqAl+82w", sceHttpGetRegisteredCtxIds) STUB("hkeX9iuCwlI", sceNpIntIsValidOnlineId) +STUB("hkkKVRY8+QA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEE3getEv) +STUB("hks1Z-mbivM", _ZN3sce7Toolkit2NP2V28Commerce7Request22GetServiceEntitlementsC1Ev) STUB("hksbskNToEA", sceNpWebApi2GetHttpResponseHeaderValue) +STUB( + "hkunRIJGARI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEE7get_refEv) +STUB( + "hl3Bo4-gnDc", + _ZN7WebCore17JSDOMRectReadOnlyC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_15DOMRectReadOnlyENS6_13DumbPtrTraitsIS8_EEEE) +STUB("hl59Lb8b1rc", + _ZN3sce2Np9CppWebApi14SessionManager2V131ResponsePlayerSessionInvitation15setInvitationIdEPKc) +STUB("hl5Wr+hIGqE", _ZN3sce2Np9CppWebApi10Activities2V114UserActivities5Error11unsetReasonEv) +STUB("hl5a5rHe+A0", _ZN3sce7Toolkit2NP2V27Ranking10UsersRanksC1ERKS4_) +STUB("hl9hJMTjmQM", _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBodyD1Ev) +STUB( + "hlBdThosC0U", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEplEm) +STUB( + "hlFCrt0OWPA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE3endEv) +STUB("hlHGn9MpzcY", _ZN3sce7Toolkit2NP2V24Auth8AuthCodeC2Ev) +STUB( + "hlJEoLJt+A0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE5clearEv) +STUB( + "hlSb0AUKVMk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "hlVC5PjHx+k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEE5resetEPS9_) +STUB( + "hlYZ1uHKd48", + _ZThn16_N9Inspector21InspectorRuntimeAgent10getPreviewERN3WTF6StringERKS2_RNS1_6RefPtrINS_8Protocol7Runtime13ObjectPreviewENS1_13DumbPtrTraitsIS9_EEEE) +STUB( + "hld28Tyc+qo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEeqERKS9_) +STUB("hlh15JjNtWg", cairo_push_group) +STUB( + "hlhEs97OnXA", + _ZN3WTF30overrideUserPreferredLanguagesERKNS_6VectorINS_6StringELm0ENS_15CrashOnOverflowELm16EEE) STUB("hljMAxTLNF0", sceGnmSpmSetMuxRam) +STUB( + "hllzTaq4Lh8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_) STUB("hlrJvAkqZxM", sceApplicationGetCompiledSdkVersionByAppId) +STUB( + "hm0evszBMic", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEE11get_deleterEv) +STUB("hm0y9syP1t4", _ZN3sce2Np9CppWebApi14ConnectAccount2V28PSNErrorC2EPNS1_6Common10LibContextE) +STUB("hm52T5bPfJo", _ZN3sce7Toolkit2NP2V28Commerce7Request21DisplayCheckoutDialogD1Ev) +STUB( + "hm5Jh5UNnVA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeaders6createEPNS1_6Common10LibContextERNS6_12IntrusivePtrIS5_EEl) +STUB( + "hm9lNc6jE78", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEmmEi) STUB("hmBBh-IJSzk", sceVideoOutSysGetPortStatusInfoByBusSpecifier_) +STUB("hmDrNd7LzWQ", mono_aot_JSC_Netjit_code_end) +STUB( + "hmFojJX7NHY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEC1ERS7_) +STUB( + "hmG3PZlR5OM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEEdeEv) +STUB("hmHH6DsLWgA", _ZTSN6Dinkum7threads21thread_resource_errorE) +STUB("hmLDjpBojik", _ZN7WebCore5Range14deleteContentsEv) +STUB("hmLXa6ptcdU", _ZN7WebCore17PageConsoleClientnwEm10NotNullTagPv) +STUB("hmLqFAw8q5Q", _ZNK7WebCore21FormAssociatedElement4formEv) +STUB( + "hmOWAbcTIAg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "hmPwYz8Rz9A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("hmTgra+utac", uprv_decContextSetStatusQuiet_67) +STUB("hmUvC0dlEao", jinit_master_decompress) +STUB("hmVJYbCOt60", _ZNK3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer16getJoinTimestampEv) STUB("hmVLIi3pQDE", sceNpManagerIntLoginSetAccountInfo) +STUB("hmZCJGU0rCE", _ZN3JSC13JSONStringifyEPNS_14JSGlobalObjectENS_7JSValueES2_) +STUB("hmbWwc570tg", _ZN7WebCore8JSPath2D15subspaceForImplERN3JSC2VME) +STUB("hmbghYjwnSU", mono_get_delegate_invoke) +STUB("hmdvbd7xhU4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEE7add_refEv) +STUB( + "hmgt-BLGuK0", + _ZN7WebCore16FrameLoadRequestC1ERNS_5FrameERKNS_15ResourceRequestENS_28ShouldOpenExternalURLsPolicyERKNS_14SubstituteDataE) +STUB( + "hmhP0ak++AU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "hmjYV1ZXFFc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEptEv) +STUB("hmmMU0TNjEk", Java_sun_awt_GnmUtils_bdjbgUnlock) +STUB("hmo-oiMEFiw", _ZN3JSC7Symbols15nextPrivateNameE) +STUB("hmpkWEqMGME", _ZN7WebCore11RoundedRectC2ERKNS_10LayoutRectERKNS0_5RadiiE) +STUB("hmsP4zfsG7o", _ZN3sce7Toolkit2NP2V212ActivityFeed5StoryD1Ev) +STUB("hmt9YoudTxM", AnnotateHappensBefore) +STUB("hmy0JczT6YA", _ZN7WebCore16convertToIntegerIjEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB( + "hn2dpZTxCuw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEED2Ev) +STUB("hn2gc6-stYM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEE11get_deleterEv) +STUB("hn6OmDjk0ao", _ZN7WebCore4Page19addLayoutMilestonesEN3WTF9OptionSetINS_15LayoutMilestoneEEE) +STUB( + "hn8sj51WEuk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("hnGhTkIDFHg", _ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED1Ev) +STUB("hnJCsglEJxU", mono_string_from_bstr) +STUB( + "hnLqJREeVJ4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE5clearEv) STUB("hnOWouVmZMY", sceNpManagerIntGetSigninTelemetryInfo) +STUB( + "hnT-IBhDleQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "hnW3W7XzNb0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("hnWHytAuiWA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEppEi) +STUB( + "hnWvS2l44G0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEC2EPS8_) +STUB("hnX+ObtthJk", _ZN3WTF9monthNameE) +STUB( + "hnZIs3wKqwg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEE7add_refEv) +STUB( + "hna7VhyruZY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEC2EPS8_) +STUB("hnboum+-3vs", mono_aot_System_ComponentModel_DataAnnotationsjit_code_start) +STUB( + "hndnFFpQ4sg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("hneJIY0l0rI", _ZN7WebCore12ChromeClientD0Ev) +STUB( + "hni+mHnhh08", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser20unsetjoinStateFilterEv) +STUB( + "hnidvz8WHT0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE5clearEv) +STUB("hnnGAZGcYIU", _ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession14getCustomData1Ev) +STUB( + "hno7zy2nPzk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "hnoW6BkiFso", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "hnrPYn6YBzs", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V110MmrFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_3MmrEEE) +STUB("hnsadt+539M", _ZN7WebCore13QualifiedName4initEv) +STUB( + "hnuNEFwftuc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEC2ERKS8_) STUB("hnvi3LgVeDM", sceShellCoreUtilExitApp) +STUB("ho+7cKMXCuA", _ZN7bmalloc11Deallocator18deallocateSlowCaseEPv) +STUB("hoAwJetLmro", _ZN9Inspector34ApplicationCacheFrontendDispatcherdlEPv) +STUB("hoAxMs1E7rE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEaSERKS7_) +STUB( + "hoBuxSPeYyQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("hoDzCbvcT5w", _ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEE10setContextEPNS2_10LibContextE) +STUB( + "hoHBab5-Ess", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE7popBackEv) STUB("hoHjsHnwfHM", sceValidationGpuOnValidate) +STUB("hoINmSMlYjI", _ZN3sce4Json6Object8iteratorD1Ev) STUB("hoOAofhhRvE", sceNetGetsockname) +STUB("hoTMzMqGIYk", _ZN7WebCore4Page24resumeScriptedAnimationsEv) +STUB("hoWSsRT0ktA", _ZN4IPMI6Server6createEPPS0_PKNS0_6ConfigEPvS6_) +STUB("hoalsPYj2CE", _ZN3sce7Toolkit2NP21InvitationListRequestC2Ev) +STUB("hocRZ3D+wJM", _ZN3WTF11xmlAtomDataE) +STUB( + "hoe1JJcbvz0", + _ZN3sce2Np9CppWebApi14SessionManager2V137RequestGameSessionMemberPlayerFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_24RequestGameSessionPlayerEEEEEPNS9_INS3_30RequestGameSessionMemberPlayerEEE) +STUB("hofyy8Hjg94", _ZN3sce7Toolkit2NP21RegisterTrophyRequestC2Ev) +STUB( + "hofzQ9wIzxM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEEcvbEv) +STUB("hojNtOudWLw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEC2ERS7_) +STUB("hon3yzBLbh8", _ZN7WebCore10TreeWalker12previousNodeEv) +STUB( + "hovIaapaSQo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEixEm) +STUB("hoxQ3mHGN-Q", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_19ProductInfoDetailedEEC2Ev) STUB("hp0kVgu5Fxw", sceNpLwMutexTryLock) +STUB("hp37hG7VMKs", _ZN3sce2Np9CppWebApi12Leaderboards2V15Entry9unsetPcIdEv) STUB("hpG+mR4EbpE", sceVoiceChatRequestJoinGameSessionVoiceChatChannel) +STUB( + "hpH8V+H1rwI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "hpLyUFvBubo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEE11get_deleterEv) +STUB("hpQlqUYshFI", curl_maprintf) +STUB( + "hpUJPxtBxfo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE8pushBackERKS8_) +STUB( + "hpWi0S4JsQs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEC2EPS7_PNS2_10LibContextE) +STUB( + "hpXcTsU+Hvw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEEaSERSA_) +STUB("hpXjxaPUAZg", mono_aot_Sce_Vsh_Np_AppInfojit_code_start) +STUB("hpXk9zZgRLw", utext_extract) +STUB("hpYMIQftxm0", _ZN12video_parser5vpcom6StringC2Ev) +STUB("hpff6JJ9OzY", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStatsD2Ev) +STUB("hpfujWhzdXM", u_printf_parse_67) +STUB("hpgxilWFojM", _ZN12video_parser13cVideoPathMsv11sExtentListE) +STUB("hpiRww5WQCM", mono_aot_Sce_Vsh_Webbrowser_XutilWrapperunwind_info) +STUB("hpk1P42yZx4", _ZN3sce2Np9CppWebApi6Common8IteratorINS2_6StringEEmmEv) +STUB( + "hpkRlSttxhw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE4initEv) +STUB( + "hplLXZafnK8", + _ZN3sce2Np9CppWebApi7Matches2V132ResponseCompetitiveResultFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_25ResponseCompetitiveResultEEE) +STUB("hpoDTzy9Yy0", sigpending) +STUB("hpredGqPdG0", _ZN3WTF14numberToStringEfRSt5arrayIcLm123EE) +STUB( + "hptA9AgJ8q0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEEC1ERS8_) STUB("hq5LffQjz-s", sceFontStringRefersRenderCharacters) +STUB("hq88fwPIxEc", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_28AdditionalSessionInformationEE17getAdditionalInfoEv) +STUB("hqCDILz2VQ4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEED2Ev) +STUB( + "hqFLv8i7GwE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) STUB("hqP0nzTTxdo", sceFiosResolve) +STUB("hqPQx7mRgrk", _ZN3sce7Toolkit2NP2V212EventsClient9EventDataC1Ev) +STUB("hqPavTyQlNg", _ZN3sce2np8JsonFileD0Ev) +STUB("hqSmUgVgGXQ", _ZN7WebCore10JSDocument13visitChildrenEPN3JSC6JSCellERNS1_11SlotVisitorE) +STUB( + "hqUWwm+5sQ0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("hqVKCQr0vU8", _ZNSt14numeric_limitsIdE12max_digits10E) STUB("hqY8PDT4oqU", sceWorkspaceApplyUpdateForDirectory) +STUB("hqco03inQbs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEptEv) +STUB( + "hqeACk2dkzE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEED1Ev) +STUB("hqeXyQq2i2c", ucal_setDate_67) +STUB("hqi8yMOCmG0", _ZNSt8_LocinfoC1EPKc) +STUB( + "hqpy15ZPwZo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEE11get_deleterEv) +STUB( + "hqvhdICEeSk", + _ZN7WebCore17CredentialStorage3setERKN3WTF6StringERKNS_10CredentialERKNS_15ProtectionSpaceERKNS1_3URLE) +STUB("hqvz9S66ReQ", icudt67_dat) +STUB( + "hqwxcK6Y58M", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE4sizeEv) +STUB( + "hqxkJz74oVc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE10setContextEPNS2_10LibContextE) +STUB("hqynGeY-OR8", _ZN3sce7Toolkit2NP2V27Ranking7Request15GetFriendsRanksD1Ev) STUB("hqzi1IHdQQQ", sceNpBandwidthTestInitStartDownload) +STUB("hqzlA6rAt3s", _ZN12video_parser5vpcom6_CloseEPNS_8_vp_fileE) +STUB("hr0+RJNEPNU", WKPreferencesSetCSSCustomFilterEnabled) +STUB( + "hr2NZOkpLV4", + _ZN3JSC8Bindings13RuntimeObject3putEPNS_6JSCellEPNS_14JSGlobalObjectENS_12PropertyNameENS_7JSValueERNS_15PutPropertySlotE) +STUB("hr4I-u22P2w", _ZNK7WebCore19ResourceRequestBase18hasHTTPHeaderFieldENS_14HTTPHeaderNameE) +STUB("hr8P3owweqU", _ZN3WTF10TextStreamlsEc) STUB("hr8l7-YieYI", sceNpHeapReallocImpl) STUB("hrEIwWDKm-w", sceKernelWriteModifyMtypeProtectCommand) +STUB("hrIBZ9wlueY", _ZN15AbstractStorage17DailymotionFolderD2Ev) +STUB( + "hrLY6A6QQ-U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEC1EPS8_) +STUB( + "hrLyH0AbEsk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("hrN3riK4yf4", _ZN7WebCore9HTMLNames10onblurAttrE) +STUB("hrPM+i7AHXo", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament5EventEE19setCustomReturnCodeEi) +STUB("hrTPOtnC7Mw", _ZNK3WTF7Seconds4dumpERNS_11PrintStreamE) +STUB("hrTU5Qczmzc", mono_class_is_delegate) +STUB("hrVlppp-bP8", _ZN3sce2Np9CppWebApi7Matches2V122RequestMatchStatistics17getTeamStatisticsEv) +STUB( + "hrb3ff8KG-g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("hrctaZQop40", _ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody8setScoreERKl) +STUB("hrevq-dtNW0", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13integer3IsSetEv) +STUB("hroa7I6Y6ic", _ZN3sce7Toolkit2NP2V212ActivityFeed12SharedVideosC2Ev) +STUB( + "hrtUbLy1KRQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEixEm) +STUB("hrv1BgM68kU", _Pmsw) +STUB( + "hrzHgwpa2rQ", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions18setjoinStateFilterEPKc) STUB("hs-OARoWdxo", sceUlpMgrCloseAllConnectedClients) +STUB("hsBqp0qCNM4", g_logv) +STUB( + "hsCpTYAeKoc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEE11get_deleterEv) +STUB("hsKNTohnigc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEE5resetEPS6_) STUB("hsKd5c21sQc", sceSaveDataRegisterEventCallback) +STUB("hsNxIw6p60g", _ZN7WebCore27PlatformMediaSessionManager22processSystemWillSleepEv) +STUB( + "hsO2pxSZ6DY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("hsQBBJvoKfI", + _ZN7WebCore4Page10findStringERKN3WTF6StringENS1_9OptionSetINS_14FindOptionFlagEEEPNS_7DidWrapE) +STUB("hsREfI6X+h4", Java_java_net_Inet6AddressImpl_lookupAllHostAddr) +STUB("hsTOEgJ8fy8", _ZN3JSC14throwTypeErrorEPNS_14JSGlobalObjectERNS_10ThrowScopeERKN3WTF6StringE) STUB("hsVWg5E98vg", scePsmUtilGetOffscreenAssetManagerSize) +STUB( + "hsVj+kIEcic", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE8pushBackERKS8_) +STUB( + "hsWH0Jb46WE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEEC1ERSA_) +STUB( + "hsYw6+kLTYY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEE5resetEPS9_) STUB("hsZPf1lON7E", sceGnmValidateDrawCommandBuffers) +STUB( + "hscMhHsPG1g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEC1ERKS7_) +STUB("hsi9drzHR2k", log2f) +STUB( + "hsicbx6+Psk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEptEv) +STUB("hsn2TaF3poY", __atomic_compare_exchange_n) +STUB("hsnWHtg+tNE", _ZN7WebCore5Range6createERNS_8DocumentE) +STUB("hsr4NjC3kho", WKPreferencesSetShouldPrintBackgrounds) +STUB( + "hsseptnjJF4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("hsttk-IbL1o", _ZTIPKo) +STUB("hsymx4MC5PQ", makeUlpCmdHdr) STUB("ht-QXT3zGxo", sceAudioPropagationSystemGetRays) +STUB("ht48xu5DZTE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEEC2Ev) +STUB("ht8ZW3XjMB4", _ZN3sce2Np9CppWebApi12Leaderboards2V15Error14setReferenceIdEPKc) +STUB( + "htASCdAyFyk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEeqERKS9_) +STUB("htC03ZGwLRE", _ZN7WebCore19serializationForCSSERKNS_5SRGBAIfEE) +STUB( + "htIb5BLjc50", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEC2Ev) +STUB("htLZoQXxjEE", WKPreferencesGetShouldDisplaySubtitles) +STUB("htMj7UMeDAM", tls_init) +STUB( + "htP61Wpr3aQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("htS-NmfjiPE", _ZN23sceMetadataReaderWriter7StorageC1EjPi) +STUB("htUr5QI93SQ", GCC_except_table60) +STUB( + "htWcY2d4eLo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "htXRQYOT9qU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEE3getEv) STUB("htdTOnMxDbQ", sceLibcPafMspaceIsHeapEmpty) +STUB("htfDiQ4Se9U", _ZN7Nicosia5Scene5StateC2ERKS1_) +STUB( + "hthso3YuHD0", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB( + "htmXZk9eXaI", + _ZN7WebCore6Editor14setCompositionERKN3WTF6StringERKNS1_6VectorINS_20CompositionUnderlineELm0ENS1_15CrashOnOverflowELm16EEEjj) STUB("htn36gPnBk4", sceAgcAcbWaitRegMem) +STUB( + "htpocc70yN4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEC2EPS8_) STUB("htyBOoWeS58", sceHttpsSetSslCallback) +STUB( + "hu6Ep5P34hQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEC2Ev) +STUB( + "huAFVySj7xk", + _ZNK7WebCore9CookieJar29cookieRequestHeaderFieldValueERKN3WTF3URLERKNS_12SameSiteInfoES4_NS1_8OptionalINS1_16ObjectIdentifierINS_19FrameIdentifierTypeEEEEENS8_INS9_INS_18PageIdentifierTypeEEEEENS_20IncludeSecureCookiesE) +STUB("huBRvuH7acw", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession15getJoinDisabledEv) +STUB("huEbdl0CB9s", _ZN3sce7Toolkit2NP2V29Challenge7Request21GetReceivedChallengesC1Ev) +STUB("huG4kfm8C4M", _ZN3JSC7Symbols26throwRangeErrorPrivateNameE) +STUB("huGvHam461g", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUserC2ERS5_) +STUB("huJ-2GzzNXs", _ZN3sce2np3ipc14service_client11WaitRequestEiij) +STUB("huNf91I8Tjg", JSStringCreateWithUTF8CString) +STUB("huP7Avrv4ug", WKBatteryStatusCreate) +STUB("huPnixU5dNc", WKAXObjectFrame) +STUB("huPt1cKM3Ws", _ZN3WTF21RefCountedLeakCounterD1Ev) +STUB("huXPyr6A9to", cairo_font_options_destroy) +STUB("huYBy9dp-BA", mono_aot_System_Xml_Linqunwind_info) +STUB( + "huYCCy39SJs", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "hubGzKjFZAo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEptEv) +STUB("hucTWmWOIJs", WKWebsiteDataStoreClearAdClickAttributionsThroughWebsiteDataRemoval) +STUB("huhq1pOR6o0", _ZThn24_N9Inspector22InspectorDebuggerAgent7disableERN3WTF6StringE) +STUB("hujPhSbtd4A", WKPageBeginPrinting) +STUB("hulfhT-chcs", _ZNK3sce2Np9CppWebApi7Matches2V121ResponsePlayerResults8getScoreEv) +STUB( + "huoedZ1CsgU", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "husDNXxMOzw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEED1Ev) +STUB("hutxxeqnA5Y", mono_image_get_public_key) +STUB( + "huzzTt6u9BQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEC2EPKS8_) +STUB( + "hv-IrQlq7Xo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEE3getEv) STUB("hv1luiJrqQM", scePadInit) +STUB("hv4VQwjdIPE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE3endEv) +STUB( + "hv9RuDJIBJs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEED1Ev) STUB("hvCXMwd45oc", sceNetConfigDelIfaddr6) STUB("hvG6GfBMXg8", sceHttpAbortRequest) +STUB( + "hvGSp7rj2RU", + _ZN9Inspector24NetworkBackendDispatcher18removeInterceptionElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "hvL6gJZ7+I4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("hvMJpleSCrA", _ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForReadD2Ev) STUB("hvMn0QJXj5g", sceUsbdResetDevice) +STUB("hvO1W2Ny8YU", _ZN3sce14IndirectCanvas6createEv) +STUB("hvU8aQYY5bI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEEcvbEv) STUB("hvUfkUIQcOE", sceAgcDcbSetUcRegistersIndirect) +STUB( + "hvVDFVvv4jE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEneERKS9_) +STUB("hvaGpI+znWE", _ZN3sce7Toolkit2NP2V210Tournament7Bracket5resetEv) +STUB("hvaTjFV3IEU", _ZN3sce2Np9CppWebApi7Matches2V120ReportResultsRequest17setNpServiceLabelERKi) +STUB("hvch5hb-tM0", _ZN7WebCore9FrameView26setFixedVisibleContentRectERKNS_7IntRectE) +STUB( + "hvdIiYdTED4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEEC1ERKSA_) STUB("hvdThnVvwdY", sceNpTrophyNumInfoGetTotal) STUB("hvfrzWFz2aE", sceContentBinderEnd) +STUB("hvkSf-xTMwY", _ZNKSt9basic_iosIcSt11char_traitsIcEE4fillEv) STUB("hvoLYhc4cq0", sceSystemServiceGetPlatformPrivacySetting) +STUB( + "hvpP-RgNrEA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEC1EPNS2_10LibContextE) +STUB("hvtNX8toVTk", _ZN9Inspector15RemoteInspector13startDisabledEv) +STUB( + "hvxV6aK3mc8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEC2EPNS2_10LibContextE) +STUB("hw-UPUK9T+w", _ZN3sce2np12HttpTemplateC2Ev) +STUB( + "hw3hjUUynZQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEixEm) +STUB("hw4Jl+IMDhA", _ZN7WebCore30InvertLightnessFilterOperation6createEv) +STUB("hw53AZLuXnI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEE7add_refEv) STUB("hw5KNqAAels", sceNpRegisterNpReachabilityStateCallback) +STUB( + "hw9oKnfCVvg", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEiRNS2_10LibContextEPT_m) +STUB( + "hwBrJgkOHDA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEdeEv) +STUB( + "hwDMXYWsYpM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE17getResponseHeaderERSA_) +STUB( + "hwLDLtaPaJo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEaSERKS9_) +STUB("hwMqSlpTWCk", WKPageSetFixedLayoutSize) +STUB( + "hwUfyriuFNg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEC2Ev) +STUB("hwVKFtvDCU0", _ZN7WebCore11JSDOMWindow9setOpenerERN3JSC9ExecStateENS1_7JSValueE) STUB("hwVSPCmp5tM", sceKernelCheckedReleaseDirectMemory) +STUB("hwc5T0-l0dY", _ZN7WebCore9HTMLNames40x_itunes_inherit_uri_query_componentAttrE) +STUB( + "hwh0ZfeWfC4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEE7add_refEv) +STUB("hwmGmiURq5E", T5hi) +STUB("hwokTGQKFLo", _ZN6icu_6713UnicodeStringaSERKS0_) STUB("hwrHV6Pprk4", sceSslDeleteSslConnection) STUB("hwsuXgmKdaw", sceFontStyleFrameUnsetEffectWeight) STUB("hwuMsTWU4Kg", sceNpManagerIntUserSignout) +STUB( + "hwxZFkVezZ4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEneERKS9_) STUB("hwzBUHtAZeE", sceGnmSysIsGameClosed) STUB("hx+LIg-1koI", sceNpSignalingDeleteContext) +STUB("hx-ViZvrg5M", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V110AvatarSizeEEdeEv) +STUB("hx-fUBL49Js", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110PlayerTypeEEptEv) +STUB("hx-gaKoc9jw", + _ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRanking10getboardIdEv) +STUB("hx-gl40mLUA", _ZNK3sce2Np9CppWebApi11Matchmaking2V113ErrorResponse8getErrorEv) +STUB("hx14gMl7184", mono_aot_Sce_Vsh_Np_ServiceCheckerunbox_trampolines_end) +STUB("hx203o+MZSo", _ZN7WebCore12EventHandler10mouseMovedERKNS_18PlatformMouseEventE) +STUB( + "hx5FV1rA-wM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("hxEUBVTHcys", OCSP_resp_get0) STUB("hxFXyDfqukU", sceCesMbcsStrToUtf32Str) +STUB( + "hxH+qfc3K2g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEptEv) STUB("hxLqZDMmldk", sceVideoCoreMediaSourceGetSourceBufferEvent) STUB("hxMhmz8IDCI", sceFsMlfsUmount) +STUB("hxNhFJr+QE4", _ZN3IPC10ConnectionD1Ev) +STUB( + "hxOYnjQgoI8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEplEm) STUB("hxPWcZh4OZM", sceAudiodecDecode2Ex) +STUB( + "hxPZWUY138E", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBody5setToERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_23MemberWithMultiPlatformEEEEE) +STUB( + "hxYgOeUZPSY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("hxcr96px0ww", _ZN7WebCore16BlobRegistryImplC1ERKS0_) STUB("hxk8yqFZG5E", _sceLibcMallocStats) +STUB( + "hxkI-hVH9m8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEaSERKS9_) +STUB( + "hxkhCvDitnc", + _ZN9Inspector21HeapBackendDispatcher10getPreviewElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "hxqz1++KT-g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEC2Ev) +STUB("hy2VjK1gbEU", uspoof_getRestrictionLevel_67) +STUB("hy3Hdr30GxA", _ZN7WebCore8SVGNames15markerWidthAttrE) STUB("hyATMTuQSoQ", sceHmdInternalSetDeviceConnection) +STUB( + "hyCkdqwgnkA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEC2EPS6_PNS2_10LibContextE) +STUB("hyLvzF3HeWk", _ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody11statusIsSetEv) +STUB( + "hyMPzOm0en8", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessionsC2ERS5_) +STUB( + "hyOGKzdLM78", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEiRNS2_10LibContextEPT_m) STUB("hyVLT2VlOYk", sceNgs2ParseWaveformData) STUB("hyW5w855fk4", sceUserServiceGetGlsIsRecievedMessageHidden) +STUB("hyX853ocguo", mono_btls_x509_verify_param_copy) +STUB("hyc37UoQ8JY", _ZN3sce7Toolkit2NP2V211SharedMedia7Request14GetScreenshots17DEFAULT_PAGE_SIZEE) +STUB( + "hyc9aKZXL3E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("hydr+dle5x4", + _ZN7WebCore7Process13setIdentifierEN3WTF16ObjectIdentifierINS_21ProcessIdentifierTypeEEE) +STUB("hyeuycsBGsM", _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse15getMatchResultsEv) +STUB("hyf2MiwGHyk", _ZN3sce2Np9CppWebApi7Matches2V119RequestMatchResults8fromJsonERKNS_4Json5ValueE) STUB("hyfPWjJB8pI", sceLibSecureCryptographySetContext) +STUB("hyjXKNKT-wo", uprv_strndup) +STUB("hyjfkpTHykQ", gTimeZoneFilesInitOnce_67) STUB("hykD8qmO6XA", sceMbusTerm) +STUB("hykVSV23s78", _ZN3sce7Toolkit2NP18VoucherInputParamsC2Ev) +STUB( + "hylz-AF28vA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE3endEv) STUB("hyrDIxugcKw", sceNpGlobalHeapTerm) STUB("hyuye+88uPo", _sceNpIpcDestroyMemory) +STUB( + "hyvpaY7TDPs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEE7get_refEv) +STUB("hz-J3hohXW8", FT_QAlloc) +STUB("hz951X5xto4", + _ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody13unsetSortModeEv) +STUB("hzBAQGt4hMw", WKWebsiteDataStoreCreateNonPersistentDataStore) STUB("hzFlLcA1s-M", sceLibSecureHashMessage) +STUB( + "hzFttIPH87I", + _ZN9Inspector17ScriptDebugServer27dispatchFunctionToListenersEMS0_FvPNS_19ScriptDebugListenerEE) +STUB( + "hzFwNQWwTHg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEE11release_refEv) +STUB( + "hzG7ZDn0QOc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("hzHPrqEtnxc", WKContextSetFontWhitelist) +STUB( + "hzKEwdix4x0", + _ZNK3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform6toJsonERNS_4Json5ValueEb) +STUB("hzLP5YxUxkQ", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEEplEm) +STUB( + "hzOqwrtq5Vs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB("hzPDO54KbKg", _ZN7WebCore9HTMLNames22onwebkitsourceopenAttrE) +STUB("hzQL-pMsVGU", _ZN7WebCore11JSDOMWindow9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("hzSGJKJYwI4", _ZNK7WebCore8Position25leadingWhitespacePositionENS_9EAffinityEb) +STUB("hzUzqWKl648", _WPrintf.qchar) +STUB( + "hzVdRAT0Dz0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE5abortEv) +STUB("hzX87C+zDAY", bsearch_s) +STUB("hzXY0jXSjeg", WKPageGetDebugPaintFlags) +STUB( + "hza4FIT2sK0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEC2Ev) +STUB("hzbEkdACzfU", _ZN3sce7Toolkit2NP2V210Tournament10TeamMemberaSERKS4_) +STUB("hzdms2JWXlo", _ZN3JSC20JSStringHeapCellTypeC2Ev) +STUB("hzgYdvXB+IU", _ZN3sce7Toolkit2NP2V28Presence7Request14DeletePresenceC1Ev) +STUB( + "hzhZcAPQ8p8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEE7add_refEv) +STUB("hzl0lqxzyDc", _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities5Error9getSourceEv) +STUB("hzlNtrJiHoo", u_strcmpCodePointOrder_67) +STUB( + "hzmsG0HwNcU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEE11get_deleterEv) +STUB("hzoYJvGvG1k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEC1ERKS7_) +STUB("hzrrtt44Xoc", rgctx_fetch_trampoline_rgctx_9_p) +STUB("hzsdjKbFD7g", _Getpwcostate) +STUB( + "hztLjb5lSc8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEE11get_deleterEv) +STUB("hzvhPNPRw0s", _ZNSt11regex_errorC1ENSt15regex_constants10error_typeE) +STUB( + "hzvhYv-xUbk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEEptEv) +STUB( + "hzzYMRBWurg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEC1EPKS8_) +STUB( + "i++NyQZ-ba4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEmmEv) STUB("i+1kluDITlQ", sceLncUtilGetAppFocusedAppStatus) +STUB( + "i+3mbtdyA7c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEEC2ERKSA_) +STUB("i+4DJ+n0Ty8", _ZN3sce7Toolkit2NP2V210Tournament27TeamVsTeamTournamentDetailsC1ERKS4_) +STUB("i+7T-pa-QW4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEC2Ev) +STUB("i+FpxOCY-KU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEEC2Ev) +STUB( + "i+In6Gi0Fwo", + _ZN7WebCore21JSCSSStyleDeclaration6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_19CSSStyleDeclarationENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "i+MgFlti2vc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEdeEv) +STUB( + "i+MkwgBf+20", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB("i+NXjmvI3v0", _LMBCSData8_67) +STUB( + "i+R80I1fp9s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE6resizeEj) +STUB("i+SjlS9hatI", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container5getIdEv) +STUB("i+SoxJi4Xxk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEE7add_refEv) +STUB( + "i+T6SZR6+fM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEEdeEv) +STUB("i+TnnZSGaQQ", _ZN7CoreIPC15ArgumentEncoder6encodeEj) +STUB( + "i+UWpVYa4PE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE5beginEv) +STUB( + "i+W0YCm3fY0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEC1ERS7_) +STUB("i+cvx0UFWpY", _ZNK7WebCore12BlobRegistry18isBlobRegistryImplEv) +STUB( + "i+kJxSRBfvc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "i+mlLzDuuqU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEED2Ev) +STUB( + "i+nYhu79m6c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEC2EPKS8_) +STUB( + "i+ne9D93Fgc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEC1EPS8_) +STUB( + "i+nhXDVV2SQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEC2EPKS8_) +STUB("i+qWer1gZ8E", _ZN3sce7Toolkit2NP2V23TUS25AtomicAddToAndGetVariableD1Ev) STUB("i+quCZCL+D8", sceHttpSetProxy) +STUB( + "i+r3hY9gs0A", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetInteger9Ev) +STUB( + "i+rbyTQr1Xc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEC1EPS8_) +STUB( + "i+u-xvmAa0U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEE11get_deleterEv) +STUB("i+u8LnBDcGs", __tsan_mutex_post_divert) +STUB("i+xzwYeeEtk", _ZN3sce2npeqERK16SceNpTitleSecretRKNS0_13NpTitleSecretE) +STUB("i+yshKd8V5k", _ZN7WebCore9HTMLNames7htmlTagE) +STUB( + "i+yt2w7jhKo", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE10setContextEPNS2_10LibContextE) +STUB("i-0d4C9DJrU", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_23NpSessionInvitationInfoEE7destroyEPS3_) +STUB("i-4PMEnIbqQ", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V122UploadDataResponseBody6toJsonERNS_4Json5ValueEb) +STUB( + "i-6vhiGlMwE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE5clearEv) +STUB("i-7v8+UGglc", _rtld_atfork_pre) +STUB("i-9iwOINIo4", _ZN3sce7Toolkit2NP12CategoryInfoC2Ev) +STUB( + "i-AG4lMzGP4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEED2Ev) +STUB( + "i-DcO6mpZ6o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE6resizeEj) STUB("i-H8tE6wTqI", sceKernelGetDataTransferMode) +STUB("i-NcJi8Ub8E", _ZN3sce7Toolkit2NP2V210Tournament17TournamentDetails8deepCopyERKS4_) +STUB( + "i-TKaSxnTl0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEEcvbEv) +STUB( + "i-U839L1NC8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEE5resetEPS9_) +STUB("i-UZ3w5ajsc", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetAccountId2OnlineIdC2ERS5_) +STUB( + "i-V6yOXWGQo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEixEm) +STUB("i-XwZjw0OOY", _ZN3sce4Json12MemAllocator11notifyErrorEimPv) +STUB("i-beSY2PTnE", + _ZN7WebCore11FrameLoader17HistoryController33restoreScrollPositionAndViewStateEv) +STUB("i-d619hYnkg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEC1Ev) +STUB("i-dfSa1ITg0", Java_java_net_PlainDatagramSocketImpl_socketSetOption0) STUB("i-esdF3Kz-g", sceLncUtilGetApp0DirPath) +STUB("i-iDZwQYeVM", _ZTVN9Inspector20InspectorTargetAgentE) +STUB( + "i-iEzNiWKUE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEppEv) +STUB("i-ifjh3SLBU", lgammaf) +STUB( + "i-kelscFt-I", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("i-lh1gEcVes", _ZN7WebCore9Scrollbar7mouseUpERKNS_18PlatformMouseEventE) +STUB( + "i-mo+ae4cOE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEppEi) +STUB( + "i-tHVh-3-uY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEC2EPS8_) +STUB( + "i00i5hEbWY4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEppEv) +STUB("i04K2pwkfUg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEEC2Ev) +STUB( + "i05rR6EBImo", + _ZN7WebCore19JSDOMMatrixReadOnlyC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_17DOMMatrixReadOnlyENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "i0DPoufn-nA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE8capacityEv) STUB("i0DbE5x06fw", sceFaceTrackerReset) +STUB( + "i0ETvez6ips", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("i0Ipda+ehgc", _ZN7WebCore28InspectorFrontendClientLocal8SettingsD1Ev) +STUB( + "i0LMc9EkgGY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEC1Ev) STUB("i0TT5qPqCYo", sceAppInstUtilCancelDataDiscCopy) +STUB( + "i0TUyG6mWy0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE5beginEv) STUB("i0VnXM-C9fc", sceNgs2SystemRender) +STUB("i0Za8oZgEJE", _ZN3JSC24getFloat32ArrayClassInfoEv) +STUB( + "i0dgkA6Sels", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEEC1ERKSA_) STUB("i0dr6grIZyc", sceNpWebApiSetMultipartContentType) +STUB("i0jRYI9yQtM", ulistfmt_openForType_67) +STUB("i0pah9149Bk", ucsdet_getName_67) +STUB("i0q6BKDSDQY", EC_KEY_set_private_key) +STUB("i0rf3jbDsCo", __rshift_D2A) +STUB( + "i0wvBV9BfnY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "i0yXqhPC7zY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEC2Ev) +STUB( + "i12sYg+-3Ao", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEC1Ev) +STUB("i13+SQPoMow", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11TusVariableEE7destroyEPS3_) +STUB( + "i1393UBWu1U", + _ZN3sce4Json11Initializer28setGlobalSpecialFloatHandlerEPFKNS0_5ValueENS0_12FunctionTypeEdPS3_PvPbES6_) +STUB("i180MNC9p4c", _ZNSt8_LocinfoC2EiPKc) +STUB( + "i1C+dJ7o+f8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEC2EPKS8_) +STUB("i1CJf7hDbXM", _ZN7WebCore9HTMLNames16adcampaignidAttrE) STUB("i1D0nTVcCgk", sceMbusNotifyDriverEvent) +STUB("i1D4zws-Py8", mono_aot_Sce_Vsh_Orbis_CdlgServerNpCommerceplt_end) +STUB("i1GAPIM3DL8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEED1Ev) STUB("i1ILma56NDA", sceIduUtilGetBgftProgress) +STUB("i1JK+VUlKWM", _ZN7WebCore11MediaPlayer8bufferedEv) +STUB("i1KnWrxf1c0", _ZNK7WebCore19BlurFilterOperation11movesPixelsEv) +STUB( + "i1Lt1JH4kyc", + _ZN3sce2Np9CppWebApi14SessionManager2V134PostGameSessionsSearchResponseBody15setGameSessionsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_17SearchGameSessionEEEEE) +STUB("i1N28hWcD-4", _Getctyptab) +STUB("i1OxuyxlRxw", _ZN3sce7Toolkit2NP2V28Matching7Request11SearchRooms10MIN_OFFSETE) +STUB( + "i1U3qWQ64lo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEmmEi) +STUB("i1VFpGXSPos", _ZN7WebCore19ResourceRequestBase22defaultTimeoutIntervalEv) +STUB( + "i1azVN-jwbs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEEC2ERSA_) STUB("i1jyy49AjXU", sceAgcDcbWriteData) STUB("i1kREW2pchs", scePthreadAtfork) STUB("i1lhp0Wlu+k", sceNpPush2IsInit) +STUB("i1n4E6Vd2-M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEEmmEi) +STUB( + "i1p-MLPKkPc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("i1pLagnFZ5M", _ZN3WTF25createCanonicalUUIDStringEv) +STUB( + "i1pepi0Fy0M", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE8capacityEv) +STUB( + "i1u-KeoT9XM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEmmEi) +STUB("i1zdtddvwdE", _ZNK3WTF6String5splitERKS0_) +STUB("i2-8HA7oe4Q", _ZN3sce7Toolkit2NP15AppSTLAllocatorI13SceNpOnlineIdEeqERKS4_) +STUB( + "i21Bus9WYQA", + _ZN9Inspector23CanvasBackendDispatcher27setShaderProgramHighlightedElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "i220-g9KEfM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE5beginEv) +STUB( + "i27MG1Mksq0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEEC2ERKSF_) +STUB("i28bR54-QFQ", _ZN3sce2np20BufferedStreamReaderD0Ev) +STUB( + "i28jerFC84c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEC2ERKS7_) +STUB( + "i2GZgflkZ9A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEC2EPKS8_) +STUB("i2H+zidMP3Y", _ZNK3WTF8JSONImpl5Value9writeJSONERNS_13StringBuilderE) +STUB("i2KGykoRA-4", _ZN3sce2np4UserC2Ei) +STUB( + "i2SWqERjN1o", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE5emptyEv) +STUB("i2X3EwZCBis", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia11ScreenshotsEE3setEv) STUB("i2ZMZKwZpWs", sceContentSearchGetTotalContentSize) +STUB("i2fNYHoTATU", mono_btls_x509_store_ctx_get_verify_param) +STUB("i2fbAs+av+g", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats12getBandwidthEv) +STUB( + "i2hCH7liNzQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) STUB("i2ifZ3fS2fo", scePthreadRwlockattrDestroy) +STUB("i2jh3WEeSy4", _ZNK3sce2Np9CppWebApi13InGameCatalog2V55Image6toJsonERNS_4Json5ValueEb) +STUB("i2jo27JK9ho", _ZN7WebCore17LibWebRTCProvidernaEm) STUB("i2kbAbi3ozo", sceNpTrophy2SystemBuildGroupIconUri) +STUB("i2l3IYvQ9UE", _ZNK3sce4Json6Object5emptyEv) +STUB("i2nL46sS-fQ", _ZN7WebCore9HTMLNames7dirAttrE) +STUB("i2tSSjAemtQ", ubidi_getLevelAt_67) +STUB( + "i2w46g3jBfQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEC1EPS8_) +STUB( + "i2way+Mh9yc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEneERKS9_) +STUB("i2yN6xBwooo", _Getstr) +STUB("i30xyj0CsYc", bdjbg_alloc) +STUB("i35pMXdpi0U", WKBundleSetAllowUniversalAccessFromFileURLs) +STUB("i3E1Ywn4t+8", inet_ntoa_r) +STUB("i3E93n0yg1E", _ZN12video_parser5vpcom11LockDestroyEPN3paf6thread5MutexE) +STUB("i3ETrbVSEV8", _ZN7WebCore11DisplayList11FillEllipseD2Ev) +STUB("i3EU0fCS8j8", jpeg_read_header) STUB("i3EY9pCdNEc", sceSlimglServerSetupSocketPairingTransport) +STUB("i3FLUIOYxDE", _ZN3sce7Toolkit2NP15CategoryInfoSubC2Ev) STUB("i3HWvW35jao", sceKernelAprResolveFilepathsWithPrefixToIds) +STUB("i3KqKd7TWSk", mono_aot_System_Netunbox_trampolines) +STUB("i3OFbJGd4v4", _ZN3sce2Np9CppWebApi14SessionManager2V130RequestGameSessionMemberPlayerD2Ev) +STUB( + "i3OMwSLRSIc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEC2Ev) +STUB("i3Q5o0TwriM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEEmmEv) +STUB("i3RlS3yopbc", _ZNK7WebCore12SharedBuffer21combineIntoOneSegmentEv) STUB("i3STzxuwPx0", sceRudpGetStatus) +STUB("i3V5DsrYqxg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce19ServiceEntitlementsEED2Ev) +STUB("i3VAeybXDww", _ZN7WebCore13GraphicsLayer15addChildAtIndexEPS0_i) +STUB("i3VEO7PAzDs", + _ZThn24_N9Inspector22InspectorDebuggerAgent19failedToParseSourceERKN3WTF6StringES4_iiS4_) +STUB( + "i3Wq7nO3Wwc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEED2Ev) +STUB("i3aHaHZtiqE", _ZN7WebCore16HTMLInputElement12setRangeTextERKN3WTF6StringEjjS4_) +STUB( + "i3aOk-FEIy8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEmmEi) +STUB( + "i3agTO5LQvw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEED1Ev) +STUB("i3i0348x6M8", _ZN3sce2Np9CppWebApi6Common8IteratorIlEmmEi) +STUB("i3jcNNLDrjA", _ZN9Inspector19InspectorAuditAgent11muteConsoleEv) +STUB( + "i3nkcKGLx8I", + _ZNK3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("i3rOwm9Ztbw", _ZN3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse15unsetNextOffsetEv) STUB("i3tB6CuvHb4", scePthreadSetBesteffort) +STUB("i3veCjl-0Zs", _ZN3sce7Toolkit2NP2V27Ranking17SetGameDataResultaSERKS4_) +STUB( + "i3wH59hCTCw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "i3xO6P1YI70", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEptEv) +STUB("i410EL12bUs", _ZN3sce7Toolkit2NP2V23TUS25AtomicAddToAndGetVariableC1Ev) +STUB( + "i47oSM+6lQM", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeader37unsetxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB("i4FsTbO-+x8", u_strrchr) +STUB("i4GIz+JM7Fw", fuse_chan_new) +STUB( + "i4Gk1xrLyiI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB( + "i4H82IjtbGU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEC2Ev) +STUB( + "i4HzAXDKVv4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE3endEv) +STUB("i4J5FvRPG-w", _ZSt10_GetloctxtIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEiRT0_S5_mPKT_) +STUB("i4JbRsPTEPQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEEC2ERSA_) +STUB( + "i4NCdnECw2Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEppEi) +STUB( + "i4OMPeF8-1I", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3CSS8Grouping4TypeEEEN3WTF8OptionalIT_EERKNS6_6StringE) +STUB("i4OMjKIIJNQ", _ZTv0_n24_N12Mp4RetrieverD1Ev) +STUB("i4ToRAb++lE", _ZNK3WTF13DecimalNumber15toStringDecimalEPhj) +STUB( + "i4cDQi9Agqs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEeqERKS9_) +STUB("i4eT3QOzLNI", _ZNK7WebCore12SettingsBase15serifFontFamilyE11UScriptCode) +STUB("i4eu6D3sU+s", _ZNK7WebCore6Editor32isContinuousSpellCheckingEnabledEv) +STUB("i4kxni2dOq4", _ZN7WebCore14SchemeRegistry32canServiceWorkersHandleURLSchemeERKN3WTF6StringE) +STUB("i4lKtRTn-IE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEE7get_refEv) +STUB( + "i4n+EjJtASI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEneERKS9_) +STUB("i4nmZrhI6tY", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody8getValueEv) STUB("i4tm7MB0ZK0", sceLncUtilIsPs2Emu) +STUB( + "i4tm8Xeej-Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEEaSERSA_) +STUB("i4u95ruk+R4", + _ZNK3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectator14getCustomData1Ev) +STUB( + "i4ud5O7OWWI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariable10initializeEPNS1_6Common10LibContextEPKciNS6_12IntrusivePtrINS3_28AddAndGetVariableRequestBodyEEE) STUB("i4z2NMo9T3A", sceLibSecureHashGetDigest) +STUB("i4zxQPHkqJs", _ZNK7WebCore20ResourceResponseBase21expectedContentLengthEv) +STUB("i51FQZY--Sw", _ZN3sce7Toolkit2NP2V23TUS7Request12GetVariablesD1Ev) +STUB("i57N7J4ePKo", _ZN7WebCore17JSDOMRectReadOnly7destroyEPN3JSC6JSCellE) +STUB( + "i58WebcTLgU", + _ZN23sceMetadataReaderWriter15ParserInfoTable23registerParserInterfaceEjRKNS_15ParserInterfaceE) +STUB("i5CtXny8nS4", mono_aot_Sce_PlayStation_HighLevel_UI2Platformunbox_trampolines_end) +STUB("i5FMHLlAuCQ", _ZN7WebCore8JSDOMURL15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("i5FkWVx8+i4", + _ZN15AbstractStorage14FacebookFolder13ParseMetadataEPN23sceMetadataReaderWriter8MetadataES3_) +STUB("i5JGgnGVbKU", _ZN3sce2np14HttpConnection7CompareEiPKcS3_t) +STUB("i5Lqdyi9tqo", _ZN7WebCore11DisplayList9DrawImageD1Ev) +STUB( + "i5OvHqE9A2Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEneERKS9_) +STUB("i5TGs-ci6Ws", + _ZNK3sce2Np9CppWebApi14ConnectAccount2V212PartnerToken22accessTokenSecretIsSetEv) STUB("i5TP5NLmkoQ", sceNpStrBuildHex) +STUB( + "i5Vb2CPtik0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEneERKS9_) +STUB("i5cXickNcHo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEE7add_refEv) STUB("i5dYsnXsWoA", sceBackupRestoreUtilGetTitles) +STUB( + "i5gc4noksBE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE5beginEv) +STUB("i5mr2DobQXk", _ZN7WebCore21DiagnosticLoggingKeys29succeededLessThan20SecondsKeyEv) +STUB("i5paVISLR78", WKBundlePageInstallPageOverlay) +STUB( + "i5zy1wZ5aQU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEC1EPNS2_10LibContextE) +STUB( + "i6+3zRRQ+Bg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) STUB("i6-sR91Wt-4", sceVideoOutSetBufferAttribute) +STUB( + "i60KjbhKwSc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEED2Ev) STUB("i64ig3BF6f8", sceRegMgrGetIntInitVal) STUB("i69T0TU539Q", sceRemoteplayNotifyOskStatus) +STUB( + "i6A6Rk-Mk2o", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEdeEv) +STUB("i6AaIeOsmqM", _ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_16SessionAttributeEE8max_sizeEv) +STUB("i6Bx31ccE6g", _ZNK9Inspector15ScriptCallStack7isEqualEPS0_) +STUB("i6C2aay444A", delegate_virtual_invoke_1) +STUB("i6EfO55+pwo", _ZN3JSC6JSLock12DropAllLocksC1ERNS_2VME) +STUB( + "i6Felv-xnik", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEC1EPNS2_10LibContextE) +STUB( + "i6QHWSXrDwI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEaSERKS7_) STUB("i6UNdSig1uE", sceFontRenderCharGlyphImageVertical) +STUB("i6Uvq4whoaY", _ZN3sce7Toolkit2NP2V210Tournament17TournamentEventIdC2Ev) +STUB("i6XroQehjtY", mspace_create_ex) +STUB("i6bWR2E0+28", _ZZSt9MakefacetISt8numpunctIwESt8_LocinfoERT_T0_E3buf) STUB("i6bfTi13ApA", sceAgcDriverSetWorkloadComplete) +STUB("i6cUWwgcRl4", isobmf_decoder_create) +STUB("i6d2xQkSR3M", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia10BroadcastsEE3getEv) +STUB("i6fpxNFB7QE", + _ZN3JSC12StringObject10putByIndexEPNS_6JSCellEPNS_14JSGlobalObjectEjNS_7JSValueEb) +STUB( + "i6g5c7WygyM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE6resizeEj) +STUB( + "i6gVXK9UsD8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE8copyFromERKS9_) +STUB( + "i6gbGDRSsFQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE7popBackEv) +STUB( + "i6obGUD9vv4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEC2ERKS7_) +STUB( + "i6rYDIAHdWg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEdeEv) STUB("i6yROd9ygJs", sceHmdInternalGetVirtualDisplaySize) +STUB( + "i70bkHHmVSo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEC2EPNS2_10LibContextE) +STUB("i726T0BHbOU", _ZNSt11logic_errorD1Ev) +STUB( + "i78b7WvAIvI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEEC1EPS8_PNS2_10LibContextE) +STUB("i7AQH4VyfZQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEE11release_refEv) +STUB( + "i7Aicgym338", + _ZN3sce2Np9CppWebApi7Matches2V114SubtaskFactory6createEPNS1_6Common10LibContextEPKcNS3_13SubtaskStatusENS3_19SubtaskAvailabilityEPNS5_12IntrusivePtrINS3_7SubtaskEEE) +STUB("i7CzaSPFxi8", _ZN7WebCore15AffineTransform5scaleEd) +STUB("i7LkLAsV0WU", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyD1Ev) +STUB( + "i7OIbuavNHM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEptEv) +STUB("i7Rhg-uQBfU", _ZN3WTF18fastEnableMiniModeEv) +STUB("i7SWfyGf8OU", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112UpdateStatusEEneERKS7_) +STUB( + "i7Z6g69scLs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEmmEi) +STUB( + "i7ZMKcVSryY", + _ZNK3sce2Np9CppWebApi14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayer14getCustomData1Ev) +STUB( + "i7cauz05AQM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEeqERKS9_) +STUB("i7cyFlPyrPU", _ZN11GvMp4Parser6Common11Utf16ToUtf8ERKSbIwSt11char_traitsIwESaIwEEPSs) +STUB("i7d1DpkaDa4", _ZN3sce7Toolkit2NP2V27Ranking17SetGameDataResultC1ERKS4_) +STUB( + "i7do1ijyUqY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEEC2EPNS2_10LibContextE) +STUB( + "i7ef9pC1g2I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("i7fVobEoYBM", _ZN9Inspector21InspectorConsoleAgent13clearMessagesERN3WTF6StringE) +STUB("i7g8xe9GWbo", _ZN3sce7Toolkit2NP2V27Ranking17GetGameDataResult8deepCopyERKS4_) +STUB( + "i7gpsDhcuFg", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSession12getsessionIdEv) +STUB( + "i7iF-HQdAbw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEppEi) +STUB( + "i7iqArrECx8", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB( + "i7jpazytWC8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V135SetMultiVariablesRequestBodyFactory7destroyEPNS3_28SetMultiVariablesRequestBodyE) +STUB("i7nLEhhDYDg", _ZN7WebCore9HTMLNames22webkit_playsinlineAttrE) +STUB( + "i7nMfFJ7s0c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEC2EPKS8_) +STUB("i7q3H18UQKU", _ZN3sce7Toolkit2NP2V212EventsClient5EventD1Ev) +STUB("i7zkNpbpoZc", udatpg_addPattern_67) +STUB("i80IWKzGrCE", _ZThn16_N3sce2np11NpHttpTransD0Ev) +STUB("i83MRPOKCOY", _ZN3sce7Toolkit2NP2V212ActivityFeed14PlayedWithFeedD2Ev) +STUB( + "i88oabcaRzU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEixEm) +STUB("i8H75v2E-6g", _ZN8Gigacage11mallocArrayENS_4KindEmm) +STUB("i8HHFDiCd4U", WKContextTerminateServiceWorkers) +STUB("i8HJ9eMDt+c", _ZN3JSC7JSProxy19getEnumerableLengthEPNS_9ExecStateEPNS_8JSObjectE) +STUB("i8JkRxnCcTs", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE5emptyEv) +STUB( + "i8KYHlSYnoA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE6resizeEj) +STUB("i8MGif9wksg", _ZThn136_NK7WebCore16HTMLMediaElement6pausedEv) +STUB("i8P42ULtalg", mono_native_thread_join) +STUB("i8S8oWIuKv8", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle13unsetPerGenreEv) +STUB("i8TJdO9d7gw", jinit_c_main_controller) STUB("i8UmXTSq7N4", sceNpCmpNpId) +STUB("i8bSjnP80t0", WKContextResumeHTMLTiles) +STUB("i8djQf+FnoY", udata_open) +STUB( + "i8eDtyMfmb8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEC2Ev) +STUB("i8eZJ-Pcqfc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_17TitleCloudStorage2V19ConditionEEneERKS7_) +STUB( + "i8oedJj9hrA", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEEiRNS2_10LibContextEPT_m) +STUB( + "i8uisdi+H+4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEdeEv) +STUB( + "i8vpGuctUTM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEE6assignEPS6_PFvS8_EPNS2_10LibContextE) STUB("i8x4exnuJ8o", sceApplicationRequestToChangeRenderingMode) STUB("i9+nYhSntBI", scePerfTracePmDelete) +STUB("i9-IpmJyVqQ", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEEixEm) +STUB("i9-gPpLwM9k", mono_g_hash_table_destroy) +STUB( + "i90frynEtX0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE3endEv) +STUB( + "i93wq0Z3w2E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEC1ERKS7_) STUB("i99STC4x3Xc", sceAvControlChangeOutputLayout) +STUB( + "i99kNag3uCU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("i9A0GOpxryc", _ZN3sce3pss4core9PsmObjectD1Ev) +STUB( + "i9AlAUY-9aU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEppEi) +STUB("i9AvJK-l5Jk", SSL_connect) +STUB( + "i9CADO9XvL8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE5beginEv) +STUB( + "i9GYPxbIRKk", + _ZN15AbstractStorage10YoutubeAPI21createUploadParamJsonERKSbIcSt11char_traitsIcENS_8StlAllocIcEEES7_S7_S7_RS5_) +STUB( + "i9HM4NJtHOQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi35ParameterToSetGameSessionProperties40getpatchGameSessionsSessionIdRequestBodyEv) +STUB( + "i9Jo2FOFLy4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "i9LgelCNPy0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEC2EPKS8_) STUB("i9NM4gcpZhk", sceNpPush2TriggerEmptyUserEvent) +STUB( + "i9PsgLbFqtE", + _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody20getInvitableUserTypeEv) +STUB("i9R3RkZTISs", Java_java_lang_Double_doubleToRawLongBits) +STUB( + "i9U5z1guQRw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEE7add_refEv) +STUB("i9bcaaY-IjI", JVM_GetArrayElement) +STUB( + "i9dKLzeDR0w", + _ZN3sce2Np9CppWebApi12Leaderboards2V137GetBoardDefinitionResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_30GetBoardDefinitionResponseBodyEEE) +STUB("i9dPKYiYaM0", _ZNK7WebCore18PlatformTimeRanges3endEjRb) +STUB( + "i9dvDcd3-Nk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE7popBackEv) +STUB("i9g8BQREIek", _ZSt9use_facetISt10moneypunctIwLb0EEERKT_RKSt6locale) +STUB( + "i9jd0wnRvvE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEmmEv) +STUB("i9kZk+hqWP0", delegate_virtual_invoke_imt_22) +STUB("i9kfLzFhtgs", _ZN4Manx6CookieC1Ev) STUB("i9mhafzkEi8", sceHttpSetInflateGZIPEnabled) +STUB( + "i9pBBv2NK+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEE11get_deleterEv) +STUB( + "i9rSKgGEPqE", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEEC2ERKSC_) STUB("iA-DdobUen8", scePadVrControllerReadState) +STUB( + "iA-vC0yvhuU", + _ZN9Inspector26InspectorBackendDispatcherC2ERNS_17BackendDispatcherEPNS_33InspectorBackendDispatcherHandlerE) +STUB( + "iA0CYngvzZ0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE8pushBackERKS8_) +STUB("iA282fSjF30", + _ZN15AbstractStorage14TwitterContent13writeExternalESt10shared_ptrINS_7ContentEE) STUB("iA5fgZroSXQ", sceDtcpIpActivateAsync) +STUB( + "iA7SeqGvQH4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEED2Ev) +STUB("iAIYn4oAWvI", _ZNK3sce4Json5Array8iteratorptEv) +STUB("iAIdHlP7lYg", _ZN3sce7Toolkit2NP13SessionMemberC1Ev) +STUB( + "iALcMz+hdPQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEptEv) STUB("iAMvRxEvs5o", sceDebugSuspendThread) +STUB("iAN-9pPHZSE", _ZN15AbstractStorage14StorageManager11GetInstanceERNS_12MemAllocatorEPv) +STUB( + "iASwvwwuix0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEE5resetEPS6_) +STUB( + "iATcGLFMLw4", + _ZN3sce4Json5ValueC2ERKSt3mapISbIcSt11char_traitsIcENS0_8StlAllocIcEEES1_St4lessIS7_ENS5_ISt4pairIS7_S1_EEEE) +STUB( + "iAV45TteJFY", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V135FrequentlyMutedInGameMetricsFactory7destroyEPNS3_28FrequentlyMutedInGameMetricsE) +STUB( + "iAbipH2J-UE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEmmEi) +STUB( + "iAdtLLd1+os", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE7reserveEi) +STUB("iAlTedwf89k", mono_domain_get) +STUB("iAlTxdAl1BU", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead14setCustomData2EPKvm) +STUB( + "iAnfNJv8WMM", + _ZN7WebCore21JSRemoteDOMWindowBaseC1ERN3JSC2VMEPNS1_9StructureEON3WTF6RefPtrINS_15RemoteDOMWindowENS6_13DumbPtrTraitsIS8_EEEEPNS_13JSWindowProxyE) +STUB( + "iAsa54840JE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEC2ERS7_) +STUB("iAzK7QLDpdA", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEEppEv) +STUB("iB+3lLjBUm4", _ZN3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResults7setRankERKi) +STUB("iB+pwrbrNqY", __tsan_get_report_loc) +STUB("iB4zET-Oj+o", WKPageGroupGetTypeID) +STUB("iB7PYeV7Ng8", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V16Rating13setActivityIdEPKc) +STUB( + "iBCCBFFkKhk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE4sizeEv) +STUB("iBFmSwQUIHw", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V15GroupEEmmEi) +STUB( + "iBGfXfHtWVA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE5beginEv) +STUB("iBI2QXRVzEY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEaSERS7_) STUB("iBQ2omlTuls", sceKernelIccSetBuzzer) +STUB("iBQ6lAQw5Hw", _ZN9Inspector31ConsoleBackendDispatcherHandlerC2Ev) +STUB("iBWc6Yv7Eck", udata_printError_67) +STUB( + "iBZxqPH4DX8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) STUB("iBbwD8vxSEk", sceVisionManagerRequestFindUserInRegion) +STUB("iBcl+4lcTpg", + _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody20unsetUpdatedDateTimeEv) +STUB("iBcuhiwKsk0", _ZN3sce7Toolkit2NP2V23TUS16FriendsVariablesaSERKS4_) +STUB("iBdEFRdfpgg", _ZN3sce2np18HttpConnectionPool7DestroyEv) +STUB("iBdEZ1Gqa1c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEmmEi) +STUB("iBg1hsOJr3U", _ZN3sce7Toolkit2NP2V24Core12abortRequestEi) +STUB( + "iBkviyOntFI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE7reserveEi) +STUB("iBrS+wbpuT0", _ZNSt14numeric_limitsIaE9is_signedE) +STUB("iBrTJkDlQv8", _FTan) +STUB( + "iBrmGRPIUms", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEptEv) +STUB( + "iBrwE6aoSz4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEppEv) STUB("iBt3Oe00Kvc", sceGnmFlushGarlic) +STUB("iByZOVzfSQI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEEC1ERS7_) +STUB( + "iC031JRie60", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEC1EPS8_) +STUB( + "iC2WgHd9ARg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "iC3aR2dPa+I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE8capacityEv) +STUB("iC8g+ZWxbFE", _ZN9Inspector14ConsoleMessageD1Ev) +STUB("iCEovrlyzY0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEED2Ev) STUB("iCO804ZgzdA", sceGnmValidateCommandBuffers) +STUB( + "iCOVzZFhl-c", + _ZN3sce2Np9CppWebApi11UserProfile2V119BasicProfileFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_12BasicProfileEEE) +STUB( + "iCQddncmbEQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEplEm) +STUB("iCT-r3HVDuo", YGDisplayToString) +STUB("iCV57pdH-fI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEE5resetEPS6_) +STUB("iCWgjeqMHvg", _ZNKSt7codecvtIcc9_MbstatetE10do_unshiftERS0_PcS3_RS3_) +STUB("iCb9Z3+1hTY", _ZNK7WebCore9FloatSize18constrainedBetweenERKS0_S2_) +STUB( + "iCbBHY7CPWk", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi35ParameterToSetGameSessionProperties12getsessionIdEv) +STUB( + "iCbvNIQ8xGI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEC2EPS8_) +STUB("iCeewai3enc", _ZN3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResults9setTeamIdEPKc) +STUB( + "iCeuW2ZzQlM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEmmEi) +STUB("iCjHv43B15Q", _ZN7WebCore9JSElement15subspaceForImplERN3JSC2VME) +STUB( + "iCk0S5W+gew", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEEC1ERSA_) +STUB("iCl-Z-g-uuA", asinhl) +STUB("iCoD0EOIbTM", _ZNSt7_MpunctIwE5_InitERKSt8_Locinfob) +STUB("iCoS6S-NtEw", _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead15unsetMaxPlayersEv) STUB("iCq5xW5KQW4", sceNpWordFilterCreateRequest) +STUB("iD+dQKaJuU8", _ZNK3sce2Np9CppWebApi12Leaderboards2V14User12getAccountIdEv) +STUB("iD-q2ef7s5Y", + _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_19TextTrackCueGenericE) +STUB("iD7BvlUpd2Y", _ZN3sce2np10JsonStringC2EP14SceNpAllocator) +STUB("iD7Eml2jhNI", _ZN3sce7Toolkit2NP2V28Matching7Request11SetRoomInfo22MAX_SIZE_LOCALIZATIONSE) +STUB( + "iD7XhUEzdo8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEneERKS9_) +STUB( + "iDBnkF5JTKw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEE7add_refEv) +STUB( + "iDGjTvynVug", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEptEv) +STUB("iDGnKo+knvQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEED1Ev) +STUB("iDGttQg4wC4", ucnv_load_67) +STUB("iDILvJ0bEi8", _ZN7WebCore11MathMLNames8msrowTagE) +STUB("iDNRvzAl0QU", ty_range_tab) +STUB( + "iDNpB6b+02I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEE5resetEPS9_) +STUB("iDPs63X-Cl8", _ZN7WebCore25DropShadowFilterOperation5blendEPKNS_15FilterOperationEdb) +STUB("iDQDNqqmNu0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE5beginEv) +STUB( + "iDQFvRN4qzU", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("iDTIi7G3YxU", _ZN2GK9PlayerPSND1Ev) +STUB("iDZS+QeOv2c", YGNodeGetOwner) +STUB( + "iDgjQl3jTa8", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi8getStatsEiRKNS4_19ParameterToGetStatsERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_5StatsEEENSA_INS8_18ResponseHeaderBaseEEEEE) STUB("iDlso2ZrQfA", sceNpManagerIntGetServerError) +STUB("iDm0dQLmphc", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE3endEv) +STUB( + "iDpzVcFu--Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE5eraseENS2_8IteratorIS6_EERS9_) +STUB("iDrKOYToDe0", _Z28sendIpmiInvokeAsyncMethodCmdiiiiijmPKN4IPMI8DataInfoEib) +STUB( + "iDtGSGdciIs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE5clearEv) +STUB( + "iDw3BMrUz8U", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "iDwYQdCS8Fg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEmmEi) +STUB("iE3CMaB0t70", WKDoubleGetTypeID) +STUB("iE3yMQkaOXM", _ZN7WebCore8SVGNames5kAttrE) +STUB( + "iE6RBJnCRWo", + _ZN3sce2Np9CppWebApi13InGameCatalog2V524ContentDescriptorFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_17ContentDescriptorEEE) +STUB("iE8QHg0jx-k", _ZNK3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator11getPlatformEv) STUB("iE8trxPKnAg", sceAudioOut2UserGetSupportedAttributes) +STUB( + "iE9udjHphXo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEEdeEv) +STUB("iEE4nhybTTw", BN_free) STUB("iEEU+O+wPfM", sceVoiceChatGetChannelMemberVoiceConnectionState) +STUB("iEF0IgrHEbI", mono_object_get_domain) +STUB( + "iEI619xwWcc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEED1Ev) +STUB("iEIYS2CqT9g", _ZN7WebCore9FrameView32recalculateScrollbarOverlayStyleEv) +STUB("iELLmz0gVUw", _Z7readAlliPvm) +STUB("iEMK+BtIb2Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE7reserveEi) +STUB("iENy8SuPHL0", _ZNK7WebCore18AdClickAttribution8toStringEv) +STUB("iEOKkrKq5S0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEEC1EPKS6_) +STUB( + "iEWH8rdIqqM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE) STUB("iEXIEzTjNtI", sceAutoMounterClientTerm) +STUB( + "iEYP9uYObpA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEED2Ev) +STUB("iEe61PaW1pg", ucnv_setFallback) +STUB("iEfUiWkJ3PI", g_VideoOutBaseModeInitialWidth) +STUB("iEjqwmJWL3w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEC2Ev) STUB("iErIFNXEVDM", sceVshAvcapSetInfo) +STUB( + "iEylaLQJwt4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("iEypYwTA7F0", WKCookieManagerDeleteAllCookiesModifiedAfterDate) +STUB("iEyzMri99mw", mono_aot_I18N_Rareunwind_info) STUB("iF1iQHzxBJU", sceLibcMspaceMemalign) +STUB( + "iF39BlpQRd8", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi44ParameterToPatchGameSessionsSearchAttributesC1ERS5_) +STUB( + "iF4X5DjZ4y0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEEaSERKS9_) +STUB( + "iF9LIn+GOLM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB( + "iFGIhSUd7o4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "iFOK1QAKMJE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEppEi) +STUB("iFOXfoXRHFQ", _ZN3sce2np13JsonDocParserD1Ev) +STUB("iFPjeNTgyi4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEED1Ev) +STUB( + "iFQRVwFLHxg", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_11DOMDebugger19EventBreakpointTypeEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB("iFQi1PTTbIo", uhash_removeAll) +STUB( + "iFRxhj7ZblQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEED1Ev) +STUB("iFTayJ+haQQ", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13SessionMemberEEeqERKS4_) +STUB( + "iFUVaT4gwiU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEppEi) +STUB( + "iFWiAkkNYY4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE5beginEv) +STUB( + "iFYx9YGBT3E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEE7add_refEv) +STUB( + "iFavDBbOb8o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEED2Ev) +STUB( + "iFe4eVXsvoY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "iFeHm2+Yq54", + _ZN3sce2Np9CppWebApi14IdentityMapper2V333PsnWebError_error_missingElementsC2EPNS1_6Common10LibContextE) +STUB( + "iFglFV7vd5U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEE7add_refEv) +STUB( + "iFglXzaYC1c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("iFgpvfqTaBc", _ZNSt7_MpunctIwE8_GetvalsIwEEvT_PK5lconv) +STUB( + "iFim9ITKi0w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEEC1ERSA_) STUB("iFirFzgYsvw", sceGnmGetLastWaitedAddress) +STUB( + "iFm1siY0U38", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody35setComparedLastUpdatedUserAccountIdEPKc) +STUB("iFmwQVrfl0g", mono_aot_System_Windowsjit_code_end) +STUB( + "iFrIoip3wfs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEaSERS8_) +STUB( + "iFuEUxIttvs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE3endEv) +STUB("iFzk8ZtVW48", il2cpp_thread_get_top_frame) +STUB("iFzwhERLa6A", + _ZN7WebCore21UserContentController16removeUserScriptERNS_15DOMWrapperWorldERKN3WTF3URLE) +STUB( + "iFzyLn8BgSE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "iG+yTJHAgeo", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB( + "iG-QAMGs5UQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEEC1Ev) +STUB("iG0D3RxoxaQ", monoeg_g_spaced_primes_closest) +STUB("iG0gNTcPCY4", _ZN3JSC17hasIteratorMethodEPNS_14JSGlobalObjectENS_7JSValueE) +STUB( + "iG1+PK-uwdc", + _ZN3sce2Np9CppWebApi14SessionManager2V128ResponseGameSessionSpectatorC2EPNS1_6Common10LibContextE) +STUB("iG1HgCBlL4g", g_strdelimit) +STUB("iG2Ii9QDtE4", _ZN3JSC7Symbols20fontcolorPrivateNameE) +STUB("iG3Y7R3AFOM", WKBundlePageFlushPendingEditorStateUpdate) +STUB("iG6VTE9CEiY", _ZN7WebCore9GLContextD1Ev) +STUB( + "iG7bw2InTPk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE10setContextEPNS2_10LibContextE) +STUB("iG8LUREfhzo", _ZN3sce7Toolkit2NP2V27Session7Request6SearchD2Ev) STUB("iG8aKd0W0oc", sceMbusSetAppModuleFocus) +STUB( + "iGCUaKs4V88", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEEC1ERSA_) +STUB("iGCw9Sj0aS0", _ZN3sce2Np9CppWebApi7Matches2V126RequestTeamMemberStatisticD1Ev) +STUB("iGDtrGsc8Tk", _ZN7WebCore9HTMLNames8hrefAttrE) +STUB( + "iGET4qAmeVQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEppEi) +STUB("iGJa-SNy2cI", _ZN3sce7Toolkit2NP2V28Matching7Request10CreateRoom19MAX_SIZE_FIXED_DATAE) +STUB( + "iGL5CH8MsA4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEC2Ev) +STUB("iGMt7x5rLyE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEEptEv) STUB("iGNNpDDjcwo", sceHmdReprojectionUnsetDisplayBuffers) +STUB( + "iGNQ7R33THQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE5beginEv) +STUB("iGOyddQ2L6k", rgctx_fetch_trampoline_rgctx_43) +STUB("iGUUBdVDChU", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession8fromJsonERKNS_4Json5ValueE) +STUB("iGUwbkjTVPk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEptEv) +STUB("iGW9BzHCnmg", + _ZN3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallback9setslotIdEPKc) +STUB( + "iGXsF+F8aAU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEED2Ev) +STUB( + "iGcBv5np1XY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE6resizeEj) +STUB("iGht1d+2tOw", mono_string_to_utf8_checked) +STUB("iGjM0lOS1Ww", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEEC1ERS7_) +STUB( + "iGjW-i-orgg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEEC2EPS8_PNS2_10LibContextE) STUB("iGjsr1WAtI0", pthread_rwlock_rdlock) STUB("iGpuaBFQroQ", sceFiosCachePrefetchFH) +STUB( + "iGrvptmhYRI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("iGuym9i4NcU", SSL_ctrl) +STUB("iGxZRUg9NPM", _ZNK3JSC9ClassInfo35hasStaticSetterOrReadonlyPropertiesEv) +STUB("iGxaIAeHSDc", _ZThn16_N9Inspector19InspectorAuditAgent8teardownERN3WTF6StringE) +STUB("iGyv1JRGMwM", jinit_color_converter) +STUB( + "iH+2q9T-r3U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEE7add_refEv) +STUB("iH+oMJn8YPk", vwarnx) +STUB( + "iH+y2MA-Xlo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEeqERKS9_) +STUB("iH4YAIRcecA", acosl) +STUB("iH5WG2Vw97w", WKPreferencesSetPluginsEnabled) +STUB( + "iH784qtXzDM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE5emptyEv) +STUB( + "iH9M7oi18XE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEE3getEv) +STUB("iH9TsMsEJIE", _ZN3sce3pss5orbis5video14VideoPlayerVcs11IsBufferingEv) +STUB("iHBiYOSciqY", SSL_acceptConnectionCommon) +STUB("iHFQ4ROnqJ8", g_getenv) +STUB("iHI3fuoqy3I", jpeg_calc_jpeg_dimensions) +STUB("iHILAmwYRGY", _ZNSt15underflow_errorD0Ev) +STUB( + "iHIVAXlBZtg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEptEv) +STUB("iHKuL5BOd4g", _ZNK7WebCore18AdClickAttribution17wasConversionSentEv) +STUB("iHLFpqBhK04", delegate_virtual_invoke_imt_15_p) STUB("iHN-+NnVfn8", sceIduUtilLaunchTitle) +STUB("iHPXwHi7Qwk", WKPagePostMessageToInjectedBundle) +STUB("iHVPBLE8qV4", _ZN7WebCore16VisibleSelectionC2ERKNS_15VisiblePositionES3_b) +STUB("iHZb2839dBc", _ZGVNSt8numpunctIcE2idE) +STUB( + "iHgcz5ibC3g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEE11release_refEv) +STUB( + "iHiHnotU9PM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEmmEi) +STUB( + "iHic8WAGTY8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("iHk+QoIFSj4", _ZN3sce7Toolkit2NP2V212ActivityFeed13ButtonCaption12TEXT_MAX_LENE) +STUB("iHlMUQD31Hk", _ZN8meta_gen13JpegRetriever8FinalizeEv) +STUB("iHmve3gZEgY", _ZNK3sce2np9JsonArray7GetItemEiPNS1_4ItemE) +STUB("iHnPdg0PwlQ", _ZNK7WebCore3URL10isBlankURLEv) +STUB("iHpwI4HGi78", Java_com_sony_bdjstack_javax_media_controls_SoundManager_setPanningLR) +STUB("iHtlQT13Zwo", _ZNK7WebCore8Document17useDarkAppearanceEPKNS_11RenderStyleE) STUB("iHuOWdvQVpg", scePadSetLightBarForTracker) +STUB("iHy3JtWSBGs", _ZN3sce7Toolkit2NP2V210Tournament10TournamentC2Ev) +STUB( + "iI+Ys07F+yc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("iI-6-nvkMic", mono_aot_Sce_Vsh_SystemLoggerWrapperunbox_trampolines_end) +STUB( + "iI-ar6GwPz8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEdeEv) +STUB( + "iI0BxEZt900", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEEC1Ev) +STUB( + "iI2sVE9kBcY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEC1ERKS7_) +STUB("iI3IAf+GFJo", _ZN7WebCore20ResourceLoadObserver10clearStateEv) +STUB( + "iI4El5rK42E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE8pushBackERKS8_) +STUB( + "iI4lTcuuxfY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEeqERKS9_) +STUB("iI6kGxgXzcU", _getprogname) STUB("iINSFzCIaB8", sceHmdInternalGetHmuOpticalParam) +STUB("iIPTNDG3+pw", Java_java_awt_GnmGraphicsConfiguration_createCompatibleImageType) +STUB( + "iIRsvWBdpKw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("iIU4n0aWdMk", + _ZThn16_N9Inspector20InspectorTargetAgent19sendMessageToTargetERN3WTF6StringERKS2_S5_) +STUB("iIeJWwhbaG0", _ZN7WebCore16VisitedLinkStoreC2Ev) STUB("iIfTXvh1hiM", _sceUltReaderWriterLockCreate) +STUB("iIiC1HlEOac", _ZN7WebCore12PrintContextD2Ev) +STUB( + "iIlgQkl63B4", + _ZN7WebCore12SettingsBase44setMediaContentTypesRequiringHardwareSupportERKN3WTF6VectorINS_11ContentTypeELm0ENS1_15CrashOnOverflowELm16EEE) +STUB("iIlt6mYPHKY", _ZN3sce7Toolkit2NP2V23TUS7Request16TusVariableInputC2Ev) +STUB("iIpWFcquO3o", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament5EventEEC1Ev) +STUB("iIs5AgbLn-E", _ZN7WebCore18JSHTMLMediaElement11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("iIsF4NzYgD4", glOrbisMapTextureResourceSCE) +STUB("iIuPmcuDIMQ", _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeIPcPvEED2Ev) +STUB("iIy-Tl+Ctug", + _ZN7WebCore23ScaleTransformOperationC2EdddNS_18TransformOperation13OperationTypeE) +STUB( + "iJ-BBq+t3cs", + _ZN3sce7Toolkit2NP2V28Commerce25consumeServiceEntitlementERKNS3_7Request25ConsumeServiceEntitlementEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("iJ3Jr09A3Dc", _ZN3sce7Toolkit2NP2V24Core18CustomResponseData5resetEv) +STUB( + "iJ5THu2J+9w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEEC1Ev) +STUB( + "iJ6wmI0tj0o", + _ZN7WebCore11DisplayList11DrawPatternC1ERNS_5ImageERKNS_9FloatRectES6_RKNS_15AffineTransformERKNS_10FloatPointERKNS_9FloatSizeERKNS_20ImagePaintingOptionsE) +STUB("iJEDK60-2p4", _ZN3sce7Toolkit2NP2V23TUS7Request10DeleteDataD1Ev) +STUB( + "iJN1oqFOLZo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEEcvbEv) +STUB( + "iJNOa1NUHrU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEppEv) +STUB( + "iJT9rxeRQT0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEC2Ev) +STUB( + "iJTWb8+9oM0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("iJVjfm64Qro", _ZN3JSC14SourceProviderD2Ev) +STUB("iJVourQXpgQ", _ZNK7WebCore11MediaPlayer18maxFastForwardRateEv) +STUB("iJb1jW0mR20", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEEaSERS6_) +STUB("iJbG4E+cTL4", png_malloc) +STUB( + "iJdHVLLxRhk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("iJgcFywfmnA", _ZN7WebCore9MediaList12appendMediumERKN3WTF6StringE) STUB("iJlvTqyPypU", sceCesIso2022StrToUtf8Str) +STUB("iJmD+-6YH9U", _ZNK7WebCore11FontChanges18createEditingStyleEv) +STUB("iJmd2eVDaQ0", unorm_isNormalized_67) +STUB("iJnvgZ6lB7g", mono_aot_Sce_Vsh_DiscPlayerunbox_trampolines_end) STUB("iJqgX+Ecq98", sceDataTransferTargetAbortTransfer) +STUB("iJrakPWgKco", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEE3getEv) +STUB("iJvZL9l47IE", __ULtod_D2A) +STUB( + "iJzRcH9ysiM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEptEv) +STUB("iK-ol3fZ1vk", _ZN3JSC8JSObject9classNameEPKS0_) +STUB("iK6DVkRsAzU", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEEmmEi) +STUB("iKB76ko-8wo", mono_aot_Mono_Cairomethod_addresses) +STUB( + "iKC2XVEAgjE", + _ZN9Inspector15AsyncStackTraceC1EON3WTF3RefINS_15ScriptCallStackENS1_13DumbPtrTraitsIS3_EEEEbNS1_6RefPtrIS0_NS4_IS0_EEEE) +STUB( + "iKCxlRmq3ls", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEixEm) +STUB( + "iKI4LHl5ZLo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEE11get_deleterEv) +STUB("iKJMWrAumPE", getargc) +STUB( + "iKLF27oG6MY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEED2Ev) STUB("iKNXKsUtOjY", sceAppMessagingTryGetEventFlag) +STUB( + "iKU2wkjlrh8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "iKUqoJl4dmc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEixEm) +STUB( + "iKVevPSs0CQ", + _ZN7WebCore14SchemeRegistry62registerURLSchemeAsAllowingLocalStorageAccessInPrivateBrowsingERKN3WTF6StringE) STUB("iKaWKC4Q-vQ", scePssKeyboardGetKeyCode) +STUB( + "iKcASiCIBwk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB("iKdeGTEov3w", fuse_parse_cmdline) +STUB("iKh5XAJ3Htw", _ZN7WebCore29PerspectiveTransformOperationC1ERKNS_6LengthE) +STUB("iKuhuLF+ZBg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEE11release_refEv) +STUB("iKyTy1vaXT0", _ZN2GK9PlayerPSNC1Ev) +STUB( + "iLDCuvDRqhQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEC1EPS6_PNS2_10LibContextE) +STUB( + "iLEIU5+nFms", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) STUB("iLKz4+ukLqk", sceSslDisableOption) +STUB("iLM02STS8N4", + _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchStatus13isInitializedEv) +STUB("iLMIGEcXCJg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEC1Ev) +STUB("iLMc5QUOPvQ", unum_getAvailable_67) +STUB("iLPBv-4XD4Q", vzone_openData_67) +STUB( + "iLRgqjtFANA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEaSERKS7_) +STUB("iLSavTYoxx0", _ZTISo) +STUB( + "iLXjdTZ7Fxs", + _ZThn16_N9Inspector22InspectorDebuggerAgent18getFunctionDetailsERN3WTF6StringERKS2_RNS1_6RefPtrINS_8Protocol8Debugger15FunctionDetailsENS1_13DumbPtrTraitsIS9_EEEE) +STUB( + "iLakkVdPya4", + _ZN15AbstractStorage14StorageManager21NotifyStorageAttachedERKSbIcSt11char_traitsIcENS_8StlAllocIcEEENS_11ServiceTypeE) +STUB("iLh0dpxrYZ0", + _ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer14unsetJoinStateEv) +STUB("iLjBYjFaXh4", _ZN3JSC7JSProxy21deletePropertyByIndexEPNS_6JSCellEPNS_9ExecStateEj) +STUB( + "iLnckwH2WBQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "iLpkroi3tZ0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "iLv9DrMjUZM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "iLwizjPw3lw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEC2ERS7_) STUB("iLxIuu5Xs2A", sceFsErriCtl) +STUB("iLxnuSroJHg", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V15Owner14accountIdIsSetEv) +STUB( + "iM+wcT1ivUg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEaSERKS9_) +STUB("iM-jh22O6cI", RAND_bytes) +STUB( + "iM0VGnx+qag", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEC2EPS8_) +STUB( + "iM1TrHFGNy4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEppEv) +STUB("iMCa6lQRvsY", JNU_ThrowClassNotFoundException) +STUB( + "iMF55LON6eI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEE3getEv) +STUB( + "iMOkL5ve6Uo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEptEv) +STUB("iMQarT42Hpk", ures_getIntVector) +STUB("iMS-OfomYug", _ZN3JSC7Symbols14rawPrivateNameE) +STUB( + "iMWiVXW8FiE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEmmEv) +STUB( + "iMa1bmnG2+c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE6resizeEj) +STUB( + "iMcKgGtukyA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEC1Ev) +STUB( + "iMdW5bcUe28", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEE11release_refEv) +STUB( + "iMgibUAAwdg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEEdeEv) +STUB("iMkHazF68Kc", uset_retain_67) +STUB( + "iMoNfB6j2iA", + _ZN3sce2Np9CppWebApi14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyC1EPNS1_6Common10LibContextE) STUB("iMp8QpE+XO4", scePthreadMutexattrSettype) +STUB("iMwjBLrzxBk", _ZN3sce7Toolkit2NP2V28Matching6WorldsC2Ev) +STUB("iN02xYlRq0c", _Z24Ime_DicReplaceWordNativeimP11_MonoStringS0_S0_S0_) +STUB("iN1b36PcWNI", _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody10unsetGroupEv) +STUB( + "iN29ycT66O4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEEC2ERKS9_) STUB("iN3KqF-8R-w", sceAudioInSetFocusForUser) +STUB("iN5-vU6Rb-Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEE7get_refEv) +STUB("iN6h1zseVxw", _ZN3JSC11SlotVisitor16appendHiddenSlowEPNS_6JSCellEN3WTF10DependencyE) +STUB( + "iN9e-A4xCjg", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations11unsetfieldsEv) +STUB("iNBEBueFlGw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEixEm) +STUB( + "iND-jeMS0n4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE3endEv) +STUB( + "iNHOEbi4L9U", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "iNLKYUQcawk", + _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody22invitableUserTypeIsSetEv) +STUB("iNRjjUp2NwQ", monoeg_g_dir_close) +STUB( + "iNS2cwpm9lk", + _ZN3sce7Toolkit2NP8Commerce9Interface14getProductListEPNS1_9Utilities6FutureISt6vectorINS1_11ProductInfoENS1_15AppSTLAllocatorIS7_EEEEERKNS1_22ProductListInputParamsEb) +STUB("iNX6kO6iSaM", _ZNK7WebCore15ActiveDOMObject25virtualHasPendingActivityEv) +STUB("iNbtyJKM0iQ", _Stold) +STUB("iNcxBU7l+0U", _ZN3JSC7Symbols14subPrivateNameE) +STUB( + "iNft9IfbYJc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEE5resetEPS9_) +STUB("iNg5um8fxt0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119ChildActivityStatusEEneERKS7_) +STUB("iNgmnDffwaI", g_shared_slist_remove) STUB("iNjkt9Poblw", sceSslWrite) +STUB("iNt-rUGOS5w", uidna_nameToASCII_67) STUB("iNtnapy4KGA", sceVorbisDecTimeTell) +STUB( + "iNw1TahiTtQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("iNyVbQAw1gE", _ZN8meta_gen13JpegRetriever16TRProcessIfdDataEv) +STUB( + "iNzVUwPGgGk", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi32ParameterToPostGameSessionsTouch12getsessionIdEv) +STUB("iO4SROiLK28", uidna_openUTS46_67) +STUB("iO5AOflrTaA", _ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1ERKSt8_Locinfom) +STUB("iOIKA6xtlqE", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEEcvbEv) +STUB("iOK0zwqr4Io", _ZN7WebCore17HTMLAnchorElement7relListEv) +STUB("iOLTktXe6a0", _ZTSa) +STUB("iOTsJTR6Y9U", _ZN3sce2np12HttpTemplate4InitEiPKcib) +STUB("iOX0l28xgSc", rgctx_fetch_trampoline_rgctx_82_p) +STUB("iOZzhl-sc4A", _ZN7WebCore6Editor23setBaseWritingDirectionENS_16WritingDirectionE) +STUB("iObhNwfcH0c", _ZN7WebCore28convertToIntegerEnforceRangeIjEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB( + "iOge-pLR2Lg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE8capacityEv) +STUB("iOihgthBWfs", _ZNK7WebCore8Position4nextENS_16PositionMoveTypeE) +STUB( + "iOkywMaZMD8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEaSERKS9_) +STUB( + "iOmDcGwJA8I", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEppEv) STUB("iOqpYvGEo6A", scePadSetUserNumber) +STUB("iOwVV+Ose2I", _ZN10Deprecated18ScriptFunctionCall4callERb) +STUB("iOwunxTavFM", + _ZN3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinitionD2Ev) +STUB("iP0K+ZlmZJA", Java_com_sony_bdjstack_core_AppCacheManager_read) +STUB("iP5usIxGDAI", WKBundlePageClearMainFrameName) +STUB("iP62X-ryVaU", GCC_except_table415) +STUB("iP6IU6Sd8wk", AnnotateFlushState) +STUB("iPBqs+YUUFw", _Atomic_fetch_add_4) +STUB("iPDEu4fu2jM", _ZN3sce7Toolkit2NP2V26Trophy7Request20GetTrophyPackSummaryC1Ev) +STUB("iPFjGWz0FJc", WKBundlePageRemoveAllUserContent) +STUB("iPGdf2iMpz8", _ZN7WebCore9HTMLNames28onwebkitwillrevealbottomAttrE) +STUB( + "iPOGYdrP5rg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEC1ERS7_) +STUB( + "iPQ2ZG2xeHs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEEdeEv) +STUB("iPQjy3HrG38", _ZN7WebCore11DisplayList9TranslateD0Ev) +STUB("iPbWXfJjz50", _ZNK7WebCore10PluginData19webVisibleMimeTypesEv) +STUB("iPcGPUsuc9U", _ZN7WebCore11DisplayList10SetLineCapD2Ev) +STUB( + "iPfI2v+oYnQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEppEv) +STUB("iPg5XoG4I-g", mono_aot_Sce_PlayStation_HighLevel_UI2unbox_trampolines_end) +STUB("iPgEtDFsNa8", _ZN7WebCore16HTMLMediaElement12endScrubbingEv) +STUB( + "iPi3dq6dzgU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE5clearEv) +STUB("iPkIfOtxOeo", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12BandwithInfoEE5resetEv) +STUB( + "iPp-UolxygE", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112ErrorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5ErrorEEE) +STUB( + "iPrIR1lXXO4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEC1EPS8_) +STUB( + "iPtFoMschbU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE5beginEv) STUB("iPtZRWICjrM", scePthreadRwlockTimedrdlock) STUB("iPwFJCIZK14", sceNpGriefReportDeleteTransaction) +STUB("iPxMYP2FHFM", _ZN3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap15unsetIsRecycledEv) +STUB( + "iQ+fE3Hz8oM", + _ZN9Inspector24RuntimeBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("iQ0Lc1tsvd4", mono_sha1_update) +STUB("iQDc85bbae4", JVM_RawMonitorDestroy) +STUB( + "iQK1pWjfZ5k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEC2EPKS8_) STUB("iQRVLJQ+OYs", sceVdecCoreTrySyncDecode) +STUB("iQXBbJbfT5k", _ZnwmSt11align_val_tRKSt9nothrow_t) +STUB("iQY7iS5UxOE", mono_shared_hashtable_iter_next) +STUB("iQYeFQw+37Q", _ZN3sce2Np9CppWebApi14SessionManager2V15Error16unsetReferenceIdEv) +STUB( + "iQc-4fZPS2w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("iQfJQDJl2xU", _ZN7WebCore22EmptyFrameLoaderClient18didSaveToPageCacheEv) +STUB("iQiT26+ZGnA", _ZN10__cxxabiv116__enum_type_infoD2Ev) +STUB("iQl--k2ukCk", mono_class_instance_size) +STUB("iQoJc7qieSk", _ZNK3WTF6String10tryGetUtf8ENS_14ConversionModeE) +STUB( + "iQp3XJdBdNY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEC1EPNS2_10LibContextE) +STUB("iQqJcrJ5fSQ", _ZN7WebCore9HTMLNames11focusedAttrE) +STUB("iQqXemLp8CE", _ZN3sce7Toolkit2NP2V23TUS7Request16GetUsersVariableC2Ev) STUB("iQr9UxPHUFs", sceNpLookupCreateRequest) +STUB( + "iQtRwEeuwp0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEED2Ev) STUB("iQuWNdsul1U", sceFaceIdentifyLiteGetFeature) STUB("iQw3iQPhvUQ", sceNetCtlCheckCallback) +STUB( + "iQxCQEhYeZ0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEE11get_deleterEv) +STUB( + "iQxu3lvAckU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEptEv) +STUB( + "iQz+TP1SYMc", + _ZN9Inspector20DOMBackendDispatcher5focusElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("iR39TKpBQ5c", uprv_getCharNameCharacters) +STUB( + "iRBpbAsZQps", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEaSERKS7_) +STUB("iRDKwS0z18M", _ZN7WebCore29cookieRequestHeaderFieldProxyERKNS_8DocumentERKNS_3URLE) +STUB("iRH-NE2evR4", _ZN3sce2np3ipc10IpmiClient4InitEPKNS2_6ConfigE) +STUB("iRIrQRJTss8", _ZN7WebCore9HTMLNames26x_apple_data_detectorsAttrE) +STUB("iRJKpWvOvw0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEED2Ev) +STUB("iRNZ5GV5b0Q", + _ZNK3sce2Np9CppWebApi12Leaderboards2V122GetRankingResponseBody18getTotalEntryCountEv) STUB("iRX6GJs9tvE", sceAudio3dPortGetStatus) STUB("iRZduYIV1hs", sceLncUtilUnblockAppSuspend) +STUB( + "iRZqt2EWXEA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) STUB("iRdnTgpbVOM", sceBgftServiceIntSetBandwidthPriority) +STUB("iRfxJ54qlG0", WKPreferencesSetWebAudioEnabled) +STUB( + "iRisBn+sF4A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEC2Ev) +STUB( + "iRkjiNEqyPo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEaSERS7_) +STUB("iRm8tkU1ir4", u_getVersion) +STUB( + "iRoJcLEB5yQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEneERKS9_) +STUB( + "iRq+pJWTFgk", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Network7Metrics8PriorityEEEN3WTF8OptionalIT_EERKNS6_6StringE) +STUB( + "iRs7XAI-+qE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("iRuUB-vRDcE", _ZN7WebCore9HTMLNames5thTagE) STUB("iRvaaSfHBc8", sceNpAsmClientGetServiceBaseUrlA) +STUB("iRxNRCm10Eg", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE7popBackEv) STUB("iRxtEP5Etyc", sceNpUniversalDataSystemIntRecordArraySetFloat32) +STUB("iS-Vvo7MaQ4", _ZNK7WebCore21NetworkStorageSession12deleteCookieERKN3WTF3URLERKNS1_6StringE) +STUB( + "iS3twTQ3cys", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEED2Ev) +STUB("iS4aWbUonl0", _Mtx_lock) +STUB("iS8phj6rMeA", _ZN3JSC8Debugger13clearBlackboxEv) +STUB( + "iSCjN-jCzUM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEE11get_deleterEv) +STUB( + "iSF0fcnAvBY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE7reserveEi) +STUB( + "iSFm953qrXA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEC1Ev) STUB("iSGc7kcf8X4", sceKernelDeleteProcessFromCanvasMap) +STUB("iSHhSAr1jks", _ZN3WTF6String6appendEPKDsj) +STUB( + "iSIVpi+6es4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEEptEv) +STUB( + "iSJJLbwR2Yk", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeader10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_43PutPlayerSessionsSessionIdLeaderRequestBodyEEE) +STUB( + "iSNHrtxAerA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE7popBackEv) +STUB( + "iSTNfIyIF1o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "iSULDBUG7ts", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("iSUo7jVM7U0", + _ZN3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayer11setPlatformEPKc) +STUB( + "iSX+ZeIPNJE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("iSYSUkaMV6U", mono_aot_Sce_Vsh_Np_Papcjit_code_end) STUB("iSZjWw1TGiA", sceHttpGetCookieEnabled) +STUB( + "iSgLZvNsjUo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEEC1ERKSA_) +STUB( + "iShGCpRuyrE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEEaSERKS9_) STUB("iSlI1LKy7Bg", sceSysUtilSendSystemNotificationWithErrorCode) +STUB("iSmCJmZBjpE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEEC1ERS9_) +STUB("iSolxX558O0", _ZN7WebCore26HTMLTextFormControlElement21setCanShowPlaceholderEb) +STUB("iSqCwE2UP0o", _ZN4Manx13WorkQueueImplC1EPKc) +STUB( + "iSqIYD6ehaY", + _ZNK3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionMemberPlayer6toJsonERNS_4Json5ValueEb) +STUB( + "iSrtD+foPck", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEppEi) +STUB( + "iStStRoBGg4", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessionsaSERS5_) STUB("iSybA782aFw", sceAudioOutPtOpenEx) STUB("iT+aFczA7ak", sceVideoOutAddS3dHmdPrivilege) STUB("iT+wzBrHq50", scePlayReadyCdmiDecryptOpaque2) +STUB("iT5rGSq18GI", WKPageSetBackgroundExtendsBeyondPage) +STUB("iT8+2czkg-A", _ZN3JSC19HeapSnapshotBuilder15appendIndexEdgeEPNS_6JSCellES2_j) +STUB("iTANhsf3zHk", _ZNK9Inspector15RemoteInspector7enabledEv) +STUB( + "iTAx7Gqtk3Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEaSERKS7_) +STUB("iTIgJfwD0MY", _ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEE8pushBackERKS4_) +STUB( + "iTK9s2sCWzk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEplEm) +STUB( + "iTNFDevmDAo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEmmEi) +STUB("iTODM3uXS2s", _ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1ERKSt8_Locinfom) +STUB("iTT38xYbOqI", InetStatStartTestNative) STUB("iTXe6EWAHek", sceNpManagerIntGetGameAccessToken) +STUB("iTaoxWIQyuY", _ZN7WebCore15GraphicsContext9clearRectERKNS_9FloatRectE) +STUB("iTgPNOBdkIM", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody14variablesIsSetEv) +STUB( + "iTgj-XvNWmo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "iTgr6h-p4LQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEppEv) +STUB("iTraNBq44Do", WKPreferencesSetPeerConnectionEnabled) +STUB( + "iTtCuD165Kk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE10setContextEPNS2_10LibContextE) +STUB( + "iTuz2cgCnGc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB("iTzTuAXWoHE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEaSERS7_) +STUB("iU0z6SdUNbI", fmin) +STUB( + "iU1GbipTqF8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEE11release_refEv) +STUB( + "iU4ahCSu-Jo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEmmEi) +STUB( + "iU4h7ZI2yio", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "iU6ecUx9N7w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEED1Ev) +STUB("iUH7MIZTdBo", jpeg_read_raw_data) +STUB( + "iUP-Askga6o", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer14unsetdirectionEv) +STUB("iUYt6oGGBiI", _ZN7WebCore8FormData10appendBlobERKNS_3URLE) +STUB( + "iUac-AJzs7Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE5beginEv) +STUB("iUarLNk0Dkg", WKPageSetPaginationBehavesLikeColumns) +STUB( + "iUcLtCqSvhA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V116PlayStyleFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_9PlayStyleEEE) +STUB("iUds2oPOQ0A", _ZN3sce2Np9CppWebApi14SessionManager2V113PlayerSession12setSessionIdEPKc) +STUB("iUg3lPaKd4E", WKFrameCreateFrameInfo) +STUB("iUhx-JN27uI", _ZTSSt8messagesIcE) STUB("iUigHJ2op4M", sceVideoOutSysIsModeS3d) STUB("iUjiTIiYnZk", sceNpManagerUtilConvertJidToNpId) +STUB( + "iUmtYqF+0dQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEEptEv) +STUB( + "iUng8xTVS9g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEC1ERKS7_) +STUB( + "iUoY7lFj98I", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEeqERKS9_) STUB("iUohlUDiGac", sceKernelGetCpuFrequency) STUB("iUsONHVCDbQ", sceLncUtilIsCpuBudgetOfExtraAudioDevicesAvailable) +STUB( + "iUwD42UgjZc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("iV0oqHXZhvs", _ZN7WebCore16BlobRegistryImplnwEmPv) +STUB( + "iV0xhocQRNA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE8capacityEv) +STUB("iV2R8ksNRcc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEEppEi) +STUB( + "iV361qwySjQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("iV3nsYj7oVA", _ZN3JSC9CallFrame18callerSourceOriginERNS_2VME) +STUB("iV7Za9AqOOo", mono_aot_SMDiagnosticsunbox_trampolines_end) STUB("iVFRt4Ip+f8", sceVideoArbitrationInitialize) +STUB( + "iVGnaHcZvuI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEC2EPKS8_) +STUB("iVKW7nYDUkU", _ZN3WTF40releaseFastMallocFreeMemoryForThisThreadEv) +STUB("iVMzwzzqlE8", _ZN3sce7Toolkit2NP9Interface17registerNpTitleIdERKNS1_9NpTitleIdE) +STUB("iVUJ-VqTtek", _ZN4IPMI6Server12EventHandler20onSyncMethodDispatchEPNS_7SessionEjPvmmS4_m) +STUB( + "iVW0v6nhpWg", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM23AccessibilityProperties7CurrentEEEN3WTF8OptionalIT_EERKNS6_6StringE) +STUB( + "iVf0VdAsXvI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE3endEv) +STUB( + "iVgb7R-LRSk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE7reserveEi) +STUB("iVhDzJwOSO0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEEC2EPNS2_10LibContextE) +STUB("iVhJZvAO2aQ", lldiv) +STUB( + "iVhXC1bMdWk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("iViI+Faa7Aw", _ZN7WebCore8SVGNames20contentStyleTypeAttrE) +STUB( + "iVqqIpmYPA4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEC1EPKS8_) +STUB( + "iVqybNrIyO4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEplEm) +STUB( + "iVr6T4AcbhI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("iW-6A9-ZxaU", + _ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession16customData2IsSetEv) +STUB( + "iW-7MMlswdA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) STUB("iW2KVLVygdM", sceApplicationGetDbgExecutablePath) +STUB( + "iW3kD9KmQgk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("iW3vKFeWOQQ", _ZN3sce7Toolkit2NP15AppSTLAllocatorISbIcSt11char_traitsIcENS2_IcEEEED2Ev) +STUB( + "iW6DDkN8OgE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEixEm) +STUB("iW6iaUpR6FU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEEC2ERKS7_) +STUB("iW7iup8xEzw", _ZN7WebCore9HTMLNames9shapeAttrE) +STUB( + "iW9EV9FyKno", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEneERKS9_) +STUB("iW9pUP8vR18", WKPreferencesGetMediaUserGestureInheritsFromDocument) +STUB( + "iW9wHGQGbuk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEED2Ev) STUB("iWAnZ3ger+8", pthread_suspend_all_np) +STUB("iWFzNMRZJ8w", _ZN3JSC2VM14resetDateCacheEv) +STUB("iWITbDLrqLg", _ZN3sce7Toolkit2NP2V28Commerce7Request11GetProducts17DEFAULT_PAGE_SIZEE) +STUB("iWM-p53q+H4", mono_assembly_foreach) +STUB("iWMhoHS8gqk", _ZTSPKt) +STUB("iWNC2tkDgxw", _ZNSt13bad_exceptionD2Ev) STUB("iWQWrwiSt8A", sceNetHtons) +STUB("iWRQ8ANp-gc", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessionsD1Ev) +STUB("iWUiWACWr0k", _ZN3sce7Toolkit2NP2V28Commerce7ProductC1Ev) +STUB( + "iWXYETp96rs", + _ZN3JSC12RegExpObject23getGenericPropertyNamesEPNS_8JSObjectEPNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("iWYXKx6f2r4", sqlite3_column_text16) +STUB( + "iWeP7+I7rFk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEptEv) +STUB( + "iWjdWa9Y5iI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEED1Ev) +STUB("iWkjy+4nX+4", mono_btls_ssl_ctx_debug_printf) STUB("iWmFU6WXUk4", sceSlimglRenderServerThreadStart) +STUB("iWpQ5y7lRWE", __ubsan_handle_shift_out_of_bounds_abort) +STUB("iWpT-n68CwM", + _ZThn16_N9Inspector22InspectorDebuggerAgent19failedToParseSourceERKN3WTF6StringES4_iiS4_) +STUB("iWpc4yo0lFQ", _ZNSt12length_errorC1EPKc) STUB("iWpzXixD0UE", sceUserServiceGetKeyRepeatStartingTime) +STUB( + "iWsA3xRCLOA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEEaSERSA_) +STUB("iWsFlYMf3Kw", __pthread_cleanup_pop_imp) +STUB("iWtXRduTjHA", _ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2ERKSt8_Locinfom) STUB("iWwcsTjXh78", scePerfPmcUmcStop) +STUB( + "iWxpyu2a2QE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB("iX-Za3SHQqQ", _ZN3JSC7Symbols29iterationKindValuePrivateNameE) +STUB( + "iX0JndCo8Gw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEE7get_refEv) +STUB("iX56hX3H4Yk", _ZN3JSC4callEPNS_14JSGlobalObjectENS_7JSValueERKNS_8CallDataES2_RKNS_7ArgListE) +STUB("iX75y4XyyiA", __tsan_atomic128_fetch_nand) +STUB( + "iX8DNiv40rw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEppEv) STUB("iXBaRtD8K50", sceDbgDeleteGpuExceptionEvent) +STUB("iXChH4Elf7M", _ZTISt13basic_istreamIwSt11char_traitsIwEE) +STUB("iXGeleOV-c8", WKWebsiteDataStoreEnableDefaultNetworkProxySettings) +STUB("iXHSKtuZ-tg", fmts) +STUB("iXHz2eJVSVs", Java_java_lang_Class_isAssignableFrom) +STUB( + "iXIAYgVGzKU", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB("iXKK7pSkIMc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEC1ERS7_) +STUB("iXKKlfVQueM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEEdeEv) +STUB( + "iXTp-K9e7IU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEppEi) +STUB( + "iXU7C5Zuy0U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEC1EPS8_) +STUB("iXVrhA51z0M", + _ZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_bRSt8ios_basece) +STUB( + "iXX4GY9ODyk", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayerC2Ev) +STUB("iXYBuXcqugQ", _ZN3IPC15ArgumentDecoder21decodeFixedLengthDataEPhmj) +STUB("iXgnlJmCSP4", _ZN3WTF17StringPrintStream7vprintfEPKcP13__va_list_tag) +STUB("iXrXlr3XK4w", _ZN3WTF18ParallelHelperPoolC1EONS_7CStringE) +STUB("iXu7XuFfBhU", _ZN9Inspector15ScriptCallStack6createEv) +STUB("iXwXkTuztI8", _ZN7WebCore11FetchLoaderD1Ev) STUB("iXzUOM9sXU0", sceNpTusDeleteMultiSlotDataA) +STUB( + "iY27bBrKyAk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEC2EPS8_) +STUB( + "iY3wdEUpPHQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEmmEi) +STUB("iY9c5nf+LCQ", _ZN7WebCore15HTTPHeaderFieldC2ERKS0_) +STUB("iYCgf+sk0iw", _ZN3JSC15ArrayBufferViewD2Ev) +STUB("iYDibzjdBf8", + _ZN15AbstractStorage14YoutubeContent13ParseMetadataEPN23sceMetadataReaderWriter8MetadataES3_) +STUB("iYF3qyklbcA", mono_metadata_parse_custom_mod) +STUB( + "iYFKnyetU4Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE8pushBackERKS8_) +STUB("iYK6OcWwt9M", g_hash_table_foreach_remove) +STUB( + "iYRx4FjQjEM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB("iYUK7bu4HSE", + _ZN3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayer14setCustomData1EPKvm) +STUB("iYWHxsFIhcc", _ZN7WebCore9HTMLNames20oncanplaythroughAttrE) +STUB("iYXS3HPuYjs", WKBundleSetPopupBlockingEnabled) +STUB("iYXf-uzLKL0", X509_STORE_CTX_get_current_cert) +STUB( + "iYa5kFcIfN0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEC2EPNS2_10LibContextE) +STUB("iYmoOGRO+fc", compile) +STUB( + "iYoayZ6LRcY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE21intrusive_ptr_sub_refEPS9_) +STUB("iYqU5PBttKg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEC1Ev) STUB("iYrCszX93AM", sceVideoOutSysGetVblankStatus2) +STUB( + "iYuwAUVIvzI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEC2ERKS7_) +STUB( + "iYyR6dwyxig", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V312ErrorFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_5ErrorEEE) +STUB( + "iZ+sJFzLU7U", + _ZN7WebCore14LoggedInStatus6createERKNS_17RegistrableDomainERKN3WTF6StringENS0_19CredentialTokenTypeENS0_18AuthenticationTypeENS4_7SecondsE) +STUB( + "iZ-CwTcjJAQ", + _ZN3JSC13ConsoleClient32printConsoleMessageWithArgumentsENS_13MessageSourceENS_11MessageTypeENS_12MessageLevelEPNS_14JSGlobalObjectEON3WTF3RefIN9Inspector15ScriptArgumentsENS6_13DumbPtrTraitsIS9_EEEE) +STUB( + "iZ0oo1g65Ss", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEC1ERS8_) +STUB( + "iZ4MWmOC7VI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEeqERKS9_) +STUB( + "iZ4nxr1dswU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEC1EPNS2_10LibContextE) +STUB("iZ4xUUBLpdI", _ZN3sce7Toolkit2NP2V29Messaging12Notification18NewGameDataMessageD2Ev) +STUB("iZ5JYUTbjuA", _ZN7WebCore4Page20scrollingCoordinatorEv) STUB("iZ5it+3LGQM", sceKernelResumeProcess) +STUB( + "iZ6yjMT1YSM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB("iZCHNahj++4", _ZNSt7codecvtIcc9_MbstatetE5_InitERKSt8_Locinfo) +STUB("iZD+UvpXBfg", _ZN3WTF8dataFileEv) +STUB("iZFJYJJoZS8", __sys_opmc_disable) +STUB("iZFcLZVClyE", _ZN3WTF7CStringC2EPKcm) +STUB( + "iZN+bjOt0lE", + _ZN9Inspector22InspectorDebuggerAgent21breakpointActionProbeERN3JSC9ExecStateERKNS_22ScriptBreakpointActionEjjNS1_7JSValueE) +STUB("iZRERsL21CU", Java_java_lang_UNIXProcess_forkAndExec) +STUB("iZWhGZ4OHss", _ZN7WebCore20throwGetterTypeErrorERN3JSC9ExecStateERNS0_10ThrowScopeEPKcS6_) +STUB( + "iZZ+5E0G6sQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEE11release_refEv) +STUB("iZZ7g7Tge58", + _ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession17joinDisabledIsSetEv) +STUB( + "iZbb4eSlKWU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE5emptyEv) +STUB("iZcuO+Kb-4E", _ZN3WTF18charactersToDoubleEPKDsmPb) +STUB("iZeYfOxtMRg", _ZN3sce4Json5ValueC1ERKNS0_5ArrayE) +STUB("iZenpjL6Jc8", mono_aot_Sce_Vsh_GameListRetrieverWrapperunbox_trampoline_addresses) +STUB("iZfYbwM82bU", _ZN3WTF19tryFastZeroedMallocEm) +STUB( + "iZfmlVOblHY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEEC2Ev) +STUB( + "iZgOgYRnY2g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEEC2EPS6_PNS2_10LibContextE) +STUB( + "iZlA8N0uork", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEE7get_refEv) +STUB("iZmKEESJ3mw", _ZN3WTF13printInternalERNS_11PrintStreamEPKNS_10StringImplE) +STUB("iZrCfFRsE3Y", _ZTId) +STUB("iZv1dugN9C4", mono_get_uint16_class) +STUB( + "iZyh2ih7LJc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEC2EPKS8_) +STUB("ia4kPsIPeOI", mono_sharedmem_allocator_init) +STUB("iaGdIXzjp80", _ZN3sce7Toolkit2NP2V27Session7Request14SendInvitationD1Ev) STUB("iaH+Sxlw32k", sceNpTusGetDataAVUser) +STUB( + "iaNJRkleQmI", + _ZN7WebCore13TextIndicator15createWithRangeERKNS_5RangeEtNS_35TextIndicatorPresentationTransitionENS_9FloatSizeE) +STUB("iaOj+R21bm8", mono_aot_Mono_Securityjit_code_end) +STUB("iaPE7kTb08o", jpeg_idct_4x8) +STUB( + "iaPiWS3n6Bc", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB( + "iaQhPQ1ambg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE8capacityEv) +STUB( + "iaVKm5aGA3w", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("iaVe3TiMl7k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEE7get_refEv) +STUB( + "iaWBcuszO20", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE10setContextEPNS2_10LibContextE) +STUB("iaaAR8GaGaU", _ZN7WebCore18TextureMapperLayer15setContentsRectERKNS_9FloatRectE) +STUB("iaaNlbnWC5A", _ZN7WebCore17JSDOMRectReadOnly11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("iaavCoHr4mE", _ZN12video_parser5vpcom8datetime8DateTime11date_formatE) +STUB( + "iafO0w3uo7I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEE7add_refEv) +STUB( + "iag8cxWl7aU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE8capacityEv) STUB("iaiPHdqpfdk", sceVoiceChatRequestUpdatePlayerSessionVoiceChatChannelName) +STUB( + "iajWlUQ-KZw", + _ZN7WebCore10JSLocation14deletePropertyEPN3JSC6JSCellEPNS1_14JSGlobalObjectENS1_12PropertyNameERNS1_18DeletePropertySlotE) +STUB( + "ialRTEb1xRI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "iapnIPpJAQo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE6resizeEj) +STUB("iavlg3tmJsw", _ZN3sce2Np9CppWebApi6Common6VectorIjE6insertENS2_13ConstIteratorIjEERKjRS6_) STUB("iawJpYIQM7s", sceMusicPlayerServiceSetTrackList2) +STUB( + "iawlcLiYjLc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEneERKS9_) +STUB( + "ib+alHMUm3Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEEC1Ev) +STUB( + "ib-k5ZhTugQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEEaSERSA_) +STUB("ib0pFlpLlL0", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession21unsetJoinableUserTypeEv) +STUB("ib0ufVZWjjA", MvpHttpHeadCleanup) +STUB("ib10DrJG7Sk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEEC2EPS6_) +STUB("ib13dX0Y3q8", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13integer5IsSetEv) +STUB( + "ib28t1ZV6+I", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEptEv) +STUB("ib2kd7o1mlk", _ZN7WebCore20SVGPathStringBuilder9closePathEv) +STUB( + "ibGlOF1kChE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE5eraseENS2_8IteratorIS6_EERS9_) +STUB( + "ibHfOfPs5c8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEE7get_refEv) +STUB( + "ibINzSwqM4U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEEaSERSA_) +STUB("ibIbR6bhuFw", _ZN7WebCore12JSAudioTrack7destroyEPN3JSC6JSCellE) +STUB( + "ibPJ2K3j0as", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEEptEv) +STUB("ibPpWj9p9aE", + _ZN7WebCore28convertToIntegerEnforceRangeIsEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB("ibQMbb9-2Rg", rgctx_fetch_trampoline_mrgctx_81_p) +STUB( + "ibUyIuNQsHk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEE3getEv) STUB("ibXh+Mc4wbs", sceShellCoreUtilActivateTerm) STUB("ibYWv3khTDw", sceFaceAttribute) +STUB( + "ibaQhQADbCo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("ibc-MVbLpTU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Wordfilter16SanitizedCommentEED2Ev) +STUB( + "ibc0Oa-7Q88", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB("ibm1zWXIU-I", _ZNK7WebCore16ResourceResponse23platformCertificateInfoEv) +STUB( + "ibpllLDZHWc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE4sizeEv) +STUB("ibqF5xhmbmI", _ZNK7WebCore11MediaPlayer39contentMIMETypeWasInferredFromExtensionEv) +STUB("ibs6jIR0Bw0", __floatuntidf) +STUB("ibsmmc4e0HM", + _ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody8fromJsonERKNS_4Json5ValueE) +STUB("ibuqevEHYYQ", + _ZNK3JSC8Debugger36handleExceptionInBreakpointConditionEPNS_9ExecStateEPNS_9ExceptionE) +STUB("ibwu-672lHg", udata_getMemory) +STUB("ibyFt0bPyTk", _Tss_set) +STUB("ic-dHSEABEg", u_isUAlphabetic_67) +STUB( + "ic15Yiy+4dA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEEC2ERSA_) +STUB("ic9WjvkFGxA", + _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi24ParameterToReportResults13isInitializedEv) +STUB( + "ic9c+6fHIuM", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("icCnwM4vE+E", _ZN9Inspector21InjectedScriptManagernwEm10NotNullTagPv) +STUB("icFsnbfG0UI", utrie2_internalU8NextIndex_67) +STUB( + "icLpd+rnNGw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEC2EPNS2_10LibContextE) +STUB("icNdSConcbs", _ZN7WebCore4Page13setIsInWindowEb) +STUB( + "icQGQQbEYH0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEC1Ev) +STUB( + "icRLfcfo7jI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE21intrusive_ptr_sub_refEPS9_) +STUB("icUTCdU53Og", _ZN3IPC15ArgumentDecoder6decodeERi) +STUB("icUs3ipN9H4", _ZNK3sce2np14JsonObjectImpl10allocFieldEPKc) +STUB( + "icVsKTP9ZwA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEppEi) +STUB( + "icfKQzmJv78", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "icgcGJwEoQA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEC2Ev) +STUB("icjSnOz1MYY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE5beginEv) +STUB("ickyvjtMLm0", _ZTSPb) +STUB( + "icpL6nhFzcg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEC1EPNS2_10LibContextE) +STUB("icvKV1ws-JI", mono_lock_free_allocator_init_allocator) +STUB("icwhmckYj8E", _ZN7WebCore6RegionD1Ev) STUB("icx5rQ00bpY", sceDtcpIpStopSeq) +STUB("icxjmZetYeI", uprv_convertToPosix_67) +STUB( + "icxt5mWWz98", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeAccountId2OnlineIdBatchC1Ev) +STUB("id-gaLfaB9w", _ZN3sce2Np9CppWebApi6Common6VectorIiE5beginEv) STUB("id0JiM1+i5I", scePerfTraceAmmCreate) +STUB( + "id7Ayv6BSZ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("idDB8H4i2ko", _ZNK3sce2Np9CppWebApi7Matches2V113RemovedPlayer11reasonIsSetEv) +STUB("idKmQNHkLSs", _ZNK7WebCore18PlatformTimeRanges6lengthEv) +STUB("idVBrdQRrOw", _ZNK3sce2Np9CppWebApi7Matches2V119RequestMatchResults10getVersionEv) +STUB("idWUOMHlXf0", glViewport) +STUB("idcnNa0WFog", _ZThn8_N3sce2np13JsonDocParser12onArrayValueEjjiNS0_10JsonParser9ValueTypeEPKc) +STUB("idep6z5YE2o", + _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product14setContentTypeERKNS3_11ContentTypeE) +STUB("idhlHm0CZt4", u_releaseDefaultConverter_67) +STUB("idkI+fFFntA", _ZNK7WebCore8Document4pageEv) STUB("idlaArvdXEs", sceAgcAcbWaitOnAddressGetSize) +STUB("idoWTyyaG20", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEC1Ev) STUB("idrr8+P+8UU", sceCesGbToUtf16le) +STUB("idsapmYZ49w", _ZTSSt10ctype_base) +STUB( + "idteU1F4RSQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEppEv) STUB("idvMaIu5H+k", sceImeVshSetParam) +STUB( + "idwqiN9H5Y4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEEC2ERKSA_) +STUB( + "ie-FOUZf7Fw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEC2ERS7_) STUB("ie-UuLGbYXo", sceAmprAmmCommandBufferModifyMtypeProtectWithGpuMaskId) STUB("ie2v2DfofTs", sceDbgVLoggingHandler) STUB("ie4A5lHoO8U", sceMbusDebugStartApplication2) +STUB( + "ie4Y10mau2k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEppEi) STUB("ie7qhZ4X0Cc", sceSaveDataCommit) +STUB("ie9nlBaM-WI", _ZN3sce7Toolkit2NP2V210Tournament22TeamVsTeamMatchDetails8deepCopyERKS4_) +STUB( + "ieAF1lk+pjs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEppEi) STUB("ieCNrVrzKd4", sceImeSetText) +STUB("ieEQWlOYTg8", _ZNK3sce2Np9CppWebApi14SessionManager2V114Representative11getPlatformEv) +STUB("ieHw9JRbKV0", uenum_openUCharStringsEnumeration) +STUB( + "ieJLmXr+i-Y", + _ZN3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallback10initializeEPNS1_6Common10LibContextEPKcSA_SA_) +STUB("ieNeByYxFgA", _ZGVNSt14_Error_objectsIiE16_Iostream_objectE) +STUB("ieOpq0KLu40", _ZNK7WebCore15VisiblePosition5rightEbPb) STUB("ieP6jP138Qo", sceSaveDataIsMounted) STUB("ieROYX4vspk", sceNpLookupNetConvertNpIdToJid) +STUB( + "ieV2FDHYuOs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEE11get_deleterEv) +STUB( + "ieV6PhqZmDM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("ieWsT1QNJUQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession24disableSystemUiMenuIsSetEv) +STUB( + "ieYA8wr2oQU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEC1Ev) +STUB("iehA+3KavUI", _ZZSt9MakefacetISt8messagesIcESt8_LocinfoERT_T0_E3buf) +STUB("iehMlfnzitM", WKStringIsEqualToUTF8CString) +STUB( + "ieink3I5tDg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEEC2ERKSA_) +STUB("iemhDr7INPw", uset_add_67) +STUB( + "ieuVE0GAaEo", + _ZN7WebCore12ChromeClient19handleAutoplayEventENS_13AutoplayEventEN3WTF9OptionSetINS_18AutoplayEventFlagsEEE) +STUB( + "ieupD6JPmAw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEEC1ERSA_) +STUB( + "if+uHJPCunI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEED2Ev) STUB("if-BeWwY0aU", sceUserServiceGetNpOnlineId) +STUB("if20lYbjKZ8", Java_com_sony_bdjstack_javax_media_controls_VideoDecoder_getPosition) +STUB("if3Fqudehy0", jpeg_std_message_table) +STUB("if3saS+8mSc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEEC2ERS7_) +STUB("if5ULtFmeIA", _ZN7WebCore24CoordinatedGraphicsLayer18setShowDebugBorderEb) +STUB( + "if5sYLTgYfA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEneERKS9_) +STUB( + "if8zyIkmvR4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("ifAvfzHTDe8", JVM_ConstantPoolGetClassAt) +STUB("ifCCmQZ87f8", _ZN9Inspector28InspectorScriptProfilerAgent29stopSamplingWhenDisconnectingEv) +STUB( + "ifK4lLJA5Bg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEED2Ev) +STUB("ifN6TwFG-z4", _ZN3WTF10StringImpl19createUninitializedEjRPDs) +STUB("ifOC0Tz3yMQ", HttpCacheWrapperFree) +STUB( + "ifRVifgm3Vk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEC1EPS6_PNS2_10LibContextE) +STUB( + "ifXXtEw6p10", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE10setContextEPNS2_10LibContextE) +STUB("ifZEieMZ7QM", _ZN3JSC12StackVisitorC2EPNS_9CallFrameERNS_2VME) +STUB("ifcK41yodsA", call_filter) +STUB( + "ifhI9EfWDOU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEC1Ev) +STUB( + "ifhWh4U0oFc", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("ifhr38MXPj8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE5emptyEv) +STUB("ifjgccZulhg", _ZN7WebCore22DefaultFilterOperationD2Ev) +STUB( + "ifpLCjhh+As", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEEptEv) +STUB("ifqJb-V1QZw", _ZN3sce2np6Handle4InitEv) +STUB("ig-ACL9RLUU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEEdeEv) +STUB( + "ig0sU4CUR2U", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE28getResponseInformationOptionEv) STUB("ig1ocbR7Ptw", sceRemoteplayImeClose) +STUB("ig1zAhp1Kic", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats6toJsonERNS_4Json5ValueEb) +STUB("ig4VDIRc21Q", _ZNSt7collateIwED0Ev) +STUB("ig69Abe2tZw", _ZN3sce7Toolkit2NP2V211SharedMedia7Request14GetScreenshotsD1Ev) +STUB( + "ig6SRr1GCU4", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERm) +STUB( + "ig7SXo5fHrA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEC2EPS8_) +STUB("igDJIsdI3AA", _ZNK7WebCore19ResourceRequestBase15httpContentTypeEv) +STUB( + "igIMktwPulU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEC1Ev) +STUB( + "igKsFwp7M1w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEE5resetEPS9_) +STUB( + "igLY5HmW6qk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE8pushBackERKS8_) +STUB("igMefp4SAv0", get_authinfo) +STUB("igW6sJOx8DI", monoeg_g_ptr_array_new) +STUB("igWZiDXnBC0", _ZNSt8ios_base7failureC1ERKS0_) +STUB( + "igWl0fjowO4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("igYBTKdzQ5c", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEEptEv) +STUB("igYCKlMX2RI", _ZN9Inspector18InjectedScriptHostD2Ev) +STUB( + "igZmY9t9lu4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEC2EPS6_PNS2_10LibContextE) +STUB("igb+D4BGhaQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEEplEm) +STUB("ighQjrNii7s", _ZN3JSC7Symbols26isArrayIteratorPrivateNameE) +STUB("igpSrATXmAY", glCompressedTexSubImage3D) +STUB( + "igqrKOAZprg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB( + "igs871aV3H0", + _ZN3sce2Np9CppWebApi7Matches2V131UpdateMatchDetailRequestFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_24UpdateMatchDetailRequestEEE) +STUB("igtHVyxqQQc", _ZN3JSC16JSSloppyFunction6s_infoE) +STUB("ih4CD9-gghM", ftruncate) +STUB( + "ih6iWyGJ2bM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE5emptyEv) +STUB("ih8bKMFzrMU", uprv_fmod_67) +STUB("ihAxteheoME", + _ZN7WebCore24RotateTransformOperation6createEdNS_18TransformOperation13OperationTypeE) +STUB("ihBgYrvugv8", Java_com_sony_bdjstack_org_dvb_dsmcc_FileCacheManager_load) +STUB("ihDFQEO2HKs", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEED1Ev) +STUB("ihI86U50NSU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE3endEv) +STUB("ihIHD8BTNxI", FT_Set_Var_Blend_Coordinates) +STUB( + "ihIzDcWIRqU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEdeEv) +STUB("ihKk3eXFpV0", udat_open_59) STUB("ihNT-uuEAr4", sceVdecswGetAvcPictureInfo) +STUB("ihPWeLj6kkU", _ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody12playersIsSetEv) +STUB( + "ihPnHSNiSwQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE7reserveEi) +STUB( + "ihUc1co7Ia8", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE11hasResponseEv) +STUB("iha6cSNabDU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEEC2EPKS6_) STUB("ihf-xuMiekk", sceKernelSetSuspendState) +STUB("ihfGsjLjmOM", _Thrd_start_with_name) +STUB("ihixDff5dEM", utrie_open_67) +STUB("ihjPFw3x2VA", WKPreferencesSetHTTPEquivEnabled) +STUB("ihnrzQAz4U4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEC2ERS7_) +STUB( + "ihp2jCTTegg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "ihsscRmaDac", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser13isInitializedEv) +STUB("ihvCY98QfUY", _ZN3sce7Toolkit2NP9Utilities6FutureIbED2Ev) +STUB( + "ihxlct0CP0M", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE5beginEv) STUB("ihxrbsoSKWc", sceGnmBeginWorkload) +STUB("ii-LNk-LoPI", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_28NpSessionDetailedInformationEED2Ev) +STUB("ii02cujq7HI", _ZN7WebCore8SVGNames6toAttrE) +STUB("ii895dyBjMo", cairo_ft_font_options_substitute) +STUB("iiCJFOgCMk4", _ZN7WebCore5FrameD2Ev) +STUB("iiLb8yqVTS8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEED2Ev) +STUB("iiNSzVaJBnk", mono_aot_Sce_Vsh_GameListRetrieverWrappermethod_addresses) +STUB("iiQUA7ftTA4", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEED1Ev) +STUB("iiQjzvfWDq0", dup) +STUB( + "iiYZCXOo7Go", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "iiYwn4oot+w", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("iic-qqKPK-g", uenum_openCharStringsEnumeration_67) +STUB( + "iicKnp+pPu4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEE3getEv) +STUB("iicmjSXPxa8", __asan_stack_free_3) +STUB("iidBuatjsGc", _ZN3sce3pss5orbis5video14VideoPlayerVcs18VideoCoreSetVolumeEi) STUB("iidMRmA0MEo", sceMbusDebugGetControlStatus) +STUB("iidogsvYsaU", u_charType_59) +STUB( + "iifAV-TtLyc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEE7get_refEv) +STUB("iiikn8yCV4I", _ZN7WebCore16NetworkSendQueueD2Ev) +STUB( + "iimFMvWti0M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEE11release_refEv) +STUB("iimyKR+9jaE", _ZN3sce3pss5orbis5video15VideoPlayerBase8GetSpeedEv) +STUB("iioP3xFfzJ8", WKHitTestResultIsContentEditable) +STUB("iipSVC14DnY", ucnv_toUnicode_67) +STUB( + "iiqR-H-DYrM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEC1EPNS2_10LibContextE) +STUB("iiqupc3dEOQ", uscript_hasScript_67) +STUB( + "iiw-ejGFfDM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "iiwku1W3HRA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE3endEv) +STUB( + "iiz67QG7uhs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEEaSERKSA_) +STUB( + "iizyTS+hYFk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEC2EPKS9_) +STUB("ij+fJORglqw", incoming_area) +STUB("ij-yZhH9YjY", _ZNKSt7_MpunctIwE14do_frac_digitsEv) +STUB("ij4eaVVoTBU", rgctx_fetch_trampoline_mrgctx_24) +STUB("ij53q1AqKPc", _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead12setSessionIdEPKc) STUB("ij5A1fmeLvY", sceNpUniversalDataSystemIntRecordArraySetBinary) +STUB("ij6XkA3OrIA", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request14PostPlayedWithC2Ev) +STUB("ij8RtmPx6BU", _ZN3sce7Toolkit2NP2V212EventsClient6EventsC1ERKS4_) +STUB("ijAqq39g4dI", _Puttxt) +STUB("ijGieVme+iM", mono_aot_Sce_Vsh_WebViewDialogunwind_info) +STUB( + "ijHx7ATLDrw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEED1Ev) +STUB( + "ijNNMedTXvQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEE3getEv) +STUB("ijPJrSMtqIY", WKBundlePageSetPageZoomFactor) +STUB( + "ijPOQZNWbuI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEC1Ev) +STUB("ijRkiQ+lRlM", nn_poll) +STUB("ijTy57nFYLw", _ZNK9Inspector14ConsoleMessage12globalObjectEv) +STUB("ijc7yCXzXsc", _Xp_addh) +STUB( + "ijdCo96sLds", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEEC1ERKSA_) +STUB("ijeZL5D5plo", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIiEppEi) +STUB( + "ijijXYpJzC8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("ijkui5Woco4", _ZN7WebCore6Path2DD2Ev) +STUB("ijtKzWkV5h0", audiodeccpuinternal_core_ops_m4aac2) STUB("ijvRMHfwwjc", sceAmprAmmCommandBufferRemap) +STUB("ik++OlmjX74", mono_gc_finalize_notify) STUB("ik0kGUB7Ukw", sceAutoMounterClientUnregisterCallback) +STUB( + "ik28OsjCdr8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEdeEv) +STUB("ik6pOKAftzY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEC2Ev) +STUB("ik7nXsVUdMw", hb_font_funcs_set_variation_glyph_func) STUB("ik86e1xLpoo", sceNpManagerIntSetCommerceDialogPlusResult) +STUB( + "ik99FO9DvAI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE5beginEv) +STUB("ikBt0lqkxPc", _ZNKSt7codecvtIcc9_MbstatetE6lengthERS0_PKcS4_m) +STUB( + "ikE-Wj7+afo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEEC2ERSA_) +STUB("ikERqFYMBAk", _ItL_pS0) +STUB("ikElnlIFyWs", u_strncmpCodePointOrder) +STUB("ikFI73f3hP4", _ZN3sce2np14JsonDocBuilderC1ERKNS0_9JsonValueE) +STUB("ikHEfVYiB5g", _ZN9Inspector14InspectorAgent25evaluateForTestInFrontendERKN3WTF6StringE) +STUB("ikHTMeh60B0", _FXp_setn) +STUB("ikMTrjrw2+s", mono_aot_Sce_Vsh_RequestShareStorageWrapperplt_end) +STUB("ikNH4c6kdMw", unorm2_getNFCInstance) +STUB("ikTKkQLJH-k", _ZN3sce7Toolkit2NP2V26Trophy16TrophyPackTrophy5resetEv) +STUB("ikTNlkIaVhU", _ZN9Inspector28InspectorScriptProfilerAgentD0Ev) +STUB( + "ikYjcWlOg4k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEC1Ev) +STUB( + "ikZ7zqWW6HY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE10setContextEPNS2_10LibContextE) +STUB("ikZjNtJlWTs", WKPageSetPageLength) +STUB("ikcO4yJFPy0", _ZNK7WebCore16ResourceResponse13cfURLResponseEv) +STUB("ikjnoeemspQ", _ZNSs6assignEmc) STUB("ikkTGg4Cshw", sceKernelGetCallRecord) STUB("ikmkeez8ATk", sceShellCoreUtilEndUmmDictation) +STUB("ikoP5d39zho", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEEC2EPKS6_) +STUB("ikpz5Fi41gk", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEEaSERKS7_) +STUB("ikqnnysGCoU", mono_poll) STUB("iktpef6dl3k", scePlayReadyMemGetStats) +STUB( + "ikz7zE2Iqo4", + _ZN7WebCore22EmptyFrameLoaderClient21dispatchDidCommitLoadESt8optionalINS_18HasInsecureContentEE) +STUB("ikzoIQNzdmQ", _ZN3sce2np8JsonBoolD0Ev) +STUB("ikzt3yp+3Bs", _ZN7WebCore9HTMLNames11loopendAttrE) +STUB("il+fPwOykT8", mono_aot_Sce_Vsh_Sl2_Sl2Deliverunbox_trampolines_end) STUB("il03nluKfMk", sceKernelRaiseException) +STUB("il4E3AEU2NA", _ZN3sce2Np9CppWebApi6Common13ConstIteratorImEC1EPKm) +STUB( + "il4rkcW6gco", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEmmEv) +STUB("il8-JtRpqUk", WKInspectorConnect) +STUB("il8akE0xBgM", JVM_SetNativeThreadName) +STUB( + "ilBRhB57twQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEED2Ev) +STUB("ilCtzC1qS6M", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setPipSubtitleMode) +STUB("ilHmupkeWMQ", _ZN7WebCore9HTMLNames11srclangAttrE) +STUB("ilM1cSlkdrg", _ZNK7WebCore4Page19disabledAdaptationsEv) +STUB("ilZYBLM0oXw", _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_6Path2DE) +STUB("ilbVirqwQrY", _ZN7WebCore21DiagnosticLoggingKeys13webGLStateKeyEv) +STUB("ilca+Zkad0o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEE3getEv) +STUB( + "ildIWoSqX5Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("illVlCHMMQk", _ZN22MmsMdCommonFsOperation17readFileWithCacheEjPv) +STUB( + "ilo8NwzehCQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "ilr+TFplnv4", + _ZN7WebCore11DisplayList14DrawTiledImageC1ERNS_5ImageERKNS_9FloatRectERKNS_10FloatPointERKNS_9FloatSizeESC_RKNS_20ImagePaintingOptionsE) +STUB("ilssCgIV3xE", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18GameCustomDataItemEE7addressERKS3_) +STUB("ilvKlfjyUHo", _ZN9Inspector21InspectorRuntimeAgentD0Ev) STUB("ilwLM4zOmu4", sceNpGetParentalControlInfo) +STUB("ilz1cNbvqMY", _ZN8meta_gen14ImageRetriever15CreateThumbnailEPKcPcRf) +STUB( + "im+R2fF8Bh0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEdeEv) STUB("im2ZuItabu4", sceGnmDrawInitToDefaultContextState400) +STUB("im3+ZGv0fKQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEaSERS7_) +STUB("im3Ukk9Laoc", mono_class_get_image) +STUB("im5DNzT35to", _ZN9Inspector34ApplicationCacheFrontendDispatcherdaEPv) +STUB( + "imDb66021ZE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEE11get_deleterEv) +STUB("imHJl7ByHlo", _ZN3JSC8JSObject6toThisEPNS_6JSCellEPNS_9ExecStateENS_8ECMAModeE) +STUB("imHa3TLlTO8", _ZNK7WebCore19ProtectionSpaceBase4portEv) +STUB("imTc7jKwrL8", _ZNK7WebCore8Document28hasEvaluatedUserAgentScriptsEv) +STUB( + "imU9QB6LmXw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("imYE7u89P7k", u_locbund_close_67) +STUB( + "imYRy1ayWs4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE5beginEv) STUB("imZUVWK3ngM", scePsmThreadCallback) +STUB( + "imas+NydsEw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEC1EPS6_PNS2_10LibContextE) +STUB("imlFraoWzA0", _ZN3sce7Toolkit2NP9Interface12abortRequestERKj) STUB("imlxgVJc+lE", scePerfPmcL3SetCounter) +STUB( + "imo3tv8Ly1Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEE3getEv) STUB("impLvKHbKQs", sceClPthreadMutexattrInit) +STUB("imqLd1EUCZ4", + _ZN7WebCore32ScrollingStateFrameScrollingNode14setHeaderLayerERKNS_19LayerRepresentationE) +STUB("imqT45eFHD4", _ZNK3sce3Xml3Dom4Node14getNextSiblingEv) +STUB( + "ims9o7xTW4A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEC2EPNS2_10LibContextE) +STUB("imtNuwHQ32g", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_16SessionAttributeEED1Ev) STUB("imxVx8lm+KM", sceFontGetHorizontalLayout) STUB("in19gH7G040", sceNpCalloutStopOnCtx) +STUB("in6PFT5baTk", _ZN3sce2np10JsonNumberD0Ev) +STUB( + "in8cq2B5bHA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEptEv) +STUB( + "inCE6HVYyBk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEC2Ev) +STUB( + "inDDXIz+tlE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("inFEmGAXiFY", _ZN3sce7Toolkit2NP2V27Ranking7Request15GetRangeOfRanks10FIRST_RANKE) +STUB( + "inI0znKnQVw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEppEi) +STUB( + "inKCrt-K5X0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEC2EPNS2_10LibContextE) +STUB("inUgNhPrnbQ", ufieldpositer_close_59) +STUB("inWumYPZgtw", cairo_image_surface_get_width) +STUB( + "inYUzxi3gP4", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13integer9IsSetEv) +STUB("inc-kbPP4jo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEaSERS7_) +STUB("indfCXgY6JY", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEEC1Ev) +STUB("ingZw6BfAtI", + _ZNK3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform12getJoinStateEv) STUB("inhtz+Vuc1k", scePlayReadyInitializeInitParams) +STUB( + "inmtE+1X+Q4", + _ZN7WebCore8toStringERKN3WTF6VectorINS_11ProxyServerELm0ENS0_15CrashOnOverflowELm16ENS0_10FastMallocEEE) +STUB("inwDBwEvw18", xtime_get) +STUB("inz7o6ReJxU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredTeamsEE5resetEv) +STUB( + "io-+Ahbd3dA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEEptEv) +STUB("io1t7iLOMs8", _ZN3sce7Toolkit2NP2V26Trophy7Request18GetTrophyPackGroup10BASE_GROUPE) +STUB( + "io3bPJnU8No", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEE3getEv) +STUB("io66iqcT950", mono_aot_System_ServiceModel_Webunbox_trampoline_addresses) +STUB("io8Sy3FgnqE", MvpHttpSetRecvTimeout) +STUB("ioA19fwdJlg", _ZN3JSC4Heap4sizeEv) +STUB( + "ioA46oXO-Tc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEEC2EPKS6_) +STUB("ioVn-Xe8050", FT_List_Remove) +STUB("ioaqRTOlpys", _ZN3WTF29cryptographicallyRandomValuesEPvm) +STUB("iobMkN9OlDg", ures_findSubResource) +STUB("iobQKp6kb8o", _ZN3sce2Np9CppWebApi6Common6VectorIlE5eraseENS2_8IteratorIlEERS6_) +STUB("iodpFqBdc+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEE11get_deleterEv) STUB("iofRyXv0wqI", sceMusicCoreServerSetLaunchUser) STUB("iorzW0pKOiA", sceGameLiveStreamingScreenOpenSeparateMode) +STUB("iot3o+WKLVI", WKPageSetCustomBackingScaleFactor) +STUB("iotdMaGY+KA", _ZN7WebCore14ReadableStream11isDisturbedERN3JSC9ExecStateENS1_7JSValueE) +STUB("iouk04mK4UY", _ZN23sceMetadataReaderWriter13KeyValueArray8allocateEPFPvmEPFvS1_EPi) +STUB("iovLyay-VDk", _ZN7WebCore11MediaPlayer25seekableTimeRangesChangedEv) +STUB( + "ioxqaxrlAkI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEE11get_deleterEv) +STUB("ip+ObaxsB3w", WKUserScriptCreateWithSource) +STUB("ip5jdmmseLE", gsharedvt_trampoline_p) +STUB( + "ipA8aeZtCYE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEEC1ERKSA_) +STUB( + "ipBVloRKSjg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE8copyFromERKS9_) +STUB("ipDQvhXBhuI", _ZNK3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayer14getCustomData1Ev) +STUB("ipLIammTj2Q", CA_MGMT_freeKeyBlob) +STUB( + "ipW0H4AsCok", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE5eraseENS2_13ConstIteratorIS9_EERSC_) +STUB("ipZRT3HMuJA", _ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequest9setZoneIdEPKc) +STUB("ipkhFNyooqg", _ZNK9Inspector15ScriptArguments11globalStateEv) +STUB( + "ipqXAzxPxgs", + _ZNK3sce2Np9CppWebApi14SessionManager2V129GetPlayerSessionsResponseBody6toJsonERNS_4Json5ValueEb) STUB("ipqlpcIqRsQ", sceNetCtlRegisterCallbackV6IpcInt) STUB("iprCTXPVWMI", sceNgs2ParseWaveformFile) +STUB( + "iprX6GA66yM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEEdeEv) +STUB("ipvj6WHIleA", monoeg_g_str_equal) +STUB( + "iq2F-QJJgwc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEEC1EPS8_PNS2_10LibContextE) +STUB("iq4DFmrZRs0", _ZN7WebCore9HTMLNames9alinkAttrE) +STUB("iq7Iszogzis", _ZN7WebCore17PageConsoleClient4muteEv) +STUB( + "iq7r-NF8J78", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEplEm) +STUB( + "iqAE1zUr88A", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEdeEv) +STUB( + "iqByO-kQRtE", + _ZN7WebCore15JSDOMWindowBase20queueTaskToEventLoopERN3JSC14JSGlobalObjectEON3WTF3RefINS1_9MicrotaskENS4_13DumbPtrTraitsIS6_EEEE) +STUB("iqCnLM9ZBGM", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V127ConnectionQualityProperties11getWirelessEv) +STUB( + "iqDGxH4bjrk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("iqDzICiCTY0", g_list_copy) +STUB("iqGl4S9Lo3U", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEE7get_refEv) +STUB("iqJYGVNed1E", _ZN15AbstractStorage10YoutubeAPID1Ev) +STUB( + "iqNHrhb0t9A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEmmEi) +STUB( + "iqNbO2Nuyec", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData22getxPsnAtomicOperationEv) +STUB( + "iqNk333Emng", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE8capacityEv) STUB("iqQQW2cBmWU", sceVoiceQoSCreateRemoteEndpoint) +STUB("iqQvMQDRznY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredUsersEE3getEv) +STUB("iqS3bVfzFk4", _ZNK7WebCore6Editor17firstRectForRangeERKNS_11SimpleRangeE) +STUB( + "iqTuJKBnCMs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEC1ERS7_) +STUB("iqXnmg8XS0k", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi21ParameterToLeaveMatch10setmatchIdEPKc) STUB("iqYJfriYQk0", sceDataTransferTargetAbortReboot) +STUB("iqYWUXf6NN4", Java_java_net_PlainDatagramSocketImpl_peekData) STUB("iqYfxC12sak", sceNpTrophyConfigHasGroupFeature) +STUB("iqbJFecSCAw", + _ZNK3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession23getPlayerJoinableStatusEv) +STUB("iqduChZIy8w", mono_aot_Sce_Vsh_AutoMounterWrapperplt_end) +STUB("iqeXTpstIeg", WKInspectorIsProfilingPage) +STUB( + "iqgW43LmGa0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "iqjoIqxgTTU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEmmEi) +STUB( + "iqm6sy3xsoo", + _ZN3sce2Np9CppWebApi14SessionManager2V159PostPlayerSessionsSessionIdSessionMessageRequestBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_23MemberWithMultiPlatformEEEEEPKcPNS9_INS3_52PostPlayerSessionsSessionIdSessionMessageRequestBodyEEE) +STUB( + "iquUhaUH37E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEmmEv) +STUB("iqzAnluKpSc", _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody14setRulesetNameEPKc) +STUB("ir+sFk4slGE", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification14NewRoomMessageEEC1Ev) +STUB( + "ir--imY-L8M", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE8capacityEv) STUB("ir2CzSs9K-g", sceNpMatching2SetLobbyMemberDataInternal) STUB("ir4B5HLcYF0", scePerfPmcL2iSelectEvent) +STUB("ir5wHm8t4yQ", _ZN3sce7Toolkit2NP2V27Session7Request4JoinD1Ev) +STUB( + "ir7umO3uRk8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "ir8xkya5x4Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEED2Ev) +STUB( + "irAASOS718s", + _ZN9Inspector21InspectorRuntimeAgent10saveResultERN3WTF6StringERKNS1_8JSONImpl6ObjectEPKiRNS1_8OptionalIiEE) STUB("irD6EyOPBZE", sceVencCreateEncoder) +STUB("irDB3eC4LOI", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessionsC2ERS5_) +STUB("irDPR3i-TRU", _ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody13unsetLocationEv) +STUB("irG0C95la6g", X509_NAME_get_index_by_NID) +STUB("irGidH1uj1g", SSL_get_fd) +STUB("irGo1yaJ-vM", _ZNSt7collateIwE2idE) +STUB("irHs+9jhAtM", _ZN7WebCore22CSSAnimationController16resumeAnimationsEv) +STUB("irKVfUXZHw4", _ZN7WebCore9HTMLNames13oninvalidAttrE) +STUB( + "irMIdh1XZF4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEixEm) +STUB("irS8Lu3UfDg", _ZN3sce3pss5orbis5video14VideoPlayerVcs17VideoCoreGetSpeedEv) STUB("irV8voIAHDw", sceNetCtlGetScanInfoForSsidListScanIpcInt) +STUB("irYPbopbako", mono_type_is_pointer) +STUB("iraaucgzhMA", _ZN7WebCore20LowPowerModeNotifierC1EON3WTF8FunctionIFvbEEE) +STUB("irbJ-9atSSU", mono_aot_System_Reactive_Corejit_got) +STUB("irbymj7rYDU", _ZNK7WebCore10FloatPoint18constrainedBetweenERKS0_S2_) +STUB("irex3q-O6po", _ZN3sce2np14JsonDocBuilder5BuildEPcmPm) +STUB("irgXGd58omE", _ZN7WebCore13JSHTMLElementD1Ev) +STUB("irkby3g5FXk", monoeg_g_list_length) +STUB("irlyiBZcAGc", _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_8LocationE) +STUB("iroiq794arE", mono_lock_free_queue_node_init) +STUB( + "irrkrbNRvdg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB( + "irsRThyFXvE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEED2Ev) +STUB("irtH7fnwebM", _ZN7WebCore9HTMLNames15ontouchmoveAttrE) +STUB("iruPsrXCN7U", FT_Stream_Open) +STUB("irw8X-2YCWk", _ZN3sce2np14JsonObjectImpl5ClearEv) +STUB( + "is+ea8an878", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEC2EPNS2_10LibContextE) STUB("is-XQhYPRaQ", sceKernelTriggerEport) +STUB("is2FV8Y-bMc", WKPageGetScaleFactor) +STUB( + "is4JJuPclDk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("is4RCW5UGGA", mono_build_date) +STUB("isASk6cqZ6w", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V224TestForProfanityResponse10getMessageEv) +STUB("isCrVb3LudE", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_15RankInformationEE3getEv) +STUB( + "isDhrNMt1Bk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEED1Ev) +STUB( + "isFUomZ-gs8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "isGRBBBwTwU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEC2Ev) +STUB("isGVbUCUx0A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEED1Ev) +STUB( + "isJzpBF4Xyk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEC2EPS8_) +STUB("isKya9LgL2U", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEEC1ERKS6_) +STUB( + "isMV1jXJXTI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEC2EPS8_) +STUB("isNeGe11oOo", _ZN3sce7Toolkit2NP2V28Matching12Notification14NewRoomMessage16MESSAGE_MAX_SIZEE) STUB("isNn0YyU83c", sceNpManagerIntCheckGameNpAvailabilityA) +STUB( + "isTNIwglK1A", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEptEv) +STUB( + "isUKv5DPhGw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE3endEv) +STUB( + "isXCjS6mTI8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE8copyFromERKS9_) +STUB("isYAJ-sJJ4E", WKPreferencesGetCrossOriginResourcePolicyEnabled) +STUB("ischP2z62kA", _ZNK7WebCore23ScaleTransformOperation10isIdentityEv) +STUB("isdbBZoLdo4", _ZN7WebCore4Page31setRemoteInspectionNameOverrideERKN3WTF6StringE) +STUB( + "isf6HYHQu84", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEED2Ev) +STUB("islhay8zGWo", _LDsign) +STUB( + "islx-FRa7dI", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V116BandwidthFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_9BandwidthEEE) +STUB("isnD1tkLlTA", _ZSt9use_facetISt8messagesIcEERKT_RKSt6locale) +STUB( + "isnOhnsXYo4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEC2ERKS7_) +STUB("isoFwd2uBWI", Java_org_blurayx_s3d_ui_DirectDrawS3D_drawStereoscopic0) STUB("isruqthpYcw", sceSharePlayInitialize) +STUB( + "iswFqihSWTc", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot9unsetsortEv) +STUB( + "isyYiAjUyF0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEC1Ev) +STUB("it-sj4lhYhU", + _ZN7WebCore22CSSAnimationController28suspendAnimationsForDocumentEPNS_8DocumentE) +STUB("it0E2JHZENE", mono_aot_Sce_Vsh_ShellCoreUtilWrapperunbox_trampolines_end) +STUB( + "it2HB6Gp-Fo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEED1Ev) +STUB( + "it2X59IDj80", + _ZN7WebCore13PathUtilities27pathsWithShrinkWrappedRectsERKN3WTF6VectorINS_9FloatRectELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEEf) +STUB("it6DDrqKGvo", _ZNSt12system_errorD2Ev) +STUB("it74w78c9NI", _ZN7WebCore19AccessibilityObject13isARIAControlENS_17AccessibilityRoleE) +STUB( + "it90JR6e378", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("itBuc3IIDaY", _ZN3sce2np4UserD2Ev) +STUB("itDGbOXx5-U", fuse_unmount_compat22) +STUB( + "itFjjauNd1A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEEC1ERSA_) +STUB("itI9vxmWDCw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE5beginEv) +STUB( + "itM-1SoGm-U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEaSERKS7_) +STUB("itO5Fz0WM-M", _ZN3sce7Toolkit2NP2V27Ranking7Request11GetGameData8MIN_PCIDE) +STUB("itPYH48kadc", umsg_getLocale_67) +STUB("itQ5jyIHDX0", _ZN3sce7Toolkit2NP2V28Presence12Notification14PresenceUpdateC1Ev) +STUB("itQXsoiYHtI", _ZN3sce2np10Cancelable15CheckCancelImplEPKciS3_) +STUB("itShJyJgqGU", _ZN3sce7Toolkit2NP2V29Messaging25GameDataMessageAttachmentC2ERKS4_) STUB("itZ46iH14Vs", sceSaveDataGetAutoUploadConditions) +STUB( + "itiGycnEkDY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEC1EPS8_) +STUB("itioQwmJGys", cpuset) STUB("itlWFWV3Tzc", sceScreenShotSetDrcParam) +STUB("itmWuKlMzFI", UI_set_result) +STUB("itqj2YmuAa8", _ZN3sce4Json6Parser5parseERNS0_5ValueEPFiRcPvES5_) +STUB("itsatXayviY", WKPreferencesSetCursiveFontFamily) +STUB( + "ittlzmzFS6E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEED1Ev) STUB("itv-U5mFPso", pthread_mutex_getprioceiling) +STUB( + "iu-TVztQIys", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "iu2D0k7hojY", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V138SetMultiVariablesRequestBody_variables9setSlotIdERKi) +STUB("iu4kKrtOinI", Java_java_awt_GnmGraphicsDevice_setResolution) +STUB( + "iuAeOx1Z1Ac", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEEC2ERKSA_) +STUB("iuE2B9qKEcc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEE7add_refEv) +STUB("iuLoJwrPubs", _ZN3sce7Toolkit2NP2V27Session7Request6SearchD1Ev) +STUB("iuNtBIixjic", + _ZN3sce2Np9CppWebApi14SessionManager2V120ErrorResponseFactory7destroyEPNS3_13ErrorResponseE) +STUB( + "iuR85wzHxeI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEptEv) +STUB("iuSBiGPYMI0", _ZN7WebCore24CoordinatedGraphicsLayer10setOpacityEf) +STUB("iulVS7DGVeg", _ZN3WTF15ThreadCondition9timedWaitERNS_5MutexENS_8WallTimeE) +STUB("iuu9xmvipyE", _ZN3JSC8Profiler8Database8logEventEPNS_9CodeBlockEPKcRKN3WTF7CStringE) +STUB("iuxyxWs4Bfk", exp2ft) +STUB("iuzPnkZ56VA", _ZN7WebCore9FrameView29setAutoSizeFixedMinimumHeightEi) +STUB("iv2nCQ-ovOM", _ZN3sce2Np9CppWebApi11UserProfile2V112ErrorFactory7destroyEPNS3_5ErrorE) +STUB("iv6MXjuW8Yw", _ZN7WebCore14cookiesEnabledERKNS_21NetworkStorageSessionE) +STUB( + "iv7+B-a69z8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEptEv) +STUB("iv7V3pGPGY0", _ZN3sce7Toolkit2NP2V26Trophy17TrophyPackSummary8deepCopyERKS4_) +STUB( + "ivBpkSQIGm0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEED1Ev) STUB("ivI59nvu564", sceDeci4hDrfpMkdir_fuse) STUB("ivIJMuISCPo", sceIduUtilGetDownloadInstallProgress) +STUB("ivMCitpSQNk", _ZNK3sce4Json6Object3endEv) +STUB("ivOXM6LFdNM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEE3getEv) +STUB( + "ivQcJO5s7vY", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditions9terminateEv) +STUB( + "ivQw9ceobCs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEmmEi) +STUB("ivTA-wE+dQ8", monoeg_g_ptr_array_remove_fast) +STUB( + "ivTKajEc7xM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEeqERKS9_) +STUB( + "ivUIhR0MmfY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEE7add_refEv) +STUB("ivV+JQAOX+s", _ZN7WebCore11JSDOMWindow12getPrototypeEPN3JSC8JSObjectEPNS1_14JSGlobalObjectE) +STUB( + "ivYCePfNTZk", + _ZN3sce2Np9CppWebApi14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyC2EPNS1_6Common10LibContextE) +STUB("ivc0GnUuZBg", JVM_IsInterface) +STUB( + "ivd181dxyQ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE7reserveEi) +STUB("ivdx98Ki0Ms", shared_memory_area_alias) +STUB("ivkMzBxwCsY", _ZN7WebCore28InspectorFrontendClientLocal8SettingsnaEm) +STUB( + "ivli5ESknwA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEED1Ev) +STUB( + "ivmI6WJER54", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) STUB("ivnnssCwjGI", sceNpStrcpyToBuf) +STUB("ivuKrYwVA90", ucnv_openStandardNames) +STUB("ivx40etKhrY", _ZThn120_N7WebCore9DOMWindowD1Ev) +STUB("iw0H1F+gEZY", _ZN12video_parser18cMp4FFLHndlManagerD2Ev) +STUB( + "iw0R5drTHSU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEneERKS9_) +STUB("iw15QbkkAEk", uscript_getScript_59) +STUB("iw2v53NXNCI", ucnv_usesFallback_67) +STUB( + "iwBspFIZwdU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEEC2EPKS6_) +STUB("iwDNdnEGyhI", _ZN3sce2np6ObjectdlEPvR16SceNpAllocatorEx) +STUB("iwGQqOKMxec", _ZN3sce3Xml3Sax6Parser18setDocumentHandlerEPNS1_15DocumentHandlerE) +STUB( + "iwINLcuW1Zc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("iwIUndpU5ZI", _ZTSSt22_System_error_category) +STUB("iwIzwyIXewg", _ZThn112_NK7WebCore22HTMLFormControlElement12willValidateEv) +STUB( + "iwKcrld9NlI", + _ZN8meta_gen11MsvPromoter28setKeyValue_TBLAVC_IconWidthENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) STUB("iwTNhyaemnw", sceAmprMeasureCommandSizeMapEnd) +STUB( + "iwaWZcNsMVk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo25setsetDataInfoRequestBodyENS1_6Common12IntrusivePtrINS3_22SetDataInfoRequestBodyEEE) +STUB("iwd0jQy9J1Y", _ZN3sce2np8JsonBoolD2Ev) +STUB( + "iwdUoDsf82s", + _ZN9Inspector14InjectedScript12awaitPromiseERKN3WTF6StringEbbbONS1_8FunctionIFvRS2_ONS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISA_EEEERNS1_8OptionalIbEERNSF_IiEEEEE) +STUB("iwi+agK4XO0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEEC2EPS5_PFvS7_EPNS2_10LibContextE) +STUB( + "iwjsqiQVNHY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEmmEv) +STUB("iwlTuTM4oOg", GCC_except_table285) +STUB( + "iwrPvi63iiA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEE7get_refEv) STUB("iwsJdAZCg34", sceVideoOutSysDeleteVblankEvent) +STUB("iwv8mgvlcms", _ZN7WebCore9HTMLNames16ongestureendAttrE) +STUB("ix+R6upTWRo", _ZN7WebCore7CSSRule10setCssTextERKN3WTF6StringE) STUB("ix4LWXd12F0", sceNetDhcpGetInfo) +STUB( + "ix6x24NzOPQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEED1Ev) +STUB( + "ix9IpMfnIOM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEmmEv) +STUB("ixD7MUb3poQ", __ubsan_handle_nonnull_return_abort) +STUB("ixHnZ0gYK+g", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed13UsersWhoLikedEED2Ev) +STUB("ixJAz92H1uE", _ZN3sce4Json5Array6insertERKNS1_8iteratorERKNS0_5ValueE) +STUB("ixJxLrgomC4", _ZN4Manx8X509cinf6issuerEv) +STUB("ixMHFqbt4-g", mono_aot_System_Datajit_got) +STUB( + "ixPEBUlouA4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEC2ERS7_) +STUB("ixQohNmWY6A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEEC2EPS6_) STUB("ixTq0u9X6h0", sceVrTrackerGetState) +STUB("ixWEOmOBavk", _Fetch_or_8) +STUB("ixaGkKXBrjE", mono_btls_x509_store_peek_store) +STUB( + "ixgjvLBsv2g", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfile16unsetlanguageSetEv) +STUB("ixnd2US2oe8", _ZSt9use_facetISt5ctypeIcEERKT_RKSt6locale) +STUB( + "ixrswyNFkxE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE7popBackEv) +STUB("ixrw0h2tWuI", chflags) +STUB( + "ixry7bm+gjY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEE21intrusive_ptr_add_refEPS7_) +STUB( + "iy-uvy4s7ig", + _ZN7CoreIPC18MessageReceiverMap18addMessageReceiverENS_15StringReferenceEPNS_15MessageReceiverE) +STUB("iy1lPjADRUs", _ZTSSt14overflow_error) +STUB( + "iy2z17uqT6c", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB("iy4Obm4ndrg", _ZN3sce2Np9CppWebApi13InGameCatalog2V55Error14setReferenceIdEPKc) +STUB("iy5583blIG4", g_ascii_tolower) +STUB( + "iy6xhcQdqV8", + _ZN3sce7Toolkit2NP2V212ActivityFeed8setLikedERKNS3_7Request8SetLikedEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("iy9MA4qPbh4", + _ZN3sce2Np9CppWebApi12Leaderboards2V113ErrorResponseC1EPNS1_6Common10LibContextE) +STUB( + "iyBGMmsQ-vw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEplEm) +STUB( + "iyBLFfd5+VM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE8copyFromERKS9_) +STUB( + "iyMxJDOjDQI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE8copyFromERKS9_) +STUB("iyO3rE9DGJc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEC1Ev) +STUB("iySvHLi9FM8", _ZN3sce7Toolkit2NP2V26Trophy15TrophyPackGroupD1Ev) STUB("iyTnezpw1jE", sceSlimglCompositorSetIndirectRenderTargetConfigCommand) +STUB( + "iyUXb4Qe5YY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEC2Ev) +STUB("iyVtm-sSA6M", + _ZN12video_parser20cVideoContentFactory23_releaseVideoContentMp4EPNS_13iVideoContentE) +STUB( + "iyZCsolZfb8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEE7add_refEv) +STUB( + "iyZgSC1984Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE7popBackEv) +STUB( + "iyalXKe35yM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE8copyFromERKS9_) +STUB("iybiXHCbg48", _ZN3sce3pss4core8graphics6OpenGL25GetTextureFormatComponentENS2_11PixelFormatE) +STUB("iycxBMYLgHQ", _ZNK7WebCore11MediaPlayer15extraMemoryCostEv) +STUB("iyd2TyRXfuw", _ZN7WebCore9HTMLNames5tdTagE) +STUB( + "iymftKYZUXg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEC2Ev) +STUB("iyv2v10Y3ho", ures_getStringByIndex) +STUB("iyxzbQoTQO0", _ZN7WebCore8Settings25setUserStyleSheetLocationERKNS_3URLE) +STUB("iyzkWLmgruc", _ZN3JSC12HeapCellTypeD0Ev) +STUB("iz-vTGZcvzM", _ZN7WebCore9InlineBox16placeEllipsisBoxEbfffRfRb) +STUB("iz2shAGFIxc", hypotf) +STUB("iz4u5YcAPsE", ucnv_getStandard) +STUB("iz5C+vluGos", _ZN12video_parser5vpcom8datetime8DateTime13SetDateFormatEPKw) +STUB("iz5PAz+EgqE", _ZN3sce2np13JsonDocParser13onObjectValueEjjPKcNS0_10JsonParser9ValueTypeES3_) +STUB("izHqoD2bQQ8", __tsan_vptr_update) +STUB( + "izLkdjWVAbc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("izM7cVJlAKQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEC1ERKS7_) +STUB("izMQ9Oh4YQ4", ures_getSize_67) +STUB( + "izOdP6awnFI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEdeEv) STUB("izT0rbXh7oA", sceCesBig5ToUtf32be) +STUB( + "izX-mAkkO0s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEC1EPS8_) STUB("izXyehpoZGo", sceUltSemaphoreDestroy) +STUB("izc6IhllvRE", mono_bitset_intersection) +STUB("izdZg08ZJlo", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18SessionInformationEED2Ev) +STUB("izfIVmcJB4o", sk_value) +STUB("izfIZqB40b4", _ZNK7WebCore31SimplifiedBackwardsTextIterator5rangeEv) +STUB( + "izgCLnu8XJQ", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEEiRNS2_10LibContextEPT_m) +STUB( + "izjwfc14bC8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE21intrusive_ptr_add_refEPS7_) +STUB("izmoTISVoF8", _ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED0Ev) +STUB("iznUQSSxY60", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEED2Ev) STUB("izo3BrmWZDM", sceShellCoreUtilIsImposeScreenOverlaid) +STUB( + "izoz91q-haU", + _ZN3sce2Np9CppWebApi12Leaderboards2V111UserFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_4UserEEE) +STUB( + "izrsVo+K-No", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEppEv) STUB("izssDkN7IAU", sceVideoCoreInterfaceCloseCanvas) +STUB( + "izvEeQH5dOo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE3endEv) STUB("izvHhqgDt44", sceHttp2SetRecvTimeOut) +STUB("izyV4of1nnA", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V129MatchCompletionRateProperties7getQuitEv) +STUB("izyh9+H3NvA", _ZN3sce7Toolkit2NP2V211SharedMedia10BroadcastsC2Ev) +STUB("j+0RsD6afKQ", rgctx_fetch_trampoline_rgctx_36) +STUB( + "j+7i9HB+Bmg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE6resizeEj) +STUB( + "j+BJIRupgqo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEmmEv) +STUB( + "j+CDcJK0h9A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("j+DwM4iALVI", _ZN7WebCore19serializationForCSSENS_5SRGBAIhEE) +STUB( + "j+IsaIntR8M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEC1EPNS2_10LibContextE) +STUB("j+LRQ7Jimxs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEE7get_refEv) +STUB( + "j+P+IumzUhU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEaSERKS9_) +STUB( + "j+QDOPGp7UE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE8copyFromERKS9_) STUB("j+TbPIM9h4w", _sceNpManagerDefaultReallocImpl) +STUB("j+XjoRSIvwU", fdopendir) +STUB("j+XnpNHKrGw", delegate_invoke_impl_target_10) +STUB("j+YazVrEz2I", + _ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody22centerToEdgeLimitIsSetEv) +STUB("j+cIshORypg", GCC_except_table488) +STUB( + "j+iNdae6U1E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("j+nH8y+uKK8", _ZN12video_parser12cVpFileCache7getNextEPNS0_10_CacheInfoE) +STUB("j+nM17IrP6A", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEEC1Ev) +STUB( + "j+rfx4b+BCY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEC2EPNS2_10LibContextE) +STUB( + "j+rkZ5zn1Fc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE3endEv) +STUB( + "j+vYxBZcE9M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEEptEv) +STUB( + "j+whEmXX0UE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEC1Ev) +STUB("j+zRqzTSOVM", _ZNK3sce2Np9CppWebApi14IdentityMapper2V311PsnWebError6toJsonERNS_4Json5ValueEb) +STUB("j-2A6uWa4QI", _Z26Ime_KbdGetResourceIdNativemPj) +STUB("j-4S7wJkl-w", mono_set_hazard_table) +STUB( + "j-9x-eqjHrA", + _ZN7WebCore14DOMCacheEngine15queryCacheMatchERKNS_15ResourceRequestERKN3WTF3URLEbRKNS4_7HashMapINS4_6StringES9_NS4_11DefaultHashIS9_EENS4_10HashTraitsIS9_EESD_EERKNS_17CacheQueryOptionsE) +STUB( + "j-BEPh9x3So", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) STUB("j-CnRJn3K+Q", sceUserServiceGetNpMAccountId) +STUB( + "j-DtpR+c-L8", + _ZN9Inspector24RuntimeBackendDispatcher5parseElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) STUB("j-Fnm8OaiKc", sceSystemLoggerTerminate) +STUB( + "j-Fwh0bKH6Y", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) STUB("j-GWi2OpAEc", sceVisionManagerSetCallbackForUpdateCalibrateTrackingLedResult) +STUB( + "j-Jt1z2pvRo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEED1Ev) +STUB("j-K44AmyTaY", _ZN3sce2Np9CppWebApi6Common8IteratorIlEC2Ev) +STUB( + "j-La7-Hq-Vw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEC1Ev) +STUB("j-N8TB-WFjA", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchDetailC1Ev) +STUB( + "j-N9Ws85bE8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEEaSERSA_) +STUB("j-NhaWA0Xgk", _ZNK7WebCore29DeprecatedCSSOMPrimitiveValue14getStringValueEv) STUB("j-Op3ibRJaQ", sceNetThreadCreate) +STUB("j-Pu-THdpi4", mono_aot_I18N_Otherunwind_info) +STUB( + "j-QZn56ugN8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEppEi) +STUB( + "j-VGVDwB5AE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEEcvbEv) +STUB( + "j-ZbdLhmnCo", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ErrorFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_5ErrorEEE) +STUB("j-acUK9BWpY", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V111LeaveReasonEEdeEv) STUB("j-b-RFZ3gjw", sceAvSettingGetCurrentOutputMode2_) +STUB( + "j-bIlKHza8E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEmmEv) +STUB("j-erESxNyYE", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE8capacityEv) +STUB("j-gWL6wDros", getifaddrs) +STUB( + "j-hzQs4aTnk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "j-hzRrb1IaE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEC1Ev) STUB("j-iD1Vbj+IE", s_StdThreadStackSize) +STUB("j-jTOqQ3bjk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEED1Ev) +STUB("j-n92pIpS6U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEaSERS7_) +STUB("j-uMQE+unFY", FT_New_Face) +STUB("j-yHzjm7S74", mono_counters_register_with_size) +STUB("j-zFZRfydsU", png_set_read_user_chunk_fn) +STUB("j-zdtWpCiV4", _ZN8meta_gen17CommonFsOperationD1Ev) STUB("j0+3uJMxYJY", sceAmprCommandBufferWriteAddress_04_00) +STUB("j01txBCp5tk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeaders7destroyEPS5_) +STUB("j08bZ+o5M1A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE3endEv) +STUB("j0HV+Bc6FPw", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE7reserveEi) +STUB("j0OYQ70uQn0", uprv_log) +STUB("j0OeB4hZBWI", u_digit_67) +STUB("j0Q9ljGaFNE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEEC2Ev) +STUB("j0Vj8xWPy14", _ZN3WTF28numberToFixedPrecisionStringEfjRSt5arrayIcLm123EEb) +STUB("j0WdRf7bUMY", WKCredentialCreate) +STUB( + "j0d-KpxDp7Y", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo24unsetxPsnAtomicOperationEv) +STUB( + "j0i8dAhTv7c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "j0l3J1J28hU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE5clearEv) +STUB("j0m47fCuGj4", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification18NewGameDataMessageEE3setEv) +STUB("j0n2i6H5JeA", _ZN7WebCore4Text16replaceWholeTextERKN3WTF6StringE) +STUB("j0tDpWrJxyo", _ZN3sce7Toolkit2NP2V27Ranking12FriendsRanks5resetEv) +STUB( + "j0x77FTVJMw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEC1EPS8_) +STUB("j0yZCTA9wys", WKPreferencesGetApplePayEnabled) +STUB( + "j13MCgl9-r4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEixEm) +STUB("j1BG8L+rras", SwCtrlManagerStartActivateSession) +STUB("j1F9eNv4e0c", isExpectedMessage) STUB("j1ITE-EoJmE", sceMoveInit) +STUB("j1L-q8-sQg8", _ZN3sce7Toolkit2NP2V28Commerce14ProductDetails5resetEv) STUB("j1LyMdaM+C0", sceJpegEncDelete) +STUB("j1S-XMUmCwM", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112GroupingTypeEEC1Ev) STUB("j1YsEXl5ta4", sceNpPushUnsetNpCommunicationId) +STUB( + "j1blA3bMh9I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "j1cs4nhp0a0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEE7get_refEv) +STUB("j1gwidKnfz4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEE5resetEPS6_) +STUB("j1mZE2GdKgs", uprv_decNumberIsNormal_67) +STUB("j1nvYqvAO1g", rgctx_fetch_trampoline_mrgctx_101_p) +STUB("j1pXItWmu1M", _ZN12video_parser12cVpFileCache8finalizeEv) +STUB("j1qEC6CZgpQ", glGetSynciv) +STUB( + "j1qHv87hqj0", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetrics18setConfidenceScoreERKi) +STUB("j1rSbhWbnmQ", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product16releaseDateIsSetEv) +STUB("j1tigGPnmsQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V115SearchAttributeEEdeEv) +STUB("j1ukOHaatOk", rgctx_fetch_trampoline_mrgctx_42) +STUB( + "j1vMqZr0tvg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEC2EPKS8_) +STUB("j1zryfXHL2k", _ZN3sce2np10JsonStringD0Ev) +STUB("j2-q2HpgmFg", _ZN7WebCore11MediaPlayernwEm10NotNullTagPv) +STUB("j235LpT0WFc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEE7get_refEv) +STUB("j29PIUfIRxQ", _ZN3sce2Np9CppWebApi6Common6VectorIlE5clearEv) STUB("j2AIqSqJP0w", sceKernelGetdents) +STUB("j2AMaJozbro", JVM_EnableCompiler) STUB("j2C9no3P4Nw", sceAmprAmmCommandBufferMultiMap) +STUB("j2CZH3AwxZI", _ZNK3sce2np14JsonObjectImpl17fieldSetFindFieldEPNS1_8FieldSetEPKc) +STUB( + "j2EjFs0iVgs", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_11ProductInfoENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB("j2G7tIS3o5s", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectIdaSERS5_) +STUB("j2NwFclwf9M", _Z18attachIpcChannelExiPKciiiPi) +STUB("j2SETV7drVI", delegate_virtual_invoke_imt_m_2_p) +STUB( + "j2Z5IvjUQJY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE3endEv) +STUB("j2a9vp46UWM", il2cpp_class_is_valuetype) STUB("j2dSNi+SJro", sceNpAsmInitialize) STUB("j2in3S4xf+0", sceTsOpenFile) +STUB("j2k+klaay8Y", _ZN7WebCore9ImageDataD1Ev) +STUB("j2lfh-PL7L0", mono_aot_Sce_Vsh_Np_Papcjit_got) +STUB("j2vvLyM-NNE", _ZN3sce7Toolkit2NP2V24Core11RequestBaseC2ERKS4_) +STUB("j2xKmRzIV84", cairo_font_options_create) +STUB( + "j32f5MaAyZ0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEE21intrusive_ptr_add_refEPS7_) +STUB( + "j36dWh2kxAE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEneERKS9_) STUB("j3EtxFkSIhQ", sceAgcAcbDispatchIndirect) +STUB("j3Exaiwjo2g", YGNodeLayoutGetTop) +STUB( + "j3F3QzmXqlw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "j3FSFIKBzOg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEptEv) STUB("j3FpjemL6Zg", sceNpTrophy2SystemGetTrophySetArray) STUB("j3IrOCL+DmM", sceSystemStateMgrIsStandbyModeEnabled) +STUB("j3P4hIbbQc0", _ZN7WebCore9HTMLNames15dispositionAttrE) +STUB("j3WrMuzfvz8", uprv_isNaN) STUB("j3YMu1MVNNo", sceUserServiceInitialize) +STUB("j3YaVPByfqs", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEEaSERS7_) +STUB( + "j3Yh72KT6zI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEaSERKS9_) +STUB("j3Z0VFl6RJM", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V113SubtaskStatusEEmmEi) +STUB( + "j3aXjDcaw44", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEE7add_refEv) +STUB( + "j3dOrbh-Pnk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEE7add_refEv) +STUB("j3eK5GZ-gls", u_setDataDirectory_67) +STUB( + "j3io9btC+1Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEmmEi) +STUB( + "j3l0WIhvHgo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEED2Ev) +STUB("j3liMSP+NcA", _ZN9Inspector18InspectorHeapAgent8snapshotERN3WTF6StringEPdPS2_) +STUB( + "j3oQXKZOsIk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEC1EPNS2_10LibContextE) +STUB( + "j3tmkBq+mvA", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13boolean7IsSetEv) +STUB( + "j3x+R7iDl+U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEE7get_refEv) STUB("j43P62s5SX4", sceVoiceChatTerminate) +STUB("j4BUeihXWh8", uprv_maxMantissa) +STUB("j4H2Di0rC3Q", + _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse22setMatchStartTimestampEPKc) +STUB("j4H6h1tAvg8", mono_aot_platformjit_code_start) +STUB("j4IAvbKKTzw", _ZN3sce2np14CalloutContextC2Ev) +STUB( + "j4J1raF8Tz8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE4sizeEv) +STUB("j4Kelbss-6w", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_19UserRankInformationEED1Ev) +STUB("j4OuYrBmx60", _ZN7WebCore21DiagnosticLoggingKeys26entryWronglyNotWarmedUpKeyEv) +STUB( + "j4POQZ8hGpE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE5emptyEv) +STUB("j4ViWNHEgww", strlen) +STUB( + "j4ZLNrl0JfY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("j4br8LciwPE", _ZTVN7WebCore8DOMTimerE) STUB("j4emHHndCPY", sceAgcDcbSetIndexBufferGetSize) +STUB( + "j4f06s+bQS0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEppEi) +STUB("j4gLOIpHgNk", _ZN3sce2np10Cancelable14SetupSubCancelEPS1_PKciS4_) STUB("j4h82CQWENo", sceSystemGestureUpdateTouchRecognizer) +STUB("j4janbBSgyg", uprv_decNumberNextPlus_67) +STUB("j4jpidD-Itk", WKPreferencesSetPaintTimingEnabled) +STUB("j4kIUS5T3TY", _ZN7WebCore14ResourceHandle12firstRequestEv) +STUB("j4kQYtkzNCY", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_26ActivityFeedCondensedStoryEE10deallocateEPS3_m) +STUB("j4kySXsCM5k", + _ZN7WebCore8FormData15appendFileRangeERKN3WTF6StringExxNS1_8OptionalINS1_8WallTimeEEE) +STUB( + "j4mkkWeoIx0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEEC1Ev) +STUB("j4qPZlQyJUc", _ZN3WTF13printInternalERNS_11PrintStreamEh) +STUB( + "j4qwgiMAz4U", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE6insertENS2_8IteratorIS6_EERKS6_RS9_) STUB("j4xqWctK0UQ", sceAppInstUtilAppGetCompilationDiscInfo) STUB("j4yXIA2jJ68", sceSystemGestureClose) +STUB("j4znY2-cjNY", _ZNK3sce2Np9CppWebApi7Matches2V120RequestPlayerResults11getPlayerIdEv) +STUB( + "j563bYYKWOs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEptEv) +STUB("j56l9dX6pCI", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIlEdeEv) +STUB( + "j5C44K+duZs", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities26GetUsersActivitiesResponseC2EPNS1_6Common10LibContextE) +STUB("j5Q5zC+A3EM", _ZN7WebCore11DisplayList4ClipC1ERKNS_9FloatRectE) +STUB( + "j5QFq42p1W0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE7popBackEv) +STUB("j5SUJcQbn4Y", WKAuthenticationDecisionListenerGetTypeID) +STUB("j5UQRzykv-I", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE7popBackEv) +STUB( + "j5XK45e3Y6M", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetBoolean9Ev) +STUB( + "j5arlAYXQWQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEppEv) +STUB("j5gK4TdLd8Q", WKUserContentURLPatternIsValid) +STUB("j5h-Y5tFBL8", _ZN3sce7Toolkit2NP2V211SharedMedia10BroadcastsaSERKS4_) STUB("j5isFVIlZLk", sceCameraSetAppModuleFocus) +STUB( + "j5uIFJtW29w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE7popBackEv) +STUB("j5y1mezPKxE", _ZN12video_parser5vpcom16DirectoryGetNextE) +STUB( + "j64eAmSsLsw", + _ZN7WebCore26MessagePortChannelRegistry26checkRemotePortForActivityERKNS_21MessagePortIdentifierEON3WTF17CompletionHandlerIFvNS_26MessagePortChannelProvider11HasActivityEEEE) +STUB("j64frMoWiJY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEE7add_refEv) +STUB("j64iXjsjnCY", aio_fsync) +STUB("j66aa9OsmyU", _ZNK7WebCore29PerspectiveTransformOperationeqERKNS_18TransformOperationE) +STUB("j6AZ9q1Cob0", WKPreferencesGetKeygenElementEnabled) +STUB("j6CorpmdjRk", _ZN3sce2np14CalloutContext4InitEPKcimm) STUB("j6FgkXhxp1Y", sceUserServiceSetNpOfflineAccountAdult) +STUB( + "j6GHjTx-1-Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEdeEv) +STUB( + "j6H78w7hZFg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEC1ERS7_) +STUB("j6I6HP9OivU", _ZN3sce7Toolkit2NP2V26Friend12BlockedUsersC1Ev) STUB("j6LAEE-1npg", sceDataTransferTargetRequestDeactivate) +STUB("j6OnScWpu7k", mbrlen) +STUB( + "j6QQjNlRtKM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEEaSERSA_) STUB("j6RaAUlaLv0", sceVideoOutWaitVblank) +STUB( + "j6RogAOKsLM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE8copyFromERKS9_) +STUB( + "j6UlMwm9ZxU", + _ZN3JSC19ArrayBufferContentsC2EPvjON3WTF6RefPtrINS2_10SharedTaskIFvS1_EEENS2_13DumbPtrTraitsIS6_EEEE) +STUB( + "j6VCQDJmu-o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("j6Wk8AtmVQM", CERT_validateCertificateWithConf) +STUB("j6WqMm+R1HQ", ucnv_compareNames) +STUB( + "j6bojbSAuAg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE8capacityEv) +STUB( + "j6dlta6+3uo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) STUB("j6mSQs3UgaY", sceGnmRegisterOwnerForSystem) +STUB("j6mWU1nccSQ", _ZNK7WebCore16HTMLImageElement1yEv) +STUB("j6oWzyuDal4", _ZN3sce2np12NpTitleTokenC1Ev) STUB("j6pkkO2zJtg", sceNetShowIfconfigForBuffer) +STUB("j6qwOi2Nb7k", _ZTVSt16nested_exception) +STUB( + "j6rJkeT7-To", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessions17getacceptLanguageEv) +STUB( + "j6sG770TGE4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE4sizeEv) +STUB( + "j6sSBLWcSpg", + _ZN3sce2Np9CppWebApi14SessionManager2V132FriendJoinedPlayerSessionFactory7destroyEPNS3_25FriendJoinedPlayerSessionE) +STUB("j6zuRCqOTlw", ures_openAvailableLocales) +STUB("j7-jaGWCsyU", _ZN23sceMetadataReaderWriter15ParserInfoTableC2Ev) STUB("j72lst7BFuc", sceLncUtilAddLocalProcess) +STUB("j73YDHCERVw", _ZN3NTF17URLRequestDataJob10initializeEb) +STUB("j74sHzT1ZAM", _ZN7WebCore19toJSRemoteDOMWindowERN3JSC2VMENS0_7JSValueE) +STUB("j77S9-f8qpM", _ZN3sce7Toolkit2NP2V29Messaging25GameDataMessageAttachmentC1Ev) +STUB("j7Br6V1D-BQ", _ZThn24_N9Inspector22InspectorDebuggerAgent21breakpointActionSoundEi) STUB("j7DlalBzHh8", sceShareUtilityInitializeEx2) +STUB( + "j7Ek862UY1Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEE8capacityEv) +STUB("j7Evw9-OEfo", + _ZN7WebCore17JSDOMRectReadOnly15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("j7J7DtkLt9A", WTFLogVerbose) +STUB("j7Jk3yd3yC8", vscanf) +STUB("j7Jq3g6W0Dg", delegate_virtual_invoke_imt_17_p) +STUB( + "j7RzI2p024Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("j7UBWKZMdkM", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEEC2Ev) STUB("j7cPZ0+LO50", sceAppInstUtilAppGetStoreCompilationDiscInfo) +STUB("j7e7EQBD6ZA", _ZNSt6_MutexD2Ev) +STUB( + "j7jNxqtgF9E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEaSERS8_) +STUB("j7lQdOHSaMU", _ZN7WebCorelsERN3WTF10TextStreamENS_17CompositeOperatorE) STUB("j7lvkiMu1Sg", sceFaceDetectionLocal) +STUB( + "j7tIvvali+Y", + _ZN8meta_gen11MsvPromoter29setKeyValue_TBLAVC_IconOffsetENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB("j7th-avmyV4", _ZN3sce7Toolkit2NP2V27Ranking7Request11GetGameDataD2Ev) +STUB("j7xEQQxEwhU", mono_environment_exitcode_set) +STUB( + "j7y1sZVZ8LA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEE7get_refEv) +STUB( + "j7yOwLuDXBg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEdeEv) +STUB("j84nSG4V0B0", copysignl) +STUB( + "j87SoKO0XQs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEED2Ev) +STUB( + "j87mIZ54gMY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE3endEv) +STUB( + "j88I7jHo5tU", + _ZN7WebCore15GraphicsContextC2ERKN3WTF8FunctionIFSt10unique_ptrINS_19GraphicsContextImplESt14default_deleteIS4_EERS0_EEE) +STUB( + "j88jXBckt1o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEEC2EPS8_PNS2_10LibContextE) +STUB("j8AuwriYA+o", _ZN7WebCore11MathMLNames13annotationTagE) +STUB( + "j8DHJfHb8SU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEEC2ERKSA_) +STUB( + "j8DwX36HWKY", + _ZN3JSC8JSObject23putDirectNativeFunctionERNS_2VMEPNS_14JSGlobalObjectERKNS_12PropertyNameEjNS_14NativeFunctionENS_9IntrinsicEPKNS_6DOMJIT9SignatureEj) +STUB( + "j8GaWERLGPw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEC2EPKS8_) +STUB( + "j8Q7SBgMm28", + _ZN3sce4Json11Initializer36setGlobalElementAccessFailureHandlerEPFviPKNS0_6StringEPKmPKNS0_5ValueES9_PvESA_) +STUB( + "j8Rq8pd+Qec", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeaders15getCacheControlEv) +STUB("j8SPG6WjVhk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEE3getEv) +STUB( + "j8XXYWzAm9w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEEaSERKSA_) +STUB( + "j8cJ3ObVUrQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEixEm) +STUB( + "j8oYd8uo-oE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE21intrusive_ptr_sub_refEPS9_) +STUB("j8pbpwtszFM", rgctx_fetch_trampoline_mrgctx_31_p) +STUB( + "j8whp32xTOc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE4sizeEv) STUB("j8xKtiFj0SY", sceSaveDataGetEventResult) STUB("j8xl+92A0q4", sceVideoOutSubmitEopFlip) +STUB("j8yt5Jk44pk", SSL_CTX_load_verify_locations) +STUB( + "j9+PnSjSGrc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEEC2ERKSA_) +STUB("j9+w19BOaT0", ucnv_getNextUChar_67) +STUB("j97CjKJNtQI", _ZTIs) STUB("j98LdSGy4eY", sceRemoteplayGeneratePinCode) +STUB( + "j99n-cKanas", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEEC2ERSA_) +STUB( + "j9AjWtsreNk", + _ZN7WebCore14SecurityPolicy29addOriginAccessWhitelistEntryERKNS_14SecurityOriginERKN3WTF6StringES7_b) +STUB("j9BmDmq3slM", qone) +STUB( + "j9FBAp7B29w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEppEi) +STUB("j9G2WldyfZc", _ZN3JSC8Debugger17stepOutOfFunctionEv) +STUB( + "j9HculGfCSk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEC1Ev) +STUB("j9HpuzNsCTg", _ZThn8_N3sce2np9HttpTrans5WriteEPNS0_6HandleEPKvmPm) +STUB("j9HxSZFGRtI", mono_aot_ReactNative_PUIplt) +STUB("j9LU8GsuEGw", + _ZNKSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecPK2tmPKcSB_) +STUB( + "j9LVJyJjbQI", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEiRNS2_10LibContextEPT_m) +STUB("j9SGTLclro8", _Sincos) +STUB( + "j9Ux8Hkli4g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEEC1ERKSA_) +STUB( + "j9Wi06CTpjI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEEC1Ev) +STUB( + "j9XPYaU-Ft0", + _ZN7WebCore21NetworkStorageSession41setDomainsWithUserInteractionAsFirstPartyERKN3WTF6VectorINS_17RegistrableDomainELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) STUB("j9Xt85krooc", sceVoiceQoSDisconnect) +STUB( + "j9b3toPxNk4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEC2ERKS7_) +STUB( + "j9hK9wZMVaU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEdeEv) +STUB("j9i2nZjXvhY", Java_java_util_zip_Inflater_init) +STUB( + "j9jhU5-BfS8", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEED1Ev) +STUB("j9kPTcevisQ", _ZN7WebCore18proxyServersForURLERKN3WTF3URLE) +STUB( + "j9mP-g3HrC4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("j9q57kmgqGc", _ZN3sce7Toolkit2NP2V210Tournament25BracketInformationOfMatchD1Ev) +STUB( + "j9tDhZW4aLE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEppEi) +STUB("j9uGt-TQu74", __tsan_atomic16_fetch_nand) +STUB( + "j9uXbxu3EnU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "j9v+66-K6OI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "j9wQqnUZB9M", + _ZN7WebCore18JSHTMLVideoElementC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_16HTMLVideoElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB("j9yaF1MkGiM", _ZN7WebCore24CoordinatedGraphicsLayer19notifyFlushRequiredEv) +STUB( + "j9znSJuohv8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEE5resetEPS9_) +STUB( + "j9zsQ1hhJ0w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEE7add_refEv) STUB("jA629PcMCKU", sceSystemServiceGetRenderingMode) +STUB("jA7tDJn-WKI", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V15Error11unsetSourceEv) +STUB("jA8zOzBRX28", BIO_s_file) +STUB( + "jADkWI1Zlqw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEmmEv) +STUB( + "jAE7LH-koHM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEptEv) +STUB( + "jAEymaynqsQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE3endEv) +STUB( + "jAGblwqhdoo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEE5resetEPS6_) +STUB( + "jAHWe9JoK1U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEC1Ev) +STUB("jAIjl2KoR0E", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIlEptEv) +STUB( + "jAJoGOxJAjo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEneERKS9_) +STUB("jALEBkxiGfU", + _ZN9Inspector27InspectorFrontendDispatcher25evaluateForTestInFrontendERKN3WTF6StringE) +STUB("jAO1IJKMhE4", _ZNSt12bad_weak_ptrD1Ev) +STUB("jAOJ75hWzxU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEC2Ev) +STUB("jAPophT9JM4", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEEmmEi) +STUB("jAQVKoDldcU", _ZN7WebCore18PrewarmInformationnaEm) +STUB( + "jAQyEYtMD70", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_13FriendsOfUserENS1_15AppSTLAllocatorIS5_EEEEC1Ev) +STUB( + "jAXgQhT5nQk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "jAc86M302as", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditionsD1Ev) +STUB("jAcYd5Y8NWM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEEC2EPS6_) +STUB("jAdFu-lCZA0", + _ZN3sce2Np9CppWebApi14IdentityMapper2V342PsnWebError_error_validationConstraintInfoD2Ev) +STUB( + "jAdL878Rz-k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("jAdSBeLn2AQ", mono_metadata_decode_row_col) +STUB("jAhKX3VQzow", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEEC2Ev) +STUB( + "jAmyqZBu7fA", + _ZN3sce2Np9CppWebApi14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyD2Ev) +STUB("jAnSKbNmc6U", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11ProductInfoEEC1Ev) +STUB("jApc7NzpYJE", _ZN7WebCore9HTMLNames9allowAttrE) +STUB( + "jAqiU184smU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE6resizeEj) +STUB( + "jAstE+lkQCs", + _ZN3sce2Np9CppWebApi14SessionManager2V167PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_12JoinableUserEEEEEPNS9_INS3_60PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEE) +STUB( + "jAz2V+LPbrM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEE7get_refEv) +STUB( + "jAzQsY8y-ig", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEdeEv) +STUB("jB0PrHhQOZ8", WKBundleFrameGetFrameLoadState) +STUB( + "jB3FyW6yAbw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "jB4DwKnFywc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEeqERKS9_) +STUB("jB7tY3dNbcw", _ZN7WebCore10Pasteboard4readERNS_19PasteboardPlainTextE) +STUB("jB92woGZxrk", _ZN7WebCore8Document7hitTestERKNS_14HitTestRequestERNS_13HitTestResultE) +STUB("jBAPhO31KZw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEcvbEv) +STUB("jBCTMwQx7K4", _ZN3sce7Toolkit2NP2V28Matching7Request20SetInitConfigurationC2Ev) +STUB( + "jBCgClIH0MA", + _ZN3sce2Np9CppWebApi7Matches2V127RequestTeamStatisticFactory7destroyEPNS3_20RequestTeamStatisticE) +STUB("jBGJot7XZDQ", _ZN7Nicosia6Buffer25waitUntilPaintingCompleteEv) +STUB("jBGTcK8HeTc", _ZN3JSC13BooleanObjectC1ERNS_2VMEPNS_9StructureE) +STUB("jBIo6xRVzfo", mono_aot_Sce_Vsh_SyscallWrapperjit_code_start) +STUB("jBLdb1Znt1M", _ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody11offsetIsSetEv) +STUB("jBOZAv6CwkM", _Cnd_init_with_default_name_override) +STUB("jBQzLU+jJUI", _ZN12video_parser7cVpUtil12vp_ff4_fsizeEPvPm) +STUB("jBS6-ydg+A4", _ZN7WebCore13JSDOMRectList15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "jBUkUW2f+7o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEC2Ev) +STUB("jBVoh5di2zk", _ZN7WebCore23AuthenticationChallengeC2Ev) +STUB( + "jBYFGpE6DZY", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS2_6VectorINS5_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS5_INS8_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("jBaSw8hlwdc", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getAllSubtitleLangs) +STUB( + "jBcB9Hv6eNs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEE5resetEPS9_) +STUB("jBcOuEYwXwY", _ZN7WebCore13ContainerNode17getElementsByNameERKN3WTF6StringE) STUB("jBgBjAj02R8", sceAcmContextDestroy) +STUB("jBkFz78vRDI", _ZNK3sce2Np9CppWebApi13InGameCatalog2V55Image9getFormatEv) +STUB("jBm03rIbPXw", _ZNK7WebCore4Node12lookupPrefixERKN3WTF10AtomStringE) STUB("jBntlBiKty8", sceAc3EncDeleteEncoder) +STUB("jBtjPMotXo0", _ZNK7WebCore12SharedBuffer11toHexStringEv) +STUB("jBvd6kiGl5I", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_16SessionAttributeEE10deallocateEPS3_m) +STUB("jByWsFYID18", + _ZN3sce2Np9CppWebApi14SessionManager2V118LeaderWithOnlineId11setOnlineIdERK13SceNpOnlineId) +STUB( + "jC41bNFSgaE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEmmEi) +STUB( + "jC4MOLcT90M", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEneERKS9_) +STUB("jC7tfYoad5s", _ZN3WTF15charactersToIntEPKDsmPb) +STUB("jCBI51XHSWE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEEeqERKS7_) +STUB("jCBPNeftkkc", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V117ConnectionQuality9getGlobalEv) +STUB( + "jCHpSCtnq6U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEixEm) +STUB( + "jCHrFcVLx70", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE8capacityEv) +STUB("jCIWDGnwISI", _ZN3sce7Toolkit2NP15AppSTLAllocatorISbIcSt11char_traitsIcENS2_IcEEEEneERKS7_) STUB("jCJ+gks483A", sceShellCoreUtilGetCrashReportFilterInfoStart) STUB("jCJEWuExbZg", sceNpManagerIntGetLastAccountLanguage) +STUB( + "jCKKOQlFvro", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEEC1ERSA_) +STUB("jCKhrVa9MEU", _ZN15AbstractStorage7Service4StopEv) +STUB("jCOEQlm1d+A", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeaders7destroyEPS5_) +STUB( + "jCOabkQySE8", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEiRNS2_10LibContextEPT_m) STUB("jCSXa2n1cXI", sceFaceIdentifyGetWorkingMemorySize) +STUB("jCX3CPIVB8I", _ZNSt6chrono12system_clock12is_monotonicE) +STUB("jCYFjXTF1kQ", uprv_dl_open) +STUB( + "jCaQLDRkmgU", + _ZN9Inspector25TimelineBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) +STUB( + "jCb4oHBTrk8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "jCcS+yw5jfI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEplEm) +STUB("jCdZ5dxG6+Y", _ZN3JSC7Symbols19InfinityPrivateNameE) STUB("jCeqFWeN9HA", sceOpusCeltDecCtl) +STUB("jCiLoIGRdZA", mono_aot_Sce_Vsh_FileSelectorAdvancejit_code_end) +STUB("jCksK8VIzyE", glTexSubImage3D) +STUB("jCmcdc9W3UQ", __asan_load4_noabort) +STUB( + "jCoL8+nkz1k", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEixEm) +STUB( + "jCprk+fyqOA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE5abortEv) +STUB("jCrFd8gDBmY", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetrics9setJitterERKd) +STUB("jCsaBBpVu8U", _ZN7WebCore24CoordinatedGraphicsLayer16syncBoundsOriginERKNS_10FloatPointE) +STUB("jD1d49MK0Qs", mono_main) +STUB("jD4CJdDY-M4", mono_aot_Sce_Vsh_RequestShareStorageWrapperunbox_trampoline_addresses) +STUB("jDBLjMNUZeg", _ZN7WebCore13MediaQuerySetD2Ev) +STUB("jDDvll2aQpQ", _ZN3sce2np9HttpTrans10SetTimeoutEPKNS1_12TimeoutParamE) +STUB("jDJPigzSKps", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEcvbEv) +STUB( + "jDKm06Sqib8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "jDLpEOrp7n4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("jDQgfO0irO0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEC1Ev) +STUB("jDR-Re3F0Xw", _ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody16rulesetNameIsSetEv) +STUB("jDRAEOe6ruI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEC2Ev) +STUB( + "jDRCrZUGuxY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "jDRP7gkK0p4", + _ZN7WebCore22CacheStorageConnection22deleteRecordsCompletedEmONSt12experimental15fundamentals_v38expectedIN3WTF6VectorImLm0ENS4_15CrashOnOverflowELm16EEENS_14DOMCacheEngine5ErrorEEE) +STUB("jDVc4H3-fJg", _ZN3JSC7Symbols43AsyncGeneratorSuspendReasonAwaitPrivateNameE) +STUB("jDZJsUr4w70", _ZN12video_parser5vpcom8datetime8DateTime3UTCEv) +STUB("jDiVksx1LG8", _ZN3NTF10initializeERKNS_18CreationParametersE) +STUB("jDmNNYhAKg4", _ZN3WTF23fastCommitAlignedMemoryEPvm) +STUB("jDqEqnbvXQo", _ZN3sce7Toolkit2NP2V27NpUtils7Request19DisplaySigninDialogD2Ev) +STUB( + "jDso+gcXOss", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEED2Ev) +STUB("jDtLp261Kcs", + _ZN7WebCore4Page15findTextMatchesERKN3WTF6StringENS1_9OptionSetINS_14FindOptionFlagEEEj) +STUB( + "jE2q-QKAhJY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEmmEi) +STUB( + "jE71d8+agTw", + _ZN7WebCore15ContextMenuItemC2ENS_19ContextMenuItemTypeENS_17ContextMenuActionERKN3WTF6StringEbb) +STUB( + "jEGEP8kXykc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "jEI54r+Zgbw", + _ZN3sce2Np9CppWebApi13InGameCatalog2V527ContainerRatingCountFactory7destroyEPNS3_20ContainerRatingCountE) STUB("jEIXUAr9XE8", sceNpGameIntentReceiveIntent) +STUB("jEN44InFKLs", _ZNK7WebCore17HTMLOptionElement4textEv) +STUB( + "jEOZkDjAuGM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEE11get_deleterEv) +STUB( + "jEPt3w+Rj2s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEEC2ERSA_) +STUB("jEWIILUU0vA", revoke) +STUB("jEi9RHoe5+o", _ZNK7WebCore11PageOverlay5frameEv) +STUB("jEisFKo1EUo", mono_aot_Sce_Vsh_Np_Papcplt_end) +STUB("jEmIBlk7Ig0", _ZN3JSC7Symbols25newTargetLocalPrivateNameE) +STUB("jEopgpjCnFU", _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE5clearEv) +STUB( + "jEqLasnpKAY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEEC1Ev) +STUB("jEvuBJnu1sI", + _ZN9Inspector26DebuggerFrontendDispatcher12scriptParsedERKN3WTF6StringES4_iiiiPKbPS3_S7_S6_) STUB("jEwvkt8gDBQ", sceCesBig5ToUcs2) +STUB("jF-Amq3OxZE", ubrk_openRules) STUB("jF-mCgGuvbQ", sceNpTrophyIntGetRunningTitle) +STUB( + "jF6hbembivI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEmmEi) +STUB( + "jF9P75HLPQ0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEE6assignEPS5_PFvS7_EPNS2_10LibContextE) +STUB("jFEJyInG1Vc", uidna_toASCII_67) +STUB( + "jFFozukj1J4", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM23AccessibilityProperties16LiveRegionStatusEEESt8optionalIT_ERKN3WTF6StringE) +STUB( + "jFK+DuwY9yk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEdeEv) +STUB("jFLOYtUyrko", + _ZN3sce2Np9CppWebApi15Personalization2V121GetAccessCodeResponseC2EPNS1_6Common10LibContextE) +STUB("jFQDI2lqYn0", Java_com_sony_bdjstack_javax_media_content_dripfeed_Player_stopPlayFrames) +STUB("jFSmlgyyEUg", backtrace_game) +STUB("jFTeLww+1Vs", _ZNK7WebCore6ISOBox7boxTypeEv) +STUB( + "jFapeWKhaD0", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToSendGameSessionMessageC1ERS5_) +STUB( + "jFdRposxaY4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEppEv) +STUB("jFlDIIIhQM0", uhash_compareIChars) +STUB("jFmCie3wPJ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEC2ERS7_) +STUB("jFojyV0+Fd0", _ZN3sce2np10JsonNumber3SetEl) +STUB("jFrpOZHCYpk", X509_getm_notBefore) +STUB("jFrqJ8AB100", g_locale_from_utf8) +STUB( + "jFtzDgM+5gA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEEptEv) +STUB("jFza--wUSO4", pS2) +STUB("jG3ibzr-KtA", _ZNK7WebCore10ScrollView12contentsSizeEv) +STUB("jG50CkPQDdU", _ZN8meta_gen14ImageRetriever10SetMetaValEiPc) +STUB("jGAtApdaFc8", _ZN7WebCore19HTMLTextAreaElement15setDefaultValueERKN3WTF6StringE) +STUB("jGDnToT8XbU", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE5emptyEv) +STUB("jGEtfWnk1J4", _ZN7WebCore11MediaPlayer12addTextTrackERNS_22InbandTextTrackPrivateE) STUB("jGF+MaB4b-M", sceNpArchInit) STUB("jGHBPci4dzU", sceContentSearchGetApplicationLastUpdateId) +STUB("jGUoByshYSI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEED2Ev) +STUB("jGX22E1WqNc", _ZN3sce2Np9CppWebApi7Matches2V125ResponseCompetitiveResultD1Ev) +STUB("jGcnzPEHoZ8", _ZN15AbstractStorage14YoutubeServiceD1Ev) +STUB("jGd4b-rP2zk", _ZNK7WebCore11FrameLoader27numPendingOrLoadingRequestsEb) +STUB( + "jGdCnSx9T5c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "jGnsuAV-Vv8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEcvbEv) +STUB("jGo2URP56tE", glStencilMask) STUB("jGqEkPy0iLU", sceVrTrackerSetDeviceRejection) +STUB( + "jGqtSwkBi0E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEppEv) +STUB( + "jGsBBB0NRk8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE8pushBackERKS8_) +STUB( + "jGtbwJBRXmI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB("jGuZFFcr2P0", _ZN9Inspector24CanvasFrontendDispatcher14programDeletedERKN3WTF6StringE) +STUB( + "jGv-T66Cjwk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEEC2ERS9_) +STUB("jGw-fHxRZQ4", _ZN3NTF3URLC1Ev) +STUB("jH148QDT-E8", _ZN7WebCore11JSDOMMatrix4infoEv) +STUB( + "jH8wTQunkiE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEC2EPS6_PNS2_10LibContextE) +STUB( + "jHE38YOBHd8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEEC1Ev) +STUB("jHEwkqLAYQQ", _ZN7WebCore9FrameView39flushCompositingStateIncludingSubframesEv) +STUB("jHMG-2erSH0", _ZN3JSC7Symbols22isArraySlowPrivateNameE) +STUB( + "jHRH+Ai2KzQ", + _ZN7WebCore10JSLocation18getOwnPropertySlotEPN3JSC8JSObjectEPNS1_14JSGlobalObjectENS1_12PropertyNameERNS1_12PropertySlotE) +STUB( + "jHU3E7IxVUI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEppEi) STUB("jHUHTcQ+MlA", scePlayReadyApiPlatform) +STUB( + "jHZVa2KIdDc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEneERKS9_) +STUB("jHaDBgiK3qo", + _ZN7WebCore18composedTreeAsTextERNS_13ContainerNodeENS_22ComposedTreeAsTextModeE) +STUB("jHc2fHHr9ao", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEC2Ev) STUB("jHdP0CS4ZlA", sceHttp2RemoveRequestHeader) STUB("jHdPvIzlpKc", sceGnmDrawIndexMultiInstanced) +STUB("jHgwTMWTHPc", _ZN9Inspector40ApplicationCacheBackendDispatcherHandlerC2ERKS0_) +STUB( + "jHk+uoCTSjA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEC1Ev) +STUB("jHo78LGEtmU", + _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewm) +STUB( + "jHqATHShtL8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("jHrZOsKy7+Y", _ZNK3JSC12PropertySlot12customGetterEPNS_14JSGlobalObjectENS_12PropertyNameE) +STUB( + "jHs453LFtU8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEC1EPS8_) +STUB("jHtRuxwMWWg", mono_metadata_decode_signed_value) +STUB( + "jHuy8ipDMXg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEEC2ERSA_) +STUB( + "jI+MiyB5H1s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEC1EPKS8_) +STUB("jI-FEg4JO+M", _ZNK7WebCore28InspectorFrontendClientLocal13inspectedPageEv) +STUB("jI7N5-eDr1o", _ZN3sce7Toolkit2NP3TUS9Interface10deleteDataERNS1_19TusDeleteDataParamsEb) +STUB( + "jIBUnwny6-U", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeAccountId2OnlineIdBatch5setidENS1_6Common12IntrusivePtrINS6_6VectorINS6_6StringEEEEE) +STUB("jIFSq41pQdQ", _ZN3JSC7JSProxy14deletePropertyEPNS_6JSCellEPNS_9ExecStateENS_12PropertyNameE) +STUB("jIGIkc0WPZk", uprv_decNumberToInt32_67) +STUB( + "jILdhuGfRhg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "jIMqcuD-MPw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE5emptyEv) +STUB("jIUCt1KFUzo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEixEm) +STUB( + "jIYlTmXrdjI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEE11release_refEv) STUB("jIe8ZED06XI", sceUserServiceGetGlsCameraDepthLevel) +STUB("jIh0oWzlkf8", _ZNK7WebCore6Widget25convertToContainingWindowERKNS_8IntPointE) +STUB("jIjtYfrv7VU", _ZN7WebCore4Page25screenPropertiesDidChangeEv) STUB("jIlc4p5dSD0", sceAmprMeasureCommandSizeWaitOnAddress) +STUB("jImW-wfqIL8", _ZN7WebCore7Element18insertAdjacentHTMLERKN3WTF6StringES4_) +STUB( + "jIniuS7nvbM", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126PlayStylePropertiesFactory7destroyEPNS3_19PlayStylePropertiesE) +STUB("jIrXMDNIgFY", _ZNK7WebCore4Page22editableElementsInRectERKNS_9FloatRectE) +STUB( + "jIrtZ8RkXPM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("jIvWFH24Bjw", _ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2Em) +STUB("jJ-5qZRZKFo", _ZN7WebCore16commonMediaTypesEv) +STUB("jJ3pYnuJvfM", _ZNK3sce2Np9CppWebApi15Personalization2V15Error12messageIsSetEv) +STUB("jJ5O4VlfE1A", _ZN3sce7Toolkit2NP2V28Commerce8SkuLabelD2Ev) +STUB( + "jJ7MmzmN8CU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEptEv) +STUB("jJ7Sj2xq4GA", uprv_getUTCtime_67) +STUB("jJC7x18ge8k", hypotl) +STUB("jJD6oPDL0q0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEEC1EPS5_PFvS7_EPNS2_10LibContextE) +STUB( + "jJEgt9vx+j0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) STUB("jJH2P7KA4XU", sceNpLookupNetSanitizeComment) STUB("jJKMkpqQr7I", sceLibcHeapMutexFree) +STUB("jJLzd7jxXiM", _ZN7WebCore17makeBoundaryPointERKNS_15VisiblePositionE) STUB("jJP1vYMEPd4", sceMouseDisconnectPort) +STUB("jJZcBhJFh1U", _ZN3sce7Toolkit2NP2V210Tournament17TournamentDetailsC2Ev) +STUB("jJaUsDKcImo", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getPrimaryAudioStream) +STUB( + "jJch4XzE0x8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("jJePHioTWw0", WKImageCreateFromCairoSurface) +STUB("jJesZMTjJSA", mono_metadata_nesting_typedef) +STUB("jJh4SMt8NFQ", FT_Stream_ReadLongLE) +STUB( + "jJiz5donb-Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEED2Ev) +STUB("jJjpy8hpYCg", uprv_uint32Comparator_67) +STUB( + "jJkYhhiqmwc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEEaSERSA_) +STUB("jJtoPFrxG-I", _ZTSPc) +STUB( + "jJul76d7MDw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEEcvbEv) +STUB( + "jJuxbz0dPP4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) STUB("jJwavlmTirk", sceVnaUtilIsLanguageSupported) STUB("jJyVJyhi5h8", sceAgcDriverSubmitToRazorACQ) +STUB("jJzBpOjtmPc", _ZNK3sce2Np9CppWebApi6Common8IteratorIjEptEv) STUB("jK+yuYCI7MA", sceAmprCommandBufferWriteCounter_04_00) +STUB( + "jK6IYhNw4M8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEneERKS9_) +STUB( + "jKBIQCtXceU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEixEm) +STUB("jKDY+jQCWzE", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus10ownerIsSetEv) +STUB("jKGLuRzmQsM", _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody11setTicketIdEPKc) STUB("jKGq8JG6K1Q", sceDebugKillApplication) +STUB( + "jKHSaGRFyTs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEEC1ERS9_) +STUB( + "jKHrKYXskMk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEEptEv) +STUB("jKPJKar5yGY", _ZN3WTF9URLParser24internalValuesConsistentERKNS_3URLE) +STUB("jKQ4hTmAVyI", mono_aot_Mono_Data_Tdsmethod_addresses) +STUB( + "jKSASVEfO+g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEE11get_deleterEv) +STUB("jKb9gh+cHtg", _ZN22MmsMdCommonFsOperation17createCacheBufferERNS_18CreateBufferOptionE) +STUB( + "jKbJo5KPcEc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEppEv) +STUB("jKfv54X+wrE", spaces) STUB("jKgAUl6cLy0", sceAppMessagingReceiveMsg) STUB("jKnwOdgck5g", sceShellCoreUtilReleaseSharePlayCpuBudget) +STUB("jKnyH+dgLzE", _ZNK3sce2np9JsonValue7GetNullEv) +STUB("jKp6AIbh4go", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE8capacityEv) +STUB( + "jKx7fV+8I7E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEC1Ev) +STUB("jKyBhcGSfx0", _ZN3JSC18IncrementalSweeper13startSweepingEv) +STUB( + "jKyw1MX-a+U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEC2EPS8_) +STUB("jL9Mmajsnlg", ucptrie_get_67) +STUB("jLDCOND9BVc", ucase_isSoftDotted_67) +STUB( + "jLH3rqLI6cc", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations28unsetinvitationInvalidFilterEv) +STUB( + "jLK+jhEpTUA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE8capacityEv) +STUB( + "jLUHdC1+OI4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEE5resetEPS9_) +STUB("jLV2Nv3i98s", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBodyD1Ev) +STUB("jLYyt8tfmkE", _ZN3WTF20ParallelHelperClient13doSomeHelpingEv) +STUB("jLdgP59WuAo", _ZN13MsvMetaEditor14updateMetaDataEPtm) +STUB("jLew9e14VI8", SSL_CTX_get_ex_data) +STUB("jLfpJIx2rUE", udatpg_getBaseSkeleton_67) +STUB("jLm-QhaeIVw", _ZN7bmalloc29StaticPerProcessStorageTraitsINS_11AllIsoHeapsEE7Storage7s_mutexE) +STUB("jLmjAIno8oQ", WKPageRenderTreeExternalRepresentation) +STUB( + "jLn2yMvVQ0I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEE11release_refEv) +STUB("jLnpY6jw8GY", _ZN9Inspector18InjectedScriptHostD0Ev) STUB("jLpO843jV50", sceRemotePlayClientStopMicCapture) +STUB( + "jLqJcdPfJs8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEED2Ev) +STUB("jLtYjsSdMPs", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15NpSessionMemberEEneERKS4_) +STUB("jLuEYsdBXZE", _ZN3sce7Toolkit2NP17FriendInfoRequestC2Ev) STUB("jLx5qd4qyjk", sceDepthSubmit) +STUB( + "jM+puY0r19I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE5beginEv) +STUB( + "jM1GeUyL2ZI", + _ZN9Inspector23WorkerBackendDispatcherC1ERNS_17BackendDispatcherEPNS_30WorkerBackendDispatcherHandlerE) +STUB( + "jM5MFc0xB+0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEEC2Ev) +STUB("jM7P7VZVUEs", _ZN3sce6CanvasC2Ev) +STUB( + "jM7k1P3Uips", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEEC1Ev) +STUB("jM9QbqB-2Bk", WKErrorGetTypeID) +STUB("jMB7EFyu30Y", sincos) +STUB("jMF+SoTsf18", uprv_ebcdicFromAscii_67) +STUB("jMFGWezg5Sc", _ZN7WebCore18TextureMapperLayer15setDebugVisualsEbRKNS_5ColorEf) +STUB("jMHJh50C9Fg", uprv_timezone_67) STUB("jMNwqYr4R-k", sceRtcGetTickResolution) STUB("jMRcqynQVRI", sceNpManagerIntValidateCredential) +STUB("jMTGYftmbmw", mono_aot_Sce_Vsh_ShareGuideSceneplt_end) +STUB("jMWTTO6X-kw", _ZNK3sce3Xml3Dom8Document12getFirstAttrENS1_6NodeIdE) +STUB( + "jMhiLlXB5N8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEE7get_refEv) +STUB( + "jMo908ewPso", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEC1Ev) +STUB("jMu+DiqDZBs", _ZNK7WebCore9RenderBox12clientHeightEv) STUB("jMv40y2A23g", sceCameraSetDefectivePixelCancellation) STUB("jMxxNNLh6ms", sceNpMatching2SetRoomDataInternalExt) +STUB("jN8k1nPEVbA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEE5resetEPS6_) +STUB("jNF3HS1ziFs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEptEv) +STUB("jNHt+vQhaoM", _Z16WebViewBasGoBackii) +STUB("jNJiyHHKk4w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEEC1Ev) +STUB("jNLNgpietZc", __asan_stack_free_4) STUB("jNMdItooJzc", sceUltGetUlthreadInfo) +STUB("jNNcYJhzaww", _ZN3sce7Toolkit2NP2V210Wordfilter7Request13FilterCommentC2Ev) +STUB( + "jNOcGbzfoEc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("jNQBQ-mgcD4", _ZN12video_parser5vpcom13AtomicStore64EPyy) +STUB("jNUcZ32cUoI", _ZN7WebCore8SVGNames9orderAttrE) +STUB( + "jNUr08dPmHE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) STUB("jNcpGLqj6Qg", sceDeci4hDrfpTruncate) +STUB("jNfpnUiYz3w", fuse_reply_lock) +STUB( + "jNgSfVMI+Zw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE3endEv) +STUB("jNkXfZU3hzY", _ZN7WebCore16HTMLMediaElement14setCrossOriginERKN3WTF10AtomStringE) +STUB("jNnIm+e6ZBs", mono_thread_get_name_utf8) +STUB("jNrnCxGcXBE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEC1ERS7_) +STUB("jNsLCw-eHp8", _ZN3JSC14throwTypeErrorEPNS_14JSGlobalObjectERNS_10ThrowScopeE) +STUB("jO+toP4Qo+E", mono_aot_Sce_Vshunbox_trampolines_end) STUB("jO2tec4dJ2M", sceAudio3dObjectReserve) +STUB( + "jO5xrqYwcTA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEplEm) +STUB("jO6F+B5EbzU", _ZNK3sce3Xml13AttributeList11isAvailableEv) +STUB("jO7CDRdzrq0", + _ZNK7WebCore11CachedImage20imageSizeForRendererEPKNS_13RenderElementENS0_8SizeTypeE) STUB("jO8DM8oyego", sceNpEntitlementAccessInitialize) +STUB( + "jOJcY3oKczs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEC2Ev) +STUB("jOKRbJ0P+J0", _ZN3JSC7Symbols30asyncFunctionResumePrivateNameE) +STUB("jOL4KIYUvtM", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_15RankInformationEEC2Ev) +STUB("jON6hX0GtzE", _ZN3sce7Toolkit2NP2V210Tournament6EventsC2Ev) +STUB("jOVTkdrkn74", __asan_set_error_report_callback) +STUB( + "jOWLYWz1emk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEmmEi) +STUB("jOYMhC1OGl4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament7BracketEED2Ev) +STUB( + "jOa8LZhn-m0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB( + "jOhvAQUjH4I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEE11get_deleterEv) STUB("jOnUkmU6pyQ", sceAt9EncFlush) +STUB("jOqRbqTRABA", _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead11unsetMemberEv) STUB("jOsUG0BJI-Y", sceUltMutexTryLock) +STUB( + "jP+3Sv1SFMU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEC1Ev) +STUB( + "jP0pVvHxoWc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEmmEv) +STUB( + "jP2OMeJ0MpM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEC2EPS8_) +STUB("jPCM-elCY+c", _ZN3sce2np9JsonValue9SetNumberEPKNS0_10JsonNumberE) +STUB( + "jPCYM4FcQUU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEmmEv) +STUB("jPHPessHa1Q", _ZN9Inspector21InjectedScriptManagerD2Ev) +STUB("jPHbsQTmpAA", + _ZN7WebCore12SharedBuffer6createEON3WTF6VectorIcLm0ENS1_15CrashOnOverflowELm16EEE) +STUB( + "jPHnIGU9gKA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEC2EPKS8_) STUB("jPKapVQLX70", sceSystemServiceAddLocalProcessForJvm) +STUB( + "jPLQGNm6JF8", + _ZN9Inspector27DOMStorageBackendDispatcher17setDOMStorageItemElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "jPMPLSP8D-8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEC2ERS7_) +STUB("jPO4DqIdSig", _ZN3WTF8CollatorC2EPKcb) +STUB( + "jPOSOkRpM+g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEC2EPNS2_10LibContextE) +STUB( + "jPS4aMXpJwM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEED1Ev) +STUB("jPSW6OPwFSo", _ZN3WTF10StringImpl28convertToLowercaseWithLocaleERKNS_12AtomicStringE) +STUB("jPUHFmeAfHQ", _ZN7WebCore24CoordinatedGraphicsLayer29computeTransformedVisibleRectEv) +STUB( + "jPYDjkMb3qc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE6resizeEj) STUB("jPd1vzuldfM", sceUpsrvSwitchSystemExBankWithoutVerify) +STUB("jPjV-Uatsgg", mmap_np) +STUB( + "jPuYnwVszSI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "jPwD1pYdQvw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE8pushBackERKS8_) +STUB( + "jPxHmN-6b9Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEE7get_refEv) +STUB("jPywoVsPVR8", __clzti2) +STUB("jQ+9qmrfI-8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE8capacityEv) STUB("jQ0656do1V4", sceRegMgrToolGetUpdateCnt) +STUB("jQ06QCNi21g", pa_push_marker) STUB("jQ2n+Kj8H3c", sceMbusSetTestFlag) +STUB( + "jQ57KV0iVmE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "jQ9ZsXTn6RA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("jQCpiycj5t8", _ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_11TusVariableEE8max_sizeEv) +STUB("jQFLIRQ8qAw", _Z26VideoPlayerVcs_IsBufferingi) +STUB("jQKkZgDaCzI", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeINS1_11TusVariableEPvEE7addressERKS6_) +STUB("jQStelPITDc", _ZNK3JSC8Debugger24isInteractivelyDebuggingEv) +STUB( + "jQUpIMwnb-E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEEC2ERKSA_) STUB("jQcQgA0GJ6k", sceSystemServiceUsbStorageTerm) +STUB("jQei3eLolMU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEED2Ev) STUB("jQfM7t-YTxs", sceCtrlpRecStop) STUB("jQgukUzE180", sceFsGetFsMetadataWithProgress) +STUB("jQgy3-KO9qY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE5beginEv) +STUB("jQh1WaXmyHo", WKPreferencesSetIgnoreViewportScalingConstraints) +STUB("jQjAY7H3GOo", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE5emptyEv) +STUB("jQlQ4IR95YU", glTransformFeedbackVaryings) +STUB("jQlStFU3oQ0", JVM_GetMethodIxMaxStack) STUB("jQoaqzHYacc", sceBgftServiceDownloadResumeTaskAll) +STUB("jQuruQuMlyo", _Fetch_and_seq_cst_4) STUB("jQx7y+e2+Ww", sceDebugIpmiGetClientInfo) +STUB( + "jQxrl8o7BeI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEEC1Ev) +STUB("jR15qLz+GAs", _ZN3JSC29callHostFunctionAsConstructorEPNS_9ExecStateE) +STUB("jR4o9PMEJec", _ZN3sce7Toolkit2NP18GetUserFeedRequestC2Ev) STUB("jR6okvzdkvI", sceMbusEnterAudioOutAutoAttenuation) +STUB("jRKHSzq25WA", _ZN3WTF17GregorianDateTimeC2EdNS_15LocalTimeOffsetE) +STUB("jRLwj8TLcQY", _ZTVSt10bad_typeid) +STUB("jRQJBxPThdE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEC2ERKS7_) +STUB("jRX3E9YPAyk", _ZN7WebCore9DragImageaSEOS0_) +STUB("jRbcEntV74A", _ZN7WebCore9HTMLNames19ontransitionendAttrE) STUB("jRcI8VcgTz4", sceGnmSubmitCommandBuffersForWorkload) +STUB( + "jRg40WZmsNg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEaSERS7_) +STUB( + "jRgdKTEhoGs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEE3getEv) +STUB("jRhI-FXHpm4", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession16unsetCustomData1Ev) +STUB( + "jRhum45LpUY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEED2Ev) +STUB("jRlpsSgGxU0", _ZN7WebCore7PatternD2Ev) +STUB("jRon+xfcXtU", SSL_CTX_add_client_CA) +STUB( + "jRvPrag7z5k", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE5beginEv) +STUB( + "jRxS4pAFBMw", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEEC1Ev) +STUB("jS+3kWmWE3I", _ZN3WTF11Persistence7EncoderlsEt) +STUB("jS-45Q4H8Tw", WKWebsiteDataStoreSetStatisticsVeryPrevalentResource) +STUB("jS3kTN3n2ks", _ZN3sce7Toolkit2NP2V24Core12ResponseDataC1ERKS4_) +STUB("jS4vIPXC3Jc", _ZN7WebCore16ISOSchemeTypeBoxD0Ev) +STUB("jS5DA4y606Q", _ZN9Inspector30TargetBackendDispatcherHandlerD1Ev) +STUB( + "jSBhOonxXqI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE8copyFromERKS9_) +STUB("jSBmTubazDw", mono_bitset_free) +STUB("jSCucWQXbRg", EC_KEY_new) STUB("jSHMX1oSE+E", sceHttp2WebSocketSendTextMessage) +STUB("jSHXUR6tI8Q", fuse_fs_fsync) +STUB( + "jSIIEN5QYEM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEEC2Ev) +STUB( + "jSKdLNSnCyk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEC1EPNS2_10LibContextE) +STUB("jSKwfmNwSTY", WTFLogAlways) +STUB( + "jSLhwychOfw", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToSendPlayerSessionMessageaSERS5_) +STUB("jSNObmVweOI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEED1Ev) +STUB("jSP3jbv93y4", Java_java_lang_StrictMath_atan) +STUB("jSPir9Rql6s", GCC_except_table237) STUB("jSWBvOPfSOk", sceNotificationSend) STUB("jSZNP7xJrcw", sceVoiceUpdatePort) +STUB( + "jSbqSzk2Sc4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEC2EPKS8_) +STUB("jSddVL0G9xk", _ZN7WebCore14LoaderStrategyC2ERKS0_) +STUB( + "jSfKyd1dQOk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE6resizeEj) +STUB("jSkiWiKdm84", rgctx_fetch_trampoline_mrgctx_71_p) +STUB( + "jSm9zGuFAhQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("jSqP-fP6h9o", _Z31VideoPlayerVcs_GetLastErrorCodei) +STUB("jSquWN7i7lc", _ZSt4clog) +STUB( + "jSvL0ivhBRQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("jT09n9CQhnU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEC1ERKS7_) +STUB("jT1FV1SZsdQ", _ZN7Nicosia5Scene6createEv) +STUB("jT3xiGpA3B4", asctime) +STUB("jTBXdHpgJ2E", _ZN3sce7Toolkit2NP2V211SharedMedia10BroadcastsD2Ev) +STUB( + "jTEUBw5jo6g", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeaderC1Ev) +STUB("jTHEz19hsy0", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIjEC1EPKj) +STUB("jTIPn3+J6AI", mono_btls_x509_store_ctx_init) +STUB("jTItNnritjU", _ZThn112_N7WebCore18HTMLMarqueeElement4stopEv) STUB("jTJCdyv9GLU", sceCameraGetDeviceID) +STUB("jTKhlnqi5+o", crc32) +STUB( + "jTL4k5QUwm8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody32unsetComparedLastUpdatedDateTimeEv) +STUB( + "jTLh1Rt9BeA", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE18getResponseHeadersERSA_) STUB("jTNAhVZ-5Nc", sceSysUtilSendSystemNotification) +STUB("jTPE1AS7uak", __sys_workaround8849) +STUB("jTXs7HM6z30", _ZNK7WebCore18ImageBufferBackend10toBGRADataEPv) +STUB( + "jTcdCjMNdrk", + _ZN3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinition10initializeEPNS1_6Common10LibContextEi) +STUB( + "jTeqz+0Zzp0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEC1EPS8_) +STUB("jTfGj5oxOgw", _ZNK7WebCore16JSXMLHttpRequest8responseERN3JSC9ExecStateE) +STUB( + "jTp9bRVcYTw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB( + "jTq4vGQHi1k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEC2EPKS8_) +STUB( + "jTslSSGmsE8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEE5resetEPS6_) +STUB("jTuS-1iIK2Y", _ZN3JSC8toBigIntEPNS_14JSGlobalObjectENS_7JSValueE) +STUB( + "jU+u60bwEco", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("jU-dekw-sPc", mono_aot_Sce_Vsh_Np_RifManagerplt) +STUB("jU068RinINY", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEEcvbEv) +STUB("jU2YUZ4YNvY", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container14getReleaseDateEv) +STUB("jUMADs-SOQc", WKIconDatabaseSetIconURLForPageURL) +STUB("jUQ+FlOMEHk", _ZTSSt5ctypeIcE) +STUB( + "jURmdcSMv-s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE7popBackEv) +STUB("jUXCR9ZCsik", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product6toJsonERNS_4Json5ValueEb) STUB("jUYKhvT0-lg", sceSystemServiceUsbStorageUnregisterCallbackForMapUnavailable) +STUB( + "jUbhHKEa6ds", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE6resizeEj) +STUB( + "jUg8UjncEFI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE10setContextEPNS2_10LibContextE) +STUB("jUh2nDfmLFU", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEEptEv) +STUB( + "jUiRWnLDMtk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEmmEv) STUB("jUjp+yqMNdQ", sceHttpsSetMinSslVersion) +STUB("jUpGFXt4Hes", umtx_unlock) +STUB( + "jUwHfbICUDA", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS5_INS7_9RecordApi30RecordLargeDataResponseHeadersEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("jUxA6iA5PaM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEC1Ev) +STUB("jUxkuMrcdNA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersD1Ev) +STUB("jV-g6Ihe3aI", _ZN7WebCore22DefaultFilterOperationC2ENS_15FilterOperation13OperationTypeE) +STUB("jV0eSdr+08k", _ZTVN7WebCore11DisplayList17FillRectWithColorE) +STUB("jV5C1zw4fl8", _ZN3JSC7Symbols54promiseResolveThenableJobWithoutPromiseFastPrivateNameE) STUB("jV6nu+8j1BU", sceEsvmEngineDestroyMediaKeySystemAccess) +STUB("jV8ekjzt5-c", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEEC2ERS7_) +STUB( + "jVAHWDMsX2c", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser9getfieldsEv) STUB("jVCWcthifr8", sceAjmBatchJobRun) +STUB("jVDuvE3s5Bs", _Fofree) +STUB( + "jVGR07f0IXg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEptEv) +STUB("jVJKlbmOEn4", usearch_open_67) +STUB( + "jVLwbOfrCI0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEdeEv) +STUB( + "jVNXLAg0cDw", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Network7Metrics8PriorityEEESt8optionalIT_ERKN3WTF6StringE) +STUB( + "jVNxaYJcgOQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEC1EPKS8_) +STUB("jVS263HH1b0", expm1l) +STUB( + "jVSfXfl5ixY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEC1ERS8_) +STUB("jVVvn4k5dh4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEEC2EPS6_) +STUB( + "jVZyZx13IYc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEeqERKS9_) +STUB( + "jVaTwiqls1Q", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC2ERKSC_) +STUB("jVdD5Xr7il4", _ZN7WebCore20PasteboardCustomData5EntryaSEOS1_) +STUB("jVg6F-8c6oo", xmlCtxtGetLastError) +STUB("jVhP7R+t-Jc", mono_btls_x509_name_get_entry_type) +STUB("jVhdw7Uv+-s", _ZN12video_parser10cVideoPath10InitializeEv) +STUB("jVj7jqD9mq0", _ZN7WebCore10Pasteboard4readERNS_20PasteboardFileReaderEN3WTF8OptionalImEE) +STUB("jVkiIghRo9w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEE5resetEPS6_) +STUB("jVqXnsWisS0", _ZN7WebCore6Editor24isSelectionUngrammaticalEv) +STUB("jVwOsdqhB2E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEdeEv) +STUB("jVwrGgi4kF0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEEC1EPKS6_) +STUB("jVwxMhFRw8Q", _ZNSt24_Iostream_error_categoryD0Ev) STUB("jW+HnafeS3Y", sceUltMutexDestroy) +STUB("jW+Posgqpr0", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE4sizeEv) +STUB("jW1ywJJNtdo", mono_parse_env_options) +STUB("jW3twTLXepQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEEdeEv) +STUB("jWIWvcr-3nk", delegate_virtual_invoke_imt_m_13) STUB("jWKXzwE1M+8", sceCesUtf16beToEucJp) STUB("jWKiCTjC-us", sceHmdGetDistortionCorrectionCommand2d) +STUB( + "jWRehRraP0U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEmmEi) +STUB("jWSGkxnrdis", _ZN3WTF8JSONImpl5ValueC2Ei) +STUB("jWX53VLp-tg", JVM_GetCPFieldNameUTF) +STUB("jWbsjXK8Tu4", g_strdup_vprintf) STUB("jWd9FwvNv4E", sceSpGetPid) +STUB( + "jWjgWn1Kh80", + _ZN8meta_gen11MsvPromoter25setKeyValue_TBLV_DeviceIdENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB( + "jWoEUlPhgDo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE21intrusive_ptr_sub_refEPS9_) +STUB("jWoi+KzyT8M", + _ZN3sce2Np9CppWebApi11UserProfile2V111PresenceApi28ParameterToGetBasicPresences9terminateEv) STUB("jWpkVWdMrsM", sceRazorCpuStopCaptureInternal) +STUB("jWqU2e5DkKs", mono_aot_Sce_Vsh_Orbis_AbstractStoragejit_got) +STUB("jWt2IdZj0-c", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container17getTotalItemCountEv) STUB("jWvPL6uPnWk", scePlayReadyDebugSetLevel) +STUB("jWvXh3q7dSA", _ZN3NTF17URLRequestDataJobD2Ev) +STUB("jWylMa2FtuA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEED1Ev) +STUB("jX1zq1i8KfI", FT_Stream_Pos) +STUB( + "jX24rCuZGrE", + _ZN7WebCore27ScrollingStateScrollingNode27setScrollableAreaParametersERKNS_24ScrollableAreaParametersE) +STUB( + "jX6HZUWtU8g", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi15recordLargeDataEiRKNS4_26ParameterToRecordLargeDataERNS1_6Common19UpStreamTransactionINS8_12IntrusivePtrINS3_27RecordLargeDataResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("jX9BcvSoZhU", __d2b_D2A) +STUB( + "jX9IRI5U3-o", + _ZNK7WebCore21ContentSecurityPolicy20allowConnectToSourceERKNS_3URLENS0_24RedirectResponseReceivedE) +STUB( + "jXCoXZB1-Wg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEEptEv) +STUB( + "jXEIM3umDyQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEC2EPNS2_10LibContextE) +STUB( + "jXI9GGTxNUY", + _ZN3JSC23SimpleMarkingConstraintC1EN3WTF7CStringES2_NS1_8FunctionIFvRNS_11SlotVisitorEEEENS_20ConstraintVolatilityENS_21ConstraintConcurrencyENS_21ConstraintParallelismE) +STUB( + "jXKnl9o+Qr0", + _ZN3JSC7JSProxy19getOwnPropertyNamesEPNS_8JSObjectEPNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("jXOWuBDaGRM", _ZN7WebCore11FontCascade18shouldUseSmoothingEv) +STUB("jXULZmpg-7E", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_playPlayListAtTime) STUB("jXUeCRu7DLE", sceNpSnsYouTubeAbortRequest) +STUB("jXVfFs6zVUs", _ZN4Manx11MediaSourceD0Ev) +STUB( + "jXWFpi-TbU0", + _ZN9Inspector32ScriptProfilerFrontendDispatcher16trackingCompleteEdN3WTF6RefPtrINS_8Protocol14ScriptProfiler7SamplesENS1_13DumbPtrTraitsIS5_EEEE) +STUB("jXYtyfAp-n4", _ZN3sce2Np9CppWebApi14SessionManager2V15ErrorD2Ev) +STUB( + "jXbGSQ-LUFw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEppEi) +STUB( + "jXbXTCEv5bw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEEaSERKSA_) +STUB("jXck72ej7tM", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt6vectorI16SceNpTusVariableNS2_IS4_EEEE7addressERS6_) +STUB( + "jXeUt3juQNY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEEC2ERSA_) +STUB( + "jXf0jcry1As", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE8copyFromERKS9_) +STUB("jXkt81d8RC8", _ZNK7WebCore8Settings16showDebugBordersEv) +STUB( + "jXoKpPJW6Ic", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE5clearEv) +STUB("jXqaYpt53+Q", _ZN3JSC7Symbols21replaceAllPrivateNameE) STUB("jXx0+2Wd1q8", sceNpAppInfoIntCheckAvailabilityAll) +STUB("jXzd4Vr8qeY", + _ZN3sce2Np9CppWebApi14SessionManager2V136GetFriendsPlayerSessionsResponseBodyD1Ev) +STUB("jXznE6+t4Mk", _ZN7WebCore17FrameLoaderClient27registerForIconNotificationEv) +STUB("jY4A0HXFXpE", + _ZN7WebCore11FrameLoader17HistoryController18replaceCurrentItemEPNS_11HistoryItemE) +STUB( + "jYAXNHlcQAc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEneERKS9_) STUB("jYBiA3W7x30", sceDeci4hDrfpStat_fuse_fullpath) +STUB( + "jYC+Zh-dNcI", + _ZN7WebCore17JSDOMGlobalObject34reportUncaughtExceptionAtEventLoopEPN3JSC14JSGlobalObjectEPNS1_9ExceptionE) +STUB("jYCmAtmNalY", _ZN3sce7Toolkit2NP2V211UserProfile10NpProfilesC1ERKS4_) +STUB("jYFpdilteh4", _ZN3JSC17DebuggerCallFrame10invalidateEv) +STUB("jYMHntdiuBM", _ZN7WebCore13AXObjectCache42gAccessibilityEnhancedUserInterfaceEnabledE) +STUB( + "jYbHjZtPwvY", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession30unsetExclusiveLeaderPrivilegesEv) +STUB("jYgqDP6yoTY", mono_aot_Sce_PlayStation_Orbisplt_end) +STUB("jYo1kdU3L-E", _ZNK9Inspector15ScriptCallStack23firstNonNativeCallFrameEv) +STUB("jYtnpP2ZoSE", _ZN3sce7Toolkit2NP2V27Session8SessionsC1Ev) +STUB("jYzYJ61Srik", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetBoolean9Ev) +STUB( + "jZ838fMhh28", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("jZBVyPKnwBc", _ZNK3sce2Np9CppWebApi7Matches2V116RequestMatchTeam12membersIsSetEv) STUB("jZCqWFgMehE", sceNpUniversalDataSystemAbortHandle) +STUB("jZGAl9Y-FkM", _ZN7WebCore21JSCSSStyleDeclarationD1Ev) +STUB("jZHHqNYIsx0", _ZNK7WebCore3URL16isMatchingDomainERKN3WTF6StringE) +STUB("jZHntoV85Ms", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEEC1Ev) STUB("jZJnaQWvQO0", sceAudioOutSetJediSpkVolume2) +STUB("jZMYE8t5sW4", mono_aot_Sce_Vsh_FileSelectorjit_got) +STUB("jZO4ymTXMUo", uscript_isRightToLeft) +STUB( + "jZOsBbRONxc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE7reserveEi) +STUB("jZRyJ1VcPnA", _ZNK7WebCore19ResourceRequestBase10httpMethodEv) +STUB("jZceLU9Ao5Y", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification14NewRoomMessageEE5resetEv) +STUB("jZmLD-ASDto", _ZNKSt19istreambuf_iteratorIwSt11char_traitsIwEE5equalERKS2_) +STUB("jZoqmO5SMQQ", _ZN3sce2Np9CppWebApi7Matches2V111AddedPlayer13setPlayerTypeERKNS3_10PlayerTypeE) +STUB( + "jZyhw-SfSmo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("ja-Nmtu-jG8", d2i_X509) +STUB("ja0sFTz6m9Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEEppEi) +STUB("ja0ysg7RR10", _ZNK7WebCore29DeprecatedCSSOMPrimitiveValue12getRectValueEv) +STUB("ja5EfaZTumE", _ZN7WebCore8SVGNames15feDropShadowTagE) +STUB("ja9COzu+aKM", _ZN4Manx11MediaPlayer10readyStateEv) +STUB( + "jaI3deHC5cY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEE21intrusive_ptr_sub_refEPS7_) +STUB("jaI86M1s1wQ", _ZN3sce7Toolkit2NP2V29Messaging7Request17LocalizedMetadataD1Ev) +STUB( + "jaKntTawnMo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEmmEi) +STUB("jaLGUrwYX84", _ZGVNSt7collateIwE2idE) +STUB("jaNWyA8gAxo", uloc_openKeywords) +STUB("jaPCK8Lw-3E", __asan_region_is_poisoned) +STUB("jaQ3h3J4zd4", WKBundlePageForceRepaint) +STUB( + "jaS2Rspvp98", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEEptEv) +STUB( + "jaVd5xkK0tU", + _ZN3sce2Np9CppWebApi12Leaderboards2V111UserFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_4UserEEE) STUB("jaYypweDbyA", sceDbgGetReleaseCheckMode) +STUB("jaa1AktSI-g", _ZN7WebCore30InspectorInstrumentationPublic12hasFrontendsEv) +STUB("jabcrdjwdUs", _ZN7WebCore11ImageBufferD0Ev) +STUB("jachrbjpHnM", __asan_destroy_fake_stack) +STUB("jadS3Vb4gdk", _ZN7WebCore14ScrollableArea17willEndLiveResizeEv) STUB("jaf5nhLNbU4", sceShellUIUtilCreateTaskToken) +STUB( + "jagz1B7ZpgY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB("jajO-tAdNek", _ZN7WebCore20httpHeaderNameStringENS_14HTTPHeaderNameE) STUB("jajhf-Gi3AI", sceGnmDrawInitToDefaultContextStateInternalSize) +STUB( + "japnYgiHSSY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB("japr92PDRTM", + _ZN7WebCore22externalRepresentationEPNS_5FrameEN3WTF9OptionSetINS_16RenderAsTextFlagEEE) +STUB("jatbHyxH3ek", _Xp_mulx) STUB("jautSRs4OdQ", sceNpEntitlementAccessRequestUnifiedEntitlementInfo) STUB("jayvY07C5dk", sceFiosStatSync) +STUB("jaz93yK4a10", _LLgamma_big) +STUB("jb+IRdsgPW8", JSContextGetMemoryUsageStatistics) +STUB("jb-dzmnHPsU", _ZN7WebCore23CoordinatedImageBacking9markDirtyEv) +STUB("jb6LuBv9weg", CA_MGMT_convertPKCS8KeyToKeyBlob) +STUB("jb6ic-qbD30", + _ZN3sce2Np9CppWebApi7Matches2V120RequestPlayerResultsC2EPNS1_6Common10LibContextE) +STUB( + "jb7RCypuNh4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEEC1ERS9_) +STUB("jb8DgWul3oo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEC1EPKS8_) +STUB( + "jb8xgco8bvE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEED2Ev) STUB("jbAqAvLEP4A", scePadResetOrientationForTracker) +STUB("jbGv+QGGopI", png_get_uint_32) +STUB("jbQiWutzLek", _ZNK3JSC4Heap15isAnalyzingHeapEv) +STUB("jbW4cndvXzA", mono_aot_Sce_PlayStation_PUIPlatformunbox_trampoline_addresses) +STUB("jbYN2b1xRik", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEED1Ev) +STUB("jbZom6ZMBR8", WKRenderObjectCopyTextSnippet) +STUB( + "jbZx1TYBtpo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE5clearEv) +STUB("jbgqYhmVEGY", posix_spawnattr_getschedparam) +STUB("jbj2wBoiCyg", snwprintf_s) +STUB("jbjU4LIcU2Y", + _ZN7WebCore11DisplayList8ReplayerC1ERNS_15GraphicsContextERKNS0_11DisplayListEPNS1_8DelegateE) +STUB( + "jbjgDgqLVGk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEmmEi) STUB("jbkJFmOZ9U0", sceVoiceResumePortAll) +STUB( + "jbkJK37Hg9Y", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEEC1ERKSB_) +STUB( + "jbkPVI0N18Y", + _ZN3JSC8JSObject25getStructurePropertyNamesEPS0_PNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("jbkqtarv--A", WKBundleBackForwardListGetBackListCount) +STUB( + "jbozgXRugWU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEppEv) +STUB("jbrhzpESHMI", _ZN3WTF16registerGCThreadENS_12GCThreadTypeE) +STUB( + "jbtZsZc96Nw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE5emptyEv) +STUB("jbz9I9vkqkk", vsprintf) +STUB( + "jc3-FB1Ma+8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEEC1ERSA_) +STUB( + "jc4V+AxYNvM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEC1ERKS7_) +STUB("jc4ggMSeqqQ", _ZN7WebCore11MathMLNames9closeAttrE) +STUB("jc7L3HSltT0", _ZNK3sce3Xml3Dom8NodeList11isAvailableEv) +STUB("jc7wDa3P+CU", _ZN7WebCore17FrameLoaderClientD0Ev) +STUB( + "jcAYvQKjwS0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB("jcBgznNmWQU", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData9getslotIdEv) +STUB( + "jcD0G+yL1cU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE5beginEv) +STUB("jcJP8aGqJsE", _ZN3sce7Toolkit2NP2V28Matching4RoomC1ERKS4_) +STUB("jcMzMcZRt-Y", _ZNK3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead11getPlatformEv) +STUB("jcPO4bt5i3o", _ZN3sce2np8HttpFile5CloseEv) +STUB("jcUzfWh26pM", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_10TrophyInfoEED2Ev) +STUB("jcWDNcXLVjE", ucol_getTailoredSet_67) +STUB( + "jcYrwmxaaVI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEC1EPNS2_10LibContextE) +STUB( + "jcb6Ugvihag", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEC1EPS8_) STUB("jce1Jhbmj7Q", sceNpManagerIntGetTemporarySsoToken) +STUB("jch+HROEKCc", _ZN7WebCore24CoordinatedGraphicsLayer10setFiltersERKNS_16FilterOperationsE) +STUB( + "jcoutV+SGPo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("jct5WjixLgk", ntohl) +STUB("jcve0Kuqci0", Java_java_lang_Throwable_getStackTraceElement) +STUB("jcvh+HnDn7w", _ZN3sce2Np9CppWebApi13InGameCatalog2V511ErrorEntityC2EPNS1_6Common10LibContextE) +STUB("jcwLN-bFEMA", _ZN9Inspector35DOMDebuggerBackendDispatcherHandlerD2Ev) +STUB( + "jcwM0gqvQBc", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot13hasaccountIdsEv) +STUB("jd5v8BPYQds", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEC1ERKS7_) +STUB("jd8tpwH5a2g", _ZN7WebCore9HTMLNames7revAttrE) +STUB("jdC8IMz6aBk", PubSubUnsubscribe) +STUB( + "jdEZBG55uJI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEeqERKS9_) +STUB( + "jdEbTdOhlqI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEneERKS9_) +STUB("jdGvoF4H1Ns", rgctx_fetch_trampoline_rgctx_9) +STUB("jdKlGaUSjOw", _ZN3WTF7RunLoop7currentEv) +STUB( + "jdOvdDTT1wU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEE3getEv) +STUB("jdXXSQ8KE3o", + _ZThn24_N9Inspector22InspectorDebuggerAgent24continueUntilNextRunLoopERN3WTF6StringE) +STUB("jdh4kGVK3gI", monoeg_g_file_open_tmp) STUB("jdhjw0pRmyQ", sceG2PDialogTerminate) +STUB( + "jdl-ZMniW9Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEppEi) +STUB("jdq6RpvPDvE", mono_profiler_load) +STUB("je5LZGQ1CMI", _ZNK7WebCore9FrameView11needsLayoutEv) +STUB("je9kILAb5Ug", rgctx_fetch_trampoline_rgctx_122) +STUB( + "jeFDKj6oceQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("jeThsDH9l6Y", _ZN7WebCore6Editor30deleteSelectionWithSmartDeleteEbNS_10EditActionE) +STUB( + "jeTmJ2zUyJ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) STUB("jeTpU0MqKU0", sceCameraSetForceActivate) +STUB( + "jeVM-OINtp0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEEC1Ev) +STUB("jeXP7LTBe6E", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119ChildActivityStatusEEdeEv) +STUB("jefrnRrBwwM", WKUInt64GetTypeID) STUB("jeigLlKdp5I", sceVideodecFlush) +STUB( + "jekg6a2C-KE", + _ZN15AbstractStorage14MemfileContent14CreateInstanceESbIcSt11char_traitsIcENS_8StlAllocIcEEEN3paf6common9SharedPtrINS6_6BufferEEE) +STUB( + "jenumiWfP70", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEE11release_refEv) +STUB("jeoSfwwjVlQ", mono_aot_Sce_Vsh_PsnMessageUtilunbox_trampolines) +STUB("jerxcj2Xnbg", _ZNSt13basic_filebufIcSt11char_traitsIcEE9pbackfailEi) +STUB( + "jewHyldkY+g", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) STUB("jex0a4BzZiM", sceRnpsAppMgrRemoveAppOnSystemShutdown) STUB("jf4TB2nUO40", sceHttpSetAuthInfoCallback) +STUB("jf589k-x-q4", + _ZN12video_parser18cProfileCheckerMp419isPlayableThumbnailERKNS_13VpMediaInfo_tE) +STUB( + "jf916Kv0ILY", + _ZN3WTF20ParallelHelperClient7setTaskENS_6RefPtrINS_10SharedTaskIFvvEEENS_13DumbPtrTraitsIS4_EEEE) +STUB("jfCufYd0-+s", _ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody7setPcIdERKi) +STUB( + "jfJ8RYBo8XE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEC2Ev) +STUB( + "jfN6rywcE5w", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("jfRI3snge3o", _Thrd_sleep) STUB("jfRO0uTjtzA", sceRtcGetWin32FileTime) STUB("jfTBAvEcfpE", sceCesRefersUcsProfileCp1254) +STUB("jfUA+iYJCBE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEmmEv) +STUB( + "jfXQNy1CR-A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEppEv) STUB("jfYfik4AEMc", scePsmKitFontConfigGetAttr) +STUB( + "jfbNDMB90Zo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEE7add_refEv) +STUB( + "jfbPuzCqvk0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEppEi) +STUB( + "jfd2kyA5Lzc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("jfeZA8a0GbA", _ZN3WTF15ThreadConditionD1Ev) +STUB("jffxYQ7TikE", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V113AttributeTypeEEppEi) +STUB( + "jfgiDIEwDvY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("jfh8PcEzFI0", _ZN3sce7Toolkit2NP2V27Session16FixedSessionDataD1Ev) +STUB("jfhp+dXY4Ek", + _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi22ParameterToCreateMatch13isInitializedEv) +STUB( + "jfi9uO8whfg", + _ZN9Inspector25NetworkFrontendDispatcher34webSocketHandshakeResponseReceivedERKN3WTF6StringEdNS1_6RefPtrINS_8Protocol7Network17WebSocketResponseENS1_13DumbPtrTraitsIS8_EEEE) +STUB( + "jflEU85sMoE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEEaSERKSA_) STUB("jfnS-OoDayM", sceHmdInternalSeparateModeSendVideo) +STUB("jfpSx14AeLc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEppEv) +STUB("jfq92K8E1Vc", + _ZZNSt13basic_filebufIcSt11char_traitsIcEE5_InitEP7__sFILENS2_7_InitflEE7_Stinit) +STUB("jfqTdKTGbBI", _ZTIPKw) +STUB("jfqXivaARwE", __tsan_atomic16_exchange) +STUB("jfqq1qgjE58", _ZN3sce2Np9CppWebApi7Matches2V117ResponseMatchTeamC1EPNS1_6Common10LibContextE) +STUB("jfr41GGp2jA", _ZNSt13basic_filebufIcSt11char_traitsIcEE5uflowEv) +STUB("jft8RCvQ6z4", rgctx_fetch_trampoline_rgctx_86_p) +STUB("jfw9-tDYsTs", u_isalnumPOSIX_67) +STUB( + "jg0nwELpUFA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEE7get_refEv) +STUB( + "jg1eAdVUXwM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEE11release_refEv) STUB("jg33rEKLfVs", sceGnmIsUserPaEnabled) +STUB( + "jg4gYF+JTjw", + _ZN3sce7Toolkit2NP6Trophy9Interface20trophyRetrieveGroupsEPKNS1_26RetrieveTrophyGroupRequestEPNS1_9Utilities6FutureINS1_15TrophyGroupInfoEEEb) +STUB( + "jg6YZkhydOQ", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUser12setaccountIdEPKc) +STUB("jg9yNYDZW-U", _ZN7WebCore9HTMLNames16onratechangeAttrE) STUB("jgAyn4OgfSI", sceFrontPanelDisplayStickReadState) +STUB("jgBP1LmAL8o", ucnv_close_59) +STUB( + "jgD3qQ5tDcg", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("jgEmbkCl-4c", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEcvbEv) +STUB( + "jgFIudSGdOI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB( + "jgFyYKuSIds", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEaSERS7_) +STUB("jgHh6iq6MwI", _ZN3WTF7CPUTime3getEv) +STUB( + "jgIZ-umm-ls", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEeqERKS9_) +STUB("jgO+nc-VCgU", _ZNK15AbstractStorage14YoutubeStorage13GetCapabilityEv) +STUB( + "jgPIFDxDHOE", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEEiRNS2_10LibContextEPT_m) +STUB( + "jgQEnPbn5PU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE5beginEv) +STUB( + "jgRTipJXyTI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("jgSVnCNr55o", _ZN7WebCore11HistoryItem30setShouldRestoreScrollPositionEb) +STUB( + "jgVMyJCHHJM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEEptEv) STUB("jgYD8N1DILg", sceKernelGetCompiledSdkVersionByPath) +STUB("jgYSLQl5Ii8", UDataMemory_createNewInstance_67) +STUB( + "jgfcZXdjBsU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEptEv) +STUB("jgfeHk2L+VY", _ZN14OpaqueJSString6createERKN3WTF6StringE) +STUB("jggcz23NvZY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEE7get_refEv) +STUB( + "jgkzt86pH6U", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEptEv) +STUB("jglEOBFFdTw", Java_java_net_PlainDatagramSocketImpl_socketGetOption) +STUB( + "jglL0J-9wvA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEneERKS9_) +STUB("jgnKK+Q5hXs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEppEv) +STUB( + "jgnPYLJv7+o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEE3getEv) STUB("jgpc-w4H7FU", sceAutoMounterClientInit) +STUB("jgqRtyNvQ14", _Z12getIpcPathExiiiPKciPc) +STUB("jgrJPZW1x8o", _ZN7WebCore20PasteboardCustomDataD1Ev) +STUB("jgryNP7RXMA", _ZN3sce2Np9CppWebApi14SessionManager2V129PostPlayerSessionsRequestBodyD2Ev) +STUB("jgsEbwRfkVY", _ZN3sce7Toolkit2NP2V28Commerce13CategoryLabelD1Ev) +STUB("jgt9K5OHpVI", WKPreferencesSetPunchOutWhiteBackgroundsInDarkMode) +STUB("jgtWHChq7Rs", _ZN7WebCore15DatabaseTracker8setQuotaERKNS_18SecurityOriginDataEy) STUB("jh+8XiK4LeE", sceKernelIsAddressSanitizerEnabled) +STUB("jh1KeENZShs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEE7get_refEv) +STUB( + "jh1nnCha380", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEED2Ev) +STUB( + "jh7Gzz946YM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEE11get_deleterEv) +STUB("jhD+lV2vx0U", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIfEeqERKS4_) +STUB( + "jhFjMdhkz0k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEixEm) +STUB("jhGfpXqrWwE", Java_java_lang_StrictMath_cosh) +STUB( + "jhJiqh4Ayu0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEE7add_refEv) +STUB( + "jhRbhvtOdgQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEEaSERKSA_) +STUB( + "jhUNGv8UUX8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEEdeEv) STUB("jhXKGQJ4egI", sceNpWebApiRegisterExtdPushEventCallbackA) +STUB("jhYlRq9ZfZQ", _ZN7WebCore11DisplayList13StrokeEllipseD0Ev) +STUB("jhazuSL1nA8", uprv_decNumberXor_67) +STUB("jhh8iMrVDQ0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS15TusDataStatusesEEC1Ev) +STUB("jhinn3TXn5g", _ZN7WebCore16FontCascadeFontsD1Ev) +STUB( + "jhmORf0UyFg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEixEm) +STUB("jhpc26P+NLI", u_fprintf_67) +STUB( + "jhqMzCnea+8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEEC2ERSA_) STUB("jhy6fa5a4k4", sceUserServiceSetThemeHomeShareOwner) +STUB( + "ji-Ce+ndrUg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEEC1ERSA_) +STUB( + "ji6LoK55PRk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEED2Ev) +STUB("jiDXPHMvziA", _ZN3sce2Np9CppWebApi6Common6Binary21intrusive_ptr_add_refEPS3_) +STUB( + "jiGF1o2Yhdw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEC1Ev) STUB("jiItzS6+22g", sceGnmInsertSetMarker) +STUB("jiJJmEiTth8", MASSMADeleteMessage) +STUB("jiMIvs9-MGg", _ZN3sce7Toolkit2NP2V210Tournament17TournamentDetailsaSERKS4_) STUB("jiMNYgxzT-4", sceUserServiceSetFaceRecognitionRegisterCount) +STUB("jiOGjZPAc-s", _ZN7WebCore21DiagnosticLoggingKeys24networkProcessCrashedKeyEv) +STUB("jiOeDsjiDkY", _ZN3WTF11Persistence5CoderISt5arrayIhLm20EEE6encodeERNS0_7EncoderERKS3_) +STUB("jiS8qhpykyc", + _ZN7WebCore11FrameLoader32setOriginalURLForDownloadRequestERNS_15ResourceRequestE) +STUB( + "jifF1f8RGD4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "jigw9ZnDKLA", + _ZN7WebCore11MemoryCache19getOriginsWithCacheERN3WTF7HashSetINS1_6RefPtrINS_14SecurityOriginENS1_13DumbPtrTraitsIS4_EEEENS_18SecurityOriginHashENS1_10HashTraitsIS7_EEEE) STUB("jihale46s9E", sceClPthreadAttrSetdetachstate) +STUB("jisqpUJlaPA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUserD1Ev) +STUB("jiuuJN7Ux0Q", AsyncStorageCloseNative) +STUB("jj+cNXH2UeU", unorm2_getNFKCInstance_67) +STUB("jjBI4VL3Nu0", ubidi_getParaLevelAtIndex_67) STUB("jjBVvPN9964", sceNgs2VoiceGetMatrixInfo) +STUB( + "jjFHXilabRk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEmmEi) STUB("jjFahkBPCYs", sceHttp2SetAuthEnabled) +STUB( + "jjIWNxOmWqw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEC1EPKS8_) +STUB("jjSAuJJ+9h8", mono_aot_JSC_Netunbox_trampoline_addresses) +STUB("jjaYX30PKz4", _ZN12video_parser5vpcom3rtc13TickAddMonthsEPmPKmi) +STUB( + "jjb7ycMDC+A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEEC1Ev) +STUB( + "jjddXbH1qVg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE8pushBackERKS8_) STUB("jjf1gXgilqg", sceBdSchedCancelBackgroundCopyRequest) +STUB("jjfQmeS1O8Y", mono_get_intptr_class) +STUB("jjjRS7l1MPM", _FLog) STUB("jjkCjneOYSs", sceVoiceGetVolume) +STUB("jjpTY0fRA44", _ZN3sce2np13NpAccessToken14GetAccessTokenEPNS0_6HandleERKNS0_4UserEPS1_) +STUB( + "jjqPvITxdRE", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEiRNS2_10LibContextEPT_m) +STUB("jjz2C1StauM", FcLangSetCreate) STUB("jjzbvzquenM", sceFiosFHOpenWithMode) +STUB( + "jk+UGESd3ao", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE5beginEv) +STUB("jk04YK+R0HU", _ZN9Inspector26DebuggerFrontendDispatcherdlEPv) +STUB( + "jk0RviXBjhQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE5beginEv) +STUB("jk3UFtmPWOg", _ZN4IPMI4impl11SessionImpl10initializeEPKNS1_6ConfigEPNS0_10ServerImplEPv) +STUB( + "jkBOKeSwchc", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations26getinvitationInvalidFilterEv) +STUB( + "jkBwkJmmdbI", + _ZN7WebCore26TextManipulationController24startObservingParagraphsEON3WTF8FunctionIFvRNS_8DocumentERKNS1_6VectorINS0_16ManipulationItemELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEEEEEONS5_INS0_13ExclusionRuleELm0ES7_Lm16ES8_EE) +STUB( + "jkJjSy88H1w", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V345CommunicationRestrictionStatusResponseFactory7destroyEPNS3_38CommunicationRestrictionStatusResponseE) +STUB("jkO72oOjZlY", _ZN9Inspector22InspectorDebuggerAgent5pauseERN3WTF6StringE) +STUB( + "jkPeyZRxmwU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEED2Ev) STUB("jkQKWQTOu8g", sceNpManagerIntGetOnlineIdInternal) +STUB( + "jkUOu25wwM0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEppEi) STUB("jkV8zFTpxIk", sceDebugCancelCoredump) +STUB( + "jkXwOdOGkGc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEED1Ev) +STUB("jkdXvsmjI74", mono_btls_x509_chain_up_ref) +STUB("jkeLboYmJTI", _ZN3sce7Toolkit2NP2V210Tournament5EventD2Ev) +STUB("jkegjwQVzUM", WKBundlePageSizeAndMarginsInPixels) +STUB( + "jkeheyJKYgs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEeqERKS9_) +STUB( + "jki6RR3svHs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("jkrrIsrKdVg", _ZNK7WebCore21ISOTrackEncryptionBox20defaultSkipByteBlockEv) STUB("jktCMQNgyFc", sceShellCoreUtilActivateIsActivated) STUB("jktww3yJXnc", sceNpBandwidthTestInitStart) +STUB("jkvg3EDhNLU", _ULx86_64_dwarf_put_unwind_info) +STUB("jkw52aHWgtk", BgsStorageFreeListResult) +STUB("jl0VxYZb8-o", FT_Stream_GetChar) +STUB("jlFtUo2MG+Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEixEm) +STUB( + "jlG9ddD36XI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE8copyFromERKS9_) +STUB("jlIfgOEzZ2A", DisableSystemMedia) +STUB("jlJPZ9mRugo", _ZN7WebCore16createFullMarkupERKNS_5RangeE) +STUB("jlNI3SSF41o", _ZTVSt7codecvtIDsc9_MbstatetE) +STUB("jlNozzKfEHI", _ZN7WebCore20SharedBufferDataViewaSERKS0_) +STUB( + "jlUSb0UOzmo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEED2Ev) +STUB( + "jlWU4nh1Zus", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEEC1Ev) +STUB( + "jla7uPPtZqE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEcvbEv) +STUB("jldKqW11J48", _ZN3sce7Toolkit2NP2V26Friend7Request26DisplayFriendRequestDialogC1Ev) +STUB("jli9Oz8s228", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V116TaskAvailabilityEEppEv) +STUB("jliSfePg28E", WKContextConfigurationSetCustomClassesForParameterCoder) +STUB( + "jliguI-f69Y", + _ZN3sce2Np9CppWebApi14IdentityMapper2V318OnlineIdMapFactory6createEPNS1_6Common10LibContextERK13SceNpOnlineIdPNS5_12IntrusivePtrINS3_11OnlineIdMapEEE) +STUB("jlpne2VzubQ", _ZN3sce7Toolkit2NP22SearchNpSessionRequestC2Ev) +STUB( + "jlqIAC9DL+I", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEEiRNS2_21DownStreamTransactionIT_EE) +STUB("jlr-kEPajrA", _ZNK7WebCore17MouseRelatedEvent29locationInRootViewCoordinatesEv) +STUB( + "jlssFRJ4DeM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE5emptyEv) STUB("jltWpVKtetg", sceSslRead) +STUB("jlyfIt5FAUI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEEC2EPKS6_) +STUB( + "jlziU7cgdOI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("jm+7zL720v4", _ZN3JSC7Symbols39typedArraySpeciesConstructorPrivateNameE) +STUB("jm5XlHqXefI", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE4sizeEv) STUB("jm5stx2t4Ao", sceDtsEncEncode) +STUB("jm6Esdc5l4s", _ZN3sce7Toolkit2NP2V28Commerce18ServiceEntitlementD1Ev) +STUB( + "jm7DOKJkaFk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEED2Ev) +STUB("jm8YSQFNhDk", _ZN7WebCore16TrackPrivateBasenwEm10NotNullTagPv) +STUB("jmAw4JxEE5A", _ZN3sce7Toolkit2NP2V210Tournament16RegisteredRosterD2Ev) +STUB("jmDcorQ80dY", RSA_up_ref) +STUB( + "jmFWAzJgio4", + _ZN7WebCore24CoordinatedGraphicsLayer12addAnimationERKNS_17KeyframeValueListERKNS_9FloatSizeEPKNS_9AnimationERKN3WTF6StringEd) +STUB( + "jmG9MPf06ng", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEEaSERS9_) +STUB("jmHFoFUQoi8", _ZN7WebCore14SQLiteDatabase27runIncrementalVacuumCommandEv) +STUB( + "jmHSpqaEYMI", + _ZN9Inspector22ContentSearchUtilities29countRegularExpressionMatchesERKN3JSC4Yarr17RegularExpressionERKN3WTF6StringE) +STUB( + "jmHc4EKVjjs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEC1Ev) +STUB( + "jmRrhtnsIFc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEEcvbEv) +STUB("jmZh4NrN1S0", WKPreferencesSetEnumeratingAllNetworkInterfacesEnabled) +STUB( + "jmago3p0Q9s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("jmfZxE7bNUY", _ZN8meta_gen13JpegRetrieverD2Ev) +STUB("jmiUcZi+ONI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS12TusVariablesEED1Ev) +STUB( + "jmk898J5t9I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "jmmq7nthMV4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEEaSERSA_) +STUB( + "jmulyOoeW+4", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V226WebApiFilterRequestFactory7destroyEPNS3_19WebApiFilterRequestE) +STUB("jn+QXnoXVnc", JSValueIsObject) +STUB("jn1yDsO4MJo", mono_aot_System_Runtime_Serializationjit_code_start) +STUB("jn2YAk8JdPU", _ZNK7WebCore10ScrollView18contentsToRootViewERKNS_9FloatRectE) +STUB( + "jn41bnp76r0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEEcvbEv) +STUB("jn95S8jrpJA", + _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponseC1EPNS1_6Common10LibContextE) +STUB( + "jn9Y-JD+IFU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEED2Ev) +STUB("jnAKr7eVqO4", Java_com_sony_gemstack_core_CoreAppAttributes_getAttributes) +STUB("jnGTQJLI0S8", _ZN7WebCore17FrameLoaderClientC2Ev) +STUB("jnH78zLM6qY", _ZN3WTF10StringImpl5adoptEONS_12StringBufferIDsEE) +STUB( + "jnIN59JM7xI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEEC2ERSA_) STUB("jnKaHGkrxZ4", _sceUltConditionVariableCreate) +STUB( + "jnOmJ0jPx1Q", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB( + "jnQwMJb4lpo", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging25GameDataMessageAttachmentEE12deepCopyFromERS7_) +STUB("jna5sqISK4s", _ZNSt10moneypunctIwLb0EEC1EPKcm) +STUB( + "jnd5nOMvSN0", + _ZN3sce2Np9CppWebApi7Matches2V134RequestTemporaryTeamResultsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_27RequestTemporaryTeamResultsEEE) +STUB("jng0x3KHPkg", _ZNK3sce2Np9CppWebApi7Matches2V118CreateMatchRequest19npServiceLabelIsSetEv) +STUB("jniFKYdQ3jg", _ZN7WebCore24TemporarySelectionChangeD2Ev) +STUB("jnm6vYnrSoA", __hexnan_D2A) +STUB( + "jnonZqJRfQE", + _ZN9Inspector22ContentSearchUtilities22textPositionFromOffsetEmRKN3WTF6VectorImLm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("jnt2nfIHaVM", _ZN3sce7Toolkit2NP2V26Friend7Request19GetFriendsOfFriendsC1Ev) +STUB( + "jnuL9ARhORs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEEC1ERSA_) STUB("jnvPWZ140Sw", sceVideoDecoderArbitrationEnable) +STUB("jnwYwesKJZ0", GCC_except_table5) +STUB( + "jo+bdiZJNh4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("jo-jT3ZHL6Y", _ZN12video_parser5vpcom3rtc21ParseRFC3339LocalTimeEPmPKc) +STUB("jo3FQhpJzcU", _ZN3sce2np9HttpTrans4InitEPNS0_12HttpTemplateEPNS0_18HttpConnectionPoolEiPKcm) +STUB( + "jo6GDoXkn9E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEC2EPS8_) +STUB( + "jo6xhpTgDjI", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities21UserActivitiesFactory6createEPNS1_6Common10LibContextEPKcRKNS6_6VectorINS6_12IntrusivePtrINS4_8ActivityEEEEEPNSC_INS4_14UserActivitiesEEE) +STUB("jo97o2Mq3wc", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEEixEm) +STUB( + "joBjq5kdx4g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEC2EPS8_) +STUB("joDkiMqALkM", png_get_IHDR) +STUB( + "joE2elCLWHw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "joE99-5pxbs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE7popBackEv) +STUB("joKb-CGzNeo", mono_aot_System_Threading_Tasksjit_got) STUB("joNORJjCFhg", sceAmprAmmCommandBufferModifyProtect) +STUB( + "joNSa3rn8bc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE21intrusive_ptr_sub_refEPS9_) +STUB("joP+T4CXgRg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEC2Ev) STUB("joRjtRXTFoc", sceNpWebApiAddHttpRequestHeader) +STUB( + "joTEtuQVQvQ", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsersC1ERS5_) +STUB( + "joU9fo2BWJU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEC1Ev) +STUB("joaerP21Z2U", _ZN7WebCore16ScriptController17bindingRootObjectEv) +STUB("jogUIsOV3-U", htons) +STUB("joiOaI38vZM", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_skipToPlayListItem) STUB("joyu2ZxJvZY", sceAppInstUtilAppPrepareOverwritePkg) +STUB("jp+4L0zhE+k", SSL_get_SSL_CTX) +STUB( + "jp+Z2IUTTF8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE6resizeEj) +STUB( + "jp-x1JglXBk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEptEv) +STUB("jp2e+RSrcow", lrintl) +STUB("jp2uvitntrc", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry21recordedDateTimeIsSetEv) +STUB( + "jp3RW0PdYTU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEixEm) +STUB("jp75ki1UzRU", CERT_getCertificateKeyUsage) +STUB("jpA+IcvGLJQ", _ZN3sce7Toolkit2NP9Interface9terminateEv) +STUB( + "jpAJlb8kwVE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEE7add_refEv) +STUB("jpAJorTmZgo", ubrk_getLocaleByType) +STUB("jpB7Ik2Qrpw", WKPreferencesGetJavaEnabled) +STUB("jpBkXjnK-U4", NetworkProcessMainPlayStation) STUB("jpFjmgAC5AE", sceKernelDeleteEqueue) +STUB( + "jpKpQ+dFh9c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEC2Ev) +STUB( + "jpMXaF+rrfI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEEC2ERSA_) +STUB("jpNzRkBnXcU", _ZN3sce7Toolkit2NP2V28Matching7Request11SearchRoomsD1Ev) +STUB( + "jpOpeBe4aKs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEaSERKS9_) STUB("jpTMyYB8UBI", sceGnmDebuggerSetAddressWatch) +STUB("jpTTcBnPKeM", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed14PlayedWithFeedEE12deepCopyFromERS7_) +STUB( + "jpTduyg4uus", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("jpUjTzRbB4k", UI_method_get_closer) +STUB("jpVunYq0+Vg", _ZN7WebCore21DiagnosticLoggingKeys22unknownEntryRequestKeyEv) +STUB("jpY0vJLjJ1w", _ZN3sce2Np9CppWebApi12Leaderboards2V15Error7setCodeERKi) +STUB("jpY8TUkS-hU", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V18RelationEEC1Ev) +STUB("jpYQ6ihvKTA", mono_aot_Sce_PlayStation_Jsonjit_got) +STUB("jpb8rbo4MwU", LoginMgrCreateUser) +STUB( + "jpbP1bnxp-I", + _ZN7WebCore22EmptyFrameLoaderClient38dispatchDecidePolicyForNewWindowActionERKNS_16NavigationActionERKNS_15ResourceRequestEPNS_9FormStateERKN3WTF6StringEONS9_8FunctionIFvNS_12PolicyActionEEEE) +STUB( + "jpcRp1K8emo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEppEv) +STUB( + "jpdNy2-sE-Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEE7get_refEv) STUB("jpdtTcaVXpI", sceVorbisDecTimeTotal) +STUB("jpeIEGc1yPA", WKPreferencesSetFixedFontFamily) +STUB("jpeJPqix-XU", mono_aot_Sce_Vsh_RnpsAppMgrWrapperplt_end) +STUB("jpfOSyJCovk", JNU_ClassObject) +STUB( + "jpgxRoYSWJ8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEmmEv) +STUB("jpjT3LHx42U", _ZN4Manx11MediaSourceD1Ev) +STUB("jpjbBAF6BV8", _ZN4Manx3Ssl8finalizeEv) +STUB( + "jpmqQ6KeL0A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE21intrusive_ptr_add_refEPS9_) STUB("jpq8GaJ3ER0", sceMbusGetDeviceInfoByBusId_) +STUB("jpxHb1JKdCA", _ZN7WebCore20TransformationMatrix8multiplyERKS0_) +STUB( + "jq3oPa+n4p8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("jq4BNIysAKY", _ZTVN7WebCore11DisplayList11DrawingItemE) +STUB("jq4Srfnz9K8", _LTgamma) +STUB( + "jqBLsGfL7H8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEC2Ev) +STUB( + "jqCAI6-i5F4", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorI16SceNpTusVariableNS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB("jqGF+8hl78A", _ZNK3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error11sourceIsSetEv) +STUB("jqIJi3pJ7Us", u_fgetfile_67) +STUB( + "jqIbNPQuhm0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEptEv) +STUB("jqJgtn69CMY", + _ZN15AbstractStorage15FacebookStorage7IsExistERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("jqLCVPYZF24", _ZN7WebCore20PasteboardCustomData5EntryC1ERKS1_) +STUB("jqMurvieLBk", FTA_Remove_Module_psnames) STUB("jqRcNtZmLuE", sceKeyboardSetProcessFocus) +STUB("jqTA4juffRg", _ZN3WTF9WorkQueue15concurrentApplyEmONS_8FunctionIFvmEEE) +STUB("jqUGi9VvXUY", _ZN7WebCore21DisplayRefreshMonitorD2Ev) +STUB( + "jqWg8IOprS4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEptEv) +STUB("jqXQ6WN+Ibo", mono_aot_Sce_Vsh_Np_Papcjit_code_start) STUB("jqYWaTfgZs0", sceRazorCpuSetPopMarkerCallback) STUB("jqb7HntFQFc", sceWebBrowserDialogInitialize) +STUB( + "jqeqFe-h6sc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEEC2ERKSA_) +STUB("jqhYbYjdmus", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15StatsC2EPNS1_6Common10LibContextE) STUB("jqj5vbglbZU", sceShellCoreUtilSetRemotePlayStatus) +STUB("jqnDcCBBLOY", _ZNK7WebCore20SharedBufferDataView4sizeEv) +STUB( + "jqnkLVyqtns", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "jqoO9sP3Y2Y", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEED2Ev) +STUB("jqpL3ERqnX4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V120PlayerJoinableStatusEEppEi) STUB("jqrGJJxFhmU", pthread_barrierattr_setpshared) +STUB( + "jqvz6Wnlcgg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEEC2ERKSA_) +STUB( + "jqyGnISDa2c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEE7add_refEv) +STUB("jqyPIseE6Fg", _ZN3sce7Toolkit2NP2V28Commerce9ContaineraSERKS4_) STUB("jqyhb1oMgHw", sceRegMgrGetStrInitVal) STUB("jr+uI0s+r0c", sceDebugGetWaitingListOfUltQueue) +STUB("jr0OcEeQJ8o", _ZN3sce2np12StreamBufferixEi) +STUB( + "jr0qZlPIkqc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEEC1ERSA_) +STUB("jr3NztKU5ig", _ZNK6WebKit17ChildProcessProxy5stateEv) +STUB("jr41BgCFUZE", CRYPTO_free) STUB("jr52f45OlWg", sceVideoOutCursorSetHotSpot) +STUB("jr5yQE9WYdk", _Tls_setup__Locale) +STUB("jrBcdOTBEW8", mono_arch_get_static_rgctx_trampoline) +STUB("jrFMAwRbQWs", _ZN3WTF6Thread6createEPKcONS_8FunctionIFvvEEE) +STUB("jrQ8dvIEdV8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEC2ERS7_) +STUB( + "jrUpI1B9qiQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEneERKS9_) STUB("jrVHsKCXA0g", sceHttp2SetCookieBox) +STUB("jrW+AxSrLBk", _ZN3WTF18monthFromDayInYearEib) +STUB("jrWkVMoWd-I", _ZN7WebCore11MathMLNames9widthAttrE) +STUB( + "jrb6hgpa4Cc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEC1ERS7_) +STUB( + "jrhXxOPRWb4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEC1EPKS8_) STUB("jri3LyXhEGw", sceLibreSslInitEx) +STUB("jrlcgk7ujKI", sqlite3_stmt_readonly) +STUB( + "jrmkUT84I8M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) STUB("jrpnVQfJYgQ", sceErrorDialogOpenDetail) +STUB( + "jrqvJogd2oc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEEdeEv) +STUB( + "jrxIAWcJvro", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEC1Ev) STUB("js06qcwSqnE", sceFsSmrTrim) +STUB("js0MFg3iZcU", _ZN7WebCore16JSStringCallbackD0Ev) +STUB("js1b-JTDMww", searchCommInfoListByKey) +STUB( + "js5bNctzX8Y", + _ZN3sce2Np9CppWebApi7Matches2V126ResponseMatchPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_19ResponseMatchPlayerEEE) +STUB( + "js6buml4NVw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("jsA1PqE7Cpk", _ZN3sce7Toolkit2NP23ChallengeGetDataRequestC2Ev) +STUB( + "jsBU+GLEfPU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEC2EPS8_) +STUB( + "jsCNTcjsYH0", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemProperties10initializeEPNS1_6Common10LibContextEPKcSA_NS6_12IntrusivePtrINS3_55PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEE) +STUB( + "jsCuhhi+gdM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "jsD-y5gt6+E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEEC1Ev) +STUB( + "jsFhdte+c-Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("jsHe99x6l0w", _ZTVN3sce2np8JsonBoolE) STUB("jsI+ycl8YLI", sceRnpsAppMgrRemoveUfsImageOnSystemShutdown) +STUB( + "jsKJKRA0Vao", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEE7get_refEv) +STUB( + "jsNyepiSt1U", + _ZN3sce2Np9CppWebApi14SessionManager2V122SearchConditionFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_15SearchConditionEEE) +STUB( + "jsQVPUYyuFY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEE11get_deleterEv) +STUB( + "jsS8esMzbZw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEC2Ev) +STUB( + "jsTopAKiKYs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "jsWYewyjlF4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEED1Ev) +STUB("jsYJFoq3pQo", + _ZNK9Inspector15RemoteInspector26listingForInspectionTargetERKNS_22RemoteInspectionTargetE) +STUB("jsg3XD8NZrM", _ZN3sce2Np9CppWebApi14SessionManager2V122GameSessionPushContextD1Ev) +STUB( + "jsjBGNLxWPs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("jslI0CQzOIw", WKWebsiteDataStoreSetStatisticsSubresourceUniqueRedirectTo) +STUB( + "jt+emrF-LlA", + _ZN7WebCore18TextureMapperLayer12sortByZOrderERN3WTF6VectorIPS0_Lm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB( + "jt0u5UP3HfA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEplEm) +STUB("jt25u2q3Nvw", _ZN4IPMI6ClientC2Ev) STUB("jt3pl7EN17o", sceAgcDcbPrimeUtcl2) +STUB("jt4pCCrVjCU", mono_type_get_modifiers) +STUB( + "jtA-mriXyx4", + _ZN3sce2Np9CppWebApi14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBody13getSpectatorsEv) +STUB("jtDDOIY8KW0", mono_aot_ReactNative_Modules_Vsh_Gct_Telemetryunwind_info) +STUB( + "jtEOdWTsKGA", + _ZN3sce2Np9CppWebApi14SessionManager2V134RequestGameSessionSpectatorFactory7destroyEPNS3_27RequestGameSessionSpectatorE) +STUB("jtFBk5rkwrA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEE5resetEPS8_) +STUB("jtHgUDo2a74", WKPreferencesSetMediaCaptureRequiresSecureConnection) +STUB("jtKsxN12YfA", WKWindowFeaturesGetTypeID) +STUB( + "jtRGdXW4M44", + _ZN3sce7Toolkit2NP2V211SocialMedia21postMessageToFacebookERKNS3_7Request21PostMessageToFacebookEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("jtRnbaQj8JY", __libc_allocate_tls) +STUB("jtWvJ0PETYQ", zrule_equals_67) +STUB("jtYWR9C6sIg", mono_get_exception_stack_overflow) +STUB( + "jtcdGsGcbE0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("jtgNZLiehPY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE4sizeEv) +STUB( + "jtiXLNAWqwE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE21intrusive_ptr_sub_refEPS9_) STUB("jtkqXpAOY6w", sceGnmSetGsRingSizes) +STUB( + "jtmt5YQ6ffE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEC1Ev) +STUB( + "jtnGzAx8UMo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEC2EPS8_) +STUB("jtoBE5rhKdQ", rgctx_fetch_trampoline_rgctx_75) +STUB("jtuUDPy+C4o", mono_aot_Sce_Vsh_LncUtilWrapperplt_end) +STUB( + "jtwcLp-BmgQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE5beginEv) +STUB("jtzd13HLYHc", _ZN3sce2Np9CppWebApi11Matchmaking2V18LocationD1Ev) +STUB("ju22PxW0Xc0", _ZN3sce7Toolkit2NP15AppSTLAllocatorItEC1ERKS3_) +STUB( + "ju4Na3jmbEg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB("juCmOMgumiM", u_fsettransliterator_67) +STUB("juD4DzXzsNQ", dwarf_cie_info_pool) +STUB("juDPVL6phu8", mono_aot_platformjit_code_end) +STUB("juJhfSfpm5g", _ZL11tidy_globalv) +STUB("juKqIcrP9Es", _ZN3WTF6String6formatEPKcz) +STUB("juOEOUv1DSM", Java_java_awt_GnmGraphics_nativeDrawRoundRect) +STUB("juTxptKt0gE", _ZN19JITSharedDataMemory14shared_reallocEPvm) +STUB( + "juVcNi5OEeY", + _ZN3sce7Toolkit2NP2V28Matching11setRoomInfoERKNS3_7Request11SetRoomInfoEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("juWbTNM+8hw", fsync) +STUB("juYfuLZYAyM", _ZN7WebCore15JSFetchResponse7destroyEPN3JSC6JSCellE) +STUB("juabKNqO+3Y", rgctx_fetch_trampoline_rgctx_126) STUB("juaxHn6Boy8", sceDebugCreateScratchDataAreaForPrx) +STUB("jugG0cE42Nw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEEptEv) +STUB( + "juhU8c7TE38", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEC1EPS6_PNS2_10LibContextE) +STUB("jujg+gUXTx0", _ZN7WebCore24CoordinatedGraphicsLayer25requestBackingStoreUpdateEv) +STUB("juoVF+HEj1k", _ZN7WebCore4Node18dispatchInputEventEv) STUB("juqlPZWkJGc", sceShellCoreUtilMountDownloadDataForShellUI) +STUB("jusJu1ps6I8", _ZNK7WebCore9RenderBox11borderRadiiEv) +STUB( + "juwYlsNqcyQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE21intrusive_ptr_add_refEPS9_) +STUB("juxjuz-22RA", _ZN7WebCore26Matrix3DTransformOperation6createERKNS_20TransformationMatrixE) +STUB( + "jv2QXRU2vc0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "jv4SG9DWqpk", + _ZN3sce2Np9CppWebApi14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBody8fromJsonERKNS_4Json5ValueE) +STUB( + "jv851K9fJhk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEC2EPKS8_) +STUB( + "jv8VewUfLFY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEC1Ev) +STUB("jvADx3y3ook", mono_aot_Sce_Facebook_CSSLayoutplt_end) +STUB( + "jvEuZ3Gv-SA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEEaSERSA_) STUB("jvPer4hz+UU", sceVideoOutSysSetDcePipeMode) +STUB( + "jvRHtGf2ZKI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB( + "jvRvhwaI-Eg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEppEv) +STUB( + "jvSTgQfiDiI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB("jvUW4zydBjQ", _ZN7WebCore18TextureMapperLayer15setRepaintCountEi) +STUB("jvblGx6KoA0", _ZN3sce2np18HttpConnectionPool13GetConnectionEPNS0_12HttpTemplateEPKcS5_tPi) +STUB("jvbytz0ocJc", uprv_decContextSaveStatus_67) +STUB( + "jvmkHg4UNeU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEEaSERS9_) +STUB( + "jvoMA6OiQ2w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEmmEi) +STUB( + "jvrKPD-+NlY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("jvtq5JCPkmU", _ZN3sce2Np9CppWebApi7Matches2V120ResponseInGameRosterD2Ev) +STUB( + "jw0sUQCcT9w", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE4sizeEv) +STUB( + "jw22poRy3xE", + _ZN7WebCore18ImageBufferBackend13drawConsumingERNS_15GraphicsContextERKNS_9FloatRectES5_RKNS_20ImagePaintingOptionsE) +STUB("jw5WqFhENLo", rgctx_fetch_trampoline_mrgctx_74_p) +STUB("jw8zgSAXN1c", _ZN3sce2Np9CppWebApi11Matchmaking2V110UserTicketD1Ev) STUB("jw9FkZBXo-g", _sceUltUlthreadRuntimeCreate) STUB("jwCEzr7uEP4", sceGnmDebuggerGetAddressWatch) +STUB("jwGQ1FzOkDg", _ZN12video_parser20cVideoContentFactory22_releaseFFLInstanceMp4EPv) +STUB("jwIH8KRsFYU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEC2Ev) +STUB("jwIZMWyLmuY", _ZN7WebCore11startOfWordERKNS_15VisiblePositionENS_9EWordSideE) STUB("jwImxXRGSKA", sceVideodec2DeleteDecoder) +STUB("jwJYJ3yTnHk", _Dint.mask) +STUB("jwNS3A8IEN4", mono_aot_Sce_PlayStation_BclExtensionsunwind_info) +STUB("jwO6mScIWL0", _ZNK7WebCore13HitTestResult16absoluteImageURLEv) STUB("jwOjEhWD6E4", sceNpManagerIntIsUnregisteredClientError) +STUB("jwVsbMqTopY", jpeg_set_marker_processor) +STUB("jwWmYH4LsBY", mono_code_manager_reserve_align) +STUB( + "jwWp+U4zW4o", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "jwh3+vOVO1I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "jwnC2xIikE4", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer12setsessionIdEPKc) +STUB( + "jwpHWPLDDY4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEED2Ev) +STUB("jwsSD7ZhRvw", _ZN9Inspector21DOMFrontendDispatcher15documentUpdatedEv) +STUB( + "jwx-OqS+0Ww", + _ZN7WebCore9TextEvent13initTextEventERKN3WTF12AtomicStringEbbONS1_6RefPtrINS_11WindowProxyENS1_13DumbPtrTraitsIS6_EEEERKNS1_6StringE) +STUB( + "jx0cDuuyBcI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEED2Ev) +STUB("jx3quYqCn2c", _ZN3JSC7Symbols28makeBoundFunctionPrivateNameE) +STUB("jx4ON+-ccNY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEEC2ERKS9_) STUB("jx5qjwQWSRU", sceDtsEncEncodeAsync) +STUB( + "jx9fPhAskgg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEE3getEv) +STUB( + "jxC6X62V4Yw", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("jxFQgW-VK1U", _ZN7WebCore21DiagnosticLoggingKeys24varyingHeaderMismatchKeyEv) +STUB("jxM0UUOggXU", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi22ParameterToCreateMatchD1Ev) +STUB("jxPY-0x8e-M", _ZNK3sce2np10EventQueue7IsEmptyEv) +STUB("jxW+13G+OhI", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchDetailC2ERS5_) +STUB("jxdvgOcBET0", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container14platformsIsSetEv) +STUB( + "jxeB--4z0t0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE8capacityEv) +STUB( + "jxeWmUEV6bo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEE11release_refEv) +STUB( + "jxgVXoLVLt4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEmmEi) +STUB("jxibnlSK13Y", __asan_report_present) +STUB("jxlpClEsfJQ", _ZNSt12placeholders2_5E) +STUB("jxn875wvWPY", + _ZNK3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponse15nextOffsetIsSetEv) +STUB( + "jy+Nt-Y8XZA", + _ZNK3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody13getMaxPlayersEv) +STUB( + "jy17Z7bbMTw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEC2Ev) +STUB("jy9OortW91s", _ZN12video_parser13cVideoMetaMP415getSeasonNumberEPi) +STUB("jy9urODH0Wo", _ZNSt8messagesIcED0Ev) +STUB( + "jyCD7CY7wYc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEE7get_refEv) STUB("jyGoZLZlG-M", sceTsJumpPTS) +STUB( + "jyNp75EfOnw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "jyP71LYuCrA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEEC2ERKSA_) +STUB( + "jyPCo6+l5-E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEE7get_refEv) +STUB( + "jyTNLNLHPR8", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEEiRNS2_10LibContextEPT_m) +STUB("jyTWV0OsGc4", X509_STORE_CTX_get_error_depth) STUB("jyVEy5nIzwc", sceIduUtilLaunchTitleV2) +STUB("jyXTVnmlJD4", _ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED0Ev) +STUB( + "jybbmJ+uEwo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEptEv) +STUB("jydFDMsVG-I", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEptEv) +STUB("jyf32aEUoMs", cairo_device_to_user) +STUB("jyhqbsCB4kQ", WKPreferencesGetArtificialPluginInitializationDelayEnabled) STUB("jyi5p9XWUSs", sceNpWaitAsync) +STUB( + "jyiEl3-Umt0", + _ZN3sce2Np9CppWebApi14SessionManager2V121RepresentativeFactory6createEPNS1_6Common10LibContextERKmRK13SceNpOnlineIdPKcPNS5_12IntrusivePtrINS3_14RepresentativeEEE) +STUB( + "jyicAnEtuO0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEptEv) +STUB("jykT-VWQVBY", + _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE5_IputES3_RSt8ios_basecPcm) +STUB( + "jylRmR4AnLA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEE11release_refEv) +STUB("jymMDfvg6T4", _ZTVN7WebCore11DisplayList20FillRectWithGradientE) +STUB( + "jyqje3VCc2o", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB( + "jz+lTIAk5Zw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEixEm) +STUB( + "jz-4x-tfQlg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEEC2Ev) +STUB( + "jz01A+JpT9w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEEC1ERSA_) +STUB( + "jz0kPMYtp5Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEmmEi) +STUB( + "jz2tPMp6LW8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEEC1ERKSA_) STUB("jzCsUXzxmH0", _sceNpReallocImpl) +STUB("jzDgtYoh8-Y", + _ZN7WebCore15setToBackingMapERN3JSC14JSGlobalObjectERNS0_8JSObjectENS0_7JSValueES5_) +STUB("jzFpYtk0zuM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEC1ERKS7_) +STUB("jzHaIiyQYJw", _ZN3sce7Toolkit2NP9Utilities6FutureI24SceNpBandwidthTestResultED1Ev) +STUB("jzKEyc7mRAU", mono_aot_System_Xml_Serializationjit_code_end) STUB("jzP0MoZpYnI", sceNetEventCallbackDestroy) +STUB( + "jzPB6RZ+0+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEEC1ERKSA_) +STUB( + "jzTSKZ5ZJfI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEptEv) +STUB( + "jzTqYKI5M0I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "jzVDMFlfTUE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE3endEv) STUB("jzVKlW6HHmU", sceFsDrfsRegisterSocket) +STUB( + "jzZ-3K3Nd0k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "jzflzfTsOUA", + _ZN3JSC8JSObject16getPropertyNamesEPS0_PNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB( + "jzgpd83oc-A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "jzhfxPy4Axk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEmmEi) +STUB( + "jzikSKI3v-w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("jzjrS8gGNdY", glGetRenderbufferParameteriv) +STUB( + "jzkGwpPsFqI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB("jzoBKouomoQ", YGNodeStyleSetHeightPercent) +STUB("jzqHf7eeUNs", rgctx_fetch_trampoline_rgctx_93) +STUB("jzwNmoo5t3g", rgctx_fetch_trampoline_mrgctx_62) +STUB("jzyynGEQT2E", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities12ErrorFactory7destroyEPNS4_5ErrorE) +STUB("k+0fsmsW2q8", _ZN3JSC12VMEntryScopeD2Ev) +STUB("k+0t4ZFxfT0", WKPageSetPageAndTextZoomFactors) +STUB("k+1jPKKqLqE", _ZN7WebCore8Document22scrollingElementForAPIEv) +STUB("k+6XRp7LzQg", YGNodeLayoutGetHeight) +STUB("k+7Gx0pjaYY", ctyp_tab) +STUB("k+8tScXRpY4", delegate_virtual_invoke_imt_m_14_p) +STUB("k+AXqu2-eBc", getpagesize) STUB("k+LGes6TQQI", sceIpmiMgrPauseDump) +STUB("k+SkqnbyFXo", __asan_stack_malloc_7) +STUB( + "k+V0feQOd4s", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSession12setaccountIdEPKc) +STUB("k+X8sU2x8Jw", mono_btls_x509_lookup_free) +STUB("k+ZqL-6U1jA", _ZSt9use_facetISt10moneypunctIcLb0EEERKT_RKSt6locale) +STUB("k+d8ErxqXgA", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11UserProfile10NpProfilesEE5resetEv) STUB("k+dk+pYjIac", sceSblACMgrIsPlatformDLL) +STUB("k+hld6qybEs", ures_getStringByKeyWithFallback_67) +STUB("k+jX53jlQm4", nsnp_FreeString) +STUB("k+vGhWux+zo", mono_aot_System_IO_Compressionplt_end) +STUB( + "k+vt7QoOjSM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEaSERKS7_) +STUB("k+zHwjrbxsI", UI_method_get_reader) +STUB( + "k-+aF1Coi9E", + _ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime15CollectionEntryEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE) +STUB("k--77SdydH8", uprv_tzname_clear_cache_67) +STUB( + "k--dgyIs8WQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEE7get_refEv) +STUB( + "k-79WMIMxl4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) STUB("k-7kxXGr+r0", sceUserServiceGetFileBrowserFilter) +STUB("k-AmBc942UI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEEC2ERS6_) STUB("k-JpyR2dYAM", sceAgcAsyncCondExecPatchSetEnd) +STUB("k-M9hVlr04s", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEEaSERS6_) +STUB("k-MLK6CAyUQ", _ZNK7WebCore19HTMLTextAreaElement5valueEv) +STUB( + "k-N352OgMAc", + _ZN3sce2Np9CppWebApi14ConnectAccount2V221PSNError_errorFactory6createEPNS1_6Common10LibContextEiiPNS5_12IntrusivePtrINS3_14PSNError_errorEEE) +STUB("k-NDOMP7m2M", _ZNK3JSC14ProtoCallFrame6calleeEv) +STUB("k-TBNpvmYXs", getNumOfProtocolInfoList) +STUB("k-U-G6UoURU", _ZN3JSC7Symbols35createArgumentsButterflyPrivateNameE) +STUB("k-Wh+dnRRdI", _ZNK3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead11getTicketIdEv) +STUB("k-X0uVfQEb0", _ZN9Inspector17ScriptDebugServernaEm) +STUB( + "k-Yx7lU0FWM", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "k-cNrhxdbEw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("k-ds+HGkVNI", _ZN7WebCore9MediaListD2Ev) +STUB("k-l0Jth-Go8", mrand48) STUB("k-q+xOxdc3E", sceAvPlayerSetAvSyncMode) +STUB("k-rW4Fyo67M", + _ZNK3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends8getorderEv) +STUB( + "k-rt+v39dNk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE6resizeEj) STUB("k-sppToVlnc", sceNpSnsTwitchAbortRequest) +STUB("k-tITOPTu-E", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEEC2ERKS7_) +STUB( + "k-z3aWITdfY", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM14ShadowRootTypeEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB("k0+WgfI1FWM", _ZNK9Inspector15ScriptCallFrame20buildInspectorObjectEv) +STUB( + "k004Z2jZeog", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE7reserveEi) +STUB("k03xALL1hR0", _ZN3sce2np10JsonNumberD1Ev) +STUB("k0495LPSWPU", WKContextMenuItemCreateAsCheckableAction) STUB("k04jLXu3+Ic", sceLibcMspaceMallocStatsFast) +STUB("k05xFQ94Znw", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getMixerGain) +STUB("k0BKafeYaUo", _ZN15AbstractStorage14StorageManager10InitializeEv) +STUB("k0C+3ZgQQ4o", + _ZNK3sce7Toolkit2NP9Utilities6FutureI24SceNpBandwidthTestResultE17getAdditionalInfoEv) +STUB("k0CNy-lj8Eo", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112ErrorFactory7destroyEPNS3_5ErrorE) +STUB( + "k0D-T2Sn3DQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEE5resetEPS9_) +STUB( + "k0D3PhUjII8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("k0E3kZd2JNM", _ZSt17rethrow_exceptionSt13exception_ptr) +STUB("k0F+oQKokYc", _ZN4Manx8X509cinf15serialNumberStrEPPc) +STUB("k0FXPYF5nJE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEEC1Ev) +STUB("k0Gp2cXDeqU", audiodeccpuinternal_core_ops_dts) STUB("k0Kog-TlHYg", sceFsMountTrophyData) +STUB("k0LeL1oyJro", mono_type_full_name) +STUB( + "k0ND1nv43nY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "k0NbEMvH4xQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE5emptyEv) +STUB("k0PVLsctcUs", _ZN3PAL12CryptoDigest8addBytesEPKvm) STUB("k0RJXTO3SbQ", scePadGetActiveTime) +STUB( + "k0WHwWy4YXE", + _ZN7WebCore13JSHTMLElementC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_11HTMLElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "k0bnpc0Gqe0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB("k0eC64lQIxM", _ZNK3sce2Np9CppWebApi6Common8IteratorIiEptEv) +STUB("k0hHy5A6jIk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEE7get_refEv) +STUB("k0halcNLNiQ", _ZN3sce3pss4core5audio11SoundPlayerC1EPNS2_5SoundEj) +STUB( + "k0jhCfHxvZA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEC2EPKS8_) +STUB( + "k0joUiR6ZRg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEEC1ERKSA_) +STUB( + "k0mf8aJTF1I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB( + "k0ohq55HfrI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("k0vARyJi9oU", __modsi3) +STUB( + "k0xI5I-UcPY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEED1Ev) +STUB( + "k1-l3-S82-Y", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations10initializeEPNS1_6Common10LibContextEPKc) +STUB("k10QLMNGGTo", + _ZN3JSC13RuntimeMethod15createStructureERNS_2VMEPNS_14JSGlobalObjectENS_7JSValueE) +STUB("k1177T32Vmo", _ZN3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead11setTeamNameEPKc) +STUB( + "k13gSW-k3jk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEE5resetEPS6_) +STUB("k15NAwDzp9k", _ZN3WTF11Persistence7Decoder6decodeERm) +STUB("k15lP5BMirY", Java_sun_awt_image_GnmImageDecoder_readImage__I_3BIILjava_awt_Image_2) +STUB("k17+SANfJsg", kickEnable) +STUB( + "k19M2+XgFK4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("k1AVGqMRF08", _ZN3sce7Toolkit2NP2V24Core15StringifyResultD2Ev) +STUB("k1DUWc4bQN4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEE11get_deleterEv) +STUB( + "k1DeKHg-DP4", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "k1Hsc0qMW9s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEEdeEv) STUB("k1OoMsQ7tQ8", sceSpNetSend) STUB("k1PTjHF0qoA", sceCtrlpGetRecData) STUB("k1SwgkMSOM8", sceRemoteplayInitialize) STUB("k1V1djYpk7k", sceNetShowIfconfig) +STUB("k1VlSDg9azo", _ZNK3sce2np10JsonObject5CloneEP16SceNpAllocatorEx) STUB("k1W6RPkd0mc", sceHmdInternalResetLedForVrTracker) +STUB( + "k1Z9vz+VFMM", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetBoolean9Ev) +STUB("k1f4Ns9nsRU", _ZN3sce7Toolkit2NP2V28Matching12RoomPingTimeC1Ev) +STUB("k1gBazlQOKo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEptEv) +STUB( + "k1gxVMyxZ+4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEED1Ev) STUB("k1jIkFHa9OU", sceKernelProtectDirectMemory) +STUB("k1jUC-pZKaY", ucal_clone_67) +STUB("k1kyzonwd+Q", whexdig_init_D2A) +STUB( + "k1oAIgQ1TZo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEC2Ev) +STUB( + "k1qvxDwyLzc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("k1u0C9qTkoQ", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE5clearEv) +STUB( + "k1w+iYftBjE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEED2Ev) +STUB( + "k2+fbIVi7pU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEEdeEv) STUB("k210oKgP80Y", sceNpWebApiGetHttpStatusCode) +STUB( + "k28vZFlJrlg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEC1Ev) +STUB("k2D8GDP5dUE", _ZN3sce7Toolkit2NP2V29Messaging12Notification18NewGameDataMessageC2ERKS5_) +STUB( + "k2GDIUotzeM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEE5resetEPS6_) +STUB("k2IDcx-apvQ", _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead15getJoinDisabledEv) +STUB( + "k2JrCbYE0vk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEEC2Ev) +STUB("k2Lax3CbnUg", ubidi_close_67) +STUB("k2LxVh9VNW4", _ZN7WebCore15DatabaseTracker12deleteOriginERKNS_18SecurityOriginDataE) +STUB("k2R8ICGeWjo", _ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionNonPsnPlayerD2Ev) +STUB("k2TwvWIam5I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEE7add_refEv) +STUB("k2VonUL2gF8", _ZN15AbstractStorage4Item14GetStorageNameEv) +STUB("k2X2uwKx11M", _ZTVN9Inspector15InspectorTargetE) +STUB("k2Ybzu4uEiU", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getTextSTStyle) +STUB( + "k2ZpCZWpLeY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEC1EPS8_) STUB("k2ZyhP7QdaA", sceVideoCoreReleaseDecoderResource) +STUB("k2gUXJKKLiM", mono_aot_Sce_Vsh_AppContentUtilWrapperjit_code_end) +STUB( + "k2ipseJ3nHQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEeqERKS9_) +STUB("k2niR5Rxn84", WKWebsiteDataStoreDisableNetworkProxySettings) +STUB( + "k2qGgMeI8xM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE21intrusive_ptr_sub_refEPS7_) +STUB( + "k2vpmwv6hmg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEixEm) +STUB( + "k2y6Zp4MjNE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEE7get_refEv) +STUB("k3+iBzNHnuY", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi21ParameterToLeaveMatchC2ERS5_) +STUB( + "k3+xuwWWE3c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) STUB("k34J5kyOy8w", scePerfTraceIoControllerUpdate) +STUB("k3B5vS6IiKA", _ZN3sce2Np9CppWebApi7Matches2V118RequestTeamResultsC2EPNS1_6Common10LibContextE) +STUB("k3CYE6PLtAg", _ZN7WebCore9HTMLNames8layerTagE) STUB("k3GhuSNmBLU", sceAgcCbDispatch) +STUB("k3Ha6Y6Kfi4", mono_class_get) +STUB("k3Iuj2Tyt+w", _ZThn16_N9Inspector14InspectorAgent6enableERN3WTF6StringE) +STUB("k3Ot9t-rKUE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEE3getEv) +STUB("k3RI-YRkW-M", CERT_STORE_findPskByIdentity) +STUB( + "k3SYGrPBtpg", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getBoolean9Ev) +STUB("k3TGNqgYs8c", rgctx_fetch_trampoline_mrgctx_48_p) +STUB("k3UAOVz3O+k", _ZN7WebCore9HTMLNames9deferAttrE) +STUB("k3W+YOaPF68", _ZN3sce7Toolkit2NP2V27Session11Invitations8deepCopyERKS4_) +STUB( + "k3aMt00quEA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("k3bF8gFCf00", _ZN7WebCore9JSDOMRect11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("k3bqdFZj9kQ", + _ZN3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator14setCustomData1EPKvm) +STUB( + "k3cgiHaiHzI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEmmEv) +STUB("k3fGJSLc5FI", WKWebsiteDataStoreConfigurationSetIndexedDBDatabaseDirectory) +STUB( + "k3g8yRYgoh0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE5clearEv) +STUB( + "k3gqzpzqtKk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEC1EPS8_) +STUB( + "k3jOok9ypYU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEED2Ev) +STUB( + "k3lUor5qZgI", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12unsetString5Ev) +STUB( + "k3lcTYS1ZDw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("k3rxfdRtCy4", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIdEplEm) +STUB( + "k3tZhNjS84Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("k3vXih3OX4M", _ZN4Manx9X509chain10numOfChainEv) +STUB( + "k3xhtfMmiAg", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3CSS16StyleSheetOriginEEEN3WTF8OptionalIT_EERKNS5_6StringE) STUB("k3zPIcgFNv0", sceCameraSetWhiteBalance) +STUB("k4+KjJmzihI", mono_aot_Mono_Dynamic_Interpreterunwind_info) STUB("k4+nDV9vbT0", scePadGetMotionTimerUnit) +STUB("k4-n-E3wOE4", _ZN7WebCore14LoaderStrategyC2Ev) +STUB( + "k41Xh8zQEkU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE3endEv) +STUB( + "k453G0-qKFI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEplEm) +STUB( + "k46TtS8YRrk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEC2Ev) STUB("k4Ak+e2D1Hg", sceVideoOutRemoveBufferAttributeOption) +STUB( + "k4DtfD8QBls", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE21intrusive_ptr_add_refEPS9_) +STUB("k4HfprWhc0Q", _ZN9Inspector28HeapBackendDispatcherHandlerD0Ev) +STUB( + "k4IlBTvaiOo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE5emptyEv) STUB("k4M1w5Xstck", sceNpManagerIntRevalidatePassword) +STUB( + "k4NtQ4VrANE", + _ZN3sce2Np9CppWebApi14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyC2EPNS1_6Common10LibContextE) +STUB( + "k4OMjy6Bbxw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEE11get_deleterEv) +STUB("k4PNvKkDUxg", _ZN3JSC11MarkedBlock13areMarksStaleEv) +STUB("k4Qwy8R+8+w", _ZN3JSC7JSArray11fillArgListEPNS_14JSGlobalObjectERNS_20MarkedArgumentBufferE) +STUB("k4UOY9+yWQw", jio_fprintf) +STUB("k4eCQp7QlrI", jinit_c_prep_controller) +STUB("k4fDMzuXra0", unumsys_getRadix_67) +STUB("k4hOXIKXDWw", _ZN7WebCore9FloatRect11fitToPointsERKNS_10FloatPointES3_) +STUB( + "k4m3aMOP9KE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEplEm) +STUB( + "k4mRrbX2fUs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEE3getEv) +STUB("k4nkv1Hs7ZE", _ZL13_delete_array) STUB("k4yvkV8yVWU", sceAppInstUtilStartInstall) +STUB( + "k540ZjATtKc", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB( + "k56Qrq3LviI", + _ZN3JSC17JSArrayBufferView19ConstructionContextC2ERNS_2VMEPNS_9StructureEON3WTF6RefPtrINS_11ArrayBufferENS6_13DumbPtrTraitsIS8_EEEEjj) +STUB( + "k59HYoBbBY8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEixEm) +STUB("k5BACNzcm-c", _U_dyn_register) +STUB( + "k5E9zszM24k", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE4sizeEv) +STUB("k5F+BTLtKWY", twom1000) STUB("k5NZIzggbuk", sceNpTssGetStorageAsync) +STUB("k5QQrJEpRYY", ksem_open) +STUB( + "k5QvL+YQ1zA", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead28setExclusiveLeaderPrivilegesERKNS1_6Common6VectorINS5_6StringEEE) +STUB( + "k5S4qTGgDAw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEEC2ERKSA_) +STUB("k5YhL+P3rJ8", + _ZNK3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse19totalItemCountIsSetEv) +STUB("k5dQGISpej0", rgctx_fetch_trampoline_mrgctx_6_p) +STUB("k5rdY0oueBE", _ZN7WebCore16HTMLMediaElement16returnToRealtimeEv) +STUB( + "k6+It1kMpEI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEC1EPS8_) +STUB( + "k64EBY18h-Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEC2Ev) +STUB("k66VgjV17-M", + _ZN7WebCore8JSDOMURL15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB("k67ADtJOaR8", _ZNK7WebCore5Range8containsERKS0_) +STUB("k68kNfQ7stQ", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEE3getEv) +STUB("k6Cas8UFbgM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEED1Ev) +STUB("k6DIIhksauQ", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicketC2ERS5_) +STUB("k6DPY3tsjAY", mono_aot_System_Xml_Linqunbox_trampoline_addresses) +STUB("k6Er-4hFv0c", mono_aot_Sce_Vsh_SQLiteAuxplt) +STUB( + "k6J92lDhZkk", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) STUB("k6JLQGuPEYA", sceVideoOutGetDeviceInfoEx_) +STUB("k6QP2la8pI8", _ZTVN3JSC17DeferredWorkTimerE) STUB("k6QfiQvAEJc", sceMatSetThreadInfo) +STUB("k6USR9XuXKY", _ZNK3sce7Toolkit2NP9Utilities6FutureIbE3getEv) STUB("k6YqjzQohfg", sceNpGriefReportReadTextChatFile) +STUB("k6eJxKaYRro", png_set_gAMA) +STUB("k6egh+rev0s", _ZN10Deprecated18ScriptFunctionCallD1Ev) +STUB("k6gj4XMrGYI", uprv_ebcdicToLowercaseAscii) +STUB("k6hVHTe+PaY", _ZNK7WebCore19ResourceRequestBase20firstPartyForCookiesEv) +STUB( + "k6i0R3ForSg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEEaSERSA_) +STUB("k6pGNMwJB08", _Mtx_trylock) +STUB("k7+6XfiVmCw", + _ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends8setlimitEi) +STUB("k7-znEXUGvU", rgctx_fetch_trampoline_mrgctx_117) +STUB( + "k70bmbu5Mx8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEC1Ev) +STUB( + "k73D+1jaJZ0", + _ZN3WTF14FileSystemImpl25pathByAppendingComponentsENS_10StringViewERKNS_6VectorIS1_Lm0ENS_15CrashOnOverflowELm16ENS_10FastMallocEEE) +STUB("k73XwVmjdcw", _ZN3sce2Np9CppWebApi6Common13ConstIteratorImEppEv) +STUB("k76sC3mIVw4", curl_slist_free_all) +STUB( + "k76smePm8jg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB("k77hI5zSW1c", SoundPlay) STUB("k7F0FcDM-Xc", sceCompanionHttpdStart) +STUB("k7FL8BbFQP8", uloc_getDisplayScript_67) +STUB("k7Ho8t5zisU", _ZNK3JSC14CachedBytecode13commitUpdatesERKN3WTF8FunctionIFvlPKvmEEE) +STUB("k7IJQjNuiPA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEC1Ev) +STUB("k7MybpLQIXY", bemp2sys_tsdecoder_init) +STUB( + "k7NIVdosgUU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEEcvbEv) STUB("k7Nt6gITEdY", sceFontGraphicsCanvasSetSurfaceFillWithMapping) +STUB( + "k7OUqpSPwj4", + _ZN9Inspector24RuntimeBackendDispatcher20getCollectionEntriesElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("k7OvvamK5A0", _ZN7WebCore8Document16setXMLStandaloneEb) +STUB("k7STwdvqzi0", _ZN7WebCore11HistoryItemC1ERKN3WTF6StringES4_S4_NS_25BackForwardItemIdentifierE) +STUB("k7Sga5WS4zU", _ZN7WebCore13GraphicsLayer9setClientERNS_19GraphicsLayerClientE) +STUB("k7VI-LIHmyw", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V18PlatformEEeqERKS7_) +STUB("k7YlPkO7YN8", _ZN9Inspector22InspectorDebuggerAgent20setPauseOnMicrotasksERN3WTF6StringEb) +STUB( + "k7guAD8vPYg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE5beginEv) STUB("k7iGTvDQPLQ", sceGnmGetShaderStatus) +STUB("k7jgfzsGybE", _ZN3sce3pss4core8graphics14NativeGraphics29RemovePostSwapBuffersCallbackEj) +STUB("k7kGCEjXnJE", _ZN7WebCore9HTMLNames17onbeforeprintAttrE) +STUB("k7nE-PGQC7o", utrans_transIncrementalUChars_67) +STUB("k7nypVLOXk8", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10getString8Ev) +STUB( + "k7ozpeFMPuk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEEC2ERSA_) +STUB( + "k7u2fD1nxvE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEE5resetEPS6_) +STUB( + "k7v2TYeBZkE", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setBoolean9ERKb) +STUB("k7xndAGVn8U", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEED2Ev) +STUB("k7y31RwRcGg", CommerceHidePsStoreIcon) +STUB("k801tcAVuJg", _ZN9Inspector27CSSBackendDispatcherHandlerD0Ev) +STUB( + "k85iRlJjfiA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEEptEv) +STUB( + "k86IWz1rOr0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEC2EPKS8_) +STUB("k89j2+DvGOs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE4sizeEv) STUB("k8EXkhIP+lM", sceGnmUnregisterResource) +STUB("k8R5evJkads", _ZN3JSC7Symbols49createResolvingFunctionsWithoutPromisePrivateNameE) +STUB( + "k8SOIZtqqNE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEmmEv) +STUB("k8TumGgmK40", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEED1Ev) +STUB( + "k8WDHhzpVqk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEC2EPS8_) +STUB( + "k8XIRI0lXnk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEeqERKS9_) +STUB( + "k8XVOia6uzA", + _ZN7WebCore20UserGestureIndicatorC1ESt8optionalINS_26ProcessingUserGestureStateEEPNS_8DocumentENS_15UserGestureTypeENS0_23ProcessInteractionStyleE) +STUB( + "k8YUanwTdy8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEE5resetEPS9_) +STUB( + "k8Zi8BFwjCE", + _ZN3sce2Np9CppWebApi14SessionManager2V146PatchPlayerSessionsSessionIdRequestBodyFactory7destroyEPNS3_39PatchPlayerSessionsSessionIdRequestBodyE) +STUB("k8bsbTzn3ho", _UTF32LEData_67) STUB("k8d54j+HQn4", sceUlpMgrInitDecidState) +STUB( + "k8eeJW5RSc4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("k8fX-3NEK6g", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEEppEi) +STUB("k8gIVSDjoDc", _Z34sceGpuDebuggerUnregisterShaderCodePKN3sce3Gnm16EsStageRegistersE) STUB("k8rLr8nq-hE", sceAgcDriverGetSetWorkloadStreamInactivePacketSize) +STUB("k8zgjeBmpVY", _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE4_PutES3_PKcm) +STUB( + "k91Rusmvk+A", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEeqERKS9_) +STUB( + "k9HQwu7d5RE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEE11release_refEv) STUB("k9LC1z8kh-E", sceRegMgrNonSysGetBin) +STUB("k9SMjGSYdTQ", _ZN3sce7Toolkit2NP2V29Challenge10Challenges5resetEv) +STUB("k9WO6OfUzYE", monoeg_g_string_truncate) +STUB("k9Y1npuXse8", ubrk_getLocaleByType_67) +STUB( + "k9ZkxAxQhY8", + _ZN8meta_gen14ImageRetriever16ExtractThumbnailERN23sceMetadataReaderWriter9ThumbnailEP19PromoteInnerContextP17CancelInterface_tP16StorageInterfaceP23PromoteInnerInformation) +STUB( + "k9e5SZQzUYk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEaSERKS9_) +STUB("k9ixmB0yrP4", _ZN4IPMI4impl10ClientImpl9tryGetMsgEjPvPmm) +STUB("k9jCtANC+QM", _ZN3sce2np3ipc17ServiceIpmiClient17UnregisterServiceEi) +STUB("k9kErpz2Sv8", _ZTSl) STUB("k9meG9QXtn4", sceVorbisDecRawTell) +STUB("k9nIdiZYPzY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEppEv) +STUB( + "k9nUrZtHgG8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEE7add_refEv) +STUB( + "k9nlFynOtSc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEED1Ev) +STUB("k9v2fIJ8mFQ", _ZN3sce6Canvas9acquireIdEv) +STUB("k9yITCrVVRs", _ZN3sce2Np9CppWebApi10Activities2V114UserActivities5ErrorD1Ev) +STUB("k9ykGSoowZc", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchStatus10setmatchIdEPKc) +STUB( + "k9zKu3RL5xs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEED1Ev) +STUB( + "kA-+araXHm4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("kA-TdiOCsaY", frexp) +STUB("kA-V+-skDt0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEC1EPS8_) +STUB("kA0ggtLgY0I", _ZN7WebCore16JSXMLHttpRequest14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) STUB("kA88gbv71ao", sceNpPartyRegisterHandler) +STUB("kAAx2wnPMNg", mono_aot_Sce_Cdlg_Platformunbox_trampoline_addresses) +STUB( + "kABfKrgMeLo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB("kADEz2eAE7c", RSA_new) +STUB("kAJRdVwf-mc", umutablecptrie_set_67) +STUB("kALIJUwm+3Q", _Z23WebViewBaseCanGoForwardii) +STUB("kALvdgEv5ME", _Locksyslock) +STUB( + "kAS0aOT+qHM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEED2Ev) +STUB( + "kAW3OtdlHFc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEdeEv) +STUB("kAay0hfgDJs", _ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED1Ev) +STUB( + "kAce1kl8s64", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEdeEv) +STUB("kAcvu4tpcJI", _ZN7bmalloc3api13freeOutOfLineEPvNS_8HeapKindE) STUB("kAenWy1Zw5o", sceFontRenderCharGlyphImageHorizontal) +STUB("kAhppPWz40M", _Z10getIpcPathiiPKciPc) +STUB("kAl0+GEuCL0", WKGrammarDetailGetLocation) +STUB( + "kAqL+5apCCQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEneERKS9_) +STUB("kAsMu6O6yZ0", _ZNK3WTF10StringImpl21findIgnoringASCIICaseEPKS0_j) STUB("kAt6VDbHmro", sceKernelWritev) +STUB("kAwbc1NaV8A", ufile_getch_67) STUB("kB3Njn2JIxg", sceDebugGetWaitingListOfUltSemaphore) +STUB("kB7iRn6G2NQ", _ZN7WebCore27parseCacheControlDirectivesERKNS_13HTTPHeaderMapE) +STUB( + "kBBS7OZVLzY", + _ZN3sce2Np9CppWebApi14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBody12unsetNatTypeEv) +STUB( + "kBBTQMzX328", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "kBE6T6bmzGo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEE21intrusive_ptr_sub_refEPS7_) +STUB("kBIjlgsWmJ0", _ZN3sce7Toolkit2NP2V28Matching7Request23SetMembersAsRecentlyMetD1Ev) STUB("kBJzF8x4SyE", sceKernelBatchMap2) +STUB("kBMwammS-EY", _ZN7WebCore24RotateTransformOperation5blendEPKNS_18TransformOperationEdb) STUB("kBON3bAtfGs", sceNpUtilGetEnv) +STUB( + "kBT2Z9fjRZI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEptEv) +STUB( + "kBTiUlnzJq4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEE11get_deleterEv) +STUB("kBU4pprNnRc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V114SearchOperatorEEC2Ev) +STUB("kBUw9BF1N28", _ZNK7WebCore15HTMLAreaElement12imageElementEv) +STUB( + "kBXZc7YxGc8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "kBYJoa7QCh4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE6resizeEj) +STUB("kBiv08+TCFs", _ZN7WebCore10Pasteboard10readOriginEv) +STUB("kBixi40eQqo", _ZN3NTF6Cookie11CookieJarDB9setEnableEb) +STUB("kBj79hWFelk", _ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest17getNpServiceLabelEv) STUB("kBjUiQc9P1w", sceCesRefersUcsProfileKsX1003) STUB("kBo7ItYgSPo", sceUrlConfigResolverGetJscHeapSizeSoftLimit) +STUB("kBpWlgVZLm4", _Atomic_compare_exchange_strong) +STUB( + "kBtSpZrD9Tc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) STUB("kBwCPsYX-m4", sceKernelFstat) +STUB("kBxt5LwtLA4", __cxa_free_dependent_exception) +STUB("kBxwE4YfbIM", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product9skusIsSetEv) +STUB("kC-1WFDy3EU", _ZN3JSC12CachePayload16makeEmptyPayloadEv) +STUB( + "kC1J9zobZis", + _ZN7WebCore15ContextMenuItemC2ENS_17ContextMenuActionERKN3WTF6StringEbbRKNS2_6VectorIS0_Lm0ENS2_15CrashOnOverflowELm16EEE) +STUB( + "kC1eHRbt5sc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEmmEv) +STUB( + "kC6sswpjy5A", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEplEm) +STUB( + "kCAPvCctEjA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEEC2ERKSA_) +STUB( + "kCHsJh7yVio", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("kCKHi6JYtmM", rewinddir) +STUB( + "kCKTL1Zoz2o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("kCKipMlRpIM", uregex_hasTransparentBounds_67) +STUB( + "kCUTf3zM8c8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEC2EPS7_PNS2_10LibContextE) +STUB( + "kCVBjCWSOq8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEE11get_deleterEv) +STUB( + "kCWnbqC0RqA", + _ZN7WebCore11FrameLoader14stopAllLoadersENS_26ClearProvisionalItemPolicyENS_17StopLoadingPolicyE) +STUB("kCX0k5t1v-w", _ZN15AbstractStorage14StorageManager6UnloadENS_11ServiceTypeE) +STUB( + "kCbWd2BCgTI", + _ZNK3sce2Np9CppWebApi14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBody6toJsonERNS_4Json5ValueEb) +STUB("kCnt79PYvsg", + _ZN3sce2Np9CppWebApi14SessionManager2V114Representative8fromJsonERKNS_4Json5ValueE) +STUB("kCrmROGUsx0", _ZN7WebCore8SVGNames10valuesAttrE) STUB("kCurUZVFqcI", sceShareSetCaptureSource) +STUB("kCwnfCC1kM8", _ZN3sce7Toolkit2NP2V210Tournament17TournamentDetailsD1Ev) +STUB("kCyUitYjnKY", mono_get_char_class) +STUB("kCyuvXqGXu0", _ZN9Inspector21CSSFrontendDispatcherdaEPv) +STUB("kCzSGdGoMJo", + _ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody19getComparedDateTimeEv) +STUB("kD+v7gtx55o", _ZNK7WebCore15AffineTransform7mapSizeERKNS_9FloatSizeE) +STUB("kD3l0P19Wzg", _ZThn8_N3sce2np9LocalFileD1Ev) +STUB("kD4ppqGHUsI", _ZN9Inspector22HeapFrontendDispatcher16trackingCompleteEdRKN3WTF6StringE) +STUB("kDAMsRNSPpY", _ZN7WebCore21findEventWithKeyStateEPNS_5EventE) +STUB( + "kDAU7Px3d38", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("kDBfLsW0W5s", + _ZN7WebCore23ScaleTransformOperationC1EdddNS_18TransformOperation13OperationTypeE) +STUB( + "kDF7xvPZ7Xs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE5emptyEv) STUB("kDHvQLi0PM4", sceVisionManagerGetNumOfRegisterUserDataSlot) +STUB("kDHvtssgHfY", _ZN7WebCore10ScrollView23setPaintsEntireContentsEb) +STUB("kDWhMOmHaP8", YGNodeSetContext) +STUB("kDZvoVssCgQ", strpbrk) +STUB("kDa0SoOwDfQ", + _ZN3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform13unsetPlatformEv) +STUB("kDaQLJv89bs", _ZN3sce2np7RingBuf4PeekEmPvm) +STUB( + "kDbza6wi03Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE5beginEv) +STUB("kDcoibWUH68", _ZN3sce7Toolkit2NP2V28Commerce12ProductLabelC1Ev) +STUB("kDd1MtrPyrU", Java_com_sony_bdjstack_javax_media_controls_SoundManager_bind) +STUB("kDddBW0M4F0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEEC1ERKS7_) +STUB("kDewIzcDLis", _ZN7bmalloc5Cache28tryAllocateSlowCaseNullCacheENS_8HeapKindEm) STUB("kDfWvHZH3eM", sceKernelIccGetBootTimestamp) +STUB( + "kDg0VkC6Syc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE4sizeEv) STUB("kDh-NfxgMtE", scePthreadCondSignal) +STUB( + "kDjJ9iUg6+E", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE8readDataEPcm) +STUB( + "kDk13fDq3fE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEC2ERS8_) +STUB( + "kDn+c0if21U", + _ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForRead16setNonPsnPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_25PlayerSessionNonPsnPlayerEEEEE) +STUB("kDxzgCcMty0", AacsPermissionSet) +STUB("kE-pP+SNCrU", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributesD2Ev) STUB("kE0kdvcHTiY", sceVoiceQoSDeleteLocalEndpoint) +STUB("kE3fi15U9L4", p5_8) STUB("kECUSNedk3o", sceAvControlGetCurrentOutputMode) +STUB( + "kEDfMhW9s-8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB( + "kEEwbqhiKhQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("kEIAbxGrlao", _ZN3JSC7Symbols26MAX_ARRAY_INDEXPrivateNameE) +STUB("kEMteHSVA+0", WKContextConfigurationCopyMediaKeysStorageDirectory) +STUB("kEO02CaHGng", fuse_reply_statfs) +STUB("kESljrwvBC4", + _ZN9Inspector14InjectedScriptC2EN10Deprecated12ScriptObjectEPNS_20InspectorEnvironmentE) +STUB("kEVyg4136z4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadDataC1ERS5_) +STUB( + "kEZy8spjDzk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE8copyFromERKS9_) +STUB("kEags+FqdZQ", WKFrameCopyTitle) +STUB( + "kEeNTuEiXj4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEdeEv) +STUB("kEitTZ66CXk", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE5emptyEv) +STUB( + "kEmNixfV4Eg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "kEoFa4IyFHo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEED2Ev) STUB("kEqqyDkmgdI", sceAudio3dGetSpeakerArrayMemorySize) +STUB( + "kErjr1jew74", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEE3getEv) +STUB( + "kEteNnWfhOE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEC2Ev) +STUB("kEyf3apBh4M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEEC2EPS5_PFvS7_EPNS2_10LibContextE) STUB("kF--s3xZjco", sceUltUlthreadExit) +STUB("kF-yS5OChO8", glGetActiveAttrib) +STUB("kF7oIXtT+pg", _ZN3JSC14AggregateError6s_infoE) +STUB("kF85XyAhZiU", _ZN3sce2Np9CppWebApi13InGameCatalog2V515ContainerRatingD2Ev) +STUB("kF8Mcy9F5O4", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicket7setviewEPKc) STUB("kF9zjnlAzIA", sceNpTrophyIntNetSyncTitle) +STUB("kFEZPg-FviY", _ZN7WebCore8SVGNames15font_weightAttrE) STUB("kFKJ3MVcDuo", sceAudioInExtClose) +STUB("kFMRC1JMD+E", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable8fromJsonERKNS_4Json5ValueE) +STUB("kFTkjvDhu7E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEC2ERKS7_) +STUB("kFTwPJB2uP4", + _ZN7WebCore11DisplayList8SetStateC1ERKNS_20GraphicsContextStateEN3WTF9OptionSetINS2_6ChangeEEE) +STUB( + "kFXj8DIw2+I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB("kFXtge4WNeg", WKBundleNodeHandleCopyHTMLTableCellElementCellAbove) +STUB("kFYQ4d6jVls", _ZSt11try_to_lock) +STUB("kFgi4Dou7zo", g_dir_open) +STUB("kFhGYWlemdU", mono_aot_Sce_Vsh_SQLiteAuxunbox_trampolines) STUB("kFhuwHrIUqs", scePlayerInvitationDialogUpdateStatus) +STUB( + "kFjEExB6F6s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEE7add_refEv) +STUB("kFkOe+-uJ08", _ZN3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer15unsetPlayerNameEv) +STUB("kFkr8Q7gREk", _ZN7WebCore11MediaPlayer11timeChangedEv) +STUB("kFmZcqAKoIg", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEEixEm) +STUB("kFoBBPXWEjE", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V113SubtaskStatusEEppEv) +STUB("kFrQbmo3k4I", _ZNSt9_FacetptrISt10moneypunctIcLb0EEE6_PsaveE) STUB("kFt4MB3SUEk", sceVrTracker2UnregisterDevice) +STUB("kFw-B-SsQUM", _ZN9Inspector32TimelineBackendDispatcherHandlerC2ERKS0_) +STUB("kFzUzuZWV9Q", rgctx_fetch_trampoline_mrgctx_66_p) STUB("kG+A6NNwDow", sceFiosDHRead) +STUB( + "kG-fUmGI22I", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsers37unsetxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB( + "kG15qBpjXKE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "kG5D9pp4tHY", + _ZN3sce7Toolkit2NP2V210Tournament19sendTeamMatchReportERKNS3_7Request19SendTeamMatchReportEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB( + "kG5JUaf5L4A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEC1Ev) +STUB("kG8j4DY2tBo", GCC_except_table21) +STUB("kGAitTwtXq0", WKBundleFrameCopySuggestedFilenameForResourceWithURL) +STUB( + "kGCb5J70iY8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEppEv) +STUB( + "kGDti4Ht2CI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEE11release_refEv) +STUB("kGILBTim6ns", _ZN3sce7Toolkit2NP2V28Commerce7Request26SetPsStoreIconDisplayStateD1Ev) +STUB( + "kGIc12UHv0Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEC2EPS8_) STUB("kGML0n2oG8Y", sceUserServiceGetNotificationSettings_1) +STUB( + "kGRIv-cvRyI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEC1EPS6_PNS2_10LibContextE) STUB("kGVLc3htQE8", sceVideoOutGetDeviceCapabilityInfo_) +STUB("kGWgW9SKvB0", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeINS1_11TusVariableEPvEE9constructEPS6_RKS6_) +STUB("kGXd-HD7kG8", + _ZN3sce2Np9CppWebApi14ConnectAccount2V212PartnerTokenC2EPNS1_6Common10LibContextE) +STUB("kGjL8v4KTxM", _ZN3sce2Np9CppWebApi11Matchmaking2V15Cause9unsetCodeEv) +STUB("kGqIotiwgJk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEE5resetEPS6_) +STUB("kGwtyyyhjyE", _ZN7WebCore20ISOOriginalFormatBox5parseERN3JSC8DataViewERj) +STUB( + "kGxxu-ViNlY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEmmEv) +STUB("kGzfFi9oKu0", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11InvitationsEE12deepCopyFromERS7_) +STUB("kH2e-B7bIS0", uprv_decContextTestSavedStatus_67) +STUB("kHFcy4n3fsY", + _ZN3sce2Np9CppWebApi14SessionManager2V124GameSessionMemberForReadC1EPNS1_6Common10LibContextE) +STUB("kHFeN1xjG20", _ZNSbIcSt11char_traitsIcEN15AbstractStorage8StlAllocIcEEE6assignERKS4_mm) +STUB("kHGtT70monA", tenth) +STUB("kHGtjFK53PI", _ZN3sce2Np9CppWebApi13InGameCatalog2V511ErrorEntityC1EPNS1_6Common10LibContextE) +STUB( + "kHIOAL89VPA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEC2ERKS7_) +STUB("kHLuEOVfAaA", WKBundleRemoveUserStyleSheet) STUB("kHOS+St2y7M", sceKernelLwfsTrimBlock) +STUB("kHVXc-AWbMU", _LXp_setw) +STUB( + "kHWhawWqjEA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEaSERKS8_) +STUB( + "kHYZa51TTjI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEC2EPS8_) +STUB("kHaXOqmt2+o", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10CategoriesEED2Ev) STUB("kHd72ukqbxw", scePlayGoDialogOpen) +STUB("kHd8jF+QltI", + _ZN7WebCore50restrictScaleFactorToInitialScaleIfNotUserScalableERNS_18ViewportAttributesE) +STUB("kHg45qPC6f0", strncat) +STUB("kHiMoVF0FQU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE5emptyEv) +STUB( + "kHjKtkr2twI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEC2EPS8_) +STUB( + "kHoSF--+R5c", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEEdeEv) +STUB("kHuGSHvt3As", _ZN7WebCore21convertToIntegerClampIsEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB( + "kHukcKao95o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE5beginEv) +STUB( + "kHwwoZSc814", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody37comparedLastUpdatedUserAccountIdIsSetEv) +STUB( + "kHzbDZkQ9jM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEaSERS7_) +STUB("kI+vdlRYjgA", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11EntitlementEE7addressERKS3_) +STUB( + "kI0wgtzMZC0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEptEv) +STUB( + "kI6g83dXE0o", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_17ActivityFeedStoryENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB( + "kI7M4qfDppo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("kI7pnL9KnSM", _ZN3JSC4Heap11objectCountEv) +STUB( + "kIBZOwobsSg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEED2Ev) +STUB("kIELFyKj5sg", _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities8Activity12matchIdIsSetEv) STUB("kIGZ7Erl4GQ", sceFsExtUSBSchedInsert) +STUB( + "kIKAc29CJyE", + _ZN7WebCore17NowPlayingManager30didReceiveRemoteControlCommandENS_20PlatformMediaSession24RemoteControlCommandTypeEPKNS1_21RemoteCommandArgumentE) +STUB("kIPfyV8OB9g", Java_java_lang_ref_Finalizer_invokeFinalizeMethod) +STUB("kIR9uG8dfTY", WKContextSetUsesSingleWebProcess) +STUB( + "kIRFkmA4LjU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE7popBackEv) +STUB( + "kITdY3S+LEE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE23clearOnFinishedCallbackEv) +STUB( + "kITv461ZAyc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEC2ERS7_) +STUB("kITxNY9Pxjo", _ZN3sce7Toolkit2NP2V210Wordfilter16SanitizedCommentD1Ev) +STUB( + "kIUGsJscI7o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB("kIYv-OH1czQ", rgctx_fetch_trampoline_rgctx_39_p) +STUB("kIbwtX5Mi6c", curl_url_cleanup) STUB("kIdb+iQUzCs", sceAudioPropagationSystemSetAttributes) +STUB( + "kIepcU91z2s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("kImHEIWZ58Q", _ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE) +STUB("kInY4S15M4c", vm_send_ClearBreakpoint) +STUB("kIpdcBM2OZY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE7popBackEv) +STUB( + "kIrwUjd3rP0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEmmEi) +STUB( + "kIs-brG7pNU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEEC1ERKSA_) +STUB( + "kIzhryfx6ng", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEED1Ev) +STUB( + "kJ+2VRpoNaU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE21intrusive_ptr_sub_refEPS7_) +STUB( + "kJ08SigG21Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEED2Ev) STUB("kJ0Nhf2At8Y", sceAvSettingGetRawHdmiMonitorInfo) +STUB("kJ4XtrNLHMo", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_playPlayListAtItem) +STUB( + "kJ507zw+zEA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEED1Ev) +STUB( + "kJ5ayJkclW0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEC2EPS8_) +STUB("kJ7QpdWODn8", _ZN7WebCore16VisibleSelection22adjustPositionForStartERKNS_8PositionEPNS_4NodeE) +STUB("kJ8A0zrG2WE", _ZN7WebCore12ChromeClientD2Ev) +STUB( + "kJDcQqx7mE0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("kJG1DY2qLJ4", _ZN7WebCore13QualifiedNameC2ERKN3WTF10AtomStringES4_S4_) +STUB( + "kJIGYVoYkQg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEE7get_refEv) +STUB( + "kJNgNx72XyA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEppEv) STUB("kJQJE0uKm5w", sceNpWebApiRegisterServicePushEventCallback) +STUB( + "kJRDf7LAnDo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEEdeEv) +STUB( + "kJZBH4vDaMs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "kJky7PkET6M", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB( + "kJl1LuCWFDw", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations9getfieldsEv) STUB("kJlYH5uMAWI", sceNetResolverDestroy) +STUB("kJmdxo4uM+8", + _ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE5_InitERKSt8_Locinfo) STUB("kJmjt81mXKQ", sceAppContentAddcontEnqueueDownloadByEntitlemetId) +STUB( + "kJoY9lMIFzY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEmmEi) +STUB( + "kJrr94o+vxw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEEC1Ev) +STUB("kJxS50jvGx0", _ZN7WebCore11MediaPlayer4loadERKN3WTF3URLERKNS_11ContentTypeERKNS1_6StringE) +STUB( + "kJxwZI9fiuQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEEC1ERKSA_) STUB("kJyoJpWuj1o", sceVnaSetupKeyPhraseDetection) +STUB("kK+c8MOkymg", _ZN3sce7Toolkit2NP2V24Core12ResponseBase11resetValuesEv) STUB("kK0DUW1Ukgc", sceCoredumpGetStopInfoCpu) +STUB("kK2tX4TVoJ4", _ZN3JSC7Symbols34arrayIteratorNextHelperPrivateNameE) STUB("kK6psDxUQmI", sceFsGetAttribute) +STUB("kKEVAmLFE8Y", _ZN4Manx8X509nameC2EPv) STUB("kKF3w-XkCWA", _sceNpAllocatorExRealloc) +STUB( + "kKFfFNyKcnE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEdeEv) +STUB("kKHf-FWb-Ko", _ZN3JSC2VM9canUseJITEv) +STUB("kKNeeETGcDg", _ZTVN7WebCore23CoordinatedImageBackingE) STUB("kKUH0Viib3c", sceNpUniversalDataSystemDestroyEventPropertyObject) +STUB("kKlQ4e-mbjc", GENERAL_NAMES_free) +STUB( + "kL-m0Xuv1SM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEppEv) +STUB( + "kL82cxE5L+E", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10getString9Ev) STUB("kLB5aGoUJXg", sceSslGetPem) +STUB("kLDgEC1CtLw", sqlite3_last_insert_rowid) STUB("kLERpSLEraQ", scePlayReadyInitialize) +STUB( + "kLEVXpO3XeQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEC1EPNS2_10LibContextE) +STUB( + "kLGlSgS3C48", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE10setContextEPNS2_10LibContextE) STUB("kLJQ3XioYiU", sceSaveDataBindPsnAccount) STUB("kLLazhNh6d4", sceAppInstUtilTerminate) +STUB( + "kLOVG0FopjY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE10setContextEPNS2_10LibContextE) STUB("kLU6hhXsa2A", sceVoiceQoSConnect) STUB("kLUAkN6a1e8", sceHmdReprojectionQueryOnionBuffSize) +STUB("kLWG4PzbY7E", _ZN7WebCore18HTMLMarqueeElement5startEv) +STUB("kLXt5iQte48", rgctx_fetch_trampoline_mrgctx_117_p) +STUB( + "kLduJjmPrV8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) STUB("kLeJhwuG-q4", sceRnpsAppMgrSetCrlUrl) +STUB("kLfKe5xGxJ8", _ZN6icu_6713UnicodeStringC1Ev) +STUB( + "kLp7JTdKBbc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE10setContextEPNS2_10LibContextE) +STUB("kLpxFPhl4Q8", _ZN3JSC11RegisterSet12argumentGPRSEv) +STUB( + "kLqPRA20q-Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEmmEi) STUB("kLtEklLY7Z4", sceVencCoreSetPrivacyGuard) STUB("kLwDVk6wcO0", sceClHttpDeleteRequest) +STUB("kLx46JzbOG0", + _ZN12video_parser13cVideoMetaMP48getTitleENS_9VP_LANG_eEjNS_15VP_SEARCH_OPT_eEPS1_Pv) +STUB( + "kLzq1bVqeWg", + _ZN3sce4Json5Value3setERKSt3mapISbIcSt11char_traitsIcENS0_8StlAllocIcEEES1_St4lessIS7_ENS5_ISt4pairIS7_S1_EEEE) +STUB( + "kM3VgFObOBU", + _ZN7WebCore22EmptyFrameLoaderClient22createJavaAppletWidgetERKNS_7IntSizeERNS_17HTMLAppletElementERKN3WTF3URLERKNS6_6VectorINS6_6StringELm0ENS6_15CrashOnOverflowELm16ENS6_10FastMallocEEESG_) +STUB( + "kM3sUwACCP0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEC2EPS6_PNS2_10LibContextE) STUB("kMBw37oH8nI", sceVdecswTrySyncDecodeOutput) +STUB("kMCk5HYXRhA", _ZN7WebCore11DisplayList6RotateC1Ef) +STUB( + "kMGw4D6lQ+k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEC2Ev) +STUB( + "kMHHAhvJdKE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEE7add_refEv) +STUB("kMK3ujs4uBI", _ZN3JSC12NumberObject6s_infoE) +STUB("kMKB-e0+bGY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEED2Ev) +STUB("kMKfZl75bRM", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getMixerMetadataOn) +STUB( + "kMLKAmvCAP0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEEaSERSA_) +STUB("kMMfv2oi3NE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEC1Ev) +STUB("kMNUke1y-Mo", fuse_reply_iov) +STUB("kMS0EmTf14c", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE5emptyEv) +STUB("kMTRFgR4700", _ZTSPKg) +STUB( + "kMUFVTGoa1g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEED2Ev) +STUB("kMWGK8yZPm4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4RoomEE5resetEv) +STUB("kMXQ-OVHLrY", g_strlcpy) +STUB( + "kMYH-RWKmsE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEEC2Ev) +STUB("kMZyb0YevGA", _ZN7WebCore9HTMLNames8asideTagE) STUB("kMaBFIQNsSI", sceApplicationGetAppInfoByAppId) STUB("kMb+qpZTQ18", sceMusicPlayerServicePlayStartByTime) +STUB("kMfXlOLbJ9g", _ZN7WebCore11DisplayList11SetLineDashD0Ev) +STUB("kMoBIfGax64", _ZN7WebCore16MIMETypeRegistry29getSupportedNonImageMIMETypesEv) +STUB( + "kMonHAZPs00", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEEC1ERKSA_) +STUB( + "kMowTh3S81M", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser12getaccountIdEv) +STUB("kMpgMy01JZo", _ZN3sce7Toolkit2NP2V27Session21ChangeableSessionDataC2Ev) +STUB( + "kMpoYVZ9fdo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEE7get_refEv) +STUB( + "kMvxaMEP+x0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEE7add_refEv) +STUB("kMydohzpE+Q", _ZN3WTF14FileSystemImpl17openTemporaryFileERKNS_6StringERiS3_) +STUB("kN7Sy7TC+pA", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request15GetSharedVideosC2Ev) +STUB( + "kNCiQhdR4qA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser11unsetoffsetEv) +STUB("kNFSwqzlnUk", _ZThn664_N7WebCore24CoordinatedGraphicsLayer10createTileEjf) +STUB("kNIvrkD-XJk", SSL_setServerNameList) +STUB("kNMZlFmxBH8", _ZN7WebCore20SVGPathStringBuilderD2Ev) +STUB("kNSoVmhYbnY", mono_btls_x509_name_from_data) +STUB("kNVvx6yXTAE", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V112TicketStatusEEppEv) +STUB("kNWg2SkpTa4", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetAccountId2OnlineIdD1Ev) +STUB("kNXDL29aL0E", _ZN7WebCore13CSSStyleSheet7addRuleERKN3WTF6StringES4_NS1_8OptionalIjEE) +STUB( + "kNamuajsFsU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEneERKS9_) +STUB( + "kNbBc6tYgd8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEEC1Ev) +STUB("kNbP1x4atrg", _ZN9Inspector14InjectedScriptD1Ev) +STUB( + "kNiWFq7jWQ0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE4sizeEv) +STUB("kNkrWfrE0bY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEEC1EPKS6_) +STUB("kNmqbnlvatM", + _ZN7WebCore4Page31setUserInterfaceLayoutDirectionENS_28UserInterfaceLayoutDirectionE) +STUB("kNn56Z36kZU", _ZN7WebCore9PageGroup9pageGroupERKN3WTF6StringE) +STUB( + "kNnzQy1wI2E", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEeqERKS9_) +STUB( + "kNoXfjoWXRU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEE5resetEPS6_) +STUB("kNua19l9-0I", cairo_font_options_set_antialias) +STUB( + "kNzhviycGbY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEC2ERKS7_) +STUB( + "kODoY85tTg0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "kOE8lZTZQho", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEC1EPS6_PNS2_10LibContextE) +STUB("kOEP3Dqn1B4", _ZN7WebCore10RenderView10compositorEv) +STUB( + "kOJjB0DwpMw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEED2Ev) +STUB("kOKDFcsjZrA", _ZNK7WebCore19ResourceRequestBase10isSameSiteEv) +STUB("kONYtx9Wm-w", _ZN7WebCore18TextureMapperLayerD0Ev) +STUB( + "kOThalOyBaU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEaSERKS9_) +STUB("kOVSJf52zg8", _ZN7WebCore24ImmutableStylePropertiesD1Ev) +STUB("kOWP4y3+WZE", _ZN3JSC9Structure3pinERKN3WTF14AbstractLockerERNS_2VMEPNS_13PropertyTableE) +STUB("kOXbLzJyLFQ", _ZN3sce7Toolkit2NP2V211UserProfile8RealName20MAX_SIZE_MIDDLE_NAMEE) +STUB( + "kOY3yOljvZQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("kOZTCBZCk4g", glUniformMatrix2x4fv) +STUB( + "kOaUt01Wmr8", + _ZN3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBody19setTicketAttributesERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_9AttributeEEEEE) +STUB("kOci8E1fQzg", + _ZN23sceMetadataReaderWriter7Storage21_findParserByFilePathERKSsPPNS_10ParserInfoE) STUB("kOcnerypnQA", sceKernelGettimezone) STUB("kOd75qDlxBM", sceLncUtilGetResultKillApp) +STUB( + "kOeBKp8TgFk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) STUB("kOfZlhbVAkc", sceAmprAmmCommandBufferMapDirectWithGpuMaskId) STUB("kOj1HiAGE54", sceNetListen) +STUB("kOwDs0cPXSI", WKStringCreateWithUTF8CString) +STUB( + "kOwgVpE5FIs", + _ZN7WebCore11DOMRectListC1ERKN3WTF6VectorINS_9FloatQuadELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("kP+pALcd5K8", mono_runtime_is_shutting_down) +STUB( + "kP-xd8wtAB4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEE3getEv) +STUB("kP0UwniJtRo", _ZN3WTF25fastDecommitAlignedMemoryEPvm) +STUB("kP1VqcMdVqk", _ZN9Inspector24TargetFrontendDispatchernaEm) STUB("kP4l+nyBjRA", sceVideoOutSysOpenInternal) +STUB("kP96QYFv1KY", _ZN7WebCore20ResourceResponseBase25syntheticRedirectResponseERKN3WTF3URLES4_) STUB("kP9AaRQ4bs0", sceApplicationSystemShutdown2) +STUB("kPELiw9L-gw", _ZNSt10moneypunctIcLb1EEC2Em) +STUB("kPGXeSQeoWc", __sys_osem_open) +STUB("kPNIRit7x-c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEED2Ev) +STUB( + "kPPhckrTI-o", + _ZNK3sce2Np9CppWebApi14ConnectAccount2V215AccountLinksApi28ParameterToDeleteAccountLink13isInitializedEv) +STUB("kPSQIkWwKtM", _ZN7WebCore24parseDoViCodecParametersERKN3WTF6StringE) +STUB( + "kPVPQs5uG0M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEEptEv) +STUB("kPVQ5FK0f24", RSA_verify) +STUB("kPVhCcZKzjk", ures_openU_67) +STUB("kPhzQHFGd08", utrie2_fromUTrie_67) STUB("kPmyrOL6c3I", sceVnaSetUmmStatus) +STUB("kPoy66Qyehc", ucnv_load) +STUB( + "kPtUBqPF8zc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) STUB("kPvgi8x497Q", sceFiosDLLTerminate) +STUB("kPw6Fca7u9I", mono_aot_System_ComponentModel_DataAnnotationsunbox_trampolines_end) +STUB("kQ+AKNmelSY", _ZStL4ferr) STUB("kQ-rPCg6ZWU", sceCesEucJpToUtf16be) +STUB("kQ0tHfaz-R4", JSGlobalContextCreateInGroup) +STUB( + "kQ3xwsuFcfs", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessions32setpostPlayerSessionsRequestBodyENS1_6Common12IntrusivePtrINS3_29PostPlayerSessionsRequestBodyEEE) +STUB("kQ41B6QHfHw", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE7popBackEv) +STUB( + "kQ6vHgHuVMo", + _ZN7WebCore18JSHTMLInputElementC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_16HTMLInputElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB("kQA2oXsxb3Y", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEptEv) +STUB( + "kQCE8Yltyes", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEppEi) +STUB("kQEacF2vg-k", _ZNK7WebCore16JSXMLHttpRequest7wrappedEv) +STUB("kQK51-gjXDk", _ZZSt9MakefacetISt10moneypunctIwLb1EESt8_LocinfoERT_T0_E3buf) +STUB("kQPLH6XosxM", _ZN7WebCore17PageConsoleClient7profileEPN3JSC9ExecStateERKN3WTF6StringE) +STUB("kQR2xbsoPrY", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsD2Ev) +STUB("kQTOUSl14E8", mono_aot_Sce_PlayStation_PUIunbox_trampolines) +STUB( + "kQVicS6NZ9A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEED2Ev) +STUB("kQWc+ifDQvA", _ZN7WebCore36ISOProtectionSystemSpecificHeaderBoxD1Ev) +STUB("kQaShAP-AI8", + _ZN3sce2Np9CppWebApi14ConnectAccount2V215AccountLinksApi28ParameterToDeleteAccountLinkC1ERS5_) +STUB("kQelMBYgkK0", _thread_autoinit_dummy_decl) +STUB( + "kQmwzB0qEvY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE5clearEv) +STUB("kQyNibZId5k", _ZN3WTF3URL25fileURLWithFileSystemPathENS_10StringViewE) +STUB( + "kR+kUllBN9A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEEC2ERSA_) +STUB("kR09Tm7VQbw", _ZN7WebCore21HTMLOptionsCollection9setLengthEj) +STUB("kR3ed2pAvV8", _ZN3sce2np12NpHttpClientD1Ev) +STUB("kR48K4AM1Xc", res_load_67) +STUB( + "kR8Mv98yy7M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEED1Ev) +STUB("kR9Z7rmiqAg", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesD2Ev) +STUB("kRCyhNPMrpg", _ZN7WebCore14ScrollableArea32computeScrollbarValueAndOverhangEfffRfS1_) +STUB( + "kRGO-B6iqdE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB("kRGVhisjgMg", _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE4_PutES3_PKwm) +STUB("kRKs44qOGYE", rgctx_fetch_trampoline_mrgctx_65_p) +STUB( + "kRQpOobCp1M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEC1ERKS7_) +STUB("kRXjOtU-NTI", + _ZNK3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody15updateModeIsSetEv) +STUB( + "kRaE3X3CD8I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEppEi) +STUB("kRb0lquIrj0", SSL_getClientRandom) +STUB( + "kRbUAm1Du+g", + _ZN3sce7Toolkit2NP2V27Ranking8setScoreERKNS3_7Request8SetScoreEPNS2_4Core8ResponseINS3_8TempRankEEE) +STUB( + "kRlcrWTBz4w", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("kRms03n0VdU", + _ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer12unsetNatTypeEv) +STUB( + "kRnBMEM21v8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEEC1ERS9_) +STUB("kRoezIaLVtk", WKBundleNavigationActionCopyHitTestResult) +STUB( + "kRpyYvdHfew", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEptEv) +STUB("kRrTcg7BXdM", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_15CategoryInfoSubENS2_IS4_EEEED2Ev) +STUB( + "kRtHEYxmSKg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEneERKS9_) +STUB("kRyTHJ25dsk", _ZN3sce7Toolkit2NP2V27Ranking7Request15GetRangeOfRanks9MIN_RANGEE) +STUB("kS-RIA8mnR8", mono_aot_Sce_Vsh_WebBrowserjit_got) +STUB("kS2VUTkflj0", + _ZN7WebCore21WheelEventTestMonitor18receivedWheelEventERKNS_18PlatformWheelEventE) +STUB( + "kS7upJUC8LA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEC2EPS6_PNS2_10LibContextE) +STUB( + "kS90uDHCoSA", + _ZN7WebCore16ScriptController41executeAsynchronousUserAgentScriptInWorldERNS_15DOMWrapperWorldEONS_23RunJavaScriptParametersEON3WTF17CompletionHandlerIFvNSt12experimental15fundamentals_v38expectedIN3JSC7JSValueENS_16ExceptionDetailsEEEEEE) +STUB("kS92Nwfsyrg", _ZN7WebCore18TextureMapperLayer5setIDEj) +STUB( + "kSASO5nGHAM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEC2EPKS8_) +STUB("kSDbuDTj3V4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEppEv) +STUB( + "kSJX+wh7Puk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEE11release_refEv) +STUB( + "kSQizKwQt2E", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEeqERKS9_) +STUB( + "kST6RcL8oR0", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB( + "kSYZo64APPs", + _ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer15setPushContextsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_22GameSessionPushContextEEEEE) +STUB( + "kSbacQwDzk8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEmmEi) +STUB("kSenGz3mYbY", mono_aot_System_ServiceModelmethod_addresses) +STUB("kSlHq9JlYgI", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V127ConnectionQualityProperties8getWiredEv) +STUB("kSn9KX+DIpU", u_file_write_flush_67) STUB("kSoGcqsgEh0", sceCesUtf16beToSJis) STUB("kSqKbSK1s2c", sceApplicationOnAllResourceReleased) +STUB("kSrZSOXL4tA", _ZN3NTF18NetworkControlImpl8finalizeEv) +STUB( + "kSrg5LXEGkM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEaSERS7_) +STUB( + "kStZdq3y3z0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEC2ERS7_) +STUB( + "kStu2hP-grE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEppEv) +STUB( + "kSy8uydXteA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("kT3lQ5+kLC4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE5beginEv) +STUB("kT5k5wjay0I", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE7popBackEv) +STUB("kT7ArRAAzRA", aio_waitcomplete) +STUB( + "kT8bd-DbU68", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEEaSERSA_) +STUB("kTDnY9DqgNI", _ZN7WebCore15AffineTransform4skewEdd) +STUB("kTKLhNn54l8", WKPreferencesSetInactiveMediaCaptureSteamRepromptIntervalInMinutes) +STUB( + "kTKrnp3qY5g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE7reserveEi) +STUB("kTLRjsyzOpQ", _ZN3sce7Toolkit2NP2V212NetworkUtils12Notification14NetStateChange5resetEv) +STUB( + "kTN0BxT3h+w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "kTOirwBv7No", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEmmEv) +STUB( + "kTRxGaK5O6g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE5clearEv) +STUB("kTSg3Fg36FQ", mono_btls_x509_verify_param_set_flags) +STUB("kTVYwxFhSsc", _ZN7WebCore20TransformationMatrixC2ERKNS_15AffineTransformE) +STUB("kTdmL7yvtgs", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIlED2Ev) +STUB("kTfkKhcdW5Y", _ZN3sce2np18HttpConnectionPoolD1Ev) STUB("kTiAx7e2zU4", sceSystemServiceSuspendLocalProcess) +STUB("kTj1oic2Yvs", _ZTVN7WebCore17LibWebRTCProviderE) +STUB("kTkBElbiq8Y", _ZTVN7WebCore11DisplayList7ClipOutE) +STUB("kTkXfhto+TQ", _ZNSt7codecvtIwc9_MbstatetE7_GetcatEPPKNSt6locale5facetEPKS2_) +STUB("kTlQY47fo88", _ZNKSt13bad_exception8_DoraiseEv) +STUB("kTsKrlnZ2yc", _ZN3sce7Toolkit2NP2V210Tournament20OneVsOneMatchDetailsaSERKS4_) STUB("kTsZrONvKNc", sceNpEulaDialogGetStatus) +STUB( + "kTtKHlmvvrM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("kTvVphFFblM", _ZN3JSC2VM20arrayBufferSpaceSlowEv) STUB("kU+kKr5B-Ik", sceFsGetFsMetadata) +STUB("kU-MTW8Vol0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session9SessionIdEED2Ev) +STUB("kU02TR5VIpU", _ZN7WebCore16TrackPrivateBaseC2Ev) +STUB( + "kU4qzexO+Go", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionProperties35hasxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB( + "kU6pJkBM4ls", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "kU73omJbfO0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEE11release_refEv) +STUB( + "kU7PvJJKUng", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERt) +STUB("kUClDq6ptKg", _ZN7WebCore9HTMLNames8pingAttrE) +STUB( + "kUD1QOzq6CE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEmmEi) +STUB( + "kUII2ZZlLig", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEED1Ev) +STUB("kUJ01RD1JGs", + _ZNK7WebCore24CoordinatedGraphicsLayer24dumpAdditionalPropertiesERN3WTF10TextStreamEj) STUB("kUT4RpxclMQ", sceAppInstUtilAppExists) +STUB( + "kUTB7lvLlR4", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersD2Ev) STUB("kUVkdSpBkVM", sceCesGbToUtf32) +STUB( + "kUXTOO674kk", + _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest18setChildActivitiesERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_13ChildActivityEEEEE) +STUB("kUa8VHbq2k4", bemp2sys_pesparser_create) STUB("kUaJUV1b+PM", sceUserServiceGetEventUiFlag) STUB("kUavKmsczkY", sceVrServiceDialogGetStatus) STUB("kUayHU5rWDo", sceAppInstUtilAppUnInstallPat) +STUB("kUcO3-Jsbgg", _ZN3sce7Toolkit2NP2V29Messaging7Request28GetGameDataMessageAttachmentD1Ev) +STUB("kUcYN67K9tg", _ZN7WebCore26contextMenuItemTagFontMenuEv) +STUB("kUcinoWwBr8", _WLdtob) +STUB("kUcnaZV-hLs", _ZN7WebCore15JSFetchResponse9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("kUcpXwFfni4", mono_btls_x509_verify_param_set_time) STUB("kUeYucqnb7o", sceAppContentDownload1Shrink) +STUB("kUg6gg23PpU", u_strFindLast_67) +STUB( + "kUhJrxF7ncY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE4sizeEv) +STUB("kUitiIVR43g", _ZN3sce2np7CalloutD1Ev) +STUB( + "kUjy5mSEGQQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE3endEv) +STUB("kUkGRhupvTo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEEC1EPKS6_) STUB("kUlvghKs-mA", sceAgcDcbDrawIndirectMulti) +STUB( + "kUoPbs0E1lw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEE11release_refEv) STUB("kUpgrXIrz7Q", sceKernelGetModuleInfo) +STUB("kUsK6ZtqofM", _ZN3sce2np10NpOnlineIdD0Ev) +STUB( + "kUsuzoxFVik", + _ZN9Inspector24NetworkBackendDispatcher12loadResourceElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("kUv2-yV2vfw", + _ZN7WebCore14FrameSelection7setBaseERKNS_8PositionENS_9EAffinityENS_14EUserTriggeredE) +STUB("kUvfbObJ0gw", + _ZN7WebCore11DOMRectListC2ERKN3WTF6VectorINS_9FloatRectELm0ENS1_15CrashOnOverflowELm16EEE) +STUB("kUzZ7TNCxMw", _ZN3sce7Toolkit2NP26GameCustomDataItemsRequestC1Ev) +STUB("kUzykn1qM6c", WKBundlePageInstallPageOverlayWithAnimation) +STUB( + "kV+DGx-sT-I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "kV-NQA6gcpg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("kV1Appsd6iM", _ZNK3sce2Np9CppWebApi6Common6VectorImE5beginEv) STUB("kV4DP0OTMNo", sceNpTrophySystemRemoveTitleData) +STUB( + "kV5jOqjJBrI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEC1Ev) +STUB( + "kV7v8Y5DFZM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEE11get_deleterEv) +STUB( + "kVGz48sqNJM", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE8readDataEPcm) STUB("kVMxSiYD6tc", sceFiosFileReadSync) +STUB( + "kVOyU4dpD+8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEC2Ev) +STUB( + "kVSpLvXWP4c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEEC2Ev) +STUB("kVUjx67DBac", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEEC1Ev) STUB("kVWBITsSB3o", sceCamera2GetFieldOfView) +STUB("kVZPR0MhBPU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEED1Ev) STUB("kVbL4hL3K7w", sceNpWebApiSendRequest) +STUB("kVbqWyGfYHY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEC2Ev) +STUB("kVdLpKxNs2c", _ZN6WebKit17ChildProcessProxy21removeMessageReceiverEN3IPC15StringReferenceEm) +STUB("kVeTuFlhh0U", rgctx_fetch_trampoline_rgctx_79_p) +STUB("kVgAgbVf4m8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEEC1EPNS2_10LibContextE) +STUB( + "kVi-0I7TIaw", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12unsetString9Ev) +STUB( + "kVlWyajPBjQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("kVqcLetWp+A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEaSERS7_) +STUB( + "kVqpMGDYTlw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("kVthAlKICsM", _ZN3sce2Np9CppWebApi7Matches2V120ResponseInGameRosterD1Ev) +STUB("kVvGL9aF5gg", _ZN10__cxxabiv120__function_type_infoD0Ev) STUB("kW3GLb7QfPg", sceAgcInit) +STUB("kW5K7R4rXy8", _ZNSt14numeric_limitsIsE8digits10E) STUB("kWBaf0WOZBI", sceAudioOut2ReportRegisterHandler) +STUB("kWDfHDajpZM", _ZN7WebCore5Style5Scope30didChangeStyleSheetEnvironmentEv) +STUB( + "kWH76XkadNY", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer15setcontainerIdsEPKc) +STUB("kWKgvWIl2OQ", _ZN7CoreIPC10Connection18connectionDidCloseEv) +STUB("kWLVY4iAwME", WKBundleFrameCopyWebArchive) +STUB( + "kWPLTtMoa4k", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_17ActivityFeedStoryENS1_15AppSTLAllocatorIS5_EEEED2Ev) +STUB( + "kWQbgfGBRqQ", + _ZN9Inspector15ScriptCallStackC1ERN3WTF6VectorINS_15ScriptCallFrameELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB( + "kWSCyC0nJNQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEppEv) +STUB( + "kWe154FhLrg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEC2Ev) +STUB("kWikFRorzyE", _ZN7WebCore10FileSystem20deleteEmptyDirectoryERKN3WTF6StringE) STUB("kWjWUyOGZQs", sceCesUcsProfileInitUhc) +STUB( + "kWkJyUvkiOU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEE21intrusive_ptr_sub_refEPS7_) +STUB( + "kWnc6s2aECs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEED1Ev) +STUB( + "kWomUmHDEbE", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData21getxPsnNpServiceLabelEv) +STUB("kWxItDKnRsQ", _ZN3JSC17JSArrayBufferView14unsharedBufferEv) +STUB( + "kX-G6gDu73k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEC1Ev) +STUB( + "kX-pDTAsBx8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEED1Ev) +STUB( + "kX48mAtsbko", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB("kX88h1qQ7co", curl_getdate) +STUB("kX8cuOe3V10", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEE11get_deleterEv) +STUB("kXE1imLw7yo", _ZN3sce2np10JsonString5ClearEv) +STUB("kXgcWVbOvtI", WKBundlePagePostSynchronousMessage) +STUB( + "kXlk+Bby3D8", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot13getaccountIdsEv) +STUB("kXoKeEoyfwo", WKPreferencesGetLazyImageLoadingEnabled) +STUB( + "kXoyjBuYG9Y", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEeqERKS9_) +STUB("kXpQ-k8KwX4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEEC1EPNS2_10LibContextE) +STUB( + "kXy+sym0ulQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEC2Ev) +STUB( + "kY+dD6kxIkY", + _ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime12RemoteObject4TypeEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE) +STUB("kY3qp23saNA", _ZN7WebCore11MediaPlayer15clearMediaCacheERKN3WTF6StringENS1_8WallTimeE) STUB("kY4dsQh+SH4", sceGnmSqttSetDceEventWrite) +STUB("kYGB4Bgsc8g", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersC2Ev) +STUB( + "kYGoa9eplec", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE3endEv) +STUB("kYMBRpJ+Agk", _ZNK3WTF3URL18fragmentIdentifierEv) +STUB("kYY3pgoPUcQ", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE8capacityEv) +STUB("kYZ5uhoFCEc", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEEC2EPS6_) +STUB("kYgNNhsYnJA", _ZN7WebCore27PlatformMediaSessionManager32setIsPlayingToAutomotiveHeadUnitEb) +STUB("kYoZ-ilL+zk", + _ZN7WebCore12SettingsBase20setFantasyFontFamilyERKN3WTF10AtomStringE11UScriptCode) +STUB("kYuAl8IwTf4", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_20ChallengeRecvDetailsEE8allocateEmPKv) +STUB( + "kYwqSr9oHLM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEC1Ev) +STUB( + "kYxc0VDH6lg", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126NatConnectivityFromFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_24NatConnectivityToMetricsEEESA_SA_PNS8_INS3_19NatConnectivityFromEEE) +STUB("kYzNFJoCL8g", _ZN3sce7Toolkit2NP2V27Session9SessionIdC2ERKS4_) +STUB( + "kZ+1Re5i6n8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEEC2ERKSA_) +STUB( + "kZ+TqraGUMU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEcvbEv) +STUB( + "kZ0f4e-CuEo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) STUB("kZ5Cc0KqzdI", sceFaceIdentifyExGetWorkingMemorySize) STUB("kZ7Xre07w70", sceCompositorSetIndirectRenderTargetConfigCommand) STUB("kZBRiX2f1No", sceVnaRequestPlayCachedTts) +STUB( + "kZFwfdh0z5o", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB( + "kZH1UUQ43gI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot8setgroupENS5_5GroupE) +STUB( + "kZJ2zwbh-Pc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEdeEv) +STUB("kZM-JXhV+kA", _ZN12video_parser5vpcom10LockUnlockEPN3paf6thread5MutexE) +STUB( + "kZOjDmD1NfU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEC1EPS8_) +STUB("kZOsA97Ji0M", _ZN7WebCore12UserActivityC2EPKc) +STUB("kZTq8uGZyV4", mono_aot_Sce_Vsh_SystemLoggerWrapperplt_end) +STUB("kZU3yHbsYWs", _ZNK7WebCore30InvertLightnessFilterOperation5cloneEv) +STUB("kZVK-g6NS1g", _ZN3sce7Toolkit2NP2V29Messaging24GameDataMessageThumbnail5resetEv) +STUB( + "kZXsEM2suWs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEEaSERKSC_) +STUB( + "kZY1ZzxQP5w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEC1ERKS7_) +STUB( + "kZZUQA9BngU", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSE_) +STUB("kZcoT-bZprM", _ZN3NTF17URLRequestJobImpl5startEb) STUB("kZizwrFvWZY", sceNpMemoryHeapInit) +STUB("kZmsaz7bhS8", _searchProtocolInfoTail) +STUB("kZpi+FEogTM", _ZN7WebCore8IntPointC2ERKNS_10FloatPointE) +STUB("kZsCkTkbZgU", _ZNK7WebCore9FrameView12headerHeightEv) +STUB("kZu8U8Ny974", vzone_close_67) +STUB("ka5TVf37Akg", _ZNK15AbstractStorage7Content7GetTypeEv) +STUB("ka5iSrDrfsk", _ZN12video_parser5vpcom5SleepEi) +STUB( + "ka6-i4eFHAc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "ka91QlkOjFc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "kaAYYbwFoAg", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("kaCVikbrIRM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEE5resetEPS5_) +STUB("kaGqLGDNa0Y", _ZN3sce2Np9CppWebApi7Matches2V118RequestTeamResultsC1EPNS1_6Common10LibContextE) +STUB("kaLFzWxqkFY", aio_read) +STUB( + "kaSY-ybJxCk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE5emptyEv) +STUB( + "kaShY6BE348", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("kaTn7C8H6iU", _ZN3sce3Xml12MemAllocatorD2Ev) +STUB( + "kaX8GptR+D4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEED2Ev) +STUB("kaasopY4BaA", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession18getNonPsnSupportedEv) +STUB("kabdJwBdlmM", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_8TempRankEE3getEv) +STUB( + "kafCGG7SGFo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEmmEv) +STUB( + "kah6wlo6dNk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE4sizeEv) +STUB("kapSfjwHd3U", rgctx_fetch_trampoline_mrgctx_96) +STUB( + "kaplUJQaPpY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "kaq88xK+zp0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEplEm) +STUB( + "kaqIGA9XYU0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEEC1ERS9_) STUB("kaqTf5y2P0E", sceDebugGetProcessInfo) STUB("karnJhakdKg", sceShareUtilityAdvanceSetUploadContentData) +STUB("katLYKl5Xhw", InetStatGetStateNative) +STUB( + "kayDoR58+dA", + _ZN3sce7Toolkit2NP8Sessions9Interface6updateEPKNS1_22UpdateNpSessionRequestEPNS1_9Utilities6FutureIiEEb) STUB("kazBRXPqR7c", sceVideoOutCurveSamplePointsCalc_) STUB("kazv1NzSB8c", scePadConnectPort) +STUB( + "kb1765xaXIQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEC2ERKS7_) +STUB("kb1zaUdko9I", mono_metadata_guid_heap) STUB("kb24-4DLyNo", sceSaveDataGetSavePoint) STUB("kb2thTuS8t8", sceNpCancelEventFlag) +STUB( + "kb4rE5VVRK0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("kb69eYk8KZc", _ZN3sce7Toolkit2NP2V212EventsClient12EventDetailsC2ERKS4_) +STUB( + "kb9U9CgXIi8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEdeEv) +STUB("kbCBiU4L4BE", fuse_lowlevel_new_common) +STUB("kbFaB1rGobk", _ZN9Inspector34ApplicationCacheFrontendDispatcherC1ERNS_14FrontendRouterE) STUB("kbFr-IcUqH4", sceHttpCacheSystemShutdown) STUB("kbIIP9aXK9A", sceSaveDataCreateUploadData) +STUB( + "kbMuJiT2XwY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "kbNYohoOWts", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEED2Ev) +STUB( + "kbQFtDvqU7w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEE7get_refEv) +STUB( + "kbQqLr76-tw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEC2EPS8_) +STUB("kbTFhQmXkyA", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils5IdMapEED1Ev) STUB("kbWqOt3QjKU", sceNpTusSetDataAVUser) +STUB( + "kbbOKaNXJIs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEE7get_refEv) +STUB("kbeSnobHWI8", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session12Notification18InvitationReceivedEED2Ev) +STUB("kbjb2Hw8yiE", umutablecptrie_open) +STUB("kbk2lHn3K1Y", uspoof_getAllowedUnicodeSet_67) +STUB("kbnc3h28u9o", _ZN7WebCore27protocolHostAndPortAreEqualERKNS_3URLES2_) +STUB("kbnolUUfE8c", + _ZN7bmalloc29StaticPerProcessStorageTraitsINS_25ARC4RandomNumberGeneratorEE7Storage8s_memoryE) +STUB("kbw4UHHSYy0", __pthread_cxa_finalize) +STUB("kbzzvMGjXIA", _ZN9Inspector25BrowserFrontendDispatcherC2ERNS_14FrontendRouterE) STUB("kc+LEEIYakc", sceKernelMapNamedSystemFlexibleMemory) STUB("kc-O9XKFRIE", sceNpAsmGetServiceBaseUrl) +STUB( + "kc0nnt8EPqU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEC2ERKS7_) +STUB("kc26Da2+ivQ", _ZN7WebCore11DisplayList13StrokeEllipseD1Ev) +STUB( + "kc5xozNnzkM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEEC2ERKSA_) +STUB("kc89FM1Uil4", WKDataGetSize) +STUB( + "kcAI7TN2VjQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEC1ERS7_) +STUB( + "kcC3RF8fHOo", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody30getComparedLastUpdatedDateTimeEv) +STUB( + "kcCjBJsWC-Y", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V135SetMultiVariablesRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_28SetMultiVariablesRequestBodyEEE) STUB("kcGxOSOGqMI", sceVnaDevideAnalyze) +STUB("kcMvKhb35KU", _ZN3sce2Np9CppWebApi13InGameCatalog2V55Image8fromJsonERKNS_4Json5ValueE) +STUB( + "kcNruJ7-2go", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEC2Ev) +STUB("kcOAlP0yWbs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEEC2EPS6_) +STUB("kcRWp+yP0B8", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_28ActivityFeedSharedVideoStoryEE7addressERKS3_) +STUB("kcS5u0ze3ZA", mono_lock_free_allocator_init_size_class) STUB("kcldQ7zLYQQ", sceHmdReprojectionStartWithOverlay) +STUB("kcpsln1zBo0", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEEcvbEv) +STUB( + "kcs7+hpbUS4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE5beginEv) +STUB( + "kcyniqn9cz0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE5beginEv) +STUB("kd+48HhlTyg", rgctx_fetch_trampoline_mrgctx_5) STUB("kd0VbEN5bIY", sceMatPushMarker) +STUB("kd7VZWMHCXg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEE7get_refEv) STUB("kdFImtTD0hc", sceAmprMeasureCommandSizeMapBegin) +STUB("kdGzLIxpE7k", + _ZN3sce2Np9CppWebApi15Personalization2V111ErrorEntityC2EPNS1_6Common10LibContextE) STUB("kdJg4Mb8TRY", sceDataTransferTargetEventIsAuthReady) STUB("kdL5Xm-z3zw", sceMbusDumpUserMediaInfo) +STUB("kdOC-2AE06w", _ZN3sce2np10CancelableD0Ev) +STUB("kdRUKfMeEB4", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE3endEv) +STUB("kdX2pv4ftTY", _ZN3sce7Toolkit2NP2V210Tournament25BracketInformationOfMatchC1Ev) +STUB( + "kdZDIQTVxJ4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEC2Ev) +STUB( + "kde5zVlHMSk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEppEi) +STUB("kdguLiAheLI", execve) +STUB("kdi63Th4zLU", _ZN12video_parser5vpcom24DirectoryDeleteRecursiveE) STUB("kdrdY-BEJMw", sceNpPushCheckCallback) +STUB("kdrle9Nn6QI", delegate_invoke_impl_target_4_p) +STUB( + "kduzpDTZaVs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE4sizeEv) +STUB( + "kdvf-sQvFPw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEEC2ERKSA_) +STUB( + "kdvgh5WXr9w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEE11release_refEv) STUB("ke27GvSMU+s", sceNetCtlApCpStop) +STUB( + "ke2mYVrsJY4", + _ZN7WebCore9ImageData6createEON3WTF3RefIN3JSC21GenericTypedArrayViewINS3_19Uint8ClampedAdaptorEEENS1_13DumbPtrTraitsIS6_EEEEjSt8optionalIjE) +STUB("ke36E2bqNmI", + _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecb) +STUB("ke9BmIAcGJ0", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEED1Ev) +STUB( + "keAGErEQKO8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEC1EPS8_) +STUB("keCDF9qi69w", _ZNK7WebCore14HTMLCollection13namedItemSlowERKN3WTF12AtomicStringE) +STUB("keE3gt8C68E", _ZN3JSC4Heap19unregisterWeakGCMapEPNS_13WeakGCMapBaseE) +STUB( + "keGKVn6+tx4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEEdeEv) STUB("keKRlaxeK9g", sceBdSchedStopScheduling) +STUB("keL4-pjIZRE", _ZN7CoreIPC10Connection13sendSyncReplyEN3WTF10PassOwnPtrINS_14MessageEncoderEEE) +STUB("keMnl-oDLwk", YGNodeStyleSetPosition) +STUB("keONFx5Jpvw", + _ZN3WTF8JSONImpl5Value8asObjectERNS_6RefPtrINS0_6ObjectENS_13DumbPtrTraitsIS3_EEEE) +STUB("keOaOFLkcQQ", _ZN7WebCore6JSFileD2Ev) +STUB("keQTYykAIN4", _ZN7WebCore16HTMLInputElement16setValueAsNumberEdNS_22TextFieldEventBehaviorE) +STUB( + "keS0Oy5E6NY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE5clearEv) +STUB("keVlZpViEAI", _ZThn16_N9Inspector18InspectorHeapAgent2gcERN3WTF6StringE) +STUB("keXoyW-rV-0", _ZTVSt16invalid_argument) +STUB( + "keYgLQ3mv4c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEEC2EPS8_PNS2_10LibContextE) +STUB("keZTgaBCdFs", _ZNK7WebCore11HistoryItem4copyEv) +STUB("kecoHLWDt+U", + _ZN3sce2Np9CppWebApi7Matches2V122RequestPlayerStatistic8fromJsonERKNS_4Json5ValueE) +STUB("kecxfrpSU+g", c) +STUB("keemyvZDMSU", _ZN15AbstractStorage14DailymotionAPI8termHttpEv) STUB("keipklF0pMY", sceVideoOutAddPreVblankStartEvent) +STUB( + "kep-pcSnuhM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEEcvbEv) +STUB( + "kesaFHQ0i6Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "keu7tb6jHEA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEppEi) +STUB("keuXqJ8QP7g", uiter_current32_67) +STUB("kevKTD6kQxw", BgsStorageOpen) +STUB("kevYNs9JoGk", _ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionMemberPlayerD1Ev) +STUB( + "kevsE-ZjZ8A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEC2EPS6_PNS2_10LibContextE) +STUB("keyBPF9S5Bg", + _ZSt9use_facetISt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale) +STUB( + "keztybI8rGc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE8capacityEv) +STUB("kf36P+MYxfM", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEEC1Ev) +STUB("kf57RhzuP0g", _ZN7WebCore21JSCSSStyleDeclarationD2Ev) +STUB( + "kfEOnCjVRPE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEplEm) +STUB("kfFK8vOBa6c", res_getTableItemByKey_67) +STUB("kfFhWBe0nOE", _ZN3JSC7Symbols37regExpStringIteratorRegExpPrivateNameE) +STUB("kfGxPD0pfqc", + _ZNK3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForRead18nonPsnPlayersIsSetEv) +STUB("kfM7DWrAPoE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEC1EPS8_) +STUB( + "kfNW47jqfIE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEppEv) +STUB("kfOVuKHkkV4", u_strFromUTF8Lenient) +STUB( + "kfQRD-2YNw4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEC1EPS8_) +STUB( + "kfRTX35v-Mw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEmmEi) +STUB("kfT6hC5SF+g", _ZN9Inspector34DOMStorageBackendDispatcherHandlerD0Ev) +STUB("kfVCX7XUVkM", WKPageGetRenderTreeSize) +STUB("kfW9CB2uj9g", mono_profiler_install_thread) +STUB( + "kfYbuncXo5w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEE11release_refEv) +STUB("kfYgv5hOs2w", _ZN7WebCore17NowPlayingManagerC2Ev) +STUB("kfYyjoK1Qq0", utrace_entry_67) +STUB("kfaKs9xDzbo", _ZN3JSC25jsStringWithCacheSlowCaseERNS_2VMERN3WTF10StringImplE) +STUB("kfbIJWJV-Qw", _ZN3JSC7Symbols26generatorResumePrivateNameE) +STUB("kfbMCFJxb6E", + _ZN3JSC9constructEPNS_14JSGlobalObjectENS_7JSValueERKNS_8CallDataERKNS_7ArgListES2_) +STUB( + "kfeR-WpAYt0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("kfhG3oanNo4", + _ZNK3sce2Np9CppWebApi12Leaderboards2V122GetRankingResponseBody6toJsonERNS_4Json5ValueEb) +STUB( + "kfhhktzL7iw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEEC1EPS8_PNS2_10LibContextE) +STUB("kfiTsYANGLc", ucurr_getNumericCode_67) +STUB("kfkHzPUtvoA", + _ZN7WebCore22EmptyFrameLoaderClient21didRunInsecureContentERNS_14SecurityOriginERKNS_3URLE) +STUB("kfmUw2IkEk8", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product18contentRatingIsSetEv) +STUB("kfoq4EGA6xk", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku5setIdEPKc) STUB("kfrIiNR8AV4", sceUpsrvUpdateSetUpdateMode) +STUB( + "kfrmJv3vBgk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEEC2ERKSA_) +STUB("kfuINXyHayQ", _ZTSy) STUB("kfyuElAEnis", sceShellCoreUtilSetSystemBGState) STUB("kg+lH0V61hM", sceVideodecMapMemory) +STUB( + "kg-CHdWPuN4", + _ZN3sce2Np9CppWebApi15Personalization2V110ContentApi13getAccessCodeEiRKNS1_6Common13ParameterBaseERNS5_11TransactionINS5_12IntrusivePtrINS3_21GetAccessCodeResponseEEENSA_INS5_18ResponseHeaderBaseEEEEE) +STUB("kg4x8Prhfxw", getuid) +STUB("kg6VC+4pmXA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEEptEv) +STUB("kg7dgRvYRjs", mono_aot_Sce_Vsh_PsnUtilunwind_info) +STUB( + "kg9xCHu-eNc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEixEm) +STUB("kgA+h50vaJY", _ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetail8fromJsonERKNS_4Json5ValueE) +STUB("kgBsQ1DiV6A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V112OnlineStatusEEC2EPS6_) STUB("kgDwlmy78k0", sceNpIpc2ClientInit) +STUB("kgGUjo9h2ao", WKBundleFrameFocus) +STUB("kgIHxsUCs8Q", _ZN3sce7Toolkit2NP2V210Tournament18OneVsOneRankResultD1Ev) +STUB( + "kgIhDSCgYtg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEC2EPNS2_10LibContextE) +STUB("kgLz9IuqGvA", jpeg_start_output) +STUB( + "kgMyrXvkIc4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("kgNtcEqgjww", _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody11unsetStatusEv) STUB("kgOk-kzW+8M", sceRazorCpuInit) +STUB("kgQk2xeWar4", bemp2sys_logprintf_setfunc) +STUB("kgVwp+PI00w", _ZN7WebCore6Editor5pasteEv) +STUB( + "kgWAk0e7xEw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEppEv) +STUB( + "kgXiWJ8jfLQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEdeEv) +STUB("kgdHbrqYQUs", mono_gc_max_generation) +STUB("kgeuOe7oln8", + _ZN15AbstractStorage14YoutubeStorage11DeserializeESt10shared_ptrINS_7ContentEEPS1_INS_4ItemEE) +STUB("kgfm1luhFzc", rgctx_fetch_trampoline_rgctx_8) +STUB("kgie4WdMciY", rgctx_fetch_trampoline_rgctx_30) STUB("kgoY4sueNqU", sceFaceTrackerFinalize) +STUB( + "kgqx4Gf0dOw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEixEm) +STUB( + "kgwTDckowm0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE5eraseENS2_8IteratorIS6_EERS9_) +STUB("kh+pH-spxOY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE8capacityEv) +STUB( + "kh-Du88nFkI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEEC1Ev) +STUB( + "kh-oiPVTARk", + _ZN7WebCore19JSHTMLSelectElement3putEPN3JSC6JSCellEPNS1_9ExecStateENS1_12PropertyNameENS1_7JSValueERNS1_15PutPropertySlotE) +STUB( + "kh-ra6NRbJw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEC1EPS8_) +STUB("kh0okTVsSq4", _ZN7WebCore4Page14setIsPrerenderEv) +STUB( + "kh3klr6mqzw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("khCnWoFmQhw", _ZN8meta_gen14ImageRetrieverD1Ev) +STUB( + "khIC4oLafeY", + _ZN9Inspector20DOMBackendDispatcherC1ERNS_17BackendDispatcherEPNS_27DOMBackendDispatcherHandlerE) +STUB( + "khJnHIgmZoc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE8pushBackERKS8_) +STUB("khK6KVVPaRc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEEC2Ev) +STUB("khKtQ6XhB-M", _ZN3sce3pss4core8graphics14NativeGraphics19ReleaseSystemMemoryEPv) +STUB("khKucrcspGQ", _ZNK3sce2Np9CppWebApi11UserProfile2V15Error7getCodeEv) STUB("khMHRfKhXyw", _sceDepthCalcHeteroAdjustParam) STUB("khSBh3xjSvU", sceCustomMusicCorePostEvent) +STUB("khThzVltokg", _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody9setOffsetERKi) +STUB("khW9hpedbkI", _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi21ParameterToLeaveMatch10getmatchIdEv) +STUB("khZ9Tk-zEU0", _ZN3sce7Toolkit2NP2V211SharedMedia7Request13GetBroadcastsD1Ev) STUB("khaYelw1Ytc", sceRegMgrSetInt) +STUB("khbdMADH4cQ", _ZNSt9bad_allocD1Ev) +STUB("khbpnjUbhyU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEEcvbEv) +STUB("khngW4IwZtQ", mono_aot_Sce_Cdlg_Platformunwind_info) +STUB("khqNXwrO2Yw", _ZNSt15basic_streambufIcSt11char_traitsIcEE5uflowEv) +STUB( + "khvgaTcMzP0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE8pushBackERKS8_) +STUB("khz5JzN+Sho", mono_class_inflate_generic_method) +STUB( + "khzQadjoEY8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEC1EPS8_) +STUB("ki+ELqYDnlM", + _ZN7WebCore21JSCSSStyleDeclaration11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("ki3Vuu7oPhg", _ZN9Inspector21CSSFrontendDispatcher17styleSheetChangedERKN3WTF6StringE) +STUB("ki5SQPsB4m4", _ZNSt10moneypunctIwLb0EED1Ev) +STUB( + "ki7WrVXdih8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEEC2Ev) +STUB("ki7myINNcOA", _ZN7WebCore10JSLocationD2Ev) STUB("ki81gh1yZDM", sceUserServiceGetGlsHintFlag) +STUB("ki9Tj7Fyq90", _ZN15AbstractStorage14TwitterContentD0Ev) STUB("kiA9bZhbnAg", scePadGetIdleCount) +STUB("kiAvx9Y-Q-0", WKPreferencesSetFTPDirectoryTemplatePath) +STUB("kiBDjlxQApI", mono_mlist_next) +STUB( + "kiCBewiKwiU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("kiEcKeRXOsI", _ZN7WebCore17NowPlayingManagerD2Ev) +STUB( + "kiFtL0rXb08", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEixEm) +STUB("kiKEAOzeGRE", mono_aot_Sce_Vsh_FileSelectorunbox_trampolines) +STUB("kiLNP38EFKo", _ZN3sce2Np9CppWebApi15ProfanityFilter2V223FilterProfanityResponseD2Ev) +STUB("kiOnjE4+tqs", _ZN7WebCore6Editor25setIgnoreSelectionChangesEbNS0_15RevealSelectionE) +STUB( + "kiQK7nCT4kg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("kiZSXIWd9vg", strcpy) +STUB( + "kidvZ7d7f68", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEE7get_refEv) +STUB("kie+nv-1HCM", _ZN3WTF19mimeTypeFromDataURLENS_10StringViewE) STUB("kihFGYJee7o", sceFontSetFontsOpenMode) +STUB("kihUpacjs+I", _ZN9Inspector21DOMFrontendDispatchernaEmPv) +STUB("kii04cMy8zg", YGNodeStyleSetFlexWrap) +STUB( + "kil772156rU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEC2Ev) +STUB( + "kin3o92Akrs", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("kiuL-y6I8ZA", _ZN7WebCore9HTMLNames39webkitwirelessvideoplaybackdisabledAttrE) +STUB( + "kiwGU6ys57A", + _ZN9Inspector26DebuggerFrontendDispatcher18breakpointResolvedERKN3WTF6StringENS1_6RefPtrINS_8Protocol8Debugger8LocationENS1_13DumbPtrTraitsIS8_EEEE) +STUB( + "kj6DL8Mzwc0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC2ERKSA_) +STUB("kjAO5VVQPWk", _ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody9getStatusEv) +STUB("kjB3piQnVh4", _ZNK7WebCore27TranslateTransformOperation1xERKNS_9FloatSizeE) +STUB("kjBgiHX1QR0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEaSERKS7_) +STUB("kjENrCcwC2A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEEC1EPS5_PNS2_10LibContextE) +STUB( + "kjFegP2-C+g", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB( + "kjGLfYIH9OE", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody8fromJsonERKNS_4Json5ValueE) +STUB( + "kjGNMDCO7jk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE3endEv) +STUB( + "kjMbMRAPyk4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEaSERKS9_) +STUB("kjT8geALBJw", _ZNK3JSC7JSValue16toStringSlowCaseEPNS_9ExecStateEb) +STUB("kjUzpV+eSZE", _ZN3JSC7Symbols30generatorFieldStatePrivateNameE) +STUB("kjbbYGTZ1PI", GCC_except_table251) +STUB("kjf2y+Nx7m4", _ZN7WebCore8SVGNames12font_faceTagE) +STUB( + "kjgyDxoLRGE", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) STUB("kjokc80XDo0", sceAppInstUtilUnmountBdEmu) STUB("kjrLbcyhEiw", sceVideodec2GetAvcPictureInfo) +STUB( + "kjxu1NilBpo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEEC1ERKSA_) +STUB( + "kjy+3B3-KYQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEneERKS9_) +STUB("kk+vtLYr0Ig", _ZN3sce7Toolkit2NP2V23TUS16FriendsVariables5resetEv) +STUB( + "kk0RcxxIvAM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEmmEi) +STUB("kk2zHgt--8E", WKPageGetPaginationMode) +STUB( + "kk5-VJanA6Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE21intrusive_ptr_add_refEPS9_) +STUB("kk6mGYu-DUU", _ZNK7WebCore16VisibleSelection10firstRangeEv) +STUB("kk8DJ5cGXDk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEE3getEv) +STUB("kkBDkw3pXPM", rgctx_fetch_trampoline_rgctx_25) +STUB( + "kkEyLyFobPQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "kkHHpP0hmkY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEEaSERKSA_) +STUB( + "kkHYbPDQMK4", + _ZN7WebCore15JSFetchResponseC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_13FetchResponseENS6_13DumbPtrTraitsIS8_EEEE) +STUB("kkJ7Jim78o0", sqlite3_changes) +STUB("kkKAwBhCZTQ", + _ZThn16_N9Inspector22InspectorDebuggerAgent26setPauseForInternalScriptsERN3WTF6StringEb) +STUB("kkTcZskp1i4", _ZN9Inspector15AsyncStackTrace8truncateEm) +STUB("kkW+qhbjpiA", + _ZNK3sce2Np9CppWebApi7Matches2V124RequestCompetitiveResult6toJsonERNS_4Json5ValueEb) +STUB("kkWkqBuJiDU", _ZNK3WTF6Logger17LogSiteIdentifier8toStringEv) +STUB( + "kkb9W0RfPT0", + _ZN7WebCore17PageConsoleClient6recordEPN3JSC14JSGlobalObjectEON3WTF3RefIN9Inspector15ScriptArgumentsENS4_13DumbPtrTraitsIS7_EEEE) +STUB( + "kkc4DONQBns", + _ZN9Inspector24ConsoleBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("kkgOkehWCkE", mono_aot_Sce_Vsh_VideoEdit_Wrapperunbox_trampolines) +STUB("kkh2uFKKr2Y", mono_get_delegate_end_invoke) +STUB( + "kki3wx2WyaQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE8capacityEv) +STUB("kkjTVuDaoeY", mono_aot_Sce_Vsh_SysfileUtilWrappermethod_addresses) STUB("kkn+iy-mhyg", sceGnmSpmEndSpm) +STUB("kkoW1oW5fSY", _ZN3JSC11MarkedSpace22s_sizeClassForSizeStepE) +STUB("kkpXMCJjHUc", _ZN13MsvMetaEditor14getMtdtBoxInfoEjttPNS_11MtdtBoxInfoE) +STUB( + "kkqMyrPhx0k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE21intrusive_ptr_add_refEPS9_) +STUB("kkuR7IcivEI", _ZN3sce7Toolkit2NP2V26Friend12Notification16FriendlistUpdateD1Ev) STUB("kkxVQKwPyNE", sceCesUcs2StrGetIso2022Len) +STUB( + "kl+xhcq9jQs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEE11release_refEv) +STUB( + "kl-tIiQqMVE", + _ZN15AbstractStorage18DailymotionStorage15RemoveRecursiveERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("kl03klwNnE0", _ZN7WebCore9DragImageC2EOS0_) +STUB("kl5tuVwRw14", _ZNK23sceMetadataReaderWriter8Metadata15checkWriteFieldEiRS0_S1_Pb) +STUB("kl9cnbrBzrA", WKBundlePageSetPolicyClient) +STUB("klCWUPz9adc", mono_mlist_set_next) +STUB("klGtyOk7wrc", res_unload_67) +STUB("klKSoHIn-Js", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setSubtitleStream) +STUB("klL8TZWRUGk", JSObjectGetTypedArrayLength) +STUB( + "klLqT+Tmbd4", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead30exclusiveLeaderPrivilegesIsSetEv) +STUB("klR8VtfkWAM", _ZN3sce7Toolkit2NP2V27Ranking17GetGameDataResultD1Ev) STUB("klUhQY5QH70", sceNpSnsYouTubeDialogUpdateStatus) +STUB( + "klVQTxnQou4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEEC1Ev) +STUB( + "klW7rjXBzdg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("klWxQ2nKAHY", _ZNKSt8numpunctIcE13decimal_pointEv) +STUB("klYcFOBICp0", _ZNK7WebCore8Document6originEv) +STUB("klcUCefeE9Q", _ZN7WebCore28InspectorFrontendClientLocal20dispatchMessageAsyncERKN3WTF6StringE) +STUB("kleiPlZktXY", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError7setCodeERKi) +STUB("klhltY+vj3A", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIjEneERKS4_) +STUB("kljmiWjdovQ", _ZTVN7WebCore17PageConsoleClientE) +STUB("klmI66i8Ok8", _ZNK7WebCore31BasicColorMatrixFilterOperation17passthroughAmountEv) STUB("klwUy2Wg+q8", sceHttp2RedirectCacheFlush) +STUB( + "klxC90Bryrc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEEC1ERKSA_) +STUB( + "km-kcAdXlcY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEppEi) +STUB( + "km48vPkG6cc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE8capacityEv) +STUB("km5-rjNjSFk", _ZN3sce2np15CancelableScopeD1Ev) +STUB("km5JuE5sbWY", mono_verify_corlib) +STUB("km9NyWHsfKE", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V111LeaveReasonEEC1Ev) +STUB( + "kmFFePNrJys", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEED2Ev) +STUB("kmFvQzj-N7Y", mono_aot_Sce_Vsh_Np_ServiceCheckermethod_addresses) +STUB("kmGTNfcloOM", __tsan_write_range_pc) +STUB( + "kmHPSW4RVho", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEEC1Ev) +STUB( + "kmHRCQJIHW4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEEdeEv) +STUB( + "kmKzt5DDuV4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB( + "kmNd8dkBoEc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE10setContextEPNS2_10LibContextE) +STUB("kmRRFXr56os", _ZN4Manx21Curl_cookie_clearsessEP10CookieInfo) STUB("kmSe30JTs+E", sceVideoOutAddOutputModeEvent) +STUB("kmU9cuJGhCk", _ZN3sce7Toolkit2NP2V23TUS13TusDataStatusC2Ev) +STUB( + "kmYZhRyfCAY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB( + "kmZFGloXNak", + _ZN9Inspector26AnimationBackendDispatcherC1ERNS_17BackendDispatcherEPNS_33AnimationBackendDispatcherHandlerE) +STUB( + "kmZYMlIWw2A", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEptEv) +STUB("kmgkMWjAKHk", __asan_load8_noabort) +STUB("kmjU8Gq720s", il2cpp_class_get_name) +STUB("kmrRhT05fEY", ucase_tolower_67) +STUB("kmtWl3mpASc", ucnv_cbFromUWriteBytes_59) +STUB("kmyFhl7Dijo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE5clearEv) +STUB("kmzNbhlkddA", _ZNSt13basic_filebufIwSt11char_traitsIwEE5imbueERKSt6locale) +STUB("kn+-1UeKBjk", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request13GetPlayedWithC2Ev) +STUB( + "kn+46oQ3bjU", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_17ActivityFeedStoryENS1_15AppSTLAllocatorIS5_EEEED1Ev) +STUB("kn-J1L2j+Nw", uloc_getISO3Language_67) +STUB("kn-rKRB0pfY", _ZnamSt11align_val_t) +STUB("kn0-k32rPJE", _ZNK3sce7Toolkit2NP9Utilities10FutureImpl8hasErrorEv) +STUB("kn0yiYeExgA", ldexpf) +STUB("kn1yesLMf-Y", mono_store_remote_field) +STUB( + "kn3kgFMMM0Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEED2Ev) STUB("kn3vBOTg-ok", sceShellCoreUtilGetHidConfigFileInfoString) +STUB("kn48WAHAZFs", mono_aot_System_ServiceModel_Internalsunbox_trampoline_addresses) STUB("kn5tI0VFTVY", sceCompositorSetMemoryCommand) +STUB( + "kn6tyJ3sm5Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEC1EPS8_) +STUB("kn9uqn2FTiE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEEC2EPNS2_10LibContextE) +STUB( + "knIfjchZ0ZY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEixEm) +STUB( + "knOY+Qj2gvg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEE5resetEPS6_) STUB("knPtjtHAlek", sceFaceTrackerRegisterLostTargetCallback) +STUB("knTIGoyO+iQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEEeqERKS7_) +STUB( + "knVw0sdelnc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE17getNpWebApi2ReqIdEv) +STUB("knX2cGAmdW8", _ZN7WebCore18PlatformPasteboardC1Ev) +STUB("knYA790Sgto", _ZN9Inspector26DatabaseFrontendDispatcherC1ERNS_14FrontendRouterE) +STUB( + "knf0Vwzh5do", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "knfu2iPM6i8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEneERKS9_) +STUB( + "knhIFJY1SZQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEEaSERKSA_) +STUB( + "knkdAywtmes", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEEC1ERKSF_) STUB("knmEFpLg-Rk", sceOpusDecGetSize) +STUB("knn61ftyz0k", GCC_except_table116) +STUB( + "kno1XAOPpJY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("knrcu8CFvhw", _ZNK7WebCore14FrameSelection36rootEditableElementOrDocumentElementEv) +STUB("kntFpAbDN0w", _ZN10Deprecated25ScriptCallArgumentHandler14appendArgumentEj) STUB("knyIhlkpLgE", sceHmdReprojectionSetUserEventEnd) +STUB( + "ko-sVohgFlQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEC2EPS8_) +STUB( + "ko5Qlzdc5HM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEixEm) +STUB( + "ko8wlXdFykA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEptEv) +STUB("koAZPUgpi4M", mono_btls_x509_store_ctx_verify_cert) +STUB( + "koBHavtzJn8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEdeEv) STUB("koBbCMvOKWw", sceNgs2SystemCreate) +STUB("koKFfS8dL4k", setenv_np) +STUB("koKKV5asYps", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE4sizeEv) +STUB("koLfx+JR4pU", _ZN7WebCore15AsyncFileStreamC2ERNS_16FileStreamClientE) +STUB( + "koMk15VWOvU", + _ZThn16_N9Inspector21InspectorRuntimeAgent24getDisplayablePropertiesERN3WTF6StringERKS2_PKbRNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime18PropertyDescriptorEEENS1_13DumbPtrTraitsISE_EEEERNS8_INSA_INSC_26InternalPropertyDescriptorEEENSF_ISK_EEEE) STUB("koU-Duc1F-0", sceNpManagerIntIsServerMaintenanceError) +STUB("koazg-62JMk", _ZGVNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE2idE) +STUB("kobKeMRfvys", Java_java_lang_Thread_registerNatives) +STUB( + "kogrc7vlYN4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE7popBackEv) +STUB( + "koySkABJbnU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE10setContextEPNS2_10LibContextE) +STUB( + "kozHtJZ1kws", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE10setContextEPNS2_10LibContextE) +STUB("kozdUl5szDE", _ZN7WebCore18TextureMapperLayer17removeAllChildrenEv) STUB("kozqEeuRwrk", sceShellCoreUtilStopOptimization) STUB("kp30-C563l8", sceClAudiodecTermLibrary) +STUB( + "kp7Oa4zQ3Ew", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEmmEi) +STUB( + "kp7ZbeTwzGw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEEC2ERSA_) +STUB( + "kp9fC8hcLeA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEEC2ERS9_) +STUB("kpUkwWsPLN0", mono_aot_Sce_Vsh_VideoRecordingWrapperunwind_info) +STUB( + "kpYgbdbpqLY", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEEiRNS2_10LibContextEPT_m) +STUB("kpb4-WlsEhs", utrie2_cloneAsThawed_67) +STUB( + "kpbW7Dr44Gc", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC1Ev) +STUB("kpdWM-W53PQ", _ZN7WebCore21DiagnosticLoggingKeys28exceededActiveMemoryLimitKeyEv) +STUB("kpgJyMtodvw", mono_aot_Sce_Vsh_Gls_GlsSharedMediaViewjit_got) +STUB( + "kpgU5oSdSYI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "kpjkRdlqpmw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEptEv) +STUB("kplVgPllUrk", bin_find) +STUB("kpnMR40PGE4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEEC1ERKS9_) +STUB("kppdpNaVtxw", uhash_open_67) +STUB( + "kptF2evQRM4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "kpuwbB4byXQ", + _ZN9Inspector14InjectedScript19evaluateOnCallFrameERN3WTF6StringEN3JSC7JSValueERKS2_S7_S7_bbbbRNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISB_EEEERbRSt8optionalIiE) +STUB( + "kpz+eN70pIs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEC1ERKS7_) +STUB("kpzrc1VedVs", uhash_hashIChars) +STUB("kpztzg+fzhw", _ZNK3sce2Np9CppWebApi14SessionManager2V110FromMember6toJsonERNS_4Json5ValueEb) +STUB( + "kq2oJOgGs3w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE5clearEv) +STUB( + "kq86LGo9yI4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEneERKS9_) +STUB("kq8SYlloMAw", usearch_handleNextExact_67) STUB("kqBstEK8Nn8", sceVideoCoreGetStreamUid) +STUB( + "kqExEByzgMU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "kqHqa0Ju19c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEppEv) +STUB("kqK-S56CL9s", _ZN7WebCore16SQLiteFileSystem22computeHashForFileNameERKN3WTF6StringE) +STUB("kqLrJ5z+rxE", WKMediaCacheManagerClearCacheForAllHostnames) +STUB( + "kqM8V1EJAiM", + _ZN3sce7Toolkit2NP7Ranking9Interface18displayRanksByNpIdEPKNS1_15NpIdListRequestEPNS1_9Utilities6FutureINS1_23NpIdListRankInformationEEEb) +STUB("kqP+QHW4KXs", _ZN7WebCore10FloatPointC1ERKNS_8IntPointE) +STUB( + "kqQ-H0EzWEw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEmmEi) +STUB("kqQjq+fMXLo", GCC_except_table335) +STUB( + "kqWe7aTtVYE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEmmEv) +STUB("kqXuuyPGr3c", _ZN4Manx11RunLoopImpl4initEv) +STUB( + "kqal+0xJiSg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("kqcVtm9p8GE", + _ZN9Inspector21InjectedScriptManager19injectedScriptIdForEPN3JSC14JSGlobalObjectE) STUB("kqkr5AY93fY", sceIduUtilSetSettingInt) +STUB( + "kqtacCdymX4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "kr2iJeFE+Vk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEE7get_refEv) +STUB("kr5ph+wVAtU", _ZSt6ignore) +STUB( + "kr6HI1xnl70", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEED2Ev) +STUB("krBpSS9Z+Rg", _ZTVN9Inspector33AnimationBackendDispatcherHandlerE) STUB("krChT8KBUDU", sceVideodec2QueryHevcDecoderMemoryInfo) +STUB( + "krEWshsVMDk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEC2EPKS8_) +STUB( + "krIPfyJpZlo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE7popBackEv) +STUB( + "krPNcnL9SyY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEE3getEv) +STUB("krUQA-ec99c", _ULx86_64_dwarf_eval_expr) +STUB("krVAAE+xcQQ", mono_aot_Sce_Vsh_Accessor_Db_Notifyunwind_info) +STUB("krVmAIa9W-0", WKBundleRemoveUserStyleSheets) +STUB("krX3uZpoV3c", _ZNK7WebCore11XPathResult11stringValueEv) +STUB("kre8qoDioWg", ucal_getMillis_67) +STUB( + "krjrCsiVyBQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEE11get_deleterEv) +STUB("krlgjuxfe2I", _ZN7WebCore13GraphicsLayer17distributeOpacityEf) +STUB("krmpDWakBqA", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer10hasuseFreeEv) +STUB("kroxOU831V4", OpenClosedCaptionSettings) +STUB("krrTlkR7akk", _ZN3sce7Toolkit2NP2V210Tournament7Request15EventTypeFilterC2Ev) +STUB("krshE4JAE6M", _ZN10__cxxabiv117__pbase_type_infoD2Ev) +STUB( + "krui00sspeg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("ks-oUmKz2CI", GCC_except_table14) +STUB("ks4vjG1O3Aw", xmlParseChunk) +STUB( + "ks6QL8WiEK0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEdeEv) +STUB("ks8CU+q+J20", _ZN8meta_gen14ImageRetriever14SetTextSortKeyESsi) +STUB( + "ks8Cp6OqO34", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("ksB78CcT0mg", _ZNK7WebCore22DefaultFilterOperation15representedTypeEv) +STUB( + "ksHRN6fY8X0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEC1EPNS2_10LibContextE) STUB("ksIBN+9hdXw", sceApplicationSystemSuspend2) +STUB( + "ksJ3V5rsn7M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE7reserveEi) +STUB("ksMirNKqiKM", _ZNK3sce7Toolkit2NP9Utilities6FutureI18SceNpTssDataStatusE3getEv) +STUB("ksNM8H72JHg", _ZGVNSt10moneypunctIwLb1EE2idE) +STUB("ksNeDQDIyIU", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus6toJsonERNS_4Json5ValueEb) +STUB("ksNkQK4kg2U", _ZN3sce7Toolkit2NP10IdDatabaseC1ERKNS1_9NpTitleIdEPKc) +STUB( + "ksQTJKz3Dbc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEEptEv) STUB("ksUJCL0Hq20", sceUserServiceSetSaveDataAutoUpload) +STUB("ksaADiEohY4", _ZN3sce2Np9CppWebApi13InGameCatalog2V59ContainerD2Ev) +STUB("ksasnjlGoTM", _ZN7WebCore16VisibleSelectionC1ERKNS_5RangeENS_9EAffinityEb) +STUB("kscSo79gOHU", + _ZN3sce7Toolkit2NP2V28Presence7Request19LocalizedGameStatus30MAX_SIZE_LOCALIZED_GAME_STATUSE) +STUB( + "ksgIzXQuB0c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE7popBackEv) +STUB("kslGRG0HVL4", + _ZN15AbstractStorage13TwitterFolderC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) +STUB( + "kslp+YtRpBQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEEC1ERSA_) +STUB( + "kslw2Td4CO4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEC2EPNS2_10LibContextE) +STUB("ksmy+WdnC+8", _ZN3sce3Xml3Dom4NodeD2Ev) STUB("ksn0O9Iilb0", sceHttp2WebSocketSendDataMessageAsync) +STUB("ksob5bCcVKc", _ZN3sce7Toolkit2NP2V28Matching4DataC1Ev) +STUB( + "ksu2XXY7JfE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("ksz-6azjsVc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEEptEv) STUB("kt+k6jegYZ8", sceNpTusGetMultiUserDataStatusAAsync) +STUB("kt0dKNO1b3Y", monoeg_g_list_find) +STUB( + "kt6OY9y7BeI", + _ZN9Inspector20DOMBackendDispatcher17markUndoableStateElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) STUB("ktD2w3D4G2U", sceAudiodecCpuQueryMemSize) +STUB( + "ktFyZH-u2Ew", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEEptEv) +STUB("ktGKgTDt-nU", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo9terminateEv) +STUB( + "ktJAEw2hiQU", + _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities17hasacceptLanguageEv) +STUB("ktKMmXn1R7c", _ZN7WebCore15AffineTransformC1Ev) +STUB("ktNYwXrO-hA", _ZN7WebCore15JSDOMWindowBase22supportsRichSourceInfoEPKN3JSC14JSGlobalObjectE) STUB("ktP9j1fN-zE", sceVideoOutConfigureOptionsInitialize_) +STUB("ktR6aarrlXI", mono_aot_ReactNative_Debug_DevSupportplt_end) +STUB( + "ktXIyy11-Fo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEC1Ev) +STUB("ktb6iOBLnd4", + _ZN3sce2np3ipc17ServiceIpmiClient20BeginRequestForAsyncEiiPN4IPMI6Client12EventNotifeeE) +STUB("ktcE8i5tv3E", mono_aot_Sce_Vsh_Accessor_Db_Notifyjit_code_start) +STUB("ktcZgVXGigg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEEC1ERS5_) +STUB( + "ktdSlpnUBDg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEEcvbEv) STUB("ktdp5iauPQc", sceAudioOutSysConfigureOutput) +STUB( + "ktlSt6Q7rHs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEEaSERKSA_) +STUB("ku+u4aJbTns", _ZN9Inspector17ScriptDebugServer22clearBreakpointActionsEv) +STUB( + "ku-kKEgwmxk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEmmEi) +STUB( + "ku0qH7X7YX8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEE7add_refEv) +STUB("ku3qEJ+KNEc", _ZN3sce7Toolkit2NP2V212ActivityFeed4FeedC1ERKS4_) +STUB("ku7D4q1Y9PI", poll) +STUB( + "ku8PCx5FST0", + _ZN3sce2Np9CppWebApi7Matches2V126RequestInGameRosterFactory7destroyEPNS3_19RequestInGameRosterE) +STUB("ku8lWRpthiU", _ZNK3WTF6String5splitEDs) +STUB("kuAFKlN25xY", YGConfigGetInstanceCount) +STUB("kuBF9-t2oT4", unum_setTextAttribute_59) STUB("kuE1uTiWfuk", sceAgcDriverSysGetClientNumber) STUB("kuErIHXWIpc", sceShellCoreUtilGetNeedSizeOfAppContent) +STUB("kuPwUklPej4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE8copyFromERKS7_) +STUB( + "kuQ7c8DNR84", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEppEi) +STUB("kuQNntOuMPk", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V113MmrPropertiesC2EPNS1_6Common10LibContextE) +STUB( + "kuUHnPAumFU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEED2Ev) +STUB( + "kuhxreoy+H4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEEaSERKSA_) +STUB( + "kujoCs6ej2g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEE5resetEPS8_) +STUB( + "kukjIZe5zOg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE8copyFromERKS9_) +STUB("kulnUIBjFeI", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed12SharedVideosEE19setCustomReturnCodeEi) +STUB( + "kulyvFSaYaQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEdeEv) +STUB( + "kuolAbZWipc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB( + "kuqvJHi+Lrk", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_18SessionInformationENS1_15AppSTLAllocatorIS5_EEEEC1Ev) +STUB( + "kurUAgsclLU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEE5resetEPS6_) +STUB( + "kuvmwSEOq7E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEC2ERKS8_) +STUB( + "kuwa+g3ryMw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB("kuwjK93kyMY", GCC_except_table84) +STUB("kuwpvpIwSXU", WKBundleNodeHandleGetHTMLInputElementAutoFillButtonEnabled) +STUB( + "kuxRw87ymHo", + _ZN3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyD1Ev) +STUB( + "kuz+nI3VKNQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE21intrusive_ptr_add_refEPS9_) +STUB("kv1zkA+6TOA", ucnv_isAmbiguous) +STUB("kv4eZtyYbl4", _ZN3JSC12GetterSetter6s_infoE) STUB("kv4kgdjswN0", sceLibcPafMspaceGetFooterValue) +STUB( + "kv8j9yOGxS0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEC1EPKS8_) +STUB( + "kvCqpXzznZY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "kvDyiYtT0+4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("kvEP5-KOG1U", _WPrintf) +STUB("kvKr7MWgCMI", _ZN3WTF14FileSystemImpl14MappedFileDataC2ERKNS_6StringENS0_14MappedFileModeERb) +STUB( + "kvRhepqSNE4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE5clearEv) STUB("kvU1aLZ+1oc", sceCesRefersUcsProfileCp437) STUB("kvYEw2lBndk", sceGameLiveStreamingInitialize) STUB("kvdMF48mB3Y", sceNpBandwidthTestAbort) +STUB( + "kveJxId5X4s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEEC1Ev) +STUB("kvemsBD8L0I", _ZN7WebCore13endOfSentenceERKNS_15VisiblePositionE) +STUB( + "kvlDRs5wvYs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEEdeEv) +STUB("kvnGh1p+TiE", u_getNumericValue_67) +STUB("kvqg376KsJo", _ZTv0_n24_NSoD1Ev) +STUB( + "kvuhXA6WNro", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEptEv) +STUB( + "kvxi1JBufA0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEC2EPS6_PNS2_10LibContextE) STUB("kvytIh2V46s", sceNetApctlRestart) +STUB("kw-FTaZzJoU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEEptEv) +STUB("kw59dRqXXMg", _ZN3JSC16JSStringIterator6s_infoE) +STUB("kw6QT8E9nKg", _ZN23sceMetadataReaderWriter13ParserManager16_unloadLruParserEv) +STUB( + "kw9gX1MDRx4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("kwAnRLn8YcY", getwd) STUB("kwELJE1qN0o", sceDbgSetHardwareBreakPoint) STUB("kwEeiXCFuLg", sceCesRefersUcsProfileIso8859_7) +STUB("kwFVQthiupI", _ZN15AbstractStorage15FacebookStorageD0Ev) STUB("kwGyyjohI50", sceKernelGetEventData) +STUB("kwKBptlN1OA", + _ZN3WTF13MetaAllocator7releaseERKNS_6LockerINS_4LockEEERNS_19MetaAllocatorHandleE) +STUB( + "kwMKWjGQHg8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "kwTL0bn1TGM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEEneERKS7_) STUB("kwW5qddf+Lo", _sceNpHeapMalloc) +STUB( + "kwXPGvtlgjY", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEED2Ev) +STUB("kwXohh9KV+M", _ZN7WebCore9HTMLNames16onafterprintAttrE) +STUB("kwYsxmyDsvU", _ZNK7WebCore13HitTestResult11targetFrameEv) +STUB("kwfAtQcWQMY", ucnv_countAliases) +STUB("kwfkc-A3KhQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEC2Ev) +STUB( + "kwg-oLBRBWg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "kwp-0uidHpw", + _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8get_dateES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm) +STUB( + "kwqEgK8z8L8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEC2Ev) +STUB("kwrN3bDhOUs", + _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession21unsetUsePlayerSessionEv) +STUB("kx3Hhnn-ZoU", WKKeyValueStorageManagerGetTypeID) +STUB("kx5wMyKoFKw", _ZN3JSC7Symbols27isStringIteratorPrivateNameE) +STUB("kx72wGECgnA", _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody13unsetTicketIdEv) +STUB("kx8N+M4IIvY", + _ZN3sce2Np9CppWebApi14SessionManager2V131JoinedPlayerSessionWithPlatform14unsetSessionIdEv) +STUB("kx93xV8ys+o", _ZN3sce2np18HttpConnectionPoolC1EP14SceNpAllocator) +STUB( + "kxIC6eRMnYw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("kxSDaGFEHkI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEED2Ev) +STUB( + "kxT4HQZBQKg", + _ZN7WebCore14DocumentLoader22sendCSPViolationReportEONS_3URLEON3WTF3RefINS_8FormDataENS3_13DumbPtrTraitsIS5_EEEE) +STUB("kxU0H1cKegg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEEplEm) +STUB("kxXCvcat1cM", _ZNSt8ios_base4InitD1Ev) +STUB( + "kxe334lTqjU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEC2EPS8_) +STUB("kxm0z4T5mMI", fileno_unlocked) +STUB("kxmCA67rtog", sqlite3_create_collation_v2) +STUB("kxq4vh5obmQ", utf8_prevCharSafeBody) +STUB( + "kxrCVK6MV0c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEEaSERSA_) +STUB("kxuIic9ejsg", _ZN7WebCore22EmptyFrameLoaderClient31transitionToCommittedForNewPageEv) +STUB("kxvEd8ksM7s", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIlEeqERKS4_) +STUB("kxvsg8MG-r8", _ZN7WebCore18PlatformPasteboardC2Ev) +STUB("kxvtq9aAT98", _ZN3NTF17URLRequestJobImplD0Ev) STUB("kxw+42XLqFU", scePerfPmcNbSetCounter) +STUB( + "kxy96v7m-4c", + _ZN9Inspector15ScriptCallStack6createERN3WTF6VectorINS_15ScriptCallFrameELm0ENS1_15CrashOnOverflowELm16EEE) +STUB( + "kxyhAR28Fi0", + _ZN7WebCore13JSHTMLElement6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_11HTMLElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB("kxz+m8I8ulo", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V15Owner13onlineIdIsSetEv) +STUB("kxz41JdmEx0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS25AtomicAddToAndGetVariableEE3setEv) +STUB("kxzokJHZ2nY", _ZN3sce7Toolkit2NP2V24Core12ResponseBase14getServerErrorEv) +STUB("ky0keBcpiTk", WKPageUpdateWebsitePolicies) +STUB( + "ky61N2r3SBs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE7popBackEv) +STUB("ky81tAjbOXw", _ZN3JSC7Symbols16splitPrivateNameE) +STUB("kyD9gotkDX0", _ZN3sce7Toolkit2NP20ChallengeSendRequestC1Ev) STUB("kyFOaxSaP0A", sceShellCoreUtilGetAppLaunchedParamIntByBudgetType) +STUB("kyGmfmhB6S8", _ZN7WebCore21WheelEventTestMonitor14deferForReasonEPKvNS0_11DeferReasonE) +STUB("kyHOMHwSpHg", _ZN3sce2np10Cancelable12IsCancelableEv) +STUB("kyJAMd8GRHU", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V111LeaveReasonEEmmEv) STUB("kyKiXG-dCyc", sceSpNetSocket) +STUB("kyKrw-g1sl4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V510AnnotationEEaSERKS7_) +STUB( + "kyPAhmep5Yk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEC2EPS6_PNS2_10LibContextE) +STUB("kyf-GqSLmwg", _ZThn24_N9Inspector18InspectorHeapAgentD1Ev) +STUB("kyfuY2YfrwA", _ZN9Inspector20InjectedScriptModuleC2ERKN3WTF6StringE) STUB("kygzx9Bkhbg", sceAvControlSetVideoOutSource) STUB("kyifJypWYrM", sceKernelSetKnobs) +STUB( + "kypf43W3kX4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "kyrKwneZI8A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEEcvbEv) +STUB("kyuyHN1mRis", _ZN3sce2np10JsonObjectD1Ev) STUB("kyxGUg-7TOA", sceIduUtilGetOpenPsId) +STUB("kyyI+gLshKQ", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils12Notification15UserStateChangeEE3getEv) +STUB("kyzH1+Z17jI", GCC_except_table549) +STUB( + "kyzi08xywDk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE3endEv) +STUB( + "kz+bpOIJc3w", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEdeEv) +STUB("kz+c9gSdnWM", _ZN7WebCore20ResourceLoadObserver14notifyObserverEv) +STUB("kz0u8JBsADc", mono_property_hash_destroy) +STUB("kz2Z38yTLq0", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUserC1Ev) +STUB( + "kz5-equUTu8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEEC1Ev) +STUB( + "kz6uHuM4tUU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEE7get_refEv) STUB("kz9bGYFvopY", sceCesUcs2StrGetMbcsLen) +STUB( + "kz9y3urH6ac", + _ZN3sce7Toolkit2NP2V212NetworkUtils22getDetailedNetworkInfoERKNS3_7Request22GetDetailedNetworkInfoEPNS2_4Core8ResponseINS3_16NetStateDetailedEEE) +STUB("kzCQl5OvCew", _ZN7WebCore8SVGNames17flood_opacityAttrE) +STUB( + "kzEq1Rlsavs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEaSERKS9_) +STUB( + "kzIJxGnYqVQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("kzNHu6Ylg0M", _ZN7WebCore11MathMLNames20superscriptshiftAttrE) +STUB("kzP8wjZhZNA", _ZN7WebCore16MIMETypeRegistry19isXMLEntityMIMETypeEN3WTF10StringViewE) +STUB("kzWL2iOsv0E", _ZN10__cxxabiv123__fundamental_type_infoD1Ev) +STUB( + "kzYDWVK95Zk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB("kzfj-YSkW7w", _ZTIPKDs) +STUB( + "kzlYwHj8xiU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEEC1ERKSA_) +STUB("kzlo+KCKmPw", + _ZN9Inspector17BackendDispatcher9getStringEPN3WTF8JSONImpl6ObjectERKNS1_6StringEPb) +STUB("kzr7Kl2pfys", _ZNK3sce2Np9CppWebApi11UserProfile2V15Error14getReferenceIdEv) +STUB( + "kztrwy5ID1w", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE4sizeEv) +STUB( + "kzuPqSTNbfs", + _ZN3sce2Np9CppWebApi7Matches2V125ResponseCompetitiveResult16setPlayerResultsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_21ResponsePlayerResultsEEEEE) +STUB("kzut6ECIRLY", _ZN3WTF28numberToFixedPrecisionStringEdjRSt5arrayIcLm123EEb) +STUB( + "l+-VwnhxsIw", + _ZN3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession23setPlayerJoinableStatusERKNS3_20PlayerJoinableStatusE) +STUB("l+-nGnREYlk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEC2Ev) +STUB( + "l+1k9zV1GR0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEppEi) +STUB( + "l+5bBTgTwrY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB( + "l+5wfN+yytI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEC2Ev) +STUB("l+5xqb1rpOM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE8capacityEv) +STUB("l+AE4U5jOo0", mono_btls_x509_name_peek_name) +STUB("l+EnasCRj9M", WKKeyValueStorageManagerDeleteAllEntries) +STUB( + "l+GTrvt0wN4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEC1EPS8_) +STUB("l+HrV8hb4IU", _ZN4Manx11MediaPlayerD2Ev) +STUB( + "l+KSzhfZ2QM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEE5resetEPS9_) +STUB("l+OspgT++TA", _ZNK7WebCore13MIMETypeCache7isEmptyEv) +STUB( + "l+QAHBbdaLI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB( + "l+S-i0x3tGA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE6resizeEj) +STUB("l+Ug1Xfqhxw", _ZN3sce2Np9CppWebApi15Personalization2V15ErrorC1EPNS1_6Common10LibContextE) STUB("l+bG5fsYkhg", pthread_rwlockattr_gettype_np) STUB("l+dKhCxtRHc", sceDepthTerminate) +STUB( + "l+f2xHT8NFo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "l+iQvsXrm2c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEEC2ERKSA_) +STUB("l+ifOLSZlos", __asan_print_accumulated_stats) +STUB( + "l+jwdC0jGRA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE6insertENS2_13ConstIteratorIS9_EERKS9_RSC_) +STUB("l+m1KoYn430", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessionsC2ERS5_) +STUB( + "l+mjribjLgs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "l+mlERjuzP0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEEdeEv) +STUB( + "l+pXjFCsK-s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEED1Ev) +STUB( + "l+rY+7lzSFo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEE7add_refEv) +STUB("l+tHGNrR7X8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEC2ERKS7_) +STUB("l+wN2XJ965U", Java_java_awt_GnmToolkit_sync) +STUB("l-6l96B8x4M", _ZN3sce2Np9CppWebApi14SessionManager2V134PostGameSessionsSearchResponseBodyD2Ev) +STUB( + "l-7BIcL5RsQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("l-BM32tjzqY", + _ZN7WebCore20LegacySchemeRegistry34shouldLoadURLSchemeAsEmptyDocumentERKN3WTF6StringE) +STUB("l-BZxjiRsjM", _ZN3sce7Toolkit2NP22GetSharedVideosRequestC1Ev) +STUB("l-HE9Ui7Jck", _ZN7WebCore22SkewTransformOperationC1EddNS_18TransformOperation13OperationTypeE) +STUB( + "l-NAMrnzkVw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEEaSERKSA_) +STUB("l-NrXOC-Z4o", _ZN7WebCore18JSHTMLImageElementC2ERKS0_) +STUB("l-QHxzJvQok", _ZN7WebCore7Element12setAttributeERKN3WTF12AtomicStringES4_) +STUB( + "l-TNO5sLZQw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE5beginEv) +STUB( + "l-XcadfEQ7w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEE11get_deleterEv) +STUB("l-YAMXAxUq4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEE11release_refEv) +STUB("l-ackmrDncM", _ZNK3sce2Np9CppWebApi7Matches2V114ResponseMember11getPlayerIdEv) STUB("l-cZLdtVXds", sceAudiodReportMasteringSetParams) +STUB( + "l-lkYRziJq4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEE11get_deleterEv) +STUB( + "l-nV8kVl6mg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEC2EPKS8_) +STUB("l-nl-3BV8nw", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate9getGlobalEv) +STUB( + "l-tNS5Qosas", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE5eraseENS2_8IteratorIS6_EERS9_) +STUB( + "l-vndn4cD2g", + _ZN3JSC8evaluateEPNS_14JSGlobalObjectERKNS_10SourceCodeENS_7JSValueERN3WTF8NakedPtrINS_9ExceptionEEE) +STUB( + "l-xwCyMxSPQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEC1Ev) STUB("l-zbaxNzruE", sceKernelHwHasOpticalOut) STUB("l0-MeBL0BNI", sceNpUniversalDataSystemIntNetSyncTitles) STUB("l01GKoyiQrY", sceImeDicDeleteLearnDics) +STUB( + "l02mfNJJhgM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEixEm) +STUB("l0BjESUy1rE", mono_btls_x509_name_get_raw_data) +STUB("l0Ca3nIU1yA", + _ZN7WebCore15UserInputBridge11loadRequestEONS_16FrameLoadRequestENS_11InputSourceE) +STUB("l0GNH5s-e8U", WKPreferencesGetSpatialNavigationEnabled) +STUB("l0Hmd0lFea8", WKURLRequestCopyFirstPartyForCookies) +STUB( + "l0Ig4txpz-s", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) STUB("l0Jxfl0DEdo", sceAgcDriverSetTargetRingForDiag) +STUB("l0T2th-xyx8", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats24matchCompletionRateIsSetEv) +STUB( + "l0Z0NQiqr3M", + _ZN3WTF16addSignalHandlerENS_6SignalEONS_8FunctionIFNS_12SignalActionES0_RNS_7SigInfoERNS_17PlatformRegistersEEEE) +STUB( + "l0atiOpfhWY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "l0clJSZwzQg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEppEi) +STUB( + "l0ie+0FqPCI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEED2Ev) +STUB("l0m6NQu1XF0", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V113SubtaskStatusEEdeEv) +STUB( + "l0nLhJ6D8y8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEC1Ev) +STUB("l0qC0BR1F44", __fixunsxfti) +STUB("l0u3R-ORT-Q", + _ZN7bmalloc29StaticPerProcessStorageTraitsINS_13IsoSharedHeapEE7Storage8s_objectE) +STUB("l0ylL4nYg8Q", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEED1Ev) +STUB( + "l0zyhXHj-7g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEED2Ev) +STUB("l18DIPdfHnU", _ZN7WebCore9HTMLNames26onwebkitwillrevealleftAttrE) +STUB( + "l1BUFZQgZic", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEEaSERKSA_) +STUB( + "l1BjMJ6Db9w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEE7add_refEv) +STUB( + "l1FktHjHtxU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("l1FueUsdBrc", _ZN3JSC13iteratorValueEPNS_9ExecStateENS_7JSValueE) +STUB("l1GgDnAh9WE", _ZN7WebCore9HTMLNames11rowspanAttrE) +STUB( + "l1K0i72XtfY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEdeEv) STUB("l1NmDeDpNGU", sceSaveDataInitialize2) STUB("l1PGm+V7-TU", sceAvSettingSetAudioOutModeInvalid_) +STUB("l1PatT2jaok", glCopyBufferSubData) +STUB( + "l1R5eJgjwys", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB( + "l1TKRZndxe4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE7reserveEi) +STUB("l1URiQJlSoU", _ZN3sce4Json5Value9serializeERNS0_6StringEPFiS3_PvES4_) +STUB("l1WyTQmrAXo", mono_exception_from_name_msg) +STUB( + "l1XHqZ1MhCM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("l1XKH6CiQVM", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container16descriptionIsSetEv) +STUB("l1XmBaP5k6w", WKContextSetPlugInAutoStartOriginsFilteringOutEntriesAddedAfterTime) +STUB( + "l1ZcUieyjls", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("l1dzHWw0l8k", _ZN3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferReadD2Ev) STUB("l1hXwscLuCY", sceVideodec2Flush) +STUB("l1jdfF3GX8Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V112TicketStatusEEaSERKS7_) +STUB("l1sUyuVKflQ", ucol_prepareShortStringOpen_67) +STUB("l1wz5R6cIxE", __popcountti2) STUB("l22TAIbbtFw", sceShellCoreUtilSetSharePlayStatus) +STUB( + "l22aiCQV8jY", + _ZN7WebCore21NetworkStorageSession31setThirdPartyCookieBlockingModeENS_28ThirdPartyCookieBlockingModeE) +STUB( + "l22h2hByscI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEaSERKS9_) +STUB("l240XTbw2vk", FcFreeTypeCharIndex) STUB("l29UO6Oj0ds", sceSpPthreadMutexattrSetprioceiling) +STUB("l2IqM94JOLY", g_markup_parse_context_free) +STUB( + "l2K+FX6zZfw", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEEiRNS2_10LibContextEPT_m) +STUB("l2MwSlp+Lwg", ucase_getTypeOrIgnorable_67) +STUB("l2OSdYe9Olc", _ZN7WebCore9HTMLNames8highAttrE) +STUB("l2Oh22F8lQ8", _ZN3sce2Np9CppWebApi6Common13ConstIteratorImE21intrusive_ptr_sub_refEPS4_) +STUB("l2PpmDhlib0", rgctx_fetch_trampoline_rgctx_88) +STUB("l2Q5JMr5TMs", _ZN3sce7Toolkit2NP2V212EventsClient6EventsD1Ev) +STUB("l2TDYxIsVCE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE5beginEv) +STUB("l2UvA4F2i+w", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE8capacityEv) +STUB("l2WwqVEtWh8", run) +STUB("l2i71yxGuxM", ucal_getLocaleByType_67) +STUB("l2ow4NmEiZY", + _ZN3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator16unsetCustomData1Ev) +STUB( + "l2oxj+E2rQg", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi15recordLargeDataEiRKNS4_26ParameterToRecordLargeDataERNS1_6Common19UpStreamTransactionINS8_12IntrusivePtrINS3_27RecordLargeDataResponseBodyEEENSA_INS4_30RecordLargeDataResponseHeadersEEEEE) STUB("l2u7IHkNheg", sceVencSetPictureConfig) +STUB("l2uU8ExHgjY", _ZN3NTF3URL7setHostERKSs) +STUB( + "l2vlEZYiZNU", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeaderC1ERS5_) +STUB( + "l2zfJG1Cj24", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE8copyFromERKS9_) +STUB( + "l3-83fvIqvM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("l33jN8bqpfs", _ZN9Inspector17BackendDispatcherD2Ev) +STUB( + "l34wZRXth1A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEppEv) +STUB( + "l36IRuRC24Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEC1ERS7_) +STUB("l36UM64Z+i4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody11unsetOffsetEv) +STUB("l38mnl6RPOc", uloc_getAvailable_67) STUB("l3AOURv-MWU", scePlayReadyDomainCertFind) +STUB("l3EArnZr6-8", WKWebsiteDataStoreSetUseITPDatabase) +STUB( + "l3HJk2ZSNgA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEC1Ev) +STUB("l3LUyryX1Iw", WKPreferencesSetAttachmentElementEnabled) +STUB( + "l3Opx0hfWNI", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "l3PKQGIS998", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEppEi) +STUB( + "l3Uzoh7BOE4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEE7add_refEv) +STUB("l3bNSfEnyzI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEEaSERS9_) STUB("l3dG7h4TlLg", sceNpPushRegisterNotificationExCallback) +STUB("l3dTrDsh3EE", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18GameCustomDataItemEEC1ERKS4_) STUB("l3dw8imUbLM", sceAvSettingIsSupportedAudioOutModeByHdmiMonitorInfo) STUB("l3fh3QW0Tss", scalbnl) +STUB( + "l3h8Bxp7WiU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("l3n0-PPodGM", _ZN3sce2Np9CppWebApi14SessionManager2V129PostPlayerSessionsRequestBodyD1Ev) +STUB( + "l3nSbTE2fcs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEEptEv) +STUB( + "l3wwGXbmTg0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE10setContextEPNS2_10LibContextE) +STUB( + "l3y-c+O-KWA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEppEv) +STUB("l4+4zbGnDz8", _ZNK3sce2Np9CppWebApi15ProfanityFilter2V224TestForProfanityResponse9getStatusEv) +STUB("l40o1x0xhxw", unumsys_openAvailableNames_67) +STUB("l48M+Tp3fAs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEixEm) +STUB( + "l4EJkiteV0w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEE5resetEPS8_) STUB("l4FB3wNa-Ac", sceSystemServiceLaunchApp) +STUB( + "l4K6mr9TfKs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEE7get_refEv) +STUB("l4MwGYKc07A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEaSERKS7_) STUB("l4OVTpJCyQI", sceFiosUpdateParameters) STUB("l4Q2dWEH6UM", sceNgs2SystemSetGrainSamples) STUB("l4SLBpKUDK4", sceRudpBind) +STUB("l4SyDs6698w", mono_aot_System_Threading_Tasksplt_end) +STUB( + "l4VOpGZ58fQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEEcvbEv) STUB("l4XJEowv580", sceFontGraphicsUndefineIndexedVertexesGlyphAll) +STUB( + "l4XaVWMclS8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEmmEv) +STUB("l4ZCWwdqXko", WKPageRubberBandsAtBottom) +STUB("l4azYkX86Ds", FT_Get_Gasp) +STUB("l4b7Y+yU9WE", mono_aot_Sce_Vsh_ShellUIUtilWrapperjit_code_end) +STUB("l4f-fpk3yrw", _ZN7WebCore9HTMLNames8labelTagE) STUB("l4fM9K-Lyks", sceAgcDcbSetIndexBuffer) +STUB( + "l4nTLLl7Ma4", + _ZN7WebCore16BlobRegistryImpl20createResourceHandleERKNS_15ResourceRequestEPNS_20ResourceHandleClientE) +STUB( + "l4o-iBkSznE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEEC1Ev) +STUB("l4rCDU4H2Ew", WKDatabaseManagerDeleteDatabasesWithNameForOrigin) STUB("l4sQYy5wPkc", sceVdecswTrySyncDecodeInput) +STUB("l4ux3xYxvEQ", _ZN3sce2Np9CppWebApi6Common13ParameterBase22unSetWebtraceTagHeaderEv) +STUB( + "l4vckqKKAzQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEEaSERKSA_) +STUB( + "l4y9FeLnyKw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("l50cntT7awI", _ZN12video_parser13cVideoPathMgvD0Ev) +STUB( + "l51oDgEuI7E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEppEv) +STUB("l55oKq6zmrA", FT_Get_Advances) +STUB("l5FnLbE1-sM", _ZN7WebCore15AsyncFileStreamdlEPv) +STUB("l5I7W9xFlsQ", _ZN3sce3pss4core5audio11SoundPlayer16PauseSurroundPanEd) +STUB("l5JzEGDSvhk", WKBundlePageListenForLayoutMilestones) +STUB("l5Kt5zwZ6Uk", uhash_setKeyHasher) +STUB("l5PHWe0v-gQ", mono_btls_ssl_ctx_set_min_version) +STUB( + "l5QP+S8T5+U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEC1ERS7_) STUB("l5SkPv2i+f8", sceNpManagerIntGetUserInfo) +STUB( + "l5TNObvSKAw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEC2EPS8_) +STUB("l5UOn8bITyY", + _ZN3WTF8JSONImpl10ObjectBase8asObjectERNS_6RefPtrINS0_6ObjectENS_13DumbPtrTraitsIS3_EEEE) +STUB( + "l5XveyNM2q4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEED2Ev) STUB("l5bdg4tUTGc", sceShellCoreUtilClearAppData) +STUB("l5gNvkTijQs", __atomic_is_lock_free_internal) +STUB( + "l5hGu7L3w+g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEE7add_refEv) +STUB("l5je6+KYkZQ", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEEmmEi) +STUB("l5pXZRBkjeA", _ZN7WebCore4FileC2ERKN3WTF6StringE) +STUB("l5pZq9+Hw68", _ZN3sce7Toolkit2NP2V26Trophy7Request23DisplayTrophyListDialogD1Ev) +STUB("l5q0L2fFbDg", _ZN4Manx21DisplayRefreshMonitor5startEi) +STUB("l5qMgwcStrs", _ZN7WebCore6Editor26toggleOverwriteModeEnabledEv) +STUB("l6+buTEAciE", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEEptEv) +STUB( + "l64r5lMeLbo", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities19unsetacceptLanguageEv) +STUB( + "l65XBDfPqrI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEE11release_refEv) +STUB("l66OdRYSk2w", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesD1Ev) STUB("l67qBmMmKP4", sceNpBase64Decoder) +STUB("l6Cf9rb9fZQ", FT_Outline_Embolden) STUB("l6Dl+2zlua0", sceNpAppInfoIntInitialize) +STUB( + "l6Gt5AF3ug8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEE5resetEPS9_) +STUB("l6Km2sY3UyM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEED1Ev) +STUB( + "l6LdsHNPH84", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("l6PkF6pKhrI", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V16StatusEEmmEv) +STUB("l6RswpAwdFw", _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody11unsetOffsetEv) +STUB("l6Xjhl0uTyI", _ZN3WTF3URL7setPortENS_8OptionalItEE) +STUB( + "l6ZH44VHJ6s", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEeqERKSA_) STUB("l6aA787njwE", sceFsDeviceAlignedPwrite) +STUB( + "l6f7t6ZU-Mc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEptEv) +STUB( + "l6fu4d6fLPo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB( + "l6jMZVpYYLs", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyC1EPNS1_6Common10LibContextE) +STUB("l6nNtVHY-6I", _ZN3sce7Toolkit2NP2V23TUS7Request20GetFriendsDataStatusC1Ev) +STUB( + "l6pOrzn6E4o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEC1EPS8_) +STUB("l6s7aomzWGA", _ZN3sce2np20BufferedStreamReaderC2EP16SceNpAllocatorEx) +STUB( + "l6teWsU-DiA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEdeEv) +STUB( + "l70aSx+MTn4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEneERKS9_) +STUB( + "l70b0plLk0g", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead15setNonPsnLeaderERKNS1_6Common12IntrusivePtrINS3_12NonPsnLeaderEEE) +STUB( + "l73wVRuUJ0M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEdeEv) +STUB("l7Am6d7QKnE", _ZN9Inspector30WorkerBackendDispatcherHandlerD1Ev) +STUB( + "l7FaTnbBF8A", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE4sizeEv) +STUB("l7GEYs5PMVU", hb_face_create_for_tables) +STUB("l7I7qVZUsXE", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIiEC1Ev) +STUB("l7Lj6F5gBo0", WKPreferencesGetSelectTrailingWhitespaceEnabled) +STUB("l7OtvplI42U", _ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2ERKSt8_Locinfom) +STUB( + "l7PyG5PcNFs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE6resizeEj) +STUB( + "l7ROfx0mtFE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEC1EPS8_) +STUB( + "l7ZUMUx8LI4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEplEm) +STUB( + "l7epMVw9c50", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE3endEv) +STUB("l7fyzOUIgsY", Java_java_lang_Double_doubleToLongBits) STUB("l7oQ33rm9TI", scePlayerSelectionDialogGetStatus) +STUB("l7tjlKrFezQ", delegate_virtual_invoke_imt_14_p) +STUB("l86FQ6EHbYs", _ZN3sce2Np9CppWebApi7Matches2V14Task9setStatusERKNS3_10TaskStatusE) +STUB("l8Ffoe6XPUE", _ZN3sce7Toolkit2NP2V28Matching7Request15GetRoomPingTimeC2Ev) +STUB( + "l8POlcvpHA0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEE7add_refEv) +STUB("l8UKHjO29+w", _ZN3WTF14SymbolRegistryD2Ev) +STUB( + "l8WkoExH6tU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEplEm) +STUB("l8gsEeVfp+s", WKUserContentExtensionStoreLookup) +STUB( + "l8nPDH524UM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB("l8pC3YBA6DM", _ZN3sce7Toolkit2NP2V24Auth7IdTokenC2ERKS4_) STUB("l8vw5ia8Wac", sceVideoStreamingEngineMediaKeySessionGetSessionId) +STUB( + "l8w20UDvE2k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) STUB("l9+8m2X7wOE", sceFontGraphicsGetVertexesGlyphScale) +STUB("l9-IHLI27ls", YGAlignToString) +STUB( + "l90zl6E9TLA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEmmEi) STUB("l96YlUEtMPk", sceShellCoreUtilSetDeviceIndexBehavior) +STUB( + "l98LEgEHLHg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE5beginEv) +STUB( + "l9AYAALdaQE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("l9F5EWFI+Nw", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE5beginEv) +STUB( + "l9KCXvU-V2Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEppEi) +STUB( + "l9KpWdtuZ0E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "l9O328JWtfs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "l9P3M+PJL1I", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEptEv) +STUB("l9R+MR9+Zic", mono_btls_error_peek_error_line) +STUB("l9XLBgtKouw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEE3getEv) +STUB( + "l9YP-MpqdbA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEE11release_refEv) +STUB( + "l9ZaB7dnwyg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEE7get_refEv) +STUB( + "l9fcq89Tm48", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEEaSERKSA_) +STUB( + "l9fhsWH6a+Y", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE5beginEv) +STUB("l9kqixNsNq4", _ZN3WTF20ObjectIdentifierBase36generateThreadSafeIdentifierInternalEv) +STUB("l9mr8GfO80k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEEC1EPS5_PNS2_10LibContextE) +STUB("l9nuY5Wn5+c", _ZN7WebCore10FileHandleC1Ev) +STUB("l9uYEtKBIQA", _ZNK7WebCore6Editor16compositionRangeEv) STUB("l9zev-ybPNs", sceVisionManagerLoadSettings) +STUB("lA+PfiZ-S5A", _ZNSt8messagesIcE2idE) +STUB( + "lA2Lycz6ugQ", + _ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody14setCustomData1EPKvm) +STUB( + "lA2TvyOxJwY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEE11release_refEv) +STUB("lA6gNiTQKx4", rgctx_fetch_trampoline_mrgctx_109_p) +STUB("lA94ZgT+vMM", __isnanf) +STUB("lA9AH3d2f18", _ZN7WebCore18JSHTMLVideoElementD1Ev) +STUB( + "lADNoO++5h8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEEC2EPS8_PNS2_10LibContextE) +STUB("lAEbTbSUTTo", cairo_glyph_free) +STUB("lAFKNV82Fds", _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead13getSearchableEv) +STUB("lAFXMCX8wJc", _ZN3sce3pss4core8graphics14NativeGraphics19AllocateVideoMemoryEjjPv) +STUB("lAIOtUCPCdo", WKContextSetInitializationUserDataForInjectedBundle) +STUB("lAP5qcLE2TA", _ZN7WebCore6JSFile6s_infoE) +STUB("lAPQNiI456E", u_foldCase_59) +STUB( + "lAPvXkjM4Q0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEppEv) +STUB( + "lAQNlXsq4j8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEcvbEv) STUB("lAR1nkEoMBo", sceUserServiceSetJapaneseInputType) +STUB( + "lAWwzPHmdic", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEE7get_refEv) +STUB("lAa689pKyF0", + _ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession21usePlayerSessionIsSetEv) STUB("lAh2teRHzLU", sceDepthHeadCandidateDetectorGetResults) +STUB("lAhThwzQI2c", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11SessionDataEE5resetEv) STUB("lAikj8EfcJg", sceFiosIOFilterCache) +STUB("lAjyQIYAXrU", u_strcpy_67) +STUB("lAmzaKZD31c", monoeg_g_ptr_array_sort) +STUB( + "lAnD8skouYE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEppEi) STUB("lAoFUedcfqA", sceHmd2GazeGetResult) +STUB("lAq0egJxrXU", _ZN3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsersC2Ev) +STUB("lAr0v8+qd7U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEC1Ev) STUB("lAvSrKAjxCA", sceShellCoreUtilGetBasicProductShape) +STUB("lAvVjQST+d8", mono_aot_System_Runtime_Serializationjit_got) +STUB( + "lAxJ90p8oOs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "lB+9xPdyNVM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "lB+aop1edwE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEC2Ev) +STUB( + "lB1pCVdiP+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEC1ERS7_) +STUB("lB2n5USANfs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEC2Ev) +STUB( + "lB3OQHmB82o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEC1EPS6_PNS2_10LibContextE) +STUB("lB4tTNqJXKw", WKWebsiteDataStoreSetStatisticsSubresourceUniqueRedirectFrom) +STUB( + "lB6XC4KslCk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEEC1EPS6_) +STUB("lB85GtGGA4c", fuse_fs_opendir) +STUB("lB8driFKaoU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEED1Ev) +STUB( + "lBCMrylxWvc", + _ZN9Inspector18InjectedScriptBase12makeEvalCallERN3WTF6StringERN10Deprecated18ScriptFunctionCallERNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISA_EEEERbRSt8optionalIiE) +STUB( + "lBH0QZwmUzo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEE3getEv) +STUB("lBIwQbS4ypc", _ZN3sce7Toolkit2NP2V212ActivityFeed12SharedVideosaSERKS4_) +STUB("lBL1TXHngws", _ZN7WebCore16VisitedLinkStore23invalidateStylesForLinkEm) +STUB( + "lBNDcqqDgOU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEC2EPNS2_10LibContextE) +STUB("lBQLHeUqi7A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEED2Ev) +STUB( + "lBSUdtsCA4s", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE3endEv) +STUB( + "lBWQ6DzunHs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEmmEi) +STUB("lBZXCkgB5u0", _ZN3sce2np10JsonNumber3SetEi) +STUB("lBbX3vR+Cho", _ZN7WebCore16MIMETypeRegistry32getPreferredExtensionForMIMETypeERKN3WTF6StringE) +STUB("lBffLlW78Yw", _ZN3sce7Toolkit2NP2V210Tournament5MatchD2Ev) +STUB("lBoIgUKNzig", _ZNSt15basic_streambufIcSt11char_traitsIcEE4syncEv) +STUB( + "lBpPW+BsHcs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEE6assignEPSA_PFvSC_EPNS2_10LibContextE) +STUB( + "lBqm4VjzqRY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEE7add_refEv) +STUB("lBspXX0lI0E", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE7popBackEv) +STUB( + "lBtT4ZlACCw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) STUB("lBtrk+7lk14", sceNpTssCreateNpTitleCtxA) +STUB( + "lBwddc6ZsIo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEcvbEv) +STUB( + "lBzdQpWarWU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEC2EPS8_) +STUB("lBzkcotvWZw", Java_com_sony_bdjstack_javax_media_controls_VideoSystem_setScreenDeviceVisible) +STUB("lC2+-6XMW38", _ZN7WebCore12SettingsBase26setMinimumDOMTimerIntervalEN3WTF7SecondsE) +STUB( + "lC3LXOGYURw", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations12setaccountIdEPKc) +STUB("lC5PrZi8XSE", _ZN7WebCore13CSSStyleSheet10deleteRuleEj) +STUB( + "lC6NyPIlPns", + _ZN7WebCore22CryptoAlgorithmAES_CBC15platformDecryptERKNS_30CryptoAlgorithmAesCbcCfbParamsERKNS_12CryptoKeyAESERKN3WTF6VectorIhLm0ENS7_15CrashOnOverflowELm16ENS7_10FastMallocEEENS0_7PaddingE) +STUB("lC7MnJ6yDFk", _ZN3sce7Toolkit2NP10IdDatabase11addClientIdEPKc) STUB("lC8-7cVnkHA", sceRazorCpuUserSignalWaitBeginEx) STUB("lCAYAK4kfkc", sceNpIdMapperCreateRequest) +STUB("lCB1AE4xSkE", CERT_getRSASignatureAlgo) +STUB("lCBU-o2Lkl4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEixEm) +STUB("lCEWJBsP78Q", u_strncmp_67) +STUB("lCGFH2R+Ov0", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_16SessionAttributeEE7destroyEPS3_) +STUB("lCLtbKBM05c", + _ZN9Inspector15RemoteInspector19updateTargetListingERKNS_24RemoteControllableTargetE) +STUB("lCMw0PGm9sY", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_23NpSessionInvitationInfoEED2Ev) +STUB( + "lCO6+AGMdhk", + _ZN12video_parser17cVideoProfilerMp417_getVideoCodecMp4ER33ff4_play_visual_sample_entry_infoPvPNS_17VpVideoCodecMP4_tE) +STUB( + "lCOIPCEEStk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEEaSERKSA_) +STUB("lCPe5ijeejQ", _ZN3IPC15ArgumentEncoder18releaseAttachmentsEv) +STUB( + "lCQBclc40Ds", + _ZNK3WTF8JSONImpl10ObjectBase8getArrayERKNS_6StringERNS_6RefPtrINS0_5ArrayENS_13DumbPtrTraitsIS6_EEEE) STUB("lCTCOogRbk0", sceVideoOutRegisterStereoBuffers) +STUB("lCU9IGT-MN8", xmlSAX2StartDocument) +STUB("lCUIV-jwm70", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE5beginEv) +STUB("lCUPWkgmRRc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V117ResponseMatchTypeEEC2EPS6_) +STUB( + "lCXRjNlzCxg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "lCYLHhCnw48", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEC1ERKS7_) +STUB( + "lCcoeldiMhM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEED1Ev) +STUB("lCd7-DV+3EM", _ZNK7WebCore9FloatQuad13containsPointERKNS_10FloatPointE) +STUB("lChhicC8UxY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEE5resetEPS6_) +STUB("lCp17SqY3Nc", __sys_dl_get_info_2) STUB("lCqD7oycmIM", sceNgs2RackDestroy) +STUB("lCsbKGwOyKg", Java_java_awt_GnmImage_nativeSetIndexColorModelIntPixels) +STUB("lCslUNMhiFU", mono_aot_System_ServiceModel_Webmethod_addresses) +STUB( + "lCuFFm-3UkU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEC2Ev) +STUB("lCvMwo-DZyo", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountIdD1Ev) +STUB( + "lCxKxpEh+A8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser19unsetnpServiceLabelEv) +STUB("lCxr0mW6QDk", _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEEixEm) STUB("lD-k3hDhlqA", sceLncUtilResumeApp) +STUB( + "lD8cwyZcc6U", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanity15setserviceLabelEPKc) +STUB("lDA-+kHzyYA", WKPageSetPageResourceLoadClient) +STUB("lDCWWROsrEg", _ZNK3sce2np12NpTitleToken6GetStrEv) +STUB( + "lDD8M-Kr-iY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("lDHc6u04CG4", Java_java_util_zip_Inflater_getAdler) +STUB("lDHe1IWyI1I", mono_aot_Sce_Vsh_Np_Webapijit_got) +STUB("lDHhVVXL4z8", WKBundleFrameCopyLayerTreeAsText) +STUB("lDIOMm81QJk", _ZN7WebCore28InspectorFrontendClientLocal19windowObjectClearedEv) +STUB( + "lDM9Cu30lf8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB("lDOAz8sFzb0", monoeg_g_set_prgname) +STUB("lDOEHo0GFHU", _ZN13MsvMetaEditorC2Ev) +STUB( + "lDPABiK09a0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEmmEi) +STUB( + "lDSyYqZkxvY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEdeEv) +STUB("lDTCbhvh-6w", _ZN8meta_gen11MsvPromoter11setMetadataERN23sceMetadataReaderWriter8MetadataE) STUB("lDTIbqNs0ps", sceNetControl) +STUB("lDTMNXxNoRg", mono_value_copy) +STUB( + "lDdWV4dG9p8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEE11release_refEv) +STUB( + "lDgiI8eub6o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEED2Ev) +STUB("lDhiBfFwyxY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEaSERS7_) +STUB("lDi+K6BUYUw", _ZN7WebCore9FrameView16setPaintBehaviorEN3WTF9OptionSetINS_13PaintBehaviorEEE) +STUB("lDk+F7Hcvn0", _ZN3sce7Toolkit2NP2V212NetworkUtils16NetStateDetailed8deepCopyERKS4_) +STUB( + "lDkky0GmfPw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE10setContextEPNS2_10LibContextE) +STUB( + "lDlzxNdkc2w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEC2Ev) +STUB( + "lDoDPBNnKcg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEaSERS7_) +STUB( + "lDovlaZcuuk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE5clearEv) +STUB( + "lDpY+gsigho", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToSendPlayerSessionMessage13isInitializedEv) +STUB( + "lDq26Q55lJM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) STUB("lDqxaY1UbEo", sceMsgDialogInitialize) +STUB("lDt1EAkv2fc", _ZNK7WebCore7Element9outerHTMLEv) +STUB( + "lDuZ+cXMNX8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEC1EPKS8_) +STUB("lDyNoXL7cQA", mono_error_ok) +STUB("lE2O8vM7keo", _ZN7WebCore11DisplayList6RotateD0Ev) STUB("lE4k3hlQbZk", sceS3daOpen) +STUB( + "lE68WSOdynM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEC2EPS6_PNS2_10LibContextE) +STUB("lE6JLKJQClE", mono_aot_Sce_Vsh_SessionInvitationmethod_addresses) +STUB("lEAGWAtLplg", __default_entry_point) +STUB( + "lEDAkR-XuKI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEaSERS7_) +STUB( + "lEDQSXTM7ho", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEED2Ev) +STUB("lEIEcYhU2vE", FcFontSetAdd) STUB("lEIjSr7+QME", scePssSoundSetSurroundPanSpeakerConfig) +STUB("lEJse1SUBf4", _ZN3sce7Toolkit2NP2V28Commerce10CategoriesD2Ev) +STUB("lELUb+ymzQE", _ZN3sce3Xml3Dom8Document11resetStatusEv) +STUB("lEMJBGmSagw", _ZNK7WebCore14CredentialBase11persistenceEv) +STUB( + "lEPYbuYmqbU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEEC2EPSA_PFvSC_EPNS2_10LibContextE) +STUB("lEQRC5UQZDI", WKPreferencesGetIsITPDatabaseEnabled) +STUB( + "lEZfWXrpfek", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB( + "lEfhNDDxdog", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE5emptyEv) +STUB("lEmXzXLNQx0", + _ZN7WebCore21JSRemoteDOMWindowBase22javaScriptRuntimeFlagsEPKN3JSC14JSGlobalObjectE) +STUB( + "lEwgw+yl8Q8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEC2EPS8_) +STUB("lEx31f-KID8", Java_java_util_zip_Inflater_getBytesWritten) +STUB("lEzjLelXvso", utrace_getLevel) +STUB( + "lF00zh8J3fs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE5clearEv) +STUB("lF2dztYeA10", _ZN7WebCore9HTMLNames10hiddenAttrE) +STUB("lF66Anf8kfw", mono_aot_Mono_Securityunbox_trampoline_addresses) +STUB("lF66NEAqanc", _ZTVSt14error_category) +STUB("lF7uqZ+SEkU", utext_setNativeIndex) STUB("lF96Sr8Jf0s", sceShellCoreUtilReportUnexpectedFatalErrorToSystemTelemetry) +STUB("lFCQlUvt40o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEdeEv) +STUB( + "lFDPFn9SVhg", + _ZN3JSC13JSArrayBuffer6createERNS_2VMEPNS_9StructureEON3WTF6RefPtrINS_11ArrayBufferENS5_13DumbPtrTraitsIS7_EEEE) STUB("lFJb+BlPK1c", sceNetConfigGetDefaultRoute) +STUB("lFKA8eMU5PA", _ZTSPKDi) +STUB("lFKkS3msC8Y", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getSecondaryVideoFullScreen) +STUB( + "lFLW-8TkVqc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEC2EPS6_PNS2_10LibContextE) +STUB("lFOylbeWySU", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScore10setboardIdEi) STUB("lFVNuWYTTFs", sceFiosOverlayGetInfo) +STUB("lFXMcLwL2B8", rgctx_fetch_trampoline_rgctx_101_p) +STUB("lFeQ5coHUe4", mono_btls_ssl_ctx_new) +STUB( + "lFehdxmx254", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEE5resetEPS9_) STUB("lFf3UU811v4", sceKernelIsGenuineDevKit) +STUB("lFiaDeAWrd8", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V15GroupEEC1Ev) +STUB("lFoCvh0UOew", + _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession19setUsePlayerSessionERKb) +STUB("lFwCOUdgf2E", ucnv_fromUChars) +STUB("lG3QAnJi3sk", _ZNK7WebCore11MediaSample16videoPixelFormatEv) +STUB("lG4-fc8Yk9o", udat_unregisterOpener_67) +STUB("lG5K6I9L4rY", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_15CategoryInfoSubENS2_IS4_EEEEeqERKS7_) +STUB( + "lG5rLTfAadc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE21intrusive_ptr_sub_refEPS9_) STUB("lGAjftanhFs", sceHttpAddRequestHeaderRaw) +STUB("lGCN+nKovw4", jpeg_stdio_src) +STUB( + "lGGxV1wvMfg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("lGIw3qfqI60", _ZN3sce2np13RingBufMemoryC2EP16SceNpAllocatorEx) +STUB("lGJTnZqchvA", glBindRenderbuffer) +STUB("lGJvZ508otk", _ZN22MmsMdCommonFsOperationD2Ev) +STUB( + "lGMGzmOGyCk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEdeEv) +STUB("lGMyJRCsrR0", _ZN3NTF21ResourceRequestLoggerD1Ev) +STUB("lGO-mNz54t8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEEptEv) +STUB("lGPBny04wlI", g_markup_parse_context_parse) +STUB("lGb63PP7XDE", _ZN7WebCore6Editor6indentEv) +STUB( + "lGfcafE1NJo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEixEm) +STUB( + "lGhPVdxbbJE", + _ZN3JSC19ArrayBufferContentsC1EPvjON3WTF6RefPtrINS2_10SharedTaskIFvS1_EEENS2_13DumbPtrTraitsIS6_EEEE) +STUB("lGjyfcI++PY", _ZN3sce2np10MemoryFileD2Ev) STUB("lGnm5Kg-zpA", sceNpTrophySystemBuildTrophyIconUri) +STUB( + "lGp2LofF+9I", + _ZN7WebCore11DOMRectListC2ERKN3WTF6VectorINS_9FloatQuadELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB( + "lGrJCYtArvg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEED1Ev) +STUB("lGvQ0fjtryI", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V114ResultsVersionEEC2Ev) +STUB("lGvSIGQKLQ8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEE5resetEPS5_) +STUB("lGzRzz4Zp9o", _ZN3sce3Xml3Dom4NodeC1ERKS2_) +STUB( + "lH+wZlEGFSU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEneERKS9_) +STUB("lH-Jz4CjVn4", Java_java_lang_reflect_Array_getChar) +STUB("lH57wXDczHk", _ZN15AbstractStorage15HttpTransaction4TermEv) +STUB("lH5InBJyeXY", YGNodeStyleGetFlexWrap) +STUB("lH79sVvHpzo", WKPreferencesGetInspectorAdditionsEnabled) +STUB("lH87l00Fyq0", _ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest17getExpirationTimeEv) +STUB("lH8Wr22Poz0", + _ZN7WebCore17NowPlayingManager17setNowPlayingInfoERNS0_6ClientEONS_14NowPlayingInfoE) +STUB("lHCWCYQW5lc", _ZN7WebCore16VisibleSelectionC1ERKNS_8PositionES3_NS_9EAffinityEb) +STUB( + "lHDCJKobbxo", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("lHDcj3s06Lo", _ZN7WebCore24DocumentMarkerController18addTextMatchMarkerEPKNS_5RangeEb) +STUB("lHGGE+Ubycs", SSL_up_ref) +STUB("lHJpwV5i29M", _ZN7Nicosia5Scene5StateC1Ev) STUB("lHKLprulT24", sceFiosGetAllDHs) +STUB( + "lHQMAVDRdf8", + _ZN7WebCore14FrameSelection6moveToERKNS_15VisiblePositionENS_14EUserTriggeredENS0_19CursorAlignOnScrollE) +STUB( + "lHQoQMCcpDU", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData24getxPsnAtomicOperationIdEv) +STUB("lHRazILohDQ", _ZNK7WebCore9FrameTree16traversePreviousENS_7CanWrapEPNS_7DidWrapE) STUB("lHTcSjAnKdI", sceFaceDetection) +STUB("lHUwkXPfq68", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEEC2ERKS7_) +STUB( + "lHjWO0vjWtg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEixEm) +STUB("lHn8JVVdX6Y", _ZN11GvMp4Parser6Common11Utf16ToUtf8EPKwPSs) +STUB( + "lHsfdlodoW0", + _ZN3sce2Np9CppWebApi14SessionManager2V127GetGameSessionsResponseBody15setGameSessionsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_18GameSessionForReadEEEEE) +STUB( + "lHvIe3zakog", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE5beginEv) +STUB( + "lHzpZTlqHg0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE8copyFromERKS9_) +STUB("lI+RrjiDMjU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEEC2EPKS6_) +STUB( + "lI2otc5PumY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE8copyFromERKS9_) +STUB("lI2pfmqtRYg", _ZN7WebCore14SQLiteDatabase4openERKN3WTF6StringEb) +STUB("lI5aPC+BayY", _ZSt9use_facetISt7collateIwEERKT_RKSt6locale) +STUB( + "lI5iBlSzh+A", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE23clearOnFinishedCallbackEv) +STUB("lI9bqGKPlac", + _ZN7WebCore32throwArgumentMustBeFunctionErrorERN3JSC9ExecStateERNS0_10ThrowScopeEjPKcS6_S6_) +STUB("lI9iaIkgrCI", _ZN7WebCore16HTMLInputElement6stepUpEi) +STUB( + "lIH+pR7rtZI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEixEm) +STUB("lIIc7tHGmOE", _ZN3sce7Toolkit2NP2V29Challenge7Request16ConsumeChallengeC1Ev) +STUB( + "lIJwSJzFHGo", + _ZN3sce7Toolkit2NP10Challenges9Interface12sendResponseEPKNS1_24ChallengeResponseRequestEPNS1_9Utilities6FutureINS1_21NotifyChallengeResultEEEb) +STUB( + "lIKkIuSFBFQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "lIMMWVXyDQU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEED2Ev) STUB("lIRrBaNU-ZI", _sceNpHeapReallocImpl) +STUB("lIb8Z1dZrZ8", _ZN3JSC8Bindings13RuntimeObjectC2ERKS1_) +STUB( + "lIcu6kYtGtQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEppEi) +STUB("lIdCmqcLfN8", Java_sun_awt_GnmUtils_bdjbgTest) +STUB("lIjfS8+da-M", g_PS4PushNotifications) +STUB( + "lIr4Xg565UQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEplEm) +STUB( + "lIunPkkDpZk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEED1Ev) STUB("lIw5lVusKXQ", sceKernelGetKnobs) +STUB("lIxp9rrgDNk", _ZN3sce7Toolkit2NP2V212ActivityFeed11SharedVideoD2Ev) +STUB("lJ2Efd9PUKI", _ZN3sce2np10CancelLock5BeginEPNS0_6HandleEPKciS5_) +STUB( + "lJ3w1fkalI0", + _ZN9Inspector24ConsoleBackendDispatcher6createERNS_17BackendDispatcherEPNS_31ConsoleBackendDispatcherHandlerE) +STUB("lJ47ObrVU3s", _ZN3sce7Toolkit2NP2V27Ranking7Request11SetGameDataC2Ev) +STUB("lJ9tgYF09zg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEED1Ev) +STUB("lJDQ+cqzH9U", mono_aot_Mono_Data_Tdsunbox_trampolines_end) +STUB( + "lJDc38BPsWc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB( + "lJJYzJC7DDQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEppEv) +STUB("lJPCM50sdTc", _ZTVSt24_Iostream_error_category) +STUB("lJS0-tSESD0", _ZN3sce7Toolkit2NP2V210Tournament27TeamVsTeamTournamentDetailsC2Ev) +STUB( + "lJShrv7ZPBw", + _ZN8meta_gen11MsvPromoter26setKeyValue_TBLV_AccountIdENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB( + "lJT1GzPehRs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE3endEv) STUB("lJUQuaKqoKY", sceSaveDataDeleteTransactionResource) +STUB( + "lJduRkg1tBQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEC1ERKS7_) +STUB("lJhs-zI+A50", WKAuthenticationChallengeGetDecisionListener) +STUB("lJnP-cn0cvQ", _ZTVSt8numpunctIcE) +STUB( + "lJnbLwj8PVI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEEC2ERSA_) +STUB("lJnlBuCoi7w", mono_reflection_type_get_type) +STUB("lJsvpm4XjtM", mono_image_init) STUB("lJuu35VxkFY", sceFsUfsRecryptBlocks) +STUB("lJvKp35od0A", _ZN7WebCore15startOfDocumentEPKNS_4NodeE) +STUB("lJxMIwj81SQ", FT_Set_Pixel_Sizes) +STUB("lJxTpIpgTtg", isobmf_box_getdiskoffset) +STUB("lJxveZjlORU", _ZN9Inspector17ScriptDebugServer16dispatchDidPauseEPNS_19ScriptDebugListenerE) +STUB( + "lK+xNG5wPuE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEC1Ev) STUB("lK8dLBNp9OE", sceGameLiveStreamingGetCurrentStatus2) +STUB( + "lK9nzNzGtBQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEdeEv) +STUB("lKEN2IebgJ0", longjmp) +STUB( + "lKIXbMe9I68", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEaSERKS7_) +STUB("lKNrpnUxwhc", _ZN23sceMetadataReaderWriter22StorageParserInfoTableC2EjPi) +STUB("lKXBdPZC5Ds", mono_aot_System_Runtimejit_code_start) +STUB( + "lKXM3MeMhro", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEC2ERS7_) +STUB( + "lKb-ZDBqrjw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEC1EPKS8_) +STUB( + "lKctc5pfx2c", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetInteger2Ev) +STUB("lKdJElWrIwM", _ZN7WebCore23CoordinatedImageBacking28getCoordinatedImageBackingIDERNS_5ImageE) +STUB("lKfKm6INOpQ", _ZSt10unexpectedv) +STUB("lKfctLchxNs", AsyncStorageGetItemNative) +STUB("lKgkI3GzBZs", WKPreferencesSetNeedsSiteSpecificQuirks) +STUB( + "lKhz9SVAuxU", + _ZN3sce2Np9CppWebApi14SessionManager2V121RepresentativeFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_14RepresentativeEEE) +STUB("lKkmDgJOlGo", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEED2Ev) +STUB( + "lKneoJBI48s", + _ZN3sce2Np9CppWebApi14SessionManager2V125GameSessionForReadFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_18GameSessionForReadEEE) +STUB( + "lKopxPXf420", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "lKouS2zS1xY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEE21intrusive_ptr_add_refEPS7_) +STUB("lKrU+Hgdiyg", _ZThn24_N9Inspector28InspectorScriptProfilerAgent18willEvaluateScriptEv) +STUB( + "lKujEUzY6so", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEEC1ERKSA_) +STUB("lKxuL-PBHeU", _ZN7WebCore11MathMLNames10rspaceAttrE) +STUB("lKyAvVz10f4", _ZN7WebCore19ResourceRequestBase18setHTTPHeaderFieldERKN3WTF6StringES4_) +STUB( + "lKyY5eL58cI", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions25hasusePlayerSessionFilterEv) STUB("lL+Z3zCKNTs", sceNpTssGetSmallStorage) +STUB("lL3-BLIbi-I", _ZN3sce7Toolkit2NP2V210Tournament15TeamVsTeamMatchC2ERKS4_) +STUB("lL3m7lGCZyk", _ZN3sce2Np9CppWebApi6Common6String8copyFromERKS3_) +STUB("lL4NUMgUVgU", uhash_igeti_67) +STUB( + "lL6z7R+aeGg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEE7add_refEv) +STUB("lL7d8xyua-4", s11) +STUB("lL7pzhQAzK8", u_vparseMessage_67) STUB("lLCJHnERWYo", sceFontGraphicsCanvasClearPreprocess) +STUB("lLDCzLM1pqE", _ZN3sce2Np9CppWebApi6Common8IteratorIiEC1Ev) +STUB( + "lLG4bzOp6Ec", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE5emptyEv) +STUB( + "lLIsIihcD7o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEE3getEv) +STUB( + "lLLBkhCm0Bw", + _ZNK7WebCore12ChromeClient38shouldUnavailablePluginMessageBeButtonENS_20RenderEmbeddedObject26PluginUnavailabilityReasonE) +STUB("lLLYkMNAA4A", _ZN7WebCore11DisplayList23FillRectWithRoundedHoleD0Ev) +STUB("lLMT9vJAck0", clock_gettime) +STUB( + "lLPA61Rc8rQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEixEm) +STUB( + "lLQ2+uRqfAI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE4sizeEv) +STUB("lLQkvk3me0E", _ZN7WebCore14FrameSelectionC2EPNS_8DocumentE) +STUB( + "lLUy02Mje30", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE4sizeEv) +STUB("lLXYAAuqw7U", _ZTV9MmsMp4Box) +STUB("lLbOUEEQeWE", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEEptEv) STUB("lLbv0f9D-uw", sceClAudiodecInitLibrary) STUB("lLkJVewQK68", sceVoiceEnableChat) +STUB("lLmv0IK5UNk", uprv_decNumberToIntegralExact_67) +STUB( + "lLo8R8mUOC8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEppEv) +STUB( + "lLpgyq5S3HA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEneERKS9_) +STUB("lLqb2+WF-5I", rgctx_fetch_trampoline_rgctx_95_p) +STUB( + "lM-oWg+rVp4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEC2EPNS2_10LibContextE) +STUB( + "lM9Nv++4XXM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEE3getEv) +STUB( + "lMAVGjEDw6U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEC1EPS8_) +STUB("lMGV4bOhOx8", sqlite3_finalize) +STUB( + "lMMu6rq428g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEC2EPNS2_10LibContextE) +STUB("lMOEb2HagU0", uldn_scriptCodeDisplayName_67) +STUB( + "lMZkNDjIIqY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEC1EPKS8_) +STUB( + "lMdyP3SDLps", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEptEv) +STUB( + "lMe8kMtBLPg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEdeEv) +STUB( + "lMfEZ-YjLkM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEppEi) +STUB("lMh7fSzSU7E", utrie2_set32_67) +STUB("lMj-sBhWc6c", _ZN7WebCore34contextMenuItemTagDefaultDirectionEv) +STUB("lMjMXS2Ez0M", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities26GetUsersActivitiesResponse8getUsersEv) +STUB("lMjUdn4xQqk", _ZN9Inspector27LayerTreeFrontendDispatcherdaEPv) +STUB("lMrwZQepm+4", rgctx_fetch_trampoline_rgctx_5_p) +STUB("lMvgbDe+KpM", __asan_report_exp_store4) +STUB("lN+0mEFqERo", _ZN10MonoDomain7GetRootEv) +STUB("lN+8Q-cBYXQ", X509_STORE_add_crl) +STUB( + "lN63l-XK8AE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEixEm) STUB("lN7Gk-p9u78", sceGnmSetSpiEnableSqCountersForUnitInstance) +STUB("lNAJstgvTDI", _ZN7WebCore22EmptyFrameLoaderClient15finishedLoadingEPNS_14DocumentLoaderE) +STUB("lNAevSjQZfY", ucnv_getCompleteUnicodeSet_67) +STUB( + "lNAsvvTRilM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEplEm) +STUB("lNHNe-Ae8Vs", _ZN7WebCore11JSImageDataaSERKS0_) +STUB( + "lNI3BaI52Og", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEC2ERS7_) +STUB("lNLfrD76AdE", ures_openFillIn_67) +STUB("lNMaLXFQN9w", _ZNK3WTF8JSONImpl5Value6isNullEv) +STUB("lNPpoUVElSA", u_charDigitValue) +STUB("lNTTjqQXkf4", _ZN7WebCore19InspectorController12didCompositeERNS_5FrameE) +STUB("lNZ3n4I2ifo", _ZN3JSC21getInt8ArrayClassInfoEv) +STUB("lNi53JL+QIw", WKWebsiteDataStoreConfigurationCopyNetworkCacheDirectory) +STUB("lNicIEursI4", + _ZN3JSC23JSModuleNamespaceObject10putByIndexEPNS_6JSCellEPNS_14JSGlobalObjectEjNS_7JSValueEb) +STUB("lNjmEkGC4iM", udat_setCalendar_67) +STUB( + "lNkIhJuCBno", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "lNm-WGxrjHU", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayer13isInitializedEv) STUB("lNnUqa1zA-M", sceFontGlyphGetScalePixel) +STUB("lNs-oTKpG9s", _ZThn8_N3sce2np10MemoryFileD1Ev) +STUB("lNsGKaylgnA", utrace_setLevel_67) +STUB( + "lNy6-V-+U54", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE7reserveEi) +STUB("lO+DtQrVJiw", _ZNK7WebCore17CredentialStorage22originsWithCredentialsEv) +STUB( + "lO+q1bUO9u4", + _ZN3JSC8JSObject13putInlineSlowEPNS_9ExecStateENS_12PropertyNameENS_7JSValueERNS_15PutPropertySlotE) +STUB("lO01m-JcDqM", cbrtl) +STUB("lO2rp0uakfM", WKDictionaryGetTypeID) +STUB( + "lO3zZblfbms", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEEptEv) +STUB( + "lO4lOBN8t+s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEEC2ERKS9_) +STUB("lO5WE1I+3-c", _ZN3sce3Xml3Dom8NodeList10insertLastENS1_6NodeIdE) +STUB( + "lO9P+gI1HqA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "lOD28qKtAbQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEE7get_refEv) +STUB("lOF5jrFNZUA", _ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC2Em) +STUB( + "lOFLsPXy7IY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEeqERKS9_) +STUB("lOFTLo+dG3Y", _ZNK3WTF3URL14fileSystemPathEv) +STUB("lOG4PfA3zAs", UDataMemory_setData_67) +STUB( + "lOJa7htNIa0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEixEm) +STUB("lOKJd85Bu7U", _ZNK7WebCore22SkewTransformOperation6angleXEv) +STUB("lOKOxhz6Uxw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE8copyFromERKS7_) STUB("lOR+Nos+Je8", sceVideoOutDriverDeleteEvent) +STUB( + "lOUXqXBz47Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("lOUpCGTt7Z4", _ZN3sce7Toolkit2NP2V28Commerce23ServiceEntitlementLabelD2Ev) +STUB("lOVQnEJEzvY", _Tss_get) +STUB( + "lOYAf1Ryu8w", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEEcvbEv) +STUB("lOYH420riKo", JSObjectGetPropertyAtIndex) STUB("lOYHtoUcJD4", sceAgcDriverSubmitToHDRScopesACQ) +STUB("lOZmPXxNoYY", mono_type_get_class) +STUB("lOdjgI4XArs", _ZNK3sce2np14JsonObjectImpl8GetFieldEi) +STUB("lOeyzHrWy68", _ZN3sce7Toolkit2NP2V28Matching6MemberaSERKS4_) STUB("lOfduYnjgbo", sceFontStyleFrameGetEffectSlant) +STUB("lOh+IAEXMU0", _ZN4Manx13WorkQueueImpl6wakeUpEv) +STUB("lOi2xW4VGvE", _ZN7WebCore4Page22resumeAllMediaPlaybackEv) STUB("lOitg3BrGSw", sceUpsrvSetFakeVersion) +STUB("lOu80DpEwGo", monoeg_g_str_has_suffix) +STUB("lOvHI++z4Z4", _ZN7WebCore15hasAnyPlainTextERKNS_5RangeEt) +STUB( + "lOviM+t3Sw4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE5beginEv) +STUB( + "lP5OFcGJPnE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE3endEv) +STUB( + "lP5lf2ptfVI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEE7get_refEv) STUB("lP6QEEoBVqE", sceDebugGetJobManagerSequenceList) STUB("lP9bRJMj0GU", sceFiosFHGetOpenParams) +STUB("lP9zfrhtpBc", _FRecip) +STUB("lPAMjFZEpt8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEC1ERS7_) +STUB( + "lPDJJNvqvPM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEE6assignEPS6_PFvS8_EPNS2_10LibContextE) STUB("lPDO62PpJIA", sceNpEntitlementAccessGetSkuFlag) STUB("lPEBYdVX0XQ", sceRtcCheckValid) +STUB("lPHo9QzZK0A", _ZN3sce7Toolkit2NP2V26Trophy17TrophyPackSummary5resetEv) +STUB("lPKKDtEmEgM", ucnv_convertEx) +STUB("lPKlhy6hqfU", _ZN3sce7Toolkit2NP2V28Matching5WorldD2Ev) +STUB("lPLS0qFlY60", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEE7add_refEv) +STUB( + "lPLcRWWjFNk", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V132FrequentlyMutedPropertiesFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_28FrequentlyMutedInGameMetricsEEENS8_INS3_29FrequentlyMutedInPartyMetricsEEEPNS8_INS3_25FrequentlyMutedPropertiesEEE) +STUB("lPNr2mEWUBU", _ZNK7WebCore19ResourceRequestBase10httpOriginEv) +STUB("lPQzOhwPjuw", _ZN3sce2np9RefObjectD1Ev) +STUB("lPSu56iEcdA", _ZN7WebCore17PageConsoleClientC2ERNS_4PageE) +STUB("lPT2iFkMK-M", _ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEED1Ev) +STUB("lPYpsOb9s-I", lgammal) +STUB("lPbaxwlksZM", SwCtrlSinkStreamCancel) +STUB("lPf-b912Gbg", _ZN7WebCore9CaretBase17computeCaretColorERKNS_11RenderStyleEPKNS_4NodeE) +STUB("lPoaOQoIxcY", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_24RegisterGameDataResponseEEC1Ev) +STUB( + "lPqAoelhJnI", + _ZN3sce2Np9CppWebApi14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyC2EPNS1_6Common10LibContextE) +STUB("lPrzNCs0+B4", _ZN7WebCore24CachedResourceHandleBaseC2ERKS0_) STUB("lPsGHkAb0yM", sceDeci4hDrfpChkInValidUlpHead) +STUB("lPwPDdfX7L8", uhash_openSize) +STUB("lPyvK0d3aXc", ulist_addItemBeginList) +STUB("lQ0HbljpxQA", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIlEppEv) +STUB( + "lQ0k7vFThTk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEE11release_refEv) STUB("lQ11BpMM4LU", sceNpMutexDestroy) +STUB( + "lQ5ElKf1SDI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEE3getEv) +STUB( + "lQ7+8vb2vx4", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetail10initializeEPNS1_6Common10LibContextEPKc) STUB("lQ7rWWlOArI", sceCamera2IsValidFrameData) +STUB("lQCVZr1cW8g", NewStringPlatform) +STUB( + "lQHMdtJ9LAA", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE5startEPNS2_10LibContextEm) STUB("lQOCF84lvzw", sceNpWebApi2SendRequest) +STUB("lQQ-nJpCyqU", _ZNK7WebCore6Editor7canCopyEv) +STUB( + "lQSiG-+O6DU", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE18getResponseHeadersERSB_) +STUB("lQUbnRQ699M", WKFrameInfoCreateFrameHandleRef) +STUB( + "lQWGG+qx1EQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEED2Ev) +STUB("lQXgvDXBGtA", _ZN3sce2np10EventQueueD1Ev) +STUB("lQd8Gb+pKNo", mono_loader_lock) STUB("lQh55Q8DUAg", sceVideoOutConfigureOutputModeEx_) +STUB( + "lQi3iFX6mf8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEED1Ev) +STUB("lQwRkOw4TaI", + _ZN3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreateC1EPNS1_6Common10LibContextE) +STUB( + "lQwa7mJq+vg", + _ZNK3sce2Np9CppWebApi14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBody6toJsonERNS_4Json5ValueEb) +STUB("lR0xukIgXJs", _ZN7WebCore11MediaPlayernwEmPv) +STUB("lR4yQ2+cnfs", ucnv_reset_59) +STUB( + "lR5a4VfFdQc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE7popBackEv) STUB("lR66ktNCCG4", sceDevUsbReadCP) +STUB("lR6b+yl6u3c", _ZN7WebCore18TextureMapperLayer16removeFromParentEv) +STUB("lR7fWk-OVI0", + _ZN7WebCore11MessagePort37isExistingMessagePortLocallyReachableERKNS_21MessagePortIdentifierE) +STUB( + "lR9fauFRJyw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEixEm) +STUB("lRFFPidOgTg", _ZNK7bmalloc11IsoTLSEntry6offsetEv) +STUB( + "lRGTr5+KnHY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEC1Ev) STUB("lRL0zzmbcU0", sceSystemLogger2SetPeripheralConnectionLog) +STUB( + "lRLlqbrwC1g", + _ZN3JSC17profiledConstructEPNS_9ExecStateENS_15ProfilingReasonENS_7JSValueENS_13ConstructTypeERKNS_13ConstructDataERKNS_7ArgListES3_) +STUB( + "lRN7rObDAKw", + _ZN9Inspector21InspectorConsoleAgent9logTimingEPN3JSC14JSGlobalObjectERKN3WTF6StringEONS4_3RefINS_15ScriptArgumentsENS4_13DumbPtrTraitsIS9_EEEE) +STUB("lRNN6cgOimo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEE11release_refEv) +STUB( + "lROD5POCqKg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEEC2Ev) +STUB("lRSUDw0I4qs", mono_aot_Systemmethod_addresses) +STUB("lRXHAc5JwfI", _ZN3JSC7Symbols25fulfillPromisePrivateNameE) +STUB( + "lRZopyj7zU0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE5beginEv) +STUB( + "lRfmpVbllSo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEC2ERS7_) +STUB("lRlQXPSYfTI", WKRenderLayerCopyElementID) +STUB("lRngZXg+OMw", ulocimp_getRegionForSupplementalData) +STUB("lRrzctjunwA", AMDTEE_DLM_StopTADebug) +STUB("lRuxf7+F7Nw", mono_btls_ssl_ctx_set_cert_select_callback) STUB("lS0tM6n+Q5E", sceCameraSetProcessFocus) +STUB( + "lS1GsSTWKMY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEC1EPS8_) +STUB("lS5X3lpVv9Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEixEm) +STUB( + "lSCTFbuKT8w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEC2Ev) +STUB("lSGEqQCGfbI", WKGeolocationManagerGetTypeID) +STUB( + "lSJYfNEt66M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEaSERKS9_) +STUB("lSPb2EWKGb0", mono_aot_Sce_Vsh_Np_Commonunbox_trampoline_addresses) +STUB( + "lSVQkZM9V6c", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToSendGameSessionMessage12getsessionIdEv) STUB("lSVTiWV5wLc", sceAudiodecCpuDecode) STUB("lSaNxHqgrRs", sceDataTransferTargetRequestPwrReq) +STUB("lSd15XqEBAA", _ZN3sce7Toolkit2NP24InviteJoinSessionRequestC2Ev) +STUB("lSe4Oe+76o4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEC1Ev) +STUB( + "lSfM1Z72L2Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEC2EPS8_) +STUB( + "lSh48eYlYv4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("lSlns3bsKAA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE3endEv) +STUB("lSmhCcJC33M", __wrap_lstat) +STUB("lSppkDFatb8", _ZN3JSC4Yarr17RegularExpressionaSERKS1_) +STUB("lSs7T9ncMqA", _ZN3JSC7Symbols18ownKeysPrivateNameE) +STUB("lSxNK9Il2o0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEixEm) +STUB("lSyLI0hhH24", _Z32VideoPlayerVcs_UpdatePlayerStatei) +STUB( + "lSyTqI6BBAY", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE21setOnFinishedCallbackEPFvliSB_PvEPFvliSG_ESG_) +STUB("lSzjYXcFscQ", _ZN7WebCore9HTMLNames17sortdirectionAttrE) +STUB("lT+hm4QHVUI", _ZN3sce3Xml4Attr10initializeEPKNS0_11InitializerE) +STUB( + "lT2ku3p7jNE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE5emptyEv) +STUB("lT4bKLwuA8g", _ZNK3sce2Np9CppWebApi11Matchmaking2V110UserTicket16rulesetNameIsSetEv) +STUB( + "lT5a72FBiv4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEeqERKS9_) +STUB("lT7zcuOXoKo", WKUserContentControllerRemoveAllUserScripts) +STUB("lT9pLsjJ8Ao", _ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error14setReferenceIdEPKc) +STUB("lTEvadIy6RQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V114SearchOperatorEEmmEv) +STUB("lTTrDj5OIwQ", _ZNSoD0Ev) +STUB("lTV7W53O5ss", _ZNK7WebCore13HitTestResult18titleDisplayStringEv) +STUB("lTVL-egrwRw", unorm2_swap_67) +STUB("lTbZuuY7caY", mono_aot_ReactNative_Modules_Vsh_Gct_Telemetry2plt) +STUB( + "lTcyzv91hA8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE5beginEv) +STUB("lTmTt+AaeeM", mono_aot_Mono_Data_Sqliteplt_end) +STUB( + "lTrzM5GsB6k", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_20NpSessionInformationENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB( + "lU0Z9WOHTVg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE3endEv) STUB("lU9YRFsgwSU", sceSaveDataRestoreBackupData) +STUB("lUHMWrWcowo", + _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBodyC1EPNS1_6Common10LibContextE) +STUB( + "lUIVZer4ibY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEmmEi) +STUB("lUKa4hJWiSY", _ZN3JSC11RegisterSet19calleeSaveRegistersEv) +STUB("lUNDdv7AxtY", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_14TrophyGameInfoEE17getAdditionalInfoEv) +STUB( + "lUNTWKtBZZY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEeqERKS9_) +STUB( + "lUXhDYr4M8E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("lUXyFGSFXKo", _ZN3sce2np4NpIdD0Ev) +STUB("lUYELQFrN8E", _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile23setIsOfficiallyVerifiedERKb) +STUB( + "lUYF1XTZipw", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120MmrPropertiesFactory7destroyEPNS3_13MmrPropertiesE) +STUB("lUa5QQkGSFM", _ZN7WebCore12NamedNodeMap15removeNamedItemERKN3WTF12AtomicStringE) +STUB("lUbUtCi+rG4", _ZL14init_ext_mutexv) +STUB("lUk6wrGXyMw", recvfrom) +STUB("lUll+GkX6ug", _ZN7WebCore9HTMLNames14aria_levelAttrE) +STUB( + "lUnwldMIM7w", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) STUB("lUoqwTQu4Go", sceUserServiceGetUserColor) +STUB( + "lUpnTp3nBtU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEE21intrusive_ptr_add_refEPS6_) +STUB("lUsG1QfgVN4", _ZThn8_N3sce2np6HandleD1Ev) +STUB( + "lUwK30oKhOk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEneERKS9_) +STUB("lV+M4ace0Ts", _ZN7WebCore9GLContextdlEPv) +STUB("lV-Abz4vIac", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEE7add_refEv) +STUB("lV1DFblPQFo", mono_aot_Mono_Dynamic_Interpreterplt) +STUB( + "lV4-707KDTY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEEC1ERKS9_) +STUB("lV4BZtnzeHc", _ZN23sceMetadataReaderWriter7StorageC2EjPi) +STUB( + "lV5KK7PjfxA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEC2EPNS2_10LibContextE) STUB("lV5XniySQD8", sceVideoDecoderArbitrationEnableSuspendMode) +STUB("lV71GenMZQM", _ZNK7WebCore7Element13hasAttributesEv) +STUB( + "lV8n5yhgEwc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEptEv) +STUB("lVCj8zsZ-Ro", g_dir_rewind) +STUB("lVEcKN4IKM0", _ZN7WebCore9HTMLNames20aria_orientationAttrE) +STUB( + "lVMHpO3I0b4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_) STUB("lVSR5ftvNag", sceFontCharactersRefersTextCodes) +STUB( + "lVZ9BStvUgE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("lValmqLB7VI", uprv_decContextTestStatus_67) +STUB( + "lVeqb1+uEeI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEC2EPNS2_10LibContextE) +STUB("lVp4Qn0bUX8", + _ZN3sce2Np9CppWebApi7Matches2V120RequestPlayerResults8fromJsonERKNS_4Json5ValueE) +STUB( + "lVrbZRE+8zo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEC2Ev) STUB("lVsw3kdsgAk", scePerfPmcAperfGetCounter) +STUB("lVt0Ux1pAcg", BN_add_word) +STUB("lVxn1IsZyGE", _ZN7WebCore11startOfLineERKNS_15VisiblePositionE) +STUB( + "lVzTyidvU4w", + _ZN9Inspector14InjectedScript13getPropertiesERN3WTF6StringERKS2_bbRNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime18PropertyDescriptorEEENS1_13DumbPtrTraitsISC_EEEE) STUB("lW+8pdTQMmg", sceShellCoreUtilShowCriticalErrorDialog) +STUB("lW+f6dBH3wk", _ZN15AbstractStorage14FacebookFolderD0Ev) +STUB("lW6dX7Z0aq4", _ZN7WebCore16MIMETypeRegistry23supportedMediaMIMETypesEv) +STUB("lW7Qtc4Q4bI", WKBundleBackForwardListItemCopyURL) +STUB("lW8taMdqx2I", _ZN3sce7Toolkit2NP2V28Matching7Request9GetWorldsD2Ev) +STUB("lWA7rqvWYAI", unorm2_getRawDecomposition_67) +STUB("lWAsnnbARz8", _ZN7WebCore14JSVoidCallbackC1EPN3JSC8JSObjectEPNS_17JSDOMGlobalObjectE) +STUB( + "lWBaGrtkRi0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("lWDHF6V72lk", _ZNK9JITBridge20sharedMemoryAreaSizeEv) +STUB( + "lWEIv4D94go", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE10setContextEPNS2_10LibContextE) +STUB("lWFasWlhBe4", Java_java_lang_StrictMath_log10) STUB("lWFb4eL7Igk", sceBgftServiceIntUploadRegisterTask) +STUB("lWGF8NHv880", _DefaultRuneLocale) +STUB("lWJNqXQ6+mI", _ZN3sce7Toolkit2NP2V24Core7Request11AddCallbackD1Ev) +STUB( + "lWKzOF1LCg0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE8capacityEv) +STUB("lWLxT39hCKw", mono_aot_System_Threading_Tasksunbox_trampolines_end) +STUB( + "lWSTxTp9LsE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE7reserveEi) +STUB("lWVDUhXNnYE", _ZN3sce7Toolkit2NP9Utilities6FutureIbEC1Ev) +STUB( + "lWklnER6Ptk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEC1EPNS2_10LibContextE) +STUB("lWlBrUu77Kg", _ZN3sce3pss5orbis9framework12PsmFramework10InitializeERKNS2_12PsmInitParamEiPPc) +STUB("lWs2iFS1rkc", _ZN7WebCore21DiagnosticLoggingKeys23isConditionalRequestKeyEv) +STUB( + "lWtO4slETd0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEplEm) +STUB( + "lWwxp0jbVmQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEaSERKS7_) +STUB("lWzHkMyiyp0", _ZN9Inspector14ConsoleMessagenwEmPv) +STUB("lX+4FNUklF0", __cxa_end_catch) +STUB("lX-usj4-LxA", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_19UserRankInformationEE17getAdditionalInfoEv) +STUB( + "lX0nSVABdys", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEC2ERS7_) +STUB("lX1zn4Di8gA", _ZN7WebCore9HTMLNames11textareaTagE) +STUB( + "lX2it4BGiTc", + _ZN3JSC25MacroAssemblerCodeRefBase11disassemblyENS_21MacroAssemblerCodePtrILN3WTF6PtrTagE3123EEEm) +STUB("lX2klFcD4z8", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku8setPriceERKi) +STUB("lX9M5u0e48k", _ZNSt13bad_exceptionD0Ev) +STUB( + "lXAAtUp-VT4", + _ZN3JSC8JSObject27getOwnNonIndexPropertyNamesEPS0_PNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB( + "lXGUHIsnTVk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEED2Ev) STUB("lXHMAc9Xjzo", sceVideoOutSysGetCurrentOutputMode_) +STUB( + "lXHyZaBJnew", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE21intrusive_ptr_add_refEPS9_) STUB("lXKtAHMrwig", sceUserServiceGetParentalBdAge) +STUB("lXMiv1MLPrA", _ZN7WebCore13GraphicsLayer15willBeDestroyedEv) +STUB("lXOfvwAYUbI", + _ZN3sce7Toolkit2NP2V29Messaging7Request27GetGameDataMessageThumbnail18MAX_SIZE_THUMBNAILE) STUB("lXT0m3P-vs4", sceKernelAioSubmitReadCommandsMultiple) +STUB("lXWApqjC0iQ", _ZN3sce7Toolkit2NP2V29Challenge7Request16GetChallengeDataC1Ev) +STUB("lXc9INQaeh8", _ZN3sce2Np9CppWebApi10Activities2V114UserActivities8Activity12unsetMatchIdEv) +STUB("lXd6YOHfW1A", _ZN9Inspector16toInspectorValueERN3JSC9ExecStateENS0_7JSValueE) +STUB( + "lXeN-I-uhZ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEEC2Ev) +STUB( + "lXeWt+XWpTw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEaSERKS9_) +STUB( + "lXefb2ZzauI", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanity15getserviceLabelEv) +STUB("lXesITh371Q", _ZN7WebCore24DeprecatedGlobalSettings38setLowPowerVideoAudioBufferSizeEnabledEb) +STUB( + "lXhdSMTb5ME", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEED2Ev) STUB("lXlP+jhO8QI", sceShellCoreUtilGetPlatformPrivacyDefinitionEventData) +STUB( + "lXr+ZxHIFdk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEC1ERKS7_) STUB("lXturndR3Og", sceIduUtilHideOverlay) +STUB("lXwm2UtDwRQ", fuse_fs_rmdir) +STUB( + "lY-c5XJE1Ek", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEED1Ev) +STUB("lY2txdSWzLA", _ZN3sce3pss5orbis5video14VideoPlayerVcs18VideoCoreGetVolumeEv) STUB("lY3vdIUZsG4", sceNpManagerIntGetGameTicketWithPid) +STUB( + "lY7M9enT-MQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEED2Ev) +STUB("lY7qdFGr0go", glBindAttribLocation) +STUB("lYA31T9O1KU", audiodeccpuinternal_core_ops_hevag2) +STUB("lYDzBVE5mZs", _ZdlPvm) +STUB("lYGZWRWJP6Q", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEED1Ev) +STUB("lYGrWZuoU54", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEmmEv) +STUB( + "lYGuLAOLQqo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEC1Ev) +STUB("lYJ69+BznHw", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsD2Ev) +STUB( + "lYKDlvaFS6s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "lYNHtD7Ms3M", + _ZN7WebCore23CoordinatedBackingStore10drawBorderERNS_13TextureMapperERKNS_5ColorEfRKNS_9FloatRectERKNS_20TransformationMatrixE) +STUB( + "lYPu-wrIeXE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("lYTGjcy6-X8", _ZN3sce2Np9CppWebApi6Common6VectorIjE21intrusive_ptr_sub_refEPS4_) +STUB("lYUGcgHYT7Y", _ZN15AbstractStorage7AbsFreeEPv) +STUB("lYdqBvDgeHU", sinhl) +STUB( + "lYewQQWrkJo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEEC1EPS9_PNS2_10LibContextE) STUB("lYkDUwyzr0s", sceNpManagerIntGetOnlineIdChangeFlag) +STUB("lYuouxsF218", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE3endEv) +STUB( + "lYva6zoEkvA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEmmEi) +STUB("lYvi-+d8juI", _ZN7WebCore14MicrotaskQueue15mainThreadQueueEv) STUB("lYz7vbL4W4A", sceAgcDriverPatchClearState) STUB("lZ2Sd0uEvpo", sceGameLiveStreamingClearSocialFeedbackMessages) +STUB( + "lZ5GFhxG5eI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB("lZ6DGUv+J0w", _ZN7WebCore9HTMLNames6divTagE) STUB("lZ6RvVl0vo0", sceSysmoduleMapLibcForLibkernel) +STUB("lZ7oA7bWXkw", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats6getMmrEv) +STUB( + "lZ7odheWSbE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEmmEv) +STUB("lZ8qVuIIn-w", mono_set_rootdir) +STUB("lZDjofhKGKQ", _ZN3NTF15DNSPrefetchImpl8finalizeEv) +STUB("lZEI8hQ3tZs", getera) +STUB("lZFjwMoscvA", _ZNK7WebCore7Element14getAttributeNSERKN3WTF10AtomStringES4_) STUB("lZG-WlKxRqQ", sceKernelGetIdPs) +STUB( + "lZKaugg8K9I", + _ZN7WebCore21ContextMenuController23contextMenuItemSelectedENS_17ContextMenuActionERKN3WTF6StringE) +STUB( + "lZMIEfeKgNU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE5emptyEv) +STUB( + "lZNi6e5cFOw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEEC1Ev) +STUB( + "lZSU6dzjD00", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEplEm) +STUB( + "lZSYF2+1a5g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEmmEv) STUB("lZSZoN8BstI", sceNpTrophySystemRemoveUserData) +STUB("lZVehk7yFok", _ZNSt15basic_streambufIwSt11char_traitsIwEE6xsgetnEPwi) +STUB("lZWmdDoBDmI", _ZN3sce2np13JsonDocParser9GetResultEPPNS0_9JsonValueE) STUB("lZXGcqe2Ulc", scePerfTraceIoGetPosition) +STUB( + "lZhes6eFw5s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("lZjY9R3nheo", _ZN23sceMetadataReaderWriter7LPEntryC2EPKNS_10ParserInfoE) +STUB( + "lZk7sUdUd0Y", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEEiRNS2_10LibContextEPT_m) +STUB("lZlazM1Ei+k", _ZN7WebCore22makeRangeSelectingNodeERNS_4NodeE) +STUB( + "lZn6CgqrCGg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "lZniODH-5yc", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "lZt1JXRrGQc", + _ZN3sce2Np9CppWebApi14SessionManager2V128PostGameSessionsResponseBodyC2EPNS1_6Common10LibContextE) +STUB("lZucg4s3vaE", _ZN7WebCore9HTMLNames20onloadedmetadataAttrE) +STUB("lZybtDrBJ60", _ZNK7WebCore16URLDecomposition6searchEv) +STUB( + "lZz7s7PHJGk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEC2Ev) STUB("lZzFeSxPl08", pthread_setcancelstate) +STUB("lZzLTgdAK00", monoeg_g_shell_unquote) +STUB("lZzcbIX84mc", _ZN3sce2Np9CppWebApi14SessionManager2V124PlayerSessionPushContextD1Ev) +STUB( + "la-Dgw5YZ74", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE5beginEv) STUB("la2AOWnHEAc", sceFontStyleFrameInit) +STUB( + "la2I2HxjLYo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEE7add_refEv) +STUB( + "la3kjzdVTqc", + _ZN8meta_gen11MsvPromoter31setKeyValue_TBLAVC_IconDataTypeENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB( + "la4+P6rRkX0", + _ZN3sce7Toolkit2NP2V210Tournament10getBracketERKNS3_7Request10GetBracketEPNS2_4Core8ResponseINS3_7BracketEEE) +STUB("la8tsQihoRE", _ZNK12video_parser5vpcom6String9GetStringEv) +STUB( + "laB+zowmoro", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE7reserveEi) +STUB("laF+cd2rvw8", _ZN3WTF13printInternalERNS_11PrintStreamEb) +STUB("laFBaDD-wIw", g_list_prepend) +STUB("laKrAmT4Tx8", ucurr_getRoundingIncrement_67) +STUB("laPctmmWhXo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEE7add_refEv) +STUB( + "laPdFGKzumE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("laUc7-fpK-M", WKRenderObjectCopyElementTagName) +STUB("laWD2Cnsl0o", mono_method_get_header) +STUB( + "laX3h-epLJU", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEEiRNS2_10LibContextEPT_m) +STUB( + "labhVn6ah54", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE5beginEv) +STUB( + "laekEj1BFxk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEC2EPKS8_) +STUB( + "laf1bYKfSIA", + _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody16customData1IsSetEv) STUB("lafoiUl5-5U", sceVideoOutGetMonitorInfo) STUB("lagjVl+bHFI", sceNpMatching2GetWorldIdArrayForAllServers) +STUB("lahbB4B2ugY", _Xp_setn) +STUB( + "laiFCovrPnY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEptEv) +STUB("lajqEc1ebOw", delegate_virtual_invoke_imt_13_p) +STUB("laqZEULcfgw", _ZN3sce2np9WorkQueue6CancelEii) +STUB("law08hMff-0", _ZN3NTF6ThreadD0Ev) +STUB("layhczIKTH4", _ZNK3sce2Np9CppWebApi7Matches2V17Subtask15getAvailabilityEv) +STUB("lb+HLLZkbbw", gets_s) +STUB("lb0c0UhEPYg", + _ZN7WebCore4Path14addRoundedRectERKNS_16FloatRoundedRectENS0_19RoundedRectStrategyE) +STUB("lb2fCiLY5Y8", _ZN3JSC7Symbols19executorPrivateNameE) +STUB( + "lb2ugJzMwGM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEC1Ev) STUB("lb8lnYo-o7k", pthread_rwlock_timedrdlock) +STUB("lb9SkRnyXMc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEC2Ev) +STUB("lbB+UlZqVG0", fread) +STUB("lbC468bO8Xs", _ZN9Inspector32ScriptProfilerFrontendDispatcherC1ERNS_14FrontendRouterE) +STUB("lbCypJvTpPg", mono_get_exception_file_not_found2) +STUB("lbD6Fz8inqY", _ZN7WebCore8SVGNames21stroke_miterlimitAttrE) +STUB( + "lbE-mMsdroM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEptEv) +STUB("lbGSXdPdCx4", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEEmmEv) +STUB( + "lbIc1L+tCQw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE21intrusive_ptr_add_refEPS9_) +STUB("lbLEAN+Y9iI", _ZTISt20bad_array_new_length) STUB("lbMccQM2iqc", sceGnmSqttGetTraceCounter) STUB("lbPlT4+QVcE", sceNpUniversalDataSystemEventPropertyObjectSetFloat32) STUB("lbQKqsERhtE", sceDiscMapIsRequestOnHDD) +STUB( + "lbVhPsFnuLY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEEC1Ev) STUB("lbXTXRG5nyM", sceNpSessionSignalingGetMemoryInfo) +STUB("lbarclZ21IU", _ZN7WebCore24FrameDestructionObserver14willDetachPageEv) +STUB( + "lbeyc+YwdUM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEmmEi) +STUB( + "lboI8LzkR9w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE8copyFromERKS9_) +STUB("lbpA1nhwsBQ", uplrules_selectWithFormat_59) STUB("lbtcpd5KoQ4", sceDevUsbTermCP) STUB("lbtk5X1mecw", sceUltSemaphoreRelease) +STUB("lbz5X8Wvmv8", _ZN3JSC4Heap34reportExtraMemoryAllocatedSlowCaseEm) +STUB("lbzfG5J5UTo", _ZN3sce2Np9CppWebApi6Common15DefaultResponseC2Ev) +STUB("lcE6jFKqgJs", _ZN3sce2Np9CppWebApi13InGameCatalog2V55Error9setReasonEPKc) +STUB("lcKHRKrE2sY", _ZN9Inspector32ScriptProfilerFrontendDispatchernwEmPv) +STUB( + "lcKlbwI+Pxs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEEC2ERS9_) +STUB("lcLx31xx-4M", _ZNK9Inspector14FrontendRouter12hasFrontendsEv) +STUB("lcMM4ecaoz0", + _ZN23sceMetadataReaderWriter11gvMp4Parser24gvMp4ParserWriteMetadataERKSsRKNS_8MetadataE) +STUB("lcNk3Ar5rUQ", __udivmodti4) STUB("lcaik1AxwEY", sceSlimglCompositorWaitEndOfRendering) +STUB("lch5VxJgLoA", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13FriendsOfUserEEeqERKS4_) +STUB("lckWSkHDBrY", vfscanf) STUB("lcp9E77DAB4", sceShellCoreUtilTurnOffScreenSaver) +STUB("lcpUikuxzYU", _ZN3JSC11FuzzerAgentD1Ev) +STUB("lcq5jYT-nQ4", mono_aot_System_Web_Servicesunbox_trampoline_addresses) +STUB( + "lcxmQWjHh64", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEED1Ev) +STUB("lcynZT+5c5g", mono_aot_System_Dataunwind_info) +STUB("lczaTIw9Nfc", mono_btls_x509_lookup_shutdown) +STUB("ld+V9lNBhJc", _ZN7WebCore11EventRegionC2Ev) +STUB("ld-zX5i4Y4I", FT_List_Find) +STUB("ld1z8QaWVNw", WKCredentialGetTypeID) STUB("ld396XJQPgM", sceUserServiceGetVolumeForController) +STUB("ld5ffhHlNdU", _ZN3sce7Toolkit2NP2V24Core7Request16ThreadProperties18STACK_DEFAULT_SIZEE) +STUB("ld9LxpZ8Bgw", nn_connect) +STUB( + "ldAAIxkkAQ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEED1Ev) +STUB( + "ldI0D6K7Rko", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("ldLepR7R76Q", mono_profiler_install) +STUB("ldOOluA3VM4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEmmEv) +STUB( + "ldPbYPAf72s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEEptEv) +STUB("ldPj8FDjzds", mono_aot_Sce_Vsh_Registryjit_code_end) +STUB("ldTUu0haP-s", delegate_virtual_invoke_imt_26) +STUB("ldUjuMepZMs", uprv_fabs_67) +STUB("ldVb3lc75PE", wait) +STUB( + "ldXglr-7FtE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE5beginEv) +STUB( + "ldYIizEBvmg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEaSERKS9_) +STUB( + "ldZpUnt1Pe4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEE7get_refEv) +STUB("ldbrWsQk+2A", _LDnorm) +STUB( + "ldfcXtGsxZE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("ldh-wRP6p7M", umsg_vparse_67) +STUB("ldk9m5h+-no", cairo_select_font_face) +STUB("ldpQGkm2Y40", udatpg_openEmpty_67) +STUB( + "ldrI88FHwTo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEE7add_refEv) +STUB( + "ldrcLyWn0yg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEppEi) +STUB("ldtPEMeam7A", GCC_except_table150) +STUB("ldwx4dhgoh8", + _ZNK3sce2Np9CppWebApi14SessionManager2V131JoinedPlayerSessionWithPlatform12getSessionIdEv) +STUB("ldxacgzSYVM", WKBundleRemoveAllWebNotificationPermissions) +STUB("le2uHgGLAg8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEaSERS7_) +STUB( + "le3ppAcjIj8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE4sizeEv) +STUB( + "le4Q+zHQMwA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEE3getEv) +STUB( + "le7O-Sp64Vo", + _ZNK3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsTouchResponseBody18getTouchedDateTimeEv) +STUB("le8u-T8QXYQ", _ZN7WebCore14ScrollableArea19willStartLiveResizeEv) +STUB("leAAh-LWpg8", ulocimp_getCountry_67) +STUB( + "leAzi2gkKR4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE5startEPNS2_10LibContextE) STUB("leCAscipfFY", sceVideodecQueryResourceInfo) +STUB("leDQJqf+kW4", ures_getAllItemsWithFallback) +STUB("leF9RqnCKao", _ZN15AbstractStorage18DailymotionServiceD1Ev) +STUB("leGreHlhkn8", _ZN12video_parser7cVpUtil13vp_ff4_memcmpEPvPKvS3_m) +STUB("leH7VMqozF0", ucnv_extContinueMatchFromU_67) +STUB("leHmVbjHyGw", hb_buffer_get_length) +STUB("leQ97cqzChk", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V110Reputation6toJsonERNS_4Json5ValueEb) +STUB( + "leR-nCyii1Y", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEiRNS2_10LibContextEPT_m) +STUB("leSFwTZZuE4", _ZNKSt8numpunctIwE13decimal_pointEv) +STUB( + "leVzt3Jr5o4", + _ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_34DetailedProductInfoListInputParams9ProductIdEE8max_sizeEv) +STUB("leWppF5NDa8", _ZN7WebCore6RegionC2ERKNS_7IntRectE) +STUB("leX0+XNhZTA", JVM_GetMethodParameters) +STUB("leb67rLpf7M", mono_thread_info_yield) +STUB("ledra0RhS6I", WKPreferencesSetJavaScriptRuntimeFlags) +STUB("lej5-tQeuBE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEED2Ev) +STUB( + "lejx9FFU9mU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEC2EPS8_) +STUB("lekMQNRdlRs", _ZN7bmalloc15IsoHeapImplBasenaEm) +STUB("lewDXU6udNg", _ZN3JSC12iteratorStepEPNS_9ExecStateENS_15IterationRecordE) +STUB( + "leypPkXymaA", + _ZN3sce7Toolkit2NP2V27Ranking15getFriendsRanksERKNS3_7Request15GetFriendsRanksEPNS2_4Core8ResponseINS3_12FriendsRanksEEE) +STUB( + "lf+Rp0JaE0E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEppEv) +STUB( + "lf-27JOia2A", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEixEm) +STUB("lf-7QriZ25o", _ZN3JSC21throwOutOfMemoryErrorEPNS_14JSGlobalObjectERNS_10ThrowScopeE) +STUB("lf-PlNJUJlY", _ZN3sce7Toolkit2NP2V210Tournament7Request19SendUserMatchReportC2Ev) +STUB( + "lf-ei0Fgc3E", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEptEv) +STUB( + "lf0EPhOuS78", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEE11release_refEv) +STUB("lf1+CZw5+2Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEixEm) +STUB( + "lf2OrUSkl4I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEppEi) +STUB("lf45wu5A-5M", WKContextConfigurationCopyCustomClassesForParameterCoder) +STUB( + "lf553q6iass", + _ZN3sce2Np9CppWebApi13InGameCatalog2V516ContainerFactory6createEPNS1_6Common10LibContextEPKcS9_S9_PNS5_12IntrusivePtrINS3_9ContainerEEE) +STUB("lf60TRMaxoA", _ZN7WebCore10FileSystem8moveFileERKN3WTF6StringES4_) +STUB( + "lfB46koAdDs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("lfGEXEw3t3M", g_error_free) +STUB("lfNBwjzvN8E", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE8copyFromERKS7_) +STUB("lfOW+hER3dw", uenum_openUCharStringsEnumeration_67) +STUB( + "lfP6VdrtlDk", + _ZN7WebCore11JSDOMWindow6createERN3JSC2VMEPNS1_9StructureEON3WTF3RefINS_9DOMWindowENS6_13DumbPtrTraitsIS8_EEEEPNS_13JSWindowProxyE) +STUB( + "lfPlG5+Sb04", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEC2EPKS8_) +STUB("lfQMRAQl6kI", + _ZN15AbstractStorage13TwitterFolderC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) +STUB( + "lfQpegKgzsk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("lfUiDOAsDoo", + _ZNK3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody15entryLimitIsSetEv) +STUB("lfW-p07A+ss", JSDebuggerTerminate) +STUB("lfWRbhGF-vQ", WKPageGetSessionHistoryURLValueType) +STUB( + "lfXegnZW0vw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEC2ERS7_) +STUB("lfY0K492DV0", WKDictionaryCreate) +STUB("lfZHuOlEJ-E", ucnv_unload) +STUB( + "lfcxA0thlH8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEC2EPS6_PNS2_10LibContextE) +STUB("lffT20IZO4E", mini_set_debug_options) +STUB( + "lffW3cmEsi8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE8capacityEv) +STUB( + "lfiAOnN2o+Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEC1EPKS8_) +STUB("lflDLnoXcwY", _ZNK3sce2Np9CppWebApi11Matchmaking2V19Attribute7getNameEv) STUB("lfmhZbzP4AY", sceAppInstUtilGetInstallProgressInfo) +STUB("lfoT-NIShRM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredUsersEE3setEv) +STUB( + "lfp+bkXZuks", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("lftcyoraBOU", _ZN9Inspector23CanvasBackendDispatcherD1Ev) STUB("lftdXgkTxmQ", sceAppInstUtilAppGetInsertedDiscMasterDataId) STUB("lg2I8bETiZo", sceUserServiceSetMouseHandType) +STUB("lg5OSzh7wVA", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_6NpUserEEC2Ev) +STUB("lg5Z+eVXA-A", SSL_read) +STUB("lgACxYBCgFw", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session9SessionIdEEC1Ev) +STUB("lgB5kgNjUqY", mono_btls_x509_verify_param_lookup) +STUB("lgC8W0Qu1iw", JSObjectCallAsFunction) +STUB("lgDJj+qaCk0", rgctx_fetch_trampoline_mrgctx_114_p) +STUB( + "lgI1c4wSIoI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEeqERKS9_) STUB("lgITuBsRo2o", sceFiosIOFilterAdd) STUB("lgK+oIWkJyA", sceKernelAioWaitRequests) +STUB( + "lgOudJHuVPg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE3endEv) +STUB( + "lgQt6j1JJt4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEaSERS7_) STUB("lgTlIAEJ33M", sceSystemServiceChangeSamuClock) STUB("lgWSHQ8p4i4", sceVrTrackerSetRestingMode) +STUB("lgWtR4A4EnA", _ZNK3sce2Np9CppWebApi15Personalization2V15Error11reasonIsSetEv) +STUB("lga3Yhyalps", _ZN3JSC12StringObject6s_infoE) +STUB("lgaRYqRh8LU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEC2ERKS7_) STUB("lgbdvT36kTE", sceShellCoreUtilGetPapcGamePcl) +STUB( + "lggucPYeL8E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEE11release_refEv) +STUB( + "lgh04EbMwD0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEptEv) +STUB( + "lgjdThin7JA", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountId17unsetasOfDateTimeEv) +STUB( + "lglI9lJm4g0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEE7add_refEv) +STUB( + "lglrveGgcfQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEC2EPS8_) +STUB("lglxNJd5SVY", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEEdeEv) +STUB("lgmXPGgPjUY", OCSP_basic_verify) +STUB( + "lgsRVNr0ukI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB( + "lgu-GuXVCOo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB( + "lgxgSuLWABU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEED2Ev) +STUB("lh+5Uj6SVzM", _ZN3JSC13DebuggerScope6createERNS_2VMEPNS_7JSScopeE) +STUB( + "lh1woFDehXc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEC1EPNS2_10LibContextE) +STUB("lh4bGXJ1Pl0", WKContextConfigurationSetIgnoreSynchronousMessagingTimeoutsForTesting) +STUB("lh5Sirif1Js", ures_openDirect) +STUB("lh6XyHyme90", + _ZNK3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForRead12playersIsSetEv) +STUB( + "lh7PHoJ0-Aw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEneERKS9_) +STUB("lhA0LxAAXxU", WKContextTerminateStorageProcess) STUB("lhE4XS9OJXs", sceNpTrophyConfigGetTrophyDetails) STUB("lhEIsHzB8r4", sceCameraSetGamma) +STUB( + "lhJWkEh-HXM", + _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE7_GetintERS3_S5_iiRiRKSt5ctypeIwE) +STUB("lhOLsQkhIos", + _ZN7WebCore19InspectorController18disconnectFrontendERN9Inspector15FrontendChannelE) +STUB( + "lhRBOf1F6sQ", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanity22setwebApiFilterRequestENS1_6Common12IntrusivePtrINS3_19WebApiFilterRequestEEE) +STUB("lhRP+ubwkkg", + _ZN9Inspector17BackendDispatcher10getIntegerEPN3WTF8JSONImpl6ObjectERKNS1_6StringEPb) +STUB( + "lhSJCEf8zP0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEEC2ERSA_) +STUB("lhSZLgpu270", SwCtrlManagerEndActivateSession) +STUB( + "lhUQKydA8LU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEmmEi) STUB("lhYCTQmBkds", sceNpPartyInitialize) +STUB("lheZj-eGtIc", t42_driver_class) +STUB("lhfAhLzIjo0", ucal_get_67) +STUB( + "lhg0dYYufZQ", + _ZN3sce2Np9CppWebApi14IdentityMapper2V349PsnWebError_error_validationConstraintInfoFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_42PsnWebError_error_validationConstraintInfoEEE) +STUB("lhgt7StD7RM", SSL_CTX_new) +STUB("lhmUadzsM0I", _ZNK3sce2Np9CppWebApi11UserProfile2V113BasicPresence17onlineStatusIsSetEv) +STUB("lhnrCOBiTGo", isblank) +STUB("lhpd6Wk6ccs", log10f) +STUB("lhqFzLrLMGo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEEC1EPKS6_) +STUB( + "lhrkL+m08oE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEC2ERS7_) +STUB( + "lhzSiFZZ3Ug", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEC2Ev) +STUB("lhzUScLJE8g", _ZNK7WebCore10RenderView15usesCompositingEv) +STUB("li-UXaq92Vo", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia10BroadcastsEEC1Ev) +STUB( + "li1JXs3gccw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB("li1Y-+rCHtY", _ZN3sce2Np9CppWebApi7Matches2V122RequestPlayerStatistic11setPlayerIdEPKc) +STUB("li4G2knb-vI", X509_EXTENSION_get_data) +STUB( + "li4LTaJPHmw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "liH5I6ebn5I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEEC1ERS9_) +STUB( + "liKLWY4RtaQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEC1ERSA_) STUB("liKOlmonGMo", sceHmdGet2dDistortionMap) +STUB("liMyO9v1YBA", _ZN3JSC29createNotEnoughArgumentsErrorEPNS_9ExecStateE) +STUB( + "liN2FU+rj8g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE8pushBackERKS8_) +STUB( + "liN9hcUoG3s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEE7get_refEv) +STUB("liOD0-XlX-c", _ZN3JSC12HeapAnalyzeraSERKS0_) STUB("liPpytPUPMA", sceNpTrophySystemUnregisterTitleSyncedCallback) +STUB("liR+QkhejDk", _ZTIPKDn) +STUB( + "liRmuMcjCFI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE21intrusive_ptr_add_refEPS9_) +STUB("liTcn3EF33g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEC2Ev) +STUB( + "liUqugLNOg4", + _ZN3sce2Np9CppWebApi14SessionManager2V132RequestPlayerSessionMemberPlayer18unsetNonPsnPlayersEv) STUB("libpnl6UIGg", sceSystemLogger2NativeQueueClientCheckAndMaskData) +STUB("lifv9YgJaYc", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody10limitIsSetEv) +STUB("lihFGjz1c-c", WKContextGetStatisticsWithOptions) +STUB( + "lii9JBEdPQw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEaSERS7_) +STUB("lijglP16UQk", mono_security_core_clr_set_options) +STUB("limbVG3jLPY", _ZNK3sce2Np9CppWebApi11UserProfile2V112BasicProfile10getAboutMeEv) +STUB("liocUXUxdHA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEixEm) +STUB("liqE096ThEk", _ZNK7WebCore37BasicComponentTransferFilterOperation14affectsOpacityEv) +STUB( + "livmD7PbL3Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEplEm) +STUB( + "liwmI+ZLFw4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEeqERKS9_) +STUB("lizLVvMOgs4", mono_aot_Sce_Vsh_BackupRestoreUtilunbox_trampolines) +STUB( + "lj4PYRuDKjI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE21intrusive_ptr_add_refEPS9_) STUB("ljBQTMlrdfU", sceNpManagerIntUserSignin) +STUB("ljFisaQPwYQ", wcstoimax) +STUB( + "ljPH2ip9IUI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEE5resetEPS9_) +STUB("ljPTWMFwyIM", _ZN7WebCore4Page41setDOMTimerAlignmentIntervalIncreaseLimitEN3WTF7SecondsE) +STUB( + "ljPuK+ZAPug", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEE7add_refEv) +STUB("ljRSoeZdr5s", _ZNK7WebCore14StaticNodeList4itemEj) +STUB("ljWcRNfZaTU", _ZN12video_parser5vpcom14LwMutexTryLockEPNS0_11sys_lwmutexE) +STUB( + "ljYCJdPg5jU", + _ZN7WebCore17JSDOMGlobalObjectC2ERN3JSC2VMEPNS1_9StructureEON3WTF3RefINS_15DOMWrapperWorldENS6_13DumbPtrTraitsIS8_EEEEPKNS1_23GlobalObjectMethodTableE) STUB("lja0nNPWojg", sceRtcFormatRFC3339Precise) +STUB( + "ljaR4njDJhw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEC2EPKS8_) +STUB("ljacL714xNI", _ZN9Inspector24RuntimeBackendDispatcherD2Ev) +STUB("ljd2tQnZJwk", WKPreferencesSetPluginSandboxProfilesEnabledForAllPlugins) +STUB( + "ljdR544I6ho", + _ZN7WebCore22EmptyFrameLoaderClient30dispatchDidFailProvisionalLoadERKNS_13ResourceErrorENS_19WillContinueLoadingE) +STUB("lje+7Q7rn5U", + _ZN3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsers9terminateEv) +STUB("ljfXt4DhcaQ", _ZN3JSC7Symbols30isSuspendYieldStatePrivateNameE) +STUB( + "ljkbSGgi0H4", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemPropertiesC1Ev) STUB("ljkqMcC4-mk", sceLibcMspaceAlignedAlloc) STUB("ljqnF0hmLjo", sceNpGetSdkVersionUInt) +STUB( + "ljsXC9UzsPY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEdeEv) +STUB("ljtJfOAF-9o", + _ZN3sce2Np9CppWebApi14SessionManager2V113ErrorResponseC2EPNS1_6Common10LibContextE) +STUB( + "ljyVf+V3Du8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE7popBackEv) +STUB( + "lk4xU8SRLYk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEC2EPS6_PNS2_10LibContextE) +STUB("lk6kuq3PXFw", GCC_except_table457) +STUB("lkBELjUMn4k", mono_thread_info_detach) +STUB( + "lkFbXxuaBnE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("lkGkunJMfis", mono_metadata_methods_from_event) +STUB("lkGvBL1ly-Y", _ZN15AbstractStorage13YoutubeFolderD1Ev) +STUB( + "lkJI4eoFJFs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEE3getEv) +STUB("lkKJnS1gDRk", _ZN7WebCore8PositionC1EPNS_4NodeEjNS0_10AnchorTypeE) STUB("lkPny2sBZ7Q", scePssAudSetSurroundPanSpeakerConfig) +STUB( + "lkRMoUPDUsI", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getBoolean8Ev) +STUB( + "lkZVxv-+Mas", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEC2EPS8_) +STUB("lkcoWfBi-Eo", _ZN7WebCore13displayStringERKN3WTF6StringEPKNS_4NodeE) +STUB( + "lklKs6GoULM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEneERKS9_) +STUB("lkqZwKJZ0oo", _ZN7bmalloc15IsoHeapImplBaseD1Ev) +STUB("lkrcJDdhfBI", _ZNK3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeIPcPvEE8max_sizeEv) +STUB("lku-VgKK0RE", __atomic_compare_exchange_4) +STUB("lkuYb67MCJc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEaSERS7_) +STUB( + "lkv4hhr+9MQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE5beginEv) +STUB("lkxCJ3YaY2c", mono_aot_Sce_Vsh_AppInstUtilWrapperunbox_trampoline_addresses) +STUB( + "lkxJE30LpN8", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetAccountId2OnlineId9terminateEv) +STUB("lkxhdb4gfCk", _ZNK3WTF10StringImpl21findIgnoringASCIICaseERKS0_) +STUB("ll5w63kKx+A", ucal_getType_67) +STUB("ll73ctBXNkA", uspoof_getSkeletonUTF8_67) STUB("ll8I9K4RtUM", sceKernelAllocateDirectMemoryForMiniApp) +STUB("ll99KkqO6ig", + _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE5_FputES3_RSt8ios_basecPKcm) +STUB("llD6Bs1Iec4", _ZN7WebCore26ContextDestructionObserverD0Ev) +STUB( + "llDM5hiwQ6c", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE3endEv) +STUB( + "llEv9S7m1vo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEEC2EPS7_PNS2_10LibContextE) +STUB("llISO4CgRb8", WKPageGetProcessIdentifier) +STUB( + "llJ2L0q0yLs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEED2Ev) STUB("llKD7L4jVTw", sceDeci4hDrfpStat_fuse) +STUB( + "llULfDKMqXw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEC2EPNS2_10LibContextE) +STUB( + "llUUMzniZ5U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEE11release_refEv) STUB("lliK9T6ylJg", sceNpTusAddAndGetVariableVUserAsync) +STUB("lljx752rt6o", cpp_demangle_read_expression) +STUB( + "llkh6GoJMk4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEplEm) +STUB( + "llqvU8ojZpg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEppEi) +STUB( + "llqy4dIRDBQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE4sizeEv) +STUB("llqyCSrI+PE", mono_class_get_type_token) +STUB( + "lluK-yGKRAw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEneERKS9_) +STUB("llxMK1-0YkE", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V116TaskAvailabilityEEC2Ev) STUB("lm+1oyWKwy0", sceVideoOutAddBufferAnisoPrivilege) +STUB( + "lm0XNGEXCqk", + _ZN9Inspector20DOMBackendDispatcher29pushNodeByBackendIdToFrontendElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("lm15-w9hKWY", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEEppEi) STUB("lm6T1Ur6JRk", sceVrTrackerGetLiveCaptureId) +STUB("lm7aLkrD1aI", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_10TrophyInfoEE17getAdditionalInfoEv) +STUB("lm87PHf4mDQ", u_getIntPropertyMaxValue_67) +STUB( + "lm9k5JtiT5o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "lmEMJXw+6r0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEE7get_refEv) +STUB("lmGv-MMf+b0", _ZTVN7bmalloc15IsoHeapImplBaseE) +STUB( + "lmLR3cQVt0U", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("lmb3oBpMNPU", + _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewy) +STUB("lmdT7cmETN8", access_mem) +STUB( + "lmevD-xVdGA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEED1Ev) +STUB("lmieh+K7+7o", gsharedvt_trampoline) +STUB( + "lmima8meJtc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEcvbEv) +STUB( + "lmjh8pQW6qA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEEC2ERSA_) +STUB( + "lmrMIlbRNdU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE7reserveEi) +STUB("lmrUFMwBGMo", _ZN12video_parser13cVideoPathMnvC2EPKc) +STUB("lmvLKteDg+Q", _ZN7WebCore12NamedNodeMap17removeNamedItemNSERKN3WTF10AtomStringES4_) +STUB( + "ln+Ij9Rlq-s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "ln1jHBy0wN0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("ln23C1hwb5o", CRYPTO_THREADID_set_numeric) +STUB("ln25S0X-S08", curl_mime_filedata) +STUB("ln2t1Lz90zs", rgctx_fetch_trampoline_mrgctx_12) STUB("ln33zjBrfjk", sceGnmGetTheTessellationFactorRingBufferBaseAddress) +STUB("ln4FHEULB50", Java_com_sony_gemstack_org_dvb_application_AppProxyImpl_n_1startWithArgs) +STUB("ln52C++0GH0", _ZN7WebCore10FileSystem18makeAllDirectoriesERKN3WTF6StringE) +STUB("ln8IwqIWE4I", PSNowGetStreamingStatus) +STUB("lnCNKs85dRg", rgctx_fetch_trampoline_rgctx_80) STUB("lnHFrZV5zAY", sceSslShowMemoryStat) +STUB("lnJiyHeMGUw", + _ZN9Inspector17BackendDispatcher9getObjectEPN3WTF8JSONImpl6ObjectERKNS1_6StringEPb) +STUB( + "lnMqUBhn+Lc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("lnOqjnXNTwQ", _ZNSt14numeric_limitsIbE8digits10E) +STUB("lnWMwXiWM00", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEC2Ev) +STUB( + "lnWey3kb00A", + _ZN7WebCore8Document7writelnEPS0_ON3WTF6VectorINS2_6StringELm0ENS2_15CrashOnOverflowELm16ENS2_10FastMallocEEE) +STUB( + "lnXkUfK0jvQ", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Console14ConsoleMessage5LevelEEESt8optionalIT_ERKN3WTF6StringE) +STUB("lnaMfsRbwE0", _ZN9Inspector22InspectorDebuggerAgent19registerIdleHandlerEv) +STUB("lnhZ1Sjisfo", _ZNK3WTF9MediaTime11toTimeScaleEjNS0_13RoundingFlagsE) +STUB( + "lnv+cWWra+4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE8capacityEv) +STUB( + "lo6Q8Or8HRY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEEaSERKSA_) +STUB( + "lo6d-8UORxI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEEC2EPS8_PNS2_10LibContextE) STUB("loCKwHzog0s", sceCesEucKrToUtf16be) +STUB( + "loCb8kE1oP0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEED1Ev) +STUB( + "loCiEIPBeZY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEaSERKS9_) +STUB("loDtTJwIi70", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE5emptyEv) STUB("loE6cNuCUtk", sceVrSetupDialogOpen) +STUB("loEDv3wwKmc", EVP_CIPHER_CTX_ctrl) +STUB( + "loGYQUR8n4o", + _ZN9Inspector23WorkerBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) STUB("loIvEsvUejI", sceSpNetEpollControl) +STUB("loO7FEttses", WKBundlePageClickMenuItem) +STUB("loOqgl+rcV8", mono_mempool_invalidate) +STUB("loQed61sd6c", _ZN7WebCore19JSAnimationTimeline6s_infoE) STUB("loR8ypxf43E", sceLibcMspaceReportMemoryBlocks) +STUB("loRNMMI+BV4", _ZN7WebCore20ResourceResponseBase19setTextEncodingNameERKN3WTF6StringE) +STUB("lod4jBYhro0", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_23NpSessionInvitationInfoEEC2Ev) +STUB("log6zy2C9iQ", _ZNSt6_MutexC2Ev) +STUB( + "loqc6LQ33rE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE21intrusive_ptr_sub_refEPS7_) STUB("losEubHc64c", scePthreadMutexattrGetpshared) +STUB( + "lovZ5a3DvII", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE8capacityEv) +STUB( + "loxG5S82Bks", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEEC2ERKSA_) +STUB( + "lp-1T5bORvY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEmmEi) +STUB("lp5VHutyQWk", _ZN3sce7Toolkit2NP2V28Presence8PresenceD2Ev) STUB("lp7vzwISXMg", sceNpInGameMessageCheckCallback) +STUB( + "lpALnihHtiM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEmmEi) +STUB( + "lpAoheE4ZHM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE21intrusive_ptr_add_refEPS9_) +STUB("lpCTPZZg-B0", _ZN3sce7Toolkit2NP21InvitationDataRequestC2Ev) +STUB("lpJ3zhgftCg", BIO_free) +STUB( + "lpLcwR1zVOk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("lpM48Bj6GmE", rgctx_fetch_trampoline_mrgctx_87_p) STUB("lpMP8HhkBbg", scePthreadAttrGetinheritsched) +STUB( + "lpOmVz46-4M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEC2EPS8_) +STUB( + "lpWc0uqmGOs", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V127ReputationPropertiesFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_20ReputationPropertiesEEE) +STUB("lpZ3yCy11bo", _ZNK7WebCore18HTMLMarqueeElement12scrollAmountEv) +STUB( + "lplqoQUKtEw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEC1Ev) +STUB( + "lpn+juamid0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEED1Ev) +STUB("lpoACXuNeLk", _ZN3sce2Np9CppWebApi7Matches2V120RequestTeamStatistic9setTeamIdEPKc) +STUB( + "lpoD+BME6Xc", + _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody21setUserCenteredAroundERKNS1_6Common12IntrusivePtrINS3_4UserEEE) +STUB( + "lppAGV7lrVQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEEC2ERKSA_) STUB("lpr66Gby8dQ", sceNpCalloutStartOnCtx64) STUB("lpsXm7tzeoc", sceSystemGestureGetTouchEventByEventID) +STUB("lpygKbzSFp8", mono_aot_Mono_CSharpplt_end) +STUB("lpzpfxBrbzI", ucal_clearField_67) STUB("lq0Anwhj0wY", sceNpTusGetMultiUserDataStatusForCrossSaveAsync) +STUB("lq2rHnIbp68", Java_java_io_UnixFileSystem_setLastModifiedTime) +STUB("lq3OcPBgH1M", jpeg_write_m_byte) +STUB("lq9ADoMECUM", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13WhoLikedStoryEEC2ERKS4_) +STUB("lqCgNLJHlw0", _ZN7WebCore16HTMLImageElement8setWidthEj) STUB("lqHsrpuW4MI", sceMatUnregisterOwnerAndResources) +STUB("lqIENnevxcI", _ZN3sce7Toolkit2NP10IdDatabase21getCommsIdsForServiceENS1_11ServiceTypeE) +STUB( + "lqKvihKAQz8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEEC2ERSA_) STUB("lqPT-Bf1s4I", sceHmdInternalCrashReportOpen) +STUB( + "lqX9b80Qbao", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE3endEv) +STUB("lqYBFrbQa9c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEEaSERKS7_) +STUB("lqYSVZfCuD4", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V515ContainerRating6toJsonERNS_4Json5ValueEb) +STUB( + "lqZ+eCZ0nw4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "lqbeU3cYgXA", + _ZN3sce2Np9CppWebApi7Matches2V121ResponseMemberFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_14ResponseMemberEEE) +STUB("lqeZJNlw8C4", _ZNK3sce7Toolkit2NP9Utilities10FutureImpl9hasResultEv) +STUB( + "lqhAf3IR2vo", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification16NewInGameMessageEE12deepCopyFromERS8_) +STUB("lqio+NIqabk", _ZN12video_parser5vpcom4path5SplitERKSsRSsS4_) +STUB( + "lqoiDP91470", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEC1ERS7_) +STUB( + "lqrremlMYhQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEppEi) +STUB("lqye4eoi5nI", _ZN3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse19unsetTotalItemCountEv) +STUB( + "lqzAmVK2At0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEEC2ERSA_) +STUB("lr0Hd+KZqY0", _ZN3sce2Np9CppWebApi13InGameCatalog2V57ProductD1Ev) +STUB( + "lr37dAskB7w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEC2EPS6_PNS2_10LibContextE) STUB("lr4DyEbLGBA", sceAppInstUtilAppCancelUnInstall) +STUB("lr4gkFj8XKg", _ZN3sce7Toolkit2NP2V27Session20LocalizedSessionInfoC1Ev) +STUB( + "lr6ZK090edk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) STUB("lr96Z2yBPtk", sceDeci4hDrfpCalcEntlistSize) +STUB("lrAjHpnIZpU", _ZN7WebCore12ISOWebVTTCueC2ERKS0_) +STUB("lrDE3GJRDlU", _ZN3sce7Toolkit2NP2V212ActivityFeed5MediaC1Ev) +STUB("lrH5mZyNiuA", WKBundleGetDiskCacheStatistics) STUB("lrH9rFkouoY", sceMbusDebugGetDeviceInfo) +STUB("lrHVkbhs4UI", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy15TrophyPackGroupEE12deepCopyFromERS7_) +STUB("lrKNEr+8Ilk", _ZNK7WebCore25DropShadowFilterOperation5cloneEv) +STUB( + "lrL32UErZa0", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersaSERS5_) +STUB("lrNcuFwunPw", _ZNK3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15Error9codeIsSetEv) STUB("lrPF-kNBPro", sceUserServiceGetSharePlayFlags) +STUB("lrQSsTRMMr4", _ZSt7_MP_GetPy) +STUB("lrRR4IGYYpA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ResponseCooperativeResultEEC1Ev) +STUB( + "lrTWv4cBBjc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEC2EPKS8_) +STUB( + "lrYP8GG1KJQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEEcvbEv) +STUB("lrYl5U+ryl0", WKPreferencesSetRequestAnimationFrameEnabled) +STUB( + "lrd9iJlFJdo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEC1EPS8_) +STUB( + "lrfClJLnSsE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEE7add_refEv) STUB("lrjFx4xWnY8", scePadSetForceIntercepted) +STUB("lrp9PxyOwm4", mono_aot_Sce_Vsh_VoiceAndAgentunwind_info) +STUB("lrpe0uiQe1k", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEEC1ERKS7_) STUB("lrswogWNZyM", sceProprietaryVoiceChatHelperTerminate) +STUB( + "ls1BBy367tw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEppEv) +STUB( + "ls2V7XoWLJU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEC1EPNS2_10LibContextE) +STUB("ls2sUrwLiV0", mono_debug_enabled) STUB("ls4jfY576lw", sceAgcDriverGetResourceUserData) +STUB( + "ls7bkpiLH8Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEC2Ev) +STUB("ls8GrkE8nr8", _ZNK7WebCore21HTMLOptionsCollection13selectedIndexEv) +STUB("ls8yIODZmzc", _ZN3sce2np9HttpTransD1Ev) +STUB( + "lsAWzF2hQEg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("lsBWl8HgZSs", _ZNK7WebCore19ResourceRequestBase15httpHeaderFieldENS_14HTTPHeaderNameE) +STUB("lsG3aurAqHg", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyD2Ev) +STUB( + "lsKrZMQFuvI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE4sizeEv) +STUB("lsKulh+FqBc", udata_swapDataHeader) +STUB("lsMB2OXXR-Q", _ZN7WebCore13HTTPHeaderMapC2Ev) +STUB("lsMWX5igqyc", _ZTVN7WebCore23ScaleTransformOperationE) +STUB("lsUORZxXYDQ", _ZN7WebCore17CredentialStorage3getERKN3WTF6StringERKNS_15ProtectionSpaceE) +STUB( + "lsVHnGx+qWM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE6resizeEj) +STUB("lsZ2Sh45Brk", _ZN3JSC18GCActivityCallback11cancelTimerEv) +STUB("lsbUGZCjQy8", + _ZN4IPMI4impl10ClientImpl16invokeSyncMethodEjPKNS_8DataInfoEjPiPNS_10BufferInfoEj) STUB("lsc8IlEjXhI", sceKernelEnterSblock) STUB("lsdxBeRnEes", sceUserServiceSetGlsIsTwitterEnabled) +STUB("lsoHI3p77nU", MD4_Init) STUB("lsog-msx-Qk", sceHandDetectionGetDefaultParam) +STUB("lswCEnBeLyA", ubidi_getJoiningType_67) +STUB("lswnCQS09uk", _ZN7WebCore9TimerBase5startEN3WTF7SecondsES2_) +STUB( + "lt+08cJYtIk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE8pushBackERKS8_) +STUB( + "lt+XM9jsvss", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEeqERKS9_) +STUB("lt0gjueRd54", _g_sceLibcExitflag) +STUB("lt0mLhNwjs0", _ZTISt14overflow_error) +STUB( + "lt1kMXuL2io", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEppEv) +STUB("lt3J4dPvEtM", _ZN3sce4Json6Object4PairC2ERKNS0_6StringERKNS0_5ValueE) STUB("lt7eNuXpw8Q", sceSystemServiceUsbStorageRegisterCallbackForMapAvailable) +STUB("lt8Gm2xNRMI", WKBundleClearApplicationCacheForOrigin) +STUB( + "ltAk9wfMIjI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEEcvbEv) +STUB( + "ltCOlFp0DhU", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser15getmemberFilterEv) STUB("ltCfaGr2JGE", pthread_mutex_destroy) +STUB("ltDbbPaL9ac", __sync_lock_test_and_set_16_internal) +STUB("ltDpo4Q53sY", _ZN3sce2Np9CppWebApi11Matchmaking2V19SubmitterD2Ev) +STUB("ltGxpBPyaAI", _ZN7WebCore9DOMWindow8locationEv) +STUB("ltIp-28VfjA", mono_aot_Sce_Vsh_GriefReportjit_got) +STUB("ltRLAWAeSaM", _ZTIDh) +STUB( + "ltSTT0UYD+o", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEptEv) +STUB( + "ltVqibb-mn4", + _ZN3sce2Np9CppWebApi14SessionManager2V162PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_55PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEE) STUB("ltWdd+agvD0", sceFiosFHReadvSync) +STUB( + "ltXl3WqN-JE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("ltbkYHlLvXw", _ZN7WebCore20ResourceResponseBase6setURLERKNS_3URLE) +STUB("ltdh7ya6DHE", Java_com_oracle_bluray_ui_FAAComponentHelper_waitVblank) +STUB( + "ltf2mxxxUK0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE6resizeEj) +STUB("ltgaNmuCMn4", WKPreferencesSetICECandidateFilteringEnabled) +STUB("ltmtp+OUhbk", mono_aot_Sce_Vsh_Accessor_Dbjit_got) +STUB( + "ltogn0y4gpk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("ltsRiUsRsVE", _ZN3sce7Toolkit2NP2V26Friend7Request19GetFriendsOfFriendsD2Ev) +STUB("ltz+EXNZnww", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEEaSERSA_) +STUB( + "ltzbvI1vtcE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEEaSERSA_) +STUB("lu+-cUzjmcU", _ZN3sce7Toolkit2NP2V29Challenge7Request13SendChallengeC2Ev) STUB("lu1qC5eP52A", sceAppInstUtilGetSubAppTitleIdForSP) +STUB( + "lu22xnp2l5I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE6resizeEj) +STUB( + "lu68yY75blI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEptEv) +STUB( + "lu775oSCss0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE4sizeEv) STUB("lu9I7jnUvWQ", sceHmdInternalSetDemoMode) +STUB("luANJkMd9CI", _ZNK3sce2Np9CppWebApi6Common8IteratorIiEeqERKS4_) STUB("luAVKwTECVQ", sceNpSnsIntYtGetTitleAccessToken) +STUB("luJN01QyrnE", + _ZN3sce2Np9CppWebApi14SessionManager2V129PostPlayerSessionsRequestBody17getPlayerSessionsEv) +STUB("luLH2PzqTIM", _ZN7WebCore24ImmutableStylePropertiesD2Ev) +STUB("luMlXp-022c", WKKeyValueStorageManagerGetModificationTimeKey) +STUB( + "luQyI5i2GK0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE6resizeEj) +STUB("luULJAkiLXg", _ZN3sce2Np9CppWebApi12Leaderboards2V14UserC1EPNS1_6Common10LibContextE) +STUB("luXC7N4AUUk", WKUserMediaPermissionRequestAllow) +STUB( + "luYHgRKzlGk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEEdeEv) +STUB( + "luaN6xA1bn8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEneERKS9_) +STUB( + "lubNiMYxAwM", + _ZN9Inspector18InjectedScriptBase15checkCallResultERN3WTF6StringENS1_6RefPtrINS1_8JSONImpl5ValueENS1_13DumbPtrTraitsIS6_EEEERNS4_INS_8Protocol7Runtime12RemoteObjectENS7_ISC_EEEERNS1_8OptionalIbEERNSG_IiEE) +STUB( + "luc9EbZ-YAQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEED1Ev) +STUB("lucmy0T5yYw", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10ContainersEEC2Ev) +STUB( + "ludyIYwcPDs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEcvbEv) +STUB("ludyUJShlO0", + _ZN7WebCore37CrossOriginAccessControlCheckDisabler39setCrossOriginAccessControlCheckEnabledEb) +STUB("lueAbOqz2Kc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEEmmEi) +STUB( + "luf3Hn69K04", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEC1ERKS7_) STUB("luqF4m0EjWA", sceNpGriefReportInit) +STUB( + "lurIhUVgRiY", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_15PlayedWithStoryENS1_15AppSTLAllocatorIS5_EEEEC1Ev) +STUB("lux7n+Xa3Hc", _ZN3JSC7Symbols35stringIteratorFieldIndexPrivateNameE) +STUB( + "luxAKVOa2KA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE21intrusive_ptr_sub_refEPS7_) +STUB( + "luzd+DEBZPk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "lv5g-R1jUWU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEED2Ev) +STUB( + "lv6o+bEwlK8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEEaSERKSA_) +STUB( + "lv8shXa7WLQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEC1EPKS8_) STUB("lvD71jP2Mnk", sceKernelMunlockall) +STUB("lvDhwhUC05E", _sendto) +STUB( + "lvMnrGOy-Lo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEEaSERSA_) STUB("lvNClhNHzxI", sceVoiceQoSCreateLocalEndpoint) +STUB("lvNe25HT2m4", mono_aot_Sce_Vsh_Accessorplt_end) +STUB( + "lvNklfLY5kA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEED2Ev) +STUB( + "lvUU-CFWGd8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEED2Ev) +STUB("lvVs5XsGkaU", __asan_stack_free_7) STUB("lvWMW6vEqFU", sceAudio3dCreateSpeakerArray) +STUB("lvdDd40gEWs", + _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse22setLastPausedTimestampEPKc) STUB("lvek8w7yqyE", sceNpHeapGetAllocator) +STUB( + "lvljpaO7euQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE5beginEv) +STUB( + "lvo0kRKvkW4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEEaSERKSA_) +STUB( + "lvohNRoP+vs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEC2EPS8_) +STUB("lvsjPQ8LMH0", LoginMgrInitialize) +STUB( + "lvsv4Apsv64", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEEptEv) +STUB( + "lvvSKVeGhUg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEC2EPNS2_10LibContextE) +STUB("lvvY3mc5Vss", WKContextResetServiceWorkerFetchTimeoutForTesting) +STUB("lvw1tvNIyoU", + _ZN7WebCore17PageConsoleClient10countResetEPN3JSC14JSGlobalObjectERKN3WTF6StringE) +STUB( + "lvwFXWlefao", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEE21intrusive_ptr_sub_refEPS7_) +STUB("lw+2zs8ZHm0", mono_method_get_index) +STUB( + "lw--Qf5v6ws", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB( + "lw0ha6jnVCE", + _ZN3sce2Np9CppWebApi14ConnectAccount2V215AccountLinksApi28ParameterToDeleteAccountLink12setpartnerIdEPKc) STUB("lw0qrdSjZt8", sceAudio3dPortAdvance) +STUB( + "lw6arVBrcoM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("lw7Gi6FPEas", il2cpp_resolve_icall) +STUB("lw7JZzZnxX8", unum_close_67) +STUB("lw7iv+4KiV4", _ZTVN15AbstractStorage14YoutubeContentE) +STUB("lwLheZe67v0", WKRelease) +STUB("lwMQRl1HNIw", _ZN3sce2Np9CppWebApi7Matches2V113RequestMember11setPlayerIdEPKc) STUB("lwQpbDXKpbg", sceRegMgrDrvGetEntCnt) STUB("lwS-7y3jcBI", sceAmprAmmSubmitCommandBuffer) +STUB( + "lwSGEuJJb+A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "lwXslYdmjdU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEC2EPS6_PNS2_10LibContextE) +STUB("lwZZL1IghHU", _ZN10Deprecated12ScriptObjectC2EPN3JSC14JSGlobalObjectEPNS1_8JSObjectE) +STUB("lwcQhAJGEww", _ZN3JSC8JSBigInt6s_infoE) +STUB( + "lwdJ69Qb0IQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEEC1ERKSA_) +STUB("lwmLIBmmvCY", _Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm13IaPerfCounterE) +STUB("lwuZGYakEII", mono_aot_Mono_Data_Sqlitemethod_addresses) +STUB("lx9ZDEcHdMY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session8SessionsEED1Ev) +STUB( + "lxBxdehoyCc", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsC1EPNS1_6Common10LibContextE) STUB("lxFUVuXU8-s", sceDataTransferTargetRequestSendSsoNew2Old) +STUB("lxH0PZ+dW2E", _ZN7WebCore18AdClickAttribution22parseConversionRequestERKN3WTF3URLE) +STUB( + "lxLmA2gareo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEC2EPKS8_) STUB("lxNDPDnWfMc", sceNpTusGetMultiUserDataStatusA) +STUB( + "lxNt+gaRxqk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEplEm) +STUB( + "lxPYcFwFTaI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE5clearEv) +STUB("lxQejsuYyCw", _ZN3sce2Np9CppWebApi7Matches2V119RequestInGameRoster10unsetTeamsEv) +STUB( + "lxVugIkqghw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE7popBackEv) +STUB("lxXflJT5qpo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEEC2Ev) +STUB("lxail8CxrHk", curl_multi_timeout) +STUB( + "lxeSW7DArbs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEEC2ERKSA_) STUB("lxkF5aDz8Vg", scePktMgrRecvDeciPacketBySocket) +STUB( + "lxmFR-5pepY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEED1Ev) STUB("lxo162czs6I", sceAvSettingGetHdmiConnectDisconnectNum) STUB("lxtHJMwBsaU", sceNpWebApi2PushEventRegisterPushContextCallback) +STUB("lxtXq6qmrC8", _ZN4IPMI4impl10ClientImplD2Ev) +STUB("lxwnew9-clE", _ZN7WebCore8Document19removeAudioProducerERNS_13MediaProducerE) +STUB("ly+OVnm43zM", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEED2Ev) +STUB("ly+dhAI5ijY", delegate_virtual_invoke_27_p) +STUB("ly0dUDP-HEM", _ZN3sce7Toolkit2NP2V24Auth8AuthCodeD1Ev) +STUB("ly6mnTvew0U", _ZN7WebCore13JSDOMRectList15subspaceForImplERN3JSC2VME) +STUB( + "ly7tin0mTNc", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanity9setlocaleEPKc) +STUB( + "lyCmYr5pbZU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEC2Ev) +STUB( + "lyDzpTI5dWM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEED2Ev) +STUB("lyGfjqRqFDo", _ZTIPKg) +STUB( + "lyKbR8AEuG4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE3endEv) +STUB("lyNTbSBDvZU", bemp2sys_tsdecoder_sendmessage) STUB("lyPvxnyBgdY", sceLibSecureHashDeleteContext) +STUB("lyTHl5vwovw", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils16NetStateDetailedEE3getEv) +STUB( + "lyUHliB6-6s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEE5resetEPS9_) +STUB( + "lyZ7mGQgUAE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEmmEv) +STUB("lybUu1ZmtaI", _ZN3JSC18GCActivityCallbackC2EPNS_2VME) +STUB("lybyyKtP54c", readdir) +STUB( + "lydPjwJQufI", + _ZN3sce2Np9CppWebApi7Matches2V120RequestMemberFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_13RequestMemberEEE) +STUB( + "lyijf5pPuTQ", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToSetMultiVariablesByUser12setaccountIdEPKc) +STUB( + "lyn9n3NduIc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE3endEv) +STUB("lynApfiP6Lw", _ZNKSt7codecvtIDsc9_MbstatetE9do_lengthERS0_PKcS4_m) +STUB("lyoey7tZKJA", _ZN3sce2Np9CppWebApi6Common8IteratorIdEppEv) +STUB("lz5UM9uG8w0", _ZN9Inspector22HeapFrontendDispatcherdlEPv) +STUB( + "lz6fjs6eWdo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE5clearEv) STUB("lz9y9UFO2UU", sceFontSetupRenderEffectSlant) +STUB("lzEtlJdFYEI", _ZN9Inspector22InspectorDebuggerAgent21breakpointActionSoundEi) +STUB("lzHk963BL7g", _ZN7WebCore9FrameView28enableFixedWidthAutoSizeModeEbRKNS_7IntSizeE) +STUB("lzIgWzHltTc", _ZNK3sce7Toolkit2NP2V24Core11RequestBase14getServiceTypeEv) +STUB( + "lzJ9mi2It84", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE3endEv) +STUB("lzK3uL1rWJY", _ZNSt8numpunctIwED1Ev) +STUB("lzNKOm6wYLI", Java_org_havi_ui_HFontCapabilities_initIDs) +STUB("lzNy6QrJNW8", _ZN7WebCore28InspectorFrontendClientLocal11showConsoleEv) +STUB("lzOSUf59fmE", UCNV_TO_U_CALLBACK_SUBSTITUTE_59) +STUB("lzPV+a7qECs", _ZN3sce2Np9CppWebApi6Common6VectorImE8pushBackERKm) +STUB( + "lzQbeGRk5gU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEC2Ev) +STUB("lzSYY9OcCZE", _ZN23sceMetadataReaderWriter8KeyValue8allocateEPFPvmEPi) +STUB("lzY-wSdzA1A", rgctx_fetch_trampoline_rgctx_6) +STUB( + "lzaBmnJtK+c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEC1Ev) +STUB( + "lzcQ0kaDth0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEneERKS9_) +STUB( + "lzcQmfnbKVg", + _ZN9Inspector25DebuggerBackendDispatcher18setBreakpointByUrlElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("lzdADYp6Jvg", _ZN3WTF11Persistence5CoderINS_12AtomicStringEE6decodeERNS0_7DecoderERS2_) +STUB( + "lzhZag9cwvM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEeqERKS9_) +STUB("lzhbv9-IQMU", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessionsC2Ev) +STUB( + "lzmaJ-EKM4A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEC2Ev) +STUB( + "lzr5DruFJoo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEmmEi) +STUB("lzs6jNvh9qw", _ZN7WebCore11MediaPlayer18didLoadingProgressEv) +STUB( + "m+-8X5h0vBM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE8capacityEv) +STUB("m+-AT4JRFBw", _ZN3WTF14AtomStringImpl10addLiteralEPKcj) +STUB( + "m+-F0O+9J1c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEppEv) +STUB( + "m+-p7OuQbLs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE21intrusive_ptr_sub_refEPS9_) +STUB("m+3cpksNpBg", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_6NpUserENS1_15AppSTLAllocatorIS5_EEEED1Ev) +STUB("m+4j6LsJjs0", ublock_getCode_59) STUB("m+4tDzhqnRo", sceAvControlSetHdmiGamutMetadata) +STUB("m+555jaUwPo", _ZN12video_parser13cVideoPathMgv16GetMaclistSuffixEv) +STUB("m+9pmB8r2WE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEEeqERKS7_) +STUB( + "m+DUqqc62GM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEE7get_refEv) +STUB("m+Ju06sMg5k", _ZN9Inspector29AuditBackendDispatcherHandlerD0Ev) +STUB( + "m+PhcyE2DYY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "m+QFDkPo5PY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEppEv) +STUB("m+RVz5IXZkM", + _ZN3JSC20throwGetterTypeErrorEPNS_14JSGlobalObjectERNS_10ThrowScopeERKN3WTF6StringE) +STUB( + "m+T7Cotw794", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "m+U7L1JFVAM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEEC1Ev) +STUB("m+dAaZ5pyO4", _ZNK3sce2np10JsonNumber6GetNumEPcm) STUB("m+fYyX8oFqw", sceAmprAmmMeasureAmmCommandSizeMapWithGpuMaskId) +STUB( + "m+jd1UDw2Jk", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("m+n3kAr27t8", _ZNSt9basic_iosIcSt11char_traitsIcEED2Ev) +STUB("m+r54tLVz7U", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEED1Ev) +STUB("m+w6RjpjFXc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEED2Ev) +STUB("m+xB1LOH8Ig", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V15OwnerD2Ev) +STUB( + "m+yhnWW8Fvw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE6insertENS2_8IteratorIS6_EERKS6_RS9_) STUB("m+yord8iazk", sceShellCoreUtilStartShutdownTimer) +STUB( + "m+zt04VWTRQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEC2EPNS2_10LibContextE) +STUB( + "m-+qM6c1sfg", + _ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead21setSupportedPlatformsERKNS1_6Common6VectorINS5_6StringEEE) +STUB("m-7cQfah6KY", glGetProgramiv) +STUB( + "m-9G9mQmUMs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEC2EPNS2_10LibContextE) +STUB( + "m-Bb1F7pKeA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V112StatsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5StatsEEE) +STUB("m-Bu5Tzr82A", _LSin) +STUB( + "m-BxVsuaJzk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEEC1ERSA_) +STUB( + "m-DKSM-v7eA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "m-Dk1XfLKmk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEdeEv) +STUB("m-FWe3HamOc", _ZNK7WebCore12SharedBuffer3endEv) STUB("m-I92Ab50W8", sceNpCommerceDialogTerminate) +STUB("m-J+WwCWVCQ", _ZN3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap14unsetIsCurrentEv) +STUB("m-LAEhzNJdE", izrule_isEquivalentTo_67) +STUB( + "m-LZsVGn3u4", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessions28setxPsnAcceptPlatformNamePs5ENS5_25XPsnAcceptPlatformNamePs5E) +STUB("m-LsKHQetWI", Java_com_sony_bdjstack_system_BDJModule_invokeTitleCallback) STUB("m-OL13q8AI8", sceHttp2GetAuthEnabled) STUB("m-S3-C-USvs", sceContentSearchSearchApplication) +STUB("m-VsMMa8Mqo", curl_easy_unescape) +STUB( + "m-Y0N7i0LnY", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessions33unsetxPSNSESSIONMANAGERACCOUNTIDSEv) +STUB( + "m-YORAAlSFg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEE3getEv) +STUB("m-aLrxrcxzA", _ZN9Inspector14InjectedScript13setEventValueEN3JSC7JSValueE) +STUB( + "m-dmJ1M4I4w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEC1EPS6_PNS2_10LibContextE) +STUB("m-fSo3EbxNA", _ZdaPvRKSt9nothrow_t) +STUB("m-g4fU+c+yk", mono_class_get_field_from_name) +STUB( + "m-jEOGXOtRw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEE11release_refEv) +STUB( + "m-jQqJLXYdY", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB( + "m-mTKFwmmbo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEptEv) STUB("m-oV1ryNAqA", sceMbusCheckEvent) +STUB("m-tIQ1lTREo", _ZN15AbstractStorage17DailymotionFolder5CloseEv) +STUB( + "m-wOm6mvBP4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEE11release_refEv) STUB("m-zPyAsIpco", sceSslEnableOption) +STUB( + "m-zq4GJkoLQ", + _ZN3sce2Np9CppWebApi14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyD1Ev) +STUB( + "m-ztfk5iCBs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE4sizeEv) +STUB("m0-OOMOcsKc", _ZN3sce2Np9CppWebApi14SessionManager2V123MemberWithMultiPlatformD2Ev) +STUB("m0O4vgMwizw", _ZN3sce7Toolkit2NP2V27Session7Request17ConsumeInvitationC1Ev) +STUB( + "m0Q+3otf0Xg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("m0W-otemmUw", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIfEC2Ev) +STUB("m0YuV8Bys6A", _ZN3JSC17createSyntaxErrorEPNS_9ExecStateERKN3WTF6StringE) +STUB("m0alrQTxjRI", _ZN7WebCore21DiagnosticLoggingKeys22backNavigationDeltaKeyEv) +STUB("m0bTFPN3yzk", EVP_PKEY_new_mac_key) +STUB("m0bqvvAjp2Y", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V117ResponseMatchTypeEEppEv) +STUB("m0cZWkr9kQQ", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setBoolean2ERKb) +STUB("m0f6FvURb3A", _ZN3JSC7Symbols25generatorStatePrivateNameE) +STUB("m0iS6jNsXds", sched_get_priority_min) +STUB( + "m0rJD4Cy83s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEC2Ev) +STUB("m0uSPrCsVdk", _Xp_sqrtx) STUB("m0uW+8pFyaw", scePngDecCreate) +STUB( + "m0ubLWe3jyo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "m0v5kw2D8R4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEEC2ERSA_) STUB("m0xKuqISvWY", sceLoginMgrServerClearMorpheusRequiredUserId) +STUB("m0zOt46WpiI", _ZN3JSC22DeferredWatchpointFireD2Ev) +STUB("m11UweHO6Hk", utrie2_enumForLeadSurrogate_67) +STUB("m15Jwox-mic", _ZN3sce2Np9CppWebApi6Common6VectorIlE8pushBackERKl) +STUB( + "m15hdRdqlLw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEppEv) +STUB("m18bTUNF-0g", FT_GlyphLoader_CreateExtra) STUB("m1DfNRstkSQ", sceNpScorePollAsync) +STUB("m1H6Q9a60wA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEE3getEv) +STUB( + "m1L1OUGR7ag", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEdeEv) +STUB("m1O1f8JAQ5A", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session7SessionEED2Ev) +STUB( + "m1WvyprztKg", + _ZN7WebCore27verifyVaryingRequestHeadersEPKNS_9CookieJarERKN3WTF6VectorISt4pairINS3_6StringES6_ELm0ENS3_15CrashOnOverflowELm16ENS3_10FastMallocEEERKNS_15ResourceRequestE) +STUB("m1Y7YpNH-OY", _ZNK7WebCore11MediaPlayer13requestedRateEv) STUB("m1YErdIXCp4", sceZlibInitialize) +STUB("m1ZOyvZQDUo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEEppEv) +STUB( + "m1f4JpCA4rU", + _ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody11setSortModeERKNS3_8SortModeE) +STUB( + "m1gsPTRcLxY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEneERKS9_) STUB("m1h-E6BU6CA", sceUserServiceGetPbtcAdditionalTime) +STUB("m1hF3PWDi34", + _ZN3WTF8JSONImpl9ArrayBase10pushObjectEONS_6RefPtrINS0_10ObjectBaseENS_13DumbPtrTraitsIS3_EEEE) +STUB("m1nD9D9LmP0", uloc_getDefault) +STUB("m1rfq6UDAMY", _ZN7WebCore9HTMLNames9footerTagE) +STUB( + "m1vJnvaksEI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "m1wD+8DqZbE", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10setString7EPKc) +STUB("m2-C4ATpzfI", WKPreferencesGetHyperlinkAuditingEnabled) +STUB( + "m21uX+GYUjo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEC1Ev) +STUB("m27H1GOOU1Y", rgctx_fetch_trampoline_mrgctx_1) STUB("m2CDzALH31Q", sceDepthGetImage) +STUB("m2Gwc0V8Q+s", + _ZN3sce2Np9CppWebApi7Matches2V119AdditionalStatisticC1EPNS1_6Common10LibContextE) +STUB("m2KOCk55e1w", _ZN3sce7Toolkit2NP19ProductBrowseParamsC1Ev) +STUB("m2NcZQko13E", _ZN2sh13GetAttributesEPv) +STUB("m2Nl98hVWXY", mono_aot_ReactNative_Modules_Vsh_Gct_Telemetry2jit_code_end) +STUB("m2PUt1BUbwQ", _ZN4Manx11MediaPlayer4playEv) STUB("m2PkI8YCJWc", sceNpManagerIntAddUserStateCallback) +STUB( + "m2Pm9JHAMEk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEE7get_refEv) +STUB("m2PuBAQ06e0", WKWebsiteDataStoreSetStatisticsHasHadUserInteraction) +STUB( + "m2S0+pUgP1s", + _ZN7WebCore25unwrapSerializedCryptoKeyERKN3WTF6VectorIhLm0ENS0_15CrashOnOverflowELm16ENS0_10FastMallocEEES6_RS4_) +STUB("m2S7MkdupGY", vzone_write_67) +STUB("m2Sd6gEcz9o", WKPluginInformationDisplayNameKey) +STUB("m2Z378C5GDU", + _ZN3sce2Np9CppWebApi14SessionManager2V128PostGameSessionsResponseBody15getGameSessionsEv) +STUB( + "m2cH9kRFZGk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEEC2ERKSA_) +STUB("m2fYt-s+A7E", _ZN3sce3pss5orbis9framework21PsmMainThreadCallList8RegisterEPFvPvES4_) +STUB("m2gmPnFLeck", _ZNK7WebCore16HTMLInputElement5widthEv) +STUB( + "m2iu4mOew5s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEaSERS7_) +STUB( + "m2kbaAmb9Yc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE7popBackEv) +STUB("m2lChTx-9tM", _ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2ERKSt8_Locinfom) +STUB("m2lRFfVmh-I", + _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_17AnimationTimelineE) +STUB("m2nsgcvk0ZA", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetAccountId2OnlineIdaSERS5_) +STUB( + "m2s6PJVaSBY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEE7get_refEv) +STUB("m2taGBk1rMs", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE3endEv) +STUB( + "m2yAwCs9LTM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "m2yUOypQ+7Y", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB( + "m2yZIur2btM", + _ZN7WebCore16HTMLMediaElement49bestMediaElementForShowingPlaybackControlsManagerENS_19MediaElementSession23PlaybackControlsPurposeE) STUB("m36Os8IDTOs", sceFsUmountWorkspace) +STUB("m38rIXXKp48", _ZN7WebCore6CursorC1EPNS_5ImageERKNS_8IntPointE) +STUB("m3CVfyaeuNI", _ZN7WebCore11DisplayList25DrawDotsForDocumentMarkerD1Ev) +STUB( + "m3HLkdP0ndA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEmmEv) +STUB("m3OOLyi6YTI", ucal_getWindowsTimeZoneID_67) +STUB("m3TcEKpIGo4", _ZN7WebCore10ISOFullBoxC1Ev) +STUB("m3WSppWmx-g", + _ZN3JSC8JSObject19putDirectMayBeIndexEPNS_14JSGlobalObjectENS_12PropertyNameENS_7JSValueE) +STUB("m3YXlHlU3j4", _ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE7reserveEi) +STUB("m3YkcPqYBzQ", _ZN3sce3pss5orbis9framework8PsmEvent8RegisterEiPFvRKNS2_12PsmEventDataEPvES7_) +STUB("m3ZM9sjHHTc", AnnotateIgnoreWritesBegin) +STUB("m3hmck-mN8w", ures_openDirect_67) +STUB("m3jEtGAP9jE", _ZN3sce2npeqERKNS0_10NpOnlineIdERK13SceNpOnlineId) +STUB("m3lbV6O14GM", mono_jit_init_version) +STUB("m3plRJj6PGE", _ZN7WebCore24CoordinatedGraphicsLayer21flushCompositingStateERKNS_9FloatRectE) +STUB( + "m3t8OZSFd9A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEED1Ev) +STUB( + "m3uWDAjT+Pc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEptEv) +STUB("m3wvXPX9lSA", _ZNK7WebCore3URL4hostEv) +STUB( + "m3xSADN05oQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB("m3xt4saq6do", rgctx_fetch_trampoline_rgctx_21) +STUB( + "m41ueZ8BO1k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEaSERS8_) STUB("m47juOmH0VE", sceAppContentGetAddcontInfo) STUB("m4JiU8k2PyI", sceNpManagerIntCheckNpAvailability) +STUB("m4JmB4l07bY", JSGlobalObjectInspectorControllerConnectFrontend) +STUB("m4KLhkCV1Pk", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_7TssDataEE3getEv) +STUB("m4S+lkRvTVY", __popcountdi2) +STUB( + "m4S5+d2Kpj4", + _ZN9Inspector17ScriptDebugServer19handleBreakpointHitEPN3JSC14JSGlobalObjectERKNS1_10BreakpointE) +STUB("m4V2R4vHnMM", + _ZN9Inspector22InspectorDebuggerAgent27scriptExecutionBlockedByCSPERKN3WTF6StringE) +STUB("m4VaXZE7J6U", WKContextConfigurationSetNetworkProcessPath) +STUB("m4ViMe2r67Y", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS12TusVariablesEE19setCustomReturnCodeEi) STUB("m4cofzsxUWY", sceCompositorSetEndOfFrameCommand) +STUB( + "m4dGhQ91P3o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "m4fm7Kk8kTI", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi42ParameterToPutGameSessionsSearchAttributes45setputGameSessionsSearchAttributesRequestBodyENS1_6Common12IntrusivePtrINS3_42PutGameSessionsSearchAttributesRequestBodyEEE) +STUB("m4fssAbVP-k", WKInspectorShowResources) +STUB( + "m4k93Xh7-Yw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE5beginEv) +STUB("m4kEqv7eGVY", _ZNSt8numpunctIwEC2EPKcmb) +STUB("m4mV-oApjIQ", _ZN7WebCore8SVGNames11animateAttrE) STUB("m4ohLv1Fdes", sceOpusDecCtl) +STUB("m4oxk3QAGyE", _ZN3JSC8Debugger21deactivateBreakpointsEv) +STUB( + "m4rNBUqwKxQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEE11release_refEv) +STUB("m4utXlk4Qag", _ZN7WebCore20throwSetterTypeErrorERN3JSC9ExecStateERNS0_10ThrowScopeEPKcS6_) +STUB("m4xXJ1MRvwc", rgctx_fetch_trampoline_mrgctx_34) +STUB("m5+q1dyt2WM", _ZN7bmalloc3api21commitAlignedPhysicalEPvmNS_8HeapKindE) STUB("m5-2bsNfv7s", scePthreadCondattrInit) +STUB( + "m54vQxuBF4I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "m58fPBFnQqI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("m58lpCIGa1o", WKUserContentURLPatternCreate) STUB("m5CYKX20wfg", sceSystemServiceInitializePlayerDialogParam) +STUB("m5DU6GnjSlo", + _ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody17setNpServiceLabelERKj) +STUB( + "m5FaOBiw1vQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEEaSERSA_) +STUB("m5J28iw-QPs", _ZN3sce4Json5Value11referStringEv) +STUB("m5KvMLs-5fE", + _ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody17unsetNeedsTmpRankEv) STUB("m5OsHQx9Ni4", sceShellCoreUtilGetOptimizationStatus) +STUB( + "m5Rg7hZg2VE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEC2EPS8_) +STUB("m5UNbMUJuto", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEC2ERKS7_) +STUB("m5Whdn6BxAQ", + _ZN3sce2Np9CppWebApi7Matches2V123RequestTeamMemberResult8fromJsonERKNS_4Json5ValueE) +STUB("m5YN2mkmFU0", uloc_getISOLanguages) +STUB("m5Z4IOVKjmw", _ZL20check_type_signaturePN10__cxxabiv115__cxa_exceptionEPKSt9type_infoRPv) +STUB("m5iqwxcv7As", rgctx_fetch_trampoline_mrgctx_20_p) +STUB("m5kDI-aUKzQ", + _ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody21ticketAttributesIsSetEv) +STUB( + "m5qxOoGYLMk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEC2EPS6_PNS2_10LibContextE) +STUB( + "m5rMIG2iPgc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEC2EPNS2_10LibContextE) +STUB( + "m5rOqRBcuMI", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("m5sY-h3Z6sM", + _ZN3sce2Np9CppWebApi14SessionManager2V125ResponseGameSessionPlayerC1EPNS1_6Common10LibContextE) +STUB( + "m5sZ8sSDcHI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEEC1Ev) +STUB("m5wN+SwZOR4", putchar) +STUB("m5wkuUjJRCU", _WLdtob.xdigs) STUB("m5zDvD-LLjo", sceKernelKernelHeapUsage) +STUB("m6-pQhrSRbQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE8copyFromERKS7_) STUB("m65uKv7IAkI", sceShellCoreUtilSetGnmCompositorOnScreenProfilerFlag) +STUB("m68pZL3KqAM", _ZN3sce3pss4core8graphics14NativeGraphics18GetGraphicsContextEv) +STUB( + "m6B-fJjS3F0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEED1Ev) STUB("m6F7sE1HQZU", sceNpScoreGetFriendsRankingForCrossSaveAsync) +STUB("m6GXObHRdG8", _ZN3sce7Toolkit2NP2V27Ranking7Request11SetGameDataD2Ev) +STUB("m6N28jBZv3E", _ZN13MsvMetaEditor10updateTextEPKcS1_tj) +STUB("m6N4DtlBu9c", _ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetail18getProfilePicturesEv) +STUB("m6OGa5s8HSo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEC2ERS7_) +STUB("m6P3pKQ-k38", _ZN3sce7Toolkit2NP2V212EventsClient7EventIdD2Ev) +STUB( + "m6Xtv+Ait6A", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeOnlineId2AccountIdBatchD2Ev) +STUB( + "m6e7JjBuB30", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEE5resetEPS6_) +STUB( + "m6g7uJ33DHQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEmmEv) +STUB("m6m0xWGahWw", _ZNK7WebCore9GLContext7displayEv) +STUB( + "m6o+BHqSlG8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEED1Ev) +STUB( + "m6oeoFx4gOA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEneERKS9_) +STUB("m6opsclVqZU", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_21GameCustomDataMessageEED2Ev) STUB("m6paE6+CiTA", sceDebugIpmiGetServerKidList) +STUB("m6peTW44694", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V115CompetitionTypeEEC1Ev) +STUB("m6rjfL4aMcA", _ZNKSt7codecvtIDic9_MbstatetE9do_lengthERS0_PKcS4_m) +STUB("m6uU37-b27s", _ZSt9_LStrcollIwEiPKT_S2_S2_S2_PKSt8_Collvec) +STUB( + "m7+o9cTFH1w", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBody14getInvitationsEv) +STUB( + "m7-K+yVDhE8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE3endEv) +STUB( + "m7-mQSQzDWE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("m70xPQe-Tjk", _ZN23sceMetadataReaderWriter22StorageParserInfoTable6updateEj) +STUB("m798m5OYA8I", _ZNK3sce2Np9CppWebApi6Common6VectorIdE5beginEv) STUB("m7CluO-xmkQ", scePerfTraceSpmGetNclk) +STUB("m7EXDQRv7NU", CA_MGMT_free) +STUB( + "m7EjiXs9OSI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "m7LCeI9+ehg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("m7OSrfA7K+s", _ZN15AbstractStorage7ContentD2Ev) +STUB( + "m7UpEhONxMA", + _ZN7WebCore9FrameView28traverseForPaintInvalidationENS_15GraphicsContext24PaintInvalidationReasonsE) +STUB("m7ZpRaRI5LM", ures_getKey) +STUB( + "m7buRwnSJmQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE10setContextEPNS2_10LibContextE) +STUB( + "m7eCWBcQ8B4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEmmEv) +STUB( + "m7eYXxxVnVA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEaSERS7_) +STUB("m7iLTaO9RMs", cosh) +STUB("m7od1ikoZpQ", RtcGetCurrentNetworkTickNative) +STUB("m7qAgircaZY", _ZNSt7_MpunctIcE5_InitERKSt8_Locinfob) +STUB("m7r19sDkltM", g_timer_elapsed) +STUB("m7ykSknwnRg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEED1Ev) STUB("m7z1nnVU3D8", sceSlimglServerStartWithSocket) +STUB( + "m840Mm9FWQI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE7reserveEi) +STUB( + "m86JlztZT0U", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEeqERKS9_) STUB("m87BHxt-H60", sceNpGameIntentInitialize) +STUB("m87dkWET7+Q", WKPreferencesCopyMediaContentTypesRequiringHardwareSupport) +STUB( + "m88g4YqaQTo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEE11get_deleterEv) +STUB( + "m89FFZ56thE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("m8AIQvFZFZQ", RAND_status) +STUB( + "m8J4LErRBS8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEED1Ev) +STUB("m8JHnyIOhiY", _ZN7WebCore24CoordinatedGraphicsLayerD0Ev) STUB("m8KLvqm+xF4", sceTextToSpeechPauseImpl) +STUB("m8LRIJnuqfw", _ZN7WebCore9HTMLNames8roleAttrE) +STUB("m8NTc3Qr2MI", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request15PostInGameStoryC2Ev) +STUB("m8Py4-JilYA", _ZN4Manx5MutexD1Ev) +STUB("m8Qg8VAe++Q", AES_encrypt) +STUB( + "m8QzC6ghMnE", + _ZN9Inspector18InspectorHeapAgent27didCreateFrontendAndBackendEPNS_14FrontendRouterEPNS_17BackendDispatcherE) +STUB("m8RVHoMu39g", uenum_reset_67) STUB("m8VtSd5I5og", sceUserServiceSetDiscPlayerFlag) +STUB( + "m8avhpJzn4s", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEplEm) +STUB( + "m8bYmEcUMvM", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB( + "m8dkD1Kdk9U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEE11release_refEv) +STUB("m8h5wdC8xOw", _ZNK7WebCore6Editor6clientEv) STUB("m8oc1t4Rp28", scePatchCheckerInitialize) +STUB( + "m8onZcOiqBo", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectatorC2ERS5_) +STUB( + "m8qkf3vGT9o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEaSERKS9_) +STUB("m8rqXLGqxH4", _ZNK7WebCore14LoaderStrategy12ongoingLoadsEv) +STUB( + "m8rrQ8edDn4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "m8sGa8oLVec", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE21setOnFinishedCallbackEPFvliSB_PvEPFvliSG_ESG_) +STUB( + "m8sLblhGBgU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEppEv) +STUB( + "m8yDiLutYKY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEC2Ev) STUB("m96WzIHunT8", sceFiosTraceTimestamp) +STUB("m99ARFeStx8", _ZN15AbstractStorage14FacebookFolder4OpenENS_8ItemTypeE) +STUB("m99zKY4J6BQ", _ZNK7WebCore16TrackPrivateBase10trackIndexEv) +STUB( + "m9GOii+QADs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEC1EPS7_PNS2_10LibContextE) STUB("m9JzZSoDVFY", sceNpSetPlatformType) STUB("m9L3O6yst-U", sceNpGetParentalControlInfoA) STUB("m9XZnxw9AmE", sceNpTusGetMultiSlotVariableForCrossSave) +STUB( + "m9Z0fi0UrDA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("m9d0vmu44PI", _ZN3WTF18FunctionDispatcherD1Ev) STUB("m9dGPgf55j8", sceCtrlpRegisterEventCB) +STUB("m9eWcUpXsvU", __tsan_atomic32_fetch_xor) +STUB( + "m9llx59RRFI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEppEi) +STUB("m9nEKMAp80k", _ZN3WTF22TextBreakIteratorCache9singletonEv) +STUB( + "m9pEMwEBy+I", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUseraSERS5_) +STUB("m9qXOH+XWBM", _ZN7WebCore23createDragImageForRangeERNS_5FrameERKNS_11SimpleRangeEb) +STUB("m9wbJybzV5E", _ZN3sce2np9HttpTrans4InitEPNS0_12HttpTemplateEiPKcS5_tS5_m) +STUB("m9zbs5hsSUQ", __clang_call_terminate) +STUB( + "mA00Xm1g-80", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEC1EPNS2_10LibContextE) +STUB("mA0RfEpzpp8", BIO_new_socket) STUB("mA0zsbqm+kA", sceNpBandwidthTestInitStartUpload) STUB("mA34DPndHuk", sceNpManagerIntGetWebAppTokenByRequest) +STUB("mA5JBoo2CgY", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V15Error8fromJsonERKNS_4Json5ValueE) +STUB( + "mA6CUjm+iFU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEptEv) +STUB("mA9-3pYGy08", + _ZNK3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends8getlimitEv) +STUB("mAAi+MJkvKI", _ZN7WebCore23CoordinatedImageBacking10removeHostERNS0_4HostE) +STUB( + "mAB65g8lEf4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEC2EPS8_) +STUB( + "mAChuMwSi9o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEmmEi) +STUB("mACpB5pv-bA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE8copyFromERKS7_) +STUB("mAJiQGwBKOs", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead15maxPlayersIsSetEv) +STUB( + "mAL5-3Pzcxw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE5eraseENS2_8IteratorIS8_EERSB_) STUB("mAPVf1I2+is", sceDebugIpmiGetSessionInfo) +STUB("mARrHQ6vFV8", _ZN7WebCore17HTMLOptionElement11setSelectedEb) +STUB("mASC9qTNl3g", _ZN3sce2np14JsonDocBuilder10GetBufSizeEv) +STUB( + "mAXGE3IMeXw", + _ZN3JSC23JSModuleNamespaceObject3putEPNS_6JSCellEPNS_9ExecStateENS_12PropertyNameENS_7JSValueERNS_15PutPropertySlotE) STUB("mAZPRnqh048", sceVnaGenerateTelemetrySessionId) +STUB("mAjGpyN7i9s", _ZN7WebCore12JSAudioTrack4infoEv) +STUB( + "mAkS2lr+ftg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB( + "mAv+egTgXkk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEEaSERS9_) +STUB( + "mAwXCpkWaYc", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERd) +STUB("mAxEMYkmByI", il2cpp_method_get_object) +STUB( + "mB3-pVyXXps", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEEdeEv) +STUB("mB7Yek45KO8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEE5resetEPS5_) +STUB( + "mBBMC4Bgw0M", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectatorD2Ev) +STUB( + "mBCLU5LE2pU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE7reserveEi) +STUB( + "mBDAPbGZajM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEE7add_refEv) +STUB("mBE-rCYG6xg", _ZN7WebCore11MediaPlayer16removeVideoTrackERNS_17VideoTrackPrivateE) +STUB( + "mBJg9I82WnE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEdeEv) +STUB("mBMPV-oC2EU", _ZNK7WebCore14ScrollableArea21scrollbarsCanBeActiveEv) +STUB("mBNLXFT1ZOc", uhash_iremove) +STUB("mBOR8lEifX0", + _ZN7WebCore23ApplicationCacheStorage20deleteCacheForOriginERKNS_14SecurityOriginE) +STUB( + "mBRcmEJrVp0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE7reserveEi) +STUB( + "mBS7+3RfZic", + _ZN3sce7Toolkit2NP12ActivityFeed9Interface12dislikeStoryEPKNS1_16LikeStoryRequestEPNS1_9Utilities6FutureIiEEb) +STUB("mBS9mviaUk8", WTFPrintBacktrace) STUB("mBTFixSxTzQ", sceNpManagerIntGetVshAccessToken) +STUB("mBWJOp64fLM", _ZN8meta_gen13TiffRetriever11GetFirstIFDEv) +STUB( + "mBagn+lW-iM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEEptEv) +STUB( + "mBbG0YM9fEM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEED1Ev) +STUB( + "mBbVotzRGds", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEppEi) STUB("mBd4AfLP+u8", sceKernelPwritev) +STUB("mBh9vA+yWpU", WKPreferencesSetOfflineWebApplicationCacheEnabled) +STUB( + "mBiZ96bMPYs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEE21intrusive_ptr_add_refEPS7_) +STUB("mBjDvzWpGVs", + _ZN7WebCore17DOMImplementation14createDocumentERKN3WTF6StringES4_PNS_12DocumentTypeE) +STUB( + "mBkitnalZ+Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE6resizeEj) +STUB("mBktJqWy3Nw", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS19FriendsDataStatusesEE19setCustomReturnCodeEi) +STUB("mBp5NfAktUM", _ZN3sce7Toolkit2NP2V28Matching12RoomPingTimeaSERKS4_) STUB("mBrOTtvKHU0", scePssSoundPlayerStopEx) +STUB( + "mBvBRsrM2H4", + _ZN9Inspector21InspectorRuntimeAgent24getDisplayablePropertiesERN3WTF6StringERKS2_PKiS7_PKbRNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime18PropertyDescriptorEEENS1_13DumbPtrTraitsISG_EEEERNSA_INSC_INSE_26InternalPropertyDescriptorEEENSH_ISM_EEEE) +STUB("mBxWXq2rJMo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEED1Ev) +STUB( + "mByo+t14VCo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE3endEv) +STUB( + "mC+BDo9+Q4o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEEdeEv) +STUB( + "mC-dZXf4cdU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE5clearEv) +STUB( + "mC1CR6Iyk48", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE7reserveEi) +STUB( + "mC2LdiwwC1g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE3endEv) STUB("mC3BKJFlbNI", sceLncUtilAcquireCpuBudgetOfInGameStore) STUB("mC57yegC040", sceKernelIsM2DeviceAttached) +STUB( + "mC5kBK7F4rU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("mC8pNZYmjEQ", _ZNK3WTF9MediaTimemiERKS0_) +STUB( + "mCCmRAgNf1A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEE11release_refEv) +STUB( + "mCD6zzh8aEM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEaSERKS7_) +STUB("mCESRUqZ+mw", __fixunssfti) +STUB("mCEvzv4nHIg", _ZN3sce7Toolkit2NP2V29Messaging24GameDataMessageThumbnailC1ERKS4_) +STUB("mCIXittfvrw", FTA_Add_Module) +STUB("mCIjZT8nfvg", WKPageSetSuppressScrollbarAnimations) +STUB( + "mCKghZV-lLg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE8pushBackERKS8_) STUB("mCLdiNIKtW0", sceNetConfigGetDefaultRoute6) +STUB("mCOOKVuH5+0", _ZN3sce2Np9CppWebApi7Matches2V126RequestTeamMemberStatistic8getStatsEv) STUB("mCQIhSmCP6o", sceRudpGetOption) STUB("mCQvGf231qg", ScePsmMonoGcOutOfMemory) +STUB("mCR32lk338U", _ZNK9Inspector14InjectedScript14wrapJSONStringERKN3WTF6StringES4_b) +STUB("mCRwgj3GtEU", _ZNK3sce2Np9CppWebApi11Matchmaking2V113ErrorResponse6toJsonERNS_4Json5ValueEb) +STUB("mCT7n6BnlQ4", ucnv_getType_67) +STUB( + "mCaN+MolnPk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEED1Ev) +STUB("mCiF9kjaxy0", _ZN3sce7Toolkit2NP19JoinPlusInputParamsC1Ev) STUB("mCoz3k3zPmA", sceGameLiveStreamingSetServiceProviderPermission) +STUB("mCpCL9lHEIM", _ZN8Gigacage10tryReallocENS_4KindEPvm) +STUB("mCqfLfIWWuo", _ZN3sce2np11NpHttpTrans24BuildAuthorizationHeaderERKNS0_13NpAccessTokenEPcm) +STUB("mCsV7izOkjY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEptEv) +STUB( + "mCttNI8nctk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEED1Ev) +STUB("mCyTdtewGpk", udata_setFileAccess) +STUB("mCyfcnKszjM", mono_lls_init) +STUB("mCzZ2tWstrs", mono_get_boolean_class) +STUB("mCztcpS1jGs", + _ZN7WebCore15JSDOMWindowBase36fireFrameClearedWatchpointsForWindowEPNS_9DOMWindowE) +STUB("mD08+3DhtTQ", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError10getMessageEv) STUB("mD3OeD3UdZk", sceTsEnableStream) +STUB( + "mD6efLts+kY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("mD6r3NshZyo", _ZNK7WebCore12SharedBuffer7isEmptyEv) STUB("mD6s8HtMdpk", sceNpTusGetFriendsVariableForCrossSave) +STUB("mDE8dam-vJw", _ZN7WebCore18JSHTMLInputElementC1ERKS0_) +STUB( + "mDEWvX3en7o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "mDGzzBPLBh0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEptEv) +STUB("mDIHE-aaRaI", _ZSt22_Random_device_entropyv) +STUB("mDL+MtSW5E0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE8pushBackERKS6_) +STUB( + "mDMwxPR1f4k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE8pushBackERKS8_) +STUB( + "mDQ26kSow0A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) STUB("mDQcxeSGoIM", sceBackupRestoreUtilCancelGetTitles) +STUB("mDTa5Vcz1fk", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container16getContentRatingEv) +STUB( + "mDTsCxnqiP4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEneERKS9_) +STUB("mDeup2ozJz4", _ZN7WebCore27ContentSecurityPolicyClientC2ERKS0_) STUB("mDmgMOGVUqg", pthread_mutexattr_settype) +STUB("mDsC-cMyXs0", _ZN3sce2Np9CppWebApi7Matches2V111AddedPlayerD1Ev) +STUB("mDwiQvBlU90", _ZNK7WebCore16HTMLInputElement12isEmailFieldEv) +STUB("mE+Ke2wmUU4", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities14UserActivities8fromJsonERKNS_4Json5ValueE) +STUB("mE3-2kNiL3E", mono_aot_Sce_Vsh_SysfileUtilWrapperunbox_trampolines) +STUB( + "mE41OA8YLnc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEEaSERKSA_) +STUB("mE7AqrxBhzc", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V223FilterProfanityResponse8fromJsonERKNS_4Json5ValueE) +STUB( + "mEBPjw9UqoY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEED1Ev) STUB("mEC+xJKyIjQ", scePadIsDS4Connected) +STUB("mECJLqYrOag", uprv_pow10) +STUB( + "mEJI7CKR-iI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEEC2EPS9_PNS2_10LibContextE) STUB("mEUt-phGd5E", sceNetBweSetInternetConnectionTestResultIpcInt) +STUB("mEXNRN7i8GA", _ZN7Nicosia16SceneIntegration6ClientC2ERKS1_) +STUB( + "mEZjl6qzTOI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEE7get_refEv) +STUB("mEgbc4eb3uY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEaSERKS7_) +STUB( + "mExRUI5pWJs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEC1Ev) STUB("mEy7di8MT30", sceVideoRecordingSendCommand) +STUB( + "mEz01Gc7NJM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEE5resetEPS6_) +STUB("mF0B64O954g", FT_Stream_ReadShort) +STUB( + "mF4OZqFmL8A", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE6finishEv) +STUB("mF7u8vYxkl8", g_PS4TitleId) +STUB("mF9+FT4UKSE", SSL_CTX_set_max_proto_version) +STUB("mFBxBLtfT6Q", _calloc) +STUB( + "mFD0g-oU3bw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE7reserveEi) +STUB( + "mFDmH1ixPmw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEE11get_deleterEv) +STUB("mFGaMlruNv4", WKRenderLayerGetNormalFlowList) +STUB("mFI4WU0D3c8", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119PlayStyleProperties8fromJsonERKNS_4Json5ValueE) +STUB( + "mFLSY0+Vaa0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEC2Ev) +STUB( + "mFMEimiwfxo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "mFOO56OFuYE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEdeEv) STUB("mFR2QN8HNVU", sceKeyboardPadEmulateOpen) STUB("mFWjsTgMf2c", sceAppInstUtilAppInstallPsNowIcon) +STUB("mFZezLIogNI", _ZN3sce2np8JsonFile5CloseEv) +STUB( + "mFaCuGAYz1U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEC2EPS8_) +STUB("mFkAY973pGc", _ZN7WebCore17JSDOMGlobalObject15createStructureERN3JSC2VMENS1_7JSValueE) +STUB( + "mFkKFhatKyA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEmmEv) +STUB("mFldq5h75uc", mono_field_get_value) +STUB("mFmCBCBPQPw", _ZNK7WebCore26Matrix3DTransformOperation4dumpERN3WTF10TextStreamE) +STUB("mFq1M6vw-JM", ACProcessMain) +STUB("mFqTN51nwcE", _ZL23_delete_array_with_size) +STUB( + "mFtlZnCWGjI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEaSERKS7_) +STUB("mFx3dcK+S2c", _ZN7WebCore14ResourceLoader14cancelledErrorEv) +STUB("mFyV2XDaJyU", mono_class_get_fields) +STUB("mG2BEWS7I6U", _ZN3sce7Toolkit2NP29GameCustomDataGameDataRequestC1Ev) +STUB( + "mG5Qa5IYdkg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE6resizeEj) +STUB("mGAe6KVK2Gw", u_getBinaryPropertySet_67) +STUB("mGFiIm0Scn0", _ZN3JSC4Heap17acquireAccessSlowEv) +STUB("mGM-NRBuZvE", WKBundleHitTestResultGetFrame) STUB("mGMQ9igs1LM", sceMbusResolveByPlayerId) +STUB("mGMeRKWGTL4", FT_Face_GetVariantsOfChar) +STUB( + "mGNsB4+eEjs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE7popBackEv) +STUB( + "mGPKAZ8shIs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEeqERKS9_) +STUB( + "mGPy8a31BJM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "mGUtsPaFnR4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEC2EPS6_PNS2_10LibContextE) +STUB( + "mGVI8YYoRhs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEEC1ERKSA_) +STUB("mGZVZAYs710", Java_com_sony_bdjstack_javax_media_controls_VideoSystem_init) +STUB("mGacX4duSZc", _ZNK7WebCore8Position8previousENS_16PositionMoveTypeE) STUB("mGbAN4KaRfA", sceMusicCoreServerGetUserData) +STUB( + "mGc7UuDYnig", + _ZN3sce2Np9CppWebApi11Matchmaking2V117UserTicketFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_10UserTicketEEE) +STUB( + "mGcEHP-LiDw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEC2EPKS8_) +STUB("mGd9i+ILujA", _ZN9Inspector24RemoteControllableTarget6updateEv) +STUB( + "mGf123FoKQg", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) STUB("mGfyLTvE+LI", sceNpSnsYouTubeDeleteRequest) +STUB("mGhdGEpOeFQ", WKPageSetMemoryCacheClientCallsEnabled) +STUB("mGriYqpliqc", + _ZNK7WebCore22EmptyFrameLoaderClient25pluginWillHandleLoadErrorERKNS_16ResourceResponseE) +STUB("mGsBNF15gDU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEptEv) +STUB( + "mGsJLBA6bXQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEEaSERKS8_) +STUB("mGsrNZGZm0k", YGNodeStyleSetMinWidth) +STUB( + "mGvMCx+l-JA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEmmEi) +STUB("mGxK+mqJW+4", _ZNK7WebCore10ScrollView18rootViewToContentsERKNS_7IntRectE) +STUB( + "mGxe6fPRxEM", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS9_PvEPFvliSD_ESD_) +STUB("mH++R5XYMFo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEEptEv) STUB("mH-YHAtaP7I", sceUlpMgrRecvData) +STUB("mH0s73L5x28", _ZNK3JSC14ProtoCallFrame13argumentCountEv) +STUB("mH6mtmF1430", _ZN7WebCore16ResourceResponseC1ERKN3WTF3URLERKNS1_6StringExS7_) +STUB( + "mH7Cj1ZLMFA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEdeEv) +STUB( + "mH8Tulfr9mI", + _ZN3sce7Toolkit2NP2V28Matching15getRoomPingTimeERKNS3_7Request15GetRoomPingTimeEPNS2_4Core8ResponseINS3_12RoomPingTimeEEE) +STUB( + "mHDS3EJIZSw", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUserC1Ev) +STUB("mHE2Hk9Ki80", _ZThn8_N3sce2np11NpHttpTransD1Ev) +STUB( + "mHFi-WpVGHc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "mHGjK9-Tqfo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEC2EPS8_) +STUB("mHLMSAdoAJU", mono_aot_mscorlibjit_code_start) +STUB("mHLewiXwbMo", _ZN9Inspector24CanvasFrontendDispatcher16extensionEnabledERKN3WTF6StringES4_) +STUB("mHOeGccX2Og", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35ErrorC1EPNS1_6Common10LibContextE) +STUB("mHXLseAVFX8", mono_aot_Sce_Vshplt_end) +STUB("mHdZWBajm9Y", ures_getLocaleInternal_67) +STUB("mHi1gWTRwUY", _ZN25MmsFileUpdaterFsOperation10initializeEv) +STUB("mHmgH7DuMBE", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIfEmmEi) +STUB( + "mHtHPNmc+2M", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody14setCustomData1EPKvm) +STUB( + "mI+U-9d7QnQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessions28getxPsnAcceptPlatformNamePs5Ev) +STUB( + "mI-eS1uKEXo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEE11get_deleterEv) +STUB("mI0SR5s7kxE", _ZTSv) +STUB( + "mI0b--FAn5s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("mI6eF+4ovHQ", mono_thread_is_foreign) +STUB( + "mI9gZ+-T70o", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEdeEv) +STUB("mICjvgEAEEE", _ZN3sce7Toolkit2NP15AppSTLAllocatorISbIcSt11char_traitsIcENS2_IcEEEEC1ERKS7_) +STUB("mIMMM6v3k4c", EVP_PKEY_set1_EC_KEY) +STUB( + "mIMxrseJVyI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("mIdran5AG7U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEcvbEv) +STUB( + "mIil6ew0jv4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEC2Ev) +STUB("mIinAn8TvdY", _ZN3sce7Toolkit2NP2V24Core12ResponseBase8isLockedEv) +STUB( + "mIlSwqEn3gs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "mIpFV28GMDY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE6resizeEj) +STUB("mIwYqIRqOqg", _ZN7WebCore8Document16getOverrideStyleEPNS_7ElementERKN3WTF6StringE) +STUB("mJ0L9yTNZHg", mono_aot_Sce_Vsh_Orbis_CdlgServerNpCommerceunwind_info) +STUB( + "mJ6-71OOhDw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEdeEv) +STUB("mJ6StoYAloU", _ZN7WebCore21WheelEventTestTrigger21clearAllTestDeferralsEv) STUB("mJ7aghmgvfc", sceKernelGetEventId) +STUB("mJ9Zc19qXM8", + _ZN7CoreIPC15ArgumentDecoder29decodeVariableLengthByteArrayERNS_13DataReferenceE) +STUB("mJExuVCCzMA", _ZN3sce2Np9CppWebApi7Matches2V111AddedPlayer8fromJsonERKNS_4Json5ValueE) STUB("mJF-VraqPGw", sceFsLvdSetDiscIdentity) +STUB("mJINGL5uOck", _ZTVN9Inspector14InspectorAgentE) +STUB( + "mJK+m+niPq8", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getBoolean4Ev) STUB("mJPaK-5KhUs", sceUpsrvUpdateDoUpdateExpBeta) +STUB( + "mJT1sR07MeE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEED1Ev) +STUB("mJXR1E6iBcs", _ZN7WebCore8SVGNames15tableValuesAttrE) +STUB("mJa3hN6azkE", _ZN13MsvMetaEditor13updateTfraBoxEi) +STUB( + "mJiD1pDdBQw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("mJioj3OMZyk", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setMixerMetadataOn) +STUB("mJjAMxMoouI", _ZNK7WebCore17FrameLoaderClient22shouldPaintBrokenImageERKN3WTF3URLE) STUB("mJlVV44ycU0", sceImeBackendDeleteCharacter) +STUB("mJnAAK7WYR0", fuse_req_userdata) +STUB( + "mJnPjrbwO5g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEEC1ERKSA_) +STUB("mJpU4Rt4Dk8", tiny) +STUB( + "mJvAxczyEGA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEC2Ev) +STUB( + "mJvY+wLYP2c", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser25hasusePlayerSessionFilterEv) +STUB( + "mJzkrD40Y2U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEC2EPS8_) +STUB( + "mK1dJScTNSU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEE7get_refEv) +STUB( + "mK7JXNIys+k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEC2Ev) +STUB("mKA4m9Tc6-4", bdf_driver_class) +STUB( + "mKAqtHHSRGM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEC1EPNS2_10LibContextE) +STUB( + "mKBe1Z57kvI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEptEv) +STUB( + "mKBpujaUpIg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE21intrusive_ptr_add_refEPS9_) STUB("mKEAx7QnPeg", sceCompositorMapAnotherProcess) +STUB( + "mKGWP+-5zFE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEEC2ERSA_) STUB("mKGqVK1SwFk", sceNpManagerIntGetVshToken) +STUB("mKK1NJYJNcQ", _ZNK7WebCore11PageOverlay6boundsEv) +STUB("mKS1nPuA-8I", _ZN3sce2Np9CppWebApi14SessionManager2V130RequestPlayerSessionInvitationD1Ev) +STUB("mKVNPzmu8dc", + _ZN3sce2Np9CppWebApi14SessionManager2V121RepresentativeFactory7destroyEPNS3_14RepresentativeE) +STUB("mKWRtVdKExc", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_23NpSessionInvitationInfoEE17getAdditionalInfoEv) STUB("mKa8scOc4-k", sceHmdReprojectionStartWideNearWithOverlay) +STUB("mKaphQVePT4", mono_aot_System_Net_Http_WebRequestjit_code_start) +STUB("mKc-BBJE-C0", _ZN9Inspector28InspectorScriptProfilerAgentC2ERNS_12AgentContextE) +STUB("mKgMjXKgjQ8", monoeg_g_filename_from_uri) +STUB("mKhVDmYciWA", floorf) +STUB("mKjbE1OtIP4", _ZN3sce2Np9CppWebApi7Matches2V15Error14setReferenceIdEPKc) +STUB( + "mKjoxCggOjo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE5emptyEv) +STUB("mKnkHtudXvM", _ZNK7WebCore10ScrollView10layoutSizeEv) +STUB("mKnx5sHhxhY", _ZN3WTF14FileSystemImpl11writeToFileEiPKci) STUB("mKoTx03HRWA", pthread_condattr_init) +STUB("mKqK1QDP4A4", _ZN7WebCore21MediaRecorderProviderD0Ev) +STUB("mKxDjcOwPe0", uprv_decNumberNextMinus_67) +STUB( + "mL1o29NTU-Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEE11release_refEv) +STUB( + "mL1p7w0rMaw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEppEv) +STUB( + "mL6-bt25dYQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEED1Ev) STUB("mL8NDH86iQI", sceKernelMapNamedFlexibleMemory) +STUB( + "mLDEO5-ycJA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEED1Ev) +STUB("mLDfb0Bl+A8", WKNotificationCopyBody) +STUB("mLEBRnmB7io", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEE3getEv) +STUB("mLHS0Q4GV-o", _ZN3WTF10StringImpl17createFromLiteralEPKc) +STUB("mLOiEi-xKxY", isobmf_box_getmember_length) STUB("mLRzKdIDwiU", sceCamera2GetConfig) +STUB("mLUbwaxgyJs", _ZN7WebCore31equalIgnoringFragmentIdentifierERKNS_3URLES2_) STUB("mLVL7N7BVBg", sceGnmUpdatePsShader350) +STUB("mLVdNCQJmJ8", _ZN7WebCore15PlatformDisplay13sharedDisplayEv) STUB("mLXQ6KRFdu4", sceCesSbcToUtf32le) +STUB("mLfgWSYY3pY", _ZN7bmalloc15IsoHeapImplBaseD0Ev) +STUB("mLv3OywuMTk", WKPreferencesGetShouldDisplayCaptions) +STUB("mLxBS7nHyT4", vzone_useDaylightTime_67) +STUB( + "mLxIRUZyHHU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V119PlayerSessionPlayerEEEEEEdeEv) +STUB("mM4OblD9xWM", _LTan) +STUB("mM8Mt+tfFr4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching5RoomsEE5resetEv) +STUB("mMBPY4+LaAo", _ZN9Inspector20InspectorTargetAgent6resumeERN3WTF6StringERKS2_) +STUB("mMEITO85Gh4", mono_aot_Sce_Vsh_Db_Sharedplt_end) +STUB("mMP-Uc07EJQ", delegate_virtual_invoke_1_p) +STUB("mMPu4-jx9oI", _ZNSt15_Num_float_base5trapsE) +STUB("mMQNFe5QF8A", GCC_except_table349) +STUB( + "mMSiwvb+dOI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEC2Ev) +STUB("mMSkjbh+0VI", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getBoolean6Ev) +STUB("mMUfpTLzhLs", WKContextConfigurationCopyOverrideLanguages) +STUB( + "mMZnvQlxzbU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEeqERKSA_) STUB("mMcB2XIDoV4", sceHttpSetRecvBlockSize) +STUB( + "mMj-xysJyaY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEE11release_refEv) +STUB( + "mMmKapbpR+E", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "mMqXb3b9hWw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEE11release_refEv) +STUB("mMurGRP1v0g", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIfEC1EPKf) +STUB( + "mMyiB9Ko010", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEED2Ev) +STUB( + "mMyvDodUdvI", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData17getnpServiceLabelEv) +STUB( + "mMz8mLitVqk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE6resizeEj) +STUB( + "mMzuUh4995E", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEneERKS9_) +STUB( + "mMzyHOimMgc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "mMzzkuyuVPo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEaSERKS9_) +STUB("mN+ZoSN-8hQ", FinalizeImeModule) +STUB( + "mN7g7k5EBTU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEC2EPS8_) +STUB( + "mN8A9vPEbs8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEptEv) +STUB("mNDMTLdRYR8", eglReleaseThread) +STUB("mNDXnwKHKI0", __tsan_unaligned_write2) STUB("mNFbFFiI-7A", sceSdmaFinalize) +STUB( + "mNGKxhaFJ0k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEC2ERKS7_) +STUB("mNGUNa7RMc0", uhash_hashChars) +STUB("mNIajby8IWQ", _ZN7WebCore15ActiveDOMObjectD0Ev) +STUB("mNN4J+QhVcQ", rvOK) +STUB("mNNKaSxKjRU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth8AuthCodeEED1Ev) +STUB( + "mNToTTzBx5U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE5beginEv) +STUB( + "mNVaOpyS+ts", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEC1ERKS7_) +STUB( + "mNW0O+sZdFs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEEC1ERSA_) +STUB( + "mNZsq-0aHN4", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V122FrequentlyMutedFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_15FrequentlyMutedEEE) STUB("mNan6QSnpeY", sceHttpAddCookie) +STUB( + "mNazzcvpZ5k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEmmEi) +STUB("mNk6FfI8T7I", + _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE5_FputES3_RSt8ios_basecPKcmmmm) +STUB("mNmvZ+wLzEs", _ZN7WebCore9Scrollbar12mouseEnteredEv) STUB("mNnB2PWMSgw", sceUserServiceIsKratosPrimaryUser) +STUB("mNnRj+T0Jl0", _ZN7WebCore11DisplayList22BeginTransparencyLayerC1Ef) +STUB("mNr8loz8S-U", _ZN3sce3pss5orbis5video14VideoPlayerVcs24VideoCoreCancelLoopRangeEv) +STUB( + "mNsSccPgFSQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "mNvUTnGWJs8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEC2EPS9_) +STUB("mO0Zvb8sfUo", _ULx86_64_init_mem_validate) +STUB( + "mO3PMbO1D8Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE8pushBackERKS8_) +STUB("mO4yqVDLBTQ", _ZNK3JSC8Profiler8Database4toJSEPNS_9ExecStateE) STUB("mO8NB8whKy8", sceLibcPafMspaceMallocStats) +STUB("mOBKWn-eJc0", _ZN9Inspector28InspectorScriptProfilerAgentnwEm) +STUB( + "mOCw9c8n7Z4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("mODyaCpyDnM", _ZNK3sce3Xml3Dom8Document7getRootEv) +STUB("mOEO3ETcznk", mono_aot_Sce_Vsh_Passcodejit_code_end) +STUB( + "mOEsDoMenDU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "mOIFD-LYnlQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEED2Ev) +STUB("mOJJLx3R04I", _ZN7WebCore18PlatformTimeRangesaSERKS0_) +STUB( + "mOPbmHu27Rs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEEdeEv) +STUB("mOQZbw5ZIPs", _ZN7WebCore15CSSGroupingRule10deleteRuleEj) STUB("mOUkgTaSkJU", sceNetConfigEtherGetLinkMode) +STUB("mOYSxu5fXAA", ucnv_countStandards_67) +STUB( + "mOaTFkC2uCE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "mOeCZxNBPys", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "mOfZ3NM9O88", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V232WebApiErrorResponse_errorFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_25WebApiErrorResponse_errorEEE) +STUB("mOmEf-jKSh8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEC1ERKS7_) +STUB("mOnVPtV0iu8", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_19UserRankInformationEE3getEv) +STUB("mOnfZ5aNDQE", _Stollx) +STUB( + "mOsoQCOux20", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB( + "mOvgKvu9vxQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "mP-lhKwvOxE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("mP1OZzqFTKI", vm_send_PatchCallsite) +STUB( + "mP2+rtrWfPk", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_28ActivityFeedSharedVideoStoryENS1_15AppSTLAllocatorIS5_EEEE3getEv) STUB("mP2ZcYmDg-o", sceHmdGetDistortionParams) STUB("mP31WHwSVjQ", sceMbusSetProxy) +STUB( + "mP8nYhg1Y3s", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEeqERKS9_) +STUB("mPASJVwxnsE", uloc_isRightToLeft_67) +STUB( + "mPB8XVQtAfA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEC2EPS6_PNS2_10LibContextE) +STUB("mPBCJsT0YbA", mono_aot_System_Resources_ResourceManagerunbox_trampolines) +STUB("mPIuvpUHm18", _ZNK7WebCore9TreeScope14getElementByIdERKN3WTF10AtomStringE) STUB("mPKVhQqh2Es", sceHttp2SetCookieMaxNum) +STUB("mPMWkobqS6A", _ZN7WebCore9HTMLNames14ondragoverAttrE) +STUB("mPN01lKHg0g", glGetTexParameterfv) +STUB( + "mPR4hB6SVQo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE5emptyEv) +STUB("mPRFA5CE48g", glDeleteBuffers) +STUB("mPTDt67f7lU", _ZN3sce3pss4core7runtime6serial16InitializeCsharpEv) +STUB("mPW0ZpjRwEg", _ZN11GvMp4Parser6Common11Utf16ToUtf8EPKwPSsi) +STUB( + "mPYD8Kac8nY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) STUB("mPYKD12UDQI", sceRegMgrGetInt) STUB("mPYgU4oYpuY", sceNgs2SystemCreateWithAllocator) STUB("mPdonXVe31M", sceSulphaGetConnectedClientCount) +STUB( + "mPdpq8fK-wQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE5beginEv) +STUB("mPe+gxeE3IM", + _ZN7WebCore6Editor28replaceRangeForSpellCheckingERKNS_11SimpleRangeERKN3WTF6StringE) +STUB( + "mPe4erC4jh4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEC2EPKS8_) +STUB("mPhKZ8kT9A0", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_16SessionAttributeEEC2Ev) +STUB( + "mPlwuVmsnL0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEE7add_refEv) +STUB("mPorOjIR5M4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy17TrophyPackSummaryEE3getEv) STUB("mPpPxv5CZt4", sceSystemServiceGetHdrToneMapLuminance) +STUB( + "mPsvM1nNnfM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEptEv) +STUB("mPusYnMBT7M", mono_image_close) +STUB( + "mQ0BwOa+MjY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEmmEv) STUB("mQ16-QdKv7k", sceAmprAprCommandBufferReadFile) +STUB("mQBD4RanvTc", curl_multi_add_handle) +STUB("mQCm5NmJORg", _ZTSPDs) +STUB("mQJL3KgJ-FU", _ZN12video_parser5vpcom5FlushE) +STUB("mQJwca6ELho", _ZN7WebCore21NetworkStorageSession7forEachERKN3WTF8FunctionIFvRKS0_EEE) +STUB("mQOmuuuwvXk", WKViewAccessibilityFocusedObject) +STUB("mQPLN+TiRDo", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead28setReservationTimeoutSecondsERKi) +STUB("mQRgWho9vFo", _ZN3sce7Toolkit2NP21TusGetVarsInputParamsC2Ev) STUB("mQU19DRkeyI", sceNpManagerIntCheckSignin) +STUB("mQUuF7HMrSo", _ZNK23sceMetadataReaderWriter8Metadata15checkWriteFieldEiRS0_S1_) +STUB("mQYQAi8B0Yo", FTA_Export_Module_pfr) +STUB( + "mQedfhZzF2k", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEplEm) +STUB("mQf+iu0AG4M", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12BlockedUsersEED1Ev) +STUB( + "mQfTgWuG0FA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB("mQfnDV63lo0", _ZL17unexpectedHandler) +STUB( + "mQiq1dt+n3U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEE11get_deleterEv) +STUB( + "mQmiM05vW14", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS5_INS7_9RecordApi26RecordScoreResponseHeadersEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("mQo0ovALpKM", _ZNK7WebCore20TransformationMatrix7inverseEv) +STUB("mQwyBMwgRRw", _ZN7WebCore13HitTestResultC2ERKNS_15HitTestLocationE) +STUB("mQxh1QCEoG8", + _ZN7WebCore23ApplicationCacheStorage23calculateQuotaForOriginERKNS_14SecurityOriginERl) +STUB( + "mQyrts29X2w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEEC2Ev) +STUB( + "mR2A3nYCc1M", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEdeEv) +STUB( + "mR2TcU8G3n0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEC1Ev) +STUB( + "mR36jJSaabw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEED1Ev) +STUB("mR5E8sI836g", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets17setplatformFilterEPKc) +STUB("mR8s6wwY1Iw", uset_openEmpty_67) +STUB("mR96RU8TVmY", ubidi_getLogicalRun_67) STUB("mR9j7+SfM34", sceAgcDcbDrawIndexMultiInstancedGetSize) +STUB( + "mRC4Si+1pmw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEEC2ERSA_) +STUB("mRFdWqJ2FdE", Java_java_awt_GnmGraphicsConfiguration_createBufferedImageObject) +STUB("mRG-rE2hclo", mos) +STUB( + "mRGAsj6EV3Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("mRKiJMWWMHo", usearch_next_59) +STUB( + "mRMiFWdUaRk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEmmEi) +STUB("mRQXgXKYsCo", _ZN7WebCore16DatabaseProviderD0Ev) +STUB("mRX62Ymdb6o", _ZN7WebCore24CoordinatedGraphicsLayer17setContentsOpaqueEb) +STUB("mRYtMJ1AGU8", _ZN7WebCore21DiagnosticLoggingKeys21domainCausingCrashKeyEv) +STUB( + "mRaKZ1GRZ5k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEppEv) +STUB( + "mReWaiETx2A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEEcvbEv) +STUB("mRfac50Rcow", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking10UsersRanksEED2Ev) STUB("mRfyqqkg8w8", sceKernelExpectedHddFormat) +STUB( + "mRgy3QhFRX0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEED1Ev) +STUB( + "mRhtAKP3aA0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("mRhvcY+j95s", mono_aot_Sce_Vsh_Friendjit_got) +STUB( + "mRnh+qJ7na4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEC1EPS6_PNS2_10LibContextE) +STUB("mRs5pc7rH-A", delegate_virtual_invoke_imt_m_16_p) +STUB( + "mRtANQPFqFU", + _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody21leaderPrivilegesIsSetEv) +STUB("mRx65MNGuX8", _ZN8meta_gen13JpegRetriever19JPEGPROM_MON_OFFSETE) STUB("mRzJ8r-qths", sceFontGraphicsFindIndexedVertexesGlyph) +STUB( + "mS+5yOvycf8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEC1EPKS8_) +STUB("mS6AlOGb31k", ucal_equivalentTo_67) +STUB("mS8j1EcK2tk", _ZNK7WebCore17JSDOMGlobalObject13worldIsNormalEv) +STUB( + "mS9eddVR38E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEC1EPKS8_) +STUB( + "mSF0zl5qwro", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE15receiveResponseEv) STUB("mSG2okSQ7lI", sceCesUcsProfileInitEucCnGb2312) +STUB( + "mSJkOnMPPxE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEptEv) +STUB( + "mSJzJlq+Vu8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEC2EPS8_) +STUB( + "mSM-Qy4oFi0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEED2Ev) +STUB( + "mSMPotGYEw4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEE3getEv) +STUB("mSOLUUZCZfo", + _ZN3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayer12setAccountIdEPKc) +STUB("mSObVAW3pN4", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIiEdeEv) +STUB( + "mSPz-0uZQWY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEC1Ev) STUB("mSQCxzWTwVI", sceHttpsDisableOption) +STUB( + "mSZ02sS0kjU", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEED2Ev) +STUB("mSda1B-vfkM", cairo_line_to) +STUB("mSf7SeU8r84", mono_aot_Sce_Vsh_ErrorDialogUtilWrapperunbox_trampolines_end) +STUB( + "mSjW+QtDyTQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEE3getEv) +STUB( + "mSkeMF00tZc", + _ZN3sce2Np9CppWebApi11Matchmaking2V134ListUserTicketsResponseBodyFactory7destroyEPNS3_27ListUserTicketsResponseBodyE) +STUB("mSohbeE5Qfk", WKPreferencesGetWebArchiveDebugModeEnabled) +STUB( + "mSpc7s56QKU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEneERKS9_) +STUB( + "mSqv29YC1Fc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) STUB("mStuvI0zOtc", sceAgcDcbDrawIndexIndirectGetSize) +STUB( + "mSxj24NbAFI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEE3getEv) +STUB( + "mT4kyrBw85Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEppEv) +STUB("mT7vO8xIu9g", g_utf8_validate) +STUB("mT9cSJ5H6Zw", _ZN3JSC8Debugger17didEvaluateScriptEN3WTF7SecondsENS_15ProfilingReasonE) +STUB( + "mTAQxSH2aR4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB("mTBZfEal2Bw", mlock) +STUB("mTE03EGFd1E", _ZN3sce2Np9CppWebApi13InGameCatalog2V515ContainerRating8getCountEv) +STUB("mTETTrzNSXM", _ZN7WebCore15ScrollAlignment17alignCenterAlwaysE) +STUB( + "mTSLD8sbsx0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE7popBackEv) +STUB("mTUZfpGBKD4", _ZN3JSC9Structure16isValidPrototypeENS_7JSValueE) +STUB( + "mTVIQTyDrtM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEEC2ERSA_) +STUB( + "mTW6owhjJc0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE3endEv) +STUB( + "mTYA7Fgn6g4", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeader37unsetxPSNSESSIONMANAGERNONPSNCALLERIDEv) STUB("mTZxVC3pebc", sceShellCoreUtilIsInternalKratosUser) STUB("mTbfxl-F9qo", scePerfPmcL2iGetCounter) +STUB("mTcFOuWRrhw", glStencilOpSeparate) +STUB( + "mTcMd-2kivA", + _ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime13ObjectPreview4TypeEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE) +STUB( + "mTdwsiRfpf4", + _ZN3sce2Np9CppWebApi7Matches2V127RequestTeamStatisticFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_20RequestTeamStatisticEEE) +STUB( + "mTj+ChZ5s4c", + _ZN3sce2Np9CppWebApi13InGameCatalog2V516ContainerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_9ContainerEEE) +STUB("mTtjRgg29wQ", _ZN3WTF13MetaAllocator8allocateEmPv) +STUB( + "mU+2iXrDUIU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE3endEv) +STUB("mU-QJxULXgk", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession20nonPsnSupportedIsSetEv) +STUB( + "mU0tlragSvw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEED2Ev) +STUB( + "mU2389ADtJ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEE5resetEPS9_) +STUB( + "mU2zOgpHTBI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEdeEv) +STUB("mU88GYCirhI", _ZNSt10moneypunctIcLb0EE7_GetcatEPPKNSt6locale5facetEPKS1_) +STUB( + "mU9yxtknf4o", + _ZN3sce2Np9CppWebApi14SessionManager2V129GameSessionPushContextFactory7destroyEPNS3_22GameSessionPushContextE) +STUB( + "mUHhxw6hIrQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEC1Ev) +STUB("mUIK7pE9oSQ", + _ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionMemberPlayer16getNonPsnPlayersEv) +STUB( + "mUIxbkhc63g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEE7get_refEv) +STUB("mUN6qPpyBS8", _ZN3JSC11VMInspector6edenGCEPNS_9ExecStateE) +STUB("mUNgfT4aGQs", _ZNK7WebCore23FrameLoaderStateMachine23committingFirstRealLoadEv) +STUB("mUQG6ux03z4", curl_mime_init) +STUB("mUQg2FYG6Qs", mono_aot_Sce_Vsh_RnpsAppMgrWrapperjit_code_start) STUB("mUU363n4yc0", sceHttpUriSweepPath) +STUB("mUbTjStoCK8", _ZN7WebCore11MathMLNames12numalignAttrE) STUB("mUcn35JWAvI", sceNpManagerIntGetAccountCountrySdk) +STUB( + "mUesyFAm3Xg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEdeEv) +STUB( + "mUf4RqwiYWk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEEC2ERSA_) +STUB("mUft23Sr2KU", _ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody11getTicketIdEv) +STUB( + "mUgGd90OjgQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "mUgPX5mKFf4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) STUB("mUgTynRdg-s", sceSdmaCopyWindowTiled) +STUB("mUhokLJF90Y", _ZN3sce7Toolkit2NP2V27NpUtils5IdMapC2ERKS4_) +STUB( + "mUiRMrZVapE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEEC1Ev) +STUB( + "mUoaNvxznHs", + _ZN7WebCore4Page21replaceRangesWithTextERKN3WTF6VectorINS_11SimpleRangeELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEERKNS1_6StringEb) +STUB("mUtGD4Sa7i4", _ZNK3WTF7CString4hashEv) STUB("mUuUOWI-C+0", sceConvertKeycodeGetImeKeyboardType) +STUB("mUvnZv0tgS4", _ZN3WTF11Persistence5CoderINS_7CStringEE6encodeERNS0_7EncoderERKS2_) +STUB("mUxaQg9v4ns", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE3endEv) +STUB("mUy-LEiEf9k", + _ZN7WebCore27PlatformMediaSessionManager14addRestrictionENS_20PlatformMediaSession9MediaTypeEj) +STUB("mV0brl0huq4", _ZN12video_parser5vpcom5OpenTE) +STUB("mV3PKml1+B4", + _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest17setNpServiceLabelERKi) +STUB( + "mV4LuMoN0gA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE5clearEv) +STUB( + "mVAxPAejYS0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEC1Ev) +STUB( + "mVCB207-Ng4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEC1Ev) STUB("mVDzAtQrtls", scePktMgrGetDeciHeader) +STUB("mVIGx-MERdY", _ZN3sce7Toolkit2NP2V26Friend7FriendsaSERKS4_) +STUB("mVKcd5NwiWE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEED1Ev) +STUB("mVKtC00ZKhk", _ZNK7WebCore3URL17lastPathComponentEv) +STUB("mVU3F9ZQgus", DES_set_key) +STUB("mVYxeYUaohc", _ZN7WebCore10JSLocation9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "mVciJ77Zp5w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE5beginEv) +STUB("mVjsa3gFRbU", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error29unsetValidationConstraintInfoEv) +STUB( + "mVkGOZ3Dp7I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEED2Ev) +STUB( + "mVnrLC3WC3E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEppEv) +STUB("mVoWS3zTfxs", WKHTTPCookieStoreDeleteAllCookies) +STUB("mVq7aMGu2oE", rgctx_fetch_trampoline_rgctx_48) +STUB( + "mVw3x5R0m+0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "mW1L9iSSZOw", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectator30unsetxPsnAcceptPlatformNamePs5Ev) STUB("mW3EHwAVHPA", sceMusicPlayerServiceCreateTrackList) +STUB( + "mW8CTvYcOos", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEED1Ev) +STUB("mW8gkZwXdK4", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetailC2ERS5_) +STUB("mWAh20oTnyg", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIjEC2EPKj) +STUB( + "mWCSosOx8AM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE8pushBackERKS8_) +STUB( + "mWCWm+d+sa0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEdeEv) +STUB("mWHQR9TI4wQ", _ZN7WebCore9DragImageC2Ev) +STUB("mWLV3O8hHw0", _ZN3sce7Toolkit2NP2V27NpUtils7Request19DisplaySigninDialogC2Ev) +STUB("mWPqGWtWjfw", _ZN10MsvUpdaterD0Ev) +STUB("mWRHF5xdnlY", __asan_get_shadow_mapping) +STUB("mWUESJ+J8ws", monoeg_g_slist_reverse) +STUB( + "mWdI3PSj8ZQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEC2ERKS7_) +STUB("mWmEo3ddFA0", _ZN7WebCore21DiagnosticLoggingKeys24activeInForegroundTabKeyEv) +STUB( + "mWnJJFmWDlM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB("mWoN0zovYyc", _ZNK7WebCore6Region5Shape7isValidEv) +STUB("mWqDcrQUvkY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEC1Ev) STUB("mWtsnHY8JZg", sceNpTrophySystemOpenStorage) +STUB( + "mWuhj8aGC6c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE21intrusive_ptr_add_refEPS9_) +STUB("mWwngKrjBww", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEC1Ev) +STUB("mWx34BXg7VM", monoeg_g_string_append_vprintf) +STUB("mWzuA-LRFmE", _ZN7WebCore11DisplayList11DrawingItemD1Ev) +STUB("mX-OUk8tti8", u_strrstr_67) +STUB("mX-WVA8pNsg", _ZN7WebCore11DisplayList8DrawPathD2Ev) +STUB("mX2cjtETZtI", _ZNK9Inspector14ConsoleMessage4typeEv) +STUB( + "mX49cNvXaZU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE5beginEv) +STUB( + "mX5Lv99V7ac", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V117DataStatusFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_10DataStatusEEE) +STUB("mX7jg1kvaNI", _ZNK3WTF9MediaTime9isBetweenERKS0_S2_) +STUB("mXJwKDDXQ3s", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS12TusVariablesEE3getEv) +STUB( + "mXQytGNQ-s8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEdeEv) STUB("mXTBaSe0p6E", sceRegMgrEvtGetRegIdForPS4) +STUB( + "mXVaTrd-fVA", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessions13isInitializedEv) +STUB( + "mXWJViZXXb8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) STUB("mXZi1D2xwZE", sceNpTusAddAndGetVariableForCrossSaveAsync) +STUB("mXZt0-hxj5M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEC2Ev) +STUB( + "mXbbdrkdS-Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEeqERKS9_) +STUB("mXiNQDB1-Sc", ucnv_convertEx_67) +STUB( + "mXjMhqm6O4Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEcvbEv) +STUB("mXlxhmLNMPg", strtol) +STUB( + "mXmlM2X+fJw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEC2Ev) STUB("mXn+K9E-wOA", sceAgcDriverGetResourceShaderGuid) +STUB("mXn5CBStvsE", qr5) +STUB("mXq+6gFZ4ow", il2cpp_runtime_unhandled_exception_policy_set) +STUB( + "mXqcN0Pw1dA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB("mXrxANy2IXg", + _ZN3sce2Np9CppWebApi7Matches2V124ResponseMatchTeamFactory7destroyEPNS3_17ResponseMatchTeamE) +STUB( + "mXxiolu+wlo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEC1EPS6_PNS2_10LibContextE) +STUB("mY5RbYVLzr4", u_isJavaSpaceChar) +STUB("mY9FWooxqJY", + _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewb) +STUB("mYA73TXJq6I", _ZN7WebCore10ScrollView4showEv) +STUB("mYE4gR3vmjQ", rgctx_fetch_trampoline_mrgctx_46_p) +STUB( + "mYIPQzOSYKQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEE7get_refEv) +STUB( + "mYM99IZArhk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEED2Ev) +STUB("mYML9wZ+OlA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEC1Ev) +STUB("mYTFNd3Xdmw", u_strcat_67) +STUB("mYUENHsJfe0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEptEv) +STUB( + "mYYuSwFtwEw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEC1ERKS7_) +STUB("mYaWSJuvtg4", _ZNK7WebCore6Editor12selectedTextEt) +STUB( + "mYanXKFFmyI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE6resizeEj) STUB("mYhbiRtkE1Y", sceNpTusDeleteMultiSlotVariable) +STUB("mYmcfdHwjtw", __ubsan_handle_invalid_builtin_abort) +STUB("mYo06zO7G3c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEED1Ev) +STUB( + "mYtRfKxGxvQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEE7add_refEv) +STUB("mYtSQ0aq2mA", _ZN3sce7Toolkit2NP2V210Tournament6Events5resetEv) +STUB("mYuf10s9APM", _ZN7WebCore22EmptyFrameLoaderClient30dispatchDidPushStateWithinPageEv) +STUB("mYw-ELNDTOg", _ZN7WebCore14SocketProviderD2Ev) +STUB( + "mZ3yKuVuXh0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEneERKS9_) +STUB( + "mZ4ml-01C1s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("mZ6rSjwVmBM", delegate_invoke_impl_target_3_p) +STUB("mZCIdRQX2zM", _ZN7WebCore17PageConsoleClient7profileEPN3JSC14JSGlobalObjectERKN3WTF6StringE) +STUB( + "mZGu3IVzPK4", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi17getUserActivitiesEiRKNS5_28ParameterToGetUserActivitiesERNS1_6Common11TransactionINS9_12IntrusivePtrINS4_26GetUsersActivitiesResponseEEENSB_INS9_18ResponseHeaderBaseEEEEE) +STUB("mZKtksgqmiQ", _ZN7WebCore9InlineBox14adjustPositionEff) +STUB( + "mZOka+M8HRI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEEC2ERSA_) +STUB("mZQNSovP058", WKViewSetActive) STUB("mZSbNJVJpV8", sceAmprAprCommandBufferReadFileGather) +STUB("mZT9yPjjm4Y", copyright_message) +STUB( + "mZW-My-zemM", + _ZZNKSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8_GetmfldERS3_S5_bRSt8ios_basePcE4_Src) +STUB("mZaw3JtFNPY", _ZN7WebCore16HTMLMediaElement14setCurrentTimeEd) +STUB( + "mZfVyAWV0S8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("mZkLVvKk+S4", _ZN3JSC7Symbols23appendMemcpyPrivateNameE) +STUB("mZlElqorITk", ktimer_gettime) +STUB( + "mZpnKWTHzMQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE5beginEv) +STUB( + "mZsKoSv2yYQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEppEv) +STUB( + "mZxR56GIXBk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEptEv) STUB("ma2OmJRhSPM", scePerfTracePmAddBufferNotifyEvent) +STUB("ma5sr496itk", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats20frequentlyMutedIsSetEv) +STUB( + "ma9Z8ooKPe0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEEC1Ev) +STUB("maIRvng3S8w", + _ZN7WebCore24CoordinatedGraphicsLayer42findFirstDescendantWithContentsRecursivelyEv) +STUB("maMufPLg+ZM", _Z12DbgPrintDumpPvj) +STUB( + "maRP+XW9P5w", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEneERKS9_) +STUB("maW5cbhbYTY", + _ZN7WebCore17JSDOMRectReadOnly15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB( + "macGsB4kSp4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEeqERKS9_) +STUB( + "macqYvf1Glg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE6resizeEj) +STUB( + "mafGZms72a8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEC1Ev) +STUB( + "majhojqP4lA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEppEv) +STUB( + "mak5thxbli8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEEC1ERKSA_) +STUB( + "makW6W6BGUw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEED1Ev) +STUB( + "maqkBx9nyic", + _ZN9Inspector15ScriptCallStackC1ERN3WTF6VectorINS_15ScriptCallFrameELm0ENS1_15CrashOnOverflowELm16EEE) +STUB( + "maxrfpzzr4U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEE11get_deleterEv) +STUB( + "mayYrZnvcGE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB( + "maz+IM2npKY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE7popBackEv) +STUB("mb4bdMeFRs8", cairo_scaled_font_reference) +STUB("mb6R-w+qlok", + _ZN7WebCore11MemoryCache18resourceForRequestERKNS_15ResourceRequestEN3PAL9SessionIDE) +STUB("mb6purhxZEE", _ZN3JSC7Symbols35regExpStringIteratorDonePrivateNameE) +STUB("mbAfGkDOGyY", il2cpp_property_get_name) +STUB("mbB02o4HFyc", _ZN3JSC7Symbols19padStartPrivateNameE) +STUB( + "mbCOFLvjGzY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEC2EPS9_) +STUB( + "mbCSx+iYNvc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEEptEv) +STUB( + "mbFIUPJ97RI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEE7get_refEv) +STUB("mbGmSOLXgN0", _ZNSt10moneypunctIcLb0EED2Ev) STUB("mbJHDdjhVeY", scePadVrControllerGetDeviceInformation) +STUB("mbJRq5SJww4", _ZNK7WebCore22CSSAnimationController17animationIntervalEv) STUB("mbMZ7F+s8oM", scePssMusicPlayerGetLoopFramePos) +STUB("mbMnspiwIvc", rgctx_fetch_trampoline_mrgctx_70) STUB("mbOc0mgE4GI", sceSystemServiceChangeClock) +STUB("mbOmEAZh82k", jpeg_free_large) +STUB( + "mbUUWzA8wHs", + _ZN9Inspector14ConsoleMessageC1EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelERKN3WTF6StringEONS5_3RefINS_15ScriptArgumentsENS5_13DumbPtrTraitsISA_EEEEONS9_INS_15ScriptCallStackENSB_ISF_EEEEm) +STUB("mbVsMdOmBuE", _ZN3sce7Toolkit2NP2V211SocialMedia7Request7PhotoFb25MAX_PHOTO_DESCRIPTION_LENE) +STUB( + "mbWsAJAgLu0", + _ZN9Inspector23TargetBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) +STUB( + "mbZXecxuq5c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEC1Ev) STUB("mbakKLPSO4o", sceContentExportFromFileWithThumbnail) +STUB("mbd08Y2w+gs", _ZN10Deprecated11ScriptValueC2ERN3JSC2VMENS1_7JSValueE) +STUB( + "mbdGnNb9n3Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEEC2Ev) +STUB("mbf+avPjVQ4", _ZN3JSC7Symbols34putPromiseInternalFieldPrivateNameE) +STUB("mbgiD2aLEyY", _ZN3sce7Toolkit2NP9Utilities6FutureI7SceNpIdEC1Ev) +STUB( + "mbh1VIHTutY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEE7add_refEv) +STUB( + "mbiYzj2mKVo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEcvbEv) +STUB("mbkFEPSSyFU", __asan_store4_noabort) +STUB("mbmBBltWhjU", _ZN7WebCore8SVGNames11viewBoxAttrE) +STUB( + "mbqkAl4gt0Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEE11release_refEv) +STUB( + "mbvvl0rvNEU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "mbx5Ymz2vRs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEEC2Ev) +STUB( + "mc04AVPrXgY", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("mc2Ulvzkoz8", _ZN3JSC17DeferredWorkTimer16stopRunningTasksEv) +STUB( + "mc9VTudRUZE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEED2Ev) +STUB( + "mcH2bIhoWaQ", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB("mcHjNU1s-LI", _ZN9Inspector27AnimationFrontendDispatcherdaEPv) +STUB( + "mcJZ8UIGJEw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEE5resetEPS7_) +STUB("mcNDtYT3-2A", ReadZStream) +STUB("mcOkVwJvgME", _ZN14OpaqueJSString9tryCreateEON3WTF6StringE) +STUB( + "mcPL9zN6X5I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE8capacityEv) +STUB("mcSn9+r5mrg", u_isblank_67) +STUB("mcT796Qgj+g", FT_Stream_ReadULong) +STUB("mcTQq+l8Ppo", _ZN7WebCore4PathC1Ev) +STUB("mcTU+vOdhiQ", ures_resetIterator_67) +STUB( + "mcUSHy7UFdg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEEaSERSA_) +STUB("mcUl2+5JTmc", mono_set_config_dir) +STUB( + "mcUp-nJ-+DA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEEaSERSA_) +STUB( + "mcVR4S5PuhY", + _ZN3sce2Np9CppWebApi14SessionManager2V167PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_60PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEE) +STUB( + "mcVR86OUL-Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE3endEv) +STUB( + "mcWmbcCwKtA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEC2EPS8_) +STUB("mcWtDgxzRgc", _ZN3JSC10ConfigFileC2EPKc) +STUB( + "mcXUtdAhds8", + _ZNK3sce2Np9CppWebApi14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBody16invitationsIsSetEv) +STUB("mcYVamD0JVM", EVP_aes_256_wrap) +STUB("mcaOJPNnVuA", _ZN3sce7Toolkit2NP2V210Tournament25BracketInformationOfMatchaSERKS4_) +STUB( + "mcfyXdX3ZIo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "mchngS8anLw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEE7add_refEv) +STUB( + "mciNZtOn-2E", + _ZN9Inspector22InspectorDebuggerAgent20didScheduleAsyncCallEPN3JSC14JSGlobalObjectENS0_13AsyncCallTypeEib) +STUB("mcknpnBjZcY", _ZN7WebCore9HTMLNames8listAttrE) +STUB("mcl1c9fyyKs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEE5resetEPS6_) +STUB( + "mcqQ4jBlPP8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEE7get_refEv) +STUB("mctENQO0iGk", _ZN3sce2Np9CppWebApi11UserProfile2V15Error10setMessageEPKc) +STUB("mctaJ9po8Vk", _ZN7WebCore14DocumentLoader25didGetLoadDecisionForIconEbmm) STUB("mcxYlyKZQr0", sceNpSnsIntCheckServiceAvailability) +STUB("md-340++Yfw", rgctx_fetch_trampoline_mrgctx_32) +STUB("md5zoSWseNM", _ZN9Inspector32DatabaseBackendDispatcherHandleraSERKS0_) +STUB("mdGgLADsq8A", __divdf3) +STUB("mdIPQKe4lRI", _ZNK7WebCore22SkewTransformOperation4dumpERN3WTF10TextStreamE) +STUB("mdJgdwoM0Mo", _ZNK3sce16CommonDialogUtil6Client8getAppIdEv) +STUB("mdJr3sGWWoU", WKInspectorToggleElementSelection) +STUB("mdLGxBXl6nk", __gesf2) +STUB("mdMawHAHVMc", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer8setlimitEi) +STUB( + "mdP3MEkZHcw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEaSERKS9_) +STUB( + "mdRC21RQxeE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE5emptyEv) STUB("mdUPwgHRqss", sceRazorCpuStopCapture) +STUB("mdUiIw+I9Xc", ucol_secondaryOrder_67) +STUB("mdYczJb+bb0", _ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1ERKSt8_Locinfom) +STUB( + "mdbPThcwWqY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEEC2ERKSA_) +STUB( + "mdblc4eyl50", + _ZN3sce7Toolkit2NP7NetInfo9Interface16getBandwidthInfoEPNS1_9Utilities6FutureI24SceNpBandwidthTestResultEE) STUB("mdc++HCXSsQ", sceHmdInternalDfuSend) +STUB("mdcx6KcRIkE", _ZNSt14numeric_limitsIwE8digits10E) +STUB("mddy1zct34Q", + _ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody20startSerialRankIsSetEv) +STUB( + "mdgN0xi70-M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEEC1Ev) +STUB( + "mdiiGQ+j-Sw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEppEi) +STUB( + "mdmc39KmVsE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEeqERKS9_) +STUB("mdn4y4jvZTQ", pio2_1thi) +STUB("mdoGohzjCsY", _ZNK7WebCore9FrameTree14isDescendantOfEPKNS_5FrameE) +STUB( + "mdphM5sBsjc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("mdq+8JZmhMo", WKBundleGetOSAllocatorStatistics) +STUB( + "mdsjR6ntZOc", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_14ScriptProfiler9EventTypeEEEN3WTF8OptionalIT_EERKNS5_6StringE) STUB("mdtW4Mnp4ZM", sceKernelEndAppMount) +STUB("mdwtkp-FqnI", _ZN7WebCore16TrackPrivateBasenaEm) STUB("mdyFbaJj66M", sceHmdReprojectionClearUserEventStart) +STUB("me+5VXmudjU", _ZN7WebCore16JSXMLHttpRequest9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "meC6Qbc4qjw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("meEDFqE1AbE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEC1ERKS7_) STUB("meEjIdbjAA0", sceNpMatching2SetUserInfo) STUB("meFMaDpdsVI", sceNetCtlApClearEvent) +STUB("meFowhylT54", _ZN7WebCore15JSSVGSVGElement14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB("meIjK6xCa4M", _ZNK7WebCore7IntSize18constrainedBetweenERKS0_S2_) +STUB("meKfwBKCN9A", _ZN7WebCore28InspectorFrontendClientLocal12openInNewTabERKN3WTF6StringE) +STUB("meKvQ+6iQ7U", GCC_except_table38) +STUB("meOi6uOdMGo", mono_aot_Sce_Vsh_ShellUIUtilWrapperunwind_info) +STUB( + "mePfeJyE2oI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEE3getEv) +STUB( + "meQ+WF95qH4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEC2EPKS8_) +STUB( + "meS23Mofvq4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE5clearEv) +STUB("meSO23PI608", mono_aot_System_Datajit_code_end) STUB("meXSAmyPBUE", sceCompositorCreateIndirectRenderTarget) +STUB("meZ2WMyv4mk", utrie_swap) +STUB( + "mebREbmAwkw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("mebh05x-AVA", _ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody12unsetCommentEv) +STUB("mehR8tSlxa0", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEEC2Ev) +STUB( + "mehklQwgEnk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEEC2ERKSA_) +STUB("mei8gr7fdfc", _ZN7WebCore8SVGNames8nameAttrE) +STUB("meiEHuAdHxo", _ZN2sh17ConstructCompilerEj12ShShaderSpec14ShShaderOutputPK18ShBuiltInResources) STUB("meiO-5ZCVIE", sceGnmGetCoredumpMode) +STUB("meqxJE9meE8", _ZN4Manx11MediaPlayer5pauseEv) +STUB("mesz2DXnnm8", ucasemap_utf8FoldCase_67) STUB("meuwG2Ym0Pk", sceNpManagerIntCheckTitlePatch) +STUB("mevhH+2IP8Q", _ZN7WebCore21DiagnosticLoggingKeys22cacheControlNoStoreKeyEv) +STUB("mewKQXPDHYA", uhash_compareScriptSet_67) +STUB("mexc7X4nBFQ", _ZN12video_parser12cVpFileCache10validCacheEx) +STUB("mezh2RA6bAM", _ZN3WTF9MediaTime15createWithFloatEfj) +STUB("mf6n1uCzOY8", WKBundleHitTestResultCopyLinkSuggestedFilename) STUB("mfHdJTIvhuo", sceLibcMspaceMallocStats) +STUB("mfJBpJ+qoLA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEED1Ev) +STUB( + "mfMH9-vhg08", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEEiRNS2_10LibContextEPT_m) +STUB( + "mfb0FW+jLqo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEmmEi) +STUB("mfbOiuhry-o", _ZNK7WebCore11MediaPlayer17platformErrorCodeEv) +STUB( + "mfeipgBf+ik", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB("mfg+QBFqHGA", _ZN3sce2Np9CppWebApi7Matches2V15Error11unsetReasonEv) +STUB( + "mfi-br2o2ow", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEplEm) +STUB("mfl9H9FLZeQ", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadDataC2Ev) +STUB( + "mfmjMlxelR4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "mfs5C4RDk7c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "mfsiKgM1X2c", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "mftJlHyqmqo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEmmEv) +STUB("mfuV9TYJxQI", delegate_virtual_invoke_imt_m_10) STUB("mfxElr79O7Q", sceVideoOutSysIsSupportedByMonitorInfo_) +STUB( + "mg-4TDtB0cA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "mg1i5nMl6-s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEmmEi) +STUB( + "mg9DJM+QfDE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEC2Ev) +STUB("mgFnQx7tp0M", _ZN7WebCore22EmptyFrameLoaderClientD2Ev) +STUB("mgFuLMJg7cY", _ZN10Deprecated18ScriptFunctionCallD2Ev) STUB("mgKTS0PIvd8", sceSlimglCompositorAllocateIndex) +STUB( + "mgLr7cAr0dM", + _ZN7WebCore8Document17addConsoleMessageEOSt10unique_ptrIN9Inspector14ConsoleMessageESt14default_deleteIS3_EE) +STUB("mgNAFnYj41Q", _ZNK7WebCore14LoggedInStatus10hasExpiredEv) +STUB("mgNGxmJltOY", _Closreg) +STUB( + "mgQ35+FRPnQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEeqERKS9_) STUB("mgTL+L1bGqU", sceNpManagerIntLoginGetWebAccessTokenByClientId) +STUB( + "mgU7W9Go9Yg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEEC1EPSA_PNS2_10LibContextE) +STUB( + "mgaeI7yJCh0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEEptEv) +STUB("mger8+MD62Y", fuse_reply_write) +STUB( + "mglXipH6Zl8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE21intrusive_ptr_sub_refEPS9_) +STUB("mgs+n71u35Y", SSL_connectWithCfgParam) +STUB("mh-o6enVZ-Y", _ZNK7WebCore19InspectorController13drawHighlightERNS_15GraphicsContextE) +STUB("mh0OvdefVzI", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V15Owner11getOnlineIdEv) +STUB("mh0yBFI4Hmk", + _ZN7WebCore11RenderLayer14scrollToOffsetERKNS_8IntPointENS_10ScrollTypeENS_14ScrollClampingE) +STUB( + "mh3GYR-WvxE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEppEv) +STUB("mh9Jro0tcjg", _ZTSSt7_MpunctIwE) STUB("mhAfefP9m2g", sceAudioInExtCtrl) +STUB("mhBjKWf7rGE", _ZN9Inspector26TimelineFrontendDispatcherC1ERNS_14FrontendRouterE) +STUB("mhD00YrjSbg", deflateReset) +STUB( + "mhEGZurL2Rs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEEcvbEv) +STUB("mhIInD5nz8I", __addsf3) +STUB("mhK+E1i3VuE", FTA_Add_Module_otvalid) STUB("mhKZJqhGnXg", sceVideodec2QueryLibraryInfo) +STUB("mhLGIWhMLlk", + _ZN15AbstractStorage14StorageManager18UnregisterListenerEPKNS_17ItemEventListenerE) +STUB( + "mhOYhNpZGfQ", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead9setMemberERKNS1_6Common12IntrusivePtrINS3_26PlayerSessionMemberForReadEEE) +STUB("mhPMQfAiaZU", _ZN7WebCore9HTMLNames12expandedAttrE) +STUB("mhR3IufA7fE", _ZSt10defer_lock) STUB("mhWeZyEHlKQ", sceClPthreadExit) +STUB( + "mhbcAlHHots", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE5emptyEv) +STUB( + "mhc1KUJnqJI", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData21hasxPsnNpServiceLabelEv) +STUB("mhfsMd287UI", _ZN3JSC8JSObject13visitChildrenEPNS_6JSCellERNS_11SlotVisitorE) +STUB("mhhBo88nvTU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEED2Ev) +STUB( + "mhijqs9wYpQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEE5resetEPS9_) STUB("mhj9gAxCEqM", sceFiosDebugSetProfileCallback) +STUB( + "mhjxe1Bi3Zo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEED2Ev) +STUB("mhk9cFFoeho", _ZN7WebCore17NowPlayingManagerC1Ev) STUB("mhlESqdehQY", sceCloudClientReset) +STUB("mhoxSElvH0E", _ZNSt10moneypunctIwLb0EE2idE) +STUB( + "mhpVmivdazc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEmmEv) +STUB("mhrZrdppmDc", + _ZN7WebCore20DecodeOrderSampleMap35findSyncSampleAfterPresentationTimeERKN3WTF9MediaTimeES4_) +STUB( + "mhs5ntoGBn8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEC1EPNS2_10LibContextE) +STUB( + "mhsoRAVp-EY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEC1Ev) +STUB( + "mhviITFdt+M", + _ZN9Inspector14InspectorAgent27didCreateFrontendAndBackendEPNS_14FrontendRouterEPNS_17BackendDispatcherE) +STUB( + "mhwdqb2jwFQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEppEv) +STUB( + "mhxPu0GdTGQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEE11get_deleterEv) +STUB("mhxeerdzqD4", _ZThn120_N7WebCore16HTMLMediaElement14beginScrubbingEv) +STUB( + "mhyvGsNUNLg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("mi75GvD9uq0", _ZN7WebCore11HTMLElement12setOuterTextERKN3WTF6StringE) +STUB("mi8ipN3nDyg", _ZN3WTF10SymbolImpl16createNullSymbolEv) +STUB("mi9hSzeuyAM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V511ContentTypeEEneERKS7_) STUB("miCg4z-c1Gc", sceSulphaSetBookmark) +STUB( + "miIdbqYIQwg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEEC2EPS9_PNS2_10LibContextE) STUB("miJIPnB2cfI", sceNpManagerIntClearVshAccessToken) +STUB( + "miJwNc4GoF4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEneERKS9_) STUB("miPa6vSAqos", sceKernelIsKratos) +STUB( + "miPfJxz3Lc8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEEC2ERSA_) +STUB("miQ1wVwSexE", getpriority) +STUB( + "miQDUGaOY6k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("miR5GweF1bI", _ZN3WTF10TextStream11writeIndentEv) +STUB("miRJUYf51k4", WKWebsiteDataStoreConfigurationCreate) +STUB("miT17KpoFN4", + _ZN7WebCore31BasicColorMatrixFilterOperationC1EdNS_15FilterOperation13OperationTypeE) +STUB("miVYGbk3LHs", _ZNK3sce3Xml3Dom8Document12getAttributeENS1_6NodeIdEPKNS0_6StringE) +STUB( + "miXcyNCnDMg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEEcvbEv) +STUB( + "miZk26sjVuw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEC2Ev) +STUB( + "miZnvYEIiZw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEE11release_refEv) +STUB( + "mibECvHufbQ", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_4Page7SettingEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB( + "mieJ+AVFBnQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("mihp249C15g", _ZN3WTF31NonSharedCharacterBreakIteratorD2Ev) +STUB( + "miiULkIk7Jw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("mip4rCepyCk", ucol_getKeywordValuesForLocale_59) +STUB("mir9WnxDvVI", _ZN3JSC13iteratorValueEPNS_14JSGlobalObjectENS_7JSValueE) +STUB( + "mivCpZxmDEI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("miwM3X1F+Zs", WKWebsiteDataStoreSetStatisticsTimeToLiveUserInteraction) +STUB( + "miyQxo-bU8o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("mj-41ijwDWI", _ZN7WebCore9HTMLNames8linkAttrE) +STUB("mj8JPPMIzYQ", _ZN7WebCore18PlatformTimeRanges6invertEv) +STUB( + "mjChPky6hL0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) STUB("mjFgpqNavHg", sceNetCtlApRpStart) +STUB( + "mjGnd5Rh-Us", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessions28getxPsnAcceptPlatformNamePs5Ev) +STUB( + "mjKEkExAL8E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEppEi) +STUB( + "mjMdRyFLQYo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEC2EPS8_) STUB("mjMsl838XM8", sceHmdInternalSetUserType) +STUB("mjOOBRtxx1c", _ZN7WebCore9URLParser19parseURLEncodedFormEN3WTF10StringViewE) +STUB( + "mjQLhtXYaLY", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer34hasxPSNSESSIONMANAGERREQUESTORIGINEv) +STUB("mjUKCkp5gsc", Java_java_net_PlainDatagramSocketImpl_datagramSocketCreate) +STUB("mjZXAF4auqQ", mono_get_exception_io) +STUB("mjaR1-gcxBM", _ZNK7WebCore11RenderStyle10lineHeightEv) +STUB("mjcI9VABYqw", PSNowSendCommand) +STUB( + "mjcTbsv9hmw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEeqERKS9_) +STUB( + "mjgvzvtytfg", + _ZN3sce2Np9CppWebApi14SessionManager2V124GameSessionPlayerFactory7destroyEPNS3_17GameSessionPlayerE) STUB("mjjTXh+NHWY", sceNpUnregisterStateCallback) +STUB("mjmDNEWc658", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE4sizeEv) +STUB( + "mjoanfY34dI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "mjqI6PzPl+w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "mjs26td005k", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB( + "mjug+A28+yw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEC2ERKS7_) +STUB("mjvL6jg7dVc", _ZN3sce7Toolkit2NP2V26Trophy7Request13SetScreenshot19MAX_NUMBER_TROPHIESE) +STUB("mjwEmBtj7sI", izrule_getNextStart_67) STUB("mjxFUp94LL4", sceNpSnsYouTubeDialogOpen) +STUB("mjzzjbY1XDM", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V113ErrorResponseD1Ev) +STUB( + "mk+bJkCO4+U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE7reserveEi) +STUB("mk-CrV2yVfw", _ZN22MmsMdCommonFsOperationD0Ev) +STUB("mk-apZiLe-0", _ZN9Inspector19InspectorAuditAgentC2ERNS_12AgentContextE) +STUB( + "mk0DNU-+9SE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEC2EPNS2_10LibContextE) +STUB( + "mk3tnaCUnbc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEE5resetEPS6_) +STUB("mk9eZXZydcQ", _ZN7WebCore11MathMLNames7msubTagE) +STUB("mkBpYa8GoaI", mono_aot_Sce_Vsh_PartyCommonjit_code_end) +STUB("mkFxjg4B3Dg", _m_acc) +STUB("mkI7vGRy-U4", _ZN7WebCore22EmptyFrameLoaderClient11prefetchDNSERKN3WTF6StringE) +STUB("mkLaODh2FTE", _ZN7WebCore7IntRectC1ERKNS_9FloatRectE) +STUB("mkMdmnmWONA", _ZNK7WebCore20LowPowerModeNotifier21isLowPowerModeEnabledEv) +STUB( + "mkOXpvBCbnA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEC1Ev) +STUB("mkRKhhHKm40", mono_aot_Sce_Vsh_VideoServiceWrappermethod_addresses) +STUB("mkRZB0Bt4O8", _ZN3JSC7Symbols27isTypedArrayViewPrivateNameE) +STUB( + "mkTnxn9h+lk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEEcvbEv) +STUB("mkVd4rmHPGY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEC2Ev) +STUB("mkWsKEh0h0o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEptEv) +STUB( + "mkYKpflQFp0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEC2Ev) +STUB("mkZZVt6In6c", _ZN7WebCore6Chrome23enableSuddenTerminationEv) STUB("mkawd0NA9ts", sysconf) +STUB("mkfHOxiBHWQ", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate8fromJsonERKNS_4Json5ValueE) STUB("mkgXxsoxWHg", sceKernelClearVirtualRangeName) +STUB( + "mkh-EDeLZO4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEppEv) +STUB("mkmgHfPc6+o", sqlite3_initialize) +STUB("mkmgcRnAJog", FT_GlyphLoader_CopyPoints) +STUB("mkpjgEX1F64", delegate_virtual_invoke_imt_1_p) +STUB("mku1GIeN1Fw", _ZNK3sce2Np9CppWebApi11UserProfile2V114PersonalDetail14firstNameIsSetEv) STUB("mkuqaH2p26Y", scePssKeyboardPushState) STUB("mkx2fVhNMsg", pthread_cond_broadcast) +STUB("ml0b4zTo2GA", _ZN3sce7Toolkit2NP2V28Matching7Request9LeaveRoomD2Ev) +STUB("ml5Wqa7VYlA", _ZThn120_NK7WebCore16HTMLMediaElement12playbackRateEv) +STUB("ml8KEf7kShQ", + _ZN7WebCore8Document7writelnEPS0_ON3WTF6VectorINS2_6StringELm0ENS2_15CrashOnOverflowELm16EEE) +STUB("ml8nITTjzF4", uhash_iremovei_67) STUB("mlBEgk9o0SE", sceContentBinderStart) +STUB("mlDPr5TaxQQ", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEED2Ev) +STUB( + "mlF4mVxWVHo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEC2Ev) +STUB( + "mlGXOT3vtls", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB( + "mlJLbNCQlzs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("mlL4YzHlNa4", + _ZN3WTF10StringImpl57convertToLowercaseWithoutLocaleStartingAtFailingIndex8BitEj) +STUB( + "mlRAo89gE0I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "mlW4cSbN-Wk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEED1Ev) +STUB( + "mlXAVjS5LvM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE5eraseENS2_8IteratorIS8_EERSB_) STUB("mlYGfmqE3fQ", sceSigninDialogInitialize) +STUB("mleFb07fnvo", Java_com_sony_bdjstack_javax_media_controls_SoundManager_getPanningFR) +STUB("mlf7RhgW6w4", jpeg_natural_order6) +STUB( + "mljkaZpffbQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEdeEv) STUB("mljzuGDZRQ4", sceAgcDcbSetIndexCountGetSize) +STUB( + "mlkKJXgqsfU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEaSERKS7_) +STUB("mll5UrllME0", _ZN3JSC11IsoSubspaceD2Ev) +STUB("mm0znr-xjqI", set_phys_fmem_limit) +STUB("mm4qQkjC13o", mono_jit_info_get_method) +STUB("mmBX7M6ArkM", curl_easy_option_by_id) +STUB( + "mmEix4OkCHQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEED1Ev) STUB("mmFgyjXMQBs", sceUserServiceSetParentalMorpheus) +STUB( + "mmH0Sw7uDdc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEC1EPKS8_) STUB("mmLexUbtnfY", sceHttpGetAutoRedirect) +STUB("mmV7Gx7XCYE", mono_aot_Sce_Vsh_Accessor_Dbunbox_trampolines_end) +STUB( + "mmX+v2z1Gss", + _ZN7WebCore17JSHTMLLinkElement6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_15HTMLLinkElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB("mmb08svpVe4", _ZN7WebCore9HTMLNames6colTagE) +STUB("mmf3bvuFdyE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEEC1EPKS6_) +STUB( + "mmg2NxAo8bw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEptEv) +STUB("mmgyb1Pe-s0", _ZN7WebCore17FrameLoaderClient17dispatchDidLayoutEv) +STUB( + "mmoTTd0rBRw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEC2Ev) +STUB("mmq9OwwYx74", _ZNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED0Ev) +STUB("mmrSzkWDrgA", _ZNSt14numeric_limitsIxE9is_signedE) +STUB("mmrcPPwWjuM", mono_aot_Sce_PlayStation_Orbis_Speechunbox_trampolines_end) +STUB("mmt74yNEHFA", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V15GroupEEdeEv) STUB("mmt8Sa6tL6c", _sceUltMutexCreate) +STUB("mmuPmLGfFoQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE6resizeEj) +STUB("mmwdcNZkX2w", _ZNK7WebCore4Node28deprecatedShadowAncestorNodeEv) +STUB( + "mmyEAhnq80Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEE3getEv) STUB("mmyOCxQMVYQ", sceHttp2CreateRequestWithURL) STUB("mn-tf4QiFzk", sceRtcTickAddMinutes) +STUB("mn0MkxTyRiU", s16) +STUB("mn3xTTGlB5E", _ZN7WebCore9HTMLNames22onwebkitkeymessageAttrE) +STUB("mn5nMA+kVzY", ucnv_getUnicodeSet_67) +STUB( + "mn75BUexzdU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEC2Ev) +STUB("mn8zwZkWdJU", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_19WordFilterSanitizedEED1Ev) +STUB( + "mn9RCl-PJC0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEED1Ev) +STUB( + "mnAu3-tBFSA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE8pushBackERKS8_) +STUB( + "mnNTPaio-YE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("mnOQ3arahJY", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession19getLeaderPrivilegesEv) +STUB( + "mnOrt6liX+0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEE11release_refEv) +STUB( + "mnSTSzzZzaQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEppEv) +STUB("mnWbm0QPad4", _ZN3sce7Toolkit2NP2V29Messaging7Request19SendGameDataMessageD2Ev) STUB("mndOlYOGP7w", sceCesUtf32leToEucJp) +STUB( + "mnf1ha9m+x8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEptEv) +STUB("mnq3tbhCs34", _ZNKSt5ctypeIcE10do_toupperEc) +STUB( + "mnsMteAzwPI", + _ZN3sce7Toolkit2NP2V212EventsClient9getEventsERKNS3_7Request9GetEventsEPNS2_4Core8ResponseINS3_6EventsEEE) STUB("mntAmz0tjfc", sceNpUniversalDataSystemIntPostRecord) +STUB("mnufPlYbnN0", _FDtest) +STUB("mo+gaebiE+M", _ZN3sce2np5Mutex4dtorEv) +STUB("mo0bFmWppIw", sigreturn) +STUB( + "mo1d5W2r0YI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE8pushBackERKS8_) +STUB("moAKVLhGVOQ", WKBundleHitTestResultIsDownloadableMedia) +STUB("moDSeLQGJFQ", _LCosh) STUB("moGcgMNTHvQ", sceNpBase64UrlDecoder) STUB("moPKPd0A5FA", sceHttpCacheSetResponseHeader) +STUB( + "moSbgrXkLX8", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V112ErrorFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_5ErrorEEE) +STUB("moSh3TH+rsc", _ZN3sce7Toolkit2NP2V28Matching7Request23SetMembersAsRecentlyMet12TEXT_MAX_LENE) +STUB( + "moTL3rhyR94", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("moUyXdlUENM", uscript_getScript_67) STUB("moVosqIdo8U", sceDeci4hDrfpWrite) +STUB( + "moXd3nJg9W4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEE7add_refEv) +STUB( + "mobMpV2UJYA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEEaSERSA_) +STUB("mog98eYZd3Q", _ZN7WebCore8Document12allDocumentsEv) +STUB("mojeSQq5GwQ", _ZNK7WebCore22EmptyFrameLoaderClient21shouldGoToHistoryItemEPNS_11HistoryItemE) +STUB( + "mokwe-zkSkA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE8pushBackERKS8_) +STUB("moyD0F002XQ", rgctx_fetch_trampoline_mrgctx_92) +STUB("mp5H1CTFVxQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116InitialJoinStateEEC2EPS6_) +STUB( + "mpBbJpGDaso", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE11getResponseERS6_) +STUB( + "mpCoi80J24U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEE5resetEPS9_) +STUB( + "mpEZaKKV5Bw", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations9terminateEv) +STUB("mpFxs7FlqBI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEEC2Ev) +STUB("mpIgf5eE9BY", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectIdC2Ev) +STUB("mpJkhjErUyw", __asan_exp_load16_noabort) +STUB("mpSPLwq1+ds", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_10TrophyInfoEE3getEv) +STUB( + "mpTTQPsFuxQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEC1EPKS8_) +STUB( + "mpUNxqm5-0g", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE5emptyEv) +STUB("mpUUmn9tbKs", wpe_pasteboard_write) +STUB( + "mpYLachEGn0", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToSendPlayerSessionMessage55setpostPlayerSessionsSessionIdSessionMessageRequestBodyENS1_6Common12IntrusivePtrINS3_52PostPlayerSessionsSessionIdSessionMessageRequestBodyEEE) +STUB("mpausIgcZbE", mono_aot_System_ComponentModel_Compositionjit_got) STUB("mpbGISNJ6go", sceKernelGetSystemExVersion) +STUB("mpbduG0FIos", at_thread_exit_flag) +STUB( + "mpcERKdpPvA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("mpcTgMzhUY8", floor) STUB("mpddtF9pKRc", sceVideoCoreMediaSourceGetBufferedTimeRanges) STUB("mpeGML7ulA8", sceShellCoreUtilIsExternalStorageAppMoveInProgress) +STUB("mpk5RNj6HKg", _ZN9Inspector15InspectorTarget17setResumeCallbackEON3WTF8FunctionIFvvEEE) STUB("mpkohyVqCRM", sceShellCoreUtilActivateAbort) +STUB( + "mplGCpW8qW4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEixEm) +STUB("mpn2l77ClMg", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11ProductInfoEEneERKS4_) STUB("mpoF71ABciY", sceNpStopVsh) +STUB( + "mpudh5SFcqU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEE7add_refEv) STUB("mpxAdqW7dKY", sceKernelIsProspero) +STUB("mq0FcoV5WyU", mono_aot_Sce_Vsh_KernelSysWrapperunbox_trampolines_end) +STUB( + "mq4VLnx+fgU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEC1EPS8_) +STUB( + "mq8QKdYWbf8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEplEm) +STUB("mqC+A2WD1xg", GCC_except_table477) +STUB( + "mqDauUvHxtw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEC2EPS8_) +STUB("mqHr2lV6TJA", + _ZN3sce2Np9CppWebApi12Leaderboards2V122GetRankingResponseBodyC2EPNS1_6Common10LibContextE) +STUB("mqM2m4EwgzE", uiter_setUTF16BE_67) +STUB( + "mqM7+dpduR0", + _ZN3sce2Np9CppWebApi14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBody14getInvitationsEv) +STUB("mqQ1TbImxtg", _ZN7WebCore16VisitedLinkStoreD0Ev) +STUB("mqQMh1zPPT8", fstat) +STUB( + "mqQZYP3YrRM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEED2Ev) +STUB("mqREvft-B9Y", WKSerializedScriptValueCreateWithInternalRepresentation) +STUB( + "mqTRRYvdFfY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("mqTT0TMW0iE", WKPreferencesCopyPictographFontFamily) STUB("mqULNdimTn0", pthread_key_create) +STUB("mqVRQv4SBS4", _ZN3WTF24releaseLineBreakIteratorEP14UBreakIterator) +STUB("mqXE3Scze9I", _ZN7WebCore9TimerBaseD1Ev) +STUB( + "mqXwMzp+7pE", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEEC1Ev) STUB("mqdNorrB+gI", scePthreadRwlockWrlock) +STUB("mqhjkizrxGA", monoeg_g_shell_quote) +STUB( + "mqkwTTKUuXA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB( + "mqn1rI6-Fmg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEC2EPS8_) +STUB("mqnIxfxIjzs", + _ZN12video_parser17cVideoProfilerMp421_isValidSubtitleTrackEjRKNS_13VpMediaInfo_tES3_) +STUB("mqnQI0BbgcI", _ZN3JSC11VMInspector6edenGCEPNS_2VME) STUB("mqoB+LN0pW8", sceNetShowNetstatForBuffer) +STUB("mqonkyBCcDs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEC1ERKS7_) +STUB( + "mqpatmx34Sg", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyC2EPNS1_6Common10LibContextE) +STUB("mqtwjCS71n8", _ZN3sce2Np9CppWebApi7Matches2V127ResponseTeamMemberStatistic11setPlayerIdEPKc) +STUB( + "mqy0jchACUA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEC1EPKS8_) +STUB( + "mr2fmsj8sSg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEeqERKS9_) +STUB("mr4YjdpfVFg", glProgramBinary) STUB("mrF0OjeuOgw", sceFaceAgeRangeIntegrate) +STUB("mrG66gJmZig", _ZN7WebCore14FrameSelection20setSelectionFromNoneEv) +STUB("mrH1AT5sX6k", _ZNSt9basic_iosIcSt11char_traitsIcEE4moveERS2_) +STUB("mrHkGpzNlfM", _ZN3sce2Np9CppWebApi7Matches2V120RequestPlayerResults10unsetScoreEv) +STUB("mrLkr3Hr0SM", JSClassRetain) +STUB("mrLpGmtResQ", _ZTVN15AbstractStorage14TwitterStorageE) +STUB("mrNQVZgYuGI", _ZN3sce7Toolkit2NP2V212EventsClient6Events8deepCopyERKS4_) STUB("mrNh78tBpmg", sceRemoteplayProhibit) +STUB("mrSnRuWmJDs", rgctx_fetch_trampoline_rgctx_123_p) +STUB("mrTXqsV-EAg", mono_aot_Sce_Vsh_LncUtilWrapperjit_got) +STUB( + "mrTosV63JSQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEmmEi) +STUB("mrVwwY92Dzs", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadDataaSERS5_) +STUB( + "mrWiisK57Lk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEplEm) +STUB("mrbHXqK8wkg", sigwait) +STUB("mrdfGB-P+NU", _ZN3sce2np10JsonObject8SetFieldEPKciPPNS0_10JsonNumberE) +STUB("mrlFU3GkJwc", JVM_FindPrimitiveClass) +STUB("mrocC3M9qjA", _ZN3sce7Toolkit2NP2V211SocialMedia7Request21PostMessageToFacebookD1Ev) +STUB( + "mrpK0oRmdrE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEE7add_refEv) +STUB("mrvPNIBvyAs", uscript_getSampleString) +STUB("mryKx6akQCM", _ZN3JSC8Bindings13RuntimeObjectD1Ev) STUB("mryrNITeYvI", sceUsbStorageGetDeviceList) +STUB("ms0ZkUw5sR4", mono_arch_get_rethrow_exception) +STUB( + "ms0pz2+M3t4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEE5resetEPS9_) STUB("ms1xVoZ-Vwc", sceAgcDcbBeginOcclusionQueryGetSize) +STUB( + "ms4PfAZzXyg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE21intrusive_ptr_sub_refEPS9_) +STUB("ms6Fvf6+Ypc", _ZN3WTF14jsValueReallocEPvm) +STUB("ms8kCVrvykA", _ZN3WTF9MediaTimeC1ERKS0_) +STUB("ms9ua5f1lb0", _ZN3sce7Toolkit2NP2V212EventsClient22EventOfficialBroadCastD2Ev) STUB("msCER7Iibm8", sceSaveDataMountInternal) +STUB( + "msJZoVvKSN0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEC1Ev) STUB("msW-hp1U0zo", sceLncUtilTryBlockAppSuspend) +STUB("msXACLATLjA", ures_getLocale_67) +STUB( + "msaaZZYKTOE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "msf0JrPKxOE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEE11release_refEv) +STUB("msfSXXy-8H8", __sys_nanosleep) +STUB( + "mskRHcwLjfo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE8capacityEv) +STUB("msrVGGHJsS8", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_11CountryInfoEE3getEv) +STUB("msxwgUAPy-Y", _ZTSSt11range_error) +STUB( + "mt--f7a-XCk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlotC2ERS5_) +STUB( + "mt-ex-fhcHM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEneERKS9_) +STUB( + "mt1CK6tHvuc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEneERKS9_) +STUB("mt2Be6qsnsw", _ZN3sce2np10NpOnlineIdC2ERK13SceNpOnlineId) +STUB( + "mt5L1huWH5Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEC2EPKS8_) +STUB( + "mt7p02m-ZXg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEE7get_refEv) +STUB("mtAGcMQCufk", CurlGetDefaultUA) +STUB("mtDE5k8Nm7A", mparams .5) +STUB( + "mtEs2TQIWSo", + _ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime13ObjectPreviewEE26assertValueHasExpectedTypeEPN3WTF8JSONImpl5ValueE) +STUB("mtGwhPSWWCs", mono_aot_I18Nunbox_trampolines_end) +STUB("mtTOHB9wslk", _ZN23sceMetadataReaderWriter13allocateValueERKNS_5ValueEPFPvmEPFvS3_EPPS0_) +STUB( + "mtTgkOPhk8Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "mtTy4UsWJuI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEneERKS9_) +STUB( + "mtUp8JZ8A5Q", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("mtWy8+9VNV4", WKRenderLayerCopyElementTagName) +STUB("mtbKHTPBKTM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11UserProfile10NpProfilesEED2Ev) +STUB("mtbYjAKi5NQ", JSValueMakeUndefined) +STUB( + "mtdFQ0VveDg", + _ZN3JSC17JSArrayBufferView19ConstructionContextC1ERNS_2VMEPNS_9StructureEON3WTF6RefPtrINS_11ArrayBufferENS6_13DumbPtrTraitsIS8_EEEEjj) +STUB("mtfxWYuVWgo", _ZN7CoreIPC15ArgumentEncoder6encodeEm) +STUB( + "mtjAzc6AN9A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEC1EPS8_) +STUB("mto2CLCQdo8", ucfpos_getField_67) +STUB( + "mtoREEp+A-g", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB( + "mtoyQoIw2Hs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEcvbEv) STUB("mtqDK9zkoIE", sceNpLookupDeleteTitleCtx) +STUB( + "mtr2GcnkCpg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE8pushBackERKS8_) +STUB("mtz-poJ42Cs", _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEEC1Ev) STUB("mtzPnlIuyRI", sceBgftServiceIntUploadQueryTaskSection) +STUB( + "mu-oig+U7QA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("mu7FzFTWB7Q", _ZN7WebCore24presentingApplicationPIDEv) +STUB("muE9OA3xYv4", _ZNK3sce3Xml3Dom8Document10getXmlMetaEv) +STUB( + "muGDkrhLFwk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE8copyFromERKS9_) +STUB("muI2BYSOCK4", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_22ConsumeChallengeResultEED2Ev) +STUB("muIOyDB+DP8", _ZTISt15basic_streambufIwSt11char_traitsIwEE) +STUB("muVR9Eupzzc", uset_charAt_67) +STUB("muWDE+3rA7U", __tsan_ignore_deadlock_begin) +STUB("muYxPZ3hoV8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE4sizeEv) +STUB("muak2D0KKx8", MD5_Init) STUB("mugwZhMj2pE", sceNpUniversalDataSystemIntRecordObjectSetFloat32) +STUB( + "mukRKYymIx4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEE5resetEPS9_) +STUB( + "mumD99u1S80", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE5emptyEv) +STUB("muoLz7iEl4I", + _ZN7WebCore16HTMLInputElement8setFilesEON3WTF6RefPtrINS_8FileListENS1_13DumbPtrTraitsIS3_EEEE) +STUB( + "muuDi5MzoeM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEC2EPS8_) +STUB("mv++iKizqoM", pS8) STUB("mv-JN8Ghvlc", sceBgftServiceIntDownloadPauseTaskAll) +STUB( + "mv-R38yNRFs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEneERKS9_) +STUB("mv0DAYhVdT8", _ZN15AbstractStorage12LocalContent13writeExternalESt10shared_ptrINS_7ContentEE) STUB("mv0O8Zg0woU", sceAmprCommandBufferPopMarker) +STUB( + "mv1rDtuG-To", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("mv286ICDTZ8", _ZN7WebCore24CoordinatedGraphicsLayer26animationStartedTimerFiredEv) +STUB( + "mv47l5pPK-4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "mv6w6CwuIWM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE10setContextEPNS2_10LibContextE) +STUB("mv9rtQAknH4", _ZNK15AbstractStorage6Folder7GetTypeEv) +STUB("mvAt6RoJbqI", _ZN3sce7Toolkit2NP9Utilities6FutureI13SceNpOnlineIdEC2Ev) +STUB( + "mvCH9CFlLLI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEEcvbEv) +STUB("mvD0zQgKzn8", _ZN3sce7Toolkit2NP2V24Core17CustomRequestBaseD1Ev) STUB("mvDN856KXI8", sceVideoStreamingEngineMediaKeySessionSetEventHandler) +STUB("mvG5gZev4rI", JVM_NanoTime) +STUB("mvIzi5DGTis", + _ZN3sce2Np9CppWebApi12Leaderboards2V120ErrorResponseFactory7destroyEPNS3_13ErrorResponseE) +STUB("mvNKrGBaO1c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEED1Ev) +STUB("mvVL9IPsr2k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEC2ERKS7_) +STUB("mvVhzhPPtag", _ZN7WebCore6Widget16removeFromParentEv) +STUB( + "mveDZlyDjgk", + _ZN3sce2Np9CppWebApi14SessionManager2V140PostGameSessionsTouchResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_33PostGameSessionsTouchResponseBodyEEE) +STUB("mveIcwSS2+U", _ZN7WebCore11ContentTypeC2EON3WTF6StringE) +STUB("mvktq6IlZqY", _ZN7WebCore9HTMLNames5emTagE) +STUB("mvoB0gHt8TU", _ZNK9MmsMp4Box7cmpTypeEPj) +STUB( + "mvqfT6r-yB8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEC2Ev) +STUB( + "mvvFvj1zbcs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEC1EPNS2_10LibContextE) +STUB("mw-VIHa9iaI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce8ProductsEEC2Ev) +STUB("mw0r+WP8nK8", _ZN7WebCore24CoordinatedGraphicsLayer19didChangeAnimationsEv) +STUB( + "mw8au-EPeT0", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser13unsetsortModeEv) +STUB("mwAc9DUaoYY", _ZTVN23sceMetadataReaderWriter8MetadataE) STUB("mwCjW5FlkG4", sceLoginMgrServerIsRequestedCdlgClose) +STUB( + "mwD6F+YrOEw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEC2EPS8_) +STUB("mwFPufuvMpk", _ZN7WebCore9AnimationD1Ev) +STUB("mwJYST4Bb3U", CMAC_CTX_new) +STUB( + "mwLBfagWmcA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEED1Ev) +STUB( + "mwPzFwhPYyc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE6insertENS2_13ConstIteratorIS5_EERKS5_RS8_) +STUB( + "mwRI0Oucmjg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEEC1ERSA_) +STUB( + "mwS+y2Lvyik", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEmmEi) +STUB("mwSKc1t2fYA", _ZN7WebCore9CSSParserD1Ev) +STUB( + "mwSgmTYRyPk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("mwSvDt0dHF8", eglQueryString) +STUB( + "mwbiyERzlvA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB( + "mwd2ndNjMx0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE5eraseENS2_8IteratorIS6_EERS9_) +STUB( + "mwiMusifxcM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEE7add_refEv) +STUB("mwlNhnlDWjY", delegate_virtual_invoke_imt_17) +STUB("mwnQw64GDxI", ures_openAvailableLocales_67) +STUB("mx0faWWy7F0", mono_btls_x509_revoked_get_revocation_date) +STUB( + "mx1USZ6Wocg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE6resizeEj) +STUB("mx1YlEp90mU", _ZNK7WebCore22DefaultFilterOperation5cloneEv) +STUB( + "mx2W4YXK4K8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE4sizeEv) +STUB("mx3h6KLAu9Y", _ZN7WebCore4Node17stopIgnoringLeaksEv) +STUB( + "mxFJwBFDCvg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEEdeEv) +STUB( + "mxG4y6epe80", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEeqERKS9_) +STUB("mxJteUEmiTQ", g_list_remove) STUB("mxKx9bxXF2I", scePthreadMutexattrSetpshared) +STUB("mxN+RJIBmo4", uregion_getContainedRegions_67) +STUB("mxO-xnz0a9M", mono_aot_Sce_Vsh_GameListRetrieverWrapperunbox_trampolines_end) +STUB("mxYK3TBPDro", _ZN3WTF11setDataFileEPKc) +STUB("mxaZQnsO-L8", _ZN3JSC8Debugger16clearBreakpointsEv) +STUB( + "mxdG9hCw614", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("mxdiKUT7eAI", _ZN7WebCore27AuthenticationChallengeBaseC1Ev) +STUB("mxfm5iKxLJk", _ZN7WebCore23computeSharedStringHashEPKDsj) STUB("mxgMmR+1Kr0", sceCameraGetFrameData) STUB("mxgmMj-Mq-o", sceFontCharacterGetTextOrder) +STUB("mxh32RfHg5Y", _ZNK7WebCore27AuthenticationChallengeBase6isNullEv) +STUB("mxjhjb67uyM", _ZN7WebCore12PrintContext26pageSizeAndMarginsInPixelsEPNS_5FrameEiiiiiii) STUB("mxjolbeBa78", sceHmdInternalGetDemoMode) +STUB( + "mxkvMuOegeI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEaSERS7_) +STUB("mxnAW+bctsY", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_22ConsumeChallengeResultEE3getEv) +STUB("mxsSETrkaqw", utext_previous32From) +STUB( + "mxtTnBw4Zgo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE21intrusive_ptr_add_refEPS9_) +STUB("mxv24Oqmp0E", _ZNSt15_Num_float_base10is_integerE) +STUB("mxzhhN2-WWQ", ucasemap_setLocale_67) +STUB("my-QYbUjHJM", + _ZN8meta_gen12JpegPromoter10InitializeEP19PromoteInnerContextP23PromoteInnerInformation) +STUB( + "my01LuWq6i8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEEaSERKSB_) +STUB( + "my3IUHxEwSQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEEC1ERKS9_) +STUB( + "my5fVKR4wp0", + _ZN7WebCore22EmptyFrameLoaderClient26dispatchDidReceiveResponseEPNS_14DocumentLoaderEmRKNS_16ResourceResponseE) +STUB("my8Oc0gNZDk", mono_aot_Sce_Vsh_Sticker_StickerLibAccessorplt) +STUB( + "my9ujasm6-0", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERPv) +STUB("myIWSkoJ3bs", GCC_except_table105) +STUB( + "myKfYz1xDCE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE8pushBackERKS8_) +STUB( + "myMC8ROxnjo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEEaSERKSA_) +STUB("myQDQapYJdw", fegetexceptflag) +STUB("myR4iQ03csY", _ZN7WebCore16NavigationActionC2ERKS0_) +STUB("myTyhGbuDBw", _Clocale) +STUB( + "myWrQuuJIUk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEED2Ev) +STUB("myZvY137tks", WKBundlePageGetBackForwardList) +STUB( + "myaJNYQioWY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE5clearEv) +STUB("myh96KZRMMo", _ZN3sce7Toolkit2NP2V210Tournament7Request19SendTeamMatchReportD1Ev) +STUB( + "mykTSZOU5sI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEEC1ERKSA_) +STUB("mypq-tQJOlo", GetAccountAgeA) +STUB( + "myqv+szlg2g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEEptEv) +STUB( + "myt5wCc9vB8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "myu1V6foWCU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEppEv) +STUB( + "myuq5vYU0MA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEED2Ev) +STUB("myuvNr1jabQ", WKInspectorIsElementSelectionActive) +STUB( + "myyiP0GpIeQ", + _ZN7WebCore19StorageQuotaManager6createEmON3WTF8FunctionIFmvEEEONS2_IFvmmmONS1_17CompletionHandlerIFvNS1_8OptionalImEEEEEEEE) STUB("mz0+WE5XkSc", sceFaceDetectionEx) +STUB("mz1y6TX4dG8", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_28NpSessionDetailedInformationEE3getEv) STUB("mz2iTY0MK4A", sceFontSupportExternalFonts) +STUB("mz868SDp4PI", _ZNK3WTF14MediaTimeRange12toJSONStringEv) +STUB("mzFdkwKGq-I", _ZN7WebCore16JSStringCallback6createEPN3JSC8JSObjectEPNS_17JSDOMGlobalObjectE) +STUB("mzRlAVX65hQ", _ZNKSt8numpunctIwE16do_decimal_pointEv) +STUB( + "mzUbhebpFq8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEC2ERS8_) +STUB("mzWSRS0Vbfo", mono_method_get_token) STUB("mzYQPZd-O4c", sceDevUsbWriteCP) +STUB( + "mzb6MQf4-Ng", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEC1ERKS7_) +STUB("mzdokeQiGnU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEEC2ERS7_) +STUB("mzhCkcbagoU", _ZTVN7WebCore11MediaSampleE) +STUB("mzhXPivl8Ps", _ZN4Manx11MediaPlayer4seekEf) +STUB( + "mzjfcAmByCY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) STUB("mzlILsFx0cU", _sceNpAllocatorMalloc) +STUB( + "mzoFkKI13Sk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEEC2EPS9_PNS2_10LibContextE) STUB("mzppT1RdIj0", sceApplicationAddProcess2) +STUB("mzqT-T8t4M4", _ZN22MmsMdCommonFsOperation18destroyCacheBufferEv) +STUB("mzrWfOsWESU", uregex_setTimeLimit_67) +STUB( + "mzreM+q4bNg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEC1ERKS8_) +STUB( + "mzrsVTcm1Ok", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEED2Ev) STUB("mzu52lea-vk", scePerfTraceAmmUpdate) +STUB("mzub0co9dKs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEC2Ev) +STUB( + "mzvw5FS-jnE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEC1Ev) +STUB( + "mzw-P+8wKaI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEE11release_refEv) +STUB("mzwKIfzZzsQ", __tsan_ignore_deadlock_end) +STUB("mzx-fb4nwFg", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_19WordFilterSanitizedEEC2Ev) +STUB( + "n+-OJ0gOPf8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEC2EPKS8_) +STUB("n+2eEQ8aSSU", + _ZN3sce2Np9CppWebApi14SessionManager2V122GameSessionPushContext16setPushContextIdEPKc) +STUB( + "n+6BEs5fB-A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEC2EPS8_) +STUB( + "n+6thoYaJxE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEC1ERKS7_) +STUB( + "n+9CK0KwPlI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEaSERS8_) +STUB("n+J44ByUpVs", _ZN3sce2Np9CppWebApi14SessionManager2V113ErrorResponseD1Ev) +STUB("n+JGk7gk9gs", png_read_end) +STUB("n+JHSOj0nIA", _ZN8meta_gen13JpegRetriever17GetDefaultCommentEv) +STUB("n+LcSnkfUvw", _ZNK7WebCore6Widget14platformWidgetEv) +STUB( + "n+MgiQh55IE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEneERKS9_) +STUB("n+NFkoa0VD0", _ZNSt14numeric_limitsIfE14min_exponent10E) +STUB("n+Pv1PgyfyE", _ZN3sce7Toolkit2NP2V27NpUtils12Notification15UserStateChangeC2ERKS5_) STUB("n+R7PGJa6MI", sceCamera2GetWhiteBalance) +STUB("n+WAJSfFMxg", ubrk_following_59) +STUB("n+WMO5xUXXw", WKPreferencesSetMainContentUserGestureOverrideEnabled) +STUB("n+WzmrfJIIc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEE11release_refEv) +STUB("n+Znry5gAsA", + _ZN8meta_gen11MsvPromoter21setKeyValue_TBLI_DataENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti) +STUB("n+aUKkC-3sI", _ZTVSt12out_of_range) +STUB( + "n+azXmA0an0", + _ZN3sce2Np9CppWebApi7Matches2V121ResponseMemberFactory6createEPNS1_6Common10LibContextEPKcbPNS5_12IntrusivePtrINS3_14ResponseMemberEEE) +STUB("n+bQ6u1wxSk", _ZN7WebCore13internalErrorERKN3WTF3URLE) +STUB("n+c0VsaCN7A", _ZTVN7WebCore24MatrixTransformOperationE) +STUB( + "n+cCRDmMtsY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEC2EPS8_) +STUB( + "n+gqP-BgisM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE5beginEv) +STUB("n+ktFMPcviM", uhash_compareUChars_67) STUB("n+rFeP1XXyM", sceCameraGetDeviceConfigWithoutHandle) +STUB( + "n+t1lTOLB58", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEixEm) +STUB("n+wqQh7L9Zo", mono_aot_Sce_Vsh_Np_Tmdbjit_got) STUB("n-0NbCX8yFc", sceFsExternalStorageGetRawDevice) +STUB("n-1UPRowKe0", _ZNK3sce2Np9CppWebApi6Common8IteratorIdEeqERKS4_) +STUB("n-3HFZvDwBw", _ZNKSt7collateIwE7compareEPKwS2_S2_S2_) +STUB("n-9+9Xe90t4", WKURLRequestCopyURL) +STUB( + "n-FyA8R0C8E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE4sizeEv) STUB("n-IAZb7QB1Y", sceNetShowRouteForBuffer) +STUB("n-IyBYJNbQ0", monoeg_g_getenv) +STUB( + "n-KdZ3OsRlA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEneERKSA_) +STUB( + "n-LnfbqjR84", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEE7get_refEv) +STUB("n-MGvHHAGpw", _ZN7WebCore9HTMLNames24onwebkitmouseforceupAttrE) +STUB( + "n-POOnb0De4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEaSERKS7_) +STUB("n-PYt6UlnPQ", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112UpdateStatusEEaSERKS7_) +STUB( + "n-fnw4Ogmpc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE5emptyEv) +STUB( + "n-h4fiNPRmk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEneERKS9_) +STUB( + "n-h82bkkLJ0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB( + "n-hVvL9XmlM", + _ZN3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatformC2EPNS1_6Common10LibContextE) STUB("n-pzjs6rl48", scePerfTraceStart) +STUB( + "n-q--hTURoU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEED2Ev) +STUB("n-tHH4IKZFM", _ZN7WebCore17PageConsoleClient5countEPN3JSC14JSGlobalObjectERKN3WTF6StringE) +STUB("n-xkyAPf-P8", + _ZN7WebCore22CSSAnimationController20pauseAnimationAtTimeERNS_7ElementERKN3WTF10AtomStringEd) +STUB("n-zI3cgPTM0", usprep_prepare_67) STUB("n-zwIVhJMTY", sceMatAgcUnregisterResource) +STUB("n0+HGo-hFvk", ulist_count_keyword_values_67) +STUB("n0+fCzx5nNQ", mono_aot_System_Web_Servicesjit_code_end) +STUB("n01yNbQO5W4", fchmod) +STUB("n09JRKQpbrw", _ZNK7WebCore6Editor7Command9isEnabledEPNS_5EventE) STUB("n0BEVlnSNcY", sceCustomMusicAudioOutFinalize) +STUB("n0C1jscw9HA", _ZN3JSC7Symbols30generatorFieldFramePrivateNameE) +STUB( + "n0CfOsYBWUU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEE11release_refEv) +STUB("n0ErFZ2hmKs", __sys_randomized_path) STUB("n0FeJgonoxQ", sceImeBackendGetConfirmString) STUB("n0FvTzIPodM", sceKernelGetBioUsageAll) +STUB("n0I27gnpKSI", _ZN8meta_gen12JpegPromoterD0Ev) +STUB("n0IhhBFAvNU", + _ZNK3JSC12PropertySlot20customAccessorGetterEPNS_14JSGlobalObjectENS_12PropertyNameE) +STUB("n0LXybBG1YE", _ZN3sce7Toolkit2NP2V23TUS15TusDataStatusesC1Ev) +STUB( + "n0eqCdZNIZA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEC2EPNS2_10LibContextE) +STUB("n0kT+8Eeizs", iswdigit) +STUB( + "n0lAac92Sgk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody30setComparedLastUpdatedDateTimeERK10SceRtcTick) STUB("n0lBsnSyAUs", sceMbusDebugRemoveCameraAppModuleFocus) STUB("n0nvCnrzJI0", scePerfTraceStop) +STUB( + "n0pMUbQ5Oz8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "n0uNJTkBRwU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEdeEv) +STUB( + "n0vlZQIhu-k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE6resizeEj) +STUB( + "n0xT9-U2S5E", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("n0zBIi9gL8E", _ZN3sce7Toolkit2NP2V23TUS7Request17TryAndSetVariableD1Ev) STUB("n1-v6FgU7MQ", sceKernelConfiguredFlexibleMemorySize) +STUB( + "n11TCVwRRMQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "n13MxN9nglY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEEC1ERKSA_) +STUB( + "n14xIDxjDts", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "n169H+q43G0", + _ZN9Inspector28DOMDebuggerBackendDispatcherC1ERNS_17BackendDispatcherEPNS_35DOMDebuggerBackendDispatcherHandlerE) STUB("n16Kdoxnvl0", sceAudioOutInitIpmiGetSession) +STUB( + "n1A8mIBOxJ4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEptEv) +STUB("n1DPIeSdKSQ", _Z42SystemParameters_SetSystemPadButtonMeaningi) +STUB( + "n1Iaaj0nZ34", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE5beginEv) +STUB("n1KOc0lTUEs", arc4random_buf) +STUB("n1KPXvNBMyA", _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_7ElementE) +STUB("n1O+i3JtWqk", _ZNK9Inspector15ScriptCallFrame12functionNameEv) +STUB( + "n1Q4d30uUkk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC2Ev) +STUB( + "n1QWJSTlDd4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEixEm) +STUB("n1Y6pGR-8AU", _ZNSt8messagesIwE2idE) +STUB("n1fVBauLrig", _ZN7WebCore21MediaRecorderProvideraSERKS0_) STUB("n1fn2KFeLDA", sceNpSessionSignalingGetConnectionStatus) +STUB("n1gMH5Z1HD4", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setGraphicsOffsetSequenceId) STUB("n1jfUfgvIUw", sceDepthGetCalibrationData) +STUB("n1ksRF2w2MY", Java_java_io_RandomAccessFile_close0) +STUB("n1lbw546wwY", WKPreferencesGetRegionBasedColumnsEnabled) +STUB("n1m5ZaCMtpk", _ZNK7WebCore15AffineTransform7mapSizeERKNS_7IntSizeE) +STUB( + "n1pjmhOXaEA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129MatchCompletionRateProperties8fromJsonERKNS_4Json5ValueE) +STUB("n1r-IFbo-pA", JNU_NotifyAll) +STUB( + "n1vZhD2VkK8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEE3getEv) +STUB( + "n1yCLMxpseQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE3endEv) +STUB("n2-b3O8qvqk", _Thrd_current) +STUB("n2-qnouzRIw", _ZN7WebCore9HTMLNames11onpauseAttrE) STUB("n22d-HIdmMg", sceFontGlyphRenderImageVertical) +STUB( + "n25nNSUwFSU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEED2Ev) +STUB("n260kXCrg1M", ubidi_countParagraphs_67) +STUB("n2843gPbB4k", Java_java_lang_Float_floatToRawIntBits) +STUB( + "n2FA2b9XoPY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "n2JFJv7JGo4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "n2JIGQMwwcM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEmmEv) STUB("n2MMpvU8igI", scePthreadMutexattrInitForInternalLibc) +STUB( + "n2Pl5e-uu48", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEEdeEv) +STUB("n2QlZrsnuHw", _ZN3sce7Toolkit2NP2V27Session12Notification18InvitationReceivedC2ERKS5_) +STUB( + "n2Vt5fGx-nA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEeqERKS9_) STUB("n2XkxixrY2k", sceCompositorSetGameSufaceControlCommand) +STUB("n2ZeA5w5uDU", _ZN4Manx7Network6mallocEm) +STUB( + "n2ZfpDnsjjY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) STUB("n2fD4A+pb+g", sceAgcCbSetShRegisterRangeDirect) STUB("n2fSRzuTEY4", sceLibreSslTerm) +STUB("n2hM0Qkiz8s", WKInspectorIsProfilingJavaScript) +STUB("n2jDNez3pz8", _ZN9Inspector22PageFrontendDispatchernwEmPv) +STUB("n2kx+OmFUis", _ZTISt9exception) +STUB("n2mWDsholo8", getwchar) +STUB( + "n2mvr9RWnGA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEED2Ev) +STUB("n2nk-l3evas", nsnp_CheckHMAC) STUB("n2nyhRL5uUg", sceKernelInternalGetMapStatistics) +STUB("n2oEw79ahcE", mono_aot_System_Reactive_Linqjit_code_start) STUB("n2oTCajh0fE", sceApplicationSendResultOfDebuggerResumeRequest) +STUB( + "n2sz2sbWgFA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEC2ERS7_) +STUB( + "n2wYP2IZN8k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEC1EPKS8_) +STUB("n371J5cP+uo", physhm_open) +STUB("n38wJyalO6c", TerminateNetLib) +STUB("n3C2Myucss0", mono_aot_System_Web_Servicesmethod_addresses) STUB("n3G2GtFdwEw", sceHubAppUtilDeeplinkToPSSubscriptions) +STUB( + "n3K+UNMb1Ww", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) STUB("n3MYEpevnMo", sceWkFontConfigGetFontFromFontName) +STUB( + "n3QbD66PmWQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEE7get_refEv) +STUB("n3STrw-LsM0", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEEdeEv) +STUB( + "n3VLZRf0Fx8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE5emptyEv) +STUB("n3dXGYgHTFM", goby_GetReachableNodes) +STUB("n3fobCnt5aw", _ZN11GvMp4Parser6Common11Utf16ToUtf8ERKSbIwSt11char_traitsIwESaIwEEPSsi) +STUB( + "n3gwp68uDjs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEppEi) +STUB("n3mIRYR4t+M", + _ZN3JSC49throwConstructorCannotBeCalledAsFunctionTypeErrorEPNS_9ExecStateERNS_10ThrowScopeEPKc) +STUB( + "n3nXHwhDtOE", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V136GetMultiVariablesResponseBodyFactory7destroyEPNS3_29GetMultiVariablesResponseBodyE) +STUB( + "n3o09hkKRos", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("n3q6QEZhIXU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEE11get_deleterEv) +STUB( + "n3w8YA3RmcA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEC2ERKS7_) +STUB("n3y8Rn9hXJo", _ZNSt12length_errorD1Ev) +STUB("n4+3hznhkU4", _ZNSt8messagesIwEC1Em) +STUB("n40jtA5wAls", _ZN7WebCore17FrameLoaderClient29hasFrameSpecificStorageAccessEv) +STUB( + "n42B6D8jyoM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEC2EPS6_PNS2_10LibContextE) +STUB("n42TLoHtWy0", _Z29scePlayGoEmuFsGetChunkNumListPKcmtPtS1_) +STUB("n454+zSQlTA", _ZN3JSC23MacroAssemblerX86Common17s_lzcntCheckStateE) STUB("n485EBnIWmk", sceAgcWaitRegMemPatchCompareFunction) +STUB( + "n4Db-05lIN4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEED1Ev) +STUB( + "n4GtvWk+uWE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE7reserveEi) STUB("n4Hk3OLW89E", sceCompositorSetVirtualCanvasPatchCommand) +STUB( + "n4IbbE+Aqck", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemProperties12getsessionIdEv) +STUB( + "n4MrIuom-Gc", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126NatConnectivityFromFactory7destroyEPNS3_19NatConnectivityFromE) +STUB("n4RNMiYDVCc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE5emptyEv) +STUB( + "n4UDsS5Zm+I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEED1Ev) +STUB( + "n4ajvrXToOQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEaSERKS9_) +STUB( + "n4cbL5zSjP0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE8capacityEv) +STUB( + "n4eQW6-7d34", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEC1EPNS2_10LibContextE) +STUB( + "n4h3W0GvqHw", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_15PlayedWithStoryENS1_15AppSTLAllocatorIS5_EEEED1Ev) +STUB("n4j1H0wscak", _ZN3NTF22URLRequestJobScheduler8finalizeEv) +STUB("n4k9JpeSBjs", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEEC1ERS6_) STUB("n4l3FTZtNQM", sceRemoteplaySetProhibitionForVsh) +STUB("n4o8mgXtF5s", u_iscntrl) +STUB("n4oK9-Sedgw", Java_com_sony_bdjstack_core_AppCacheManager_open) +STUB( + "n4tn6dmub3o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEE11get_deleterEv) +STUB("n4yiKNo1yCs", u_foldCase) +STUB( + "n55eEOu-tII", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEED1Ev) +STUB( + "n586vEw51v8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEppEi) STUB("n590hj5Oe-k", sceFontCreateLibraryWithEdition) +STUB("n59IAXebVfU", _ZN3JSC2VM15symbolSpaceSlowEv) +STUB("n5CTNFHHvfk", rgctx_fetch_trampoline_rgctx_3_p) +STUB( + "n5CpMsdrCD8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE5beginEv) STUB("n5ElQVYsU1A", sceAgcDriverUnregisterWorkloadStream) +STUB( + "n5G+iBRnt-E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "n5GTmLB2iPA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEE21intrusive_ptr_sub_refEPS7_) +STUB( + "n5HJHEZaiaY", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB( + "n5J4HwNBtnQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEmmEi) +STUB( + "n5JP7v2Ighs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC1Ev) STUB("n5JiAJXsbcs", sceRtcSetWin32FileTime) STUB("n5JmImxTiZU", sceNpMatching2JoinLobby) +STUB( + "n5N9qtRJ38E", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEED0Ev) +STUB("n5O97QK+sCE", mono_class_get_full) +STUB( + "n5OVzaIgpnM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEE3getEv) STUB("n5OxFJEvPlc", sceRemoteplayGetRemoteplayStatus) +STUB( + "n5QPPs+RqkM", + _ZN9Inspector20DOMBackendDispatcher13hideHighlightElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("n5RBAg98VdI", _ZN3sce7Toolkit2NP2V28Matching7Request7GetDataD1Ev) STUB("n5TUlwdhGSA", sceFiosDirectoryDeleteSync) +STUB( + "n5TZK6fTT2o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB("n5TrUOqCmfI", PKCS12_PBE_add) +STUB("n5Ts57kOROA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEED1Ev) +STUB("n5Wu8G9LZzQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEE11release_refEv) +STUB( + "n5eio0APBmg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEE3getEv) +STUB("n5hK0leG0XI", mono_domain_add_class_static_data) +STUB( + "n5io1x3aRtM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEC1Ev) +STUB( + "n5j3zPO0VQI", + _ZN9Inspector21InspectorConsoleAgent19addMessageToConsoleESt10unique_ptrINS_14ConsoleMessageESt14default_deleteIS2_EE) +STUB( + "n5l96a7BVO0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEaSERKS7_) +STUB("n5rOcbO6uT4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEptEv) +STUB("n5uAZspm8I0", WKBundlePageExecuteEditingCommand) +STUB( + "n5w51Vgj7Sk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEE5resetEPS7_) +STUB( + "n5wSGFKkJnM", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsC2EPNS1_6Common10LibContextE) +STUB( + "n5wsfWbLU0o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEC2ERS7_) +STUB("n6-12LafAeA", SSL_lookupAlert) +STUB("n60em-2RTtc", _ZN7WebCore8SVGNames20rendering_intentAttrE) +STUB("n65bLL1d+L8", _ZN3JSC17JSPromiseDeferred6createEPNS_9ExecStateEPNS_14JSGlobalObjectE) +STUB( + "n67JqM3qwqk", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeaders21intrusive_ptr_add_refEPS5_) +STUB( + "n6ALakf0SDM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "n6B58mTfxMM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEC1Ev) STUB("n6F49ESSgEU", sceAvControlGetNativeMonitorInfo) +STUB("n6FC+l9DU70", _ZN3sce4Json5Value3setEPKc) +STUB("n6G09wtp5T4", _ZN7CoreIPC15StringReference6decodeERNS_15ArgumentDecoderERS0_) +STUB( + "n6LdZF4M7p4", + _ZN7WebCore26PresentationOrderSampleMap42findSamplesBetweenPresentationTimesFromEndERKN3WTF9MediaTimeES4_) +STUB("n6MH17TR38U", + _ZNK7WebCore11RenderStyle36visitedDependentColorWithColorFilterENS_13CSSPropertyIDE) +STUB( + "n6NPMtYWlI4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEE11release_refEv) +STUB("n6PRMUwUtXU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEptEv) +STUB( + "n6PneeK7QEM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEC1EPS7_PNS2_10LibContextE) +STUB("n6SEUE4Txvg", ubrk_last) +STUB( + "n6VvFkfzkFA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEppEv) +STUB("n6WEFbtXiGo", mp_send) +STUB("n6aweWpmdI0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge10ChallengesEE5resetEv) +STUB( + "n6mQTBd5lj4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyC1EPNS1_6Common10LibContextE) +STUB( + "n6mVHVx7wVo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE5emptyEv) +STUB( + "n6xB0E+nyoE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEptEv) +STUB("n79wW64CUh8", glVertexAttribI4ui) +STUB("n7AepwR0s34", mktime) +STUB( + "n7CkNJvRRZ4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEptEv) +STUB("n7FS+PSDPkk", _ZN7WebCore9HTMLNames16onpointeroutAttrE) +STUB( + "n7GDXQAOUf0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEE11release_refEv) +STUB( + "n7GSSxCG6cE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "n7H25f3vn8w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("n7Hix+Y8cdg", vm_send_CreateUnboxTrampoline) +STUB( + "n7JvuUScc7U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE8capacityEv) STUB("n7KgxE8rOuE", sceAudioOutA3dInit) +STUB( + "n7KwJRwM6Og", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEE5resetEPS7_) +STUB("n7Ld6-VjSic", uspoof_getInclusionSet_67) +STUB("n7Qrf8HhJ2E", _ZN7WebCore7Element9clientTopEv) +STUB("n7RJkfW-9oE", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS12TusVariablesEE5resetEv) +STUB( + "n7S7lOfl71U", + _ZN7WebCore30enclosingTextUnitOfGranularityERKNS_15VisiblePositionENS_15TextGranularityENS_18SelectionDirectionE) +STUB( + "n7XsYTiwPIY", + _ZN3sce2Np9CppWebApi6Common23UpDownStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEED1Ev) +STUB("n7bPu80OxTg", showProtocolInfoList) STUB("n7fxSSTwbQo", sceVshAvcapStart) +STUB( + "n7i4jU+-eEw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB("n7iD5r9+4Eo", _ZTISt11_Facet_base) +STUB("n7iQZcGKwHg", _ZN7WebCore9HTMLNames5rpTagE) +STUB("n7irDGMVsaM", _ZN4Manx11MediaPlayer9setVolumeEf) +STUB( + "n7n1CKfL6u0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEppEv) STUB("n8+7l03wVdE", sceMbusReleaseControl) +STUB( + "n8-BZpTov9g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE7reserveEi) +STUB("n837mbvLMVY", _ZN12video_parser13cVideoMetaVWG15getArtworkImageEjjPh) +STUB( + "n864xB2lPQ4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEdeEv) +STUB("n88vx3C5nW8", gettimeofday) +STUB("n8AVK7aWTSw", _ZN7WebCore6DOMURL7setHrefERKN3WTF6StringE) +STUB("n8F1ANqg6nw", _ZN3sce7Toolkit2NP2V23TUS12TusVariables13MAX_VARIABLESE) +STUB("n8IqpiMeeZ4", WKPageFindStringMatches) +STUB( + "n8NAvotnCuw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEeqERKS9_) +STUB("n8Pye6iV5Fk", _ZNK7WebCore27AuthenticationChallengeBase15failureResponseEv) +STUB("n8Re5ynSfjU", _ZN7WebCore28InspectorFrontendClientLocal8SettingsC1ERKS1_) +STUB("n8SlmGnoGtI", AacsPermissionInit) +STUB("n8SrCVpRtkg", _ZN7WebCore20protocolIsJavaScriptERKN3WTF6StringE) +STUB( + "n8XRQHI6nxQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEptEv) +STUB("n8ZtvBzZvug", YGNodePrint) +STUB("n8cHns2p7Lc", _ZN7WebCore21BlobDataFileReferenceC1ERKN3WTF6StringE) +STUB("n8gS5RNyEss", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession18swapSupportedIsSetEv) STUB("n8hMLe31OPA", sceHttp2SetConnectionWaitTimeOut) +STUB("n8o0Aq+yaG0", ucal_setAttribute_67) +STUB("n8onIBR4Qdk", clock_1700) +STUB("n8sphRsRTys", _ZN3sce2Np9CppWebApi6Common6VectorIlE8copyFromERKS4_) STUB("n8vgpaQg6dA", sceAgcSetRangePredication) +STUB("n9-NJEULZ-0", _ZNKSt24_Iostream_error_category7messageEi) STUB("n9-Va1Nirj4", sceNpSnsTwitchDialogInitialize) +STUB("n91L+hmVVXQ", monoeg_g_string_printf) +STUB("n92z2LCN3+c", _ZTVN3JSC18GCActivityCallbackE) +STUB("n95Is68jK7w", _ZN7WebCore40registerDefaultPortForProtocolForTestingEtRKN3WTF6StringE) +STUB("n9DxFKQWQFI", WTFReportAssertionFailure) +STUB("n9GZ6rEoFkM", _ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamTournamentC1ERKS4_) +STUB( + "n9HZYGhelGs", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V131NatConnectivityToMetricsFactory6createEPNS1_6Common10LibContextEiiPNS5_12IntrusivePtrINS3_24NatConnectivityToMetricsEEE) +STUB( + "n9I+6gj6FS0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEE11get_deleterEv) +STUB("n9MVeGIJYyU", + _ZN7WebCore15AsyncFileStream7getSizeERKN3WTF6StringENS1_8OptionalINS1_8WallTimeEEE) +STUB("n9RZb0NlidA", _ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamRankResultC1ERKS4_) +STUB( + "n9VLGVm4beE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEEC2ERS9_) +STUB( + "n9VQ3uvbOws", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "n9WTyJm5Wl0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEC1ERKS7_) +STUB( + "n9YD9Nfz6Eo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE3endEv) +STUB("n9YQtZxuqHY", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container14setReleaseDateEPKc) +STUB( + "n9fNTsTpx+M", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEED2Ev) +STUB( + "n9ihDxAE5zo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("n9mE+mAGfLM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V112OnlineStatusEEneERKS7_) +STUB("n9pedsJlpxk", _ZN7WebCore9JSElement14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB("n9pzAHeCCVU", _ZN3sce2np4Cond4ctorEv) +STUB( + "n9w38t1tfqM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEEC1ERKSA_) STUB("n9xRQPtUP0g", sceShellCoreUtilNavigateToGoHome) +STUB( + "nA0VKJUi2X8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEE5resetEPS9_) +STUB( + "nA45fjr+MNM", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSession13isInitializedEv) +STUB( + "nA4nTdVS5e4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) STUB("nA5rRwLrgIU", sceShellCoreUtilSetSocialScreenStatus) +STUB( + "nA9oyW4lVE4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEED1Ev) +STUB("nAAZcZAQrgA", __asan_stack_malloc_always_5) +STUB( + "nAC1eEH3xG0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEED2Ev) +STUB("nACi9QeVg4w", __tsan_external_register_header) +STUB("nAEVsJSF5b0", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_23NpSessionInvitationInfoEEC2ERKS4_) STUB("nAEqawEZG5s", sceNpEntitlementAccessPollUnifiedEntitlementInfoList) +STUB( + "nAOwGnYSjc0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEC1Ev) +STUB("nAQgas86ruo", + _ZNK3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform14joinStateIsSetEv) +STUB( + "nARu2cgHD3o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEEaSERSA_) +STUB( + "nAXJqQPQ9cQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE4sizeEv) +STUB("nAY81HrWAH8", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicketC1ERS5_) +STUB( + "nAciQg-JdOY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE4sizeEv) +STUB( + "nAdDA3UMCMI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEmmEi) STUB("nAfQ6qaL1fU", sceFontFtSupportType1) +STUB("nAjUtxqB9LI", _ZN3sce2Np9CppWebApi6Common6VectorImE5eraseENS2_13ConstIteratorImEERS6_) +STUB("nAmKGJb6sRI", + _ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody6toJsonERNS_4Json5ValueEb) STUB("nApJjpKNBl4", sceAgcFuseShaderHalves) +STUB( + "nApx6BTQIy0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE8capacityEv) +STUB("nB1qwCvvWwc", _ZN7WebCore8SVGNames4aTagE) +STUB( + "nB1rD0ZE508", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEiRNS2_10LibContextEPT_m) +STUB("nB4sLkEBwME", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEEptEv) +STUB("nB5P77Apjzw", _ZN7WebCore28InspectorFrontendClientLocal20sendMessageToBackendERKN3WTF6StringE) +STUB("nB6UZ-CBfe0", _ZNSt8ios_base5imbueERKSt6locale) +STUB("nBCuC-XurKo", WKPreferencesSetHighlightAPIEnabled) STUB("nBDD66kiFW8", sceShareInitialize) +STUB("nBE10khVsAU", _ZN7WebCore9HTMLNames8slotAttrE) STUB("nBH6i2s4Glc", sceCameraDeviceOpen) +STUB("nBIItYZJIzk", __tsan_get_report_tag) +STUB("nBIpN4mBMjs", monoeg_malloc) +STUB("nBKrIrp2deY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEE7add_refEv) +STUB( + "nBNMVCMebLA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEmmEi) STUB("nBTHhrsp88o", sceCesEucKrToUtf32le) STUB("nBTx0OTc+R0", sceVideoCoreMediaSourceAddSourceBuffer) +STUB("nBYJ4942-WQ", WKPluginInformationBundleIdentifierKey) +STUB("nBaHhQiTjPc", mono_aot_Sce_Vsh_VoiceAndAgentplt_end) +STUB( + "nBcAjS-urnE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEEptEv) +STUB( + "nBfT1+gfsBo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEC1EPNS2_10LibContextE) +STUB( + "nBhothmfqMk", + _ZNK3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfile16hasincludeFieldsEv) +STUB( + "nBkZVT9Z5XQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEEdeEv) STUB("nBv4CKUGX0Y", sceHmdInternalMapSharedMemory) +STUB("nC01hn2XlzQ", _ZN3JSC7Symbols31stringConcatSlowPathPrivateNameE) +STUB("nC0Zgj4tVAY", _ZN9Inspector18InspectorHeapAgentD1Ev) +STUB("nC34ZWPrJk8", + _ZN7WebCore17TextureMapperTile5paintERNS_13TextureMapperERKNS_20TransformationMatrixEfj) +STUB("nC7zcLzwpEo", uhash_setValueDeleter_67) +STUB( + "nCE0oUzC6sY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEptEv) +STUB("nCETMtuZchA", _ZN7WebCore9HTMLNames10srcsetAttrE) +STUB( + "nCGD-BANzTg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEC2EPS8_) STUB("nCL0NyZsd5A", sceNetGetDnsInfo) +STUB( + "nCNmgHsCU3U", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB( + "nCRN9+0hXUM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("nCU0dMWnF9w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEaSERS7_) STUB("nCUgItdN2ms", sceAgcSetShRegIndirectPatchSetNumRegisters) +STUB("nCY4Kbf9kks", usearch_getMatchedStart_67) STUB("nCfhbtuZbk8", sceUserServiceSetPsnPasswordForDebug) +STUB("nCiDgT74Xis", WKPageCreateSnapshotOfVisibleContent) +STUB("nClGsf5G8Bs", _ZN9Inspector28DOMStorageFrontendDispatcherdlEPv) +STUB("nClH8DV3dsg", _ZN7WebCore14JSVoidCallbackD0Ev) +STUB("nCoQtOC8CG4", mono_aot_Sce_Vsh_Orbis_CdlgServerNpCommerceunbox_trampolines) +STUB("nCx+giT2jrA", _ZN3sce2Np9CppWebApi6Common8IteratorImEC1Ev) +STUB("nCzcAMrlehk", _ZN7WebCore22HTMLPlugInImageElement24restartSnapshottedPlugInEv) +STUB("nD+OxQupMas", WKWebsiteDataStoreConfigurationLegacyTLSEnabled) +STUB( + "nD0Rozqc1c8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEED1Ev) +STUB("nD1h8EpuS60", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEE3getEv) +STUB("nD4xNIeYpNY", ShGetInfo) STUB("nD58JS2vOU8", sceVnaGetTtsVolume) +STUB("nD5RNcuimOk", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEEixEm) +STUB( + "nD66tDlp+6I", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEC1EPS8_) +STUB("nDDFFbZNeSs", _ZN3sce2Np9CppWebApi11Matchmaking2V15Cause14setReferenceIdEPKc) +STUB("nDKtb2VgKQg", mono_aot_Sce_Vsh_Np_AppLaunchLinkunbox_trampoline_addresses) +STUB("nDNIuVN8XcQ", _ZN3JSC2VM21float64ArraySpaceSlowEv) +STUB( + "nDNOYz5+bsI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEmmEv) +STUB("nDO9AirbPYQ", u_strrchr_67) +STUB("nDPE3mxjQG0", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15CategoryInfoSubEEC2Ev) +STUB( + "nDPLYMNGeaA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEE11release_refEv) +STUB("nDQHNcAA7oE", Java_com_sony_bdjstack_core_CoreApp_getAppBinding) +STUB("nDUS4Xc-Twc", + _ZN7WebCore11HistoryItem11setFormDataEON3WTF6RefPtrINS_8FormDataENS1_13DumbPtrTraitsIS3_EEEE) +STUB( + "nDVnErygi2U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEED1Ev) +STUB("nDWV3sgOqg8", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEEmmEi) +STUB("nDZ6emNRW0k", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEEmmEv) +STUB( + "nDZqpxJOBMc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEC1EPS8_) +STUB( + "nDafNTdjz30", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEeqERKS9_) +STUB( + "nDd7mvflliU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEEaSERSA_) +STUB( + "nDfPLg4mlzI", + _ZN3sce2Np9CppWebApi14SessionManager2V137ResponsePlayerSessionSpectatorFactory6createEPNS1_6Common10LibContextERKmPKcPNS5_12IntrusivePtrINS3_30ResponsePlayerSessionSpectatorEEE) +STUB("nDiFkxIT2+g", _ZN7WebCore9HTMLNames17onpointerdownAttrE) +STUB( + "nDiMvrwlC3s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE5clearEv) +STUB( + "nDkgyE+9CTc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE10setContextEPNS2_10LibContextE) +STUB("nDlY546YL3E", _ZNK3WTF6String25splitAllowingEmptyEntriesEDs) +STUB("nDlc6zRC2t0", mono_aot_Sce_Vsh_SysUtilWrapperunbox_trampoline_addresses) +STUB( + "nDuhg62uWJY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE8copyFromERKS9_) +STUB("nDyn07nzty0", WKPreferencesSetPlugInSnapshottingEnabled) +STUB( + "nDzRKDzOBUo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEEC2ERKSA_) +STUB( + "nE-74O23rSs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEE5resetEPS9_) +STUB( + "nE-Zuiux43Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEEC2ERKSA_) +STUB( + "nE0ooeCMRm8", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi12getContainerEiRKNS4_23ParameterToGetContainerERNS1_6Common11TransactionINS8_12IntrusivePtrINS8_6VectorINSA_INS3_9ContainerEEEEEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB( + "nE2NEewdYRo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEC1EPS9_) +STUB("nE2UZ8S3BYk", unorm2_isNormalized_67) +STUB( + "nE55N5ZbNeI", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setInteger4ERKi) +STUB("nE5bcvHFP9g", res_findResource_67) +STUB( + "nE7Uaw8mvi0", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities17setacceptLanguageEPKc) +STUB( + "nE8nAvjOqRo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEE11get_deleterEv) +STUB("nEEyItC81l8", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchStatusC1ERS5_) +STUB( + "nEIAIXwoaPs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE21intrusive_ptr_add_refEPS9_) +STUB("nEM+zCZz0JI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEEaSERS7_) STUB("nENvUAsAKdY", sceShellCoreUtilLeavePowerLockSection) +STUB("nEOROxrqYOM", Java_java_net_PlainDatagramSocketImpl_socketSetOption) +STUB("nESq6gIQEFY", _ZN9Inspector22InspectorDebuggerAgent17currentCallFramesERKNS_14InjectedScriptE) +STUB("nEVyOIFw+90", _ZN7WebCore16BlobRegistryImplD1Ev) +STUB( + "nEZZ5vZUD3Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEC2ERKS7_) +STUB( + "nEb8ASolHKM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEeqERKS9_) +STUB( + "nEd0rNq8BOk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEppEi) +STUB("nEiBLNePhho", WKFrameCopyChildFrames) +STUB( + "nEnT4AzTnFM", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setBoolean4ERKb) +STUB("nErh0-bgaRI", _ASCIIData_67) +STUB("nEuTkSQAQFw", _ZTIb) +STUB("nEusu9xBLh0", BgsStorageGetItems) STUB("nEyFbYUloIM", sceGnmGetShaderProgramBaseAddress) +STUB( + "nF1dSAyNwUM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) STUB("nF6bFRUBRAU", sceGnmDispatchInitDefaultHardwareState) +STUB("nF8-CM+tro4", _ZNSbIwSt11char_traitsIwESaIwEE6appendEmw) +STUB("nF9rSdBizhw", mono_btls_free) +STUB( + "nFKouypCJDE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEmmEi) +STUB("nFM3aibrZJA", uprv_decNumberFromUInt32_67) STUB("nFP8qT9YXbo", sceGameLiveStreamingRegisterCallback) +STUB("nFcgu-TskWM", _ZN3sce2Np9CppWebApi6Common8IteratorINS2_17ParameterBaseImpl6KeySetEEmmEi) +STUB("nFj5i0xNIUE", _ZN3sce7Toolkit2NP2V28Matching5RoomsC2Ev) +STUB( + "nFjsttfAnaQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE5beginEv) STUB("nFn-3CWQEyo", sceVdecCoreResetDecoder) +STUB( + "nFpP-R2TAsQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "nFs+4WBGkR4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEC2Ev) +STUB( + "nFumBl7JvTc", + _ZN3sce2Np9CppWebApi14SessionManager2V139RequestCreatePlayerSessionPlayerFactory7destroyEPNS3_32RequestCreatePlayerSessionPlayerE) +STUB( + "nFwyTN74zXo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("nFxbcwY2e1U", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE3endEv) +STUB( + "nFytmXf7ZqQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEEC2ERSA_) STUB("nG+HNBwQ4sw", sceShellCoreUtilGetSocialScreenStatus) +STUB("nG-FYqFutUo", __sys_get_proc_type_info) +STUB( + "nG5zh66OoH4", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEEiRNS2_10LibContextEPT_m) +STUB("nG9zMww7lhE", WKMutableDictionaryCreate) +STUB( + "nGJIGKx6MmA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSD_ESD_) +STUB("nGMLLAcHnZk", ubrk_getAvailable_67) +STUB( + "nGMvy2w-sQs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEED2Ev) +STUB( + "nGOLCAaTsLA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEixEm) +STUB("nGOnPCtlTvI", _ZN10Deprecated25ScriptCallArgumentHandler14appendArgumentERKN3WTF6StringE) +STUB( + "nGV3rMXHPYk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("nGaNQ+PYXo0", ztrans_setTime_67) STUB("nGacpiUONQ0", sceUserServiceSetNpAge) +STUB( + "nGc0q8k4BeQ", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("nGcM1qlE4H8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEED1Ev) +STUB( + "nGkgvd8xhiY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("nGpCBP0tZpU", ucnv_cbToUWriteSub_67) +STUB( + "nGplbFqJRws", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEE5resetEPS6_) +STUB("nGrt3WvBaqY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEE3getEv) +STUB("nH+q46A17fI", JVM_Recv) +STUB("nH7XM+HhXWc", BIO_write) +STUB("nH9FVvfZhCs", SSL_sslSettings) +STUB( + "nHBrl1yyeAs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEmmEv) +STUB("nHHW4MZGIhM", dll_end) +STUB( + "nHMdq-fVy60", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEC2Ev) +STUB("nHN5qXYONHM", _ZN3sce7Toolkit2NP2V27Session7Request7GetDataD2Ev) +STUB("nHU0qnM6vgI", _ZN7WebCore4Node17isContentEditableEv) +STUB( + "nHXqVhvWHU8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEppEv) STUB("nHZpTF30wto", sceNpMatching2SetExtraInitParam) +STUB("nHgo2VpnCB8", _ZNK3sce2np10JsonNumber6GetNumEPj) +STUB( + "nHl7LxzrXzA", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification15BlocklistUpdateEE12deepCopyFromERS8_) +STUB( + "nHn07WW2n6w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEC2EPS6_PNS2_10LibContextE) +STUB("nHpBeV8EC84", il2cpp_profiler_install) +STUB("nHrQB-oXKqE", rgctx_fetch_trampoline_rgctx_116) +STUB("nHweqOqUp+Q", _ZN3sce7Toolkit2NP2V24Core7Request23ServerPushNotificationsC2Ev) +STUB("nHzf8lSfj8w", mono_aot_Sce_Vsh_AppInstUtilWrapperplt_end) +STUB("nI+338zCdYU", _ItL_pS2) +STUB("nI0xthFylNU", + _ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession16getMaxSpectatorsEv) +STUB( + "nI7CLeuxsVA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("nIH6ALR8JYA", _ZN3WTF8JSONImpl10ObjectBase6removeERKNS_6StringE) +STUB( + "nIIP9-J1dE8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEppEv) +STUB("nIKhiCaEcPs", MsvUpdaterInfo) +STUB("nILpV8eSUeI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEE3getEv) +STUB( + "nIMqJ0G24xM", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V134ConnectionQualityPropertiesFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_27ConnectionQualityPropertiesEEE) STUB("nITiXSwEc6w", sceDebugSuspendApplication) +STUB( + "nITzCAaaM38", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEED2Ev) +STUB("nIUaIX+FH2c", _ZN9Inspector15RemoteInspector4stopEv) +STUB("nIWNtQcbQbA", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_17ActivityFeedStoryEEeqERKS4_) +STUB("nIWt+5qjWmo", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlotD1Ev) +STUB("nIY5Kabu1m4", WKContextSetIFilterHTTPProxy) +STUB("nIY9DpOIvR8", _ZN9Inspector20InspectorTargetAgentD2Ev) +STUB("nIaPmAYP0Vs", _ZN3sce2Np9CppWebApi15ProfanityFilter2V219WebApiFilterRequestD1Ev) +STUB("nIbjC1yuj-4", _ZN3WTF8JSONImpl10ObjectBase9setStringERKNS_6StringES4_) +STUB("nIeI69VaPeU", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_11TusVariableENS2_IS4_EEEEC1ERKS7_) +STUB("nIfxkJ8heME", mono_aot_Sce_Vsh_Sl2_NativeQueueClientunwind_info) +STUB("nImOlX+M3MA", _ZN22MmsMdCommonFsOperation8openFileEPKc) +STUB("nIoPyT54-98", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V113SubtaskStatusEEmmEv) +STUB( + "nIqfbQFToMI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEE7add_refEv) +STUB("nIrJzshdiVo", g_list_nth) +STUB( + "nIrlmjsm5w0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEplEm) +STUB( + "nIyTQDVBglY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEE5resetEPS9_) +STUB("nJ0Pu5MzLBw", _ZN3JSC18PropertyDescriptor9setSetterENS_7JSValueE) +STUB("nJ3r2-TtBSU", nn_socket) +STUB( + "nJ5Wkn79SaM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEE10setContextEPNS2_10LibContextE) +STUB( + "nJ67Ao7cFtU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE21intrusive_ptr_add_refEPS9_) +STUB("nJFcKLudoq8", _ZNK3sce2Np9CppWebApi6Common6VectorINS2_6StringEE3endEv) +STUB("nJG-Y2BtOEU", _ZN7WebCore17PageConsoleClientC2ERKS0_) +STUB( + "nJJvkXDZ3ME", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE10setContextEPNS2_10LibContextE) +STUB("nJLHw-RLy04", _ZN19JITSharedTextMemory11shared_freeEPv) +STUB("nJNBTl3iOL0", _ZN3JSC14JSRunLoopTimerD1Ev) +STUB("nJNonkUuVms", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEED1Ev) +STUB("nJNyge0UyI8", _ZN3sce7Toolkit2NP2V28Matching4DataC2Ev) +STUB("nJRnY44WMw4", _ZN3sce7Toolkit2NP2V29Messaging15GameDataMessageD2Ev) +STUB("nJVZjaCQ6oI", _ZN7WebCore17FrameLoaderClient29dispatchDidNavigateWithinPageEv) STUB("nJVgJWVviE4", sceCesRefersUcsProfileJisX0201Roman) +STUB( + "nJadkJ-AvrA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE8pushBackERKS8_) +STUB( + "nJau2r4Avv8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEEC2EPS9_PNS2_10LibContextE) STUB("nJavPEdMDvM", sceFontGlyphRefersMetricsHorizontalAdvance) +STUB("nJdCge1G2wM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEEC2ERS7_) +STUB( + "nJdMZbzLFuA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE3endEv) +STUB("nJf2N15Gj2w", _ZN3JSC11IsoSubspaceC2EN3WTF7CStringERNS_4HeapEPNS_12HeapCellTypeEm) +STUB("nJg34cKegcE", _ZN3WTF8JSONImpl9ArrayBase11pushBooleanEb) +STUB( + "nJgOPImNtg8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEplEm) +STUB("nJjLXvaaLRk", _ZN7WebCore8JSDOMURLD1Ev) +STUB("nJlLZLdhvoI", mono_aot_Sce_Vsh_UpdateServiceWrapperjit_code_end) +STUB( + "nJnMl7E87ZU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "nJnzP+grwUA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEEC2Ev) +STUB("nJp6XjJOysw", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_28ActivityFeedSharedVideoStoryEE7destroyEPS3_) +STUB( + "nJtTyCYh2ZY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE3endEv) +STUB("nJthG9040U8", _ZN4IPMI4impl10ClientImpl10disconnectEv) +STUB( + "nJx2XdScxhE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEptEv) +STUB("nJxCddJNhLU", + _ZN3sce2Np9CppWebApi14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerD1Ev) +STUB("nJz16JE1txM", swprintf) +STUB("nK-6cInedKk", _ZN3sce7Toolkit2NP2V212EventsClient5EventC2Ev) STUB("nK1g+MwMV10", sceHmdInternalGetCrashDumpInfo) +STUB("nK2kT0o0nxE", _ZNSt13basic_filebufIwSt11char_traitsIwEEC2EP7__sFILE) +STUB("nK7hDj2e37Y", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE5clearEv) +STUB( + "nKCCaE9ZGzk", + _ZN3sce2Np9CppWebApi7Matches2V111TaskFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_4TaskEEE) +STUB( + "nKFhf1JE+2s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEE11release_refEv) +STUB( + "nKJxXUjtksA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEE6assignEPS6_PFvS8_EPNS2_10LibContextE) STUB("nKLCGmI-oEw", sceMusicCoreServerGetTrackInfo) +STUB("nKSdTXE6XjQ", _ZNK7WebCore9FloatRect21inclusivelyIntersectsERKS0_) +STUB( + "nKV--EXZ+mQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemProperties13isInitializedEv) STUB("nKWi-N2HBV4", sceKernelPwrite) +STUB("nKaqdLF-yoo", _ZN7WebCore4Node11appendChildERS0_) +STUB( + "nKfEpdnCnWc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEE11release_refEv) +STUB( + "nKkHAalutU0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE3endEv) +STUB( + "nKq3nZNIJmU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEE3getEv) +STUB( + "nKq4u9zsaEw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "nKqmjQLi+gI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEptEv) +STUB( + "nKtGNRD5Lqw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEEcvbEv) +STUB("nKxtfn5Ad40", delegate_virtual_invoke_18_p) +STUB( + "nL2kQRBA0iA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEEdeEv) +STUB("nL3Pa-O0PAE", + _ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody6toJsonERNS_4Json5ValueEb) +STUB("nL6UNJQfVfU", uidna_close_67) +STUB( + "nL7OSW7-1Y0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEC2EPS8_) +STUB("nL8jh-3HkIg", WKPreferencesCopyFixedFontFamily) +STUB( + "nL9HXk4CVXY", + _ZN7WebCore30throwArgumentMustBeObjectErrorERN3JSC14JSGlobalObjectERNS0_10ThrowScopeEjPKcS6_S6_) +STUB( + "nL9vSVq-29s", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB("nLA4Ue4iOGU", + _ZNK3sce2Np9CppWebApi14SessionManager2V124GameSessionMemberForRead12playersIsSetEv) +STUB( + "nLAwO5TMgwM", + _ZN3JSC23createBuiltinExecutableERNS_2VMERKNS_10SourceCodeERKNS_10IdentifierENS_15ConstructorKindENS_16ConstructAbilityE) +STUB( + "nLE8AGfMsd0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEED2Ev) +STUB( + "nLElyOPvF20", + _ZN3sce2Np9CppWebApi14SessionManager2V137RequestGameSessionMemberPlayerFactory7destroyEPNS3_30RequestGameSessionMemberPlayerE) +STUB( + "nLGBmIIU1Kg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEE7get_refEv) STUB("nLM2i2+65hA", sceGnmUpdateGsShader) +STUB( + "nLMhx9mW5Og", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEppEv) +STUB( + "nLO4obRO3R4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEC1EPNS2_10LibContextE) +STUB( + "nLOOpyCOCHc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEEC2Ev) +STUB("nLOX0V+Mc1g", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEED2Ev) +STUB("nLOlVSvvxRc", _ZNK15AbstractStorage13TwitterFolder7GetStatEPNS_4StatE) +STUB("nLRmQ3ilf1U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEEC1EPKS6_) +STUB( + "nLWFJ15BhJ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEE7add_refEv) +STUB("nLXdeO54p0A", uloc_getLCID_67) +STUB("nLXlxShTk54", uprv_asciitolower_67) +STUB("nLmxzeyq5Ug", g_list_reverse) +STUB("nLnz3XxhWuM", _ZN7WebCore25enclosingBlockFlowElementERKNS_15VisiblePositionE) +STUB("nLvHrhkOvOM", _ZN3sce7Toolkit2NP2V29Messaging7Request19SendGameDataMessageC1Ev) +STUB("nLzU1Fz6FFo", + _ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody20getCenterToEdgeLimitEv) +STUB( + "nM2QpIKKTSA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEC2EPS8_) +STUB( + "nM4w8KFcXqg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEED2Ev) +STUB("nM5XqdeXFPw", _ZN3sce4Json5Value10referArrayEv) +STUB("nM81-nqbH14", _ZN3JSC7JSProxy12getPrototypeEPNS_8JSObjectEPNS_14JSGlobalObjectE) +STUB( + "nM9suoyV5HY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "nMEixBCwtNM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEE7add_refEv) STUB("nMFArZfMy7U", sceLibSecureCryptographyMessageUnpadding) +STUB( + "nMLvgdqKTX8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEneERKS9_) STUB("nMLyjnpy2hc", scePssInternalOrbisControllerScan) +STUB("nMMMCp8ab-8", _ZN3sce2Np9CppWebApi14SessionManager2V15Error10setMessageEPKc) +STUB( + "nMQxwZbhY6A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEC2EPNS2_10LibContextE) +STUB("nMXM-3wbMGQ", _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebErrorD1Ev) STUB("nMZid4oDfi4", sceFontSetupRenderScalePoint) STUB("nMbAqI1ty8w", sceVideoOutSysSetOverscanRatio) +STUB( + "nMn3TggOwso", + _ZN9Inspector23CanvasBackendDispatcher13stopRecordingElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("nMoFUeBjzrU", glLineWidth) +STUB( + "nMyn74PsJT0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEeqERKS9_) +STUB("nN-ZPSBQrCI", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectIdD2Ev) +STUB("nN8DkKnWd44", uset_removeRange_67) +STUB( + "nNB8esb+P38", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEaSERKS7_) STUB("nNCXg4kNpuc", sceTsRepresentationIsEnabled) +STUB("nNDGebQ9xr0", InetStatGetResultNative) +STUB("nNDRP34cMD0", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed13UsersWhoLikedEE12deepCopyFromERS7_) +STUB("nNDfmpbZGHM", jcopy_sample_rows) +STUB("nNMv7A2fUNg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12RangeOfRanksEEC2Ev) +STUB("nNNEEXeUnR4", gsharedvt_out_trampoline_p) +STUB("nNPgqRoyKno", jpeg_core_output_dimensions) STUB("nNeC3F8-g+4", sceNpMatching2SignalingGetConnectionInfoA) +STUB( + "nNfzVOqnIFE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEE11release_refEv) +STUB("nNjpF5qPFx0", _ZNK3sce2Np9CppWebApi7Matches2V119CreateMatchResponse6toJsonERNS_4Json5ValueEb) +STUB("nNkIYT7WtHg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEEC2EPS5_PFvS7_EPNS2_10LibContextE) +STUB("nNkYCQIDb+4", _posix_memalign) STUB("nNlUtdDDvZ0", sceAgcDcbSetShRegistersIndirectGetSize) STUB("nNn8Gnn+E6Y", sceUserServiceSetIsQuickSignup) +STUB("nNomSr0Saaw", mono_aot_Sce_Vsh_FileSelectorunwind_info) +STUB( + "nNqExI9JIMk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE6finishEv) +STUB( + "nNs9uBEwVfE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "nNuNwaT7ghg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE8capacityEv) +STUB("nNudbOEqKVI", _ZNK7WebCore8Settings16areImagesEnabledEv) STUB("nNxUUYCpZkw", sceMbusDumpPlayerInfo) +STUB( + "nO-gM0jBw0M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEE11get_deleterEv) STUB("nO-tMnaxJiE", sceGnmDebuggerReadGds) +STUB("nO2JzBO650E", jpeg_fdct_8x16) +STUB("nO7lhWYZA+8", _ZN7WebCore4Attr8setValueERKN3WTF10AtomStringE) +STUB("nO8W67-kbko", WKBundleNodeHandleSetHTMLInputElementAutoFilled) +STUB( + "nOC3dwMR83I", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V318PsnWebErrorWrapperC1EPNS1_6Common10LibContextE) +STUB( + "nOD3uK7gUD8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEED2Ev) +STUB( + "nODzF2s1-JY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEE11release_refEv) +STUB("nOGu3X+sJis", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ResponseCooperativeResultEEdeEv) +STUB("nOIEswYD4Ig", __cxa_free_exception) STUB("nOZRy-slBoA", sceNpPartyCreate) +STUB("nOZZoiGg5vk", _ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse13unsetRelationEv) +STUB("nOadKT6rn7U", u_charsToUChars) +STUB( + "nOhaKRIjsj0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEE7add_refEv) STUB("nOkViL17ZOo", sceHttpCookieExport) +STUB( + "nOtW63-ilkE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE5emptyEv) +STUB("nP-1wxido7w", _ZN3sce7Toolkit2NP2V27Ranking12RangeOfRanks5resetEv) +STUB("nP-5Rnjgj10", SetVolume) STUB("nP-LabYxHbk", sceFiosOpSyncWaitForIO) +STUB("nP-yK1MfjXw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEptEv) +STUB( + "nP03q8nsFw4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEC1Ev) +STUB("nP1iDzJb4mE", _ZN7WebCore18JSHTMLImageElement4infoEv) +STUB("nP8b1EXmb4c", _ZN3sce3Xml3Dom4Node12insertBeforeENS1_6NodeIdES3_) +STUB("nPDiD1+RQXY", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEED2Ev) +STUB("nPJ7pUK4fPo", _ZN3sce7Toolkit2NP2V29Messaging15GameDataMessageC1Ev) +STUB("nPKIj4r-2xk", _ZN7WebCore11DisplayList22ApplyDeviceScaleFactorC1Ef) +STUB("nPLHKWJ+J6A", _ZNSt9_FacetptrISt8messagesIwEE6_PsaveE) +STUB("nPLZ4NKCJHg", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V126BandwidthDownstreamMetrics10getAverageEv) +STUB( + "nPSu8-j6Vio", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEC2EPKS8_) +STUB( + "nPUBEBhiwJA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEE3getEv) +STUB("nPcJiVJltXI", _ZN7WebCore29contextMenuItemTagRightToLeftEv) +STUB( + "nPe5fu741OU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEixEm) +STUB( + "nPhdyJkNJ-k", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) STUB("nPjJRaPCnL4", sceCesEucCnToUtf16be) +STUB("nPlaotGlNnk", ENGINE_set_default) +STUB( + "nPlnjKxKzbo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) STUB("nPlr4B+qS4A", sceBdSchedStartRipping) +STUB( + "nPpYnB49Nx4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEE7get_refEv) +STUB("nPupD+uiK+k", _ZN3sce2Np9CppWebApi7Matches2V118RequestMatchPlayer8fromJsonERKNS_4Json5ValueE) +STUB("nPwXnPFEstQ", + _ZNK7WebCore26Matrix3DTransformOperation5applyERNS_20TransformationMatrixERKNS_9FloatSizeE) STUB("nPzb7Ly-VjE", sceNgs2ReportUnregisterHandler) +STUB( + "nPzmpX1dlkI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEC2EPKS8_) +STUB( + "nQ4M-ZMhy7o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEE11get_deleterEv) STUB("nQ9t43vahAE", sceRemotePlayClientAttachVirtualMicrophone) +STUB("nQBJrxkM-5U", _ZN9Inspector14InjectedScript17setExceptionValueEN3JSC7JSValueE) +STUB( + "nQBV1zupj2g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEmmEv) +STUB("nQDDHVj0B9k", _ZN7WebCore9FrameView18setViewExposedRectEN3WTF8OptionalINS_9FloatRectEEE) +STUB( + "nQELG2um-GM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE10setContextEPNS2_10LibContextE) +STUB( + "nQF1o68SKjM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEmmEv) +STUB( + "nQGJlZRQtXU", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi16testForProfanityEiRKNS4_27ParameterToTestForProfanityERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_24TestForProfanityResponseEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("nQGV7DtDVJk", izrule_getRawOffset_67) +STUB( + "nQIv39EUkgo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEE5clearEv) +STUB( + "nQJcPxb7Y-g", + _ZN3sce2Np9CppWebApi14SessionManager2V131ResponseGameSessionMemberPlayer10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_25ResponseGameSessionPlayerEEEEE) +STUB( + "nQNXzMGpb+o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEED2Ev) +STUB("nQOilOHEwpw", mono_string_new_utf32) STUB("nQT5kYLv0cg", sceAgcGetFusedShaderSize) +STUB( + "nQVRfUCusYs", + _ZN3sce7Toolkit2NP12ActivityFeed9Interface12getTitleFeedEPKNS1_19GetTitleFeedRequestEPNS1_9Utilities6FutureISt6vectorINS1_17ActivityFeedStoryENS1_15AppSTLAllocatorISA_EEEEEb) +STUB("nQVWJEGHObc", _sigintr) +STUB( + "nQZL-1zCIj8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEC2Ev) +STUB("nQd1fRJbCWg", mono_aot_Sce_PlayStation_PUIjit_code_end) +STUB( + "nQdampVIgR4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE5beginEv) +STUB( + "nQi8grWaIc8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB("nQm4o5iOye0", _ZN3sce2np3ipc17ServiceIpmiClient20AbortRequestForAsyncEii) +STUB("nQmaJ0eplx8", p5_16384) +STUB("nQvycLYTm7A", _ZN3WTF10AtomString4initEv) +STUB( + "nQzdYoKCyHM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEC2Ev) +STUB("nR-7G2rX8Kc", _ZN7WebCore13CharacterData7setDataERKN3WTF6StringE) +STUB("nR0nX7p2jFo", audiodeccpuinternal_core_ops_dts_hd_lbr) +STUB("nR53xJOC8Es", unumsys_open_59) STUB("nR6xhiFsOoc", sceAgcDriverNotifyDefaultStates) +STUB( + "nRBedXxS6bE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEE7get_refEv) STUB("nRCHIYfyAMA", sceBgftServiceIntPlayGoStartDataDiscInstall) +STUB( + "nRCtGVOtQWM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEEaSERS8_) +STUB("nRD+2A9Htb4", WKPreferencesGetMediaCaptureRequiresSecureConnection) +STUB( + "nRD5NDy2UFU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEppEv) +STUB( + "nRKhFcnZnFI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEED2Ev) +STUB("nRL-OKL9vQw", _ZN3sce7Toolkit2NP2V28Matching12Notification14NewRoomMessage5resetEv) +STUB("nRMBVSuaSJQ", _ZNK7WebCore5Range19absoluteBoundingBoxEv) +STUB( + "nRNXww8mJl0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEED2Ev) +STUB("nRNa+ZeFvnY", _ZN7WebCore16DeviceMotionData6createEv) +STUB( + "nROK31VVNmI", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("nRR4MuQjSqY", _ZNK3JSC19HeapSnapshotBuilder18descriptionForCellEPNS_6JSCellE) +STUB( + "nRUitC2aKCY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEED2Ev) +STUB( + "nRWbg280bpE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEE5resetEPS9_) +STUB( + "nRXiHp4ezyA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEixEm) +STUB("nRYvlfcejis", EVP_sha384) +STUB("nRaqLkGmjVs", _ZN7WebCore20ISOOriginalFormatBoxD2Ev) +STUB("nRbLafYFvk4", + _Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm13TaPerfCounterE20SceRazorGpuBroadcast) +STUB("nRf0VQ++OEw", _ZNKSt8numpunctIcE11do_truenameEv) +STUB( + "nRgQayjFems", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE5beginEv) +STUB( + "nRjlT++f7Ys", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEED2Ev) +STUB( + "nRnan5sGJUA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEixEm) STUB("nRoYV2yeUuw", sceNpScoreGetRankingByRangeForCrossSave) +STUB("nRsDOZGMclk", _ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForReadC2EPNS1_6Common10LibContextE) +STUB("nRsq6ZWfSgU", _ZNK7WebCore6Region5rectsEv) +STUB( + "nRwXJ7Cy6VM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEEC1Ev) +STUB("nS0WaXw9y0k", _ZNK3sce2Np9CppWebApi13InGameCatalog2V517ContentDescriptor7getNameEv) +STUB("nS12FUaQIdw", _ZN7WebCore8JSPath2D7destroyEPN3JSC6JSCellE) +STUB("nS2-g76qxRk", _ZN3JSC16createRangeErrorEPNS_9ExecStateEPNS_14JSGlobalObjectERKN3WTF6StringE) STUB("nS4i1N-HEws", sceDeci5CreateHostProcess) +STUB( + "nS6xI4DRhPs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "nS8F9xvvo40", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEEaSERSA_) +STUB( + "nSAy48lCVrM", + _ZN3sce7Toolkit2NP2V27NpUtils17checkPsPlusAccessERKNS3_7Request17CheckPsPlusAccessEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("nSIux4OQyJM", FT_GlyphSlot_Own_Bitmap) +STUB( + "nSKHX3lzgfk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("nSSPVGJLMjE", __freeze) +STUB( + "nSWVMYx1TVc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("nSWoL1mOLMg", _ZNK15AbstractStorage18DailymotionService14GetServiceTypeEv) +STUB("nSfJ5OZXgUM", ebuf) +STUB( + "nSfirQLNfwc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEC1EPKS8_) +STUB("nSgZzq-c18Q", __copybits_D2A) +STUB( + "nSihy5n9KVQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEE7add_refEv) +STUB("nSm+f63zez0", WKPluginInformationFrameURLKey) +STUB("nSm0p8gitSI", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_33ActivityFeedSharedScreenshotStoryEED2Ev) +STUB( + "nSo71-xp0yY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEC2Ev) +STUB("nSoL-e4quJU", _ZN7WebCore15ActiveDOMObject6resumeEv) +STUB( + "nSp+IAqg3JU", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot10unsetlimitEv) +STUB( + "nSrHoiuCTKA", + _ZN9Inspector24RuntimeBackendDispatcher14callFunctionOnElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "nSuIqJDkh2c", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi35ParameterToSetGameSessionProperties12setsessionIdEPKc) STUB("nT-7-iG55M8", sceSystemServiceSetPowerSaveLevel) +STUB("nT2u36kfhV0", _ZNK3sce2Np9CppWebApi13InGameCatalog2V513ContentRating11systemIsSetEv) +STUB("nT3hs17EzBY", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V113AttributeTypeEEC2Ev) +STUB( + "nTDdW9Bfz9g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEC2Ev) +STUB("nTDzCOsvf2I", _ZN3JSC14SourceProviderD1Ev) +STUB( + "nTGW5yFc1bg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEaSERS7_) STUB("nTH0jYHpwTk", sceDataTransferTargetRequestCreateRebootData) +STUB("nTInke+UfzU", _ZN3sce7Toolkit2NP2V212NetworkUtils7Request16GetBandwidthInfoD1Ev) STUB("nTJqXsbSS1I", sceNetShowRoute6ForBuffer) +STUB("nTMnPSllCqA", _ZN3JSC8Debugger15updateCallFrameEPNS_9ExecStateENS0_21CallFrameUpdateActionE) +STUB( + "nTNK3WR5-gA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB( + "nTRairDX+qE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEE7get_refEv) +STUB("nTTeDzRoKIo", cairo_ft_font_face_set_synthesize_weight) STUB("nTYiRmnd7zI", scePssAudSetSurroundPan) +STUB("nTYye7OBy6A", _ZN7WebCore9HTMLNames8embedTagE) +STUB( + "nTZZT3G74ss", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEC2EPNS2_10LibContextE) +STUB("nTc+tFajGqQ", __sys_dynlib_get_info2) +STUB("nTeC2vrEhLQ", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V511ContentTypeEEC2Ev) +STUB( + "nTix0McEEG8", + _ZThn16_N9Inspector21InspectorRuntimeAgent10saveResultERN3WTF6StringERKNS1_8JSONImpl6ObjectEPKiRSt8optionalIiE) +STUB("nTj4w9chYP0", mono_aot_Sce_Vsh_Np_Asmjit_code_end) +STUB( + "nTocQBnYFXo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEED1Ev) +STUB( + "nToeZwLD27Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "nTqha94Gduo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEED2Ev) +STUB("nTrpPLSPKw0", _ZN3sce2Np9CppWebApi14SessionManager2V115SearchConditionD1Ev) +STUB( + "nTsR0oM2J5c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEC1Ev) +STUB("nTt6qZfEXh8", _ZNK7WebCore10ScrollView18rootViewToContentsERKNS_8IntPointE) STUB("nTxZBp8YNGc", pthread_mutex_setname_np) +STUB("nTyrv3zhvvU", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110TaskStatusEEC1EPS6_) +STUB("nTzGG6OnecQ", _ZN3sce7Toolkit2NP8Commerce9Interface8checkoutERNS1_19CheckoutInputParamsEb) +STUB("nU+IegSkBWk", _ZN7WebCore16SQLiteFileSystem18deleteDatabaseFileERKN3WTF6StringE) +STUB( + "nU11kxO889E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE5clearEv) +STUB("nU47n34EeTY", u_isupper_67) +STUB("nU81mIH-tnw", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE3endEv) +STUB( + "nUA5k9SzUdg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEEC1ERSA_) +STUB("nUC1MKSAv8k", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEE11release_refEv) +STUB( + "nUFqUXAT+do", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEE11get_deleterEv) +STUB( + "nUMK1+ziLDE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEEC1EPS6_PNS2_10LibContextE) +STUB("nUW05xsssiE", _ZL15throw_exceptionPN10__cxxabiv115__cxa_exceptionE) +STUB( + "nUW7KJbwGeg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEC2EPS8_) +STUB( + "nUbBmCE3444", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEE5resetEPS9_) +STUB( + "nUdUMeufKCA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEED2Ev) +STUB( + "nUkmgRikJjQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEC1EPS8_) +STUB("nUp6I7HlQNM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo9setslotIdEi) +STUB("nUqC+XLLLWU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEED2Ev) +STUB("nV9al8rbOKg", _ZNK7WebCore20RenderBoxModelObject18inlineContinuationEv) +STUB( + "nVAcB0kcPRo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE8copyFromERKS9_) +STUB("nVAn9tAFdEA", mono_aot_Sce_Vsh_AppInstUtilWrapperjit_code_start) +STUB("nVAwmjF-TbE", _ZN12Mp4Retriever14processMta2BoxEv) +STUB("nVB1Nsjwpj0", _ZN3sce2npltERKNS0_4TimeERK10SceRtcTick) +STUB("nVHCuTDP998", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V15Owner14unsetAccountIdEv) +STUB( + "nVIoRUWEtX0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEED1Ev) +STUB("nVJKRq8gRoQ", WKBackForwardListCopyBackListWithLimit) +STUB("nVS8UHz1bx0", _WGetstr) +STUB("nVSOF8lrIqQ", _ZThn136_NK7WebCore16HTMLMediaElement12playbackRateEv) +STUB( + "nVU6Ft6polI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUserD1Ev) +STUB("nViezIi5-b8", _ZN12video_parser7cVpUtil13_vp_ff4_fopenEPKcPPvib) +STUB( + "nVj5yFSALyU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEC1EPS6_PNS2_10LibContextE) +STUB("nVkAFM4iCS4", FcPatternDestroy) +STUB("nVn730pUTh4", _ZN9Inspector25ConsoleFrontendDispatcherC2ERNS_14FrontendRouterE) +STUB("nVqRC51nex4", mono_image_get_filename) +STUB("nVutLTLQBFU", _ZN3WTF8JSONImpl10ObjectBase13openAccessorsEv) +STUB("nVvg8lYpHWw", _ZN7WebCore8SVGNames5zAttrE) +STUB( + "nVzQua6+s4U", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEptEv) +STUB("nW024V4Y0+E", _ZNK7WebCore17JSDOMGlobalObject22scriptExecutionContextEv) +STUB( + "nW14b9Q-gUE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEptEv) +STUB( + "nW4zCtAkLhY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "nW74+cem+s0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEppEv) +STUB("nW9JRkciRk4", strtold) +STUB("nW9XeX3eokI", _ZN3sce2np9SemaphoreD1Ev) +STUB( + "nWbnyFV5eEU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEaSERKS9_) +STUB( + "nWczndPNMVg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEdeEv) +STUB("nWdcQxdPTnc", mono_custom_attrs_has_attr) +STUB("nWetCPTS028", _ZN9Inspector22InspectorDebuggerAgent15getScriptSourceERN3WTF6StringERKS2_PS2_) +STUB("nWfZplDjbxQ", _ZNKSt22_Future_error_category7messageEi) +STUB("nWhihHLegiU", _ZN3sce7Toolkit2NP2V28Presence7Request11SetPresenceC2Ev) STUB("nWigKuh+U8Y", scePerfTraceAprNameEnable) +STUB( + "nWjFS2u-z2g", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE18getResponseHeadersERSB_) +STUB( + "nWjTnmiMEd0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB("nWl-yEHwdbA", _ZN4Manx11MediaPlayerD0Ev) +STUB("nWlIu4rYxck", JVM_GetPrimitiveArrayElement) +STUB( + "nWmrwe1fBJk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE5clearEv) +STUB( + "nWp0dOURRjE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEEC1ERKSA_) STUB("nWqxZ43uS4U", sceIduUtilUninstallApp) STUB("nWrfPI4Okmg", sceFontCreateLibrary) +STUB( + "nWtl9LlWXpE", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V125NatConnectivityProperties11setFromNat2ERKNS1_6Common12IntrusivePtrINS3_19NatConnectivityFromEEE) STUB("nWuza0ZdfqA", sceFiosDirectoryCreateSync) +STUB("nWvH5774ZvI", _ZNK7WebCore30InvertLightnessFilterOperation14transformColorERNS_5SRGBAIfEE) +STUB("nWwBEkoMtCE", png_get_iCCP) +STUB( + "nWzXs2RnZ4M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEC2Ev) +STUB("nX+u+wBSNOo", _ZN7WebCore11MathMLNames11minsizeAttrE) +STUB("nX1faHr2Kf4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEcvbEv) +STUB( + "nX356-1SXIc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEplEm) +STUB("nX3Mbz2TMas", uset_clone_67) +STUB("nXD2WHjuPVY", _ZN3sce3pss4core8graphics14NativeGraphics18ReleaseVideoMemoryEPv) +STUB( + "nXHo76jiyN0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("nXK4qHSpPvQ", _ZN7WebCore28InspectorFrontendClientLocal30constrainedAttachedWindowWidthEjj) +STUB("nXKaTZIVugQ", _ZN3sce7Toolkit2NP2V26Friend7Request22DisplayBlockUserDialogC2Ev) +STUB("nXM0tPnxtI8", _ZN3sce2Np9CppWebApi6Common8IteratorIlEC2EPl) +STUB("nXMv5tFewyM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEEptEv) +STUB("nXPsoyZYXmM", _ZTVN7WebCore11DisplayList7RestoreE) STUB("nXXkrz-HSAQ", sceNpSnsDailymotionDialogGetResult) +STUB("nXYd1oE9ZM0", FcCharSetAddChar) +STUB("nXa0s7xnbsQ", _ZN3sce2Np9CppWebApi6Common8IteratorImEppEv) STUB("nXaF1Bxb-Nw", sceNpScoreGetRankingByAccountIdPcIdForCrossSaveAsync) +STUB("nXajMNMYvcI", _ZN12video_parser5vpcom3rtc11TickAddDaysEPmPKmi) +STUB( + "nXdBq7hGNnY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE21intrusive_ptr_sub_refEPS9_) +STUB("nXlI6ZXjQfc", rgctx_fetch_trampoline_mrgctx_115_p) +STUB("nXlhepw9ztI", SSL_sendPending) +STUB( + "nXmKBI9+Ga4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEC1EPS8_) STUB("nXpC4dnxlI0", sceAjmBatchGetLog) STUB("nXpje5yNpaE", sceVoiceCreatePort) STUB("nXr5Rho8Bqk", sceNpTrophySystemGetTrophyTitleData) +STUB( + "nXrKrj+76Ec", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("nXsuPh83H-g", _ZNK7WebCore20TransformationMatrix12isInvertibleEv) +STUB( + "nXvAanWUP38", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEE5resetEPS6_) STUB("nXwKrwF-wUM", scePigletSetShaderCacheConfiguration) +STUB( + "nXxOlbtvpVI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEC1ERKS7_) +STUB("nY1XtEZgxPM", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11TusVariableEE10deallocateEPS3_m) +STUB( + "nY1vD-t-MiM", + _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse8setTasksERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_4TaskEEEEE) +STUB("nY48HCMg7As", ucol_getKeywordValuesForLocale_67) +STUB("nY6m59RtHew", mono_register_symfile_for_assembly) +STUB( + "nY6si-ukJig", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEC2EPS8_) +STUB("nY6tCbQaVhQ", _ZNK3sce2np14JsonNumberImpl3GetEPm) +STUB("nYA7nXRmwHg", _ZNK7WebCore12ISOWebVTTCue2idEv) STUB("nYBrkGDqxh8", pthread_testcancel) +STUB("nYKfnhLGyO8", WKCookieManagerSetCookieForHostname) STUB("nYX3q3hser8", sceHidControlDisconnectPort) +STUB("nYbNPPMMWik", _ZNK9Inspector22RemoteInspectionTarget22remoteDebuggingAllowedEv) +STUB("nYbsl4u517I", fuse_is_lib_option) +STUB("nYdMXcX71j8", _ZN7WebCore16NetworkSendQueue7enqueueERKN3JSC11ArrayBufferEjj) +STUB("nYgxNM6MO90", WKPreferencesSetShouldConvertPositionStyleOnCopy) +STUB("nYh9OiczTZM", _ZN3JSC21MarkedJSValueRefArrayD1Ev) +STUB( + "nYi6wWy+Tzg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE6resizeEj) +STUB("nYl2inMQNcE", + _ZN3sce2Np9CppWebApi14SessionManager2V123MemberWithMultiPlatformC2EPNS1_6Common10LibContextE) +STUB("nYn0Q3iUFqM", _ZN7WebCore11CSSPageRule5styleEv) +STUB( + "nYo3aWOnM0Y", + _ZN3JSC12RegExpObject16getPropertyNamesEPNS_8JSObjectEPNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB( + "nYs209HVPAA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("nYw48gex-mQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEC1ERKS7_) +STUB("nYwM9FJbT1g", _ZN3sce7Toolkit2NP2V28Matching7Request14SendInvitation19MAX_SIZE_ATTACHMENTE) +STUB("nZ4iwVMjc+U", Java_com_sony_bdjstack_core_CoreApp_getKey) +STUB("nZ7mHYhLa6A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEE7add_refEv) +STUB( + "nZE1SZQh+nI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE5emptyEv) +STUB("nZHk+lpqwVQ", __sys_dynlib_load_prx) +STUB( + "nZI+J8dlH3k", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEixEm) +STUB("nZJfapwEuQw", _ZNK3JSC6JSCell8toNumberEPNS_9ExecStateE) +STUB( + "nZNxsX9uPfk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEED1Ev) STUB("nZZ-9S5sscs", sceDtcpIpStopAuthAsync) +STUB("nZaMCEq4SME", + _ZN7CoreIPC15ArgumentEncoder29encodeVariableLengthByteArrayERKNS_13DataReferenceE) +STUB("nZc-yznH5Gw", _ZN3JSC14JSGlobalObject30deprecatedCallFrameForDebuggerEv) +STUB("nZftcyGspX8", _ZN7WebCore11MathMLNames14mprescriptsTagE) +STUB("nZj1LlF55Uo", _ZNK7WebCore22HTMLFormControlElement12autocompleteEv) +STUB("nZjWJO68oxU", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku17displayPriceIsSetEv) +STUB( + "nZl6pn4k3uo", + _ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse17setPersonalDetailERKNS1_6Common12IntrusivePtrINS3_14PersonalDetailEEE) +STUB( + "nZlIryahlH8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEE5resetEPS9_) +STUB("nZltiqEwZ04", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119PlayStyleProperties11getProgressEv) +STUB( + "nZoGGWeXnVk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEED2Ev) STUB("nZoXleE24-w", scePerfTraceAprNameDelete) +STUB( + "nZqMHNtatUU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEC1Ev) +STUB("nZqyD260j+A", _ZN7WebCore9GLContextnaEmPv) +STUB("nZrizsh90E8", + _ZN9Inspector22InspectorDebuggerAgent14didParseSourceEmRKNS_19ScriptDebugListener6ScriptE) +STUB( + "nZwbO1YmvDU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEED1Ev) +STUB("na3KO+Tiyu8", _ZN7WebCore14ScrollbarTheme5themeEv) +STUB("na8HiY83Wbo", _ZN3sce7Toolkit2NP2V23TUS7Request12GetVariables18MAX_VARIABLE_SLOTSE) +STUB( + "naDzvd0jgxA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEEptEv) +STUB( + "naFyKEzeevQ", + _ZN3sce2Np9CppWebApi14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyD1Ev) +STUB( + "naICaOSqF4g", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) STUB("naInUjYt3so", sceKernelRmdir) +STUB( + "naJtkvNE3s0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEC2Ev) +STUB("naOwex5mTn4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData9setslotIdEi) +STUB("naQq-gbo7oM", _ZN3WTF8JSONImpl5Value6createERKNS_6StringE) +STUB("naSd3GcjHrA", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16TrophyPackTrophyEED1Ev) +STUB( + "naTU67TvfRY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEC1Ev) +STUB("nadjzO4Rufs", WKPageConfigurationCreate) +STUB("nanLrCZSYT8", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE3endEv) +STUB("navnmsciUUM", + _ZN3sce2Np9CppWebApi14SessionManager2V119NonPsnLeaderFactory7destroyEPNS3_12NonPsnLeaderE) +STUB( + "nawDM1RUzlM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEE7add_refEv) +STUB("nawVeDw1vD4", mono_profiler_install_transition) +STUB( + "naxMNrTB+3U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) STUB("nazKyHygHhY", sceNpPartySetVoiceChatPriority) STUB("nb+os+yvPY8", sceNpGriefReportWriteTextChatFile) +STUB( + "nb2n65vTGNM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "nb3--DujhFw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE10setContextEPNS2_10LibContextE) +STUB( + "nb8C7KxShks", + _ZN3JSC7JSArray18getOwnPropertySlotEPNS_8JSObjectEPNS_9ExecStateENS_12PropertyNameERNS_12PropertySlotE) +STUB("nbFv0dBqogw", _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities5Error7getCodeEv) +STUB( + "nbIZtn6wv7A", + _ZN7WebCore25WebSocketChannelInspector29didReceiveWebSocketFrameErrorEPNS_8DocumentERKN3WTF6StringE) +STUB("nbMCuzzIMOg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEEaSERS7_) +STUB( + "nbMeJvVtSs4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEC1EPKS8_) STUB("nbQ0bXMRlhk", pthread_mutex_reltimedlock_np) +STUB( + "nbQD4CaR7Qo", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("nbRU58b2L1E", + _ZN3sce2Np9CppWebApi11UserProfile2V125GetBasicPresencesResponse17getBasicPresencesEv) +STUB("nbTAoMwiO38", _ZNSt10moneypunctIcLb1EEC1Em) +STUB("nbTHF0RZbMI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed13UsersWhoLikedEED1Ev) +STUB( + "nbU2OguyhTE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEEC2ERKSA_) +STUB("nbhoIua+MKo", monoeg_g_slist_free) +STUB("nbmQMuS3p9I", + _ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody19npServiceLabelIsSetEv) +STUB( + "nbp4dYeeEcI", + _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchStatus27getupdateMatchStatusRequestEv) +STUB("nbpwDxSzw68", _ZN3sce3pss4core8graphics6OpenGL20GetTextureFormatTypeENS2_11PixelFormatE) +STUB("nbrxmv70IpM", _ZNK7WebCore23CoordinatedBackingStore4rectEv) +STUB( + "nbu2Ez9KEMM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEplEm) +STUB("nc6OsiDx630", _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE10date_orderEv) +STUB( + "nc7sxvsSdWk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE5clearEv) +STUB( + "ncB8Tw+dlyM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEEC1Ev) +STUB("ncIZeeV7iGk", uregex_setText_67) +STUB( + "ncIcckZh0rk", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE8readDataEPcm) +STUB("ncMrBz6Ln0g", + _ZN3sce2Np9CppWebApi13InGameCatalog2V514ContainerMediaC2EPNS1_6Common10LibContextE) +STUB("ncO9Ut76oII", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEEC2Ev) +STUB( + "ncXpF+CwdDo", + _ZN3JSC10JSDataView6createEPNS_14JSGlobalObjectEPNS_9StructureEON3WTF6RefPtrINS_11ArrayBufferENS5_13DumbPtrTraitsIS7_EEEEjj) +STUB("ncY4waWIyVU", _ZN3sce3Xml3Sax6Parser5parseEPKNS0_6StringEb) +STUB("ncYgyFZrm6E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEE7add_refEv) +STUB("ncYh3bFVTZg", _ZN3sce7Toolkit2NP2V27Ranking7Request11GetGameData14MAX_NUM_BOARDSE) +STUB( + "ncbyqjOFUuI", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi30RecordLargeDataResponseHeaders24hasXPsnAtomicOperationIdEv) +STUB("nci5kyImEeE", _ZN12video_parser5vpcom11string_util8dissolveERSt4listISsSaISsEERKSsmcc) +STUB("nckEaytCgSk", _ZN12video_parser12cVpFileCache5fseekExi) +STUB( + "ncklfuEhCUs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEmmEv) STUB("nclPS1DQcE8", sceFsDevpfsDeleteForVSH) +STUB("nczGteugRow", uhash_nextElement_67) +STUB( + "nczNfb-uPUU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEED2Ev) STUB("nd+0DEOC68A", sceBgftServiceIntDownloadRegisterTaskByStorageEx) +STUB("nd-xdRd4+BU", glIsBuffer) +STUB("nd01aT+29+Y", WKContextSetUseSeparateServiceWorkerProcess) +STUB("nd29CKcg4Kk", _ZN7WebCore18JSHTMLInputElement4infoEv) +STUB( + "nd6TVOaB3eM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEE11get_deleterEv) +STUB("nd7un+PCaM4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEC1Ev) +STUB( + "ndA5Uz07Xqw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE4sizeEv) +STUB("ndESTzIST6U", + _ZNK3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody13locationIsSetEv) +STUB( + "ndGh819r2Kk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEC2EPS8_) +STUB("ndHeGl-LhLE", _ZN3JSC19HeapSnapshotBuilderdaEPv) +STUB("ndJVFcXocIM", _ZN3sce2Np9CppWebApi6Common13ConstIteratorImED1Ev) STUB("ndLeNWExeZE", sceNpTrophyConfigGetTrophySetInfo) +STUB("ndOe3Wc7xjA", u_getDefaultConverter) +STUB("ndPea+dsRcc", JVM_IsArrayClass) +STUB("ndQAQUk3d+I", _ZN12Mp4Retriever13skipBoxRemainEv) +STUB("ndVahoS4958", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError11unsetErrorsEv) +STUB("ndXGIpbTr3Y", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEEdeEv) +STUB("ndXiA4gT0qY", _ZN7WebCore19watchAdaptationNameEv) +STUB( + "nda3+-dyKTk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEC2Ev) +STUB( + "ndbxPJwHqag", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEC2Ev) +STUB("ndc59UeFwpE", GetVideoOutputStatusInt) STUB("nddl5xnQQEY", sceNpMatching2GetRoomJoinedSlotMaskLocal) +STUB( + "ndeFXyedE1o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEE7get_refEv) +STUB("ndkx6av9994", jpeg_destroy) +STUB( + "ndnk3BxZiew", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEED2Ev) +STUB( + "ndoO2leAiXs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE3endEv) +STUB( + "ndtD2V5AsbQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("ne0fhImgqB8", _ZN7WebCore9HTMLNames10ondropAttrE) +STUB("ne3CqrAouMo", _ZN9Inspector27DOMBackendDispatcherHandlerD1Ev) +STUB("ne4hrPkNmD8", _ZNK7WebCore17HTMLAnchorElement7relListEv) +STUB("ne5cDiI4OkA", monoeg_g_queue_push_head) +STUB("ne77q1GOlF8", _ZN3sce2np6Thread4JoinEPi) STUB("neETvp+lxow", sceBgftServiceDownloadPauseTaskAll) +STUB("neFK4isoWN0", Java_java_lang_ClassLoader_findLoadedClass0) +STUB("neGlsHeGLCM", _ZNK7WebCore9RenderBox20flippedClientBoxRectEv) +STUB( + "neIujWlE0x8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("neKaKPwTYGQ", JVM_TraceMethodCalls) +STUB( + "neMzWaM9gw0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEE7add_refEv) STUB("nePk3oFOMXA", sceRemotePlayClientDetachVirtualMicrophone) +STUB("neT3o7wnkW8", uregex_appendTail_67) +STUB("neXogP3vrw0", _ZN3JSC7Symbols19isRegExpPrivateNameE) STUB("neZ60m-+Baw", pthread_switch_delete_np) +STUB( + "nemgisj6lwA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("nevQn6f0t2s", _ZN7WebCore8SVGNames6cxAttrE) +STUB("nf0uWdWys1o", _ZN12video_parser18cProfileCheckerMp48finalizeEv) +STUB("nf3nuJp5GJU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEC1ERKS7_) +STUB("nf5uqeF8fxs", delegate_virtual_invoke_26_p) STUB("nfAfS7f2gR0", sceRegMgrGetInitError) +STUB( + "nfFkE9aSmOs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEED2Ev) +STUB("nfHwXQKYceU", X509_NAME_get_text_by_NID) STUB("nfI5R0ENsAg", sceApplictionGetStateForDebugger) +STUB("nfMZQIjYo5U", _ZNK7WebCore9CookieJar7cookiesERNS_8DocumentERKN3WTF3URLE) +STUB("nfMiMuiJPBQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEEmmEi) +STUB("nfONaRY48Dg", + _ZN3sce2Np9CppWebApi7Matches2V133RequestTemporaryCompetitiveResultC2EPNS1_6Common10LibContextE) +STUB("nfQJHd52puM", _ZN3sce7Toolkit2NP2V28Matching4RoomaSERKS4_) +STUB( + "nfUAYPVhwuM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEppEi) +STUB("nfY+yMcL494", _ZNK3sce2Np9CppWebApi13InGameCatalog2V517ContentDescriptor6getUrlEv) +STUB( + "nfYx5Y+Z0ZI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEEcvbEv) +STUB("nfc7UmDvD5k", _ZNK7WebCore11MediaPlayer17decodedFrameCountEv) +STUB("nfcXP6NETUc", __sync_fetch_and_sub_16_internal) +STUB("nfhV0tD9-ns", Java_java_lang_Runtime_runFinalization0) +STUB( + "nflT4E20BDw", + _ZN9Inspector24ConsoleBackendDispatcher13clearMessagesElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "nfo6Q6hs514", + _ZN7WebCore11WindowProxy18setJSWindowProxiesEON3WTF7HashMapINS1_6RefPtrINS_15DOMWrapperWorldENS1_13DumbPtrTraitsIS4_EEEEN3JSC6StrongINS_13JSWindowProxyELNS8_30ShouldStrongDestructorGrabLockE0EEENS1_11DefaultHashIS7_EENS1_10HashTraitsIS7_EENSF_ISC_EEEE) STUB("nfoAqy07tpE", _sceLibcOnce) +STUB("nfoWUQ1eDl8", _ZNK3sce3Xml3Dom8Document11isAvailableEv) +STUB("nfr6YfsSasQ", + _ZNK3sce2Np9CppWebApi7Matches2V121ResponseTeamStatistic25teamMemberStatisticsIsSetEv) +STUB("nfrFZQGkv+4", _ZN7WebCore11DisplayList8DrawPathC2ERKNS_4PathE) STUB("nfsELpNQ0fo", sceRnpsAppMgrUnblockAppInstall) +STUB( + "nfslwanq-sY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE5startEPNS2_10LibContextE) +STUB("nftirmo6hBg", + _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecb) +STUB("nfyoqm6zlBI", _ZN3sce2Np9CppWebApi7Matches2V123RequestTeamMemberResultD1Ev) +STUB("ng+3+brMOpE", _ZNK7WebCore10ScrollView18rootViewToContentsERKNS_10FloatPointE) +STUB("ng+jNZCCEJ0", + WKWebsiteDataStoreSetResourceLoadStatisticsFirstPartyWebsiteDataRemovalModeForTesting) +STUB( + "ng-K2X9Q46o", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi44ParameterToPatchGameSessionsSearchAttributes10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_44PatchGameSessionsSearchAttributesRequestBodyEEE) STUB("ng4XlNFMiCo", sceUserServiceSetNpSubAccount) +STUB("ng4zxvZ8n7s", _ZN3sce7Toolkit2NP2V28Commerce7Request25DisplayDownloadListDialog11MAX_TARGETSE) +STUB( + "ngEsUBiK1jI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEdeEv) +STUB("ngOn63Y0Qe0", u_vsprintf_67) +STUB("ngSYhqNOedA", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error18getMissingElementsEv) +STUB("ngT2rbyKTXc", _ZN7WebCore21BlobDataFileReferenceC2ERKN3WTF6StringES4_) +STUB("ngTKSFXsVFU", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE3endEv) +STUB( + "ngU9f6qp2ks", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEEC1ERSB_) +STUB("ngUCrjSRKko", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session12Notification18InvitationReceivedEED1Ev) +STUB( + "ngVaxXFtktE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEC2Ev) +STUB( + "ngWWjTGzBlk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "ngWzWEL9MlY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "ngYyoc7kxYA", + _ZThn16_N9Inspector21InspectorConsoleAgent18getLoggingChannelsERN3WTF6StringERNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Console7ChannelEEENS1_13DumbPtrTraitsISA_EEEE) +STUB("ngZMooSt-ys", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12FriendsRanksEE3getEv) +STUB("ngZnQWyUvGI", statfs) +STUB("ngbXXOIU8do", WKBundlePageSimulateMouseDown) +STUB( + "ngiSWgFK8VY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE3endEv) +STUB( + "ngl-e+GmDpk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE8copyFromERKS9_) +STUB("nh-IxxfQL3c", mono_aot_System_ComponentModel_DataAnnotationsjit_got) +STUB( + "nh-TqmKWmo0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEEcvbEv) +STUB( + "nh1QEJraMJI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEE3getEv) +STUB("nh2IFMgKTv8", kqueue) +STUB("nh7fzBeK+FM", _ZN3sce7Toolkit2NP2V24Core15MemoryPoolStatsD1Ev) +STUB("nhBxqN1sm-c", + _ZN3JSC8JSObject19putDirectMayBeIndexEPNS_9ExecStateENS_12PropertyNameENS_7JSValueE) +STUB( + "nhDT0YVaIHE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEneERKS9_) +STUB( + "nhFyHUHrNf0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE7reserveEi) STUB("nhLGA3dYkpk", sceFsInitUmountPprPkgOpt) +STUB( + "nhQcqgDcnLw", + _ZN3sce7Toolkit2NP10ParametersC2EPFvRKNS1_5EventEPvERNS1_9NpTitleIdES6_S6_mPNS1_19AllocImplementationE) +STUB( + "nhQi1epkpgM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEneERKS9_) +STUB("nhTJWQnk2A8", + _ZN7WebCore5Frame7setViewEON3WTF6RefPtrINS_9FrameViewENS1_13DumbPtrTraitsIS3_EEEE) +STUB("nhUtzKj6+nY", jpeg_fdct_ifast) +STUB( + "nhVCbuRprA0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEixEm) +STUB( + "nhWOAO8o9OE", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_23NpSessionInvitationInfoENS1_15AppSTLAllocatorIS5_EEEED1Ev) +STUB( + "nhYFM2+nppE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEmmEi) STUB("nhgjiwPUIzI", sceNpJsonParseExInit) +STUB("nhnpWUm6U1A", __asan_store4) +STUB( + "nhpG2yQb1+Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEptEv) +STUB("nhswP6kdtw8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEEaSERS7_) +STUB( + "nhtdePy5m1A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEED1Ev) +STUB( + "nhy4rBd28f0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEEaSERSA_) +STUB( + "nhyrAOcHAqc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEneERKS9_) +STUB("ni-K-leoQNg", ft_mem_qrealloc) +STUB("ni0NipPWZYQ", ucol_close_67) +STUB("ni0klBYemzQ", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12unsetString3Ev) +STUB( + "ni7OYMQtYfo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEEC1ERSA_) +STUB("ni9yY+yWJmo", _ZN3sce7Toolkit2NP23ChallengeConsumeRequestC2Ev) +STUB( + "niCyTWrRxmQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEE7add_refEv) STUB("niEWK3zCAGQ", sceMbusDebugTerminateApplication) +STUB("niGYLJrYHsg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEEC1ERSA_) +STUB("niIR3TU71Bg", cairo_set_matrix) +STUB("niK485vUNSQ", _ZN4IPMI4impl11SessionImpl27respondToAsyncMethodRequestEjjiPKNS_8DataInfoEj) +STUB( + "niNYmmtbOZY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEED2Ev) +STUB("niNpqcKvmY0", _ZN12video_parser17cVideoOperatorMnvC1EPKc) +STUB("niOakMzo8VQ", _ZN3sce3Xml3Sax6Parser11setUserDataEPv) +STUB("niPixjs0l2w", _LLogpoly) +STUB( + "niQ1H45ND5M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("niRwsLAx03M", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEEC1Ev) +STUB("niWVNXcJCpM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEE7add_refEv) +STUB("niXN2N4o3yY", _ZN3sce2npeqERKNS0_9NpTitleIdES3_) STUB("niYrNjsCULE", sceHidControlSetRevokeList2) +STUB("niZ0v7ZxaQ8", _ZN3sce2Np9CppWebApi12Leaderboards2V123RecordScoreResponseBodyD2Ev) +STUB( + "nimiGKR71QE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("nirOLXKNmoc", _ZN3sce2Np9CppWebApi13InGameCatalog2V59PublisherC1EPNS1_6Common10LibContextE) +STUB("nisaYl64P7s", mono_aot_Sce_Vsh_Np_Papcplt) +STUB("niuE7cBVUnM", _ZN3sce2Np9CppWebApi7Matches2V116RequestMatchTeamD2Ev) +STUB("nizs7hXvioQ", GENERAL_NAME_free) +STUB("nj+T-QhU2jc", _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody12unsetPlayersEv) +STUB("nj-3Jr5a4SE", mono_aot_Sce_Vsh_UsbStorageSceneunwind_info) +STUB("nj-eFx533Mc", + _ZN3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinitionaSERS5_) +STUB("nj0zxZTsvg4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEC1Ev) +STUB("nj7uUuh6zfI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEEixEm) +STUB("nj8P0Y1JToE", _ZN7WebCore18JSHTMLImageElement9toWrappedERN3JSC2VMENS1_7JSValueE) STUB("njAb3txIO8k", scePerfTraceIoControllerAddBufferNotifyEvent) +STUB("njBb1RnJ43M", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchStatusD1Ev) +STUB("njBvUisSV84", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEEaSERKS5_) +STUB( + "njCl-tE1k1w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEEC1EPS8_PNS2_10LibContextE) STUB("njGikRrxkC0", sceRazorCpuPlotValue) +STUB( + "njHmhSZGsio", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB("njLwua7Apwo", ulocdata_setNoSubstitute_67) +STUB("njMNfCeXcIs", mono_aot_System_Reactive_Interfacesmethod_addresses) +STUB("njRCx+Y1umM", _ZN3JSC7Symbols22ArrayBufferPrivateNameE) +STUB("njSuVaOC4UA", mono_native_thread_id_get) STUB("njTTET86Ag8", sceVideoCoreDeleteStream) +STUB( + "njUO4L32DDM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEC2EPKS8_) STUB("njVl0vsj1Co", sceDebugGetEventList) +STUB( + "njVoeYPU2XU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE6resizeEj) +STUB("njXgooO8zYw", _ZNK3sce2Np9CppWebApi11Matchmaking2V19Submitter11getPlatformEv) +STUB("njjlb33uOYo", mono_aot_mscorlibjit_got) +STUB( + "njkPByjpEp8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("njq8223axV4", + _ZN9Inspector17BackendDispatcher12CallbackBaseC2EON3WTF3RefIS0_NS2_13DumbPtrTraitsIS0_EEEEl) +STUB("njrvRzhGwqk", _ZNK7WebCore24RotateTransformOperation1xEv) +STUB( + "njtXq32QWDE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "njxwpXkOndY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEED1Ev) +STUB("njzAGv0TEL4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEEC2EPS6_) +STUB( + "njzY4fJXwGs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEC1EPS8_) +STUB("nk+0yTWvoRE", _ZNSo6sentryD2Ev) +STUB("nk2BNuhoqrQ", _ZN15AbstractStorage14DailymotionAPI8initHttpEv) +STUB("nk3yHQPZxLA", _ZNK3WTF10StringView10startsWithEDs) +STUB("nk7y+1-5Rlc", uhash_put) STUB("nkAloVxQaEc", ScePsmMonoThreadsSetShuttingDown) +STUB("nkCE4t7mLJc", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIiEC1EPi) +STUB("nkF11ZPn6-A", mono_aot_System_Runtime_Extensionsunbox_trampolines_end) STUB("nkMkM8NEEnI", sceMbusGetSimulatedHandleStatusInfo2) +STUB("nkQjPDHLTnE", _ZN7WebCore16ISOSchemeTypeBoxD1Ev) +STUB("nkSbKYK2gRg", _ZN7WebCore11DisplayList13StrokeEllipseD2Ev) +STUB("nkbTjX8ghpY", BgsStorageGetContainers) +STUB("nkc66Jj+4cE", il2cpp_class_get_declaring_type) +STUB( + "nkhCj51cZ-M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEEC1Ev) +STUB("nktpuKnJu6s", _ZN7WebCore9HTMLNames24webkitattachmentpathAttrE) +STUB( + "nl+KSGi6MUk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("nl0hCP77kLE", _ZN7WebCore16HTMLInputElement7setTypeERKN3WTF12AtomicStringE) +STUB("nl55Llx0JDw", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTicketsD2Ev) +STUB( + "nl5zBZ6iEoc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE8capacityEv) +STUB( + "nl6AtfqkUwg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEED1Ev) +STUB( + "nl7bsKpAhKU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE3endEv) +STUB("nl8lQxwAceM", glBindBuffer) +STUB( + "nlASSSHswJQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE5clearEv) +STUB("nlAk46weq1w", + _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecm) +STUB("nlFQM4R-Aco", _ZN7WebCore11JSDOMWindow4infoEv) +STUB( + "nlNyw7xqkyw", + _ZN3sce2Np9CppWebApi14SessionManager2V143GetFriendsPlayerSessionsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_36GetFriendsPlayerSessionsResponseBodyEEE) +STUB( + "nlO5CFDb4o8", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_34DetailedProductInfoListInputParams9ProductIdEEC2ERKS5_) +STUB( + "nlOImIGecJw", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEiRNS2_10LibContextEPT_m) STUB("nlOWAiRyxkA", sceUserServiceGetNpAuthErrorFlag) +STUB("nlRz29sqDFk", _ZN3JSC7Symbols17unscopablesSymbolE) STUB("nlU2VnfpqTM", sceFontWritingLineGetRenderMetrics) +STUB( + "nlW1NcG7d18", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE7popBackEv) +STUB( + "nlXuC1i2uG0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEC2Ev) +STUB("nlYycDAxvdE", _ZNK3WTF6String6latin1Ev) +STUB("nlaojL9hDtA", round) +STUB("nleHqndSeQ0", _ZN3sce2np10CancelLock3EndEPKciS3_) +STUB("nleYBZY-BsY", png_write_image) +STUB( + "nlha9nL7tC8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE7reserveEi) +STUB( + "nlmMXiB0g7U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEED1Ev) +STUB( + "nlqZjbcWgJ0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEE11release_refEv) +STUB("nlrpj3EEGcc", _ZN8meta_gen14ImageRetriever10SetMetaValEim) +STUB( + "nluZgF3QybI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEmmEi) +STUB("nlwpUngmVeM", _ZN9Inspector22InspectorDebuggerAgent29clearInspectorBreakpointStateEv) +STUB("nlxVZWbqzsU", _ZNSt14numeric_limitsIcE6digitsE) +STUB("nm2W87jyoB0", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEEppEi) +STUB( + "nm3mGGxDUO4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE5emptyEv) +STUB("nm7E-8HX0jE", WKPreferencesSetWebSQLDisabled) +STUB( + "nm95h+-2Sdk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEmmEv) +STUB("nmC8xJAWwLY", _ZN3sce7Toolkit2NP2V24Core15StringifyResult15RESULT_MAX_SIZEE) +STUB( + "nmCKBmCOyh4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEC2Ev) +STUB("nmDWFehIWBQ", _ZN7WebCore16ThreadGlobalDataC2Ev) +STUB("nmGqNyrNQj0", _ZN7WebCore22parseVPCodecParametersEN3WTF10StringViewE) STUB("nmHzU4Gh0xs", sceHmdSetupDialogClose) +STUB("nmL6U3DW8L0", TEECI_InitASD) +STUB( + "nmOGY2RkyFA", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetrics6toJsonERNS_4Json5ValueEb) +STUB("nmP+-IDK-EY", Java_com_sony_bdjstack_ti_Database_getPlayLists) +STUB("nmQLo50WaFA", _ZN7WebCore23ISOSchemeInformationBoxD1Ev) +STUB("nmUsbuL3Rc0", glGenerateMipmap) +STUB( + "nmVLJUjl3JM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEE11release_refEv) +STUB("nmWn8Otb2Nk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEED1Ev) +STUB("nmZO8fyag2o", _ZNK3sce2Np9CppWebApi6Common6VectorIiEixEm) +STUB( + "nmcvCrzt2Wk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEC1Ev) +STUB("nmm20WexfqY", _ZN3sce2Np9CppWebApi15ProfanityFilter2V219WebApiErrorResponse10unsetErrorEv) +STUB( + "nmz5JYKcMfY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB("nn1ttZrCY6M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEC2Ev) +STUB("nn4U0B9p6t8", il2cpp_class_is_subclass_of) +STUB("nn8b-zfOB44", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesD2Ev) +STUB( + "nnEAjD8eDGc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB("nnHeqUMs3lA", libc_application_heap_api) +STUB("nnJBTIMKe4E", mono_aot_Sce_Vsh_Np_ServiceCheckerunwind_info) +STUB("nnLYSczELkM", _ZN7WebCore9HTMLNames19aria_labelledbyAttrE) +STUB("nnNDJYj7dlM", _ZN7WebCore11portAllowedERKNS_3URLE) +STUB( + "nnPOTDW5r7I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEC2EPKS8_) STUB("nnR7KAIDPv8", sceCameraSetUacModeInternal) +STUB("nnTwtS259xo", mono_hazard_pointer_get) +STUB("nnb4hOLGOMs", il2cpp_thread_get_frame_at) +STUB( + "nnippS4lUsU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEaSERS7_) +STUB( + "nnjuZPpKZTc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEED1Ev) +STUB( + "nnjwC-RXjfo", + _ZN3sce2Np9CppWebApi14SessionManager2V125LeaderWithOnlineIdFactory7destroyEPNS3_18LeaderWithOnlineIdE) +STUB( + "nnkFVoA9NUs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEC2EPS8_) +STUB("nnn-IHAO49Y", uhash_setResizePolicy_67) +STUB( + "nnoJGzckGOg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE8capacityEv) STUB("nnoxZUHK+SA", pthread_getcpuclockid) +STUB("nntIf9ukTBk", __tsan_atomic8_store) +STUB( + "nnv4jJSEY5s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEC1Ev) +STUB( + "nnyzmJbR40o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEEptEv) +STUB("no-jO-qaBAI", _ZN3JSC15JSWrapperObject13visitChildrenEPNS_6JSCellERNS_11SlotVisitorE) +STUB( + "no0AiqphBIQ", + _ZN7WebCore13KeyboardEvent6createERKNS_21PlatformKeyboardEventEON3WTF6RefPtrINS_11WindowProxyENS4_13DumbPtrTraitsIS6_EEEE) +STUB("no0QS6stnLI", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container5setIdEPKc) +STUB("no3bVGZVnaM", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEEptEv) +STUB( + "no3w6pZUOZY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEC1ERKS7_) STUB("no6T3EfiS3E", sceSysmoduleIsCameraPreloaded) +STUB("no7Q08r7D4I", _ZN3sce7Toolkit2NP9Utilities6FutureIiED2Ev) +STUB("no9LuKkiLhQ", _ZN3JSC2VM22arrayIteratorSpaceSlowEv) +STUB("noBxgWVHwBg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEptEv) +STUB("noIeQ08Ofho", ASN1_INTEGER_free) +STUB("noJm52uLN00", _ZNK3sce2np4User10IsLoggedInEv) +STUB("noLHUdxm01g", _ZN3WTFeqERKNS_7CStringES2_) STUB("noQgleu+KLE", sceNpWebApiDeleteRequest) +STUB("noRFMfbcI-g", CERT_enumerateCRL2) +STUB("noWnOQpQcCc", __asan_exp_store16_noabort) +STUB("noY4H2ZEXJw", _ZN3WTF10StringImpl4findEPS0_j) +STUB( + "noaltmxPAhk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEEptEv) +STUB( + "nockraAks2M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEED2Ev) +STUB("nodPWqrkXMw", + _ZN3sce2Np9CppWebApi7Matches2V124LeaveMatchRequestFactory7destroyEPNS3_17LeaveMatchRequestE) +STUB("nofAEAG9+TM", WKPreferencesGetContentChangeObserverEnabled) +STUB( + "nokk2kTpDBA", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setBoolean3ERKb) +STUB("nol3vzTAjz4", udata_close) STUB("nomcox0J32k", sceFiosDelete) +STUB("nooBSCAPeS8", _ZN3WTF20fastDisableScavengerEv) +STUB( + "nooNPGUKTOg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEED1Ev) +STUB( + "noqPWCIEUpw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEppEi) +STUB( + "nornPdSITDw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEEC2ERSA_) STUB("nosV+8v+A9o", sceBgftServiceIntDownloadStopTask) +STUB("nosVV9QF4T8", _ZN3sce7Toolkit2NP2V27NpUtils7Request17CheckAvailabilityD1Ev) +STUB("nour4-O5aD0", _ZN4IPMI4impl11SessionImpl6getMsgEjPvPmmPj) +STUB( + "novj1RWeAuE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEE7get_refEv) +STUB( + "now3el7b4WY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEE11get_deleterEv) +STUB("nowu8uQECt4", mono_md5_get_digest) +STUB( + "noxyKZzZAS0", + _ZNK3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBody6toJsonERNS_4Json5ValueEb) +STUB( + "nozS9cbmf4I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE4sizeEv) +STUB("nozvJyzd5dc", _ZN3sce7Toolkit2NP22UpdateNpSessionRequestC1Ev) +STUB( + "np1kl+yPzpI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEC1ERKS7_) STUB("np2cGvsjqvY", sceVnaCloseTtsStream) +STUB("np6xXcXEnXE", _Thrd_id) +STUB("npDNnVZ56kw", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIlEmmEv) +STUB( + "npE+jcuQKXE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE7reserveEi) +STUB( + "npE5JcylRjw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEC1Ev) +STUB( + "npGPyk9SPQw", + _ZN3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsSearchRequestBodyC2EPNS1_6Common10LibContextE) +STUB( + "npIavlsIRpA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEeqERKS9_) +STUB("npLpPTaSuHg", fscanf) +STUB("npM8ZhjgdZg", _ZN23sceMetadataReaderWriter12readMetadataERKSsRKNS_8MetadataEjRS2_) +STUB( + "npMIfvNUuiQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB( + "npNpDbi00ug", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE3endEv) +STUB( + "npROrQbAfMk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEmmEi) +STUB("npRp9gruTcY", __gethex_D2A) STUB("npU5V56id34", sceNpSignalingGetContextOption) +STUB( + "npVwjyegYTI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEC1Ev) +STUB("npXHlgPpwI0", _ZN7WebCore24CoordinatedGraphicsLayer16setMasksToBoundsEb) +STUB("npYn4GHMRHs", WKPreferencesGetMultithreadedWebGLEnabled) +STUB("npa5aUCaU2s", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110TaskStatusEEmmEi) +STUB("npdBVCK80cs", _ZN7WebCore14FrameSelection7setBaseERKNS_15VisiblePositionENS_14EUserTriggeredE) +STUB( + "npdGyv74eAc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEC2EPS8_) +STUB( + "npeuTU0Go4A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEC1EPKS8_) +STUB("npfZ5V5VDMU", monoeg_g_slist_last) +STUB("nphtG-7DtyY", _ZN3WTF15ThreadConditionC2Ev) +STUB( + "npmWkG3qBgM", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "npntAsLSDmw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE4sizeEv) +STUB( + "npo5VNRCtKw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEC2Ev) +STUB( + "nppng2ksNkA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE7reserveEi) +STUB("npwsQC9KsdQ", u_vsnprintf_u_67) +STUB("npyROZbXXpw", _ZNK7WebCore16HTMLTitleElement4textEv) +STUB( + "npyfjyCXAaQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("nq-FMcy8LXU", WKGeolocationPermissionRequestGetTypeID) +STUB("nq-gzaZnllo", _ZN3WTF8JSONImpl10ObjectBase4findERKNS_6StringE) +STUB("nq0Lw1g-HpA", _ZN7WebCore8SVGNames18letter_spacingAttrE) +STUB("nq4Y79dxE5M", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_16SessionAttributeEE7addressERS3_) +STUB("nq7lx7M2Blo", mono_aot_Sce_Vsh_UsbStorageSceneunbox_trampolines_end) +STUB("nqCI0o-6rRg", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V117ReputationFactory7destroyEPNS3_10ReputationE) +STUB("nqD9bBu-W6U", _Unwind_GetDataRelBase) STUB("nqDEnj7M0QE", sceUserServiceGetAutoLoginEnabled) +STUB("nqFAhqzej7s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEE7get_refEv) STUB("nqG7rqnYw1U", sceSigninDialogGetResult) STUB("nqHJ9X3L3zI", scePssAudIsStopped) +STUB( + "nqJnq6MoJKQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("nqNjaxls1D8", bdjbg_getInfo) +STUB( + "nqQpr4WAfcw", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody16getComparedValueEv) +STUB("nqR3CLMiJoM", + _ZN7WebCore18TextureMapperLayer15setBackingStoreEPNS_25TextureMapperBackingStoreE) +STUB( + "nqVQ8s+oTjc", + _ZN9Inspector24NetworkBackendDispatcher19setExtraHTTPHeadersElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) STUB("nqXpw3MaN50", sceAudioInSetUsbGain) +STUB("nqYEZn6swPY", utrans_toRules_67) +STUB( + "nqdVuR5FJZU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE5beginEv) +STUB("nqiJZ8rcJO4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEC1Ev) +STUB( + "nqkxqaDHNow", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB("nqmUW6Z8xLE", cairo_font_face_reference) +STUB("nqpARwWZmjI", _ZTIPs) +STUB( + "nqpswf9W4fo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB( + "nqt5VkjyH5c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "nquV-k-pdAE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "nqvXpWY6OVU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE10setContextEPNS2_10LibContextE) +STUB( + "nr+wZc+djr4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEC1EPS8_) +STUB( + "nr-tli5Dp54", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEppEi) +STUB( + "nr4+nQ18BxA", + _ZN3sce2Np9CppWebApi14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBody25getJoinableSpecifiedUsersEv) +STUB( + "nr4NB1wKg0M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEEC2Ev) +STUB("nr6ix5Uq8R0", _ZNK3sce2Np9CppWebApi15Personalization2V111ErrorEntity6toJsonERNS_4Json5ValueEb) +STUB( + "nr9Loxpv6XA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEE11get_deleterEv) +STUB("nrJYOIQ6yao", mono_aot_Sce_PlayStation_Jsonjit_code_end) +STUB("nrJmuDu5WFs", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEEC2Ev) +STUB("nrPF1HGjG+0", _ZN7WebCore13SleepDisablerD2Ev) STUB("nrPfOE8TQu0", sceHttp2AddRequestHeader) STUB("nrQRlLKzdwE", sceNpProfileDialogOpenA) +STUB("nrQngqVa2mU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEE3getEv) +STUB( + "nrRClfxRpvo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEppEi) +STUB("nrWEGAxN9sw", WKWebsiteDataStoreIsStatisticsRegisteredAsRedirectingTo) +STUB("nrdvxOnxxLc", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_16SessionAttributeEE9constructEPS3_RKS3_) +STUB("nrg-o7sXbKk", _ZN9Inspector26TimelineFrontendDispatchernwEm) +STUB("nrhlqqa1Ryo", _ZN7WebCore10StorageMap6createEj) +STUB("nriDzKvhp2c", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEEC1EPNS2_10LibContextE) +STUB( + "nrmzfDkj9oM", + _ZN3sce2Np9CppWebApi11Matchmaking2V128PlayerForTicketCreateFactory7destroyEPNS3_21PlayerForTicketCreateE) +STUB( + "nrqjNSCR4-Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEEC1EPSA_PNS2_10LibContextE) +STUB("nrvHUJnoOGM", _ZN3sce7Toolkit2NP2V28Commerce7Request11GetProductsC1Ev) +STUB( + "ns58F28dS3g", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectatorD2Ev) +STUB( + "ns5gwIQLOaY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEED2Ev) STUB("ns8HVzVqaNo", sceShellCoreUtilGetGpuLoadEmulationModeByAppId) +STUB("nsBDTu22CBU", fchmodat) +STUB("nsBS3-CH8uw", + _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession17unsetJoinDisabledEv) +STUB("nsBnBt11r9I", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge18ChallengeThumbnailEEC1Ev) +STUB("nsHS4tnwGyU", _ZN3WTF12base64DecodeERKNS_6StringENS_33SignedOrUnsignedCharVectorAdapterEj) +STUB("nsI9smYR3xQ", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_23NpSessionInvitationInfoEE7addressERKS3_) +STUB("nsN1RbvzhTg", _ZN9Inspector21InspectorRuntimeAgent34setControlFlowProfilerEnabledStateEb) +STUB("nsNNFzmax7s", WKContextMenuItemSetUserData) +STUB("nsOB95QKH+g", _ZN7WebCore9HTMLNames5ttTagE) +STUB( + "nsPhpPh2fF0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEEaSERSA_) +STUB("nsQrd1vIsOU", mono_btls_x509_crl_get_last_update) +STUB("nsSfxRmrl3c", _ZN7WebCore8SVGNames9titleAttrE) +STUB("nsUltDlbQsU", _ZN3WTF14FileSystemImpl10fileExistsERKNS_6StringE) +STUB("nsXnVfbWLtw", _ZN7WebCore11DisplayList8FillPathC2ERKNS_4PathE) +STUB( + "nsYfSphgs-M", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi44ParameterToPatchGameSessionsSearchAttributes9terminateEv) STUB("nsYoNRywwNg", scePthreadAttrInit) +STUB( + "nsaEY-eY1+s", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser11unsetfieldsEv) +STUB("nsbR5-4UTHU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEE7get_refEv) +STUB("nsc5rBVPrJ8", _ZN3WTF9MediaTime14indefiniteTimeEv) +STUB("nsiPmZQVkx4", _ZN3sce2Np9CppWebApi6Common6VectorImEC1Ev) +STUB("nsieseBIdr8", GCC_except_table117) +STUB( + "nsk+7Li7zkk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEE5emptyEv) +STUB( + "nskuTkzXpP8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEdeEv) +STUB( + "nslD-bkfxVw", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEiRNS2_10LibContextEPT_m) +STUB("nslHuWRPL80", _ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequestD2Ev) +STUB("nslw+B78rZU", _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead12setSessionIdEPKc) +STUB("nsqL77brn7c", _ZN9Inspector21InspectorConsoleAgentnaEmPv) STUB("nsyWCTsI3MY", sceCoredumpGetStopInfoGpu) +STUB( + "nt0eLNmV1KU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEmmEv) +STUB( + "nt1CxYnMsDQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEE3getEv) +STUB( + "nt1jKvNh8EE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEppEi) +STUB( + "nt3TJwSrxXw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB("nt84GNfd0-E", mono_aot_Sce_Vsh_AppDbWrapperjit_code_start) +STUB("ntG-m0A3Hds", _ZN18MmsFileUpdaterBaseD0Ev) +STUB("ntHN+xACke0", uset_toPattern_67) +STUB( + "ntLZLD-b0js", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEC1EPS8_) +STUB("ntP7sqUDJfw", GCC_except_table240) +STUB( + "ntPBH37VMLM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE) STUB("ntQlwZUs6N4", sceVideoStreamingEngineMediaKeySessionGetExpiration) +STUB( + "ntSz12rGVNw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEEaSERKSA_) +STUB("ntUjLWHNhAM", _ZN10Deprecated25ScriptCallArgumentHandler14appendArgumentEb) +STUB( + "ntWtqFF5eWI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEEC1Ev) +STUB("ntXGPpT9Tpw", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadDataC1ERS5_) +STUB( + "ntZAF17-wGM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEC2ERS7_) +STUB("ntbBpCo9rYk", _Z30VideoPlayerVcs_CancelLoopRangei) +STUB("ntfVELXIYvE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEptEv) +STUB("ntkvNxFOhK4", _ZN3sce7Toolkit2NP24SendInGameMessageRequestC2Ev) +STUB( + "ntmhshS90Hc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEaSERKS8_) +STUB( + "ntpJVZPYFp0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEdeEv) +STUB( + "ntqN5dyAOMA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEC2EPS6_PFvS8_EPNS2_10LibContextE) STUB("ntrc3bEWlvQ", sceFontGlyphRefersMetrics) +STUB( + "ntsHjpErCPo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("ntw5MF+O8pg", png_get_error_ptr) +STUB("ntzwXOocTUY", _ZN12video_parser12cVpFileCache5ftellEPy) +STUB("nu-YBQYFZ98", _ZNK7WebCore26ISOProtectionSchemeInfoBox13schemeTypeBoxEv) +STUB("nu3lB5JtVwA", _ZN15AbstractStorage15FacebookService4StopEv) STUB("nu4a0-arQis", sceKernelAioInitializeParam) STUB("nu542EmGFD4", sceShellCoreUtilStartOptimization) +STUB("nuAkppz+PBs", _ZN8meta_gen14ImageRetriever21InitializeFsOperationEPKc) +STUB( + "nuAl3oi6XRs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEC2EPS6_PNS2_10LibContextE) +STUB( + "nuB40D-Vaac", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE8copyFromERKS9_) +STUB( + "nuDhaiUXNHs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEED1Ev) +STUB("nuGuHAit5fM", + _ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody18getCreatedDateTimeEv) STUB("nuIRlpbxauM", sceUsbdGetMaxIsoPacketSize) +STUB( + "nuIyKfR5cEI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("nuJQ51-qYTg", g_print) +STUB("nuKs4VTWB1M", _ZN3sce7Toolkit2NP2V211SharedMedia11ScreenshotsC2ERKS4_) +STUB("nuLldRPXFWw", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE5emptyEv) STUB("nuPl4uVXYMM", sceNpAsmClientGetNpTitleId) +STUB("nuRo-SP5gDs", fuse_getgroups) +STUB( + "nuRyh2IkEyI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) STUB("nuTGXi-mQ88", sceUserServiceSetChatStatus) +STUB("nuU0-+klRHM", _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOffer10getofferIdEv) +STUB("nuVkOt1FzDE", _ZN3sce7Toolkit2NP2V27Session7Request6Update16HIGHEST_PRIORITYE) +STUB( + "nuckYzk2wlI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEED2Ev) +STUB( + "nuezgVbEboc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "nufgQ-mfdSA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEE7add_refEv) +STUB("nufufTB4jcI", __divsf3) +STUB( + "nugem9yZkoo", + _ZN9Inspector31ScriptProfilerBackendDispatcher13startTrackingElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "nuhprucK5B8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEppEv) +STUB( + "nuiEToWD2E4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEdeEv) +STUB("nukAyhwPuYg", _ZN3sce2Np9CppWebApi7Matches2V14Task13unsetSubtasksEv) +STUB("nukppJUzhrs", _ZN7WebCore6Editor33increaseSelectionListLevelOrderedEv) +STUB( + "numsq0Fd3+I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEC2Ev) +STUB("nun+WRYNLXM", _ZN7bmalloc8FreeListD1Ev) +STUB( + "nurqHBjYMlk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEC2EPS8_) +STUB("nuywyt9n+rk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEC2ERKS7_) +STUB("nv3LkGAUp9Y", _ZN7WebCore22createFragmentFromTextERNS_5RangeERKN3WTF6StringE) +STUB("nv47rdhcTd8", EC_KEY_check_key) +STUB( + "nv6HvGhvNsE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEaSERKS7_) +STUB( + "nv6S9QDl89E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEC2EPS6_PNS2_10LibContextE) +STUB("nvAeA6svNa0", Java_java_util_zip_Deflater_setDictionary) +STUB("nvDX9G4Zns8", monoeg_g_strjoinv) +STUB( + "nvDdWePmIls", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEaSERKS7_) STUB("nvEwfYAImTs", sceGnmRegisterResource) +STUB( + "nvFVvskdEPk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEC2EPNS2_10LibContextE) +STUB( + "nvGu41GGOf4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEEE11release_refEv) +STUB( + "nvH4jHyOAE4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "nvM86mxG5Z8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEmmEi) +STUB("nvMOoFdQYk0", __libunwind_Unwind_SetIP) +STUB( + "nvOLFt+YMIs", + _ZN3sce7Toolkit2NP2V210Tournament12searchEventsERKNS3_7Request12SearchEventsEPNS2_4Core8ResponseINS3_6EventsEEE) +STUB("nvSsAW7tcX8", _ZNKSt8numpunctIwE11do_truenameEv) +STUB("nvU7uMYpyS4", _ZTVN15AbstractStorage12LocalContentE) +STUB("nvVMP+gr9Lo", ubrk_openBinaryRules_67) +STUB("nvXsd0gBCS0", + _ZNK3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallback9getslotIdEv) +STUB( + "nvfu--j5lUg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEC1Ev) +STUB("nvmARkPWT6U", _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15Error9unsetCodeEv) +STUB("nvpNVdivlWE", unorm2_getDecomposition_67) STUB("nvpU78k-5Kc", sceSystemServiceGetAppIdListOfBigApp) +STUB("nvwQaJIhk2E", mono_aot_Sce_Vsh_Accessorjit_got) +STUB("nvxcj6FlJo4", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEE3getEv) +STUB( + "nvyE7dqGeps", + _ZN3sce7Toolkit2NP9Messaging9Interface34retrieveMessageAttachmentFromEventEPKNS1_21ReceiveMessageRequestEPNS1_9Utilities6FutureINS1_17MessageAttachmentEEE) +STUB( + "nvyNnWpphXc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB("nw5bC1mEO18", _ZNK23sceMetadataReaderWriter8Metadata8getFieldEiRSsRNS_5ValueE) +STUB("nw694oGIoW4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEED1Ev) +STUB("nwAphdkHPTs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V124RequestCooperativeResultEEppEi) +STUB("nwEAY-adORA", _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSessionD1Ev) +STUB("nwJZCgN6eGw", _ZN12video_parser17cVideoOperatorMgvC2EPKc) +STUB("nwKvyObqo9I", _ZN23sceMetadataReaderWriter8Metadata15iterateAllFieldEPFiRKSsRKNS_5ValueEbE) +STUB("nwVj98UTedY", mono_aot_Sce_Vsh_Accessor_Dbjit_code_end) STUB("nwX0xDpLzR4", scePssInternalKeyboardGetKeyCode) +STUB( + "nwXzEwL3Y0A", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB("nwbBBUpKAtA", _ZNK3WTF24TimeWithDynamicClockTypegtERKS0_) +STUB("nwcHJzdzobE", WKContextGetDatabaseManager) +STUB("nwcJGZk4rdI", _ZN7WebCore9HTMLNames17onpointermoveAttrE) +STUB("nwhezdg292Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEEC1EPKS6_) +STUB("nwqYelH-nW4", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToCancelTicketD1Ev) +STUB("nwsijf03qFg", _ZN3sce7Toolkit2NP2V24Core7Request21BehaviorModificationsC2Ev) +STUB("nwujzxOPXzQ", _ZdlPvmSt11align_val_t) +STUB( + "nx1hcdd8jz8", + _ZN3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBody10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_27ResponsePlayerSessionPlayerEEEEE) +STUB("nx1vYfPRkCs", _Z34sceGpuDebuggerUnregisterShaderCodePKN3sce3Gnm16LsStageRegistersE) +STUB("nx28bgv9hjs", _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_11TusVariableENS2_IS4_EEEEC2Ev) +STUB( + "nx2cEpIXkQo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEC2ERKS7_) +STUB( + "nx33Rqntqh0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEEdeEv) +STUB("nx3kFVXwNOg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend16FriendsOfFriendsEE3setEv) +STUB( + "nx646OeZvDY", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_34DetailedProductInfoListInputParams9ProductIdEEneERKS5_) +STUB("nxCPeDBLP5U", EVP_MD_CTX_init) +STUB( + "nxCQhxuIfaQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB( + "nxEOg3ejTMs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE8capacityEv) +STUB( + "nxEqsmb5iHM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEC1Ev) +STUB("nxFoHbrUn90", _ZN12video_parser5vpcom6StringC2ERKSs) STUB("nxGZSi5FEwc", sceUserServiceGetPbtcWednesdayHoursEnd) +STUB("nxGetrkrYB0", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_7NpUsersEE17getAdditionalInfoEv) +STUB( + "nxI3oJk75Eo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEEC1Ev) +STUB("nxLDhsSb6GM", WKPreferencesGetInlineMediaPlaybackRequiresPlaysInlineAttribute) +STUB("nxREzUJ97nA", _ZN7WebCore19BlurFilterOperationD0Ev) +STUB( + "nxT6JP617FU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE8capacityEv) +STUB("nxTtVWYk3N8", rgctx_fetch_trampoline_rgctx_4_p) +STUB("nxWdtBJF070", _ZNK3sce2np8JsonBool5CloneEP16SceNpAllocatorEx) +STUB("nxb6lTMECek", + _ZNK3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBody21ticketAttributesIsSetEv) +STUB("nxcdqUGDgW8", CERT_extractDistinguishedNamesFromName) +STUB("nxdioQgDF2E", _ZNSt15_Num_float_base13has_quiet_NaNE) +STUB("nxefs8JHV5U", _ZN15AbstractStorage14MemfileContent6RemoveEv) +STUB("nxh-MTZt8Mk", _ZN7WebCore11DisplayList10StrokeRectC1ERKNS_9FloatRectEf) +STUB( + "nxiDbioYq2w", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE28getResponseInformationOptionEv) STUB("nxpboyvJGf4", sceNpAsmClientGetServiceBaseUrlWithNpTitleId) +STUB( + "nxqfJEDYMCA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEE3getEv) +STUB("nxus4jy2Qco", _ZN7WebCore17JSDOMGlobalObject14guardedObjectsERKN3WTF14AbstractLockerE) +STUB( + "ny3WL8xZalg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE10setContextEPNS2_10LibContextE) +STUB( + "ny4NAkQXR20", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEmmEv) +STUB("ny4PSAfY9sQ", GCC_except_table409) +STUB("ny5OCn2jr98", _ZN3sce7Toolkit2NP2V28Commerce23ServiceEntitlementLabelC1Ev) +STUB("ny5PSQqfXQc", ucnv_getInvalidChars) +STUB("ny6OzX83aDA", _ZN3sce7Toolkit2NP9Interface20registerServiceLabelERKjNS1_11ServiceTypeE) +STUB("ny6YzqATUME", mono_disasm_code_one) +STUB( + "ny7woJH99n0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "nyCZZhQjJ6k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEEaSERKSB_) +STUB("nyICOUVxtO8", ucnv_toUCountPending_67) +STUB( + "nyMAJmi78PM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("nyO3x1IgiSI", unorm2_getNFKDInstance) +STUB("nyPJWvkvO0A", _ZN7WebCore7Process10identifierEv) +STUB("nyXxTvQbWrw", mono_aot_Sce_Vsh_MarlinDownloaderWrapperjit_code_end) STUB("nya-R5gDYhM", sceAudioInHqOpen) +STUB( + "nyaNhkKhNdU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE5clearEv) +STUB( + "nyfFQqHZsAQ", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setInteger5ERKi) +STUB("nyg3mLK0R2o", _ZN3sce7Toolkit2NP2V23TSS7TssDataaSERKS4_) +STUB( + "nyjVkhcnyAc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEE11get_deleterEv) +STUB("nymuLF2QARg", _ZN7bmalloc19mapToActiveHeapKindENS_8HeapKindE) +STUB("nyocBnafYt8", WKPageListenForLayoutMilestones) +STUB( + "nypCbu93ay0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEptEv) STUB("nytN-3-pdvI", sceNpTrophySystemSetDbgParam) +STUB( + "nytuZCBIqvc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEixEm) +STUB("nyw4BJMyZQw", Java_java_util_zip_ZipFile_getMethod) STUB("nywQVbztKlA", scePktMgrGetDeciPayload) +STUB( + "nyyCebZXdQg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEE3getEv) +STUB("nyyZ-gtaYPc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEC1ERS7_) +STUB("nz1PM7BFHeY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE6resizeEj) +STUB("nz2Vn7gXKYE", _ZN9Inspector26DebuggerFrontendDispatcher25playBreakpointActionSoundEi) +STUB( + "nzH30bgZajU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEaSERKS7_) +STUB( + "nzMYv1lm+TY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB("nzO7rUcBW4c", WKBundleGetTypeID) +STUB("nzPTHVz-FUk", _ZNK7WebCore14SecurityOrigin10canDisplayERKNS_3URLE) +STUB( + "nzSbwR4K0X4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEneERKS9_) +STUB("nzThMO3IUjc", _ZN3JSC8Bindings8InstanceD1Ev) +STUB( + "nzWtU7ofllE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEC1EPNS2_10LibContextE) +STUB( + "nzb9F+nv3pU", + _ZN7WebCore21NetworkStorageSession25deleteCookiesForHostnamesERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("nzdgKYmGj2w", _ZN7WebCore4Page27setUnobscuredSafeAreaInsetsERKNS_9RectEdgesIfEE) +STUB("nzeGzpdalkg", mono_aot_Sce_Vsh_Friendunbox_trampolines) +STUB("nzgzgSapdy8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEC1Ev) +STUB( + "nzhSfMwZu6E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE8copyFromERKS9_) +STUB( + "nziDxdAlqdw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERSB_) +STUB( + "nzjLn2HZlcg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEE7get_refEv) STUB("nzqN4RdflwM", sceDebugSuspendProcess) +STUB("nzqY06hcp7E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEE7add_refEv) +STUB("nzqbBAP3gZI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE7reserveEi) +STUB( + "nzr+YbB0eAc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEC1EPS8_) +STUB("nzrlUiNpHyE", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Error7getCodeEv) +STUB("nzs+25i3srs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEEC1EPS5_PNS2_10LibContextE) +STUB("nzsQ5vycrCU", _ZN3sce7Toolkit2NP2V211SharedMedia9BroadcastD1Ev) +STUB( + "nzscMpe8RDs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEppEi) STUB("nzuKTmqQFXY", sceKernelSetBudget) +STUB( + "nzyX6oZkgeo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB( + "nzzDy7croPk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEEC2Ev) +STUB( + "o+0+zJ3rtvI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE7popBackEv) STUB("o+5KjZ3r4O4", sceBluetoothHidThreadParamInitialize) +STUB("o+5R7hpd4MA", _ZNK3sce2Np9CppWebApi6Common6VectorIlE5emptyEv) +STUB("o+9IFyYo2+g", mono_aot_Sce_Vsh_Sl2_Sl2Clientjit_got) +STUB( + "o+9WvMAzQYs", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEEiRNS2_10LibContextEPT_m) +STUB("o+9bF0JOf9M", _ZN7WebCore8SVGNames11kerningAttrE) +STUB( + "o+C261KAsrI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEE5resetEPS9_) STUB("o+F26Wk4JtI", sceVideoCoreMediaSourceAbortSourceBuffer) +STUB( + "o+FIPCRA8ZM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("o+HtxlKwm38", _ZN7WebCore28InspectorFrontendClientLocal27setTimelineProfilingEnabledEb) +STUB("o+JvTLCtV-o", ulist_close_keyword_values_iterator) +STUB("o+M9lrGXwlA", _ZN3sce2Np9CppWebApi6Common8IteratorINS2_17ParameterBaseImpl6KeySetEEppEi) +STUB("o+RkbLSDzsw", _ZN7WebCore12GCController43garbageCollectOnAlternateThreadForDebuggingEb) +STUB( + "o+Ti2EvNo00", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEE7get_refEv) +STUB("o+TiqWzvS8s", _ZNK7WebCore20ResourceResponseBase8lazyInitENS0_9InitLevelE) +STUB( + "o+U2qO9E41g", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE3endEv) +STUB("o+X-i3Y20j4", _ZNK7WebCore20HTMLTableCellElement9cellAboveEv) +STUB( + "o+XYqjgPwTk", + _ZN7WebCore6JSFileC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_4FileENS6_13DumbPtrTraitsIS8_EEEE) +STUB("o+cobhAWPDg", _ZN7WebCore16MIMETypeRegistry23isSystemPreviewMIMETypeERKN3WTF6StringE) +STUB("o+fLdWYVdAY", _ZN3WTF10StringView11SplitResult8IteratorppEv) +STUB("o+iFqLhIWvs", AnnotateMemoryIsInitialized) +STUB("o+nLzPY-ObY", _ZN7WebCore15AsyncFileStreamnaEmPv) +STUB("o+ok6Y+DtgY", strerror_s) +STUB("o+roiKCkHO0", + _ZN7WebCore4Page30addActivityStateChangeObserverERNS_27ActivityStateChangeObserverE) +STUB("o+xDP1vQTVY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils16NetStateDetailedEEC1Ev) +STUB( + "o-1mEW2WVXE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "o-5QGWUuuWg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEaSERKS9_) +STUB( + "o-6UUdD-TIs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE8capacityEv) STUB("o-6Y99a8dKU", scePadSetLoginUserNumber) +STUB( + "o-8ldYVwNrg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEE7add_refEv) +STUB("o-9sR0Ye+-Q", + _ZN7CoreIPC10Connection22createServerConnectionEiPNS0_6ClientEPN7WebCore7RunLoopE) +STUB("o-CU61gUP2A", _ZN9Inspector27DOMStorageBackendDispatcherD2Ev) +STUB("o-GBjVbCTjM", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributesD1Ev) +STUB("o-Lj7ABhtbA", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE7reserveEi) +STUB( + "o-OHqQoJvAE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEmmEv) +STUB("o-Pe49xXyZA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEaSERS7_) STUB("o-RBPV0qr8c", sceContentSearchGetNumOfContent) +STUB( + "o-XG9k3qgPk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("o-YHosjb1YI", _Z31sceRazorGpuThreadTracePopMarkerPN3sce3Gnm17DrawCommandBufferE) +STUB( + "o-Ykd5XGEb0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEptEv) +STUB( + "o-YqQQXOL8w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEC1Ev) STUB("o-Z4rChSsSE", scePlayReadyStoreCleanup) +STUB( + "o-egadoJSv0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEEC2Ev) +STUB("o-encoKL0Ys", mono_aot_I18N_Othermethod_addresses) +STUB( + "o-gc5R8f50M", + _ZZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE8_GetffldEPcRS3_S6_RSt8ios_basePiE4_Src) +STUB("o-kMHRBvkbQ", lgamma) +STUB("o-loKC1PRU8", _ZN12video_parser12cVpFileCache5freadEPvyPy) +STUB( + "o-sMt4OM+Rc", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToSetMultiVariablesByUserD1Ev) +STUB("o-wo5PLFrZA", _ZN3sce7Toolkit2NP2V23TUS7Request12TusUserInputD1Ev) STUB("o0+89h9H3xA", sceAvSettingSetVrMode) +STUB("o01rnQ1YyYI", MD5_Final) +STUB("o023LEQu4Y4", uset_applyIntPropertyValue_67) STUB("o02Mtf8G6V0", sceNpTusDeleteMultiSlotVariableVUser) +STUB("o0AOk-VVP-M", mono_aot_Sce_Vsh_UpdateServiceWrapperjit_got) STUB("o0DBQpFE13o", sceHttp2GetResponseContentLength) +STUB( + "o0EW9b-1l1Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE7reserveEi) +STUB("o0G0ttErXCI", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setInteger7ERKi) +STUB( + "o0Hto1-gTyQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("o0QIm80v7GU", _ZN3sce2np14JsonStringImpl3SetEPKc) +STUB( + "o0RaLQ1-OWY", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeader9terminateEv) +STUB( + "o0U-uvNTm2o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEC1EPKS8_) +STUB("o0WexTj82pU", _ZNSt14numeric_limitsIhE9is_signedE) +STUB( + "o0YOfFZ9aRE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE10setContextEPNS2_10LibContextE) +STUB("o0hiGv7t+Bo", _ZN7WebCore8Settings16setUsesPageCacheEb) +STUB("o0n5bcVYtN0", WKPreferencesSetTabsToLinks) +STUB("o0npslBGMjA", _ZN7WebCore9HTMLNames11charoffAttrE) +STUB("o0onROt6sAU", WKContextSetLocalStorageDirectory) +STUB("o0qLNFGzBgw", WKPreferencesSetTiledScrollingIndicatorVisible) +STUB("o0y3LLtKpG0", _ZNK7WebCore10ScrollView16contentsToWindowERKNS_7IntRectE) STUB("o11J529VaAE", sceSystemGestureResetPrimitiveTouchRecognizer) +STUB( + "o16occEFteM", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("o1B4dkvesMc", _FXp_mulx) +STUB("o1BJoFZNBYo", WKBundleNodeHandleCopyDocumentFrame) +STUB("o1DaSnxyWFA", unum_formatDecimal_67) +STUB( + "o1DqVOa3aRY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEED2Ev) +STUB( + "o1Edt4OMRcw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "o1G08-hE8vc", + _ZN9Inspector20DOMBackendDispatcher24getEventListenersForNodeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("o1HEMpGlu2o", mono_dllmap_insert) +STUB("o1LtNnWXDl4", _ZN3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead13unsetTeamNameEv) +STUB("o1QgA6xae78", rgctx_fetch_trampoline_rgctx_73) +STUB("o1QiuGlWP2Q", ucol_setAttribute_59) +STUB("o1RpZgl1RPc", + _ZN3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallback8setimpIdEPKc) +STUB("o1Tw6r1096E", _ZN3WTF10ParkingLot11unparkCountEPKvj) +STUB("o1WZhqSSUcI", png_read_rows) +STUB("o1azI8TGjbc", _ZN3sce2np10NpOnlineId13GetNpOnlineIdERKNS0_4UserEP13SceNpOnlineId) +STUB("o1e5MPZDnMo", uset_set_67) +STUB("o1ljr23bBHM", + _ZN3sce2Np9CppWebApi13InGameCatalog2V514ContainerMedia8fromJsonERKNS_4Json5ValueE) +STUB( + "o1mhEGMS9DU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEE7add_refEv) +STUB( + "o1p95azBlQI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEppEi) +STUB( + "o1pt-TmHxhk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEE7add_refEv) +STUB("o1qlZJqrvmI", _ZNSt10filesystem6_LstatEPKcPNS_5permsE) +STUB("o1r-Wu9pji0", mono_debug_lookup_method) +STUB("o1r9YJZRP+Y", WKBundlePageSetResourceLoadClient) +STUB( + "o1s02Rqyr1A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEC2EPS8_) STUB("o1vIEHeb6tw", sceFontStringGetWritingForm) +STUB("o1wQdJ-8Wzg", _ZN3WTF10StringView16GraphemeClusters8IteratorC1ERKS0_j) +STUB("o1wcfUo4E3Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEEC2EPS5_PNS2_10LibContextE) +STUB( + "o2-ttAFkbDg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEEcvbEv) +STUB( + "o21SaMIKufk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("o252tIwiufQ", _ZN7WebCore14JSWebAnimation15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "o26ycLX9PNo", + _ZN7WebCore11HistoryItem16setDocumentStateERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("o27+xO5NBZ8", _ZN6Dinkum7threads17_Throw_lock_errorEv) STUB("o27qlxiacL8", sceVideoCoreMediaSourceSetTimestampOffset) +STUB( + "o2ATvp3cEYc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEC1Ev) +STUB( + "o2DMwHmP6+8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEmmEv) +STUB("o2DgdcKDyq8", _ZN3sce7Toolkit2NP2V27NpUtils12Notification15UserStateChangeD2Ev) +STUB("o2GNvd413oc", + _ZN3sce2Np9CppWebApi7Matches2V120RequestTeamStatistic23getTeamMemberStatisticsEv) +STUB( + "o2LIYvk0H-A", + _ZNK3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallback13isInitializedEv) +STUB( + "o2LdV6PhfhU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("o2PhQ4mUZuE", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11UserProfile10NpProfilesEED1Ev) +STUB("o2V2cFHwAXw", _ZN3JSC25JSInternalPromiseDeferred6rejectEPNS_9ExecStateEPNS_9ExceptionE) +STUB("o2Z-He35x8w", _ZNK3WTF9BitVector4dumpERNS_11PrintStreamE) +STUB("o2fPZBklfHg", WKPageGoBack) +STUB("o2gWHl5I3xA", uloc_acceptLanguage_67) +STUB("o2vvd84nLZU", monoeg_g_utf8_validate) +STUB("o2waU9UJw9E", mspace_free) +STUB( + "o2wvKS3NWso", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEEC2ERKSA_) +STUB("o2zD9745YeE", _ZN7WebCore16DocumentTimeline22animationsAreSuspendedEv) +STUB( + "o3+3sXIBWSc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_) STUB("o3+RWnHViSg", sceAvPlayerGetVideoData) +STUB("o3-5cvYoBF0", _ZN4Manx3Ssl10SslContextD1Ev) +STUB( + "o34cne4Sze8", + _ZN9Inspector25DatabaseBackendDispatcher6createERNS_17BackendDispatcherEPNS_32DatabaseBackendDispatcherHandlerE) +STUB( + "o34sed4lc6M", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("o35I9yFo0sA", HMAC_Init_ex) +STUB( + "o3A3Yi5DzKk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEEC1ERSA_) +STUB( + "o3AYF6CLdI0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("o3BXFNgV8O0", + _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_14XMLHttpRequestE) +STUB( + "o3EnGARk+uk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEEaSERKSA_) +STUB("o3HwthGY03c", ucol_swapInverseUCA_67) +STUB( + "o3OzXlmPi8Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "o3PRCsQ48Uc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEEC2ERKSA_) STUB("o3QWhMp98nA", sceAppInstUtilGetPatchInstallStatus) +STUB("o3SdGbKfEHc", _ZNK7WebCore18PlatformTimeRanges7nearestERKN3WTF9MediaTimeE) +STUB("o3Vk4PDllJc", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForReadC1EPNS1_6Common10LibContextE) +STUB("o3bxF-l3DoQ", JSObjectMakeArray) +STUB("o3d7Er1GKvg", mono_aot_Sce_Vsh_Webbrowser_XdbWrapperjit_code_start) +STUB( + "o3p8xVM2Kpw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEED2Ev) +STUB("o3tYKx8oBBA", CommerceDialogInit) +STUB("o3uIiUYOWwo", Java_java_lang_UNIXProcess_waitForProcessExit) +STUB( + "o3vjdn4d+-o", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("o429xYSQUUg", + _ZNK7WebCore10PluginData26supportsWebVisibleMimeTypeERKN3WTF6StringENS0_18AllowedPluginTypesE) +STUB( + "o42ewIL7QgI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEED1Ev) +STUB( + "o4A4-S+hzzs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEptEv) +STUB( + "o4BYhklH9QE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEixEm) +STUB( + "o4CrxoovV1U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEE11get_deleterEv) +STUB("o4DiZqXId90", _ZTSSt10moneypunctIcLb1EE) +STUB( + "o4J+PrJY8+o", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser19unsetplatformFilterEv) STUB("o4NI2wpFhbI", sceKernelIccSetDownloadMode) STUB("o4OLQQqqA90", sceAudioOutSetConnections) +STUB( + "o4SZzcbGnRw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEeqERKS9_) +STUB( + "o4fO6qTniyY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "o4gpj9FGjis", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("o4ilFAxoolI", utrie2_enum) +STUB("o4iqIIK4SZQ", _ZN7WebCore15HTMLFormElement9setMethodERKN3WTF6StringE) +STUB( + "o4jC9BSrupw", + _ZZSt9MakefacetISt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEESt8_LocinfoERT_T0_E3buf) STUB("o4kUYkJG61w", sceBackupRestoreUtilInitialize) +STUB("o4kt51-uO48", _ZTVSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE) +STUB( + "o4luMDW9Msc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEEaSERSA_) +STUB("o4lwmIgu36Q", _ZNK3sce2Np9CppWebApi13InGameCatalog2V55Error10getMessageEv) +STUB("o4mEQJGoptI", _ZN3sce7Toolkit2NP2V210Tournament7Request8GetEventD1Ev) +STUB( + "o4pE6jpvzXk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEC1EPKS8_) +STUB( + "o4qr0d1WQps", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "o4qtwaucN+Y", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi18createGameSessionsEiRKNS4_29ParameterToCreateGameSessionsERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_28PostGameSessionsResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB( + "o4sF8XT4J74", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEC1EPS8_) +STUB( + "o4sy-zZTmmg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("o4wtvMgBpDU", _ZN3sce7Toolkit2NP2V24Core11RequestBaseC1ENS3_11ServiceTypeENS3_12FunctionTypeE) +STUB( + "o56hM0yKrUk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE10setContextEPNS2_10LibContextE) +STUB("o5Ef29GKn3Q", Java_java_net_NetworkInterface_getByInetAddress0) +STUB("o5F+bBj5XVQ", _ZN12video_parser5vpcom24RtcConvertUtcToLocalTimeEP10SceRtcTickS2_) +STUB("o5HryppIGR0", WKPreferencesGetNeedsSiteSpecificQuirks) +STUB( + "o5IM8c6yeTg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEC1EPKS8_) +STUB( + "o5KZBmYt-5M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE8pushBackERKS8_) +STUB( + "o5OC3oP7iHE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEplEm) +STUB("o5VwYgTgLtU", _ZN3WTF10StringImpl17utf8ForCharactersEPKhj) +STUB("o5ZNfuML+b8", EVP_aes_256_cfb8) +STUB( + "o5bmtnegWfM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEmmEv) +STUB("o5bwR+jJ3O8", _ZN3sce2Np9CppWebApi7Matches2V14Task11getSubtasksEv) +STUB( + "o5dAl3Uwmic", + _ZN9Inspector26LayerTreeBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("o5dFu+5lyYU", _ZNK7WebCore9FrameView20clientToDocumentRectENS_9FloatRectE) +STUB( + "o5dJq7tzAD4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEE11release_refEv) +STUB( + "o5e1Nm8e79E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEC2Ev) +STUB("o5fP48+3Egs", _ZN3sce2Np9CppWebApi6Common6StringD2Ev) +STUB( + "o5jCpLPJlWw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEEC2EPS8_PNS2_10LibContextE) +STUB("o5jl0a7Kq-0", _ZN3sce2Np9CppWebApi6Common6VectorIfE3endEv) +STUB("o5qQozz5NCI", mono_image_get_assembly) +STUB("o5z9VIc1MWQ", _ZN7WebCore16BlobRegistryImplC1Ev) +STUB( + "o60DwsRxwEg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEdeEv) +STUB( + "o61VrIggaUo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "o64rfTh46g8", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce19ServiceEntitlementsEE19setCustomReturnCodeEi) +STUB("o65F+Yukk7g", _ZNK3sce2Np9CppWebApi7Matches2V14Task13subtasksIsSetEv) STUB("o67gODLFpls", sceAmprCommandBufferWriteKernelEventQueueOnCompletion) +STUB( + "o67sxeYbNZ4", + _ZNK7WebCore35CrossOriginPreflightResultCacheItem24allowsCrossOriginHeadersERKNS_13HTTPHeaderMapERN3WTF6StringE) STUB("o69RpYO-Mu0", scePthreadCondSignalto) +STUB( + "o6AdtWGctXQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEEC1ERSA_) +STUB( + "o6CLshGHFwM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEneERKS9_) +STUB( + "o6F34WHGYX8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("o6F5J53WhHA", utrace_getLevel_67) +STUB("o6J+Gcx336w", _ZN7WebCore26HTMLTextFormControlElement12setRangeTextERKN3WTF6StringE) +STUB("o6MY-h+6hBs", _ZN7CoreIPC10ConnectionD1Ev) +STUB("o6Q0tawLPug", UCNV_FROM_U_CALLBACK_SUBSTITUTE_67) +STUB("o6RX0md55xw", WKPreferencesGetVideoPlaybackRequiresUserGesture) +STUB("o6Tm3oSusgI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEC1ERS7_) +STUB( + "o6VF2m9haOA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEC1EPKS8_) +STUB("o6WQR9AfmXw", mono_string_to_utf32) +STUB("o6Wdj79OU1w", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEEC1Ev) +STUB("o6XRxyR7Qv4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEC1ERKS7_) STUB("o6ZgXfFdWXQ", sceJpegEncQueryMemorySize) +STUB( + "o6kFQQ6TGg4", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "o6pW2SF3mHY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEdeEv) +STUB("o6qcdlVBjWA", monoeg_g_ptr_array_remove) +STUB("o6vP4l5UqKk", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V510AnnotationEEppEi) +STUB( + "o6x51YIQ21Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEdeEv) +STUB("o6xkaXxMbxg", __sanitizer_unaligned_load16) STUB("o7+WXe4WadE", sceHttp2SetCookieMaxNumPerDomain) +STUB( + "o70Vh0wYLMQ", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeaders15setCacheControlERKNS1_6Common6StringE) +STUB("o73Zfuck9I8", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEEixEm) +STUB("o787qsGwSJs", _ZN3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse13setNextOffsetERKi) +STUB( + "o7JgJsODI1I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) STUB("o7O4z3jwKzo", sceKernelAioPollRequests) STUB("o7OQzFuXJ28", sceDepth2SetCommand) +STUB( + "o7QMV6Hd50U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE21intrusive_ptr_add_refEPS9_) +STUB("o7Qs2v9Zezk", _ZN3JSC11IsoSubspaceC1EN3WTF7CStringERNS_4HeapEPNS_12HeapCellTypeEmh) +STUB("o7Rj82lRZ98", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfilesD1Ev) +STUB( + "o7aGPnw8ChU", + _ZN3sce2Np9CppWebApi12Leaderboards2V130RecordScoreResponseBodyFactory7destroyEPNS3_23RecordScoreResponseBodyE) STUB("o7btxEpLl-0", sceAvSettingSetAudioOutModeAny) +STUB( + "o7gZlOosZjk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEE11get_deleterEv) STUB("o7grRhiGHYI", sceNpPartyGetStateAsUser) +STUB( + "o7k3m9OHdPA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEC1EPKS8_) +STUB( + "o7qknNbBqxg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEEC1EPS6_PNS2_10LibContextE) +STUB("o7r+wKZNjw0", _ZN15AbstractStorage14TwitterService4StopEv) +STUB("o7uKGbtAGs0", _ZNK7WebCore21HTMLFrameOwnerElement13contentWindowEv) +STUB( + "o7venHYK+Qc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEC1EPS8_) +STUB("o827vW9+hR8", mono_aot_System_IO_Compressionplt) +STUB("o83x+Wjbp6k", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlotC1Ev) +STUB("o85fJHjKLDQ", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V342PsnWebError_error_validationConstraintInfo6getKeyEv) +STUB( + "o877M8uYBgc", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("o89JdV1fU2s", rgctx_fetch_trampoline_rgctx_63_p) +STUB("o8Es+aQYa2Q", _ZN4IPMI4impl10ClientImplC1Ev) +STUB("o8KR18ZdywU", _ZN3sce7Toolkit2NP2V212NetworkUtils12Notification14NetStateChangeD2Ev) +STUB( + "o8Ka4+TzyKQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE10setContextEPNS2_10LibContextE) +STUB( + "o8LqnwugGUI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEixEm) +STUB("o8PUxPppffo", YGNodeStyleGetBorder) +STUB( + "o8U2qlkiPeU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB( + "o8e-sH1eU5s", + _ZN3sce7Toolkit2NP2V27Session22getReceivedInvitationsERKNS3_7Request22GetReceivedInvitationsEPNS2_4Core8ResponseINS3_11InvitationsEEE) +STUB( + "o8ePkB0yQ1g", + _ZN3JSC12profiledCallEPNS_9ExecStateENS_15ProfilingReasonENS_7JSValueENS_8CallTypeERKNS_8CallDataES3_RKNS_7ArgListE) +STUB("o8gTS8Zd4lU", _ZN7WebCore11CSSPageRule15setSelectorTextERKN3WTF6StringE) +STUB("o8pWi0ojHHw", mono_aot_System_Corejit_got) STUB("o8pd4juNbgc", pthread_attr_setaffinity_np) STUB("o8qKkphzJr0", sceNpManagerIntIsSubAccountByUserId) +STUB("o8qr9kaDEVw", _ZN3sce7Toolkit2NP2V28Commerce18ServiceEntitlementC2Ev) +STUB( + "o8rbozmGtxg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEC2EPNS2_10LibContextE) +STUB("o8tkaLlCbKI", utext_openUChars_67) +STUB("o8uz5K-EbR0", _ZN3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer11setJoinFlagERKb) +STUB("o8vLMU+1kDQ", __sanitizer_dump_coverage) +STUB("o9+yMOok2Zs", utext_openUChars) +STUB("o91g3OpaySs", _ZN9Inspector15RemoteInspector19receivedDataMessageEjPKc) +STUB( + "o93AT9Dsgvg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEE11get_deleterEv) +STUB("o9KCMytXpOo", ucpmap_getRange) +STUB( + "o9MLtiH1Cz4", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEEiRNS2_10LibContextEPT_m) +STUB("o9NlGwT45X8", _ZN3JSC9JSPromise6rejectEPNS_14JSGlobalObjectENS_7JSValueE) +STUB("o9RD998mN8M", _ZN15AbstractStorage14MemfileContent12readExternalESt10shared_ptrINS_7ContentEE) +STUB("o9X6YNkg0G4", OCSP_check_validity) +STUB("o9XhocnFPC8", + _ZN3sce2Np9CppWebApi14SessionManager2V115LocalizedStringC2EPNS1_6Common10LibContextE) +STUB( + "o9bUlKWpBUw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) STUB("o9eWRkSL+M4", sceAvPlayerInitEx) +STUB( + "o9fHf1EB3ko", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEixEm) +STUB("o9gi888JOSI", ucal_getKeywordValuesForLocale_67) +STUB("o9hlqKNXyww", _ZNK7WebCore4Node21isRootEditableElementEv) +STUB( + "o9iFitUbeHQ", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo22hasxPsnAtomicOperationEv) +STUB("o9kZLZp-3cE", _ZThn16_N9Inspector22InspectorDebuggerAgent21breakpointActionSoundEi) +STUB("o9nW24FZd9s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEEC1Ev) +STUB("o9on6vm3xLw", _ZNK7WebCore17HTMLAnchorElement4hrefEv) +STUB( + "o9wOTsz8Jjg", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB("o9zsDdoLZoI", utext_next32_67) +STUB("oA+4jY1XJpw", _ZN3sce7Toolkit2NP20CategoryBrowseParamsC2Ev) +STUB( + "oA-yaTaKptY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEptEv) +STUB( + "oA0Z1ubEV1Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEcvbEv) +STUB("oA3NFlm8VFA", + _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile11setRelationERKNS3_8RelationE) +STUB("oA7TAoIYksg", WKBundleBackForwardListItemCopyTitle) +STUB("oA8Vfh+jiDM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging16GameDataMessagesEED1Ev) +STUB( + "oA95E+KIFCo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEdeEv) +STUB("oADSs-FgU7A", + _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse13setResultTypeERKNS3_10ResultTypeE) +STUB("oAF2eBhe0Zw", _ZN3JSC8Debugger10isAttachedEPNS_14JSGlobalObjectE) +STUB("oAK+4v9hR6M", _ZN2sh11GetVaryingsEPv) +STUB("oANwuYVz+JQ", uscript_setRunText_67) +STUB("oATDq0dVMkY", _ZN12video_parser13cVideoPathEtsC1EPKc) +STUB( + "oAdUFoTn9jA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEE5resetEPS9_) +STUB( + "oAeJ3aafJSE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE7popBackEv) +STUB("oAgyce+qHgQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEC1ERS7_) +STUB("oAidKrxuUv0", _ZTVSt12domain_error) +STUB("oAlR5z2iiCA", wcrtomb_s) +STUB( + "oAlmN+Cj7wM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE8capacityEv) +STUB("oAqbL8ads+I", + _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi21ParameterToLeaveMatch20getleaveMatchRequestEv) +STUB( + "oAtXYctBqhI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEppEv) +STUB( + "oAuFlME7yNI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEC1Ev) STUB("oAylnoYJyHw", sceDeci4hDrfpClosedir_fuse) STUB("oB730zwoz0s", sceRemoteplayImeSetCaret) +STUB( + "oBCodoDHF2I", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEneERKSA_) +STUB( + "oBNAxguoQaA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEaSERKS9_) +STUB("oBPtPb7GaMg", _ZN3sce3Xml4Attr9terminateEv) +STUB( + "oBWW9MjEOJk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEC2EPNS2_10LibContextE) +STUB( + "oBcQL9+IY8U", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayerD1Ev) +STUB("oBhiTEQfdoM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth7IdTokenEE3getEv) STUB("oBjlHsifNmk", scePktMgrSetDeciHeader) +STUB("oBkzZHHordA", JVM_ConstantPoolGetSize) STUB("oBmw4xrmfKs", sceImeDialogAbort) +STUB("oBoDKRJ+3gI", mono_aot_Sce_Vsh_Np_Asmplt) +STUB( + "oBoSvjlL6kE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEE7add_refEv) +STUB( + "oBptHtqBolc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE5eraseENS2_8IteratorIS9_EERSC_) +STUB("oBr313PppNE", sendto) +STUB( + "oBrGvuc2Pz0", + _ZN7WebCore15ArchiveResource6createEON3WTF6RefPtrINS_12SharedBufferENS1_13DumbPtrTraitsIS3_EEEERKNS1_3URLERKNS1_6StringESD_SD_RKNS_16ResourceResponseE) +STUB("oBtqyuYeliA", _ZN3sce7Toolkit2NP28AdditionalSessionInfoRequestC1Ev) STUB("oBuH3zFWYIg", sceSystemGestureResetTouchRecognizer) +STUB("oBvkeL9i7eo", _ZNK3WTF9MediaTime9timeScaleEv) +STUB("oC4Q1Sl+BQg", _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_17ParameterBaseImpl6KeySetEEptEv) +STUB("oCClOrSfSG8", mono_aot_Sce_Vsh_Np_Webapijit_code_start) +STUB("oCDj+HBOEGU", _ZNK7WebCore10RenderText16linesBoundingBoxEv) +STUB("oCFdaQHIyqE", _ZN7WebCore11DisplayList20EndTransparencyLayerD2Ev) +STUB("oCFy2rRoLiM", + _ZN3JSC9Structure25nonPropertyTransitionSlowERNS_2VMEPS0_NS_21NonPropertyTransitionE) +STUB("oCH4efUlxZ0", __atomic_exchange_n) +STUB("oCIMmU9nczQ", _ZN7WebCore15FocusController15setFocusedFrameEPNS_5FrameE) +STUB("oCIyIqy5I-o", rgctx_fetch_trampoline_rgctx_109) +STUB( + "oCQZKB6Mr4I", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("oCQffGuiNoU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEEaSERS5_) +STUB("oCS+9Zd8fhw", jinit_marker_writer) +STUB("oCTpafdlN+I", _ZN7WebCore21NetworkStorageSessionC1EN3PAL9SessionIDE) +STUB( + "oCZN-YmckhA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEE3getEv) +STUB("oCZVSOCOp7E", _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error12messageIsSetEv) +STUB("oCaql820uPM", _ZN7WebCore6Region5Shape9translateERKNS_7IntSizeE) +STUB( + "oCcGUsVd2OU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEED2Ev) +STUB( + "oCdgiiymSP8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEixEm) +STUB("oCeHcIJ0CPA", utext_getNativeIndex) +STUB( + "oChVQCK-iZE", + _ZN9Inspector21PageBackendDispatcher10getCookiesElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("oCjGECZIlng", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEE7get_refEv) +STUB( + "oCm6z+oTGaQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEdeEv) +STUB( + "oCp+t810yY0", + _ZN3sce2Np9CppWebApi11UserProfile2V120BasicPresenceFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_13BasicPresenceEEE) +STUB("oCrllVH4OE0", _ZN7WebCore32serializationForRenderTreeAsTextERKNS_11LinearSRGBAIfEE) +STUB("oCx3mVNvqzU", _ZN3sce2np3ipc17ServiceIpmiClient11WaitRequestEiij) +STUB( + "oCxyNnP68Ew", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("oCycLmGVp8I", _ZN3JSC18GCActivityCallback12nextFireTimeEv) +STUB( + "oD1W68hViiQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEC1Ev) +STUB("oD32WcwlsMU", + Java_com_sony_bdjstack_javax_media_controls_SoundManager_alloc__Ljava_io_InputStream_2IZ) +STUB("oDHZ8wTdrgc", _ZN3NTF17URLRequestMessage14setSchedulerIdEi) +STUB( + "oDJn-2zsVn0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEeqERKS9_) +STUB("oDMQ96CSgKE", _ZN3sce2np12NpTitleTokenC2ERKS1_) +STUB("oDNgQLmL8Kk", _ZN7WebCore9InlineBox14selectionStateEv) +STUB("oDR18NZmOgg", _ZNK7WebCore25DropShadowFilterOperation11movesPixelsEv) +STUB("oDS5GU57PQU", mono_field_get_object) +STUB("oDVaBU-8ZOo", png_set_user_limits) +STUB("oDoV9tyHTbA", vswprintf_s) +STUB("oDtGxrzLXMU", _ZNKSt7codecvtIwc9_MbstatetE10do_unshiftERS0_PcS3_RS3_) +STUB( + "oDv-YwlAFqY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEEC2Ev) +STUB( + "oDwlZFMzRLQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEC1EPS8_) +STUB( + "oE04I9uK3YU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEmmEv) +STUB("oE1TjI-Oh8M", _ZNK7WebCore5Color6getHSVERdS1_S1_) +STUB("oE32AEOBudE", _ZN3sce7Toolkit2NP2V24Core7Request23ServerPushNotificationsD2Ev) +STUB( + "oE3QoGZFAx8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEC2EPS6_PFvS8_EPNS2_10LibContextE) STUB("oE4a8uIaXxI", sceAvSettingDebugAddCallbacks) +STUB( + "oE656HzSu3M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE8pushBackERKS8_) +STUB("oE6fu1aQDXc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEE5resetEPS5_) +STUB( + "oE6mQezJobo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE8capacityEv) +STUB("oE7gCvN6Ygs", _ZN7WebCore11DisplayList20EndTransparencyLayerD0Ev) +STUB( + "oEAh2dtvK2M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEEC1ERKS9_) +STUB( + "oEHZ5ia8+KY", + _ZN3sce2Np9CppWebApi7Matches2V122RequestMatchStatistics17setTeamStatisticsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_20RequestTeamStatisticEEEEE) STUB("oEJqGsNtFIw", sceSystemServiceRequestReboot) +STUB("oELQIPJWb68", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEE11get_deleterEv) +STUB("oENf1QxsRcU", _ZN7WebCore13CharacterData10appendDataERKN3WTF6StringE) +STUB( + "oEOkP-uCn9U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEEaSERSA_) +STUB("oEPy5Op-Cws", _ZN3JSC7Symbols23setBucketKeyPrivateNameE) +STUB( + "oEV5eAHnMsY", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_28ActivityFeedSharedVideoStoryENS1_15AppSTLAllocatorIS5_EEEEC2Ev) STUB("oEi6vM-3E2c", sceCameraGetAutoExposureGain) +STUB( + "oEmzFS7up34", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEEC1Ev) STUB("oEuPssSYskA", sceHttpDbgShowMemoryPoolStat) +STUB( + "oEvv3Ye3EMI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("oF-nUtAzA6o", _ZN3JSC7JSProxy21deletePropertyByIndexEPNS_6JSCellEPNS_14JSGlobalObjectEj) +STUB( + "oF0IAeV9FL0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEppEi) +STUB("oF3QrlvftiA", WKPreferencesGetTextAutosizingUsesIdempotentMode) +STUB( + "oF6V1WzoW5w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("oF9eBV9eolI", _ZN3sce7Toolkit2NP2V28Presence8PresenceD1Ev) +STUB( + "oFB-Cyu8JKg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEE11release_refEv) +STUB("oFBSUGIKTvs", _ZN7WebCore17PageConsoleClient6unmuteEv) +STUB("oFGpGaiVT3g", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia6VideosEE3getEv) +STUB("oFJhz3tvzBw", mono_field_static_get_value) +STUB("oFJmz+J6ehw", _ZN3sce2Np9CppWebApi14IdentityMapper2V311PsnWebErrorD2Ev) +STUB("oFOKsxQgCGQ", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE6resizeEj) +STUB( + "oFSUCkv9ciI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEEC2ERSA_) +STUB( + "oFTIRC9feu0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEE11release_refEv) +STUB( + "oFUwwE-Rujo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEEC2ERKSA_) +STUB( + "oFWxuOa5k5k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEEC2Ev) +STUB( + "oFXyweW+jo8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("oFYwVmfFFTs", mono_aot_Sce_Vsh_VideoEdit_Wrapperjit_got) +STUB( + "oFaH3DUlSZE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEEC2Ev) +STUB("oFd-2c+zUEY", + _ZN7CoreIPC18MessageReceiverMap15dispatchMessageEPNS_10ConnectionERNS_14MessageDecoderE) +STUB("oFilKysqorM", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product5setIdEPKc) +STUB( + "oFke1O9xEtk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE21intrusive_ptr_add_refEPS9_) +STUB("oFltTuV0f7Y", cairo_set_line_cap) STUB("oFon+A5v1z8", sceDeviceServiceGetGeneration) +STUB( + "oFuWt79JSnw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEE3getEv) +STUB("oFx2mmWanvg", _ZN15AbstractStorage13YoutubeFolderD0Ev) +STUB( + "oFzBCrDBxeg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEEC2ERKSA_) +STUB( + "oG0AcqKqMpo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE8capacityEv) +STUB("oG2cES6rDn0", _ZN3sce7Toolkit2NP15AppSTLAllocatorIcEC2ERKS3_) +STUB("oG7dPt1Hoyk", _ZN7WebCore13JSDOMRectList14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB("oGASj6Qjq7M", _ZN3sce2np10NpOnlineIdC1ERK13SceNpOnlineId) STUB("oGEBX0eXGFs", sceNetConfigUpInterface) STUB("oGIcxlUabSA", sceNpTusTryAndSetVariableAVUser) +STUB("oGKC1n1oPjc", _ZN3JSC4Heap12addFinalizerEPNS_6JSCellEN3WTF8FunctionIFvS2_EEE) +STUB("oGLuenH2o+o", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEEptEv) +STUB( + "oGSO9WCjnTM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC2ERKSA_) +STUB( + "oGWDfWjYAJc", + _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product7setSkusERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_3SkuEEEEE) +STUB( + "oGWHAEXEWts", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEED1Ev) +STUB( + "oGcyqur2+uw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEmmEv) +STUB("oGeoBMv8kCM", mono_aot_Sce_Vsh_EventAppunbox_trampolines_end) +STUB("oGfelMkBk7g", uplrules_selectWithFormat_67) +STUB( + "oGhJ9Jsqxsg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEppEv) +STUB( + "oGhrTX5VtNo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEE11release_refEv) +STUB( + "oGieJv+RBrk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE5beginEv) +STUB("oGktEmYhCDc", _ZN3sce2np14JsonObjectImpl9SetParentEPNS0_9JsonValueE) +STUB("oGlYuEguJWk", WKKeyValueStorageManagerGetKeyValueStorageOrigins) +STUB( + "oGzMcf2F4uY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("oH65Sr0RPpQ", mono_aot_System_ComponentModel_Compositionunbox_trampolines_end) STUB("oH6EMqs-jUM", sceCesUcsProfileInitEucJpX0208) +STUB("oH6y5G5y-vM", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V18RelationEEmmEv) +STUB("oH7iY6hqark", _ZN3JSC12DateInstance6s_infoE) +STUB("oH8aBmLU+fc", _ZN3sce4Json6Object5clearEv) STUB("oHCade-0qQ0", sceUsbdFillBulkTransfer) +STUB( + "oHD23xCVCr8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("oHEi49f4lxk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEC1ERKS7_) +STUB("oHFYzEYKvhw", _ZNK9Inspector15ScriptArguments7isEqualERKS0_) +STUB("oHRl7a+zdMU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEEC1ERS7_) STUB("oHRrt1cfbBI", sceUserServiceSetNpLanguageCode2) +STUB( + "oHTIIxYZEQk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("oHWS+SBRWLc", + _ZN3WTF28normalizeLineEndingsToNativeEONS_6VectorIhLm0ENS_15CrashOnOverflowELm16EEE) +STUB( + "oHcsHlycFE8", + _ZN7WebCore8Document16createExpressionERKN3WTF6StringEONS1_6RefPtrINS_15XPathNSResolverENS1_13DumbPtrTraitsIS6_EEEE) +STUB("oHfmDziL9kY", _ZN7WebCore11CachedImage16imageForRendererEPKNS_12RenderObjectE) +STUB("oHgLjlYtwmc", monoeg_try_realloc) +STUB( + "oHj6nH+MraI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEEC1ERKSA_) +STUB( + "oHp+8dTp4qg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEplEm) +STUB( + "oHphYz+xcGc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEC1Ev) +STUB("oHtPCg88C+0", _ZN12video_parser10cVideoPath14CreatePathNameEPKcS2_PPc) +STUB( + "oHzwCnHBONE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEE5resetEPS9_) +STUB("oI3VVko3QC0", _ZN4Manx8X509cinfD1Ev) +STUB("oI503kl0uvg", _ZN3sce7Toolkit2NP2V27Session13SessionMemberC1Ev) +STUB("oI6BGHcSUK4", WKProtectionSpaceGetCertificateInfo) +STUB( + "oIAblY6YUTQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB( + "oIDAM1jkfLA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEEdeEv) +STUB( + "oIH+5K1Yq5s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEE11release_refEv) +STUB( + "oIHIsxW7Vlg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEC2Ev) +STUB( + "oIMFd-JcdOw", + _ZN3WTF15base64URLDecodeERKNS_6VectorIcLm0ENS_15CrashOnOverflowELm16ENS_10FastMallocEEENS_33SignedOrUnsignedCharVectorAdapterE) STUB("oINHTqU1qvY", sceShellCoreUtilGetDeviceIndexBehavior) +STUB( + "oIR7L2c6df8", + _ZN15AbstractStorage14StorageManager18GetStorageNameListEPSt6vectorISbIcSt11char_traitsIcENS_8StlAllocIcEEESaIS6_EE) STUB("oIRFTjoILbg", scePthreadSetschedparam) +STUB( + "oIThwaxGZZQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEEaSERSA_) +STUB("oIXuuzKAH2I", mono_aot_System_Runtime_Extensionsjit_code_start) +STUB("oIaQ6WAUXnE", _ZN3JSC7JSValue21putToPrimitiveByIndexEPNS_9ExecStateEjS0_b) +STUB( + "oIbkY+AqpWY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "oIdeWwOMz7M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEEC1ERKSA_) STUB("oIhptz7DiRY", sceMusicCoreServerPlayControl) +STUB("oIiqGCvBNrI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEEeqERKS7_) +STUB("oIrASpTTrW8", _ZN7WebCorelsERN3WTF10TextStreamERKNS_12FilterEffectE) +STUB( + "oIsETgbbfzA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEED1Ev) +STUB("oIsFI2cGbqA", _ZN7WebCore18PlatformTimeRangesdaEPv) +STUB("oJ+sgVai4po", g_unsetenv) +STUB( + "oJ00nilvIa8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "oJ3ro0vHBUo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE5emptyEv) +STUB("oJBlwPQRkf0", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V15Error11sourceIsSetEv) +STUB( + "oJFArBvezlU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE10setContextEPNS2_10LibContextE) +STUB( + "oJFVt60P5XI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB("oJJp8jUwSHU", monoeg_g_hash_table_lookup) +STUB("oJKdCkJ8OOE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEEC1EPKS6_) +STUB("oJLMFTs6xpI", _ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody16unsetRulesetNameEv) +STUB("oJLiqgpVjck", ures_getKeywordValues) +STUB( + "oJNvONZXiY0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE5beginEv) +STUB("oJSXws+cIv8", _ZN15AbstractStorage6FolderC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("oJV+0NA8pss", _ZNK3WTF9MediaTimeneERKS0_) +STUB("oJVWu+MGUr4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE5beginEv) +STUB("oJW8zvzVTBA", _ZN3sce7Toolkit2NP2V210Tournament24OfficialBroadCastDetailsD2Ev) +STUB( + "oJf-wnqMIoY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEeqERKS9_) +STUB("oJgSao+DsUs", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEEaSERKS7_) +STUB("oJi1QeSHjrE", _ZNK9MmsMp4Box7cmpTypeEmj) +STUB("oJm1lThZ3iQ", FT_Done_GlyphSlot) +STUB("oJsJLfEJBPI", mono_aot_Sce_Vsh_VideoPlayerunbox_trampoline_addresses) +STUB("oJuf3c6iXZA", _ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody8getLimitEv) +STUB( + "oJv2ffqIXBU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE21intrusive_ptr_sub_refEPS9_) STUB("oJzfZxZchX4", sceUserServiceGetAgeVerified) +STUB( + "oK09+asDfyk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEC1EPS8_) +STUB("oK0X7DQEu7U", _ZN3sce2np14JsonObjectImplD2Ev) +STUB( + "oK2dhjhxSCo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEneERKS9_) +STUB("oK4eHsYJfOU", mono_btls_x509_verify_param_set_depth) +STUB( + "oK5cLyGrFs8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEC2Ev) +STUB( + "oK5sseZUZPc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("oK6C1fys3dU", _Wctob) +STUB( + "oKDe87-9SxY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEeqERKS9_) +STUB("oKFHBtwR7GM", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats22unsetConnectionQualityEv) +STUB("oKG-LjaBzzs", FTA_Add_Module_t1cid) +STUB( + "oKGZsJT5HW8", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEEiRNS2_10LibContextEPT_m) +STUB( + "oKK-dJ5aLhg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE8copyFromERKS9_) +STUB( + "oKKLFo6HqhQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "oKPClbRzbws", + _ZN9Inspector23WorkerBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("oKQ6hxxj6kE", _ZN7WebCore9HTMLNames12readonlyAttrE) +STUB( + "oKUxihYzEeg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEC1EPKS8_) +STUB( + "oKX--zZk3cg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("oKX6k-xbFjQ", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Publisher7getIconEv) +STUB("oKaMoZGAnXY", delegate_virtual_invoke_imt_m_15_p) +STUB("oKamLgrFO+k", _ZNK7WebCore13HTTPHeaderMap8containsENS_14HTTPHeaderNameE) +STUB( + "oKbrZekemTI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "oKcnwXUXoEA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEppEi) +STUB( + "oKlVQaOf+Qo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEED1Ev) +STUB( + "oKoj7dOfFWY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEC1EPNS2_10LibContextE) +STUB( + "oKvK7ZkoJP4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("oKz+Da7cSXg", _ZN7WebCore21DiagnosticLoggingKeys28succeededLessThan2SecondsKeyEv) +STUB( + "oKzeWZEkfB8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) STUB("oL4hGI1PMpw", sceGnmGetGpuBlockStatus) +STUB( + "oL6ZrTdmavc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEEC2Ev) +STUB("oL7kpGk9+2Q", + _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicket13isInitializedEv) +STUB("oL88cTwcKYk", _ZN3sce2np10JsonNumberC2EP14SceNpAllocator) +STUB( + "oL9OPqNCZqE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("oLFi+HuZ7hY", ntohs) +STUB("oLG05JXXEJc", + _ZN3JSC21gregorianDateTimeToMSERNS_2VMERKN3WTF17GregorianDateTimeEdNS2_8TimeTypeE) +STUB("oLKfOjMTnuU", _ZN3sce7Toolkit2NP2V211UserProfile10NpProfilesD2Ev) +STUB( + "oLQm4g2Wzmk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEdeEv) +STUB( + "oLQnU6wqlGs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEC1EPS6_PNS2_10LibContextE) +STUB("oLTNauw+zcc", _ZN3sce2Np9CppWebApi12Leaderboards2V14UserD2Ev) +STUB( + "oLUsp2hIKVU", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_4Page20CookieSameSitePolicyEEEN3WTF8OptionalIT_EERKNS5_6StringE) STUB("oLYkibiHqRA", sceNpPartyTerminate) +STUB("oLZX-RyaUNs", _ZN3sce7Toolkit2NP2V27Session11SessionData8deepCopyERKS4_) +STUB( + "oLhByllsilI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) STUB("oLjPqUKhzes", pthread_attr_getinheritsched) +STUB( + "oLlc6LrZIK0", + _ZN7WebCore14DOMCacheEngine16copyResponseBodyERKN3WTF7VariantIJDnNS1_3RefINS_8FormDataENS1_13DumbPtrTraitsIS4_EEEENS3_INS_12SharedBufferENS5_IS8_EEEEEEE) +STUB("oLn6pn4vv3g", + _ZN3sce2Np9CppWebApi14SessionManager2V118MatchmakingForReadC2EPNS1_6Common10LibContextE) +STUB("oLpLfV2Ov9A", _ZN3sce2np14CalloutContext4InitEPKNS1_5ParamE) +STUB("oLqlHAaPVws", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEEC1Ev) +STUB( + "oLsiWteQaL0", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser19unsetplatformFilterEv) +STUB("oLuiFClSVsc", + _ZN3sce2Np9CppWebApi7Matches2V119RequestMatchResultsC2EPNS1_6Common10LibContextE) +STUB("oM+1gshdixg", mono_arch_get_nullified_class_init_trampoline) +STUB("oM+8JNTrd24", FcMatrixMultiply) STUB("oM+XCzVG3oM", sceFontSelectLibraryFt) +STUB("oM-4SAw4I0w", + _ZN3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayer14setCustomData1EPKvm) +STUB("oM0zMNCfXKM", FTA_Support_Modules) +STUB("oM18OCrs60Y", delegate_virtual_invoke_20) +STUB("oM1W-49YawQ", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V115LastUpdatedUserC1EPNS1_6Common10LibContextE) +STUB( + "oM5HbTrkRco", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEeqERKS9_) STUB("oM5qJ4oZVZU", sceDebugGetSystemStatusCount) +STUB("oM5w6Fb4TWM", SSL_ASYNC_recvMessage2) +STUB( + "oM99B19+FHI", + _ZN7WebCore24DocumentMarkerController10markersForEPNS_4NodeEN3WTF9OptionSetINS_14DocumentMarker10MarkerTypeEEE) +STUB( + "oMEm9ihtCbY", + _ZN9Inspector21PageBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "oMF2+JE339k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEC1Ev) +STUB("oMH4MSzQApk", il2cpp_field_get_value_object) +STUB( + "oMHMC7sRQTo", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser9hasfieldsEv) +STUB("oMIpoxggR-M", mono_config_set_server_mode) +STUB( + "oMLdE-6AWVQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("oMQqGkDVkZ4", _ZN7WebCore16HTMLMediaElement8fastSeekERKN3WTF9MediaTimeE) +STUB("oMT+05u-qiM", _ZN3JSC15ArrayBufferView13setNeuterableEb) +STUB("oMTEf3sNcfc", _Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm14TcsPerfCounterE) +STUB( + "oMW-CUXNEtg", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12string4IsSetEv) +STUB("oMXeTA3Ax6M", _ZN15AbstractStorage18DailymotionContentD1Ev) +STUB("oMXfiCxgjsI", _ZTVN7WebCore19BlurFilterOperationE) +STUB("oMYvEkQV8Fc", _ZN3sce7Toolkit2NP2V212ActivityFeed4Feed8deepCopyERKS4_) +STUB( + "oMf9RjlfK5g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEED2Ev) +STUB( + "oMhkeieUMSE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEED1Ev) +STUB("oMoSQyh4QD8", _Atcount0) +STUB( + "oMuCZrGdHfI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEppEv) +STUB("oMzql+izBYA", mono_get_exception_missing_method) +STUB( + "oN9oPp9vw2s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("oNAnn5cOxfs", _ZTISt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE) STUB("oNCDI-j9iTI", sceNpUniversalDataSystemIntCreateContext) +STUB( + "oNHtwMj4T+c", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEdeEv) +STUB("oNJNApmHV+M", CERT_GetCertTime) +STUB( + "oNKxZ4R0YBw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEC1EPS6_PFvS8_EPNS2_10LibContextE) STUB("oNOQn3knW6s", sceVideoOutDeleteVblankEvent) +STUB("oNPCLmCUw84", unum_countAvailable_59) +STUB("oNPNdfNJ7G4", il2cpp_set_find_plugin_callback) +STUB("oNRAB0Zs2+0", _ZTISt15underflow_error) +STUB( + "oNTX60qkwiM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("oNYFnbUQ4eE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEC2ERS7_) +STUB( + "oNYM-O1cGcA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC2ERSA_) +STUB("oNcnwBj2ePU", mono_get_exception_bad_image_format2) +STUB("oNdsLXxf6Zo", WKResourceCacheManagerGetTypeID) +STUB( + "oNeSE-zFrG4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEdeEv) +STUB("oNgcYv7sg2E", _ZNK7WebCore20PasteboardCustomData18createSharedBufferEv) STUB("oNgkhqfe4Xw", sceVencCoreSetInvalidFrame) +STUB( + "oNlfvuuzXeo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE21intrusive_ptr_add_refEPS9_) +STUB("oNlmXbLDtPo", mono_mprotect) +STUB( + "oNlqffpgjg0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE13getLibContextEv) +STUB("oNo8XBS4mt0", _Z32sceGpuDebuggerRegisterShaderCodePKN3sce3Gnm16EsStageRegistersEjPKc) +STUB("oNqSobbGC80", _ZN3sce2np12StreamReader8ReadDataEPNS0_6HandleEPvmPm) +STUB("oNqXU4Ok3w0", _ZN7WebCore8SVGNames9scaleAttrE) +STUB("oNzjWuOH9Bg", _ZN7WebCore10JSLocation11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("oO0pz-Whogw", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_12PresenceInfoEE3getEv) +STUB( + "oO2XMfoE69o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEppEv) +STUB("oO2eVtNQUgM", _ZN7WebCore11CachedFrame21setHasInsecureContentENS_18HasInsecureContentE) STUB("oO33Uex4Ui0", sceFontGlyphGetAttribute) +STUB( + "oO3lEOB8fik", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEE5resetEPS9_) +STUB("oOB1oaFQTyw", _ZN8meta_gen13JpegRetriever21TRProcessTiffIfdEntryEi) +STUB( + "oOFS4x5k9og", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEE5resetEPS9_) +STUB("oOHDiUvPJTE", mono_aot_System_Numericsunbox_trampolines_end) +STUB("oOHWO-p1xyg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEE3getEv) +STUB("oOLdJrSCQfM", _ZN9Inspector21RemoteInspectorServer5startEPKct) +STUB("oOUV-EwUiJc", _ZN7Nicosia16SceneIntegration6ClientD2Ev) +STUB("oOV9b4PZGq8", __asan_loadN) +STUB( + "oOZ5bmEeO3c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("oOckhjRxPps", curl_formfree) +STUB("oOfRehqy3J4", + _ZN7WebCore21UserContentController16removeUserScriptERNS_15DOMWrapperWorldERKNS_3URLE) +STUB( + "oOgpQRp9XgA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE8capacityEv) +STUB("oOigDJBsN2c", glDeleteProgram) +STUB("oOncfd-d5e0", _ZN3JSC7Symbols18entriesPrivateNameE) STUB("oOq3dgLo2N8", sceFsGetDeviceSectorsize) +STUB( + "oOv6gd1mj3w", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEplEm) +STUB("oOvKbv-48RQ", ucol_swapInverseUCA) STUB("oOwl47ouxoM", sceImeVshClearPreedit) +STUB( + "oP-bYhFmDfQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEC1ERS7_) +STUB("oP2ILJnZAkg", _ZN7WebCore20SVGPathStringBuilderD0Ev) +STUB( + "oP6dNrwH2m0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("oP8eWQKmCVQ", SSL_getInstanceFromSocket) +STUB( + "oP9IdlNHXCQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEEC1ERKSA_) +STUB("oPFspNqbSFQ", _ZN3sce7Toolkit2NP2V212ActivityFeed7StoryId12STORY_ID_LENE) STUB("oPLghhAWgMM", sceAudioOutGetSimulatedHandleStatusInfo2) STUB("oPO9U42YpgI", sceNpGetGamePresenceStatusA) +STUB("oPPxyIEzD1E", _ZN7WebCore9HTMLNames16aria_checkedAttrE) +STUB( + "oPZS-JCIobo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE5emptyEv) +STUB( + "oPaZ1di3FZ0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) STUB("oPhjCYX1Oeg", sceDepthSetCalibrationData) STUB("oPhtjySuHa8", sceHmd2Close) +STUB("oPkCHryPArQ", WKBundleRemoveAllUserContent) +STUB( + "oPlQaAQqf0k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEC2Ev) +STUB("oPmP-m-k5A0", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSessionD2Ev) +STUB("oPnneTu2bro", _ZNK7WebCore25DropShadowFilterOperationeqERKNS_15FilterOperationE) +STUB("oPrBCCvX5h8", _ZN7WebCore3URLC2ENS_18ParsedURLStringTagERKN3WTF6StringE) +STUB("oPvKj88+T90", _ZN7WebCore9HTMLNames13topmarginAttrE) +STUB("oPzukphzAys", _ZN15AbstractStorage13TwitterFolder6RemoveEb) +STUB("oQDS9nX05Qg", _ZNSt16invalid_argumentD1Ev) +STUB( + "oQNl0LIw7JE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEC2Ev) +STUB("oQOlGmWOjvg", _ZThn136_NK7WebCore16HTMLMediaElement11currentTimeEv) +STUB( + "oQPq9l5EuI0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEppEi) +STUB( + "oQQKMQ5zB4A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEC2EPNS2_10LibContextE) +STUB( + "oQU3jN6YyEA", + _ZNK3sce2Np9CppWebApi14SessionManager2V130PostPlayerSessionsResponseBody6toJsonERNS_4Json5ValueEb) +STUB("oQW3dozHW0k", uprv_tzset_67) +STUB("oQcEW6MgrGw", + _ZN7WebCore19MediaResourceLoaderC2ERNS_8DocumentERNS_16HTMLMediaElementERKN3WTF6StringE) +STUB( + "oQcQ4wakzjY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEC2EPS6_PNS2_10LibContextE) +STUB( + "oQgtvmSNEoo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEppEv) +STUB("oQlBniDJCpo", mono_image_strerror) +STUB("oQmR8kPK+sg", + _ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody18setCreatedDateTimeERK10SceRtcTick) +STUB( + "oQowm0PtyBU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEE7add_refEv) +STUB("oQpl5qCT014", _Unwind_GetGR) +STUB( + "oQpq-a-WRbg", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB( + "oQr3UBnqIt8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEEaSERKSA_) +STUB( + "oQrvxj3qQq8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE8pushBackERKS8_) +STUB("oQsg7vOSWx8", mono_debug_lookup_source_location) +STUB( + "oQyIU7j7hBo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEEC2ERS9_) STUB("oQySEUfgXRA", sceSaveDataSetupSaveDataMemory2) +STUB("oQyUSZkRlCI", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_18GameCustomDataItemEED1Ev) +STUB("oR1hI6e7AGE", _ZN7WebCore16BlobRegistryImplC2ERKS0_) STUB("oRBFflIrCg0", sceAudioOutSetPortStatuses) +STUB( + "oRG+58ke2u8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEEaSERKSC_) +STUB( + "oRIHZgt8mCY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEmmEv) STUB("oRJZnXxok-M", sceAudioOutSysConfigureOutputMode) STUB("oRMSMUoDGu8", sceIduUtilGetInstalledAppWithOffset) +STUB( + "oRQl-rxS58k", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEdeEv) +STUB("oRR5HoDuB7Y", WKContextMenuItemGetUserData) +STUB("oRTCl8kx8Rw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEC1Ev) +STUB("oRVUM8iVKZg", utrans_close_67) STUB("oRXI2Mzcgkw", sceSlimglServerStartClient) +STUB("oRclA0Y2+x4", _ZN7WebCore20CanvasActivityRecord27recordWrittenOrMeasuredTextERKN3WTF6StringE) STUB("oRgsgfJY3Mc", sceFiosFilenoToFH) +STUB( + "oRhd8Y7F6sU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEED2Ev) +STUB( + "oRiKVtbDDgo", + _ZN9Inspector15ScriptCallStack6createERN3WTF6VectorINS_15ScriptCallFrameELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("oRiSQD27XFQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEC2ERS7_) +STUB("oRm77epBqGU", _ZN7WebCore9HTMLNames20aria_placeholderAttrE) +STUB("oRn3Ruc+dgI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEcvbEv) +STUB( + "oRpToe+PTaE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE5beginEv) +STUB("oRpiXk9-Vhc", _ZN3sce7Toolkit2NP2V27Session12SessionImageD1Ev) +STUB("oS+tOQc+xHw", EVP_cleanup) +STUB( + "oS4GMO4DBXI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEdeEv) +STUB( + "oS9nDprxR8A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "oSHjLuPWYWQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEptEv) +STUB("oSHosIf4jpk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEC2ERS7_) +STUB("oSOlHR1+AKw", _ZN3JSC9HandleSet12writeBarrierEPNS_7JSValueERKS1_) +STUB("oSR7UP2qKeQ", WKPreferencesGetIgnoreViewportScalingConstraints) +STUB( + "oSWc-p2PSZc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEdeEv) +STUB( + "oSYe2eRRhEY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE10setContextEPNS2_10LibContextE) +STUB("oSeqX90U4IE", _ZN7WebCore23TextureMapperFPSCounterC1Ev) +STUB( + "oSfDGAhTNLs", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10getString6Ev) +STUB("oSiLqiuDGvs", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchDetail10setmatchIdEPKc) +STUB( + "oSjjW0ScnxU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEaSERKS9_) +STUB( + "oSnYtaV0YUs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE10setContextEPNS2_10LibContextE) +STUB("oSqLOsWstRs", _ZN3sce7Toolkit2NP2V29Messaging24GameDataMessageThumbnailaSERKS4_) +STUB("oSrjUDnp5Ak", _ZN7WebCore8SVGNames15feMorphologyTagE) +STUB("oSs8rlJpbYo", _sinl_impl) +STUB("oStzdgMLp4A", fuse_opt_free_args) +STUB("oSv3omVJrzI", _ZN7WebCore22CSSAnimationController17suspendAnimationsEv) +STUB( + "oSydi5syK9k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEED1Ev) STUB("oT-j4DqJHY8", scePthreadBarrierattrDestroy) +STUB("oT0mxPLVvvQ", _ZN7WebCore10FileHandleC1ERKN3WTF6StringENS1_14FileSystemImpl12FileOpenModeE) +STUB("oT6+HkTy-ss", _ZN3sce7Toolkit2NP2V28Commerce8SkuLabelD1Ev) STUB("oT68xenFqSY", sceFiosDHClose) +STUB("oT8K-Q3mxqo", ucnv_isFixedWidth_67) +STUB("oT8md3hcNLI", _ZN9Inspector21InjectedScriptManager25injectedScriptForObjectIdERKN3WTF6StringE) +STUB("oTAnMyqo6bI", BIO_f_ssl) STUB("oTBVBlVW9PU", sceAudiodReportMasteringStates) +STUB( + "oTCb1wDCXN8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEC2ERS7_) +STUB("oTESn1ZH7PE", _ZN3sce2np8JsonNullD2Ev) +STUB("oTF5wSfGwMc", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container10labelIsSetEv) +STUB("oTGmwGHklf0", WKWebsiteDataStoreConfigurationSetResourceLoadStatisticsDirectory) +STUB( + "oTPtz2LYbqI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE7reserveEi) +STUB("oTSfpmbIxGs", _ZN9Inspector17ScriptDebugServer23getActionsForBreakpointEm) +STUB( + "oTWFUx06jZw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEEC2Ev) +STUB("oTYPKExI0dc", _ZNSt12system_errorC1EiRKSt14error_categoryPKc) +STUB("oTaaYntc8RM", _ZNK15AbstractStorage12LocalService14GetServiceTypeEv) +STUB("oTayTlKeUBY", MD5_Update) STUB("oThn-THyKOc", sceShellCoreUtilGetTelemetryToken) +STUB( + "oTiOztIV0vI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEmmEv) +STUB("oTirsxQpqj0", _ZN3sce2Np9CppWebApi6Common9terminateERNS2_10LibContextE) +STUB( + "oTqNcLpCD50", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEC2EPS8_) +STUB( + "oTv83hXKOFE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEEeqERKS7_) +STUB("oTwaXklH5dQ", uprv_decNumberRotate_67) +STUB("oTyPrWowA1k", _Foprep.init) +STUB( + "oU0MO3Wh6Yc", + _ZN8meta_gen14ImageRetriever11SetDataOnDBEP19PromoteInnerContextP16StorageInterfaceP17CancelInterface_t) STUB("oU4h4oBe2l0", sceKernelIsAllowedToSelectDvdRegion) +STUB( + "oU5N-bahhGY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEixEm) +STUB( + "oU5cldV1bzQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEE7add_refEv) +STUB("oU8k7jyr2v4", _ZN3sce7Toolkit2NP8Commerce9Interface8joinPlusERNS1_19JoinPlusInputParamsEb) +STUB("oUDmYkdmEJg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ResponseCooperativeResultEEmmEv) +STUB("oUGLY8urs7w", _ZN12video_parser5vpcom6StringC2EPKw) +STUB("oULMh4JVC4o", _ZN3sce2np18MemoryStreamReaderD1Ev) +STUB("oUOLOwkfnx0", _ZN3sce2Np9CppWebApi7Matches2V119RequestMatchResults22unsetCompetitiveResultEv) +STUB( + "oUPCg9AouM4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEC2Ev) +STUB("oUQJ+FJgjIE", ucache_compareKeys_67) +STUB( + "oUVxxj+IA8Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEC1EPS8_) +STUB("oUY-ExJPK4M", mono_aot_Sce_Vsh_Accessor_Dbjit_code_start) STUB("oUha0S-Ij9Q", sceVoiceSetMuteFlagAll) +STUB( + "oUiQ+A5Razs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "oUjgPUMQcao", + _ZN3WTF26normalizeLineEndingsToCRLFEONS_6VectorIhLm0ENS_15CrashOnOverflowELm16ENS_10FastMallocEEE) +STUB( + "oUp1HsRwpxs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEC1Ev) +STUB("oUqVMJjXr6g", _ZN23sceMetadataReaderWriter13ParserManager8finalizeEv) +STUB("oUuaMQsTA5Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEppEv) +STUB("oUv-x2Y4-Z8", _ZN3sce7Toolkit2NP9Utilities6FutureIbE3getEv) +STUB( + "oUys1yqqSTs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEC2Ev) +STUB("oUzEzr72vsw", + _ZN7WebCore37WidgetHierarchyUpdatesSuspensionScope35s_widgetHierarchyUpdateSuspendCountE) STUB("oV9GAdJ23Gw", sceVoiceConnectIPortToOPort) +STUB("oVB19wLdwg0", _ZN7WebCore5FrameD0Ev) +STUB("oVBgNjhMWCo", _ZN3WTF11Persistence7EncoderlsEd) +STUB( + "oVFpb0stwQg", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle15setPerFranchiseERKNS1_6Common12IntrusivePtrINS3_19PlayStylePropertiesEEE) +STUB( + "oVHuzFz9y+8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEE5resetEPS6_) +STUB( + "oVPDOtNL2kQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("oVWR0mlQDzc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEC2Ev) +STUB( + "oVXRya88wfA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEeqERKS9_) +STUB("oVXl3SATvaI", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V114ResultsVersionEEaSERKS7_) STUB("oVZ+-KgZJGo", scePthreadSetDefaultstacksize) +STUB("oVZ6spoeeN0", _ZN3sce2npgtERK10SceRtcTickRKNS0_4TimeE) +STUB("oVa4LEw33vI", _ZN3sce2Np9CppWebApi14SessionManager2V15Error11unsetReasonEv) +STUB( + "oVcVu-qIg7o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEC1EPS8_) +STUB("oVeQqZBxDtQ", _ZN7WebCore11MathMLNames9munderTagE) +STUB("oVffc-CnA-s", rgctx_fetch_trampoline_mrgctx_79_p) +STUB( + "oVfyc0gtVuw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEC2EPS8_) STUB("oVgyCJCrGcY", sceUpsrvResumePausedTask) +STUB("oVi7mC1jj-Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEC2Ev) +STUB("oVkZ8W8-Q8A", strtok) +STUB( + "oVl4Ug4v7nA", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("oVmmDG47CRU", ubidi_setReorderingMode_67) STUB("oVsBjmw2Rl4", sceNpGriefReportCreateRequest) +STUB( + "oW0JyXhSzCs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEptEv) +STUB("oW1z1q5vi-0", fuse_fs_readdir) +STUB("oW6a6GUAFr0", WKWebsiteDataStoreStatisticsClearInMemoryAndPersistentStore) +STUB("oW8ztVC6uu4", mono_assembly_load_reference) +STUB( + "oWGX5pegYls", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEC2Ev) +STUB("oWJpFOZ03Bg", JVM_NewInstanceFromConstructor) +STUB("oWM0QMqiVOo", _ZN7WebCore8SVGNames11onbeginAttrE) +STUB("oWSGw7PNZy0", mono_aot_System_Numericsjit_got) +STUB("oWX083a+4YM", mono_allocator_memdup) STUB("oWhbxCJiBMM", scePigletGetInteger) +STUB("oWrhZTKS55M", ulocimp_getName) +STUB("oWxr+q7HyAU", YGNodeGetHasNewLayout) STUB("oWyZFLUVjcI", sceAgcSdmaCopyWindowBC) STUB("oXARzvLAiyc", sceUserServiceGetParentalGameAgeLevel) +STUB("oXB46A10ZR0", mono_aot_ReactNative_Modules_Vsh_Gct_Telemetry2method_addresses) +STUB("oXD4BLN8wg4", _ZN3sce7Toolkit2NP2V210Tournament4TeamaSERKS4_) +STUB("oXGiUIGK0sw", _ZN3sce2Np9CppWebApi13InGameCatalog2V514ContainerMedia9getImagesEv) +STUB( + "oXLrNSGuy08", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemPropertiesaSERS5_) +STUB( + "oXMEmVm66c0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEC2EPS6_PNS2_10LibContextE) STUB("oXOyqxO8dX8", sceNpBandwidthTestUploadOnlyInitStart) +STUB( + "oXTBrmMLR2o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE21intrusive_ptr_add_refEPS9_) STUB("oXVAQutr3Ns", sceUserServiceGetTraditionalChineseInputType) +STUB("oXVgB59UiKM", uenum_next) +STUB( + "oXXh8Ppq6JA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEC1Ev) +STUB( + "oXbF2t4tz1o", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE6insertENS2_8IteratorIS6_EERKS6_RS9_) STUB("oXbddL+50eM", sceCesEucCnToUtf32be) +STUB("oXedF7Z24pk", ureldatefmt_open_67) +STUB("oXfhrGdn3mA", _ZN3sce7Toolkit2NP2V27Session7Request32DisplayReceivedInvitationsDialogD1Ev) +STUB("oXgaqGVnW5o", erf) +STUB("oXgkWQRuOzU", _ZN7WebCore18documentTypeStringERKNS_8DocumentE) STUB("oXjVieH6ZGQ", sceNpScoreGetRankingByAccountIdPcIdForCrossSave) STUB("oXkQEVitkCs", scePigletAllocateSystemMemoryEx) +STUB("oXqbsifspg8", _ZN7WebCore8Document34webkitWillExitFullScreenForElementEPNS_7ElementE) +STUB("oXseKdtZASE", ipv6_available) +STUB( + "oXzJtk2Mk8U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("oY+G5rtDZT8", mono_aot_Sce_Vsh_Np_ServiceCheckerjit_code_end) +STUB("oY7J7D5ipxk", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18GameCustomDataItemEE10deallocateEPS3_m) +STUB("oY9+jelulX0", _ZNK7WebCore18PlatformTimeRanges8durationEj) +STUB( + "oYAF2L0814Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE8pushBackERKS8_) +STUB("oYAJlYuBnaw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEEC2ERKS7_) +STUB("oYHyLfnZOYE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEE3getEv) +STUB("oYJAITu1ga8", _ZN9Inspector25BrowserFrontendDispatchernaEm) STUB("oYM+YzfCm2Y", sceGnmDrawIndexOffset) +STUB("oYMRgkQHoJM", _ZNSt13basic_filebufIcSt11char_traitsIcEE8overflowEi) +STUB("oYPkfm5PMJQ", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification15BlocklistUpdateEED1Ev) STUB("oYQC9Quj6No", sceLncUtilGetAppLaunchedUser) +STUB( + "oYR1k6MeNKg", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB("oYUTamHByZI", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessionsC1Ev) +STUB("oYVQ8ijlHg0", _ZN3sce7Toolkit2NP2V28Matching7Request10CreateRoom23MAX_SESSION_INDEX_VALUEE) +STUB("oYYVBHqQ0z0", OBJ_txt2obj) +STUB( + "oYZRvWHKp-c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE8copyFromERKS9_) +STUB("oYZoqxL-hH0", + _ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetailC2EPNS1_6Common10LibContextE) +STUB("oYaVmW-rXBE", _ZN7WebCore12TextIteratorC2EPKNS_5RangeEt) +STUB("oYcDkClOA8U", + _ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends10unsetlimitEv) +STUB("oYgLigRT70Q", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V115NatConnectivityD2Ev) +STUB("oYipfXRE1HQ", _ZNK7WebCore21RenderLayerCompositor15rootRenderLayerEv) STUB("oYkJlMK51SA", sceImeKeyboardOpenInternal) +STUB("oYlGUIQcSNU", mono_threads_assert_gc_unsafe_region) +STUB("oYliMCqNYQg", _ZTISt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE) +STUB( + "oYmFxBSLhSU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEEC2ERKSA_) +STUB("oYpubo9Rb8s", WKPreferencesSetDefaultTextEncodingName) +STUB( + "oYpzi3DjJPE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEC1EPS8_) STUB("oYr9L7WSCww", sceKernelGetBootReqNotifyCount) +STUB("oYs-uCXSRFM", ucnv_usesFallback) +STUB( + "oYtxg078NnU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEeqERKS9_) +STUB( + "oYuhA9Ogqao", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("oZ5khLR19g4", + _ZN3sce2Np9CppWebApi14SessionManager2V118LeaderWithOnlineIdC1EPNS1_6Common10LibContextE) STUB("oZ8DMeTU-50", sceNpTusGetMultiUserVariableForCrossSaveAsync) +STUB( + "oZD2mn9Wxu8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEE7get_refEv) +STUB( + "oZHTnnKCI+Y", + _ZN3JSC14JSRunLoopTimer23addTimerSetNotificationEN3WTF6RefPtrINS1_10SharedTaskIFvvEEENS1_13DumbPtrTraitsIS5_EEEE) +STUB("oZLnhi8kH8Y", GetServiceTypeFromTitleId) +STUB( + "oZNIhd1trXw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("oZOpvAmaZgY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEEC1EPS6_) +STUB("oZP-pSXo42k", _ZN12video_parser5vpcom20GetServiceProviderIdEPKcPy) +STUB( + "oZPsvAn4EgY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEneERKS9_) +STUB("oZRfoAHjO0I", WKPreferencesGetScrollingPerformanceLoggingEnabled) +STUB( + "oZSdradkU-g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE10setContextEPNS2_10LibContextE) +STUB("oZUCfP9N1kE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEE5resetEPS6_) STUB("oZZwcwzugfI", sceVorbisDecPcmSeekLap) +STUB("oZbyJhtKFAc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEE11get_deleterEv) STUB("oZf2EW1xS70", sceFsCreatePfsSaveDataImage) +STUB("oZf55ZVEu8k", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE5beginEv) +STUB( + "oZmPyRPNiGU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE7popBackEv) +STUB("oZx-SXiRWNE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEmmEv) +STUB("oZxm7WvZF7U", + _ZNK3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectator17pushContextsIsSetEv) STUB("oZyb9ktuCpA", sceNpMutexUnlock) +STUB("oa0ZDa7v5us", mono_aot_Sce_PlayStation_PUImethod_addresses) +STUB("oa5iD4P4G8g", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V111LeaveReasonEEaSERKS7_) +STUB("oa8shQdXY2A", EVP_PKEY_copy_parameters) +STUB( + "oaEL61s4184", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEC2EPKS8_) STUB("oaJ1BpN2FQk", sceFontTextSourceInit) +STUB( + "oaM8c7VAqjU", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditions13isInitializedEv) +STUB("oaN4u80lcv4", + _ZN3sce2Np9CppWebApi14ConnectAccount2V216PartnerTokensApi26ParameterToGetPartnerTokenD2Ev) +STUB( + "oaPVgmehY-4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEptEv) +STUB("oaSKGgwTWG0", _ZN3sce2np7RingBuf14CheckinForReadEm) +STUB("oaXu4TS84o0", _ZN3sce7Toolkit2NP2V210Tournament4TeamC1ERKS4_) +STUB("oaZWpS3Ospw", + _ZN7WebCore19JSDOMMatrixReadOnly11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB( + "oah-UwAm7SY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEEC1Ev) +STUB("oajJqVTlu-M", _ZN7WebCore13GraphicsLayer17removeAllChildrenEv) STUB("oakL15-mBtc", sceFontFtSupportOpenType) +STUB( + "oaneQeJimqg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEED1Ev) +STUB("oapTVZgi-ws", mono_type_is_struct) +STUB("oaqISo2f6rk", glUniformMatrix2fv) +STUB("oasW8mQPUvQ", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIdEC2EPKd) +STUB("oawu0IrFD60", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfilesaSERS5_) +STUB("oayHBGaYS+I", rgctx_fetch_trampoline_rgctx_102) +STUB("ob+qCc9FQK4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V114SearchOperatorEEneERKS7_) +STUB("ob1QmOjHhjs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEED1Ev) +STUB("ob5xAW4ln-0", strchr) +STUB( + "ob7cwdtEPJY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEneERKS9_) +STUB("obCLy8k+BB4", + _ZN7WebCore19JSAnimationTimeline14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB("obFpLJZWo0Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V115SearchAttributeEEC1Ev) +STUB( + "obFxi9YIG6k", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("obG6QKZMh30", mono_privileges_start_init) +STUB( + "obHdP57ABw8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEneERKS9_) +STUB( + "obLXZ1KiDEI", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12unsetString4Ev) +STUB( + "obMO1zrtkmA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEC2Ev) STUB("obQpnx50kEk", sceSystemLogger2NativeQueueClientSetNativeQueueConfig) STUB("obWv-QrE1Gw", sceDeci4hDrfpSend) +STUB("obXJpnjajeQ", nsnp_InitTrack) +STUB("obXlrN5+T6g", _ZN7WebCore16DOMGuardedObject14visitAggregateERN3JSC11SlotVisitorE) +STUB( + "obY3M21QZyQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("obZrVXCIJws", _ZN3sce7Toolkit2NP2V29Challenge10ChallengesC1ERKS4_) +STUB("obcvK+BABYY", __tsan_read4_pc) +STUB( + "obhqgRoKe40", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEiRNS2_10LibContextEPT_m) +STUB("obnSzeb-KXk", FT_Get_Char_Index) +STUB( + "obpwwLfR1Ew", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("obresavcww0", _ZN3sce2Np9CppWebApi13InGameCatalog2V59PublisherD1Ev) STUB("obuxdTiwkF8", sceNetCtlGetInfo) +STUB( + "oc+NOdsMxe0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEC2EPKS8_) +STUB( + "oc+pxLeXwtY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEmmEi) +STUB("oc0Ji7a5MeE", JNU_ThrowNoSuchFieldException) +STUB( + "oc0NU6aDrdE", + _ZN3JSC9constructEPNS_9ExecStateENS_7JSValueENS_13ConstructTypeERKNS_13ConstructDataERKNS_7ArgListES2_) +STUB("oc5ZoXUmVm4", _ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error9setReasonEPKc) +STUB( + "oc6bAPq86GE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEmmEi) +STUB("oc6n6hdUrEM", _ZNK15AbstractStorage4Item12GetThumbnailEPSt10shared_ptrINS_7ContentEE) +STUB("oc8HXLVgc6E", _ZNK7WebCore18PlatformTimeRanges19maximumBufferedTimeEv) +STUB("oc98+zOImus", pathconf) +STUB( + "ocAbEkG4isc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE7releaseEv) +STUB("ocD3Wh0yT1E", _ZN3WTF10ParkingLot9unparkAllEPKv) +STUB("ocFN4P1KsWQ", ft_raster1_renderer_class) +STUB( + "ocGl4qqWuwc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) STUB("ocHtyBwHfys", sceWebBrowserDialogTerminate) +STUB("ocHw+wuy2eo", _ZN7WebCore11MediaPlayer8seekableEv) +STUB("ocIKEffh7po", _ZN7WebCore18PluginInfoProviderD1Ev) +STUB( + "ocSHzAdDioc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEED1Ev) +STUB( + "ocSYxEGRIko", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE5beginEv) +STUB( + "ocZDFBAgTKY", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser17hasnpServiceLabelEv) +STUB("ocg6JEGRtz0", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi27ParameterToLeaveGameSessionC1Ev) +STUB( + "ocjtBe4fWzU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEixEm) +STUB("ocljhNqBmBE", _ZN7WebCore9HTMLNames14imagesizesAttrE) +STUB( + "ocuAbaFMW8g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEaSERKS7_) +STUB("ocyIiJnJW24", __nedf2) +STUB( + "od0j-1fQSu8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("od0otGJ2Z3A", u_austrncpy) STUB("od0pFsDoez0", sceNpAppLauncherInitialize) +STUB("od3QK3h4MEM", mono_mlist_prepend) STUB("od3yXUJvLPY", sceLncUtilSystemReboot) STUB("od5QCZhZSfw", sceHttp2GetAutoRedirect) +STUB("odADrumcRh8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEcvbEv) +STUB("odGqtpEAy5A", rgctx_fetch_trampoline_rgctx_14) +STUB("odLMd32iusc", mono_aot_Sce_Vsh_Gls_GlsSharedMediaViewjit_code_start) +STUB( + "odMXj9YzC0Y", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE8capacityEv) +STUB("odPHnVL-rFg", _FTgamma) +STUB( + "odQaamKIdIY", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEEiRNS2_10LibContextEPT_m) +STUB("odSR1DiNc1o", OBJ_obj2nid) +STUB( + "odV0-cpZTrM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE8capacityEv) +STUB("odaWQmWaj-8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEcvbEv) +STUB("odcf2QXShK4", _ZN7WebCore9HTMLNames15imagesrcsetAttrE) STUB("odjOGg8harg", sceFiosDHReadSync) +STUB("odk8GtS4Buo", mono_event_get_object) +STUB( + "odl74SYsrEQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEED1Ev) +STUB( + "odlZUoqRyD4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEmmEi) +STUB("odlxNwyXfM8", WKPreferencesGetNewBlockInsideInlineModelEnabled) +STUB("odnpjvKHmK8", coil_netctrl_init) +STUB( + "odosqvk4m98", + _ZN9Inspector17ScriptDebugServer11handlePauseEPN3JSC14JSGlobalObjectENS1_8Debugger14ReasonForPauseE) +STUB( + "odrhqTVyCkI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEppEv) +STUB( + "odvzwg4c0is", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEptEv) +STUB( + "odw3JNA9yuc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB("odyn6PGg5LY", _ZNSt14numeric_limitsIdE14min_exponent10E) +STUB( + "oe0BhkaxF4M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("oe51pWaltmY", EC_KEY_up_ref) +STUB("oe8Pw-irfJw", mono_aot_Sce_Vsh_MorpheusUpdWrapperjit_code_start) STUB("oe92cnJQ9HE", sceImeDialogInitInternal2) +STUB("oe9tS0VztYk", _ZNSt13runtime_errorD2Ev) +STUB("oeBlNAL8aoM", _ZN13MsvMetaEditor20checkCompatibleBrandEv) STUB("oeCZSK8StuQ", scePerfTraceAmmStop) +STUB( + "oeDvZ4OMWA8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE7popBackEv) +STUB("oeDzjPWu-o8", _ZN7WebCore12ISOWebVTTCueC1EON3WTF9MediaTimeES3_ONS1_6StringES5_S5_S5_S5_) +STUB( + "oeEvVCcrxH8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEE5resetEPS8_) +STUB("oeFut-D7xJM", _ZN8meta_gen11MsvPromoter15freeAllKeyValueEP10KeyValue_ti) STUB("oeI5GwWRS3U", scePlayReadyEnvelopeRead) STUB("oeNtdmvV4II", sceVideoOutDriverAddEvent) +STUB( + "oeRuxwcdgdE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "oea1CPeBnB4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEEC1ERSA_) STUB("oeb8Q84qU24", sceClPthreadCondDestroy) +STUB("oecoIWxTboc", _ZN3sce2Np9CppWebApi6Common6VectorIjEixEm) +STUB("oerBe6J-EMA", il2cpp_unhandled_exception) +STUB( + "oewW5Cp4vRY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEEdeEv) STUB("oeyHRt5PP+Q", sceShellCoreUtilUnmountHddForRestore) +STUB("of6gh97dpGU", _ZNK7WebCore18PlatformTimeRanges4findERKN3WTF9MediaTimeE) STUB("ofGsK+xoAaM", sceNetCtlApRpRegisterCallback) +STUB( + "ofJkNqNHJB8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEeqERKS9_) STUB("ofMR3p9i+Pg", sceFsSetFileReservedTotal) +STUB("ofO4+TUnwIw", _ZNK7WebCore9DOMWindow27pendingUnloadEventListenersEv) +STUB( + "ofQa3L5ZXN0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEEcvbEv) +STUB( + "ofTDJcy-jYc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEC1Ev) STUB("ofW2sJkl7gY", sceMoveSetCalibrationMode) +STUB("ofaNlI4jEM0", _ZNK3JSC4Yarr17RegularExpression9searchRevERKN3WTF6StringE) +STUB("ofavYMTE30E", JNU_ThrowByNameWithMessageAndLastError) +STUB("ofevXvqCTXA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEE11release_refEv) +STUB( + "offy-KkdphM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEED1Ev) +STUB("ofiCRgOQ0vY", mono_gc_deregister_root) +STUB( + "ofipKhA2RFg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEEC2ERKSA_) STUB("ofkhJRiQua0", sceVideoOutSysConfigureOutput) +STUB("ofr9gWOxzxo", ucal_countAvailable_67) +STUB( + "ofrzYJWOAcY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEppEi) +STUB("og-YuBhoVII", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionFactory7destroyEPNS3_11GameSessionE) +STUB( + "og1GHtkevoU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE21intrusive_ptr_sub_refEPS9_) +STUB("og2pEincZCQ", _ZN12video_parser10cVideoPath11sExtentListE) +STUB( + "og5gnhi979o", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEeqERKS9_) +STUB("og5vEJWP-w0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEED1Ev) +STUB("og62zpJAjo4", _ZN3sce7Toolkit2NP2V28Commerce7Request25ConsumeServiceEntitlementC2Ev) +STUB("og6IDmhKqO4", _ZNK7WebCore18TextureMapperLayer9layerRectEv) +STUB( + "ogDhrTgiMiM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("ogFCy9EBtYo", _ZN9Inspector25NetworkFrontendDispatcher12dataReceivedERKN3WTF6StringEdii) +STUB("ogJB8Um44ZU", _ZN3JSC7Symbols23concatMemcpyPrivateNameE) +STUB( + "ogL1RBWyB+c", + _ZN3sce2Np9CppWebApi11Matchmaking2V127ListUserTicketsResponseBody10setTicketsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_10UserTicketEEEEE) +STUB("ogOi1AGEtYE", WKCookieManagerSetStorageAccessAPIEnabled) +STUB("ogOtxyBIEio", mono_bitset_find_first_unset) +STUB("ogPDBoLmCcA", mbrtoc16) +STUB("ogPGtnC3dqY", _ZN3JSC8Debugger23setPauseOnNextStatementEb) +STUB( + "ogQYyAL3KlA", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_17ActivityFeedStoryENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB( + "ogRNImffc0s", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEE8capacityEv) +STUB( + "ogTbJTx00wg", + _ZN3JSC12StringObject25getOwnPropertySlotByIndexEPNS_8JSObjectEPNS_14JSGlobalObjectEjRNS_12PropertySlotE) +STUB( + "ogc2cNOobW8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB( + "ogfiG5hMNC8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEEC2ERS9_) +STUB("oggFDAoinzk", __tsan_atomic16_compare_exchange_weak) +STUB("oggz4E+E8Mc", _ZN3sce2Np9CppWebApi7Matches2V15ErrorD2Ev) +STUB("oghWcTl49m4", _ZN3sce2Np9CppWebApi12Leaderboards2V15Entry20setHighestSerialRankERKi) +STUB("ogi5ZolMUs4", _ZTVSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE) +STUB("ogjjVYnBJR8", WKClearMockMediaDevices) +STUB( + "oglmfb7zWsw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEC2Ev) +STUB( + "ogm6rdQuFAg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEppEv) +STUB("ogoZ154oVCk", _ZN3sce7Toolkit2NP2V27Ranking17SetGameDataResult8deepCopyERKS4_) +STUB( + "ogsAH5vPgv4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEmmEv) +STUB( + "ogugDtcrIZA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("ogzr9u410Es", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE7popBackEv) +STUB("oh1NN+Wq-2Y", _ZNK3JSC8Debugger10isSteppingEv) +STUB("oh2WU6fkK9Q", _ZN3sce2Np9CppWebApi13InGameCatalog2V520ContainerRatingCount8setScoreERKi) +STUB( + "oh4M7UNtmrw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEC1Ev) +STUB("oh4Vr4iOD2A", _ZN3sce7Toolkit2NP22ProductListInputParamsC1Ev) STUB("oh68H-4hEAE", sceShellCoreUtilHideBlocksFromUser) +STUB("ohClFxhDjp0", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEE7add_refEv) +STUB( + "ohECoBXM0fg", + _ZN7WebCore30forwardForEachCallToBackingMapERNS_17JSDOMGlobalObjectERN3JSC9CallFrameERNS2_8JSObjectE) +STUB( + "ohH8P0UIiho", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEE21intrusive_ptr_sub_refEPS7_) +STUB("ohLMjo-2jVQ", last_good_addr) +STUB( + "ohUV2PfeiYw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEmmEi) +STUB( + "ohX3f5V37FA", + _ZN3sce2Np9CppWebApi14SessionManager2V130ResponsePlayerSessionSpectatorC1EPNS1_6Common10LibContextE) +STUB("ohaOf309CPU", _ZN4Manx11MediaPlayer4loadEPKcS2_S2_) +STUB("ohbd2DfOICM", Java_java_io_RandomAccessFile_open) +STUB("ohmjLoFjJ5Y", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationProperties10getHelpfulEv) +STUB("oi3kpQPqpMY", _ZNSt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1ERKSt8_Locinfom) +STUB("oi4FgE6NNWI", u_printf_67) +STUB("oiCG49pO4ZE", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_26ActivityFeedCondensedStoryEE8allocateEmPKv) STUB("oiK6kLAtAIE", sceFiosResolveSync) +STUB("oiM5cVJFsgE", coil_netctrl_get_str) STUB("oiOi7vgPfAY", sceAudioOut2EnableChat) +STUB("oiRP-fp3SN4", FT_Sfnt_Table_Info) +STUB("oiT0vgzmW0M", dlclose) +STUB("oiXYJL0uKjc", vzone_setRawOffset_67) +STUB( + "oiZzW+cyPGI", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi42ParameterWithBinaryRequestBodyToUploadData14getRequestBodyEv) STUB("oib76F-12fk", sceKernelLseek) +STUB("oicZcfjulAs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEC1Ev) +STUB( + "oig6kSiabbw", + _ZThn24_N7WebCore14DocumentLoader22sendCSPViolationReportEONS_3URLEON3WTF3RefINS_8FormDataENS3_13DumbPtrTraitsIS5_EEEE) +STUB( + "oihHuBNKgUQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE21receiveResponseHeaderEv) +STUB("oilo1okASh0", YGNodeStyleSetMargin) +STUB( + "oimb6YRqF2Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEED1Ev) +STUB("oioCTYBcLFg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE4sizeEv) +STUB("oirBv8VDfaA", AsyncStorageGetAllKeysNative) STUB("oirFwvQr1Yc", sceCesEucJpToUtf16le) +STUB("oiulDieFUb0", _ZN3JSC11VMInspector16isValidCodeBlockEPNS_9ExecStateEPNS_9CodeBlockE) +STUB("oj-nLrSCRao", _ZN7WebCore11MediaPlayer19networkStateChangedEv) +STUB( + "oj2RAQA++SE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEEC1EPS8_PNS2_10LibContextE) +STUB("ojA1dqecGw4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEED1Ev) +STUB("ojBk-UJxzWw", _ZThn16_N3sce2np10MemoryFileD0Ev) STUB("ojBkmG7+CgE", sceAmprAmmCommandBufferMapWithGpuMaskId) +STUB("ojLjExhl-hE", u_memset) +STUB("ojMeXkwhnsI", + _ZN3sce3pss4core8graphics15DirectTexture2D15SetImagePointerEiiNS2_11PixelFormatEPv) +STUB( + "ojMxOv2h7qc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEmmEv) +STUB( + "ojOlG9PKTM8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEC1Ev) +STUB("ojRh5YSi1cs", _ZN3JSC11ProxyObjectC2ERNS_2VMEPNS_9StructureE) STUB("ojW+VKl4Ehs", sceFontSelectGlyphsFt) +STUB( + "ojac7V4XpDU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB("ojbXRC0CmUo", cairo_scaled_font_text_to_glyphs) +STUB("ojc+hdwBaYw", _ZN7WebCore19JSAnimationTimeline15subspaceForImplERN3JSC2VME) +STUB("ojiIeTWOySU", Java_com_sony_gemstack_org_havi_ui_HBackgroundImageDecoder_load) +STUB( + "ojk+4ELb3DA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("ojkbYSTY3As", _ZN7WebCore15FontDescriptionC1Ev) STUB("ojmvNKQZNUw", sceLncUtilGetGpuCrashFullDumpAppStatus) +STUB("ojnI4H1JJZw", __sanitizer_get_ownership) +STUB("ojqClMqGFwY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEEdeEv) +STUB( + "ojuU6VGqekw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEED2Ev) +STUB( + "ojy+Bvp1HD0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEE11get_deleterEv) +STUB( + "ok1ZMIauuhs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "ok2Lp8euSgs", + _ZN3sce2Np9CppWebApi14SessionManager2V159PostPlayerSessionsSessionIdMemberPlayersResponseBodyFactory7destroyEPNS3_52PostPlayerSessionsSessionIdMemberPlayersResponseBodyE) +STUB( + "ok6VTubgpes", + _ZN3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayer8fromJsonERKNS_4Json5ValueE) +STUB("ok8hDgnuEqM", uloc_toLegacyType_67) +STUB( + "okAxtWIxibY", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser10initializeEPNS1_6Common10LibContextEPKc) +STUB( + "okCLpYV1jMQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEixEm) +STUB( + "okIYvsWr6wg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE4sizeEv) STUB("okX7IjW0QsI", sceNpUtilSerializeJid) +STUB("okXb7yylMR4", _ZN3sce2Np9CppWebApi6Common6VectorImEC2Ev) +STUB("oka3bEJ5NZM", uhash_deleteScriptSet_67) +STUB("okaqPaVSziI", mono_aot_Sce_Vsh_Np_AppInfoplt_end) +STUB("okb4emkAX00", _ZN7bmalloc29StaticPerProcessStorageTraitsINS_9ScavengerEE7Storage7s_mutexE) +STUB( + "okbwPOT7FM4", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getBoolean7Ev) +STUB( + "okf5UlY5-LU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) STUB("okgIGdr5Iz0", scePlayGoDialogTerminate) +STUB( + "okgIjeFQ8bY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEEcvbEv) +STUB( + "okn8zKWxZWE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("oknoPl8KurA", _ZN12video_parser5vpcom5CloseE) +STUB( + "okq4wr-PG-Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEEC2ERKS9_) +STUB( + "oktwc7QLIeU", + _ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionPlayerFactory7destroyEPNS3_19PlayerSessionPlayerE) STUB("okzABktskwU", sceRegMgrDrvDataOpen) +STUB("ol-KEFGshOA", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIlEmmEi) +STUB( + "ol4FjXbO74U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEED2Ev) STUB("ol4LbeTG8mc", sceAudioOutDetachFromApplicationByPid) +STUB("ol7KhQl8kfw", _ZN3sce4Json6Object6insertERKNS1_4PairE) +STUB( + "ol98DtGyxQI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "olAxKc-2FLI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEC1Ev) +STUB("olBDzD1rX2Y", __ctzti2) +STUB("olCnAJHxH+Y", mono_free_method) +STUB( + "olGJ8RRZ4hE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("olGQFkStv1c", _ZN7WebCore21NetworkStorageSession40resetCacheMaxAgeCapForPrevalentResourcesEv) +STUB( + "olGeYgvAgcI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEE7popBackEv) +STUB( + "olHmY-ig8cA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEE7get_refEv) +STUB("olL3JJ0yPCc", _ZN7WebCore17LibWebRTCProviderC1ERKS0_) STUB("olSmXY+XP1E", sceFontTextCodesStepNext) +STUB( + "olTMuaix-oQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEixEm) +STUB("olYPAw8zKmc", mono_type_get_object) +STUB( + "olZJwozESEw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEC2EPKS8_) +STUB( + "olbqvqlFndI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEEC2ERSA_) +STUB( + "olf4MzGpXWM", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi35ParameterToSetGameSessionPropertiesC1Ev) +STUB("oliwAKLVWgM", _ZN7WebCore15HitTestLocationC2ERKS0_) +STUB("olj8ieIBK9k", WKContextSetDatabaseDirectory) +STUB( + "olkBKMfLZ1w", + _ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse12setLanguagesERKNS1_6Common6VectorINS5_6StringEEE) +STUB( + "oln3hXAddPs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) STUB("olojYZKYiYs", sceCameraGetRegister) +STUB("olsoiZsezkk", _ZNSt15basic_streambufIwSt11char_traitsIwEE9showmanycEv) +STUB( + "olxGqGZ5egA", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorI16SceNpTusVariableNS1_15AppSTLAllocatorIS5_EEEEC1Ev) +STUB("olxOKqTJPz0", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_12CategoryInfoEED2Ev) +STUB( + "olxrxx7GGaA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("oly3wSwEJ2A", _ZNSt12system_errorC2ESt10error_codePKc) STUB("om4jx+pJlQo", sceUserServiceSetNpAuthErrorFlag) +STUB( + "om6YvOiYOHs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEEC1ERKSA_) +STUB( + "om9aQbsxdPo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEC1EPS8_) +STUB("omDz0x8lyHk", FT_Get_Sfnt_Table) +STUB("omEjVe8L89s", _ZNK3sce2Np9CppWebApi7Matches2V118RequestMatchPlayer13getPlayerTypeEv) +STUB("omGp+AcigLE", mono_btls_x509_name_get_entry_oid) +STUB( + "omHc+I4WMtw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEeqERKS9_) +STUB("omK8syhP-Xo", mono_btls_x509_chain_from_certs) +STUB("omOKwHLJ90U", _ZN7WebCore16HTMLMediaElement27purgeBufferedDataIfPossibleEv) +STUB("omQZ36ESr98", stdin) +STUB("omT5ldW9X3E", sk_num) +STUB("omVg1AdJGYQ", _ZN3sce7Toolkit2NP2V27Session7Request14SendInvitationC1Ev) +STUB("ombjQXlhves", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIjEplEm) +STUB( + "omeeH5XBsYs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("omf1GoUEJCA", _ZN3sce2np5MutexD0Ev) STUB("omf6BE2-FPo", sceUserServiceSetMousePointerSpeed) +STUB("omgDKNrhqrs", UI_method_set_reader) +STUB("omgyrKgp3bQ", _ZN7WebCore4Page18setTopContentInsetEf) +STUB("omheU6RVaow", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEED2Ev) +STUB("omk5gt1mqRs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEEppEi) STUB("omkB3RQAzoI", sceKernelXenterSblock) +STUB("ompqtdvPAyo", _ZN3JSC7Symbols30intlSubstituteValuePrivateNameE) +STUB("omx0wMI12lk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEcvbEv) +STUB( + "omxwJ0bSGs4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEC1Ev) +STUB("omzWoelkO8E", _ZN7WebCore21BlobDataFileReference4pathEv) +STUB("on+1JASSoRU", _ZN3WTF30platformUserPreferredLanguagesEv) +STUB("on0anVfSPlM", ucasemap_getBreakIterator_67) +STUB( + "on16uSjyDXs", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectator28setxPsnAcceptPlatformNamePs5ENS5_25XPsnAcceptPlatformNamePs5E) +STUB("on1ZzO7zyFg", mono_btls_x509_store_ctx_free) +STUB("on4Q-eP3LTc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEC1ERKS7_) STUB("on6ZH7Abo10", sceAudioOut2ContextDestroy) +STUB( + "onD6xMs1QVM", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectatoraSERS5_) +STUB( + "onDTHdYLYKI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEdeEv) +STUB( + "onFHLEJ6LIA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEE7get_refEv) +STUB("onFll9DvvBY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEptEv) +STUB("onHPS6AKnl0", WKIconDatabaseSetIconDatabaseClient) +STUB( + "onI4oMH1XQs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEEC2Ev) +STUB( + "onMy0vYO09A", + _ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId10hasifMatchEv) STUB("onNY9Byn-W8", scePthreadJoin) +STUB( + "onPrPM7LYCM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE8capacityEv) +STUB("onTqxi7NTUA", _ZN3sce2Np9CppWebApi7Matches2V113RequestMemberD2Ev) +STUB("ongs2C6YZgA", _ZNSt13_Num_int_base5radixE) +STUB("onh8ugUeSQM", JSObjectSetPropertyForKey) +STUB("onjzAC-bLo8", + _ZN9Inspector17BackendDispatcher9getDoubleEPN3WTF8JSONImpl6ObjectERKNS1_6StringEPb) +STUB("onrsJM-H6Rg", _ZN3sce7Toolkit2NP9Utilities6FutureI16SceNpTusVariableEC2Ev) +STUB( + "onscvYZe428", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEE7get_refEv) +STUB("onsvctvBFhU", rgctx_fetch_trampoline_mrgctx_123_p) +STUB( + "onyRx4AzbfM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEC1EPNS2_10LibContextE) +STUB("oo0lo5EwGbQ", _ZN3JSC7Symbols20isPromisePrivateNameE) +STUB("oo7KoSQGgC8", utmscale_getTimeScaleValue_67) +STUB( + "oo85C0KxxDQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEEC2ERSA_) +STUB("ooCI1mhaiPY", uregex_appendReplacement_67) +STUB( + "ooFYDj1XIdM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE3endEv) +STUB("ooPcqksbLj4", SSL_get_peer_cert_chain) +STUB("ooR0mElMyac", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead22unsetInvitableUserTypeEv) STUB("ooSMrbrkkiE", sceCesUtf16ToBig5) +STUB("ooWZqSEeX8k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEppEv) +STUB( + "ooc7JCNlQ3w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEE5resetEPS6_) +STUB("oocZi-VpGYc", _ZN3WTF8JSONImpl10ObjectBase9setDoubleERKNS_6StringEd) +STUB("oolj9XRiiek", _ZN3sce2Np9CppWebApi7Matches2V111AddedPlayer11unsetTeamIdEv) +STUB("oomd0c33Dn0", _ZN3JSC2VM25functionRareDataSpaceSlowEv) +STUB( + "ooofO7+qMH4", + _ZN3sce7Toolkit2NP2V211SharedMedia14getScreenshotsERKNS3_7Request14GetScreenshotsEPNS2_4Core8ResponseINS3_11ScreenshotsEEE) +STUB("oov4LEYfr4o", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead19setUsePlayerSessionERKb) +STUB("ooxXMa0uk0U", _ZN3WTF5equalERKNS_10StringImplES2_) +STUB("ooxmfHvkXQ4", _ZN7WebCore6Editor29canDecreaseSelectionListLevelEv) +STUB("op-MlnhQVKM", _ZN7WebCore9HTMLNames10pictureTagE) +STUB("op0eBrkgrYQ", _ZN3sce2Np9CppWebApi14SessionManager2V19ToFactory7destroyEPNS3_2ToE) +STUB("op0yk--Pbns", _ZN4IPMI4impl10ServerImpl13insertSessionEPNS0_11SessionImplE) +STUB("op7lZfbflp4", _ZN7WebCore19ResourceRequestBase23setFirstPartyForCookiesERKN3WTF3URLE) STUB("opDpl74pi2E", sceNpMatching2SendRoomChatMessage) +STUB("opFenFdq3F4", WKAuthenticationDecisionListenerUseCredential) STUB("opFs796vTHg", sceNpGameIntentNotifyAppLaunched) +STUB("opIiuXX+a58", _ZN3JSC11RegisterSet7allFPRsEv) +STUB( + "opLoWkchSXw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEEC2Ev) STUB("opMiSfTJyJo", sceKernelGetDebugMenuModeForRcmgr) +STUB("opQB7KfEmog", _ZN7WebCore5Frame25setPageAndTextZoomFactorsEff) +STUB( + "opQPEue7KKc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEdeEv) +STUB( + "opQcxEuyqug", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE4initEv) STUB("opR1JeJZCBU", sceAgcAcbSetWorkloadComplete) +STUB("opUhma2Cc+o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEC2Ev) +STUB( + "opY5HiUUqFU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB( + "opYtQJzkB9s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE3endEv) +STUB( + "opaD1UQhVwA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEppEv) +STUB("opghkI9TRV0", uprv_decNumberMinMag_67) +STUB("opk9vPpGlWw", _log2_impl) +STUB("opkpBy1S9Ek", mono_environment_exitcode_get) +STUB( + "oppF6HdHjMY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE10setContextEPNS2_10LibContextE) +STUB("opqf3CJzhms", _ZN3WTF21RefCountedLeakCounterC2EPKc) +STUB( + "opx7oKhVkPg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEED2Ev) +STUB( + "opxlbmj-c5w", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB("oq5hErXegcA", + _ZN3sce2Np9CppWebApi7Matches2V125ResponseCompetitiveResultC2EPNS1_6Common10LibContextE) +STUB("oq8zayuAqeI", _ZN7WebCore12PrintContext9spoolRectERNS_15GraphicsContextERKNS_7IntRectE) +STUB("oqEP9MesQ2A", __sanitizer_set_death_callback) +STUB("oqWuCn2OR6I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEC1Ev) +STUB("oqYAk3zpC64", _ZGVNSt8messagesIwE2idE) +STUB("oqhoukEDo-g", + _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi20ParameterToJoinMatch19getjoinMatchRequestEv) +STUB("oqmE44po4Eo", + _ZN7WebCore20LegacySchemeRegistry35registerURLSchemeAsCachePartitionedERKN3WTF6StringE) +STUB("oqmY25ZV2lw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE4sizeEv) +STUB( + "oqrqXvX7MdQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEneERKS9_) +STUB( + "oqt9KM5+mjw", + _ZN9Inspector25DebuggerBackendDispatcher20setShouldBlackboxURLElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "oqu6GiVem-E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE6resizeEj) +STUB( + "oqvOPxN6SqQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEEC1ERKSA_) +STUB("oqyK+eNC924", + _ZNK3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionMemberPlayer12playersIsSetEv) +STUB("oqzKgOWMDJk", _ZN23sceMetadataReaderWriter13KeyValueArray7releaseERKSsPFvPvE) +STUB("or0CNRlAEeE", _ZNSt12placeholders3_11E) +STUB( + "or0ayP2CMhk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEneERKS9_) STUB("or0e885BlXo", sceNpWebApiUtilityParseNpId) STUB("or55417wcDk", sceUltWaitingQueueResourcePoolDestroy) +STUB("or6gfVtkQ2s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEE7add_refEv) +STUB( + "or7+DEeDJyk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEEaSERSA_) +STUB("or96x8OaRrU", _ZN7WebCore7Element12clientHeightEv) +STUB( + "orBoEEybUxg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEE7get_refEv) +STUB("orEBMU4hFLU", monoeg_g_slist_length) +STUB("orIQoGWlBGM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEC2ERS7_) +STUB( + "orNZIWmxEIg", + _ZN3sce2Np9CppWebApi13InGameCatalog2V516PublisherFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_9PublisherEEE) +STUB("orNj+LU-feE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEdeEv) +STUB("orOiqseYzP4", _ZN3sce7Toolkit2NP2V211SharedMedia10Broadcasts8deepCopyERKS4_) +STUB( + "orPbupCaIiI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEplEm) +STUB("orRKxersJBE", _ZN3sce7Toolkit2NP2V24Core11ServerErrorC1Ev) +STUB("orRb69nSo64", _ZN3sce2np6ObjectnwEmR16SceNpAllocatorEx) +STUB("orRliOqiL2g", _ZN7WebCore6DOMURL15createObjectURLERNS_22ScriptExecutionContextERNS_4BlobE) +STUB("orTn+qafMUs", NetCtlInitNative) +STUB( + "orU4L1AsJpY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB("orXjmpvkHuU", curl_mime_subparts) +STUB( + "orYJL3tJx2E", + _ZN9Inspector20DOMBackendDispatcher32removeBreakpointForEventListenerElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "oriUOV5KqeM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEED0Ev) +STUB( + "ortiLL4+3Ps", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEppEv) +STUB("orvHkPITv1E", _ZN23sceMetadataReaderWriter8KeyValue7releaseEPFvPvE) +STUB("orw+fu5nLMk", monoeg_g_usleep) +STUB("orylFUGG-6M", WKBundleFrameGetComputedStyleIncludingVisitedInfo) +STUB("os+UvF9v4vs", + _ZN3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayer15getPushContextsEv) +STUB("os0AbCBgOow", _ZN3JSC7Symbols24argumentCountPrivateNameE) +STUB( + "os3JnI7r9UA", + _ZNK3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody16customData2IsSetEv) STUB("os4QwIWwOJw", sceApplicationIsResumable) +STUB("os4hZSLNqiw", g_slist_copy) +STUB("os6SV3ZbXo0", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEED2Ev) +STUB( + "os7KjOhexWE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEmmEv) +STUB( + "osA4tgzMULM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEdeEv) +STUB("osFy-sM72sI", _ZNK9Inspector15ScriptCallFrame7isEqualERKS0_) +STUB( + "osMzBigeiAM", + _ZN15AbstractStorage14TwitterStorage15CreateRecursiveERKSbIcSt11char_traitsIcENS_8StlAllocIcEEENS_8ItemTypeEPSt10shared_ptrINS_4ItemEE) +STUB( + "osOqMva56Ko", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEptEv) +STUB("osR4fLPwmb0", GCC_except_table143) +STUB("osSHWP92dx4", WKProtectionSpaceCopyRealm) +STUB( + "osScvw0JGOM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEC1Ev) +STUB("osWtCsta06M", WKPreferencesGetLoadsSiteIconsIgnoringImageLoadingPreference) +STUB("osZckBsVgRg", _ZNK7WebCore24CoordinatedGraphicsLayer22shouldHaveBackingStoreEv) +STUB("oscjJC7TWQo", _ZN3JSC4Heap17registerWeakGCMapEPNS_13WeakGCMapBaseE) +STUB("oslTfJ2LxEc", _ZN3sce2Np9CppWebApi6Common6Binary9setBinaryEPKvm) +STUB( + "osn+QRqZSzY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE3endEv) STUB("osoNc2UwjJA", sceCesUcsProfileInitIso2022JpCp50222) +STUB("osrpbfyR61g", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEEC2ERS6_) STUB("ossvuXednsc", sceNpManagerIntIsSubAccount) +STUB( + "ostFfAL1-2M", + _ZN3sce2Np9CppWebApi14SessionManager2V159PostPlayerSessionsSessionIdSessionMessageRequestBodyFactory7destroyEPNS3_52PostPlayerSessionsSessionIdSessionMessageRequestBodyE) +STUB("osuUfqu8oJw", unumsys_getName_59) +STUB( + "osz07MhVuYs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEC1EPS8_) +STUB("oszgKf+pKcE", mono_aot_Sce_Vsh_DataTransferunwind_info) +STUB("ot6-E0L6JWY", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfileC1Ev) STUB("ot9Mw6ofb74", sceDepth2Terminate) +STUB( + "otLBNE5T4b0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE8capacityEv) +STUB("otRxM636uhw", ucase_fold) +STUB( + "otSBOYTUtRU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEEC1ERS9_) +STUB( + "otU0HIWJSDU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEptEv) STUB("otUQuZa-mv0", sceHttp2GetMemoryPoolStats) +STUB("otZUtagrnwI", _ZN3sce7Toolkit2NP2V211UserProfile8RealName19MAX_SIZE_FIRST_NAMEE) +STUB("ota-3+co4Jk", _ZTIPh) +STUB( + "otbXTT9NCmY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEEC1ERKSA_) +STUB( + "otcsKZvWHAM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEppEv) STUB("otfCdjLjGrQ", sceKernelGetVddVid) +STUB( + "otgc7-okOA0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEEC2EPS8_PNS2_10LibContextE) +STUB("oths6jEyBqo", getopt_long_only) +STUB("otkFRPTdg-E", _ZNK3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error8tidIsSetEv) +STUB( + "otmXXLJCZDk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("otpJ9du+n9s", _ZN7WebCore7Element14setAttributeNSERKN3WTF10AtomStringES4_S4_) +STUB( + "otsKDQdECtM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("ottWrt-b9pg", Java_com_sun_dvb_event_MHPEventQueue_postKeyEvent) +STUB( + "otveUIq9Hhg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEE3getEv) STUB("ou16V5hh5sg", sceAgcDcbCondExecGetSize) +STUB("ou2D4DgV7RE", mono_g_hash_table_remove) STUB("ou2GyAJwJ+Q", sceKernelGetSubsysId) +STUB("ou7XGX2I+f0", _ZN7WebCore13CharacterData13substringDataEjj) +STUB( + "ouAvf2rJASY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEdeEv) +STUB("ouBHbSngHtA", utext_char32At_67) +STUB("ouDc8nH2bxI", mono_aot_Sce_Vsh_Np_AppInfounbox_trampoline_addresses) +STUB( + "ouFnIACqJuU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE8capacityEv) +STUB( + "ouGhhN0y5Kc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEixEm) +STUB("ouIKBztSwrM", _ZN7WebCore8Document25ensureTimelinesControllerEv) +STUB("ouMiXs4gcA8", YGNodeLayoutGetMargin) +STUB( + "ouO1jqmeuTs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB("ouRl-KC6UTs", JVM_InitAgentProperties) +STUB("ouXHPXjKUL4", _ZTVN6Dinkum7threads21thread_resource_errorE) +STUB("oufOhzK-XYc", + _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead19getSearchAttributesEv) +STUB( + "oulJkfwjAyE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEC2EPS6_PNS2_10LibContextE) +STUB( + "ounc0UJ0EHQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEixEm) +STUB("ouo2obDE6yU", _ZTSSt22_Future_error_category) STUB("ourM2nlXyXw", sceCompositorSetAgcCompositeCanvasCommand) +STUB("ouu2OBg-jm0", _ZN12Mp4Retriever14processMvhdBoxEv) +STUB( + "ouuS6yaSDvg", + _ZN9Inspector23WorkerBackendDispatcher6createERNS_17BackendDispatcherEPNS_30WorkerBackendDispatcherHandlerE) +STUB( + "ouuc7aD2E40", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEEC2EPS8_PNS2_10LibContextE) STUB("ouyROWhGUbM", sceNetBweFinishInternetConnectionTestIpcInt) +STUB("ouzzTKM5a4U", _ZN7WebCore18DOMWindowExtensionC2EPNS_9DOMWindowERNS_15DOMWrapperWorldE) +STUB("ov-eK+zm6iQ", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeaders7hasETagEv) +STUB("ov5ffJIXp5Y", __ubsan_handle_builtin_unreachable) +STUB("ov5wOU-dF8s", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V110UpdateModeEEppEv) +STUB("ov7oWnORxTk", _ZNK15AbstractStorage18DailymotionStorage7GetStatEPNS_4StatE) +STUB("ovBbmOZ8AFg", Java_java_awt_GnmFontMetrics_loadFontFromMemory) +STUB( + "ovDo-2OFIZQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE21intrusive_ptr_sub_refEPSA_) +STUB( + "ovJChufCjXc", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody17setNpServiceLabelERKj) +STUB( + "ovWVNwbds+w", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsers12setsessionIdEPKc) +STUB("ovc4ZvD0YjY", _ZN3sce2np9WorkQueue18RemoveFinishedItemEPNS0_8WorkItemE) +STUB("ovdabH7tKu0", sqlite3_total_changes) +STUB( + "oveC6UkVvDk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEC2Ev) +STUB("ovgEnRhGU2E", FTC_SBitCache_New) STUB("ovguGShbM6M", sceNpSessionSignalingJoinActivate) +STUB("ovmU+5oPjCI", _ZN3sce7Toolkit2NP2V27NpUtils7Request17CheckPsPlusAccessD1Ev) +STUB("ovqX5L1UMjE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEC2ERS7_) +STUB("ovtwh8IO3HE", _Atomic_fetch_sub_2) +STUB("ovyKSSWaaHA", JVM_GetClassCPTypes) +STUB("ovzOMwvVgTY", JSContextGetGlobalContext) +STUB( + "ow+rETvB0N4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEEC1ERKSA_) +STUB("ow-IBPh35ys", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_25ReceivedInGameDataMessageEEC1Ev) STUB("ow6b-WuYPJQ", sceCesMbcToUtf32be) +STUB("owBScSFneQs", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_19ProductInfoDetailedEE3getEv) +STUB("owCRS3+wOwk", WKPreferencesSetTextAutosizingEnabled) +STUB("owKuegZU4ew", logb) +STUB("owT6zLJxrTs", malloc_initialize) +STUB( + "owTP54Jdw-4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEC1EPS6_PNS2_10LibContextE) +STUB( + "owVFGNaLz6g", + _ZN7WebCore18PlatformTimeRangesC2EON3WTF6VectorINS0_5RangeELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("owWkRYAGd6I", _ZN3sce2Np9CppWebApi7Matches2V123ResponsePlayerStatisticD2Ev) +STUB("owaql6iYlCE", _ZN7WebCore6RegionC2Ev) +STUB("owavSCxIMxE", _ZN7WebCore13ContainerNode16querySelectorAllERKN3WTF6StringE) +STUB("owfXIuSyvFA", _ZNK3sce16CommonDialogUtil6Server10getVersionERj) +STUB( + "owgPhpuSECI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE5eraseENS2_8IteratorIS8_EERSB_) STUB("owm52JoZ8uc", sceNpUtilGetDateSetAuto) +STUB( + "owrpOxU0eoE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE8pushBackERKS8_) +STUB("owt6F7LgUqQ", _ZN7WebCore8SVGNames8typeAttrE) +STUB("owxYieafJSM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce19ServiceEntitlementsEED1Ev) +STUB( + "ox0MIC7zgE0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEEC2Ev) +STUB( + "ox1AsgPQVn8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("ox2Ie98lPAQ", _ZNK3sce2np8NpTicket13GetTicketDataEv) STUB("ox3wD142jZQ", sceVideoOutSysConfigureOutputMode) +STUB("ox8PemJycj8", _ZN7WebCore14SQLiteDatabaseD2Ev) +STUB("oxAeC3xLbgw", mono_aot_Sce_Vsh_Gls_NativeCallunbox_trampolines_end) +STUB("oxMFU7qWfD8", unorm2_hasBoundaryBefore) STUB("oxMp8uPqa+U", pthread_set_name_np) +STUB("oxQpdsUY-cg", _ZNK3WTF6String28convertToLowercaseWithLocaleERKNS_10AtomStringE) +STUB("oxVasBZxFVE", _ZN7WebCore16TrackPrivateBasenwEmPv) +STUB("oxVsEWFAiNc", g_list_foreach) +STUB( + "oxX0AY0gWmk", + _ZN3JSC8JSObject23getGenericPropertyNamesEPS0_PNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("oxalVNGQJmQ", _ZN3sce2Np9CppWebApi6Common6VectorIjED1Ev) +STUB("oxbJwN+R0zY", _ZN3JSC19ArrayBufferContentsC1EOS0_) +STUB("oxcjHixZ7+M", _ZN7WebCore9HTMLNames24onanimationiterationAttrE) +STUB( + "oxhgHw0teeM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEneERKS9_) +STUB( + "oxjazfaF5Tk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEE5resetEPS9_) +STUB("oxpki6k4hwY", _ZN7WebCore9MediaListD1Ev) +STUB("oxtVYM5iAGg", fuse_interrupted) +STUB("oxuIoL3hV3M", fuse_fs_poll) +STUB("oxwcZIHAevA", _ZN3JSC12HeapCellTypeD1Ev) +STUB( + "oxzjDPFWwnc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEC1ERS8_) +STUB( + "oy-g+pcheoU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEEdeEv) +STUB("oy7NcAkex1I", cairo_scaled_font_glyph_extents) +STUB("oy8+lROvWc8", _ZN7WebCore18JSHTMLMediaElement9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB( + "oy9BY1LEuQE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEdeEv) +STUB("oy9QXcXcfD0", + _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead6toJsonERNS_4Json5ValueEb) +STUB( + "oy9Qtb91Sds", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEEaSERKS9_) +STUB( + "oyHlzN53QkQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEED1Ev) +STUB( + "oyKM7Fv2eOk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEE11release_refEv) +STUB( + "oyN0x0IS97U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEmmEv) +STUB( + "oyVaeYaxt-4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("oye9egd7IbA", SSL_get_peer_certificate) +STUB("oyl98yuMwTs", _ZN3sce7Toolkit2NP2V212ActivityFeed15PlayedWithStoryD1Ev) +STUB("oyoLlLdruek", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE3endEv) +STUB("oyu6LaExwIo", _ZNK3WTF6String8toUInt64EPb) +STUB( + "oywTzohvkh0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "oyyRTpZkrwE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEED1Ev) +STUB( + "oyzcW+A2liI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEE7get_refEv) STUB("oz2SlXNAnuI", sceNpUtilParseJid) STUB("oz6zQq1JwCE", sceAgcDcbAtomicMemGetSize) +STUB( + "oz7LcvPrKnU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEEaSERSA_) +STUB("ozBH1uNV-CA", WKViewScrollBy) +STUB( + "ozEIrKEWrwg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEmmEv) +STUB( + "ozJOeozyB+I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEC1EPS6_PFvS8_EPNS2_10LibContextE) STUB("ozKzBP4aki4", sceAgcAcbCondExecGetSize) +STUB("ozLi0i4r6ds", _ZNKSt8numpunctIcE12do_falsenameEv) +STUB("ozMAr28BwSY", _ZSt14_Xout_of_rangePKc) +STUB("ozTHRE6r2iI", _ZN3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error7setCodeERKi) +STUB("ozcZFDGbLAs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEaSERS7_) STUB("ozddwj2QrKI", sceLoginMgrServerNotifySafetyNoticeShown) +STUB("ozgt6fyxDWU", _ZN7WebCore11JSDOMWindow12toStringNameEPKN3JSC8JSObjectEPNS1_9ExecStateE) +STUB("ozhniOH0KGs", _ZNK7WebCore8Document8hasFocusEv) +STUB("ozrlpGxYlj4", mono_aot_Sce_Vsh_ShareGuideScenemethod_addresses) +STUB("oztWB+ZCKvI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE6resizeEj) +STUB( + "oztet2zNKgo", + _ZThn16_N9Inspector21InspectorRuntimeAgent5parseERN3WTF6StringERKS2_PNS_8Protocol7Runtime15SyntaxErrorTypeERSt8optionalIS2_ERNS1_6RefPtrINS7_10ErrorRangeENS1_13DumbPtrTraitsISE_EEEE) +STUB("ozwClWsWIJg", _ZN12Mp4Retriever8readFileEjPv) +STUB("ozwJY4AO-V0", _ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody12getSubmitterEv) +STUB( + "p+1CI2F796U", + _ZN3sce2Np9CppWebApi14SessionManager2V150PutPlayerSessionsSessionIdLeaderRequestBodyFactory6createEPNS1_6Common10LibContextERKmPKcPNS5_12IntrusivePtrINS3_43PutPlayerSessionsSessionIdLeaderRequestBodyEEE) STUB("p+2EnxmaAMM", sceNpMatching2RegisterRoomEventCallback) +STUB( + "p+FQNNZE3n0", + _ZN3sce2Np9CppWebApi14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBody16unsetCustomData1Ev) STUB("p+GcLqwpL9M", sceNpUniversalDataSystemCreateEvent) +STUB("p+K1iHfbEbY", _ZN9Inspector33LayerTreeBackendDispatcherHandlerC2ERKS0_) +STUB("p+KUQAyiP8s", mono_aot_Sce_PlayStation_Coreunbox_trampoline_addresses) +STUB("p+L8ejjzBko", GCC_except_table173) +STUB( + "p+Q5ib1ogtg", + _ZN3sce7Toolkit2NP2V27Session32displayReceivedInvitationsDialogERKNS3_7Request32DisplayReceivedInvitationsDialogEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("p+ThpykVcyk", _ZNK7WebCore8Document11completeURLERKN3WTF6StringE) +STUB( + "p+ZOhCTomF8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB("p+aCcZDAc6w", _ZN3JSC7JSProxy10putByIndexEPNS_6JSCellEPNS_9ExecStateEjNS_7JSValueEb) +STUB("p+bd65J177I", _ZN3sce2np9WorkQueueC2Ev) +STUB( + "p+ppC4FMtII", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEC2Ev) +STUB("p+rEj0KLb3A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE5beginEv) +STUB( + "p+w4vUIp8zA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V137MatchCompletionRateQuitMetricsFactory6createEPNS1_6Common10LibContextEiPNS5_12IntrusivePtrINS3_30MatchCompletionRateQuitMetricsEEE) STUB("p+zLIOg27zU", sceFiberGetSelf) +STUB("p+zbVfbuTeI", izrule_getDSTSavings_67) +STUB("p--TkNVsXjA", posix_spawn_file_actions_init) +STUB("p-18HFJsw1Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEC1ERS7_) +STUB( + "p-5+aWQeE2s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE6resizeEj) STUB("p-79ZEd8qW0", sceSystemServiceUsbStorageGetDeviceList) +STUB("p-7NOjeWS7g", _ZN3WTF10AtomString6numberEj) +STUB( + "p-9opUXvj84", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEdeEv) +STUB( + "p-AtCVOgiY8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEE7get_refEv) +STUB("p-LFZYbDPDU", FT_Get_CID_Is_Internally_CID_Keyed) STUB("p-NcyN-4t34", sceDebugGetWorkerThreadListOfUltRuntime) +STUB("p-SW25yE-Q8", _ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2Em) +STUB("p-TSC3DF860", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEED1Ev) +STUB("p-ULxRug-2M", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIiED1Ev) +STUB("p-UYdfO11nY", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110PlayerTypeEEneERKS7_) +STUB( + "p-ZSVn8l+Eg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEppEi) +STUB( + "p-aZCxxW1f8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEEdeEv) +STUB( + "p-bzozznaMo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEneERKS9_) +STUB( + "p-cJD5RtKB8", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser17getplatformFilterEv) +STUB("p-jMGxCpEF4", WKPageVerticalRubberBandingIsEnabled) +STUB( + "p-jRyeRiFpk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEmmEi) +STUB( + "p-jb4iTRt-4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE21intrusive_ptr_sub_refEPS9_) +STUB("p-mK12SMrus", _ZN9Inspector8Protocol3CSS11CSSProperty6StatusE) STUB("p-o74CnoNzY", sceNpGetNpId) +STUB( + "p-q9tb7XQR8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "p-v4Wtbd4vY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEC2Ev) +STUB("p-vxvNBJKSE", _ZN3sce7Toolkit2NP2V23TUS19FriendsDataStatusesC2Ev) +STUB("p-yVOd9mWjs", _ZN3sce7Toolkit2NP2V27Session7Request5LeaveC2Ev) +STUB( + "p00ukrSYLDg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEED2Ev) +STUB( + "p01JiyG-30Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEEC2ERSA_) +STUB("p05cNsRX80g", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_28ActivityFeedSharedVideoStoryEEC1ERKS4_) +STUB("p07Yvdjjoo4", _ZTSPa) +STUB("p09anR3krYY", mono_reflection_get_custom_attrs_by_type) +STUB("p0Bz7Spfm3I", SHA256_Init) +STUB( + "p0Dkt6J4Jpg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEEcvbEv) +STUB("p0DyHXv5zwQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEC1Ev) +STUB("p0IeMemvZKo", _ZNK3sce3Xml3Dom8Document9getParentENS1_6NodeIdE) +STUB("p0PRJbphhqk", uenum_count) STUB("p0TfCdPEcsk", _sceNpManagerMallocImpl) +STUB( + "p0Wenh2LaF4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("p0Zf2imJtOg", uprv_tzname_clear_cache) STUB("p0avT2ggev0", sceFontGraphicsSetupShapeFill) +STUB( + "p0bBtOdfZ1Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE5beginEv) +STUB( + "p0bNZqp8wtQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) STUB("p0dBN8P6oQk", sceNpManagerIntGetWebAuthorizationCode) +STUB( + "p0dkw+-B1Dc", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectator30unsetxPsnAcceptPlatformNamePs5Ev) +STUB("p0eCRmPrfns", WKPreferencesSetStorageAccessAPIEnabled) +STUB("p0ec8BT41x0", vzone_hasSameRules_67) +STUB("p0g0m9ReWGo", ucal_getLimit_67) +STUB("p0gmbQAKkSg", + _ZN7WebCore25updateRedirectChainStatusERNS_24RedirectChainCacheStatusERKNS_16ResourceResponseE) +STUB( + "p0gvedm33cU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEC1EPS6_PNS2_10LibContextE) +STUB("p0hE-jNTORc", mono_aot_System_Datajit_code_start) +STUB("p0iin+5pyxc", _ZN7WebCore9DOMWindowD1Ev) +STUB( + "p0nhTJs3VTg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEEC2Ev) +STUB( + "p0s9CGWGMzA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEE7add_refEv) +STUB( + "p0yNW4EPnrI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEC2EPNS2_10LibContextE) +STUB( + "p1-tYf5Dw14", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEC1Ev) +STUB("p12OhhUCGEE", CERT_ComputeBufferHash) +STUB("p19NF3jf+CA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE7popBackEv) +STUB("p1EbAmze7CA", _ZN3sce2Np9CppWebApi14SessionManager2V128PostGameSessionsResponseBodyD1Ev) +STUB("p1GngwuQoJU", JVM_FindLoadedClass) +STUB("p1MwPMovrqQ", _ZN7WebCore11DisplayList9TranslateD2Ev) +STUB( + "p1SPtutBLtQ", + _ZN3sce2Np9CppWebApi7Matches2V123RequestMatchTeamFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_16RequestMatchTeamEEE) +STUB("p1VW68C+-T0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEED1Ev) +STUB("p1WMhxL4Wds", + _ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE7_GetcatEPPKNSt6locale5facetEPKS5_) +STUB("p1WOMELu-4A", _ZN3WTF20equalIgnoringNullityEPKDsmPNS_10StringImplE) +STUB("p1Y7ioAP4R4", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19Bandwidth8fromJsonERKNS_4Json5ValueE) +STUB( + "p1ZXwCbgEt0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE5beginEv) STUB("p1cutHGo-JE", sceNpIpcStartReceiveEvent) +STUB( + "p1i2CaemsJQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEEC2ERKSA_) +STUB( + "p1p28WBntQ8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEED2Ev) +STUB( + "p1qcDRRCr0Q", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsers13isInitializedEv) STUB("p1vvpKGRXe4", _sceNpHeapFree) +STUB("p1zwikCkFho", RemotePlayNotifyCanWakeup) +STUB("p1zyLn2efJY", YGNodeInsertChild) +STUB("p2-LNHxXjZ0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE5beginEv) +STUB( + "p20k4TNkkis", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEED2Ev) +STUB("p24NzuET1lg", Java_sun_awt_GnmUtils_deleteEqueue) +STUB( + "p27Hbx5l5pM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "p27yy6GkJs4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEppEv) +STUB("p2GJO7T3y0U", + _ZN3JSC15ordinarySetSlowEPNS_14JSGlobalObjectEPNS_8JSObjectENS_12PropertyNameENS_7JSValueES5_b) +STUB( + "p2JCgtORwGE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "p2MnDlkREK8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) STUB("p2NKAA3BS6k", sceUserServiceSetPbtcSaturdayHoursStart) +STUB("p2TGctXDx+s", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEEC1EPNS2_10LibContextE) +STUB("p2Z45bTvEFQ", mono_metadata_events_from_typedef) +STUB("p2ZoF0ZliBI", ubidi_getVisualMap_67) +STUB( + "p2bbBiO9daY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEptEv) +STUB( + "p2dD4xgWN-Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEEaSERSA_) +STUB( + "p2dIQ2uomo4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE7reserveEi) +STUB("p2l6cwSqkQI", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getRate) +STUB( + "p2p3mURFjvk", + _ZN3sce2Np9CppWebApi13InGameCatalog2V514ProductFactory6createEPNS1_6Common10LibContextEPKcS9_S9_PNS5_12IntrusivePtrINS3_7ProductEEE) STUB("p2suRCR4KqE", sceKernelRandomizedPath) +STUB("p2tkXXp2Xro", mono_aot_Sce_Vsh_Friendjit_code_end) +STUB( + "p2uPjeeVeVE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE5abortEv) STUB("p2viSd4-PTk", sceNpSnsDailymotionDialogGetStatus) STUB("p2vxsE2U3RQ", sceNetGetSystemTime) +STUB("p2xgfB-30g8", get_self_auth_info) +STUB("p3+eddRqX24", WKPreferencesSetCoverAreaMultiplier) +STUB("p31IAOfCfVk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEEdeEv) +STUB("p31ySCz+He0", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_19ProductInfoDetailedEEC1Ev) +STUB("p32NBlh5GQc", rgctx_fetch_trampoline_mrgctx_75) +STUB("p367GVhNpE4", _ZN7WebCore11FileMonitorD1Ev) +STUB("p38FKNLfCik", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession16getSwapSupportedEv) +STUB("p3BVovMPEE4", _Unwind_GetRegionStart) +STUB( + "p3Ec2mUWPco", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("p3EiAZKNa-s", _ZN3JSC10JSFunction16getConstructDataEPNS_6JSCellE) +STUB("p3H5c3z5Jnc", _ZN3NTF15ThreadConditionC2Ev) +STUB("p3I+fGoIFCI", _ZN12video_parser18cMp4FFLHndlManager14getFF4MtdtHndlEj) +STUB("p3M3cOSVP34", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE4sizeEv) +STUB("p3Ofu90jHZc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEE5resetEPS6_) +STUB("p3P95HmskyU", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Error12messageIsSetEv) +STUB("p3S2DrPZocg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116JoinableUserTypeEEppEi) +STUB("p3Sq7l2nt6g", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEEC2ERKS6_) +STUB("p3ZXuq+kTQA", _ZNK3sce16CommonDialogUtil6Server14getServerStateEv) +STUB("p3d8TZiX4Zg", umutablecptrie_close) +STUB("p3grARF0IJY", _ZN3WTF6StringC1EPKc) +STUB("p3ikkh2tbg8", ustrcase_mapWithOverlap_67) +STUB( + "p3j95bppH44", + _ZN3sce7Toolkit2NP2V27Session6searchERKNS3_7Request6SearchEPNS2_4Core8ResponseINS3_8SessionsEEE) +STUB( + "p3jbDMREZ8A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEEaSERSA_) +STUB("p3lO3pDgbZc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEE7get_refEv) +STUB("p3nY5yoTFJA", _ZN3sce2Np9CppWebApi11Matchmaking2V110UserTicket13unsetPlatformEv) +STUB( + "p3oJdYaJsqY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEE7get_refEv) +STUB("p3uXvmETGok", WKBundleNodeHandleGetHTMLInputElementLastChangeWasUserEdit) +STUB( + "p41Wsx-xhyE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEaSERKS9_) +STUB("p41XEqKt7Pk", _ZN7WebCore11DisplayList10SetLineCapD0Ev) +STUB("p46F89e+PsY", _ZN7WebCore27CSSComputedStyleDeclaration3refEv) +STUB("p480YiSI5ME", _ZN7WebCore13MediaStrategyD1Ev) +STUB("p48S5v2A4yA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEEC1Ev) +STUB( + "p4JWYLv4noo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEdeEv) +STUB( + "p4OeWfFn-oo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEC2Ev) +STUB( + "p4VtgF4oy5M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEC1ERS7_) +STUB( + "p4WnlOtOHs8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEEcvbEv) STUB("p4dYJFInGjQ", sceNpTrophy2SystemGetTrophyTitleDetails) +STUB("p4fepPQZPyY", ucal_getDefaultTimeZone_67) +STUB("p4gPgRz1nzs", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11ProductInfoEEC1ERKS4_) +STUB( + "p4hcqKyBk1M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "p4mg3IMZim4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("p4nXf3KE6F0", _ZN3sce7Toolkit2NP2V29Messaging25GameDataMessageAttachmentC1ERKS4_) +STUB( + "p4nbV3FC6ug", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEED2Ev) +STUB( + "p4p+VbOUUUA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEplEm) +STUB( + "p4pCNht7qQw", + _ZN3sce2Np9CppWebApi7Matches2V140RequestTemporaryCompetitiveResultFactory7destroyEPNS3_33RequestTemporaryCompetitiveResultE) +STUB("p4r+rf7CLpw", _ZNK3JSC8JSObject11toPrimitiveEPNS_9ExecStateENS_22PreferredPrimitiveTypeE) +STUB("p4rQDN6X2Pw", WKPreferencesGetSuppressesIncrementalRendering) +STUB("p4vYrlsVpDE", __umodsi3) +STUB( + "p4wk26jmdgs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE7popBackEv) +STUB("p52lBBeQdJM", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10setString1EPKc) +STUB("p5ABYcyCMQ4", mono_aot_Sce_Vsh_RequestShareStorageWrapperplt) STUB("p5EcQeEeJAE", _sceKernelRtldSetApplicationHeapAPI) +STUB("p5GNJaXO2yE", FT_Raccess_Get_HeaderInfo) +STUB("p5H4D5NQ44w", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V16StatusEEneERKS7_) +STUB("p5LAAfDNDSc", _ZN7WebCore9HTMLNames17aria_relevantAttrE) +STUB( + "p5MJfs0tn4M", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser15setmemberFilterEPKc) +STUB( + "p5OrpEgtoeE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEEptEv) +STUB( + "p5PUHOpDUTk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE8capacityEv) +STUB( + "p5Y86SMa0bQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEEC1EPS6_PNS2_10LibContextE) +STUB("p5Zb6+Jqhlo", _ZN4Manx13WorkQueueImpl4quitEv) STUB("p5ZkSMRR7AU", sceNpJsonParseEx) +STUB( + "p5b8pUr4nu4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE8capacityEv) +STUB("p5bAdQWOKKM", _ZTVN15AbstractStorage11LocalFolderE) STUB("p5bM5PPufFY", sceSslSend) +STUB("p5dgfDf1KR8", rgctx_fetch_trampoline_mrgctx_118_p) +STUB("p5hRe1k4Wlg", _ZN3sce2np13JsonDocParserD0Ev) +STUB("p5nOMeQrjY4", _ZNK7WebCore20TransformationMatrix7mapRectERKNS_7IntRectE) +STUB("p5u9FgEEzVg", _ZN7WebCore8Document23setLinkColorForBindingsERKN3WTF6StringE) +STUB("p5vjxmtOkoA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEE7add_refEv) +STUB("p5zH+kefguU", SSL_CTX_use_certificate_ASN1) +STUB("p6-wVsp9tSw", Java_com_sony_gemstack_core_CoreAppState_n_1getState) +STUB("p63Xpg-Fu-k", _ZN3JSC12StringObject21deletePropertyByIndexEPNS_6JSCellEPNS_9ExecStateEj) +STUB( + "p64NoWGrWUI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEC1EPS6_PNS2_10LibContextE) +STUB("p65DgqcLlx8", + _ZN3JSC25JSSegmentedVariableObject13visitChildrenEPNS_6JSCellERNS_11SlotVisitorE) STUB("p6A1adyQi3E", sceSaveDataCheckSaveDataVersion) +STUB( + "p6Ct8O5WvdM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("p6DbM0OAHNo", iswblank) +STUB("p6HgoDW6jvI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEE7add_refEv) +STUB("p6LrHjIQMdk", _ZNSt8_LocinfoD1Ev) +STUB("p6MqjAO8c24", _ZN7WebCore28convertToIntegerEnforceRangeIiEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB( + "p6OHUO0LQPM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEC2Ev) +STUB("p6P4lMV7QVI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12EventsClient6EventsEEC1Ev) +STUB( + "p6PIa3GAB+A", + _ZN3sce2Np9CppWebApi14SessionManager2V159PostGameSessionsSessionIdMemberSpectatorsRequestBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_52PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEE) +STUB("p6PQ5iZof4A", __cxx_global_var_init .2) +STUB("p6QVJzwCl4A", _ZN7WebCore20SharedBufferDataViewD1Ev) +STUB( + "p6RVoVukh50", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEED1Ev) +STUB("p6RbBPYq4eQ", _ZN9Inspector14FrontendRouter18disconnectFrontendEPNS_15FrontendChannelE) +STUB("p6SYKSPrxy0", WKBundleSetAsynchronousSpellCheckingEnabled) +STUB("p6TDE8T9VoY", _ZN8meta_gen13TiffRetriever17ProcessTiffHeaderEv) +STUB( + "p6Ue0H5Q6Es", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEppEv) STUB("p6Wz7W1Vu9k", sceSdecDestroySw) +STUB( + "p6e08++5YVs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEppEv) +STUB("p6fLHIan5xw", _ZN8meta_gen11MsvPromoter19retrieveLicenseInfoEv) STUB("p6lrRW8-MLY", sceLibcMspaceReallocalign) STUB("p6n3Npi3YY4", sceCameraIsAttached) +STUB("p6qdkIWB7DM", _ZN3sce7Toolkit2NP2V210Tournament12EventDetailsC1Ev) +STUB("p6uAfElXMx0", _ZN7WebCore9HTMLNames14ontouchendAttrE) +STUB( + "p70VlguNes8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEED2Ev) +STUB("p73mqupCtos", _ZN15AbstractStorage10TwitterAPIC1Ev) +STUB( + "p77ahP21v+k", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V131NatConnectivityToMetricsFactory7destroyEPNS3_24NatConnectivityToMetricsE) STUB("p79B7qNeKWk", sceVnaGetKeyPhraseInfo) +STUB("p79Xqsxuutc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEC1EPS8_) +STUB( + "p7A-y-qXeRk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "p7A7cBK6-qM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE3endEv) +STUB("p7CGEj3VhbQ", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate11globalIsSetEv) +STUB("p7DQObtV1sg", + _ZN3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponseC1EPNS1_6Common10LibContextE) +STUB("p7DQuwFH3tI", JVM_ReleaseUTF) +STUB("p7EEFGWQWeQ", _Z16createIpcChanneliPKciimPi) STUB("p7FV-mU6EM0", sceVideoOutGetDeviceInfoExOts_) +STUB( + "p7PKWOWWlAw", + _ZN7WebCore29cookieRequestHeaderFieldValueERKNS_21NetworkStorageSessionERKNS_3URLERKNS_12SameSiteInfoES5_St8optionalImESA_NS_20IncludeSecureCookiesE) +STUB( + "p7TH5-RlDcg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEEC2ERSA_) +STUB("p7TUlUh8aR8", _ZN3sce2Np9CppWebApi7Matches2V133RequestTemporaryCompetitiveResultD1Ev) +STUB( + "p7TxN1-1Thg", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody32comparedLastUpdatedDateTimeIsSetEv) +STUB("p7ZYQQM5Rq0", _ZN7WebCore18JSHTMLMediaElement14finishCreationERN3JSC2VME) +STUB("p7ieGjluqCU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEC1Ev) +STUB( + "p7luBxsty20", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEaSERS7_) +STUB( + "p7p3VjCQhL0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEC2Ev) +STUB("p8-44cVeO84", _ZNSt5ctypeIcED0Ev) +STUB( + "p80fJ5XgjPE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEEcvbEv) +STUB("p81jnGe7Z6s", _ZN7WebCore8FormData21resolveBlobReferencesEPNS_16BlobRegistryImplE) +STUB( + "p850xC6E2oM", + _ZN9Inspector24BrowserBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "p8795uafcyU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEptEv) +STUB("p8FxjibSmV0", __asan_report_exp_store_n) +STUB( + "p8GNjz1fA5E", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEeqERKS9_) +STUB("p8H37RdDza0", _ZNK7WebCore13HitTestResult10targetNodeEv) +STUB("p8J-f9vV8so", _ZN3JSC26setCannotUseOSRExitFuzzingEPNS_14JSGlobalObjectEPNS_9CallFrameE) +STUB("p8MKXcJl+DQ", rgctx_fetch_trampoline_mrgctx_18_p) STUB("p8VOOvRtBwI", sceSpNetRecv) +STUB("p8WqfV5JBM4", _ZN3WTF9MediaTimenaEmPv) +STUB("p8XYeJTk44w", + _ZN3JSC7JSProxy25getOwnPropertySlotByIndexEPNS_8JSObjectEPNS_9ExecStateEjRNS_12PropertySlotE) STUB("p8Z1uz9Ocjw", sceUserServiceSetGlsStreamingMode) +STUB( + "p8Zh-cl0d2w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE5clearEv) +STUB( + "p8a8BjfY+dw", + _ZN3sce2Np9CppWebApi14IdentityMapper2V340PsnWebError_error_missingElementsFactory7destroyEPNS3_33PsnWebError_error_missingElementsE) +STUB( + "p8arJTtxl10", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("p8dGWrY3d1s", _ZNK7WebCore6Widget9frameRectEv) +STUB( + "p8dcV5Xdw88", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEE11get_deleterEv) +STUB( + "p8gjY-kFNhc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEdeEv) +STUB( + "p8hYNQOs+Hw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEEC1ERKSA_) +STUB("p8hjICuQP74", glIsTexture) +STUB("p8lf45Q-uTg", _ZN9Inspector22InspectorDebuggerAgent16removeBreakpointERN3WTF6StringERKS2_) +STUB( + "p8mIuQgaKF4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEptEv) +STUB("p8nxupRtlEg", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeINS1_11TusVariableEPvEEC2ERKS7_) +STUB("p8qZEIwpBmM", _ZN15AbstractStorage13TwitterFolder8NextItemEPSt10shared_ptrINS_4ItemEE) +STUB("p8ttLHDKSBg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEEaSERS6_) +STUB( + "p8ttkaEY6J0", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification16NewInGameMessageEE19setCustomReturnCodeEi) +STUB( + "p8yKdu8RqFo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEC1Ev) +STUB("p902te3L1dk", _ZN7WebCore24CoordinatedGraphicsLayer15setBoundsOriginERKNS_10FloatPointE) +STUB("p90G4PB-rPc", FT_Atan2) +STUB("p92YB4L6ys8", _ZN3sce7Toolkit2NP9Utilities6FutureI16SceNpTusVariableED2Ev) +STUB( + "p96J3msVZ1U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("p981eM75Hz0", _ZN3sce7Toolkit2NP2V211UserProfile10NpProfilesC1Ev) +STUB("p98bClfIFGc", _ZN7WebCore9FrameView19willStartLiveResizeEv) +STUB( + "p9EIrOs5b5I", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setBoolean5ERKb) +STUB("p9EVUy+kCYI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE5beginEv) +STUB( + "p9KnaZrCv78", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEEC1Ev) +STUB("p9Myoc5VL90", + _ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId8getrangeEv) +STUB("p9Wh6mJoIyU", _ZN7WebCore12GridPosition19setExplicitPositionEiRKN3WTF6StringE) STUB("p9bBXbQwjqY", sceUpsrvSwitchSystemExBank) STUB("p9lSvZujLuo", sceHmdInternalGetTv4kCapability) +STUB("p9lalSG5Ois", _ZN7WebCore11HistoryItemC2Ev) +STUB( + "p9m7vqd65UE", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetrics16setNumberOfTimesERKi) +STUB( + "p9t7+fbT3S8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEEC1EPS9_PNS2_10LibContextE) STUB("p9tI+yTvx68", sceAgcDcbWriteDataGetSize) +STUB( + "p9uOi0tfH3E", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126BandwidthPropertiesFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_19BandwidthPropertiesEEE) +STUB("p9v3DtIRZEo", _ZN7WebCore9HTMLNames14mediagroupAttrE) +STUB( + "p9xiDJGGGWU", + _ZN3JSC8Bindings13RuntimeObject18getOwnPropertySlotEPNS_8JSObjectEPNS_9ExecStateENS_12PropertyNameERNS_12PropertySlotE) +STUB("pA6J1tTkLgE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEC2Ev) STUB("pA8xxaySl7A", sceVideoOutSetGlobalBlendSpace) +STUB( + "pA9B+g8mIxY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("pA9N3VIgEZ4", wcsncat) +STUB("pAAjQL5Ft2M", _ZN3sce7Toolkit2NP2V28Commerce8CategoryC2ERKS4_) +STUB("pABweE7VEhQ", uregex_lookingAt64_67) +STUB("pAEazR4ifq8", WKFrameGetPage) +STUB( + "pAHDzvr0lHM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEC2ERKS7_) +STUB("pAHZ3XUhMpY", u_strlen_67) +STUB("pAI9K0j3zuc", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi20ParameterToJoinMatchC1Ev) +STUB("pAM03YY8KHk", jpeg_write_m_header) +STUB("pAPHOSSoPcU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia10BroadcastsEEC2Ev) +STUB("pAQWOmWnARU", Java_java_lang_Class_getPrimitiveClass) +STUB("pAU4HTJYMp4", g_unichar_tolower) +STUB("pAUHU0koAWs", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData9getslotIdEv) +STUB( + "pAXYG8IZPeE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEC1ERKS7_) STUB("pAbZ-KnYusQ", scePerfTraceIoControllerGetInfo) STUB("pAcXoWY-JV8", sceUserServiceGetGlsSortOrder) +STUB( + "pAfvROuK3xg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEdeEv) +STUB( + "pAlrPOaKC2E", + _ZN3sce2Np9CppWebApi14SessionManager2V124GameSessionMemberForRead10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_17GameSessionPlayerEEEEE) +STUB( + "pAoXgurdj04", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE8copyFromERKS9_) +STUB("pAplz5VKalM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEED2Ev) +STUB( + "pAqJSHeTkxc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEixEm) +STUB( + "pAqPiyzSt3k", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_13WhoLikedStoryENS1_15AppSTLAllocatorIS5_EEEED2Ev) +STUB("pAsVC6PkJik", _ZTVN9Inspector27DOMBackendDispatcherHandlerE) +STUB("pAvqneDXt+U", mono_aot_I18N_Rareunbox_trampoline_addresses) +STUB( + "pAw3pEnX+cg", + _ZN3sce3pss4core7imaging4impl8ImageJpg9SaveAsJpgEPKcPKvjRKNS3_11ImageExtentENS3_9ImageModeEjbPNS1_6memory13HeapAllocatorEi) +STUB("pAwe-e5yT+w", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE6resizeEj) STUB("pAyBQ1E8ooA", sceAppCheckerExecute) +STUB( + "pB+UVz83POQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB( + "pB-vxa3J3uY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEC1EPKS8_) STUB("pB-yGZ2nQ9o", _sceKernelSetThreadAtexitCount) +STUB("pB7q2sBApu0", _ZN7WebCore11JSImageDataD1Ev) +STUB( + "pB7sHQ95Dms", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEaSERKS7_) +STUB("pBDcmtgduX4", + _ZN3sce2Np9CppWebApi7Matches2V123ResponsePlayerStatistic8fromJsonERKNS_4Json5ValueE) +STUB("pBFu7-y2zYc", uspoof_close_67) +STUB( + "pBGj6RizKfU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE3endEv) +STUB("pBK66yYP97Y", _ZN3sce7Toolkit2NP2V28Commerce7SkuInfo19PRICE_NOT_AVAILABLEE) +STUB("pBKLKuvZ8dA", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetAccountId2OnlineIdC1Ev) +STUB( + "pBOSdF--u0E", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V136MatchCompletionRatePropertiesFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_29MatchCompletionRatePropertiesEEE) +STUB( + "pBQHk87lKlQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEEC1ERSA_) +STUB( + "pBSflV5BOTU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEC1EPS8_) +STUB("pBSgMrf0tnM", + _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody8setGroupERKNS3_5GroupE) +STUB("pBZaaPXoap8", _ZTVN7WebCore11DisplayList18FillCompositedRectE) +STUB("pBcDL54gWdI", operands) +STUB("pBcDo3rvuyQ", DbRecoveryGetRecoverDbStatus) +STUB("pBcZJ+Rrm8g", _ZN4Manx5Mutex7tryLockEv) +STUB("pBeP05gOp44", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEE8capacityEv) +STUB( + "pBiaRxV9fLk", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) STUB("pBiaquuxxw8", sceUlpMgrReqOpen) +STUB("pBjyGt87RVY", mono_aot_Sce_Vsh_Orbis_ContentManagerjit_got) +STUB( + "pBm3jUgz03k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB("pBmdJlTPcw0", _ZN3sce2Np9CppWebApi6Common8IteratorIiEaSERKS4_) +STUB( + "pBnxFgaqqtU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE7reserveEi) +STUB("pBoyANdtj+Y", mono_bitset_find_last) +STUB("pBqh-Uh-gns", FT_Stroker_EndSubPath) +STUB( + "pBuoqjThPJ8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("pBwtarKd7eg", RSA_verifySignature) +STUB("pBxafllkvt0", __cxa_bad_cast) +STUB("pBxsdricISw", _ZN3sce7Toolkit2NP2V210Tournament12EventDetailsC1ERKS4_) +STUB("pByyZM7AQqs", _ZN7WebCore9HTMLNames21onaccessiblefocusAttrE) +STUB("pBzKTiHMFzA", mono_runtime_quit) +STUB( + "pC+ZWqAQQl4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEC1EPS8_) +STUB("pC16otJKCBc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEE7get_refEv) +STUB("pC2grp9LzN4", _ZN3WTF16AtomicStringImpl3addEPKh) +STUB("pC5zNv0lecs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEC1Ev) +STUB("pCDG6X3+8sY", _ZNK7WebCore9FrameView18visualViewportRectEv) +STUB("pCEC6vbRldc", _ZN3sce3Xml4AttrD2Ev) +STUB("pCF8Ohwre44", _ZN3sce4Json6String4nposE) +STUB("pCFoofQJtME", _ZL7_delete) +STUB("pCIB7QX5e1g", _ZN3sce2np15CancelableScope3EndEiPKciS3_) +STUB("pCJUJOonjAM", WKPageSetPageZoomFactor) +STUB("pCK4T9Z7IT4", _ZNK15AbstractStorage18DailymotionContent7GetStatEPNS_4StatE) +STUB("pCOWFyed-4o", mono_aot_Sce_Vsh_DbPreparationWrapperplt) +STUB("pCPHOY0VhUY", _ZN3WTF20ParallelHelperClientD1Ev) +STUB("pCQF5n486S4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed14PlayedWithFeedEED2Ev) +STUB("pCWh67X1PHU", _Mbcurmax) STUB("pCXxVMdoF2w", sceDeci4hDrfpRename_fuse_fullpath) +STUB("pCg5jfEB6lI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE3endEv) +STUB("pCh4kIKMRhY", u_getPropertyName) +STUB( + "pChAYPYSxWA", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchStatus10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_24UpdateMatchStatusRequestEEE) +STUB("pCjXnlN6R4c", _ZNK7WebCore20PasteboardWriterData7isEmptyEv) +STUB( + "pClWcZ+qHaY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEmmEi) +STUB( + "pCmH0ZVZnUo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "pCmittWw84M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEC1EPKS8_) +STUB( + "pCx3V5+yLVg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEdeEv) +STUB("pCzJRpCkA0o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEE11release_refEv) +STUB( + "pD5RuCWaJ68", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEdeEv) +STUB("pDBDcY6uLSA", vfprintf) +STUB("pDCLd02jZXY", mono_aot_System_Net_Httpplt_end) +STUB( + "pDEAOETMFqI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEE5resetEPS6_) +STUB( + "pDFP2BDr4Ek", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEE11release_refEv) +STUB("pDFe-IgbTPg", _ZSt6_ThrowRKSt9exception) +STUB("pDIETOJnVkA", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE3endEv) +STUB( + "pDO6Rd9JJvI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEmmEv) +STUB( + "pDQfyFnqZtw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEE11get_deleterEv) +STUB("pDSDI1d9bYk", ulocdata_getDelimiter_67) +STUB("pDUQVO32lZY", + _ZN3sce2Np9CppWebApi11UserProfile2V111PresenceApi28ParameterToGetBasicPresencesD1Ev) +STUB("pDZja2i2nWI", _ZN7WebCore10FileSystem10deleteFileERKN3WTF6StringE) +STUB("pDcP19rE8is", + _ZN7WebCore19JSHTMLSelectElement14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB("pDeT6Pr+XhU", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getAllAngles) +STUB("pDgm9B6t20U", mono_btls_ssl_handshake) STUB("pDmme7Bgm6E", sceAudioOut2ContextQueryMemory) +STUB("pDmpH6oM4dM", _ZN7WebCore18JSHTMLMediaElement15subspaceForImplERN3JSC2VME) +STUB( + "pDnyECvjXNI", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13boolean6IsSetEv) STUB("pDom5-078DA", sceHttp2DeleteTemplate) +STUB( + "pDp-mS36cgA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEppEv) +STUB( + "pDq9d3fUeXI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEmmEi) +STUB( + "pDrV25H24JE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEC2EPS8_) +STUB("pDtTdJ2sIz0", _ZNKSs5_XlenEv) +STUB("pDuPEf3m4fI", sem_init) +STUB( + "pDzlvDD-m34", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEED2Ev) +STUB( + "pDzn9wU4pYU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("pE+UbZdeERI", + _ZSt9use_facetISt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale) +STUB( + "pE22PUU5TZQ", + _ZNK3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfiles16hasincludeFieldsEv) +STUB("pE4L6eMygg8", WKImageGetTypeID) +STUB("pE4Ot3CffW0", _Mtxlock) STUB("pE5yhroy9m0", sceNpTrophyIntCheckNetSyncTitles) +STUB("pE7esinD1MQ", _ZNK7WebCore28InspectorFrontendClientLocal15inspectionLevelEv) +STUB("pEOtEX2HbIw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEcvbEv) +STUB("pERkMh6RMWc", _ZN3sce7Toolkit2NP2V29Messaging12Notification18NewGameDataMessageC1Ev) +STUB("pETUJ-y0iKI", _ZN3sce2Np9CppWebApi14SessionManager2V15Error9setReasonEPKc) +STUB( + "pEVyTKV222E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEE7add_refEv) +STUB("pEWDYfJwYlc", _ZNK7WebCore15VisiblePosition4leftEbPb) +STUB("pEWwVSoF7p8", _ZN3sce7Toolkit2NP2V29Messaging24GameDataMessageThumbnailD2Ev) +STUB("pEa7YsB+1Gk", utext_current32_67) +STUB( + "pEd0hY5ANXM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEC1EPS8_) +STUB("pEj0Hr9hB7o", mono_aot_Sce_Vsh_Sticker_StickerLibAccessorunbox_trampoline_addresses) +STUB( + "pEnV0VcHNLM", + _ZN3sce7Toolkit2NP9Utilities6FutureISt4listINS1_11TusVariableENS1_15AppSTLAllocatorIS5_EEEED2Ev) +STUB("pEwvXJfzc6w", whexnan) +STUB( + "pF0d3M1kbPY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE21intrusive_ptr_sub_refEPS9_) +STUB("pF0xwB5yYHg", mono_declsec_get_class_action) STUB("pF1HQjbmQJ0", sceGnmDrawInitToDefaultContextStateInternalCommand) STUB("pF3Vy1iZ5bs", sceNetConfigEtherPostPlugInOutEvent) +STUB("pF6MaJY4tLM", _ZN3WTF4SHA19hexDigestERKSt5arrayIhLm20EE) +STUB("pF75dzcdyDs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEaSERS7_) +STUB( + "pFDegp2dfRg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEC1EPS8_) +STUB("pFEBy8mr++k", _ZN7WebCore11ContentTypeC2ERKN3WTF6StringE) +STUB("pFEot3VlFEA", _ZN3sce2np7HttpUriC2EP14SceNpAllocator) +STUB( + "pFIRSizCKPg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEixEm) +STUB("pFIaDCkohN8", _ZN7WebCore15DatabaseManager9setClientEPNS_21DatabaseManagerClientE) STUB("pFLArOT53+w", sceAgcDcbSetShRegisterDirect) +STUB( + "pFLioqgvA5c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "pFM8WL8yxDg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("pFPrjIeAnbw", ubrk_next_67) STUB("pFQ9UHpO52s", sceAmprCommandBufferNopWithData) +STUB("pFS2eHSDMLU", _ZN3WTF6String6insertERKS0_j) STUB("pFTi-yOrVeQ", scePadIsValidHandle) +STUB("pFhX3uoMzFg", _ZN3JSC7Symbols33regExpProtoFlagsGetterPrivateNameE) STUB("pFnXDxo3aog", sceHttpCookieImport) +STUB( + "pFqSNnzepdI", + _ZN9Inspector22HeapFrontendDispatcher16garbageCollectedEN3WTF6RefPtrINS_8Protocol4Heap17GarbageCollectionENS1_13DumbPtrTraitsIS5_EEEE) +STUB("pFwAOaAz5Xc", _ZN3sce7Toolkit2NP23ModifySessionAttributesC1Ev) STUB("pFzhpCMlJXQ", sceNpMatching2AbortContextStart) +STUB( + "pG+ff4ziVVg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEEaSERSA_) +STUB("pG5v2tRogDk", mono_btls_bio_print_errors) STUB("pG5ytCcsbF8", sceClPthreadCondInit) +STUB("pG70GT5yRo4", __sys_socketex) +STUB("pGB6fgx51YA", _ZN3sce7Toolkit2NP14RankingRequestC2Ev) +STUB("pGERM4K5W1Y", WKContextConfigurationDiskCacheSizeOverride) STUB("pGFdISTgS6k", sceNpTrophy2SystemCheckNetSyncTitles) +STUB( + "pGFomIvcw0A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEEptEv) +STUB( + "pGHbmRZmy78", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEmmEi) +STUB( + "pGJNCS7X7Rs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "pGMylP5wrIU", + _ZN7WebCore9ImageData6createERKNS_7IntSizeEON3WTF3RefIN3JSC21GenericTypedArrayViewINS6_19Uint8ClampedAdaptorEEENS4_13DumbPtrTraitsIS9_EEEE) +STUB("pGT0Hy3xqhU", mono_aot_Sce_Vsh_Orbis_ContentManagerunwind_info) +STUB("pGV40iopOv0", _ZN7WebCore22MutableStyleProperties25ensureCSSStyleDeclarationEv) +STUB("pGVyTWxeAPI", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setSecondaryVideoDisplay) +STUB("pGXmMgddE0g", _Z32sceRazorGpuThreadTracePushMarkerPN3sce3Gnm17DrawCommandBufferEPKc) +STUB( + "pGYBrHy9GZA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE5emptyEv) +STUB( + "pGbQivnCv9E", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyC1EPNS1_6Common10LibContextE) +STUB("pGbbc4Cndnw", _ZN3sce7Toolkit2NP2V210Tournament18OneVsOneTournamentC1ERKS4_) +STUB("pGg+6wFDlrM", uhash_iputi) STUB("pGiyEASBQ-4", scePrintUlpNtfHdr) STUB("pGllkf3ECvw", sceLibSecureHashAddMessage) +STUB("pGuw5C+UX1A", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE5beginEv) +STUB( + "pGw1fgR58lA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEC2EPNS2_10LibContextE) +STUB("pGxNI4JKfmY", _ZNSs6assignERKSsmm) +STUB( + "pGyteDcvQO4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEC2Ev) STUB("pH3-dfRpfA0", sceAgcDcbAtomicGds) +STUB("pH4yvvMVlO4", Java_com_sony_bdjstack_javax_media_controls_VideoDecoder_getInputVideoSize) +STUB( + "pH5iqOZqt7g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEC1Ev) +STUB("pH77OiapXx0", _ZN7WebCore16ISOSchemeTypeBox11boxTypeNameEv) STUB("pHH5hyfxX9Y", sceSystemServiceUsbStorageRequestMapWSB) STUB("pHLjntY0psg", _sceNpIpcCreateMemoryFromKernel) +STUB( + "pHM7uGJIsD4", + _ZNK7WebCore14FrameSelection17getTextRectanglesERN3WTF6VectorINS_9FloatRectELm0ENS1_15CrashOnOverflowELm16EEENS0_19TextRectangleHeightE) +STUB("pHVhU7MCfO4", _ZN7WebCore3URL10invalidateEv) +STUB( + "pHYv47WUTDc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEeqERKS9_) +STUB( + "pHa6TA0kmmw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "pHblpMhPmXs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEdeEv) STUB("pHc3bxUzivU", sceHttpSetCookieTotalMaxSize) +STUB("pHmVAreojKs", + _ZN7WebCore22EmptyFrameLoaderClient36transitionToCommittedFromCachedFrameEPNS_11CachedFrameE) +STUB( + "pHrho2t1Wdg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "pHsMmDelq+k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEaSERS7_) +STUB("pHt-cpjRGfI", psl_builtin_sha1sum) +STUB("pHtewtpKctw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEplEm) +STUB( + "pHuzFdEHFLM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEaSERS7_) STUB("pHzEzRZw3AE", sceRemoteplayGetPrimaryUserId) +STUB("pI+36WQAZrw", _ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBodyD1Ev) +STUB("pI4UL7r2y-U", _ZN7WebCore17JSDOMGlobalObject6gcLockEv) STUB("pI7oFSPP65A", sceSocialScreenInitialize) +STUB( + "pI99Oop-ayU", + _ZN3sce2Np9CppWebApi14SessionManager2V125GameSessionForReadFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_18GameSessionForReadEEE) +STUB("pIBfRRwKXkc", _ZN7WebCore9HTMLNames8paramTagE) +STUB("pICgBkuuluk", EC_KEY_new_by_curve_name) +STUB("pIJWQeguBMM", mono_aot_Sce_Vsh_ErrorDialogUtilWrapperunbox_trampolines) +STUB("pILwarr9j-g", _ZNK3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE5beginEv) +STUB("pIQpU-xFpC8", _ZN3sce7Toolkit2NP2V27Session13SessionMember13INVALID_INDEXE) +STUB( + "pISp54KJuQ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("pITl48PLFeg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEptEv) STUB("pIU8u6VsLM8", sceFiosArchiveMount) +STUB("pIZfvPaYmrs", CERT_STORE_addIdentity) +STUB("pIca-U1+RSU", _Z18Ime_KbdCloseNativem) +STUB( + "pIhU0fs2lkA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "pIixOI4BcJM", + _ZNK7WebCore11FontCascade5widthERKNS_7TextRunEPN3WTF7HashSetIPKNS_4FontENS4_7PtrHashIS8_EENS4_10HashTraitsIS8_EEEEPNS_13GlyphOverflowE) +STUB( + "pIjbVlZBVUA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEdeEv) +STUB("pIk2LEeOiYA", _ZN3sce2Np9CppWebApi11UserProfile2V16Avatar8fromJsonERKNS_4Json5ValueE) +STUB("pInrFd17z+s", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_25ReceivedInGameDataMessageEEC2Ev) STUB("pIpGiaYkHkM", sceAjmMemoryUnregister) +STUB("pIv6cvrnbik", mono_aot_System_Collectionsjit_got) +STUB( + "pIviPFyc7H0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE7popBackEv) +STUB( + "pIzrkSM8eZU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE7reserveEi) +STUB("pJ-vW4wN8Tc", _ZN3sce7Toolkit2NP12CategoryInfoC1Ev) STUB("pJ1jG+C1oRM", sceCesEucJpToUcs2) +STUB("pJ4iBZ6LEA0", WKPageSetPagePolicyClient) +STUB("pJACq4b4u8s", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS7TusDataEE19setCustomReturnCodeEi) +STUB("pJEZ0JYEcTw", + _ZN3sce2Np9CppWebApi15Personalization2V111ErrorEntityC1EPNS1_6Common10LibContextE) +STUB("pJEy0WY19JM", _ZN7WebCore22MutableStyleProperties6createENS_13CSSParserModeE) +STUB( + "pJGfKNGIPpI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEEcvbEv) +STUB( + "pJHb8t5cIR0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEC2Ev) +STUB( + "pJKa7LpED8U", + _ZN7WebCore6JSNode6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_4NodeENS6_13DumbPtrTraitsIS8_EEEE) +STUB("pJN5evXp+PU", T7lo) +STUB("pJO7UlQf4GA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEC2ERKS7_) +STUB("pJOHRRnVOv8", _ZNK7WebCore11HistoryItem5titleEv) +STUB( + "pJOO+mbBzOM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("pJOiP5PeD58", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEEmmEi) +STUB( + "pJPsENh1eng", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "pJRLQ73hwE8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEdeEv) +STUB( + "pJRmtP9VZ-k", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("pJRqv3bC318", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEE7add_refEv) +STUB( + "pJVmVzElUmQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13integer8IsSetEv) +STUB("pJat8bRYP7s", __asan_report_exp_store4_noabort) +STUB( + "pJcq3nbnqZs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEE3getEv) +STUB("pJdPMQdakrU", _ZN3JSC7Symbols35tailCallForwardArgumentsPrivateNameE) STUB("pJf1t3SkkWw", sceAudiodecGetContext) +STUB( + "pJjvv1HLwGc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE5eraseENS2_8IteratorIS8_EERSB_) STUB("pJlGhXEt5CU", sceNpGetRandom) +STUB("pJpENyUdQVY", _ZN7WebCore5Range6createERNS_8DocumentERKNS_15VisiblePositionES5_) +STUB("pJqLpjX7IVw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEC2Ev) STUB("pJqrYc7v9Y4", sceNpManagerIntGetGameAuthorizationCode) STUB("pJrlpCgR8h4", sceSaveDataDeleteAllUser) +STUB("pJsBUVg+3n0", __hexdig_D2A) +STUB("pJsoArqymHw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEEC2ERS6_) STUB("pJzji5FvdxU", sceFontGraphicsFillRatesSetFillEffect) +STUB("pK-wzpfYMWY", utrie_set32_67) +STUB( + "pK1oAq2A1EU", + _ZN7WebCore12ChromeClient20reportProcessCPUTimeEN3WTF7SecondsENS_27ActivityStateForCPUSamplingE) +STUB("pK6QcF125kg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEaSERKS7_) +STUB("pK81BVjswyQ", WKBundleFrameCopyProvisionalURL) +STUB( + "pKCOxQ9dBsM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEE3getEv) +STUB("pKGnqGY+qAU", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi27ParameterToLeaveGameSessionC2ERS5_) +STUB( + "pKI0Za-Ggf0", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot9getoffsetEv) +STUB( + "pKIHTJXkQuY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEEC2Ev) +STUB( + "pKMtHu+nBfU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE7popBackEv) +STUB( + "pKQ0VXrvv88", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEEC1ERSA_) +STUB("pKU9YbpGLKQ", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product14unsetPlatformsEv) +STUB("pKUEWyAWkeI", WKIconDatabaseReleaseIconForURL) STUB("pKY2S4K-6Mg", sceAudioOutSysClose) +STUB("pKcrfPzoNMk", mono_aot_platformunwind_info) +STUB( + "pKgIPdNLv1M", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEeqERKS9_) +STUB("pKjUsK5faF4", _ZNK7WebCore27PlatformMediaSessionManager29applicationDidEnterBackgroundEb) +STUB( + "pKkFL0O6P4o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEC1EPKS8_) +STUB("pKwslsMUmSk", fmod) +STUB( + "pKyIRcsrUXw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEEC1ERSA_) +STUB("pL+mk3X2b2M", _ZN7WebCore16HTMLInputElement9setHeightEj) +STUB( + "pL-5QzoskTM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("pL0JWi-j4bA", mono_mlist_append) +STUB( + "pL4ZsM-e0ws", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEE11release_refEv) +STUB( + "pL6D2mFIA3I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEE7get_refEv) +STUB( + "pLLAcCscl38", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEneERKS9_) +STUB("pLNZVjiFPKE", _ZN4IPMI4impl10ClientImpl12tryGetResultEjPiPvPmm) +STUB("pLOGdHtjnVE", _ZN3NTF5Cache16DiskCacheManagerC1Ev) +STUB("pLYxXzkI0wg", _ZN7WebCore21BackForwardController11itemAtIndexEi) +STUB("pLctuikJSes", _ZN7WebCore10ScrollView23setScrollbarsSuppressedEbb) +STUB( + "pLgDetoUvdE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEC1Ev) +STUB("pLgMebvWxKY", ulpFinal) +STUB("pLh4waaqW7c", _ZNK7WebCore19ResourceRequestBase8httpBodyEv) STUB("pLjQLOflIUU", sceNpManagerIntGetGameVshTokenWithPid) +STUB("pLoXvGTu73w", _ZNK7WebCore16VisibleSelection5isAllENS_27EditingBoundaryCrossingRuleE) +STUB("pLoyIIF+W90", + _ZN3sce2Np9CppWebApi11UserProfile2V111PresenceApi28ParameterToGetBasicPresencesC2Ev) STUB("pLr1fEQS1z8", sceNpBandwidthTestShutdown) +STUB("pLuxrniEggE", _ZNK3JSC12PropertySlot14functionGetterEPNS_9ExecStateE) +STUB("pLxnrZfvnmw", + _ZN3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayer14setCustomData1EPKvm) +STUB( + "pLxxreXN2pE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEE3getEv) STUB("pM--+kIeW-8", sceHttpSetCookieMaxNum) STUB("pM6IH8xwjQ4", sceMbusEventBusStatusChangeSubscribe) +STUB( + "pMBOcKmx57g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEED1Ev) STUB("pMK2RT0cyus", sceLncUtilGetAppStatusList) +STUB("pMLs993oHk0", uloc_getCharacterOrientation) +STUB("pMMH71U7FB8", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationPropertiesD1Ev) +STUB( + "pMMf4gq7ios", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEC1EPNS2_10LibContextE) +STUB("pMNrcwBmiTU", + _ZN9Inspector17BackendDispatcher8getValueEPN3WTF8JSONImpl6ObjectERKNS1_6StringEPb) +STUB( + "pMPcx4w2+lo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEE7add_refEv) +STUB("pMQUQSfX6ZE", _ZTSd) +STUB("pMQcZ5MiNHg", _ZTVN7WebCore11DisplayList10SetLineCapE) +STUB("pMVc-tS+h2s", _ZN7WebCore21DiagnosticLoggingKeys15revalidatingKeyEv) +STUB("pMWnITHysPc", _ZNSt6localeD1Ev) +STUB("pMYvjb09mQA", Java_java_lang_Runtime_totalMemory) +STUB("pMb2NRE-Ni0", ufmt_getObject_67) +STUB( + "pMceEA-IDnE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEC2Ev) +STUB( + "pMdZmQd3NYY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEEC1EPS7_PFvS9_EPNS2_10LibContextE) +STUB( + "pMe0xtEijZM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEEC2Ev) +STUB( + "pMePj4GJlyc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEdeEv) +STUB( + "pMjSwNSMrgo", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("pMkuOcjPRsk", WKUserScriptGetTypeID) STUB("pMqmEivov4M", sceUpsrvUpdateDoUpdateWithEntitlement) +STUB( + "pMwGYxVsnfU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEED2Ev) +STUB("pMxOeBivMSo", _ZN7WebCore4Page29setHorizontalScrollElasticityENS_16ScrollElasticityE) +STUB("pN02FS5SPgg", _ZNSt8_LocinfoC2EPKc) STUB("pN0HjRU86Jo", sceHmdInternalDfuReset) +STUB( + "pN1RYLViHiE", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetrics8fromJsonERKNS_4Json5ValueE) +STUB("pN6OYq3hEUE", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product29getContentInteractiveElementsEv) +STUB( + "pN9rkxfvGRs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEptEv) +STUB( + "pND3b5qOJEk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEE5resetEPS9_) +STUB("pNFRb6EjosU", _ZNK7WebCore9InlineBox16baselinePositionENS_12FontBaselineE) +STUB("pNH9EoaKVWM", _ZN3JSC16JSAsyncGenerator6s_infoE) +STUB( + "pNIDF2IP2vk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE8capacityEv) +STUB( + "pNJZl4aQELY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEC2EPNS2_10LibContextE) +STUB("pNORP-dktP4", _ZN3sce7Toolkit2NP2V28Commerce10ContainersC2Ev) +STUB("pNUMqmhQiR8", _ZN7WebCore11DisplayList5ScaleC1ERKNS_9FloatSizeE) +STUB( + "pNW9MC7fuZc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEED1Ev) +STUB("pNWIpeE5Wv4", _FXp_sqrtx) +STUB( + "pNcrmQC5fdM", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("pNdf3ybWh48", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEEC1Ev) +STUB( + "pNfdpjO9B40", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("pNg-SxQQPVY", _ZN3sce7Toolkit2NP2V27Ranking17SetGameDataResultC2ERKS4_) +STUB("pNhZrjJUkOk", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError11reasonIsSetEv) +STUB("pNj6-KbfzvQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE7reserveEi) +STUB("pNliRQzOktU", JSObjectGetProperty) +STUB("pNtJdE3x49E", wcscmp) +STUB("pNwJh7+E8Ng", + _ZN8meta_gen14ImageRetriever10InitializeEP23PromoteInnerInformationiN9db_schema9CodecTypeE) +STUB("pNx4P15sDAk", ubidi_getDirection_67) +STUB( + "pNxe58k+Inw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEplEm) +STUB("pNy9E8Now3M", WKPageGetTextZoomFactor) +STUB( + "pNyc5WhtCSM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEEcvbEv) +STUB( + "pO+c5pL9FS0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEaSERKS7_) +STUB("pO0sA7m+UKY", FT_ClassicKern_Validate) +STUB("pO2sQB1RR2c", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEED1Ev) +STUB( + "pO6iUM4dmiI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEC2EPS8_) STUB("pO96TwzOm5E", sceKernelGetDirectMemorySize) +STUB("pO9cpXuuPwU", SoundTerminate) STUB("pOEPVuZSH5g", sceApplicationGetCpuUsage2) +STUB( + "pOI+-AxPNgc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEC1EPKS8_) +STUB( + "pOJA21g9RCY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEED0Ev) +STUB( + "pOKn0iFNtCU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEED1Ev) +STUB( + "pOQEWRz7-xE", + _ZN3sce2Np9CppWebApi14SessionManager2V138JoinedPlayerSessionWithPlatformFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_31JoinedPlayerSessionWithPlatformEEE) +STUB("pORpGtdlfqQ", FT_Get_Multi_Master) STUB("pOTLKv4IdPc", sceMbusGetUsersDeviceInfo) +STUB( + "pOVIkXQLs4s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEE11get_deleterEv) +STUB("pOWKUOuqKng", mono_runtime_get_main_args) +STUB("pOd-OizWMuY", _ZN8meta_gen13JpegRetrieverD0Ev) +STUB( + "pOfQInfCa4o", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeader13isInitializedEv) +STUB( + "pOjw6Hh291Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEC2EPS8_) +STUB("pOlBN11P9J4", mono_aot_I18N_MidEastplt_end) +STUB( + "pOlgVvpFlGU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_) STUB("pOmNmyRKlIE", scePthreadMutexGetspinloops) +STUB("pOmcRglskbI", getCertSigAlgo) +STUB("pOoh9qPEo3g", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging24GameDataMessageThumbnailEED2Ev) +STUB( + "pOqoJ33P-VQ", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V129ConnectionQualityWiredMetrics17getPacketLossRateEv) +STUB( + "pOrMRLKTtWo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "pOxeHT063Yg", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer15getserviceLabelEv) +STUB("pOzS3021z74", _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOffer7getviewEv) +STUB("pOzrilVe4IE", _ZN7WebCore9DOMWindow30dispatchAllPendingUnloadEventsEv) +STUB("pP4r8aQAzzU", _ZN7WebCore8Document22webkitCancelFullScreenEv) +STUB("pP76ElRLm78", _ZNSt12placeholders3_17E) +STUB("pP8FlCo5KjU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEptEv) +STUB("pP8RgquS2+4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116JoinableUserTypeEEaSERKS7_) +STUB( + "pPDDhRBhxjk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEC1EPS8_) +STUB("pPEDP-idDOk", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V119NatConnectivityFrom9getToNat3Ev) +STUB( + "pPEuwyTHRIY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEEC1EPS8_PNS2_10LibContextE) +STUB( + "pPHjhHqFfFw", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setBoolean2ERKb) +STUB( + "pPOSsajGYBg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEC2Ev) +STUB( + "pPPV1y6tTIQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEC1EPS8_) +STUB("pPSFfl-Q-C0", _ZN3sce7Toolkit2NP2V210Wordfilter16SanitizedComment8deepCopyERKS4_) +STUB( + "pPUweQXqzCY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEE11get_deleterEv) +STUB("pPVQ8STok8k", _ZNK3JSC6JSCell12toObjectSlowEPNS_14JSGlobalObjectE) +STUB("pPVeaW3oK5s", _ZN7WebCore6Editor35increaseSelectionListLevelUnorderedEv) +STUB( + "pPWv2pOXj5w", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB( + "pPcQAkaLYhE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("pPdYDr1KDsI", __atomic_fetch_xor_4) +STUB("pPfNd6QD3nk", ucurr_forLocaleAndDate) +STUB("pPikP5n3mmY", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku11setUseLimitERKi) +STUB( + "pPimGOezL3A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "pPizF3DyBDA", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities12ErrorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS6_12IntrusivePtrINS4_5ErrorEEE) +STUB("pPs3qZTZQvQ", _ZN3sce4Json5Array9pop_frontEv) +STUB( + "pPxU3HVSLu8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEEaSERSA_) +STUB("pPycmu6NL9o", _ZN7WebCore11MathMLNames14fontweightAttrE) +STUB("pQ+OGYuSoTM", _ZN9Inspector26AnimationBackendDispatcherD0Ev) +STUB("pQ-JHL7FkOk", nn_shutdown) +STUB("pQ0Q4V-i7MA", _ZNK7WebCore17CSSPrimitiveValue13getFloatValueENS_11CSSUnitTypeE) +STUB("pQ1USbInTUQ", mono_aot_Sce_Vsh_Np_ServiceChecker2method_addresses) +STUB("pQ9+KPwjQkA", _ZNK3sce2Np9CppWebApi11Matchmaking2V110UserTicket11getPlatformEv) +STUB("pQANZJGkdfQ", _ZN7WebCore19TransformOperationsC1Eb) +STUB("pQDPh3MUo6c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEEC2EPS4_PNS2_10LibContextE) +STUB( + "pQDnCmiFqdk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE8capacityEv) STUB("pQGpHYopAIY", sceNetNtohl) +STUB( + "pQIs3SYFDnk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEC1EPS6_PNS2_10LibContextE) +STUB( + "pQKFFcbSJww", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("pQKHqQZ84QA", _ZTVN7WebCore9CookieJarE) STUB("pQLJV5SEAqk", sceNetBweStartInternetConnectionTestBandwidthTestIpcInt) +STUB( + "pQQjZ-f6BMU", + _ZN3sce2Np9CppWebApi14SessionManager2V129PlayerSessionSpectatorFactory6createEPNS1_6Common10LibContextERKmRK13SceNpOnlineIdPKcSE_PNS5_12IntrusivePtrINS3_22PlayerSessionSpectatorEEE) +STUB("pQRviAsoFa0", _ZN3sce7Toolkit2NP2V28Commerce7Request13GetContainersD2Ev) +STUB( + "pQSNLaYkj84", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEeqERKS9_) +STUB( + "pQUKYNtefKU", + _ZN3sce2Np9CppWebApi14SessionManager2V112ErrorFactory6createEPNS1_6Common10LibContextElPKcPNS5_12IntrusivePtrINS3_5ErrorEEE) +STUB( + "pQWfmZh1FNs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEED2Ev) +STUB( + "pQXooiV2ors", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEE11release_refEv) +STUB("pQYlY0YQm3w", WKBundleSetAuthorAndUserStylesEnabled) +STUB("pQZ0kMnqWPU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEED1Ev) +STUB("pQZjEV7j8+A", _ZN7WebCore9HTMLNames11optgroupTagE) STUB("pQayMXYQa+M", sceRegMgrPrivateStorageDirPermit) +STUB("pQhd2HrNmdA", _ZN3sce7Toolkit2NP2V28Matching12RoomPingTime8deepCopyERKS4_) +STUB("pQjigMgG-N8", __start__Ztext) +STUB("pQktOxWPJUs", _ZN9Inspector38ScriptProfilerBackendDispatcherHandlerD2Ev) +STUB( + "pQn1HrvjPw8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEeqERKS9_) +STUB("pQntjcFYZZo", _ZN7WebCore6JSFile15subspaceForImplERN3JSC2VME) +STUB( + "pQpi5vZCbzU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEneERKS9_) +STUB("pQtHunes6DY", udat_clone_67) +STUB( + "pQyRwQhLGhY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEeqERKS9_) +STUB("pR+9VvD3ld0", mono_aot_System_Reactive_Coreunbox_trampolines_end) STUB("pR2Ae3d5-6s", sceVnaReadTtsStream) +STUB("pR3-b3aK+Io", utrans_unregister_67) +STUB("pR9ULw2VrSs", + _ZN15AbstractStorage14YoutubeContentC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) +STUB( + "pREBJBfY1Xo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEEdeEv) +STUB( + "pRFnT68pscY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("pRNesNnAa2k", _ZN3sce2Np9CppWebApi7Matches2V119CreateMatchResponse8fromJsonERKNS_4Json5ValueE) +STUB("pRa-1shF58s", WKDatabaseManagerGetOriginQuotaKey) STUB("pRbEzaV30qI", sceNetThreadJoin) +STUB("pRbiJ9Xm+UA", getzone_o) STUB("pRgpBtHx8P4", sceNpAppInfoIntDestroyRequest) +STUB("pRowWv-qvIY", mono_aot_Sce_Cdlg_Platformplt) +STUB("pRpclGdCA9I", _ZN7WebCore8Gradient12addColorStopEONS0_9ColorStopE) +STUB( + "pRq2H0BNjLE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEC1EPNS2_10LibContextE) +STUB("pRuw9KxL6FI", _ZN7WebCore9HTMLNames15marginwidthAttrE) +STUB("pRvz++QdUEI", _ZNK7WebCore9FloatQuad11boundingBoxEv) STUB("pS-OPJQtq5s", sceFsInitUmountLwfsCompatOpt) +STUB( + "pS-TVEH+IMU", + _ZN9Inspector20DOMBackendDispatcher6moveToElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("pS-t9AJblSM", _ZNKSt9bad_alloc8_DoraiseEv) STUB("pS2tjBxzJr4", sceGnmSqttGetWrapCounts) +STUB("pS7nI6sFIOQ", mono_aot_Sce_Vsh_SystemLoggerWrappermethod_addresses) +STUB("pS96n3Qoz1Q", WKPreferencesGetMediaPreloadingEnabled) +STUB( + "pSA+683NX28", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEE7get_refEv) +STUB( + "pSDfPenTEZw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("pSHHnWM+tac", _ZN3sce2Np9CppWebApi7Matches2V120RequestTeamStatistic8getStatsEv) +STUB( + "pSQAXUewWlk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEE11release_refEv) +STUB("pSQBJJDceyk", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312AccountIdMapC1EPNS1_6Common10LibContextE) +STUB( + "pSQUSAGFxr0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEE11get_deleterEv) +STUB("pSQz254t3ug", _ZNKSt5ctypeIwE10do_scan_isEsPKwS2_) STUB("pSUTufzQ4og", sceDtcpIpWaitAsync) +STUB( + "pSelZAq3Gzw", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V132NatConnectivityPropertiesFactory7destroyEPNS3_25NatConnectivityPropertiesE) +STUB("pSgOzwkzx4Y", FT_Add_Default_Modules) STUB("pSh4a1XK8eA", sceAvSettingCallbackFuncsInit_) +STUB( + "pSjdqs610Z8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEC2Ev) +STUB("pSo71k98t6U", _ZN9Inspector15RemoteInspector28receivedGetTargetListMessageEv) +STUB("pSpDCDyxkaY", _Stoullx) +STUB( + "pSpO3hPNv64", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEptEv) +STUB( + "pSq7SObvxVg", + _ZN7WebCore14ResourceHandle25loadResourceSynchronouslyEPNS_17NetworkingContextERKNS_15ResourceRequestENS_23StoredCredentialsPolicyERNS_13ResourceErrorERNS_16ResourceResponseERN3WTF6VectorIcLm0ENSB_15CrashOnOverflowELm16ENSB_10FastMallocEEE) +STUB("pSqC0JZWBsU", WKInspectorIsVisible) +STUB("pSrfYqO6q2Y", _ZN7WebCore17LibWebRTCProvidernwEmPv) +STUB( + "pSsmohguau8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEeqERKS9_) +STUB( + "pSzqIk82Rfc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("pT05qnuORso", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEEmmEi) +STUB( + "pT1g-6L6yJ0", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionProperties13isInitializedEv) +STUB( + "pT1ptF856pU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "pT2CdljMUNI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEaSERKS9_) STUB("pT4ViD0o-bM", sceLibSecureCryptographyGetContextSize) +STUB( + "pTAlr-dhIyM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("pTDJICHaSk4", _ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE6resizeEj) +STUB( + "pTG9JHBfK48", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEC1EPS8_) +STUB("pTGFQtwwed8", _ZN3sce2Np9CppWebApi14ConnectAccount2V28PSNErrorD2Ev) +STUB( + "pTIWHdPlTz0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEE7get_refEv) +STUB( + "pTIhFj01j+E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE5beginEv) +STUB("pTQS9K0L17Q", JNU_ToString) STUB("pTTcO+0cxvY", sceRegMgrPrivateStorageMeasure) +STUB("pTZT4hsbxb4", mono_aot_System_ServiceModelplt) +STUB( + "pTbPc39gNr4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("pTgf4wXWSO4", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112GroupingTypeEEneERKS7_) +STUB( + "pTilR5Bo5mA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEED2Ev) +STUB("pTl2U-BU34A", rgctx_fetch_trampoline_mrgctx_22_p) +STUB("pTmq0fAKv7Y", _ZN3sce7Toolkit2NP16NpSessionRequestC1Ev) +STUB( + "pTnWn2lqv+Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEEdeEv) +STUB( + "pTndrh403GY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEE11get_deleterEv) +STUB( + "pTqYCBU04W4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEC1EPKS8_) +STUB( + "pTrytI141T0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE5beginEv) +STUB("pTtsLDP0PcI", g_WebAssemblyModuleRecordPoison) STUB("pTvAKV1iQkE", sceNpSnsFacebookDeleteRequest) +STUB("pTzwexztolg", _ZN3JSC7Symbols28sentinelMapBucketPrivateNameE) STUB("pU-QydtGcGY", sceKernelMemoryPoolReserve) +STUB( + "pU0qHcNBIA8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("pU2Smb1a7jE", png_free_data) +STUB("pU3xyTxVS+w", _ZN7WebCore16BackForwardCache14pruneToSizeNowEjNS_13PruningReasonE) +STUB( + "pU5136Kn9lA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEE7get_refEv) +STUB("pU54jHctkAs", _ZN7WebCore15AsyncFileStreamnwEmPv) +STUB("pU5QYX+50hM", _ZN7WebCore10TimeRanges3addEdd) +STUB( + "pU7lRDROrps", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEE5resetEPS9_) +STUB("pU9V579IXI8", _ZNK7WebCore17SMILTimeContainer19animationFrameDelayEv) +STUB("pUGXlfaAj04", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEEaSERS7_) +STUB("pUJjT1ly6bI", _ZN3sce2Np9CppWebApi7Matches2V120ResponseMatchResults22unsetCompetitiveResultEv) STUB("pUNYBQhD1oQ", sceCustomMusicCoreSendEvent) STUB("pUQnXa5Mp9E", sceFsLvdAttachSingleImage) +STUB("pUSjD6Wmxo4", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToCancelTicketC1Ev) +STUB("pUaVtOhugPw", _ZN7WebCore11DisplayList12PutImageDataD1Ev) +STUB("pUgVd0pfnz4", _ZN3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectatorD1Ev) +STUB( + "pUgi1Yey6Cc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE3endEv) +STUB( + "pUgnmJfR5hw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "pUlDYtYqdWI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "pUlrprmY2w4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEC1EPNS2_10LibContextE) +STUB( + "pUs6LRCfmKs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEE5resetEPS9_) +STUB( + "pUtECb1AiqE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEaSERKS7_) +STUB("pUtMsRLFGwU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEEeqERKS7_) +STUB("pUw8oIcCMXk", _ZN3JSC18BytecodeCacheErroraSERKNS0_13StandardErrorE) +STUB( + "pUzdNRe+ESU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE5beginEv) +STUB("pV+10L18QyI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE5beginEv) +STUB( + "pV236XKHYh4", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayer37unsetxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB("pVFD+VTLysQ", _ZN3sce7Toolkit2NP2V27Session7Request6Create16DEFAULT_PRIORITYE) STUB("pVK4++v04ac", sceGameRightGetLogoPngImageSizeInBytes) STUB("pVLe+5PkfMY", sceVorbisDecSeekable) +STUB( + "pVNLwekGFZY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEE11get_deleterEv) +STUB("pVO1rIj3RBs", _ZNK3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator12getJoinStateEv) +STUB( + "pVQDZ8U74-A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE5beginEv) +STUB( + "pVTs1BDPJ1Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("pVUPcUmtmck", _ZN3JSC15WeakHandleOwnerD1Ev) +STUB("pVXutWd0GIw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEED1Ev) +STUB( + "pVY5LAm5cwU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEE11release_refEv) +STUB("pVYj0EAFKIU", WKWebsiteDataStoreReinitializeAppBoundDomains) +STUB( + "pVZmBosjLLI", + _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody17joinDisabledIsSetEv) +STUB( + "pVjAJiudBmE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE21intrusive_ptr_add_refEPS9_) +STUB("pVjisbvtQKU", fetestexcept) +STUB("pVlk0kpmp+8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEED1Ev) +STUB("pVpx298dCy8", _ZN8meta_gen13JpegRetriever20JPEGPROM_MDAY_OFFSETE) STUB("pVsEKLk5bIA", sceUserServiceGetSaveDataSort) +STUB( + "pVvX-N6ANdE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEC2EPKS8_) +STUB( + "pVvuwD+2o4o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEC1EPS8_) STUB("pVxEtvHOtXc", sceVideoRecordingRestModeProcessStart) +STUB("pW5Q-ZBNZ4U", _ZN7WebCore4Page16setActivityStateEj) +STUB("pW6Oj8SC-2E", uloc_getDisplayName_67) +STUB( + "pWE9pFFi68Q", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V333CommunicationRestrictionStatusApi44ParameterToGetCommunicationRestrictionStatus9terminateEv) +STUB("pWFZWkRX16M", WKPageIsPinnedToTopSide) +STUB("pWFx2bo5OuQ", _ZN3sce7Toolkit2NP15AppSTLAllocatorIcEC2Ev) +STUB("pWJjCkKDbes", _ZN3sce2np10JsonStringD1Ev) STUB("pWLG7WOpVcw", sceAgcDriverUnregisterResource) +STUB( + "pWXi2imUUcw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB( + "pWb7aWjy9JQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEC2EPS8_) +STUB("pWbsmM0vKvI", _ZN7WebCore13CSSStyleSheet8cssRulesEv) +STUB("pWfq6iqEo0Q", + _ZN7WebCore12SharedBufferC2EON3WTF6VectorIcLm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("pWg3+mTkoTI", CERT_rawVerifyOID) +STUB("pWh1MZkpWDo", _ZN3sce7Toolkit2NP2V27Session8SessionsaSERKS4_) +STUB( + "pWi-35AozuA", + _ZNK7WebCore11FontCascade8drawTextERNS_15GraphicsContextERKNS_7TextRunERKNS_10FloatPointEjSt8optionalIjENS0_24CustomFontNotReadyActionE) +STUB("pWkG2yY1f8g", X509_STORE_CTX_get_error) +STUB("pWkKuPgWHR8", _ZN4IPMI4impl11SessionImplC2Ev) +STUB( + "pWlqF5V2FwM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE5emptyEv) STUB("pWmS7LajYlo", sceAudioOutGetSimulatedHandleStatusInfo) +STUB("pWmgWzoTWIE", _ZN3JSC17createSyntaxErrorEPNS_14JSGlobalObjectERKN3WTF6StringE) STUB("pWneteSVJeI", sceCesGbUcsProfileSetSbcs) +STUB("pWntRpPm9kg", mono_perfcounter_foreach) +STUB( + "pWoV05qr-5s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEC1EPKS8_) +STUB("pWuDO5fb7Yw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEED2Ev) +STUB("pWwmsDizpB0", _ZN7WebCore6JSFile14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB("pWzdtw18an0", _ZN7WebCore22DefaultFilterOperationC1ENS_15FilterOperation13OperationTypeE) +STUB( + "pX--x2-9IOA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEEC1ERSA_) +STUB("pX-zIvHeGYI", _ZN7WebCore17JSDOMRectReadOnlyC2ERKS0_) +STUB("pX14dbZetTQ", _ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody11getTicketIdEv) +STUB("pX7xZaOlPk8", WKPageCanGoBack) STUB("pXI1y1rz4+w", sceNpStartVsh) STUB("pXJh3aVk8Ks", sceContentDeleteById) +STUB( + "pXMBJ4EVMzY", + _ZNK3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession26getSpectatorJoinableStatusEv) +STUB( + "pXMRqVV2YWs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEED1Ev) +STUB("pXRO7hiHbZw", _ZN3sce3Xml3Dom8Document9terminateEv) +STUB("pXU3zucemj8", + _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_16HTMLImageElementE) +STUB("pXVPlSQxwKM", _ZN3JSC13RuntimeMethod4infoEv) +STUB( + "pXYeGGzJXSM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEE21intrusive_ptr_sub_refEPS7_) STUB("pXYlucRhimU", sceTsGetUrlEncryptionType) +STUB( + "pXZ-gZPRoKQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEE11release_refEv) +STUB( + "pXbe5-SLsnM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEEdeEv) +STUB("pXbjIk883pg", __tsan_mutex_pre_lock) +STUB( + "pXd41wIQpyI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEE7add_refEv) +STUB("pXgkBbeSZT8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEED1Ev) +STUB("pXkvVgBaFNQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEEaSERS7_) +STUB("pXnPhDouZC8", WKBundleOverrideBoolPreferenceForTestRunner) +STUB("pXv-WCokNsY", mono_string_new) +STUB("pXvbDfchu6k", strncasecmp) +STUB("pY1NNqZbJ+4", WKPageHasSelectedRange) +STUB("pY1mQY0ntQ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEC1Ev) +STUB("pY26MyYGt8Q", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_23NpIdListRankInformationEEC1Ev) +STUB( + "pY4jGLBgpMs", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody37unsetComparedLastUpdatedUserAccountIdEv) +STUB("pY7yMG1BXGU", _ZN12Mp4RetrieverC2Ev) +STUB("pYFelASnlTo", _ZN3sce7Toolkit2NP2V210Tournament5EventC1ERKS4_) +STUB( + "pYGXKb-fezA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEC1ERKS7_) +STUB("pYHt5lL67G8", WKPageWillHandleHorizontalScrollEvents) +STUB("pYINcHa7ayw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEEaSERS7_) +STUB( + "pYJ0xpu8WH0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEeqERKS9_) +STUB( + "pYNO1V7HAbk", + _ZN3sce7Toolkit2NP2V29Challenge13sendChallengeERKNS3_7Request13SendChallengeEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB( + "pYPATjupQ74", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE7reserveEi) +STUB( + "pYQG7HFyiGQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE4sizeEv) +STUB("pYX+BazQZ2A", _ZN9Inspector17ScriptDebugServerD1Ev) STUB("pYoKs3lPy88", sceAgcDcbDrawIndirectMultiGetSize) +STUB("pYowsUXdydw", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_21AbortGameDataResponseEE3getEv) +STUB( + "pYr2DQmjB3A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEC1EPKS6_) +STUB( + "pYsmGy-7xoY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "pYtcnYfJyh4", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V333CommunicationRestrictionStatusApi44ParameterToGetCommunicationRestrictionStatusD2Ev) +STUB("pYwJJhTpTSY", WKRenderLayerGetNegativeZOrderList) +STUB( + "pYxBt2lRH1o", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) STUB("pZ1ctWkAU9Y", sceVorbisDecPcmSeek) +STUB( + "pZ6VqXKyYdI", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEEiRNS2_10LibContextEPT_m) +STUB( + "pZ7vaHMbdzU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("pZ9WXcClPO8", _ZTVN10__cxxabiv120__si_class_type_infoE) +STUB( + "pZBR7Homig0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEeqERKS9_) +STUB( + "pZE4MZyuo34", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEC1ERKS8_) +STUB("pZEuvsgyal8", _ZNK3sce2Np9CppWebApi6Common6VectorIiE5beginEv) +STUB("pZIfXtc8V3M", _ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetail16unsetDisplayNameEv) STUB("pZL154KvMjU", sceUserServiceIsKratosUser) +STUB("pZLJkQq6x3k", uplrules_getKeywords_67) +STUB("pZLN3Bi59us", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEE3getEv) +STUB( + "pZXmVlo3uWs", + _ZN9Inspector14InjectedScript20getCollectionEntriesERN3WTF6StringERKS2_S5_iiRNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime15CollectionEntryEEENS1_13DumbPtrTraitsISC_EEEE) +STUB( + "pZdS-7qwKEs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE3endEv) +STUB( + "pZep7k3wmK8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEmmEi) STUB("pZlOm1aF3aA", sceAudio3dAudioOutClose) +STUB( + "pZmQJ26DuXM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("pZvrLdhriNk", curl_version_info) +STUB("pa54YI0o9qg", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging25GameDataMessageAttachmentEEC1Ev) +STUB("pa5tm9SAR6Q", _ZN3sce7Toolkit2NP2V29Challenge7Request16ConsumeChallengeD1Ev) +STUB("pa9f4LzRbpw", rgctx_fetch_trampoline_mrgctx_5_p) +STUB("paAIs8klrR4", _ZN7WebCore9HTMLNames11charsetAttrE) +STUB( + "paALP-eUgtw", + _ZNK3sce2Np9CppWebApi14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBody6toJsonERNS_4Json5ValueEb) +STUB( + "paAXinP5Sr0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB( + "paBV3oIQHWI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEC1EPNS2_10LibContextE) +STUB("paCCZ5DrKZ0", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V224TestForProfanityResponseC1EPNS1_6Common10LibContextE) +STUB( + "paDWuzWSUDY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEC2EPS8_) STUB("paE4W44wWtU", sceVrTrackerDeregisterDevice) +STUB("paHcj4DoPQ4", FcPatternAddCharSet) +STUB( + "paHn1z7+n5Y", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot8getgroupEv) +STUB( + "paHrdj7MXrs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEC1EPKS8_) +STUB( + "paJCCZZql+c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE7popBackEv) +STUB( + "paKY7v9SbmU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEED1Ev) +STUB( + "paTZUydafhg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEptEv) +STUB("paXZ12DD6nI", udata_setCommonData_67) +STUB( + "paoSKZuVu7k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEE11get_deleterEv) +STUB( + "pap4ILfLNCo", + _ZN3sce7Toolkit2NP2V27NpUtils22getAccountIdByOnlineIdERKNS3_7Request22GetAccountIdByOnlineIdEPNS2_4Core8ResponseINS3_5IdMapEEE) +STUB("papHVcWkO5A", _ZTSi) +STUB( + "paq1L9DeOMA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("pasmxuptQVc", + _ZN7WebCore11FrameLoader22findFrameForNavigationERKN3WTF12AtomicStringEPNS_8DocumentE) +STUB("patTzc7zBjw", _ZN3sce4Json6Object8iteratorD2Ev) +STUB("pavITQF6RPg", monoeg_g_log) +STUB("pavcy48PkDM", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getSubtitleLang) +STUB( + "paxFTkA1hjU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEC2EPS6_PNS2_10LibContextE) +STUB("paxl8uV+-a8", digits) +STUB("pb-liQoi9uQ", il2cpp_class_get_namespace) +STUB("pb0nCZ5k8Os", _ZN7WebCore15SQLiteStatement7prepareEv) +STUB( + "pb12vAbdWsY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEeqERKS9_) STUB("pb20o9PCWxE", sceDebugIpmiGetClientKidListByDump) +STUB("pb27SXMl9IE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE21intrusive_ptr_add_refEPS7_) STUB("pb2XPMV5beI", sceShellCoreUtilPostActivityForPsNow) +STUB( + "pb2tZUNFwdk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEED1Ev) +STUB( + "pb3-lRvcGxI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEE5resetEPS6_) +STUB("pb30-gZKW80", _ZN3sce7Toolkit2NP2V27Session7Request6Create15MAX_INDEX_VALUEE) +STUB("pb7gQyE4uLY", ucurr_getKeywordValuesForLocale) +STUB("pb8AS3aYSvs", _ZN3sce2Np9CppWebApi6Common6VectorIfE5beginEv) +STUB( + "pbDORofgH0U", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("pbIYanAlsV8", _ZN3sce7Toolkit2NP2V28Commerce7Request26DisplayProductBrowseDialogD2Ev) +STUB("pbKEH93JlIE", _ZN7WebCore9HTMLNames12selectedAttrE) +STUB("pbNIQx2DjPo", JVM_DesiredAssertionStatus) +STUB("pbNoy5OiS3k", _ZN7WebCore20LegacySchemeRegistry27registerURLSchemeAsNoAccessERKN3WTF6StringE) +STUB( + "pbODKYfA7pk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlot9setslotIdEi) +STUB("pbPYIhZc+9U", _ZNK7WebCore11FrameLoader6pageIDEv) +STUB("pbQYmZ8YkFs", _ZN7WebCore24CoordinatedGraphicsLayer21setBackfaceVisibilityEb) +STUB("pbT-iQht85o", _ZN4IPMI6Client6Config14MsgQueueConfigC2Ev) +STUB("pbTq-nEsN1w", SSL_setSessionFlags) +STUB( + "pbTtJVnBdXI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE7reserveEi) +STUB("pbUudIEKcm8", psl_dist_filename) +STUB( + "pbgXkzk-GCY", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEEC2Ev) +STUB("pbiAyrIGjxo", _ZN7WebCore23CoordinatedBackingStore14removeAllTilesEv) +STUB("pbl-VhuKb8g", _ZN3JSC4Heap26reportAbandonedObjectGraphEv) STUB("pbnNnahE8vk", sceAmprMeasureCommandSizePopMarker) +STUB("pbolHsxA72U", _ULx86_64_init_local) +STUB( + "pbpdHEY1ch8", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setInteger1ERKi) +STUB("pbpgXFx3OlQ", X509_NAME_ENTRY_get_data) +STUB("pbq4TEu+qa0", UI_get0_user_data) +STUB("pbs5-GMRRKY", _ZN9Inspector40ApplicationCacheBackendDispatcherHandlerD0Ev) +STUB("pbsHpXSaGo0", uhash_iput_67) +STUB( + "pbyuNJy2-Y4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEE7get_refEv) +STUB("pc4-Lqosxgk", _ZTSPx) STUB("pc4guaUPVqA", sceSaveDataGetMountedSaveDataCount) STUB("pc6PxOmaeMg", sceVideoCoreLaunchVideoCore) +STUB("pc9NJOCM4pA", rgctx_fetch_trampoline_rgctx_78) +STUB("pcDd-Imyg-E", monoeg_g_array_free) +STUB("pcLFw6F9XHo", _ZN3sce4Json5Value3setERKSbIcSt11char_traitsIcENS0_8StlAllocIcEEE) +STUB( + "pcM-4gvmMus", + _ZN3sce2Np9CppWebApi7Matches2V131ResponseTeamMemberResultFactory6createEPNS1_6Common10LibContextEPKcdPNS5_12IntrusivePtrINS3_24ResponseTeamMemberResultEEE) +STUB("pcMWUfvnSVw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEaSERKS7_) +STUB("pcN-khOV8IU", _ZN3sce7Toolkit2NP2V210Tournament17OfficialBroadCastC1ERKS4_) +STUB("pcO3tHP+YZY", _ZN18scePssCAudioSystem20GetPlayerForResourceEjRjiiij) +STUB("pcR28kXlitA", uset_containsRange_67) +STUB("pcV2EOj8QXo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEEC2EPS6_) +STUB("pcdODEfEwdo", g_slist_nth) +STUB("pcgeS6said4", usearch_getOffset_67) +STUB( + "pcjrtQeaPNk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEC2Ev) +STUB( + "pcnyUwUrRLc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEED1Ev) +STUB("pcyX1aTQ75U", rgctx_fetch_trampoline_general_p) +STUB("pczcmuVoGFU", WKPreferencesGetShouldAllowUserInstalledFonts) +STUB( + "pcznuVqfb50", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEppEi) +STUB("pd02UI9TbOA", readlink) +STUB("pd0OULBpdtQ", _ZN3JSC7Options14dumpAllOptionsEP7__sFILENS0_9DumpLevelEPKc) STUB("pd4C7da6sEg", sceGnmGetDebugTimestamp) +STUB("pdDq7y06YLw", _ZN3JSC7Symbols25iteratedObjectPrivateNameE) +STUB("pdESZ0dXj9A", _ZN3sce2Np9CppWebApi7Matches2V113ChildActivity8fromJsonERKNS_4Json5ValueE) STUB("pdEV7bI6COI", sceAgcCreateInterpolantMapping) +STUB("pdHf4ajqblI", VerifyClassCodesForMajorVersion) +STUB("pdLJFDkJQno", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE3endEv) +STUB( + "pdLfaDNMkx8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEneERKS9_) +STUB("pdWyB2nnKnE", __sync_fetch_and_or_16_internal) +STUB( + "pdZQ2n5TuGI", + _ZN7WebCore9subdivideERKN3WTF6VectorINS_10MarkedTextELm0ENS0_15CrashOnOverflowELm16EEENS_15OverlapStrategyE) +STUB( + "pda39BIW0kE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE5beginEv) STUB("pdbdz2ccLfo", sceDebugGetUltCondvarInfo) +STUB("pdgKDWdLmQg", _ZN3JSC8Debugger12atExpressionEPNS_9ExecStateE) +STUB("pdhVtBudcd4", _ZN3sce7Toolkit2NP2V26Friend16FriendsOfFriendsC2Ev) +STUB( + "pdk4tvTMjCs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE5beginEv) +STUB("pdoMKgNybi4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching5RoomsEE3setEv) +STUB("pdthjGxsmn4", _ZN7WebCore14SchemeRegistry33shouldTreatURLSchemeAsCORSEnabledERKN3WTF6StringE) +STUB("pdw32NjjNkc", uregex_groupUText_67) +STUB("pdwofrxAnAs", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody9getOffsetEv) +STUB("pe-Xg5L82M4", _ZN3sce7Toolkit2NP2V211UserProfile7Request24DisplayUserProfileDialogC2Ev) +STUB( + "pe1n0ow98yQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "pe2n1VYZ-vg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEE11get_deleterEv) +STUB("pe9LDCl9BvA", _ZN3sce2Np9CppWebApi14SessionManager2V130RequestGameSessionMemberPlayerD1Ev) +STUB( + "peEYULi5qdA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("peH3KIJ2R4k", mono_aot_ReactNative_Debug_DevSupportunbox_trampolines_end) +STUB("peRY-tJib-Y", uloc_toLegacyType) +STUB("peSbz8jaqpo", WKKeyValueStorageManagerGetCreationTimeKey) +STUB("peWBA9e0+AM", WTFLog) +STUB("peXVeJTTL-M", _ZN3sce2Np9CppWebApi15ProfanityFilter2V224TestForProfanityResponseD2Ev) +STUB( + "peXmkwDdTXk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEEC2ERS9_) +STUB("pebqbE5ws8s", siglongjmp) +STUB("pekT-IsAkQU", _ZN15AbstractStorage7Content12GetMimeTypesEv) +STUB("pesTllXToAQ", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_16SessionAttributeEE8allocateEmPKv) +STUB( + "peuXf6OVCgk", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData24getxPsnAtomicOperationIdEv) +STUB( + "pey3KFG3eb8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEmmEv) +STUB("pf0-lfD-+mk", _ZN7WebCore10TimeRangesC1Edd) +STUB( + "pf02T+-lqZs", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification14NewRoomMessageEE19setCustomReturnCodeEi) +STUB("pf2fwfamoG0", _ZNK7WebCore24CoordinatedGraphicsLayer17usesContentsLayerEv) +STUB("pf628cq+CQ4", _ZN3sce2np18HttpConnectionPool6IsFullEv) +STUB( + "pf6t9snlC+E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEEptEv) +STUB("pfBItkEwD0U", _ZN7WebCore18ImageBufferBackendD1Ev) +STUB("pfCKv1MsrF0", _ZN7WebCore16convertToIntegerImEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB("pfDXjZM40pA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus8fromJsonERKNS_4Json5ValueE) +STUB("pfEdqnJygn4", _ZN3JSC12StackVisitor13gotoNextFrameEv) +STUB( + "pfFcBByTwRU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) STUB("pfJgSA4jO3M", sceNpAtomicInc32) +STUB( + "pfLlLLvaxVY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEdeEv) +STUB( + "pfPsbP7fkBA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEE11release_refEv) +STUB( + "pfSFSC5piwM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEmmEv) STUB("pfTzSIZFIwQ", sceSocialScreenReserveHighFrameRateVideoCaptureRequest) +STUB("pfXiPsHcrfE", Java_sun_awt_GnmUtils_bdjbgLock) STUB("pfaJtb7SQ80", sceNpWebApiDeleteExtdPushEventFilter) +STUB("pfbhDk0QFBU", _ZN7WebCore8SVGNames9feTileTagE) STUB("pfiqU2f6PQY", sceCamera2SetGamma) STUB("pfn3Fha1ydc", sceNetEmulationSet) +STUB("pfn513lUppA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEED2Ev) +STUB( + "pfp-fm4gHng", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEE6assignEPS7_PFvS9_EPNS2_10LibContextE) +STUB("pfrX1wK6Pn4", _ZNK7WebCore8Document13axObjectCacheEv) +STUB("pfsfgcIdv8o", utext_next32From_67) STUB("pfz4rzKJc6g", sceUserServiceSetSaveDataSort) +STUB("pg-rfgBX5i0", _ZN7WebCore6ISOBox14minimumBoxSizeEv) +STUB("pg1nCPwIcMI", mono_arch_build_imt_thunk) +STUB("pgAUdhIEdgc", _ZN3sce7Toolkit2NP2V23TSS7TssDataC2Ev) +STUB("pgCwGXHuMSA", _ZN3JSC7Symbols31promiseStateRejectedPrivateNameE) STUB("pgFAiLR5qT4", sceNgs2SystemQueryBufferSize) +STUB( + "pgHUgJQ9YIE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEE11release_refEv) +STUB("pgJiHTB0vas", _ZN3WTF11Persistence7DecoderC2EPKhm) +STUB("pgMrBCaUTSE", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Challenge10ChallengesEED2Ev) +STUB( + "pgQMZdH6zhc", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10setString1EPKc) +STUB("pgTD0qw023s", _ZN7WebCore15JSFetchResponse14finishCreationERN3JSC2VME) +STUB("pgTUnz0y0Z4", _ZN3JSC2VM14throwExceptionEPNS_14JSGlobalObjectENS_7JSValueE) +STUB("pgUZpAErN+k", Java_java_util_zip_Deflater_getBytesRead) +STUB("pgY7Rg3HlJA", _ZNK7WebCore23AuthenticationChallenge20authenticationClientEv) +STUB( + "pgbZH0LZY-4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEEaSERKSA_) +STUB("pgcFR5TmZp4", u_strToJavaModifiedUTF8_67) STUB("pgcNwFHoOL4", sceNpTusGetMultiSlotDataStatus) +STUB("pgcpl5MSryg", _ZN3sce3pss4core7runtime20TerminateDiagnosticsEv) +STUB("pgfsfmVnZ80", _ZN7WebCore15SQLiteStatement14executeCommandEv) +STUB( + "pgjpsWo5Juc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEppEi) +STUB( + "pglLf7ffiao", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEmmEi) +STUB("pgmsbivJe6E", NET_GetSockOpt) +STUB("pgnOeOF2Nkc", _ZN7WebCore4Node11removeChildERS0_) +STUB("pgneomvAf9A", _ZN7WebCore11DisplayList20EndTransparencyLayerC1Ev) +STUB("pgrAmiR9KXc", png_create_read_struct) +STUB( + "pgtcMHy+JBg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEppEi) +STUB("pgvyZZ+d1ck", u_strCompare) +STUB("ph1MliUBME4", pi_lo) +STUB( + "ph8dhOGEod0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEE11get_deleterEv) +STUB("phGnhQ1dkQg", _ZN3sce7Toolkit2NP2V27Session17SessionInfoUpdateC1Ev) +STUB( + "phHXsd0zfno", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeaderD2Ev) +STUB("phLqTXCRrKs", _ZNK7WebCore9FrameTree11scopedChildERKN3WTF10AtomStringE) +STUB("phTWWsmF8Bw", _ZN3JSC18GCActivityCallback21s_shouldCreateGCTimerE) +STUB("phfrEjuQHv4", _ZNK7WebCore21UserContentURLPattern7matchesERKNS_3URLE) +STUB("phfswsU36v0", GCC_except_table554) +STUB( + "phhLKBZA5T4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEC1ERKS7_) +STUB("phi4au-2t04", FTA_Export_Module_cff) +STUB("phjL3OaXy2Y", _ZN3sce7Toolkit2NP2V211SharedMedia6Videos5resetEv) +STUB("phnc2tr9Qpo", mono_threads_attach_tools_thread) +STUB("phnjLKz4njM", aio_cancel) STUB("php5E0sv9F0", sceDeci4hDrfpOpen_fuse_fullpath) +STUB("phpvMCk4Thw", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V19JoinStateEEmmEv) +STUB( + "phqcPGBe3jc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("phrfcTjyAjg", rgctx_fetch_trampoline_rgctx_106_p) +STUB( + "phs4MSUNkNA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEppEv) +STUB( + "phueB6QtB5o", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) STUB("pi90NsG3zPA", sceLibcMspaceCreateForMonoMutex) +STUB("piCcjGsXCFA", _ZN3sce7Toolkit2NP2V26Friend7Request10GetFriendsD2Ev) +STUB( + "piFbAbHqJzo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEEC2ERKSA_) +STUB("piG6ktf2BTU", _ZN15AbstractStorage14StorageManager20get_service_instanceENS_11ServiceTypeE) +STUB("piIWwrIiWBo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEppEi) +STUB("piJabTDQRVs", _ZNSbIwSt11char_traitsIwESaIwEE6assignERKS2_mm) +STUB("piKOKYLjAKM", _ZN4IPMI4impl10ServerImpl18doAsyncCallRequestEiPvi) +STUB( + "piNyT-1unL4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEED2Ev) +STUB("piQw9Ke3H9E", mono_assembly_open) +STUB("piUmuhIuQBs", _ZN3WTF3URL21setFragmentIdentifierENS_10StringViewE) +STUB( + "piWGad-OQsI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE8copyFromERKS9_) +STUB("piWdZNlOTLo", glCopyTexSubImage3D) +STUB( + "piYVneH1f8I", + _ZN7WebCore12ChromeClient24didAssociateFormControlsERKN3WTF6VectorINS1_6RefPtrINS_7ElementENS1_13DumbPtrTraitsIS4_EEEELm0ENS1_15CrashOnOverflowELm16EEE) +STUB( + "piev9QvnVfA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE21intrusive_ptr_sub_refEPS7_) +STUB("pigZNPpN0eE", mono_arch_setup_jit_tls_data) +STUB("pijY8IMRCTQ", _ZN3sce7Toolkit2NP2V29Messaging12Notification18NewGameDataMessageD1Ev) +STUB("pimWNsC+fcM", _ZN7WebCore24FrameDestructionObserverD2Ev) +STUB("pirtQS12b7E", _ZN3sce7Toolkit2NP2V212EventsClient12EventDetails22MAX_NUM_RELATED_EVENTSE) +STUB( + "piwaHUn7QjQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEC2EPS6_PNS2_10LibContextE) +STUB( + "pj2BLRex3hI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEE8capacityEv) +STUB( + "pj5WrKeK87g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEEaSERSA_) +STUB( + "pjBb1tD5BdA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEEaSERSA_) +STUB("pjFe3a7J1Qg", _ZN3JSC8Debugger13pauseIfNeededEPNS_14JSGlobalObjectE) +STUB("pjGOFX2e3MM", _ZN7Nicosia16SceneIntegration6createERNS_5SceneERNS0_6ClientE) +STUB("pjNd-xUVAdU", _ZN3sce2np10JsonObject8SetFieldEPKcmPPNS0_10JsonNumberE) STUB("pjPCronWdxI", scePadVirtualDeviceDisableButtonRemapping) +STUB( + "pjVGJ0B1cfo", + _ZN7WebCore14DocumentLoader21setCustomHeaderFieldsEON3WTF6VectorINS_18CustomHeaderFieldsELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB( + "pjVbgaScJWc", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_34DetailedProductInfoListInputParams9ProductIdEE8allocateEmPKv) +STUB("pjWdrjrTepQ", _ZN3sce2np10JsonNumberD2Ev) +STUB("pjYjuwxaZYI", _ZN7WebCore8SVGNames20maskContentUnitsAttrE) +STUB("pjZ+3rsSJbY", + _ZN3WTF8JSONImpl9ArrayBase7asArrayERNS_6RefPtrINS0_5ArrayENS_13DumbPtrTraitsIS3_EEEE) +STUB("pjcKlYf+CRY", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V115CompetitionTypeEEC2EPS6_) +STUB("pjgp0s6o2PY", _CompoundTextData_67) STUB("pjkDsgxli6c", sceVideoOutModeSetAny_) +STUB( + "pjtBReGInLo", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot19unsetnpServiceLabelEv) +STUB("pjv9sziz-UE", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_28AdditionalSessionInformationEED1Ev) STUB("pk0AuomQM1o", sceHttpSetHttp09Enabled) +STUB("pk3Ve1iKYlg", _ZZ16_SetgloballocaleE10registered) +STUB("pk3gvztshvk", mono_aot_JSC_Netplt_end) +STUB( + "pk4Pu8Ljs98", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEED2Ev) STUB("pk4p3CEJflE", sceFaceIdentifyLiteGetWorkingMemorySize) +STUB("pk6gDcQRKxs", cairo_font_options_set_subpixel_order) +STUB( + "pk78PSpgheI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEppEv) +STUB("pkGTJH2IstM", u_memchr32) +STUB("pkGd7QQqUPc", utrie_unserialize_67) +STUB( + "pkKfmORC96w", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("pkP97nU1QO4", WKPageConfigurationSetWebsiteDataStore) +STUB("pkRrHiX3o1s", mono_aot_Sce_Vsh_Orbis_ContentManagerjit_code_end) +STUB( + "pkTwnsB6jVQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEC2EPS8_) +STUB("pkWZ8Cj8AOM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V110UpdateModeEEneERKS7_) +STUB("pkY05qCmfDU", _ZN3JSC24TerminatedExecutionError6s_infoE) +STUB( + "pkY4tvgkS8A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEE7get_refEv) +STUB("pkYiKw09PRA", fseeko) +STUB("pkbUKLl2x8Y", mono_exception_from_name) +STUB("pkp3QbugMSA", uloc_setDefault_67) +STUB( + "pkrLr63jSpA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE3endEv) STUB("pkri5OAPsJk", sceOpusCeltDecTerminate) +STUB("pkuKqhkpVG4", WKPreferencesSetCaptureVideoInGPUProcessEnabled) +STUB("pkvTLVJ+Crs", _ZN7WebCore18JSHTMLMediaElement9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "pl0-DMiyMy8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE4sizeEv) +STUB("pl1KxL35BEA", rgctx_fetch_trampoline_mrgctx_2) +STUB("pl2aP-pdYRc", ucnv_detectUnicodeSignature) STUB("pl4pWsecyrY", sceFiosFHPreadv) +STUB("plFfI6NhbaM", _UTF16BEData_67) STUB("plK52OfeEIc", sceShellCoreUtilGetUserIdOfMorpheusUser) +STUB("plOum3e+U+Y", _ZN7WebCore12SharedBuffer6appendEPKcm) +STUB("plP0UcQ6jRk", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11InvitationsEED2Ev) +STUB("plUh+Axzi30", + _ZNK3sce2Np9CppWebApi12Leaderboards2V122GetRankingResponseBody22getLastUpdatedDateTimeEv) +STUB("pla0a0fKGeM", GCC_except_table203) +STUB("plbxmi4Te84", WKPageGetSourceForFrame) +STUB( + "plc8gLfdRIg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE6insertENS2_13ConstIteratorIS9_EERKS9_RSC_) +STUB("pldj9rH-ldA", _ZN7WebCore8SVGNames13clip_pathAttrE) +STUB( + "pleuuED1nRY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB("plgjsu34VAA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE8pushBackERKS8_) +STUB("pliO538pAGM", _ZTVN7WebCore11DisplayList15DrawNativeImageE) +STUB("pllCQeJFVOA", mono_aot_Sce_Vsh_Orbis_BgftAccessorjit_got) +STUB("pllJ6xDOUj8", _ZNK7WebCore13ContainerNode17firstElementChildEv) STUB("plrvkKV-6B4", sceMusicCoreServerSelectCore) +STUB( + "plvkkA-vsRM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEE11release_refEv) +STUB("pm1zY5K6mBA", _ZN3JSC12CachePayloadC2EOS0_) +STUB( + "pmANUMgPHTU", + _ZN3sce2Np9CppWebApi12Leaderboards2V112EntryFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_5EntryEEE) +STUB( + "pmBcVkOdcls", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEE11get_deleterEv) +STUB("pmGIATxaodw", _ZN3sce2Np9CppWebApi7Matches2V117ResponseMatchTeam12unsetMembersEv) STUB("pmHBFJyju9E", sceNpUtilGetWebApi2FakeRateLimit) +STUB( + "pmHLV+ygY8E", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_11ProductInfoENS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv) +STUB( + "pmKJmr54KI4", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot13isInitializedEv) +STUB( + "pmLjYlo30E8", + _ZN23sceMetadataReaderWriter15ParserInfoTable18registerParserInfoERKSt6vectorINS_10ParserInfoESaIS2_EE) +STUB( + "pmNGAJT0a5k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("pmS3ZsTZjRo", _ZN7WebCore10OriginLockD1Ev) +STUB("pmTLXT9+iZ8", mono_btls_x509_get_issuer_name) STUB("pmW5v9hORos", sceUserServiceSetPlayTogetherFlags) +STUB( + "pmYCSFQ3s8I", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEC2EPS8_) +STUB("pmZ0xgBMeqo", _ZN7WebCore12BlobRegistryC2Ev) +STUB("pmZi4yM8pxM", WKBundleFrameAllowsFollowingLink) +STUB( + "pmgE9a-bpHQ", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectatorC1Ev) +STUB( + "pmidbiFcQTs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEEC1ERKSA_) STUB("pmjobSVHuY0", sceNetCtlApRegisterCallback) +STUB("pmlJvP+0kb0", u_isMirrored_67) +STUB("pmqZU82Xnbo", _ZN3WTF11Persistence7EncoderlsEi) +STUB("pmsiKjV1nU0", _ZN7WebCore10JSLocation12getPrototypeEPN3JSC8JSObjectEPNS1_14JSGlobalObjectE) +STUB("pn+qaJirfGI", _ZN3sce2np14JsonObjectImplD1Ev) +STUB("pn25GI6nxCY", EC_KEY_set_group) +STUB( + "pn6mAzCPrQY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEplEm) +STUB("pn8nk-yt6yU", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V224TestForProfanityResponse10setMessageEPKc) +STUB("pnGWJKqlAss", WKPageGetBytecodeProfile) STUB("pnHR-aj9edo", sceUserServiceSetGlsCameraReflection) +STUB( + "pnHs8kwO0NU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEE11get_deleterEv) +STUB("pnKvyFASuLM", mono_aot_Sce_Vsh_Np_Managermethod_addresses) +STUB("pnNMkgu6kNQ", JVM_ClassDepth) +STUB("pnViDRPI0YM", _ZN7WebCore17PageConsoleClient10profileEndEPN3JSC9ExecStateERKN3WTF6StringE) +STUB( + "pnY3iN-5O9A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEEC1Ev) STUB("pnZXireDoeI", scePadDisconnectDevice) +STUB( + "pnbkxcj4FKg", + _ZN3sce2Np9CppWebApi14SessionManager2V136RequestPlayerSessionSpectatorFactory7destroyEPNS3_29RequestPlayerSessionSpectatorE) +STUB( + "pncKzlpsGBs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEptEv) +STUB( + "pngYSqXU4JA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("pngra5JlGpI", _ZN9Inspector24RemoteControllableTargetC2Ev) +STUB("pnhfr5I83G8", _LMBCSData5_67) +STUB("pnhvMEwCg3A", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEEC1Ev) +STUB("pnppB2o6Mz4", _ZN9MmsMp4BoxD0Ev) +STUB( + "pnqlQsByWBQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEE11get_deleterEv) +STUB("pnrTbQPxeSE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEC1ERS7_) +STUB("pnrTmk9jY8s", _ZN3WTF16AtomicStringImpl11addSlowCaseERNS_10StringImplE) +STUB( + "pnxT7ugMINU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE8pushBackERKS8_) +STUB( + "pnzAE1C-qYA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("po1M8887cuw", setVideoMode) +STUB("po1PLRReuiA", + _ZN3sce2Np9CppWebApi14SessionManager2V131JoinedPlayerSessionWithPlatform13unsetPlatformEv) +STUB( + "po1VWYQ8bno", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) STUB("po1X86mgHDU", sceSslEnableVerifyOption) STUB("po33migRv1I", sceMbusDebugSetOtherProcessExcludedAction) +STUB( + "po5vyX+Wq3A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEE7add_refEv) +STUB("po7-qgrfFYE", _ZN7WebCore12ChromeClient14elementDidBlurERNS_7ElementE) +STUB( + "po78zwMkJ-I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEED2Ev) STUB("po9eImAEhY4", sceVoiceChatRequestRegisterSession) +STUB("poNkx+sxJwo", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEE5resetEPS6_) +STUB( + "poQIXjmdiXw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEC2Ev) +STUB("poQaKh1C0pI", _ZNK7WebCore8FormData14asSharedBufferEv) +STUB("poR69U9yJdc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEEaSERKS7_) +STUB("poSZevJzCfA", _ZN3WTF21sentenceBreakIteratorENS_10StringViewE) +STUB("poXzXMJahvY", _ZN3sce7Toolkit2NP2V24Core7Request20DefaultRequestParamsC1Ev) +STUB("poYmiDn8pMc", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEEC2Ev) +STUB("poZA3taGwok", _ZN23sceMetadataReaderWriter10jpegParser18jpegParserFinalizeEv) +STUB( + "podVPPEQoYo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEED2Ev) +STUB("poiq+MU6ve8", __asan_poison_intra_object_redzone) +STUB("poksl3FygPM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session14InvitationDataEE3getEv) +STUB("ponsEALyh+U", + _ZN7WebCore6DOMURL15createPublicURLERNS_22ScriptExecutionContextERNS_14URLRegistrableE) +STUB("popS2EonCvE", YGNodeStyleSetMinHeight) +STUB("poqHjBxSoWs", _ZN3JSC20JSStringHeapCellTypeD0Ev) +STUB("potS1HOUEe4", _ZN3JSC12SymbolObjectC1ERNS_2VMEPNS_9StructureE) +STUB("pp+0lObTso0", _ZN3JSC12CachePayloadC1EOS0_) +STUB("pp-4dgShzik", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEEC2Ev) +STUB( + "pp-4lD+ZtPc", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions28getxPsnAcceptPlatformNamePs5Ev) +STUB("pp88xnRgJrM", _ZN3sce2np15CancelableScopeC2Ev) +STUB( + "ppDbdCtJ7iI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("ppGBCnDG3vg", g_slist_length) +STUB("ppGQy8LSfjI", _ZN3NTF18CreationParametersC1Ev) +STUB( + "ppJ4ozefjhQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEED1Ev) +STUB("ppKEnUaCRFE", mono_aot_Sce_Vsh_RequestShareStorageWrapperjit_got) +STUB( + "ppNxg297XLg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEE11get_deleterEv) +STUB("ppR2zSPkEJE", _ZN9Inspector20InjectedScriptModuleD2Ev) +STUB( + "ppSOTl37-+k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEC1Ev) +STUB( + "ppU82Obfy84", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEC2Ev) +STUB( + "ppVmWy76iFA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEE7add_refEv) STUB("ppWFdoDMMSs", sceLncUtilGetAppIdOfMiniApp) +STUB("ppYD8W2a7NE", uset_applyPropertyAlias_67) +STUB("ppYGbPKiUxo", _ZN12video_parser17cTsFFLHndlManagerD2Ev) +STUB( + "ppaQfUmmLyw", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUser19unsetnpServiceLabelEv) +STUB("ppavVktd1RY", _ZN3JSC11ArrayBuffer22tryCreateUninitializedEjj) +STUB("ppgCt8zkm9o", mono_aot_Sce_Vsh_Np_Asmjit_code_start) +STUB("pphEhnnuXKA", _ZTISt7collateIwE) +STUB( + "ppjd1qDhrtI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEE5resetEPS6_) +STUB( + "pppF-YqaXbE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEEptEv) +STUB( + "ppsXSSP3exY", + _ZN9Inspector21PageBackendDispatcher28setCompositingBordersVisibleElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("ppuI25hXypA", _ZNK7WebCore22EmptyFrameLoaderClient9userAgentERKN3WTF3URLE) +STUB("ppyod3XEauc", _ZN15AbstractStorage14MemfileContent4OpenEit) +STUB( + "pq7sFJ6E6Sg", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEED1Ev) STUB("pq8SV3vBKGE", sceFsMountPartiallyCryptedDownloadData) +STUB( + "pq9ZdG93LCc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEED2Ev) +STUB( + "pqArETTj4rQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEEC2Ev) +STUB("pqHqTLkcCsI", _ZN7WebCore9HTMLNames10acronymTagE) +STUB( + "pqJpLI+u49o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEE21intrusive_ptr_sub_refEPS7_) +STUB("pqMwW+z6Bqk", _ZN3sce7Toolkit2NP2V27Ranking10UsersRanks5resetEv) +STUB( + "pqcl+yHDEsc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE7popBackEv) +STUB( + "pqgzzKTGrtw", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToPutPlayerSessionsNonPsnLeader35hasxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB("pqkUIVdtoD0", _ZN7WebCore8SVGNames4initEv) STUB("pqkwFXiIzQc", sceSdecGetVersionSwHevc) +STUB("pqm3fr0Gwig", _ZN7WebCore11FontCascadeC2ERKNS_16FontPlatformDataENS_17FontSmoothingModeE) +STUB( + "pqyKuI4+ybA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "pr23JEHeZSw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEC1EPKS8_) +STUB( + "prEXXn3y2lQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "prJ++4gQB9U", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionProperties9terminateEv) +STUB("prLlUz38GWA", _ZN3NTF5Cache16DiskCacheManagerD2Ev) +STUB("prSVrFdvQiU", CERT_getCertificateKeyUsage2) +STUB("prYOfcDkSOM", fuse_daemonize) STUB("prZNuK3iTi8", sceNpManagerIntTerm) +STUB("pra1acTrS9Y", _ZNK3WTF8JSONImpl9ArrayBase10memoryCostEv) +STUB( + "prdnkHm+2Dw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE7popBackEv) +STUB("pre9BjkyDhs", mono_runtime_invoke) +STUB("prj9aMR74bA", _ZN3sce2np3ipc10IpmiClient11IsConnectedEv) +STUB( + "prkiJfwOJF0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEC1EPNS2_10LibContextE) +STUB( + "prny-f68N0c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEaSERS7_) +STUB("prqMnBIs0A8", _ZNK7WebCore14CredentialBase4userEv) +STUB("prrajDZ+qo8", delegate_virtual_invoke_4_p) +STUB("prtyx-DpDa4", _ZN23sceMetadataReaderWriter16extractThumbnailERKSsjRNS_9ThumbnailE) +STUB("prvA2U9aEOI", _ZThn32_N7WebCore14DocumentLoader12dataReceivedERNS_14CachedResourceEPKci) +STUB( + "prvmTVTf+VU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEE5resetEPS9_) +STUB( + "pry1Wu-+oGc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE28getResponseInformationOptionEv) +STUB("ps1pljzurbc", unum_setSymbol_67) +STUB("ps246w9eXI8", _ZN3sce2npeqERKNS0_4TimeERK10SceRtcTick) +STUB( + "ps3D17Djuzk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEmmEv) +STUB( + "ps4+Mi9GiUk", + _ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_errorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_17PsnWebError_errorEEE) +STUB("ps6DScRSuzA", mono_aot_Sce_Vsh_GameCustomDatajit_code_start) +STUB( + "ps9dR2UwMZE", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemPropertiesD1Ev) +STUB( + "psAFGoh26OY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("psEBzx9eWFY", _ZN3sce7Toolkit2NP2V210Tournament12EventDetailsC2ERKS4_) +STUB( + "psHqSERB9-U", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("psL2NgHxoHk", _ZN9Inspector31RuntimeBackendDispatcherHandlerD1Ev) STUB("psLU09dc2Vc", scePsmUtilInitialize) +STUB("psMmvmdPKds", PEM_read_RSAPrivateKey) +STUB("psMw46v680s", mono_context_init) +STUB("psXSO6UJhdk", _ZN23sceMetadataReaderWriter13ParserManager20unregisterParserInfoEv) +STUB( + "psXX8fBD-dQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEE3getEv) +STUB("psb-WHk17uM", _ZN9Inspector33InspectorBackendDispatcherHandlerC2Ev) +STUB("psdqLsaPnkk", cairo_show_text) +STUB("psfRkWQkO6A", _ZN3sce7Toolkit2NP2V27Session8SessionsC2Ev) +STUB("psjVBg5y6OM", _ZN7bmalloc11IsoTLSEntryD0Ev) +STUB("pstHydwsxu8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEC1ERKS7_) +STUB( + "psv1BCNjMlo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEE11get_deleterEv) STUB("psv2gbihC1A", sceAudio3dReportUnregisterHandler) +STUB( + "psvXpSy4w6U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEC2Ev) +STUB("pswNs+jkuMs", mono_metadata_generic_class_is_valuetype) +STUB("psx0YiAKm7k", fegetenv) +STUB( + "pszaab3+KQ4", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12Notification14NetStateChangeEE12deepCopyFromERS8_) +STUB("pszozBA4Ceo", WKBundlePageSetFullScreenClient) +STUB("pt0Eyg26hqw", WKAXObjectRole) +STUB("pt1GkEbsFU0", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce19ServiceEntitlementsEE5resetEv) +STUB("pt5E-D13kf0", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession14getCustomData1Ev) +STUB("pt8E9JYqZm4", _ZN3sce2npneERKNS0_10NpOnlineIdES3_) +STUB( + "pt9I-cOjb+A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEppEv) +STUB("ptB75ZpQkTk", _ZNK7WebCore12CSSStyleRule12selectorTextEv) +STUB("ptE7eJxWp0c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE3endEv) STUB("ptEq8HFfa58", sceSystemTtsCancel) +STUB( + "ptHzPSL8UZA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEeqERKS9_) +STUB("ptJ0UzKA1RQ", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110ResultTypeEEeqERKS7_) +STUB("ptL8XWgpGS4", __clzsi2) +STUB("ptLHakydn9Y", JVM_DTraceIsSupported) +STUB("ptLO-Q70PM0", __CTOR_END__) +STUB( + "ptM3HXJZxAQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEED1Ev) +STUB("ptTcX4k6zB4", _ZN7WebCore17CSSPrimitiveValue13setFloatValueENS_11CSSUnitTypeEd) +STUB( + "ptWfe9KT6kk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEED1Ev) +STUB("ptYKwIWRtmg", SSL_get_wbio) +STUB("ptb571AzPy4", _ZN4IPMI4impl11SessionImpl7sendMsgEjPKvmPj) +STUB("ptcVrGLXo2g", _ZN7WebCore8SVGNames21feSpecularLightingTagE) +STUB("pte3M-79b9E", sqlite3_db_release_memory) +STUB("ptecTDe+jIU", _ZN3WTF9BitVector13OutOfLineBits7destroyEPS1_) +STUB("pthr+JHvjZI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEmmEv) +STUB("ptilqlqqqA4", ufmt_isNumeric_67) +STUB( + "ptnYYiZ9EZM", + _ZN3sce2Np9CppWebApi14SessionManager2V124SearchGameSessionFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_17SearchGameSessionEEE) +STUB("ptnisEt6NKA", mono_class_value_size) STUB("ptoJYu3CkyQ", sceMatRegisterOwner) +STUB( + "ptqBLEPkiy0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEE7add_refEv) +STUB("ptrpYTFs0Sc", _ZN3sce2Np9CppWebApi7Matches2V122RequestPlayerStatisticD2Ev) +STUB("ptwhA0BQVeE", _ZNSt6locale6globalERKS_) +STUB("pu1ZY4p73F0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEED2Ev) +STUB( + "pu2X4vOIY+k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE21intrusive_ptr_add_refEPS9_) STUB("pu39pU8UgCo", sceNpBase64Encoder) STUB("pu4kxXkYz3E", sceVideodec2CreateHevcDecoder) +STUB( + "pu6KdQ3Ob30", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("pu7PhyzEQj4", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_28ActivityFeedSharedVideoStoryEEeqERKS4_) +STUB("pu8CWYnACfE", _ZN7WebCore13isStartOfLineERKNS_15VisiblePositionE) +STUB( + "pu8rvX5Cs68", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEED1Ev) STUB("puHrnP8V-dY", sceMbusEventReceive) +STUB("puIp2blegQg", _ZN3WTF13StringBuilder6appendEPKDsj) +STUB("puKN8NkZWLw", _ZN3JSC7Symbols27compileStreamingPrivateNameE) +STUB( + "puLucQV9ugU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE4sizeEv) +STUB("puQuMVvVcwQ", _ZNK13MsvMetaEditor17isFragmentedMovieEj) +STUB( + "puS8i8qrHTo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEC1Ev) +STUB("puT82CSQzDE", sched_setscheduler) +STUB( + "puXXiEInTOQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEneERKS9_) +STUB( + "puakWgWqnmw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE4sizeEv) +STUB( + "pualRC7d67E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) STUB("pubVXAG+Juc", sceUserServiceSetNpOnlineId) +STUB( + "puesPxZFDaQ", + _ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer12setJoinStateERKNS3_16InitialJoinStateE) +STUB("pugWCMMWZ6w", _ZN7WebCore11BidiContext41copyStackRemovingUnicodeEmbeddingContextsEv) +STUB("pupKRlW6z-w", WKFrameCanProvideSource) +STUB("pv0SZf2Y4Rc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE5emptyEv) +STUB("pv2etu4pocs", remainder) +STUB("pv62hFssuN0", _ZN3JSC8JSObject6s_infoE) +STUB( + "pv7cJ4UKycQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE6resizeEj) STUB("pv9CI5VC+R0", sceVideoOutAdjustColor_) +STUB("pv9M2jHJ6iw", ksem_close) STUB("pv9qYGyI3+U", sceMbusSetUserMuteStatus) +STUB( + "pvAkZRnxwHg", + _ZN9Inspector31ScriptProfilerBackendDispatcher6createERNS_17BackendDispatcherEPNS_38ScriptProfilerBackendDispatcherHandlerE) STUB("pvGklMDOeSk", scePlayReadyMemAlloc) +STUB("pvKooBHIGck", JSRemoteInspectorSetInspectionEnabledByDefault) +STUB( + "pvQ+t1DFOJs", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "pvQ4lWmooiU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEptEv) +STUB( + "pvRf2YD38ao", + _ZN9Inspector27DOMStorageBackendDispatcher20clearDOMStorageItemsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("pvS3ah9jYFA", _ZL26_sceLibcDeleteArrayNothrowPvRKSt9nothrow_t) +STUB( + "pvSc2kfFbCw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEED1Ev) +STUB("pvTkErDXk9Y", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIjED2Ev) STUB("pvUFDOHilnE", sceAmprAmmCommandBufferDestructor) +STUB("pvVutouDb0k", _ZN7WebCore9HTMLNames8dataAttrE) +STUB("pvY8x-Orrtg", ucnv_getAliases_67) +STUB("pvlMMFCqIjo", + _ZNSt15basic_streambufIwSt11char_traitsIwEE7seekposESt4fposI9_MbstatetENSt5_IosbIiE9_OpenmodeE) +STUB("pvngPUCq7Ag", mono_aot_Sce_Vsh_Np_AppLaunchLinkunbox_trampolines_end) +STUB("pvqbxIs0WrE", _ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest17matchResultsIsSetEv) +STUB("pvrxLNz47ZY", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEEcvbEv) STUB("pvuuD5bRjf0", sceEsvmEngineMediaKeySystemAccessCreateMediaKeys) +STUB("pvw-vL7XCVU", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_20ChallengeRecvDetailsEEC1Ev) +STUB("pvyGn4aGOPg", _ZN7WebCore8Document35webkitWillEnterFullScreenForElementEPNS_7ElementE) STUB("pw+70ClLYlY", pthread_spin_lock) +STUB("pw+zuLAiI3U", JSPropertyNameAccumulatorAddName) STUB("pw7u7WgTeJs", sceRnpsAppMgrCreateUpdateRequest) +STUB("pw7y4QBCXho", + _ZNK3sce2Np9CppWebApi11Matchmaking2V121PlayerForTicketCreate6toJsonERNS_4Json5ValueEb) +STUB( + "pw8fw8zXV8Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE8capacityEv) +STUB( + "pwCgFRs7EGs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEptEv) +STUB( + "pwGsf78pCmc", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEEiRNS2_10LibContextEPT_m) +STUB("pwJkDsaYSPg", JSMemoryActivitySettingsConfigSCE) +STUB("pwK2decHfCE", _ZN7WebCore9HTMLNames6subTagE) +STUB("pwKvaV-T4UI", _ZNK7WebCore19HTMLOptGroupElement14groupLabelTextEv) +STUB("pwL2DHoqP74", udata_setAppData_67) +STUB( + "pwMf23mWGok", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEC1EPNS2_10LibContextE) +STUB( + "pwYzUX2AUj8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEC1EPS8_) +STUB("pwfB2NmlBYk", _ZNK3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap13getIsRecycledEv) +STUB( + "pwgFEtS6yX4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEEcvbEv) +STUB("pwl29nuNnqI", glDisable) +STUB( + "pwla28qrC5U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE4sizeEv) +STUB( + "pwlaDmjLRvg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEneERKS9_) +STUB("pwmheU-TDRE", _ZN3sce7Toolkit2NP2V26Friend12Notification16FriendlistUpdate5resetEv) STUB("pwnE9Oa1uF8", sceNpTusDeleteMultiSlotVariableA) +STUB( + "pws9868taPs", + _ZN7WebCore6Editor28replaceSelectionWithFragmentERNS_16DocumentFragmentENS0_17SelectReplacementENS0_12SmartReplaceENS0_10MatchStyleENS_10EditActionENS_22MailBlockquoteHandlingE) +STUB("pwsiDMmVexg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia11ScreenshotsEEC1Ev) +STUB( + "px-ljoRlBsM", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "px3NuWFK2ck", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScore25setrecordScoreRequestBodyENS1_6Common12IntrusivePtrINS3_22RecordScoreRequestBodyEEE) STUB("pxBsD-X9eH0", sceHttpDbgShowStat) +STUB("pxFnS1okTFE", _Fetch_and_8) +STUB("pxJceSvRIwo", mono_aot_Sce_Vsh_Messagesunbox_trampoline_addresses) +STUB("pxOxU2MPbqw", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification18NewGameDataMessageEEC2Ev) +STUB("pxPzCHnJ4SA", _ZN3sce2Np9CppWebApi14IdentityMapper2V312AccountIdMapD1Ev) +STUB("pxSamUuGTCA", mono_aot_Sce_PlayStation_Corejit_code_end) +STUB("pxaRurrLwhc", _ZN3NTF6Cookie11CookieJarDB10initializeEiPKc) +STUB( + "pxaiIdb3vm4", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129MatchCompletionRateProperties7setQuitERKNS1_6Common12IntrusivePtrINS3_30MatchCompletionRateQuitMetricsEEE) +STUB( + "pxeE7oPw2Jk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEE11get_deleterEv) +STUB( + "pxfOofcLLYU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEC1Ev) +STUB("pxnCmagrtao", listen) +STUB("pxnbpFzaPqQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEC1Ev) +STUB( + "pxqjxpEO7To", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE10setContextEPNS2_10LibContextE) +STUB("pxsEKRiWAMw", WKPageLoadAlternateHTMLString) +STUB( + "pxtarjzxY4o", + _ZN7WebCore8Document25setConsoleMessageListenerEON3WTF6RefPtrINS_14StringCallbackENS1_13DumbPtrTraitsIS3_EEEE) STUB("pxx-GoOSdw4", sceAgcAcbSetMarkerSpan) +STUB( + "pxznvCp8ZxQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEeqERKS9_) +STUB("py3XgZy9cec", T3lo) STUB("py6L8jiVAN8", sceKernelGetSanitizerMallocReplaceExternal) STUB("py8-vzIY-RY", sceNetCtlApDialogInitialize) STUB("py8p6kZcHmA", sceCameraRemoveAppModuleFocus) STUB("pyAyDVpDOhw", sceKernelGetProductCode) +STUB("pyBabUesXN4", _ZNSt10moneypunctIwLb1EEC1EPKcm) +STUB("pyCXumhqCwA", + _ZThn24_N9Inspector18InspectorHeapAgent17didGarbageCollectEN3JSC15CollectionScopeE) +STUB("pyKuV2SE-jQ", _ZN3JSC25JSSegmentedVariableObject17findVariableIndexEPv) +STUB("pyOvcVqEWm8", _ZN3JSC8DebuggernaEmPv) +STUB("pyQGSKQNhyc", _ZN3sce7Toolkit2NP2V210Tournament5EventC1Ev) +STUB( + "pyROYtDTUUE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEED1Ev) +STUB("pyTwHOBu94E", _ZN9Inspector28DOMDebuggerBackendDispatcherD2Ev) +STUB( + "pygrsRxjMH4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEdeEv) STUB("pyoZ0o2qhgE", sceTsEnableRepresentation) +STUB("pypgpxtISiE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEEplEm) +STUB( + "pyuM66t-j60", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEEcvbEv) +STUB("pyuaQ-qKOS4", _ZN3sce7Toolkit2NP2V212EventsClient7EventIdD1Ev) +STUB("pz4hSShqA4g", rgctx_fetch_trampoline_rgctx_55_p) +STUB("pzDvOlb2dm4", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error6toJsonERNS_4Json5ValueEb) +STUB("pzGuDRM9Xu4", _ZNK4Manx6Cookie14netscapeCookieEv) STUB("pzL+aAk0tQA", sceNpTrophySystemGetTitleSyncStatus) +STUB( + "pzPZVK1DHr4", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124NatConnectivityToMetrics18setConfidenceScoreERKi) +STUB("pzU95Jvku7A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEEppEi) STUB("pzUa7KEoydw", sceLibcMspaceIsHeapEmpty) +STUB("pzUm3CfzWjI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE5eraseENS2_8IteratorIS6_EERS9_) +STUB("pzbbsK7QLws", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEC2Ev) +STUB( + "pzcIMVDKvI4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEC2EPS8_) +STUB("pzfFqaTMsFc", _ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE) +STUB( + "pzhdkWrC-2c", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEptEv) +STUB("pzl-F73sa6k", xmlCtxtUseOptions) +STUB( + "pznxmo5J67Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEC1EPS7_PFvS9_EPNS2_10LibContextE) +STUB("pztV4AF18iI", sincosf) +STUB( + "pzxd5By92+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("pzz-Hxq0Grw", _ZN3sce7Toolkit2NP2V26Trophy7Request20GetTrophyPackSummaryC2Ev) +STUB( + "pzzgvXKyDvc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEmmEi) STUB("q+2W8YdK0F8", sceNgs2StreamResetOption) +STUB( + "q+50oeoRpnY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE6finishEv) STUB("q+7UTGELzj4", sceUserServiceGetLightBarBaseBrightness) +STUB("q+8lk-9sRWU", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetInteger5Ev) +STUB("q+9E0X3aWpU", _Stoull) +STUB("q+ABaps-NmI", rgctx_fetch_trampoline_mrgctx_9_p) +STUB("q+AdV-EHiKc", gamma_r) +STUB("q+Bo5mE87YU", mono_aot_Sce_Vsh_GriefReportStorageunbox_trampoline_addresses) +STUB("q+Fpzlz5LkQ", _ZN3JSC12SymbolObject6s_infoE) STUB("q+GZ0W9lx9A", sceNpUniversalDataSystemIntDestroyContext) +STUB("q+NxQ4ogEDw", WKFrameInfoGetTypeID) +STUB( + "q+P0Hi89Q0Q", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEneERKS9_) +STUB( + "q+QLqa7il+Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE5beginEv) STUB("q+Qw1ESxCj8", sceCompositorIsDebugCaptureEnabled) +STUB( + "q+RCF9lNURo", + _ZN9Inspector24NetworkBackendDispatcher16resolveWebSocketElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("q+SQjILxj1o", _ZN7WebCore37CrossOriginAccessControlCheckDisableraSERKS0_) +STUB("q+Tr434xeJw", g_try_realloc) +STUB("q+cZ3BJhN8k", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12string5IsSetEv) +STUB("q+cypk3W8IM", FTC_ImageCache_LookupScaler) +STUB( + "q+eNVNyIPV0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "q+fgXapQYeA", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10getString7Ev) STUB("q+lPgqZniW4", sceRegMgrGetVersion) STUB("q+pTE+YnGkg", sceBgftServiceIntDownloadResumeTask) +STUB("q+s0Lqw-GCQ", _ZNK7WebCore5Frame13ownerRendererEv) +STUB("q+u+S1lf-zM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE5emptyEv) +STUB("q+uCQLffwQE", _ZN3sce2np3ipc17ServiceIpmiClient14PollEventQueueEiPvm) +STUB("q+zBzsf8GeM", _ZNK3sce2Np9CppWebApi6Common6VectorIjE5beginEv) +STUB("q-0w-Ex39L4", _ZN7WebCore11MathMLNames13separatorAttrE) +STUB( + "q-1MtCzGtyc", + _ZN3sce2Np9CppWebApi7Matches2V127ResponseInGameRosterFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_20ResponseInGameRosterEEE) +STUB("q-6FQH5JAwM", uprv_decContextZeroStatus_67) STUB("q-89AuIWC3s", sceOpusSilkEncTerminate) +STUB( + "q-CXJB9sW+g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEEptEv) +STUB("q-CaGIByNbY", WKCertificateInfoCopyVerificationErrorDescription) +STUB("q-CnH+l6Fd0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEED1Ev) +STUB("q-Hwxr4yls0", WKCookieManagerSetClient) +STUB("q-J0pWv2yqE", WKPreferencesResetAllInternalDebugFeatures) +STUB("q-ROGvfeJP8", + _ZSt9use_facetISt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale) STUB("q-Sd1ZBupYw", ScePsmMonoPrivilegesStartInit) +STUB("q-Ue2YZGwYU", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V18Variable9getSlotIdEv) +STUB("q-WOrJNOlhI", _ZNSt15_Num_float_base10has_denormE) +STUB("q-aXv0dOJeo", _ZN3sce2Np9CppWebApi14SessionManager2V116FromNonPsnMemberD2Ev) +STUB("q-fR65TgwIg", _ZN3sce7Toolkit2NP10IdDatabaseD2Ev) +STUB("q-hZf47nHhQ", __asan_memset) STUB("q-kGyQJyDoI", sceBgftServiceIntDownloadClearStats) STUB("q-kxuaF7URU", sceGameLiveStreamingSetMaxBitrate) +STUB( + "q-l4nEK8s7Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEED1Ev) +STUB("q-lWNyZ6brg", _ZN7WebCore9FrameView17paintControlTintsEv) +STUB("q-oCmZIJo8E", _ZN3WTF18ParallelHelperPoolC1Ev) +STUB( + "q-oWggxB6xI", + _ZNK3sce2Np9CppWebApi14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBody14getCustomData1Ev) STUB("q-qhDxP67Hg", sceGnmSetResourceRegistrationUserMemory) +STUB("q-u3UcSDz54", _ZN3WTF10TextStreamlsEPKv) +STUB("q-uIM1VNvwg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11UserProfile10NpProfilesEE3getEv) +STUB( + "q-wOgRKk2oc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEE11release_refEv) +STUB( + "q-xMRMjkQ1s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEmmEv) +STUB( + "q-yZd-6+Jg0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE5beginEv) +STUB("q0-8fEJ1Ut4", + _Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm14TcpPerfCounterE20SceRazorGpuBroadcast) +STUB( + "q0-OyIMk1mk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEED2Ev) +STUB( + "q03+3pJ55HY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEEC1ERSA_) +STUB("q05IXuNA2NE", _ZTv0_n24_NSt13basic_istreamIwSt11char_traitsIwEED1Ev) +STUB("q090kVFxvro", _ZN4IPMI7SessionC2Ev) +STUB("q09ozMR1Gr4", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEEppEv) +STUB("q0CBI7DJ0X8", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfilesC1Ev) +STUB("q0F6yS-rCms", strcspn) +STUB( + "q0GWpcvfbCs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) STUB("q0NXsQTzAI0", sceDepthUpdate) +STUB("q0Vs36lLVrw", generic_trampoline_aot_plt_p) STUB("q0W5GJMovMs", sceVideodecDecode) +STUB("q0er6lvq1sc", _ZN3JSC7JSProxy12setPrototypeEPNS_8JSObjectEPNS_14JSGlobalObjectENS_7JSValueEb) +STUB("q0fsHjITt5A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEED2Ev) STUB("q0gN8e4VLZo", sceVideodec2TermLibrary) +STUB("q0iQ6QttHjQ", glCreateProgram) +STUB("q0k+n0PWmZs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEEdeEv) +STUB( + "q0l8RtJhP0M", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEeqERKS9_) +STUB("q0lU6mBq1fA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEdeEv) +STUB("q0mkcionphc", _ZN3WTF11Persistence5CoderINS_6StringEE6decodeERNS0_7DecoderERS2_) +STUB("q0q2zzV9Z24", _ZN7WebCore9HTMLNames16onmouseleaveAttrE) +STUB( + "q0qPum3Q9CA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEptEv) +STUB("q0qeup2r7hA", _ZNK3sce4Json6String8capacityEv) +STUB("q0vhGj7e1tU", WKPageDidAllowPointerLock) +STUB("q0xAlUzTa-Y", _ZN7WebCore21DiagnosticLoggingKeys40backgroundCPUUsageToDiagnosticLoggingKeyEd) +STUB("q1+R1z2aE0E", _ZN3WTF13FastBitVector10clearRangeEmm) +STUB("q1-YfqGcZYE", _ZN9Inspector23TargetBackendDispatcherD1Ev) +STUB( + "q18lVQ14bGc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("q1C32LVaXGc", mono_aot_I18N_MidEastmethod_addresses) +STUB("q1GAmySAovY", _ZN7WebCore22FontCascadeDescriptionC1Ev) STUB("q1GxBfGHO0s", sceRazorCpuWorkloadRunEnd) +STUB("q1HXJrqXhwQ", _ZN9Inspector26AnimationBackendDispatcherD2Ev) +STUB( + "q1IQU-Y5ck8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("q1OvUam0BJU", __isthreaded) +STUB( + "q1QAh+K5zeE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEppEv) +STUB( + "q1X18lx5Jx0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEaSERS7_) STUB("q1X3ShQEW00", sceCesEucCnUcsProfileSetSbcs) STUB("q1cHNfGycLI", scePadRead) +STUB("q1eydak0HVM", _ZN3sce3Xml3Dom4NodeD1Ev) +STUB("q1hQTVuwUIw", ubidi_reorderVisual_67) +STUB( + "q1iyGeL-8JY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEEaSERSA_) +STUB("q1ocbbE7dmo", _ZN3sce2Np9CppWebApi6Common8IteratorIdEmmEi) +STUB("q1p1LN5w4Bc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEEppEi) +STUB( + "q1pkKY77ZOo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEE7get_refEv) +STUB("q1vrENqA6Eg", + _ZN7WebCore8Settings24setStorageBlockingPolicyENS_14SecurityOrigin21StorageBlockingPolicyE) +STUB("q2+Sa0MIe94", udat_countAvailable_67) +STUB("q23TogAtn1A", JNU_ThrowByName) STUB("q24aRzI78Sk", scePlayReadyReaderBind) +STUB("q28pJ1goHew", _ZN3sce7Toolkit2NP16AttachmentDetailC2Ev) +STUB("q29R3lLE4nY", WKPreferencesGetDoNotTrackEnabled) +STUB( + "q2CTOWjhG1g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEED1Ev) +STUB( + "q2Dkf9pgkhA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEplEm) +STUB("q2ESpjCIk7w", FTA_Remove_Module_autofitter) +STUB("q2EidydGLu8", WKBundlePostSynchronousMessage) +STUB("q2GoS4tv3-A", _ZN7WebCore12ChromeClient32didInvalidateDocumentMarkerRectsEv) +STUB("q2USyzLF4kI", _ZN3sce2np6ObjectdaEPvR16SceNpAllocatorEx) +STUB( + "q2aBpWDfJx8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEneERKS9_) STUB("q2eqZBGasE0", sceDeci4hOpen) +STUB( + "q2gueVMn-bs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEC1ERKS7_) +STUB( + "q2hA3hwP+Cw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEE5resetEPS8_) +STUB( + "q2iR7btmAQY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE5emptyEv) +STUB("q2mzzZIG8xg", + _ZN3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator12setJoinStateERKNS3_9JoinStateE) +STUB( + "q2riJZgEHLQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) STUB("q2tsVO3lM4A", sceNpCondInit) +STUB("q2yvLSzfNHg", JSDebuggerStart) +STUB( + "q32ZB4cii7k", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V333CommunicationRestrictionStatusApi44ParameterToGetCommunicationRestrictionStatusC2ERS5_) +STUB("q32rwiywweU", mono_aot_Sce_Vsh_Np_Trophyjit_code_end) +STUB( + "q350DDiwlvo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE10setContextEPNS2_10LibContextE) +STUB( + "q38gHQZkSQ8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "q3CSy0rfHgw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE5beginEv) +STUB( + "q3FYjx4I83Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEplEm) +STUB("q3GPwVLyGEQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEED2Ev) +STUB("q3ISwoRCq-s", mono_btls_ssl_ctx_up_ref) STUB("q3M7XzBKC3s", sceNpGetAccountDateOfBirthA) +STUB( + "q3PvR6Z6cAQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEE5resetEPS8_) +STUB( + "q3Rzac2pvA0", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectatorC2Ev) +STUB( + "q3X40cSiIWk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEaSERKS7_) +STUB("q3XFQI9e0eQ", _ZN3sce7Toolkit2NP2V210Tournament6EventsC1ERKS4_) +STUB("q3YO1c0RqFo", _ZNK3sce4Json6Object8iteratoreqERKS2_) +STUB( + "q3cOoF9WtTg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) STUB("q3e8+nEguyE", sceHmdReprojectionStart2dVr) STUB("q3m8gBZYTcI", sceIduUtilSetSchedule) +STUB("q3mX36AQeC4", u_strFromUTF32WithSub) +STUB("q3nWOTJHIM4", glGetUniformfv) +STUB("q3s6++iIzjE", _ZThn16_N3sce2np9LocalFileD1Ev) +STUB( + "q3ukGQfN0HQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEEaSERKSA_) +STUB( + "q3vr2hnBVdY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEE11get_deleterEv) +STUB( + "q456-F0+KXU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEmmEi) +STUB("q47Oj+x2btE", __ubsan_handle_missing_return) +STUB("q4Do+BaViWk", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18GameCustomDataItemEEC2Ev) STUB("q4EyfhLHc0Q", sceRazorCpuSetLiveServerThreadSettings) +STUB("q4G7qxTJWps", _ZN3sce2np7HttpUriC2EP16SceNpAllocatorEx) +STUB("q4H1OsUcung", _ZN7WebCore20TransformationMatrix8rotate3dEdddd) +STUB( + "q4RDnrN5wVQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE6resizeEj) +STUB("q4RWb8nK8Z0", mono_aot_Sce_Vsh_WebViewDialogunbox_trampolines_end) +STUB("q4UFICay6Hk", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEED1Ev) STUB("q4VuU-QsLOE", sceAgcAcbMemSemaphore) +STUB("q4qhGebYuGI", ft_mem_qalloc) +STUB( + "q4wDcUUSLdI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEED1Ev) +STUB("q4zrlHzLmi4", WKUserContentControllerAddUserScript) STUB("q527znq3hOE", sceEsvmEngineMediaKeysDestroySession) +STUB("q55uzKbhV5M", __tsan_write2) +STUB("q57yEzL0cG8", JNU_ThrowArrayIndexOutOfBoundsException) +STUB("q59Hw1J7Bik", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEED2Ev) +STUB( + "q59TWRRN6-w", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEdeEv) +STUB( + "q5AYLQjLe+E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEmmEv) +STUB( + "q5AmdDIYhCY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEdeEv) +STUB( + "q5E56q+kAVk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEE3endEv) +STUB( + "q5EC0HWEL94", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("q5G7i+IAvpM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEC2Ev) +STUB( + "q5MLMU6psnY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE10setContextEPNS2_10LibContextE) +STUB("q5MWYCDfu3c", strtoimax) +STUB( + "q5Q6Gv47ISI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("q5V1eZmYXKo", sqlite3_prepare_v2) STUB("q5VWW64fkh4", sceMusicCoreServerPlaySpUri) +STUB("q5Vv5jMz8mU", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEEdeEv) +STUB("q5WzucyVSkM", rintf) +STUB( + "q5byhpKAqqk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEE5emptyEv) +STUB( + "q5fTRfLWvrY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE3endEv) +STUB("q5fjKos2e+Y", _ZN3JSC7Symbols33arrayIteratorFieldKindPrivateNameE) +STUB( + "q5g9RXvIiZE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEEptEv) +STUB( + "q5mkXmGzOoM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEC1Ev) +STUB( + "q5qMWcL5hqU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEC1EPKS8_) +STUB("q5rDcr3qIgU", delegate_virtual_invoke_7) +STUB("q5ryZo1EDKI", _ZN3sce7Toolkit2NP2V28Matching7Request10CreateRoom22MAX_SIZE_LOCALIZATIONSE) +STUB("q5ucPOQPJv0", WKBundleBackForwardListItemGetTypeID) +STUB( + "q5v165SMV5I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE8copyFromERKS9_) +STUB( + "q5vIhOzFj-o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEmmEv) +STUB( + "q6+vJjUHRpw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("q6-2LZBKQOQ", mono_aot_Sce_Vsh_Np_Webapiplt_end) +STUB("q6-H-qFeRJk", X509_STORE_new) +STUB("q629pGti59c", _ZN7WebCore15ActiveDOMObject15suspendIfNeededEv) +STUB( + "q69qdLfAED4", + _ZN7WebCore24ScrollingStateStickyNode17updateConstraintsERKNS_33StickyPositionViewportConstraintsE) +STUB( + "q6Bv6z-ZtJA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEC2EPS6_PNS2_10LibContextE) +STUB("q6EWScb8SvU", tt_cmap13_class_rec) +STUB( + "q6Fu9t-WFiQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessions35getxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB("q6H4TJJB9mI", mono_aot_System_Dataunbox_trampolines_end) +STUB( + "q6JooLE6v90", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE3endEv) +STUB("q6KNflHlOIA", _ZN7WebCore15HitTestLocation12rectForPointERKNS_11LayoutPointEjjjj) +STUB("q6PrWQHQRnM", _ZN7WebCore12KeyedEncoder7encoderEv) +STUB("q6T4WRt5XuQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEE7popBackEv) +STUB("q6TQMO8HYWc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEEaSERKS6_) +STUB("q6Zk6Zfm5p4", ufmt_getArrayItemByIndex_67) +STUB( + "q6bJN0Y1GXk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEppEi) STUB("q6eAMucXIEM", sceNpTrophySystemDestroyTrophyConfig) +STUB( + "q6gcQi8Xww8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEeqERKS9_) +STUB( + "q6h9UPToBBk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEEC1EPKS6_) +STUB( + "q6kpNPCDPn4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE5clearEv) +STUB( + "q6nwZq5lPy8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEC2Ev) +STUB("q6rbX0jUvqk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEE11release_refEv) +STUB( + "q6uxxVXhw80", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEaSERKS9_) STUB("q6yAtHbMlyk", sceTextToSpeechGetStatusImpl) STUB("q75YGaxUT3s", sceVoiceChatRequestUnregisterSession) STUB("q76RU0c+L+4", sceOpusCeltDecDecodeWithPriority) +STUB("q7C5HXlYmcg", rgctx_fetch_trampoline_mrgctx_93) +STUB("q7DfXkCip5M", u_isUUppercase_67) STUB("q7GK98-nYSE", sceNpMatching2SetRoomDataExternal) +STUB("q7I0E-KhAOI", _ZNK7WebCore11ContentType13containerTypeEv) +STUB("q7IonEqrItY", mono_btls_key_is_rsa) +STUB( + "q7Lcot6l1rs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEixEm) +STUB("q7MbpPmWX5c", WKPreferencesGetStorageBlockingPolicy) +STUB( + "q7Rj6xKPYp8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEEC2ERSA_) +STUB("q7SUMx9iSKQ", _ZN7WebCore12EditingStyleD1Ev) STUB("q7U6tEAQf7c", sceNpTrophyCreateHandle) +STUB( + "q7XEwPfV+wk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE5clearEv) +STUB( + "q7Zgok6zidw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEE11get_deleterEv) +STUB("q7hEYgz3m8Q", __kernel_sinl) +STUB( + "q7k-Yr0fbe8", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("q7kTOFaQrW4", FTA_Export_Module_smooth_lcdv) +STUB( + "q7pH2yjimHk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "q7t3mS4fWpM", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEEC2Ev) +STUB("q8+-tBzlgGo", sr02) +STUB( + "q82FrY0m5uQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEED2Ev) STUB("q88lQ+GP5Yk", sceAgcDcbDrawIndex) +STUB( + "q88nARTCDrE", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBodyC2EPNS1_6Common10LibContextE) +STUB("q89N9L8q8FU", _ZNSt12domain_errorD0Ev) +STUB("q8At7QPwzJg", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEEptEv) +STUB("q8BOLc4uDeU", _ZN7WebCore10FileSystem18createSymbolicLinkERKN3WTF6StringES4_) STUB("q8CfetImdIY", sceFiosFileWrite) +STUB("q8Em2m6W25A", mono_aot_ReactNative_Modules_Vsh_Gct_Telemetry2unbox_trampolines) +STUB( + "q8FWoqBIXMM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEC2ERS7_) +STUB( + "q8Jd7oAtLWk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEC1Ev) +STUB( + "q8S81Jhd6c4", + _ZN7WebCore21SerializedScriptValue6createERN3JSC9ExecStateENS1_7JSValueEON3WTF6VectorINS1_6StrongINS1_8JSObjectEEELm0ENS5_15CrashOnOverflowELm16EEERNS6_INS5_6RefPtrINS_11MessagePortENS5_13DumbPtrTraitsISE_EEEELm0ESA_Lm16EEENS_20SerializationContextE) +STUB("q8XE9mDjoAk", _ZN9Inspector22RemoteInspectionTarget25setRemoteDebuggingAllowedEb) +STUB("q8Yi8z7VEdE", _ZN7WebCore8SVGNames15svgNamespaceURIE) +STUB( + "q8YrDcY70A4", + _ZN3WTF33indexOfBestMatchingLanguageInListERKNS_6StringERKNS_6VectorIS0_Lm0ENS_15CrashOnOverflowELm16EEERb) +STUB( + "q8ZRvJZ4ags", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEE3getEv) STUB("q8a6R8SJHms", sceSystemLogger2NativeQueueClientGetEvent) +STUB( + "q8bD4BbFO5g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "q8bbjdR59wQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEC2EPS8_) +STUB( + "q8cRCzDU9lk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEED2Ev) +STUB("q8fEMeIqd5w", _ZNK3WTF3URL19protocolHostAndPortEv) +STUB("q8iKymW1wQU", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container8getLabelEv) STUB("q8j9OSdnN1Y", sceNetGetArpInfo) +STUB( + "q8oa5shXlsw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEEC1Ev) +STUB("q8r5G1kuApQ", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEE3getEv) +STUB("q8sAT77cytk", WKPreferencesCopyFTPDirectoryTemplatePath) +STUB("q8tk6IyjHIo", mono_aot_Sce_Vsh_KernelSysWrappermethod_addresses) +STUB("q8uDENNkFzs", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence8PresenceEEC2Ev) +STUB("q8uoKpOlCVY", _ZN3sce7Toolkit2NP2V210Tournament7Request18GetRegisteredTeamsD1Ev) +STUB( + "q8znOzx38hc", + _ZN3JSC23JSModuleNamespaceObject19getOwnPropertyNamesEPNS_8JSObjectEPNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB( + "q9-vE4ZHT7k", + _ZN7WebCore27PlatformMediaSessionManager17beginInterruptionENS_20PlatformMediaSession16InterruptionTypeE) +STUB( + "q91-Fn9d2kM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEEaSERSA_) +STUB( + "q93AIPSfuLg", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicket28setxPsnAcceptPlatformNamePs5ENS5_25XPsnAcceptPlatformNamePs5E) +STUB( + "q93ahLHCf4M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEC2EPNS2_10LibContextE) +STUB( + "q95Cje+bXhk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEEaSERKSA_) +STUB("q96oBmczAWU", WKPointCreate) +STUB( + "q97QLaFlcs4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEC2Ev) +STUB( + "q9Ac0wYBOgQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead22receivedTimestampIsSetEv) +STUB("q9DNMMuQt4E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEC1ERS7_) +STUB( + "q9EjOxmz7Q8", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetrics16setNumberOfTimesERKi) STUB("q9ONK5ZpMVQ", sceCesMbcsStrToUcs2Str) +STUB("q9PEYKv1Ed0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEptEv) +STUB("q9SHp+5SOOQ", __fixdfdi) +STUB( + "q9WGB8NrmVY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEEdeEv) +STUB("q9YcRtDEijs", _ZN3sce2Np9CppWebApi13InGameCatalog2V53SkuD2Ev) +STUB("q9abGtyD65E", qs2) +STUB("q9dm4b24RRI", _ZN7WebCore22ResourceLoadStatistics13primaryDomainERKNS_3URLE) +STUB("q9fcjkDvQy4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEE7add_refEv) STUB("q9iRVgGbrL0", sceVisionManagerWaitResponse) +STUB("q9kzJ0gemWs", _ZN2GK9PlayerPSN11requestGameEb) +STUB( + "q9nvRIkqkAU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEppEi) +STUB("q9oilMJnxjM", _ZN3sce2Np9CppWebApi11UserProfile2V16Avatar7setSizeERKNS3_10AvatarSizeE) +STUB("q9rMtHuXvZ8", _ZNSt17bad_function_callD0Ev) +STUB("q9rs7Vyz9d0", _ZN4Manx23keyIdentifierForKeyCodeEi) +STUB( + "q9s3a8Q3o6s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("q9uuZihXR+U", + _ZN3JSC33throwTerminatedExecutionExceptionEPNS_14JSGlobalObjectERNS_10ThrowScopeE) +STUB("q9wGc2dhHSQ", uprv_ceil_67) +STUB( + "q9wHJmXXxI4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEmmEv) +STUB("qA31JvxR-EQ", __dynstr_end) +STUB( + "qAA+VPxp6kY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEaSERKS7_) +STUB( + "qABw0u-4qLE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEED1Ev) +STUB( + "qAEo9B91sCE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEE5resetEPS9_) +STUB("qAHa0u1aU8E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEE7get_refEv) STUB("qAKct8DTeBU", sceCesRefersUcsProfileIso8859_3) +STUB("qAKozVBI6lY", _ZN3sce7Toolkit2NP2V28Matching7Request13GetAttributesC1Ev) +STUB("qAKtgVDTrAM", _ZN7WebCore14SQLiteDatabase14executeCommandERKN3WTF6StringE) +STUB( + "qALG0KRixsY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEEdeEv) +STUB( + "qAMRBSL5jhE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEC1EPS6_PNS2_10LibContextE) +STUB( + "qANERAtJ48o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEC1EPS6_PNS2_10LibContextE) +STUB( + "qAPGL-LkFKI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("qAPXM5DN62Q", FT_Reference_Library) +STUB( + "qAU1+2POoMA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEixEm) STUB("qAUXQ9GdWp8", sceNpAuthGetAuthorizationCodeA) +STUB("qAYgHhXz2lg", _ZN7WebCore13ContainerNode20getElementsByTagNameERKN3WTF12AtomicStringE) STUB("qAoMArbG384", sceNpManagerIntValidateQrCodeSession) +STUB( + "qApvJWktSqw", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser11setsortModeENS5_8SortModeE) +STUB("qAqfKFQJNFk", _ZN7WebCore9DragImageC1Ev) +STUB("qAv1-ceZ9iQ", _ZNK7WebCore20ResourceResponseBase23hasCacheValidatorFieldsEv) +STUB("qAxo1idgdPY", two) +STUB( + "qAy2EdoN8Tg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB( + "qAzGjrbOeZE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEEC1EPS8_PNS2_10LibContextE) +STUB("qB+V9Qvf9qg", EVP_PKEY_get1_EC_KEY) +STUB( + "qB2-9007vRI", + _ZN7WebCore17CredentialStorage35removeSessionCredentialsWithOriginsERKN3WTF6VectorINS_18SecurityOriginDataELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("qB2iptxCJXY", _ZNK7WebCore6Editor7Command11isSupportedEv) +STUB("qB5W5ljFCIk", curl_pushheader_byname) STUB("qB5nGjWa-bk", sceLibcPafMspaceDestroy) STUB("qBDmpCyGssE", scePthreadCancel) +STUB( + "qBEYnwggJWo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEC1EPS8_) +STUB("qBMjqyBn3OM", _ZN3sce4Json5ValueC1Ev) +STUB( + "qBMwKODbb4E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "qBSvxQCYPIY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "qBVJeBkrEAs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEEdeEv) +STUB("qBVx0vmleoc", EC_KEY_free) +STUB("qBXAbzF+65g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEEppEv) +STUB("qBbh+M9UcKA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEC2Ev) +STUB("qBj38O9+qX8", mono_btls_x509_chain_peek_certs) STUB("qBjnR0HtMYI", sceVrTrackerSetDurationUntilStatusNotTracking) +STUB("qBlMzJbMa7c", _ZN3sce2np4NpIdC2ERKS1_) +STUB( + "qBmj97QzuME", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEixEm) +STUB("qBohKqdkAqE", FT_Get_PFR_Kerning) +STUB("qBoyFCWs6bw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEE7get_refEv) +STUB( + "qBsEBz2CuXE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("qBsIS0FFRvQ", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEE7add_refEv) +STUB( + "qBzr9wh9Mik", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEneERKS9_) +STUB( + "qC+YNRAswAw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEC2EPKS8_) +STUB("qC+tiGwcW7E", FTA_Export_Module_gxvalid) STUB("qC3QW+AltHs", sceContentDeleteByPath) +STUB( + "qC4CQPetJQo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE17getNpWebApi2ReqIdEv) +STUB("qC8BIIGtfNk", glUniform2i) +STUB( + "qCD197SX69s", + _ZN9Inspector28DOMDebuggerBackendDispatcher16setXHRBreakpointElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) STUB("qCDIxJL+IN8", sceCoredumpInternalGetThreadContextInfo) +STUB( + "qCHyqnp0o70", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEE11release_refEv) STUB("qCL0KDAv1Os", sceSrcUtilityFlush) +STUB( + "qCMKiqhK81U", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEC1EPNS2_10LibContextE) +STUB("qCN4tzRWpmc", _ZN3sce2Np9CppWebApi14SessionManager2V118MatchmakingForReadD1Ev) +STUB("qCPLiH0+opI", YGNodeStyleSetOverflow) STUB("qCSfqDILlns", sceKernelMemoryPoolExpand) +STUB("qCTiOEgKX3w", _ZN3sce7Toolkit2NP2V28Presence7Request11GetPresenceD1Ev) +STUB( + "qCV+zjqfYbk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEC2EPNS2_10LibContextE) +STUB("qCYQmUqUn7A", _ZTVN3IPC13DataReferenceE) +STUB( + "qCc5VL6EWDM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEEdeEv) +STUB("qCcBSIApplE", _ZN7WebCore11DisplayList8FillRectC2ERKNS_9FloatRectE) +STUB("qCgK7DkHGY4", _ZN7bmalloc9ScavengerC1ERKSt11scoped_lockIJNS_5MutexEEE) +STUB("qClU7cfYPEk", _ZNK3sce2np14JsonNumberImpl5CloneEP14SceNpAllocator) +STUB( + "qCt0iKt8coc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEixEm) +STUB( + "qCxotJ5cvG0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEC1EPS8_) +STUB("qCy8xtv0opg", _ZN3sce2Np9CppWebApi12Leaderboards2V14User14unsetAccountIdEv) +STUB("qD+C9Xkw5fE", _ZN3sce7Toolkit2NP11MessageDataC2Ev) +STUB("qD1JHHZrbW8", _ZN7WebCore6FourCCC1Ej) STUB("qD5Su6YGVWM", sceFiosOverlayModify) +STUB( + "qD5gOzYTjDY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEppEv) +STUB( + "qD8atp6eBis", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEED1Ev) +STUB( + "qDBLB3BRqN4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEEC1ERSA_) +STUB( + "qDEfF837Uw0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEEC1ERKSA_) +STUB("qDG1RS462uA", _ZN3sce2np13RingBufMemoryC2EP14SceNpAllocator) +STUB( + "qDHw7bK8nCg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE7popBackEv) +STUB( + "qDIEnJv2rqs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEE7add_refEv) STUB("qDIcu3MnDOk", sceDebugResumeThread) +STUB("qDIjYbghS7o", _ZN3JSC18GCActivityCallback6doWorkERNS_2VME) +STUB("qDJNxYUjvYw", _ZN3sce7Toolkit2NP2V28Matching4Room16getRoomAttributeEPKc) STUB("qDP21JPNjTs", sceMbusIsUsingDevice) +STUB("qDQ3PKPFeKc", _ZNK7WebCore8Settings15isScriptEnabledEv) +STUB( + "qDT8zESJVvU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "qDVhN66Hl0M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEaSERKS7_) STUB("qDagOjvJdNk", sceImeVshSetCaretGeometry) +STUB("qDazN57vZi8", ucal_getDSTSavings_67) +STUB( + "qDbGEP9ntyw", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("qDeCAe9ho54", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEED2Ev) +STUB("qDg9UkReYAU", _ZN3sce2Np9CppWebApi6Common6VectorIdEC1Ev) +STUB( + "qDlj0r-0jzg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEC2Ev) +STUB( + "qDmc3eK4nt4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEE7add_refEv) STUB("qDrqs9Dv+Bw", sceVideoArbitrationEnable) +STUB("qDu+t28zExY", _ZN3sce4Json9RootParamC2Ev) +STUB( + "qDurOPG+2JE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE8capacityEv) +STUB("qDwDfJxdkTg", _ZN3sce7Toolkit2NP2V28Commerce7Request26DisplayProductBrowseDialogC2Ev) +STUB( + "qDwlKWlhphw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEaSERKS9_) +STUB( + "qE+a2qjEsN4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEEC1EPS8_PNS2_10LibContextE) +STUB( + "qE1XkxL0sU4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "qE6DpKbtD3Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE7reserveEi) +STUB( + "qE8hXVIVzUc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEdeEv) +STUB( + "qE9PDKpC-YA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("qEAjgXcSmZ4", rgctx_fetch_trampoline_mrgctx_8_p) +STUB("qEAmbwS3uRA", u_fscanf_u_67) +STUB( + "qEBpdCpdhus", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEE11get_deleterEv) STUB("qEGeDXvL3fc", sceFontGraphicsAgcSurfaceInit) +STUB("qELVsdP6BXk", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product11ratingIsSetEv) +STUB( + "qELuvj6J1JI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEC1ERS7_) +STUB( + "qEO4f2XuI9w", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEEdeEv) +STUB( + "qEQfdDVbFT8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE4sizeEv) +STUB( + "qERHn9hCtsQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEEC1ERKSA_) +STUB("qES1DKEVmNk", _ZN7WebCore7Element20setIntegralAttributeERKNS_13QualifiedNameEi) STUB("qEUJBsB7yMk", sceShellCoreUtilGetOutOfVrPlayZoneWarning) +STUB("qEWEdAxoWA8", _ZN3JSC12RegExpObject14finishCreationERNS_2VME) +STUB( + "qEX32FiXU5w", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEneERKS9_) +STUB("qEdv4gRyL+4", _ZN3JSC17JSPromiseDeferred6rejectEPNS_9ExecStateEPNS_9ExceptionE) +STUB("qEfO3orVVfY", GCC_except_table463) +STUB("qEmKPg7Y1MQ", rgctx_fetch_trampoline_rgctx_76) +STUB("qEoBtYT8-mE", _ZN7WebCore15GraphicsContext9translateEff) +STUB("qEob3o53s2M", _ZNSt8numpunctIcED1Ev) +STUB("qEr-kX-ZRag", _ZN23sceMetadataReaderWriter8Metadata11deleteFieldERKSs) +STUB( + "qEu3YLJ4V7Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEE3getEv) +STUB("qEvDssa4tOE", _FErf_small) +STUB("qEvRt3Wki8E", _ZN3WTF6String6appendERKS0_) +STUB( + "qF3CwterKvk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEixEm) +STUB("qF3mHeMAHVk", _ZNSt8messagesIcEC2EPKcm) +STUB( + "qF7F9Adwz30", + _ZN3sce2Np9CppWebApi14SessionManager2V157PostPlayerSessionsSessionIdInvitationsResponseBodyFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_50PostPlayerSessionsSessionIdInvitationsResponseBodyEEE) +STUB( + "qF7Fiv42jMw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEplEm) STUB("qF9j5SGAiUk", sceIduUtilSetSysLanguage) STUB("qFA5cSGCjEo", sceCesRefersUcsProfileCp1255) +STUB( + "qFDKPtf3Nd0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB("qFG3gUOjf6A", _ZN7WebCore16VisibleSelectionC2ERKNS_8PositionES3_NS_9EAffinityEb) +STUB( + "qFH50deeNkY", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEiRNS2_10LibContextEPT_m) +STUB("qFI5KXuXXpE", mono_aot_Sce_Vsh_Np_ServiceChecker2unbox_trampolines) +STUB( + "qFJQ0w5FUSU", + _ZN3sce2Np9CppWebApi14SessionManager2V124SearchGameSessionFactory7destroyEPNS3_17SearchGameSessionE) +STUB( + "qFK13fYNo44", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEE5resetEPS9_) +STUB( + "qFKbkGc57f4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEED1Ev) +STUB("qFNfF98BeVU", __tsan_locate_address) +STUB("qFOAu+-BOb8", _ZN3sce7Toolkit2NP2V29Messaging12Notification16NewInGameMessageC2Ev) +STUB( + "qFOeogBYxJQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEC2Ev) +STUB("qFP0-OhWXxs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEEC2EPS6_) +STUB( + "qFVwdjl70c8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEE3getEv) +STUB("qFXamgC8dMU", _ZNK7WebCore25DropShadowFilterOperation5colorEv) +STUB("qFYwlVP8fy8", _ZN7Nicosia16SceneIntegration6ClientD1Ev) +STUB( + "qFZ+mREbWYg", + _ZN3JSC16CompleteSubspaceC1EN3WTF7CStringERNS_4HeapEPNS_12HeapCellTypeEPNS_22AlignedMemoryAllocatorE) +STUB("qFaTWMvHz1c", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V110ReputationC1EPNS1_6Common10LibContextE) +STUB("qFdG8Ucfeqg", _ZN3sce2np3ipc17ServiceIpmiClient4InitEPNS2_6ConfigE) STUB("qFg2SuyTJJY", sceHttpSetAuthEnabled) +STUB( + "qFj1vZ2WmXs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEC1ERKS7_) +STUB( + "qFk1WDx2xqg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("qFkvfDxBWGM", _ZN7WebCore24StorageNamespaceProviderD2Ev) +STUB( + "qFmYWAQzTFc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE5beginEv) +STUB("qFoSMtD8eLg", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer12unsetuseFreeEv) +STUB("qFogOCeaPuM", Java_java_util_zip_CRC32_updateBytes0) +STUB( + "qFpKT7x6aNo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB("qFqqEdKdR4w", + _ZNK3sce2Np9CppWebApi12Leaderboards2V127RecordLargeDataResponseBody11getObjectIdEv) +STUB("qFsiZIl1YTU", + _ZN7WebCore19InspectorController18disconnectFrontendEPN9Inspector15FrontendChannelE) STUB("qFujOxHUDSs", scePfsGetHeaderReadCommand) +STUB( + "qFxKNfMoZAY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEE7get_refEv) +STUB( + "qFz8fbyj0Z0", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEED1Ev) STUB("qG-Qrqsc5Uk", sceShareUtilityOpenShareMenuForShareContent) +STUB("qG35lhqoJnE", _mono_register_opcode_emulation) +STUB("qG50MWOiS-Q", _Files) +STUB( + "qG7snESXrEM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEmmEi) +STUB( + "qGAd9ZjMToU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEmmEv) +STUB( + "qGC6OYsJItQ", + _ZN3sce2Np9CppWebApi14SessionManager2V131RequestGameSessionPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_24RequestGameSessionPlayerEEE) +STUB("qGColqeTLIY", _ZN7WebCore8JSPath2D11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("qGIX2VTcNJo", u_isUAlphabetic) +STUB("qGJxcUrNnc4", SSL_CTX_use_PrivateKey_ASN1) +STUB("qGKq0Htcy4k", _ZN8meta_gen11MsvPromoter15convertLangTypeEN9db_schema12LanguageTypeE) +STUB("qGLoXEHAZ8M", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V120PlayerJoinableStatusEEdeEv) +STUB( + "qGOjSDj-ep0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("qGP4bmSiOWI", s10) +STUB( + "qGP5Eyy5gjc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEEC2ERSA_) STUB("qGP74T5OWJc", sceGnmValidateDispatchCommandBuffers) +STUB( + "qGP8hoLWSEI", + _ZN3sce2Np9CppWebApi14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBody17getPlayerSessionsEv) +STUB("qGSgIy5dbT8", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE7popBackEv) +STUB( + "qGVTG-awwJ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEED1Ev) +STUB("qGWTLnEZOG4", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE3endEv) +STUB( + "qGZvdeP9j5c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEE11release_refEv) +STUB("qGiGp64JAKM", _ZTVN9Inspector26LayerTreeBackendDispatcherE) +STUB("qGldV9JFaJ8", _ZN3WTF15AutomaticThread9isWaitingERKNS_14AbstractLockerE) +STUB("qGn7eyiecBc", il2cpp_alloc) +STUB("qGp5Hv7tsGs", _ZN7WebCore12TextEncodingC1EPKc) +STUB( + "qGqExbfrGy4", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB( + "qGvB1uMiXpg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEE11get_deleterEv) +STUB( + "qGwknHP6ohM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEEptEv) +STUB("qH-qzNamQcA", WKPreferencesSetCrossOriginResourcePolicyEnabled) +STUB( + "qH1I8Z-GLwo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE21intrusive_ptr_add_refEPS9_) STUB("qH1gXoq71RY", scePthreadMutexInitForInternalLibc) +STUB("qHQWno0ZEDY", EVP_VerifyFinal) +STUB("qHUN3ffqVEs", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE21intrusive_ptr_add_refEPS7_) +STUB( + "qHUq4D769ns", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEppEi) +STUB("qHeRG+gU1BA", uregex_matches_67) +STUB("qHgbK+xwr+0", _ZN7WebCore21DiagnosticLoggingKeys11timedOutKeyEv) +STUB( + "qHjVmLJG+cQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("qHnIsG9JqQE", isdst) +STUB("qHr9fv68O3E", _ZN3WTF11Persistence7EncoderD1Ev) +STUB( + "qHw2q-38BfA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEC1Ev) +STUB("qI0Sl8pNDbc", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V116PlayStyleFactory7destroyEPNS3_9PlayStyleE) STUB("qI2HG1pV+OA", sceUserServiceGetThemeBgImageZoom) +STUB( + "qI3zBXQ85do", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEixEm) +STUB( + "qI5Kzls2Q8k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEE11release_refEv) STUB("qIB-HHTKOCs", sceRegMgrEvtGetCntForPS4) +STUB( + "qIBi1G2KOD8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEE11release_refEv) +STUB( + "qIDOqw4JFgg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("qIJiUzoPBzk", _ZNK3sce2Np9CppWebApi11Matchmaking2V19Attribute7getTypeEv) +STUB("qINWb8ZDW9k", + _ZN7WebCore11MediaPlayer18setBufferingPolicyENS_16MediaPlayerEnums15BufferingPolicyE) STUB("qISjDHrxONc", sceHttpWaitRequest) +STUB( + "qIXxCeMcY5o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEmmEv) +STUB("qIag-OgyLCQ", + _ZN3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinition11unsetfieldsEv) +STUB( + "qIcRS+qUSE0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEEcvbEv) +STUB( + "qIeCJNcJr18", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("qIgSdMADtcQ", _ZN7WebCore14areRangesEqualEPKNS_5RangeES2_) STUB("qIjSKZfWk5I", sceKernelSpawn) +STUB( + "qIjfdg22cto", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEppEi) +STUB( + "qIn0nVS-S8k", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE5beginEv) +STUB( + "qInosp1TVPo", + _ZN3sce7Toolkit2NP12ActivityFeed9Interface13getPlayedWithEPKNS1_20GetPlayedWithRequestEPNS1_9Utilities6FutureISt6vectorINS1_15PlayedWithStoryENS1_15AppSTLAllocatorISA_EEEEEb) +STUB( + "qIsgUdV2fso", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEC1ERS7_) STUB("qIvLs0gYxi0", sceSslFreeCaCerts) STUB("qIx30tyaz6c", scePlayReadyApiVersionString) +STUB("qIz+DBSTKZM", _ZN3WTF7RunLoop17setWakeUpCallbackEONS_8FunctionIFvvEEE) STUB("qJ3IvrOoXg0", sceNpTrophyConfigGetTrophyFlagArray) +STUB( + "qJ4-GJRinTU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEEE5resetEPS9_) +STUB("qJ9zHC03lWw", mono_aot_System_ComponentModel_Compositionunbox_trampoline_addresses) +STUB("qJFh32pZAJQ", FT_Get_MM_Var) +STUB("qJIWE1tDq+Q", _ZN7WebCore24CoordinatedGraphicsLayer14syncLayerStateEv) +STUB("qJPfpmhvO24", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredTeamsEE3setEv) +STUB("qJSedl9Beks", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEEixEm) +STUB("qJb7IXDg9xk", _ZN3sce2np10JsonParserD1Ev) +STUB( + "qJbJXAaQ-QA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEplEm) STUB("qJnZcaDrZvI", sceKernelGetQafNameForRcmgr) +STUB( + "qJnchZ7TJpo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEneERKS9_) +STUB( + "qJnhkZf84og", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEdeEv) +STUB( + "qJocOycvm-M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V112TicketStatusEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "qJpBn6PDXpg", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Runtime15PropertyPreview4TypeEEEN3WTF8OptionalIT_EERKNS6_6StringE) +STUB("qJpr45shtzs", _ZNK7WebCore20ResourceResponseBase11httpVersionEv) +STUB("qJtifJKf73E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEED2Ev) +STUB("qJy7oOalHMg", mono_signature_get_params) +STUB("qJzB+g1dUq4", kldfirstmod) STUB("qJzHA1ugk-M", sceRegMgrPrivateStorageFileName) +STUB("qK+HSbM6Yxc", tbl) +STUB("qK2RJYzNooQ", + _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_15DOMRectReadOnlyE) STUB("qK4o2656W4w", sceNpWebApiUnregisterPushEventCallback) +STUB( + "qK53fTiVkAA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEC2EPKS8_) +STUB("qK5rAgZ9IDM", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt6vectorI16SceNpTusVariableNS2_IS4_EEEED1Ev) +STUB( + "qK95BHNw1Vg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEEaSERSA_) +STUB( + "qKBx3dyuiaU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("qKDZnT2Hzi8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEC2ERKS7_) +STUB("qKJ2G1pGKmU", WKPageBackgroundExtendsBeyondPage) +STUB( + "qKLP6ky0cJo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEED2Ev) +STUB("qKQiNX91IGo", __cxa_rethrow_primary_exception) +STUB("qKUojuHYhw8", _ZNK9Inspector14FrontendRouter12sendResponseERKN3WTF6StringE) +STUB("qKZxQYEA7lk", _ZN7WebCore17PageConfigurationD1Ev) +STUB( + "qKc7hce710w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEC2EPKS8_) +STUB("qKdpVnrTRxI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEEC1ERKS7_) +STUB( + "qKeIWRxr4No", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEEC1EPS6_PNS2_10LibContextE) +STUB("qKfj8jo1vcE", _ZNK3sce2Np9CppWebApi11UserProfile2V114PersonalDetail16displayNameIsSetEv) +STUB( + "qKkiGChNON0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEE11get_deleterEv) +STUB( + "qKuEKDU1b8g", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE5emptyEv) +STUB("qKuPcB3bhxc", TEECI_SetTimeout) +STUB("qKvmIU5Xolg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth7IdTokenEEC2Ev) +STUB( + "qKx4qWM8bUc", + _ZN12video_parser17cVideoProfilerMp422_determineDefaultTrackERNS_7cVpListINS_13VpMediaInfo_tEjEERNS0_13VpTrackInfo_tEMS0_FNS_11VP_RESULT_eEPS2_E) STUB("qL-FqHcH2uw", sceVisionManagerGetStoreCameraImgYPtr) +STUB( + "qL1AzELGgI0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("qL2YTjAPqBo", rgctx_fetch_trampoline_rgctx_56) STUB("qLDCAl8ygCw", sceVideoOutSysGetResolutionStatus2) +STUB( + "qLEQkuIIzrY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEeqERKS9_) +STUB("qLHvDU8bmOo", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11InvitationsEE3setEv) STUB("qLIzHK7b8ow", sceVnaTerminate) +STUB("qLJikNaWCUQ", _ZN7WebCore20UserGestureIndicator21processingUserGestureEPNS_8DocumentE) +STUB( + "qLQ1-hCI+sI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE21intrusive_ptr_add_refEPS7_) +STUB("qLQW-wuHyhE", + _ZNK3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession11getPlatformEv) +STUB("qLaZpcCmXaM", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V111LeaveReasonEEppEi) STUB("qLc40W8P7ZA", sceCesSbcToUtf16) +STUB("qLhQmTQ9NK8", ucnv_countAliases_67) +STUB("qLiZvjk8bOA", closeallreg_o) +STUB("qLlWp3eZRiM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEEC1ERS6_) +STUB( + "qLoJuTBivw4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE7reserveEi) STUB("qLpSK75lXI4", sceAudioOutOpenEx) STUB("qLqzbBxATrU", sceNpSnsIntDeleteRequest) +STUB( + "qLsAEQ69RmY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEC2EPKS8_) +STUB("qLtLvmkqD14", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V124RequestCooperativeResultEEdeEv) +STUB("qLvbFF9u5Lo", _ZN7WebCore8JSPath2D6s_infoE) +STUB("qLyMowz-S2U", _ZNK3sce2Np9CppWebApi7Matches2V126RequestTeamMemberStatistic11getPlayerIdEv) +STUB( + "qLyOzq-4qlQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEEptEv) +STUB( + "qLykzfCOnEQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("qM0gUepGWT0", _ZNSt13basic_filebufIcSt11char_traitsIcEE5imbueERKSt6locale) +STUB("qM6EjseJ7ro", _ZN9Inspector15RemoteInspector6ClientD0Ev) +STUB("qM73Xs89xOk", fuse_mount_compat25) +STUB("qMFHbHrZi2c", mono_aot_System_Numericsjit_code_end) +STUB( + "qMHQAxW8eXs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEED2Ev) +STUB( + "qMIMu7+KN+M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("qMNH-1t3iOI", rgctx_fetch_trampoline_rgctx_49) +STUB("qMOzfrrKkfo", WKPageFixedLayoutSize) +STUB( + "qMPOsrW9YfA", + _ZN3sce2Np9CppWebApi14SessionManager2V136GetPlayerSessionsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_20PlayerSessionForReadEEEEEPNS9_INS3_29GetPlayerSessionsResponseBodyEEE) +STUB( + "qMSdxwoVXYs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEppEv) +STUB( + "qMTGJftSbFs", + _ZN3sce7Toolkit2NP2V211UserProfile27displayGriefReportingDialogERKNS3_7Request27DisplayGriefReportingDialogEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB( + "qMTh9q8R0Hg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "qMVXQZWCLS4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEEC2ERKSA_) +STUB( + "qMVaTy7Cqnc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEC2EPNS2_10LibContextE) +STUB("qMXslRdZVj4", _ZSt13resetiosflagsNSt5_IosbIiE9_FmtflagsE) +STUB( + "qMYMahQKgPQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "qMaRL+4NugY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEC2Ev) +STUB("qMavPJYZ3cE", _ZN7WebCore17PageConsoleClientD2Ev) +STUB("qMd1pP1EjJY", mono_btls_pkcs12_get_count) +STUB( + "qMdQ8SYRnAA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEptEv) +STUB("qMh967qT828", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEC1ERKS7_) +STUB( + "qMi2MIQeIk8", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationPropertiesC1EPNS1_6Common10LibContextE) +STUB("qMkCle9z0Tk", WKDatabaseManagerGetDatabaseDetailsNameKey) +STUB("qMklgSxMYQs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEEC2ERKS7_) +STUB("qMlDXDv8CU4", _ZNK3sce2Np9CppWebApi7Matches2V15Error9getReasonEv) STUB("qMlfB1ZhMDc", sceAgcDcbDrawIndexOffsetGetSize) +STUB("qMn0KHwwAlQ", _ZN7WebCore21DiagnosticLoggingKeys18noLongerInCacheKeyEv) +STUB( + "qMnxqsiepTY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB("qMp2fTDCyMo", expl) +STUB( + "qMrYI+NT+qI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEC1Ev) +STUB("qMspKE0Wko4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEC2ERS7_) +STUB( + "qMukwqrJKiw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "qMvrX6FVujc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB("qMwyrQPxwc4", _ZN7WebCore20PasteboardWriterData10WebContentD2Ev) +STUB( + "qMz6Lah82GE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEEC1ERS9_) +STUB("qN4AaiA27e8", _ZN3sce7Toolkit2NP2V210Tournament14RegisteredUserC2ERKS4_) +STUB( + "qN4XN9YisqM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEEaSERSB_) +STUB( + "qNCgxITo4YA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("qNEbb12P1FE", _ZN3sce7Toolkit2NP2V210Tournament5MatchC1Ev) +STUB( + "qNF9Z3Ic2sw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("qNFxZKCj3PM", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_16SessionAttributeEEeqERKS4_) +STUB( + "qNIO8gAomeU", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEEiRNS2_10LibContextEPT_m) +STUB( + "qNLRyuiv3SI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "qNPGeEtdxlA", + _ZN3sce7Toolkit2NP8Sessions9Interface7getInfoEPKNS1_16NpSessionRequestEPNS1_9Utilities6FutureINS1_28NpSessionDetailedInformationEEEb) +STUB( + "qNTBcCNa7iY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEptEv) STUB("qNWrWWaNFVw", scePerfSetUevt) +STUB( + "qNX-eJ+1fqg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEC1EPNS2_10LibContextE) +STUB("qNY3C4S6yHQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEED1Ev) +STUB("qNYv+voo3jg", + _ZN7WebCore10FileSystem15fileIsDirectoryERKN3WTF6StringENS0_25ShouldFollowSymbolicLinksE) +STUB( + "qNbHRHwgoL4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE6resizeEj) STUB("qNbjzkre+NE", sceDebugIpmiGetBlockedIpcInfo) +STUB( + "qNcWmRVKZ4g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE10setContextEPNS2_10LibContextE) +STUB( + "qNdtEIx1WHo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEaSERKS9_) STUB("qNe8uNe3EpQ", sceShellCoreUtilMountHddForBackup) +STUB( + "qNeytNwl2wI", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12unsetString2Ev) +STUB( + "qNfKenfuLYg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEdeEv) +STUB( + "qNm6vSstM8o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEppEi) +STUB( + "qNsMxeuAx64", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE7popBackEv) +STUB( + "qNtHENvSUIA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("qNtPJNKGExA", _ZN7WebCore43initializeMaximumHTTPConnectionCountPerHostEv) +STUB("qO+9xZinAqo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEaSERS7_) +STUB( + "qO-gljTv7Dk", + _ZN9Inspector14ConsoleMessage13addToFrontendERNS_25ConsoleFrontendDispatcherERNS_21InjectedScriptManagerEb) +STUB("qO4MLGs1o58", _ZNSt9_Num_base9is_moduloE) +STUB("qOD-ksTkE08", _ZTISt8bad_cast) +STUB("qODYPP+Rr2Y", usearch_getMatchedLength_67) +STUB( + "qOEo3HwdUwM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEixEm) +STUB("qOGZyzFCrzI", _ZNK7WebCore7Element20getIntegralAttributeERKNS_13QualifiedNameE) +STUB("qOGvhm61g-E", _ZNK7WebCore11MediaPlayer6volumeEv) +STUB("qOK0mhQmMRI", _ZN3JSC8Debugger14addToBlacklistEm) +STUB("qONLvDR0x68", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_21NotifyChallengeResultEEC1Ev) +STUB( + "qONTMr5XTgU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEC1EPNS2_10LibContextE) +STUB("qONj4mfcE6U", __sanitizer_unaligned_store32) +STUB( + "qOOduJBSJvw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEcvbEv) +STUB("qOR4QarLY5Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEED2Ev) +STUB( + "qOUoumdq3C4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEEC1Ev) +STUB( + "qOVMZbx+Lsw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "qOVfzEgkPnI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEEC1EPSA_PFvSC_EPNS2_10LibContextE) +STUB("qOX315waZLo", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISbIcSt11char_traitsIcENS2_IcEEEE9constructEPS6_RKS6_) +STUB("qOXDhY0fgyU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEEC1Ev) +STUB("qObDxIp+tUc", _Costate2) +STUB( + "qObFr8xEFfo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("qOdPJTwy-vQ", + _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets16getrulesetFilterEv) STUB("qOefcpoSs0k", sceNetCtlDisconnectIpcInt) +STUB( + "qOjmNnxs374", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEEC1Ev) +STUB( + "qOkG6L16PZI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEC1EPS6_PNS2_10LibContextE) +STUB("qOkciFIHghY", _ZNSt14numeric_limitsIbE9is_moduloE) +STUB("qOlJvbHHCkg", _ZN3JSC7Symbols19isObjectPrivateNameE) STUB("qOlxBR2lpG0", sceLoginMgrServerCheckTutorialShown) +STUB("qOmEpCDDDIY", _ZN7WebCore19AccessibilityObject20anchorElementForNodeEPNS_4NodeE) STUB("qOmh6HvHhSs", sceVideoRecordingQueryHddSize2) STUB("qOmoaiKx7OY", sceHubAppUtilGetInstallationStatus) STUB("qOn+wm28wmA", sceSslGetCaList) STUB("qOpZPAFEvIs", sceOpusDecTerminate) +STUB( + "qOrloelVfXU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEeqERKS9_) +STUB( + "qOsLGE45VF0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "qOwGPkDUoRM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEdeEv) +STUB( + "qOwk-Xj1Qlw", + _ZN7WebCore12PrintContext27spoolAllPagesWithBoundariesERNS_5FrameERNS_15GraphicsContextERKNS_9FloatSizeE) STUB("qP-EvQRl2Hc", sceLoginDialogInitialize) +STUB("qP0GBNQy6dc", mono_btls_ssl_destroy) +STUB("qP2DGnK-hWI", _ZN7WebCore11HTMLElement6setDirERKN3WTF10AtomStringE) +STUB("qP3GEWZrWC0", _ZN3JSC7Symbols36setIteratorFieldSetBucketPrivateNameE) +STUB("qPAYECEJ1Ik", vm_send_BuildIMTThunk) +STUB("qPAdtEm3ek8", _ZN7WebCore8SVGNames17radialGradientTagE) +STUB("qPFW9BKwJyo", GCC_except_table404) +STUB( + "qPGN2pr47qA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEEC1ERKSA_) +STUB( + "qPLa5OXaImQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEppEi) +STUB("qPNYqJQdssU", _ZN3JSC19ArrayBufferContentsC2EPvjON3WTF8FunctionIFvS1_EEE) +STUB("qPOsKSdHIUY", _ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody12offerIdIsSetEv) +STUB("qPPSZxeGpBc", unlink_large_large_chunk) +STUB("qPTx4Ol2VBI", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE5beginEv) +STUB("qPaL89nLj2M", _ZN9Inspector31ConsoleBackendDispatcherHandlerD2Ev) +STUB("qPe7-h5Jnuc", asctime_s) +STUB("qPf-+J6CHd8", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11InvitationsEEC2Ev) +STUB("qPjPzqK12cI", _ZN3sce2Np9CppWebApi14SessionManager2V112NonPsnLeader11setPlayerIdEPKc) +STUB( + "qPlIpU6JZ8s", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("qPmNux1iUko", __tsan_destroy_fiber) +STUB("qPmVvaTN8Dk", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEED2Ev) +STUB("qPoYiUREVG4", + _ZN3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectator11setOnlineIdERK13SceNpOnlineId) +STUB( + "qPpdNbuAJQA", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead21setSupportedPlatformsERKNS1_6Common6VectorINS5_6StringEEE) +STUB( + "qPqGdzlbKSU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB( + "qPrQMHucCrg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEE11release_refEv) +STUB("qPvg3vvKVZc", _ZNK7WebCore11JSDOMWindow4selfERN3JSC14JSGlobalObjectE) +STUB("qPwDxHRnnF0", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEC2Ev) +STUB("qPy9OcDfwPU", _ZThn24_N9Inspector22InspectorDebuggerAgent16willRunMicrotaskEv) +STUB( + "qPyGvnqSXxE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEptEv) +STUB("qPyVDjLOedQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEptEv) +STUB("qQ-yGYSiy6g", mono_exception_walk_trace) +STUB( + "qQ2fygWcZKY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEC2EPNS2_10LibContextE) +STUB("qQ4c52GZlYw", _ZTSPKDs) +STUB("qQ96-aBFJz0", _ZN7WebCore11MediaPlayer18liveUpdateIntervalEv) +STUB( + "qQGzkNX4NLA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEC1EPS8_) STUB("qQHCi9pjDps", sceNgs2StreamRunCommands) STUB("qQJfO8HAiaY", sceNpRegisterStateCallbackA) +STUB("qQMUbG5L6oE", ubrk_setUText) +STUB( + "qQN7eBG96yY", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEiRNS2_10LibContextEPT_m) +STUB( + "qQQ0Jj5YhvQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEdeEv) +STUB("qQS2YPUhCTY", _ZN6WebKit17ChildProcessProxy15clearConnectionEv) +STUB("qQWV-1FVAnY", _ZNK15AbstractStorage15FacebookStorage13GetCapabilityEv) +STUB("qQZGdYkEytk", _ZN3sce4Json11InitializerD2Ev) +STUB("qQjT3pNT14o", WKPreferencesGetTextAreasAreResizable) +STUB("qQmgUcV7N6w", Java_java_lang_ClassLoader_00024NativeLibrary_load0) +STUB("qQoLWGXNlDI", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead18unsetMaxSpectatorsEv) +STUB("qQtTxRn8w5A", u_formatMessage_67) +STUB("qQwC0qx1Sdo", _ZN9Inspector14InspectorAgentnwEm10NotNullTagPv) +STUB("qQzi4cx9FYc", _ZN7WebCore18CustomHeaderFieldsD2Ev) +STUB("qR56HqfBHXg", mono_aot_I18N_CJKunbox_trampolines) +STUB( + "qR57vtAF3gw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE8pushBackERKS8_) +STUB("qR6GVq1IplU", _ZTSSt4_Pad) +STUB( + "qRAX1AHQnyQ", + _ZN8meta_gen11MsvPromoter26setKeyValue_TBLV_SeasonNumENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB("qRBrE+T5ajc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE7popBackEv) +STUB("qRFwHXip2Y8", _ZN3sce2Np9CppWebApi6Common17ParameterBaseImpl18unSetRequestHeaderEPKc) +STUB("qRL4gUpMneE", mono_aot_System_Transactionsjit_got) +STUB("qRLH+Z7g4DA", _ZN3sce7Toolkit2NP2V28Matching6MemberC2Ev) +STUB("qRLpm-alR90", sqlite3_value_text16) STUB("qRUACYyUNFA", sceVrSetupDialogGetStatus) +STUB( + "qRW88q8Fv5k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEED2Ev) +STUB("qRbFgenhRU4", _ZN12video_parser7cVpUtil16convLangIsoToStrEtPcj) +STUB( + "qRbM+gs03e0", + _ZN3sce2Np9CppWebApi14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyD1Ev) +STUB("qRjpKsDbrjI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEEaSERKS7_) +STUB( + "qRkGXAEOXJ4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEED1Ev) +STUB("qRyF3OyzJrQ", delegate_invoke_impl_target_9_p) +STUB( + "qS3lHoEoaHA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEEdeEv) +STUB("qS85SeRSd8A", JSDisableGCTimer) +STUB( + "qS8HiU9TQAk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEC2EPS8_) +STUB("qSDSI1y7dvQ", + _ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors25unsetValidationConstraintEv) +STUB( + "qSF9O8ZTCuA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEE7add_refEv) +STUB("qSKl0BnrCcM", mono_aot_Sce_Vsh_Orbis_BgftAccessorunbox_trampolines) +STUB("qSPtYrJTJMo", MASSMAInitialize) STUB("qSPximdlUuY", sceDebugGetApplicationIdByTitleId) +STUB("qSUqGWVDKuc", uprv_timezone) +STUB( + "qSWUwjkHxyY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEE7get_refEv) +STUB( + "qSYq4NBj630", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("qSaZEXaoDkg", uset_retainAll_67) +STUB("qSbpBon7f2s", glUniformBlockBinding) +STUB("qSdbWnQFsUg", WKViewHandleKeyboardEvent) +STUB("qSfNDAxTqSA", _ZN7WebCore28InspectorFrontendClientLocal26changeAttachedWindowHeightEj) STUB("qSgs-wwrlLU", sceUserServiceSetSystemLoggerHashedAccountIdTtl) +STUB("qSiIrmgy1D8", _ZTSPKb) +STUB("qSjr63bfZwM", _ZN3WTF14FileSystemImpl13listDirectoryERKNS_6StringES3_) +STUB( + "qSkuGHtDIRQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEdeEv) +STUB("qSl4KOer9FQ", Java_java_security_AccessController_getInheritedAccessControlContext) +STUB("qSmqLXXCPas", _ZN3sce4Json6StringC1Ev) +STUB( + "qSpI9daAy+g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEED2Ev) +STUB("qSuSPi84UTw", + _ZThn16_N9Inspector22InspectorDebuggerAgent20setBreakpointsActiveERN3WTF6StringEb) +STUB("qSul5Durywc", _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_6StringEEptEv) +STUB( + "qSuuS4N7GTs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("qT0ciXOUTpo", _ZThn136_N7WebCore16HTMLMediaElement14setCurrentTimeEd) +STUB( + "qT2e00Mf2Gs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEC2EPNS2_10LibContextE) +STUB("qT4WArvd-FI", _ZN3JSC2VM20proxyObjectSpaceSlowEv) +STUB("qT5uLG2KQHM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEppEi) STUB("qT707tJvsQ8", sceCesRefersUcsProfileCp775) +STUB("qT7SIucN81c", + _ZN7WebCore14SchemeRegistry40registerURLSchemeServiceWorkersCanHandleERKN3WTF6StringE) STUB("qT8-eJKe+rI", sceUserServiceSetGlsLiveQuality) +STUB("qTES2h4rwcc", mono_array_new_specific) +STUB( + "qTFnxKcfGuw", + _ZN3sce2Np9CppWebApi14SessionManager2V138JoinedPlayerSessionWithPlatformFactory7destroyEPNS3_31JoinedPlayerSessionWithPlatformE) +STUB("qTH-il6o328", _ZN3sce7Toolkit2NP2V27Session21ChangeableSessionDataD2Ev) STUB("qTHiabfEukw", sceApplicationSetCanvasHandle) +STUB( + "qTJDqZ2nTZs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "qTJG09HRWis", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEEC1ERSA_) +STUB("qTKSOk6q8qU", Java_com_sony_gemstack_org_dvb_application_AppsDatabaseImpl_n_1enableCallbacks) +STUB("qTMaB6u3ZWU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE8pushBackERKS6_) +STUB("qTO5Lzc9gv0", _ZN3sce2Np9CppWebApi10Activities2V114UserActivities8Activity7setNameEPKc) STUB("qTPRMh4eY60", sceCameraGetAutoWhiteBalance) +STUB( + "qTRUATzPpac", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEC2Ev) +STUB( + "qTeAtPQ0gSo", + _ZN3sce2Np9CppWebApi12Leaderboards2V129GetRankingResponseBodyFactory6createEPNS1_6Common10LibContextERK10SceRtcTickiPNS5_12IntrusivePtrINS3_22GetRankingResponseBodyEEE) +STUB("qTgw+f54K34", _ZTIPKy) +STUB( + "qThBuGC36r8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEC1EPNS2_10LibContextE) +STUB("qTq2nT8tmcE", _ZN7WebCore6Editor16pasteAsPlainTextEv) +STUB("qTqH7FctY-U", _ZN3JSC4Heap7collectENS_15SynchronousnessENS_9GCRequestE) +STUB("qTwVlzGoViY", _ZTVSt22_System_error_category) +STUB( + "qTz4JLzNM9s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEppEv) +STUB("qU9JeLiphww", glVertexAttrib3fv) +STUB( + "qUBsmDiLFoU", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody19npServiceLabelIsSetEv) +STUB("qUD4allHGi0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEE5resetEPS6_) +STUB("qUFOjETOS-4", goby_Init) +STUB( + "qUHtmJlJbeI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEC2Ev) +STUB("qUJIkmd3tyw", WKPreferencesGetColorFilterEnabled) +STUB("qUMCTs-e7Ac", mono_shared_mutex_destroy) +STUB("qUP3pQuGplg", _ZN3WTF10TextStream7releaseEv) +STUB("qUPwIPKvyxM", + _ZN7bmalloc29StaticPerProcessStorageTraitsINS_13IsoSharedHeapEE7Storage7s_mutexE) +STUB( + "qUPxZ5odKlM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE21intrusive_ptr_add_refEPS9_) +STUB("qUTUcm+dXeM", mono_declsec_get_method_action) +STUB( + "qUWj0hHoNrc", + _ZN9Inspector26LayerTreeBackendDispatcher6createERNS_17BackendDispatcherEPNS_33LayerTreeBackendDispatcherHandlerE) +STUB( + "qUXx3KblAQ8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("qUZ2DFowEE4", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEEdeEv) +STUB("qUb2BtUqCAs", _ZN3WTF13StringBuilder12appendNumberEj) +STUB( + "qUbyg7HcJH8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE8copyFromERKS9_) +STUB( + "qUeaaDDDRZA", + _ZNK3sce2Np9CppWebApi14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBody12natTypeIsSetEv) +STUB( + "qUiP-r-GcCw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEC1Ev) +STUB("qUjwsPujhXM", access_fpreg) +STUB( + "qUpPIdlwIdI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEC1EPS8_) +STUB("qUra-RxFAlY", udat_toPatternRelativeDate_67) +STUB("qUxH+Damft4", _ZTIw) +STUB("qUyJrh2QnEI", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetBoolean7Ev) +STUB("qUziNVrQ+wo", _ZNK3sce2Np9CppWebApi7Matches2V119ResponseTeamResults8getScoreEv) +STUB("qV+NuHWcYDQ", _ZNK3sce2Np9CppWebApi13InGameCatalog2V513ContentRating6getUrlEv) +STUB( + "qV4G5hDV7cM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE) STUB("qVBNhnqUz-4", sceShellCoreUtilAcquireBgmCpuBudget) STUB("qVFutWcNYZ8", sceUpsrvUpdateDoUpdateWithPupPath) +STUB("qVHpv0PxouI", mbrtowc) +STUB( + "qVItNHWqkcc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEE7add_refEv) +STUB("qVJCg3IPUd0", _ZL22_sceLibcDeleteWithSizePvm) +STUB("qVMoaUF+sEw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEED2Ev) +STUB("qVOSuDRHCpA", _ZN3sce4Json5Array5clearEv) +STUB("qVPwv-fKXn4", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEEC2Ev) +STUB("qVS+sF8gDgk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEptEv) +STUB("qVZ2JP25Cyo", mono_aot_System_ServiceModeljit_code_end) +STUB("qVbYezgf968", _ZNK3sce2Np9CppWebApi7Matches2V120ResponseMatchResults6toJsonERNS_4Json5ValueEb) +STUB( + "qVdiZyuLAtM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "qVe4wscxxTk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "qVgEilbwQ9s", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEaSERKSA_) +STUB( + "qViwH1DS+1I", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEppEi) +STUB("qVmEbYCnt6k", _ZN7WebCore21NetworkStorageSessionC2EN3PAL9SessionIDE) +STUB("qVqE22mHm6M", WKPreferencesGetMinimumZoomFontSize) +STUB("qVrMxeDN6Zs", _ZN7WebCore13HTTPHeaderMapC1Ev) +STUB( + "qVrpZiQY5Qs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEEC2EPS8_PNS2_10LibContextE) +STUB("qVwHRUAzJWM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V19JoinStateEED2Ev) +STUB("qVwgrECn6lI", _ZN3sce7Toolkit2NP2V210Tournament17TournamentDetailsC2ERKS4_) STUB("qVxzDsyHBWY", sceVrTrackerGetStateRelative) +STUB( + "qVyhgyIgQlE", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V128AddAndGetVariableRequestBody35setComparedLastUpdatedUserAccountIdEPKc) +STUB("qVzpKiF63s8", vzone_writeFromStart_67) +STUB("qW-XDR3BWfg", _ZN3sce2Np9CppWebApi6Common13ParameterBase16setRequestHeaderEPKcS5_) +STUB( + "qW0bkHFCKO4", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEEiRNS2_10LibContextEPT_m) +STUB( + "qW7aQOea1Yc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEEC1Ev) +STUB("qW8CbjKrkUM", _ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEE21intrusive_ptr_sub_refEPS5_) STUB("qW9M0bQ-Zx0", sceNpScoreCreateTitleCtx) +STUB("qWAGxvQ7X6c", + _ZN12video_parser20cVideoContentFactory17_getContainerTypeEPKcRNS_19VP_CONTAINER_TYPE_eE) STUB("qWESlyXMI3E", sceLibcMspacePosixMemalign) STUB("qWFV6ZnNsRI", sceVisionManagerRequestCalibrateTrackingLed) +STUB("qWGMU2q898I", _ZNK7WebCore37BasicComponentTransferFilterOperation17passthroughAmountEv) +STUB( + "qWO4BVZ41Dw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) STUB("qWYHOFwqCxY", sceUserServiceGetAccessibilityVibration) STUB("qWcbJkBj1Lg", sceNpWebApiSetRequestTimeout) +STUB( + "qWeeLwQrs4s", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE5eraseENS2_13ConstIteratorIS6_EERS9_) STUB("qWhyDl-dhSk", scePerfPmcResetProc) STUB("qWoGe2XqwVw", sceKernelIccIndicatorBootDone) +STUB("qWrpSb35t4M", _ZN7WebCore24CoordinatedGraphicsLayer21setShowRepaintCounterEb) +STUB( + "qWuHTSAp348", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEE7get_refEv) +STUB("qWw6FXj0JGo", g_timer_new) +STUB( + "qX+agTpRkZ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("qX2IjV3icX0", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15PlayedWithStoryEE7addressERKS3_) +STUB( + "qX3kaElsvyY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEE7get_refEv) +STUB( + "qX49025dHQA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEC2ERS7_) +STUB("qX5yvoPqSpQ", _ZN3WTF9dayInYearEiii) +STUB("qXFWh-zLIos", _ZTVN7WebCore16DatabaseProviderE) +STUB( + "qXGGSOni-Pc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEE5resetEPS9_) +STUB( + "qXJ9Gbm7lLo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEC1Ev) +STUB("qXJKxeEqmic", _ZN3JSC7JSProxy9classNameEPKNS_8JSObjectERNS_2VME) +STUB( + "qXL7ilwIZUw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE4sizeEv) +STUB( + "qXM5anCHQ0E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEE11release_refEv) STUB("qXMciKkR0H0", sceDebugWriteProcessRegister) +STUB( + "qXMrp9KnLqc", + _ZN7WebCore14DocumentLoader16redirectReceivedERNS_14CachedResourceEONS_15ResourceRequestERKNS_16ResourceResponseEON3WTF17CompletionHandlerIFvS4_EEE) +STUB( + "qXNvbxcNm2A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEC2Ev) +STUB( + "qXQ0Lqvf4JY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEEptEv) +STUB( + "qXQlCDt8Mb4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC2ERKSA_) +STUB("qXSNbAnlsKg", u_isIDIgnorable) +STUB("qXTJPJYZQrA", _ZN9Inspector19InspectorAuditAgentdlEPv) +STUB("qXUXM3P1VlM", _ZN7WebCore17JSXPathExpression9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("qXWvt+uD1oA", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEEC1Ev) +STUB("qXfTToOHVgs", WKBundleFrameGetDocumentBackgroundColor) +STUB( + "qXixftOpb7c", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("qXkZo1LGnfk", _Atomic_compare_exchange_strong_2) +STUB( + "qXqpvqFWZVQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEE5resetEPS9_) +STUB( + "qXtsIH-5Lsg", + _ZN3sce2Np9CppWebApi14SessionManager2V137ResponsePlayerSessionSpectatorFactory7destroyEPNS3_30ResponsePlayerSessionSpectatorE) +STUB("qXuAm4m41Do", _ZNK7WebCore14DOMCacheEngine6Record4copyEv) +STUB("qXzav3VQQ00", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEppEi) +STUB( + "qY+eIfI5JDA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("qY+oMNXkc6Y", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE5beginEv) +STUB( + "qY1qoW3T1+w", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE3endEv) +STUB("qY895ndHoiI", _ZN3WTF22FastBitVectorWordOwner13setEqualsSlowERKS0_) +STUB( + "qYCSesOwYMo", + _ZN7WebCore22EmptyFrameLoaderClient22dispatchDidFailLoadingEPNS_14DocumentLoaderEmRKNS_13ResourceErrorE) +STUB( + "qYDCEgv6G+0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "qYFqca3YUbs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEE5resetEPS6_) +STUB( + "qYGymoTVWck", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE3endEv) +STUB("qYIaDKP6Xx4", WKWebsitePoliciesSetContentBlockersEnabled) +STUB( + "qYJWnTjQAyg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEC2ERKS7_) +STUB( + "qYO+BopAoBM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEC2EPNS2_10LibContextE) +STUB( + "qYRYtTChA0k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("qYUBbnO9I4Q", _ZN7WebCore16VisitedLinkStoreD2Ev) +STUB("qYaeRL6NMcM", mono_aot_ReactNative_Components_Vshjit_got) STUB("qYbmAxRGuq8", sceMusicPlayerServiceGetTrackListVersion) +STUB( + "qYctVoQvq-Y", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_20ChallengeRecvDetailsENS1_15AppSTLAllocatorIS5_EEEED1Ev) +STUB("qYhnoevd9bI", _ZSt9terminatev) +STUB("qYjc+6V1cmo", _ZN9Inspector24WorkerFrontendDispatcherdaEPv) STUB("qYu6y1E0Qbg", sceCesRefersUcsProfileCp1250) STUB("qYwuXe0hTHs", sceKernelGetDebugMenuModeForPsmForRcmgr) +STUB( + "qZ+LE90i7+s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEE7get_refEv) +STUB( + "qZ16EOB9iLw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEptEv) +STUB( + "qZ9U8QaSAJc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEaSERKS9_) +STUB("qZB1vmD6X+s", _ZN3sce7Toolkit2NP2V28Matching6Member5resetEv) +STUB("qZDRsY7kQ0s", WKContextGetUsesSingleWebProcess) STUB("qZNF03+ghLI", sceCompositorFlush) +STUB("qZQOqcZu+Ow", qs3) +STUB("qZT629zocjs", _ZNK7CoreIPC10Connection31platformCanSendOutgoingMessagesEv) +STUB( + "qZgNdt-aIIY", + _ZN7WebCore13PathUtilities26pathWithShrinkWrappedRectsERKN3WTF6VectorINS_9FloatRectELm0ENS1_15CrashOnOverflowELm16EEEf) +STUB("qZi55RxIdis", _ZN3sce7Toolkit2NP2V210Tournament20OneVsOneMatchDetailsD1Ev) +STUB( + "qZtogg7bY6k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEE11release_refEv) +STUB("qZzUY4uyYsY", _ZN7WebCore10ScrollView20setCanHaveScrollbarsEb) STUB("qa1+CeXKDPc", sceVrTrackerStartLiveCapture) +STUB( + "qa9mNUGwwZ8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "qaEIQYUzGdo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEEaSERKSA_) +STUB( + "qaNvOfI397U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEEC2ERSA_) +STUB( + "qaPMkls5UvU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEneERKS9_) +STUB( + "qaPrCPhdSDY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE4sizeEv) +STUB("qaW3qA9kDdU", _ZN7WebCore8SVGNames15horiz_adv_xAttrE) +STUB( + "qaX9EIvXUZc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("qaXoJf3l2cM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V112TicketStatusEEneERKS7_) +STUB("qaZVfbB2kuk", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessionsD2Ev) +STUB( + "qabFZJRvgvk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEC2Ev) +STUB("qakAHajpl2Q", _ZN3JSC19JSGeneratorFunction6s_infoE) +STUB("qazqkwEEaFY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEptEv) +STUB("qb2WPXNjGgc", _Z30sceRazorGpuThreadTraceShutdownv) +STUB("qb3HEr5op0s", _ZNK3sce2Np9CppWebApi6Common8IteratorImEptEv) STUB("qb4NgfYbH90", sceSystemLogger2DeliveryGetResult) +STUB("qb4U+7L1r5s", __cfi_init) +STUB("qb6A7pSgAeY", _ZNSt9bad_allocD0Ev) +STUB("qb6qqMpPLds", _ZN7WebCore14SchemeRegistry15isBuiltinSchemeERKN3WTF6StringE) +STUB("qb8BBWmmHbQ", + _ZN3sce7Toolkit2NP9Interface17registerNpCommsIdERKNS1_15CommunicationIdENS1_11ServiceTypeE) +STUB( + "qb8yZH1jtr4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEC1EPKS8_) +STUB( + "qbFE+TEqMo4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEEC2ERSA_) +STUB( + "qbFzE4Z6gUs", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer54setpostPlayerSessionsSessionIdMemberPlayersRequestBodyENS1_6Common12IntrusivePtrINS3_51PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEE) +STUB("qbG3dvn-Qvo", + _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchStatusRequest17setNpServiceLabelERKi) +STUB("qbMXW8giTwA", utrace_data_67) +STUB("qbOCEUdzp4g", _ZN7WebCore11MemoryCache11setDisabledEb) +STUB("qbSOcfnrb28", delegate_virtual_invoke_imt_0) +STUB("qbW7qOvVafI", _ZN3sce2np10JsonNumber6SetNumEm) +STUB( + "qbbEiMcviqM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEEaSERSA_) +STUB( + "qbcB+dNKg88", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE17getNpWebApi2ReqIdEv) +STUB( + "qbddD9lUhOA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEE5resetEPS9_) +STUB("qbiKL0cLdw4", mono_aot_Systemunbox_trampoline_addresses) +STUB( + "qbmJ9Ssfpuw", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData26unsetxPsnAtomicOperationIdEv) +STUB( + "qbnWfsnkk4U", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "qboybeVhhac", + _ZN3sce2Np9CppWebApi13InGameCatalog2V527ContainerRatingCountFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_20ContainerRatingCountEEE) +STUB("qbrU92iCLn8", _ZN7WebCore11MessagePort16messageAvailableEv) STUB("qbwy0Ub8b3M", sceUserServiceGetUserNumber) +STUB("qbyn8mAjUPw", _ZN3sce7Toolkit2NP2V23TUS7Request7GetDataC2Ev) +STUB("qc-X7Y+SL5o", _ZN7WebCore18callerGlobalObjectERN3JSC14JSGlobalObjectERNS0_9CallFrameE) +STUB("qc-pEFyi4hU", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V117ConnectionQuality8fromJsonERKNS_4Json5ValueE) +STUB("qc4pnagDrkQ", _ZN3sce7Toolkit2NP2V23TUS7Request10DeleteDataC1Ev) +STUB( + "qc91mdJQ5AQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEC1EPKS8_) +STUB("qcAPv3sQhmY", _ZN4Manx18Curl_flush_cookiesEP13SessionHandlei) +STUB( + "qcCC2dveqro", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEC1Ev) +STUB("qcEhpyjjTMY", rgctx_fetch_trampoline_mrgctx_55) +STUB("qcFkko0v36s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEEC2EPS6_) +STUB("qcK6F+tDBv8", + _ZN3sce2Np9CppWebApi7Matches2V120ResponseMatchResults10setVersionERKNS3_14ResultsVersionE) +STUB( + "qcL3AzcAYFg", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setInteger3ERKi) +STUB("qcM8nnO-V2k", WKUserScriptGetMainFrameOnly) +STUB( + "qcMgYgAWXv8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEC1EPS8_) +STUB( + "qcZAKFdQxzw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEC2EPS8_) STUB("qcZZ8FqdT8c", sceFiosOverlayGetList) +STUB("qcaIknDQLwE", _ZTIN6Dinkum7threads21thread_resource_errorE) +STUB("qcbq6ZtAiL0", _ZN7WebCore11DisplayList10SetLineCapD1Ev) +STUB( + "qcnhx1UAjaQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEmmEi) +STUB( + "qcpVC8kHO5k", + _ZN3sce7Toolkit2NP2V23TUS19addToAndGetVariableERKNS3_7Request19AddToAndGetVariableEPNS2_4Core8ResponseINS3_12TusVariablesEEE) +STUB("qcwPekjtvyE", _ZN3WTF3absERKNS_9MediaTimeE) +STUB( + "qcyeiCogJMU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "qd0z0Rd39e0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEEC2Ev) +STUB("qd1v-zYjor4", _ZNK3sce2Np9CppWebApi7Matches2V123RequestTeamMemberResult8getScoreEv) +STUB( + "qdArV9gP0vA", + _ZN9Inspector22ContentSearchUtilities22textPositionFromOffsetEmRKN3WTF6VectorImLm0ENS1_15CrashOnOverflowELm16EEE) +STUB( + "qdCS8CcF0-8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEppEv) +STUB("qdEq1NFqUO8", mono_aot_Sce_Vsh_DbPreparationWrapperunwind_info) +STUB("qdGFBoLVNKI", quick_exit) +STUB("qdGywZ8cs0Q", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11SharedMedia11ScreenshotsEE19setCustomReturnCodeEi) +STUB("qdHsu+gIxRo", _ZTVSt5ctypeIwE) +STUB("qdKPuKgz4dE", _ZN9Inspector23CanvasBackendDispatcherD0Ev) STUB("qdLo7hti5rc", sceMatAgcUnregisterAllResourcesForOwner) +STUB( + "qdOR6nq1GOs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE21intrusive_ptr_sub_refEPS9_) +STUB("qdUvVU8TFLA", _ZN3JSC11VMInspector2gcEPNS_9ExecStateE) +STUB( + "qdVZCBvCX0g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEC2Ev) +STUB("qdb0LpnRm6M", _ZN7WebCore11DisplayList9DrawImageD0Ev) +STUB("qddMPmxBYYg", _ZN23sceMetadataReaderWriter14StorageManager8finalizeEv) +STUB("qdh9NZ5zYuE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEdeEv) +STUB("qdj8mOsqF0w", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEEC2ERS7_) +STUB("qdjxnl9J8ss", mono_signature_get_call_conv) +STUB( + "qdky893hwgE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEppEi) +STUB("qdlHjTa9hQ4", fdopen) +STUB( + "qdm3mC63FnQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "qdoLpGEQ1XE", + _ZN7WebCore11ImageBuffer13sinkIntoImageESt10unique_ptrIS0_St14default_deleteIS0_EENS_18PreserveResolutionE) +STUB("qduLx0vnofc", _ZN3WTF10StringView16GraphemeClusters8IteratorC2ERKS0_j) +STUB("qdvU43se+yY", _ZN3JSC20failNextNewCodeBlockEPK15OpaqueJSContext) +STUB("qdwolNeMtao", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V114SearchOperatorEEdeEv) +STUB("qdzhHHYhwdM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEC2ERS7_) +STUB( + "qe+OMPedB5U", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB( + "qe-mZd1mw68", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEC1EPS6_PNS2_10LibContextE) +STUB("qe-vjGkl2a8", + _ZN23sceMetadataReaderWriter11gvMp4Parser27gvMp4ParserExtractThumbnailERKSsRNS_9ThumbnailE) +STUB( + "qe0SajNgsUI", + _ZN3sce2Np9CppWebApi14ConnectAccount2V219PartnerTokenFactory6createEPNS1_6Common10LibContextEPKcS9_RKNS5_6VectorINS5_6StringEEElPNS5_12IntrusivePtrINS3_12PartnerTokenEEE) STUB("qe7oZ+v4PWA", sceHttpDeleteRequest) +STUB("qeA5qUg9xBk", _ZNSt9_Num_base12max_digits10E) +STUB("qeAJHzVkBvA", + _ZN3sce2Np9CppWebApi14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyD2Ev) +STUB("qeBFfaIThIM", _ZN3sce7Toolkit2NP2V26Friend12Notification16FriendlistUpdateC2Ev) STUB("qeF-q5KDtAc", sceNpMatching2GetUserInfoList) +STUB("qeNAVBWLQfs", _ZN3sce7Toolkit2NP2V24Core17CustomRequestBaseC1ERKS4_) +STUB("qeRMSD4OtHI", Java_com_sony_bdjstack_init_Init_initLogSocket) +STUB("qeU-RFq8c7A", mono_aot_Sce_Vsh_VideoRecordingWrapperplt) STUB("qeUNRM8Wl6w", sceCustomMusicCoreBgmClose) +STUB("qeVN+wIVdAM", _ZN7WebCore10TimeRanges6createEv) +STUB("qeWAM1uDRvk", _ZTVN7WebCore11DisplayList8RecorderE) +STUB( + "qeZCDyfdq2U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEEC1ERKSA_) +STUB( + "qecMmTSe8O0", + _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody12setSubmitterERKNS1_6Common12IntrusivePtrINS3_9SubmitterEEE) +STUB("qectilqOQAs", il2cpp_thread_detach) +STUB( + "qeiMQlDNP4E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE7reserveEi) +STUB( + "qejktx65+zE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEED2Ev) +STUB("qenOn6SFIkw", ucnv_MBCSSimpleGetNextUChar_67) +STUB( + "qeo7GQhR+bs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE7reserveEi) +STUB("qeo9LBh4+Y0", _ULx86_64_needs_initialization) STUB("qesF88X4DRg", sceAmprMeasureCommandSizeReadFileGather) +STUB("qf0TxSALFNw", udatpg_getBestPattern_59) +STUB("qf2I9BlKXis", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product7getTypeEv) +STUB( + "qf55pb73AKU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEED2Ev) STUB("qf7OY7ifzzY", ScePsmMonoRaiseException) +STUB( + "qf7VG+RXNwQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEplEm) +STUB("qf9oZYiIk1Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEED2Ev) +STUB("qfNBROhf3q8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEC1ERS7_) +STUB( + "qfNWi-kqx60", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE5beginEv) +STUB("qfPu91qDeRM", _ZN3sce7Toolkit2NP17MessageAttachmentD1Ev) +STUB( + "qfRrRE-A-MM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("qfVbOLtgty8", _ZN3sce7Toolkit2NP9Utilities6FutureI19SceNpTrophyGameDataEC1Ev) +STUB("qfVwWqZmwhU", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_17TitleCloudStorage2V19ConditionEEC2Ev) +STUB("qfX0H3hZR-0", rgctx_fetch_trampoline_rgctx_75_p) +STUB("qfdBMD8tNKs", sqlite3_column_bytes) +STUB( + "qfiROPVCXtM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE6resizeEj) +STUB( + "qfiSh+n0BxY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("qforJrgwbuY", _ZN3sce2np9JsonValue7GetNullEv) +STUB( + "qfsfSrvEyAQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("qfwf0ujsr-w", _ZN7WebCore18PrewarmInformationC1Ev) +STUB( + "qg-8KAXiWXM", + _ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody16unsetCustomData1Ev) +STUB("qg-EzLhSaWg", _ZN7WebCore8SVGNames11textPathTagE) +STUB("qgBKNnO1BaI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEdeEv) +STUB( + "qgF7uEC+cMY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEptEv) +STUB("qgItU8JFUhg", _ZN12video_parser5vpcom8datetime8DateTime10NetworkUTCEv) +STUB("qgNK9+82H8A", rgctx_fetch_trampoline_mrgctx_23) +STUB( + "qgO7VU6m4jg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE6resizeEj) +STUB("qgQL4t1Ywng", mono_aot_System_Transactionsplt) +STUB("qgS+x1WhS-c", _ZN3JSC14ProtoCallFrame11setArgumentEmNS_7JSValueE) +STUB("qgT8-Cudu-k", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18GameCustomDataItemEE8allocateEmPKv) +STUB( + "qgWF-qoQ+R8", + _ZN9Inspector20DOMBackendDispatcher16querySelectorAllElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("qgZpgSSrmAE", mono_btls_x509_lookup_mono_new) +STUB( + "qgaq6Dp-0jM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEmmEi) +STUB("qgc4ehrLEsc", mono_aot_Sce_Vsh_Np_RifManagermethod_addresses) +STUB( + "qgjSRhicI0w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEC2EPS8_) +STUB( + "qgkZzSqW0oE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEEC1ERKSA_) +STUB("qglYjtw0+Zk", mono_aot_Sce_Vsh_SysfileUtilWrapperplt) STUB("qgt6cIuingk", sceVshAvcapStop) +STUB("qgx+NN+F2P0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEEC1EPS5_PFvS7_EPNS2_10LibContextE) STUB("qgxDBjorUxs", sceHttpCreateConnectionWithURL) +STUB("qgyLyT6tAv0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEC1Ev) +STUB( + "qgyUBo2hpUA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE8pushBackERKS8_) +STUB( + "qh-Ymtf1J6A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEEC1EPS8_PNS2_10LibContextE) +STUB( + "qh3HbUTyK78", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData23unsetxPsnNpServiceLabelEv) +STUB("qh3YUmeXi-8", _ZN12video_parser13cVideoPathMgv17GetLicenseEKBNameEPc) +STUB( + "qhBkdFDGrbc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("qhBwgG5-f3I", addProtocolInfoList) STUB("qhDBtIo+auw", sceRtcSetCurrentNetworkTick) +STUB("qhJZnqY2oIs", _ZN3sce7Toolkit2NP2V211SharedMedia5VideoC2Ev) +STUB("qhJxMmYtqKQ", delegate_virtual_invoke_22_p) STUB("qhPJ1EfqLjQ", sceSystemServiceGetParentSocketForPs2Emu) +STUB("qhQqwzzwTW8", ubrk_countAvailable_67) +STUB("qhUdIkqN-2w", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V116TaskAvailabilityEEdeEv) +STUB("qhWR6O+Zp+U", u_strcmp) +STUB("qhXb7tPYUZ8", _ZNK3WTF9MediaTime7compareERKS0_) STUB("qhZbOi+2qLY", sceNetCtlApRpClearEvent) +STUB( + "qhc+1e5gUSc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE8capacityEv) +STUB( + "qhcmXZiLvHg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEC2Ev) +STUB("qhd6-U5vTtQ", _ZN12video_parser5vpcom10SwapEndianEPhPKhii) +STUB("qheRt4fL0BU", _ZN7WebCore12NodeIteratorD1Ev) +STUB("qhfc2KF032Q", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V117InvitableUserTypeEEdeEv) +STUB("qhl2n16vjmU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS15TusDataStatusesEED1Ev) +STUB( + "qhsuAaf795o", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE5beginEv) +STUB( + "qi+xvgAV4bo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEdeEv) +STUB( + "qi39DDnPiJQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE10setContextEPNS2_10LibContextE) +STUB("qiAvfROsb6Y", WKContextConfigurationSetResourceLoadStatisticsDirectory) +STUB("qiC1z22pL74", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12EventsClient6EventsEE5resetEv) +STUB( + "qiCGthXZoRw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "qiD2PU2Jstc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEED1Ev) +STUB("qiF3loVWl8M", WKPreferencesSetCaretBrowsingEnabled) +STUB( + "qiF9FxIUbVw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEplEm) +STUB( + "qiIwqn0yd0s", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEeqERKS9_) +STUB("qiJyXuCTOF0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEmmEi) STUB("qiL4fFObAxM", sceKernelGetCpuTemperature) +STUB("qiR-4jx1abE", _ZNSs6appendERKSsmm) +STUB( + "qiRvIgdptSw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEC1EPKS8_) +STUB( + "qiSpfiuaM2s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEEC1Ev) +STUB( + "qiTePMyqCjc", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfile12setaccountIdEPKc) +STUB( + "qie8qosEhNI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEppEv) +STUB("qiiiJb+DAW0", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorImEdeEv) +STUB( + "qikSwbQcs5g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEC2EPS8_) +STUB("qiloU7D8MBM", _ZTSSt15basic_streambufIwSt11char_traitsIwEE) +STUB( + "qilxbQrJD54", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "qirskRqLT3M", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEdeEv) +STUB("qiuiYDTTSv0", _ZN3JSC14ProtoCallFrame15clearCurrentVPCEv) +STUB("qivys5MfyN8", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V138SetMultiVariablesRequestBody_variables8getValueEv) +STUB("qizcGi9y7KU", + _ZN3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBody19getTicketAttributesEv) +STUB("qj0dNtgkDbw", _ZN7WebCore15createLiveRangeERKN3WTF8OptionalINS_11SimpleRangeEEE) +STUB( + "qj1f-eb32P4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("qjBlw2cVMAM", vasprintf) +STUB("qjHCYVd2NH0", _ZN9Inspector30TargetBackendDispatcherHandlerD0Ev) +STUB("qjNxRFy6JC0", _ZN9Inspector14InspectorAgentnwEmPv) +STUB("qjOgGXHAGEA", ures_initStackObject) +STUB("qjWeIkH81-Y", ucnv_cbFromUWriteBytes) +STUB( + "qjXs4PyRgAU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEdeEv) +STUB("qjebiZKT83w", _ZN3WTF24AutomaticThreadConditionD2Ev) +STUB("qjpJ7bYIsMU", _ZN7WebCore9HTMLNames13aria_helpAttrE) +STUB("qjrn0E95Tak", WKBundlePageGetAppCacheUsageForOrigin) +STUB( + "qjt5ttUTZ0c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "qjtszSM5uAM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEEC1EPS6_PNS2_10LibContextE) +STUB("qjyK90UVVCM", _ZTVSo) +STUB("qk+vmxE8fNg", TWO23) STUB("qkHOAYtCFxg", sceKeyboardDebugGetDeviceId) +STUB( + "qkI-ccOPbDA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "qkLgkojqfcA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE5beginEv) +STUB( + "qkSHpg+1000", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEdeEv) +STUB("qkVj5Kf6ekI", + _ZThn16_N9Inspector22InspectorDebuggerAgent20setShouldBlackboxURLERN3WTF6StringERKS2_bPKbS7_) +STUB("qkc8lfVX6xI", _ZTVN7WebCore11DisplayList8FillRectE) STUB("qkgRiwHyheU", sceVideodecCreateDecoder) +STUB( + "qkgs+qZ3ifg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEEaSERKSA_) STUB("qkidjMT42sQ", scePlayReadyLicenseGetProperty) +STUB( + "qkjlBSp8Fwk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEC2Ev) +STUB("qkl3Siab04M", _ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEED0Ev) +STUB("qkpaFbsjLGs", _ZN7WebCore17JSHTMLLinkElement11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("qktY6n8C9mM", _ZN7WebCore6DOMURL6createERKN3WTF6StringES4_) +STUB( + "qktltyo6XMA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("qkuA-unH7PU", + _ZNKSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecPK2tmcc) STUB("qkySrQ4FGe0", sceFontGraphicsRenderResource) +STUB("qkym2p3fg3E", _ZN7WebCore11MathMLNames14actiontypeAttrE) +STUB( + "ql+Dvy3QiKc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEEaSERSA_) +STUB("ql1h2F4TIcE", + _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse22getLastPausedTimestampEv) +STUB("ql2w-SrRGbI", _ZN3JSC14ProtoCallFrame12setCodeBlockEPNS_9CodeBlockE) +STUB("ql2yTbxzqno", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEEaSERKS7_) +STUB("ql6C5tkX4hQ", mono_aot_Sce_Vsh_Orbis_BgftAccessorunbox_trampolines_end) +STUB("ql6hz7ZOZTs", _ZTSSt17bad_function_call) +STUB( + "qlCbGZLh5BQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEEcvbEv) +STUB( + "qlFSb3YfsvU", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEEiRNS2_10LibContextEPT_m) +STUB("qlHZw5NpNZ0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEC2Ev) +STUB("qlKTLH4tj-I", _ZNK7WebCore6Widget25convertFromContainingViewERKNS_10FloatPointE) +STUB("qlKq57g8Ybk", __asan_load1_noabort) +STUB( + "qlPOaFRkg2o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "qlQNioJVVcc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "qlR8rMa7TBw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEED1Ev) +STUB("qlTr81UvpT0", mono_profiler_install_statistical_call_chain) +STUB("qlVcrnLgYGA", _ZN3sce7Toolkit2NP2V212EventsClient17EventShareFactoryC1Ev) +STUB("qlWLlgf0DyY", WKUserContentExtensionStoreCreate) +STUB("qlWiRfOJx1A", __fpclassifyd) +STUB("qlbDXy03lIE", mono_aot_System_ComponentModel_DataAnnotationsplt) +STUB( + "qlcekUWWmQ4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEmmEv) +STUB( + "qlgDemLtG48", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEC1EPS8_) STUB("qlk9pSLsUmM", pthread_attr_getschedparam) +STUB( + "qllw1ReMYsI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEEC1ERKSA_) +STUB("qlm5N3rn058", mono_declsec_get_inheritdemands_class) +STUB("qlolMc1PYeA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEC2Ev) +STUB( + "qlv7toJ3XDc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEC2Ev) +STUB( + "qlvV3qxuDNs", + _ZN7WebCore10MouseEvent14initMouseEventERKN3WTF10AtomStringEbbONS1_6RefPtrINS_11WindowProxyENS1_13DumbPtrTraitsIS6_EEEEiiiiibbbbsPNS_11EventTargetE) +STUB("qm1zT6B1vCU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEE3getEv) +STUB("qm2-iVs4W0Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEcvbEv) +STUB( + "qmCgb8jcu4g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEE5resetEPSA_) +STUB("qmDH4PGK8vQ", sqlite3_bind_null) +STUB( + "qmFXOojCM00", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEptEv) STUB("qmINYLuqzaA", sceNpWebApi2IntCreateRequest) +STUB("qmIYOuqK320", GCC_except_table459) +STUB("qmL9I2PfTtI", _ZNK7WebCore7Element10attributesEv) +STUB("qmLWT2PLf20", JNU_ThrowNoSuchFieldError) +STUB( + "qmOPD0+TyQM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("qmQy5IS2NHc", mono_conc_hashtable_foreach) +STUB("qmRdK0yL9xA", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEED2Ev) +STUB("qmSkVbWtvkA", mono_aot_System_ServiceModel_Webunbox_trampolines) +STUB("qmXc-zdTUtw", mono_aot_Sce_Vsh_VoiceMsg_VoiceMsgWrapperunbox_trampoline_addresses) STUB("qmZHHehEDog", sceNpManagerIntLoginValidateCredential) +STUB("qma2Q24pDPI", JSValueToObject) +STUB("qmbCbaOpxPY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching6WorldsEE3getEv) +STUB("qmcPfIOW67A", _ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEED2Ev) +STUB( + "qmh-IZWi-BQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "qmigPf7kHgM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEixEm) +STUB("qmjmnSyJ+ik", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS12TusVariablesEE3setEv) +STUB("qmnEVyMNgEA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEE3getEv) +STUB( + "qmrMxyrmRek", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEC1EPS8_) +STUB("qmtHTmA-CcQ", _ZNK3sce2np4Time18ConvertToPosixTimeEPl) +STUB("qmxGbVvXh6w", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V120PlayerJoinableStatusEEptEv) +STUB("qmya3Mw0akk", EVP_aes_128_ctr) +STUB( + "qn+ghagvOIM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "qn2B0usD7C4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEC1EPS8_) +STUB( + "qn8eMe6BxiE", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer20getuseCurrencySymbolEv) +STUB( + "qn9xJfHz8ks", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119NatConnectivityFrom9setToNat3ERKNS1_6Common12IntrusivePtrINS3_24NatConnectivityToMetricsEEE) +STUB( + "qnAiviTWX+Q", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB("qnB+y2qRV48", udata_getInfo) +STUB( + "qnBABNvaa0w", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorI16SceNpTusVariableNS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB("qnDdqDwt7No", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V115SearchAttributeEEC2EPKS6_) STUB("qnI61-kCm1E", sceAvSettingGetCurrentDeviceInfo_) +STUB( + "qnKHxJe0OQ4", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V125NatConnectivityProperties11setFromNat3ERKNS1_6Common12IntrusivePtrINS3_19NatConnectivityFromEEE) +STUB( + "qnLwh3D32qo", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeAccountId2OnlineIdBatchC1ERS5_) +STUB( + "qnM4mJUXKTo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "qnP8TZ0ry1o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEE11release_refEv) +STUB("qnVSx0dMIj4", WKRenderLayerIsClipped) +STUB("qnXuCOQKKto", mono_btls_x509_get_issuer_name_string) +STUB("qnaGQEHRoH4", + _ZN3JSC14JSGlobalObject14queueMicrotaskEON3WTF3RefINS_9MicrotaskENS1_13DumbPtrTraitsIS3_EEEE) +STUB("qnhUHM3-3mI", + _ZN9Inspector17BackendDispatcherC1EON3WTF3RefINS_14FrontendRouterENS1_13DumbPtrTraitsIS3_EEEE) +STUB("qnkMYyAuCt0", OBJ_cmp) +STUB( + "qnknJ8IgYQE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEEC1ERKSA_) +STUB("qnlCAx-AKVA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEED1Ev) +STUB("qnoG-P8RCKg", SSL_CTX_set_alpn_select_cb) +STUB("qnoSWI+-9+8", __sanitizer_dump_trace_pc_guard_coverage) +STUB("qnpv-sAGHww", _ZN3WTF8msToYearEd) +STUB( + "qnqutcNsh3E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEEdeEv) +STUB("qnvk932UxYg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEdeEv) STUB("qo5mH49gnDA", sceNpPushTerm) STUB("qoCSp8m0Ybo", sceCesRefersUcsProfileCp860) +STUB( + "qoIIkRB1ScQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("qoMUZrLYgB4", _ZN7WebCore8Document33webkitDidExitFullScreenForElementEPNS_7ElementE) +STUB("qoNvFHi6YKU", _ZN3sce2Np9CppWebApi6Common10InitParamsD2Ev) +STUB("qoO6VaMuvG0", _ZN3WTF19isCompilationThreadEv) +STUB("qoPgZ4p-RQ8", _ZN7WebCore9HTMLNames5olTagE) +STUB( + "qoZv93FLYow", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEEEaSERKSA_) +STUB( + "qoaH+WqekyU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEEC1Ev) +STUB("qodr9TJuFds", FTA_Add_Module_pshinter) +STUB( + "qohdsJtig+c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEC1Ev) +STUB("qoiX1Aim+dk", rgctx_fetch_trampoline_mrgctx_121_p) +STUB( + "qoijn1zyHn0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEED2Ev) +STUB( + "qoisVROShIQ", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody16unsetCustomData2Ev) +STUB( + "qooZeFzDaMA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEE7add_refEv) +STUB("qorBNOn3BWk", + _ZN3sce2Np9CppWebApi14SessionManager2V112JoinableUserC1EPNS1_6Common10LibContextE) +STUB("qos3JIrKrDg", hb_ot_layout_language_find_feature) +STUB( + "qoseNaHOodw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEC1Ev) +STUB( + "qowP29+9aKQ", + _ZN3sce2Np9CppWebApi7Matches2V118AddedPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_11AddedPlayerEEE) +STUB("qoysbJFu5sI", FT_Get_First_Char) +STUB( + "qp-RQX71vQk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEC1EPS6_PFvS8_EPNS2_10LibContextE) STUB("qp-rTrq1klk", sceNpTusGetMultiSlotVariableVUserAsync) +STUB("qp2zYFWjFHo", _LMBCSData16_67) +STUB( + "qp4TYCVb4cI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "qp4kyC5DUEE", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_28ActivityFeedSharedVideoStoryENS1_15AppSTLAllocatorIS5_EEEED2Ev) +STUB( + "qpAeYLrF-Wk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEED2Ev) +STUB("qpApG2IF8po", _ZN3JSC7Symbols29allocateInt16ArrayPrivateNameE) STUB("qpGITzPE+Zc", sceGnmDebugHardwareStatus) +STUB( + "qpGmCQDONr4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEEneERKS7_) +STUB( + "qpJdCH51P-U", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEEC2ERKSC_) +STUB("qpPCA8hKCHU", + _ZN3sce2Np9CppWebApi15Personalization2V118ErrorEntityFactory7destroyEPNS3_11ErrorEntityE) +STUB( + "qpPDmo-Cr1A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEEaSERSA_) +STUB("qpSe9uajx7c", _ZN7WebCore17SQLiteTransaction6commitEv) +STUB( + "qpUCbf18cWY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEEC2ERKS9_) +STUB("qpUgzdXZkLA", WKWebsiteDataStoreConfigurationSetNetworkCacheDirectory) +STUB("qpX63wX9p2g", + _ZNK3sce2Np9CppWebApi14SessionManager2V132RequestPlayerSessionMemberPlayer12playersIsSetEv) +STUB("qpZ3oQs9aoQ", _ZNK7WebCore13HitTestResult9imageRectEv) +STUB( + "qpbE8yWmvAo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE8pushBackERKS8_) +STUB( + "qpgvPHxmRoI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEmmEv) +STUB( + "qpgygaPW1bY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE6resizeEj) +STUB("qphY013lGno", _ZNK7WebCore13MediaQuerySet9mediaTextEv) +STUB("qpi9pgZKF5g", _ZN3WTF16codePointCompareERKNS_6StringES2_) +STUB( + "qpisSDWGlr8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE10setContextEPNS2_10LibContextE) STUB("qpo-mEOwje0", sceSystemGestureOpen) +STUB("qpoMWWd+nL4", mono_lock_free_queue_init) +STUB( + "qpqAsPMQlxs", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi32ParameterToPostGameSessionsTouch9terminateEv) +STUB( + "qpsnOUa1OxE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE7popBackEv) +STUB("qpuf5izWYX4", _ZN7WebCore17makeBoundaryPointERKNS_8PositionE) +STUB("qq4KgMh3GPk", _ZN3sce7Toolkit2NP2V212EventsClient13EventDurationD2Ev) +STUB( + "qq6Y5eES5UE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("qqDWhdVfwY0", _ZN7WebCore12ChromeClient17elementDidRefocusERNS_7ElementE) +STUB("qqDpxJnCHyo", uloc_getLocaleForLCID) +STUB( + "qqIW-c0HggE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEdeEv) +STUB("qqKbZiXA178", WKWebsiteDataStoreSetPerOriginStorageQuota) STUB("qqL5VYwFLgo", sceShellCoreUtilUnmountDownloadDataForShellUI) STUB("qqMCwlULR+E", sceVideodec2QueryDecoderMemoryInfo) +STUB("qqPegxeG3Oo", _Getint.barr) +STUB("qqRhRVbPBuQ", mono_aot_ReactNative_Debug_DevSupportunbox_trampoline_addresses) STUB("qqUVGDgQBm0", sceNpTrophyGetTrophyInfo) +STUB("qqUxjwJzc2I", mono_thread_attach) +STUB("qqeEvE7I8yo", _ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody10unsetCauseEv) +STUB("qqg8sYkQrGY", WKAuthenticationChallengeGetPreviousFailureCount) +STUB("qqhKZavy4Pg", _ZN3JSC13WatchpointSet11fireAllSlowERNS_2VMERKNS_10FireDetailE) +STUB("qqisiZ8UC0Y", _ZN7WebCore14WebSocketFrameC2ENS0_6OpCodeEbbbPKcm) +STUB("qqkywbrhVtk", _ZN3sce7Toolkit2NP2V26Friend7Request10GetFriendsC1Ev) +STUB( + "qqmtIWlcanQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEC2Ev) +STUB( + "qqrURwTsr5s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEC1EPS6_PNS2_10LibContextE) +STUB( + "qqx-9bmZHfE", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_18SessionInformationENS1_15AppSTLAllocatorIS5_EEEED1Ev) +STUB("qqx0zUoj5wE", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request11GetWhoLikedD1Ev) +STUB("qqxmzUag73w", + _ZN12video_parser18cProfileCheckerMp419_isPlayableVideoMP4ERKNS_13VpMediaInfo_tE) +STUB("qr+T1Bp3AqE", _ZN3WTF5Mutex6unlockEv) +STUB("qr3uSLa6vy0", mono_aot_Sce_Vsh_LncUtilWrappermethod_addresses) +STUB( + "qr5pio5BIWI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB( + "qrBMeojnyt4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("qrLv6QEOWhA", mono_string_length) +STUB( + "qrO6ev2Y6eQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions7getviewEv) +STUB( + "qrOR6VGSVJ4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEE3endEv) +STUB("qrQBa2BjHWM", _ZN7WebCore8SVGNames6svgTagE) +STUB( + "qrWF8C9nZcE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE7popBackEv) +STUB("qrWtbADYadA", _ZNK7WebCore23ScaleTransformOperation1yEv) +STUB("qra0GikO7Rw", + _ZThn24_N9Inspector22InspectorDebuggerAgent23setAsyncStackTraceDepthERN3WTF6StringEi) +STUB("qrapkI6uMQQ", rgctx_fetch_trampoline_rgctx_86) +STUB("qrawY2PcD-w", _ZN4IPMI4impl11SessionImpl22getServerRequestSocketEv) +STUB( + "qrcV6Z5IkII", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("qrckJiorSWg", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_17TitleCloudStorage2V19ConditionEEC1Ev) +STUB( + "qrjwWpwgz28", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEC2Ev) +STUB("qrmirrWJQR8", _ZN7WebCore11SimpleRangeC1ERKNS_13BoundaryPointES3_) +STUB("qroQoD6LphI", _ZN8meta_gen12JpegPromoter17IsValidResolutionEv) +STUB("qroYZkwRuPA", clock_1600) +STUB("qrp1SAH70hc", mono_aot_Sce_Cdlg_Platformunbox_trampolines) +STUB( + "qrqa5INhe3k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEEC1ERSA_) +STUB("qrtHDfenuWU", _ZN3JSC7Symbols14anyPrivateNameE) +STUB( + "qrvU6ziDWew", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("qs+B5yWiMc4", WKInspectorGetPage) +STUB("qs0-G75Qdyg", mono_aot_Sce_Vsh_Np_Udsunbox_trampolines) +STUB( + "qs1JxlKKgBg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEaSERKS9_) +STUB("qs5agwaZZh0", _ZN7WebCore11DisplayList10StrokeRectC2ERKNS_9FloatRectEf) +STUB( + "qsBZj3gwqT8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE5clearEv) +STUB( + "qsBrBrx6fVw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEeqERKSA_) +STUB("qsMqg3Z51Fk", _ZN7WebCore11MathMLNames11rowspanAttrE) +STUB( + "qsWOTZATzQQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEC1EPS8_) +STUB( + "qsb9UM93-dk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEE7add_refEv) STUB("qsdmgXjqSgk", pthread_rwlockattr_destroy) +STUB("qse7oiGtKVs", + _ZSt9use_facetISt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEERKT_RKSt6locale) +STUB("qsf3QUNkffc", goby_CheckPersonality) +STUB("qshCrfnk0Lg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEEC1EPS5_PNS2_10LibContextE) +STUB( + "qslWj3LQoOs", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V318PsnWebErrorFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_11PsnWebErrorEEE) +STUB("qslq9aFiJ+k", _ZNK3sce7Toolkit2NP2V24Core17CustomRequestBase20getCustomServiceTypeEv) +STUB("qsmbiog279w", _ZN3sce7Toolkit2NP9Interface19appendEventCallbackEPFvRKNS1_5EventEPvE) +STUB("qsolSac3t68", WKPreferencesSetShouldDisplayTextDescriptions) STUB("qspAL8bgcBY", sceAgcDriverIsSubmitValidationEnabled) +STUB("qt+Pxyj3avA", mono_btls_x509_verify_param_new) +STUB( + "qt-8av8yQ70", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEneERKS9_) +STUB("qt7nhBcfZ4E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEC1Ev) +STUB("qt8HISNT7CQ", _ZN10Deprecated25ScriptCallArgumentHandler14appendArgumentEi) +STUB( + "qtF5DkojQjc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE5clearEv) +STUB( + "qtG9crnyypU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB("qtJGxiya8aw", mono_security_core_clr_get_options) +STUB( + "qtPuN2WQssI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEED1Ev) +STUB("qtSRTF4UXRo", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13SessionMemberEE9constructEPS3_RKS3_) +STUB("qtSwAppE7YY", _ZNK7WebCore21ISOTrackEncryptionBox22defaultPerSampleIVSizeEv) +STUB( + "qtUMRZKaO0g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEEcvbEv) +STUB( + "qtUnUKfoZsI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEppEi) +STUB("qtWkrjEIRkM", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V19JoinStateEEdeEv) +STUB( + "qtYkYD+6qlU", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12string5IsSetEv) +STUB("qtZnGunkrJw", mono_btls_bio_mem_get_data) +STUB( + "qta3xdI3N6o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE6insertENS2_8IteratorIS5_EERKS5_RS8_) +STUB( + "qtagaBorsKQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEED1Ev) STUB("qtasqbvwgV4", scePadGetCapability) +STUB("qtgEboQL0YE", _ZN15AbstractStorage9AbsMallocEm) +STUB("qth3UD+opL0", _ZN3sce7Toolkit2NP2V23TUS7Request10DeleteDataC2Ev) +STUB("qtiGLra7yZs", + _ZN15AbstractStorage15FacebookContent13writeExternalESt10shared_ptrINS_7ContentEE) STUB("qtjjorW1V94", sceShellCoreUtilSetPsStoreIconLayout) +STUB("qtnI8Lcfauc", mono_aot_Sce_Vsh_ShellCoreUtilWrapperplt_end) +STUB( + "qtpsesHRF6o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEmmEv) +STUB("qtpzdwMMCPc", + _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewm) +STUB("qtqdVrcEY3E", + _ZN7WebCore18JSHTMLImageElement19getNamedConstructorERN3JSC2VMEPNS1_14JSGlobalObjectE) +STUB("qtsNCMuYybc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEEplEm) +STUB("qu0HEGVhoeg", delegate_virtual_invoke_imt_16_p) +STUB("qu2b52fLA+Q", _ZN3JSC10JSCellLock10unlockSlowEv) +STUB( + "qu3Jcm--TBc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEC1EPNS2_10LibContextE) +STUB( + "qu6JLIxrq6s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("qu7GUBjarBs", _ZN7WebCore16SQLiteFileSystem28appendDatabaseFileNameToPathERKN3WTF6StringES4_) +STUB("qu8pjijBHbk", SSL_CTX_use_certificate) +STUB( + "qu8vIEhVfZg", + _ZN3sce2Np9CppWebApi7Matches2V116RequestMatchTeam10setMembersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_13RequestMemberEEEEE) +STUB("quDzSFP+4w8", _ZN9Inspector14InjectedScriptC2Ev) +STUB( + "quI23Nu+eyA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEED1Ev) STUB("quIxw751PLs", sceMatPopMarker) +STUB("quLMPtgh9DQ", mono_aot_Sce_Vsh_Sl2_Sl2Deliverplt_end) +STUB( + "quOPs6s7-lU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("quZqrOeI5IE", _ZN7WebCore11DisplayList8ClipPathD0Ev) +STUB("quqaVbDrNVs", _ZN3JSC26ReadonlyPropertyWriteErrorE) +STUB("quwl9vCRP2M", mono_aot_Sce_Vsh_Np_Udsmethod_addresses) STUB("qv+X8gozqF4", sceSystemServiceChangeMemoryClockToDefault) +STUB( + "qv2s41hXB1g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("qv3QDQALDk0", _ZNK7WebCore11FrameLoader20activeDocumentLoaderEv) +STUB( + "qv89o1YBBqs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "qv8sZrJaJCM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("qv9cZX3xWQo", hb_font_funcs_set_glyph_h_origin_func) +STUB("qvIqMtkTneg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEE7add_refEv) STUB("qvMUCyyaCSI", sceKernelAprSubmitCommandBufferAndGetId) +STUB( + "qvMsHR5hMxY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEaSERS7_) +STUB("qvPRZI8SUG4", _ZNK7WebCore21ContentSecurityPolicy22overridesXFrameOptionsEv) +STUB( + "qvSN6bm4RU4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEEC1ERKSA_) +STUB("qvTpLUKwq7Q", _Atomic_exchange) +STUB( + "qvUY4MlCtCQ", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEEiRNS2_10LibContextEPT_m) STUB("qvbdJc7bG+s", sceAmprMeasureCommandSizeMapDirectBegin) +STUB("qvd-b81Cb4s", OPENSSL_add_all_algorithms_noconf) +STUB( + "qvdWYH5SGaw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("qvnC4OYmLhw", WKWebsiteDataStoreSetStatisticsShouldClassifyResourcesBeforeDataRecordsRemoval) +STUB( + "qvp47ao23og", + _ZN3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator15setPushContextsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_22GameSessionPushContextEEEEE) +STUB("qvpEuKumIGM", _ZN3sce2np10EventQueue7DestroyEv) +STUB( + "qvpJQX7jnw4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("qvxgr03sZ7Y", _ZN3sce7Toolkit2NP2V28Presence8Presence5resetEv) +STUB( + "qw6OZkAHrjk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEED1Ev) +STUB( + "qw6zRo17ICc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("qwCIdZVjc4Q", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEEaSERS5_) +STUB( + "qwFU2qpMyq4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEplEm) +STUB("qwFemTBSZnY", _ZN15AbstractStorage14TwitterContent5FlushEv) +STUB( + "qwMg6QYZXPE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("qwP9U9HsZ6k", _ZN3sce4Json5ValueC2ERKSt4listIS1_NS0_8StlAllocIS1_EEE) +STUB("qwR1gtp-WS0", _FErfc) +STUB( + "qwRvxkgZEDc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB( + "qwUI90qILms", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("qwUmQpkZ8mQ", mono_metadata_init_comp) +STUB("qwVA-vxAa84", mono_profiler_set_statistical_mode) +STUB("qwWrcmID6rA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate13unsetPerGenreEv) +STUB( + "qwa0biONtPI", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "qwapQw60+gk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEE5resetEPS9_) +STUB("qwj7kV1NkYU", _ZN7WebCore8SVGNames22feComponentTransferTagE) +STUB("qwlV11ypPsM", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V511ContentTypeEEmmEv) +STUB("qwlqQlGKshk", usprep_swap_67) +STUB("qwpkgJLSVHQ", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11EntitlementEE10deallocateEPS3_m) +STUB( + "qwpp2-JtYyQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("qwt8-vXGRPg", mono_gc_invoke_finalizers) +STUB( + "qx1lOeGUCrY", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "qx2DiebHMcE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB("qx9L9N8XpCg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEC1EPS6_) +STUB("qxDCjIWZ0Y0", _ZN3sce7Toolkit2NP2V27Session14InvitationDataC2ERKS4_) STUB("qxFhjZ2MRM8", _sceLibcLockFinalize) +STUB( + "qxG+-0bsvVA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEE3getEv) +STUB("qxKY6yYmLws", BN_CTX_end) +STUB( + "qxNOwnTQzQs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEaSERS7_) +STUB( + "qxOkvqPmPgM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEmmEv) +STUB( + "qxSrG71aeME", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "qxTxtPNo46A", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEplEm) STUB("qxVqb-SUAko", sceDebugIpmiGetConnectionWaitingThreadListBySessionKid) +STUB("qxeDFuz5buU", GCC_except_table405) +STUB( + "qxiDhrp8boY", + _ZN7WebCore11JSDOMMatrixC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_9DOMMatrixENS6_13DumbPtrTraitsIS8_EEEE) +STUB("qxpqg1B6-VI", _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeIPcPvEE7addressERKS6_) +STUB( + "qxwEMy0cySY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("qxzDKG7bkuQ", _ZN7WebCore21JSCSSStyleDeclaration7destroyEPN3JSC6JSCellE) +STUB( + "qy0jCOZYCyc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEmmEv) +STUB("qy3Q2y7Ki4U", _ZN3sce2np10JsonStringD2Ev) +STUB("qy4V8O+snLU", _ZN3sce2np6Thread9IsRunningEv) +STUB( + "qy5i0fNH0yA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("qy9gmBY0B6w", _ZN3sce7Toolkit2NP2V26Trophy17TrophyPackSummaryC1Ev) +STUB("qyAWKtbK9xI", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE21intrusive_ptr_add_refEPS7_) +STUB("qyB3FpjlDSY", _ULx86_64_handle_signal_frame) +STUB("qyEX-fuiboI", _ZN9Inspector24WorkerFrontendDispatcherC2ERNS_14FrontendRouterE) +STUB( + "qyLe-tXZ4VE", + _ZN7WebCore11DisplayList11DrawPatternC2ERNS_5ImageERKNS_9FloatRectES6_RKNS_15AffineTransformERKNS_10FloatPointERKNS_9FloatSizeERKNS_20ImagePaintingOptionsE) STUB("qyM2bxYFPAk", sceAgcAcbCondExec) +STUB( + "qySYkSVueVM", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionPropertiesC1ERS5_) +STUB( + "qyVquB+tPXs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("qyWDKCx4To8", _ZN7WebCore6Editor34setMarkedTextMatchesAreHighlightedEb) +STUB("qyWV8EB3AV4", _ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody10limitIsSetEv) +STUB("qyXgtTLslZk", fuse_set_getcontext_func) +STUB( + "qycpawq618M", + _ZN3sce2Np9CppWebApi7Matches2V123RequestMatchTeamFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_16RequestMatchTeamEEE) +STUB( + "qyeARh57Q4g", + _ZN7WebCore14StaticNodeList6createEON3WTF6VectorINS1_3RefINS_4NodeENS1_13DumbPtrTraitsIS4_EEEELm0ENS1_15CrashOnOverflowELm16EEE) STUB("qyhQZ35WxX4", sceVisionManagerGetResultOfCalibrateHmd) +STUB("qyqQWtdNIPE", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariableD1Ev) +STUB("qyrvYUMvr9s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEE11get_deleterEv) +STUB("qyxAFj3tPGg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEEeqERKS7_) +STUB("qyz32XqayaM", _Z43sceGpuDebuggerSetShaderRegistratationBufferPvj) +STUB("qyzUBXXLwfw", _ZN9Inspector14FrontendRouter6createEv) STUB("qz4egqkqF5Y", sceAppInstUtilAppGetMoveErrorAppList) +STUB("qz7TQJXq1Ao", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEE7add_refEv) +STUB("qz90x6QkNP4", _ZN3JSC7Symbols24applyFunctionPrivateNameE) +STUB( + "qz9q9QlQCtc", + _ZN3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse10setAvatarsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_6AvatarEEEEE) +STUB("qzEwpfbLVxI", cairo_set_font_face) +STUB("qzLx+qU8IPM", ucnv_getAvailableName_67) STUB("qzMN2XKGA4k", sceAgcAcbCopyData) STUB("qzNjJYKVli0", sceFontGraphicsSetFramePolicy) +STUB( + "qzOyUdN00MY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("qzP6B1vnYlc", JVM_CX8Field) +STUB("qzQGh1dSy0M", _ZNK7WebCore6Editor17firstRectForRangeEPNS_5RangeE) +STUB("qzQQWBOHJt4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEdeEv) +STUB( + "qzQWgoLfwsA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEE7add_refEv) +STUB("qzRKFPZapIk", uloc_getVariant) +STUB( + "qzaAmwm1FTs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "qzcMgfkB4E0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEED1Ev) +STUB("qzeDQW9di6I", + _ZN3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession14unsetSessionIdEv) +STUB("qzjL5iJVh5o", _ZN3JSC8Debugger17stepOverStatementEv) +STUB( + "qzkfM4Bp0Js", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE6resizeEj) +STUB("qzt6F50Wxic", WKWebsiteDataStoreSetResourceLoadStatisticsShouldDowngradeReferrerForTesting) +STUB( + "qzvloKSVRo4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "r+++5VvjpRk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEixEm) +STUB( + "r++EXL2l-jY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEdeEv) +STUB("r++oFgAiV3A", uhash_iremovei) +STUB("r+0PYA15guI", s12) +STUB( + "r+1TzI+TnH4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE21intrusive_ptr_add_refEPS9_) +STUB("r+49R3euh1w", u_memrchr32_67) +STUB("r+6EhwNd-yQ", mono_metadata_signature_dup) +STUB("r+6MxwEIYBw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEC1ERS7_) +STUB("r+8MepeuzD8", ucnv_unload_67) +STUB("r+DywjicdRA", mono_thread_new_init) +STUB("r+EWYk7uIo4", _ZN3sce2Np9CppWebApi6Common6VectorIdE5beginEv) STUB("r+J44kwe3nA", sceCesGbToUtf8) +STUB("r+PkgVQFXW8", _ZN3sce7Toolkit2NP2V210Tournament24OfficialBroadCastDetails8deepCopyERKS4_) +STUB("r+Z3U7BeMAE", + _ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead11setPlatformERKNS3_8PlatformE) +STUB("r+Zh+vPNNzs", _ZN3sce7Toolkit2NP2V211SharedMedia10ScreenshotC1Ev) +STUB("r+aGsGP2oyo", JVM_GetMethodIxNameUTF) +STUB( + "r+arPYr9fb8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEC1Ev) +STUB( + "r+bobzRe1IM", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi20ParameterToJoinMatch10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_16JoinMatchRequestEEE) +STUB( + "r+eXy9SLeXQ", + _ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId10getifMatchEv) +STUB("r+gX3FnwPVM", delegate_virtual_invoke_imt_m_1) +STUB( + "r+jU4rXRMm8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEC1EPNS2_10LibContextE) +STUB("r+kkC2OXw10", _ZN15AbstractStorage14MemfileContentD2Ev) +STUB("r+paJGaB-bU", mono_aot_Sce_Vsh_EventServiceWrapperjit_got) STUB("r+qKw+ueD+Q", sceAudioOutMasteringGetState) +STUB("r+sszvEAbyk", _ZNSt9basic_iosIcSt11char_traitsIcEE8setstateEj) +STUB( + "r+wsQ9N-pTU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEixEm) +STUB("r+zkazHnHlE", _ZN7bmalloc3api15mallocOutOfLineEmNS_8HeapKindE) +STUB("r--OB6JZtEw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE5beginEv) +STUB("r-11HWJyOiY", _ZN7WebCore14FrameSelectionC1EPNS_8DocumentE) +STUB("r-167z6BZHA", _ZN7WebCore18ScrollingStateTree6commitENS_19LayerRepresentation4TypeE) STUB("r-2-a0c7Kfc", sceCompanionHttpdOptParamInitialize) +STUB("r-3VcPGTSfs", _ZN7WebCore17SQLiteTransactionD1Ev) +STUB( + "r-4YwYFNX0w", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEptEv) +STUB( + "r-4mjEkGdeI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE21intrusive_ptr_add_refEPS9_) +STUB("r-8-utEiGb8", _ZN3sce7Toolkit2NP2V24Core5EmptyaSERKS4_) +STUB("r-HaHlFmrBQ", _ZN6WebKit17ChildProcessProxyC2Ev) +STUB( + "r-IV7myZ87Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V115SearchAttributeEEEE3getEv) +STUB( + "r-JSsJQFUsY", + _ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE8_PutmfldES3_bRSt8ios_basewbSbIwS2_SaIwEEw) +STUB("r-LTgAHhLHQ", WKPreferencesSetTopNavigationToDataURLsAllowed) +STUB("r-N+4pmGgtw", _ZN3sce7Toolkit2NP21AccessCodeInputParamsC1Ev) +STUB( + "r-OOKt7WiT8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEC2EPS8_) +STUB("r-OiMbqJuEQ", glGetSamplerParameteriv) STUB("r-S1cObIqLw", sceBgftServiceIntDownloadGetUserStorageSize) +STUB("r-STrXYwY9k", _ZN3JSC7Options9s_optionsE) +STUB( + "r-TaByAiFBk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE7reserveEi) STUB("r-TogOMFNc8", sceCesSbcToUtf32) +STUB("r-Wr8J0lqlI", _ZNK10__cxxabiv121__vmi_class_type_info7cast_toEPvPKNS_17__class_type_infoE) +STUB("r-XNO1bD-WA", _ZN3sce7Toolkit2NP2V210Tournament25OneVsOneTournamentDetailsC2Ev) +STUB("r-ZLkfnrlgw", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container18contentRatingIsSetEv) +STUB( + "r-bB0qdowjY", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) STUB("r-lmfDcFyRE", sceIduUtilDeleteSaveData) STUB("r-pOyN6AhsM", sceNetCtlApStop) +STUB("r-qf5g6rpvs", ures_getKeywordValues_67) +STUB("r-twZl6gN5k", + _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead19getCreatedTimestampEv) +STUB("r-zwpKMAgZs", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19BandwidthC2EPNS1_6Common10LibContextE) +STUB( + "r02+lHTqu0o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEppEv) STUB("r07vD4SP2sc", sceLncUtilStartLaunchAppByTitleId) +STUB("r086my47qVA", WKPreferencesSetDeferredCSSParserEnabled) +STUB("r0CpwRVV56g", _ZN7WebCore31SimplifiedBackwardsTextIteratorC1ERKNS_11SimpleRangeE) +STUB("r0I61agWyvw", mono_aot_Sce_Vsh_VoiceAndAgentmethod_addresses) +STUB("r0NLdipzCw8", _ZN3WTF9MediaTimedlEPv) +STUB("r0Obro5wOdM", _ZN3JSC11RegisterSet14stackRegistersEv) +STUB("r0PYNWZLZS8", _ZN3sce2np7Callout5StartEmPNS1_7HandlerE) STUB("r0QtEP0p4Gs", sceCompositorSetVideoOutMode) +STUB("r0bRjKqIBxE", WKContextMenuItemCopyTitle) +STUB("r0fVFU6ham8", _ZN7WebCore23commonInclusiveAncestorERKNS_11SimpleRangeE) +STUB( + "r0oR7UBGOYQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("r0ohxexxI3Y", + _ZN3sce2Np9CppWebApi14SessionManager2V112NonPsnLeaderC1EPNS1_6Common10LibContextE) +STUB("r0t1NxWUNwI", _ZN4IPMI4impl11SessionImpl26respondToSyncMethodRequestEiPKvm) +STUB("r0ye0xLWrtU", getAvailableProtocolInfoListNum) +STUB( + "r1-ecxhXwGo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEeqERKS9_) +STUB( + "r1-wTIyIlT8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE6finishEv) +STUB( + "r15nZRV6DjU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "r16J7f4XaR0", + _ZN3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBody10setPayloadEPKc) +STUB( + "r18FkRCvPBQ", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEEiRNS2_10LibContextEPT_m) +STUB("r19KpG1WP-o", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEE7get_refEv) +STUB( + "r1DPmfbUOKI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE7popBackEv) +STUB("r1MHRZTlMuQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEEppEv) STUB("r1V9IFEE+Ts", sceAudioOutExConfigureOutputMode) +STUB("r1W-NtOi6E8", _ZNKSt5ctypeIwE10do_toupperEPwPKw) STUB("r1f9mCImJCk", sceAvSettingSetAudioOutModeAny_) +STUB( + "r1ghFHdtGU0", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearchaSERS5_) +STUB("r1k-y+1yDcQ", _ZNSt14numeric_limitsIDiE8digits10E) +STUB("r1lsrmBP5i8", _ZN7WebCore9HTMLNames11onresetAttrE) +STUB("r1p+26H3NfQ", _ZN3WTF29equalIgnoringASCIICaseNonNullEPKNS_10StringImplES2_) +STUB("r1q1AFT-pms", JNU_ThrowIllegalArgumentException) +STUB( + "r1rbdow7aAw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB("r2+NfKBLFUQ", _ZN7WebCore21convertToIntegerClampItEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB("r20Y87D+ibY", _ZNK9Inspector22RemoteInspectionTarget3urlEv) +STUB("r22bYtshVmc", _ZN7WebCore9HTMLNames8meterTagE) +STUB("r24IV1PYa1g", _ZN3sce3pss5orbis9framework8PsmEvent10InitializeEv) STUB("r28hEh6cNH0", sceAgcDriverGetHsOffchipParam) +STUB("r2C1PcTDYxk", FTA_Add_Module_autofitter) +STUB("r2ChuXgZiXQ", PEM_read_bio_X509) +STUB( + "r2HZ4Ydk9Ec", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEE3getEv) +STUB("r2LlyYTQMrY", _ZTVN7WebCore26Matrix3DTransformOperationE) +STUB( + "r2NQzMNLPP0", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getBoolean1Ev) +STUB("r2O0f9X-mqs", _ZN3sce2np10MemoryFile5WriteEPNS0_6HandleEPKvmPm) +STUB("r2P4v9m3K3s", WKBackForwardListGetForwardItem) +STUB("r2QXTDdHL2Q", rgctx_fetch_trampoline_rgctx_107_p) STUB("r2QuHIT8u9I", sceUserServiceGetVolumeForMorpheusSidetone) +STUB( + "r2QyKVGwmmA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("r2RAGCixu6c", _ZN9Inspector29SupplementalBackendDispatcherC2ERNS_17BackendDispatcherE) +STUB("r2YKj15vOsY", _ZN12video_parser5vpcom4SeekE) +STUB( + "r2bgNtNAbTM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEED2Ev) +STUB("r2eb0xi4zjE", YGWrapToString) +STUB("r2rDWToC1MQ", _ZN3sce3Xml3Dom6NodeIdC2EPvS3_b) +STUB("r2s-nWfv9v4", _ZN3sce7Toolkit2NP2V212ActivityFeed9StoryUserC1Ev) +STUB("r2t2OdFU5SA", terminate_Jp) +STUB( + "r31jn2QrKSU", + _ZN9Inspector25NetworkFrontendDispatcher15loadingFinishedERKN3WTF6StringEdPS3_NS1_6RefPtrINS_8Protocol7Network7MetricsENS1_13DumbPtrTraitsIS9_EEEE) +STUB("r31lVqmxhZU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEC2ERKS7_) +STUB( + "r34ZD2bEDtM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) STUB("r370kbA+D2A", scePlayReadyCdmiIsLicenseAckRequired) +STUB( + "r3AqzkHLVTM", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToGetFriendsPlayerSessionsC1Ev) +STUB( + "r3BN7hhd2-8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("r3DkI-tYskg", _ZN7WebCore18ScrollingStateTreeC2EPNS_25AsyncScrollingCoordinatorE) +STUB("r3SJxnlaTlg", png_set_progressive_read_fn) +STUB( + "r3X7G2QjAtg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEEC2ERSA_) +STUB("r3Y3UiOISoo", _ZN7WebCore11JSImageDataC1ERKS0_) +STUB( + "r3d0HMEEJAo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("r3dWNxl4X-g", _ZN3sce2Np9CppWebApi7Matches2V124ResponseTeamMemberResult8setScoreERKd) STUB("r3f8P85Jo2Q", sceBgftServiceIntDownloadDebugGetBgftEnvInfoString) +STUB( + "r3gmMgAlnGc", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUserC1ERS5_) +STUB( + "r3iYCrMLo6k", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB( + "r3jDzGL9cKQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "r3swmtAXFZA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEED1Ev) +STUB( + "r3sxcJrfSIM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEEC2ERKSA_) +STUB("r3tNGoVJ2YA", __ffsdi2) +STUB( + "r3tiRylj8S8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEmmEv) +STUB( + "r3ugeNlP73g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEC1Ev) +STUB("r3wY39B7+oo", _ZN3WTF22CrossThreadTaskHandlerC1EPKcNS0_25AutodrainedPoolForRunLoopE) STUB("r42bWcQbtZY", sceNpCommerceDialogGetResult) +STUB( + "r43oJMKUKxY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE3endEv) STUB("r44mAxdSG+U", scePadSetAngularVelocityDeadbandState) +STUB( + "r461lCORffM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEED1Ev) +STUB("r46sWu8eiG4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEEixEm) +STUB("r49JO54AgnE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEppEv) +STUB( + "r4BklzzAlUM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEEC2EPS8_PNS2_10LibContextE) +STUB("r4I84Y9nE5s", mono_aot_Sce_Vsh_MorpheusUpdWrapperplt_end) STUB("r4KEihtwxGs", sceFontGlyphRenderImageHorizontal) +STUB("r4MsnprQKbo", ztrans_getTo_67) +STUB( + "r4N4SzzE1pQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEE7get_refEv) +STUB( + "r4NnrbhiEXA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE5beginEv) +STUB("r4QjLpqC-vw", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11TusVariableEED1Ev) +STUB("r4UOB4rrxD4", _ZNK7WebCore15ContextMenuItem4typeEv) STUB("r4XacqHvkn4", sceNpSessionSignalingActivateSession) +STUB("r4Z3PQsaRBY", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEEC1Ev) +STUB( + "r4ai-Lzra0Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEC2Ev) +STUB("r4bOmdTOkfs", mono_profiler_install_gc_roots) +STUB( + "r4cbzfOcNI4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("r4kpLiYaVyM", _ZTVN8meta_gen13TiffRetrieverE) +STUB("r4o4j3iaN64", _ZN7WebCore22EmptyFrameLoaderClient30didRestoreFromBackForwardCacheEv) STUB("r4oAo9in0TA", sceNpScoreSanitizeComment) +STUB( + "r4odcss6vJo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEE11release_refEv) +STUB("r4qw6DTdDDg", generic_trampoline_jump_p) +STUB( + "r4taBiWZTRw", + _ZThn16_N9Inspector19InspectorAuditAgent3runERN3WTF6StringERKS2_PKiRNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISB_EEEERNS1_8OptionalIbEE) +STUB("r4vFACIEDbI", _ZN3sce7Toolkit2NP2V210Tournament10TeamMemberC2ERKS4_) +STUB("r4wCfU5dxr4", _ZN7WebCore13IdentifierRep3getEPKc) +STUB("r4zVk342NH4", _ZN7bmalloc11IsoTLSEntryD2Ev) +STUB( + "r5-H6+Y4eYg", + _ZN6WebKit17ChildProcessProxy19dispatchSyncMessageERN3IPC10ConnectionERNS1_14MessageDecoderERSt10unique_ptrINS1_14MessageEncoderESt14default_deleteIS7_EE) +STUB("r52Dd0-g5Eo", ures_getUTF8StringByIndex_67) +STUB( + "r57+nPvx-5s", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("r57gyQh8njo", u_charFromName_67) +STUB( + "r59bxwttlFY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEE11get_deleterEv) +STUB("r5AXj55AGYo", _ZN3JSC32JSDestructibleObjectHeapCellTypeD2Ev) +STUB( + "r5BjJ2+UVWw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEED2Ev) +STUB("r5CShmcua+M", _ZN3sce4Json6Object8iteratorC2ERKS2_) +STUB("r5DSHLlSlkg", + _ZN3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectator17unsetPushContextsEv) +STUB("r5GFocLPNhA", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEEdeEv) +STUB("r5IsX1dPwUk", glDeleteShader) +STUB("r5MHuqZI-kw", _ZN7WebCore9HTMLNames11defaultAttrE) +STUB( + "r5Pj8S4CUYM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEED1Ev) +STUB("r5QyX8BvB2c", _ZNK7WebCore19ProtectionSpaceBase26receivesCredentialSecurelyEv) +STUB("r5RM+LBPkWA", _ZN7WebCore24CoordinatedGraphicsLayer15addChildAtIndexEPNS_13GraphicsLayerEi) +STUB( + "r5TJu58DcDM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("r5YSgAZsO4o", _ZNK3sce3Xml13AttributeList12getAttributeEPKNS0_6StringE) +STUB( + "r5bsQjwGHKo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEEC1Ev) +STUB("r5ekNJ1+Wrg", + _ZN3sce2Np9CppWebApi14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyD2Ev) +STUB( + "r5fIil5Lbgs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEED1Ev) +STUB("r5iHlAhWyUA", _ZN7WebCore6Chrome5printERNS_5FrameE) +STUB("r5ic7SNqMiQ", _ZN7WebCore11FontCascade21setShouldUseSmoothingEb) +STUB("r5pA-YyuuZ8", + _ZN3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResults8fromJsonERKNS_4Json5ValueE) +STUB( + "r5pSdddhfYE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEaSERS7_) STUB("r5see1jyEsU", sceVdecwrapGetDecodeOutput) +STUB( + "r5twFOWofFA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("r5uv3mpXnXg", _ZNK7WebCore11HTMLElement3dirEv) +STUB("r6237rhFfsY", ucase_addStringCaseClosure_67) +STUB("r63GKN25X8o", mono_btls_x509_store_up_ref) +STUB( + "r6D86mwYvys", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "r6FSzhfoFYw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEC1ERS7_) +STUB("r6Go5XHEHz0", _ZN9Inspector21InjectedScriptManager17injectedScriptForEPN3JSC9ExecStateE) +STUB( + "r6ICL3ZMpYY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEE7add_refEv) STUB("r6MyYJkryz8", sceNpCheckPlus) +STUB("r6PF1NMzp0Q", _ZN15AbstractStorage15FacebookServiceD0Ev) +STUB( + "r6Quept7TTo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEEC2ERSA_) +STUB("r6SZpllRVXo", mono_aot_Sce_Vsh_KernelSysWrapperjit_code_end) +STUB("r6T0Rr2Nr88", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEE7add_refEv) +STUB("r6Wuu1Tc438", u_getFC_NFKC_Closure) +STUB( + "r6a-IftYxWU", + _ZN9Inspector20CSSBackendDispatcher16createStyleSheetElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "r6a2qSIW0Kc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEC2EPS6_PNS2_10LibContextE) +STUB( + "r6et+nJRQ5w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEE7get_refEv) +STUB( + "r6fVYC8rnMU", + _ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime13ObjectPreviewEE11runtimeCastEON3WTF6RefPtrINS5_8JSONImpl5ValueENS5_13DumbPtrTraitsIS8_EEEE) +STUB("r6hBVQq1dWQ", ucase_toFullUpper_67) +STUB( + "r6oeGe1VQlQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "r6pEhUdr+5k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEE5resetEPS9_) +STUB( + "r72nGLomlgA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEE7add_refEv) +STUB( + "r73SPJHGah4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEppEi) +STUB("r74Ku+5taTc", _ZN3JSC24reportZappedCellAndCrashERNS_4HeapEPKNS_6JSCellE) +STUB( + "r74rpKLR9-g", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEixEm) +STUB( + "r7992c7RQtE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "r7BvRALMzPg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE5beginEv) +STUB("r7GpJXebmjg", _ZN7WebCore15NavigatorBeacon4fromERNS_9NavigatorE) +STUB( + "r7I+o+gMQ18", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEED2Ev) +STUB( + "r7JrMLiQ1hk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEC1EPNS2_10LibContextE) +STUB( + "r7NrV7M5210", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEC2Ev) +STUB( + "r7PmVIzF2Fg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEptEv) +STUB("r7R1dUN3oS0", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V110AvatarSizeEEaSERKS7_) +STUB("r7R5PcnkCt8", + _ZN3sce2Np9CppWebApi14SessionManager2V124PlayerSessionPushContextC1EPNS1_6Common10LibContextE) STUB("r7Sr1i7KLus", sceCesMbcsStrGetUtf8Len) +STUB("r7U2ThCt1ag", _ZN3JSC14formatDateTimeERKN3WTF17GregorianDateTimeENS_14DateTimeFormatEb) +STUB("r7UpNm1Po9s", _ZN3sce2np3ipc10IpmiClient16invokeSyncMethodEjPKvmPvPmm) +STUB("r7b7rAUjAQM", mono_btls_pkcs12_free) +STUB("r7bQ7kO3-Co", mono_shared_mempool_alloc) STUB("r7d8eEp5vJE", sceNpManagerIntClearGameAccessToken) +STUB( + "r7eQLCV0o9k", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEEC2ERKSC_) STUB("r7f7M5q3snU", sceHmdInternalMmapGetCount) +STUB("r7s4ZK35o3Y", _ZNK3WTF6String16removeCharactersEPFbDsE) +STUB( + "r7wWhxfOuxg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) STUB("r7z5YQFZo+U", sceAcmBatchJobNotification) +STUB( + "r7zPjaLDVoU", + _ZN9Inspector21InspectorRuntimeAgent13getPropertiesERN3WTF6StringERKS2_PKbPKiS9_S7_RNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime18PropertyDescriptorEEENS1_13DumbPtrTraitsISG_EEEERNSA_INSC_INSE_26InternalPropertyDescriptorEEENSH_ISM_EEEE) +STUB( + "r8+bx3icHY4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "r8+rAWhT400", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEEdeEv) +STUB( + "r8003V6UwZg", + _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE7_GetfmtES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tmPKc) +STUB("r81tp3TlPE4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEEC1EPS6_) +STUB("r82K1GapsD0", _ZN7WebCore9HTMLNames14ondblclickAttrE) +STUB("r86pc6e3qQk", utf8_countTrailBytes) +STUB("r8HE653o+HI", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyD1Ev) +STUB("r8HfW2ap6GI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE4sizeEv) +STUB("r8Hs5DDlMYw", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament7BracketEE3setEv) +STUB("r8Md8WuqsoA", _ZNK3WTF15AutomaticThread4nameEv) +STUB("r8MkJWy6j6s", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEEaSERS6_) +STUB("r8Oq2NHzWTc", _ZN13MsvMetaEditor11ConvertTtoBEt) STUB("r8QyPRbTAAk", sceSystemServiceNotifyBgmCoreTermination) +STUB("r8U40XnqPzM", ucol_getSortKey_67) +STUB("r8UkXtceG0s", _ZTVN15AbstractStorage14TwitterContentE) +STUB( + "r8VcbyT+iAs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEE7add_refEv) +STUB("r8aky-w4ENA", + _ZN15AbstractStorage14FacebookFolder12RemoveFolderERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) +STUB("r8b19knbYr8", mono_aot_ReactNative_Modules_Vshjit_got) +STUB("r8b4fQiebU4", _ZN3sce2Np9CppWebApi11UserProfile2V113BasicPresenceD1Ev) STUB("r8dfx9oS3us", sceShareUtilityAdvanceQueryServiceInfoA) +STUB("r8fhxx1gq6U", _ZN3sce2Np9CppWebApi6Common6VectorIfE7popBackEv) +STUB( + "r8hPOgobo3w", + _ZNK3sce2Np9CppWebApi11UserProfile2V111PresenceApi28ParameterToGetBasicPresences13isInitializedEv) +STUB("r8jbPI8izd0", _ZN9Inspector18InspectorHeapAgent13startTrackingERN3WTF6StringE) +STUB("r8knxrn-LZ8", _ZN3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatformD1Ev) STUB("r8mVMwlafF8", sceNpSessionSignalingRequestPrepare) +STUB("r8mvOaWdi28", il2cpp_api_lookup_symbol) +STUB("r8nkOHa-47M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEEC2EPS5_PNS2_10LibContextE) +STUB( + "r8uiehY9Fqc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEE5resetEPS6_) +STUB("r8zSU7mBZqc", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getCurrentPlayItemId) +STUB("r91VXwrT5AI", _ZThn136_NK7WebCore16HTMLMediaElement7canPlayEv) +STUB( + "r95WOmjxPb4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEC2ERS7_) STUB("r98I08t+LOg", sceAgcDcbDrawIndexIndirectMultiGetSize) STUB("r9Bet+s6fKc", sceNpMutexLock) STUB("r9BgI0PfJZg", sceNpWordFilterCreateTitleCtx) +STUB("r9CsgwF3tOU", _ZN3sce7Toolkit2NP2V212EventsClient15EventUserStatusD1Ev) +STUB( + "r9EQk4-7iFA", + _ZN3sce2Np9CppWebApi11UserProfile2V125GetFriendsResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_18GetFriendsResponseEEE) +STUB("r9FFtkT+gYM", _ZN7WebCore12DOMTokenList6tokensEv) +STUB("r9GyJMHv0yw", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead21leaderPrivilegesIsSetEv) +STUB("r9IEZUZrtA4", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_16EventInformationEE3getEv) STUB("r9KGqGpwTpg", sceAudioOutSetDevConnection) +STUB("r9MAlvcfkFk", ucasemap_setBreakIterator_67) +STUB( + "r9MDy-gsjkY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEEcvbEv) +STUB("r9MeaxiziS4", mono_error_init_flags) STUB("r9MlfKcu6N4", sceRemotePlayClientStartMicCapture) +STUB( + "r9eapVrSr5s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEaSERS7_) +STUB( + "r9n-E9PuVyk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) STUB("r9nVN6JyD4A", _sceLibcMemalign) +STUB( + "r9nYloY1GM4", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser9hasoffsetEv) +STUB( + "r9qYF83eWpE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEmmEi) +STUB("r9qekNbogMo", _ZN3sce2Np9CppWebApi6Common6VectorIiE7reserveEi) +STUB("r9z2aGbF4hg", _ZN7WebCore26IdentityTransformOperation5blendEPKNS_18TransformOperationEdb) +STUB("r9zkv0skrw4", _ZN3sce7Toolkit2NP2V27Session11SessionDataD2Ev) +STUB( + "rA45O1KNdLU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEE3getEv) +STUB("rA7E7LfU7Sk", _ZN3JSC20createReferenceErrorEPNS_14JSGlobalObjectERKN3WTF6StringE) +STUB("rA9LgVq5Svk", _ZN4Manx13WorkQueueImplD0Ev) +STUB( + "rAE21nIqin8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEE11release_refEv) +STUB("rAKTv3Z5OQQ", _ZN3JSC12GlobalJSLockC1Ev) STUB("rAOOqDAxBIk", sceNpWordFilterAbortRequest) +STUB("rAQfp8dc5Mk", _Z16Bgm_BgmNoizeTesti) STUB("rASXozKkQ9g", sceImeVshSetPanelPosition) +STUB("rAT++7Kt224", _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_11TusVariableENS2_IS4_EEEED1Ev) +STUB("rAU9SRsnG3E", WKContextRegisterURLSchemeAsCanDisplayOnlyIfCanRequest) +STUB("rAUEx7YK0rI", UCNV_TO_U_CALLBACK_SUBSTITUTE_67) STUB("rAXmGoO-VmE", sceHmdInternalSetDefaultLedData) +STUB( + "rAYElm0IYHw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V15GroupEEEE5resetEPS8_) +STUB("rAZtwARzp6w", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_15CategoryInfoSubENS2_IS4_EEEED1Ev) +STUB( + "rAk+752F2PU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEaSERS7_) +STUB("rAkuRf44hSE", _ZN7WebCore9TreeScope17elementsFromPointEdd) +STUB( + "rAnSCvzPOok", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE5beginEv) +STUB( + "rAp+vhhVZss", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEEC1EPS6_PNS2_10LibContextE) +STUB( + "rAvpKcWLc30", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScore24hasxPsnAtomicOperationIdEv) +STUB( + "rAyDpTSCJnI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEC2EPS8_) +STUB("rB0oqLSjH6g", _ZN3sce2np8NpCommIdC2ERKS1_) STUB("rB1RFXt+i-Y", sceDebugDetachProcess) STUB("rB2mYuU-igs", sceDeci4hDrfpRemove_fuse_fullpath) STUB("rB70KuquYxs", sceUserServiceSetSharePlayFramerateHost) STUB("rB8XP9T6Dsk", sceBufferRealloc) +STUB( + "rB99eTi8wks", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEEdeEv) +STUB( + "rBCq22VDbTE", + _ZN3sce7Toolkit2NP2V28Commerce29displayVoucherCodeInputDialogERKNS3_7Request29DisplayVoucherCodeInputDialogEPNS2_4Core8ResponseINS8_5EmptyEEE) STUB("rBDEhJgMruY", sceVideoOutSysConfigureOutputMode_) +STUB( + "rBETXCRC2M0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE5beginEv) +STUB( + "rBEzL-Eh6dQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("rBFA69fgIw8", _ZN3JSC22JSFinalizationRegistry6s_infoE) +STUB( + "rBNBuzCGsLQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE5startEPNS2_10LibContextE) +STUB("rBPmQseo12E", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEEplEm) +STUB("rBS6qOXYp90", _ZN3JSC7Symbols15racePrivateNameE) +STUB("rBSF8DcDRLU", _ZNK7WebCore8Document17viewportArgumentsEv) +STUB( + "rBSSENOSKvw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE5beginEv) +STUB( + "rBYZxW18dEY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE3endEv) +STUB("rBZ+OjdFBAk", _ZN7WebCore27createDragImageForSelectionERNS_5FrameERNS_17TextIndicatorDataEb) +STUB("rBbtKToRRq4", _Atomic_compare_exchange_weak_1) +STUB("rBcHsDR4huI", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Publisher9iconIsSetEv) +STUB( + "rBl0A6F95Rs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEC1ERS7_) +STUB( + "rBlj2F7cZ8c", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "rBmgaFkHLWg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEaSERKS7_) +STUB("rBnve0h78Iw", _ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error11unsetErrorsEv) +STUB("rBoGFnN+Hrw", _ZN7WebCore16BlobRegistryImpldaEPv) +STUB( + "rBtUdyxM9Ew", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEED1Ev) +STUB("rBwjuScLBnY", _ZN9Inspector21InspectorConsoleAgent11startTimingERKN3WTF6StringE) +STUB("rByX5mcOWk0", g_timer_destroy) STUB("rBz1OlRUnKY", ScePsmMonoDelegateToFtnptr) +STUB( + "rC0HX0fvvmg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEC1Ev) +STUB( + "rC1XuKQaqwg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "rC4JiegW8rI", + _ZN3sce2Np9CppWebApi14SessionManager2V132RequestPlayerSessionMemberPlayer16setNonPsnPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_38RequestCreatePlayerSessionNonPsnPlayerEEEEE) +STUB( + "rC4asp0tO3U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEC2EPS8_) +STUB( + "rC6DV8RL7u4", + _ZN7WebCore21JSTextTrackCueGenericC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_19TextTrackCueGenericENS6_13DumbPtrTraitsIS8_EEEE) +STUB("rC7yBRkTkqk", _ZSt9use_facetISt10moneypunctIwLb1EEERKT_RKSt6locale) +STUB("rCE8Sd2JALQ", WKMediaCacheManagerGetHostnamesWithMediaCache) +STUB( + "rCFy+3IHE1Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEaSERS7_) +STUB("rCJ7v9GFezU", unum_open_67) +STUB("rCKWJdcZRiw", _ZN7WebCore9HTMLNames4pTagE) +STUB("rCPCMV9J+kw", SSL_CTX_free) +STUB("rCRh3V03bPs", _ZN3sce2np12StreamReader4ReadEPNS0_6HandleEPNS0_9StreamCtxEPvmPm) STUB("rCTGkBIHfPY", pthread_spin_trylock) +STUB("rCVSmBr4CVo", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11TusVariableEED2Ev) +STUB("rCabRpgyBR4", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V113SubtaskStatusEEeqERKS7_) +STUB( + "rCbvxfo5a5U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("rChPcBekxAk", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_15ActivityStoryIdEED1Ev) +STUB("rCicuxDju1M", mono_aot_Sce_Vsh_UsbStorageSceneplt_end) +STUB( + "rCk5YpHJwGs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEEC2ERKSA_) +STUB("rClO2jsRFL0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEaSERKS7_) +STUB("rClTWgPeQDo", _ZNK7WebCore9FloatRect8containsERKNS_10FloatPointENS0_12ContainsModeE) +STUB("rCnUNBv-jKs", _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse17unsetInGameRosterEv) +STUB( + "rCnuFv-wB+k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEmmEv) STUB("rCnvauevHHc", sceNpManagerIntLoginSignin) +STUB( + "rCr53JL1bmk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB("rCyg+xFA0kA", _ZNK9Inspector15ScriptArguments24getFirstArgumentAsStringERN3WTF6StringE) +STUB("rD1uDD2rEso", glUniformMatrix4x3fv) +STUB("rD2XyYFMrz0", mono_compile_method) +STUB("rDFh87N07Lw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEC1ERKS7_) +STUB("rDG6T-LSAck", Java_java_io_ObjectStreamClass_initNative) +STUB("rDMyAf1Jhug", __isinff) +STUB("rDTW4UZwsHo", _ZN12Mp4Retriever14processTrakBoxEv) +STUB( + "rDbtNQ4t0Is", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEmmEi) +STUB("rDcmAMe5F34", GCC_except_table99) +STUB("rDddMsCTYJA", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_6NpUserEE7destroyEPS3_) +STUB( + "rDdvZA+B2C0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "rDieCyhml5c", + _ZN7WebCore9FontCache22createFontPlatformDataERKNS_15FontDescriptionERKN3WTF12AtomicStringEPKNS_18FontTaggedSettingsIiEEPKNS_19FontVariantSettingsENS_34FontSelectionSpecifiedCapabilitiesE) STUB("rDkflpHzrRE", sceUserServiceSetGlsLfpsSortOrder) +STUB( + "rDo87DiUnIk", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3CSS8PseudoIdEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB("rDpDyVRTdSY", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE4sizeEv) +STUB( + "rDqaeul9AC8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEE3getEv) STUB("rDtFuWpxAgM", sceMatPushMarkerStatic) +STUB( + "rE-bpivbKVA", + _ZN9Inspector17BackendDispatcher12sendResponseElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "rE2-SSZ7Tok", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEED1Ev) +STUB( + "rE3XmsZiHos", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEC2Ev) +STUB("rE9QZyKNUVk", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE5clearEv) +STUB( + "rEE8+5bbgco", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V345CommunicationRestrictionStatusResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_38CommunicationRestrictionStatusResponseEEE) +STUB("rEMG2FORiIs", _ZN7WebCore11DisplayList8FillPathC1ERKNS_4PathE) +STUB("rEMzR6lwR-I", _ZN3sce3pss5orbis5input50InputManager_GetInvalidOperationByOtherUsersNativeEPb) +STUB("rENdf2qgOE4", cairo_close_path) +STUB("rERaTGtN0zc", _ZN3sce7Toolkit2NP2V28Commerce18ServiceEntitlementC1Ev) +STUB("rESvbHhCMnU", BN_CTX_free) +STUB( + "rEVoMY9SQ7Q", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("rEVzB2M-69w", uidna_nameToUnicodeUTF8_67) +STUB( + "rEY7CD-09rI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("rEaoUJRD8Wk", + _ZN7WebCore10JSDocument15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB("rEeMuMnKvSA", _ZN7WebCore14DocumentLoader15detachFromFrameEv) STUB("rEh728kXk3w", sceNgs2VoiceGetStateFlags) +STUB( + "rEkV+ShwyFM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEmmEi) +STUB("rErIKbleNdk", + _ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody17waitsForDataIsSetEv) +STUB("rErmWpWZcKE", _ZTVN3WTF8JSONImpl5ValueE) +STUB("rEt3OdJ9JMY", _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse10getMatchIdEv) +STUB( + "rEvhXRVOWQE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEEC1ERKS9_) +STUB( + "rEz9jmDS+EY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEEaSERSA_) +STUB("rEzd-SUbkbU", _ZNK3sce2Np9CppWebApi6Common6VectorIfE5emptyEv) +STUB("rF07weLXJu8", _ZNSt8bad_castD2Ev) +STUB( + "rF2kql3-85o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE5clearEv) +STUB("rF5BMbyEszI", WKBundleFrameCopyCounterValue) +STUB( + "rF5h2PXWFvg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEmmEi) +STUB( + "rFBpruGjpz4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEptEv) STUB("rFCJnwsHUYA", sceApplicationGetAppPackageInfoForCoredump) +STUB("rFDrxsdwWCY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEC2Ev) +STUB( + "rFFxx44Zmtc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEED1Ev) +STUB("rFHlht2DdoY", + _ZNK3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer14getCustomData1Ev) +STUB( + "rFNzw7PCoVQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "rFOrapbOB7k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEC2Ev) +STUB("rFQd6MrFmA0", __ubsan_handle_float_cast_overflow_abort) +STUB( + "rFUt9dKuCek", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE5eraseENS2_13ConstIteratorIS9_EERSC_) +STUB("rFW7xEUHq-I", WKPreferencesSetCompositingBordersVisible) +STUB("rFYrdyiAwE8", _ZN7WebCore11MathMLNames18mathbackgroundAttrE) +STUB("rFYwm9z1sBM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEEmmEv) +STUB("rFcQRK+GMcQ", _ZN3sce2np9NpTitleIdD0Ev) +STUB("rFejiB5ds6Y", _ZN7WebCore24distanceBetweenPositionsERKNS_15VisiblePositionES2_) +STUB("rFfP4eJja84", uscript_nextRun_67) +STUB( + "rFgB3y-6q98", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEptEv) +STUB("rFiChDgHkGQ", CA_MGMT_extractKeyBlobTypeEx) +STUB( + "rFllVVmBJS0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEC1ERKS7_) +STUB("rFm8t09eAxs", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error20missingElementsIsSetEv) +STUB( + "rFmky6SYG9c", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEixEm) +STUB("rFp3SIH8rXA", mono_aot_Sce_Vsh_FileSelectorAdvanceunbox_trampolines_end) +STUB( + "rFqeqMadDKU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEC2Ev) +STUB( + "rFraRDbxOps", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayer28hasxPsnAcceptPlatformNamePs5Ev) +STUB( + "rFt3a3MT5Cc", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V325PsnWebErrorWrapperFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_18PsnWebErrorWrapperEEE) +STUB("rG1Qu1lwPAw", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEEixEm) +STUB( + "rG1SXK5XvbI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEaSERS7_) +STUB("rG2ESToL3K0", _ZN3sce3Xml3Dom15DocumentBuilderD1Ev) +STUB("rG7W98YlHTw", VerifyClassname) +STUB( + "rG8GX5GsJO0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEC2EPNS2_10LibContextE) +STUB("rG8xXX-L7NU", _Ux86_64_is_fpreg) STUB("rGBBgGamo5c", sceCesUtf16ToEucKr) +STUB( + "rGBOn9BlxHk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEC2ERKS7_) STUB("rGCLqREfQlM", sceCloudClientCancelRequestGame) +STUB( + "rGChFIFjACs", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS4_PvEPFvliS9_ES9_) +STUB("rGHPK67nebg", _ZN3sce7Toolkit2NP2V27Ranking12RangeOfRanksaSERKS4_) +STUB( + "rGKL-KxOVNQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE3endEv) +STUB("rGN32QOaG1Y", mono_btls_x509_store_ctx_from_ptr) +STUB( + "rGNNMSvsCHg", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeader46setputPlayerSessionsSessionIdLeaderRequestBodyENS1_6Common12IntrusivePtrINS3_43PutPlayerSessionsSessionIdLeaderRequestBodyEEE) STUB("rGNm+FjIXKk", sceHttpCreateRequest2) +STUB("rGSEtxY7Pds", _ZN12video_parser5vpcom15GetCommonStringERKi) +STUB("rGSY5kqmIQo", ures_getInt) +STUB( + "rGV5NVK86WM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEE3getEv) +STUB( + "rGVD1AHDPbw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE3endEv) +STUB( + "rGZfLzFS5mQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEC2Ev) STUB("rGccgf7LjyA", sceNpManagerStopVsh) +STUB( + "rGcnlOFyjl8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEC2EPS8_) +STUB("rGeiyVYzqo0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEEC2EPS6_PNS2_10LibContextE) +STUB("rGgWAntk5qs", SSL_CTX_set_info_callback) +STUB( + "rGhIGIDwTao", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE7reserveEi) +STUB("rGkq346FJrs", + _ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors12unsetMessageEv) +STUB( + "rGlSUPWJVyE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEC1Ev) +STUB("rGoboR+Egrc", _ZN7WebCore9HTMLNames27webkitattachmentbloburlAttrE) +STUB("rGwMJU-Z60g", mono_aot_System_ServiceModelunbox_trampolines_end) +STUB("rH+tkxgXLPI", _ZN7WebCore9HTMLNames17aria_expandedAttrE) STUB("rH2mWEndluc", scePthreadMutexattrGetkind) +STUB( + "rH5-TraEnxk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE4sizeEv) STUB("rH8hY8WuDvg", sceApplicationNotifyPhase) +STUB( + "rHANA+NUzXc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEED1Ev) +STUB( + "rHFROdBBD7E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEEaSERKSA_) +STUB( + "rHIOSjJ7JzE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEED1Ev) +STUB("rHJ2sx9bGIg", _ZN3JSC15TypeProfilerLog17processLogEntriesERKN3WTF6StringE) +STUB( + "rHOVyKCMHjM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEdeEv) +STUB("rHRr+131ATY", llabs) +STUB("rHSo-yI3Q+U", mono_custom_attrs_free) +STUB( + "rHUkJKD-LN0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEppEv) +STUB("rHVNXPmC65Q", _ZN7bmalloc8FreeList5clearEv) +STUB("rHXQyGpHfdw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEED1Ev) +STUB( + "rHYtxPVFchU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE5emptyEv) +STUB("rHanQbFAxhg", EVP_PKEY_CTX_new) +STUB( + "rHb7R9ccbmA", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetBoolean7Ev) +STUB( + "rHd7pYIn2fg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEC2EPNS2_10LibContextE) +STUB( + "rHf5cNUxBgo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE3endEv) +STUB("rHimiSy9VdU", _ZN3sce7Toolkit2NP2V27Session11InvitationsC1Ev) +STUB( + "rHng21YAeYY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEC2EPS6_PNS2_10LibContextE) +STUB("rHuM4YIbyrk", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container13unsetChildrenEv) +STUB( + "rHw87qDePG8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEED2Ev) +STUB("rHz0QJW4zAo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEEeqERKS7_) +STUB( + "rHzXUC9OHh8", + _ZN15AbstractStorage15HttpTransaction15SendHttpRequestERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEiRKSt3mapIS5_S5_St4lessIS5_ESaISt4pairIS6_S5_EEEmb) +STUB( + "rI1SbBosH90", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEC2ERKS7_) +STUB( + "rI1mnrO5kok", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEEC2EPSA_PFvSC_EPNS2_10LibContextE) +STUB("rI2TLYtQOug", _ZNK3sce2Np9CppWebApi7Matches2V113ChildActivity15getAvailabilityEv) +STUB("rI2wkRi6nNU", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE5clearEv) +STUB("rI39CFx2B58", _ZN7WebCore15JSDOMWindowBase4infoEv) +STUB("rI9PMHXJO+Q", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicket11setticketIdEPKc) +STUB("rI9jlW2FAC4", _ZN3WTF11Persistence7EncoderlsEj) STUB("rI9lNAXPMIw", sceAgcDriverGetResourceType) +STUB("rIB2Lqvbmyw", mono_get_uint32_class) +STUB( + "rIEbvyxN3AE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE5beginEv) +STUB( + "rIG+es1uNS0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEC2EPNS2_10LibContextE) STUB("rIH7UTXfho4", sceCompsoitorGetRenderingTime) +STUB("rIKEui9oRJg", _ZN3WTF8pageMaskEv) +STUB( + "rILPCmFoOoc", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "rIO-h62heYY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEneERKS9_) +STUB("rISufqUfxtI", _ZN12video_parser5vpcom11LwMutexLockEPNS0_11sys_lwmutexEy) +STUB("rIT2ClXDu7Q", _ZN7WebCore20ISOOriginalFormatBoxaSERKS0_) +STUB( + "rIVfPkGXhsA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE8pushBackERKS8_) +STUB("rIXoNZkmSbI", WKAXObjectGetTypeID) STUB("rIZnR6eSpvk", scePadResetOrientation) +STUB( + "rIgTGKsjMac", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesC1EPNS1_6Common10LibContextE) +STUB( + "rIqBOhWxNYA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("rIrumhLPtG4", mono_aot_Sce_Vsh_Np_Snsunbox_trampoline_addresses) +STUB("rJ1ctJzy4tg", _ZN3JSC17JSPromiseDeferred6createERNS_2VMEPNS_8JSObjectENS_7JSValueES5_) +STUB("rJAmYfnKn2Q", _ZN3sce7Toolkit2NP2V210Tournament7Request10GetBracketD1Ev) STUB("rJFDhypHYaY", sceLibreSslGetMemoryPoolStats) +STUB("rJFvhRrqdKI", _ZN3sce7Toolkit2NP2V29Challenge10ChallengesD2Ev) STUB("rJNPJqDCpiI", sceNpMatching2GetWorldInfoList) +STUB("rJPGshRLOpc", _ZNK3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead13teamNameIsSetEv) +STUB("rJTtAVw7H5I", _ZN7WebCore40defaultTextEncodingNameForSystemLanguageEv) STUB("rJUyMrDdxJg", sceAgcDriverGetShaderDebuggingStatus) +STUB( + "rJVd64l41v4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEEC2ERSA_) +STUB("rJWnDO35mR8", glGetQueryObjectuiv) STUB("rJWslrzgww8", scePlayReadyCdmiUpdate) +STUB("rJX8As6nMrY", _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfileD2Ev) +STUB("rJcLupv6yz8", _ZNK7WebCore11MediaSample13videoRotationEv) +STUB("rJd1hbDatCY", _ZNK7WebCore18PlatformTimeRanges7containERKN3WTF9MediaTimeE) +STUB( + "rJqPkNYQnLI", + _ZNK3sce2Np9CppWebApi14SessionManager2V130ResponsePlayerSessionSpectator6toJsonERNS_4Json5ValueEb) +STUB( + "rJsartzbW-0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEC1EPNS2_10LibContextE) +STUB( + "rJygR7RFQdI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "rK3Pycz8Gno", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE7popBackEv) +STUB("rK7wU7R7feE", _ZN9Inspector8Protocol3CSS11CSSProperty4NameE) +STUB( + "rK9GCV+0eyk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEC2Ev) STUB("rKBUtgRrtbk", sceVideoOutRegisterBuffers2) +STUB("rKBbPSETkpU", _ZN3WTF10WorkerPool8postTaskEONS_8FunctionIFvvEEE) +STUB( + "rKBk2NUKHK4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEED2Ev) +STUB("rKD5kXcvN0E", SSL_ASYNC_connectCommon) +STUB("rKKqbTOAarE", _ZN7WebCore40clearDefaultPortForProtocolMapForTestingEv) +STUB( + "rKLgHZZHEWA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEEC2Ev) +STUB( + "rKPAR3kaqYU", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) STUB("rKPTlHwGa4k", scePlayerInvitationDialogOpen) +STUB( + "rKQWg-Ppsno", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE8capacityEv) +STUB("rKR0lSOhmmw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEC1ERS7_) +STUB( + "rKR3IvSntcM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEC1EPS8_) +STUB("rKRiqL7quEg", Java_java_io_ObjectInputStream_allocateNewObject) +STUB( + "rKRsYMFHLMY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEdeEv) +STUB( + "rKSFqai1oiU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEE21intrusive_ptr_sub_refEPS7_) +STUB("rKT4rTbgt7Q", ustrcase_internalToTitle_67) +STUB( + "rKVl-biX8jw", + _ZN9Inspector25DebuggerBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "rKYoJ7UskJ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEEC1ERS9_) +STUB("rKaPnExi-70", _ZN3JSC8JSObject12isExtensibleEPS0_PNS_14JSGlobalObjectE) +STUB("rKaW5ETSvSA", Java_sun_awt_GnmUtils_getEngineFromImage) +STUB( + "rKhU+og7e74", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB( + "rKlUXKdlRm8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) STUB("rKq9nG+L9Xo", sceAmprAmmCommandBufferModifyMtypeProtect) +STUB( + "rKtz2EfCiBs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEE7add_refEv) +STUB("rKwwPYaJ5Ck", _Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm13CpPerfCounterE) +STUB("rKyTQRDAnxw", Java_sun_awt_GnmUtils_getEngineFromGraphics) +STUB("rL123FrWRGY", mono_jit_parse_options) +STUB("rL67kXE01Mg", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request15GetSharedVideosD1Ev) +STUB("rL8YfuwG02c", + _ZN12video_parser17cVideoProfilerMp418setDefaultLanguageENS_11MediaType_eENS_9VP_LANG_eE) +STUB( + "rLAslU3PdL4", + _ZN3sce2Np9CppWebApi14SessionManager2V161GetUsersAccountIdPlayerSessionsInvitationsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_54GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEE) +STUB("rLBzi9aobXU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE4sizeEv) STUB("rLEw4n5yI40", sceUserServiceGetGlsCameraEffect) +STUB("rLIrZv4LN4Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEEmmEi) +STUB( + "rLJDjtPn7u4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEEcvbEv) +STUB( + "rLJaNbc0TU4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEEptEv) +STUB( + "rLJeP+GsLz4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("rLK6S3dUUEA", WKPreferencesGetAVFoundationEnabled) +STUB( + "rLMiXnSAP6U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "rLPAlYpAyns", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "rLRukClGA28", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_34DetailedProductInfoListInputParams9ProductIdEEeqERKS5_) +STUB("rLUW3fPPXvg", _ZN7WebCore17HTMLSelectElement7setSizeEj) +STUB("rLV7ZbHNgeA", _ZN3JSC12VMEntryScopeD1Ev) +STUB("rLV7ZbjxqD0", _ZN7WebCore20PasteboardCustomData5EntryC1EOS1_) +STUB("rLZHS6UNwUg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE3endEv) +STUB( + "rLdfvDSOOL0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEE3getEv) +STUB("rLiFc4+HyHw", + _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basece) +STUB("rLj8gTIKh08", bemp2sys_tsfilter_create) +STUB("rLn-Coo48ow", rgctx_fetch_trampoline_rgctx_19_p) +STUB("rLsPBLktI-A", _ZNK7WebCore16HTMLInputElement13valueAsNumberEv) +STUB( + "rLtRIHGn-g8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEED2Ev) +STUB("rLtUwUHIUG0", _ZN3sce7Toolkit2NP2V28Matching7Request7GetDataC2Ev) +STUB("rLuypv9iADw", __fixunsdfti) +STUB( + "rLvNPp1gwro", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE21intrusive_ptr_add_refEPS9_) +STUB("rLxHpLiCPw4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEED1Ev) STUB("rM-1hkuOhh0", sceImeVshDisableController) +STUB( + "rM16RUJ+ruk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEplEm) +STUB( + "rM1pB40ImUI", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody25totalDataStatusCountIsSetEv) +STUB("rM2aePgqMVc", _ZN7WebCore12ChromeClient28supportsFullScreenForElementERKNS_7ElementEb) +STUB("rM3UhfGefM4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEdeEv) +STUB( + "rM9tdylxdj0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEED2Ev) +STUB("rMByn5JGEn0", u_strcasecmp_67) +STUB("rMLZl2MKzgk", _ZNK3JSC11ArrayBuffer5sliceEii) +STUB( + "rMN7NiO+P24", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("rMQUlsBTvEQ", g_strchomp) +STUB( + "rMU1k3iGBQI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditionsC1ERS5_) +STUB( + "rMXlAdCYpNQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB("rMZOszpS+f8", _ZN3sce7Toolkit2NP2V26Friend16FriendsOfFriendsC1Ev) +STUB("rMZwfKbHfqE", _ZTVN9Inspector33ApplicationCacheBackendDispatcherE) STUB("rMaiuPQsNoM", sceSdmaOpen) +STUB("rMbGu0HyUlc", mono_assembly_load) +STUB( + "rMe8lTyoBwY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEC1Ev) +STUB("rMnQ2wsSy-c", WKInspectorIsAttached) +STUB("rMqqdr74UvQ", WKWebsiteDataStoreSetStatisticsExpiredStatistic) STUB("rMyh97BU5pY", sceNetGetMemoryPoolStats) +STUB("rN+7ZJ865FI", _ZN3WTF11Persistence7EncoderlsEb) +STUB("rN-dVW42j+w", __sanitizer_symbolize_pc) +STUB("rN7ixySUh-A", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEEC2ERS6_) +STUB( + "rNB37TTOrVw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEEC1ERKSA_) +STUB("rNESfCCKTJ8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersC1ERS5_) +STUB( + "rNFK4EgFoBM", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEEC1Ev) +STUB( + "rNGWT3c8wto", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEEC2ERKSA_) +STUB("rNJ1+3KoZP4", _ZN3sce2np18MemoryStreamReaderD2Ev) +STUB( + "rNL4HZ9kH1U", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEdeEv) +STUB("rNLVCzbCJgE", _ZNK7WebCore6Length21nonNanCalculatedValueEi) +STUB( + "rNRNEpZ-xrI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE8pushBackERKS8_) STUB("rNRtm1uioyY", sceKernelHasNeoMode) +STUB("rNX1rOYx8Pk", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku27unsetDisplayPlusUpsellPriceEv) +STUB("rNX5+wtR2nY", _ZN7WebCore28InspectorFrontendClientLocal24startProfilingJavaScriptEv) +STUB("rNYLEsL7M0k", _ZNSt12future_errorD0Ev) +STUB("rNewlobNvNQ", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15ErrorC2EPNS1_6Common10LibContextE) STUB("rNhWz+lvOMU", _sceKernelSetThreadDtors) +STUB("rNhsFZF85Fw", _ZN3sce7Toolkit2NP2V29Messaging22GameDataMessageDetailsC1Ev) +STUB("rNlBxrgYJGI", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V110Reputation17unsetPerFranchiseEv) STUB("rNlxdAXX08o", sceFontGraphicsDefineIndexedVertexesGlyph) +STUB( + "rNoQTDSkF0Y", + _ZN7WebCore11CachedFrame26setCachedFramePlatformDataESt10unique_ptrINS_23CachedFramePlatformDataESt14default_deleteIS2_EE) +STUB( + "rNtFkA-ODIw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEneERKS9_) +STUB("rNxUdFXvbmY", _ZN7WebCore21BlobDataFileReference16revokeFileAccessEv) +STUB("rNzcsITOLWg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEixEm) +STUB( + "rNzqsiDErg0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEED1Ev) +STUB( + "rO1Q4iQzHB0", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS5_INS7_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "rO3EJVfG9lg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEE7add_refEv) +STUB( + "rO6zLDShStE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118RequestGameSessionEEEEEEC2ERSA_) +STUB("rO8tQwOajrw", _ZN7WebCore21JSCSSStyleDeclaration15subspaceForImplERN3JSC2VME) +STUB("rO9Z63HVtmI", _ZN3sce7Toolkit2NP2V210Tournament12MatchDetailsC2Ev) +STUB( + "rOASmpJVjEQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEmmEv) +STUB( + "rOHXZDOtmrk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEppEi) +STUB("rONISOlHgZI", pfr_driver_class) +STUB("rONrD2xHVZk", _ZNK7WebCore27TranslateTransformOperation1yEv) +STUB( + "rOO80s82v6E", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB( + "rOPKDdFz8BI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEE11release_refEv) +STUB("rOPsD3LoB0s", head_s) +STUB( + "rOQkjAKRaaQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEdeEv) +STUB( + "rOSqjpaZSmg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEC2ERKS7_) +STUB("rOT0UMvtCCA", ksem_getvalue) +STUB( + "rOTALbLWKX0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEE7add_refEv) STUB("rOTg1Nljp8w", sceRemoteplayImeSetText) +STUB( + "rOVUNCaqRTA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("rOYUEPXgOqk", mono_gchandle_free) +STUB( + "rOeQsX13vJk", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi38ParameterToGetJoinedGameSessionsByUser30unsetxPsnAcceptPlatformNamePs5Ev) +STUB("rOf+hS4E7iE", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V19PlayStyle17perFranchiseIsSetEv) +STUB( + "rOfyLCJWU7Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE8pushBackERKS8_) STUB("rOghwK6XnUo", scePssMusicPlayerSetSurroundPan) +STUB("rOiaNsXnaJg", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE8copyFromERKS7_) +STUB( + "rOpRkOI6fpM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE5clearEv) +STUB( + "rOtiV-sP228", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE5emptyEv) +STUB("rOyGBl1GZHQ", __asan_report_exp_store2) +STUB("rP+VpCCUJtw", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11EntitlementEE9constructEPS3_RKS3_) +STUB("rP+c9jTIaic", _ZN3sce2np9JsonValue5ClearEv) +STUB("rP-rdKffodM", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V18Variable18getLastUpdatedUserEv) +STUB("rP1Z5VoDsWw", glUniform3ui) STUB("rP40jSNZ-6Y", sceSpPthreadJoin) +STUB("rP5Vq2av3Fg", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIdE21intrusive_ptr_sub_refEPS4_) +STUB( + "rP6LuEVqFCE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEC2Ev) +STUB("rP9G1kItPl4", JSSynchronousEdenCollectForDebugging) +STUB("rP9VyAtSJ08", eglCopyBuffers) STUB("rPDLpn5xox8", sceLncUtilGetAppFocusedAppId) +STUB("rPHhEmlHVaI", _ZN7WebCore12JSAudioTrackaSERKS0_) +STUB("rPIa7nRCV6U", _ZNK3sce2Np9CppWebApi14SessionManager2V16Friend19playerSessionsIsSetEv) +STUB("rPLiLh9xkmc", _ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody12unsetOfferIdEv) +STUB( + "rPOxx7tJbwo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE8copyFromERKS9_) +STUB( + "rPQWciUNh4I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEEC1EPS8_PNS2_10LibContextE) +STUB("rPRlHpErskQ", _ZN3JSC32JSDestructibleObjectHeapCellTypeD1Ev) +STUB("rPTVIzMv45s", _ZN12video_parser13cVideoPathMgv20GetLicenseEKBVersionEv) STUB("rPbVwkzWWJg", sceNpPushRegisterInContextNotificationtCallback) STUB("rPl0INNc-M8", sceNpGameIntentGetPropertyValueString) STUB("rPo6tV8D9bM", sceSystemServiceGetStatus) +STUB( + "rPsrUctsZ0k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEC1EPS6_PNS2_10LibContextE) +STUB( + "rPvsHYtZ-xU", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V110MmrFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_3MmrEEE) +STUB("rPx0crdR-M4", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead16setMaxSpectatorsERKi) +STUB( + "rPxhVLFJBm4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB("rPyRy5q6vXg", _ZN7WebCore11DisplayList9TranslateC1Eff) +STUB("rQ-70s51wrc", _LSnan) +STUB("rQ63V5bdaH8", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats18getNatConnectivityEv) +STUB("rQFNwRTkhZA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEptEv) +STUB("rQFVBXp-Cxg", fseek) +STUB("rQGJeNjOuUk", _ZNK3sce4Json5Array4sizeEv) +STUB( + "rQGVRbZAhOI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE3endEv) +STUB("rQIXRuuWS3w", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking10UsersRanksEEC1Ev) +STUB("rQQeUNpkEcc", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanityC2ERS5_) +STUB("rQeJLS4B49w", fuse_setup_compat25) +STUB("rQht6vu1qCc", addTelemetryErrorListener) +STUB("rQhzp0Mu5m0", _ZNK15AbstractStorage12LocalStorage7GetStatEPNS_4StatE) +STUB("rQman9NXrg4", + _ZN7WebCore12SettingsBase22setSansSerifFontFamilyERKN3WTF12AtomicStringE11UScriptCode) +STUB( + "rQnJ71XxaF4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEE3getEv) +STUB("rQr2nSz91OY", _ZN7WebCore11DisplayList8FillRectC1ERKNS_9FloatRectE) +STUB("rQvMIxmFD6A", ksem_wait) +STUB( + "rR-PqRI4VSY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEE7add_refEv) +STUB("rR-yli78ysM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEE5resetEPS6_) +STUB("rR-zf8sZQ7g", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_23NpIdListRankInformationEED1Ev) +STUB("rR2eyeOg1kQ", _ZN3sce7Toolkit2NP2V24Core11ServerErrorC2Ev) STUB("rR8wq7YFRZs", sceFiosFHPread) +STUB( + "rRBZ0c0qYfE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEaSERS7_) +STUB( + "rRCC0VQo20Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("rRCIxcuzMgs", _ZNK7WebCore11MediaPlayer18shouldDisableSleepEv) +STUB( + "rRHofmmEh1g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEC2EPS8_) +STUB("rRHvWnv1Osk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEED1Ev) +STUB( + "rRIS8XZEjBs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEE11release_refEv) +STUB("rRIhC3REvac", _ZNK3sce2Np9CppWebApi6Common6VectorINS2_6StringEE5emptyEv) +STUB("rRJWFhS9zxw", _ZN7bmalloc14debugHeapCacheE) STUB("rRN89jBArEM", sceNpUInt32ToStr) +STUB("rROQ64kvlIk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE4sizeEv) +STUB("rRPmAC3SDo0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE7reserveEi) +STUB("rRREUD0CXy8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEEC1EPS5_PNS2_10LibContextE) +STUB("rRWSb8kAhkc", rgctx_fetch_trampoline_rgctx_120_p) +STUB("rRXrA7NLgJM", _ZNK3JSC11ArrayBuffer5sliceEi) +STUB("rRYXtFLsNV4", _ZN3WTF16callOnMainThreadEPFvPvES0_) +STUB( + "rRZCijq3o9Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEC1Ev) +STUB("rRgC2-nilx8", _ZN3WTF9MediaTime16createWithDoubleEd) +STUB("rRjtwYGnsas", _ZN3JSC8JSObject6toThisEPNS_6JSCellEPNS_14JSGlobalObjectENS_8ECMAModeE) +STUB( + "rRkUnn8f344", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB( + "rRm+pW++9W0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("rRmMX83UL1E", _ZNKSt8messagesIcE8do_closeEi) +STUB( + "rRt32ct3kys", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyC2EPNS1_6Common10LibContextE) +STUB("rRwPDGtr0fA", _ZN7WebCore8Document24addMediaCanStartListenerEPNS_21MediaCanStartListenerE) +STUB( + "rRy2xbCR5ag", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody18unsetComparedValueEv) +STUB("rS+3o7dQQzQ", + _ZN3JSC21linkAndEvaluateModuleEPNS_14JSGlobalObjectERKNS_10IdentifierENS_7JSValueE) +STUB("rS0WPhToVaQ", mono_aot_Sce_Vsh_Np_ServiceChecker2unbox_trampoline_addresses) +STUB( + "rS0at0n6IpY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("rS3h8f-Dibk", _ZN3sce2Np9CppWebApi12Leaderboards2V15ErrorD2Ev) +STUB("rS4gAx77IeA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEC2Ev) +STUB( + "rS5l5R56PLM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE5clearEv) +STUB("rSADYzp-RTU", _ZTVSt13basic_filebufIcSt11char_traitsIcEE) +STUB( + "rSE8WMxQ5Jc", + _ZN9Inspector33ApplicationCacheBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) +STUB( + "rSEzoGB2lxc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEE11get_deleterEv) +STUB( + "rSH+VpOlLB8", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification15BlocklistUpdateEE19setCustomReturnCodeEi) +STUB("rSIBG3MSHtc", ucsdet_open_67) +STUB( + "rSKOJzOghVM", + _ZN7WebCore21JSCSSStyleDeclarationC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_19CSSStyleDeclarationENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "rST+V1INOjk", + _ZN3sce2Np9CppWebApi11Matchmaking2V120ErrorResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_13ErrorResponseEEE) +STUB("rSW2hZt1Oo4", glVertexAttribDivisor) +STUB("rSa46Z635eI", _ZNK7WebCore17CharacterIterator5rangeEv) +STUB("rSccNDU3ikw", JVM_GetManagement) +STUB("rScpE8zKNHI", ubidi_getClassCallback_67) +STUB( + "rSg05ki1QwA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEE7add_refEv) +STUB("rSgYEXIuJAI", _ZN3sce7Toolkit2NP2V27NpUtils7Request17CheckPsPlusAccessD2Ev) STUB("rShmqXHwoQE", sceNpScoreGetRankingByRangeAsync) +STUB( + "rShzEap9sdQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEE11release_refEv) +STUB("rSjUG0S004I", _ZN7WebCore13JSHTMLElement14finishCreationERN3JSC2VME) +STUB("rSoIFQL84uA", rgctx_fetch_trampoline_rgctx_44_p) STUB("rSquvOtwQmk", sceSystemStateMgrExtendShutdownTimer) +STUB("rSsusHq9Y4Y", JSValueToNumber) +STUB( + "rT3rMvsTaZg", + _ZN3sce2Np9CppWebApi14SessionManager2V138ResponsePlayerSessionInvitationFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_31ResponsePlayerSessionInvitationEEE) STUB("rT4NWysyX+g", sceNpAsmClientGetRelatedGameNpTitleIds) STUB("rT4WKQaKGig", _sceLibcMallocFinalize) +STUB("rT7hixBagTI", _ZN3JSC8Debugger13hasBreakpointEmRKN3WTF12TextPositionEPNS_10BreakpointE) STUB("rT9Yk55JGho", sceNpServiceCheckerIntInitialize) +STUB("rTAIdc3ghq4", _ZN8meta_gen13JpegRetriever16ProcessMakerNoteEv) +STUB("rTElN++NV00", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEC2ERS8_) STUB("rTIV11nMQuM", sceGnmValidateOnSubmitEnabled) +STUB( + "rTLLQ-1kGdY", + _ZN8meta_gen11MsvPromoter26setKeyValueTBLTLanguageExtENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti) +STUB("rTNM7adVYog", _getpeername) STUB("rTNYCkfforg", sceKernelGetUpdVersion) STUB("rTNZW2LJz+E", sceVorbisDecTimeSeekPageLap) +STUB("rTQ9bzaUftI", mono_aot_Sce_Vsh_PsnMessageUtilplt_end) +STUB("rTTWU3xHaCE", WKInspectorTogglePageProfiling) +STUB("rTWz8J7gUaM", jpeg_get_large) STUB("rTXw65xmLIA", sceKernelAllocateDirectMemory) +STUB( + "rTZEisjyGZQ", + _ZThn64_N7WebCore9FrameView27availableContentSizeChangedENS_14ScrollableArea25AvailableSizeChangeReasonE) STUB("rTa0Vp-4nKA", sceSystemServiceInvokeAppLaunchLink) +STUB("rTb6vWn9eL0", glTextureStorage2DEXT) +STUB("rTcK9MJi7XQ", _ZN7WebCore23throwNonFiniteTypeErrorERN3JSC14JSGlobalObjectERNS0_10ThrowScopeE) +STUB( + "rTddkwTLcWc", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats13setReputationERKNS1_6Common12IntrusivePtrINS3_10ReputationEEE) +STUB("rTgOs4NhM-E", WKPreferencesSetServiceControlsEnabled) STUB("rTjM9QpSyOM", sceFiosDirectoryDelete) +STUB( + "rTnuWm98LpE", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) STUB("rTu7zaYoryI", sceFsUmountDownloadData) +STUB("rU+Xq2LKJws", _ZN3JSC8Debugger19clearNextPauseStateEv) +STUB("rU0ByKESekI", _ZN3JSC18GCActivityCallback10setEnabledEb) +STUB("rU0UzNMZDIs", _ZN4IPMI4impl10ClientImpl6getMsgEjPvPmmPj) +STUB("rU1dwuW0Bxk", _ZNK7WebCore17FrameLoaderClient25shouldLoadMediaElementURLERKNS_3URLE) STUB("rU3HK9Q0r8o", sceHmdGetInertialSensorData) +STUB("rU5NxTYe880", _ZNK7WebCore16HTMLInputElement17validationMessageEv) +STUB("rUCnKEbzd+E", _ZNK3sce2Np9CppWebApi6Common8IteratorIfEdeEv) +STUB( + "rUF2q44CGAQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("rUFWLJP6kIE", rgctx_fetch_trampoline_rgctx_97) +STUB("rUIce+31AEw", _ZN3sce2Np9CppWebApi7Matches2V118RequestMatchPlayer11setPlayerIdEPKc) +STUB("rUOEItvA-4w", _ZN3sce7Toolkit2NP2V210Tournament25OneVsOneTournamentDetailsD1Ev) +STUB( + "rUPvVfHPk60", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEaSERKSA_) +STUB("rUSjmJ0daUk", _ZN3WTF10StringImpl6createEPKh) +STUB( + "rUUR-IH+DuY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEC1EPS7_PFvS9_EPNS2_10LibContextE) +STUB( + "rUYSOj47c9k", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEEcvbEv) +STUB("rUZfugj0RMc", _ZN3WTF18fastMallocGoodSizeEm) +STUB( + "rUdersUjIxQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEEC2ERKSB_) +STUB( + "rUfxsL0Zkr4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEmmEv) +STUB("rUlEjud-4jE", uspoof_getCheckResultRestrictionLevel_67) +STUB("rUm4xXy5TH0", WKFormSubmissionListenerGetTypeID) STUB("rUm5+ODGAUQ", sceApplicationDebugSpawnAndSetAllFocus) STUB("rUuVjyR+Rd4", sceAgcDcbGetLodStatsGetSize) +STUB("rUwx4qab9VE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEEC1EPS4_PFvS6_EPNS2_10LibContextE) +STUB("rV-eVrM64es", unorm_quickCheckWithOptions_67) +STUB("rV07jlO-+6Q", EVP_aes_128_cbc) +STUB("rV4kjWvRQYE", _ZN3sce7Toolkit2NP2V26Trophy15TrophyPackGroupC2Ev) +STUB("rV9fIoSZicw", mono_aot_Sce_Vsh_Np_Trophymethod_addresses) +STUB("rVAPAY6H3mw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE8pushBackERKS6_) +STUB( + "rVIAzkXeEyA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEC1ERKS7_) +STUB( + "rVIHd4FTGvo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "rVJS3CeUwxs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEeqERKS9_) STUB("rVK3QqurCkg", sceAvControlIsModeSystemDefault) STUB("rVNVc74vUAY", sceVorbisDecHalfrate) STUB("rVOmPz2RBlg", sceAgcAcbSetWorkloadsActive) +STUB( + "rVQG+DxfaAs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "rVQZN6kv3Zk", + _ZN7WebCore11FileMonitorC2ERKN3WTF6StringEONS1_3RefINS1_9WorkQueueENS1_13DumbPtrTraitsIS6_EEEEONS1_8FunctionIFvNS0_14FileChangeTypeEEEE) +STUB("rVZHSP9xD+Q", + _ZN3sce2Np9CppWebApi14SessionManager2V129JoinedGameSessionWithPlatform14unsetSessionIdEv) +STUB("rVZe903G-BU", + _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSessionC1EPNS1_6Common10LibContextE) +STUB("rVdu+F4JFC4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEC1Ev) STUB("rVghiu7iE9o", sceIduUtilSetPupVersion) STUB("rVjRvHJ0X6c", sceKernelVirtualQuery) +STUB("rVkZUDFdolc", _ZN3sce2Np9CppWebApi12Leaderboards2V122GetRankingResponseBodyD2Ev) +STUB("rVtImV4rxSA", _ZN3sce2npltERK10SceRtcTickRKNS0_4TimeE) +STUB("rW+n1QeUDdo", WKBundleHitTestResultCopyAbsoluteMediaURL) +STUB( + "rW24b0rgvkg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEC1Ev) +STUB( + "rW6vq2T7+yo", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId19unsetnpServiceLabelEv) +STUB( + "rWF-AX29jbY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEEC2EPS6_PNS2_10LibContextE) +STUB("rWGecUisNcA", _ZThn64_NK7WebCore9FrameView12tiledBackingEv) +STUB("rWGu8s-c9MM", mono_aot_Sce_Vsh_RnpsAppMgrWrapperunbox_trampoline_addresses) +STUB( + "rWGw63xCXBY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEC2EPS8_) +STUB("rWJW9d0XphI", _ZN7WebCore8Document22setAnimatingFullScreenEb) +STUB("rWJsgmsQkhQ", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V15Owner13unsetOnlineIdEv) +STUB("rWNFYWaW5OI", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_6NpUserEEeqERKS4_) +STUB( + "rWP-wo3luzE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEaSERKS7_) +STUB("rWPnHtWTIRg", JSGlobalContextUnsetDebuggerRunLoop) +STUB("rWSuTWY2JN0", vsnprintf_s) STUB("rWUTcKdkUzQ", sceVideoOutGetEventData) STUB("rWVNHNnEx6g", sceSharePlayStartStreaming) STUB("rWapdQmQQRQ", sceEditMp4Abort) +STUB("rWdFPCabS3A", _ZN7WebCore8SVGNames9localAttrE) +STUB( + "rWjXEzbHdps", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE5emptyEv) +STUB( + "rWmKyjok+zE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEEC2Ev) +STUB("rWqcuf+8h2M", shmat) +STUB( + "rWui94DPdP4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEC2Ev) STUB("rWxYHhhR4h4", scePlayReadyReaderDecryptOpaque) +STUB("rWzPAzEcvi0", + _ZN3JSC8Bindings8InstanceC2EON3WTF6RefPtrINS0_10RootObjectENS2_13DumbPtrTraitsIS4_EEEE) +STUB("rX0u9f3fbeQ", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed4FeedEED2Ev) STUB("rX30iWQqqzg", sceNetShowNetstatEx) +STUB( + "rX4+XQ6MUPI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEC1Ev) +STUB( + "rX4CjhmalpA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE6resizeEj) +STUB("rX4rdDndd1I", mono_object_to_string) +STUB("rX58aCQCMS4", _ZNSt5ctypeIcE10table_sizeE) +STUB("rXAzfK5NcGE", _ZN7WebCore9HTMLNames11onendedAttrE) +STUB("rXHi08e0g80", SSL_set_bio) +STUB("rXL9V01Y7wM", _ZN7WebCore10JSDocument15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("rXOsqWISrB4", _ZN7WebCore26Matrix3DTransformOperationC1ERKNS_20TransformationMatrixE) +STUB("rXSf8HdoOKg", _ZN3JSC12JSSourceCode6s_infoE) STUB("rXV8az6X+fM", sceGnmSqttGetWrapCounts2) +STUB("rXVOuOSwqK4", ureldatefmt_close_67) +STUB("rXbzVpqX6ro", _ZN7WebCore12ISOWebVTTCueC2ERKN3WTF9MediaTimeES4_) +STUB("rXe5udZ-aIU", _ZN3JSC8Debugger18stepNextExpressionEv) +STUB("rXnVu5Uxzw4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching6WorldsEEC1Ev) +STUB( + "rXwjNGu83zc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEC2EPS8_) +STUB("rXyPtzELvLs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE5emptyEv) +STUB( + "rY+UJoweJzs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEaSERKS7_) STUB("rY2Mw7TEOhc", sceVideoCoreChangeActiveStatus) +STUB("rY89QdUEOok", u_isIDStart_67) +STUB( + "rYAqeGlKweY", + _ZN3JSC8JSObject47putDirectNativeIntrinsicGetterWithoutTransitionERNS_2VMEPNS_14JSGlobalObjectENS_10IdentifierENS_14NativeFunctionENS_9IntrinsicEj) +STUB("rYB3TclJnuQ", _ZN7WebCore10FileSystem14MappedFileDataD1Ev) +STUB("rYBIlc3NXHA", _ZN3JSC22FullGCActivityCallback12doCollectionERNS_2VME) +STUB("rYIoQpw2t6Q", _ZN7WebCore8SVGNames7defsTagE) +STUB( + "rYLrGFoqfi4", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERy) +STUB( + "rYMWOD7Ecvk", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetrics18getConfidenceScoreEv) +STUB( + "rYR8ya7vsGg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEEdeEv) +STUB("rYSa0iFQ8JI", u_setMutexFunctions_67) +STUB("rYWJ3CJ8+6w", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEEptEv) +STUB( + "rYZjyjEI1ms", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEplEm) +STUB( + "rYbuulHdUKY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEC1EPS8_) +STUB("rYchd9SXp9Q", _ZN3sce7Toolkit2NP2V29Messaging7Request27GetReceivedGameDataMessagesC2Ev) +STUB("rYcvUnov8-A", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEED1Ev) STUB("rYvLW1z2poM", sceSaveDataCheckBackupDataForCdlg) +STUB( + "rYyqxRndZTs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEE3getEv) +STUB("rZ+UQWsAIOM", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V110Reputation12perGameIsSetEv) +STUB( + "rZ02Gaoshig", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "rZ4Kle+HFyc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetBlockingUsersResponseEEEEEEC2Ev) +STUB("rZ5sEWyLqa4", _ZNSt13_Num_int_base9is_moduloE) +STUB("rZH-neMr4ms", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEE11get_deleterEv) +STUB( + "rZIh+zHzkqo", + _ZN9Inspector14ConsoleMessageC2EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelERKN3WTF6StringEONS5_3RefINS_15ScriptArgumentsENS5_13DumbPtrTraitsISA_EEEEONS9_INS_15ScriptCallStackENSB_ISF_EEEEm) +STUB( + "rZLIbR2ap-k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE3endEv) +STUB( + "rZQWxIIWHPU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEE11release_refEv) +STUB("rZTbknP5umM", _ZN12video_parser5vpcom6_WriteEPNS_8_vp_fileEPKvjPi) +STUB( + "rZVrGFpfDtY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE8copyFromERKS9_) STUB("rZYoZcqqJdo", sceFaceParts) +STUB( + "rZZ3JHwY57w", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivitiesD2Ev) +STUB( + "rZbqM6KbFg8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEEC2ERSA_) +STUB("rZgGJmKVHUM", g_list_insert_before) +STUB("rZiZDOQA0ow", il2cpp_class_get_bitmap_size) +STUB( + "rZj+KzgGobg", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeaders6createEPNS1_6Common10LibContextERNS6_12IntrusivePtrIS5_EEl) +STUB( + "rZn7gPbAARU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEaSERKS9_) STUB("rZqWV3eXgOA", sceRudpRead) +STUB( + "rZqvX-vxRLc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEEaSERKSA_) +STUB("rZr8MolSf60", _ZN7WebCore10Pasteboard5writeERKNS_13PasteboardURLE) +STUB("rZwUkaQ02J4", _ZTVSt7collateIwE) +STUB("ra+kuj5vEl4", _ZNK7WebCore11MediaPlayer23hasSingleSecurityOriginEv) +STUB("ra-vD4R5XxA", _ZNK7WebCore16ResourceResponse25platformSuggestedFilenameEv) STUB("raCPuJElyf8", sceCesUcs2ToEucCn) +STUB("raCb+s141kA", GCC_except_table9) +STUB( + "raGY+eoBc64", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("raLgIUi3xmk", _ZNSt7collateIcEC1ERKSt8_Locinfom) +STUB("raO+bB7q2cY", __sys_osem_close) +STUB("raPSwcqnyag", utext_freeze) STUB("raRgiuQfvWk", sceLibcMspaceGetAddressRanges) +STUB( + "raRzOb3l+Ig", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("raaLMARDhV0", _ZN3sce7Toolkit2NP2V27Session7Request6SearchC1Ev) STUB("rafRG8hKN7I", ScePsmMonoEnableJitTimeLog) +STUB("raiRjz4INVs", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationProperties12getGoodSportEv) +STUB( + "rakXDXLe8r0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEED2Ev) +STUB("ramvq-iT3s0", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15NpSessionMemberEEC1ERKS4_) +STUB("rayE1B7gs1U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEEC1EPKS6_) +STUB( + "rayaHIsskOg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEED1Ev) +STUB( + "razS4tGpuuw", + _ZN3sce2Np9CppWebApi7Matches2V130ResponsePlayerStatisticFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_23ResponsePlayerStatisticEEE) STUB("rb+XR5iVTV0", sceUpsrvGetRebootFlag) +STUB( + "rb2ySUEMLTQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEC2ERKS7_) +STUB("rb3hOutmFwM", u_strToUTF32_67) STUB("rb8JKArrzc0", sceKernelInternalHeapPrintBacktraceWithModuleInfo) +STUB("rbGPNj3pjxY", _ZN3sce7Toolkit2NP2V212NetworkUtils13NetStateBasicC1ERKS4_) +STUB( + "rbGzRY5fH1I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEED2Ev) +STUB( + "rbLYPAGOal0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEEdeEv) +STUB( + "rbP8eeEWgIQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEptEv) +STUB( + "rbQNX5KQBeA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEC2ERKS7_) +STUB("rbRlgPbLAMY", _ZN7WebCore17PageConsoleClient21shouldPrintExceptionsEv) +STUB("rbSZBjXBjGs", _ZN7WebCore11DisplayList7RestoreC2Ev) +STUB( + "rbSmiaRuFfg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE10setContextEPNS2_10LibContextE) +STUB("rbUDYXA3vfs", _ZN3sce2Np9CppWebApi13InGameCatalog2V517ContentDescriptor7setNameEPKc) +STUB( + "rbV3Y0QXz5k", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEeqERKS9_) +STUB( + "rbYLOTokdCw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEmmEi) +STUB( + "rbanPfiPdPs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "rbenGXbEcmA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE21intrusive_ptr_sub_refEPS9_) +STUB("rbjUiBdg6A0", _ZN9Inspector22InspectorDebuggerAgent7disableERN3WTF6StringE) STUB("rbknaUjpqWo", sceNpGetAccountIdA) +STUB("rbngEtORXxs", _ZN7WebCore14StaticNodeListD0Ev) +STUB( + "rbpXCPzTkKg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEcvbEv) +STUB("rbqZK23Mr1M", _ZN3JSC14ProtoCallFrame15setGlobalObjectEPNS_14JSGlobalObjectE) STUB("rbqZig38AT8", sceHttp2SendRequest) +STUB("rbsJZPsEjN8", _ZThn16_N3sce2np11NpHttpTransD1Ev) +STUB("rbyBjvpNuME", res_getBinaryNoTrace) +STUB("rbyrcC7Wv4c", + _ZN3sce2Np9CppWebApi14IdentityMapper2V318PsnWebErrorFactory7destroyEPNS3_11PsnWebErrorE) +STUB( + "rc+trR1fiMg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEeqERKS9_) +STUB( + "rc9r4-GH7zs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEEC1Ev) STUB("rcAUV2nlB-Y", sceCesUtf32leToEucKr) STUB("rcAqicKKOmw", sceCesUcsProfileInitGbkCp936) +STUB( + "rcGXdHIrkCg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEC1Ev) +STUB( + "rcKv0it5iRg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEE3getEv) +STUB( + "rcOSLRaP3BE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE5emptyEv) +STUB("rcQ-AfZ+VEY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEC2ERKS7_) +STUB("rcQCUr0EaRU", _Getptoupper) +STUB( + "rcThmzM+pr8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("rcVv5ivMhY0", lrintf) +STUB( + "rcX373vw1vE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEppEv) +STUB("rcYIfDMSmbg", WTFLogAlwaysAndCrash) +STUB("rcYiqxMPEpM", _ZNK7WebCore19ProtectionSpaceBase20authenticationSchemeEv) +STUB("rcZ6dDIXE7o", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE8capacityEv) STUB("rccmWjglnzI", sceDevUsbDeleteCPKevent) +STUB("rcdQ1CShDnE", _ZN4Manx14NetworkProfile16unMountUploadDirEv) +STUB( + "rcgT1XmQ4ak", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) STUB("rcgv2ciDrtc", sceAudioInSetDevConnection) +STUB( + "rcgyexsX9sc", + _ZN7WebCore20LegacySchemeRegistry58registerURLSchemeAsAllowingDatabaseAccessInPrivateBrowsingERKN3WTF6StringE) +STUB( + "rcj5LToqbu4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE10setContextEPNS2_10LibContextE) +STUB( + "rcjn3KVuCzA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("rcldOUXTuIc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEC1Ev) STUB("rcrVFJsQWRY", scePthreadGetaffinity) +STUB( + "rcuVv8KP-Qo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEE5resetEPS9_) STUB("rcylknsUDwg", sceNpSignalingGetConnectionInfoA) STUB("rd+-SzL202E", sceLncUtilSuspendLocalProcess) +STUB("rd+L-TM71fk", _ZN9Inspector20DOMBackendDispatcherD0Ev) +STUB("rd-Gds6NmLo", _ZN7WebCore8JSDOMURL11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("rd2QRPO5S1Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEC2ERS7_) +STUB( + "rd3y4BQohvg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEptEv) +STUB( + "rd4I2Ll-WqI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEED2Ev) +STUB("rd4PnYgzm4o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEC2Ev) +STUB( + "rd6CkjAC3B0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE4sizeEv) +STUB("rd72e5gjrKc", + _ZN6WebKit12ChildProcess18addMessageReceiverEN3IPC15StringReferenceERNS1_15MessageReceiverE) +STUB( + "rd9B+rgR+X0", + _ZNK3sce2Np9CppWebApi14ConnectAccount2V216PartnerTokensApi26ParameterToGetPartnerToken24getdeepTokenVerificationEv) +STUB("rdEN7D3ZN1E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE5beginEv) +STUB( + "rdEooEfb-ms", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE21intrusive_ptr_sub_refEPS9_) +STUB("rdNRROFLwE4", Java_java_net_SocketInputStream_init) +STUB( + "rdQ5MOEiBWQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEED2Ev) +STUB( + "rdSSrS97dO8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE3endEv) +STUB("rdTuRx2MoOA", _ZN3sce2Np9CppWebApi6Common6VectorIlEC1EPNS2_10LibContextE) STUB("rddQYXM0CjM", sceAmprMeasureCommandSizeResetGatherScatterState) +STUB( + "rddzEGhxe10", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("rdfLsGwcBeg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEE7add_refEv) +STUB("rdgUHoQOD6I", uregex_reset_67) STUB("rdgs5Z1MyFw", sceNpWebApiCreateRequest) +STUB("rdht7pwpNfM", __floatsisf) STUB("rdi9BAfDLq8", sceNpUniversalDataSystemEventPropertyArraySetArray) +STUB("rdjSZAW7BPE", _ZN3sce2Np9CppWebApi7Matches2V113RemovedPlayer8fromJsonERKNS_4Json5ValueE) +STUB( + "rdjlhyey7og", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEcvbEv) +STUB( + "rdmiAcwXmfs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEneERKS9_) +STUB("rdu8Deuj850", _ZN3sce7Toolkit2NP14TssInputParamsC2Ev) STUB("rducUH7Y62g", sceRegMgrBackupPushDataForPS4) +STUB("re2ovzw+NRw", _ZN3sce2Np9CppWebApi6Common12FutureResultIiE3getEPNS2_10ThreadPoolE) +STUB("re4SilJGu5g", mono_aot_System_Data_Services_Clientunbox_trampoline_addresses) +STUB("re4y32MvUFQ", _ZN7WebCore18DOMWindowExtensionC1EPNS_9DOMWindowERNS_15DOMWrapperWorldE) +STUB( + "reB63R+EXI8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE5beginEv) +STUB("reDisWOzHVM", u_fgetcodepage_67) +STUB("reIWsBdmSsQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEE7add_refEv) STUB("reIsHryCDx4", sceNetCtlScanIpcInt) +STUB("reRu9Jq3IYs", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicketD2Ev) +STUB("rea47PfCUwU", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariableC2EPNS1_6Common10LibContextE) STUB("rebo0q4yREE", sceRegMgrIsInitOK) STUB("rei4kjOSiyc", sceNpTitleMetadataIntAbortRequest) +STUB("rejCrx7MUpk", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking10UsersRanksEE12deepCopyFromERS7_) +STUB("rem7tg-zM2I", _ZN3sce2Np9CppWebApi6Common13ParameterBase9terminateEv) +STUB( + "repg03VMplo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEptEv) +STUB( + "rer3V-RHVPk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEE11release_refEv) STUB("retc+-uRMhk", sceHmd2GazeGetResultForFoveatedRendering) STUB("rez819wV7AU", sceUserServiceSetEventFilterTeamEvent) +STUB( + "rf-6UO-lrls", + _ZN7WebCore16WebSocketChannelC1ERNS_8DocumentERNS_22WebSocketChannelClientERNS_14SocketProviderE) +STUB("rf0BfDQG1KU", _ZTSSt7codecvtIcc9_MbstatetE) +STUB( + "rf3yJK-055Q", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V110Reputation15setPerFranchiseERKNS1_6Common12IntrusivePtrINS3_20ReputationPropertiesEEE) +STUB("rf5CXHDbDCo", _ZN7WebCore9HTMLNames6mapTagE) +STUB( + "rf6OfStP64w", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEeqERKS9_) +STUB( + "rf7CybcoNUk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEneERKS9_) +STUB( + "rf7WNnHHGRg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEaSERKS7_) +STUB( + "rf9PcENfA6E", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEEiRNS2_10LibContextEPT_m) +STUB( + "rfDI3Kjs5+0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "rfHKNYOsamo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEE7add_refEv) +STUB("rfMiDDs1bgE", rgctx_fetch_trampoline_rgctx_104_p) +STUB("rfNM54bi+fc", _ZNK3JSC7JSValue19synthesizePrototypeEPNS_14JSGlobalObjectE) +STUB( + "rfW3TNaZ0HE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEED1Ev) STUB("rfYTE+X39pY", sceVorbisDecTimeSeekLap) +STUB("rfYnuMJmVOk", mono_allocator_stats) STUB("rfjRhTDHEmA", scePerfTraceIoGetEntry) STUB("rfnPKQVKc4A", sceFaceEstimatePoseRegion) +STUB("rfreexWs9f4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEdeEv) +STUB( + "rfvVGIjOVeM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEE8copyFromERKS9_) STUB("rfw6ufRsmow", sceNgs2StreamQueryInfo) +STUB("rfyVBEB1HTo", _ZN7WebCore12ChromeClient13isViewVisibleEv) +STUB( + "rfz+5lVAvQE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEE3getEv) +STUB("rfzMKpgI32U", u_parseMessageWithError_67) +STUB("rg4TnGAAWYI", _ZN13MsvMetaEditor11addMetaDataEjPtmtt) +STUB("rg5JEBlKCuo", basename) +STUB( + "rgBGXHwbMs4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEeqERKS9_) +STUB("rgE75-SQ+lU", hb_buffer_set_unicode_funcs) STUB("rgLjmfdXocI", sceAjmInstanceSwitch) +STUB( + "rgRPLEAlMLw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEEC2ERSA_) +STUB( + "rgUdN65beM0", + _ZThn16_N9Inspector22InspectorDebuggerAgent15searchInContentERN3WTF6StringERKS2_S5_PKbS7_RNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol12GenericTypes11SearchMatchEEENS1_13DumbPtrTraitsISE_EEEE) +STUB("rgZcR0TudEU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEE7get_refEv) +STUB("rgdarYdQmtc", _ZN12video_parser19_isValidArtworkSizeEj) +STUB("rgjZEBFXsiM", _ZN3sce7Toolkit2NP2V28Matching6WorldsD2Ev) STUB("rgrhz3d6cx8", sceSystemLogger2DeliverySetBatchDeliveryEvent) STUB("rgtMCOpyBSc", sceVdecswSetDecodeOutput) +STUB("rgtbpTzx0RA", _ZN3sce2np4UserC1ERKS1_) +STUB("rgxoxDaIKlo", mono_aot_Sce_Vsh_KernelSysWrapperunbox_trampoline_addresses) +STUB("rh+nzKy2ij4", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setMixerMute) +STUB( + "rh1AbkB83ds", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE3endEv) +STUB( + "rh3U-+A2IRE", + _ZN3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession28unsetSpectatorJoinableStatusEv) +STUB("rh7L-TliPoc", _ZNKSt5ctypeIwE5do_isEsw) +STUB( + "rh8SgOAh5+w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB("rh8UcxwmPQQ", mono_aot_Sce_Vsh_Np_Webapijit_code_end) +STUB( + "rhAMPRI6d+8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE6resizeEj) +STUB("rhGXoNPv81s", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V15GroupEEaSERKS7_) +STUB( + "rhJAq1MYySE", + _ZN9Inspector21HeapBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("rhJg5tjs83Q", _ZNSt15_Num_float_base15has_denorm_lossE) +STUB( + "rhLNFnXBSyw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEdeEv) +STUB("rhQEi8V9zdU", mono_aot_System_Xmlunbox_trampolines) +STUB( + "rhTQAuHRcQQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEED2Ev) +STUB("rha5LcpZjAI", WKSecurityOriginGetTypeID) +STUB("rhaZxqryYz4", rgctx_fetch_trampoline_rgctx_104) +STUB("rhd-8JSGyIE", _ZN3JSC8Bindings13RuntimeObject10invalidateEv) +STUB("rhexhX2SxP8", _ZN8meta_gen13JpegRetriever19JPEGPROM_SEC_OFFSETE) STUB("rhhKDT2zXiU", sceNetSocketInternal) +STUB( + "rhkv2NERtz4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEE5resetEPS7_) +STUB( + "rhl7OJaEv9g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEED2Ev) +STUB("rhm50omLdyM", _ZN12video_parser7cVpUtil16convCodeToStringEPKNS0_11NameTable_tEiPPc) +STUB("rhmQ142bvvU", glVertexAttribI4uiv) STUB("rho9DH-0ehs", sceAudioOutSetVolumeDown) +STUB( + "rhocsCWUmyM", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("rhqf6JmhtHg", curl_mime_encoder) +STUB( + "rhsu5DQzwFo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEEptEv) +STUB("rhsxEVJjABA", uregex_setStackLimit_67) +STUB( + "rhxXeFerKNw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEE3getEv) +STUB( + "rhzoiNj6-iY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("ri+pvPRpw38", _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities5Error11reasonIsSetEv) +STUB( + "ri-BvRek9mw", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12unsetString4Ev) +STUB("ri0p0jQDuIQ", _ZN3sce7Toolkit2NP2V27Ranking17GetGameDataResultaSERKS4_) +STUB("ri40vr7nItM", uhash_setKeyDeleter) +STUB( + "riAOQbKXbo0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEE3getEv) +STUB("riBxNiKLvI0", + _ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE5_InitERKSt8_Locinfo) +STUB("riDNIcSKwRI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEE3getEv) +STUB( + "riHguZ4vaiE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEEC2ERKSA_) +STUB("riLIfC20s1A", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product9getRatingEv) +STUB( + "riNt4W6RwHw", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessionsC1ERS5_) STUB("riPQfAdebHk", sceHmdInternal3dAudioClose) +STUB("riPS1H4Vcag", mono_aot_Sce_Vsh_PsnUtilunbox_trampoline_addresses) +STUB("riQ3gSGNDIE", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEEdeEv) +STUB( + "riRQWy-NFlM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB( + "riRRlDNL3do", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEE7reserveEi) +STUB("ribM4Kso22Q", mono_custom_attrs_from_property) STUB("ridDhAPwj4c", sceHttpCacheCreateRequest) +STUB("riets0BFHMY", _LXp_mulh) +STUB( + "rirB0VsOz1Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEED2Ev) +STUB("rirCdpvtqCg", ulocdata_getNoSubstitute_67) +STUB("ris-XwSqzyM", _ZNK7WebCore14ScrollableArea20contentAreaWillPaintEv) +STUB("ritvwrITiVY", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE5emptyEv) +STUB( + "rixKLVgTH4o", + _ZN3sce7Toolkit2NP6Trophy9Interface22trophyRetrieveProgressEPNS1_9Utilities6FutureI19SceNpTrophyGameDataEEbi) +STUB( + "riyMPF0LADo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEC2EPKS8_) +STUB( + "rizWF1Dm8zI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEEdeEv) +STUB("rj+CqR+ZfHQ", _ZN3sce7Toolkit2NP2V28Commerce8ProductsC1ERKS4_) +STUB("rj2swQ9qAW0", _ZN3sce7Toolkit2NP2V27Session9SessionId8deepCopyERKS4_) STUB("rjAd4nCY4DM", sceHmd2ReprojectionClearUserEventEnd) +STUB("rjBYoBJ59xQ", _ZN3JSC12GlobalJSLockD1Ev) +STUB("rjDyMB27L-U", + _ZNK7Nicosia10Animations25hasActiveAnimationsOfTypeEN7WebCore18AnimatedPropertyIDE) STUB("rjEuM0nb8xg", sceKernelInternalMemoryGetAvailableSize) +STUB("rjEuYA3xLDM", udata_close_67) +STUB("rjFtynMQeHU", _ZN7WebCore9JSDOMRect15subspaceForImplERN3JSC2VME) +STUB("rjGjpDDPp-U", _ZN3sce2Np9CppWebApi7Matches2V117LeaveMatchRequest10getPlayersEv) STUB("rjICp0cpHJM", sceAvSettingGetLoopbackBuffer) +STUB( + "rjSFBXRNkp0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE5clearEv) STUB("rjU70FGcXDw", sceTextToSpeechTermImpl) STUB("rjXFQQQrE+k", scePatchCheckerTerminate) +STUB("rjXWL1hs2qg", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product13ageLimitIsSetEv) STUB("rjak2Xm+4mE", scalbf) STUB("rjatoAGW+Fo", sceNpPushSetNpCommunicationId) +STUB( + "rjcZp+J5HnM", + _ZN7WebCore21NetworkStorageSession10setCookiesERKN3WTF6VectorINS_6CookieELm0ENS1_15CrashOnOverflowELm16EEERKNS_3URLESA_) +STUB( + "rjgPyUvoK90", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEC2EPKS8_) +STUB("rjhJTHdhXe8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEC2ERS7_) +STUB("rjm9e3FB2HM", _ZN4Manx19Curl_cookie_cleanupEP10CookieInfo) +STUB("rjnCmUev3aU", u_strcspn) +STUB("rjo4jKFUJ-8", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12Notification14NetStateChangeEED1Ev) +STUB( + "rjpsbrvcyAg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEppEi) +STUB( + "rjrYM604tow", + _ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors29unsetValidationConstraintInfoEv) +STUB("rjtDiEcehAE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEEC2Ev) +STUB( + "rk9KW+tJ2Dk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEeqERKS9_) +STUB("rk9Yk81l3Bc", _ZN7WebCore11toDisplayP3ERKNS_5SRGBAIfEE) +STUB( + "rkB4-3GrB6o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE8pushBackERKS8_) +STUB( + "rkMAfteUvoc", + _ZN7WebCore20UserGestureIndicatorC2EN3WTF6RefPtrINS_16UserGestureTokenENS1_13DumbPtrTraitsIS3_EEEENS3_12GestureScopeENS3_21IsPropagatedFromFetchE) +STUB("rkRNkU97Aso", uprv_max_67) +STUB("rkUyPX8peTs", JVM_GetVersionInfo) STUB("rkV5b-p490g", sceShellCoreUtilGetEffectiveTotalSizeOfUserPartition) +STUB("rkWOabkkpVo", _ZTIDs) +STUB( + "rka3Yxo7XNM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEEC1EPS8_PNS2_10LibContextE) +STUB( + "rkhnnoxLYog", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115SearchConditionEEEEEE5resetEPS9_) +STUB( + "rkjl5Iy63nU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEaSERS7_) +STUB("rkmHtq6GqNs", _ZN7WebCore11DisplayList11SetLineJoinC1ENS_8LineJoinE) +STUB( + "rkrSPV8K7n4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("rkw4Bgve0G4", il2cpp_thread_current) +STUB("rkzlx4vFM3c", qR3) +STUB( + "rl+JRhYDpDc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEE8pushBackERKS8_) +STUB( + "rl3FH9p5oWc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEC1ERKS7_) +STUB( + "rl41YEuESIE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE21intrusive_ptr_add_refEPS9_) +STUB("rl7aW17qQb8", FTA_Export_Module_otvalid) +STUB("rlDZ+e9CEPA", _ZN3sce7Toolkit2NP2V28Commerce7Request25DisplayDownloadListDialogC2Ev) +STUB( + "rlEE66C+eF0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEE7get_refEv) +STUB("rlFTieoEoms", _ZN3sce7Toolkit2NP2V210Tournament12GenericEventD2Ev) +STUB("rlH9KhEJp2c", _ZNK7WebCore19ResourceRequestBase17redirectedRequestERKNS_16ResourceResponseEb) +STUB("rlJ57qgSdUs", + _ZN3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayer8fromJsonERKNS_4Json5ValueE) +STUB("rlJVOpAFI38", _ZN3sce7Toolkit2NP2V27Ranking8TempRank8deepCopyERKS4_) +STUB( + "rlJagN4Hsmk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEEdeEv) +STUB( + "rlK9Km9ok-M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEaSERKS9_) +STUB( + "rlLGYadKFAQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEED2Ev) STUB("rlM6QokMGkY", scePlayReadyProfileClear) +STUB("rlMRvh71O1c", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi21ParameterToLeaveMatchaSERS5_) +STUB("rlMTyDizfms", _ZN7WebCore11MediaSampleD1Ev) +STUB( + "rlNbSYZ3FV0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE21intrusive_ptr_add_refEPS9_) +STUB("rlOCpNWBbhQ", _ZNK7WebCore14JSWebAnimation7wrappedEv) +STUB("rlTwz32Y4kY", _ZNK7WebCore13ScriptElement13scriptContentEv) +STUB( + "rlVYydvU7Jk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE3endEv) +STUB( + "rlVgJ-S05Gs", + _ZN3sce2Np9CppWebApi7Matches2V129GetMatchDetailResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_22GetMatchDetailResponseEEE) +STUB( + "rlYgMXVrhtg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEE5resetEPS9_) +STUB("rlZA2fu7noY", + _ZN3JSC14JSGlobalObjectC2ERNS_2VMEPNS_9StructureEPKNS_23GlobalObjectMethodTableE) +STUB("rlfaE8TqUJI", NetCtlRegisterCallbackNative) +STUB( + "rlk7TMgefJE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("rlnpPNMzl70", _ZNK7WebCore11MediaPlayer28supportsAcceleratedRenderingEv) +STUB("rlrP1MrtN3k", _ZN7WebCore17snapshotFrameRectERNS_5FrameERKNS_7IntRectEj) +STUB( + "rlsVqmIwWSM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEppEi) +STUB( + "rltTgrrn5yc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEEC2ERKSA_) +STUB( + "rltzlTlIBcs", + _ZN3sce7Toolkit2NP8Matching9Interface15sendRoomMessageEjSbIcSt11char_traitsIcENS1_15AppSTLAllocatorIcEEEPtji) +STUB("rlz-6+QTzIM", _ZN7WebCore11DisplayList10StrokePathD1Ev) +STUB( + "rlzNo1ur5aE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEED1Ev) +STUB("rm+OcISAwjc", _ZN7WebCore11DisplayList4ItemD0Ev) +STUB("rm+m2vE9Emg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEEC2Ev) +STUB( + "rm28pCFLmfc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEixEm) +STUB("rm2zzbZ6HjM", _ZN9pathscale13set_terminateEPFvvE) +STUB("rm4CXVezfrY", __asan_stack_malloc_6) +STUB("rm4riMbfxC8", _ZN3sce7Toolkit2NP2V28Commerce14ProductDetails20RATING_SYSTEM_ID_LENE) STUB("rm5-jOxSZzQ", sceKernelWriteModifyMtypeProtectWithGpuMaskIdCommand) +STUB( + "rm8Ic-iS6O8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE5emptyEv) +STUB("rmT-cQv3G4I", WKWebsiteDataStoreEnableCustomNetworkProxySettings) +STUB("rmUbfy+ZWi4", uhash_equalsScriptSet_67) +STUB("rmZhkWIZkNo", _ZN7WebCore11DisplayList8Replayer6replayERKNS_9FloatRectEb) +STUB("rme+Po9yI5M", _ZNSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1Em) STUB("rmgXsZ-2Tyk", sceAudioInInputs) STUB("rmh6gdjzO-4", sceFsMountLwfs) +STUB( + "rmkLUJBSeOI", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions28getxPsnAcceptPlatformNamePs5Ev) +STUB("rmlzcfJb1f4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEEdeEv) +STUB( + "rmoAoVWmHSE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEC2EPS8_) +STUB( + "rmowFcK6Bk8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("rmqFEa6z7-Y", expand) +STUB( + "rmsKHBS7lAw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "rmwVnzaCcZE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("rmx9e1dVgfE", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V18RelationEEC2EPS6_) +STUB("rn02uWMPkFA", _ZN3sce2Np9CppWebApi7Matches2V111TaskFactory7destroyEPNS3_4TaskE) +STUB( + "rn2EM02Bh8s", + _ZN3sce2Np9CppWebApi7Matches2V120RemovedPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_13RemovedPlayerEEE) +STUB("rn3z+5BtLCI", JVM_ConstantPoolGetFieldAt) +STUB( + "rn6YkgiKLOs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE5emptyEv) +STUB( + "rn7WSTzuHew", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEC2EPS7_PNS2_10LibContextE) +STUB( + "rn7gm+PXjo8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEC1EPKS8_) STUB("rn7ot06ElIs", sceUlpMgrRecv) +STUB("rn8x6aBfveM", _ZN3JSC8Debugger13pauseIfNeededEPNS_9ExecStateE) STUB("rnEhHqG-4xo", sceUserServiceGetAccessibilityChatTranscription) +STUB("rnKp-QI6kXU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V124RequestCooperativeResultEEixEm) +STUB("rneEgXU3tg4", + WKWebsiteDataStoreSetResourceLoadStatisticsShouldBlockThirdPartyCookiesForTesting) +STUB( + "rnghqL6qRKs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEEaSERKSA_) STUB("rnjsFB0Fqps", sceTsGetRepresentationCount) +STUB( + "rnpOkaX2cXA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE21intrusive_ptr_add_refEPS9_) STUB("rnvDWnAiM2M", sceSystemServiceUsbStorageRegisterCallback) +STUB("rnvDgF681Mw", JVM_ConstantPoolGetTagAt) +STUB("rnxaQ+2hSMI", _Putfld) +STUB( + "rnxz+p6oBok", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("rnzbm5jZVY0", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_19ProductInfoDetailedEEeqERKS4_) +STUB("ro+rO6YYRb8", ucnv_getInvalidChars_67) STUB("ro1JFV7JR+E", sceHmdReprojectionSetUserEventToStart) +STUB("ro2UeQegoQs", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEE5resetEPS6_) +STUB( + "ro2qr+KXFD4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEneERKS9_) +STUB( + "ro4CUUlapfI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "ro5de0xt80E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "ro6CCSaZ4no", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEED1Ev) +STUB("roAJqGa0EE8", WKWebsiteDataStoreStatisticsHasLocalStorage) +STUB( + "roGeoRmquEI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEE3getEv) STUB("roHN4ml+tB8", sceHmdInternalSetBrightness) +STUB( + "roMT+HhG-ow", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEmmEv) +STUB("roRdjnBqqqY", _ZN4IPMI4impl10ServerImpl13removeSessionEPNS0_11SessionImplE) STUB("roUQwCYYegE", sceShellCoreUtilNotifyBgmCoreTermination) +STUB( + "roUWFGL+rYY", + _ZNK3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody15maxPlayersIsSetEv) +STUB("roYcJbeb5oE", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session14InvitationDataEE5resetEv) +STUB( + "roehuUw9Ako", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "roitq0ZGXmY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE5clearEv) +STUB( + "rooLmhPE+C8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC1ERKSA_) +STUB( + "rotPo546Hos", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("rozCRBSzSz8", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_26EventInformationListDetailEE3getEv) +STUB("roztnFEs5Es", _ZNKSt7collateIwE10do_compareEPKwS2_S2_S2_) +STUB( + "rp1D8Eomcm4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEED2Ev) +STUB( + "rp3yXkWOkWg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) STUB("rp4DB+ICfcg", sceUserServiceSetPbtcSundayHoursEnd) +STUB("rp9ESANSaSs", JSObjectSetPrototype) +STUB( + "rp9z8jO+ywY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "rpBLK2hPM7M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE7popBackEv) +STUB("rpHeawAwasE", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE6resizeEj) +STUB( + "rpMdrE4mZcw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEEaSERSA_) +STUB( + "rpPmeQFAsVI", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS5_INS7_9RecordApi30RecordLargeDataResponseHeadersEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISE_SF_EE) +STUB( + "rpXv3V-R4lo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "rpfqWEAxpeY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEC2EPS6_PNS2_10LibContextE) +STUB("rpl4rhpUhfg", _Atomic_fetch_xor_2) +STUB("rpl8meIq+K8", _ZN4IPMI4impl10ServerImpl18removeSessionByKeyEjPPNS0_11SessionImplE) +STUB( + "rpm4HK5qEbk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "rpmRha1Eq9s", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE11getResponseERS4_) +STUB( + "rppaWIPD9nA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEppEv) +STUB("rpsD9ynfjc0", _ZN3WTF13dumpCharacterERNS_11PrintStreamEc) +STUB("rpv+luk5Ye0", u_toupper) +STUB("rq-lql9vg6I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEC2Ev) +STUB("rq2cjXgDpDE", mono_set_allocator_vtable) +STUB( + "rq2fY5tAOT4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEEptEv) +STUB( + "rq73eO5xSRc", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "rq7XkQEWG3U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE6resizeEj) +STUB( + "rq88Q+VflsI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEEaSERSA_) +STUB( + "rq8Zo5Ehza4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("rq8uO9k2PrA", _ZN4Manx11BundleOrbis4loadEPKc) +STUB("rqAXVNqYPZg", jpeg_fdct_5x10) +STUB( + "rqJY3cug9do", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE10setContextEPNS2_10LibContextE) +STUB( + "rqLKOatBkvs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEC1Ev) +STUB("rqUpcB-Eib0", _ZN7WebCore8SVGNames16patternUnitsAttrE) +STUB("rqYK96mLBMk", _ZN7WebCore5ColoraSEOS0_) +STUB( + "rqbWev706rs", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_33ActivityFeedSharedScreenshotStoryEE10deallocateEPS3_m) +STUB("rqc7P6EDCsY", _ZNK3sce2Np9CppWebApi14IdentityMapper2V311PsnWebError8getErrorEv) STUB("rqkh2kXvLSw", sceNetCtlRegisterCallbackIpcInt) STUB("rqwFKI4PAiM", sceKernelAprWaitCommandBuffer) +STUB( + "rqx2prSJ36M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEC1EPNS2_10LibContextE) +STUB("rqz1tQY+Qs4", _ZN3sce7Toolkit2NP15AppSTLAllocatorI16SceNpTusVariableEneERKS4_) +STUB( + "rqzJKEgeR0s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEptEv) +STUB( + "rr-wpm2m3w4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("rr0J1uqeWm0", mono_aot_Sce_Vsh_UserServiceWrapperjit_got) +STUB("rr1ZXuEFbNc", mono_aot_Sce_Vsh_Np_RifManagerjit_got) +STUB("rr203gRHGls", utf8_prevCharSafeBody_67) +STUB("rr2G6WWH3Gk", _ZN3JSC12RegExpObjectC2ERNS_2VMEPNS_9StructureEPNS_6RegExpE) +STUB("rr4OOqEvgIQ", mono_get_exception_null_reference) +STUB("rr8g0GkA+GE", WKViewValueChangedForPopupMenu) +STUB("rrC1l0vNVBE", _ZN3sce7Toolkit2NP2V26Friend12Notification16FriendlistUpdateC1ERKS5_) +STUB("rrCKHsGoQZo", _ZN12Mp4RetrieverD0Ev) STUB("rrH0wWxGdLQ", sceAppInstUtilAppGetAddcontListTotalSize) +STUB( + "rrHinHqA6Z0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEeqERKS9_) +STUB( + "rrPdDt+BrFs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEmmEv) +STUB( + "rrQ0tlR5q+I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "rrcsO2ML0kk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEmmEv) +STUB( + "rrdQH2oeLjI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "rre6bvImiZU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE13getLibContextEv) +STUB("rreWDZ-xXTg", _ZN3JSC7Symbols16everyPrivateNameE) +STUB("rrgxakQtvc0", isgraph) +STUB("rrh3-CBqrZQ", _ZNK7WebCore19ResourceRequestBase3urlEv) +STUB("rrhx6wXU41g", _ZN3WTF9BitVector9mergeSlowERKS0_) STUB("rriXMS0a7BM", sceUserServiceSetGlsCameraSize) +STUB( + "rrjAFQlNdPo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEeqERKS9_) +STUB("rrjVP8VjeBk", mono_aot_I18Nplt) +STUB("rrkqRMuld-k", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19BandwidthD1Ev) +STUB("rrmN7i-Wx-c", _ZN7WebCore18EventLoopTaskGroup14queueMicrotaskEON3WTF8FunctionIFvvEEE) +STUB("rrnAgjO-pv0", + _ZN7WebCore19JSDOMMatrixReadOnly9serializeERN3JSC14JSGlobalObjectERS0_RNS_17JSDOMGlobalObjectE) +STUB( + "rrqNi95bhMs", + _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE8get_timeES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm) +STUB( + "rrvcPR0oei0", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody37comparedLastUpdatedUserAccountIdIsSetEv) +STUB( + "rs-e++Qw4TM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "rs-gHEqtoyo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEC2EPNS2_10LibContextE) +STUB("rs2jXKJDyLE", _ZNK3sce2Np9CppWebApi14IdentityMapper2V312AccountIdMap13onlineIdIsSetEv) +STUB("rsA9ntEeoYE", _ZN3sce7Toolkit2NP2V212EventsClient7EventIdC2Ev) +STUB("rsCnY+W+Tio", _ZN12video_parser5vpcom6StringC1ERKSbIwSt11char_traitsIwESaIwEE) +STUB( + "rsFyYWQDPrM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "rsHukkzU3NU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE11getResponseERS6_) +STUB( + "rsIpdOpbj04", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "rsJ-E9td5SU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEeqERKS9_) +STUB("rsS5cBMihAM", + _ZNSt13basic_filebufIcSt11char_traitsIcEE7seekposESt4fposI9_MbstatetENSt5_IosbIiE9_OpenmodeE) +STUB( + "rsT5MdHF4zw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEEC1ERKSA_) +STUB( + "rsWSWqF9OrE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("rsX-wqqmCbw", _ZN7WebCore11DisplayList20DrawTiledScaledImageD0Ev) +STUB("rsYdKipTI5Y", YGPositionTypeToString) +STUB("rseyJKAQpjw", _ZN7WebCore7Element14setAttributeNSERKN3WTF12AtomicStringES4_S4_) STUB("rsl9KQ-agyA", sceUsbdGetDevice) +STUB("rsnmpSOdNzQ", _ZN3JSC9CallFrame15isAnyWasmCalleeEv) +STUB("rsqqpUwcsQY", __libunwind_Unwind_Resume_or_Rethrow) +STUB( + "rsr8jYN+ZHo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEmmEv) STUB("rsrNnCwuy4w", sceDiscMapBitmapInfoServerStart) +STUB( + "rsy6udpHdu4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEC1Ev) +STUB( + "rsy9uL8d64A", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions28hasxPsnAcceptPlatformNamePs5Ev) STUB("rt-WeUGibfg", sceUsbdHandleEventsLocked) +STUB("rt2-QhL5nEw", _ZN3sce7Toolkit2NP2V210Tournament7Request8GetEventD2Ev) +STUB("rt2P9NlhEb8", _ZN3JSC7Symbols21Int32ArrayPrivateNameE) +STUB("rt6X0CPa8hA", _ZN4IPMI4impl11SessionImpl12getSessionIdEv) STUB("rt8sKepvhKI", sceAppInstUtilResumeInstall) +STUB("rt9GX+642U0", WKPreferencesSetMediaPlaybackRequiresUserGesture) +STUB( + "rtAG3MYqzkg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEED2Ev) +STUB("rtBENmz8Iwc", __divmodsi4) +STUB( + "rtCnug1TujU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "rtFhrkMbmTk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE5clearEv) +STUB("rtJbtl9z910", _ZN7WebCore13JSDOMRectList7destroyEPN3JSC6JSCellE) +STUB("rtN25hsMVv0", _ZN7WebCore9HTMLNames19ongesturechangeAttrE) +STUB( + "rtR3xPFVNMs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "rtTZJldifw4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("rtV7-jWC6Yg", log) +STUB("rtWWBSqgRzo", _ZN3WTF21RefCountedLeakCounter9decrementEv) +STUB("rtYUAxh2gSA", _ZN7WebCore7Element12setOuterHTMLERKN3WTF6StringE) +STUB("rteGfmnXhLU", _ZN3sce7Toolkit2NP2V26Friend7FriendsD1Ev) +STUB("rtfm1OQgEK8", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEEmmEv) +STUB( + "rtgUuGTer0E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEEC1ERKSA_) +STUB("rti25OtlE7w", _ZNK3sce2np13JsonArrayImpl17itemArrayAddValueEPNS1_9ItemArrayEPKNS0_9JsonValueE) +STUB("rtjxnvq9Qwk", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEEC1Ev) +STUB("rtk5rcqrLck", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEEcvbEv) +STUB( + "rtuHtSOEwtU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "rtwTzpkRdrM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "rtxV26lGxUU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEEC1EPS9_PNS2_10LibContextE) STUB("ru8cb4he6O8", sceGnmSqttStartTrace) STUB("ruF+U6DexT4", sceUserServiceGetNpLanguageCode2) +STUB( + "ruK0VauMjyw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("ruMrqQQNO0Y", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_25ReceivedInGameDataMessageEE3getEv) +STUB("ruN8WLy404c", YGNodeGetChildCount) STUB("ruNe-FgCzO8", sceContentSearchGetMetadataValue) +STUB("ruP-T7+cy1g", _ZN7WebCore9Scrollbar9mouseDownERKNS_18PlatformMouseEventE) STUB("ruR8rglNPvE", scePerfTraceAprNameGetInfo) STUB("ruS-boGA0zs", sceBgftServiceIntDownloadSetStartState) +STUB( + "ruVTcANTQmI", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBody10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_25ResponseGameSessionPlayerEEEEE) STUB("ruZ9hhQ8oUk", pthread_getstack_np) +STUB( + "ruZjtsKF5OE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEplEm) +STUB("ruZtIwbCFjk", _ZTVSt7collateIcE) +STUB("ruaWrFPIjFw", _ZN7WebCore18JSHTMLInputElementD2Ev) +STUB("ruavD39yI2Q", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V110Reputation15getPerFranchiseEv) +STUB("ruebbI-LimI", mono_metadata_load_generic_param_constraints_checked) +STUB( + "ruhMvhzt+Ow", + _ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead21getSupportedPlatformsEv) +STUB("ruibZqJ0i7A", _ZNSt9basic_iosIwSt11char_traitsIwEE5imbueERKSt6locale) +STUB("ruj4nqADjDM", _ZN7WebCore9HTMLNames5trTagE) STUB("rukSIqiQ-CQ", sceM4aacEncClearContextEx) +STUB("rul24vLhE0Q", WKUserContentURLPatternCopyHost) +STUB( + "rulTaTjK3NE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE8capacityEv) +STUB( + "rup7cnHgWWs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE5beginEv) +STUB( + "rusVOPM1oF4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEC2ERS7_) +STUB("ruvLq5s4ZzU", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13unsetInteger4Ev) +STUB( + "ruwML54fK20", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE21intrusive_ptr_add_refEPS9_) +STUB("ruyD9QkP8dI", fchown) +STUB("rv0psaVHnf8", _ZNK3sce2Np9CppWebApi11Matchmaking2V110UserTicket11statusIsSetEv) +STUB( + "rv1uHavZUgo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEdeEv) +STUB( + "rv3rnyOdKTI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEEaSERKSA_) +STUB("rv8Kv-PnXJ4", _ZN7WebCore22MutableStylePropertiesD2Ev) +STUB( + "rv8xU4hWLto", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) STUB("rvBSfTimejE", scePlayGoGetInstallSpeed) STUB("rvCywCbc7Pk", sceVrTrackerCpuPushMarker) +STUB( + "rvG6vxXMQBE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE5emptyEv) +STUB("rvJ+IqRSAT4", _ZNK3sce2Np9CppWebApi7Matches2V120ReportResultsRequest19npServiceLabelIsSetEv) +STUB( + "rvLcnANRjp4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE21intrusive_ptr_add_refEPS9_) +STUB("rvNWRuHY6AQ", _Loctab) +STUB( + "rvNbBjvBKIw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEE5resetEPS9_) +STUB( + "rvNfpNv5Uys", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEixEm) +STUB( + "rvQ3iCpGgC8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE5emptyEv) +STUB( + "rvRsmQ0vaPM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEppEv) +STUB("rvWqWoXSmYo", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_22FriendsRankInformationEE17getAdditionalInfoEv) +STUB( + "rvXpEW0WUIs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE5beginEv) +STUB("rvY1o0UBxaY", _ZN3sce3pss5orbis9framework11PsmArrayObj9ToPointerEv) +STUB( + "rvfkT3l5o9A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEppEv) +STUB("rviP9C2IZfo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEED1Ev) +STUB("rvjIztKWq64", _ZN7WebCore18TextureMapperLayer20setContentsTilePhaseERKNS_9FloatSizeE) +STUB("rvkeBTqelqc", + _ZNK3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer16customData1IsSetEv) +STUB( + "rvwptoNh5bw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEeqERKS9_) STUB("rvxc2gSxsRA", sceRnpsAppMgrDestroyBundle) +STUB("rvyO0fzB-II", _ZN3sce7Toolkit2NP2V26Trophy7Request19GetUnlockedTrophiesD2Ev) +STUB( + "rvyRpLkUsAo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEC1EPS8_) +STUB("rvz8xYxhMW0", _ZN3sce2np7RingBuf4dtorEv) +STUB( + "rw-45eQnZuw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE6resizeEj) STUB("rw35hzXVZgU", sceFsInitUmountLwfsOpt) +STUB("rw6zVhgCPB4", _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOffer13isInitializedEv) +STUB("rwC+kk9Ir-0", _ZN7WebCore7Element10offsetLeftEv) +STUB("rwJsqFwpr5Q", _ZN7WebCore15DOMWrapperWorld13clearWrappersEv) STUB("rwM99K5fzIk", sceNpPush2UnregisterDataType) +STUB( + "rwTRDgH3nrM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEE5resetEPS9_) +STUB( + "rwXcAOpCnAA", + _ZN9Inspector21HeapBackendDispatcher15getRemoteObjectElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "rwZ6hiWrmyY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEED2Ev) +STUB("rwcYBorkaIo", _ZN7WebCore17JSHTMLLinkElement9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("rwf3LEbBaKE", uprv_fmod) +STUB("rwfMfMQl21M", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE3endEv) +STUB("rwjfy+8+84c", _ZN3JSC22EdenGCActivityCallbackD1Ev) +STUB("rwnTeqYe0bY", SpeechCancel) +STUB("rwovEv6eKGQ", uprv_isNegativeInfinity) +STUB("rwq1iArT-Hc", __sanitizer_get_estimated_allocated_size) +STUB("rwrMuecizqA", __ubsan_handle_function_type_mismatch_v1) +STUB("rwy+lzkDNBc", _ZN7WebCore13StyleRuleBase7destroyEv) +STUB( + "rwzEqYi8oW0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEE7add_refEv) +STUB("rwzelteuTd0", uregex_getTimeLimit_67) +STUB("rx1xb6jbJ9g", fuse_reply_buf) +STUB("rx2qbyMARn8", WTFLogChannelByName) +STUB( + "rx3TxXB1G94", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE4initEv) +STUB( + "rx3a9I1GwWw", + _ZN3sce2Np9CppWebApi7Matches2V118RequestTeamResults20setTeamMemberResultsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_23RequestTeamMemberResultEEEEE) +STUB( + "rx4U+ccwKA0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE10setContextEPNS2_10LibContextE) +STUB("rx6FnnUyW5I", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V112TicketStatusEE7popBackEv) +STUB("rx6wK+L8tIE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEED1Ev) STUB("rx7EcAS2ARk", sceUsbStorageRequestMapWSB) +STUB("rx98IFa3Nq8", WKViewReplyJavaScriptConfirm) +STUB("rxAx2s8-EAk", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEED1Ev) +STUB("rxClJyOYLPo", mono_metadata_compute_size) +STUB( + "rxFpCl9ua-w", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEcvbEv) +STUB( + "rxTnTs7PV7Q", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_18SessionInformationENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB( + "rxXO-ua4smg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEmmEi) STUB("rxXvAxEbq8I", sceGpuTraceStop) +STUB("rxZjrt0XJUc", WKWebsiteDataStoreRemoveAllFetchCaches) +STUB("rxblJbgGoLQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEE5resetEPS6_) +STUB( + "rxe7HVaQePA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEEC1ERSA_) STUB("rxi1nCOKWc8", sceUsbdInterruptTransfer) +STUB( + "rxkIurXISz8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEE11release_refEv) +STUB( + "rxls8KHB5HA", + _ZN23sceMetadataReaderWriter13ParserManager14getParserInfosEjPSt6vectorIPNS_10ParserInfoESaIS3_EE) +STUB( + "rxqCyXbOi3Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEE5beginEv) +STUB("rxtuiZ2wS88", _ZN3sce7Toolkit2NP2V28Commerce7Request13GetCategoriesC2Ev) +STUB( + "rxxPeIYD3fs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEED1Ev) STUB("ry+I3fgrkfE", sceKernelWriteEventQueueOnCompletionCommand) +STUB( + "ry17VPOU1iw", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSD_ESD_) +STUB("ry19IKublQw", _ZN3sce7Toolkit2NP2V210Tournament7Request18GetRegisteredUsersC2Ev) +STUB("ry52QkQeAWo", cairo_image_surface_create) +STUB("ryA0BvjZKrY", _ZN7WebCore18pluginTooSmallTextEv) +STUB("ryCxtgjNuU4", _ZN3JSC18GCActivityCallback11didAllocateEm) +STUB( + "ryE3pNcC6PM", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10setString6EPKc) +STUB( + "ryFHGxystJQ", + _ZN7WebCore6Editor13rangeOfStringERKN3WTF6StringEPNS_5RangeENS1_9OptionSetINS_14FindOptionFlagEEE) +STUB( + "ryKbtnTBR+4", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountId11setonlineIdERK13SceNpOnlineId) STUB("ryPlnDDI3rU", sceFontGetRenderScaledKerning) +STUB("ryT1ZUGBCxI", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getInteger2Ev) +STUB( + "ryTnjFTGn30", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEED1Ev) +STUB("ryUXM2DuqT4", _ZNK7WebCore19ResourceRequestBase7isEmptyEv) +STUB( + "ryUke378RyY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE5eraseENS2_13ConstIteratorIS5_EERS8_) +STUB("ryUxD-60bKM", _ZnwmRKSt9nothrow_t) +STUB( + "ryYp3mWn46Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEC2ERS7_) +STUB("ryZMo6agV9Q", + _ZN3sce2Np9CppWebApi12Leaderboards2V127RecordLargeDataResponseBodyC2EPNS1_6Common10LibContextE) +STUB( + "ryZWTziZxF0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB( + "rycK0NvlqVU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "ryfvL3pfhqM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("ryl2DYMxlZ0", _ZNSt13basic_filebufIwSt11char_traitsIwEE7_UnlockEv) +STUB("ryl5QyVQL+o", shared_memory_area_map) +STUB("rymOrz6HZAs", psl_load_fp) +STUB("ryykbHJ04Cw", + _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewx) +STUB("ryyn6-WJm6U", nexttowardl) +STUB( + "rz57O7bbnPU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE7popBackEv) +STUB( + "rz5k8OHfefQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("rzCicCsOcPg", WKPageConfigurationGetRelatedPage) STUB("rzEsC81gurc", sceKernelSetGPI) +STUB("rzH0laaVCEU", _ZN3sce7Toolkit2NP2V211SharedMedia7Request9GetVideos13MAX_PAGE_SIZEE) +STUB("rzIWh7FJnmU", FT_Stroker_GetCounts) +STUB("rzMyjrfU6Ag", WKWebsiteDataStoreConfigurationSetStaleWhileRevalidateEnabled) +STUB( + "rzQKjz1S65c", + _ZN3sce7Toolkit2NP8Matching9Interface12leaveSessionEPKNS1_18SessionInformationEPNS1_9Utilities6FutureIiEEb) +STUB( + "rzZCoZ+maG8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE8copyFromERKS9_) +STUB("rza9NDv-OoI", WKPageReloadWithoutContentBlockers) +STUB("rzdrjp17kMY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEED2Ev) STUB("rzfOSPn1w7k", sceSdmaWaitForEvent) +STUB( + "rzhvnTyZ5BM", + _ZN12video_parser13cVideoMetaVWG16getThumbnailInfoENS_9VP_LANG_eENS_15VP_SEARCH_OPT_eEPNS_18VpThumbnailInfo_t_E) +STUB("rziD1QcU+AE", + _ZNK3sce2Np9CppWebApi14ConnectAccount2V214PSNError_error6toJsonERNS_4Json5ValueEb) +STUB( + "rziodMeo-a8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEEaSERKSA_) +STUB("rzktTwuBJwc", _ZNK7WebCore12ChromeClient17minimumWindowSizeEv) +STUB( + "rzlk+9P+KbY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEE11get_deleterEv) +STUB( + "rzodUIn410c", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEE3getEv) +STUB( + "rzunEPioFtU", + _ZN3sce7Toolkit2NP10ParametersC1EPFvRKNS1_5EventEPvERNS1_9NpTitleIdES6_S6_mPNS1_19AllocImplementationE) +STUB( + "rzx3cgTlsNE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE8copyFromERKS9_) +STUB( + "rzx5qPNNXok", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("s++OzrFF-1g", mono_aot_ReactNative_Components_Vshunbox_trampolines_end) +STUB("s+0pSDvfJkk", _ZN3sce7Toolkit2NP2V27Session7Request6CreateD1Ev) +STUB("s+2Mtr-o+X8", _ZTVN9Inspector38ScriptProfilerBackendDispatcherHandlerE) +STUB("s+42ELWxjCI", _ZNK3WTF6String4utf8Ev) +STUB("s+C+abjNOWc", WKPreferencesSetAcceleratedDrawingEnabled) +STUB("s+Gety9ZDs4", _ZNK7WebCore22EmptyFrameLoaderClient21shouldGoToHistoryItemERNS_11HistoryItemE) +STUB( + "s+HAFTtGy24", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEdeEv) +STUB( + "s+I4seyTy+4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEplEm) +STUB( + "s+IPZZwEOpE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("s+LfDF7LKxM", _Atomic_compare_exchange_strong_4) +STUB("s+MeMHbB1Ro", _Scanf) +STUB("s+PUo8AbBrw", __asan_register_globals) STUB("s+QHU9RLHS4", pthread_getconcurrency) +STUB( + "s+SeEgj1ntg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEEC2ERKSA_) +STUB("s+UraPFZBLI", _ZN3sce2Np9CppWebApi6Common8IteratorINS2_6StringEEC2EPS4_) STUB("s+VGAMDQ0AQ", sceAgcGetDataPacketPayloadRange) +STUB( + "s+XWhVQ-l1A", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB( + "s+YrCI1EeBs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEEC2ERS8_) +STUB("s+dG6iqG7j0", _ZN3sce2np3ipc17ServiceIpmiClient4dtorEv) +STUB( + "s+e-gvfqQyA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEEdeEv) +STUB( + "s+flRU8XTbA", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) STUB("s+gRU6gfdLM", sceNpSessionSignalingManualUdpEstablishConnection) +STUB( + "s+i8DgX0ljw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEE5resetEPS9_) +STUB("s+kWxdUt81s", fuse_chan_recv) +STUB("s+kar-RW2lI", mono_init_version) +STUB( + "s+lrU-zZsEc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112JoinableUserEEEEEEdeEv) +STUB("s+mgGos0htI", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V117ResponseMatchTypeEEmmEi) +STUB("s+t7U3430nk", rgctx_fetch_trampoline_rgctx_99_p) +STUB("s+uku3je12E", + _ZNK3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeINS1_11TusVariableEPvEE8max_sizeEv) +STUB( + "s+vd4SttYcU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEmmEv) +STUB( + "s+xL+l2aMsg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEED1Ev) +STUB( + "s+ztfvHkhNE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEdeEv) +STUB( + "s-4DAVr+GjA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEE11release_refEv) STUB("s-6xbR71jQI", sceCompositorGetAnotherProcessVideoAddress) +STUB("s-757sLlVkE", _ZN7WebCore28BackingStoreBackendCairoImplD2Ev) +STUB("s-C88O6Y8iU", _ZN3sce2np9LocalFileD2Ev) STUB("s-J66ar9g50", sceHmdInitialize315) +STUB( + "s-JUfz5iQ0Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEE11release_refEv) +STUB("s-Ml8NxBKf4", _LDscale) +STUB("s-NFgV+HfTk", _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead11unsetMemberEv) +STUB("s-PEdREq5oE", _ZN3WTF15AutomaticThread16threadIsStoppingERKNS_14AbstractLockerE) +STUB( + "s-U53rgtssM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEC2EPNS2_10LibContextE) +STUB( + "s-XBRBn5djs", + _ZN9Inspector26AnimationBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("s-YCXQpB7Vg", mono_aot_Sce_Vsh_ShareServerPostWrapperunwind_info) +STUB("s-ZHwpqG0NE", utext_nativeLength) +STUB( + "s-jIWyOZJsQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEED1Ev) +STUB( + "s-lqRZqMug8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEE5resetEPS9_) +STUB( + "s-omTQTsT+0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("s-v6QLCddRE", _ZNK7WebCore25DropShadowFilterOperation8locationEv) +STUB( + "s0+824ouaJM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEC1EPS6_PNS2_10LibContextE) +STUB( + "s03hIqVcZJg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE7popBackEv) +STUB( + "s06W03Wl1BE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE5abortEv) +STUB( + "s09ncwufdZ8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "s0E+jrkzo-A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEC1ERS7_) +STUB( + "s0I424tAEeE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE6resizeEj) +STUB( + "s0Jsa37a0Ps", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "s0N2SJ3zv3A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEC2EPS8_) +STUB( + "s0OCPuSXWJA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("s0PXkgZgBYI", OCSP_crl_reason_str) +STUB("s0R93InPFGk", _ZN3IPC15ArgumentEncoder6encodeEl) +STUB("s0SCpy0r7QQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEaSERS7_) +STUB( + "s0V0RF9Hiek", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("s0V1HJcZWEs", _ZNSt12placeholders3_14E) +STUB( + "s0cP3yzBP3w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEEC2Ev) +STUB( + "s0et0D57SeU", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser11hassortModeEv) +STUB( + "s0g3ABxLcxo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEneERKS9_) +STUB("s0ltgi1PRLw", _ZN3sce7Toolkit2NP2V24Core13CallbackEventaSERKS4_) +STUB("s0mJ4sXn1YY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEixEm) +STUB("s0nFd+EnB8k", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_34DetailedProductInfoListInputParams9ProductIdEED2Ev) +STUB( + "s0s5Mo37xU0", + _ZNK3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE11getResponseERS8_) +STUB("s0u30pOfi9Q", _ZN3sce7Toolkit2NP2V24Core7Request10TermParamsC1Ev) +STUB("s0v1hj9ip3A", monoeg_g_strlcpy) STUB("s1--uE9mBFw", sceAudioOutClose) +STUB( + "s1292BbRCB0", + _ZN8meta_gen14ImageRetriever7PromoteERKN23sceMetadataReaderWriter8MetadataERS2_P19PromoteInnerContextP17CancelInterface_tP16StorageInterfaceP23PromoteInnerInformation) +STUB("s13MdrE2ZVA", _ZN7WebCore17LibWebRTCProviderC2Ev) +STUB("s13ZeeH6Jvw", _ZN4Manx11MediaPlayer7setRateEf) +STUB( + "s13vyICNA7Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEE7get_refEv) +STUB("s16FCbWaiDA", uenum_count_67) +STUB( + "s17k7RTv0TI", + _ZN3sce2Np9CppWebApi7Matches2V129GetMatchDetailResponseFactory6createEPNS1_6Common10LibContextEPKcNS3_6StatusES9_NS3_12GroupingTypeENS3_15CompetitionTypeENS3_10ResultTypeEiPNS5_12IntrusivePtrINS3_22GetMatchDetailResponseEEE) +STUB("s19dG0nY-dE", WKContextSetClient) +STUB( + "s1B5q4WCSM4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEneERKS9_) +STUB("s1DS0Vvz-18", _ZN7WebCore16TrackPrivateBaseD0Ev) +STUB("s1EM2NdPf0Y", _ZNSt8numpunctIwEC1ERKSt8_Locinfomb) +STUB( + "s1S-XTZ28XY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE3endEv) +STUB("s1SncJ87V-Q", + _ZN3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectator16unsetCustomData1Ev) +STUB("s1UIJXfLWkA", _ZN9Inspector24BrowserBackendDispatcherD0Ev) +STUB("s1W93bDgGXw", _ZN7WebCore11DisplayList9ClearRectD0Ev) +STUB("s1YT7yEqqq0", rgctx_fetch_trampoline_mrgctx_111) +STUB("s1b2SRBzSAY", _ZTSPv) +STUB("s1c4VkLO-pk", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_20ChallengeRecvDetailsEE7destroyEPS3_) +STUB( + "s1cX-x69mDA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE10setContextEPNS2_10LibContextE) +STUB("s1e88GPYMYQ", ft_smooth_renderer_class) +STUB("s1eH+iCoJ5Y", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V15GroupEEptEv) +STUB("s1mBmFd1g4I", _ZNSt9_FacetptrISt7collateIwEE6_PsaveE) +STUB("s1tJ1zBkky4", CERT_STORE_findCertBySubject) +STUB("s1vHv0LgpWI", + _ZN3sce2Np9CppWebApi14SessionManager2V122GameSessionPushContextC1EPNS1_6Common10LibContextE) +STUB( + "s1vJf8IpHzM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEC1ERS7_) STUB("s1zGYYF-xC0", scePs2EmuMenuDialogTerminate) STUB("s2-NPIvz+iA", sceHttpSetNonblock) STUB("s23Q07skOlc", scePlayReadyEnvelopeSeek) STUB("s28dalBwp2g", sceVideoRecordingOpen2) +STUB("s2CcKWuund4", wcstod.fpi) +STUB("s2D6sduLP3I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEC2Ev) +STUB( + "s2GAqRFaRVY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEptEv) +STUB( + "s2JYrJe6Zuo", + _ZN9Inspector26AnimationBackendDispatcher19requestEffectTargetElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("s2JbJNRhw2E", + _ZN7WebCore11JSDOMWindow21deletePropertyByIndexEPN3JSC6JSCellEPNS1_14JSGlobalObjectEj) STUB("s2Nu2w6oJNc", ScePsmMonoObjectGetClass) +STUB("s2Ovsjqu4ZQ", g_spaced_primes_closest) STUB("s2PjRq4By9U", sceKernelLwfsLseek) +STUB("s2R6fWKJDto", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11SessionDataEEC2Ev) +STUB( + "s2Y3GQKKufk", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi47ParameterWithBinaryRequestBodyToRecordLargeDataC2Ev) +STUB( + "s2a+XhLOik0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE21intrusive_ptr_add_refEPSA_) +STUB("s2aqch+mz7c", _ZN7WebCore24CoordinatedGraphicsLayer15resetLayerStateEv) +STUB( + "s2dq7xeW17I", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V115NatConnectivity9setGlobalERKNS1_6Common12IntrusivePtrINS3_25NatConnectivityPropertiesEEE) +STUB( + "s2e+cJ9S3l8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEmmEi) +STUB("s2eGsgUF9vk", _ZnamSt11align_val_tRKSt9nothrow_t) +STUB( + "s2gMFDV2NrU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE10setContextEPNS2_10LibContextE) +STUB("s2mB3mnwAUE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEC1Ev) +STUB("s2mf1DhqJnA", uhash_removeAll_67) +STUB( + "s2qm-DVq1ys", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEdeEv) +STUB("s2rezq2XYk4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEED2Ev) +STUB("s2uTZ1W+T4k", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS19FriendsDataStatusesEE5resetEv) +STUB( + "s2wfES4swT8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "s2x2bFNPB+0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEC2Ev) +STUB( + "s2x3ROLArqc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEEC2ERKSA_) +STUB("s2zG12AYKTg", _ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED0Ev) STUB("s31rYkpIMMQ", sceNetConfigSetIfmtu) +STUB( + "s3A1enBs+6k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE10setContextEPNS2_10LibContextE) +STUB( + "s3IxmwFE4OA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "s3Q+LOzwREo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEC2EPS8_) +STUB("s3SsTnKs5Vg", WKContextSetWebProcessPath) +STUB("s3WmPxkb0Hs", + _ZNK3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator17pushContextsIsSetEv) +STUB( + "s3bra2eSy2c", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("s3gPHgV8JLg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEEptEv) +STUB("s3mNCN-95Lk", _ZN7WebCore9JSElement14finishCreationERN3JSC2VME) +STUB("s3qCnsS3ATE", FTA_Remove_Module_gxvalid) +STUB("s3rKgGTVFxA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEED2Ev) +STUB( + "s3tyjhEdkcc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEC2EPNS2_10LibContextE) +STUB( + "s3wBedmspEo", + _ZN3sce2Np9CppWebApi14SessionManager2V129PlayerSessionSpectatorFactory7destroyEPNS3_22PlayerSessionSpectatorE) +STUB("s3xvWqQGYck", _ULx86_64_dwarf_create_state_record) +STUB("s3zTH-bFeRk", _ZN3JSC7Symbols29toLocaleTimeStringPrivateNameE) +STUB("s4-olElR8+M", _ZN9Inspector27PerGlobalObjectWrapperWorldD2Ev) +STUB("s46e1bVNWNg", _ZN7WebCore28InspectorFrontendClientLocal8SettingsnwEm) +STUB( + "s47LDVeMEbA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEeqERKS9_) +STUB("s48DoEoWm8A", delegate_virtual_invoke_5_p) +STUB( + "s4G45M9w8tc", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("s4Nx7gSL-rQ", _ZN12video_parser5vpcom6DeleteE) STUB("s4OcLqLsKn0", sceSystemServiceGetVersionNumberOfCameraCalibrationData) STUB("s4PtLnp9yw4", sceShellCoreUtilExtendShutdownTimer) STUB("s4UEa5iBJdc", sceNpInGameMessageCreateHandle) +STUB("s4VBXpnbPbI", fuse_destroy) +STUB("s4XIMlhWmTA", _ZN3sce7Toolkit2NP2V212ActivityFeed14PlayedWithFeedC2ERKS4_) +STUB( + "s4fvMMc5h74", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("s4r174wiVJg", JSSetGcMaxHeapSize) STUB("s4tJF+n0mZ0", sceKernelCreateSblock) +STUB( + "s4uuDl6SVDQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE21intrusive_ptr_add_refEPS9_) +STUB("s53pj2RetQQ", _ZN9Inspector31ScriptProfilerBackendDispatcherD2Ev) +STUB("s57NRP+x7TU", _ZN3sce3pss4core5audio11SoundPlayerC2EPNS2_5SoundEj) +STUB("s5CjNIxhlHM", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_6TicketEE17getAdditionalInfoEv) STUB("s5EqYh5kbwM", sceHmdInternalSocialScreenGetFadeState) +STUB("s5Jgo6yw-o0", JSObjectMakeTypedArray) +STUB("s5KB79+vKyA", mono_monitor_try_enter) +STUB( + "s5QPq8WHovA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE5beginEv) +STUB("s5RkPnIHq9g", _ZN7WebCore16convertToIntegerIiEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB( + "s5Sdtp7arWg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE8copyFromERKS9_) +STUB("s5WckG2j6Y4", _ZN4Manx14NetworkProfile16setCookieEnabledEb) +STUB("s5XKQo9CHyw", curl_mvprintf) +STUB("s5YYeNMcav8", mono_aot_Sce_Vsh_Gls_NativeCallplt) +STUB( + "s5Yf-0h2kyE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "s5el2evQ0cM", + _ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForReadC1EPNS1_6Common10LibContextE) +STUB( + "s5gIm6mJFkw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEEC1EPS6_PNS2_10LibContextE) +STUB("s5i75HCzG6w", _ZTVN15AbstractStorage15FacebookServiceE) +STUB( + "s5iEhKE+1BU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEED2Ev) +STUB("s5o2MRVhjkA", _ZN3sce7Toolkit2NP2V28Presence7Request19LocalizedGameStatusC1Ev) +STUB("s5rNHj-Fx+I", _ZN3sce7Toolkit2NP2V24Core17CustomRequestBaseC2Ev) +STUB("s5sv2KhvlxE", glClearDepthf) +STUB("s5tkwwxWX8c", _ZN7WebCore11DisplayList7RestoreC1Ev) +STUB( + "s5xvFcUb3Ao", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions9terminateEv) +STUB("s6+kdc0wpAo", __asan_store1_noabort) +STUB( + "s60YhSD3mYM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEptEv) +STUB("s61G-85MVI8", _ZNK3sce2Np9CppWebApi7Matches2V122RequestPlayerStatistic11getPlayerIdEv) +STUB("s62MgBhosjU", _Unwind_Backtrace) +STUB( + "s62xMWuk9F8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "s63+vyhlINI", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "s63-Hu9hAco", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEC1EPKS8_) +STUB("s660artQ8Kg", res_getIntVectorNoTrace_67) +STUB( + "s66mcrl-vNQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEplEm) +STUB("s67G-KeDKOo", vwarn) +STUB("s68O9rqdXyY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEE5resetEPS6_) +STUB( + "s6DqutS7KR0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "s6FVJpesuag", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("s6KzWGD8P3k", WKPreferencesGetICECandidateFilteringEnabled) +STUB( + "s6NEQgqixbA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEdeEv) +STUB("s6NIjUCdhnM", ENGINE_get_id) +STUB("s6U8oUKr1zQ", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer8haslimitEv) STUB("s6W4Zl4Slgk", sceNpUniversalDataSystemCreateEventPropertyObject) STUB("s6a5LF1NG4g", sceVorbisDecOpenCallbacks) +STUB("s6asvnWD9xY", uprv_copyAscii_67) +STUB("s6eWze7IAok", rgctx_fetch_trampoline_mrgctx_50_p) +STUB("s6hnap+4SM8", _ZN3sce16CommonDialogUtil6Client13openCmnDialogEPvm) +STUB( + "s6nd0Z++Tew", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEdeEv) +STUB("s6qnyKuSfU8", _ZN7WebCore13MIMETypeCacheC2Ev) STUB("s6sTWrzxZzY", sceDeci4hDrfpEventHandler) STUB("s6ucQ90BW3g", sceSystemServiceActivateHevcSoftAbort) +STUB( + "s7-TSEVo6Yk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEneERKS9_) +STUB("s728+rAmwBw", Java_java_net_Inet6AddressImpl_getHostByAddr) +STUB( + "s73S4RrlWzs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEEC2ERKSA_) +STUB( + "s77MdtQY0kA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEaSERKS9_) +STUB("s77ZLU-juKw", JSContextCreateBacktrace) +STUB( + "s7Cg1wGVRew", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEE3getEv) STUB("s7CvzS+9ZIs", scePadMbusTerm) +STUB( + "s7D1ibOby8I", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEaSERKS7_) +STUB( + "s7DDlZ4lEKM", + _ZN9Inspector20DOMBackendDispatcher33getAccessibilityPropertiesForNodeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "s7KzzN+toqw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEE7get_refEv) +STUB("s7MWC+YVXfQ", _ZN13MsvMetaEditorD0Ev) +STUB("s7PjdUkvY1s", _ZNK3JSC17DebuggerCallFrame29deprecatedVMEntryGlobalObjectEv) +STUB("s7QZGcHR6hI", WKPageSetEnableHorizontalRubberBanding) +STUB("s7UPLV3pQ5w", _ZN3JSC6JSLock12DropAllLocksC1EPNS_2VME) +STUB( + "s7XXk0rxSgg", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB("s7YLdo2-V3E", _ZN7WebCore18TextureMapperLayer14setPreserves3DEb) +STUB( + "s7YtGdt8Sg4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB("s7ZkDunmDMo", _ZN3JSC16SamplingProfiler39noticeCurrentThreadAsJSCExecutionThreadEv) +STUB("s7ff9Qd2hS4", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request15PostInGameStory11MAX_ACTIONSE) +STUB( + "s7g6oOBa3PU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEE5resetEPS6_) +STUB( + "s7hD13SS4AA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE5clearEv) +STUB("s7iufk7kth4", fuse_req_interrupt_func) +STUB( + "s7lbEIuRQf0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB("s7ndKtFBHgc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEC2ERKS7_) +STUB( + "s7safFh5zGY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("s7umoxlKe5A", Java_java_awt_GnmGraphics_nativeFillRoundRect) +STUB( + "s8-4iaa0pmQ", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanity15setserviceLabelEPKc) +STUB("s81mWDo1fVk", clock_gettime_np) +STUB("s82naOD3HfA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEC1Ev) +STUB( + "s86g+B+O4CI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE10setContextEPNS2_10LibContextE) +STUB("s8GYJeFHkAM", _ZN9Inspector22HeapFrontendDispatchernwEmPv) +STUB("s8GYZ2aPoTU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEEC1Ev) +STUB("s8HHdKjfNLM", _ZN3sce7Toolkit2NP2V23TUS15TusDataStatuses8deepCopyERKS4_) +STUB( + "s8KS6Miam0w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEC2EPS8_) +STUB( + "s8Ld3Pj8+1M", + _ZN7WebCore11DOMRectListC1ERKN3WTF6VectorINS_9FloatRectELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("s8QiuCjOpXo", _ZN3sce7Toolkit2NP14TssInputParamsC1Ev) +STUB("s8UAsZfh0S8", generic_trampoline_jit_p) +STUB( + "s8VZCH8dHM8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEC1EPKS8_) +STUB("s8ZoG4mimcw", _ZN7WebCorelsERN3WTF10TextStreamERKNS_9RectEdgesIfEE) STUB("s8ejD-SADXQ", sceNpIpcRegisterCallback) +STUB( + "s8f-v7gWQS0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEE21intrusive_ptr_add_refEPS7_) +STUB("s8gWJrY1W-k", ksem_post) +STUB("s8gdXxUXmQk", mono_defaults) +STUB("s8h6Ld659to", _ZN12video_parser13cVideoPathEts11sExtentListE) +STUB("s8kM7N-y-eI", _ZN9Inspector17BackendDispatcher17sendPendingErrorsEv) +STUB("s8qnQ+t8nzs", + _ZN7WebCore32ScrollingStateFrameScrollingNode17setLayoutViewportERKNS_9FloatRectE) +STUB("s8r2Coyc+XE", _ZN3sce7Toolkit2NP2V28Matching12Notification14NewRoomMessageaSERKS5_) +STUB("s8sghK+NjTI", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRateD2Ev) +STUB( + "s8u6zWgtJDE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE6resizeEj) +STUB( + "s8vFKm0uadE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) STUB("s8vuHbvbtis", sceSystemServiceUsbStorageRequestUnmap) +STUB("s8wCTgpBNrQ", _ZN7WebCore11DisplayList7ClipOutC2ERKNS_9FloatRectE) +STUB( + "s8ycwY29Gk0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE13getLibContextEv) STUB("s9+zoKE8cBA", sceNpAppInfoIntFinalize) STUB("s9-RaxukuzQ", sceKernelCloseEventFlag) +STUB("s9BsLfgWTeM", cairo_format_stride_for_width) +STUB("s9H87awmb1U", _ZN7WebCore8SVGNames17vert_origin_xAttrE) +STUB( + "s9HbQo62wCo", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126BandwidthDownstreamMetrics20setStandardDeviationERKi) +STUB("s9M5bNj1iwM", WKPreferencesSetMediaPreloadingEnabled) +STUB("s9N6WZ-FfYU", _ZN3JSC8Debugger25didReachDebuggerStatementEPNS_9CallFrameE) +STUB( + "s9Ojb9DCb0E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEEcvbEv) +STUB("s9Pb0O3EpQI", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus10unsetOwnerEv) +STUB( + "s9PpgoWp7NA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE8capacityEv) +STUB("s9R+2c-7pQc", monoeg_g_utf8_strdown) +STUB("s9TpQC332NU", _ZNK3sce3Xml3Dom4Node13getChildNodesEv) +STUB( + "s9WTS1LBqbI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEED1Ev) +STUB("s9ZGiVCPqmk", _ZN15AbstractStorage18DailymotionService5StartEv) +STUB( + "s9cIrRJmxII", + _ZN3sce2Np9CppWebApi11UserProfile2V111PresenceApi28ParameterToGetBasicPresences13setaccountIdsEPKc) STUB("s9e3+YpRnzw", sceSaveDataDialogInitialize) +STUB("s9eYZVa9d3Q", _ZN7WebCore10FileSystem29fileMetadataFollowingSymlinksERKN3WTF6StringE) +STUB("s9fAZSJxkYI", __tsan_atomic32_compare_exchange_val) +STUB("s9gPPnwVoss", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116InitialJoinStateEEmmEi) +STUB( + "s9jNLuwcrFU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB("s9kexYWR8ic", + _ZN3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayer11setPlayerIdEPKc) STUB("s9knR+WWOyI", sceAvControlInit) +STUB("s9pLwF0h43s", _ZN3sce7Toolkit2NP2V210Tournament4TeamD2Ev) +STUB("s9qIeprVILk", SSL_getServerRandom) +STUB( + "s9zymlj1mBE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEE5resetEPS6_) +STUB( + "sA-XkoCiw0o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEEcvbEv) +STUB("sA3IshgN8u8", glEnableVertexAttribArray) STUB("sA6+5XdbqMA", sceVideoRecordingGetInfo) +STUB( + "sA6KbjYdFZM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEC2EPNS2_10LibContextE) +STUB( + "sAJjj1NITcM", + _ZN9Inspector24RuntimeBackendDispatcher8evaluateElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("sANJySwSTFw", _ZN13MsvMetaEditor14getChunkOffsetEjPmb) +STUB("sAOwy+Puovw", unorm2_getNFDInstance_59) +STUB("sARExmkG0eg", _ZN3JSC8Debugger15setSteppingModeENS0_12SteppingModeE) +STUB( + "sAWtRtcYd38", + _ZN7WebCore15SQLiteStatement21getColumnBlobAsVectorEiRN3WTF6VectorIcLm0ENS1_15CrashOnOverflowELm16EEE) STUB("sAZqO2+5Qqo", sceRudpGetSizeReadable) +STUB("sAh7qypptsc", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEEdeEv) +STUB("sAkhueUiNOU", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEEptEv) STUB("sAleh-BoxLA", sceNetSyncGet) +STUB( + "sArDTuA0-Z8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE6isBusyEv) +STUB("sArLidAWSVE", mono_aot_Sce_Cdlg_Platformjit_code_end) +STUB( + "sAsuefmJihE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE5beginEv) +STUB("sAvWxE0IN0g", ubidi_isOrderParagraphsLTR_67) STUB("sAxbHhAWMXM", sceInvitationDialogOpenA) STUB("sB-c6VjBmOs", sceMbusEventBusStatusChangeUnsubscribe) +STUB( + "sB10bK37lKQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "sB3D+eW3+w0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEC2EPS6_PNS2_10LibContextE) +STUB("sB3dPDza3bk", RemotePlayGetConnectUserId) +STUB("sB7ylbYL398", _ZN3sce7Toolkit2NP15AppSTLAllocatorIiE7destroyEPi) +STUB( + "sB9mOFUmKP0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("sBB2jzten6A", mono_aot_Sce_Vsh_Passcodeunbox_trampoline_addresses) +STUB("sBBuXmJ5Kjk", inet_addr) +STUB("sBCTjFk7Gi4", _ZTINSt8ios_base7failureE) +STUB("sBHhzqDUvkU", BgsStorageClose) +STUB( + "sBL7iv99r9s", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("sBRYY54nTLo", _ZNK7WebCore11MediaPlayer21mediaTimeForTimeValueERKN3WTF9MediaTimeE) +STUB( + "sBSWuteVwhg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEEcvbEv) +STUB("sBU5xuq8Kss", EVP_MD_CTX_new) +STUB( + "sBVzdImF4zo", + _ZN7WebCore22TextureMapperAnimationC1ERKN3WTF6StringERKNS_17KeyframeValueListERKNS_9FloatSizeERKNS_9AnimationEbNS1_13MonotonicTimeENS1_7SecondsENS0_14AnimationStateE) +STUB( + "sBX5vYXGesk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("sBXB61cK3pQ", _ZN3IPC15ArgumentEncoder6encodeEh) +STUB("sBYBAkdDGPY", _ZNK7WebCore16URLDecomposition8hostnameEv) +STUB( + "sBZraPRzeuU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEC1ERKS7_) +STUB( + "sBayXlOaubI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEEaSERKSA_) +STUB( + "sBeVbj3vJpU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEEC2Ev) +STUB("sBfT3Gm2ks4", _ZN7WebCore21JSTextTrackCueGeneric4infoEv) STUB("sBkAqyF5Gns", sceVrTrackerCpuPopMarker) +STUB("sBrm-SSAP0E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEE5resetEPS6_) +STUB("sBuosLdocdQ", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_6NpUserEEC2ERKS4_) +STUB("sBxCIRS9NKs", _ZN9Inspector28DOMStorageFrontendDispatchernaEmPv) +STUB( + "sC11+Dl1d1Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEdeEv) +STUB("sC1zGDM6E8U", WKPreferencesGetPluginsEnabled) +STUB( + "sC7pWx5yVIw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEE11release_refEv) +STUB("sCIKCGXjHK8", _ZN4Manx10FontStream4readEPvjS1_) STUB("sCJd99Phct0", scePthreadSetcanceltype) +STUB("sCLt7bapxUA", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112UpdateStatusEEmmEi) +STUB( + "sCO0tqjB0B8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEppEv) +STUB("sCQ6eAA8QV4", _ZN7WebCore11MathMLNames13munderoverTagE) +STUB("sCR2UEuBDaE", mono_aot_Sce_PlayStation_Imeunbox_trampolines) +STUB("sCTND5arqN0", _ZN3sce7Toolkit2NP2V29Messaging7Request17LocalizedMetadataC2Ev) +STUB( + "sCXywP3LZ8Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEEaSERKS9_) +STUB( + "sCgF5uMB-FI", + _ZNK7WebCore9FrameView35convertFromRendererToContainingViewEPKNS_13RenderElementERKNS_7IntRectE) +STUB( + "sCnkOGMZjH8", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId10initializeEPNS1_6Common10LibContextEPKc) +STUB( + "sD1-VLMVqiQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEE11release_refEv) +STUB("sD6DlU9wkwc", _ZN7WebCore9FontCache21purgeInactiveFontDataEj) +STUB( + "sD9TzYmp-VU", + _ZN7WebCore17PageConsoleClient10addMessageEOSt10unique_ptrIN9Inspector14ConsoleMessageESt14default_deleteIS3_EE) STUB("sDCBrmc61XU", sceSaveDataPrepare) +STUB( + "sDCMC+3Ef7Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestTeamStatisticEEEEEE7get_refEv) +STUB("sDEcg2NhaQ4", _ZN3sce2Np9CppWebApi14SessionManager2V12ToC1EPNS1_6Common10LibContextE) +STUB( + "sDFtGrxZfGY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEC2EPKS8_) +STUB("sDOFamOKWBI", _Atomic_compare_exchange_weak_2) +STUB( + "sDQO4LVSnEw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEptEv) +STUB("sDR4ftb+15A", _ZN3sce7Toolkit2NP2V26Trophy7Request18RegisterTrophyPackD2Ev) +STUB("sDUV9VsqJD8", CERT_checkCertificateIssuerSerialNumber) +STUB("sDVeJCWbfBY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEaSERKS7_) +STUB("sDW6WO4WMd4", _ZN7WebCore16ISOSchemeTypeBoxC1ERKS0_) +STUB( + "sDZZF3CjwMI", + _ZN3sce2Np9CppWebApi14SessionManager2V150PutPlayerSessionsSessionIdLeaderRequestBodyFactory7destroyEPNS3_43PutPlayerSessionsSessionIdLeaderRequestBodyE) +STUB("sDbgvVgZ2DQ", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_19GetGameDataResponseEED1Ev) +STUB("sDdLBPGX63M", _ZN3sce7Toolkit2NP2V210Tournament14RegisteredUserD2Ev) +STUB( + "sDnxtpHECSc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEplEm) STUB("sDotUt1uEhA", scePigletAllocateVideoMemoryEx) STUB("sDqpKnwnAJQ", sceNpPush2Init) +STUB("sDuWnr1d9ko", _ZN3WTF20ConcurrentPtrHashSet5clearEv) +STUB("sDueCW2ou2o", _ZN3sce2Np9CppWebApi7Matches2V119AdditionalStatistic8fromJsonERKNS_4Json5ValueE) STUB("sDuhHGNhHvE", sceFontGetKerning) +STUB( + "sDw6m8rQLYw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEppEv) +STUB( + "sDwNwHaxRD0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEaSERS7_) +STUB( + "sDyS3AlcuTQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEEaSERSA_) +STUB( + "sE+k5Z8XXuo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEptEv) +STUB( + "sE+t4QVrkX0", + _ZN7WebCore26MessagePortChannelRegistry24didEntangleLocalToRemoteERKNS_21MessagePortIdentifierES3_N3WTF16ObjectIdentifierINS_21ProcessIdentifierTypeEEE) +STUB( + "sE-qJQhj7UE", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124ConnectionQualityFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_17ConnectionQualityEEE) +STUB( + "sE3dWCkHXk8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEC1Ev) +STUB( + "sE5aAPZTvKg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("sE60+THBdnE", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119SubtaskAvailabilityEEppEv) +STUB( + "sE6BRycRd68", + _ZN7WebCore11JSDOMWindow14deletePropertyEPN3JSC6JSCellEPNS1_14JSGlobalObjectENS1_12PropertyNameERNS1_18DeletePropertySlotE) +STUB("sECngYnr1kU", _ZN3sce2Np9CppWebApi7Matches2V120RequestPlayerResults11setPlayerIdEPKc) +STUB("sEKpfqARKPI", utext_setup) +STUB("sEML7N3KjvU", + _ZN3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallbackC2Ev) +STUB( + "sENPCC++BmI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEEaSERKSA_) +STUB( + "sERYKIp-pBw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("sETNbyWsEHs", _Unwind_GetIP) +STUB( + "sEZB+PxMG5g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEC1EPKS8_) STUB("sEZaB9KQ10k", sceNpManagerIntLoginGetAuthenticateResponse) +STUB("sEaygI2j4GI", _ZN7WebCore16DOMGuardedObject5clearEv) +STUB("sEbjBLLEVk0", ubidi_getLogicalIndex_67) +STUB( + "sEbl41zgwTw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEC1ERKS7_) +STUB("sEca1nUOueA", _ZTVSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE) +STUB("sEdWzeyWzU0", + _ZN3sce3Xml3Dom8Document15addElementChildENS1_6NodeIdEPKNS0_6StringEPKNS0_13AttributeListES6_) +STUB("sEeHt7xxn54", _ZN3sce7Toolkit2NP2V210Tournament15RegisteredTeamsD2Ev) +STUB("sEgWSAmTMvc", _ZN7WebCore19JSAnimationTimelineC2ERKS0_) +STUB( + "sEgjjnU7NjA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEplEm) +STUB( + "sEmmzHjsyN8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEC1ERS7_) +STUB("sEvU-zoQtwo", _ZN3sce7Toolkit2NP2V210Tournament12GenericEvent8deepCopyERKS4_) +STUB( + "sEvd1G2jjKU", + _ZN3JSC8JSObject23getGenericPropertyNamesEPS0_PNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB( + "sF+muICSFkU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE8copyFromERKS9_) +STUB( + "sF-q8P2uN40", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("sFBYIeXLlqk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEC2ERKS7_) +STUB( + "sFC4bs0sv3o", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot15unsetaccountIdsEv) +STUB( + "sFCzy2SWjts", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEplEm) +STUB("sFDXBmJvlSQ", _ZN7WebCore4Page15setHeaderHeightEi) +STUB("sFDmBXjzJKs", _ZN15AbstractStorage13YoutubeFolder6RemoveEb) +STUB( + "sFDugUjlzOE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "sFGaQpsGDc4", + _ZN9Inspector28DOMDebuggerBackendDispatcher6createERNS_17BackendDispatcherEPNS_35DOMDebuggerBackendDispatcherHandlerE) +STUB("sFMMti8RuvA", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE3endEv) +STUB("sFN0uAZmk04", _ZN15AbstractStorage14StorageManager15ReleaseInstanceEv) +STUB( + "sFWLjFzF4wM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB("sFaZ+uKk2Bs", jpeg_abort_compress) +STUB( + "sFbAyX3C4L8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEEC2EPS8_PNS2_10LibContextE) +STUB("sFd-YS2a808", _ZNK7WebCore9InlineBox10lineHeightEv) +STUB("sFf4gVVBJ-k", mono_method_get_last_managed) +STUB("sFj9Q+77gHg", ucal_roll_67) +STUB("sFjcaILv9NQ", _ZN7WebCore20HTMLTableCellElement21setRowSpanForBindingsEj) +STUB("sFkNd11FFAQ", _ZN3sce7Toolkit2NP2V28Matching12Notification11RefreshRoomC1Ev) +STUB("sFtninKXq8g", + _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody20setCenterToEdgeLimitERKi) +STUB("sFx2y4rXSUI", __asan_report_exp_store1) +STUB( + "sFyf-UQZ-aE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEC1EPKS8_) +STUB("sFyjs51eee4", _ZN3sce7Toolkit2NP2V210Tournament22TeamVsTeamMatchDetailsC1ERKS4_) +STUB("sG16FCVow8E", + _ZN7WebCore18ImageBufferBackendC2ERKNS_9FloatSizeERKNS_7IntSizeEfNS_10ColorSpaceE) +STUB("sG6E6DyW-sE", mono_aot_Sce_PlayStation_BclExtensionsplt) +STUB( + "sG6yGzDsCzs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE5beginEv) +STUB("sGDGC-IkPso", mono_aot_System_Xml_Serializationunwind_info) +STUB( + "sGGXtlPmSDo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEE3getEv) +STUB( + "sGJzxO9xzDQ", + _ZN7WebCore22EmptyFrameLoaderClient12createPluginERKNS_7IntSizeERNS_17HTMLPlugInElementERKN3WTF3URLERKNS6_6VectorINS6_6StringELm0ENS6_15CrashOnOverflowELm16ENS6_10FastMallocEEESG_RKSB_b) +STUB( + "sGM3Yn5xx3s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE7reserveEi) STUB("sGMdV+y-sI8", sceSaveDataManualUpload) +STUB("sGQ4E5E0gQM", monoeg_g_strfreev) +STUB("sGQ9+cKSeZ0", mono_debugger_insert_breakpoint) +STUB("sGSwMuEpFB8", mono_shared_hashtable_insert_replace) +STUB( + "sGXuruF81ic", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEC1EPNS2_10LibContextE) +STUB( + "sGZF1AmFQfQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEppEi) +STUB("sGZVzPhOGyc", _ZN7WebCore16HTMLImageElement5widthEb) +STUB("sGhCzaJf+jQ", _ZThn8_N3sce2np9HttpTransD0Ev) +STUB("sGhgHFXrqHc", mono_class_from_typeref) +STUB("sGkbVZBtW9g", _ZN3sce7Toolkit2NP2V212ActivityFeed6ActionC1Ev) +STUB( + "sGnKmyIsLV4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEC2EPS7_PFvS9_EPNS2_10LibContextE) +STUB( + "sGpTmx78YW8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEppEi) +STUB("sGvy8+6WUVc", monoeg_g_get_charset) +STUB( + "sGx9VZvuwz0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEC2EPS8_) STUB("sH23RdP9ngQ", sceIduUtilResumeAllDownloads) +STUB("sH97Xl4NkSs", WKPreferencesSetUseGiantTiles) +STUB("sHD3IYrTikk", g_queue_new) +STUB("sHE-Q-kf2Ds", _ZN9Inspector21createScriptCallStackEPN3JSC14JSGlobalObjectEm) +STUB("sHFtASIGevU", + _ZN7WebCore24CoordinatedGraphicsLayer41syncPendingStateChangesIncludingSubLayersEv) +STUB("sHIZ2KSx1C4", _ZN9Inspector33AnimationBackendDispatcherHandlerD0Ev) +STUB("sHJ2PvfxFZg", WKPreferencesGetMediaPlaybackRequiresUserGesture) +STUB( + "sHKk4YURpRU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEdeEv) +STUB( + "sHOb75HYe8E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("sHRmbEWM4rM", _ZN15AbstractStorage12LocalStorage13GetRootFolderEPSt10shared_ptrINS_6FolderEE) +STUB( + "sHSYOLaQhX4", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "sHTVXESgs40", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE5eraseENS2_8IteratorIS6_EERS9_) +STUB( + "sHagUsvHBnk", + _ZZNKSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_bRSt8ios_basecRKSsE4_Src) +STUB( + "sHbABjRnpQw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEEaSERKSA_) +STUB( + "sHccu2ZdQFc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE21intrusive_ptr_add_refEPS9_) STUB("sHd+Oo1+vGI", sceM4aacEncCreateEncoderEx) +STUB("sHnaF6S19xA", _ZN7WebCore25DropShadowFilterOperationC1ERKNS_8IntPointEiRKNS_5ColorE) STUB("sHnpJtSIfyY", sceVideoCoreSetAudioVolume) +STUB("sHp-phKVCeo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEED1Ev) +STUB( + "sHwE1Apbkc8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEEC2ERKS9_) +STUB("sHwcgaO9wYc", __ubsan_handle_dynamic_type_cache_miss) +STUB("sHwze4QZwx0", _ZN7WebCore8SVGNames5dAttrE) +STUB( + "sHydxqXaEeA", + _ZN3sce2Np9CppWebApi14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBody14setCustomData1EPKvm) +STUB("sHziAegVp74", sigaltstack) +STUB("sI9zmxu0y6c", ucol_equals_67) +STUB( + "sIAc2zqb0P8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE10setContextEPNS2_10LibContextE) +STUB( + "sICNnPpd6Gk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEppEi) STUB("sIFx734+xys", sceNpWebApiCreateServicePushEventFilter) +STUB( + "sIKLx4-06Gs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEcvbEv) +STUB("sIQ2j-9PjgU", _ZN3WTF13MetaAllocator17freeFreeSpaceNodeEPNS0_13FreeSpaceNodeE) +STUB("sIRARF-nT28", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V124RequestCooperativeResultEEC2Ev) +STUB("sIRliTXfBkw", + _ZN3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResults20getTeamMemberResultsEv) +STUB( + "sIUkv9LFSv4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) STUB("sIh8GwcevaQ", sceVrTrackerRegisterDevice) +STUB( + "sIj6KzDJnQU", + _ZN3sce2Np9CppWebApi7Matches2V129GetMatchDetailResponseFactory7destroyEPNS3_22GetMatchDetailResponseE) STUB("sIlRvQqsN2Y", pthread_rwlock_wrlock) +STUB("sIptIZ6s6PA", _ZN3sce7Toolkit2NP2V27Session17SessionInfoUpdate17MAX_LOCALIZATIONSE) +STUB("sIqSQo+M2dU", uspoof_serialize_67) +STUB("sIvK5xl5pzw", _ZTISt5_IosbIiE) +STUB("sIvMhKPPhK0", _ZNK3WTF10StringView8endsWithEDs) +STUB( + "sIx7kL-SBeM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE3endEv) +STUB("sJ2pYN9sWO0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEEC1Ev) +STUB( + "sJ7AlHIIu08", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEdeEv) STUB("sJ7v8HSsn-E", scePerfPmcNbSelectEvent) +STUB("sJ87pPDuCKs", _ZN7WebCore12ChromeClient24didInsertMenuItemElementERNS_19HTMLMenuItemElementE) +STUB( + "sJCbSWlIJsI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEC2EPNS2_10LibContextE) STUB("sJD4BrPh7pA", sceRnpsAppMgrSetEventFlagForClients) +STUB( + "sJGg6MrZVuM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEppEv) +STUB("sJIve7S2o-0", _ZN9Inspector26DatabaseFrontendDispatchernaEm) +STUB("sJJV-WZZxcg", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12RangeOfRanksEEC1Ev) +STUB("sJKms7e6oqo", WKErrorCopySslVerificationResultString) +STUB("sJKs4SnHxXk", _ZN3WTF14FileSystemImpl8seekFileEixNS0_14FileSeekOriginE) +STUB("sJR-x5mI1i8", _ZN7WebCore16ResourceResponseD1Ev) STUB("sJSDnJRJHhI", sceNpTrophySystemGetProgress) +STUB( + "sJT9wB14X18", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE21intrusive_ptr_add_refEPS7_) +STUB("sJUCpXFEH1s", uregex_replaceFirst_67) +STUB("sJUU2ZW-yxU", _ZTINSt6locale5facetE) +STUB("sJVPrwAjvos", _ZNK7WebCore6Quirks50shouldIgnoreAriaForFastPathContentObservationCheckEv) +STUB( + "sJWuZFu2c4k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEED2Ev) STUB("sJXQ9YzIJiU", sceCesMbcsUcsSetMbcsReplacementCharUCode) STUB("sJXyWHjP-F8", sceAmprCommandBufferWriteAddressOnCompletion) +STUB("sJYcP569Utk", _ZN9Inspector15ScriptCallFrameD2Ev) +STUB("sJb-AsJQS5A", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V19RatingApi21ParameterToPostRatingC2Ev) STUB("sJbzLdIr3Ks", sceVideoStreamingEngineMediaKeySessionLoad) +STUB("sJfD4gfgHiM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEEC2Ev) +STUB( + "sJfIIysLhqk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEE11get_deleterEv) +STUB( + "sJjXtJdZG1Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE8copyFromERKS9_) +STUB("sJmYKWu+TbY", _ZN7WebCore21convertToIntegerClampIhEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB("sJmwAgLsH6o", _ZN7WebCore17FrameLoaderClientdlEPv) STUB("sJptZwvs1is", sceGameCustomDataDialogGetResult) STUB("sJrF-d2uL0Y", sceKernelWriteMultiMapCommand) +STUB("sJrQ1OIhBYw", _ZN7WebCore8Settings31setICECandidateFilteringEnabledEb) +STUB( + "sJrviTxKGYY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEixEm) +STUB( + "sJsmF9BqXUo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE5beginEv) +STUB( + "sJvQfdP-JMo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEEaSERSA_) +STUB( + "sK+3loZPQoA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEaSERKS7_) +STUB("sK0VMImfJ+c", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats20unsetNatConnectivityEv) +STUB( + "sK6emNvEZAc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEC2Ev) +STUB("sK7rb1+0III", _ZN7WebCore16HTMLMediaElement15enterFullscreenEv) +STUB("sK8u6H-As9E", WKPreferencesSetResourceTimingEnabled) +STUB("sKAQuhAC9q4", GCC_except_table75) +STUB( + "sKBopvEKaYQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("sKCRcHKGXQU", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEEC1Ev) +STUB( + "sKDGMK38G-Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEppEv) STUB("sKGFFY59ksY", sceNpTrophySystemCheckRecoveryRequired) STUB("sKLOdgu+I7c", scePlayReadyApiIsStarted) +STUB("sKO-tFF-e2w", _ZThn96_N7WebCore14XMLHttpRequestD0Ev) +STUB( + "sKS0aZvK73M", + _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities17getnpServiceLabelEv) +STUB("sKTmdCpk-50", u_getIntPropertyMap_67) +STUB("sKWdKL366lc", _ZN3sce7Toolkit2NP2V211SharedMedia6VideosD1Ev) +STUB( + "sKXs4MUFCtU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEplEm) +STUB("sKg+Bx+VSoM", _ZN7WebCore23CoordinatedBackingStore6createEv) +STUB("sKg9twdTL7s", _ZN7WebCore9HTMLNames9clearAttrE) +STUB( + "sKjf4a4TD9o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEC2EPNS2_10LibContextE) +STUB( + "sKka2juerPk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEC2EPS8_) +STUB("sKneJjUXWkQ", FT_Outline_GetOutsideBorder) +STUB("sKpRuwjaR-w", delegate_virtual_invoke_imt_m_3) +STUB("sKsewiHYZ0A", mono_aot_System_ServiceModel_Internalsjit_code_start) STUB("sKsup0uBn2U", sceMusicCoreServerLaunchSpCore) +STUB("sL1oNQHcDN0", _ZNK3sce3Xml3Dom4Node11getNodeTypeEv) +STUB( + "sL3J4VDTwb8", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersD1Ev) +STUB( + "sLJKOIi1HKM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEED2Ev) +STUB( + "sLPWVtaSAuI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEC2EPKS8_) +STUB( + "sLR-tRvUdI8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEneERKS9_) +STUB( + "sLT636ECOlk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEEC2ERSA_) +STUB("sLTFA0Bgofc", _ZN7WebCore11BitmapImageC1EPNS_13ImageObserverE) +STUB( + "sLWiidMO4y8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEaSERKS7_) +STUB("sLeKDfZ9euI", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_33ActivityFeedSharedScreenshotStoryEE7destroyEPS3_) +STUB( + "sLf-mlZft-Q", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api19ParameterToGetOffer30unsetxPsnAcceptPlatformNamePs5Ev) +STUB("sLfbMNvBhWM", _ZN12video_parser7cVpUtil22vp_ff4_fread_by_threadEPvS1_mPm) STUB("sLfxYROuNZU", sceDeci5Open) +STUB("sLg6rUpiYSM", _ZN15AbstractStorage6FolderD2Ev) +STUB( + "sLsgea61aA0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEE11get_deleterEv) +STUB("sLubakV5c9k", delegate_virtual_invoke_imt_19_p) +STUB("sLyA+kBuo4I", __tsan_mutex_post_unlock) +STUB("sM-QYa6m8yo", Java_java_lang_Compiler_registerNatives) +STUB("sM3Mg-AAklQ", ptohdw) +STUB( + "sMDMWJQdBok", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("sMNhRrZzpEg", _ZNK3sce2Np9CppWebApi7Matches2V15Error16referenceIdIsSetEv) +STUB("sMPxv9l0JdI", _ZN3sce7Toolkit2NP2V212EventsClient5Event16MAX_SIZE_IMG_URLE) STUB("sMSsHlwlg74", sceFsExtUSBSchedDestroy) +STUB( + "sMTkXrRIGRY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEED2Ev) STUB("sMW2cWXt-yk", sceMbusDebugSetControllerFocusByAppId) +STUB( + "sMXbvgG6k7g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE21intrusive_ptr_sub_refEPS9_) +STUB("sMguT4RpX7g", ulocimp_getScript_67) STUB("sMko2YZqDNQ", sceLibcBacktraceGetBufferSize) +STUB( + "sMmZIQq6gbQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEcvbEv) +STUB( + "sMnNu3RIyPQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE7popBackEv) +STUB( + "sMnTQ7ikLSc", + _ZN7WebCore24CoordinatedGraphicsLayer11setChildrenEON3WTF6VectorINS1_3RefINS_13GraphicsLayerENS1_13DumbPtrTraitsIS4_EEEELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("sMp-nZwlMn4", _ZNK3sce7Toolkit2NP9Utilities6FutureI19SceNpTrophyGameDataE3getEv) +STUB("sMrCm3RCnj0", __cxx_global_var_init .3) +STUB("sMuHESqmB2I", _GLOBAL__sub_I_locale0.cpp) +STUB( + "sMxQaIk5ZQU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEeqERKS9_) +STUB("sN-LluSZTCQ", _ZN7WebCore21MediaRecorderProviderD2Ev) +STUB("sN0yJ8MrDBY", _ZN7WebCore6RegionaSERKS0_) +STUB("sN6Hwe9p7zU", _ZTVN3WTF15AutomaticThreadE) +STUB("sNB-wBpi-uM", _ZN7WebCore17HTMLSelectElement7optionsEv) +STUB("sNEbgt8b2z4", WKSizeGetValue) STUB("sNHr6sLUsRE", sceKernelXexitSblock) +STUB("sNOOoclzYwY", + Java_sun_awt_image_GnmImageDecoder_readImage__ILjava_lang_String_2Ljava_awt_Image_2) +STUB("sNT-LAYpcUw", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus24unsetLastUpdatedDateTimeEv) STUB("sNbxxwNdlHY", sceNpTrophySystemWrapRemoveUserData) +STUB("sNfZ1l+SLDA", _ZTv0_n24_N13MsvMetaEditorD1Ev) +STUB( + "sNgjJZW2A7M", + _ZN7WebCore14JSWebAnimationC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_12WebAnimationENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "sNhm-5mQJXs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE4sizeEv) +STUB( + "sNnL2W3FAnM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEEC1Ev) +STUB( + "sNq9H9Wcg+c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEC1EPKS8_) +STUB("sNqGp2I-m+c", _ZN7WebCore24MatrixTransformOperationD1Ev) +STUB("sNqZ3+Md+mU", _ZN12video_parser5vpcom10_WaitAsyncEPNS_8_vp_fileE) +STUB("sNsnvyObgWI", _ZN7WebCore11MediaPlayer17readyStateChangedEv) +STUB( + "sNtHPUTzajE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEE11get_deleterEv) +STUB("sNwbKcFbWSY", delegate_virtual_invoke_13) +STUB( + "sO4g3UZ4dYA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEED2Ev) +STUB( + "sOBqXoesg1A", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsC1EPNS1_6Common10LibContextE) +STUB("sOJS1xfmxrQ", g_list_delete_link) +STUB("sOOMlZoy1pg", wcsrtombs) +STUB( + "sOP+q1ABB1I", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi32ParameterToPostGameSessionsTouchaSERS5_) +STUB( + "sOP1zNsyMjg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEC1Ev) +STUB("sOPMXiEr0gg", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEEmmEi) +STUB("sOWackhwGso", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEE5resetEPS6_) +STUB("sOd1cuy1dGE", _ZN4Manx9X509chainC2EPKS0_) +STUB("sOeWNRwjulU", _ZN7WebCore9HTMLNames8openAttrE) +STUB("sOk-uorn-eA", _ZN3sce2Np9CppWebApi14ConnectAccount2V214PSNError_error7setCodeERKi) STUB("sOmFDbGKe+I", sceVencCoreQueryPreset) +STUB("sOmU4vnx3s0", _ZN3sce4Json5ValueC1Ed) +STUB( + "sOxqFJQIFac", + _ZN3sce2Np9CppWebApi14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyD1Ev) +STUB("sOz2j1Lxl48", _ZTIPKx) +STUB("sP+J+8XGmJ8", _ZN13MsvMetaEditor18convertUTF8toUTF16EPKhPPtPmm) +STUB("sP4FleNgG68", g_GarlicHeapSize) +STUB("sP5VXKVP4fA", + _ZN7WebCore32ScrollingStateFrameScrollingNode26setMinLayoutViewportOriginERKNS_10FloatPointE) +STUB("sP5rfVNdvWM", res_getResource) +STUB("sPC7XE6hfFY", srandom) +STUB("sPECNs8xNqs", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetailD2Ev) +STUB("sPELpAWhcQQ", _ZN7WebCore15HTMLFormElement25elementsForNativeBindingsEv) +STUB("sPFYlDaJr+s", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils5IdMapEEC2Ev) +STUB( + "sPFsbqYfNsw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEneERKS9_) +STUB( + "sPL0McTJAgE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE8capacityEv) +STUB("sPOuZ9sYM+w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEaSERS7_) +STUB( + "sPPZxMtZ6uw", + _ZN3sce2Np9CppWebApi7Matches2V128ResponsePlayerResultsFactory6createEPNS1_6Common10LibContextEPKciPNS5_12IntrusivePtrINS3_21ResponsePlayerResultsEEE) +STUB("sPTHcIpRE5U", _ZN3JSC8Debugger9callEventEPNS_9CallFrameE) +STUB("sPU6b2LaPqg", __ubsan_handle_cfi_check_fail_abort) +STUB( + "sPZWle3jOIQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEE3getEv) +STUB("sPchLutSWIY", _ZN3JSC7Symbols31instantiateStreamingPrivateNameE) +STUB("sPcruQNhydA", _ZN7WebCore11DisplayList6RotateD2Ev) STUB("sPhrQD31ClM", sceRazorCpuFlushOccurred) +STUB("sPjle5HfNtc", vzone_getPreviousTransition_67) +STUB("sPkdOxw1xMM", _ZN12Mp4Retriever8GetInt16EPh) +STUB("sPlY1lQ48pY", _ZN7WebCore11MemoryCache18pruneLiveResourcesEb) +STUB("sPm6TDzbt8k", _ZNK3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE4sizeEv) +STUB("sPpIzn0+nLk", rgctx_fetch_trampoline_rgctx_22_p) +STUB("sPti0OkVM8c", _ZN3sce2np6Thread7DestroyEv) STUB("sPuK5ic3GD4", sceSystemServiceOpenChallengeActivity) +STUB("sPxTZD-Xqdk", xmlCreateMemoryParserCtxt) +STUB("sPy1tlA51l8", _ZN7WebCore25ArchiveResourceCollection21archiveResourceForURLERKNS_3URLE) +STUB("sPzuwX9QJoI", _ZN7CoreIPC15ArgumentDecoder21decodeFixedLengthDataEPhmj) +STUB("sQ0avkeBLo4", u_releaseDefaultConverter) +STUB( + "sQ7I-KmeaFc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEmmEi) +STUB( + "sQ8-J3XbQ9s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("sQKeaOlUKJE", _ZN3JSC18GCActivityCallback18tryCreateEdenTimerEPNS_4HeapE) +STUB("sQL6jQkE+Ow", atexit_mutex) +STUB("sQL8D-jio7U", _Fopen) +STUB( + "sQLg4cF4Re8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEE7get_refEv) +STUB("sQXidYHrbCU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V113AttributeTypeEEC2Ev) +STUB("sQcvFCJYqD8", il2cpp_string_new) +STUB("sRDeKXVxWGA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEEC2ERS9_) +STUB( + "sREprMFaQQQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE8capacityEv) +STUB("sRIARmcXPHE", CERT_getCertificateExtensions) +STUB( + "sRLwk4iScZA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEED2Ev) +STUB( + "sRRZBOA0FX8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEptEv) STUB("sRVb2Cf0GHg", sceNpTssCreateNpTitleCtx) +STUB("sRXiEgbhWdo", _ZN3sce7Toolkit2NP2V27Ranking7Request13GetUsersRanks8MAX_PCIDE) +STUB( + "sRaPZDJatvQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEED2Ev) +STUB("sRblWBmBbH8", _ZN7WebCore16FrameLoadRequestaSEOS0_) +STUB("sRct7PKHJgc", + _ZN3JSC12RegExpObject14deletePropertyEPNS_6JSCellEPNS_9ExecStateENS_12PropertyNameE) +STUB( + "sRfni-uvJtA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEC1EPS8_) +STUB( + "sRkaBMMleFI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEE11release_refEv) +STUB( + "sRn6qePT54Q", + _ZN3sce2Np9CppWebApi14SessionManager2V139RequestCreatePlayerSessionPlayerFactory6createEPNS1_6Common10LibContextEPKcS9_RKNS5_6VectorINS5_12IntrusivePtrINS3_24PlayerSessionPushContextEEEEEPNSB_INS3_32RequestCreatePlayerSessionPlayerEEE) +STUB("sRo9+ZfRpbg", _ZNK3sce2Np9CppWebApi6Common8IteratorIiEneERKS4_) +STUB( + "sRoFUJ8DzT8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEEC1ERKSA_) +STUB("sRqv1+4ki0s", _ZN3JSC2VM23asyncGeneratorSpaceSlowEv) STUB("sRuiwiiCnQg", sceCesRefersUcsProfileBs4730) +STUB( + "sRwJvwndrhY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEE11get_deleterEv) +STUB( + "sRywAgMJEdY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEEdeEv) +STUB( + "sS0hiufj8PA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "sS1wZJevVpM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("sS5fF+fht2c", _ZNSt10moneypunctIcLb0EED0Ev) +STUB("sS78n6ASF8U", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEEneERKS7_) STUB("sSAUCCU1dv4", sceAmprMeasureCommandSizeWriteKernelEventQueue_04_00) +STUB("sSD8SHia8Zc", SSL_getClientSessionInfo) +STUB( + "sSDJ8Zfjadc", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13boolean9IsSetEv) +STUB( + "sSKylfxokqE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE10setContextEPNS2_10LibContextE) +STUB( + "sSSN+uEnc0Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEC2EPNS2_10LibContextE) +STUB( + "sSUrb50Z2P0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "sSVbAQBjk60", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEE11release_refEv) +STUB( + "sSWQwgDNWOc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEE7get_refEv) +STUB("sSYpL+hDUFw", _ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody9getStatusEv) +STUB("sSb3te485KU", WKBundlePageSetAppCacheMaximumSize) +STUB("sSfferPYzLI", uprv_unmapFile_67) +STUB( + "sSj7b0l2z7U", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEdeEv) +STUB( + "sSjdXa806MI", + _ZNK3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead6toJsonERNS_4Json5ValueEb) +STUB( + "sSlsbOwD-MQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEEptEv) +STUB( + "sSo6jergzpU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEppEi) +STUB("sSr4mR33SaY", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeData9terminateEv) +STUB( + "sSspvQhhGgw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "sSvbRvuoZd8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEC1EPS8_) STUB("sT4nBQKUPqM", sceNetResolverStartNtoaMultipleRecordsEx) +STUB("sT6Q6VG-muM", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V110Reputation10getPerGameEv) +STUB( + "sTB89uirCE4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEppEi) +STUB( + "sTEnCZ5sWOY", + _ZN9Inspector23CanvasBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("sTFaycIFUKU", _ZN7WebCore11DisplayList20DrawTiledScaledImageD2Ev) STUB("sTFqbfXJGG4", sceVrSetupDialogInitialize) +STUB("sTJ5WzgrEC0", _ZN3WTF13tryFastMallocEm) +STUB("sTPNcoCJKkI", mono_image_rva_map) +STUB("sTTKtmcsvyg", _ZN7WebCore19ResourceRequestBase25setDefaultTimeoutIntervalEd) +STUB( + "sTYzO+Xn1ho", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities13ErrorResponseEEEEEEdeEv) +STUB("sTaUDDnGOpE", _ZNSt10moneypunctIwLb1EEC2Em) +STUB("sTcSmxjOhOU", _ZN12video_parser13cVideoMetaMP417getThumbnailImageEjjPh) +STUB( + "sTfQi6ilyxc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEEptEv) +STUB( + "sTj76C6wbME", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEED2Ev) +STUB("sTmBGgQPBIU", WKURLRequestGetTypeID) +STUB("sTnxJOJIdTs", _ZN3sce7Toolkit2NP2V27NpUtils5IdMapaSERKS4_) STUB("sTqVHpVwnyE", sceSpNetPoolCreate) STUB("sTtvF4QVhjg", sceNpManagerIntGetOnlineIdSdk) +STUB( + "sTy-gJqnYOs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) STUB("sU2St3agdjg", sceNgs2StreamCreate) +STUB("sUB4lq+oR4w", _ZN3JSC23AbstractSamplingCounter30s_abstractSamplingCounterChainE) +STUB("sUBw7Gx1fyE", atanhi) +STUB( + "sUJDiHmu4HE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEeqERKS9_) +STUB( + "sUK09gF4VNM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEED2Ev) +STUB("sUKIKIjKoUk", _ZN3sce2Np9CppWebApi6Common8IteratorImEppEi) +STUB( + "sUKiujKSkVo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("sUNAIsT+Bcc", _ZN3sce7Toolkit2NP2V28Commerce7Request27DisplayCategoryBrowseDialogC2Ev) +STUB("sUO777nQSTQ", inflateReset) +STUB("sUP1hBaouOw", _Getpctype) STUB("sUXGfNMalIo", sceNpTrophy2RegisterUnlockCallback) +STUB( + "sUbFH8X3sEc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "sUcBcpmh8Eo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEC1EPS8_) +STUB( + "sUg-XnKqwkw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEED1Ev) +STUB( + "sUgRpTd44mU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("sUhJWmXNXog", _ZN3sce3pss5orbis5video14VideoPlayerVcs17UpdatePlayerStateEv) +STUB("sUpnddNKE3A", _ZN9Inspector18InspectorHeapAgent18willGarbageCollectEv) +STUB( + "sUwK0fwuP-U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEEaSERKS9_) STUB("sUzSOBtTR0o", sceDeci4hDrfpOpen_fuse) +STUB( + "sV+l8SEZl1Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEED2Ev) STUB("sV2tK+yOhBU", sceRtcSetCurrentAdNetworkTick) +STUB("sV6ry-Fd-TM", __atomic_store) +STUB("sV7xqY5CZjU", ucol_setVariableTop_67) +STUB("sV87Gv51KWM", _ZN3JSC7JSArray9setLengthEPNS_9ExecStateEjb) +STUB( + "sV9GuCS8fh0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEC1EPNS2_10LibContextE) +STUB( + "sVAjtdZ-42U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE8copyFromERKS9_) STUB("sVGtoUBVB7E", sceApplicationGetCoredumpDirPath) STUB("sVN0cBKC-4s", sceContentExportValidateContents) +STUB( + "sVNSRvEIAoU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("sVUkO0TTpM8", _ZTIPKi) +STUB("sVWxmu5kgrg", __tsan_atomic64_compare_exchange_strong) +STUB( + "sVXipnRMd5U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEE7get_refEv) +STUB("sVamW-aioY8", _ZN7WebCore24CoordinatedGraphicsLayer19didChangeLayerStateEv) +STUB( + "sVdRXw9aw90", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEEC2EPS8_PNS2_10LibContextE) +STUB( + "sVjJdXO-TkU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("sVjRiKaZf0M", _ZN3sce2Np9CppWebApi14ConnectAccount2V28PSNError8fromJsonERKNS_4Json5ValueE) +STUB("sVlXf6SaZXw", _ZN3JSC7Symbols27ensureRegisteredPrivateNameE) +STUB("sVm5pjPVBMQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEmmEv) +STUB("sVqWVifA7to", jio_printf) +STUB("sVxqnXkAYXs", _ZN7WebCore8DOMTimerD2Ev) +STUB("sVz0nv5+nec", res_getArrayItem_67) +STUB( + "sW+R9Ux+MFU", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations34getxPSNSESSIONMANAGERINVITATIONIDSEv) +STUB("sW2qdiJjx+w", _ZN3NTF17URLRequestMessageD0Ev) +STUB( + "sW3KxMp513Q", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_18GameCustomDataItemENS1_15AppSTLAllocatorIS5_EEEE3getEv) STUB("sW3km27c12M", sceVoiceChatRequestCreatePlayerSessionVoiceChatChannel) +STUB("sW4-ui2TU20", _ZN3sce7Toolkit2NP2V210Tournament4TeamC2ERKS4_) +STUB( + "sW40lUAOMgY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEEcvbEv) +STUB( + "sW546+9hMq4", + _ZN7WebCore10JSLocation3putEPN3JSC6JSCellEPNS1_14JSGlobalObjectENS1_12PropertyNameENS1_7JSValueERNS1_15PutPropertySlotE) +STUB("sW6h+-un80k", _ZNK3sce2Np9CppWebApi14SessionManager2V118LeaderWithOnlineId12getAccountIdEv) +STUB( + "sW7i8gs5Img", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE6resizeEj) +STUB("sW8v+7HYQkc", mono_aot_Sce_PlayStation_BclExtensionsunbox_trampolines) +STUB("sWFCAvUcuVU", _ZN3sce7Toolkit2NP2V212ActivityFeed4FeedD2Ev) +STUB( + "sWFieijcCNs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEC2EPS6_PNS2_10LibContextE) +STUB("sWGGR-emFt0", _ZNK7WebCore18TextureMapperLayer7opacityEv) STUB("sWQiqKvYTVA", sceHttpAbortWaitRequest) +STUB( + "sWVVteHocts", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE5eraseENS2_13ConstIteratorIS9_EERSC_) +STUB( + "sWVyC97FeOw", + _ZN3sce2Np9CppWebApi14SessionManager2V128PostGameSessionsResponseBodyC1EPNS1_6Common10LibContextE) +STUB( + "sWWorj9U6i8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEE11release_refEv) +STUB( + "sWYQiNwj27M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEE3getEv) STUB("sWbST0oQKsc", sceAmprCommandBufferSetMarkerWithColor) +STUB( + "sWdftQqQh9M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "sWgRK8X5dZM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEC2Ev) +STUB("sWkjalo6to4", _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V314MissingElementD2Ev) +STUB( + "sWramXU-1CM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEE11get_deleterEv) +STUB( + "sWum+klUxIs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEplEm) +STUB("sWz2lW5k5n0", _ZN3sce2Np9CppWebApi14SessionManager2V134PostGameSessionsSearchResponseBodyD1Ev) +STUB("sWzsc5TftTo", _ZN7WebCore18staticCSSValuePoolE) +STUB("sX3o6Zmihw0", + _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewd) +STUB("sX5tVQk5TQk", ucnv_getInvalidUChars_67) +STUB("sX6BQ1Cxw6A", __exp__D) +STUB("sXJagndrPWo", _ZN3WTF10StringImpl28convertToUppercaseWithLocaleERKNS_12AtomicStringE) +STUB( + "sXKqkOVSzJQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEaSERS7_) +STUB("sXOUVXT4nDE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEcvbEv) STUB("sXVQUIGmk2U", sceNpGetPlatformType) +STUB( + "sXVW97AxYGI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE5beginEv) +STUB("sXaxl1QGorg", _ZNSt15basic_streambufIcSt11char_traitsIcEE6xsputnEPKci) +STUB("sXfFudQgKlA", _ZN7WebCore14DocumentWriter11setEncodingERKN3WTF6StringEb) +STUB("sXfJDBYoCFE", _ZN3sce2Np9CppWebApi13InGameCatalog2V525ContentInteractiveElement7setNameEPKc) +STUB("sXn8uN-ijvw", NpWebTerminate) +STUB("sXqZHVhnkU0", _ZN12Mp4Retriever14processMetaStrEv) +STUB( + "sXrd0hR6i+Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "sXuTeINQ-LE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC2ERKSB_) +STUB("sY+Gszr8EhE", uprv_decNumberNextToward_67) +STUB( + "sY-AtE4ddQc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEC1Ev) +STUB( + "sY5T9psn9Uk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) STUB("sY8beqtqGv0", sceMusicPlayerServiceInitialize3) STUB("sYBNLrMxjAM", sceVrTracker2GetControllerImage) +STUB("sYSAnPx-tj0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament16RegisteredRosterEE3setEv) STUB("sYSfAewkXkU", sceUpsrvUpdateDoUpdateSystemEx) +STUB( + "sYTM1BgKvik", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("sYVdB5+RE74", __asan_stack_malloc_always_8) +STUB("sYa4bmPc27k", _ZNK3WTF12AtomicString23convertToASCIILowercaseEv) +STUB("sYbHBtk-bMs", JVM_RegisterMethodHandleMethods) +STUB( + "sYhItu7Pte4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEEcvbEv) +STUB("sYj1Nwq78yQ", _ZNK7WebCore16HTMLImageElement11cachedImageEv) +STUB( + "sYnCTWA8M70", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEppEi) +STUB("sYp7HHmGz1U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEED2Ev) +STUB( + "sYqkcpnTeT0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEEaSERKSA_) +STUB( + "sYrZLOwccTs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE4sizeEv) +STUB("sYvqaums-rk", _ZN7WebCore9HTMLNames11declareAttrE) +STUB("sYyou0hGbP8", _ZN15AbstractStorage14YoutubeServiceC2Ev) +STUB("sYz-SxY8H6M", _Locsum) +STUB( + "sZ1mwg6zAy8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEdeEv) +STUB("sZ8FuTrbhUc", _ZN3sce7Toolkit2NP2V24Core15StringifyResultC1Ev) +STUB("sZ93QMbGRJY", gammaf) +STUB("sZIoMRGO+jk", _ZN3sce4Json5ValueC1ERKNS0_6StringE) +STUB("sZLrjx-yEx4", wcstombs_s) +STUB("sZO0+H5iTbc", coil_create_semaphore) +STUB("sZQD0EyW3AQ", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession16unsetCustomData2Ev) +STUB( + "sZWxrmyqycs", + _ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionNonPsnPlayerC1EPNS1_6Common10LibContextE) +STUB("sZYNm-cAb1E", WKPageGroupGetPreferences) +STUB("sZa0DHXu5DM", _ZN4Manx14NetworkProfile11netCtlCheckEv) +STUB( + "sZcAdwfNX+A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEED1Ev) +STUB("sZdEKjVwJfQ", _ZN3sce7Toolkit2NP21TusSetVarsInputParamsC1Ev) +STUB( + "sZfISrEaVVw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEC1EPS8_) +STUB( + "sZgXR44ZqMo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEE7get_refEv) +STUB("sZmUzrbtoz8", RSA_padding_add_PKCS1_PSS) +STUB( + "sZnakVph2RU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) STUB("sZqK7D-U8W8", sceFontGraphicsProcessRenderSequence) +STUB("sZuwaDPATKs", getdtablesize) +STUB( + "sZzP7POJL9o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEEdeEv) +STUB("sZzliEQrICM", FT_Get_Name_Index) +STUB("sa1LKJP-ePw", _ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_errorD2Ev) +STUB("sa379tyrupc", _ZN3sce7Toolkit2NP2V210Tournament22TeamVsTeamMatchDetailsC1Ev) STUB("sa9t1NLDwME", sceDeci4hDrfpTruncate_fuse) +STUB( + "saD6eQwwD80", + _ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionPlayerFactory6createEPNS1_6Common10LibContextERKmRK13SceNpOnlineIdPKcSE_PNS5_12IntrusivePtrINS3_19PlayerSessionPlayerEEE) +STUB("saGH8j4QSPI", _ZN7WebCore8Document7scriptsEv) +STUB("saK0rH25IW4", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfoD2Ev) +STUB("saNCRNfjeeg", __fixdfsi) +STUB("saQ8kwN8vrE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEE11get_deleterEv) +STUB("saSUnPWLq9E", _ZSt16_Xoverflow_errorPKc) +STUB( + "saUTN-7B9rQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "saUqTqc3pR4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEmmEv) +STUB("saVFKrdYV8I", _ZN7WebCore9HTMLNames15ondragstartAttrE) +STUB( + "saVSkdOk+vM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEixEm) STUB("saYB0b2ZWtI", sceNetCtlClearEventForNpToolkit) +STUB("sacQFSsnugw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEC2ERKS7_) +STUB( + "sanPjfcIoeM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEppEv) +STUB("sap+QiqYRhA", _ZN7WebCore12HTMLDocument6heightEv) +STUB( + "sarh1zyddwc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEE11get_deleterEv) +STUB("sauGBcaBNVk", ubidi_getText_67) +STUB("sb+9wZKIx1s", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredUsersEE19setCustomReturnCodeEi) +STUB( + "sb2OfzpZelE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEE5resetEPS9_) +STUB("sb2vivqtLS0", _ZNKSt24_Iostream_error_category4nameEv) +STUB( + "sb9I70UrG7Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEE5resetEPS6_) +STUB("sbCus2-wUQ8", _ZN3WTF6String6numberEl) +STUB( + "sbEBofduTjo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEppEv) +STUB("sbMQcXYiRY4", + _ZN7WebCore25WebSocketChannelInspector18didCreateWebSocketEPNS_8DocumentERKN3WTF3URLE) +STUB("sbPqKt-e0bk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody9setOffsetERKi) STUB("sbSYZLR5AiE", sceNpUniversalDataSystemEventPropertyArraySetFloat64) +STUB("sbTemob+-Zw", _ZNK7WebCore18PlatformTimeRanges5startEjRb) +STUB( + "sbXXIA7Khw4", + _ZN7WebCore11JSImageData6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_9ImageDataENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "sbanZDBJO98", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEC2EPNS2_10LibContextE) +STUB( + "sbdBxHyik54", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEmmEv) +STUB("sbezrCUFXP4", mono_aot_Sce_Vsh_AutoMounterWrappermethod_addresses) +STUB( + "sbfbBFhDwAM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser8setlimitEi) +STUB("sbkKs39irAM", mono_btls_ssl_ctx_set_max_version) +STUB("sbs1gkGQMRc", utrie2_openFromSerialized) +STUB( + "sbs5LsyJXb8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEEC2ERKS8_) +STUB("sbs5dzWn8cE", curl_global_init_mem) +STUB("sbunWSs+4F8", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_22FriendsRankInformationEED2Ev) STUB("sbyLJgK1M8Y", sceCesUtf16leToEucJp) +STUB( + "sbzClcoR-RQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEC1EPS6_PNS2_10LibContextE) STUB("sc1fkfZ4fyM", sceMusicFwRemoveSrc) +STUB( + "sc24S6DeRYc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEED1Ev) +STUB( + "sc3r5YYOSrE", + _ZNK3sce2Np9CppWebApi14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBody6toJsonERNS_4Json5ValueEb) +STUB( + "sc6RlA-0FLM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEptEv) +STUB("sc6oASvj4zI", _ZN3sce2Np9CppWebApi14SessionManager2V113PlayerSessionD1Ev) +STUB("sc75vjmOOm0", _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26RecordScoreResponseHeadersD1Ev) +STUB( + "sc7nVAAAwxg", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot11setsortModeENS5_8SortModeE) STUB("scA1QSh8cfE", sceAgcSdmaSetTileModesBC) STUB("scCBvfXGeRM", sceNpAsmClientGetRelatedGameNpTitleIdsA) +STUB("scGRzF-d0Cs", WKWebsiteDataStoreRemoveAllServiceWorkerRegistrations) +STUB("scIpGdxRLfg", _ZN3JSC7Symbols24generatorNextPrivateNameE) STUB("scJOf8iFCf0", sceVnaSetClientStatus) +STUB( + "scK-HwlUvRQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("scRASIAEXKc", _ZN3JSC16SamplingProfiler18reportTopFunctionsERN3WTF11PrintStreamE) +STUB("scRnB3aZI8Q", _ZN3JSC7Symbols34regExpProtoSourceGetterPrivateNameE) +STUB("scTDLlhRrGI", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request15GetSharedVideosC1Ev) +STUB( + "scUv5jCak28", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEE7add_refEv) +STUB( + "scVZ5u1pVhg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE5emptyEv) +STUB("scYjSEuq2ik", _ZN15AbstractStorage4ItemD0Ev) +STUB( + "scacbbHJm0s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEE7add_refEv) STUB("scaro-xEuUM", sceFontGraphicsFillRatesSetLayout) +STUB("scb5kXMbsVU", _ZN12video_parser13cVideoMetaVWG18getMetadataBufSizeENS_12VP_META_TYPEEjPj) +STUB( + "scj4VyRr3oA", + _ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeaders15getLastModifiedEv) +STUB("scl7UXNelNQ", bdjbg_lock) +STUB("scmlDM8NafE", YGNodeCanUseCachedMeasurement) +STUB( + "scujyRfLgJQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEC2ERKS7_) STUB("scvqkMgVNz8", sceSrcUtilitySetPriority) +STUB("scvvgjccZqA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEEC1EPKS6_) +STUB("scwJ33x7R-k", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V111LeaveReasonEEEEptEv) +STUB( + "sczprp+lEq0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB( + "sd0VFVRQTDs", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "sd26VYH1XxI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEC1ERS7_) +STUB("sd7QPzwvdHg", _ZN13MsvMetaEditor24getTrackPresentationTypeEPj) +STUB("sd8GFcARuLg", _ZN7WebCore5Range13setStartAfterERNS_4NodeE) +STUB("sdAwPks5xqg", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110TaskStatusEEaSERKS7_) +STUB( + "sdBgzCncvP0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE3endEv) +STUB( + "sdDfPQUkm2I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEmmEv) +STUB("sdHfxDWFUEM", _ZNSt9basic_iosIcSt11char_traitsIcEED1Ev) +STUB( + "sdInE9Jwafo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEE3getEv) +STUB( + "sdLFPkrlwAQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "sdMi-PSQJ-c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEE7add_refEv) +STUB("sdNhOF-blVI", mono_aot_System_Windowsjit_code_start) +STUB("sdYVzaZgFbY", _ZN7WebCore12blobRegistryEv) +STUB( + "sdfWYcbdhTQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEE5resetEPS6_) +STUB( + "sdglkJ+4P1Y", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("sdiDyE-vZEc", _ZN7WebCore12SettingsBase26defaultMinimumZoomFontSizeEv) +STUB( + "sdirKzjsO1c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEC2EPS8_) +STUB( + "sdn3PoQJbao", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEixEm) +STUB( + "sdtfzKB1kZ8", + _ZN7WebCore14SocketProvider24createSocketStreamHandleERKNS_3URLERNS_24SocketStreamHandleClientEN3PAL9SessionIDERKN3WTF6StringE) STUB("se0KYvZSzg8", sceKeyboardGetHandle) +STUB("se3uU7lRMHY", _LExp) +STUB( + "se6DNF5ncjw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEEptEv) +STUB("seAPDWWOvGs", rethrow_exception) +STUB("seAwa3sHAnk", _ZNK3JSC8Debugger18isAlreadyProfilingEv) +STUB("seAwrHWgE5c", getSecondaryStreamNumByProtocolNumber) +STUB("seBa3svGA08", _ZN7WebCore18callerGlobalObjectERN3JSC9ExecStateE) +STUB( + "seBoSuoZ3T8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE5beginEv) STUB("seCvUt91WHY", sceHttpCookieFlush) +STUB( + "seE2KLYOKqU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("seFUsEpxwRs", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus20unsetLastUpdatedUserEv) +STUB( + "seHla5zR33Q", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitationsaSERS5_) +STUB( + "seN39M5xVEU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_17TitleCloudStorage2V19ConditionEEEEC2ERKS9_) +STUB("seNO2-2PWHg", _ZN3sce7Toolkit2NP2V27Ranking12RangeOfRanksD2Ev) +STUB( + "seUrmOZq5wQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE7reserveEi) +STUB("seWenhQWhj4", JVM_SocketShutdown) +STUB("seXSJqfktdM", _ZN3sce7Toolkit2NP2V24Core12ResponseDataC2ERKS4_) +STUB( + "sectGCpimr8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEE5resetEPS8_) +STUB("seiFdosfod4", _ZN9Inspector19InspectorAuditAgentD1Ev) +STUB( + "sevvF3I-cHM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEC2Ev) +STUB( + "seweWjLnG4c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEppEi) +STUB("seyrqIc4ovc", wctrans) +STUB("sf+zna6VqrE", _ZN3sce2Np9CppWebApi14ConnectAccount2V214PSNError_error14setReferenceIdEPKc) +STUB("sf0YhEryHTo", g_try_malloc) +STUB( + "sf1jWR4jvY0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEE11release_refEv) +STUB("sf3iS0NA+5Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEC1Ev) +STUB("sf3uzhc5TAY", monoeg_malloc0) +STUB("sfHiKXDuL1Y", rgctx_fetch_trampoline_mrgctx_74) +STUB("sfKygSjIbI8", _getdirentries) +STUB( + "sfR5TZ0-n3I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEC1EPS8_) +STUB("sfRXuOQix9A", _ZN3sce3Xml4AttrD1Ev) +STUB("sfRsq9Yq2Y8", glGetShaderiv) +STUB("sfT5pcH7Oic", mono_security_enable_core_clr) +STUB( + "sfUxLOimAQQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEeqERKS9_) +STUB( + "sfa1FQhtQAY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEC1EPKS8_) +STUB("sfb15YAkqP0", _ZN7WebCore19CryptoAlgorithmECDH18platformDeriveBitsERKNS_11CryptoKeyECES3_) +STUB("sfbs6MLi-vM", WKContextConfigurationProcessSwapsOnWindowOpenWithOpener) +STUB("sfhuVL3MA7Y", _ZN7WebCore7Element7matchesERKN3WTF6StringE) +STUB( + "sfiGuVx72hA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE5beginEv) +STUB( + "sfkG49UNAo4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE10setContextEPNS2_10LibContextE) +STUB("sfmawT-nIUc", cairo_create) +STUB("sfnZfLSFUwY", _ZN7WebCore11MathMLNames14backgroundAttrE) STUB("sfq23ZVHVEw", sceNpWebApiIntRegisterServicePushEventCallbackA) +STUB( + "sfqh+kqVp5I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE10setContextEPNS2_10LibContextE) +STUB( + "sfw1zSO4sd8", + _ZN7WebCore10FileHandleC2ERKN3WTF6StringENS1_14FileSystemImpl12FileOpenModeENS1_9OptionSetINS5_12FileLockModeEEE) +STUB( + "sfx5KAen5wU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE6resizeEj) +STUB("sfyF18YQz4s", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_20NpSessionInformationEE3getEv) +STUB("sfyZ8ToBf0M", _ZN7WebCore16DatabaseProviderD2Ev) +STUB( + "sg+2bwKIadk", + _ZN3JSC7JSProxy19getOwnPropertyNamesEPNS_8JSObjectEPNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("sg+qkgx+sQc", _ZN3WTF11Persistence5CoderINS_6StringEE6encodeERNS0_7EncoderERKS2_) +STUB( + "sg-NpW+3Um0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEED1Ev) +STUB( + "sg102dGsvp4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE5eraseENS2_8IteratorIS6_EERS9_) +STUB( + "sg5eJceJZGQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE21intrusive_ptr_sub_refEPS9_) +STUB("sgBm2G5A7pw", _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities5Error16referenceIdIsSetEv) +STUB( + "sgDT3DJKrr0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEED2Ev) +STUB("sgICbJoUPj4", WKUserMediaPermissionRequestGetTypeID) +STUB( + "sgJoEV3MRdw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEE7add_refEv) +STUB( + "sgLwzE+OmHU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE7reserveEi) +STUB( + "sgMNitDH2wk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEppEv) STUB("sgRPNJjrWjg", sceSystemServiceSetOutOfVrPlayZoneWarning) +STUB("sgTcvX09U94", _ZN7WebCore13AXObjectCache21gAccessibilityEnabledE) +STUB( + "sgV-YXq3v0A", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeaders24setXPsnAtomicOperationIdERKNS1_6Common6StringE) STUB("sgWeDrEt24U", sceNetCtlApAppStartWithRetryPid) +STUB("sgb3QwryREE", _ZN3sce7Toolkit2NP2V28Commerce14ProductDetailsC2Ev) +STUB("sgdGnQMxHrQ", _ZN7WebCore10ScrollView16setParentVisibleEb) +STUB("sggbcM+X2M0", u_foldCase_67) +STUB("sgh9D+MBBKA", _ZN3sce2np13JsonDocParser9GetResultEPPNS0_10JsonObjectE) +STUB("sghqnAxBHvA", _fini.completed) STUB("sgp3WWz043s", scePlayReadyCdmiRetrieveOpaqueDecryptedContent) +STUB( + "sgrAAXnn7ug", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEED2Ev) +STUB("sgs8U4KyQqo", _ZN3sce7Toolkit2NP2V27Session12Notification18InvitationReceivedC2Ev) +STUB( + "sgvWsLGBeHo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEED1Ev) +STUB("sgvza6LNOQU", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_20NpSessionInformationEED2Ev) +STUB( + "sh50jtUwQqQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEppEv) +STUB( + "sh6vVRtfoJk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE8capacityEv) +STUB("shAlo80wZCg", __cxx_global_var_init .32) STUB("shEE8O17TMI", sceAppInstUtilAppInstallMediaPlayer) +STUB( + "shGONc0fDsw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEED2Ev) +STUB( + "shMpjaG9PaU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE7reserveEi) +STUB( + "shSDUQaDkkA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "shY4L0uC6Wc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEC1EPKS8_) +STUB("shYTuH7J8ME", ulist_addItemEndList_67) +STUB( + "shawYWZUKRQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "shc+917EXXk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEC1ERS8_) +STUB( + "shjlN9-dkQ0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEEC1EPS8_PNS2_10LibContextE) +STUB("shn5GKv+7Rs", WKWebsiteDataStoreConfigurationSetCookieStorageFile) +STUB("shnIfcpPTFI", _ZN3sce7Toolkit2NP2V24Core13CallbackEventD1Ev) +STUB( + "shsyj1FfVkQ", + _ZN3sce2Np9CppWebApi7Matches2V118AddedPlayerFactory6createEPNS1_6Common10LibContextEPKcNS3_10PlayerTypeEPNS5_12IntrusivePtrINS3_11AddedPlayerEEE) +STUB("shuRTOL2pX4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEE3getEv) +STUB( + "shx880gc4LA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("si-4OZVQfeo", _ZNK3WTF10StringView25containsIgnoringASCIICaseERKS0_) STUB("si-TLaBGtdw", sceNpServiceChecker2IntCheckServiceFlagArray) +STUB("si-erRQV5ic", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_28ActivityFeedSharedVideoStoryEEneERKS4_) +STUB( + "si1Vll2Kodc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("si5AmqiLgyw", _ZN9Inspector15ScriptCallFrameC1ERKN3WTF6StringES4_mjj) +STUB("si5cGkRLSH8", png_longjmp) +STUB("si6oSGibQe0", umutablecptrie_buildImmutable_67) +STUB("si8k+sIOQxk", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIiEEEptEv) +STUB( + "siCOvQ4ICGc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEEaSERKSA_) +STUB( + "siHssYt72wE", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("siOnS0C7Quo", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEEptEv) +STUB( + "siWkeyN1Q9w", + _ZN7WebCore14ScrollableArea27scrollToOffsetWithAnimationERKNS_10FloatPointENS_14ScrollClampingE) +STUB("siWmRtGuWJ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEaSERKS7_) +STUB("siYafTIfQdU", _ZN3JSC22getInt32ArrayClassInfoEv) +STUB("sibdY9nhkvA", WKBundleSwitchNetworkLoaderToNewTestingSession) STUB("sieAbhcD2Bw", sceNpSnsYouTubeDialogGetStatus) +STUB("sieQ--PINWg", ERR_clear_error) +STUB("sifm7Y9VKQA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEppEi) +STUB( + "sihR8H0elUo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("sij3OtJpHFc", _Mbtowc) +STUB("sijsfM-blKs", uloc_getLCID) +STUB("sinmW4Wm6OQ", cairo_get_current_point) +STUB("sit3xZSmxGo", _ZNK7WebCore14SecurityOrigin23domainForCachePartitionEv) +STUB("sitYQh8tLL4", jpeg_idct_14x7) +STUB("sj2z5W3eMhE", _ZN7WebCore11MediaPlayer17resetMediaEnginesEv) +STUB("sj5t4TQtEB4", _ZN3JSC2VM14throwExceptionEPNS_9ExecStateEPNS_8JSObjectE) +STUB("sjDOTvQZaro", _ZN7WebCore4Page27setZoomedOutPageScaleFactorEf) STUB("sjDWp2xXEHw", ScePsmMonoProfilerLoad) +STUB("sjHE+m3Tx64", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getCurrentFrameRate) +STUB("sjHVQbtPfTg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEaSERS7_) +STUB( + "sjMCmMfiNRo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE4sizeEv) +STUB( + "sjNa43ZEbEA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEE6resizeEj) +STUB( + "sjNr7W+TIt8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V124GetPublicProfileResponseEEEEEEcvbEv) +STUB("sjO22SYzcAE", u_fgetlocale_67) +STUB("sjRyWirEJOI", _ZN7WebCore14FrameSelection19absoluteCaretBoundsEPb) +STUB("sjTK3TIOrRs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEC2ERS7_) +STUB( + "sjY8rXlFwIE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB( + "sjaM8+nUsh8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE5beginEv) STUB("sjaobBgqeB4", sceNpUniversalDataSystemInitialize) +STUB("sjiGCrWRJJU", fuse_fs_new) +STUB( + "sjlC0E0BTns", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEC2Ev) STUB("sjnIeFCuTD0", sceNpDeleteEventFlag) +STUB("sjpZIyT3CZc", YGNodeRemoveChild) +STUB("sjpkrhugvVI", _setjmp) +STUB("sjqt7A0BTmk", __asan_allocas_unpoison) +STUB( + "sjuglKCCqNs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEE7add_refEv) +STUB( + "sjybYaGtldc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEE11get_deleterEv) +STUB("sk-IXIIGdyc", getRegisteredDomain) +STUB("sk2KoFde7ag", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEEC2EPS5_PFvS7_EPNS2_10LibContextE) +STUB( + "sk4C--GnV6I", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEaSERKS9_) STUB("sk54bi6FtYM", sceNpWebApi2CreateUserContext) +STUB("skA+6x7XmJs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEED1Ev) +STUB("skEOZuLwrKg", _ZN7WebCore21JSTextTrackCueGeneric6s_infoE) +STUB("skIfr3+tx9E", _ZN7bmalloc15IsoHeapImplBase11didDecommitEPvm) +STUB("skPbQ0XoJLo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEEC2Ev) +STUB("skVQJ97OrRQ", mono_aot_System_Net_Httpmethod_addresses) +STUB("skWncvVzg68", mono_type_create_from_typespec) +STUB( + "skYVs-qyeIM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "skdS9HT9B7s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEixEm) +STUB("skdZ13AH6to", _ZN3sce7Toolkit2NP9Interface23unregisterEventCallbackEv) +STUB( + "skedv4DCNas", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE4sizeEv) +STUB("skipUpdQW1w", _ZNK7WebCore6Cookie4hashEv) +STUB("skkbXPiUNb4", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEEixEm) +STUB( + "skniY8iy+9Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEEptEv) +STUB("sksl7DuWb9c", WKWebsiteDataStoreGetTypeID) +STUB( + "skt3h9QRhAc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEEC2ERSA_) +STUB( + "skvvFtbUzoE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEE11get_deleterEv) +STUB("skxe5P3d0X8", + _ZN3sce2Np9CppWebApi14SessionManager2V126PlayerSessionMemberForRead8fromJsonERKNS_4Json5ValueE) +STUB( + "sl19nLank4w", + _ZN9Inspector27DOMStorageBackendDispatcher20removeDOMStorageItemElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("sl6kUtmc2jQ", _ZThn64_N7WebCore9FrameView17willEndLiveResizeEv) +STUB("slCSOYBcEOI", WKPreferencesSetMediaCapabilitiesEnabled) +STUB( + "slKr6Awrcus", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEppEi) +STUB( + "slKxJ2a4V0g", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEeqERKS9_) +STUB( + "slR87n-RYsE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEE3getEv) +STUB( + "slSjmCvfgD0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) STUB("slT42meZHBo", scePerfPmcUmcGetCounter) +STUB("slXxzNzcPrs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ResponseCooperativeResultEEmmEv) +STUB("slbyivqRTA0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEED1Ev) +STUB("slkUdcMYXaI", _ZN3JSC12importModuleEPNS_14JSGlobalObjectERKNS_10IdentifierENS_7JSValueES5_) +STUB( + "slkhBwNISxo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEdeEv) STUB("slkr1eWM1o8", sceApplicationLocalProcessSuspend) +STUB( + "slmFu5tIaG0", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemProperties58setpatchPlayerSessionsSessionIdMembersAccountIdRequestBodyENS1_6Common12IntrusivePtrINS3_55PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEE) +STUB("slmKkuIoC28", _ZN3sce2np10EventQueue5AbortEt) +STUB("slrgdUEeSj0", _ZN3sce7Toolkit2NP2V26Trophy15TrophyPackGroupC1Ev) +STUB( + "slsTBcn+s84", + _ZNK3sce2Np9CppWebApi14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBody16customData1IsSetEv) +STUB( + "slvvHT5LSEw", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody20setInvitableUserTypeERKNS3_23CustomInvitableUserTypeE) +STUB( + "slxJLGRy4qc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEED2Ev) +STUB( + "sm+o3cBeHk4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEC1Ev) +STUB("sm-jHBB+qao", _ZN3sce7Toolkit2NP2V210Tournament17TournamentEventIdD1Ev) +STUB("sm2gEcdUZjE", _ZN7WebCore20ResourceResponseBase25sanitizeSuggestedFilenameERKN3WTF6StringE) +STUB( + "sm6c31lxIrU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEppEv) +STUB( + "sm9NBbc2yow", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("smCpmvwKDVQ", WKPreferencesCreateCopy) +STUB( + "smGvLcA3nVY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEE11release_refEv) +STUB("smIj7eqzZE8", clock_getres) +STUB( + "smMwBnzHdH0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEmmEi) STUB("smQl0Bi1Ick", scePfsGetPreadBlockRange) +STUB( + "smTG2kPpGp8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEC1ERS7_) +STUB("smU-F8Y1zfs", _ZN7WebCore14SecurityPolicy18setLocalLoadPolicyENS0_15LocalLoadPolicyE) +STUB( + "smUYzLBhGeU", + _ZN9Inspector25DebuggerBackendDispatcher8stepNextElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) STUB("smWEktiyyG0", scePthreadMutexattrDestroy) +STUB( + "smXWd+gI2CU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEppEv) +STUB( + "smac8ux7jYI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEmmEi) +STUB("smbQukfxYJM", getenv) +STUB( + "smdLM5IuE7Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEppEi) +STUB("smdd1xjT6lk", _Wcscollx.initial) +STUB("smds+4HUjns", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEC2EPS8_) +STUB("smeljzleGRQ", _ZTIc) +STUB( + "smjpaCqCn2s", + _ZN3sce7Toolkit2NP6Trophy9Interface22trophyRetrieveProgressEPKNS1_33RetrieveUserTrophyProgressRequestEPNS1_9Utilities6FutureI19SceNpTrophyGameDataEEb) +STUB("smpeN8iWrcc", cairo_move_to) STUB("smqnBlj5tfk", sceHidControlGetAuthInformation) +STUB( + "smtdpDToNuA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEE7get_refEv) +STUB( + "smwAAHq-Q-o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEED2Ev) +STUB("smwyQcAh3tk", _ZN7WebCore18PlatformPasteboard5writeERKN3WTF6StringES4_) +STUB("smzJ80M7lMs", uhash_compareIChars_67) +STUB("sn-GBuOk8zk", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus13unsetObjectIdEv) +STUB( + "sn0QDUaWm1g", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE5beginEv) +STUB( + "sn3YLJS815Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEEdeEv) +STUB("sn4HNCtNRzY", _ZNK3sce4Json5Value11getUIntegerEv) +STUB( + "sn6k0KPkb6g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEC2Ev) +STUB( + "sn7AM6cWKpU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEE3getEv) +STUB("sn82hoI2VTo", ulistfmt_format_67) +STUB("snJVFfQAH8o", _ZN3WTF16AtomicStringImpl3addEPKNS_10StringImpl16StaticStringImplE) STUB("snOzH0NQyO0", sceUserServiceSetFaceRecognitionDeleteCount) +STUB("snRhWp5iOYc", _ZN7WebCore11HistoryItem20setOriginalURLStringERKN3WTF6StringE) +STUB( + "snUone92hj8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEED1Ev) +STUB("snVIK-VDeCo", _ZN7WebCore11MemoryCache14evictResourcesEv) +STUB( + "snWcGhO1omE", + _ZN3sce2Np9CppWebApi14SessionManager2V141GetUsersAccountIdGameSessionsResponseBody15getGameSessionsEv) STUB("snYs7Nf-RKk", sceVrTracker2GetPlayAreaOrientedBoundingBox) +STUB( + "snbJkdRE2cQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) STUB("sng98qULzPA", sceNpTrophyIntGetLocalTrophySummary) +STUB("sngv+7kclEc", _ZNK7WebCore13HitTestResult14innerNodeFrameEv) +STUB("snld9-av8Vw", mono_conc_hashtable_insert) +STUB("snloJp6qQCc", _ZN3sce2npgtERKNS0_4TimeERK10SceRtcTick) +STUB("snrg9ysE6-k", _ZNK3JSC7JSValue16toObjectSlowCaseEPNS_14JSGlobalObjectE) +STUB( + "sns+-2vq4g4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEixEm) +STUB("snvSTMmFd2U", + _ZN15AbstractStorage18DailymotionStorageC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("snwyFJq9ONg", mono_get_double_class) +STUB("so7o-HhMCU0", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi32ParameterToPostGameSessionsTouchD1Ev) +STUB("so8sDM5GdaE", unorm2_getNFKCInstance_59) STUB("soAIjspgdt8", sceVideoOutDriverResetBufferLabel) +STUB("soCTtsk3Nuo", _ZN7WebCore22colorWithOverrideAlphaEjf) +STUB("soJYW9FTRvU", _ZN3sce7Toolkit2NP2V210Tournament7Request12SearchEventsC1Ev) +STUB("soLdLb-erpM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEaSERS7_) +STUB( + "soP-6bpJvP0", + _ZN9Inspector22PageFrontendDispatcher14frameNavigatedEN3WTF6RefPtrINS_8Protocol4Page5FrameENS1_13DumbPtrTraitsIS5_EEEE) +STUB( + "soPYwCnlM6U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEED1Ev) +STUB("soWa0pMndTM", SSL_get1_session) STUB("soXFgC22q8c", sceCesUcsProfileInitIso2022JpRfc1468) +STUB( + "soaEbLQwAu4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEEC1ERKSA_) +STUB("sobnH40rWwo", _ZN12video_parser17cVideoOperatorMp4D2Ev) +STUB("soe0UNVVm5k", JVM_DumpThreads) +STUB("soe8n0cgXbI", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11TusVariableEE7addressERS3_) +STUB("soeZLyjPkcA", _ZNK3sce2Np9CppWebApi7Matches2V118CreateMatchRequest6toJsonERNS_4Json5ValueEb) +STUB("soiXa1AXb90", jpeg_finish_compress) STUB("soq7GTbVMkw", sceShellCoreUtilIsBgmCpuBudgetAcquired) +STUB( + "soqr0pX-AfA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEC2EPNS2_10LibContextE) +STUB("souvIsqYHkg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEE7add_refEv) +STUB("sowzvTN5IkQ", _ZNK3WTF10StringView23convertToASCIILowercaseEv) +STUB("soxJ6tUOKC0", _ZN7WebCore18PluginInfoProvider7addPageERNS_4PageE) +STUB("soyX4A8RqBc", _ZN3JSC8JSObject12setPrototypeEPS0_PNS_9ExecStateENS_7JSValueEb) +STUB( + "sozOJWiUtAg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEmmEi) +STUB("sozuXSdm-Rk", _ZThn136_N7WebCore9DOMWindowD0Ev) +STUB( + "sp1qCZ7aFwk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEC2ERS7_) +STUB("sp7j+b8Tx3Q", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer7getsortEv) +STUB("sp8661+AcEI", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsD2Ev) +STUB("sp8rujVUiVA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEaSERS7_) +STUB( + "spEIuAErUjE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEC1EPNS2_10LibContextE) +STUB( + "spKmDDXh9Qk", + _ZN9Inspector17BackendDispatcher12sendResponseElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEEb) +STUB("spLNXZdR-XQ", uloc_getDisplayKeywordValue) +STUB( + "spMyeJazoxo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEppEv) +STUB("spOa93PWZk8", + _ZN3WTF10ParkingLot13unparkOneImplEPKvRKNS_12ScopedLambdaIFlNS0_12UnparkResultEEEE) +STUB( + "spRFys4loPA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEC2EPS8_) +STUB("spRPDDCYuXw", _ZN7WebCore11MathMLNames16mmultiscriptsTagE) STUB("spW--yoLQ9o", sceUserServiceUnregisterEventCallback) STUB("spdS-hedavE", sceVoiceChatInitialize) +STUB("spf5UNA3IyE", _ZN12video_parser5vpcom3rtc19TickAddMicrosecondsEPmPKml) +STUB("spfLzPwvZxs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEE3getEv) +STUB("spg8MujSU44", + _ZN3sce7Toolkit2NP15CommunicationIdC1ERKSbIcSt11char_traitsIcENS1_15AppSTLAllocatorIcEEES9_S9_) STUB("spjcxyNX-KE", sceAmprAmmCommandBufferModifyProtectWithGpuMaskId) +STUB("splBMMcF3yk", _ZNSt7collateIcEC1EPKcm) +STUB("splXjoRt+jY", WKBundleNodeHandleCopySnapshotWithOptions) +STUB( + "spm6LuJNpV4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V212PartnerTokenEEEEEEC2ERKSA_) STUB("spov0bD6PpM", sceMatUpdateModuleList) +STUB("spsjzV2pTSc", + _ZN15AbstractStorage7Service11NextStorageERSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("spsqcVlnWHg", ztrans_getFrom_67) +STUB("sptP0R+70K8", _ZN7WebCore9FrameView37updateLayoutAndStyleIfNeededRecursiveEv) +STUB("sq0tL84dvR4", _ZN7WebCore12SettingsBase28defaultTextAutosizingEnabledEv) +STUB("sq2WIFm9wYY", mono_aot_Sce_Vsh_Np_AppInfounwind_info) +STUB("sq4hb-Vo1+0", _ZN3JSC14ProtoCallFrame8argumentEm) +STUB("sqAWie7Wryo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEE11release_refEv) +STUB("sqBiG3IG7O0", mono_aot_SMDiagnosticsunbox_trampolines) +STUB("sqEJZ2yMVNw", FcDefaultSubstitute) +STUB("sqEXNciZQjg", _ZN3JSC7Options16s_defaultOptionsE) +STUB("sqHPGs5Yn0Q", _ZN3JSC7Symbols20sameValuePrivateNameE) +STUB("sqKhTikzfNA", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_7NpUsersEED1Ev) +STUB("sqNxD6H5ZOQ", _ZN3sce2np9HttpTransC1EP16SceNpAllocatorEx) +STUB( + "sqR0uAG41-I", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEiRNS2_10LibContextEPT_m) +STUB("sqS31+ABfJQ", ures_countArrayItems) +STUB("sqWytnhYdEg", _ZNSt8ios_base4InitC1Ev) +STUB( + "sqZiaga6P7M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V15ErrorEEEEEEcvbEv) +STUB( + "sqaadtpAMvI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEcvbEv) +STUB( + "sqb45u3vTSI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEEC2Ev) +STUB("sqd6qrPkmyk", rgctx_fetch_trampoline_rgctx_35_p) +STUB("sqgmtOXwL-A", mono_aot_I18N_MidEastunwind_info) +STUB( + "sqhBcLlrrT4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("sqi-3HC0EJE", _ZN3JSC8JSObject12getPrototypeEPS0_PNS_9ExecStateE) +STUB( + "sqi5rzeiIsg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEED2Ev) +STUB( + "sqj88aIy8DA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEppEi) +STUB( + "sqlOYCjqiAY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEED2Ev) +STUB( + "sqrMUCHQbCI", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEEC2ERKSF_) +STUB("sqsMyl+M20c", WKPreferencesSetApplePayEnabled) +STUB( + "sqv5cRXIYa4", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetrics17setPacketLossRateERKi) +STUB("sqvt2GyexGg", jpeg_idct_13x13) +STUB("sqyhd5-36Ok", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEE5clearEv) +STUB( + "sr-LrxtZMGg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEcvbEv) STUB("sr095NLKaAc", sceShareUtilityAdvanceResetPlayingContent) +STUB( + "sr0BBAAdsv0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEmmEi) +STUB( + "sr6voujVpz4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEC2EPS8_) +STUB("sr7s8OJgsiI", + _Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm14SpiPerfCounterE20SceRazorGpuBroadcast) +STUB("srEqyHOsfFg", _ZN7WebCore22contextMenuItemTagBoldEv) +STUB( + "srFlhjVa5Q8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEEcvbEv) STUB("srJHx3p48v0", sceSlimglCompositorDeleteIndirectRenderTarget) +STUB("srJj-3x1CkA", _ZN9Inspector23WorkerBackendDispatcherD0Ev) +STUB("srO2Ejihv7A", mono_aot_Sce_Vsh_VideoFramework_Platformjit_code_start) +STUB( + "srOcBw9r8io", + _ZN9Inspector14ConsoleMessageC2EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelERKN3WTF6StringEONS5_3RefINS_15ScriptArgumentsENS5_13DumbPtrTraitsISA_EEEEPNS1_9ExecStateEm) +STUB("srP5JTU5gpg", GCC_except_table434) +STUB("srbMS5I5r+w", _ZN7WebCore14ScrollableArea15contentsResizedEv) +STUB("srbUZoGRVXA", _ZTVN4IPMI7SessionE) +STUB( + "srbWnHQ6hX8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEE3getEv) +STUB("srcPt2vU6ok", _ZN3JSC4Heap20protectedObjectCountEv) +STUB("sreH33xjV0A", _ZNK3sce2np9Semaphore6IsInitEv) +STUB( + "sripLDA6OB0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEC2EPS6_PNS2_10LibContextE) +STUB("srk2C1Dh6ac", utrans_getUnicodeID_67) +STUB("srmkzHu3vQA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEED1Ev) STUB("srnAu7m5VKk", sceMatResizeCommsBuffer) +STUB("srsNBr6bNGk", mono_aot_System_Net_Http_WebRequestplt_end) +STUB("srwl1hhFoUI", _ZNSt10filesystem7_RenameEPKcS1_) +STUB("srylh7myPrc", _ZThn152_NK7WebCore8Document11completeURLERKN3WTF6StringE) +STUB("srzSVSbKn7M", isxdigit) +STUB("ss-Gb0pTkfg", _ZN3WTF6Thread15allThreadsMutexEv) +STUB("ss1xGhJRunI", _ZNK3sce2Np9CppWebApi11Matchmaking2V15Error7getCodeEv) STUB("ss2xO9IJxKQ", sceNpCondTimedwait) +STUB( + "ss3Tv1Bw3gc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE7popBackEv) +STUB( + "ss4ICbG0bb4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEE11get_deleterEv) +STUB("ss9kEt9oNt8", _ZN3sce7Toolkit2NP2V212NetworkUtils12Notification14NetStateChangeC2Ev) +STUB( + "ssFWO7eplx8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEC2Ev) +STUB( + "ssHAvsKkRdc", + _ZN9Inspector22InspectorDebuggerAgent19evaluateOnCallFrameERN3WTF6StringERKS2_S5_PS4_PKbS8_S8_S8_S8_S8_RNS1_6RefPtrINS_8Protocol7Runtime12RemoteObjectENS1_13DumbPtrTraitsISC_EEEERNS1_8OptionalIbEERNSH_IiEE) +STUB("ssIzVl7hH8g", mspace_malloc) +STUB("ssKWX2KjGGs", _ZN3sce7Toolkit2NP2V29Messaging7Request19SendGameDataMessageD1Ev) +STUB("ssNlwZtVGgY", _ZNK7WebCore7Element28getUnsignedIntegralAttributeERKNS_13QualifiedNameE) +STUB("ssOYh2vfiQs", _ZN7WebCore17CharacterIterator7advanceEi) STUB("ssOcL1iqcTE", sceDepth2GetImage) STUB("ssRp1pDeUB0", sceOpusCeltEncTerminate) STUB("ssSRZ-3Dh5w", sceAppInstUtilAppDestroyPkg) +STUB( + "ssZfxyK1H7U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEC2ERS7_) +STUB("ssfpN9JL3jE", _ZTVN7bmalloc11IsoTLSEntryE) +STUB("sshzsz+pttE", _ZN3sce2Np9CppWebApi13InGameCatalog2V511ErrorEntity8fromJsonERKNS_4Json5ValueE) STUB("ssmH9nMYO4o", sceKernelGetCpuUsage) +STUB( + "ssrj8w9flLM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEmmEv) +STUB("ssxeVRrB1u8", mono_aot_System_ServiceModelplt_end) +STUB("st-oQvV7HVI", _ZNK3sce2np9EventFlag6IsInitEv) +STUB("st0OJ4GSnT4", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V15Error16unsetReferenceIdEv) +STUB( + "st4kdjpNEYk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("st7OEVdTjoE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEEC1Ev) +STUB( + "stC+UpwiV0E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE21intrusive_ptr_sub_refEPS9_) STUB("stDSYW2SBVM", sceGnmDrawOpaqueAuto) +STUB("stJKr+gjsv0", _ZN4Manx9X509chainC1EPKS0_) +STUB("stL5F2l-AII", rgctx_fetch_trampoline_rgctx_125_p) STUB("stQ7AsondmE", sceHmdInternalSeparateModeSendAudio) +STUB( + "stU0QFRDG8A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEC1EPNS2_10LibContextE) +STUB("stUzNgtFmtY", _ZN3sce2np3ipc17ServiceIpmiClient15RegisterServiceEPKNS1_17ServiceClientInfoE) +STUB("stV-zlmkiGE", il2cpp_bounded_array_class_get) +STUB( + "stW0gWLtgsM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEE8pushBackERKS8_) +STUB("stegXBPbxWE", _ZN3JSC4Heap9unprotectENS_7JSValueE) +STUB("stfN9HXNUWU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V112OnlineStatusEEaSERKS7_) +STUB( + "stjm4dCg1Lg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEC2ERKS7_) STUB("stlghnic3Jc", sceAjmBatchJobInlineBuffer) +STUB("stopIxEckAY", uprv_dl_open_67) +STUB("sttlr6e-LsI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEEC1Ev) +STUB("stv1S3BKfgw", _Wctombx) +STUB("stwPblrV7vk", u_strFromUTF8_67) +STUB("su0zXmF7Cto", _ZN7WebCore15SQLiteStatement7bindIntEii) +STUB("su119CyR5HM", uprv_isInvariantUString_67) +STUB("su3S99ot9hg", _ZN7WebCore16TrackPrivateBasedlEPv) +STUB("su65s8-rLsk", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead20getInvitableUserTypeEv) +STUB("su69HT3GxaY", _ZN3WTF11weekdayNameE) STUB("su7jW3VDDb4", sceNpUniversalDataSystemGetMemoryStat) +STUB( + "su9jNTbI31M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEE8copyFromERKS9_) +STUB("suAZ4dOD80U", udata_getRawMemory_67) +STUB("suBXoV90W+A", _ZN3JSC7Symbols21awaitValuePrivateNameE) +STUB("suBcgvSkEcM", _ZTVN12video_parser13cVideoMetaMP4E) STUB("suCrEbr0xIQ", pthread_attr_setstackaddr) +STUB( + "suDMbVWUAIc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEED2Ev) +STUB( + "suFLEjYWZqU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE5beginEv) +STUB( + "suFf7cB2y0o", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("suFjXqXcAxM", _ZN7WebCore11DisplayList8DrawPathD0Ev) +STUB( + "suRAu5LfwY8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEptEv) STUB("suUlSjWr7CE", sceGnmSdmaGetMinCmdSize) +STUB("suaBxzlL0p0", _ZNSt9_Num_base5trapsE) +STUB( + "suar0nu4gsg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE5emptyEv) +STUB("suczT1Sa7kc", _ZN7WebCore18ImageBufferBackendD0Ev) STUB("sudDy2ctXmc", sceVencCoreQueryMemorySize) +STUB( + "suecKJzc7sQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE21intrusive_ptr_add_refEPS9_) STUB("sukPd-xBDjM", sceUserServiceGetMouseHandType) +STUB( + "sulCsR56mto", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEEC1ERKSA_) +STUB("sutMXpKgCr0", _ZN3JSC29callHostFunctionAsConstructorEPNS_14JSGlobalObjectEPNS_9CallFrameE) +STUB("suww6V0qqpU", cairo_scale) +STUB("suxln7PooIo", _ZN3sce2np10EventQueue7DequeueEPvmj) +STUB("sv+XaoHkUIk", WKPreferencesGetCaretBrowsingEnabled) +STUB("sv84XKn8F-Q", _ZN3JSC15createEvalErrorEPNS_14JSGlobalObjectERKN3WTF6StringE) +STUB( + "sv9WjXW3zVQ", + _ZN3sce2Np9CppWebApi11UserProfile2V132GetBasicPresencesResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_25GetBasicPresencesResponseEEE) +STUB("sv9yvbNVpAs", getDecryptionKeys) +STUB("svAQxJ3yow4", _ZN3sce2npgeERKNS0_4TimeES3_) +STUB("svCbPg09I3s", ucnv_MBCSIsLeadByte_67) +STUB("svFP+RQpUbk", _ZNK7WebCore11MediaPlayer6pausedEv) +STUB("svIkqWCw-LU", _ZN3WTF14createIteratorENS_10StringViewE) +STUB("svL3d4oO8uQ", + _ZN3sce2Np9CppWebApi12Leaderboards2V113ErrorResponseC2EPNS1_6Common10LibContextE) +STUB("svM8Dv6w8Ns", delegate_virtual_invoke_imt_21) +STUB("svNh5xr4zew", _ZN3sce7Toolkit2NP2V28Commerce13CategoryLabelC2Ev) +STUB("svVC24WHdNo", rgctx_fetch_trampoline_mrgctx_0) +STUB( + "svY6+7lTPdw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEEC1EPS5_PFvS7_EPNS2_10LibContextE) STUB("svZJHZRDQm4", sceDevUsbReadHost) +STUB("svoejwB+4xk", _ZN12video_parser17cVideoOperatorEtsD2Ev) +STUB( + "svqKVshd3Fg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("svtevndvMLo", + _ZN3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayer15getPushContextsEv) +STUB("svwNDrtDkgI", _ZN10Deprecated12ScriptObjectC1EPN3JSC14JSGlobalObjectEPNS1_8JSObjectE) +STUB("svygVJARrD4", ucpmap_get) +STUB("sw2+TzZR71g", glGetFramebufferAttachmentParameteriv) +STUB( + "sw5wrgxobVg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEEC1ERSA_) STUB("sw65+7wXCKE", sceFontSetScalePoint) +STUB( + "sw6epkZvIWo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEED1Ev) +STUB("sw98L1MbqpM", uloc_setKeywordValue) +STUB("sw9MM-C5WjQ", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26RecordScoreResponseHeadersC2ERS5_) +STUB( + "swFQ96weUt8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE5emptyEv) +STUB( + "swHHoWHZM4g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "swHKuLc5O+c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEC2EPS8_) +STUB("swIuchTFP9A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEEaSERKS7_) +STUB( + "swM6ikjd0M4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEdeEv) +STUB("swYSTbBmwXo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEC1ERS7_) +STUB( + "swZN1Y3yDH8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEdeEv) +STUB( + "swaj+F+XnAs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEC1EPS8_) +STUB("swbWGPtTGMc", _ZN3sce7Toolkit2NP2V27Session7Request7GetInfoC1Ev) +STUB( + "swdXFJPwt2A", + _ZN7WebCore13JSDOMRectList25getOwnPropertySlotByIndexEPN3JSC8JSObjectEPNS1_9ExecStateEjRNS1_12PropertySlotE) +STUB("swipd-HACPk", _ZN3sce2Np9CppWebApi13InGameCatalog2V55ImageD2Ev) +STUB("swrIPzOxcmM", FT_Get_Module) STUB("swrsxmobY1c", sceDeci4hWrite) +STUB( + "sx-mGnQPyeg", + _ZN3WTF9URLParser9serializeERKNS_6VectorINS_12KeyValuePairINS_6StringES3_EELm0ENS_15CrashOnOverflowELm16ENS_10FastMallocEEE) +STUB("sx1OJpJQNKo", uprv_dl_close) +STUB( + "sx1xlEpYTwE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEE5resetEPS9_) +STUB("sx2zpRS6VjA", _ZN7WebCore16NetworkSendQueue7enqueueERNS_4BlobE) +STUB("sx6QhgD1ziw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEE11get_deleterEv) +STUB( + "sxD6kwNBzRs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEEaSERKS9_) STUB("sxHajJOslN0", sceNpIsCEX) +STUB("sxI9MUSKmsM", _ZN3JSC4Yarr20unicodeMatchPropertyEN3WTF6StringE) +STUB( + "sxLb3u25nE4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEEC2ERKS9_) +STUB( + "sxLwFHn5PEg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE5emptyEv) +STUB( + "sxMMUypRB7Y", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEE8capacityEv) +STUB( + "sxOcoGEYEZw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "sxOiOj-0vVw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "sxW66ReQFS4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("sxWLqDD3iHw", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEED1Ev) +STUB( + "sxZYBM8gJ2A", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE8capacityEv) +STUB("sxavOcVMOFA", _ZN3WTF14FileSystemImpl24fileSystemRepresentationERKNS_6StringE) +STUB( + "sxcCNkdS4bg", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM23AccessibilityProperties7CheckedEEESt8optionalIT_ERKN3WTF6StringE) +STUB("sxeCh1gYUVI", _ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_6Path2DE) +STUB( + "sxhfgg4mpBQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "sxiE6NW4+7c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("sxy+SswdQ+Y", _ZN7WebCore37contextMenuItemTagOpenLinkInNewWindowEv) +STUB( + "sy-dc4+KByg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEE11get_deleterEv) STUB("sy3PioM8TPE", sceNpAppLauncherTerminate) +STUB("sy56JOeQbHk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEdeEv) +STUB( + "sy5UxtyfClk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("sy62mPCxbTs", _ZN9Inspector15AsyncStackTrace21willDispatchAsyncCallEm) +STUB( + "sy8FQX9uB7s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEED1Ev) +STUB("syAWYDf3bMU", mono_aot_Mono_Data_Tdsplt) +STUB("syDD+xcUmEs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEED1Ev) +STUB("syERpIZ2gV4", mono_aot_System_Xml_Serializationunbox_trampolines_end) +STUB("syGFFMBNH2g", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEED1Ev) +STUB("syK5g6mvSX8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEC1Ev) +STUB( + "syNsPZoTyhc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB("syQ-XzzyAmI", + _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody9setStatusERKNS3_12TicketStatusE) +STUB("sySDeo6O57s", u_flushDefaultConverter_67) +STUB( + "sySG4MR0gZU", + _ZNK3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead20getReceivedTimestampEv) +STUB( + "sySLKh3I3qU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEC2EPS6_PFvS8_EPNS2_10LibContextE) STUB("syTFGqfBLQE", sceLibcMspaceCheckMemoryBounds) +STUB("syTSeH+lXfQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEE3getEv) +STUB("syUI9dod+FM", rgctx_fetch_trampoline_rgctx_99) +STUB("syViOKKpLXU", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15PlayedWithStoryEEC2Ev) +STUB("syWd-JCitpo", glVertexAttrib1fv) +STUB("sydJTxUiLLI", ShCompile) +STUB("syjHZRA2aiE", mono_aot_Sce_Vsh_Np_Managerunbox_trampolines) +STUB("syjfXIZi0+8", _ZNSt9_FacetptrISt10moneypunctIwLb0EEE6_PsaveE) +STUB("sylevnx-fqk", FTA_Support_Format_OpenType) +STUB("syqL4ibxyo4", _Z27sceRazorGpuThreadTraceStartPN3sce3Gnm21DispatchCommandBufferE) STUB("sysY2FHYff4", sceNpTrophy2DestroyContext) +STUB( + "syt4bZFBAhY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEC2Ev) STUB("sywg-RnhZMA", sceRegMgrSrvGetRegion) +STUB( + "sz0R08lhAac", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEEC2Ev) +STUB("sz5oQE2fWWg", _ZN3JSC2VM19int16ArraySpaceSlowEv) +STUB("sz8I4nYCVl8", + _Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm15PaScPerfCounterE20SceRazorGpuBroadcast) +STUB( + "szB8HRqzsaY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEmmEv) STUB("szEVu+edXV4", sceRudpInitiate) STUB("szG7hz2yEhA", sceAgcAcbPrimeUtcl2) +STUB("szJ8gsZdoHE", CERT_CompSubjectAltNames2) +STUB( + "szOv05+9UAg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEEdeEv) +STUB("szUTqQasrxo", __asan_load_cxx_array_cookie) +STUB("szUft0jERdo", _Tan) +STUB( + "szXxCGvOLgQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEC1EPS8_) +STUB("szZTWmnOwpI", _ZN3sce7Toolkit2NP2V212EventsClient22EventOfficialBroadCastD1Ev) +STUB("szg0-nj983E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE8copyFromERKS9_) +STUB( + "szh23cI8erY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEEdeEv) +STUB( + "szmwrItrPwo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEE5resetEPS9_) +STUB( + "szogrF491Qw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEppEi) +STUB( + "szqw7Af0otQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("szwrXfLPPlE", + _ZN7WebCore22EmptyFrameLoaderClient21didRunInsecureContentERNS_14SecurityOriginERKN3WTF3URLE) +STUB( + "t+0u+F+QcCk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEC2Ev) +STUB( + "t+3dIjfjYHo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE10setContextEPNS2_10LibContextE) +STUB("t+6tvd72XNE", WKCertificateInfoGetCertificateChainSize) +STUB("t+Dx3eQtBPQ", _ZNK3sce4Json6String5rfindEcm) +STUB("t+NmJaH41H0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V510AnnotationEEC1EPS6_) STUB("t+O8mxM6oSg", sceAvSettingAddCallbacks) +STUB("t+Q+yseJEAY", _ZNK3sce2Np9CppWebApi7Matches2V15Error11reasonIsSetEv) +STUB("t+T8UG8jats", _ZN3sce2np12NpHttpClientC2EP16SceNpAllocatorEx) +STUB("t+Ud3L1cDv0", monoeg_g_path_get_basename) +STUB("t+YcylFcfaA", + _ZN3sce2Np9CppWebApi11UserProfile2V119BasicProfileFactory7destroyEPNS3_12BasicProfileE) +STUB( + "t+c4ihEfykU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEED1Ev) +STUB( + "t+ewoY+XQjE", + _ZN3sce2Np9CppWebApi6Common23UpDownStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextEm) +STUB( + "t+iFDGd+o3s", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB( + "t+k7XSB1eF0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEC2Ev) +STUB( + "t+kFLeYqs+o", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session12Notification18InvitationReceivedEE19setCustomReturnCodeEi) +STUB("t+rTx5NW+qU", __sys_socketclose) +STUB("t+t0roe8hm8", invpio2lo) +STUB("t+us0ywW1tA", izrule_getStaticClassID_67) +STUB("t+wyvrLa-78", _ZN3sce2Np9CppWebApi11Matchmaking2V116AttributeFactory7destroyEPNS3_9AttributeE) +STUB("t-19whstaJk", _ZN7WebCore11DisplayList7RestoreD1Ev) +STUB( + "t-2Gf4IBiJA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEC2Ev) +STUB("t-7LW7iYP3w", mono_aot_Sce_Vsh_CloudClientmethod_addresses) STUB("t-9Ij2BOB34", sceDevUsbAddHostStreamKevent) STUB("t-BDxreA7sU", sceAvSettingSetVideoOutModeAny_) +STUB("t-Fwv83WoZ0", _ZN3WTF17charactersToFloatEPKhmRm) STUB("t-I2Lbj8a+0", sceUserServiceGetShareDailymotionRefreshToken) +STUB( + "t-IpsrCv2WY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEneERKS9_) +STUB("t-LReqPs1TU", _ZN7WebCore21JSRemoteDOMWindowBase7destroyEPN3JSC6JSCellE) +STUB( + "t-NCm4dRPl0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEeqERKS9_) +STUB("t-RJTDVo3WU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE6resizeEj) +STUB("t-XZYsp1+Yg", + _ZN12video_parser16cVideoContentMp414getDrmInstanceEPPNS_9iVideoDrmENS1_16InitializeMode_eE) +STUB( + "t-YO0GlpdOE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEC1EPNS2_10LibContextE) +STUB( + "t-aIljxeVOY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEE7get_refEv) +STUB("t-hL9pkzNqs", utrace_exit) +STUB( + "t-ixhcbMo0A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE7reserveEi) +STUB( + "t-lXb5q9LbI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEC1Ev) +STUB("t-lgJRT2GeA", _ZNK7WebCore4Node10shadowHostEv) +STUB("t-nd5-w3HN0", rgctx_fetch_trampoline_rgctx_115) +STUB("t-qktupt2bk", delegate_virtual_invoke_imt_8) +STUB("t-qt2vUwvKA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEED1Ev) +STUB( + "t-tNMj1vbVw", + _ZN3sce7Toolkit2NP2V24Auth10getIdTokenERKNS3_7Request10GetIdTokenEPNS2_4Core8ResponseINS3_7IdTokenEEE) STUB("t-vIc5cTEzg", sceGnmDriverInternalRetrieveGnmInterfaceForValidation) STUB("t-xwlN+36QQ", sceMoveGetBluetoothAddress) +STUB("t01PPnyXwTY", + _ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead11setOnlineIdERK13SceNpOnlineId) +STUB( + "t01q5wkbDpY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEppEi) STUB("t04S4aC0LCM", sceUserServiceGetParentalBrowser) +STUB("t04gsObcCZ0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEcvbEv) +STUB( + "t08m4z6iyaE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEED1Ev) +STUB( + "t091XfeKHng", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi23getMultiVariablesByUserEiRKNS4_34ParameterToGetMultiVariablesByUserERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_29GetMultiVariablesResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("t0BDAdteenQ", AnnotateRWLockCreateStatic) +STUB("t0CMZQnA74Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEED2Ev) STUB("t0HIQWnvK9E", sceGnmDebuggerReadSqIndirectRegister) STUB("t0P5z5yuFPA", sceNpWordFilterDeleteTitleCtx) +STUB("t0QQEaFsC-M", ures_getFunctionalEquivalent) +STUB( + "t0RkpipoC1E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEED2Ev) +STUB( + "t0Uli1p6rYA", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser30unsetxPsnAcceptPlatformNamePs5Ev) +STUB( + "t0Upc-BAuQs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEED1Ev) +STUB("t0W8-TBYlXc", jpeg_read_scanlines) +STUB( + "t0YI6m3brqI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("t0ZlQjKCRC0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11SessionDataEED2Ev) +STUB("t0dsowseKjE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEEC2ERS7_) +STUB("t0eLBGKYT1E", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy17TrophyPackSummaryEED1Ev) +STUB("t0fXUzq61Z4", _fcntl) +STUB("t0gtqDVSszU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEC1Ev) +STUB("t0mZZZf98ck", Java_java_awt_GnmGraphics_nativeFillArc) +STUB( + "t0nsVfANzIs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEC1Ev) +STUB("t0sljfEfaQs", ztrans_close_67) +STUB("t0xDVZkT36o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE3endEv) STUB("t0z87PlggWI", sceWorkspaceIsUpdatePending) +STUB( + "t1-CMuVEVVw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("t14djbbLe0U", mono_gc_wbarrier_object_copy) +STUB("t1BD8Fwyk5I", delegate_virtual_invoke_imt_5) +STUB("t1Bl3QUgCIw", uloc_getTableStringWithFallback) +STUB( + "t1HNXigX3K0", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser8getlimitEv) +STUB("t1JcugBLj0g", mono_aot_Microsoft_CSharpunwind_info) +STUB( + "t1KADNIrU0E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEixEm) +STUB( + "t1LJFMnXA8Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE8capacityEv) +STUB("t1Mq1RsJMQg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEE7get_refEv) +STUB( + "t1NVitgGvQQ", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesC2EPNS1_6Common10LibContextE) +STUB("t1SVKlD6KPc", _ZN3sce7Toolkit2NP2V27Ranking12RangeOfRanksD1Ev) +STUB( + "t1T8kPTXKm8", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "t1Y2pJUuBb4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEEC2ERSA_) +STUB("t1foZtjoF2w", _ZN3sce3Xml4AttrC2ERKS1_) +STUB( + "t1gUHiT0rFo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE4sizeEv) +STUB("t1jOb3-bSOA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEEC1Ev) STUB("t1oU0+93b+s", sceUserServiceSetGlsFloatingMessage) +STUB("t1svU-fltEM", _ZN7WebCore6Widget8setFocusEb) STUB("t1vNu082-jM", sceAgcDcbDrawIndexIndirect) +STUB("t1ytXodWUH0", putenv) +STUB("t1ziJxm-7dM", WKPreferencesSetAVFoundationNSURLSessionEnabled) +STUB("t25JH5hkhoI", mono_aot_Sce_Vsh_SysUtilWrapperunbox_trampolines_end) STUB("t2FvHRXzgqk", sceErrorDialogGetStatus) +STUB( + "t2O3wooBu3E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "t2Qd5V11mek", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE4initEv) +STUB("t2VeaVgUBLI", _ZN9Inspector18InspectorHeapAgentC2ERNS_12AgentContextE) +STUB("t2WKtyLuqKs", mono_aot_ReactNative_Vsh_Commonmethod_addresses) +STUB("t2a2r42erzA", _ZN3sce7Toolkit2NP15PresenceDetailsC1Ev) +STUB("t2dW1YJCdBE", _ZN3sce3Xml6StringC1EPKc) +STUB("t2firQTyFsI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEC1Ev) +STUB("t2gmPz-+STc", _ZN7WebCore9HTMLNames11oninputAttrE) +STUB( + "t2lZROPcUpk", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesC1EPNS1_6Common10LibContextE) +STUB("t2oH2VXgmqY", _ZN3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_errorD1Ev) +STUB( + "t2qSzqfnslU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEED2Ev) STUB("t2r-vTvYlTo", sceMbusDetachFromApplicationByPid) +STUB("t2uMaDVXwnM", YGNodeSetHasNewLayout) STUB("t30LG1ibIJE", sceAgcDriverUserDataImmediateWrite) +STUB("t32fvb0XlfQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession16customData2IsSetEv) +STUB( + "t39dKpPEuVA", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERd) STUB("t3CQzag7-zs", sceNpTrophyIntGetProgress) +STUB("t3DifqR5Dqw", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4DataEE5resetEv) +STUB("t3HY010u9lI", EVP_CIPHER_CTX_init) STUB("t3IfO2xuW6o", sceNpUniversalDataSystemPostRecord) STUB("t3J5pXxhJlI", sceUsbdFillInterruptTransfer) +STUB("t3KbP5U+qZ4", mono_btls_x509_add_explicit_trust) +STUB("t3OGsg+i+u4", + _ZNK3sce2Np9CppWebApi7Matches2V123ResponsePlayerStatistic6toJsonERNS_4Json5ValueEb) +STUB( + "t3PTq8j1EWw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEE7add_refEv) +STUB("t3RFHn0bTPg", index) +STUB("t3XMeHmtcbs", _ZN9Inspector23WorkerBackendDispatcherD1Ev) +STUB( + "t3Y63SE7O08", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEE8pushBackERKS8_) +STUB( + "t3YbJR63qBw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEEC1ERKSA_) +STUB( + "t3cZoz+5ERU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEC1EPKS8_) +STUB("t3cjsiajD-M", utrans_openIDs_67) +STUB("t3daRkbqdaI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session7SessionEEC2Ev) +STUB("t3jTkJdul2s", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE5emptyEv) +STUB("t3rfBQmc4sY", + _ZN3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponseC2EPNS1_6Common10LibContextE) +STUB("t3rvRkdJmmk", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEEC1ERS6_) +STUB("t3seWZY4Cy4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEEC2EPS6_) +STUB( + "t3spMYrri1I", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody35getComparedLastUpdatedUserAccountIdEv) +STUB("t3suZsEB5dA", _ZN3JSC4Heap18sweepSynchronouslyEv) +STUB("t3vCgnT5YL0", ft_mem_dup) +STUB("t4-ETHKlsgM", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_6NpUserEE7addressERS3_) +STUB( + "t4-KJiSB1hA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE5beginEv) +STUB("t4-o+sizWvY", _ZNSt15basic_streambufIwSt11char_traitsIwEE4syncEv) +STUB( + "t449Jd3Ef30", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions25setusePlayerSessionFilterEPKc) STUB("t4ExS+SwLjs", sceAmprCommandBufferWriteAddressFromCounter_04_00) +STUB("t4FA0L6NjqY", + _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession15setJoinDisabledERKb) +STUB( + "t4G3L6IL9fg", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "t4Is6vIFqz0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEE8pushBackERKS8_) +STUB("t4LC0C6pAkQ", _Z39sceGpuDebuggerUnregisterFetchShaderCodePKv) +STUB( + "t4LrHdBfcRk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE28getResponseInformationOptionEv) +STUB("t4Nxp6h9G-w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEED1Ev) +STUB("t4PRYawDi44", _ZN7WebCore6JSNodeD1Ev) +STUB( + "t4UaaMFL1rA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB( + "t4VAukZcGMs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEplEm) +STUB("t4VsMdzH3ns", _ZNK7WebCore11MediaPlayer8durationEv) +STUB("t4XEnVukn0c", _ZN7WebCore11MathMLNames9mslineTagE) +STUB("t4XjVUCWGjU", uloc_getDisplayCountry_67) +STUB( + "t4Zox5WFJk8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEixEm) +STUB("t4cE9gz19eM", _ZNK3sce2np10JsonNumber3GetEPj) STUB("t4e879M-cSw", sceTextToSpeech2Close) STUB("t4gUfGsjk+g", sceUsbdGetStringDescriptorAscii) +STUB( + "t4jM62o92TY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "t4k+5hB2DdY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEED2Ev) STUB("t4lnn4rB+U0", sceLibSecureDestroy) STUB("t4plRC4G6ms", sceSdmaCopyWindowTiledNonBlocking) +STUB( + "t4vH1P4Gi6k", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEE3getEv) STUB("t4vLDMxzzf0", sceFiosFHWritevSync) +STUB( + "t4w-02wmMvI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEppEv) +STUB( + "t4wP82flJKY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEmmEv) +STUB( + "t4zuLZWFIwE", + _ZN9Inspector25DatabaseBackendDispatcherC1ERNS_17BackendDispatcherEPNS_32DatabaseBackendDispatcherHandlerE) +STUB( + "t531i64+s7I", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB( + "t53XwB7mO-Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEC1Ev) +STUB( + "t56436G0Cdw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEC2Ev) +STUB( + "t591rxAGAd0", + _ZN7WebCore20ApplicationCacheHost28maybeLoadFallbackForRedirectEPNS_14ResourceLoaderERNS_15ResourceRequestERKNS_16ResourceResponseE) +STUB("t5Buq8foIvg", kenv) +STUB( + "t5DRR9SC8hI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) STUB("t5K+IeMVD1Q", sceSystemServiceGetPlatformPrivacyDefinitionVersion) STUB("t5ShV0jWEFE", sceSystemServiceGetAppStatus) +STUB( + "t5X7lHI-pzQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "t5XcrZVHeN8", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) STUB("t5YrizufpQc", sceAudioOut2ContextResetParam) STUB("t5ZvUiZ1hpE", sceRemoteplayPrintAllRegistData) +STUB("t5cZhzOEeDM", _ZN3sce2np3ipc14service_client13CreateRequestEimPKvPi) +STUB( + "t5fTmGjinq8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEE3getEv) +STUB("t5jUe-yQ-UQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer11getPlatformEv) +STUB("t5r9dsMMsZU", u_isJavaIDPart_67) +STUB( + "t5voWfwjz+k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEC1EPKS8_) +STUB( + "t5wUaQJFsVM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEppEv) +STUB( + "t60DlrycZ7k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEC2EPS8_) +STUB("t65Y1ezjxZg", _ZN7WebCore18JSHTMLImageElement15subspaceForImplERN3JSC2VME) +STUB( + "t67qIS7bNYU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEC2Ev) +STUB("t6AGbOV3ohE", _ZN3sce7Toolkit2NP2V212EventsClient5Event19MAX_SIZE_EVENT_NAMEE) +STUB("t6AHhkWu4mY", _ZN3sce4Json5ArrayC2Ev) +STUB("t6BJb3VdLF4", _ZN3sce7Toolkit2NP10IdDatabaseC2ERKNS1_15CommunicationIdERKNS1_9NpTitleIdEPKc) +STUB("t6BZr+tUcec", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEEmmEv) +STUB("t6Keu-hK0us", _ZN3sce7Toolkit2NP2V27Ranking12FriendsRanksD2Ev) STUB("t6NwIzt2IE8", sceApplicationKickCoredump) +STUB( + "t6R5OYhzsdk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEED2Ev) +STUB( + "t6Upjb-EoTU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("t6WodT2HRUc", _ZN12video_parser17cVideoProfilerMp416getThumbnailInfoEjPPNS_13VpMediaInfo_tE) +STUB( + "t6Z9F-Qtn7Y", + _ZN3sce2Np9CppWebApi14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBody8fromJsonERKNS_4Json5ValueE) +STUB( + "t6dkvbCGKcY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE7reserveEi) +STUB("t6egllDqQ2M", _ZNSt13bad_exceptionD1Ev) +STUB( + "t6g1hQXzLp0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEEC1EPSA_PNS2_10LibContextE) +STUB("t6haf4s-eE0", fstatat) +STUB( + "t6mhEex56+Y", + _ZThn24_N9Inspector22InspectorDebuggerAgent15searchInContentERN3WTF6StringERKS2_S5_PKbS7_RNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol12GenericTypes11SearchMatchEEENS1_13DumbPtrTraitsISE_EEEE) +STUB("t6wavVJoaKI", _ZN7WebCore14lineBreakTableE) +STUB( + "t6zhCIr1+X8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEE5resetEPS9_) STUB("t7-VbMosbR4", sceGnmRegisterGnmLiveCallbackConfig) +STUB("t7GoRkoarko", _ZN3sce2Np9CppWebApi15Personalization2V15Error8fromJsonERKNS_4Json5ValueE) +STUB("t7JO426T0B8", _ZN7WebCore17FrameLoaderClientC2ERKS0_) +STUB("t7K3DznwwOU", WKBundleSetTabKeyCyclesThroughElements) +STUB( + "t7KXU1pSr8M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "t7KypxHT4ac", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_9Animation8FillModeEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB("t7M8dp4ejQs", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error25validationConstraintIsSetEv) +STUB( + "t7OTzQxoeD4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEixEm) +STUB("t7P0IxbIAoc", _ZN3sce7Toolkit2NP2V28Presence7Request11SetPresence18MAX_SIZE_GAME_DATAE) STUB("t7PlZ9nt5Lc", sceAgcCbNopGetSize) +STUB("t7Rj-6hsPAs", _ZN12video_parser5vpcom6String5SplitERKSs) +STUB("t7Sao1Z9Vgc", _ZN9Inspector18InspectorHeapAgentD2Ev) +STUB("t7UEJrhojhk", _ZN3sce4Json5Value9referRealEv) +STUB("t7VRrJSesi4", __tsan_atomic128_exchange) STUB("t7WE9mb1TB8", sceUsbdGetBusNumber) +STUB("t7Z7GPyzupk", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_15TrophyGroupInfoEE3getEv) +STUB("t7ZZDNA29kk", uprv_isInfinite) STUB("t7ZnM1gdYv4", sceUpsrvUpdateAppdbForEap) STUB("t7b6dmpQNiI", sceNpTusPollAsync) +STUB( + "t7biotnR6zw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEppEv) +STUB("t7cd-9uauro", _ZN7WebCore9HTMLNames19ontransitionrunAttrE) +STUB( + "t7h+EeaNd0A", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "t7ly31b0Ndc", + _ZN7WebCore17LibWebRTCProvider19unregisterMDNSNamesEN3WTF16ObjectIdentifierINS_22DocumentIdentifierTypeEEE) +STUB( + "t7oQehTwARU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEC1EPNS2_10LibContextE) +STUB( + "t7pLBo3h+DE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEEC1Ev) +STUB("t7sxUY1f9+E", ft_raster5_renderer_class) +STUB( + "t7ttTIi8D8Y", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("t7wgZYusSnI", uldn_variantDisplayName_67) +STUB( + "t8-zRyLWOXE", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "t823lvIY9FE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "t84AiYnMwPg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE5beginEv) +STUB( + "t87txqZxvSI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "t89edC22WqI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEE8pushBackERKS8_) +STUB("t8CPiqofH98", _ZN3sce2np10JsonParserC1Ev) +STUB("t8HI9sZ4TSM", glStencilOp) STUB("t8PLXbBCiRA", sceAgcDriverGetWorkloadStreamInfo) +STUB( + "t8R7wcsTvYU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEcvbEv) +STUB( + "t8YYXzCCCKk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE7reserveEi) +STUB("t8Ybwsq4Bwk", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V119ChildActivityStatusEEC2Ev) +STUB("t8YrYpCU5dg", + _ZN7WebCore15DatabaseTracker14deleteDatabaseERKNS_18SecurityOriginDataERKN3WTF6StringE) +STUB("t8af5bB+uos", mono_aot_Sce_PlayStation_BclExtensionsunbox_trampolines_end) +STUB( + "t8be3DFxkvA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEEaSERS9_) +STUB( + "t8dlNjod35I", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEEdeEv) +STUB("t8fZIYwdZUw", mono_array_new) +STUB("t8iGsBWithY", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking10UsersRanksEE19setCustomReturnCodeEi) +STUB("t8ieiuOIXN4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEED2Ev) +STUB("t8lPLT-KHqU", mono_arch_get_throw_trampoline) STUB("t8pR4ug-os0", sceCompositorSetVirtualCanvasCommandFooter) +STUB( + "t8qcUSRKTQU", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo24hasxPsnAtomicOperationIdEv) +STUB("t8rMPQgl5dc", _ZN7WebCore10LayoutRect5uniteERKS0_) +STUB("t8sFCgJAClE", errx) +STUB( + "t8x35nWuR44", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE5emptyEv) +STUB("t8zhrbdsuoA", mono_aot_Sce_Vsh_Registryunbox_trampolines) +STUB("t9+wuaHoApA", mono_aot_Sce_Vsh_GriefReportplt_end) +STUB("t9-W9qSznuY", SwCtrlSinkStreamSetEOS) +STUB( + "t94+szusplQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEC1EPS8_) +STUB("t955rNVr4y4", mono_btls_x509_get_not_after) +STUB( + "t983U4BA2zY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "t98L+Xm0ES4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE5emptyEv) +STUB( + "t9AcO9Byp08", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE8pushBackERKS8_) +STUB( + "t9Co0qEKVqI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEEaSERKSA_) +STUB( + "t9EZoTE7cng", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("t9F9hDCrx8s", _ZN7WebCore20LowPowerModeNotifierD2Ev) +STUB( + "t9HbGqfK7Ac", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEEC1ERKS9_) +STUB( + "t9KFD4KPNmc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEC2EPNS2_10LibContextE) +STUB("t9MvsTzeGcs", _ZNK7WebCore8Document9sessionIDEv) +STUB("t9OApWMdsWU", _ZNK7WebCore16HTMLInputElement4sizeEv) STUB("t9T0QM17Kvo", sceNgs2ParseWaveformUser) +STUB("t9T3rqRsy40", _ZN7WebCore18JSHTMLMediaElementD2Ev) +STUB("t9UsFLWjw7Y", _ZN7WebCore12ChromeClient24exitFullScreenForElementEPNS_7ElementE) +STUB( + "t9Yws2ro2vc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEE11release_refEv) +STUB("t9anqIXZiQ0", _ZN7Nicosia29ImageBackingTextureMapperImpl11flushUpdateEv) +STUB("t9bGoeZojHI", _ZN3sce7Toolkit2NP2V24Auth7Request11GetAuthCodeD2Ev) STUB("t9cqEi3l2i8", sceDebugGetWaitingListOfUltRwlock) +STUB("t9joHosD1EA", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEED2Ev) +STUB("t9mt909J16c", _ZN3JSC7Symbols20Int8ArrayPrivateNameE) +STUB( + "t9tWAaJHuK0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEppEv) +STUB("t9uyR6Oqs5E", rgctx_fetch_trampoline_mrgctx_54) +STUB( + "t9v9QFzQSb0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE10setContextEPNS2_10LibContextE) STUB("t9vVyTglqHQ", scePthreadBarrierWait) +STUB("t9wc8TjtPs0", + _ZN3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMapC2EPNS1_6Common10LibContextE) +STUB( + "t9xprzWi8dU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEmmEi) +STUB("t9z8U-64ERs", _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error9pathIsSetEv) +STUB( + "t9z8VIg2AlM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEC2Ev) +STUB("tA0yCbGfg1M", _ZN3sce7Toolkit2NP2V24Core7Request11MemoryPools21HTTP_MEM_MINIMUM_SIZEE) +STUB("tA2zuHFomr4", _ZN4Manx11MediaPlayer8durationEv) +STUB( + "tA32YquUY0g", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEE7popBackEv) +STUB("tA4JXxjzLVA", _ZN9Inspector22RemoteAutomationTargetD1Ev) +STUB("tA7jn3E6Kp8", _ZN15AbstractStorage18DailymotionContentD0Ev) +STUB("tA9pgP1FzuY", _ZN7WebCore19TransformOperationsC2Eb) +STUB( + "tAFOiTg3Jlg", + _ZN15AbstractStorage18DailymotionStorage9GetForderERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_6FolderEE) +STUB( + "tAGC3Hz2pkI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEC2ERKS7_) +STUB( + "tAHrLQZukJE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEC2Ev) +STUB("tAJSGdhpxPg", _ZNK7WebCore29PerspectiveTransformOperation11perspectiveEv) +STUB("tAKsRU6tXBM", _Z38sceGpuDebuggerIsGpuDebuggingInProgressv) +STUB("tAM5bByjhWw", _ZNSo5flushEv) +STUB("tAOi95GIW5Y", _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeIPcPvEEC2Ev) +STUB( + "tARbDAYZ1Ug", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEppEi) +STUB( + "tATzPhqfSiw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEplEm) +STUB( + "tAVoI3BqaF0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RemovedPlayerEEEEEE11get_deleterEv) +STUB( + "tAWT9hbV96A", + _ZN9Inspector21InspectorRuntimeAgent20getCollectionEntriesERN3WTF6StringERKS2_PS4_PKiS8_RNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime15CollectionEntryEEENS1_13DumbPtrTraitsISF_EEEE) +STUB("tAhExWDSoQQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEEC1Ev) +STUB("tAiwTShd7M8", + _ZN3sce2Np9CppWebApi14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyD2Ev) +STUB( + "tAmLUBBgRQA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEC1EPKS8_) +STUB("tAoG7GBkUZ4", GetCurrentSrcId) +STUB("tAuQSNscAqg", WKPreferencesCreate) +STUB("tAv+Gv2kNyM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEC2Ev) STUB("tAxnXpzDgFw", sceNpTrophySystemPerformRecovery) +STUB("tB0FMsDKaWc", + _ZN3sce2Np9CppWebApi7Matches2V120RequestTeamStatisticC1EPNS1_6Common10LibContextE) STUB("tB3BB8AsrjU", sceNetEventCallbackGetError) +STUB("tB7JUWg6kMY", _ZNK7WebCore17FullscreenManager19isFullscreenEnabledEv) +STUB( + "tBA3quzEWSc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEC2EPS8_) +STUB( + "tBLocQUKq-w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEaSERKS9_) +STUB("tBOiS4Czg+Y", delegate_virtual_invoke_imt_11) +STUB("tBRj6JqsxsA", _ZN7WebCore16MIMETypeRegistry15getPDFMIMETypesEv) +STUB("tBVTv-0RQmQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEppEv) +STUB("tBcC0hyP--g", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEEdeEv) +STUB( + "tBeVpFFMMKU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB("tBmG8zjBnGc", _ZN22ScePssDecoderMP3_orbis19BufferedDecodeChunkEPKhjRjPsjS2_S2_) +STUB( + "tBq9yWcmwE0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEppEi) +STUB("tBtMurHd2m8", _ZNK7WebCore12ChromeClient17plugInExtraScriptEv) +STUB("tBw4xNkm5xY", _ZN7WebCore18platformStrategiesEv) +STUB("tC-fTUkwRsQ", _ZN7WebCore10XLinkNames8showAttrE) +STUB("tC0xEkmmrSY", mono_context_get_domain_id) +STUB("tCAFLc4j724", _ZN7WebCore16FrameLoadRequestC2EOS0_) +STUB( + "tCCDGA3b7DA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE5emptyEv) +STUB( + "tCCRO1u4Ag0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEC1Ev) +STUB("tCFbw1wGrqk", unlinkat) +STUB("tCHbBBMaRuM", u_strToPunycode_67) +STUB("tCJ0z971lFk", monoeg_g_timer_destroy) +STUB("tCMhTh7h8D4", FT_New_Memory) +STUB("tCOYIku29OE", curl_mime_headers) +STUB( + "tCQvzR5MPZM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEE7get_refEv) STUB("tCQzG0iC8zw", sceKernelIccGetPowerNumberOfBootShutdown) +STUB("tCS9bOfyptA", utext_setup_67) +STUB( + "tCVnTKlIKgA", + _ZN9Inspector27InspectorFrontendDispatcher20activateExtraDomainsEN3WTF6RefPtrINS1_8JSONImpl7ArrayOfINS1_6StringEEENS1_13DumbPtrTraitsIS6_EEEE) +STUB("tCXJCVmBvp0", _ZN3JSC7JSArray3popEPNS_14JSGlobalObjectE) +STUB("tCaqZSzBy-s", + _ZNK3WTF6String25splitAllowingEmptyEntriesEDsRKNS_8FunctionIFvRKNS_10StringViewEEEE) +STUB( + "tCi2HGtNZYc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEED1Ev) +STUB("tCihLs4UJxQ", _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE4_RepES3_cm) +STUB("tCrHs952Gz0", ubidi_writeReverse_67) +STUB("tCw8Wu6dXkg", _ZN3JSC7Symbols31symbolIteratorGetterPrivateNameE) +STUB("tCzAJwzzF0I", _ZN9Inspector32ScriptProfilerFrontendDispatcher26programmaticCaptureStoppedEv) +STUB( + "tD+pzenBV-U", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEptEv) +STUB("tD06ETcZqgI", + _ZN3sce2Np9CppWebApi7Matches2V123RequestMatchTeamFactory7destroyEPNS3_16RequestMatchTeamE) +STUB("tD0GSIfddH0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17GetGameDataResultEE3setEv) +STUB( + "tD7xGIyqe00", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEEC1ERKSA_) +STUB("tDBjxghgDXc", + _ZNK3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse23getIsOfficiallyVerifiedEv) +STUB("tDDzvLlQ7CE", _ZN3WTF27protocolHostAndPortAreEqualERKNS_3URLES2_) +STUB( + "tDExYbmBmt4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEED2Ev) +STUB("tDHzkxsF60k", _ZN3sce7Toolkit2NP2V27NpUtils5IdMapC1Ev) +STUB( + "tDRu6NI8zIE", + _ZN7WebCore11DisplayList15DrawNativeImageC2ERKN3WTF6RefPtrI14_cairo_surfaceNS2_13DumbPtrTraitsIS4_EEEERKNS_9FloatSizeERKNS_9FloatRectESF_RKNS_20ImagePaintingOptionsE) +STUB( + "tDV0gQhJbs4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEneERKS9_) +STUB("tDfGV3gqBZs", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersC1ERS5_) +STUB("tDhVqVa-tvU", _ZN15AbstractStorage12SerializableD2Ev) STUB("tDjU6UN7meM", sceRemotePlayClientRemoveController) +STUB("tDmwpod2EnU", _Z38NetworkInformation_GetDevPortIPAddressPl) +STUB("tDpnyx0AidQ", _ZNK3sce7Toolkit2NP9Utilities10FutureImpl8getErrorEv) +STUB("tDrC76+l4s8", _ZN3sce7Toolkit2NP15AppSTLAllocatorISbIcSt11char_traitsIcENS2_IcEEEEC2ERKS7_) +STUB("tDs31ASQGV8", _ZN3sce2npneERK12SceNpTitleIdRKNS0_9NpTitleIdE) +STUB("tDssQCH2syY", FT_Stream_GetOffset) STUB("tDtjgaXYmuo", sceAppInstUtilInstallByPackage) +STUB("tDvJUBoe9WE", _ZN7WebCore16convertToIntegerIaEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB( + "tDxKK54nviE", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13boolean5IsSetEv) +STUB("tDzpTBJ5p+E", _ZNK9Inspector18InjectedScriptBase11scriptStateEv) +STUB("tE8O2yjJydE", _ZN12video_parser17cVideoOperatorMnvD2Ev) +STUB("tEDVOghTIbw", _ZN3WTF6Thread27exchangeIsCompilationThreadEb) STUB("tEGD9ugK0w8", sceNpSessionServiceGetRunningGamePlayerSession) +STUB("tEMRrONRlXg", mono_class_from_mono_type) +STUB("tERtNxTopHQ", _ZN7WebCore20DecodeOrderSampleMap20findDependentSamplesEPNS_11MediaSampleE) +STUB("tEX0VLjVjaQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEEC2Ev) +STUB("tEXEVk+5tR8", jpeg_fdct_1x2) +STUB("tEaSuJ9bUwU", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsD2Ev) +STUB( + "tEawNYPhxYg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEEaSERKSA_) +STUB("tEayT5DVTv8", _ZN4IPMI4impl10ServerImpl10initializeEPKcPNS_6Server12EventHandlerEPvmmmb) +STUB( + "tEebRSTwQhE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEE11release_refEv) +STUB( + "tEgYdZ5JJxY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEneERKS9_) +STUB("tEhDOOiD+Lk", _ZN7WebCore21BackForwardController6goBackEv) +STUB( + "tEiZZ9v5A2Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEE5resetEPS6_) +STUB( + "tEitSUPeYQM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("tEjFmn-2SRE", + _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse19setCancellationTimeERKi) +STUB( + "tEn+OVW3iys", + _ZN7WebCore14ResourceHandle25loadResourceSynchronouslyEPNS_17NetworkingContextERKNS_15ResourceRequestENS_23StoredCredentialsPolicyERNS_13ResourceErrorERNS_16ResourceResponseERN3WTF6VectorIcLm0ENSB_15CrashOnOverflowELm16EEE) +STUB("tEqKiVelM9M", _ZTVN7WebCore11DisplayList6SetCTME) +STUB("tEshvgFXF68", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_26ActivityFeedCondensedStoryEED2Ev) +STUB("tEsohhOlYZY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEC1ERKS7_) +STUB("tEuHPAtxAcg", monoeg_g_free) +STUB("tEvDqkJ-z1E", __remainderl) +STUB("tEz4k-OKxdE", _ZN7WebCore8SVGNames7viewTagE) +STUB("tEz9h727kzw", _ZN7WebCore17FullscreenManager27setFullscreenControlsHiddenEb) +STUB( + "tF0jtg3c2Gs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE4sizeEv) +STUB( + "tF4iLLzeCTc", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody15setJoinDisabledERKb) +STUB("tF6GpBRiB-A", mtx) STUB("tFD04DtJY+g", sceKernelGetBetaUpdateTestForRcmgr) +STUB( + "tFLd6fRdI+w", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "tFM+qm7RVPw", + _ZN9Inspector22InspectorDebuggerAgent16didSetBreakpointERKN3JSC10BreakpointERKN3WTF6StringERKNS_16ScriptBreakpointE) +STUB( + "tFO5HJyq5aA", + _ZN3sce2Np9CppWebApi14IdentityMapper2V342PsnWebError_error_validationConstraintInfo8setValueEPKc) +STUB( + "tFSpbM87rFE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEC1EPNS2_10LibContextE) +STUB("tFT0Peb2BCU", + _ZNK3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession19expirationTimeIsSetEv) +STUB( + "tFWFxcN81k8", + _ZN7WebCore8Document17setFocusedElementEPNS_7ElementENS_14FocusDirectionENS0_22FocusRemovalEventsModeE) +STUB("tFY6zzpnlOs", _ZN4IPMI4impl11SessionImpl11tryDispatchEPvm) +STUB( + "tFaFjRy3qDw", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate15setPerFranchiseERKNS1_6Common12IntrusivePtrINS3_29MatchCompletionRatePropertiesEEE) +STUB( + "tFalGODIwGs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEEC1ERKSA_) +STUB( + "tFe8YsdlKyc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEC1EPNS2_10LibContextE) +STUB("tFe964qzGEM", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainerD1Ev) +STUB("tFgzEdfmEjI", __mulvsi3) +STUB("tFhQrz2mnCg", _ZN3JSC14JSGlobalObjectD2Ev) +STUB("tFnU-LMl1+c", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils13NetStateBasicEED2Ev) +STUB("tFpNQfD+SM8", _ZN3sce2Np9CppWebApi6Common18ResponseHeaderBaseD2Ev) +STUB( + "tFt-yGl3-xM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEplEm) +STUB( + "tFt9v6hO1Hg", + _ZN3sce2Np9CppWebApi7Matches2V134ResponseTeamMemberStatisticFactory7destroyEPNS3_27ResponseTeamMemberStatisticE) +STUB( + "tFuPAKkrjl8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEC1Ev) STUB("tG+805b1Njk", pthread_set_defaultstacksize_np) +STUB( + "tG-AbytnhqI", + _ZNK3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody6toJsonERNS_4Json5ValueEb) +STUB("tG2rgh18duc", _deleteProtocolInfoListOneNode) +STUB("tG8pGyxdLEs", modfl) +STUB("tGD20G5g8bU", u_vformatMessage_67) +STUB( + "tGEoBfzsfAo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "tGF3E-CCPOY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEEC1ERSA_) +STUB("tGIL+vkTlJA", _ZN9Inspector32DebuggerBackendDispatcherHandlerC2Ev) +STUB("tGKaqH2rxA8", _ZN7WebCore11MediaPlayer15minTimeSeekableEv) +STUB( + "tGX+vN9LD4E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEEC2EPS6_PNS2_10LibContextE) +STUB( + "tGb5g0v-YIA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE5eraseENS2_8IteratorIS6_EERS9_) +STUB( + "tGbu30qyHkA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEixEm) +STUB( + "tGcdUkF8c2E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEppEv) +STUB("tGeOQLpMGgA", ubrk_previous) +STUB( + "tGhGEEMH5IY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEmmEv) +STUB("tGiGSvZ9oz4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEC2Ev) +STUB("tGkzQrFgT3s", mono_mempool_destroy) +STUB("tGlf9htYirI", rgctx_fetch_trampoline_rgctx_66_p) +STUB("tGmYdLIYT98", FT_Get_Glyph_Name) +STUB( + "tGoR77UmuOw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEdeEv) +STUB( + "tGvdX6NItfU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEC2EPNS2_10LibContextE) +STUB( + "tGzlCipWs60", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody12getConditionEv) STUB("tH+nf8PVkP8", sceMatReallocPoolMemory) +STUB("tH-+IbGsGNE", _ZNK9Inspector28InspectorScriptProfilerAgent18isAlreadyProfilingEv) +STUB( + "tH2xOYetupc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEneERKSA_) +STUB("tH3Xx0hHX6I", _ZThn32_N7WebCore14DocumentLoader14notifyFinishedERNS_14CachedResourceE) +STUB("tHC-+Eiiy1k", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEED2Ev) +STUB("tHCoD1Tx+ac", + _ZN7WebCore11JSDOMWindow14queueMicrotaskERN3JSC14JSGlobalObjectERNS1_9CallFrameE) STUB("tHD5FPFXtu4", sceNpMatching2SignalingGetConnectionStatus) STUB("tHE2mqrhR4c", sceShellCoreUtilGetDeviceStatus) +STUB("tHOriQLfXsY", SSL_set_connect_state) +STUB( + "tHRdzy7gP0c", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEdeEv) +STUB("tHS0+SqTtLI", _ZN7WebCore17JSDOMGlobalObject6s_infoE) +STUB( + "tHVFPeIlZyc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE3endEv) +STUB( + "tHYzLzaaP6g", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEneERKS7_) +STUB("tHaO36kincQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEED1Ev) +STUB("tHcsBV+HAh4", _ZN3sce2Np9CppWebApi14SessionManager2V127PostGameSessionsRequestBodyD2Ev) STUB("tHeVbJMcEv8", sceDebugWriteThreadRegister) +STUB("tHfJqKINFR8", _ZN3sce2Np9CppWebApi6Common8IteratorIdEC2EPd) +STUB("tHiLdIY4GNk", mono_aot_Sce_Vsh_VideoRecordingWrappermethod_addresses) +STUB("tHkyOSFwdIc", _ZNK7WebCore19ProtectionSpaceBase7isProxyEv) +STUB("tHn68ic3YC4", WTFReportFatalError) +STUB("tHnYDUM6SpQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator16getJoinTimestampEv) +STUB( + "tHsroet98oc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEE7add_refEv) STUB("tI+vyqSJZRY", sceApplicationEndSclkChange) +STUB( + "tI-J0JstHG0", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("tI-w0kRXieM", WKPageRubberBandsAtRight) +STUB("tI0+aDKcS0w", _ZTVN3JSC22FullGCActivityCallbackE) +STUB("tI5IAnzhn2U", _ZN3JSC11IsoSubspaceD1Ev) +STUB("tI8jLI69Eps", mono_aot_Sce_Vsh_PartyCommonunbox_trampolines_end) +STUB( + "tI9hD6Dxa4I", + _ZN7WebCore21JSTextTrackCueGenericC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_19TextTrackCueGenericENS6_13DumbPtrTraitsIS8_EEEE) +STUB("tIBqJnfzdQ4", _ZN3JSC10Identifier3addEPNS_2VMEPKc) STUB("tIBrrdbjJBA", sceMatMemoryPoolCommit) +STUB("tIFiGM-V5FM", mono_assembly_get_name) +STUB("tIFx9bIsbtY", _ZN3sce7Toolkit2NP2V211UserProfile10NpProfiles5resetEv) +STUB("tIHFKkXNm7E", _ZN3WTF11Persistence7Encoder6encodeEd) +STUB("tIIRbXa2ZOk", _ZN15AbstractStorage7Service5StartEv) +STUB("tIOEarKV-to", _ZN7WebCore15JSDOMWindowBase22javaScriptRuntimeFlagsEPKN3JSC14JSGlobalObjectE) +STUB( + "tIOSD17DimQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEppEi) +STUB("tISoK3yWWkk", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V117ResponseMatchTypeEEC2Ev) +STUB( + "tIVHkfsRvJ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEED1Ev) +STUB( + "tIWNj5Uxdj8", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V117ReputationFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_10ReputationEEE) +STUB( + "tIXS5ilXknA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEeqERKSA_) +STUB("tIXkiw8aHoM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEC2Ev) STUB("tIYf0W5VTi8", sceScreenShotDisable) +STUB( + "tIaXrMzjP4E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEE6assignEPS7_PFvS9_EPNS2_10LibContextE) STUB("tIdXUhSLyOU", sceSystemServiceAddLocalProcessForPs2Emu) +STUB("tIeRJikd80s", _ZN7WebCore11MemoryCache24pruneDeadResourcesToSizeEj) +STUB("tIhsqj0qsFE", free) +STUB( + "tIibxzxWkWM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE3endEv) +STUB("tIkZcQS39gU", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody8getLimitEv) STUB("tImUgGSSHpc", sceSystemServiceActivateHevcTerm) +STUB("tIo9oybpiyU", _ZN3JSC8Bindings8Instance16newRuntimeObjectEPNS_14JSGlobalObjectE) +STUB("tIoaIHr7FF8", mono_aot_Sce_Vsh_ProfileCacheunbox_trampolines_end) +STUB( + "tIzpCp04BFQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V511ErrorEntityEEEEEEcvbEv) +STUB("tJ2EMNwxLic", _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse17matchResultsIsSetEv) +STUB("tJ9NnDfCmms", + _ZN7WebCore20DecodeOrderSampleMap23findSampleWithDecodeKeyERKSt4pairIN3WTF9MediaTimeES3_E) STUB("tJ9kX6guf3I", sceMbusDumpAppInfo) +STUB( + "tJFJev3-d60", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetInteger5Ev) +STUB("tJIBW+ULF6Y", _ZN3sce7Toolkit2NP2V24Core19JsonMemoryPoolStatsD1Ev) +STUB("tJMAm9ZBelo", + _ZN3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinitionD1Ev) +STUB( + "tJNNBAQ4-1Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("tJQluywQAJw", _ZN3JSC7Symbols40promiseResolveThenableJobFastPrivateNameE) +STUB( + "tJS4UxfNdnw", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("tJU-ttrsXsk", _ZNSiD1Ev) +STUB("tJc2S26es-Q", _ZN7WebCore6JSNodeC1ERKS0_) +STUB("tJi9lnN2N7M", _ZN7WebCore12SharedBuffer6appendERKS0_) +STUB( + "tJsO066eZKc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEC1EPKS8_) +STUB( + "tJtkOUSnCD8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE4initEv) +STUB( + "tJy9TiP9qB8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEcvbEv) +STUB("tJzhs8Af+Cc", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12string8IsSetEv) +STUB("tK1QsvfrOq8", _ZN3sce2np14JsonNumberImplC2EP14SceNpAllocator) +STUB("tK43eONuPyM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEC2Ev) +STUB("tK7bQQRz-FM", _ZN7WebCore27ScrollingStateScrollingNode15setScrollOriginERKNS_8IntPointE) +STUB("tK9HQgUWmuA", mono_aot_System_ServiceModelunbox_trampoline_addresses) +STUB("tKB-k8XkvjY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEC2EPS8_) +STUB( + "tKFrG0f4Hds", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEppEv) +STUB( + "tKGKVNdBsFY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEEC2Ev) +STUB("tKKSuKEZC00", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEED2Ev) +STUB( + "tKL0j+bk0is", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEneERKS9_) STUB("tKLmVIUkpyM", sceImeConfirmCandidate) +STUB( + "tKMSfKFKcCA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEEC2Ev) STUB("tKSmk2JsMAA", sceAudioPropagationSourceSetAudioPath) +STUB( + "tKTsWt8FRTA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("tKaE15lxeA8", _ZN3WTF10TextStreamlsEi) STUB("tKb1NGqDL3o", sceDepthDisableHeteroMode) +STUB("tKdGd0-scmA", mono_print_unhandled_exception) +STUB("tKfRuHiYTeM", __sanitizer_ptr_cmp) +STUB( + "tKmhQVaQD7w", + _ZN7WebCore10JSLocationC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_8LocationENS6_13DumbPtrTraitsIS8_EEEE) +STUB("tKmks3TRYtY", ucol_getContractionsAndExpansions_67) +STUB("tKnnOFtstc8", __asan_unpoison_memory_region) +STUB( + "tKqy5+7rLuk", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) STUB("tKumjQSzhys", sceAudioDeviceControlGet) +STUB("tKv2udX-bTw", _ZN3JSC16IsoSubspacePerVMD1Ev) +STUB("tKx8sTtdtpk", _ZN7WebCore24CoordinatedGraphicsLayer15setDrawsContentEb) +STUB("tKynE51F0QE", + _ZN7WebCore6DOMURL15revokeObjectURLERNS_22ScriptExecutionContextERKN3WTF6StringE) +STUB("tKzyAw3ywjo", _ZN3sce2Np9CppWebApi6Common6String8copyFromEPKc) +STUB( + "tL+UakQgtRo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEEptEv) STUB("tL2AEPejVQE", sceAudioPropagationPathGetNumPoints) +STUB("tL78UsUiY0k", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEE7get_refEv) +STUB("tLB5+4TEOK0", putc) +STUB("tLBY9RqvLDU", _ZN7WebCore24CoordinatedGraphicsLayer11syncFiltersEv) +STUB("tLC+H-hAaGk", mono_aot_Sce_Vsh_Np_AppInfoplt) +STUB( + "tLCK4GJe9jY", + _ZN3sce2Np9CppWebApi14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyC2EPNS1_6Common10LibContextE) +STUB("tLDeuoj2F5Y", _ZN7WebCore7Element17removeAttributeNSERKN3WTF12AtomicStringES4_) +STUB( + "tLDy3c2V7zw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEneERKS9_) +STUB("tLFTpZ4SVLw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEED2Ev) +STUB( + "tLH4HdObeNQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB("tLJjunCGCQI", _ZN3WTF9WorkQueue13dispatchAfterENS_7SecondsEONS_8FunctionIFvvEEE) +STUB("tLL3OC-mrCg", mono_class_is_enum) +STUB("tLLRdXuJrhQ", ucnv_fixFileSeparator_67) STUB("tLTma0k0U3E", sceAgcDriverUserDataImmediateWritePacket) +STUB( + "tLYsjuz2SeY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEaSERKS9_) +STUB("tLZIrkonAeY", mono_aot_Sce_Vsh_ShareGuideSceneplt) +STUB( + "tLj505n8c6M", + _ZN7WebCore15ContextMenuItemC2ENS_19ContextMenuItemTypeENS_17ContextMenuActionERKN3WTF6StringEPNS_11ContextMenuE) +STUB( + "tLjIQU2XbfU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEEC1ERKSA_) +STUB("tLjcWeVfcJg", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11ProductInfoEE10deallocateEPS3_m) +STUB( + "tLsXC-ruzB0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("tLtIJWgGINI", _ZN15AbstractStorage7StorageC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) STUB("tLx8lvzU-ic", sceNpSessionSignalingInitializeWithPort) +STUB( + "tLyPG5q2eEM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE5beginEv) +STUB( + "tM6KqH1h0v8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("tM82T9tK-Rw", _ZNSt15basic_streambufIcSt11char_traitsIcEED0Ev) +STUB( + "tM8z3ZypBGM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEE7get_refEv) +STUB("tMAkKsnMDb0", toup_tab) +STUB("tMAxWmbzRZM", _ZNK7WebCore9FrameView22absoluteToDocumentRectENS_9FloatRectEN3WTF8OptionalIfEE) +STUB("tMIB6CLPWpo", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEC1Ev) +STUB( + "tMKnbwt1yZI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEEaSERSA_) +STUB("tMWlx2AgEiY", _ZN7bmalloc12IsoTLSLayout3addEPNS_11IsoTLSEntryE) STUB("tMYHEVj4j+o", sceFiosSuspend) +STUB("tMYNTHCKtXI", mono_aot_System_Reactive_Interfacesunbox_trampolines) +STUB("tMYQaTa9te0", qr2) +STUB( + "tMYcgWa17hI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEEC1ERKS9_) +STUB("tMejy0jA0N8", _ZN3WTF8JSONImpl9ArrayBaseC1Ev) +STUB( + "tMgB+M+Mjzc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEEdeEv) STUB("tMgpmzMA4Zc", sceMusicPlayerServiceSetAudioVolume) +STUB("tMgsVupCT8w", _ZN7WebCore9HTMLNames20ondurationchangeAttrE) +STUB( + "tMjZV2vfKm0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEplEm) +STUB( + "tMk+l0ayDPg", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V125FrequentlyMutedProperties9setInGameERKNS1_6Common12IntrusivePtrINS3_28FrequentlyMutedInGameMetricsEEE) +STUB( + "tMk8vvJaqEA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEE5resetEPS7_) +STUB( + "tMkOO5VhiDg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE6resizeEj) +STUB("tMkgUvy3XaQ", _ZN7WebCore4Page14layoutIfNeededEv) +STUB("tMll44TLd3o", _ZN3sce2Np9CppWebApi12Leaderboards2V15Entry7setPcIdERKi) +STUB("tMlqtsKLCNs", _ZN7WebCore8SVGNames10pointsAttrE) +STUB( + "tMqBmVagvbw", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Runtime15PropertyPreview7SubtypeEEESt8optionalIT_ERKN3WTF6StringE) +STUB( + "tMqRu-T4wxo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEE5resetEPS9_) +STUB("tMsAp7GTcPU", _ZN7WebCore8SVGNames32glyph_orientation_horizontalAttrE) STUB("tMuzuZcUIcA", sceSystemServiceResumeLocalProcess) +STUB("tMyRfRbu-90", _ZN9Inspector21DOMFrontendDispatcher20pseudoElementRemovedEii) +STUB( + "tMyw9nvz7PE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEEcvbEv) +STUB("tMzCmRNHFyQ", Java_java_io_FileSystem_getFileSystem) +STUB( + "tN5kOlh4vdI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEEaSERSA_) +STUB("tN9h-eGhruY", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEED1Ev) +STUB("tNGIaEi-9HE", mono_metadata_properties_from_typedef) +STUB("tNJjozY-ivY", _ZN7WebCore24parseXFrameOptionsHeaderERKN3WTF6StringE) +STUB( + "tNKVf6A3Vwk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEEC2EPS9_PNS2_10LibContextE) STUB("tNOlmxee-Nk", sceImeVshSetCaretIndexInPreedit) +STUB("tNR5qosldvI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEaSERKS7_) +STUB("tNROB7dPHHw", _ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamRankResultaSERKS4_) +STUB( + "tNWpbCUj1pk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEC2ERKS7_) +STUB("tNXC2h-miiI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEC1ERKS7_) +STUB("tNXfREP8F4I", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEmmEi) STUB("tNZY3tIIo0M", sceUserServiceSetSystemLoggerHashedAccountIdClockType) STUB("tNaDjIbVOwc", sceKernelWriteMapDirectWithGpuMaskIdCommand) +STUB( + "tNb5+oQza2M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEC2ERKS7_) +STUB("tNcUS+wrQ8c", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEED1Ev) +STUB("tNer1ID2n+0", _ZN3JSC7Symbols40tryGetByIdWithWellKnownSymbolPrivateNameE) +STUB( + "tNjHjBxPo7s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("tNkEUoHLZTo", _ZN3sce7Toolkit2NP2V26Friend12BlockedUsersD1Ev) +STUB( + "tNl-nWucfrk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEC2Ev) STUB("tNn5WBkta60", sceAmprCommandBufferNop) +STUB("tNp-O7jY0g8", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainerC1ERS5_) +STUB("tNtJ+dT97aM", __asan_load2_noabort) STUB("tNuT48mApTc", sceGnmPaHeartbeat) +STUB("tNyFsr+CzlE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RequestMemberEEcvbEv) +STUB("tNzfhCKsWCo", mono_aot_Mono_Data_Tdsjit_got) +STUB("tO+MzKT6aLU", _ZN3sce7Toolkit2NP15AppSTLAllocatorI16SceNpTusVariableEC1ERKS4_) +STUB("tO-l2H+brh4", mono_shared_mempool_get_allocated) +STUB( + "tO27rPADLNY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE21intrusive_ptr_add_refEPS9_) +STUB("tO2b+Gu2OW0", + _ZNK3sce7Toolkit2NP9Utilities6FutureISbIcSt11char_traitsIcENS1_15AppSTLAllocatorIcEEEE3getEv) +STUB("tO3zi5GOrgc", _ZN7WebCore9HTMLNames18accept_charsetAttrE) +STUB("tO4tw6Me0AQ", _ZN7WebCore9HTMLNames10lowsrcAttrE) STUB("tO8DvyElInw", sceUsbStorageIsExist) +STUB( + "tO9I58zL4Ko", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEdeEv) +STUB( + "tOC4bvbIFTU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEEC1Ev) STUB("tOEgO3XNm+o", sceVencCoreGetAuData) +STUB( + "tOExaqAXum4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEC2EPNS2_10LibContextE) STUB("tOJ-WGFDt-Y", sceNpAsmClientCreateRequest2) +STUB( + "tOO0AcS4+mA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEED2Ev) +STUB( + "tOO2ffhgPHw", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13integer2IsSetEv) +STUB("tOUKGSFs7NY", _ZN7WebCore13CSSStyleSheet7addRuleERKN3WTF6StringES4_St8optionalIjE) STUB("tOZ6fwwHZOA", sceRtcFormatRFC3339PreciseLocalTime) +STUB( + "tOadN80cvZs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("tOicWgmk4ZI", daylight) +STUB("tOjxcU5Sxf0", _ZN18scePssCAudioSystem20GetPlayerForResourceEjRjiiiji) +STUB( + "tOk-V6BhOBA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEE7get_refEv) +STUB("tOpKdHTbvFk", _ZN23sceMetadataReaderWriter10ParserInfoD2Ev) STUB("tOpqyDyMje4", sceNpSignalingGetMemoryInfo) +STUB("tOqC+o20N34", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEEplEm) +STUB( + "tOr-31I3pXQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEEptEv) +STUB("tOr9C4XdXeM", utrace_vformat) STUB("tOrRi-v3AOM", sceNetNtohll) +STUB( + "tP5PyYt4r5E", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEEiRNS2_10LibContextEPT_m) +STUB("tPEorGsctr8", Java_java_lang_ClassLoader_00024NativeLibrary_load) +STUB("tPHJi1jejKs", il2cpp_current_thread_get_top_frame) +STUB("tPHxFS+55pY", glReadPixels) +STUB( + "tPHzijz-GSE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "tPLFGuHAaQs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEdeEv) +STUB("tPMgXN+Gp0w", _ZNK7WebCore19ResourceRequestBase13isConditionalEv) +STUB( + "tPUqNylsYZM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEC1EPKS8_) +STUB( + "tPVAAV8uids", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEeqERKS9_) +STUB( + "tPW4AvaijAA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB("tPW8wH1Bn6Q", _ZN7WebCore9HTMLNames13truespeedAttrE) +STUB("tPWsbOUGO8k", shm_unlink) +STUB( + "tPX-jz1w27s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEE11release_refEv) +STUB( + "tPXE1G9m5Ns", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEeqERKS9_) STUB("tPYT-kGbZh8", sceRemoteplayConfirmDeviceRegist) +STUB( + "tPYWe1g1NOY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE7popBackEv) +STUB("tPa8cN2Gb0g", _ZN7bmalloc3api29tryLargeZeroedMemalignVirtualEmmNS_8HeapKindE) STUB("tPfQU2pD4-M", sceSystemServiceShowDisplaySafeAreaSettings) +STUB("tPkqsYtozCE", _ZN9Inspector31ConsoleBackendDispatcherHandlerD1Ev) +STUB("tPmBneGv-8Y", _ZNK7WebCore10ScrollView18rootViewToContentsERKNS_9FloatRectE) +STUB("tPmjSerIixo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEC2Ev) +STUB("tPn1i1B9LfU", _ZN3sce7Toolkit2NP2V27Session7Request4Join16DEFAULT_PRIORITYE) +STUB("tPqTZRv-IeA", jpeg_alloc_quant_table) +STUB( + "tPs0d36FjI0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE7reserveEi) +STUB("tPsGA6EzNKA", _ZNSt5ctypeIcED1Ev) +STUB( + "tPwOSJZBA6k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEED1Ev) +STUB( + "tPxWWmILYcM", + _ZN7WebCore17FrameLoaderClient52dispatchDidReconnectDOMWindowExtensionToGlobalObjectEPNS_18DOMWindowExtensionE) +STUB( + "tPzDJyzks5A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125ResponseGameSessionPlayerEEEEEEC1ERSA_) +STUB("tPzhAGqQaD4", JSObjectGetPropertyForKey) +STUB("tQ+ca-SFZIY", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_24RegisterGameDataResponseEE3getEv) +STUB("tQ2fT0hNFSY", _ZN3sce7Toolkit2NP2V26Friend12Notification16FriendlistUpdateC2ERKS5_) STUB("tQ3tXfVZreU", sceNpTrophySystemGetLocalTrophySummary) STUB("tQ6zNr0O6GA", sceFiosDateGetCurrent) +STUB("tQIo+GIPklo", _ZSt14_Xlength_errorPKc) +STUB("tQNolUV1q5A", swscanf_s) +STUB("tQOrMf4KtIo", _ZN3sce2np3ipc17ServiceIpmiClient12AbortRequestEii) +STUB( + "tQPonjG8d9s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEmmEi) +STUB("tQV0OYD101g", _ZN3JSC7Symbols29arraySpeciesCreatePrivateNameE) +STUB("tQd-CVQUoko", _ZN7bmalloc8FreeList14initializeBumpEPcj) +STUB( + "tQdMxjYquj0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE7popBackEv) +STUB( + "tQgPrFvN92g", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V129GetMultiVariablesResponseBody21getTotalVariableCountEv) +STUB( + "tQkWECNWCmY", + _ZN3sce2Np9CppWebApi13InGameCatalog2V527ContainerRatingCountFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_20ContainerRatingCountEEE) +STUB( + "tQmwolkjshc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEEdeEv) +STUB("tQnqbIc4LUk", WKViewContextMenuItemSelected) STUB("tQpOPpYwv7o", sceAudioInSetPortConnections) +STUB( + "tR+spxW0pUs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("tR-DbBNz49g", _ZNK3sce7Toolkit2NP15AppSTLAllocatorINS1_15NpSessionMemberEE8max_sizeEv) +STUB("tR6pYhfnTHs", WKPreferencesGetInspectorUsesWebKitUserInterface) +STUB("tRBeaJrpPiQ", + _Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm13DbPerfCounterE20SceRazorGpuBroadcast) +STUB("tRDWBd4G-8c", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17SetGameDataResultEE3getEv) +STUB( + "tRGwHkt1Pzo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEEC1ERSA_) +STUB("tRHP0V+ZrzQ", + _ZN3sce2Np9CppWebApi14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyD2Ev) +STUB( + "tRP7JoU5bGk", + _ZN3JSC7JSArray17defineOwnPropertyEPNS_8JSObjectEPNS_9ExecStateENS_12PropertyNameERKNS_18PropertyDescriptorEb) +STUB("tRPZufpBbYs", _ZNK7WebCore11MediaPlayer7seekingEv) +STUB("tRRjjk6gqzI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEE5resetEPS5_) +STUB("tRTGVdmiGzQ", uloc_toUnicodeLocaleType) +STUB( + "tRTiIr5Ch3k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEE7get_refEv) STUB("tRVJLbW7c00", sceCloudClientTestConnection) +STUB("tRVc4zZBoGA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEEeqERKS7_) STUB("tRVmIlyGUSA", sceFiosDebugSetTraceMask) +STUB( + "tRXLO8Rce40", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayer11setplayerIdEPKc) +STUB( + "tRbxPtzGw2g", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEeqERKS9_) +STUB("tRcD9zm4TQI", mono_object_hash) +STUB("tRdCmMXTagg", + _ZNK7WebCore22EmptyFrameLoaderClient31interruptedForPolicyChangeErrorERKNS_15ResourceRequestE) STUB("tRdLlsyNo9g", sceDebugSetStepThread) +STUB( + "tRhY3UCz0s0", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V131NatConnectivityToMetricsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_24NatConnectivityToMetricsEEE) +STUB("tRhekl227Io", _ZNK9Inspector14ConsoleMessage6sourceEv) +STUB( + "tRif+V6BM0U", + _ZZSt9MakefacetISt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEESt8_LocinfoERT_T0_E3buf) +STUB("tRj5Mps8b0g", _ZN3JSC2VM19int32ArraySpaceSlowEv) +STUB("tRjEOZ3e0Tw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEC1Ev) +STUB( + "tRoPH6RcJ8o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE5clearEv) +STUB("tRrU4kb6AtE", _ZN3WTF11portAllowedERKNS_3URLE) +STUB("tRrh53bVLq4", _ZN3JSC19HeapSnapshotBuildernaEmPv) +STUB("tRtElxBLU-0", _ZN7WebCore6Path2DnwEm10NotNullTagPv) +STUB("tS3Zt0TJ7Ps", u_strToWCS_67) +STUB("tS4Vnaq2L4Y", _ZN3JSC7JSArray15copyToArgumentsEPNS_14JSGlobalObjectEPNS_7JSValueEjj) +STUB("tS5JwC4RP2k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEEC2Ev) +STUB("tS8-IO1AbCM", WKBundleSetMinimumLogicalFontSize) +STUB( + "tS90R6tXXa8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEEC2Ev) +STUB("tS9cMOapHWU", WKBundleNodeHandleCopyHTMLIFrameElementContentFrame) STUB("tSBxhAPyytQ", sceAgcDcbSetNumInstances) STUB("tSEVQ2wu6Q8", sceDebugReadProcessRegister) STUB("tSFK-c43YAI", sceKernelGetSocClock) +STUB("tSFoKsNPwds", _ZN7WebCore36ISOProtectionSystemSpecificHeaderBoxC2Ev) +STUB("tSHtCJTrxnk", OBJ_sn2nid) +STUB("tSM6+q9HRmU", _ZN7WebCore11MediaPlayer32acceleratedRenderingStateChangedEv) +STUB( + "tSNPCWN3ppU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("tSNvjtWkIfQ", _ZN7WebCore9FrameView8addChildERNS_6WidgetE) STUB("tSODkniGpoE", sceCesUtf32beToEucKr) +STUB("tSRqQ-+Y4PE", _ZN3sce4Json6ObjectC2ERKS1_) +STUB( + "tSVK+cKeOH4", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE5getIdEv) STUB("tSYd7MXN0yQ", sceNetApctlStartWithRetry) +STUB("tSeXchsZYm4", pss_code_mem_alloc) +STUB( + "tSedViyjopQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEC2ERKS7_) +STUB( + "tShtKH+FF6s", + _ZN9Inspector26AnimationBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "tSiAUT8rW9I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEEC2Ev) +STUB( + "tSidO7-ElY0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE21intrusive_ptr_sub_refEPS9_) +STUB("tSqQIT+jjsw", _ZN3sce7Toolkit2NP18GetUserFeedRequestC1Ev) +STUB("tSr+h942oXA", __tsan_external_read) +STUB( + "tSusGI+SAnk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEEC1ERS9_) +STUB( + "tSwKOFlx8sk", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitationsC2ERS5_) +STUB("tSxzKJq0HIw", _ZThn16_N9Inspector20InspectorTargetAgentD0Ev) +STUB( + "tSzLFOXh+pU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE5abortEv) +STUB("tSzrgOU29Pk", _ZN3JSC4Heap17isValidAllocationEm) +STUB("tT+OeNyAeKE", mono_aot_Sce_Vsh_Gls_GlsSharedMediaViewplt_end) +STUB( + "tT9ldmMROHM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEE11get_deleterEv) +STUB("tTBDMlVQIo0", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead17unsetJoinDisabledEv) +STUB("tTC3WlZSb4Q", + _ZN9Inspector22InspectorDebuggerAgent8didPauseEPN3JSC14JSGlobalObjectENS1_7JSValueES4_) +STUB("tTDqwhYbUUo", _Makeloc) +STUB( + "tTE8qfYDXy8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEEC2Ev) +STUB("tTImOZcDu4o", _ZNK3sce2Np9CppWebApi7Matches2V120ReportResultsRequest17getNpServiceLabelEv) +STUB("tTLEJS3+OIM", WKHTTPCookieStoreGetTypeID) +STUB("tTS5kgFcjWM", _ZN7WebCore9HTMLNames13maxlengthAttrE) +STUB("tTW6TdBv6wo", _ZN3WTF13printInternalERNS_11PrintStreamEx) +STUB("tTXCDT7IfKE", _ZN7WebCore11DisplayList4SaveD1Ev) +STUB( + "tTXCyBlhXHM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEED1Ev) +STUB( + "tTYWTBIqG88", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("tTZ+kreIIqI", _ZNK3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResults9getTeamIdEv) +STUB( + "tTZZUbreazw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEEaSERSB_) +STUB("tTbDAeQuIxs", _ZN7WebCore10FileSystem19filesHaveSameVolumeERKN3WTF6StringES4_) +STUB( + "tTdmfMMmjJQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEE3getEv) +STUB( + "tTfdZdopzlo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEaSERS7_) +STUB( + "tTt4q-cPOXg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEC2EPS8_) +STUB("tTtbdC1ovVk", unum_getTextAttribute_59) +STUB( + "tTwsK2zSA5U", + _ZN3sce2Np9CppWebApi14SessionManager2V168PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_12JoinableUserEEEEEPNS9_INS3_61PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEE) +STUB("tTxh9o6sVLI", _ZN3sce7Toolkit2NP2V27Ranking7Request15GetFriendsRanksC2Ev) +STUB("tU3aRFH+log", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE5emptyEv) +STUB( + "tU4wMxPL4cw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEEptEv) +STUB( + "tU8F2l1kCmI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEE6assignEPS7_PFvS9_EPNS2_10LibContextE) +STUB( + "tU8u32gOIlU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEEC2ERKSA_) +STUB( + "tUAia+oO3bQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEEaSERSA_) +STUB( + "tUCS1NimIjQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEED1Ev) +STUB( + "tUCkdNODRds", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEE10setContextEPNS2_10LibContextE) +STUB("tUJ648pgEyc", il2cpp_class_from_system_type) +STUB( + "tUJBKMv+thY", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE21intrusive_ptr_add_refEPS7_) +STUB("tUJHNKZmFYg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorImEEEC1ERKS6_) +STUB("tUT0r9LCo9g", _ZNK3sce2Np9CppWebApi12Leaderboards2V122GetRankingResponseBody12entriesIsSetEv) +STUB( + "tUVOb558hHY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("tUcY4ZhaAqs", ubidi_getLogicalMap_67) +STUB("tUfrHpMgwBk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEEC2EPNS2_10LibContextE) +STUB("tUgT33RRx2w", _ZN3sce2Np9CppWebApi10Activities2V114UserActivities5ErrorD2Ev) +STUB( + "tUiLfUhq85s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEEaSERKSA_) +STUB("tUiWdAiCcc4", _ZN3sce2Np9CppWebApi7Matches2V17Subtask9setStatusERKNS3_13SubtaskStatusE) +STUB( + "tUnPaoa2FSQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V128PostGameSessionsResponseBody6toJsonERNS_4Json5ValueEb) +STUB("tUo2aRfWs5I", _ZNSt14numeric_limitsIeE14max_exponent10E) +STUB( + "tUpt3GJb9ZY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEEC2Ev) +STUB( + "tUwfiXbOkoc", + _ZN3sce2Np9CppWebApi14SessionManager2V137PostPlayerSessionsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_13PlayerSessionEEEEEPNS9_INS3_30PostPlayerSessionsResponseBodyEEE) STUB("tV18n8OcheI", sceNpTrophySystemRemoveAll) +STUB("tV3Hpka3rcg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEEaSERS6_) STUB("tV3N4LyIutE", sceSystemLogger2DeliveryTerminate) +STUB( + "tV9qXAjqXkk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEC2Ev) +STUB( + "tVAnG4P+Zvs", + _ZN9Inspector8Protocol13BindingTraitsINS0_7Runtime18PropertyDescriptorEE11runtimeCastEON3WTF6RefPtrINS5_8JSONImpl5ValueENS5_13DumbPtrTraitsIS8_EEEE) +STUB("tVBpsmZQvjI", + _ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errorsC2EPNS1_6Common10LibContextE) STUB("tVCSUib8C4Y", sceKernelGetChildApp) +STUB( + "tVCtmnhUdkg", + _ZN3JSC14ProtoCallFrame4initEPNS_9CodeBlockEPNS_14JSGlobalObjectEPNS_8JSObjectENS_7JSValueEiPS7_) STUB("tVEdZe3wlbY", sceGnmGpuPaDebugLeave) +STUB("tVGIPxZgQr4", + _ZN7WebCore16isEndOfParagraphERKNS_15VisiblePositionENS_27EditingBoundaryCrossingRuleE) +STUB("tVHE+C8vGXk", _ZTVSt8bad_cast) +STUB( + "tVIThZIc1Ts", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEE11release_refEv) +STUB("tVJpWGFi-+M", SSL_set_ex_data) STUB("tVYTVNDLSl4", sceCesGbToUtf32be) +STUB("tVaQLuaFe0I", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEE3getEv) +STUB( + "tVgwYjogi+M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEC2EPS8_) +STUB( + "tVjQCobKSaE", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("tVkX3Yby7Y0", unorm_concatenate_67) +STUB("tVnfe7+IZEk", _ZN7Nicosia16SceneIntegrationD1Ev) +STUB("tVqWH4ZUChg", _ZN3sce7Toolkit2NP2V28Matching17AttributeMetadataC2Ev) +STUB( + "tVrcG969VUg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("tVwhmwnT3tY", rgctx_fetch_trampoline_mrgctx_71) +STUB("tVxmPrBJufE", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Wordfilter16SanitizedCommentEE5resetEv) +STUB( + "tW8YR8wpOpc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEC2Ev) STUB("tW9W+CAG4FE", sceAcmBatchStartBuffer) +STUB("tWBYHiUxfGM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody8fromJsonERKNS_4Json5ValueE) +STUB("tWES3w99BPs", _ZN7WebCore17CSSPrimitiveValue14setStringValueENS_11CSSUnitTypeERKN3WTF6StringE) STUB("tWFPPuAJxks", scePthreadGetcpuclockid) +STUB("tWI4Ej9k9BY", __negdf2) +STUB("tWIbltNkRvU", WKPageSetPageFindClient) +STUB("tWKhEaNvFCc", _ZNK7WebCore14ScrollableArea17totalContentsSizeEv) +STUB( + "tWMIEzsdIOs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEmmEi) +STUB("tWN91o4uKzw", _ZN7WebCore15AffineTransform5blendERKS0_d) STUB("tWS4uYFTU0M", sceFiosFHTruncateSync) +STUB( + "tWSiyWDeAvY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEEC1ERSA_) +STUB( + "tWVEX8YWQwI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("tWW+bu6jBPA", rgctx_fetch_trampoline_mrgctx_37) +STUB( + "tWZ9ofoWyc4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) STUB("tWiSgXov8GM", sceVdecswSyncDecodeOutput) +STUB( + "tWj64s-TYQ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("tWk0nSidNi4", _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetail7getviewEv) +STUB( + "tWmkaICuw1Y", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeOnlineId2AccountIdBatchaSERS5_) +STUB( + "tWn8HpQcYyo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEEdeEv) +STUB( + "tWnuhSX8tQM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEppEi) +STUB( + "tWoUcwGqOxE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) STUB("tWoe9IlGAhs", sceVideoRecordingStart) +STUB("tWpe8mmJswo", mono_shared_mutex_init) +STUB( + "tWtyj2fjWVk", + _ZN3sce2Np9CppWebApi11Matchmaking2V120ErrorResponseFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_5ErrorEEEPNS8_INS3_13ErrorResponseEEE) +STUB("tWzrZ7vvWIg", WKPreferencesCopySansSerifFontFamily) +STUB("tX+X7SrADMY", _ZN7WebCore15WindowEventLoop27breakToAllowRenderingUpdateEv) +STUB( + "tX0sOLDx5WU", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStats17setnpServiceLabelEj) +STUB( + "tX3xBBbBQN0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEE3getEv) +STUB("tX8ED4uIAsQ", __udivdi3) +STUB("tX9i8gWFw2E", Java_java_lang_SecurityManager_currentClassLoader0) +STUB( + "tXG8yaR6CZU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEE7add_refEv) STUB("tXNLLCUCfOE", sceVideoCoreIfSetFunctionTableUnlimited) +STUB("tXNeek-WA+4", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13WhoLikedStoryEE10deallocateEPS3_m) +STUB("tXTYVHfJ3Ac", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEC1Ev) +STUB( + "tXVE6vrXktQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEEptEv) +STUB("tXXeQRUWwvU", _ZN3sce2Np9CppWebApi14ConnectAccount2V214PSNError_error10setMessageERKi) +STUB("tXf8m1pD2a4", + _ZN7WebCore12RenderWidget9setWidgetEON3WTF6RefPtrINS_6WidgetENS1_13DumbPtrTraitsIS3_EEEE) +STUB( + "tXgdzLuvd8k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEE7get_refEv) +STUB("tXhczWuQIls", _ZN3sce2Np9CppWebApi7Matches2V114ResponseMemberD1Ev) +STUB("tXjKU0zFtTU", mono_aot_Sce_PlayStation_HighLevel_UI2unbox_trampolines) +STUB( + "tXnQP-AjJKM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus8setOwnerERKNS1_6Common12IntrusivePtrINS3_5OwnerEEE) +STUB( + "tXsoMjBbA24", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEC2Ev) +STUB("tXwdR3KKGTY", _ZN7WebCore16TrackPrivateBaseD1Ev) +STUB( + "tXxHPSycl7A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEcvbEv) +STUB( + "tXz5e46oRnM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEdeEv) +STUB("tXzkpzXH9Ng", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEEixEm) +STUB( + "tY6KfsieVnE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEEC1ERKS9_) +STUB("tY7yQOR9-8s", glGetActiveUniform) +STUB("tYBLm0BoQdQ", _ZNSt10moneypunctIcLb0EEC1Em) +STUB("tYCFlMnA9Cg", + _ZNK3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends13isInitializedEv) +STUB( + "tYCRGwqj2k0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEC1EPS8_) +STUB("tYLQOjzG0RI", WKInspectorShowConsole) +STUB( + "tYOUz5pK1eQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEC2EPS8_) +STUB("tYPjyjJfs98", _ZN3sce7Toolkit2NP2V211UserProfile10NpProfilesC2ERKS4_) +STUB( + "tYSIjatqdec", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE10setContextEPNS2_10LibContextE) +STUB("tYTJIi4s6t0", cairo_get_operator) +STUB("tYUsTbbXrG0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils5IdMapEE12deepCopyFromERS7_) STUB("tYVWcWDnctE", sceRudpListen) +STUB("tYX4PkoKBpk", ucsdet_getUChars_67) +STUB("tYXmk-1qlkA", _ZN23sceMetadataReaderWriter8Metadata8setFieldERKSsRKNS_5ValueE) +STUB("tYfl-tPCGXw", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_15TrophyGroupInfoEE3getEv) +STUB( + "tYkxaBl3luA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEE11release_refEv) +STUB("tYlRCuN-3Jo", _ZN3sce7Toolkit2NP23ChallengeGetItemRequestC1Ev) STUB("tYlc1DAuIOE", sceSlimglSupportServerProcess) +STUB("tYmOHeWa4W0", _ZN3sce7Toolkit2NP2V27Ranking7Request13GetUsersRanksC1Ev) +STUB( + "tYrHq0BkIT4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEEcvbEv) +STUB( + "tYrTk2-QBFk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEeqERKS9_) +STUB( + "tYtZSHvXHso", + _ZThn24_N9Inspector22InspectorDebuggerAgent18continueToLocationERN3WTF6StringERKNS1_8JSONImpl6ObjectE) +STUB( + "tZ+2Lm15pOE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEED1Ev) +STUB("tZ1lckB5o2A", glDeleteTextures) STUB("tZ2yplY8MBY", sceKernelGetPageTableStats) +STUB("tZ44OvX2XDY", _ZN3sce3pss4core7imaging4Font31NotifySystemConfigurationChangeEPKc) +STUB( + "tZBviK4b-Ng", + _ZThn16_N9Inspector21InspectorRuntimeAgent10saveResultERN3WTF6StringERKNS1_8JSONImpl6ObjectEPKiRNS1_8OptionalIiEE) +STUB( + "tZCRtmdcpS0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEEptEv) STUB("tZCSL5ulnB4", sceGnmGetGpuInfoStatus) STUB("tZDDEo2tE5k", sceAmprCommandBufferGetSize) +STUB("tZI-K0skIX0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEcvbEv) +STUB( + "tZKZbu0m8xY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEC2EPS8_) +STUB( + "tZQUpCDyt+0", + _ZN3sce2Np9CppWebApi13InGameCatalog2V514ContainerMedia9setImagesERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_5ImageEEEEE) +STUB( + "tZRVO66E8Og", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("tZSQ+VFbsxE", glUniform4fv) +STUB("tZTQnArQQsw", _ZN7WebCore12JSAudioTrack11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("tZUhORwFcsE", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEEptEv) +STUB("tZY4+SZNFhA", msync) +STUB( + "tZaMN9avrwI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEED1Ev) +STUB("tZdMwygCW2w", png_init_io) +STUB( + "tZe+f1d2cpQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEneERKS9_) +STUB("tZgU77v7J2c", _ZN3sce7Toolkit2NP20ChallengeRecvDetailsC1Ev) +STUB("tZifIaEReZ0", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEEixEm) +STUB("tZioKsu5pxs", _ZNK3sce3Xml3Dom8NodeList9getLengthEv) +STUB("tZj4yquwuhI", _ZNKSt7_MpunctIcE16do_decimal_pointEv) +STUB( + "tZkHl73EeN8", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("tZmrptYQSvQ", _ZN12video_parser18cMp4FFLHndlManager18getFF4OdSampleHndlEjj) +STUB("tZoBhu3Y-qY", _ZNK7WebCore10RenderText8textNodeEv) +STUB( + "tZpSnzYhp9Q", + _ZN9Inspector27DOMStorageBackendDispatcher18getDOMStorageItemsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("tZvtetuMmm0", uprv_compareInvEbcdicAsAscii_67) +STUB("tZxK5i13Vi0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEE7get_refEv) +STUB("tZyvY1I7uqk", _ZNK7WebCore16HTMLTableElement7captionEv) +STUB( + "ta-1ObY1TsI", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi42ParameterToPutGameSessionsSearchAttributesC2Ev) STUB("ta-oGegHdTQ", sceDbgGetExecutablePath) +STUB("ta89HthrfEo", + _ZNK3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriends9hasfilterEv) +STUB("ta8lASAxro4", _ZN3sce2npneERKNS0_4UserES3_) +STUB("taM+OFvIQOQ", uiter_setUTF8_67) +STUB( + "taM3cRkZT+Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEEcvbEv) +STUB("taQTPWjQxKw", _ULx86_64_stash_frame) STUB("taRWhTJFTgE", sceKernelGetdirentries) +STUB("taRc5-z61so", _ZNK7WebCore19JSHTMLSelectElement7wrappedEv) +STUB("taVak8LhC1o", mono_aot_System_Netjit_got) +STUB( + "tabYYRHwzp4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE21intrusive_ptr_add_refEPS7_) +STUB( + "tabpiA7RwmI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEptEv) +STUB("tad-whnuQxI", uset_containsAllCodePoints_67) +STUB("tai-HSaPBZU", _ZN9Inspector28HeapBackendDispatcherHandlerC2Ev) +STUB("tajPa-5Fx9M", + _ZN7WebCore10JSLocation15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB("taqEUfh8XtI", _ZN3sce2Np9CppWebApi12Leaderboards2V15ErrorC1EPNS1_6Common10LibContextE) +STUB( + "tarMBBZmlyY", + _ZN3sce2Np9CppWebApi14SessionManager2V160PostGameSessionsSessionIdMemberSpectatorsResponseBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_28ResponseGameSessionSpectatorEEEEEPNS9_INS3_53PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEE) +STUB("tavzoCklAu4", _ZN3JSC4Yarr12errorToThrowEPNS_14JSGlobalObjectENS0_9ErrorCodeE) +STUB( + "tayzlhuZcno", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEC1EPS8_) +STUB( + "tazqejXZBa0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE3endEv) +STUB("tb++akeq9p8", _ZN7WebCore3URL25fileURLWithFileSystemPathERKN3WTF6StringE) +STUB( + "tb+NTSWJw74", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEE3getEv) STUB("tb3cZTCl8Ps", sceContentExportFinish) +STUB("tbC6eRj2EoE", _ZN3JSC7Symbols25AggregateErrorPrivateNameE) +STUB( + "tbEiWBTUnLE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEaSERS7_) +STUB("tbFbj4oRbK8", mono_aot_Sce_Vsh_SyscallWrapperplt) +STUB("tbGlFkI2QxQ", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_6NpUserEED1Ev) +STUB("tbNCyh-W7zA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEC1ERS7_) +STUB( + "tbPywsJDdL8", + _ZN9Inspector22InspectorDebuggerAgent28schedulePauseOnNextStatementENS_26DebuggerFrontendDispatcher6ReasonEON3WTF6RefPtrINS3_8JSONImpl6ObjectENS3_13DumbPtrTraitsIS6_EEEE) +STUB("tbUtPuQKNcw", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchDetailC2Ev) +STUB( + "tbVDVMhArRQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEdeEv) +STUB("tbWxzNR07RQ", _ZNK3WTF9MediaTime4dumpERNS_11PrintStreamE) +STUB("tbXJrGyYTko", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15NpSessionMemberEEC2Ev) +STUB("tbeA-hlRlHc", _ZN15AbstractStorage15HttpTransactionC1Ev) +STUB("tbgoC5M0Sgg", uprv_dl_close_67) +STUB("tbhRqP+K-1c", _ZN3WTF13ReadWriteLock8readLockEv) +STUB( + "tbhXNZwWhfo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEC1EPS8_) +STUB( + "tblYR5gHnE8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEEED1Ev) +STUB( + "tbpTX2oTlZ8", + _ZN7WebCore32ScrollingStateFrameScrollingNode21setContentShadowLayerERKNS_19LayerRepresentationE) +STUB("tbqWFB+UHMQ", + _ZGVZL14report_failure19_Unwind_Reason_CodePN10__cxxabiv115__cxa_exceptionEE4e_ti) +STUB( + "tbrfZNGB4Gs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEE7get_refEv) +STUB("tbs4tGxCa5E", _ZN7WebCore18MessagePortChannel14processForPortERKNS_21MessagePortIdentifierE) +STUB( + "tc+aJKgL9FU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEC2Ev) +STUB( + "tc1rmiwcvl0", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody23setTotalDataStatusCountERKi) +STUB("tc6OvKVVv+0", _ZNSt9_FacetptrISt10moneypunctIwLb1EEE6_PsaveE) +STUB("tc6mjkaUH9o", _ZN3WTF11Persistence7Decoder6decodeERi) +STUB( + "tc7YMGTjHZE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEmmEv) +STUB("tcBJa2sYx0w", __ltdf2) +STUB( + "tcCetlezJ5Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "tcEhUEM2ZKc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEaSERKS9_) +STUB( + "tcFXFni9QWM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEeqERKS9_) +STUB("tcLDimriUlI", FT_Get_Var_Design_Coordinates) +STUB("tcN0ngcXegg", j0) STUB("tcSNPbqj3pk", sceNpGriefReportCdPost) +STUB("tcSjvPP2-4s", u_isspace) STUB("tcUPZOxXdiE", sceFsGetClusterStatistics) +STUB( + "tcUWWTyqWSs", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi35ParameterToSetGameSessionProperties40setpatchGameSessionsSessionIdRequestBodyENS1_6Common12IntrusivePtrINS3_37PatchGameSessionsSessionIdRequestBodyEEE) +STUB("tcVQcBMJato", eglCreatePixmapSurface) +STUB("tcVeGFc80oQ", _ZN7WebCore37BasicComponentTransferFilterOperationD2Ev) +STUB("tcVi5SivF7Q", sprintf) +STUB( + "tcWfuozeqaE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEED2Ev) +STUB("tcXG96zu+a8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE8copyFromERKS7_) +STUB( + "tcZIun-aX0o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEED1Ev) +STUB("tcdvTUlPnL0", _ZNSt10moneypunctIcLb1EED0Ev) +STUB( + "tce2rQPPxPc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEEC1ERKSA_) +STUB("tcf9HUwNaX0", res_getArrayItem) +STUB( + "tck9g-yOqPg", + _ZN3sce4Json11Initializer28setGlobalTypeMismatchHandlerEPFRKNS0_5ValueENS0_9ValueTypeEPS3_S6_PvES7_) +STUB( + "tcl4gghIlJg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEE5resetEPS6_) STUB("tcm8nRXZwNU", sceGameCustomDataDialogGetStatus) +STUB( + "tcnDVMG2Dpk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEplEm) +STUB("tcrzVOZGz9g", getpwuid) STUB("td+DYvbbDfk", pthread_get_specificarray_np) +STUB("td3-B6sLCag", utrie2_get32) +STUB("td8GJFROaEA", _ZNK3sce2np4User9GetUserIdEv) +STUB("tdAZsC7MdHo", _ItL_pS4) +STUB("tdGo+EDYs3w", mono_metadata_nested_in_typedef) +STUB( + "tdM3DUX7eZU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "tdNvGJ1912I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE5clearEv) +STUB("tdPOA8QmW3Y", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable20unsetLastUpdatedUserEv) STUB("tdQArULbNQk", sceNpSnsFacebookDialogInitialize) +STUB("tdT-m7BcuWI", _ZNK7WebCore26Matrix3DTransformOperation5cloneEv) +STUB("tdTeGlglz80", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEC1Ev) +STUB( + "tdWe9cUtIJY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE8pushBackERKS8_) +STUB( + "tdZXb5t2yic", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE3endEv) +STUB("tdcAqgCS+uI", mbstowcs_s) +STUB("tdcal7GAw5Q", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_22ConsumeChallengeResultEEC1Ev) +STUB("tdgoXqPSNKk", _ZNK3sce2Np9CppWebApi7Matches2V127ResponseTeamMemberStatistic11getPlayerIdEv) +STUB("tdh9Qm7Je4Q", _ZN3sce2Np9CppWebApi13InGameCatalog2V513ContentRating9setSystemEPKc) +STUB( + "tdhi24d4rSA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB( + "tdi4d4n7qLs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEC1Ev) +STUB( + "tdjexAqKMvw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEE3getEv) +STUB("tdkeGhuxqZM", _ZN7WebCore15CSSGroupingRule10insertRuleERKN3WTF6StringEj) +STUB("tdncLeu20ow", __tsan_get_current_fiber) STUB("tdpqr1lzbOw", sceDebugGetApplicationList) +STUB("tdqlF-ReFI8", sqlite3_value_text) +STUB("tdt1pcVlfac", + _ZN3sce2Np9CppWebApi14SessionManager2V129GetPlayerSessionsResponseBody17getPlayerSessionsEv) +STUB("tdwyUqTenRI", _ZN3JSC4Heap18addToRememberedSetEPKNS_6JSCellE) +STUB( + "tdznos-Agzw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEeqERKS9_) STUB("te+MBYMzDhY", scePthreadResumeAll) +STUB( + "te3jy7otMSM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEdeEv) +STUB( + "te3oD0RflPk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEEEC1ERKSA_) +STUB("te7XXGBo6fY", _ZN3sce2Np9CppWebApi7Matches2V120RequestTeamStatisticD1Ev) STUB("teCyKKZPjME", sceAudioOutStopSharePlay) +STUB( + "teEF1DNeEKo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEE3getEv) STUB("teGoPWnEgd4", sceLncUtilIsAppSuspended) +STUB("teIqLgy2D+M", _ZN7WebCore12SameSiteInfo6createERKNS_15ResourceRequestE) +STUB( + "teKJVHyfvQE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE6resizeEj) +STUB("teLywa5jrbk", _ZN7WebCore16FrameLoadRequestC1EOS0_) +STUB("teMFfokLLkU", + _ZN7WebCore4Page28setOverrideViewportArgumentsERKN3WTF8OptionalINS_17ViewportArgumentsEEE) +STUB("teQaDxtEdIA", mono_aot_Mono_Dynamic_Interpreterunbox_trampolines_end) +STUB( + "teVVyNl4BWg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEC1EPKS8_) STUB("teVnFAL6GNY", sceNpJsonParseInit) STUB("tea1EXJiSB8", sceNpManagerIntGetAccessTokenViaImplicitFlow) +STUB( + "tecjhOr9WAs", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi42ParameterToPutGameSessionsSearchAttributes45getputGameSessionsSearchAttributesRequestBodyEv) +STUB( + "tehquu2BBP8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118GameSessionForReadEEEEEEC1ERKSA_) +STUB("tei1IrlQ7Yg", _ZN10Deprecated11ScriptValueC2Ev) STUB("teiItL2boFw", sceKernelReleaseFlexibleMemory) +STUB( + "teiV8wvtt18", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEE11release_refEv) STUB("tesM6ViaX6M", sceNpAppLaunchLink2IntGetCompatibleTitleIdNum) STUB("teuK4QnJTGg", sceNetCtlGetIfStat) +STUB( + "tewDXILmabo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEE4termEv) +STUB( + "tewFk6K6aB8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBody30setComparedLastUpdatedDateTimeERK10SceRtcTick) STUB("texLPLDXDso", sceSystemStateMgrIsGpuPerformanceNormal) +STUB("tezktVy0WgY", usearch_next_67) +STUB( + "tf-NwugDexI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEC2EPS8_) +STUB( + "tf1-Mh5B6y0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) STUB("tf25gBJ+feI", sceAppCheckerAbort) +STUB("tf3dP8kVauc", CERT_enumerateCRL) +STUB( + "tf5+y8ZjnQs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("tf5du8bk4BI", _ZN3sce2Np9CppWebApi11UserProfile2V110FriendsApi21ParameterToGetFriendsaSERS5_) +STUB("tf6au78SDqY", mono_aot_Sce_Vsh_Accessorplt) +STUB("tfFcPa1I5w8", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce10ContainersEE12deepCopyFromERS7_) +STUB("tfIRAK171cg", uhash_setKeyHasher_67) +STUB("tfNbpqL3D0M", vsscanf_s) +STUB("tfQ0kbxb2nQ", _ZN7WebCore14DocumentLoader14notifyFinishedERNS_14CachedResourceE) +STUB( + "tfQgc4r4HQM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEC1EPS6_PNS2_10LibContextE) +STUB( + "tfTrGA8NvDY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEC1EPS8_) +STUB( + "tfVwUxH9AY0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEEC2Ev) +STUB( + "tffBZJOq+yg", + _ZNK3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRanking24hasgetRankingRequestBodyEv) STUB("tfhHT4x-jEI", sceVideoCoreChangeDisplayStatus) +STUB("tfmEv+TVGFU", _ZGVNSt10moneypunctIwLb0EE2idE) +STUB("tfnVwz2tTuA", mono_get_exception_thread_interrupted) STUB("tfqGvR6HbC4", sceFsInitMountLwfsOpt) +STUB("tft0vpf8GIs", _ZN7WebCore17JSHTMLLinkElementC1ERKS0_) +STUB( + "tfydseFQZ6s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "tfz3G0qyoAk", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10setString3EPKc) +STUB( + "tfzTwJY5xfg", + _ZN3sce2Np9CppWebApi14SessionManager2V138ResponseGameSessionMemberPlayerFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_25ResponseGameSessionPlayerEEEEEPNS9_INS3_31ResponseGameSessionMemberPlayerEEE) +STUB( + "tg42oMO6+Yc", + _ZN7WebCore12EventHandler40selectionExtentRespectingEditingBoundaryERKNS_16VisibleSelectionERKNS_11LayoutPointEPNS_4NodeE) +STUB("tg59cpaTwXM", mono_image_lookup_resource) +STUB("tg64lLYQyeY", _ZN12Mp4Retriever18processUdtaBoxMainEv) +STUB( + "tg7JVdTXeDY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEmmEi) +STUB( + "tgAlJR4d18k", + _ZN3WTF20ParallelHelperClient17runTaskInParallelENS_6RefPtrINS_10SharedTaskIFvvEEENS_13DumbPtrTraitsIS4_EEEE) +STUB("tgDoqJtpl7w", _ZN3sce7Toolkit2NP20CategoryBrowseParamsC1Ev) +STUB( + "tgMBjWUaHPw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE7reserveEi) +STUB("tgMVZH7ZyuQ", monoeg_assertion_message) +STUB( + "tgPSrk75t3c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEE5resetEPS9_) +STUB( + "tgPYoQPXM+E", + _ZN9Inspector25DebuggerBackendDispatcher17setOverlayMessageElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) STUB("tgPoC4+mOy4", sceTsGetNextAuInfo) +STUB("tggx5SZ5H+k", __asan_report_store1) +STUB("tgioGpKtmbE", _Mtx_init_with_name) +STUB( + "tgipLuHtoVw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEppEi) +STUB("tgoE87ZlQTo", _ZN3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponseD2Ev) +STUB( + "tgpbZU-29tQ", + _ZN7WebCore22HTMLFormControlElement13checkValidityEPN3WTF6VectorINS1_6RefPtrIS0_NS1_13DumbPtrTraitsIS0_EEEELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("tgqe6pejnj4", _ZN7WebCore15JSFetchResponse4infoEv) +STUB("tgt2iAIloys", WKPageGetBackForwardList) +STUB( + "tgu8Waf+7lw", + _ZN7WebCore31TextureMapperPlatformLayerProxy27activateOnCompositingThreadEPNS0_10CompositorEPNS_18TextureMapperLayerE) +STUB("tgvbJBuWcGY", __tsan_atomic16_load) +STUB("tgxvowtOtX4", SwCtrlManagerSetSRM) +STUB("th2Ae7bw-9U", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11ProductInfoEE7addressERKS3_) +STUB( + "th7zMKW-8OU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEppEi) +STUB("thA48N-0VwQ", FT_Stream_Free) +STUB( + "thCHipcOjPQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEE7get_refEv) +STUB( + "thD0bx3NMec", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEC2Ev) +STUB("thDTXTikSmc", _ZTSPKh) STUB("thDt9upZlp8", sceHmdGetDeviceInformation) +STUB( + "thEN4CZrhfY", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionProperties12getsessionIdEv) STUB("thFvRaPMBeg", sceFsDevpfsFetchMetaEntry) +STUB( + "thHphV6k9SY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEED1Ev) STUB("thJiv7AgGXY", sceUlpMgrQueuePush) STUB("thLNHvkWSeg", sceAudioInSetConnectionsForUser) +STUB( + "thNpav624xA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEC2EPS6_PNS2_10LibContextE) +STUB( + "thOrajbTcyc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEC1Ev) STUB("thTS+57zoLM", sceHttpUriUnescape) +STUB( + "thWUG34JhnA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEptEv) +STUB( + "thXGszFCk80", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE5eraseENS2_8IteratorIS6_EERS9_) +STUB("thXqBd6xy1k", mono_aot_Sce_Vsh_LncUtilWrapperplt) STUB("thbPcG7E7qk", sceGnmDrawIndexIndirectCountMulti) +STUB("thk14jReXAs", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13SessionMemberEE7addressERKS3_) +STUB( + "thyCVuVdvt0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "thzrpGw+y0A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEEcvbEv) +STUB("ti05wqo4hwA", _ZN9Inspector34DOMStorageBackendDispatcherHandlerC2ERKS0_) +STUB("ti2hAooRtQI", rgctx_fetch_trampoline_rgctx_84_p) +STUB( + "ti5XumbdCx0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEED2Ev) +STUB("ti74yN+Sg8o", _ZNK3JSC6DOMJIT9HeapRange4dumpERN3WTF11PrintStreamE) +STUB( + "tiGE6itroKo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE21intrusive_ptr_sub_refEPS9_) STUB("tiIlroGki+g", sceFontGetFontResolution) +STUB("tiOgRYEeYgw", _ULx86_64_local_addr_space) +STUB("tiXgxTWTTXY", Java_java_net_Inet4AddressImpl_getLocalHostName) +STUB( + "tiYvOPyDViQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEaSERKS8_) +STUB("tic8Zq5xRys", Java_org_blurayx_s3d_ui_DirectDrawS3D_drawStereoscopic) +STUB( + "tiguyVQWGHs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEC2Ev) +STUB("tihlSpbkjW4", JVM_NativePath) +STUB( + "tij7spC1Pz8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEixEm) +STUB("tijTjZqsz-Y", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V13Mmr8fromJsonERKNS_4Json5ValueE) +STUB( + "tikVyImuS54", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("timf-m2k7j4", _ZNK7WebCore16HTMLMediaElement11canPlayTypeERKN3WTF6StringE) +STUB("tiouZ2JaGjk", + _ZN3sce2np10JsonParser17jsonParseCallbackEP13JsonParseInfoijjPKcPK12JsonValueElmi) +STUB("tizCFt051h8", _ZNSt10filesystem6_LstatEPKcPNS_5permsEPi) +STUB("tj-NdbZ2aps", _Z24VideoPlayerVcs_GetVolumei) +STUB("tj-nUlJCp-8", ktimer_getoverrun) +STUB("tj-sfrnuzJ0", g_PS4TitleNPHasTrophyPack) +STUB("tj3+JFCC6bE", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V511ContentTypeEEppEi) +STUB( + "tj4--dku240", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEC1Ev) +STUB("tj6YdqFHAiI", _ZN7WebCore24CoordinatedGraphicsLayer12syncPositionERKNS_10FloatPointE) +STUB("tjBm-5cNIyQ", ucase_isSoftDotted) +STUB("tjHNFUnT8kc", mono_aot_Sce_Vsh_Orbis_BgftAccessorjit_code_start) +STUB("tjIKODhAIPA", _ZN7WebCore16HTMLInputElement15setEditingValueERKN3WTF6StringE) +STUB("tjJ-aT7ndxw", _ZNK7WebCore13ExceptionData12isolatedCopyEv) +STUB( + "tjLUgI-06iQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEppEv) +STUB("tjMHQP1PJPk", _ZN7WebCore8SVGNames9mediaAttrE) +STUB( + "tjMbEKRozJA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("tjOYtZ4xFN0", _ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEE5beginEv) +STUB("tjOajwNhgRA", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110TaskStatusEEptEv) +STUB( + "tjRIBQhZYbc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEC1EPS8_) +STUB("tjZgJ24KMJs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEptEv) +STUB("tjbj7QysZwk", + _ZN15AbstractStorage14YoutubeContentC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) +STUB("tjeOs2M291o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEE11release_refEv) +STUB( + "tjfSBe9kLwE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEED2Ev) +STUB("tjiktx28Qmg", _ZN3sce2Np9CppWebApi6Common8IteratorImEC2Ev) +STUB("tjkLCorH8uU", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIiEplEm) +STUB("tjuEJo1obls", psignal) +STUB("tjw5PNNDpTU", monoeg_g_list_foreach) +STUB( + "tjwkahKT8Fc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEC1EPKS8_) +STUB( + "tjwl9s25xtk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("tjyjJ+JcC-g", delegate_virtual_invoke_21) +STUB( + "tk+PSz1QUZM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEC1Ev) STUB("tk0p0JmiBkM", sceNetShowPolicy) +STUB("tk57Pd6sBUM", _ZN7WebCore11DisplayList17FillRectWithColorD0Ev) +STUB( + "tkChl7BzCQ4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE13getLibContextEv) +STUB( + "tkDqvHewUCU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("tkKBGKmUGa4", WKPreferencesGetSyntheticEditingCommandsEnabled) +STUB("tkNek0GUewk", _ZN7WebCore22EmptyFrameLoaderClient31dispatchDidCancelClientRedirectEv) STUB("tkNfuSDEgYg", sceNpPush2UnsetNpCommunicationId) +STUB("tkO6YK-5qK4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEaSERKS7_) STUB("tkRwnzG4Tus", sceG2PDialogUpdateStatus) +STUB("tkS7SQsVnOQ", mono_assembly_loaded_full) +STUB("tkW6evZKLSQ", mono_aot_ReactNative_PUIunbox_trampolines) +STUB("tkWdIsfDtPE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEEC1EPS6_PNS2_10LibContextE) +STUB( + "tkXup62fs8s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEEC1Ev) +STUB( + "tkYArh1U2Ns", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEC2Ev) +STUB("tkYRLdbxLPA", _ZNK3sce7Toolkit2NP15CommunicationId5getIdEv) +STUB("tkZ7jVV6wJ8", _ZNSt10bad_typeidD2Ev) +STUB( + "tkdxU++cwHE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEE11release_refEv) +STUB( + "tkeegOaBEY0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEE11release_refEv) +STUB("tkfkwdKXdSM", _ZN9Inspector25ConsoleFrontendDispatcherdlEPv) +STUB("tkjQ3qlm7Q8", _ZN12video_parser10cVideoPath8FinalizeEv) +STUB( + "tkoKXFaw-FU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEEC2ERSA_) +STUB("tkqNipin1EI", _ZNSt7collateIcEC2Em) +STUB("tkrYzxqJE1c", _ZN3JSC8Debugger16toggleBreakpointERNS_10BreakpointENS0_15BreakpointStateE) +STUB( + "tkz5iAQQCGA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEE11release_refEv) +STUB("tkzbKikPJDU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEE5emptyEv) +STUB( + "tl+KtpmjYeU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEE7get_refEv) +STUB("tl04STIArl8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEC2Ev) +STUB("tl72PmqhXww", FT_Face_GetCharsOfVariant) +STUB( + "tl8Q2hJN3kk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEE3getEv) +STUB("tlF0Q4BsxOc", ucnv_cbFromUWriteSub) +STUB( + "tlGOSXXyHnY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEixEm) +STUB( + "tlHO5MLwggw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEED1Ev) +STUB("tlIqwG4H+zs", _ZNK7WebCore14ScrollableArea32verticalScrollbarStateForTestingEv) +STUB("tlLGI8Tw+dU", _ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetail11setLastNameEPKc) STUB("tlLu+KqzgDY", sceKernelGetProductStr) +STUB("tlRJlQrHMnI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEED1Ev) +STUB( + "tlScnRDzH-o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEED2Ev) +STUB("tlSlRtSqNbE", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15NpSessionMemberEE9constructEPS3_RKS3_) +STUB("tlYWQZYPpeQ", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIdEmmEv) +STUB("tlbwNSkkrsM", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_23NpSessionInvitationInfoEE9constructEPS3_RKS3_) +STUB("tlfWS7PHmoY", _ZN7WebCore14roundedIntRectERKNS_9FloatRectE) +STUB("tlgulkXDKdY", _ZN3JSC7Symbols22Uint32ArrayPrivateNameE) +STUB("tlhUtenYAsM", _ZN12video_parser5vpcom5_TellEPNS_8_vp_fileEPx) +STUB( + "tlhhan9QWqo", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament16RegisteredRosterEE19setCustomReturnCodeEi) +STUB("tlj2lbY+CZs", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11EntitlementEEneERKS4_) +STUB( + "tlpTJzJNruI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEeqERKS9_) +STUB("tlpXm5KLgqk", _ZN3sce7Toolkit2NP2V24Core8ResponseINS3_5EmptyEEC1Ev) +STUB( + "tlr5D1tgD4M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEC2ERS8_) +STUB("tluz-CQSrnM", _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse13getActivityIdEv) +STUB("tlvU9LeSPT8", _ZN7WebCore24CoordinatedGraphicsLayer10createTileEjf) +STUB( + "tlxGEdWIwa4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEplEm) +STUB("tm++mIQYHUI", _ZN3sce7Toolkit2NP2V27Ranking12RangeOfRanks14MAX_NUM_BOARDSE) +STUB("tm+Ktm7aelA", glGetBooleanv) +STUB( + "tm15+rwx5pc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEC1Ev) +STUB("tm2ZNDsk9wI", _ZN3sce2Np9CppWebApi14SessionManager2V112ErrorFactory7destroyEPNS3_5ErrorE) +STUB( + "tm34QkmAd3Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEEaSERSA_) STUB("tm3Hb4s0et8", sceFiosCachePrefetchFHRangeSync) +STUB("tm5DPUBTjxE", _ZN7WebCore21DiagnosticLoggingKeys12retrievalKeyEv) +STUB( + "tm5NAHOsYr4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEE5emptyEv) +STUB("tm6Sm6lzkOU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEcvbEv) +STUB( + "tmHQakReRvI", + _ZN3JSC12profiledCallEPNS_14JSGlobalObjectENS_15ProfilingReasonENS_7JSValueERKNS_8CallDataES3_RKNS_7ArgListE) +STUB( + "tmJRKboEn9A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEppEi) STUB("tmOiNISgk2I", sceIduTerm) +STUB("tmUOdbwJw1E", _ZN7WebCore10FileHandle4readEPvi) +STUB("tmb4NgTbI8M", _ZN3sce7Toolkit2NP2V210Tournament25BracketInformationOfMatchD2Ev) STUB("tmcEKba0ilI", scePssPadrGetOutputPortDescription) +STUB("tme8lbzh1Kc", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEEC1ERKS5_) +STUB("tmeC+p2Gbr0", _ZN9Inspector15AsyncStackTrace6removeEv) STUB("tmfr97+ED5I", sceAmprMeasureCommandSizeSetMarkerWithColor) +STUB( + "tmiGXs5z2HE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("tn0Pv3hgFAY", + _ZN6WebKit12ChildProcess17initializeProcessERKNS_36ChildProcessInitializationParametersE) +STUB("tn1V1FW4GwQ", _ZN7WebCore11MathMLNames9mspaceTagE) STUB("tn3VlD0hG60", scePthreadMutexUnlock) +STUB( + "tn7Lpk1HtZo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "tnEUacE8vQA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE10setContextEPNS2_10LibContextE) +STUB("tnTAwqsdFUM", _ZN7WebCorelsERN3WTF10TextStreamERKNS_11LayoutPointE) +STUB( + "tnTpFDujuxQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("tnVSnLF46eo", uregex_group_67) +STUB("tnWbIo5dwGg", _ZN12video_parser17cVideoProfilerMp416_createMediaListEv) +STUB( + "tnY8pV5hv4g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("tnb93oT7MSA", mono_aot_Sce_Vsh_GameCustomDataunbox_trampoline_addresses) +STUB( + "tnhRpmq7ESA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEEC2Ev) +STUB("tnjpe06tA9k", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V15GroupEEdeEv) +STUB("tnlAgPCKyTk", __atomic_compare_exchange_8) +STUB("tnoY99KMo6s", + _ZN3JSC8Bindings13RuntimeObject23throwInvalidAccessErrorEPNS_9ExecStateERNS_10ThrowScopeE) +STUB( + "tns9e3Rnga4", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12unsetString2Ev) +STUB("tnsXStMu3rQ", _ZN4Manx20Curl_cookie_clearallEP10CookieInfo) +STUB("tnvxzeWju10", WKBundleNavigationActionGetNavigationType) +STUB( + "tnym874g8jE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB("tnytRb-rZp4", WKPageGetSamplingProfilerOutput) +STUB( + "tnzGX57mNg8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEE21intrusive_ptr_sub_refEPS9_) +STUB("to7GggwECZU", _ZNSt7codecvtIcc9_MbstatetED2Ev) +STUB("to9n4euEEQ8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE5beginEv) +STUB("toA08wQSTX8", _ZNK3JSC8Bindings10RootObject12globalObjectEv) +STUB( + "toGcFWFrsIY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEE7get_refEv) +STUB("toINCwQIbPc", _ZN7WebCore21ContentSecurityPolicyD2Ev) +STUB( + "toJNLKVSDAo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEE7get_refEv) +STUB("toKeztkXRnQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEC1ERKS7_) +STUB( + "toMfUd3jFmo", + _ZN7WebCore30InspectorInstrumentationWebKit23shouldInterceptResponseEPKNS_5FrameERKNS_16ResourceResponseE) +STUB("toO3YXHsAdg", _ZN7WebCore13MIMETypeCacheC2ERKS0_) STUB("toOJe5IsGwg", sceNpEulaDialogCheckVersion) STUB("toRrPoaJkAk", sceFsDevpfsEventResponseComplete) +STUB("toStvl2IEYA", mono_class_get_namespace) +STUB("toXPpb5jhhk", psl_latest) +STUB("toa7gp3TAUs", mono_aot_ReactNative_PUIplt_end) +STUB( + "toc89R5ubLs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE6resizeEj) +STUB("todWCdo0-vk", __asan_exp_store2_noabort) +STUB( + "tofSVdGAKbQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEC1EPS8_) STUB("toi8xxcSfJ0", sceNetConfigRoutingStop) +STUB( + "tolViuRDLoY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("ton5sEBpDh4", __tsan_mutex_post_lock) +STUB( + "tooLXjwy79Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEppEv) +STUB("torVI4+PfTU", _ZN3sce7Toolkit2NP2V29Messaging7Request28GetGameDataMessageAttachmentC2Ev) STUB("touqMEt6qXQ", sceAmprAmmSetPageTablePoolOccupancyNotificationThreshold) +STUB("tow2sT8FF3c", WKBundleSetServiceWorkerProxyCreationCallback) +STUB( + "tp0fvf8ZfT4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEED2Ev) +STUB( + "tp3pnPv1Dg8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEeqERKS9_) +STUB( + "tp9D6VQmy9k", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEE3getEv) STUB("tpFJ8LIKvPw", sceNpUniversalDataSystemRegisterContext) STUB("tpKYaXK-zVs", sceOpusCeltEncEncode) +STUB("tpLPh+8xIiQ", _ZN3sce2Np9CppWebApi14SessionManager2V110FromMemberD2Ev) +STUB("tpLtl6725oA", + _ZN7WebCore22EmptyFrameLoaderClient25pluginWillHandleLoadErrorERKNS_16ResourceResponseE) +STUB( + "tpNFED7Q-XI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEaSERKS9_) STUB("tpQBXFxLy+8", sceLibSecureHashSetContext) +STUB( + "tpQy7w8qrNo", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB("tpThrBsInto", unmount) +STUB("tpVW+9x7KcM", WKPageGroupSetPreferences) +STUB("tpXVNSFwJRs", _ZN3sce2np3ipc14service_client11InitServiceEi) +STUB( + "tpc4P8r5QJA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("tpeDOXj0M4k", _ZN3sce7Toolkit2NP2V27Session9SessionIdaSERKS4_) +STUB( + "tpfJEnyYOzc", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi47ParameterToSetGameSessionMemberSystemProperties12getsessionIdEv) +STUB("tpgPa5JQE38", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE5clearEv) +STUB("tpiLDvUwdM0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEE5eraseENS2_13ConstIteratorIS4_EERS7_) +STUB("tpjHVdInkVc", _ZN3JSC22EdenGCActivityCallback12doCollectionEv) +STUB("tplByifH2p0", _ZNK7WebCore10FloatPoint15matrixTransformERKNS_15AffineTransformE) +STUB("tplbitAzba4", mono_aot_Sce_Vsh_UpdateServiceWrapperunbox_trampolines) +STUB("tpm8YLsW-YU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEE11get_deleterEv) +STUB("tppo+23RxWE", + _ZSt9use_facetISt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale) +STUB("tpslt5d45m4", _ZN7WebCore11MediaPlayer4playEv) +STUB( + "tpuE+0wfumM", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEEiRNS2_10LibContextEPT_m) +STUB("tpvWHLIvEU4", _ZN3JSC13JSArrayBuffer6s_infoE) +STUB("tpwJiHcU4f0", + _ZNK3sce7Toolkit2NP9Utilities6FutureI19SceNpTrophyGameDataE17getAdditionalInfoEv) +STUB( + "tpwxDQKwT9w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEE21intrusive_ptr_sub_refEPS9_) +STUB("tpx0zNA9X+o", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId8setrangeEPKc) +STUB( + "tpz4YwJwqcQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEED1Ev) +STUB("tq-7fdC5Oms", _ZN3WTF10StringImpl6createEPKDsj) +STUB("tq1e1kFa2s8", UI_create_method) +STUB("tq511UiaNlE", CA_MGMT_getCertSignAlgoType) +STUB( + "tq5a0dSyJqA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEE11get_deleterEv) +STUB( + "tq5le1Gz49w", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE28getResponseInformationOptionEv) +STUB( + "tq7YPBGE29E", + _ZN3sce2Np9CppWebApi14SessionManager2V125MatchmakingForReadFactory6createEPNS1_6Common10LibContextEPKcPNS5_12IntrusivePtrINS3_18MatchmakingForReadEEE) +STUB("tq8LnCPE9tQ", _ZN7WebCore21JSDeprecatedCSSOMRect9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("tqEWky5gu2A", _ZN3sce2np13RingBufMemoryC1EP14SceNpAllocator) +STUB("tqFeSiHCgDs", _ZN3JSC2VM17dataViewSpaceSlowEv) +STUB( + "tqG5Huex03c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEC1Ev) +STUB( + "tqGAo9hm0rA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEED2Ev) STUB("tqHQdMPde4E", sceRegMgrCntlStart) +STUB("tqJIKzoCMXE", ASN1_STRING_to_UTF8) +STUB("tqKiU7Aq5RM", _ZN7Nicosia16SceneIntegrationC1ERNS_5SceneERNS0_6ClientE) +STUB("tqMEyVwoePk", JNU_GetFieldByName) +STUB( + "tqSFBC5-lMQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEaSERKS9_) +STUB( + "tqUoLmzvojU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEC1ERKS7_) +STUB("tqWD7hd81YM", WKPreferencesGetEditableLinkBehavior) +STUB("tqWOrCWRP+U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEEppEv) +STUB("tqcoZYzrqUE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEEaSERKS7_) +STUB("tqeCpXiyN3Y", ucnv_getType) +STUB("tqnmnBCbNZI", glVertexAttrib2fv) +STUB("tqo89+Bqhk0", _ZN7WebCore5Image20loadPlatformResourceEPKc) +STUB("tqsf6e48Zls", _ZN7WebCore9HTMLNames9canvasTagE) +STUB( + "tqtf-J5Bd7I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "tqyoVlt9nIU", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api26ParameterToListUserTickets30unsetxPsnAcceptPlatformNamePs5Ev) +STUB("tr1Uc33FqHY", JSObjectSetPropertyAtIndex) +STUB( + "trBNTjCV-u4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE6insertENS2_13ConstIteratorIS9_EERKS9_RSC_) +STUB( + "trFuQ69lrO4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEE11release_refEv) +STUB( + "trGvQ1hngj4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEED2Ev) +STUB("trPXDKRnszQ", _ZN3sce7Toolkit2NP28GameCustomDataUseFlagRequestC1Ev) +STUB( + "trQSuGFhQ-I", + _ZN3sce7Toolkit2NP8Matching9Interface14searchSessionsEPKNS1_21SearchSessionsRequestEPNS1_9Utilities6FutureISt6vectorINS1_18SessionInformationENS1_15AppSTLAllocatorISA_EEEEEb) +STUB("trS9Z6W2Avs", _ZNK7WebCore19HTMLTableRowElement15sectionRowIndexEv) +STUB("trUJ7-dGeuM", mono_conc_hashtable_lookup) +STUB("trYWw7dUt9Y", _ZN3WTF13ReadWriteLock11writeUnlockEv) STUB("trZ6QGW6jHs", sceNpTusTryAndSetVariableVUserAsync) +STUB( + "trjSUMHOY70", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB("trkBwRDwQWI", _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile13unsetRelationEv) +STUB( + "trkslirrv80", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB( + "trorTg-EOL4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEE11get_deleterEv) +STUB("trpV4nuUVh8", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15PlayedWithStoryEED2Ev) +STUB("truziR2fSWk", WKPreferencesGetStorageAccessPromptsEnabled) +STUB("trzC1XDcVws", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEED1Ev) +STUB("ts0M5vFJsGs", __preinit_array_start) STUB("ts25M0mp2uY", sceKernelIsGenuineCEX) +STUB( + "ts3uhOcUc8E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEEC1ERSA_) +STUB("ts4l3D9+mhA", _ZN7WebCore13GraphicsLayer16removeFromParentEv) STUB("ts6GlZOKRrE", scePlayGoInitialize) +STUB( + "ts9Z5rCjD20", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE7popBackEv) +STUB( + "tsBWXTghdZo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("tsD-S+BOeVQ", mono_aot_System_ComponentModel_Compositionunbox_trampolines) STUB("tsGVru3hCe8", sceHttpCreateRequest) STUB("tsLdzS-kuMw", sceCustomMusicServiceSendRequest) +STUB("tsMa2QkyNR8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEED2Ev) +STUB("tsOAovB8CYw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEE7add_refEv) +STUB("tsUeTvSZGnc", _ZN3sce2Np9CppWebApi12Leaderboards2V14UserD1Ev) +STUB("tsV6KkeyJEE", _ZN7WebCore18TextureMapperLayer15setReplicaLayerEPS0_) STUB("tsZi60H4ypY", sceMoveTerm) +STUB( + "tsaKqC0oYEk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEEC2Ev) +STUB("tsc4z+9Xk+c", _ZN3WTF13jsValueMallocEm) +STUB( + "tseQGNjvB1k", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEeqERKS9_) +STUB("tsiBm2NZQfo", _ZNSt14_Num_ldbl_base9is_iec559E) +STUB("tsjTKGHszm0", _ZN3JSC11ArrayBuffer15createFromBytesEPKvjON3WTF8FunctionIFvPvEEE) STUB("tslCukqFE+E", sceCameraGetDefectivePixelCancellation) +STUB( + "tsoHGgrOveM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEC2Ev) +STUB("tspJxRlPFj0", _ZN7WebCore13SleepDisablerD1Ev) +STUB("tspYcZ4NF4U", BIO_vfree) +STUB( + "tsufpMXyPWE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEmmEv) +STUB("tsvEmnenz48", __cxa_atexit) +STUB("tsxiIkaIaxI", + _ZN3sce2Np9CppWebApi14SessionManager2V131JoinedPlayerSessionWithPlatform11setPlatformEPKc) +STUB("tt0DzTUWdtQ", _ZNK7WebCore5Color8darkenedEv) +STUB("tt4Zqamn2p8", _ZNKSt15_Ref_count_base12_Get_deleterERKSt9type_info) +STUB("tt7JPF8Mr6Q", _Z12Image_SaveAsiP11_MonoStringPKN3sce3pss4core7imaging19ImageCompressOptionE) +STUB("tt9VRk4F9co", _ZN3sce7Toolkit2NP2V23TUS7Request12GetVariablesC2Ev) +STUB("ttA9TcO06uA", _ZN3sce2npleERKNS0_4TimeES3_) +STUB( + "ttEEge6yV9g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("ttGMjtWwhT4", _ZN3JSC2VM30unlinkedEvalCodeBlockSpaceSlowEv) STUB("ttHNfU+qDBU", pthread_mutex_init) +STUB("ttIE2SCyzQs", _ZN3sce7Toolkit2NP2V210Tournament27TeamVsTeamTournamentDetailsD2Ev) +STUB( + "ttJJfHB1Y9c", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEdeEv) +STUB("ttJy+1DbvDo", _ZN9Inspector33ApplicationCacheBackendDispatcherD1Ev) +STUB( + "ttLxzDPx4HI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEixEm) +STUB( + "ttNIdKi62-4", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) STUB("ttU+JOhShl4", sceMoveReadStateLatest) +STUB( + "ttYGcIjCrqQ", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_23NpSessionInvitationInfoENS1_15AppSTLAllocatorIS5_EEEE3getEv) STUB("ttZRFSBzDPQ", sceBgftServiceIntDebugPlayGoClearSetFreeZone) +STUB( + "tteNdj34k70", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEE11get_deleterEv) +STUB("ttg3VJv7+Wg", _ZNK7WebCore13RenderElement16imageOrientationEv) +STUB( + "ttgSLI3rc0k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEED2Ev) STUB("ttiSviAPLXI", sceUserServiceGetSharePlayResolutionHost) +STUB("ttqRubDMXOQ", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120ReputationPropertiesD2Ev) +STUB( + "ttrfJ+ooAWg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEmmEv) +STUB("ttsPBsOaRZ8", mono_method_can_access_field) +STUB( + "tttn6Q1CdI0", + _ZN3sce7Toolkit2NP6Events9Interface12getEventListEPKNS1_16EventListRequestEPNS1_9Utilities6FutureINS1_26EventInformationListDetailEEEb) +STUB( + "ttuNAM8JMDc", + _ZN9Inspector25DebuggerBackendDispatcher8stepIntoElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "ttzZq4SGBwk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEeqERKS9_) +STUB("tu-Ex57uUFI", WKWebsiteDataStoreConfigurationCopyServiceWorkerRegistrationDirectory) STUB("tu0SDPl+h88", sceSaveDataGetClientThreadPriority) +STUB( + "tu7bF1PqlWc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEEC1Ev) +STUB("tuBR2AhkJAo", ERR_peek_last_error) +STUB("tuG43TDjSc0", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE6resizeEj) +STUB( + "tuG6q3CfYRw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "tuHGEIDrKAY", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V231TestForProfanityResponseFactory7destroyEPNS3_24TestForProfanityResponseE) +STUB("tuHUDp1zwXA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116InitialJoinStateEEC1Ev) +STUB("tuR+7OEvvDg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE5beginEv) +STUB("tuXB67YJ3QI", mono_aot_Mono_Cairounwind_info) +STUB("tuYMzz5wrks", _ZN3sce7Toolkit2NP2V24Core7Request11MemoryPools21JSON_MEM_DEFAULT_SIZEE) +STUB("tuZYWihy4cU", _ZNK3sce2Np9CppWebApi6Common6VectorINS2_17ParameterBaseImpl6KeySetEE3endEv) +STUB( + "tuaMKZPZkxw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEppEv) +STUB( + "tubegHp0xd8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEplEm) +STUB( + "tug+YWKZ29Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEppEi) STUB("tul3-GzejQc", sceBluetoothHidInit) +STUB( + "tuqxNaYtmmA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE5beginEv) STUB("tuscfitnhEo", sceSslCreateConnection) +STUB( + "tutXatEmpzU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEED2Ev) +STUB( + "tv-lWgIJK14", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEmmEv) +STUB( + "tv4H5OC4JGE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "tvAaQmHD+C0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB( + "tvP44md+WjE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEE5resetEPS9_) +STUB( + "tvQBw2Po2aA", + _ZN7WebCore21ComplexTextController7advanceEjPNS_11GlyphBufferENS_19GlyphIterationStyleEPN3WTF7HashSetIPKNS_4FontENS4_11DefaultHashIS8_EENS4_10HashTraitsIS8_EEEE) +STUB("tvQH9NYsJpQ", _ZN3sce2np10Cancelable6CancelEi) +STUB("tvVB-PvTH4s", _ZN3sce7Toolkit2NP2V23TUS16FriendsVariablesD2Ev) +STUB("tvYQoCdopVg", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11setInteger2ERKi) +STUB( + "tvZ6C2fY7zw", + _ZN7WebCore6Editor18insertDictatedTextERKN3WTF6StringERKNS1_6VectorINS_20DictationAlternativeELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEEPNS_5EventE) +STUB("tvdntvBP5GM", kldstat) STUB("tvdzQkm+UaY", sceNetConfigUnsetIfFlags) +STUB("tvhjgR5-DlE", JSValueIsBoolean) +STUB("tvkQRDe6hNo", ksem_unlink) +STUB("tvnxawGcaOU", _ZN3JSC12SymbolObjectC2ERNS_2VMEPNS_9StructureE) +STUB("tvpHe5kBO4E", geteuid) +STUB("tvqMmuD-7pA", _ZNK7WebCore6Editor7Command26allowExecutionWhenDisabledEv) +STUB( + "tvrrdJ2nFa4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEE3getEv) +STUB("tw2L5yOcXDQ", AMDTEE_DLM_GetDebugToken) +STUB( + "tw7DaREsh0Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEC1Ev) +STUB("tw7HaKBGnUc", ps5) +STUB("twBh5GOSDI4", _ZN3sce7Toolkit2NP2V211SharedMedia7Request13GetBroadcastsC1Ev) +STUB( + "twC5R3zmJ5o", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer12getsessionIdEv) +STUB( + "twEUgWQaH1k", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetrics8fromJsonERKNS_4Json5ValueE) +STUB( + "twFmGjxidAQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEaSERKS7_) +STUB("twGVBYdKbMg", _ZN3sce2Np9CppWebApi13InGameCatalog2V520ContainerRatingCount8setCountERKi) STUB("twGXom56jw0", sceCompositorGetRenderTargetResolution) +STUB( + "twP+PPFW3p4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("twRfxl26QHM", _ZN7WebCore31TextureMapperPlatformLayerProxy10invalidateEv) +STUB( + "twSWOB0QUBA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEE7get_refEv) STUB("twT9SclEjBI", sceDeci4hDrfpRmdir_fuse_fullpath) STUB("twVupeaYYrk", sceNpMatching2SignalingGetConnectionInfo) +STUB( + "twcSfRXrLRE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEaSERKS9_) +STUB("twcx6YB8Isw", g_hash_table_new) +STUB("twfQODVy4tM", _ZN7WebCore11DisplayList11ClearShadowC2Ev) STUB("twiNZBeuppA", sceAvSettingIsSuspendedProcessOutputModeAvailable) +STUB( + "twigZX3pv30", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEE11get_deleterEv) +STUB( + "twldcOvLN+E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEaSERKS9_) +STUB("twm1B3FPw48", mono_aot_I18N_Rareunbox_trampolines_end) +STUB( + "twp42f4c+48", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEC1EPS8_) +STUB( + "twqKc+0M4XA", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("twrAIl4N+EM", u_isblank) STUB("twrSaoZ9cJs", sceVideoOutAddBuffer4k2kPrivilege) +STUB("twvTi0QJjjg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEEaSERKS6_) +STUB( + "twxBVgwCVBc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEC2EPNS2_10LibContextE) +STUB("twyYa-zm6m0", mono_event_get_name) +STUB("tx07rUxYsoU", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku20unsetPlusUpsellPriceEv) +STUB("tx5pKeUBkgE", _ZN7WebCore22EmptyFrameLoaderClient16restoreViewStateEv) +STUB("tx5pwlB7l9c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEED2Ev) +STUB("tx78UNG6YoM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4RoomEEC1Ev) +STUB("tx9d4wJoNIk", mono_aot_Sce_Vsh_SystemLoggerUtilWrapperjit_code_start) +STUB("txBwhP9PKYI", _ZN7WebCore15GraphicsContext8fillPathERKNS_4PathE) +STUB("txDKxYFVbOI", mono_aot_Sce_Vsh_Registryjit_got) +STUB( + "txFAgpcaRno", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEE7get_refEv) STUB("txHtngJ+eyc", scePthreadAttrGetguardsize) +STUB("txIF7w41SkM", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16TrophyPackTrophyEE3getEv) +STUB("txIPTHNsC1w", curl_url_dup) +STUB("txJMgFi7Ni8", ufmt_getType_67) +STUB("txJTOe0Db6M", logbl) +STUB( + "txL1ieL-iIE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEEC1Ev) +STUB("txL81jikrBc", Java_java_net_PlainDatagramSocketImpl_setTimeToLive) +STUB( + "txSqgh0rO-A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "txX572c0UnI", + _ZN8meta_gen11MsvPromoter25setKeyValue_TBLI_DataTypeENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti) +STUB( + "txZX5sPg+A8", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions31setxPSNSESSIONMANAGERSESSIONIDSEPKc) +STUB("txfJx872s3k", GCC_except_table296) +STUB( + "txgUaRTH5UY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEE7add_refEv) +STUB( + "txhYrQf9blU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEmmEv) +STUB( + "txkfRjupWso", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V18VariableEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("txl9WEJMVGk", _ZN9Inspector14ConsoleMessagedaEPv) +STUB( + "txnuIHdUhSg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEeqERKS9_) +STUB("txrhzUV0pL8", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session8SessionsEEC2Ev) +STUB("txstbRSp1d4", u_getPropertyValueEnum_67) +STUB("tyAI3WUi9Mg", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V113MmrProperties9setRatingERKi) STUB("tyArYWj+1QE", sceNpBandwidthTestShutdownWithDetailedInfo) +STUB("tyDcgp4byT4", mono_aot_ReactNative_Modules_Vshunbox_trampoline_addresses) +STUB( + "tyESFME0nVY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEC2EPS8_) +STUB("tyEilmtbHGw", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEEptEv) +STUB("tyF8jxT9cso", WKBundleNavigationActionGetEventModifiers) +STUB("tyHd3P7oDrU", _ZNKSt9exception8_DoraiseEv) +STUB("tyIYDSPN1WA", _ZNK7WebCore14ScrollableArea34horizontalScrollbarStateForTestingEv) +STUB("tyJ3nwCe91c", mono_aot_Sce_Vsh_ShareServerPostWrapperplt_end) +STUB( + "tyKE3D-LH0Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE3endEv) STUB("tyYRZwL4rog", sceShareUtilityAdvanceWakeUpShareMenuBroadcast) +STUB( + "tyaGTmWpQi4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEE11get_deleterEv) +STUB("tyaZmNJ-O-I", _ZN3sce2Np9CppWebApi6Common8IteratorIiEppEv) +STUB("tygy6ny87Q0", _ZN7Nicosia29BackingStoreTextureMapperImpl11flushUpdateEv) +STUB( + "tyhW2Nr7psM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE4sizeEv) STUB("tynva-9jrtI", sceNpTitleMetadataIntDeleteRequest) +STUB("typPPaFDo34", _ZN7WebCore7Element21insertAdjacentElementERKN3WTF6StringERS0_) +STUB("tyqgy-e1ipo", mono_string_from_utf16) +STUB( + "tyr+6AQL9SQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEC1EPS8_) +STUB( + "tys1WrqGpKw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE5beginEv) +STUB( + "tysCUl3pEPY", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions17hasacceptLanguageEv) +STUB( + "tyuWqmtxaQI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEE11release_refEv) +STUB("tz6Lq93L+ck", _ZN7WebCore11DisplayList17DrawFocusRingPathD1Ev) +STUB( + "tzH315eSjKs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEptEv) +STUB( + "tzHWzkSfQ-c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB("tzLyXXPWt64", _ZNK3JSC18BytecodeCacheError7messageEv) +STUB("tzMbgxjofRM", _ZN7WebCore5Range6setEndEON3WTF3RefINS_4NodeENS1_13DumbPtrTraitsIS3_EEEEj) +STUB( + "tzS6b8nEvm4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEE7get_refEv) +STUB("tzSRcqR5f2k", _Z36Font_NotifySystemConfigurationChangev) +STUB( + "tzUrPjnaJVM", + _ZN7WebCore9FrameView27scrollToOffsetWithAnimationERKNS_8IntPointENS_10ScrollTypeENS_14ScrollClampingE) +STUB( + "tza7Sg5IMPw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEaSERS7_) +STUB("tzaSPxMt7II", uprv_isASCIILetter) +STUB( + "tzbzqVY3daw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE3endEv) +STUB("tzdcm0PdtMg", Java_java_util_jar_JarFile_getMetaInfEntryNames) +STUB("tze0dIM21E4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEC2Ev) +STUB("tze15yHINUs", _ZN8meta_gen11MsvPromoter20retrieveDurationInfoEv) +STUB( + "tzeNfdKNl+o", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE3endEv) +STUB( + "tzfEi-Fte1o", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetrics27setCompletionRatePerReasonsERKi) STUB("tzgPpLnmFbc", sceContentBinderReset) +STUB("tzgWqtlSSmc", _ZNK9Inspector14ConsoleMessage11scriptStateEv) +STUB("tzkR1CcdSi4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE8copyFromERKS9_) +STUB("tzmyUhAg07Y", _ZN3sce7Toolkit2NP19TusDeleteDataParamsC1Ev) +STUB( + "tzq1xPOjElI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEE11get_deleterEv) +STUB( + "tzrce8P9NaI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("tzxvuatEcGY", mono_aot_Sce_Vsh_Messagesunbox_trampolines) +STUB( + "tzyU0+dpvQI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEC1EPS7_PNS2_10LibContextE) +STUB( + "tzzWE9T5+j8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEE5resetEPS6_) +STUB( + "u+-aueFjunY", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129ConnectionQualityWiredMetrics18setConfidenceScoreERKi) +STUB("u+1+5X2oEh8", _ZN7WebCore10JSDocument11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("u+6z-j2wdjk", + _ZN15AbstractStorage12LocalStorage7IsExistERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("u+8oP5YDJhQ", SSL_version) +STUB( + "u+8wVbq+IA8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEC2EPS8_) +STUB("u+A-gWoEYDI", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi24ParameterToReportResultsC2ERS5_) +STUB("u+A16O-TAHk", _ZN3sce2np10JsonParserD0Ev) +STUB( + "u+FsYdCUZ5k", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEcvbEv) +STUB("u+I4-57o1u4", _ZN3sce2Np9CppWebApi7Matches2V116RequestMatchTeam13unsetTeamNameEv) +STUB( + "u+J7+eDzVd8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEC2Ev) +STUB("u+NMS-YShsI", _ZN7WebCore6JSNode23visitAdditionalChildrenERN3JSC11SlotVisitorE) +STUB("u+RjFXYQMZk", _ZN3sce7Toolkit2NP2V211UserProfile7Request27GetVerifiedAccountsForTitleD1Ev) +STUB( + "u+X9HOsJdxw", + _ZN3sce2Np9CppWebApi12Leaderboards2V129RecordScoreRequestBodyFactory7destroyEPNS3_22RecordScoreRequestBodyE) +STUB( + "u+YSLnPGct0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEE11get_deleterEv) +STUB( + "u+a0FJgCgOY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEeqERKS9_) +STUB("u+brAYVFGUs", GC_createInstanceIDs) +STUB( + "u+eQ2Rh2cng", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V511ContentTypeEEEE7get_refEv) +STUB("u+g1hu2lQ+c", _ZNK7WebCore12RenderObject15containingBlockEv) STUB("u+iH3rRyPEE", sceNpAsmClientGetNpComInfo4) +STUB("u+jJYuyhPyA", + _ZNK7WebCore24MatrixTransformOperation5applyERNS_20TransformationMatrixERKNS_9FloatSizeE) +STUB( + "u+jU17-QYKw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEC1Ev) +STUB("u+lIRj0Uhos", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEE3getEv) STUB("u+lIalCYOho", sceBluetoothHidUnregisterDevice) STUB("u+mlUkWpU3Y", sceKernelGetModuleListInternal) +STUB("u+pX7fHyM58", _ZN7WebCore24CoordinatedGraphicsLayer16syncImageBackingEv) +STUB("u+qYvs561Qw", _ZN3JSC2VM15canUseRegExpJITEv) +STUB("u+vBj8SN+NM", Java_java_net_PlainSocketImpl_socketGetOption) +STUB("u+wW71g+oWI", mono_shared_area_for_pid) +STUB("u+yGTt6rB6o", mono_aot_Sce_Vsh_RemotePlayunbox_trampoline_addresses) +STUB("u-0RrBA1ycc", _ZN3sce7Toolkit2NP2V28Commerce7Request27DisplayCategoryBrowseDialogD2Ev) +STUB("u-8eJHYqWpU", WKContextSetAllowsAnySSLCertificateForWebSocketTesting) STUB("u-9bhWQApq8", sceVideoOutCursorSetImageAddress) STUB("u-E+6d9PiP8", sceUserServiceSetAutoLoginEnabled) +STUB("u-FTU5Apy+4", WKWebsiteDataStoreConfigurationCopyIndexedDBDatabaseDirectory) +STUB("u-GlxOsA5GU", _ZN7WebCore10StorageMap4copyEv) +STUB("u-Ohylelvn4", uprv_isASCIILetter_67) +STUB("u-TlLaJUJEA", _ZN3sce2np7RingBuf7DestroyEv) +STUB("u-U2XPc2JjI", _ZN3sce7Toolkit2NP2V28Commerce23ServiceEntitlementLabelD1Ev) +STUB("u-U52wzG5OI", uset_add_59) +STUB("u-UKurURDpI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE5clearEv) +STUB("u-V9QYnCWxo", g_slist_reverse) +STUB("u-VOHg8k-ys", mono_aot_System_IO_Compression_FileSystemjit_code_end) STUB("u-WrYDaJA3k", sceNgs2SystemDestroy) +STUB( + "u-X3DApyb4M", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEptEv) +STUB("u-ZZQ0nnX4A", _ZN7WebCore16JSXMLHttpRequest15subspaceForImplERN3JSC2VME) STUB("u-dCVE6fQAU", sceUserServiceGetJapaneseInputType) +STUB("u-ggcoP--yc", _ZNK7WebCore5Color9lightnessEv) +STUB( + "u-hgHYADm9I", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEmmEi) +STUB( + "u-nG7-ARPkc", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V333CommunicationRestrictionStatusApi44ParameterToGetCommunicationRestrictionStatusaSERS5_) +STUB("u-nocHxdjDs", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes11getInteger1Ev) +STUB("u-pmtvu14hE", _ZN7WebCore15FocusController10setFocusedEb) +STUB( + "u-pnBdftINs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("u-rdLhMlauo", WKPreferencesGetMediaStreamEnabled) +STUB("u-xQSTHjrjM", mono_aot_Sce_Vsh_Messages_DbAccessLibjit_got) +STUB( + "u022KpCRU2A", + _ZN8meta_gen11MsvPromoter33setKeyValue_TBLI_ContentTableTypeENS0_23MsvPromoterSetValueInfoEP10KeyValue_ti) STUB("u05NnI+P+KY", sceHttpRedirectCacheFlush) +STUB( + "u05qhWFr4Qw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEEC2ERSA_) +STUB( + "u0Anh9dF3K8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEptEv) +STUB("u0C0O5q1jyI", _ZN12video_parser5vpcom6_FlushEPNS_8_vp_fileE) +STUB( + "u0E3hp46ut8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB("u0E8Xi0easM", hb_icu_script_to_script) +STUB("u0KG+4Fxisc", res_getStringNoTrace_67) +STUB("u0LKA0lKiX0", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12string1IsSetEv) +STUB("u0V7lM9s3II", fuse_unmount) +STUB("u0VlcjS4ELs", + _ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchStatusRequest6toJsonERNS_4Json5ValueEb) +STUB("u0XOsuOmOzc", vswprintf) +STUB( + "u0bOcQmOlQ0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEixEm) +STUB("u0hSyMPmgr4", _ZNK7WebCore13ContainerNode17childElementCountEv) +STUB("u0k8j8Fz3u0", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10getString5Ev) +STUB( + "u0lmyOdYmNI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEED2Ev) +STUB("u0mv-G5GWxg", _ZN7WebCore11WindowProxyD1Ev) +STUB("u0rYiDia4io", mono_custom_attrs_from_class) +STUB("u0yN6tzBors", _ZSt14_Raise_handler) +STUB("u1+cfR6UUP4", + _ZN7WebCore15DatabaseManager19fullPathForDatabaseERNS_14SecurityOriginERKN3WTF6StringEb) +STUB( + "u1-tRhtrudI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "u13KsAJCYt4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("u14Y1HFh0uY", acoshl) +STUB("u14rcshrFmI", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_11TusVariableENS2_IS4_EEEE9constructEPS6_RKS6_) +STUB("u16WKNmQUNg", _ZNSt14numeric_limitsIeE12max_digits10E) +STUB( + "u19EXDZwHB4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124ResponseTeamMemberResultEEEEEE5resetEPS9_) +STUB("u1BIPLpvRLo", + _ZNK3sce2Np9CppWebApi11UserProfile2V124GetBlockingUsersResponse19previousOffsetIsSetEv) STUB("u1GRHp+oWoY", scePadGetHandle) +STUB( + "u1GZo5PJgL0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEC2EPNS2_10LibContextE) STUB("u1JVDP28ycg", sceLncUtilBlockAppSuspend) +STUB( + "u1KKeXELhcI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) STUB("u1LTy5HZ1Z0", sceCesUtf32beToUhc) +STUB( + "u1LryfY0KLU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEC1ERS7_) +STUB("u1M9z9DevV0", _ZN3JSC7Symbols26regExpMatchFastPrivateNameE) +STUB("u1OhA6iVnbQ", _ZN3sce7Toolkit2NP2V210Tournament25BracketInformationOfMatchC2ERKS4_) +STUB("u1QdTBc2r5s", _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_11TusVariableENS2_IS4_EEEED2Ev) +STUB("u1UlXA+WAG0", WKPreferencesSetAsynchronousSpellCheckingEnabled) +STUB( + "u1Wf14GHEEA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEEptEv) +STUB("u1YfMF4eIn8", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend12Notification15BlocklistUpdateEED2Ev) STUB("u1h3TO-d9qI", sceFsSmrTrimPath) +STUB("u1jBAAJQh4A", _ZN9Inspector18InspectorHeapAgent18clearHeapSnapshotsEv) +STUB("u1jYWyP2OeU", _ZN3WTF19ParallelEnvironment7executeEPv) +STUB("u1pYqMV1+rY", _ZN3sce7Toolkit2NP2V26Friend7Request19GetFriendsOfFriendsD1Ev) +STUB( + "u1tUh0U1r5E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEEdeEv) +STUB("u1tsbQ1hZwI", _ZN7WebCore8SVGNames16surfaceScaleAttrE) +STUB("u1wbCugKzYQ", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry10getCommentEv) +STUB("u1yEt9b-19k", + _ZN8meta_gen11MsvPromoter20setKeyValue_TBLV_CciENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB( + "u21sptloQvE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEC2EPS8_) +STUB( + "u28Nxv3uTj4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEC1EPKS8_) +STUB("u29iwsk-hI4", rgctx_fetch_trampoline_mrgctx_123) +STUB( + "u2AQWozMKug", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEED2Ev) STUB("u2GrRj85Riw", sceHidControlGetDeviceInfo) +STUB("u2MAta5SS84", _ZNSt7codecvtIDic9_MbstatetE2idE) STUB("u2REGRW7HV0", scePigletReleaseVideoMemory) STUB("u2T2DiA5hRI", sceAgcDcbStallCommandBufferParser) +STUB("u2TX5uSfxRo", _ZN9Inspector32ScriptProfilerFrontendDispatcher26programmaticCaptureStartedEv) +STUB("u2XjomABnhY", JSRemoteInspectorStart) STUB("u2g5VER9UnM", sceAgcDriverHp3dLockEnd) +STUB( + "u2gIjbacPs0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi25UploadDataResponseHeadersEE6assignEPS7_PFvS9_EPNS2_10LibContextE) +STUB("u2gKuDWpTDY", _ZN7WebCore10ISOFullBoxaSERKS0_) +STUB("u2gNWVnCndA", _ZN4Manx8X509name7onelineEPcj) +STUB("u2gfAW6xw8k", _ZN7WebCore20NetworkStateNotifier9singletonEv) +STUB("u2kPEkUHfsg", __cmpti2) +STUB("u2nWCcA7Z4E", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_25ReceivedInGameDataMessageEED2Ev) +STUB("u2q6WCRbxH8", twop84) +STUB("u2tMGOLaqnE", _ZSt14_Atomic_assertPKcS0_) +STUB( + "u2vqqZA520E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE6resizeEj) +STUB("u2vunBIph6w", WKBundleRangeHandleGetBoundingRectInWindowCoordinates) +STUB("u2vuxsATicc", run_cfi_program) +STUB("u2ws57jhxSc", _ZN7WebCore11MediaPlayernaEmPv) +STUB("u2xZSvGh2-w", _ZN3sce2Np9CppWebApi14SessionManager2V132RequestPlayerSessionMemberPlayerD1Ev) +STUB( + "u2zEPO5vpXQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEC2ERKS7_) +STUB("u31bZNgtlrs", _ZN7WebCore21NetworkStorageSession22processMayUseCookieAPIEv) STUB("u32UXVridxQ", sceLibcPafMspaceRealloc) +STUB("u36SHyuWQCA", FTA_Export_Module_type42) +STUB("u38IZ8Z7qYY", sqlite3_column_blob) +STUB("u39XzpncQzA", _ZNK7WebCore8Document21haveStylesheetsLoadedEv) +STUB("u3A+c4f+SQ4", rgctx_fetch_trampoline_rgctx_125) +STUB( + "u3D4PhkviYM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEE7get_refEv) +STUB( + "u3DB2fdUQ8Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEE6assignEPS7_PFvS9_EPNS2_10LibContextE) +STUB("u3FFTUykrBk", _ZN3sce7Toolkit2NP2V210Tournament20TeamVsTeamTournamentC2Ev) +STUB("u3NmAGMYF2E", _ZN9Inspector22PageFrontendDispatchernaEmPv) +STUB( + "u3OjK-DsJ1I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEEC2Ev) +STUB( + "u3PhZEv8L8Q", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("u3Q565olUAQ", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session12Notification18InvitationReceivedEE5resetEv) +STUB( + "u3QV-RGXE8M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE5beginEv) +STUB( + "u3QkNCt4y6k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "u3R+eVpXq5s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEEptEv) +STUB( + "u3Sr2sExc8M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEC2EPKS8_) +STUB("u3WF8YmSU-s", + _ZNK3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody21comparedDateTimeIsSetEv) +STUB( + "u3btrT-56Qo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEEC2Ev) +STUB("u3cBTPdkbKU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEixEm) +STUB( + "u3d8e3YEpuA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "u3dW5fU+kMo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE8copyFromERKS9_) STUB("u3h77G+tFVc", sceKernelIsGenuineN) +STUB("u3qpybXQm9U", cpp_demangle_read_tmpl_args) +STUB("u3sH1KCFd9U", _ZN7WebCore16ScriptController11createWorldERKN3WTF6StringENS0_9WorldTypeE) STUB("u474-bA7ul0", sceShellCoreUtilGetAppLaunchedParamInt) +STUB( + "u480BvMky-8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEE11get_deleterEv) +STUB( + "u49J-rEDPCA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB("u4D+PriSpxE", WKWebsitePoliciesSetPopUpPolicy) +STUB( + "u4DfEmHsg4I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEE11get_deleterEv) +STUB("u4FNPlIIAtw", _Errno) +STUB("u4GPog8SXto", _ZNK7WebCore16HTMLOListElement9itemCountEv) +STUB( + "u4TBaQHOxd0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB( + "u4W3uvKV26A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEcvbEv) +STUB( + "u4W9Ny8hic0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB("u4Wm2T1fYA0", monoeg_g_file_test) +STUB("u4YLcz+Oh-M", _ZN3JSC2VM9tryCreateENS_8HeapTypeEPN3WTF7RunLoopE) STUB("u4bCGkqhOB4", sceShareUtilityAdvanceInitialize) +STUB("u4gajE5Ykc4", _ZN3WTF10StringImpl19s_atomicEmptyStringE) +STUB( + "u4hXh5246aE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEC2EPNS2_10LibContextE) +STUB("u4i9T9uVt8E", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V116TaskAvailabilityEEptEv) +STUB("u4iK-IyK+ps", _ZTv0_n24_N13MsvMetaEditorD0Ev) +STUB( + "u4iZ5QR8Pas", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEE11get_deleterEv) +STUB("u4mfxMbciJg", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V111LeaveReasonEEC2EPS6_) +STUB( + "u4p7Z+wE35A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEixEm) +STUB("u4t9zBOs1Gw", _ZN3sce2Np9CppWebApi6Common13ConstIteratorImEmmEi) +STUB("u4uYkZNxIcg", _ZN7WebCore16HTMLMediaElement19mediaCacheDirectoryEv) +STUB("u4w4eIh6yBI", WKUserMediaPermissionRequestDeny) +STUB("u59lB8RS-+M", _ZN9Inspector18InspectorHeapAgent7disableERN3WTF6StringE) +STUB( + "u5DwMkrK4BM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEppEi) +STUB( + "u5GYBCMlh-I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEED1Ev) +STUB( + "u5I8KpBBIyE", + _ZN3sce2Np9CppWebApi14SessionManager2V132RequestPlayerSessionMemberPlayerC1EPNS1_6Common10LibContextE) +STUB("u5IYJtq4D-4", _ZN4IPMI6Server6ConfigC2Ev) +STUB( + "u5LoR-jtDuY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEE21intrusive_ptr_sub_refEPS7_) +STUB( + "u5PRU+rEUMo", + _ZN3sce2Np9CppWebApi15Personalization2V128GetAccessCodeResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_21GetAccessCodeResponseEEE) +STUB("u5PpeLvhfNY", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEEC1Ev) +STUB("u5QsY4w3PH4", _ZN7WebCore31BasicColorMatrixFilterOperationD1Ev) +STUB( + "u5SUG5hhQkM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEmmEv) +STUB("u5SwcJ82lAU", _ZN7WebCore11DisplayList22ApplyDeviceScaleFactorC2Ef) +STUB( + "u5V4OTQTFRQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE8copyFromERKS9_) +STUB( + "u5VO0aSGUw0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEeqERKS9_) +STUB("u5a7Ofymqlg", fesettrapenable) +STUB("u5dPpeNUOj4", _ZNK7WebCore13HitTestResult14absolutePDFURLEv) +STUB("u5dQ9GaLr0M", mono_aot_Sce_Vshunbox_trampoline_addresses) STUB("u5fZd3KZcs0", sceFontCreateRenderer) +STUB("u5g0kZcJ0wI", FTC_Manager_Lookup_Face) +STUB( + "u5kJvKnuft8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEdeEv) STUB("u5oqtlIP+Fw", sceNetCtlCheckCallbackForNpToolkit) +STUB("u5pQ01e-HF8", WKPreferencesGetEncryptedMediaAPIEnabled) +STUB("u5soAUgmiLU", _ZNK7WebCore23CoordinatedImageBacking2idEv) +STUB( + "u5wYBuFCPLQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEE5resetEPS6_) +STUB( + "u5wezm4fIe0", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionPropertiesC2ERS5_) +STUB("u5x8bw9m4KI", _ZN7WebCore9HTMLNames12hreflangAttrE) +STUB("u5yK3bGG1+w", _ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEC1ERKSt8_Locinfom) +STUB("u5zp3yXW5wA", _ZTSSt14error_category) +STUB( + "u6+iSxWkC3A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEC1Ev) +STUB( + "u6+sn+SdqQo", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser10getslotIdsEv) +STUB("u61C0itcI3I", _ZN3sce2Np9CppWebApi11Matchmaking2V110UserTicket11unsetStatusEv) +STUB( + "u69K7726ukw", + _ZN3sce2Np9CppWebApi7Matches2V128ResponsePlayerResultsFactory7destroyEPNS3_21ResponsePlayerResultsE) +STUB( + "u6B5+szgWaY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEE11release_refEv) +STUB( + "u6BZ6EC5lDg", + _ZN9Inspector21InjectedScriptManagerC1ERNS_20InspectorEnvironmentEON3WTF3RefINS_18InjectedScriptHostENS3_13DumbPtrTraitsIS5_EEEE) +STUB("u6FSGzt9Ay0", _ZN15AbstractStorage14YoutubeStorage14GetStorageSizeEPlS1_S1_) +STUB( + "u6FeIYeg3hE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEED2Ev) +STUB( + "u6NRNJREiEE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE3endEv) +STUB( + "u6Nh4Mifmtc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "u6Nwj4zg458", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEEdeEv) +STUB( + "u6PcsW0OtPI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEE3getEv) +STUB("u6UfGT9+HEA", _ZNKSt19istreambuf_iteratorIcSt11char_traitsIcEE5equalERKS2_) +STUB("u6VyDVUkYvE", mono_btls_x509_get_signature_algorithm) +STUB("u6Xquj1bFwc", FT_Stream_GetUShort) +STUB("u6Yu5pxRfxk", WKArrayIsMutable) +STUB("u6Zl2vSMcCo", mono_shared_internal_hash_table_init) +STUB("u6aU7eizxRM", _ZN9Inspector20InspectorTargetAgent16connectToTargetsEv) +STUB( + "u6ct0se+SXQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEE5emptyEv) +STUB("u6hVEgKlQVQ", g_VideoOutPixelFormat) +STUB("u6sGRTHlIRM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V115CompetitionTypeEEC1Ev) +STUB( + "u70n-4-PGMI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEppEv) STUB("u70oWo92SYQ", sceAcm_ConvReverb_SharedInput) +STUB("u72ExnxtAI4", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats14bandwidthIsSetEv) STUB("u75oEC-8rTg", scePlayReadyReinitialize) +STUB("u7B6rIlbgpQ", _ZN3sce7Toolkit2NP2V210Tournament7Request10TeamFilterD2Ev) +STUB("u7BCcu2R+jA", _ZN7WebCore14DocumentWriter3endEv) +STUB("u7EiMtweIl8", _ZThn16_N9Inspector20InspectorTargetAgent15setPauseOnStartERN3WTF6StringEb) +STUB("u7I+EvFoPz0", _ZN3JSC7Symbols26regExpSplitFastPrivateNameE) +STUB("u7IZtgWvCeg", _ZN3JSC20PromiseDeferredTimer10runRunLoopEv) +STUB("u7IhbI9GHjk", ufmt_getUChars_67) +STUB( + "u7KZ-Vj1-RM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEC1ERKS7_) +STUB("u7NoGsVfzcU", unorm2_getNFKCInstance) +STUB("u7PDM36vric", _ZN8meta_gen13JpegRetriever19CheckDateTimeFormatEi) +STUB( + "u7RtZK+-mag", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEC1Ev) +STUB("u7W1aQNgwDo", mono_btls_ssl_close) +STUB( + "u7X2QihXnIU", + _ZN9Inspector17ScriptDebugServer27dispatchFunctionToListenersERKN3WTF7HashSetIPNS_19ScriptDebugListenerENS1_7PtrHashIS4_EENS1_10HashTraitsIS4_EEEEMS0_FvS4_E) +STUB("u7YNF83VIFU", _ZNK3WTF6String5splitEDsbRKNS_8FunctionIFvRKNS_10StringViewEEEE) +STUB("u7a76NMzKoc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEEaSERKS7_) STUB("u7iltoiu9bo", sceClKernelNanosleep) +STUB( + "u7lNSxibIU0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) STUB("u7xu+K8TGbA", sceFsUmountLwfsCompat) +STUB("u81EMGz-sUw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEC2EPS8_) +STUB("u82YRvIENeo", CERT_extractRSAKey) +STUB("u864sHJcCjk", _WLdtob.Xdigs) STUB("u8BkdHb1+Po", sceAgcDriverWaitUntilSafeForRendering) +STUB("u8E0lzektMg", mono_get_exception_invalid_cast) +STUB("u8LyMEJB5fA", _ZN7WebCore20TransformationMatrixC1ERKNS_15AffineTransformE) +STUB("u8M56qpqTtw", rtld_printf) +STUB("u8OCyPpV3NI", _ZN7WebCore10ISOFullBoxD1Ev) +STUB( + "u8OWqS4Y0rg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEppEv) +STUB("u8Oj4n7I8Us", izrule_getName_67) +STUB("u8RjGa4p7xg", Java_com_sony_bdjstack_javax_media_controls_VideoSystem_getVideoScreenRect) +STUB( + "u8TXaVIZTrg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEEcvbEv) +STUB("u8TemmbLDog", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEED1Ev) +STUB("u8W421I-mjg", rgctx_fetch_trampoline_mrgctx_124) +STUB( + "u8WCHKS+55E", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26RecordScoreResponseHeaders6createEPNS1_6Common10LibContextERNS6_12IntrusivePtrIS5_EEl) +STUB("u8WyPl4r3Oc", u_isIDPart) +STUB("u8YMB256Eu4", _ZN3WTF14FileSystemImpl29fileMetadataFollowingSymlinksERKNS_6StringE) +STUB( + "u8YroWpNMNk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEixEm) +STUB("u8bAD4wrr-4", _ZN3sce7Toolkit2NP2V26Friend7Request15GetBlockedUsersC2Ev) +STUB("u8cBqPtM6v8", _ZN3sce7Toolkit2NP2V28Commerce14ProductDetailsC1ERKS4_) STUB("u8d8odfTl2M", sceVideoCoreSetFullScreen) +STUB( + "u8fHy+cqj2k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEC2ERS7_) +STUB("u8fpXsjm+Rk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEptEv) +STUB( + "u8hEs5tRbrA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEE7add_refEv) +STUB("u8ilnaXaSl8", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_24RegisterGameDataResponseEEC2Ev) +STUB("u8opZ3UBjFs", + _ZN7WebCore17FrameLoaderClient28didLoadFromRegistrableDomainEONS_17RegistrableDomainE) +STUB( + "u8wPDYpz1ag", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEC2EPS8_) +STUB( + "u8xCTQt+4Xk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEaSERKS9_) +STUB( + "u9+J0ZX4wQE", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12Notification11RefreshRoomEE12deepCopyFromERS8_) +STUB("u9+VMq390NA", Java_java_awt_GnmGraphics_getBufferedImagePeer) +STUB( + "u9-0IGvCSPw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEEC2ERSA_) +STUB("u92daif-zrY", il2cpp_profiler_set_events) +STUB( + "u94EzmpCAok", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEED2Ev) +STUB("u9BCzVRcu48", _ZN3sce7Toolkit2NP15AppSTLAllocatorI13SceNpOnlineIdE7addressERS3_) +STUB( + "u9Bt8aI4Ngs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("u9H28omaVEc", _ZNK3JSC9JSPromise6statusERNS_2VME) +STUB("u9Hwxp2D0c8", _Z20WTFCrashWithInfoImpliPKcS0_immm) +STUB( + "u9JJpqbCZfQ", + _ZN3JSC41constructFunctionSkippingEvalEnabledCheckEPNS_9ExecStateEPNS_14JSGlobalObjectERKNS_7ArgListERKNS_10IdentifierERKNS_12SourceOriginERKN3WTF6StringERKNSD_12TextPositionEiNS_24FunctionConstructionModeENS_7JSValueE) +STUB( + "u9JKvT+Al6U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "u9OToMLggOs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEEcvbEv) +STUB("u9R3zIVtCdg", _ZN15AbstractStorage18DailymotionService4StopEv) +STUB("u9XQPaGXOiI", _ZNK7WebCore14ScrollableArea14scrolledToLeftEv) STUB("u9YKpRRHe-M", sceRazorCaptureImmediate) +STUB("u9b+YOcnskM", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfilesC1ERS5_) +STUB("u9bEzhBxoL0", _ZN3WTF13xmlnsAtomDataE) +STUB( + "u9gwkt9vGn8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEppEi) +STUB("u9jRWuEU9ZQ", _ZN3sce3pss5orbis9framework11PsmCallList10UnregisterEPFvPvES4_) +STUB("u9phDtunvak", wcs2b) STUB("u9plkqa2e0k", sceNpTrophyIntAbortHandle) +STUB("u9qukeAVp2E", mono_aot_Sce_Vsh_MyGameListjit_code_start) +STUB("u9s1aUWSZB0", _ZN3sce2np12StreamWriter9WriteDataEPNS0_6HandleEPNS0_9StreamCtxEPKvmPm) +STUB("u9tBiSNnvn8", _ZN3sce2np13NpAccessTokenD2Ev) STUB("u9yKks02-rA", sceUsbdLockEvents) +STUB("uA-9hDsGpxA", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEE4sizeEv) STUB("uA2V1TG78p0", sceWebTerminate) +STUB( + "uA2y7rAyiJY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEC2Ev) +STUB( + "uA4gIUqAFkA", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_20ChallengeRecvDetailsENS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv) +STUB( + "uAB-6CxmjxA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEE11get_deleterEv) +STUB( + "uAEpTDlaAJ4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEmmEi) +STUB("uAEpsrhbvKw", + _ZN3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead8fromJsonERKNS_4Json5ValueE) +STUB("uAHc6pgeFaQ", CERT_STORE_addIdentityPSK) +STUB("uAKuqBgtD-Q", _ZNK7WebCore16HTMLMediaElement6volumeEv) +STUB( + "uAKzZBMsl74", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE5clearEv) +STUB("uAMs0e65nCk", u_memmove) STUB("uAPBw-7641s", sceUserServiceGetKratosPrimaryUser) +STUB("uAQuprnfbIo", _ZN7WebCore12TextIteratorD1Ev) +STUB( + "uARdCQX--zc", + _ZN7WebCore20DecodeOrderSampleMap28findSamplesBetweenDecodeKeysERKSt4pairIN3WTF9MediaTimeES3_ES6_) +STUB( + "uAc7QXsAZwk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEED1Ev) +STUB( + "uAeOBAV9hpU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEE7add_refEv) +STUB("uAfQ++jp5GM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEEppEv) +STUB( + "uAgG9VG1nBw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEEC2ERKSA_) +STUB( + "uAiN+0KWdp8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V129UploadDataResponseBodyFactory7destroyEPNS3_22UploadDataResponseBodyE) STUB("uAiUQEGDoNM", sceCesUcsProfileInitEucKr) +STUB("uAqC-jZlakk", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEEaSERKS7_) +STUB( + "uAwJJE2XyXE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEC2Ev) +STUB( + "uAwPcUe6Q1A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("uAwfiZ4QJpI", utrie2_isFrozen) STUB("uAxS1aVr6OY", sceMatRegisterResource) +STUB("uAxutFsbhyQ", + _ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead9unsetFromEv) +STUB("uAyWBZtHkgM", JSObjectGetArrayBufferByteLength) STUB("uB8VlDD4e0s", sceZlibWaitForDone) STUB("uBDKFasVr2c", sceUserServiceSetPbtcMondayHoursEnd) +STUB("uBDapoJVOBg", mono_aot_Sce_Vsh_AppInstUtilWrapperunbox_trampolines) STUB("uBESzz4CQws", sceNpMatching2RegisterRoomMessageCallback) STUB("uBIN24Tv2MI", sceNgs2ReportRegisterHandler) STUB("uBN2pO1YkOM", sceOpusSilkEncInitialize) +STUB( + "uBNf2CBkyls", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) STUB("uBPlr0lbuiI", sceNetCtlGetState) STUB("uBRW3tEoWWM", sceCamera2Close) +STUB("uBU78KWosUY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEC2ERKS7_) +STUB("uBURSzaJ+ig", _ZN3WTF17double_conversion23StringToDoubleConverter13StringToFloatEPKtmPm) +STUB("uBaW3NPAKL4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEC2ERKS7_) STUB("uBjfcMAhIJs", sceWkFontConfigGetFont) +STUB("uBkmhxUW+PA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEC2Ev) +STUB("uBlwRfRb-CM", _ZNSt13runtime_errorD1Ev) +STUB("uBoKXflFvyo", _ZNK3JSC18BytecodeCacheError7isValidEv) +STUB("uBqy-2-dQ-A", MOCANA_freeMocana) +STUB( + "uBrkx8zvGoM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V514ContainerMediaEEEEEEaSERKSA_) +STUB("uBsmYwl5edU", _ZN3sce2Np9CppWebApi6Common6VectorIlE5beginEv) +STUB("uBu37aIWp8c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEC1Ev) +STUB( + "uBvSzZvntAU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEC1Ev) +STUB( + "uC+h7BEDRBQ", + _ZN7WebCore13JSDOMRectList18getOwnPropertySlotEPN3JSC8JSObjectEPNS1_14JSGlobalObjectENS1_12PropertyNameERNS1_12PropertySlotE) +STUB( + "uC-DmNKwiOA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("uC1u3CH7Yh0", _ZN3sce2Np9CppWebApi6Common8IteratorIfEppEv) +STUB("uCCOEG+axwM", _ZTVN7WebCore14DocumentLoaderE) +STUB("uCDdgFMfEb0", _ZN7WebCore16ThreadGlobalDataD2Ev) +STUB("uCEbE7yUA6g", mono_btls_x509_name_from_name) +STUB("uCF7fEQAXGM", _ZN3sce7Toolkit2NP2V210Tournament4TeamC1Ev) +STUB("uCQlbYa5RUg", Java_java_net_NetworkInterface_init) +STUB("uCRed7SvX5E", __cxa_get_globals_fast) +STUB("uCSQpoMePf4", __malloc_limit__) +STUB("uCSXhLtoeZo", _ZN3JSC4Heap8capacityEv) +STUB("uCSYwChcjvs", Java_com_sony_bdjstack_security_aacs_AACSOnline_clearNonce) +STUB( + "uCV5Myh-sKk", + _ZN15AbstractStorage18DailymotionStorage11DeserializeESt10shared_ptrINS_7ContentEEPS1_INS_4ItemEE) +STUB( + "uCVQ8MsRqlc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEixEm) +STUB("uCXfVUOudJk", _ZN7WebCore8SVGNames16unicode_bidiAttrE) +STUB( + "uCZYLkqsAxA", + _ZN7WebCore21HTMLOptionsCollection3addERKN3WTF7VariantIJNS1_6RefPtrINS_17HTMLOptionElementENS1_13DumbPtrTraitsIS4_EEEENS3_INS_19HTMLOptGroupElementENS5_IS8_EEEEEEERKNS1_8OptionalINS2_IJNS3_INS_11HTMLElementENS5_ISF_EEEEiEEEEE) +STUB( + "uCZdii3T6zc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponseTeamStatisticEEEEEEdeEv) STUB("uCZf2L27th8", sceNpEntitlementAccessRequestUnifiedEntitlementInfoList) +STUB( + "uCboqDszR9o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEC1Ev) +STUB( + "uCf2PWpNRPg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEC1ERKS7_) +STUB( + "uChZcMJrPPU", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeaders21intrusive_ptr_sub_refEPS5_) +STUB("uCievourBqo", + _ZN7WebCore6JSFile15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB( + "uCkZcc7Il+4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) STUB("uCkgJOrYUL4", sceFiosDHOpen) +STUB("uCrIC0oNwj0", + _ZN8meta_gen11MsvPromoter17setIntMsvMetadataENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB( + "uCvICEX69-Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEC2Ev) +STUB("uCzPBLYt0lw", + _ZNK3sce2Np9CppWebApi14SessionManager2V115LocalizedString6toJsonERNS_4Json5ValueEb) +STUB("uD2YhzQSc7s", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEEC1Ev) +STUB("uD3Iz6lyy0Q", png_start_read_image) +STUB("uD4RiMiUBns", _ZN7WebCore8SVGNames11targetYAttrE) +STUB("uD4sY4950jk", mono_aot_Sce_Vsh_PatchCheckerClientWrappermethod_addresses) +STUB( + "uD5JjZuD3js", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEC2EPS8_) +STUB("uD5cnILClQk", _ZN7WebCore18TextureMapperLayer7setSizeERKNS_9FloatSizeE) +STUB( + "uDBfX0I2YdQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE8pushBackERKS8_) +STUB( + "uDDh1xPjwlU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "uDG1JTZz244", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("uDNVMv6AgrQ", JSValueIsObjectOfClass) +STUB("uDXTnGbAz44", FT_Stream_New) +STUB( + "uDYCTPwBAw4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("uDaa6i4O9xo", mono_thread_current) +STUB( + "uDewSccySeg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEmmEi) +STUB("uDmKDObs+Tc", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19BandwidthC1EPNS1_6Common10LibContextE) +STUB("uDmOK82jyok", _ZN23sceMetadataReaderWriter22StorageParserInfoTableD2Ev) +STUB("uDnvEmFkyh4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEEC1EPKS6_) +STUB("uDpLQEshfOc", mono_aot_Sce_Vsh_Webbrowser_XdbWrapperjit_code_end) +STUB("uDq9djPshPQ", mono_aot_System_Netmethod_addresses) +STUB( + "uDsEULiUTWs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEE11release_refEv) +STUB("uDv80Z-OaP8", goby_FreeRemoteInfo) STUB("uDwHwwoT6rg", sceBgftServiceIntDownloadGetTaskInfo) +STUB("uDyILPgHF9Q", _ZN3sce2np8JsonBool5ClearEv) +STUB("uDz2mwaGQxc", WKBundleBackForwardListClear) +STUB( + "uE66jMkB9Ws", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE21intrusive_ptr_add_refEPS9_) +STUB("uE6ZULK1Nh0", _ZNK7WebCore17CSSPrimitiveValue15getCounterValueEv) +STUB( + "uE6qgIGRF4c", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEneERKS9_) +STUB( + "uECKlze1JW0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEC1Ev) +STUB( + "uEGKSnH21u4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeaders24setXPsnAtomicOperationIdERKNS1_6Common6StringE) +STUB( + "uEHVn4vqG+A", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_19ProductInfoDetailedENS1_15AppSTLAllocatorIS5_EEEEC1Ev) +STUB("uEN6W+91atQ", _ZN9Inspector17BackendDispatcher12CallbackBase11sendFailureERKN3WTF6StringE) +STUB( + "uEc6NvOkju0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEE7get_refEv) +STUB("uEf4XON5h7k", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE5clearEv) +STUB( + "uEgi7FRczUA", + _ZN3sce2Np9CppWebApi14SessionManager2V113FriendFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_6FriendEEE) +STUB( + "uEhMScyOEmg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEC1Ev) +STUB( + "uEkyMVQaEHk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("uEoilaSHu4Y", _ZN12video_parser13cVideoMetaVWGC1EPNS_18cMp4FFLHndlManagerE) +STUB("uEphK1ILyTQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEC2ERKS7_) STUB("uEqMfMITvEI", sceDbgPlayGoRequestNextChunk) +STUB("uEtgPWgPxOk", mkstemp) +STUB( + "uEu13OL+mRM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEC1EPKS8_) STUB("uEwag-0YZPc", sceNpMutexInit) +STUB("uF+dNdiMQwI", udata_closeSwapper) +STUB("uF0tF9gRZvw", _ZN7WebCore16convertToIntegerIhEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB( + "uF2H0VdJsc4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEC1Ev) +STUB("uF8hDs1CqWI", _Getpwctytab) +STUB("uFDGJA7FHNU", + _ZN7WebCore18JSHTMLInputElement15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) STUB("uFJpaKNBAj4", sceNpRegisterGamePresenceCallback) +STUB( + "uFKDJlVyxPE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEneERKS9_) +STUB( + "uFOOmHvcRMs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEEC2EPS9_PNS2_10LibContextE) STUB("uFUnPAXlyuw", sceMbusDebugSetCameraAppModuleFocus) +STUB( + "uFZJHz-iWB0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEppEv) +STUB("uFZKofgqDxQ", + _ZN7WebCore21SerializedScriptValue11deserializeEPK15OpaqueJSContextPPK13OpaqueJSValue) +STUB("uFa+zk-qFos", _ZN7WebCore15makeSimpleRangeERKNS_20VisiblePositionRangeE) +STUB("uFbUD2YNHIQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V120PlayerJoinableStatusEEmmEv) +STUB("uFgrUuHyVlY", _ZN7WebCore11JSImageData11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB("uFhnnDX0jqk", rgctx_fetch_trampoline_rgctx_65_p) +STUB( + "uFmIv4UT-ns", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE7reserveEi) +STUB("uFupHs7z5AI", _ZN7WebCore4IconD1Ev) STUB("uFxVYJEkcmc", sceNpTusGetMultiSlotVariableVUser) +STUB("uFyR1GbgpLE", _ZN7WebCore9HTMLNames8partAttrE) +STUB("uG3xw77eZvc", _ZN3sce2Np9CppWebApi14SessionManager2V124GameSessionMemberForRead10getPlayersEv) +STUB("uG59t516E9Y", _ZN3WTF10TextStream8nextLineEv) +STUB( + "uGBhHj7lRFk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEC2EPS6_PNS2_10LibContextE) +STUB("uGChIgrdASs", _ZN9Inspector26DebuggerFrontendDispatchernwEm) +STUB( + "uGFj2Ul7-iQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEEcvbEv) +STUB("uGGFqiI9Ets", _ZNK9Inspector14ConsoleMessage4lineEv) +STUB( + "uGK-c7gP1lQ", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi35ParameterToSendPlayerSessionMessageC1Ev) +STUB("uGPZjD9HVJE", _ZN3sce2np13JsonArrayImplD1Ev) +STUB("uGUYHJaEF8c", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112GroupingTypeEEmmEv) +STUB("uGWre1STrpk", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V110AvatarSizeEEptEv) +STUB( + "uGWw0JVoTOs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEEC1Ev) +STUB( + "uGhA7D070sk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEC2EPS8_) +STUB("uGjapTSgkJE", _ZN7WebCore13NodeTraversal4lastERKNS_13ContainerNodeE) STUB("uGnFTTL5rzg", sceVideoCoreInterfaceSetFunctionTable) +STUB( + "uGoMOwBH0dE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) STUB("uGs4yyYTASM", sceAmprAmmMeasureAmmCommandSizeMultiMapWithGpuMaskId) +STUB( + "uGsG1OipI34", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) STUB("uGyN1CkvwYU", sceHmdInternalGetStatusReport) +STUB( + "uH+7HG8qre4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEEaSERSA_) +STUB("uHAsYIPFXPA", _ZN15AbstractStorage14YoutubeContent8SeekTimeElPl) +STUB("uHOOEbuzjEQ", _ZN3sce2np9EventFlagD0Ev) +STUB("uHS8HCqVPT4", deleteAllowedHourFormats_67) +STUB( + "uHU6o2zpLZ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEED1Ev) +STUB("uHXPG4nyonA", mono_shared_mempool_contains_addr) +STUB("uHYqyw8zwRw", mono_aot_Sce_Vsh_ShareGuideSceneunbox_trampolines) +STUB("uHkueep1tc8", mkdirat) +STUB("uHli9mP4lRI", uloc_getVariant_67) +STUB("uHm+ouId424", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEEptEv) STUB("uHobIZSa1dI", sceSdmaFlushAllWithEvent) +STUB("uHtBrJrJv4I", + _ZN3sce2Np9CppWebApi14SessionManager2V114RepresentativeC1EPNS1_6Common10LibContextE) STUB("uHtKS5V1T5k", sceNpTusGetDataAsync) +STUB("uHu90db-foU", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_6TicketEEC2Ev) +STUB("uHwApAJIslU", GCC_except_table340) +STUB("uI+tX0l4hnw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEE7get_refEv) +STUB("uI2wsKNmoVk", _ZN7WebCore24CoordinatedGraphicsLayer12syncChildrenEv) +STUB( + "uI3wTfJ67Nc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEE11get_deleterEv) +STUB("uI6fjh6uDF0", WKContextGetNetworkProcessIdentifier) +STUB( + "uI7ceOlcD58", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEC2ERS7_) +STUB( + "uIBgmEs8vIo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE5beginEv) +STUB("uIIZREKsTQU", _ZN9Inspector14ConsoleMessage14incrementCountEv) STUB("uIJu0mEGQ60", sceCesUhcToUtf16be) +STUB("uIKl7FoX6Pg", mono_aot_I18N_Westjit_got) STUB("uINq9QxFYqU", sceNpSnsIntFbGetGameAccessTokenAllowed) +STUB( + "uINr6KrIoIU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "uIQ1nOcN8B0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB("uIQDp-GmPnw", WKBundleFrameGetACMemoryInfo) +STUB("uIS-li19ItI", WKWebsiteDataStoreConfigurationSetApplicationCacheDirectory) +STUB("uISRjQQphhM", _ZN15AbstractStorage11LocalFolderC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB( + "uITsIlaiYBc", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUser17getnpServiceLabelEv) +STUB("uIV7vlecUPo", ENGINE_by_id) +STUB( + "uIXEdSTBNiA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "uIdephR0re4", + _ZN3sce7Toolkit2NP8Matching9Interface13updateSessionEPNS1_18SessionInformationEPtNS1_5Event9UserEventE) +STUB("uIfEB5AuPK8", _ZN12video_parser13cVideoMetaVWG13_readMetadataEv) +STUB( + "uIgbcW-SA3o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEC2Ev) +STUB( + "uIgs1DmooMY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEEdeEv) +STUB("uIhIaI5Qw-U", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V115NatConnectivity9getGlobalEv) +STUB( + "uIhb7VT3Y7U", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "uInMNwcNAlw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEC1Ev) STUB("uInYhy7xa+U", sceSystemServiceReenableMediaPlay) +STUB("uInnlQmu6BM", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEE5beginEv) +STUB("uIoYWKOA9yo", cairo_matrix_rotate) +STUB( + "uIsyA-GVzVg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEE11get_deleterEv) +STUB("uIw-6X6SSME", _ZN9Inspector21InspectorConsoleAgent6enableERN3WTF6StringE) STUB("uIwxsqDlHRc", sceAgcGetRegisterDefaultsInternal) +STUB("uIz-Qam52G4", _ZN12video_parser5vpcom11string_util8tokenizeERSt4listISsSaISsEERKSsmc) STUB("uJ0VhGcxCTQ", sceAudio3dPortFreeState) +STUB("uJ2Md9n7HJI", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE7reserveEi) STUB("uJ3m8INuikg", sceAjmBatchJobClearContext) +STUB("uJ70+H3g6jw", + _ZN3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectatorC1EPNS1_6Common10LibContextE) +STUB( + "uJ82zdkfV-w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEC1ERS8_) +STUB("uJH0UZFEMRg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEptEv) +STUB("uJLcEvXbRwg", _ZN3sce7Toolkit2NP2V211UserProfile7Request13GetNpProfilesD2Ev) +STUB("uJNEnzNCtao", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead25unsetLocalizedSessionNameEv) +STUB("uJNQT7s8ikg", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEEixEm) +STUB("uJOiRR205j8", _ZN7WebCore12GridPosition15setSpanPositionEiRKN3WTF6StringE) STUB("uJTTb-x3Kks", sceIduUtilGetNumSchedules) +STUB( + "uJU3TvqdQT0", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUserD2Ev) +STUB("uJUGbADcTTg", _ZN7WebCore11MediaPlayer19syncTextTrackBoundsEv) +STUB( + "uJV+qVMCWvA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "uJW70WO58C8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEEC1ERS9_) +STUB("uJYXNFvJ1lY", Java_java_net_Inet4AddressImpl_getHostByAddr) +STUB( + "uJaa376XtU4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE7reserveEi) +STUB("uJcwhqr2Tbs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V115SearchAttributeEEmmEi) +STUB( + "uJdTCXqA2fc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEE3getEv) +STUB( + "uJg+OCnLtos", + _ZN9Inspector26InspectorBackendDispatcher7disableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("uJgWvzGN6aI", _ZN3sce7Toolkit2NP2V28Commerce16RatingDescriptorC2Ev) +STUB( + "uJgdAAK-Gks", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEmmEi) +STUB("uJhCMIgHtBo", _ZN7WebCore14ProcessWarming25collectPrewarmInformationEv) +STUB("uJiGR0cme+g", _ZN7WebCore17JSHTMLLinkElement4infoEv) +STUB("uJoZRn-1Zcg", uloc_openKeywordList) +STUB( + "uJsUiCet9JQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEE10setContextEPNS2_10LibContextE) +STUB("uJvJAiSPQuc", cuse_lowlevel_new) +STUB( + "uJz78qBVRxQ", + _ZN7WebCore9FrameView30scrollPositionForFixedPositionERKNS_10LayoutRectERKNS_10LayoutSizeERKNS_11LayoutPointES9_fbNS_30ScrollBehaviorForFixedElementsEii) STUB("uJziRsODk1c", sceAgcDriverGetResourceRegistrationMaxNameLength) +STUB( + "uK-KeYnSzUg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEdeEv) +STUB("uK-XPIiI+jQ", _ZN9Inspector21InjectedScriptManager10disconnectEv) +STUB( + "uK0sr7dsqZM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB("uK7vGxAQVxM", FT_Set_Debug_Hook) +STUB("uKAqJDFFpso", _ZN3sce2Np9CppWebApi14ConnectAccount2V212PartnerToken20setAccessTokenSecretEPKc) +STUB("uKBkvN84hbw", UCNV_FROM_U_CALLBACK_SKIP) +STUB( + "uKC1KVphJr0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEC2ERKS7_) +STUB( + "uKD8-96+SNs", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody22unsetInvitableUserTypeEv) +STUB("uKNPDudJTmo", cairo_scaled_font_create) +STUB( + "uKOneIfJrbs", + _ZN9Inspector25DebuggerBackendDispatcher20setPauseOnExceptionsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) STUB("uKPHIxkRT6w", sceNpTrophySystemGetTrpTitleIcon) +STUB( + "uKT6W0vqRcs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEEC1ERSA_) STUB("uKTDW8hk-ts", sceNpCommerceSetPsStoreIconLayout) +STUB("uKTxb5P1CQ0", _ZN4Manx6Screen15availableHeightEv) +STUB("uKVbrw3xW8o", _ZN3JSC7Symbols24getByIdDirectPrivateNameE) +STUB( + "uKaCgVaHqGY", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEEiRNS2_10LibContextEPT_m) +STUB("uKjh3hI1npw", hb_ot_tag_to_script) +STUB("uKkBLhXCMC8", mono_assembly_get_assemblyref) +STUB("uKl2mNtDE6o", mono_profiler_install_jit_compile) +STUB("uKnoYK2OebM", il2cpp_field_get_value) +STUB("uKr5dZIABo4", _ZNK7WebCore10LayoutRect8containsERKS0_) +STUB("uKwVHZIMDbg", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEEeqERKS7_) +STUB("uKwYpqeUkzo", _Unwind_GetBSP) +STUB("uLAfeeY2T2Y", _ZN3WTF21MemoryPressureHandler9singletonEv) +STUB("uLB0JWTbLhk", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110ResultTypeEEmmEi) +STUB("uLKVE19J+iU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_12FutureResultIiEEED1Ev) +STUB("uLMT97BG-mM", _ZN7WebCore17FullscreenManager18willExitFullscreenEv) +STUB("uLVGXwLzfME", _ZN7WebCore9JSDOMRect4infoEv) +STUB("uLVXOwPH-ys", + _ZN15AbstractStorage17DailymotionFolderC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) +STUB("uLcnckzRuF4", + _ZN3sce2Np9CppWebApi13InGameCatalog2V522ContainerRatingFactory7destroyEPNS3_15ContainerRatingE) +STUB("uLf5hm8BYzs", _ZN4Manx14NetworkProfile15updateProxyInfoEv) +STUB( + "uLgLwgxdOt0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("uLq7dPUZAyY", _ZN3sce3pss5orbis9framework21PsmMainThreadCallList10UnregisterEPFvPvES4_) +STUB("uLqHpoktUzI", _ZN7WebCore8SVGNames16font_face_uriTagE) +STUB( + "uLvJppvbAMs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE8copyFromERKS9_) +STUB("uLwzd3AmWBA", mono_aot_Mono_Dynamic_Interpreterjit_code_end) +STUB("uLxkG09gC9Q", _ZN7WebCore8SVGNames8vkernTagE) +STUB( + "uLzo94lrfSs", + _ZN3sce2Np9CppWebApi14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBody10setNatTypeERKi) +STUB( + "uM2gao7IN+Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEC1EPNS2_10LibContextE) STUB("uM3tl64pJNU", sceSrcUtilityFinalize) +STUB("uM5yTn9gVQ8", __tsan_atomic16_fetch_or) +STUB( + "uMAJcevHm4g", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEptEv) +STUB("uMD+19V462k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEEppEi) STUB("uMJFOA62mVU", sceNpCondSignal) +STUB("uMMG8cuJNr8", _ZNSt15_Num_float_base17has_signaling_NaNE) +STUB("uMPfxHtGcSA", _ZN3JSC4Heap32setGarbageCollectionTimerEnabledEb) +STUB("uMTWH7WU7mQ", _ZNK3sce2Np9CppWebApi14SessionManager2V115SearchCondition12getAttributeEv) +STUB("uMWav34mMq8", _ZN4IPMI4impl10ServerImplD2Ev) +STUB( + "uMYCp-jBsIM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEC2Ev) +STUB("uMd3+hRMxHs", _ZN3sce7Toolkit2NP2V24Core7Request11MemoryPools20SSL_MEM_DEFAULT_SIZEE) +STUB("uMeLdbwheag", fmal) STUB("uMei1W9uyNo", exit) +STUB("uMfHNhvqp-U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE4sizeEv) +STUB("uMiUG1S+Z+A", _ZN3sce2Np9CppWebApi7Matches2V15Error9setReasonEPKc) +STUB( + "uMk8PvI5pN4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEptEv) STUB("uMkqgm70thg", sceUserServiceGetGlsLanguageFilter) +STUB( + "uMm2FXLD5Og", + _ZN7WebCore15ActiveDOMObjectC2EPNS_22ScriptExecutionContextENS0_33CheckedScriptExecutionContextTypeE) +STUB("uMm5jtE1kS0", _ZNK7WebCore13HitTestResult13mediaHasAudioEv) +STUB("uMnQSjJGaHk", _ZN3sce7Toolkit2NP2V23TUS7Request16GetUsersVariableD1Ev) +STUB( + "uMr9TxukgLk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEmmEv) +STUB("uMtUYDmWD3I", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEEC2ERKS6_) +STUB("uMuGhA2DXkw", _ZN3JSC19InlineWatchpointSet7fireAllERNS_2VMEPKc) +STUB("uMzCRoHb63c", Java_java_lang_ClassLoader_resolveClass0) +STUB("uN-2vZbD6fU", _ZN23sceMetadataReaderWriter22StorageParserInfoTableD1Ev) +STUB( + "uN0u5rVqe1c", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEptEv) +STUB("uN7wT+JlBoA", mono_log_close_logfile) +STUB("uN9iGVRcQNI", _ZNK7WebCore8Document10alinkColorEv) +STUB( + "uNADD2XciMk", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getInteger3Ev) STUB("uNAUmANZMEw", sceJpegDecQueryMemorySize) +STUB("uNBcuOM-orU", + _ZN3JSC10JSFunctionC1ERNS_2VMEPNS_16NativeExecutableEPNS_14JSGlobalObjectEPNS_9StructureE) STUB("uNBguxxOcgI", sceVorbisDecStreams) +STUB("uNCARQQDkbg", _ZN7WebCore8Settings25setUserStyleSheetLocationERKN3WTF3URLE) +STUB("uNCtsC7HE80", _ZZSt9MakefacetISt10moneypunctIcLb1EESt8_LocinfoERT_T0_E3buf) +STUB("uNF-qFHt8G0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17GetGameDataResultEEC2Ev) +STUB("uNOxyBsDQb8", + _ZN3sce2Np9CppWebApi7Matches2V120ErrorResponseFactory7destroyEPNS3_13ErrorResponseE) STUB("uNPUU9tAUw4", sceMatAllocPhysicalMemory) +STUB("uNTAIV2KkXI", mono_aot_Sce_Vsh_Np_Managerplt_end) STUB("uNTluLfYgS8", sceNetConfigSetIfLinkLocalAddr6) +STUB( + "uNXoZilhivk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "uNchuAk+6vU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEdeEv) +STUB( + "uNg3L8azMIg", + _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities26GetUsersActivitiesResponse6toJsonERNS_4Json5ValueEb) +STUB( + "uNhqaYt3eBk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEED1Ev) STUB("uNqLv8MBdwg", sceMusicCoreServerGetSpWakeupAuthorityList) +STUB( + "uNrmNzg4Hy0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE3endEv) +STUB( + "uNsyGsKzFSo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) STUB("uNu7j3pL2mQ", sceSaveDataPromote5) STUB("uNzuMI2Smqg", sceBgftServiceIntDownloadGetExtUsbUserStorageSize) +STUB("uO6YxonQkJI", _ZTSSt5_IosbIiE) +STUB( + "uOAyLHTOLHY", + _ZN3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayerC1EPNS1_6Common10LibContextE) +STUB("uODuM76vS4U", + _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecm) +STUB( + "uOEm1Zz6Yuc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEED1Ev) +STUB( + "uOITpL5-7Es", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE5beginEv) +STUB( + "uOKdq2cE+0w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEE11get_deleterEv) +STUB( + "uONEqIIroeI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE6resizeEj) +STUB("uOQoa-hW3gA", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V16Rating17setNpServiceLabelERKj) +STUB("uOVa2UlpF0M", WKBundleRemoveAllVisitedLinks) +STUB("uOWeAeBDuM0", _ZN3JSC13JSONStringifyEPNS_14JSGlobalObjectENS_7JSValueEj) +STUB("uOWuJZyEwUM", _ZN7WebCore24CachedResourceHandleBase11setResourceEPNS_14CachedResourceE) +STUB( + "uOXvPwJZ+2w", + _ZN9Inspector20DOMBackendDispatcher11resolveNodeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) STUB("uObO1I15Se0", sceNpAsmClientGetNpComInfo3) +STUB("uOcJWTLDtgw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEaSERKS7_) +STUB( + "uOcLl5zOh1E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE5beginEv) +STUB( + "uOhkHwrueIU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEE7get_refEv) +STUB("uOr14Z8P6Ms", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEcvbEv) +STUB( + "uOuXpOcuni4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEC2Ev) +STUB( + "uOyXf6fIIqI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEED2Ev) +STUB("uOycFzjMWTU", mono_aot_Sce_Vsh_CloudClientjit_code_start) +STUB("uP3wt8xeABw", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V115NatConnectivityD1Ev) +STUB("uP4OP7rPYyM", _Printf.percent) +STUB("uP4u3DK9vxg", _Fopen.rwacc) +STUB( + "uP5Wx4jurho", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEC1EPS8_) +STUB( + "uP7UpUdDNUY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "uP7ici27GVQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEC2Ev) +STUB("uP8AtPqt+ms", mono_aot_System_Xmljit_code_start) +STUB( + "uP9aPPHOeag", + _ZN9Inspector25DatabaseBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "uPBxGgP0xcM", + _ZN3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody14setCustomData2EPKvm) +STUB("uPEHcToMgdQ", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE3endEv) +STUB( + "uPIrw-bzvwI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "uPNAIH+asg0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEED2Ev) STUB("uPO717XxK1g", _sceNpMemoryHeapShowMemoryStat) +STUB( + "uPP1UzHz3BI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEC1Ev) +STUB( + "uPPfsu7Bo+Q", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEeqERKS9_) +STUB("uPR3a9peE4k", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE6resizeEj) +STUB( + "uPS6yM1BjOo", + _ZN7WebCore19JSHTMLSelectElement10putByIndexEPN3JSC6JSCellEPNS1_14JSGlobalObjectEjNS1_7JSValueEb) +STUB( + "uPWm4ln-Iqk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEE3getEv) +STUB("uPXP9uT1Zp8", _ZN7WebCore9HTMLNames16enterkeyhintAttrE) +STUB("uPbKbN7X5B4", _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeINS1_11TusVariableEPvEEC2Ev) +STUB( + "uPcynqAmMLY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEC2EPNS2_10LibContextE) STUB("uPj-CXHNEFE", sceNpSnsIntAbortRequest) +STUB("uPjhklRIi2g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEcvbEv) +STUB( + "uPom72iFSLc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEED1Ev) STUB("uPqxvaoLkbM", sceM4aacEncClearContext) +STUB( + "uPu5cAaLIRo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEC1EPS8_) +STUB( + "uPz3-6FpnN8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEE11get_deleterEv) +STUB("uPza8y4cMC4", initCommInfoList) +STUB( + "uQ1nhZaGJy4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "uQ1tPQwvbV8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEEC2Ev) +STUB("uQ4HFlHUJy0", UI_method_set_writer) +STUB("uQ6pBAcK42U", _ZN7WebCore28DisplayRefreshMonitorManager13sharedManagerEv) +STUB("uQFv8aNF8Jc", _ZNSt10moneypunctIcLb0EEC2ERKSt8_Locinfomb) +STUB("uQJjmIpY2Ok", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_19GetGameDataResponseEE3getEv) +STUB("uQPBVPOhM00", _ZN3NTF21URLRequestFormElementD2Ev) +STUB( + "uQbmFdTvbno", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE) STUB("uQc9P8Hrr6U", sceHmdInternalGetBrightness) +STUB( + "uQd4iI6u4jg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "uQd55+WGOnM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEC1Ev) STUB("uQiK7fjU6y8", sceRudpAccept) +STUB( + "uQmSd3wko78", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("uQsPFALidlg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEEaSERS7_) +STUB("uQsRTwqZM3I", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request7GetFeed17DEFAULT_PAGE_SIZEE) +STUB( + "uR+A5n4mmG4", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEiRNS2_10LibContextEPT_m) STUB("uR1wFHXX1XQ", sceSystemStateMgrReboot) +STUB( + "uR4qPf61ZvA", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScore22hasxPsnAtomicOperationEv) +STUB("uR5Cz0aA4AA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEC1ERKS7_) +STUB("uR5F-DA5ML0", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setSecondaryAudioStream) +STUB( + "uR63v7Jt6VM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEcvbEv) +STUB( + "uR8uMnUti7E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE4sizeEv) +STUB("uRCMM+lLRZk", GCC_except_table68) +STUB("uREzL5i86Vo", Java_java_io_FileOutputStream_write) +STUB("uROsAczW6OU", _ZNSt10moneypunctIwLb1EEC1ERKSt8_Locinfomb) STUB("uRU0lQe+9xY", sceUserServiceGetFaceRecognitionDeleteCount) +STUB( + "uRZ2aQNKx2A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "uRbM4M5aF9Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V117InvitableUserTypeEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB( + "uRbMuQ2EcFQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE7reserveEi) +STUB( + "uRbp+hFQ6O8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "uRczZFV+Or4", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi27DownloadDataResponseHeaders15hasLastModifiedEv) +STUB( + "uRd8HZpEfII", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "uRgh9mhpSl8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE8capacityEv) +STUB( + "uRhqnylvSug", + _ZN7WebCore11FrameLoader17HistoryController36saveScrollPositionAndViewStateToItemEPNS_11HistoryItemE) +STUB("uRj8BEc2NKk", + _ZN7WebCore15FocusController15setInitialFocusENS_14FocusDirectionEPNS_13KeyboardEventE) +STUB( + "uRmViNor+mc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEC2Ev) STUB("uRosf8GQbHQ", sceHttp2SetInflateGZIPEnabled) +STUB("uRq3B-dOzuo", uregex_useTransparentBounds_67) +STUB( + "uRqpazPkiGs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEC2EPS6_PNS2_10LibContextE) +STUB( + "uRrccOKObqg", + _ZN7WebCore9ImageDataC2ERKNS_7IntSizeEON3WTF3RefIN3JSC21GenericTypedArrayViewINS6_19Uint8ClampedAdaptorEEENS4_13DumbPtrTraitsIS9_EEEE) STUB("uRsskUhAfnM", sceNpWebApiVshInitialize) +STUB( + "uRuBf71eYD0", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("uRvcCZ2XhEg", g_ArrayPrototypePoison) +STUB("uS05QSvf+tY", _ZN3sce7Toolkit2NP2V26Trophy7Request6UnlockC1Ev) +STUB("uS1Uto3McwE", WKPreferencesGetWebRTCMDNSICECandidatesEnabled) +STUB( + "uS6QQDB+Wcw", + _ZN3sce2Np9CppWebApi7Matches2V111TaskFactory6createEPNS1_6Common10LibContextEPKcNS3_10TaskStatusENS3_16TaskAvailabilityEPNS5_12IntrusivePtrINS3_4TaskEEE) +STUB( + "uS7pVemFFRo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEEcvbEv) +STUB("uS9P+bSWOC0", CERT_STORE_findIdentityCertChainNext) +STUB("uSCkLIMckMk", _ZN7WebCore11XPathResult12snapshotItemEj) +STUB("uSKZ2FPIMfk", u_strncpy_67) STUB("uSLgWz8ohak", sceNpManagerIntGetUserIdByOnlineId) +STUB( + "uSMrsAMws8Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("uSNNaVzIbyI", _ZN3JSC8Debugger9exceptionEPNS_9ExecStateENS_7JSValueEb) +STUB("uSNqxrARpEQ", ft_module_get_service) +STUB( + "uSXQRQzpGgA", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("uSY70W0dkA4", mono_btls_ssl_ctx_peek_store) +STUB("uSanpch7iLE", + _ZN23sceMetadataReaderWriter10jpegParser26jpegParserExtractThumbnailERKSsRNS_9ThumbnailE) +STUB( + "uScUPWyOjAU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEC1EPS8_) +STUB("uSeJeaPNBFQ", _ZN7WebCore13JSDOMRectList4infoEv) +STUB("uSjDEEo9Vec", _ZNK3sce2Np9CppWebApi6Common6VectorINS2_6StringEE5beginEv) +STUB("uSl496Y8eeA", mono_aot_System_ServiceModel_Internalsunbox_trampolines_end) STUB("uSrXaxT+oPQ", sceAjmBatchJobGetCodecInfo) +STUB("uSsvYtPuUdQ", _ZNK3sce2Np9CppWebApi6Common6VectorIjE8capacityEv) +STUB( + "uStrWg7XpWM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE3endEv) +STUB( + "uSuVZ1eLmt4", + _ZN7WebCore17JSHTMLLinkElementC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_15HTMLLinkElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "uSwpX8iH5qo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE10setContextEPNS2_10LibContextE) +STUB("uT-4nK3GPew", mono_assembly_open_full) +STUB("uT0+9jY9AfM", _ZN7WebCore16createFullMarkupERKNS_4NodeE) +STUB("uT2xEKnilDY", mono_aot_System_Reactive_Linqjit_code_end) STUB("uT4EBfl284o", sceFiosCachePrefetchFHRange) +STUB( + "uT4hP43dsiU", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody14unsetInteger10Ev) +STUB("uT9sA6KaYTI", + _ZNK3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession14getSessionNameEv) +STUB("uTA9WNAsuJ4", _ZN7WebCore9HTMLNames13accesskeyAttrE) +STUB( + "uTBQbeJe0xQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEEcvbEv) +STUB("uTDkdY+Gquc", _ZN3WTF24callOnMainRunLoopAndWaitEONS_8FunctionIFvvEEE) +STUB("uTL5h-iE3u0", _ZN7WebCore17HTMLCanvasElement9toDataURLERKN3WTF6StringE) +STUB("uTNe7A2gscY", _ZN3sce7Toolkit2NP2V212ActivityFeed11SharedVideoC2Ev) +STUB( + "uTNtBFDLLcU", + _ZNK3sce2Np9CppWebApi14SessionManager2V130RequestPlayerSessionInvitation6toJsonERNS_4Json5ValueEb) +STUB("uTNzSYfPGLU", _ZN3sce2Np9CppWebApi11Matchmaking2V115LocationFactory7destroyEPNS3_8LocationE) +STUB("uTOOoxHbtkc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEE11release_refEv) +STUB("uTQbKfuJXAM", _ZN7WebCore13TextIndicator6createERKNS_17TextIndicatorDataE) +STUB( + "uTRcZNJiTRs", + _ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBodyC2EPNS1_6Common10LibContextE) +STUB("uTRcii-1Idc", _ZNK7WebCore31BasicColorMatrixFilterOperation14transformColorERNS_5SRGBAIfEE) +STUB("uTRx3+3gc+k", + _ZN7WebCore22EmptyFrameLoaderClient31dispatchDidReceiveContentLengthEPNS_14DocumentLoaderEmi) +STUB( + "uTUqGWc6b5I", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi47ParameterWithBinaryRequestBodyToRecordLargeData14setRequestBodyEPKhm) +STUB("uTW+63goeJs", InitializeImeModule) +STUB( + "uTWW7GR8-YM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEppEv) +STUB("uTXC9aSxDz4", _ZN7WebCore11MathMLNames12notationAttrE) +STUB( + "uTYlOtJnWIg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEED2Ev) +STUB( + "uTZQIw18Rho", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEEdeEv) +STUB("uTd181B3Y58", _ZNK7WebCore24CachedResourceHandleBasecvMS0_PNS_14CachedResourceEEv) +STUB("uTgyjMYaqX0", + _ZN3sce2Np9CppWebApi7Matches2V120RequestTeamStatistic25unsetTeamMemberStatisticsEv) +STUB("uTiJLq4hayE", _ZNSt14numeric_limitsIhE8digits10E) +STUB( + "uTrP29Wp9fA", + _ZN7WebCore11JSDOMWindow18getOwnPropertySlotEPN3JSC8JSObjectEPNS1_9ExecStateENS1_12PropertyNameERNS1_12PropertySlotE) +STUB( + "uTvJnnKxwTk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEmmEv) +STUB( + "uTznXkW2cco", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEppEi) +STUB( + "uU3G4j4PkzE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE10setContextEPNS2_10LibContextE) +STUB("uU4zmFmloQA", _ZN7WebCore15DatabaseTracker23trackerWithDatabasePathERKN3WTF6StringE) +STUB("uU61+5U5Z3I", WKViewClearSelection) +STUB( + "uU7GW41qlC0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEEdeEv) +STUB("uU8DcyPGPj8", __tsan_atomic64_fetch_xor) +STUB("uUAV3+OHzJI", _ZN7WebCore11MathMLNames17annotation_xmlTagE) +STUB("uUDq10y4Raw", _ZNKSt7_MpunctIcE13do_neg_formatEv) +STUB( + "uURiDeFaw+s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE8copyFromERKS9_) +STUB( + "uUV9NMozQa4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEC2EPS8_) +STUB( + "uUWvIrs0T9o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEppEi) +STUB("uUhHdmHrmSU", __wrap_symlink) +STUB("uUjwGu7aZuU", glDeleteTransformFeedbacks) +STUB("uUq1q3l2pD0", WKKeyValueStorageManagerDeleteEntriesForOrigin) +STUB( + "uUzKvubyd0A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEptEv) +STUB( + "uV-7ibqsigA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "uV1KaHMy3qs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEC2ERS7_) +STUB("uV3bjt5IJgs", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE3endEv) STUB("uVAfWmv+cc8", sceNpManagerIntGetTicket) +STUB( + "uVG3HFxZ5mY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE5beginEv) +STUB( + "uVG4nFt3IIM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEeqERKS9_) +STUB( + "uVKwCgQaHfc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("uVLETIxb0yA", _ZNK15AbstractStorage14YoutubeStorage10GetServiceEv) +STUB("uVOxy7dQTFc", _ZNSt10moneypunctIwLb1EED2Ev) +STUB("uVQK08ctBG0", _ZL5codes) +STUB("uVRcM2yFdP4", fminf) +STUB("uVXcivvVHzU", j1f) +STUB( + "uVcxYdNI58E", + _ZN3sce7Toolkit2NP12ActivityFeed9Interface14postPlayedWithEPKNS1_17PlayedWithRequestEPNS1_9Utilities6FutureINS1_15ActivityStoryIdEEEb) +STUB("uVdONJ4yNrc", glAttachShader) +STUB("uVeK-dCqDDI", _ZN7WebCore9GLContext7currentEv) +STUB( + "uVgZmBOIlXU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEC2EPS8_) +STUB( + "uVhnA9G47-4", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE21setOnFinishedCallbackEPFvliS6_PvEPFvliSD_ESD_) +STUB( + "uVi0q+spM5M", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE4sizeEv) +STUB( + "uVi6Z+toDwg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEC1Ev) +STUB( + "uViVmrvTxbI", + _ZN9Inspector22InspectorDebuggerAgent21breakpointActionProbeEPN3JSC14JSGlobalObjectERKNS_22ScriptBreakpointActionEjjNS1_7JSValueE) +STUB( + "uVl68ZrnhOE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEC1EPS6_) +STUB("uVoPGNUyeZU", glGetProgramInfoLog) +STUB("uVoRmKYYtcI", wpe_unicode_to_key_code) +STUB( + "uVqo3bTWBbE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("uVsMQhMnxbE", _ZN3WTF10fastCallocEmm) +STUB("uVwdNifr5O8", _ZThn16_N9Inspector18InspectorHeapAgent8snapshotERN3WTF6StringEPdPS2_) +STUB("uVxaUTCMBiI", PKCS12_free) +STUB( + "uVyEWj1zias", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V129UploadDataResponseBodyFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_22UploadDataResponseBodyEEE) +STUB("uVzufRohxCU", EVP_DigestFinal_ex) +STUB( + "uW4bk+mPlM8", + _ZN15AbstractStorage13TwitterFolder10NewContentERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_7ContentEE) STUB("uW4vfTwMQVo", sceSaveDataUmount2) +STUB("uW5wKgMp0JQ", WKContextConfigurationSetDiskCacheSizeOverride) +STUB("uW8TLDZhSV4", _ZN3JSC11RegisterSet7allGPRsEv) +STUB("uWCl+lTaUyM", jdiv_round_up) +STUB("uWDXpyKhBTw", rgctx_fetch_trampoline_rgctx_58) STUB("uWIYLFkkwqk", scePlayGoGetLocus) +STUB( + "uWMIJsUfFwo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE3endEv) STUB("uWNeRp70BRw", sceVoiceChatRequestLeaveVoiceChatGroup) +STUB( + "uWWyicdMgWU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEmmEv) +STUB( + "uWX-pOK8mVc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEdeEv) +STUB("uWXZu+HXZw0", _ZN7WebCore16MIMETypeRegistry24unsupportedTextMIMETypesEv) +STUB("uWZBRxLAvEg", _ZNKSt12system_error8_DoraiseEv) +STUB("uWaDlxZI6nE", _ZNK7WebCore12NamedNodeMap14getNamedItemNSERKN3WTF12AtomicStringES4_) +STUB("uWpTjViz8Rg", _ZN3sce2Np9CppWebApi6Common8IteratorIfEppEi) +STUB( + "uWw8SL2VJw0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEC2EPKS8_) +STUB( + "uWx7Xd2dgkE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEC1Ev) STUB("uWyW3v98sU4", sceKernelCheckReachability) +STUB("uX0nKsUo8gc", + _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_RSt8ios_basewy) +STUB( + "uX0sXC5UmOo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEppEi) +STUB("uX5ukpv+Lxw", _ZN3sce7Toolkit2NP2V26Friend12BlockedUsersC2Ev) +STUB("uX9JzEAQiZ8", + _ZN7WebCore21JSTextTrackCueGeneric11analyzeHeapEPN3JSC6JSCellERNS1_12HeapAnalyzerE) +STUB( + "uXDuiwP0hlo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEED2Ev) +STUB("uXI9qelUUlw", __tsan_unaligned_read4) +STUB("uXIXqbSceSE", _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead14unsetSessionIdEv) +STUB("uXJeEurJF8c", _ZNK3WTF10AtomString23convertToASCIIUppercaseEv) +STUB("uXJio0aNxk4", YGNodeStyleGetWidth) +STUB("uXOqUmL+3vo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEixEm) STUB("uXPlVNPQipM", sceFsLvdDetach) STUB("uXR5stkS+W4", scePssMusicPlayerUserCreate) +STUB( + "uXUZ3QDz5Uk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE8copyFromERKS9_) +STUB("uXUoF-VjclI", _ZN3sce2Np9CppWebApi6Common6VectorIiED2Ev) +STUB( + "uXVO22Vdj7U", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEneERKS9_) +STUB("uXZAS3XfshY", _ZN3JSC7Symbols24speciesGetterPrivateNameE) +STUB("uXj-oWD2334", _ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC1Em) +STUB("uXluFL9Byo0", u_toupper_59) +STUB( + "uXm-+Vq20pw", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE5getIdEv) +STUB( + "uXup4zYmoYI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEEC2ERSA_) +STUB( + "uXvj9aqGt0Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEE3getEv) +STUB( + "uY6pgeR3OHM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEppEv) +STUB( + "uYC5xxC8dvE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEEdeEv) STUB("uYELOMVnmNQ", sceWebBrowserDialogNavigate) +STUB("uYFjM3ReDRQ", cairo_pattern_create_radial) +STUB( + "uYFv60TQXPY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB("uYHlTj-PnX4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEED2Ev) +STUB("uYI-Ut2eIzE", _ZN7WebCore14LoaderStrategy34responseFromResourceLoadIdentifierEm) +STUB( + "uYRGK9M-kP4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB("uYdGxAnSrr4", _ZN7WebCore29SQLiteStatementAutoResetScopeC1EPNS_15SQLiteStatementE) +STUB( + "uYdiOWB804s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE5beginEv) +STUB( + "uYfP736JtRU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEE3getEv) STUB("uYhiELUtLgA", sceRemoteplayIsRemotePlaying) STUB("uYjA59lYaH8", scePlayReadyProfileResume) +STUB( + "uYoeDr2PqjE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB("uYpN3d-+c9o", _ZNK7WebCore11MediaPlayer4rateEv) +STUB( + "uYpyA8er8CU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("uYunNHRcXQU", delegate_virtual_invoke_6) STUB("uYx2ZEq998s", sceFiosRename) +STUB( + "uZ4KJRuYkDY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEC1Ev) +STUB( + "uZ7F+rP1muQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEEaSERKSA_) +STUB("uZCi5aYi35w", TEEC_ReleaseSharedMemory) +STUB( + "uZE97FeWiKs", + _ZN9Inspector25DebuggerBackendDispatcher5pauseElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "uZEqpjhUKrs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) STUB("uZG5rmROeg4", sceUserServiceSetPbtcWednesdayHoursEnd) +STUB( + "uZI2-2wAqtw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE7popBackEv) +STUB( + "uZI4ymmqs3c", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE5beginEv) STUB("uZTQHI50WpY", sceContentExportFromDataWithThumbnail) STUB("uZW-mqsxkrM", sceAgcCbBranchGetSize) STUB("uZXjTVsS-hU", sceMusicPlayerServiceTerminate) +STUB( + "uZYQ7IQfWrs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("uZYkD7Vda7Y", _ZN7WebCore9HTMLNames11captureAttrE) +STUB("uZZDmi7MP0o", _ZN7WebCore17HTMLCanvasElement27setMaxPixelMemoryForTestingEm) STUB("uZnL4QZxzkI", sceNpManagerIntUnbind) STUB("uZq9X7FZfOk", scePssMusicPlayerGetSurroundPan) STUB("uZqc4JpFdeY", sceSaveDataDeleteUser) +STUB("uZrCQCIDYgY", _ZN7WebCore10XLinkNames8hrefAttrE) STUB("uZrOwuNJX-M", sceRazorCpuPushMarkerStatic) STUB("uZrg74SvVvk", sceEsvmEngineMediaKeySessionGetKeyStatuses) +STUB("uZuLK3v55JY", _ZN7WebCore21DiagnosticLoggingKeys25missingValidatorFieldsKeyEv) +STUB( + "uZyj4nJsqSI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEppEv) STUB("uZz3ci7XYqc", sceUltQueueTryPop) +STUB("uZz94vYMiNs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE3endEv) STUB("ua+13Hk9kKs", sceImeKeyboardSetMode) +STUB("uaALL3BTAUQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession16customData1IsSetEv) STUB("uaB-LoJqHis", sceNpAuthGetIdToken) STUB("uaCfG0TAPmg", sceNpManagerIntLoginParseJsonUserInfo) +STUB("uaKuW8v5TIw", __sanitizer_reset_coverage) +STUB( + "uaPLudZDRSk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEneERKS9_) +STUB( + "uaPp1MpJ0UA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEC2EPS6_PNS2_10LibContextE) +STUB("uaQLyOXnEU4", _ZN3sce7Toolkit2NP5EventC2EPKNS1_8UserInfoE) +STUB( + "uaRmccuN+v0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEC1EPKS8_) +STUB("uaSGoo1vVU8", mono_jit_info_get_code_size) STUB("uaXURZ5NMGw", sceSpNetEpollWait) STUB("uad7k07h1HM", sceNpSnsTwitchDialogUpdateStatus) +STUB( + "uadmWFUj4r4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEdeEv) +STUB("uaiGNR0Sbvc", _ZN15AbstractStorage12LocalContent8SeekTimeElPl) STUB("uaieF+glFPs", sceSystemServiceLaunchPlayerDialog) +STUB( + "uamw6ddP2K8", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM18LiveRegionRelevantEEESt8optionalIT_ERKN3WTF6StringE) +STUB("uapVh6ndBrg", mono_runtime_delegate_invoke) STUB("uaqZvga3Fkg", sceLncUtilCrashSyscore) +STUB("uasPTZrSnjY", + _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody21unsetTicketAttributesEv) +STUB("uat8HBPqBak", _ZN7WebCore11DisplayList8DrawLineD2Ev) STUB("uaxFW+LGzGY", sceCesUtf32StrGetMbcsLen) +STUB("uaxqQAB2Ozk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEaSERKS7_) +STUB("ub+d08lid68", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEED1Ev) +STUB( + "ub-4aF7I0Lg", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi17deleteGameSessionEiRKNS4_28ParameterToDeleteGameSessionERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB("ub-ueWij7es", + _ZNK3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSession12getSessionIdEv) +STUB("ub4yceOLlbQ", glVertexAttrib4f) +STUB("ub8Gq5NufoY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS3_18CustomResponseDataEEC1Ev) +STUB( + "ub8a6ctanCg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "ub9Su0WNymM", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations30unsetxPsnAcceptPlatformNamePs5Ev) STUB("ubB+tVwd4-U", sceGpuTraceCancel) STUB("ubD+FitjqhA", sceCamera2SetVideoSync) +STUB("ubJZVBCQFgk", _ZN3sce2Np9CppWebApi7Matches2V118RequestTeamResults7setRankERKi) +STUB("ubPRQdYlwSs", _ZN7WebCore9HTMLNames9scriptTagE) +STUB("ubQSgnluQP4", _WScanf.qchar) +STUB("ubQlmG6njvM", rgctx_fetch_trampoline_mrgctx_89) +STUB( + "ubRC7kMEocE", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11setBoolean6ERKb) +STUB("ubUpW4CUi58", WKWebsiteDataStoreConfigurationSetWebSQLDatabaseDirectory) +STUB("ubWGqqrsQz4", _ZN3sce7Toolkit2NP2V212EventsClient12EventDetails22MAX_SIZE_PROMOTER_NAMEE) +STUB("ubXxox6sjJ4", _ItL_qS2) +STUB("ubeOpKpFwZk", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V324ValidationConstraintInfoD2Ev) +STUB("ubr-PIGrHb0", _ZNK3sce2Np9CppWebApi13InGameCatalog2V55Image9typeIsSetEv) +STUB("ubtOpuxX4qM", _ZN3JSC17DebuggerCallFrame15currentPositionERNS_2VME) +STUB("ubu+mUNY3GI", _ZN7WebCore10FloatPoint9normalizeEv) +STUB( + "ubyp3e7YMdw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEC2Ev) +STUB( + "uc-+hLj0+RU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("uc-MH98BJo8", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_6NpUserENS1_15AppSTLAllocatorIS5_EEEEC1Ev) +STUB( + "ucEQLd6FObE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEppEi) STUB("ucEsi62soTo", sceAudio3dAudioOutOpen) +STUB("ucFJiTO1EUw", dlerror) +STUB("ucKj65n4dCM", _ZNK3JSC12StackVisitor5Frame12functionNameEv) +STUB( + "ucO5SkY4gIU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEEC1ERKSA_) +STUB( + "ucOP9llCucE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE3endEv) +STUB("ucPqYWsrCUc", + _ZSt9use_facetISt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEERKT_RKSt6locale) +STUB("ucQnl+JZlKI", _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession16unsetCustomData1Ev) +STUB( + "ucT-RtUvUpg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEmmEv) +STUB( + "ucb9qXK3fws", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEdeEv) +STUB("ucdj6a5Hf3E", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt6vectorI16SceNpTusVariableNS2_IS4_EEEE8allocateEmPKv) +STUB( + "ucgKQraG-Vs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEEaSERSA_) +STUB("ucmNWbdZNhc", _ZN3WTF11Persistence7DecoderrsERNS_8OptionalIdEE) +STUB("ucxfOk6R-B8", _ZN7WebCore16DOMGuardedObjectC2ERNS_17JSDOMGlobalObjectERN3JSC6JSCellE) +STUB( + "ucyieM4FAaU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) STUB("ud-L5OvD5bA", sceBluetoothHidInterruptOutput) +STUB("ud1P9Z-rI9Q", uregex_setMatchCallback_67) +STUB( + "ud5pZBOkUMM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEC2Ev) +STUB( + "ud6I2Iis-lU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("ud7hEku-VXE", _ZN7WebCore9HTMLNames18onanimationendAttrE) +STUB( + "ud7nv2HX4Ws", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getInteger3Ev) +STUB("udAPjod3tpU", u_isxdigit) STUB("udAxvCePkUs", sceVoiceResetPort) +STUB("udNKq54S-xU", mono_btls_x509_name_get_entry_value) +STUB("udPSdxup+Q4", WKBundlePageCallAfterTasksAndTimers) +STUB("udSCe0cO+54", _ZNK3WTF6String28convertToLowercaseWithLocaleERKNS_12AtomicStringE) +STUB("udTM6Nxx-Ng", _ZTVSt11logic_error) +STUB("udTbHw5oKC4", _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeINS1_11TusVariableEPvEEC1Ev) +STUB( + "udUzJlCwtCM", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_9Animation14AnimationStateEEEN3WTF8OptionalIT_EERKNS5_6StringE) STUB("udWWfVZ5cPg", sceFsInitUmountSaveDataOpt) +STUB("udZmgiZVFZ8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEE3getEv) +STUB("uda1zGpaOqo", _ZN12video_parser21MpegvideoAvcParse3DDSEPhiPNS_24SceMpegvideoAvc3DDSParamE) +STUB("udajK8+CB+g", _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse9getZoneIdEv) +STUB("udeK-Ks31U8", _ZN7WebCore8SVGNames14glyph_nameAttrE) +STUB( + "udflhEV8tB8", + _ZNK3sce2Np9CppWebApi14SessionManager2V132RequestPlayerSessionMemberPlayer18nonPsnPlayersIsSetEv) +STUB("udfv0ISDDQA", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging24GameDataMessageThumbnailEEC2Ev) +STUB( + "udfynCHinYE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE5emptyEv) +STUB("udgitr6I1Vk", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEEC2Ev) +STUB("udhcXivSwFQ", _ZN3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer10setNatTypeERKi) +STUB( + "udjTbFCC+U0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEEC1Ev) +STUB( + "udmPFEi00pM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEmmEi) +STUB("udmos65cRQo", _ZN3sce2Np9CppWebApi7Matches2V118RequestTeamResultsD1Ev) +STUB( + "udnF6+H72UM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE7reserveEi) STUB("udns7ikzOnE", sceDataTransferRequestTransferTimePS4) +STUB("udoSfHla8yA", GetVolume) +STUB( + "udocGKaPXA8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEC1EPNS2_10LibContextE) +STUB( + "udsO02KCayM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("udsU8VfPMiQ", _ZN3sce7Toolkit2NP2V29Messaging24GameDataMessageThumbnailC1Ev) +STUB("udwfbBwAWVc", _ZN7WebCore6Editor38commandIsSupportedFromMenuOrKeyBindingERKN3WTF6StringE) +STUB("udwmZJCe+Nk", _ZN3sce7Toolkit2NP2V26Trophy16UnlockedTrophiesD1Ev) +STUB("udxusD5bgWg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEEppEv) +STUB( + "udyVIVVbCu0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEC2Ev) +STUB("ue13srrrLqA", _ZN7WebCore15AffineTransform5flipXEv) +STUB("ue3o0cfflkM", _ZN2GK9PlayerPSN15cancelStartGameEv) +STUB("ueBDsJH29YI", WKContextConfigurationCopyInjectedBundlePath) +STUB("ueDakuJBHxI", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_16SessionAttributeEEneERKS4_) +STUB("ueXsXnzWBqI", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats8fromJsonERKNS_4Json5ValueE) +STUB("ueZ5Ryx4OSg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEED2Ev) +STUB("ueZqqz5clfg", _ZNK7WebCore8Settings23needsSiteSpecificQuirksEv) +STUB( + "uebhxMrwtg0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEEdeEv) STUB("ueega6v3GUw", sceRtcSetTick) +STUB( + "uehBxUMp9dQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "ueiHcR1VuG4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEaSERKS9_) +STUB("ueiLds63ryU", _ZN7WebCore17JSDOMRectReadOnlyD2Ev) +STUB("uekVJTVqBGc", _ZNK3WTF3URL21truncatedForUseAsBaseEv) +STUB("ueohGT35aPU", _ZN9Inspector33AnimationBackendDispatcherHandlerC2ERKS0_) +STUB( + "uev6lIhgzjM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEplEm) +STUB("uf-RIkZUazQ", ucptrie_getType) +STUB("uf2iLFwyhQ4", + _ZNK3sce2Np9CppWebApi14SessionManager2V118MatchmakingForRead6toJsonERNS_4Json5ValueEb) STUB("uf77muc5Bog", sceNpTusTryAndSetVariableAVUserAsync) +STUB("ufDDnJvofro", OBJ_cleanup) +STUB("ufGZsAPiWH4", _ZN7WebCore11MathMLNames12stretchyAttrE) +STUB("ufKUQQ8FwXQ", unorm_normalize_59) +STUB( + "ufMwxAt9Wlw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEmmEi) +STUB("ufWVY3o70GA", _ZN3JSC8JSObject11hasInstanceEPNS_9ExecStateENS_7JSValueE) +STUB("ufZdCzu8nME", __sync_lock_test_and_set_16) +STUB("ufb1tKP3DRI", rgctx_fetch_trampoline_mrgctx_64) STUB("ufesWMVX6iU", sceRemoteplayGetMbusDeviceInfo) STUB("ufexf4aNiwg", sceVrTrackerRegisterDeviceInternal) +STUB("uffEeeP+lNU", _ZN9Inspector14FrontendRouterC1Ev) +STUB("uffabrxlIGw", mono_btls_x509_store_add_orbis_certs) +STUB( + "ufhm3H7RdV4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEEC2EPNS2_10LibContextE) +STUB( + "ufiLQgC0v0M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEC1EPS8_) +STUB("ufoBDuHGOlM", SSL_getSessionStatus) +STUB("ufqiLmjiBeM", __atomic_load_2) +STUB( + "ufrD1UGL-B8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15StatsEEEEEE5resetEPS9_) +STUB("ufvWCWWs4sM", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V110UpdateModeEEmmEi) +STUB("ug01kFuh4vs", mono_aot_Sce_Vsh_Np_AuCheckplt) +STUB("ug1fTsmntv4", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEEptEv) +STUB("ugBmqrDZeVU", + _ZN7WebCore26ThreadableWebSocketChannel23webSocketConnectRequestERNS_8DocumentERKN3WTF3URLE) +STUB("ugDPL8U56Rs", umutablecptrie_getRange_67) +STUB( + "ugJ1UAAO5As", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEED2Ev) +STUB( + "ugJ92rxX-8Y", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessions28hasxPsnAcceptPlatformNamePs5Ev) +STUB( + "ugJPoEDHYXs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEC2EPNS2_10LibContextE) +STUB("ugJXRBTIcdY", _ULx86_64_set_fpreg) +STUB( + "ugKZNs10Mno", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB("ugOHPs5+waI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEED1Ev) +STUB("ugR4z6HcTt0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEppEv) +STUB("ugZkPwKokqE", _ZN7WebCore5Cairo11ShadowStateC1ERKNS_20GraphicsContextStateE) +STUB( + "ugaT-gOol4Y", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEdeEv) +STUB( + "ugksT7FfWoc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB( + "ugqzdATcuew", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEneERKS9_) +STUB("ugtWLQ2FDgM", _ZN3sce7Toolkit2NP2V28Matching7Request11SetRoomInfoD1Ev) +STUB( + "ugwCIHpmN68", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEaSERKS9_) +STUB("ugxIai0X0HA", + _ZNK3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator12getAccountIdEv) +STUB( + "uh+DBfdZMzM", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEEiRNS2_10LibContextEPT_m) +STUB("uh2EuCm2YCY", _ZNK7WebCore29PerspectiveTransformOperation4dumpERN3WTF10TextStreamE) +STUB("uh2LjaW+xMI", rgctx_fetch_trampoline_mrgctx_107_p) +STUB("uh7RQK-+n20", _ZNK3WTF7RunLoop9TimerBase8isActiveEv) +STUB("uhCaukuz-SM", closeall) STUB("uhCmn81s-mU", sceGameLiveStreamingScreenInitialize) STUB("uhD7g7zXIQo", sceSystemServiceShowClosedCaptionAdvancedSettings) +STUB( + "uhDaambKRNE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEcvbEv) +STUB( + "uhEaA4AjzKw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE8pushBackERKS8_) +STUB( + "uhFR+J1wVsU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEeqERKS9_) STUB("uhJ+bSomPoE", sceDbgGetCpuGpuFrequencySetting) +STUB( + "uhLmb+na0lc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEptEv) STUB("uhSJXVMYQWc", sceNpPushStartNotificationA) +STUB("uhSjF5hCtbI", _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicket7hasviewEv) +STUB("uhXr-WOPNFI", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEEptEv) +STUB("uhYTnarXhZM", _Tls_setup__Errno) +STUB("uhZXEKm3lkk", _ZNK3sce2Np9CppWebApi6Common6String5emptyEv) +STUB( + "uhbEBoeL20g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE21intrusive_ptr_add_refEPS9_) +STUB("uhbwdrVWKnk", WKTextCheckerSetTestingMode) +STUB( + "uhjICfmWhyE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEC2EPS6_PNS2_10LibContextE) +STUB("uhnb6dnXOnc", _ZNSt4_PadC2EPKc) +STUB("uhnbOEaOjPk", _ZN4Manx14NetworkProfile3getENS_14SettingOptTypeEPcj) +STUB("uhpcXLeQsqs", mono_aot_Sce_Vsh_ProfileCacheplt) +STUB( + "uhqPZeZPSIw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "uhskTrKa5xA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEEcvbEv) +STUB( + "uhusgd7UzGA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEC1Ev) STUB("uhwssTtt3yo", sceUserServiceSetEventSortEvent) +STUB( + "uhxDqVGiDTY", + _ZN15AbstractStorage14MemfileContentC2ESbIcSt11char_traitsIcENS_8StlAllocIcEEEN3paf6common9SharedPtrINS6_6BufferEEE) +STUB( + "ui0oztI0kmA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEptEv) +STUB( + "ui1gt1JZqjM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEE5beginEv) +STUB("ui4s+3Sg6is", _ZN9Inspector32ScriptProfilerFrontendDispatcherC2ERNS_14FrontendRouterE) STUB("ui6EuBxIaMM", sceAudioOut2LoContextQueryMemory) +STUB("ui722edOhCU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEaSERKS7_) +STUB("ui9fWiWye0o", _ZNK7WebCore17NowPlayingManager15supportsSeekingEv) STUB("uiDKKpAQzO0", sceIduIsRifInstalled) +STUB("uiDkfX8F6IU", WKContextMenuItemGetTypeID) +STUB( + "uiDzVg4GhYk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEmmEv) +STUB("uiHpJ8MEi4I", rgctx_fetch_trampoline_rgctx_72_p) +STUB("uiKfzfd8Mas", mono_aot_Sce_Vsh_EventServiceWrapperplt) +STUB("uiNw6AxXTIs", WKUserContentControllerAddUserContentFilter) +STUB("uiOi3D5osbI", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_14TrophyGameInfoEEC1Ev) +STUB( + "uiP3F7iJYsE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEC1EPKS8_) +STUB("uiPVQSxXlsc", _ZNK3sce3Xml3Dom8Document10isReadOnlyEv) +STUB("uiPjI4MiUG4", mono_aot_System_Netunbox_trampolines_end) +STUB("uiRALKOdAZk", _ZNSt8numpunctIwE5_InitERKSt8_Locinfob) +STUB( + "uiSvOOqkftU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEixEm) +STUB("uiT87zoTX-I", _ZN7WebCore9HTMLNames8citeAttrE) +STUB("uiZDc8EEwtc", JVM_GetAllThreads) +STUB("uic2FBmyTDE", rgctx_fetch_trampoline_rgctx_76_p) +STUB("uidGfFopL5M", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15CategoryInfoSubEEC2ERKS4_) +STUB("uipV6x48ZHs", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEEC2Ev) +STUB("uirI2Gi9lFE", + _ZN15AbstractStorage14FacebookFolder13RemoveContentERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) STUB("uisYUWMn-+U", sceUserServiceSetNotificationBehavior) +STUB("uit423bpn6Q", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11TusVariableEEneERKS4_) +STUB("uivgEVjcAyQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEED2Ev) STUB("uiyG1M9D8-4", sceFacePartsGetWorkingMemorySize) +STUB( + "uiysGgtmviU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEE3endEv) +STUB( + "uiz-aiHA4LU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEEaSERSA_) +STUB("uj+HLgqmsTY", _ZN3WTF21makeRFC2822DateStringEjjjjjjji) +STUB("uj3aP9oDm3g", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEEixEm) +STUB( + "uj4CNwK+VZA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE11getResponseERS8_) STUB("uj86YxCYid0", sceNpStrToUInt32) +STUB("uj8oGGu4uow", isobmf_box_getflags32b) STUB("uj9Cz7Tk0cc", sceNpProfileDialogOpen) +STUB("uj9WUwBqWNY", mono_btls_x509_get_subject_name) +STUB( + "ujCZFcGFLXk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEC1EPS8_) +STUB("ujCdMRb+W+g", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEEixEm) +STUB("ujGbVNwbnsg", _ZNK7WebCore9DOMWindow18getMatchedCSSRulesEPNS_7ElementERKN3WTF6StringEb) +STUB("ujGjL77K+TM", _ZN7WebCore9HTMLNames26x_apple_editable_imageAttrE) +STUB("ujJhGfJ7Hl8", _ZN7WebCore21NetworkStorageSessionD2Ev) +STUB("ujL8cgs4+bE", _ZNK3sce2Np9CppWebApi7Matches2V118RequestMatchPlayer13getPlayerNameEv) +STUB("ujNrClE1MjA", _ZN3WTFltERKNS_7CStringES2_) +STUB("ujZrhbEvbqE", mono_aot_Sce_Vsh_Np_IdMapperunbox_trampolines) +STUB( + "ujaw4nlg-OU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "ujcD1NhqiD0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE8copyFromERKS9_) +STUB("ujeTlfJlFVU", __tsan_read2) +STUB("ujiJ7W6roc8", pTlsThreadContext) +STUB("ujpJL4lI1sQ", _ZN6WebKit12ChildProcess26messageSenderDestinationIDEv) +STUB("ujpcmXzvHls", __asan_exp_load2_noabort) STUB("ujtFwWJnv+E", sceNpManagerIntLoginVerifyDeviceCode) +STUB( + "ujtgdGZD0t4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEE7get_refEv) +STUB( + "ujzmg7Y2Dhs", + _ZN3sce2Np9CppWebApi14ConnectAccount2V216PartnerTokensApi26ParameterToGetPartnerToken10initializeEPNS1_6Common10LibContextEPKcb) +STUB("uk--E9fhsws", mono_aot_Microsoft_CSharpjit_got) +STUB("uk--yYLi-bI", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIiEmmEi) +STUB("uk-1vOGrxXg", _ZNSt9basic_iosIwSt11char_traitsIwEE4fillEw) +STUB( + "uk137jXZTd8", + _ZN9Inspector20CSSBackendDispatcherC2ERNS_17BackendDispatcherEPNS_27CSSBackendDispatcherHandlerE) +STUB("uk9X17a4Ecg", JVM_GetClassName) +STUB("ukANcY00vgs", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEED2Ev) STUB("ukBq62OPAYA", sceNpServiceChecker2IntIsSetServiceType) STUB("ukC55HsotJ4", sceNpTusTryAndSetVariable) STUB("ukEeOizCkIU", _sceNpManagerGetNpMemAllocator) +STUB("ukHVyQtxsxo", mono_install_compile_method) +STUB("ukKiCHfFJVQ", WKContextSetDiskCacheSpeculativeValidationEnabled) +STUB( + "ukMRZael2xs", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("ukNBBv9WDXA", + _ZN3sce7Toolkit2NP9Utilities6FutureISbIcSt11char_traitsIcENS1_15AppSTLAllocatorIcEEEEC1Ev) +STUB( + "ukOdkwtqQ1k", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB("ukPQnpBeU2k", SHA1_Final) STUB("ukPVyxONIH8", sceVencCoreUnmapTargetMemoryByPid) +STUB("ukQodCmg99s", _ZN3sce4Json5Value22setTypeMismatchHandlerEPFRKS1_NS0_9ValueTypeEPS2_S5_PvES6_) +STUB("ukScek6qnn8", mono_aot_Sce_Vsh_ErrorDialogUtilWrapperplt_end) +STUB( + "ukWWwFPMHEI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEED1Ev) +STUB("ukhG1vaBfZg", mono_metadata_get_constant_index) STUB("ukkAU3uqfqc", sceOpusSilkEncEncode) +STUB("uklp6XpnYLs", ulocdata_getLocaleSeparator_67) +STUB( + "ukp5X0crKPE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEE7add_refEv) STUB("ukqI0fEBLSs", sceVideoCoreRegistEventCallback) STUB("ukr6FBSrkJw", sceNpTusAddAndGetVariableVUser) +STUB( + "ukr6kbNljfk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE10setContextEPNS2_10LibContextE) +STUB( + "ukxAF09hktE", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "ukytsyDkqq4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEC1EPKS8_) STUB("ul-kdmwPExY", sceUsbStorageDialogGetResult) +STUB( + "ul-pKV4m3Gk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEaSERS8_) STUB("ul57hvm6mBc", sceKernelGetOpenPsIdForSystem) +STUB("ul5OAm3L+J4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEC1Ev) +STUB("ul8RI0nVEIQ", _ZNK3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer13getPlayerTypeEv) +STUB("ulBlTGJU5JU", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError12unsetMessageEv) +STUB("ulEvSNNPm7s", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V18SortModeEEppEv) +STUB( + "ulFPuTDRh3U", + _ZN9Inspector24RuntimeBackendDispatcher13releaseObjectElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "ulHXga6XhQY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEC1EPNS2_10LibContextE) +STUB("ulLP+f5h0rg", _ZNK3sce3Xml3Dom8Document13hasChildNodesENS1_6NodeIdE) +STUB("ulORziuDeWU", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container13unsetAgeLimitEv) STUB("ulPuWk7bYCU", sceNpAsmGenerateNpTitleToken) +STUB( + "ulRtMoG0ClI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEplEm) +STUB( + "ulTx15-LXFk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V125IdempotentVariableFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_18IdempotentVariableEEE) +STUB( + "ulWxdt6MgtA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEdeEv) +STUB( + "ulX-iif7-Ms", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEE5resetEPS6_) STUB("ulXqWMAxwRs", sceCesEucCnToUcs2) +STUB("ule245hXEZM", _ZN3sce7Toolkit2NP2V28Commerce7Request13GetCategoriesD2Ev) +STUB( + "ulixy4x0Inw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V214PSNError_errorEEEEEEaSERSA_) +STUB( + "ulj0jxgynVI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEmmEv) +STUB( + "uljckB7P73Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEE11get_deleterEv) +STUB( + "ullXabxk1Ks", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("ullbxCtCniE", getNumOfCommInfoList) +STUB("ullzNvYhJvk", _ZN3sce2Np9CppWebApi10Activities2V114UserActivities8ActivityD1Ev) +STUB( + "uloJ1oZ5Hng", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEmmEv) +STUB( + "uloi1p2ixYA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEC2Ev) +STUB("ultFJQj8-yY", _ZN7WebCore24CoordinatedGraphicsLayer21invalidateCoordinatorEv) +STUB( + "ulzwUCGBrZc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEEptEv) +STUB("um2Cu6EKiSo", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEED1Ev) +STUB( + "um8cLH9WITs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEaSERKS9_) +STUB("um8nmEK9a8Y", sendData) +STUB( + "umBy2KEx6vI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEEaSERKSA_) +STUB( + "umHTaq7nuVM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEC1EPS8_) +STUB("umIqupy8UU0", FT_Outline_Done_Internal) +STUB( + "umL4OeLN9yU", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("umLsULVr3Js", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEE5resetEPS5_) +STUB("umP81Dvxlk0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEEptEv) +STUB("umRPVA-p9k4", _ZN7WebCore18PluginInfoProviderD0Ev) +STUB( + "umS4VZb440k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE5clearEv) +STUB( + "umXymDVKK4k", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEplEm) +STUB( + "umahRxjo6+Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "umjRgQU8O8I", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEEcvbEv) +STUB( + "umjYKp8Bc6c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE5beginEv) +STUB( + "umm5m+mXiZs", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser9terminateEv) +STUB("umnzcAFHbII", _ZN7WebCore15SQLiteStatement9bindValueEiRKN3WTF7VariantIJDnNS1_6StringEdEEE) +STUB("umquPEvWklc", Java_java_lang_Class_registerNatives) +STUB("umvikw1If0c", _ZN7WebCore14SecurityOrigin30isLocalHostOrLoopbackIPAddressEN3WTF10StringViewE) +STUB("un-D0PsVeKI", _ZN7WebCore17DOMImplementation19createCSSStyleSheetERKN3WTF6StringES4_) +STUB( + "un0zp+ZyXTg", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitationsC1ERS5_) +STUB( + "un1SdiWKqFM", + _ZNK7WebCore21ContentSecurityPolicy20allowConnectToSourceERKN3WTF3URLENS0_24RedirectResponseReceivedE) +STUB( + "un3q34bUJ10", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "un9MlNjYzV0", + _ZN3sce2Np9CppWebApi6Common21DownStreamTransactionINS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("unOEuYwSpXU", _ZL15_delete_nothrow) +STUB("unY7ZQ4yRRE", do_check_tree) +STUB("ungeknobzMM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEED2Ev) +STUB("unk-IdKq+R8", WKPageGroupRemoveAllUserStyleSheets) +STUB( + "unlro8ukm7c", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEEplEm) +STUB( + "unlxRKxuo8Q", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEEaSERKSC_) +STUB("unmBOMX8j4g", _ZN3sce7Toolkit2NP2V28Commerce14ProductDetails29MAX_RATING_SYSTEM_DESCRIPTORSE) +STUB("untnO4d6OQs", _ZNK9Inspector24RemoteControllableTarget16targetIdentifierEv) STUB("uo+eoPzdQ-s", sceAudioOutStartSharePlay) +STUB( + "uo215cnZ4JU", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "uo35Bm-yp7s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("uo3JXMzZRLM", _ZN4Manx11getFontDataEPKcPPvPj) +STUB("uo7YshH1vnI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEED2Ev) +STUB( + "uoAvgH+Y19Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("uoC6WmyO4Dg", EVP_PKEY_size) +STUB("uoCC5iMYRRk", _ZN7WebCore12RenderObject17absoluteTextQuadsERKNS_11SimpleRangeEb) +STUB( + "uoDAuFhTsI8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEED1Ev) +STUB("uoDJDAlVmgs", _ZNK7WebCore21WheelEventDeltaFilter16filteredVelocityEv) STUB("uoFvgzwawAY", sceNpTusGetDataAVUserAsync) +STUB( + "uoGzCEleQS4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB("uoLEglsvThA", + _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse24matchStartTimestampIsSetEv) +STUB("uoSZQi-ImGo", _ZNK3WTF8JSONImpl10ObjectBase9getStringERKNS_6StringERS2_) +STUB( + "uoTwghbWiEU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE5eraseENS2_8IteratorIS6_EERS9_) STUB("uoUpLGNkygk", sceCommonDialogInitialize) +STUB("uoVZzqNKqGQ", Java_com_sony_bdjstack_security_aacs_AACSOnline_getVolumeID) +STUB("uodLYyUip20", fclose) STUB("uogRLNVSArA", sceHeadTrackerSearchCandidate) +STUB( + "uohk0jLEP20", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE7popBackEv) +STUB("uolst0E6XfM", mono_assembly_set_main) +STUB( + "uor-t1ddrqw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEaSERKS9_) +STUB( + "uot5Q1CZ16Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEC1EPNS2_10LibContextE) +STUB("uoxr3PU+4as", _ZN7WebCore17FrameLoaderClient29dispatchDidChangeMainDocumentEv) +STUB("up+A+h06FM8", _ZN7WebCore23createEmptyEditorClientEv) +STUB("up3p5G0j8Jk", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15NpSessionMemberEE7addressERKS3_) +STUB("up4R3KfldIo", _ZN9Inspector27InspectorFrontendDispatchernaEmPv) +STUB( + "up4fWFeqtW4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE4sizeEv) +STUB( + "up6hCyhBzdQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEppEi) STUB("up9Z19akYXM", sceSystemTtsRegisterCallback) +STUB("upA0jOZLS+0", ucurr_countCurrencies) +STUB( + "upAw452HXrU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEC2Ev) +STUB( + "upDj81RWW6M", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEeqERKS9_) +STUB("upE3vG41+o8", _ZN12video_parser7cVpUtil7GetTimeEv) STUB("upEB3XUvH8o", sceBluetoothHidUnregisterCallback) +STUB( + "upHLxHweB1U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEE11release_refEv) STUB("upKNCUpJ018", sceUpsrvUpdateCheckGetPackageInfo) +STUB( + "upLbknmc9RU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("upUWKHXcvi0", _ZN3WTF14FileSystemImpl19getFileCreationTimeERKNS_6StringE) +STUB( + "upX9E2aXlUY", + _ZN3sce2Np9CppWebApi14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBody8fromJsonERKNS_4Json5ValueE) +STUB("upXZ4sdogk8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEEC2Ev) +STUB( + "upa2v34E4gc", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("upeKra1FaQk", FTA_Support_Format_Pfr) +STUB( + "upg-U7BkMv0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEEC1ERSA_) +STUB( + "upgOo2JCiFo", + _ZN9Inspector20DOMBackendDispatcher21releaseBackendNodeIdsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("uphWwLZAuXA", _ZN3sce2np6Thread9EntryFuncEPv) +STUB( + "uphz8FfSKXE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEE11get_deleterEv) +STUB("upkD4O7byJU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEE5resetEPS6_) STUB("upoVrzMHFeE", scePthreadMutexTrylock) +STUB("uprMqgSaDGg", _ZN7WebCore11PageOverlay15setNeedsDisplayERKNS_7IntRectE) +STUB("uprUZZEWTqk", _ZNSt15basic_streambufIwSt11char_traitsIwEE5imbueERKSt6locale) +STUB( + "upuozOH-3u8", + _ZN3sce2Np9CppWebApi14SessionManager2V140ResponsePlayerSessionMemberPlayerFactory7destroyEPNS3_33ResponsePlayerSessionMemberPlayerE) +STUB("upwSZWmYwqE", _ZN10__cxxabiv116__enum_type_infoD1Ev) +STUB("upy4ftIyYvw", unorm_quickCheck_67) +STUB("upzdrzOYkS0", _ZN3sce2np10CancelableD1Ev) +STUB( + "uq+C1oo3Zto", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V111OfferStatusEE21intrusive_ptr_sub_refEPS7_) +STUB( + "uq-lAaIu4fA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("uq-mcVtogrk", mono_metadata_declsec_from_index) +STUB("uq14jeDMgHM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEE7add_refEv) STUB("uq1imV74tBs", sceKernelSaveApp) STUB("uq2Y5BFz0PE", sceFiberGetInfo) +STUB("uqHkyjI7MOk", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error9codeIsSetEv) STUB("uqJlNd9XIrA", sceKernelAddResource) +STUB( + "uqK0IM9-jhI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEppEv) +STUB("uqLGWOX7-YE", _ZNSt9basic_iosIwSt11char_traitsIwEE4initEPSt15basic_streambufIwS1_Eb) +STUB("uqO-mdcKdLY", _ZN7WebCore6Editor17insertOrderedListEv) +STUB("uqP02+Rw9UE", _ZN3sce7Toolkit2NP2V27NpUtils7Request22GetAccountIdByOnlineIdD2Ev) +STUB("uqTupLakPfA", _ZNK7WebCore19BlurFilterOperation12stdDeviationEv) +STUB( + "uqUxMm+2Xxo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEC1Ev) +STUB( + "uqcJqCihDcg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEdeEv) +STUB( + "uqcNqM-rNKs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEEC2EPS9_PNS2_10LibContextE) STUB("uqcPJLWL08M", sceNpPollAsync) +STUB("uqcmh9mV7sI", WKPageSetPaginationLineGridEnabled) +STUB( + "uqcsOGcJnTw", + _ZNK3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody6toJsonERNS_4Json5ValueEb) +STUB("uqepScAJpOA", monoeg_g_string_append_len) +STUB("uqi3lGMd6uc", + _ZN3sce2Np9CppWebApi13InGameCatalog2V518ErrorEntityFactory7destroyEPNS3_11ErrorEntityE) +STUB("uqqzkKLKVbk", __tsan_ignore_thread_end) +STUB("uqrbCvCIBMU", _ZN4IPMI4impl11SessionImpl27respondToAsyncMethodRequestEjiPKvm) +STUB( + "uqs2KtNPxSo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEC2EPKS8_) +STUB("uqtzFZTOtZs", mono_aot_Sce_Vsh_Np_ServiceCheckerplt) STUB("uquVH4-Du78", sceVideoOutClose) STUB("uqwYatrm6s8", sceDebugGetSyncObjectData) +STUB("ur-FVzZo-y0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEEC2EPS5_PNS2_10LibContextE) +STUB( + "ur-ygtdrYyI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEEC1ERKSA_) +STUB( + "ur2ybD3saew", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEEC1ERSA_) STUB("ur5SShyG0dk", sceNpWordFilterPollAsync) +STUB("urD45QcJ6Zg", _ZNK7WebCore12CSSMediaRule5mediaEv) +STUB("urFiZZY7T8A", _ZN7WebCore11DisplayList15DrawNativeImageD2Ev) +STUB("urKMKB5JbHw", upvec_setValue_67) +STUB( + "urLvfFiYoD0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEC2EPS6_PNS2_10LibContextE) +STUB( + "urM4hWhR1GQ", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB("urOpESTBZmo", _ZN3sce4Json6ObjectaSERKS1_) STUB("urUHkGGweA4", sceFiosFHWrite) STUB("urWaUWkEGZg", sceNetCtlUnregisterCallbackForLibIpcInt) +STUB("urWbmBbaVjM", WKURLResponseGetExpectedContentLength) +STUB( + "urYQY9Zk1hs", + _ZN3sce2Np9CppWebApi7Matches2V126RequestMatchResultsFactory7destroyEPNS3_19RequestMatchResultsE) +STUB( + "urd1WPf2EEs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEC2EPKS8_) +STUB("urh--IUYyvk", mono_aot_System_Runtime_Serializationunbox_trampoline_addresses) +STUB( + "urh4MEq9+FM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("urjBmaVzF3Q", jpeg_idct_12x6) +STUB("url0cRGWmJ4", mono_bitset_new) +STUB("urpDB9rHb4s", EVP_DecryptFinal_ex) +STUB("urrv9v-Ge6g", _LErf_one) STUB("uryBfUoKlVg", sceMbusAcquireControlWithState) +STUB( + "urz1KK4Je0U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEC1EPNS2_10LibContextE) +STUB("us+hb1r9BN4", + _ZN3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsers8setlimitEi) +STUB("us3bDnDzd70", _FAtan) +STUB( + "us3lWL7IcSo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE8copyFromERKS9_) +STUB("us4G15wBdCY", _ZN7WebCore12NodeIterator12previousNodeEv) STUB("us4sbukgU+w", sceAvSettingAddCallbacksForLnc) +STUB( + "us6maXrzfmI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEC2Ev) +STUB( + "usCsjERykS8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEEEC1ERSA_) +STUB( + "usH3l8ZyzKs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEaSERKS9_) STUB("usHTMoFoBTM", sceKernelEnableDmemAliasing) +STUB( + "usIxHOMOL8U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEC2ERKS7_) +STUB("usKbuvy2hQg", __cxa_call_unexpected) +STUB( + "usLjuF0ps-M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEC2EPS8_) +STUB("usOkP82BwtA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEED1Ev) +STUB("usQAkcXA5IE", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15NpSessionMemberEE7addressERS3_) +STUB("usQDRS-1HZ8", __fixxfti) +STUB( + "usRHzEHxDGs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEaSERKS9_) +STUB( + "usSN40TsolA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEC1EPNS2_10LibContextE) +STUB( + "usSuc3gM1nY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEEptEv) +STUB( + "usZ82wbQDpM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEEC1Ev) +STUB("usdM3+ti5Tw", SSL_get_session) +STUB("usfzZN9cTCA", _ZN7WebCore8Document19dispatchWindowEventERNS_5EventEPNS_11EventTargetE) +STUB( + "usmQXtRa9y8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEC1Ev) +STUB("ustthZNDMRM", _ZN7WebCore15ActiveDOMObjectC2ERNS_8DocumentE) +STUB( + "usvTU2XlFZw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("uswjVhjstSM", _ZN7WebCore6Editor10applyStyleEPNS_15StylePropertiesENS_10EditActionE) +STUB("ut+atyIgpQw", cairo_surface_get_content) +STUB("ut8I892aPW8", _ZN3WTF5MutexC2Ev) +STUB( + "ut8sm9eMDZU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("ut9wVImO9FE", utrans_getID_67) STUB("utHD2Ab-Ixo", sceHmdReprojectionFinalizeCapture) +STUB( + "utJZnEmKkKY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "utL6tclTXZQ", + _ZN3sce2Np9CppWebApi14SessionManager2V132FriendJoinedPlayerSessionFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_25FriendJoinedPlayerSessionEEE) +STUB("utLW7uXm3Ss", feenableexcept) +STUB("utN8Kzd07MY", mono_aot_ReactNative_Modules_Vshplt) +STUB("utPVsMMCv3w", _ZN3sce2np10JsonParserC1EP14SceNpAllocator) STUB("utPrVdxio-8", sceVideoOutGetOutputStatus) +STUB("utSFHQbm8+I", _ZN3sce7Toolkit2NP15AppSTLAllocatorI16SceNpTusVariableED1Ev) +STUB("utU3Of+7oW4", + _ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionNonPsnPlayer11setPlayerIdEPKc) +STUB( + "utXsVn9n1Jw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEEC1Ev) +STUB( + "utZ2bUQ28bM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("utbDQH3jIwk", _ZN3WTF13StringBuilder12appendNumberEm) +STUB( + "utc6dVHWA7w", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE7releaseEv) +STUB("utdV0Hz4lDw", _ZNK7WebCore15HTMLAreaElement11computeRectEPNS_12RenderObjectE) +STUB("utfVDoB8axs", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V15Owner11setOnlineIdERK13SceNpOnlineId) +STUB("utgDXc1BACM", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEEC2Ev) +STUB( + "utmLwdY7n0I", + _ZN3sce7Toolkit2NP8Sessions9Interface14getSessionDataEPKNS1_16NpSessionRequestEPNS1_9Utilities6FutureINS1_17MessageAttachmentEEEb) +STUB( + "utnW0VWxPKg", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetBoolean3Ev) +STUB("utpOGuRV3GE", Java_org_blurayx_s3d_ui_DirectDrawS3D_drawStereoscopicImages) +STUB("utqJMZsvM00", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEE5beginEv) +STUB("utsQd6B-s3E", mono_aot_Sce_Vsh_Accessorjit_code_end) +STUB("utvyzIg5aUY", ucal_getFieldDifference_67) +STUB( + "uu-kbUPeuD4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE5clearEv) +STUB( + "uu15chtvdeM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEE5resetEPS9_) +STUB( + "uu1y2TddB+c", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEneERKS9_) +STUB("uu2-Lf82Gro", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEE7get_refEv) +STUB( + "uu2XyVoeXH0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEE7add_refEv) +STUB("uu5+2E0u2hI", _ZNK3sce2Np9CppWebApi11Matchmaking2V110UserTicket11getTicketIdEv) STUB("uu94irFOGpA", sceNgs2VoiceControl) +STUB("uuA1kdv7Dt0", _ZN3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error9getErrorsEv) +STUB("uuF9vP1RSZ8", WKPageComputePagesForPrinting) +STUB("uuGLzGM+ngk", _ZN9Inspector22InspectorDebuggerAgent16willRunMicrotaskEv) +STUB("uuH2zXclw68", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEE7add_refEv) +STUB("uuJB4mOieYU", _ZN3JSC8Bindings13RuntimeObjectaSERKS1_) +STUB( + "uuL3r754mRk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "uuM7zfz7xeE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEE7add_refEv) +STUB( + "uuQvUlZvDVs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEneERKS7_) +STUB( + "uuR9eNdZp54", + _ZN3sce2Np9CppWebApi14IdentityMapper2V342PsnWebError_error_validationConstraintInfo8fromJsonERKNS_4Json5ValueE) +STUB("uuTo7JlfhX4", _ZN7WebCore9JSElementD1Ev) +STUB( + "uuWzXZnbs2k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEEmmEv) +STUB("uuga3RipCKQ", _ZNSt6locale7_Locimp7_AddfacEPNS_5facetEm) +STUB( + "uukWbYS6Bn4", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERe) +STUB("uup00IKisiI", mono_aot_Sce_Vsh_Accessor_Db_Notifyjit_code_end) +STUB( + "uurKSI3V0Nk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEEC2ERKSA_) +STUB( + "uuw1ZM6VEBQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("uuyEiBHghY4", _ZN3sce2np5NpEnv8GetNpEnvEPS1_) STUB("uv0Ae+jCeWY", sceHmd2ReprojectionSetAllowPositionalReprojection) +STUB( + "uv35bvjILf8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "uv7ObDkuzdU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("uv8tYCzpgvM", _ZNK7WebCore17HTMLOptionElement5labelEv) +STUB( + "uvEBlyPL0pU", + _ZN7WebCore12SettingsBase44setMediaContentTypesRequiringHardwareSupportERKN3WTF6VectorINS_11ContentTypeELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("uvF1t6x2E+E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V120PlayerJoinableStatusEEC1Ev) +STUB("uvI+-gAeubM", _ZN3sce7Toolkit2NP2V210Tournament16RegisteredRoster8deepCopyERKS4_) +STUB("uvRKg7NXD8g", rgctx_fetch_trampoline_mrgctx_94_p) STUB("uvT2iYBBnkY", sceKernelSync) +STUB("uvTyJVHNBEE", _ZThn16_N9Inspector20InspectorTargetAgent6resumeERN3WTF6StringERKS2_) STUB("uvVR70ZxFrQ", sceUserServiceLogin) +STUB( + "uvVj5kOIgqI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V16AvatarEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("uvYTUK5xYG8", _ZN3sce2np3ipc17ServiceIpmiClient10DisconnectEv) +STUB( + "uvZjbPBUB8M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEC2EPS8_) +STUB("uvc-7KNyrh0", mono_metadata_get_marshal_info) +STUB( + "uvc6RA9lkH4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEmmEi) +STUB("uvdBMpdVn1A", _ZThn24_N9Inspector18InspectorHeapAgent18willGarbageCollectEv) +STUB( + "uveElzbXFDA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEC2EPS8_) +STUB("uvkEVRu907A", GCC_except_table372) +STUB("uvkGGQN9d2A", _ZN3JSC12HeapAnalyzerD1Ev) +STUB( + "uvt4kIGB+tY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE7reserveEi) +STUB("uvtLlI3dT8o", WKBundleFrameGetJavaScriptWrapperForNodeForWorld) +STUB( + "uvtxF0SkWCQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("uvyQS9AIBoQ", _ZN3sce3web11WebViewBase31postMessageToNavigatorSceObjectEPKc) STUB("uvzX0EMoQwA", sceSdmaCopyWindowL2LNonBlocking) +STUB("uw9QT3dcY9c", _ZNK3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead11getTeamNameEv) +STUB( + "uwGiQtDAUoY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEeqERKS9_) +STUB("uwHcXkst1Dw", + _ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody18getUpdatedDateTimeEv) +STUB( + "uwJOPXAFHeM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEC1EPKS8_) +STUB("uwJp2vMxUIk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEdeEv) +STUB( + "uwKKxPLzHhI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEneERKS9_) +STUB("uwU-tDLhfl8", _ZN3sce7Toolkit2NP2V26Friend12Notification16FriendlistUpdateC1Ev) +STUB( + "uwaDkiieYIM", + _ZN3sce2Np9CppWebApi14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBody14setCustomData1EPKvm) +STUB("uwb9P8Z6SZE", + _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_11DOMRectListE) +STUB("uwhRVrBN01s", _ZN12video_parser17cVideoOperatorMgvC1EPKc) +STUB( + "uwhztB49KOQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEED1Ev) +STUB("uwiT+sz9G8Y", _ZNK3sce3Xml3Dom4Node12getNodeValueEv) +STUB("uwr58kSXeO8", mono_profiler_install_gc_finalize) +STUB("uwrYnv4VP9w", __asan_stack_free_10) +STUB( + "uwrsM5o3H6M", + _ZNK3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicket28hasxPsnAcceptPlatformNamePs5Ev) +STUB( + "uwtZoQ5yvnQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("uwwGTnAkErQ", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V110UpdateModeEEmmEv) +STUB( + "uwyCOYcAHKg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEED1Ev) +STUB( + "uwyS7Wrlx4g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEC1EPNS2_10LibContextE) +STUB( + "ux+e8nhxuP8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEC2Ev) +STUB("ux-0NhndeA0", _ZN7WebCore11MediaPlayer23loadWithNextMediaEngineEPKNS_18MediaPlayerFactoryE) +STUB( + "ux0X+NCGj2I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE5beginEv) +STUB( + "ux1S8CzaE5U", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEdeEv) STUB("ux9VESJUgh4", sceRemotePlayClientGetClientStatus) +STUB("uxBsn9tw54w", _ZN3sce2Np9CppWebApi7Matches2V112ErrorFactory7destroyEPNS3_5ErrorE) +STUB("uxF1YyU9K4U", _ZN7CoreIPC15ArgumentEncoder21encodeFixedLengthDataEPKhmj) +STUB("uxHzMOecPE0", mono_btls_x509_verify_param_get_mono_flags) STUB("uxLmJ141PmA", sceNpManagerIntGetUserIdByMAccountId) +STUB( + "uxTICg-qF8g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEEC1EPS9_PNS2_10LibContextE) STUB("uxYGQe+Cpl8", sceAppInstUtilAppGetAllAppSize) +STUB( + "uxdWJfjUo-w", + _ZN15AbstractStorage10YoutubeAPI17GetUploadLocationERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEmS7_S7_S7_S7_RS5_) +STUB( + "uxixkUViik0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("uxjsWK6rp7U", _ZN9Inspector17ScriptDebugServerC2ERN3JSC2VME) +STUB("uxkf2nt6L3U", + _ZN3sce2Np9CppWebApi14ConnectAccount2V219PartnerTokenFactory7destroyEPNS3_12PartnerTokenE) +STUB("uxlL+ZCoDMc", + _ZNK3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayer16customData1IsSetEv) +STUB("uxnGQ5fXMcM", _GLOBAL__sub_I_wiostrea.cpp) +STUB( + "uxnYEz-nfJY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEixEm) +STUB("uy0gUEmdYQQ", + _ZNK7WebCore37BasicComponentTransferFilterOperation14transformColorERNS_15FloatComponentsE) +STUB( + "uy47Uz5bQj0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEixEm) +STUB("uy71phtDkr0", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEEC1Ev) STUB("uyAWfkQyuls", sceDbgRemoveExceptionHandler) +STUB( + "uyBpPXo46xA", + _ZN3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionMemberPlayerC2EPNS1_6Common10LibContextE) +STUB("uyFH8gMpSzo", delegate_virtual_invoke_23) +STUB("uyGRGSrgX0s", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEEC2ERKS6_) +STUB("uyGl1QPqY7s", WKFramePolicyListenerGetTypeID) +STUB("uyNO0GnFhPw", _ZN3sce2np9WorkQueueD0Ev) +STUB( + "uyO5Blv8lBY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEEC1Ev) +STUB("uyWPJAXD42g", _ZNK9Inspector15ScriptCallFrame8isNativeEv) +STUB("uyg+XHR4HbQ", WKPageSetPageInjectedBundleClient) +STUB( + "uyhqFnXDd2o", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEEiRNS2_10LibContextEPT_m) +STUB("uyjjXGqy-Ek", glGetError) +STUB("uyk8HJ8-cr8", _ZN7WebCore11MathMLNames18mathmlNamespaceURIE) +STUB("uyng028lflU", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead19setCreatedTimestampEPKc) STUB("uyo-bsZsxII", sceNpManagerIntBindByJsonUserInfo) +STUB( + "uyshkozr+nQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "uyuiunK8+Wc", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi27ParameterToLeaveGameSession13isInitializedEv) +STUB( + "uyxeWkA-qbI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("uyzkHuDZk1U", _ZNK3sce7Toolkit2NP15CommunicationIdltERKS2_) +STUB( + "uz+MJbPpIEg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC2Ev) +STUB("uz3bWkbHZu4", tls_free) +STUB( + "uzAD7FE76ZI", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser15hasmemberFilterEv) +STUB("uzArIKaDDL0", X509_STORE_CTX_get_ex_data) +STUB( + "uzGnh2xjAuA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEE5beginEv) +STUB( + "uzIqgh+acq8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEdeEv) +STUB("uzLsJUMjvLY", mono_property_get_get_method) +STUB( + "uzVCt9gqp4c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEEC2Ev) +STUB("uzWWa4ZDvfI", Java_java_lang_reflect_Array_getShort) +STUB("uzXBOD-IILs", isobmf_decoder_get_decoder_tree) +STUB("uzXggTP3g74", _ZN3sce7Toolkit2NP9Utilities6FutureI16SceNpTusVariableE3getEv) +STUB( + "uzbD+NtkhkY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEmmEi) +STUB("uzcG7yXI5CE", _ZN3sce7Toolkit2NP2V212ActivityFeed15PlayedWithStory8deepCopyERKS4_) +STUB( + "uzcfTdyUMlo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "uzdFe0dVzmw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEC1EPNS2_10LibContextE) +STUB("uzgggMZ2EPg", _ZN7WebCore11WindowProxy12globalObjectERNS_15DOMWrapperWorldE) +STUB( + "uzgnlW3QnTo", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody13setMaxPlayersERKi) +STUB("uzjd6-P2U9o", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEEptEv) +STUB( + "uzjxQM+QNuM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE5emptyEv) +STUB("uzm8HX1wuCY", ServiceSupported) +STUB("uzwVD0EhcMs", ufieldpositer_close_67) STUB("v++knRdEXjU", sceBgftServiceIntPatchGoGetProgress) +STUB( + "v+3hpQ35lLk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEE3endEv) +STUB("v+95sEUB1I4", mono_aot_System_Xml_Serializationplt) +STUB( + "v+Ag6HOyXgE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEC2EPNS2_10LibContextE) +STUB("v+B1MpEp2-8", _ZN3sce7Toolkit2NP2V27Ranking12FriendsRanksC2Ev) +STUB("v+CNwmj-C08", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEEC2EPKS4_) STUB("v+CRSpiQyVM", sceDbgVideoOutAddOutputModeVr60Privilege) +STUB( + "v+ElqV7RLWQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEEcvbEv) +STUB("v+FLN9Ew6t4", _ZNK7WebCore11MediaPlayer29preferredAudioCharacteristicsEv) +STUB("v+NFsQzXp6s", _ZN3sce7Toolkit2NP2V27Session12SessionImage14IMAGE_MAX_SIZEE) +STUB( + "v+OjglkDH0A", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEppEi) +STUB( + "v+RLoHUqPGE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEE6resizeEj) +STUB("v+SAyXDkOCI", WKResourceCacheManagerGetCacheOrigins) +STUB("v+TCMUBUWog", WKContextSetInvalidMessageFunction) +STUB("v+UiSkMrLnA", JVM_DTraceGetVersion) +STUB( + "v+XLH2F7Y7k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEED2Ev) +STUB("v+Y-fOQaNQ8", _ZN3sce7Toolkit2NP2V26Trophy17TrophyPackSummary19MAX_NUMBER_TROPHIESE) +STUB("v+emMH26l38", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEEC1Ev) +STUB("v+gdG9IEq0U", uhash_equals_67) +STUB("v+jSLz4ul6w", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16TrophyPackTrophyEE5resetEv) +STUB( + "v+kHsxfDGDA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("v+mo-+xOSx8", _ZN9Inspector21DOMFrontendDispatcher16childNodeRemovedEii) +STUB( + "v+o2-jDM-NQ", + _ZN7WebCore4FontC2ERKNS_16FontPlatformDataENS0_6OriginENS0_12InterstitialENS0_10VisibilityENS0_19OrientationFallbackE) +STUB("v+pTEFOmZbs", _ZN3NTF15ThreadConditionD1Ev) +STUB("v+pwjz0nPFg", Java_java_awt_GnmFontMetrics_destroyFont) +STUB( + "v+tXF9ppYiQ", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("v+wt5RIz2pE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEC1ERKS7_) +STUB( + "v+zQvIym9iE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "v-1phlSHY-4", + _ZN7WebCore13JSDOMRectList6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_11DOMRectListENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "v-2GPUYYfuU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112GroupingTypeEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB("v-3pLv86Z94", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15NpSessionMemberEE10deallocateEPS3_m) +STUB("v-6NQpE4qI4", _ZN3JSC7Symbols38putSetIteratorInternalFieldPrivateNameE) +STUB("v-8p7HmlvNc", mono_aot_Sce_Vsh_Webbrowser_XdbWrapperunbox_trampolines_end) +STUB( + "v-9lo7pej7Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEC2EPS6_PFvS8_EPNS2_10LibContextE) STUB("v-AK1AxQhS0", sceSaveDataUnregisterEventCallback) +STUB( + "v-E9qIzjhX4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEEC2ERSA_) +STUB("v-GLQkXqXcY", mono_aot_Newtonsoft_Json_PlayStationunbox_trampolines_end) +STUB("v-IyqlDdj-4", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEED1Ev) +STUB("v-PBDOPDf5I", writeIS) +STUB("v-PIc7iEKIs", WKWebsiteDataStoreConfigurationSetNetworkCacheSpeculativeValidationEnabled) STUB("v-VB0EguQWg", sceDeci5GetStatus) +STUB( + "v-ZNtVIr-2w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEC2Ev) +STUB( + "v-e59KEpL1Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEC2EPKS8_) +STUB( + "v-gdf3tRhRM", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS5_INS7_9RecordApi30RecordLargeDataResponseHeadersEEEEEiRNS2_19UpStreamTransactionIT_T0_EE) +STUB( + "v-ixqAuUd0E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEE7get_refEv) +STUB("v-jo7pzhulg", Java_java_awt_GnmImage_nativeSetIndexColorModelBytePixels) +STUB("v-vwe8z-BgY", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_11EntitlementEEC1ERKS4_) +STUB("v-wr+lpl4I8", _ZNK3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors9pathIsSetEv) +STUB("v-y7BqCa6ys", _ZN7WebCore16ResourceResponseC1ERKNS_3URLERKN3WTF6StringExS7_) +STUB( + "v-z3mSAgnSo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEC2EPKS9_) +STUB( + "v0+Qw8jSf9s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE8copyFromERKS9_) +STUB( + "v0+kLtPeDrc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE6resizeEj) +STUB("v08CAVZPz-0", WKBundlePageHasComposition) +STUB("v08Z2LADJYM", _ZN7WebCore18TextureMapperLayer15setDebugVisualsEbRKNS_5ColorEfb) +STUB("v09ZcAhZzSc", _ZdaPvSt11align_val_t) +STUB("v09z7nEYyEM", ucal_setGregorianChange_67) +STUB("v0GdXLN1MyE", mono_get_byte_class) +STUB("v0GvL1SMt8M", _ZNK7WebCore22EmptyFrameLoaderClient14shouldFallBackERKNS_13ResourceErrorE) +STUB( + "v0IZH7Fe9yo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEC2Ev) +STUB("v0IwtX6l-7c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119ChildActivityStatusEEC2EPS6_) +STUB("v0JWbHa4tIE", _ZN12video_parser5vpcom17_DirectoryGetNextEPNS_8_vp_fileEPN3paf6DirEntE) +STUB( + "v0KnP9POD3g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEppEv) STUB("v0L5z77rkJ4", sceKernelGetFirstImageAddr) +STUB( + "v0O7iFLzc8c", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEEiRNS2_10LibContextEPT_m) +STUB( + "v0QBkpbijIc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEC2EPNS2_10LibContextE) +STUB("v0QQM-2OkC8", _ZN7WebCore26ActiveDOMCallbackMicrotaskD2Ev) +STUB( + "v0TyU4f3xhw", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V125NatConnectivityPropertiesC1EPNS1_6Common10LibContextE) +STUB("v0c4YLLJxIM", __ubsan_handle_type_mismatch_abort) +STUB( + "v0c4rWMxnbk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestPlayerStatisticEEEEEE7add_refEv) STUB("v0dVsqUmQaw", sceAvControlGetDetailHdcpStatus) STUB("v0phZwa4R5o", sceFontSetEffectWeight) +STUB( + "v0ppwpsz8+s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEEC2Ev) +STUB("v0q0kTm2wHo", u_terminateUChars) +STUB("v0uBZ16Lx-0", _ZN3JSC4Heap20writeBarrierSlowPathEPKNS_6JSCellE) +STUB( + "v11XG5-RNng", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEmmEi) +STUB("v13+vbzf0k8", _ZN3sce7Toolkit2NP2V212EventsClient10EventColorC1Ev) +STUB( + "v1OvG9mjgBg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEEC1Ev) +STUB( + "v1SALP2Agbk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V138SetMultiVariablesRequestBody_variables8setValueERKl) +STUB("v1Skcjggmtw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEaSERKS7_) STUB("v1TrX+3ZB10", sceSaveDataCheckBackupDataInternal) +STUB("v1UGaRTZSKU", _ZN3WTF14FileSystemImpl11getFileSizeEiRx) +STUB("v1WebHtIa24", _ZTISt7codecvtIDsc9_MbstatetE) +STUB( + "v1ZMNTTLmQk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "v1b+Nix8bwU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEE7add_refEv) +STUB( + "v1bjBNuZDjw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "v1e8a-uR1Ic", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEE5beginEv) +STUB( + "v1fbrOsKyqs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEC2Ev) +STUB( + "v1g5GaD6yyU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEC2EPS6_PNS2_10LibContextE) +STUB("v1i-IaTIYfs", __tsan_set_fiber_name) +STUB("v1kZlJPZo80", Java_com_sony_bdjstack_org_bluray_storage_PersistentDataAreaInfo_getMaxPsSize) +STUB("v1kay0us3J4", uloc_openKeywordList_67) +STUB("v1lCb6JzKZ0", WKBundleFrameHasVerticalScrollbar) STUB("v1lXY+9IGYg", sceSdmaCopyWindowL2L) +STUB("v1nFz9ePsQk", _ZN7WebCore16VisitedLinkStore23invalidateStylesForLinkEj) +STUB("v1ohFUoIOhM", __sanitizer_set_report_fd) +STUB( + "v1r5DCPXHKw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "v1wahzq0FSA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEE3getEv) +STUB( + "v1yFXQ8V0Ao", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEEaSERSA_) +STUB( + "v1z5wM78kIw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEC1EPS6_PNS2_10LibContextE) +STUB( + "v2-CklYc3pY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEneERKS9_) STUB("v20c4Nmpmn8", sceUpsrvUpdateCheckIsSystemBetaClosed) +STUB( + "v20wCjVHtkE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEcvbEv) +STUB( + "v23k3vPi+Q8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEC1EPS6_PNS2_10LibContextE) STUB("v243mvYg0Y0", sceHmdInternalSetPortStatus) +STUB("v24X+XNEZ10", _ZN7WebCore11DisplayList10DrawGlyphsD2Ev) +STUB("v25sGiJRwAA", mono_class_get_type) +STUB( + "v2AWPuzu50E", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEEptEv) +STUB("v2E64Horvks", usearch_setPattern_59) +STUB( + "v2FMYRKCe08", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("v2Fgc4zXSZA", mono_reflection_get_custom_attrs_data) +STUB( + "v2GD9K3u7LQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEcvbEv) +STUB("v2HF+4vnxGc", strtod.fpinan) +STUB( + "v2HOE1wGfNM", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToJoinPlayerSessionAsSpectator28hasxPsnAcceptPlatformNamePs5Ev) +STUB( + "v2MGARlKNuI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEC1EPS8_) +STUB("v2Nj6+EfYfo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEC1Ev) +STUB("v2Ov-F1PsKo", _ZN3JSC11VMInspector17codeBlockForFrameEPNS_9ExecStateEj) STUB("v2RYVGrJDkM", sceNpPartyGetMemberInfoA) +STUB( + "v2V+-GC0QnQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "v2XEe0GOqXM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE3endEv) +STUB( + "v2crxhXqKBg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEC1EPS8_) +STUB( + "v2dS6RrHRZg", + _ZN3sce7Toolkit2NP6Trophy9Interface18trophyRetrieveGameEPKNS1_25RetrieveTrophyGameRequestEPNS1_9Utilities6FutureINS1_14TrophyGameInfoEEEb) +STUB( + "v2gRdKqCD9Q", + _ZN3sce7Toolkit2NP9Interface17checkAvailabilityEPKNS1_24CheckAvailabilityRequestEPNS1_9Utilities6FutureINS1_23CheckAvailabilityResultEEEb) STUB("v2hFBiyS13w", sceHttp2WebSocketClose) +STUB("v2hk1-AZ06A", WKBundleFrameGetParentFrame) +STUB( + "v2i8PEkSO1U", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE10setContextEPNS2_10LibContextE) +STUB( + "v2olKD5aCoA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEE3getEv) STUB("v2pxETU7EMk", sceNpGriefReportAbortTransaction) +STUB( + "v2tK7VY31q8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("v2wWXxnErk4", mono_aot_Sce_Vsh_Messagesunbox_trampolines_end) +STUB("v2y883L5C-E", _ZN3sce3pss5orbis9framework11PsmArrayObj6LengthEv) +STUB("v2yJZLY0w1U", _ZN3sce2np10Cancelable7DestroyEv) +STUB("v2yM9OvxVKU", _ZN7WebCore16HTMLVideoElement21webkitEnterFullscreenEv) +STUB("v2yobc9NBQE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEE11release_refEv) +STUB("v3-wwBXRBW4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEEC1ERKS9_) +STUB( + "v32CWu6YpiU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEE6assignEPS7_PFvS9_EPNS2_10LibContextE) +STUB( + "v34+VNB57XA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEE11release_refEv) +STUB( + "v36B3totUbw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEC1Ev) +STUB( + "v39fBD2JKOY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEC1EPKS8_) +STUB("v3EVw6+3tLM", _ZN7bmalloc11IsoTLSEntrynaEmPv) +STUB( + "v3G6bumnEcg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEC2Ev) +STUB("v3KLxyFw6oU", _ZN3sce2Np9CppWebApi15Personalization2V112ErrorFactory7destroyEPNS3_5ErrorE) +STUB("v3KR8jUiYis", _ZNK7WebCore16HTMLMediaElement19isVisibleInViewportEv) STUB("v3LXmnWVWXk", sceKernelNotifyAppEvent) +STUB( + "v3NeGekzIEQ", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeaders6createEPNS1_6Common10LibContextERNS6_12IntrusivePtrIS5_EEl) +STUB("v3Qv1I3P7x4", glBindBufferRange) +STUB( + "v3VqOJsJ+CU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("v3hD6yHyoi0", WKMutableArrayCreate) +STUB( + "v3lOwOlGc9c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEEC1ERKSA_) STUB("v3vg2+cooYw", sceSaveDataSetSaveDataLibraryUser) +STUB("v4+gzuTkv6k", _ZN3sce16CommonDialogUtil6Client11updateStateEv) +STUB( + "v45KTmYikAA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEED1Ev) +STUB("v49DpIG8FDc", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session14InvitationDataEE12deepCopyFromERS7_) +STUB( + "v49Yzd7aQzc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "v4C7e-FAfQI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEEaSERKSA_) +STUB("v4PQgOCztxw", _ZTVN7WebCore31BasicColorMatrixFilterOperationE) +STUB( + "v4RqJ2IfJf8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEEC1EPKS8_) +STUB("v4T7KQ-iRWk", _ZN7WebCore20TransformationMatrix6blend4ERKS0_d) +STUB("v4URbcx9JPI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEEC2EPKS6_) STUB("v4V7yvdU9zo", sceKernelEnableDmemAliasing2) +STUB( + "v4WkN4Zcggg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEmmEv) +STUB("v4X5tkn3aEc", _ZN7WebCore15AffineTransformC1Edddddd) +STUB( + "v4aCxDuiTNE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE3endEv) +STUB( + "v4aoI4ilEQY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE6resizeEj) +STUB( + "v4b0mNyo57o", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEeqERKS9_) +STUB( + "v4chDAic9Do", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("v4eUw70y6uc", _ZN3sce2Np9CppWebApi14SessionManager2V114Representative12setAccountIdERKm) +STUB( + "v4iJJqmrDnE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEED1Ev) +STUB("v4jtbaYwet4", _ZN3sce7Toolkit2NP2V28Presence12Notification14PresenceUpdateC2ERKS5_) +STUB( + "v4nUMrhR+F8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V18PlatformEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("v4ovShGk46M", + _ZN7WebCore14ScrollableArea6scrollENS_15ScrollDirectionENS_17ScrollGranularityEf) +STUB( + "v4qydoqtYWA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEptEv) +STUB("v4r2uz0R1ys", _ZN3WTF20resetAccumulatedLogsEv) +STUB( + "v4tch35zXbk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEE11get_deleterEv) +STUB("v4uRS01Mvoc", _ZN3sce7Toolkit2NP3Sns9Interface10setAppIdFbERKm) +STUB("v5-8NZmvyrA", FcObjectSetBuild) +STUB("v55UY3gMHis", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112OwnerFactory7destroyEPNS3_5OwnerE) +STUB( + "v57e1kZUWA0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("v59-vWXcohM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEE4sizeEv) +STUB("v5Jv0hKmYiI", _ZN7WebCore7Pattern6createEON3WTF3RefINS_5ImageENS1_13DumbPtrTraitsIS3_EEEEbb) +STUB("v5MBboL9c34", mono_aot_Sce_Vsh_SystemLoggerWrapperunbox_trampoline_addresses) +STUB( + "v5OrkoIzFcU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEmmEi) +STUB( + "v5Pbz4LPKQU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE5clearEv) +STUB("v5V6QwgYPw4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEC2EPS8_) +STUB( + "v5XXLp+CXmg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEdeEv) +STUB("v5Z2LAKua28", _ZN3sce2np3ipc17ServiceIpmiClient21CreateRequestForAsyncEPiiPKvm) +STUB("v5la07-B+AE", _ZNK7WebCore10JSDocument7wrappedEv) +STUB( + "v5m8xFJtCMg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEC2Ev) +STUB( + "v5re8lY0FqE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEC1Ev) +STUB( + "v5ublTkG6c4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi22ParameterToSetDataInfo26unsetxPsnAtomicOperationIdEv) +STUB( + "v5vsa4U6LIw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "v5zptjHG1XU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEcvbEv) +STUB("v6+-XI7oasY", EVP_DecryptInit_ex) +STUB("v6+kwbqmq5Y", _ZN7WebCore11FontCascadeC2EONS_22FontCascadeDescriptionEff) +STUB("v66u7NRfT4Q", _ZN7CoreIPC15ArgumentEncoder6encodeEh) +STUB("v68DxeBPf7k", _ZNK3sce7Toolkit2NP9Utilities6FutureIbE17getAdditionalInfoEv) +STUB( + "v68sXmVGvD8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEixEm) +STUB("v6CSwwcnMO8", _ZN7WebCore13JSHTMLElementD2Ev) +STUB( + "v6DBchCNBo4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) STUB("v6EZ-YWRdMs", scePlayGoGetEta) +STUB("v6HHTabpyxk", il2cpp_array_new) +STUB("v6I4XZYurCw", _ZN9Inspector14ConsoleMessage20autogenerateMetadataEPN3JSC14JSGlobalObjectE) +STUB( + "v6IlznuIOTI", + _ZN3sce2Np9CppWebApi14SessionManager2V157PostGameSessionsSessionIdMemberPlayersResponseBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_25ResponseGameSessionPlayerEEEEEPNS9_INS3_50PostGameSessionsSessionIdMemberPlayersResponseBodyEEE) +STUB( + "v6KPVwntIlA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEE3endEv) STUB("v6LjiH858Sc", sceVorbisDecPcmTotal) STUB("v6M4txecCuo", sceNetEtherNtostr) STUB("v6OElL4DxCo", sceDbgRequireSystemSwVersion) +STUB( + "v6OJwqfxqzQ", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("v6R-xUDmU7s", _ZN3sce7Toolkit2NP2V26Friend7Request22DisplayBlockUserDialogD1Ev) +STUB( + "v6SwJa9pfJU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEE8copyFromERKS9_) +STUB( + "v6XB7GY1X0k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119CreateMatchResponseEEEEEE5resetEPS9_) +STUB("v6a1gYifQ0U", g_Audio3dVirtualSpeakerCount) +STUB( + "v6fwGeb4GRM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE8capacityEv) +STUB("v6rXYSx-WGA", _Strcollx) +STUB("v6vY3goqn2s", + _ZN3JSC21gregorianDateTimeToMSERNS_2VM9DateCacheERKN3WTF17GregorianDateTimeEdNS3_8TimeTypeE) +STUB("v7-fTYajrMs", udat_setBooleanAttribute_67) +STUB( + "v77cFiV54ic", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEE11release_refEv) +STUB("v77y2pf21w8", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_20ChallengeRecvDetailsEEC1ERKS4_) STUB("v7AAAMo0Lz4", sceSaveDataSetupSaveDataMemory) STUB("v7DYuX0G5TQ", sceLncUtilSetAppFocus) +STUB( + "v7FyrPDEGIk", + _ZN3JSC23JSModuleNamespaceObject25getOwnPropertySlotByIndexEPNS_8JSObjectEPNS_14JSGlobalObjectEjRNS_12PropertySlotE) STUB("v7IHQF5Lnqc", sceNpTrophy2SystemBuildTrophyIconUri) +STUB("v7K5ZMlOnQo", _ZN3WTF6String6numberEj) +STUB("v7Pd1fwDpIs", _ZN7WebCore15CSSFontFaceRule5styleEv) +STUB("v7R-hUNADd8", delegate_virtual_invoke_imt_25_p) +STUB("v7RJfl5wa6M", _ZN3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayerD2Ev) +STUB("v7S7LhP2OJc", wcstombs) +STUB("v7T3JNH73sU", + _ZN3JSC6RegExp5matchERNS_2VMERKN3WTF6StringEjRNS3_6VectorIiLm0ENS3_15CrashOnOverflowELm16EEE) +STUB( + "v7TKfTh8nbw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE10setContextEPNS2_10LibContextE) +STUB( + "v7WbzofulSY", + _ZN3sce7Toolkit2NP2V29Messaging37displayReceivedGameDataMessagesDialogERKNS3_7Request37DisplayReceivedGameDataMessagesDialogEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("v7XHt2HwUVI", _ZNSt14numeric_limitsIyE6digitsE) +STUB("v7XXpvTVcS4", _ZN7WebCore11DisplayList8DrawLineD0Ev) +STUB("v7ZseaEAgpc", dp_h) +STUB("v7a3UnyBmN4", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V122SetDataInfoRequestBodyD2Ev) +STUB( + "v7a8OkeJYfo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEaSERKS7_) +STUB("v7dRprTYrgU", + _ZN4IPMI6Server12EventHandler21onAsyncMethodDispatchEPNS_7SessionEjjPKNS_8DataInfoEj) +STUB( + "v7fgi5j+o0Y", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEE5beginEv) +STUB("v7nsHgKZUw0", _ZN7WebCore11DisplayList20EndTransparencyLayerC2Ev) +STUB("v7rWMZ9150M", WKRetain) +STUB( + "v7yVy5DuwQc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEC2EPS8_) STUB("v8+25H9WIX4", _sceNpManagerCreateMemoryFromPool) +STUB("v8-KyLvjWKw", glUniformMatrix4fv) +STUB("v80CmKYcdO0", moduleSegAddrKernelStart) STUB("v81dfnaMfUY", sceShellCoreUtilChangeToStaffModeForIDU) +STUB("v821dWbGiPE", mono_signbit_float) +STUB("v82lu5bVR5I", _ZN7WebCore9HTMLNames11onpasteAttrE) +STUB("v84qvisf2mM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEcvbEv) +STUB("v85YejRnPgM", u_strToUpper_59) +STUB("v87FwDl-wDw", uprv_compareInvEbcdic_67) +STUB("v89KlZlqitQ", uprv_getCharNameCharacters_67) +STUB( + "v8EfB-ChCzg", + _ZNK7WebCore12ChromeClient30unavailablePluginButtonClickedERNS_7ElementENS_20RenderEmbeddedObject26PluginUnavailabilityReasonE) +STUB( + "v8FB9GEqyKM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEC1Ev) +STUB("v8HD38Ke0Xs", ucol_getReorderCodes_67) +STUB("v8MrcmGcm9E", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE8copyFromERKS7_) STUB("v8P+9PRqg10", scePadVrControllerSetTriggerEffects) +STUB("v8P1X84ytFY", _ZNKSt7_MpunctIwE16do_decimal_pointEv) STUB("v8iOE+j8a5o", sceAudioOut2MasteringSetParam) +STUB( + "v8n724ORkcA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEeqERKS9_) +STUB( + "v8od0-MjdgE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE4sizeEv) +STUB( + "v8qfJT-ah6w", + _ZN3sce2Np9CppWebApi7Matches2V116JoinMatchRequest10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_11AddedPlayerEEEEE) +STUB("v8qmLz5bH+8", _ZN3sce2Np9CppWebApi6Common6VectorIdE10setContextEPNS2_10LibContextE) +STUB( + "v8r5lw59-Fw", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "v8yOLPWnqjg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEC1EPS9_) +STUB( + "v8zBCNv6rKc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEEaSERSA_) +STUB( + "v9+LDyGwQKg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V123MemberWithMultiPlatformEEEEEEcvbEv) +STUB("v9-zcVG7Nzo", mono_aot_appjit_code_end) +STUB( + "v94oPrITvWw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE5beginEv) +STUB("v95AEAzqm+0", putchar_unlocked) +STUB("v9CSqw6Ve0w", _ZN15AbstractStorage14StorageManager9TerminateEv) +STUB( + "v9DGOSzMPTo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEE3getEv) STUB("v9ERBDafV60", sceDbgIsDebuggerAttached) +STUB("v9Evh4f3TrY", + _ZNK3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer12natTypeIsSetEv) +STUB("v9HHsaa42qE", _ZNSt9_Num_base10is_boundedE) +STUB( + "v9IiuYGthKg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "v9LGd2O41Jo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEC2EPS8_) +STUB( + "v9MgjaAm8+I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "v9MpAzzytNE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEEaSERKSA_) +STUB("v9N11LJEe1M", _ZN7WebCore4FontD1Ev) +STUB("v9VWGQSj02A", _ZN7WebCorelsERN3WTF10TextStreamENS_8LineJoinE) +STUB("v9XNTmsmz+M", __absvti2) STUB("v9XTZHXoJyQ", sceCameraWaitForLukeReady) +STUB( + "v9Xg6wpHHyk", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToJoinPlayerSessionAsPlayer28setxPsnAcceptPlatformNamePs5ENS5_25XPsnAcceptPlatformNamePs5E) +STUB( + "v9ZnnzB7S7g", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error18setMissingElementsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_14MissingElementEEEEE) +STUB("v9df3q4i+uU", mono_aot_Sce_Vsh_Sl2_Sl2Deliverunbox_trampoline_addresses) +STUB("v9lOD9R-HzU", _ZThn32_N7WebCore14DocumentLoaderD0Ev) +STUB( + "v9mm+euMhsA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEppEv) +STUB("v9o4hfrXuSI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEC2Ev) +STUB( + "v9p97IYyaqg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEE8copyFromERKS9_) +STUB( + "v9pLlwZ7yhw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEC2ERS7_) +STUB("v9qcK4yrkZo", ucnvsel_selectForString_67) +STUB("v9rljAqSt0A", ucol_keyHashCode_67) +STUB( + "v9wzwj86T14", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEED1Ev) +STUB("v9yZld7wuo0", _ZNK3sce2Np9CppWebApi7Matches2V124RequestCompetitiveResult16teamResultsIsSetEv) +STUB( + "v9yy-Nup9jI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "v9zEpBDkcvI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEEC1ERKSA_) +STUB( + "vA-hoWD0078", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEC1EPKS8_) +STUB( + "vAG31RmAePo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE4sizeEv) +STUB("vAJCcVB-TLw", + _ZNK3sce2Np9CppWebApi14SessionManager2V131JoinedPlayerSessionWithPlatform14sessionIdIsSetEv) +STUB( + "vAK1gR6KeLw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEEC1Ev) +STUB( + "vAK6N0sS7JU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEEdeEv) +STUB("vANdRKdHPvk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEptEv) +STUB("vASXd7ETI+k", _ZN3sce2Np9CppWebApi14SessionManager2V15Error11unsetSourceEv) +STUB("vAY7v43Mpt0", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10setString5EPKc) +STUB( + "vAaTOUHp0tA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEED2Ev) +STUB("vAc9y8UQ31o", funlockfile) +STUB("vAhLG78zONs", mono_debug_symfile_free_location) +STUB("vAi26oOxOMw", WKPageBlurFocusedNode) +STUB( + "vAvwsPH4XfY", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V131BandwidthUpstreamMetricsFactory7destroyEPNS3_24BandwidthUpstreamMetricsE) +STUB( + "vAxeapZsLP0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEE5beginEv) STUB("vAy6j+Avg34", scePssMusicPlayerGetLoopTimePosition) +STUB("vAzb43sibZg", mono_code_manager_commit) +STUB( + "vB-f0eblIDU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE3endEv) +STUB("vB3LeG0NhPo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V117InvitableUserTypeEEptEv) +STUB("vB46oxXMExI", + _ZN3sce2Np9CppWebApi14SessionManager2V124RequestGameSessionPlayer16unsetCustomData1Ev) +STUB( + "vB4o36fieQ8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE4sizeEv) +STUB( + "vBAaedyi1Y4", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEEiRNS2_10LibContextEPT_m) STUB("vBG-4D6uycE", sceClHttpSetEpoll) +STUB("vBLfTFUvgyI", _ZN7WebCore21convertToIntegerClampImEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB( + "vBLnad-Wlb4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEC2Ev) +STUB( + "vBMD2aa269M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEE11get_deleterEv) +STUB("vBO2biHEyHY", _ZN3sce7Toolkit2NP15AppSTLAllocatorIcEneERKS3_) +STUB("vBP4ytNRXm0", __parityti2) +STUB("vBRr1KfUbAs", _ZN3sce7Toolkit2NP2V24Core13CallbackEventD2Ev) +STUB( + "vBTyBcdhvLM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEC1Ev) +STUB( + "vBXBZD587E8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE8copyFromERKS9_) +STUB("vBb+-gj8SRk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEaSERKS7_) +STUB("vBbgEh-BAII", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V18SortModeEE5emptyEv) +STUB( + "vBd2vGbLqVU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE5eraseENS2_8IteratorIS8_EERSB_) STUB("vBgcE5-2Cig", sceNpUniversalDataSystemIntRecordArraySetUInt64) +STUB("vBhjjg+rbsQ", _ZN7WebCore8Settings20setCoreMathMLEnabledEb) +STUB("vBoyDfg+EVA", _ZN7WebCore8IntPointC1ERKNS_10FloatPointE) +STUB( + "vBu3vxVzbDo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE21intrusive_ptr_sub_refEPS9_) +STUB("vBvYlXbJZPU", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12Notification14NetStateChangeEED2Ev) +STUB( + "vC+9bTkDipA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB( + "vC-HcCfxtEU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEE5resetEPS9_) STUB("vC-uSETCFUY", sceUserServiceSetAccountRemarks) +STUB( + "vC6SC+mPlp0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEC1EPNS2_10LibContextE) +STUB("vC9xr5PCWzo", _ZN7WebCore15JSFetchResponse9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB( + "vCFTfAoPeZo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEC1Ev) +STUB( + "vCFvSGjSvIc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEC1Ev) +STUB("vCGv7xDoaDI", _ZN7WebCore21JSCSSStyleDeclaration6s_infoE) +STUB("vCIFGeI6adI", + _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewe) +STUB( + "vCKMv3NfbMc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEC2EPS8_) +STUB("vCLVhOcdQMY", _ZN10__cxxabiv119__pointer_type_infoD2Ev) +STUB( + "vCMW32Y+EXo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEEcvbEv) +STUB("vCO3QXgLCCQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEC2ERKS7_) +STUB("vCQLavj-3CM", _Dtento) +STUB( + "vCQQfPWKxLA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEED2Ev) +STUB( + "vCTTs2hk2jY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEEmmEi) STUB("vCaW0fgVQmc", sceWebBrowserDialogGetResult) +STUB( + "vCi-PkJw1jU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEixEm) +STUB("vCjNSyErniU", _ZN3sce2Np9CppWebApi6Common13ConstIteratorImEC2EPm) +STUB("vCmNRJY0lcw", _ZN3sce7Toolkit2NP2V210Tournament22TeamVsTeamMatchDetailsD1Ev) +STUB( + "vCn-9B2GUQc", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData21getxPsnNpServiceLabelEv) +STUB( + "vCoNNi6eokA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEC2EPS8_) +STUB("vCp4+dq8hdc", fuse_remove_signal_handlers) +STUB("vCpt1jyL6C4", SSL_ASYNC_getSendBuffer) +STUB("vD07bzuy3RM", _ZN7WebCore6WidgetD2Ev) +STUB("vDAAek4FGdM", _ZN7WebCore11FontCascadeC1EONS_22FontCascadeDescriptionEff) +STUB("vDBxHvHMVH8", _ZN12video_parser18cMp4FFLHndlManager10_checkinitEv) +STUB( + "vDDzigoLjUA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEmmEv) +STUB("vDIkdw80j10", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getPSR) STUB("vDLMoJLde8I", scePadSetTiltCorrectionState) +STUB( + "vDLyy9TNfFw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEC1EPNS2_10LibContextE) +STUB("vDMSsKNrv38", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEC2Ev) +STUB( + "vDQQQFrxCIc", + _ZN7WebCore24DocumentMarkerController14markersInRangeERNS_5RangeEN3WTF9OptionSetINS_14DocumentMarker10MarkerTypeEEE) +STUB("vDRXJbuETl8", delegate_invoke_impl_target_4) +STUB( + "vDRnof1gOoU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEixEm) +STUB("vDSseQ4HPRc", _ZNK3WTF8JSONImpl9ArrayBase5beginEv) +STUB("vDVTsfukSuU", BN_bn2bin) +STUB( + "vDZCB62Fy2c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("vDceHrLeyfw", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking8TempRankEE19setCustomReturnCodeEi) +STUB( + "vDeYAAqVrww", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeOnlineId2AccountIdBatch9terminateEv) STUB("vDenqj6dzGk", sceVideoCoreAcquireDecoderResourceForBeWrapper) +STUB("vDhz8cimA9A", mono_shared_mempool_strdup) +STUB( + "vDjX1FLPIuQ", + _ZN3sce7Toolkit2NP2V23TUS16getUsersVariableERKNS3_7Request16GetUsersVariableEPNS2_4Core8ResponseINS3_12TusVariablesEEE) +STUB("vDjaM8UkOdU", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15CategoryInfoSubEEC1ERKS4_) +STUB( + "vDkW1TbBfhg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEdeEv) +STUB( + "vDl7VCJiKDM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V115CompetitionTypeEEEE5resetEPS8_) +STUB("vDnqZKeD914", _ZN7WebCore11MathMLNames16displaystyleAttrE) +STUB( + "vDrZ1cb7T2A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE5clearEv) +STUB("vDrj6vV4d60", WKFramePolicyListenerUseInNewProcessWithPolicies) +STUB("vDrrU4mHrM4", _Z17tryGetIpmiMessageiPvPmm) +STUB("vDt7lFXpdvc", _ZN7WebCore18PrewarmInformationdaEPv) +STUB("vDv8dP6VDik", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEED1Ev) +STUB( + "vDvAInmcT70", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEEC2ERKSA_) STUB("vDx7zD34kQg", sceMbusAddHandleByVidPid) +STUB("vE+WlomLSh4", ksem_timedwait) +STUB("vE4TO9FR1qg", u_memset_67) +STUB("vE61ounVJEI", JSSetOptions) +STUB("vE6aOzR19g4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEC2Ev) +STUB( + "vE7MGSnApX8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEE11release_refEv) +STUB("vEGSpl7lJQY", _ZN9Inspector26DatabaseFrontendDispatcherdlEPv) +STUB("vEJojV4SYvY", + _ZN3JSC2VM22ensureSamplingProfilerEON3WTF3RefINS1_9StopwatchENS1_13DumbPtrTraitsIS3_EEEE) +STUB("vEL3fySJ6Wk", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEEC1EPS4_) +STUB("vENhdeMSnzA", ulocimp_canonicalize) +STUB("vEP-r4QCjAM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEEC1EPKS6_) STUB("vER3cIMBHqI", sceCameraSetDefectivePixelCancellationInternal) +STUB("vEUpXrlBeUw", jpeg_get_small) +STUB("vEaqE-7IZYc", _Cnd_wait) +STUB( + "vEckgATwQ0w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEED2Ev) +STUB("vEdl5Er9THU", _ZNSt14numeric_limitsIDsE8digits10E) +STUB( + "vEjbtxDZ2nk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEEE10setContextEPNS2_10LibContextE) +STUB("vEnRh4J8MiE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V122CustomJoinableUserTypeEEmmEi) +STUB( + "vEo117HInFA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEC2Ev) +STUB( + "vEoUomGgFcA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEppEi) +STUB( + "vEr0V2niEOs", + _ZN7WebCore11FileMonitorC1ERKN3WTF6StringEONS1_3RefINS1_9WorkQueueENS1_13DumbPtrTraitsIS6_EEEEONS1_8FunctionIFvNS0_14FileChangeTypeEEEE) +STUB("vErUHVC+luw", _ZN12video_parser5vpcom6StringplERKS1_) +STUB("vEv-yQtu1Ms", _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody10getPlayersEv) +STUB("vEyzhjEFiHo", _ZN7WebCore8SVGNames8langAttrE) +STUB("vF1HFjetwSI", GCC_except_table77) +STUB( + "vF1wv8DqBI0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "vF2povsxSqM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEEptEv) +STUB( + "vF8HDGTpci8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEED2Ev) +STUB("vF9KJFlGvOY", + _ZN7WebCore14SchemeRegistry36registerAsCanDisplayOnlyIfCanRequestERKN3WTF6StringE) +STUB( + "vF9cveA36yI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "vFEp70VqkaU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE7popBackEv) +STUB("vFKxcH7PpWU", _ZN12video_parser5vpcom5_FreeEPv) +STUB( + "vFMRb8-gA7I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEED1Ev) +STUB( + "vFMrU19Hm3s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V114ResultsVersionEEEE7get_refEv) +STUB("vFPv9eN5bXw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEE3getEv) +STUB("vFSzbv76iMA", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi20ParameterToJoinMatchD1Ev) +STUB("vFVAvC5qdNw", _ZN7WebCore21BackForwardController8backItemEv) +STUB("vFWzXVdtsvk", _ZNK3WTF10StringView16GraphemeClusters8IteratorneERKS2_) +STUB( + "vFYalC3k0ZE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEC2EPS6_PNS2_10LibContextE) +STUB( + "vFabqIUtYQU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "vFfl8BOSUeg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEeqERKS9_) +STUB("vFhTf6l2lug", utext_openUnicodeString) +STUB("vFiLxQM2Frg", _ZN3JSC7Symbols24mapBucketNextPrivateNameE) +STUB( + "vFiyjdVAL68", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEiRNS2_10LibContextEPT_m) STUB("vFkdkzJgSpw", sceUsbStorageRegisterCallback) +STUB( + "vFl2mKXIQnk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB( + "vFmly8iXFas", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEC1EPS6_PNS2_10LibContextE) +STUB( + "vFnq5-Wze2k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE8copyFromERKS9_) +STUB("vFqcniq7yJw", + _ZN7WebCore26provideDeviceOrientationToEPNS_4PageEPNS_23DeviceOrientationClientE) +STUB("vFr8dUbMeH4", _ZNK15AbstractStorage17DailymotionFolder13GetCapabilityEv) +STUB( + "vFspcWd6iUY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEEdeEv) +STUB("vFuoBQf3cJY", _ZN7WebCore9ImageDataC1ERKNS_7IntSizeE) +STUB("vG+5EykVXWs", _ZN3JSC7Symbols31getByIdDirectPrivatePrivateNameE) +STUB( + "vG+neseeIqM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEppEv) +STUB( + "vG3KJe45rVo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEC2Ev) +STUB( + "vGAZLUyQ51w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEppEv) STUB("vGCjFnHz92U", scePssMusicPlayerSetLoopTimePosition) +STUB( + "vGKW6C7xPSY", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody13unsetString10Ev) +STUB("vGLd7FKUyw0", __kernel_tan) STUB("vGMYQNn0X3s", sceBgftServiceIntDownloadHideTask) +STUB("vGOMeCbW94Q", _ZN9Inspector19InspectorAuditAgent13unmuteConsoleEv) +STUB("vGSB0qGWsMw", _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse20unsetMatchStatisticsEv) +STUB( + "vGTfbZrqQr4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE3endEv) +STUB("vGUN049tJiM", _ZN3WTF8JSONImpl5ValueC1EPKc) +STUB( + "vGUgKX-ryME", + _ZN3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody12setSubmitterERKNS1_6Common12IntrusivePtrINS3_9SubmitterEEE) +STUB("vGX6Vm0RBBc", Java_sun_awt_image_PNGImageDecoder_filterRow) +STUB("vGZQk+0JO28", _ZN3sce7Toolkit2NP2V211SharedMedia7Request9GetVideosC1Ev) +STUB("vGdY7JJeyiE", _ZN7WebCore8SVGNames10feMergeTagE) +STUB( + "vGf4kCH2J-k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEE7add_refEv) +STUB( + "vGgBs+ZPewc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEixEm) +STUB("vGl844uSUPk", mono_aot_I18Njit_got) +STUB( + "vGmSzNZQIJI", + _ZN7WebCore7JSRange6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_5RangeENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "vHAKNmxiL-U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEppEv) +STUB("vHCGXG+KeDA", WKPageGetPaginationLineGridEnabled) +STUB("vHDtsqbebfs", _ZN7WebCore24CachedResourceHandleBaseaSERKS0_) +STUB("vHGVN2bUMfM", _ZN3sce7Toolkit2NP19AllocImplementationD2Ev) +STUB("vHM6zyeLxg8", _ZN3sce2Np9CppWebApi7Matches2V111AddedPlayer14unsetAccountIdEv) +STUB( + "vHS-UHj9gAQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEE11get_deleterEv) STUB("vHUJgCmE8is", sceAppInstUtilGetAppSlotInfoList) +STUB( + "vHWIOtgtx-I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("vHWd4Z92rhQ", _ZN7WebCore19JSDOMMatrixReadOnlyC2ERKS0_) STUB("vHX9guneRBY", sceAgcCbMemSemaphore) +STUB( + "vHXHX+dZxIE", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("vHaV+tsSVu4", _ZN3sce2np12StreamWriter9WriteDataEPNS0_6HandleEPKvmPm) +STUB( + "vHfkjVgW5c8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("vHgmeSUmYoM", ubrk_swap_67) +STUB( + "vHi+EGGtXdA", + _ZN3sce2Np9CppWebApi14SessionManager2V141GetUsersAccountIdGameSessionsResponseBody8fromJsonERKNS_4Json5ValueE) +STUB( + "vHoZpnHyjA4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEC2ERS7_) +STUB("vHp-0qQ-0OY", _ZNSt9_FacetptrISt7codecvtIDic9_MbstatetEE6_PsaveE) +STUB("vHqIXYINXfI", __cxx_global_var_init .35) +STUB( + "vHuLHltf+LM", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10getString1Ev) +STUB( + "vHx9GQp7-uA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEC2EPS6_PNS2_10LibContextE) +STUB("vHxEybs8Dq4", msetname) +STUB("vHy+a4gLBfs", _ZNSt6chrono12steady_clock9is_steadyE) +STUB("vI1LT9WaNzs", mono_threads_exit_gc_unsafe_region) +STUB( + "vI1WMtv8mxU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEE3endEv) +STUB("vI5VE4zcoUI", delegate_virtual_invoke_imt_m_2) +STUB("vI85k3GQcz8", _ZSt15future_categoryv) +STUB( + "vI9K7NGTObs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEE7add_refEv) +STUB( + "vI9Y1nbVVks", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEC2Ev) +STUB("vIJPARS8imE", _ZN10__cxxabiv117__pbase_type_infoD1Ev) +STUB("vIJU0OBb-0g", _ZN7WebCore21DiagnosticLoggingKeys11occurredKeyEv) +STUB("vILEMo+UUIE", _ZN3WTF13tryFastCallocEmm) +STUB("vINvzJOaqws", _ZN3sce2np4Time12GetUserClockEPS1_) +STUB( + "vITO0rPjJxM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE21intrusive_ptr_sub_refEPS9_) +STUB("vIZ550rGxVU", SSL_CTX_set_cert_store) +STUB( + "vIb2zd5J+E8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEaSERKS9_) +STUB( + "vIcFdyzHx-g", + _ZN3JSC7JSProxy17defineOwnPropertyEPNS_8JSObjectEPNS_14JSGlobalObjectENS_12PropertyNameERKNS_18PropertyDescriptorEb) +STUB("vIftfz9WmKw", mono_array_addr_with_size) +STUB("vIhR-n+3OKg", AnnotateIgnoreReadsEnd) STUB("vIsoJsLvvlM", sceConvertKeycodeGetVirtualKeycode) STUB("vIuen2qlRmo", _sceUltUlthreadOptParamInitialize) +STUB("vIvOZfMqpFM", delegate_virtual_invoke_imt_24) +STUB("vIzNvnAbsbI", _ZN7WebCore16FloatRoundedRectC2ERKNS_9FloatRectERKNS0_5RadiiE) +STUB("vJ2j5txZ2NA", _ZN3sce7Toolkit2NP2V27Session8SessionsD1Ev) +STUB("vJCNa4PHzQM", _ZN3sce2Np9CppWebApi6Common6VectorIjE5eraseENS2_13ConstIteratorIjEERS6_) +STUB("vJDHUZsipug", _ZNK9Inspector15ScriptCallStack2atEm) +STUB("vJDc5E6dDaQ", uenum_unext_59) STUB("vJGDnNh4I0g", sceNpJsonParse) +STUB("vJGnqFj6ygE", _ZN15AbstractStorage13YoutubeFolder5CloseEv) +STUB("vJKV4uJSIzA", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V15GroupEEppEi) +STUB("vJQgipCqAM4", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils5IdMapEE3setEv) +STUB( + "vJVbzaLJGCU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEC1EPKS8_) +STUB( + "vJXAVk0zdFc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEaSERS7_) STUB("vJhYrkgTYWY", sceBgftServiceIntGetNotificationEvent) +STUB("vJimiT9NVQw", _ZN3sce7Toolkit2NP2V29Messaging7Request28GetGameDataMessageAttachmentC1Ev) +STUB("vJj32msqh9o", mono_aot_SMDiagnosticsunwind_info) +STUB("vJpI6fyAHog", _ZN3sce2Np9CppWebApi14SessionManager2V116FromNonPsnMember13setPlayerNameEPKc) +STUB("vJqP99QzX4I", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEEixEm) +STUB("vJr7ZAgj2hw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEC2ERS7_) +STUB( + "vJrnbutABoE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEptEv) +STUB("vJusUgRbsfM", _ZN7WebCore11DisplayList22ApplyDeviceScaleFactorD2Ev) +STUB("vJvkDeuvomU", _ZTVN9Inspector20DOMBackendDispatcherE) +STUB( + "vJvwknN-6tU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEEdeEv) +STUB( + "vJyBRjgE+fo", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "vK1sRvIOx1w", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser17getnpServiceLabelEv) +STUB( + "vKBI-SgieQc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("vKBZ5aWv-BI", mmsize_is_not_initialized) +STUB( + "vKE2vwnumf0", + _ZThn32_N7WebCore14DocumentLoader16responseReceivedERNS_14CachedResourceERKNS_16ResourceResponseEON3WTF17CompletionHandlerIFvvEEE) +STUB("vKHE7wNteLg", _ZNK7WebCore16HTMLImageElement1xEv) +STUB("vKILPrCBeXQ", __asan_load4) +STUB( + "vKIzjL6E2hs", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetBoolean8Ev) +STUB("vKJsFe9RYIE", __cxx_global_var_init .8) STUB("vKL406KPJRs", sceFiosResume) +STUB("vKOOZbgDjr4", bemp2sys_psdecoder_init) +STUB("vKObO5LG+x8", _ZN3WTF10StringImpl23defaultWritingDirectionEPb) +STUB( + "vKaC4HP88c8", + _ZN7WebCore26MessagePortChannelRegistry22didPostMessageToRemoteEONS_23MessageWithMessagePortsERKNS_21MessagePortIdentifierE) STUB("vKbf07G7KPE", sceDbgKeyboardRead) +STUB("vKjxH-Yw7Ls", _ZN3WTF8JSONImpl5Value6createEb) +STUB( + "vKtXOb26WsY", + _ZN7WebCore13JSDOMRectList18getOwnPropertySlotEPN3JSC8JSObjectEPNS1_9ExecStateENS1_12PropertyNameERNS1_12PropertySlotE) +STUB("vKwrGP3+r1I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEEaSERKS9_) +STUB( + "vL+Hu+YaXAU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEEC1Ev) +STUB("vL0xXrIPKA4", _ZN3JSC8JSObject17preventExtensionsEPS0_PNS_14JSGlobalObjectE) +STUB( + "vL37Q-5XLYk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEEaSERKSA_) +STUB("vL7GroUb1q8", mono_table_info_get_rows) +STUB("vLBmK3-kGnM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V119SubtaskAvailabilityEEC2EPKS6_) +STUB( + "vLDu5m0n9CQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEE7get_refEv) +STUB( + "vLEkp4ZlWLY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE6resizeEj) +STUB("vLIRBGF+bRs", _ZN7WebCore9HTMLNames9oncutAttrE) +STUB( + "vLL1WvtCXe4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEED1Ev) +STUB("vLLuuDx92lU", _ZN3JSC11VMInspector13dumpCallFrameEPNS_2VMEPNS_9CallFrameEj) +STUB("vLOl08NCj+0", _ZN7WebCore19ResourceRequestBase17setCachePartitionERKN3WTF6StringE) +STUB( + "vLPYq273Kz8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEC2ERS7_) +STUB( + "vLQH+hbPmGo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V112OnlineStatusEEEEC1Ev) +STUB( + "vLWG91tcjas", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE5beginEv) +STUB("vLXAXGgzAmQ", udatpg_setAppendItemFormat_67) +STUB( + "vLXwPWfKwJo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEC1EPS8_) +STUB( + "vLYxOZEtW5k", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEE3getEv) +STUB( + "vLegFQwyGE4", + _ZN7WebCore24CoordinatedGraphicsLayer11setChildrenERKN3WTF6VectorIPNS_13GraphicsLayerELm0ENS1_15CrashOnOverflowELm16EEE) +STUB("vLii6YzmaaA", WKFrameHandleGetTypeID) +STUB("vLl0C9Oq5Ls", + _ZN7WebCore16ScriptController24jsObjectForPluginElementEPNS_17HTMLPlugInElementE) +STUB( + "vLpNFjC9lc4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) STUB("vLrBL8DQiz8", sceAgcDcbSetPredicationDisableGetSize) +STUB( + "vLxOOIaPLJ4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi36ParameterToSetVariableWithConditionsC2Ev) +STUB( + "vM1-VNjx0gs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEneERKS9_) +STUB("vM2cLeGhLjU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEE5beginEv) +STUB( + "vM3020c14tU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEdeEv) +STUB( + "vM3iN5Xfsuc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE8sendDataEPKvm) +STUB( + "vM9eguaL-54", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE7popBackEv) +STUB( + "vM9ru2KdSvo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEmmEv) +STUB( + "vMCgehfELYg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEEneERKS9_) +STUB( + "vMDHvkF2jss", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEE3endEv) +STUB("vMJl5YoKjls", + _ZN7WebCore11DOMRectListC1ERKN3WTF6VectorINS_9FloatQuadELm0ENS1_15CrashOnOverflowELm16EEE) STUB("vMLWuJckGv0", sceVideoOutSysGetMonitorInfo_) +STUB( + "vMLyb9yvAyQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("vMMG0bhp7Do", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEppEi) +STUB("vMMNm3F9Jpc", mono_aot_Sce_Vsh_Gls_NativeCallplt_end) +STUB("vMNk9+aNPXw", _ZN7WebCore9HTMLNames17webkitgrammarAttrE) +STUB("vMPn2lAhggg", ECDSA_size) STUB("vMQJRUKsf3U", sceLoginDialogTerminate) +STUB("vMQPol5T6DY", WKRenderLayerGetFrameContentsLayer) +STUB("vMQuL4mBxU0", _ZNK7WebCore14DocumentLoader11frameLoaderEv) +STUB( + "vMS+2SqOVWs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "vMTpRygKTrI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("vMTyjS2g3z0", _searchCommInfoTail) +STUB("vMbLSFR3QYs", _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE3endEv) +STUB( + "vMevvbTO+So", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEED2Ev) +STUB( + "vMkE3BaO7S0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("vMsePZhPOLY", _ZN7bmalloc11IsoTLSEntrynaEm) +STUB( + "vMv57E4fe9Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEC1EPS8_) +STUB( + "vMz0h1KyB0I", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEEeqERKS7_) +STUB("vN+uSr3WpOI", WKPreferencesGetAllowsPictureInPictureMediaPlayback) +STUB( + "vN6v40TG1Ow", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE8capacityEv) STUB("vN9sTP63WT8", sceNpFriendListDialogOpenA) +STUB("vNAY9KJ8gqE", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_23NpSessionInvitationInfoEED1Ev) +STUB("vNFWwy493LY", _ZN3WTF11TimingScope11scopeDidEndEv) +STUB("vNIVuapMDtc", _ULx86_64_Ifind_dynamic_proc_info) +STUB("vNJUvWIQp1M", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEEC1ERS7_) +STUB( + "vNKDC3oFOEo", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations26hasinvitationInvalidFilterEv) STUB("vNMe+-hRAFU", sceBgftServiceIntUploadUnregisterTask) +STUB( + "vNNAZQ6Ihpc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEE5emptyEv) +STUB("vNNCUDOFpFY", WKBundleGarbageCollectJavaScriptObjects) +STUB( + "vNPcZCS-hkA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEC2Ev) +STUB( + "vNQ4pvdhseY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "vNS+yIXktYg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEeqERKS9_) +STUB("vNcLSBfLtbk", + _ZN3sce3pss5orbis9framework12PsmFramework20RegisterInternalCallEPKNS2_12PsmCallEntryE) +STUB("vNd7hsJfOWo", _ZN3sce7Toolkit2NP2V211SharedMedia7Request14GetScreenshotsD2Ev) +STUB("vNe1w4diLCs", __tls_get_addr) +STUB("vNjX4ranwes", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119ChildActivityStatusEE5beginEv) +STUB( + "vNu26-r1Lg4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEE11release_refEv) STUB("vO4B-42ef-k", sceHttpSetRequestStatusCallback) +STUB( + "vO9tRdyPrxQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEEptEv) +STUB("vOA3a52SjWo", _ZN3sce7Toolkit2NP15AppSTLAllocatorIcEC1ERKS3_) +STUB("vOCnHYUBWcc", _Z35SoundPlayer_MoveSurroundPanDistanceifd) +STUB( + "vOF8urhKFHo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("vOFs-wz9T-k", _ZN7WebCore10JSDocument14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB( + "vOHLBs6GX4Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEEptEv) +STUB("vOJUjgpFs94", mono_aot_Sce_Vsh_Np_IdMapperjit_got) +STUB("vOMJJNpLyZs", _ZN3sce2Np9CppWebApi6Common6VectorINS2_6StringEED2Ev) +STUB( + "vOMOmmsuNs4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEptEv) +STUB("vOMkFwCg4S4", YGConfigGetDefault) +STUB("vOPZesKARBo", _ZN3sce7Toolkit2NP2V28Commerce8CategoryC1Ev) +STUB("vOQXrlD31B0", _ZN3sce7Toolkit2NP2V211SharedMedia7Request9GetVideos17DEFAULT_PAGE_SIZEE) +STUB("vOTH9Iec7Yc", _ZN3sce4Json9RootParamD1Ev) +STUB("vOTI8dBuMsY", il2cpp_unity_liveness_calculation_from_root) +STUB("vOhW2Wdz0t4", FT_Get_SubGlyph_Info) STUB("vOhqz-IMiW4", sceSystemServiceTurnOffScreenSaver) +STUB( + "vOjbi6jzArs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEptEv) +STUB("vOjhV4Hkm3M", __asan_exp_load4_noabort) +STUB("vOnN7+ssLAU", + _ZN7WebCore11DisplayList14DrawingContext17replayDisplayListERNS_15GraphicsContextE) +STUB("vOnuOBh0qBM", mono_aot_Sce_Vsh_GriefReportStorageplt_end) +STUB( + "vOqrV7p7WsQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEEdeEv) +STUB("vOwhzBrEV4E", _ZN7WebCore15clearBackingSetERN3JSC14JSGlobalObjectERNS0_8JSObjectE) +STUB( + "vP2k7-okFG4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEppEi) +STUB("vP4A5J4SjVY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ResponseCooperativeResultEEC2Ev) +STUB("vP5WyiSNRHQ", uregion_areEqual_67) +STUB( + "vP6B+ssxePA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEEeqERKS9_) +STUB( + "vP8CjHl8Wgw", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRateC1EPNS1_6Common10LibContextE) +STUB( + "vP8DOUhwhTs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("vP9N8rOMbJQ", WKPageGroupAddUserScript) +STUB("vPDhEhu48p4", _ZN3sce7Toolkit2NP2V23TUS19FriendsDataStatusesaSERKS4_) STUB("vPHIPjHJjyo", sceDataTransferRequestGetAppInfoPS4) +STUB("vPN5TrcOIY4", _ZNK7WebCore11MediaPlayer11initialTimeEv) +STUB("vPNPrrU6PP8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEdeEv) STUB("vPP6vKHY8Tg", _sceSdmaNop) +STUB( + "vPYn+1XWhQE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEeqERKS9_) +STUB( + "vPhuUqRWid0", + _ZN7WebCore13PathUtilities26pathWithShrinkWrappedRectsERKN3WTF6VectorINS_9FloatRectELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEEf) STUB("vPi3gSzw79M", sceCamera2GetSharpness) +STUB("vPju3W13byw", _ZN3sce2np9WorkQueue18WaitForPendingItemEPPNS0_8WorkItemEPb) +STUB("vPplCGG5Oac", ucasemap_close_67) +STUB("vPx5smu5Wio", _ZN7WebCore9HTMLNames15ondragenterAttrE) STUB("vPxKoc5MyxQ", sceShellCoreUtilGetDeviceIndexBehaviorWithTimeout) STUB("vPzJldDSxXc", sceRudpNetReceived) +STUB("vPzTqyJy2cE", _ZN15AbstractStorage12LocalServiceD2Ev) +STUB("vQ2mg8-XwuM", _ZN7WebCore9HTMLNames26onwebkitanimationstartAttrE) +STUB( + "vQBgtFYNqlM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEED1Ev) +STUB("vQE6-ztj3Ks", _ZN7WebCore20TransformationMatrix4skewEdd) +STUB("vQGVOZmLEXE", _ZN7bmalloc3api16disableScavengerEv) +STUB( + "vQLBThlpkBc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEEaSERKS9_) +STUB( + "vQMltY9T5+k", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEptEv) +STUB("vQV-tQgElC4", uset_size_67) +STUB( + "vQVoxu3+xvA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEED2Ev) +STUB( + "vQWUK3lkOvg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEEcvbEv) +STUB( + "vQZXbnctY+0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEixEm) +STUB("vQah03QdJqE", _ZNK7WebCore22SkewTransformOperation10isIdentityEv) +STUB("vQgTn573K8A", _ZNK7WebCore15HTMLFormElement6methodEv) +STUB("vQhIcDhwZvg", _ZN3sce7Toolkit2NP2V28Presence7Request14DeletePresenceD1Ev) +STUB("vQhkSQfb87Y", _ZN7WebCore11PageOverlayD0Ev) +STUB("vQlEe5xlWVU", _ZNK7WebCore9FrameView28isEnclosedInCompositingLayerEv) STUB("vQm4fDEsWi8", pthread_attr_getstack) +STUB("vQnjoBqpO1w", _ZN7WebCore20DictationAlternativeC2Ev) +STUB("vQpEDCAr8ss", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIjEEEC2ERKS6_) +STUB( + "vQsf8LJeE+0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEE11get_deleterEv) +STUB("vQwAX-xV-Dg", _ZNK3WTF6String31convertToLowercaseWithoutLocaleEv) +STUB( + "vQzQFaYfxtg", + _ZN9Inspector23TargetBackendDispatcher6createERNS_17BackendDispatcherEPNS_30TargetBackendDispatcherHandlerE) +STUB("vR3+bfUo-Qo", _ZN3sce4Json6Parser10parseValueERNS0_5ValueERNS0_11InputStreamEPS2_) +STUB("vRB6SfZc+10", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEED1Ev) +STUB("vRCQeHxYCec", + _ZN3sce2Np9CppWebApi14SessionManager2V125PlayerSessionNonPsnPlayer13setPlayerNameEPKc) +STUB( + "vRCiNj84CnU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEppEv) +STUB( + "vRN75ngp0ww", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEC1EPS8_) +STUB("vRP9yTeN0YI", mono_signature_vararg_start) +STUB("vRW6XDP-8J4", u_strchr32) +STUB("vRYgaGOXZ4w", _ZN3sce7Toolkit2NP2V211SharedMedia5VideoC1Ev) +STUB("vRfefAiKSgs", __cxx_global_var_init .6) STUB("vRgpAhKJJ+M", sceUserServiceSetGlsInitSpectating) +STUB( + "vRkef+KyE4A", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE4sizeEv) STUB("vRoArM9zaIk", sceAgcSetUcRegIndirectPatchAddRegisters) +STUB( + "vRoX+L7CgSI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEED1Ev) +STUB( + "vRpYko5WTm4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEC1Ev) +STUB( + "vRrYDiBuvcI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEE21intrusive_ptr_sub_refEPS7_) STUB("vRxf4d0ulPs", sceFontRenderSurfaceSetScissor) +STUB("vRztlQrM5e8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEC2Ev) +STUB("vS-RnoD1BSY", __sys_opmc_set_ctl) STUB("vS-g6oXTuW8", sceApplicationGetCanvasHandleByPid) +STUB( + "vS0DGdQQ4pQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEC2EPS6_PNS2_10LibContextE) STUB("vS20kteXHdw", sceCamera2SetAutoWhiteBalance) +STUB("vSCc5IpzQ-w", glVertexAttrib1f) +STUB( + "vSEy9gd+gFs", + _ZN3sce2Np9CppWebApi14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyD1Ev) +STUB( + "vSFi66yk+V4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEC2EPS8_) +STUB( + "vSJJmP6lpMk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEdeEv) STUB("vSMAm3cxYTY", sceKernelMprotect) +STUB( + "vSO+cSIBKBc", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Runtime15PropertyPreview7SubtypeEEEN3WTF8OptionalIT_EERKNS6_6StringE) +STUB("vSVDGr+kcIo", recvtbl_update) +STUB("vSbTJ-uoECY", u_strstr_67) +STUB("vSfTzLW9fCw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEC2ERS7_) +STUB("vSgOFqqXwo8", _ZN25MmsFileUpdaterFsOperation11undoTmpFileEPKc) +STUB("vShVt3gtn98", WKBundleFramePauseAnimationOnElementWithId) +STUB( + "vShbnvHoBZQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEEdeEv) +STUB( + "vSinOb77H+k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEmmEi) STUB("vSjGf4cBpmU", sceBgftServiceDownloadGetProgress) +STUB("vSjaC2630xg", _ZN3sce7Toolkit2NP2V28Commerce8Category17CATEGORY_NAME_LENE) +STUB("vSqCOi+yAqo", _ZN13MsvMetaEditor13updateStcoBoxEi) +STUB("vSuMO1cYzgs", delegate_virtual_invoke_imt_20_p) +STUB( + "vT+-9HqXj4U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB("vT+IwqoJ5Bw", _ZN7WebCore9HTMLNames10hspaceAttrE) STUB("vT2xmTf1RHU", sceCustomMusicAudioOutGetMuted) +STUB( + "vT5oiXX2aHA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V317PsnWebError_errorEEEEEEptEv) +STUB( + "vT77yoS0azc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEC2EPS6_PFvS8_EPNS2_10LibContextE) STUB("vT9xhqPO6+0", sceNpLookupCreateTitleCtxA) +STUB( + "vTIBVeYng90", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEE11get_deleterEv) +STUB("vTKW3REJYNA", _ZN3JSC7Options23enableRestrictedOptionsEb) +STUB( + "vTKb-05Oh0M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "vTMJ4lvT5fk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("vTOCaA3cMUA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEC2ERKS7_) +STUB( + "vTVWjoFDvL0", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26getMultiDataStatusesBySlotEiRKNS4_37ParameterToGetMultiDataStatusesBySlotERNS1_6Common11TransactionINS8_12IntrusivePtrINS3_32GetMultiDataStatusesResponseBodyEEENSA_INS8_18ResponseHeaderBaseEEEEE) +STUB("vTZ34rw1sfg", FT_GlyphLoader_Done) STUB("vTbQUay9w+k", sceDataTransferTargetRequestGetDeviceInfo) +STUB( + "vTbRF6O-bAQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEppEi) +STUB("vTcRCX6SQVo", WKWebsiteDataStoreSetAdditionalRootCA) +STUB( + "vTmt757JhBo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEE7get_refEv) +STUB( + "vTsSoV2qysw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEEC1ERKSA_) +STUB( + "vTvTwYtpEeg", + _ZN7WebCore21UserContentController13addUserScriptERNS_15DOMWrapperWorldESt10unique_ptrINS_10UserScriptESt14default_deleteIS4_EE) +STUB( + "vTvZQbjw88U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEC2EPS8_) STUB("vU+FqrH+pEY", sceDbgPlayGoSnapshot) STUB("vU7TQ62pItw", sceNgs2SystemGetInfo) +STUB("vU9svJtEnWc", _ZSt4setwi) +STUB( + "vUGaALcX4AA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE5startEPNS2_10LibContextE) +STUB("vUHYThFDlc0", jvmciHotSpotVMLongConstants) +STUB( + "vUMG-1dA6UI", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V136MatchCompletionRatePropertiesFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_35MatchCompletionRateCompletedMetricsEEEiNS8_INS3_38MatchCompletionRateDisconnectedMetricsEEENS8_INS3_30MatchCompletionRateQuitMetricsEEEPNS8_INS3_29MatchCompletionRatePropertiesEEE) STUB("vUMkWXQff3w", sceSharePlayGetCurrentInfo) +STUB( + "vUPPOcmS4tI", + _ZNK3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi27ParameterToGetPublicProfile16getincludeFieldsEv) +STUB("vURZNQ8+cP0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEptEv) +STUB("vUbvfpTOyZw", _ZN7WebCore9FrameView20resetTrackedRepaintsEv) +STUB( + "vUdFc22NMw0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEneERKS9_) +STUB("vUdp217ffmM", _ZN3NTF21ResourceRequestLoggerC2Ev) +STUB( + "vUj6dMqsoYM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEEC1Ev) +STUB("vUtyZPXF0X0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce8ProductsEE5resetEv) +STUB( + "vUuAzw0Q6Is", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEE11get_deleterEv) +STUB("vUwH0XCej9k", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35Error6toJsonERNS_4Json5ValueEb) +STUB("vUx-PsH0wAA", _ZNK7WebCore16DOMGuardedObject12globalObjectEv) +STUB("vUz7RsxUmHI", WKPreferencesGetAllowsAirPlayForMediaPlayback) +STUB( + "vV4aCssYOX8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEplEm) +STUB( + "vV5cH-CLWA8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEE3getEv) STUB("vV8MnMpofkE", sceAppInstUtilDeleteExternalPs5All) +STUB("vVBwwOmK0I0", _ZN7WebCore16MIMETypeRegistry22systemPreviewMIMETypesEv) +STUB("vVEIpOou3ek", __asan_get_report_bp) +STUB( + "vVH1QnDN-sA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE5beginEv) +STUB( + "vVJikAkV16Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEC2ERKS7_) +STUB("vVMzuNNoGeA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE3endEv) +STUB( + "vVZjA1mVz64", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEE11get_deleterEv) +STUB("vVagP7XKZgo", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEED1Ev) +STUB( + "vVdnsJN9DzQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEE11get_deleterEv) +STUB("vVeoeg4g9kk", rot3) +STUB("vVf8Bc9PMu4", _ZN3sce7Toolkit2NP2V24Auth8AuthCodeaSERKS4_) STUB("vVk1SOjVN48", sceBgftServiceIntDownloadQueryTask) +STUB("vVlcZ+rSW-w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEixEm) +STUB("vVxVAZ8z14k", WKPreferencesSetHiddenPageDOMTimerThrottlingAutoIncreases) +STUB("vVxgiBpuqaM", YGNodeSetBaselineFunc) +STUB( + "vW-nnV62ea4", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERb) +STUB("vW0zRb6OvR0", _ZN7WebCore11ImageSource20frameDurationAtIndexEm) +STUB("vW1rypyIbjY", __ubsan_handle_alignment_assumption) STUB("vW2qWKYmlvw", sceUserServiceGetSystemLoggerHashedAccountIdClockType) +STUB("vWA1r9CiPgI", _ZNK3sce3Xml3Dom8Document13hasAttributesENS1_6NodeIdE) +STUB("vWBUbKWs53U", WKBundleSetUserStyleSheetLocation) +STUB( + "vWGuDzNjowU", + _ZNK3sce2Np9CppWebApi14ConnectAccount2V216PartnerTokensApi26ParameterToGetPartnerToken13isInitializedEv) +STUB( + "vWIhCTZ0B7c", + _ZN3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfiles13setaccountIdsEPKc) +STUB( + "vWKgZK11WLY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEE3endEv) +STUB( + "vWL6JETk2EQ", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12unsetString1Ev) STUB("vWU-odnS+fU", sceAmprMeasureCommandSizeReadFile) +STUB( + "vWXhIlYstwc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEE7add_refEv) +STUB( + "vWYd2+VupsY", + _ZN7WebCore22HTMLFormControlElement13checkValidityEPN3WTF6VectorINS1_6RefPtrIS0_NS1_13DumbPtrTraitsIS0_EEEELm0ENS1_15CrashOnOverflowELm16EEE) +STUB("vWbEQjE5O9g", _ZNK7WebCore4Node14isDescendantOfERKS0_) +STUB("vWbyrN4+1ZA", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEEmmEi) +STUB("vWgVOv3-IjI", _ZN7WebCore21DiagnosticLoggingKeys27canceledLessThan5SecondsKeyEv) +STUB("vWjFmwE-qPQ", __tsan_write8_pc) +STUB("vWkaB9NZpGA", glBindFramebuffer) +STUB( + "vWr3duzc1XA", + _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container12setPlatformsERKNS1_6Common6VectorINS5_6StringEEE) +STUB("vWyD1LS3fFM", mono_aot_System_Runtime_Serializationjit_code_end) +STUB( + "vWzRjw5WjF0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEplEm) +STUB("vX+NfOHOI5w", _ZN6Dinkum7threads10lock_errorD1Ev) +STUB( + "vXDMzfZl1KY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEaSERS7_) +STUB("vXE-dIUIZlE", tcsendbreak) +STUB("vXNlggH6sNY", _ZN7WebCore24CoordinatedGraphicsLayer19adjustContentsScaleEv) +STUB("vXRp9zVGPzU", il2cpp_init) +STUB("vXXxzDf2BWM", mono_aot_Sce_Vsh_PatchCheckerClientWrapperunbox_trampolines_end) STUB("vXZhrtJxkGc", sceSysmoduleUnloadModuleInternal) +STUB("vXcL24sHmsQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEEC1EPS5_PNS2_10LibContextE) +STUB( + "vXgKZUlWrFo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEE10setContextEPNS2_10LibContextE) +STUB("vXlMo2IuqIg", JVM_StopThread) +STUB("vXu991uXNUo", u_caseInsensitivePrefixMatch) +STUB("vXvHNa4wkCI", _ZNKSt9basic_iosIcSt11char_traitsIcEE5rdbufEv) +STUB("vXvLTrtRn90", _ZN4Manx21DisplayRefreshMonitor10waitVblankEv) +STUB( + "vXxkYvomDXQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEE7get_refEv) STUB("vY-muZt5ojc", sceHidControlSetProcessFocus) +STUB( + "vY-ry25Mh-o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEEC1Ev) STUB("vY1-RZtvvbk", sceSystemServiceSuspendBackgroundApp) +STUB( + "vY26v5gSHNs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEeqERKS9_) +STUB("vY2bEjTQwD4", X509_get_pubkey) +STUB("vY7uoGDSK14", _ZN3WTF27exchangeIsCompilationThreadEb) +STUB("vYCGx4xa37w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEC2Ev) STUB("vYFsze1SqU8", sceAudioInSetAllMute) +STUB( + "vYFuvsEqvF4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE8capacityEv) STUB("vYHJtZyhhEI", sceShellCoreUtilIsBgmCpuBudgetAvailable) +STUB("vYHtlsqK5ug", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEEC2ERS9_) +STUB("vYLd9fXeOkc", _ZN3WTF17double_conversion23DoubleToStringConverter19EcmaScriptConverterEv) +STUB( + "vYOjHcnr0hA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE8pushBackERKS8_) +STUB("vYQLyTYE6nw", psl_builtin) STUB("vYS-YC+Cdkg", sceMatReserveVirtualRange) +STUB("vYSUFNI1Nvc", _ZThn24_N9Inspector22InspectorDebuggerAgent15didRunMicrotaskEv) +STUB( + "vYSfaPb4EwQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEptEv) STUB("vYU8P9Td2Zo", sceKernelAioInitializeImpl) +STUB("vYUsnwafPbg", _ZN9Inspector21InjectedScriptManager15clearEventValueEv) +STUB("vYWK2Pz8vGE", _ZSt7_FiopenPKcNSt5_IosbIiE9_OpenmodeEi) STUB("vYb+RkDnJBw", sceMbusDebugAcquireControlWithState2) +STUB( + "vYb5IYXfmuc", + _ZN9Inspector25DebuggerBackendDispatcher18getFunctionDetailsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "vYeRrCwvLNM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEE11release_refEv) +STUB( + "vYg8ZNig5OI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "vYm5d85EsjA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEC1Ev) +STUB("vYp+D8+KQqk", mono_aot_ReactNative_PUIunwind_info) +STUB("vYq95mjOFD8", _ZN3sce7Toolkit2NP2V212NetworkUtils16NetStateDetailedaSERKS4_) +STUB( + "vYyo4SCY1pw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEC2EPS8_) +STUB("vYz7gkTnLis", _ZNK7WebCore8DOMTimer24intervalClampedToMinimumEv) +STUB( + "vZ-DXAqD0PA", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser7hassortEv) +STUB("vZ02QSIHZBw", usearch_getBreakIterator_67) +STUB("vZ700a3Jeq0", mono_gc_collection_count) +STUB( + "vZ7He8aveSs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEE11release_refEv) +STUB( + "vZ9CGClnmZ4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEEC2EPKS8_) +STUB("vZ9OAENGrBs", mono_declsec_get_demands) +STUB( + "vZBcDdYD4Ig", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEEptEv) +STUB( + "vZEjKAvq2b8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEE5beginEv) +STUB( + "vZF-1NbmvsI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEppEi) +STUB( + "vZLGn98Q4tk", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB("vZMcAfsA31I", setbuf) STUB("vZNIcB3n+bg", sceFiosTimeIntervalToNanoseconds) +STUB("vZNvgdJXM8k", _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody11unsetStatusEv) +STUB( + "vZOAHmw5eF0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("vZXDqs2x7t0", _ZN3sce2np10CancelableD2Ev) +STUB("vZZWE4UTMyg", Java_com_sony_bdjstack_org_bluray_storage_BindingunitDataAreaInfo_getFreeBuSize) +STUB( + "vZZfc6Il1SE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEEC1Ev) +STUB("vZaJVJV+K7M", _ZN7WebCore16TrackPrivateBasenaEmPv) +STUB("vZaZ-ph19fc", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEEC2EPS6_) +STUB( + "vZbYvpMjZH4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEEC1Ev) +STUB("vZctofy+yiU", _ZN7WebCore17NowPlayingManagernwEmPv) +STUB("vZikpIeFVMY", _ZNK7WebCore16HTMLInputElement12isFileUploadEv) +STUB("vZj9Ghirb88", utrace_getFunctions) +STUB("vZjaJ6+zWIA", + _ZNK3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody26needsRecordedDateTimeIsSetEv) +STUB("vZkmJmvqueY", _Lockfilelock) +STUB("vZnKC-qJyuo", __sanitizer_cov) +STUB( + "vZpUjfJnUwc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEC2EPNS2_10LibContextE) +STUB( + "vZpc0LQ9KwQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEC2EPS8_) STUB("vZser6ysSbM", sceKernelIsMainOnStandbyMode) +STUB("vZuL5d4VEJQ", _ZN9Inspector17BackendDispatcherD1Ev) +STUB("va+mHDV+Lwo", _ZN3sce7Toolkit2NP2V27Session7Request7GetDataD1Ev) +STUB( + "va7LmNH8zrI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE21intrusive_ptr_add_refEPS9_) +STUB("va7Me5Jwuzs", _ZNK9Inspector22InspectorDebuggerAgent17shouldBlackboxURLERKN3WTF6StringE) +STUB( + "vaGUU-7krdc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEE7get_refEv) +STUB("vaLPKYnyR1A", _ZNK7WebCore12ISOWebVTTCue12toJSONStringEv) STUB("vaMxz9+R1Q4", scePktMgrSetUlpResHdr) +STUB("vaPIXMS4kpw", _ZN7WebCore28convertToIntegerEnforceRangeItEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB( + "vaPrXkOXAfg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEC1Ev) +STUB("vaQ3oyReTCw", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TSS7TssDataEE5resetEv) +STUB( + "vaWkZvvw92E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEC1Ev) +STUB( + "vabELSjiGpw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB("vaf2FC81Yjc", __tsan_atomic16_fetch_add) +STUB("vag289xf25c", _ZN3JSC12StringObject10putByIndexEPNS_6JSCellEPNS_9ExecStateEjNS_7JSValueEb) +STUB("vahTGzCJaMQ", _ZN7WebCore11JSDOMWindowD2Ev) +STUB("vakoyx9nkqo", _Genld) +STUB( + "vaonw-qqV+k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEED2Ev) +STUB("vatp8UwS+nE", _ZN15AbstractStorage7Service6UnLoadEPS0_) +STUB("vauI0qkQcjw", _ZN3sce2Np9CppWebApi6Common6VectorIjEC1EPNS2_10LibContextE) +STUB( + "vaw-YOcx5aY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEEC2ERSA_) +STUB("vaz1FGfx6hA", mono_aot_Sce_Vsh_MarlinDownloaderWrapperunwind_info) +STUB( + "vb1DUXRZTXs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("vb2lzbfKjNM", _ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession15searchableIsSetEv) +STUB( + "vb6CEcyAThA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEC2EPNS2_10LibContextE) +STUB("vb787LObaN8", _ZN3JSC19ArrayBufferContentsC1EPvjON3WTF8FunctionIFvS1_EEE) +STUB("vbD0xa+1ZX4", bdjbg_clear) STUB("vbDE8iuKPKY", sceAudiodecDecodeWithPriorityEx) +STUB("vbDnTIHPyfI", mono_install_assembly_load_hook) STUB("vbEbCa9rwVA", scePktMgrSetUlpNtfPayload) STUB("vbEqgeYEbBQ", sceShellCoreUtilNotifySystemSuspendTelemetryInfo) +STUB( + "vbFf5Z7OlSQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEE7popBackEv) +STUB( + "vbHHJKmT6ac", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38deletePlayerSessionsMemberNonPsnPlayerEiRKNS4_49ParameterToDeletePlayerSessionsMemberNonPsnPlayerERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB( + "vbJtJ6-JGaQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEC1Ev) +STUB( + "vbJxberpWTs", + _ZN3sce2Np9CppWebApi7Matches2V134RequestTemporaryTeamResultsFactory6createEPNS1_6Common10LibContextEPKciPNS5_12IntrusivePtrINS3_27RequestTemporaryTeamResultsEEE) +STUB( + "vbJzvM3FB18", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE3endEv) STUB("vbMEQcz6O8g", sceLncUtilGetAppCategory) +STUB( + "vbMczXBYYaI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V14UserEEEEEEC2Ev) +STUB("vbOtZbSzsE8", + _ZN7WebCore23ScaleTransformOperation6createEdddNS_18TransformOperation13OperationTypeE) +STUB( + "vbPIX5AF3UU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEaSERKS9_) +STUB("vbQO-YgVbAQ", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api20ParameterToGetTicketC2Ev) +STUB("vbSnHbPsfH8", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEED1Ev) +STUB( + "vbY-Hgi0mmE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEEcvbEv) +STUB( + "vbY475HSNxw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEC2Ev) +STUB( + "vbZ4jZzGgfE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEED1Ev) STUB("vbZLomImmEE", sceNetConfigRoutingShowRoutingConfig) STUB("vbcR4Ken6AA", sceGnmFindResources) +STUB("vbgCuYKySLI", _ZNKSt8messagesIcE6do_getEiiiRKSs) +STUB("vbh-MWtjMh4", _ZN3sce7Toolkit2NP2V24Core7Request10InitParamsC1Ev) +STUB("vbjmDDIBzzc", _ZN3WTF16tryJSValueMallocEm) +STUB("vbo0I+4DWy0", _ZN7WebCore8SVGNames6k2AttrE) +STUB("vboBiA6kae0", + _ZN7WebCore8Document5writeEPS0_ON3WTF6VectorINS2_6StringELm0ENS2_15CrashOnOverflowELm16EEE) STUB("vbtWT3lZBOM", sceNpMatching2GetRoomPasswordLocal) +STUB( + "vbv0cJsxbmQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE7reserveEi) +STUB("vbzj1L-tcCE", _ZN3sce7Toolkit2NP2V23TUS12TusVariablesC2ERKS4_) +STUB( + "vbzy4o7MvZ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEE11release_refEv) +STUB("vc+izrehl3Q", g_JSWebAssemblyInstancePoison) +STUB( + "vc0vCuWiJSg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "vc6Mu0VHc+Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEEC1ERSA_) STUB("vcBDDGi8xl0", sceDebugGetCrashInfoForCoredump) +STUB( + "vcDF1DWwMVs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEE7reserveEi) +STUB("vcDMMUBBG+g", psl_free_string) +STUB("vcEmTpxouso", utext_hasMetaData) +STUB("vcGKNO9o50E", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_10TrophyInfoEEC2Ev) +STUB("vcGcgbhP0BU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEED1Ev) +STUB("vcN1gg+gWRg", cairo_set_source_surface) +STUB("vcRPgIzgnpg", WKPreferencesSetStorageBlockingPolicy) +STUB("vcTpyR-ztbs", _ZTT12Mp4Retriever) +STUB( + "vccf6Y54AOQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE21intrusive_ptr_add_refEPS9_) STUB("vcd5Kfs1QeA", sceUserServiceGetPbtcFridayHoursStart) +STUB( + "vcgfSZOpqLg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEED1Ev) +STUB("vcinzxhrTLA", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku7setNameEPKc) +STUB( + "vckS4ay-5Q8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE7popBackEv) STUB("vckdzbQ46SI", sceGnmSetLsShader) STUB("vcmNN+AAXnY", sceAgcSetCxRegIndirectPatchSetAddress) +STUB("vcnDHacnGEU", _ZN3sce7Toolkit2NP2V24Core11ServerError17JSON_DATA_MAX_LENE) +STUB("vcqW92jr2zw", _ZNK3sce2Np9CppWebApi7Matches2V119RequestMatchResults22competitiveResultIsSetEv) +STUB("vcrFJP7x4wE", _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse11zoneIdIsSetEv) +STUB( + "vcsCWIrJX0A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEE7popBackEv) +STUB( + "vcwDWPUs3x0", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) +STUB("vd+fYjNhIyg", _sinf_impl) +STUB( + "vd6+qcf1l48", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("vd7ot5olwUM", mono_counters_cleanup) +STUB( + "vdBPCk0CF5Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEED2Ev) STUB("vdBd3PMBFp4", sceUserServiceSetGlsAccessTokenUstream) +STUB("vdM7J5Xjh2A", WKContextGetCacheModel) +STUB("vdTyx2A8pMc", _ZNK3JSC8JSObject11hasPropertyEPNS_14JSGlobalObjectEj) +STUB("vdV5zDWJ9Q8", glUniform3iv) +STUB("vdVczMe-fhA", _ZN7WebCore22ScriptExecutionContext2vmEv) +STUB("vdZLA9D5hks", _ZN3JSC11ArrayBuffer10transferToERNS_2VMERNS_19ArrayBufferContentsE) +STUB( + "vdaQJqyTyjs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE5emptyEv) +STUB( + "vdcPddw6zGE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB("vdeWIyIqZ5o", _ZNK7WebCore5Color9luminanceEv) +STUB("vdgNshVNxVM", WebProcessMainPlayStation) +STUB( + "vdj8HUBlp7Q", + _ZN3sce7Toolkit2NP2V23TUS18getFriendsVariableERKNS3_7Request18GetFriendsVariableEPNS2_4Core8ResponseINS3_16FriendsVariablesEEE) +STUB( + "vdk6rLp8ivc", + _ZNK3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead22invitationInvalidIsSetEv) +STUB("vdpVwH3lbwU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEC1Ev) STUB("vdsTa93atXY", sceNetCtlGetResultV6IpcInt) +STUB("vdsj9De6dXc", _ZN3WTF10TextStreamlsEj) +STUB("vdtz66awjCQ", mono_log_write_logfile) +STUB("vdxxSjPNWcc", _ZN7WebCore4Page19appearanceDidChangeEv) +STUB("vdyaIbyTdT0", __sanitizer_cov_with_check) +STUB("vdytWzmaKdY", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V112ErrorFactory7destroyEPNS3_5ErrorE) +STUB( + "ve+AMZfC5wo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEE7add_refEv) +STUB( + "ve45Yj7c5xE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE8capacityEv) STUB("ve6bZi+1sYQ", sceNgs2ModuleQueueEnumItems) +STUB("veCelGOGszU", JSGlobalObjectInspectorControllerDisconnectFrontend) +STUB("veNviXt6wC0", _ZN3sce4Json5ValueC2ERKNS0_6StringE) +STUB( + "veRySWMcttw", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanity10initializeEPNS1_6Common10LibContextEPKcSA_NS6_12IntrusivePtrINS3_19WebApiFilterRequestEEE) +STUB("veTpNwFxcog", _ZN9Inspector25TimelineBackendDispatcherD0Ev) +STUB("veUz0LV2k1w", _ZN7WebCore30makeRangeSelectingNodeContentsERNS_4NodeE) +STUB( + "veWpaDIXr7s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEC1Ev) STUB("veb-YBrOqo0", sceVdecswResetDecoder) +STUB( + "veci7lUC+IY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEED2Ev) STUB("vegw8qax5MI", scePadGetLicenseControllerInformation) +STUB("veifnrR6cAs", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEEdeEv) STUB("vejouEusC7g", sceCameraSetDebugStop) +STUB("veqvgYwHs5I", fuse_reply_create) +STUB( + "vesXN9z01kU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEE11get_deleterEv) +STUB("veuGEZz1YAU", _ZN3JSC8Debugger18willExecuteProgramEPNS_9CallFrameE) +STUB("veyRW0q677M", ufmt_getDecNumChars_67) STUB("vf+lYeOXdI8", sceNpAsmClientGetGameNpTitleInfo) +STUB( + "vf2us8FoMvk", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V321MissingElementFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_14MissingElementEEE) +STUB("vf3QYbCLeCY", vzone_countTransitionRules_67) +STUB("vf4jCzaSGe4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE5beginEv) +STUB("vfBKsg+lKWc", _ZN3sce2np4Path12AddDelimiterEPcmc) +STUB( + "vfCRwvD36lk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEEC1ERKSA_) +STUB( + "vfCpQ4zA1Lg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEppEi) +STUB("vfEDGY+mX+o", uspoof_check2_67) +STUB( + "vfFo-z1QAKY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEC1EPKS8_) STUB("vfHBP2-WXcM", sceNpManagerIntGetGameVshToken) +STUB("vfTkyZSghXw", __tsan_atomic128_fetch_or) +STUB("vfV2r97B45A", X509_STORE_add_cert) +STUB("vfXUizQrSRo", _ZN9Inspector30TargetBackendDispatcherHandlerC2Ev) +STUB("vfYHb8KmJig", + _ZN3JSC8DataView6createEON3WTF6RefPtrINS_11ArrayBufferENS1_13DumbPtrTraitsIS3_EEEEjj) +STUB("vfZ67jeCHOU", mono_class_array_element_size) +STUB("vfdVdj1FZqg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEmmEv) STUB("vffCFgX7T3M", sceFsBfsCheckCleanFlag) +STUB("vfgrlPxJbZk", Java_java_awt_GnmGraphicsDevice_getScreenHeight) +STUB("vfj-qG-ZQx8", _ZNK9Inspector14FrontendRouter17hasRemoteFrontendEv) +STUB("vfjalAPB8ko", _ZN15AbstractStorage15FacebookContentD2Ev) +STUB( + "vfjcDZZ8eBY", + _ZN9Inspector21HeapBackendDispatcherC2ERNS_17BackendDispatcherEPNS_28HeapBackendDispatcherHandlerE) STUB("vfmUxlocdUY", sceNpManagerIntGetTicketNB) +STUB( + "vfnFtQXSnYA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEED2Ev) +STUB( + "vfo4k6ceDGY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEplEm) STUB("vfrL8gPlm2Y", sceRudpGetMaxSegmentSize) +STUB("vfsqo2lsOMQ", _ZN3sce7Toolkit2NP25PostInvitationDataRequestC2Ev) STUB("vfzFZDaFuKU", sceAvSettingGetDetailedHdcpStatus) +STUB("vg+z4S3rshw", _ZN7WebCore9HTMLNames11keytypeAttrE) +STUB("vg-JBVgN8pE", _ZNK3WTF7SecondsmiENS_13MonotonicTimeE) +STUB( + "vg11oqJtMas", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEC2EPS8_) +STUB( + "vgLupZuxUEQ", + _ZN3JSC13RuntimeMethod18getOwnPropertySlotEPNS_8JSObjectEPNS_14JSGlobalObjectENS_12PropertyNameERNS_12PropertySlotE) +STUB("vgTyRFegScw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEED1Ev) +STUB( + "vgWV89SfYJs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEE11get_deleterEv) +STUB("vgWmm4FMVqM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEEC2Ev) +STUB( + "vgZfQqddV8A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE7reserveEi) +STUB("vgcKWwf4kk4", _ZN7WebCore16FrameLoadRequestD2Ev) +STUB("vgcx22BXwqE", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed12SharedVideosEE12deepCopyFromERS7_) +STUB("vgf46AAoa4U", uset_getItem_67) +STUB("vgiKQgxeEj4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEE5resetEPS6_) +STUB("vgjjTExnI5Q", _ZN7WebCore12ChromeClient22setRootFullScreenLayerEPNS_13GraphicsLayerE) +STUB("vgqGmTwyUoU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEC1Ev) +STUB("vgtxLSgXQBc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEC1Ev) +STUB( + "vh1dJwmvCVA", + _ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead15setInvitationIdEPKc) STUB("vh3aQ+JUpSU", sceAvSettingGetDeviceInfo) +STUB( + "vh4GMSV8rvs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEC1ERKS7_) +STUB( + "vh7VfZtu8-s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEE5resetEPS9_) +STUB("vh7bnvXXn1g", mono_aot_Sce_Vsh_Np_AppLaunchLinkjit_got) +STUB("vh9S93S1eCM", _ZNK7WebCore5Range10cloneRangeEv) +STUB("vh9aGR3ALP0", y1) +STUB("vhBlGxkfit4", WKWebsiteDataStoreConfigurationSetCacheStorageDirectory) +STUB("vhETq-NiqJA", _SceLibcDebugOut) +STUB("vhJR0H0Mb9Q", _ZN3WTF9BitVector8clearAllEv) +STUB("vhMuvhtZZ9w", _ZNK7WebCore5Event8composedEv) +STUB("vhNb5iqkunQ", Java_java_awt_GnmImage_initIDs) +STUB("vhOKW8oKZwc", _ZN7WebCore16VisitedLinkStoreD1Ev) +STUB("vhPKxN6zs+A", _Fpcomp) +STUB("vhScBXNbSU0", Java_java_lang_StrictMath_cos) +STUB("vhXUFXPBbJg", _ZThn136_NK7WebCore16HTMLMediaElement8durationEv) +STUB("vhYYgXJp19o", _ZN7WebCore8SVGNames12keyTimesAttrE) +STUB("vhbvgH7wWiE", _ZN3sce2np9EventFlag4ctorEv) STUB("vhcrecqZy-k", pthread_multi_np) +STUB( + "vhdho86+4IU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEED1Ev) +STUB("vhi1mRBniyw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEED2Ev) +STUB("vhkGPhHa-K8", mono_aot_Sce_Vsh_Sl2_NativeQueueClientmethod_addresses) STUB("vhlQXKkQFe0", sceKernelEnablePthreadObjectCheck) +STUB( + "vhmAOnNcTqE", + _ZN9Inspector24NetworkBackendDispatcher15addInterceptionElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("vhnwsUWgvuI", _ZN7WebCore11JSImageData14finishCreationERN3JSC2VME) +STUB("vhp-FrMLRcc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEdeEv) +STUB( + "vhpEFtlyJ44", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setString10EPKc) STUB("vhrCV8DnLGs", _sceNpAllocatorStrdupImpl) +STUB("vhtcIgZG-Lk", realpath) +STUB("vhv5V-CW1Ds", _ZN3sce7Toolkit2NP18GetWhoLikedRequestC2Ev) +STUB("vi0uz2KDi60", WKPreferencesGetGamepadsEnabled) +STUB("viBI7oUPQlQ", _ZN7WebCore4Page23touchEventRectsForEventERKN3WTF6StringE) +STUB( + "viBnBsFBJCk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE7popBackEv) +STUB("viDiKA1IsE0", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session12Notification18InvitationReceivedEEC1Ev) +STUB("viIZ4QRZU9Q", _ZN7WebCore10TreeWalker10parentNodeEv) +STUB("viNrML1jmY0", mono_aot_System_Xmlplt) +STUB( + "viRU8Rk3vg0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE21intrusive_ptr_sub_refEPSA_) STUB("viRXSHZYd0c", sceSslClose) +STUB("viTi0fADFbc", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi20ParameterToJoinMatchC1ERS5_) +STUB( + "viUBVDi3pnI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEE5beginEv) +STUB( + "viUDmJaqUSw", + _ZN9Inspector15RemoteInspector34updateAutomaticInspectionCandidateEPNS_22RemoteInspectionTargetE) +STUB("viUGxdv-ncg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEED2Ev) STUB("viVXAwmmYrY", sceNpUniversalDataSystemEventPropertyArraySetInt64) +STUB( + "viYcMt6vRCE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("vidPiWaBav0", mono_get_trampoline_func) +STUB("vigGUgP4l0o", _ZN7WebCore9HTMLNames27disablepictureinpictureAttrE) +STUB("vign+p49lhE", _ZN3sce7Toolkit2NP2V212ActivityFeed7Request7GetFeedC2Ev) +STUB("viiwFMaNamA", strstr) +STUB( + "vilc5plSsv0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEED2Ev) +STUB("vim76aC7ick", _ZN3sce7Toolkit2NP2V210Tournament17OfficialBroadCastC1Ev) +STUB("vimV3uv6Ef0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEC2Ev) +STUB("vire3ERrd2w", mono_aot_Sce_Vsh_WebBrowserunbox_trampoline_addresses) +STUB("vivlRyE8lOE", uprv_decNumberFromInt32_67) +STUB("viw0OkjLHgQ", WKBundlePageIsTrackingRepaints) +STUB( + "vixXOEM0Ejw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEEC2ERSA_) +STUB( + "vj+ZcOiyY98", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEdeEv) STUB("vj04qzp7uKY", sceNpUtilJsonGetOneChar) +STUB("vj1wM+GCC1g", _ZN7WebCore23HTMLTableSectionElement4rowsEv) +STUB("vj2WUi2LrfE", fscanf_s) +STUB( + "vj4Bmjde1qs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEC1Ev) +STUB( + "vj4Q8Ywp-cQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEC2EPS8_) STUB("vj6CQGWtEBg", sceNpUniversalDataSystemEventToString) +STUB( + "vjNiDhTlX0Q", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody37comparedLastUpdatedUserAccountIdIsSetEv) +STUB("vjZcyB5cS4g", mono_string_new_len) STUB("vjjJqCmTcVo", sceM4aacEncFlushWithPriorityEx) STUB("vjjqXVUcU8w", sceDtsEncCreateEncoder) +STUB("vjl8jLeIG4k", WKPreferencesGetShouldSuppressKeyboardInputDuringProvisionalNavigation) +STUB("vjpOUncQJqM", mono_aot_Sce_Vsh_Lxjit_got) +STUB("vjrRP-QN7VU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEE3getEv) STUB("vjuXE9+Pj-c", sceCesIso2022StrToUtf16Str) +STUB("vjw99oC+SaU", _ZNK3sce2Np9CppWebApi14SessionManager2V113PlayerSession12getSessionIdEv) STUB("vjwKTGa21f0", sceNetShowNetstatExForBuffer) STUB("vjwlDmsGtME", sceNpFreeKernelMemory) +STUB("vjzot7nsFTY", WKPreferencesSetRestrictedHTTPResponseAccess) +STUB( + "vk2tqOoKiLc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEEEC2Ev) +STUB("vk4wujfGsQs", mono_profiler_install_thread_name) +STUB("vk51jCXVmnY", mono_class_get_byref_type) +STUB("vk71LUV2VVw", _ZN4IPMI4impl11SessionImpl12getClientPidEv) STUB("vk7MRoekMtc", sceAppInstUtilSwitchConfig) +STUB( + "vk8UmfbjMEY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEppEi) +STUB("vk94fFclz+8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEC2ERKS7_) +STUB( + "vk9HhhwOBgU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "vkAWvo6zxgg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE) STUB("vkBmwJuOKgY", sceOpusDecDecodeWithPriority) +STUB( + "vkED3xfXKcY", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("vkEu8WAPKCQ", Java_com_sony_bdjstack_core_CoreXletContext_n_1resumeRequest) +STUB("vkF76axbx5g", _ZN3sce7Toolkit2NP9Utilities6FutureI18SceNpTssDataStatusEC2Ev) +STUB("vkFhc8MY8qw", rgctx_fetch_trampoline_rgctx_32) +STUB( + "vkHaQAC+zh0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V121ResponsePlayerResultsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("vkYRIcGVDC4", rgctx_fetch_trampoline_mrgctx_48) +STUB( + "vkdULYKEyAU", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE21intrusive_ptr_sub_refEPS7_) +STUB( + "vkfv-xg9c50", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEE7get_refEv) +STUB("vkiAJSuuZTU", _ZN3NTF15ThreadCondition6signalEv) +STUB("vkjq4GNSnMo", __asan_stack_free_0) +STUB( + "vksPyhJAScc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEED1Ev) +STUB("vkuuLfhnSZI", __cxa_throw) +STUB("vkytkdvu2Rs", mono_profiler_install_appdomain_name) +STUB( + "vl+gGNlwdZU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEneERKS9_) +STUB( + "vl2XG7dtID8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEptEv) +STUB("vl6Ph3ohLng", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersD2Ev) +STUB( + "vl6XhTnf7hs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEC2EPNS2_10LibContextE) STUB("vl8QdnxNxq4", scePsmRegisterInternalCall) +STUB("vl8WPU-FB8Q", mono_aot_Sce_Vsh_Np_Snsjit_got) +STUB("vlDnnYMKSRM", _ZN3sce7Toolkit2NP2V210Tournament7Request12SearchEventsD2Ev) +STUB("vlFgEMZJkMI", _ZN12video_parser5vpcom8datetime8DateTime24ConvertDateTimeToRtcTickERS2_) +STUB( + "vlG6IkQkc0s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEE3getEv) +STUB("vlGsIsU6PU0", _ZN7WebCore26UserTypingGestureIndicatorC1ERNS_5FrameE) +STUB("vlJgDNWp6EM", _ZN9Inspector32DatabaseBackendDispatcherHandler18ExecuteSQLCallbackD1Ev) +STUB( + "vlPdZ1N8fbg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V15ErrorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "vlWvhK1SNvI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE6isBusyEv) +STUB("vlb49C4p-Nw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEaSERS7_) +STUB("vlbD17iIrEM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEED1Ev) +STUB("vldKDlc5n+U", mono_image_get_table_info) +STUB("vlhKurmO2dM", _ZN3sce3Xml6StringaSERKS1_) +STUB("vlhN1cAt9VA", _ZN7WebCore10XLinkNames4initEv) +STUB("vlphmbz43Oo", _ZN7WebCore8Document13createElementERKNS_13QualifiedNameEb) +STUB("vm-GpchQDfQ", rgctx_fetch_trampoline_mrgctx_11) +STUB("vm2V6pGIJBo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEC1Ev) +STUB("vm6Neuz4T+0", uloc_setKeywordValue_59) +STUB( + "vm8TrICcea0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEC2EPNS2_10LibContextE) +STUB( + "vmAexuhEilI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE21intrusive_ptr_add_refEPS9_) +STUB("vmEA+inNCQI", udat_applyPattern_67) +STUB( + "vmFhubPKafg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V115LastUpdatedUserEEEEEEdeEv) +STUB( + "vmGZt1y-MQc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEppEi) +STUB("vmNIN9pyMSY", _ZN7WebCore17JSDOMRectReadOnly6s_infoE) +STUB("vmUlV489bmA", _ZN3sce7Toolkit2NP2V28Commerce18ServiceEntitlementD2Ev) +STUB( + "vmY+Ag5zf08", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEEaSERKSA_) +STUB( + "vmdfSuybiDU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("vmeEa2lMfgg", + _ZN7WebCore8Settings48setICECandidateFilteringEnabledInspectorOverrideEN3WTF8OptionalIbEE) +STUB("vmfiJPIqX00", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_13TusDataOutputEE17getAdditionalInfoEv) +STUB("vmt3ZOlQu3o", _ZN3sce2np10Cancelable16CleanupSubCancelEPS1_) +STUB("vmxJDEM3utA", il2cpp_exception_from_name_msg) +STUB("vmyNiUtPbFw", Java_com_sony_bdjstack_system_BDJModule_getCurrentTitle) +STUB( + "vn3f6-3yeLw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEptEv) +STUB( + "vn4Vs1azxXQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEE5emptyEv) +STUB("vn5B1QygBJM", PEM_read_bio_PrivateKey) +STUB("vnAsWGibAKA", u_strFromJavaModifiedUTF8WithSub_67) +STUB("vnBo2BIrkYI", _ZN7WebCore21JSRemoteDOMWindowBaseD1Ev) +STUB("vnENYAh8TbM", MvpHttpSetRedirectCb) +STUB("vnF2BMqw4o0", _ZN3sce7Toolkit2NP2V28Presence16PlatformPresenceD2Ev) STUB("vnHLgood2LA", sceBgftServiceIntDownloadFindActiveGameAndGameAcTask) +STUB("vnHq+jcDKBM", cairo_region_destroy) STUB("vnKYv2NuO5U", sceKernelWriteUnmapToPrtCommand) +STUB("vnLqlsltLJs", _ZN7WebCore14XMLHttpRequestD0Ev) +STUB("vnN+F-UFxBw", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17SetGameDataResultEEC1Ev) +STUB("vnOHXW08CF8", _ZN12video_parser5vpcom11Utf16ToUtf8ERKSbIwSt11char_traitsIwESaIwEEPSs) STUB("vnQjcL0T0W4", sceAvControlSetAudioMuteForShutdown) +STUB("vnZZHHKamgw", _ZN3sce2np14HttpConnectionD0Ev) +STUB( + "vnc8KbAUDVY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEppEi) +STUB( + "vnhLe4qBUI0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE5clearEv) STUB("vnp7yntvlPY", sceFaceTrackerSearchTarget) +STUB( + "vnpT7JTtr8g", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE5beginEv) +STUB( + "vnsy7vxfH74", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEED1Ev) +STUB("vntJzlBc5pE", _GLOBAL__I_000101) +STUB("vnuz9fv1Bcg", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEEC1EPNS2_10LibContextE) +STUB( + "vnz5qqFZXZg", + _ZN7WebCore28throwArgumentMustBeEnumErrorERN3JSC14JSGlobalObjectERNS0_10ThrowScopeEjPKcS6_S6_S6_) +STUB( + "vo0B+ILvFuc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEE3getEv) +STUB("vo2FiTXAekk", _ZN4IPMI6Server6ConfigC1Ev) +STUB("vo44gbqDKr4", _ZN7WebCore9DOMWindow5closeEv) +STUB( + "vo9Y4reCG7I", + _ZN3sce2Np9CppWebApi14SessionManager2V125MatchmakingForReadFactory7destroyEPNS3_18MatchmakingForReadE) STUB("voAQW45oKuo", sceSaveDataIsDeletingUsbDb) +STUB( + "voD+iDaSxFk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEneERKS9_) +STUB("voGUWdA8Dr8", _ZN7WebCore20FocusNavigationScope7scopeOfERNS_4NodeE) +STUB("voI4gM9SvHE", mono_aot_Sce_Vsh_Gls_NativeCalljit_got) +STUB("voLOq3g1XTI", _ZNK7WebCore12SettingsBase15fixedFontFamilyE11UScriptCode) STUB("voOYmhF1vsQ", sceRegMgrToolGetEntryCnt) +STUB( + "voPA4a6MlgI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEmmEi) +STUB("voTNGBrrKl0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEdeEv) +STUB( + "voTyzW0zH1M", + _ZNK3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivities8haslimitEv) +STUB("voU-Z78vUsU", _ZNSt9basic_iosIwSt11char_traitsIwEE8setstateEj) +STUB("voUp4sJ5mfU", WKContextSetHistoryClient) +STUB( + "voYBe5+3mYY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "voaPtmT6M1s", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEC2Ev) +STUB( + "vogHqjoAFgA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEED1Ev) +STUB("vogkh2726ZQ", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEED1Ev) +STUB("vogma5QshU4", _ZN4IPMI4impl10ClientImpl7connectEPKvmPi) STUB("vokkJ0aDf54", sceUsbdGetIsoPacketBuffer) +STUB( + "vomFRiKSeNs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE7popBackEv) +STUB("vomdcuEXaVs", _ZN3sce2np8JsonBoolC1EP14SceNpAllocator) +STUB("vorbJH09wBc", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEEdeEv) +STUB( + "vory-+xosb8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEptEv) +STUB( + "voys+PSXXlQ", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser8haslimitEv) +STUB("vp-6QnC995U", _ZZSt9MakefacetISt10moneypunctIwLb0EESt8_LocinfoERT_T0_E3buf) +STUB("vp2WfOU+CHI", rgctx_fetch_trampoline_mrgctx_116) +STUB( + "vp55ui-m5Sk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "vp8XwrxAoVQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEEE11release_refEv) +STUB("vp9utKGSdLA", _ZN7WebCore11DisplayList8FillPathD0Ev) STUB("vpA-xXvhfeY", sceG2PDialogGetResult) +STUB("vpD3oDcNC7s", _ZN7WebCore11MediaPlayer22setPrivateBrowsingModeEb) +STUB( + "vpEulkx5WAw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("vpOkYyu4J8A", _ZN3JSC17MarkingConstraintD1Ev) +STUB("vpQ1E-1oDkg", ucnvsel_openFromSerialized_67) STUB("vpTHmA6Knvg", sceSysmoduleUnloadModuleByNameInternal) +STUB("vpXNnpnL1RU", delegate_virtual_invoke_imt_23) +STUB( + "vpY0dk4KrLk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "vpYbxiMA0YY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEEC2EPS7_PNS2_10LibContextE) +STUB("vpe0S3x700Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V113SubtaskStatusEEC2EPNS2_10LibContextE) +STUB( + "vpen+AiTSKY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE5emptyEv) +STUB( + "vpiGQCM4KAo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE5clearEv) +STUB( + "vpjk8V31-+U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEC2EPKS8_) +STUB( + "vpkkVwCPaxE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEptEv) +STUB("vpmyHoYwUa4", g_malloc0) +STUB("vpo3SbGFuEk", __sys_dynlib_get_list_for_libdbg) STUB("vpsLLotiSUg", sceVrTrackerSetLEDBrightness) +STUB("vq1bwQVjgTI", + _ZN3JSC14throwTypeErrorEPNS_14JSGlobalObjectERNS_10ThrowScopeEN3WTF12ASCIILiteralE) +STUB("vq8FBoJCd7c", WKPageSupportsTextZoom) +STUB( + "vq8XTrh-S5U", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanity13isInitializedEv) STUB("vq8ubGb2XjQ", sceShellCoreUtilGetTitleWorkaroundFileString) STUB("vqA9bl6WsF0", _sceNpAllocatorStrndup) +STUB("vqGYLPaU2iM", fuse_exited) +STUB("vqHjAaWVhsA", Java_java_io_UnixFileSystem_rename0) +STUB( + "vqM513s-YZM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("vqMvoe76W6k", SystemServiceParamGetString) +STUB("vqRUqYVEoI0", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEED2Ev) +STUB( + "vqRiOXIt670", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEE5resetEPS6_) +STUB("vqTAC3fu1io", _ZNK7WebCore8Position25computeNodeBeforePositionEv) +STUB("vqWNB3q8QKg", mono_debug_set_symbol_table) +STUB("vqX-PYS3MPc", FcPatternAddLangSet) +STUB("vqcDp05KbzU", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V112TicketStatusEEC1Ev) +STUB("vqcgtB9o53s", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V123SpectatorJoinableStatusEEC2Ev) +STUB( + "vqd1JePh86M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("vqehMw479K8", _ZN12video_parser13cVideoMetaVWG15setVideoContentEPNS_13iVideoContentE) +STUB("vqekW3s-eFg", _ZN3sce2np10CancelableC2Ev) +STUB("vqfNc8gKX7M", ures_getVersionByKey) +STUB("vqglGWumI7U", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIiEEEdeEv) +STUB( + "vqiDk0TOrZQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEC2Ev) +STUB( + "vqjxnHncfY0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE7popBackEv) +STUB( + "vqrwsEUjdAE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEC2Ev) +STUB("vqs0LwSmn3c", mono_assemblies_cleanup) +STUB("vqtytrxgLMs", iswspace) STUB("vquYrvImjPg", sceLncUtilForceKillApp) +STUB("vqxIrzBTLa8", _ZN7WebCore9HTMLNames25onaccessibleincrementAttrE) +STUB( + "vqxPVD38IiI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE6resizeEj) STUB("vqxvSBNXwkA", sceFsGschedCtl) +STUB( + "vr0wC2nuUFk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE5beginEv) +STUB("vr1jqtKxO80", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEC2ERKS7_) +STUB( + "vr5JMsRP2Ag", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestMatchPlayerEEEEEED1Ev) +STUB("vr6DMbEWSWM", addProhibitionFlagListener) +STUB("vr9PZuHnPz0", _ZN3sce7Toolkit2NP2V26Friend6FriendC1Ev) +STUB("vrAa-QIUW8c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116JoinableUserTypeEEC2EPS6_) +STUB("vrB7PDQyxWY", terminateWave_Jp) +STUB("vrBLBaiUr5g", eglDestroyContext) +STUB("vrFU0cMVEBs", _ZN4Manx10FontStream7destroyEPv) STUB("vrM02A5Gy1M", sceNpWebApiRegisterExtdPushEventCallback) STUB("vrM9+g-DQVY", sceClKernelDeleteEventFlag) +STUB( + "vrQ6foG0Enk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V18RelationEE5eraseENS2_13ConstIteratorIS6_EERS9_) STUB("vrQXYRo1Gwk", sceUsbdOpenDeviceWithVidPid) +STUB( + "vrS76t0Vkf4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEEC2Ev) +STUB("vrZNehbMgsU", FcFontSetDestroy) +STUB("vrZgN7nMcGM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEE3endEv) +STUB("vrbQ4m+VRrU", _ZN7WebCore9makeRangeERKNS_15VisiblePositionES2_) +STUB("vrcfgNgTsG0", _ZNK7WebCore17FrameLoaderClient32isServiceWorkerFrameLoaderClientEv) +STUB( + "vreXlMwxs6w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE8copyFromERKS9_) +STUB( + "vrj-AEnY6FY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEED2Ev) +STUB("vrjUHiaZXZk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEaSERS7_) +STUB("vrnMhgHNe44", _ZN3sce7Toolkit2NP2V27Ranking12FriendsRanks8MIN_PCIDE) +STUB("vrqGZr3Opv8", _ZN7WebCorelsERN3WTF10TextStreamENS_24ScrollableAreaParametersE) STUB("vrre3KW6OPg", sceNpManagerIntGetPlusMemberType) +STUB("vrsBTWHRWeE", _ZN7CoreIPC10Connection11sendMessageEN3WTF10PassOwnPtrINS_14MessageEncoderEEEj) +STUB( + "vrsJ4BTYSyY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEC2EPNS2_10LibContextE) +STUB( + "vruZjP6q0kc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEE7add_refEv) STUB("vs+KPSoE7AM", sceKernelDeleteBudget) +STUB( + "vs2SuyIZid4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEEneERKS9_) +STUB( + "vs2qoQicpfI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEEED2Ev) +STUB( + "vs5VwPgD+l8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEEdeEv) +STUB("vsFmK6kctfg", uprv_decNumberMax_67) +STUB("vsHzA+l+WEs", mono_aot_Mono_Data_Tdsunbox_trampoline_addresses) +STUB("vsK6LzRtRLI", basename_r) +STUB("vsLSwMwC8LU", mono_aot_Sce_Vsh_DiscPlayerunbox_trampolines) +STUB("vsOZMpVlVUo", _ZN2GK9PlayerPSN11shutdownLibEv) +STUB( + "vsRsx8fkyoQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEixEm) +STUB("vsT-G8rVr3U", _ZNK3WTF9MediaTime9timeValueEv) +STUB("vsTIMSFJu8A", _ZN7WebCore16scriptNameToCodeERKN3WTF6StringE) +STUB( + "vsTcchbB4Ng", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "vsU9t+mhl9s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEC1Ev) +STUB( + "vsUt59MVKB8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEdeEv) +STUB( + "vsWJSzmqnNo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEEEC2ERSA_) +STUB("vsa5zadYbRA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE8capacityEv) +STUB("vsiIXtrW0ng", _ZN23sceMetadataReaderWriter8MetadataC2Ev) +STUB("vsnpgQEzvpw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEE7add_refEv) +STUB("vsq87mW6H9Q", _ZNK3sce7Toolkit2NP15AppSTLAllocatorI13SceNpOnlineIdE8max_sizeEv) +STUB("vssBwvYvBgY", ubidi_isJoinControl_67) +STUB( + "vstSWF2rPLE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("vsvqZ5etggk", WKPreferencesGetTabToLinksEnabled) STUB("vswjIkOXbuU", scePerfTraceIoControllerStart) +STUB( + "vsx29tsSDrA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEED2Ev) +STUB( + "vsxgHNLYryA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEE3getEv) +STUB( + "vszOAtv7yd0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEmmEv) +STUB("vt+EegMao3E", _ZN3JSC2VM23stringIteratorSpaceSlowEv) +STUB("vt3ajvJVk90", initInetAddressIDs) +STUB("vt5MavQkAq0", ztrans_clone_67) +STUB( + "vt6A80t7+6o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124GameSessionMemberForReadEEEEEE3getEv) STUB("vtBruB+RWUw", sceDtcpIpInitAuthAsync) STUB("vtCXhxDeosw", sceGnmValidateSubmitAndFlipCommandBuffers) +STUB( + "vtD7scRqfK0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("vtHRQyWv+sw", JSObjectMake) +STUB("vtHb71Bu0WA", _ZN7WebCore12NodeIterator8nextNodeEv) STUB("vtHd00f0O50", sceFiosDirectoryExists) +STUB("vtJllvqhN2I", _ZN7WebCore23MediaQueryParserContextC1ERKNS_8DocumentE) +STUB( + "vtK+fvbxZeo", + _ZZSt9MakefacetISt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEESt8_LocinfoERT_T0_E3buf) +STUB( + "vtL-VxXOi+U", + _ZN9Inspector24RuntimeBackendDispatcher26disableControlFlowProfilerElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("vtMqGmlyyJI", mono_aot_Sce_Vsh_UserServiceWrapperunbox_trampolines_end) +STUB("vtO0WQZ9QlA", _ZN7WebCore8SVGNames17font_face_nameTagE) +STUB("vtPV6pXhGzs", ln2LO) +STUB( + "vtVMpp29bkE", + _ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBodyC1EPNS1_6Common10LibContextE) +STUB("vtZ7ZWBa0FQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEaSERS7_) STUB("vtZIn9HtYbs", sceSocialScreenCloseSeparateMode) +STUB("vtee7NQmNCY", __tens_D2A) +STUB("vtgjNg+r9gs", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_15TrophyGroupInfoEE17getAdditionalInfoEv) +STUB( + "vtjezVIyVFw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEixEm) +STUB( + "vtn0b0w2e4Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEEC1Ev) +STUB( + "vtu9wPsgijQ", + _ZN3sce2Np9CppWebApi7Matches2V131ResponseTeamMemberResultFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_24ResponseTeamMemberResultEEE) +STUB("vtxQvXlNvHk", _ZN9Inspector26DatabaseFrontendDispatchernwEmPv) +STUB("vtxf9L4-SPA", _ZN3sce3pss4core8graphics15DirectTexture2DC2EiiNS2_11PixelFormatEPv) +STUB( + "vty0BFt13OM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEppEi) +STUB( + "vty7dMmUqOE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("vu0B+BGlol4", _ZNSt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEED2Ev) +STUB("vu4W4iqtB8w", _ZN7WebCore26IdentityTransformOperationC1Ev) +STUB("vuAHSJGCTmw", _ZN7WebCore19JSAnimationTimeline9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB( + "vuEwc1lpJ-U", + _ZN3sce7Toolkit2NP14GameCustomData9Interface11getGameDataEPKNS1_29GameCustomDataGameDataRequestEPNS1_9Utilities6FutureINS1_17MessageAttachmentEEEb) +STUB( + "vuFpfLd6dBU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEED2Ev) +STUB( + "vuHQpu36jdA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEED1Ev) +STUB( + "vuIVD1hJMz8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("vuNSwp-c4Aw", _ZN7WebCore18PlatformTimeRangesnwEmPv) STUB("vuSXe69VILM", sceAgcDcbGetLodStats) +STUB("vuSwNoBWY0Y", _ZNK7WebCore16HTMLInputElement15isDateTimeFieldEv) +STUB( + "vuYWz9sCgyk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("vuZ2MzLx7cE", _ZN12video_parser17cVideoProfilerMp420isCompatibleBrandVWGEj) STUB("vuae5JPNt9A", sceKernelAddAmprSystemEvent) STUB("vubFP0T6MP0", sceNgs2SystemEnumHandles) +STUB("vubR4LgD6Co", _ZNK7WebCore7IntRect8containsERKS0_) +STUB( + "vucP6X7J6VU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE4sizeEv) +STUB("vueMJ9oUwkc", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V112OnlineStatusEEC1Ev) +STUB("vukVSPgromM", _ZN7WebCore8DOMTimerD1Ev) +STUB("vulSgVsNPc8", + _ZN3sce2Np9CppWebApi14SessionManager2V125FriendJoinedPlayerSessionC2EPNS1_6Common10LibContextE) STUB("vup0rbTEOPU", sceNpManagerIntBindCompleted) +STUB("vuuFugcw5ss", FTA_Export_Module_psnames) +STUB( + "vuuhLVMge8g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEE7popBackEv) +STUB( + "vv+7DNbY9kw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEEC2EPS6_PNS2_10LibContextE) +STUB( + "vv-Q0+mtyAQ", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence12Notification14PresenceUpdateEE12deepCopyFromERS8_) +STUB("vv1C43NDF0c", ucol_openFromShortString_67) +STUB( + "vv3qtk91VLQ", + _ZN3JSC8JSObject9getMethodEPNS_9ExecStateERNS_8CallDataERNS_8CallTypeERKNS_10IdentifierERKN3WTF6StringE) STUB("vv6g8zoanL4", sceNetCtlClearEventForLibIpcInt) +STUB( + "vv6h5j-aHkE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEE5resetEPS9_) +STUB("vv8XlwrbcpU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEdeEv) +STUB("vv9llKM3Fb4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEED2Ev) STUB("vv9n14vQtmo", sceSystemServiceUsbStorageInit) +STUB( + "vvA7HtdtWnY", + _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE13get_monthnameES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm) +STUB("vvAH9+4ZHz0", WKBundleClearAllDatabases) +STUB("vvBFlIe+6G4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEE5resetEPS5_) +STUB("vvC9W8aejhg", _ZN7WebCore13ContainerNode22getElementsByTagNameNSERKN3WTF10AtomStringES4_) +STUB( + "vvEQDiTXONg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE7reserveEi) +STUB( + "vvHZyHFY+-U", + _ZN15AbstractStorage15HttpTransaction15SendHttpRequestERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEiRKSt3mapIS5_S5_St4lessIS5_ESaISt4pairIS6_S5_EEEm) +STUB("vvNLZvvxBmE", _ZN7WebCore6RegionC1EOS0_) +STUB( + "vvQIL6kUy8g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEC1EPS8_) +STUB("vvV94Hanzbg", + _ZN3sce2Np9CppWebApi7Matches2V128RequestTemporaryMatchResults8fromJsonERKNS_4Json5ValueE) +STUB("vvXa3gMSPPs", _ZN7WebCore9HTMLNames10objectAttrE) +STUB("vvY8hoSqgkg", _recvDeciPacket) STUB("vvjtS0L3f6g", sceCesRefersUcsProfileCp858) +STUB("vvlbLKHioMM", WKPreferencesGetDownloadAttributeEnabled) +STUB("vvo9XxrVac0", __tsan_read_range) +STUB( + "vvomojuUv1I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEC2Ev) +STUB( + "vvr5oBK30Oc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEppEi) +STUB( + "vvwFM5P4jLs", + _ZN9Inspector23CanvasBackendDispatcher14resolveContextElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "vvybz2VwXos", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) STUB("vvzWO-DvG1s", sceNpWebApi2DeleteRequest) +STUB("vw0sBeeULiY", _ZN9Inspector21DOMFrontendDispatcher21childNodeCountUpdatedEii) +STUB( + "vw99DBQArNI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEEC1Ev) +STUB("vw9CJc+EUsE", _ZNK7WebCore3URL30stringCenterEllipsizedToLengthEj) +STUB("vwFaWsNoiQw", WKFrameIsDisplayingMarkupDocument) +STUB( + "vwHiSIpnJ7w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEED1Ev) +STUB("vwMx2NhWdLw", _ZNSt7codecvtIDic9_MbstatetED0Ev) +STUB( + "vwPvprtknm0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "vwVqW6y6Vl8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("vwXzo+jfK3E", _ZN3sce7Toolkit2NP2V27Session11InvitationsaSERKS4_) +STUB("vwYmQUAC9vY", _ZN7WebCore11MathMLNames11largeopAttrE) +STUB("vwb5ITvdTRQ", _ZN3sce7Toolkit2NP21SearchSessionsRequestC2Ev) +STUB( + "vwfPbL86F2k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEaSERSA_) +STUB( + "vwiHVosK3jc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEppEv) +STUB("vwm9cq-niz4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEEixEm) +STUB("vwnvJeGAzoQ", fuse_fs_chown) +STUB( + "vwp49cqgJKg", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeaders6createEPNS1_6Common10LibContextERNS6_12IntrusivePtrIS5_EEl) STUB("vwtVpHQKelI", sceVideoOutDeleteOutputModeEvent) +STUB("vwuV+1OuYEQ", restore_context) +STUB( + "vwyDJS+eV2M", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEEiRNS2_10LibContextEPT_m) +STUB("vx++1-xNUUU", uprv_decNumberToEngString_67) +STUB( + "vx04U-ES5hc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEE11release_refEv) +STUB( + "vx087261QG4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEC1EPKS9_) +STUB("vx4I6uMoiww", + _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody17setNpServiceLabelERKj) +STUB("vx5AOtDXs7I", JVM_LoadLibrary) +STUB( + "vx5jqotHp1c", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE5emptyEv) STUB("vx9MQYicBVQ", sceCamera2SetAutoExposureGain) STUB("vxC58+DRk-U", sceAmprMeasureCommandSizeWriteAddressFromCounterPairOnCompletion) +STUB("vxG9gVozU1I", mono_aot_Mono_CSharpunwind_info) +STUB( + "vxGoubeNoNQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEED1Ev) +STUB( + "vxLxSsCqStM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEmmEv) +STUB( + "vxN9vAjnNok", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13boolean3IsSetEv) +STUB("vxgqrJxDPHo", sinl) +STUB( + "vxmPtMiAgAA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125FriendJoinedPlayerSessionEEEEEEC1ERSA_) STUB("vxnQI1naSHA", sceDataTransferTargetRequestAuth) +STUB( + "vxqKbMCrDnI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V113ErrorResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("vxqe9CJNFYE", _ZN7WebCore8SVGNames6fxAttrE) +STUB( + "vxwSEWT8zKQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEE3getEv) +STUB("vxx2FqLL02Y", _ZN9Inspector24TargetFrontendDispatcherC1ERNS_14FrontendRouterE) +STUB("vy-0DOQobkU", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable11slotIdIsSetEv) +STUB("vy-1N0ya9WE", WKPreferencesSetDisplayContentsEnabled) +STUB("vy2QVV5FG+w", _ZN3sce7Toolkit2NP9Interface13userLoggedOutEi) +STUB("vy7eoV5ZwXQ", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V318PsnWebErrorWrapper8getErrorEv) +STUB( + "vy8d4oLVhvQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEED2Ev) +STUB("vyGNmiXdIX0", GCC_except_table0) +STUB("vyLotuB6AS4", _Cnd_do_broadcast_at_thread_exit) +STUB("vyOS18Unsuw", _ZNK7WebCore16DocumentTimeline17animationIntervalEv) +STUB("vyOiJyvWOik", WKCookieManagerStartObservingCookieChanges) +STUB("vyOyAdtvQ0c", uldn_getContext_67) +STUB( + "vyPaY3RukLc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEE11release_refEv) +STUB( + "vyPbpu9Fh-A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "vyQypkSkhos", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB("vySBdUuFMaI", _ZN3sce2Np9CppWebApi7Matches2V119RequestMatchResultsD1Ev) +STUB( + "vyacpUcrtrI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEEEcvbEv) +STUB("vycUuYWwilI", _ZN3sce7Toolkit2NP2V24Core7Request10TermParamsD1Ev) +STUB( + "vyeeiHeesC8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEE5beginEv) +STUB( + "vyg9vDLa+ic", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEEaSERKSA_) STUB("vyh-T6sMqnw", sceAudioInSetCompressorPreGain) STUB("vyjdThnQfQQ", sceRazorCpuTagBuffer) +STUB( + "vyoZSjq7qE4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEC2Ev) +STUB("vypUd4KfkRQ", _ZN3sce2Np9CppWebApi11Matchmaking2V19AttributeD2Ev) +STUB("vyqQpWI+O48", _ZNSt14numeric_limitsItE9is_signedE) +STUB( + "vyqYI2ox9EA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEmmEv) +STUB( + "vysEG577lAY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE8pushBackERKS8_) +STUB( + "vysMqbStXIo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEC1EPNS2_10LibContextE) +STUB( + "vysijnZfDu4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEEaSERKSA_) STUB("vytOYzDyTq0", sceOpusSilkEncEncodeWithPriorityAndTimeout) +STUB("vyw+ZSJy6I0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEEneERKS7_) +STUB( + "vywdbaNLYRA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEdeEv) +STUB("vz+ivKCnVfo", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_waitMediaPresentation) STUB("vz+pg2zdopI", sceKernelGetEventUserData) +STUB("vz51DOc4a6s", WKPreferencesSetBackspaceKeyNavigationEnabled) +STUB( + "vz7hud5xS+k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "vzB+gD2pqRY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEneERKS9_) +STUB("vzCxCYaLWdw", _ZN3sce3pss4core9threading4Cond4WaitEi) +STUB( + "vzDf4jlkntU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEE5resetEPS6_) STUB("vzHs3C8lWJk", sceFontCloseFont) +STUB("vzKNY2nY7Jk", _ZNK3sce2Np9CppWebApi6Common6VectorImE4sizeEv) STUB("vzMEkwBQciM", sceHmdReprojectionStop) +STUB("vzRcaojx-Ow", _ZN3JSC7Symbols37regExpStringIteratorStringPrivateNameE) +STUB("vzSsREBYrsQ", _ZN3JSC11ArrayBuffer9tryCreateEPKvj) STUB("vzWoetyaUuA", sceShellCoreUtilIsTemperatureDanger) +STUB("vzXww2IsYTM", _ZN3sce2Np9CppWebApi6Common10LibContext14getMemoryStatsERNS3_11MemoryStatsE) +STUB("vzeiWTCsQ4c", _ZN7WebCore14cookiesEnabledERKNS_8DocumentE) +STUB("vzh0qoLIEuo", _ZNSt10bad_typeidD1Ev) +STUB("vzjoFGeH3Bw", u_hasBinaryProperty_59) +STUB("vzjy4m03hos", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEC1ERKS7_) +STUB("vzn-L+Pa+jc", NET_MapSocketOption) +STUB("vzn9i64fOoI", mono_aot_Sce_Vsh_Np_Snsmethod_addresses) +STUB( + "vzqBsbLv4aY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEED1Ev) +STUB("vzv39zHU5fE", _Getint.flit) STUB("vzvznsnpjKM", sceAudioOut2DisableChat) +STUB("vzxq98EYhBc", _ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetail15unsetMiddleNameEv) +STUB( + "vzzKlg8mYE8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEptEv) +STUB( + "vzzsCMCvkVA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEC1ERKS8_) +STUB( + "w+-O6Zjhois", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEC2ERKS7_) +STUB( + "w+0zYfh+Q4Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "w+5LeYpJmm0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB("w+BDXaxOgHc", mono_g_hash_table_foreach_remove) +STUB("w+C8QXqZKSw", _ZN3sce2np7HttpUriD0Ev) +STUB( + "w+IDZZy2FI8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEC1EPS6_PNS2_10LibContextE) +STUB( + "w+IP0HxzLrA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEeqERKS9_) +STUB("w+KD02icC2Q", _ZN7WebCore18JSHTMLMediaElement6s_infoE) +STUB("w+Ln0G-V+0s", mono_gc_register_root_wbarrier) +STUB("w+T7oawE1mg", + _ZNK9Inspector15RemoteInspector16listingForTargetERKNS_24RemoteControllableTargetE) +STUB("w+VAG2k831M", _ZN3sce7Toolkit2NP2V27Ranking12RangeOfRanks8MIN_PCIDE) +STUB("w+aChZeGKxo", X509_EXTENSION_get_critical) +STUB("w+aYuzzk7Pk", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanityaSERS5_) +STUB("w+cra2P9A1c", mono_btls_x509_name_print_bio) +STUB("w+iqFw6Gxcc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEED2Ev) +STUB( + "w+v1fHraAvs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEEE7reserveEi) +STUB("w+zq7XO9OxE", _ZN3sce7Toolkit2NP2V28Matching7Request17KickOutRoomMemberD1Ev) +STUB("w-+WNw8yu+w", _ZN7WebCore9HTMLNames7spanTagE) +STUB("w-+wrYo+NLE", _ZN7WebCore8Document19accessSVGExtensionsEv) +STUB( + "w-AeCczg-IY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE7popBackEv) +STUB("w-AryX51ObA", fabsl) +STUB("w-BvXF4O6xo", llround) +STUB("w-DRBxwE6As", uhash_iremove_67) +STUB("w-E4CYjDhgk", _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile12getLanguagesEv) +STUB("w-HImrt0ifw", mono_aot_Sce_Vsh_SysUtilWrapperplt_end) +STUB( + "w-IAYSaRmvQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEC2Ev) +STUB( + "w-IXTE8QpP8", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody12string6IsSetEv) +STUB("w-J2Q4evZwQ", _ZN9Inspector22PageFrontendDispatcherC1ERNS_14FrontendRouterE) +STUB("w-M4Kng47xs", _ZN7WebCore18PluginInfoProviderD2Ev) +STUB( + "w-P3u2x2g3E", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE11getResponseERSB_) +STUB("w-YQeV7ysVc", _ZNK3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap14accountIdIsSetEv) STUB("w-c7U0MW2KY", sceNpTusGetMultiUserDataStatusForCrossSaveVUser) +STUB("w-g3dpRum5w", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEcvbEv) +STUB("w-jl-X+z1AA", mono_aot_Sce_Vsh_ShellCoreUtilWrapperjit_got) +STUB("w-lfhWHjbiY", rgctx_fetch_trampoline_mrgctx_58_p) +STUB("w-pm2E3zz6M", WKBundleFrameDisableThrottlingByTime) +STUB("w-pn1iTYQo0", _ZNK3JSC8FreeList4dumpERN3WTF11PrintStreamE) +STUB( + "w-rf4D2cUWM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116InitialJoinStateEEeqERKS7_) +STUB( + "w-u3i2dblmI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE21intrusive_ptr_add_refEPS9_) +STUB("w-zWDsN+0bQ", _ZN4IPMI4impl10ServerImplC1Ev) +STUB("w-zmfqesLSk", _ZN3WTF11Persistence7Encoder6encodeEj) +STUB("w00D0ddSQLA", _ZN3JSC20failNextNewCodeBlockEPNS_14JSGlobalObjectE) +STUB("w01JUEpJMx8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEcvbEv) STUB("w02zjBeV+n4", sceVshAvcapSelect) +STUB("w03a1pfG8oM", EVP_CipherUpdate) +STUB("w07dR+ym+z8", WKBundleNodeHandleSetHTMLInputElementAutoFillButtonEnabled) +STUB( + "w07lGYtLjy0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("w07ozLZGz1c", _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest17unsetMatchResultsEv) +STUB("w0EL1OPQG+A", + _ZN7WebCore9unionRectERKN3WTF6VectorINS_9FloatRectELm0ENS0_15CrashOnOverflowELm16EEE) +STUB( + "w0HOMHeDucc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEE11get_deleterEv) +STUB( + "w0JxbltmZo8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEE5beginEv) +STUB("w0KIjnDwdP4", _ZNK7WebCore37BasicComponentTransferFilterOperation5cloneEv) +STUB( + "w0Kl5dQun8E", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("w0LHtIi60Sk", ucnv_getAliases) +STUB("w0P0WAfYXJQ", _ZN3WTF11jsValueFreeEPv) +STUB("w0VlZyYxb5Y", __asan_exp_store1_noabort) +STUB( + "w0f1w5yrJDU", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) STUB("w0hI3xsK-hc", sceFontFtSupportWinFonts) STUB("w0hLuNarQxY", sceVideoOutConfigureOutput) +STUB("w0iYKyr2494", mono_aot_ReactNative_Debug_DevSupportjit_got) +STUB( + "w0lR0I6KXoE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEE21intrusive_ptr_add_refEPS7_) +STUB("w0pV8P7Kwa8", locale_getKeywordsStart_67) +STUB("w0sIuwQkQIQ", _ZN3sce7Toolkit2NP2V210Tournament13OneVsOneMatchC1ERKS4_) +STUB( + "w0v9ua1oI8M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117ResponseMatchTeamEEEEEEC1ERSA_) +STUB( + "w0wpHYTi6EA", + _ZN7WebCore24TemporarySelectionChangeC2ERNS_8DocumentEN3WTF8OptionalINS_16VisibleSelectionEEENS3_9OptionSetINS_24TemporarySelectionOptionEEE) +STUB( + "w0y-w2XHpzo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEE11release_refEv) STUB("w1+L-27nYas", sceSslDisableOptionInternalInsecure) +STUB("w11G58-u4p8", + _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE5_FfmtEPccNSt5_IosbIiE9_FmtflagsE) STUB("w13Ojm7ON9o", sceFiosFHOpenWithModeSync) +STUB("w178uGYbIJs", _Xp_subx) +STUB( + "w186vLuIoeQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEppEv) +STUB( + "w18IlkZ-9eE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE21intrusive_ptr_sub_refEPS9_) +STUB("w18rHzRZh8k", _ZN3sce2Np9CppWebApi13InGameCatalog2V59ContainerC2EPNS1_6Common10LibContextE) +STUB("w18yIZcPEuE", _ZN7WebCore4Page16userAgentChangedEv) +STUB( + "w1Aw4IaC4FA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEC2Ev) +STUB("w1C462s+amc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEC2ERKS7_) +STUB("w1CdZU2Srwo", _ZNK7WebCore16HTMLInputElement6isTextEv) +STUB( + "w1CpFksS6GQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEdeEv) +STUB( + "w1ILDngAKzU", + _ZN3sce2Np9CppWebApi14SessionManager2V136GetFriendsPlayerSessionsResponseBody10setFriendsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_6FriendEEEEE) +STUB("w1JXzWCP5UM", _ZN3WTF3URL14setHostAndPortENS_10StringViewE) +STUB("w1K+MDlGq0A", _ZN7WebCore11DisplayList15FillRoundedRectD2Ev) STUB("w1KFAHVqpaU", sceAgcCbBranch) +STUB( + "w1M-utahFaQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEED1Ev) +STUB("w1NxRBQqfmQ", printf_s) +STUB( + "w1YJKJjxrTU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEdeEv) +STUB("w1bUtZYR1Y4", _ZN9Inspector14InjectedScriptC1ERKS0_) +STUB("w1cVjNKnISM", + _ZN9Inspector17BackendDispatcher8getArrayEPN3WTF8JSONImpl6ObjectERKNS1_6StringEPb) +STUB( + "w1hpCwDa0K0", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V120MmrPropertiesFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_13MmrPropertiesEEE) +STUB("w1k0uL-2zrQ", uhash_count) STUB("w1mZOJCxvhQ", sceUsbStorageGetdentsClose) +STUB("w1o05aHJT4c", random) +STUB("w1qonuIftF0", _ZN3JSC12DateInstance14finishCreationERNS_2VMEd) +STUB("w1sx3pgttn8", _ZN3sce7Toolkit2NP9Utilities10FutureImpl7setBusyEv) +STUB("w1yWDjuh0I0", TEEC_InvokeCommand) STUB("w2+qV1RJgcI", _sceNpMalloc) +STUB("w2-7PMpiZf4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersC2ERS5_) +STUB("w20PJO0UULM", GCC_except_table40) STUB("w21YgGGNtBk", sceNetEpollAbort) +STUB( + "w24JWki+TWI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "w24SxBCgsqg", + _ZN3sce2Np9CppWebApi14SessionManager2V138ResponsePlayerSessionInvitationFactory7destroyEPNS3_31ResponsePlayerSessionInvitationE) +STUB("w2CfS40uMZs", rgctx_fetch_trampoline_rgctx_90) +STUB("w2CtqF+x7og", CERT_STORE_traversePskListNext) +STUB("w2GyuoXCnkw", _ZNSbIwSt11char_traitsIwESaIwEE6insertEmmw) +STUB( + "w2PgnER5IuY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEppEv) +STUB( + "w2Sw+d8o7pA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEC2EPS8_) +STUB("w2TjgpWqhb4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEptEv) +STUB( + "w2UjbzRy0dU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "w2WJke4VKTI", + _ZN7WebCore15JSDOMWindowBaseC1ERN3JSC2VMEPNS1_9StructureEON3WTF6RefPtrINS_9DOMWindowENS6_13DumbPtrTraitsIS8_EEEEPNS_13JSWindowProxyE) +STUB("w2aPcrilqmg", glInsertEventMarkerEXT) +STUB("w2cA8NF7Vfw", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku14getIsPlusPriceEv) +STUB( + "w2eXY6+5+LU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEppEi) +STUB("w2lGr-89zLc", CERT_setKeyFromSubjectPublicKeyInfo) +STUB( + "w2mbK6BnaM8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEE11release_refEv) +STUB("w2nJKnaUKtU", mono_btls_x509_crl_get_version) +STUB( + "w2o0oqlupI4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEC2ERS7_) +STUB("w2pVQm5Z72o", delegate_virtual_invoke_imt_m_1_p) STUB("w2rJhmD+dsE", sceAgcDriverAddEqEvent) +STUB( + "w32FiX4-pNg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEptEv) +STUB("w32pxSSQ4Rs", WKBundleHitTestResultGetTargetFrame) +STUB( + "w35UGpO4cM8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "w3743Nv8q7A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) STUB("w3BY+tAEiQY", sceVideoOutRegisterBuffers) +STUB("w3EwgYSQdD8", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110PlayerTypeEEppEi) +STUB( + "w3FrVqvZ-Oc", + _ZNK3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11getBoolean4Ev) +STUB("w3OPGzG+9lo", _ZN7WebCore13ContainerNode20getElementsByTagNameERKN3WTF10AtomStringE) +STUB("w3PQxs6fUrk", + _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_12WebAnimationE) STUB("w3PdaSTSwGE", sceAudioOutOutputs) +STUB( + "w3SzWwBiuRE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEneERKS9_) +STUB("w3T-3kR7DU0", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15NpSessionMemberEE7destroyEPS3_) +STUB( + "w3UCLoi93Z8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEC2EPNS2_10LibContextE) +STUB("w3YSzEB7zcM", _ZNK12video_parser5vpcom8datetime8DateTimeltERKS2_) +STUB("w3d3ARP2oIU", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V117ConnectionQuality6toJsonERNS_4Json5ValueEb) +STUB("w3d6oZK52-I", JSValueIsEqual) +STUB( + "w3e-AnIIIFg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEdeEv) +STUB("w3gRFGRjpZ4", _WStold) +STUB( + "w3i2r7Z2hCc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE5clearEv) +STUB("w3jAgmDwR2c", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEptEv) +STUB("w3lhMQ7YIM8", _ZN7WebCore13MediaStrategyC2ERKS0_) +STUB("w3nLHf8S5Cs", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEEcvbEv) +STUB("w3oAt9XvOZI", _ZN7WebCore13hostsAreEqualERKNS_3URLES2_) +STUB("w3qT8TVfP+Y", _ZN3sce7Toolkit2NP2V24Core15StringifyResultC2Ev) +STUB( + "w3vXlbRFdVA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEC1ERKS7_) +STUB( + "w3y1Sid7ETQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEixEm) STUB("w4-d0n60hdo", sceAgcDcbSetUcRegisterDirect) +STUB( + "w42rA6Ucync", + _ZN9Inspector21InspectorRuntimeAgent10getPreviewERN3WTF6StringERKS2_RNS1_6RefPtrINS_8Protocol7Runtime13ObjectPreviewENS1_13DumbPtrTraitsIS9_EEEE) +STUB("w45VYZhR0LQ", __cxx_global_var_init .31) +STUB("w4DigjYSWdc", _ZNK3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V16Rating13getActivityIdEv) +STUB( + "w4FGkXcYdFM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("w4GAO3Mnqsw", delegate_virtual_invoke_imt_m_8_p) +STUB( + "w4HUgsX35to", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEC2EPS8_) +STUB( + "w4K4nTYwhVE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB( + "w4LLHSXo+Ho", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEppEv) +STUB( + "w4MTpQdUGoU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEEC2EPS8_) +STUB( + "w4RYpvkqVzY", + _ZN9Inspector24BrowserBackendDispatcherC1ERNS_17BackendDispatcherEPNS_31BrowserBackendDispatcherHandlerE) +STUB("w4WRrXbNFI4", mono_aot_Sce_Vsh_Accessormethod_addresses) +STUB( + "w4X-RYzPtHg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEdeEv) +STUB( + "w4fiJLJudqI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEppEi) STUB("w4inP0fKuDI", sceVideoOutSysSetInvertedColors) +STUB("w4juY6EK-Nc", _UTF8Data_67) +STUB( + "w4mdnqIzag0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEEC1EPSA_PFvSC_EPNS2_10LibContextE) +STUB("w4stabUucgU", mono_aot_Sce_Vsh_Themeplt) +STUB("w4tKwcFJp-c", _ZN9Inspector31BrowserBackendDispatcherHandlerD0Ev) STUB("w4uMPmErD4I", sceNpTrophyGetGroupIcon) +STUB( + "w4yNVHKXoBE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEED2Ev) +STUB("w5+VCznos5E", _ZN3sce4Json5Array8iteratorppEv) +STUB("w52SREE0dR4", _ZN7WebCore27PlatformMediaSessionManager6createEv) +STUB("w52w1Vmhpyk", mono_aot_Sce_Vsh_Np_Managerunbox_trampolines_end) +STUB( + "w531V2fXzQY", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToSetMultiVariablesByUserC2ERS5_) +STUB("w53a2jJMk8s", _ZN7WebCore9HTMLNames30onwebkitanimationiterationAttrE) +STUB( + "w594drqs8QY", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB("w5CGykBBU5M", _ZNSt10filesystem9_Read_dirERA260_cPvRNS_9file_typeE) +STUB("w5IHyvahg-o", sem_timedwait) +STUB("w5JFbRGFRdM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110TaskStatusEEneERKS7_) +STUB( + "w5KNg66Pyvc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "w5SNgng6EFs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("w5UbvPLGye0", _ZN3sce4Json5ArrayaSERKS1_) +STUB("w5ZBRGN1lzY", CA_MGMT_verifyCertWithKeyBlob) +STUB( + "w5aWkxQSB+g", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEC1EPKS8_) +STUB("w5dCH5YIQk0", _ZN7WebCore8SVGNames6y2AttrE) STUB("w5fcCG+t31g", sceKernelAprResolveFilepathsWithPrefixToIdsAndFileSizes) STUB("w5moABNwnRY", sceAvPlayerResume) +STUB("w5nLp1yb4ek", _ZN3JSC7Symbols24mapBucketHeadPrivateNameE) +STUB( + "w5qeEJdAYuc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEneERKS9_) STUB("w5sfH9r8ZJ4", sceFontFtTermAliases) +STUB("w5uuoBZXSpY", _ZNK3WTF9MediaTimeeqERKS0_) +STUB("w5yd8587Xyo", WKPluginInformationUpdatePastLastBlockedVersionIsKnownAvailableKey) +STUB("w6+xSKBBn6Y", UCNV_FROM_U_CALLBACK_SKIP_67) +STUB( + "w60uXAL4f8o", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE11getResponseERSB_) +STUB("w61Pg+jLO8I", _ZNK7WebCore4Node18lookupNamespaceURIERKN3WTF10AtomStringE) +STUB("w61SY5yYjuQ", _ZN3JSC2VM12setSpaceSlowEv) STUB("w62wXXsQx5E", sceUlpMgrVshInitialize) +STUB("w63v6LpnB-A", unorm2_getCombiningClass) +STUB("w63vEAvU8Gc", _ZN4Manx11MediaPlayer10setVisibleEb) +STUB("w65Kj8tAgZw", _ZN9Inspector14InspectorAgent7disableERN3WTF6StringE) +STUB( + "w6703CINjG8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE8capacityEv) STUB("w67APvj+zAM", sceVdecwrapSetDecodeInput) +STUB( + "w69eiIfctsk", + _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession19setSearchAttributesERKNS1_6Common12IntrusivePtrINS3_16SearchAttributesEEE) +STUB("w6Aq68dFoP4", fwide) +STUB("w6DbBUELkM0", _ZN7WebCore15JSFetchResponse15subspaceForImplERN3JSC2VME) STUB("w6Dj1VJt5qY", sceAgcSetPacketPredication) +STUB( + "w6L9YRgZtm0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "w6RAp0mQ7TA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEE11get_deleterEv) +STUB("w6UnDaSvKlQ", udat_parse_67) +STUB( + "w6XJFzrM-ls", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "w6XS1glDZjk", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanity9getlocaleEv) +STUB( + "w6bAUvPMY-c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEC2EPS9_) +STUB("w6dfLpf9Os4", _ZN3sce2Np9CppWebApi12Leaderboards2V122GetRankingResponseBodyD1Ev) +STUB("w6i46WqVNOM", YGNodeStyleSetMaxHeightPercent) +STUB("w6iPDnixJ+E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEC1ERKS7_) +STUB("w6mEl-Dsqyw", mono_method_can_access_method) +STUB( + "w6qfs5qDsWo", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_11ProductInfoENS1_15AppSTLAllocatorIS5_EEEED2Ev) +STUB( + "w6qsNmNw8RI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116JoinableUserTypeEEEEC1ERKS9_) +STUB("w6t2+R4KJNY", il2cpp_class_enum_basetype) +STUB("w6uemFn00hc", WKPopupMenuItemIsItem) +STUB("w74B12wektg", mono_aot_Sce_Vsh_Np_RifManagerunwind_info) +STUB("w7AHqrq1-CI", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_26ActivityFeedCondensedStoryEE7addressERKS3_) +STUB("w7CYvjrBvbQ", + _ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody20createdDateTimeIsSetEv) +STUB( + "w7DVRpIQ5Qs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEdeEv) STUB("w7EWjn-P2xY", sceCesMbcsUcsSetMbcsReplacementCharCode) +STUB("w7FAdToteV8", _ZN3sce7Toolkit2NP10IdDatabase15getAuthClientIdEv) +STUB( + "w7HdvBQTRjY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) STUB("w7ICzzcAJCU", sceAvSettingChangeOutputMode2) STUB("w7Ipp9Xl7hg", sceVideoOutAllowOutputResolutionWqhdDetection) +STUB("w7PUHXO-d8I", _ZN3sce3pss5orbis9framework14PsmDelegateObj11FreePointerEv) +STUB("w7TgSPl+20I", WKBundleBackForwardListCopyItemAtIndex) STUB("w7U3s-k8gLM", sceKernelGetEmergencyErrorLog) +STUB( + "w7ZyvHMmfRk", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_23NpSessionInvitationInfoENS1_15AppSTLAllocatorIS5_EEEEC2Ev) +STUB( + "w7aUmEXv+y4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V111AddedPlayerEEEEEE7get_refEv) +STUB( + "w7cQ9wg1K4A", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEE5emptyEv) +STUB("w7coJpIhnaY", _ZN9Inspector19InspectorAuditAgentnaEmPv) +STUB( + "w7dhcAcuWTQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEC1EPS8_) +STUB( + "w7dzcE37Z8o", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersC1ERS5_) +STUB("w7fk0ybEJnY", rgctx_fetch_trampoline_rgctx_105) +STUB( + "w7flM1v62u8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEC1EPS6_PNS2_10LibContextE) +STUB("w7iSnu6cmt4", _ZN3JSC7Symbols59rejectPromiseWithFirstResolvingFunctionCallCheckPrivateNameE) +STUB( + "w7k-Y3MMQf0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE5beginEv) +STUB("w7mZl3yVB7Q", _ZN7WebCore18SocketStreamHandleC2ERKN3WTF3URLERNS_24SocketStreamHandleClientE) +STUB("w7nqTT3zgxU", _ZN3sce4Json6Object8iteratoraSERKS2_) STUB("w7oz0AWHpT4", sceCompanionHttpdSetStatus) +STUB( + "w7q61lFBQiY", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) STUB("w7tvvHZZzug", sceCustomMusicCoreSendSpMessage) +STUB( + "w7xKaLUu+m0", + _ZN3sce2Np9CppWebApi14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBody14setInvitationsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_36UsersPlayerSessionsInvitationForReadEEEEE) +STUB( + "w7yDlqxamEs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEEC1ERKSA_) +STUB("w81lhpVGBxQ", _ZSt10_MaklocstrIwEPT_PKcS1_RKSt7_Cvtvec) +STUB("w821BlZf9os", fuse_chan_destroy) +STUB( + "w823lEYO-WI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEED2Ev) +STUB( + "w82s9BDwJrw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19PlayStyleEEEEEEC1ERSA_) +STUB( + "w82wtS2KLuM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("w832qwBmcGk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEEC1Ev) +STUB("w85s+ZPDKaM", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE6resizeEj) +STUB( + "w87Ygqmsh-I", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEptEv) +STUB("w8B8XrLet3I", _ZN3sce7Toolkit2NP2V210Tournament17TournamentDetailsC1Ev) STUB("w8BEUsIYn8w", sceHmdInternalAnotherScreenGetVideoStatus) +STUB("w8CwaZXGm9I", _ZN3sce7Toolkit2NP2V23TUS7Request18GetFriendsVariableD1Ev) +STUB( + "w8EhpT2DdkE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("w8ErqlEVa0g", + _ZN15AbstractStorage17DailymotionFolderC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEb) +STUB("w8G-27K4CKo", _ZN7WebCore17CharacterIteratorC1ERKNS_11SimpleRangeEt) STUB("w8HVkEeXPv8", sceAgcDcbDispatchIndirectGetSize) +STUB("w8HwYE-9KJs", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEEC2Ev) +STUB("w8IeS1o82UU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEaSERKS7_) +STUB( + "w8KbNecPQtY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEC1EPS8_) +STUB( + "w8Kp3IeqSq0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEplEm) +STUB("w8MmFAAxfqM", _ZN7WebCore16ThreadGlobalDataC1Ev) +STUB("w8Nmxq0h8Nw", _ZN3sce7Toolkit2NP2V28Commerce7Request25ConsumeServiceEntitlementC1Ev) +STUB( + "w8O0SVCZG7Q", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEdeEv) +STUB("w8S6R14D7AE", _ZThn32_N7WebCore14XMLHttpRequestD0Ev) +STUB("w8VNR7vBvd4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEE7get_refEv) +STUB("w8W-dnXAAGs", _ZN7WebCore10ScrollView24setUnobscuredContentSizeERKNS_9FloatSizeE) +STUB("w8ZcqPInh-0", _ZN3sce7Toolkit2NP15AppSTLAllocatorItED1Ev) +STUB("w8f2A-BvnZA", ublock_getCode_67) +STUB( + "w8fPcLuFbsc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE5emptyEv) STUB("w8gdCsz9E5g", sceDtcpIpAddHeader) +STUB( + "w8jWT8QANxg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEixEm) +STUB("w8rgJiyY10M", WKPluginInformationBundleVersionKey) +STUB( + "w8t98uWdcZU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEEeqERKS9_) +STUB( + "w8twuSVe2tI", + _ZN3sce2Np9CppWebApi14IdentityMapper2V324PsnWebError_error_errors18setMissingElementsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_33PsnWebError_error_missingElementsEEEEE) +STUB( + "w8vLQe1FsQ0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE8copyFromERKS9_) +STUB( + "w9-3YXZURBI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEC1Ev) +STUB("w90fasGOyHU", _ZNK7WebCore16DOMGuardedObject13guardedObjectEv) +STUB( + "w92VqQPsii0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB("w943c-AqXdc", mono_custom_attrs_get_attr) +STUB( + "w95ozZhH9kQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEC2ERS7_) +STUB("w95vkt1NLpk", Java_com_sony_bdjstack_ti_Database_getTitles) STUB("w99gsSH-nWA", sceImeBackendGetStatus) +STUB("w9ALlfS+-1U", _ZNK7WebCore26IdentityTransformOperationeqERKNS_18TransformOperationE) +STUB( + "w9BT3Y6NzeA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEC2ERKS8_) +STUB("w9GNxAdZ79A", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIlEEEC2ERS6_) +STUB("w9LQhp4wNfE", _ZN7WebCore16FileReaderLoader5startEPNS_22ScriptExecutionContextERNS_4BlobE) +STUB( + "w9Nsaw9iEHg", + _ZN9Inspector20DOMBackendDispatcher15removeAttributeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("w9NzCYAjEpQ", + _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE3putES3_RSt8ios_basecd) +STUB( + "w9O+1MIAUX4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEED1Ev) +STUB( + "w9QCHi+hPMM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE8capacityEv) +STUB("w9TsZbsSuX0", uset_cloneAsThawed_67) +STUB("w9W42rQpJ-Q", _ZNK7WebCore5Color10serializedEv) +STUB( + "w9ZgjsqV7nY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEC2ERSA_) +STUB( + "w9aKAn3xJRA", + _ZN7WebCore21JSTextTrackCueGeneric15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB( + "w9ehtsVTkSo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEEC1Ev) +STUB( + "w9fCz0pbHdw", + _ZNSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE7_GetcatEPPKNSt6locale5facetEPKS5_) +STUB("w9iZlvnkMFU", WKPreferencesGetResourceTimingEnabled) +STUB("w9jZHU5QjxM", _ZN3sce16CommonDialogUtil6ServerD2Ev) +STUB( + "w9k2aLQa6SU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEplEm) +STUB( + "w9r0wLnFf5Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEEC2ERSA_) +STUB("w9rvk3g-YW4", _ZN3sce7Toolkit2NP2V28Commerce10ContainersC1ERKS4_) +STUB("w9uM8jBkjhw", _ZN4IPMI4impl10ServerImpl11getUserDataEv) +STUB( + "w9uZ-+PhMpU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEED1Ev) STUB("w9wlKcHrmm8", sceSystemServiceShowControllerSettings) +STUB("w9yljZe2Mlg", rgctx_fetch_trampoline_rgctx_40_p) +STUB("wA-2odSyaxE", _ZN7WebCore9FrameView34setViewportSizeForCSSViewportUnitsENS_7IntSizeE) +STUB("wA0LYGRV2KQ", glEndQuery) +STUB("wA33q23RD+A", + _ZN3JSC9StructureC2ERNS_2VMEPNS_14JSGlobalObjectENS_7JSValueERKNS_8TypeInfoEPKNS_9ClassInfoEhj) +STUB("wA3Ju2GJJIM", g_list_insert_sorted) +STUB( + "wA4w6a2xzjw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEE8capacityEv) +STUB( + "wA9LkwMGgBs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEE5beginEv) +STUB( + "wAAscxfXHmk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEptEv) +STUB( + "wADLCKVd1JM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "wAExtzKnFJo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEC1Ev) +STUB("wAGPHKduRHM", _ZN3sce2Np9CppWebApi7Matches2V113RemovedPlayerD1Ev) STUB("wAKZ-det+yo", sceFiosInitialize) +STUB("wAWyYd8-0Bk", _ZNK7WebCore12BlobDataItem6lengthEv) +STUB("wAcnCK2HCeI", _ZNSt13basic_filebufIwSt11char_traitsIwEE6setbufEPwi) STUB("wAcxBDLHj1M", sceNpUniversalDataSystemEventPropertyObjectSetBinary) +STUB( + "wAhiJ-NBtGk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEEC1ERS9_) +STUB("wAzC8QJlE7I", _ZN3JSC19HeapSnapshotBuilder4jsonEN3WTF8FunctionIFbRKNS_16HeapSnapshotNodeEEEE) +STUB( + "wAzZBL1th8k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEEC2ERSA_) +STUB( + "wB+AH4fShrg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEE11release_refEv) +STUB("wB+ROFjttwc", _ZN7WebCore8SVGNames15ideographicAttrE) +STUB("wB-Ti-ZJXfY", _ZThn8_N7WebCore26ActiveDOMCallbackMicrotaskD0Ev) +STUB( + "wB1by-Hmycw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEC1Ev) +STUB( + "wB6INCwV06E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEEC1EPS9_PNS2_10LibContextE) STUB("wB7IWzGp2v0", sceNpUniversalDataSystemDestroyContext) STUB("wB7VXMN6d7Y", sceDtcpIpCloseContentAsync) STUB("wBEOCxJbzQw", scePsmUtilGetEmojiAssetManagerSize) STUB("wBGmrRTUC14", sceUserServiceGetFriendFlag) +STUB("wBKAYO7yEXw", FT_GlyphSlot_Oblique) STUB("wBOQWjbWMfU", sceGameLiveStreamingEnableSocialFeedback) +STUB("wBP+8k4bjBk", _ZN3sce7Toolkit2NP2V27Ranking10UsersRanksD2Ev) +STUB("wBQMZWJzHiY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEEC2ERKS7_) +STUB( + "wBUDlInFkwY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEED2Ev) STUB("wBWjyBqYees", sceDtcpIpTimeSeekAsync) +STUB("wBaVZTLTjkg", _ZN15AbstractStorage7Service18clear_storage_listEv) +STUB( + "wBapqN9t0uY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEED1Ev) +STUB("wBas1oKAXRU", _ZN3JSC14setNeverInlineEPNS_14JSGlobalObjectEPNS_9CallFrameE) +STUB( + "wBfWCpMIIxw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEED1Ev) +STUB("wBgjoKfPqIw", fuse_fs_statfs) +STUB( + "wBi9o+gWaBA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEE5resetEPS9_) +STUB( + "wBmAgGRsD0I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEppEv) +STUB("wBrBQaGdYZA", mono_bitset_count) +STUB( + "wBu7Gn-xo2E", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEmmEv) +STUB( + "wBvJJ-Z+IIs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEC1EPS6_PNS2_10LibContextE) +STUB("wC1-8lzM0G0", _ZN3sce2Np9CppWebApi7Matches2V111AddedPlayer15unsetPlayerNameEv) +STUB( + "wC1iOMNxYsM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEE7add_refEv) +STUB( + "wC2X9ITaeSE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) STUB("wCGnkXhpRL4", sceUserServiceGetNpSubAccount) +STUB( + "wCUcxRLL6DU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEE11release_refEv) +STUB("wCVGrdAIASQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V16StatusEE10setContextEPNS2_10LibContextE) +STUB( + "wCVzkaeoabk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEC2Ev) +STUB("wCYFnwyl09w", _ZN7WebCore14ResourceHandleD1Ev) +STUB("wCZgPpQxGPM", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V18RelationEEaSERKS7_) +STUB("wCZvQ40us4c", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_21GameCustomDataMessageEED1Ev) +STUB("wCavZQ+m1PA", posix_spawnattr_setsigmask) +STUB( + "wCb2qHP9WiQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEE11get_deleterEv) +STUB("wCbG1uR6-T0", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container31contentInteractiveElementsIsSetEv) STUB("wCbG33VsbqQ", sceShellCoreUtilIsInSystemSuspendBlackList) +STUB("wCehaWNuStY", _U_dyn_info_list_addr) +STUB("wCfhaj6ayFw", _ZN7WebCore9JSElementC1ERKS0_) +STUB( + "wCnHglA0CH8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("wCnSbQWYyP4", _ZThn16_N9Inspector21InspectorConsoleAgentD0Ev) +STUB("wCp6xFoeY9g", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_20ChallengeRecvDetailsEE3getEv) STUB("wCqghwW7vQw", sceCompositorDeleteIndirectRenderTarget) +STUB("wCyLaecbav8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEEaSERS7_) +STUB("wCzksa5NdKc", _ZN7WebCore11PageOverlay5layerEv) +STUB( + "wCzu57ZKgnM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "wD0FJFkTaNA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseMatchResultsEEEEEEaSERSA_) +STUB( + "wD1gWklp3oQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEEEaSERSA_) +STUB( + "wD3JOSikEB4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEptEv) +STUB( + "wD4Jjvk4cVk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEEC1ERKS9_) +STUB("wDD01ujw2oA", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEEmmEv) +STUB("wDEeBUCdbtk", _ZNK3sce2Np9CppWebApi7Matches2V113ChildActivity6toJsonERNS_4Json5ValueEb) +STUB( + "wDGD-DP01zw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEEC2Ev) +STUB( + "wDJ69yUQH08", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEdeEv) +STUB( + "wDK7QHoNjsY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V53SkuEEEEEEdeEv) +STUB("wDLaq7IgfIc", _ZN3sce2np14JsonDocBuilderD0Ev) +STUB("wDN73R0zRVw", _ZN4Manx10FontStream4openEPKcPv) +STUB( + "wDNMGlJCwYk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEE11release_refEv) +STUB( + "wDNecvohIKk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE5beginEv) +STUB( + "wDPkdiNL-+A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEC2EPS8_) +STUB("wDQjpdaJG9A", _ZN3JSC8JSObject12toStringNameEPKS0_PNS_14JSGlobalObjectE) +STUB( + "wDbLSoFcinw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEaSERKS7_) +STUB("wDiTejvV0kY", _ZN7WebCore5ColorC1ERKS0_) +STUB( + "wDkdepgbsWs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEptEv) +STUB("wDmFLuFw5aw", WKBatteryManagerSetProvider) +STUB("wDmL2EH0CBs", iswalnum) +STUB("wDve80ZAAYU", _ZN7WebCore8Document46wasLoadedWithDataTransferFromPrevalentResourceEv) +STUB( + "wE-9E-966Cw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEE11release_refEv) +STUB("wE9w-+kLQfE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE8copyFromERKS7_) +STUB("wEBJdtyV-Zg", mono_class_get_nesting_type) STUB("wED4ZXCFJT0", sceGnmDispatchIndirectOnMec) +STUB("wEDj2m5omQA", _ZN3JSC8Debugger25setPauseOnExceptionsStateENS0_22PauseOnExceptionsStateE) +STUB("wEFMvcwAB+4", _ZN7WebCore23AuthenticationChallengeC1ERKS0_) +STUB( + "wEGTKxqXnJk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEE7reserveEi) +STUB("wEGeGTNWR1A", _ZN3WTF6ThreadD2Ev) +STUB( + "wEH6Y07Vo4Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ErrorResponseEEC2EPS6_PFvS8_EPNS2_10LibContextE) STUB("wEI22DiMH6U", sceBgftServiceIntUploadStopTask) +STUB("wEImmi0YYQM", __atomic_fetch_add_2) +STUB( + "wELMF7QvNns", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEneERKS9_) +STUB( + "wENlb4XZ+N0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEC1EPS8_) STUB("wEO+gMHs9NU", sceHmd2ReprojectionGetMirroringDisplayBufferSizeAlign) +STUB("wERs34fb56w", uprv_dlsym_func) +STUB("wESN-qrVhOU", _ZN3sce2np9WorkQueue4dtorEv) +STUB( + "wEU8oFtBXT8", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERb) +STUB("wEZyFXNW9Lc", WKBundleFrameConvertMonotonicTimeToDocumentTime) +STUB("wEa1mGMVTw4", _ZN7WebCore9HTMLNames11itemrefAttrE) STUB("wEaYn3s7qns", sceDebugIpmiGetConnectionWaitingThreadListByClientKid) +STUB( + "wEcqDuLhtkw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEC1EPS6_PNS2_10LibContextE) +STUB("wEgCff0QN5M", g_JSWebAssemblyModulePoison) +STUB( + "wEjwDQ8+OeY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEEppEv) +STUB("wElyE0OmoRw", _ZTSSt7collateIcE) +STUB("wEnKdXQL3rQ", _ZN3sce7Toolkit2NP2V212NetworkUtils13NetStateBasicC2Ev) +STUB( + "wEneStn02Eg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEptEv) +STUB("wEoYa5LiVCs", _ZN7WebCore8Settings23setDefaultFixedFontSizeEi) +STUB("wEtM+4xC5E4", RecvPacket) +STUB( + "wF+-UtkqvWA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEptEv) +STUB( + "wF-4CFPuJ-A", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE3endEv) STUB("wF0KcxK20BE", sceHttpAuthCacheImport) +STUB( + "wFIkD+CwiQs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEE4sizeEv) +STUB("wFLNa9nYSIU", + _ZNK7WebCore10FontRanges21glyphDataForCharacterEiNS_30ExternalResourceDownloadPolicyE) +STUB("wFPny9+OrAE", mono_metadata_custom_attrs_from_index) +STUB("wFQIZS-t2mo", mono_method_verify) +STUB("wFXXSbam0Kc", + _ZN3JSC21msToGregorianDateTimeERNS_2VM9DateCacheEdN3WTF8TimeTypeERNS3_17GregorianDateTimeE) +STUB( + "wFXrBZx4OsU", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC1ERKS8_) +STUB( + "wFbR5j-BiuE", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("wFcm6bgWB9Q", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData11setobjectIdEPKc) +STUB("wFdynVv+1oQ", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V18Variable8getValueEv) STUB("wFeAxEeEi-8", sceVoiceVADSetVersion) +STUB("wFgImJ86udM", _ZN23sceMetadataReaderWriter8KeyValue8allocateERKSsRKNS_5ValueEPFPvmEPFvS6_EPi) +STUB( + "wFlaB1TdnNs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEEC2Ev) +STUB( + "wFoQ7S4I5q0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("wFpxQmjDScM", _ZN9Inspector31NetworkBackendDispatcherHandlerC2ERKS0_) +STUB( + "wFqdeqYlg88", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEED2Ev) +STUB("wFqdvVnjKN0", _ZN3sce7Toolkit2NP15SnsPostFacebookC1Ev) +STUB( + "wFuxyFKF7Ew", + _ZN9Inspector26LayerTreeBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) STUB("wFvgq-KXT0Q", sceShellCoreUtilGetNetEvConfigFileInfoString) STUB("wG+84pnNIuo", sceNpUniversalDataSystemDestroyEvent) +STUB("wG0JOWdhhQU", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V18SortModeEEaSERKS7_) +STUB( + "wG2LGyp2MOY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEC1Ev) +STUB("wG53ujmymHI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEcvbEv) STUB("wG6+Pqh1prQ", sceFaceTrackerGetUserIdByTrackId) +STUB( + "wG8x1bxQR7M", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB( + "wG9h+PBe4Qw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEmmEi) +STUB("wG9oAbiICqU", mono_btls_ssl_ctx_set_debug_bio) +STUB( + "wGBrgG6TMUo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEE11release_refEv) +STUB( + "wGByAWBOtd4", + _ZN9Inspector20DOMBackendDispatcher21setInspectModeEnabledElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("wGDlA53kLcQ", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110PlayerTypeEE8pushBackERKS6_) +STUB( + "wGFuciKe0vs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB("wGGhfabJAbs", FTA_Remove_Module_psaux) +STUB("wGIeG3YVk-Q", _ZN7WebCore3URLC1ENS_18ParsedURLStringTagERKN3WTF6StringE) +STUB( + "wGJbXuZv1lE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "wGQXC6Vgc7Q", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEEiRNS2_10LibContextEPT_m) +STUB( + "wGQjB6xSgzw", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayeraSERS5_) +STUB( + "wGUkI5sj-40", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V114PersonalDetailEEEEEE5resetEPS9_) +STUB( + "wGWAtM-2KF8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEEEC1ERSA_) +STUB( + "wGWUnwbzyto", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEEcvbEv) +STUB("wGa2F00ouvc", getRegisteredCommInfoList) +STUB("wGe2stW-CTw", glGetFragDataLocation) +STUB( + "wGfADiCZkpk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEEEC2EPS8_) +STUB("wGksbXEKspk", _ZN7WebCore30closestWordBoundaryForPositionERKNS_15VisiblePositionE) +STUB( + "wGl5e8mtRRc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "wGlu6rXyoRM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEEC1Ev) +STUB("wGn8sX26Fds", glFlushMappedBufferRange) +STUB( + "wGoNcujHd6U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEED1Ev) STUB("wGobSSrBM4s", sceLncUtilGetLocalProcessStatusList) +STUB("wGokRTIQZgc", bdjbg_init) +STUB("wGwfmZ5wFDg", delegate_virtual_invoke_imt_m_9_p) +STUB("wH0c4j52kRA", _ZN12video_parser7cVpUtil12LowerToUpperEPcS1_i) +STUB("wH3QXGZ+uL8", uhash_remove_67) +STUB("wH4XZCjtfW0", _ZNK7WebCore10MouseEvent9toElementEv) +STUB("wH6T3uq38q0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEcvbEv) +STUB("wH9jkBRLvzg", Java_java_net_PlainSocketImpl_socketConnect) +STUB( + "wHEPO3sCuL4", + _ZN9Inspector17BackendDispatcher12CallbackBase11sendSuccessEON3WTF6RefPtrINS2_8JSONImpl6ObjectENS2_13DumbPtrTraitsIS5_EEEE) +STUB( + "wHFTWPgZwag", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEEC1Ev) +STUB( + "wHJmKb0MzR0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEC1Ev) STUB("wHKiDjNLQwI", sceMusicPlayerServiceGetTrackInfo) +STUB( + "wHL0uW+3Y2Y", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEdeEv) STUB("wHNEWUkYzso", sceAppInstUtilAppInstallRequestAddcontFromDisc) +STUB("wHTcu1PV-MU", cairo_image_surface_get_data) STUB("wHY17vvA+mA", sceNpManagerIntOnlineId2UserId) STUB("wHY2UG30T4c", sceDevUsbDeleteHostKevent) +STUB("wHZwCpZVcGI", udata_setCommonData) +STUB("wHaIouHsywc", GCC_except_table130) STUB("wHacm9eagys", sceMbusAddHandleWithModuleId) STUB("wHbu4oz+z0I", sceVorbisDecReadFilter) +STUB("wHbuZmRg3do", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEE3getEv) +STUB("wHfRSkpiyzQ", _ZN3sce7Toolkit2NP23DownloadListInputParamsC2Ev) +STUB( + "wHg5OebY5YI", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_9Recording4TypeEEEN3WTF8OptionalIT_EERKNS5_6StringE) +STUB( + "wHgCwuTTv3s", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEptEv) +STUB( + "wHkTl2YJe6A", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils12Notification15UserStateChangeEE19setCustomReturnCodeEi) STUB("wHnZU1qtiqw", sceHmdInternal3dAudioOpen) +STUB("wHrImHQ9U0M", GCC_except_table241) +STUB("wHrNxxWgZd0", Java_com_sony_bdjstack_javax_media_controls_VideoDecoder_getVideoSize) +STUB( + "wHsorDExfzs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "wHvd1TWHDYU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "wHwqSXZaXTU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEEneERKS9_) +STUB( + "wI-sksm6Ufw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("wI2MuSfoGmY", _ZNK7WebCore11MediaSample13videoMirroredEv) +STUB("wI2eC442QK8", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsD1Ev) +STUB("wI4UPNf5YNY", _ZN7WebCore14ResourceHandle20forceContentSniffingEv) +STUB("wI63wNMkAqM", udatpg_close_67) +STUB("wIBkDNjs6Z4", _ZN3JSC7Symbols19toObjectPrivateNameE) +STUB( + "wIFwPakNn90", + _ZN7WebCore13MutationEvent17initMutationEventERKN3WTF12AtomicStringEbbPNS_4NodeERKNS1_6StringES9_S9_t) +STUB("wIFznvI3rYU", xval) STUB("wIGold7Lro0", sceNetConfigAddRouteWithInterface) +STUB("wIIyZWfURJk", mono_aot_Sce_Vsh_WebBrowserunbox_trampolines) STUB("wIJsiqY+BMk", sceRudpGetContextStatus) +STUB("wIMt4miKfyY", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError12messageIsSetEv) +STUB( + "wIMytf3QdVI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "wIOkhBPBBMw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE6resizeEj) +STUB("wIRtYc0hrWM", _ZN3JSC41DeferredStructureTransitionWatchpointFireC1ERNS_2VMEPNS_9StructureE) +STUB("wITIbalx5gk", _ZN7WebCore9HTMLNames20aria_describedbyAttrE) +STUB("wITj6RMihC4", _ZN3WTF6Thread14changePriorityEi) +STUB( + "wIWAXGW+wMo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEC1EPNS2_10LibContextE) +STUB( + "wIWiYu1UCDk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE5emptyEv) STUB("wIX00Brskoc", sceNpServiceCheckerIntGetAvailability) STUB("wIX4m0mLfqA", sceNpManagerIntAddOnlineIdChangeCallback) +STUB( + "wIXZby0U++A", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEC2Ev) +STUB("wIZEfsXrrxA", + _ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest19npServiceLabelIsSetEv) STUB("wIc92b0x6hk", sceSystemServiceLaunchTournamentsTeamProfile) +STUB("wIeVYYUX2ak", GetMute) +STUB("wIfsAn4YUUQ", + _ZN7WebCore5Range6createERNS_8DocumentEON3WTF6RefPtrINS_4NodeENS3_13DumbPtrTraitsIS5_EEEEiS9_i) +STUB( + "wIgJaQL8Qfo", + _ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForRead12setSessionIdEPKc) +STUB( + "wIl28yJQCh0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEplEm) +STUB( + "wIovHSlt9R0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEC1Ev) +STUB("wIp3xo8a-RY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEaSERKS7_) STUB("wIsKy+TfeLs", sceNetCtlRegisterCallbackForNpToolkit) +STUB("wIua3QUWZ10", _ZN3PAL13SleepDisablerD2Ev) STUB("wJ-RDAi-Owc", sceFsISSchedStatThread) +STUB("wJ-k9+UShJg", _ZN3sce2np9EventFlag6CancelEm) +STUB( + "wJ5Lifc0Huc", + _ZN3sce2Np9CppWebApi12Leaderboards2V113ErrorResponse8setErrorERKNS1_6Common12IntrusivePtrINS3_5ErrorEEE) +STUB("wJ5jCpkCv-c", CA_MGMT_certDistinguishedNameCompare) STUB("wJABa1X4+ec", sceKernelGetExecutableModuleHandle) +STUB( + "wJGWP8GMugU", + _ZN7WebCore6Editor21applyStyleToSelectionEON3WTF3RefINS_12EditingStyleENS1_13DumbPtrTraitsIS3_EEEENS_10EditActionENS0_15ColorFilterModeE) +STUB("wJGfm1nMv6s", _ZN7WebCore9HTMLNames7menuTagE) +STUB( + "wJGxnrKRwT0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEptEv) +STUB("wJIX1JM1ACo", JVM_GetSockOpt) +STUB("wJIeK4RrCTg", UCNV_FROM_U_CALLBACK_SUBSTITUTE_59) +STUB( + "wJL2gUPbqT0", + _ZN7WebCore4Page13rangeOfStringERKN3WTF6StringEPNS_5RangeENS1_9OptionSetINS_14FindOptionFlagEEE) +STUB("wJP+nBVypew", mono_aot_Sce_Vsh_Orbis_BgftAccessorjit_code_end) STUB("wJPWycVGzrs", sceNpScoreGetRankingByAccountIdPcId) +STUB("wJUZjU5SfhY", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIdEptEv) +STUB( + "wJV54iyWL3Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEED1Ev) +STUB("wJWqKZOj4Ts", _ZN3sce2Np9CppWebApi12Leaderboards2V14User12setAccountIdERKm) STUB("wJXikG6QFN8", sceVideodec2Reset) +STUB("wJZkhHdjP7I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE5emptyEv) +STUB("wJdI4GD6sYI", mono_aot_ReactNative_Modules_Vsh_Gct_Telemetrymethod_addresses) +STUB( + "wJn-wV7mWq4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("wJsl7dz2gWs", _ZNK4Manx6Cookie8httpOnlyEv) STUB("wJtaTpNZfH4", sceGnmSqttSetCuPerfMask) +STUB("wJvsHbLD7aI", _ZN3WTF10StringImpl4findEPS0_) +STUB("wJvtSG39UTY", _ZN4Manx12getFontScaleEPKwj) +STUB("wJxIJlJqUMw", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13SessionMemberEEC1ERKS4_) +STUB("wJzrbtZ7MOk", cairo_surface_create_for_rectangle) +STUB( + "wK7wakwDDQY", + _ZN3JSC8JSObject24getOwnPropertyDescriptorEPNS_14JSGlobalObjectENS_12PropertyNameERNS_18PropertyDescriptorE) +STUB("wKBkBYiG32Q", _ZN3JSC17DeferredWorkTimer14hasPendingWorkEPNS_8JSObjectE) +STUB("wKL93RskfiM", utext_getNativeIndex_67) +STUB("wKVEDIjE89w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEmmEv) +STUB( + "wKaGqgeY0Ro", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEEaSERSA_) +STUB( + "wKbnGGz7uaU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB("wKnIMi3wISE", mono_aot_I18N_MidEastjit_code_end) STUB("wKojqISnuVU", sceAvControlSet2dVrMode) +STUB("wKsLxRq5+fg", _Mbstate) +STUB( + "wKsttCRkGbY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEED1Ev) +STUB( + "wKtyVH-Y4ac", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("wKvnAYtcaPs", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes14unsetInteger10Ev) +STUB("wKzE7cS9yxw", + _ZN9Inspector21InspectorConsoleAgentC2ERNS_12AgentContextEPNS_18InspectorHeapAgentE) +STUB( + "wKzx0ueRLtg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEptEv) +STUB("wL1gyXiT9JQ", il2cpp_gc_get_used_size) +STUB("wL34WUtZtCk", _ZN3sce7Toolkit2NP2V28Commerce9ContainerC1ERKS4_) +STUB("wL3jP+QXAHo", mono_method_desc_match) +STUB("wL4rygvgvTQ", _ZN7bmalloc6IsoTLS28determineMallocFallbackStateEv) +STUB( + "wLH1RMZFkN8", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody6toJsonERNS_4Json5ValueEb) +STUB("wLHhrPqDtiM", _ZN7WebCore8SVGNames13pointsAtYAttrE) STUB("wLNtZytqFAQ", sceDataTransferRequestStartFgTransfer) +STUB("wLP4k8D3hWw", _ZN7WebCore19ResourceRequestBase15setHTTPReferrerERKN3WTF6StringE) +STUB("wLPactuWzSQ", uidna_IDNToUnicode_67) +STUB( + "wLWbyI95Me0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE6resizeEj) STUB("wLaxchvEEnk", sceNpLookupDeleteRequest) +STUB("wLlFkwG9UcQ", time) +STUB("wLljjEtN3vY", + _ZN15AbstractStorage14TwitterStorage9SerializeESt10shared_ptrINS_7ContentEES1_INS_4ItemEE) +STUB( + "wLnZuXkEPC4", + _ZN7WebCore5Cairo11drawSurfaceERNS_20PlatformContextCairoEP14_cairo_surfaceRKNS_9FloatRectES7_NS_20InterpolationQualityEfRKNS0_11ShadowStateERNS_15GraphicsContextE) STUB("wLo6wmyVRMQ", ScePsmMonoTerm) +STUB("wLpBqSY0Su4", _ZN7WebCore7Element13scrollByPagesEi) +STUB("wLqQQWyOdpc", FT_CMap_New) +STUB("wLsJlmgEIaI", _ZN3sce4Json5Value10referValueERKNS0_6StringE) STUB("wLvhNHWWJTU", scePerfTraceUpdate) +STUB( + "wLzFZP2jCb4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEC2ERKS7_) STUB("wLzJUeJqDxQ", sceBgftServiceIntPlayGoGetDiscIniChunksInstallProgress) +STUB("wM3y9VvsxC8", _ZN7WebCore20serializationForHTMLENS_5SRGBAIhEE) +STUB("wM4LO2iK3s8", _ZNK3sce4Json6String5emptyEv) +STUB("wM4q1JMisvA", _ZN3sce2np9WorkQueue15GetFinishedItemENS0_14WorkItemStatusE) +STUB("wM4xiBYyJW0", _ZN7WebCore9HTMLNames13figcaptionTagE) +STUB( + "wM8Sl4uXkxw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEC2Ev) +STUB("wMG6XaKZ41E", + _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody20unsetCreatedDateTimeEv) +STUB("wMOrtsivX30", _ZNK3sce2Np9CppWebApi13InGameCatalog2V511ErrorEntity8getErrorEv) +STUB("wMQnfMu7jyM", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEEixEm) +STUB( + "wMRQdFYGqIQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEED1Ev) +STUB( + "wMRffYg83Qw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEC2EPS6_PNS2_10LibContextE) +STUB( + "wMUJ9uf6iug", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEEEC2Ev) STUB("wMZIIoyhuHY", sceCesSJisCodeToJisX0213) +STUB("wMZWLJunf5c", _ZNK7WebCore13HitTestResult19listBasedTestResultEv) +STUB( + "wMgjdZGE2ys", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEEC1EPS9_PNS2_10LibContextE) STUB("wMmr-E7JTRA", sceUserServiceGetVolumeForDs4Speaker) STUB("wMtSHLNAVj0", sceUserServiceGetShareStatus2) +STUB("wMu+dIbw7c0", _ZN3WTF29cryptographicallyRandomNumberEv) +STUB( + "wMvWuauNe2o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEE10setContextEPNS2_10LibContextE) +STUB("wMyjXnidJQ0", WKPageSetShouldSendEventsSynchronously) +STUB("wN-ay2QYC0U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEE3getEv) STUB("wN5zRLw4J6A", sceUserServiceSetFileBrowserSortTitle) +STUB( + "wN7zerW5YV0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEC2EPS8_) +STUB( + "wN96B0UeyJc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117GameSessionPlayerEEEEEEC1Ev) +STUB( + "wN9jwcMcX0c", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE8capacityEv) +STUB( + "wNBlO05CwVU", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody12unsetString1Ev) +STUB("wNC8Z93URKU", _ZN3sce7Toolkit2NP2V27Ranking7Request11GetGameDataD1Ev) +STUB( + "wNCioeod8JI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEC1ERKS7_) +STUB("wNKlMLyTzww", + _ZN3JSC8Bindings13RuntimeObject12methodGetterEPNS_9ExecStateElNS_12PropertyNameE) +STUB( + "wNMvcz16tWo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEC2Ev) +STUB( + "wNPcpZMO6Uc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEixEm) +STUB( + "wNRLYP8IKzk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "wNSSE4AmzCc", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountId15hasasOfDateTimeEv) +STUB("wNUdyLfKQ9U", YGNodeStyleGetFlexBasis) STUB("wNeGsNes5ck", sceKernelIccNotifyBootStatus) +STUB("wNhdQWqZALM", _ZN3WTF17StringPrintStreamC1Ev) +STUB("wNkGgsVUB+c", _ZL10ThreadInfo) +STUB( + "wNmAtLXM7T8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEC1ERKS7_) +STUB( + "wNr1eANu1Ik", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi39ParameterToSendPlayerSessionInvitationsC2ERS5_) +STUB( + "wNsK58YlEw0", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody17unsetJoinDisabledEv) +STUB( + "wNt1TVJ9IP8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("wNu7k5j5npw", generic_trampoline_rgctx_lazy_fetch_p) +STUB( + "wNxXfVYHBgQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEE5resetEPS6_) +STUB("wO1-omboFjo", _Stoflt) +STUB("wO1D4B90k0k", cairo_device_destroy) +STUB("wO2ZzwwSOGA", ucol_greater_67) +STUB("wO2ywgcl98w", mono_bitset_test_bulk) +STUB( + "wO5nfZ6PI-g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "wO6b-MeeLrM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEaSERKS7_) +STUB("wO8Zzs7YvCw", _ZN13MsvMetaEditor11UpdateTitleEPKcS1_t) +STUB("wOE-bzWk1UE", _ZN7WebCore8SVGNames23underline_thicknessAttrE) +STUB("wOIw2laLcl8", _ZN3JSC8Subspace33parallelNotEmptyMarkedBlockSourceEv) +STUB("wOK56TKiIhY", _ZL21emergency_malloc_lock) +STUB( + "wOPGv1BomT4", + _ZThn24_N9Inspector28InspectorScriptProfilerAgent17didEvaluateScriptEN3WTF7SecondsEN3JSC15ProfilingReasonE) +STUB("wOWXwyIvlew", uloc_getName) +STUB("wOXvcIahiGU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEaSERS7_) +STUB("wOe+n1xNytw", WKPreferencesSetViewGestureDebuggingEnabled) +STUB("wOfhYxc7QjI", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead14setCustomData1EPKvm) STUB("wOgJGhjCAmw", sceVoiceChatGetChannelMemberActiveChannelMatchingState) +STUB( + "wOpYb99W8ZY", + _ZN3sce2Np9CppWebApi7Matches2V125RequestTeamResultsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_18RequestTeamResultsEEE) +STUB( + "wOurCGxbBFM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEEEEC1EPNS2_10LibContextE) STUB("wOxscP3TysM", ScePsmMonoArraySizeInBytes) +STUB( + "wP+ZFD1VWDs", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V18Variable8setOwnerERKNS1_6Common12IntrusivePtrINS3_5OwnerEEE) +STUB("wP-FIy-gRq0", + _ZN3sce2Np9CppWebApi11UserProfile2V19BlocksApi27ParameterToGetBlockingUsers9setoffsetEi) STUB("wP0Ab2maR1Y", sceNetCtlGetScanInfoBssidForSsidListScanIpcInt) +STUB( + "wP0b3RiDNNc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEppEi) +STUB( + "wP99ev8a9fM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEED2Ev) +STUB( + "wP9gzp8v0Y0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEE7add_refEv) +STUB( + "wPBG6ln9gNw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEppEv) +STUB("wPBtYd5mlzo", SSL_CTX_use_PrivateKey_file) STUB("wPDgF0XIIqQ", sceKernelStreamWriteDeactivate) +STUB("wPEv3CHUImU", _ZNK3sce2Np9CppWebApi7Matches2V120ResponseMatchResults20getCooperativeResultEv) STUB("wPFah4-5Xec", sceNpTusAddAndGetVariableA) +STUB( + "wPGIwCmKy9w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("wPGlix12L-k", _ZN7WebCore12SharedBufferC2Ev) STUB("wPJGwI2RM2I", sceSystemGestureUpdateAllTouchRecognizer) +STUB("wPL3R1Y1gec", _ZN7WebCore8SVGNames27strikethrough_thicknessAttrE) +STUB("wPLpcdkKn9E", _Z16acceptIpcChanneli) +STUB( + "wPN6j-0Zp84", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEE5resetEPS6_) +STUB("wPNEMtjHfrI", mono_aot_I18N_CJKunbox_trampolines_end) +STUB( + "wPO9107ThVw", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlotD1Ev) +STUB("wPQ0rMK4-JU", FT_Load_Char) +STUB( + "wPRE7cD-bK8", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5getIdEv) STUB("wPZSJibBFsw", sceAudiodecRegisterCodec) +STUB("wPZXJQrLeds", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V223FilterProfanityResponse6toJsonERNS_4Json5ValueEb) +STUB( + "wPa261TK7MU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "wPgOX8UG1cQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEdeEv) +STUB("wPmbrkSpTzk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEaSERKS7_) +STUB("wPp+bNFYY3w", _ZN3WTF12AtomicString6numberEi) +STUB( + "wPs3GdqeMzE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEEC1Ev) +STUB( + "wPsI1qthIVI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEEC2Ev) +STUB("wPt4xvqhcLQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEEdeEv) STUB("wPtNaLuyLKk", sceDataTransferTargetRequestReboot) +STUB("wPwQ0-epfJw", __wrap_readlink) +STUB("wPxplF32pXE", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V113AttributeTypeEEC1Ev) +STUB( + "wQ-fzWkSvs0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEdeEv) +STUB( + "wQ-qtBqg3s8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE3endEv) STUB("wQ5dN1p4tcE", scePktMgrSetUlpResPayload) +STUB( + "wQ6ttE59npg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB("wQ9-tXakN90", _ZN3WTF14dupCloseOnExecEi) STUB("wQ9IitfPED0", sceFontOutlineVertexesInterfaceInit) +STUB("wQ9pO7tm3DU", _ZN4IPMI6Server12EventHandler21onAsyncMethodDispatchEPNS_7SessionEjjPvmS4_m) STUB("wQDizdO49CA", sceUserServiceSetGlsCommunityId) +STUB( + "wQDq0I43k8o", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEE5beginEv) +STUB( + "wQHX90pXenw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEED1Ev) +STUB("wQIS4tGUhrI", _ZN7WebCore9HTMLNames8titleTagE) +STUB("wQLMyxkpyoY", ucptrie_internalU8PrevIndex) +STUB("wQN9ut1tpP8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V510AnnotationEEneERKS7_) +STUB("wQP33i9qQPI", _ZN3JSC16IsoSubspacePerVM5forVMERNS_2VME) +STUB("wQPkA8yHr4M", _ZN7WebCore11ContentTypeC1ERKN3WTF6StringE) +STUB("wQRrOOXbxlM", _ZN9Inspector28InspectorScriptProfilerAgentnaEm) STUB("wQW9FiqIg2I", sceFsWsCreate) +STUB( + "wQX-boqRCAk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEmmEv) +STUB( + "wQYIcgNc024", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE3endEv) +STUB( + "wQZSd2EOn0E", + _ZN3sce2Np9CppWebApi7Matches2V127ReportResultsRequestFactory6createEPNS1_6Common10LibContextENS5_12IntrusivePtrINS3_19RequestMatchResultsEEEPNS8_INS3_20ReportResultsRequestEEE) +STUB( + "wQdnQh3mEq8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119AdditionalStatisticEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("wQeNb+Lq4ak", fuse_fs_access) +STUB( + "wQfCJVC8JeE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE5beginEv) STUB("wQfd7kfRZvo", sceCameraIsConfigChangeDone) +STUB("wQgEa1jmctg", _ZN7WebCore18PlatformTimeRangesC1ERKS0_) +STUB( + "wQhnoUPCJVo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEEC2EPS8_PNS2_10LibContextE) STUB("wQlp94zzrWg", sceRegMgrSrvGetQAFforReg) +STUB("wQpMj4CVRs8", _ZN7WebCore18CustomHeaderFieldsC2Ev) +STUB( + "wQr-6Qn7-oc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEEC1Ev) +STUB("wQucK2Io0XQ", rgctx_fetch_trampoline_mrgctx_34_p) +STUB("wR0f0av3W9I", + _ZN3sce2Np9CppWebApi14SessionManager2V117SearchGameSessionC2EPNS1_6Common10LibContextE) +STUB("wR0o0b2T5gM", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V18Variable8getOwnerEv) +STUB("wR7tDCezaiU", _ZNK3WTF6String28convertToUppercaseWithLocaleERKNS_12AtomicStringE) +STUB("wRA9-Ih1MkU", _ZNK7WebCore15ActiveDOMObject30assertSuspendIfNeededWasCalledEv) +STUB("wRB3MY5Nhq4", _ZN12video_parser18cProfileCheckerMp4D1Ev) +STUB("wRCrMpSjzjw", utrans_openInverse_67) +STUB( + "wREfYiBWM9I", + _ZN7WebCore30InspectorInstrumentationWebKit31shouldInterceptResponseInternalERKNS_5FrameERKNS_16ResourceResponseE) +STUB( + "wRKSZIgR3-Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEC1ERS7_) +STUB( + "wRNwB78LWe4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "wROJUFhYabE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEED1Ev) STUB("wRPXMGtkOq0", sceMbusInit) +STUB( + "wRWPSrhLQNo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEEE3getEv) +STUB( + "wRWkB7UnAaQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponseMatchStatisticsEEEEEEC1Ev) STUB("wRYVA5Zolso", sceKernelClockGetres) STUB("wRbq6ZjNop4", sceAgcGetRegisterDefaults2Internal) +STUB("wRcRGwS8arU", + _ZN7WebCore20LegacySchemeRegistry32registerURLSchemeAsEmptyDocumentERKN3WTF6StringE) +STUB("wRflNM0P98U", _ZN7WebCore8Document13svgExtensionsEv) +STUB("wRgdMnfoD6A", unum_toPattern_67) +STUB("wRgkEJFWGCY", _ZN3sce2Np9CppWebApi7Matches2V120RequestPlayerResultsD1Ev) +STUB( + "wRjo0NmR0HE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEC1EPS6_PNS2_10LibContextE) +STUB("wRmWjXuPRHc", _ZNK7WebCore9FrameView18layoutViewportRectEv) +STUB("wRs5S54zjm0", llroundl) +STUB( + "wRt2ee3IEDo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEED2Ev) +STUB( + "wRtLygC6DmU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE5clearEv) +STUB("wRyKNdtYYEY", _ZTSSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE) +STUB("wS3FCjBDN6w", _ZN7WebCore11RoundedRectC1ERKNS_10LayoutRectERKNS_10LayoutSizeES6_S6_S6_) +STUB( + "wS4BmP9WtKA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEneERKS9_) +STUB("wS5flYFv0H0", _ZN7WebCore17valueToByteStringERN3JSC14JSGlobalObjectENS0_7JSValueE) +STUB( + "wS6DC0qTbqk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE3endEv) +STUB( + "wS6EYAZD0Jk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V15ErrorEEEEEE11release_refEv) +STUB( + "wS8gTToRWjc", + _ZN3sce2Np9CppWebApi14SessionManager2V134PostGameSessionsSearchResponseBodyC2EPNS1_6Common10LibContextE) +STUB("wSCKvDDBPy4", _ZN3sce2np7HttpUriD1Ev) STUB("wSGXKvag-Jg", sceNpGriefReportWriteReportItem) +STUB( + "wSISvG5+77c", + _ZN9Inspector24ConsoleBackendDispatcherC2ERNS_17BackendDispatcherEPNS_31ConsoleBackendDispatcherHandlerE) +STUB("wSO4Z94Iskw", _ZN12video_parser17cVideoOperatorEtsC2EPKc) +STUB("wSQv7alS9b4", _ZNK3JSC8JSObject43anyObjectInChainMayInterceptIndexedAccessesERNS_2VME) +STUB("wSZKMWhisbM", _ZN7WebCore5Image9nullImageEv) +STUB( + "wSaAXPfXPy0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE21intrusive_ptr_sub_refEPS9_) +STUB("wSjT8aUbVp8", ubidi_setReorderingOptions_67) +STUB( + "wSlE4pliCxc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V111GameSessionEEEEEEaSERKSA_) +STUB( + "wSmDr9K1FRc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEC1Ev) +STUB("wSx76W-9DSM", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15CauseEEptEv) STUB("wSxRrFKzKXk", sceKernelGetBasicProductShape) +STUB( + "wSz6s4suf5c", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "wSzE2cYEsJo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEC1EPS8_) +STUB("wT+HL7oqjYc", _ZNSt10moneypunctIcLb1EED1Ev) +STUB( + "wT4spuhbnWA", + _ZN3sce2Np9CppWebApi14SessionManager2V136JoinedGameSessionWithPlatformFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_29JoinedGameSessionWithPlatformEEE) +STUB("wT7N0P--+wk", mono_aot_Sce_Vsh_VideoRecordingWrapperunbox_trampolines_end) +STUB("wT8R-goU-wo", _ZNK7WebCore17FrameLoaderClient42shouldEnableInAppBrowserPrivacyProtectionsEv) +STUB( + "wT9FeIU2VW0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEC2ERS7_) +STUB("wTAwYxAyh3I", _ZN3sce7Toolkit2NP2V28Commerce12SubContainerC1ERKS4_) +STUB( + "wTJk2JlpUE0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEmmEi) STUB("wTKF4mUlSew", sceImeVshConfirmPreedit) +STUB("wTNvcaQngco", fuse_fs_setxattr) STUB("wTO4cMkVNaM", sceSrcUtilityGetHandleSize) +STUB( + "wTOnh4yymKY", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer15getcontainerIdsEv) +STUB( + "wTQo9rormds", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE5emptyEv) +STUB("wTRdXzKM3u4", _ZNK7WebCore20ResourceResponseBase16textEncodingNameEv) +STUB("wTSoWfa8CaA", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIfEEE3getEv) +STUB( + "wTTGWdtpbBQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEC2EPS6_PNS2_10LibContextE) STUB("wTUwGfspKic", sceNpTrophyGetGroupInfo) +STUB("wTW3RnfuwJg", fuse_exit) +STUB("wTZgIXezihg", _ZN7WebCore18DOMWindowExtensionD0Ev) +STUB("wTb9YrUl2LA", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIiED2Ev) +STUB("wTcAJ9lu8ek", mono_aot_Sce_Vsh_SystemLoggerWrapperunbox_trampolines) +STUB( + "wTevu7VbQms", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("wTjDJ6In3Cg", lcong48) +STUB( + "wTomv6Ohxss", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) STUB("wTpfglkmv34", sceMsgDialogProgressBarSetValue) STUB("wTuuw4-6HI8", sceNpTusGetMultiSlotVariableForCrossSaveVUser) +STUB("wTwostbt3gg", + _ZNK3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchDetail13isInitializedEv) +STUB( + "wTzaoJtap74", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEE21intrusive_ptr_sub_refEPS7_) +STUB("wU2zzSFpOF0", Java_java_lang_reflect_Array_setDouble) +STUB( + "wU5ZEI9nl0g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEC1Ev) +STUB("wU6aXxIr4bQ", _ZN3WTF12base64DecodeENS_10StringViewENS_33SignedOrUnsignedCharVectorAdapterEj) +STUB("wU8DpYIoYsQ", _ZN3sce2Np9CppWebApi7Matches2V14Task13setActivityIdEPKc) +STUB( + "wU8W8tHD8pU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEED2Ev) +STUB("wU95MQW2F3c", _ZN3sce7Toolkit2NP2V212EventsClient13EventDurationD1Ev) +STUB( + "wUAquNjzA5g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEmmEi) +STUB( + "wUCRGap1j0U", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERe) +STUB( + "wUCS9-fuOKg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE21intrusive_ptr_sub_refEPS9_) +STUB("wUCcX6gR2+g", ucol_getVariableTop_67) +STUB("wUFdGCoSBjM", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_26ActivityFeedCondensedStoryEE7destroyEPS3_) +STUB("wUMAZ4-w0zA", _ZN3sce7Toolkit2NP2V27NpUtils12Notification15UserStateChangeD1Ev) +STUB( + "wUMtxk7SrRg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEC1Ev) STUB("wUT4cOK0bj0", sceNpManagerIntTemporarySignout) +STUB("wUYrOBcxB34", X509_verify_cert) +STUB("wUa+oPQvFZ0", _Hypot) +STUB("wUbSyYekZ2Y", WKBundlePageNumberForElementById) +STUB("wUcj2Hfr2W8", Java_java_awt_GnmRobotHelper_init) +STUB("wUd8+HNDBcg", _ZNK3sce2Np9CppWebApi14ConnectAccount2V212PartnerToken6toJsonERNS_4Json5ValueEb) +STUB("wUdJhLXHJ20", _ZN7WebCore4Node14setTextContentERKN3WTF6StringE) +STUB( + "wUgRrWyJBdI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEE11get_deleterEv) STUB("wUmwXZHaX1w", sceNpMatching2SignalingGetPingInfo) +STUB("wUy0lj1mDdk", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils13NetStateBasicEE3setEv) +STUB( + "wUz-T7nQrio", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB("wUzYBhKdcJY", ucnv_extGetUnicodeSet_67) +STUB( + "wUzoLk4a5J0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE5emptyEv) +STUB("wV+UKEz5Qjc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V59PublisherEE11release_refEv) +STUB("wV-UQh6FVLY", _ZNK3sce2Np9CppWebApi7Matches2V119RequestMatchResults6toJsonERNS_4Json5ValueEb) STUB("wV04-VveLpE", sceVnaStartKeywordDetection) +STUB( + "wV1V9Qz5CoM", + _ZN7WebCore17PageConsoleClient10addMessageEN3JSC13MessageSourceENS1_12MessageLevelERKN3WTF6StringES7_jjONS4_6RefPtrIN9Inspector15ScriptCallStackENS4_13DumbPtrTraitsISA_EEEEPNS1_9ExecStateEm) STUB("wV3jlvsT5jA", sceUserServiceSetEventCalendarType) +STUB( + "wVAUKJ+Y+4I", + _ZN7WebCore20RenderEmbeddedObject29setPluginUnavailabilityReasonENS0_26PluginUnavailabilityReasonE) +STUB("wVCUVg3XpAQ", mono_aot_System_Net_Http_WebRequestjit_code_end) +STUB("wVO9QbbpOBU", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V15ErrorD1Ev) +STUB("wVY5DpvU6PU", + _ZNKSt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE6do_putES3_bRSt8ios_basewe) +STUB("wVbBBrqhwdw", __mulodi4) STUB("wVdn78HKc30", sceNpHeapDestroy) +STUB( + "wVesrZ5ZPW0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEC1EPNS2_10LibContextE) +STUB("wVfsyIq050c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEEC2ERS9_) +STUB( + "wVjOw7Ct+nk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE6resizeEj) STUB("wVkehxutK-U", sceImeForTestFunction) +STUB("wVlPnnW7Evk", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V111OfferStatusEE5emptyEv) +STUB("wVo8f0DV38E", lchmod) +STUB("wVoC0+Jf2EY", uprv_uint16Comparator) +STUB("wVpBRe2xp+s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEC2ERS7_) +STUB( + "wVqC52o2PHQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEED2Ev) +STUB("wVqClDHSLdY", _ZN7WebCore20TransformationMatrix9translateEdd) +STUB( + "wVqfIbX8-9o", + _ZN7WebCore17FullscreenManager27requestFullscreenForElementEPNS_7ElementENS0_19FullscreenCheckTypeE) +STUB("wVqoOFPQiJI", generic_trampoline_delegate) STUB("wVqxM58sIKs", sceNpTrophy2UnregisterUnlockCallback) STUB("wVsAb+Zyr1Y", sceShareUtilityAdvanceQueryServiceInfo) +STUB("wVv6bgzPwss", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110TaskStatusEEEED1Ev) +STUB("wVwETBRI6B4", _ZN3sce7Toolkit2NP2V27Session11SessionDataC1ERKS4_) STUB("wVwPU50pS1c", sceAudioOutSetMixLevelPadSpk) +STUB("wW+Pyy9LiGA", _ZNK7WebCore20ResourceResponseBase14isInHTTPFamilyEv) +STUB("wW+k21cmbwQ", _ioctl) +STUB("wW-C9fYsgnU", _ZN9Inspector22HeapFrontendDispatchernaEm) +STUB( + "wW4jTznZqAE", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToSetPlayerSessionMemberSystemPropertiesD1Ev) +STUB( + "wW5ObWAQ8HA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "wW73PoQwp9s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEptEv) +STUB( + "wW8d4yFcbt0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEED1Ev) +STUB("wWExpSMGya0", WKBundleFileHandleCreateWithPath) +STUB("wWG7OQuQq-w", mono_mempool_new) +STUB( + "wWGStrYAlCw", + _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container8setMediaERKNS1_6Common12IntrusivePtrINS3_14ContainerMediaEEE) +STUB( + "wWIsjOqfcSc", + _ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_bRSt8ios_baseRNSt5_IosbIiE8_IostateERSbIwS2_SaIwEE) +STUB( + "wWJ+kkgYhCw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEmmEv) +STUB( + "wWJyB5whlAk", + _ZN7WebCore10resolveDNSERKN3WTF6StringEmONS0_17CompletionHandlerIFvONSt12experimental15fundamentals_v38expectedINS0_6VectorINS_9IPAddressELm0ENS0_15CrashOnOverflowELm16ENS0_10FastMallocEEENS_8DNSErrorEEEEEE) +STUB("wWRgV0esq0Q", res_getTableItemByIndex_67) +STUB("wWSwCjA8pSI", WKAuthenticationChallengeGetTypeID) +STUB("wWTqVcTnep8", _ZN3sce2np4Cond4InitEPKcPNS0_5MutexE) +STUB("wWX34VUoyDM", _ZN7WebCore9HTMLNames9classAttrE) STUB("wWZzH-BwWuA", sceUserServiceSetGlsCameraPosition) +STUB( + "wWaf491txRo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEEE3getEv) +STUB( + "wWdKuMPssRQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("wWhSR9TfAr4", _ZN7WebCore28InspectorFrontendClientLocal8SettingsnaEmPv) +STUB("wWlM3tS1tuA", _ZN3sce2Np9CppWebApi7Matches2V120ReportResultsRequest20unsetMatchStatisticsEv) +STUB( + "wWlsbrijeUU", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V139GetMultiDataStatusesResponseBodyFactory7destroyEPNS3_32GetMultiDataStatusesResponseBodyE) +STUB( + "wWpV2tnUO2M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEC1EPS8_) +STUB("wWqhq3JF9l8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEC2Ev) +STUB("wWqxpgm-r9k", _ZN12video_parser5vpcom4FreeE) +STUB( + "wWwolctzj3s", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("wWyRB5M4a3Y", _ZN9Inspector22PageFrontendDispatcherC2ERNS_14FrontendRouterE) +STUB("wX+icr0jCqo", _ZN7WebCore26UserTypingGestureIndicator27processingUserTypingGestureEv) +STUB("wX3Ia8aX7Os", _ZN3sce2Np9CppWebApi14SessionManager2V127ResponsePlayerSessionPlayerD1Ev) +STUB( + "wX3ZGWU6Rf4", + _ZN3JSC14LocalAllocator16allocateSlowCaseERNS_4HeapEPNS_17GCDeferralContextENS_21AllocationFailureModeE) +STUB("wX42s8vaL7A", _ZN3sce2np13JsonArrayImplC2EP14SceNpAllocator) +STUB( + "wX884JEwgpQ", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi44ParameterToPatchGameSessionsSearchAttributesD2Ev) STUB("wX9wVFaegaM", sceSystemServiceLaunchEventDetails) STUB("wXCMy4EwaLE", sceVoiceVADPVTAdjustment) +STUB("wXEc3+fNcO4", curl_multi_init) +STUB("wXEliVW3L4A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEEC1Ev) +STUB( + "wXHB-1eaNac", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEEptEv) +STUB( + "wXHC8WL1WtE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEC1Ev) +STUB( + "wXKwM18yvkk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEC1EPKS8_) +STUB("wXPsyQEEP6I", _ZN3sce7Toolkit2NP2V211SocialMedia7Request7PhotoFb21MAX_PHOTO_CAPTION_LENE) +STUB("wXQ1M9E-ogs", _ZN7WebCore15HTTPHeaderField6createEON3WTF6StringES3_) +STUB( + "wXU9YAKJGi4", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "wXUzOYXw2dI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEeqERKS9_) +STUB("wXV5Sv+uG2I", _ZN7WebCore4Page8setMutedEj) +STUB("wXWYitYDaJA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V117ConnectionQualityC1EPNS1_6Common10LibContextE) +STUB("wXXU8LN9RXE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEcvbEv) +STUB( + "wXYqSpkCM0Q", + _ZN7WebCore16JSXMLHttpRequestC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_14XMLHttpRequestENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "wXc2hfdYNUo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEE7add_refEv) +STUB( + "wXcVkckulTE", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsers37unsetxPSNSESSIONMANAGERNONPSNCALLERIDEv) STUB("wXfHhmzUjK4", sceNpManagerIntLoginGetOnlineId) +STUB( + "wXfO-QmzhV4", + _ZN9Inspector22AuditBackendDispatcherC1ERNS_17BackendDispatcherEPNS_29AuditBackendDispatcherHandlerE) +STUB( + "wXhQDd2RrrI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEC2EPKS8_) +STUB( + "wXkOHKULqNY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) STUB("wXmx+vN8puE", sceKernelIccGetPowerUpCause) STUB("wXpm75McNZo", sceNpAsmClientGetServiceBaseUrlWithNpTitleIdA) +STUB("wXs12eD3uvA", ilogbl) +STUB("wY1Hja4xbtY", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEdeEv) +STUB("wY5rQQnQWD0", SSL_CTX_ctrl) +STUB("wY9g+hVxLTM", _ZN3sce2np14CalloutContextD2Ev) +STUB("wYCxExkKxYA", _ZN7WebCore15SQLiteStatement22isColumnDeclaredAsBlobEi) +STUB("wYFEykrGECM", rgctx_fetch_trampoline_rgctx_1_p) STUB("wYN5mmv6Ya8", sceGnmSqttGetHiWater) +STUB("wYRIszRYC0Y", _ZN9Inspector19InspectorAuditAgentdaEPv) STUB("wYVuhWth0do", sceVideoCoreAddStream) +STUB("wYWYC8xNFOI", _ZTSSt9basic_iosIwSt11char_traitsIwEE) +STUB( + "wYZ0ywolE9A", + _ZN8meta_gen11MsvPromoter27setKeyValue_TBLV_AudioCodecENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB( + "wYZiMwWeTcQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEED1Ev) +STUB( + "wYgVlPBPvFs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) STUB("wYhXVfS2Et4", sceHttpDestroyEpoll) +STUB( + "wYk90daP+AY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE6resizeEj) +STUB( + "wYvnOJcQpms", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) STUB("wZ2eXClFUaE", sceLoginMgrServerDialogGetAppId) +STUB( + "wZ99D5PHv+E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEE11release_refEv) +STUB( + "wZAelMXpVAk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE5beginEv) +STUB( + "wZGgNuqYAPY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEptEv) +STUB("wZKWyC3oiZ4", uscript_isRightToLeft_67) +STUB( + "wZLOavQzUlM", + _ZN3sce2Np9CppWebApi14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBody10getPlayersEv) +STUB( + "wZQ1q5x1rww", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEC1EPS8_) +STUB("wZST0SYCWWc", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus7getInfoEv) +STUB( + "wZUxqE35ri4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V118GetFriendsResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "wZZjGhWcIsw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEEppEv) STUB("wZakRQsWGos", sceAudioOutExGetSystemInfo) +STUB("wZi5ly2guNw", _Exit) +STUB("wZk528e6788", WKPreferencesSetMediaUserGestureInheritsFromDocument) +STUB("wZmGZj5fkwo", _ZNK7WebCore19HTMLOptGroupElement18ownerSelectElementEv) +STUB( + "wZnbgj4T16k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEmmEv) +STUB("wZp1hBtjV1I", SSL_ASYNC_init) +STUB( + "wZrUD8baQQs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB( + "wZsOyeU0h+0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEED2Ev) STUB("wZtLdyq2dKg", sceBluetoothHidDisconnectDevice) +STUB( + "wZuzcZ6s3lI", + _ZN7WebCore9JSElement6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_7ElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB("wZy4GYPh3jg", + _ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession21searchAttributesIsSetEv) STUB("wZy5M6lzip0", sceNpAsmClientInitialize) +STUB( + "wa0ENtgf4mI", + _ZN3JSC12StringObject27getOwnNonIndexPropertyNamesEPNS_8JSObjectEPNS_14JSGlobalObjectERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB("wa0Fla8BAgo", _ZNK3sce2Np9CppWebApi14SessionManager2V16Friend6toJsonERNS_4Json5ValueEb) +STUB("wa3-drCW0hQ", _ZN3sce7Toolkit2NP2V28Commerce7Request27DisplayCategoryBrowseDialogD1Ev) +STUB("wa5hk9onoBI", + _ZN7WebCore28throwArgumentMustBeEnumErrorERN3JSC9ExecStateERNS0_10ThrowScopeEjPKcS6_S6_S6_) +STUB("wa6e-twAW6w", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE3endEv) +STUB("wa7RuAVTdZw", + _ZN15AbstractStorage12LocalContent6RenameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("wa8NEoWeUeI", _ZNK9Inspector15ScriptCallFrame9sourceURLEv) +STUB("waIF+5fE5HQ", symlink) +STUB( + "waM0cFaBPbA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEptEv) STUB("waPcxYiR3WA", scePthreadCondattrDestroy) +STUB( + "waQeIth0ptU", + _ZNK3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBody10getPayloadEv) +STUB( + "waWmwuvoo7M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15ErrorEEEEC1EPNS2_10LibContextE) +STUB( + "waXza6OXAIM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB("wac+NJFrLjw", _ZN7WebCore16JSStringCallback11handleEventERKN3WTF6StringE) +STUB("wacOdHclu2Q", _ZN3JSC9ExecState10codeOriginEv) +STUB("wacykQ2UrWk", _ZN3WTF13allPrivilegesEv) STUB("wadT3QBCGY0", sceKeyboardInit) +STUB( + "wadufVirZ2M", + _ZN7WebCore11MediaPlayer6createERNS_17MediaPlayerClientENS_16MediaPlayerEnums21MediaEngineIdentifierE) STUB("waeEzwwYfZY", sceNpServiceCheckerIntAbortRequest) +STUB("waexoHL0Bf4", _WStoldx) +STUB( + "waf723vBHUc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB( + "waic+rKvYd0", + _ZN3sce2Np9CppWebApi7Matches2V135RequestTemporaryMatchResultsFactory6createEPNS1_6Common10LibContextENS3_14ResultsVersionENS5_12IntrusivePtrINS3_33RequestTemporaryCompetitiveResultEEEPNS9_INS3_28RequestTemporaryMatchResultsEEE) STUB("wapB9dMovnk", sceTextToSpeechSpeakImpl) +STUB("wardDDbhb30", _ZN7WebCore21DiagnosticLoggingKeys28succeededLessThan5SecondsKeyEv) +STUB( + "warsaDxzTrw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEeqERKS9_) +STUB( + "wauipyi4ao4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE8pushBackERKS8_) +STUB("waxtA2Hq4ds", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V15ErrorEEEE3endEv) +STUB("wayCkcYCt8A", _ZN3sce7Toolkit2NP2V211SharedMedia10BroadcastsD1Ev) +STUB("wazw2x2m3DQ", isspace) +STUB( + "wb0neIT-WOk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEC2EPKS8_) +STUB("wb5bJ2DTstU", _ZN7WebCore11MathMLNames9depthAttrE) +STUB("wb5sAYgRno8", _ZN7WebCore8SVGNames13directionAttrE) +STUB( + "wb6DrE9SoPU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) STUB("wb8H3F+T6Ew", sceFiosClearTimeStamps) +STUB("wbFpBDuG7d8", PlayUri) +STUB( + "wbJwnUIvFHo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEppEi) +STUB("wbQLIhaKdb8", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE4sizeEv) +STUB( + "wbQjnVQyHeI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEC2ERKS7_) +STUB("wbU4k7UTZ1Y", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_12PresenceInfoEE3getEv) STUB("wbYAWZcJiNo", sceHmdReprojectionStartCompoundEye) +STUB( + "wbaEjgNdvSE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEED1Ev) +STUB( + "wbepOPQxp+Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEC1EPNS2_10LibContextE) +STUB( + "wbl7gST+MQo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEixEm) +STUB("wbyY8kfNfaI", FTA_Add_Module_raster5) +STUB("wc+BF0ckhUk", _ZNK3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap11getOnlineIdEv) +STUB("wc+TGlgmpBk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEEdeEv) +STUB( + "wc+k3ulMh0Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEED1Ev) +STUB( + "wc29eAT9XbI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEE11get_deleterEv) +STUB( + "wcCnNqO32EI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEC2EPS8_) +STUB("wcEWUJj2LMk", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEptEv) +STUB("wcEjyhkFg4c", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEED1Ev) +STUB("wcMdaOhONK0", monoeg_g_path_is_absolute) +STUB("wcMdf-kMx7o", FT_Bitmap_Embolden) +STUB("wcOCedFKan4", _ZN3sce2np9Semaphore6CreateEiiPKc) STUB("wcOQ8Fz73+M", sceFontGraphicsRegionInitRoundish) +STUB("wcPF-KWqPe0", mono_aot_Mono_Data_Sqlitejit_code_end) +STUB("wcVuyTUr5ys", VLONG_freeVlongQueue) +STUB("wcWBEKsFbAQ", _ZTVSt9basic_iosIcSt11char_traitsIcEE) +STUB("wcWXUiFSwIE", _ZN7WebCore23visiblePositionForIndexEiPNS_13ContainerNodeE) +STUB("wcZfH4Ik-EY", + _ZN7WebCore18JSHTMLInputElement14getConstructorERN3JSC2VMEPKNS1_14JSGlobalObjectE) +STUB( + "wce-A8JY0xs", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponse6toJsonERNS_4Json5ValueEb) +STUB( + "wceqmJ4ODg8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEC1EPKS8_) +STUB("wcgr5mte7T8", _ZNK3sce4Json5Array8iteratordeEv) +STUB("wchZ9bYTOdM", _ZNK7WebCore14DocumentLoader21archiveResourceForURLERKN3WTF3URLE) +STUB( + "wckSTjPm2uQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEC1Ev) +STUB("wcmKzVY9Vds", monoeg_g_slist_free_1) +STUB("wcnrR9-W4nU", _ZN3sce7Toolkit2NP22BlockedListInfoRequestC2Ev) +STUB( + "wcrvw1fMT4g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15ErrorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) STUB("wcxz4F94s6k", sceShareUtilityAdvanceWakeUpShareMenuDefault) +STUB("wcziVeTN1Mc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEaSERS7_) +STUB("wd+PTkXXAKQ", _ZNK7WebCore16HTMLInputElement13isSearchFieldEv) +STUB("wd+YWDKMTQE", _ZN3sce2np9NpTitleIdC1ERKS1_) +STUB( + "wd0tWmzbAOk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEC2EPS6_PNS2_10LibContextE) +STUB( + "wd2qX0p5x-A", + _ZN6WebKit17ChildProcessProxy18addMessageReceiverEN7CoreIPC15StringReferenceEPNS1_15MessageReceiverE) +STUB("wd3NsMeiyj4", WKFrameGetMainResourceData) +STUB("wd3t5dSrf+Y", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS2_6StringEEEE3getEv) +STUB( + "wd4TA00miTA", + _ZN7WebCore23wrapSerializedCryptoKeyERKN3WTF6VectorIhLm0ENS0_15CrashOnOverflowELm16ENS0_10FastMallocEEES6_RS4_) +STUB("wd6gQnA8uxA", _ZN15AbstractStorage18DailymotionContent5FlushEv) +STUB( + "wd8He9kUzgo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEEEcvbEv) +STUB( + "wd8J06DkYP4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEeqERKS9_) +STUB( + "wdA8mYiCa5E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEmmEi) +STUB( + "wdCBfmqkcxM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "wdCZ9TnhNcE", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeaders26unsetXPsnAtomicOperationIdEv) STUB("wdGk4zfCt70", sceVideoCoreGetThumbnail2) +STUB("wdHn7mu2XDY", JVM_RawMonitorExit) +STUB("wdKllyHxakk", + _ZN3sce2Np9CppWebApi14SessionManager2V136GetFriendsPlayerSessionsResponseBodyD2Ev) +STUB( + "wdMLvPGqbhI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEE5resetEPS9_) +STUB("wdNyuvN52Q4", _ZNK3sce2Np9CppWebApi11Matchmaking2V15Cause9codeIsSetEv) +STUB("wdPaII721tY", ynf) STUB("wdRBDMIxI7I", sceSlimglCompositorFlushWithRepeat) +STUB("wdUufa9g-D8", dup2) +STUB( + "wdVE-l0p4iw", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEiRNS2_10LibContextEPT_m) +STUB("wdVtIsFSBCg", _ZN3JSC7Symbols21newPromisePrivateNameE) +STUB("wda1xC2CEiM", _ZNK7WebCore16HTMLInputElement15isPasswordFieldEv) +STUB( + "wdaVuxz4VWI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V312AccountIdMapEEEEEE3getEv) +STUB("wdbMxG42K3c", _ZN4IPMI4impl10ServerImpl13searchSessionEjPPNS0_11SessionImplE) +STUB("wdbdMn2JHZc", _ZN3WTF11PrintStream20printfVariableFormatEPKcz) +STUB("wdl-XapuxKU", CERT_VerifyCertificatePolicies) +STUB("wdlG0uhWXQ8", ucasemap_setOptions_67) +STUB("wdtQbz77hZQ", Java_java_lang_StrictMath_rint) +STUB("wdvL7CVmWok", _ZL17_delete_with_size) +STUB("we-vQBAugV8", _CStrxfrm) STUB("we3oTKSPSTw", sceRazorCpuTagArray) STUB("we5t5V4Fc70", sceKernelGetForceUpdateModeForRcmgr) STUB("we7HVzurlQM", scePssKeyboardReadState) +STUB("weALTw0uesc", _ZTISt7_MpunctIcE) +STUB("weDug8QD-lE", atanf) +STUB( + "weE-KlBm2zk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE8copyFromERKS9_) +STUB("weHzhyGPOqY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEC2EPS8_) +STUB( + "weJ7sVMp-Xo", + _ZN9Inspector23CanvasBackendDispatcher11requestNodeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "weL21YREm3k", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB("weLsgM28tbk", _ZNK7WebCore22CSSAnimationController11isSuspendedEv) +STUB( + "weOKcj6lCrE", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEEC2Ev) +STUB( + "weSJChst4EI", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessions30unsetxPsnAcceptPlatformNamePs5Ev) +STUB("weUj0OH8zx4", mono_method_get_class) +STUB("weVsBCT+TTQ", FT_Outline_Get_Orientation) +STUB("weWeRsgFPZ0", _ZN3sce7Toolkit2NP2V28Matching4Room15MAX_NUM_MEMBERSE) +STUB( + "webuoXhvq4o", + _ZN9Inspector14InjectedScript24getDisplayablePropertiesERN3WTF6StringERKS2_bRNS1_6RefPtrINS1_8JSONImpl7ArrayOfINS_8Protocol7Runtime18PropertyDescriptorEEENS1_13DumbPtrTraitsISC_EEEE) +STUB( + "weg52p8qZLo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEEdeEv) +STUB("wejAWiNi3WM", _ZN3JSC17FuzzerPredictionsC2EPKc) +STUB("wely4nloH1g", _ZN3sce7Toolkit2NP2V211UserProfile9NpProfile17MAX_SIZE_ABOUT_MEE) +STUB("wepEQ8+9p+Q", _ZN9Inspector27AnimationFrontendDispatcher11nameChangedERKN3WTF6StringEPS3_) STUB("wevBAVcbcII", sceCesUtf16beToEucCn) +STUB("wewK46-v8RA", _ZNK7WebCore6Cursor19setAsPlatformCursorEv) +STUB("wezXBwKdjAY", u_strstr) +STUB( + "wezlRzu+ng8", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsersC1Ev) +STUB( + "wf3TOTYzm+Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEE10setContextEPNS2_10LibContextE) +STUB("wf6CfVJj9PQ", hb_ot_layout_table_get_script_tags) +STUB("wf6EuM9IZW0", _ZN9Inspector32ScriptProfilerFrontendDispatcher13trackingStartEd) +STUB( + "wf813gVN0Pk", + _ZN7WebCore16JSXMLHttpRequestC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_14XMLHttpRequestENS6_13DumbPtrTraitsIS8_EEEE) +STUB( + "wfAdCbuS7to", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("wfCKx4jRc4w", mono_aot_Sce_Vsh_PsnUtilunbox_trampolines) +STUB("wfDoJ0yldXQ", _ZN3WTF14FileSystemImpl10deleteFileERKNS_6StringE) +STUB( + "wfFIPfB4YEs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEEdeEv) +STUB( + "wfGLXxHqXys", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEmmEv) +STUB("wfHaa8-Oa08", handler_block_trampoline) +STUB("wfIHsC6JMfI", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEEmmEi) +STUB( + "wfMAwMqO7ew", + _ZN3JSC23JSModuleNamespaceObject14deletePropertyEPNS_6JSCellEPNS_14JSGlobalObjectENS_12PropertyNameERNS_18DeletePropertySlotE) +STUB("wfMMpSVlls4", _ZN7WebCore32ScrollingStateFrameScrollingNode24setVisualViewportEnabledEb) +STUB("wfP0F1NEDBI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEEC1ERS7_) +STUB("wfYIRd1gBrQ", + _ZN7WebCore37BasicComponentTransferFilterOperationC2EdNS_15FilterOperation13OperationTypeE) +STUB("wfdrvK3YMjw", _ZNK3sce2Np9CppWebApi6Common8IteratorIlEptEv) +STUB("wfmOIv-V73Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE5beginEv) +STUB("wfqHM5ztNrk", _ZN7WebCore16HTMLMediaElement15togglePlayStateEv) +STUB("wfr181TfXYA", _ZN7WebCore22CSSAnimationController27resumeAnimationsForDocumentEPNS_8DocumentE) +STUB( + "wfrVXOICUws", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEEEiRNS2_10LibContextEPT_m) +STUB("wg3jml40GrY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115SearchConditionEEC1ERKS7_) +STUB("wg6ha67pN3g", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119PlayStylePropertiesD2Ev) +STUB("wg6kvThzUC4", ucase_getType) STUB("wgBMXJJA6K4", sceCameraSetExposureGain) +STUB("wgDImKoGKCM", _ZNSt11logic_errorD2Ev) +STUB("wgIKemgsVmc", WKBundleNodeHandleGetHTMLInputElementAutoFillAvailable) +STUB("wgIXtceNUzE", _ZThn16_N9Inspector14InspectorAgent7disableERN3WTF6StringE) STUB("wgVAwa31l0E", sceUserServiceSetGlsLanguageFilter) STUB("wgaUyb3bh0o", sceAudioOut2LoPortCreate) +STUB("wggIIjWSt-E", _ZNSt7collateIwEC1ERKSt8_Locinfom) +STUB("wgiQlxsZrYg", _ZNK7WebCore16VisibleSelection17isInPasswordFieldEv) +STUB( + "wgixLqlk+jU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEEC1ERSA_) +STUB("wgsrg1sdaHs", _ZN3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayer12setAccountIdERKm) +STUB("wgtn0xBBbF4", u_isalnum_67) +STUB( + "wgxsg2GKvAE", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetAccountId2OnlineId12getaccountIdEv) +STUB("wh0BPS24H4c", ulist_getListSize_67) +STUB("wh0hpCt-mm0", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V17SubtaskEE7add_refEv) +STUB( + "wh4kAWLa7DE", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsersD2Ev) +STUB( + "wh8+IRNnDvc", + _ZN3sce7Toolkit2NP12ActivityFeed9Interface11getUserFeedEPKNS1_18GetUserFeedRequestEPNS1_9Utilities6FutureISt6vectorINS1_17ActivityFeedStoryENS1_15AppSTLAllocatorISA_EEEEEb) +STUB("wh8nG-MSV94", ulist_removeString) +STUB( + "whGNkG2iQ6s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEmmEv) +STUB( + "whIG7nhC3VQ", + _ZN3sce2Np9CppWebApi14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBody13getSpectatorsEv) STUB("whRxl6Hhrzg", sceHmdInternalAnotherScreenGetFadeState) +STUB( + "whYnIMRGj3Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEEcvbEv) STUB("whb1RL7K4Ss", sceAgcSetCxRegIndirectPatchSetNumRegisters) +STUB("whdHnfy8pXE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEE7add_refEv) +STUB("whf3SRXlvUM", _ZN7WebCore9FloatRect9intersectERKS0_) +STUB("whiHmjHx9KM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEdeEv) +STUB( + "whiKX5x0CSc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEE7get_refEv) +STUB("whnNR7vJo40", _ZN3JSC23JSModuleNamespaceObjectC2ERNS_2VMEPNS_9StructureE) STUB("whrS4oksXc4", sceFontMemoryInit) +STUB( + "whvnS9jrhUM", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V318PsnWebErrorWrapper6toJsonERNS_4Json5ValueEb) +STUB( + "wi0ZSqvBXus", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V112BasicProfileEEEEEE5resetEPS9_) +STUB( + "wi2nosL6l1k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEC1Ev) +STUB("wi38W6Uke7w", + _ZN3sce2Np9CppWebApi14SessionManager2V124PlayerSessionPushContext16setPushContextIdEPKc) +STUB("wi3cFT1Yv9s", ps2) +STUB("wi5L94psWjQ", WKDataCreate) +STUB( + "wiDCzQ62kZg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEEC1ERSA_) +STUB( + "wiDFRhmAMgs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("wiEINApongA", _ZNK7WebCore5Frame23visiblePositionForPointERKNS_8IntPointE) +STUB( + "wiQJKzK19sw", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEEiRNS2_10LibContextEPT_m) +STUB("wiR+rIcbnlc", _ZSt4_Fpz) +STUB( + "wiRepnsbKvM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEE8copyFromERKS9_) STUB("wiT9jeC7xPw", sceSaveDataSyncSaveDataMemory) +STUB("wiXkdEzbLto", _ZN3sce2np10JsonObject8SetFieldEPKcjPPNS0_10JsonNumberE) STUB("wibWed78GyY", sceKernelOpenEport) +STUB("wifdnhhBt-w", _ZN3sce2Np9CppWebApi15Personalization2V15Error11unsetReasonEv) STUB("wigNLIF1CtE", sceDebugGetJobManagerSequenceInfo) +STUB("wii9zt2+wT8", _ZN7WebCore9HTMLNames13onwaitingAttrE) +STUB( + "win0kqmvdVk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEE8copyFromERKS9_) +STUB("witw87BCwQw", + _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_21AbortGameDataResponseEE17getAdditionalInfoEv) +STUB("wivfLfaFAZg", nsnp_ActionPerform) +STUB("wivkVUSZp0g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEEC1Ev) +STUB( + "wiwhJ-h76qo", + _ZN7WebCore5Frame10createViewERKNS_7IntSizeERKNS_5ColorEbS3_RKNS_7IntRectEbNS_13ScrollbarModeEbSA_b) +STUB( + "wiy8vU-LxhI", + _ZN3sce2Np9CppWebApi14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyD1Ev) +STUB("wj+W7YDAsYA", mono_aot_I18N_CJKunbox_trampoline_addresses) STUB("wj-U+mMbyAM", sceFiosFileWriteSync) +STUB( + "wj-gtCnx9bM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEE7add_refEv) +STUB( + "wj1jNFRE0v4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEE7get_refEv) STUB("wj1kOyNF4vM", sceHmd2ReprojectionDisableVrMode) +STUB( + "wj2tQ1sC3RE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15CauseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("wj623seXmas", _ZN3JSC7Symbols25isDerivedArrayPrivateNameE) +STUB( + "wjEqajQVMxc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEE5resetEPS9_) STUB("wjFtVi5JXd8", _sceLibcFinalize) +STUB("wjG0GyCyaP0", iswgraph) +STUB("wjKZzSD+l+Y", _ZN3WTF16AtomicStringImpl14lookUpSlowCaseERNS_10StringImplE) +STUB("wjM4V2CBwFA", _ZN9Inspector21InspectorRuntimeAgentC2ERNS_12AgentContextE) STUB("wjNhItL2wzg", sceNpTusChangeModeForOtherSaveDataOwners) +STUB( + "wjRVdDgsftI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEneERKS9_) +STUB("wjSdyu9YME4", _ZN12video_parser5vpcom11_CloseAsyncEPNS_8_vp_fileE) STUB("wjYEvo4xbcA", sceNpWebApiUnregisterNotificationCallback) +STUB( + "wjciyY5IppY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE8pushBackERKS8_) +STUB("wjffxAKdynU", _ZN3JSC9Integrity6Random29reloadAndCheckShouldAuditSlowERNS_2VME) +STUB( + "wjiUFVbvUoo", + _ZN8meta_gen11MsvPromoter33setKeyValue_TBLV_BroadcastStationENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB( + "wjj3HIyL06A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB("wjlHlTsAt9I", + _ZN3sce2Np9CppWebApi7Matches2V127RequestTemporaryTeamResultsC1EPNS1_6Common10LibContextE) +STUB( + "wjyDuihTuRg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEppEv) +STUB("wk+N4x6rZTg", ubidi_getPairedBracketType_67) +STUB("wk2sB--Ochw", WKPreferencesSetFontSmoothingLevel) +STUB( + "wk4h9nc6yLU", + _ZN3sce2Np9CppWebApi14ConnectAccount2V215AccountLinksApi28ParameterToDeleteAccountLink9terminateEv) STUB("wk7T5gAoQQE", sceClHttpCreateTemplate) +STUB( + "wkAlWB3LYS8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE23clearOnFinishedCallbackEv) +STUB("wkCHQKHpRe4", _ZNK3sce2Np9CppWebApi7Matches2V119RequestInGameRoster10teamsIsSetEv) +STUB("wkE+qauDby0", WKPreferencesCopyStandardFontFamily) +STUB("wkEaOIbARu4", _ZTVN7WebCore11DisplayList11FillEllipseE) +STUB( + "wkIJZ15k9RA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEppEi) STUB("wkIxHrwZ3+M", sceLoginMgrServerSetMorpheusRequiredUserId) +STUB("wkMHh3vaOAc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE5eraseENS2_8IteratorIS6_EERS9_) +STUB( + "wkMwBPjXlyg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE7popBackEv) +STUB( + "wkNMBc9m4Fk", + _ZN3sce7Toolkit2NP11UserProfile9Interface11getOnlineIdEPNS1_9Utilities6FutureI13SceNpOnlineIdEEPKNS1_18UserProfileRequestEb) STUB("wkO4Gn84wrs", sceApplicationGetCanvasHandle) +STUB("wkQIXlS-Ezs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V120PlayerJoinableStatusEED1Ev) STUB("wkQR9+xTFKY", sceAmprAmmGetVirtualAddressRanges) +STUB( + "wkSzYVGNoLU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEptEv) +STUB( + "wkTEt29+9X4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEEeqERKS9_) +STUB("wkUYiXcwABA", _ZN7WebCore8Document16closeForBindingsEv) +STUB( + "wkV1nZeRc3c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("wke-PxIaZQA", jpeg_set_colorspace) +STUB("wkgY4lDEV9k", _ZN3sce7Toolkit2NP2V26Trophy7Request18RegisterTrophyPackC1Ev) +STUB("wkjHgJiWE1E", _ZN3NTF15ThreadCondition9broadcastEv) +STUB( + "wkkpHpCrbS0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEptEv) +STUB("wklLVioomR8", _ZN7WebCore11DisplayList4SaveD0Ev) +STUB("wknrJ6zVkZM", _ZN3JSC22JSFinalizationRegistry9liveCountERKN3WTF6LockerINS_10JSCellLockEEE) +STUB("wkoWoPYCk+Y", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110ResultTypeEEdeEv) +STUB("wkpMPlbnk2s", u_uastrncpy) +STUB( + "wkpoP0pEb1w", + _ZN3JSC19JSNativeStdFunction6createERNS_2VMEPNS_14JSGlobalObjectEiRKN3WTF6StringEONS5_8FunctionIFlS4_PNS_9CallFrameEEEENS_9IntrinsicENS_14NativeFunctionE) +STUB("wkqJuVOPu1w", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE3endEv) STUB("wkseM3LWPuc", sceAudioPropagationSourceDestroy) STUB("wktCiyWoDTI", sceErrorDialogOpenWithReport) +STUB( + "wkuuqGaR4CI", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser10unsetlimitEv) STUB("wkwjz0Xdo2A", sceNpProfileDialogClose) +STUB("wl-GeZ-8gGQ", kmq_notify) +STUB("wl-mK89cDIs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEED1Ev) +STUB( + "wl-ouSCxP24", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "wl0gtsBrMq0", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124NatConnectivityToMetricsC1EPNS1_6Common10LibContextE) +STUB("wl13K7W8iRw", _ZN3sce2Np9CppWebApi14ConnectAccount2V28PSNErrorC1EPNS1_6Common10LibContextE) +STUB( + "wl1GA8QnYHg", + _ZN7WebCore30InspectorInstrumentationWebKit22shouldInterceptRequestEPKNS_5FrameERKNS_15ResourceRequestE) +STUB( + "wl2g7GlHxIY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEneERKS9_) +STUB("wl8UZHw2yFA", fuse_fs_listxattr) +STUB("wlEdSSqaz+E", _LXp_movx) +STUB( + "wlGMRTMED+A", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("wlHuQ9YdrAg", WKWebsiteDataStoreStatisticsHasIsolatedSession) +STUB("wlIcfy4NdP8", EVP_ecdsa) +STUB("wlK146pHnQ4", locale_getKeywordsStart) +STUB("wlO4ljYI06M", cairo_image_surface_create_for_data) +STUB( + "wlQnvyBv+R0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEC1Ev) +STUB("wlU6Iu7HHrE", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadDataC2Ev) +STUB("wlVbDmlcvsE", mono_aot_Sce_Vsh_SysfileUtilWrapperjit_code_end) +STUB( + "wlZmXuHrOII", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("wlgM8cLl1mQ", _ZNK3sce3Xml4Attr11isAvailableEv) +STUB("wlhojPPGYLY", rgctx_fetch_trampoline_mrgctx_97) +STUB("wllBMaXU-u8", _ZN7WebCore15DeferredPromise6rejectENS_13ExceptionCodeERKN3WTF6StringE) +STUB( + "wllHz+woGN8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "wloqXtBDoDs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEppEv) STUB("wlxvESTUplk", sceSystemStateMgrGetTriggerCode) +STUB( + "wm-0TjSwUTc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEEC1ERSA_) +STUB("wm8iY4kA9GY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEC1ERS7_) +STUB( + "wm916etHJsE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE8pushBackERKS8_) +STUB("wm9QKozFM+s", _ZTSPKc) +STUB( + "wmASRqjb664", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEEcvbEv) +STUB( + "wmIYD63igYM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V118IdempotentVariableEEEEEE11release_refEv) +STUB( + "wmNkdGz6DRY", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessions37unsetxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB("wmO9vm06vE8", _ZN3sce7Toolkit2NP2V210Tournament12MatchDetails5resetEv) +STUB("wmPCi3jLSWY", mono_btls_x509_verify_param_get_peername) +STUB("wmPHfTTwYME", delegate_virtual_invoke_imt_m_12) +STUB( + "wmQxnTOOUsY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "wmcFwi8F4TE", + _ZN3sce7Toolkit2NP7Ranking9Interface24abortGameDataTransactionEPKNS1_20AbortGameDataRequestEPNS1_9Utilities6FutureINS1_21AbortGameDataResponseEEEb) +STUB("wmdQ0-bB-HA", bdjbg_getAddress) +STUB( + "wmeIeUwQoGE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEppEi) +STUB("wmgRxbLxmjE", g_strdup_printf) +STUB( + "wmh+VW1iEXw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEC1ERKS7_) +STUB("wmi-p2uDgS0", WKPreferencesSetMediaPlaybackAllowsInline) +STUB( + "wmiNTH3QnqM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEC2EPS8_) +STUB("wmkXFgerLnM", _Wcscollx) +STUB("wmkk8v-vEI0", _ZNK7WebCore21BackForwardController12forwardCountEv) +STUB("wmmdJ3Glkhs", _GLOBAL__sub_I_locale.cpp) +STUB("wmmg8TtKQgY", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26ParameterToRecordLargeDataaSERS5_) STUB("wmoIm94hqik", sceNetGetDns6Info) +STUB("wmrsU1v51iQ", _ZN3sce3pss5orbis5video15VideoPlayerBase15CancelLoopRangeEv) +STUB( + "wmxlO2eIAkw", + _ZN3sce2Np9CppWebApi15Personalization2V112ErrorFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_5ErrorEEE) +STUB( + "wn+ML2prt2k", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEdeEv) +STUB("wn0XQ-nHTrU", delegate_invoke_impl_target_7) +STUB("wn316XLYBO8", _ZN9Inspector32ScriptProfilerFrontendDispatcherdaEPv) +STUB("wn3UsfmQPbI", _ZN3WTF9BitVector6resizeEm) +STUB( + "wn8CSaJWbew", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE7reserveEi) +STUB( + "wn9cpcgpbzQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEE7add_refEv) +STUB( + "wnDQ1OQhVZs", + _ZN7WebCore11FileChooser11chooseFilesERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16EEE) +STUB("wnK17vsAWS8", + _ZN7WebCore22CSSAnimationController20pauseAnimationAtTimeERNS_7ElementERKN3WTF12AtomicStringEd) +STUB("wnMuJEY0ZwE", WKBundlePageSetScaleAtOrigin) +STUB("wnOj4agNOuo", mono_mempool_stats) STUB("wnWMkCYv0m4", sceVdecCoreCreateDecoder) +STUB("wnm9XDiv+yc", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112GroupingTypeEEmmEi) +STUB("wnmjinMVP1o", _ZNK7WebCore14ScrollableArea15scrolledToRightEv) +STUB( + "wnn7JlD7SeQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEEptEv) +STUB( + "wnnDnNtFolU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEmmEi) +STUB("wny-gONKbF8", + _ZN9Inspector20InspectorTargetAgent26didCommitProvisionalTargetERKN3WTF6StringES4_) +STUB("wnzAlf1xqko", _ZNK7WebCore15StyleProperties19getPropertyCSSValueENS_13CSSPropertyIDE) +STUB("wo6+V7jxzG0", sqlite3_busy_handler) +STUB("woB-r3hY2Jo", _ZN3sce7Toolkit2NP2V28Commerce7Request13GetCategoriesD1Ev) +STUB("woFiOo3Dy2k", Java_com_sony_gemstack_org_havi_ui_HBackgroundImageDecoder_loadStream) +STUB("woGXdge3elg", _ZN7WebCore11MediaPlayer9setVolumeEd) STUB("woNpu+45RLk", sceUserServiceGetAgeLevel) STUB("woOjHrkjIYg", sceFontGetRenderEffectWeight) +STUB( + "woPfFeWQXBs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEEE5beginEv) +STUB("woQta4WRpk0", setstate) +STUB( + "woSh2q66JsA", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanity13isInitializedEv) +STUB( + "woZc2gIgOJ0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEeqERKS9_) +STUB("woec1toi4Xw", _ZN3sce4Json5Array8pop_backEv) +STUB("woiQjVObPyE", _ZN3sce7Toolkit2NP2V212EventsClient7Request9GetEvents13MAX_PAGE_SIZEE) +STUB("wokDNP+QIVo", _ZN7WebCore17HistoryController33restoreScrollPositionAndViewStateEv) +STUB("wone-rWxGj8", _ZN4Manx7Network6callocEmm) +STUB("wow7z65IAUA", _ZN3JSC7Symbols25getPrototypeOfPrivateNameE) +STUB("wozVkExRax4", _ZGVNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE2idE) +STUB( + "wp8+c84G5Xw", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser10initializeEPNS1_6Common10LibContextEPKcSA_) +STUB( + "wp88+fHA+V8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEEC1ERSA_) +STUB( + "wpB8YBPBHLQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V123CustomInvitableUserTypeEEEE7add_refEv) +STUB( + "wpJc1af1Pf0", + _ZN8meta_gen11MsvPromoter8makeDataEP30MsvFilePromoteInnerInformationP19MsvStorageInterfaceP20MsvCancelInterface_tP22MsvPromoteInnerContext) STUB("wpMHmauFaok", sceMbusDebugStartApplication) +STUB("wpNJwmDDtxw", _Unwind_RaiseException) +STUB("wpVk0ZMVrgc", Java_com_sony_bdjstack_javax_media_controls_VideoDecoder_getAspectRatio) +STUB( + "wpaLSvbAuvw", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "wpaaZ6UTMX0", + _ZN3sce2Np9CppWebApi13InGameCatalog2V524ContentDescriptorFactory7destroyEPNS3_17ContentDescriptorE) +STUB("wpdqNpD4Oiw", _ZN7WebCore9FrameView46resumeVisibleImageAnimationsIncludingSubframesEv) STUB("wpeyFwJ+UEI", sceCameraSetVideoSync) +STUB( + "wpgFYvMIYFA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEE11get_deleterEv) +STUB("wplWEywqaB8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEC2Ev) STUB("wpm6Yq7c4YE", sceMbusSetAutoLoginMode) +STUB("wpmdn-sgNnA", mono_aot_Sce_Vsh_MyGameListplt_end) +STUB( + "wpoLBwYWzV0", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB("wppQMWb54-c", _ZN7WebCore15JSDOMWindowBase25willRemoveFromWindowProxyEv) STUB("wps6M1FgHE4", sceUltGetConditionVariableInfo) +STUB("wpuIiVoCWcM", _Cnd_unregister_at_thread_exit) +STUB( + "wpwlYjCcoQA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEEC2ERSB_) +STUB( + "wq2qZCnqQ5o", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser13isInitializedEv) +STUB("wq9ovitmhDY", utrie2_clone_67) +STUB( + "wqHK7gA8TAY", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi27ParameterToTestForProfanity9terminateEv) +STUB("wqT2JkU-DlM", mono_aot_Sce_Vsh_RnpsAppMgrWrapperunbox_trampolines) +STUB("wqT9gHXJ1Ag", _ZN7WebCore8Document11styleSheetsEv) +STUB( + "wqVz3uk6yh0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEE11get_deleterEv) +STUB("wqX2adojDcQ", t1_cmap_classes) +STUB( + "wqdQwlli2As", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEED2Ev) +STUB( + "wqeztUqcGfM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEEEaSERKSA_) +STUB("wqhRTaTyx9k", _ZN9Inspector21InjectedScriptManager20injectedScriptSourceEv) +STUB("wqmZ0fFZC-s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEE3getEv) STUB("wqsJvRXwl58", sceImeDialogGetPanelSize) +STUB( + "wqssY87NA7k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEC2Ev) +STUB("wqwAA9+g8nI", GCC_except_table2) +STUB("wqy12obc2tI", _ZN3sce2Np9CppWebApi13InGameCatalog2V55ImageC2EPNS1_6Common10LibContextE) STUB("wqz7049QaFY", sceMbusGetDeviceInfoByBusId) +STUB( + "wr+r0z62D0Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEEC1ERKSA_) +STUB( + "wr-MBcv5iAY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEE5resetEPS6_) +STUB("wr-YBWA7pdY", AES_set_decrypt_key) STUB("wr23dPKyWc0", sceAgcCbReleaseMem) +STUB( + "wr3SNhigjD8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEE7get_refEv) +STUB( + "wr4hgoa+q28", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "wr6EWehyZ7E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEED2Ev) +STUB( + "wr7CFBuL-O0", + _ZN3sce2Np9CppWebApi14SessionManager2V160PostGameSessionsSessionIdMemberSpectatorsResponseBodyFactory7destroyEPNS3_53PostGameSessionsSessionIdMemberSpectatorsResponseBodyE) +STUB( + "wrBaVDnhIus", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEC1Ev) STUB("wrImtTqUSGM", sceNpTusGetFriendsVariableAAsync) +STUB("wrR3T5i7gpY", _ZNSt10moneypunctIcLb0EEC1ERKSt8_Locinfomb) +STUB("wrViKyVxU7w", _ZN7CoreIPC10Connection18platformInvalidateEv) +STUB("wrXoaAVpSC8", _ZN3sce2Np9CppWebApi6Common18ResponseHeaderBaseC1Ev) +STUB("wranYyxOhKI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEEdeEv) +STUB("wrb3I3Ze1C8", jpeg_resync_to_restart) +STUB( + "wrjmSQBJYfk", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V120ErrorResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_13ErrorResponseEEE) +STUB( + "wrn8dpfNGYw", + _ZN3JSC4Yarr17RegularExpressionC1ERKN3WTF6StringENS0_19TextCaseSensitivityENS0_13MultilineModeENS0_11UnicodeModeE) +STUB( + "wrsrG0VvApc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "wruc-v0IjkQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEixEm) +STUB("wrvImDVG0oI", mono_class_name_from_token) +STUB("ws2+DizWbiA", mono_aot_Sce_Vsh_Np_ServiceChecker2jit_code_start) +STUB("ws3SV2Lco9Q", _ZN7WebCore15GraphicsContext18setShouldAntialiasEb) +STUB("ws3x3yjUyeE", _ZN3sce2np9HttpTrans23SetRequestContentLengthEm) +STUB("wsDL-mZT9kk", WKBundleFrameCopyMarkerText) +STUB("wsDgvrp7L+s", + _ZN3sce2Np9CppWebApi12Leaderboards2V130GetBoardDefinitionResponseBody16setMaxScoreLimitERKl) +STUB("wsEuLCHNws4", _ZN3sce7Toolkit2NP2V24Core17CustomRequestBaseC2ERKS4_) +STUB("wsHBBoanjUE", mono_aot_Sce_Vsh_VideoRecordingWrapperplt_end) +STUB( + "wsHGxMKlGEs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEC1ERS7_) STUB("wsJi8j+bReE", _sceNpManagerDefaultMallocImpl) +STUB("wsMiVPm1q5Y", _ZNK7WebCore9ImageData4sizeEv) +STUB("wsPFPZ9PXuE", _Mbtowcx.initial) +STUB("wsYj-RibX+8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEptEv) STUB("wsfyvM+VbUk", _sceNpHeapRealloc) +STUB( + "wsjs8zB9pZY", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer22unsetuseCurrencySymbolEv) +STUB( + "wslsrv65YlU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEC2Ev) +STUB( + "wt+XIZqOSYk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEEC2Ev) +STUB("wt1EzCRjrnQ", __tsan_write16) +STUB("wt3qUO8WM3U", + _ZN3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead19getLeaderPrivilegesEv) +STUB("wt5Hku2i1nY", HMAC_Final) +STUB("wt9vj056mm8", _ZN3sce7Toolkit2NP2V26Trophy7Request18RegisterTrophyPackC2Ev) +STUB("wtC7YtnXtl8", + _ZN3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayer8fromJsonERKNS_4Json5ValueE) +STUB( + "wtCqSLXjHQ0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEE11get_deleterEv) +STUB( + "wtD-G91PM1U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEE11get_deleterEv) +STUB("wtDBw-PQhB8", _ZN3sce3Xml3Dom6NodeIdaSES2_) +STUB( + "wtEzX+eFNg4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V19BandwidthEEEEEED1Ev) +STUB("wtGdruHZH54", _ZN12video_parser18cProfileCheckerMp415isPlayableVideoERKNS_13VpMediaInfo_tE) +STUB( + "wtIsmGU5oZo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEED1Ev) STUB("wtNEh1E9ALA", sceShellCoreUtilChangeRunLevel) +STUB("wtRfzEatT-A", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE8copyFromERKS7_) +STUB( + "wtRpixAI5nc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEEptEv) +STUB("wtSeaM-ASQM", _ZNK9Inspector14FrontendRouter9sendEventERKN3WTF6StringE) +STUB( + "wtU16nMAos0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEC1Ev) +STUB("wtYQga8KPmc", + _ZN7WebCore22SkewTransformOperation6createEddNS_18TransformOperation13OperationTypeE) +STUB( + "wtZjdBIuTQ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("wtaQ6KY2w5w", d2i_PrivateKey_bio) +STUB("wtfLylhLraw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEE3getEv) STUB("wtkt-teR1so", pthread_attr_init) +STUB( + "wtmczRQGNQY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("wts8U0YjzRs", WKPreferencesSetGamepadsEnabled) +STUB("wtsKupaBsyk", _ZN3sce7Toolkit2NP2V28Commerce7SkuInfo12SKU_NAME_LENE) +STUB("wtt3bMa7d3c", mono_aot_Sce_Vsh_PsnUtilmethod_addresses) +STUB("wtwkSorHafA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V114SearchOperatorEEeqERKS7_) +STUB( + "wu9X75DVt1A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE7reserveEi) +STUB("wuAQt-j+p4o", exp2f) +STUB("wuCroIGjt2g", open) +STUB( + "wuH7SumxAIA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEEneERKS9_) +STUB("wuHXJ3Gf3Pw", + _ZN3sce2Np9CppWebApi14SessionManager2V112NonPsnLeader8fromJsonERKNS_4Json5ValueE) STUB("wuI7c7UNk0A", sceUserServiceRegisterEventCallback) +STUB( + "wuK0aVDaGtA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEE7add_refEv) +STUB("wuKE2HtEBv8", WKPreferencesSetSmartInsertDeleteEnabled) +STUB("wuO6ywpV88M", _ZN3sce7Toolkit2NP2V26Friend7FriendsC2ERKS4_) +STUB("wuOrunkpIrU", _ZTVSt17bad_function_call) +STUB( + "wuT6Q5sL5Io", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEEC1ERKSA_) +STUB( + "wuW1UPrpmHY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("wuZWrED-ZR8", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi27ParameterToLeaveGameSessionaSERS5_) +STUB( + "wuaM6ZnZU74", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEaSERKS9_) +STUB( + "wuaVabiE21w", + _ZN3sce7Toolkit2NP8Matching9Interface12quickSessionEPKNS1_21SearchSessionsRequestEPNS1_9Utilities6FutureINS1_18SessionInformationEEEb) +STUB( + "wueqXsTnIew", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V111ErrorEntityEEEEEE3getEv) +STUB("wuettmP-HHY", _ZNK3sce2Np9CppWebApi7Matches2V121ResponsePlayerResults7getRankEv) STUB("wufj+gE6dw8", sceNpSessionSignalingManualUdpAbortConnection) +STUB("wuiJZ6Iy6Mc", T_CString_toUpperCase) +STUB("wuik+woCHt8", _ZN3sce7Toolkit2NP2V24Auth7Request10GetIdToken14MAX_SIZE_SCOPEE) +STUB( + "wunKhwzbMIQ", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Console12ChannelLevelEEESt8optionalIT_ERKN3WTF6StringE) +STUB("wuofk67iiw8", g_shared_slist_free) STUB("wupHEf8WOhM", sceNpMatching2SignalingSetPort) +STUB( + "wupUdUFU-f4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEE7add_refEv) +STUB("wurmB0Y21Xs", _ZN9Inspector22RemoteInspectionTargetC2Ev) +STUB( + "wutdNAxORmk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("wuxc928fFWI", _ZN7WebCore5FrameD1Ev) +STUB("wv+exEIuY8I", mono_jit_thread_detach) +STUB( + "wv+uok7-UBk", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlot9terminateEv) +STUB("wv2pUs9uypk", RSA_check_key) +STUB("wv2pdoxb-UQ", uloc_toUnicodeLocaleKey_67) +STUB("wv3u3hHm49g", _ZNK3sce16CommonDialogUtil6Server9isSetDataEv) +STUB("wv98Lg06pw8", _ZN12video_parser17cVideoProfilerMp417_createVideoCodecEjPNS_13VpMediaInfo_tE) +STUB("wvB-vvrz6Es", _ZN9Inspector22PageFrontendDispatcherdaEPv) +STUB( + "wvDKH1RiZhU", + _ZN15AbstractStorage14StorageManager16NotifyWriteCloseERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("wvEuxS8THyg", g_string_append_len) +STUB("wvIL7UyShfk", create_state_record_for) +STUB("wvS9v2o0piQ", _ZN7WebCore18TextureMapperLayer21setBackfaceVisibilityEb) +STUB( + "wvVHCC8H1kM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEE8copyFromERKS9_) +STUB("wvYYiy75zIg", _ZN3sce7Toolkit2NP2V23TUS14DataContentionD1Ev) +STUB( + "wvYbrMZIWps", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEC1Ev) +STUB( + "wvbNP+CPA1c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEaSERKS9_) STUB("wvc0E5cTehw", sceWorkspaceGetPendingUpdateEntries) +STUB("wveDdcyazjU", _ZN12video_parser5vpcom5_OpenEPcS1_PPNS_8_vp_fileE) +STUB( + "wveh518ilBI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEEaSERSA_) +STUB("wvmDxUD2G-Y", _ZN3sce7Toolkit2NP2V24Core7Request17ExternalAllocatorC2Ev) +STUB( + "wvnTRM83N8A", + _ZN3JSC8Bindings13RuntimeObject23throwInvalidAccessErrorEPNS_14JSGlobalObjectERNS_10ThrowScopeE) +STUB( + "wvnZIveWCM0", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB("wvqDod5pVZg", posix_spawnattr_getsigmask) STUB("wvuUDv0jrMI", sceNetRecvmsg) +STUB("wvxn+5DjD2E", _ZNK7WebCore15GraphicsContext6getCTMENS0_18IncludeDeviceScaleE) +STUB( + "ww1DUG2Ryrc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEaSERS7_) +STUB("ww1hNbx-IdQ", mono_aot_Sce_Vsh_Orbis_Bgftmethod_addresses) +STUB("ww3UUl317Ng", _ZNKSt22_System_error_category23default_error_conditionEi) +STUB("ww84UvJnzCY", _ZN7WebCore9HTMLNames24onaccessiblesetvalueAttrE) +STUB("wwCg7TqLgJ0", mono_assembly_names_equal) +STUB("wwDnDDsQVc0", _ZNK3sce4Json6String4findEPKcmm) STUB("wwM99gjFf1Y", sceAvPlayerCurrentTime) +STUB("wwNmjWmlsls", _ZN7WebCore20ResourceLoadObserver14sharedIfExistsEv) +STUB("wwOr3NA7FRc", T_CString_integerToString) +STUB("wwa0VBO4qGo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ChildActivityAvailabilityEEdeEv) +STUB("wwa18JPi0d8", + _ZN7WebCore12JSTimeRanges15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB("wwc2N-3c9no", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEptEv) +STUB( + "wwgvNe9YUl4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEEEC1ERKSA_) +STUB("wwhRQ4xVAbE", rgctx_fetch_trampoline_rgctx_20) +STUB( + "wwjCjtyh2EQ", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEEeqERKS9_) STUB("wwpRNgW81Cs", sceLncUtilLoadExec) +STUB( + "wwsoDm+0Uo4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEED1Ev) +STUB("wwudiUTbQqc", mono_aot_Sce_Vsh_Np_Trophyunbox_trampolines) +STUB("wwyXc68wvnA", get_module_info_list) +STUB("wx3F3oIzsnI", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEEptEv) +STUB( + "wx8esAtU1wE", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEEiRNS2_10LibContextEPT_m) STUB("wx9TDplJKB4", scePlayGoDialogGetResult) +STUB( + "wxEFNQ46DrM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEC2Ev) +STUB("wxEMfjv1CKI", uprv_convertToLCID) +STUB( + "wxNoewChZ2M", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEE5clearEv) +STUB("wxOGIkMHz8w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEaSERKS7_) +STUB("wxOWH7WVHa0", _ZN3WTF11ThreadGroup3addERKNS_14AbstractLockerERNS_6ThreadE) +STUB( + "wxOa6oKNcR4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEE7add_refEv) +STUB( + "wxP5KJug-vk", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13string10IsSetEv) +STUB( + "wxTfb+3Oqj4", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3CSS17CSSPropertyStatusEEESt8optionalIT_ERKN3WTF6StringE) +STUB("wxa7G9oh+gM", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V311PsnWebError9setReasonEPKc) +STUB( + "wxbgwFfJaLk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEE7reserveEi) +STUB("wxirhbbuv84", u_isUUppercase) +STUB( + "wxizIS2cXrg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("wxmwEoR8Uuw", kldload) STUB("wxmyc+71ijI", sceMbusConvertToLocalDeviceId2) +STUB("wxp0--c0U4g", _ZN3sce2Np9CppWebApi12Leaderboards2V15EntryC2EPNS1_6Common10LibContextE) +STUB( + "wxrB06iK4Jc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEdeEv) +STUB("wxueDeVwBzM", _ZN7WebCore10FileSystem14MappedFileDataD2Ev) +STUB("wxvih+mlh9I", _ZN3JSC14ArrayPrototype6s_infoE) +STUB( + "wy0Twe1Mu2A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE7popBackEv) +STUB( + "wy8n7600AnQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V110DataStatusEEEEEE5resetEPS9_) +STUB("wyBXqc+sMkM", _ZN3sce7Toolkit2NP2V28Commerce7Request29DisplayVoucherCodeInputDialogD2Ev) +STUB( + "wyEuZhFhbOE", + _ZN15AbstractStorage4Item8set_metaERN23sceMetadataReaderWriter8MetadataERKSbIcSt11char_traitsIcENS_8StlAllocIcEEESA_) +STUB( + "wyFsYg0I4GI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEE5resetEPS6_) +STUB( + "wyGSRMNB-Dk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEEdeEv) +STUB("wyHEcvcomPY", _ZN3sce7Toolkit2NP23CategoryInfoInputParamsC1Ev) STUB("wyKFUOWdu3Q", sceFontWritingLineWritesOrder) +STUB("wyMVddyr5pM", _Z26sceRazorGpuThreadTraceStopPN3sce3Gnm17DrawCommandBufferE) +STUB("wyMkX6F1ijI", WKPageGetContentsAsString) +STUB("wyMpl9JQ35A", + _ZNK3sce2Np9CppWebApi7Matches2V124RequestCompetitiveResult18playerResultsIsSetEv) +STUB("wyOUIvHW0EE", WKPageSetCustomUserAgent) +STUB( + "wyOdOMHofOE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE3endEv) STUB("wyU98EXAYxU", sceCameraAudioReset) +STUB("wyXkR6TfWWQ", _ZN3sce2Np9CppWebApi14SessionManager2V129RequestPlayerSessionSpectatorD2Ev) +STUB("wybPkXuWnoE", u_enumCharTypes) +STUB( + "wye0fos4iBE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEdeEv) +STUB("wyhPDqTVXp0", g_log) +STUB("wyivI8dViTw", _ZN3JSC10ConfigFileC1EPKc) +STUB( + "wyj62bHdCBI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEEEC1ERSA_) +STUB("wyjo39YYJYE", _ZN3NTF5Cache16DiskCacheManager10initializeEPKc) +STUB("wynVOzUT0WY", _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession16unsetSearchIndexEv) +STUB("wypyvhVuLyY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEaSERKS9_) +STUB("wysUOmlzXkE", mono_aot_Sce_Vsh_PsnMessageUtilunwind_info) STUB("wyvlEgZ-55w", sceNpMatching2GetLobbyInfoList) +STUB( + "wyyvee2yVG4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEE8capacityEv) +STUB( + "wyzOjTPKy9Q", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersC1ERS5_) +STUB( + "wz4o75sM+yU", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V133BandwidthDownstreamMetricsFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_26BandwidthDownstreamMetricsEEE) +STUB("wz5xdJm7GsY", _ZN7WebCore12EventHandler23setImmediateActionStageENS_20ImmediateActionStageE) +STUB( + "wz8E5ZPl0LE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEdeEv) STUB("wzDVSHoU54o", sceAppInstUtilInstall) STUB("wzHToVdMoLA", sceClHttpCreateEpoll) +STUB( + "wzI5coqdDm0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("wzKD2FLvwEg", __tsan_atomic8_fetch_or) +STUB( + "wzPnRMhBvY0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEixEm) +STUB("wzQ6l9N1svA", WKPreferencesSetKeygenElementEnabled) STUB("wzQVKDTRqGA", ScePsmMonoArrayElementType) +STUB("wzTeHvzmD-Q", _ZN7WebCore12TextIterator7advanceEv) +STUB("wzcMWoLSyoI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEEdeEv) +STUB( + "wzepHFTyUV4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities5ErrorEEEE3endEv) +STUB("wzfUZV6ZcM4", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEE5resetEPS5_) +STUB("wzg3WcRMCfg", _ZN7WebCore21ISOTrackEncryptionBoxD2Ev) +STUB( + "wzl9X-9W2zM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEixEm) +STUB("wzlainWo3eE", + _ZNK3sce2Np9CppWebApi14SessionManager2V128ResponseGameSessionSpectator12getAccountIdEv) +STUB("wzm2XBeo-QA", _ZNK7WebCore18SecurityOriginData12isolatedCopyEv) +STUB("wzqAM7IYGzU", _ZN3sce2np8JsonFileD1Ev) STUB("wzr6GTOo9Dw", sceVisionManagerOpen) +STUB( + "wzsrWjMssGE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEE21intrusive_ptr_add_refEPS9_) +STUB("wzu8fkKsGPU", _ZNK7WebCore20TransformationMatrix7mapQuadERKNS_9FloatQuadE) +STUB( + "wzu9ApfQtos", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSB_) STUB("wzvqT4UqKX8", sceKernelLoadStartModule) +STUB("wzzIp0t1OzU", _ZNK15AbstractStorage14TwitterStorage13GetCapabilityEv) +STUB( + "x+-ckRh2B+I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116FromNonPsnMemberEEEEEE5resetEPS9_) +STUB("x+0LGhJIwNU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEppEv) +STUB( + "x+0i4BLFtUA", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToDeletePlayerSessionsMemberNonPsnPlayer35hasxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB( + "x+HNgzZXyqU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEE3endEv) STUB("x+JkNr3eoxs", sceKernelCallIndirectBuffer3) +STUB("x+LtLglMhq0", + _ZN7WebCore11JSDOMWindow10putByIndexEPN3JSC6JSCellEPNS1_14JSGlobalObjectEjNS1_7JSValueEb) +STUB("x+Njtyfrolg", _ZN3sce7Toolkit2NP2V210Tournament13OneVsOneMatchD1Ev) +STUB("x+PBjiexUWI", WKPageSetApplicationNameForUserAgent) +STUB( + "x+R1-6MhYtk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE3endEv) +STUB( + "x+Xddbzup0A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("x+Zqfr2TmKs", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Friend16FriendsOfFriendsEED2Ev) +STUB("x+ZxRNVDnQ0", _ZN3sce7Toolkit2NP2V24Core17CustomRequestBaseC1Ev) +STUB( + "x+bH7Ykt6bc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) STUB("x+cnsAxKSHo", sceNetCtlGetNatInfoIpcInt) +STUB("x+e5jfR5gbc", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V18Variable11slotIdIsSetEv) +STUB( + "x+geCt730S8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEE5clearEv) +STUB( + "x+jZ+7cfi9s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEC1ERS7_) +STUB( + "x+jqljfFu5I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEE7get_refEv) +STUB( + "x+nxQC52xh4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEED1Ev) +STUB( + "x+uE1eXSdSc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB("x-+VBgfltm0", _ZN3sce7Toolkit2NP2V212EventsClient5EventC1ERKS4_) +STUB("x-04iOzl1xs", copysignf) +STUB("x-2E-Ys4WR4", _ZNK7WebCore5Range32compareBoundaryPointsForBindingsEtRKS0_) +STUB( + "x-45WOaqFrQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEC1EPKS8_) +STUB( + "x-6qQFDDWu4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEmmEv) +STUB("x-GADNupuTw", u_terminateUChars_67) +STUB("x-Jdve+yCj8", mono_domain_set_config) +STUB( + "x-K2rRqpWBI", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEEeqERKS9_) +STUB( + "x-KeYbbkESg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEE10setContextEPNS2_10LibContextE) +STUB( + "x-P5fvJh-3Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestGameSessionMemberPlayerEEEEEE11release_refEv) +STUB("x-SSNEsxvWU", _ZN7WebCore21DisplayRefreshMonitorD0Ev) +STUB("x-TnfqNALJE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEcvbEv) +STUB("x-U1t6zrlNg", delegate_invoke_impl_target_0_p) STUB("x-U4mJWRcNI", sceAvSettingSetVideoOutSource) +STUB( + "x-hfyNZxHtM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEEEeqERKS9_) STUB("x-mbDkDf0Fk", sceImeBackendBackspaceCharacter) +STUB("x-qJ+Gn7tlE", _ZN3sce7Toolkit2NP2V24Core12ResponseDataD1Ev) +STUB( + "x-t2kXmLeJs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEptEv) STUB("x-v44qRnzVA", sceKernelAprCtrl) +STUB("x-za71ceNzM", _ZN7WebCore13MIMETypeCache13canDecodeTypeERKN3WTF6StringE) STUB("x01jxu+vxlc", sceImeDialogGetResult) +STUB("x04CquQRWyI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEC2ERS7_) +STUB( + "x0Brkub1MVM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEplEm) +STUB("x0CT-AkKsBI", + _ZN3JSC4callEPNS_9ExecStateENS_7JSValueENS_8CallTypeERKNS_8CallDataES2_RKNS_7ArgListE) +STUB("x0DZ4jSUQBM", + _ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBody21unsetComparedDateTimeEv) +STUB( + "x0GAKVp21YQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEE8copyFromERKS9_) +STUB( + "x0K9OBt05M0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEppEv) +STUB( + "x0NpPFip64s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEED1Ev) +STUB("x0OZJuCAlAo", WKPreferencesSetReferrerPolicyAttributeEnabled) +STUB("x0OgOogmxQM", _ZNK7WebCore12NamedNodeMap4itemEj) +STUB( + "x0PSo89uugM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118LeaderWithOnlineIdEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("x0SVrzZN7bg", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead19getCreatedTimestampEv) +STUB("x0UkrHRXP-M", rgctx_fetch_trampoline_rgctx_33_p) +STUB( + "x0c7V+oVGT8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("x0iW5Wp59go", _WLdtob.Inf) STUB("x0oTVOySvTU", sceRegMgrSrvGetRealMachineType) +STUB("x0qQft2uK1M", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEEixEm) +STUB("x0rDFBY8wus", _ZN7WebCore16DatabaseProviderD1Ev) +STUB( + "x0rFpK0CYWg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEppEi) STUB("x0slGBQW+wY", sceVoicePausePort) +STUB( + "x1+ZUeM71hw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEaSERKS7_) STUB("x14XFcPNLJU", sceAvSettingAddCallbacksForSocialScreen) +STUB("x1AP-G3h75A", _ZN7WebCore21RemoteCommandListener6createERNS_27RemoteCommandListenerClientE) +STUB( + "x1SNXYN7BMc", + _ZN7WebCore14DocumentLoader16responseReceivedERNS_14CachedResourceERKNS_16ResourceResponseEON3WTF17CompletionHandlerIFvvEEE) STUB("x1UB9bwDSOw", sceSystemServiceDisableMusicPlayer) STUB("x1X76arYMxU", scePthreadAttrGet) STUB("x1Y7yiYSk7c", sceNpWebApiCreateContext) +STUB("x1lSidy2jos", _ZN12video_parser17cTsFFLHndlManagerD1Ev) +STUB( + "x1mUEbuU+LQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEEC1Ev) +STUB( + "x1ni-ESKA3o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEC1ERKS7_) +STUB("x1qOW7nJmTI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEixEm) +STUB("x1rX1MnIGsY", WKPreferencesSetIsITPDatabaseEnabled) +STUB("x1vTXM-GLCE", _ZNSt14numeric_limitsIbE6digitsE) +STUB("x1zDWttcIpQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V112TicketStatusEEC2Ev) STUB("x2-o9eBw3ZU", sceSystemServiceNavigateToGoHome) +STUB("x24L8vgb3Wo", WKPreferencesSetLinkPreloadEnabled) +STUB("x24tEAC59g0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE8pushBackERKS6_) +STUB( + "x2AvUWcCuqs", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesC2EPNS1_6Common10LibContextE) +STUB("x2Bw3o33jBY", WKBundleNavigationActionGetShouldTryAppLinks) +STUB("x2EFECqrLYI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEEC1EPS6_) +STUB("x2Ksjt250dk", delegate_virtual_invoke_imt_24_p) +STUB("x2S70omOz8k", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_6NpUserEE8allocateEmPKv) +STUB( + "x2SO4giawto", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "x2STgP6CSrw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V120PlayerJoinableStatusEEEEC2ERS9_) +STUB( + "x2XLaUgQvOs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("x2Zc5mg3MT4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEptEv) +STUB("x2b3n6CWpSc", __cxx_global_var_init .27) STUB("x2nJkPwKx04", sceOpusDecDecodeFloatWithPriorityAndTimeout) +STUB("x2oy+FMgElQ", delegate_invoke_impl_target_6_p) +STUB("x2tlaNw89TU", _ZN7WebCore10parseRangeERKN3WTF6StringERxS4_S4_) +STUB("x2xwtORZ9vM", mono_aot_Sce_Vsh_Sticker_StickerLibAccessorplt_end) +STUB("x2y7V2Cx8gc", rgctx_fetch_trampoline_rgctx_27_p) +STUB( + "x2za5Um52I4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEE11release_refEv) +STUB( + "x3-ui+WUwGE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEaSERS7_) +STUB( + "x31TzMJZl68", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("x32H0fUz6a4", mono_aot_ReactNative_PUIunbox_trampoline_addresses) +STUB( + "x32xAI4h4XY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEEmmEv) +STUB("x32zUERnINY", _ZN9Inspector18InjectedScriptHost19isHTMLAllCollectionERN3JSC2VMENS1_7JSValueE) +STUB("x34TwRfJjZs", _ZNK3JSC12DateInstance29calculateGregorianDateTimeUTCERNS_2VM9DateCacheE) +STUB("x39L8AYS1VE", mono_profiler_install_iomap) +STUB("x3ClVaLIb1I", _ZN3sce7Toolkit2NP2V212NetworkUtils13NetStateBasic8deepCopyERKS4_) +STUB( + "x3G5RSdGS+A", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi42ParameterWithBinaryRequestBodyToUploadDataD2Ev) +STUB("x3HHFYSGufU", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V225WebApiErrorResponse_error8fromJsonERKNS_4Json5ValueE) STUB("x3K61sY5m8Q", sceAgcDriverSysEnableSubmitDone45Exception) +STUB( + "x3Klzcfxxv4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEppEi) +STUB( + "x3LhxXjWNqk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEppEv) +STUB("x3MYWe-pXzE", mono_aot_System_Reactive_Corejit_code_start) +STUB( + "x3UvJl6byuk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEEC1ERSA_) +STUB("x3W40-ViYoI", delegate_virtual_invoke_29) +STUB( + "x3ixpcz+b-g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEE7add_refEv) +STUB( + "x3npKS-hxa0", + _ZN15AbstractStorage15FacebookService23create_storage_instanceERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB( + "x3sn--uj+fw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEEaSERSA_) +STUB("x3u2afS3nMo", _ZN7WebCore9HTMLNames13onkeydownAttrE) +STUB("x3x3Qz5F8ZI", _ZN3sce2Np9CppWebApi11Matchmaking2V118PlayerForOfferRead13unsetOnlineIdEv) +STUB("x4-3rrCkF1s", pa_pop_marker) +STUB("x446yQG1vbo", _ZN3sce7Toolkit2NP2V24Core7Request21BehaviorModificationsD2Ev) +STUB("x49BHJ1GkTA", X509_get0_notAfter) +STUB( + "x4AI8dPkg1g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEixEm) +STUB("x4AUdbhpRB0", _ZN3sce4Json5ValueC1Em) +STUB("x4CazkClw00", _ZN9Inspector20DOMBackendDispatcherD1Ev) +STUB( + "x4F7vCkU7Z8", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB( + "x4G-29np7pM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEC1Ev) +STUB( + "x4HfuLOYwlo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEEppEv) +STUB("x4ODe4nEtxE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEEaSERS7_) +STUB("x4QytmKUIr8", _ZN4Manx4Pipe6createEPiS1_) +STUB( + "x4StMjMgcWQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEEEE3getEv) +STUB("x4SuxMR26I4", _ZNK3sce4Json6String4findEcm) +STUB( + "x4TQqifCI1E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEC2Ev) +STUB( + "x4VzGj2Puzs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEC2Ev) +STUB("x4W7eWiDXm4", mono_aot_System_Reactive_Linqunwind_info) +STUB( + "x4WgOx9wwG4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities13ErrorResponseEEEEixEm) +STUB( + "x4eEc+xVkQ0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEC1Ev) +STUB("x4ecR8nY5zo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEE3getEv) +STUB("x4fETeuAcVU", CryptographyDecryptAES128CBC) +STUB("x4lSE7dbIk0", udatpg_getDateTimeFormat_67) +STUB( + "x4lSqRDWELs", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEEC2ERKSC_) +STUB( + "x4se1u3Rzwk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "x4sp8UN8lkQ", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliSB_PvEPFvliSF_ESF_) +STUB("x4t1dx2puc8", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging16GameDataMessagesEE12deepCopyFromERS7_) +STUB( + "x4tzeu8o2ak", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEppEi) STUB("x4vQj3JKKmc", pthread_mutex_getspinloops_np) +STUB( + "x4wkOK84sBs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEdeEv) +STUB( + "x5+-LBUvGZo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB( + "x51mSQN3qnU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEEC2ERSA_) +STUB("x538fD7WHSk", mono_debug_open_image_from_memory) +STUB( + "x55nI-tKPqA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE23clearOnFinishedCallbackEv) +STUB("x55q-bC-i+8", FcPatternGetLangSet) +STUB( + "x5AaeU17S+Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEED2Ev) +STUB("x5Ab8Um6X3k", WKBundlePageCanHandleRequest) +STUB("x5CG2VMX4WM", vm_send_MapFile) +STUB("x5CgqP9ManE", WKPageTerminate) +STUB("x5CxXKVuMeU", _ZN7WebCore18TextureMapperLayerdaEPv) +STUB("x5ETQ5yFeCE", _ZN7WebCore11RoundedRectC2ERKNS_10LayoutRectERKNS_10LayoutSizeES6_S6_S6_) +STUB("x5FvFAajrAg", _ZN3sce7Toolkit2NP2V27NpUtils12Notification15UserStateChangeC1ERKS5_) +STUB( + "x5G3oECDx0c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEEC1EPKS8_) +STUB("x5MKM-6mgNs", udat_applyPatternRelative_67) +STUB("x5PHjJsfkoU", _ZN3WTF11fastReallocEPvm) +STUB("x5RhYy0RLb4", _ZN9Inspector28InspectorScriptProfilerAgentC1ERNS_12AgentContextE) +STUB( + "x5SF26jHPYw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEptEv) +STUB( + "x5U04zAfiWQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEEneERKS9_) STUB("x5VPqg5iyAk", sceAudioPropagationSystemDestroy) STUB("x5crCoykxlM", sceTsDisableRepresentation) +STUB("x5dq50ZjuCo", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V116TaskAvailabilityEE5beginEv) +STUB( + "x5e3ZH-Oz+Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEE11release_refEv) +STUB("x5fMr5644iE", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry14getHighestRankEv) +STUB( + "x5fzdh3vxs8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEE5resetEPS9_) +STUB( + "x5h3Mv4pcEM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) STUB("x5hqKRKziYU", sceShellCoreUtilActivateInit) +STUB("x5ip2i2zX0M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEEaSERKS7_) +STUB( + "x5pnMEi8CeY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEC2Ev) +STUB("x5yAFCJRz8I", _ZNSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC2Em) +STUB("x6+Bdn50A3Q", u_memcasecmp_67) +STUB( + "x6+EruGBBZ0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEE8pushBackERKS8_) +STUB("x6-jvqF098Q", _ZNK3sce2Np9CppWebApi14ConnectAccount2V212PartnerToken20getAccessTokenSecretEv) +STUB("x61cJE335hY", ures_openFillIn) +STUB( + "x63FI5PDpuw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEC1EPS6_PNS2_10LibContextE) +STUB("x6B3NsiKgnY", mono_aot_Sce_Vsh_Np_Udsplt_end) +STUB("x6G-3h8dupI", _ZN7WebCore9HTMLNames15scrolldelayAttrE) +STUB("x6GCwqRJgTM", _ZNSt15basic_streambufIcSt11char_traitsIcEE8overflowEi) +STUB( + "x6LCN0EK-Wo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEneERKS9_) +STUB("x6LF3hMLGPA", _ZN7WebCore18PlatformPasteboard5writeERKNS_20PasteboardCustomDataE) +STUB("x6NdPqXhx-I", _ZN3sce7Toolkit2NP2V24Auth7IdTokenD2Ev) STUB("x6STXhIEG0M", sceShellCoreUtilGetPsnAccountInfo) +STUB( + "x6TF+ULH-J4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("x6UtfbftZEo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEEC1ERS9_) +STUB( + "x6V32cBicyo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEptEv) +STUB("x6VrO1EEKm4", WKPreferencesGetLoadsImagesAutomatically) +STUB("x6W1wEeq6iA", _ZN3JSC14JSModuleRecord8evaluateEPNS_9ExecStateE) +STUB("x6YdJcD5edE", YGNodeMarkDirty) +STUB("x6aTU6zBgYg", _ZN9Inspector24NetworkBackendDispatcherD1Ev) STUB("x6deXUpQbBo", sceGameLiveStreamingSetPresetSocialFeedbackCommandsDescription) +STUB( + "x6hv6xg63sI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEppEi) +STUB( + "x6jPNCOFmQw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEE7popBackEv) +STUB( + "x6k8rREYAZs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEEneERKS9_) +STUB("x6kUDye23Qw", _ZThn16_N9Inspector22InspectorDebuggerAgent8stepOverERN3WTF6StringE) STUB("x6m8P9DBPSc", sceUserServiceGetThemeEntitlementId) +STUB( + "x6tgIzARLK4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "x6wcM7JLHhY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEE7add_refEv) +STUB("x72MwKv0+Bo", _ZNK7WebCore8FormData13lengthInBytesEv) +STUB( + "x76hEmgW4os", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEdeEv) +STUB( + "x7D8fB+APYI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEC1EPKS8_) +STUB( + "x7HqVMDRovM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE8pushBackERKS8_) +STUB("x7KuotsuFsU", _ZN12video_parser17cVideoProfilerMp416_createMovieInfoEv) +STUB("x7PXf5XGMgM", _ZN7WebCore8XMLNames15xmlNamespaceURIE) +STUB("x7Pq7rNZ890", logF_head) STUB("x7SQEXfeovg", sceAmprMeasureCommandSizeWriteAddressFromTimeCounterOnCompletion) +STUB("x7WYsWKaRi8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEEC2Ev) +STUB("x7WZnR869O0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging16GameDataMessagesEEC1Ev) +STUB( + "x7Z54hFIN-c", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS2_6VectorINS5_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS5_INS8_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "x7a+BKS-XZc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "x7bEySFrMi4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEEptEv) +STUB("x7g7Ebeo8-U", mlockall) +STUB("x7hvV9lxH40", _ZN7WebCore9HTMLNames11compactAttrE) +STUB("x7lVXgjV94U", _ZN7WebCore9HTMLNames8smallTagE) +STUB("x7pQExTeqBY", _ZNSt10filesystem9_Make_dirEPKcS1_) +STUB( + "x7qtY2aNG8w", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEdeEv) +STUB( + "x7rfe81l+3E", + _ZN7WebCore22EmptyFrameLoaderClient11createFrameERKNS_3URLERKN3WTF6StringERNS_21HTMLFrameOwnerElementES7_bii) +STUB("x7uT8WsdXiw", ucnv_openAllNames_67) +STUB("x7vtyar1sEY", _ZNSt8ios_base7failureD0Ev) +STUB( + "x7yPpOk0CwE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEEEC2ERKSA_) STUB("x81--PzmGug", sceAppInstUtilAppConvertAppDownloadToDisc) +STUB("x81Ss-WpUEw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEEC1ERS7_) +STUB( + "x8A3ICUVqDE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEC1Ev) +STUB( + "x8AvYY6pUu4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE7releaseEv) +STUB( + "x8BadY5mbWM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEeqERKS9_) +STUB( + "x8ChKf8HJOY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) STUB("x8H4hnt+k78", scePigletAllocateSystemMemory) +STUB("x8LHSvl5N6I", _ZTISt11logic_error) +STUB( + "x8OFjLd4sZ4", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId10setifMatchEPKc) +STUB( + "x8OJ0DXr-r4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEC2Ev) +STUB("x8PFBjJhH7E", _ZNSt8messagesIwEC2Em) +STUB("x8Yu1n3NMo0", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Wordfilter16SanitizedCommentEEC1Ev) +STUB("x8d77-9XWqI", _ZNK7WebCore5Color6getHSLERdS1_S1_) +STUB("x8dc5Y8zFgc", cosl) +STUB( + "x8eQ0n6GZPg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("x8eruQ-MSck", mono_aot_Sce_Vsh_Registryjit_code_start) +STUB("x8fiUZc8BGs", + _ZN3sce2Np9CppWebApi14ConnectAccount2V216PartnerTokensApi26ParameterToGetPartnerTokenaSERS5_) STUB("x8mJ9x9-beY", sceDebugGetEventListForEQueueFd) +STUB("x8npgO9yaNE", glGetVertexAttribIiv) +STUB( + "x8nrSlYKZWs", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody10getString8Ev) STUB("x8qnXqh-tiM", sceMouseRead) +STUB("x8sY6aSiMNI", __asan_stack_malloc_1) +STUB("x8tkTyIE2d4", coil_set_debugger_attached) STUB("x8uvuFOPZhU", sceAvPlayerAddSourceEx) +STUB("x8y0qzLiYOU", FT_Has_PS_Glyph_Names) +STUB("x94EvR+FAZc", JSWeakObjectMapClear) +STUB("x95QTWiQURY", mono_aot_Sce_Vsh_Sl2_NativeQueueClientjit_got) +STUB( + "x9610y+vXOU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "x980He6wpH8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEE6assignEPS5_PFvS7_EPNS2_10LibContextE) +STUB("x98GXa9QfmY", __ubsan_handle_type_mismatch) +STUB( + "x993-vtrX3s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122GameSessionPushContextEEEEEEdeEv) +STUB( + "x99V3tArvzE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEEEptEv) +STUB( + "x99WfCkRuv8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEppEv) +STUB("x9Et46dq93c", _ZN3WTF9BitVector13OutOfLineBits6createEm) +STUB( + "x9HY+8LbDsw", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("x9IpDLtzwVQ", _ZN3sce2Np9CppWebApi6Common6VectorIdE3endEv) +STUB("x9O4rLl7ZeE", _ZN3sce7Toolkit2NP2V212EventsClient11EventInGameC2Ev) +STUB("x9OoYMTjb4c", _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse13setActivityIdEPKc) +STUB( + "x9PzC5CFugM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEptEv) +STUB("x9SN0TpFOrc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEcvbEv) +STUB("x9W3XZyylbQ", _ZN7WebCore11DisplayList14ConcatenateCTMC2ERKNS_15AffineTransformE) +STUB("x9XrvF3ulmM", __tsan_unaligned_read8) STUB("x9bSmRSE+hc", sceNetCtlEnableBandwidthManagementIpcInt) +STUB("x9bs4uf-vWE", ures_findSubResource_67) +STUB("x9hkly4XJFc", + _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead23supportedPlatformsIsSetEv) +STUB("x9icWnPFGcg", + _ZN7WebCore10Pasteboard4readERNS_26PasteboardWebContentReaderENS_23WebContentReadingPolicyE) +STUB("x9mgKEJJ24c", FTC_Manager_LookupSize) +STUB("x9nBgCbadYs", _ZNK7WebCore15ActiveDOMObject16isContextStoppedEv) +STUB( + "x9rXTc6Q80I", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEmmEv) +STUB( + "x9ucF2xeR1o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEaSERKS9_) +STUB("x9uumWcxhXU", wcsspn) +STUB( + "x9y-CK67bxc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("x9yyuiVwzEI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEppEv) +STUB( + "xA+rJXMHbqo", + _ZN7WebCore13MIMETypeCache17addSupportedTypesERKN3WTF6VectorINS1_6StringELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("xA-vTlUUu0w", _ZN7WebCore14SecurityPolicy18shouldHideReferrerERKNS_3URLERKN3WTF6StringE) +STUB("xA074SXcjRo", WKBackForwardListGetCurrentItem) +STUB( + "xA129Wck6j4", + _ZN9Inspector25DebuggerBackendDispatcherC1ERNS_17BackendDispatcherEPNS_32DebuggerBackendDispatcherHandlerE) +STUB( + "xA2FtqZR8KQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125FriendJoinedPlayerSessionEE7add_refEv) +STUB( + "xA3MirCdc2s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEED1Ev) +STUB( + "xA42mNb2XoA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEE5resetEPS6_) +STUB("xA7NvdrsNg0", mono_aot_System_Netplt) +STUB("xAE5zO3kEi0", _ZN9Inspector28PageBackendDispatcherHandlerC2Ev) STUB("xAIJ9uRYGrw", sceFontGraphicsSurfaceSetTargetView) STUB("xAKAe6kFk90", sceKernelInternalMapDirectMemory) +STUB("xAVlh3AunAA", _ZN3sce7Toolkit2NP2V23TUS25TusDataStatusForCrossSaveD2Ev) +STUB( + "xAWIJPSPOcg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEC2ERS7_) STUB("xAdGRA3ucDg", sceNpManagerIntLoginGet2svInfo) STUB("xAeBOa0A3kk", sceAgcAcbSetMarker) +STUB( + "xAhFZiCrK7w", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEeqERKS9_) +STUB("xAo5lvA+W3o", u_setTimeZoneFilesDirectory) +STUB( + "xAqtm7i85OU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEC1EPS8_) +STUB( + "xArhBhqvta4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("xAtgq3Uz-VA", _ZN3sce3pss5orbis5video14VideoPlayerVcs23GetNetworkStateForDebugEv) +STUB("xB-bdVRR4Ig", _ZN3sce7Toolkit2NP2V26Trophy17TrophyPackSummaryC2ERKS4_) +STUB( + "xB0TBuOQUVg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEEEcvbEv) +STUB("xBA1pQQ0cco", mono_aot_Sce_Vsh_PsnUtilplt) +STUB("xBBKTSCC6qU", _ZN3sce2Np9CppWebApi7Matches2V122RequestMatchStatisticsD2Ev) +STUB("xBETAlxKe5Q", _ZN3sce2np7HttpUri6ConcatEPKcS3_PcmPm) +STUB("xBF8Fgr9ijE", mono_profiler_install_code_chunk_destroy) +STUB( + "xBGM8UyKYFA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("xBOnLORfxB4", _ZNK7WebCore15HTMLFormElement12autocompleteEv) +STUB( + "xBWBSZy0IVc", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("xBXvYPKkbns", _ZN13MsvMetaEditor9searchBoxEPKcb) +STUB("xBZFJROAY60", WKBundlePageIsUsingDarkAppearance) +STUB( + "xBc43YoKzfs", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("xBcAK4m9CQs", _ZNK3sce2Np9CppWebApi11Matchmaking2V15Error10getMessageEv) STUB("xBd3WoSt2PA", sceUltGetMutexInfo) STUB("xBkBINKo6gw", sceNpTrophySystemUnregisterTitleUpdateCallback) +STUB( + "xBlmflvkdFA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEEC2Ev) +STUB( + "xBnTYVjQcg0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEEEdeEv) +STUB( + "xBna7PoLYVY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE7reserveEi) +STUB( + "xBrYWSEri04", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEED1Ev) +STUB("xBtnc-hPeag", unorm2_getInstance) +STUB( + "xBwfK0a8HNw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEC2EPS8_) +STUB("xC33v2DhfRM", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEE3getEv) +STUB( + "xC3kq9EHJS4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE7reserveEi) +STUB("xC8OivuT6nQ", _ZNK3sce2Np9CppWebApi7Matches2V118CreateMatchRequest17getExpirationTimeEv) +STUB("xCC2+A1QU2M", _ZN7WebCore22EmptyFrameLoaderClient18makeRepresentationEPNS_14DocumentLoaderE) +STUB("xCDZxQZwL48", rgctx_fetch_trampoline_rgctx_73_p) +STUB( + "xCGVteZkQYc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE8copyFromERKS9_) +STUB( + "xCHE7jJ7j4E", + _ZN3sce2Np9CppWebApi6Common19UpStreamTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS6_9RecordApi30RecordLargeDataResponseHeadersEEEEC1Ev) +STUB("xCKL92JE4V8", mono_image_fixup_vtable) +STUB("xCMuNG9KIgw", _ZN7WebCore16MIMETypeRegistry20isJavaAppletMIMETypeERKN3WTF6StringE) +STUB( + "xCNRSev9h5A", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEiRNS2_10LibContextEPT_m) +STUB("xCTKl5FsEOM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V15ErrorEEC1ERKS7_) +STUB("xCU2xwTBJP8", _ZN7WebCore14ResourceHandle11clearClientEv) +STUB("xCa6ex49oUQ", _ZN3sce7Toolkit2NP2V27NpUtils7Request22GetOnlineIdByAccountIdD2Ev) +STUB( + "xCafp5ZhL4Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEEptEv) +STUB("xCd0WNG05U4", + _ZN3sce2Np9CppWebApi11UserProfile2V113BasicPresence15setOnlineStatusERKNS3_12OnlineStatusE) +STUB("xCeTs4XzS8k", _ZN7WebCore11MediaPlayer13volumeChangedEd) +STUB( + "xCg+igDBo3Q", + _ZN3sce7Toolkit2NP2V28Presence11setPresenceERKNS3_7Request11SetPresenceEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("xCilgvjEqEs", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_18SessionInformationEE7addressERS3_) +STUB("xCkh-S5yz3Q", _ZN7WebCore17FrameLoaderClient31dispatchDidChangeProvisionalURLEv) +STUB( + "xCn5Vc6N19g", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayer12setsessionIdEPKc) +STUB("xCp+mHd2wd0", + _ZNK7WebCore12ChromeClient35dispatchViewportPropertiesDidChangeERKNS_17ViewportArgumentsE) +STUB("xCqEoId1vUs", mono_aot_Sce_Vsh_PatchCheckerClientWrapperplt) +STUB("xCqLd47LRsI", _ZN3sce2Np9CppWebApi13InGameCatalog2V53Sku15setDisplayPriceEPKc) +STUB( + "xCxLYQzFTpE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEC2EPS8_) STUB("xCxMQ7Efh4k", sceRegMgrSrvGetRegionStr) +STUB("xCz8oCboV7Y", jpeg_fdct_7x7) +STUB("xD2EhCk2nO0", mono_aot_Sce_Vsh_MimeTypeplt_end) +STUB("xD3+P-Dx0B0", _ZN12video_parser13cVideoPathMgv14GetMaclistNameEPc) +STUB("xDBg3J+QMqM", _ZN3sce7Toolkit2NP2V29Messaging7Request17LocalizedMetadataC1Ev) +STUB( + "xDEa2lswa5c", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "xDFZEyVxx-Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEmmEi) STUB("xDHPARrk3wM", sceVideoCoreChangeSubtitle) +STUB( + "xDHk-HYO6rs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEED1Ev) +STUB("xDMYRn1Mc-g", _ZN3sce2np9HttpTrans4InitERKNS0_12HttpTemplateEiPKcm) STUB("xDPdCurOujQ", sceAgcDriverGetTraceInitiator) +STUB( + "xDY0T9zWJ+M", + _ZN3sce2Np9CppWebApi14SessionManager2V124SearchGameSessionFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_17SearchGameSessionEEE) +STUB("xDcpRKGsA4c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEixEm) +STUB( + "xDhBHz812xA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE13goToProcessedEi) +STUB("xDiIcwLtCoQ", _ZN4Manx6CookieD1Ev) +STUB( + "xDik7tORws0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("xDrWJARfCbk", _ZThn8_N3sce2np6Handle10CancelImplEi) +STUB( + "xDsl9jCU0J8", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt4listINS1_11TusVariableENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB( + "xDwvWxMr16A", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEE5emptyEv) +STUB("xDxKwXP9YIU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_6Trophy16UnlockedTrophiesEED2Ev) +STUB("xDxiiWc1pgU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V110UserTicketEED2Ev) +STUB("xDzU2wxFzF4", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V224TestForProfanityResponse6toJsonERNS_4Json5ValueEb) STUB("xDzWWofyEtA", sceMatTagAllocation) +STUB( + "xE4xDL554n8", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead21setSupportedPlatformsERKNS1_6Common6VectorINS5_6StringEEE) +STUB("xE6liwbu0NE", uhash_iget) +STUB( + "xE8ZuCrICxQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("xECsbsDabJE", _ZN3WTF19MetaAllocatorHandleD1Ev) +STUB("xEIapZTJY8E", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Publisher9unsetIconEv) +STUB( + "xEKkjMXN9Pk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("xEKp9dwsU1U", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ChildActivityAvailabilityEE8pushBackERKS6_) +STUB("xENtRue8dpI", strtof) +STUB( + "xEfw4sMd9HI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEEC2ERKSA_) +STUB("xEg9rENUCrA", WKPreferencesGetXSSAuditorEnabled) +STUB("xEjBSjulggc", _ZN7WebCore21MediaRecorderProviderD1Ev) +STUB("xEmf8jJoTcE", mono_aot_Sce_Vsh_SQLitejit_got) +STUB( + "xEqHUm9Un9o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "xErJ8lPMPno", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEED1Ev) +STUB("xEszJVGpybs", sprintf_s) +STUB( + "xEtsDDk95eY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEE11get_deleterEv) +STUB( + "xEwbbFlxAEI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEixEm) STUB("xExAZRNEpEM", sceHttpCacheReadData) +STUB("xEyNUoXLzxM", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable6toJsonERNS_4Json5ValueEb) +STUB("xF1F1M-8SM8", Java_java_io_UnixFileSystem_setPermission) +STUB("xFIZ75qI1NQ", _ZN3sce2Np9CppWebApi6Common6VectorImE21intrusive_ptr_add_refEPS4_) +STUB( + "xFLvvglzVzg", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124ConnectionQualityFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_17ConnectionQualityEEE) +STUB("xFMn-zbvccU", _ZN7WebCore9GLContextC2ERNS_15PlatformDisplayE) +STUB( + "xFNJVteMh8w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEE7add_refEv) +STUB("xFRjRu9SCAw", _ItL_pS6) +STUB("xFRto5ktLbw", mono_aot_Sce_PlayStation_PUIunwind_info) +STUB("xFTGcWzxgh4", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi33ParameterToGetLargeDataByObjectId10unsetrangeEv) +STUB("xFWEGxd-NWM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEE11get_deleterEv) STUB("xFebsA4YsFI", pthread_rwlockattr_init) +STUB("xFmF5rhJH+o", _ZN4Manx3Ssl10SslContext21postNotifyOriginFrameE) +STUB("xFnlhQw0Zfc", WKBundlePageSetComposition) +STUB( + "xFq2lAPT1B0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEdeEv) +STUB( + "xFqYVKFQHJU", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions35hasxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB("xFva4yxsVW8", _ZNSt8numpunctIcED2Ev) +STUB( + "xFwfmckqZ8w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V113ErrorResponseEEEE7popBackEv) +STUB( + "xFz1rsxI6Yg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEC1EPNS2_10LibContextE) +STUB( + "xFz35oE8-FQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEC1Ev) +STUB("xG+cz2ROfoc", YGNodeStyleSetFlexShrink) +STUB("xG0uiwYsPkg", _ZN3sce7Toolkit2NP2V28Commerce14ProductDetails25SERVICE_PROVIDER_NAME_LENE) +STUB( + "xG5ncWijH1o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEEC1Ev) +STUB( + "xG8+eHbnajM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEC1EPNS2_10LibContextE) +STUB("xGAEbwA7FNo", FcPatternCreate) +STUB("xGGfdp3gJME", _ZN3WTF11Persistence7EncoderlsEm) +STUB("xGOZLk4Ci8c", _ZN7WebCore9HTMLNames14onprogressAttrE) +STUB("xGT4Mc55ViQ", _Fofind) +STUB( + "xGTc5A0PYGE", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEEiRNS2_10LibContextEPT_m) +STUB("xGWv5lIesok", _ZN7WebCore8SVGNames17v_ideographicAttrE) +STUB("xGbaQPsHCFI", _ZNSt10filesystem10_Close_dirEPv) +STUB("xGevQ8oWgwU", u_scanf_parse_67) +STUB( + "xGj97VendkY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEEE3endEv) +STUB( + "xGjQOJMY2yQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEixEm) +STUB( + "xGm8M65BM0I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "xGpcTosoL60", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "xGpgzdhesE8", + _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScore24setxPsnAtomicOperationIdEPKc) +STUB("xGsMGzTYI3o", WKPreferencesGetThreadedScrollingEnabled) +STUB("xGw9DzhKxfo", _ZN3WTF12AtomicString6numberEd) STUB("xGwa20Nmb2w", sceMoveTrackerPlayStart) +STUB( + "xGyy6PF9IBI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEEppEv) +STUB( + "xGzBYv+B7SI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) +STUB("xGzizWELpCk", YGNodeGetContext) +STUB("xH+Wozh5WZY", + _ZN7WebCore17JSHTMLLinkElement15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) STUB("xH4Q9UILL3o", sceAudio3dBedWrite2) +STUB("xH5BX74yfvg", _ZNK7WebCore11PageOverlay19viewToOverlayOffsetEv) +STUB( + "xH6GlizFCsc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEED2Ev) +STUB("xH9+FFBAwVI", + _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody14unsetSubmitterEv) STUB("xHAiSVEEjSI", sceNpMemoryHeapGetAllocatorEx) +STUB("xHBi0i+z3VU", _ZN3JSC8DebuggerD2Ev) +STUB( + "xHFUUPeij+s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEEEC2ERSA_) +STUB( + "xHKG1HgJyf4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEEE5resetEPS9_) STUB("xHSNCLrQq3A", sceVoiceDisableChat) +STUB( + "xHSxYg8BAlc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEEcvbEv) +STUB("xHTZMQx6OZ4", __tsan_gpu_full_acquire) +STUB("xHVUdb5NNSw", u_memcpy) +STUB("xHW7NNh3kD8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEE11release_refEv) +STUB("xHXHyRoA-EA", Java_java_io_ObjectOutputStream_getPrimitiveFieldValues) +STUB( + "xHbrJlQ2tJI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEEptEv) +STUB( + "xHlAIbS0Dro", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEED1Ev) +STUB("xHoW2U3h3Uc", _ZN7WebCore11MathMLNames9mglyphTagE) STUB("xHpt6+2pGYk", sceSslGetNotAfter) STUB("xHq87H78dho", sceNetBandwidthControlGetDataTraffic) +STUB("xHr7sblfjwc", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi25ParameterToGetMatchDetail9terminateEv) +STUB("xHzy6JMpcs8", + _ZNK3sce2Np9CppWebApi30CommunicationRestrictionStatus2V324ValidationConstraintInfo8getValueEv) +STUB( + "xI+SSLaA9xc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "xI2dIFPjl1s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEppEi) +STUB("xI6xSSQA3qM", mono_domain_get_id) STUB("xI8avtVkGWw", sceVdecCoreCreateDecoderSvp) +STUB("xID4FVwShdw", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V13MmrD2Ev) +STUB("xIDyivHSSmU", _ZN7CoreIPC14MessageEncoder47setShouldDispatchMessageWhenWaitingForSyncReplyEb) +STUB("xIFe7m4wqX4", SSL_initServerCert) +STUB("xIFvIR8xXfg", _ZN3sce7Toolkit2NP2V212ActivityFeed12SharedVideosC1ERKS4_) +STUB("xIGhjgZac+0", _ZN9Inspector23TargetBackendDispatcherD2Ev) +STUB( + "xIJDCKiFUmc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEE5clearEv) +STUB( + "xIKDGNGXNgE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEC1ERS7_) +STUB("xIKF2AX+53c", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEEdeEv) STUB("xIMClZZz50k", sceShellCoreUtilActivateRecordActivation) +STUB("xIQbqE-cXqE", _ZTVN7WebCore16TrackPrivateBaseE) +STUB( + "xIRTqklHvOE", + _ZN9Inspector21PageBackendDispatcher17overrideUserAgentElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("xIZcjHdeKaU", _ZTVN7WebCore24CoordinatedGraphicsLayerE) +STUB("xIb1AFc6YpI", __tsan_current_error_report) +STUB("xIbyVXcGV28", Java_java_io_FileInputStream_close0) +STUB( + "xIciPeK0n9g", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEppEi) +STUB( + "xIdBBTvAz7o", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi21ParameterToUploadData10initializeEPNS1_6Common10LibContextEPKci) +STUB("xIdOw1PLvVQ", _ZN3sce7Toolkit2NP2V29Messaging7Request17SendInGameMessageD2Ev) +STUB( + "xIkHGMXJFhA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEmmEv) STUB("xIkcEpdMxrw", sceCompositorInit) +STUB( + "xIpOxahDVlg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEdeEv) +STUB("xIphIzDc-ZM", mono_btls_ssl_connect) +STUB( + "xIqJdMaCQ6k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEC2EPS6_PNS2_10LibContextE) +STUB("xIx3rgbZkPA", mono_type_get_underlying_type) +STUB("xIy0W9HvBL4", + _ZN7WebCore8Document15openForBindingsERNS_9DOMWindowES2_RKN3WTF6StringERKNS3_10AtomStringES6_) +STUB("xIz9VSusdWk", _ZN7WebCore19BlurFilterOperationD1Ev) +STUB( + "xIzLXw0g1Jg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEC1EPS8_) +STUB( + "xIzkox6kbJw", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi26ParameterToGetGameSessions16setincludeFieldsENS1_6Common12IntrusivePtrINS6_6VectorINS6_6StringEEEEE) STUB("xJ5NFWC3m+k", sceSaveDataDirNameSearchInternal) +STUB( + "xJ9HOFO7os4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEE5resetEPS6_) +STUB("xJHMfJSxPUg", JVM_DTraceIsProbeEnabled) +STUB("xJHXJ5fxBGY", bdjbg_copyPlanes) +STUB("xJIUb8Mfpqc", _ZN3sce7Toolkit2NP2V24Core20getErrorCodeAsStringEiRNS3_15StringifyResultE) +STUB("xJIr8LUoRF4", _ZN7WebCore17FrameLoaderClient19finishedLoadingIconEmPNS_12SharedBufferE) +STUB( + "xJPWSymYFhs", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser10unsetlimitEv) +STUB("xJRNEp2d-Wg", _ZN3WTF13StringBuilder22appendQuotedJSONStringERKNS_6StringE) +STUB("xJRyp4B6KSI", _ZNK3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer12natTypeIsSetEv) +STUB("xJSKJ54imKU", mono_aot_Sce_Vsh_VrEnvironmentunwind_info) +STUB("xJUQDRAno+Q", _ZN7WebCore18HTMLMarqueeElement4stopEv) +STUB("xJYAvA1ubc8", _ZN12video_parser5vpcom9OpenAsyncE) +STUB("xJZvN8ywcko", _ZNK3JSC12StackVisitor5Frame20computeLineAndColumnERjS2_) +STUB( + "xJaxgqlm6Wo", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC1ERKSC_) +STUB("xJbY3QNYIzM", _ZN15AbstractStorage15HttpTransaction8SendDataEPKvm) +STUB( + "xJdufPYllLs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEaSERKS7_) +STUB( + "xJeioPn7uFU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEeqERKS9_) +STUB( + "xJenPvYZaO0", + _ZN7WebCore11FrameLoader16loadFrameRequestEONS_16FrameLoadRequestEPNS_5EventEON3WTF6RefPtrINS_9FormStateENS5_13DumbPtrTraitsIS7_EEEE) +STUB( + "xJhOAhp5SiU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEE11release_refEv) +STUB( + "xJhfeQtTUMo", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEEC1Ev) +STUB("xJiXtC0IuMQ", mono_shared_mutex_unlock) +STUB("xJrAJW1ibOs", _ZN14OpaqueJSStringD2Ev) +STUB("xJsxrCNpOjU", WKBooleanGetValue) STUB("xJtkTRMQhEA", sceUserServiceSetGlsSortOrderGame) +STUB("xJvhaEzgb8Y", WKPreferencesGetDataTransferItemsEnabled) +STUB("xK56zMV6L4g", _ZN7WebCore6Path2DdaEPv) +STUB( + "xK6UXGpTPtU", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot17getnpServiceLabelEv) +STUB("xK7B8RkMD6s", _ZN3WTF6Config17permanentlyFreezeEv) +STUB( + "xKEKGWPSAJs", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_18GameCustomDataItemENS1_15AppSTLAllocatorIS5_EEEED2Ev) +STUB("xKF1H20+f3c", _ZN3sce7Toolkit2NP15AppSTLAllocatorIcED2Ev) +STUB("xKH2Sg7xO-g", _ZN7WebCore13GraphicsLayer20setReplicatedByLayerEPS0_) +STUB("xKIGMVEduec", + _ZN3sce2Np9CppWebApi14ConnectAccount2V216PartnerTokensApi26ParameterToGetPartnerTokenC1Ev) +STUB( + "xKK30TtQFr8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEC1EPS6_PNS2_10LibContextE) +STUB("xKQvzQ1q63A", WKPageCopyActiveURL) STUB("xKSgaSVX1io", sceShellCoreUtilSetAppData) +STUB( + "xKYOafUsokA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEED1Ev) +STUB("xKZwQWXnnG0", utrie2_openDummy) +STUB( + "xKawSymHepI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("xKc5mDhiV8I", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEEC1Ev) +STUB( + "xKfX6zOWrNY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEC1Ev) +STUB( + "xKiOo15Kcn0", + _ZN9Inspector18InjectedScriptHost21getInternalPropertiesERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB( + "xKjQErcHiSg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "xKjvZQc9mS0", + _ZN7WebCore16BlobRegistryImpl19writeBlobToFilePathERKN3WTF3URLERKNS1_6StringEONS1_8FunctionIFvbEEE) +STUB("xKkINBg2a9Q", _ZN3sce7Toolkit2NP2V212ActivityFeed15PlayedWithStoryC1Ev) +STUB( + "xKl8TEc8ex0", + _ZN7WebCore11JSDOMWindowC2ERN3JSC2VMEPNS1_9StructureEON3WTF3RefINS_9DOMWindowENS6_13DumbPtrTraitsIS8_EEEEPNS_13JSWindowProxyE) +STUB("xKsz5R8YMnQ", udatpg_getAppendItemFormat_67) +STUB("xL-AIWXwEQU", _ZN3sce7Toolkit2NP2V27Ranking7Request15GetFriendsRanks14MAX_NUM_BOARDSE) +STUB( + "xL1fjHSSpeQ", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB("xL5mH37tkIA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V117ResponseMatchTypeEEeqERKS7_) +STUB( + "xLBQuWC3wSc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEaSERKSA_) +STUB( + "xLEc4iOjE-U", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setInteger9ERKi) +STUB( + "xLHN5+xMFUE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEC1Ev) +STUB("xLNi34K9wx4", WKBundleGetLiveDocumentURLs) +STUB("xLQ2PgKkCag", _ZN3sce7Toolkit2NP2V23TUS19FriendsDataStatusesD1Ev) +STUB( + "xLSWFY33SNQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEC1Ev) +STUB( + "xLUZYlHXi0M", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEeqERKS9_) STUB("xLXHyF8De0c", _sceLibcMspaceRealloc) +STUB( + "xLZr4GJRMLo", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERe) +STUB("xLaM0VCrVBA", uloc_getParent) +STUB( + "xLdjWXlnwq0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "xLmGp4+8vUo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEmmEi) +STUB( + "xLo6LHXmsFY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEC2ERS7_) +STUB("xLoVJKHvRMU", __asan_init) +STUB( + "xLpfOwfh9Ms", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEENS4_INS6_9RecordApi26RecordScoreResponseHeadersEEEE11hasResponseEv) STUB("xLryCIDKa0c", sceDataTransferRequestGetUsersPS4) +STUB( + "xLw0kufhicc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB("xLwrrUgb7hU", mono_aot_Sce_Vsh_DiscPlayerplt) +STUB("xLyXWnkUXyk", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE5beginEv) +STUB("xM+sHakL1AU", ptohw) +STUB("xM0dBqZ6zz4", uprv_decNumberPower_67) +STUB("xM5re58mxj8", _ZNSt7codecvtIDsc9_MbstatetE2idE) STUB("xMC5Psx4v9k", sceFiosCacheContainsFileRange) +STUB( + "xME1OGvXnro", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEmmEi) +STUB( + "xMFY+VDS-o0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEneERKS9_) +STUB("xMLT-YYz4zo", mono_gc_make_root_descr_user) +STUB( + "xMN3a1yLXYI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEC1Ev) +STUB("xMP0AJuA8uo", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_10TrophyInfoEED1Ev) +STUB( + "xMQgFKGYk1E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE10setContextEPNS2_10LibContextE) +STUB( + "xMRRPDUOn1I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE21intrusive_ptr_sub_refEPSA_) +STUB( + "xMUKo+Nar0c", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEplEm) +STUB( + "xMYZdMAKtTI", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi34ParameterToJoinGameSessionAsPlayerC2ERS5_) +STUB( + "xMZmqqxYeQI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEEEcvbEv) +STUB("xMb2Ch5scV4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEEdeEv) +STUB("xMdAAKfBCAQ", _ZN3sce7Toolkit2NP9Interface16terminateServiceENS1_11ServiceTypeE) +STUB("xMe6RPFDPLA", WKPreferencesGetWebGLEnabled) +STUB( + "xMihnFIYnRc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEE7add_refEv) +STUB("xMksIr3nXug", __atomic_fetch_and_8) +STUB("xMlxiPxwrAw", glVertexAttribI4i) STUB("xMmIU5R9IHY", sceNpTrophySystemWrapGetTrophyTitleIdsByNpTitleId) +STUB("xMmIi98WDUQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V125ChildActivityAvailabilityEEC1EPS6_) STUB("xMo9ENEu2E0", sceHmd2ReprojectionSetParam) +STUB("xMoJVrbD2rQ", JVM_GetComponentType) +STUB( + "xMwB6PGoi8M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEC2Ev) +STUB("xMzCRdjMZc8", rgctx_fetch_trampoline_rgctx_15_p) +STUB("xN+r1xNXlfg", _ZN7WebCore8SVGNames16stroke_widthAttrE) +STUB( + "xN05qT6p0B0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEneERKS9_) +STUB( + "xN33K5UQCQg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE3endEv) +STUB("xN4eAaVG-rI", __asan_load2) +STUB("xN7BBNHgLrs", _ZN3WTF6StringC1EPKh) +STUB("xN8mpDR2BTY", _ZN3sce7Toolkit2NP9Interface5init2EPFvRKNS1_5EventEERNS1_9NpTitleIdE) +STUB( + "xN8ylEqf+8U", + _ZN9Inspector20CSSBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) STUB("xNDi9AbcCWg", sceBackupRestoreUtilGetBackupProgress) +STUB("xNPv1ey9cEQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEE7get_refEv) +STUB("xNRh+DqJx4k", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_33ActivityFeedSharedScreenshotStoryEE7addressERS3_) +STUB("xNWZr+mLVwc", _ZN3JSC11ArrayBuffer6createEjj) +STUB( + "xNbLWXi0ucc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEdeEv) +STUB( + "xNcVnG-rlCc", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB("xNel84IThc0", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead21joinableUserTypeIsSetEv) +STUB("xNhOneyp6W8", _ZN7WebCore11PageOverlay15setNeedsDisplayEv) +STUB("xNjgqL+SEf8", + _ZN3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallbackaSERS5_) +STUB( + "xNp7tZ3AoZw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEE11get_deleterEv) +STUB("xNpWJsHzlpw", __sanitizer_sandbox_on_notify) +STUB( + "xNw1EZ04xPc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEC1Ev) +STUB("xNxRXaItFE0", psl_builtin_file_time) +STUB( + "xO1Bcredhfs", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEEiRNS2_10LibContextEPT_m) +STUB("xO2liLZlQcA", _ZN7WebCore11MediaPlayer19originsInMediaCacheERKN3WTF6StringE) +STUB("xO9q1axBX6E", _ZN7WebCore14DocumentLoader10commitDataEPKcm) +STUB("xOB78urQB6o", + _ZN15AbstractStorage15FacebookStorage11DeserializeESt10shared_ptrINS_7ContentEEPS1_INS_4ItemEE) +STUB("xOC0RMoxhIM", _ZN3sce3Xml3Sax6ParserD2Ev) +STUB("xOF0-FNtQjo", throw_corlib_exception_p) +STUB( + "xOMOnUg-0Fg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEC2EPKS8_) +STUB("xONraGfpcUI", _ZN3WTF14FileSystemImpl14MappedFileDataD2Ev) +STUB("xOPEGmoEd-U", _ZN3sce7Toolkit2NP2V27Ranking12RangeOfRanks10FIRST_RANKE) STUB("xOQ9oACobA4", sceUltUlthreadGetSelf) +STUB("xOSwbRCn1AA", _ZN7WebCore8SVGNames16stdDeviationAttrE) STUB("xOZLTgIzN-M", sceAudioOutSetAllMute) +STUB( + "xOcodQBg6lk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEEC1EPS7_PNS2_10LibContextE) +STUB("xOo2f6redWI", _ZN7WebCore19TextResourceDecoder5flushEv) +STUB( + "xOufK+lmPj4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEE11release_refEv) +STUB( + "xOwrB-uyIZo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEmmEv) +STUB("xOyw2GZwj3Y", _ZN3sce2np13JsonArrayImplD0Ev) +STUB("xP3aCoP48XI", _ZNK15AbstractStorage14MemfileContent13GetCapabilityEv) STUB("xP45eIntEis", sceFiosFHStatSync) +STUB("xP4EC4Sp9GI", mono_assembly_get_image) +STUB( + "xP5wFtRAPLs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEC2EPS8_) +STUB("xP6BkeQUcgY", _ZN7WebCore18SecurityOriginData22fromDatabaseIdentifierERKN3WTF6StringE) +STUB("xP6Sta4xjvs", WKPluginInformationPathKey) +STUB( + "xP6xy9SFSxQ", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_7Runtime12RemoteObject4TypeEEEN3WTF8OptionalIT_EERKNS6_6StringE) +STUB("xP9Uf30UolY", mono_aot_Sce_Vsh_PatchCheckerClientWrapperplt_end) +STUB("xPDpybSVciw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEE7get_refEv) +STUB( + "xPDzGjyjYEQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEE5resetEPS6_) +STUB("xPHdjSBeL1M", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12FriendsRanksEED2Ev) +STUB( + "xPKyV9+ZHas", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEC1ERS8_) STUB("xPRHNaD3kTc", sceNpUtilCmpAccountId) +STUB("xPSfvE5URlw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEdeEv) +STUB( + "xPTkSf+AtE4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127RequestGameSessionSpectatorEEEEEED2Ev) +STUB("xPVphAvh+AY", _ZN3NTF8Registry8finalizeEv) +STUB("xPYPMODatn4", _ZN7WebCore26IdentityTransformOperation6createEv) +STUB( + "xPblZiJjpvM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ReportResultsRequestEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "xPbysB3-I84", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUserC2ERS5_) STUB("xPfDuZPWMLM", sceMusicFwGetVolume) +STUB("xPgm+IdmVVY", _ZN7WebCore10TimeRangesC2Edd) +STUB( + "xPgqdW6vjGA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEEaSERKSC_) +STUB( + "xPk8r0PfFUA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEE11get_deleterEv) +STUB("xPlaFipjpdo", _ZN3sce7Toolkit2NP2V28Commerce7Product13IMAGE_URL_LENE) +STUB( + "xPligOYHgRE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEEmmEi) +STUB("xPnJ0vXyyc4", _ZN7CoreIPC10Connection18platformInitializeEi) +STUB( + "xPpALBjiuoc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEE5resetEPS6_) +STUB("xPpX-cwnsKs", WKPageIsWebProcessResponsive) STUB("xPrF2nGPBXQ", sceNpDeleteSema) +STUB( + "xPufXzFRSIE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEixEm) STUB("xPvV6oMKOWY", sceNpManagerIntGetAuthorizationCodeWithPsnoUri) +STUB("xPwxj0myDK0", delegate_virtual_invoke_imt_m_4_p) +STUB( + "xQ-I7yjm9qM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEE5emptyEv) +STUB("xQ1Z6ln5ZqQ", __asan_get_report_access_type) +STUB("xQBvuJvBpZU", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence12Notification14PresenceUpdateEE3setEv) +STUB( + "xQCbCJnclV8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "xQCuxQjDykA", + _ZN7WebCore11JSDOMWindowC1ERN3JSC2VMEPNS1_9StructureEON3WTF3RefINS_9DOMWindowENS6_13DumbPtrTraitsIS8_EEEEPNS_13JSWindowProxyE) +STUB("xQEFvezBtjQ", _ZN3sce3Xml3Dom8NodeList10initializeEPKNS0_11InitializerE) +STUB("xQI1SMBDGvk", _ZN6WebKit14WebProcessMainEiPPc) STUB("xQIIfJ860sk", sceKernelMunlock) +STUB("xQM94RIreRc", _ZN3sce2np12NpTitleTokenC1ERKS1_) +STUB("xQN7xUiSiV0", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIdEEEC1ERS6_) +STUB("xQN8sy8hF6I", _ZNSt9basic_iosIwSt11char_traitsIwEE4swapERS2_) +STUB("xQQ4VSubx-k", _ZN3WTF14dataLogFStringEPKc) +STUB("xQTGbK3PhdM", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEE7get_refEv) +STUB("xQWMTaC3jWM", GCC_except_table439) +STUB( + "xQaCLgd8tvY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEEC1ERKSA_) STUB("xQeIryTX7dY", sceRemoteplayApprove) STUB("xQfR51i4kck", sceNpTusTryAndSetVariableAsync) +STUB( + "xQjlHvyt3+I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "xQk44jzVAKM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEixEm) +STUB( + "xQkHONkC2rM", + _ZN3sce2Np9CppWebApi6Common23UpDownStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEE8readDataEPcm) +STUB("xQl140Mui6k", _ZN12video_parser13_VpBitreadSetEPNS_21VpMpegvideoAvcBitreadEPhi) +STUB("xQnFpj+cG5I", _ZN7WebCore17NowPlayingManagerD1Ev) +STUB( + "xQrLY3Rq9og", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEEEED1Ev) +STUB( + "xQt3uaEv-z4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEdeEv) +STUB("xQtNieUQLVg", _ZNSt14numeric_limitsIdE6digitsE) +STUB("xQviXmvC1ec", _ZN3sce7Toolkit2NP2V23TSS7TssDataC1ERKS4_) +STUB("xQzl2xHVGY0", _ULx86_64_dwarf_step) STUB("xR0ySWXoAb4", sceIduUtilGetDiscInfo) +STUB("xR44CqBw19M", _ZN15AbstractStorage18DailymotionServiceD0Ev) STUB("xR8S67myUos", sceNpManagerIntLoginCreateAuthenticationTicket) +STUB("xR9aJZla4Gk", + _ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody20updatedDateTimeIsSetEv) +STUB( + "xRE7yoqv9Og", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEE7popBackEv) +STUB("xRLmDkkM2QU", _ZNK7WebCore27PlatformMediaSessionManager15supportsSeekingEv) +STUB("xRMd6l8mBDM", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEEdeEv) +STUB("xRNB7qkCEzk", _Getfloat.digits) +STUB("xROUuk7ItMM", _Fetch_and_seq_cst_2) STUB("xRScmxStBzg", sceRnpsAppMgrTerminate) +STUB( + "xRWqA7NEwVw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEE8pushBackERKS8_) +STUB( + "xRX85XEvkYE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEED2Ev) +STUB("xRaUqwmMl8g", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEEixEm) +STUB( + "xRaguf2MZ0c", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V138SetMultiVariablesRequestBody_variables10valueIsSetEv) +STUB("xRdE7tve5lA", mono_counters_dump) +STUB( + "xRdOYHccZdA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V16RatingEEEEneERKS9_) STUB("xReSebwKApA", sceFiosFHSeek) +STUB("xRfVUGhMmx8", _ZN7WebCore9HTMLNames7minAttrE) +STUB("xRg8w6r62Wc", _ZNK3sce2Np9CppWebApi15ProfanityFilter2V219WebApiErrorResponse8getErrorEv) +STUB( + "xRgvoRyJulQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB( + "xRlNX6VVyxY", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetOnlineId2AccountIdResponseHeadersD2Ev) +STUB("xRltLJD8Sz0", mono_aot_Sce_Vsh_Orbis_ContentManagerunbox_trampolines_end) +STUB("xRoQNAA+nbM", _ZN7WebCore12ChromeClient30preferredScrollbarOverlayStyleEv) +STUB("xRpbhAqd+08", AnnotateCondVarWait) +STUB( + "xRpuYiu5q-Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEmmEv) +STUB( + "xRqRIeV4csc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("xRsGImhRf3s", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V510AnnotationEEC2Ev) +STUB("xRwCqdPeNug", _ZN3sce7Toolkit2NP2V29Messaging22GameDataMessageDetailsD1Ev) STUB("xRwvvcfZfHM", sceKernelBacktraceSelf) +STUB("xRycekLYXdc", _Vacopy) +STUB("xS-Hjw1psYs", _ZN3sce2np13JsonDocParserD2Ev) +STUB( + "xS2e-clFuog", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEED1Ev) STUB("xS43U4VgIXE", sceSpPthreadAttrSetinheritsched) +STUB("xS5S5V+3uQ4", _ZN7WebCore8Settings30setResourceUsageOverlayVisibleEb) +STUB("xS5ULz5uAXI", _ZNK3sce2Np9CppWebApi6Common6VectorIlEixEm) STUB("xSAR0LTcRKM", sceAgcDcbJump) +STUB("xSFLN9EXFbQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEppEv) +STUB( + "xSnZycO+93U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEC2ERKS7_) +STUB( + "xSpaV1+j8As", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122PlayerSessionSpectatorEEC1EPS6_PNS2_10LibContextE) STUB("xSrhtSLIjOc", sceRemoteplaySetApMode) +STUB( + "xSrpiS5XKbw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V110UpdateModeEEEEC2ERS9_) +STUB("xSxPHmpcNzY", _ZNSs6assignEPKcm) STUB("xSy6mntarUQ", sceFsInitMountLwfsCompatOpt) +STUB( + "xSy8b-9WeM4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEeqERKS9_) +STUB("xSzv-6H17w4", _ZN7WebCore26makeBoundaryPointAfterNodeERNS_4NodeE) +STUB("xT+rhsQNLfw", _ZNK7WebCore18PlatformPasteboard10readStringEmRKN3WTF6StringE) +STUB( + "xT2qjFxeXB4", + _ZN9Inspector26AnimationBackendDispatcher12stopTrackingElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "xT3Am-+qo2Y", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUser10setslotIdsEPKc) STUB("xT3Cpz0yh6Y", sceKernelAioSubmitWriteCommandsMultiple) +STUB( + "xT3e-qs91IU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5abortEv) +STUB( + "xT41NJu+3vg", + _ZN9Inspector20DOMBackendDispatcher13highlightRectElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) STUB("xT55MQDY9lg", sceMusicPlayerServiceInitialize2) +STUB( + "xTJHUtERIzo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEplEm) STUB("xTJYIk5zjF8", scePatchCheckerCancel) +STUB( + "xTMs6eJUqxc", + _ZNK3sce2Np9CppWebApi14SessionManager2V137PatchGameSessionsSessionIdRequestBody16getMaxSpectatorsEv) +STUB( + "xTRALFH+qUM", + _ZN3sce2Np9CppWebApi7Matches2V126AdditionalStatisticFactory7destroyEPNS3_19AdditionalStatisticE) +STUB( + "xTZp7jmodUk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEppEi) STUB("xTcttXJ3Utg", sceNetConfigDelArpWithInterface) STUB("xTd54EEL1Ao", sceCesSbcToUtf8) +STUB("xTfnxYXtinY", WKBundleInspectorClose) +STUB("xTkbVML7bwo", mono_aot_System_Reactive_Interfacesunbox_trampoline_addresses) +STUB( + "xToCQXMWkOE", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi21ParameterToLeaveMatch20setleaveMatchRequestENS1_6Common12IntrusivePtrINS3_17LeaveMatchRequestEEE) STUB("xTsOqp-1bE4", sceGnmSpmSetSpmSelects2) +STUB( + "xTvoPbR9VOM", + _ZNK3sce2Np9CppWebApi11UserProfile2V115BasicProfileApi28ParameterToGetPublicProfiles14haslanguageSetEv) +STUB( + "xTyore9Lagg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEE5beginEv) +STUB( + "xTzi3NVtaac", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEmmEi) +STUB( + "xU-t7ETffLQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED0Ev) +STUB( + "xU4XJ0T-jfw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEED2Ev) +STUB( + "xU5lDpO39rU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEE11get_deleterEv) +STUB("xU60KtGN8j0", _ZN3sce7Toolkit2NP2V210Tournament16RegisteredRosterD1Ev) +STUB("xUBz9+Iln64", _ZN7WebCore15ActiveDOMObject7suspendENS_19ReasonForSuspensionE) +STUB("xUDTB4S7g20", _ZNK7WebCore8Document6domainEv) +STUB( + "xULVsMb2kto", + _ZN3JSC19HeapSnapshotBuilder23analyzeVariableNameEdgeEPNS_6JSCellES2_PN3WTF17UniquedStringImplE) +STUB("xUQcbV4BLFo", mono_aot_Sce_Vsh_VrEnvironmentunbox_trampoline_addresses) +STUB("xURDbke-S9Q", mono_aot_ReactNative_Modules_Vshplt_end) +STUB( + "xUW6fkiTtjM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot11unsetfieldsEv) +STUB("xUWjwwxZX7c", uidna_nameToASCII_59) +STUB("xUZEheAPMYs", _ZN3WTF17GregorianDateTime21setToCurrentLocalTimeEv) +STUB("xUZaboL3o64", _ZN3sce7Toolkit2NP2V210Tournament7Request18GetRegisteredUsersD2Ev) +STUB("xUembDYTM9o", mono_aot_Sce_Vsh_RemotePlayunbox_trampolines) +STUB( + "xUhWFIwG5Sk", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V129MatchCompletionRateProperties15getDisconnectedEv) +STUB( + "xUnEBPqwAMA", + _ZN7WebCore6Widget5paintERNS_15GraphicsContextERKNS_7IntRectENS0_25SecurityOriginPaintPolicyEPNS_18EventRegionContextE) STUB("xUp4-mftj5I", sceOpusCeltDecGetSize) +STUB("xUs+FXeJsVU", __asan_report_load4) +STUB("xUsJSLsdv9I", _Unwind_Resume_or_Rethrow) +STUB("xUt7yXvFz3M", _ZN7WebCore14ScrollableArea21scrollbarStyleChangedENS_14ScrollbarStyleEb) +STUB("xUxaNqgIvEI", _ZNK7WebCore14ScrollableArea23mouseEnteredContentAreaEv) +STUB("xUzs8eT2cAc", mono_aot_Sce_Vsh_Orbis_Bgftjit_code_end) +STUB( + "xV0NRbm2apI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE5beginEv) +STUB( + "xV55YQSV5P8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEED2Ev) +STUB( + "xV8U4M2b3NE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEC1ERKS7_) +STUB( + "xVBAM8y9BqE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V13MmrEEEEEEC2ERKSA_) +STUB("xVLeuiaA94g", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS16FriendsVariablesEEC1Ev) +STUB( + "xVMo+gsZnKA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V53SkuEEC2EPS6_PNS2_10LibContextE) +STUB("xVWTWmYYs-0", _ZNK7WebCore12ChromeClient36pageExtendedBackgroundColorDidChangeENS_5ColorE) +STUB( + "xVXvZQv+9DU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEE8capacityEv) +STUB("xVcVD7jgI9k", _ZN7WebCore10JSDocumentD2Ev) STUB("xViqJdDgKl0", sceNpUnregisterPlusEventCallback) +STUB( + "xVis9LnAkcg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE21intrusive_ptr_sub_refEPS9_) +STUB("xVlRy5NAUsw", GetClosedCaptionSettings) +STUB( + "xVn51+NyaWo", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEplEm) +STUB( + "xVpDiHQh72w", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEppEi) +STUB( + "xVy7vlLopDY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEE7get_refEv) +STUB("xVyBpIhTAxg", _ZN3JSC10JSFunction6createERNS_2VMEPNS_18FunctionExecutableEPNS_7JSScopeE) +STUB( + "xW3-ONAd5Oc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEEE6resizeEj) +STUB("xW3s82uY8pI", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_23NpSessionInvitationInfoEE8allocateEmPKv) +STUB( + "xW5vcB6E43o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEcvbEv) +STUB("xW6BSxCc9wk", T_CString_stringToInteger_67) +STUB( + "xW7lrjSYy-s", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V231TestForProfanityResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_24TestForProfanityResponseEEE) +STUB( + "xWDZ0jzZbgg", + _ZN3sce7Toolkit2NP10ParametersC1EPFvRKNS1_5EventEERNS1_9NpTitleIdEPvmPNS1_19AllocImplementationE) +STUB("xWP4UmjuEs8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEC2ERS7_) +STUB( + "xWVU6ihXBWw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEEED2Ev) +STUB( + "xWYf9Q68kJU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseMatchPlayerEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "xWZSt9j3A5c", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser28setxPsnAcceptPlatformNamePs5ENS5_25XPsnAcceptPlatformNamePs5E) +STUB("xWZkfYm5LDY", _ZNK3sce2Np9CppWebApi13InGameCatalog2V515ContainerRating8getTotalEv) +STUB( + "xWgIGF1yvjo", + _ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead19setPlayerAttributesERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_9AttributeEEEEE) +STUB("xWk5R+wvzNA", _ZN7WebCore8Document11execCommandERKN3WTF6StringEbS4_) +STUB("xWpb1SCRK8o", udatpg_getBestPattern_67) +STUB("xWpmqXWWI4A", _ZN7bmalloc5Cache27deallocateSlowCaseNullCacheENS_8HeapKindEPv) +STUB("xWrwK4hdRsg", _ZN3sce7Toolkit2NP34DetailedProductInfoListInputParams9ProductIdC2Ev) +STUB("xWvs8ZzLQSI", WKBundleNodeHandleSetHTMLInputElementAutoFillAvailable) +STUB("xWyIbzz9fIM", _ZN7WebCore17AnimationTimeline14setCurrentTimeEN3WTF7SecondsE) +STUB( + "xX4FQr6oHro", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V321MissingElementFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_14MissingElementEEE) STUB("xX4RLegarbg", sceAudioOutMasteringInit) +STUB( + "xX4pWVlMTXQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEC1Ev) +STUB("xX4qgaV2NVQ", GCC_except_table167) +STUB("xX6s+z0q6oo", _ZTISt9type_info) +STUB("xX7sD1IdylE", _ZN3sce7Toolkit2NP9Utilities6FutureI19SceNpTrophyGameDataED2Ev) +STUB("xX9ex6bQiBI", _ZN3JSC8Bindings13RuntimeObjectD2Ev) +STUB("xXCqbDBx6mA", CA_MGMT_extractSerialNum) +STUB("xXFCf61XfUc", mono_aot_Sce_Vsh_VideoServiceWrapperplt) +STUB("xXM1q-ayw2Y", _ZN10__cxxabiv117__class_type_infoD2Ev) +STUB( + "xXMSDR04TTI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEEmmEv) +STUB( + "xXONtULNIIA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEE3getEv) +STUB( + "xXVIQeX+vJ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEC1ERKS7_) +STUB("xXWrbaaPNNg", cairo_pattern_add_color_stop_rgba) +STUB("xXWslPRXf9Y", WKContextStartMemorySampler) +STUB("xXZXZyGw65E", _ZN7WebCore18TextureMapperLayer16replicaTransformEv) +STUB("xXdH+HZsm5E", _ZNK3WTF8WallTime24approximateMonotonicTimeEv) +STUB("xXe+Dc3g6Lc", _ZNK7WebCore14ScrollableArea23mouseMovedInContentAreaEv) STUB("xXj0rnNUYIk", sceKernelIccNvsFlush) +STUB("xXkwDDcyfBw", LoginMgrSetLoginFlag) +STUB("xXmxcLeOZCA", _ZN3sce7Toolkit2NP2V27Session7Request5LeaveD2Ev) +STUB("xXqX5FltSmw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEneERKS9_) +STUB( + "xXqoqrbJclo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEED1Ev) +STUB( + "xXrKF4aA5OA", + _ZN7WebCore21SerializedScriptValueC2EON3WTF6VectorIhLm0ENS1_15CrashOnOverflowELm16EEESt10unique_ptrINS2_IN3JSC19ArrayBufferContentsELm0ES3_Lm16EEESt14default_deleteIS9_EE) +STUB( + "xXsA32yEN9o", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_15PlayedWithStoryENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB("xXwYFScOgCo", YGNodeStyleSetWidthAuto) +STUB( + "xXx8ESBzxas", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEC2EPS8_) +STUB("xY4YsPzhSUs", _ZN3sce2Np9CppWebApi11UserProfile2V114PersonalDetail13unsetLastNameEv) +STUB( + "xY4gVXA0efE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEppEv) STUB("xY607JqjoPk", sceNpManagerIntGetTitleToken) +STUB("xYAvCGJR1qI", JVM_Socket) +STUB("xYB11qM66J8", _ZN23sceMetadataReaderWriter13writeMetadataERKSsRKNS_8MetadataEj) +STUB( + "xYBMxQl5ZcI", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM10PseudoTypeEEESt8optionalIT_ERKN3WTF6StringE) +STUB("xYDJom8RawI", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12FriendsRanksEEC2Ev) +STUB( + "xYF5MTUq86U", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEaSERKS9_) +STUB( + "xYGfTu-lJUk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("xYHAR2W390o", _ZN3JSC14JSRunLoopTimerD0Ev) +STUB( + "xYIq4mY2VS4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEmmEv) +STUB("xYN7D+8y-KA", _ZN3sce7Toolkit2NP2V27Session7Request5LeaveD1Ev) +STUB("xYU+-XLaVhU", _ZN4Manx9X509chainC1EPv) +STUB("xYWiGBLHydA", _ZN7WebCore18PluginInfoProvider7refreshEb) +STUB("xYY8intnuPs", monoeg_g_snprintf) +STUB("xYf-z05L7UE", AsyncStorageSetItemNative) +STUB("xYhfbebbRFw", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_12CategoryInfoEEC2Ev) +STUB("xYiYl8j0EM4", _ZN13MsvMetaEditorD2Ev) +STUB("xYmwUKajQbI", _ZN7WebCore16HTMLMediaElement30setWebkitClosedCaptionsVisibleEb) +STUB( + "xYsCXjf2Rk0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "xYtAiIjVno8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEC1EPS8_) +STUB("xYzqQiTzIYc", jpeg_fdct_float) +STUB( + "xZ2OF6809Mk", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi21ParameterToGetRanking24setgetRankingRequestBodyENS1_6Common12IntrusivePtrINS3_21GetRankingRequestBodyEEE) STUB("xZ54Il-u1vs", sceNetDumpDestroy) +STUB("xZ9RzH9zuBw", _ZN3NTF5MutexD1Ev) STUB("xZDG33ZHAOc", sceSdmaCopyTiledNonBlocking) +STUB( + "xZEnaurxDkQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEEixEm) +STUB( + "xZFwm4i60Mc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127ResponseTeamMemberStatisticEEEEC1Ev) +STUB("xZH-GUWHsLc", + _ZN3sce2Np9CppWebApi14SessionManager2V114RepresentativeC2EPNS1_6Common10LibContextE) +STUB( + "xZKx35zAAGQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "xZLL0Y9IImE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEptEv) +STUB( + "xZLt5BQhLUs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEC2ERKS7_) +STUB( + "xZO222a-8f8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "xZSmTrUsQSg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE8pushBackERKS8_) +STUB("xZWYmRsx-SU", _ZN3sce7Toolkit2NP2V24Core12ResponseBase13setReturnCodeEi) STUB("xZXQuNSTC6o", sceNpTusGetMultiUserVariableVUserAsync) +STUB("xZXZshCE8BU", _ZN3sce7Toolkit2NP2V212NetworkUtils16NetStateDetailedC1Ev) +STUB("xZYXhT-qMno", _ZNK3WTF6String31convertToUppercaseWithoutLocaleEv) +STUB( + "xZei0PHUxtI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEEaSERSA_) STUB("xZk+QcivrFE", sceNpManagerIntCreateRequest) +STUB( + "xZnRsyFt2pk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEEED2Ev) +STUB( + "xZo+lwT0DQQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEEC2Ev) +STUB("xZposkLLevs", _ZN7WebCore18TextureMapperLayer16setBackdropLayerEPS0_) +STUB("xZqiZvmcp9k", _ZNSt4_Pad7_LaunchEPP7pthread) +STUB( + "xZsQTaAJEV0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEEED2Ev) +STUB("xZtXq554Lbg", _ZNK3sce16CommonDialogUtil6Client13getFinishDataEPvm) +STUB("xZtbq5w3jiY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE5emptyEv) +STUB( + "xZut-p9njRc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ErrorResponseEEEEEEC2ERKSA_) +STUB("xa+fRWAU3PU", _ZN3sce7Toolkit2NP2V24Auth7IdTokenC2Ev) +STUB( + "xa3bCjRCv6g", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE21intrusive_ptr_sub_refEPS7_) +STUB( + "xa5nyS2AFUk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEE6resizeEj) +STUB( + "xa6No6D1pSE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEC2EPS9_) STUB("xa8oL9dmXkM", sceNgs2PanInit) +STUB("xaA5TmMu4Fg", _ZN12video_parser17cVideoProfilerMp415_createMediaSubEj) +STUB( + "xaBmRh8df0k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEC2EPS8_) +STUB("xaC6Jbw2pLg", _ZN7WebCore16convertToIntegerIiEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB( + "xaIq0CtQKoY", + _ZN7WebCore11JSDOMMatrixC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_9DOMMatrixENS6_13DumbPtrTraitsIS8_EEEE) +STUB("xaJ+90PDWq0", _ZN7WebCore17FrameLoaderClient15didCreateWindowERNS_9DOMWindowE) +STUB( + "xaJFdsoROcI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEE11get_deleterEv) STUB("xaOTiuxIQNY", sceNetConfigWlanAdhocSetWakeOnWlan) +STUB("xaQHq4LK5zQ", glPushGroupMarkerColorSCE) +STUB("xaT+yTMJJP8", WKDictionaryCopyKeys) +STUB("xaUk9FnXrT4", uprv_decNumberCompareSignal_67) STUB("xaZ3K60Wwz0", sceAudioOut2LoPortGetState) +STUB("xaZIwYQG0rw", _ZN7WebCore22EmptyFrameLoaderClient18frameLoadCompletedEv) +STUB("xacsaU-hKOE", _ZN7WebCore20ResourceResponseBaseC1ERKN3WTF3URLERKNS1_6StringExS7_) +STUB( + "xae8xDbhfws", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB( + "xai8h1+3ttg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEC2Ev) +STUB("xakUpzS9qv0", CA_MGMT_extractSignature) +STUB("xanAHBoj6Yk", _ZN3sce2Np9CppWebApi14SessionManager2V112NonPsnLeaderD1Ev) +STUB("xaswa+ndZS0", FTA_Export_Module_raster1) STUB("xb1xlIhf0QY", sceCompanionUtilInitialize) +STUB("xb3+9+02Tb8", _ZN3sce7Toolkit2NP2V210Tournament13OneVsOneMatchC2Ev) STUB("xb8VgcXQhvI", sceAgcBranchPatchSetThenTarget) +STUB("xb8u4xT3-zg", fuse_teardown) +STUB( + "xb9EjAi8zDg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEE5clearEv) +STUB( + "xbBY3WvR4Pk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC2ERKSA_) +STUB( + "xbH8wKcAz6o", + _ZN7WebCore27PlatformMediaSessionManager24removeAudioCaptureSourceERNS_20PlatformMediaSession18AudioCaptureSourceE) +STUB("xbIUIcHILDA", mono_btls_x509_add_reject_object) +STUB( + "xbRdpqj9Mog", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121PlayerForTicketCreateEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "xbYj8xOauko", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEC2EPS8_) +STUB( + "xbcGIdNLWXk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEEEC2ERKSA_) +STUB("xbd1v1ock4A", _ZN7WebCore16MIMETypeRegistry32isSupportedImageResourceMIMETypeERKN3WTF6StringE) +STUB("xbjUjDk2Ov4", _ZNK7WebCore14DocumentLoader19isLoadingInAPISenseEv) +STUB("xbma7s2JMEk", + _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributesC1EPNS1_6Common10LibContextE) +STUB("xboOgWkcWVw", _ZNK7WebCore11MediaPlayer22didPassCORSAccessCheckEv) STUB("xbqCEIzvg3E", sceImeBackendAllConfirm) +STUB("xbsFHrTpdoc", _ZN7WebCore27PlatformMediaSessionManager29applicationWillBecomeInactiveEv) STUB("xbsHap7BnBw", sceDataTransferTargetAbortLaunch) +STUB( + "xbwmj+AEwzQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE5clearEv) STUB("xbxNatawohc", sceGnmSubmitAndFlipCommandBuffers) +STUB( + "xc-oXBJ5OG4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15ErrorEEC2EPS6_PNS2_10LibContextE) +STUB("xc2TNwBtUJo", _ZN7WebCore9HTMLNames6isAttrE) +STUB("xcHRGhm9GeI", _ZN3WTF16AtomicStringImpl7addUTF8EPKcS2_) +STUB("xcJCXHqBrjE", FTA_Add_Module_smooth_lcdv) +STUB( + "xcLhhLuQI+o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "xcOFeB3r5v8", + _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody18setUpdatedDateTimeERK10SceRtcTick) +STUB("xcRYR-r3oKk", _ZN7WebCore16convertToIntegerItEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB("xcauS25MvZ0", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V115LastUpdatedUser14accountIdIsSetEv) +STUB("xcc6DTcL8QA", __cxa_bad_typeid) +STUB("xcgfVoUmj7w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V18LocationEEC1ERKS7_) +STUB( + "xchJ5tmzcBw", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("xclPccnXtsc", _ZNK3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse14matchTypeIsSetEv) +STUB("xcuJj4t8vWQ", _ZN9Inspector27DOMStorageBackendDispatcherD0Ev) +STUB("xd4QqZ8SHSM", uset_applyPattern_67) +STUB("xd7O9oMO+nI", _ZNSt14_Num_ldbl_base13has_quiet_NaNE) +STUB( + "xdBOmnyARSk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEC2EPNS2_10LibContextE) +STUB( + "xdHivV7ag3s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("xdHqQoggdfo", _ZNSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEEC1Em) +STUB("xdNfbpothF4", __tsan_mutex_post_signal) +STUB("xdP1IeSO2T4", _ZN3JSC8JSObject6freezeERNS_2VME) +STUB("xda7MBYkUc4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEdeEv) STUB("xddD23+8TfQ", sceNpEntitlementAccessGetAddcontEntitlementInfo) +STUB("xdeyFN68o7Y", + _ZNK3sce2Np9CppWebApi14SessionManager2V133ResponsePlayerSessionNonPsnPlayer11getPlayerIdEv) +STUB( + "xdgVtKwQGWc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEED2Ev) +STUB( + "xdjQInxR6v8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEC1EPNS2_10LibContextE) +STUB("xdtEozwG5LM", + _ZN9Inspector21InspectorRuntimeAgent29willDestroyFrontendAndBackendENS_16DisconnectReasonE) +STUB("xdvjDJ-mL7w", _ZN9MmsMp4BoxC1Ev) +STUB( + "xdvmNG4l5Gw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEixEm) +STUB("xdvsBbplHHc", _ZN7bmalloc11EnvironmentC1ERKSt11scoped_lockIJNS_5MutexEEE) +STUB("xdwXJaTNSdo", _ZN7WebCore11DisplayList10StrokeRectD0Ev) +STUB("xdxuhUkYalI", CERT_STORE_addIdentityWithCertificateChain) +STUB( + "xdyyu1E3D-M", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB("xdzlDALrdBs", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_17ActivityFeedStoryEED1Ev) +STUB("xe+zjaz4zLk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V18SortModeEEneERKS7_) +STUB( + "xe0EZWWJkjU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEC2EPS8_) +STUB("xe1ffNTYHs4", _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi22ParameterToRecordScoreaSERS5_) +STUB( + "xe4tlAQA310", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlotC1ERS5_) +STUB("xe7jxinnieM", WKBackForwardListGetBackItem) +STUB( + "xeFWT5tDy7M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEC2Ev) +STUB("xeHNDZ8Sk3E", _ZN9Inspector15ScriptCallStackD1Ev) +STUB("xeNnnv-Lfw4", _ZN3sce7Toolkit2NP2V27Session17SessionInfoUpdate16SESSION_NAME_LENE) +STUB("xePvUf6IXfc", u_isspace_67) STUB("xeTLfxVIQO4", sceRazorCaptureCommandBuffersOnlyImmediate) +STUB("xeTxrnBIa+Q", _ZN7WebCore18DOMWindowExtensionC1EPNS_5FrameERNS_15DOMWrapperWorldE) +STUB("xeWLWLBfE+I", _ZN3sce2Np9CppWebApi6Common13ConstIteratorIjEC1Ev) +STUB("xeYO4u7uyJ0", fopen) +STUB("xebyez5Qcm4", _ZN3JSC8JSBigInt10createFromEPNS_14JSGlobalObjectEi) STUB("xegFfZKBVlw", sceHttpSetSendTimeOut) +STUB( + "xegkEMb4ZUs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEEEC1ERSA_) +STUB( + "xeiqNTqC8uk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("xej9400EPrk", _ZN3JSC2VM25callbackFunctionSpaceSlowEv) +STUB("xejRyEbsLcw", FT_Stream_ReleaseFrame) +STUB("xele5n8grDs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEEppEv) +STUB("xepciUc5wpk", __ubsan_handle_out_of_bounds_abort) +STUB( + "xeqQ6VssObU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "xerkq73ldzg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEEC1EPS6_PNS2_10LibContextE) STUB("xesmlSI-KCI", pthread_attr_setscope) +STUB("xetF04gznxY", _ZN7WebCore18TextureMapperLayer2idEv) +STUB( + "xetcJm3vijo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) STUB("xeu-pV8wkKs", sceKernelIsInSandbox) +STUB( + "xeunZETVUSk", + _ZN15AbstractStorage14StorageManager10GetStorageERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_7StorageEE) STUB("xexuBx9rGvg", sceDebugGetGpuInfoArea) +STUB("xeyXzjIu2IA", _ZNK9Inspector21InjectedScriptManager20inspectorEnvironmentEv) +STUB("xez2fQ-9XM0", _ZN7WebCore6Editor39insertParagraphSeparatorInQuotedContentEv) +STUB( + "xf-Hs4BrBzc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBodyEEEEC1EPS8_) +STUB("xf-XRFu56-8", eglWaitGL) +STUB( + "xf52BGsznyo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEEppEi) +STUB("xf64ZHPO1ms", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku20plusUpsellPriceIsSetEv) +STUB( + "xf8E5W9NqiQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE21intrusive_ptr_add_refEPS9_) STUB("xfB04bSjrZY", sceShareUtilityAdvanceTerminate) +STUB("xfE3WNru10U", ucpmap_getRange_67) +STUB("xfIua+p93JM", _ZN7WebCore14FrameSelection18setCaretVisibilityENS_9CaretBase15CaretVisibilityE) +STUB("xfM0lTzZ2cg", _ZN7WebCore11MediaPlayer10setPreloadENS_16MediaPlayerEnums7PreloadE) +STUB("xfOSCbCiY44", + _ZNKSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE3putES3_RSt8ios_basewPKv) +STUB("xfOqgLUa7jQ", _ZN3JSC7Symbols15pushPrivateNameE) +STUB("xfQm3FWZ-og", _ZN3WTF18ParallelHelperPoolD1Ev) +STUB("xfRjtUW5FKo", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_13InGameCatalog2V511ContentTypeEEC1Ev) +STUB( + "xfbrffz2otU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEC1Ev) +STUB( + "xfh+R1jbwwA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEC2ERS7_) +STUB( + "xfhyqhJzgT4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEC1ERS7_) STUB("xfm7bGiCIPg", sceKernelStreamWriteDelete) +STUB( + "xfmGwgBnPp8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEEEdeEv) +STUB( + "xfmwfNXGekY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE3endEv) +STUB( + "xfqVuTHooTM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEC2EPS8_) STUB("xfqpXSahYAE", sceBgftServiceIntUploadSetStartState) +STUB("xfrFfxRfm0c", isobmf_decoder_destroy) +STUB( + "xfsyezp3NUw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEC1Ev) STUB("xftR500Mk5s", sceBackupRestoreUtilRestoreData) STUB("xfw0+A2aiWE", sceWkFontConfigGetAttr) +STUB("xfw84SLnzeI", _ZN3sce3pss5orbis9framework12PsmInitParamC2Ev) +STUB( + "xfwyZgrnz24", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEaSERKS9_) STUB("xfy2uloQTls", sceFsUfsLargewriteFsckWithMM) +STUB( + "xg+LTTVPYZs", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEiRNS2_10LibContextEPT_m) +STUB("xg-mmIlUNQs", _ZN3sce2Np9CppWebApi11Matchmaking2V123SubmitTicketRequestBodyD2Ev) +STUB("xg5Kn1Zto4k", eglGetConfigs) +STUB("xg9A5nBRkB0", _ZNK3sce2Np9CppWebApi11UserProfile2V113BasicPresence15getOnlineStatusEv) STUB("xgCo-trtSlA", sceIduUtilPauseAllDownloads) STUB("xgDjJKpcyHo", scePngEncEncode) STUB("xgGebSiuK70", sceVnaStopKeyPhraseDetection) +STUB( + "xgJJWgWd+3s", + _ZN9Inspector26LayerTreeBackendDispatcher13layersForNodeElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "xgKnQ88Bt1M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEE11get_deleterEv) +STUB( + "xgMriYCwzjM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "xgNMDK5pLm4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEC2Ev) +STUB( + "xgSj40dLuA4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeadersEED1Ev) +STUB( + "xgUcw+0fJaI", + _ZN9Inspector23CanvasBackendDispatcher8dispatchElRKN3WTF6StringEONS1_3RefINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS7_EEEE) +STUB( + "xgVQ4YelhzE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEE3endEv) +STUB( + "xgYKOv94JXE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE8copyFromERKS9_) +STUB( + "xghp8sr7cZc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V122PlayerSessionSpectatorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("xgjt4Dkhfuo", _ZN7WebCore11MediaPlayer20playbackStateChangedEv) +STUB("xgmdmZZJV-8", _ZN7WebCore8SVGNames10feImageTagE) +STUB( + "xgotjceZNic", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEdeEv) +STUB( + "xgq3bSsppoY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ResponseCooperativeResultEEEEC2ERKS9_) +STUB("xguce2V69xQ", ubrk_following_67) +STUB( + "xgxEp7-LxrM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEE3endEv) +STUB( + "xgzN8lvXVQY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEE11release_refEv) +STUB( + "xgzZG6Ibmw8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEEaSERSA_) +STUB( + "xh-Bx7jIWLg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V118MatchmakingForReadEEEEEEaSERKSA_) +STUB("xh0BAnLIBEM", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session14InvitationDataEE19setCustomReturnCodeEi) +STUB( + "xh324hUgi-M", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEcvbEv) +STUB("xh3OpSkf0l0", coil_popen) +STUB( + "xh5YNVcG1R8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEC2EPS8_) +STUB( + "xh5kyvuTEgA", + _ZN3sce7Toolkit2NP8Sessions9Interface17getInvitationInfoEPKNS1_21InvitationInfoRequestEPNS1_9Utilities6FutureINS1_23NpSessionInvitationInfoEEEb) +STUB("xh9-wUa4fv8", mono_sgen_set_thread_type) +STUB("xhAcaIwnrgk", _ZNK3sce4Json6Object5beginEv) +STUB( + "xhAvMG3KmOU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118RequestTeamResultsEEEEEEC2Ev) +STUB( + "xhCfFrD0gmU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEptEv) +STUB("xhDUq5emaGw", WKInspectorDetach) +STUB("xhH2dgpJC70", WKPreferencesSetSourceBufferChangeTypeEnabled) +STUB( + "xhIGeTUl2BI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi26RecordScoreResponseHeadersEEC2EPS7_PFvS9_EPNS2_10LibContextE) +STUB("xhLEBvmyrcU", _ZSt9use_facetISt7codecvtIDic9_MbstatetEERKT_RKSt6locale) STUB("xhLHHsgt39w", scePktMgrGetProtocolNumber) +STUB("xhMUowfYUnI", _ZN3sce2Np9CppWebApi15ProfanityFilter2V219WebApiErrorResponseD1Ev) +STUB( + "xhNJ77aU1Wc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEE3getEv) STUB("xhb-r8etmAA", sceAppContentSmallSharedDataGetAvailableSpaceKb) +STUB("xhfp2YniggY", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V119SubtaskAvailabilityEEC2Ev) +STUB( + "xhin9lbRj-M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEaSERKS9_) +STUB( + "xhlKg2g4Nnc", + _ZN3sce2Np9CppWebApi7Matches2V119RequestMatchResults20setCooperativeResultERKNS3_24RequestCooperativeResultE) +STUB("xhmR4dQ6+1w", _ZNK3sce2Np9CppWebApi7Matches2V111AddedPlayer13getPlayerTypeEv) +STUB("xhphdEm4s3Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V115CompetitionTypeEEC2EPNS2_10LibContextE) +STUB( + "xhpqli3Mxh8", + _ZN9Inspector26DebuggerFrontendDispatcher14didSampleProbeEN3WTF6RefPtrINS_8Protocol8Debugger11ProbeSampleENS1_13DumbPtrTraitsIS5_EEEE) STUB("xhrI4zhlBuA", sceRegMgrIsChange) STUB("xhx5rVZEpnw", sceHmdInternalSetDebugGpo) +STUB( + "xhzZwGDaeVk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEplEm) +STUB("xi+DB2YrLV0", mono_aot_Sce_Vsh_JsExtensionunbox_trampoline_addresses) +STUB( + "xi4NeE6IwTA", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) STUB("xiBhgxFf7d8", sceFsInitMountPprPkgOpt) +STUB("xiH4YdjKEYc", glTexStorage2DEXT) +STUB("xiJubl4cUak", RemotePlayNotifyPinCodeError) +STUB("xiT8hFe2M24", udat_format_67) STUB("xiTqbFc7w+w", sceFiosGetGlobalDefaultOpAttr) +STUB("xiauk1N3Esw", _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForReadD2Ev) +STUB("xih0DndiTn8", _ZN7WebCore21NetworkStorageSession14maxAgeCacheCapERKNS_15ResourceRequestE) +STUB("xii+yBgtDgg", __asan_get_report_description) +STUB("xikhaDNOD-8", _ZNK7WebCore24CoordinatedGraphicsLayer14primaryLayerIDEv) +STUB( + "xikr4To-F5g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEdeEv) +STUB("xilbMn7q9qE", _ZN15AbstractStorage7Content6RenameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("xiqd+QkuYXc", _ZNSt15underflow_errorD2Ev) +STUB( + "xirLnO9W5Tk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB( + "xiyeYe-s1CM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "xiykGTfqFOA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEmmEi) +STUB("xj1xUHCK428", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15NpSessionMemberEED1Ev) +STUB("xj3JN8SfKIM", unorm2_swap) +STUB("xj3tNJptfLI", FT_Stroker_BeginSubPath) +STUB( + "xj45wmGJ0wg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEppEi) +STUB( + "xj9C+E1ZSYk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEC2ERS7_) +STUB("xjBDFWUNvCw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEEmmEi) +STUB("xjBjT+qFC5Q", _ZNK7WebCore6Region8containsERKS0_) +STUB("xjCW0JsAcmI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V115LastUpdatedUserEEptEv) +STUB( + "xjCsUZiSn0U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V53SkuEEEEppEi) +STUB( + "xjDxTFaEGn4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE17getNpWebApi2ReqIdEv) STUB("xjE7xLfrLUk", sceSystemServiceGetAppFocusedAppStatus) +STUB("xjInQNqTrZU", __asan_exp_store4) +STUB("xjKlGy9x95I", + _ZN7WebCore26MessagePortChannelRegistry27messagePortChannelDestroyedERNS_18MessagePortChannelE) +STUB("xjVZ2aqjVrg", CurlMultiInitialize) +STUB( + "xjVhrq2KPJA", + _ZN3sce2Np9CppWebApi14SessionManager2V158PostPlayerSessionsSessionIdMemberPlayersRequestBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_26RequestPlayerSessionPlayerEEEEEPNS9_INS3_51PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEE) +STUB( + "xjXbEh3Rlxs", + _ZN3sce2Np9CppWebApi7Matches2V125CreateMatchRequestFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_18CreateMatchRequestEEE) +STUB( + "xjY6CqSSnq0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V118PlayerForOfferReadEEEEEE7get_refEv) +STUB( + "xjiyo-kM7Eo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) STUB("xjjhT5uw08o", sceAudioOutExPtClose) +STUB( + "xjp4yqGNY2A", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB("xjr8uy5qexM", + _ZN7WebCore27ScrollingStateScrollingNode21setScrollableAreaSizeERKNS_9FloatSizeE) +STUB("xjs+AdvF4j0", _ZNK3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectator11getPlatformEv) +STUB("xjw8dmAtKOc", _ZNK3sce2Np9CppWebApi7Matches2V111AddedPlayer13getPlayerNameEv) +STUB("xjyWb8N4xFM", _ZN3sce2Np9CppWebApi13InGameCatalog2V55Image9setFormatERKNS4_6FormatE) STUB("xk0AcarP3V4", scePadOpen) +STUB( + "xkCQUBBDI9o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "xkD4VxvDKgU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEdeEv) +STUB("xkIWP8hwCtA", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes13boolean2IsSetEv) +STUB( + "xkJoVDI2m70", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEE10setContextEPNS2_10LibContextE) +STUB("xkLfem4ShVY", _ZN7WebCore19JSAnimationTimelineD1Ev) +STUB("xkLx3jMR+C8", mono_aot_Sce_Vsh_ShellUIUtilWrapperunbox_trampolines) +STUB("xkUBYXiLzB8", _ZN12video_parser5vpcom21_AbortCloseConnectionEPNS_8_vp_fileE) +STUB("xkYy-HPYh-Y", ucol_getStrength_67) +STUB("xkf7inWsr-M", WKPreferencesGetServiceControlsEnabled) +STUB("xkiZgSlJ9q0", _ZN7WebCore3URL8setQueryERKN3WTF6StringE) +STUB( + "xkjbTlSBiAo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEppEv) STUB("xkymWiGdMiI", sceHttpGetCookieStats) +STUB( + "xkzA3MKiLqo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("xl+1PNJSId0", _ZN4Manx6System19setVirtualRangeNameEPvmPKc) +STUB("xl-NQkj2YFE", u_austrncpy_67) +STUB("xl0o3af5rH4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEC2Ev) +STUB( + "xl2WxiWFPD4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEC1EPS6_PNS2_10LibContextE) +STUB( + "xl55PMv6NLc", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEptEv) +STUB( + "xlEQuJBBgrM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEE5emptyEv) +STUB("xlMpv-0dQqQ", _ZN7WebCore8JSDOMURL14finishCreationERN3JSC2VME) +STUB("xlQcp4Sc0gk", rgctx_fetch_trampoline_rgctx_120) +STUB("xlRcc7Rcqgo", hypot3f) STUB("xlZothImIe4", sceRnpsAppMgrDestroyUpdateRequest) +STUB( + "xlbcwfK6dTA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEC2EPS8_) +STUB( + "xlgA01CQtBo", + _ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE5_IfmtEPcPKcNSt5_IosbIiE9_FmtflagsE) +STUB( + "xlh7WUvub4Q", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEppEi) +STUB( + "xlhlTHvRVM8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120PlayerSessionForReadEEEEEEaSERSA_) +STUB( + "xlj6+kd2l8o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEEC2ERKSA_) +STUB( + "xlr2Vh1z4qQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEC2ERS7_) +STUB( + "xm+Bl1ITTKw", + _ZN3sce2Np9CppWebApi13InGameCatalog2V521ContainerMediaFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_14ContainerMediaEEE) +STUB("xm2bDJ1gvz8", _ZN3sce7Toolkit2NP15AppSTLAllocatorI13SceNpOnlineIdEC1ERKS4_) +STUB( + "xm6BUShx81g", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE8capacityEv) +STUB( + "xm7dBJUzRlc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEED2Ev) +STUB("xm8JxcngD74", + _ZN7WebCore4toJSEPN3JSC9ExecStateEPNS_17JSDOMGlobalObjectERNS_17AnimationTimelineE) +STUB( + "xm8ithI58J4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEEEC2Ev) +STUB("xmAnv5rrQGE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEC2Ev) STUB("xmF0yIF4iXc", sceNpPollSema) +STUB( + "xmJUuG8cBgs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE4sizeEv) +STUB("xmJYAfy6m1w", _ULx86_64_init_remote) +STUB("xmP9O7ieSMk", YGNodeStyleSetMaxHeight) +STUB("xmPtQWBvGJQ", _ZN3sce2Np9CppWebApi14SessionManager2V15Error14setReferenceIdEPKc) +STUB("xmQq6hB1vqE", WKPopupMenuItemCopyText) +STUB( + "xmROlnKlOjo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEppEv) STUB("xmWi73o1BR0", sceAgcDriverSubmitMultiCommandBuffersDirect) +STUB( + "xmdRHj7wRTc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities14UserActivitiesEEEEEEaSERKSB_) STUB("xmhnAoxN3Wk", sceAppContentGetPftFlag) +STUB( + "xmiQXCKsp9Q", + _ZN3sce2Np9CppWebApi7Matches2V127ResponseInGameRosterFactory7destroyEPNS3_20ResponseInGameRosterE) +STUB("xmjNkL14Jho", Java_java_io_RandomAccessFile_open0) +STUB( + "xmk2pGerHvY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEEC1ERKS9_) +STUB("xmnt-POI+Sc", _ZN3sce2Np9CppWebApi7Matches2V117ResponseMatchTeamC2EPNS1_6Common10LibContextE) +STUB("xmodkU3kfhg", _ZN3sce2Np9CppWebApi11Matchmaking2V113PlayerForRead8fromJsonERKNS_4Json5ValueE) +STUB( + "xmp5mz0qTnw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEC1ERKS7_) +STUB("xmqLf-a8vYY", _ZN3sce3pss5orbis9framework8PsmEvent4SendERKNS2_12PsmEventDataE) +STUB( + "xmshc+a-bO4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEptEv) +STUB("xmyYZ9Gnh08", mono_aot_Sce_Vsh_ShellUIUtilWrapperplt) +STUB("xn+H+GSLQHw", rgctx_fetch_trampoline_mrgctx_19) +STUB( + "xn91SnYf9Lg", + _ZNK3sce2Np9CppWebApi14SessionManager2V133PostGameSessionsTouchResponseBody20touchedDateTimeIsSetEv) +STUB("xn9OOHPX-QY", _ZN3sce7Toolkit2NP2V26Friend7Request26DisplayFriendRequestDialogC2Ev) STUB("xn9aIpe+XQQ", sceVdecwrapDeleteDecoder) +STUB("xnARf4a4prE", _ZNK7WebCore11MediaPlayer16supportsScanningEv) +STUB("xnIArSSzecM", _ZN9Inspector33LayerTreeBackendDispatcherHandlerC2Ev) +STUB( + "xnKGHn4JBLA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V13Mmr15setPerFranchiseERKNS1_6Common12IntrusivePtrINS3_13MmrPropertiesEEE) +STUB("xnLbph2g12A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEE7get_refEv) +STUB( + "xnNbhjSRnb0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchStatusRequestEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "xnO8AQsvVfo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEC2EPS8_) +STUB( + "xnOlwqVJ-ak", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB( + "xnWq-1KvI54", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V35ErrorEEEEneERKS9_) +STUB("xnb525v3YTs", _ZN3sce2Np9CppWebApi11Matchmaking2V113ErrorResponseC1EPNS1_6Common10LibContextE) STUB("xnd8BJzAxmk", sceAppContentGetAddcontInfoList) +STUB( + "xniPUAXUvec", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEEaSERSA_) +STUB("xnkBcS0p1KM", _ZNK7WebCore8Position8upstreamENS_27EditingBoundaryCrossingRuleE) +STUB( + "xnq-OqIAcWQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEEEE3getEv) +STUB( + "xo-qf+3Cjk4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEneERKS9_) +STUB("xo1n7aUR-Cc", + _ZNK3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V15Error6toJsonERNS_4Json5ValueEb) +STUB("xo1zSCziW4k", _ZN7WebCore9HTMLNames8textAttrE) +STUB("xo9Z9W9CVN4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V18RelationEEC1EPKS6_) +STUB( + "xoBAYkAPaeM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("xoLxyUwgfJI", _ZNK3sce2np14JsonNumberImpl3GetEPj) +STUB( + "xoNSKpgHsJU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEE11get_deleterEv) +STUB("xoOeMPVrBAE", mono_aot_Sce_Vsh_Np_Snsjit_code_end) +STUB("xoOfzXJM30s", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11UserProfile2V110AvatarSizeEEC1Ev) STUB("xoRfQxAhHjk", sceLibreSslInitEx2) +STUB( + "xoU8a7hiluo", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody10setString6EPKc) +STUB("xoV4mkbjaHk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEED2Ev) +STUB( + "xoVRBbnuDos", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113PlayerForReadEEC1EPS6_PNS2_10LibContextE) +STUB("xoYuJahGyBE", _ZN3sce7Toolkit2NP2V28Commerce7SkuInfoD1Ev) +STUB( + "xoZBq0jyP4A", + _ZN9Inspector22InspectorDebuggerAgent12breakProgramENS_26DebuggerFrontendDispatcher6ReasonEON3WTF6RefPtrINS3_8JSONImpl6ObjectENS3_13DumbPtrTraitsIS6_EEEE) +STUB("xoaQMJQ9JFg", WKBundleFrameCopyURL) STUB("xod2jO9Gs4s", sceUserServiceSetNpAccountId) +STUB("xody9WF4sxA", _ZN3JSC2VM21intlCollatorSpaceSlowEv) +STUB("xoe4ss9GmYc", cairo_region_num_rectangles) +STUB( + "xoepu05KeBw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEED1Ev) +STUB( + "xoezweEjLQc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEEC1ERSA_) +STUB( + "xojr0stkbwE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEmmEi) +STUB("xon5yCPxbAw", nsnp_FinTrack) +STUB( + "xopr29uh7bQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEEcvbEv) +STUB( + "xotzrkLV-aU", + _ZN3sce7Toolkit2NP2V28Commerce11getProductsERKNS3_7Request11GetProductsEPNS2_4Core8ResponseINS3_8ProductsEEE) +STUB( + "xouTWfx8ZJk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEEC1EPS6_PNS2_10LibContextE) +STUB("xox-Ow5yyDs", ulocimp_toBcpKey_67) +STUB( + "xozlqyejt88", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("xp-IoIUYCaQ", _ZN7WebCore14DocumentLoaderD2Ev) +STUB( + "xp2O7zNDs9k", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEED2Ev) +STUB("xpB7NUYCht8", _ZN3sce7Toolkit2NP2V210Tournament7BracketC2Ev) +STUB( + "xpJvJOUq2QE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEppEi) +STUB("xpKodkgAS4Q", _ZN3JSC7Symbols14bigPrivateNameE) +STUB("xpLjHhJBhpo", _ZN3sce2np15CancelableScopeD2Ev) +STUB( + "xpLmwEwUd7k", + _ZNK3sce2Np9CppWebApi14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBody11getPlatformEv) +STUB("xpMw3H+9ThQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEED2Ev) +STUB( + "xpNCIgq5370", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "xpONiiZZKWE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEE4sizeEv) +STUB( + "xpOurHtWuhM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEC2Ev) +STUB( + "xpPB01QKvTo", + _ZN3sce2Np9CppWebApi14SessionManager2V131RequestGameSessionPlayerFactory7destroyEPNS3_24RequestGameSessionPlayerE) +STUB("xpQjiERB8Gk", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6StringEE5resetEPS4_) +STUB("xpSP40U+pqc", _ZNK7WebCore36ISOProtectionSystemSpecificHeaderBox6keyIDsEv) +STUB( + "xpT59kwSjy0", + _ZN15AbstractStorage12LocalService23create_storage_instanceERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("xpUqzg1gPtg", u_vfprintf_u_67) +STUB("xpYOrYjAoUc", _ZNK7WebCore36ISOProtectionSystemSpecificHeaderBox4dataEv) +STUB("xpZ6UBuyYx4", _ZN7WebCore9FontCache22lastResortFallbackFontERKNS_15FontDescriptionE) +STUB( + "xpZ7Pt9FlNg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "xpbaGZUFupI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEC1EPS6_PFvS8_EPNS2_10LibContextE) STUB("xphrZusl78E", sceNetGetsockopt) +STUB("xphwiQQzH+M", _ZN7WebCore16HTMLInputElement7setSizeEj) +STUB( + "xpnfRRrT8Yw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEC1EPS6_PNS2_10LibContextE) +STUB("xpoHjYrdN7k", _ZN7WebCore8SVGNames18text_renderingAttrE) +STUB( + "xpp-SMIswCU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEneERKS9_) +STUB( + "xptStTyYP6Y", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlot9terminateEv) +STUB( + "xpxMNUILJoM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "xq1VKkD3NVc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEneERKS9_) +STUB("xq6hhVsBYWQ", _ZN7WebCore7Pattern24setPatternSpaceTransformERKNS_15AffineTransformE) +STUB( + "xqBBk1UCXRY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124PlayerSessionPushContextEEEEEED2Ev) +STUB("xqChFx35EBw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEE5resetEPS6_) +STUB( + "xqED9tMkNA0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEmmEi) +STUB( + "xqG06cqpYbc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEEE7add_refEv) +STUB( + "xqIUnKeeNdY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEC1ERKS7_) +STUB( + "xqJEF6uRQnQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEEC1Ev) +STUB("xqLXNRuiapQ", _ZN7WebCore24CoordinatedGraphicsLayer23setContentsNeedsDisplayEv) +STUB( + "xqTlJ+S45J8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "xqV4ImHW7tY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEE6resizeEj) +STUB("xqV7Ohv9sKI", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEEC1ERS7_) +STUB("xqbiS7PMrSE", glGetString) +STUB("xqbu+3-b+oc", _ZN7WebCore11DisplayList11SetLineDashD1Ev) +STUB( + "xqefYhqwgr4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEptEv) +STUB("xqeyyKUZcQ4", gsharedvt_out_trampoline) STUB("xqgVCEflEDY", scePadSetFeatureReport) +STUB("xqhNCItwXpQ", __ubsan_handle_nonnull_return) +STUB("xqjAbn8VNGo", FTA_Support_Format_Type42) +STUB("xqjc1z94eDQ", _ZL4_new) +STUB( + "xqlD9fbc50I", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE17setNpWebApi2ReqIdEl) +STUB("xqlFMfkztKg", audiodeccpuinternal_core_ops_ddp) STUB("xqmkjHCEOSY", sceUsbdFillIsoTransfer) +STUB( + "xqp1UaH70oI", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V142MatchCompletionRateCompletedMetricsFactory6createEPNS1_6Common10LibContextEiPNS5_12IntrusivePtrINS3_35MatchCompletionRateCompletedMetricsEEE) +STUB("xqsffBWdttE", _ZN9Inspector28InspectorScriptProfilerAgent26programmaticCaptureStartedEv) STUB("xqtJm0VrtY8", sceFsISSchedResultToPriority) +STUB( + "xqxAsjLX+VM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEED2Ev) +STUB("xqyby-wgUnY", _ZN9Inspector17ScriptDebugServer14removeListenerEPNS_19ScriptDebugListenerEb) +STUB( + "xr+Lyh6Z5GI", + _ZN3sce2Np9CppWebApi14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyC1EPNS1_6Common10LibContextE) +STUB("xr-Nm6Z3X7E", mono_aot_Sce_Vsh_Db_Sharedunwind_info) STUB("xr1gIsJ-9Ns", sceMatRealloc) +STUB("xr2263Do-NU", _ZN3WTF24currentTextBreakLocaleIDEv) +STUB("xr7g9J2cPGk", _ZN3sce7Toolkit2NP2V28Matching7Request11SearchRoomsC2Ev) +STUB( + "xrCCOxztM74", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V515ContainerRatingEEEEEEptEv) +STUB( + "xrH8ImHHeTA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEEC2EPNS2_10LibContextE) +STUB( + "xrK53HXV6T8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE10setContextEPNS2_10LibContextE) +STUB("xrUu20T3aFc", + _ZN12video_parser13cVideoMetaMP417getThumbnailImageENS_9VP_LANG_eENS_15VP_SEARCH_OPT_eEjPh) +STUB( + "xrVUQFoTJoM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEC2EPS6_PNS2_10LibContextE) +STUB("xrXnHw4+bTc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V122CustomJoinableUserTypeEE7popBackEv) +STUB("xrY2KyKW7DE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEE7get_refEv) +STUB( + "xrbGDDaOpUg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEEE7popBackEv) +STUB( + "xrbnS5ZT8kk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEdeEv) +STUB( + "xrcwt7OT90o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEmmEv) +STUB( + "xrfUcqpeS-8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("xri4mdpM17I", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6BinaryEE7add_refEv) +STUB( + "xrk4JD0kQZg", + _ZN3sce2Np9CppWebApi14SessionManager2V127RequestGameSessionSpectator8fromJsonERKNS_4Json5ValueE) +STUB( + "xrmMiP+2LjA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEixEm) STUB("xrmmI832R4U", sceUltConditionVariableDestroy) +STUB("xrqDcLK015g", _ZN22MmsMdCommonFsOperationC1Ev) +STUB( + "xrsRUSdq1qM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) STUB("xrtki9sUopg", sceUserServiceGetAccessibilityKeyremapEnable) +STUB( + "xrxsLCBMUV8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "xryuT8j5Yc0", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_13FriendsOfUserENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB( + "xs3PXq5UEEE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEE3getEv) +STUB( + "xs4LLymnPA0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEcvbEv) +STUB( + "xs69CnIiWu4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("xsCKY9Bdkaw", _ZN7WebCore8SVGNames11polylineTagE) +STUB("xsDEHCFMIlw", + _ZN7WebCore19ResourceRequestBase14setCachePolicyENS_26ResourceRequestCachePolicyE) +STUB( + "xsGKAWz7gvQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "xsIfPHtgnoQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V125ChildActivityAvailabilityEEEEC2ERS9_) +STUB( + "xsLaMtM1jc8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEEC1ERKSA_) +STUB("xsRN6gUx-DE", _ZNSt13_Regex_traitsIwE6_NamesE) +STUB( + "xsVpsKwZ25E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEED1Ev) +STUB( + "xsVsa0KO68Q", + _ZN3sce2Np9CppWebApi14SessionManager2V134ResponsePlayerSessionPlayerFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_27ResponsePlayerSessionPlayerEEE) +STUB("xsXQD5ybREw", _ZNSt22_Future_error_categoryD1Ev) STUB("xsYdh9NsuK0", pthread_mutexattr_setgen_np) +STUB("xsdpIleRxwM", _ZNK3sce2Np9CppWebApi13InGameCatalog2V55Image11formatIsSetEv) +STUB("xshoqgGROyY", TWO52) +STUB( + "xsiiq8MpPG0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEE5resetEPS6_) +STUB("xspD08cWeyE", _ZN12video_parser5vpcom3rtc14GetDaysInMonthEtt) +STUB( + "xspFecBA4VE", + _ZN7WebCore10JSLocation17defineOwnPropertyEPN3JSC8JSObjectEPNS1_14JSGlobalObjectENS1_12PropertyNameERKNS1_18PropertyDescriptorEb) +STUB( + "xsqZL8jhYus", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEC2Ev) STUB("xstcTqAhTys", sceNetCtlGetInfoIpcInt) +STUB( + "xsuwNjF-iJU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEEC2ERSA_) STUB("xszTt3hOPcA", sceDepth2SetCameraFactoryCalibrationData) +STUB( + "xt2r-7qWZL8", + _ZN9Inspector24RuntimeBackendDispatcher19setSavedResultAliasElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "xt5lwl3ZnUw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEE11get_deleterEv) +STUB("xt62sAe2704", ucnv_cbFromUWriteUChars_59) +STUB("xt9gfRnciNk", _ZN3sce7Toolkit2NP2V212NetworkUtils7Request22GetDetailedNetworkInfoD2Ev) +STUB("xtB+gqdTSZc", _ZNK7WebCore4Page21wheelEventTestMonitorEv) +STUB( + "xtU2TwmQ89E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEC1EPKS8_) +STUB("xtZsdK1-NsY", _ZN3sce7Toolkit2NP2V26Friend7Request10GetFriendsC2Ev) +STUB("xtb9fOR6ilA", FTA_Remove_Module_smooth_lcd) STUB("xtbb-2f703A", sceGameCustomDataDialogInitialize) +STUB("xtduHw3-uNw", u_charsToUChars_67) +STUB("xtfuUrufWx4", + _ZN3sce7Toolkit2NP10ParametersC2EPFvRKNS1_5EventEPvES6_S6_mPNS1_19AllocImplementationE) +STUB("xtgoMt+v-H0", _ZN7WebCore8Document11createRangeEv) +STUB("xtiudkYGWWA", _ZN7WebCorelsERN3WTF10TextStreamENS_14ScrollClampingE) +STUB( + "xtpeTuEScZU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEED2Ev) +STUB( + "xtyGPyEWqd0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEED1Ev) +STUB("xu9qWN0YYC4", _ZN3sce2np10EventQueue4ctorEv) +STUB("xuEUMolGMwU", _ZTSSt8numpunctIwE) +STUB("xuFJk0QcYI0", mono_aot_Sce_Vsh_GameCustomDataplt) +STUB("xuGZeGhiElE", _ZN7WebCore11HTMLElement12setDraggableEb) STUB("xuLuaJ4Ywlg", sceShareUtilityAdvanceValidateContents) +STUB( + "xuMmKYzaIfs", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE11hasResponseEv) +STUB( + "xuPcHjd8Ics", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEED2Ev) +STUB("xuUODA8UmEE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEEppEi) +STUB("xuY99Qcb108", FT_Set_Char_Size) +STUB("xuaSjMP7VYc", _ZNK3WTF6String18simplifyWhiteSpaceEPFbDsE) +STUB("xub82YQ3rlA", _ZNK3sce2Np9CppWebApi7Matches2V123RequestTeamMemberResult11getPlayerIdEv) +STUB("xubh1B6X354", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyD2Ev) STUB("xubw0SjW4Y0", sceNpGriefReportGetTicket) +STUB( + "xugo4hJuBQQ", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB("xus+q86JKcc", mono_aot_System_Web_Servicesplt_end) STUB("xutLbQdqyb4", sceFiosArchiveMountSync) STUB("xutwCvsydkk", sceNpTusDeleteMultiSlotDataVUser) +STUB("xv+fnq7Isic", _ZN3JSC9JSPromise6s_infoE) +STUB("xv-740aYMAY", _ZN7WebCore9HTMLNames9optionTagE) +STUB("xv-UN1kbqGk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEE11release_refEv) +STUB("xv2WbSZW-VU", _ZN3sce7Toolkit2NP2V28Matching6MemberD1Ev) +STUB( + "xv4u18VhqN4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB("xv6M1yhM3iA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_12Leaderboards2V110UpdateModeEEeqERKS7_) +STUB( + "xvDAA5LMB5M", + _ZN3sce2Np9CppWebApi14SessionManager2V132RequestPlayerSessionMemberPlayer10setPlayersERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_32RequestCreatePlayerSessionPlayerEEEEE) +STUB( + "xvHMlQoNjzQ", + _ZN3sce2Np9CppWebApi6Common23UpDownStreamTransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC2ERKS8_) +STUB( + "xvInXWxtAUQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ResponseMatchResultsEEEEC1Ev) +STUB("xvJiFea+JnQ", _ZN3sce7Toolkit2NP2V28Matching9AttributeC1Ev) +STUB("xvKW01mGR+M", SHA224_Init) STUB("xvMc8QuNzpo", sceDataTransferTargetAbortGetUsers) +STUB("xvOmFQg-ZsM", WKHitTestResultCopyAbsolutePDFURL) +STUB( + "xvRSNoHcIoc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEE21intrusive_ptr_sub_refEPS9_) +STUB("xvRvFtnUk3E", _ZNKSt9bad_alloc4whatEv) +STUB( + "xvVHjBrnDeo", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE5getIdEv) +STUB("xvVR0CBPFAM", _ZNKSt23_Generic_error_category4nameEv) +STUB("xvVRiqap334", _ZN3WTF11Persistence7DecoderrsERNS_8OptionalImEE) +STUB("xvXzhIx7GAs", AnnotateRWLockCreate) +STUB( + "xvaKkMO6Na4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEEppEv) +STUB("xvbXZYq6yfI", _LMBCSData1_67) +STUB("xvdhNdIHvWA", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEEC2Ev) +STUB("xvfYB20ddwU", + _ZNK3sce2Np9CppWebApi14SessionManager2V125ResponseGameSessionPlayer6toJsonERNS_4Json5ValueEb) +STUB( + "xviE63dqNU8", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_17TitleCloudStorage2V19ConditionEE6insertENS2_8IteratorIS6_EERKS6_RS9_) +STUB( + "xvl9ao1vSXY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE8pushBackERKS8_) +STUB("xvquTEbr1ro", WKPreferencesSetAriaReflectionEnabled) STUB("xvsP5Yz6FmY", sceNpUniversalDataSystemEventPropertyObjectSetUInt64) +STUB("xvvl0wloTaQ", _ZN3JSC8DebuggerdlEPv) +STUB( + "xvwBLvAw5rk", + _ZN7WebCore6JSFileC2EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_4FileENS6_13DumbPtrTraitsIS8_EEEE) +STUB("xw3kZgIgZlU", _ZN3sce7Toolkit2NP9Utilities6FutureI16SceNpTusVariableED1Ev) +STUB( + "xw3zPfi9UM0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEE6assignEPS5_PFvS7_EPNS2_10LibContextE) +STUB("xw7nZtsLETs", _ZN7WebCore21BlobDataFileReference20prepareForFileAccessEv) +STUB("xwAg3lsPCus", _ZN3sce2Np9CppWebApi7Matches2V118CreateMatchRequestC1EPNS1_6Common10LibContextE) STUB("xwB67z-O5-o", sceFsReserveCluster) +STUB("xwEkKL6aw3w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEaSERKS7_) +STUB( + "xwFAyLVrn60", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEppEv) STUB("xwJIlK0bHgA", sceNpTusGetMultiUserDataStatusVUser) +STUB("xwPoRLiohzA", _ZN3JSC13JSFinalObject6s_infoE) +STUB( + "xwTdfRiiexM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEmmEv) STUB("xwWm8jzrpeM", sceNetDhcpdStop) +STUB( + "xwaQP4Q1yPw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEE11get_deleterEv) +STUB("xwbklOkRVcA", mono_aot_Sce_Vsh_SystemLoggerWrapperjit_got) STUB("xweOi2QT-BE", sceCompanionHttpdUnregisterRequestCallback) +STUB("xweP3QvBaY4", mono_aot_Sce_Vsh_BackupRestoreUtiljit_code_start) STUB("xwhyGPZkW6w", sceVideoOutSysCursorEnable) +STUB( + "xwio9nqWJoI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEE8pushBackERKS8_) +STUB( + "xwjQ26lv5S0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE5beginEv) +STUB("xwmX4Gh8-qk", _ZN7WebCore9JSCSSRule9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB( + "xwnULl4OsG0", + _ZN7WebCore17PageConsoleClient6recordEPN3JSC9ExecStateEON3WTF3RefIN9Inspector15ScriptArgumentsENS4_13DumbPtrTraitsIS7_EEEE) +STUB("xwrhoiKrVi4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEmmEi) +STUB( + "xwy1I52dE8o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEEptEv) +STUB("xx+jorq5D5c", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils12BandwithInfoEED2Ev) +STUB( + "xx-iKzgVqeU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEE8pushBackERKS8_) +STUB( + "xx1FEaGhi4g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEixEm) +STUB( + "xx2rtUG2aPs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEEE3endEv) +STUB("xx4FGisubsA", uprv_getMaxCharNameLength) +STUB("xx7vPTh323Y", WKViewSetDrawsTransparentBackground) +STUB("xxBnIBiUVzY", _ZN3sce4Json5Value14s_nulluintegerE) +STUB( + "xxCBvEF4QKA", + _ZN7WebCore19JSAnimationTimelineC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_17AnimationTimelineENS6_13DumbPtrTraitsIS8_EEEE) +STUB("xxCPbEBdoEU", MASSMCReadMessage) +STUB("xxLlsTkSZN8", _ZN3sce3Xml3Dom4Node11appendChildENS1_6NodeIdE) +STUB("xxMDs4ufX0I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEaSERKS7_) +STUB( + "xxNUT08kzVk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V124RequestCooperativeResultEEEE5resetEPS8_) +STUB("xxNXw-XIe6c", _ZNK3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody8getCauseEv) +STUB("xxNgaOEz9Es", _ZN9Inspector15RemoteInspector5startEv) +STUB("xxOTJpEyoj4", _ZN3sce2np7Callout10IsTimedoutEv) +STUB( + "xxXCZ3KTzM4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "xxZjYrZssiI", + _ZN3sce4Json5ValueC1ERKSt3mapISbIcSt11char_traitsIcENS0_8StlAllocIcEEES1_St4lessIS7_ENS5_ISt4pairIS7_S1_EEEE) +STUB("xxaJLwPko8I", _ZN7WebCore20ResourceResponseBase18setHTTPHeaderFieldERKN3WTF6StringES4_) +STUB("xxbFcHNWw-E", mono_aot_Sce_Vsh_Gls_GlsSharedMediaViewjit_code_end) +STUB("xxdwmfFNjjE", _ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToSubmitTicket9terminateEv) +STUB( + "xxlDfmaad0g", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlotC2ERS5_) +STUB( + "xxn2ztabcVM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEEEEdeEv) +STUB("xxsW1hXL2mM", _ZN15AbstractStorage14DailymotionAPID1Ev) +STUB("xxzE5TCEbmY", uloc_getDisplayCountry) +STUB( + "xy0MR+OOZI8", + _ZNKSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE13get_monthnameES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm) +STUB( + "xy21s43pMMY", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V136SetVariableWithConditionsRequestBody32unsetComparedLastUpdatedDateTimeEv) +STUB("xy3ZAbOfOU0", _ZN3WTF11Persistence7EncoderC2Ev) +STUB( + "xy3jCkIDL44", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEppEv) +STUB("xy4m3oQ08NE", _ZN7WebCore21DiagnosticLoggingKeys26failedLessThan20SecondsKeyEv) +STUB( + "xy9Wsk8l+vM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEE7get_refEv) +STUB("xyAI6HDk2XI", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchStatusaSERS5_) +STUB( + "xyEnosLGLxE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEC1EPS8_) +STUB( + "xyM9+9j874c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEmmEv) +STUB("xyNrzqqlgdY", _ZN3sce7Toolkit2NP2V210Tournament12MatchDetailsC1Ev) +STUB("xyRRwQMH5ug", curl_multi_cleanup) STUB("xyT8IUCL3CI", sceAudioOutPtOpen) +STUB("xyZDCLZrWcM", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesD2Ev) +STUB("xyZTA6sX-TQ", mono_aot_Sce_Vsh_Registryplt_end) +STUB( + "xyaUjXbBaj8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEE5resetEPS9_) +STUB( + "xybBkmDCM2Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE5clearEv) STUB("xybbGMCr738", sceKeyboardRead) +STUB("xycd6m3nWSM", g_free) +STUB("xycgYEIntak", WKViewHandleImeEvent) +STUB("xycySR37A1k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIdEEEC1EPS5_PNS2_10LibContextE) +STUB("xyd+kSAhtSw", CERT_extractDistinguishedNames) +STUB("xyfUK0D2OWA", _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V115FrequentlyMuted11globalIsSetEv) +STUB( + "xyh1m8wK5ag", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEEeqERKS9_) +STUB("xylThGsMZuE", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12EventsClient6EventsEED1Ev) +STUB("xyq9yabh7qg", _ZN3sce7Toolkit2NP2V212ActivityFeed15PlayedWithStoryaSERKS4_) STUB("xywYcRB7nbQ", sceAudioOut2UserCreate) +STUB("xyzaQM0Aj04", _ZN3JSC7Symbols20generatorPrivateNameE) +STUB( + "xz-TR3kX2Ok", + _ZN3sce2Np9CppWebApi11UserProfile2V120BasicPresenceFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_13BasicPresenceEEE) STUB("xz0YMi6BfNk", sceSaveDataMount5) +STUB("xz4yGTI1ka0", _ZN3sce7Toolkit2NP2V28Matching7Request10CreateRoom20MAX_SIZE_ROOM_STATUSE) +STUB("xz6aex17NzE", _ZN3JSC7Symbols37regExpPrototypeSymbolMatchPrivateNameE) +STUB( + "xzD9oEDLT2k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEED1Ev) STUB("xzG8mG9YlKY", sceNpTusGetDataAAsync) +STUB("xzGyte9YwAg", g_shell_unquote) +STUB("xzIOBz33RrM", mono_aot_Sce_Vsh_WebBrowserunbox_trampolines_end) +STUB( + "xzJi8SoPq1w", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEppEv) +STUB("xzQE-eMzCT8", _ZN7WebCore8SVGNames11azimuthAttrE) STUB("xzQVBcKYoI8", sceUserServiceGetSecureHomeDirectory) +STUB("xzUiAXg3Ius", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEaSERKS7_) STUB("xzVZA1oYXo4", sceAudioOut2DebugStateCtrl) +STUB( + "xzYpD5d24aA", + _ZNKSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE14do_get_weekdayES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateEP2tm) +STUB("xzZiQgReRGE", labs) +STUB("xzdYHCQhKR8", mono_type_is_valid_enum_basetype) STUB("xzdhJrL3Hns", sceUserServiceGetUserGroupNum) +STUB( + "xzemkrbm9rM", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB("xziWz-gUiXs", _ZN3WTF9MediaTime20negativeInfiniteTimeEv) +STUB("xzjeirkjUnY", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110TaskStatusEE8capacityEv) +STUB("xzkqkH5qWbc", _ZN9Inspector21DOMFrontendDispatcher16attributeRemovedEiRKN3WTF6StringE) +STUB( + "xznuUNEg50k", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEE3getEv) +STUB("xzpWAV02YH0", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V111OfferStatusEEC2Ev) +STUB("xzuZoR3+QAE", Java_com_sony_bdjstack_javax_media_controls_VideoDecoder_transform) +STUB("xzxO3BH+D6M", WKAXObjectHelpText) +STUB("y+13zwV-wM8", _ZN7WebCore8SVGNames7stopTagE) +STUB("y+2XcDavHEo", _ZN7WebCore8SVGNames6x2AttrE) +STUB("y+3x0+LPnRI", + _ZN3sce2Np9CppWebApi12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersC2ERS5_) +STUB( + "y+9z8ZPit4k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V120GetOfferResponseBodyEEEEEEC1Ev) +STUB("y+BdR6GtOps", _ZN7WebCore10XLinkNames17xlinkNamespaceURIE) +STUB("y+E+IUZYVmU", __mulsc3) +STUB( + "y+MJuZs0HZY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEEdeEv) +STUB("y+RAunMRPNI", g_slist_delete_link) +STUB("y+Z1jwavobw", rgctx_fetch_trampoline_rgctx_62_p) +STUB("y+ZFCsZYNME", SSL_ASYNC_start) STUB("y+eBtrEElvs", scePlayReadyLicenseAcqGenerateAck) +STUB( + "y+eSAgEeMXA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEppEi) +STUB("y+h4IElSYkw", _ZN3sce7Toolkit2NP2V28Commerce14ProductDetailsC2ERKS4_) +STUB("y+hOBQoKCak", mono_aot_Sce_Vsh_Np_Pbtcjit_code_start) STUB("y+iI2lkX+qI", sceGnmSetWaveLimitMultiplier) +STUB( + "y+lynIV0i9Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEC1EPKS8_) +STUB("y+mZON99QYo", _ZNK3sce2Np9CppWebApi7Matches2V118CreateMatchRequest13getActivityIdEv) STUB("y+o5ZkkHMik", sceDebugGetMonoVMInfo) +STUB( + "y+wn7s8OcUo", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody11getInteger5Ev) +STUB("y-2kA5FvIyw", mono_aot_Sce_Vsh_Orbis_CdlgServerNpCommercemethod_addresses) +STUB( + "y-9MUtaWOZ0", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEneERKS9_) STUB("y-DJK+d+leg", sceNpTusGetMultiSlotVariableAVUserAsync) +STUB( + "y-EYD4QYLNY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19AttributeEEC1EPS6_PNS2_10LibContextE) +STUB( + "y-FUWwmDhxM", + _ZN3sce2Np9CppWebApi14SessionManager2V134PostGameSessionsSearchResponseBodyC1EPNS1_6Common10LibContextE) +STUB( + "y-Ot0kzrV68", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEED2Ev) +STUB( + "y-QLBFgd+Co", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEED1Ev) +STUB( + "y-W6nKBt3cM", + _ZN7WebCore19JSHTMLSelectElement17defineOwnPropertyEPN3JSC8JSObjectEPNS1_14JSGlobalObjectENS1_12PropertyNameERKNS1_18PropertyDescriptorEb) +STUB("y-ZCGGbJyUU", WKBundleHitTestResultCopyNodeHandle) +STUB("y-bbIiLALd4", _ZTSN6Dinkum7threads10lock_errorE) +STUB( + "y-kH8HZ4sRY", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEE5emptyEv) +STUB( + "y-m7ObwVY-8", + _ZN7WebCore20PasteboardCustomDataC2EON3WTF6StringEONS1_6VectorINS0_5EntryELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB("y-pCS5uWxG4", ENGINE_ctrl) +STUB("y-rEfomFKXU", + _ZN3sce7Toolkit2NP2V23TSS7getDataERKNS3_7Request7GetDataEPNS2_4Core8ResponseINS3_7TssDataEEE) +STUB("y-vtU6-d5-Y", WKViewportAttributesGetTypeID) +STUB("y-xe7dpaNBY", _ZN3JSC8Bindings13RuntimeObject15subspaceForImplERNS_2VME) +STUB("y06sk8in9AI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_17TitleCloudStorage2V19ConditionEEC1EPS6_) +STUB("y0BDcAt6FGE", _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead13getMaxPlayersEv) +STUB("y0BjcHdMTmI", mono_aot_Sce_Vsh_JsExtensionunbox_trampolines_end) +STUB("y0BpcQP1nto", _ZN3sce2Np9CppWebApi11UserProfile2V125GetBasicPresencesResponseD1Ev) +STUB( + "y0CpshxvtjI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE21intrusive_ptr_add_refEPS9_) +STUB("y0HO+blUxa8", ures_getByIndex_67) +STUB("y0JyEJWo-P0", mono_aot_Sce_CloudClient_App_Platformunwind_info) +STUB("y0Jyu1-OMFw", _ZN3JSC7Symbols28promiseFieldFlagsPrivateNameE) +STUB( + "y0KVK9G7l7k", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V19RatingApi10postRatingEiRKNS4_21ParameterToPostRatingERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) STUB("y0KkAydy9xE", sceGameLiveStreamingStartGenerateStandbyScreenResource) +STUB("y0LF1cuZaa8", mono_aot_Sce_Vsh_PsnUtiljit_got) +STUB( + "y0La2tlmWU0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "y0Qk5PTGJRc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEC1ERS7_) +STUB("y0SswDKrSiQ", WKPageGroupCreateWithIdentifier) +STUB("y0aapzyadSw", utrace_setLevel) +STUB("y0b2W+wEmrs", _ZN7WebCore16JSXMLHttpRequest13visitChildrenEPN3JSC6JSCellERNS1_11SlotVisitorE) +STUB( + "y0cvXmh4-wo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities8ActivityEEEEptEv) +STUB("y0hzUSFrkng", _ZNSt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEEC1ERKSt8_Locinfom) +STUB("y0q33hmapKk", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi28ParameterToDeleteGameSessionC1Ev) +STUB("y0sdlMI3lEY", _ZN3JSC7Symbols16smallPrivateNameE) +STUB("y0tHjQrzBJk", _ZN3JSC9JSONParseEPNS_14JSGlobalObjectERKN3WTF6StringE) +STUB("y0v3kg9elKc", _ZN3JSC12JSLockHolderC2EPNS_14JSGlobalObjectE) +STUB("y0wcICJ1I8U", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V19JoinStateEEptEv) +STUB("y1-VASByNaU", il2cpp_string_new_len) +STUB( + "y14zCuQQ9lI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEC1Ev) +STUB( + "y173wd3nz2c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "y17Zp8jXTdY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("y1C0Rs-WDJY", _ZN3sce7Toolkit2NP2V28Matching7Request8JoinRoomD1Ev) +STUB("y1CAx287dGI", sce_to_fios_open_params) +STUB("y1Ch2nXs4IQ", fpurge) +STUB( + "y1MqEVNE55Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEED2Ev) +STUB( + "y1S2yuZ9T8M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEC2Ev) +STUB("y1UT6IS4u-U", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEE3getEv) +STUB("y1dYQsc67ys", _ZNSt14overflow_errorD0Ev) +STUB("y1e+omRUMhY", _ZN15AbstractStorage13TwitterFolder4OpenENS_8ItemTypeE) +STUB( + "y1fI457JCrA", + _ZN9Inspector28DOMDebuggerBackendDispatcher18setEventBreakpointElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "y1kUvQLysR4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("y1qxfafYMHE", _ZTVN3JSC20JSStringHeapCellTypeE) +STUB("y1uSgrWf0tU", YGNodeSetMeasureFunc) +STUB( + "y1yd3Y8+m4s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEEaSERKSA_) +STUB( + "y1zpgXG4UJc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V311PsnWebErrorEEEEEEC1Ev) STUB("y2-hP-KoTMI", sceAudioOutSysGetSystemInfo) +STUB( + "y207ECDzXqw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEmmEi) +STUB("y20mWUHGzj8", glActiveTexture) +STUB("y25WcIE0ly0", _ZN9Inspector25ConsoleFrontendDispatchernaEm) +STUB("y29rp3N5qf4", _ZN4IPMI4impl10ClientImpl13pollEventFlagEjmjPm) STUB("y2LOMMK1Uyw", sceVshctlSetProprietaryChatStatus) +STUB( + "y2O3rlscY54", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEEneERKS9_) +STUB( + "y2ZmLW5GfFg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("y2qG+S4-36A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEE11release_refEv) +STUB( + "y2qHeDBxuQs", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEEEiRNS2_10LibContextEPT_m) +STUB( + "y2sq4TujP0I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113ChildActivityEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("y2zjSLAEFbY", mono_aot_Sce_Vsh_Passcodejit_got) +STUB( + "y2zq11F6pbQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEmmEv) +STUB( + "y3+Ta70yKDs", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeaders21intrusive_ptr_sub_refEPS5_) +STUB( + "y31ASJjUWzA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEC1EPS8_) STUB("y31G8GvPBWc", sceDevUsbDeleteHostStreamKevent) +STUB("y33KR+d7Ldg", _ZN4IPMI4impl11SessionImplD1Ev) +STUB( + "y35pE4K5-PI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V15ErrorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("y38avcHnyMY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth7IdTokenEED2Ev) +STUB("y3959iBFPP0", YGNodeLayoutGetLeft) +STUB( + "y3B9tUiLFXo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEE11release_refEv) +STUB( + "y3ESMdEBxco", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEEC1Ev) +STUB( + "y3EuGQKXixg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEE4sizeEv) +STUB("y3GWJqWbvIo", _ZN7WebCorelsERN3WTF10TextStreamERKNS_14TimingFunctionE) +STUB( + "y3IfPvCBQgo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEE7add_refEv) +STUB( + "y3Ig0qCwihU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("y3N3ILzbKV8", GCC_except_table13) +STUB( + "y3NiQUUL33c", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeAccountId2OnlineIdBatch5getidEv) +STUB("y3Qu90d+jUg", __tsan_read16_pc) +STUB("y3T+uuG1YGg", ucnv_openPackage) +STUB( + "y3T7LZllqg4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEC2Ev) +STUB("y3V0bIq38NE", wctomb_s) +STUB( + "y3W1bx8dPfs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEEC1EPS5_PFvS7_EPNS2_10LibContextE) +STUB("y3Yqewe4JAU", WTFLogWithLevel) +STUB("y3ZxC7Sxmd8", _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V112OnlineStatusEEC1Ev) +STUB( + "y3e1er1Sf80", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEneERKS9_) +STUB( + "y3fpyQbTXss", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEaSERKS9_) +STUB("y3iNnPlPfyw", + _ZN3sce2Np9CppWebApi14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyD2Ev) +STUB( + "y3jG5RBYv60", + _ZN3sce2Np9CppWebApi11Matchmaking2V130SubmitTicketRequestBodyFactory6createEPNS1_6Common10LibContextEPKcRKNS5_6VectorINS5_12IntrusivePtrINS3_21PlayerForTicketCreateEEEEEPNSB_INS3_23SubmitTicketRequestBodyEEE) +STUB( + "y3jSEW1KMCo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEEC2Ev) +STUB( + "y3kKukZKeDg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V520ContainerRatingCountEEEEEEaSERSA_) +STUB( + "y3kyo-BvI-E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "y3l0y2rKxdQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE21intrusive_ptr_sub_refEPS9_) +STUB("y3n-6vhbSVo", GCC_except_table265) +STUB( + "y3o7sO7MazE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEEaSERKSA_) +STUB("y3rGQlA5STk", _ZN3sce7Toolkit2NP2V26Friend12Notification15BlocklistUpdateC2Ev) +STUB("y3s0v8asWeI", _ZN7WebCore9HTMLNames11menuitemTagE) +STUB("y3vtrJxxa0A", __asan_report_exp_load4_noabort) STUB("y3zHpdZO6ME", sceNpTrophy2GetTrophyInfoArray) +STUB("y40h-JVoapA", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V14UserEEC2ERKS7_) +STUB("y40y9iXJIbs", __asan_set_shadow_f5) +STUB("y41H0Z-KBYg", _ZN3sce7Toolkit2NP2V212NetworkUtils12BandwithInfoC2ERKS4_) +STUB( + "y43sBLs6FqY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V19RecordApi30RecordLargeDataResponseHeadersEEC2EPS7_PNS2_10LibContextE) +STUB("y4D7OLrl9y8", _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile12unsetAvatarsEv) +STUB("y4Dg0njlwIU", ft_synthesize_vertical_metrics) +STUB( + "y4HVyO+Tc40", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEppEi) +STUB( + "y4LasKS5Ut0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEC1EPNS2_10LibContextE) +STUB("y4MDLBBNwcU", + _ZN3JSC11createErrorEPNS_14JSGlobalObjectENS_22ErrorTypeWithExtensionERKN3WTF6StringE) +STUB( + "y4NS73unGKs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEE7get_refEv) +STUB( + "y4UouqrhBYs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V115LocalizedStringEEEEEE11release_refEv) +STUB( + "y4VQs-im058", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEC1ERKS7_) +STUB("y4WlO8qzHqI", fedisableexcept) +STUB( + "y4Y6pjZbCPc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V113BasicPresenceEEEEppEi) +STUB( + "y4bW5bb8TkI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113ErrorResponseEEEEEEC2Ev) STUB("y4l-VBLsNio", sceVideoOutGetPortStatusInfo) +STUB( + "y4mbKrd-sTc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEEcvbEv) +STUB( + "y4nYkZYXB1w", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE8pushBackERKS8_) +STUB( + "y4tAprWj+d8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE8pushBackERKS8_) +STUB("y4yHm7QGLhE", mono_counters_init) +STUB("y52qHlKZ4t0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEED2Ev) +STUB( + "y53mtcwMguw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEE8capacityEv) +STUB( + "y54mIUs2vbw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEC1EPNS2_10LibContextE) STUB("y55QWr8yzrY", sceApplicationBlockingKill3) +STUB( + "y567gPDwGdA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEED1Ev) +STUB( + "y58SzTMC31M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEC2EPS8_) +STUB("y59QUpecpOE", _ZNK7WebCore17RenderTextControl22textFormControlElementEv) +STUB("y5C1ublO8hg", _ZN7WebCore8Settings20setMediaTypeOverrideERKN3WTF6StringE) +STUB( + "y5HGbAmWn+M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEC2EPS8_) +STUB( + "y5ID6VHvPNg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEeqERKS7_) STUB("y5IJdPxdBrE", sceCompositorQuit) STUB("y5JnCLW7ccU", sceUserServiceGetCaptureStatus) +STUB("y5Q1CWGjKCU", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEEC1ERS7_) +STUB( + "y5RmfGXPUf0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEC1EPNS2_10LibContextE) STUB("y5Ta5JCzQHY", sceNpWebApiCreatePushEventFilter) +STUB("y5Vwb-jFM6A", _ZN7WebCore38contextMenuItemTagWritingDirectionMenuEv) +STUB( + "y5W5FDe+Agc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEppEi) +STUB( + "y5ZQqATwm0U", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEEiRNS2_10LibContextEPT_m) +STUB( + "y5ZsDBSrG7I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEEaSERSA_) +STUB( + "y5aR-waFrfg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEEmmEi) +STUB("y5bRBoUqDQU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEED2Ev) +STUB( + "y5egg0vH458", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEaSERKS9_) STUB("y5h7f8H1Jnk", sceMoveGetExtensionPortInfo) STUB("y5ja7WI05rs", sceNpScoreGetRankingByRangeAAsync) +STUB("y5jp97KAQuQ", _ZNK7WebCore16HTMLInputElement16isTelephoneFieldEv) +STUB("y5mY6SonuNQ", _ZTVN7WebCore16DOMGuardedObjectE) +STUB( + "y5niumAd7hs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE8capacityEv) +STUB( + "y5rZoeM72CY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEEEC1ERKSA_) +STUB( + "y5tgCILPlyY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEE11get_deleterEv) +STUB("y5v7URrv4PU", _ZN3WTF40parseES5DateFromNullTerminatedCharactersEPKcRb) +STUB( + "y5vxewuHsyQ", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("y5xKqqrxGvU", FT_Done_MM_Var) STUB("y5xmS-Dbl6U", sceNpIpcGetEvent) +STUB( + "y5yYMmQItlw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEC1EPS8_) +STUB("y6-LmcBLRuk", _ZN7WebCore30rejectPromiseWithThisTypeErrorERN3JSC9ExecStateEPKcS4_) +STUB("y64VGUuAHFk", _ZN7WebCorelsERN3WTF10TextStreamERKNS_20TransformationMatrixE) +STUB( + "y65KX1d6n+8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122GetRankingResponseBodyEEEEEED1Ev) +STUB("y67NuLB0Xpc", + _ZN7WebCore15JSDOMWindowBase34shouldInterruptScriptBeforeTimeoutEPKN3JSC14JSGlobalObjectE) STUB("y6AEzLH6ZXk", sceSpNetResolverCreate) +STUB( + "y6Azzwut0T4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124UpdateMatchDetailRequestEEEEEEC1ERSA_) +STUB( + "y6Ds6fyw8wY", + _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product9setRatingERKNS1_6Common12IntrusivePtrINS3_15ContainerRatingEEE) +STUB( + "y6JG3bkK2tg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEEcvbEv) +STUB( + "y6K7P7+QrgE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEmmEi) +STUB("y6Kl6Jt1Moo", _ZNK3WTF9MediaTime14hasBeenRoundedEv) +STUB("y6KoDPDVjCQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEEppEv) +STUB( + "y6L58-dqZPE", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4initEv) +STUB( + "y6MIzjigX54", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEED1Ev) +STUB( + "y6O40Vz61sE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEEcvbEv) +STUB("y6RZQrRPti0", mono_class_from_name_case) +STUB("y6ZoKj2OtO8", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_19ProductInfoDetailedEEC2ERKS4_) +STUB( + "y6eEmUuBep8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEC1ERS7_) +STUB("y6fVIGl1ilg", _ZN3sce7Toolkit2NP2V212EventsClient12EventDetailsD2Ev) +STUB( + "y6iOFRXNm6Y", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEC2Ev) +STUB( + "y6ieDza2YoY", + _ZN3sce2Np9CppWebApi14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyC2EPNS1_6Common10LibContextE) +STUB("y6kRaKNQgNE", _ZN3JSC7Symbols22isGeneratorPrivateNameE) +STUB( + "y6l9LbrusJk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "y6mbTn0JNLk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE3endEv) +STUB( + "y6mtufRE5JM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEEC2ERSA_) +STUB( + "y6n9Xn9v9aA", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129ConnectionQualityWiredMetrics8fromJsonERKNS_4Json5ValueE) +STUB( + "y6oEtOMCxI8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEC2Ev) +STUB( + "y6q0L3omZgo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEC2Ev) +STUB("y6rgZwIWlmk", udata_swapInvStringBlock_67) STUB("y6sRnKP+WLc", sceUpsrvUpdateCheckDoCheckSystemVersionDown) +STUB("y6u4mEvMfA0", il2cpp_class_instance_size) +STUB("y6v9vaWZC1A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEE7add_refEv) +STUB( + "y6vJnuVFgiQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyEEEEEEaSERKSA_) +STUB("y6xETTqSGWM", _ZN9Inspector21InjectedScriptManagernwEm) +STUB("y7+O6u182Rg", _ZNK3sce2Np9CppWebApi7Matches2V119AdditionalStatistic11getStatsKeyEv) +STUB("y7-9PnwOxIA", _ZN7WebCore8Document8postTaskEONS_22ScriptExecutionContext4TaskE) +STUB("y7FAYefKaGw", outgoing_area) +STUB( + "y7FUfrz4kGI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) STUB("y7JD1gfwyfA", sceNpEntitlementAccessGetGameTrialsFlag) +STUB("y7LneQXMe7E", _ZNK9Inspector14InjectedScript12previewValueEN3JSC7JSValueE) STUB("y7MgGX889Mo", sceVoiceChatRequestCreateGameSessionVoiceChatChannel) +STUB( + "y7NMLxODL18", + _ZN3sce2Np9CppWebApi14SessionManager2V142PutGameSessionsSearchAttributesRequestBody11setBoolean9ERKb) +STUB("y7OjtaGU5Wk", mono_btls_ssl_use_private_key) +STUB("y7RSdNrw2eA", delegate_virtual_invoke_imt_m_19) +STUB("y7SDME7N1Bg", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17SetGameDataResultEE12deepCopyFromERS7_) +STUB("y7UJ6XG5tUI", Java_com_sony_gemstack_org_dvb_application_AppProxyImpl_n_1getState) +STUB("y7Y2k8D6Bv4", _ZN9Inspector24WorkerFrontendDispatchernaEm) +STUB("y7ZM4mdkTrk", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V112ErrorFactory7destroyEPNS3_5ErrorE) +STUB( + "y7ZbpDdUd-U", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEE5beginEv) +STUB("y7aMFEkj4PE", _ZSt15_Xruntime_errorPKc) +STUB("y7qIpQmewS8", _ZThn32_N7WebCore14XMLHttpRequestD1Ev) +STUB("y7uxQXIITME", _ZNK7WebCore25DropShadowFilterOperation14affectsOpacityEv) +STUB( + "y7x1gzR8Jas", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEC2EPS8_) +STUB("y7xm2JcXgOM", + _ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody18getUpdatedDateTimeEv) +STUB( + "y7zi3OGD7YA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEEmmEi) +STUB( + "y8+7EreNqVs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEC2EPKS8_) +STUB("y80IHZ5UxDE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEE3getEv) STUB("y8JFcLacpm0", _sceDepthHeadCandidateTrackerGetInformation) +STUB("y8LNzdPJW6k", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE5beginEv) +STUB("y8PXwxTZ9Hc", _ZNSt14_Num_ldbl_base10has_denormE) +STUB("y8YNNx71uI0", _ZN3JSC2VMD2Ev) +STUB("y8YTG9tKkZU", _ZN7WebCore21DeviceOrientationData6createEN3WTF8OptionalIdEES3_S3_NS2_IbEE) +STUB( + "y8YXt7Y9730", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEE5beginEv) +STUB( + "y8imcaQP2a0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V19JoinStateEE21intrusive_ptr_sub_refEPS7_) +STUB("y8j-jP6bHW4", __subvsi3) +STUB("y8jha02Bsu0", _ZNK3WTF10StringImpl21findIgnoringASCIICaseERKS0_j) +STUB("y8utRZcni8U", _ZN3sce7Toolkit2NP2V24Core5Empty8deepCopyERKS4_) +STUB("y8w4lDQtlAo", _ZN7WebCore20UserGestureIndicatorD2Ev) +STUB("y8zF9ff5Vfo", _ZN7WebCore17FullscreenManager18didEnterFullscreenEv) +STUB( + "y95CSpYO3jo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEC2EPS8_) +STUB("y9AkLN0usik", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead6toJsonERNS_4Json5ValueEb) +STUB("y9CL7tutRKQ", _ZN3WTF12CountingLock10unlockSlowEv) +STUB("y9DXbdhSQ-4", __libunwind_Unwind_GetBSP) +STUB("y9E45vFg2Hw", Java_java_awt_GnmGraphicsEnvironment_init) +STUB( + "y9HSX0yKRMg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestTeamResultsEEEEC2Ev) +STUB("y9LxpxOPY9M", _ZNK7WebCore8IntPoint18constrainedBetweenERKS0_S2_) +STUB("y9OoA+P5cjk", wcrtomb) +STUB("y9Ur6T0A0p8", _FQuad) +STUB("y9Vc1aQH-Vw", _ZNK3sce2Np9CppWebApi7Matches2V123ResponsePlayerStatistic11getPlayerIdEv) +STUB("y9XY6RAx6TU", + _ZNK7WebCore11ImageBuffer9copyImageENS_16BackingStoreCopyENS_18PreserveResolutionE) STUB("y9c6Qx9HKFA", sceBgftServiceIntDebugPlayGoGetPlayGoStatusString) STUB("y9cCHa8L64A", sceFsExternalStorageVerifyMetadata) +STUB( + "y9qaazUDd5k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V513ContentRatingEEEEEEC1ERSA_) +STUB("y9rpICKLMcw", JSObjectMakeTypedArrayWithArrayBufferAndOffset) +STUB( + "y9xaDmjopOw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEE11get_deleterEv) +STUB("yA44W1yuOhQ", _ZN7WebCore11JSDOMWindow17preventExtensionsEPN3JSC8JSObjectEPNS1_9ExecStateE) +STUB( + "yA72c0a5bTY", + _ZN3sce7Toolkit2NP2V212ActivityFeed15getSharedVideosERKNS3_7Request15GetSharedVideosEPNS2_4Core8ResponseINS3_12SharedVideosEEE) +STUB( + "yACjwEY+sJ4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE3endEv) +STUB("yANlCFHmPhw", _ZN3JSC7Symbols17isViewPrivateNameE) STUB("yAPWPJ0yP04", ScePsmMonoIoInstallCallbacks) STUB("yAQNPON4Tko", sceGnmGetPhysicalCounterFromVirtualizedInternal) STUB("yARHEYLajs0", sceNpPartyShowInvitationListA) +STUB("yARaOs411s4", _ZN3WTF6String6numberEy) STUB("yARnQeWzhdM", sceUserServiceGetPartySettingFlags) +STUB( + "yAWOPCczSCs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V110UserTicketEEEEppEi) STUB("yAWUqugjPvE", sceUserServiceGetPlayTogetherFlags) +STUB("yAZ5vOpmBus", __vfprintf) +STUB("yAhHsSMlkw4", jpeg_idct_4x4) +STUB("yAi6H-Mr8nU", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V116TaskAvailabilityEEC1EPS6_) +STUB( + "yAjWOEWBgeo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEC2EPS7_PNS2_10LibContextE) +STUB( + "yAkEH7s6xNs", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser9getoffsetEv) +STUB( + "yAmCHBTGFGY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEC1Ev) +STUB("yAn22GxqrJc", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110PlayerTypeEEC1EPS6_) +STUB("yAna0qELJwU", _ZN3sce7Toolkit2NP15AppSTLAllocatorIiEeqERKS3_) +STUB("yAobGI2Whrg", _ZNSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEC2ERKSt8_Locinfom) +STUB( + "yAtD6UgDFdg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEE3endEv) +STUB( + "yAvJ+oUh7JQ", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEeqERKS9_) +STUB("yAwSbJkN0oI", jio_print) +STUB("yAx+ucBv8Ks", _ZN7WebCore18PlatformTimeRangesnaEmPv) +STUB( + "yAxhGyDIvzg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEED1Ev) +STUB("yB+1wOOpQIU", xmlFreeDoc) +STUB("yB-W95HtJT4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V120PlayerJoinableStatusEEC2Ev) +STUB( + "yB1AQCB9ASI", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEneERKS9_) +STUB("yB1t+hdHNFA", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking17SetGameDataResultEEC2Ev) +STUB("yB3cojJya2g", + _ZN3sce3pss5orbis5input37InputManager_GetAnalogStickModeNativeEPNS2_15AnalogStickModeE) +STUB("yB4QFDBIcRc", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEEC2EPNS2_10LibContextE) +STUB("yB530dMX22E", _ZN7WebCore12EditingStyle8hasStyleENS_13CSSPropertyIDERKN3WTF6StringE) +STUB( + "yB9Rd8ZFtuU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "yBDCsxgLY3M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V110ReputationEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "yBEI+rzE0tU", + _ZN3sce2Np9CppWebApi7Matches2V125RequestTeamResultsFactory6createEPNS1_6Common10LibContextEPKciPNS5_12IntrusivePtrINS3_18RequestTeamResultsEEE) +STUB("yBJgtZBUXc0", mono_ldtoken) +STUB("yBLMmRHYMNA", ucol_greaterOrEqual_67) +STUB( + "yBQluAFUutk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("yBSbIidwuO0", _ZNK7WebCore21ISOTrackEncryptionBox10defaultKIDEv) +STUB( + "yBU60-0pcck", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_12Leaderboards2V18SortModeEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) STUB("yBZdGSpnkHU", sceDebugReadEventForTest) STUB("yBaQ0h9m1NM", sceSystemGestureGetPrimitiveTouchEventByPrimitiveID) +STUB("yBcVZXNgjds", _ZNK3sce2Np9CppWebApi14SessionManager2V112JoinableUser6toJsonERNS_4Json5ValueEb) +STUB("yBeFthDF1Is", _ZN3JSC7Symbols19dollarVMPrivateNameE) +STUB( + "yBi-TsrkBS0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEC1EPS6_PNS2_10LibContextE) +STUB( + "yBkEdD-xjfQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V115SearchAttributeEE5eraseENS2_8IteratorIS6_EERS9_) +STUB("yBlLjtA44w8", _ZN3sce2Np9CppWebApi14SessionManager2V12ToD1Ev) +STUB("yBp4itt5K7s", monoeg_g_strdup_vprintf) +STUB( + "yBrCRP0g7e0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("yBsk1OwTRgY", JVM_GetNanoTimeAdjustment) STUB("yBxn29qtJGA", ScePsmMonoRuntimeSetShuttingDown) +STUB("yByBRIl47TE", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorIlEEEC1ERS6_) +STUB( + "yBySdI1Kwrc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEeqERKSA_) +STUB("yByyc7LWVyo", _ZN7WebCore14MicrotaskQueueC1ERN3JSC2VME) +STUB("yBzQ4LTnp8U", _ZN9Inspector24CanvasFrontendDispatchernaEm) +STUB( + "yC2RRZrHSOw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEEaSERSA_) STUB("yC8lFao8mY4", sceValidationGpuGetErrors) +STUB("yCBKPL04RH0", _ZN7WebCore15GraphicsContext20endTransparencyLayerEv) STUB("yCCsRYlv+5w", sceNpUniversalDataSystemIntRecordArraySetFloat64) +STUB( + "yCDZ--JeA5o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEppEv) +STUB("yCEJIsjIOO8", FT_Set_Var_Design_Coordinates) +STUB( + "yCESHRphxfs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE4sizeEv) +STUB("yCH96l0k5B8", g_path_is_absolute) +STUB("yCIWVaAGicE", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V112UpdateStatusEEC1EPS6_) +STUB( + "yCKCNPDdPdc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) STUB("yCN5HUwLaVU", sceUpsrvUpdateDoUpdate) +STUB( + "yCPNIkdy7v4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "yCRm0PEP5bs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("yCVElwj0FzQ", + _ZN7WebCore18JSHTMLInputElement13visitChildrenEPN3JSC6JSCellERNS1_11SlotVisitorE) +STUB( + "yCYhCmQo+HU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("yCdGspbNHZ8", sys_siglist) +STUB( + "yCi6Ty9mE5Y", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEE3getEv) +STUB("yCiC7AYIYVo", WKViewReplyJavaScriptPrompt) +STUB("yCm5r5A5mYE", _ZThn8_N3sce2np13JsonDocParser12onStartArrayEjj) +STUB("yCm8+Pk+cys", mono_aot_I18N_MidEastjit_code_start) +STUB("yCo3HzKQSts", eglBindAPI) +STUB( + "yCpRRhrFF5M", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEaSERKS9_) +STUB("yCrMjTRLqi4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEE7add_refEv) +STUB( + "yCy94PCgEeg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEcvbEv) +STUB("yCyJ7A+ywp0", + _Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm13SxPerfCounterE20SceRazorGpuBroadcast) +STUB( + "yD+TSgBu+XI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V114SearchOperatorEEEEC1EPS8_PNS2_10LibContextE) +STUB( + "yD-LJhseU0s", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEEEiRNS2_10LibContextEPT_m) +STUB("yD3I2CRcKmw", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V15EntryEEptEv) +STUB( + "yD3kHZV7EYc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ErrorEEEEEED2Ev) +STUB("yD4-QaNSink", FT_Cos) STUB("yD5dVtX3I2s", sceDeci4hDrfpSetOption) +STUB("yD8VgEPHrz0", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountIdC2Ev) +STUB( + "yDBhmjN31Cg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEEE7get_refEv) STUB("yDBwVAolDgg", sceKernelIsStack) +STUB( + "yDD6hBdH3v8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEptEv) +STUB("yDEj826Hp-0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEEptEv) +STUB("yDG0A0GSJX0", _ZN3WTF11emptyStringEv) +STUB( + "yDG3cRg9fgE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEEC2Ev) +STUB("yDIjrzfaDk4", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V18Variable6toJsonERNS_4Json5ValueEb) STUB("yDJ-r-8f4S4", sceNpTrophySystemNetSyncTitles) +STUB("yDLZuz3-X6I", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStatsC2ERS5_) +STUB("yDPuV0SXp7g", __ctzdi2) +STUB("yDTlMc94tkc", _ZN7WebCore8SVGNames9slopeAttrE) +STUB( + "yDW2QM6sGKo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "yDY6XbgoHuU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEmmEv) +STUB("yDZIQ3t5QGE", _ZN23sceMetadataReaderWriter14StorageManagerC1Ev) STUB("yDaWxUE50s0", pthread_mutexattr_getprotocol) +STUB("yDcav8XDhNE", _ZN7WebCore32logMemoryStatisticsAtTimeOfDeathEv) +STUB("yDdbQr1oLOc", _ZNSt8messagesIcED2Ev) +STUB("yDe86KCEP4s", _ZN7WebCore9AnimationC2Ev) +STUB( + "yDfMLEGDphw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEEdeEv) +STUB("yDfugz8JXv0", _ZN3sce7Toolkit2NP2V28Matching4Room5resetEv) +STUB( + "yDl+bUrYW+E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE8pushBackERKS8_) +STUB("yDnwZsMnX0Q", __srget) +STUB( + "yDpZkyQHYFU", + _ZN3sce2Np9CppWebApi12Leaderboards2V120ErrorResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_13ErrorResponseEEE) +STUB("yDpknX+Ixkc", __asan_get_report_access_size) +STUB("yDpnUOiHods", __sce_alloc_params) +STUB("yDx4ChtWlr8", _ZN7WebCore26ContextDestructionObserver16contextDestroyedEv) +STUB( + "yE2GDqAMHwY", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsersC1Ev) +STUB( + "yE2qY7bYIpY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEEptEv) +STUB("yE38ESr-lzs", Java_java_awt_GnmImage_nativeGetWidth) +STUB("yERuWzI3unc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEED2Ev) STUB("yEYXcbAGK14", sceAudio3dSetGpuRenderer) +STUB("yEbJXKxVJJA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEE5resetEPS6_) +STUB("yEe48o1cHZA", + _ZN3sce2Np9CppWebApi14SessionManager2V119PlayerSessionPlayer11setOnlineIdERK13SceNpOnlineId) +STUB( + "yEegvjZ+5aY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("yEfKFT5Ks7g", _ZN4Manx3Ssl9sslctxfunEPvS1_) +STUB("yEfR8cTAifY", _ZN7WebCore14SubframeLoader12allowPluginsEv) +STUB( + "yEi52NScke8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEE5beginEv) STUB("yEiJ-qqr6Cg", sceSaveDataDialogGetResult) +STUB( + "yErbCgbHn6Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEEEC2ERKSA_) +STUB("yF+a1DlKQ1U", searchCommInfoListByKeyAndProtocolNumberWithActivate) +STUB("yF1AOIs530E", mono_aot_System_Xml_Linqplt_end) +STUB("yFAjKLA-+0Y", _ZN3sce7Toolkit2NP30GameCustomDataThumbnailRequestC1Ev) +STUB("yFDNUIA-SjE", mono_bitset_set) +STUB("yFDwjmOf5Ho", mono_aot_Sce_Vsh_Orbis_Bgftunwind_info) +STUB( + "yFESIdtULms", + _ZN7WebCore14DocumentLoader35enqueueSecurityPolicyViolationEventEONS_28SecurityPolicyViolationEvent4InitE) +STUB("yFFYApjZHQg", fuse_session_remove_chan) +STUB( + "yFGb2s4ByxE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("yFJY7Te6ZRQ", glShaderBinary) +STUB( + "yFUlU-ozqr0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEC2EPNS2_10LibContextE) +STUB("yFVdc7AU9CE", _ZN7WebCore9CookieJar12deleteCookieERKNS_8DocumentERKN3WTF3URLERKNS4_6StringE) STUB("yFVnOdGxvZY", scePadSetVibration) +STUB( + "yFVo+k6NC5E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116JoinMatchRequestEEEEEEC1Ev) +STUB( + "yFY+qwyq4EU", + _ZN7WebCore17FrameLoaderClient52dispatchWillDestroyGlobalObjectForDOMWindowExtensionEPNS_18DOMWindowExtensionE) +STUB("yFbiMBfNKnw", Java_com_sony_bdjstack_ti_Database_checkPlayListVersion) +STUB( + "yFeJ6U3p-IQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEaSERKS9_) +STUB("yFpO-JNMJhg", _ZNK7WebCore12TextEncoding7domNameEv) +STUB("yFs8CcUN6CU", internal_reallocalign) +STUB("yFtfUBc5dsc", _ZN4IPMI6Client6Config14MsgQueueConfigC1Ev) +STUB("yFxsCLoBma4", _ZNK7WebCore20TransformationMatrix7mapRectERKNS_9FloatRectE) +STUB( + "yG-Xxdu2F0E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V128RequestTemporaryMatchResultsEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("yG1+UXqztsA", + _ZN7WebCore15JSSVGSVGElement15createPrototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("yG3VRjWUFh8", _ZNK9Inspector22InspectorDebuggerAgent21injectedScriptManagerEv) STUB("yGBvL9qLxNI", scePlayReadyProfileStop) +STUB("yGFPeRo8LME", mono_aot_Sce_Vsh_Orbis_ContentManagerjit_code_start) +STUB("yGII1y64fqE", _ZN3NTF3URLC1EPKc) STUB("yGKn6vdYInc", sceCesMbcsStrToUtf8Str) +STUB( + "yGPGp7mnGmw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEEEptEv) +STUB( + "yGflsUY0vbA", + _ZN3sce2Np9CppWebApi14SessionManager2V155PatchPlayerSessionsSessionIdMembersAccountIdRequestBodyD2Ev) +STUB( + "yGk0WlzXqsk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE5beginEv) +STUB( + "yGkblzIDDM4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V113AttributeTypeEE10setContextEPNS2_10LibContextE) +STUB( + "yGl+lPMsKQU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEEptEv) +STUB("yGoMi6Jtw8Q", searchProtocolInfoListBySock) +STUB( + "yGpIkLpID04", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEE8copyFromERKS9_) +STUB("yGpb4AjIY7I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEC2Ev) +STUB("yGs2NY0kG5E", _ZN3JSC7Symbols39AsyncGeneratorStateCompletedPrivateNameE) +STUB( + "yGunjfYbfCk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE8copyFromERKS9_) +STUB("yGyMlXr7b94", _ZNK3WTF9MediaTimegtERKS0_) STUB("yH-uQW3LbX0", pthread_kill) +STUB( + "yH0QPebkOrI", + _ZN7WebCore21NetworkStorageSession23getHostnamesWithCookiesERN3WTF7HashSetINS1_6StringENS1_11DefaultHashIS3_EENS1_10HashTraitsIS3_EEEE) STUB("yH17Q6NWtVg", sceUserServiceGetEvent) +STUB("yH7aiV+YpZU", _ZN3sce7Toolkit2NP2V26Trophy16UnlockedTrophiesD2Ev) +STUB("yH7i+hXjFTk", _ZN3sce7Toolkit2NP2V24Core8ResponseINS3_18CustomResponseDataEE3getEv) +STUB("yH83vkJ7cEY", _ZNK3sce2Np9CppWebApi11UserProfile2V118GetFriendsResponse15nextOffsetIsSetEv) +STUB("yHASI8VDPMo", _ZN3sce3Xml3Dom8NodeList5clearEv) +STUB("yHE4d2C-Ius", _ZN3WTF13printInternalERNS_11PrintStreamEd) +STUB( + "yHKxkVazVnA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB("yHNzl5vZB0k", mono_profiler_install_gc_moves) +STUB( + "yHPvIuNR1xs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEEaSERKS9_) +STUB("yHQf-R7Y9uA", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V57ProductEEdeEv) +STUB("yHQt8Qf6LRA", _ZN3sce7Toolkit2NP2V211SharedMedia5VideoD1Ev) +STUB("yHRImAkUvpc", + _ZNSt9_FacetptrISt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEE6_PsaveE) +STUB("yHUuMr3FiFw", _ZN7WebCore22ResourceLoadStatistics20reduceTimeResolutionEN3WTF8WallTimeE) +STUB( + "yHW2s7ZgOec", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "yHWHPGmIhz0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE7popBackEv) +STUB("yHZvUA01NKo", _ZN7WebCore4Page37setInLowQualityImageInterpolationModeEb) +STUB("yHcYcXyDo8I", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V324ValidationConstraintInfo6setKeyEPKc) +STUB("yHdEPtBDCVY", _ZN3sce7Toolkit2NP2V28Commerce7Request18DownloadListTargetC1Ev) +STUB( + "yHhJYi42N5w", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEeqERKS9_) +STUB( + "yHiMvrq6bxg", + _ZN7WebCore39cleanHTTPRequestHeadersForAccessControlERNS_15ResourceRequestERKN3WTF7HashSetINS_14HTTPHeaderNameENS2_7IntHashIS4_EENS2_20StrongEnumHashTraitsIS4_EEEE) +STUB("yHiQUEutgJ0", WKPageTryRestoreScrollPosition) STUB("yHl0pPA3rPQ", sceNpManagerIntLoginResetSsoToken) +STUB("yHomqKxhVqk", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V19Bandwidth11unsetGlobalEv) +STUB( + "yHtRqfg7Yq4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEEC2Ev) +STUB( + "yI5Gto2AWzM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEmmEi) +STUB("yI6EdumLZDY", png_set_chunk_malloc_max) +STUB("yI8ZKsn2NmU", _ZN3WTF11ThreadGroup3addERNS_6ThreadE) +STUB("yIGNaksBciY", _ZN3JSC7Symbols14supPrivateNameE) +STUB("yII2DPovCBk", __asan_unregister_globals) +STUB("yIS+nYFfwwY", _ZN7WebCore11MathMLNames13malignmarkTagE) +STUB( + "yIaFKciCsmo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V18RelationEEEE7get_refEv) +STUB("yIan54+8Xp0", JVM_ConstantPoolGetMethodAtIfLoaded) +STUB( + "yIfKB83lFuQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEC2EPNS2_10LibContextE) +STUB( + "yImneaojuCA", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEEEneERKS9_) +STUB("yIn4l8OO1zA", _ZNSt8numpunctIcEC2EPKcmb) +STUB( + "yIqlNvuBOVA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEE5resetEPS6_) +STUB("yIrZrdWAxtc", WKPageCallAfterNextPresentationUpdate) +STUB("yJ-VbwlllSI", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product14publisherIsSetEv) +STUB( + "yJ5HTrwXtxo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE21intrusive_ptr_sub_refEPS9_) +STUB("yJ5aAgI8wSk", _ZN3sce2Np9CppWebApi6Common8IteratorIlEaSERKS4_) +STUB( + "yJCFqZnMunI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE3endEv) +STUB( + "yJFNz4Kn2ig", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS4_INS6_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEE5abortEv) +STUB( + "yJGGZYVHbn4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEEE4sizeEv) +STUB("yJQmnLc1uBU", _ZN7WebCore24JSDeprecatedCSSOMCounter9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("yJS1c8SNwEQ", _ZN3sce7Toolkit2NP2V29Messaging22GameDataMessageDetailsD2Ev) +STUB("yJTRBivRI0M", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_25ChallengeBinaryDataResultEED1Ev) +STUB( + "yJY1em1-Lao", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEiRNS2_10LibContextEPT_m) +STUB( + "yJZInxwzEaI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEED2Ev) +STUB("yJeqoME3WSg", u_fgetc_67) +STUB("yJgSyMHFd3U", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product10unsetLabelEv) +STUB("yJioUrTXJdU", _ZN3sce7Toolkit2NP2V211UserProfile7Request27DisplayGriefReportingDialogC1Ev) STUB("yJw2m6UWDYU", sceNpSessionSignalingGetConnectionInfo) +STUB("yK+A+hJbooE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEE7get_refEv) +STUB("yK-Mn3rbHnE", Java_java_util_zip_ZipFile_initIDs) +STUB( + "yK37Zt4yv6w", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeader46getputPlayerSessionsSessionIdLeaderRequestBodyEv) +STUB("yK3VESxclT0", __libunwind_Unwind_RaiseException) +STUB("yK8R9Noa6Yg", _ZN7WebCore16parseHTMLIntegerEN3WTF10StringViewE) +STUB( + "yKAjfQUF8K0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEcvbEv) +STUB( + "yKBLuYHHlVU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V110ReputationEE5resetEPS6_) +STUB( + "yKDYtdrBNFo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE3endEv) STUB("yKDy8S5yLA0", sceSaveDataTerminate) +STUB("yKJAzD4l2v8", _ZTVN9Inspector17ScriptDebugServerE) +STUB("yKK1wx6dIq0", _ULx86_64_dwarf_read_encoded_pointer) +STUB("yKKINymjSZA", _ZN3JSC8Debugger23setBreakpointsActivatedEb) +STUB( + "yKKONChiYQM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB("yKPZXrni0qw", udatpg_close_59) +STUB( + "yKR8ewswyBw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEixEm) +STUB( + "yKVS3gtRAMM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEEC1ERKSA_) +STUB("yKbc2jUOHUg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V125ChildActivityAvailabilityEEppEi) +STUB("yKesHVodhLA", _ZNK7WebCore15ProgressTracker17estimatedProgressEv) STUB("yKfATNkQZdc", sceSysUtilSendAddressingSystemNotificationWithDeviceId) +STUB("yKpwzbnoERo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEEcvbEv) +STUB("yKr9SM9DnOI", delegate_virtual_invoke_imt_10_p) +STUB("yKsnG1hdcsY", _ZN12video_parser14cVideoOperator18getRelatedFileNameEPKcPPc) +STUB("yKvsrXm+Y0I", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V15ErrorEED1Ev) +STUB( + "yKxhmSdpPgg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEEEmmEi) +STUB("yKy2yHbclT0", FTC_CMapCache_Lookup) +STUB("yKzrXcRncFg", _ZN3sce2Np9CppWebApi6Common6VectorIjE21intrusive_ptr_add_refEPS4_) +STUB("yL8dMdCi4Ys", _ZNSt10filesystem13_Current_set2EPKc) +STUB("yL91YD-WTBc", _Exp) +STUB("yLAMIlW84rc", png_set_bgr) +STUB( + "yLC60jiMELg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEmmEi) +STUB("yLE5H3058Ao", _ZTVNSt8ios_base7failureE) +STUB( + "yLM0Rgpr4Lw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V113ErrorResponseEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "yLMHVPDAdnA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEmmEi) +STUB("yLNS49PfZcE", twop64) +STUB("yLNkraMvdcg", _ZN9Inspector22InspectorDebuggerAgent27didClearAsyncStackTraceDataEv) STUB("yLNm3n7fgpw", sceUserServiceGetImeAutoCapitalEnabled) +STUB( + "yLO7IOH1-8s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEixEm) +STUB("yLObGRgzS3Q", _ZN7WebCore28convertToIntegerEnforceRangeImEET_RN3JSC9ExecStateENS2_7JSValueE) +STUB( + "yLPkWsv8yEo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "yLRE2E7yNSo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V15ErrorEEEEEEaSERKSA_) +STUB( + "yLVVpi4ejjs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("yLYPhN6kRbc", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEEC1Ev) +STUB( + "yLi80C7-+z8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEptEv) +STUB("yLithEbczRA", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession20unsetNonPsnSupportedEv) +STUB( + "yLj-JJHIPl4", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28getResponseInformationOptionEv) +STUB("yLjdW66Ajmo", _ZN3sce2Np9CppWebApi14SessionManager2V116SearchAttributes10setString3EPKc) +STUB("yLkbqb1MhiE", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V111LeaveReasonEEppEv) +STUB("yLmhIcOD8ps", _ZN7WebCore17FrameLoaderClient11allowScriptEb) +STUB( + "yLpIQTwXrnQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("yLpPF0tbn1M", + _ZNK3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V16Rating17getNpServiceLabelEv) +STUB("yLsRvY6gTfM", _ZN3JSC19HeapSnapshotBuilderC2ERNS_12HeapProfilerENS0_12SnapshotTypeE) +STUB( + "yLsfcG+pPtI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120RequestPlayerSessionEE11get_deleterEv) +STUB("yLtMsTWo9zs", _ZNK7WebCore20HTMLTableCellElement9cellIndexEv) +STUB( + "yM+LVI5ik94", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V111GameSessionEE11get_deleterEv) +STUB("yM1RZp9-uvw", _ZN7WebCore8SVGNames19shape_renderingAttrE) +STUB("yM6UFAsJJr4", _ZNK7WebCore16URLDecomposition4hostEv) +STUB("yMDfjiVHygo", mono_trampoline_patch_callsite) +STUB("yMFapP1PGPQ", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsD1Ev) +STUB("yMJadOCdJ4o", jpeg_fdct_4x2) +STUB("yMKfWN2vgrA", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13WhoLikedStoryEEneERKS4_) +STUB( + "yMMjQdc3qbE", + _ZN3sce2Np9CppWebApi14SessionManager2V16Friend17setPlayerSessionsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_25FriendJoinedPlayerSessionEEEEE) +STUB( + "yMRI+sMuv+0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEppEv) +STUB( + "yMRiXk2aN74", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEE5beginEv) +STUB( + "yMSZGW5Pipo", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStats10initializeEPNS1_6Common10LibContextEj) +STUB("yMVmRtyZXOU", __tsan_atomic16_fetch_xor) +STUB( + "yMgUOuTmX2I", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEE5beginEv) +STUB( + "yMhExj5h9QA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15Personalization2V121GetAccessCodeResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) STUB("yMi0xAOpmXM", sceNpUniversalDataSystemEventPropertyArraySetUInt32) +STUB("yMjhTScPufs", unum_open_59) +STUB( + "yMkckeRmsD8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V117LeaveMatchRequestEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("yMlhpCA8I2A", _ZN3JSC7Symbols30promiseOrCapabilityPrivateNameE) +STUB( + "yMoBGKzuoIY", + _ZN3sce2Np9CppWebApi14SessionManager2V127RequestPlayerSessionFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_20RequestPlayerSessionEEE) +STUB("yMosJYTG-QI", _ZN3WTF3URL15hostIsIPAddressENS_10StringViewE) +STUB("yMs5663vXes", _ZN7WebCore21BlobDataFileReference24expectedModificationTimeEv) +STUB("yMsg1aIvVeQ", _ZN7WebCore8Document13createCommentERKN3WTF6StringE) +STUB("yMsrqRsZRLs", _ZN9Inspector14FrontendRouterC2Ev) +STUB("yMwu1M4Yo3w", _ZN12video_parser17cVideoOperatorM4vC1EPKc) +STUB("yN++1o6xQOk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEE7add_refEv) +STUB( + "yN-jOAbNs8E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEE5clearEv) +STUB("yN4VzSIfYfs", ASN1_OBJECT_free) +STUB( + "yN5gElrybuk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) STUB("yN7Jhuv8g24", sceAvPlayerVprintf) +STUB("yN9HIRioBhA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V112UpdateStatusEEC1EPS6_) +STUB("yN9P84N3C9k", _ZNK3WTF9MediaTimeleERKS0_) +STUB( + "yNCPx0FmDx4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE7releaseEv) +STUB("yNDda-gJoqc", UDataMemory_isLoaded_67) +STUB("yNFPPeNhIwk", CommerceDialogBrowseCategory) +STUB("yNHtnupFZR8", _ZN3sce7Toolkit2NP2V27Ranking12FriendsRanksC1Ev) +STUB("yNQd6y3x2bI", + _ZN15AbstractStorage10TwitterAPI5StartERKSbIcSt11char_traitsIcENS_8StlAllocIcEEES7_S7_l) +STUB("yNSTVr+YftI", delegate_virtual_invoke_imt_18) +STUB( + "yNSW7uKP-Cw", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities14UserActivities13setActivitiesERKNS1_6Common6VectorINS6_12IntrusivePtrINS4_8ActivityEEEEE) +STUB("yNo0nYzR-2s", _ZNK7WebCore5Frame15contentRendererEv) +STUB("yNpM5BWhI70", + _ZN3JSC14JSGlobalObjectC1ERNS_2VMEPNS_9StructureEPKNS_23GlobalObjectMethodTableE) +STUB("yNpqI81w8Pg", _ZN3sce7Toolkit2NP7TusDataC2Ev) STUB("yNtYRsxZ6-A", sceHmdInternalGetIpdSettingEnableForSystemService) +STUB("yNvohIAx0Dk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEE3getEv) +STUB( + "yNxRu00sD9c", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE21intrusive_ptr_add_refEPS9_) +STUB("yNz+hz7aqvQ", _ZN3sce7Toolkit2NP2V212NetworkUtils7Request19GetBasicNetworkInfoD2Ev) STUB("yO-ekZ5toaQ", sceShellCoreUtilReportSessionErrorToGaikaiController) +STUB( + "yO-iNSdsu+w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEEC2ERKSA_) +STUB("yO4Azml3bts", mono_set_is_debugger_attached) +STUB("yO4v82K2cS0", + _ZN7WebCore24CoordinatedGraphicsLayer14setCoordinatorEPNS_30CoordinatedGraphicsLayerClientE) +STUB("yO5QMIxMjVE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEC1ERKS7_) STUB("yO6vE0Y9eiY", sceMatFreeRange) STUB("yO7OIU45UnQ", sceShellCoreUtilDeleteDownloadedHidConfigFile) +STUB( + "yO88BZra7WA", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesByUserD2Ev) STUB("yO9JwdRhtSA", sceKeyboardGetKey2Char) STUB("yOBcAzeyqJY", sceSdecGetFrameSwHevc) STUB("yOIO-WByGdE", sceAvControlSetHdcpStatus) +STUB("yOIrzfg6AfM", _ZN3JSC7Symbols24isConcatSpreadableSymbolE) +STUB("yOJC0BpCABE", _ZN7WebCore10ScrollView17setUseFixedLayoutEb) +STUB( + "yOO+Ou+e4M8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB("yOP2KPiQqcQ", ztrans_setTo_67) +STUB( + "yOQ2pnMagzA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEE3getEv) STUB("yOQ8dQ41tvs", scePlayReadyCdmiDestroyMediaKeySystemAccess) +STUB( + "yORnm6N3rGA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB("yOSHgqviJok", + _ZNK3sce2Np9CppWebApi12Leaderboards2V19BoardsApi29ParameterToGetBoardDefinition9getfieldsEv) +STUB("yOTZJwXUKbk", __asan_stack_malloc_2) +STUB("yOUEV9uQzCs", + _ZN3sce2Np9CppWebApi12Leaderboards2V121GetRankingRequestBody20unsetStartSerialRankEv) +STUB("yOUuI64kBuc", + _ZN3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanityD1Ev) +STUB( + "yOcBBGcsn0Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE5beginEv) +STUB( + "yOeiy3SE63k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE5clearEv) STUB("yOfGg-I1ZII", scePthreadRwlockattrInit) +STUB("yOft2w3okT8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEC1ERS7_) +STUB("yOg0rlUCw-E", _ZNK7WebCore29PerspectiveTransformOperation5cloneEv) +STUB("yOiIXPOEmf0", il2cpp_array_class_get) +STUB( + "yOlKNWNFyhY", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB("yOptilQI5nk", jpeg_write_raw_data) +STUB( + "yOqm283NVec", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V121GetRankingRequestBodyEEEEEE11get_deleterEv) +STUB("yOug-gRlxcM", _ZN3sce7Toolkit2NP15AppSTLAllocatorI13SceNpOnlineIdE7addressERKS3_) +STUB("yOyUp3CncVw", WKContextMenuItemSeparatorItem) +STUB("yP1IuW1xeIk", mspace_realloc) +STUB( + "yP1L2gFM5oM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "yP4ORU4pKRg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEaSERKS9_) +STUB("yP8syAvWyWI", _ZNK7WebCore8Settings26authorAndUserStylesEnabledEv) +STUB( + "yPEnZfzEq3o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEE21intrusive_ptr_add_refEPS9_) +STUB("yPL7P+S79ec", + _ZN3sce2Np9CppWebApi14ConnectAccount2V212PartnerTokenC1EPNS1_6Common10LibContextE) +STUB( + "yPOYOEdZCiA", + _ZNK3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountId11getonlineIdEv) +STUB("yPOn3-ezo5o", _ZN9Inspector19InspectorAuditAgent8teardownERN3WTF6StringE) +STUB("yPPtp1RMihw", asinhf) +STUB("yPQg5zkuE+s", _ZN7WebCore24StorageNamespaceProviderD1Ev) +STUB("yPRGiJGWA-4", _ZN3WTF13ReadWriteLock10readUnlockEv) +STUB( + "yPUjdnIA8qY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEEEC1Ev) +STUB( + "yPUq8tM6izQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEEppEv) +STUB("yPWUl2lDWeo", ucol_setStrength_59) +STUB("yPZ38ODrJOQ", _ZN3sce2Np9CppWebApi13InGameCatalog2V55Error12unsetMessageEv) +STUB("yPe1oduOM7s", _ZN3JSC7JSArray4pushEPNS_9ExecStateENS_7JSValueE) +STUB( + "yPm15kaFxYA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEC2Ev) +STUB("yPmQcnrgR2Y", _ZN3sce2np13JsonDocParserC2EP16SceNpAllocatorExPK7JsonDef) +STUB("yPni3AwPKpg", _ZN7WebCore11FileChooserD2Ev) +STUB( + "yPog5CehZdY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEEcvbEv) +STUB( + "yPq9QkK5B0E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE10setContextEPNS2_10LibContextE) +STUB( + "yPshar3J8aI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEE7get_refEv) +STUB( + "yPtcydcJxiY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEC1EPS9_) +STUB("yPuxTL2GJO0", EVP_PKEY_id) +STUB("yPvrI4y0GKA", + _ZNK3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayer14getCustomData1Ev) +STUB("yQ7SgQu4L98", curl_easy_pause) +STUB( + "yQ8js9JjOx4", + _ZN9Inspector25TimelineBackendDispatcher4stopElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("yQ9IKIbwzeg", _ZN7WebCore16MIMETypeRegistry23getMIMETypeForExtensionERKN3WTF6StringE) STUB("yQCPXYQA5E0", SceDrfpChkRecvBuf) +STUB( + "yQIGByF9KWA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "yQL6+uRJKgc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE5beginEv) +STUB( + "yQQEs8lAKDQ", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE7releaseEv) +STUB("yQU7XYO5JjQ", _ZN7WebCore7RunLoop3runEv) +STUB("yQYqKNrMU2k", u_setMemoryFunctions_67) +STUB("yQed09jA3VA", FcConfigReference) +STUB("yQi7BnTuGFc", _ZN12Mp4Retriever14processMoovBoxEv) +STUB("yQlTradAr2U", _ZN3sce7Toolkit2NP2V210Tournament12GenericEventD1Ev) +STUB("yQp6cDDiyDE", _ZN3JSC8Debugger19activateBreakpointsEv) +STUB( + "yQqFxfLr6uA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEC1ERKS7_) +STUB( + "yQwzgh8mgLQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE5emptyEv) +STUB( + "yQyV-gQaoMs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEED1Ev) +STUB("yQzdmwjI3es", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V113SubtaskStatusEEptEv) +STUB("yR+B+74egrE", WKBundlePageDidEnterFullScreen) +STUB("yR-ZtgXKFe0", JSDebuggerStop) STUB("yR0qKU-abqY", sceCesRefersUcsProfileKsX1003Tilde0x7e) +STUB( + "yR1PA8ywh58", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) STUB("yR3k0vfjKII", sceAudioLatencyEstimationRelease) STUB("yRC0ADN9ssU", sceCesMbcToUtf16) +STUB("yRFIwCMIaIA", + _ZThn16_N9Inspector21InspectorRuntimeAgent25enableControlFlowProfilerERN3WTF6StringE) +STUB( + "yRKzWjq+Io4", + _ZN3sce2Np9CppWebApi14SessionManager2V132RequestCreatePlayerSessionPlayer15setPushContextsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_24PlayerSessionPushContextEEEEE) +STUB("yRMZVl0eX7w", _ZN7CoreIPC15StringReference4Hash4hashERKS0_) +STUB( + "yRNxUcClBvg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEED1Ev) +STUB( + "yRPJ5VPq3dk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEixEm) +STUB( + "yRTFOAOGotw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEE10setContextEPNS2_10LibContextE) +STUB( + "yRUhpn0cj90", + _ZN3sce2Np9CppWebApi14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyC2EPNS1_6Common10LibContextE) +STUB("yRWxhEAt52g", _ZN3WTF6StringC2EPKhj) +STUB( + "yRYYJgw0Wmw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("yRg6c26uLlQ", _ZN12video_parser10cVideoPath10GetDirNameEi) STUB("yRkAXdREMgo", sceVencCoreMapTargetMemory) +STUB("yRqTU7pcIVU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEEC2EPKS6_) +STUB("yRsuqVarybc", _ZN7WebCore6Path2DC1ERKNS_4PathE) +STUB("yRv6gNM1DHo", mono_aot_ReactNative_Modules_Vsh_Gct_Telemetryplt_end) +STUB("yS-FJI-37oc", tt_cmap0_class_rec) STUB("yS0Iib8DE+U", sceCesJisX0208ToSJisCode) +STUB("yS0XpsJEDzo", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEC1Ev) +STUB( + "yS2YSORVIxQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEC2EPS8_) +STUB( + "yS2fJYNRpeg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEE5clearEv) +STUB( + "yS7mdMnsD9w", + _ZN7WebCore20UserGestureIndicatorC1EN3WTF6RefPtrINS_16UserGestureTokenENS1_13DumbPtrTraitsIS3_EEEENS3_12GestureScopeENS3_21IsPropagatedFromFetchE) +STUB("yS8U2TGCe1A", nanosleep) +STUB("ySDXDVe96yQ", _ZN8meta_gen13JpegRetriever20JPEGPROM_YEAR_OFFSETE) +STUB( + "ySDeVHK5Fao", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V317PsnWebError_errorEEEEC1Ev) +STUB("ySGKPZACkls", _ZTVN9Inspector21InspectorConsoleAgentE) +STUB( + "ySGPkBOd80g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE7popBackEv) +STUB("ySHH5B166D4", JVM_GetCPFieldSignatureUTF) +STUB( + "ySI-EmPkTpo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEmmEv) +STUB( + "ySMN+4MzG2E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEC2EPNS2_10LibContextE) STUB("ySN+Pa+NUGI", sceNpUniversalDataSystemIntCheckNetSyncTitles) +STUB("ySX0YQHJEsg", u_cleanup_67) +STUB("ySed+OBAs-U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEC1ERS7_) +STUB("ySfCAURn-Uc", _ZNK7WebCore11RenderStyle5colorEv) STUB("ySh2GsVQTzs", sceNpTrophySystemWrapGetTitleDetails) +STUB( + "ySiMqDSHx20", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEEiRNS2_10LibContextEPT_m) +STUB("ySnPSSkF4F8", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_13TusDataOutputEE3getEv) +STUB( + "yStLVN2pCBI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) STUB("yStTYSeb4NM", sceFontGraphicsUpdateRotation) +STUB( + "ySzGqKQg3IY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEppEi) +STUB("yT7UConFh4U", _ZN3sce7Toolkit2NP2V29Messaging25GameDataMessageAttachment8deepCopyERKS4_) STUB("yTC1T2lLJwY", sceMbusGetDeviceInfo) +STUB("yTCmRbF6f4A", _ZN7WebCore12RenderObject16paintingRootRectERNS_10LayoutRectE) STUB("yTEaoBaswOU", sceDataTransferRequestLaunchPS4) +STUB( + "yTFMyG4xpRY", + _ZN3sce2Np9CppWebApi11Matchmaking2V115LocationFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_8LocationEEE) +STUB( + "yTGqsDpNQkg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEEE3endEv) +STUB( + "yTKz3MwrArM", + _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody11setLocationERKNS1_6Common12IntrusivePtrINS3_8LocationEEE) +STUB( + "yTX95l0C2Ug", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("yTZX5enqmeg", _ZN7Nicosia16SceneIntegration17createUpdateScopeEv) +STUB( + "yTf-J3bhWbA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "yTfhT-GVfb0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEaSERS8_) +STUB( + "yTiB54qW4EY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEppEv) STUB("yTj62I7kw4s", sceKernelPreadv) +STUB( + "yTr9SdtKxg8", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V212ProfanityApi26ParameterToFilterProfanity9getlocaleEv) +STUB("yU1gxF6BVDM", mono_aot_System_Resources_ResourceManagerjit_got) +STUB( + "yU4-BCjWhHo", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUser17setnpServiceLabelEj) +STUB("yU4Dlx9Wgtk", _ZN7WebCore21MediaRecorderProvidernwEm) +STUB("yU4Ev02ViDc", _ZN9Inspector15RemoteInspector12stopInternalENS0_10StopSourceE) +STUB("yU6S1LkjfnU", X509V3_EXT_print) +STUB("yU7JH4JWypE", _ZN7WebCore9HTMLNames10ondragAttrE) +STUB("yU8y1LOWdq4", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariableC1Ev) +STUB("yU96LVMP6Ls", _ZN7WebCore29PerspectiveTransformOperationD1Ev) STUB("yUBESvCCJ4I", sceAgcCbSetShRegistersDirectGetSize) +STUB("yUEiOjyQK2w", AacsUpdateKeyArea) +STUB("yUEkCHmTWtI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEixEm) +STUB("yUFawTfTM5c", _ZNSt15basic_streambufIcSt11char_traitsIcEE7_UnlockEv) +STUB( + "yUHQZr36wko", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "yUNLlWKRF4U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("yUSPR-cbjTk", _ZN7WebCore17NowPlayingManager25clearNowPlayingInfoClientERNS0_6ClientE) +STUB( + "yUSeijS5jMg", + _ZN7WebCore11DisplayList16DrawLinesForTextC1ERKNS_10FloatPointERKNS_9FloatSizeEfRKN3WTF6VectorIdLm0ENS8_15CrashOnOverflowELm16ENS8_10FastMallocEEEbb) +STUB("yUU8KDyU5Xw", _ZN3WTF14FileSystemImpl18makeAllDirectoriesERKNS_6StringE) +STUB("yUUbHmWz8uA", _ZN7WebCore10JSLocation15subspaceForImplERN3JSC2VME) +STUB("yUYFq2ATAwc", _ZTVN7WebCore11DisplayList11DrawPatternE) +STUB( + "yUbA7XPfKkk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEE7add_refEv) +STUB("yUd2ukhZLJI", SSL_findConnectionInstance) +STUB("yUfIPssm6A0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEaSERKS7_) STUB("yUh0BIPbhVo", sceLncUtilGetEventForDaemon) +STUB("yUi+qT877AI", _ZStL5rsfunRSt8ios_baseNSt5_IosbIiE9_FmtflagsE) +STUB( + "yUiSujeW4CA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEEC1EPKS8_) +STUB("yUjzhXw23N0", _ZNK7WebCore6Editor13canEditRichlyEv) +STUB("yUkFDbw+X1M", mono_ldstr) +STUB("yUlNeIZTAQo", uplrules_openForType_59) +STUB( + "yUp7Z6maIa4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEptEv) +STUB("yUtW5ySnfH8", ucnv_io_stripEBCDICForCompare_67) +STUB( + "yUuXnzgOUYU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE5beginEv) +STUB( + "yV0W1GTF-C8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("yV0oIJX5YZE", mono_aot_System_Transactionsunwind_info) STUB("yV1vwsw1S3g", ScePsmMonoDisableJitTimeLog) +STUB("yV6Un4C8GCk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V14TaskEEEEEEC2ERKSA_) +STUB( + "yVGMkWZkIpI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "yVIrerE2nO8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEEptEv) +STUB( + "yVJZuJMAmYw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEmmEi) +STUB( + "yVLdV+3XdsI", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB( + "yVTSX5OGO1o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEC1EPS8_) +STUB("yVUXlSyV1wU", _ZN7WebCore11DisplayList11FillEllipseD1Ev) +STUB("yVUZbAd5TUw", initDecidBootEvf) STUB("yVXOAcXkzoo", sceDevUsbIsHostConnected) +STUB("yVYgf1C7v3E", mono_assembly_name_get_version) +STUB("yVcJhDCpuVw", _ZN3sce2Np9CppWebApi7Matches2V119RequestInGameRoster8fromJsonERKNS_4Json5ValueE) +STUB( + "yVe2olNlNNQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEEE7get_refEv) STUB("yVg07UrVewU", sceBgftServiceIntDebugPlayGoRevertToFullState) +STUB( + "yVjzB0lL-hg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEmmEi) +STUB( + "yVkTiH5nMPA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB("yVkxiIdHpLs", _ZTVN7WebCore29PerspectiveTransformOperationE) +STUB("yVobQd4t+iA", u_setAtomicIncDecFunctions) +STUB("yVsSKO6nVTE", + _ZN3sce2Np9CppWebApi7Matches2V120ResponseMatchResults8fromJsonERKNS_4Json5ValueE) +STUB("yW-duefVP+k", g_strjoin) STUB("yW5gfrDFAoc", sceCompositorSetLocalStallCommand) +STUB("yW93VPfQoMs", mono_aot_Sce_Vsh_SysfileUtilWrapperunwind_info) +STUB( + "yW9JYYV0WZM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEE7get_refEv) +STUB("yW9cQ5YLYmw", _ZN7bmalloc6IsoTLS21s_mallocFallbackStateE) +STUB( + "yWBB0IkS0Mo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEEcvbEv) STUB("yWEHUFkY1qI", sceNpTusGetDataA) +STUB( + "yWGXnAbRGtc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEEC1ERSA_) +STUB( + "yWHFYKWFaNI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V15ErrorEEEEEEC1Ev) STUB("yWMBHiRdEbk", sceNpManagerIntLoginGetUserId) +STUB( + "yWN30Y2iUE8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEEEcvbEv) +STUB("yWNs0Vy8yU8", _ZN3sce7Toolkit2NP15SnsPostFacebookC2Ev) +STUB("yWQvBLnFWLs", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V115CompetitionTypeEEdeEv) +STUB("yWRnSRBGcto", YGLogWithConfig) +STUB("yWUnSM8xJP8", uprv_decNumberShift_67) +STUB("yWVYb3JCjvs", GCC_except_table199) STUB("yWcto7E39+k", sceNpAsmClientGetAppId) +STUB("yWefaqPBkOE", _ZN9Inspector22RemoteInspectionTargetaSERKS0_) +STUB( + "yWfkUKBTDSc", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEC2EPS8_) +STUB("yWgylTZwel0", _ZN3JSC7Symbols44AsyncGeneratorStateSuspendedStartPrivateNameE) +STUB("yWmo+fmo4jM", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V110ResultTypeEEdeEv) +STUB("yWnTOhbW6js", EC_KEY_get0_group) +STUB("yWtcXBVlsfs", _ZN3sce7Toolkit2NP2V212ActivityFeed5Story20USER_COMMENT_MAX_LENE) +STUB("yWzaLZyKagc", ulocdata_getExemplarSet_67) STUB("yX-TpbFAYxo", sceUserServiceGetGlsBcTitle) +STUB("yX0iynOfQOQ", _ZN3sce7Toolkit2NP2V28Matching7Request13GetAttributesC2Ev) +STUB( + "yX206D348Lc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseMatchPlayerEEEEptEv) STUB("yX8qSFmkiyc", sceNpManagerIntClearParentalControlInfoSubAccount) +STUB("yX91W3884fA", _ZN7WebCore14DocumentLoader22cancelMainResourceLoadERKNS_13ResourceErrorE) +STUB("yX9ISVXv+0M", _ZN3sce2np4CondD1Ev) +STUB("yXCT9kMl9bE", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEEcvbEv) STUB("yXJlgXljItk", sceNpTrophySystemDebugUnlockTrophy) +STUB("yXMjXN--3rY", _ZN3sce2npneERKNS0_4TimeERK10SceRtcTick) +STUB("yXPJ8Gm2f0M", GCC_except_table115) STUB("yXefJHaH0Kc", sceFsUmountTrophyData) +STUB("yXi5Jl-4kuw", _ZNK3sce2Np9CppWebApi6Common9RefObject11GetRefCountEv) +STUB("yXn9vfYK9wc", _ZN7WebCore5Frame27resizePageRectsKeepingRatioERKNS_9FloatSizeES3_) +STUB( + "yXr5aFlHz1I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEE6resizeEj) +STUB( + "yXsv06uW7Us", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEEC1Ev) STUB("yXvfR+AcgaY", sceUserServiceGetParentalMorpheus) +STUB("yXwC3k7IkHE", cval) +STUB("yXzWWF0i02Q", ucnv_getStandard_67) +STUB( + "yY7vYc6-8Qk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V517ContentDescriptorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "yY8+5WNb3V4", + _ZN3sce2Np9CppWebApi14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBody8fromJsonERKNS_4Json5ValueE) +STUB( + "yYBVvXPDfls", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEixEm) +STUB("yYC621tqYd8", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIfEEEaSERKS6_) +STUB("yYIymfQGl2E", _ZN10__cxxabiv121__vmi_class_type_infoD2Ev) +STUB( + "yYJS5mzuwZM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEC2Ev) +STUB("yYJgK8mLxt4", Java_java_awt_GnmGraphics_nativeFillOval) STUB("yYPYU5GS1to", sceClKernelWaitEventFlag) +STUB("yYPii65uHyw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEE7get_refEv) +STUB( + "yYTGHr7OqtY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE8copyFromERKS9_) +STUB("yYiYypRtAEg", _ZN3JSC7Symbols32asyncGeneratorResolvePrivateNameE) STUB("yYiv7rqRorw", sceDebugIpmiGetChannelInfo) +STUB("yYk819F9TyU", _ZSt8_XLgammad) +STUB( + "yYlMVp1bLC0", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_20NpSessionInformationENS1_15AppSTLAllocatorIS5_EEEE17getAdditionalInfoEv) +STUB( + "yYlUhUgN8+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("yYmbZk8UBzM", _ZN7WebCore9HTMLNames8stepAttrE) STUB("yYmiiGW0jfk", sceAppInstUtilGetDataDiscCopyProgress) +STUB( + "yYoliAl9bR4", + _ZNK3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_13FriendsOfUserENS1_15AppSTLAllocatorIS5_EEEE3getEv) +STUB( + "yYu0KcuuvPQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "yYwWgFJAmAk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEC2ERKS7_) +STUB("yYwzNjbdtrk", __asan_report_store2) +STUB("yYzno8-lK3g", _ZN7WebCore6Editor13performDeleteEv) +STUB( + "yZ+9sTX9F6I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("yZ+xfcqaPFQ", + _ZN7WebCore11DisplayList8SetStateC2ERKNS_20GraphicsContextStateEN3WTF9OptionSetINS2_6ChangeEEE) +STUB("yZ4EJ0rUh9c", png_progressive_combine_row) +STUB( + "yZ5pk4BxujI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE5abortEv) +STUB("yZ6tARqyAas", _ZN7WebCore21MediaRecorderProviderC1Ev) +STUB("yZ8MpxQizWM", WKOpenPanelParametersGetAllowsDirectories) +STUB("yZ9-GqpKktw", WKPageLoadPlainTextStringWithUserData) +STUB( + "yZA4dYfnPvo", + _ZN3sce2Np9CppWebApi14SessionManager2V136UsersPlayerSessionsInvitationForReadC2EPNS1_6Common10LibContextE) +STUB("yZAHahM6ssQ", _ZN7WebCore14JSWebAnimation14finishCreationERN3JSC2VME) +STUB("yZEzHFP7Z-Y", _ZN3JSC8DebuggerC2ERNS_2VME) +STUB("yZJAEU9jvAE", _ZN3JSC19ArrayBufferContentsC2Ev) +STUB("yZJDPmY5cjg", _ZN3JSC7Symbols26stringSplitFastPrivateNameE) +STUB("yZJHi07ZdFY", GCC_except_table96) +STUB( + "yZXHTizv-14", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEixEm) STUB("yZZX3eafqV4", sceCustomMusicAudioOutGetVolume) +STUB( + "yZbyRCr2fNU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEEcvbEv) +STUB("yZl+ktKJ1TY", mono_aot_Sce_Vsh_Sticker_StickerLibAccessorunwind_info) +STUB("yZmHOKICuxg", _ZTIN6Dinkum7threads10lock_errorE) +STUB("yZnj69haxj8", jpeg_write_tables) +STUB( + "yZp3q2b8yL8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEE11release_refEv) +STUB( + "yZt6EEkDSIw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEptEv) +STUB("ya+s8zGxVQQ", _ZN3sce2np4NpIdD2Ev) +STUB( + "ya10xz-PpUs", + _ZNK7WebCore14ScrollableArea37visibleContentRectIncludingScrollbarsENS0_26VisibleContentRectBehaviorE) +STUB("yaBlj3xh9TA", _ZN9Inspector38ScriptProfilerBackendDispatcherHandlerD0Ev) +STUB("yaFXXViLWPw", opterr) +STUB( + "yaGmh0EBpWo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEEC2Ev) +STUB("yaIK6PiubAE", + _ZN3sce2Np9CppWebApi7Matches2V120ReportResultsRequestC2EPNS1_6Common10LibContextE) +STUB( + "yaJz-k6gPfs", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("yaLoGJ4WXyc", _ZNK3sce2Np9CppWebApi7Matches2V121ResponsePlayerResults11getPlayerIdEv) +STUB( + "yaQWsOMQVG8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEE11get_deleterEv) STUB("yaRL7i-Vkng", sceBgftServiceIntDebugDownloadRequest) +STUB( + "yaScMU9oawA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEC2EPS6_PFvS8_EPNS2_10LibContextE) STUB("yaVAdLDxUj0", sceNetConfigSetDefaultScope) +STUB( + "yaXHW69e2uE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE3endEv) +STUB("yafuTC2QBYE", _ZNK3sce2np13JsonArrayImpl9allocItemEv) STUB("yah8Bk4TcYY", scePadSetShareButtonMaskForRemotePlay) +STUB("yapg7kJD7IY", _ZNK3JSC6JSCell9getStringEPNS_14JSGlobalObjectERN3WTF6StringE) +STUB("yaqRzTPg758", _ZN7WebCore8SVGNames14font_styleAttrE) +STUB( + "yas5CjDRQb4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEE7get_refEv) +STUB( + "yat3lJ+1sXA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEEEC1Ev) +STUB( + "yauCGpmXrIs", + _ZN3sce2Np9CppWebApi6Common10LibContext18destroyTransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS5_INS7_9RecordApi30RecordLargeDataResponseHeadersEEEEEiRNS2_19UpStreamTransactionIT_T0_EE) +STUB("yawdym+zDvw", sched_setparam) STUB("yb2cRhagD1I", sceGnmDrawInitDefaultHardwareState350) +STUB("yb9iUBPkSS0", fdimf) +STUB("yb9tILRzD1k", uloc_minimizeSubtags) +STUB("ybBvkcrRCOk", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11UserProfile2V110AvatarSizeEE8pushBackERKS6_) +STUB("ybDnyDzHef4", mono_aot_Sce_Facebook_CSSLayoutjit_code_start) +STUB( + "ybGfaeB5jDg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEEcvbEv) +STUB("ybJdNCerw80", mono_aot_Sce_Vsh_Sl2_Sl2Clientunbox_trampoline_addresses) +STUB("ybJfgvrAMZY", _ZNK3JSC8JSObject8toStringEPNS_9ExecStateE) +STUB("ybWIaZPqV9Q", mono_metadata_methods_from_property) +STUB( + "ybZT2YAMoZ4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V214PSNError_errorEEEEC1EPS8_) +STUB( + "ybgXBlCu3y4", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody14integer10IsSetEv) +STUB("yblI0ggG0Sk", _ZN7WebCore9HTMLNames16webkitspeechAttrE) +STUB( + "ybm5WtpB-bs", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V127ConnectionQualityPropertiesEEEEEEcvbEv) +STUB("ybn35k-I+B0", _ZSt13_Cl_charnames) +STUB("yc-vi84-2aE", _ZN6Dinkum7codecvt10_Cvt_checkEmm) +STUB("yc1XEzBopCw", utext_openConstUnicodeString) +STUB("yc56OLM15Y0", WKBundleGetMemoryCacheStatistics) +STUB("yc6+6xulIOs", uhash_compareChars) +STUB("yc6frp5gq4w", _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V127ConnectionQualityPropertiesD1Ev) +STUB( + "yc7kZNvtoI8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEptEv) +STUB( + "yc8BugX7O7M", + _ZN3sce2Np9CppWebApi14SessionManager2V138JoinedPlayerSessionWithPlatformFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_31JoinedPlayerSessionWithPlatformEEE) +STUB("ycB339rTvzI", _ZN3JSC12SmallStrings24singleCharacterStringRepEh) +STUB( + "ycF0e9jpXEQ", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi23ParameterToDownloadData17hasnpServiceLabelEv) +STUB( + "ycF9Yobuq3U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEE8copyFromERKS9_) +STUB( + "ycHpTCCMKWA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V128RequestTemporaryMatchResultsEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "ycKawlErthk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEE11release_refEv) +STUB("ycMCyFmWJnU", _Xp_addx) +STUB("ycSZmq4JInA", _ZN7WebCore16DatabaseProviderC2Ev) +STUB( + "ycSfM5Dv5dU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorINS2_6StringEEEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("ycTK-Kln6O0", _ZN7WebCore24MatrixTransformOperationD2Ev) +STUB( + "ycUK6xxNJ58", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEC1EPNS2_10LibContextE) STUB("ycUmaLtD3Mo", sceDebugIpmiGetSessionKidList) +STUB( + "ycV2YI0oP58", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113RemovedPlayerEEEEC1EPS8_) +STUB( + "ycVDqGptJeQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEEEE21intrusive_ptr_add_refEPS9_) +STUB("ycfSfwLb+hE", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities8ActivityC2EPNS1_6Common10LibContextE) +STUB("ycfT7v8QTaQ", _ZN3JSC7Symbols25dateTimeFormatPrivateNameE) +STUB("ycgIs7zcXBs", uprv_eastrncpy) +STUB("ycjIR9LmD5g", _ZN7WebCore14LoaderStrategy40networkMetricsFromResourceLoadIdentifierEm) +STUB("ycjO5ZqWmzg", _ZN7WebCore8SVGNames30glyph_orientation_verticalAttrE) +STUB("yckyiVrQ-jU", ucnv_detectUnicodeSignature_67) +STUB( + "ycnljgMIQEE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEplEm) STUB("ycodiP2I0xo", sceGameLiveStreamingSetPresetSocialFeedbackCommands) +STUB( + "ycqAxxqt0hU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEptEv) +STUB("ycxHHEa11OI", _ZN3WTF11StackBounds32currentThreadStackBoundsInternalEv) +STUB("yd+Vw-Wm2VI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEEaSERS9_) +STUB("yd8DxOWMHuU", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi29ParameterToCreateGameSessionsaSERS5_) +STUB( + "ydCOXw3Ia-w", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V112NonPsnLeaderEEEEEE3getEv) +STUB("ydDzmMXQ6Ns", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching12RoomPingTimeEE3setEv) STUB("ydF+WuH0fAk", sceFontRendererSetOutlineBufferPolicy) +STUB("ydF4H0hkWJI", _ZN7WebCore23ApplicationCacheStorage16deleteAllEntriesEv) +STUB("ydHbnzAObIs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE4sizeEv) +STUB("ydOyL8ejcOk", AnnotateMemoryIsUninitialized) +STUB( + "ydP2siqj6dE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE7reserveEi) +STUB("ydPWu5RLWT4", _ZN3sce7Toolkit2NP2V212ActivityFeed5MediaD2Ev) +STUB("ydQbQdaCiiQ", uscript_resetRun_67) +STUB( + "ydRVLHgtCTw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEppEi) +STUB("ydYhl73f9Tg", _Ctype2) +STUB( + "ydaUojfUa70", + _ZN3sce7Toolkit2NP2V28Commerce21displayCheckoutDialogERKNS3_7Request21DisplayCheckoutDialogEPNS2_4Core8ResponseINS8_5EmptyEEE) +STUB("yddEedgQS8s", _ZN3sce7Toolkit2NP2V210Tournament20OneVsOneMatchDetailsC2Ev) +STUB( + "ydkhuCA5xss", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEEEneERKS9_) +STUB("ydn0oek+7Vw", _ZN7WebCore8SVGNames11versionAttrE) +STUB("ydpMi1jbcqw", uprv_decNumberFromString_67) +STUB("ydppzeaHCGY", _ZNK7WebCore19ResourceRequestBase13httpUserAgentEv) +STUB("ydvXuVZjWJE", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V111LeaveReasonEEC2Ev) +STUB( + "ydvwIA45F2g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEC1Ev) +STUB( + "ydxGcCUNQPo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEC1EPS6_PNS2_10LibContextE) +STUB("ydxMtwwv2Rg", _ZN3sce7Toolkit2NP2V211SharedMedia7Request9GetVideosD2Ev) +STUB( + "ydzVilv4a+U", + _ZN7WebCore8Document18createNodeIteratorERNS_4NodeEmON3WTF6RefPtrINS_10NodeFilterENS3_13DumbPtrTraitsIS5_EEEEb) +STUB( + "ye-ZcEFhvLc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEE5resetEPS6_) +STUB( + "ye2BkPJvC9A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE5clearEv) +STUB( + "ye34mG6AIq0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiErrorResponseEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("ye3MzDSYACw", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V511ContentTypeEEC1EPNS2_10LibContextE) +STUB("ye4sPvqyPfM", _ZN15AbstractStorage13TwitterFolderD2Ev) +STUB( + "yeAsPEQj05M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEEC2EPKS8_) +STUB("yeDn+BX34wc", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13WhoLikedStoryEE7destroyEPS3_) +STUB("yeDwxm1ilhQ", _ZNK7WebCore12RenderObject23absoluteBoundingBoxRectEbPb) +STUB( + "yeHn2AyCGWQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEEC2ERKSA_) +STUB("yeL7tJilPGk", + _ZN7WebCore15JSFetchResponse15createStructureERN3JSC2VMEPNS1_14JSGlobalObjectENS1_7JSValueE) +STUB( + "yeN7opkDfDc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEED2Ev) +STUB( + "yeO1vEk64K8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEC2EPS8_) +STUB( + "yeO5ylLUV9E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEC2EPS6_PNS2_10LibContextE) STUB("yeQKjHETi40", sceGameLiveStreamingGetSocialFeedbackMessagesCount) +STUB("yeRcOaMeUE0", _ZN9Inspector22InspectorDebuggerAgent19clearExceptionValueEv) +STUB("yeT4SlbsVMw", fuse_register_module) +STUB( + "yeTzx6km0tI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V13MmrEEEEC1Ev) STUB("yeW8YJ4T7K4", sceKernelSuspendSystem) +STUB( + "yeaU+oXzM6I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V117ConnectionQualityEEEED1Ev) +STUB( + "yebSn3d0cYA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE4sizeEv) +STUB( + "yecMG2gN3Rg", + _ZN3sce2Np9CppWebApi12Leaderboards2V129GetRankingResponseBodyFactory7destroyEPNS3_22GetRankingResponseBodyE) +STUB( + "yenHmkeQGLY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEED1Ev) +STUB("yeo+OavFtlE", u_memcmpCodePointOrder_67) +STUB("yeq+5kkY8uM", ipio2) +STUB( + "yeqN79rgBhE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("yet584Rwd64", uprv_ebcdicFromAscii) +STUB( + "yetnrTkZE+g", + _ZN7WebCore7Element34setAttributeWithoutSynchronizationERKNS_13QualifiedNameERKN3WTF12AtomicStringE) +STUB("yf-ptW9lec0", _ZN8meta_gen14ImageRetriever19IsImageModeRGBA8888E9ImageMode) +STUB( + "yf28KWKEPaU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "yf3mNtD01vo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEEEptEv) +STUB("yf4ONvspEfI", _ZN7WebCore16MIMETypeRegistry26getSupportedImageMIMETypesEv) +STUB("yf7TAkcauE8", mono_btls_x509_name_hash) +STUB( + "yfB+iNO-SPA", + _ZN3sce3pss4core7imaging4impl5Image9SaveAsJpgEPKcPKvjRKNS3_11ImageExtentENS3_9ImageModeEjbPNS1_6memory13HeapAllocatorEi) +STUB( + "yfC0KhMjXZw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "yfDcb4yzWGM", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_11Matchmaking2V18PlatformEE6insertENS2_13ConstIteratorIS6_EERKS6_RS9_) +STUB("yfDdRikXhic", _ZN3JSC18IncrementalSweeper12stopSweepingEv) +STUB("yfEC9RapuPg", mono_aot_Sce_Vsh_KernelSysWrapperunbox_trampolines) +STUB( + "yfJeWzTTP+c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14IdentityMapper2V333PsnWebError_error_missingElementsEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "yfM7279lnTU", + _ZN9Inspector25DebuggerBackendDispatcher28setPauseOnDebuggerStatementsElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("yfNiwy8p5Ds", curl_mime_filename) +STUB("yfNlvcUnAbI", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_13InGameCatalog2V510AnnotationEE3endEv) STUB("yfNwXqOshk0", sceRegMgrLogPull) +STUB( + "yfOyWyCyYqY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113RequestMemberEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "yfQPriQMuiU", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEneERKS9_) +STUB("yfQknp9hDbI", uidna_labelToUnicode_67) +STUB("yfRB4uRKs38", _ZN7WebCore25ArchiveResourceCollection21archiveResourceForURLERKN3WTF3URLE) STUB("yfSdswDaElo", sceCameraSetAutoExposureGain) +STUB( + "yfTc5Zu8F6Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEE11get_deleterEv) +STUB("yfbbzRuWWJA", _ZNK3sce2Np9CppWebApi13InGameCatalog2V520ContainerRatingCount8getScoreEv) +STUB( + "yfhxMfaGTig", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ResponseInGameRosterEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "yflVJSerY-M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEC1ERS7_) +STUB( + "yfmKktrIO+E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEED2Ev) STUB("yfn+OUTExgM", sceSblRcMgrIsAllowLimitedUiInspector) +STUB( + "yg2Wgpjr4ew", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEixEm) +STUB("yg4Y70OvWzg", _ZNK7WebCore3URL4portEv) STUB("yg6hx58UNqc", sceHttpCacheSetQuota) +STUB( + "yg780OGQPJs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEppEi) +STUB("ygBBNKUKLaw", _ZN12video_parser5vpcom11Utf16ToUtf8EPKwPSs) +STUB("ygFbQp-84-U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V116JoinableUserTypeEEC2EPKS6_) +STUB( + "ygL-RUMNAn0", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("ygLeNBGWgf8", _ZN3sce2Np9CppWebApi7Matches2V118RequestMatchPlayer13setPlayerNameEPKc) +STUB("ygNEUWA5Ejw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEEC1ERS6_) +STUB( + "ygQeh9f-3e4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEEEC2EPKS8_) +STUB( + "ygULAwAPRfU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEEptEv) STUB("ygVuZ1Hb-nc", sceUserServiceGetEventSortEvent) +STUB( + "ygW+9NhN-s4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V57ProductEEEEEED2Ev) +STUB( + "ygbEgW-Rhwc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V136SetVariableWithConditionsRequestBodyEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("yge0amJn5G4", _ZN7WebCore9CookieJar10setCookiesERNS_8DocumentERKN3WTF3URLERKNS3_6StringE) +STUB( + "ygflD8epI7s", + _ZN8meta_gen11MsvPromoter27setKeyValue_TBLV_VideoCodecENS0_23MsvPromoterSetValueInfoEP10KeyValue_t) +STUB( + "ygk5Xcfla-M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEEEEaSERSA_) +STUB("ygkwGUwd8fE", _ZN3WTF22CrossThreadTaskHandler13postTaskReplyEONS_15CrossThreadTaskE) +STUB("ygq0PnLt7d4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEED2Ev) +STUB("ygqHYKoKF3s", mono_aot_Sce_Vsh_SQLiteunbox_trampoline_addresses) +STUB( + "ygw2ALdc0VQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEEE4sizeEv) +STUB( + "ygy2JLWWbPI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEE8copyFromERKS9_) +STUB("yh01Gf9ozWY", _ZN3sce2Np9CppWebApi6Common6BinaryD2Ev) +STUB("yh18Slngnk0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116JoinableUserTypeEE8copyFromERKS7_) +STUB("yh1e4VXFKdI", + _ZN3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer11unsetoffsetEv) +STUB("yh5s9ZNTupY", u_strspn_67) +STUB( + "yh8Jtx4+xEw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEE7popBackEv) +STUB("yh9cwn547UA", mono_aot_Sce_Vsh_Accessor_Db_Notifyunbox_trampolines_end) +STUB("yhDqYedMpcg", _ZN3sce7Toolkit2NP2V27Session10InvitationD1Ev) STUB("yhFCnaz5daw", sceGnmUnregisterAllResourcesForOwner) +STUB("yhIvIhbplIg", uhash_compareCaselessUnicodeString_67) STUB("yhQZNxbdHNg", sceNpUniversalDataSystemIntRecordObjectSetBinary) +STUB("yhbF6MbVuYc", _Stopfx) +STUB("yhd+GKb-NyQ", gp_trace) STUB("yheJGN-ay+A", sceAgcDcbSetBoolPredicationEnableGetSize) STUB("yheulqylKwI", sceRemoteplayNotifyUserDelete) +STUB("yhgOE7Zx8cw", WKPreferencesSetAcceleratedCompositingForOverflowScrollEnabled) +STUB("yhi+PCUvXCg", _ZN4Manx7RunLoop8finalizeEv) +STUB("yhjskT+uMLo", mono_aot_Sce_Vsh_Gls_NativeCalljit_code_end) +STUB("yhm05BhrZ3M", _ZN3JSC8Bindings13RuntimeObject6s_infoE) +STUB("yhvlh96OiNE", _ZNK3WTF13DecimalNumber19toStringExponentialEPhj) +STUB("yhxKO9LYc8A", sigvec) +STUB( + "yi0NgbIx-FM", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEplEm) +STUB( + "yi3tXcGVIgQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEEEC2EPS8_) +STUB("yi7Wtl+fVLE", _ZNK7WebCore18AdClickAttribution10hasExpiredEv) +STUB("yi9NGkVtu1g", _ZN3sce2Np9CppWebApi6Common6VectorIlEC1Ev) +STUB("yiFwzamZzAI", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi20ParameterToJoinMatchaSERS5_) +STUB("yiJexlXFYFs", il2cpp_current_thread_get_stack_depth) +STUB("yiOOLA2vkLA", glGetQueryiv) STUB("yiOhxHhSzC0", sceAudioOut2LoPortSetAttributes) +STUB("yiUUfhRhKqE", _ZN7WebCore12JSTreeWalker9toWrappedERN3JSC2VMENS1_7JSValueE) +STUB("yiWTOXaovLQ", _ZN7WebCore8SVGNames16missing_glyphTagE) +STUB( + "yicIzbLFL5o", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEC2Ev) +STUB( + "yicQxK6qijw", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi42ParameterToListEdgeOnlineId2AccountIdBatch5setidENS1_6Common12IntrusivePtrINS6_6VectorINS6_6StringEEEEE) +STUB("yica-O4akgw", _ZN3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest17unsetInGameRosterEv) STUB("yigBLNiYtOg", scePlayReadyBufferMalloc) +STUB("yigC8-yxwo0", _ZN7WebCore15ActiveDOMObjectC2EPNS_8DocumentE) +STUB( + "yigdNEwVMh8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEEC2Ev) STUB("yigr4V0-HTM", sceHttpSetRecvTimeOut) +STUB("yiiB+pbygU4", WKNotificationGetTypeID) +STUB("yijCQimNNaM", rgctx_fetch_trampoline_rgctx_11_p) +STUB("yijJlGJL-6s", usearch_setPattern_67) +STUB("yila9jgNlzs", mono_get_exception_type_load) +STUB("yilqCyLATnc", __ubsan_handle_type_mismatch_v1) +STUB("yit-Idli5gU", __atomic_exchange_4) +STUB( + "yitGiNCDQps", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "yixDW3EPcQ8", + _ZN3sce2Np9CppWebApi7Matches2V133RequestTemporaryCompetitiveResult16setPlayerResultsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_20RequestPlayerResultsEEEEE) STUB("yixh7HDKWfk", sceNpTusGetFriendsDataStatusA) +STUB( + "yixjdYrIHJE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V119PlayerSessionPlayerEEEE8capacityEv) +STUB("yj1Rme9dSK4", _ZN7WebCore9HTMLNames8imageTagE) +STUB( + "yj73o2yhIcM", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB( + "yj7Bqnei75s", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEE7reserveEi) +STUB( + "yj9KGoSd8E8", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED1Ev) +STUB( + "yjBmdYc+nCk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEaSERKS9_) +STUB("yjF+6ttYNNs", _ZN2sh10GetInfoLogEPv) +STUB("yjHAiyDd7+o", WKStringGetUTF8CString) +STUB( + "yjRpKxKXvZg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB("yjW9EWkjwmw", _ZN3JSC15IsoHeapCellTypeC1ENS_15DestructionModeEPFvPNS_6JSCellEE) +STUB( + "yjXFUPnLFYM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEC2Ev) STUB("yjYQzZ1jF88", _sceLibcMallocStatsFast) +STUB("yjZTHRRFVcU", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_18SessionInformationEE3getEv) +STUB("yjcDrwFK2UM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEE7get_refEv) +STUB("yjjDwtgu4jE", NpWebDeleteRequest) +STUB("yjjjjR4oPk8", _ZNK3sce2Np9CppWebApi15Personalization2V121GetAccessCodeResponse7getSaidEv) +STUB("yjkykVlf+OI", uhash_get) +STUB("yjmcex4MSBU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V16AvatarEE11get_deleterEv) +STUB("yjsf6SvXA08", _ZNK3sce4Json6String4findEPKcm) +STUB( + "yjueQNUclf4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE6isBusyEv) +STUB( + "yjvZPujei5Y", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEppEi) +STUB( + "yjwFf2hsRfQ", + _ZN3sce2Np9CppWebApi11Matchmaking2V131SubmitTicketResponseBodyFactory7destroyEPNS3_24SubmitTicketResponseBodyE) +STUB( + "yjzDLnWUbwo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEC2Ev) +STUB( + "yk05VJ8evEs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEED1Ev) +STUB("yk3V1q4WZhI", _ZN9Inspector22RemoteAutomationTargetD2Ev) +STUB( + "yk4qnFjEZUU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEEE11release_refEv) +STUB( + "yk5uyhOB+g8", + _ZN7WebCore15JSDOMWindowBase20moduleLoaderEvaluateEPN3JSC14JSGlobalObjectEPNS1_9ExecStateEPNS1_14JSModuleLoaderENS1_7JSValueES8_S8_) +STUB("yk9a99tC+uU", uhash_removei_67) +STUB( + "ykC1TuhVtdI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEmmEv) +STUB( + "ykELY3Rr7OY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEC2EPS6_) +STUB( + "ykIRhYqogeM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE6finishEv) +STUB("ykNDaBA+y+k", WKPreferencesSetAllowsPictureInPictureMediaPlayback) +STUB("ykNF6P3ZsdA", _CStrftime) STUB("ykNpWs3ktLY", sceCompanionHttpdInitialize) +STUB( + "ykOnYgLhGLU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113ErrorResponseEEEEEEC1ERSA_) +STUB( + "ykQbBGcko9c", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEENS4_INS6_12IDMappingApi36GetAccountId2OnlineIdResponseHeadersEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) STUB("ykUZXoqozJc", sceBdSchedConfigure2) +STUB("ykVoiqE-0Xs", + _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession21unsetSearchAttributesEv) +STUB("ykWsQEP-SUQ", _ZN7WebCore16ResourceResponseC1Ev) +STUB("ykZeajTxEcA", _ItL_atanhi) +STUB("ykads267mpg", jpeg_idct_10x10) +STUB("ykeQDiF4RoM", pR5) +STUB( + "ykk-gdIrz5A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEED2Ev) +STUB( + "ykratZnSX7E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEE11release_refEv) +STUB("yktn8p4+OCM", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V110ResultTypeEE7reserveEi) STUB("ykwIZfVD08s", sceSaveDataChangeDatabase) +STUB("ykxoXM-84fA", _ZN3sce2Np9CppWebApi7Matches2V113ChildActivityC1EPNS1_6Common10LibContextE) +STUB("ykyWnXSOang", _ZN10Deprecated11ScriptValueC1ERKS0_) +STUB("yl-Pvv8Clr0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEcvbEv) +STUB("yl2jH6kx6VY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Commerce8ProductsEEC1Ev) +STUB( + "yl3T9brJay4", + _ZN3sce2Np9CppWebApi14SessionManager2V136PostPlayerSessionsRequestBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_20RequestPlayerSessionEEEEEPNS9_INS3_29PostPlayerSessionsRequestBodyEEE) +STUB( + "yl84jhpvkrE", + _ZNK3sce2Np9CppWebApi14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayer11getPlayerIdEv) +STUB( + "yl8IzOc32sM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE10setContextEPNS2_10LibContextE) +STUB("yl9PN56UdCo", _ZN8meta_gen11MsvPromoter29determineDefaultThumbnailInfoEv) +STUB( + "ylBVz-qhPMQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113RequestMemberEEEEEEC2Ev) +STUB("ylBk6S0VO3o", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116JoinableUserTypeEEeqERKS7_) +STUB("ylEDbSGfA9s", rgctx_fetch_trampoline_rgctx_90_p) +STUB( + "ylNJzZMVUEE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEE7get_refEv) +STUB("ylTRxi27Neg", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V118IdempotentVariable10valueIsSetEv) +STUB("ylUF8H4Wsu4", _ZN7WebCore17FullscreenManager16cancelFullscreenEv) +STUB( + "ylWFd8JM0j4", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSD_) +STUB("ylWkAz6mDtc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEE11get_deleterEv) +STUB("ylZDP33j6rU", __sanitizer_cov_trace_cmp) +STUB( + "ylaepAn64Ws", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEptEv) +STUB( + "ylbwej8+-EA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEEC2ERSA_) +STUB( + "yldkmT5FXF0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEE5resetEPS7_) +STUB("ylpB9Qb+tKM", _ZN7WebCore8SVGNames8pathAttrE) +STUB("ylwBm-5KMW4", __tsan_get_current_report) +STUB("ym1zt5eSs-k", WKPreferencesGetMockCaptureDevicesEnabled) +STUB( + "ym2e5kV-PVk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEneERKS9_) +STUB( + "ym2oUkCCNiM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEEEC2ERKSA_) +STUB("ym4GfBh+wQI", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEixEm) +STUB("ym4gF58uw-0", unorm2_composePair_67) +STUB("ym4qnctv97I", WKSecurityOriginGetProtocol) +STUB( + "ym5chG5zs0A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122GetMatchDetailResponseEEEEEEC1Ev) +STUB("ymB4A1QMkI0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEED1Ev) +STUB("ymDMCu+TZMk", mono_delegate_to_ftnptr) +STUB("ymEj5HE5iP8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEC1ERKS7_) +STUB( + "ymJBZ8bDOXc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEE5resetEPS6_) +STUB("ymJUCSROIpI", _ZNK3sce2Np9CppWebApi13InGameCatalog2V57Product5getIdEv) +STUB( + "ymRFcqBiON4", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS2_6VectorINS5_INS1_14IdentityMapper2V312AccountIdMapEEEEEEENS5_INS8_12IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeadersEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISH_SI_EE) +STUB( + "ymT99ScwWrs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEC1ERS7_) +STUB("ymTIKjlVMtc", _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_6StringEEdeEv) +STUB("ymTeY5kaJ94", mono_assembly_name_new) +STUB("ymWHLBbFJG0", _ZNK3sce2Np9CppWebApi13InGameCatalog2V53Sku17getAnnotationNameEv) +STUB("ymWO6sZglMw", _ZN7WebCore20PasteboardCustomDataC2ERKS0_) +STUB( + "ymXIbWzlgJA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("ymXfiwv59Z0", _ZTISt15basic_streambufIcSt11char_traitsIcEE) +STUB("ymbgIPBJAVc", _ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody11unsetStatusEv) +STUB( + "ymd3u+hVmD8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEdeEv) +STUB( + "ymi-kqEXbTE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEC1EPS6_PNS2_10LibContextE) STUB("ymiwVjPB5+k", sceHmdReprojectionDebugGetLastInfoMultilayer) +STUB("ymkxOwCxW5w", uloc_getKeywordValue_67) +STUB("ymlluwxOn8M", _ZN3sce3pss4core9PsmObjectD0Ev) +STUB("ympycJtxqjU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V55ImageEEC1ERKS7_) +STUB( + "ymwrPYuQ2c0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120RequestPlayerSessionEEEEEED1Ev) +STUB("yn2JoBJXOik", _ZN7WebCore18TextureMapperLayer10setOpacityEf) STUB("yn2loAZJRfk", sceTextToSpeechCloseImpl) +STUB("yn5y5JJ9BX8", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12ActivityFeed4FeedEEC2Ev) +STUB( + "yn6rw9ZB56c", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEC1EPS8_) +STUB( + "ynBPwvClji8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE5clearEv) STUB("ynFKQ5bfGks", sceSysmoduleIsLoadedInternal) +STUB("ynJ1rTAPsZU", + _ZN9Inspector34createScriptCallStackFromExceptionEPN3JSC14JSGlobalObjectEPNS0_9ExceptionEm) STUB("ynKv9QCSbto", sceHmdInternalGetPuRevision) +STUB("ynOkla1p3Tg", _ZN7WebCore9GLContext7versionEv) STUB("ynSqYL8VpoA", sceFontGetEffectSlant) +STUB( + "ynTNEUkPX0o", + _ZN3sce2Np9CppWebApi7Matches2V128ResponseTeamStatisticFactory7destroyEPNS3_21ResponseTeamStatisticE) +STUB( + "ynWc6I+Ku-w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEEC1ERS9_) +STUB("ynhv3cB2oTs", mono_aot_Sce_Vsh_VoiceAndAgentjit_code_end) +STUB("ynl0ijBXWN4", __tsan_atomic32_fetch_and) +STUB( + "ynlaPRle2sc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEE5resetEPS6_) +STUB("ynnez97AZAU", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V117ResponseMatchTypeEEneERKS7_) +STUB( + "ynram5IlLUo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V116FromNonPsnMemberEEEEC1Ev) +STUB("ynuwpfHw+pA", _ZN7WebCore8SVGNames8refXAttrE) +STUB( + "ynvhoQekbwg", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB( + "yo1eR3eeGFc", + _ZN7WebCore30InspectorInstrumentationWebKit25interceptResponseInternalERKNS_5FrameERKNS_16ResourceResponseEmON3WTF17CompletionHandlerIFvS6_NS7_6RefPtrINS_12SharedBufferENS7_13DumbPtrTraitsISA_EEEEEEE) +STUB("yo3JXb4xvbE", Java_sun_awt_GnmUtils_bdjbgDisplay) +STUB( + "yo8nEi+xzjA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PatchGameSessionsSessionIdMembersAccountIdRequestBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("yoAHt--Rr3w", _ZN3JSC7Symbols14mapPrivateNameE) +STUB("yoDGUzNQrVc", monoeg_g_hash_table_new_full) +STUB( + "yoDcCTYHb68", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEC2Ev) +STUB("yoE9C0Fx68s", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEEdeEv) +STUB( + "yoIZHmkxo9w", + _ZN3sce7Toolkit2NP2V26Friend19getFriendsOfFriendsERKNS3_7Request19GetFriendsOfFriendsEPNS2_4Core8ResponseINS3_16FriendsOfFriendsEEE) +STUB("yoKkZ3Mf0bU", WKPreferencesSetMockScrollbarsEnabled) +STUB("yoRHHh0smrQ", mono_shared_ptr_array_new) +STUB("yoVdeXZzPck", _ZN4IPMI6Client6Config14MsgQueueConfig20estimateMsgQueueSizeEmj) +STUB( + "yoXuf3SUgBo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("yoZeQaoGAqw", _ZN3sce7Toolkit2NP2V212ActivityFeed5StoryD2Ev) +STUB( + "yobi6YSUplM", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi38ParameterToGetPlayerSessionInvitations36unsetxPSNSESSIONMANAGERINVITATIONIDSEv) +STUB( + "yobzIKyawqg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V117ResponseMatchTypeEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB("yodHlcBEUww", WKPageWebProcessIsResponsive) +STUB( + "yoe3Akv6h5Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEEEEptEv) +STUB("yofHspnD9us", _ZNSt13basic_filebufIcSt11char_traitsIcEE7_UnlockEv) +STUB( + "yohEJecL09E", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB("yoinU+hTpdM", _ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest15getInGameRosterEv) +STUB( + "yonC2kmUnzk", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi28ParameterToGetPlayerSessions17getacceptLanguageEv) +STUB("yor08VzFtZo", WKWebsiteDataStoreSetStatisticsPrevalentResource) +STUB("yorRU1THn4M", WKRenderObjectCopyName) +STUB( + "yp2sg4cjLJY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEEEE8pushBackERKS8_) +STUB("yp5Nh+hby74", ucnv_countAvailable) +STUB( + "ypEKWvivmKs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEED2Ev) STUB("ypMMye20xkM", sceClHttpDestroyEpoll) STUB("ypMObSwfcns", sceNpTusSetMultiSlotVariableAAsync) +STUB( + "ypOpDgf5Ay8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEE11release_refEv) +STUB("ypOz3lP3VhE", ubrk_isBoundary) +STUB("ypQ1+CIeMQ4", _ZNK3sce2Np9CppWebApi7Matches2V119ResponseTeamResults10scoreIsSetEv) +STUB("ypUP0j11hyM", utf8_countTrailBytes_67) STUB("ypVBz4uPKcQ", sceAgcDcbDrawIndexIndirectMulti) +STUB( + "ypWHTMPvl7k", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "ypa7qWNLMPg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ImageEEEEC2EPS8_) +STUB("ypazoTrKYhE", _ZN3sce4Json12MemAllocatorD0Ev) +STUB( + "yphNihkPEng", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V125ResponseCompetitiveResultEEEEEE7add_refEv) STUB("ypl-BoZZKOM", sceSystemStateMgrTickMusicPlayback) +STUB("ypl6NduS5gw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEE3getEv) +STUB( + "ypm6-0ePRWs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEptEv) +STUB("ypnh6IamnAk", + _ZThn16_N9Inspector22InspectorDebuggerAgent20setPauseOnAssertionsERN3WTF6StringEb) +STUB("yppBcbu0B48", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V16StatusEEptEv) STUB("yppUV49ur84", sceMbusDebugResumeApplication) +STUB("ypq5jFNRIJA", _ZNKSt7_MpunctIwE14do_curr_symbolEv) +STUB( + "yprMxWx1Uxc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V116InitialJoinStateEEEEC1ERS9_) +STUB( + "ypwpnlM2-p4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEE5beginEv) +STUB("ypyVOrJH+KQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEdeEv) +STUB( + "ypydgl92gd4", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi40ParameterToGetJoinedPlayerSessionsByUser28getxPsnAcceptPlatformNamePs5Ev) +STUB("yq+USbNftkM", _ZN7Nicosia16SceneIntegration9setClientERNS0_6ClientE) STUB("yq0Uhq9JwJo", sceCompositorMemoryPoolDecommit) +STUB( + "yq0dlbH8P24", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEEEEdeEv) +STUB( + "yq0iKZUS+S4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEED1Ev) +STUB( + "yq6TaUWC0D0", + _ZN3sce2Np9CppWebApi14SessionManager2V157PostGameSessionsSessionIdMemberPlayersResponseBodyFactory7destroyEPNS3_50PostGameSessionsSessionIdMemberPlayersResponseBodyE) +STUB("yqAjaOhzfaQ", _ZN3sce7Toolkit2NP2V211SharedMedia7Request13GetBroadcasts13MAX_PAGE_SIZEE) +STUB("yqEZPpNd-NY", rgctx_fetch_trampoline_mrgctx_44) STUB("yqIOrJbpTu4", sceDebugSpawnApplication) +STUB( + "yqMIA3nwj6g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEC1EPNS2_10LibContextE) +STUB( + "yqNp1gFvUqU", + _ZN3sce2Np9CppWebApi14SessionManager2V149PostPlayerSessionsSessionIdInvitationsRequestBody14getInvitationsEv) +STUB("yqROfLGUmDg", + _ZN7WebCore28convertToIntegerEnforceRangeIlEET_RN3JSC14JSGlobalObjectENS2_7JSValueE) +STUB( + "yqUBKzpjZmA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEmmEv) +STUB("yqV+YhYhz7g", ucase_isCaseSensitive_67) +STUB( + "yqXYm-j0a6I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEmmEv) +STUB( + "yqXc0L92fMo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V223FilterProfanityResponseEEEEC2Ev) +STUB( + "yqeRpJMiv68", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB( + "yqiG+rC3mT0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120ReportResultsRequestEEEE3endEv) STUB("yqj2bpN3gcU", sceRnpsAppMgrGetEventForShellUI) +STUB("yqlejW6-6OE", + _ZN9Inspector21InspectorConsoleAgent29willDestroyFrontendAndBackendENS_16DisconnectReasonE) +STUB( + "yqnYT+cUvIQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEED2Ev) +STUB( + "yqroW1bAB84", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V114ResponseMemberEEEEEE7get_refEv) STUB("yqsFy9yg2rU", sceNpManagerIntLoginGetEmail) +STUB( + "yqtk-ZffON4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEEEixEm) +STUB("yqvosp+aMWE", _ZN3sce2Np9CppWebApi11UserProfile2V113BasicPresenceC2EPNS1_6Common10LibContextE) +STUB("yqy2+88mUx8", EVP_aes_256_ctr) +STUB( + "yr+L4mkn3+E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEEC1Ev) +STUB("yr9EzrSEsfo", _ZN7WebCore10StorageMap20setItemIgnoringQuotaERKN3WTF6StringES4_) +STUB( + "yr9z5R--25U", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEptEv) +STUB( + "yrAMEZyU8fM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V223FilterProfanityResponseEEEEEE11get_deleterEv) +STUB( + "yrDuA7PEtSk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEEeqERKS9_) +STUB( + "yrEqhN42Sdo", + _ZN7WebCore15JSSVGSVGElementC1EPN3JSC9StructureERNS_17JSDOMGlobalObjectEON3WTF3RefINS_13SVGSVGElementENS6_13DumbPtrTraitsIS8_EEEE) +STUB("yrHMwh-w9vo", il2cpp_field_get_type) STUB("yrHudi97Mfw", sceShellUIUtilTerminate) STUB("yrME3knbt8U", sceNpManagerIntGetVshTokenNB) +STUB("yrOZFj7C79Q", _ZN3sce7Toolkit2NP30DetailedProductInfoInputParamsC2Ev) +STUB("yrOs-YRTmJo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEC2ERS7_) STUB("yrOv0czHCp4", sceSpNetPoolDestroy) +STUB("yrPTLmYWUIM", ucptrie_get) +STUB( + "yrPUuJ5BTaI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V114RepresentativeEEEEEEC1Ev) +STUB( + "yrPh5oge7E8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEaSERKS9_) +STUB( + "yrRz1HggR4s", + _ZN3sce7Toolkit2NP14GameCustomData9Interface11getItemListEPKNS1_26GameCustomDataItemsRequestEPNS1_9Utilities6FutureISt6vectorINS1_18GameCustomDataItemENS1_15AppSTLAllocatorISA_EEEEEb) +STUB("yrRzS4hL0SM", mono_aot_Sce_Vsh_Themejit_code_end) +STUB("yrTg4lLuK4A", _ZN3sce7Toolkit2NP2V29Messaging22GameDataMessageDetails21MAX_SIZE_TEXT_MESSAGEE) +STUB( + "yrVsMQv0uA0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEppEi) +STUB("yrWwBt9NZPY", WKRenderObjectGetAbsolutePosition) +STUB("yrbzVXtDvXg", _ZN7WebCore14XMLHttpRequestD2Ev) +STUB( + "yrdVvQsDrQM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127RequestGameSessionSpectatorEEEEC1EPS8_) +STUB("yrtHJUH2eFc", _ZN3sce3pss4core8graphics14NativeGraphics18StoreGraphicsStateEv) +STUB("yrtsLmTfa48", FT_New_Library) +STUB("yrx+40YKqiI", timespec_get) +STUB("yrxEUkJRSXk", mono_aot_Sce_Vsh_PartyCommonmethod_addresses) STUB("ys1JAOGzNG0", sceNetCtlApDialogUpdateStatus) +STUB("ys1W6EwuVw4", __absvdi2) STUB("ys2e9VRBPrY", sceUsbdWaitForEvent) +STUB("ys5mC+j7w+E", _ZN3JSC7Symbols21Uint8ArrayPrivateNameE) +STUB( + "ysAnsG6EfkM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEED1Ev) +STUB("ysD289WLu2c", _ZN3JSC7Symbols29speciesConstructorPrivateNameE) +STUB("ysDKUM6kzXg", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence12Notification14PresenceUpdateEEC2Ev) +STUB( + "ysEBRXaO0lM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEEEppEi) STUB("ysPB2G+jd14", sceOpusDecDecodeCancelForTimeout) +STUB("ysPsWcgN2LU", _ZN7WebCore13JSHTMLElement9prototypeERN3JSC2VMERNS_17JSDOMGlobalObjectE) +STUB("ysQE+BpZ1Ok", + _ZN3sce2Np9CppWebApi7Matches2V126RequestTeamMemberStatisticC1EPNS1_6Common10LibContextE) +STUB( + "ysQUhm2uSt4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE5clearEv) STUB("ysWfX5PPbfc", sceGameLiveStreamingLaunchLiveViewer) +STUB( + "ysY3J7mKS0c", + _ZN3sce2Np9CppWebApi14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBody13getSpectatorsEv) +STUB("ysYpNHM+f2U", WKBundleIsPageBoxVisible) +STUB("ysdXgAoy-XY", _ZN7WebCore22EmptyFrameLoaderClient12dispatchShowEv) +STUB("ysfNnf9JPS8", _ZN4IPMI6ServerD0Ev) STUB("ysfza71rm9M", sceScreenShotDisableNotification) STUB("ysmw6J-P8Ak", sceNpSessionSignalingInitialize) +STUB("yssxWr+ar0U", WebCoreHas3DRendering) +STUB("ysyIpyYl0CA", _ZN3sce2Np9CppWebApi14SessionManager2V115SearchCondition11unsetValuesEv) +STUB( + "yt+DSySHR1M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V117SearchGameSessionEEEEEEaSERKSA_) +STUB("yt3rhCWxg-E", _ZN7WebCore10ISOFullBoxD0Ev) +STUB( + "yt6s7nyCMao", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V120PlayerSessionForReadEEEEC1EPS8_) +STUB( + "yt73vm77v4Q", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi28ParameterToDeleteGameSession9terminateEv) +STUB("yt7hn3QeBvY", u_strpbrk) +STUB( + "ytB6j1U649o", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi46ListEdgeAccountId2OnlineIdBatchResponseHeaders7destroyEPS5_) +STUB("ytDl3m9Pbew", mono_method_header_get_clauses) +STUB( + "ytE0j5i6+QA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "ytEyVfOqFHI", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectator55getpostGameSessionsSessionIdMemberSpectatorsRequestBodyEv) +STUB("ytGILcCyIuc", WKPreferencesSetPDFPluginEnabled) +STUB("ytGq+CQicI8", ucnv_convertEx_59) +STUB("ytHFpyVl7gw", JSObjectGetPrototype) +STUB( + "ytHxQmhBCGM", + _ZN3sce2Np9CppWebApi14SessionManager2V157PostGameSessionsSessionIdSessionMessageRequestBodyFactory6createEPNS1_6Common10LibContextERKNS5_6VectorINS5_12IntrusivePtrINS3_23MemberWithMultiPlatformEEEEEPKcPNS9_INS3_50PostGameSessionsSessionIdSessionMessageRequestBodyEEE) STUB("ytMU6x1nlmU", sceSystemServiceActivateHevcSoftInit) STUB("ytQULN-nhL4", pthread_rwlock_init) +STUB("ytcnibbNVGo", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15CategoryInfoSubEE10deallocateEPS3_m) +STUB("ytew5kOntw4", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_11TusVariableENS2_IS4_EEEEC2ERKS7_) +STUB( + "ytg22DCFILg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "ytguFakl2UU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEC2Ev) +STUB( + "ythYvG6sW7Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEED2Ev) +STUB("ytsTenQqDuY", _ZN7WebCore11MemoryCache13getStatisticsEv) +STUB( + "ytt1FyX059Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "yu+aQr1mrdQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V16FriendEEEEEEaSERSA_) +STUB("yu0tB6uMU5s", _ZN9Inspector21HeapBackendDispatcherD1Ev) +STUB("yu70AW8PuRE", _ZNK3JSC8Debugger18hasProfilingClientEv) +STUB("yu8Q3WtZ158", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament15RegisteredTeamsEE3getEv) +STUB( + "yu8ShqlznjM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEED1Ev) +STUB( + "yu9acd6YiJA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V123RecordScoreResponseBodyEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("yuEd7UeRJ3Q", _ZNK3WTF8JSONImpl10ObjectBase4sizeEv) +STUB( + "yuFm3GOhbqI", + _ZN3sce7Toolkit2NP11UserProfile9Interface20getNpUserInformationEPNS1_9Utilities6FutureINS1_6NpUserEEEPKNS1_18UserProfileRequestEb) +STUB("yuFpAAX1omQ", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities14UserActivities13getActivitiesEv) +STUB( + "yuIEnVvcpt0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V19SubmitterEEC2EPS6_PFvS8_EPNS2_10LibContextE) STUB("yuO2H2Uvnos", sceHttpGetResponseContentLength) +STUB("yuOrMQkmgZg", psnames_module_class) +STUB("yuVVf5Gl8m0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V113AttributeTypeEEC2EPS6_) +STUB("yuXv2Slmbng", + _ZNK3sce2Np9CppWebApi13InGameCatalog2V512ContainerApi23ParameterToGetContainer9hasoffsetEv) +STUB( + "yuY6d+g1Zi8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEppEi) +STUB( + "yuYYYguFLRc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59PublisherEEEEEEC2EPS9_PNS2_10LibContextE) +STUB("yudT4-bglko", _ZN3sce4Json19InternalInitializerD1Ev) +STUB("yuh3+ydqVVc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEED2Ev) +STUB( + "yujI0-CdorE", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi52ParameterToDeletePlayerSessionJoinableSpecifiedUsersC2Ev) +STUB( + "yusKPbeZcSc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V151PostPlayerSessionsSessionIdMemberPlayersRequestBodyEEEEC2Ev) +STUB( + "yuwFtH2bdDo", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi36ParameterToChangePlayerSessionLeader35hasxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB("yv--ZFO7R5g", Java_com_sony_mhpstack_mhpsupport_appsupport_AppObjectRegistry_n_1init) +STUB("yv-2j-rlxIA", _ZNK7WebCore6Editor7Command7executeEPNS_5EventE) +STUB("yv-3EmS1Z80", _ZNK7WebCore11XPathResult12booleanValueEv) +STUB("yv8JYywpwz8", _ZN7WebCore12EventHandler20sendContextMenuEventERKNS_18PlatformMouseEventE) +STUB("yv9ptY-N-ZI", _ZN3sce7Toolkit2NP19AllocImplementationD0Ev) +STUB("yvD66FSFyNg", _ZN7WebCore17LibWebRTCProvider24registerWebKitVP9DecoderEv) +STUB( + "yvH2Z6lu8jA", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi36GetAccountId2OnlineIdResponseHeaders21intrusive_ptr_add_refEPS5_) +STUB( + "yvJ3RrwZzSk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEE11get_deleterEv) +STUB("yvJjv5jHQdE", _ZN15AbstractStorage12LocalServiceC2Ev) +STUB("yvK+8QIuztw", _ZN7WebCore15AsyncFileStream4readEPci) +STUB("yvL0St8BV7E", _ZNK3WTF10StringView26getCharactersWithASCIICaseENS0_15CaseConvertTypeEPDs) +STUB("yvO7b8l2elA", _ZN7WebCore15ContextMenuItemD2Ev) +STUB("yvRWD9ZiZh0", Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_stopPlay) +STUB("yvVVgYBvwts", __asan_report_store16_noabort) +STUB("yvW7eYsbfBk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V114ResultsVersionEED2Ev) STUB("yvZ73uQUqrk", sceGnmSubmitDone) STUB("yvaNTRiKXmo", sceNpThreadGetId) STUB("yvbO67OvrFc", sceApplicationGetShellCoreAppId) STUB("yvcX0NDFdJ4", scePsmMountDirectoryEx) +STUB("yvej5-SVNKk", _ZN9Inspector17ScriptDebugServerD2Ev) +STUB("yvenH6FKBnc", __ubsan_handle_nullability_arg_abort) +STUB("yvhjR7PTRgc", __atomic_fetch_sub_2) +STUB("yvnsZ36Cok0", _ZN3JSC14JSGlobalObject14finishCreationERNS_2VME) +STUB("yvp6fh6kF6E", + _ZN3sce3pss5orbis9framework8PsmEvent19UnregisterDelegatorEPFvRKNS2_12PsmEventDataEPvES7_) +STUB( + "yvqeJ0L65CI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEC1EPS8_) +STUB("yvxMRGAeWIY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V113SubtaskStatusEEEEC2Ev) +STUB( + "yw+8U9CGq4A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE8copyFromERKS9_) +STUB( + "yw2QhADovM8", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlotC1Ev) +STUB( + "yw4fkSHV3l0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("yw69M-xnQgk", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124NatConnectivityToMetrics14setSuccessRateERKi) +STUB( + "yw8uy4gJVjY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEppEi) +STUB( + "yw9EbtfD1sE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14ConnectAccount2V28PSNErrorEEEEEED1Ev) +STUB("yw9QE5xbiwY", _ZN3JSC7Symbols28Uint8ClampedArrayPrivateNameE) +STUB( + "ywJWXDIippA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEaSERKS7_) +STUB( + "ywJpNe675zo", + _ZNKSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE6do_getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERj) +STUB("ywNkJmYQIaQ", Java_com_sony_gemstack_org_dvb_application_AppProxyImpl_n_1start) +STUB("ywPrr9tliWE", _ZN7WebCore9GLContext20isExtensionSupportedEPKcS2_) +STUB("ywU-pWrM-Vw", _ZN7WebCore13MIMETypeCache14supportedTypesEv) +STUB("ywa-7cLQm7k", JNU_PrintString) STUB("ywmONkF81ok", scePthreadSuspend) +STUB( + "ywrLTszQlew", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11UserProfile2V110AvatarSizeEEEEdeEv) +STUB("ywv2X-q-9is", _ZNSt15underflow_errorD1Ev) +STUB( + "ywyynPaLAOc", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11hasResponseEv) +STUB( + "yx0CgRANrTI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V12ToEEEEEE3getEv) +STUB( + "yx7dJbqLTXI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V123RecordScoreResponseBodyEEEEC2EPS8_) +STUB( + "yxDI4srLSdU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEEEEE5resetEPS9_) +STUB("yxIXLt4jqNE", OCSP_response_get1_basic) +STUB("yxJfRazxV4Y", _ZN7WebCore9FrameView29layoutOrVisualViewportChangedEv) STUB("yxK68584JAU", sceNpScoreSetThreadParam) +STUB( + "yxL-w+n9amY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_12Leaderboards2V110UpdateModeEE21intrusive_ptr_add_refEPS7_) +STUB( + "yxSf8TurfYg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEE4sizeEv) +STUB("yxVOFYHhNco", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEED2Ev) +STUB("yxWnBlhzO6U", _ZN3sce2Np9CppWebApi7Matches2V114ResponseMember11setPlayerIdEPKc) +STUB( + "yxWoeXxy3fg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEC1EPNS2_10LibContextE) +STUB( + "yxXjdARQHPQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEEC1EPNS2_10LibContextE) +STUB( + "yxanJ4F2N0o", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE21intrusive_ptr_add_refEPS9_) +STUB("yxbGzBQC5xA", ferror_unlocked) +STUB("yxdJQwADKOs", mono_aot_System_ServiceModel_Webplt) +STUB("yxfqc0ukAso", _ZN3WTF11Persistence7Encoder6encodeEl) +STUB( + "yxgHVlRCfzA", + _ZN3sce2Np9CppWebApi7Matches2V120ErrorResponseFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_13ErrorResponseEEE) +STUB( + "yxgh5zLJJzs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEED2Ev) STUB("yxiUUPJoyYI", sceShellCoreUtilShowErrorDialogWithParam) +STUB("yxltbsxpvbo", fuse_main) +STUB("yxrud6sRAWE", _ZN3sce2Np9CppWebApi12Leaderboards2V15EntryC1EPNS1_6Common10LibContextE) +STUB( + "yxsXb7LqzrM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V121GetTicketResponseBodyEEEEEE5resetEPS9_) +STUB("yxwlKktzy6Y", _ZN3WTF10StringImpl7destroyEPS0_) +STUB( + "yxwzegj58Ow", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_18GameCustomDataItemENS1_15AppSTLAllocatorIS5_EEEEC2Ev) +STUB( + "yxy4kHYWWMo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE8capacityEv) +STUB( + "yxz4GKZkkUk", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEENS4_INS2_18ResponseHeaderBaseEEEE21setOnFinishedCallbackEPFvliS8_PvEPFvliSC_ESC_) +STUB( + "yxzkRt7CDVo", + _ZN3JSC12RegExpObject27getOwnNonIndexPropertyNamesEPNS_8JSObjectEPNS_9ExecStateERNS_17PropertyNameArrayENS_15EnumerationModeE) +STUB( + "yy0PGJk9uic", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEmmEi) +STUB("yy12gayUXxw", _ZN15AbstractStorage12LocalStorageC1ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB( + "yy3ImXGa340", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V18StatsApi19ParameterToGetStats17getnpServiceLabelEv) +STUB("yy4HvBpneq4", _ZN7WebCore11DisplayList7ClipOutD0Ev) +STUB("yy4ipwYOGJU", + _ZN3sce2Np9CppWebApi12Leaderboards2V122RecordScoreRequestBodyC2EPNS1_6Common10LibContextE) STUB("yy6C7k7FPZY", sceFiosArchiveUnmountSync) +STUB( + "yy83rJGsWXM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEE11release_refEv) +STUB("yyAMU7O65qY", glGetVertexAttribfv) +STUB( + "yyIzRZ+QVR8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEC2EPS8_) +STUB("yyJshE4eV3U", glCopyTexImage2D) +STUB( + "yyJslOmxzPQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEaSERKS9_) +STUB( + "yyKTEk6-KyY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEC1EPNS2_10LibContextE) +STUB( + "yyNIwzfKRk0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "yyPtD6VrTe0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V113BasicPresenceEEEEEEaSERSA_) +STUB("yyQokKTeeHw", + _ZN15AbstractStorage10YoutubeAPI6FinishERiRSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB( + "yyRldDO3aQw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEE8pushBackERKS8_) +STUB("yyUpxOH0BuQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEEC1Ev) +STUB("yyZpiLag+Hs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEEC2EPKS8_) +STUB("yyaxDUR3t1U", _ZN7WebCore9PageGroupC1ERKN3WTF6StringE) +STUB("yydppE2Vm94", mono_aot_Sce_Vsh_RnpsAppMgrWrapperplt) +STUB("yyg938MYX34", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorImEEE7get_refEv) +STUB( + "yykC20xgacA", + _ZN7WebCore22EmptyFrameLoaderClient31dispatchDecidePolicyForResponseERKNS_16ResourceResponseERKNS_15ResourceRequestEON3WTF8FunctionIFvNS_12PolicyActionEEEE) +STUB("yyrCVUOCeZo", _ZNK7WebCore11RenderStyle11fontCascadeEv) +STUB( + "yyropxy8qyc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEEC2ERSA_) +STUB("yyuK50fsLYY", _ZN3PAL13SleepDisablerD1Ev) +STUB( + "yyw-EeUuvsI", + _ZN7WebCore16JSXMLHttpRequest6createEPN3JSC9StructureEPNS_17JSDOMGlobalObjectEON3WTF3RefINS_14XMLHttpRequestENS6_13DumbPtrTraitsIS8_EEEE) +STUB("yywUvTJKKFw", mono_aot_Sce_Vsh_Orbis_Bgftplt_end) +STUB( + "yyxk72QSAsE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEC2EPS8_) +STUB( + "yyyKthMKUbg", + _ZN7WebCore10StorageMap11importItemsEON3WTF7HashMapINS1_6StringES3_NS1_11DefaultHashIS3_EENS1_10HashTraitsIS3_EES7_EE) +STUB( + "yz+J7tB05yU", + _ZN7WebCore23getHostnamesWithCookiesERKNS_21NetworkStorageSessionERN3WTF7HashSetINS3_6StringENS3_10StringHashENS3_10HashTraitsIS5_EEEE) +STUB( + "yz0nm8D5DqM", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE5abortEv) +STUB("yz5l9NVnL4I", WKContextConfigurationSetProcessSwapsOnNavigation) +STUB("yz62gWjUHa8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V17SubtaskEEEE8capacityEv) +STUB("yzAdSdSXLLE", _ZN7WebCore13JSDOMRectListC2ERKS0_) +STUB( + "yzF8vw51DOQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V525ContentInteractiveElementEEEEEEaSERSA_) +STUB( + "yzFv+QjUSMc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEEEEE7add_refEv) +STUB("yzHLxMQNAbo", _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile13unsetOnlineIdEv) +STUB( + "yzNS84mNFow", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEEmmEi) +STUB("yzNSwp-+G98", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEEC2Ev) +STUB( + "yzSTPk+NArM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEED2Ev) +STUB( + "yzSZ+EEapIE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("yzXDk7ReeKU", _ZN3JSC15createTypeErrorEPNS_9ExecStateERKN3WTF6StringE) +STUB("yzYn2Pwc2LM", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry12getSmallDataEv) +STUB( + "yzacyy-KxL4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEEneERKS9_) +STUB( + "yzassaFFdsw", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V126PlayerSessionMemberForReadEEEEptEv) +STUB("yzcKSTTCz1M", _ZGVNSt10moneypunctIcLb1EE2idE) +STUB("yzdPwfxKRnw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_12Leaderboards2V14UserEEEEmmEi) +STUB("yzdlZNaiebQ", _ZN7WebCore10JSDocument6s_infoE) STUB("yzeXuww-UWg", sceRudpPollCancel) +STUB("yzmRg-FYuDY", _ZN7WebCore8Settings26setSimpleLineLayoutEnabledEb) +STUB( + "yznuO1bJJds", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE4termEv) +STUB("yzr9X5laXEA", _ZN3JSC7Symbols27iterationKindKeyPrivateNameE) +STUB( + "yzrYgzJHIE4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V130MatchCompletionRateQuitMetricsEEEE6resizeEj) +STUB("yztlVAacZkA", mono_aot_I18N_Westmethod_addresses) +STUB("yzwDZ2BtHm0", mono_amd64_have_tls_get) +STUB( + "yzz5D5vIrEE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEC1EPKS8_) +STUB( + "z+-YaF-ukxw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEE4sizeEv) +STUB( + "z+8BceqAfpg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetPublicProfilesResponseEEEEEEC2ERKSA_) STUB("z+GEemoTxOo", scePadSetUserColor) +STUB("z+M1pu-ssOM", jpeg_finish_decompress) +STUB("z+P+xCnWLBk", _ZdlPv) +STUB("z+PKMme1cFU", + _ZN3sce2np10JsonParser17JsonParseCallbackEP13JsonParseInfoijjPKcPK12JsonValueElmiPv) +STUB("z+Tkc0MTS9E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V118PlayerForOfferReadEED2Ev) +STUB("z+TvcXz6sPE", _ZN3WTF22equalIgnoringASCIICaseEPKNS_10StringImplES2_) +STUB("z+WmkJ7BjqA", monoeg_g_hash_table_new) +STUB( + "z+aXXhCwtKU", + _ZN3sce2Np9CppWebApi14SessionManager2V120RequestPlayerSession28setExclusiveLeaderPrivilegesERKNS1_6Common6VectorINS5_6StringEEE) +STUB( + "z+bvJYf7eJ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V143PutPlayerSessionsSessionIdLeaderRequestBodyEEEEEEC2ERSA_) +STUB("z+cswsLsRSE", _ZN7WebCore29DeprecatedCSSOMPrimitiveValue13setFloatValueEtd) +STUB("z+dacXqbPiw", _ZN7WebCore17LibWebRTCProviderC1Ev) +STUB("z+fI+IuMKpY", u_memrchr_67) +STUB( + "z+gvuAl5Hs8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V120RequestPlayerResultsEEEED2Ev) +STUB("z+hRdf8ZPp0", _ZN3JSC19HeapSnapshotBuildernwEmPv) +STUB( + "z+kaUbOPFLE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEC1EPS8_) STUB("z+lnWWgaXlI", sceDebugGetProcessTime) +STUB("z+rxFarLiwM", WKPreferencesSetWebAnimationsEnabled) +STUB( + "z+wbQ82XMCE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEEEmmEv) +STUB( + "z+wmg9OZiSo", + _ZN9Inspector21PageBackendDispatcher12snapshotRectElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("z--DdTsSd4w", rgctx_fetch_trampoline_mrgctx_79) +STUB("z--iL8XnFKQ", uiter_setString_59) +STUB("z-3YG9nlhWE", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_7NpUsersEE3getEv) +STUB("z-6lKUn6pp8", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TSS7TssDataEE12deepCopyFromERS7_) +STUB( + "z-D2EJg5sQw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V129GetMultiVariablesResponseBodyEEEEC1EPS8_) +STUB("z-DYQLnvrPc", _ZN3sce2Np9CppWebApi11Matchmaking2V110UserTicket11setPlatformERKNS3_8PlatformE) STUB("z-I94rQUMRY", sceNpManagerIntSigninByJsonUserInfo) +STUB("z-L6coXk6yo", _ZGVNSt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE2idE) +STUB( + "z-NcSCRIgls", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE10setContextEPNS2_10LibContextE) +STUB("z-Nqg5KFtBU", WKDictionaryAddItem) +STUB("z-OrNOmb6kk", _Tgamma) +STUB( + "z-RFmuQiLt4", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE8capacityEv) STUB("z-RMILqP6tE", sceHmdTerminate) +STUB("z-UyIf+UXpY", _ZN3JSC15constructNumberEPNS_9ExecStateEPNS_14JSGlobalObjectENS_7JSValueE) +STUB("z-Vtoq+OkUU", _ZN7WebCore14SQLiteDatabaseD1Ev) STUB("z-Vz1l8rYNg", sceVnaOpenTtsStream) +STUB("z-Wy213lFiE", _ZN9Inspector22InspectorDebuggerAgentD2Ev) +STUB("z-XjOZ0TwXc", _ZN10Deprecated12ScriptObjectC1EPN3JSC9ExecStateEPNS1_8JSObjectE) STUB("z-hJNdfLRN0", sceUserServiceGetPbtcThursdayDuration) +STUB("z-lDAneweNE", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_28NpSessionDetailedInformationEEC2Ev) STUB("z-lbCrpteB4", sceUserServiceSetIPDRight) STUB("z-m061OoEqQ", sceFontGraphicsAgcDrawupFillTexturePattern) +STUB( + "z-mxgF+KRdc", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14SessionManager2V134PostGameSessionsSearchResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_15TransactionBaseIT_T0_EE) +STUB( + "z-ni1MWLxh4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEneERKS9_) +STUB( + "z-ra1pfxiig", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127RequestTemporaryTeamResultsEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("z-uF5OT+NqU", _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEE3endEv) +STUB( + "z-zTGYp5L98", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V224TestForProfanityResponseEEEEEEC2Ev) STUB("z0+0gXUJWs8", sceHmd2ReprojectionClearUserEventStart) STUB("z02CN9uBlVE", sceDebugGetProcessCoredumpHandlerResult) +STUB("z05p5xr2UAI", _ZN3JSC22EdenGCActivityCallback12lastGCLengthEv) +STUB( + "z09sb3eZmAQ", + _ZN3sce2Np9CppWebApi14SessionManager2V123SearchAttributesFactory7destroyEPNS3_16SearchAttributesE) +STUB("z0DbvoZ0C0Y", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_4Auth7IdTokenEE12deepCopyFromERS7_) +STUB( + "z0KUGQCUATM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEEE4sizeEv) STUB("z0KtN1vqF2E", sceHmdReprojectionQueryGarlicBuffSize) +STUB("z0LZTCiy0KM", Java_sun_misc_Signal_findSignal) +STUB("z0LjFRRF9Ms", _ZN7WebCore9HTMLNames16aria_currentAttrE) +STUB( + "z0Mf-vP-2xY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V126RequestPlayerSessionPlayerEEEEeqERKS9_) +STUB("z0OhwgG3Bik", __unordsf2) +STUB( + "z0RuBPo00RM", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi35ParameterToSetGameSessionPropertiesaSERS5_) +STUB( + "z0V4DTOb6qU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V113ErrorResponseEEEEEE11get_deleterEv) +STUB("z0ZEvJEipiI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_11Matchmaking2V112TicketStatusEEC1EPS6_) +STUB("z0azszTZ1ic", _ZN3sce7Toolkit2NP20JoinNpSessionRequestC1Ev) +STUB("z0b3IxfaSbI", _ZN15AbstractStorage14TwitterContent8SeekTimeElPl) +STUB( + "z0coF0P1vZ4", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE5eraseENS2_13ConstIteratorIS6_EERS9_) +STUB("z0dtnPxYgtg", chmod) +STUB("z0h7iE7V9z0", _ZN7WebCore24parseHEVCCodecParametersERKN3WTF6StringE) STUB("z0rTBoG5zX8", sceDebugIpmiGetEncryptedInfoAllForCoredump) +STUB("z0tS2-PZwoE", SSL_CTX_use_certificate_file) +STUB( + "z0vfBXlLZNA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V55ErrorEEEE8capacityEv) +STUB( + "z0z0TDsrMxQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V140PutPlayerSessionsNonPsnLeaderRequestBodyEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) STUB("z0zd9JqbxYs", sceFiosPrintf) +STUB("z1-BWq3Vxa4", _ZNK7WebCore4Node9renderBoxEv) +STUB("z1EfxK6E0ts", _Feraise) +STUB("z1Gkrg6ifyk", _ZTVN4IPMI4impl10ClientImplE) +STUB("z1H3Jl70X1A", _ZN7WebCore8SVGNames15baseProfileAttrE) +STUB( + "z1HxbeZHC94", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEEEEplEm) +STUB( + "z1IULOyUpdw", + _ZN3JSC23VariableWriteFireDetail5touchERNS_2VMEPNS_13WatchpointSetEPNS_8JSObjectERKNS_12PropertyNameE) STUB("z1JA8-iJt3k", sceSaveDataBackup) +STUB( + "z1JTu75g0WE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59PublisherEEEED2Ev) +STUB( + "z1NjcNd08ug", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEeqERKS9_) +STUB("z1SfUFSYPJA", + _ZN3sce2Np9CppWebApi11Matchmaking2V13Api23ParameterToCancelTicket11setticketIdEPKc) STUB("z1SpoQyfYqk", sceNpRemotePlaySessionSignalingTerminate) +STUB("z1TlnsoaCKY", _ZN9Inspector24RemoteControllableTargetD0Ev) STUB("z1Uh28yzDzI", sceUserServiceSetVoiceRecognitionLastUsedOsk) +STUB("z1YKwAsz6gY", + _ZNK3sce2Np9CppWebApi14SessionManager2V120GameSessionSpectator6toJsonERNS_4Json5ValueEb) +STUB("z1hZfQC1mSU", mono_metadata_interfaces_from_typedef) +STUB( + "z1kqaAL3nxA", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE5abortEv) +STUB("z1lqKZwIEns", _ZTVN7WebCore13MediaStrategyE) +STUB("z1tp1K1MZf8", mono_aot_Sce_Vsh_VoiceAndAgentplt) +STUB("z26WFyCE4+Q", tls_connect) +STUB( + "z2BhX-rQywA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEEE4sizeEv) +STUB("z2FYWrVpatI", mono_aot_Sce_Vsh_Sticker_StickerLibAccessorjit_code_start) +STUB( + "z2Fzmwg267Y", + _ZN3sce2Np9CppWebApi14SessionManager2V127GameSessionSpectatorFactory6createEPNS1_6Common10LibContextERKmRK13SceNpOnlineIdPKcSE_PNS5_12IntrusivePtrINS3_20GameSessionSpectatorEEE) +STUB("z2Sl4DL-zCc", PEM_X509_INFO_read_bio) +STUB( + "z2VQDdlIm3s", + _ZN7WebCore21NetworkStorageSession18grantStorageAccessERKNS_17RegistrableDomainES3_N3WTF8OptionalINS4_16ObjectIdentifierINS_19FrameIdentifierTypeEEEEENS6_INS_18PageIdentifierTypeEEE) +STUB("z2YMNmnyqa0", _ZNK7WebCore4Node13ownerDocumentEv) +STUB( + "z2aX9S2FMuQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE8copyFromERKS9_) +STUB( + "z2aYcRAMzoQ", + _ZN3sce2Np9CppWebApi14SessionManager2V135ResponseGameSessionSpectatorFactory6createEPNS1_6Common10LibContextERKmPKcPNS5_12IntrusivePtrINS3_28ResponseGameSessionSpectatorEEE) STUB("z2duB-hHQSM", sceAgcSetShRegIndirectPatchAddRegisters) +STUB( + "z2ezH9cCCGI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE4termEv) +STUB( + "z2glQGAAkDw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "z2gs+BXVPvg", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE7releaseEv) +STUB("z2y1t0rVKEc", mono_aot_Sce_PlayStation_Orbis_Speechjit_code_start) +STUB("z2yvgjNhOPQ", _ZNK3sce2Np9CppWebApi14SessionManager2V116SearchAttributes12string2IsSetEv) +STUB("z3-e09j9-zc", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_setMixerPanPosition) +STUB( + "z3-wKu+cAFo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEC2Ev) +STUB("z387+4GRGtY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament6EventsEE5resetEv) STUB("z394AzuRItE", sceM4aacEncDeleteEncoder) +STUB("z3CYZN32+ow", _ZN7WebCore19StorageQuotaManager30requestSpaceOnBackgroundThreadEm) STUB("z3HMx6djzdM", sceUpsrvUpdateDoUpdateWithPupInfo) +STUB("z3IKYu5KIFA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V124RequestCooperativeResultEEC1Ev) +STUB("z3KIaLSG3Bg", u_memchr_67) +STUB( + "z3Opyiz81Ds", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEEmmEi) +STUB("z3SbEVzLxhw", _ZN3sce3pss4core5audio11SoundPlayer23MoveSurroundPanDistanceEfd) +STUB( + "z3TOxjSf8Bg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEE7popBackEv) +STUB("z3UIha9ZNvQ", uregex_setUText_67) +STUB("z3VLCO88RDo", _ZN3JSC8Bindings8InstanceD2Ev) +STUB( + "z3XElKbvc00", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEmmEi) +STUB( + "z3deRJnnUhg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V122GetMatchDetailResponseEEEE3endEv) +STUB("z3hCBPUQbs4", _ZN7WebCore6JSNode22visitOutputConstraintsEPN3JSC6JSCellERNS1_11SlotVisitorE) +STUB( + "z3id8GlN+Hc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB("z3lrumdQe0c", _ZN3JSC17DeferredWorkTimerC2ERNS_2VME) +STUB("z3qLvuQ6R8w", JSObjectSetProperty) +STUB("z3w2MHaHX7Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEED2Ev) +STUB( + "z41NP05uU3E", + _ZN3sce2Np9CppWebApi10Activities2V114UserActivities11ActivityApi28ParameterToGetUserActivitiesC1Ev) +STUB( + "z443k3CYNz0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEEE8pushBackERKS8_) +STUB("z48tr3-Vl60", __asan_stack_malloc_always_10) +STUB("z4ANp4VBCxw", _ZN7WebCore8SVGNames10heightAttrE) +STUB( + "z4AgeSXRHhQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEC2EPS8_) +STUB( + "z4E6CW0IONg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEEcvbEv) +STUB( + "z4HO35XViqM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE7reserveEi) +STUB( + "z4NdheepadQ", + _ZN3sce7Toolkit2NP2V28Matching13getAttributesERKNS3_7Request13GetAttributesEPNS2_4Core8ResponseINS3_12Notification11RefreshRoomEEE) +STUB("z4R2v+SShUE", _ZNK3sce2Np9CppWebApi11UserProfile2V124GetPublicProfileResponse10getAboutMeEv) +STUB("z4SY18ookLQ", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112GroupingTypeEEEEptEv) +STUB( + "z4UYNF29AJM", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) STUB("z4VKVtL7JbU", sceLoginMgrServerGetSharePlayAllowPadOperation) +STUB( + "z4Wqx0JeICU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEE21intrusive_ptr_add_refEPS9_) +STUB("z4bPTXR6wP0", monoeg_g_logv) +STUB("z4lurSzVfZs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEED1Ev) +STUB("z4rLQmYM8dU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEptEv) +STUB("z4rX4Whh8hQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEEmmEi) +STUB( + "z4vr9yeGgtc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "z4whJe4tMVc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "z4z3Ms3nx+s", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi31ParameterToCreatePlayerSessions32getpostPlayerSessionsRequestBodyEv) +STUB("z4zamLphAP4", NetCtlGetDeviceTypeNative) +STUB( + "z5-9rMlVrqI", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEC2EPS8_) +STUB("z506+nKTUW4", + _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead16customData1IsSetEv) +STUB("z507GOpYdG4", _ZN3sce7Toolkit2NP30GameCustomDataThumbnailRequestC2Ev) +STUB("z512iNLrlSs", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V110UpdateModeEE7reserveEi) +STUB( + "z542ftrjD5A", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponsePlayerSessionInvitationEEEEEEptEv) +STUB("z554oW2MmsQ", + _ZN7WebCore24CoordinatedGraphicsLayer22setBackdropFiltersRectERKNS_16FloatRoundedRectE) +STUB("z56G4GxeH6E", _ZN3sce7Toolkit2NP2V210Tournament17TournamentDetailsD2Ev) +STUB("z58h5a5HWwI", WKArrayCreate) +STUB( + "z59+jN37VKg", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEdeEv) +STUB( + "z59MnCxoQlU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE8pushBackERKS8_) +STUB("z5DeosSQuyc", JVM_GetThreadStateValues) +STUB( + "z5EVhYRTDk8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC1ERSA_) +STUB("z5F7djFOXd4", _ZN3sce2Np9CppWebApi15Personalization2V121GetAccessCodeResponse7setCodeEPKc) +STUB( + "z5Gm6x3HnB0", + _ZN7WebCore6Editor13rangeOfStringERKN3WTF6StringERKNS1_8OptionalINS_11SimpleRangeEEENS1_9OptionSetINS_14FindOptionFlagEEE) +STUB("z5Gy5T3tptE", __asan_after_dynamic_init) +STUB("z5INA8l9gKQ", _ZNSt9basic_iosIcSt11char_traitsIcEED0Ev) +STUB( + "z5LyeOaxkUU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEEmmEv) STUB("z5ST9CIgHa0", sceDepthEnableExtendedMode) +STUB("z5Sm+kGDagU", ucsdet_detect_67) +STUB( + "z5YziVxtk9o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEE5resetEPS9_) +STUB("z5bryflAZCo", mono_type_get_signature) STUB("z5e9ck9iUDc", sceApplicationCrashSyscore) +STUB("z5gEC3cj9vo", _ZN7WebCore12JSAudioTrackD1Ev) +STUB( + "z5hFI7uip88", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEeqERKS9_) +STUB("z5jq0pKMIkw", delegate_virtual_invoke_imt_2_p) +STUB("z5jzThJoxXg", uspoof_check2UTF8_67) +STUB("z5kGCpRaSFo", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEEC1EPS8_) STUB("z5kwfM5InpI", _sceNpFree) +STUB("z5ob91+BOkA", _ZNK7WebCore18SecurityOriginData18databaseIdentifierEv) +STUB("z5ornO9coA4", _ZNK3sce2Np9CppWebApi14SessionManager2V117GameSessionPlayer11getPlatformEv) +STUB("z5r7s1+31jo", delegate_virtual_invoke_imt_25) +STUB( + "z5s1gdxTM10", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEC2EPKS8_) +STUB("z5tDEL9yymw", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V12ToEEC2ERKS7_) +STUB( + "z5uV+Nn-cxk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEEE3endEv) +STUB("z5ufrutjJsA", _ZN7WebCore12JSTimeRangesaSERKS0_) +STUB( + "z60dlTRdpbU", + _ZN3JSC17JSArrayBufferView19ConstructionContextC1ERNS_2VMEPNS_9StructureEjjNS1_18InitializationModeE) +STUB("z64HadEjQZI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEcvbEv) +STUB( + "z6HhXyflYX0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124RequestCompetitiveResultEEEEmmEi) +STUB( + "z6IzPp3PC4Q", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEC1EPS8_) +STUB("z6JPqb0S0zU", __sanitizer_print_stack_trace) +STUB( + "z6VhdWSdeKo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEEaSERSA_) +STUB("z6Vqe4T3DoA", __tsan_atomic_thread_fence) +STUB( + "z6Xp3cGxIhk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEEE5beginEv) +STUB( + "z6dqUcgK22s", + _ZNK3sce2Np9CppWebApi14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBody6toJsonERNS_4Json5ValueEb) STUB("z6eJnrUEaVY", sceOpusCeltDecCreateEx) STUB("z6eXJFh2VAE", sceUpsrvTerminate) +STUB("z6gjSOYHpk8", mono_aot_Sce_Vsh_GameCustomDataplt_end) +STUB("z6jlVGfI9+g", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Ranking12RangeOfRanksEE19setCustomReturnCodeEi) STUB("z6kAEifN7go", sceCesUtf32beToGb) +STUB("z6mHjcDTRm4", _ZN3sce7Toolkit2NP2V29Challenge18ChallengeThumbnailD2Ev) +STUB("z6n1CGBcIn0", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V15EntryEEEE5emptyEv) +STUB("z6nXBwR0J5k", + _ZN3sce7Toolkit2NP15AppSTLAllocatorISt4listINS1_15CategoryInfoSubENS2_IS4_EEEEC2ERKS7_) +STUB( + "z6vV+ZxOCmA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE21intrusive_ptr_sub_refEPS9_) +STUB("z6wKQLUIVUU", uldn_regionDisplayName_67) +STUB( + "z6yueun0fMQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V126PlayerSessionMemberForReadEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("z755FgX+8GE", _ZN7Nicosia9AnimationC2ERKS0_) +STUB( + "z75X3Tqhssk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V154PostPlayerSessionsSessionIdMemberSpectatorsRequestBodyEEaSERKS7_) +STUB( + "z77J-ldy4oc", + _ZN3sce2Np9CppWebApi15Personalization2V110ContentApi23ParameterToSendCallback12seteventTypeEPKc) +STUB("z78RX2DPoZ4", usearch_first_67) +STUB( + "z7BFj3KcgSo", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEC1Ev) +STUB("z7D3a8pXEeE", CpsInitKey) +STUB( + "z7LCAQx7gnA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEEEEE11release_refEv) +STUB( + "z7N8RKn67Gc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118RequestGameSessionEEEEC2EPS8_) +STUB("z7STeF6abuU", _Mtxinit) +STUB( + "z7Uq-Soo9bs", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEEptEv) +STUB("z7VF3vt+2D4", _Printf.fbit) +STUB("z7WVEeHImSw", _ZN3sce2Np9CppWebApi12Leaderboards2V19RecordApi26RecordScoreResponseHeadersC1Ev) +STUB("z7XcwQNqw2A", rgctx_fetch_trampoline_rgctx_19) +STUB("z7Xe6MIhQvA", _ZN3sce2Np9CppWebApi13InGameCatalog2V55ImageD1Ev) +STUB("z7aCCd9hMsI", __fpclassifyf) +STUB("z7aM3BYr4tA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V111ErrorEntityEE7add_refEv) +STUB("z7dJxs3w7Ro", mono_aot_System_ServiceModeljit_got) +STUB("z7ey00+6y+Q", _ZN3WTF10nullStringEv) +STUB("z7fnKAMX0-o", il2cpp_add_internal_call) STUB("z7p4mxbkli0", sceNpTrophy2SystemGetTrpIconByUri) +STUB( + "z7qlJZ6B0po", + _ZN9Inspector24NetworkBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) STUB("z7vL5ivaWso", sceCesJisX0213ToSJisCode) +STUB( + "z8+hp1Jme1M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_30CommunicationRestrictionStatus2V324ValidationConstraintInfoEE7add_refEv) +STUB("z83caOn94fM", _ZNSt6chrono12steady_clock12is_monotonicE) +STUB("z8BXNyMol8M", _ZN3JSC13InferredValue15notifyWriteSlowERNS_2VMENS_7JSValueERKNS_10FireDetailE) +STUB( + "z8G7RPpLkVw", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEEC2Ev) +STUB("z8GPiQwaAEY", _malloc_init) +STUB("z8Hv8TPbCx0", _ZN7WebCore9HTMLNames11standbyAttrE) +STUB("z8I2q5Id9Jc", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS16FriendsVariablesEE12deepCopyFromERS7_) +STUB( + "z8Ii6vFJINw", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123ResponsePlayerStatisticEEEEEEptEv) +STUB( + "z8L912eEkBg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEEC2EPKS8_) +STUB("z8MkteJw5yU", mono_aot_ReactNative_Vsh_Commonunbox_trampoline_addresses) STUB("z8N+d7DLC4E", sceOpusCeltDecCreate) STUB("z8RCP536GOM", sceNpTrophySystemBuildGroupIconUri) +STUB("z8TY8SaPtIw", _ZN9Inspector24CanvasFrontendDispatcherC2ERNS_14FrontendRouterE) +STUB( + "z8ZDxKfrziU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "z8ZXesSA7C8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V111GameSessionEEEEdeEv) +STUB("z8gA40d5yuA", coil_dlopen) +STUB("z8lecpCHpqU", __atomic_exchange_1) +STUB("z8qO7hql4Fs", _ZN3sce2np12StreamReader8ReadDataEPNS0_6HandleEPNS0_9StreamCtxEPvmPm) +STUB( + "z8r-78IHT9w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("z8s5YSelTK8", _ZN3JSC16SamplingProfiler5startEv) +STUB( + "z9+UX01RREc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEED2Ev) +STUB( + "z91xEea5wRM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V118CreateMatchRequestEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "z93VO3rMDCk", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEEEeqERKS9_) +STUB( + "z95sA8VSQQA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119MatchCompletionRateEEEEaSERKS9_) +STUB( + "z9DMp7xPkyc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V122SetDataInfoRequestBodyEEEEEE7get_refEv) +STUB("z9Dal4vwKOQ", _ZN7WebCore10ScrollView4hideEv) +STUB( + "z9KcfrNjtn4", + _ZN3sce2Np9CppWebApi14SessionManager2V136PostPlayerSessionsRequestBodyFactory7destroyEPNS3_29PostPlayerSessionsRequestBodyE) +STUB("z9LJMgz0BNs", _ZN7WebCore9HTMLNames13scrollingAttrE) +STUB("z9NY+Mq4PAI", shmctl) +STUB( + "z9Nq3U0135g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V122RequestMatchStatisticsEEEEEE3getEv) +STUB( + "z9PBkeipTVg", + _ZN9Inspector31RuntimeBackendDispatcherHandler20AwaitPromiseCallbackC2EON3WTF3RefINS_17BackendDispatcherENS2_13DumbPtrTraitsIS4_EEEEi) +STUB( + "z9T5eoicGQs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119RequestInGameRosterEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB( + "z9UgOZxV3ss", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEE6resizeEj) +STUB("z9VhBzk67Yw", _ZN7WebCore18TextureMapperLayer11setPositionERKNS_10FloatPointE) +STUB("z9Wsaf34JA4", FT_Request_Metrics) +STUB("z9YQIyuTMV4", FTA_Remove_Module_raster1) +STUB("z9ZK6EHEF3M", _ZN3sce7Toolkit2NP22GetSharedVideosRequestC2Ev) +STUB("z9bFNJbPeCs", Java_java_lang_Class_forName0) +STUB("z9dJVj8OPBI", ucnv_MBCSGetUnicodeSetForUnicode_67) +STUB( + "z9duV0JPOqA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEEppEv) +STUB( + "z9eFvGusjMA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) STUB("z9hgjLd1SGA", sceAppContentGetAddcontInfoByEntitlementId) +STUB("z9oMRRuS3fk", _ZN9Inspector21InspectorConsoleAgentdaEPv) +STUB("z9rAJ6lhtiM", _ZN7WebCore11DisplayList8DrawRectC2ERKNS_9FloatRectEf) +STUB( + "z9rLcJ-4ZJw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEEaSERSA_) +STUB( + "z9vqrN1CUBU", + _ZN7WebCore11DOMRectListC2ERKN3WTF6VectorINS_9FloatRectELm0ENS1_15CrashOnOverflowELm16ENS1_10FastMallocEEE) +STUB( + "z9vsJosXpSY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEC2EPKS8_) +STUB("z9x75h6MxPM", WKPreferencesGetServerTimingEnabled) +STUB("zA1zs85cN7o", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V115NatConnectivity6toJsonERNS_4Json5ValueEb) +STUB("zA203bO-dcI", mono_reflection_assembly_get_assembly) +STUB( + "zA6ixiRJpJI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129MatchCompletionRatePropertiesEEEEaSERKS9_) STUB("zA7Ortm3zGA", sceMusicFwSendMessageSynchronously) +STUB( + "zAB-1rdheDU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEE21intrusive_ptr_sub_refEPS9_) +STUB( + "zAC6t66Itvs", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEC1EPS8_) +STUB("zAHAj5CNMBk", ulistfmt_close_67) +STUB("zANZ8G7tRWs", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS16FriendsVariablesEE3getEv) +STUB("zARyDXgocuk", _ZN3sce2np3ipc17ServiceIpmiClientC2Ev) +STUB("zAXnjSRSwII", jvmciHotSpotVMStructs) +STUB("zAZawbpZMdY", udict_swap_67) +STUB("zAhjsTvP4tE", mono_shared_hashtable_set_destroy_func) +STUB( + "zAlOlNulooY", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE5clearEv) +STUB( + "zAmJ1SckBwA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19BandwidthEEEE7reserveEi) +STUB("zAvqfrR2f7c", _ZN3sce2np12NpTitleToken5ClearEv) +STUB( + "zB+J4T-G89Y", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEC2EPS8_) +STUB("zB+KjKIxT3U", _ZN3sce3Xml3Dom8DocumentD1Ev) +STUB("zB-63450NPk", _ZNK3WTF9BitVector12hashSlowCaseEv) STUB("zB0vaHTzA6g", sceNpTusGetMultiUserVariableVUser) +STUB( + "zB3r4stwlOc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities8ActivityEEEEEEC1ERKSB_) +STUB( + "zB8jxCeKNH8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponsePlayerSessionInvitationEEaSERKS7_) +STUB("zBBl5IJX2P4", + _ZNK3sce2Np9CppWebApi15ProfanityFilter2V223FilterProfanityResponse12messageIsSetEv) +STUB( + "zBCt-Jv4PIg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V123MemberWithMultiPlatformEEC1Ev) +STUB("zBHGQsN5Yfw", _ZNSt9_Num_base14min_exponent10E) +STUB("zBJIqidrETc", _ZN7WebCore9HTMLNames23onorientationchangeAttrE) STUB("zBLxX8JRMoo", sceUserServiceGetGlsCameraSize) +STUB( + "zBNzzqEI2I4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V110FromMemberEEEEEEaSERKSA_) +STUB("zBRMJA2kqGU", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7NpUtils5IdMapEED2Ev) +STUB( + "zBSHnQzKOvw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V113PlayerForReadEEEEEEaSERSA_) +STUB("zBVCQ3u6M80", _ZN7WebCore9HTMLNames18ondevicechangeAttrE) +STUB( + "zBYTOLFj9gM", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEptEv) +STUB( + "zBbHfKK1oFY", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEppEv) +STUB( + "zBbfvllFSSs", + _ZN9Inspector20DOMBackendDispatcher22getSupportedEventNamesElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "zBiSjW+RO4k", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEEEdeEv) +STUB( + "zBqaMCBgTJU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEEC2EPKS8_) +STUB( + "zByexg0V34g", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("zC+hnmcVEOw", _ZN15AbstractStorage4ItemC2ERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB( + "zC4vaUr+gEc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdMemberPlayersResponseBodyEEEE8capacityEv) STUB("zC6I4ty37NA", sceFontGraphicsSetupGlyphFillPlot) +STUB("zC7DdUja3a4", _ZN8Gigacage6mallocENS_4KindEm) +STUB( + "zC849BE7MJk", + _ZN9Inspector25NetworkFrontendDispatcher19responseInterceptedERKN3WTF6StringENS1_6RefPtrINS_8Protocol7Network8ResponseENS1_13DumbPtrTraitsIS8_EEEE) +STUB("zCB24JBovnQ", _ZNSt8numpunctIcE7_GetcatEPPKNSt6locale5facetEPKS1_) +STUB( + "zCEK6jdeT4E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEE5beginEv) +STUB("zCGvIdh-FLU", _ZN3sce2Np9CppWebApi7Matches2V113RemovedPlayer11unsetReasonEv) +STUB("zCIiOlzrCLs", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V132GetMultiDataStatusesResponseBody11offsetIsSetEv) +STUB( + "zCKopzhlo6k", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEeqERKS9_) +STUB( + "zCQ1x2VVnpw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEE7reserveEi) STUB("zCWZmXXN600", sceNpMatching2CreateJoinRoom) +STUB("zCZqrp8OkFY", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V113ErrorResponseC2EPNS1_6Common10LibContextE) +STUB("zCbL68Xfpdc", _ZN3sce7Toolkit2NP2V210Tournament17OfficialBroadCastC2Ev) +STUB("zCgYva0hGps", _ZN7WebCore10ISOFullBoxC1ERKS0_) +STUB( + "zCgvCRgAh40", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "zChnYfZg7og", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEC1EPS8_) +STUB( + "zCi5QdW+4ts", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi13reportResultsEiRKNS4_24ParameterToReportResultsERNS1_6Common11TransactionINS8_15DefaultResponseENS8_12IntrusivePtrINS8_18ResponseHeaderBaseEEEEE) +STUB("zCnSJWp-Qj8", optind) +STUB( + "zCnuvukOHLE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEC1EPKS8_) +STUB("zCqaT-DJauA", _ZNK7WebCore11MediaPlayer8fileSizeEv) +STUB("zCrPfqRak0U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEEC2ERS9_) +STUB( + "zCtu2b0uq40", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V116RequestMatchTeamEEEEixEm) +STUB("zCv2XqjG0EM", _ZN3sce7Toolkit2NP26GameCustomDataItemsRequestC2Ev) +STUB("zCvvTlRfuq0", _ZNK7WebCore22SkewTransformOperation5cloneEv) +STUB( + "zCxANLkDXiY", + _ZN3sce2Np9CppWebApi14SessionManager2V126RequestPlayerSessionPlayerC1EPNS1_6Common10LibContextE) +STUB( + "zD6sQvhfB9M", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V318PsnWebErrorWrapperEEEED2Ev) +STUB( + "zDA3WR2zMvc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB("zDG5Hx6Y3F0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEEC2Ev) +STUB("zDNEy9hON-w", WKNavigationResponseCanShowMIMEType) +STUB("zDPcKA7Kt7k", ustrcase_getTitleBreakIterator_67) +STUB( + "zDQkDLdA04o", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V28PSNErrorEEEEC2Ev) +STUB("zDRP63kmmWM", _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEED1Ev) +STUB( + "zDTR7vNoYGM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEEC1Ev) +STUB("zDTxL-Jz1iM", + _ZNK3sce2Np9CppWebApi14SessionManager2V120PlayerSessionForRead14getCustomData2Ev) STUB("zDeGymmw1lg", sceSdmaConstantFillNonBlocking) STUB("zDeH4tr+0cQ", sceNpTusDeleteMultiSlotDataVUserAsync) +STUB("zDhfzUr-oQ8", mono_context_get) STUB("zDjF2G+6tI0", sceNpTrophyConfigGetTrophyGroupArray) +STUB( + "zDljReZqK70", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEE3endEv) +STUB("zDr2ObG0dkA", _ZN7WebCore8Document8referrerEv) +STUB( + "zDzVRv7Ymls", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEEEixEm) STUB("zE+R6Rcx3W0", sceNpWebApiDeletePushEventFilter) STUB("zE-wXIZjLoM", sceKernelDebugRaiseExceptionOnReleaseMode) +STUB("zE0V+0aouZ4", FT_Match_Size) STUB("zE2ws3Iyrqc", sceDepthSetSrTnrParameter) +STUB("zEABHq1m74A", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesBySlotC2Ev) +STUB("zECbYPJ4I2I", WKPreferencesGetCaptureAudioInGPUProcessEnabled) STUB("zEDkUWLVwFI", sceSharePlayStopStandby) +STUB("zEDr9rVnQcY", _ZN15AbstractStorage17DailymotionFolder6RemoveEb) +STUB("zEGWE+DCdMk", _Z19Ime_ConfigSetNativeimji) +STUB("zEIsQ9w0db4", _ZN7WebCore9HTMLNames5brTagE) +STUB("zEJf7JZDmrM", _ZN3sce3pss5orbis9framework27TerminatePsmFrameworkCsharpEv) +STUB( + "zEU+nypnr-0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEC2Ev) +STUB( + "zEW67Sgzjmw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEptEv) +STUB("zEWBWsEG9kU", WKPreferencesSetPaginateDuringLayoutEnabled) +STUB( + "zEYSnuUGoPA", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEE17getNpWebApi2ReqIdEv) STUB("zEZvGyjEhuk", sceNpIdMapperOnlineIdToAccountId) +STUB("zEdJ-HenBsU", _ZN9Inspector34ApplicationCacheFrontendDispatchernaEm) +STUB( + "zEe6hoQ1Vxg", + _ZN3sce7Toolkit2NP2V27Ranking11setGameDataERKNS3_7Request11SetGameDataEPNS2_4Core8ResponseINS3_17SetGameDataResultEEE) +STUB("zEhcQGEiPik", _ZTSSt12length_error) STUB("zEmi6zvei2k", sceKernelIccGetThermalAlert) +STUB( + "zEvc7FGhxwc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEmmEv) +STUB( + "zExF+36MYnw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120ResponseInGameRosterEEEEEEaSERKSA_) +STUB( + "zEzcoGd2VIc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V110UserTicketEEEEEE11get_deleterEv) +STUB( + "zF1QELCDU5Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEE5clearEv) +STUB( + "zF20vau6Gyo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEEEE7get_refEv) +STUB("zF2GfKzBgqU", _ZNKSt7_MpunctIwE13do_pos_formatEv) +STUB( + "zF3+HPq-P7c", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataBySlot13setaccountIdsEPKc) +STUB( + "zF3VlJ4G-SE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V123RequestTeamMemberResultEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("zF3d9oawtRw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEE7get_refEv) +STUB("zF4GnUv7KPw", _ZN3JSC13WatchpointSetC2ENS_15WatchpointStateE) +STUB( + "zF5a3efos8I", + _ZN3sce7Toolkit2NP9Utilities6FutureISt6vectorINS1_20ChallengeRecvDetailsENS1_15AppSTLAllocatorIS5_EEEEC1Ev) +STUB("zF66yDnWH54", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorIfEptEv) +STUB( + "zF7dzaagi3E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEE8capacityEv) STUB("zF8-CRvRXnM", sceFiosFileGetSizeSync) +STUB( + "zF9zZPTLj1k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "zFDPaFShCH8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEED1Ev) +STUB( + "zFF0NupB5UU", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE5eraseENS2_8IteratorIS8_EERSB_) STUB("zFJ35q3RVnY", scePadShareOutputData) +STUB( + "zFJpPeyi6Rc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEE7add_refEv) +STUB( + "zFaDWFqNfmY", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V520ContainerRatingCountEEEEC1Ev) +STUB("zFaau6WD5yo", _ZN7WebCore17computeCurrentAgeERKNS_16ResourceResponseEN3WTF8WallTimeE) +STUB( + "zFeD29zehXY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEED1Ev) +STUB("zFeUNwT+TAA", _ZN3sce7Toolkit2NP2V212EventsClient5EventD2Ev) STUB("zFgFHId7vAE", sceNpSignalingGetPeerNetInfo) +STUB( + "zFpZuFxyNZU", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEcvbEv) +STUB( + "zFqCywstLec", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE17setNpWebApi2ReqIdEl) +STUB("zFttNR+XSE0", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V511ContentTypeEEppEi) +STUB("zFwPB6djiUE", png_get_image_width) +STUB("zFwxBZREkG8", _ZN3WTF5MutexC1Ev) +STUB( + "zFx3cpsLY5g", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchDetailRequestEEEEeqERKS9_) +STUB( + "zFyAsx7-orM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEC1Ev) +STUB("zG0BNJOZdm4", optarg) +STUB("zG5fn-2qo3Q", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEcvbEv) +STUB("zGBlsQBANKs", mono_property_hash_insert) +STUB( + "zGG1mZT8ZDI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEEEC1EPS9_PFvSB_EPNS2_10LibContextE) +STUB("zGHnh4mo8-0", _ZN4Manx8ImeEventC1ENS0_12ImeEventTypeEPKci) +STUB("zGIJZUsq5OU", _ZNK3sce2Np9CppWebApi7Matches2V120ReportResultsRequest15getMatchResultsEv) +STUB( + "zGQgdfLJtbo", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEEEptEv) +STUB("zGS-34LirNE", jpeg_CreateCompress) +STUB( + "zGTI6eF4BCs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEEEEED1Ev) +STUB("zGaiJod9Vic", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session9SessionIdEED1Ev) +STUB("zGcivYiZ-Q4", + _ZNSt9_FacetptrISt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEE6_PsaveE) +STUB("zGkrCJ8+koo", __tsan_read8) +STUB("zGpCWBtVC0A", _ZTSc) +STUB( + "zGpSrzcgkj8", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V15ErrorEEEEplEm) +STUB("zGsaQ8j2MsI", WKBundleFrameGetTypeID) +STUB("zGuhKwXM9I0", u_getUnicodeVersion) +STUB( + "zH+1V4o84ZA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEE11release_refEv) +STUB("zH8DY-gzCa0", uprv_add32_overflow) +STUB("zH9F3-83I8o", _ZN7WebCore9HTMLNames11bgcolorAttrE) STUB("zH9I3DE6iBE", sceCesUhcToUtf32be) +STUB("zH9KeMugav8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEC1ERKS7_) +STUB("zHD-PGImDeY", WKPageConfigurationSetPageGroup) +STUB("zHDtAQFFfxA", _ZN3sce7Toolkit2NP2V210Tournament15RegisteredUsersC2Ev) +STUB( + "zHDuFk78Evk", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi37ParameterToJoinGameSessionAsSpectator28getxPsnAcceptPlatformNamePs5Ev) +STUB( + "zHGvPFR4AN0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEEEppEi) +STUB("zHHFjV32y3E", mono_assembly_name_get_name) +STUB( + "zHT3vgiriqA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V12ToEEEE8pushBackERKS8_) STUB("zHchY8ft5pk", pthread_attr_destroy) +STUB("zHgIPaK+F4c", _ZN7WebCore21DiagnosticLoggingKeys8otherKeyEv) +STUB("zHjIa5t6Fz0", mparams .1) +STUB( + "zHkdGpzBaow", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V117InvitableUserTypeEEEE7get_refEv) +STUB("zHlSFNJABuA", _ZN9Inspector22InspectorDebuggerAgent7stepOutERN3WTF6StringE) +STUB( + "zHmatB66Uc8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEC2EPS8_) +STUB("zHpFxLUEX9Y", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container14getContentTypeEv) +STUB("zHshn8qPs3A", _ZN3sce2Np9CppWebApi11UserProfile2V112BasicProfile19unsetPersonalDetailEv) +STUB( + "zHt4dLyyO8M", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEEEneERKS9_) +STUB( + "zHtEdDbd-rE", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS4_INS2_18ResponseHeaderBaseEEEEC1ERKSB_) +STUB("zHtnGa2jFQs", _ZN3sce7Toolkit2NP2V27Ranking12FriendsRanks14MAX_NUM_BOARDSE) STUB("zHuMUGb-AQI", sceImeCheckRemoteEventParam) STUB("zHxRg0AUZm8", sceNpAsmClientClearNpTitleTokenA) STUB("zI+X8+h6dL8", sceUsbStorageDialogGetStatus) +STUB( + "zI0+8x15cVM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEC2Ev) +STUB("zI21P1K2XFE", Java_com_sony_bdjstack_init_Init_initJni) +STUB("zI5kPLikrZY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEC1Ev) +STUB("zI5tXeMaKWM", _ZNK7WebCore5Range12pastLastNodeEv) +STUB("zIA5MWzPQ0M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorINS2_6StringEEEEC2ERKS7_) +STUB( + "zIH1Tu81BNg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V115NatConnectivityEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "zIIwCm8D6Mg", + _ZN9Inspector14ConsoleMessageC1EN3JSC13MessageSourceENS1_11MessageTypeENS1_12MessageLevelEON3WTF6VectorINS5_12JSONLogValueELm0ENS5_15CrashOnOverflowELm16EEEPNS1_9ExecStateEm) STUB("zIKL4kZleuc", sceCameraSetAutoWhiteBalance) +STUB( + "zILnNJZ1nEE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEEEC1ERKSA_) STUB("zILy8t+5bPo", sceVideoOutSetBlankAfterResume) +STUB("zIMH5hIuWk4", _ZNK15AbstractStorage14YoutubeContent10GetServiceEv) +STUB("zINGw6gUtWg", _ZN9Inspector27DOMBackendDispatcherHandlerD2Ev) +STUB( + "zIVdwwhx75A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEC2ERKS7_) +STUB("zIVq000MUx0", _ZN12video_parser7cVpUtil13convTimeScaleEyjjPy) +STUB( + "zIX0xikzmSw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V124RequestGameSessionPlayerEEEEEED1Ev) +STUB( + "zIY7jVZ4d44", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEppEi) +STUB( + "zIYEJfpfjuI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V152PostPlayerSessionsSessionIdSessionMessageRequestBodyEEaSERS7_) +STUB( + "zIYQZDETN94", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V128RequestJoinGameSessionPlayerEEEEC2EPNS2_10LibContextE) +STUB("zIbIJFlXjcQ", _ZN3sce7Toolkit2NP2V211UserProfile10NpProfiles8deepCopyERKS4_) +STUB( + "zId64D3wiV0", + _ZN7WebCore33validateCrossOriginResourcePolicyERKNS_14SecurityOriginERKNS_3URLERKNS_16ResourceResponseE) +STUB("zIkzeuSbTuY", mono_btls_x509_verify_param_set_host) +STUB( + "zIlMU8UFgxs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V154GetUsersAccountIdPlayerSessionsInvitationsResponseBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("zIttPL4lCv0", _ZN7WebCore8JSPath2DD2Ev) +STUB( + "zIw1ThL82HA", + _ZN3JSC14CachedBytecode17addFunctionUpdateEPKNS_26UnlinkedFunctionExecutableENS_22CodeSpecializationKindEN3WTF3RefIS0_NS5_13DumbPtrTraitsIS0_EEEE) STUB("zIx-FcuPXVM", sceFiosCachePrefetchFHSync) +STUB( + "zJ-YkDHcwn4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V115LocalizedStringEEEEppEi) +STUB("zJ0+NAGTfXA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEdeEv) +STUB( + "zJ4SY5KYzI8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEE7get_refEv) +STUB("zJ8KXrFK1Zw", _ZNK7WebCore11MediaPlayer22documentSecurityOriginEv) +STUB("zJ8P2q3ZflM", glTexImage3D) STUB("zJGf8xjFnQE", sceNetSocketAbort) +STUB("zJJv8-ZagRU", rgctx_fetch_trampoline_mrgctx_10) +STUB( + "zJKKFhkA6hc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119BandwidthPropertiesEE7get_refEv) +STUB( + "zJKq1BgsXeQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V127ResponseTeamMemberStatisticEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB("zJMMllZfUL0", + _ZN3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V116InitialJoinStateEE3endEv) +STUB( + "zJOCiJmm1ig", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEED2Ev) +STUB("zJOq3ux6y4A", infoUnlock) +STUB("zJVbOMno+mw", _ZN3JSC7Symbols51hasObservableSideEffectsForStringReplacePrivateNameE) STUB("zJYi5br6ZiQ", sceHttpsDisableOptionPrivate) +STUB("zJcRJVOAmzk", __tsan_unaligned_write4) +STUB("zJdh+LWNjow", _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V110DataStatus13objectIdIsSetEv) STUB("zJkby7Eh+nE", sceClPthreadMutexattrSetprioceiling) +STUB("zJp4pTlyzGg", unumf_formatDouble_67) +STUB( + "zJr2h8Aqzjc", + _ZN3sce2Np9CppWebApi13InGameCatalog2V510SkuFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_3SkuEEE) +STUB("zK47IhHFaX0", mono_aot_Sce_Vsh_MyGameListunbox_trampolines) +STUB("zK5beUUFxPs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V16StatusEEEEC2Ev) +STUB( + "zK5n5dyaKqg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V122GameSessionPushContextEEEE5beginEv) +STUB("zK8u4xz5xgQ", _ZN7WebCore16CSSParserContextC1ERNS_8DocumentERKNS_3URLERKN3WTF6StringE) +STUB( + "zKFwDjXOFI0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEC1Ev) +STUB( + "zKHeo82lcSY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEEC2Ev) +STUB("zKM+7cHdQgc", _ZN6icu_6713UnicodeStringD1Ev) STUB("zKQEeM0cBVs", sceOpusCeltDecDecodeFloat) +STUB( + "zKTXf4wcOow", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V123SubmitTicketRequestBodyEEEEEEC1Ev) +STUB("zKX+287hwdQ", _ZN3JSC25JSInternalPromiseDeferred6s_infoE) +STUB( + "zKXmNQK6KVI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V129RequestPlayerSessionSpectatorEEEEEEdeEv) +STUB( + "zKaGzYZpT-w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124BandwidthUpstreamMetricsEEEEEED1Ev) +STUB( + "zKbDOY04vWM", + _ZN3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13unsetBoolean2Ev) +STUB("zKbg6elkzAk", _ZN7WebCore39rangeExpandedAroundPositionByCharactersERKNS_15VisiblePositionEi) +STUB("zKbm12dz0po", _ZN7WebCore11DisplayList18DrawFocusRingRectsD0Ev) +STUB("zKdA-gZaZSs", _ZN3JSC7Symbols26isBoundFunctionPrivateNameE) +STUB("zKg5AOZL6V0", _ZNK3WTF10StringImpl25endsWithIgnoringASCIICaseERKS0_) +STUB("zKo+GsSb3Ys", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ChildActivityEEEEppEi) STUB("zKoVok6FFEI", sceNpScoreGetGameData) +STUB( + "zKr048X2O6E", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "zKsrsHcA3z0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V116TaskAvailabilityEEEE6assignEPS8_PFvSA_EPNS2_10LibContextE) +STUB( + "zKuMrX5A4gQ", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEC2EPS8_) +STUB("zKudLmcrbCU", _ZN3sce7Toolkit2NP2V28Matching12Notification11RefreshRoomD2Ev) +STUB("zKxUpYXi21E", mono_shared_area_instances) +STUB( + "zL3O1lpg9WE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V153PostGameSessionsSessionIdMemberSpectatorsResponseBodyEEEEC2Ev) +STUB("zL45QQlAuTY", _ZN19ScePssCMediaDecoder19BufferedDecodeChunkEPKhjRjPsjS2_S2_) +STUB( + "zL6sVkPpQYE", + _ZN9Inspector22AuditBackendDispatcher8teardownElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("zL6yr+wPGX4", _ZN7WebCore8SVGNames16marker_startAttrE) STUB("zLEuSU+hl-w", sceKernelIccGetBDPowerState) +STUB("zLHSNIak9pY", _ZN3sce7Toolkit2NP2V28Presence7Request19LocalizedGameStatusD2Ev) +STUB( + "zLI13hYpwg8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEEEEneERKS9_) +STUB( + "zLIIPDJzf88", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11UserProfile2V114PersonalDetailEEEEC1Ev) +STUB( + "zLJs2QfSYzY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyEEEEEEcvbEv) +STUB("zLONlyzsrCU", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_12PresenceInfoEEC2Ev) +STUB("zLXFB83-JLc", uprv_decNumberCopyNegate_67) +STUB( + "zLXmtdb5CJM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "zLbJKsnjYSs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE10setContextEPNS2_10LibContextE) +STUB("zLc1BoKtSO0", _ZN12Mp4Retriever14processHdlrBoxEv) +STUB( + "zLcgdc+3oho", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V55ImageEEEEEE7get_refEv) +STUB( + "zLiEaayL+xE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V128AddAndGetVariableRequestBodyEEC2EPS6_PNS2_10LibContextE) STUB("zLlLc3h2Prk", scePthreadGetconcurrency) +STUB( + "zLor0OcYT5g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_15ProfanityFilter2V224TestForProfanityResponseEEEEixEm) +STUB("zLrVvtCBBuk", _ZN15AbstractStorage12LocalStorage13writeExternalESt10shared_ptrINS_7ContentEE) +STUB( + "zLun3X7uHtA", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEEptEv) +STUB("zLzJ8SYXeSg", _ZN3WTF11Persistence7EncoderC1Ev) +STUB( + "zM2exXWvRxc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V125GetBasicPresencesResponseEEEEEEptEv) +STUB("zM6YDpjXj9E", + _ZN7WebCore38updateResponseHeadersAfterRevalidationERNS_16ResourceResponseERKS0_) +STUB("zMA017igJyk", curl_msprintf) +STUB( + "zMB8hPRcBZ4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V112BasicProfileEEC2EPS6_PNS2_10LibContextE) +STUB("zMCYAqNRllc", __cxa_demangle) +STUB("zMD3bA26OQY", _ZN7WebCore16ResourceResponseC1ERKS0_) +STUB("zMIbxLolq6s", uplrules_select_67) +STUB("zMMLx4tVFf0", + _ZN3sce2Np9CppWebApi14SessionManager2V128RequestJoinGameSessionPlayer14setCustomData1EPKvm) +STUB( + "zMO5JYB-H7o", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V142PutGameSessionsSearchAttributesRequestBodyEEEE5emptyEv) +STUB("zMSZuyLqCAs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110ResultTypeEEEEC1ERKS9_) +STUB( + "zMSyHPD9hd4", + _ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchDetail10initializeEPNS1_6Common10LibContextEPKcNS6_12IntrusivePtrINS3_24UpdateMatchDetailRequestEEE) +STUB( + "zMV+5IFxYFI", + _ZN7WebCore20ApplicationCacheHost17maybeLoadResourceERNS_14ResourceLoaderERKNS_15ResourceRequestERKN3WTF3URLE) +STUB("zMV8Kfjy1iw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEC1ERS7_) +STUB( + "zMWivYh6Y50", + _ZN3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi42ParameterToPutGameSessionsSearchAttributesD2Ev) +STUB( + "zMYq1lIh+ig", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V124GameSessionMemberForReadEEEE8copyFromERKS9_) +STUB("zMZVwzkSsq8", _ZN7WebCore20DictationAlternativeC1Ejjm) +STUB("zMbMGN1EK10", _ZN7WebCore24GraphicsContextImplCairo13createFactoryEP6_cairo) STUB("zMetPkNDkYU", sceDebugIpmiGetSessionKidListByServerKid) +STUB( + "zMfXYgktE-g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE21intrusive_ptr_sub_refEPS9_) STUB("zMgXM79jRhw", sceSaveDataShutdownStart) +STUB( + "zMkVe6Vvnh8", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V15ErrorEEEE7popBackEv) +STUB("zMkimbaunbE", _ZN3sce2Np9CppWebApi14SessionManager2V111GameSession12setSessionIdEPKc) +STUB( + "zMm86Gk97pg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130ResponsePlayerSessionSpectatorEEEED1Ev) +STUB( + "zMvLwkAzZnI", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEEcvbEv) +STUB("zN1Nt4FdDG0", _ZN9Inspector28DOMStorageFrontendDispatcherdaEPv) STUB("zN3+nuA0SFQ", sceFontCharacterGetTextFontCode) +STUB("zN3LirRaa3I", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_11UserProfile2V110AvatarSizeEEC2EPKS6_) +STUB("zN3TYAlQEsk", WKPluginInformationMIMETypeKey) STUB("zN4908PoI3k", sceFaceTrackerGetWorkingMemorySize) +STUB( + "zNFXwqZwK-0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V15EntryEEEEEE11release_refEv) STUB("zNGh-zoQTD0", sceHttpRemoveRequestHeader) +STUB( + "zNLmf1sQQaE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V118CreateMatchRequestEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB("zNM-D6RGHAE", _ZN3sce2Np9CppWebApi12Leaderboards2V113ErrorResponseD1Ev) +STUB( + "zNR9uoRqWh4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "zNVLf+l2Dzw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE4sizeEv) +STUB("zNZ9d6sSrSo", _ZN12video_parser13cVideoPathMsvD2Ev) STUB("zNb6IxegrCE", sceNpLwCondDestroy) +STUB( + "zNcMnRWe-D8", + _ZN3sce2Np9CppWebApi7Matches2V131UpdateMatchStatusRequestFactory6createEPNS1_6Common10LibContextERKNS_4Json5ValueEPNS5_12IntrusivePtrINS3_24UpdateMatchStatusRequestEEE) +STUB( + "zNlZOe89edo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEEEE5resetEPS9_) STUB("zNnPUDTRrMw", sceHeadTrackerGetNumberOfRunningInstance) +STUB( + "zNuGs8h0rlc", + _ZN3sce2Np9CppWebApi14SessionManager2V145RequestCreatePlayerSessionNonPsnPlayerFactory7destroyEPNS3_38RequestCreatePlayerSessionNonPsnPlayerE) STUB("zNvCnHpkPmM", sceUserServiceGetPadSpeakerVolume) +STUB( + "zO5XEc0tfqI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBodyEEEEppEv) STUB("zO7NlO2unTI", sceCesUtf32ToMbc) +STUB("zO8MS-Rrk0U", _ZN7WebCore24CoordinatedGraphicsLayer20updateContentBuffersEv) +STUB("zO9CmE-GeKQ", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEE11get_deleterEv) STUB("zO9UL3qIINQ", sceRtcGetCurrentNetworkTick) +STUB("zO9inFdWORE", _ZTVN9Inspector23WorkerBackendDispatcherE) +STUB( + "zO9pvIb5Arw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEE11get_deleterEv) +STUB("zOA2tHzOY8I", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEptEv) +STUB( + "zOEJx7duNpI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113ErrorResponseEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "zOIdcGA+nvc", + _ZN3sce2Np9CppWebApi14IdentityMapper2V312IDMappingApi32ParameterToGetOnlineId2AccountId15setasOfDateTimeEPKc) +STUB( + "zOJqiT+vI-A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEE3endEv) +STUB("zOPA5qnbW2U", _ZNSt5ctypeIwED0Ev) +STUB("zOSPmCu3Voc", _ZN7WebCore6Editor24replaceSelectionWithTextERKN3WTF6StringEbbNS_10EditActionE) +STUB( + "zOX3bdLrtxY", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V120GameSessionSpectatorEEEEEiRNS2_10LibContextEPT_m) +STUB( + "zOb+JO+qnUI", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS2_6VectorINS4_INS1_14IdentityMapper2V311OnlineIdMapEEEEEEENS4_INS7_12IDMappingApi46ListEdgeOnlineId2AccountIdBatchResponseHeadersEEEE32removeTaskFuncFromNextThreadPoolEv) +STUB("zOnJttJv-8w", _ZN3WTF7CStringC1EPKc) STUB("zOnK2Venb2M", sceAvControlSetDispclk) +STUB("zOpDY5DsWxI", JVM_IHashCode) +STUB("zOupd5FZLOM", _ZN7WebCore8JSDOMURLaSERKS0_) +STUB("zOwBXJsSAOQ", + _ZN3sce2Np9CppWebApi14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerD2Ev) +STUB("zOxc6QhUelk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V110PlayerTypeEEEEptEv) +STUB("zOySpeRm7w8", _ZN7WebCore13JSDOMRectListC1ERKS0_) +STUB("zOznE5hOJHU", + _ZN7WebCore16MIMETypeRegistry34isSupportedImageVideoOrSVGMIMETypeERKN3WTF6StringE) +STUB( + "zP2vARpDHj4", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi34ParameterToGetMultiVariablesBySlot11getsortModeEv) STUB("zP4ZNlXLBVg", sceAgcDriverCreateQueue) +STUB( + "zP6ZcZ6KVDk", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEE3getEv) +STUB( + "zP9+xiYBwgE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14IdentityMapper2V324PsnWebError_error_errorsEEC1ERS7_) +STUB("zPDRirPat0g", _ZN7WebCore4Page12setIsVisibleEb) +STUB( + "zPE2NgE7TJc", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEEC2ERKSB_) +STUB("zPEbF-EnN5c", uset_containsString_67) +STUB( + "zPHMLiBMtqk", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi49ParameterToAddPlayerSessionJoinableSpecifiedUsers12setsessionIdEPKc) +STUB( + "zPL-qkixtkk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponseTeamStatisticEEEE21intrusive_ptr_add_refEPS9_) +STUB("zPRDqgIAc1k", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V112UpdateStatusEED1Ev) +STUB( + "zPRpC4PDSSM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V15CauseEEEE8pushBackERKS8_) +STUB("zPWCqkg7V+o", _ZSt14get_unexpectedv) +STUB("zPWH7YflRh4", _ZNK7WebCore6Quirks44shouldAvoidResizingWhenInputViewBoundsChangeEv) STUB("zPdlo9OiO0g", sceCesEucJpToUtf8) +STUB( + "zPibPzXzeqU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V124RequestCompetitiveResultEEEEEEC1ERSA_) +STUB("zPk9WNQtOkc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEEC2Ev) +STUB( + "zPkXn3yQi0s", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEEEEEE7add_refEv) +STUB( + "zPp37GDq1us", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestInGameRosterEEEEEED1Ev) +STUB("zPwoIKJ7Nw4", mono_aot_mscorlibunbox_trampolines_end) +STUB( + "zPxf+H8eW1o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V219WebApiFilterRequestEEEEEEC2ERSA_) +STUB("zPyz2yKqBY4", mono_aot_Mono_Cairojit_code_end) +STUB("zQ0sxMllUxk", mono_aot_System_Collectionsplt_end) +STUB( + "zQ6QAcs3+is", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEE5resetEPS6_) STUB("zQ7gIvt11Pc", sceNpPartyUnregisterPrivateHandler) +STUB("zQ7qs2J-Veg", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V117ResponseMatchTypeEE5clearEv) +STUB( + "zQDEEgroDS0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEaSERKS7_) +STUB("zQDUtwE4ChY", _ZN3JSC4Heap17releaseAccessSlowEv) +STUB("zQDZtAHh-RM", _ZN7WebCore22EmptyFrameLoaderClient13didFinishLoadEv) +STUB( + "zQDgU1jkrlk", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V126MatchCompletionRateFactory6createEPNS1_6Common10LibContextEPNS5_12IntrusivePtrINS3_19MatchCompletionRateEEE) +STUB("zQE8Ba3MvSw", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_25ReceivedInGameDataMessageEE3getEv) +STUB("zQJ3Wgpr2xE", WKPreferencesGetPaginateDuringLayoutEnabled) +STUB( + "zQJoCtuVABA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB("zQLVD+vqI0Y", _ZN3WTF17StringPrintStreamC2Ev) +STUB( + "zQNIOw05SQM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionMemberPlayerEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("zQQIrnpCoFA", _Fetch_and_seq_cst_1) +STUB("zQRMb7uXGag", _ZN3sce2Np9CppWebApi7Matches2V120ReportResultsRequest19unsetNpServiceLabelEv) +STUB( + "zQSmCd4ysmA", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_13InGameCatalog2V510AnnotationEEEE7add_refEv) +STUB("zQb9y+VO8WY", _ZN3sce7Toolkit2NP2V212ActivityFeed14PlayedWithFeedC1Ev) +STUB("zQbA-QPfK4I", JSObjectSetPrivateProperty) +STUB("zQduSmnc1KA", _ZNK3WTF24TimeWithDynamicClockTypegeERKS0_) +STUB( + "zQiM2AwuvtY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEEaSERSA_) +STUB("zQmtzzBK6wQ", _ZN3JSC18IncrementalSweeperC1EPNS_4HeapE) +STUB("zQorHBFYz2M", _ZN3sce2Np9CppWebApi13InGameCatalog2V57Product14unsetPublisherEv) +STUB( + "zQqlTqV3xgw", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122GetRankingResponseBodyEEEED2Ev) +STUB("zQsd8K1pV6A", WKWebsitePoliciesGetContentBlockersEnabled) +STUB("zQtLRTqceMY", _ZN3sce4Json5Array9push_backERKNS0_5ValueE) +STUB("zR+717YnmNs", JVM_GetSystemPackages) STUB("zR+J2PPJgSU", sceUserServiceGetGlsInitSpectating) +STUB("zR-AzD83G4U", _ZN12video_parser5vpcom11string_util8ToStringEPKvm) +STUB("zR0ajY4BmKc", _ZNK3WTF13DecimalNumber28bufferLengthForStringDecimalEv) +STUB("zR4ZbbWPTpQ", mono_jit_init) +STUB("zR55pJsx9CY", _ZN7WebCore10FileSystem11getFileSizeEiRx) +STUB("zR9EFyANWYc", JVM_FindClassFromBootLoader) +STUB("zRA9SAGlVYA", mono_assembly_get_object) +STUB( + "zRB81VoPaKU", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB("zREgl-R2PHU", _ZN7WebCore16FontCascadeFontsD2Ev) +STUB("zRLQm+ABmI8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_14SessionManager2V114SearchOperatorEE5beginEv) +STUB("zRaImZOpp7Y", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V114SearchOperatorEEdeEv) +STUB( + "zRcjVA5r72Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEE5beginEv) +STUB("zRiYco2OGYk", _ZN7WebCore16FileReaderLoader6cancelEv) +STUB( + "zRr1TUKh6TQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V112UpdateStatusEEEEC2EPS8_PFvSA_EPNS2_10LibContextE) +STUB("zRrGwmwDsUE", _ZN3sce7Toolkit2NP19ActivityFeedRequestC2Ev) +STUB( + "zRrdWNSfF4M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V113ChildActivityEEEEEEC2ERKSA_) +STUB( + "zRwZM5AhJs0", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V114RepresentativeEEEEC1Ev) +STUB("zRySuja7WWw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEED1Ev) +STUB("zRyxua-raik", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_12NetworkUtils13NetStateBasicEEC2Ev) STUB("zS-D-ttUS5I", scePerfTraceSpmDelete) +STUB("zS-rkk0AOoY", + _ZNK3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead21usePlayerSessionIsSetEv) +STUB("zS07xxypy7I", qS5) +STUB( + "zS0XDfv066M", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEE3endEv) +STUB( + "zS5TXOV7kCw", + _ZN3sce7Toolkit2NP2V28Matching20setInitConfigurationERKNS3_7Request20SetInitConfigurationEPNS2_4Core8ResponseINS8_5EmptyEEE) STUB("zS6ZPLgQJcA", sceShellCoreUtilGetPsStoreIconState) +STUB("zS6wfitCuEg", _ZN3sce7Toolkit2NP2V28Commerce7SkuInfoD2Ev) +STUB("zS94yyJRSUs", _Getpwcstate) +STUB("zSDwbTp6598", WKMediaSessionMetadataCopyArtworkURL) +STUB( + "zSJsBx0VZ3o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V35ErrorEEEEEEptEv) +STUB("zSKWPuhvdv8", mono_btls_bio_free) +STUB("zSQbtwa1Isg", _ZN7WebCore9HTMLNames5h6TagE) STUB("zSR6kEWpr0c", sceNpSnsIntTest) +STUB( + "zSSBGJRa9lg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEE6assignEPS5_PFvS7_EPNS2_10LibContextE) +STUB( + "zSSjy1VsjNU", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V16AvatarEEEEC1Ev) +STUB( + "zSURo5cOYRA", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEENS4_INS6_7DataApi25UploadDataResponseHeadersEEEED2Ev) +STUB( + "zSZ-3ERvvO4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEC2EPS8_) +STUB( + "zSZleB81cVY", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEEEptEv) +STUB("zSehLdHI0FA", _ZNKSt8messagesIwE7do_openERKSsRKSt6locale) +STUB( + "zSgQi8dNy4A", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS25AtomicAddToAndGetVariableEE19setCustomReturnCodeEi) +STUB("zSp-vRHGkmc", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_9Messaging12Notification18NewGameDataMessageEED1Ev) +STUB( + "zSpWXV1Wd8g", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEEdeEv) +STUB("zSru96TAjkQ", + _ZN7WebCore21UserContentController20removeUserStyleSheetERNS_15DOMWrapperWorldERKNS_3URLE) +STUB( + "zSu+BVgi3TE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi26SetDataInfoResponseHeadersEEEE28getResponseInformationOptionEv) +STUB("zSysSZXqYRc", _ZN3NTF18NetworkControlImpl10initializeEv) +STUB( + "zT0-KIGR9zk", + _ZN3sce2Np9CppWebApi14SessionManager2V160PostPlayerSessionsSessionIdJoinableSpecifiedUsersRequestBodyC2EPNS1_6Common10LibContextE) STUB("zT0XBtgtOSI", sceNpScoreRecordScore) +STUB("zT2EQ3EA2-g", p5_256) +STUB("zTDf3oNLysY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V110FromMemberEE11get_deleterEv) +STUB( + "zTIeQUC5wiM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEE11release_refEv) +STUB("zTIgFOre0mQ", _ZN18MmsFileUpdaterBase18GetContentFilenameEP4xMMSmPcj) +STUB("zTIz7u9gQhs", _ZNSt13basic_ostreamIwSt11char_traitsIwEE5flushEv) +STUB( + "zTRTPuQ24-o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEC2EPS6_PNS2_10LibContextE) +STUB( + "zTUHjUh1lN0", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V120RequestPlayerResultsEEEEEEcvbEv) +STUB("zTX7LL+w12Q", + _ZNSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE7_GetcatEPPKNSt6locale5facetEPKS5_) +STUB( + "zTa4TCchuRI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEE5beginEv) +STUB( + "zTn001OoAt0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V125FrequentlyMutedPropertiesEE11get_deleterEv) STUB("zTnim89xUWY", scePs2EmuMenuDialogClose) +STUB( + "zTohLb2j5nI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE8copyFromERKS9_) +STUB("zTpTVxQPab4", _ZN3JSC7Symbols60resolvePromiseWithFirstResolvingFunctionCallCheckPrivateNameE) +STUB( + "zTpVC2mcgUk", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC1Ev) +STUB( + "zTsla-RGNsI", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi28ParameterToAddAndGetVariable12getaccountIdEv) +STUB("zTwZdI8AZ5Y", _ZNK3sce4Json5Value10getBooleanEv) +STUB("zTxuFF09sQY", mono_get_exception_class) +STUB( + "zTyTrri6MD4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEEED2Ev) +STUB( + "zTzsv5tnEvM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEppEv) +STUB( + "zU-3r2OY+z8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEEEC2Ev) +STUB("zU69Lq0w96I", _ZN3JSC7JSValue13isValidCalleeEv) +STUB("zU7CLfyIDwo", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_13ConstIteratorImEEEC1Ev) +STUB("zUBEypuu+Qk", _ZNK7WebCore11MediaPlayer18supportsFullscreenEv) +STUB( + "zUBGb5STPBY", + _ZN7WebCore21JSCSSStyleDeclaration18getOwnPropertySlotEPN3JSC8JSObjectEPNS1_9ExecStateENS1_12PropertyNameERNS1_12PropertySlotE) STUB("zUDW7kIFclI", sceVideoOutRazorRemoveCallback) +STUB( + "zUE+Hb++dYk", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEEEppEi) STUB("zUM-RG5Hmyc", sceNpFriendListDialogOpen) +STUB("zUMbo2HaFrU", _ZN7WebCore21setPlatformStrategiesEPNS_18PlatformStrategiesE) +STUB("zUPxUHo9rv4", _ZN7WebCore5Color10tagAsValidEv) +STUB( + "zUVyrUaoDhg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129PostPlayerSessionsRequestBodyEE7get_refEv) +STUB("zUY8+rHQ4CU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEC1ERS7_) STUB("zUgEW9fMnxs", sceAppInstUtilAppIsInInstalling) +STUB("zUwmtNuJABI", _ZTIPn) +STUB("zUyETbglIz4", + _ZN3sce2Np9CppWebApi14SessionManager2V118MatchmakingForReadC1EPNS1_6Common10LibContextE) +STUB("zUyrfES8UgE", _ZN8meta_gen13TiffRetriever15ProcessTiffDataENS_3ifdEPNS_9tifferrorE) +STUB("zV05yXZmNKg", _ZN7WebCore28InspectorFrontendClientLocal24showMainResourceForFrameEPNS_5FrameE) +STUB( + "zV4C5bcYMCI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V141GetUsersAccountIdGameSessionsResponseBodyEEC1Ev) +STUB("zV6Q0ijIDhk", _Z16WTFCrashWithInfoiPKcS0_immmmm) +STUB( + "zV8+TqLhEbU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsSearchRequestBodyEEaSERS7_) +STUB( + "zVBsCi9K4s0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V16FriendEEEE5eraseENS2_13ConstIteratorIS8_EERSB_) +STUB("zVJ8KjLAETY", _ZN3JSC2VM23callbackObjectSpaceSlowEv) +STUB( + "zVJzifJClno", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB( + "zVKCmvzrf34", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124PlayerSessionPushContextEEptEv) +STUB("zVPu40y7qgk", delegate_virtual_invoke_2) +STUB( + "zVRl1Qu1Dow", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119SubtaskAvailabilityEEEEC1EPS8_PNS2_10LibContextE) +STUB("zVWWeOOhzyw", il2cpp_method_is_instance) +STUB("zVYsRbSrJiE", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_11Matchmaking2V18PlatformEEdeEv) STUB("zVZE+fAhgFY", sceNpLookupNetInit) +STUB( + "zVm5OFIjG-I", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIlEEE6assignEPS5_PFvS7_EPNS2_10LibContextE) +STUB( + "zVn8Q0HPj7g", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi25UploadDataResponseHeaders5parseEPNS1_6Common10LibContextElPNS6_12IntrusivePtrIS5_EE) +STUB("zVurBMjzQqM", + _ZN12video_parser20cVideoContentFactory17allocVideoContentEPKcPPNS_13iVideoContentEb) +STUB("zVvatWPvxC0", _ZN3sce7Toolkit2NP2V28Commerce7Request21DisplayCheckoutDialogC2Ev) +STUB( + "zVyIbesDcmg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_30CommunicationRestrictionStatus2V314MissingElementEEEEmmEv) +STUB("zVymWhK3EXA", jpeg_fdct_3x6) +STUB("zVzecw8b4g8", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching5RoomsEE19setCustomReturnCodeEi) +STUB( + "zW+t23PyK-k", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE17getResponseHeaderERSA_) +STUB( + "zW-b8eQAqGU", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V15ErrorEEEE5emptyEv) +STUB( + "zW50kf6S1V8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V136GetFriendsPlayerSessionsResponseBodyEEEEEE6assignEPS9_PFvSB_EPNS2_10LibContextE) +STUB( + "zW5JMCeSgdQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB("zW6mUeF4XHg", _ZN7WebCore9FontCache9singletonEv) +STUB("zWByRCe8gvc", _ZNK7WebCore7Element28renderOrDisplayContentsStyleEv) STUB("zWEQweG0SfU", _sceNpAllocatorStrndupImpl) +STUB("zWG4mt3iYuk", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_17TitleCloudStorage2V19ConditionEEppEv) +STUB("zWIFe+d77PU", _ZThn16_N3sce2np9HttpTransD0Ev) +STUB( + "zWIbTWy8ylI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V110DataStatusEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB("zWJt5iSLkro", + Java_com_sony_bdjstack_javax_media_controls_PlaybackControlEngine_getSecondaryAudioLang) +STUB("zWLNS5Wap+Q", + _ZNK3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V125ResponseCooperativeResultEE8capacityEv) +STUB( + "zWNIWnEyj0U", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSession37unsetxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB("zWP0d9r9zl4", _ZN9Inspector26TimelineFrontendDispatcherC2ERNS_14FrontendRouterE) +STUB("zWSNYg14Uag", _ZNSt7_MpunctIcEC2Emb) +STUB( + "zWSYc1djqJ8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_7Matches2V119ChildActivityStatusEEEEC1EPS8_PFvSA_EPNS2_10LibContextE) +STUB("zWY448upzsM", __tsan_atomic16_fetch_and) +STUB("zWaD-ACT3yg", _ZN3WTF8JSONImpl9ArrayBaseD1Ev) +STUB("zWdJYlMai5M", _ZNK7WebCore11XPathResult10resultTypeEv) +STUB( + "zWhW-6vsOJQ", + _ZN3sce7Toolkit2NP2V28Commerce13getContainersERKNS3_7Request13GetContainersEPNS2_4Core8ResponseINS3_10ContainersEEE) +STUB("zWhqEwkF-C0", _ZN3WTF18ParallelHelperPoolD2Ev) +STUB("zWkArFP1YQI", _ZNK3sce2Np9CppWebApi13InGameCatalog2V59Container9skusIsSetEv) +STUB("zWny6IVMs+s", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEEC1EPKS6_) +STUB("zWobZk9QAG4", mono_aot_Sce_Vsh_BackupRestoreUtiljit_got) +STUB( + "zWrfHpF4tZs", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS2_6VectorINS4_INS1_13InGameCatalog2V59ContainerEEEEEEENS4_INS2_18ResponseHeaderBaseEEEE28setResponseInformationOptionEP37SceNpWebApi2ResponseInformationOption) +STUB( + "zWtBv4Awbcc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEED1Ev) +STUB( + "zWtDQFkgQv8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V127RecordLargeDataResponseBodyEEC2EPS6_PNS2_10LibContextE) +STUB("zWtXSodWImQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEC1ERS7_) +STUB("zWv7Vc-DZUQ", _ZNK3sce7Toolkit2NP9Utilities6FutureINS1_22ConsumeChallengeResultEE3getEv) +STUB("zWvOap1xKUE", _ZNK7WebCore15HTMLFormElement6actionEv) +STUB("zWvkcHmDHnw", _ZN7WebCorelsERN3WTF10TextStreamENS_30ScrollBehaviorForFixedElementsE) +STUB( + "zWxCdCbUB88", + _ZN9Inspector22InspectorDebuggerAgent17resolveBreakpointERKNS_19ScriptDebugListener6ScriptERN3JSC10BreakpointE) +STUB("zWxkwk8uSco", + _ZN7WebCore13GraphicsLayer13addChildAboveEON3WTF3RefIS0_NS1_13DumbPtrTraitsIS0_EEEEPS0_) +STUB("zWy8nNFWNFo", _ZTVN9Inspector20CSSBackendDispatcherE) +STUB( + "zX-+i80Jn8A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V17SubtaskEEEEEEC2ERSA_) +STUB("zX0skVT0j-U", _ZN3WTF17fastAlignedMallocEmm) +STUB("zX2PgPpNlx8", unorm_compare_67) +STUB("zX3ht91VT4k", ucase_getTrie_67) +STUB("zX7rzx9kd4k", _ZN7WebCore11JSImageDataD2Ev) +STUB("zX9DrNdYROA", _ZN7WebCore8CSSValue7destroyEv) +STUB("zXCi78bYrEI", _Log) +STUB("zXGAqz9u3MU", mono_aot_Sce_Vsh_Np_Papcunbox_trampoline_addresses) +STUB("zXGofBSUKgU", cond) +STUB("zXLTj+arR+c", i2c2i_) +STUB( + "zXMxxCjysQs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE7popBackEv) +STUB("zXPERrs8Gh4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEE3endEv) +STUB("zXTL17+Nsx8", _ZN7WebCore13ContainerNode22getElementsByTagNameNSERKN3WTF12AtomicStringES4_) +STUB( + "zXVZL3ANGFM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE7reserveEi) +STUB( + "zXZ7ZVHfEMs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15ProfanityFilter2V219WebApiFilterRequestEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "zXZh5hOACco", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11UserProfile2V15ErrorEEEEEEcvbEv) STUB("zXaFo7euxsQ", sceNpWebApi2IntInitialize) +STUB( + "zXbdKL7sEzE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V128FrequentlyMutedInGameMetricsEEEEppEv) +STUB( + "zXcwDHvTVKI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_15ProfanityFilter2V225WebApiErrorResponse_errorEEEEEEC2EPS9_PFvSB_EPNS2_10LibContextE) +STUB("zXdVl2D7dUk", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_18ResponseHeaderBaseEED1Ev) +STUB( + "zXfczrjKgEQ", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117LeaveMatchRequestEEEE3endEv) +STUB( + "zXhbssGMUtc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEEE7popBackEv) +STUB("zXiD0GC9Vh8", _ZNK9Inspector15AsyncStackTrace8isLockedEv) STUB("zXqcE0fizz0", sceHttpsUnloadCert) STUB("zXukItkUuko", sceNpManagerIntLoginValidateKratosAuthCode) STUB("zXvd6iNyfgc", sceSslConnect) +STUB("zXxrg22n7xM", + _ZN3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi37ParameterToGetMultiDataStatusesByUserC2Ev) +STUB("zY3+DACnnfE", _ZNK3sce2Np9CppWebApi7Matches2V118CreateMatchRequest19expirationTimeIsSetEv) +STUB( + "zY7Os41ugBw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEEEppEi) +STUB("zYD6ZtYhj9A", + _ZN3sce2Np9CppWebApi11Matchmaking2V124SubmitTicketResponseBody21unsetTicketAttributesEv) +STUB("zYEd3EEVrNI", monoeg_g_markup_parse_context_free) +STUB("zYHryd8vd0w", _ZNSt7codecvtIDsc9_MbstatetED0Ev) +STUB("zYJ-O9gzCLE", mono_aot_Microsoft_CSharpunbox_trampoline_addresses) +STUB("zYLz0S-xya0", RSA_private_decrypt) STUB("zYN+RSpoAgo", sceIduUtilGetDownloadState) +STUB( + "zYPo9bSYZlM", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEaSERKS9_) +STUB("zYTCgEvUBxU", + _ZNK3sce2Np9CppWebApi14SessionManager2V127ResponsePlayerSessionPlayer12getAccountIdEv) +STUB( + "zYXXiOm1coY", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats22setMatchCompletionRateERKNS1_6Common12IntrusivePtrINS3_19MatchCompletionRateEEE) +STUB("zYbDjIOq1ms", _ZN9Inspector21InspectorRuntimeAgent26disableControlFlowProfilerERN3WTF6StringE) +STUB("zYcY-IzcDKs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEEixEm) +STUB("zYdHFbS40bA", + _ZN7WebCore14ScrollableArea19willRemoveScrollbarEPNS_9ScrollbarENS_20ScrollbarOrientationE) +STUB( + "zYiF3Eb4iE4", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_11Matchmaking2V127ListUserTicketsResponseBodyEEEEplEm) +STUB("zYqwC5u+u8w", + _ZN7WebCore15GraphicsContext21setCompositeOperationENS_17CompositeOperatorENS_9BlendModeE) +STUB( + "zYttnqIaAS4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponsePlayerStatisticEEEEneERKS9_) +STUB("zYxeSaZ1luk", _ZTVN9Inspector24NetworkBackendDispatcherE) +STUB( + "zZ49bdPVQAo", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V517ContentDescriptorEEEEEEptEv) +STUB("zZ9omrpUunw", + _ZN3sce7Toolkit2NP2V28Matching11refreshRoomEPKNS3_12Notification11RefreshRoomEPNS3_4RoomE) +STUB( + "zZC4jeTG-XE", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEENS4_INS2_18ResponseHeaderBaseEEEE18getResponseHeadersERSA_) +STUB( + "zZGBiJPffo0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V124RequestGameSessionPlayerEEaSERKS7_) +STUB( + "zZGmO0+EDao", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEneERKS9_) +STUB("zZHQ8k5tC40", _ZN7WebCore12PrintContext13numberOfPagesERNS_5FrameERKNS_9FloatSizeE) +STUB( + "zZLxTvE17k4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V133PostGameSessionsTouchResponseBodyEEEEaSERKS9_) +STUB("zZMO9pBSMaw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_13InGameCatalog2V510AnnotationEEppEi) +STUB( + "zZOForuHIok", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V132ConnectionQualityWirelessMetricsEEEEEE3getEv) STUB("zZQD3EwJo3c", sceFontDestroyGraphicsService) +STUB("zZRJ8kGwFV8", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V113ErrorResponseEE3getEv) +STUB("zZS92GP7Dg0", WKSerializedScriptValueGetInternalRepresentation) +STUB("zZSprI560pg", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIfEEE7get_refEv) +STUB("zZUqSZXlTpY", _ZN3sce2Np9CppWebApi11UserProfile2V16Avatar8unsetUrlEv) +STUB( + "zZbcW67WQ6E", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14IdentityMapper2V342PsnWebError_error_validationConstraintInfoEEEEneERKS9_) +STUB("zZdK5+6pGfo", _ZN7WebCore13TextureMapper6createEv) +STUB("zZj313J34FY", _ZNK3sce2Np9CppWebApi7Matches2V124UpdateMatchDetailRequest17inGameRosterIsSetEv) +STUB( + "zZqT68GzqAs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEEEC1Ev) +STUB( + "zZwQkcoEExY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V137PatchGameSessionsSessionIdRequestBodyEED2Ev) STUB("za4xJfzCBcM", sceHmdGet2dVrCommand) +STUB("za50kXyi3SA", _ZNSt16nested_exceptionD0Ev) +STUB("za62OqYDt2g", mono_aot_I18N_Westjit_code_start) +STUB( + "zaBrfEB8ElY", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119RequestMatchResultsEEEEEEdeEv) STUB("zaG6EZmCuxM", sceBgftServiceDownloadResumeTask) +STUB( + "zaHL1KJzRi0", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_11UserProfile2V124GetBlockingUsersResponseEEENS5_INS2_18ResponseHeaderBaseEEEEEiRNS2_11TransactionIT_T0_EE) +STUB( + "zaJtZY2wUEY", + _ZN3sce2Np9CppWebApi14SessionManager2V139PatchPlayerSessionsSessionIdRequestBody22setDisableSystemUiMenuERKNS1_6Common6VectorINS5_6StringEEE) +STUB("zaKEz6GvobM", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V18VariableD2Ev) +STUB("zaOSeNU-x3A", mono_aot_System_Runtime_Extensionsunbox_trampolines) +STUB( + "zaTyaBC4nFs", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V119NatConnectivityFromEEEE5beginEv) +STUB( + "zaVwoMWlbR4", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEEEEEiRNS2_10LibContextEPT_m) +STUB( + "zabZjcS+kPk", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEEEixEm) +STUB("zadJ2FWJud4", WKArrayCreateAdoptingValues) +STUB( + "zakO956WX5Q", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V116RequestMatchTeamEEEEEE5resetEPS9_) +STUB("zap-HZc2kVw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEaSERS7_) +STUB( + "zatGJvWWWew", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V127PostGameSessionsRequestBodyEEEEptEv) +STUB("zaz2l8nwNQM", _ZN9Inspector18InjectedScriptHost7subtypeEPN3JSC9ExecStateENS1_7JSValueE) +STUB( + "zb+ObDRqUOE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEEC1Ev) +STUB("zb3436295XU", _ZNSt9type_infoD2Ev) +STUB("zb3JJZUdPXE", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V116JoinableUserTypeEEppEv) +STUB("zb7Jwpf4AUE", _ZTSDh) +STUB("zb9BwXixLGQ", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Presence12Notification14PresenceUpdateEEC1Ev) +STUB("zb9MeGIQHgk", _ZN3sce2Np9CppWebApi14IdentityMapper2V311OnlineIdMap12setAccountIdERKm) +STUB( + "zbAhDw2qpdM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEED1Ev) +STUB( + "zbDL46ODZQU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V118GetFriendsResponseEEEEmmEi) +STUB("zbDW39JL4HU", _ZN9Inspector17ScriptDebugServerdaEPv) STUB("zbKF-ejbR0Q", sceVoiceChatRequestDeletePlayerSessionVoiceChatChannel) +STUB("zbLvDhUY9UM", _ZN7WebCore8IntPointC1ERKNS_7IntSizeE) +STUB("zbNxHb+tC4g", _ZN3sce7Toolkit2NP22UpdateAttributeRequestC2Ev) +STUB( + "zbRPzWJe1hg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V111AddedPlayerEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("zbRmW1H0Pj0", _ZN3sce2Np9CppWebApi15Personalization2V15Error14setReferenceIdEPKc) +STUB( + "zbTyWDC+P40", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEE11release_refEv) +STUB("zbliTwZKRyU", _ZN3sce2npneERKNS0_13NpTitleSecretES3_) +STUB("zbnJUYvGHlc", _ZN3sce7Toolkit2NP2V210Tournament25OneVsOneTournamentDetailsD2Ev) +STUB("zboqmwdgMc4", ucsdet_close_59) +STUB("zbqe0MhGE9w", mono_aot_ReactNative_Components_Vshjit_code_end) +STUB( + "zbrc+7gmwrg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V122RequestMatchStatisticsEEC2EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "zbuhBzUc-cg", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB( + "zc+YjUnp-RQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V19PlayStyleEEEE8copyFromERKS9_) +STUB("zc0zfEAQRBM", _ZNK3sce2Np9CppWebApi11Matchmaking2V121GetTicketResponseBody13locationIsSetEv) +STUB( + "zc4QhcERzsk", + _ZN9Inspector26InspectorBackendDispatcher6enableElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB( + "zc4gMADxk94", + _ZNK3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE11getResponseERS8_) +STUB( + "zcD4sFqrU4U", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEED1Ev) +STUB("zcD6WcvPfrs", _ZN9Inspector21InjectedScriptManagernaEmPv) +STUB( + "zcF9lnsVLIg", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEEmmEi) +STUB("zcFzSvY7Lmc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V120RequestTeamStatisticEEdeEv) +STUB("zcG3MCGlhu4", uprv_decNumberCopy_67) +STUB( + "zcJJkgJHnK4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V119RequestMatchResultsEEEED2Ev) +STUB("zcTHbCw69WE", _ZN3sce7Toolkit2NP2V27NpUtils7Request17CheckAvailabilityC1Ev) +STUB( + "zcUoz9K41Cw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEEEC2Ev) +STUB( + "zcWamuS-M80", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB("zcYxoKYeQSM", jinit_merged_upsampler) +STUB( + "zcZHqRXNWfc", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEptEv) +STUB("zccQaiAKfeI", il2cpp_set_commandline_arguments) +STUB("zccRzonVGec", _ZNK7WebCore11FrameLoader16outgoingReferrerEv) +STUB( + "zcem8HE4-gk", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEENS4_INS2_18ResponseHeaderBaseEEEE17getResponseHeaderERSA_) +STUB("zcfZQyM7eAE", _ZNK3sce4Json5Array5frontEv) +STUB("zchVMt4ZlL4", _ZN7WebCore8SVGNames16units_per_emAttrE) +STUB( + "zcjQTXu7bg0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEEEEC1ERSA_) +STUB( + "zcjhWD6gTFo", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V138SetMultiVariablesRequestBody_variablesEEEE5beginEv) +STUB("zck+6bVj5pA", nan) +STUB("zcmEKghdRNU", _ZN3sce7Toolkit2NP2V28Commerce8ProductsC2ERKS4_) +STUB( + "zcrwWIakGno", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V132GetMultiDataStatusesResponseBodyEEC2ERKS7_) STUB("zcvf3sc8O-U", sceApplicationCrashSystemProcess) +STUB( + "zcvlPI4vgnc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEEEEC2EPS9_PNS2_10LibContextE) +STUB( + "zcwRrm-4KtQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V122RecordScoreRequestBodyEEEED1Ev) +STUB("zcyv1BcVoYc", _ZN7WebCore18ParsedContentRangeC2Elll) +STUB( + "zd3EU-HBSf8", + _ZN9Inspector21HeapBackendDispatcherC1ERNS_17BackendDispatcherEPNS_28HeapBackendDispatcherHandlerE) STUB("zd4oVXWGD2Y", sceShellCoreUtilSetGpuLoadEmulationModeByAppId) +STUB("zd7CtmDZAhQ", _ZN17ScePssCameraOrbis4OpenEP16ScePssCameraSizej) +STUB("zd9ns0ChOTg", __increment_D2A) +STUB( + "zdAttXWZrW0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V120GameSessionSpectatorEEEEEEC1EPS9_PNS2_10LibContextE) +STUB( + "zdBACSMu8qc", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V125PlayerSessionNonPsnPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB( + "zdBSfq05ojg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V155PostPlayerSessionsSessionIdMemberSpectatorsResponseBodyEEEEmmEv) +STUB("zdCex1HjCCM", _ZTVSt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE) +STUB("zdDT5zA70UE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V116TaskAvailabilityEEC1EPS6_) +STUB( + "zdFw3mZYt7c", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V15ErrorEEEE8capacityEv) +STUB("zdJ3GXAcI9M", __divsi3) +STUB("zdKa8rNTi2s", WKWebsiteDataStoreResetQuota) +STUB("zdRXyt-65kA", _ZN3sce2np13RingBufMemory6IsInitEv) +STUB( + "zdRdroJEUhE", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEC2Ev) +STUB("zdSsGpN+fyM", + _ZN7WebCore4toJSEPN3JSC14JSGlobalObjectEPNS_17JSDOMGlobalObjectERNS_10AudioTrackE) +STUB("zdX1bs4u4m0", _ZN7WebCore18TextureMapperLayer13setAnimationsERKN7Nicosia10AnimationsE) +STUB( + "zdXBn69ZdwY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEC2EPS6_PNS2_10LibContextE) +STUB("zdXuWMxjzEU", _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V35ErrorD1Ev) STUB("zdYdKRQC3rw", sceFontGraphicsExchangeResource) +STUB("zdaF5N-Xe2M", __sys_debug_init) STUB("zdgiIPRqET4", sceVrSetupDialogTerminate) +STUB("zdiM3wxIsUY", uenum_unext) +STUB( + "zdtHAyCKF4E", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V119CreateMatchResponseEEEE4sizeEv) STUB("zdtXKn9X7no", sceHttp2SetCookieRecvCallback) +STUB( + "zdueXFYI4fM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V311PsnWebErrorEEEEEEC1ERKSA_) STUB("ze0ky5Q1yE8", sceSystemStateMgrGetCurrentState) +STUB( + "ze2nQ4lK7Cg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEEppEi) +STUB("ze4kWDwPjso", _ZN4Manx9WorkQueue6createEPKc) +STUB( + "ze85Wd+hNyc", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V111AddedPlayerEEEED2Ev) +STUB( + "ze9jrNxp7Y0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V139PatchPlayerSessionsSessionIdRequestBodyEEC2EPS6_PNS2_10LibContextE) +STUB("zeOjcvFuiJc", delegate_virtual_invoke_imt_m_18_p) STUB("zePYFs8UtNw", sceFiosPathncmp) +STUB("zeTWL++Uiv0", WKDatabaseManagerGetDatabaseDetailsCreationTimeKey) +STUB( + "zeaFfOQO308", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEEC1ERKS8_) +STUB("zeeK9qCn3pE", u_isprint_59) +STUB("zejy08lV0fE", _ZN3sce2Np9CppWebApi11Matchmaking2V120GetOfferResponseBody12unsetPlayersEv) STUB("zek4fVO9RPw", sceAppInstUtilAppGetAddcontNum) +STUB("zemLlPNbl-g", _ZN3JSC26createIteratorResultObjectEPNS_14JSGlobalObjectENS_7JSValueEb) +STUB( + "zemxp9PndxE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V126RequestTeamMemberStatisticEEEEEE3getEv) +STUB("zepqHjfGe0M", _ZN3sce2np8WorkItem14FinishCallbackEv) +STUB("zesk2cm-12I", + _ZN3sce2Np9CppWebApi14SessionManager2V118GameSessionForRead23unsetSupportedPlatformsEv) +STUB("zetC8Tp1S8w", FT_Set_MM_Blend_Coordinates) +STUB( + "zevFdK2mpc0", + _ZN9Inspector23CanvasBackendDispatcher33setRecordingAutoCaptureFrameCountElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) STUB("zezfYI2+DWA", scePerfPmcOpen) +STUB( + "zf2lVtuMncg", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities26GetUsersActivitiesResponseEEEEC1EPKS9_) +STUB( + "zf3p0-6YMnM", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetrics8fromJsonERKNS_4Json5ValueE) +STUB("zf4+IDdC57s", WKPageHandleMouseEvent) +STUB( + "zf8lEDEwkfE", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEEEmmEi) +STUB( + "zfA1o0NBo98", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEEmmEv) +STUB( + "zfB4P+MGWWA", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEEE5clearEv) +STUB("zfHQn-D9dk4", vm_send_SetWriteBarrier) +STUB("zfMQ8VGNv7o", _ZN12video_parser5vpcom4OpenE) +STUB("zfRDx10cJj4", u_strCompare_67) +STUB("zfSj4nfmhN4", _ZN9Inspector22InspectorDebuggerAgentC2ERNS_12AgentContextE) +STUB( + "zfa-TLIeIMs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V113ErrorResponseEEEEdeEv) STUB("zfcxg-ewMK8", sceAgcDcbRewind) +STUB("zfp+RAzI+Cg", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V119MatchCompletionRate11unsetGlobalEv) +STUB("zfsUWHtCz8M", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_8IteratorIjEEE7get_refEv) +STUB("zfvBGft4XrY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_12Leaderboards2V121GetRankingRequestBodyEEC1Ev) +STUB( + "zg2jQz-Ox9M", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15ErrorEEEEEE5resetEPS9_) +STUB("zg3vLuclpKE", + _ZN3sce2Np9CppWebApi29MultiplayerMatchmakingRanking2V19RatingApi21ParameterToPostRatingC1Ev) +STUB("zg4V0sEwG4o", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEC1Ev) STUB("zg6u-N6Otxs", sceAgcDcbQueueEndOfShaderActionGetSize) +STUB("zg7exiteekI", _ZN3WTF37parseDateFromNullTerminatedCharactersEPKcRbRi) +STUB("zgD0fDO3nh0", _ZN7WebCore12PrintContext9spoolPageERNS_15GraphicsContextEif) +STUB("zgDj49uMFxw", _ZN7WebCore20LegacySchemeRegistry36allURLSchemesRegisteredAsCORSEnabledEv) +STUB( + "zgRB1FNSWf4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V111OfferStatusEEEE3getEv) +STUB( + "zgTDir-Kpa0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V116SearchAttributesEEEEC2Ev) +STUB("zgTEX-tEz88", GCC_except_table164) +STUB( + "zgV90xqdo0s", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V515ContainerRatingEEEE8capacityEv) STUB("zgXifHT9ErY", sceVideoOutIsFlipPending) +STUB("zgc1ua7bweY", _ZNK3WTF6String8toIntPtrEPb) +STUB("zgcGWjoLj+A", _ZN3sce7Toolkit2NP2V211SharedMedia7Request14GetScreenshotsC1Ev) +STUB("zgdoEsexgpk", _ZN3WTF10TextStreamlsEf) +STUB("zgfjonBihuw", _ZN3sce7Toolkit2NP28GameCustomDataMessageRequestC2Ev) +STUB( + "zgfxjrrn70A", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118GameSessionForReadEEC2EPS6_PNS2_10LibContextE) +STUB("zgiBwE5awBo", _ZN3sce2Np9CppWebApi6Common9RefObjectC2Ev) +STUB( + "zgmbxB+d8Gw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V127RequestTemporaryTeamResultsEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("zgsf+dRKz-s", _WGetint.digits) +STUB("zgt5jBUZjPw", WKContextSetMaximumNumberOfProcesses) +STUB("zguOEvG9DWs", _ZNK7WebCore9TimerBase16nextFireIntervalEv) +STUB("zh-nQ-UtuvE", _ZN3WTF13StringBuilder6appendEPKhj) +STUB( + "zh1Aa8BNoYU", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119AdditionalStatisticEEEEppEi) STUB("zh2KsQZlAN4", sceNpManagerIntRemoveSigninStateCallback) +STUB("zh9Gn2BvJMg", Zero) +STUB("zhAIFVIN1Ds", __multi3) +STUB("zhN1XL9nbkY", JVM_GetCPFieldClassNameUTF) +STUB( + "zhfRIdpWhX4", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEE3getEv) +STUB("zhfxTlKXm48", _ZN3sce2Np9CppWebApi15ProfanityFilter2V223FilterProfanityResponse9setStatusEPKc) +STUB("zhn3KOT4QNQ", + _ZN7WebCore16ScriptController17canExecuteScriptsENS_33ReasonForCallingCanExecuteScriptsE) +STUB("zhpPtt-dFNc", g_slist_append) +STUB( + "zhs8yEMn8No", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEEiRNS2_10LibContextEPT_m) +STUB("zhzogJszFCs", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V14TaskEE11release_refEv) +STUB( + "zi-eyYOv8Yw", + _ZN7WebCore19ResourceRequestBase30addHTTPHeaderFieldIfNotPresentENS_14HTTPHeaderNameERKN3WTF6StringE) +STUB("zi560G+L1w4", uhash_removeElement_67) +STUB("zi7wi7oi1HE", _ZTVN7WebCore37BasicComponentTransferFilterOperationE) +STUB("ziEAh6tUUQQ", mono_aot_Sce_PlayStation_HighLevel_UI2plt_end) STUB("ziPDcIjO0Vk", sceImeGetPanelSize) +STUB("ziQTe-4++Kw", + _ZN3sce2Np9CppWebApi7Matches2V123JoinMatchRequestFactory7destroyEPNS3_16JoinMatchRequestE) +STUB( + "ziRfD9bmDqk", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V15Stats12setBandwidthERKNS1_6Common12IntrusivePtrINS3_9BandwidthEEE) STUB("ziVA3whp3p4", sceAgcRewindPatchSetRewindState) STUB("ziVGnouCLtg", sceNetApctlGetInfo) +STUB( + "ziX+Gbs-PE8", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V117SearchGameSessionEEEE8capacityEv) +STUB( + "ziZHkZMlOf4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_17TitleCloudStorage2V15OwnerEEEEEEC1EPS9_PNS2_10LibContextE) STUB("zid2aggMils", sceSdecQueryMemorySw) +STUB("zifARKK+45o", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V15OwnerEEdeEv) STUB("ziiOdlGJLMY", sceDeci4hDrfpChstat_chmod_fuse) +STUB( + "zijdiG-hmig", + _ZN3JSC12StringObject18getOwnPropertySlotEPNS_8JSObjectEPNS_9ExecStateENS_12PropertyNameERNS_12PropertySlotE) +STUB("zijlNB4cxv4", mono_btls_x509_lookup_new) +STUB( + "zilEarSbDx0", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEEixEm) +STUB("zio+5O5L-4M", _ZTVN12video_parser10cVideoPathE) +STUB( + "ziqzqniL9hk", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V132RequestCreatePlayerSessionPlayerEEEEEE11get_deleterEv) +STUB( + "zivL1SD9TBs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_21AdvancedPlayerProfile2V135MatchCompletionRateCompletedMetricsEEEEEEC1ERSA_) +STUB("ziwWade4cVQ", _ZNK7WebCore12ChromeClient18scrollRectIntoViewERKNS_7IntRectE) +STUB("zixowWHO-dY", utrans_openU_67) +STUB("zj6w6cG8ggA", _ZN3sce7Toolkit2NP34DetailedProductInfoListInputParamsC2Ev) +STUB("zjB-cbY-OcE", WKURLCopyLastPathComponent) +STUB( + "zjLzzgsOdrQ", + _ZN9Inspector8Protocol16InspectorHelpers24parseEnumValueFromStringINS0_3DOM23AccessibilityProperties16LiveRegionStatusEEEN3WTF8OptionalIT_EERKNS6_6StringE) +STUB( + "zjOYFNW9IPE", + _ZN9Inspector15ScriptArguments6createEPN3JSC14JSGlobalObjectEON3WTF6VectorINS1_6StrongINS1_7UnknownELNS1_30ShouldStrongDestructorGrabLockE0EEELm0ENS4_15CrashOnOverflowELm16ENS4_10FastMallocEEE) +STUB("zjTFAbmrB3Y", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124BandwidthUpstreamMetrics10setAverageERKi) +STUB( + "zjTIlgkSomg", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_29MultiplayerMatchmakingRanking2V113ErrorResponseEEcvbEv) +STUB("zjVJtbnq1Jc", __asan_report_load1) +STUB("zjgjbkK2y9M", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V114ResponseMemberEED2Ev) +STUB( + "zjhvp2arwRE", + _ZN3sce2Np9CppWebApi21AdvancedPlayerProfile2V124BandwidthUpstreamMetrics20setStandardDeviationERKi) +STUB("zjiDHjIxU0M", Java_java_lang_reflect_Array_multiNewArray) +STUB( + "zjm6ynhq8SE", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19SubmitterEEEEEEcvbEv) +STUB("zjogjCD8WMI", uset_close_67) +STUB( + "zjqTmP0ST9A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V57ProductEEEE5beginEv) +STUB( + "zjwDWUYFBt0", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEEdeEv) +STUB( + "zjxVzMdu4N4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEC2EPS6_PNS2_10LibContextE) STUB("zjxjqNfga3Y", sceCustomMusicCoreBgmSetAudioVolume) STUB("zk6c65xoyO0", sceNpWebApiCreateContextA) +STUB("zk7Es711EV8", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Entry7getRankEv) +STUB( + "zk7xoL5RKIg", + _ZN3sce2Np9CppWebApi14SessionManager2V168PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyFactory7destroyEPNS3_61PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyE) +STUB("zkAmOUm-R00", _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_6StringEEdeEv) +STUB("zkCx9c2QKBc", _ZNSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEED1Ev) +STUB("zkEcdYH+3-0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEC1ERKS7_) +STUB( + "zkGRvE1yBMg", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V150PostGameSessionsSessionIdMemberPlayersResponseBodyEEEEEEaSERKSA_) +STUB("zkK8n-lhgF4", RegisterPrivateMessage) +STUB("zkLhehDz0Mc", _ZN7WebCore22FontCascadeDescriptionC2Ev) +STUB("zkUC74aJxpE", _ZNKSt7_MpunctIwE16do_negative_signEv) +STUB("zkWd4PjrY6A", + _ZN3sce7Toolkit2NP2V27Session21ChangeableSessionData32SESSION_CHANGEABLE_DATA_MAX_SIZEE) +STUB("zkZ87olRiNU", _ZNK7WebCore29PerspectiveTransformOperation19isRepresentableIn2DEv) +STUB("zkaNI1552m4", _ZN15AbstractStorage4Item6RenameERKSbIcSt11char_traitsIcENS_8StlAllocIcEEE) +STUB("zkbV8yksKAg", _ZN3JSC15WeakHandleOwnerD0Ev) +STUB("zkg+kaBk8Dw", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_13NetStateBasicEE3getEv) +STUB("zkhfTgB1ABM", _ZNK7bmalloc11IsoTLSEntry4sizeEv) +STUB( + "zkmFMahOwaY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V136UsersPlayerSessionsInvitationForReadEEC1Ev) +STUB("zkmLrEtTrOk", _ZN3sce3pss4core8graphics14NativeGraphics20AllocateSystemMemoryEjjPv) +STUB("zknJJRS5drs", + _ZN3sce2Np9CppWebApi14SessionManager2V122PlayerSessionSpectator11setPlatformEPKc) +STUB( + "zkpMnOayee4", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V14TaskEEEE10setContextEPNS2_10LibContextE) +STUB( + "zkpqAYyDL5o", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_12IntrusivePtrINS2_6BinaryEEENS4_INS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEEC1ERKSC_) +STUB("zktbzr-oSy0", _ZN7WebCore12ChromeClient34notifyScrollerThumbIsVisibleInRectERKNS_7IntRectE) +STUB( + "zkvFZH-Q7Qw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V132RequestPlayerSessionMemberPlayerEEEEC1EPS8_) +STUB( + "zkxYThoWn1E", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V114ResponseMemberEEEE6resizeEj) +STUB("zl+vBWy7l7g", rgctx_fetch_trampoline_mrgctx_106_p) +STUB( + "zl-LNegO4Po", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V126BandwidthDownstreamMetricsEE3getEv) STUB("zl35YNs9jnI", sceNetResolverStartNtoa6) STUB("zl51JMf2kGo", sceCesUtf32leToEucCn) +STUB( + "zl52IDSIVks", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEE6resizeEj) +STUB( + "zl5u02vtDlE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V121GetAccessCodeResponseEEEEplEm) STUB("zl7hupSO0C0", sceKernelSendNotificationRequest) +STUB("zl8HXebvmiI", uprv_getMaxValues_67) +STUB("zl8amn17Exk", _ZN3sce3Xml18SerializeParameterC1Ev) +STUB("zlC2eo7bXAs", _ZN7WebCore17HTMLSelectElement20optionSelectedByUserEibb) +STUB("zlIEk1HjPsI", rgctx_fetch_trampoline_general) +STUB( + "zlIWMQUnsf8", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEED2Ev) +STUB("zlMZOG3VDYg", SSL_ioctl) +STUB( + "zlOFiZDuvkk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V311PsnWebErrorEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "zlS+hnNf1vE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEE5emptyEv) +STUB( + "zlTUFBU1Ig8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V120ReputationPropertiesEEC2Ev) +STUB( + "zlTeIgUlipQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V133RequestTemporaryCompetitiveResultEEEEEE11get_deleterEv) +STUB( + "zlTu6xpPdAw", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V121ResponsePlayerResultsEEEE5emptyEv) +STUB("zlWHf6iA+G0", mono_aot_Sce_Vsh_Messagesjit_got) STUB("zlXqkzPY-ds", sceSystemServiceTickVideoPlayback) +STUB("zlYFwFq6GV8", WKPreferencesSetFileAccessFromFileURLsAllowed) +STUB("zlZiUttYnZI", _ZN7WebCore19toAutofillFieldNameERKN3WTF12AtomicStringE) +STUB( + "zlc-5UD3z8U", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEEneERKS9_) +STUB("zlfEH8FmyUA", _Stoul) +STUB("zloBP1Yo108", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V116JoinMatchRequestEEptEv) +STUB("zlpy-PIFmvc", _ZN7WebCore15JSDOMWindowBase7destroyEPN3JSC6JSCellE) +STUB( + "zlrgxWJoR4U", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEC1EPS6_PNS2_10LibContextE) STUB("zlsr9mUGhro", sceNpUniversalDataSystemIntDeleteAllRecord) +STUB( + "zm+niwNQwBo", + _ZNK3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi29ParameterToLeavePlayerSession35hasxPSNSESSIONMANAGERNONPSNCALLERIDEv) +STUB("zm-C3Oi6IQg", mono_method_desc_from_method) +STUB("zm28lXJU440", _ZNK9Inspector18InjectedScriptBase10hasNoValueEv) +STUB("zm2i2w7R9tU", _ZN9Inspector31NetworkBackendDispatcherHandlerC2Ev) +STUB("zm7AblpGSLk", WKBundleClearResourceLoadStatistics) +STUB("zm7DYNMbcEU", _ZN7WebCore15PasteboardImageD1Ev) +STUB( + "zmBdLABEt94", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEEaSERKSB_) +STUB("zmIG3Jx3Cbc", _ZN7WebCore11MediaPlayer29acceleratedCompositingEnabledEv) +STUB("zmLCNBoISQE", uregex_getFindProgressCallback_67) +STUB( + "zmLftEGbspQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V144PatchGameSessionsSearchAttributesRequestBodyEEEE5eraseENS2_8IteratorIS8_EERSB_) +STUB("zmMWRKwedmw", uloc_toLanguageTag) +STUB( + "zmN31MrlBkM", + _ZN3sce2Np9CppWebApi14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerC1EPNS1_6Common10LibContextE) +STUB("zmOmSLnqlBQ", _ZN3sce2np9WorkQueue9CancelAllEi) +STUB("zmSVzK3uhDE", _ZNK3sce2Np9CppWebApi14IdentityMapper2V317PsnWebError_error11reasonIsSetEv) +STUB( + "zmT8rFatO30", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEE21intrusive_ptr_sub_refEPS9_) +STUB("zmUqZyLpEhs", SystemDialogInit) +STUB("zmW6w78BlDg", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_17ParameterBaseImpl6KeySetEEneERKS6_) +STUB("zmW9l9-fo9A", MvpHttpInit) +STUB("zmdWH6IM42w", _Z33sceRazorGpuCreateStreamingCounterPjN3sce3Gnm14CpcPerfCounterE) +STUB( + "zmkuipnqy3Y", + _ZN9Inspector28DOMDebuggerBackendDispatcher29removeEventListenerBreakpointElON3WTF6RefPtrINS1_8JSONImpl6ObjectENS1_13DumbPtrTraitsIS4_EEEE) +STUB("zmtI0YFu-VU", _ZN9Inspector27LayerTreeFrontendDispatchernwEmPv) +STUB("zmuNxmhKMPw", _ZN12video_parser13cVideoMetaVWG14getChapterInfoERjPNS_11VpChapter_tE) +STUB("zmujoSR7YuA", _ZN7WebCore16NetworkSendQueue5clearEv) STUB("zmw2uVSEj94", sceAgcDriverUserDataWriteSetMarker) +STUB("zmweoslW02I", mono_aot_ClassLibrary1unbox_trampolines) +STUB("zmxAXmg0bJ4", utrie2_internalU8NextIndex) +STUB("zmxl1XK4I3s", _ZN9Inspector19InspectorAuditAgent5setupERN3WTF6StringEPKi) +STUB("zmymoDNsdKM", glUniform3i) STUB("zmzMriMPMag", sceCesUtf16StrGetIso2022Len) +STUB("zmzXbCRHFGI", fuse_fs_ftruncate) +STUB("zn1GN6GVKwY", GetAuthorizationCode) +STUB( + "zn3xaqOKq84", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS1_14SessionManager2V123SpectatorJoinableStatusEEplEm) +STUB("zn4Ar03CuZM", g_list_remove_link) +STUB("zn4MCC35uZw", _ZN9Inspector27AnimationFrontendDispatcherC1ERNS_14FrontendRouterE) +STUB( + "zn6dc7j9NPg", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V113ErrorResponseEEEE6insertENS2_13ConstIteratorIS8_EERKS8_RSB_) +STUB( + "znDbtfaBOu4", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_12Leaderboards2V15ErrorEEEEC2Ev) STUB("znFHu15HXEM", sceNpGriefReportReadGroupMessageFile) STUB("znI3q8S7KQ4", _sceUltUlthreadCreate) +STUB("znJpNAsiZ6s", _ZN3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V110PlayerTypeEEC2Ev) +STUB("znO6Mqpf5YI", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V122UploadDataResponseBody11getObjectIdEv) +STUB( + "znPDs6G6m+I", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_15Personalization2V111ErrorEntityEEEEplEm) +STUB("znQfHvmsccU", mono_aot_Sce_CloudClient_App_Platformjit_code_start) STUB("znS+s4RFPNk", sceApplicationSpawn2) +STUB("znTNnkjSDjI", mono_aot_Sce_Vsh_JsExtensionjit_code_end) +STUB("znTl0-ypsj8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEC2ERKS7_) +STUB("znTrJH9b2h8", DTLSv1_server_method) +STUB("znVOxkSVnXU", _ZNK3JSC6JSCell11toPrimitiveEPNS_9ExecStateENS_22PreferredPrimitiveTypeE) +STUB( + "znVvRh5M+Lc", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123RequestTeamMemberResultEEEEixEm) +STUB( + "znXp1VoblNA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V113MmrPropertiesEEEEC2EPS8_) STUB("znaWI0gpuo8", scePadGetTriggerEffectState) +STUB( + "zneVpuBQTPo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V514ContainerMediaEEEEC2Ev) +STUB("znfzNa3xFuc", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_15NpSessionMemberEED2Ev) STUB("zngUTKZc6FQ", sceUlpMgrVshGetStatCmd) +STUB( + "znmby8RHXxk", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V128SetMultiVariablesRequestBodyEEEEaSERKS9_) +STUB( + "znsFbouEp0k", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V124GetPublicProfileResponseEEdeEv) +STUB( + "znvUpuY8Abg", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129ConnectionQualityWiredMetricsEEEE5beginEv) +STUB( + "zny-S89Df1Y", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_10Activities2V114UserActivities5ErrorEEEEEEC1Ev) +STUB("zo2La0t9A5E", png_get_io_ptr) STUB("zo4G5WWYpKg", sceNpPartyRegisterPrivateHandler) +STUB( + "zo9EMpWJM-I", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V117ResponseMatchTeamEEEEC2Ev) +STUB( + "zo9b2rva5aM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V130RequestPlayerSessionInvitationEEEEEE7get_refEv) +STUB("zoCPLeMXy0A", _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_13WhoLikedStoryEEC1Ev) +STUB( + "zoCSwiVp3gs", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V131ResponseGameSessionMemberPlayerEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("zoEw5DysaTo", _ZNK7WebCore24CoordinatedGraphicsLayer9coverRectEv) +STUB( + "zoIWRIwqlGE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V113PlayerSessionEEEEEEC1Ev) +STUB("zoIu9W2wWcw", _ZN7WebCore9SampleMap5clearEv) +STUB( + "zoP+wGrmWfA", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V125GetBasicPresencesResponseEEdeEv) +STUB( + "zoWI7kskQRw", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V314MissingElementEEEEEEC1ERSA_) +STUB( + "zoe12gBdpeA", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_11Matchmaking2V121GetTicketResponseBodyEEEEixEm) +STUB("zogPrkd46DY", strxfrm) +STUB("zomDC7JDB24", s20) +STUB( + "zomvAQ5RFdA", + _ZNKSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE3getES3_S3_RSt8ios_baseRNSt5_IosbIiE8_IostateERPv) +STUB("zonHaB54R9U", _ZN3JSC13BooleanObjectC2ERNS_2VMEPNS_9StructureE) +STUB("zonyi51GcZw", WKCredentialCreateWithCertificateInfo) +STUB( + "zoqYey1FiOA", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyEEEEaSERKS9_) +STUB( + "zosLcv8iPi8", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V121PlayerForTicketCreateEEEEmmEv) +STUB( + "zovjRX79KtU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEEaSERKSA_) +STUB("zox2sOpGPy0", unorm2_getNFKDInstance_67) STUB("zoxb0wEChEM", sceContentDeleteInitialize) +STUB( + "zp-8udvcWSE", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V112JoinableUserEEEEdeEv) +STUB("zp-WhNc0GWc", _ZN7WebCore9HTMLNames14novalidateAttrE) +STUB("zp0bP404ycw", mono_btls_ssl_read) +STUB("zp1FwzOY2+4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14ConnectAccount2V212PartnerTokenEEaSERKS7_) +STUB( + "zp1qLAqgn34", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11UserProfile2V125GetPublicProfilesResponseEEEEeqERKS9_) +STUB( + "zp20uanch10", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V118IdempotentVariableEEEEC1EPNS2_10LibContextE) +STUB( + "zp3MPoXcRaw", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V122RequestPlayerStatisticEEEEC1EPS8_) +STUB( + "zp3j2YHPEas", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V118MatchmakingForReadEEEEeqERKS9_) +STUB( + "zp5pLVG32rw", + _ZN7WebCore24DocumentMarkerController13filterMarkersERKNS_11SimpleRangeERKN3WTF8FunctionIFbRKNS_14DocumentMarkerEEEENS4_9OptionSetINS6_10MarkerTypeEEENS_32RemovePartiallyOverlappingMarkerE) +STUB("zp6YtG3sS0I", mono_metadata_signature_alloc) +STUB( + "zpDAexC47EA", + _ZN3sce2Np9CppWebApi14SessionManager2V143GetUsersAccountIdPlayerSessionsResponseBody17setPlayerSessionsERKNS1_6Common6VectorINS5_12IntrusivePtrINS3_31JoinedPlayerSessionWithPlatformEEEEE) +STUB( + "zpDIIeT+ZQY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_15DefaultResponseENS2_12IntrusivePtrINS1_17TitleCloudStorage2V17DataApi27DownloadDataResponseHeadersEEEE4initEv) +STUB("zpJ2bR7uqdM", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIiEEEdeEv) +STUB( + "zpLq+kG0GLs", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_11Matchmaking2V19AttributeEEEEeqERKS9_) +STUB("zpNYH5r0tCs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_15Personalization2V15ErrorEE7get_refEv) +STUB("zpOIOqhdlMA", _ZN3sce7Toolkit2NP15AppSTLAllocatorIiE9constructEPiRKi) +STUB("zpP-lfAo7RQ", _ZN7WebCore20CachedResourceLoader31garbageCollectDocumentResourcesEv) STUB("zpPQkEySyxM", sceCesRefersUcsProfileCp864) +STUB("zpVCZPtswnc", + _ZNK3sce2Np9CppWebApi14SessionManager2V118RequestGameSession19getUsePlayerSessionEv) +STUB( + "zpVqxjmDJLM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V118RequestMatchPlayerEEEEppEi) +STUB( + "zpYz1pjYsLE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_7Matches2V125ResponseCompetitiveResultEEEEneERKS9_) STUB("zpiPsH7dbFQ", sceNpWebApi2AbortRequest) +STUB("zptosxCqOgw", _ZN9Inspector26TimelineFrontendDispatcher16recordingStartedEd) +STUB("zpuDFfjHETM", WKPreferencesCopyCursiveFontFamily) +STUB("zpy7LnTL5p0", __kernel_sin) +STUB("zpyebY9tjPM", _ZNK7WebCore6Editor7Command15isTextInsertionEv) +STUB( + "zpytJpxCtzM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_14SessionManager2V19JoinStateEEEEC1EPS8_PNS2_10LibContextE) +STUB("zpzV5xDLsZ4", mono_btls_pkcs12_get_certs) +STUB( + "zq+qJ57PqpQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V131JoinedPlayerSessionWithPlatformEEEED2Ev) STUB("zq45SROKj9Q", sceUserServiceSetSaveDataTutorialFlag) +STUB("zq5QioRR36Y", _ZN7WebCore9HTMLNames14aria_labelAttrE) +STUB( + "zq5zv1pV1So", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V112VariablesApi37ParameterToDeleteMultiVariablesByUser17getnpServiceLabelEv) +STUB("zq6TRaNNGg4", + _ZNK3sce2Np9CppWebApi14SessionManager2V122GameSessionPushContext16getPushContextIdEv) +STUB("zqASRvZg6d0", _LNan) +STUB("zqEvgYYZ7yw", _ZN19JITSharedTextMemory27shared_malloc_max_footprintEv) +STUB( + "zqGeUoVYSxw", + _ZN15AbstractStorage17DailymotionFolder9NewFolderERKSbIcSt11char_traitsIcENS_8StlAllocIcEEEPSt10shared_ptrINS_6FolderEE) +STUB("zqJhBxAKfsc", __stdoutp) +STUB("zqOGToT2dH8", _ZTIPKs) +STUB("zqQWBy7O-00", u_memrchr) +STUB("zqVKRM554Ds", _ZN3sce7Toolkit2NP2V28Matching12Notification14NewRoomMessageC2ERKS5_) +STUB("zqc3B1lvZfI", ures_openNoDefault) +STUB("zqcsrTW-umY", d2i_PKCS7) +STUB("zqd9o-7JtJA", _ZN3sce2Np9CppWebApi6Common6VectorINS1_7Matches2V114ResultsVersionEE6resizeEj) +STUB("zqe0Dw9BCpc", FcPatternFormat) +STUB("zqg8Dqiwkl4", + _ZN3sce2Np9CppWebApi7Matches2V17Subtask15setAvailabilityERKNS3_19SubtaskAvailabilityE) +STUB("zqhg+QuI9Zk", ubidi_getParaLevel_67) STUB("zqjkZ5VKFSg", sceSystemServiceGetParentSocketForJvm) +STUB("zqmukclA+FU", _ZNK15AbstractStorage15FacebookContent13GetCapabilityEv) +STUB("zqnrK2T3+fM", + _ZN3sce7Toolkit2NP15AppSTLAllocatorINS1_34DetailedProductInfoListInputParams9ProductIdEEC1Ev) +STUB("zqqgK8OxnPQ", WKPreferencesSetInternalDebugFeatureForKey) +STUB("zqrHhDLSkNQ", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIdEEED1Ev) +STUB("zqsgWAHMGy0", _ZN3sce7Toolkit2NP15AppSTLAllocatorISt10_List_nodeINS1_11TusVariableEPvEED2Ev) +STUB("zqw-u2J6V0k", _ZN3sce7Toolkit2NP2V23TUS25TusDataStatusForCrossSaveD1Ev) STUB("zqxvJ1GjxAA", sceDataTransferTargetAbortBindSavedata) +STUB( + "zqyJbLgab-w", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE6finishEv) +STUB("zqzjS4yvpZc", mono_utf8_validate_and_len_with_bounds) +STUB("zqzpiMbGPjk", _ZN3JSC17DebuggerCallFrame11callerFrameEv) +STUB("zr094EQ39Ww", __cxa_pure_virtual) +STUB("zr0d5c07u50", _ZTVN9Inspector15RemoteInspectorE) +STUB("zr16QO3R4+0", _ZN3sce2Np9CppWebApi11UserProfile2V15ErrorC2EPNS1_6Common10LibContextE) +STUB( + "zr1c4zGgkjY", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V59ContainerEEEEeqERKS9_) +STUB( + "zr2+MlM-ay4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_7Matches2V119ResponseTeamResultsEEEEEE11release_refEv) +STUB( + "zrBEg06jOjM", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11Matchmaking2V120GetOfferResponseBodyEE7get_refEv) +STUB( + "zrDT805HCuk", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V152PostGameSessionsSessionIdMemberSpectatorsRequestBodyEEEEixEm) +STUB( + "zrEp8lu3vAI", + _ZN3sce2Np9CppWebApi6Common11TransactionINS2_15DefaultResponseENS2_12IntrusivePtrINS2_18ResponseHeaderBaseEEEED1Ev) STUB("zrIUDKZx0iE", sceCameraGetHue) STUB("zrQI7NxivBQ", sceClSslGetSerialNumber) +STUB("zrRhCOIFxSM", + _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_7Session11InvitationsEE19setCustomReturnCodeEi) +STUB( + "zrT5+mz5i5A", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14IdentityMapper2V312AccountIdMapEEEEC2Ev) +STUB("zrUN909NIUM", _ZN3sce2Np9CppWebApi13InGameCatalog2V59Container12unsetVersionEv) +STUB( + "zrVMsaC5Zo8", + _ZNK7WebCore10PluginData34getWebVisibleMimesAndPluginIndicesERN3WTF6VectorINS_13MimeClassInfoELm0ENS1_15CrashOnOverflowELm16EEERNS2_ImLm0ES4_Lm16EEE) STUB("zrWaWV6ltmE", sceVisionManagerGenerateRegisterUserDataFinalize) +STUB( + "zrWd+vz8UPU", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_14SessionManager2V129GetPlayerSessionsResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEE13getLibContextEv) +STUB( + "zraletqLGAI", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V129FrequentlyMutedInPartyMetricsEEEE21intrusive_ptr_add_refEPS9_) +STUB("zrm95g8viEA", rgctx_fetch_trampoline_mrgctx_73) +STUB("zrmR88ClfOs", _ZNSt6locale7_LocimpC2Eb) STUB("zru8Zhuy1UY", sceUserServiceGetImeInputType) +STUB("zrwvlRfQ0Q0", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_14TrophyGameInfoEEC2Ev) +STUB("zrxfyCmnlBE", _ZN7WebCore6JSFile4infoEv) STUB("zrxj3h66ScY", sceApplicationKickCoredump2) +STUB( + "zs-86pylwGU", + _ZN3sce2Np9CppWebApi6Common10LibContext17createTransactionINS2_12IntrusivePtrINS1_14IdentityMapper2V311OnlineIdMapEEENS5_INS7_12IDMappingApi36GetOnlineId2AccountIdResponseHeadersEEEEEiRNS2_15TransactionBaseIT_T0_EE) STUB("zs1b1Y6IBdI", sceAudiodReportMasteringGetParams) +STUB("zs2x0c+f2hU", _ZN10Deprecated25ScriptCallArgumentHandlerC1EPN3JSC14JSGlobalObjectE) +STUB("zs3xXmdkZgY", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V16FriendEEC1Ev) STUB("zs4i9SEHy0g", sceUserServiceSetKeyRepeatSpeed) STUB("zs60MvClEkc", sceUserServiceGetEventCalendarType) +STUB("zs817D8+hPA", _Unwind_ForcedUnwind) +STUB( + "zs9MtG0Hs1s", + _ZN12video_parser17cVideoProfilerMp417_getAudioCodecAACER32ff4_play_audio_sample_entry_infoPvPNS_17VpAudioCodecAAC_tE) STUB("zsJcWtE81Rk", sceUserServiceGetShareButtonAssign) +STUB( + "zsJczqdANTw", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V125ResponseGameSessionPlayerEEEE21intrusive_ptr_add_refEPS9_) +STUB( + "zsKZKa3UWYE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V116SearchAttributesEEEEEEaSERKSA_) +STUB( + "zsKpHtD+sj4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEE7get_refEv) +STUB("zsLlAeMeZJM", _ZN3sce2Np9CppWebApi6Common6VectorINS1_12Leaderboards2V15GroupEE8copyFromERKS7_) STUB("zsMzX135ofU", sceKernelGetAppInfoByAppId) +STUB( + "zsOqjXApJOQ", + _ZNK3sce2Np9CppWebApi14SessionManager2V115GameSessionsApi33ParameterToPostGameSessionsSearch8haslimitEv) +STUB("zsTvhCDrOjQ", __sys_netcontrol) STUB("zsUmqFv3Lwk", sceNpTrophy2SystemGetTrophyGroupConf) STUB("zsVbNbWPYzg", sceSpPthreadSetprio) +STUB( + "zsb-DqyS78k", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V129RequestPlayerSessionSpectatorEEaSERS7_) +STUB( + "zsgfR4DoIEc", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_10Activities2V114UserActivities14UserActivitiesEEC1Ev) +STUB("zsjL8QmtjdQ", _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse11unsetZoneIdEv) +STUB( + "zsjXVCIuVNo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V18LocationEEEEEE7get_refEv) +STUB( + "zsnJHxXTB-E", + _ZN3sce2Np9CppWebApi7Matches2V122GetMatchDetailResponse15setInGameRosterERKNS1_6Common12IntrusivePtrINS3_20ResponseInGameRosterEEE) +STUB( + "zspoEGa3ns8", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_17TitleCloudStorage2V122UploadDataResponseBodyEEC1ERS7_) +STUB( + "zsrHFLO0o8g", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V150PostGameSessionsSessionIdSessionMessageRequestBodyEEEE5beginEv) +STUB("zsxq8S+s6og", sqlite3_interrupt) +STUB("zsycIG7Lxv8", _ZN7WebCore9HTMLNames21aria_keyshortcutsAttrE) +STUB("zt0a0bbge+w", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V15ErrorEEaSERS7_) +STUB("zt4LYf6rchQ", _ZN3sce7Toolkit2NP2V28Presence16PlatformPresence20MAX_SIZE_GAME_STATUSE) +STUB( + "ztCJ35iqz2M", + _ZNK3sce2Np9CppWebApi6Common15TransactionBaseINS2_15DefaultResponseENS2_12IntrusivePtrINS1_12Leaderboards2V17ViewApi37GetLargeDataByObjectIdResponseHeadersEEEE18getResponseHeadersERSA_) +STUB("ztFmebpmDCY", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament16RegisteredRosterEED2Ev) +STUB( + "ztFwCfq6KRM", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V138MatchCompletionRateDisconnectedMetricsEEEE5emptyEv) +STUB( + "ztJZkOERbWI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V124ResponseTeamMemberResultEEEEC1EPS8_) +STUB( + "ztJmcRVYce8", + _ZN3sce2Np9CppWebApi14SessionManager2V149PostGameSessionsSessionIdMemberPlayersRequestBodyC2EPNS1_6Common10LibContextE) +STUB( + "ztLITfz5fMs", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V127GetGameSessionsResponseBodyEEEEmmEv) +STUB( + "ztLPAeA0tjA", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V124NatConnectivityToMetricsEEEE21intrusive_ptr_add_refEPS9_) +STUB("ztNI+Mt+UoA", utf8_nextCharSafeBody) +STUB("ztNqqNCl1Tw", __sys_opmc_set_ctr) +STUB("ztPRp3gnFeo", _ZN3sce3Xml4Attr8setValueEPKNS0_6StringE) +STUB("ztTyvdGDypw", _ZN4Manx11MediaPlayer6createEPNS_17MediaPlayerClientE) +STUB("ztVjMJiz5ks", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_10Tournament7BracketEED1Ev) +STUB("ztWW11yMTzU", _ZN3sce2Np9CppWebApi17TitleCloudStorage2V18VariableC2EPNS1_6Common10LibContextE) +STUB( + "ztYU44quhIE", + _ZNK3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEixEm) +STUB("ztZBIqHXTi8", GCC_except_table106) +STUB("ztcLG495eZ0", _ZN7WebCore8SVGNames31color_interpolation_filtersAttrE) +STUB( + "ztcwNgwq75c", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEEEEED2Ev) +STUB("ztd0J2u9G7c", + _ZN3sce2Np9CppWebApi6Common8IteratorINS1_14SessionManager2V123CustomInvitableUserTypeEEmmEi) +STUB("ztdtXYywksE", _ZN7Nicosia5SceneC1Ev) +STUB( + "ztml3ftoBJY", + _ZN3sce2Np9CppWebApi6Common14LibContextImpl18getTransactionImplINS2_12IntrusivePtrINS1_14SessionManager2V150PostPlayerSessionsSessionIdInvitationsResponseBodyEEENS5_INS2_18ResponseHeaderBaseEEEEEiRKNS2_15TransactionBaseIT_T0_EEPPNS2_15TransactionImplISD_SE_EE) +STUB("ztoert0JFlI", + _ZN7WebCore24CoordinatedGraphicsLayer20setReplicatedByLayerEPNS_13GraphicsLayerE) STUB("ztqH5qNTpTk", sceCameraCloseByHandle) +STUB("ztqIj-a6WsI", WKSecurityOriginGetHost) +STUB("ztvVfnQawjQ", _ZN7WebCore15AsyncFileStreamnaEm) +STUB("ztxZdb1IY+M", hb_font_set_ppem) +STUB( + "zu+NpJ6mvOY", + _ZN3sce2Np9CppWebApi6Common15TransactionImplINS2_12IntrusivePtrINS1_11Matchmaking2V124SubmitTicketResponseBodyEEENS4_INS2_18ResponseHeaderBaseEEEED2Ev) +STUB("zu+kJHmQcbE", _ZN3sce7Toolkit2NP9Utilities6FutureINS1_15TrophyGroupInfoEEC2Ev) +STUB("zu2fyrTeSqg", mono_property_set_value) +STUB( + "zu5QRkztjTM", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V133RequestTemporaryCompetitiveResultEEEE5clearEv) +STUB("zuCubBF5OZ8", + _ZN3sce2Np9CppWebApi14SessionManager2V118RequestGameSession30unsetReservationTimeoutSecondsEv) +STUB("zuLwl48uyYI", _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorIjEEEptEv) +STUB( + "zuNMb3J-BOo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS1_11Matchmaking2V113AttributeTypeEEEEC1Ev) +STUB("zuPUJ9mkPe0", _ZNK3sce2Np9CppWebApi12Leaderboards2V15Error6toJsonERNS_4Json5ValueEb) +STUB("zuPf4SsogPc", _ZN3JSC7Symbols38getMapIteratorInternalFieldPrivateNameE) +STUB("zuQqTYaKNl4", xmlStrndup) +STUB( + "zuTBQEWnwqQ", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V117GameSessionPlayerEEEED1Ev) +STUB( + "zuVI1wtttBE", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V130PostPlayerSessionsResponseBodyEEEE6resizeEj) STUB("zuW6UxRHTxQ", sceUlpMgrReqSuspend) +STUB( + "zuZ4ZCJtTKU", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V133ResponsePlayerSessionNonPsnPlayerEEC2Ev) +STUB("zuftnZ9BD9w", _ZN3sce7Toolkit2NP2V24Core8ResponseINS2_3TUS7TusDataEEC1Ev) +STUB("zugltxeIXM0", _ZSt15_sceLibcLocinfoPKc) +STUB( + "zuhD0xFjLp4", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_14SessionManager2V118LeaderWithOnlineIdEEEEC1EPS8_) +STUB("zul0o1q+gL0", fuse_session_exit) +STUB( + "zunhoocIbJY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V126RequestTeamMemberStatisticEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("zurkNUps5o8", _ZN3sce2np9RefObject6AddRefEv) +STUB("zutcTfS-+cw", __hash_end) STUB("zuxWAg3HAac", sceMoveResetLightSphere) +STUB("zv+cECZ-Oq4", _ZN3JSC10JSDataView6s_infoE) +STUB("zv1EMhI7R1c", _ZNKSt8numpunctIcE16do_thousands_sepEv) +STUB("zv2H93kZz-U", Java_java_lang_Float_floatToIntBits) +STUB("zv7EBvM-xCQ", _ZN9Inspector24CanvasFrontendDispatcherC1ERNS_14FrontendRouterE) +STUB( + "zv9FDHSv88k", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_7Matches2V119ResponseTeamResultsEEEEppEv) +STUB( + "zv9opN-N1P4", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_15ProfanityFilter2V219WebApiErrorResponseEEEEeqERKS9_) +STUB("zvBc67GjA9A", _ZN3sce7Toolkit2NP2V211SocialMedia7Request12ActionLinkFbD1Ev) +STUB("zvIq6Rg+sec", WKPreferencesSetHiddenPageCSSAnimationSuspensionEnabled) +STUB("zvK3sRYJ4BY", rgctx_fetch_trampoline_mrgctx_68_p) +STUB("zvLDsefSYaQ", fuse_setup_common) +STUB( + "zvOHidIPUwE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V525ContentInteractiveElementEEEEdeEv) +STUB( + "zvQvII6wEbw", + _ZNK3sce2Np9CppWebApi17TitleCloudStorage2V17DataApi32ParameterToDeleteMultiDataByUser13isInitializedEv) +STUB("zvbdw+VaDnQ", _ZN7WebCore11MediaPlayer11isAvailableEv) +STUB("zvl6nrvd0sE", _Dsign) +STUB("zvvWMJWZYmk", _ZN9Inspector25ConsoleFrontendDispatchernwEmPv) STUB("zvyKP0Z3UvU", sceVrTrackerGetPlayAreaWarningInfo) +STUB( + "zvyXC38k7NQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_30CommunicationRestrictionStatus2V338CommunicationRestrictionStatusResponseEEEEEEC1Ev) STUB("zvzWA5IZMsg", sceNetResolverStartAton6) STUB("zw+celG7zSI", sceRazorCpuPushMarker) +STUB( + "zw6E6FqHWRc", + _ZN3sce2Np9CppWebApi14SessionManager2V117PlayerSessionsApi37ParameterToSetPlayerSessionPropertiesaSERS5_) +STUB( + "zw6q3oVOk5E", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_13InGameCatalog2V511ErrorEntityEEEEC1Ev) +STUB("zw6ysj-m+m4", JVM_NewArray) +STUB( + "zwBb0IHksGo", + _ZNK3sce2Np9CppWebApi14SessionManager2V144PatchGameSessionsSearchAttributesRequestBody13integer8IsSetEv) STUB("zwC-pVt1RY4", sceMoveTrackerRecordStart) +STUB("zwDiN3-CRTA", _ZN3sce4Json5Value11s_nullarrayE) +STUB( + "zwG69HAT31Q", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_14SessionManager2V129JoinedGameSessionWithPlatformEEEE6resizeEj) +STUB("zwJXh4lxS5E", _ZN3sce7Toolkit2NP2V29Challenge7Request21GetChallengeThumbnailD1Ev) +STUB("zwKP6QVOb-A", rgctx_fetch_trampoline_mrgctx_100_p) +STUB("zwMGP3ASKMI", cairo_set_line_width) +STUB( + "zwU7HmDe5VQ", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V124UpdateMatchStatusRequestEEEE5beginEv) +STUB("zwV79ZJ9qAU", __fpclassifyl) STUB("zwY0YV91TTI", sceGnmSubmitCommandBuffers) +STUB( + "zwanSYhyr6Q", + _ZN7WebCore22CacheStorageConnection19putRecordsCompletedEmONSt12experimental15fundamentals_v38expectedIN3WTF6VectorImLm0ENS4_15CrashOnOverflowELm16EEENS_14DOMCacheEngine5ErrorEEE) +STUB( + "zwbPj1mzJK0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_12Leaderboards2V122RecordScoreRequestBodyEEEEEEC1EPS9_PNS2_10LibContextE) +STUB("zwcNQT0Avck", _ZNKSt5ctypeIcE8do_widenEc) STUB("zwcpjJ7WUgQ", sceVdecCoreQueryComputeResourceInfo) +STUB("zwqZKFMyqyg", _ZN3JSC16throwSyntaxErrorEPNS_9ExecStateERNS_10ThrowScopeERKN3WTF6StringE) +STUB("zwrYKbWfb9Y", _ZN7WebCore9HTMLNames12codetypeAttrE) +STUB("zwv1oIhLnjI", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V15ErrorEEC2EPS6_PNS2_10LibContextE) +STUB("zwvAXAgGj84", _ZNK3WTF6String4utf8ENS_14ConversionModeE) +STUB( + "zwvThzS7r8U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_12Leaderboards2V130GetBoardDefinitionResponseBodyEEEEC1EPNS2_10LibContextE) +STUB("zx0jGj+nSIM", u_memcmp) +STUB( + "zx8WjtrSkaY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V127ResponsePlayerSessionPlayerEE11release_refEv) +STUB("zx9n5GVq4pI", ubrk_open_67) +STUB( + "zxEFw9u9zBE", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V161PostPlayerSessionsSessionIdJoinableSpecifiedUsersResponseBodyEEEEplEm) +STUB("zxH6K4iZYM4", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_13InGameCatalog2V513ContentRatingEEaSERS7_) +STUB("zxHIZqmB-IE", WKBundleFrameEnableHTMLTile) +STUB( + "zxNcIXs-Wdo", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_17TitleCloudStorage2V18VariableEEEEC1EPKS8_) +STUB( + "zxO0cyAx+98", + _ZNK3sce2Np9CppWebApi21AdvancedPlayerProfile2V129ConnectionQualityWiredMetrics6toJsonERNS_4Json5ValueEb) +STUB("zxXkp97At0s", fuse_lowlevel_notify_poll) +STUB("zxecOOffO68", vsyslog) +STUB("zxfZ6nZg3IM", _ZN3sce7Toolkit2NP2V27Session14InvitationDataD2Ev) +STUB( + "zxiuqO0vYWo", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEC1EPS6_PFvS8_EPNS2_10LibContextE) +STUB( + "zxkmXYkYZZs", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_11Matchmaking2V19AttributeEEEEEEC1Ev) +STUB( + "zxpp9+Nf46Y", + _ZN3sce2Np9CppWebApi30CommunicationRestrictionStatus2V318PsnWebErrorWrapper8fromJsonERKNS_4Json5ValueE) +STUB("zxq5Jv-hmY8", ulist_getNext_67) STUB("zxs+Flq6LEY", scePlayReadyReaderClose) +STUB("zxsyxyiLthM", FTA_Add_Module_truetype) +STUB("zy3pxy0zp7M", _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_11UserProfile2V15ErrorEEC1ERKS7_) +STUB("zy5AMBUbsfE", mono_property_get_object) +STUB("zy5YK4P7Ll4", __tsan_atomic16_compare_exchange_val) +STUB("zy9ivTre1ko", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V113PlayerSessionEEC1ERS7_) +STUB( + "zyC4p3vDAdI", + _ZN3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V115FrequentlyMutedEEEEC2EPS8_) +STUB("zyCqcJqhpds", _ZN9Inspector20InspectorTargetAgentnwEm) +STUB("zyEjK7M--t8", + _ZN7WebCore14SchemeRegistry40setDomainRelaxationForbiddenForURLSchemeEbRKN3WTF6StringE) STUB("zyFrOtG-5Jg", sceDataTransferTargetAbortEth0) +STUB("zyHY0hMqpQM", + _ZN3sce2Np9CppWebApi6Common13ConstIteratorINS1_7Matches2V113SubtaskStatusEEC2EPS6_) +STUB("zyT4syigGks", _ZNK3sce2Np9CppWebApi6Common8IteratorINS1_7Matches2V114ResultsVersionEEeqERKS7_) +STUB("zyTMmUiR2tQ", glGetQueryObjecti64vEXT) +STUB( + "zyZ3tnUzGh8", + _ZNK3sce2Np9CppWebApi6Common8IteratorINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V125NatConnectivityPropertiesEEEEneERKS9_) +STUB( + "zybg9S9ZOtE", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_29MultiplayerMatchmakingRanking2V16RatingEEEEEEC2ERSA_) +STUB("zyebgmQUnWY", glCompileShader) +STUB("zyezaHweY3U", FT_New_Size) +STUB( + "zyhNaY3RW6U", + _ZN3sce2Np9CppWebApi6Common6VectorINS2_12IntrusivePtrINS1_7Matches2V123ResponseMatchStatisticsEEEE6insertENS2_8IteratorIS8_EERKS8_RSB_) +STUB("zyhiiLKndO8", _ZNSt7codecvtIcc9_MbstatetE7_GetcatEPPKNSt6locale5facetEPKS2_) +STUB("zytPJruS5qI", _ZN7WebCore4Page21resumeAnimatingImagesEv) +STUB("zywJSk2ZkPo", mono_gc_reference_queue_new) +STUB("zz0053HDYL4", _ZN2GK9PlayerPSNC2Ev) +STUB( + "zz05DbdG5EY", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_21AdvancedPlayerProfile2V119PlayStylePropertiesEE7add_refEv) +STUB( + "zz0teJPSNRQ", + _ZN3sce2Np9CppWebApi6Common12DELETE_ARRAYINS2_12IntrusivePtrINS1_11Matchmaking2V18LocationEEEEEiRNS2_10LibContextEPT_m) +STUB("zz11uoSib9o", ubrk_refreshUText_67) +STUB("zz3ltHntE4c", + _ZN7WebCore10JSDocument22visitOutputConstraintsEPN3JSC6JSCellERNS1_11SlotVisitorE) +STUB( + "zz5MBIlXrmQ", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V112NonPsnLeaderEE6assignEPS6_PFvS8_EPNS2_10LibContextE) +STUB("zz5gyMxsuPc", generic_trampoline_aot_plt) +STUB("zz7uHQZ6UTo", + _ZN3sce2Np9CppWebApi14SessionManager2V112JoinableUser8fromJsonERKNS_4Json5ValueE) STUB("zzB0StvRab4", sceHttpAuthCacheFlush) +STUB("zzBMiEGifFU", _ZN3sce2Np9CppWebApi7Matches2V18MatchApi28ParameterToUpdateMatchDetailaSERS5_) +STUB( + "zzBnlr10qaw", + _ZNK3sce2Np9CppWebApi6Common13ConstIteratorINS2_12IntrusivePtrINS1_14SessionManager2V110FromMemberEEEEptEv) +STUB("zzDN3aMsHzg", _ZNK3sce2Np9CppWebApi7Matches2V119ResponseMatchPlayer14accountIdIsSetEv) +STUB( + "zzEil2Eo1MU", + _ZN3sce2Np9CppWebApi7Matches2V130ResponsePlayerStatisticFactory6createEPNS1_6Common10LibContextEPKcRKNS5_6VectorINS5_12IntrusivePtrINS3_19AdditionalStatisticEEEEEPNSB_INS3_23ResponsePlayerStatisticEEE) STUB("zzKyvoELf4I", sceKernelGetSocSensorTemperature) +STUB("zzMmzrXuwvc", _ZN3sce2Np9CppWebApi13InGameCatalog2V512ErrorFactory7destroyEPNS3_5ErrorE) +STUB( + "zzO8ZGJ74ng", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_13InGameCatalog2V59ContainerEEEEEEC1Ev) +STUB("zzOYC2KEvvU", u_errorName_59) +STUB( + "zzYFbqz4s04", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V138RequestCreatePlayerSessionNonPsnPlayerEEC1ERS7_) +STUB("zzaAvrFAND0", _ZNK7WebCore12DOMTokenList8containsERKN3WTF12AtomicStringE) +STUB("zzbNPe0YsDk", _ZN3sce7Toolkit2NP2V27Session13SessionMemberC2Ev) +STUB( + "zzkocAJmyHc", + _ZNK3sce2Np9CppWebApi6Common12IntrusivePtrINS1_14SessionManager2V128PostGameSessionsResponseBodyEE3getEv) +STUB( + "zzksdAEPwVY", + _ZN3sce2Np9CppWebApi6Common15TransactionBaseINS2_12IntrusivePtrINS1_21AdvancedPlayerProfile2V15StatsEEENS4_INS2_18ResponseHeaderBaseEEEE5startEPNS2_10LibContextE) +STUB("zzslOMIcxSU", _ZN3sce7Toolkit2NP2V26Trophy16UnlockedTrophiesC1Ev) +STUB( + "zzubCm+nDzc", + _ZNKSt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE6do_getES3_S3_bRSt8ios_baseRNSt5_IosbIiE8_IostateERe) +STUB("zzvRwca5iwU", delegate_virtual_invoke_imt_30) +STUB( + "zzwBT4Nl7t0", + _ZN3sce2Np9CppWebApi6Common12IntrusivePtrINS2_6VectorINS3_INS1_14SessionManager2V128ResponseGameSessionSpectatorEEEEEE7add_refEv) diff --git a/src/core/libraries/kernel/libkernel.cpp b/src/core/libraries/kernel/libkernel.cpp index 30e8cad1..75682500 100644 --- a/src/core/libraries/kernel/libkernel.cpp +++ b/src/core/libraries/kernel/libkernel.cpp @@ -1,6 +1,7 @@ // SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later +#include #include #include "common/assert.h" #include "common/logging/log.h" @@ -16,7 +17,6 @@ #include "core/libraries/kernel/time_management.h" #include "core/libraries/libs.h" #include "core/linker.h" - #ifdef _WIN64 #include #include @@ -158,6 +158,27 @@ s64 PS4_SYSV_ABI ps4__write(int d, const void* buf, std::size_t nbytes) { return ORBIS_OK; } +int PS4_SYSV_ABI sceKernelConvertUtcToLocaltime(time_t time, time_t* local_time, + struct OrbisTimesec* st, unsigned long* dst_sec) { + LOG_TRACE(Kernel, "Called"); + const auto* time_zone = std::chrono::current_zone(); + auto info = time_zone->get_info(std::chrono::system_clock::now()); + + *local_time = info.offset.count() + info.save.count() * 60 + time; + + if (st != nullptr) { + st->t = time; + st->west_sec = info.offset.count() * 60; + st->dst_sec = info.save.count() * 60; + } + + if (dst_sec != nullptr) { + *dst_sec = info.save.count() * 60; + } + + return ORBIS_OK; +} + void LibKernel_Register(Core::Loader::SymbolsResolver* sym) { // obj LIB_OBJ("f7uOxY9mM1U", "libkernel", 1, "libkernel", 1, 1, &g_stack_chk_guard); @@ -179,6 +200,7 @@ void LibKernel_Register(Core::Loader::SymbolsResolver* sym) { LIB_FUNCTION("1jfXLRVzisc", "libkernel", 1, "libkernel", 1, 1, sceKernelUsleep); LIB_FUNCTION("YSHRBRLn2pI", "libkernel", 1, "libkernel", 1, 1, _writev); LIB_FUNCTION("959qrazPIrg", "libkernel", 1, "libkernel", 1, 1, sceKernelGetProcParam); + LIB_FUNCTION("-o5uEDpN+oY", "libkernel", 1, "libkernel", 1, 1, sceKernelConvertUtcToLocaltime); Libraries::Kernel::fileSystemSymbolsRegister(sym); Libraries::Kernel::timeSymbolsRegister(sym); diff --git a/src/core/libraries/kernel/libkernel.h b/src/core/libraries/kernel/libkernel.h index 999aa25c..ff1f8439 100644 --- a/src/core/libraries/kernel/libkernel.h +++ b/src/core/libraries/kernel/libkernel.h @@ -12,6 +12,12 @@ class SymbolsResolver; namespace Libraries::Kernel { +struct OrbisTimesec { + time_t t; + u64 west_sec; + u64 dst_sec; +}; + int32_t PS4_SYSV_ABI sceKernelReleaseDirectMemory(off_t start, size_t len); int* PS4_SYSV_ABI __Error(); diff --git a/src/core/libraries/kernel/thread_management.cpp b/src/core/libraries/kernel/thread_management.cpp index b4422679..92d4e92e 100644 --- a/src/core/libraries/kernel/thread_management.cpp +++ b/src/core/libraries/kernel/thread_management.cpp @@ -8,6 +8,9 @@ #include "core/libraries/error_codes.h" #include "core/libraries/kernel/thread_management.h" #include "core/libraries/libs.h" +#ifdef _WIN64 +#include +#endif namespace Libraries::Kernel { @@ -890,6 +893,12 @@ void PS4_SYSV_ABI scePthreadYield() { sched_yield(); } +int PS4_SYSV_ABI scePthreadDetach(ScePthread thread) { + LOG_INFO(Kernel_Pthread, "thread create name = {}", thread->name); + thread->is_detached = true; + return ORBIS_OK; +} + void pthreadSymbolsRegister(Core::Loader::SymbolsResolver* sym) { LIB_FUNCTION("4+h9EzwKF4I", "libkernel", 1, "libkernel", 1, 1, scePthreadAttrSetschedpolicy); LIB_FUNCTION("-Wreprtu0Qs", "libkernel", 1, "libkernel", 1, 1, scePthreadAttrSetdetachstate); @@ -897,11 +906,13 @@ void pthreadSymbolsRegister(Core::Loader::SymbolsResolver* sym) { LIB_FUNCTION("DzES9hQF4f4", "libkernel", 1, "libkernel", 1, 1, scePthreadAttrSetschedparam); LIB_FUNCTION("nsYoNRywwNg", "libkernel", 1, "libkernel", 1, 1, scePthreadAttrInit); LIB_FUNCTION("62KCwEMmzcM", "libkernel", 1, "libkernel", 1, 1, scePthreadAttrDestroy); + LIB_FUNCTION("4qGrR6eoP9Y", "libkernel", 1, "libkernel", 1, 1, scePthreadDetach); LIB_FUNCTION("aI+OeCz8xrQ", "libkernel", 1, "libkernel", 1, 1, scePthreadSelf); LIB_FUNCTION("3qxgM4ezETA", "libkernel", 1, "libkernel", 1, 1, scePthreadAttrSetaffinity); LIB_FUNCTION("8+s5BzZjxSg", "libkernel", 1, "libkernel", 1, 1, scePthreadAttrGetaffinity); LIB_FUNCTION("x1X76arYMxU", "libkernel", 1, "libkernel", 1, 1, scePthreadAttrGet); + LIB_FUNCTION("UTXzJbWhhTE", "libkernel", 1, "libkernel", 1, 1, scePthreadAttrSetstacksize); LIB_FUNCTION("bt3CTBKmGyI", "libkernel", 1, "libkernel", 1, 1, scePthreadSetaffinity); LIB_FUNCTION("6UgtwV+0zb4", "libkernel", 1, "libkernel", 1, 1, scePthreadCreate); @@ -928,6 +939,7 @@ void pthreadSymbolsRegister(Core::Loader::SymbolsResolver* sym) { LIB_FUNCTION("QBi7HCK03hw", "libkernel", 1, "libkernel", 1, 1, sceKernelClockGettime); LIB_FUNCTION("lLMT9vJAck0", "libkernel", 1, "libkernel", 1, 1, clock_gettime); + LIB_FUNCTION("lLMT9vJAck0", "libScePosix", 1, "libkernel", 1, 1, clock_gettime); LIB_FUNCTION("yS8U2TGCe1A", "libScePosix", 1, "libkernel", 1, 1, nanosleep); // openorbis weird functions diff --git a/third-party/CMakeLists.txt b/third-party/CMakeLists.txt index 012b8bbc..b6636f25 100644 --- a/third-party/CMakeLists.txt +++ b/third-party/CMakeLists.txt @@ -12,15 +12,6 @@ add_subdirectory(magic_enum EXCLUDE_FROM_ALL) # Toml11 add_subdirectory(toml11 EXCLUDE_FROM_ALL) -# Vulkan -add_subdirectory(vulkan EXCLUDE_FROM_ALL) - -# Winpthreads -if (WIN32) - add_subdirectory(winpthread EXCLUDE_FROM_ALL) - target_include_directories(winpthread INTERFACE winpthread/include) -endif() - # xxHash add_library(xxhash INTERFACE) target_include_directories(xxhash INTERFACE xxhash) diff --git a/third-party/vulkan b/third-party/vulkan deleted file mode 160000 index 72b2e740..00000000 --- a/third-party/vulkan +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 72b2e740754bc6b86b724fa5b2c90dca6f69462e diff --git a/third-party/winpthread b/third-party/winpthread deleted file mode 160000 index 918de958..00000000 --- a/third-party/winpthread +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 918de958b720c3ba7bc47f4988609c0109a0f75b